/*M!999999\- enable the sandbox mode */ 
-- MariaDB dump 10.19-12.0.2-MariaDB, for osx10.20 (arm64)
--
-- Host: localhost    Database: brickwal_m1_ds
-- ------------------------------------------------------
-- Server version	12.0.2-MariaDB

/*!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 utf8mb4 */;
/*!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' */;
/*M!100616 SET @OLD_NOTE_VERBOSITY=@@NOTE_VERBOSITY, NOTE_VERBOSITY=0 */;

--
-- Table structure for table `_deprecated_client_activities`
--

DROP TABLE IF EXISTS `_deprecated_client_activities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `_deprecated_client_activities` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `client_id` int(10) unsigned NOT NULL,
  `activity_type` enum('note','call','email','meeting','task') NOT NULL,
  `subject` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `activity_date` datetime NOT NULL,
  `due_date` datetime DEFAULT NULL,
  `status` enum('pending','completed','cancelled') DEFAULT 'pending',
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_client_id` (`client_id`),
  KEY `idx_activity_date` (`activity_date`),
  KEY `idx_status` (`status`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `_deprecated_client_activities_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `_deprecated_client_activities`
--

LOCK TABLES `_deprecated_client_activities` WRITE;
/*!40000 ALTER TABLE `_deprecated_client_activities` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `_deprecated_client_activities` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `_deprecated_client_contacts`
--

DROP TABLE IF EXISTS `_deprecated_client_contacts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `_deprecated_client_contacts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `client_id` int(10) unsigned NOT NULL,
  `first_name` varchar(100) NOT NULL,
  `last_name` varchar(100) NOT NULL,
  `title` varchar(100) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `phone` varchar(50) DEFAULT NULL,
  `mobile` varchar(50) DEFAULT NULL,
  `is_primary` tinyint(1) DEFAULT 0,
  `notes` text DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_client_id` (`client_id`),
  KEY `idx_email` (`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 `_deprecated_client_contacts`
--

LOCK TABLES `_deprecated_client_contacts` WRITE;
/*!40000 ALTER TABLE `_deprecated_client_contacts` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `_deprecated_client_contacts` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `_deprecated_clients`
--

DROP TABLE IF EXISTS `_deprecated_clients`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `_deprecated_clients` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `client_type` enum('company','individual') DEFAULT 'company',
  `company_name` varchar(255) DEFAULT NULL,
  `first_name` varchar(100) DEFAULT NULL,
  `last_name` varchar(100) DEFAULT NULL,
  `email` varchar(255) NOT NULL,
  `secondary_email` varchar(255) DEFAULT NULL,
  `phone` varchar(50) DEFAULT NULL,
  `mobile` varchar(50) DEFAULT NULL,
  `website` varchar(255) DEFAULT NULL,
  `tax_id` varchar(100) DEFAULT NULL,
  `billing_address` text DEFAULT NULL,
  `billing_city` varchar(100) DEFAULT NULL,
  `billing_state` varchar(100) DEFAULT NULL,
  `billing_zip` varchar(20) DEFAULT NULL,
  `billing_country` varchar(100) DEFAULT NULL,
  `shipping_address` text DEFAULT NULL,
  `shipping_city` varchar(100) DEFAULT NULL,
  `shipping_state` varchar(100) DEFAULT NULL,
  `shipping_zip` varchar(20) DEFAULT NULL,
  `shipping_country` varchar(100) DEFAULT NULL,
  `industry` varchar(100) DEFAULT NULL,
  `annual_revenue` decimal(15,2) DEFAULT NULL,
  `employee_count` int(11) DEFAULT NULL,
  `payment_terms` varchar(50) DEFAULT NULL,
  `credit_limit` decimal(15,2) DEFAULT 0.00,
  `status` enum('active','inactive','on_hold') DEFAULT 'active',
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_status` (`status`),
  KEY `idx_company_name` (`company_name`),
  KEY `idx_email` (`email`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `_deprecated_clients_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `_deprecated_clients`
--

LOCK TABLES `_deprecated_clients` WRITE;
/*!40000 ALTER TABLE `_deprecated_clients` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `_deprecated_clients` VALUES
(2,'company','Test Client','','','test@texclient.com','','','','','','','','','','','','','','','','',NULL,NULL,'',0.00,'active','',1,'2025-11-13 09:47:07','2025-11-13 09:47:07');
/*!40000 ALTER TABLE `_deprecated_clients` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `action_conditions`
--

DROP TABLE IF EXISTS `action_conditions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `action_conditions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `action_id` int(10) unsigned NOT NULL,
  `condition_type` enum('field_equals','field_not_equals','field_empty','field_not_empty','custom_function') NOT NULL,
  `field_name` varchar(100) DEFAULT NULL COMMENT 'Field to check in context object, e.g., status, public_token',
  `field_value` text DEFAULT NULL COMMENT 'Expected value for comparison',
  `custom_function` varchar(100) DEFAULT NULL COMMENT 'PHP function name for custom evaluation',
  `logic_operator` enum('AND','OR') NOT NULL DEFAULT 'AND' COMMENT 'How to combine with other conditions',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_action_id` (`action_id`),
  CONSTRAINT `action_conditions_ibfk_1` FOREIGN KEY (`action_id`) REFERENCES `page_actions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `action_conditions`
--

LOCK TABLES `action_conditions` WRITE;
/*!40000 ALTER TABLE `action_conditions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `action_conditions` VALUES
(1,1,'field_not_equals','status','converted',NULL,'AND','2025-11-16 15:34:57'),
(2,1,'field_empty','customer_response',NULL,NULL,'AND','2025-11-16 15:34:57'),
(3,2,'field_not_empty','public_token',NULL,NULL,'AND','2025-11-16 15:34:57'),
(4,3,'field_not_empty','public_token',NULL,NULL,'AND','2025-11-16 15:34:57'),
(5,4,'field_not_equals','status','converted',NULL,'AND','2025-11-16 15:34:57'),
(6,8,'field_not_equals','status','converted',NULL,'AND','2025-11-16 15:34:57'),
(7,18,'field_equals','status','pending',NULL,'OR','2025-11-16 15:43:35'),
(8,18,'field_equals','status','confirmed',NULL,'AND','2025-11-16 15:43:35'),
(9,35,'field_not_equals','status','in_progress',NULL,'AND','2025-11-16 16:04:37'),
(10,35,'field_not_equals','status','completed',NULL,'AND','2025-11-16 16:04:37'),
(11,35,'field_not_equals','status','cancelled',NULL,'AND','2025-11-16 16:04:37'),
(12,36,'field_not_equals','status','completed',NULL,'AND','2025-11-16 16:04:37'),
(13,36,'field_not_equals','status','cancelled',NULL,'AND','2025-11-16 16:04:37'),
(14,37,'field_not_equals','status','completed',NULL,'AND','2025-11-16 16:04:37'),
(15,37,'field_not_equals','status','cancelled',NULL,'AND','2025-11-16 16:04:37'),
(16,71,'field_equals','status','active',NULL,'AND','2025-11-16 16:20:48'),
(17,72,'field_equals','status','active',NULL,'AND','2025-11-16 16:20:48'),
(19,76,'field_equals','status','draft',NULL,'AND','2025-11-16 16:20:48'),
(20,81,'field_equals','status','draft',NULL,'AND','2025-11-16 16:34:53'),
(21,84,'field_equals','status','draft',NULL,'AND','2025-11-16 16:34:53'),
(22,85,'field_equals','status','draft',NULL,'AND','2025-11-16 16:34:53'),
(24,88,'field_equals','status','draft',NULL,'AND','2025-11-16 16:34:53'),
(25,89,'field_equals','status','draft',NULL,'AND','2025-11-16 16:34:53'),
(28,107,'field_not_empty','has_quotes',NULL,NULL,'AND','2025-11-16 18:09:07'),
(29,108,'field_equals','status','pending_approval',NULL,'AND','2025-11-16 18:28:39'),
(30,109,'field_equals','status','pending_approval',NULL,'AND','2025-11-16 18:28:39'),
(31,113,'field_equals','status','pending',NULL,'AND','2025-11-16 18:28:39'),
(32,114,'field_equals','status','pending',NULL,'AND','2025-11-16 18:28:39'),
(33,115,'field_equals','status','pending',NULL,'AND','2025-11-16 18:28:39'),
(34,116,'field_equals','status','approved',NULL,'OR','2025-11-16 18:28:39'),
(35,116,'field_equals','status','received',NULL,'OR','2025-11-16 18:28:39'),
(36,119,'field_equals','is_verified','0',NULL,'AND','2025-11-16 18:28:39'),
(37,154,'custom_function',NULL,NULL,'isDocumentOwner','AND','2025-11-16 19:09:22'),
(38,178,'field_equals','status','draft',NULL,'AND','2025-11-16 22:56:40'),
(39,179,'field_equals','status','draft',NULL,'AND','2025-11-16 22:56:40'),
(40,181,'field_equals','status','draft',NULL,'AND','2025-11-16 22:56:40'),
(41,182,'field_equals','status','partially_signed',NULL,'AND','2025-11-16 23:45:01'),
(42,183,'field_equals','status','fully_executed',NULL,'AND','2025-11-16 23:54:50');
/*!40000 ALTER TABLE `action_conditions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `agreement_documents`
--

DROP TABLE IF EXISTS `agreement_documents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `agreement_documents` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `agreement_id` int(10) unsigned NOT NULL,
  `file_name` varchar(255) NOT NULL,
  `original_name` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_type` varchar(100) NOT NULL,
  `file_size` int(11) NOT NULL,
  `document_type` varchar(50) NOT NULL DEFAULT 'other',
  `description` text DEFAULT NULL,
  `uploaded_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_agreement_id` (`agreement_id`),
  KEY `uploaded_by` (`uploaded_by`),
  CONSTRAINT `agreement_documents_ibfk_1` FOREIGN KEY (`agreement_id`) REFERENCES `agreements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `agreement_documents_ibfk_2` FOREIGN KEY (`uploaded_by`) REFERENCES `users` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `agreement_documents`
--

LOCK TABLES `agreement_documents` WRITE;
/*!40000 ALTER TABLE `agreement_documents` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `agreement_documents` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `agreement_items`
--

DROP TABLE IF EXISTS `agreement_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `agreement_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `agreement_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned DEFAULT NULL,
  `description` text NOT NULL,
  `quantity` decimal(10,2) NOT NULL DEFAULT 1.00,
  `unit_price` decimal(15,2) NOT NULL DEFAULT 0.00,
  `tax_rate` decimal(5,2) NOT NULL DEFAULT 0.00,
  `discount_percent` decimal(5,2) NOT NULL DEFAULT 0.00,
  `line_total` decimal(15,2) NOT NULL DEFAULT 0.00,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_agreement_id` (`agreement_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `agreement_items_ibfk_1` FOREIGN KEY (`agreement_id`) REFERENCES `agreements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `agreement_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `agreement_items`
--

LOCK TABLES `agreement_items` WRITE;
/*!40000 ALTER TABLE `agreement_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `agreement_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `agreement_signatures`
--

DROP TABLE IF EXISTS `agreement_signatures`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `agreement_signatures` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `agreement_id` int(10) unsigned NOT NULL,
  `signature_type` enum('acceptance','decline') NOT NULL,
  `signature_data` longtext DEFAULT NULL,
  `signed_by_name` varchar(255) NOT NULL,
  `signed_by_email` varchar(255) NOT NULL,
  `signed_by_title` varchar(255) DEFAULT NULL,
  `company_name` varchar(255) DEFAULT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `declined_reason` text DEFAULT NULL,
  `signed_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_agreement_id` (`agreement_id`),
  KEY `idx_signature_type` (`signature_type`),
  CONSTRAINT `agreement_signatures_ibfk_1` FOREIGN KEY (`agreement_id`) REFERENCES `agreements` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `agreement_signatures`
--

LOCK TABLES `agreement_signatures` WRITE;
/*!40000 ALTER TABLE `agreement_signatures` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `agreement_signatures` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `agreement_templates`
--

DROP TABLE IF EXISTS `agreement_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `agreement_templates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `category` varchar(100) NOT NULL DEFAULT 'general',
  `description` text DEFAULT NULL,
  `header_content` text DEFAULT NULL,
  `body_content` text DEFAULT NULL,
  `footer_content` text DEFAULT NULL,
  `terms_conditions` text DEFAULT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT 0,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `created_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_category` (`category`),
  KEY `idx_is_default` (`is_default`),
  KEY `idx_is_active` (`is_active`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `agreement_templates_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `agreement_templates`
--

LOCK TABLES `agreement_templates` WRITE;
/*!40000 ALTER TABLE `agreement_templates` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `agreement_templates` VALUES
(1,'Standard Service Agreement','service','Default template for service agreements','<h2 style=\"text-align: center;\">SERVICE AGREEMENT</h2>\n<p style=\"text-align: center;\"><strong>Agreement Number: {agreement_number}</strong></p>\n<p style=\"text-align: center;\">Date: {agreement_date}</p>','<h3>1. Parties</h3>\n<p>This Agreement is entered into between <strong>{company_name}</strong> (\"Provider\") and <strong>{customer_name}</strong> (\"Client\").</p>\n\n<h3>2. Services</h3>\n<p>The Provider agrees to provide the following services to the Client:</p>\n{line_items}\n\n<h3>3. Term</h3>\n<p>This Agreement shall commence on <strong>{start_date}</strong> and continue until <strong>{end_date}</strong>, unless terminated earlier in accordance with the terms herein.</p>\n\n<h3>4. Payment Terms</h3>\n<p>Total Amount: <strong>{total_amount}</strong></p>\n<p>Payment is due within 30 days of invoice date.</p>','<h3>Signatures</h3>\n<p>By signing below, both parties agree to the terms and conditions outlined in this Agreement.</p>\n<br>\n<p><strong>Provider:</strong> {company_name}</p>\n<p>Authorized Signature: _____________________</p>\n<br>\n<p><strong>Client:</strong> {customer_name}</p>\n<p>Signature: {signature}</p>\n<p>Date: {signed_date}</p>','<h3>Terms and Conditions</h3>\n<ol>\n<li><strong>Confidentiality:</strong> Both parties agree to maintain confidentiality of proprietary information.</li>\n<li><strong>Termination:</strong> Either party may terminate this agreement with 30 days written notice.</li>\n<li><strong>Liability:</strong> Provider\'s liability shall be limited to the amount paid under this agreement.</li>\n<li><strong>Governing Law:</strong> This agreement shall be governed by the laws of the jurisdiction.</li>\n<li><strong>Amendments:</strong> Any amendments must be made in writing and signed by both parties.</li>\n</ol>',1,1,1,'2025-11-25 23:26:11','2025-11-25 23:26:11'),
(2,'Standard Service Agreement','service','Default template for service agreements','<h2 style=\"text-align: center;\">SERVICE AGREEMENT</h2>\n<p style=\"text-align: center;\"><strong>Agreement Number: {agreement_number}</strong></p>\n<p style=\"text-align: center;\">Date: {agreement_date}</p>','<h3>1. Parties</h3>\n<p>This Agreement is entered into between <strong>{company_name}</strong> (\"Provider\") and <strong>{customer_name}</strong> (\"Client\").</p>\n\n<h3>2. Services</h3>\n<p>The Provider agrees to provide the following services to the Client:</p>\n{line_items}\n\n<h3>3. Term</h3>\n<p>This Agreement shall commence on <strong>{start_date}</strong> and continue until <strong>{end_date}</strong>, unless terminated earlier in accordance with the terms herein.</p>\n\n<h3>4. Payment Terms</h3>\n<p>Total Amount: <strong>{total_amount}</strong></p>\n<p>Payment is due within 30 days of invoice date.</p>','<h3>Signatures</h3>\n<p>By signing below, both parties agree to the terms and conditions outlined in this Agreement.</p>\n<br>\n<p><strong>Provider:</strong> {company_name}</p>\n<p>Authorized Signature: _____________________</p>\n<br>\n<p><strong>Client:</strong> {customer_name}</p>\n<p>Signature: {signature}</p>\n<p>Date: {signed_date}</p>','<h3>Terms and Conditions</h3>\n<ol>\n<li><strong>Confidentiality:</strong> Both parties agree to maintain confidentiality of proprietary information.</li>\n<li><strong>Termination:</strong> Either party may terminate this agreement with 30 days written notice.</li>\n<li><strong>Liability:</strong> Provider\'s liability shall be limited to the amount paid under this agreement.</li>\n<li><strong>Governing Law:</strong> This agreement shall be governed by the laws of the jurisdiction.</li>\n<li><strong>Amendments:</strong> Any amendments must be made in writing and signed by both parties.</li>\n</ol>',1,1,1,'2025-11-25 23:30:52','2025-11-25 23:30:52');
/*!40000 ALTER TABLE `agreement_templates` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `agreements`
--

DROP TABLE IF EXISTS `agreements`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `agreements` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `agreement_number` varchar(50) NOT NULL,
  `customer_id` int(10) unsigned NOT NULL,
  `quote_id` int(10) unsigned DEFAULT NULL,
  `agreement_date` date NOT NULL,
  `start_date` date NOT NULL,
  `end_date` date DEFAULT NULL,
  `template_id` int(10) unsigned DEFAULT NULL,
  `subtotal` decimal(15,2) NOT NULL DEFAULT 0.00,
  `tax_amount` decimal(15,2) NOT NULL DEFAULT 0.00,
  `discount_amount` decimal(15,2) NOT NULL DEFAULT 0.00,
  `total_amount` decimal(15,2) NOT NULL DEFAULT 0.00,
  `status` enum('draft','sent','signed','rejected','expired','converted') NOT NULL DEFAULT 'draft',
  `notes` text DEFAULT NULL,
  `terms` text DEFAULT NULL,
  `public_token` varchar(64) DEFAULT NULL,
  `token_expires_at` datetime DEFAULT NULL,
  `customer_response` enum('accepted','declined') DEFAULT NULL,
  `signed_at` datetime DEFAULT NULL,
  `signed_by_name` varchar(255) DEFAULT NULL,
  `signed_by_email` varchar(255) DEFAULT NULL,
  `signature_data` longtext DEFAULT NULL,
  `converted_to_sales_order_id` int(10) unsigned DEFAULT NULL,
  `created_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `agreement_number` (`agreement_number`),
  UNIQUE KEY `public_token` (`public_token`),
  KEY `idx_agreement_number` (`agreement_number`),
  KEY `idx_customer_id` (`customer_id`),
  KEY `idx_status` (`status`),
  KEY `idx_public_token` (`public_token`),
  KEY `idx_created_at` (`created_at`),
  KEY `idx_deleted_at` (`deleted_at`),
  KEY `quote_id` (`quote_id`),
  KEY `created_by` (`created_by`),
  KEY `converted_to_sales_order_id` (`converted_to_sales_order_id`),
  CONSTRAINT `agreements_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`),
  CONSTRAINT `agreements_ibfk_2` FOREIGN KEY (`quote_id`) REFERENCES `quotes` (`id`) ON DELETE SET NULL,
  CONSTRAINT `agreements_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`),
  CONSTRAINT `agreements_ibfk_4` FOREIGN KEY (`converted_to_sales_order_id`) REFERENCES `sales_orders` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `agreements`
--

LOCK TABLES `agreements` WRITE;
/*!40000 ALTER TABLE `agreements` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `agreements` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `announcement_reads`
--

DROP TABLE IF EXISTS `announcement_reads`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `announcement_reads` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `announcement_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `read_at` timestamp NULL DEFAULT current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `announcement_user` (`announcement_id`,`user_id`),
  KEY `user_id` (`user_id`),
  CONSTRAINT `announcement_reads_ibfk_1` FOREIGN KEY (`announcement_id`) REFERENCES `announcements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `announcement_reads_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `announcement_reads`
--

LOCK TABLES `announcement_reads` WRITE;
/*!40000 ALTER TABLE `announcement_reads` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `announcement_reads` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `announcements`
--

DROP TABLE IF EXISTS `announcements`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `announcements` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `message` text NOT NULL,
  `link` varchar(500) DEFAULT NULL,
  `type` enum('info','warning','success','danger') DEFAULT 'info',
  `priority` enum('low','normal','high','urgent') DEFAULT 'normal',
  `target_audience` enum('all','role','specific') DEFAULT 'all',
  `target_roles` varchar(255) DEFAULT NULL COMMENT 'Comma-separated role names if target_audience=role',
  `target_users` text DEFAULT NULL COMMENT 'Comma-separated user IDs if target_audience=specific',
  `start_date` datetime NOT NULL,
  `end_date` datetime DEFAULT NULL,
  `status` enum('draft','active','expired','archived') DEFAULT 'draft',
  `created_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `status` (`status`),
  KEY `start_date` (`start_date`),
  KEY `end_date` (`end_date`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `announcements_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `announcements`
--

LOCK TABLES `announcements` WRITE;
/*!40000 ALTER TABLE `announcements` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `announcements` VALUES
(5,'Upcoming Event: Test alert (in less than 5 minutes)','Event: Test alert\nthis is a message','/calendar','info','high','specific',NULL,'@all-staff @Admin User ','2025-11-14 13:48:17','2025-11-14 15:48:17','active',1,'2025-11-14 18:48:17','2025-11-14 18:48:17'),
(6,'Upcoming Event: Test again (in 10 minutes)','Event: Test again\n`Alert\'','/calendar','info','high','specific',NULL,'@Admin User ','2025-11-14 14:00:00','2025-11-14 16:00:00','active',1,'2025-11-14 19:00:00','2025-11-14 19:00:00'),
(9,'Product Expiring in 30 Days: Premium Widget A','Product expiring in 30 days\nProduct: Premium Widget A (SKU: PROD-001-TEST)\nLot/Serial: LOT-TEST-30D-6633\nQuantity: 50.00\nLocation: Garage\nPlan usage or disposal before expiration','/inventory/lot-serial/1','info','normal','all',NULL,NULL,'2025-11-14 15:01:26','2025-11-17 15:01:26','active',1,'2025-11-14 20:01:26','2025-11-14 20:01:26'),
(10,'⚠️ URGENT: Product Expiring in 7 Days - Premium Widget A','⚠️ Product expiring in 7 DAYS\nProduct: Premium Widget A (SKU: PROD-001-TEST)\nLot/Serial: LOT-TEST-7D-1241\nQuantity: 75.00\nLocation: Garage\n⚠️ URGENT: Use immediately or prepare for disposal','/inventory/lot-serial/2','warning','high','all',NULL,NULL,'2025-11-14 15:01:26','2025-11-17 15:01:26','active',1,'2025-11-14 20:01:26','2025-11-14 20:01:26'),
(11,'🚨 EXPIRED PRODUCT: Premium Widget A - QUARANTINE NOW','🚨 EXPIRED PRODUCT - IMMEDIATE ACTION REQUIRED\nProduct: Premium Widget A (SKU: PROD-001-TEST)\nLot/Serial: LOT-TEST-EXP-6307\nQuantity: 25.00\nLocation: Garage\n🚨 COMPLIANCE ALERT: Remove from inventory immediately\nAction: Quarantine and dispose per company policy\nRisk: Safety/regulatory violation if used','/inventory/lot-serial/3','danger','high','all',NULL,NULL,'2025-11-14 15:01:26','2025-11-21 15:01:26','active',1,'2025-11-14 20:01:26','2025-11-14 20:01:26'),
(12,'Payment Reminder: Invoice #INV-TEST-3D-984 due in 3 days','Invoice #INV-TEST-3D-984 due in 3 days\nCustomer: 4 Patriots\nAmount: $1,500.00\nBalance Due: $1,500.00','/invoices/19','info','normal','all',NULL,NULL,'2025-11-14 15:01:48','2025-11-15 15:01:48','active',1,'2025-11-14 20:01:48','2025-11-14 20:01:48'),
(13,'⚠️ URGENT: Invoice #INV-TEST-1D-324 due tomorrow','⚠️ Invoice #INV-TEST-1D-324 due TOMORROW\nCustomer: 4 Patriots\nAmount: $2,500.00\nBalance Due: $2,500.00','/invoices/20','warning','high','all',NULL,NULL,'2025-11-14 15:01:48','2025-11-16 15:01:48','active',1,'2025-11-14 20:01:48','2025-11-14 20:01:48'),
(14,'🔴 PAYMENT DUE: Invoice #INV-TEST-DUE-667 due today','🔴 Invoice #INV-TEST-DUE-667 is DUE TODAY\nCustomer: 4 Patriots\nAmount: $3,500.00\nBalance Due: $3,500.00','/invoices/21','warning','high','all',NULL,NULL,'2025-11-14 15:01:48','2025-11-17 15:01:48','active',1,'2025-11-14 20:01:48','2025-11-14 20:01:48'),
(15,'❌ OVERDUE: Invoice #INV-TEST-7D-364 - 7 days past due','❌ Invoice #INV-TEST-7D-364 is 7 DAYS OVERDUE\nCustomer: 4 Patriots\nAmount: $5,000.00\nBalance Due: $5,000.00\n⚠️ Immediate collection action required','/invoices/22','danger','high','all',NULL,NULL,'2025-11-14 15:01:48','2025-11-21 15:01:48','active',1,'2025-11-14 20:01:48','2025-11-14 20:01:48'),
(16,'Work Order Due Tomorrow: #WO-TEST-1D-10','Work Order #WO-TEST-1D-10 due TOMORROW\nProduct: Premium Widget A\nQuantity: 100\nStatus: planned\nEnsure production is on track for completion','/manufacturing/work-orders/1','info','normal','all',NULL,NULL,'2025-11-14 15:02:03','2025-11-15 15:02:03','active',1,'2025-11-14 20:02:03','2025-11-14 20:02:03'),
(17,'🔴 PRODUCTION DUE: Work Order #WO-TEST-DUE-219 due today','🔴 Work Order #WO-TEST-DUE-219 DUE TODAY\nProduct: Premium Widget A\nQuantity: 150\nStatus: planned\n🔴 Must be completed by end of day','/manufacturing/work-orders/2','warning','high','all',NULL,NULL,'2025-11-14 15:02:03','2025-11-15 15:02:03','active',1,'2025-11-14 20:02:03','2025-11-14 20:02:03'),
(18,'❌ OVERDUE: Work Order #WO-TEST-OVER-64 - 3 days late','❌ Work Order #WO-TEST-OVER-64 is 3 DAYS OVERDUE\nProduct: Premium Widget A\nQuantity: 200\nStatus: planned\n❌ Critical production delay - immediate action required\nImpact: Customer deliveries may be affected','/manufacturing/work-orders/3','danger','high','all',NULL,NULL,'2025-11-14 15:02:03','2025-11-15 15:02:03','active',1,'2025-11-14 20:02:03','2025-11-14 20:02:03'),
(19,'Quote Expiring Soon: #QUO-TEST-3D-822 - 3 days remaining','Quote #QUO-TEST-3D-822 expires in 3 days\nCustomer: 4 Patriots\nAmount: $4,500.00\nFollow up with customer to convert to sales order','/quotes/6','info','normal','all',NULL,NULL,'2025-11-14 15:02:16','2025-11-15 15:02:16','active',1,'2025-11-14 20:02:16','2025-11-14 20:02:16'),
(20,'⚠️ URGENT: Quote #QUO-TEST-1D-15 expires tomorrow','⚠️ Quote #QUO-TEST-1D-15 expires TOMORROW\nCustomer: 4 Patriots\nAmount: $6,000.00\n⚠️ Last chance to close this deal - contact customer urgently','/quotes/7','warning','high','all',NULL,NULL,'2025-11-14 15:02:16','2025-11-16 15:02:16','active',1,'2025-11-14 20:02:16','2025-11-14 20:02:16'),
(21,'❌ EXPIRED: Quote #QUO-TEST-EXP-611 - Review required','❌ Quote #QUO-TEST-EXP-611 EXPIRED TODAY\nCustomer: 4 Patriots\nAmount: $7,500.00\n❌ Lost opportunity - potential revenue $7,500.00\nConsider: Why did customer not convert? Follow up required','/quotes/8','danger','high','all',NULL,NULL,'2025-11-14 15:02:16','2025-11-17 15:02:16','active',1,'2025-11-14 20:02:16','2025-11-14 20:02:16'),
(22,'Upcoming Event: Deadline (at 12:00 AM)','Event: Deadline','/calendar','info','normal','all',NULL,NULL,'2025-11-20 23:00:01','2025-11-21 01:00:01','active',1,'2025-11-21 04:00:01','2025-11-21 04:00:01'),
(23,'Upcoming Event: Event Title Here (at 11:26 AM)','Event: Event Title Here\nDesc Test\nLocation: There','/calendar','info','normal','all',NULL,NULL,'2025-11-27 10:30:01','2025-11-27 12:30:01','active',1,'2025-11-27 15:30:01','2025-11-27 15:30:01'),
(24,'Upcoming Event: Event (at 12:00 PM)','Event: Event\nDesc\nLocation: Loca','/calendar','info','normal','all',NULL,NULL,'2025-11-27 11:00:01','2025-11-27 13:00:01','active',1,'2025-11-27 16:00:01','2025-11-27 16:00:01'),
(25,'Upcoming Event: test (in 10 minutes)','Event: test\ndesc\nLocation: lacotione','/calendar','info','high','all',NULL,NULL,'2025-11-27 15:50:00','2025-11-27 17:50:00','active',1,'2025-11-27 20:50:00','2025-11-27 20:50:00'),
(26,'Upcoming Event: Test (in 10 minutes)','Event: Test','/calendar','info','high','all',NULL,NULL,'2025-11-27 15:50:00','2025-11-27 17:50:02','active',1,'2025-11-27 20:50:02','2025-11-27 20:50:02'),
(27,'Upcoming Event: test (at 5:00 PM)','Event: test','/calendar','info','normal','all',NULL,NULL,'2025-11-27 16:10:00','2025-11-27 18:10:00','active',1,'2025-11-27 21:10:00','2025-11-27 21:10:00'),
(28,'Upcoming Event: test (at 5:00 PM)','Event: test','/calendar','info','normal','all',NULL,NULL,'2025-11-27 16:10:00','2025-11-27 18:10:00','active',1,'2025-11-27 21:10:00','2025-11-27 21:10:00'),
(29,'Upcoming Event: tester (at 5:00 PM)','Event: tester','/calendar','info','normal','all',NULL,NULL,'2025-11-27 16:10:00','2025-11-27 18:10:02','active',1,'2025-11-27 21:10:02','2025-11-27 21:10:02'),
(30,'Upcoming Event: tester (at 5:00 PM)','Event: tester','/calendar','info','normal','all',NULL,NULL,'2025-11-27 16:10:00','2025-11-27 18:10:03','active',1,'2025-11-27 21:10:03','2025-11-27 21:10:03'),
(31,'Upcoming Event: Demo (at 7:00 PM)','Event: Demo','/calendar','info','normal','all',NULL,NULL,'2025-12-04 18:00:01','2025-12-04 20:00:01','active',1,'2025-12-04 23:00:01','2025-12-04 23:00:01'),
(32,'Upcoming Event: Rick Mtg (at 5:00 PM)','Event: Rick Mtg','/calendar','info','normal','all',NULL,NULL,'2025-12-10 16:01:14','2025-12-10 18:01:14','active',1,'2025-12-10 21:01:14','2025-12-10 21:01:14');
/*!40000 ALTER TABLE `announcements` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `api_rate_limit_violations`
--

DROP TABLE IF EXISTS `api_rate_limit_violations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `api_rate_limit_violations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `identifier` varchar(255) NOT NULL COMMENT 'IP address or API key that violated limit',
  `endpoint` varchar(100) NOT NULL COMMENT 'Endpoint that was rate limited',
  `request_count` int(11) NOT NULL COMMENT 'Number of requests that triggered violation',
  `limit` int(11) NOT NULL COMMENT 'Rate limit that was exceeded',
  `user_agent` text DEFAULT NULL COMMENT 'User agent string',
  `request_uri` text DEFAULT NULL COMMENT 'Request URI',
  `created_at` datetime DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_identifier` (`identifier`),
  KEY `idx_endpoint` (`endpoint`),
  KEY `idx_created_at` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Logs rate limit violations for security monitoring';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `api_rate_limit_violations`
--

LOCK TABLES `api_rate_limit_violations` WRITE;
/*!40000 ALTER TABLE `api_rate_limit_violations` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `api_rate_limit_violations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `api_rate_limits`
--

DROP TABLE IF EXISTS `api_rate_limits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `api_rate_limits` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `identifier` varchar(255) NOT NULL COMMENT 'IP address or API key',
  `endpoint` varchar(100) NOT NULL COMMENT 'Endpoint identifier (e.g., api_machine, api_search)',
  `request_count` int(11) NOT NULL DEFAULT 0 COMMENT 'Number of requests in current window',
  `window_start` datetime NOT NULL COMMENT 'Start of rate limit window',
  `window_end` datetime NOT NULL COMMENT 'End of rate limit window',
  `last_request` datetime NOT NULL COMMENT 'Timestamp of last request',
  `created_at` datetime DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_identifier_endpoint` (`identifier`,`endpoint`),
  KEY `idx_window_end` (`window_end`),
  KEY `idx_last_request` (`last_request`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Tracks API rate limits per identifier and endpoint';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `api_rate_limits`
--

LOCK TABLES `api_rate_limits` WRITE;
/*!40000 ALTER TABLE `api_rate_limits` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `api_rate_limits` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `asset_categories`
--

DROP TABLE IF EXISTS `asset_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `asset_categories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `category_name` varchar(100) NOT NULL,
  `useful_life_years` decimal(5,1) NOT NULL DEFAULT 10.0,
  `maintenance_capex_rate` decimal(5,2) NOT NULL DEFAULT 2.00 COMMENT 'Annual maintenance as % of asset value',
  `replacement_period_years` decimal(5,1) NOT NULL DEFAULT 10.0 COMMENT 'When to plan replacement',
  `capitalization_threshold` decimal(5,2) NOT NULL DEFAULT 15.00 COMMENT 'Min % to capitalize vs expense',
  `depreciation_method` enum('straight_line','declining_balance','units_of_production') DEFAULT 'straight_line',
  `salvage_value_percent` decimal(5,2) DEFAULT 10.00 COMMENT 'Expected salvage value as % of cost',
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `sort_order` int(11) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_active` (`is_active`),
  KEY `idx_sort` (`sort_order`)
) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `asset_categories`
--

LOCK TABLES `asset_categories` WRITE;
/*!40000 ALTER TABLE `asset_categories` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `asset_categories` VALUES
(1,'Land / Property',20.0,6.20,10.0,15.00,'straight_line',10.00,1,1,'2025-11-01 11:01:06','2025-11-01 11:01:06'),
(2,'Plant / Building',18.0,6.20,10.0,15.00,'straight_line',10.00,1,2,'2025-11-01 11:01:06','2025-11-01 11:01:06'),
(3,'Manufacturing Equipment',15.0,2.00,10.0,15.00,'straight_line',10.00,1,3,'2025-11-01 11:01:06','2025-11-01 11:01:06'),
(4,'Tooling Machinery',15.0,2.00,10.0,15.00,'straight_line',10.00,1,4,'2025-11-01 11:01:06','2025-11-01 11:01:06'),
(5,'Office Furniture',10.0,6.20,10.0,15.00,'straight_line',10.00,1,5,'2025-11-01 11:01:06','2025-11-01 11:01:06'),
(6,'Office Fixtures',10.0,6.20,10.0,15.00,'straight_line',10.00,1,6,'2025-11-01 11:01:06','2025-11-01 11:01:06'),
(7,'Vehicles',10.0,6.20,10.0,15.00,'straight_line',10.00,1,7,'2025-11-01 11:01:06','2025-11-01 11:01:06'),
(8,'IT Equipment',5.0,6.20,10.0,15.00,'straight_line',10.00,1,8,'2025-11-01 11:01:06','2025-11-01 11:01:06'),
(9,'Construction Fees & Expenses',5.0,0.00,0.0,0.00,'straight_line',10.00,1,9,'2025-11-01 11:01:06','2025-11-01 11:01:06'),
(10,'Battery Module Assembly Equipment',10.0,5.00,7.0,0.00,'straight_line',10.00,1,10,'2025-11-01 11:01:06','2025-11-01 11:01:06'),
(11,'Battery Module T&A Equipment',12.0,2.00,10.0,0.00,'straight_line',10.00,1,11,'2025-11-01 11:01:06','2025-11-01 11:01:06'),
(12,'Physical Security',10.0,2.00,10.0,15.00,'straight_line',10.00,1,12,'2025-11-01 11:01:06','2025-11-01 11:01:06'),
(13,'Land / Property',20.0,6.20,10.0,15.00,'straight_line',10.00,1,1,'2025-11-01 11:21:16','2025-11-01 11:21:16'),
(14,'Plant / Building',18.0,6.20,10.0,15.00,'straight_line',10.00,1,2,'2025-11-01 11:21:16','2025-11-01 11:21:16'),
(15,'Manufacturing Equipment',15.0,2.00,10.0,15.00,'straight_line',10.00,1,3,'2025-11-01 11:21:16','2025-11-01 11:21:16'),
(16,'Tooling Machinery',15.0,2.00,10.0,15.00,'straight_line',10.00,1,4,'2025-11-01 11:21:16','2025-11-01 11:21:16'),
(17,'Office Furniture',10.0,6.20,10.0,15.00,'straight_line',10.00,1,5,'2025-11-01 11:21:16','2025-11-01 11:21:16'),
(18,'Office Fixtures',10.0,6.20,10.0,15.00,'straight_line',10.00,1,6,'2025-11-01 11:21:16','2025-11-01 11:21:16'),
(19,'Vehicles',10.0,6.20,10.0,15.00,'straight_line',10.00,1,7,'2025-11-01 11:21:16','2025-11-01 11:21:16'),
(20,'IT Equipment',5.0,6.20,10.0,15.00,'straight_line',10.00,1,8,'2025-11-01 11:21:16','2025-11-01 11:21:16'),
(21,'Construction Fees & Expenses',5.0,0.00,0.0,0.00,'straight_line',10.00,1,9,'2025-11-01 11:21:16','2025-11-01 11:21:16'),
(22,'Battery Module Assembly Equipment',10.0,5.00,7.0,0.00,'straight_line',10.00,1,10,'2025-11-01 11:21:16','2025-11-01 11:21:16'),
(23,'Battery Module T&A Equipment',12.0,2.00,10.0,0.00,'straight_line',10.00,1,11,'2025-11-01 11:21:16','2025-11-01 11:21:16'),
(24,'Physical Security',10.0,2.00,10.0,15.00,'straight_line',10.00,1,12,'2025-11-01 11:21:16','2025-11-01 11:21:16'),
(25,'Land / Property',20.0,6.20,10.0,15.00,'straight_line',10.00,1,1,'2025-11-01 11:27:52','2025-11-01 11:27:52'),
(26,'Plant / Building',18.0,6.20,10.0,15.00,'straight_line',10.00,1,2,'2025-11-01 11:27:52','2025-11-01 11:27:52'),
(27,'Manufacturing Equipment',15.0,2.00,10.0,15.00,'straight_line',10.00,1,3,'2025-11-01 11:27:52','2025-11-01 11:27:52'),
(28,'Tooling Machinery',15.0,2.00,10.0,15.00,'straight_line',10.00,1,4,'2025-11-01 11:27:52','2025-11-01 11:27:52'),
(29,'Office Furniture',10.0,6.20,10.0,15.00,'straight_line',10.00,1,5,'2025-11-01 11:27:52','2025-11-01 11:27:52'),
(30,'Office Fixtures',10.0,6.20,10.0,15.00,'straight_line',10.00,1,6,'2025-11-01 11:27:52','2025-11-01 11:27:52'),
(31,'Vehicles',10.0,6.20,10.0,15.00,'straight_line',10.00,1,7,'2025-11-01 11:27:52','2025-11-01 11:27:52'),
(32,'IT Equipment',5.0,6.20,10.0,15.00,'straight_line',10.00,1,8,'2025-11-01 11:27:52','2025-11-01 11:27:52'),
(33,'Construction Fees & Expenses',5.0,0.00,0.0,0.00,'straight_line',10.00,1,9,'2025-11-01 11:27:52','2025-11-01 11:27:52'),
(34,'Battery Module Assembly Equipment',10.0,5.00,7.0,0.00,'straight_line',10.00,1,10,'2025-11-01 11:27:52','2025-11-01 11:27:52'),
(35,'Battery Module T&A Equipment',12.0,2.00,10.0,0.00,'straight_line',10.00,1,11,'2025-11-01 11:27:52','2025-11-01 11:27:52'),
(36,'Physical Security',10.0,2.00,10.0,15.00,'straight_line',10.00,1,12,'2025-11-01 11:27:52','2025-11-01 11:27:52');
/*!40000 ALTER TABLE `asset_categories` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `attendance`
--

DROP TABLE IF EXISTS `attendance`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `attendance` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `employee_id` int(10) unsigned NOT NULL,
  `date` date NOT NULL,
  `clock_in` time DEFAULT NULL,
  `clock_out` time DEFAULT NULL,
  `hours_worked` decimal(5,2) DEFAULT NULL,
  `status` enum('present','absent','late','half_day','leave') DEFAULT 'present',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `employee_date` (`employee_id`,`date`),
  CONSTRAINT `attendance_ibfk_1` FOREIGN KEY (`employee_id`) REFERENCES `employees` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `attendance`
--

LOCK TABLES `attendance` WRITE;
/*!40000 ALTER TABLE `attendance` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `attendance` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `audit_log_stats`
--

DROP TABLE IF EXISTS `audit_log_stats`;
/*!50001 DROP VIEW IF EXISTS `audit_log_stats`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `audit_log_stats` AS SELECT
 1 AS `date`,
  1 AS `model`,
  1 AS `action`,
  1 AS `count`,
  1 AS `unique_users` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `audit_logs`
--

DROP TABLE IF EXISTS `audit_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `audit_logs` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `user_name` varchar(255) DEFAULT NULL COMMENT 'Cached user name for historical records',
  `action` varchar(50) NOT NULL,
  `entity_type` varchar(100) NOT NULL,
  `entity_id` int(11) DEFAULT NULL,
  `description` varchar(500) DEFAULT NULL COMMENT 'Human-readable description',
  `old_values` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Previous values (for updates/deletes)' CHECK (json_valid(`old_values`)),
  `new_values` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'New values (for creates/updates)' CHECK (json_valid(`new_values`)),
  `changed_fields` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Array of field names that changed' CHECK (json_valid(`changed_fields`)),
  `url` varchar(500) DEFAULT NULL COMMENT 'Request URL',
  `method` varchar(10) DEFAULT NULL COMMENT 'HTTP method (GET, POST, etc.)',
  `tags` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Custom tags for filtering' CHECK (json_valid(`tags`)),
  `metadata` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Additional context data' CHECK (json_valid(`metadata`)),
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_id` (`user_id`),
  KEY `idx_action` (`action`),
  KEY `idx_entity` (`entity_type`,`entity_id`),
  KEY `idx_created_at` (`created_at`),
  KEY `idx_user_name` (`user_name`),
  KEY `idx_description` (`description`(255))
) ENGINE=InnoDB AUTO_INCREMENT=816 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `audit_logs`
--

LOCK TABLES `audit_logs` WRITE;
/*!40000 ALTER TABLE `audit_logs` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `audit_logs` VALUES
(1,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 17:21:45'),
(2,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 17:21:52'),
(3,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 17:58:01'),
(4,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 17:58:20'),
(5,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 17:59:24'),
(6,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 17:59:33'),
(7,1,'Admin User','update','menu_items',256,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 18:10:38'),
(8,1,'Admin User','update','users',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 18:55:10'),
(9,1,'Admin User','update','users',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 18:55:28'),
(10,1,'Admin User','update','users',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 18:55:40'),
(11,NULL,NULL,'login_failed','auth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 20:05:11'),
(12,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 20:05:25'),
(13,NULL,NULL,'login_failed','auth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 23:26:28'),
(14,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 23:27:02'),
(15,NULL,NULL,'login_failed','auth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 12:25:10'),
(16,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 12:25:20'),
(17,NULL,NULL,'login_failed','auth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 14:21:13'),
(18,NULL,NULL,'login_failed','auth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 14:21:24'),
(19,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 14:21:30'),
(20,NULL,NULL,'login_failed','auth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:00:59'),
(21,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:01:42'),
(22,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:24:31'),
(23,1,'Admin User','update','menu_items',185,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:44:42'),
(24,1,'Admin User','update','menu_items',186,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:44:56'),
(25,1,'Admin User','update','menu_items',187,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:45:06'),
(26,1,'Admin User','delete','purchase_orders',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:57:33'),
(27,1,'Admin User','delete','purchase_orders',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:57:36'),
(28,1,'Admin User','delete','purchase_orders',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:57:40'),
(29,1,'Admin User','delete','purchase_orders',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:57:44'),
(30,1,'Admin User','delete','purchase_orders',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:57:52'),
(31,1,'Admin User','delete','purchase_orders',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:57:56'),
(32,1,'Admin User','delete','purchase_orders',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:57:58'),
(33,1,'Admin User','delete','purchase_orders',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:58:00'),
(34,1,'Admin User','delete','purchase_orders',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:58:03'),
(35,1,'Admin User','delete','purchase_orders',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:58:05'),
(36,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:36:37'),
(37,1,'Admin User','delete','invoices',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:40:24'),
(38,1,'Admin User','delete','invoices',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:40:33'),
(39,1,'Admin User','delete','invoices',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:41:10'),
(40,1,'Admin User','delete','invoices',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:41:14'),
(41,1,'Admin User','delete','invoices',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:41:16'),
(42,1,'Admin User','delete','invoices',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:41:18'),
(43,1,'Admin User','delete','invoices',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:41:19'),
(44,1,'Admin User','delete','invoices',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:41:21'),
(45,1,'Admin User','delete','invoices',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:41:24'),
(46,1,'Admin User','delete','invoices',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:41:26'),
(47,1,'Admin User','delete','invoices',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:41:33'),
(48,1,'Admin User','delete','invoices',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:41:44'),
(49,1,'Admin User','delete','invoices',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:41:53'),
(50,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 22:37:20'),
(51,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-13 01:19:26'),
(52,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-13 11:43:04'),
(53,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-13 11:49:32'),
(54,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-13 14:22:11'),
(55,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-13 16:25:41'),
(56,1,'Admin User','update','employees',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-13 16:31:51'),
(57,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-13 18:26:01'),
(58,1,'Admin User','update','menu_items',257,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-13 18:26:56'),
(59,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-13 19:44:08'),
(60,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-13 21:46:41'),
(61,1,'Admin User','update','users',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-13 22:00:45'),
(62,1,'Admin User','update','menu_items',237,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-13 22:02:37'),
(63,1,'Admin User','update','menu_items',238,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-13 22:14:45'),
(64,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 00:02:53'),
(65,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 00:12:19'),
(66,1,'Admin User','update','menu_items',239,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 00:13:33'),
(67,1,'Admin User','update','menu_items',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 00:13:43'),
(68,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 11:38:37'),
(69,1,'Admin User','update','menu_items',258,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 12:42:48'),
(70,1,'Admin User','update','menu_items',258,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 12:43:16'),
(71,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 13:11:37'),
(72,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 13:12:36'),
(73,1,'Admin User','create','menu_items',259,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 13:14:30'),
(74,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 13:57:04'),
(75,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 14:42:01'),
(76,1,'Admin User','update','menu_items',199,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 16:31:04'),
(77,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 16:45:50'),
(78,1,'Admin User','update','menu_items',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 17:27:29'),
(79,1,'Admin User','update','menu_items',201,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 17:27:37'),
(80,1,'Admin User','update','menu_items',202,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 17:27:47'),
(81,1,'Admin User','update','menu_items',199,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 17:41:00'),
(82,1,'Admin User','update','menu_items',201,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 17:42:06'),
(83,1,'Admin User','update','menu_items',201,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 17:42:46'),
(84,1,'Admin User','update','menu_items',205,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 17:44:08'),
(85,1,'Admin User','update','menu_items',206,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 17:44:16'),
(86,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 18:09:19'),
(87,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 18:19:12'),
(88,1,'Admin User','update','menu_items',202,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 18:40:37'),
(89,1,'Admin User','update','menu_items',202,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 18:41:32'),
(90,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 20:48:13'),
(91,1,'Admin User','create','users',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 21:00:43'),
(92,1,'Admin User','create','users',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 21:01:16'),
(93,1,'Admin User','update','roles',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 21:02:51'),
(94,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 21:03:10'),
(95,8,'Tony A','login','auth',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 21:03:28'),
(96,8,'Tony A','logout','auth',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 22:40:28'),
(97,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 22:40:31'),
(98,1,'Admin User','update','menu_items',202,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 23:23:30'),
(99,1,'Admin User','update','menu_items',203,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 23:23:53'),
(100,1,'Admin User','update','menu_items',204,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 23:24:03'),
(101,1,'Admin User','update','users',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 00:18:54'),
(102,1,'Admin User','update','users',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 00:19:02'),
(103,1,'Admin User','update','users',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 00:19:11'),
(104,1,'Admin User','update','users',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 00:19:58'),
(105,1,'Admin User','update','users',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 00:21:12'),
(106,1,'Admin User','update','users',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 00:21:42'),
(107,1,'Admin User','update','users',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 00:22:18'),
(108,1,'Admin User','update','users',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 00:24:15'),
(109,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 11:16:16'),
(110,1,'Admin User','update','roles',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 12:12:06'),
(111,1,'Admin User','update','roles',88,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 12:12:38'),
(112,1,'Admin User','update','roles',76,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 12:15:39'),
(113,1,'Admin User','update','users',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 12:30:34'),
(114,1,'Admin User','update','users',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 12:56:08'),
(115,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 13:17:46'),
(116,1,'Admin User','delete','invoices',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 13:25:29'),
(117,1,'Admin User','delete','invoices',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 13:25:32'),
(118,1,'Admin User','delete','invoices',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 13:25:34'),
(119,1,'Admin User','delete','invoices',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 13:25:35'),
(120,1,'Admin User','delete','invoices',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 13:25:48'),
(121,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 13:53:08'),
(122,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 15:40:59'),
(123,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 15:41:02'),
(124,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 15:56:58'),
(125,8,'Tony A','login','auth',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 15:57:11'),
(126,8,'Tony A','logout','auth',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 15:58:01'),
(127,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 15:58:04'),
(128,1,'Admin User','update','roles',131,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:00:58'),
(129,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:01:08'),
(130,8,'Tony A','login','auth',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:01:16'),
(131,8,'Tony A','logout','auth',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:01:40'),
(132,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:01:45'),
(133,1,'Admin User','update','roles',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:02:16'),
(134,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:12:08'),
(135,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:33:42'),
(136,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:34:13'),
(137,1,'Admin User','update','roles',130,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:54:59'),
(138,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:55:05'),
(139,7,'Nathan S','login','auth',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:55:15'),
(140,7,'Nathan S','logout','auth',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:56:18'),
(141,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:56:21'),
(142,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 17:40:13'),
(143,1,'Admin User','update','menu_items',237,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 17:41:15'),
(144,1,'Admin User','update','menu_items',237,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 17:50:35'),
(145,1,'Admin User','update','employees',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 17:51:36'),
(146,1,'Admin User','update','employees',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 17:53:11'),
(147,1,'Admin User','update','employees',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 17:57:21'),
(148,1,'Admin User','update','employees',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:00:00'),
(149,1,'Admin User','update','employees',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:04:18'),
(150,1,'Admin User','update','employees',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:05:15'),
(151,1,'Admin User','update','employees',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:05:33'),
(152,1,'Admin User','update','employees',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:05:42'),
(153,1,'Admin User','update','employees',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:06:02'),
(154,1,'Admin User','update','employees',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:10:33'),
(155,1,'Admin User','update','employees',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:10:57'),
(156,1,'Admin User','update','employees',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:13:33'),
(157,1,'Admin User','update','employees',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:14:26'),
(158,1,'Admin User','update','employees',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:19:18'),
(159,1,'Admin User','update','employees',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:21:37'),
(160,1,'Admin User','update','employees',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:24:56'),
(161,1,'Admin User','update','users',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:28:16'),
(162,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:30:17'),
(163,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:30:51'),
(164,1,'Admin User','mfa_enabled','security',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:36:01'),
(165,1,'Admin User','mfa_enabled','security',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:36:06'),
(166,1,'Admin User','create','menu_items',260,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:41:08'),
(167,1,'Admin User','create','menu_items',261,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:44:37'),
(168,1,'Admin User','create','menu_items',262,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:45:53'),
(169,1,'Admin User','update','menu_items',269,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:54:45'),
(170,1,'Admin User','update','menu_items',269,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:55:44'),
(171,1,'Admin User','create','menu_items',270,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:56:26'),
(172,1,'Admin User','update','menu_items',265,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:58:32'),
(173,1,'Admin User','update','menu_items',264,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:59:32'),
(174,1,'Admin User','update','menu_items',264,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:15:58'),
(175,1,'Admin User','delete','menu_items',260,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:16:25'),
(176,1,'Admin User','delete','menu_items',263,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:16:30'),
(177,1,'Admin User','update','menu_items',261,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:16:41'),
(178,1,'Admin User','delete','menu_items',261,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:17:21'),
(179,1,'Admin User','update','menu_items',256,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:17:39'),
(180,1,'Admin User','update','menu_items',258,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:17:48'),
(181,1,'Admin User','update','menu_items',243,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:18:51'),
(182,1,'Admin User','update','menu_items',243,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:19:03'),
(183,1,'Admin User','update','menu_items',56,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:19:24'),
(184,1,'Admin User','update','menu_items',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:19:36'),
(185,1,'Admin User','update','menu_items',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:19:45'),
(186,1,'Admin User','update','menu_items',243,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:20:01'),
(187,1,'Admin User','update','menu_items',266,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:20:47'),
(188,1,'Admin User','update','menu_items',267,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:20:58'),
(189,1,'Admin User','update','menu_items',268,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:21:09'),
(190,1,'Admin User','delete','menu_items',262,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:21:51'),
(191,1,'Admin User','update','menu_items',59,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:22:15'),
(192,1,'Admin User','delete','menu_items',59,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:25:19'),
(193,1,'Admin User','update','employees',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:26:27'),
(194,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:30:32'),
(195,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:41:56'),
(196,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:43:07'),
(197,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:43:19'),
(198,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:43:39'),
(199,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:43:58'),
(200,1,'Admin User','update','menu_items',264,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:54:36'),
(201,1,'Admin User','update','menu_items',272,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:54:53'),
(202,1,'Admin User','delete','menu_items',273,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:54:58'),
(203,1,'Admin User','delete','menu_items',271,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:55:02'),
(204,1,'Admin User','update','menu_items',272,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:55:22'),
(205,1,'Admin User','update','menu_items',272,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:55:34'),
(206,1,'Admin User','create','menu_items',274,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:56:44'),
(207,1,'Admin User','update','menu_items',272,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:57:01'),
(208,1,'Admin User','update','menu_items',264,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:57:14'),
(209,1,'Admin User','update','menu_items',274,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:57:51'),
(210,1,'Admin User','update','menu_items',274,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:58:02'),
(211,1,'Admin User','update','menu_items',53,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:58:34'),
(212,1,'Admin User','update','menu_items',61,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:59:05'),
(213,1,'Admin User','update','menu_items',265,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:59:12'),
(214,1,'Admin User','update','menu_items',274,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:59:23'),
(215,1,'Admin User','update','menu_items',53,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:59:33'),
(216,1,'Admin User','delete','menu_items',134,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 20:00:17'),
(217,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 20:23:40'),
(218,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 20:33:31'),
(219,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 20:33:39'),
(220,1,'Admin User','create','menu_items',276,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 21:52:32'),
(221,1,'Admin User','delete','menu_items',275,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 21:52:48'),
(222,1,'Admin User','update','menu_items',276,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 21:52:58'),
(223,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 22:35:58'),
(224,1,'Admin User','create','users',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 23:53:17'),
(225,1,'Admin User','update','employees',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 23:53:48'),
(226,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 11:21:15'),
(227,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 13:22:00'),
(228,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 13:57:26'),
(229,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 16:00:11'),
(230,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 18:11:29'),
(231,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 20:14:56'),
(232,1,'Admin User','update','menu_items',277,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 21:06:15'),
(233,1,'Admin User','update','menu_items',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 21:07:01'),
(234,1,'Admin User','update','menu_items',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 21:07:51'),
(235,1,'Admin User','update','menu_items',196,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 21:19:07'),
(236,1,'Admin User','update','menu_items',194,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 21:19:23'),
(237,1,'Admin User','update','menu_items',196,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 21:19:50'),
(238,1,'Admin User','update','menu_items',195,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 21:20:03'),
(239,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 22:23:49'),
(240,1,'Admin User','update','menu_items',279,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 22:30:00'),
(241,1,'Admin User','update','menu_items',279,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 22:30:22'),
(242,1,'Admin User','update','menu_items',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 22:30:32'),
(243,1,'Admin User','update','menu_items',278,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 23:58:53'),
(244,1,'Admin User','update','menu_items',278,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 23:59:15'),
(245,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:07:18'),
(246,1,'Admin User','create','menu_items',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:21:31'),
(247,1,'Admin User','update','menu_items',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:21:59'),
(248,1,'Admin User','update','menu_items',255,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:22:24'),
(249,1,'Admin User','update','menu_items',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:22:38'),
(250,1,'Admin User','create','menu_items',281,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:23:09'),
(251,1,'Admin User','update','menu_items',281,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:23:40'),
(252,1,'Admin User','update','menu_items',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:23:54'),
(253,1,'Admin User','update','menu_items',255,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:24:13'),
(254,1,'Admin User','update','menu_items',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:24:25'),
(255,1,'Admin User','update','menu_items',32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:25:11'),
(256,1,'Admin User','update','menu_items',32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:25:45'),
(257,1,'Admin User','update','menu_items',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:26:22'),
(258,1,'Admin User','update','menu_items',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:26:40'),
(259,1,'Admin User','update','menu_items',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:27:01'),
(260,1,'Admin User','update','menu_items',193,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:27:14'),
(261,1,'Admin User','update','menu_items',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:27:51'),
(262,1,'Admin User','update','menu_items',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:28:18'),
(263,1,'Admin User','update','menu_items',28,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:28:30'),
(264,1,'Admin User','update','menu_items',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:28:42'),
(265,1,'Admin User','update','menu_items',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:29:22'),
(266,1,'Admin User','update','menu_items',28,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:29:38'),
(267,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 14:17:53'),
(268,1,'Admin User','create','menu_items',282,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 14:24:20'),
(269,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 14:36:01'),
(270,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 16:38:24'),
(271,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 19:34:19'),
(272,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 22:09:53'),
(273,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 00:10:57'),
(274,1,'Admin User','create','menu_items',283,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 01:03:28'),
(275,1,'Admin User','update','menu_items',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 01:03:57'),
(276,1,'Admin User','update','menu_items',255,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 01:04:05'),
(277,1,'Admin User','update','menu_items',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 01:04:19'),
(278,1,'Admin User','update','menu_items',283,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 01:04:28'),
(279,1,'Admin User','update','menu_items',283,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 01:09:28'),
(280,1,'Admin User','update','menu_items',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 01:09:38'),
(281,1,'Admin User','update','menu_items',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 01:10:12'),
(282,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 02:36:36'),
(283,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 10:59:50'),
(284,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:31:09'),
(285,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:31:26'),
(286,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:32:44'),
(287,1,'Admin User','update','menu_items',290,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:33:35'),
(288,1,'Admin User','update','menu_items',291,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:34:09'),
(289,1,'Admin User','update','menu_items',292,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:34:21'),
(290,1,'Admin User','update','menu_items',239,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:34:38'),
(291,1,'Admin User','update','menu_items',238,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:34:48'),
(292,1,'Admin User','update','menu_items',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:34:58'),
(293,1,'Admin User','update','menu_items',239,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:35:22'),
(294,1,'Admin User','update','menu_items',289,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:42:07'),
(295,1,'Admin User','update','menu_items',293,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:42:28'),
(296,1,'Admin User','update','menu_items',208,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:43:24'),
(297,1,'Admin User','update','menu_items',209,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:43:37'),
(298,1,'Admin User','update','menu_items',289,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:46:52'),
(299,1,'Admin User','delete','menu_items',289,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:47:24'),
(300,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:57:56'),
(301,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 12:04:18'),
(302,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 12:27:33'),
(303,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 12:27:35'),
(304,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'127.0.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 12:41:37'),
(305,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'127.0.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 12:41:39'),
(306,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 12:45:41'),
(307,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 12:45:44'),
(308,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 12:54:47'),
(309,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 12:54:50'),
(310,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'127.0.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 13:10:32'),
(311,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'127.0.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 13:10:35'),
(312,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'127.0.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 13:18:55'),
(313,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 13:18:59'),
(314,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 13:49:17'),
(315,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 13:57:45'),
(316,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 13:57:55'),
(317,1,'Admin User','update','menu_items',291,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 14:53:30'),
(318,1,'Admin User','update','menu_items',290,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 14:53:40'),
(319,1,'Admin User','update','menu_items',292,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 14:53:51'),
(320,1,'Admin User','update','menu_items',296,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:34:04'),
(321,1,'Admin User','update','menu_items',297,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:34:12'),
(322,1,'Admin User','update','menu_items',298,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:34:20'),
(323,1,'Admin User','update','menu_items',299,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:34:24'),
(324,1,'Admin User','update','menu_items',299,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:34:38'),
(325,1,'Admin User','update','menu_items',296,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:34:58'),
(326,1,'Admin User','update','menu_items',297,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:35:09'),
(327,1,'Admin User','update','menu_items',298,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:35:16'),
(328,1,'Admin User','update','menu_items',235,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:35:54'),
(329,1,'Admin User','update','menu_items',299,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:36:28'),
(330,1,'Admin User','update','menu_items',296,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:36:50'),
(331,1,'Admin User','update','menu_items',296,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:37:56'),
(332,1,'Admin User','update','menu_items',297,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:38:12'),
(333,1,'Admin User','update','menu_items',298,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:38:26'),
(334,1,'Admin User','update','menu_items',298,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:39:00'),
(335,1,'Admin User','update','menu_items',298,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:40:11'),
(336,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:47:47'),
(337,1,'Admin User','login_failed','auth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:49:44'),
(338,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:49:47'),
(339,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:49:54'),
(340,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:52:57'),
(341,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 18:40:11'),
(342,1,'Admin User','update','menu_items',235,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 18:40:52'),
(343,1,'Admin User','update','menu_items',210,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 18:42:15'),
(344,1,'Admin User','delete','menu_items',293,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 18:42:34'),
(345,1,'Admin User','update','menu_items',209,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 18:42:49'),
(346,1,'Admin User','update','menu_items',211,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 18:43:01'),
(347,1,'Admin User','update','menu_items',212,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 18:43:17'),
(348,1,'Admin User','update','menu_items',211,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 18:43:40'),
(349,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 11:54:13'),
(350,1,'Admin User','create','menu_items',301,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 12:52:34'),
(351,1,'Admin User','update','menu_items',301,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 12:52:59'),
(352,1,'Admin User','update','menu_items',301,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 12:53:25'),
(353,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 14:18:57'),
(354,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 16:21:24'),
(355,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 17:49:42'),
(356,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 17:53:50'),
(357,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 18:05:49'),
(358,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 18:06:59'),
(359,1,'Admin User','update','menu_items',303,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 19:53:05'),
(360,1,'Admin User','update','menu_items',304,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 19:53:29'),
(361,1,'Admin User','update','menu_items',304,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 19:54:03'),
(362,1,'Admin User','update','menu_items',303,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 19:54:39'),
(363,1,'Admin User','update','menu_items',300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 19:55:05'),
(364,1,'Admin User','update','menu_items',302,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 19:55:15'),
(365,1,'Admin User','update','menu_items',302,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 19:55:23'),
(366,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 23:41:37'),
(367,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:02:18'),
(368,1,'Admin User','delete','menu_items',243,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:02:42'),
(369,1,'Admin User','update','menu_items',303,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:03:23'),
(370,1,'Admin User','update','menu_items',316,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:03:38'),
(371,1,'Admin User','update','menu_items',315,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:03:57'),
(372,1,'Admin User','update','menu_items',304,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:04:59'),
(373,1,'Admin User','update','menu_items',304,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:06:08'),
(374,1,'Admin User','update','menu_items',304,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:06:22'),
(375,1,'Admin User','update','menu_items',304,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:08:49'),
(376,1,'Admin User','update','menu_items',306,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:09:17'),
(377,1,'Admin User','update','menu_items',309,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:09:40'),
(378,1,'Admin User','update','menu_items',310,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:09:51'),
(379,1,'Admin User','update','menu_items',310,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:10:05'),
(380,1,'Admin User','update','menu_items',311,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:10:21'),
(381,1,'Admin User','update','menu_items',314,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:10:51'),
(382,1,'Admin User','update','menu_items',313,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:11:16'),
(383,1,'Admin User','update','menu_items',312,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:11:25'),
(384,1,'Admin User','update','menu_items',305,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:11:34'),
(385,1,'Admin User','update','menu_items',307,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:11:56'),
(386,1,'Admin User','update','menu_items',308,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:13:02'),
(387,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 12:04:21'),
(388,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 12:21:36'),
(389,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 12:57:35'),
(390,1,'Admin User','update','menu_items',309,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 13:03:51'),
(391,1,'Admin User','update','menu_items',311,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 13:04:16'),
(392,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 16:30:43'),
(393,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 20:03:11'),
(394,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 20:12:05'),
(395,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 21:40:10'),
(396,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 01:03:04'),
(397,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 01:04:29'),
(398,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 03:05:36'),
(399,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 12:01:30'),
(400,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 14:01:49'),
(401,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 14:30:12'),
(402,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 16:10:55'),
(403,1,'Admin User','update','menu_items',208,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 16:24:48'),
(404,1,'Admin User','update','menu_items',317,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 16:25:03'),
(405,1,'Admin User','update','menu_items',318,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 16:25:15'),
(406,1,'Admin User','update','menu_items',319,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 16:25:21'),
(407,1,'Admin User','update','menu_items',209,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 16:25:34'),
(408,1,'Admin User','update','menu_items',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 16:33:23'),
(409,1,'Admin User','update','menu_items',319,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 16:34:33'),
(410,1,'Admin User','update','menu_items',319,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 16:34:47'),
(411,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 19:06:25'),
(412,1,'Admin User','update','menu_items',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 19:07:54'),
(413,1,'Admin User','update','menu_items',209,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 19:08:06'),
(414,1,'Admin User','update','menu_items',210,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 19:08:19'),
(415,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 21:46:39'),
(416,1,'Admin User','update','menu_items',207,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 21:48:10'),
(417,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-22 11:04:46'),
(418,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-22 18:08:46'),
(419,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 13:08:47'),
(420,1,'Admin User','update','menu_items',130,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 14:52:12'),
(421,1,'Admin User','update','menu_items',131,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 14:52:22'),
(422,1,'Admin User','create','menu_items',326,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 14:53:28'),
(423,1,'Admin User','update','menu_items',131,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 14:53:52'),
(424,1,'Admin User','update','menu_items',326,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 14:54:04'),
(425,1,'Admin User','update','menu_items',132,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 14:54:27'),
(426,1,'Admin User','update','menu_items',133,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 14:54:37'),
(427,1,'Admin User','update','menu_items',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 14:57:15'),
(428,1,'Admin User','update','menu_items',248,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 14:57:28'),
(429,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 15:14:50'),
(430,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 15:39:45'),
(431,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 17:10:38'),
(432,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 17:10:40'),
(433,1,'Admin User','update','users',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 18:19:26'),
(434,1,'Admin User','update','roles',130,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 18:21:29'),
(435,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 18:21:32'),
(436,7,'Nathan S','login','auth',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 18:21:37'),
(437,7,'Nathan S','logout','auth',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 18:21:52'),
(438,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 18:21:55'),
(439,1,'Admin User','update','menu_items',327,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 19:16:13'),
(440,1,'Admin User','update','menu_items',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 19:17:08'),
(441,1,'Admin User','update','menu_items',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 19:17:20'),
(442,1,'Admin User','update','menu_items',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 19:17:51'),
(443,1,'Admin User','update','menu_items',327,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 19:18:05'),
(444,1,'Admin User','create','menu_items',328,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 19:27:52'),
(445,1,'Admin User','create','invoices',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 19:36:41'),
(446,1,'Admin User','delete','invoices',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 19:37:05'),
(447,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 00:15:42'),
(448,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 12:36:32'),
(449,1,'Admin User','update','menu_items',327,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 12:55:37'),
(450,1,'Admin User','update','menu_items',300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 12:56:16'),
(451,1,'Admin User','update','menu_items',300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 12:56:45'),
(452,1,'Admin User','delete','menu_items',300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 12:56:54'),
(453,1,'Admin User','delete','menu_items',302,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 12:57:28'),
(454,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 15:23:02'),
(455,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 17:52:23'),
(456,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 20:06:35'),
(457,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 22:37:09'),
(458,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 22:37:33'),
(459,1,'Admin User','update','menu_items',326,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 23:44:54'),
(460,1,'Admin User','delete','menu_items',329,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 23:45:06'),
(461,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 00:08:02'),
(462,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 01:36:54'),
(463,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 12:05:31'),
(464,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 12:29:10'),
(465,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 14:49:43'),
(466,1,'Admin User','update','menu_items',335,'Admin User performed update on menu_items #335',NULL,NULL,NULL,'/menus/update/335','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 16:19:23'),
(467,1,'Admin User','update','menu_items',332,'Admin User performed update on menu_items #332',NULL,NULL,NULL,'/menus/update/332','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 16:19:30'),
(468,1,'Admin User','update','menu_items',333,'Admin User performed update on menu_items #333',NULL,NULL,NULL,'/menus/update/333','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 16:19:36'),
(469,1,'Admin User','update','menu_items',334,'Admin User performed update on menu_items #334',NULL,NULL,NULL,'/menus/update/334','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 16:19:44'),
(470,1,'Admin User','update','menu_items',332,'Admin User performed update on menu_items #332',NULL,NULL,NULL,'/menus/update/332','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 16:19:50'),
(471,1,'Admin User','update','menu_items',333,'Admin User performed update on menu_items #333',NULL,NULL,NULL,'/menus/update/333','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 16:20:03'),
(472,1,'Admin User','update','menu_items',337,'Admin User performed update on menu_items #337',NULL,NULL,NULL,'/menus/update/337','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 16:26:29'),
(473,1,'Admin User','delete','menu_items',336,'Admin User performed delete on menu_items #336',NULL,NULL,NULL,'/menus/delete/336','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 16:26:32'),
(474,1,'Admin User','update','menu_items',330,'Admin User performed update on menu_items #330',NULL,NULL,NULL,'/menus/update/330','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 16:26:55'),
(475,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 16:59:37'),
(476,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 18:41:57'),
(477,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 19:13:37'),
(478,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 19:14:12'),
(479,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 19:18:28'),
(480,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 21:19:01'),
(481,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 21:28:26'),
(482,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 21:28:29'),
(483,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 00:01:59'),
(484,1,'Admin User','delete','menu_items',337,'Admin User performed delete on menu_items #337',NULL,NULL,NULL,'/menus/delete/337','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 00:02:24'),
(485,1,'Admin User','update','users',1,'Admin User performed update on users #1',NULL,NULL,NULL,'/users/1/update','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 01:36:30'),
(486,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 02:04:42'),
(487,1,'Admin User','update','settings',NULL,'Admin User performed update on settings',NULL,NULL,NULL,'/settings/company','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 02:35:02'),
(488,1,'Admin User','update','settings',NULL,'Admin User performed update on settings',NULL,NULL,NULL,'/settings/company','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 02:51:45'),
(489,1,'Admin User','update','settings',NULL,'Admin User performed update on settings',NULL,NULL,NULL,'/settings/company','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 02:53:26'),
(490,1,'Admin User','update','settings',NULL,'Admin User performed update on settings',NULL,NULL,NULL,'/settings/company','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 02:56:24'),
(491,1,'Admin User','update','settings',NULL,'Admin User performed update on settings',NULL,NULL,NULL,'/settings/company','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 02:58:22'),
(492,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 03:24:04'),
(493,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 03:24:06'),
(494,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 12:06:21'),
(495,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 13:26:10'),
(496,1,'Admin User','delete','menu_items',338,'Admin User performed delete on menu_items #338',NULL,NULL,NULL,'/menus/delete/338','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 13:26:21'),
(497,1,'Admin User','delete','menu_items',333,'Admin User performed delete on menu_items #333',NULL,NULL,NULL,'/menus/delete/333','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 13:33:16'),
(498,1,'Admin User','update','menu_items',334,'Admin User performed update on menu_items #334',NULL,NULL,NULL,'/menus/update/334','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 13:33:45'),
(499,1,'Admin User','delete','menu_items',332,'Admin User performed delete on menu_items #332',NULL,NULL,NULL,'/menus/delete/332','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 13:34:38'),
(500,1,'Admin User','update','menu_items',342,'Admin User performed update on menu_items #342',NULL,NULL,NULL,'/menus/update/342','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 13:47:47'),
(501,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 15:26:35'),
(502,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 16:12:37'),
(503,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 18:16:09'),
(504,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 20:18:09'),
(505,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 22:25:02'),
(506,1,'Admin User','update','settings',NULL,'Admin User performed update on settings',NULL,NULL,NULL,'/settings/company','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 22:31:02'),
(507,1,'Admin User','update','settings',NULL,'Admin User performed update on settings',NULL,NULL,NULL,'/settings/company','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 22:33:08'),
(508,1,'Admin User','update','settings',NULL,'Admin User performed update on settings',NULL,NULL,NULL,'/settings/company','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 22:33:21'),
(509,1,'Admin User','update','settings',NULL,'Admin User performed update on settings',NULL,NULL,NULL,'/settings/company','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 22:35:44'),
(510,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 23:20:05'),
(511,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 23:20:13'),
(512,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 23:20:31'),
(513,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 23:20:34'),
(514,1,'Admin User','update','roles',111,'Admin User performed update on roles #111',NULL,NULL,NULL,'/roles/111/update','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 23:21:20'),
(515,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 23:21:23'),
(516,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 23:21:31'),
(517,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 23:21:42'),
(518,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 23:21:45'),
(519,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 12:32:43'),
(520,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 13:24:39'),
(521,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 13:24:57'),
(522,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 13:26:05'),
(523,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 13:26:11'),
(524,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 14:23:13'),
(525,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 22:13:20'),
(526,1,'Admin User','update','roles',111,'Admin User performed update on roles #111',NULL,NULL,NULL,'/roles/111/update','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 22:14:04'),
(527,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 22:14:09'),
(528,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 22:14:13'),
(529,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 22:30:46'),
(530,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 22:30:49'),
(531,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 22:33:34'),
(532,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 22:33:37'),
(533,1,'Admin User','update','roles',111,'Admin User performed update on roles #111',NULL,NULL,NULL,'/roles/111/update','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 23:15:26'),
(534,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 23:15:29'),
(535,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 23:15:35'),
(536,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 23:17:38'),
(537,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:24:14'),
(538,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:24:19'),
(539,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:24:58'),
(540,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:25:03'),
(541,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:35:11'),
(542,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:35:14'),
(543,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:43:41'),
(544,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:43:48'),
(545,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:45:13'),
(546,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:45:16'),
(547,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:50:06'),
(548,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:50:08'),
(549,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:50:52'),
(550,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:50:55'),
(551,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:53:27'),
(552,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:53:30'),
(553,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:55:53'),
(554,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:55:56'),
(555,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:57:23'),
(556,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:57:25'),
(557,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:58:52'),
(558,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:58:55'),
(559,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 01:00:59'),
(560,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 01:01:01'),
(561,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 01:11:56'),
(562,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 01:12:12'),
(563,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 12:00:11'),
(564,1,'Admin User','update','menu_items',345,'Admin User performed update on menu_items #345',NULL,NULL,NULL,'/menus/update/345','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 12:03:32'),
(565,1,'Admin User','update','menu_items',32,'Admin User performed update on menu_items #32',NULL,NULL,NULL,'/menus/update/32','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 12:46:11'),
(566,1,'Admin User','update','menu_items',32,'Admin User performed update on menu_items #32',NULL,NULL,NULL,'/menus/update/32','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 12:46:27'),
(567,1,'Admin User','update','menu_items',33,'Admin User performed update on menu_items #33',NULL,NULL,NULL,'/menus/update/33','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 12:47:05'),
(568,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:26:39'),
(569,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:26:51'),
(570,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:31:35'),
(571,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:37:19'),
(572,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:37:29'),
(573,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:40:13'),
(574,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:40:22'),
(575,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:44:32'),
(576,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:44:43'),
(577,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:46:44'),
(578,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:46:57'),
(579,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:49:48'),
(580,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:49:58'),
(581,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:50:42'),
(582,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:50:55'),
(583,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:52:57'),
(584,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:53:13'),
(585,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:58:08'),
(586,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:58:16'),
(587,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 14:07:13'),
(588,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 14:07:18'),
(589,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 17:16:31'),
(590,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 17:53:21'),
(591,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 17:53:26'),
(592,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 17:54:50'),
(593,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 17:54:52'),
(594,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 19:21:49'),
(595,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 19:21:58'),
(596,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 19:22:17'),
(597,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 19:23:02'),
(598,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 20:17:51'),
(599,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 20:17:54'),
(600,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 00:43:15'),
(601,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 00:47:55'),
(602,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 00:48:02'),
(603,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 00:49:39'),
(604,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 00:49:43'),
(605,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 00:57:40'),
(606,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 00:57:45'),
(607,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 00:58:13'),
(608,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 00:58:16'),
(609,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:11:16'),
(610,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:11:23'),
(611,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:16:55'),
(612,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:16:58'),
(613,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:17:04'),
(614,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:17:08'),
(615,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:18:57'),
(616,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:19:01'),
(617,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:21:27'),
(618,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:21:30'),
(619,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:24:13'),
(620,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:25:06'),
(621,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:25:09'),
(622,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:25:21'),
(623,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:25:23'),
(624,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:27:36'),
(625,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:27:40'),
(626,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:37:01'),
(627,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:37:05'),
(628,1,'Admin User','update','menu_items',346,'Admin User performed update on menu_items #346',NULL,NULL,NULL,'/menus/update/346','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:38:23'),
(629,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 12:46:40'),
(630,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 13:18:49'),
(631,1,'Admin User','update','menu_items',347,'Admin User performed update on menu_items #347',NULL,NULL,NULL,'/menus/update/347','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 13:42:13'),
(632,1,'Admin User','update','menu_items',188,'Admin User performed update on menu_items #188',NULL,NULL,NULL,'/menus/update/188','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 13:42:36'),
(633,1,'Admin User','delete','menu_items',345,'Admin User performed delete on menu_items #345',NULL,NULL,NULL,'/menus/delete/345','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 13:42:48'),
(634,1,'Admin User','delete','menu_items',34,'Admin User performed delete on menu_items #34',NULL,NULL,NULL,'/menus/delete/34','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 13:42:58'),
(635,1,'Admin User','delete','menu_items',163,'Admin User performed delete on menu_items #163',NULL,NULL,NULL,'/menus/delete/163','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 13:43:08'),
(636,1,'Admin User','delete','menu_items',346,'Admin User performed delete on menu_items #346',NULL,NULL,NULL,'/menus/delete/346','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 13:44:27'),
(637,1,'Admin User','create','roles',134,'Admin User performed create on roles #134',NULL,NULL,NULL,'/security/roles/create','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 14:10:19'),
(638,1,'Admin User','update','users',5,'Admin User performed update on users #5',NULL,NULL,NULL,'/users/5/update','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 14:15:03'),
(639,1,'Admin User','update','users',5,'Admin User performed update on users #5',NULL,NULL,NULL,'/users/5/update','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 14:21:56'),
(640,1,'Admin User','update','roles',134,'Admin User performed update on roles #134',NULL,NULL,NULL,'/security/roles/update-info','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 14:25:20'),
(641,1,'Admin User','update','users',5,'Admin User performed update on users #5',NULL,NULL,NULL,'/users/5/update','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 14:35:44'),
(642,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 14:35:48'),
(643,5,'Test Manager','login','auth',5,'Test Manager performed login on auth #5',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 14:35:58'),
(644,5,'Test Manager','login','auth',5,'Test Manager performed login on auth #5',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 14:46:52'),
(645,5,'Test Manager','login','auth',5,'Test Manager performed login on auth #5',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 14:47:28'),
(646,5,'Test Manager','login','auth',5,'Test Manager performed login on auth #5',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 14:55:20'),
(647,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-01 01:42:06'),
(648,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-01 12:31:24'),
(649,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-01 14:36:36'),
(650,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-01 15:39:13'),
(651,5,'Test Manager','login','auth',5,'Test Manager performed login on auth #5',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-01 15:39:16'),
(652,5,'Test Manager','logout','auth',5,'Test Manager performed logout on auth #5',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-01 15:39:48'),
(653,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-01 15:39:51'),
(654,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-01 15:54:28'),
(655,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-01 18:11:10'),
(656,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 02:39:54'),
(657,1,'Admin User','update','menu_items',348,'Admin User performed update on menu_items #348',NULL,NULL,NULL,'/menus/update/348','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 03:11:54'),
(658,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 03:52:13'),
(659,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 03:52:16'),
(660,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 04:14:38'),
(661,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 04:14:40'),
(662,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 11:04:43'),
(663,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 13:08:37'),
(664,1,'Admin User','update','menu_items',349,'Admin User performed update on menu_items #349',NULL,NULL,NULL,'/menus/update/349','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 13:12:58'),
(665,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 13:42:06'),
(666,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 13:47:20'),
(667,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 13:51:52'),
(668,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 13:54:17'),
(669,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 14:00:25'),
(670,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 14:00:39'),
(671,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 14:05:19'),
(672,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:01:04'),
(673,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:16:06'),
(674,NULL,NULL,'login_failed','auth',NULL,NULL,NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:16:16'),
(675,NULL,NULL,'login_failed','auth',NULL,NULL,NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:16:19'),
(676,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:16:27'),
(677,1,'Admin User','update','users',2,'Admin User performed update on users #2',NULL,NULL,NULL,'/users/2/update','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:16:41'),
(678,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:16:44'),
(679,2,'Brian S','login','auth',2,'Brian S performed login on auth #2',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:16:51'),
(680,2,'Brian S','logout','auth',2,'Brian S performed logout on auth #2',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:20:02'),
(681,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:20:07'),
(682,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:20:11'),
(683,2,'Brian S','login','auth',2,'Brian S performed login on auth #2',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:20:14'),
(684,2,'Brian S','logout','auth',2,'Brian S performed logout on auth #2',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:21:30'),
(685,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:21:33'),
(686,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:21:35'),
(687,2,'Brian S','login','auth',2,'Brian S performed login on auth #2',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:21:39'),
(688,2,'Brian S','logout','auth',2,'Brian S performed logout on auth #2',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:25:44'),
(689,2,'Brian S','login','auth',2,'Brian S performed login on auth #2',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:25:49'),
(690,2,'Brian S','logout','auth',2,'Brian S performed logout on auth #2',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:39:03'),
(691,2,'Brian S','login','auth',2,'Brian S performed login on auth #2',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:39:06'),
(692,2,'Brian S','logout','auth',2,'Brian S performed logout on auth #2',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:42:32'),
(693,2,'Brian S','login','auth',2,'Brian S performed login on auth #2',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:42:43'),
(694,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 19:00:45'),
(695,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 19:24:24'),
(696,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 19:35:06'),
(697,1,'Admin User','update','menu_items',156,'Admin User performed update on menu_items #156',NULL,NULL,NULL,'/menus/update/156','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 19:36:11'),
(698,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 19:36:42'),
(699,1,'Admin User','create','supplier_contracts',1,'Admin User performed create on supplier_contracts #1',NULL,NULL,NULL,'/purchases/contracts/store','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 19:51:34'),
(700,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 19:52:35'),
(701,1,'Admin User','delete','supplier_contracts',1,'Admin User performed delete on supplier_contracts #1',NULL,NULL,NULL,'/purchases/contracts/1/delete','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 20:13:56'),
(702,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 20:15:42'),
(703,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 21:52:31'),
(704,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 21:56:47'),
(705,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 21:57:08'),
(706,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 21:58:04'),
(707,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 22:00:57'),
(708,5,'Test Manager','login','auth',5,'Test Manager performed login on auth #5',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 22:03:17'),
(709,5,'Test Manager','logout','auth',5,'Test Manager performed logout on auth #5',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 22:04:00'),
(710,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 22:04:03'),
(711,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 22:21:34'),
(712,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 00:06:40'),
(713,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 01:46:34'),
(714,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 01:58:51'),
(715,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 02:03:55'),
(716,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 02:05:45'),
(717,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 02:09:08'),
(718,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 02:09:26'),
(719,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 02:12:38'),
(720,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 02:12:49'),
(721,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 02:15:45'),
(722,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 02:17:42'),
(723,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 02:43:51'),
(724,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 12:31:04'),
(725,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 14:56:32'),
(726,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 16:20:27'),
(727,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 16:20:36'),
(728,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 19:30:07'),
(729,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 22:12:30'),
(730,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 09:57:05'),
(731,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 12:00:21'),
(732,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 13:55:34'),
(733,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 13:55:38'),
(734,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 14:46:50'),
(735,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 14:46:52'),
(736,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 14:49:10'),
(737,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 14:49:13'),
(738,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 14:49:37'),
(739,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 14:49:39'),
(740,1,'Admin User','update','menu_items',330,'Admin User performed update on menu_items #330',NULL,NULL,NULL,'/menus/update/330','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 14:58:40'),
(741,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 16:01:37'),
(742,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 16:01:40'),
(743,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 16:13:20'),
(744,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 16:13:24'),
(745,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 16:19:03'),
(746,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 16:19:06'),
(747,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 16:36:56'),
(748,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 16:36:58'),
(749,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 16:43:38'),
(750,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 16:43:41'),
(751,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 17:42:56'),
(752,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 17:42:59'),
(753,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 18:08:24'),
(754,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 20:26:53'),
(755,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 22:27:06'),
(756,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 22:56:52'),
(757,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 23:04:31'),
(758,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 23:41:45'),
(759,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 23:41:48'),
(760,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 23:42:17'),
(761,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 23:42:20'),
(762,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 10:18:13'),
(763,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 11:36:34'),
(764,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 12:39:51'),
(765,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 17:43:40'),
(766,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 17:47:55'),
(767,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 18:00:43'),
(768,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 21:46:20'),
(769,1,'Admin User','delete','menu_items',363,'Admin User performed delete on menu_items #363',NULL,NULL,NULL,'/menus/delete/363','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:30:00'),
(770,1,'Admin User','delete','menu_items',361,'Admin User performed delete on menu_items #361',NULL,NULL,NULL,'/menus/delete/361','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:30:06'),
(771,1,'Admin User','update','menu_items',352,'Admin User performed update on menu_items #352',NULL,NULL,NULL,'/menus/update/352','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:30:22'),
(772,1,'Admin User','update','menu_items',360,'Admin User performed update on menu_items #360',NULL,NULL,NULL,'/menus/update/360','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:30:42'),
(773,1,'Admin User','update','menu_items',352,'Admin User performed update on menu_items #352',NULL,NULL,NULL,'/menus/update/352','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:31:05'),
(774,1,'Admin User','update','menu_items',360,'Admin User performed update on menu_items #360',NULL,NULL,NULL,'/menus/update/360','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:31:31'),
(775,1,'Admin User','update','menu_items',362,'Admin User performed update on menu_items #362',NULL,NULL,NULL,'/menus/update/362','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:31:43'),
(776,1,'Admin User','update','menu_items',353,'Admin User performed update on menu_items #353',NULL,NULL,NULL,'/menus/update/353','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:31:58'),
(777,1,'Admin User','update','menu_items',354,'Admin User performed update on menu_items #354',NULL,NULL,NULL,'/menus/update/354','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:32:06'),
(778,1,'Admin User','update','menu_items',355,'Admin User performed update on menu_items #355',NULL,NULL,NULL,'/menus/update/355','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:32:18'),
(779,1,'Admin User','update','menu_items',356,'Admin User performed update on menu_items #356',NULL,NULL,NULL,'/menus/update/356','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:32:22'),
(780,1,'Admin User','update','menu_items',357,'Admin User performed update on menu_items #357',NULL,NULL,NULL,'/menus/update/357','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:32:26'),
(781,1,'Admin User','update','menu_items',358,'Admin User performed update on menu_items #358',NULL,NULL,NULL,'/menus/update/358','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:32:29'),
(782,1,'Admin User','update','menu_items',359,'Admin User performed update on menu_items #359',NULL,NULL,NULL,'/menus/update/359','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:32:32'),
(783,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-07 01:59:34'),
(784,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-07 12:33:28'),
(785,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-07 12:34:53'),
(786,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-07 13:03:08'),
(787,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-07 13:03:11'),
(788,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-09 11:48:34'),
(789,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-09 11:49:47'),
(790,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-09 11:49:51'),
(791,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-09 13:50:01'),
(792,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-09 13:50:14'),
(793,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-09 13:50:18'),
(794,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-09 18:51:28'),
(795,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-09 18:51:32'),
(796,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-09 18:51:35'),
(797,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-09 19:45:58'),
(798,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-09 21:38:18'),
(799,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-09 21:38:21'),
(800,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-09 21:40:41'),
(801,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-09 21:40:44'),
(802,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-10 12:18:15'),
(803,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-10 12:36:27'),
(804,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-10 12:36:30'),
(805,1,'Admin User','update','menu_items',331,'Admin User performed update on menu_items #331',NULL,NULL,NULL,'/menus/update/331','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-10 12:41:55'),
(806,1,'Admin User','update','menu_items',339,'Admin User performed update on menu_items #339',NULL,NULL,NULL,'/menus/update/339','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-10 12:42:24'),
(807,1,'Admin User','update','menu_items',339,'Admin User performed update on menu_items #339',NULL,NULL,NULL,'/menus/update/339','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-10 12:43:01'),
(808,1,'Admin User','update','menu_items',334,'Admin User performed update on menu_items #334',NULL,NULL,NULL,'/menus/update/334','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-10 12:43:35'),
(809,1,'Admin User','update','menu_items',340,'Admin User performed update on menu_items #340',NULL,NULL,NULL,'/menus/update/340','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-10 12:44:05'),
(810,1,'Admin User','update','menu_items',341,'Admin User performed update on menu_items #341',NULL,NULL,NULL,'/menus/update/341','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-10 12:44:25'),
(811,1,'Admin User','update','menu_items',343,'Admin User performed update on menu_items #343',NULL,NULL,NULL,'/menus/update/343','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-10 12:44:42'),
(812,1,'Admin User','update','menu_items',342,'Admin User performed update on menu_items #342',NULL,NULL,NULL,'/menus/update/342','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-10 12:44:56'),
(813,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-10 12:45:07'),
(814,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-10 12:45:13'),
(815,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-10 20:30:28');
/*!40000 ALTER TABLE `audit_logs` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `audit_trail`
--

DROP TABLE IF EXISTS `audit_trail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `audit_trail` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `table_name` varchar(100) NOT NULL,
  `record_id` int(10) unsigned NOT NULL,
  `action` enum('create','update','delete','void','post','approve') NOT NULL,
  `field_name` varchar(100) DEFAULT NULL,
  `old_value` text DEFAULT NULL,
  `new_value` text DEFAULT NULL,
  `description` varchar(500) DEFAULT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` varchar(500) DEFAULT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `user_name` varchar(200) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_table_record` (`table_name`,`record_id`),
  KEY `idx_user` (`user_id`),
  KEY `idx_action` (`action`),
  KEY `idx_created_at` (`created_at`),
  KEY `idx_table_action` (`table_name`,`action`),
  CONSTRAINT `audit_trail_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `audit_trail`
--

LOCK TABLES `audit_trail` WRITE;
/*!40000 ALTER TABLE `audit_trail` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `audit_trail` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `auth_rate_limits`
--

DROP TABLE IF EXISTS `auth_rate_limits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `auth_rate_limits` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `identifier` varchar(255) NOT NULL COMMENT 'IP address or user email',
  `action_type` varchar(50) NOT NULL COMMENT 'login, otp_request, password_reset',
  `attempt_count` int(11) DEFAULT 1,
  `first_attempt` timestamp NULL DEFAULT current_timestamp(),
  `last_attempt` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `blocked_until` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_identifier_action` (`identifier`,`action_type`),
  KEY `idx_identifier` (`identifier`),
  KEY `idx_blocked_until` (`blocked_until`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `auth_rate_limits`
--

LOCK TABLES `auth_rate_limits` WRITE;
/*!40000 ALTER TABLE `auth_rate_limits` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `auth_rate_limits` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `backup_history`
--

DROP TABLE IF EXISTS `backup_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `backup_history` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `backup_type` enum('database','git','full') NOT NULL,
  `status` enum('success','failed','running') NOT NULL DEFAULT 'running',
  `message` text DEFAULT NULL,
  `file_size` bigint(20) DEFAULT NULL COMMENT 'File size in bytes',
  `file_path` varchar(500) DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_backup_type` (`backup_type`),
  KEY `idx_status` (`status`),
  KEY `idx_created_at` (`created_at`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `backup_history_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `backup_history`
--

LOCK TABLES `backup_history` WRITE;
/*!40000 ALTER TABLE `backup_history` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `backup_history` VALUES
(1,'git','success','Checking git status...\nAdding changes...\nCommitting changes...\nPushing to GitHub...\nGit operations completed successfully\n\n=== Git Status ===\n M views/automation/email_templates/index.php\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main f95280a] Automated backup: 2025-11-17 06:31:25\n 1 file changed, 4 insertions(+), 4 deletions(-)\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   588a5eb..f95280a  main -> main',NULL,NULL,1,'2025-11-17 06:31:25','2025-11-17 06:31:26'),
(2,'database','success','Database backup completed successfully.\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251117_063137.sql\n✓ Backup completed successfully\n✓ Backup size: 4.2M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!',NULL,NULL,1,'2025-11-17 06:31:37','2025-11-17 06:31:38'),
(3,'full','success','=== DATABASE BACKUP ===\n✓ Database backup: SUCCESS\n\n=== GIT COMMIT & PUSH ===\n✓ Git operations: SUCCESS\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251117_063148.sql\n✓ Backup completed successfully\n✓ Backup size: 4.2M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!\n\n=== Git Status ===\n',NULL,NULL,1,'2025-11-17 06:31:48','2025-11-17 06:31:49'),
(4,'database','success','Database backup completed successfully.\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251117_063148.sql\n✓ Backup completed successfully\n✓ Backup size: 4.2M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!',NULL,NULL,1,'2025-11-17 06:31:48','2025-11-17 06:31:49'),
(5,'git','success','Checking git status...\nNo changes to commit\n\n=== Git Status ===\n',NULL,NULL,1,'2025-11-17 06:31:49','2025-11-17 06:31:49'),
(6,'git','success','Checking git status...\nNo changes to commit\n\n=== Git Status ===\n',NULL,NULL,1,'2025-11-17 06:37:56','2025-11-17 06:37:57'),
(7,'git','success','Checking git status...\nAdding changes...\nCommitting changes...\nPushing to GitHub...\nGit operations completed successfully\n\n=== Git Status ===\n M views/backup/index.php\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main 450772a] Automated backup: 2025-11-17 06:40:33\n 1 file changed, 41 insertions(+), 12 deletions(-)\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   40e9b9d..450772a  main -> main',NULL,NULL,1,'2025-11-17 06:40:33','2025-11-17 06:40:34'),
(8,'git','success','Checking git status...\nAdding changes...\nCommitting changes...\nPushing to GitHub...\nGit operations completed successfully\n\n=== Git Status ===\n M controllers/DocumentationController.php\n M views/roles/create.php\n M views/roles/edit.php\n?? docs/user-manual/04-accounting.md\n?? docs/user-manual/05-inventory.md\n?? docs/user-manual/06-manufacturing.md\n?? docs/user-manual/07-sales-purchases.md\n?? docs/user-manual/08-projects.md\n?? docs/user-manual/09-helpdesk.md\n?? docs/user-manual/10-messaging.md\n?? docs/user-manual/11-settings.md\n?? docs/user-manual/12-system-tools.md\n?? docs/user-manual/13-documents.md\n?? docs/user-manual/14-reports.md\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main 018f09a] Automated backup: 2025-11-17 10:47:15\n 14 files changed, 2073 insertions(+), 37 deletions(-)\n create mode 100644 docs/user-manual/04-accounting.md\n create mode 100644 docs/user-manual/05-inventory.md\n create mode 100644 docs/user-manual/06-manufacturing.md\n create mode 100644 docs/user-manual/07-sales-purchases.md\n create mode 100644 docs/user-manual/08-projects.md\n create mode 100644 docs/user-manual/09-helpdesk.md\n create mode 100644 docs/user-manual/10-messaging.md\n create mode 100644 docs/user-manual/11-settings.md\n create mode 100644 docs/user-manual/12-system-tools.md\n create mode 100644 docs/user-manual/13-documents.md\n create mode 100644 docs/user-manual/14-reports.md\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   1f69962..018f09a  main -> main',NULL,NULL,1,'2025-11-17 10:47:15','2025-11-17 10:47:16'),
(9,'full','success','=== DATABASE BACKUP ===\n✓ Database backup: SUCCESS\n\n=== GIT COMMIT & PUSH ===\n✓ Git operations: SUCCESS\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251117_104729.sql\n✓ Backup completed successfully\n✓ Backup size: 5.1M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!\n\n=== Git Status ===\n',NULL,NULL,1,'2025-11-17 10:47:29','2025-11-17 10:47:31'),
(10,'database','success','Database backup completed successfully.\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251117_104729.sql\n✓ Backup completed successfully\n✓ Backup size: 5.1M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!',NULL,NULL,1,'2025-11-17 10:47:29','2025-11-17 10:47:31'),
(11,'git','success','Checking git status...\nNo changes to commit\n\n=== Git Status ===\n',NULL,NULL,1,'2025-11-17 10:47:31','2025-11-17 10:47:31'),
(12,'git','success','Checking git status...\nAdding changes...\nCommitting changes...\nPushing to GitHub...\nGit operations completed successfully\n\n=== Git Status ===\n M AIO/NextCloudAIO\n M NEXTCLOUD_INTEGRATION.md\n M controllers/DocumentsController.php\n M controllers/NextcloudController.php\n M models/NextcloudClient.php\n M public/index.php\n M views/accounting/assets/show.php\n M views/accounting/period/index.php\n M views/crm/documents/show.php\n M views/crm/opportunities_show.php\n M views/documents/upload.php\n M views/documents/view.php\n M views/employees/show.php\n M views/forecaster/forecast_show.php\n M views/invoices/show.php\n M views/nextcloud/documents_widget.php\n M views/projects/show.php\n M views/purchaseorders/show.php\n M views/quotes/battery/edit.php\n M views/quotes/battery/show.php\n M views/quotes/general/edit.php\n M views/quotes/general/show.php\n M views/sales/discounts/index.php\n M views/salesorders/show.php\n M views/suppliers/edit.php\n M views/workorders/show.php\n?? BACKUP_STRATEGY.md\n?? NEXTCLOUD_ADMIN_GUIDE.md\n?? NEXTCLOUD_DOCUMENT_EDITING.md\n?? NEXTCLOUD_EDITING_QUICK_START.md\n?? controllers/NextcloudAdminController.php\n?? \"dev_examples/LBC Sales Process.pdf\"\n?? scripts/clear_otp_session.php\n?? views/nextcloud/activity_log.php\n?? views/nextcloud/admin_dashboard.php\n?? views/nextcloud/storage_report.php\n?? views/nextcloud/user_activity.php\n?? views/nextcloud/users_overview.php\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main dd05ad8] Automated backup: 2025-11-17 22:42:25\n 38 files changed, 3562 insertions(+), 59 deletions(-)\n create mode 100644 BACKUP_STRATEGY.md\n create mode 100644 NEXTCLOUD_ADMIN_GUIDE.md\n create mode 100644 NEXTCLOUD_DOCUMENT_EDITING.md\n create mode 100644 NEXTCLOUD_EDITING_QUICK_START.md\n create mode 100644 controllers/NextcloudAdminController.php\n create mode 100644 dev_examples/LBC Sales Process.pdf\n create mode 100644 scripts/clear_otp_session.php\n create mode 100644 views/nextcloud/activity_log.php\n create mode 100644 views/nextcloud/admin_dashboard.php\n create mode 100644 views/nextcloud/storage_report.php\n create mode 100644 views/nextcloud/user_activity.php\n create mode 100644 views/nextcloud/users_overview.php\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   018f09a..dd05ad8  main -> main',NULL,NULL,1,'2025-11-17 22:42:25','2025-11-17 22:42:27'),
(13,'full','success','=== DATABASE BACKUP ===\n✓ Database backup: SUCCESS\n\n=== GIT COMMIT & PUSH ===\n✓ Git operations: SUCCESS\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251117_224235.sql\n✓ Backup completed successfully\n✓ Backup size: 4.4M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!\n\n=== Git Status ===\n',NULL,NULL,1,'2025-11-17 22:42:34','2025-11-17 22:42:36'),
(14,'database','success','Database backup completed successfully.\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251117_224235.sql\n✓ Backup completed successfully\n✓ Backup size: 4.4M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!',NULL,NULL,1,'2025-11-17 22:42:34','2025-11-17 22:42:36'),
(15,'git','success','Checking git status...\nNo changes to commit\n\n=== Git Status ===\n',NULL,NULL,1,'2025-11-17 22:42:36','2025-11-17 22:42:36'),
(16,'full','success','=== DATABASE BACKUP ===\n✓ Database backup: SUCCESS\n\n=== GIT COMMIT & PUSH ===\n✓ Git operations: SUCCESS\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251118_140835.sql\n✓ Backup completed successfully\n✓ Backup size: 5.2M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!\n\n=== Git Status ===\n M AIO/NextCloudAIO\n M controllers/CustomerController.php\n M controllers/NextcloudController.php\n M controllers/UserController.php\n M models/NextcloudClient.php\n M public/index.php\n M views/accounting/period/index.php\n M views/announcements/create.php\n M views/announcements/edit.php\n M views/announcements/index.php\n M views/backup/index.php\n M views/backup/show.php\n M views/crm/documents/create.php\n M views/customers/create.php\n M views/customers/edit.php\n M views/customers/show.php\n M views/documentation/index.php\n M views/forecaster/compare.php\n M views/forecaster/index.php\n M views/hr/development/contracts/edit.php\n M views/hr/development/contracts/index.php\n M views/hr/development/contracts/view.php\n M views/hr/development/reviews/create.php\n M views/hr/development/reviews/edit.php\n M views/hr/development/reviews/index.php\n M views/hr/development/reviews/view.php\n M views/hr/development/training/create_assignment.php\n M views/hr/development/training/create_program.php\n M views/hr/development/training/edit_assignment.php\n M views/hr/development/training/edit_program.php\n M views/hr/development/training/index.php\n M views/hr/development/training/view_assignment.php\n M views/hr/development/training/view_program.php\n M views/hr/recruitment/assessments/index.php\n M views/hr/recruitment/interviews/create.php\n M views/hr/recruitment/interviews/edit.php\n M views/hr/recruitment/interviews/index.php\n M views/hr/recruitment/interviews/view.php\n M views/hr/recruitment/offers/create.php\n M views/hr/recruitment/offers/index.php\n M views/hr/relations/issues/create.php\n M views/hr/relations/issues/edit.php\n M views/hr/relations/issues/index.php\n M views/hr/relations/issues/view.php\n M views/hr/relations/separations/create.php\n M views/hr/relations/separations/edit.php\n M views/hr/relations/separations/index.php\n M views/hr/relations/separations/view.php\n M views/inventory/movements/create.php\n M views/inventory/movements/index.php\n M views/inventory/movements/show.php\n M views/inventory/transfers/create.php\n M views/inventory/transfers/index.php\n M views/inventory/transfers/show.php\n M views/journal/import.php\n M views/layouts/app.php\n M views/layouts/sidebar_dynamic.php\n M views/manufacturing/mrp/index.php\n M views/manufacturing/mrp/requisitions.php\n M views/manufacturing/mrp/safety_stock.php\n M views/manufacturing/quality/inspections.php\n M views/manufacturing/quality/ncr.php\n M views/manufacturing/quality/templates.php\n M views/manufacturing/shopfloor/index.php\n M views/manufacturing/shopfloor/work_order.php\n M views/nextcloud/documents_widget.php\n M views/nextcloud/my_documents.php\n M views/nextcloud/settings.php\n M views/pipedrive/import_dashboard.php\n M views/pipedrive/import_log.php\n M views/products/edit.php\n M views/products/show.php\n M views/projects/index.php\n M views/reports/index.php\n M views/reports/inventory.php\n M views/reports/sales.php\n M views/sales/reports/inventory.php\n M views/sales/reports/sales.php\n M views/tax/jurisdictions/index.php\n M views/tax/payments/index.php\n M views/workorders/show.php\n?? AI_README.md\n?? AI_SETUP_COMPLETE.md\n?? AI_USAGE_EXAMPLES.md\n?? controllers/AITestController.php\n?? core/AI.php\n?? public/assets/css/bootstrap-icons.css\n?? public/templates/\n?? scripts/sync_nextcloud_users.php\n?? views/customers/documents_widget.php\n?? views/nextcloud/embedded_editor.php\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main b473f5e] Automated backup: 2025-11-18 14:08:37\n 96 files changed, 2797 insertions(+), 417 deletions(-)\n create mode 100644 AI_README.md\n create mode 100644 AI_SETUP_COMPLETE.md\n create mode 100644 AI_USAGE_EXAMPLES.md\n create mode 100644 controllers/AITestController.php\n create mode 100644 core/AI.php\n create mode 100644 public/assets/css/bootstrap-icons.css\n create mode 100644 public/templates/blank.docx\n create mode 100644 public/templates/blank.odp\n create mode 100644 public/templates/blank.ods\n create mode 100644 public/templates/blank.odt\n create mode 100644 public/templates/blank.pptx\n create mode 100644 public/templates/blank.xlsx\n create mode 100644 scripts/sync_nextcloud_users.php\n create mode 100644 views/customers/documents_widget.php\n create mode 100644 views/nextcloud/embedded_editor.php\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   ccd453f..b473f5e  main -> main',NULL,NULL,1,'2025-11-18 14:08:35','2025-11-18 14:08:38'),
(17,'database','success','Database backup completed successfully.\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251118_140835.sql\n✓ Backup completed successfully\n✓ Backup size: 5.2M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!',NULL,NULL,1,'2025-11-18 14:08:35','2025-11-18 14:08:37'),
(18,'git','success','Checking git status...\nAdding changes...\nCommitting changes...\nPushing to GitHub...\nGit operations completed successfully\n\n=== Git Status ===\n M AIO/NextCloudAIO\n M controllers/CustomerController.php\n M controllers/NextcloudController.php\n M controllers/UserController.php\n M models/NextcloudClient.php\n M public/index.php\n M views/accounting/period/index.php\n M views/announcements/create.php\n M views/announcements/edit.php\n M views/announcements/index.php\n M views/backup/index.php\n M views/backup/show.php\n M views/crm/documents/create.php\n M views/customers/create.php\n M views/customers/edit.php\n M views/customers/show.php\n M views/documentation/index.php\n M views/forecaster/compare.php\n M views/forecaster/index.php\n M views/hr/development/contracts/edit.php\n M views/hr/development/contracts/index.php\n M views/hr/development/contracts/view.php\n M views/hr/development/reviews/create.php\n M views/hr/development/reviews/edit.php\n M views/hr/development/reviews/index.php\n M views/hr/development/reviews/view.php\n M views/hr/development/training/create_assignment.php\n M views/hr/development/training/create_program.php\n M views/hr/development/training/edit_assignment.php\n M views/hr/development/training/edit_program.php\n M views/hr/development/training/index.php\n M views/hr/development/training/view_assignment.php\n M views/hr/development/training/view_program.php\n M views/hr/recruitment/assessments/index.php\n M views/hr/recruitment/interviews/create.php\n M views/hr/recruitment/interviews/edit.php\n M views/hr/recruitment/interviews/index.php\n M views/hr/recruitment/interviews/view.php\n M views/hr/recruitment/offers/create.php\n M views/hr/recruitment/offers/index.php\n M views/hr/relations/issues/create.php\n M views/hr/relations/issues/edit.php\n M views/hr/relations/issues/index.php\n M views/hr/relations/issues/view.php\n M views/hr/relations/separations/create.php\n M views/hr/relations/separations/edit.php\n M views/hr/relations/separations/index.php\n M views/hr/relations/separations/view.php\n M views/inventory/movements/create.php\n M views/inventory/movements/index.php\n M views/inventory/movements/show.php\n M views/inventory/transfers/create.php\n M views/inventory/transfers/index.php\n M views/inventory/transfers/show.php\n M views/journal/import.php\n M views/layouts/app.php\n M views/layouts/sidebar_dynamic.php\n M views/manufacturing/mrp/index.php\n M views/manufacturing/mrp/requisitions.php\n M views/manufacturing/mrp/safety_stock.php\n M views/manufacturing/quality/inspections.php\n M views/manufacturing/quality/ncr.php\n M views/manufacturing/quality/templates.php\n M views/manufacturing/shopfloor/index.php\n M views/manufacturing/shopfloor/work_order.php\n M views/nextcloud/documents_widget.php\n M views/nextcloud/my_documents.php\n M views/nextcloud/settings.php\n M views/pipedrive/import_dashboard.php\n M views/pipedrive/import_log.php\n M views/products/edit.php\n M views/products/show.php\n M views/projects/index.php\n M views/reports/index.php\n M views/reports/inventory.php\n M views/reports/sales.php\n M views/sales/reports/inventory.php\n M views/sales/reports/sales.php\n M views/tax/jurisdictions/index.php\n M views/tax/payments/index.php\n M views/workorders/show.php\n?? AI_README.md\n?? AI_SETUP_COMPLETE.md\n?? AI_USAGE_EXAMPLES.md\n?? controllers/AITestController.php\n?? core/AI.php\n?? public/assets/css/bootstrap-icons.css\n?? public/templates/\n?? scripts/sync_nextcloud_users.php\n?? views/customers/documents_widget.php\n?? views/nextcloud/embedded_editor.php\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main b473f5e] Automated backup: 2025-11-18 14:08:37\n 96 files changed, 2797 insertions(+), 417 deletions(-)\n create mode 100644 AI_README.md\n create mode 100644 AI_SETUP_COMPLETE.md\n create mode 100644 AI_USAGE_EXAMPLES.md\n create mode 100644 controllers/AITestController.php\n create mode 100644 core/AI.php\n create mode 100644 public/assets/css/bootstrap-icons.css\n create mode 100644 public/templates/blank.docx\n create mode 100644 public/templates/blank.odp\n create mode 100644 public/templates/blank.ods\n create mode 100644 public/templates/blank.odt\n create mode 100644 public/templates/blank.pptx\n create mode 100644 public/templates/blank.xlsx\n create mode 100644 scripts/sync_nextcloud_users.php\n create mode 100644 views/customers/documents_widget.php\n create mode 100644 views/nextcloud/embedded_editor.php\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   ccd453f..b473f5e  main -> main',NULL,NULL,1,'2025-11-18 14:08:37','2025-11-18 14:08:38'),
(19,'full','success','=== DATABASE BACKUP ===\n✓ Database backup: SUCCESS\n\n=== GIT COMMIT & PUSH ===\n✓ Git operations: SUCCESS\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251119_091905.sql\n✓ Backup completed successfully\n✓ Backup size: 4.2M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!\n\n=== Git Status ===\n',NULL,NULL,1,'2025-11-19 09:19:05','2025-11-19 09:19:06'),
(20,'database','success','Database backup completed successfully.\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251119_091905.sql\n✓ Backup completed successfully\n✓ Backup size: 4.2M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!',NULL,NULL,1,'2025-11-19 09:19:05','2025-11-19 09:19:06'),
(21,'git','success','Checking git status...\nNo changes to commit\n\n=== Git Status ===\n',NULL,NULL,1,'2025-11-19 09:19:06','2025-11-19 09:19:06'),
(22,'full','success','=== DATABASE BACKUP ===\n✓ Database backup: SUCCESS\n\n=== GIT COMMIT & PUSH ===\n✓ Git operations: SUCCESS\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251119_094122.sql\n✓ Backup completed successfully\n✓ Backup size: 4.2M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!\n\n=== Git Status ===\n M core/AI.php\n M public/index.php\n M views/layouts/app.php\n?? NETWORK_MONITOR_README.md\n?? controllers/NetworkMonitorController.php\n?? core/NetworkMonitor.php\n?? views/network_monitor/\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main 5876626] Automated backup: 2025-11-19 09:41:22\n 7 files changed, 1446 insertions(+), 1 deletion(-)\n create mode 100644 NETWORK_MONITOR_README.md\n create mode 100644 controllers/NetworkMonitorController.php\n create mode 100644 core/NetworkMonitor.php\n create mode 100644 views/network_monitor/index.php\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   b473f5e..5876626  main -> main',NULL,NULL,1,'2025-11-19 09:41:21','2025-11-19 09:41:23'),
(23,'database','success','Database backup completed successfully.\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251119_094122.sql\n✓ Backup completed successfully\n✓ Backup size: 4.2M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!',NULL,NULL,1,'2025-11-19 09:41:21','2025-11-19 09:41:22'),
(24,'git','success','Checking git status...\nAdding changes...\nCommitting changes...\nPushing to GitHub...\nGit operations completed successfully\n\n=== Git Status ===\n M core/AI.php\n M public/index.php\n M views/layouts/app.php\n?? NETWORK_MONITOR_README.md\n?? controllers/NetworkMonitorController.php\n?? core/NetworkMonitor.php\n?? views/network_monitor/\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main 5876626] Automated backup: 2025-11-19 09:41:22\n 7 files changed, 1446 insertions(+), 1 deletion(-)\n create mode 100644 NETWORK_MONITOR_README.md\n create mode 100644 controllers/NetworkMonitorController.php\n create mode 100644 core/NetworkMonitor.php\n create mode 100644 views/network_monitor/index.php\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   b473f5e..5876626  main -> main',NULL,NULL,1,'2025-11-19 09:41:22','2025-11-19 09:41:23'),
(25,'full','success','=== DATABASE BACKUP ===\n✓ Database backup: SUCCESS\n\n=== GIT COMMIT & PUSH ===\n✓ Git operations: SUCCESS\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251119_133018.sql\n✓ Backup completed successfully\n✓ Backup size: 4.3M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!\n\n=== Git Status ===\n M controllers/AITestController.php\n M core/AI.php\n M public/index.php\n M views/accounting/reports/report-package.php\n M views/ai_test/index.php\n?? AI_MODEL_SELECTOR_IMPLEMENTATION.md\n?? DAILY_FORECASTING_SYSTEM.md\n?? PRODUCT_LINE_FORECASTING.md\n?? controllers/AssumptionsController.php\n?? controllers/ProductForecastController.php\n?? models/ForecastAssumptionManager.php\n?? models/ProductForecastManager.php\n?? public/debug_ai_sql.php\n?? public/test_ai_simple.php\n?? public/test_quotes_query.php\n?? test_ai_sql.php\n?? test_sql_cleaning.php\n?? views/assumptions/\n?? views/product_forecast/\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main eb42f7a] Automated backup: 2025-11-19 13:30:19\n 27 files changed, 5599 insertions(+), 279 deletions(-)\n create mode 100644 AI_MODEL_SELECTOR_IMPLEMENTATION.md\n create mode 100644 DAILY_FORECASTING_SYSTEM.md\n create mode 100644 PRODUCT_LINE_FORECASTING.md\n create mode 100644 controllers/AssumptionsController.php\n create mode 100644 controllers/ProductForecastController.php\n create mode 100644 models/ForecastAssumptionManager.php\n create mode 100644 models/ProductForecastManager.php\n create mode 100644 public/debug_ai_sql.php\n create mode 100644 public/test_ai_simple.php\n create mode 100644 public/test_quotes_query.php\n create mode 100644 test_ai_sql.php\n create mode 100644 test_sql_cleaning.php\n create mode 100644 views/assumptions/create_set.php\n create mode 100644 views/assumptions/daily_update.php\n create mode 100644 views/assumptions/edit.php\n create mode 100644 views/assumptions/sets.php\n create mode 100644 views/assumptions/variance.php\n create mode 100644 views/product_forecast/compare.php\n create mode 100644 views/product_forecast/compare_results.php\n create mode 100644 views/product_forecast/generate.php\n create mode 100644 views/product_forecast/index.php\n create mode 100644 views/product_forecast/proforma.php\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   5876626..eb42f7a  main -> main',NULL,NULL,1,'2025-11-19 13:30:18','2025-11-19 13:30:20'),
(26,'database','success','Database backup completed successfully.\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251119_133018.sql\n✓ Backup completed successfully\n✓ Backup size: 4.3M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!',NULL,NULL,1,'2025-11-19 13:30:18','2025-11-19 13:30:19'),
(27,'git','success','Checking git status...\nAdding changes...\nCommitting changes...\nPushing to GitHub...\nGit operations completed successfully\n\n=== Git Status ===\n M controllers/AITestController.php\n M core/AI.php\n M public/index.php\n M views/accounting/reports/report-package.php\n M views/ai_test/index.php\n?? AI_MODEL_SELECTOR_IMPLEMENTATION.md\n?? DAILY_FORECASTING_SYSTEM.md\n?? PRODUCT_LINE_FORECASTING.md\n?? controllers/AssumptionsController.php\n?? controllers/ProductForecastController.php\n?? models/ForecastAssumptionManager.php\n?? models/ProductForecastManager.php\n?? public/debug_ai_sql.php\n?? public/test_ai_simple.php\n?? public/test_quotes_query.php\n?? test_ai_sql.php\n?? test_sql_cleaning.php\n?? views/assumptions/\n?? views/product_forecast/\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main eb42f7a] Automated backup: 2025-11-19 13:30:19\n 27 files changed, 5599 insertions(+), 279 deletions(-)\n create mode 100644 AI_MODEL_SELECTOR_IMPLEMENTATION.md\n create mode 100644 DAILY_FORECASTING_SYSTEM.md\n create mode 100644 PRODUCT_LINE_FORECASTING.md\n create mode 100644 controllers/AssumptionsController.php\n create mode 100644 controllers/ProductForecastController.php\n create mode 100644 models/ForecastAssumptionManager.php\n create mode 100644 models/ProductForecastManager.php\n create mode 100644 public/debug_ai_sql.php\n create mode 100644 public/test_ai_simple.php\n create mode 100644 public/test_quotes_query.php\n create mode 100644 test_ai_sql.php\n create mode 100644 test_sql_cleaning.php\n create mode 100644 views/assumptions/create_set.php\n create mode 100644 views/assumptions/daily_update.php\n create mode 100644 views/assumptions/edit.php\n create mode 100644 views/assumptions/sets.php\n create mode 100644 views/assumptions/variance.php\n create mode 100644 views/product_forecast/compare.php\n create mode 100644 views/product_forecast/compare_results.php\n create mode 100644 views/product_forecast/generate.php\n create mode 100644 views/product_forecast/index.php\n create mode 100644 views/product_forecast/proforma.php\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   5876626..eb42f7a  main -> main',NULL,NULL,1,'2025-11-19 13:30:19','2025-11-19 13:30:20'),
(28,'full','success','=== DATABASE BACKUP ===\n✓ Database backup: SUCCESS\n\n=== GIT COMMIT & PUSH ===\n✓ Git operations: SUCCESS\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251121_164651.sql\n✓ Backup completed successfully\n✓ Backup size: 4.8M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!\n\n=== Git Status ===\n D docs/ACTION_MENU_PHASE2_PHASE3_COMPLETE.md\n D docs/ACTION_MENU_PHASE4_COMPLETE.md\n D docs/ACTION_MENU_SYSTEM_COMPLETE.md\n D docs/AI_INSTALLATION_SUCCESS.md\n D docs/AI_MODEL_SELECTOR_IMPLEMENTATION.md\n D docs/AI_QUICK_REFERENCE.md\n D docs/AI_README.md\n D docs/AI_SETUP_COMPLETE.md\n D docs/AI_TEST_PAGE.md\n D docs/AI_USAGE_EXAMPLES.md\n D docs/CALENDAR_FEATURE_COMPLETE.md\n D docs/CALENDAR_README.md\n D docs/DEPLOYMENT_CHECKLIST.md\n D docs/DEPLOYMENT_COMPLETE.md\n D docs/DEPLOYMENT_COMPLETE_SALES_PIPELINE.md\n D docs/DEPLOYMENT_GUIDE.md\n D docs/FILE_MANAGER_IMPLEMENTATION.md\n D docs/FILE_MANAGER_NEXT_STEPS.md\n D docs/FINANCIAL_MODELING_SUMMARY.md\n D docs/FINANCIAL_PLANNER_IMPLEMENTATION.md\n D docs/GANTT_AND_RESOURCE_PLANNING.md\n D docs/GANTT_MEDIUM_ENHANCEMENTS.md\n D docs/GANTT_QUICK_WINS.md\n D docs/MFA_CRITICAL_CONSIDERATIONS.md\n D docs/MFA_PASSWORD_RESET_IMPLEMENTATION_GUIDE.md\n D docs/MFA_QUICKSTART.md\n D docs/NEXTCLOUD_ADMIN_GUIDE.md\n D docs/NEXTCLOUD_APP_GRID_BUTTONS.md\n D docs/NEXTCLOUD_DOCUMENT_EDITING.md\n D docs/NEXTCLOUD_EDITING_QUICK_START.md\n D docs/NEXTCLOUD_INTEGRATION.md\n D docs/NEXTCLOUD_INTEGRATION_README.md\n D docs/NEXTCLOUD_MENU_PATHS.md\n D docs/NEXTCLOUD_QUICKSTART.md\n D docs/NOTIFICATION_FUTURE_ROADMAP.md\n D docs/NOTIFICATION_SYSTEM_PLAN.md\n D docs/OPPORTUNITIES_ENHANCEMENTS.md\n D docs/OPPORTUNITIES_TRACKING_FIELDS.md\n D docs/PERMISSIONS_IMPROVEMENTS_2025-11-17.md\n D docs/PERMISSIONS_OVERVIEW.md\n D docs/PROJECT_FINANCIALS_INTEGRATION.md\n D docs/PROJECT_GROUP_ASSIGNMENTS_FEATURE.md\n D docs/PROJECT_MANAGEMENT_SYSTEM.md\n D docs/PROJECT_TEAM_MEMBERS_FEATURE.md\n D docs/PROJECT_TO_GENERAL_LEDGER.md\n D docs/PURCHASE_MODULES_COMPLETE_SUMMARY.md\n D docs/PURCHASE_MODULES_IMPLEMENTATION.md\n D docs/QUICKBOOKS_QUICK_START.md\n D docs/QUICKBOOKS_README.md\n D docs/QUICKBOOKS_REPLACEMENT_ANALYSIS.md\n D docs/ROLES_PERMISSIONS_GUIDE.md\n D docs/ROLE_CONSOLIDATION.md\n D docs/ROLE_POSITION_AUDIT.md\n D docs/SECURITY_MODEL_CONSOLIDATION.md\n D docs/SECURITY_REFACTOR_TO_POSITIONS.md\n?? \"docs/AI Setup/\"\n?? docs/ActionMenu/\n?? docs/Calendar/\n?? docs/DeploymentGuide/\n?? \"docs/File Manager/\"\n?? docs/Financials/\n?? docs/GanttChart/\n?? docs/MFA/\n?? docs/NextCloud/\n?? docs/Notifications/\n?? docs/Opportunities/\n?? docs/Permissions/\n?? docs/Projects/\n?? docs/Purchases/\n?? docs/QuickBooks/\n?? docs/Roles/\n?? docs/Security/\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main 19df6f5] Automated backup: 2025-11-21 16:46:52\n 55 files changed, 0 insertions(+), 0 deletions(-)\n rename docs/{ => AI Setup}/AI_INSTALLATION_SUCCESS.md (100%)\n rename docs/{ => AI Setup}/AI_MODEL_SELECTOR_IMPLEMENTATION.md (100%)\n rename docs/{ => AI Setup}/AI_QUICK_REFERENCE.md (100%)\n rename docs/{ => AI Setup}/AI_README.md (100%)\n rename docs/{ => AI Setup}/AI_SETUP_COMPLETE.md (100%)\n rename docs/{ => AI Setup}/AI_TEST_PAGE.md (100%)\n rename docs/{ => AI Setup}/AI_USAGE_EXAMPLES.md (100%)\n rename docs/{ => ActionMenu}/ACTION_MENU_PHASE2_PHASE3_COMPLETE.md (100%)\n rename docs/{ => ActionMenu}/ACTION_MENU_PHASE4_COMPLETE.md (100%)\n rename docs/{ => ActionMenu}/ACTION_MENU_SYSTEM_COMPLETE.md (100%)\n rename docs/{ => Calendar}/CALENDAR_FEATURE_COMPLETE.md (100%)\n rename docs/{ => Calendar}/CALENDAR_README.md (100%)\n rename docs/{ => DeploymentGuide}/DEPLOYMENT_CHECKLIST.md (100%)\n rename docs/{ => DeploymentGuide}/DEPLOYMENT_COMPLETE.md (100%)\n rename docs/{ => DeploymentGuide}/DEPLOYMENT_COMPLETE_SALES_PIPELINE.md (100%)\n rename docs/{ => DeploymentGuide}/DEPLOYMENT_GUIDE.md (100%)\n rename docs/{ => File Manager}/FILE_MANAGER_IMPLEMENTATION.md (100%)\n rename docs/{ => File Manager}/FILE_MANAGER_NEXT_STEPS.md (100%)\n rename docs/{ => Financials}/FINANCIAL_MODELING_SUMMARY.md (100%)\n rename docs/{ => Financials}/FINANCIAL_PLANNER_IMPLEMENTATION.md (100%)\n rename docs/{ => GanttChart}/GANTT_AND_RESOURCE_PLANNING.md (100%)\n rename docs/{ => GanttChart}/GANTT_MEDIUM_ENHANCEMENTS.md (100%)\n rename docs/{ => GanttChart}/GANTT_QUICK_WINS.md (100%)\n rename docs/{ => MFA}/MFA_CRITICAL_CONSIDERATIONS.md (100%)\n rename docs/{ => MFA}/MFA_PASSWORD_RESET_IMPLEMENTATION_GUIDE.md (100%)\n rename docs/{ => MFA}/MFA_QUICKSTART.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_ADMIN_GUIDE.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_APP_GRID_BUTTONS.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_DOCUMENT_EDITING.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_EDITING_QUICK_START.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_INTEGRATION.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_INTEGRATION_README.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_MENU_PATHS.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_QUICKSTART.md (100%)\n rename docs/{ => Notifications}/NOTIFICATION_FUTURE_ROADMAP.md (100%)\n rename docs/{ => Notifications}/NOTIFICATION_SYSTEM_PLAN.md (100%)\n rename docs/{ => Opportunities}/OPPORTUNITIES_ENHANCEMENTS.md (100%)\n rename docs/{ => Opportunities}/OPPORTUNITIES_TRACKING_FIELDS.md (100%)\n rename docs/{ => Permissions}/PERMISSIONS_IMPROVEMENTS_2025-11-17.md (100%)\n rename docs/{ => Permissions}/PERMISSIONS_OVERVIEW.md (100%)\n rename docs/{ => Projects}/PROJECT_FINANCIALS_INTEGRATION.md (100%)\n rename docs/{ => Projects}/PROJECT_GROUP_ASSIGNMENTS_FEATURE.md (100%)\n rename docs/{ => Projects}/PROJECT_MANAGEMENT_SYSTEM.md (100%)\n rename docs/{ => Projects}/PROJECT_TEAM_MEMBERS_FEATURE.md (100%)\n rename docs/{ => Projects}/PROJECT_TO_GENERAL_LEDGER.md (100%)\n rename docs/{ => Purchases}/PURCHASE_MODULES_COMPLETE_SUMMARY.md (100%)\n rename docs/{ => Purchases}/PURCHASE_MODULES_IMPLEMENTATION.md (100%)\n rename docs/{ => QuickBooks}/QUICKBOOKS_QUICK_START.md (100%)\n rename docs/{ => QuickBooks}/QUICKBOOKS_README.md (100%)\n rename docs/{ => QuickBooks}/QUICKBOOKS_REPLACEMENT_ANALYSIS.md (100%)\n rename docs/{ => Roles}/ROLES_PERMISSIONS_GUIDE.md (100%)\n rename docs/{ => Roles}/ROLE_CONSOLIDATION.md (100%)\n rename docs/{ => Roles}/ROLE_POSITION_AUDIT.md (100%)\n rename docs/{ => Security}/SECURITY_MODEL_CONSOLIDATION.md (100%)\n rename docs/{ => Security}/SECURITY_REFACTOR_TO_POSITIONS.md (100%)\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   c686715..19df6f5  main -> main',NULL,NULL,1,'2025-11-21 16:46:50','2025-11-21 16:46:54'),
(29,'database','success','Database backup completed successfully.\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251121_164651.sql\n✓ Backup completed successfully\n✓ Backup size: 4.8M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!',NULL,NULL,1,'2025-11-21 16:46:50','2025-11-21 16:46:52'),
(30,'git','success','Checking git status...\nAdding changes...\nCommitting changes...\nPushing to GitHub...\nGit operations completed successfully\n\n=== Git Status ===\n D docs/ACTION_MENU_PHASE2_PHASE3_COMPLETE.md\n D docs/ACTION_MENU_PHASE4_COMPLETE.md\n D docs/ACTION_MENU_SYSTEM_COMPLETE.md\n D docs/AI_INSTALLATION_SUCCESS.md\n D docs/AI_MODEL_SELECTOR_IMPLEMENTATION.md\n D docs/AI_QUICK_REFERENCE.md\n D docs/AI_README.md\n D docs/AI_SETUP_COMPLETE.md\n D docs/AI_TEST_PAGE.md\n D docs/AI_USAGE_EXAMPLES.md\n D docs/CALENDAR_FEATURE_COMPLETE.md\n D docs/CALENDAR_README.md\n D docs/DEPLOYMENT_CHECKLIST.md\n D docs/DEPLOYMENT_COMPLETE.md\n D docs/DEPLOYMENT_COMPLETE_SALES_PIPELINE.md\n D docs/DEPLOYMENT_GUIDE.md\n D docs/FILE_MANAGER_IMPLEMENTATION.md\n D docs/FILE_MANAGER_NEXT_STEPS.md\n D docs/FINANCIAL_MODELING_SUMMARY.md\n D docs/FINANCIAL_PLANNER_IMPLEMENTATION.md\n D docs/GANTT_AND_RESOURCE_PLANNING.md\n D docs/GANTT_MEDIUM_ENHANCEMENTS.md\n D docs/GANTT_QUICK_WINS.md\n D docs/MFA_CRITICAL_CONSIDERATIONS.md\n D docs/MFA_PASSWORD_RESET_IMPLEMENTATION_GUIDE.md\n D docs/MFA_QUICKSTART.md\n D docs/NEXTCLOUD_ADMIN_GUIDE.md\n D docs/NEXTCLOUD_APP_GRID_BUTTONS.md\n D docs/NEXTCLOUD_DOCUMENT_EDITING.md\n D docs/NEXTCLOUD_EDITING_QUICK_START.md\n D docs/NEXTCLOUD_INTEGRATION.md\n D docs/NEXTCLOUD_INTEGRATION_README.md\n D docs/NEXTCLOUD_MENU_PATHS.md\n D docs/NEXTCLOUD_QUICKSTART.md\n D docs/NOTIFICATION_FUTURE_ROADMAP.md\n D docs/NOTIFICATION_SYSTEM_PLAN.md\n D docs/OPPORTUNITIES_ENHANCEMENTS.md\n D docs/OPPORTUNITIES_TRACKING_FIELDS.md\n D docs/PERMISSIONS_IMPROVEMENTS_2025-11-17.md\n D docs/PERMISSIONS_OVERVIEW.md\n D docs/PROJECT_FINANCIALS_INTEGRATION.md\n D docs/PROJECT_GROUP_ASSIGNMENTS_FEATURE.md\n D docs/PROJECT_MANAGEMENT_SYSTEM.md\n D docs/PROJECT_TEAM_MEMBERS_FEATURE.md\n D docs/PROJECT_TO_GENERAL_LEDGER.md\n D docs/PURCHASE_MODULES_COMPLETE_SUMMARY.md\n D docs/PURCHASE_MODULES_IMPLEMENTATION.md\n D docs/QUICKBOOKS_QUICK_START.md\n D docs/QUICKBOOKS_README.md\n D docs/QUICKBOOKS_REPLACEMENT_ANALYSIS.md\n D docs/ROLES_PERMISSIONS_GUIDE.md\n D docs/ROLE_CONSOLIDATION.md\n D docs/ROLE_POSITION_AUDIT.md\n D docs/SECURITY_MODEL_CONSOLIDATION.md\n D docs/SECURITY_REFACTOR_TO_POSITIONS.md\n?? \"docs/AI Setup/\"\n?? docs/ActionMenu/\n?? docs/Calendar/\n?? docs/DeploymentGuide/\n?? \"docs/File Manager/\"\n?? docs/Financials/\n?? docs/GanttChart/\n?? docs/MFA/\n?? docs/NextCloud/\n?? docs/Notifications/\n?? docs/Opportunities/\n?? docs/Permissions/\n?? docs/Projects/\n?? docs/Purchases/\n?? docs/QuickBooks/\n?? docs/Roles/\n?? docs/Security/\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main 19df6f5] Automated backup: 2025-11-21 16:46:52\n 55 files changed, 0 insertions(+), 0 deletions(-)\n rename docs/{ => AI Setup}/AI_INSTALLATION_SUCCESS.md (100%)\n rename docs/{ => AI Setup}/AI_MODEL_SELECTOR_IMPLEMENTATION.md (100%)\n rename docs/{ => AI Setup}/AI_QUICK_REFERENCE.md (100%)\n rename docs/{ => AI Setup}/AI_README.md (100%)\n rename docs/{ => AI Setup}/AI_SETUP_COMPLETE.md (100%)\n rename docs/{ => AI Setup}/AI_TEST_PAGE.md (100%)\n rename docs/{ => AI Setup}/AI_USAGE_EXAMPLES.md (100%)\n rename docs/{ => ActionMenu}/ACTION_MENU_PHASE2_PHASE3_COMPLETE.md (100%)\n rename docs/{ => ActionMenu}/ACTION_MENU_PHASE4_COMPLETE.md (100%)\n rename docs/{ => ActionMenu}/ACTION_MENU_SYSTEM_COMPLETE.md (100%)\n rename docs/{ => Calendar}/CALENDAR_FEATURE_COMPLETE.md (100%)\n rename docs/{ => Calendar}/CALENDAR_README.md (100%)\n rename docs/{ => DeploymentGuide}/DEPLOYMENT_CHECKLIST.md (100%)\n rename docs/{ => DeploymentGuide}/DEPLOYMENT_COMPLETE.md (100%)\n rename docs/{ => DeploymentGuide}/DEPLOYMENT_COMPLETE_SALES_PIPELINE.md (100%)\n rename docs/{ => DeploymentGuide}/DEPLOYMENT_GUIDE.md (100%)\n rename docs/{ => File Manager}/FILE_MANAGER_IMPLEMENTATION.md (100%)\n rename docs/{ => File Manager}/FILE_MANAGER_NEXT_STEPS.md (100%)\n rename docs/{ => Financials}/FINANCIAL_MODELING_SUMMARY.md (100%)\n rename docs/{ => Financials}/FINANCIAL_PLANNER_IMPLEMENTATION.md (100%)\n rename docs/{ => GanttChart}/GANTT_AND_RESOURCE_PLANNING.md (100%)\n rename docs/{ => GanttChart}/GANTT_MEDIUM_ENHANCEMENTS.md (100%)\n rename docs/{ => GanttChart}/GANTT_QUICK_WINS.md (100%)\n rename docs/{ => MFA}/MFA_CRITICAL_CONSIDERATIONS.md (100%)\n rename docs/{ => MFA}/MFA_PASSWORD_RESET_IMPLEMENTATION_GUIDE.md (100%)\n rename docs/{ => MFA}/MFA_QUICKSTART.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_ADMIN_GUIDE.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_APP_GRID_BUTTONS.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_DOCUMENT_EDITING.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_EDITING_QUICK_START.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_INTEGRATION.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_INTEGRATION_README.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_MENU_PATHS.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_QUICKSTART.md (100%)\n rename docs/{ => Notifications}/NOTIFICATION_FUTURE_ROADMAP.md (100%)\n rename docs/{ => Notifications}/NOTIFICATION_SYSTEM_PLAN.md (100%)\n rename docs/{ => Opportunities}/OPPORTUNITIES_ENHANCEMENTS.md (100%)\n rename docs/{ => Opportunities}/OPPORTUNITIES_TRACKING_FIELDS.md (100%)\n rename docs/{ => Permissions}/PERMISSIONS_IMPROVEMENTS_2025-11-17.md (100%)\n rename docs/{ => Permissions}/PERMISSIONS_OVERVIEW.md (100%)\n rename docs/{ => Projects}/PROJECT_FINANCIALS_INTEGRATION.md (100%)\n rename docs/{ => Projects}/PROJECT_GROUP_ASSIGNMENTS_FEATURE.md (100%)\n rename docs/{ => Projects}/PROJECT_MANAGEMENT_SYSTEM.md (100%)\n rename docs/{ => Projects}/PROJECT_TEAM_MEMBERS_FEATURE.md (100%)\n rename docs/{ => Projects}/PROJECT_TO_GENERAL_LEDGER.md (100%)\n rename docs/{ => Purchases}/PURCHASE_MODULES_COMPLETE_SUMMARY.md (100%)\n rename docs/{ => Purchases}/PURCHASE_MODULES_IMPLEMENTATION.md (100%)\n rename docs/{ => QuickBooks}/QUICKBOOKS_QUICK_START.md (100%)\n rename docs/{ => QuickBooks}/QUICKBOOKS_README.md (100%)\n rename docs/{ => QuickBooks}/QUICKBOOKS_REPLACEMENT_ANALYSIS.md (100%)\n rename docs/{ => Roles}/ROLES_PERMISSIONS_GUIDE.md (100%)\n rename docs/{ => Roles}/ROLE_CONSOLIDATION.md (100%)\n rename docs/{ => Roles}/ROLE_POSITION_AUDIT.md (100%)\n rename docs/{ => Security}/SECURITY_MODEL_CONSOLIDATION.md (100%)\n rename docs/{ => Security}/SECURITY_REFACTOR_TO_POSITIONS.md (100%)\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   c686715..19df6f5  main -> main',NULL,NULL,1,'2025-11-21 16:46:52','2025-11-21 16:46:54'),
(31,'full','success','=== DATABASE BACKUP ===\n✓ Database backup: SUCCESS\n\n=== GIT COMMIT & PUSH ===\n✓ Git operations: SUCCESS\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251124_121405.sql\n✓ Backup completed successfully\n✓ Backup size: 4.3M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!\n\n=== Git Status ===\nA  M1_ERP_FIX_PLAN.md\n M controllers/AccountingController.php\n M controllers/ContactController.php\n M controllers/CustomerController.php\n M controllers/FileManagerController.php\n M dev_examples/old/csv_to_sql.sh\n M dev_examples/old/fix_date_formats.php\n M models/Customer.php\n M models/DataTableGenerator.php\n M scripts/auto_git_push.sh\n M scripts/convert-all-buttons.sh\n M scripts/nightly_db_backup.sh\nAM test_file_manager.php\n M views/accounting/currency/form.php\n M views/accounting/currency/rates.php\n M views/accounting/currency/revaluation_form.php\n M views/ai_test/index.php\n M views/assumptions/sets.php\n M views/assumptions/variance.php\n M views/automation/email_templates/create.php\n M views/automation/email_templates/edit.php\n M views/automation/email_templates/preview.php\n M views/backup/index.php\n M views/backup/show.php\n M views/bank_import/index.php\n M views/bank_import/review.php\n M views/bank_import/rules.php\n M views/bank_import/upload.php\n M views/banking/reconciliation/show.php\n M views/calendar/index.php\n M views/camera_audit/capture.php\n M views/camera_audit/stations/create.php\n M views/camera_audit/stations/edit.php\n M views/crm/activities/create.php\n M views/crm/opportunities_show.php\n D views/customers/create.php\n D views/customers/documents_widget.php\n D views/customers/edit.php\n D views/customers/index.php\n D views/customers/show.php\nA  views/errors/403.php\nA  views/errors/500.php\nA  views/errors/503.php\n M views/file_manager/index.php\n M views/financial_planner/compare.php\n M views/financial_planner/forecast_edit.php\n M views/forecaster/compare.php\n M views/form1099/generate.php\n M views/form1099/summary.php\n M views/hr/recruitment/offers/print.php\n M views/journal/import.php\n M views/journal/index.php\n M views/manufacturing/scheduling/calendar.php\n M views/menus/index.php\n M views/messaging/index.php\n M views/ndas/countersign.php\n M views/ndas/create.php\n M views/ndas/index.php\n M views/ndas/preview.php\n M views/ndas/show.php\n M views/ndas/signature/sign.php\n M views/network_monitor/index.php\n M views/nextcloud/admin_dashboard.php\n M views/nextcloud/document_editor.php\n M views/nextcloud/documents_widget.php\n M views/nextcloud/edit_instructions.php\n M views/nextcloud/embedded_editor.php\n M views/nextcloud/quick_create.php\n M views/nextcloud/settings.php\n M views/pipedrive/import_dashboard.php\n M views/pipedrive/import_log.php\n M views/product_forecast/index.php\n M views/product_forecast/sensitivity.php\n M views/profile/index.php\n M views/profile/mfa_setup.php\n M views/projects/board.php\n M views/projects/edit.php\n M views/projects/financials.php\n M views/projects/gantt.php\n M views/projects/list.php\n M views/projects/migrate_transactions.php\n M views/projects/resources.php\n M views/projects/transaction_form.php\n M views/purchaserequisitions/show.php\n M views/quotes/general/show.php\n M views/quotes/signature/accept.php\n M views/quotes/signature/thank-you.php\n M views/recurring/create.php\n M views/recurring/edit.php\n M views/settings/nda_templates/edit.php\n M views/settings/nda_templates/show.php\n M views/settings/user_groups/show.php\n M views/tax/jurisdictions/create.php\n M views/tax/jurisdictions/edit.php\n M views/tax/jurisdictions/index.php\n M views/tax/jurisdictions/show.php\n M views/tax/payments/create.php\n M views/tax/payments/edit.php\n M views/tax/payments/index.php\n M views/tax/payments/show.php\n M views/tax/reports/liability.php\n M views/vendor_payments/show.php\n?? backups/buttons_all_20251124_104203/\n?? views/companies/\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main 166009c] Automated backup: 2025-11-24 12:14:06\n 671 files changed, 118763 insertions(+), 366 deletions(-)\n create mode 100644 M1_ERP_FIX_PLAN.md\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/assets/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/assets/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/assets/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/assets/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/budgets/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/budgets/form.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/budgets/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/budgets/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/accounting/currency/form.php\n create mode 100644 backups/buttons_all_20251124_104203/views/accounting/currency/list.php\n create mode 100644 backups/buttons_all_20251124_104203/views/accounting/currency/rates.php\n create mode 100644 backups/buttons_all_20251124_104203/views/accounting/currency/revaluation.php\n create mode 100644 backups/buttons_all_20251124_104203/views/accounting/currency/revaluation_form.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/depreciation/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/depreciation/schedule.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/expenses/form.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/expenses/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/expenses/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/expenses/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/ledger.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/period/close.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/period/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/period/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/aging-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/aging.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/ap-aging-detail-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/ap-aging-detail.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/ar-aging-detail-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/ar-aging-detail.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/balance-sheet-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/balance-sheet.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/cash-flow-statement-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/cash-flow-statement.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/income-statement-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/income-statement.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/payment-terms-list-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/payment-terms-list.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/report-package-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/report-package.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/trial-balance-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/trial-balance.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/tax/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/tax/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/tax/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/tax/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounts/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounts/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ai_test/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/announcements/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/announcements/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/announcements/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/approvals/dashboard.php\n create mode 100644 backups/buttons_all_20251124_104203/views/assumptions/create_set.php\n create mode 100644 backups/buttons_all_20251124_104203/views/assumptions/daily_update.php\n create mode 100644 backups/buttons_all_20251124_104203/views/assumptions/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/assumptions/sets.php\n create mode 100644 backups/buttons_all_20251124_104203/views/assumptions/variance.php\n create mode 100755 backups/buttons_all_20251124_104203/views/attendance/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/attendance/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/audit_logs/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/auth/forgot_password.php\n create mode 100755 backups/buttons_all_20251124_104203/views/auth/login.php\n create mode 100644 backups/buttons_all_20251124_104203/views/auth/reset_password.php\n create mode 100644 backups/buttons_all_20251124_104203/views/auth/verify_otp.php\n create mode 100644 backups/buttons_all_20251124_104203/views/automation/email_templates/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/automation/email_templates/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/automation/email_templates/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/automation/email_templates/preview.php\n create mode 100644 backups/buttons_all_20251124_104203/views/backup/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/backup/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/bank_import/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/bank_import/review.php\n create mode 100644 backups/buttons_all_20251124_104203/views/bank_import/rules.php\n create mode 100644 backups/buttons_all_20251124_104203/views/bank_import/upload.php\n create mode 100755 backups/buttons_all_20251124_104203/views/banking/accounts/form.php\n create mode 100755 backups/buttons_all_20251124_104203/views/banking/accounts/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/banking/accounts/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/banking/reconciliation/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/banking/reconciliation/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/banking/reconciliation/start.php\n create mode 100755 backups/buttons_all_20251124_104203/views/battery_quotes/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/battery_quotes/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/battery_quotes/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/battery_quotes/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/boms/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/boms/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/boms/low_stock_report.php\n create mode 100755 backups/buttons_all_20251124_104203/views/boms/view.php\n create mode 100644 backups/buttons_all_20251124_104203/views/calendar/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/camera_audit/capture.php\n create mode 100644 backups/buttons_all_20251124_104203/views/camera_audit/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/camera_audit/stations/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/camera_audit/stations/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/camera_audit/stations/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/camera_audit/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/clients/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/clients/edit.php\n rename {views/customers => backups/buttons_all_20251124_104203/views/clients}/index.php (61%)\n create mode 100755 backups/buttons_all_20251124_104203/views/clients/show.php\n rename {views/customers => backups/buttons_all_20251124_104203/views/companies}/create.php (93%)\n rename {views/customers => backups/buttons_all_20251124_104203/views/companies}/documents_widget.php (100%)\n rename {views/customers => backups/buttons_all_20251124_104203/views/companies}/edit.php (93%)\n create mode 100755 backups/buttons_all_20251124_104203/views/companies/index.php\n rename {views/customers => backups/buttons_all_20251124_104203/views/companies}/show.php (94%)\n create mode 100644 backups/buttons_all_20251124_104203/views/components/action_menu.php\n create mode 100755 backups/buttons_all_20251124_104203/views/components/internal_notes_modal.php\n create mode 100755 backups/buttons_all_20251124_104203/views/creditnotes/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/creditnotes/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/creditnotes/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/activities.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/activities/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/activities/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/contacts.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/contacts/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/contacts/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/documents.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/documents/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/documents/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/documents/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/opportunities.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/opportunities_create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/crm/opportunities_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/crm/opportunities_pipeline.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/opportunities_show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/reports.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/support.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/support/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/support/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/support/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/custom_reports/builder.php\n create mode 100755 backups/buttons_all_20251124_104203/views/custom_reports/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/custom_reports/my.php\n create mode 100755 backups/buttons_all_20251124_104203/views/custom_reports/scheduled.php\n create mode 100755 backups/buttons_all_20251124_104203/views/custom_reports/shared.php\n create mode 100755 backups/buttons_all_20251124_104203/views/customer_payments/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/customer_payments/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/customer_payments/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/customize.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/component_shortages.php\n create mode 100644 backups/buttons_all_20251124_104203/views/dashboard/widgets/documentation_coverage.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/inventory_value.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/low_stock.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/outstanding_invoices.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/pending_orders.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/recent_orders.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/revenue_month.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/sales_today.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/sales_trend.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/top_customers.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/top_products.php\n create mode 100644 backups/buttons_all_20251124_104203/views/dashboard/widgets/upcoming_events.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/work_orders_status.php\n create mode 100755 backups/buttons_all_20251124_104203/views/data_access/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/data_access/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/debitnotes/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/debitnotes/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/debitnotes/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/debitnotes/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/documentation/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/documents/all.php\n create mode 100755 backups/buttons_all_20251124_104203/views/documents/my.php\n create mode 100755 backups/buttons_all_20251124_104203/views/documents/shared.php\n create mode 100755 backups/buttons_all_20251124_104203/views/documents/upload.php\n create mode 100755 backups/buttons_all_20251124_104203/views/documents/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/employees/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/employees/directory.php\n create mode 100755 backups/buttons_all_20251124_104203/views/employees/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/employees/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/employees/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/errors/404.php\n create mode 100644 backups/buttons_all_20251124_104203/views/file_manager/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/financial_planner/compare.php\n create mode 100644 backups/buttons_all_20251124_104203/views/financial_planner/compare_prototype.php\n create mode 100644 backups/buttons_all_20251124_104203/views/financial_planner/forecast_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/financial_planner/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/financial_planner/partials/guide_panel.php\n create mode 100644 backups/buttons_all_20251124_104203/views/financial_planner/planner.php\n create mode 100755 backups/buttons_all_20251124_104203/views/financial_proforma/assumptions.php\n create mode 100755 backups/buttons_all_20251124_104203/views/financial_proforma/compare.php\n create mode 100755 backups/buttons_all_20251124_104203/views/financial_proforma/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/financial_proforma/report.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/compare.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/financing_create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/financing_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/forecast_create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/forecast_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/forecast_show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/import_proforma.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/investment_create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/investment_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/periods_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/scenario_create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/scenario_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/scenario_show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/form1099/contractor_detail.php\n create mode 100644 backups/buttons_all_20251124_104203/views/form1099/generate.php\n create mode 100644 backups/buttons_all_20251124_104203/views/form1099/summary.php\n create mode 100755 backups/buttons_all_20251124_104203/views/goodsreceipts/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/goodsreceipts/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/goodsreceipts/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/chat.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/kb.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/my-tickets.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/reports.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/sla.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/tickets.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/contracts/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/contracts/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/contracts/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/contracts/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/contracts/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/reviews/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/reviews/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/reviews/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/reviews/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/create_assignment.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/create_program.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/edit_assignment.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/edit_program.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/view_assignment.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/view_program.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/positions/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/positions/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/positions/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/applications/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/applications/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/applications/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/applications/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/assessments/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/hr/recruitment/assessments/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/assessments/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/hr/recruitment/assessments/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/interviews/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/interviews/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/interviews/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/interviews/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/offer-letter.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/offers/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/offers/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/offers/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/offers/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/offers/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/positions/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/positions/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/positions/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/positions/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/issues/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/issues/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/issues/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/issues/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/separations/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/separations/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/separations/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/separations/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/categories/form.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/categories/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/categories/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/lots/expiration.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/lots/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/lots/traceability.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/movements/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/movements/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/movements/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/stock-levels/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/stock-levels/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/transfers/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/transfers/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/transfers/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/invoices/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/invoices/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/invoices/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/invoices/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/invoices/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/journal/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/journal/import.php\n create mode 100644 backups/buttons_all_20251124_104203/views/journal/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/journal/index_old.php\n create mode 100755 backups/buttons_all_20251124_104203/views/journal/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/layouts/app.php\n create mode 100755 backups/buttons_all_20251124_104203/views/layouts/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/layouts/sidebar_dynamic.php\n create mode 100755 backups/buttons_all_20251124_104203/views/locations/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/locations/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/locations/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/analytics/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/business-lines/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/business-lines/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/business-lines/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/capacity/analytics.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/capacity/availability.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/capacity/feasibility.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/capacity/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/capacity/machine_status.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/costing/jobs.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/costing/production.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment-lines/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment-lines/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment-lines/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment-types/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment-types/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment-types/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/maintenance/create_downtime.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/maintenance/create_schedule.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/maintenance/create_work_order.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/maintenance/downtime.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/maintenance/schedules.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/maintenance/work_orders.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/mrp/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/mrp/requisitions.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/mrp/safety_stock.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/create_inspection.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/create_ncr.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/create_template.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/inspections.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/metrics.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/ncr.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/templates.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/reports/oee.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/reports/production.php\n create mode 100644 backups/buttons_all_20251124_104203/views/manufacturing/scheduling/calendar.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/scheduling/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/shopfloor/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/shopfloor/work_order.php\n create mode 100755 backups/buttons_all_20251124_104203/views/menus/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/menus/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/menus/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/menus/role_access.php\n create mode 100755 backups/buttons_all_20251124_104203/views/messaging/create_channel.php\n create mode 100755 backups/buttons_all_20251124_104203/views/messaging/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ndas/countersign.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ndas/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ndas/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ndas/preview.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ndas/show.php\n create mode 120000 backups/buttons_all_20251124_104203/views/ndas/signature/error.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ndas/signature/sign.php\n create mode 100644 backups/buttons_all_20251124_104203/views/network_monitor/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/activity_log.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/admin_dashboard.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/auto_login.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/document_editor.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/documents_widget.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/edit_instructions.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/editor.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/embedded_editor.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/my_documents.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/quick_create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/settings.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/sso_proxy.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/storage_report.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/user_activity.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/users_overview.php\n create mode 100755 backups/buttons_all_20251124_104203/views/notifications/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/partials/quick_add_company_modal.php\n create mode 100644 backups/buttons_all_20251124_104203/views/partials/quick_add_supplier_modal.php\n create mode 100755 backups/buttons_all_20251124_104203/views/partials/stat_card.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payments/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payments/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payments/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payroll/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payroll/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payroll/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payroll/payslip.php\n create mode 100644 backups/buttons_all_20251124_104203/views/pipedrive/import_dashboard.php\n create mode 100644 backups/buttons_all_20251124_104203/views/pipedrive/import_log.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/command_center.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/compare.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/compare_results.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/generate.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/getting_started.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/proforma.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/sensitivity.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/variance.php\n create mode 100755 backups/buttons_all_20251124_104203/views/products/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/products/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/products/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/products/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/profile/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/profile/mfa_backup_codes.php\n create mode 100644 backups/buttons_all_20251124_104203/views/profile/mfa_setup.php\n create mode 100755 backups/buttons_all_20251124_104203/views/proforma/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/proforma/location.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/board.php\n create mode 100755 backups/buttons_all_20251124_104203/views/projects/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/projects/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/financials.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/gantt.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/gantt_export_pdf.php\n create mode 100755 backups/buttons_all_20251124_104203/views/projects/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/list.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/migrate_transactions.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/my_tasks.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/resources.php\n create mode 100755 backups/buttons_all_20251124_104203/views/projects/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/transaction_form.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasebills/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasebills/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasebills/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasebills/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchaseorders/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchaseorders/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchaseorders/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchaseorders/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasepayments/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasepayments/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasepayments/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchaserequisitions/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchaserequisitions/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchaserequisitions/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchaserequisitions/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasereturns/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasereturns/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasereturns/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasereturns/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchases/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchases/goodsreceipts/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchases/goodsreceipts/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchases/goodsreceipts/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchases/payment-voucher.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quickbooks/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/battery/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/battery/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/battery/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/battery/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/general/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/general/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/general/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/general/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/quotes/signature/accept.php\n create mode 100644 backups/buttons_all_20251124_104203/views/quotes/signature/error.php\n create mode 100644 backups/buttons_all_20251124_104203/views/quotes/signature/thank-you.php\n create mode 100644 backups/buttons_all_20251124_104203/views/recurring/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/recurring/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/recurring/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/recurring/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/customers.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/financial.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/hr.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/inventory.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/purchases.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/sales.php\n create mode 100644 backups/buttons_all_20251124_104203/views/rfqs/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/rfqs/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/rfqs/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/rfqs/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/roles/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/roles/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/roles/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/roles/print.php\n create mode 100644 backups/buttons_all_20251124_104203/views/roles/report.php\n create mode 100644 backups/buttons_all_20251124_104203/views/roles/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/delivery-notes/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/delivery-notes/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/delivery-notes/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/discounts/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/pricing/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/pricing/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/pricing/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/promotions/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/promotions/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/promotions/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/customers.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/financial.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/hr.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/inventory.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/purchases.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/sales.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/returns/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/sales/returns/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/returns/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/returns/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/returns/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/salesorders/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/salesorders/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/salesorders/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/salesorders/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/salesorders/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/_business_params.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/_payroll_params.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/action_menus/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/action_menus/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/action_menus/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/action_menus/page_detail.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/business-parameters/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/business-parameters/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/company.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/cost-allocation.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/dropdown_editor.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/dropdowns-operations.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/dropdowns-sales.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/email.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/facilities/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/facilities/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/fiscal-year.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/index.php.accordion\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/index_2.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/nda_templates/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/nda_templates/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/nda_templates/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/payment-terms.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/payroll/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/payroll/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/ppe-parameters.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/quote-templates/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/tax.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/terms-conditions/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/terms-conditions/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/terms-conditions/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/user_groups/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/user_groups/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/user_groups/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/user_groups/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/shipments/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/shipments/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/shipments/packing-slip.php\n create mode 100755 backups/buttons_all_20251124_104203/views/shipments/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/suppliers/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/suppliers/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/suppliers/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/jurisdictions/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/jurisdictions/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/jurisdictions/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/jurisdictions/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/payments/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/payments/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/payments/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/payments/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/reports/liability.php\n create mode 100755 backups/buttons_all_20251124_104203/views/test/form_generator.php\n create mode 100755 backups/buttons_all_20251124_104203/views/users/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/users/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/users/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/users/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/vendor_payments/check_print.php\n create mode 100644 backups/buttons_all_20251124_104203/views/vendor_payments/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/vendor_payments/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/vendor_payments/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/vendor_payments/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/warehouses/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/warehouses/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/warehouses/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/workorders/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/workorders/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/workorders/show.php\n create mode 100644 test_file_manager.php\n create mode 100755 views/companies/create.php\n create mode 100644 views/companies/documents_widget.php\n create mode 100755 views/companies/edit.php\n create mode 100755 views/companies/index.php\n create mode 100755 views/companies/show.php\n create mode 100644 views/errors/403.php\n create mode 100644 views/errors/500.php\n create mode 100644 views/errors/503.php\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   9c53246..166009c  main -> main',NULL,NULL,1,'2025-11-24 12:14:05','2025-11-24 12:14:08'),
(32,'database','success','Database backup completed successfully.\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251124_121405.sql\n✓ Backup completed successfully\n✓ Backup size: 4.3M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!',NULL,NULL,1,'2025-11-24 12:14:05','2025-11-24 12:14:06'),
(33,'git','success','Checking git status...\nAdding changes...\nCommitting changes...\nPushing to GitHub...\nGit operations completed successfully\n\n=== Git Status ===\nA  M1_ERP_FIX_PLAN.md\n M controllers/AccountingController.php\n M controllers/ContactController.php\n M controllers/CustomerController.php\n M controllers/FileManagerController.php\n M dev_examples/old/csv_to_sql.sh\n M dev_examples/old/fix_date_formats.php\n M models/Customer.php\n M models/DataTableGenerator.php\n M scripts/auto_git_push.sh\n M scripts/convert-all-buttons.sh\n M scripts/nightly_db_backup.sh\nAM test_file_manager.php\n M views/accounting/currency/form.php\n M views/accounting/currency/rates.php\n M views/accounting/currency/revaluation_form.php\n M views/ai_test/index.php\n M views/assumptions/sets.php\n M views/assumptions/variance.php\n M views/automation/email_templates/create.php\n M views/automation/email_templates/edit.php\n M views/automation/email_templates/preview.php\n M views/backup/index.php\n M views/backup/show.php\n M views/bank_import/index.php\n M views/bank_import/review.php\n M views/bank_import/rules.php\n M views/bank_import/upload.php\n M views/banking/reconciliation/show.php\n M views/calendar/index.php\n M views/camera_audit/capture.php\n M views/camera_audit/stations/create.php\n M views/camera_audit/stations/edit.php\n M views/crm/activities/create.php\n M views/crm/opportunities_show.php\n D views/customers/create.php\n D views/customers/documents_widget.php\n D views/customers/edit.php\n D views/customers/index.php\n D views/customers/show.php\nA  views/errors/403.php\nA  views/errors/500.php\nA  views/errors/503.php\n M views/file_manager/index.php\n M views/financial_planner/compare.php\n M views/financial_planner/forecast_edit.php\n M views/forecaster/compare.php\n M views/form1099/generate.php\n M views/form1099/summary.php\n M views/hr/recruitment/offers/print.php\n M views/journal/import.php\n M views/journal/index.php\n M views/manufacturing/scheduling/calendar.php\n M views/menus/index.php\n M views/messaging/index.php\n M views/ndas/countersign.php\n M views/ndas/create.php\n M views/ndas/index.php\n M views/ndas/preview.php\n M views/ndas/show.php\n M views/ndas/signature/sign.php\n M views/network_monitor/index.php\n M views/nextcloud/admin_dashboard.php\n M views/nextcloud/document_editor.php\n M views/nextcloud/documents_widget.php\n M views/nextcloud/edit_instructions.php\n M views/nextcloud/embedded_editor.php\n M views/nextcloud/quick_create.php\n M views/nextcloud/settings.php\n M views/pipedrive/import_dashboard.php\n M views/pipedrive/import_log.php\n M views/product_forecast/index.php\n M views/product_forecast/sensitivity.php\n M views/profile/index.php\n M views/profile/mfa_setup.php\n M views/projects/board.php\n M views/projects/edit.php\n M views/projects/financials.php\n M views/projects/gantt.php\n M views/projects/list.php\n M views/projects/migrate_transactions.php\n M views/projects/resources.php\n M views/projects/transaction_form.php\n M views/purchaserequisitions/show.php\n M views/quotes/general/show.php\n M views/quotes/signature/accept.php\n M views/quotes/signature/thank-you.php\n M views/recurring/create.php\n M views/recurring/edit.php\n M views/settings/nda_templates/edit.php\n M views/settings/nda_templates/show.php\n M views/settings/user_groups/show.php\n M views/tax/jurisdictions/create.php\n M views/tax/jurisdictions/edit.php\n M views/tax/jurisdictions/index.php\n M views/tax/jurisdictions/show.php\n M views/tax/payments/create.php\n M views/tax/payments/edit.php\n M views/tax/payments/index.php\n M views/tax/payments/show.php\n M views/tax/reports/liability.php\n M views/vendor_payments/show.php\n?? backups/buttons_all_20251124_104203/\n?? views/companies/\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main 166009c] Automated backup: 2025-11-24 12:14:06\n 671 files changed, 118763 insertions(+), 366 deletions(-)\n create mode 100644 M1_ERP_FIX_PLAN.md\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/assets/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/assets/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/assets/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/assets/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/budgets/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/budgets/form.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/budgets/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/budgets/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/accounting/currency/form.php\n create mode 100644 backups/buttons_all_20251124_104203/views/accounting/currency/list.php\n create mode 100644 backups/buttons_all_20251124_104203/views/accounting/currency/rates.php\n create mode 100644 backups/buttons_all_20251124_104203/views/accounting/currency/revaluation.php\n create mode 100644 backups/buttons_all_20251124_104203/views/accounting/currency/revaluation_form.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/depreciation/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/depreciation/schedule.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/expenses/form.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/expenses/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/expenses/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/expenses/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/ledger.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/period/close.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/period/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/period/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/aging-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/aging.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/ap-aging-detail-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/ap-aging-detail.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/ar-aging-detail-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/ar-aging-detail.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/balance-sheet-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/balance-sheet.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/cash-flow-statement-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/cash-flow-statement.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/income-statement-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/income-statement.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/payment-terms-list-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/payment-terms-list.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/report-package-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/report-package.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/trial-balance-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/trial-balance.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/tax/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/tax/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/tax/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/tax/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounts/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounts/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ai_test/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/announcements/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/announcements/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/announcements/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/approvals/dashboard.php\n create mode 100644 backups/buttons_all_20251124_104203/views/assumptions/create_set.php\n create mode 100644 backups/buttons_all_20251124_104203/views/assumptions/daily_update.php\n create mode 100644 backups/buttons_all_20251124_104203/views/assumptions/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/assumptions/sets.php\n create mode 100644 backups/buttons_all_20251124_104203/views/assumptions/variance.php\n create mode 100755 backups/buttons_all_20251124_104203/views/attendance/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/attendance/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/audit_logs/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/auth/forgot_password.php\n create mode 100755 backups/buttons_all_20251124_104203/views/auth/login.php\n create mode 100644 backups/buttons_all_20251124_104203/views/auth/reset_password.php\n create mode 100644 backups/buttons_all_20251124_104203/views/auth/verify_otp.php\n create mode 100644 backups/buttons_all_20251124_104203/views/automation/email_templates/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/automation/email_templates/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/automation/email_templates/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/automation/email_templates/preview.php\n create mode 100644 backups/buttons_all_20251124_104203/views/backup/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/backup/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/bank_import/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/bank_import/review.php\n create mode 100644 backups/buttons_all_20251124_104203/views/bank_import/rules.php\n create mode 100644 backups/buttons_all_20251124_104203/views/bank_import/upload.php\n create mode 100755 backups/buttons_all_20251124_104203/views/banking/accounts/form.php\n create mode 100755 backups/buttons_all_20251124_104203/views/banking/accounts/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/banking/accounts/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/banking/reconciliation/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/banking/reconciliation/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/banking/reconciliation/start.php\n create mode 100755 backups/buttons_all_20251124_104203/views/battery_quotes/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/battery_quotes/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/battery_quotes/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/battery_quotes/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/boms/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/boms/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/boms/low_stock_report.php\n create mode 100755 backups/buttons_all_20251124_104203/views/boms/view.php\n create mode 100644 backups/buttons_all_20251124_104203/views/calendar/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/camera_audit/capture.php\n create mode 100644 backups/buttons_all_20251124_104203/views/camera_audit/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/camera_audit/stations/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/camera_audit/stations/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/camera_audit/stations/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/camera_audit/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/clients/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/clients/edit.php\n rename {views/customers => backups/buttons_all_20251124_104203/views/clients}/index.php (61%)\n create mode 100755 backups/buttons_all_20251124_104203/views/clients/show.php\n rename {views/customers => backups/buttons_all_20251124_104203/views/companies}/create.php (93%)\n rename {views/customers => backups/buttons_all_20251124_104203/views/companies}/documents_widget.php (100%)\n rename {views/customers => backups/buttons_all_20251124_104203/views/companies}/edit.php (93%)\n create mode 100755 backups/buttons_all_20251124_104203/views/companies/index.php\n rename {views/customers => backups/buttons_all_20251124_104203/views/companies}/show.php (94%)\n create mode 100644 backups/buttons_all_20251124_104203/views/components/action_menu.php\n create mode 100755 backups/buttons_all_20251124_104203/views/components/internal_notes_modal.php\n create mode 100755 backups/buttons_all_20251124_104203/views/creditnotes/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/creditnotes/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/creditnotes/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/activities.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/activities/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/activities/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/contacts.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/contacts/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/contacts/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/documents.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/documents/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/documents/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/documents/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/opportunities.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/opportunities_create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/crm/opportunities_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/crm/opportunities_pipeline.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/opportunities_show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/reports.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/support.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/support/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/support/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/support/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/custom_reports/builder.php\n create mode 100755 backups/buttons_all_20251124_104203/views/custom_reports/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/custom_reports/my.php\n create mode 100755 backups/buttons_all_20251124_104203/views/custom_reports/scheduled.php\n create mode 100755 backups/buttons_all_20251124_104203/views/custom_reports/shared.php\n create mode 100755 backups/buttons_all_20251124_104203/views/customer_payments/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/customer_payments/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/customer_payments/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/customize.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/component_shortages.php\n create mode 100644 backups/buttons_all_20251124_104203/views/dashboard/widgets/documentation_coverage.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/inventory_value.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/low_stock.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/outstanding_invoices.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/pending_orders.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/recent_orders.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/revenue_month.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/sales_today.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/sales_trend.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/top_customers.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/top_products.php\n create mode 100644 backups/buttons_all_20251124_104203/views/dashboard/widgets/upcoming_events.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/work_orders_status.php\n create mode 100755 backups/buttons_all_20251124_104203/views/data_access/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/data_access/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/debitnotes/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/debitnotes/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/debitnotes/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/debitnotes/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/documentation/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/documents/all.php\n create mode 100755 backups/buttons_all_20251124_104203/views/documents/my.php\n create mode 100755 backups/buttons_all_20251124_104203/views/documents/shared.php\n create mode 100755 backups/buttons_all_20251124_104203/views/documents/upload.php\n create mode 100755 backups/buttons_all_20251124_104203/views/documents/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/employees/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/employees/directory.php\n create mode 100755 backups/buttons_all_20251124_104203/views/employees/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/employees/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/employees/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/errors/404.php\n create mode 100644 backups/buttons_all_20251124_104203/views/file_manager/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/financial_planner/compare.php\n create mode 100644 backups/buttons_all_20251124_104203/views/financial_planner/compare_prototype.php\n create mode 100644 backups/buttons_all_20251124_104203/views/financial_planner/forecast_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/financial_planner/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/financial_planner/partials/guide_panel.php\n create mode 100644 backups/buttons_all_20251124_104203/views/financial_planner/planner.php\n create mode 100755 backups/buttons_all_20251124_104203/views/financial_proforma/assumptions.php\n create mode 100755 backups/buttons_all_20251124_104203/views/financial_proforma/compare.php\n create mode 100755 backups/buttons_all_20251124_104203/views/financial_proforma/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/financial_proforma/report.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/compare.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/financing_create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/financing_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/forecast_create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/forecast_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/forecast_show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/import_proforma.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/investment_create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/investment_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/periods_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/scenario_create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/scenario_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/scenario_show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/form1099/contractor_detail.php\n create mode 100644 backups/buttons_all_20251124_104203/views/form1099/generate.php\n create mode 100644 backups/buttons_all_20251124_104203/views/form1099/summary.php\n create mode 100755 backups/buttons_all_20251124_104203/views/goodsreceipts/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/goodsreceipts/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/goodsreceipts/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/chat.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/kb.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/my-tickets.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/reports.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/sla.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/tickets.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/contracts/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/contracts/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/contracts/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/contracts/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/contracts/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/reviews/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/reviews/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/reviews/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/reviews/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/create_assignment.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/create_program.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/edit_assignment.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/edit_program.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/view_assignment.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/view_program.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/positions/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/positions/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/positions/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/applications/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/applications/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/applications/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/applications/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/assessments/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/hr/recruitment/assessments/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/assessments/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/hr/recruitment/assessments/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/interviews/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/interviews/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/interviews/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/interviews/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/offer-letter.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/offers/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/offers/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/offers/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/offers/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/offers/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/positions/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/positions/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/positions/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/positions/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/issues/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/issues/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/issues/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/issues/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/separations/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/separations/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/separations/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/separations/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/categories/form.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/categories/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/categories/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/lots/expiration.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/lots/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/lots/traceability.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/movements/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/movements/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/movements/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/stock-levels/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/stock-levels/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/transfers/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/transfers/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/transfers/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/invoices/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/invoices/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/invoices/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/invoices/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/invoices/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/journal/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/journal/import.php\n create mode 100644 backups/buttons_all_20251124_104203/views/journal/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/journal/index_old.php\n create mode 100755 backups/buttons_all_20251124_104203/views/journal/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/layouts/app.php\n create mode 100755 backups/buttons_all_20251124_104203/views/layouts/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/layouts/sidebar_dynamic.php\n create mode 100755 backups/buttons_all_20251124_104203/views/locations/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/locations/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/locations/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/analytics/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/business-lines/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/business-lines/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/business-lines/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/capacity/analytics.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/capacity/availability.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/capacity/feasibility.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/capacity/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/capacity/machine_status.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/costing/jobs.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/costing/production.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment-lines/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment-lines/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment-lines/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment-types/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment-types/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment-types/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/maintenance/create_downtime.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/maintenance/create_schedule.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/maintenance/create_work_order.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/maintenance/downtime.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/maintenance/schedules.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/maintenance/work_orders.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/mrp/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/mrp/requisitions.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/mrp/safety_stock.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/create_inspection.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/create_ncr.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/create_template.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/inspections.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/metrics.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/ncr.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/templates.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/reports/oee.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/reports/production.php\n create mode 100644 backups/buttons_all_20251124_104203/views/manufacturing/scheduling/calendar.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/scheduling/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/shopfloor/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/shopfloor/work_order.php\n create mode 100755 backups/buttons_all_20251124_104203/views/menus/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/menus/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/menus/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/menus/role_access.php\n create mode 100755 backups/buttons_all_20251124_104203/views/messaging/create_channel.php\n create mode 100755 backups/buttons_all_20251124_104203/views/messaging/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ndas/countersign.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ndas/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ndas/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ndas/preview.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ndas/show.php\n create mode 120000 backups/buttons_all_20251124_104203/views/ndas/signature/error.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ndas/signature/sign.php\n create mode 100644 backups/buttons_all_20251124_104203/views/network_monitor/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/activity_log.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/admin_dashboard.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/auto_login.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/document_editor.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/documents_widget.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/edit_instructions.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/editor.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/embedded_editor.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/my_documents.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/quick_create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/settings.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/sso_proxy.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/storage_report.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/user_activity.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/users_overview.php\n create mode 100755 backups/buttons_all_20251124_104203/views/notifications/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/partials/quick_add_company_modal.php\n create mode 100644 backups/buttons_all_20251124_104203/views/partials/quick_add_supplier_modal.php\n create mode 100755 backups/buttons_all_20251124_104203/views/partials/stat_card.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payments/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payments/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payments/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payroll/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payroll/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payroll/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payroll/payslip.php\n create mode 100644 backups/buttons_all_20251124_104203/views/pipedrive/import_dashboard.php\n create mode 100644 backups/buttons_all_20251124_104203/views/pipedrive/import_log.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/command_center.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/compare.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/compare_results.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/generate.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/getting_started.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/proforma.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/sensitivity.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/variance.php\n create mode 100755 backups/buttons_all_20251124_104203/views/products/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/products/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/products/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/products/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/profile/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/profile/mfa_backup_codes.php\n create mode 100644 backups/buttons_all_20251124_104203/views/profile/mfa_setup.php\n create mode 100755 backups/buttons_all_20251124_104203/views/proforma/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/proforma/location.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/board.php\n create mode 100755 backups/buttons_all_20251124_104203/views/projects/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/projects/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/financials.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/gantt.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/gantt_export_pdf.php\n create mode 100755 backups/buttons_all_20251124_104203/views/projects/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/list.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/migrate_transactions.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/my_tasks.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/resources.php\n create mode 100755 backups/buttons_all_20251124_104203/views/projects/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/transaction_form.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasebills/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasebills/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasebills/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasebills/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchaseorders/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchaseorders/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchaseorders/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchaseorders/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasepayments/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasepayments/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasepayments/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchaserequisitions/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchaserequisitions/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchaserequisitions/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchaserequisitions/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasereturns/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasereturns/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasereturns/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasereturns/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchases/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchases/goodsreceipts/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchases/goodsreceipts/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchases/goodsreceipts/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchases/payment-voucher.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quickbooks/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/battery/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/battery/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/battery/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/battery/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/general/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/general/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/general/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/general/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/quotes/signature/accept.php\n create mode 100644 backups/buttons_all_20251124_104203/views/quotes/signature/error.php\n create mode 100644 backups/buttons_all_20251124_104203/views/quotes/signature/thank-you.php\n create mode 100644 backups/buttons_all_20251124_104203/views/recurring/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/recurring/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/recurring/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/recurring/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/customers.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/financial.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/hr.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/inventory.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/purchases.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/sales.php\n create mode 100644 backups/buttons_all_20251124_104203/views/rfqs/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/rfqs/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/rfqs/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/rfqs/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/roles/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/roles/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/roles/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/roles/print.php\n create mode 100644 backups/buttons_all_20251124_104203/views/roles/report.php\n create mode 100644 backups/buttons_all_20251124_104203/views/roles/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/delivery-notes/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/delivery-notes/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/delivery-notes/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/discounts/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/pricing/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/pricing/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/pricing/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/promotions/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/promotions/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/promotions/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/customers.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/financial.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/hr.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/inventory.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/purchases.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/sales.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/returns/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/sales/returns/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/returns/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/returns/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/returns/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/salesorders/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/salesorders/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/salesorders/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/salesorders/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/salesorders/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/_business_params.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/_payroll_params.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/action_menus/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/action_menus/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/action_menus/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/action_menus/page_detail.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/business-parameters/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/business-parameters/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/company.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/cost-allocation.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/dropdown_editor.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/dropdowns-operations.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/dropdowns-sales.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/email.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/facilities/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/facilities/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/fiscal-year.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/index.php.accordion\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/index_2.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/nda_templates/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/nda_templates/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/nda_templates/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/payment-terms.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/payroll/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/payroll/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/ppe-parameters.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/quote-templates/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/tax.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/terms-conditions/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/terms-conditions/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/terms-conditions/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/user_groups/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/user_groups/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/user_groups/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/user_groups/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/shipments/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/shipments/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/shipments/packing-slip.php\n create mode 100755 backups/buttons_all_20251124_104203/views/shipments/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/suppliers/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/suppliers/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/suppliers/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/jurisdictions/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/jurisdictions/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/jurisdictions/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/jurisdictions/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/payments/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/payments/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/payments/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/payments/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/reports/liability.php\n create mode 100755 backups/buttons_all_20251124_104203/views/test/form_generator.php\n create mode 100755 backups/buttons_all_20251124_104203/views/users/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/users/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/users/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/users/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/vendor_payments/check_print.php\n create mode 100644 backups/buttons_all_20251124_104203/views/vendor_payments/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/vendor_payments/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/vendor_payments/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/vendor_payments/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/warehouses/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/warehouses/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/warehouses/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/workorders/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/workorders/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/workorders/show.php\n create mode 100644 test_file_manager.php\n create mode 100755 views/companies/create.php\n create mode 100644 views/companies/documents_widget.php\n create mode 100755 views/companies/edit.php\n create mode 100755 views/companies/index.php\n create mode 100755 views/companies/show.php\n create mode 100644 views/errors/403.php\n create mode 100644 views/errors/500.php\n create mode 100644 views/errors/503.php\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   9c53246..166009c  main -> main',NULL,NULL,1,'2025-11-24 12:14:06','2025-11-24 12:14:08'),
(34,'full','success','=== DATABASE BACKUP ===\n✓ Database backup: SUCCESS\n\n=== GIT COMMIT & PUSH ===\n✓ Git operations: SUCCESS\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251127_162246.sql\n✓ Backup completed successfully\n✓ Backup size: 5.1M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!\n\n=== Git Status ===\n M controllers/CalendarController.php\n M controllers/SystemScriptsController.php\n M core/Database.php\n M public/assets/js/calendar.js\n?? CSRF_AUDIT_README.md\n?? CSRF_QUICK_REFERENCE.md\n?? check_csrf_tokens.php\n?? csrf_audit_report.txt\n?? csrf_check.sh\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main 55a223e] Automated backup: 2025-11-27 16:22:49\n 9 files changed, 1087 insertions(+), 15 deletions(-)\n create mode 100644 CSRF_AUDIT_README.md\n create mode 100644 CSRF_QUICK_REFERENCE.md\n create mode 100755 check_csrf_tokens.php\n create mode 100644 csrf_audit_report.txt\n create mode 100755 csrf_check.sh\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   13cf81d..55a223e  main -> main',NULL,NULL,1,'2025-11-27 16:22:46','2025-11-27 16:22:51'),
(35,'database','success','Database backup completed successfully.\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251127_162246.sql\n✓ Backup completed successfully\n✓ Backup size: 5.1M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!',NULL,NULL,1,'2025-11-27 16:22:46','2025-11-27 16:22:49'),
(36,'git','success','Checking git status...\nAdding changes...\nCommitting changes...\nPushing to GitHub...\nGit operations completed successfully\n\n=== Git Status ===\n M controllers/CalendarController.php\n M controllers/SystemScriptsController.php\n M core/Database.php\n M public/assets/js/calendar.js\n?? CSRF_AUDIT_README.md\n?? CSRF_QUICK_REFERENCE.md\n?? check_csrf_tokens.php\n?? csrf_audit_report.txt\n?? csrf_check.sh\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main 55a223e] Automated backup: 2025-11-27 16:22:49\n 9 files changed, 1087 insertions(+), 15 deletions(-)\n create mode 100644 CSRF_AUDIT_README.md\n create mode 100644 CSRF_QUICK_REFERENCE.md\n create mode 100755 check_csrf_tokens.php\n create mode 100644 csrf_audit_report.txt\n create mode 100755 csrf_check.sh\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   13cf81d..55a223e  main -> main',NULL,NULL,1,'2025-11-27 16:22:49','2025-11-27 16:22:51'),
(37,'git','success','Checking git status...\nNo changes to commit\n\n=== Git Status ===\n',NULL,NULL,1,'2025-12-02 17:08:26','2025-12-02 17:08:27'),
(38,'git','success','Checking git status...\nAdding changes...\nCommitting changes...\nPushing to GitHub...\nGit operations completed successfully\n\n=== Git Status ===\n M public/index.php\n M views/crm/opportunities.php\n M views/product_forecast/index.php\n?? USER_AVATAR_COMPONENT.md\n?? controllers/DemoController.php\n?? views/components/user_avatar.php\n?? views/demo/\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main 4227d72] Automated backup: 2025-12-03 11:46:23\n 7 files changed, 485 insertions(+), 6 deletions(-)\n create mode 100644 USER_AVATAR_COMPONENT.md\n create mode 100644 controllers/DemoController.php\n create mode 100644 views/components/user_avatar.php\n create mode 100644 views/demo/avatar_demo.php\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   e6ae891..4227d72  main -> main',NULL,NULL,1,'2025-12-03 11:46:23','2025-12-03 11:46:25'),
(39,'full','success','=== DATABASE BACKUP ===\n✓ Database backup: SUCCESS\n\n=== GIT COMMIT & PUSH ===\n✓ Git operations: SUCCESS\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251205_124609.sql\n✓ Backup completed successfully\n✓ Backup size: 8.0M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!\n\n=== Git Status ===\n M controllers/ProductForecastController.php\n M controllers/SalesOrderController.php\n M controllers/ShopFloorController.php\n M controllers/WorkOrderController.php\n M models/ProductForecastManager.php\n M models/SalesOrder.php\n M models/WorkOrder.php\n M public/index.php\n M views/layouts/app.php\n D views/workorders/create.php\n?? \"Equipment Capacity Planning & Utilization Features.md\"\n?? controllers/EquipmentResearchController.php\n?? controllers/ProfitOptimizerController.php\n?? models/EquipmentResearch.php\n?? models/ProfitOptimizer.php\n?? views/product_forecast/equipment_impact.php\n?? views/workorders/create_enhanced.php\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main 0b240e7] Automated backup: 2025-12-05 12:46:12\n 17 files changed, 4191 insertions(+), 34 deletions(-)\n create mode 100644 Equipment Capacity Planning & Utilization Features.md\n create mode 100644 controllers/EquipmentResearchController.php\n create mode 100644 controllers/ProfitOptimizerController.php\n create mode 100644 models/EquipmentResearch.php\n create mode 100644 models/ProfitOptimizer.php\n create mode 100644 views/product_forecast/equipment_impact.php\n delete mode 100755 views/workorders/create.php\n create mode 100644 views/workorders/create_enhanced.php\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   c5ee35c..0b240e7  main -> main',NULL,NULL,1,'2025-12-05 12:46:09','2025-12-05 12:46:13'),
(40,'database','success','Database backup completed successfully.\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251205_124609.sql\n✓ Backup completed successfully\n✓ Backup size: 8.0M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!',NULL,NULL,1,'2025-12-05 12:46:09','2025-12-05 12:46:12'),
(41,'git','success','Checking git status...\nAdding changes...\nCommitting changes...\nPushing to GitHub...\nGit operations completed successfully\n\n=== Git Status ===\n M controllers/ProductForecastController.php\n M controllers/SalesOrderController.php\n M controllers/ShopFloorController.php\n M controllers/WorkOrderController.php\n M models/ProductForecastManager.php\n M models/SalesOrder.php\n M models/WorkOrder.php\n M public/index.php\n M views/layouts/app.php\n D views/workorders/create.php\n?? \"Equipment Capacity Planning & Utilization Features.md\"\n?? controllers/EquipmentResearchController.php\n?? controllers/ProfitOptimizerController.php\n?? models/EquipmentResearch.php\n?? models/ProfitOptimizer.php\n?? views/product_forecast/equipment_impact.php\n?? views/workorders/create_enhanced.php\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main 0b240e7] Automated backup: 2025-12-05 12:46:12\n 17 files changed, 4191 insertions(+), 34 deletions(-)\n create mode 100644 Equipment Capacity Planning & Utilization Features.md\n create mode 100644 controllers/EquipmentResearchController.php\n create mode 100644 controllers/ProfitOptimizerController.php\n create mode 100644 models/EquipmentResearch.php\n create mode 100644 models/ProfitOptimizer.php\n create mode 100644 views/product_forecast/equipment_impact.php\n delete mode 100755 views/workorders/create.php\n create mode 100644 views/workorders/create_enhanced.php\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   c5ee35c..0b240e7  main -> main',NULL,NULL,1,'2025-12-05 12:46:12','2025-12-05 12:46:13');
/*!40000 ALTER TABLE `backup_history` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `bank_accounts`
--

DROP TABLE IF EXISTS `bank_accounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bank_accounts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_name` varchar(255) NOT NULL,
  `account_number` varchar(100) DEFAULT NULL,
  `bank_name` varchar(255) NOT NULL,
  `bank_branch` varchar(255) DEFAULT NULL,
  `account_type` enum('checking','savings','credit_card','money_market','other') DEFAULT 'checking',
  `currency` varchar(3) DEFAULT 'USD',
  `opening_balance` decimal(15,2) DEFAULT 0.00,
  `current_balance` decimal(15,2) DEFAULT 0.00,
  `gl_account_id` int(10) unsigned DEFAULT NULL COMMENT 'Link to chart of accounts',
  `routing_number` varchar(50) DEFAULT NULL,
  `swift_code` varchar(50) DEFAULT NULL,
  `iban` varchar(50) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `is_active` tinyint(1) DEFAULT 1,
  `is_default` tinyint(1) DEFAULT 0,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `gl_account_id` (`gl_account_id`),
  KEY `created_by` (`created_by`),
  KEY `is_active` (`is_active`),
  CONSTRAINT `bank_accounts_ibfk_1` FOREIGN KEY (`gl_account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `bank_accounts_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bank_accounts`
--

LOCK TABLES `bank_accounts` WRITE;
/*!40000 ALTER TABLE `bank_accounts` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `bank_accounts` VALUES
(2,'Bank One','1234567890','Bank of One','Tampa','checking','USD',1000000.00,1000000.00,NULL,'0987654321','123','234','Main Account',1,1,1,'2025-11-05 11:38:57','2025-11-13 00:04:26');
/*!40000 ALTER TABLE `bank_accounts` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `bank_categorization_rules`
--

DROP TABLE IF EXISTS `bank_categorization_rules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bank_categorization_rules` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rule_name` varchar(200) NOT NULL,
  `match_type` enum('contains','equals','starts_with','ends_with','regex') DEFAULT 'contains',
  `match_field` enum('description','reference','check_number','amount') DEFAULT 'description',
  `match_value` varchar(500) NOT NULL,
  `min_amount` decimal(15,2) DEFAULT NULL,
  `max_amount` decimal(15,2) DEFAULT NULL,
  `transaction_type` enum('debit','credit','both') DEFAULT 'both',
  `account_id` int(10) unsigned NOT NULL COMMENT 'Assign to this GL account',
  `description_template` varchar(500) DEFAULT NULL COMMENT 'Optional description override',
  `priority` int(11) DEFAULT 100 COMMENT 'Lower number = higher priority',
  `is_active` tinyint(1) DEFAULT 1,
  `match_count` int(11) DEFAULT 0 COMMENT 'How many times this rule has matched',
  `last_matched_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `created_by` int(10) unsigned DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_active` (`is_active`),
  KEY `idx_priority` (`priority`),
  KEY `idx_match_field` (`match_field`),
  KEY `account_id` (`account_id`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `bank_categorization_rules_ibfk_1` FOREIGN KEY (`account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `bank_categorization_rules_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bank_categorization_rules`
--

LOCK TABLES `bank_categorization_rules` WRITE;
/*!40000 ALTER TABLE `bank_categorization_rules` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `bank_categorization_rules` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `bank_import_batches`
--

DROP TABLE IF EXISTS `bank_import_batches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bank_import_batches` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `bank_account_id` int(10) unsigned NOT NULL,
  `file_name` varchar(500) NOT NULL,
  `file_type` enum('csv','ofx','qfx','qbo') NOT NULL,
  `file_path` varchar(500) DEFAULT NULL,
  `total_transactions` int(11) DEFAULT 0,
  `imported_count` int(11) DEFAULT 0,
  `duplicate_count` int(11) DEFAULT 0,
  `error_count` int(11) DEFAULT 0,
  `status` enum('pending','processing','completed','failed') DEFAULT 'pending',
  `error_message` text DEFAULT NULL,
  `transaction_date_start` date DEFAULT NULL,
  `transaction_date_end` date DEFAULT NULL,
  `imported_at` timestamp NULL DEFAULT current_timestamp(),
  `imported_by` int(10) unsigned DEFAULT NULL,
  `processed_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_bank_account` (`bank_account_id`),
  KEY `idx_status` (`status`),
  KEY `idx_imported_at` (`imported_at`),
  KEY `imported_by` (`imported_by`),
  CONSTRAINT `bank_import_batches_ibfk_1` FOREIGN KEY (`bank_account_id`) REFERENCES `bank_accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `bank_import_batches_ibfk_2` FOREIGN KEY (`imported_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bank_import_batches`
--

LOCK TABLES `bank_import_batches` WRITE;
/*!40000 ALTER TABLE `bank_import_batches` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `bank_import_batches` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `bank_import_transactions`
--

DROP TABLE IF EXISTS `bank_import_transactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bank_import_transactions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `batch_id` int(10) unsigned NOT NULL,
  `bank_account_id` int(10) unsigned NOT NULL,
  `transaction_date` date NOT NULL,
  `post_date` date DEFAULT NULL,
  `description` varchar(500) NOT NULL,
  `reference_number` varchar(100) DEFAULT NULL,
  `check_number` varchar(50) DEFAULT NULL,
  `amount` decimal(15,2) NOT NULL,
  `transaction_type` enum('debit','credit') NOT NULL,
  `running_balance` decimal(15,2) DEFAULT NULL,
  `is_categorized` tinyint(1) DEFAULT 0,
  `account_id` int(10) unsigned DEFAULT NULL COMMENT 'Assigned chart of accounts',
  `category_rule_id` int(10) unsigned DEFAULT NULL COMMENT 'Rule that categorized this',
  `status` enum('pending','categorized','matched','imported','ignored') DEFAULT 'pending',
  `is_duplicate` tinyint(1) DEFAULT 0,
  `duplicate_of_id` int(10) unsigned DEFAULT NULL COMMENT 'Link to existing journal entry',
  `journal_entry_id` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_batch` (`batch_id`),
  KEY `idx_bank_account` (`bank_account_id`),
  KEY `idx_transaction_date` (`transaction_date`),
  KEY `idx_status` (`status`),
  KEY `idx_is_duplicate` (`is_duplicate`),
  KEY `idx_description` (`description`(255)),
  KEY `account_id` (`account_id`),
  KEY `category_rule_id` (`category_rule_id`),
  CONSTRAINT `bank_import_transactions_ibfk_1` FOREIGN KEY (`batch_id`) REFERENCES `bank_import_batches` (`id`) ON DELETE CASCADE,
  CONSTRAINT `bank_import_transactions_ibfk_2` FOREIGN KEY (`bank_account_id`) REFERENCES `bank_accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `bank_import_transactions_ibfk_3` FOREIGN KEY (`account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `bank_import_transactions_ibfk_4` FOREIGN KEY (`category_rule_id`) REFERENCES `bank_categorization_rules` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bank_import_transactions`
--

LOCK TABLES `bank_import_transactions` WRITE;
/*!40000 ALTER TABLE `bank_import_transactions` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `bank_import_transactions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `bank_reconciliations`
--

DROP TABLE IF EXISTS `bank_reconciliations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bank_reconciliations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `bank_account_id` int(10) unsigned NOT NULL,
  `reconciliation_date` date NOT NULL,
  `statement_date` date NOT NULL,
  `statement_balance` decimal(15,2) NOT NULL,
  `book_balance` decimal(15,2) NOT NULL,
  `difference` decimal(15,2) DEFAULT 0.00,
  `status` enum('in_progress','completed','cancelled') DEFAULT 'in_progress',
  `notes` text DEFAULT NULL,
  `completed_by` int(10) unsigned DEFAULT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `bank_account_id` (`bank_account_id`),
  KEY `reconciliation_date` (`reconciliation_date`),
  KEY `status` (`status`),
  KEY `completed_by` (`completed_by`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `bank_reconciliations_ibfk_1` FOREIGN KEY (`bank_account_id`) REFERENCES `bank_accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `bank_reconciliations_ibfk_2` FOREIGN KEY (`completed_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `bank_reconciliations_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bank_reconciliations`
--

LOCK TABLES `bank_reconciliations` WRITE;
/*!40000 ALTER TABLE `bank_reconciliations` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `bank_reconciliations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `bank_transactions`
--

DROP TABLE IF EXISTS `bank_transactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bank_transactions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `bank_account_id` int(10) unsigned NOT NULL,
  `transaction_date` date NOT NULL,
  `transaction_type` enum('deposit','withdrawal','transfer','fee','interest','adjustment') NOT NULL,
  `amount` decimal(15,2) NOT NULL,
  `reference_number` varchar(100) DEFAULT NULL,
  `payee_payer` varchar(255) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `category` varchar(100) DEFAULT NULL,
  `journal_entry_id` int(10) unsigned DEFAULT NULL COMMENT 'Link to journal entry',
  `transfer_to_account_id` int(10) unsigned DEFAULT NULL COMMENT 'For transfers between bank accounts',
  `is_reconciled` tinyint(1) DEFAULT 0,
  `reconciliation_id` int(10) unsigned DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `bank_account_id` (`bank_account_id`),
  KEY `transaction_date` (`transaction_date`),
  KEY `is_reconciled` (`is_reconciled`),
  KEY `journal_entry_id` (`journal_entry_id`),
  KEY `transfer_to_account_id` (`transfer_to_account_id`),
  KEY `reconciliation_id` (`reconciliation_id`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `bank_transactions_ibfk_1` FOREIGN KEY (`bank_account_id`) REFERENCES `bank_accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `bank_transactions_ibfk_2` FOREIGN KEY (`journal_entry_id`) REFERENCES `journal_entries` (`id`) ON DELETE SET NULL,
  CONSTRAINT `bank_transactions_ibfk_3` FOREIGN KEY (`transfer_to_account_id`) REFERENCES `bank_accounts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `bank_transactions_ibfk_4` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_bank_transactions_reconciliation` FOREIGN KEY (`reconciliation_id`) REFERENCES `bank_reconciliations` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bank_transactions`
--

LOCK TABLES `bank_transactions` WRITE;
/*!40000 ALTER TABLE `bank_transactions` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `bank_transactions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `battery_quote_documents`
--

DROP TABLE IF EXISTS `battery_quote_documents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `battery_quote_documents` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `battery_quote_id` int(11) NOT NULL,
  `file_name` varchar(255) NOT NULL,
  `original_name` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_type` varchar(100) DEFAULT NULL,
  `file_size` int(11) DEFAULT NULL COMMENT 'Size in bytes',
  `document_type` varchar(50) DEFAULT NULL COMMENT 'bom, sketch, specification, other',
  `description` text DEFAULT NULL,
  `uploaded_by` int(11) NOT NULL,
  `uploaded_at` datetime DEFAULT current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_battery_quote` (`battery_quote_id`),
  KEY `idx_uploaded_by` (`uploaded_by`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `battery_quote_documents`
--

LOCK TABLES `battery_quote_documents` WRITE;
/*!40000 ALTER TABLE `battery_quote_documents` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `battery_quote_documents` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `battery_quotes`
--

DROP TABLE IF EXISTS `battery_quotes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `battery_quotes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `quote_number` varchar(20) DEFAULT NULL,
  `customer_id` int(10) unsigned DEFAULT NULL,
  `location_id` int(10) unsigned NOT NULL,
  `quote_id` int(10) unsigned DEFAULT NULL,
  `customer_name` varchar(255) NOT NULL,
  `customer_type` enum('Government & Defense','OEM & Strategic Partners','Commercial & Industrial','Utilities & Grid-Energy Infrastructure','Consumer, Residential & Mobility') NOT NULL,
  `order_date` date NOT NULL,
  `start_month` int(11) DEFAULT NULL,
  `start_date` date DEFAULT NULL,
  `nominal_pack_voltage` decimal(10,2) NOT NULL COMMENT 'Voltage in V',
  `nominal_pack_capacity` decimal(10,2) NOT NULL COMMENT 'Capacity in Ah',
  `cell_type` varchar(100) NOT NULL COMMENT 'e.g., LFP 280Ah Prismatic',
  `requires_container_integration` enum('Yes','No') DEFAULT 'No',
  `cell_voltage` decimal(10,2) NOT NULL COMMENT 'V',
  `cell_capacity` decimal(10,2) NOT NULL COMMENT 'Ah',
  `cells_in_series` int(11) NOT NULL,
  `cells_in_parallel` int(11) NOT NULL,
  `battery_configuration` varchar(50) DEFAULT NULL COMMENT 'e.g., 8 S 1 P',
  `cells_per_pack` int(11) NOT NULL,
  `assembly_line` varchar(100) DEFAULT NULL COMMENT 'e.g., L. Prismatic, Small Cylindrical',
  `kwh_per_pack` decimal(15,6) DEFAULT NULL COMMENT 'Calculated kWh per pack',
  `packs_per_container` int(11) DEFAULT 0,
  `cells_container` int(11) DEFAULT 0,
  `kwh_per_container` decimal(15,6) DEFAULT 0.000000,
  `total_packs_beginning` int(11) NOT NULL COMMENT 'Initial pack quantity',
  `packs_per_hour` decimal(10,2) DEFAULT NULL COMMENT 'Production rate',
  `beginning_volume_kwh` decimal(15,2) DEFAULT NULL COMMENT 'kWh per year',
  `integration_hrs_per_container` decimal(10,2) DEFAULT NULL,
  `ta_cycle_per_pack` decimal(10,4) DEFAULT NULL COMMENT 'Test & Aging hours',
  `packs_tested_percent` decimal(5,4) DEFAULT NULL COMMENT 'Percentage as decimal',
  `modules_per_test` int(11) DEFAULT NULL,
  `test_equipment` varchar(100) DEFAULT NULL COMMENT 'e.g., 60V200A',
  `contract_duration` decimal(4,2) NOT NULL COMMENT 'Years',
  `yoy_growth_rate` decimal(5,4) DEFAULT NULL COMMENT 'Year over year growth as decimal',
  `renewal_probability` decimal(5,4) DEFAULT NULL COMMENT 'Probability as decimal (0.85 = 85%)',
  `renewal_volume_kwh` decimal(15,2) DEFAULT NULL,
  `post_renewal_growth` decimal(5,4) DEFAULT NULL,
  `extended_contract_duration` decimal(4,2) DEFAULT NULL,
  `total_contract_kwh` decimal(18,2) DEFAULT NULL,
  `total_contract_tested_packs` int(11) DEFAULT NULL,
  `total_contract_modules` decimal(15,2) DEFAULT NULL,
  `total_contract_containers` int(11) DEFAULT NULL,
  `peak_year` int(11) DEFAULT NULL,
  `contract_peak_kwh` decimal(15,2) DEFAULT NULL,
  `contract_peak_tested_packs` int(11) DEFAULT NULL,
  `test_cycles_needed` int(11) DEFAULT NULL,
  `total_ta_hours` int(11) DEFAULT NULL,
  `testing_channels_required` int(11) DEFAULT NULL,
  `contract_peak_modules` decimal(15,2) DEFAULT NULL,
  `contract_peak_containers` int(11) DEFAULT NULL,
  `contract_end_date` date DEFAULT NULL,
  `status` enum('draft','sent','approved','rejected','expired','converted') DEFAULT 'draft',
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `quote_number` (`quote_number`),
  KEY `created_by` (`created_by`),
  KEY `idx_customer_name` (`customer_name`),
  KEY `idx_order_date` (`order_date`),
  KEY `idx_status` (`status`),
  KEY `idx_customer_type` (`customer_type`),
  KEY `idx_quote_id` (`quote_id`),
  KEY `idx_location` (`location_id`),
  KEY `idx_customer` (`customer_id`),
  CONSTRAINT `battery_quotes_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `battery_quotes_ibfk_2` FOREIGN KEY (`quote_id`) REFERENCES `quotes` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_battery_quotes_customer` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `battery_quotes`
--

LOCK TABLES `battery_quotes` WRITE;
/*!40000 ALTER TABLE `battery_quotes` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `battery_quotes` VALUES
(1,'Q-001-111325',68,1,NULL,'Lockheed Martin','Government & Defense','2025-11-13',NULL,NULL,25.90,280.00,'NMC 280Ah Prismatic','No',3.70,280.00,7,1,'7 S 1 P ',7,'L. Prismatic',7.252000,NULL,NULL,NULL,1000,171.43,NULL,NULL,5.0000,0.0050,NULL,'60V200A',7.00,0.1500,0.8500,NULL,0.1000,6.16,139854.82,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(2,'Q-002-111325',69,1,NULL,'Lockheed Martin 2','Government & Defense','2025-11-13',NULL,NULL,48.10,280.00,'NMC 280Ah Prismatic','No',3.70,280.00,13,1,'13 S 1 P ',13,'L. Prismatic',13.468000,NULL,NULL,NULL,1500,92.31,NULL,NULL,5.0000,0.0050,NULL,'400V400A',6.00,0.1000,0.7500,NULL,0.0700,4.50,231784.28,91,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(3,'Q-003-111325',74,1,NULL,'Northrop Grumman','Government & Defense','2025-11-13',NULL,NULL,473.60,1680.00,'LFP 280Ah Prismatic','Yes',3.20,280.00,148,6,'148 S 6 P ',888,'L. Prismatic',795.648000,NULL,NULL,NULL,2000,1.35,NULL,NULL,1.0000,0.0000,NULL,'1500V600A',1.00,0.0100,0.7500,NULL,0.0900,0.80,1591296.00,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(4,'Q-004-111325',51,1,NULL,'Boeing','Government & Defense','2025-11-13',NULL,NULL,48.00,12.00,'LFP 26650 (6Ah)','No',3.20,6.00,15,2,'15 S 2 P ',30,'Small Cylindrical',0.576000,NULL,NULL,NULL,599,200.00,NULL,NULL,3.0000,0.0050,NULL,'60V200A',7.00,0.1000,0.8500,NULL,0.0800,5.95,5031.94,48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(5,'Q-005-111325',52,1,NULL,'Boeing 2','Government & Defense','2025-11-13',NULL,NULL,440.30,840.00,'NMC 280Ah Prismatic','No',3.70,280.00,119,3,'119 S 3 P ',357,'L. Prismatic',369.852000,NULL,NULL,NULL,200,3.36,NULL,NULL,5.0000,0.0050,NULL,'1500V400A',7.00,0.0800,0.8500,NULL,0.0800,5.95,1000079.81,21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(6,'Q-006-111325',49,1,NULL,'BAE Systems','Government & Defense','2025-11-13',NULL,NULL,48.10,560.00,'NMC 280Ah Prismatic','No',3.70,280.00,13,2,'13 S 2 P ',26,'L. Prismatic',26.936000,NULL,NULL,NULL,3000,46.15,NULL,NULL,2.0000,0.0050,NULL,'400V400A',5.00,0.1500,0.7500,NULL,0.0700,3.75,783460.50,148,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(7,'Q-007-111325',64,1,NULL,'L3 Harris','Government & Defense','2025-11-13',NULL,NULL,12.80,12.00,'LFP 26650 (6Ah)','No',3.20,6.00,4,2,'4 S 2 P ',8,'Small Cylindrical',0.153600,NULL,NULL,NULL,20053,750.00,NULL,NULL,1.0000,0.0050,NULL,'60V200A',6.00,0.1400,0.8500,NULL,0.1000,5.28,53989.94,1764,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(8,'Q-008-111325',47,1,NULL,'AeroVironment','Government & Defense','2025-11-13',NULL,NULL,14.80,25.00,'NMC 21700 (5Ah)','No',3.70,5.00,4,5,'4 S 5 P ',20,'Small Cylindrical',0.370000,NULL,NULL,NULL,6000,300.00,NULL,NULL,1.0000,0.0050,NULL,'60V200A',7.00,0.1300,0.7500,NULL,0.0900,5.60,33404.34,457,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(9,'Q-009-111325',63,1,NULL,'General Dynamics','Government & Defense','2025-11-13',NULL,NULL,48.00,280.00,'LFP 280Ah Prismatic','No',3.20,280.00,15,1,'15 S 1 P ',15,'L. Prismatic',13.440000,NULL,NULL,NULL,300,80.00,NULL,NULL,5.0000,0.0050,NULL,'400V400A',6.00,0.1000,0.7500,NULL,0.0700,4.50,46354.56,22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(10,'Q-010-111325',60,1,NULL,'Federal Bureau of Investigation','Government & Defense','2025-11-13',NULL,NULL,12.80,204.00,'LFP 26650 (6Ah)','No',3.20,6.00,4,34,'4 S 34 P ',136,'Small Cylindrical',2.611200,NULL,NULL,NULL,1000,44.12,NULL,NULL,4.0000,0.0050,NULL,'60V200A',5.00,0.2000,0.7500,NULL,0.0900,4.00,31509.35,65,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(11,'Q-011-111325',57,1,NULL,'Curtiss-Wright','Government & Defense','2025-11-13',NULL,NULL,751.10,280.00,'NMC 280Ah Prismatic','No',3.70,280.00,203,1,'203 S 1 P ',203,'L. Prismatic',210.308000,NULL,NULL,NULL,500,5.91,NULL,NULL,4.0000,0.0050,NULL,'400V600A',5.00,0.0800,0.8500,NULL,0.0800,4.25,1029457.66,29,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(12,'Q-012-111325',75,1,NULL,'Northrop Grumman 2','Government & Defense','2025-11-13',NULL,NULL,1500.80,5040.00,'LFP 280Ah Prismatic','Yes',3.20,280.00,469,18,'469 S 18 P ',8442,'L. Prismatic',7564.032000,NULL,NULL,NULL,2000,0.14,NULL,NULL,1.0000,0.0000,NULL,'1500V600A',1.00,0.0100,0.8500,NULL,0.1000,0.88,15128064.00,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(13,'Q-013-111325',48,1,NULL,'AirBus x AATLO','Government & Defense','2025-11-13',NULL,NULL,25.60,100.00,'LFP 50Ah Pouch','No',3.20,50.00,8,2,'8 S 2 P ',16,'Soft Pack / Pouch',2.560000,NULL,NULL,NULL,250,28.13,NULL,NULL,5.0000,0.0050,NULL,'60V200A',7.00,0.2100,0.7500,NULL,0.0900,5.60,13015.04,31,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(14,'Q-014-111325',53,1,NULL,'Boeing 3','Government & Defense','2025-11-13',NULL,NULL,25.60,12.00,'LFP 26650 (6Ah)','No',3.20,6.00,8,2,'8 S 2 P ',16,'Small Cylindrical',0.307200,NULL,NULL,NULL,89942,375.00,NULL,NULL,5.0000,0.0050,NULL,'60V200A',5.00,0.1300,0.8500,NULL,0.1000,4.40,338998.58,5522,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(15,'Q-015-111325',55,1,NULL,'Collins Aerospace','Government & Defense','2025-11-13',NULL,NULL,29.60,50.00,'NMC 21700 (5Ah)','No',3.70,5.00,8,10,'8 S 10 P ',80,'Small Cylindrical',1.480000,NULL,NULL,NULL,3000,75.00,NULL,NULL,3.0000,0.0050,NULL,'60V200A',5.00,0.2200,0.8500,NULL,0.0800,4.25,62629.16,216,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(16,'Q-016-111325',89,1,NULL,'Tenacious International','Government & Defense','2025-11-13',NULL,NULL,12.80,6.00,'LFP 26650 (6Ah)','No',3.20,6.00,4,1,'4 S 1 P ',4,'Small Cylindrical',0.076800,NULL,NULL,NULL,300,1500.00,NULL,NULL,4.0000,0.0050,NULL,'60V200A',6.00,0.1900,0.5500,NULL,0.0800,4.20,291.46,25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(17,'Q-017-111325',82,1,NULL,'Roush','Government & Defense','2025-11-13',NULL,NULL,48.00,280.00,'LFP 280Ah Prismatic','No',3.20,280.00,15,1,'15 S 1 P ',15,'L. Prismatic',13.440000,NULL,NULL,NULL,150,80.00,NULL,NULL,2.0000,0.0050,NULL,'400V400A',7.00,0.2100,0.7500,NULL,0.0700,5.25,41690.88,21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(18,'Q-018-111325',80,1,NULL,'Pratt / Miller','Government & Defense','2025-11-13',NULL,NULL,48.00,280.00,'LFP 280Ah Prismatic','No',3.20,280.00,15,1,'15 S 1 P ',15,'L. Prismatic',13.440000,NULL,NULL,NULL,300,80.00,NULL,NULL,1.0000,0.0050,NULL,'400V400A',7.00,0.1800,0.7500,NULL,0.0700,5.25,74376.96,34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(19,'Q-019-111325',58,1,NULL,'Eagle Picher Technologies','Government & Defense','2025-11-13',NULL,NULL,25.60,72.00,'LFP 26650 (6Ah)','No',3.20,6.00,8,12,'8 S 12 P ',96,'Small Cylindrical',1.843200,NULL,NULL,NULL,2000,62.50,NULL,NULL,5.0000,0.0050,NULL,'60V200A',7.00,0.2300,0.7500,NULL,0.0900,5.60,80706.36,224,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(20,'Q-020-111325',78,1,NULL,'Power Sonic','Government & Defense','2025-11-13',NULL,NULL,12.80,18.00,'LFP 26650 (6Ah)','No',3.20,6.00,4,3,'4 S 3 P ',12,'Small Cylindrical',0.230400,NULL,NULL,NULL,29948,500.00,NULL,NULL,4.0000,0.0050,NULL,'60V200A',6.00,0.2300,0.7500,NULL,0.0700,4.50,119166.80,2591,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(21,'Q-021-111325',66,1,NULL,'LiiON Inc','Government & Defense','2025-11-13',NULL,NULL,1.00,1.00,'LFP 280Ah Prismatic','Yes',3.20,280.00,1,0,'1 S 0.00357142857142857 P ',0,'L. Prismatic',0.003200,NULL,NULL,NULL,1,336000.00,NULL,NULL,1.0000,0.0000,NULL,'60V200A',1.00,0.0100,0.7500,NULL,0.0700,0.75,0.00,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(22,'Q-022-111325',67,1,NULL,'Lithionics Battery','Government & Defense','2025-11-13',NULL,NULL,12.80,840.00,'LFP 280Ah Prismatic','No',3.20,280.00,4,3,'4 S 3 P ',12,'L. Prismatic',10.752000,NULL,NULL,NULL,2000,100.00,NULL,NULL,4.0000,0.0050,NULL,'60V200A',6.00,0.1700,0.7500,NULL,0.0900,4.80,303163.39,144,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(23,'Q-023-111325',54,1,NULL,'Booz Allen Hamilton Inc','Government & Defense','2025-11-13',NULL,NULL,12.80,30.00,'LFP 26650 (6Ah)','No',3.20,6.00,4,5,'4 S 5 P ',20,'Small Cylindrical',0.384000,NULL,NULL,NULL,803,300.00,NULL,NULL,5.0000,0.0050,NULL,'60V200A',7.00,0.2300,0.5500,NULL,0.0800,4.90,5695.10,80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(24,'Q-024-111325',90,1,NULL,'Universal Solutions International','Government & Defense','2025-11-13',NULL,NULL,38.40,100.00,'LFP 32650 (50Ah)','No',3.20,50.00,12,2,'12 S 2 P ',24,'L. Cylindrical',3.840000,NULL,NULL,NULL,2000,31.25,NULL,NULL,3.0000,0.0050,NULL,'60V200A',7.00,0.0900,0.8500,NULL,0.0800,5.95,107688.96,144,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(25,'Q-025-111325',79,1,NULL,'PowerPole','Government & Defense','2025-11-13',NULL,NULL,38.40,100.00,'LFP 32650 (50Ah)','No',3.20,50.00,12,2,'12 S 2 P ',24,'L. Cylindrical',3.840000,NULL,NULL,NULL,3000,31.25,NULL,NULL,1.0000,0.0050,NULL,'60V200A',5.00,0.1100,0.8500,NULL,0.0800,4.25,121996.80,162,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(26,'Q-026-111325',65,1,NULL,'LG Electronics','Government & Defense','2025-11-13',NULL,NULL,48.00,30.00,'LFP 26650 (6Ah)','No',3.20,6.00,15,5,'15 S 5 P ',75,'Small Cylindrical',1.440000,NULL,NULL,NULL,500,80.00,NULL,NULL,4.0000,0.0050,NULL,'60V200A',5.00,0.1800,0.8500,NULL,0.0800,4.25,9171.36,36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(27,'Q-027-111325',46,1,NULL,'4 Patriots','Government & Defense','2025-11-13',NULL,NULL,48.00,54.00,'LFP 26650 (6Ah)','No',3.20,6.00,15,9,'15 S 9 P ',135,'Small Cylindrical',2.592000,NULL,NULL,NULL,6000,44.44,NULL,NULL,4.0000,0.0050,NULL,'60V200A',7.00,0.2300,0.7500,NULL,0.0900,5.60,340464.38,661,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(28,'Q-028-111325',73,1,NULL,'Nevados','Government & Defense','2025-11-13',NULL,NULL,16.00,9.60,'LFP 26650 (6Ah)','No',3.20,6.00,5,1,'5 S 1.6 P ',8,'Small Cylindrical',0.153600,NULL,NULL,NULL,40000,750.00,NULL,NULL,5.0000,0.0050,NULL,'60V200A',6.00,0.1700,0.7500,NULL,0.0900,4.80,86598.30,2822,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(29,'Q-029-111325',71,1,NULL,'MPINarada','Government & Defense','2025-11-13',NULL,NULL,48.00,560.00,'LFP 280Ah Prismatic','No',3.20,280.00,15,2,'15 S 2 P ',30,'L. Prismatic',26.880000,NULL,NULL,NULL,300,40.00,NULL,NULL,4.0000,0.0050,NULL,'400V400A',7.00,0.1500,0.8500,NULL,0.0800,5.95,142974.72,32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(30,'Q-030-111325',86,1,NULL,'Solara Power','Government & Defense','2025-11-13',NULL,NULL,25.90,400.00,'NMC 21700 (50Ah)','No',3.70,50.00,7,8,'7 S 8 P ',56,'L. Cylindrical',10.360000,NULL,NULL,NULL,3000,13.39,NULL,NULL,5.0000,0.0050,NULL,'60V200A',6.00,0.0800,0.8500,NULL,0.1000,5.28,441387.80,218,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(31,'Q-031-111325',83,1,NULL,'Siemens Energy','Government & Defense','2025-11-13',NULL,NULL,1502.20,6160.00,'NMC 280Ah Prismatic','Yes',3.70,280.00,406,22,'406 S 22 P ',8932,'L. Prismatic',9253.552000,NULL,NULL,NULL,500,0.13,NULL,NULL,1.0000,0.0000,NULL,'1500V600A',1.00,0.0100,0.7500,NULL,0.0900,0.80,4626776.00,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(32,'Q-032-111325',85,1,NULL,'Sol-Ark','Government & Defense','2025-11-13',NULL,NULL,51.80,314.00,'LFP 314Ah Prismatic','No',3.20,314.00,17,1,'17 S 1 P ',17,'L. Prismatic',17.081600,NULL,NULL,NULL,223,70.59,NULL,NULL,5.0000,0.0050,NULL,'400V400A',9.00,0.1900,0.8500,NULL,0.0800,7.65,96306.06,34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(33,'Q-033-111325',62,1,NULL,'Fortress Power','Government & Defense','2025-11-13',NULL,NULL,48.10,280.00,'NMC 280Ah Prismatic','No',3.70,280.00,13,1,'13 S 1 P ',13,'L. Prismatic',13.468000,NULL,NULL,NULL,25000,92.31,NULL,NULL,5.0000,0.0050,NULL,'400V400A',5.00,0.1200,0.8500,NULL,0.0800,4.25,3661006.44,1362,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(34,'Q-034-111325',76,1,NULL,'Our Next Energy (ONE)','Government & Defense','2025-11-13',NULL,NULL,48.00,560.00,'LFP 280Ah Prismatic','No',3.20,280.00,15,2,'15 S 2 P ',30,'L. Prismatic',26.880000,NULL,NULL,NULL,10000,40.00,NULL,NULL,5.0000,0.0050,NULL,'400V400A',5.00,0.1600,0.7500,NULL,0.0700,3.75,2670124.80,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(35,'Q-035-111325',91,1,NULL,'Vector Climate','Government & Defense','2025-11-13',NULL,NULL,14.80,20.00,'NMC 21700 (5Ah)','No',3.70,5.00,4,4,'4 S 4 P ',16,'Small Cylindrical',0.296000,NULL,NULL,NULL,1000,375.00,NULL,NULL,1.0000,0.0050,NULL,'60V200A',8.00,0.1800,0.8500,NULL,0.1000,7.04,6925.51,121,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(36,'Q-036-111325',59,1,NULL,'Enphase Energy','Government & Defense','2025-11-13',NULL,NULL,240.00,280.00,'LFP 280Ah Prismatic','No',3.20,280.00,75,1,'75 S 1 P ',75,'L. Prismatic',67.200000,NULL,NULL,NULL,10000,16.00,NULL,NULL,1.0000,0.0050,NULL,'400V400A',8.00,0.1200,0.7500,NULL,0.0900,6.40,10639843.20,796,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(37,'Q-037-111325',84,1,NULL,'Siemens Energy 2','Government & Defense','2025-11-13',NULL,NULL,400.00,560.00,'LFP 280Ah Prismatic','No',3.20,280.00,125,2,'125 S 2 P ',250,'L. Prismatic',224.000000,NULL,NULL,NULL,10000,4.80,NULL,NULL,1.0000,0.0000,NULL,'400V600A',1.00,0.0100,0.8500,NULL,0.0800,0.85,2240000.00,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(38,'Q-038-111325',81,1,NULL,'Prevalon Energy','Government & Defense','2025-11-13',NULL,NULL,800.00,3360.00,'LFP 280Ah Prismatic','Yes',3.20,280.00,250,12,'250 S 12 P ',3000,'L. Prismatic',2688.000000,NULL,NULL,NULL,13500,0.40,NULL,NULL,1.0000,0.0000,NULL,'1500V600A',1.00,0.0100,0.8500,NULL,0.1000,0.88,36288000.00,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(39,'Q-039-111325',72,1,NULL,'NeoVolta','Government & Defense','2025-11-13',NULL,NULL,48.00,560.00,'LFP 280Ah Prismatic','No',3.20,280.00,15,2,'15 S 2 P ',30,'L. Prismatic',26.880000,NULL,NULL,NULL,10000,40.00,NULL,NULL,3.0000,0.0050,NULL,'400V400A',10.00,0.1900,0.8500,NULL,0.1000,8.80,7625909.76,1424,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(40,'Q-040-111325',87,1,NULL,'Sonnen Inc','Government & Defense','2025-11-13',NULL,NULL,102.40,280.00,'LFP 280Ah Prismatic','No',3.20,280.00,32,1,'32 S 1 P ',32,'L. Prismatic',28.672000,NULL,NULL,NULL,12000,37.50,NULL,NULL,3.0000,0.0050,NULL,'400V400A',10.00,0.1100,0.8500,NULL,0.1000,8.80,6426828.80,1127,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(41,'Q-041-111325',50,1,NULL,'Bluetti','Government & Defense','2025-11-13',NULL,NULL,48.00,60.00,'LFP 26650 (6Ah)','No',3.20,6.00,15,10,'15 S 10 P ',150,'Small Cylindrical',2.880000,NULL,NULL,NULL,10000,40.00,NULL,NULL,3.0000,0.0050,NULL,'60V200A',8.00,0.1300,0.7500,NULL,0.0900,6.40,475698.24,832,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(42,'Q-042-111325',93,1,NULL,'Yotta Energy ','Government & Defense','2025-11-13',NULL,NULL,38.40,500.00,'LFP 32650 (50Ah)','No',3.20,50.00,12,10,'12 S 10 P ',120,'L. Cylindrical',19.200000,NULL,NULL,NULL,10000,6.25,NULL,NULL,5.0000,0.0050,NULL,'400V400A',8.00,0.1900,0.8500,NULL,0.1000,7.04,4696204.80,1228,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(43,'Q-043-111325',77,1,NULL,'Peppermint Robotics ','Government & Defense','2025-11-13',NULL,NULL,48.00,50.00,'LFP 32650 (50Ah)','No',3.20,50.00,15,1,'15 S 1 P ',15,'L. Cylindrical',2.400000,NULL,NULL,NULL,1000,50.00,NULL,NULL,4.0000,0.0050,NULL,'60V200A',10.00,0.2000,0.7500,NULL,0.0900,8.00,68344.80,146,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(44,'Q-044-111325',61,1,NULL,'Figure AI','Government & Defense','2025-11-13',NULL,NULL,25.90,30.00,'NMC 21700 (5Ah)','No',3.70,5.00,7,6,'7 S 6 P ',42,'Small Cylindrical',0.777000,NULL,NULL,NULL,501,142.86,NULL,NULL,4.0000,0.0050,NULL,'60V200A',10.00,0.1500,0.8500,NULL,0.1000,8.80,8954.93,62,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(45,'Q-045-111325',88,1,NULL,'Swarmbotics','Government & Defense','2025-11-13',NULL,NULL,25.90,25.00,'NMC 21700 (5Ah)','No',3.70,5.00,7,5,'7 S 5 P ',35,'Small Cylindrical',0.647500,NULL,NULL,NULL,501,171.43,NULL,NULL,4.0000,0.0050,NULL,'60V200A',9.00,0.1500,0.7500,NULL,0.0900,7.20,6460.11,55,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(46,'Q-046-111325',92,1,NULL,'Velocity Technology Solutions','Government & Defense','2025-11-13',NULL,NULL,37.00,100.00,'NMC 21700 (50Ah)','No',3.70,50.00,10,2,'10 S 2 P ',20,'L. Cylindrical',3.700000,NULL,NULL,NULL,300,37.50,NULL,NULL,5.0000,0.0050,NULL,'60V200A',8.00,0.1700,0.5500,NULL,0.0800,5.60,19395.40,32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(47,'Q-047-111325',70,1,NULL,'Mistral Inc','Government & Defense','2025-11-13',NULL,NULL,48.00,280.00,'LFP 280Ah Prismatic','No',3.20,280.00,15,1,'15 S 1 P ',15,'L. Prismatic',13.440000,NULL,NULL,NULL,250,80.00,NULL,NULL,4.0000,0.0050,NULL,'400V400A',8.00,0.1600,0.8500,NULL,0.1000,7.04,71971.20,32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(48,'Q-048-111325',56,1,NULL,'Cubic Corporation','Government & Defense','2025-11-13',NULL,NULL,25.60,60.00,'LFP 26650 (6Ah)','No',3.20,6.00,8,10,'8 S 10 P ',80,'Small Cylindrical',1.536000,NULL,NULL,NULL,500,75.00,NULL,NULL,3.0000,0.0050,NULL,'60V200A',9.00,0.2300,0.5500,NULL,0.0800,6.30,20487.17,72,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22');
/*!40000 ALTER TABLE `battery_quotes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `bill_of_materials`
--

DROP TABLE IF EXISTS `bill_of_materials`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bill_of_materials` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `product_id` int(10) unsigned NOT NULL,
  `name` varchar(255) NOT NULL,
  `version` varchar(50) DEFAULT NULL,
  `quantity_to_produce` int(11) DEFAULT 1,
  `status` enum('draft','active','inactive') DEFAULT 'draft',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `bill_of_materials_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bill_of_materials`
--

LOCK TABLES `bill_of_materials` WRITE;
/*!40000 ALTER TABLE `bill_of_materials` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `bill_of_materials` VALUES
(2,70,'16KwH Battery Assembly','1.0',1,'draft','','2025-12-04 22:06:18','2025-12-04 22:14:20','2025-12-04 22:14:20'),
(3,70,'16 KwH Battery Pack','1.0',1,'draft','','2025-12-04 22:19:21','2025-12-04 22:42:12',NULL);
/*!40000 ALTER TABLE `bill_of_materials` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `bom_items`
--

DROP TABLE IF EXISTS `bom_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bom_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `bom_id` int(10) unsigned NOT NULL,
  `component_id` int(10) unsigned NOT NULL,
  `quantity` decimal(10,4) NOT NULL,
  `unit_cost` decimal(15,2) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `bom_id` (`bom_id`),
  KEY `component_id` (`component_id`),
  CONSTRAINT `bom_items_ibfk_1` FOREIGN KEY (`bom_id`) REFERENCES `bill_of_materials` (`id`) ON DELETE CASCADE,
  CONSTRAINT `bom_items_ibfk_2` FOREIGN KEY (`component_id`) REFERENCES `products` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bom_items`
--

LOCK TABLES `bom_items` WRITE;
/*!40000 ALTER TABLE `bom_items` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `bom_items` VALUES
(1,3,71,16.0000,0.00,'2025-12-04 22:47:24','2025-12-04 22:47:24'),
(2,3,72,1.0000,0.00,'2025-12-04 22:49:36','2025-12-04 22:49:36'),
(3,3,73,1.0000,0.00,'2025-12-04 22:49:44','2025-12-04 22:49:44'),
(5,3,75,1.0000,0.00,'2025-12-04 22:49:59','2025-12-04 22:49:59'),
(6,3,74,15.0000,0.00,'2025-12-04 22:50:41','2025-12-04 22:50:41'),
(7,3,76,17.0000,0.00,'2025-12-04 22:50:52','2025-12-04 22:50:52'),
(8,3,77,1.0000,0.00,'2025-12-04 22:51:00','2025-12-04 22:51:00'),
(9,3,78,1.0000,0.00,'2025-12-04 22:51:07','2025-12-04 22:51:07'),
(10,3,79,1.0000,0.00,'2025-12-04 22:51:13','2025-12-04 22:51:13'),
(11,3,80,1.0000,0.00,'2025-12-04 22:51:19','2025-12-04 22:51:19'),
(12,3,81,1.0000,0.00,'2025-12-04 22:51:25','2025-12-04 22:51:25'),
(13,3,82,1.0000,0.00,'2025-12-04 22:51:28','2025-12-04 22:51:28'),
(14,3,83,1.0000,0.00,'2025-12-04 22:51:33','2025-12-04 22:51:33'),
(15,3,84,128.0000,0.00,'2025-12-04 22:51:46','2025-12-04 22:51:46'),
(16,3,85,1.0000,0.00,'2025-12-04 22:51:51','2025-12-04 22:51:51');
/*!40000 ALTER TABLE `bom_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `budget_lines`
--

DROP TABLE IF EXISTS `budget_lines`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `budget_lines` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `budget_id` int(10) unsigned NOT NULL,
  `line_type` enum('category','account','department','project') DEFAULT 'category',
  `category` varchar(100) DEFAULT NULL COMMENT 'Expense category',
  `gl_account_id` int(10) unsigned DEFAULT NULL COMMENT 'Link to chart of accounts',
  `department` varchar(100) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `budgeted_amount` decimal(15,2) NOT NULL,
  `period_type` enum('total','monthly','quarterly') DEFAULT 'total',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `budget_id` (`budget_id`),
  KEY `gl_account_id` (`gl_account_id`),
  CONSTRAINT `budget_lines_ibfk_1` FOREIGN KEY (`budget_id`) REFERENCES `budgets` (`id`) ON DELETE CASCADE,
  CONSTRAINT `budget_lines_ibfk_2` FOREIGN KEY (`gl_account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `budget_lines`
--

LOCK TABLES `budget_lines` WRITE;
/*!40000 ALTER TABLE `budget_lines` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `budget_lines` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `budget_periods`
--

DROP TABLE IF EXISTS `budget_periods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `budget_periods` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `budget_line_id` int(10) unsigned NOT NULL,
  `period_start` date NOT NULL,
  `period_end` date NOT NULL,
  `period_name` varchar(50) DEFAULT NULL COMMENT 'e.g., Q1 2024, January 2024',
  `budgeted_amount` decimal(15,2) NOT NULL,
  `actual_amount` decimal(15,2) DEFAULT 0.00,
  `variance` decimal(15,2) DEFAULT 0.00,
  `variance_percent` decimal(5,2) DEFAULT 0.00,
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `budget_line_id` (`budget_line_id`),
  KEY `period_start` (`period_start`),
  CONSTRAINT `budget_periods_ibfk_1` FOREIGN KEY (`budget_line_id`) REFERENCES `budget_lines` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `budget_periods`
--

LOCK TABLES `budget_periods` WRITE;
/*!40000 ALTER TABLE `budget_periods` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `budget_periods` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `budgets`
--

DROP TABLE IF EXISTS `budgets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `budgets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `budget_name` varchar(255) NOT NULL,
  `budget_type` enum('annual','quarterly','monthly','project') DEFAULT 'annual',
  `fiscal_year` int(11) NOT NULL,
  `start_date` date NOT NULL,
  `end_date` date NOT NULL,
  `total_amount` decimal(15,2) NOT NULL,
  `currency` varchar(3) DEFAULT 'USD',
  `department` varchar(100) DEFAULT NULL,
  `project_id` int(10) unsigned DEFAULT NULL,
  `description` text DEFAULT NULL,
  `status` enum('draft','active','closed','archived') DEFAULT 'draft',
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `fiscal_year` (`fiscal_year`),
  KEY `budget_type` (`budget_type`),
  KEY `status` (`status`),
  KEY `start_date` (`start_date`),
  KEY `end_date` (`end_date`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `budgets_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `budgets`
--

LOCK TABLES `budgets` WRITE;
/*!40000 ALTER TABLE `budgets` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `budgets` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `business_line_capacity_summary`
--

DROP TABLE IF EXISTS `business_line_capacity_summary`;
/*!50001 DROP VIEW IF EXISTS `business_line_capacity_summary`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `business_line_capacity_summary` AS SELECT
 1 AS `business_line_id`,
  1 AS `business_line_name`,
  1 AS `business_line_code`,
  1 AS `total_equipment_lines`,
  1 AS `total_equipment`,
  1 AS `operational_equipment`,
  1 AS `avg_utilization_rate`,
  1 AS `total_daily_capacity`,
  1 AS `available_daily_capacity` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `business_lines`
--

DROP TABLE IF EXISTS `business_lines`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `business_lines` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `location_id` int(10) unsigned NOT NULL,
  `name` varchar(100) NOT NULL,
  `code` varchar(50) NOT NULL,
  `description` text DEFAULT NULL,
  `square_footage` decimal(10,2) DEFAULT NULL,
  `status` enum('active','inactive') DEFAULT 'active',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `code` (`code`),
  KEY `location_id` (`location_id`),
  KEY `status` (`status`),
  CONSTRAINT `business_lines_ibfk_1` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Business lines or production lines within a location';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `business_lines`
--

LOCK TABLES `business_lines` WRITE;
/*!40000 ALTER TABLE `business_lines` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `business_lines` VALUES
(1,2,'Battery Pack Assembly','BPA','',NULL,'active','2025-10-27 18:25:30','2025-10-27 18:25:30'),
(2,2,'Motors and Actuators','MA','',NULL,'active','2025-10-27 19:16:04','2025-10-27 19:16:19'),
(3,2,'Fabrication and Assembly','FA','',NULL,'active','2025-10-27 19:16:37','2025-10-27 19:16:37'),
(4,2,'Mold and Injection Molding','MIM','',NULL,'active','2025-10-27 19:16:53','2025-10-27 19:16:53'),
(5,3,'Electronics and SMT','ESMT','',NULL,'active','2025-10-27 19:17:16','2025-12-05 10:53:46'),
(6,2,'Research and Desgin','RND','',NULL,'active','2025-12-05 10:54:35','2025-12-05 10:54:44');
/*!40000 ALTER TABLE `business_lines` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `calendar_events`
--

DROP TABLE IF EXISTS `calendar_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `calendar_events` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `event_type` enum('custom','quote','invoice','sales_order','work_order','project','hr_event','meeting','deadline','other') NOT NULL DEFAULT 'custom',
  `start_date` datetime NOT NULL,
  `end_date` datetime DEFAULT NULL,
  `all_day` tinyint(1) DEFAULT 0,
  `color` varchar(20) DEFAULT '#0cd096',
  `location` varchar(255) DEFAULT NULL,
  `event_url` varchar(500) DEFAULT NULL COMMENT 'Optional URL link for event (Zoom, docs, etc.)',
  `entity_type` varchar(50) DEFAULT NULL,
  `entity_id` int(11) DEFAULT NULL,
  `is_public` tinyint(1) DEFAULT 1 COMMENT '1 = visible to all users, 0 = private',
  `created_by` int(11) NOT NULL,
  `assigned_to` int(11) DEFAULT NULL COMMENT 'If event is assigned to specific user',
  `attendees` text DEFAULT NULL COMMENT 'JSON array of user IDs',
  `is_recurring` tinyint(1) DEFAULT 0,
  `recurrence_rule` varchar(255) DEFAULT NULL COMMENT 'RRULE format for recurring events',
  `status` enum('scheduled','completed','cancelled') DEFAULT 'scheduled',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `notified_at` datetime DEFAULT NULL COMMENT 'When notification was sent',
  `send_reminder` tinyint(1) DEFAULT 0 COMMENT 'Whether to send email reminders',
  `reminder_minutes` int(11) DEFAULT 15 COMMENT 'Minutes before event to send reminder',
  PRIMARY KEY (`id`),
  KEY `idx_start_date` (`start_date`),
  KEY `idx_end_date` (`end_date`),
  KEY `idx_created_by` (`created_by`),
  KEY `idx_assigned_to` (`assigned_to`),
  KEY `idx_entity` (`entity_type`,`entity_id`),
  KEY `idx_event_type` (`event_type`),
  KEY `idx_status` (`status`),
  KEY `idx_calendar_events_notification` (`start_date`,`status`,`all_day`,`notified_at`)
) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `calendar_events`
--

LOCK TABLES `calendar_events` WRITE;
/*!40000 ALTER TABLE `calendar_events` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `calendar_events` VALUES
(3,'Holiday - Company Closed','Office closed','other','2025-11-27 00:00:00','2025-11-27 00:00:00',1,'#1ABD36',NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,'scheduled','2025-11-13 23:20:04','2025-11-13 23:20:04',NULL,0,15),
(4,'Test5','','custom','2025-11-27 16:00:00','2025-11-27 16:30:00',0,'#0cd096','','',NULL,NULL,1,1,NULL,'@Rick M ',0,NULL,'scheduled','2025-11-14 00:30:27','2025-11-27 20:53:26','2025-11-27 15:50:00',1,15),
(14,'Test',NULL,'custom','2025-11-27 16:00:00','2025-11-27 16:30:00',0,'#0cd096',NULL,NULL,NULL,NULL,1,1,NULL,'@Rick M',0,NULL,'scheduled','2025-11-27 20:45:43','2025-11-27 20:50:02','2025-11-27 15:50:00',1,15),
(15,'Test6',NULL,'custom','2025-11-27 16:00:00','2025-11-27 16:30:00',0,'#0cd096',NULL,NULL,NULL,NULL,1,1,NULL,'@Rick M ',0,NULL,'scheduled','2025-11-27 20:53:37','2025-11-27 20:53:37',NULL,1,15),
(16,'Test6',NULL,'custom','2025-11-27 16:00:00','2025-11-27 16:30:00',0,'#0cd096',NULL,NULL,NULL,NULL,1,1,NULL,'@Rick M ',0,NULL,'scheduled','2025-11-27 20:53:40','2025-11-27 20:53:40',NULL,1,15),
(17,'Test6',NULL,'custom','2025-11-27 16:00:00','2025-11-27 16:30:00',0,'#0cd096',NULL,NULL,NULL,NULL,1,1,NULL,'@Rick M ',0,NULL,'scheduled','2025-11-27 20:53:46','2025-11-27 20:53:46',NULL,1,15),
(18,'Test6',NULL,'custom','2025-11-27 16:00:00','2025-11-27 16:30:00',0,'#0cd096',NULL,NULL,NULL,NULL,0,1,NULL,'@Rick M ',0,NULL,'scheduled','2025-11-27 20:53:49','2025-11-27 20:53:49',NULL,1,15),
(21,'ricks mtg','test','custom','2025-11-27 16:00:00','2025-11-27 16:30:00',0,'#0cd096',NULL,NULL,NULL,NULL,1,1,NULL,'@Rick M ',0,NULL,'scheduled','2025-11-27 20:57:42','2025-11-27 20:57:42',NULL,1,15),
(22,'test7',NULL,'custom','2025-11-27 16:00:00','2025-11-27 16:30:00',0,'#0cd096',NULL,NULL,NULL,NULL,1,1,NULL,'@Rick M ',0,NULL,'scheduled','2025-11-27 20:58:28','2025-11-27 20:58:28',NULL,1,15),
(23,'test7',NULL,'custom','2025-11-27 16:00:00','2025-11-27 16:30:00',0,'#0cd096',NULL,NULL,NULL,NULL,1,1,NULL,'@Rick M ',0,NULL,'scheduled','2025-11-27 20:59:40','2025-11-27 20:59:40',NULL,1,15),
(24,'test',NULL,'custom','2025-11-27 17:00:00','2025-11-27 17:30:00',0,'#0cd096',NULL,NULL,NULL,NULL,1,1,NULL,'@Rick M ',0,NULL,'scheduled','2025-11-27 21:00:33','2025-11-27 21:10:00','2025-11-27 16:10:00',0,15),
(26,'test',NULL,'custom','2025-11-27 17:00:00','2025-11-27 17:30:00',0,'#0cd096',NULL,NULL,NULL,NULL,1,1,NULL,'@Rick M ',0,NULL,'scheduled','2025-11-27 21:02:07','2025-11-27 21:10:00','2025-11-27 16:10:00',1,15),
(27,'tester',NULL,'custom','2025-11-27 17:00:00','2025-11-27 17:30:00',0,'#0cd096',NULL,NULL,NULL,NULL,1,1,NULL,'@Rick M ',0,NULL,'scheduled','2025-11-27 21:03:26','2025-11-27 21:10:02','2025-11-27 16:10:00',1,15),
(28,'tester',NULL,'custom','2025-11-27 17:00:00','2025-11-27 17:30:00',0,'#0cd096',NULL,NULL,NULL,NULL,1,1,NULL,'@Rick M ',0,NULL,'scheduled','2025-11-27 21:04:36','2025-11-27 21:10:03','2025-11-27 16:10:00',1,15),
(31,'Demo','','custom','2025-12-04 19:00:00','2025-12-04 19:30:00',0,'#0cd096','','',NULL,NULL,1,1,NULL,'@Rick M @Admin User ',0,NULL,'scheduled','2025-12-04 18:07:27','2025-12-04 23:00:01','2025-12-04 18:00:01',1,15),
(32,'Rick Mtg',NULL,'meeting','2025-12-10 17:00:00','2025-12-10 17:30:00',0,'#FF9500',NULL,NULL,NULL,NULL,1,1,NULL,'@Rick M @all-staff @Admin User ',0,NULL,'scheduled','2025-12-04 23:15:38','2025-12-10 21:01:14','2025-12-10 16:01:14',1,15);
/*!40000 ALTER TABLE `calendar_events` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `camera_audit_annotations`
--

DROP TABLE IF EXISTS `camera_audit_annotations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `camera_audit_annotations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `camera_audit_log_id` bigint(20) unsigned NOT NULL,
  `annotation_type` enum('note','issue','highlight','measurement','count') NOT NULL,
  `annotation_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT 'Coordinates, text, measurements, etc.' CHECK (json_valid(`annotation_data`)),
  `description` text DEFAULT NULL,
  `created_by` int(10) unsigned NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_audit_log` (`camera_audit_log_id`),
  KEY `idx_type` (`annotation_type`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `camera_audit_annotations_ibfk_1` FOREIGN KEY (`camera_audit_log_id`) REFERENCES `camera_audit_logs` (`id`) ON DELETE CASCADE,
  CONSTRAINT `camera_audit_annotations_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `camera_audit_annotations`
--

LOCK TABLES `camera_audit_annotations` WRITE;
/*!40000 ALTER TABLE `camera_audit_annotations` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `camera_audit_annotations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `camera_audit_events`
--

DROP TABLE IF EXISTS `camera_audit_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `camera_audit_events` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `camera_audit_log_id` bigint(20) unsigned NOT NULL,
  `event_type` varchar(100) NOT NULL COMMENT 'anomaly_detected, quality_issue, unauthorized_access, damage_found, etc.',
  `severity` enum('info','warning','critical') NOT NULL DEFAULT 'info',
  `event_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Detailed event information' CHECK (json_valid(`event_data`)),
  `is_resolved` tinyint(1) NOT NULL DEFAULT 0,
  `resolved_by` int(10) unsigned DEFAULT NULL,
  `resolved_at` datetime DEFAULT NULL,
  `resolution_notes` text DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_audit_log` (`camera_audit_log_id`),
  KEY `idx_event_type` (`event_type`),
  KEY `idx_severity` (`severity`),
  KEY `idx_resolved` (`is_resolved`),
  KEY `resolved_by` (`resolved_by`),
  CONSTRAINT `camera_audit_events_ibfk_1` FOREIGN KEY (`camera_audit_log_id`) REFERENCES `camera_audit_logs` (`id`) ON DELETE CASCADE,
  CONSTRAINT `camera_audit_events_ibfk_2` FOREIGN KEY (`resolved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `camera_audit_events`
--

LOCK TABLES `camera_audit_events` WRITE;
/*!40000 ALTER TABLE `camera_audit_events` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `camera_audit_events` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `camera_audit_logs`
--

DROP TABLE IF EXISTS `camera_audit_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `camera_audit_logs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `camera_station_id` int(10) unsigned NOT NULL,
  `activity_type` varchar(100) NOT NULL COMMENT 'stock_movement, receiving, picking, cycle_count, inspection, loading, unloading, etc.',
  `activity_subtype` varchar(100) DEFAULT NULL COMMENT 'Additional classification',
  `reference_type` varchar(100) DEFAULT NULL COMMENT 'Entity type: stock_movement, work_order, purchase_order, sales_order, etc.',
  `reference_id` int(10) unsigned DEFAULT NULL COMMENT 'ID of related entity',
  `location_id` int(10) unsigned DEFAULT NULL COMMENT 'Location where activity occurred',
  `machine_id` int(10) unsigned DEFAULT NULL COMMENT 'Machine/equipment involved',
  `zone` varchar(100) DEFAULT NULL COMMENT 'Specific zone/area within location',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product being handled',
  `lot_number` varchar(100) DEFAULT NULL COMMENT 'Lot/batch number if applicable',
  `serial_number` varchar(100) DEFAULT NULL COMMENT 'Serial number if applicable',
  `quantity` decimal(15,3) DEFAULT NULL COMMENT 'Quantity involved in activity',
  `user_id` int(10) unsigned DEFAULT NULL COMMENT 'User performing the activity',
  `operator_badge` varchar(50) DEFAULT NULL COMMENT 'Operator badge/ID if different from user',
  `image_path` varchar(500) NOT NULL COMMENT 'Relative path to stored image',
  `image_filename` varchar(255) NOT NULL,
  `image_size_bytes` int(10) unsigned DEFAULT NULL COMMENT 'File size in bytes',
  `image_format` varchar(20) DEFAULT NULL COMMENT 'jpg, png, etc.',
  `thumbnail_path` varchar(500) DEFAULT NULL COMMENT 'Path to thumbnail if generated',
  `captured_at` datetime NOT NULL COMMENT 'Actual timestamp when image was captured',
  `capture_mode` enum('manual','automatic','triggered','scheduled') NOT NULL DEFAULT 'manual',
  `trigger_event` varchar(100) DEFAULT NULL COMMENT 'What triggered the capture (barcode_scan, button_press, motion, timer, etc.)',
  `has_analysis` tinyint(1) NOT NULL DEFAULT 0,
  `analysis_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Object detection, OCR results, anomalies detected, etc.' CHECK (json_valid(`analysis_data`)),
  `confidence_score` decimal(5,4) DEFAULT NULL COMMENT 'AI confidence score if analyzed',
  `image_quality` enum('excellent','good','acceptable','poor') DEFAULT NULL,
  `is_verified` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Has been reviewed/verified by user',
  `verified_by` int(10) unsigned DEFAULT NULL,
  `verified_at` datetime DEFAULT NULL,
  `notes` text DEFAULT NULL COMMENT 'User notes or additional context',
  `metadata` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Additional flexible metadata' CHECK (json_valid(`metadata`)),
  `tags` varchar(500) DEFAULT NULL COMMENT 'Comma-separated searchable tags',
  `ip_address` varchar(45) DEFAULT NULL COMMENT 'IP of device that initiated capture',
  `device_info` varchar(255) DEFAULT NULL COMMENT 'Device/browser info',
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_camera_station` (`camera_station_id`),
  KEY `idx_activity_type` (`activity_type`),
  KEY `idx_reference` (`reference_type`,`reference_id`),
  KEY `idx_location` (`location_id`),
  KEY `idx_machine` (`machine_id`),
  KEY `idx_product` (`product_id`),
  KEY `idx_user` (`user_id`),
  KEY `idx_captured_at` (`captured_at`),
  KEY `idx_capture_mode` (`capture_mode`),
  KEY `idx_lot_number` (`lot_number`),
  KEY `idx_serial_number` (`serial_number`),
  KEY `idx_verified` (`is_verified`),
  KEY `idx_has_analysis` (`has_analysis`),
  KEY `verified_by` (`verified_by`),
  CONSTRAINT `camera_audit_logs_ibfk_1` FOREIGN KEY (`camera_station_id`) REFERENCES `camera_stations` (`id`) ON DELETE CASCADE,
  CONSTRAINT `camera_audit_logs_ibfk_2` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE SET NULL,
  CONSTRAINT `camera_audit_logs_ibfk_3` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE SET NULL,
  CONSTRAINT `camera_audit_logs_ibfk_4` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `camera_audit_logs_ibfk_5` FOREIGN KEY (`verified_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `camera_audit_logs`
--

LOCK TABLES `camera_audit_logs` WRITE;
/*!40000 ALTER TABLE `camera_audit_logs` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `camera_audit_logs` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `camera_stations`
--

DROP TABLE IF EXISTS `camera_stations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `camera_stations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `station_code` varchar(50) NOT NULL COMMENT 'Unique identifier for camera station',
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `location_id` int(10) unsigned DEFAULT NULL COMMENT 'Physical location where camera is installed',
  `machine_id` int(10) unsigned DEFAULT NULL COMMENT 'Equipment/machine this camera monitors',
  `camera_type` enum('fixed','mobile','handheld','drone','automated') NOT NULL DEFAULT 'fixed',
  `resolution` varchar(20) DEFAULT NULL COMMENT 'e.g. 1920x1080, 4K',
  `field_of_view` varchar(100) DEFAULT NULL COMMENT 'Description of what camera captures',
  `ip_address` varchar(45) DEFAULT NULL COMMENT 'Camera IP for network cameras',
  `api_endpoint` varchar(255) DEFAULT NULL COMMENT 'API endpoint for automated capture',
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `last_capture_at` datetime DEFAULT NULL COMMENT 'Timestamp of last image capture',
  `capture_count` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Total images captured',
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `auto_capture_enabled` tinyint(1) DEFAULT 0 COMMENT 'Enable automatic captures',
  `capture_interval_minutes` int(11) DEFAULT 15 COMMENT 'Capture interval in minutes',
  `capture_start_time` time DEFAULT '00:00:00' COMMENT 'Start capturing at this time',
  `capture_end_time` time DEFAULT '23:59:59' COMMENT 'Stop capturing at this time',
  `auto_activity_type` varchar(100) DEFAULT 'automated_surveillance' COMMENT 'Activity type for auto captures',
  PRIMARY KEY (`id`),
  UNIQUE KEY `station_code` (`station_code`),
  KEY `idx_location` (`location_id`),
  KEY `idx_machine` (`machine_id`),
  KEY `idx_active` (`is_active`),
  KEY `idx_station_code` (`station_code`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `camera_stations_ibfk_1` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE SET NULL,
  CONSTRAINT `camera_stations_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `camera_stations`
--

LOCK TABLES `camera_stations` WRITE;
/*!40000 ALTER TABLE `camera_stations` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `camera_stations` VALUES
(1,'Dock-Cam-001','Loading Dock A ','Loading Dock cam ',2,NULL,'fixed','1920x1080','full view','192.168.1.100',NULL,1,NULL,0,1,'2025-11-13 16:29:17','2025-11-13 16:36:05',0,15,'00:00:00','23:59:59','automated_surveillance');
/*!40000 ALTER TABLE `camera_stations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `category_forecast_summary`
--

DROP TABLE IF EXISTS `category_forecast_summary`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `category_forecast_summary` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `assumption_set_id` int(11) NOT NULL,
  `category_id` int(10) unsigned NOT NULL,
  `projection_date` date NOT NULL,
  `period_type` enum('monthly','quarterly','annual') DEFAULT 'monthly',
  `total_units` decimal(15,2) NOT NULL DEFAULT 0.00,
  `total_revenue` decimal(15,2) NOT NULL DEFAULT 0.00,
  `total_cogs` decimal(15,2) NOT NULL DEFAULT 0.00,
  `gross_profit` decimal(15,2) NOT NULL DEFAULT 0.00,
  `gross_margin_pct` decimal(5,2) NOT NULL DEFAULT 0.00,
  `product_count` int(11) NOT NULL DEFAULT 0 COMMENT 'Number of products in this category',
  `generated_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `uk_set_cat_date` (`assumption_set_id`,`category_id`,`projection_date`,`period_type`),
  KEY `idx_set` (`assumption_set_id`),
  KEY `idx_category` (`category_id`),
  KEY `idx_date` (`projection_date`),
  CONSTRAINT `category_forecast_summary_ibfk_1` FOREIGN KEY (`assumption_set_id`) REFERENCES `forecast_assumption_sets` (`id`) ON DELETE CASCADE,
  CONSTRAINT `category_forecast_summary_ibfk_2` FOREIGN KEY (`category_id`) REFERENCES `product_categories` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `category_forecast_summary`
--

LOCK TABLES `category_forecast_summary` WRITE;
/*!40000 ALTER TABLE `category_forecast_summary` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `category_forecast_summary` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `certificates_of_analysis`
--

DROP TABLE IF EXISTS `certificates_of_analysis`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `certificates_of_analysis` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `certificate_number` varchar(50) NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `batch_number` varchar(100) DEFAULT NULL,
  `inspection_id` int(10) unsigned DEFAULT NULL,
  `manufacturing_date` date DEFAULT NULL,
  `expiry_date` date DEFAULT NULL,
  `test_results` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`test_results`)),
  `specifications_met` tinyint(1) DEFAULT 1,
  `issued_by` int(10) unsigned NOT NULL,
  `issued_at` datetime DEFAULT current_timestamp(),
  `pdf_path` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `certificate_number` (`certificate_number`),
  KEY `idx_product` (`product_id`),
  KEY `idx_batch` (`batch_number`),
  KEY `inspection_id` (`inspection_id`),
  KEY `issued_by` (`issued_by`),
  CONSTRAINT `certificates_of_analysis_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE,
  CONSTRAINT `certificates_of_analysis_ibfk_2` FOREIGN KEY (`inspection_id`) REFERENCES `quality_inspections` (`id`) ON DELETE SET NULL,
  CONSTRAINT `certificates_of_analysis_ibfk_3` FOREIGN KEY (`issued_by`) REFERENCES `users` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `certificates_of_analysis`
--

LOCK TABLES `certificates_of_analysis` WRITE;
/*!40000 ALTER TABLE `certificates_of_analysis` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `certificates_of_analysis` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `channel_members`
--

DROP TABLE IF EXISTS `channel_members`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `channel_members` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `channel_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `role` enum('member','admin') DEFAULT 'member',
  `last_read_at` timestamp NULL DEFAULT NULL,
  `joined_at` timestamp NULL DEFAULT current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `channel_user` (`channel_id`,`user_id`),
  KEY `idx_user_id` (`user_id`),
  CONSTRAINT `channel_members_ibfk_1` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE,
  CONSTRAINT `channel_members_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `channel_members`
--

LOCK TABLES `channel_members` WRITE;
/*!40000 ALTER TABLE `channel_members` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `channel_members` VALUES
(1,1,1,'member','2025-12-05 17:45:05','2025-10-26 20:16:06','2025-11-11 00:36:43','2025-12-05 17:45:05'),
(2,1,2,'member',NULL,'2025-10-26 20:16:06','2025-11-11 00:36:43','2025-11-11 00:36:43'),
(14,1,13,'member',NULL,'2025-10-27 15:26:38','2025-11-11 00:36:43','2025-11-11 00:36:43'),
(15,1,14,'member',NULL,'2025-10-27 21:16:37','2025-11-11 00:36:43','2025-11-11 00:36:43'),
(16,1,15,'member','2025-10-28 16:28:49','2025-10-27 22:51:32','2025-11-11 00:36:43','2025-11-11 00:36:43'),
(17,1,16,'member','2025-10-29 01:55:16','2025-10-29 01:35:17','2025-11-11 00:36:43','2025-11-11 00:36:43'),
(18,1,17,'member','2025-10-30 19:31:21','2025-10-30 00:21:16','2025-11-11 00:36:43','2025-11-11 00:36:43'),
(19,1,18,'member','2025-11-11 11:57:19','2025-10-30 00:21:59','2025-11-11 00:36:43','2025-11-11 11:57:19'),
(20,1,19,'member',NULL,'2025-10-30 00:23:05','2025-11-11 00:36:43','2025-11-11 00:36:43'),
(24,7,1,'admin','2025-12-04 23:22:54','2025-10-31 17:27:40','2025-11-11 00:36:43','2025-12-04 23:22:54'),
(26,1,7,'member','2025-11-24 18:21:48','2025-11-14 21:00:43','2025-11-14 21:00:43','2025-11-24 18:21:49'),
(27,1,8,'member','2025-11-14 22:16:08','2025-11-14 21:01:16','2025-11-14 21:01:16','2025-11-14 22:16:08'),
(28,1,21,'member','2025-11-29 14:08:22','2025-11-15 23:53:17','2025-11-15 23:53:17','2025-11-29 14:08:22'),
(29,7,3,'member',NULL,'2025-11-19 18:24:46','2025-11-19 18:24:46','2025-11-19 18:24:46'),
(30,7,5,'member',NULL,'2025-12-04 13:34:44','2025-12-04 13:34:44','2025-12-04 13:34:44');
/*!40000 ALTER TABLE `channel_members` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `channels`
--

DROP TABLE IF EXISTS `channels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `channels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `type` enum('channel','direct') DEFAULT 'channel',
  `is_private` tinyint(4) DEFAULT 0,
  `created_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_type` (`type`),
  KEY `idx_created_by` (`created_by`),
  CONSTRAINT `channels_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `channels`
--

LOCK TABLES `channels` WRITE;
/*!40000 ALTER TABLE `channels` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `channels` VALUES
(1,'general','General discussion for everyone','channel',0,1,'2025-10-26 20:13:47','2025-10-26 20:13:47'),
(7,'test','','channel',0,1,'2025-10-31 17:27:40','2025-10-31 17:27:40');
/*!40000 ALTER TABLE `channels` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `chart_of_accounts`
--

DROP TABLE IF EXISTS `chart_of_accounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `chart_of_accounts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_code` varchar(50) NOT NULL,
  `account_name` varchar(200) NOT NULL,
  `account_type` enum('asset','liability','equity','revenue','expense') NOT NULL,
  `parent_id` int(10) unsigned DEFAULT NULL,
  `description` text DEFAULT NULL,
  `status` enum('active','inactive') DEFAULT 'active',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `account_code` (`account_code`),
  KEY `parent_id` (`parent_id`),
  CONSTRAINT `chart_of_accounts_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=69 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `chart_of_accounts`
--

LOCK TABLES `chart_of_accounts` WRITE;
/*!40000 ALTER TABLE `chart_of_accounts` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `chart_of_accounts` VALUES
(1,'1000','Assets','asset',NULL,'Main asset account','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(2,'1010','Business Checking Preferred #3083','asset',NULL,'Deleted prior checking account.','inactive','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(3,'1011','PNC Checking #8804','asset',NULL,'Old PNC checking account, now inactive.','inactive','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(4,'1012','PNC Checking #8812','asset',NULL,'Old PNC checking account, now inactive.','inactive','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(5,'1020','Business Checking Preferred #3091','asset',NULL,'Deleted prior checking account.','inactive','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(6,'1030','Chase Bank #2560','asset',NULL,'Active Chase Bank account for operations.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(7,'1040','Chase Wire #7932','asset',NULL,'Chase account used for wire transfers.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(8,'1200','Accounts Receivable','asset',NULL,'Outstanding invoices owed to the company.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(9,'1350','Inventory','asset',NULL,'Value of goods held for sale.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(10,'1360','Inventory Asset','asset',NULL,'Capitalized inventory value as an asset.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(11,'1370','Loan to Shareholder','asset',NULL,'Loan previously issued to shareholder (inactive).','inactive','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(12,'1390','Security Deposit','asset',NULL,'Deposits held with landlords or vendors.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(13,'1400','Uncategorized Asset','asset',NULL,'Assets not yet categorized properly.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(14,'1410','Undeposited Funds','asset',NULL,'Checks or payments received but not yet deposited.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(15,'1500','Furniture and Equipment','asset',NULL,'Office furniture and equipment assets.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(16,'1580','Accumulated Depreciation','asset',NULL,'Total depreciation on fixed assets.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(17,'1640','Vehicles','asset',NULL,'Company-owned vehicles.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(18,'1641','Escalade 2023','asset',NULL,'Vehicle asset—Cadillac Escalade (2023).','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(19,'1642','Escalade 2025','asset',NULL,'Vehicle asset—Cadillac Escalade (2025).','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(20,'1643','Golf Cart','asset',NULL,'Company-owned golf cart asset.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(21,'1700','Fixed Asset Computers','asset',NULL,'Company-owned computer equipment.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(22,'1800','LBC Boats','asset',NULL,'Company boats or marine assets.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(23,'1900','Leashold Improvements','asset',NULL,'Improvements to leased property.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(24,'1950','Projector','asset',NULL,'Audio/visual equipment asset.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(25,'1970','Plant Machinery & Equipment','asset',NULL,'Manufacturing machinery and tools.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(26,'2000','Accounts Payable (A/P)','liability',NULL,'Outstanding bills owed to vendors.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(27,'2010','American Express #4007','liability',NULL,'Active American Express business card.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(28,'2020','American Express #2005','liability',NULL,'Alternate American Express business card.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(29,'2030','American Express #2008/#3006/#4004 Nathan Staron','liability',NULL,'Deleted AMEX card accounts.','inactive','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(30,'2040','American Express #1018 Ronald Staron','liability',NULL,'Deleted AMEX card account.','inactive','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(31,'2100','Payroll Liabilities with sub-accounts','liability',NULL,'Group account for payroll-related liabilities.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(32,'2110','Federal Taxes #941/#944','liability',NULL,'Employer federal payroll taxes payable.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(33,'2120','Federal Unemployment #940','liability',NULL,'Federal unemployment tax payable.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(34,'2130','Florida Unemployment Tax','liability',NULL,'Florida unemployment tax payable.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(35,'2140','Pennsylvania Income Tax','liability',NULL,'Pennsylvania state withholding payable.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(36,'2170','Quickbooks Tax Holding Account','liability',NULL,'Holding account for payroll or sales tax before remittance.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(37,'2210','Direct Deposit Payable ','liability',NULL,'Funds pending direct deposit for payroll.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(38,'2220','FBI Loan','liability',NULL,'Deleted loan record.','inactive','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(39,'2230','General Dynamics Loan','liability',NULL,'Deleted loan record.','inactive','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(40,'2240','Loan from Father','liability',NULL,'Deleted personal loan record.','inactive','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(41,'2250','Loan Payable','liability',NULL,'Deleted general loan payable.','inactive','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(42,'2260','Out of Scope Agency Payable','liability',NULL,'Payable account for external agency obligations.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(43,'2270','Sales Tax Payable','liability',NULL,'Sales tax collected but not yet remitted.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(44,'2280','EIDL Loan','liability',NULL,'SBA Economic Injury Disaster Loan.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(45,'2290','Staron Inventory Loan','liability',NULL,'Inventory financing loan.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(46,'2310','Shareholder Loan','liability',NULL,'Funds borrowed from a shareholder.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(47,'2320','N/P Jeep Cherokee 2023','liability',NULL,'Note payable on Jeep Cherokee 2023.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(48,'2321','Escalade 2023','liability',NULL,'Note payable on Escalade 2023.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(49,'2322','Escalade 2025','liability',NULL,'Note payable on Escalade 2025.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(50,'2323','Golf Cart','liability',NULL,'Note payable on company golf cart.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(51,'2330','Note Payable - 2023 Cadillac','liability',NULL,'Note payable on Cadillac 2023.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(52,'2340','Note Payable - Shopify Capital','liability',NULL,'Deleted Shopify financing note.','inactive','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(53,'2350','Notes Payable - Cadillac ','liability',NULL,'Deleted vehicle loan.','inactive','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(54,'2360','Loan','liability',NULL,'Generic loan payable.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(55,'2365','Climate First Bank - SBA Loan','liability',NULL,'SBA-backed loan through Climate First Bank.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(56,'2470','Customer Deposits','liability',NULL,'Advance payments from customers.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(57,'2500','Capital Stock','liability',NULL,'Issued shares of company stock.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(58,'2510','Shareholder Distributions','liability',NULL,'Payments made to shareholders.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(59,'2520','Opening Balance Equity','liability',NULL,'Balancing account used when setting up books.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(60,'2530','Owner\'s Drawing','liability',NULL,'Withdrawals by the owner.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(61,'2540','Owner\'s Investment','liability',NULL,'Capital contributions by the owner.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(62,'2550','Retained Earnings','liability',NULL,'Cumulative retained profits.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(63,'2560','Shareholder - Nathan Staron','liability',NULL,'Shareholder equity—Nathon Staron.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(64,'2570','Shareholder - Jarrett Brownfield','liability',NULL,'Shareholder equity—JB.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(65,'3000','Equity','equity',NULL,'Owner’s equity representing ownership in the company.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(66,'3500','Retained Earnings','equity',NULL,'Cumulative profits retained in the business.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(67,'3900','Net Income','equity',NULL,'Profit or loss for the accounting period.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(68,'4440','Climate First Bank - Business Checking','equity',NULL,'Primary business checking account used for company transactions.','active','2025-11-11 23:27:26','2025-11-11 23:27:26');
/*!40000 ALTER TABLE `chart_of_accounts` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `chart_of_accounts_backup_20250111`
--

DROP TABLE IF EXISTS `chart_of_accounts_backup_20250111`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `chart_of_accounts_backup_20250111` (
  `id` int(10) unsigned NOT NULL DEFAULT 0,
  `account_code` varchar(50) NOT NULL,
  `account_name` varchar(200) NOT NULL,
  `account_type` enum('asset','liability','equity','revenue','expense') NOT NULL,
  `parent_id` int(10) unsigned DEFAULT NULL,
  `description` text DEFAULT NULL,
  `status` enum('active','inactive') DEFAULT 'active',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `chart_of_accounts_backup_20250111`
--

LOCK TABLES `chart_of_accounts_backup_20250111` WRITE;
/*!40000 ALTER TABLE `chart_of_accounts_backup_20250111` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `chart_of_accounts_backup_20250111` VALUES
(2,'1100','Cash & Bank','asset',NULL,'Main cash and bank account','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(3,'1110','Cash','asset',NULL,'Cash on hand and in bank','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(4,'1120','Accounts Receivable','asset',NULL,'Money owed by customers','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(5,'1130','Inventory','asset',NULL,'Products in stock','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(6,'2000','Accounts Payable','liability',NULL,'Supplier bills outstanding - amounts we owe','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(7,'2100','Sales Tax Payable','liability',NULL,'Taxes collected from customers to be remitted','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(8,'2110','Accounts Payable','liability',NULL,'Money owed to suppliers','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(9,'2120','Salaries Payable','liability',NULL,'Unpaid employee salaries','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(10,'3000','Owner\'s Equity','equity',NULL,'Owner\'s capital investment','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(11,'3100','Retained Earnings','equity',NULL,'Accumulated profits retained in business','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(12,'4000','Sales Revenue','revenue',NULL,'Product and service sales income','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(13,'4100','Service Revenue','revenue',NULL,'Income from services provided','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(14,'4200','Other Income','revenue',NULL,'Miscellaneous income','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(15,'5000','Cost of Goods Sold','expense',NULL,'Direct costs of products sold','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(16,'5100','Purchase Discounts','expense',NULL,'Discounts received on purchases (contra-expense)','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(17,'5200','Freight & Shipping In','expense',NULL,'Shipping costs for inventory purchases','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(18,'5210','Salaries Expense','expense',NULL,'Employee compensation','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(19,'5220','Rent Expense','expense',NULL,'Facility rental costs','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(20,'5230','Utilities Expense','expense',NULL,'Utility bills','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(21,'1200','Accounts Receivable','asset',NULL,'Customer invoices outstanding - amounts owed to us','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(22,'1300','Inventory','asset',NULL,'Product inventory on hand','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(23,'1400','Prepaid Expenses','asset',NULL,'Expenses paid in advance','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(24,'1500','Fixed Assets','asset',NULL,'Property, plant, and equipment','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(25,'1600','Accumulated Depreciation','asset',NULL,'Contra-asset: Accumulated depreciation on fixed assets','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(26,'2200','Payroll Liabilities','liability',NULL,'Employee wages and payroll taxes payable','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(27,'2300','Loans Payable','liability',NULL,'Business loans and notes payable','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(28,'2400','Accrued Expenses','liability',NULL,'Expenses incurred but not yet paid','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(29,'3200','Dividends','equity',NULL,'Distributions to owners/shareholders','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(30,'4300','Interest Income','revenue',NULL,'Interest earned on investments','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(31,'5500','Salaries & Wages','expense',NULL,'Employee compensation','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(32,'5600','Rent Expense','expense',NULL,'Facility rental costs','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(33,'5700','Utilities','expense',NULL,'Electricity, water, gas, internet','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(34,'5800','Insurance Expense','expense',NULL,'Business insurance premiums','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(35,'5900','Office Supplies','expense',NULL,'General office supplies and materials','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(36,'6000','Marketing & Advertising','expense',NULL,'Marketing and advertising costs','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(37,'6100','Professional Fees','expense',NULL,'Legal, accounting, consulting fees','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(38,'6200','Depreciation Expense','expense',NULL,'Depreciation of fixed assets','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(39,'6300','Interest Expense','expense',NULL,'Interest paid on loans and debt','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(40,'6400','Bad Debt Expense','expense',NULL,'Uncollectible customer receivables','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(41,'6500','Repairs & Maintenance','expense',NULL,'Equipment and facility maintenance','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(42,'6600','Travel & Entertainment','expense',NULL,'Business travel and client entertainment','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(43,'6700','Miscellaneous Expense','expense',NULL,'Other operating expenses','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(92,'1111','Cash - Operating Account','asset',3,'Main checking account','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(93,'1112','Cash - Payroll Account','asset',3,'Payroll checking','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(94,'1113','Cash - Savings Account','asset',3,'Business savings','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(95,'1114','Petty Cash','asset',3,'Cash on hand','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(96,'1140','Prepaid Expenses','asset',2,'Expenses paid in advance','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(97,'1141','Prepaid Insurance','asset',10,'Insurance paid in advance','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(98,'1142','Prepaid Rent','asset',10,'Rent paid in advance','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(99,'1210','Property','asset',13,'Real estate','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(100,'1211','Land','asset',14,'Property land','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(101,'1212','Buildings','asset',14,'Building structures','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(102,'1220','Equipment','asset',13,'Machinery and equipment','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(103,'1221','Manufacturing Equipment','asset',17,'Production machinery','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(104,'1222','Office Equipment','asset',17,'Computers, printers, etc','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(105,'1223','Vehicles','asset',17,'Company vehicles','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(106,'1230','Accumulated Depreciation','asset',13,'Cumulative depreciation (contra)','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(107,'1231','Accum Depr - Buildings','asset',21,'Building depreciation','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(108,'1232','Accum Depr - Equipment','asset',21,'Equipment depreciation','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(109,'1233','Accum Depr - Vehicles','asset',21,'Vehicle depreciation','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(110,'2130','Payroll Liabilities','liability',26,'Employee payables','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(111,'2131','Wages Payable','liability',29,'Unpaid wages','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(112,'2132','Payroll Tax Payable','liability',29,'Employer taxes','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(113,'2140','Current Portion - LT Debt','liability',26,'Debt due within 1 year','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(114,'2150','Unearned Revenue','liability',26,'Payments received in advance','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(115,'2210','Notes Payable - Long Term','liability',34,'Long-term notes','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(116,'2220','Mortgage Payable','liability',34,'Real estate mortgage','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(117,'3300','Current Year Earnings','equity',37,'Year-to-date profit/loss','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(118,'3400','Dividends','equity',37,'Owner distributions','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(119,'4110','Product Sales','revenue',43,'Physical product sales','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(120,'4120','Service Revenue','revenue',43,'Service income','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(121,'4130','Installation Revenue','revenue',43,'Installation services','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(122,'4140','Maintenance Contracts','revenue',43,'Recurring maintenance','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(123,'4900','Sales Returns & Allowances','revenue',42,'Refunds and discounts (contra)','active','2025-11-04 20:16:40','2025-11-11 00:36:44');
/*!40000 ALTER TABLE `chart_of_accounts_backup_20250111` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `chat_messages`
--

DROP TABLE IF EXISTS `chat_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `chat_messages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `session_id` int(11) NOT NULL,
  `sender_type` enum('customer','agent','system') NOT NULL,
  `sender_id` int(10) unsigned DEFAULT NULL,
  `sender_name` varchar(100) NOT NULL,
  `message` text NOT NULL,
  `is_read` tinyint(1) DEFAULT 0,
  `created_at` datetime DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `sender_id` (`sender_id`),
  KEY `idx_session` (`session_id`),
  KEY `idx_created` (`created_at`),
  KEY `idx_read` (`is_read`),
  CONSTRAINT `chat_messages_ibfk_1` FOREIGN KEY (`session_id`) REFERENCES `chat_sessions` (`id`) ON DELETE CASCADE,
  CONSTRAINT `chat_messages_ibfk_2` FOREIGN KEY (`sender_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `chat_messages`
--

LOCK TABLES `chat_messages` WRITE;
/*!40000 ALTER TABLE `chat_messages` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `chat_messages` VALUES
(1,1,'system',NULL,'System','Live chat system initialized successfully.',1,'2025-11-17 10:57:17'),
(2,3,'system',NULL,'System','Chat session started. An agent will be with you shortly.',0,'2025-11-17 10:58:41'),
(3,4,'system',NULL,'System','Chat session started. An agent will be with you shortly.',0,'2025-11-17 11:40:29'),
(4,5,'system',NULL,'System','Chat session started. An agent will be with you shortly.',0,'2025-11-17 11:40:36'),
(5,6,'system',NULL,'System','Chat session started. An agent will be with you shortly.',0,'2025-11-17 11:56:51'),
(6,5,'system',NULL,'System','Admin User has joined the chat.',0,'2025-11-17 12:05:31'),
(7,5,'agent',1,'Admin User','Testing',0,'2025-11-17 12:05:31'),
(8,5,'agent',1,'Admin User','Can you see this',0,'2025-11-17 12:05:35'),
(9,5,'agent',1,'Admin User','Can I share an image?',0,'2025-11-17 12:05:44'),
(10,6,'system',NULL,'System','Chat session has ended.',0,'2025-11-17 12:06:21'),
(11,4,'system',NULL,'System','Chat session has ended.',0,'2025-11-17 12:06:24'),
(12,3,'system',NULL,'System','Chat session has ended.',0,'2025-11-17 12:06:27'),
(13,5,'system',NULL,'System','Chat session has ended.',0,'2025-11-17 12:06:31'),
(14,7,'system',NULL,'System','Chat session started. An agent will be with you shortly.',0,'2025-11-17 14:46:10'),
(15,7,'system',NULL,'System','Chat session has ended.',0,'2025-11-18 14:01:34'),
(16,8,'system',NULL,'System','Chat session started. An agent will be with you shortly.',0,'2025-11-19 13:20:34'),
(17,8,'system',NULL,'System','Admin User has joined the chat.',0,'2025-11-19 13:20:40'),
(18,8,'agent',1,'Admin User','Hey whats up',0,'2025-11-19 13:20:40');
/*!40000 ALTER TABLE `chat_messages` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `chat_sessions`
--

DROP TABLE IF EXISTS `chat_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `chat_sessions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `session_token` varchar(64) NOT NULL,
  `customer_name` varchar(100) NOT NULL,
  `customer_email` varchar(100) DEFAULT NULL,
  `customer_id` int(11) DEFAULT NULL,
  `assigned_user_id` int(10) unsigned DEFAULT NULL,
  `status` enum('waiting','active','ended') DEFAULT 'waiting',
  `subject` varchar(255) DEFAULT NULL,
  `ticket_id` int(11) DEFAULT NULL,
  `started_at` datetime DEFAULT current_timestamp(),
  `ended_at` datetime DEFAULT NULL,
  `last_message_at` datetime DEFAULT NULL,
  `unread_count_customer` int(11) DEFAULT 0,
  `unread_count_agent` int(11) DEFAULT 0,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `session_token` (`session_token`),
  KEY `idx_status` (`status`),
  KEY `idx_assigned_user` (`assigned_user_id`),
  KEY `idx_session_token` (`session_token`),
  KEY `idx_last_message` (`last_message_at`),
  CONSTRAINT `chat_sessions_ibfk_1` FOREIGN KEY (`assigned_user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `chat_sessions`
--

LOCK TABLES `chat_sessions` WRITE;
/*!40000 ALTER TABLE `chat_sessions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `chat_sessions` VALUES
(1,'demo-session-001','Demo User',NULL,NULL,NULL,'ended','Demo Chat Session',NULL,'2025-11-17 10:56:59','2025-11-17 10:56:59',NULL,0,0,'2025-11-17 10:56:59','2025-11-17 10:56:59'),
(3,'eed3c29fa66cd4a4615f098a8d8c8124b5953e9fc37f54a5ea774e2b3f5c939d','Test Customer 337','test@example.com',NULL,NULL,'ended','Test Chat Session',NULL,'2025-11-17 10:58:41','2025-11-17 12:06:27','2025-11-17 12:06:27',0,0,'2025-11-17 10:58:41','2025-11-17 12:06:27'),
(4,'ea43012a3a7d34cb70e3b1951024e6129eae29c7c6a7e9bb2b721b7639759b20','Test Customer 707','test@example.com',NULL,NULL,'ended','Test Chat Session',NULL,'2025-11-17 11:40:29','2025-11-17 12:06:24','2025-11-17 12:06:24',0,0,'2025-11-17 11:40:29','2025-11-17 12:06:24'),
(5,'e7333863f8fadc264d9f7f9a97c5506f635e31377345b9fc6ad07aaf929abb2d','Test Customer 441','test@example.com',NULL,1,'ended','Test Chat Session',NULL,'2025-11-17 11:40:36','2025-11-17 12:06:31','2025-11-17 12:06:31',3,0,'2025-11-17 11:40:36','2025-11-17 12:06:31'),
(6,'8ee8323e8f05ca1afa942fe53fed9f1155afedc501d1d3d87080bc5722f119bd','Test Customer 711','test@example.com',NULL,NULL,'ended','Test Chat Session',NULL,'2025-11-17 11:56:51','2025-11-17 12:06:21','2025-11-17 12:06:21',0,0,'2025-11-17 11:56:51','2025-11-17 12:06:21'),
(7,'dc69ed00c6cd3fa0a995326b7944ff535684c52f4eded63160e0b677922acc98','Test Customer 204','test@example.com',NULL,NULL,'ended','Test Chat Session',NULL,'2025-11-17 14:46:10','2025-11-18 14:01:34','2025-11-18 14:01:34',0,0,'2025-11-17 14:46:10','2025-11-18 14:01:34'),
(8,'26a83f3110ac630cc50598080c734b9f56c0107a1ec1d164c6e3d30535f0a73b','Test Customer 18','test@example.com',NULL,1,'active','Test Chat Session',NULL,'2025-11-19 13:20:34',NULL,'2025-11-19 13:20:40',1,0,'2025-11-19 13:20:34','2025-11-19 13:20:40');
/*!40000 ALTER TABLE `chat_sessions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `check_templates`
--

DROP TABLE IF EXISTS `check_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `check_templates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `template_name` varchar(100) NOT NULL,
  `template_type` enum('standard','voucher','stub_top','stub_bottom') DEFAULT 'standard',
  `is_default` tinyint(1) DEFAULT 0,
  `company_name` varchar(200) DEFAULT NULL,
  `company_address` text DEFAULT NULL,
  `bank_name` varchar(200) DEFAULT NULL,
  `routing_number` varchar(50) DEFAULT NULL,
  `account_number` varchar(50) DEFAULT NULL,
  `check_start_y` int(11) DEFAULT 100 COMMENT 'Y position in pixels',
  `check_start_x` int(11) DEFAULT 50 COMMENT 'X position in pixels',
  `amount_x` int(11) DEFAULT 500,
  `amount_y` int(11) DEFAULT 120,
  `date_x` int(11) DEFAULT 500,
  `date_y` int(11) DEFAULT 80,
  `payee_x` int(11) DEFAULT 100,
  `payee_y` int(11) DEFAULT 140,
  `memo_x` int(11) DEFAULT 100,
  `memo_y` int(11) DEFAULT 180,
  `signature_line_y` int(11) DEFAULT 220,
  `template_json` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Full template configuration' CHECK (json_valid(`template_json`)),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_by` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `check_templates_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `check_templates`
--

LOCK TABLES `check_templates` WRITE;
/*!40000 ALTER TABLE `check_templates` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `check_templates` VALUES
(1,'Standard Check','standard',1,'Your Company Name','123 Business Street\nCity, State 12345',NULL,NULL,NULL,100,50,500,120,500,80,100,140,100,180,220,NULL,'2025-11-15 16:20:07','2025-11-15 16:20:07',NULL);
/*!40000 ALTER TABLE `check_templates` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `closing_periods`
--

DROP TABLE IF EXISTS `closing_periods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `closing_periods` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `period_type` enum('month','quarter','year') NOT NULL,
  `period_start` date NOT NULL,
  `period_end` date NOT NULL,
  `fiscal_year` int(11) NOT NULL,
  `status` enum('open','closing','closed','reopened') DEFAULT 'open',
  `closed_by` int(10) unsigned DEFAULT NULL,
  `closed_at` datetime DEFAULT NULL,
  `reopened_by` int(10) unsigned DEFAULT NULL,
  `reopened_at` datetime DEFAULT NULL,
  `reopen_reason` text DEFAULT NULL,
  `total_revenue` decimal(15,2) DEFAULT NULL,
  `total_expenses` decimal(15,2) DEFAULT NULL,
  `net_income` decimal(15,2) DEFAULT NULL,
  `closing_journal_entry_id` int(10) unsigned DEFAULT NULL COMMENT 'Link to closing journal entry',
  `notes` text DEFAULT NULL,
  `checklist` text DEFAULT NULL COMMENT 'JSON array of closing checklist items',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_period` (`period_type`,`period_start`,`period_end`),
  KEY `idx_period` (`period_start`,`period_end`),
  KEY `idx_fiscal_year` (`fiscal_year`),
  KEY `idx_status` (`status`),
  KEY `closed_by` (`closed_by`),
  KEY `reopened_by` (`reopened_by`),
  CONSTRAINT `closing_periods_ibfk_1` FOREIGN KEY (`closed_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `closing_periods_ibfk_2` FOREIGN KEY (`reopened_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `closing_periods`
--

LOCK TABLES `closing_periods` WRITE;
/*!40000 ALTER TABLE `closing_periods` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `closing_periods` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `competitive_equipment_snapshots`
--

DROP TABLE IF EXISTS `competitive_equipment_snapshots`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `competitive_equipment_snapshots` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `competitor_name` varchar(255) NOT NULL,
  `equipment_observed` text DEFAULT NULL COMMENT 'What equipment they have',
  `capacity_estimate` decimal(12,2) DEFAULT NULL,
  `technology_level` enum('cutting_edge','modern','standard','outdated') DEFAULT 'standard',
  `observation_date` date DEFAULT NULL,
  `observation_method` varchar(100) DEFAULT NULL COMMENT 'Site visit, trade show, public filing, etc',
  `observed_by` int(10) unsigned DEFAULT NULL,
  `competitive_advantages` text DEFAULT NULL,
  `competitive_disadvantages` text DEFAULT NULL,
  `strategic_implications` text DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `observed_by` (`observed_by`),
  KEY `idx_competitor` (`competitor_name`),
  KEY `idx_observation_date` (`observation_date`),
  CONSTRAINT `competitive_equipment_snapshots_ibfk_1` FOREIGN KEY (`observed_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `competitive_equipment_snapshots`
--

LOCK TABLES `competitive_equipment_snapshots` WRITE;
/*!40000 ALTER TABLE `competitive_equipment_snapshots` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `competitive_equipment_snapshots` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `consolidated_proforma`
--

DROP TABLE IF EXISTS `consolidated_proforma`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `consolidated_proforma` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `assumption_set_id` int(11) NOT NULL,
  `projection_date` date NOT NULL,
  `period_type` enum('monthly','quarterly','annual') DEFAULT 'monthly',
  `total_revenue` decimal(15,2) NOT NULL DEFAULT 0.00,
  `total_cogs` decimal(15,2) NOT NULL DEFAULT 0.00,
  `labor_costs` decimal(15,2) DEFAULT 0.00 COMMENT 'Total labor costs from equipment',
  `energy_costs` decimal(15,2) DEFAULT 0.00 COMMENT 'Total energy costs',
  `equipment_operating_costs` decimal(15,2) DEFAULT 0.00 COMMENT 'Total equipment operating costs',
  `gross_profit` decimal(15,2) NOT NULL DEFAULT 0.00,
  `gross_margin_pct` decimal(5,2) NOT NULL DEFAULT 0.00,
  `total_opex` decimal(15,2) NOT NULL DEFAULT 0.00,
  `ebitda` decimal(15,2) NOT NULL DEFAULT 0.00,
  `depreciation` decimal(15,2) NOT NULL DEFAULT 0.00,
  `equipment_depreciation` decimal(15,2) DEFAULT 0.00 COMMENT 'Equipment depreciation',
  `ebit` decimal(15,2) NOT NULL DEFAULT 0.00,
  `interest_expense` decimal(15,2) NOT NULL DEFAULT 0.00,
  `tax_expense` decimal(15,2) NOT NULL DEFAULT 0.00,
  `net_income` decimal(15,2) NOT NULL DEFAULT 0.00,
  `operating_cash_flow` decimal(15,2) NOT NULL DEFAULT 0.00,
  `capex` decimal(15,2) NOT NULL DEFAULT 0.00,
  `free_cash_flow` decimal(15,2) NOT NULL DEFAULT 0.00,
  `cash` decimal(15,2) NOT NULL DEFAULT 0.00,
  `accounts_receivable` decimal(15,2) NOT NULL DEFAULT 0.00,
  `inventory` decimal(15,2) NOT NULL DEFAULT 0.00,
  `total_current_assets` decimal(15,2) NOT NULL DEFAULT 0.00,
  `net_ppe` decimal(15,2) NOT NULL DEFAULT 0.00,
  `total_assets` decimal(15,2) NOT NULL DEFAULT 0.00,
  `accounts_payable` decimal(15,2) NOT NULL DEFAULT 0.00,
  `debt_balance` decimal(15,2) NOT NULL DEFAULT 0.00,
  `total_liabilities` decimal(15,2) NOT NULL DEFAULT 0.00,
  `equity` decimal(15,2) NOT NULL DEFAULT 0.00,
  `total_capacity_hours` decimal(12,2) NOT NULL DEFAULT 0.00,
  `utilized_capacity_hours` decimal(12,2) NOT NULL DEFAULT 0.00,
  `available_capacity_hours` decimal(12,2) DEFAULT 0.00 COMMENT 'Available capacity hours',
  `capacity_gap_hours` decimal(12,2) DEFAULT 0.00 COMMENT 'Capacity shortfall hours',
  `recommended_machines` decimal(6,2) DEFAULT 0.00 COMMENT 'Additional machines recommended',
  `lost_revenue_from_capacity` decimal(15,2) DEFAULT 0.00 COMMENT 'Revenue lost due to capacity constraints',
  `capacity_utilization_pct` decimal(5,2) NOT NULL DEFAULT 0.00,
  `capacity_constrained` tinyint(1) DEFAULT 0 COMMENT 'Is this period capacity constrained',
  `generated_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `uk_set_date_period` (`assumption_set_id`,`projection_date`,`period_type`),
  KEY `idx_set` (`assumption_set_id`),
  KEY `idx_date` (`projection_date`),
  KEY `idx_period` (`period_type`),
  KEY `idx_proforma_capacity` (`assumption_set_id`,`capacity_constrained`),
  KEY `idx_proforma_date` (`projection_date`,`period_type`),
  CONSTRAINT `consolidated_proforma_ibfk_1` FOREIGN KEY (`assumption_set_id`) REFERENCES `forecast_assumption_sets` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `consolidated_proforma`
--

LOCK TABLES `consolidated_proforma` WRITE;
/*!40000 ALTER TABLE `consolidated_proforma` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `consolidated_proforma` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `contract_items`
--

DROP TABLE IF EXISTS `contract_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `contract_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `contract_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned DEFAULT NULL,
  `description` text NOT NULL,
  `agreed_price` decimal(15,2) DEFAULT NULL,
  `minimum_quantity` int(11) DEFAULT NULL,
  `maximum_quantity` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `contract_id` (`contract_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `contract_items_ibfk_1` FOREIGN KEY (`contract_id`) REFERENCES `supplier_contracts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `contract_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contract_items`
--

LOCK TABLES `contract_items` WRITE;
/*!40000 ALTER TABLE `contract_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `contract_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `cost_allocation_rules`
--

DROP TABLE IF EXISTS `cost_allocation_rules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `cost_allocation_rules` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `rule_name` varchar(100) NOT NULL COMMENT 'Name of allocation rule',
  `rule_type` enum('overhead','indirect_labor','utilities','rent','other') DEFAULT 'overhead',
  `allocation_method` enum('square_footage','labor_hours','machine_hours','revenue','units_produced','equal','manual') NOT NULL,
  `cost_pool_account_id` int(11) DEFAULT NULL COMMENT 'GL account for cost pool',
  `apply_to_products` tinyint(1) DEFAULT 1 COMMENT 'Apply to product costs',
  `apply_to_work_orders` tinyint(1) DEFAULT 1 COMMENT 'Apply to work orders',
  `is_active` tinyint(1) DEFAULT 1,
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_rule_type` (`rule_type`),
  KEY `idx_active` (`is_active`),
  KEY `idx_allocation_method` (`allocation_method`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Rules for allocating overhead and indirect costs';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cost_allocation_rules`
--

LOCK TABLES `cost_allocation_rules` WRITE;
/*!40000 ALTER TABLE `cost_allocation_rules` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `cost_allocation_rules` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `credit_note_applications`
--

DROP TABLE IF EXISTS `credit_note_applications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `credit_note_applications` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `credit_note_id` int(10) unsigned NOT NULL,
  `invoice_id` int(10) unsigned NOT NULL,
  `amount_applied` decimal(15,2) NOT NULL,
  `application_date` date NOT NULL,
  `journal_entry_id` int(10) unsigned DEFAULT NULL COMMENT 'GL entry for this application',
  `is_reversed` tinyint(1) DEFAULT 0,
  `reversed_date` date DEFAULT NULL,
  `reversal_reason` text DEFAULT NULL,
  `reversed_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `created_by` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_credit_note` (`credit_note_id`),
  KEY `idx_invoice` (`invoice_id`),
  KEY `idx_application_date` (`application_date`),
  KEY `idx_reversed` (`is_reversed`),
  KEY `journal_entry_id` (`journal_entry_id`),
  KEY `created_by` (`created_by`),
  KEY `reversed_by` (`reversed_by`),
  CONSTRAINT `credit_note_applications_ibfk_1` FOREIGN KEY (`credit_note_id`) REFERENCES `credit_notes` (`id`) ON DELETE CASCADE,
  CONSTRAINT `credit_note_applications_ibfk_2` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE CASCADE,
  CONSTRAINT `credit_note_applications_ibfk_3` FOREIGN KEY (`journal_entry_id`) REFERENCES `journal_entries` (`id`) ON DELETE SET NULL,
  CONSTRAINT `credit_note_applications_ibfk_4` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `credit_note_applications_ibfk_5` FOREIGN KEY (`reversed_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `credit_note_applications`
--

LOCK TABLES `credit_note_applications` WRITE;
/*!40000 ALTER TABLE `credit_note_applications` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `credit_note_applications` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `credit_note_items`
--

DROP TABLE IF EXISTS `credit_note_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `credit_note_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `credit_note_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned DEFAULT NULL,
  `description` text NOT NULL,
  `quantity` decimal(10,2) NOT NULL,
  `unit_price` decimal(15,2) NOT NULL,
  `tax_rate` decimal(5,2) DEFAULT 0.00,
  `line_total` decimal(15,2) NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `credit_note_id` (`credit_note_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `credit_note_items_ibfk_1` FOREIGN KEY (`credit_note_id`) REFERENCES `credit_notes` (`id`) ON DELETE CASCADE,
  CONSTRAINT `credit_note_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `credit_note_items`
--

LOCK TABLES `credit_note_items` WRITE;
/*!40000 ALTER TABLE `credit_note_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `credit_note_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `credit_notes`
--

DROP TABLE IF EXISTS `credit_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `credit_notes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `credit_note_number` varchar(50) NOT NULL,
  `invoice_id` int(10) unsigned NOT NULL,
  `customer_id` int(10) unsigned NOT NULL,
  `issue_date` date NOT NULL,
  `reason` varchar(255) DEFAULT NULL,
  `subtotal` decimal(15,2) DEFAULT 0.00,
  `tax_amount` decimal(15,2) DEFAULT 0.00,
  `total_amount` decimal(15,2) DEFAULT 0.00,
  `applied_amount` decimal(15,2) DEFAULT 0.00,
  `status` enum('draft','issued','applied','void') DEFAULT 'draft',
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `credit_note_number` (`credit_note_number`),
  KEY `invoice_id` (`invoice_id`),
  KEY `customer_id` (`customer_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_credit_notes_deleted_at` (`deleted_at`),
  CONSTRAINT `credit_notes_ibfk_1` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`),
  CONSTRAINT `credit_notes_ibfk_2` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`),
  CONSTRAINT `credit_notes_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `credit_notes`
--

LOCK TABLES `credit_notes` WRITE;
/*!40000 ALTER TABLE `credit_notes` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `credit_notes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `crm_customer_notes`
--

DROP TABLE IF EXISTS `crm_customer_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `crm_customer_notes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` int(10) unsigned NOT NULL,
  `note_text` text NOT NULL,
  `is_important` tinyint(1) DEFAULT 0,
  `user_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `customer_id` (`customer_id`),
  KEY `user_id` (`user_id`),
  CONSTRAINT `crm_customer_notes_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `crm_customer_notes_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crm_customer_notes`
--

LOCK TABLES `crm_customer_notes` WRITE;
/*!40000 ALTER TABLE `crm_customer_notes` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `crm_customer_notes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `crm_customer_tags`
--

DROP TABLE IF EXISTS `crm_customer_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `crm_customer_tags` (
  `customer_id` int(10) unsigned NOT NULL,
  `tag_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`customer_id`,`tag_id`),
  KEY `tag_id` (`tag_id`),
  CONSTRAINT `crm_customer_tags_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `crm_customer_tags_ibfk_2` FOREIGN KEY (`tag_id`) REFERENCES `crm_tags` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crm_customer_tags`
--

LOCK TABLES `crm_customer_tags` WRITE;
/*!40000 ALTER TABLE `crm_customer_tags` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `crm_customer_tags` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `crm_documents`
--

DROP TABLE IF EXISTS `crm_documents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `crm_documents` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` int(10) unsigned NOT NULL,
  `document_name` varchar(255) NOT NULL,
  `document_type` enum('contract','proposal','invoice','agreement','nda','other') DEFAULT 'other',
  `file_path` varchar(500) NOT NULL,
  `file_size` int(10) unsigned DEFAULT NULL COMMENT 'Size in bytes',
  `mime_type` varchar(100) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `version` varchar(20) DEFAULT '1.0',
  `is_signed` tinyint(1) DEFAULT 0,
  `signed_date` date DEFAULT NULL,
  `expiry_date` date DEFAULT NULL,
  `is_confidential` tinyint(1) DEFAULT 0,
  `uploaded_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `customer_id` (`customer_id`),
  KEY `uploaded_by` (`uploaded_by`),
  KEY `document_type` (`document_type`),
  CONSTRAINT `crm_documents_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `crm_documents_ibfk_2` FOREIGN KEY (`uploaded_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crm_documents`
--

LOCK TABLES `crm_documents` WRITE;
/*!40000 ALTER TABLE `crm_documents` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `crm_documents` VALUES
(3,46,'test','proposal','uploads/crm/documents/1763696109_NDA2025.pdf',187512,'application/pdf','','1.0',0,NULL,NULL,0,1,'2025-11-21 03:35:09','2025-11-21 03:35:09');
/*!40000 ALTER TABLE `crm_documents` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `crm_opportunities`
--

DROP TABLE IF EXISTS `crm_opportunities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `crm_opportunities` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` int(10) unsigned NOT NULL,
  `primary_contact_id` int(10) unsigned DEFAULT NULL COMMENT 'Primary contact person for this opportunity',
  `related_to` int(10) unsigned DEFAULT NULL COMMENT 'Link to parent opportunity for cross-sell/upsell',
  `opportunity_name` varchar(255) NOT NULL,
  `opportunity_value` decimal(15,2) DEFAULT 0.00,
  `stage` enum('lead','qualified','proposal','negotiation','closed_won','closed_lost') DEFAULT 'lead',
  `requires_nda` tinyint(1) DEFAULT 0,
  `nda_status` enum('not_required','pending','sent','signed','declined','expired') DEFAULT 'not_required',
  `block_quote_without_nda` tinyint(1) DEFAULT 1,
  `last_stage_change_at` timestamp NULL DEFAULT NULL COMMENT 'When the stage was last changed',
  `probability` int(11) DEFAULT 0 COMMENT 'Percentage 0-100',
  `expected_close_date` date DEFAULT NULL,
  `next_activity_date` date DEFAULT NULL COMMENT 'Date of next scheduled activity',
  `last_activity_date` datetime DEFAULT NULL COMMENT 'When the last activity occurred',
  `actual_close_date` date DEFAULT NULL,
  `won_time` timestamp NULL DEFAULT NULL COMMENT 'When the deal was won',
  `lost_time` timestamp NULL DEFAULT NULL COMMENT 'When the deal was lost',
  `closed_at` timestamp NULL DEFAULT NULL COMMENT 'When the deal was closed (won or lost)',
  `last_email_sent_at` timestamp NULL DEFAULT NULL COMMENT 'Last outgoing email timestamp',
  `last_email_received_at` timestamp NULL DEFAULT NULL COMMENT 'Last incoming email timestamp',
  `win_reason` text DEFAULT NULL COMMENT 'Why the deal was won',
  `loss_reason` text DEFAULT NULL COMMENT 'Why the deal was lost',
  `source` varchar(100) DEFAULT NULL COMMENT 'Lead source: Website, Referral, Cold Call, etc.',
  `assigned_to` int(10) unsigned DEFAULT NULL COMMENT 'Primary owner (for backward compatibility, use opportunity_assignments for full list)',
  `description` text DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `status` enum('active','won','lost','cancelled') DEFAULT 'active',
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `battery_application` varchar(255) DEFAULT NULL COMMENT 'Battery use case/application',
  `voltage` varchar(50) DEFAULT NULL COMMENT 'Voltage requirement (e.g., 14.8V)',
  `desired_capacity` varchar(50) DEFAULT NULL COMMENT 'Capacity requirement (e.g., 20AH)',
  `chemistry` varchar(100) DEFAULT NULL COMMENT 'Battery chemistry type (e.g., LiFePO4, NCM)',
  `battery_length` decimal(10,2) DEFAULT NULL COMMENT 'Length in inches',
  `battery_width` decimal(10,2) DEFAULT NULL COMMENT 'Width in inches',
  `battery_height` decimal(10,2) DEFAULT NULL COMMENT 'Height in inches',
  `continuous_discharge` varchar(50) DEFAULT NULL COMMENT 'Continuous discharge in amps',
  `peak_discharge` varchar(50) DEFAULT NULL COMMENT 'Peak discharge in amps',
  `battery_case_type` varchar(100) DEFAULT NULL COMMENT 'Case/enclosure type',
  `communication_bms` varchar(255) DEFAULT NULL COMMENT 'Communication protocol/BMS type',
  `additional_details` text DEFAULT NULL COMMENT 'Additional project details',
  `annual_quantity` varchar(50) DEFAULT NULL COMMENT 'Expected annual order quantity',
  PRIMARY KEY (`id`),
  KEY `customer_id` (`customer_id`),
  KEY `assigned_to` (`assigned_to`),
  KEY `created_by` (`created_by`),
  KEY `stage` (`stage`),
  KEY `status` (`status`),
  KEY `idx_primary_contact` (`primary_contact_id`),
  KEY `idx_related_to` (`related_to`),
  KEY `idx_last_stage_change` (`last_stage_change_at`),
  KEY `idx_next_activity` (`next_activity_date`),
  KEY `idx_last_activity` (`last_activity_date`),
  KEY `idx_won_time` (`won_time`),
  KEY `idx_lost_time` (`lost_time`),
  KEY `idx_closed_at` (`closed_at`),
  KEY `idx_requires_nda` (`requires_nda`),
  KEY `idx_nda_status` (`nda_status`),
  CONSTRAINT `crm_opportunities_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `crm_opportunities_ibfk_2` FOREIGN KEY (`assigned_to`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `crm_opportunities_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=86 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crm_opportunities`
--

LOCK TABLES `crm_opportunities` WRITE;
/*!40000 ALTER TABLE `crm_opportunities` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `crm_opportunities` VALUES
(23,46,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-09-19 19:32:00',85,NULL,'2025-10-29','2025-11-01 12:30:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-027-111325',NULL,'active',1,'2025-09-19 19:32:00','2025-11-14 23:57:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(24,47,NULL,NULL,'Battery Pack',0.00,'negotiation',0,'signed',1,'2025-11-13 15:33:28',85,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',5,'Opportunity based on battery quote(s). Quote numbers: Q-008-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-12-03 19:41:58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(25,48,NULL,NULL,'Battery Pack',0.00,'lead',0,'not_required',1,'2025-11-24 13:25:26',50,NULL,NULL,'2025-11-24 08:25:26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-013-111325 - convo was good!',NULL,'active',1,'2025-11-13 15:33:28','2025-11-24 13:51:11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(26,49,NULL,NULL,'Battery Pack',0.00,'qualified',0,'not_required',1,'2025-11-25 23:09:08',25,NULL,NULL,'2025-11-25 18:09:08',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-006-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-25 23:09:08',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(27,50,NULL,NULL,'Battery Pack',0.00,'qualified',0,'not_required',1,'2025-11-26 00:15:41',25,NULL,NULL,'2025-11-25 19:15:41',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-041-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-26 00:15:41',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(28,51,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-004-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(29,52,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-005-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(30,53,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-014-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(31,54,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-023-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(32,55,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-015-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(33,56,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-048-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(34,57,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-011-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(35,58,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-019-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(36,59,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-036-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(37,60,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-010-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(38,61,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-044-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(39,62,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-033-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(40,63,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-009-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(41,64,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-007-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(42,65,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-026-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(43,66,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-021-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(44,67,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-022-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(45,68,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-001-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(46,69,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-002-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(47,70,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-047-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(48,71,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-029-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(49,72,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-039-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(50,73,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-028-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(51,74,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-003-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(52,75,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-012-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(53,76,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-034-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(54,77,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-043-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(55,78,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-020-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(56,79,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-025-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(57,80,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-018-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(58,81,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-038-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(59,82,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-017-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(60,83,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-031-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(61,84,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-037-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(62,85,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-032-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(63,86,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-030-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(64,87,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-040-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(65,88,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-045-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(66,89,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-016-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(67,90,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-024-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(68,91,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-035-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(69,92,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-046-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(70,93,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-042-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `crm_opportunities` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `crm_opportunity_activities`
--

DROP TABLE IF EXISTS `crm_opportunity_activities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `crm_opportunity_activities` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `opportunity_id` int(10) unsigned NOT NULL,
  `activity_type` enum('note','call','meeting','email','status_change') NOT NULL,
  `subject` varchar(255) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `activity_date` datetime DEFAULT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `opportunity_id` (`opportunity_id`),
  KEY `user_id` (`user_id`),
  CONSTRAINT `crm_opportunity_activities_ibfk_1` FOREIGN KEY (`opportunity_id`) REFERENCES `crm_opportunities` (`id`) ON DELETE CASCADE,
  CONSTRAINT `crm_opportunity_activities_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crm_opportunity_activities`
--

LOCK TABLES `crm_opportunity_activities` WRITE;
/*!40000 ALTER TABLE `crm_opportunity_activities` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `crm_opportunity_activities` VALUES
(3,35,'status_change','Stage Changed','Moved from Proposal to Negotiation','2025-11-14 14:42:53',1,'2025-11-14 19:42:53','2025-11-14 19:42:53'),
(4,35,'status_change','Stage Changed','Moved from Negotiation to Proposal','2025-11-14 14:42:59',1,'2025-11-14 19:42:59','2025-11-14 19:42:59'),
(5,25,'status_change','Stage Changed','Moved from Proposal to Qualified','2025-11-24 08:25:17',1,'2025-11-24 13:25:17','2025-11-24 13:25:17'),
(6,25,'status_change','Stage Changed','Moved from Qualified to Lead','2025-11-24 08:25:26',1,'2025-11-24 13:25:26','2025-11-24 13:25:26'),
(7,26,'status_change','Stage Changed','Moved from Proposal to Qualified','2025-11-24 08:25:28',1,'2025-11-24 13:25:28','2025-11-24 13:25:28'),
(8,26,'status_change','Stage Changed','Moved from Qualified to Lead','2025-11-25 18:09:03',1,'2025-11-25 23:09:03','2025-11-25 23:09:03'),
(9,26,'status_change','Stage Changed','Moved from Lead to Qualified','2025-11-25 18:09:08',1,'2025-11-25 23:09:08','2025-11-25 23:09:08'),
(10,27,'status_change','Stage Changed','Moved from Proposal to Qualified','2025-11-25 19:15:41',1,'2025-11-26 00:15:41','2025-11-26 00:15:41');
/*!40000 ALTER TABLE `crm_opportunity_activities` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `crm_support_ticket_attachments`
--

DROP TABLE IF EXISTS `crm_support_ticket_attachments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `crm_support_ticket_attachments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ticket_id` int(10) unsigned NOT NULL,
  `file_name` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_size` int(10) unsigned NOT NULL COMMENT 'Size in bytes',
  `mime_type` varchar(100) DEFAULT NULL,
  `uploaded_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `ticket_id` (`ticket_id`),
  KEY `uploaded_by` (`uploaded_by`),
  CONSTRAINT `crm_support_ticket_attachments_ibfk_1` FOREIGN KEY (`ticket_id`) REFERENCES `crm_support_tickets` (`id`) ON DELETE CASCADE,
  CONSTRAINT `crm_support_ticket_attachments_ibfk_2` FOREIGN KEY (`uploaded_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crm_support_ticket_attachments`
--

LOCK TABLES `crm_support_ticket_attachments` WRITE;
/*!40000 ALTER TABLE `crm_support_ticket_attachments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `crm_support_ticket_attachments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `crm_support_ticket_responses`
--

DROP TABLE IF EXISTS `crm_support_ticket_responses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `crm_support_ticket_responses` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ticket_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `response_text` text NOT NULL,
  `is_internal` tinyint(1) DEFAULT 0 COMMENT 'Internal notes not visible to customer',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `ticket_id` (`ticket_id`),
  KEY `user_id` (`user_id`),
  CONSTRAINT `crm_support_ticket_responses_ibfk_1` FOREIGN KEY (`ticket_id`) REFERENCES `crm_support_tickets` (`id`) ON DELETE CASCADE,
  CONSTRAINT `crm_support_ticket_responses_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crm_support_ticket_responses`
--

LOCK TABLES `crm_support_ticket_responses` WRITE;
/*!40000 ALTER TABLE `crm_support_ticket_responses` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `crm_support_ticket_responses` VALUES
(1,1,1,'test',0,'2025-10-30 00:45:45','2025-11-11 00:36:44');
/*!40000 ALTER TABLE `crm_support_ticket_responses` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `crm_support_tickets`
--

DROP TABLE IF EXISTS `crm_support_tickets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `crm_support_tickets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ticket_number` varchar(50) NOT NULL,
  `customer_id` int(10) unsigned NOT NULL,
  `contact_id` int(10) unsigned DEFAULT NULL COMMENT 'Reference to customer_contacts',
  `subject` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `priority` enum('low','medium','high','urgent') DEFAULT 'medium',
  `status` enum('open','in_progress','pending','resolved','closed','cancelled') DEFAULT 'open',
  `category` varchar(100) DEFAULT NULL COMMENT 'Technical, Billing, General, etc.',
  `assigned_to` int(10) unsigned DEFAULT NULL,
  `resolution_notes` text DEFAULT NULL,
  `opened_at` datetime DEFAULT current_timestamp(),
  `closed_at` datetime DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `ticket_number` (`ticket_number`),
  KEY `customer_id` (`customer_id`),
  KEY `contact_id` (`contact_id`),
  KEY `assigned_to` (`assigned_to`),
  KEY `status` (`status`),
  KEY `priority` (`priority`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `crm_support_tickets_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `crm_support_tickets_ibfk_2` FOREIGN KEY (`contact_id`) REFERENCES `customer_contacts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `crm_support_tickets_ibfk_3` FOREIGN KEY (`assigned_to`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `crm_support_tickets_ibfk_4` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crm_support_tickets`
--

LOCK TABLES `crm_support_tickets` WRITE;
/*!40000 ALTER TABLE `crm_support_tickets` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `crm_support_tickets` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `crm_tags`
--

DROP TABLE IF EXISTS `crm_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `crm_tags` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `color` varchar(7) DEFAULT '#3498db' COMMENT 'Hex color code',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crm_tags`
--

LOCK TABLES `crm_tags` WRITE;
/*!40000 ALTER TABLE `crm_tags` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `crm_tags` VALUES
(1,'VIP','#e74c3c','2025-10-29 23:45:39','2025-11-11 00:36:44'),
(2,'Partner','#9b59b6','2025-10-29 23:45:39','2025-11-11 00:36:44'),
(3,'Prospect','#3498db','2025-10-29 23:45:39','2025-11-11 00:36:44'),
(4,'Active','#2ecc71','2025-10-29 23:45:39','2025-11-11 00:36:44'),
(5,'Inactive','#95a5a6','2025-10-29 23:45:39','2025-11-11 00:36:44'),
(6,'High Value','#f39c12','2025-10-29 23:45:39','2025-11-11 00:36:44'),
(7,'Enterprise','#1abc9c','2025-10-29 23:45:39','2025-11-11 00:36:44'),
(8,'SMB','#34495e','2025-10-29 23:45:39','2025-11-11 00:36:44');
/*!40000 ALTER TABLE `crm_tags` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `currencies`
--

DROP TABLE IF EXISTS `currencies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `currencies` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `code` varchar(3) NOT NULL COMMENT 'ISO 4217 currency code',
  `name` varchar(100) NOT NULL,
  `symbol` varchar(10) NOT NULL,
  `decimal_places` int(11) DEFAULT 2,
  `is_base_currency` tinyint(1) DEFAULT 0,
  `is_active` tinyint(1) DEFAULT 1,
  `display_order` int(11) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `code` (`code`),
  KEY `idx_is_active` (`is_active`),
  KEY `idx_is_base` (`is_base_currency`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `currencies`
--

LOCK TABLES `currencies` WRITE;
/*!40000 ALTER TABLE `currencies` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `currencies` VALUES
(1,'USD','US Dollar','$',2,1,1,1,'2025-11-12 17:29:39','2025-11-12 17:29:39'),
(2,'EUR','Euro','€',2,0,1,2,'2025-11-12 17:29:39','2025-11-12 17:29:39'),
(3,'GBP','British Pound','£',2,0,1,3,'2025-11-12 17:29:39','2025-11-12 17:29:39'),
(4,'JPY','Japanese Yen','¥',0,0,1,4,'2025-11-12 17:29:39','2025-11-12 17:29:39'),
(5,'CAD','Canadian Dollar','C$',2,0,1,5,'2025-11-12 17:29:39','2025-11-12 17:29:39'),
(6,'AUD','Australian Dollar','A$',2,0,1,6,'2025-11-12 17:29:39','2025-11-12 17:29:39'),
(7,'CHF','Swiss Franc','CHF',2,0,1,7,'2025-11-12 17:29:39','2025-11-12 17:29:39'),
(8,'CNY','Chinese Yuan','¥',2,0,1,8,'2025-11-12 17:29:39','2025-11-12 17:29:39'),
(9,'INR','Indian Rupee','₹',2,0,1,9,'2025-11-12 17:29:39','2025-11-12 17:29:39'),
(10,'MXN','Mexican Peso','MX$',2,0,1,10,'2025-11-12 17:29:39','2025-11-12 17:29:39');
/*!40000 ALTER TABLE `currencies` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `currency_revaluations`
--

DROP TABLE IF EXISTS `currency_revaluations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `currency_revaluations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `revaluation_date` date NOT NULL,
  `currency_id` int(10) unsigned NOT NULL,
  `exchange_rate_id` int(10) unsigned DEFAULT NULL,
  `account_id` int(10) unsigned DEFAULT NULL COMMENT 'Chart of accounts ID',
  `original_amount` decimal(15,2) NOT NULL,
  `original_currency_id` int(10) unsigned NOT NULL,
  `revalued_amount` decimal(15,2) NOT NULL,
  `gain_loss_amount` decimal(15,2) NOT NULL,
  `gain_loss_type` enum('realized','unrealized') DEFAULT 'unrealized',
  `journal_entry_id` int(10) unsigned DEFAULT NULL COMMENT 'Link to journal entry',
  `status` enum('draft','posted','reversed') DEFAULT 'draft',
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `original_currency_id` (`original_currency_id`),
  KEY `exchange_rate_id` (`exchange_rate_id`),
  KEY `account_id` (`account_id`),
  KEY `journal_entry_id` (`journal_entry_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_revaluation_date` (`revaluation_date`),
  KEY `idx_currency` (`currency_id`),
  KEY `idx_status` (`status`),
  CONSTRAINT `currency_revaluations_ibfk_1` FOREIGN KEY (`currency_id`) REFERENCES `currencies` (`id`) ON DELETE CASCADE,
  CONSTRAINT `currency_revaluations_ibfk_2` FOREIGN KEY (`original_currency_id`) REFERENCES `currencies` (`id`) ON DELETE CASCADE,
  CONSTRAINT `currency_revaluations_ibfk_3` FOREIGN KEY (`exchange_rate_id`) REFERENCES `exchange_rates` (`id`) ON DELETE SET NULL,
  CONSTRAINT `currency_revaluations_ibfk_4` FOREIGN KEY (`account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `currency_revaluations_ibfk_5` FOREIGN KEY (`journal_entry_id`) REFERENCES `journal_entries` (`id`) ON DELETE SET NULL,
  CONSTRAINT `currency_revaluations_ibfk_6` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `currency_revaluations`
--

LOCK TABLES `currency_revaluations` WRITE;
/*!40000 ALTER TABLE `currency_revaluations` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `currency_revaluations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `custom_reports`
--

DROP TABLE IF EXISTS `custom_reports`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `custom_reports` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `category` varchar(100) DEFAULT NULL,
  `query_sql` text NOT NULL,
  `parameters` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Query parameters with default values' CHECK (json_valid(`parameters`)),
  `columns` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Column definitions for display' CHECK (json_valid(`columns`)),
  `is_public` tinyint(1) DEFAULT 0,
  `created_by` int(10) unsigned NOT NULL,
  `last_run_at` timestamp NULL DEFAULT NULL,
  `run_count` int(11) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_created_by` (`created_by`),
  KEY `idx_category` (`category`),
  CONSTRAINT `custom_reports_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `custom_reports`
--

LOCK TABLES `custom_reports` WRITE;
/*!40000 ALTER TABLE `custom_reports` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `custom_reports` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `customer_activities`
--

DROP TABLE IF EXISTS `customer_activities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_activities` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `activity_type` enum('note','call','meeting','email','task') NOT NULL,
  `subject` varchar(255) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `activity_date` datetime DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `customer_id` (`customer_id`),
  KEY `user_id` (`user_id`),
  CONSTRAINT `customer_activities_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `customer_activities_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_activities`
--

LOCK TABLES `customer_activities` WRITE;
/*!40000 ALTER TABLE `customer_activities` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `customer_activities` VALUES
(1,2,1,'email','Test','','2025-10-30 20:57:00','2025-10-30 00:58:01','2025-11-11 00:36:44'),
(2,16,1,'call','Discuss purchase','','2025-11-05 11:49:00','2025-11-05 16:49:18','2025-11-11 00:36:44'),
(3,46,1,'note','test','test','2025-12-01 22:02:00','2025-12-02 03:02:36','2025-12-02 03:02:36');
/*!40000 ALTER TABLE `customer_activities` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `customer_contacts`
--

DROP TABLE IF EXISTS `customer_contacts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_contacts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `contact_type` enum('customer','client') DEFAULT 'customer',
  `customer_id` int(10) unsigned NOT NULL,
  `first_name` varchar(100) NOT NULL,
  `last_name` varchar(100) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `secondary_email` varchar(255) DEFAULT NULL,
  `tertiary_email` varchar(255) DEFAULT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `position` varchar(100) DEFAULT NULL,
  `is_primary` tinyint(1) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `customer_id` (`customer_id`),
  KEY `idx_secondary_email` (`secondary_email`),
  KEY `idx_tertiary_email` (`tertiary_email`),
  KEY `idx_deleted_at` (`deleted_at`),
  CONSTRAINT `customer_contacts_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=70 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_contacts`
--

LOCK TABLES `customer_contacts` WRITE;
/*!40000 ALTER TABLE `customer_contacts` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `customer_contacts` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `customer_credit_balances`
--

DROP TABLE IF EXISTS `customer_credit_balances`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_credit_balances` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` int(10) unsigned NOT NULL,
  `total_credit_issued` decimal(15,2) DEFAULT 0.00,
  `total_credit_applied` decimal(15,2) DEFAULT 0.00,
  `available_credit` decimal(15,2) DEFAULT 0.00,
  `credit_note_count` int(11) DEFAULT 0,
  `last_credit_date` date DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `customer_id` (`customer_id`),
  KEY `idx_customer` (`customer_id`),
  KEY `idx_available` (`available_credit`),
  CONSTRAINT `customer_credit_balances_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_credit_balances`
--

LOCK TABLES `customer_credit_balances` WRITE;
/*!40000 ALTER TABLE `customer_credit_balances` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `customer_credit_balances` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `customer_documents`
--

DROP TABLE IF EXISTS `customer_documents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_documents` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` int(10) unsigned NOT NULL,
  `file_name` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_size` int(10) unsigned NOT NULL,
  `mime_type` varchar(100) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `uploaded_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `customer_id` (`customer_id`),
  KEY `uploaded_by` (`uploaded_by`),
  CONSTRAINT `customer_documents_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `customer_documents_ibfk_2` FOREIGN KEY (`uploaded_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_documents`
--

LOCK TABLES `customer_documents` WRITE;
/*!40000 ALTER TABLE `customer_documents` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `customer_documents` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `customers`
--

DROP TABLE IF EXISTS `customers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `customers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `customer_type` enum('individual','company') DEFAULT 'individual',
  `company_type` enum('client','customer') DEFAULT 'customer',
  `company_name` varchar(255) DEFAULT NULL,
  `first_name` varchar(100) DEFAULT NULL,
  `last_name` varchar(100) DEFAULT NULL,
  `email` varchar(255) NOT NULL,
  `secondary_email` varchar(255) DEFAULT NULL,
  `tertiary_email` varchar(255) DEFAULT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `mobile` varchar(20) DEFAULT NULL,
  `website` varchar(255) DEFAULT NULL,
  `tax_id` varchar(50) DEFAULT NULL,
  `billing_address` text DEFAULT NULL,
  `billing_city` varchar(100) DEFAULT NULL,
  `billing_state` varchar(100) DEFAULT NULL,
  `billing_zip` varchar(20) DEFAULT NULL,
  `billing_country` varchar(100) DEFAULT NULL,
  `shipping_address` text DEFAULT NULL,
  `shipping_city` varchar(100) DEFAULT NULL,
  `shipping_state` varchar(100) DEFAULT NULL,
  `shipping_zip` varchar(20) DEFAULT NULL,
  `shipping_country` varchar(100) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `status` enum('active','inactive') DEFAULT 'active',
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  `tax_exempt` tinyint(1) DEFAULT 0 COMMENT 'Quick flag for tax exempt status',
  `tax_jurisdiction_id` int(10) unsigned DEFAULT NULL COMMENT 'Primary tax jurisdiction',
  PRIMARY KEY (`id`),
  KEY `email` (`email`),
  KEY `created_by` (`created_by`),
  KEY `idx_secondary_email` (`secondary_email`),
  KEY `idx_tertiary_email` (`tertiary_email`),
  KEY `idx_tax_exempt` (`tax_exempt`),
  KEY `idx_company_type` (`company_type`),
  KEY `idx_deleted_at` (`deleted_at`),
  KEY `idx_search_active` (`status`,`company_name`),
  FULLTEXT KEY `ft_customer_search` (`company_name`,`first_name`,`last_name`,`email`),
  CONSTRAINT `customers_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=133 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customers`
--

LOCK TABLES `customers` WRITE;
/*!40000 ALTER TABLE `customers` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `customers` VALUES
(46,'company','customer','4 Patriots','Contact','Person','4patriots@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(47,'company','customer','AeroVironment','Contact','Person','aerovironment@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(48,'company','customer','AirBus x AATLO','Contact','Person','airbusxaatlo@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(49,'company','customer','BAE Systems','Contact','Person','baesystems@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(50,'company','customer','Bluetti','Contact','Person','bluetti@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(51,'company','customer','Boeing','Contact','Person','boeing@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(52,'company','customer','Boeing 2','Contact','Person','boeing2@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(53,'company','customer','Boeing 3','Contact','Person','boeing3@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(54,'company','customer','Booz Allen Hamilton Inc','Contact','Person','boozallenhamiltoninc@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(55,'company','customer','Collins Aerospace','Contact','Person','collinsaerospace@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(56,'company','customer','Cubic Corporation','Contact','Person','cubiccorporation@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(57,'company','customer','Curtiss-Wright','Contact','Person','curtiss-wright@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(58,'company','customer','Eagle Picher Technologies','Contact','Person','eaglepichertechnologies@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(59,'company','customer','Enphase Energy','Contact','Person','enphaseenergy@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(60,'company','customer','Federal Bureau of Investigation','Contact','Person','federalbureauofinvestigation@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(61,'company','customer','Figure AI','Contact','Person','figureai@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(62,'company','customer','Fortress Power','Contact','Person','fortresspower@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(63,'company','customer','General Dynamics','Contact','Person','generaldynamics@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(64,'company','customer','L3 Harris','Contact','Person','l3harris@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(65,'company','customer','LG Electronics','Contact','Person','lgelectronics@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(66,'company','customer','LiiON Inc','Contact','Person','liioninc@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(67,'company','customer','Lithionics Battery','Contact','Person','lithionicsbattery@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(68,'company','customer','Lockheed Martin','Contact','Person','lockheedmartin@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(69,'company','customer','Lockheed Martin 2','Contact','Person','lockheedmartin2@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(70,'company','customer','Mistral Inc','Contact','Person','mistralinc@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(71,'company','customer','MPINarada','Contact','Person','mpinarada@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(72,'company','customer','NeoVolta','Contact','Person','neovolta@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(73,'company','customer','Nevados','Contact','Person','nevados@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(74,'company','customer','Northrop Grumman','Contact','Person','northropgrumman@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(75,'company','customer','Northrop Grumman 2','Contact','Person','northropgrumman2@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(76,'company','customer','Our Next Energy (ONE)','Contact','Person','ournextenergy(one)@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(77,'company','customer','Peppermint Robotics ','Contact','Person','peppermintrobotics@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(78,'company','customer','Power Sonic','Contact','Person','powersonic@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(79,'company','customer','PowerPole','Contact','Person','powerpole@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(80,'company','customer','Pratt / Miller','Contact','Person','pratt/miller@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(81,'company','customer','Prevalon Energy','Contact','Person','prevalonenergy@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(82,'company','customer','Roush','Contact','Person','roush@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(83,'company','customer','Siemens Energy','Contact','Person','siemensenergy@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(84,'company','customer','Siemens Energy 2','Contact','Person','siemensenergy2@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(85,'company','customer','Sol-Ark','Contact','Person','sol-ark@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(86,'company','customer','Solara Power','Contact','Person','solarapower@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(87,'company','customer','Sonnen Inc','Contact','Person','sonneninc@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(88,'company','customer','Swarmbotics','Contact','Person','swarmbotics@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(89,'company','customer','Tenacious International','Contact','Person','tenaciousinternational@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(90,'company','customer','Universal Solutions International','Contact','Person','universalsolutionsinternational@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(91,'company','customer','Vector Climate','Contact','Person','vectorclimate@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(92,'company','customer','Velocity Technology Solutions','Contact','Person','velocitytechnologysolutions@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(93,'company','customer','Yotta Energy ','Contact','Person','yottaenergy@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(112,'company','customer','Hyde Park Partners',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 0\nPeople: 1','active',1,'2025-11-13 22:13:38','2025-11-15 16:28:22',NULL,0,NULL),
(113,'company','customer','VIU Global',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 0\nPeople: 1','active',1,'2025-11-13 22:13:38','2025-11-15 16:28:25',NULL,0,NULL),
(115,'company','customer','General Dynamics Land Systems',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 0\nPeople: 1','active',1,'2025-11-13 22:13:38','2025-11-14 18:20:14',NULL,0,NULL),
(116,'company','customer','HawkTV',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 0\nPeople: 1','active',1,'2025-11-13 22:13:38','2025-11-14 18:20:17',NULL,0,NULL),
(117,'company','customer','Power Pole Geoff Contact',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 0\nPeople: 1','active',1,'2025-11-13 22:13:38','2025-11-14 18:20:11',NULL,0,NULL),
(118,'company','customer','Cirnapro',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 0\nPeople: 1','active',1,'2025-11-13 22:13:38','2025-11-14 18:20:20',NULL,0,NULL),
(119,'company','customer','Ontario Drive & Gear Limited',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'66 Hinks Street New Hamburg Ontario N3A 2J5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 0\nPeople: 1','active',1,'2025-11-13 22:13:38','2025-11-14 18:20:23',NULL,0,NULL),
(121,'company','customer','YRC Freight— Urbandale, Iowa',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 0\nPeople: 1','active',1,'2025-11-13 22:13:38','2025-11-14 18:20:31',NULL,0,NULL),
(122,'company','customer','Night Fishing Buoy',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 1\nPeople: 1','active',1,'2025-11-13 22:13:38','2025-11-14 18:20:34',NULL,0,NULL),
(123,'company','customer','Immigration and Customs Enforcment',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 1\nPeople: 1','active',1,'2025-11-13 22:13:38','2025-11-14 18:20:36',NULL,0,NULL),
(124,'company','customer','Tough Signal',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 1\nPeople: 1','active',1,'2025-11-13 22:13:38','2025-11-14 18:20:39',NULL,0,NULL),
(125,'company','customer','Booz Allen Hamilton Inc.',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 1\nPeople: 1','active',1,'2025-11-13 22:13:38','2025-11-14 18:20:40',NULL,0,NULL),
(126,'company','customer','HV Diagnostics',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 1\nPeople: 2','active',1,'2025-11-13 22:13:38','2025-11-14 18:39:26',NULL,0,NULL),
(127,'company','customer','Obsidian Intergration',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 1\nClosed Deals: 0\nPeople: 2','active',1,'2025-11-13 22:13:38','2025-11-14 18:39:30',NULL,0,NULL),
(128,'company','customer','Andretti Autosports',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 0\nPeople: 2','active',1,'2025-11-13 22:13:38','2025-11-14 18:39:34',NULL,0,NULL),
(129,'company','customer','GCC',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 1\nPeople: 2','active',1,'2025-11-13 22:13:38','2025-11-14 18:39:35',NULL,0,NULL),
(130,'company','customer','AGV America',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 0\nPeople: 1','active',1,'2025-11-13 22:13:38','2025-11-14 18:39:37',NULL,0,NULL),
(131,'company','customer','Toronto Coach Terminal Inc.',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 1\nPeople: 2','active',1,'2025-11-13 22:13:38','2025-11-14 18:39:38',NULL,0,NULL),
(132,'company','client','Test Client','','','test@texclient.com','',NULL,'','','','','','','','','','','','','','','','active',1,'2025-11-13 14:47:07','2025-11-13 14:47:07',NULL,0,NULL);
/*!40000 ALTER TABLE `customers` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `dashboard_stat_cards`
--

DROP TABLE IF EXISTS `dashboard_stat_cards`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `dashboard_stat_cards` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `card_key` varchar(100) NOT NULL COMMENT 'Unique identifier like total_customers, pending_invoices',
  `title` varchar(255) NOT NULL COMMENT 'Display title like Total Customers',
  `icon` varchar(100) NOT NULL COMMENT 'Bootstrap icon class like bi-person-badge',
  `color` varchar(50) NOT NULL DEFAULT 'primary' COMMENT 'primary, success, warning, info, danger, secondary',
  `query_type` enum('count','sum','custom') DEFAULT 'count',
  `sql_query` text DEFAULT NULL COMMENT 'SQL query to fetch the main value',
  `secondary_label` varchar(255) DEFAULT NULL COMMENT 'Label for secondary stat like "new" or "pending"',
  `secondary_query` text DEFAULT NULL COMMENT 'SQL query for secondary stat',
  `secondary_icon` varchar(50) DEFAULT NULL COMMENT 'Icon for secondary stat like bi-arrow-up, bi-arrow-down',
  `secondary_color` varchar(50) DEFAULT NULL COMMENT 'Color for secondary stat',
  `format_type` enum('number','currency','percentage','text') DEFAULT 'number',
  `dashboard_section` varchar(100) DEFAULT NULL COMMENT 'Which dashboard this belongs to: main, crm, sales, hr, etc.',
  `display_order` int(11) DEFAULT 0,
  `permission_required` varchar(100) DEFAULT NULL COMMENT 'Permission needed to view this card',
  `is_active` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `card_key` (`card_key`),
  KEY `idx_dashboard_section` (`dashboard_section`),
  KEY `idx_is_active` (`is_active`),
  KEY `idx_display_order` (`display_order`)
) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dashboard_stat_cards`
--

LOCK TABLES `dashboard_stat_cards` WRITE;
/*!40000 ALTER TABLE `dashboard_stat_cards` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `dashboard_stat_cards` VALUES
(1,'total_customers','Total Customers','bi-person-badge','primary','count','SELECT COUNT(*) as value FROM customers WHERE status = \"active\"','Active',NULL,'bi-check-circle','success','number','main',1,'crm.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(2,'total_products','Total Products','bi-box-seam','success','count','SELECT COUNT(*) as value FROM products WHERE status = \"active\"','low stock','SELECT COUNT(DISTINCT p.id) as value FROM products p INNER JOIN inventory i ON p.id = i.product_id WHERE i.quantity <= p.reorder_level AND p.status = \"active\"','bi-exclamation-triangle','warning','number','main',2,'inventory.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(3,'sales_month','Sales This Month','bi-graph-up','warning','sum','SELECT COALESCE(SUM(total_amount), 0) as value FROM invoices WHERE MONTH(invoice_date) = MONTH(CURRENT_DATE()) AND YEAR(invoice_date) = YEAR(CURRENT_DATE()) AND status IN (\"paid\", \"partial\")','Current month',NULL,'bi-calendar','info','currency','main',3,'sales.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(4,'pending_invoices','Pending Invoices','bi-receipt','info','count','SELECT COUNT(*) as value FROM invoices WHERE status IN (\"draft\", \"sent\")','Awaiting payment',NULL,'bi-clock','warning','number','main',4,'invoices.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(5,'total_opportunities','Total Opportunities','bi-star','warning','count','SELECT COUNT(*) as value FROM opportunities WHERE status NOT IN (\"lost\", \"closed\")','open','SELECT COUNT(*) as value FROM opportunities WHERE status = \"new\"','bi-arrow-up','success','number','crm',1,'crm.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(6,'active_leads','Active Leads','bi-person-lines-fill','primary','count','SELECT COUNT(*) as value FROM customers WHERE type = \"lead\" AND status = \"active\"','new this week',NULL,'bi-calendar-week','success','number','crm',2,'crm.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(7,'pipeline_value','Pipeline Value','bi-cash-stack','success','sum','SELECT COALESCE(SUM(estimated_value), 0) as value FROM opportunities WHERE status NOT IN (\"lost\", \"closed\")','potential revenue',NULL,'bi-graph-up','info','currency','crm',3,'crm.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(8,'conversion_rate','Conversion Rate','bi-percent','info','custom','SELECT ROUND((SELECT COUNT(*) FROM opportunities WHERE status = \"won\") / NULLIF((SELECT COUNT(*) FROM opportunities), 0) * 100, 1) as value','this month',NULL,'bi-trophy','success','percentage','crm',4,'crm.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(9,'orders_today','Orders Today','bi-cart-check','success','count','SELECT COUNT(*) as value FROM sales_orders WHERE DATE(created_at) = CURRENT_DATE()','today',NULL,'bi-calendar-day','primary','number','sales',1,'sales.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(10,'revenue_today','Revenue Today','bi-currency-dollar','primary','sum','SELECT COALESCE(SUM(total_amount), 0) as value FROM sales_orders WHERE DATE(order_date) = CURRENT_DATE() AND status != \"cancelled\"','vs yesterday',NULL,'bi-graph-up','success','currency','sales',2,'sales.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(11,'pending_orders','Pending Orders','bi-hourglass-split','warning','count','SELECT COUNT(*) as value FROM sales_orders WHERE status IN (\"pending\", \"processing\")','need attention',NULL,'bi-exclamation-circle','danger','number','sales',3,'sales.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(12,'quotes_open','Open Quotes','bi-file-earmark-text','info','count','SELECT COUNT(*) as value FROM quotes WHERE status IN (\"draft\", \"sent\")','awaiting response',NULL,'bi-clock-history','warning','number','sales',4,'sales.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(13,'total_employees','Total Employees','bi-people','primary','count','SELECT COUNT(*) as value FROM employees WHERE status = \"active\"','active',NULL,'bi-check-circle','success','number','hr',1,'hr.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(14,'pending_applications','Pending Applications','bi-file-earmark-person','warning','count','SELECT COUNT(*) as value FROM job_applications WHERE status IN (\"new\", \"screening\")','need review',NULL,'bi-eye','info','number','hr',2,'hr.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(15,'open_positions','Open Positions','bi-briefcase','info','count','SELECT COUNT(*) as value FROM job_positions WHERE status = \"open\"','actively recruiting',NULL,'bi-megaphone','success','number','hr',3,'hr.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(16,'upcoming_reviews','Upcoming Reviews','bi-clipboard-check','success','count','SELECT COUNT(*) as value FROM performance_reviews WHERE status = \"scheduled\" AND review_date <= DATE_ADD(CURRENT_DATE(), INTERVAL 30 DAY)','next 30 days',NULL,'bi-calendar-event','warning','number','hr',4,'hr.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(17,'active_work_orders','Active Work Orders','bi-gear','primary','count','SELECT COUNT(*) as value FROM work_orders WHERE status IN (\"pending\", \"in_progress\")','in progress',NULL,'bi-play-circle','success','number','manufacturing',1,'manufacturing.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(18,'production_today','Production Today','bi-box','success','sum','SELECT COALESCE(SUM(quantity_produced), 0) as value FROM work_orders WHERE DATE(updated_at) = CURRENT_DATE()','units',NULL,'bi-check2-circle','info','number','manufacturing',2,'manufacturing.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(19,'material_shortages','Material Shortages','bi-exclamation-triangle','danger','count','SELECT COUNT(*) as value FROM mrp_shortages WHERE status = \"pending\"','need attention',NULL,'bi-exclamation-circle','warning','number','manufacturing',3,'manufacturing.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(20,'equipment_downtime','Equipment Down','bi-wrench','warning','count','SELECT COUNT(*) as value FROM equipment WHERE status = \"down\"','maintenance needed',NULL,'bi-tools','danger','number','manufacturing',4,'manufacturing.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(21,'total_products_inventory','Total Products','bi-box-seam','primary','custom','SELECT COUNT(*) as value FROM products WHERE status = \"active\"','Active products',NULL,'bi-graph-up','info','number','inventory',1,'inventory.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(22,'total_quantity_inventory','Total Quantity','bi-boxes','info','count','SELECT COALESCE(SUM(quantity), 0) as value FROM inventory','Units in stock',NULL,'bi-cart-plus','danger','number','inventory',2,'inventory.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(23,'total_value_inventory','Total Value','bi-currency-dollar','success','count','SELECT COALESCE(SUM(i.quantity * p.cost_price), 0) as value FROM inventory i INNER JOIN products p ON i.product_id = p.id','Stock worth',NULL,'bi-truck','primary','currency','inventory',3,'inventory.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(24,'low_stock_items_inventory','Low Stock Items','bi-exclamation-triangle','warning','count','SELECT COUNT(DISTINCT p.id) as value FROM products p LEFT JOIN inventory i ON p.id = i.product_id WHERE (i.quantity <= p.reorder_level OR i.quantity IS NULL) AND p.reorder_level > 0 AND p.status = \"active\"','Below reorder level',NULL,'bi-calendar-day','success','number','inventory',4,'inventory.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(25,'total_categories','Total Categories','bi-folder','primary','count','SELECT COUNT(*) as value FROM product_categories','All categories',NULL,NULL,NULL,'number','product_categories',1,'inventory.view',1,'2025-11-06 11:34:01','2025-11-11 11:25:53'),
(26,'active_categories','Active Categories','bi-check-circle','success','count','SELECT COUNT(*) as value FROM product_categories WHERE is_active = 1','Currently active',NULL,NULL,NULL,'number','product_categories',2,'inventory.view',1,'2025-11-06 11:34:01','2025-11-11 11:25:53'),
(27,'total_products_in_categories','Total Products','bi-box-seam','info','count','SELECT COUNT(*) as value FROM products WHERE category_id IS NOT NULL','Across all categories',NULL,NULL,NULL,'number','product_categories',3,'inventory.view',1,'2025-11-06 11:34:01','2025-11-11 11:25:53'),
(32,'empty_categories','Empty Categories','bi-inbox','warning','count','SELECT COUNT(*) as value FROM product_categories pc LEFT JOIN products p ON pc.id = p.category_id WHERE p.id IS NULL','Without products',NULL,NULL,NULL,'number','product_categories',4,'inventory.view',1,'2025-11-06 11:38:21','2025-11-11 11:25:53'),
(33,'expired_lots','Expired Items','bi-exclamation-triangle','danger','count','SELECT COUNT(*) as value FROM lot_serial_numbers WHERE status = \'active\' AND expiration_date < CURDATE()','Require action',NULL,NULL,NULL,'number','lot_tracking',1,'inventory.view',1,'2025-11-06 12:32:21','2025-11-11 11:25:53'),
(34,'expiring_this_week','Expiring This Week','bi-calendar-week','warning','count','SELECT COUNT(*) as value FROM lot_serial_numbers WHERE status = \'active\' AND expiration_date BETWEEN CURDATE() AND DATE_ADD(CURDATE(), INTERVAL 7 DAY)','Next 7 days',NULL,NULL,NULL,'number','lot_tracking',2,'inventory.view',1,'2025-11-06 12:32:21','2025-11-11 11:25:53'),
(35,'expiring_this_month','Expiring This Month','bi-calendar-month','info','count','SELECT COUNT(*) as value FROM lot_serial_numbers WHERE status = \'active\' AND expiration_date BETWEEN CURDATE() AND DATE_ADD(CURDATE(), INTERVAL 30 DAY)','Next 30 days',NULL,NULL,NULL,'number','lot_tracking',3,'inventory.view',1,'2025-11-06 12:32:21','2025-11-11 11:25:53'),
(36,'active_lots','Active Lot/Serials','bi-upc-scan','primary','count','SELECT COUNT(*) as value FROM lot_serial_numbers WHERE status = \'active\'','In inventory',NULL,NULL,NULL,'number','lot_tracking',4,'inventory.view',1,'2025-11-06 12:32:21','2025-11-11 11:25:53');
/*!40000 ALTER TABLE `dashboard_stat_cards` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `debit_notes`
--

DROP TABLE IF EXISTS `debit_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `debit_notes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `debit_note_number` varchar(50) NOT NULL,
  `supplier_id` int(10) unsigned NOT NULL,
  `bill_id` int(10) unsigned DEFAULT NULL,
  `return_id` int(10) unsigned DEFAULT NULL,
  `issue_date` date NOT NULL,
  `amount` decimal(15,2) NOT NULL,
  `reason` text DEFAULT NULL,
  `status` enum('draft','issued','applied','cancelled') DEFAULT 'draft',
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `debit_note_number` (`debit_note_number`),
  KEY `supplier_id` (`supplier_id`),
  KEY `bill_id` (`bill_id`),
  KEY `return_id` (`return_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_debit_notes_deleted_at` (`deleted_at`),
  CONSTRAINT `debit_notes_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`),
  CONSTRAINT `debit_notes_ibfk_2` FOREIGN KEY (`bill_id`) REFERENCES `supplier_bills` (`id`) ON DELETE SET NULL,
  CONSTRAINT `debit_notes_ibfk_3` FOREIGN KEY (`return_id`) REFERENCES `purchase_returns` (`id`) ON DELETE SET NULL,
  CONSTRAINT `debit_notes_ibfk_4` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `debit_notes`
--

LOCK TABLES `debit_notes` WRITE;
/*!40000 ALTER TABLE `debit_notes` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `debit_notes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `delivery_note_items`
--

DROP TABLE IF EXISTS `delivery_note_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `delivery_note_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `delivery_note_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `quantity` decimal(10,2) NOT NULL,
  `serial_numbers` text DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `delivery_note_id` (`delivery_note_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `delivery_note_items_ibfk_1` FOREIGN KEY (`delivery_note_id`) REFERENCES `delivery_notes` (`id`) ON DELETE CASCADE,
  CONSTRAINT `delivery_note_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `delivery_note_items`
--

LOCK TABLES `delivery_note_items` WRITE;
/*!40000 ALTER TABLE `delivery_note_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `delivery_note_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `delivery_notes`
--

DROP TABLE IF EXISTS `delivery_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `delivery_notes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `delivery_note_number` varchar(50) NOT NULL,
  `sales_order_id` int(10) unsigned DEFAULT NULL,
  `shipment_id` int(10) unsigned DEFAULT NULL,
  `customer_id` int(10) unsigned NOT NULL,
  `delivery_date` date NOT NULL,
  `delivery_address` text DEFAULT NULL,
  `delivery_city` varchar(100) DEFAULT NULL,
  `delivery_state` varchar(50) DEFAULT NULL,
  `delivery_zip` varchar(20) DEFAULT NULL,
  `delivery_country` varchar(100) DEFAULT 'USA',
  `delivery_contact` varchar(100) DEFAULT NULL,
  `delivery_phone` varchar(50) DEFAULT NULL,
  `carrier` varchar(100) DEFAULT NULL,
  `tracking_number` varchar(100) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `status` enum('draft','confirmed','in_transit','delivered','cancelled') DEFAULT 'draft',
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `delivery_note_number` (`delivery_note_number`),
  KEY `sales_order_id` (`sales_order_id`),
  KEY `shipment_id` (`shipment_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_status` (`status`),
  KEY `idx_delivery_date` (`delivery_date`),
  KEY `idx_customer` (`customer_id`),
  CONSTRAINT `delivery_notes_ibfk_1` FOREIGN KEY (`sales_order_id`) REFERENCES `sales_orders` (`id`) ON DELETE SET NULL,
  CONSTRAINT `delivery_notes_ibfk_2` FOREIGN KEY (`shipment_id`) REFERENCES `shipments` (`id`) ON DELETE SET NULL,
  CONSTRAINT `delivery_notes_ibfk_3` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `delivery_notes_ibfk_4` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `delivery_notes`
--

LOCK TABLES `delivery_notes` WRITE;
/*!40000 ALTER TABLE `delivery_notes` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `delivery_notes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `departments`
--

DROP TABLE IF EXISTS `departments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `departments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `description` text DEFAULT NULL,
  `manager_id` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `manager_id` (`manager_id`),
  KEY `idx_departments_deleted_at` (`deleted_at`),
  CONSTRAINT `departments_ibfk_1` FOREIGN KEY (`manager_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `departments`
--

LOCK TABLES `departments` WRITE;
/*!40000 ALTER TABLE `departments` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `departments` VALUES
(1,'Administration','Administrative and executive staff',NULL,'2025-10-26 14:24:24','2025-11-11 00:36:45',NULL),
(2,'Sales','Sales and marketing team',NULL,'2025-10-26 14:24:24','2025-11-11 00:36:45',NULL),
(3,'Accounting','Finance and accounting department',NULL,'2025-10-26 14:24:24','2025-11-11 00:36:45',NULL),
(4,'Operations','Operations and logistics',NULL,'2025-10-26 14:24:24','2025-11-11 00:36:45',NULL),
(5,'Human Resources','HR and recruitment',NULL,'2025-10-26 14:24:24','2025-11-11 00:36:45',NULL),
(6,'IT','Information Technology',NULL,'2025-10-26 14:24:24','2025-11-11 00:36:45',NULL),
(8,'Marketing','Marketing and Communications',NULL,'2025-10-27 14:37:00','2025-11-11 00:36:45',NULL),
(11,'Finance','Finance and Accounting',NULL,'2025-10-27 14:37:00','2025-11-11 00:36:45',NULL),
(13,'Manufacturing','Manufacturing and Production',NULL,'2025-10-27 14:37:00','2025-11-11 00:36:45',NULL);
/*!40000 ALTER TABLE `departments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `depreciation_schedules`
--

DROP TABLE IF EXISTS `depreciation_schedules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `depreciation_schedules` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `asset_id` int(10) unsigned NOT NULL,
  `period_date` date NOT NULL COMMENT 'First day of the period (month/quarter/year)',
  `opening_balance` decimal(15,2) NOT NULL,
  `depreciation_amount` decimal(15,2) NOT NULL,
  `accumulated_depreciation` decimal(15,2) NOT NULL,
  `net_book_value` decimal(15,2) NOT NULL,
  `status` enum('scheduled','posted','reversed') DEFAULT 'scheduled',
  `journal_entry_id` int(10) unsigned DEFAULT NULL COMMENT 'Link to posted journal entry',
  `posted_by` int(10) unsigned DEFAULT NULL,
  `posted_at` datetime DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_asset_period` (`asset_id`,`period_date`),
  KEY `idx_asset_period` (`asset_id`,`period_date`),
  KEY `idx_status` (`status`),
  KEY `idx_period_date` (`period_date`),
  KEY `posted_by` (`posted_by`),
  CONSTRAINT `depreciation_schedules_ibfk_1` FOREIGN KEY (`asset_id`) REFERENCES `fixed_assets` (`id`) ON DELETE CASCADE,
  CONSTRAINT `depreciation_schedules_ibfk_2` FOREIGN KEY (`posted_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `depreciation_schedules`
--

LOCK TABLES `depreciation_schedules` WRITE;
/*!40000 ALTER TABLE `depreciation_schedules` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `depreciation_schedules` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `diagram_shares`
--

DROP TABLE IF EXISTS `diagram_shares`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `diagram_shares` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `diagram_id` int(11) NOT NULL,
  `shared_with_user_id` int(11) NOT NULL,
  `permission` varchar(20) DEFAULT 'view' COMMENT 'view, edit',
  `created_by` int(11) NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_share` (`diagram_id`,`shared_with_user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `diagram_shares`
--

LOCK TABLES `diagram_shares` WRITE;
/*!40000 ALTER TABLE `diagram_shares` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `diagram_shares` VALUES
(1,5,4,'view',1,'2025-12-02 19:37:07'),
(2,6,5,'view',1,'2025-12-04 23:07:12');
/*!40000 ALTER TABLE `diagram_shares` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `diagrams`
--

DROP TABLE IF EXISTS `diagrams`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `diagrams` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `diagram_data` longtext NOT NULL COMMENT 'Excalidraw JSON scene data',
  `module` varchar(50) DEFAULT NULL COMMENT 'Associated module: crm, projects, manufacturing, etc.',
  `entity_id` int(11) DEFAULT NULL COMMENT 'Related record ID',
  `thumbnail_path` varchar(500) DEFAULT NULL COMMENT 'Path to thumbnail image',
  `is_template` tinyint(1) DEFAULT 0,
  `created_by` int(11) NOT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_module_entity` (`module`,`entity_id`),
  KEY `idx_created_by` (`created_by`),
  KEY `idx_is_template` (`is_template`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `diagrams`
--

LOCK TABLES `diagrams` WRITE;
/*!40000 ALTER TABLE `diagrams` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `diagrams` VALUES
(3,'Untitled Diagram','','{\"type\":\"excalidraw\",\"version\":2,\"source\":\"m1_erp\",\"elements\":[{\"id\":\"5RV8qSCrMglkMVB4zs_TS\",\"type\":\"rectangle\",\"x\":310,\"y\":118,\"width\":97,\"height\":64,\"angle\":0,\"strokeColor\":\"#1e1e1e\",\"backgroundColor\":\"transparent\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"groupIds\":[],\"frameId\":null,\"roundness\":{\"type\":3},\"seed\":972801369,\"version\":9,\"versionNonce\":21896281,\"isDeleted\":false,\"boundElements\":null,\"updated\":1764683662156,\"link\":null,\"locked\":false}],\"appState\":{\"showWelcomeScreen\":true,\"theme\":\"dark\",\"collaborators\":[],\"currentChartType\":\"bar\",\"currentItemBackgroundColor\":\"transparent\",\"currentItemEndArrowhead\":\"arrow\",\"currentItemFillStyle\":\"solid\",\"currentItemFontFamily\":1,\"currentItemFontSize\":20,\"currentItemOpacity\":100,\"currentItemRoughness\":1,\"currentItemStartArrowhead\":null,\"currentItemStrokeColor\":\"#1e1e1e\",\"currentItemRoundness\":\"round\",\"currentItemStrokeStyle\":\"solid\",\"currentItemStrokeWidth\":2,\"currentItemTextAlign\":\"left\",\"cursorButton\":\"up\",\"activeEmbeddable\":null,\"draggingElement\":null,\"editingElement\":null,\"editingGroupId\":null,\"editingLinearElement\":null,\"activeTool\":{\"type\":\"selection\",\"customType\":null,\"locked\":false,\"lastActiveTool\":null},\"penMode\":false,\"penDetected\":false,\"errorMessage\":null,\"exportBackground\":true,\"exportScale\":2,\"exportEmbedScene\":false,\"exportWithDarkMode\":false,\"fileHandle\":null,\"gridSize\":null,\"isBindingEnabled\":true,\"defaultSidebarDockedPreference\":false,\"isLoading\":false,\"isResizing\":false,\"isRotating\":false,\"lastPointerDownWith\":\"mouse\",\"multiElement\":null,\"name\":\"Untitled-2025-12-02-0854\",\"contextMenu\":null,\"openMenu\":null,\"openPopup\":null,\"openSidebar\":null,\"openDialog\":null,\"pasteDialog\":{\"shown\":false,\"data\":null},\"previousSelectedElementIds\":[],\"resizingElement\":null,\"scrolledOutside\":false,\"scrollX\":0,\"scrollY\":0,\"selectedElementIds\":{\"5RV8qSCrMglkMVB4zs_TS\":true},\"selectedGroupIds\":[],\"selectedElementsAreBeingDragged\":false,\"selectionElement\":null,\"shouldCacheIgnoreZoom\":false,\"showStats\":false,\"startBoundElement\":null,\"suggestedBindings\":[],\"frameRendering\":{\"enabled\":true,\"clip\":true,\"name\":true,\"outline\":true},\"frameToHighlight\":null,\"editingFrame\":null,\"elementsToHighlight\":null,\"toast\":null,\"viewBackgroundColor\":\"#ffffff\",\"zenModeEnabled\":false,\"zoom\":{\"value\":1},\"viewModeEnabled\":false,\"pendingImageElementId\":null,\"showHyperlinkPopup\":false,\"selectedLinearElement\":null,\"snapLines\":[],\"originSnapOffset\":null,\"objectsSnapModeEnabled\":false,\"offsetLeft\":303,\"offsetTop\":248,\"width\":1119,\"height\":409},\"files\":[]}',NULL,NULL,NULL,0,1,NULL,'2025-12-02 13:54:23','2025-12-02 13:54:23'),
(4,'Untitled Diagram','','{\"type\":\"excalidraw\",\"version\":2,\"source\":\"m1_erp\",\"elements\":[{\"id\":\"Icx763BmkOw566YKOVQwM\",\"type\":\"rectangle\",\"x\":326,\"y\":121,\"width\":234,\"height\":155,\"angle\":0,\"strokeColor\":\"#1e1e1e\",\"backgroundColor\":\"transparent\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"groupIds\":[],\"frameId\":null,\"roundness\":{\"type\":3},\"seed\":574158508,\"version\":14,\"versionNonce\":13524780,\"isDeleted\":false,\"boundElements\":null,\"updated\":1764684031126,\"link\":null,\"locked\":false}],\"appState\":{\"showWelcomeScreen\":true,\"theme\":\"dark\",\"collaborators\":[],\"currentChartType\":\"bar\",\"currentItemBackgroundColor\":\"transparent\",\"currentItemEndArrowhead\":\"arrow\",\"currentItemFillStyle\":\"solid\",\"currentItemFontFamily\":1,\"currentItemFontSize\":20,\"currentItemOpacity\":100,\"currentItemRoughness\":1,\"currentItemStartArrowhead\":null,\"currentItemStrokeColor\":\"#1e1e1e\",\"currentItemRoundness\":\"round\",\"currentItemStrokeStyle\":\"solid\",\"currentItemStrokeWidth\":2,\"currentItemTextAlign\":\"left\",\"cursorButton\":\"up\",\"activeEmbeddable\":null,\"draggingElement\":null,\"editingElement\":null,\"editingGroupId\":null,\"editingLinearElement\":null,\"activeTool\":{\"type\":\"selection\",\"customType\":null,\"locked\":false,\"lastActiveTool\":null},\"penMode\":false,\"penDetected\":false,\"errorMessage\":null,\"exportBackground\":true,\"exportScale\":2,\"exportEmbedScene\":false,\"exportWithDarkMode\":false,\"fileHandle\":null,\"gridSize\":null,\"isBindingEnabled\":true,\"defaultSidebarDockedPreference\":false,\"isLoading\":false,\"isResizing\":false,\"isRotating\":false,\"lastPointerDownWith\":\"mouse\",\"multiElement\":null,\"name\":\"Untitled-2025-12-02-0900\",\"contextMenu\":null,\"openMenu\":null,\"openPopup\":null,\"openSidebar\":null,\"openDialog\":null,\"pasteDialog\":{\"shown\":false,\"data\":null},\"previousSelectedElementIds\":[],\"resizingElement\":null,\"scrolledOutside\":false,\"scrollX\":0,\"scrollY\":0,\"selectedElementIds\":{\"Icx763BmkOw566YKOVQwM\":true},\"selectedGroupIds\":[],\"selectedElementsAreBeingDragged\":false,\"selectionElement\":null,\"shouldCacheIgnoreZoom\":false,\"showStats\":false,\"startBoundElement\":null,\"suggestedBindings\":[],\"frameRendering\":{\"enabled\":true,\"clip\":true,\"name\":true,\"outline\":true},\"frameToHighlight\":null,\"editingFrame\":null,\"elementsToHighlight\":null,\"toast\":null,\"viewBackgroundColor\":\"#ffffff\",\"zenModeEnabled\":false,\"zoom\":{\"value\":1},\"viewModeEnabled\":false,\"pendingImageElementId\":null,\"showHyperlinkPopup\":false,\"selectedLinearElement\":null,\"snapLines\":[],\"originSnapOffset\":null,\"objectsSnapModeEnabled\":false,\"offsetLeft\":303,\"offsetTop\":248,\"width\":1119,\"height\":409},\"files\":[]}',NULL,NULL,NULL,0,1,NULL,'2025-12-02 14:00:32','2025-12-02 14:00:32'),
(5,'Test Diagram','Scrum Board','{\"type\":\"excalidraw\",\"version\":2,\"source\":\"m1_erp\",\"elements\":[{\"type\":\"rectangle\",\"version\":15,\"versionNonce\":1954189837,\"isDeleted\":false,\"id\":\"SZxFf9nIb1xQ95xkRLm20\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":307,\"y\":126,\"strokeColor\":\"#1e1e1e\",\"backgroundColor\":\"transparent\",\"width\":130,\"height\":112,\"seed\":1148644557,\"groupIds\":[],\"frameId\":null,\"roundness\":{\"type\":3},\"boundElements\":[],\"updated\":1764684192522,\"link\":null,\"locked\":false},{\"type\":\"text\",\"version\":1875,\"versionNonce\":1061682605,\"isDeleted\":false,\"id\":\"cFqSDR5ChTid_JZLdLRry\",\"fillStyle\":\"hachure\",\"strokeWidth\":1,\"strokeStyle\":\"dotted\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":334.1245681661849,\"y\":331.08238209477736,\"strokeColor\":\"#495057\",\"backgroundColor\":\"#868e96\",\"width\":43,\"height\":30,\"seed\":1238480899,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":24.013497016931144,\"fontFamily\":1,\"text\":\"Bug\",\"textAlign\":\"left\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"Bug\",\"lineHeight\":1.2492974254790115,\"baseline\":22.016861788503725},{\"type\":\"ellipse\",\"version\":1810,\"versionNonce\":1245036557,\"isDeleted\":false,\"id\":\"7yAo2RHvSr1dGaL-Tl4Vs\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":265.6160185989297,\"y\":332.7943665048821,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#c92a2a\",\"width\":18.915168634308852,\"height\":13.095116746829012,\"seed\":931250083,\"groupIds\":[\"OYfqssxucSjxV25vLaB1T\"],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"ellipse\",\"version\":1759,\"versionNonce\":184301165,\"isDeleted\":false,\"id\":\"Fw4WZ2q5-tQP56C5b3HnA\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":4.728678266311217,\"x\":260.43014025394814,\"y\":345.4350091324344,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#c92a2a\",\"width\":29.3147504765488,\"height\":25.730897100312987,\"seed\":1829753667,\"groupIds\":[\"OYfqssxucSjxV25vLaB1T\"],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"line\",\"version\":1541,\"versionNonce\":744808653,\"isDeleted\":false,\"id\":\"wVWnTqYQYtvIWjqvuyUWu\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":287.1443779857823,\"y\":350.9001231076778,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":10.743173626990341,\"height\":6.319513898229615,\"seed\":1524265699,\"groupIds\":[\"OYfqssxucSjxV25vLaB1T\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[6.3195138982296095,-6.319513898229616],[10.743173626990341,-1.474553242920248]]},{\"type\":\"line\",\"version\":1562,\"versionNonce\":1141456685,\"isDeleted\":false,\"id\":\"K4LpiD6iLbcx6DuGGxb1b\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":288.3029555337903,\"y\":360.1154911753707,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":10.743173626990341,\"height\":6.319513898229615,\"seed\":1634737795,\"groupIds\":[\"OYfqssxucSjxV25vLaB1T\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[6.3195138982296095,-6.319513898229616],[10.743173626990341,-1.474553242920248]]},{\"type\":\"line\",\"version\":1583,\"versionNonce\":2018693517,\"isDeleted\":false,\"id\":\"Zf732FtLkB7Ah69Lirh0e\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":281.98344163556294,\"y\":370.43736387581407,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":10.743173626990341,\"height\":6.319513898229615,\"seed\":1267684899,\"groupIds\":[\"OYfqssxucSjxV25vLaB1T\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[6.3195138982296095,-6.319513898229616],[10.743173626990341,-1.474553242920248]]},{\"type\":\"line\",\"version\":1575,\"versionNonce\":1719343085,\"isDeleted\":false,\"id\":\"r5erS7zbGDrEQ20DrAUsn\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":263.3408756357835,\"y\":352.3214240342269,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":9.268620384070111,\"height\":5.898212971680975,\"seed\":136747459,\"groupIds\":[\"OYfqssxucSjxV25vLaB1T\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-5.687562508406687,-5.898212971680975],[-9.268620384070111,0]]},{\"type\":\"line\",\"version\":1552,\"versionNonce\":1217106509,\"isDeleted\":false,\"id\":\"yeyj4jpIFVl_tEM53wBb8\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":262.91957470923217,\"y\":362.2219958081197,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":9.268620384070111,\"height\":7.162115751326901,\"seed\":609511779,\"groupIds\":[\"OYfqssxucSjxV25vLaB1T\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-4.213009265486401,-7.162115751326901],[-9.268620384070111,-2.317155096017533]]},{\"type\":\"line\",\"version\":1548,\"versionNonce\":1532870829,\"isDeleted\":false,\"id\":\"RHqhLnuACwMsAICwpkUL0\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":265.86868119508335,\"y\":368.75216016961986,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":9.900571773893068,\"height\":5.055611118583697,\"seed\":90653955,\"groupIds\":[\"OYfqssxucSjxV25vLaB1T\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-5.055611118583717,-5.055611118583697],[-9.90057177389307,-1.2639027796459221]]},{\"type\":\"line\",\"version\":1558,\"versionNonce\":77275917,\"isDeleted\":false,\"id\":\"xtF45LnuG2W0ehXdO8TWu\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":279.5609613079164,\"y\":332.73093094971125,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.740814824778256,\"height\":4.844960655309377,\"seed\":1658694819,\"groupIds\":[\"OYfqssxucSjxV25vLaB1T\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[2.5278055592918505,-4.844960655309377],[6.740814824778256,-1.474553242920234]]},{\"type\":\"line\",\"version\":1534,\"versionNonce\":951925101,\"isDeleted\":false,\"id\":\"GsGHIw9obp4uXGEddBL-A\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":269.87103999728015,\"y\":333.7841832660878,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.530164361503941,\"height\":4.634310192035056,\"seed\":6692931,\"groupIds\":[\"OYfqssxucSjxV25vLaB1T\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-2.106504632743225,-4.634310192035056],[-6.530164361503941,-4.213009265486417]]},{\"type\":\"text\",\"version\":1761,\"versionNonce\":554533837,\"isDeleted\":false,\"id\":\"nW2QIPUcVsD2IkYuoSYJ3\",\"fillStyle\":\"cross-hatch\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":785.5375167489442,\"y\":211.65541583656,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"transparent\",\"width\":256,\"height\":51,\"seed\":668934115,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":44.76229461122525,\"fontFamily\":2,\"text\":\"Scrum board\",\"textAlign\":\"left\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"Scrum board\",\"lineHeight\":1.139351779057602,\"baseline\":39.72916994240791},{\"type\":\"text\",\"version\":987,\"versionNonce\":27623981,\"isDeleted\":false,\"id\":\"5aJ8L27npkTqX1PJeVZ78\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":582.6763493893804,\"y\":302.1907441607834,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ffff\",\"width\":125,\"height\":40.38461538461539,\"seed\":1666657155,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":35.04490412396706,\"fontFamily\":2,\"text\":\"Backlog\",\"textAlign\":\"center\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"Backlog\",\"lineHeight\":1.1523676949367518,\"baseline\":32.05174606182907},{\"type\":\"text\",\"version\":1135,\"versionNonce\":1601090701,\"isDeleted\":false,\"id\":\"y7Qo8m7_zh1dlVzc8WFPi\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":763.1299134985952,\"y\":287.5511088904809,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ffff\",\"width\":100.31285291772363,\"height\":66.11528942304511,\"seed\":1997325091,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":29.157360231140597,\"fontFamily\":2,\"text\":\"Spring \\nbacklog\",\"textAlign\":\"center\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"Spring \\nbacklog\",\"lineHeight\":1.1337667213171234,\"baseline\":59.35681958665195},{\"type\":\"text\",\"version\":1667,\"versionNonce\":1713543917,\"isDeleted\":false,\"id\":\"DG4X-ewZ7cl7R53yHV-9Q\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1119.097788296654,\"y\":308.27974274455187,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ffff\",\"width\":69.53504577251297,\"height\":33.057644711522556,\"seed\":460220099,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":29.157360231140597,\"fontFamily\":2,\"text\":\"Done\",\"textAlign\":\"center\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"Done\",\"lineHeight\":1.1337667213171234,\"baseline\":26.178409793325976},{\"type\":\"text\",\"version\":1320,\"versionNonce\":239777101,\"isDeleted\":false,\"id\":\"2h_WQiD2jmE_V89mXupwl\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":902.8651361187312,\"y\":299.7890286078846,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#ffff\",\"width\":156.1688732923652,\"height\":36.47740106099041,\"seed\":1998231139,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":31.327781709020442,\"fontFamily\":2,\"text\":\"In progress\",\"textAlign\":\"center\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"In progress\",\"lineHeight\":1.1643786783182033,\"baseline\":29.381662033126105},{\"type\":\"rectangle\",\"version\":1802,\"versionNonce\":54559661,\"isDeleted\":false,\"id\":\"QObjcF6IL-ju-zV961wQr\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":578.2639863310796,\"y\":421.95816981455937,\"strokeColor\":\"#e67700\",\"backgroundColor\":\"#fab005\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":1491063299,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1762,\"versionNonce\":1227720205,\"isDeleted\":false,\"id\":\"c2DmJrXHV1dcC_DBu8ilQ\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":578.2639863310796,\"y\":484.11300542286654,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":834443683,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1814,\"versionNonce\":587938925,\"isDeleted\":false,\"id\":\"NPOzupdsP9kQOcYOuYbTG\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":576.4877047988903,\"y\":640.070523949278,\"strokeColor\":\"#84142d\",\"backgroundColor\":\"#c92a2a\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":1323265347,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1812,\"versionNonce\":950216397,\"isDeleted\":false,\"id\":\"9RZ-JSrOaNOBzgIy5MGmk\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":574.2039142575022,\"y\":706.8840850101376,\"strokeColor\":\"#e9d349\",\"backgroundColor\":\"#ffff1a\",\"width\":50.92852907297534,\"height\":54.12583583092038,\"seed\":1403440355,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1800,\"versionNonce\":2089731373,\"isDeleted\":false,\"id\":\"8DeEk1f5q6FekUwy4pfla\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":762.1502716665209,\"y\":446.0598573566033,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":1939945603,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1833,\"versionNonce\":1379374989,\"isDeleted\":false,\"id\":\"ydVRnhrhjeLuggZxhKQcS\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":762.1502716665209,\"y\":517.1111186442629,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":1821192227,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1892,\"versionNonce\":1943477741,\"isDeleted\":false,\"id\":\"GtPW9iy55LZFnJrZBpjz_\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":760.3739901343315,\"y\":588.162379931922,\"strokeColor\":\"#84142d\",\"backgroundColor\":\"#c92a2a\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":1079587779,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1853,\"versionNonce\":410441805,\"isDeleted\":false,\"id\":\"oBpBy5wiz6ZYk66JFLV9E\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":930.4819362951048,\"y\":443.6748227877313,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":790872931,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1853,\"versionNonce\":1508918957,\"isDeleted\":false,\"id\":\"Yw6Rfxk9JC5Yz5zc-eSe1\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":1173.2039934935192,\"y\":431.5454318551517,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":1899716355,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1854,\"versionNonce\":1525475597,\"isDeleted\":false,\"id\":\"r9X8r2e-IU-4uOj8-ogK3\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":1166.3526218693532,\"y\":498.46049471785045,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":824084131,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1895,\"versionNonce\":753287021,\"isDeleted\":false,\"id\":\"AehLLUFCZozgQX4Toa7s0\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":1174.0344627812983,\"y\":646.4293600676671,\"strokeColor\":\"#84142d\",\"backgroundColor\":\"#c92a2a\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":1165736515,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1900,\"versionNonce\":1982187981,\"isDeleted\":false,\"id\":\"2oN1kzH0BglNg7tMPByGT\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":923.6305646709343,\"y\":516.7561201121812,\"strokeColor\":\"#e9d349\",\"backgroundColor\":\"#ffff1a\",\"width\":50.92852907297534,\"height\":54.12583583092038,\"seed\":724662755,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1896,\"versionNonce\":1472530477,\"isDeleted\":false,\"id\":\"bw-ybwDYZW9Co-ra7geVg\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":1174.0344627812983,\"y\":710.7907298704495,\"strokeColor\":\"#e9d349\",\"backgroundColor\":\"#ffff1a\",\"width\":50.92852907297534,\"height\":54.12583583092038,\"seed\":1062094211,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1786,\"versionNonce\":330136205,\"isDeleted\":false,\"id\":\"1pOIxID11gw2SPX4-kI4V\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":581.9814898234536,\"y\":562.4597087177403,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":957390115,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1918,\"versionNonce\":1922605293,\"isDeleted\":false,\"id\":\"Bs2OQlFY7_ZvsBqJsyNWM\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":1169.4461199663256,\"y\":573.098921956883,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":1676083395,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1865,\"versionNonce\":1779432269,\"isDeleted\":false,\"id\":\"KoLxPv_IMTLBvhWXziSHh\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":760.5758403084437,\"y\":662.3544299287745,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":426766435,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1950,\"versionNonce\":40700333,\"isDeleted\":false,\"id\":\"yplTD4fI3koUQL7YIgQ_T\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":924.5805300168058,\"y\":598.3471360923454,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":2071587843,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"ellipse\",\"version\":1680,\"versionNonce\":2094615565,\"isDeleted\":false,\"id\":\"--FJFvSfXRUDL4S8iAEJh\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":954.5373801096221,\"y\":597.2933874185154,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#c92a2a\",\"width\":12.471776185810908,\"height\":8.634306590176644,\"seed\":1845719971,\"groupIds\":[\"IODJZpYL7Pj4PpeUmE0R8\"],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"ellipse\",\"version\":1632,\"versionNonce\":961430125,\"isDeleted\":false,\"id\":\"6CLywlmpvMp5LFARq5JMj\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":4.728678266311217,\"x\":951.1180548423781,\"y\":605.6280350626122,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#c92a2a\",\"width\":19.328773322340993,\"height\":16.96574827850908,\"seed\":1362822979,\"groupIds\":[\"IODJZpYL7Pj4PpeUmE0R8\"],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"line\",\"version\":1413,\"versionNonce\":1553296589,\"isDeleted\":false,\"id\":\"bRBU8YNiFbqPwhvr6PrS5\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":968.7321718723288,\"y\":609.8908283833497,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":2071930595,\"groupIds\":[\"IODJZpYL7Pj4PpeUmE0R8\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1437,\"versionNonce\":910707501,\"isDeleted\":false,\"id\":\"9jd_517YU6HqAkRuh3DYq\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":970.2107898867434,\"y\":614.592951019859,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":1935561347,\"groupIds\":[\"IODJZpYL7Pj4PpeUmE0R8\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1464,\"versionNonce\":1724931469,\"isDeleted\":false,\"id\":\"YE1uLTZvZoBTGATl2Yoyg\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":965.3292921881111,\"y\":622.1134166368525,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":1771506211,\"groupIds\":[\"IODJZpYL7Pj4PpeUmE0R8\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1446,\"versionNonce\":1164387309,\"isDeleted\":false,\"id\":\"RqJhn8XLHxMj5J50pYF_H\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":953.0372574104567,\"y\":610.168614480021,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.111294126751562,\"height\":3.8890053533873536,\"seed\":1930939843,\"groupIds\":[\"IODJZpYL7Pj4PpeUmE0R8\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-3.7501123050520944,-3.889005353387353],[-6.111294126751561,0]]},{\"type\":\"line\",\"version\":1424,\"versionNonce\":102112845,\"isDeleted\":false,\"id\":\"wiZeM5QTLD7hXAtBo31KO\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":952.759471313776,\"y\":616.6965877517766,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.111294126751562,\"height\":4.722363643398934,\"seed\":50273635,\"groupIds\":[\"IODJZpYL7Pj4PpeUmE0R8\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-2.7778609667052487,-4.722363643398935],[-6.111294126751561,-1.5278235316878936]]},{\"type\":\"line\",\"version\":1419,\"versionNonce\":532073645,\"isDeleted\":false,\"id\":\"KuMwyiqX2b2EXg7ypUQ8e\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":954.7039739904744,\"y\":621.0022722501726,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.527973271757348,\"height\":3.333433160046305,\"seed\":614168835,\"groupIds\":[\"IODJZpYL7Pj4PpeUmE0R8\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-3.3334331600463027,-3.333433160046305],[-6.527973271757348,-0.8333582900115799]]},{\"type\":\"line\",\"version\":1433,\"versionNonce\":1911729933,\"isDeleted\":false,\"id\":\"sF0MtHWHmSfULU4aQosVw\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":963.7320221322661,\"y\":597.2515609848405,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":4.4445775467284045,\"height\":3.194540111711042,\"seed\":1969971363,\"groupIds\":[\"IODJZpYL7Pj4PpeUmE0R8\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[1.6667165800231543,-3.194540111711042],[4.4445775467284045,-0.9722513383468374]]},{\"type\":\"line\",\"version\":1407,\"versionNonce\":725828973,\"isDeleted\":false,\"id\":\"p38e-0slzg3wXOw9f5wfr\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":957.3429419088384,\"y\":597.9460262265186,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":4.3056844983931475,\"height\":3.055647063375781,\"seed\":1595757635,\"groupIds\":[\"IODJZpYL7Pj4PpeUmE0R8\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-1.3889304833526368,-3.0556470633757806],[-4.3056844983931475,-2.7778609667052603]]},{\"type\":\"rectangle\",\"version\":1893,\"versionNonce\":1861357517,\"isDeleted\":false,\"id\":\"koDKD6WcloHjdUi024Thu\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":1104.1577150870962,\"y\":428.7759233133736,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":294638563,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1894,\"versionNonce\":991465005,\"isDeleted\":false,\"id\":\"wCrVqZt8W6Rp3OXjvoMG0\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":1097.3063434629303,\"y\":495.69098617607233,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":1020354435,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1935,\"versionNonce\":245383309,\"isDeleted\":false,\"id\":\"3TcgF1JLRcR-qv9F6L4VW\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":1104.9881843748753,\"y\":643.659851525889,\"strokeColor\":\"#84142d\",\"backgroundColor\":\"#c92a2a\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":186677027,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1936,\"versionNonce\":1329768173,\"isDeleted\":false,\"id\":\"r0czvrUh12plkrxy_QZkI\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":1104.9881843748753,\"y\":708.0212213286713,\"strokeColor\":\"#e9d349\",\"backgroundColor\":\"#ffff1a\",\"width\":50.92852907297534,\"height\":54.12583583092038,\"seed\":1525390019,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1958,\"versionNonce\":1871266125,\"isDeleted\":false,\"id\":\"aPM0HObYzz9UDufUtvM5q\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":1100.3998415599026,\"y\":570.3294134151049,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":953240163,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1992,\"versionNonce\":1422757805,\"isDeleted\":false,\"id\":\"_s8D27CpFziq_3iL-a7uO\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":989.254625787873,\"y\":443.8274204720194,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":429917699,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"ellipse\",\"version\":1722,\"versionNonce\":2100892173,\"isDeleted\":false,\"id\":\"xedSmTEWtHCLI6ieUT9Vs\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1019.2114758806892,\"y\":442.7736717981895,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#c92a2a\",\"width\":12.471776185810908,\"height\":8.634306590176644,\"seed\":1414942115,\"groupIds\":[\"IIw2iYP7lal8kigv8OmHG\"],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"ellipse\",\"version\":1674,\"versionNonce\":1707427949,\"isDeleted\":false,\"id\":\"iBoThSrWuMxt0gIWJN2Il\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":4.728678266311217,\"x\":1015.7921506134453,\"y\":451.1083194422861,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#c92a2a\",\"width\":19.328773322340993,\"height\":16.96574827850908,\"seed\":1545773379,\"groupIds\":[\"IIw2iYP7lal8kigv8OmHG\"],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"line\",\"version\":1455,\"versionNonce\":809218765,\"isDeleted\":false,\"id\":\"iJ7ID5NGch0_FNhhViPHi\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1033.406267643396,\"y\":455.3711127630238,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":979599587,\"groupIds\":[\"IIw2iYP7lal8kigv8OmHG\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1479,\"versionNonce\":154521901,\"isDeleted\":false,\"id\":\"macYQQ-W_-R9zKBVuSWSX\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1034.8848856578106,\"y\":460.0732353995329,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":1218931843,\"groupIds\":[\"IIw2iYP7lal8kigv8OmHG\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1506,\"versionNonce\":1310532493,\"isDeleted\":false,\"id\":\"8lxYr3CELjM9eOPWkPU16\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1030.0033879591783,\"y\":467.59370101652644,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":715973667,\"groupIds\":[\"IIw2iYP7lal8kigv8OmHG\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1488,\"versionNonce\":1932208621,\"isDeleted\":false,\"id\":\"z_ZuHFRhA2CyEuT4Y4775\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1017.7113531815239,\"y\":455.648898859695,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.111294126751562,\"height\":3.8890053533873536,\"seed\":140666819,\"groupIds\":[\"IIw2iYP7lal8kigv8OmHG\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-3.7501123050520944,-3.889005353387353],[-6.111294126751561,0]]},{\"type\":\"line\",\"version\":1466,\"versionNonce\":694772813,\"isDeleted\":false,\"id\":\"bYCGt6Y_VsZLyNmz3ky4N\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1017.4335670848432,\"y\":462.17687213145064,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.111294126751562,\"height\":4.722363643398934,\"seed\":132544355,\"groupIds\":[\"IIw2iYP7lal8kigv8OmHG\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-2.7778609667052487,-4.722363643398935],[-6.111294126751561,-1.5278235316878936]]},{\"type\":\"line\",\"version\":1461,\"versionNonce\":1152471725,\"isDeleted\":false,\"id\":\"OyW3HbF5kaLCCjemCq3GH\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1019.3780697615412,\"y\":466.4825566298466,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.527973271757348,\"height\":3.333433160046305,\"seed\":126325507,\"groupIds\":[\"IIw2iYP7lal8kigv8OmHG\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-3.3334331600463027,-3.333433160046305],[-6.527973271757348,-0.8333582900115799]]},{\"type\":\"line\",\"version\":1475,\"versionNonce\":1638692109,\"isDeleted\":false,\"id\":\"mDs5dcBLsmYPO_R5E5bVY\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1028.4061179033333,\"y\":442.7318453645146,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":4.4445775467284045,\"height\":3.194540111711042,\"seed\":398736035,\"groupIds\":[\"IIw2iYP7lal8kigv8OmHG\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[1.6667165800231543,-3.194540111711042],[4.4445775467284045,-0.9722513383468374]]},{\"type\":\"line\",\"version\":1449,\"versionNonce\":1272204141,\"isDeleted\":false,\"id\":\"mejvtmeM3lEy3rH49iaiO\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1022.017037679906,\"y\":443.4263106061926,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":4.3056844983931475,\"height\":3.055647063375781,\"seed\":894103107,\"groupIds\":[\"IIw2iYP7lal8kigv8OmHG\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-1.3889304833526368,-3.0556470633757806],[-4.3056844983931475,-2.7778609667052603]]},{\"type\":\"rectangle\",\"version\":1976,\"versionNonce\":594695629,\"isDeleted\":false,\"id\":\"3UZ6RbDlWMkEWgoZtyKNL\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":990.254625787873,\"y\":519.8274204720194,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":1123692003,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"ellipse\",\"version\":1709,\"versionNonce\":1134564397,\"isDeleted\":false,\"id\":\"WbSDZ23nw7-UacRmQJt5D\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1020.2114758806892,\"y\":518.7736717981895,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#c92a2a\",\"width\":12.471776185810908,\"height\":8.634306590176644,\"seed\":1138784643,\"groupIds\":[\"FXQS4n1QQ5NM2u35Xoz5R\"],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"ellipse\",\"version\":1661,\"versionNonce\":1749485197,\"isDeleted\":false,\"id\":\"EOPPbHCJY9dhdgMyOwLWK\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":4.728678266311217,\"x\":1016.7921506134453,\"y\":527.1083194422861,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#c92a2a\",\"width\":19.328773322340993,\"height\":16.96574827850908,\"seed\":1430016291,\"groupIds\":[\"FXQS4n1QQ5NM2u35Xoz5R\"],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"line\",\"version\":1442,\"versionNonce\":337685741,\"isDeleted\":false,\"id\":\"pZ7RPeKsfZOCbxGmkVPbj\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1034.406267643396,\"y\":531.3711127630238,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":1752970435,\"groupIds\":[\"FXQS4n1QQ5NM2u35Xoz5R\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1466,\"versionNonce\":917931853,\"isDeleted\":false,\"id\":\"eEzOZQiuihTTpV_Vi122p\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1035.8848856578106,\"y\":536.0732353995329,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":1027515491,\"groupIds\":[\"FXQS4n1QQ5NM2u35Xoz5R\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1493,\"versionNonce\":308417965,\"isDeleted\":false,\"id\":\"sIfK0QEGfrYKOA5GUGLD1\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1031.0033879591783,\"y\":543.5937010165264,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":458366979,\"groupIds\":[\"FXQS4n1QQ5NM2u35Xoz5R\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1475,\"versionNonce\":1649203213,\"isDeleted\":false,\"id\":\"0J1LgOjgyhR_SwlbCKL0g\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1018.7113531815239,\"y\":531.648898859695,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.111294126751562,\"height\":3.8890053533873536,\"seed\":1286940579,\"groupIds\":[\"FXQS4n1QQ5NM2u35Xoz5R\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-3.7501123050520944,-3.889005353387353],[-6.111294126751561,0]]},{\"type\":\"line\",\"version\":1453,\"versionNonce\":1081101933,\"isDeleted\":false,\"id\":\"fW9izBa4CNOU3gdAXebeC\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1018.4335670848432,\"y\":538.1768721314506,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.111294126751562,\"height\":4.722363643398934,\"seed\":1469463363,\"groupIds\":[\"FXQS4n1QQ5NM2u35Xoz5R\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-2.7778609667052487,-4.722363643398935],[-6.111294126751561,-1.5278235316878936]]},{\"type\":\"line\",\"version\":1448,\"versionNonce\":1268119757,\"isDeleted\":false,\"id\":\"nFAwfIzBj_WCf9le-vPYs\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1020.3780697615412,\"y\":542.4825566298466,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.527973271757348,\"height\":3.333433160046305,\"seed\":2018761443,\"groupIds\":[\"FXQS4n1QQ5NM2u35Xoz5R\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-3.3334331600463027,-3.333433160046305],[-6.527973271757348,-0.8333582900115799]]},{\"type\":\"line\",\"version\":1462,\"versionNonce\":223827757,\"isDeleted\":false,\"id\":\"Cq16kQExmFKOVXHF2MJLt\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1029.4061179033333,\"y\":518.7318453645146,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":4.4445775467284045,\"height\":3.194540111711042,\"seed\":1534887555,\"groupIds\":[\"FXQS4n1QQ5NM2u35Xoz5R\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[1.6667165800231543,-3.194540111711042],[4.4445775467284045,-0.9722513383468374]]},{\"type\":\"line\",\"version\":1436,\"versionNonce\":538831245,\"isDeleted\":false,\"id\":\"gYPT_zDOaqJVt-r4G1FsT\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1023.017037679906,\"y\":519.4263106061926,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":4.3056844983931475,\"height\":3.055647063375781,\"seed\":399425059,\"groupIds\":[\"FXQS4n1QQ5NM2u35Xoz5R\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-1.3889304833526368,-3.0556470633757806],[-4.3056844983931475,-2.7778609667052603]]},{\"type\":\"rectangle\",\"version\":1893,\"versionNonce\":354627565,\"isDeleted\":false,\"id\":\"TC_5QNNL9wufhcKN2DkoQ\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":990.4310544602922,\"y\":590.6823628624115,\"strokeColor\":\"#84142d\",\"backgroundColor\":\"#c92a2a\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":1748566467,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1829,\"versionNonce\":443591245,\"isDeleted\":false,\"id\":\"Q355NU9MgHp5_bxJzrM7e\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":815.4310544602922,\"y\":444.68236286241154,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":635031907,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1925,\"versionNonce\":1625282733,\"isDeleted\":false,\"id\":\"DkOHRY8Px8LfFOC6MscAc\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":815.4310544602922,\"y\":518.6823628624115,\"strokeColor\":\"#84142d\",\"backgroundColor\":\"#c92a2a\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":33533187,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1882,\"versionNonce\":1109015309,\"isDeleted\":false,\"id\":\"aUdMMIvuSKZRpodXwIFqJ\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":815.4310544602922,\"y\":586.6823628624115,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":2692259,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1981,\"versionNonce\":647582061,\"isDeleted\":false,\"id\":\"B3wc0uFOVW6XaoylaG27_\",\"fillStyle\":\"hachure\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":258.6241116289866,\"y\":510.0337353311961,\"strokeColor\":\"#e67700\",\"backgroundColor\":\"#fab005\",\"width\":44.008394151477845,\"height\":47.04345581709699,\"seed\":805603395,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"text\",\"version\":1969,\"versionNonce\":732339149,\"isDeleted\":false,\"id\":\"QJoL0zKGQjppNG-W_PyFW\",\"fillStyle\":\"hachure\",\"strokeWidth\":1,\"strokeStyle\":\"dotted\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":352.62899456951163,\"y\":528.168202150576,\"strokeColor\":\"#495057\",\"backgroundColor\":\"#868e96\",\"width\":45,\"height\":30,\"seed\":661686243,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":23.844697551811258,\"fontFamily\":1,\"text\":\"Epic\",\"textAlign\":\"left\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"Epic\",\"lineHeight\":1.258141351334573,\"baseline\":21.80460756797025},{\"type\":\"rectangle\",\"version\":1995,\"versionNonce\":156998189,\"isDeleted\":false,\"id\":\"KvARoP24nXy3mYDAaxc2o\",\"fillStyle\":\"hachure\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":256.14087935711177,\"y\":602.7410734810205,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":44.008394151477845,\"height\":47.04345581709699,\"seed\":1014731651,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"text\",\"version\":2046,\"versionNonce\":950127757,\"isDeleted\":false,\"id\":\"YyDkg4gSKdZV5mQmtARKX\",\"fillStyle\":\"hachure\",\"strokeWidth\":1,\"strokeStyle\":\"dotted\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":338.07894672034854,\"y\":601.2235426482107,\"strokeColor\":\"#495057\",\"backgroundColor\":\"#868e96\",\"width\":145,\"height\":30,\"seed\":2137271075,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":24.179336509860274,\"fontFamily\":1,\"text\":\"User history\",\"textAlign\":\"center\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"User history\",\"lineHeight\":1.2407288342161942,\"baseline\":22.22250797881134},{\"type\":\"text\",\"version\":2039,\"versionNonce\":1496494829,\"isDeleted\":false,\"id\":\"99IHM5m6PpzYJ67pSfSjM\",\"fillStyle\":\"hachure\",\"strokeWidth\":1,\"strokeStyle\":\"dotted\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":332.9306307457491,\"y\":696.4914555988303,\"strokeColor\":\"#495057\",\"backgroundColor\":\"#868e96\",\"width\":61,\"height\":31,\"seed\":1956171459,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":24.280493324953294,\"fontFamily\":1,\"text\":\"Task\",\"textAlign\":\"left\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"Task\",\"lineHeight\":1.2767450638303548,\"baseline\":23.35811846807148},{\"type\":\"text\",\"version\":2311,\"versionNonce\":1469566285,\"isDeleted\":false,\"id\":\"9MxJ5DXmpr2vfDUCfHoH5\",\"fillStyle\":\"hachure\",\"strokeWidth\":1,\"strokeStyle\":\"dotted\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":339.9148133783019,\"y\":436.5948840579856,\"strokeColor\":\"#495057\",\"backgroundColor\":\"#868e96\",\"width\":145,\"height\":30,\"seed\":246939235,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":24.037688391703753,\"fontFamily\":1,\"text\":\"Architecture\",\"textAlign\":\"left\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"Architecture\",\"lineHeight\":1.2480401405966328,\"baseline\":22.04703662568081},{\"type\":\"rectangle\",\"version\":2197,\"versionNonce\":1395301293,\"isDeleted\":false,\"id\":\"W2dvidT3x0cM00SaDd-Ph\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":248.1114966976411,\"y\":698.0089864316412,\"strokeColor\":\"#e9d349\",\"backgroundColor\":\"#ffff1a\",\"width\":48.344196530933495,\"height\":51.37925819655303,\"seed\":1754282499,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":2412,\"versionNonce\":1142201869,\"isDeleted\":false,\"id\":\"QXTqw-rBY9ZyBWew045Wk\",\"fillStyle\":\"hachure\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":263.1569959347671,\"y\":415.286599243771,\"strokeColor\":\"#c92a2a\",\"backgroundColor\":\"#c92a2a\",\"width\":44.008394151477845,\"height\":47.04345581709699,\"seed\":1059062179,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":2578,\"versionNonce\":1632588909,\"isDeleted\":false,\"id\":\"bVvsYXAH2IS9ES1cEvv2e\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":246.06999292119963,\"y\":428.4823291117493,\"strokeColor\":\"#84142d\",\"backgroundColor\":\"#c92a2a\",\"width\":44.008394151477845,\"height\":47.04345581709699,\"seed\":731239747,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":2002,\"versionNonce\":1185169101,\"isDeleted\":false,\"id\":\"g_ZOK3sC19l3OYrGaRJw_\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":244.6904194368244,\"y\":522.2933260490661,\"strokeColor\":\"#e67700\",\"backgroundColor\":\"#fab005\",\"width\":44.008394151477845,\"height\":47.04345581709699,\"seed\":491795683,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":2014,\"versionNonce\":1521278253,\"isDeleted\":false,\"id\":\"k9KXbbgEvZXGIPaT11cl0\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":246.06999292119963,\"y\":618.4495979098174,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":44.008394151477845,\"height\":47.04345581709699,\"seed\":333291651,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"line\",\"version\":113,\"versionNonce\":1959964557,\"isDeleted\":false,\"id\":\"k2lsgqsLpciIH2BxSXndQ\",\"fillStyle\":\"solid\",\"strokeWidth\":4,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":567.3095805631756,\"y\":383.34458416344,\"strokeColor\":\"#000000\",\"backgroundColor\":\"transparent\",\"width\":680,\"height\":0,\"seed\":419207203,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[680,0]]},{\"type\":\"line\",\"version\":82,\"versionNonce\":1129264621,\"isDeleted\":false,\"id\":\"jS1LQhN8yOsPnJ0LsVCuO\",\"fillStyle\":\"solid\",\"strokeWidth\":4,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":727.3095805631756,\"y\":298.34458416344,\"strokeColor\":\"#000000\",\"backgroundColor\":\"transparent\",\"width\":0,\"height\":540,\"seed\":2057018307,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[0,540]]},{\"type\":\"line\",\"version\":71,\"versionNonce\":1898704973,\"isDeleted\":false,\"id\":\"w0JzjX4owjRiEz-nNl_Io\",\"fillStyle\":\"solid\",\"strokeWidth\":4,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":887.3095805631756,\"y\":298.34458416344,\"strokeColor\":\"#000000\",\"backgroundColor\":\"transparent\",\"width\":0,\"height\":540,\"seed\":1155083107,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[0,540]]},{\"type\":\"line\",\"version\":58,\"versionNonce\":205676205,\"isDeleted\":false,\"id\":\"R0L-H1-IHgzF_GHyApSb4\",\"fillStyle\":\"solid\",\"strokeWidth\":4,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1067.3095805631756,\"y\":298.34458416344,\"strokeColor\":\"#000000\",\"backgroundColor\":\"transparent\",\"width\":0,\"height\":540,\"seed\":2080622339,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[0,540]]},{\"type\":\"rectangle\",\"version\":2015,\"versionNonce\":725352717,\"isDeleted\":false,\"id\":\"92t9ZBzAdg22NNZ5untZ3\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":645.0746113578589,\"y\":426.48544711232034,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":379186851,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1999,\"versionNonce\":154559277,\"isDeleted\":false,\"id\":\"FBo3Ddcj9n-bnYlH6kQd1\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":646.0746113578589,\"y\":502.48544711232046,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":1506458243,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1916,\"versionNonce\":108419405,\"isDeleted\":false,\"id\":\"uW-yjc5H6fCtmDSUGS57G\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":646.2510400302781,\"y\":573.3403895027126,\"strokeColor\":\"#84142d\",\"backgroundColor\":\"#c92a2a\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":953070179,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1967,\"versionNonce\":1045931949,\"isDeleted\":false,\"id\":\"oS9fvw13j1s6K0TJpDShi\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":644.4635002467485,\"y\":647.6906960852943,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":95448579,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"ellipse\",\"version\":1698,\"versionNonce\":1572874765,\"isDeleted\":false,\"id\":\"2AJy_LViL22XgTAR-nW2w\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":674.4203503395647,\"y\":646.6369474114645,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#c92a2a\",\"width\":12.471776185810908,\"height\":8.634306590176644,\"seed\":840545699,\"groupIds\":[\"s6C46DMjtV2hBVdObNF_-\"],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"ellipse\",\"version\":1650,\"versionNonce\":1437163629,\"isDeleted\":false,\"id\":\"6_6O1SZHDlquc5UE7BSSO\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":4.728678266311217,\"x\":671.0010250723208,\"y\":654.971595055561,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#c92a2a\",\"width\":19.328773322340993,\"height\":16.96574827850908,\"seed\":2100889923,\"groupIds\":[\"s6C46DMjtV2hBVdObNF_-\"],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"line\",\"version\":1431,\"versionNonce\":1004325581,\"isDeleted\":false,\"id\":\"bnX5QUs4DndwH0QpcLV-Z\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":688.6151421022714,\"y\":659.2343883762987,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":1013770467,\"groupIds\":[\"s6C46DMjtV2hBVdObNF_-\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1455,\"versionNonce\":821291309,\"isDeleted\":false,\"id\":\"Z3sBCgX_Om4qs7iLbSvO6\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":690.0937601166861,\"y\":663.9365110128078,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":356766851,\"groupIds\":[\"s6C46DMjtV2hBVdObNF_-\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1482,\"versionNonce\":106445709,\"isDeleted\":false,\"id\":\"2vHgjXiD7V5Pv8fRiNLh1\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":685.2122624180538,\"y\":671.4569766298014,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":2004634659,\"groupIds\":[\"s6C46DMjtV2hBVdObNF_-\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1464,\"versionNonce\":608387565,\"isDeleted\":false,\"id\":\"-5evlL-dijUPRNB9rC-xs\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":672.9202276403994,\"y\":659.51217447297,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.111294126751562,\"height\":3.8890053533873536,\"seed\":1459933123,\"groupIds\":[\"s6C46DMjtV2hBVdObNF_-\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-3.7501123050520944,-3.889005353387353],[-6.111294126751561,0]]},{\"type\":\"line\",\"version\":1442,\"versionNonce\":801012813,\"isDeleted\":false,\"id\":\"T-v88QOi3GEPGregjbfrx\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":672.6424415437186,\"y\":666.0401477447256,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.111294126751562,\"height\":4.722363643398934,\"seed\":637263715,\"groupIds\":[\"s6C46DMjtV2hBVdObNF_-\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-2.7778609667052487,-4.722363643398935],[-6.111294126751561,-1.5278235316878936]]},{\"type\":\"line\",\"version\":1437,\"versionNonce\":1889757869,\"isDeleted\":false,\"id\":\"Sd4EOctRaUyAGXZZlXtHV\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":674.5869442204175,\"y\":670.3458322431215,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.527973271757348,\"height\":3.333433160046305,\"seed\":246414083,\"groupIds\":[\"s6C46DMjtV2hBVdObNF_-\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-3.3334331600463027,-3.333433160046305],[-6.527973271757348,-0.8333582900115799]]},{\"type\":\"line\",\"version\":1451,\"versionNonce\":2006682893,\"isDeleted\":false,\"id\":\"T5ViAfbmCEYiyZhaY6OzQ\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":683.6149923622088,\"y\":646.5951209777895,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":4.4445775467284045,\"height\":3.194540111711042,\"seed\":1839178403,\"groupIds\":[\"s6C46DMjtV2hBVdObNF_-\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[1.6667165800231543,-3.194540111711042],[4.4445775467284045,-0.9722513383468374]]},{\"type\":\"line\",\"version\":1425,\"versionNonce\":69231469,\"isDeleted\":false,\"id\":\"V3VlMSpiImQR2e2oK0gey\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":677.2259121387806,\"y\":647.2895862194675,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":4.3056844983931475,\"height\":3.055647063375781,\"seed\":192501315,\"groupIds\":[\"s6C46DMjtV2hBVdObNF_-\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-1.3889304833526368,-3.0556470633757806],[-4.3056844983931475,-2.7778609667052603]]},{\"type\":\"rectangle\",\"version\":1967,\"versionNonce\":712732109,\"isDeleted\":false,\"id\":\"1c29ZhwZuSEGPJReZAaRK\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":644.4635002467485,\"y\":716.5795849741831,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":387683811,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"ellipse\",\"version\":1702,\"versionNonce\":969288749,\"isDeleted\":false,\"id\":\"Q6JW7bbayg9GI3gniw4ln\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":674.4203503395647,\"y\":714.8115505860674,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#c92a2a\",\"width\":12.471776185810908,\"height\":8.634306590176644,\"seed\":1603592579,\"groupIds\":[\"yEfL64HT-qz4XzBp4uFET\"],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"ellipse\",\"version\":1654,\"versionNonce\":1642733197,\"isDeleted\":false,\"id\":\"0qQQF-dG7V73Maxz9aqlz\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":4.728678266311217,\"x\":671.0010250723208,\"y\":723.1461982301644,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#c92a2a\",\"width\":19.328773322340993,\"height\":16.96574827850908,\"seed\":1310964003,\"groupIds\":[\"yEfL64HT-qz4XzBp4uFET\"],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"line\",\"version\":1435,\"versionNonce\":429966573,\"isDeleted\":false,\"id\":\"ckpPFpn6bJ6j5FQhEPGwy\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":688.6151421022714,\"y\":727.4089915509016,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":540449987,\"groupIds\":[\"yEfL64HT-qz4XzBp4uFET\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1459,\"versionNonce\":1148428109,\"isDeleted\":false,\"id\":\"Jf7jd6VOj_WvOj95HW0H_\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":690.0937601166861,\"y\":732.1111141874112,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":1634471011,\"groupIds\":[\"yEfL64HT-qz4XzBp4uFET\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1486,\"versionNonce\":414985645,\"isDeleted\":false,\"id\":\"81Ff7uf9auB9RbgcbbijU\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":685.2122624180538,\"y\":739.6315798044047,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":630360067,\"groupIds\":[\"yEfL64HT-qz4XzBp4uFET\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1468,\"versionNonce\":1168371725,\"isDeleted\":false,\"id\":\"yKxknyE0yg-YYvhu2MZ-u\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":672.9202276403994,\"y\":727.6867776475731,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.111294126751562,\"height\":3.8890053533873536,\"seed\":44601251,\"groupIds\":[\"yEfL64HT-qz4XzBp4uFET\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-3.7501123050520944,-3.889005353387353],[-6.111294126751561,0]]},{\"type\":\"line\",\"version\":1446,\"versionNonce\":1495557741,\"isDeleted\":false,\"id\":\"cNVpdzRYiW-2YaHXl2HaG\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":672.6424415437186,\"y\":734.2147509193287,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.111294126751562,\"height\":4.722363643398934,\"seed\":1255973699,\"groupIds\":[\"yEfL64HT-qz4XzBp4uFET\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-2.7778609667052487,-4.722363643398935],[-6.111294126751561,-1.5278235316878936]]},{\"type\":\"line\",\"version\":1441,\"versionNonce\":1711739085,\"isDeleted\":false,\"id\":\"DL_XMKMhFHCOONlY0WJxX\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":674.5869442204175,\"y\":738.5204354177247,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.527973271757348,\"height\":3.333433160046305,\"seed\":109920995,\"groupIds\":[\"yEfL64HT-qz4XzBp4uFET\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-3.3334331600463027,-3.333433160046305],[-6.527973271757348,-0.8333582900115799]]},{\"type\":\"line\",\"version\":1455,\"versionNonce\":1776643885,\"isDeleted\":false,\"id\":\"5w1orMD2F8XkNqcAFUgFV\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":683.6149923622088,\"y\":714.7697241523924,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":4.4445775467284045,\"height\":3.194540111711042,\"seed\":776531587,\"groupIds\":[\"yEfL64HT-qz4XzBp4uFET\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[1.6667165800231543,-3.194540111711042],[4.4445775467284045,-0.9722513383468374]]},{\"type\":\"line\",\"version\":1429,\"versionNonce\":1932067213,\"isDeleted\":false,\"id\":\"Gd1TJnt1ml_iQw36jZIux\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":677.2259121387806,\"y\":715.4641893940707,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":4.3056844983931475,\"height\":3.055647063375781,\"seed\":617489955,\"groupIds\":[\"yEfL64HT-qz4XzBp4uFET\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-1.3889304833526368,-3.0556470633757806],[-4.3056844983931475,-2.7778609667052603]]},{\"type\":\"text\",\"version\":24,\"versionNonce\":118179821,\"isDeleted\":false,\"id\":\"1Hk2PGUBxawfOrajaKw02\",\"fillStyle\":\"solid\",\"strokeWidth\":4,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":624.1537362475992,\"y\":354.6580991830908,\"strokeColor\":\"#000000\",\"backgroundColor\":\"transparent\",\"width\":34,\"height\":25,\"seed\":1896573379,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":20,\"fontFamily\":1,\"text\":\"(10)\",\"textAlign\":\"left\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"(10)\",\"lineHeight\":1.25,\"baseline\":19},{\"type\":\"text\",\"version\":52,\"versionNonce\":1200996941,\"isDeleted\":false,\"id\":\"opeuqqfU4M-C7CE63lhOf\",\"fillStyle\":\"solid\",\"strokeWidth\":4,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":789.3759584698214,\"y\":355.60254362753506,\"strokeColor\":\"#000000\",\"backgroundColor\":\"transparent\",\"width\":26,\"height\":25,\"seed\":941570403,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":20,\"fontFamily\":1,\"text\":\"(7)\",\"textAlign\":\"left\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"(7)\",\"lineHeight\":1.25,\"baseline\":19},{\"type\":\"text\",\"version\":86,\"versionNonce\":1503785133,\"isDeleted\":false,\"id\":\"V7hvEUvy0aP3CkhDkBpDk\",\"fillStyle\":\"solid\",\"strokeWidth\":4,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":960.598180692044,\"y\":355.60254362753517,\"strokeColor\":\"#000000\",\"backgroundColor\":\"transparent\",\"width\":28,\"height\":25,\"seed\":2002261251,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":20,\"fontFamily\":1,\"text\":\"(6)\",\"textAlign\":\"left\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"(6)\",\"lineHeight\":1.25,\"baseline\":19},{\"type\":\"text\",\"version\":114,\"versionNonce\":182014733,\"isDeleted\":false,\"id\":\"8hCxFarAyL3wTjrEd667h\",\"fillStyle\":\"solid\",\"strokeWidth\":4,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1140.1537362475992,\"y\":356.82476584975745,\"strokeColor\":\"#000000\",\"backgroundColor\":\"transparent\",\"width\":34,\"height\":25,\"seed\":2117368995,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":20,\"fontFamily\":1,\"text\":\"(10)\",\"textAlign\":\"left\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"(10)\",\"lineHeight\":1.25,\"baseline\":19},{\"type\":\"line\",\"version\":131,\"versionNonce\":934635885,\"isDeleted\":false,\"id\":\"Y3p3a2ULwlAFLaK2ytOxj\",\"fillStyle\":\"solid\",\"strokeWidth\":4,\"strokeStyle\":\"dashed\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":900.8204029142662,\"y\":667.2136547386464,\"strokeColor\":\"#e67700\",\"backgroundColor\":\"transparent\",\"width\":151.11111111111086,\"height\":0,\"seed\":677572675,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[151.11111111111086,0]]},{\"type\":\"text\",\"version\":199,\"versionNonce\":1904194509,\"isDeleted\":false,\"id\":\"1yssJxkhiX_c_m4YS_Xb5\",\"fillStyle\":\"solid\",\"strokeWidth\":4,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":960.0426251364888,\"y\":675.8247658497576,\"strokeColor\":\"#e67700\",\"backgroundColor\":\"transparent\",\"width\":39,\"height\":25,\"seed\":1472327651,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":20,\"fontFamily\":1,\"text\":\"WIP\",\"textAlign\":\"left\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"WIP\",\"lineHeight\":1.25,\"baseline\":19},{\"type\":\"line\",\"version\":86,\"versionNonce\":1683075629,\"isDeleted\":false,\"id\":\"Dkgea9GnIV-i26en68rTb\",\"fillStyle\":\"solid\",\"strokeWidth\":4,\"strokeStyle\":\"dashed\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":739.1537362475992,\"y\":729.0747658497573,\"strokeColor\":\"#e67700\",\"backgroundColor\":\"transparent\",\"width\":141.11111111111086,\"height\":1.1111111111110858,\"seed\":778042243,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[141.11111111111086,-1.1111111111110858]]},{\"type\":\"text\",\"version\":140,\"versionNonce\":2098521229,\"isDeleted\":false,\"id\":\"3rmoFEmwQKKku7gUKuIfW\",\"fillStyle\":\"solid\",\"strokeWidth\":4,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":793.3759584698219,\"y\":737.6858769608687,\"strokeColor\":\"#e67700\",\"backgroundColor\":\"transparent\",\"width\":39,\"height\":25,\"seed\":142316323,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":20,\"fontFamily\":1,\"text\":\"WIP\",\"textAlign\":\"left\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"WIP\",\"lineHeight\":1.25,\"baseline\":19}],\"appState\":{\"showWelcomeScreen\":true,\"theme\":\"dark\",\"collaborators\":[],\"currentChartType\":\"bar\",\"currentItemBackgroundColor\":\"transparent\",\"currentItemEndArrowhead\":\"arrow\",\"currentItemFillStyle\":\"solid\",\"currentItemFontFamily\":1,\"currentItemFontSize\":20,\"currentItemOpacity\":100,\"currentItemRoughness\":1,\"currentItemStartArrowhead\":null,\"currentItemStrokeColor\":\"#1e1e1e\",\"currentItemRoundness\":\"round\",\"currentItemStrokeStyle\":\"solid\",\"currentItemStrokeWidth\":2,\"currentItemTextAlign\":\"left\",\"cursorButton\":\"up\",\"activeEmbeddable\":null,\"draggingElement\":null,\"editingElement\":null,\"editingGroupId\":null,\"editingLinearElement\":null,\"activeTool\":{\"type\":\"selection\",\"customType\":null,\"locked\":false,\"lastActiveTool\":null},\"penMode\":false,\"penDetected\":false,\"errorMessage\":null,\"exportBackground\":true,\"exportScale\":2,\"exportEmbedScene\":false,\"exportWithDarkMode\":false,\"fileHandle\":null,\"gridSize\":null,\"isBindingEnabled\":true,\"defaultSidebarDockedPreference\":false,\"isLoading\":false,\"isResizing\":false,\"isRotating\":false,\"lastPointerDownWith\":\"mouse\",\"multiElement\":null,\"name\":\"Untitled-2025-12-02-0903\",\"contextMenu\":null,\"openMenu\":null,\"openPopup\":null,\"openSidebar\":null,\"openDialog\":null,\"pasteDialog\":{\"shown\":false,\"data\":null},\"previousSelectedElementIds\":[],\"resizingElement\":null,\"scrolledOutside\":false,\"scrollX\":474.0776096005857,\"scrollY\":128.2279898366936,\"selectedElementIds\":[],\"selectedGroupIds\":[],\"selectedElementsAreBeingDragged\":false,\"selectionElement\":null,\"shouldCacheIgnoreZoom\":false,\"showStats\":false,\"startBoundElement\":null,\"suggestedBindings\":[],\"frameRendering\":{\"enabled\":true,\"clip\":true,\"name\":true,\"outline\":true},\"frameToHighlight\":null,\"editingFrame\":null,\"elementsToHighlight\":null,\"toast\":null,\"viewBackgroundColor\":\"#ffffff\",\"zenModeEnabled\":false,\"zoom\":{\"value\":0.6041803956031799},\"viewModeEnabled\":false,\"pendingImageElementId\":null,\"showHyperlinkPopup\":false,\"selectedLinearElement\":null,\"snapLines\":[],\"originSnapOffset\":null,\"objectsSnapModeEnabled\":false,\"offsetLeft\":303,\"offsetTop\":189.5,\"width\":1119,\"height\":659},\"files\":[]}',NULL,NULL,NULL,0,1,1,'2025-12-02 14:03:14','2025-12-03 01:35:34'),
(6,'Untitled Diagram','','{\"type\":\"excalidraw\",\"version\":2,\"source\":\"m1_erp\",\"elements\":[{\"type\":\"rectangle\",\"version\":11,\"versionNonce\":211091787,\"isDeleted\":false,\"id\":\"eq80EKfu_iVyHuKnLyk6K\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":410,\"y\":109.5,\"strokeColor\":\"#1e1e1e\",\"backgroundColor\":\"transparent\",\"width\":452,\"height\":132,\"seed\":116474635,\"groupIds\":[],\"frameId\":null,\"roundness\":{\"type\":3},\"boundElements\":[],\"updated\":1764770684029,\"link\":null,\"locked\":false},{\"type\":\"arrow\",\"version\":19,\"versionNonce\":746335653,\"isDeleted\":false,\"id\":\"j4gbc-35Bh3voxdHfFso1\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":774,\"y\":157.5,\"strokeColor\":\"#1e1e1e\",\"backgroundColor\":\"transparent\",\"width\":193,\"height\":32,\"seed\":1151115243,\"groupIds\":[],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764770689802,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":\"arrow\",\"points\":[[0,0],[193,32]]},{\"id\":\"YAkFN9_R9CmpdyQ1lfJL0\",\"type\":\"rectangle\",\"x\":365,\"y\":287.5,\"width\":295,\"height\":244,\"angle\":0,\"strokeColor\":\"#1e1e1e\",\"backgroundColor\":\"transparent\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"groupIds\":[],\"frameId\":null,\"roundness\":{\"type\":3},\"seed\":1874998676,\"version\":8,\"versionNonce\":2021000212,\"isDeleted\":false,\"boundElements\":null,\"updated\":1764889617217,\"link\":null,\"locked\":false},{\"id\":\"QXswgLdgRENvLfKBYPM1k\",\"type\":\"text\",\"x\":532,\"y\":355.5,\"width\":51.31999969482422,\"height\":25,\"angle\":0,\"strokeColor\":\"#1e1e1e\",\"backgroundColor\":\"transparent\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"seed\":1556373908,\"version\":7,\"versionNonce\":1340932268,\"isDeleted\":false,\"boundElements\":null,\"updated\":1764889622393,\"link\":null,\"locked\":false,\"text\":\"here..\",\"fontSize\":20,\"fontFamily\":1,\"textAlign\":\"left\",\"verticalAlign\":\"top\",\"baseline\":18,\"containerId\":null,\"originalText\":\"here..\",\"lineHeight\":1.25}],\"appState\":{\"showWelcomeScreen\":true,\"theme\":\"dark\",\"collaborators\":[],\"currentChartType\":\"bar\",\"currentItemBackgroundColor\":\"transparent\",\"currentItemEndArrowhead\":\"arrow\",\"currentItemFillStyle\":\"solid\",\"currentItemFontFamily\":1,\"currentItemFontSize\":20,\"currentItemOpacity\":100,\"currentItemRoughness\":1,\"currentItemStartArrowhead\":null,\"currentItemStrokeColor\":\"#1e1e1e\",\"currentItemRoundness\":\"round\",\"currentItemStrokeStyle\":\"solid\",\"currentItemStrokeWidth\":2,\"currentItemTextAlign\":\"left\",\"cursorButton\":\"down\",\"activeEmbeddable\":null,\"draggingElement\":null,\"editingElement\":null,\"editingGroupId\":null,\"editingLinearElement\":null,\"activeTool\":{\"type\":\"selection\",\"customType\":null,\"locked\":false,\"lastActiveTool\":null},\"penMode\":false,\"penDetected\":false,\"errorMessage\":null,\"exportBackground\":true,\"exportScale\":2,\"exportEmbedScene\":false,\"exportWithDarkMode\":false,\"fileHandle\":null,\"gridSize\":null,\"isBindingEnabled\":true,\"defaultSidebarDockedPreference\":false,\"isLoading\":false,\"isResizing\":false,\"isRotating\":false,\"lastPointerDownWith\":\"mouse\",\"multiElement\":null,\"name\":\"Untitled-2025-12-03-0904\",\"contextMenu\":null,\"openMenu\":null,\"openPopup\":null,\"openSidebar\":null,\"openDialog\":null,\"pasteDialog\":{\"shown\":false,\"data\":null},\"previousSelectedElementIds\":[],\"resizingElement\":null,\"scrolledOutside\":false,\"scrollX\":0,\"scrollY\":0,\"selectedElementIds\":[],\"selectedGroupIds\":[],\"selectedElementsAreBeingDragged\":false,\"selectionElement\":null,\"shouldCacheIgnoreZoom\":false,\"showStats\":false,\"startBoundElement\":null,\"suggestedBindings\":[],\"frameRendering\":{\"enabled\":true,\"clip\":true,\"name\":true,\"outline\":true},\"frameToHighlight\":null,\"editingFrame\":null,\"elementsToHighlight\":null,\"toast\":null,\"viewBackgroundColor\":\"#ffffff\",\"zenModeEnabled\":false,\"zoom\":{\"value\":1},\"viewModeEnabled\":false,\"pendingImageElementId\":null,\"showHyperlinkPopup\":false,\"selectedLinearElement\":null,\"snapLines\":[],\"originSnapOffset\":null,\"objectsSnapModeEnabled\":false,\"offsetLeft\":303,\"offsetTop\":189.5,\"width\":1119,\"height\":659},\"files\":[]}',NULL,NULL,NULL,0,1,1,'2025-12-03 14:04:58','2025-12-04 23:07:04');
/*!40000 ALTER TABLE `diagrams` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `discount_customers`
--

DROP TABLE IF EXISTS `discount_customers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `discount_customers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `discount_id` int(10) unsigned NOT NULL,
  `customer_id` int(10) unsigned NOT NULL,
  `usage_count` int(11) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_discount_customer` (`discount_id`,`customer_id`),
  KEY `customer_id` (`customer_id`),
  CONSTRAINT `discount_customers_ibfk_1` FOREIGN KEY (`discount_id`) REFERENCES `discounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `discount_customers_ibfk_2` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `discount_customers`
--

LOCK TABLES `discount_customers` WRITE;
/*!40000 ALTER TABLE `discount_customers` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `discount_customers` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `discount_products`
--

DROP TABLE IF EXISTS `discount_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `discount_products` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `discount_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_discount_product` (`discount_id`,`product_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `discount_products_ibfk_1` FOREIGN KEY (`discount_id`) REFERENCES `discounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `discount_products_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `discount_products`
--

LOCK TABLES `discount_products` WRITE;
/*!40000 ALTER TABLE `discount_products` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `discount_products` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `discount_usage`
--

DROP TABLE IF EXISTS `discount_usage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `discount_usage` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `discount_id` int(10) unsigned NOT NULL,
  `customer_id` int(10) unsigned DEFAULT NULL,
  `sales_order_id` int(10) unsigned DEFAULT NULL,
  `invoice_id` int(10) unsigned DEFAULT NULL,
  `discount_amount` decimal(10,2) NOT NULL,
  `used_at` timestamp NULL DEFAULT current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `sales_order_id` (`sales_order_id`),
  KEY `invoice_id` (`invoice_id`),
  KEY `idx_discount` (`discount_id`),
  KEY `idx_customer` (`customer_id`),
  KEY `idx_used_at` (`used_at`),
  CONSTRAINT `discount_usage_ibfk_1` FOREIGN KEY (`discount_id`) REFERENCES `discounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `discount_usage_ibfk_2` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE SET NULL,
  CONSTRAINT `discount_usage_ibfk_3` FOREIGN KEY (`sales_order_id`) REFERENCES `sales_orders` (`id`) ON DELETE SET NULL,
  CONSTRAINT `discount_usage_ibfk_4` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `discount_usage`
--

LOCK TABLES `discount_usage` WRITE;
/*!40000 ALTER TABLE `discount_usage` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `discount_usage` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `discounts`
--

DROP TABLE IF EXISTS `discounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `discounts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `code` varchar(50) NOT NULL,
  `name` varchar(100) NOT NULL,
  `description` text DEFAULT NULL,
  `discount_type` enum('percentage','fixed_amount','free_shipping','buy_x_get_y') NOT NULL,
  `discount_value` decimal(10,2) NOT NULL,
  `min_order_amount` decimal(10,2) DEFAULT 0.00,
  `max_discount_amount` decimal(10,2) DEFAULT NULL,
  `usage_limit` int(11) DEFAULT NULL,
  `usage_count` int(11) DEFAULT 0,
  `per_customer_limit` int(11) DEFAULT NULL,
  `applies_to` enum('all','specific_products','specific_categories','specific_customers') DEFAULT 'all',
  `valid_from` datetime DEFAULT NULL,
  `valid_to` datetime DEFAULT NULL,
  `is_active` tinyint(1) DEFAULT 1,
  `is_cumulative` tinyint(1) DEFAULT 0,
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `code` (`code`),
  KEY `created_by` (`created_by`),
  KEY `idx_code` (`code`),
  KEY `idx_active` (`is_active`),
  KEY `idx_dates` (`valid_from`,`valid_to`),
  CONSTRAINT `discounts_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `discounts`
--

LOCK TABLES `discounts` WRITE;
/*!40000 ALTER TABLE `discounts` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `discounts` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `document_categories`
--

DROP TABLE IF EXISTS `document_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `document_categories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `parent_id` int(10) unsigned DEFAULT NULL,
  `description` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_parent` (`parent_id`),
  CONSTRAINT `document_categories_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `document_categories` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `document_categories`
--

LOCK TABLES `document_categories` WRITE;
/*!40000 ALTER TABLE `document_categories` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `document_categories` VALUES
(1,'General',NULL,'General documents and miscellaneous files','2025-11-18 00:31:01','2025-11-18 00:31:01'),
(2,'Contracts',NULL,'Contracts and agreements','2025-11-18 00:31:01','2025-11-18 00:31:01'),
(3,'Invoices',NULL,'Invoice documents and billing records','2025-11-18 00:31:01','2025-11-18 00:31:01'),
(4,'Reports',NULL,'Business reports and analytics','2025-11-18 00:31:01','2025-11-18 00:31:01'),
(5,'Templates',NULL,'Document templates and forms','2025-11-18 00:31:01','2025-11-18 00:31:01'),
(6,'Policies',NULL,'Company policies and procedures','2025-11-18 00:31:01','2025-11-18 00:31:01'),
(7,'Presentations',NULL,'Presentation files and slideshows','2025-11-18 00:31:01','2025-11-18 00:31:01'),
(8,'Legal',NULL,'Legal documents and compliance','2025-11-18 00:31:01','2025-11-18 00:31:01'),
(9,'HR',NULL,'Human resources documents','2025-11-18 00:31:01','2025-11-18 00:31:01'),
(10,'Marketing',NULL,'Marketing materials and assets','2025-11-18 00:31:01','2025-11-18 00:31:01');
/*!40000 ALTER TABLE `document_categories` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `document_shares`
--

DROP TABLE IF EXISTS `document_shares`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `document_shares` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `document_id` int(10) unsigned NOT NULL,
  `shared_with_user_id` int(10) unsigned DEFAULT NULL,
  `shared_with_role_id` int(10) unsigned DEFAULT NULL,
  `can_edit` tinyint(1) DEFAULT 0,
  `shared_by` int(10) unsigned NOT NULL,
  `shared_at` timestamp NULL DEFAULT current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `shared_by` (`shared_by`),
  KEY `idx_document` (`document_id`),
  KEY `idx_user` (`shared_with_user_id`),
  KEY `idx_role` (`shared_with_role_id`),
  CONSTRAINT `document_shares_ibfk_1` FOREIGN KEY (`document_id`) REFERENCES `documents` (`id`) ON DELETE CASCADE,
  CONSTRAINT `document_shares_ibfk_2` FOREIGN KEY (`shared_with_user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `document_shares_ibfk_3` FOREIGN KEY (`shared_with_role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE,
  CONSTRAINT `document_shares_ibfk_4` FOREIGN KEY (`shared_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `document_shares`
--

LOCK TABLES `document_shares` WRITE;
/*!40000 ALTER TABLE `document_shares` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `document_shares` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `document_versions`
--

DROP TABLE IF EXISTS `document_versions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `document_versions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `document_id` int(10) unsigned NOT NULL,
  `version` varchar(20) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_size` int(11) DEFAULT NULL,
  `uploaded_by` int(10) unsigned NOT NULL,
  `uploaded_at` timestamp NULL DEFAULT current_timestamp(),
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `uploaded_by` (`uploaded_by`),
  KEY `idx_document` (`document_id`),
  CONSTRAINT `document_versions_ibfk_1` FOREIGN KEY (`document_id`) REFERENCES `documents` (`id`) ON DELETE CASCADE,
  CONSTRAINT `document_versions_ibfk_2` FOREIGN KEY (`uploaded_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `document_versions`
--

LOCK TABLES `document_versions` WRITE;
/*!40000 ALTER TABLE `document_versions` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `document_versions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `documentation_coverage`
--

DROP TABLE IF EXISTS `documentation_coverage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `documentation_coverage` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `coverage_percentage` decimal(5,2) NOT NULL DEFAULT 0.00,
  `total_controllers` int(11) NOT NULL DEFAULT 0,
  `documented_controllers` int(11) NOT NULL DEFAULT 0,
  `undocumented_controllers` int(11) NOT NULL DEFAULT 0,
  `total_routes` int(11) NOT NULL DEFAULT 0,
  `undocumented_items` text DEFAULT NULL COMMENT 'JSON array of undocumented controllers',
  `checked_at` datetime NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_checked_at` (`checked_at`),
  KEY `idx_coverage` (`coverage_percentage`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Stores documentation coverage analysis results';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `documentation_coverage`
--

LOCK TABLES `documentation_coverage` WRITE;
/*!40000 ALTER TABLE `documentation_coverage` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `documentation_coverage` VALUES
(1,99.20,129,128,1,1069,'[{\"name\":\"RFQ\",\"file\":\"RFQController.php\",\"class\":\"RFQController\"}]','2025-11-17 10:57:42','2025-11-17 15:57:42'),
(2,99.30,143,142,1,1292,'[{\"name\":\"RFQ\",\"file\":\"RFQController.php\",\"class\":\"RFQController\"}]','2025-11-26 07:10:09','2025-11-26 12:10:09');
/*!40000 ALTER TABLE `documentation_coverage` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `documents`
--

DROP TABLE IF EXISTS `documents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `documents` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `file_name` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_size` int(11) DEFAULT NULL,
  `file_type` varchar(100) DEFAULT NULL,
  `category_id` int(10) unsigned DEFAULT NULL,
  `version` varchar(20) DEFAULT '1.0',
  `is_public` tinyint(1) DEFAULT 0,
  `uploaded_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `uploaded_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_category` (`category_id`),
  KEY `idx_uploader` (`uploaded_by`),
  KEY `idx_uploaded_at` (`uploaded_at`),
  KEY `idx_documents_deleted_at` (`deleted_at`),
  CONSTRAINT `documents_ibfk_1` FOREIGN KEY (`category_id`) REFERENCES `document_categories` (`id`) ON DELETE SET NULL,
  CONSTRAINT `documents_ibfk_2` FOREIGN KEY (`uploaded_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `documents`
--

LOCK TABLES `documents` WRITE;
/*!40000 ALTER TABLE `documents` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `documents` VALUES
(1,'test','','IMG_5218.JPG','ERP_Documents/documents/general/IMG_5218.JPG',239098,'image/jpeg',NULL,'1.0',0,1,'2025-11-18 00:40:26','2025-11-18 00:40:26','2025-11-18 00:40:26',NULL);
/*!40000 ALTER TABLE `documents` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `email_alias_recipients`
--

DROP TABLE IF EXISTS `email_alias_recipients`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_alias_recipients` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `alias_id` int(11) NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_alias_user` (`alias_id`,`user_id`),
  KEY `idx_alias_id` (`alias_id`),
  KEY `idx_user_id` (`user_id`),
  CONSTRAINT `email_alias_recipients_ibfk_1` FOREIGN KEY (`alias_id`) REFERENCES `email_aliases` (`id`) ON DELETE CASCADE,
  CONSTRAINT `email_alias_recipients_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci COMMENT='Users assigned to receive emails from aliases';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_alias_recipients`
--

LOCK TABLES `email_alias_recipients` WRITE;
/*!40000 ALTER TABLE `email_alias_recipients` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `email_alias_recipients` VALUES
(1,5,4,'2025-11-27 00:58:11'),
(2,5,2,'2025-11-27 00:58:14');
/*!40000 ALTER TABLE `email_alias_recipients` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `email_aliases`
--

DROP TABLE IF EXISTS `email_aliases`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_aliases` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `alias_email` varchar(255) NOT NULL COMMENT 'The email alias (e.g., sales@mavrix.one)',
  `description` varchar(500) DEFAULT NULL COMMENT 'Description of what this alias is for',
  `is_active` tinyint(1) DEFAULT 1 COMMENT 'Whether this alias is active',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `alias_email` (`alias_email`),
  KEY `idx_alias_email` (`alias_email`),
  KEY `idx_is_active` (`is_active`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci COMMENT='Email aliases for routing to users';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_aliases`
--

LOCK TABLES `email_aliases` WRITE;
/*!40000 ALTER TABLE `email_aliases` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `email_aliases` VALUES
(1,'info@mavrix.one','General information inquiries',1,'2025-11-26 23:53:45','2025-11-26 23:53:45'),
(2,'support@mavrix.one','Customer support',1,'2025-11-26 23:53:45','2025-11-26 23:53:45'),
(3,'sales@mavrix.one','Sales inquiries',1,'2025-11-26 23:53:45','2025-11-26 23:53:45'),
(4,'billing@mavrix.one','Billing and payments',1,'2025-11-26 23:53:45','2025-11-26 23:53:45'),
(5,'csuite@mavrix.one','suite',1,'2025-11-27 00:57:41','2025-11-27 00:57:41');
/*!40000 ALTER TABLE `email_aliases` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `email_attachments`
--

DROP TABLE IF EXISTS `email_attachments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_attachments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `email_id` int(10) unsigned NOT NULL,
  `filename` varchar(255) NOT NULL,
  `original_filename` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_size` int(10) unsigned NOT NULL,
  `mime_type` varchar(100) DEFAULT NULL,
  `content_id` varchar(255) DEFAULT NULL COMMENT 'For inline images',
  `is_inline` tinyint(1) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_email` (`email_id`),
  CONSTRAINT `email_attachments_ibfk_1` FOREIGN KEY (`email_id`) REFERENCES `emails` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=222 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_attachments`
--

LOCK TABLES `email_attachments` WRITE;
/*!40000 ALTER TABLE `email_attachments` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `email_attachments` VALUES
(1,63,'693194f06c6e1_ASHBY-LOGO_PURPLE-SMALL.png','ASHBY-LOGO_PURPLE-SMALL.png','uploads/email_attachments/693194f06c6e1_ASHBY-LOGO_PURPLE-SMALL.png',1786,'image/png','6c38d966cbcebfbe09553b99d74f75be',1,'2025-12-04 14:04:32'),
(2,69,'693194f2f2b50_image001.png','image001.png','uploads/email_attachments/693194f2f2b50_image001.png',3569,'image/png','image001.png@01DC5A09.EF068660',1,'2025-12-04 14:04:34'),
(3,70,'693194f606f17_250917_Term_Sheet_LBC-FN_V1__2_.docx','250917 Term Sheet LBC-FN V1 (2).docx','uploads/email_attachments/693194f606f17_250917_Term_Sheet_LBC-FN_V1__2_.docx',46334,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','f_mi7ot9ls0',0,'2025-12-04 14:04:38'),
(4,70,'693194f609b55_D35A_-_3.7Ah_18650.pdf','D35A - 3.7Ah 18650.pdf','uploads/email_attachments/693194f609b55_D35A_-_3.7Ah_18650.pdf',570197,'application/pdf','f_mi7ov3hq1',0,'2025-12-04 14:04:38'),
(5,70,'693194f60a1f5_C55C_-_5.5Ah_21700_HP.pdf','C55C - 5.5Ah 21700 HP.pdf','uploads/email_attachments/693194f60a1f5_C55C_-_5.5Ah_21700_HP.pdf',637702,'application/pdf','f_mi7ov6bi2',0,'2025-12-04 14:04:38'),
(6,71,'693194fc3a576_image001.jpg','image001.jpg','uploads/email_attachments/693194fc3a576_image001.jpg',4950,'image/jpeg','image001.jpg@01DC5A31.46DC6AE0',1,'2025-12-04 14:04:44'),
(7,71,'693194fc3a835_CCB_1.0.0_web_compressed_2.pdf','CCB_1.0.0_web_compressed_2.pdf','uploads/email_attachments/693194fc3a835_CCB_1.0.0_web_compressed_2.pdf',7863159,'application/pdf','',0,'2025-12-04 14:04:44'),
(8,78,'693194ffadeb9_Lithium_Battery_Company_AE_Proposal_6-25-25.pdf','Lithium Battery Company AE Proposal 6-25-25.pdf','uploads/email_attachments/693194ffadeb9_Lithium_Battery_Company_AE_Proposal_6-25-25.pdf',525116,'application/pdf','19aa842f9731d8a90621',0,'2025-12-04 14:04:47'),
(9,78,'693194ffae306_3900_W_Coachman_Exhibit_A_.pdf','3900 W Coachman Exhibit A .pdf','uploads/email_attachments/693194ffae306_3900_W_Coachman_Exhibit_A_.pdf',1947435,'application/pdf','19aa842f9734797b1072',0,'2025-12-04 14:04:47'),
(10,79,'6931950137655_image002.png','image002.png','uploads/email_attachments/6931950137655_image002.png',973554,'image/png','ii_19ab6e887fa5b16b21',1,'2025-12-04 14:04:49'),
(11,79,'6931950137b2e_image001.jpg','image001.jpg','uploads/email_attachments/6931950137b2e_image001.jpg',1485,'image/jpeg','image001.jpg@01D756D4.5D0E4230',1,'2025-12-04 14:04:49'),
(12,79,'6931950137f4a_Shmuel_de-leon_Energy_company_cells_purchasing_services_presentation_ver_1.pdf','Shmuel de-leon Energy company cells purchasing services presentation ver 1.pdf','uploads/email_attachments/6931950137f4a_Shmuel_de-leon_Energy_company_cells_purchasing_services_presentation_ver_1.pdf',433088,'application/pdf','19ab6e887fb61e1f7a43',0,'2025-12-04 14:04:49'),
(13,83,'693195028bd6e_Offer_Letter_-_Rick_Mislan_11.26.2025_-_signed.pdf','Offer Letter - Rick Mislan 11.26.2025 - signed.pdf','uploads/email_attachments/693195028bd6e_Offer_Letter_-_Rick_Mislan_11.26.2025_-_signed.pdf',221940,'application/pdf','',0,'2025-12-04 14:04:50'),
(14,84,'69319502f1ec1_Mavrix_1_-_Talent_Acquisition_Process_Workflows_11.26.2025.docx','Mavrix 1 - Talent Acquisition Process Workflows 11.26.2025.docx','uploads/email_attachments/69319502f1ec1_Mavrix_1_-_Talent_Acquisition_Process_Workflows_11.26.2025.docx',32230,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','',0,'2025-12-04 14:04:50'),
(15,88,'693195058b3f4_image001.png','image001.png','uploads/email_attachments/693195058b3f4_image001.png',41950,'image/png','image001.png@01DC0856.F0693A70',1,'2025-12-04 14:04:53'),
(16,89,'6931950627866_image001.png','image001.png','uploads/email_attachments/6931950627866_image001.png',41950,'image/png','image001.png@01DC0772.AAD8E6C0',1,'2025-12-04 14:04:54'),
(17,91,'6931950794a01_A32DEC58-A19A-4D8C-93E1-48974D7F1BC1','A32DEC58-A19A-4D8C-93E1-48974D7F1BC1','uploads/email_attachments/6931950794a01_A32DEC58-A19A-4D8C-93E1-48974D7F1BC1',1703,'application/octet-stream','3F9E7DAF-E879-450F-B630-8A06334FB026',1,'2025-12-04 14:04:55'),
(18,92,'6931950875f05_20250808120430.pdf','20250808120430.pdf','uploads/email_attachments/6931950875f05_20250808120430.pdf',381817,'application/pdf','66452de2-bf6d-4372-b5d2-488609fe3728',0,'2025-12-04 14:04:56'),
(19,94,'6931950a1b1f3_A32DEC58-A19A-4D8C-93E1-48974D7F1BC1','A32DEC58-A19A-4D8C-93E1-48974D7F1BC1','uploads/email_attachments/6931950a1b1f3_A32DEC58-A19A-4D8C-93E1-48974D7F1BC1',1703,'application/octet-stream','82D72FA0-2599-46F7-908F-9BAA4277A027',1,'2025-12-04 14:04:58'),
(20,96,'69319521c6cca_Kimley_Team_Quals_-_Mavrix_1.pdf','Kimley Team Quals - Mavrix 1.pdf','uploads/email_attachments/69319521c6cca_Kimley_Team_Quals_-_Mavrix_1.pdf',9948976,'application/pdf','',1,'2025-12-04 14:05:21'),
(21,96,'69319521d761d_CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png','CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png','uploads/email_attachments/69319521d761d_CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png',3569,'image/png','',1,'2025-12-04 14:05:21'),
(22,102,'693195251aeb5_Mavrix1_MASTER_MODEL_11.30.2025__Jordan.xlsx','Mavrix1_MASTER_MODEL_11.30.2025__Jordan.xlsx','uploads/email_attachments/693195251aeb5_Mavrix1_MASTER_MODEL_11.30.2025__Jordan.xlsx',4339299,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','19ae0152a2a6c3e80311',0,'2025-12-04 14:05:25'),
(23,102,'693195251b75a_BOM_for_16kWh_Sol-Ark_1727_10.28.25.xlsx','BOM for 16kWh Sol-Ark_1727_10.28.25.xlsx','uploads/email_attachments/693195251b75a_BOM_for_16kWh_Sol-Ark_1727_10.28.25.xlsx',11958,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','f_mhb2vnm80',0,'2025-12-04 14:05:25'),
(24,104,'6931952562c74_image001.png','image001.png','uploads/email_attachments/6931952562c74_image001.png',41950,'image/png','image001.png@01DC63AC.FC62A440',1,'2025-12-04 14:05:25'),
(25,107,'69319525a88cc_image003.jpg','image003.jpg','uploads/email_attachments/69319525a88cc_image003.jpg',8642,'image/jpeg','ii_19ae5b9d98f6917eb1',1,'2025-12-04 14:05:25'),
(26,109,'69319526cc53b_CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png','CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png','uploads/email_attachments/69319526cc53b_CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png',3569,'image/png','ii_19ae76cfe50d2422db41',1,'2025-12-04 14:05:26'),
(27,110,'6931952758cee_CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png','CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png','uploads/email_attachments/6931952758cee_CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png',3569,'image/png','ii_19ae76cfe50d2422db41',1,'2025-12-04 14:05:27'),
(28,131,'6931b8efd8f0e_Lithium_Battery_Safety_Guidance.pdf','Lithium_Battery_Safety_Guidance.pdf','uploads/email_attachments/6931b8efd8f0e_Lithium_Battery_Safety_Guidance.pdf',1176673,'application/octet-stream','',0,'2025-12-04 16:38:07'),
(29,138,'693211383aa1c_52AACA64-B468-4285-B5C4-838F6707FFCC','52AACA64-B468-4285-B5C4-838F6707FFCC','uploads/email_attachments/693211383aa1c_52AACA64-B468-4285-B5C4-838F6707FFCC',3569,'application/octet-stream','F2963A61-7387-4B17-BC0E-0980EAF5DF83',1,'2025-12-04 22:54:48'),
(30,139,'6932117e63d4b_52AACA64-B468-4285-B5C4-838F6707FFCC','52AACA64-B468-4285-B5C4-838F6707FFCC','uploads/email_attachments/6932117e63d4b_52AACA64-B468-4285-B5C4-838F6707FFCC',3569,'application/octet-stream','6D0C3475-6E2F-42B7-90FD-6A5C616518E4',1,'2025-12-04 22:55:58'),
(31,139,'6932117e64d8f_womendroneassembly.jpeg','womendroneassembly.jpeg','uploads/email_attachments/6932117e64d8f_womendroneassembly.jpeg',318973,'image/jpeg','',0,'2025-12-04 22:55:58'),
(32,143,'69386fd4eaec7_52AACA64-B468-4285-B5C4-838F6707FFCC','52AACA64-B468-4285-B5C4-838F6707FFCC','uploads/email_attachments/69386fd4eaec7_52AACA64-B468-4285-B5C4-838F6707FFCC',3569,'application/octet-stream','ii_19a8483de01fcc4344d1',1,'2025-12-09 18:52:04'),
(33,144,'69386fd572eb0_ii_19a8483de01fcc4344d1','ii_19a8483de01fcc4344d1','uploads/email_attachments/69386fd572eb0_ii_19a8483de01fcc4344d1',3569,'application/octet-stream','ii_19a84a41db5f3569a9f1',1,'2025-12-09 18:52:05'),
(34,144,'69386fd5732a3_52AACA64-B468-4285-B5C4-838F6707FFCC','52AACA64-B468-4285-B5C4-838F6707FFCC','uploads/email_attachments/69386fd5732a3_52AACA64-B468-4285-B5C4-838F6707FFCC',3569,'application/octet-stream','ii_19a84a41db5fcc4344d2',1,'2025-12-09 18:52:05'),
(35,145,'69386fd804a46_Mavrix1_MASTER_MODEL_11.14.2025_v2_COPY.xlsx','Mavrix1_MASTER_MODEL_11.14.2025_v2_COPY.xlsx','uploads/email_attachments/69386fd804a46_Mavrix1_MASTER_MODEL_11.14.2025_v2_COPY.xlsx',2462820,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','',0,'2025-12-09 18:52:08'),
(36,148,'69386fd9a5eea_LBC_Sales_Process.pdf','LBC Sales Process.pdf','uploads/email_attachments/69386fd9a5eea_LBC_Sales_Process.pdf',1369152,'application/pdf','f_mi3fjx2s0',0,'2025-12-09 18:52:09'),
(37,149,'69386fda24d6c_invite.ics','invite.ics','uploads/email_attachments/69386fda24d6c_invite.ics',4970,'application/ics','19a931fabf7438ee8061',0,'2025-12-09 18:52:10'),
(38,153,'69386fdbabf80_image001.jpg','image001.jpg','uploads/email_attachments/69386fdbabf80_image001.jpg',3666,'image/jpeg','image001.jpg@01DC58CE.73B98E80',1,'2025-12-09 18:52:11'),
(39,153,'69386fdbad550_image002.jpg','image002.jpg','uploads/email_attachments/69386fdbad550_image002.jpg',5258,'image/jpeg','image002.jpg@01DC58CE.73B98E80',1,'2025-12-09 18:52:11'),
(40,154,'69386fdc3b66a_4668C8E6-910E-4E7C-9972-2A16B64E6EE3','4668C8E6-910E-4E7C-9972-2A16B64E6EE3','uploads/email_attachments/69386fdc3b66a_4668C8E6-910E-4E7C-9972-2A16B64E6EE3',285765,'application/octet-stream','1C4FCCD7-AC70-4480-A305-EE9B03FD6A79',0,'2025-12-09 18:52:12'),
(41,154,'69386fdc3ca7d_65130E76-D90A-4603-B5BD-90DF7BAA33B3','65130E76-D90A-4603-B5BD-90DF7BAA33B3','uploads/email_attachments/69386fdc3ca7d_65130E76-D90A-4603-B5BD-90DF7BAA33B3',4719,'application/octet-stream','B217A68D-936C-474C-B0C3-B3349C3CC4AA',0,'2025-12-09 18:52:12'),
(42,157,'69386fdd3abfe_image001.jpg','image001.jpg','uploads/email_attachments/69386fdd3abfe_image001.jpg',3666,'image/jpeg','image001.jpg@01DC5934.56CB0770',1,'2025-12-09 18:52:13'),
(43,158,'69386fdd4ffe0_image001.jpg','image001.jpg','uploads/email_attachments/69386fdd4ffe0_image001.jpg',5258,'image/jpeg','image001.jpg@01DC4F2C.FB6CF750',0,'2025-12-09 18:52:13'),
(44,160,'69386fe5ac0eb_image001.png','image001.png','uploads/email_attachments/69386fe5ac0eb_image001.png',41950,'image/png','image001.png@01DC64F5.62255090',1,'2025-12-09 18:52:21'),
(45,166,'69386fe7c99cf_CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png','CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png','uploads/email_attachments/69386fe7c99cf_CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png',3569,'image/png','ii_19aea613d1c4a653afc1',1,'2025-12-09 18:52:23'),
(46,166,'69386fe7c9d7b_5_Year_Forecast.xlsx','5_Year_Forecast.xlsx','uploads/email_attachments/69386fe7c9d7b_5_Year_Forecast.xlsx',9657,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','f_mirpc4t01',0,'2025-12-09 18:52:23'),
(47,167,'69386fe84f18d_CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png','CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png','uploads/email_attachments/69386fe84f18d_CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png',3569,'image/png','ii_19aea613d1c4a653afc1',1,'2025-12-09 18:52:24'),
(48,167,'69386fe84f79d_Battery_Pack_Manufacturing_Equipment_Requirements_Analysis.pdf','Battery_Pack_Manufacturing_Equipment_Requirements_Analysis.pdf','uploads/email_attachments/69386fe84f79d_Battery_Pack_Manufacturing_Equipment_Requirements_Analysis.pdf',78436,'application/pdf','f_mirpwkcz1',0,'2025-12-09 18:52:24'),
(49,172,'69386fea582e9_CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png','CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png','uploads/email_attachments/69386fea582e9_CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png',3569,'image/png','ii_19aeaedf7d34a653afc1',1,'2025-12-09 18:52:26'),
(50,172,'69386fea593c0_Customer_List_5_Year_120425_3pm.xlsx','Customer_List_5_Year 120425 3pm.xlsx','uploads/email_attachments/69386fea593c0_Customer_List_5_Year_120425_3pm.xlsx',12798,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','f_miruuda31',0,'2025-12-09 18:52:26'),
(51,173,'69386fea7030e_CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png','CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png','uploads/email_attachments/69386fea7030e_CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png',3569,'image/png','ii_19aeaedf7d34a653afc1',1,'2025-12-09 18:52:26'),
(52,173,'69386fea70d97_Energy_Utilities_Analysis.xlsx','Energy_Utilities_Analysis.xlsx','uploads/email_attachments/69386fea70d97_Energy_Utilities_Analysis.xlsx',8907,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','f_mirvhn3k1',0,'2025-12-09 18:52:26'),
(53,174,'69386feae1a35_CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png','CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png','uploads/email_attachments/69386feae1a35_CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png',3569,'image/png','ii_19aeb0e441b4a653afc1',1,'2025-12-09 18:52:26'),
(54,176,'69386febf279e_CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png','CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png','uploads/email_attachments/69386febf279e_CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png',3569,'image/png','ii_19aeaedf7d34a653afc1',1,'2025-12-09 18:52:27'),
(55,176,'69386febf2def_Customer_List_5_Year_120425_345pm.xlsx','Customer_List_5_Year 120425 345pm.xlsx','uploads/email_attachments/69386febf2def_Customer_List_5_Year_120425_345pm.xlsx',18934,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','f_mirwps2z1',0,'2025-12-09 18:52:27'),
(56,180,'69386fef193d8_image001.png','image001.png','uploads/email_attachments/69386fef193d8_image001.png',11540,'image/png','image001.png@01DC65CB.0C91F210',1,'2025-12-09 18:52:31'),
(57,180,'69386fef196f3_image002.png','image002.png','uploads/email_attachments/69386fef196f3_image002.png',13908,'image/png','image002.png@01DC65CB.0C91F210',1,'2025-12-09 18:52:31'),
(58,180,'69386fef199c4_image003.png','image003.png','uploads/email_attachments/69386fef199c4_image003.png',27545,'image/png','image003.png@01DC65CB.0C91F210',1,'2025-12-09 18:52:31'),
(59,180,'69386fef19b71_image004.png','image004.png','uploads/email_attachments/69386fef19b71_image004.png',25810,'image/png','image004.png@01DC65CB.0C91F210',1,'2025-12-09 18:52:31'),
(60,180,'69386fef19cf8_image005.png','image005.png','uploads/email_attachments/69386fef19cf8_image005.png',13421,'image/png','image005.png@01DC65CB.0C91F210',1,'2025-12-09 18:52:31'),
(61,180,'69386fef19ecb_image006.png','image006.png','uploads/email_attachments/69386fef19ecb_image006.png',1832419,'image/png','image006.png@01DC65CB.0C91F210',1,'2025-12-09 18:52:31'),
(62,180,'69386fef1a3ea_image007.png','image007.png','uploads/email_attachments/69386fef1a3ea_image007.png',3569,'image/png','image007.png@01DC65CB.0C91F210',1,'2025-12-09 18:52:31'),
(63,180,'69386fef1a5b7_2025_EDC_Lead_Assessment_Form.docx','2025 EDC Lead Assessment Form.docx','uploads/email_attachments/69386fef1a5b7_2025_EDC_Lead_Assessment_Form.docx',82951,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','',0,'2025-12-09 18:52:31'),
(64,184,'69386ff0ad961_52AACA64-B468-4285-B5C4-838F6707FFCC','52AACA64-B468-4285-B5C4-838F6707FFCC','uploads/email_attachments/69386ff0ad961_52AACA64-B468-4285-B5C4-838F6707FFCC',3569,'application/octet-stream','ii_19af6725af5736203531',1,'2025-12-09 18:52:32'),
(65,187,'693872280ed36_cpanel-logo-tiny.png','cpanel-logo-tiny.png','uploads/email_attachments/693872280ed36_cpanel-logo-tiny.png',18341,'image/png','auto_cid_157512637',0,'2025-12-09 19:02:00'),
(66,187,'693872280f3ed_email-rick_mavrix.one.mobileconfig','email-rick@mavrix.one.mobileconfig','uploads/email_attachments/693872280f3ed_email-rick_mavrix.one.mobileconfig',6180,'application/octet-stream','',0,'2025-12-09 19:02:00'),
(67,187,'693872280f7ff_caldav-rick_mavrix.one.mobileconfig','caldav-rick@mavrix.one.mobileconfig','uploads/email_attachments/693872280f7ff_caldav-rick_mavrix.one.mobileconfig',5278,'application/octet-stream','',0,'2025-12-09 19:02:00'),
(68,187,'693872280fb59_carddav-rick_mavrix.one.mobileconfig','carddav-rick@mavrix.one.mobileconfig','uploads/email_attachments/693872280fb59_carddav-rick_mavrix.one.mobileconfig',5124,'application/octet-stream','',0,'2025-12-09 19:02:00'),
(69,189,'693872293f102_TIS_IV_-_Agenda.pdf','TIS IV - Agenda.pdf','uploads/email_attachments/693872293f102_TIS_IV_-_Agenda.pdf',219654,'application/pdf','824EDEA86212504EB3ACC8BEEDE75C2A@NAMP111.PROD.OUTLOOK.COM',0,'2025-12-09 19:02:01'),
(70,192,'6938722bb7726_IO-Intro_Deck_DU_2025_03.pdf','IO-Intro Deck DU 2025_03.pdf','uploads/email_attachments/6938722bb7726_IO-Intro_Deck_DU_2025_03.pdf',2615292,'application/PDF','',0,'2025-12-09 19:02:03'),
(71,192,'6938722bb7d77_Impossible_Objects_Investment_Teaser_250112.pdf','Impossible Objects Investment Teaser 250112.pdf','uploads/email_attachments/6938722bb7d77_Impossible_Objects_Investment_Teaser_250112.pdf',339729,'application/PDF','',0,'2025-12-09 19:02:03'),
(72,192,'6938722bb7fd7_smime.p7s','smime.p7s','uploads/email_attachments/6938722bb7fd7_smime.p7s',1593,'application/PKCS7-SIGNATURE','',0,'2025-12-09 19:02:03'),
(73,199,'6938722dddb9a_invite.ics','invite.ics','uploads/email_attachments/6938722dddb9a_invite.ics',1974,'application/ics','',0,'2025-12-09 19:02:05'),
(74,200,'6938722e5aec5_invite.ics','invite.ics','uploads/email_attachments/6938722e5aec5_invite.ics',1973,'application/ics','',0,'2025-12-09 19:02:06'),
(75,201,'6938722ed2dfb_invite.ics','invite.ics','uploads/email_attachments/6938722ed2dfb_invite.ics',1973,'application/ics','',0,'2025-12-09 19:02:06'),
(76,202,'6938722ee52d2_invite.ics','invite.ics','uploads/email_attachments/6938722ee52d2_invite.ics',1345,'application/ics','',0,'2025-12-09 19:02:06'),
(77,203,'6938722f66bb2_invite.ics','invite.ics','uploads/email_attachments/6938722f66bb2_invite.ics',1345,'application/ics','',0,'2025-12-09 19:02:07'),
(78,213,'693872342ed68_LEOPARD_QUAD_SLIDE.pdf','LEOPARD QUAD SLIDE.pdf','uploads/email_attachments/693872342ed68_LEOPARD_QUAD_SLIDE.pdf',313176,'application/pdf','',0,'2025-12-09 19:02:12'),
(79,213,'693872342f372_Hyper_STOL_Quad_slide.pdf','Hyper STOL Quad slide.pdf','uploads/email_attachments/693872342f372_Hyper_STOL_Quad_slide.pdf',543435,'application/pdf','',0,'2025-12-09 19:02:12'),
(80,213,'693872342fb27_ESOF_HYPER_STOL.pdf','ESOF HYPER STOL.pdf','uploads/email_attachments/693872342fb27_ESOF_HYPER_STOL.pdf',1094345,'application/pdf','',0,'2025-12-09 19:02:12'),
(81,213,'6938723431f02_Customer-Memorandum-24.5D-P2-25.5-D2P2-CLEARED_AFRL-2025-0532_Hancock_Brown_Signature.pdf','Customer-Memorandum-24.5D-P2-25.5-D2P2-CLEARED_AFRL-2025-0532 Hancock_Brown Signature.pdf','uploads/email_attachments/6938723431f02_Customer-Memorandum-24.5D-P2-25.5-D2P2-CLEARED_AFRL-2025-0532_Hancock_Brown_Signature.pdf',860220,'application/pdf','',0,'2025-12-09 19:02:12'),
(82,219,'693872363ee61_invite.ics','invite.ics','uploads/email_attachments/693872363ee61_invite.ics',2080,'application/ics','',0,'2025-12-09 19:02:14'),
(83,220,'69387236b28b3_invite.ics','invite.ics','uploads/email_attachments/69387236b28b3_invite.ics',1951,'application/ics','',0,'2025-12-09 19:02:14'),
(84,223,'69387237b5c41_Opportunities_for_SC_Facility__WIP_.pdf','Opportunities for SC Facility [WIP].pdf','uploads/email_attachments/69387237b5c41_Opportunities_for_SC_Facility__WIP_.pdf',80082,'application/pdf','',1,'2025-12-09 19:02:15'),
(85,224,'69387238424c8_invite.ics','invite.ics','uploads/email_attachments/69387238424c8_invite.ics',2813,'application/ics','',0,'2025-12-09 19:02:16'),
(86,226,'69387238cb359_invite.ics','invite.ics','uploads/email_attachments/69387238cb359_invite.ics',1951,'application/ics','',0,'2025-12-09 19:02:16'),
(87,228,'6938723964abc_image001.png','image001.png','uploads/email_attachments/6938723964abc_image001.png',102583,'image/png','image001.png@01DBC574.5669E3E0',1,'2025-12-09 19:02:17'),
(88,229,'69387239d8c99_LBC-Investor_MNDA-2025__May_15__Mavrix1.pdf','LBC-Investor MNDA-2025_(May 15)_Mavrix1.pdf','uploads/email_attachments/69387239d8c99_LBC-Investor_MNDA-2025__May_15__Mavrix1.pdf',107995,'application/pdf','',0,'2025-12-09 19:02:17'),
(89,232,'6938723aea905__MAVRIX_MNDA_StrategicLogix_1.pdf','_MAVRIX_MNDA_StrategicLogix_1.pdf','uploads/email_attachments/6938723aea905__MAVRIX_MNDA_StrategicLogix_1.pdf',407886,'application/pdf','f_mar5vjys0',0,'2025-12-09 19:02:18'),
(90,236,'6938723c7b223_logo.png','logo.png','uploads/email_attachments/6938723c7b223_logo.png',3694,'image/png','6828e16175aff_23838c1814513b5@idp-i-0b671bd59124cc490.prod.login.gov.mail',1,'2025-12-09 19:02:20'),
(91,237,'6938723c8d797_logo.png','logo.png','uploads/email_attachments/6938723c8d797_logo.png',3694,'image/png','6828e3a7b75ab_22ec8c1815215b5@idp-i-0782fd38879e93f32.prod.login.gov.mail',1,'2025-12-09 19:02:20'),
(92,238,'6938723d19633_logo.png','logo.png','uploads/email_attachments/6938723d19633_logo.png',3694,'image/png','6828e453d88c9_22d98c181602712@idp-i-0e767beed6d740ed9.prod.login.gov.mail',1,'2025-12-09 19:02:21'),
(93,240,'6938723e09baf_invite.ics','invite.ics','uploads/email_attachments/6938723e09baf_invite.ics',2850,'application/ics','',0,'2025-12-09 19:02:22'),
(94,241,'6938723e1db63_invite.ics','invite.ics','uploads/email_attachments/6938723e1db63_invite.ics',2509,'application/ics','',0,'2025-12-09 19:02:22'),
(95,248,'693872403c4e5_Outlook-e2ebdgkm.png','Outlook-e2ebdgkm.png','uploads/email_attachments/693872403c4e5_Outlook-e2ebdgkm.png',8913,'image/png','4c09aeb7-9505-4275-8357-f4d069e0efae',1,'2025-12-09 19:02:24'),
(96,248,'693872403cd6e_Outlook-new00qli.png','Outlook-new00qli.png','uploads/email_attachments/693872403cd6e_Outlook-new00qli.png',43844,'image/png','25900d13-8a94-43bd-9754-b95dd487d086',1,'2025-12-09 19:02:24'),
(97,249,'69387240b6690_LBC_Investor_MNDA__2025__Mavrix1.pdf','LBC Investor MNDA (2025)_Mavrix1.pdf','uploads/email_attachments/69387240b6690_LBC_Investor_MNDA__2025__Mavrix1.pdf',289378,'','',0,'2025-12-09 19:02:24'),
(98,250,'693872413da79_Completed_Investor_MNDA_Mavrix.pdf','Completed Investor MNDA Mavrix.pdf','uploads/email_attachments/693872413da79_Completed_Investor_MNDA_Mavrix.pdf',289380,'application/pdf','f_mavajorl0',0,'2025-12-09 19:02:25'),
(99,251,'69387241ad9b4_invite.ics','invite.ics','uploads/email_attachments/69387241ad9b4_invite.ics',1914,'application/ics','',0,'2025-12-09 19:02:25'),
(100,256,'69387243cf0a9_Outlook-e2ebdgkm.png','Outlook-e2ebdgkm.png','uploads/email_attachments/69387243cf0a9_Outlook-e2ebdgkm.png',8913,'image/png','503489C9-8F45-4FF5-8EC0-43408011D967',1,'2025-12-09 19:02:27'),
(101,256,'69387243cf795_Outlook-new00qli.png','Outlook-new00qli.png','uploads/email_attachments/69387243cf795_Outlook-new00qli.png',43844,'image/png','02A26CF0-BE3B-41BB-8A38-E3C8278E21D4',1,'2025-12-09 19:02:27'),
(102,258,'6938724464051_Outlook-e2ebdgkm.png','Outlook-e2ebdgkm.png','uploads/email_attachments/6938724464051_Outlook-e2ebdgkm.png',8913,'image/png','491BF459-0C69-47AF-A0F4-FCCA54DEDED3',1,'2025-12-09 19:02:28'),
(103,258,'6938724464444_Outlook-new00qli.png','Outlook-new00qli.png','uploads/email_attachments/6938724464444_Outlook-new00qli.png',43844,'image/png','2997AAA2-FCC3-4F64-B20B-D464C2B55F21',1,'2025-12-09 19:02:28'),
(104,263,'6938726a1e84b_invite.ics','invite.ics','uploads/email_attachments/6938726a1e84b_invite.ics',2124,'application/ics','',0,'2025-12-09 19:03:06'),
(105,267,'6938726c3e520_Screenshot_2025-05-21_101002.png','Screenshot 2025-05-21 101002.png','uploads/email_attachments/6938726c3e520_Screenshot_2025-05-21_101002.png',26947,'image/png','f_may0t4kg0',0,'2025-12-09 19:03:08'),
(106,271,'6938726e54131_Achram_Labs_Mutual_NDA.pdf','Achram Labs Mutual NDA.pdf','uploads/email_attachments/6938726e54131_Achram_Labs_Mutual_NDA.pdf',69556,'application/pdf','',0,'2025-12-09 19:03:10'),
(107,274,'693872706c05d_31677240-26C2-46D2-9A10-78F14C1CCB20.png','31677240-26C2-46D2-9A10-78F14C1CCB20.png','uploads/email_attachments/693872706c05d_31677240-26C2-46D2-9A10-78F14C1CCB20.png',204710,'image/png','08F0DAA4-11F4-4976-B26E-1FAD1AB2B83D',1,'2025-12-09 19:03:12'),
(108,279,'69387275a77e3_Lithium_Battery_Company__Confidential_Investor_Teaser__May_2025__vMarvix1_Rick_Mislan.pdf','Lithium Battery Company _Confidential Investor Teaser_(May 2025)_vMarvix1_Rick Mislan.pdf','uploads/email_attachments/69387275a77e3_Lithium_Battery_Company__Confidential_Investor_Teaser__May_2025__vMarvix1_Rick_Mislan.pdf',2069948,'application/pdf','',0,'2025-12-09 19:03:17'),
(109,284,'69387277ba5fc_Rick_Mislan___Vector_Form_of_NDA__Mutual_.docx.pdf','Rick Mislan _ Vector Form of NDA (Mutual).docx.pdf','uploads/email_attachments/69387277ba5fc_Rick_Mislan___Vector_Form_of_NDA__Mutual_.docx.pdf',391894,'','',0,'2025-12-09 19:03:19'),
(110,291,'6938734445470_MAVRIX_JDK_NDA_2025_SIGNED.pdf','MAVRIX_JDK_NDA_2025_SIGNED.pdf','uploads/email_attachments/6938734445470_MAVRIX_JDK_NDA_2025_SIGNED.pdf',1790949,'application/pdf','8358cc5a-9278-d785-0aa9-3aac90293214@yahoo.com',0,'2025-12-09 19:06:44'),
(111,295,'69387345d799d_Achram_Labs_Mutual_NDA_RPM_Executed.pdf','Achram Labs Mutual NDA_RPM_Executed.pdf','uploads/email_attachments/69387345d799d_Achram_Labs_Mutual_NDA_RPM_Executed.pdf',165355,'application/pdf','',0,'2025-12-09 19:06:45'),
(112,296,'693873465658b_smime.p7s','smime.p7s','uploads/email_attachments/693873465658b_smime.p7s',1593,'application/pkcs7-signature','',0,'2025-12-09 19:06:46'),
(113,301,'69387347ed684__MAVRIX_MNDA_UrsaSecure_1.pdf','_MAVRIX_MNDA_UrsaSecure_1.pdf','uploads/email_attachments/69387347ed684__MAVRIX_MNDA_UrsaSecure_1.pdf',323689,'application/pdf','E554BC53-C23A-490B-A952-A9C74E5940D0',0,'2025-12-09 19:06:47'),
(114,303,'69387348e6b5e__MAVRIX_MNDA_Corvex_Systems.pdf','_MAVRIX_MNDA_Corvex Systems.pdf','uploads/email_attachments/69387348e6b5e__MAVRIX_MNDA_Corvex_Systems.pdf',149701,'application/pdf','',0,'2025-12-09 19:06:48'),
(115,306,'693873498dcb5_invite.ics','invite.ics','uploads/email_attachments/693873498dcb5_invite.ics',2500,'application/ics','',0,'2025-12-09 19:06:49'),
(116,307,'6938734a12766_invite.ics','invite.ics','uploads/email_attachments/6938734a12766_invite.ics',2500,'application/ics','',0,'2025-12-09 19:06:50'),
(117,309,'6938734b1860d_invite.ics','invite.ics','uploads/email_attachments/6938734b1860d_invite.ics',2235,'application/ics','',0,'2025-12-09 19:06:51'),
(118,310,'6938734bb2caf_Elevator_pitch.docx','Elevator pitch.docx','uploads/email_attachments/6938734bb2caf_Elevator_pitch.docx',13855,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','27a63369-0d79-06e9-03e7-0d560c46e304@yahoo.com',0,'2025-12-09 19:06:51'),
(119,310,'6938734bb321d_John_Kennerly_Resume.pdf','John_Kennerly_Resume.pdf','uploads/email_attachments/6938734bb321d_John_Kennerly_Resume.pdf',669856,'application/pdf','7ea70507-a0f4-0339-c4f0-f52c3587580e@yahoo.com',0,'2025-12-09 19:06:51'),
(120,311,'6938734c2729f_smime.p7s','smime.p7s','uploads/email_attachments/6938734c2729f_smime.p7s',1593,'application/pkcs7-signature','',0,'2025-12-09 19:06:52'),
(121,312,'6938734c9f484_invite.ics','invite.ics','uploads/email_attachments/6938734c9f484_invite.ics',2235,'application/ics','',0,'2025-12-09 19:06:52'),
(122,320,'6938734f57e1f__WRD0205.jpg','~WRD0205.jpg','uploads/email_attachments/6938734f57e1f__WRD0205.jpg',823,'image/jpeg','~WRD0205.jpg',1,'2025-12-09 19:06:55'),
(123,321,'6938734fc93e5_smime.p7s','smime.p7s','uploads/email_attachments/6938734fc93e5_smime.p7s',1593,'application/pkcs7-signature','',0,'2025-12-09 19:06:55'),
(124,323,'6938735059425_smime.p7s','smime.p7s','uploads/email_attachments/6938735059425_smime.p7s',1593,'application/pkcs7-signature','',0,'2025-12-09 19:06:56'),
(125,327,'69387351d9442_Outlook-jtrslyew.png','Outlook-jtrslyew.png','uploads/email_attachments/69387351d9442_Outlook-jtrslyew.png',8913,'image/png','578b9de3-170a-4006-89c3-06e3c350d4ef',1,'2025-12-09 19:06:57'),
(126,327,'69387351d98eb_Outlook-uenpzb3s.png','Outlook-uenpzb3s.png','uploads/email_attachments/69387351d98eb_Outlook-uenpzb3s.png',43844,'image/png','5d42871e-bde0-483a-81e6-708d5b1a63a0',1,'2025-12-09 19:06:57'),
(127,328,'693873525ce2e_Outlook-jtrslyew.png','Outlook-jtrslyew.png','uploads/email_attachments/693873525ce2e_Outlook-jtrslyew.png',8913,'image/png','47BA54B0-871A-4215-909B-8DCCFBE35FB1',1,'2025-12-09 19:06:58'),
(128,328,'693873525d34d_Outlook-uenpzb3s.png','Outlook-uenpzb3s.png','uploads/email_attachments/693873525d34d_Outlook-uenpzb3s.png',43844,'image/png','4B26B33A-DC76-4A74-B4DB-30927AD3AF94',1,'2025-12-09 19:06:58'),
(129,328,'693873525d7da_Outlook-iycjwpxv.png','Outlook-iycjwpxv.png','uploads/email_attachments/693873525d7da_Outlook-iycjwpxv.png',8913,'image/png','ff55b059-c902-47b5-838c-d8aa3c5716c5',1,'2025-12-09 19:06:58'),
(130,328,'693873525dbab_Outlook-th3o5xag.png','Outlook-th3o5xag.png','uploads/email_attachments/693873525dbab_Outlook-th3o5xag.png',43844,'image/png','e2d931b6-5df6-4443-b85e-55af848293b4',1,'2025-12-09 19:06:58'),
(131,330,'69387352e40d0_smime.p7s','smime.p7s','uploads/email_attachments/69387352e40d0_smime.p7s',1593,'application/pkcs7-signature','',0,'2025-12-09 19:06:58'),
(132,333,'69387353e95da_invite.ics','invite.ics','uploads/email_attachments/69387353e95da_invite.ics',2078,'application/ics','',0,'2025-12-09 19:06:59'),
(133,337,'69387356a5dee_IO-Intro_Deck_DU_2025_04.pdf','IO-Intro Deck DU 2025_04.pdf','uploads/email_attachments/69387356a5dee_IO-Intro_Deck_DU_2025_04.pdf',2700027,'application/pdf','',1,'2025-12-09 19:07:02'),
(134,337,'69387356a6c03_smime.p7s','smime.p7s','uploads/email_attachments/69387356a6c03_smime.p7s',1593,'application/pkcs7-signature','',0,'2025-12-09 19:07:02'),
(135,338,'6938735727233_smime.p7s','smime.p7s','uploads/email_attachments/6938735727233_smime.p7s',1593,'application/pkcs7-signature','',0,'2025-12-09 19:07:03'),
(136,342,'69387358b9dd4_Outlook-b012n0oa.png','Outlook-b012n0oa.png','uploads/email_attachments/69387358b9dd4_Outlook-b012n0oa.png',750720,'image/png','1689c517-e448-415d-82aa-b84b78bbfaa1',1,'2025-12-09 19:07:04'),
(137,342,'69387358ba4b4_RF_Tool_White_Paper_V1.1.docx','RF Tool White Paper V1.1.docx','uploads/email_attachments/69387358ba4b4_RF_Tool_White_Paper_V1.1.docx',21143,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','',0,'2025-12-09 19:07:04'),
(138,343,'6938735940e54_TARGET_TECHNONOLOGY_INTEGRATIONS.xlsx','TARGET TECHNONOLOGY INTEGRATIONS.xlsx','uploads/email_attachments/6938735940e54_TARGET_TECHNONOLOGY_INTEGRATIONS.xlsx',10914,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','',0,'2025-12-09 19:07:05'),
(139,343,'6938735941b19_PastedGraphic-3.tiff','PastedGraphic-3.tiff','uploads/email_attachments/6938735941b19_PastedGraphic-3.tiff',9488,'image/tiff','',1,'2025-12-09 19:07:05'),
(140,344,'69387359bc53c_invite.ics','invite.ics','uploads/email_attachments/69387359bc53c_invite.ics',1855,'application/ics','',0,'2025-12-09 19:07:05'),
(141,348,'6938735c596d4_Lithium_Battery_Company___6.5.25__SBA_Presentation.pdf','Lithium Battery Company _(6.5.25)_SBA Presentation.pdf','uploads/email_attachments/6938735c596d4_Lithium_Battery_Company___6.5.25__SBA_Presentation.pdf',2091883,'application/pdf','',0,'2025-12-09 19:07:08'),
(142,353,'6938735dee94b_invite.ics','invite.ics','uploads/email_attachments/6938735dee94b_invite.ics',2215,'application/ics','',0,'2025-12-09 19:07:09'),
(143,356,'693874a96a55e_Vuzix_Field_Services_White_Paper_FINAL.pdf','Vuzix_Field+Services_White+Paper_FINAL.pdf','uploads/email_attachments/693874a96a55e_Vuzix_Field_Services_White_Paper_FINAL.pdf',4037331,'application/pdf','',0,'2025-12-09 19:12:41'),
(144,356,'693874a96ae94_Vuzix-CaseStudy-NextAR-v4.pdf','Vuzix-CaseStudy-NextAR-v4.pdf','uploads/email_attachments/693874a96ae94_Vuzix-CaseStudy-NextAR-v4.pdf',398862,'application/pdf','',0,'2025-12-09 19:12:41'),
(145,356,'693874a96b042_Vuzix-M400-Smart-Glasses.pdf','Vuzix-M400-Smart-Glasses.pdf','uploads/email_attachments/693874a96b042_Vuzix-M400-Smart-Glasses.pdf',447799,'application/pdf','',0,'2025-12-09 19:12:41'),
(146,356,'693874a96c4fb_Vuzix-M4000-Smart-Glasses-Android11.pdf','Vuzix-M4000-Smart-Glasses-Android11.pdf','uploads/email_attachments/693874a96c4fb_Vuzix-M4000-Smart-Glasses-Android11.pdf',346251,'application/pdf','',0,'2025-12-09 19:12:41'),
(147,356,'693874a96cde6_Vuzix-Whitepaper-Automotive.pdf','Vuzix-Whitepaper-Automotive.pdf','uploads/email_attachments/693874a96cde6_Vuzix-Whitepaper-Automotive.pdf',566065,'application/pdf','',0,'2025-12-09 19:12:41'),
(148,356,'693874a96d463_Vuzix-Z100-Smart-Glasses.pdf','Vuzix-Z100-Smart-Glasses.pdf','uploads/email_attachments/693874a96d463_Vuzix-Z100-Smart-Glasses.pdf',357303,'application/pdf','',0,'2025-12-09 19:12:41'),
(149,356,'693874a96d7bb_OhanaOne_Full_Case_Study.pdf','OhanaOne+Full+Case+Study.pdf','uploads/email_attachments/693874a96d7bb_OhanaOne_Full_Case_Study.pdf',2051107,'application/pdf','',0,'2025-12-09 19:12:41'),
(150,356,'693874a96dfa6_Vuzix-CaseStudy-UofR.pdf','Vuzix-CaseStudy-UofR.pdf','uploads/email_attachments/693874a96dfa6_Vuzix-CaseStudy-UofR.pdf',416454,'application/pdf','',0,'2025-12-09 19:12:41'),
(151,356,'693874a96e9c2_Vuzix-Chi-Mei-Medical-Case-Study-2020.pdf','Vuzix-Chi-Mei-Medical-Case-Study-2020.pdf','uploads/email_attachments/693874a96e9c2_Vuzix-Chi-Mei-Medical-Case-Study-2020.pdf',4916311,'application/pdf','',0,'2025-12-09 19:12:41'),
(152,366,'693874ad88d89_Deltawerx_-_Mavrix_-_edited-_part_4d__signed.pdf','Deltawerx - Mavrix - edited-(part 4d) signed.pdf','uploads/email_attachments/693874ad88d89_Deltawerx_-_Mavrix_-_edited-_part_4d__signed.pdf',682954,'application/pdf','',0,'2025-12-09 19:12:45'),
(153,375,'693874b1a35b2_ODSC_Slick_v.ws.pdf','ODSC Slick v.ws.pdf','uploads/email_attachments/693874b1a35b2_ODSC_Slick_v.ws.pdf',589147,'application/pdf','',0,'2025-12-09 19:12:49'),
(154,375,'693874b1a393e_ODSC_Red_Team_v3.pdf','ODSC Red Team v3.pdf','uploads/email_attachments/693874b1a393e_ODSC_Red_Team_v3.pdf',174123,'application/pdf','',0,'2025-12-09 19:12:49'),
(155,376,'693874b1b70bf_AttachedImage','AttachedImage','uploads/email_attachments/693874b1b70bf_AttachedImage',2877,'image/png','12710604-4b9d-46f0-8811-bdd2f19621b7',1,'2025-12-09 19:12:49'),
(156,376,'693874b1b774d_AttachedImage','AttachedImage','uploads/email_attachments/693874b1b774d_AttachedImage',560,'image/png','e5edb4e2-0763-456e-bd09-552a2b2cf973',1,'2025-12-09 19:12:49'),
(157,376,'693874b1b7bda_AttachedImage','AttachedImage','uploads/email_attachments/693874b1b7bda_AttachedImage',2133,'image/png','0af8744a-eb1a-4dcf-a873-86c338030646',1,'2025-12-09 19:12:49'),
(158,377,'693874b2378ad_58676128-8ae8-4415-a93a-6fd5bdcccaee','58676128-8ae8-4415-a93a-6fd5bdcccaee','uploads/email_attachments/693874b2378ad_58676128-8ae8-4415-a93a-6fd5bdcccaee',1526,'image/png','58676128-8ae8-4415-a93a-6fd5bdcccaee',1,'2025-12-09 19:12:50'),
(159,377,'693874b238010_0c870a9d-da56-4f00-a30c-5bcef19ab5b0','0c870a9d-da56-4f00-a30c-5bcef19ab5b0','uploads/email_attachments/693874b238010_0c870a9d-da56-4f00-a30c-5bcef19ab5b0',3496,'image/png','0c870a9d-da56-4f00-a30c-5bcef19ab5b0',1,'2025-12-09 19:12:50'),
(160,381,'693874b3b9a53_iCal-2025619.ics','iCal-2025619.ics','uploads/email_attachments/693874b3b9a53_iCal-2025619.ics',4245,'text/calendar','',0,'2025-12-09 19:12:51'),
(161,395,'693874b98f8d2_image001.png','image001.png','uploads/email_attachments/693874b98f8d2_image001.png',11179,'image/png','image001.png@01DBE431.EBC29550',1,'2025-12-09 19:12:57'),
(162,399,'693874bb2dfb7_Project_Rambo_NDA.docx','Project Rambo NDA.docx','uploads/email_attachments/693874bb2dfb7_Project_Rambo_NDA.docx',54245,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','',0,'2025-12-09 19:12:59'),
(163,402,'693874bc34e47_invite.ics','invite.ics','uploads/email_attachments/693874bc34e47_invite.ics',1021,'text/calendar','',0,'2025-12-09 19:13:00'),
(164,403,'693874bebbf02_Project_Rambo_NDA.pdf','Project Rambo NDA.pdf','uploads/email_attachments/693874bebbf02_Project_Rambo_NDA.pdf',406640,'application/pdf','',0,'2025-12-09 19:13:02'),
(165,405,'693874c052ec4_invite.ics','invite.ics','uploads/email_attachments/693874c052ec4_invite.ics',2132,'application/ics','',0,'2025-12-09 19:13:04'),
(166,406,'693874c06cafc_invite.ics','invite.ics','uploads/email_attachments/693874c06cafc_invite.ics',2164,'application/ics','',0,'2025-12-09 19:13:04'),
(167,408,'693874c166580_invite.ics','invite.ics','uploads/email_attachments/693874c166580_invite.ics',2164,'application/ics','',0,'2025-12-09 19:13:05'),
(168,419,'693874c515bbd_SL_ProForma.xlsx','SL ProForma.xlsx','uploads/email_attachments/693874c515bbd_SL_ProForma.xlsx',42585,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','f_mcjzhvhl0',0,'2025-12-09 19:13:09'),
(169,422,'693874c61a65e_image001.jpg','image001.jpg','uploads/email_attachments/693874c61a65e_image001.jpg',7012,'image/jpeg','image001.jpg@01DBEB3B.215BE530',1,'2025-12-09 19:13:10'),
(170,422,'693874c61acd9_image002.png','image002.png','uploads/email_attachments/693874c61acd9_image002.png',123,'image/png','image002.png@01DBEB3B.215BE530',1,'2025-12-09 19:13:10'),
(171,422,'693874c61bfad_image003.png','image003.png','uploads/email_attachments/693874c61bfad_image003.png',251,'image/png','image003.png@01DBEB3B.215BE530',1,'2025-12-09 19:13:10'),
(172,422,'693874c61c2ef_image004.png','image004.png','uploads/email_attachments/693874c61c2ef_image004.png',217,'image/png','image004.png@01DBEB3B.215BE530',1,'2025-12-09 19:13:10'),
(173,422,'693874c61c608_image005.png','image005.png','uploads/email_attachments/693874c61c608_image005.png',190,'image/png','image005.png@01DBEB3B.215BE530',1,'2025-12-09 19:13:10'),
(174,428,'693874c85256b_invite.ics','invite.ics','uploads/email_attachments/693874c85256b_invite.ics',2420,'application/ics','',0,'2025-12-09 19:13:12'),
(175,429,'693874c94f541_DRAFT_NDNCA_07.04.2025.docx','DRAFT NDNCA 07.04.2025.docx','uploads/email_attachments/693874c94f541_DRAFT_NDNCA_07.04.2025.docx',52470,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','',0,'2025-12-09 19:13:13'),
(176,429,'693874c94f8f0_DRAFT_NDNCA_07.04.2025.docx','DRAFT NDNCA 07.04.2025.docx','uploads/email_attachments/693874c94f8f0_DRAFT_NDNCA_07.04.2025.docx',53476,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','',0,'2025-12-09 19:13:13'),
(177,433,'693874d44a59f_RRSL_X_Flyer.pdf','RRSL X Flyer.pdf','uploads/email_attachments/693874d44a59f_RRSL_X_Flyer.pdf',121635,'application/pdf','f_mavxpbrx0',0,'2025-12-09 19:13:24'),
(178,433,'693874d44a9a1_RRSL_Series_Strategic_Logix.pdf','RRSL Series Strategic Logix.pdf','uploads/email_attachments/693874d44a9a1_RRSL_Series_Strategic_Logix.pdf',848730,'application/pdf','f_mavxpp7c1',0,'2025-12-09 19:13:24'),
(179,433,'693874d44acd7_Tic_Brief_v3.pdf','Tic Brief v3.pdf','uploads/email_attachments/693874d44acd7_Tic_Brief_v3.pdf',3179795,'application/pdf','f_mavxrkkv2',0,'2025-12-09 19:13:24'),
(180,433,'693874d44b6ce_RRSL-XR_7__Build_Manual__3_.pdf','RRSL-XR 7_ Build Manual (3).pdf','uploads/email_attachments/693874d44b6ce_RRSL-XR_7__Build_Manual__3_.pdf',219124,'application/pdf','f_mavxvypo3',0,'2025-12-09 19:13:24'),
(181,436,'693874d57aad5_Due_Diligence_Checklist_-_Business_Related_Transaction.pdf','Due Diligence Checklist - Business Related Transaction.pdf','uploads/email_attachments/693874d57aad5_Due_Diligence_Checklist_-_Business_Related_Transaction.pdf',191976,'application/pdf','',1,'2025-12-09 19:13:25'),
(182,436,'693874d5854c5_PastedGraphic-3.tiff','PastedGraphic-3.tiff','uploads/email_attachments/693874d5854c5_PastedGraphic-3.tiff',9488,'image/tiff','',1,'2025-12-09 19:13:25'),
(183,438,'693874d7005ae_Cost_Benefit_Analysis_RRSL-X.docx','Cost Benefit Analysis RRSL-X.docx','uploads/email_attachments/693874d7005ae_Cost_Benefit_Analysis_RRSL-X.docx',24388,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','',0,'2025-12-09 19:13:27'),
(184,438,'693874d70083d_Market_Research_Blue_UAS_Comparison_Table_RRSL.pdf','Market Research Blue_UAS_Comparison_Table_RRSL.pdf','uploads/email_attachments/693874d70083d_Market_Research_Blue_UAS_Comparison_Table_RRSL.pdf',166368,'application/pdf','',0,'2025-12-09 19:13:27'),
(185,438,'693874d700bb3_1ID_RRSL-X_Quote.pdf','1ID RRSL-X Quote.pdf','uploads/email_attachments/693874d700bb3_1ID_RRSL-X_Quote.pdf',697436,'application/pdf','',0,'2025-12-09 19:13:27'),
(186,438,'693874d700f48_RRSL_Quad_Chart.pptx','RRSL Quad Chart.pptx','uploads/email_attachments/693874d700f48_RRSL_Quad_Chart.pptx',242951,'application/vnd.openxmlformats-officedocument.presentationml.presentation','',0,'2025-12-09 19:13:27'),
(187,438,'693874d701ee6_RRSL_White_Paper_-CA.pdf','RRSL White Paper -CA.pdf','uploads/email_attachments/693874d701ee6_RRSL_White_Paper_-CA.pdf',217385,'application/pdf','',0,'2025-12-09 19:13:27'),
(188,438,'693874d702529_Sole_Source_and_Justification_Memo_RRSL.docx','Sole Source and Justification Memo RRSL.docx','uploads/email_attachments/693874d702529_Sole_Source_and_Justification_Memo_RRSL.docx',308959,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','',0,'2025-12-09 19:13:27'),
(189,440,'693874d8013c7_signed_checklist.pdf','signed_checklist.pdf','uploads/email_attachments/693874d8013c7_signed_checklist.pdf',243213,'application/pdf','',0,'2025-12-09 19:13:28'),
(190,443,'693874d997546_FINAL_NDNCA_07.10.25.pdf','FINAL NDNCA 07.10.25.pdf','uploads/email_attachments/693874d997546_FINAL_NDNCA_07.10.25.pdf',897237,'application/pdf','',0,'2025-12-09 19:13:29'),
(191,443,'693874d997f4d_FINAL_NDNCA_07.10.25.docx','FINAL NDNCA 07.10.25.docx','uploads/email_attachments/693874d997f4d_FINAL_NDNCA_07.10.25.docx',49599,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','',0,'2025-12-09 19:13:29'),
(192,444,'693874daa9d86_image001.png','image001.png','uploads/email_attachments/693874daa9d86_image001.png',456027,'image/png','image001.png@01DBEC40.F058DFE0',1,'2025-12-09 19:13:30'),
(193,444,'693874daac0e8_SD_UAS_2025_DOGE_OGC_Final_6.30.2025.docx','SD UAS 2025 DOGE_OGC Final_6.30.2025.docx','uploads/email_attachments/693874daac0e8_SD_UAS_2025_DOGE_OGC_Final_6.30.2025.docx',60633,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','c1751494074.356.129@localhost',0,'2025-12-09 19:13:30'),
(194,444,'693874daac4eb_SD_One_Pager.docx','SD One Pager.docx','uploads/email_attachments/693874daac4eb_SD_One_Pager.docx',18280,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','c1751494074.356.130@localhost',0,'2025-12-09 19:13:30'),
(195,450,'693874dcb02aa_image001.jpg','image001.jpg','uploads/email_attachments/693874dcb02aa_image001.jpg',2615,'image/jpeg','image001.jpg@01DBF255.2A8087D0',1,'2025-12-09 19:13:32'),
(196,450,'693874dcb077e_image002.jpg','image002.jpg','uploads/email_attachments/693874dcb077e_image002.jpg',12920,'image/jpeg','image002.jpg@01DBF255.2A8087D0',1,'2025-12-09 19:13:32'),
(197,452,'693874e05ddb7_usa_usa_usa_usa_usa.png','usa usa usa usa usa.png','uploads/email_attachments/693874e05ddb7_usa_usa_usa_usa_usa.png',2480251,'image/png','ii_mcz0ak6s0',1,'2025-12-09 19:13:36'),
(198,452,'693874e05e5b8_fighting_tiger.png','fighting tiger.png','uploads/email_attachments/693874e05e5b8_fighting_tiger.png',2116141,'image/png','ii_mcz0c3tn1',1,'2025-12-09 19:13:36'),
(199,453,'693874e385cb8_usa_usa_usa_usa_usa.png','usa usa usa usa usa.png','uploads/email_attachments/693874e385cb8_usa_usa_usa_usa_usa.png',2480251,'image/png','ii_197fa411e2ae82c27ca1',1,'2025-12-09 19:13:39'),
(200,453,'693874e386500_fighting_tiger.png','fighting tiger.png','uploads/email_attachments/693874e386500_fighting_tiger.png',2116141,'image/png','ii_197fa411e2a5c19cfac2',1,'2025-12-09 19:13:39'),
(201,453,'693874e386a75_EFBB4903-4E4D-4345-9872-EA8F28C59A40.png','EFBB4903-4E4D-4345-9872-EA8F28C59A40.png','uploads/email_attachments/693874e386a75_EFBB4903-4E4D-4345-9872-EA8F28C59A40.png',47541,'image/png','ii_197fa411e2a720f840f3',1,'2025-12-09 19:13:39'),
(202,454,'693874e7c0741_usa_usa_usa_usa_usa.png','usa usa usa usa usa.png','uploads/email_attachments/693874e7c0741_usa_usa_usa_usa_usa.png',2480251,'image/png','ii_197fa528da6e82c27ca1',1,'2025-12-09 19:13:43'),
(203,454,'693874e7c0ec9_fighting_tiger.png','fighting tiger.png','uploads/email_attachments/693874e7c0ec9_fighting_tiger.png',2116141,'image/png','ii_197fa528da65c19cfac2',1,'2025-12-09 19:13:43'),
(204,454,'693874e7c2555_EFBB4903-4E4D-4345-9872-EA8F28C59A40.png','EFBB4903-4E4D-4345-9872-EA8F28C59A40.png','uploads/email_attachments/693874e7c2555_EFBB4903-4E4D-4345-9872-EA8F28C59A40.png',47541,'image/png','ii_197fa528da6720f840f3',1,'2025-12-09 19:13:43'),
(205,454,'693874e7c277d_CC0B1F82-750F-45FA-A78E-9373E594FE03.png','CC0B1F82-750F-45FA-A78E-9373E594FE03.png','uploads/email_attachments/693874e7c277d_CC0B1F82-750F-45FA-A78E-9373E594FE03.png',7487,'image/png','ii_197fa528da61a8212c44',1,'2025-12-09 19:13:43'),
(206,454,'693874e7c297d_PCB_ESC_original_3.png','PCB ESC original 3.png','uploads/email_attachments/693874e7c297d_PCB_ESC_original_3.png',2106991,'image/png','ii_mcz190214',1,'2025-12-09 19:13:43'),
(207,455,'693874e83db3b_Outlook-ryy4lwat.png','Outlook-ryy4lwat.png','uploads/email_attachments/693874e83db3b_Outlook-ryy4lwat.png',26136,'image/png','a642b8ce-bf48-4fd1-8975-71d757f0d8d7',1,'2025-12-09 19:13:44'),
(208,464,'693874eb64152__MAVRIX_MNDA_Votix.docx','_MAVRIX_MNDA_Votix.docx','uploads/email_attachments/693874eb64152__MAVRIX_MNDA_Votix.docx',36442,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','',0,'2025-12-09 19:13:47'),
(209,469,'693874ee10ebb_Camera_Boards.doc','Camera Boards.doc','uploads/email_attachments/693874ee10ebb_Camera_Boards.doc',1056768,'application/msword','f_md62fp8h0',0,'2025-12-09 19:13:50'),
(210,470,'693874ee87cb2_image001.jpg','image001.jpg','uploads/email_attachments/693874ee87cb2_image001.jpg',2615,'image/jpeg','image001.jpg@01DBF645.BA861F90',1,'2025-12-09 19:13:50'),
(211,470,'693874ee87fd2_image002.jpg','image002.jpg','uploads/email_attachments/693874ee87fd2_image002.jpg',12920,'image/jpeg','image002.jpg@01DBF645.BA861F90',1,'2025-12-09 19:13:50'),
(212,471,'693874f1b40e3_20220625_130119.jpg','20220625_130119.jpg','uploads/email_attachments/693874f1b40e3_20220625_130119.jpg',4287522,'image/jpeg','ii_md64dz8t0',1,'2025-12-09 19:13:53'),
(213,471,'693874f1b4c82_image.png','image.png','uploads/email_attachments/693874f1b4c82_image.png',120570,'image/png','ii_md64ha7j1',1,'2025-12-09 19:13:53'),
(214,471,'693874f1b4e9d_20220117_181656.jpg','20220117_181656.jpg','uploads/email_attachments/693874f1b4e9d_20220117_181656.jpg',185133,'image/jpeg','ii_md64nkdw2',1,'2025-12-09 19:13:53'),
(215,472,'693874f23e401_CADX_DSC_0042.JPG','CADX_DSC_0042.JPG','uploads/email_attachments/693874f23e401_CADX_DSC_0042.JPG',334245,'image/jpeg','ii_md612qie0',1,'2025-12-09 19:13:54'),
(216,473,'693874f36ad8b_20250711_110655.jpg','20250711_110655.jpg','uploads/email_attachments/693874f36ad8b_20250711_110655.jpg',815744,'image/jpeg','ii_md63ytaa1',1,'2025-12-09 19:13:55'),
(217,473,'693874f36ba78_carrier.png','carrier.png','uploads/email_attachments/693874f36ba78_carrier.png',126179,'image/png','ii_md641ixd2',1,'2025-12-09 19:13:55'),
(218,476,'693874f55ac4b_20250715_185728.jpg','20250715_185728.jpg','uploads/email_attachments/693874f55ac4b_20250715_185728.jpg',1195440,'image/jpeg','ii_md64wfbb0',1,'2025-12-09 19:13:57'),
(219,477,'693874f88ad91_230814F4-0583-4A57-B764-E223B2CE0C71.jpeg','230814F4-0583-4A57-B764-E223B2CE0C71.jpeg','uploads/email_attachments/693874f88ad91_230814F4-0583-4A57-B764-E223B2CE0C71.jpeg',1743080,'image/jpeg','',0,'2025-12-09 19:14:00'),
(220,477,'693874f88b3b8_A787A2D0-5AC8-41CA-8442-F75FAA442A9D.jpeg','A787A2D0-5AC8-41CA-8442-F75FAA442A9D.jpeg','uploads/email_attachments/693874f88b3b8_A787A2D0-5AC8-41CA-8442-F75FAA442A9D.jpeg',1750822,'image/jpeg','',0,'2025-12-09 19:14:00'),
(221,477,'693874f88c2a1_6D1EFF1D-63A8-4342-B209-82B74CC143F6.jpeg','6D1EFF1D-63A8-4342-B209-82B74CC143F6.jpeg','uploads/email_attachments/693874f88c2a1_6D1EFF1D-63A8-4342-B209-82B74CC143F6.jpeg',1581933,'image/jpeg','',0,'2025-12-09 19:14:00');
/*!40000 ALTER TABLE `email_attachments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `email_filters`
--

DROP TABLE IF EXISTS `email_filters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_filters` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `name` varchar(255) NOT NULL,
  `conditions` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT 'Match conditions (from, subject, has_attachment, etc)' CHECK (json_valid(`conditions`)),
  `actions` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT 'Actions to perform (move_to_folder, mark_read, star, etc)' CHECK (json_valid(`actions`)),
  `is_active` tinyint(1) DEFAULT 1,
  `priority` int(11) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_active` (`user_id`,`is_active`),
  CONSTRAINT `email_filters_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_filters`
--

LOCK TABLES `email_filters` WRITE;
/*!40000 ALTER TABLE `email_filters` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `email_filters` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `email_folder_map`
--

DROP TABLE IF EXISTS `email_folder_map`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_folder_map` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `email_id` int(10) unsigned NOT NULL,
  `folder_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_email_folder` (`email_id`,`folder_id`),
  KEY `idx_folder` (`folder_id`),
  CONSTRAINT `email_folder_map_ibfk_1` FOREIGN KEY (`email_id`) REFERENCES `emails` (`id`) ON DELETE CASCADE,
  CONSTRAINT `email_folder_map_ibfk_2` FOREIGN KEY (`folder_id`) REFERENCES `email_folders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1164 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_folder_map`
--

LOCK TABLES `email_folder_map` WRITE;
/*!40000 ALTER TABLE `email_folder_map` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `email_folder_map` VALUES
(226,49,16,'2025-12-02 21:54:07'),
(230,53,16,'2025-12-04 11:33:14'),
(232,55,16,'2025-12-04 12:01:25'),
(234,56,76,'2025-12-04 12:33:10'),
(235,52,76,'2025-12-04 12:33:10'),
(236,51,76,'2025-12-04 12:33:10'),
(237,50,76,'2025-12-04 12:33:10'),
(238,57,16,'2025-12-04 12:34:51'),
(242,58,76,'2025-12-04 12:45:05'),
(243,54,76,'2025-12-04 12:45:22'),
(244,59,16,'2025-12-04 12:45:53'),
(246,60,76,'2025-12-04 13:14:48'),
(247,61,16,'2025-12-04 13:15:08'),
(248,62,1,'2025-12-04 13:15:17'),
(249,63,4,'2025-12-04 14:04:32'),
(250,64,4,'2025-12-04 14:04:32'),
(251,65,4,'2025-12-04 14:04:32'),
(252,66,4,'2025-12-04 14:04:33'),
(253,67,4,'2025-12-04 14:04:34'),
(254,68,4,'2025-12-04 14:04:34'),
(255,69,4,'2025-12-04 14:04:34'),
(256,70,4,'2025-12-04 14:04:37'),
(257,71,4,'2025-12-04 14:04:44'),
(258,72,4,'2025-12-04 14:04:44'),
(259,73,4,'2025-12-04 14:04:44'),
(260,74,4,'2025-12-04 14:04:44'),
(261,75,4,'2025-12-04 14:04:44'),
(262,76,4,'2025-12-04 14:04:45'),
(263,77,4,'2025-12-04 14:04:46'),
(264,78,4,'2025-12-04 14:04:47'),
(265,79,4,'2025-12-04 14:04:49'),
(266,80,4,'2025-12-04 14:04:49'),
(267,81,4,'2025-12-04 14:04:49'),
(268,82,4,'2025-12-04 14:04:49'),
(269,83,4,'2025-12-04 14:04:50'),
(270,84,4,'2025-12-04 14:04:50'),
(271,85,4,'2025-12-04 14:04:51'),
(272,86,4,'2025-12-04 14:04:52'),
(273,87,4,'2025-12-04 14:04:52'),
(274,88,4,'2025-12-04 14:04:53'),
(275,89,4,'2025-12-04 14:04:54'),
(276,90,4,'2025-12-04 14:04:54'),
(277,91,4,'2025-12-04 14:04:55'),
(278,92,4,'2025-12-04 14:04:56'),
(279,93,4,'2025-12-04 14:04:57'),
(280,94,4,'2025-12-04 14:04:57'),
(281,95,4,'2025-12-04 14:04:58'),
(282,96,4,'2025-12-04 14:05:21'),
(283,97,4,'2025-12-04 14:05:21'),
(284,98,4,'2025-12-04 14:05:22'),
(285,99,4,'2025-12-04 14:05:22'),
(286,100,4,'2025-12-04 14:05:22'),
(287,101,4,'2025-12-04 14:05:22'),
(288,102,4,'2025-12-04 14:05:25'),
(289,103,4,'2025-12-04 14:05:25'),
(290,104,4,'2025-12-04 14:05:25'),
(291,105,4,'2025-12-04 14:05:25'),
(292,106,4,'2025-12-04 14:05:25'),
(293,107,4,'2025-12-04 14:05:25'),
(294,108,4,'2025-12-04 14:05:26'),
(295,109,4,'2025-12-04 14:05:26'),
(296,110,4,'2025-12-04 14:05:27'),
(297,114,16,'2025-12-04 14:59:08'),
(298,115,1,'2025-12-04 14:59:09'),
(299,122,19,'2025-12-04 16:09:56'),
(300,128,1,'2025-12-04 16:18:59'),
(301,130,16,'2025-12-04 16:37:54'),
(302,131,1,'2025-12-04 16:38:07'),
(303,138,1,'2025-12-04 22:54:48'),
(304,139,1,'2025-12-04 22:55:58'),
(305,143,4,'2025-12-09 18:52:04'),
(306,144,4,'2025-12-09 18:52:05'),
(307,145,4,'2025-12-09 18:52:08'),
(308,146,4,'2025-12-09 18:52:08'),
(309,147,4,'2025-12-09 18:52:08'),
(310,148,4,'2025-12-09 18:52:09'),
(311,149,4,'2025-12-09 18:52:10'),
(312,150,4,'2025-12-09 18:52:10'),
(313,151,4,'2025-12-09 18:52:10'),
(314,152,4,'2025-12-09 18:52:11'),
(315,153,4,'2025-12-09 18:52:11'),
(316,154,4,'2025-12-09 18:52:12'),
(317,155,4,'2025-12-09 18:52:12'),
(318,156,4,'2025-12-09 18:52:12'),
(319,157,4,'2025-12-09 18:52:13'),
(320,158,4,'2025-12-09 18:52:13'),
(321,160,4,'2025-12-09 18:52:21'),
(322,161,4,'2025-12-09 18:52:22'),
(323,162,4,'2025-12-09 18:52:22'),
(324,163,4,'2025-12-09 18:52:23'),
(325,164,4,'2025-12-09 18:52:23'),
(326,165,4,'2025-12-09 18:52:23'),
(327,166,4,'2025-12-09 18:52:23'),
(328,167,4,'2025-12-09 18:52:24'),
(329,168,4,'2025-12-09 18:52:24'),
(330,169,4,'2025-12-09 18:52:25'),
(331,170,4,'2025-12-09 18:52:25'),
(332,171,4,'2025-12-09 18:52:25'),
(333,172,4,'2025-12-09 18:52:26'),
(334,173,4,'2025-12-09 18:52:26'),
(335,174,4,'2025-12-09 18:52:26'),
(336,175,4,'2025-12-09 18:52:27'),
(337,176,4,'2025-12-09 18:52:27'),
(338,177,4,'2025-12-09 18:52:28'),
(339,178,4,'2025-12-09 18:52:28'),
(340,179,4,'2025-12-09 18:52:29'),
(341,180,4,'2025-12-09 18:52:31'),
(342,181,4,'2025-12-09 18:52:31'),
(343,182,4,'2025-12-09 18:52:32'),
(344,183,4,'2025-12-09 18:52:32'),
(345,184,4,'2025-12-09 18:52:32'),
(346,185,4,'2025-12-09 18:52:33'),
(347,186,4,'2025-12-09 18:52:33'),
(348,187,4,'2025-12-09 19:02:00'),
(349,188,4,'2025-12-09 19:02:00'),
(350,189,4,'2025-12-09 19:02:01'),
(351,190,4,'2025-12-09 19:02:01'),
(352,191,4,'2025-12-09 19:02:02'),
(353,192,4,'2025-12-09 19:02:03'),
(354,193,4,'2025-12-09 19:02:04'),
(355,194,4,'2025-12-09 19:02:04'),
(356,195,4,'2025-12-09 19:02:04'),
(357,196,4,'2025-12-09 19:02:04'),
(358,197,4,'2025-12-09 19:02:05'),
(359,198,4,'2025-12-09 19:02:05'),
(360,199,4,'2025-12-09 19:02:05'),
(361,200,4,'2025-12-09 19:02:06'),
(362,201,4,'2025-12-09 19:02:06'),
(363,202,4,'2025-12-09 19:02:06'),
(364,203,4,'2025-12-09 19:02:07'),
(365,204,4,'2025-12-09 19:02:07'),
(366,205,4,'2025-12-09 19:02:07'),
(367,206,4,'2025-12-09 19:02:08'),
(368,207,4,'2025-12-09 19:02:08'),
(369,208,4,'2025-12-09 19:02:09'),
(370,209,4,'2025-12-09 19:02:09'),
(371,210,4,'2025-12-09 19:02:09'),
(372,211,4,'2025-12-09 19:02:10'),
(373,212,4,'2025-12-09 19:02:10'),
(374,213,4,'2025-12-09 19:02:12'),
(375,214,4,'2025-12-09 19:02:12'),
(376,215,4,'2025-12-09 19:02:13'),
(377,216,4,'2025-12-09 19:02:13'),
(378,217,4,'2025-12-09 19:02:13'),
(379,218,4,'2025-12-09 19:02:14'),
(380,219,4,'2025-12-09 19:02:14'),
(381,220,4,'2025-12-09 19:02:14'),
(382,221,4,'2025-12-09 19:02:14'),
(383,222,4,'2025-12-09 19:02:15'),
(384,223,4,'2025-12-09 19:02:15'),
(385,224,4,'2025-12-09 19:02:16'),
(386,225,4,'2025-12-09 19:02:16'),
(387,226,4,'2025-12-09 19:02:16'),
(388,227,4,'2025-12-09 19:02:17'),
(389,228,4,'2025-12-09 19:02:17'),
(390,229,4,'2025-12-09 19:02:17'),
(391,230,4,'2025-12-09 19:02:18'),
(392,231,4,'2025-12-09 19:02:18'),
(393,232,4,'2025-12-09 19:02:18'),
(394,233,4,'2025-12-09 19:02:19'),
(395,234,4,'2025-12-09 19:02:19'),
(396,235,4,'2025-12-09 19:02:20'),
(397,236,4,'2025-12-09 19:02:20'),
(398,237,4,'2025-12-09 19:02:20'),
(399,238,4,'2025-12-09 19:02:21'),
(400,239,4,'2025-12-09 19:02:21'),
(401,240,4,'2025-12-09 19:02:22'),
(402,241,4,'2025-12-09 19:02:22'),
(403,242,4,'2025-12-09 19:02:22'),
(404,243,4,'2025-12-09 19:02:22'),
(405,244,4,'2025-12-09 19:02:23'),
(406,245,4,'2025-12-09 19:02:23'),
(407,246,4,'2025-12-09 19:02:23'),
(408,247,4,'2025-12-09 19:02:24'),
(409,248,4,'2025-12-09 19:02:24'),
(410,249,4,'2025-12-09 19:02:24'),
(411,250,4,'2025-12-09 19:02:25'),
(412,251,4,'2025-12-09 19:02:25'),
(413,252,4,'2025-12-09 19:02:25'),
(414,253,4,'2025-12-09 19:02:26'),
(415,254,4,'2025-12-09 19:02:26'),
(416,255,4,'2025-12-09 19:02:27'),
(417,256,4,'2025-12-09 19:02:27'),
(418,257,4,'2025-12-09 19:02:28'),
(419,258,4,'2025-12-09 19:02:28'),
(420,259,4,'2025-12-09 19:03:04'),
(421,260,4,'2025-12-09 19:03:05'),
(422,261,4,'2025-12-09 19:03:05'),
(423,262,4,'2025-12-09 19:03:05'),
(424,263,4,'2025-12-09 19:03:06'),
(425,264,4,'2025-12-09 19:03:06'),
(426,265,4,'2025-12-09 19:03:07'),
(427,266,4,'2025-12-09 19:03:07'),
(428,267,4,'2025-12-09 19:03:08'),
(429,268,4,'2025-12-09 19:03:08'),
(430,269,4,'2025-12-09 19:03:08'),
(431,270,4,'2025-12-09 19:03:09'),
(432,271,4,'2025-12-09 19:03:10'),
(433,272,4,'2025-12-09 19:03:10'),
(434,273,4,'2025-12-09 19:03:10'),
(435,274,4,'2025-12-09 19:03:12'),
(436,275,4,'2025-12-09 19:03:12'),
(437,276,4,'2025-12-09 19:03:12'),
(438,277,4,'2025-12-09 19:03:13'),
(439,278,4,'2025-12-09 19:03:13'),
(440,279,4,'2025-12-09 19:03:17'),
(441,280,4,'2025-12-09 19:03:18'),
(442,281,4,'2025-12-09 19:03:18'),
(443,282,4,'2025-12-09 19:03:18'),
(444,283,4,'2025-12-09 19:03:19'),
(445,284,4,'2025-12-09 19:03:19'),
(446,285,4,'2025-12-09 19:03:20'),
(447,286,4,'2025-12-09 19:03:20'),
(448,287,4,'2025-12-09 19:03:20'),
(449,288,4,'2025-12-09 19:03:20'),
(450,289,4,'2025-12-09 19:03:21'),
(451,290,4,'2025-12-09 19:03:21'),
(452,291,4,'2025-12-09 19:06:44'),
(453,292,4,'2025-12-09 19:06:44'),
(454,293,4,'2025-12-09 19:06:44'),
(455,294,4,'2025-12-09 19:06:45'),
(456,295,4,'2025-12-09 19:06:45'),
(457,296,4,'2025-12-09 19:06:46'),
(458,297,4,'2025-12-09 19:06:46'),
(459,298,4,'2025-12-09 19:06:46'),
(460,299,4,'2025-12-09 19:06:47'),
(461,300,4,'2025-12-09 19:06:47'),
(462,301,4,'2025-12-09 19:06:47'),
(463,302,4,'2025-12-09 19:06:48'),
(464,303,4,'2025-12-09 19:06:48'),
(465,304,4,'2025-12-09 19:06:49'),
(466,305,4,'2025-12-09 19:06:49'),
(467,306,4,'2025-12-09 19:06:49'),
(468,307,4,'2025-12-09 19:06:50'),
(469,308,4,'2025-12-09 19:06:50'),
(470,309,4,'2025-12-09 19:06:51'),
(471,310,4,'2025-12-09 19:06:51'),
(472,311,4,'2025-12-09 19:06:52'),
(473,312,4,'2025-12-09 19:06:52'),
(474,313,4,'2025-12-09 19:06:53'),
(475,314,4,'2025-12-09 19:06:53'),
(476,315,4,'2025-12-09 19:06:53'),
(477,316,4,'2025-12-09 19:06:54'),
(478,317,4,'2025-12-09 19:06:54'),
(479,318,4,'2025-12-09 19:06:54'),
(480,319,4,'2025-12-09 19:06:55'),
(481,320,4,'2025-12-09 19:06:55'),
(482,321,4,'2025-12-09 19:06:55'),
(483,322,4,'2025-12-09 19:06:56'),
(484,323,4,'2025-12-09 19:06:56'),
(485,324,4,'2025-12-09 19:06:56'),
(486,325,4,'2025-12-09 19:06:57'),
(487,326,4,'2025-12-09 19:06:57'),
(488,327,4,'2025-12-09 19:06:57'),
(489,328,4,'2025-12-09 19:06:58'),
(490,329,4,'2025-12-09 19:06:58'),
(491,330,4,'2025-12-09 19:06:58'),
(492,331,4,'2025-12-09 19:06:59'),
(493,332,4,'2025-12-09 19:06:59'),
(494,333,4,'2025-12-09 19:06:59'),
(495,334,4,'2025-12-09 19:07:00'),
(496,335,4,'2025-12-09 19:07:00'),
(497,336,4,'2025-12-09 19:07:00'),
(498,337,4,'2025-12-09 19:07:02'),
(499,338,4,'2025-12-09 19:07:03'),
(500,339,4,'2025-12-09 19:07:03'),
(501,340,4,'2025-12-09 19:07:03'),
(502,341,4,'2025-12-09 19:07:04'),
(503,342,4,'2025-12-09 19:07:04'),
(504,343,4,'2025-12-09 19:07:05'),
(505,344,4,'2025-12-09 19:07:05'),
(506,345,4,'2025-12-09 19:07:06'),
(507,346,4,'2025-12-09 19:07:06'),
(508,347,4,'2025-12-09 19:07:06'),
(509,348,4,'2025-12-09 19:07:08'),
(510,349,4,'2025-12-09 19:07:08'),
(511,350,4,'2025-12-09 19:07:08'),
(512,351,4,'2025-12-09 19:07:09'),
(513,352,4,'2025-12-09 19:07:09'),
(514,353,4,'2025-12-09 19:07:09'),
(515,354,4,'2025-12-09 19:12:32'),
(516,355,4,'2025-12-09 19:12:32'),
(517,356,4,'2025-12-09 19:12:41'),
(518,357,4,'2025-12-09 19:12:41'),
(519,358,4,'2025-12-09 19:12:42'),
(520,359,4,'2025-12-09 19:12:42'),
(521,360,4,'2025-12-09 19:12:43'),
(522,361,4,'2025-12-09 19:12:43'),
(523,362,4,'2025-12-09 19:12:43'),
(524,363,4,'2025-12-09 19:12:43'),
(525,364,4,'2025-12-09 19:12:44'),
(526,365,4,'2025-12-09 19:12:44'),
(527,366,4,'2025-12-09 19:12:45'),
(528,367,4,'2025-12-09 19:12:46'),
(529,368,4,'2025-12-09 19:12:46'),
(530,369,4,'2025-12-09 19:12:46'),
(531,370,4,'2025-12-09 19:12:47'),
(532,371,4,'2025-12-09 19:12:47'),
(533,372,4,'2025-12-09 19:12:48'),
(534,373,4,'2025-12-09 19:12:48'),
(535,374,4,'2025-12-09 19:12:48'),
(536,375,4,'2025-12-09 19:12:49'),
(537,376,4,'2025-12-09 19:12:49'),
(538,377,4,'2025-12-09 19:12:50'),
(539,378,4,'2025-12-09 19:12:50'),
(540,379,4,'2025-12-09 19:12:50'),
(541,380,4,'2025-12-09 19:12:51'),
(542,381,4,'2025-12-09 19:12:51'),
(543,382,4,'2025-12-09 19:12:51'),
(544,383,4,'2025-12-09 19:12:52'),
(545,384,4,'2025-12-09 19:12:52'),
(546,385,4,'2025-12-09 19:12:53'),
(547,386,4,'2025-12-09 19:12:53'),
(548,387,4,'2025-12-09 19:12:54'),
(549,388,4,'2025-12-09 19:12:55'),
(550,389,4,'2025-12-09 19:12:55'),
(551,390,4,'2025-12-09 19:12:55'),
(552,391,4,'2025-12-09 19:12:56'),
(553,392,4,'2025-12-09 19:12:56'),
(554,393,4,'2025-12-09 19:12:56'),
(555,394,4,'2025-12-09 19:12:57'),
(556,395,4,'2025-12-09 19:12:57'),
(557,396,4,'2025-12-09 19:12:58'),
(558,397,4,'2025-12-09 19:12:58'),
(559,398,4,'2025-12-09 19:12:58'),
(560,399,4,'2025-12-09 19:12:59'),
(561,400,4,'2025-12-09 19:12:59'),
(562,401,4,'2025-12-09 19:13:00'),
(563,402,4,'2025-12-09 19:13:00'),
(564,403,4,'2025-12-09 19:13:02'),
(565,404,4,'2025-12-09 19:13:02'),
(566,405,4,'2025-12-09 19:13:04'),
(567,406,4,'2025-12-09 19:13:04'),
(568,407,4,'2025-12-09 19:13:04'),
(569,408,4,'2025-12-09 19:13:05'),
(570,409,4,'2025-12-09 19:13:05'),
(571,410,4,'2025-12-09 19:13:05'),
(572,411,4,'2025-12-09 19:13:06'),
(573,412,4,'2025-12-09 19:13:06'),
(574,413,4,'2025-12-09 19:13:06'),
(575,414,4,'2025-12-09 19:13:07'),
(576,415,4,'2025-12-09 19:13:07'),
(577,416,4,'2025-12-09 19:13:08'),
(578,417,4,'2025-12-09 19:13:08'),
(579,418,4,'2025-12-09 19:13:08'),
(580,419,4,'2025-12-09 19:13:09'),
(581,420,4,'2025-12-09 19:13:09'),
(582,421,4,'2025-12-09 19:13:09'),
(583,422,4,'2025-12-09 19:13:10'),
(584,423,4,'2025-12-09 19:13:10'),
(585,424,4,'2025-12-09 19:13:10'),
(586,425,4,'2025-12-09 19:13:11'),
(587,426,4,'2025-12-09 19:13:11'),
(588,427,4,'2025-12-09 19:13:11'),
(589,428,4,'2025-12-09 19:13:12'),
(590,429,4,'2025-12-09 19:13:13'),
(591,430,4,'2025-12-09 19:13:13'),
(592,431,4,'2025-12-09 19:13:13'),
(593,432,4,'2025-12-09 19:13:14'),
(594,433,4,'2025-12-09 19:13:24'),
(595,434,4,'2025-12-09 19:13:24'),
(596,435,4,'2025-12-09 19:13:24'),
(597,436,4,'2025-12-09 19:13:25'),
(598,437,4,'2025-12-09 19:13:25'),
(599,438,4,'2025-12-09 19:13:27'),
(600,439,4,'2025-12-09 19:13:27'),
(601,440,4,'2025-12-09 19:13:28'),
(602,441,4,'2025-12-09 19:13:28'),
(603,442,4,'2025-12-09 19:13:28'),
(604,443,4,'2025-12-09 19:13:29'),
(605,444,4,'2025-12-09 19:13:30'),
(606,445,4,'2025-12-09 19:13:31'),
(607,446,4,'2025-12-09 19:13:31'),
(608,447,4,'2025-12-09 19:13:31'),
(609,448,4,'2025-12-09 19:13:32'),
(610,449,4,'2025-12-09 19:13:32'),
(611,450,4,'2025-12-09 19:13:32'),
(612,451,4,'2025-12-09 19:13:33'),
(613,452,4,'2025-12-09 19:13:36'),
(614,453,4,'2025-12-09 19:13:39'),
(615,454,4,'2025-12-09 19:13:43'),
(616,455,4,'2025-12-09 19:13:44'),
(617,456,4,'2025-12-09 19:13:44'),
(618,457,4,'2025-12-09 19:13:44'),
(619,458,4,'2025-12-09 19:13:45'),
(620,459,4,'2025-12-09 19:13:45'),
(621,460,4,'2025-12-09 19:13:46'),
(622,461,4,'2025-12-09 19:13:46'),
(623,462,4,'2025-12-09 19:13:46'),
(624,463,4,'2025-12-09 19:13:47'),
(625,464,4,'2025-12-09 19:13:47'),
(626,465,4,'2025-12-09 19:13:47'),
(627,466,4,'2025-12-09 19:13:48'),
(628,467,4,'2025-12-09 19:13:48'),
(629,468,4,'2025-12-09 19:13:48'),
(630,469,4,'2025-12-09 19:13:50'),
(631,470,4,'2025-12-09 19:13:50'),
(632,471,4,'2025-12-09 19:13:53'),
(633,472,4,'2025-12-09 19:13:54'),
(634,473,4,'2025-12-09 19:13:55'),
(635,474,4,'2025-12-09 19:13:55'),
(636,475,4,'2025-12-09 19:13:56'),
(637,476,4,'2025-12-09 19:13:57'),
(638,477,4,'2025-12-09 19:14:00'),
(639,478,4,'2025-12-09 19:14:01'),
(640,479,4,'2025-12-09 19:14:01'),
(641,480,4,'2025-12-09 19:14:01'),
(642,481,4,'2025-12-09 19:14:02'),
(643,482,4,'2025-12-09 19:14:02'),
(644,483,4,'2025-12-09 19:14:02'),
(645,484,4,'2025-12-09 19:14:03'),
(646,485,4,'2025-12-09 19:17:21'),
(647,486,4,'2025-12-09 19:17:21'),
(648,487,4,'2025-12-09 19:17:22'),
(649,488,4,'2025-12-09 19:17:22'),
(650,489,4,'2025-12-09 19:17:22'),
(651,490,4,'2025-12-09 19:17:23'),
(652,491,4,'2025-12-09 19:17:23'),
(653,492,4,'2025-12-09 19:17:23'),
(654,493,4,'2025-12-09 19:17:24'),
(655,494,4,'2025-12-09 19:17:24'),
(656,495,4,'2025-12-09 19:17:24'),
(657,496,4,'2025-12-09 19:17:25'),
(658,497,4,'2025-12-09 19:17:25'),
(659,498,4,'2025-12-09 19:17:27'),
(660,499,4,'2025-12-09 19:17:27'),
(661,500,4,'2025-12-09 19:17:27'),
(662,501,4,'2025-12-09 19:17:28'),
(663,502,4,'2025-12-09 19:17:31'),
(664,503,4,'2025-12-09 19:17:31'),
(665,504,4,'2025-12-09 19:17:31'),
(666,505,4,'2025-12-09 19:17:32'),
(667,506,4,'2025-12-09 19:17:32'),
(668,507,4,'2025-12-09 19:17:32'),
(669,508,4,'2025-12-09 19:17:33'),
(670,509,4,'2025-12-09 19:17:33'),
(671,510,4,'2025-12-09 19:17:34'),
(672,511,4,'2025-12-09 19:17:34'),
(673,512,4,'2025-12-09 19:17:35'),
(674,513,4,'2025-12-09 19:17:35'),
(675,514,4,'2025-12-09 19:17:35'),
(676,515,4,'2025-12-09 19:17:36'),
(677,516,4,'2025-12-09 19:17:36'),
(678,517,4,'2025-12-09 19:17:37'),
(679,518,4,'2025-12-09 19:17:42'),
(680,519,4,'2025-12-09 19:17:42'),
(681,520,4,'2025-12-09 19:25:45'),
(682,521,4,'2025-12-09 19:25:45'),
(683,522,4,'2025-12-09 19:26:24'),
(684,523,4,'2025-12-09 19:26:25'),
(685,524,4,'2025-12-09 19:26:25'),
(686,525,4,'2025-12-09 19:26:25'),
(687,526,4,'2025-12-09 19:26:26'),
(688,527,4,'2025-12-09 19:26:26'),
(689,528,4,'2025-12-09 19:26:26'),
(690,529,4,'2025-12-09 19:26:27'),
(691,530,4,'2025-12-09 19:26:33'),
(692,531,4,'2025-12-09 19:26:36'),
(693,532,4,'2025-12-09 19:26:36'),
(694,533,4,'2025-12-09 19:26:37'),
(695,534,4,'2025-12-09 19:26:37'),
(696,535,4,'2025-12-09 19:26:37'),
(697,536,4,'2025-12-09 19:26:38'),
(698,537,4,'2025-12-09 19:26:38'),
(699,538,4,'2025-12-09 19:26:38'),
(700,539,4,'2025-12-09 19:26:38'),
(701,540,4,'2025-12-09 19:26:39'),
(702,541,4,'2025-12-09 19:26:39'),
(703,542,4,'2025-12-09 19:26:39'),
(704,543,4,'2025-12-09 19:26:40'),
(705,544,4,'2025-12-09 19:26:49'),
(706,545,4,'2025-12-09 19:26:49'),
(707,546,4,'2025-12-09 19:26:50'),
(708,547,4,'2025-12-09 19:26:50'),
(709,548,4,'2025-12-09 19:26:57'),
(710,549,4,'2025-12-09 19:26:57'),
(711,550,4,'2025-12-09 19:26:58'),
(712,551,4,'2025-12-09 19:26:58'),
(713,552,4,'2025-12-09 19:26:59'),
(714,553,4,'2025-12-09 19:26:59'),
(715,554,4,'2025-12-09 19:26:59'),
(716,555,4,'2025-12-09 19:27:00'),
(717,556,4,'2025-12-09 19:27:00'),
(718,557,4,'2025-12-09 19:27:01'),
(719,558,4,'2025-12-09 19:27:01'),
(720,559,4,'2025-12-09 19:27:01'),
(721,560,4,'2025-12-09 19:27:02'),
(722,561,4,'2025-12-09 19:27:02'),
(723,562,4,'2025-12-09 19:27:02'),
(724,563,4,'2025-12-09 19:27:03'),
(725,564,4,'2025-12-09 19:27:03'),
(726,565,4,'2025-12-09 19:27:03'),
(727,566,4,'2025-12-09 19:27:04'),
(728,567,4,'2025-12-09 19:27:04'),
(729,568,4,'2025-12-09 19:27:04'),
(730,569,4,'2025-12-09 19:27:05'),
(731,570,4,'2025-12-09 19:27:05'),
(732,571,4,'2025-12-09 19:27:06'),
(733,572,4,'2025-12-09 19:27:06'),
(734,573,4,'2025-12-09 19:27:07'),
(735,574,4,'2025-12-09 19:27:07'),
(736,575,4,'2025-12-09 19:27:07'),
(737,576,4,'2025-12-09 19:27:08'),
(738,577,4,'2025-12-09 19:27:08'),
(739,578,4,'2025-12-09 19:27:09'),
(740,579,4,'2025-12-09 19:27:09'),
(741,580,4,'2025-12-09 19:27:09'),
(742,581,4,'2025-12-09 19:27:10'),
(743,582,4,'2025-12-09 19:27:10'),
(744,583,4,'2025-12-09 19:27:10'),
(745,584,4,'2025-12-09 19:27:11'),
(746,585,4,'2025-12-09 19:27:11'),
(747,586,4,'2025-12-09 19:27:11'),
(748,587,4,'2025-12-09 19:27:12'),
(749,588,4,'2025-12-09 19:27:12'),
(750,589,4,'2025-12-09 19:27:12'),
(751,590,4,'2025-12-09 19:27:13'),
(752,591,4,'2025-12-09 19:27:13'),
(753,592,4,'2025-12-09 19:27:13'),
(754,593,4,'2025-12-09 19:27:14'),
(755,594,4,'2025-12-09 19:27:14'),
(756,595,4,'2025-12-09 19:27:15'),
(757,596,4,'2025-12-09 19:27:15'),
(758,597,4,'2025-12-09 19:27:16'),
(759,598,4,'2025-12-09 19:27:16'),
(760,599,4,'2025-12-09 19:27:17'),
(761,600,4,'2025-12-09 19:27:18'),
(762,601,4,'2025-12-09 19:27:19'),
(763,602,4,'2025-12-09 19:27:19'),
(764,603,4,'2025-12-09 19:27:19'),
(765,604,4,'2025-12-09 19:27:20'),
(766,605,4,'2025-12-09 19:27:24'),
(767,606,4,'2025-12-09 19:27:24'),
(768,607,4,'2025-12-09 19:27:25'),
(769,608,4,'2025-12-09 19:27:25'),
(770,609,4,'2025-12-09 19:27:25'),
(771,610,4,'2025-12-09 19:27:26'),
(772,611,4,'2025-12-09 19:27:26'),
(773,612,4,'2025-12-09 19:27:27'),
(774,613,4,'2025-12-09 19:27:28'),
(775,614,4,'2025-12-09 19:27:28'),
(776,615,4,'2025-12-09 19:27:35'),
(777,616,4,'2025-12-09 19:27:35'),
(778,617,4,'2025-12-09 19:27:36'),
(779,618,4,'2025-12-09 19:27:36'),
(780,619,4,'2025-12-09 19:27:36'),
(781,620,4,'2025-12-09 19:27:37'),
(782,621,4,'2025-12-09 19:27:37'),
(783,622,4,'2025-12-09 19:27:38'),
(784,623,4,'2025-12-09 19:27:42'),
(785,624,4,'2025-12-09 19:27:43'),
(786,625,4,'2025-12-09 19:27:43'),
(787,626,4,'2025-12-09 19:27:44'),
(788,627,4,'2025-12-09 19:27:44'),
(789,628,4,'2025-12-09 19:27:44'),
(790,629,4,'2025-12-09 19:27:46'),
(791,630,4,'2025-12-09 19:27:46'),
(792,631,4,'2025-12-09 19:27:46'),
(793,632,4,'2025-12-09 19:27:46'),
(794,633,4,'2025-12-09 19:27:47'),
(795,634,4,'2025-12-09 19:27:48'),
(796,635,4,'2025-12-09 19:27:48'),
(797,636,4,'2025-12-09 19:27:48'),
(798,637,4,'2025-12-09 19:27:49'),
(799,638,4,'2025-12-09 19:27:50'),
(800,639,4,'2025-12-09 19:27:50'),
(801,640,4,'2025-12-09 19:27:51'),
(802,641,4,'2025-12-09 19:27:51'),
(803,642,4,'2025-12-09 19:27:51'),
(804,643,4,'2025-12-09 19:27:52'),
(805,644,4,'2025-12-09 19:27:52'),
(806,645,4,'2025-12-09 19:27:53'),
(807,646,4,'2025-12-09 19:27:53'),
(808,647,4,'2025-12-09 19:27:53'),
(809,648,4,'2025-12-09 19:27:53'),
(810,649,4,'2025-12-09 19:27:55'),
(811,650,4,'2025-12-09 19:27:55'),
(812,651,4,'2025-12-09 19:27:56'),
(813,652,4,'2025-12-09 19:27:56'),
(814,653,4,'2025-12-09 19:27:56'),
(815,654,4,'2025-12-09 19:27:56'),
(816,655,4,'2025-12-09 19:27:57'),
(817,656,4,'2025-12-09 19:27:57'),
(818,657,4,'2025-12-09 19:27:58'),
(819,658,4,'2025-12-09 19:27:58'),
(820,659,4,'2025-12-09 19:27:58'),
(821,660,4,'2025-12-09 19:27:59'),
(822,661,4,'2025-12-09 19:27:59'),
(823,662,4,'2025-12-09 19:28:00'),
(824,663,4,'2025-12-09 19:28:00'),
(825,664,4,'2025-12-09 19:28:00'),
(826,665,4,'2025-12-09 19:28:01'),
(827,666,4,'2025-12-09 19:28:01'),
(828,667,4,'2025-12-09 19:28:01'),
(829,668,4,'2025-12-09 19:28:02'),
(830,669,4,'2025-12-09 19:28:02'),
(831,670,4,'2025-12-09 19:28:02'),
(832,671,4,'2025-12-09 19:28:03'),
(833,672,4,'2025-12-09 19:28:03'),
(834,673,4,'2025-12-09 19:28:03'),
(835,674,4,'2025-12-09 19:28:04'),
(836,675,4,'2025-12-09 19:28:04'),
(837,676,4,'2025-12-09 19:28:04'),
(838,677,4,'2025-12-09 19:28:05'),
(839,678,4,'2025-12-09 19:28:05'),
(840,679,4,'2025-12-09 19:28:05'),
(841,680,4,'2025-12-09 19:28:06'),
(842,681,4,'2025-12-09 19:28:07'),
(843,682,4,'2025-12-09 19:28:07'),
(844,683,4,'2025-12-09 19:28:07'),
(845,684,4,'2025-12-09 19:28:09'),
(846,685,4,'2025-12-09 19:28:09'),
(847,686,4,'2025-12-09 19:28:09'),
(848,687,4,'2025-12-09 19:28:10'),
(849,688,4,'2025-12-09 19:28:10'),
(850,689,4,'2025-12-09 19:28:11'),
(851,690,4,'2025-12-09 19:28:11'),
(852,691,4,'2025-12-09 19:28:11'),
(853,692,4,'2025-12-09 19:28:12'),
(854,693,4,'2025-12-09 19:28:12'),
(855,694,4,'2025-12-09 19:28:12'),
(856,695,4,'2025-12-09 19:28:13'),
(857,696,4,'2025-12-09 19:28:13'),
(858,697,4,'2025-12-09 19:28:14'),
(859,698,4,'2025-12-09 19:28:14'),
(860,699,4,'2025-12-09 19:28:14'),
(861,700,4,'2025-12-09 19:28:15'),
(862,701,4,'2025-12-09 19:28:15'),
(863,702,4,'2025-12-09 19:28:15'),
(864,703,4,'2025-12-09 19:28:16'),
(865,704,4,'2025-12-09 19:28:16'),
(866,705,4,'2025-12-09 19:28:16'),
(867,706,4,'2025-12-09 19:28:17'),
(868,707,4,'2025-12-09 19:28:17'),
(869,708,4,'2025-12-09 19:28:17'),
(870,709,4,'2025-12-09 19:28:17'),
(871,710,4,'2025-12-09 19:28:18'),
(872,711,4,'2025-12-09 19:28:18'),
(873,712,4,'2025-12-09 19:28:18'),
(874,713,4,'2025-12-09 19:28:19'),
(875,714,4,'2025-12-09 19:28:19'),
(876,715,4,'2025-12-09 19:28:19'),
(877,716,4,'2025-12-09 19:28:20'),
(878,717,4,'2025-12-09 19:28:20'),
(879,718,4,'2025-12-09 19:28:21'),
(880,719,4,'2025-12-09 19:28:21'),
(881,720,4,'2025-12-09 19:28:25'),
(882,721,4,'2025-12-09 19:28:26'),
(883,722,4,'2025-12-09 19:28:26'),
(884,723,4,'2025-12-09 19:28:27'),
(885,724,4,'2025-12-09 19:28:27'),
(886,725,4,'2025-12-09 19:28:28'),
(887,726,4,'2025-12-09 19:28:28'),
(888,727,4,'2025-12-09 19:28:28'),
(889,728,4,'2025-12-09 19:28:29'),
(890,729,4,'2025-12-09 19:28:29'),
(891,730,4,'2025-12-09 19:28:29'),
(892,731,4,'2025-12-09 19:28:29'),
(893,732,4,'2025-12-09 19:28:30'),
(894,733,4,'2025-12-09 19:28:30'),
(895,734,4,'2025-12-09 19:28:30'),
(896,735,4,'2025-12-09 19:28:31'),
(897,736,4,'2025-12-09 19:28:31'),
(898,737,4,'2025-12-09 19:28:32'),
(899,738,4,'2025-12-09 19:28:32'),
(900,739,4,'2025-12-09 19:28:34'),
(901,740,4,'2025-12-09 19:28:34'),
(902,741,4,'2025-12-09 19:28:35'),
(903,742,4,'2025-12-09 19:28:35'),
(904,743,4,'2025-12-09 19:28:35'),
(905,744,4,'2025-12-09 19:28:36'),
(906,745,4,'2025-12-09 19:28:36'),
(907,746,4,'2025-12-09 19:28:37'),
(908,747,4,'2025-12-09 19:28:37'),
(909,748,4,'2025-12-09 19:28:37'),
(910,749,4,'2025-12-09 19:28:38'),
(911,750,4,'2025-12-09 19:28:38'),
(912,751,4,'2025-12-09 19:28:38'),
(913,752,4,'2025-12-09 19:28:39'),
(914,753,4,'2025-12-09 19:28:39'),
(915,754,4,'2025-12-09 19:28:40'),
(916,755,4,'2025-12-09 19:28:40'),
(917,756,4,'2025-12-09 19:28:40'),
(918,757,4,'2025-12-09 19:28:41'),
(919,758,4,'2025-12-09 19:28:41'),
(920,759,4,'2025-12-09 19:28:41'),
(921,760,4,'2025-12-09 19:28:42'),
(922,761,4,'2025-12-09 19:28:47'),
(923,762,4,'2025-12-09 19:28:47'),
(924,763,4,'2025-12-09 19:28:48'),
(925,764,4,'2025-12-09 19:28:48'),
(926,765,4,'2025-12-09 19:28:49'),
(927,766,4,'2025-12-09 19:28:49'),
(928,767,4,'2025-12-09 19:28:50'),
(929,768,4,'2025-12-09 19:28:50'),
(930,769,4,'2025-12-09 19:28:50'),
(931,770,4,'2025-12-09 19:28:51'),
(932,771,4,'2025-12-09 19:28:51'),
(933,772,4,'2025-12-09 19:28:51'),
(934,773,4,'2025-12-09 19:28:52'),
(935,774,4,'2025-12-09 19:28:52'),
(936,775,4,'2025-12-09 19:28:52'),
(937,776,4,'2025-12-09 19:28:53'),
(938,777,4,'2025-12-09 19:28:53'),
(939,778,4,'2025-12-09 19:29:02'),
(940,779,4,'2025-12-09 19:29:02'),
(941,780,4,'2025-12-09 19:29:03'),
(942,781,4,'2025-12-09 19:29:04'),
(943,782,4,'2025-12-09 19:29:04'),
(944,783,4,'2025-12-09 19:29:04'),
(945,784,4,'2025-12-09 19:29:05'),
(946,785,4,'2025-12-09 19:29:05'),
(947,786,4,'2025-12-09 19:29:06'),
(948,787,4,'2025-12-09 19:29:06'),
(949,788,4,'2025-12-09 19:29:06'),
(950,789,4,'2025-12-09 19:29:07'),
(951,790,4,'2025-12-09 19:29:07'),
(952,791,4,'2025-12-09 19:29:07'),
(953,792,4,'2025-12-09 19:29:08'),
(954,793,4,'2025-12-09 19:29:08'),
(955,794,4,'2025-12-09 19:29:08'),
(956,795,4,'2025-12-09 19:29:09'),
(957,796,4,'2025-12-09 19:29:09'),
(958,797,4,'2025-12-09 19:29:09'),
(959,798,4,'2025-12-09 19:29:10'),
(960,799,4,'2025-12-09 19:29:10'),
(961,800,4,'2025-12-09 19:29:11'),
(962,801,4,'2025-12-09 19:29:12'),
(963,802,4,'2025-12-09 19:29:12'),
(964,803,4,'2025-12-09 19:29:12'),
(965,804,4,'2025-12-09 19:29:14'),
(966,805,4,'2025-12-09 19:29:14'),
(967,806,4,'2025-12-09 19:29:15'),
(968,807,4,'2025-12-09 19:29:15'),
(969,808,4,'2025-12-09 19:29:16'),
(970,809,4,'2025-12-09 19:29:16'),
(971,810,4,'2025-12-09 19:29:17'),
(972,811,4,'2025-12-09 19:29:18'),
(973,812,4,'2025-12-09 19:29:20'),
(974,813,4,'2025-12-09 19:29:20'),
(975,814,4,'2025-12-09 19:29:21'),
(976,815,4,'2025-12-09 19:29:21'),
(977,816,4,'2025-12-09 19:29:21'),
(978,817,4,'2025-12-09 19:29:23'),
(979,818,4,'2025-12-09 19:29:23'),
(980,819,4,'2025-12-09 19:29:24'),
(981,820,4,'2025-12-09 19:29:24'),
(982,821,4,'2025-12-09 19:29:24'),
(983,822,4,'2025-12-09 19:29:25'),
(984,823,4,'2025-12-09 19:29:25'),
(985,824,4,'2025-12-09 19:29:26'),
(986,825,4,'2025-12-09 19:29:26'),
(987,826,4,'2025-12-09 19:29:27'),
(988,827,4,'2025-12-09 19:29:27'),
(989,828,4,'2025-12-09 19:29:27'),
(990,829,4,'2025-12-09 19:29:27'),
(991,830,4,'2025-12-09 19:29:28'),
(992,831,4,'2025-12-09 19:29:28'),
(993,832,4,'2025-12-09 19:29:28'),
(994,833,4,'2025-12-09 19:29:29'),
(995,834,4,'2025-12-09 19:29:29'),
(996,835,4,'2025-12-09 19:29:29'),
(997,836,4,'2025-12-09 19:29:30'),
(998,837,4,'2025-12-09 19:29:30'),
(999,838,4,'2025-12-09 19:29:30'),
(1000,839,4,'2025-12-09 19:29:31'),
(1001,840,4,'2025-12-09 19:29:32'),
(1002,841,4,'2025-12-09 19:29:32'),
(1003,842,4,'2025-12-09 19:29:32'),
(1004,843,4,'2025-12-09 19:29:33'),
(1005,844,4,'2025-12-09 19:29:33'),
(1006,845,4,'2025-12-09 19:29:33'),
(1007,846,4,'2025-12-09 19:29:34'),
(1008,847,4,'2025-12-09 19:29:34'),
(1009,848,4,'2025-12-09 19:29:34'),
(1010,849,4,'2025-12-09 19:29:34'),
(1011,850,4,'2025-12-09 19:29:35'),
(1012,851,4,'2025-12-09 19:29:35'),
(1013,852,4,'2025-12-09 19:29:35'),
(1014,853,4,'2025-12-09 19:29:36'),
(1015,854,4,'2025-12-09 19:29:36'),
(1016,855,4,'2025-12-09 19:29:37'),
(1017,856,4,'2025-12-09 19:29:37'),
(1018,857,4,'2025-12-09 19:29:38'),
(1019,858,4,'2025-12-09 19:29:38'),
(1020,859,4,'2025-12-09 19:29:38'),
(1021,860,4,'2025-12-09 19:29:39'),
(1022,861,4,'2025-12-09 19:29:39'),
(1023,862,4,'2025-12-09 19:29:39'),
(1024,863,4,'2025-12-09 19:29:40'),
(1025,864,4,'2025-12-09 19:29:40'),
(1026,865,4,'2025-12-09 19:29:54'),
(1027,866,4,'2025-12-09 19:29:54'),
(1028,867,4,'2025-12-09 19:29:55'),
(1029,868,4,'2025-12-09 19:29:55'),
(1030,869,4,'2025-12-09 19:29:55'),
(1031,870,4,'2025-12-09 19:29:55'),
(1032,871,4,'2025-12-09 19:29:56'),
(1033,872,4,'2025-12-09 19:29:56'),
(1034,873,4,'2025-12-09 19:29:56'),
(1035,874,4,'2025-12-09 19:29:57'),
(1036,875,4,'2025-12-09 19:29:57'),
(1037,876,4,'2025-12-09 19:29:58'),
(1038,877,4,'2025-12-09 19:29:58'),
(1039,878,4,'2025-12-09 19:29:58'),
(1040,879,4,'2025-12-09 19:30:06'),
(1041,880,4,'2025-12-09 19:30:06'),
(1042,881,4,'2025-12-09 19:30:06'),
(1043,882,4,'2025-12-09 19:30:17'),
(1044,883,4,'2025-12-09 19:30:20'),
(1045,884,4,'2025-12-09 19:30:21'),
(1046,885,4,'2025-12-09 19:30:22'),
(1047,886,4,'2025-12-09 19:30:23'),
(1048,887,4,'2025-12-09 19:30:23'),
(1049,888,4,'2025-12-09 19:30:23'),
(1050,889,4,'2025-12-09 19:30:24'),
(1051,890,4,'2025-12-09 19:30:24'),
(1052,891,4,'2025-12-09 19:30:24'),
(1053,892,4,'2025-12-09 19:30:26'),
(1054,893,4,'2025-12-09 19:30:27'),
(1055,894,4,'2025-12-09 19:30:29'),
(1056,895,4,'2025-12-09 19:30:30'),
(1057,896,4,'2025-12-09 19:30:30'),
(1058,897,4,'2025-12-09 19:30:31'),
(1059,898,4,'2025-12-09 19:30:33'),
(1060,899,4,'2025-12-09 19:30:33'),
(1061,900,4,'2025-12-09 19:30:33'),
(1062,901,4,'2025-12-09 19:30:34'),
(1063,902,4,'2025-12-09 19:30:34'),
(1064,903,4,'2025-12-09 19:30:34'),
(1065,904,4,'2025-12-09 19:30:34'),
(1066,905,4,'2025-12-09 19:30:35'),
(1067,906,4,'2025-12-09 19:30:35'),
(1068,907,4,'2025-12-09 19:30:35'),
(1069,908,4,'2025-12-09 19:30:36'),
(1070,909,4,'2025-12-09 19:30:36'),
(1071,910,4,'2025-12-09 19:30:36'),
(1072,911,4,'2025-12-09 19:30:37'),
(1073,912,4,'2025-12-09 19:30:37'),
(1074,913,4,'2025-12-09 19:30:38'),
(1075,914,4,'2025-12-09 19:30:38'),
(1076,915,4,'2025-12-09 19:30:38'),
(1077,916,4,'2025-12-09 19:30:39'),
(1078,917,4,'2025-12-09 19:30:39'),
(1079,918,4,'2025-12-09 19:30:39'),
(1080,919,4,'2025-12-09 19:30:45'),
(1081,920,4,'2025-12-09 19:30:45'),
(1082,921,4,'2025-12-09 19:30:45'),
(1083,922,4,'2025-12-09 19:30:46'),
(1084,923,4,'2025-12-09 19:30:46'),
(1085,924,4,'2025-12-09 19:30:47'),
(1086,925,4,'2025-12-09 19:30:48'),
(1087,926,4,'2025-12-09 19:30:48'),
(1088,927,4,'2025-12-09 19:30:48'),
(1089,928,4,'2025-12-09 19:30:49'),
(1090,929,4,'2025-12-09 19:30:52'),
(1091,930,4,'2025-12-09 19:30:53'),
(1092,931,4,'2025-12-09 19:30:53'),
(1093,932,4,'2025-12-09 19:30:53'),
(1094,933,4,'2025-12-09 19:30:54'),
(1095,934,4,'2025-12-09 19:30:54'),
(1096,935,4,'2025-12-09 19:30:55'),
(1097,936,4,'2025-12-09 19:30:55'),
(1098,937,4,'2025-12-09 19:30:56'),
(1099,938,4,'2025-12-09 19:30:56'),
(1100,939,4,'2025-12-09 19:31:04'),
(1101,940,4,'2025-12-09 19:31:06'),
(1102,941,4,'2025-12-09 19:31:07'),
(1103,942,4,'2025-12-09 19:31:07'),
(1104,943,4,'2025-12-09 19:31:08'),
(1105,944,4,'2025-12-09 19:31:08'),
(1106,945,4,'2025-12-09 19:31:08'),
(1107,946,4,'2025-12-09 19:31:09'),
(1108,947,4,'2025-12-09 19:31:09'),
(1109,948,4,'2025-12-09 19:31:09'),
(1110,949,4,'2025-12-09 19:31:10'),
(1111,950,4,'2025-12-09 19:31:10'),
(1112,951,4,'2025-12-09 19:31:10'),
(1113,952,4,'2025-12-09 19:31:11'),
(1114,953,4,'2025-12-09 19:31:11'),
(1115,954,4,'2025-12-09 19:31:11'),
(1116,955,4,'2025-12-09 19:31:13'),
(1117,956,4,'2025-12-09 19:31:14'),
(1118,957,4,'2025-12-09 19:31:19'),
(1119,958,4,'2025-12-09 19:31:20'),
(1120,959,4,'2025-12-09 19:31:20'),
(1121,960,4,'2025-12-09 19:31:20'),
(1122,961,4,'2025-12-09 19:31:21'),
(1123,962,4,'2025-12-09 19:31:21'),
(1124,963,4,'2025-12-09 19:31:22'),
(1125,964,4,'2025-12-09 19:31:22'),
(1126,965,4,'2025-12-09 19:31:25'),
(1127,966,4,'2025-12-09 19:31:27'),
(1128,967,4,'2025-12-09 19:31:27'),
(1129,968,4,'2025-12-09 19:31:27'),
(1130,969,4,'2025-12-09 19:31:28'),
(1131,970,4,'2025-12-09 19:31:29'),
(1132,971,4,'2025-12-09 19:31:30'),
(1133,972,4,'2025-12-09 19:31:33'),
(1134,973,4,'2025-12-09 19:31:33'),
(1135,974,4,'2025-12-09 19:31:34'),
(1136,975,4,'2025-12-09 19:31:34'),
(1137,976,4,'2025-12-09 19:31:34'),
(1138,978,4,'2025-12-09 19:31:49'),
(1139,979,4,'2025-12-09 19:31:50'),
(1140,980,4,'2025-12-09 19:31:50'),
(1141,981,4,'2025-12-09 19:31:50'),
(1142,982,4,'2025-12-09 19:31:51'),
(1143,983,4,'2025-12-09 19:31:51'),
(1144,984,4,'2025-12-09 19:31:51'),
(1145,985,4,'2025-12-09 19:31:52'),
(1146,989,4,'2025-12-09 20:30:33'),
(1147,998,4,'2025-12-10 13:15:33'),
(1148,1005,4,'2025-12-10 16:18:26'),
(1149,1011,4,'2025-12-10 17:30:35'),
(1150,1027,4,'2025-12-12 00:46:10'),
(1151,1028,4,'2025-12-12 00:46:10'),
(1152,1029,4,'2025-12-12 00:46:23'),
(1153,1030,4,'2025-12-12 00:46:23'),
(1154,1031,4,'2025-12-12 00:46:23'),
(1155,1032,4,'2025-12-12 00:46:24'),
(1156,1033,4,'2025-12-12 00:46:24'),
(1157,1034,4,'2025-12-12 00:46:25'),
(1158,1035,4,'2025-12-12 00:46:40'),
(1159,1036,4,'2025-12-12 00:47:05'),
(1160,1038,4,'2025-12-13 03:46:17'),
(1161,1039,4,'2025-12-13 03:46:17'),
(1162,1040,4,'2025-12-13 03:46:17'),
(1163,1061,4,'2025-12-13 15:01:10');
/*!40000 ALTER TABLE `email_folder_map` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `email_folders`
--

DROP TABLE IF EXISTS `email_folders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_folders` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `name` varchar(100) NOT NULL,
  `folder_type` enum('inbox','sent','drafts','trash','spam','starred','archive','custom') DEFAULT 'custom',
  `icon` varchar(50) DEFAULT NULL,
  `color` varchar(20) DEFAULT NULL,
  `display_order` int(11) DEFAULT 0,
  `is_system` tinyint(1) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_type` (`user_id`,`folder_type`),
  CONSTRAINT `email_folders_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=94 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_folders`
--

LOCK TABLES `email_folders` WRITE;
/*!40000 ALTER TABLE `email_folders` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `email_folders` VALUES
(1,1,'Inbox','inbox','bi-inbox',NULL,1,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(2,2,'Inbox','inbox','bi-inbox',NULL,1,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(3,3,'Inbox','inbox','bi-inbox',NULL,1,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(4,4,'Inbox','inbox','bi-inbox',NULL,1,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(5,5,'Inbox','inbox','bi-inbox',NULL,1,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(6,6,'Inbox','inbox','bi-inbox',NULL,1,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(7,7,'Inbox','inbox','bi-inbox',NULL,1,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(8,8,'Inbox','inbox','bi-inbox',NULL,1,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(9,21,'Inbox','inbox','bi-inbox',NULL,1,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(16,1,'Sent','sent','bi-send',NULL,2,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(17,2,'Sent','sent','bi-send',NULL,2,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(18,3,'Sent','sent','bi-send',NULL,2,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(19,4,'Sent','sent','bi-send',NULL,2,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(20,5,'Sent','sent','bi-send',NULL,2,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(21,6,'Sent','sent','bi-send',NULL,2,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(22,7,'Sent','sent','bi-send',NULL,2,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(23,8,'Sent','sent','bi-send',NULL,2,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(24,21,'Sent','sent','bi-send',NULL,2,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(31,1,'Drafts','drafts','bi-file-earmark-text',NULL,3,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(32,2,'Drafts','drafts','bi-file-earmark-text',NULL,3,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(33,3,'Drafts','drafts','bi-file-earmark-text',NULL,3,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(34,4,'Drafts','drafts','bi-file-earmark-text',NULL,3,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(35,5,'Drafts','drafts','bi-file-earmark-text',NULL,3,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(36,6,'Drafts','drafts','bi-file-earmark-text',NULL,3,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(37,7,'Drafts','drafts','bi-file-earmark-text',NULL,3,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(38,8,'Drafts','drafts','bi-file-earmark-text',NULL,3,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(39,21,'Drafts','drafts','bi-file-earmark-text',NULL,3,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(46,1,'Starred','starred','bi-star',NULL,4,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(47,2,'Starred','starred','bi-star',NULL,4,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(48,3,'Starred','starred','bi-star',NULL,4,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(49,4,'Starred','starred','bi-star',NULL,4,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(50,5,'Starred','starred','bi-star',NULL,4,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(51,6,'Starred','starred','bi-star',NULL,4,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(52,7,'Starred','starred','bi-star',NULL,4,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(53,8,'Starred','starred','bi-star',NULL,4,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(54,21,'Starred','starred','bi-star',NULL,4,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(61,1,'Spam','spam','bi-exclamation-triangle',NULL,5,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(62,2,'Spam','spam','bi-exclamation-triangle',NULL,5,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(63,3,'Spam','spam','bi-exclamation-triangle',NULL,5,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(64,4,'Spam','spam','bi-exclamation-triangle',NULL,5,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(65,5,'Spam','spam','bi-exclamation-triangle',NULL,5,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(66,6,'Spam','spam','bi-exclamation-triangle',NULL,5,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(67,7,'Spam','spam','bi-exclamation-triangle',NULL,5,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(68,8,'Spam','spam','bi-exclamation-triangle',NULL,5,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(69,21,'Spam','spam','bi-exclamation-triangle',NULL,5,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(76,1,'Trash','trash','bi-trash',NULL,6,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(77,2,'Trash','trash','bi-trash',NULL,6,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(78,3,'Trash','trash','bi-trash',NULL,6,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(79,4,'Trash','trash','bi-trash',NULL,6,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(80,5,'Trash','trash','bi-trash',NULL,6,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(81,6,'Trash','trash','bi-trash',NULL,6,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(82,7,'Trash','trash','bi-trash',NULL,6,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(83,8,'Trash','trash','bi-trash',NULL,6,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(84,21,'Trash','trash','bi-trash',NULL,6,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(91,1,'Archive','archive','bi-archive',NULL,0,1,'2025-11-27 13:36:32','2025-11-27 13:36:32'),
(92,21,'Archive','archive','bi-archive',NULL,0,1,'2025-11-29 13:37:39','2025-11-29 13:37:39'),
(93,4,'Archive','archive','bi-archive',NULL,0,1,'2025-12-10 12:18:49','2025-12-10 12:18:49');
/*!40000 ALTER TABLE `email_folders` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `email_log`
--

DROP TABLE IF EXISTS `email_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_log` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `template_id` int(11) DEFAULT NULL COMMENT 'Template used (if any)',
  `template_name` varchar(100) DEFAULT NULL COMMENT 'Template name at time of sending',
  `to_email` varchar(500) NOT NULL COMMENT 'Recipient email(s)',
  `to_name` varchar(255) DEFAULT NULL COMMENT 'Recipient name',
  `cc` varchar(500) DEFAULT NULL,
  `bcc` varchar(500) DEFAULT NULL,
  `from_email` varchar(255) DEFAULT NULL,
  `from_name` varchar(255) DEFAULT NULL,
  `reply_to` varchar(255) DEFAULT NULL,
  `subject` varchar(500) NOT NULL,
  `body_html` longtext DEFAULT NULL,
  `body_text` longtext DEFAULT NULL,
  `attachments` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'List of attachment file paths' CHECK (json_valid(`attachments`)),
  `status` enum('pending','sent','failed','bounced') DEFAULT 'pending',
  `error_message` text DEFAULT NULL COMMENT 'Error message if failed',
  `sent_at` timestamp NULL DEFAULT NULL COMMENT 'When email was successfully sent',
  `user_id` int(10) unsigned DEFAULT NULL COMMENT 'User who triggered the email',
  `related_type` varchar(100) DEFAULT NULL COMMENT 'Related entity type (Invoice, Quote, etc.)',
  `related_id` int(10) unsigned DEFAULT NULL COMMENT 'Related entity ID',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_template_id` (`template_id`),
  KEY `idx_to_email` (`to_email`(255)),
  KEY `idx_status` (`status`),
  KEY `idx_sent_at` (`sent_at`),
  KEY `idx_related` (`related_type`,`related_id`),
  KEY `idx_user_id` (`user_id`),
  CONSTRAINT `email_log_ibfk_1` FOREIGN KEY (`template_id`) REFERENCES `email_templates` (`id`) ON DELETE SET NULL,
  CONSTRAINT `email_log_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Email sending log';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_log`
--

LOCK TABLES `email_log` WRITE;
/*!40000 ALTER TABLE `email_log` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `email_log` VALUES
(1,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','M1 ERP',NULL,'Admin User invited you to a calendar event','<html><body><h2>Admin User invited you to a calendar event</h2><p>&lt;strong&gt;Event:&lt;/strong&gt; Test6&lt;br&gt;&lt;strong&gt;Start:&lt;/strong&gt; Nov 27, 2025 4:00 PM&lt;br&gt;&lt;strong&gt;End:&lt;/strong&gt; Nov 27, 2025 4:30 PM&lt;br&gt;&lt;strong&gt;Location:&lt;/strong&gt; Not specified&lt;br&gt;</p><p><a href=\'http://localhost:8080/calendar\' style=\'display:inline-block;padding:10px 20px;background:#007bff;color:#fff;text-decoration:none;border-radius:4px;\'>View Details</a></p><hr><p style=\'color:#666;font-size:12px;\'>You received this notification from M1 ERP. To manage your notification preferences, visit your account settings.</p></body></html>','Event: Test6Start: Nov 27, 2025 4:00 PMEnd: Nov 27, 2025 4:30 PMLocation: Not specified',NULL,'pending',NULL,NULL,1,'CalendarEvent',15,'2025-11-27 20:53:37'),
(2,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','M1 ERP',NULL,'Admin User invited you to a calendar event','<html><body><h2>Admin User invited you to a calendar event</h2><p>&lt;strong&gt;Event:&lt;/strong&gt; Test6&lt;br&gt;&lt;strong&gt;Start:&lt;/strong&gt; Nov 27, 2025 4:00 PM&lt;br&gt;&lt;strong&gt;End:&lt;/strong&gt; Nov 27, 2025 4:30 PM&lt;br&gt;&lt;strong&gt;Location:&lt;/strong&gt; Not specified&lt;br&gt;</p><p><a href=\'http://localhost:8080/calendar\' style=\'display:inline-block;padding:10px 20px;background:#007bff;color:#fff;text-decoration:none;border-radius:4px;\'>View Details</a></p><hr><p style=\'color:#666;font-size:12px;\'>You received this notification from M1 ERP. To manage your notification preferences, visit your account settings.</p></body></html>','Event: Test6Start: Nov 27, 2025 4:00 PMEnd: Nov 27, 2025 4:30 PMLocation: Not specified',NULL,'pending',NULL,NULL,1,'CalendarEvent',16,'2025-11-27 20:53:40'),
(3,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','M1 ERP',NULL,'Admin User invited you to a calendar event','<html><body><h2>Admin User invited you to a calendar event</h2><p>&lt;strong&gt;Event:&lt;/strong&gt; Test6&lt;br&gt;&lt;strong&gt;Start:&lt;/strong&gt; Nov 27, 2025 4:00 PM&lt;br&gt;&lt;strong&gt;End:&lt;/strong&gt; Nov 27, 2025 4:30 PM&lt;br&gt;&lt;strong&gt;Location:&lt;/strong&gt; Not specified&lt;br&gt;</p><p><a href=\'http://localhost:8080/calendar\' style=\'display:inline-block;padding:10px 20px;background:#007bff;color:#fff;text-decoration:none;border-radius:4px;\'>View Details</a></p><hr><p style=\'color:#666;font-size:12px;\'>You received this notification from M1 ERP. To manage your notification preferences, visit your account settings.</p></body></html>','Event: Test6Start: Nov 27, 2025 4:00 PMEnd: Nov 27, 2025 4:30 PMLocation: Not specified',NULL,'pending',NULL,NULL,1,'CalendarEvent',17,'2025-11-27 20:53:46'),
(4,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','M1 ERP',NULL,'Admin User invited you to a calendar event','<html><body><h2>Admin User invited you to a calendar event</h2><p>&lt;strong&gt;Event:&lt;/strong&gt; Test6&lt;br&gt;&lt;strong&gt;Start:&lt;/strong&gt; Nov 27, 2025 4:00 PM&lt;br&gt;&lt;strong&gt;End:&lt;/strong&gt; Nov 27, 2025 4:30 PM&lt;br&gt;&lt;strong&gt;Location:&lt;/strong&gt; Not specified&lt;br&gt;</p><p><a href=\'http://localhost:8080/calendar\' style=\'display:inline-block;padding:10px 20px;background:#007bff;color:#fff;text-decoration:none;border-radius:4px;\'>View Details</a></p><hr><p style=\'color:#666;font-size:12px;\'>You received this notification from M1 ERP. To manage your notification preferences, visit your account settings.</p></body></html>','Event: Test6Start: Nov 27, 2025 4:00 PMEnd: Nov 27, 2025 4:30 PMLocation: Not specified',NULL,'pending',NULL,NULL,1,'CalendarEvent',18,'2025-11-27 20:53:49'),
(5,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: ricks mtg','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">ricks mtg</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 4:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 4:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📝 Details:</strong></td><td style=\"padding: 8px 0; color: #333;\">test</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><div style=\"font-family: Arial, sans-serif; color: #333; background: #ffffff; padding: 15px; margin-top: 20px;\"><hr style=\"border: none; border-top: 2px solid #0066cc; margin: 0 0 15px 0;\"><table style=\"border-collapse: collapse;\"><tr><td style=\"vertical-align: top; padding-right: 10px; width: 80px;\"><img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-height: 35px; max-width: 80px; width: auto; height: auto; object-fit: contain; display: block;\"></td><td style=\"vertical-align: top;\"><strong style=\"font-size: 14px;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span><br><br><span style=\"font-size: 12px;\">📧 <a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></span><br><span style=\"font-size: 12px;\">📞 906-123-4567</span><br><span style=\"font-size: 12px;\">🏢 906-555-4567</span><br><span style=\"font-size: 12px;\">🌐 <a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></span><br></td></tr></table><hr style=\"border: none; border-top: 1px solid #e0e0e0; margin: 15px 0 10px 0;\"><p style=\"font-size: 9px; color: #666; margin: 0; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong> This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.</p></div></div>','📅 Calendar Event Invitationricks mtg📅 Start:Nov 27, 2025 4:00 PM🕐 End:Nov 27, 2025 4:30 PM📍 Location:Not specified📝 Details:testView CalendarAdmin UserAdministrator📧 admin@mavrix.one📞 906-123-4567🏢 906-555-4567🌐 https://mavrix1.comCONFIDENTIALITY NOTICE: This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.',NULL,'pending',NULL,NULL,1,'CalendarEvent',19,'2025-11-27 20:57:37'),
(6,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: ricks mtg','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">ricks mtg</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 4:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 4:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📝 Details:</strong></td><td style=\"padding: 8px 0; color: #333;\">test</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><div style=\"font-family: Arial, sans-serif; color: #333; background: #ffffff; padding: 15px; margin-top: 20px;\"><hr style=\"border: none; border-top: 2px solid #0066cc; margin: 0 0 15px 0;\"><table style=\"border-collapse: collapse;\"><tr><td style=\"vertical-align: top; padding-right: 10px; width: 80px;\"><img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-height: 35px; max-width: 80px; width: auto; height: auto; object-fit: contain; display: block;\"></td><td style=\"vertical-align: top;\"><strong style=\"font-size: 14px;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span><br><br><span style=\"font-size: 12px;\">📧 <a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></span><br><span style=\"font-size: 12px;\">📞 906-123-4567</span><br><span style=\"font-size: 12px;\">🏢 906-555-4567</span><br><span style=\"font-size: 12px;\">🌐 <a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></span><br></td></tr></table><hr style=\"border: none; border-top: 1px solid #e0e0e0; margin: 15px 0 10px 0;\"><p style=\"font-size: 9px; color: #666; margin: 0; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong> This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.</p></div></div>','📅 Calendar Event Invitationricks mtg📅 Start:Nov 27, 2025 4:00 PM🕐 End:Nov 27, 2025 4:30 PM📍 Location:Not specified📝 Details:testView CalendarAdmin UserAdministrator📧 admin@mavrix.one📞 906-123-4567🏢 906-555-4567🌐 https://mavrix1.comCONFIDENTIALITY NOTICE: This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.',NULL,'pending',NULL,NULL,1,'CalendarEvent',20,'2025-11-27 20:57:39'),
(7,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: ricks mtg','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">ricks mtg</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 4:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 4:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📝 Details:</strong></td><td style=\"padding: 8px 0; color: #333;\">test</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><div style=\"font-family: Arial, sans-serif; color: #333; background: #ffffff; padding: 15px; margin-top: 20px;\"><hr style=\"border: none; border-top: 2px solid #0066cc; margin: 0 0 15px 0;\"><table style=\"border-collapse: collapse;\"><tr><td style=\"vertical-align: top; padding-right: 10px; width: 80px;\"><img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-height: 35px; max-width: 80px; width: auto; height: auto; object-fit: contain; display: block;\"></td><td style=\"vertical-align: top;\"><strong style=\"font-size: 14px;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span><br><br><span style=\"font-size: 12px;\">📧 <a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></span><br><span style=\"font-size: 12px;\">📞 906-123-4567</span><br><span style=\"font-size: 12px;\">🏢 906-555-4567</span><br><span style=\"font-size: 12px;\">🌐 <a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></span><br></td></tr></table><hr style=\"border: none; border-top: 1px solid #e0e0e0; margin: 15px 0 10px 0;\"><p style=\"font-size: 9px; color: #666; margin: 0; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong> This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.</p></div></div>','📅 Calendar Event Invitationricks mtg📅 Start:Nov 27, 2025 4:00 PM🕐 End:Nov 27, 2025 4:30 PM📍 Location:Not specified📝 Details:testView CalendarAdmin UserAdministrator📧 admin@mavrix.one📞 906-123-4567🏢 906-555-4567🌐 https://mavrix1.comCONFIDENTIALITY NOTICE: This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.',NULL,'pending',NULL,NULL,1,'CalendarEvent',21,'2025-11-27 20:57:42'),
(8,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: test7','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">test7</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 4:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 4:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><div style=\"font-family: Arial, sans-serif; color: #333; background: #ffffff; padding: 15px; margin-top: 20px;\"><hr style=\"border: none; border-top: 2px solid #0066cc; margin: 0 0 15px 0;\"><table style=\"border-collapse: collapse;\"><tr><td style=\"vertical-align: top; padding-right: 10px; width: 80px;\"><img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-height: 35px; max-width: 80px; width: auto; height: auto; object-fit: contain; display: block;\"></td><td style=\"vertical-align: top;\"><strong style=\"font-size: 14px;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span><br><br><span style=\"font-size: 12px;\">📧 <a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></span><br><span style=\"font-size: 12px;\">📞 906-123-4567</span><br><span style=\"font-size: 12px;\">🏢 906-555-4567</span><br><span style=\"font-size: 12px;\">🌐 <a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></span><br></td></tr></table><hr style=\"border: none; border-top: 1px solid #e0e0e0; margin: 15px 0 10px 0;\"><p style=\"font-size: 9px; color: #666; margin: 0; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong> This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.</p></div></div>','📅 Calendar Event Invitationtest7📅 Start:Nov 27, 2025 4:00 PM🕐 End:Nov 27, 2025 4:30 PM📍 Location:Not specifiedView CalendarAdmin UserAdministrator📧 admin@mavrix.one📞 906-123-4567🏢 906-555-4567🌐 https://mavrix1.comCONFIDENTIALITY NOTICE: This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.',NULL,'pending',NULL,NULL,1,'CalendarEvent',22,'2025-11-27 20:58:28'),
(9,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: test7','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">test7</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 4:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 4:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><div style=\"font-family: Arial, sans-serif; color: #333; background: #ffffff; padding: 15px; margin-top: 20px;\"><hr style=\"border: none; border-top: 2px solid #0066cc; margin: 0 0 15px 0;\"><table style=\"border-collapse: collapse;\"><tr><td style=\"vertical-align: top; padding-right: 10px; width: 80px;\"><img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-height: 35px; max-width: 80px; width: auto; height: auto; object-fit: contain; display: block;\"></td><td style=\"vertical-align: top;\"><strong style=\"font-size: 14px;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span><br><br><span style=\"font-size: 12px;\">📧 <a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></span><br><span style=\"font-size: 12px;\">📞 906-123-4567</span><br><span style=\"font-size: 12px;\">🏢 906-555-4567</span><br><span style=\"font-size: 12px;\">🌐 <a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></span><br></td></tr></table><hr style=\"border: none; border-top: 1px solid #e0e0e0; margin: 15px 0 10px 0;\"><p style=\"font-size: 9px; color: #666; margin: 0; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong> This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.</p></div></div>','📅 Calendar Event Invitationtest7📅 Start:Nov 27, 2025 4:00 PM🕐 End:Nov 27, 2025 4:30 PM📍 Location:Not specifiedView CalendarAdmin UserAdministrator📧 admin@mavrix.one📞 906-123-4567🏢 906-555-4567🌐 https://mavrix1.comCONFIDENTIALITY NOTICE: This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.',NULL,'pending',NULL,NULL,1,'CalendarEvent',23,'2025-11-27 20:59:40'),
(10,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: test','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">test</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 5:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 5:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><div style=\"font-family: Arial, sans-serif; color: #333; background: #ffffff; padding: 15px; margin-top: 20px;\"><hr style=\"border: none; border-top: 2px solid #0066cc; margin: 0 0 15px 0;\"><table style=\"border-collapse: collapse;\"><tr><td style=\"vertical-align: top; padding-right: 10px; width: 80px;\"><img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-height: 35px; max-width: 80px; width: auto; height: auto; object-fit: contain; display: block;\"></td><td style=\"vertical-align: top;\"><strong style=\"font-size: 14px;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span><br><br><span style=\"font-size: 12px;\">📧 <a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></span><br><span style=\"font-size: 12px;\">📞 906-123-4567</span><br><span style=\"font-size: 12px;\">🏢 906-555-4567</span><br><span style=\"font-size: 12px;\">🌐 <a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></span><br></td></tr></table><hr style=\"border: none; border-top: 1px solid #e0e0e0; margin: 15px 0 10px 0;\"><p style=\"font-size: 9px; color: #666; margin: 0; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong> This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.</p></div></div>','📅 Calendar Event Invitationtest📅 Start:Nov 27, 2025 5:00 PM🕐 End:Nov 27, 2025 5:30 PM📍 Location:Not specifiedView CalendarAdmin UserAdministrator📧 admin@mavrix.one📞 906-123-4567🏢 906-555-4567🌐 https://mavrix1.comCONFIDENTIALITY NOTICE: This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.',NULL,'pending',NULL,NULL,1,'CalendarEvent',24,'2025-11-27 21:00:33'),
(11,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: test','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">test</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Oct 31, 2025 12:00 AM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 1, 2025 12:00 AM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><div style=\"font-family: Arial, sans-serif; color: #333; background: #ffffff; padding: 15px; margin-top: 20px;\"><hr style=\"border: none; border-top: 2px solid #0066cc; margin: 0 0 15px 0;\"><table style=\"border-collapse: collapse;\"><tr><td style=\"vertical-align: top; padding-right: 10px; width: 80px;\"><img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-height: 35px; max-width: 80px; width: auto; height: auto; object-fit: contain; display: block;\"></td><td style=\"vertical-align: top;\"><strong style=\"font-size: 14px;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span><br><br><span style=\"font-size: 12px;\">📧 <a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></span><br><span style=\"font-size: 12px;\">📞 906-123-4567</span><br><span style=\"font-size: 12px;\">🏢 906-555-4567</span><br><span style=\"font-size: 12px;\">🌐 <a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></span><br></td></tr></table><hr style=\"border: none; border-top: 1px solid #e0e0e0; margin: 15px 0 10px 0;\"><p style=\"font-size: 9px; color: #666; margin: 0; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong> This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.</p></div></div>','📅 Calendar Event Invitationtest📅 Start:Oct 31, 2025 12:00 AM🕐 End:Nov 1, 2025 12:00 AM📍 Location:Not specifiedView CalendarAdmin UserAdministrator📧 admin@mavrix.one📞 906-123-4567🏢 906-555-4567🌐 https://mavrix1.comCONFIDENTIALITY NOTICE: This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.',NULL,'pending',NULL,NULL,1,'CalendarEvent',25,'2025-11-27 21:00:56'),
(12,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: test','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">test</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 5:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 5:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><div style=\"font-family: Arial, sans-serif; color: #333; background: #ffffff; padding: 15px; margin-top: 20px;\"><hr style=\"border: none; border-top: 2px solid #0066cc; margin: 0 0 15px 0;\"><table style=\"border-collapse: collapse;\"><tr><td style=\"vertical-align: top; padding-right: 10px; width: 80px;\"><img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-height: 35px; max-width: 80px; width: auto; height: auto; object-fit: contain; display: block;\"></td><td style=\"vertical-align: top;\"><strong style=\"font-size: 14px;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span><br><br><span style=\"font-size: 12px;\">📧 <a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></span><br><span style=\"font-size: 12px;\">📞 906-123-4567</span><br><span style=\"font-size: 12px;\">🏢 906-555-4567</span><br><span style=\"font-size: 12px;\">🌐 <a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></span><br></td></tr></table><hr style=\"border: none; border-top: 1px solid #e0e0e0; margin: 15px 0 10px 0;\"><p style=\"font-size: 9px; color: #666; margin: 0; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong> This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.</p></div></div>','📅 Calendar Event Invitationtest📅 Start:Nov 27, 2025 5:00 PM🕐 End:Nov 27, 2025 5:30 PM📍 Location:Not specifiedView CalendarAdmin UserAdministrator📧 admin@mavrix.one📞 906-123-4567🏢 906-555-4567🌐 https://mavrix1.comCONFIDENTIALITY NOTICE: This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.',NULL,'pending',NULL,NULL,1,'CalendarEvent',26,'2025-11-27 21:02:07'),
(13,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: tester','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">tester</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 5:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 5:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><div style=\"font-family: Arial, sans-serif; color: #333; background: #ffffff; padding: 15px; margin-top: 20px;\"><hr style=\"border: none; border-top: 2px solid #0066cc; margin: 0 0 15px 0;\"><table style=\"border-collapse: collapse;\"><tr><td style=\"vertical-align: top; padding-right: 10px; width: 80px;\"><img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-height: 35px; max-width: 80px; width: auto; height: auto; object-fit: contain; display: block;\"></td><td style=\"vertical-align: top;\"><strong style=\"font-size: 14px;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span><br><br><span style=\"font-size: 12px;\">📧 <a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></span><br><span style=\"font-size: 12px;\">📞 906-123-4567</span><br><span style=\"font-size: 12px;\">🏢 906-555-4567</span><br><span style=\"font-size: 12px;\">🌐 <a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></span><br></td></tr></table><hr style=\"border: none; border-top: 1px solid #e0e0e0; margin: 15px 0 10px 0;\"><p style=\"font-size: 9px; color: #666; margin: 0; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong> This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.</p></div></div>','📅 Calendar Event Invitationtester📅 Start:Nov 27, 2025 5:00 PM🕐 End:Nov 27, 2025 5:30 PM📍 Location:Not specifiedView CalendarAdmin UserAdministrator📧 admin@mavrix.one📞 906-123-4567🏢 906-555-4567🌐 https://mavrix1.comCONFIDENTIALITY NOTICE: This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.',NULL,'pending',NULL,NULL,1,'CalendarEvent',27,'2025-11-27 21:03:26'),
(14,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: tester','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">tester</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 5:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 5:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><div style=\"font-family: Arial, sans-serif; color: #333; background: #ffffff; padding: 15px; margin-top: 20px;\"><hr style=\"border: none; border-top: 2px solid #0066cc; margin: 0 0 15px 0;\"><table style=\"border-collapse: collapse;\"><tr><td style=\"vertical-align: top; padding-right: 10px; width: 80px;\"><img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-height: 35px; max-width: 80px; width: auto; height: auto; object-fit: contain; display: block;\"></td><td style=\"vertical-align: top;\"><strong style=\"font-size: 14px;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span><br><br><span style=\"font-size: 12px;\">📧 <a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></span><br><span style=\"font-size: 12px;\">📞 906-123-4567</span><br><span style=\"font-size: 12px;\">🏢 906-555-4567</span><br><span style=\"font-size: 12px;\">🌐 <a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></span><br></td></tr></table><hr style=\"border: none; border-top: 1px solid #e0e0e0; margin: 15px 0 10px 0;\"><p style=\"font-size: 9px; color: #666; margin: 0; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong> This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.</p></div></div>','📅 Calendar Event Invitationtester📅 Start:Nov 27, 2025 5:00 PM🕐 End:Nov 27, 2025 5:30 PM📍 Location:Not specifiedView CalendarAdmin UserAdministrator📧 admin@mavrix.one📞 906-123-4567🏢 906-555-4567🌐 https://mavrix1.comCONFIDENTIALITY NOTICE: This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.',NULL,'sent',NULL,'2025-11-27 21:04:37',1,'CalendarEvent',28,'2025-11-27 21:04:36'),
(15,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: Demo','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">Demo</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 30, 2025 7:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 30, 2025 9:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n    <tr>\r\n        <td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n            <table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n                <tr>\r\n                    <!-- LEFT COLUMN -->\r\n                    <td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n                        <div style=\"margin-bottom: 10px;\">\r\n                            <strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br>\r\n                            <span style=\"font-size: 12px; color: #666;\">Administrator</span>\r\n                        </div>\r\n\r\n                        <div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n                            <div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n                            <div>Mobile: 906-123-4567</div>\r\n                            <div>Office: 906-555-4567</div>\r\n                            <div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n                        </div>\r\n                    </td>\r\n\r\n                    <!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n                    <td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\">\r\n                        <img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n\r\n                        <div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">\r\n                            3900 W. Coachman Ave.<br>\r\n                            Tampa, FL 33611\r\n                        </div>\r\n                    </td>\r\n                </tr>\r\n            </table>\r\n        </td>\r\n    </tr>\r\n\r\n    <tr>\r\n        <td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n            <div style=\"font-size: 9px; color: #888; line-height: 1.4;\">\r\n                <strong>CONFIDENTIALITY NOTICE:</strong><br>\r\n                <em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br>\r\n                <em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br>\r\n                <em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br>\r\n                <em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em>\r\n            </div>\r\n        </td>\r\n    </tr>\r\n</table></div>','📅 Calendar Event InvitationDemo📅 Start:Nov 30, 2025 7:30 PM🕐 End:Nov 30, 2025 9:00 PM📍 Location:Not specifiedView Calendar\r\n    \r\n        \r\n            \r\n                \r\n                    \r\n                    \r\n                        \r\n                            Admin User\r\n                            Administrator\r\n                        \r\n\r\n                        \r\n                            admin@mavrix.one\r\n                            Mobile: 906-123-4567\r\n                            Office: 906-555-4567\r\n                            https://mavrix1.com\r\n                        \r\n                    \r\n\r\n                    \r\n                    \r\n                        \r\n\r\n                        \r\n                            3900 W. Coachman Ave.\r\n                            Tampa, FL 33611\r\n                        \r\n                    \r\n                \r\n            \r\n        \r\n    \r\n\r\n    \r\n        \r\n            \r\n                CONFIDENTIALITY NOTICE:\r\n                This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.\r\n                This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n                If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n                Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n            \r\n        \r\n    \r\n',NULL,'sent',NULL,'2025-12-04 18:07:29',1,'CalendarEvent',31,'2025-12-04 18:07:28'),
(16,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Update: Demo','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Update</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">Demo</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 4, 2025 7:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 4, 2025 7:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n    <tr>\r\n        <td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n            <table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n                <tr>\r\n                    <!-- LEFT COLUMN -->\r\n                    <td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n                        <div style=\"margin-bottom: 10px;\">\r\n                            <strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br>\r\n                            <span style=\"font-size: 12px; color: #666;\">Administrator</span>\r\n                        </div>\r\n\r\n                        <div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n                            <div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n                            <div>Mobile: 906-123-4567</div>\r\n                            <div>Office: 906-555-4567</div>\r\n                            <div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n                        </div>\r\n                    </td>\r\n\r\n                    <!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n                    <td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\">\r\n                        <img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n\r\n                        <div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">\r\n                            3900 W. Coachman Ave.<br>\r\n                            Tampa, FL 33611\r\n                        </div>\r\n                    </td>\r\n                </tr>\r\n            </table>\r\n        </td>\r\n    </tr>\r\n\r\n    <tr>\r\n        <td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n            <div style=\"font-size: 9px; color: #888; line-height: 1.4;\">\r\n                <strong>CONFIDENTIALITY NOTICE:</strong><br>\r\n                <em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br>\r\n                <em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br>\r\n                <em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br>\r\n                <em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em>\r\n            </div>\r\n        </td>\r\n    </tr>\r\n</table></div>','📅 Calendar Event UpdateDemo📅 Start:Dec 4, 2025 7:00 PM🕐 End:Dec 4, 2025 7:30 PM📍 Location:Not specifiedView Calendar\r\n    \r\n        \r\n            \r\n                \r\n                    \r\n                    \r\n                        \r\n                            Admin User\r\n                            Administrator\r\n                        \r\n\r\n                        \r\n                            admin@mavrix.one\r\n                            Mobile: 906-123-4567\r\n                            Office: 906-555-4567\r\n                            https://mavrix1.com\r\n                        \r\n                    \r\n\r\n                    \r\n                    \r\n                        \r\n\r\n                        \r\n                            3900 W. Coachman Ave.\r\n                            Tampa, FL 33611\r\n                        \r\n                    \r\n                \r\n            \r\n        \r\n    \r\n\r\n    \r\n        \r\n            \r\n                CONFIDENTIALITY NOTICE:\r\n                This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.\r\n                This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n                If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n                Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n            \r\n        \r\n    \r\n',NULL,'sent',NULL,'2025-12-04 19:32:41',1,'CalendarEvent',31,'2025-12-04 19:32:41'),
(17,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: Rick Mtg','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">Rick Mtg</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 10, 2025 5:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 10, 2025 5:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n    <tr>\r\n        <td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n            <table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n                <tr>\r\n                    <!-- LEFT COLUMN -->\r\n                    <td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n                        <div style=\"margin-bottom: 10px;\">\r\n                            <strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br>\r\n                            <span style=\"font-size: 12px; color: #666;\">Administrator</span>\r\n                        </div>\r\n\r\n                        <div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n                            <div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n                            <div>Mobile: 906-123-4567</div>\r\n                            <div>Office: 906-555-4567</div>\r\n                            <div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n                        </div>\r\n                    </td>\r\n\r\n                    <!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n                    <td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\">\r\n                        <img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n\r\n                        <div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">\r\n                            3900 W. Coachman Ave.<br>\r\n                            Tampa, FL 33611\r\n                        </div>\r\n                    </td>\r\n                </tr>\r\n            </table>\r\n        </td>\r\n    </tr>\r\n\r\n    <tr>\r\n        <td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n            <div style=\"font-size: 9px; color: #888; line-height: 1.4;\">\r\n                <strong>CONFIDENTIALITY NOTICE:</strong><br>\r\n                <em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br>\r\n                <em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br>\r\n                <em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br>\r\n                <em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em>\r\n            </div>\r\n        </td>\r\n    </tr>\r\n</table></div>','📅 Calendar Event InvitationRick Mtg📅 Start:Dec 10, 2025 5:00 PM🕐 End:Dec 10, 2025 5:30 PM📍 Location:Not specifiedView Calendar\r\n    \r\n        \r\n            \r\n                \r\n                    \r\n                    \r\n                        \r\n                            Admin User\r\n                            Administrator\r\n                        \r\n\r\n                        \r\n                            admin@mavrix.one\r\n                            Mobile: 906-123-4567\r\n                            Office: 906-555-4567\r\n                            https://mavrix1.com\r\n                        \r\n                    \r\n\r\n                    \r\n                    \r\n                        \r\n\r\n                        \r\n                            3900 W. Coachman Ave.\r\n                            Tampa, FL 33611\r\n                        \r\n                    \r\n                \r\n            \r\n        \r\n    \r\n\r\n    \r\n        \r\n            \r\n                CONFIDENTIALITY NOTICE:\r\n                This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.\r\n                This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n                If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n                Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n            \r\n        \r\n    \r\n',NULL,'sent',NULL,'2025-12-04 23:15:38',1,'CalendarEvent',32,'2025-12-04 23:15:38'),
(18,NULL,NULL,'cfo@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: Rick Mtg','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">Rick Mtg</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 10, 2025 5:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 10, 2025 5:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n    <tr>\r\n        <td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n            <table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n                <tr>\r\n                    <!-- LEFT COLUMN -->\r\n                    <td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n                        <div style=\"margin-bottom: 10px;\">\r\n                            <strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br>\r\n                            <span style=\"font-size: 12px; color: #666;\">Administrator</span>\r\n                        </div>\r\n\r\n                        <div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n                            <div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n                            <div>Mobile: 906-123-4567</div>\r\n                            <div>Office: 906-555-4567</div>\r\n                            <div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n                        </div>\r\n                    </td>\r\n\r\n                    <!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n                    <td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\">\r\n                        <img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n\r\n                        <div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">\r\n                            3900 W. Coachman Ave.<br>\r\n                            Tampa, FL 33611\r\n                        </div>\r\n                    </td>\r\n                </tr>\r\n            </table>\r\n        </td>\r\n    </tr>\r\n\r\n    <tr>\r\n        <td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n            <div style=\"font-size: 9px; color: #888; line-height: 1.4;\">\r\n                <strong>CONFIDENTIALITY NOTICE:</strong><br>\r\n                <em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br>\r\n                <em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br>\r\n                <em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br>\r\n                <em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em>\r\n            </div>\r\n        </td>\r\n    </tr>\r\n</table></div>','📅 Calendar Event InvitationRick Mtg📅 Start:Dec 10, 2025 5:00 PM🕐 End:Dec 10, 2025 5:30 PM📍 Location:Not specifiedView Calendar\r\n    \r\n        \r\n            \r\n                \r\n                    \r\n                    \r\n                        \r\n                            Admin User\r\n                            Administrator\r\n                        \r\n\r\n                        \r\n                            admin@mavrix.one\r\n                            Mobile: 906-123-4567\r\n                            Office: 906-555-4567\r\n                            https://mavrix1.com\r\n                        \r\n                    \r\n\r\n                    \r\n                    \r\n                        \r\n\r\n                        \r\n                            3900 W. Coachman Ave.\r\n                            Tampa, FL 33611\r\n                        \r\n                    \r\n                \r\n            \r\n        \r\n    \r\n\r\n    \r\n        \r\n            \r\n                CONFIDENTIALITY NOTICE:\r\n                This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.\r\n                This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n                If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n                Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n            \r\n        \r\n    \r\n',NULL,'sent',NULL,'2025-12-04 23:15:38',1,'CalendarEvent',32,'2025-12-04 23:15:38'),
(19,NULL,NULL,'test@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: Rick Mtg','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">Rick Mtg</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 10, 2025 5:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 10, 2025 5:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n    <tr>\r\n        <td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n            <table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n                <tr>\r\n                    <!-- LEFT COLUMN -->\r\n                    <td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n                        <div style=\"margin-bottom: 10px;\">\r\n                            <strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br>\r\n                            <span style=\"font-size: 12px; color: #666;\">Administrator</span>\r\n                        </div>\r\n\r\n                        <div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n                            <div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n                            <div>Mobile: 906-123-4567</div>\r\n                            <div>Office: 906-555-4567</div>\r\n                            <div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n                        </div>\r\n                    </td>\r\n\r\n                    <!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n                    <td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\">\r\n                        <img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n\r\n                        <div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">\r\n                            3900 W. Coachman Ave.<br>\r\n                            Tampa, FL 33611\r\n                        </div>\r\n                    </td>\r\n                </tr>\r\n            </table>\r\n        </td>\r\n    </tr>\r\n\r\n    <tr>\r\n        <td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n            <div style=\"font-size: 9px; color: #888; line-height: 1.4;\">\r\n                <strong>CONFIDENTIALITY NOTICE:</strong><br>\r\n                <em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br>\r\n                <em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br>\r\n                <em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br>\r\n                <em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em>\r\n            </div>\r\n        </td>\r\n    </tr>\r\n</table></div>','📅 Calendar Event InvitationRick Mtg📅 Start:Dec 10, 2025 5:00 PM🕐 End:Dec 10, 2025 5:30 PM📍 Location:Not specifiedView Calendar\r\n    \r\n        \r\n            \r\n                \r\n                    \r\n                    \r\n                        \r\n                            Admin User\r\n                            Administrator\r\n                        \r\n\r\n                        \r\n                            admin@mavrix.one\r\n                            Mobile: 906-123-4567\r\n                            Office: 906-555-4567\r\n                            https://mavrix1.com\r\n                        \r\n                    \r\n\r\n                    \r\n                    \r\n                        \r\n\r\n                        \r\n                            3900 W. Coachman Ave.\r\n                            Tampa, FL 33611\r\n                        \r\n                    \r\n                \r\n            \r\n        \r\n    \r\n\r\n    \r\n        \r\n            \r\n                CONFIDENTIALITY NOTICE:\r\n                This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.\r\n                This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n                If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n                Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n            \r\n        \r\n    \r\n',NULL,'sent',NULL,'2025-12-04 23:15:38',1,'CalendarEvent',32,'2025-12-04 23:15:38'),
(20,NULL,NULL,'accountant@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: Rick Mtg','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">Rick Mtg</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 10, 2025 5:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 10, 2025 5:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n    <tr>\r\n        <td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n            <table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n                <tr>\r\n                    <!-- LEFT COLUMN -->\r\n                    <td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n                        <div style=\"margin-bottom: 10px;\">\r\n                            <strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br>\r\n                            <span style=\"font-size: 12px; color: #666;\">Administrator</span>\r\n                        </div>\r\n\r\n                        <div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n                            <div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n                            <div>Mobile: 906-123-4567</div>\r\n                            <div>Office: 906-555-4567</div>\r\n                            <div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n                        </div>\r\n                    </td>\r\n\r\n                    <!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n                    <td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\">\r\n                        <img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n\r\n                        <div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">\r\n                            3900 W. Coachman Ave.<br>\r\n                            Tampa, FL 33611\r\n                        </div>\r\n                    </td>\r\n                </tr>\r\n            </table>\r\n        </td>\r\n    </tr>\r\n\r\n    <tr>\r\n        <td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n            <div style=\"font-size: 9px; color: #888; line-height: 1.4;\">\r\n                <strong>CONFIDENTIALITY NOTICE:</strong><br>\r\n                <em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br>\r\n                <em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br>\r\n                <em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br>\r\n                <em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em>\r\n            </div>\r\n        </td>\r\n    </tr>\r\n</table></div>','📅 Calendar Event InvitationRick Mtg📅 Start:Dec 10, 2025 5:00 PM🕐 End:Dec 10, 2025 5:30 PM📍 Location:Not specifiedView Calendar\r\n    \r\n        \r\n            \r\n                \r\n                    \r\n                    \r\n                        \r\n                            Admin User\r\n                            Administrator\r\n                        \r\n\r\n                        \r\n                            admin@mavrix.one\r\n                            Mobile: 906-123-4567\r\n                            Office: 906-555-4567\r\n                            https://mavrix1.com\r\n                        \r\n                    \r\n\r\n                    \r\n                    \r\n                        \r\n\r\n                        \r\n                            3900 W. Coachman Ave.\r\n                            Tampa, FL 33611\r\n                        \r\n                    \r\n                \r\n            \r\n        \r\n    \r\n\r\n    \r\n        \r\n            \r\n                CONFIDENTIALITY NOTICE:\r\n                This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.\r\n                This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n                If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n                Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n            \r\n        \r\n    \r\n',NULL,'sent',NULL,'2025-12-04 23:15:38',1,'CalendarEvent',32,'2025-12-04 23:15:38'),
(21,NULL,NULL,'nathan@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: Rick Mtg','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">Rick Mtg</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 10, 2025 5:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 10, 2025 5:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n    <tr>\r\n        <td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n            <table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n                <tr>\r\n                    <!-- LEFT COLUMN -->\r\n                    <td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n                        <div style=\"margin-bottom: 10px;\">\r\n                            <strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br>\r\n                            <span style=\"font-size: 12px; color: #666;\">Administrator</span>\r\n                        </div>\r\n\r\n                        <div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n                            <div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n                            <div>Mobile: 906-123-4567</div>\r\n                            <div>Office: 906-555-4567</div>\r\n                            <div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n                        </div>\r\n                    </td>\r\n\r\n                    <!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n                    <td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\">\r\n                        <img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n\r\n                        <div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">\r\n                            3900 W. Coachman Ave.<br>\r\n                            Tampa, FL 33611\r\n                        </div>\r\n                    </td>\r\n                </tr>\r\n            </table>\r\n        </td>\r\n    </tr>\r\n\r\n    <tr>\r\n        <td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n            <div style=\"font-size: 9px; color: #888; line-height: 1.4;\">\r\n                <strong>CONFIDENTIALITY NOTICE:</strong><br>\r\n                <em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br>\r\n                <em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br>\r\n                <em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br>\r\n                <em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em>\r\n            </div>\r\n        </td>\r\n    </tr>\r\n</table></div>','📅 Calendar Event InvitationRick Mtg📅 Start:Dec 10, 2025 5:00 PM🕐 End:Dec 10, 2025 5:30 PM📍 Location:Not specifiedView Calendar\r\n    \r\n        \r\n            \r\n                \r\n                    \r\n                    \r\n                        \r\n                            Admin User\r\n                            Administrator\r\n                        \r\n\r\n                        \r\n                            admin@mavrix.one\r\n                            Mobile: 906-123-4567\r\n                            Office: 906-555-4567\r\n                            https://mavrix1.com\r\n                        \r\n                    \r\n\r\n                    \r\n                    \r\n                        \r\n\r\n                        \r\n                            3900 W. Coachman Ave.\r\n                            Tampa, FL 33611\r\n                        \r\n                    \r\n                \r\n            \r\n        \r\n    \r\n\r\n    \r\n        \r\n            \r\n                CONFIDENTIALITY NOTICE:\r\n                This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.\r\n                This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n                If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n                Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n            \r\n        \r\n    \r\n',NULL,'sent',NULL,'2025-12-04 23:15:39',1,'CalendarEvent',32,'2025-12-04 23:15:38'),
(22,NULL,NULL,'tony@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: Rick Mtg','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">Rick Mtg</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 10, 2025 5:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 10, 2025 5:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n    <tr>\r\n        <td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n            <table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n                <tr>\r\n                    <!-- LEFT COLUMN -->\r\n                    <td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n                        <div style=\"margin-bottom: 10px;\">\r\n                            <strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br>\r\n                            <span style=\"font-size: 12px; color: #666;\">Administrator</span>\r\n                        </div>\r\n\r\n                        <div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n                            <div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n                            <div>Mobile: 906-123-4567</div>\r\n                            <div>Office: 906-555-4567</div>\r\n                            <div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n                        </div>\r\n                    </td>\r\n\r\n                    <!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n                    <td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\">\r\n                        <img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n\r\n                        <div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">\r\n                            3900 W. Coachman Ave.<br>\r\n                            Tampa, FL 33611\r\n                        </div>\r\n                    </td>\r\n                </tr>\r\n            </table>\r\n        </td>\r\n    </tr>\r\n\r\n    <tr>\r\n        <td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n            <div style=\"font-size: 9px; color: #888; line-height: 1.4;\">\r\n                <strong>CONFIDENTIALITY NOTICE:</strong><br>\r\n                <em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br>\r\n                <em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br>\r\n                <em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br>\r\n                <em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em>\r\n            </div>\r\n        </td>\r\n    </tr>\r\n</table></div>','📅 Calendar Event InvitationRick Mtg📅 Start:Dec 10, 2025 5:00 PM🕐 End:Dec 10, 2025 5:30 PM📍 Location:Not specifiedView Calendar\r\n    \r\n        \r\n            \r\n                \r\n                    \r\n                    \r\n                        \r\n                            Admin User\r\n                            Administrator\r\n                        \r\n\r\n                        \r\n                            admin@mavrix.one\r\n                            Mobile: 906-123-4567\r\n                            Office: 906-555-4567\r\n                            https://mavrix1.com\r\n                        \r\n                    \r\n\r\n                    \r\n                    \r\n                        \r\n\r\n                        \r\n                            3900 W. Coachman Ave.\r\n                            Tampa, FL 33611\r\n                        \r\n                    \r\n                \r\n            \r\n        \r\n    \r\n\r\n    \r\n        \r\n            \r\n                CONFIDENTIALITY NOTICE:\r\n                This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.\r\n                This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n                If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n                Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n            \r\n        \r\n    \r\n',NULL,'sent',NULL,'2025-12-04 23:15:39',1,'CalendarEvent',32,'2025-12-04 23:15:39');
/*!40000 ALTER TABLE `email_log` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `email_recipients`
--

DROP TABLE IF EXISTS `email_recipients`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_recipients` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `email_id` int(10) unsigned NOT NULL,
  `recipient_type` enum('to','cc','bcc') NOT NULL,
  `email_address` varchar(255) NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_email` (`email_id`),
  KEY `idx_recipient` (`recipient_type`,`email_address`),
  CONSTRAINT `email_recipients_ibfk_1` FOREIGN KEY (`email_id`) REFERENCES `emails` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1274 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_recipients`
--

LOCK TABLES `email_recipients` WRITE;
/*!40000 ALTER TABLE `email_recipients` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `email_recipients` VALUES
(52,49,'to','brian@mavrix.one','','2025-12-02 21:54:07'),
(53,50,'to','erp_system@mavrix.one','erp_system@mavrix.one','2025-12-04 11:06:00'),
(54,51,'to','erp_system@mavrix.one','erp_system@mavrix.one','2025-12-04 11:06:01'),
(55,52,'to','erp_system@mavrix.one','erp_system@mavrix.one','2025-12-04 11:06:01'),
(56,53,'to','erp_system@mavrix.one',NULL,'2025-12-04 11:33:14'),
(57,54,'to','erp_system@mavrix.one','erp_system@mavrix.one','2025-12-04 11:33:20'),
(58,55,'to','erp_system@mavrix.one',NULL,'2025-12-04 12:01:25'),
(59,56,'to','erp_system@mavrix.one','erp_system@mavrix.one','2025-12-04 12:01:31'),
(60,57,'to','erp_system@mavrix.one',NULL,'2025-12-04 12:34:51'),
(61,57,'cc','rick@mavrix.one',NULL,'2025-12-04 12:34:51'),
(62,57,'bcc','rick@mislan.com',NULL,'2025-12-04 12:34:51'),
(63,58,'to','erp_system@mavrix.one','erp_system@mavrix.one','2025-12-04 12:35:11'),
(64,59,'to','erp_system@mavrix.one',NULL,'2025-12-04 12:45:53'),
(65,60,'to','erp_system@mavrix.one','erp_system@mavrix.one','2025-12-04 12:46:36'),
(66,61,'to','erp_system@mavrix.one',NULL,'2025-12-04 13:15:08'),
(67,62,'to','erp_system@mavrix.one','erp_system@mavrix.one','2025-12-04 13:15:17'),
(68,63,'to','rick@mavrix.one','Rick Mislan','2025-12-04 14:04:32'),
(69,64,'to','rick@mavrix.one','Rick','2025-12-04 14:04:32'),
(70,65,'to','rick@mavrix.one','Rick','2025-12-04 14:04:32'),
(71,66,'to','rick@mavrix.one','Rick Mislan','2025-12-04 14:04:33'),
(72,67,'to','Nathan@lithiumbatterycompany.com','Nathan Staron','2025-12-04 14:04:34'),
(73,67,'to','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','2025-12-04 14:04:34'),
(74,67,'to','brian@mavrix.one','Brian Stufflebean','2025-12-04 14:04:34'),
(75,67,'to','rick@mavrix.one','Rick Mislan','2025-12-04 14:04:34'),
(76,68,'to','rick@mavrix.one','Rick Mislan','2025-12-04 14:04:34'),
(77,69,'to','rick@mavrix.one','Rick','2025-12-04 14:04:34'),
(78,70,'to','brian@mavrix.one','Brian Stufflebean','2025-12-04 14:04:37'),
(79,70,'to','rick@mavrix.one','Rick Mislan','2025-12-04 14:04:37'),
(80,70,'to','Nathan@lithiumbatterycompany.com','Nathan Staron','2025-12-04 14:04:37'),
(81,70,'to','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','2025-12-04 14:04:38'),
(82,71,'to','rick@mavrix.one','Rick','2025-12-04 14:04:44'),
(83,72,'to','rick@mavrix.one','Rick','2025-12-04 14:04:44'),
(84,73,'to','rick@mavrix.one','Rick','2025-12-04 14:04:44'),
(85,74,'to','contact@mavrix.one','contact@mavrix.one','2025-12-04 14:04:44'),
(86,75,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-04 14:04:44'),
(87,76,'to','leslie@mavrix.one','Leslie Staron','2025-12-04 14:04:45'),
(88,76,'to','rick@mavrix.one','Rick Mislan','2025-12-04 14:04:45'),
(89,76,'to','Nathan@lithiumbatterycompany.com','\"Nathan A. Staron\"','2025-12-04 14:04:45'),
(90,76,'to','tony@mavrix.one','Tony Aponte','2025-12-04 14:04:46'),
(91,77,'to','brian@bayfrontcapitalllc.com','Brian Stufflebean','2025-12-04 14:04:46'),
(92,78,'to','brian@mavrix.one','Brian Stufflebean','2025-12-04 14:04:47'),
(93,78,'to','rick@mavrix.one','Rick Mislan','2025-12-04 14:04:47'),
(94,78,'to','katherine@mavrix.one','katherine@mavrix.one','2025-12-04 14:04:47'),
(95,79,'to','rick@mavrix.one','Rick Mislan','2025-12-04 14:04:49'),
(96,79,'to','brian@bayfrontcapitalllc.com','Brian Stufflebean','2025-12-04 14:04:49'),
(97,80,'to','rick@mavrix.one','rick@mavrix.one','2025-12-04 14:04:49'),
(98,81,'to','rick@mavrix.one','rick@mavrix.one','2025-12-04 14:04:49'),
(99,82,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-04 14:04:49'),
(100,83,'to','\"Richard P. Mislan','\"Richard P. Mislan','2025-12-04 14:04:50'),
(101,83,'to','rick@mavrix.one','PhD\"','2025-12-04 14:04:50'),
(102,83,'to','leslie@mavrix.one','Leslie Staron','2025-12-04 14:04:50'),
(103,84,'to','rick@mavrix.one','Rick Mislan','2025-12-04 14:04:50'),
(104,85,'to','rick@mavrix.one','','2025-12-04 14:04:51'),
(105,86,'to','rick@mavrix.one','','2025-12-04 14:04:52'),
(106,87,'to','jtrevey@forgenano.com','James Trevey','2025-12-04 14:04:52'),
(107,88,'to','rick@mavrix.one','Rick','2025-12-04 14:04:53'),
(108,89,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-04 14:04:54'),
(109,90,'to','rick@mavrix.one','rick@mavrix.one','2025-12-04 14:04:54'),
(110,91,'to','rick@mavrix.one','Rick','2025-12-04 14:04:55'),
(111,92,'to','rick@mavrix.one','Rick','2025-12-04 14:04:56'),
(112,93,'to','rick@mavrix.one','Rick Mislan','2025-12-04 14:04:57'),
(113,94,'to','rick@mavrix.one','Rick','2025-12-04 14:04:57'),
(114,95,'to','rick@mavrix.one','Rick','2025-12-04 14:04:58'),
(115,96,'to','rick@mavrix.one','Rick Mislan','2025-12-04 14:05:21'),
(116,96,'to','Nathan@Lithiumbatterycompany.com','\"Nathan A. Staron\"','2025-12-04 14:05:21'),
(117,97,'to','rick@mavrix.one','rick@mavrix.one','2025-12-04 14:05:21'),
(118,98,'to','jordan@lithiumbatterycompany.com','Jordan Wroblewski','2025-12-04 14:05:22'),
(119,99,'to','rick@mavrix.one','rick@mavrix.one','2025-12-04 14:05:22'),
(120,100,'to','Rick@mavrix.one','Rick@mavrix.one','2025-12-04 14:05:22'),
(121,101,'to','rick@mavrix.one','Rick','2025-12-04 14:05:22'),
(122,102,'to','brian@bayfrontcapitalllc.com','Brian Stufflebean','2025-12-04 14:05:25'),
(123,102,'to','rick@mavrix.one','Rick Mislan','2025-12-04 14:05:25'),
(124,103,'to','rick@mavrix.one','rick@mavrix.one','2025-12-04 14:05:25'),
(125,104,'to','rick@mavrix.one','Rick','2025-12-04 14:05:25'),
(126,105,'to','rick@mavrix.one','','2025-12-04 14:05:25'),
(127,106,'to','rick@mavrix.one','rick@mavrix.one','2025-12-04 14:05:25'),
(128,107,'to','Steve.Barthlow@lddblueline.com','Steve Barthlow','2025-12-04 14:05:25'),
(129,108,'to','Nathan@lithiumbatterycompany.com','\"Nathan A. Staron\"','2025-12-04 14:05:26'),
(130,108,'to','jordan@lithiumbatterycompany.com','Jordan Wroblewski','2025-12-04 14:05:26'),
(131,109,'to','Brian@mavrix.one','Brian Stufflebean','2025-12-04 14:05:26'),
(132,110,'to','Nathan@lithiumbatterycompany.com','Nathan Staron','2025-12-04 14:05:27'),
(133,110,'to','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','2025-12-04 14:05:27'),
(134,114,'to','erp_system@mavrix.one',NULL,'2025-12-04 14:59:08'),
(135,115,'to','erp_system@mavrix.one','erp_system@mavrix.one','2025-12-04 14:59:09'),
(136,122,'to','erp_system@mavrix.one',NULL,'2025-12-04 16:09:56'),
(137,128,'to','erp_system@mavrix.one','erp_system@mavrix.one','2025-12-04 16:18:59'),
(138,130,'to','erp_system@mavrix.one',NULL,'2025-12-04 16:37:54'),
(139,131,'to','erp_system@mavrix.one','erp_system@mavrix.one','2025-12-04 16:38:07'),
(140,138,'to','erp_system@mavrix.one','erp_system@mavrix.one','2025-12-04 22:54:48'),
(141,139,'to','erp_system@mavrix.one','erp_system@mavrix.one','2025-12-04 22:55:58'),
(142,143,'to','rick@mavrix.one','Rick','2025-12-09 18:52:04'),
(143,144,'to','rick@mavrix.one','Rick','2025-12-09 18:52:05'),
(144,145,'to','rick@mavrix.one','Rick Mislan','2025-12-09 18:52:08'),
(145,146,'to','rick@mavrix.one','Mavrix One','2025-12-09 18:52:08'),
(146,147,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 18:52:08'),
(147,148,'to','rick@mavrix.one','Rick Mislan','2025-12-09 18:52:09'),
(148,148,'to','tony@mavrix.one','tony@mavrix.one','2025-12-09 18:52:09'),
(149,149,'to','rick@mavrix.one','Rick Mislan','2025-12-09 18:52:10'),
(150,150,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 18:52:10'),
(151,151,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 18:52:10'),
(152,152,'to','rick@mavrix.one','Mavrix One','2025-12-09 18:52:11'),
(153,153,'to','rick@mavrix.one','Rick','2025-12-09 18:52:11'),
(154,154,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 18:52:12'),
(155,155,'to','contact@mavrix.one','contact@mavrix.one','2025-12-09 18:52:12'),
(156,156,'to','rick@mavrix.one','Rick','2025-12-09 18:52:12'),
(157,157,'to','rick@mavrix.one','Rick','2025-12-09 18:52:13'),
(158,158,'to','rick@mavrix.one','Rick','2025-12-09 18:52:13'),
(159,160,'to','rick@mavrix.one','Rick','2025-12-09 18:52:21'),
(160,161,'to','rick@mavrix.one','Rick','2025-12-09 18:52:22'),
(161,162,'to','rick@mavrix.one','\"Richard Mislan\"','2025-12-09 18:52:22'),
(162,163,'to','rick@mavrix.one','Rick Mislan','2025-12-09 18:52:23'),
(163,163,'to','tony@mavrix.one','Tony Aponte','2025-12-09 18:52:23'),
(164,163,'to','Tim@mavrix.one','Tim@mavrix.one','2025-12-09 18:52:23'),
(165,163,'to','tyler@mavrix.one','tyler@mavrix.one','2025-12-09 18:52:23'),
(166,164,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 18:52:23'),
(167,165,'to','ElizabethC@BradentonAreaEDC.com','Elizabeth Cordes','2025-12-09 18:52:23'),
(168,165,'to','\"Marcus Geiger','\"Marcus Geiger','2025-12-09 18:52:23'),
(169,165,'to','Marcus.Geiger@kimley-horn.com','P.E.\"','2025-12-09 18:52:23'),
(170,165,'to','rick@mavrix.one','Rick Mislan','2025-12-09 18:52:23'),
(171,165,'to','Nathan@Lithiumbatterycompany.com','\"Nathan A. Staron\"','2025-12-09 18:52:23'),
(172,166,'to','Brian@mavrix.one','Brian Stufflebean','2025-12-09 18:52:23'),
(173,167,'to','Brian@mavrix.one','Brian Stufflebean','2025-12-09 18:52:24'),
(174,168,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 18:52:24'),
(175,169,'to','Nathan@lithiumbatterycompany.com','\"Nathan A. Staron\"','2025-12-09 18:52:25'),
(176,170,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 18:52:25'),
(177,171,'to','Nathan@Lithiumbatterycompany.com','\"Nathan A. Staron\"','2025-12-09 18:52:25'),
(178,172,'to','Brian@mavrix.one','Brian Stufflebean','2025-12-09 18:52:26'),
(179,173,'to','Brian@mavrix.one','Brian Stufflebean','2025-12-09 18:52:26'),
(180,174,'to','Brian@mavrix.one','Brian Stufflebean','2025-12-09 18:52:26'),
(181,175,'to','kevin@mavrix.one','kevin@mavrix.one','2025-12-09 18:52:27'),
(182,175,'to','carson@mavrix.one','Carson Owlett','2025-12-09 18:52:27'),
(183,175,'to','tanner@mavrix.one','tanner@mavrix.one','2025-12-09 18:52:27'),
(184,175,'to','charles@mavrix.one','charles@mavrix.one','2025-12-09 18:52:27'),
(185,175,'to','dan@mavrix.one','dan@mavrix.one','2025-12-09 18:52:27'),
(186,175,'to','elias@mavrix.one','elias@mavrix.one','2025-12-09 18:52:27'),
(187,175,'to','john@mavrix.one','john@mavrix.one','2025-12-09 18:52:27'),
(188,175,'to','marion@mavrix.one','marion@mavrix.one','2025-12-09 18:52:27'),
(189,175,'to','nick@mavrix.one','nick@mavrix.one','2025-12-09 18:52:27'),
(190,176,'to','Brian@mavrix.one','Brian Stufflebean','2025-12-09 18:52:27'),
(191,177,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 18:52:28'),
(192,178,'to','robert@flowpath.pro','Robert Eckard','2025-12-09 18:52:28'),
(193,179,'to','Brian@mavrix.one','Brian Stufflebean','2025-12-09 18:52:29'),
(194,179,'to','\"Marcus Geiger','\"Marcus Geiger','2025-12-09 18:52:29'),
(195,179,'to','Marcus.Geiger@kimley-horn.com','P.E.\"','2025-12-09 18:52:29'),
(196,179,'to','rick@mavrix.one','Rick Mislan','2025-12-09 18:52:29'),
(197,179,'to','Nathan@Lithiumbatterycompany.com','\"Nathan A. Staron\"','2025-12-09 18:52:29'),
(198,179,'to','tony@mavrix.one','Tony Aponte','2025-12-09 18:52:29'),
(199,179,'to','SharonH@bradentonareaedc.com','Sharon Hillstrom','2025-12-09 18:52:29'),
(200,180,'to','Brian@mavrix.one','Brian Stufflebean','2025-12-09 18:52:31'),
(201,180,'to','\"Marcus Geiger','\"Marcus Geiger','2025-12-09 18:52:31'),
(202,180,'to','Marcus.Geiger@kimley-horn.com','P.E.\"','2025-12-09 18:52:31'),
(203,180,'to','rick@mavrix.one','Rick Mislan','2025-12-09 18:52:31'),
(204,180,'to','Nathan@Lithiumbatterycompany.com','\"Nathan A. Staron\"','2025-12-09 18:52:31'),
(205,181,'to','Brian@mavrix.one','Brian Stufflebean','2025-12-09 18:52:31'),
(206,181,'to','\"Marcus Geiger','\"Marcus Geiger','2025-12-09 18:52:31'),
(207,181,'to','Marcus.Geiger@kimley-horn.com','P.E.\"','2025-12-09 18:52:31'),
(208,181,'to','rick@mavrix.one','Rick Mislan','2025-12-09 18:52:31'),
(209,181,'to','Nathan@Lithiumbatterycompany.com','\"Nathan A. Staron\"','2025-12-09 18:52:31'),
(210,181,'to','tony@mavrix.one','Tony Aponte','2025-12-09 18:52:31'),
(211,181,'to','SharonH@bradentonareaedc.com','Sharon Hillstrom','2025-12-09 18:52:31'),
(212,182,'to','Rick@mavrix.one','Rick@mavrix.one','2025-12-09 18:52:32'),
(213,183,'to','rick@mavrix.one','Rick Mislan','2025-12-09 18:52:32'),
(214,184,'to','rick@mavrix.one','Rick','2025-12-09 18:52:32'),
(215,185,'to','rick@mavrix.one','\"Richard Mislan\"','2025-12-09 18:52:33'),
(216,186,'to','rick@mavrix.one','','2025-12-09 18:52:33'),
(217,187,'to','rick@mavrix.one','','2025-12-09 19:02:00'),
(218,188,'to','rick@mavrix.one','Rick','2025-12-09 19:02:00'),
(219,189,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:02:01'),
(220,190,'to','rick@mavrix.one','Rick','2025-12-09 19:02:01'),
(221,190,'to','matt.sather@botlink.com','Matt Sather','2025-12-09 19:02:01'),
(222,191,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:02:02'),
(223,192,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:02:03'),
(224,193,'to','Brandon.Cooley@knowmadics.com','Brandon Cooley','2025-12-09 19:02:04'),
(225,193,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:02:04'),
(226,194,'to','rick@mavrix.one','Rick','2025-12-09 19:02:04'),
(227,195,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:04'),
(228,196,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:04'),
(229,197,'to','Brodyscott0106@gmail.com','\"Brodyscott0106@gmail.com\"','2025-12-09 19:02:05'),
(230,197,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:02:05'),
(231,198,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:05'),
(232,199,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:05'),
(233,200,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:06'),
(234,201,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:06'),
(235,202,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:06'),
(236,203,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:07'),
(237,204,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:02:07'),
(238,205,'to','rick@mavrix.one','\"\'Rick\'\"','2025-12-09 19:02:07'),
(239,206,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:08'),
(240,207,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:08'),
(241,208,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:09'),
(242,209,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:09'),
(243,209,'to','jmeillon@dronisos.com','Jean Meillon','2025-12-09 19:02:09'),
(244,210,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:09'),
(245,211,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:02:10'),
(246,212,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:10'),
(247,213,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:02:12'),
(248,214,'to','rick@mavrix.one','Rick','2025-12-09 19:02:12'),
(249,215,'to','rick@mavrix.one','Rick','2025-12-09 19:02:13'),
(250,216,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:13'),
(251,217,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:13'),
(252,218,'to','rick@mavrix.one','Rick','2025-12-09 19:02:14'),
(253,219,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:14'),
(254,219,'to','timurzima2121@gmail.com','timurzima2121@gmail.com','2025-12-09 19:02:14'),
(255,220,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:14'),
(256,221,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:14'),
(257,222,'to','rick@mavrix.one','Rick','2025-12-09 19:02:15'),
(258,222,'to','nathan@lithiumbatterycompany.com','\"nathan@lithiumbatterycompany.com\"','2025-12-09 19:02:15'),
(259,222,'to','jordan@lithiumbatterycompany.com','\"jordan@lithiumbatterycompany.com\"','2025-12-09 19:02:15'),
(260,222,'to','ronald@lithiumbatterycompany.com','\"ronald@lithiumbatterycompany.com\"','2025-12-09 19:02:15'),
(261,223,'to','rick@mavrix.one','Rick','2025-12-09 19:02:15'),
(262,224,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:16'),
(263,224,'to','jordan@lithiumbatterycompany.com','Jordan Wroblewski','2025-12-09 19:02:16'),
(264,225,'to','rick@mavrix.one','Rick','2025-12-09 19:02:16'),
(265,226,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:16'),
(266,227,'to','rick@mavrix.one','Rick','2025-12-09 19:02:17'),
(267,228,'to','rick@mavrix.one','Rick','2025-12-09 19:02:17'),
(268,229,'to','rick@mavrix.one','Rick','2025-12-09 19:02:17'),
(269,229,'to','nick@lithiumbatterycompany.com','Nick Powell','2025-12-09 19:02:17'),
(270,230,'to','rick@mavrix.one','Rick','2025-12-09 19:02:18'),
(271,231,'to','rick@mavrix.one','\"Rick Mislan\"','2025-12-09 19:02:18'),
(272,232,'to','rick@mavrix.one','Rick','2025-12-09 19:02:18'),
(273,233,'to','rick@mavrix.one','Rick','2025-12-09 19:02:19'),
(274,234,'to','rick@mavrix.one','Rick','2025-12-09 19:02:19'),
(275,235,'to','rick@mavrix.one','Rick','2025-12-09 19:02:20'),
(276,236,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:20'),
(277,237,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:20'),
(278,238,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:21'),
(279,239,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:21'),
(280,240,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:22'),
(281,241,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:22'),
(282,242,'to','rick@mavrix.one','Rick','2025-12-09 19:02:22'),
(283,243,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:22'),
(284,244,'to','rick@mavrix.one','\"Rick Mislan\"','2025-12-09 19:02:23'),
(285,245,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:23'),
(286,246,'to','rick@mavrix.one','\"rick\"','2025-12-09 19:02:23'),
(287,247,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:24'),
(288,248,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:02:24'),
(289,249,'to','rick@mavrix.one','\"Rick Mislan\"','2025-12-09 19:02:24'),
(290,250,'to','rick@mavrix.one','Rick','2025-12-09 19:02:25'),
(291,251,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:02:25'),
(292,252,'to','rick@mavrix.one','Rick Mislan','2025-12-09 19:02:25'),
(293,253,'to','rick@mavrix.one','Rick','2025-12-09 19:02:26'),
(294,254,'to','rick@mavrix.one','Rick Mislan','2025-12-09 19:02:26'),
(295,255,'to','alm@bavovna.ai','Arthur McCallum','2025-12-09 19:02:27'),
(296,255,'to','rick@mavrix.one','Rick','2025-12-09 19:02:27'),
(297,256,'to','rick@mavrix.one','Rick','2025-12-09 19:02:27'),
(298,257,'to','rick@mavrix.one','Rick','2025-12-09 19:02:28'),
(299,258,'to','rick@mavrix.one','Rick','2025-12-09 19:02:28'),
(300,258,'to','tl@buildmo.com','Tom Labrecque','2025-12-09 19:02:28'),
(301,259,'to','rick@mavrix.one','Rick','2025-12-09 19:03:04'),
(302,260,'to','rick@mavrix.one','Rick','2025-12-09 19:03:05'),
(303,261,'to','rick@mavrix.one','Rick','2025-12-09 19:03:05'),
(304,262,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:03:05'),
(305,263,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:03:06'),
(306,263,'to','jdlauwereins@icarusswarms.ai','jdlauwereins@icarusswarms.ai','2025-12-09 19:03:06'),
(307,264,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:03:06'),
(308,264,'to','tl@buildmo.com','Tom Labrecque','2025-12-09 19:03:06'),
(309,265,'to','rick@mavrix.one','Rick','2025-12-09 19:03:07'),
(310,266,'to','rick@mavrix.one','Rick','2025-12-09 19:03:07'),
(311,267,'to','rick@mavrix.one','Rick','2025-12-09 19:03:08'),
(312,268,'to','rick@mavrix.one','Rick','2025-12-09 19:03:08'),
(313,269,'to','rick@mavrix.one','Rick','2025-12-09 19:03:08'),
(314,270,'to','rick@mavrix.one','Rick Mislan','2025-12-09 19:03:09'),
(315,271,'to','rick@mavrix.one','Rick','2025-12-09 19:03:10'),
(316,272,'to','rick@mavrix.one','Rick Mislan','2025-12-09 19:03:10'),
(317,273,'to','rick@mavrix.one','Rick','2025-12-09 19:03:10'),
(318,273,'to','tory@tfvector.com','Tory Roberts','2025-12-09 19:03:10'),
(319,274,'to','rick@mavrix.one','Rick','2025-12-09 19:03:12'),
(320,275,'to','rick@mavrix.one','\"Rick Mislan\"','2025-12-09 19:03:12'),
(321,276,'to','andy@tfvector.com','Andy Yakulis','2025-12-09 19:03:12'),
(322,277,'to','rick@mavrix.one','Rick','2025-12-09 19:03:13'),
(323,278,'to','rick@mavrix.one','Rick','2025-12-09 19:03:13'),
(324,279,'to','rick@mavrix.one','Rick','2025-12-09 19:03:17'),
(325,280,'to','rick@mavrix.one','Rick','2025-12-09 19:03:18'),
(326,281,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:03:18'),
(327,282,'to','rick@mavrix.one','Rick','2025-12-09 19:03:18'),
(328,283,'to','rick@mavrix.one','Rick','2025-12-09 19:03:19'),
(329,283,'to','tory@tfvector.com','Tory Roberts','2025-12-09 19:03:19'),
(330,284,'to','\"Richard P. Mislan','\"Richard P. Mislan','2025-12-09 19:03:19'),
(331,284,'to','rick@mavrix.one','PhD\"','2025-12-09 19:03:19'),
(332,285,'to','rick@mavrix.one','Rick','2025-12-09 19:03:20'),
(333,286,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:03:20'),
(334,287,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:03:20'),
(335,288,'to','rick@mavrix.one','Rick','2025-12-09 19:03:20'),
(336,289,'to','rick@mavrix.one','Rick','2025-12-09 19:03:21'),
(337,290,'to','rick@mavrix.one','Rick','2025-12-09 19:03:21'),
(338,291,'to','rick@mavrix.one','Rick','2025-12-09 19:06:44'),
(339,292,'to','rick@mavrix.one','Rick','2025-12-09 19:06:44'),
(340,293,'to','rick@mavrix.one','Rick','2025-12-09 19:06:44'),
(341,294,'to','rick@mavrix.one','Rick','2025-12-09 19:06:45'),
(342,295,'to','rick@mavrix.one','Rick','2025-12-09 19:06:45'),
(343,296,'to','rick@mavrix.one','Rick','2025-12-09 19:06:46'),
(344,297,'to','rick@mavrix.one','Rick Mislan','2025-12-09 19:06:46'),
(345,298,'to','rick@mavrix.one','Rick','2025-12-09 19:06:46'),
(346,299,'to','rick@mavrix.one','Rick','2025-12-09 19:06:47'),
(347,300,'to','rick@mavrix.one','Rick Mislan','2025-12-09 19:06:47'),
(348,301,'to','rick@mavrix.one','Rick','2025-12-09 19:06:47'),
(349,302,'to','rick@mavrix.one','Rick','2025-12-09 19:06:48'),
(350,303,'to','rick@mavrix.one','Rick','2025-12-09 19:06:48'),
(351,304,'to','andy@tfvector.com','Andy Yakulis','2025-12-09 19:06:49'),
(352,305,'to','rick@mavrix.one','Rick','2025-12-09 19:06:49'),
(353,306,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:06:49'),
(354,307,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:06:50'),
(355,307,'to','andy@tfvector.com','Andy Yakulis','2025-12-09 19:06:50'),
(356,308,'to','rick@mavrix.one','Rick','2025-12-09 19:06:50'),
(357,309,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:06:51'),
(358,309,'to','jschnipke@strategic-logix.com','Jeremy Schnipke','2025-12-09 19:06:51'),
(359,310,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:06:51'),
(360,311,'to','rick@mavrix.one','Rick','2025-12-09 19:06:52'),
(361,312,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:06:52'),
(362,312,'to','jschnipke@strategic-logix.com','Jeremy Schnipke','2025-12-09 19:06:52'),
(363,313,'to','rick@mavrix.one','Rick','2025-12-09 19:06:53'),
(364,314,'to','rick@mavrix.one','Rick','2025-12-09 19:06:53'),
(365,315,'to','rick@mavrix.one','Rick','2025-12-09 19:06:53'),
(366,315,'to','brian@bayfrontcapitalllc.com','Brian Stufflebean','2025-12-09 19:06:53'),
(367,316,'to','rick@mavrix.one','Rick','2025-12-09 19:06:54'),
(368,317,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:06:54'),
(369,318,'to','rick@mavrix.one','Rick','2025-12-09 19:06:54'),
(370,319,'to','rick@mavrix.one','Rick','2025-12-09 19:06:55'),
(371,320,'to','rick@mavrix.one','Rick','2025-12-09 19:06:55'),
(372,320,'to','seth.nason@tfvector-gcc.com','Seth Nason','2025-12-09 19:06:55'),
(373,321,'to','rick@mavrix.one','Rick','2025-12-09 19:06:55'),
(374,322,'to','rick@mavrix.one','Rick','2025-12-09 19:06:56'),
(375,323,'to','rick@mavrix.one','Rick','2025-12-09 19:06:56'),
(376,324,'to','rick@mavrix.one','Rick','2025-12-09 19:06:56'),
(377,325,'to','rick@mavrix.one','Rick','2025-12-09 19:06:57'),
(378,325,'to','jschnipke@strategic-logix.com','Jeremy Schnipke','2025-12-09 19:06:57'),
(379,326,'to','rick@mavrix.one','Rick','2025-12-09 19:06:57'),
(380,327,'to','rick@mavrix.one','Rick','2025-12-09 19:06:57'),
(381,327,'to','tl@buildmo.com','Tom Labrecque','2025-12-09 19:06:57'),
(382,328,'to','rick@mavrix.one','Rick','2025-12-09 19:06:58'),
(383,329,'to','rick@mavrix.one','Rick','2025-12-09 19:06:58'),
(384,329,'to','tl@buildmo.com','Tom Labrecque','2025-12-09 19:06:58'),
(385,330,'to','rick@mavrix.one','Rick','2025-12-09 19:06:58'),
(386,331,'to','rick@mavrix.one','Rick','2025-12-09 19:06:59'),
(387,332,'to','rick@mavrix.one','Rick','2025-12-09 19:06:59'),
(388,333,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:06:59'),
(389,333,'to','jschnipke@strategic-logix.com','Jeremy Schnipke','2025-12-09 19:06:59'),
(390,334,'to','rick@mavrix.one','Rick','2025-12-09 19:07:00'),
(391,335,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:07:00'),
(392,336,'to','rick@mavrix.one','Rick','2025-12-09 19:07:00'),
(393,337,'to','brian@bayfrontcapitalllc.com','Brian Stufflebean','2025-12-09 19:07:02'),
(394,338,'to','rick@mavrix.one','Rick','2025-12-09 19:07:03'),
(395,339,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:07:03'),
(396,339,'to','shenfang_cheng@vuzix.com','Shen-Fang Cheng','2025-12-09 19:07:03'),
(397,340,'to','shoover@impossible-objects.com','Steve Hoover','2025-12-09 19:07:03'),
(398,341,'to','rick@mavrix.one','Rick','2025-12-09 19:07:04'),
(399,341,'to','jschnipke@strategic-logix.com','Jeremy Schnipke','2025-12-09 19:07:04'),
(400,342,'to','rick@mavrix.one','Rick','2025-12-09 19:07:04'),
(401,343,'to','rick@mavrix.one','Rick','2025-12-09 19:07:05'),
(402,344,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:07:05'),
(403,345,'to','rick@mavrix.one','Rick','2025-12-09 19:07:06'),
(404,346,'to','rick@mavrix.one','Rick','2025-12-09 19:07:06'),
(405,346,'to','jschnipke@strategic-logix.com','Jeremy Schnipke','2025-12-09 19:07:06'),
(406,346,'to','rickmerkuri1@gmail.com','rickmerkuri1@gmail.com','2025-12-09 19:07:06'),
(407,347,'to','rick@mavrix.one','Rick','2025-12-09 19:07:06'),
(408,348,'to','rick@mavrix.one','Rick','2025-12-09 19:07:08'),
(409,349,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:07:08'),
(410,349,'to','shenfang_cheng@vuzix.com','Shen-Fang Cheng','2025-12-09 19:07:08'),
(411,350,'to','rick@mavrix.one','Rick Mislan','2025-12-09 19:07:08'),
(412,351,'to','rick@mavrix.one','Rick Mislan','2025-12-09 19:07:09'),
(413,352,'to','rick@mavrix.one','Rick Mislan','2025-12-09 19:07:09'),
(414,352,'to','brian.beaudry@aurelis.io','Brian Beaudry','2025-12-09 19:07:09'),
(415,353,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:07:09'),
(416,353,'to','rickmerkuri1@gmail.com','rickmerkuri1@gmail.com','2025-12-09 19:07:09'),
(417,353,'to','jschnipke@strategic-logix.com','Jeremy Schnipke','2025-12-09 19:07:09'),
(418,354,'to','rick@mavrix.one','Rick','2025-12-09 19:12:32'),
(419,355,'to','rick@mavrix.one','Rick','2025-12-09 19:12:32'),
(420,356,'to','rick@mavrix.one','Rick','2025-12-09 19:12:41'),
(421,356,'to','shenfang_cheng@vuzix.com','Shen-Fang Cheng','2025-12-09 19:12:41'),
(422,357,'to','rick@mavrix.one','Rick','2025-12-09 19:12:41'),
(423,357,'to','jschnipke@strategic-logix.com','Jeremy Schnipke','2025-12-09 19:12:41'),
(424,358,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:12:42'),
(425,359,'to','rick@mavrix.one','Rick Mislan','2025-12-09 19:12:42'),
(426,360,'to','rick@mavrix.one','Rick','2025-12-09 19:12:43'),
(427,361,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:12:43'),
(428,361,'to','tl@buildmo.com','Tom Labrecque','2025-12-09 19:12:43'),
(429,362,'to','rick@mavrix.one','Rick','2025-12-09 19:12:43'),
(430,363,'to','rick@mavrix.one','Rick','2025-12-09 19:12:43'),
(431,363,'to','jschnipke@strategic-logix.com','Jeremy Schnipke','2025-12-09 19:12:43'),
(432,364,'to','rick@mavrix.one','Rick','2025-12-09 19:12:44'),
(433,365,'to','rick@mavrix.one','Rick','2025-12-09 19:12:44'),
(434,366,'to','rick@mavrix.one','Rick','2025-12-09 19:12:45'),
(435,366,'to','rmislan@saunders.rit.edu','rmislan@saunders.rit.edu','2025-12-09 19:12:45'),
(436,367,'to','rick@mavrix.one','Rick','2025-12-09 19:12:46'),
(437,368,'to','rick@mavrix.one','Rick','2025-12-09 19:12:46'),
(438,369,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:12:46'),
(439,370,'to','rick@mavrix.one','Rick','2025-12-09 19:12:47'),
(440,371,'to','rick@mavrix.one','Rick','2025-12-09 19:12:47'),
(441,372,'to','rick@mavrix.one','Rick','2025-12-09 19:12:48'),
(442,373,'to','rick@mavrix.one','Rick','2025-12-09 19:12:48'),
(443,374,'to','rick@mavrix.one','Rick','2025-12-09 19:12:48'),
(444,375,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:12:49'),
(445,376,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:12:49'),
(446,377,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:12:50'),
(447,378,'to','rick@mavrix.one','Rick','2025-12-09 19:12:50'),
(448,379,'to','rick@mavrix.one','Rick','2025-12-09 19:12:50'),
(449,380,'to','rick@mavrix.one','Rick','2025-12-09 19:12:51'),
(450,380,'to','president@deltawerx.net','\"Major General (Ret) Frank Muth\"','2025-12-09 19:12:51'),
(451,381,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:12:51'),
(452,382,'to','rick@mavrix.one','Rick','2025-12-09 19:12:51'),
(453,383,'to','rick@mavrix.one','Rick Mislan','2025-12-09 19:12:52'),
(454,384,'to','rick@mavrix.one','Rick Mislan','2025-12-09 19:12:52'),
(455,385,'to','rick@mavrix.one','Rick','2025-12-09 19:12:53'),
(456,386,'to','rick@mavrix.one','Rick','2025-12-09 19:12:53'),
(457,387,'to','rick@mavrix.one','Rick','2025-12-09 19:12:54'),
(458,388,'to','rick@mavrix.one','Rick','2025-12-09 19:12:55'),
(459,389,'to','rick@mavrix.one','Rick','2025-12-09 19:12:55'),
(460,390,'to','avalkenburg@strategic-logix.com','Andrew Valkenburg','2025-12-09 19:12:55'),
(461,391,'to','rick@mavrix.one','Rick','2025-12-09 19:12:56'),
(462,392,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:12:56'),
(463,393,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:12:56'),
(464,394,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:12:57'),
(465,395,'to','rick@mavrix.one','Rick','2025-12-09 19:12:57'),
(466,396,'to','rick@mavrix.one','Rick','2025-12-09 19:12:58'),
(467,397,'to','rick@mavrix.one','Rick','2025-12-09 19:12:58'),
(468,398,'to','rick@mavrix.one','Rick','2025-12-09 19:12:58'),
(469,399,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:12:59'),
(470,400,'to','rick@mavrix.one','Rick','2025-12-09 19:12:59'),
(471,401,'to','rick@mavrix.one','Rick','2025-12-09 19:13:00'),
(472,402,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:13:00'),
(473,403,'to','rick@mavrix.one','Rick','2025-12-09 19:13:02'),
(474,404,'to','rick@mavrix.one','Rick','2025-12-09 19:13:02'),
(475,405,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:13:04'),
(476,405,'to','avalkenburg@strategic-logix.com','Andrew Valkenburg','2025-12-09 19:13:04'),
(477,406,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:13:04'),
(478,406,'to','avalkenburg@strategic-logix.com','Andrew Valkenburg','2025-12-09 19:13:04'),
(479,407,'to','rick@mavrix.one','Rick','2025-12-09 19:13:04'),
(480,407,'to','president@deltawerx.net','\"Major General (Ret) Frank Muth\"','2025-12-09 19:13:04'),
(481,408,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:13:05'),
(482,408,'to','avalkenburg@strategic-logix.com','Andrew Valkenburg','2025-12-09 19:13:05'),
(483,409,'to','brian@bayfrontcapitalllc.com','Brian Stufflebean','2025-12-09 19:13:05'),
(484,410,'to','brian@bayfrontcapitalllc.com','Brian Stufflebean','2025-12-09 19:13:05'),
(485,411,'to','rick@mavrix.one','Rick','2025-12-09 19:13:06'),
(486,412,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:13:06'),
(487,413,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:13:06'),
(488,414,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:13:07'),
(489,415,'to','thomaslarkin@nantennarf.com','thomaslarkin@nantennarf.com','2025-12-09 19:13:07'),
(490,415,'to','asheppard@tolana.us','Andrew Sheppard','2025-12-09 19:13:07'),
(491,415,'to','stolan@tolana.us','Stephanie Tolan','2025-12-09 19:13:07'),
(492,415,'to','dames@prodjekt.co','dames@prodjekt.co','2025-12-09 19:13:07'),
(493,415,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:13:07'),
(494,416,'to','brian@bayfrontcapitalllc.com','Brian Stufflebean','2025-12-09 19:13:08'),
(495,416,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:13:08'),
(496,417,'to','rick@mavrix.one','Rick','2025-12-09 19:13:08'),
(497,418,'to','rick@mavrix.one','Rick','2025-12-09 19:13:08'),
(498,418,'to','chris@cellectech.com','Christopher Schauerman','2025-12-09 19:13:08'),
(499,419,'to','rick@mavrix.one','Rick','2025-12-09 19:13:09'),
(500,420,'to','matthewjganter@gmail.com','Matthew Ganter','2025-12-09 19:13:09'),
(501,420,'to','rick@mavrix.one','Rick','2025-12-09 19:13:09'),
(502,421,'to','rick@mavrix.one','Rick','2025-12-09 19:13:09'),
(503,422,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:13:10'),
(504,422,'to','secheverri@votix.com','Santiago Echeverri','2025-12-09 19:13:10'),
(505,423,'to','rick@mavrix.one','Rick','2025-12-09 19:13:10'),
(506,424,'to','rick@mavrix.one','Rick','2025-12-09 19:13:10'),
(507,425,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:13:11'),
(508,426,'to','rick@mavrix.one','Rick','2025-12-09 19:13:11'),
(509,426,'to','secheverri@votix.com','Santiago Echeverri','2025-12-09 19:13:11'),
(510,427,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:13:11'),
(511,427,'to','brian@bayfrontcapitalllc.com','Brian Stufflebean','2025-12-09 19:13:11'),
(512,428,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:13:12'),
(513,429,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:13:13'),
(514,429,'to','CG@s3global.us','CG','2025-12-09 19:13:13'),
(515,430,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:13:13'),
(516,430,'to','secheverri@votix.com','Santiago Echeverri','2025-12-09 19:13:13'),
(517,431,'to','rick@mavrix.one','Rick','2025-12-09 19:13:13'),
(518,431,'to','secheverri@votix.com','Santiago Echeverri','2025-12-09 19:13:13'),
(519,432,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:13:14'),
(520,432,'to','secheverri@votix.com','Santiago Echeverri','2025-12-09 19:13:14'),
(521,433,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:13:24'),
(522,434,'to','rick@mavrix.one','','2025-12-09 19:13:24'),
(523,435,'to','rick@mavrix.one','Rick','2025-12-09 19:13:24'),
(524,436,'to','jason@corvexsystems.com','Jason Blick','2025-12-09 19:13:25'),
(525,437,'to','brian@bayfrontcapitalllc.com','Brian Stufflebean','2025-12-09 19:13:25'),
(526,438,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:13:27'),
(527,439,'to','rick@mavrix.one','Rick Mislan','2025-12-09 19:13:27'),
(528,440,'to','brian@bayfrontcapitalllc.com','Brian Stufflebean','2025-12-09 19:13:28'),
(529,441,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:13:28'),
(530,442,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:13:28'),
(531,443,'to','rick@mavrix.one','Rick','2025-12-09 19:13:29'),
(532,444,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:13:30'),
(533,445,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:13:31'),
(534,446,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:13:31'),
(535,447,'to','rick@mavrix.one','Twitter User','2025-12-09 19:13:31'),
(536,448,'to','rick@mavrix.one','Mavrix One','2025-12-09 19:13:32'),
(537,449,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:13:32'),
(538,450,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:13:32'),
(539,451,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:13:33'),
(540,452,'to','rick@mavrix.one','Rick','2025-12-09 19:13:36'),
(541,453,'to','rick@mavrix.one','Rick','2025-12-09 19:13:39'),
(542,454,'to','rick@mavrix.one','Rick','2025-12-09 19:13:43'),
(543,455,'to','rick@mavrix.one','Rick','2025-12-09 19:13:44'),
(544,456,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:13:44'),
(545,457,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:13:44'),
(546,458,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:13:45'),
(547,459,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:13:45'),
(548,460,'to','rick@mavrix.one','Mavrix One','2025-12-09 19:13:46'),
(549,461,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:13:46'),
(550,462,'to','rick@mavrix.one','Mavrix One','2025-12-09 19:13:46'),
(551,463,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:13:47'),
(552,464,'to','rick@mavrix.one','Rick','2025-12-09 19:13:47'),
(553,465,'to','rick@mavrix.one','Rick','2025-12-09 19:13:47'),
(554,466,'to','rick@mavrix.one','Mavrix One','2025-12-09 19:13:48'),
(555,467,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:13:48'),
(556,468,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:13:48'),
(557,469,'to','rick@mavrix.one','Rick','2025-12-09 19:13:50'),
(558,470,'to','rick@mavrix.one','Rick','2025-12-09 19:13:50'),
(559,471,'to','rick@mavrix.one','Rick','2025-12-09 19:13:53'),
(560,472,'to','rick@mavrix.one','Rick','2025-12-09 19:13:54'),
(561,473,'to','rick@mavrix.one','Rick','2025-12-09 19:13:55'),
(562,474,'to','rick@mavrix.one','Rick','2025-12-09 19:13:55'),
(563,475,'to','rick@mavrix.one','Mavrix One','2025-12-09 19:13:56'),
(564,476,'to','rick@mavrix.one','Rick','2025-12-09 19:13:57'),
(565,477,'to','rick@mavrix.one','Rick','2025-12-09 19:14:00'),
(566,478,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:14:01'),
(567,479,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-09 19:14:01'),
(568,480,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:14:01'),
(569,481,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:14:02'),
(570,482,'to','rick@mavrix.one','rick@mavrix.one','2025-12-09 19:14:02'),
(571,483,'to','rick@mavrix.one','Mavrix One','2025-12-09 19:14:02'),
(572,484,'to','brian@mavrix.one','','2025-12-09 19:14:03'),
(573,484,'to','rick@mavrix.one','','2025-12-09 19:14:03'),
(574,485,'to','Mavrix One <rick@mavrix.one>',NULL,'2025-12-09 19:17:21'),
(575,486,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:17:21'),
(576,487,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:17:22'),
(577,488,'to','rick@mavrix.one',NULL,'2025-12-09 19:17:22'),
(578,489,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:17:22'),
(579,490,'to','rick@mavrix.one',NULL,'2025-12-09 19:17:23'),
(580,491,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:17:23'),
(581,492,'to','rick@mavrix.one',NULL,'2025-12-09 19:17:23'),
(582,493,'to','rick@mavrix.one',NULL,'2025-12-09 19:17:24'),
(583,494,'to','Mavrix One <rick@mavrix.one>',NULL,'2025-12-09 19:17:24'),
(584,495,'to','rick@mavrix.one',NULL,'2025-12-09 19:17:24'),
(585,496,'to','Mavrix One <rick@mavrix.one>',NULL,'2025-12-09 19:17:25'),
(586,497,'to','rick@mavrix.one',NULL,'2025-12-09 19:17:25'),
(587,498,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:17:27'),
(588,499,'to','\"Rick Mislan\" <rick@mavrix.one>',NULL,'2025-12-09 19:17:27'),
(589,500,'to','\"Rick Mislan\" <rick@mavrix.one>',NULL,'2025-12-09 19:17:27'),
(590,501,'to','\"Rick Mislan\" <rick@mavrix.one>',NULL,'2025-12-09 19:17:28'),
(591,502,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:17:31'),
(592,502,'to','\"rmislan@saunders.rit.edu\" <rmislan@saunders.rit.edu>',NULL,'2025-12-09 19:17:31'),
(593,503,'to','rick@mavrix.one',NULL,'2025-12-09 19:17:31'),
(594,504,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:17:31'),
(595,505,'to','rick@mavrix.one',NULL,'2025-12-09 19:17:32'),
(596,506,'to','rick@mavrix.one',NULL,'2025-12-09 19:17:32'),
(597,507,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:17:32'),
(598,508,'to','rick@mavrix.one',NULL,'2025-12-09 19:17:33'),
(599,509,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:17:33'),
(600,510,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:17:34'),
(601,511,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:17:34'),
(602,512,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:17:35'),
(603,513,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:17:35'),
(604,514,'to','rick@mavrix.one',NULL,'2025-12-09 19:17:35'),
(605,515,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:17:36'),
(606,516,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:17:36'),
(607,517,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:17:37'),
(608,518,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:17:42'),
(609,519,'to','rick@mavrix.one',NULL,'2025-12-09 19:17:42'),
(610,520,'to','rick@mavrix.one',NULL,'2025-12-09 19:25:45'),
(611,521,'to','rick@mavrix.one',NULL,'2025-12-09 19:25:45'),
(612,522,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:26:24'),
(613,523,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:26:25'),
(614,524,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:26:25'),
(615,525,'to','rick@mavrix.one',NULL,'2025-12-09 19:26:25'),
(616,526,'to','rick@mavrix.one',NULL,'2025-12-09 19:26:26'),
(617,527,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:26:26'),
(618,527,'to','Casey Crane <cranecre@outlook.com>',NULL,'2025-12-09 19:26:26'),
(619,527,'to','\"tonyaponte@protonmail.com\" <tonyaponte@protonmail.com>',NULL,'2025-12-09 19:26:26'),
(620,528,'to','rick@mavrix.one',NULL,'2025-12-09 19:26:26'),
(621,529,'to','rick@mavrix.one',NULL,'2025-12-09 19:26:27'),
(622,530,'to','Richard Van Voorst <rich@achramlabs.com>',NULL,'2025-12-09 19:26:33'),
(623,531,'to','Brian Stufflebean <brian@bayfrontcapitalllc.com>',NULL,'2025-12-09 19:26:36'),
(624,532,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:26:36'),
(625,533,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:26:37'),
(626,534,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:26:37'),
(627,535,'to','Tony Aponte <TonyAponte@protonmail.com>',NULL,'2025-12-09 19:26:37'),
(628,535,'to','Richard Van Voorst <rich@achramlabs.com>',NULL,'2025-12-09 19:26:37'),
(629,536,'to','rick@mavrix.one',NULL,'2025-12-09 19:26:38'),
(630,537,'to','Brian Stufflebean <brian@bayfrontcapitalllc.com>',NULL,'2025-12-09 19:26:38'),
(631,537,'to','Andrew Reynolds <areyn813@gmail.com>',NULL,'2025-12-09 19:26:38'),
(632,537,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:26:38'),
(633,537,'to','Tony Aponte <tonyaponte@protonmail.com>',NULL,'2025-12-09 19:26:38'),
(634,537,'to','Katy Aponte <KDLAponte@protonmail.com>',NULL,'2025-12-09 19:26:38'),
(635,538,'to','rick@mavrix.one',NULL,'2025-12-09 19:26:38'),
(636,539,'to','rick@mavrix.one',NULL,'2025-12-09 19:26:38'),
(637,540,'to','rich@achramlabs.com',NULL,'2025-12-09 19:26:39'),
(638,540,'to','Brian@mavrix.one',NULL,'2025-12-09 19:26:39'),
(639,540,'to','rick@mavrix.one',NULL,'2025-12-09 19:26:39'),
(640,540,'to','Katherine Aponte <katherine@mavrix.one>',NULL,'2025-12-09 19:26:39'),
(641,541,'to','rich@achramlabs.com',NULL,'2025-12-09 19:26:39'),
(642,541,'to','andrew@achramlabs.com',NULL,'2025-12-09 19:26:39'),
(643,541,'to','Brian@mavrix.one',NULL,'2025-12-09 19:26:39'),
(644,541,'to','rick@mavrix.one',NULL,'2025-12-09 19:26:39'),
(645,541,'to','Katherine Aponte <katherine@mavrix.one>',NULL,'2025-12-09 19:26:39'),
(646,542,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:26:39'),
(647,543,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:26:40'),
(648,544,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:26:49'),
(649,545,'to','Rick@mavrix.one',NULL,'2025-12-09 19:26:49'),
(650,546,'to','rick@mavrix.one',NULL,'2025-12-09 19:26:50'),
(651,547,'to','rick@mavrix.one',NULL,'2025-12-09 19:26:50'),
(652,548,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:26:57'),
(653,549,'to','rick@mavrix.one',NULL,'2025-12-09 19:26:57'),
(654,550,'to','\"Nathan A. Staron\" <Nathan@Lithiumbatterycompany.com>',NULL,'2025-12-09 19:26:58'),
(655,550,'to','Jordan Wroblewski <Jordan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:26:58'),
(656,550,'to','Jarrett Brownfield <jarrett@lithiumbatterycompany.com>',NULL,'2025-12-09 19:26:58'),
(657,551,'to','rick@mavrix.one',NULL,'2025-12-09 19:26:58'),
(658,552,'to','Brian Stufflebean <brian@bayfrontcapitalllc.com>',NULL,'2025-12-09 19:26:59'),
(659,553,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:26:59'),
(660,554,'to','Brian Stufflebean <brian@bayfrontcapitalllc.com>',NULL,'2025-12-09 19:26:59'),
(661,555,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:00'),
(662,556,'to','Brian Stufflebean <brian@bayfrontcapitalllc.com>',NULL,'2025-12-09 19:27:00'),
(663,557,'to','Brian@mavrix.one',NULL,'2025-12-09 19:27:01'),
(664,557,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:01'),
(665,558,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:01'),
(666,559,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:01'),
(667,560,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:02'),
(668,561,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:02'),
(669,562,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:02'),
(670,563,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:03'),
(671,564,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:03'),
(672,565,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:27:03'),
(673,566,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:27:04'),
(674,567,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:27:04'),
(675,568,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:27:04'),
(676,569,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:05'),
(677,570,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:05'),
(678,571,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:06'),
(679,572,'to','Nathan Staron <Nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:27:06'),
(680,572,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:06'),
(681,573,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:07'),
(682,574,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:07'),
(683,575,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:27:07'),
(684,576,'to','Rick@mavrix.one',NULL,'2025-12-09 19:27:08'),
(685,577,'to','Jordan Wroblewski <jordan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:27:08'),
(686,577,'to','Brian Stufflebean <brian@bayfrontcapitalllc.com>',NULL,'2025-12-09 19:27:08'),
(687,578,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:27:09'),
(688,579,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:09'),
(689,580,'to','\"Rick@mavrix.one\" <Rick@mavrix.one>',NULL,'2025-12-09 19:27:09'),
(690,581,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:10'),
(691,582,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:10'),
(692,583,'to','\"Nathan A. Staron\" <Nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:27:10'),
(693,584,'to','Brian Stufflebean <brian@bayfrontcapitalllc.com>',NULL,'2025-12-09 19:27:11'),
(694,585,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:11'),
(695,586,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:27:11'),
(696,587,'to','\"Richard Mislan\" <rick@mavrix.one>',NULL,'2025-12-09 19:27:12'),
(697,588,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:12'),
(698,589,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:12'),
(699,590,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:13'),
(700,591,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:13'),
(701,591,'to','brian@bayfrontcapitalllc.com',NULL,'2025-12-09 19:27:13'),
(702,591,'to','Nathan Staron <nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:27:13'),
(703,591,'to','Jarrett Brownfield <jarrett@lithiumbatterycompany.com>',NULL,'2025-12-09 19:27:13'),
(704,592,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:13'),
(705,593,'to','Brian Stufflebean <brian@bayfrontcapitalllc.com>',NULL,'2025-12-09 19:27:14'),
(706,594,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:14'),
(707,595,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:15'),
(708,596,'to','\"Richard Mislan\" <rick@mavrix.one>',NULL,'2025-12-09 19:27:15'),
(709,597,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:16'),
(710,598,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:16'),
(711,599,'to','Jarrett Brownfield <jarrett@lithiumbatterycompany.com>',NULL,'2025-12-09 19:27:17'),
(712,599,'to','Jordan Wroblewski <jordan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:27:17'),
(713,600,'to','Nathan Staron <Nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:27:18'),
(714,601,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:19'),
(715,602,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:19'),
(716,603,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:19'),
(717,604,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:20'),
(718,604,'to','brian@bayfrontcapitalllc.com',NULL,'2025-12-09 19:27:20'),
(719,604,'to','Nathan Staron <nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:27:20'),
(720,604,'to','Jordan Wroblewski <jordan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:27:20'),
(721,605,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:27:24'),
(722,605,'to','Brian Stufflebean <brian@mavrix.one>',NULL,'2025-12-09 19:27:24'),
(723,606,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:24'),
(724,607,'to','\"Richard Mislan\" <rick@mavrix.one>',NULL,'2025-12-09 19:27:25'),
(725,608,'to','\"Nathan A. Staron\" <Nathan@Lithiumbatterycompany.com>',NULL,'2025-12-09 19:27:25'),
(726,608,'to','Jordan Wroblewski <Jordan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:27:25'),
(727,608,'to','Jarrett Brownfield <jarrett@lithiumbatterycompany.com>',NULL,'2025-12-09 19:27:25'),
(728,609,'to','Brian Stufflebean <brian@bayfrontcapitalllc.com>',NULL,'2025-12-09 19:27:25'),
(729,610,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:26'),
(730,611,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:26'),
(731,612,'to','\"Nathan A. Staron\" <Nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:27:27'),
(732,613,'to','Brian Stufflebean <brian@bayfrontcapitalllc.com>',NULL,'2025-12-09 19:27:28'),
(733,614,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:28'),
(734,615,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:35'),
(735,616,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:35'),
(736,617,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:36'),
(737,618,'to','Tony <tony@mavrix.one>',NULL,'2025-12-09 19:27:36'),
(738,618,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:36'),
(739,619,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:36'),
(740,620,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:37'),
(741,621,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:37'),
(742,622,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:38'),
(743,623,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:42'),
(744,623,'to','\"dan@mavrix.one\" <dan@mavrix.one>',NULL,'2025-12-09 19:27:42'),
(745,624,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:43'),
(746,625,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:43'),
(747,626,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:44'),
(748,627,'to','Brian Stufflebean <brian@bayfrontcapitalllc.com>',NULL,'2025-12-09 19:27:44'),
(749,627,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:27:44'),
(750,628,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:44'),
(751,629,'to','Brian Stufflebean <brian@bayfrontcapitalllc.com>',NULL,'2025-12-09 19:27:46'),
(752,629,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:27:46'),
(753,630,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:46'),
(754,631,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:46'),
(755,632,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:46'),
(756,633,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:47'),
(757,634,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:48'),
(758,635,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:48'),
(759,636,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:49'),
(760,637,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:49'),
(761,637,'to','cfonts@seadar.blue',NULL,'2025-12-09 19:27:49'),
(762,637,'to','paxtonkelso@hotmail.com',NULL,'2025-12-09 19:27:49'),
(763,638,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:50'),
(764,638,'to','Tony <tony@mavrix.one>',NULL,'2025-12-09 19:27:50'),
(765,639,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:50'),
(766,640,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:51'),
(767,641,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:51'),
(768,642,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:27:51'),
(769,642,'to','Brian Stufflebean <brian@mavrix.one>',NULL,'2025-12-09 19:27:51'),
(770,643,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:52'),
(771,644,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:52'),
(772,645,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:53'),
(773,646,'to','Rick@mavrix.one',NULL,'2025-12-09 19:27:53'),
(774,647,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:27:53'),
(775,648,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:53'),
(776,649,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:27:55'),
(777,650,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:55'),
(778,651,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:56'),
(779,651,'to','\"dan@mavrix.one\" <dan@mavrix.one>',NULL,'2025-12-09 19:27:56'),
(780,652,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:27:56'),
(781,653,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:56'),
(782,654,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:27:56'),
(783,655,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:27:57'),
(784,656,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:57'),
(785,657,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:58'),
(786,658,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:58'),
(787,659,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:27:58'),
(788,660,'to','rick@mavrix.one',NULL,'2025-12-09 19:27:59'),
(789,661,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:27:59'),
(790,662,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:00'),
(791,663,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:00'),
(792,664,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:00'),
(793,665,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:01'),
(794,666,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:01'),
(795,667,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:01'),
(796,668,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:02'),
(797,668,'to','mperkins.brandys@frontiernet.net',NULL,'2025-12-09 19:28:02'),
(798,668,'to','brandys@frontiernet.net',NULL,'2025-12-09 19:28:02'),
(799,669,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:02'),
(800,670,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:02'),
(801,671,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:03'),
(802,672,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:03'),
(803,673,'to','Gopi Achari <Gopi.Achari@bistasolutions.com>',NULL,'2025-12-09 19:28:03'),
(804,674,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:04'),
(805,675,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:04'),
(806,676,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:04'),
(807,677,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:05'),
(808,678,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:05'),
(809,679,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:05'),
(810,680,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:06'),
(811,681,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:07'),
(812,682,'to','jarrett@mavrix.one',NULL,'2025-12-09 19:28:07'),
(813,682,'to','brian@mavrix.one',NULL,'2025-12-09 19:28:07'),
(814,682,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:07'),
(815,684,'to','Brian Stufflebean <brian@bayfrontcapitalllc.com>',NULL,'2025-12-09 19:28:09'),
(816,685,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:28:09'),
(817,686,'to','Mavrix One <rick@mavrix.one>',NULL,'2025-12-09 19:28:09'),
(818,687,'to','Mavrix One <rick@mavrix.one>',NULL,'2025-12-09 19:28:10'),
(819,688,'to','Rick@mavrix.one',NULL,'2025-12-09 19:28:10'),
(820,689,'to','\"Rick@mavrix.one\" <Rick@mavrix.one>',NULL,'2025-12-09 19:28:11'),
(821,690,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:11'),
(822,691,'to','Rick@mavrix.one',NULL,'2025-12-09 19:28:11'),
(823,692,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:12'),
(824,693,'to','Brian Stufflebean <brian@bayfrontcapitalllc.com>',NULL,'2025-12-09 19:28:12'),
(825,694,'to','\"Nathan A. Staron\" <Nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:28:12'),
(826,695,'to','Brian Stufflebean <brian@bayfrontcapitalllc.com>',NULL,'2025-12-09 19:28:13'),
(827,696,'to','Brian Stufflebean <brian@bayfrontcapitalllc.com>',NULL,'2025-12-09 19:28:13'),
(828,697,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:28:14'),
(829,698,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:28:14'),
(830,699,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:14'),
(831,700,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:28:15'),
(832,701,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:28:15'),
(833,702,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:15'),
(834,703,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:28:16'),
(835,704,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:28:16'),
(836,705,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:16'),
(837,706,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:28:17'),
(838,707,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:28:17'),
(839,708,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:28:17'),
(840,709,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:17'),
(841,709,'to','brian@mavrix.one',NULL,'2025-12-09 19:28:17'),
(842,710,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:18'),
(843,710,'to','Brian <brian@mavrix.one>',NULL,'2025-12-09 19:28:18'),
(844,712,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:28:18'),
(845,713,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:28:19'),
(846,714,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:28:19'),
(847,715,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:28:19'),
(848,716,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:28:20'),
(849,717,'to','Mavrix One <rick@mavrix.one>',NULL,'2025-12-09 19:28:20'),
(850,718,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:21'),
(851,718,'to','brian@mavrix.one',NULL,'2025-12-09 19:28:21'),
(852,719,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:21'),
(853,719,'to','jtrevey@forgenano.com',NULL,'2025-12-09 19:28:21'),
(854,719,'to','brian@mavrix.one',NULL,'2025-12-09 19:28:21'),
(855,719,'to','Jordan Wroblewski <jordan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:28:21'),
(856,719,'to','dansheridanmusic@gmail.com',NULL,'2025-12-09 19:28:21'),
(857,720,'to','Rick Mislan <rick@mislan.com>',NULL,'2025-12-09 19:28:25'),
(858,720,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:25'),
(859,721,'to','Mavrix One <rick@mavrix.one>',NULL,'2025-12-09 19:28:26'),
(860,722,'to','Brian Stufflebean <Brian@mavrix.one>',NULL,'2025-12-09 19:28:26'),
(861,723,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:27'),
(862,724,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:27'),
(863,725,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:28'),
(864,726,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:28'),
(865,727,'to','\"Ricotta',NULL,'2025-12-09 19:28:28'),
(866,727,'to','Matthew\" <m.ricotta@centurymold.com>',NULL,'2025-12-09 19:28:28'),
(867,727,'to','\"Blake',NULL,'2025-12-09 19:28:28'),
(868,727,'to','Elizabeth\" <e.blake@centurymold.com>',NULL,'2025-12-09 19:28:28'),
(869,727,'to','\"Rottier',NULL,'2025-12-09 19:28:28'),
(870,727,'to','Danielle\" <danielle.rottier@centurymold.com>',NULL,'2025-12-09 19:28:28'),
(871,727,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:28'),
(872,728,'to','Mavrix One <rick@mavrix.one>',NULL,'2025-12-09 19:28:29'),
(873,729,'to','jen <jen@deeptechgtm.com>',NULL,'2025-12-09 19:28:29'),
(874,729,'to','\"Blake',NULL,'2025-12-09 19:28:29'),
(875,729,'to','Elizabeth\" <e.blake@centurymold.com>',NULL,'2025-12-09 19:28:29'),
(876,729,'to','\"Rottier',NULL,'2025-12-09 19:28:29'),
(877,729,'to','Danielle\" <danielle.rottier@centurymold.com>',NULL,'2025-12-09 19:28:29'),
(878,729,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:28:29'),
(879,730,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:29'),
(880,731,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:28:29'),
(881,732,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:30'),
(882,733,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:28:30'),
(883,734,'to','Mavrix One <rick@mavrix.one>',NULL,'2025-12-09 19:28:30'),
(884,735,'to','James Trevey <jtrevey@forgenano.com>',NULL,'2025-12-09 19:28:31'),
(885,735,'to','Daniel <dansheridanmusic@gmail.com>',NULL,'2025-12-09 19:28:31'),
(886,735,'to','brian@mavrix.one',NULL,'2025-12-09 19:28:31'),
(887,735,'to','Nathan Staron <nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:28:31'),
(888,735,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:28:31'),
(889,736,'to','Brian <brian@mavrix.one>',NULL,'2025-12-09 19:28:31'),
(890,736,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:31'),
(891,737,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:32'),
(892,738,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:32'),
(893,739,'to','Jordan Wroblewski <jordan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:28:34'),
(894,739,'to','Daniel <dansheridanmusic@gmail.com>',NULL,'2025-12-09 19:28:34'),
(895,739,'to','\"brian@mavrix.one\" <brian@mavrix.one>',NULL,'2025-12-09 19:28:34'),
(896,739,'to','Nathan Staron <nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:28:34'),
(897,739,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:28:34'),
(898,740,'to','Mavrix One <rick@mavrix.one>',NULL,'2025-12-09 19:28:34'),
(899,741,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:35'),
(900,742,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:35'),
(901,743,'to','James Trevey <jtrevey@forgenano.com>',NULL,'2025-12-09 19:28:35'),
(902,744,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:28:36'),
(903,745,'to','brian@mavrix.one',NULL,'2025-12-09 19:28:36'),
(904,745,'to','Nathan@lithiumbatterycompany.com',NULL,'2025-12-09 19:28:36'),
(905,745,'to','jarrett@lithiumbatterycompany.com',NULL,'2025-12-09 19:28:36'),
(906,745,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:36'),
(907,746,'to','Mavrix One <rick@mavrix.one>',NULL,'2025-12-09 19:28:37'),
(908,747,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:37'),
(909,748,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:37'),
(910,749,'to','Mavrix One <rick@mavrix.one>',NULL,'2025-12-09 19:28:38'),
(911,750,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:38'),
(912,751,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:38'),
(913,752,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:39'),
(914,753,'to','Jordan Wroblewski <jordan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:28:39'),
(915,754,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:40'),
(916,755,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:40'),
(917,756,'to','Mavrix One <rick@mavrix.one>',NULL,'2025-12-09 19:28:40'),
(918,757,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:41'),
(919,758,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:41'),
(920,759,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:41'),
(921,760,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:42'),
(922,761,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:47'),
(923,762,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:47'),
(924,763,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:48'),
(925,764,'to','Mavrix One <rick@mavrix.one>',NULL,'2025-12-09 19:28:48'),
(926,765,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:49'),
(927,766,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:49'),
(928,766,'to','Tanya Nazarian <tanya@grafik.com>',NULL,'2025-12-09 19:28:49'),
(929,767,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:50'),
(930,768,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:50'),
(931,769,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:50'),
(932,770,'to','Mavrix One <rick@mavrix.one>',NULL,'2025-12-09 19:28:51'),
(933,771,'to','\"Rick Mislan',NULL,'2025-12-09 19:28:51'),
(934,771,'to','PhD\" <rick@mavrix.one>',NULL,'2025-12-09 19:28:51'),
(935,771,'to','Rob Cranston <rcranston@canallc.com>',NULL,'2025-12-09 19:28:51'),
(936,771,'to','Chris Cichy <ccichy@canallc.com>',NULL,'2025-12-09 19:28:51'),
(937,772,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:51'),
(938,773,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:28:52'),
(939,774,'to','Rick@mavrix.one',NULL,'2025-12-09 19:28:52'),
(940,775,'to','Jordan Wroblewski <jordan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:28:52'),
(941,776,'to','brian@mavrix.one',NULL,'2025-12-09 19:28:53'),
(942,776,'to','rick@mavrix.one',NULL,'2025-12-09 19:28:53'),
(943,777,'to','James Trevey <jtrevey@forgenano.com>',NULL,'2025-12-09 19:28:53'),
(944,778,'to','Nathan Staron <Nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:29:02'),
(945,778,'to','\"brian@mavrix.one\" <brian@mavrix.one>',NULL,'2025-12-09 19:29:02'),
(946,779,'to','Jordan Wroblewski <jordan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:29:02'),
(947,780,'to','Brian Stufflebean <brian@mavrix.one>',NULL,'2025-12-09 19:29:03'),
(948,780,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:29:03'),
(949,781,'to','Nathan Staron <Nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:29:04'),
(950,781,'to','\"brian@mavrix.one\" <brian@mavrix.one>',NULL,'2025-12-09 19:29:04'),
(951,782,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:29:04'),
(952,783,'to','rick@mavrix.one',NULL,'2025-12-09 19:29:04'),
(953,783,'to','Tanya Nazarian <tanya@grafik.com>',NULL,'2025-12-09 19:29:04'),
(954,784,'to','rick@mavrix.one',NULL,'2025-12-09 19:29:05'),
(955,784,'to','Tanya Nazarian <tanya@grafik.com>',NULL,'2025-12-09 19:29:05'),
(956,785,'to','James Trevey <jtrevey@forgenano.com>',NULL,'2025-12-09 19:29:05'),
(957,786,'to','rick@mavrix.one',NULL,'2025-12-09 19:29:06'),
(958,787,'to','Elizabeth Cordes <elizabethc@bradentonareaedc.com>',NULL,'2025-12-09 19:29:06'),
(959,787,'to','Yanet Lopez <yanetl@bradentonareaedc.com>',NULL,'2025-12-09 19:29:06'),
(960,788,'to','rick@mavrix.one',NULL,'2025-12-09 19:29:06'),
(961,789,'to','Nathan Staron <Nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:29:07'),
(962,789,'to','Yanet Lopez <yanetl@bradentonareaedc.com>',NULL,'2025-12-09 19:29:07'),
(963,790,'to','rick@mavrix.one',NULL,'2025-12-09 19:29:07'),
(964,791,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:29:07'),
(965,792,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:29:08'),
(966,793,'to','Jordan Wroblewski <Jordan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:29:08'),
(967,794,'to','Brian Stufflebean <Brian@mavrix.one>',NULL,'2025-12-09 19:29:08'),
(968,795,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:29:09'),
(969,796,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:29:09'),
(970,797,'to','Nathan Staron <Nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:29:09'),
(971,798,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:29:10'),
(972,798,'to','Tony Williams <tony@zqcus.com>',NULL,'2025-12-09 19:29:10'),
(973,799,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:29:10'),
(974,799,'to','Jennifer Kay <jen@deeptechgtm.com>',NULL,'2025-12-09 19:29:10'),
(975,800,'to','Elizabeth Cordes <elizabethc@bradentonareaedc.com>',NULL,'2025-12-09 19:29:11'),
(976,801,'to','\"Rick@mavrix.one\" <Rick@mavrix.one>',NULL,'2025-12-09 19:29:12'),
(977,802,'to','Jordan Wroblewski <jordan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:29:12'),
(978,803,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:29:12'),
(979,803,'to','\"Blake',NULL,'2025-12-09 19:29:12'),
(980,803,'to','Elizabeth\" <e.blake@centurymold.com>',NULL,'2025-12-09 19:29:12'),
(981,803,'to','\"Rottier',NULL,'2025-12-09 19:29:12'),
(982,803,'to','Danielle\" <danielle.rottier@centurymold.com>',NULL,'2025-12-09 19:29:12'),
(983,804,'to','Brian Stufflebean <brian@mavrix.one>',NULL,'2025-12-09 19:29:14'),
(984,804,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:29:14'),
(985,805,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:29:14'),
(986,806,'to','Nathan Staron <Nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:29:15'),
(987,807,'to','Nathan Staron <Nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:29:15'),
(988,807,'to','Yanet Lopez <yanetl@bradentonareaedc.com>',NULL,'2025-12-09 19:29:15'),
(989,807,'to','Brian Stufflebean <brian@mavrix.one>',NULL,'2025-12-09 19:29:15'),
(990,807,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:29:15'),
(991,808,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:29:16'),
(992,809,'to','rick@mavrix.one',NULL,'2025-12-09 19:29:16'),
(993,810,'to','\"Nathan A. Staron\" <Nathan@Lithiumbatterycompany.com>',NULL,'2025-12-09 19:29:17'),
(994,810,'to','Leslie Staron <leslie@mavrix.one>',NULL,'2025-12-09 19:29:17'),
(995,810,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:29:17'),
(996,811,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:29:18'),
(997,811,'to','\"dan@mavrix.one\" <dan@mavrix.one>',NULL,'2025-12-09 19:29:18'),
(998,812,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:29:20'),
(999,813,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:29:20'),
(1000,813,'to','\"Blake',NULL,'2025-12-09 19:29:20'),
(1001,813,'to','Elizabeth\" <e.blake@centurymold.com>',NULL,'2025-12-09 19:29:20'),
(1002,813,'to','\"Rottier',NULL,'2025-12-09 19:29:20'),
(1003,813,'to','Danielle\" <danielle.rottier@centurymold.com>',NULL,'2025-12-09 19:29:20'),
(1004,814,'to','Mavrix One <rick@mavrix.one>',NULL,'2025-12-09 19:29:21'),
(1005,815,'to','Elizabeth Cordes <elizabethc@bradentonareaedc.com>',NULL,'2025-12-09 19:29:21'),
(1006,816,'to','rick@mavrix.one',NULL,'2025-12-09 19:29:21'),
(1007,817,'to','Tony Aponte <tony@mavrix.one>',NULL,'2025-12-09 19:29:23'),
(1008,817,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:29:23'),
(1009,818,'to','Brian Stufflebean <brian@mavrix.one>',NULL,'2025-12-09 19:29:23'),
(1010,818,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:29:23'),
(1011,819,'to','James Trevey <jtrevey@forgenano.com>',NULL,'2025-12-09 19:29:24'),
(1012,820,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:29:24'),
(1013,821,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:29:24'),
(1014,821,'to','\"Blake',NULL,'2025-12-09 19:29:24'),
(1015,821,'to','Elizabeth\" <e.blake@centurymold.com>',NULL,'2025-12-09 19:29:24'),
(1016,821,'to','\"Rottier',NULL,'2025-12-09 19:29:24'),
(1017,821,'to','Danielle\" <danielle.rottier@centurymold.com>',NULL,'2025-12-09 19:29:24'),
(1018,823,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:29:25'),
(1019,824,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:29:26'),
(1020,825,'to','Brian@mavrix.one',NULL,'2025-12-09 19:29:26'),
(1021,825,'to','rick@mavrix.one',NULL,'2025-12-09 19:29:26'),
(1022,826,'to','Rick@mavrix.one',NULL,'2025-12-09 19:29:27'),
(1023,827,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:29:27'),
(1024,828,'to','kushan@prodexlabs.com',NULL,'2025-12-09 19:29:27'),
(1025,828,'to','Rick@mavrix.one',NULL,'2025-12-09 19:29:27'),
(1026,829,'to','Rick@mavrix.one',NULL,'2025-12-09 19:29:27'),
(1027,830,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:29:28'),
(1028,831,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:29:28'),
(1029,832,'to','James Trevey <jtrevey@forgenano.com>',NULL,'2025-12-09 19:29:28'),
(1030,833,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:29:29'),
(1031,834,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:29:29'),
(1032,835,'to','rick@mavrix.one',NULL,'2025-12-09 19:29:29'),
(1033,836,'to','\"Rick Mislan',NULL,'2025-12-09 19:29:30'),
(1034,836,'to','PhD\" <rick@mavrix.one>',NULL,'2025-12-09 19:29:30'),
(1035,836,'to','Rob Cranston <rcranston@canallc.com>',NULL,'2025-12-09 19:29:30'),
(1036,836,'to','Chris Cichy <ccichy@canallc.com>',NULL,'2025-12-09 19:29:30'),
(1037,837,'to','Jarrett Brownfield <jarrett@lithiumbatterycompany.com>',NULL,'2025-12-09 19:29:30'),
(1038,837,'to','\"Nathan A. Staron\" <Nathan@Lithiumbatterycompany.com>',NULL,'2025-12-09 19:29:30'),
(1039,837,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:29:30'),
(1040,838,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:29:30'),
(1041,839,'to','rick@mavrix.one',NULL,'2025-12-09 19:29:31'),
(1042,840,'to','rick@mavrix.one',NULL,'2025-12-09 19:29:32'),
(1043,841,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:29:32'),
(1044,842,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:29:32'),
(1045,843,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:29:33'),
(1046,844,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:29:33'),
(1047,845,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:29:33'),
(1048,846,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:29:34'),
(1049,847,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:29:34'),
(1050,848,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:29:34'),
(1051,849,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:29:34'),
(1052,850,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:29:35'),
(1053,851,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:29:35'),
(1054,852,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:29:35'),
(1055,853,'to','Regina Rabitaille <regina.rabitaille@nelsonmullins.com>',NULL,'2025-12-09 19:29:36'),
(1056,853,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:29:36'),
(1057,854,'to','rick@mavrix.one',NULL,'2025-12-09 19:29:36'),
(1058,855,'to','rick@mavrix.one',NULL,'2025-12-09 19:29:37'),
(1059,856,'to','James Trevey <jtrevey@forgenano.com>',NULL,'2025-12-09 19:29:37'),
(1060,857,'to','Jordan Wroblewski <jordan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:29:38'),
(1061,858,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:29:38'),
(1062,859,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:29:38'),
(1063,859,'to','Brian Stufflebean <brian@mavrix.one>',NULL,'2025-12-09 19:29:38'),
(1064,860,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:29:39'),
(1065,861,'to','Chris Perez <Chris.Perez@nelsonmullins.com>',NULL,'2025-12-09 19:29:39'),
(1066,861,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:29:39'),
(1067,862,'to','Chris Perez <Chris.Perez@nelsonmullins.com>',NULL,'2025-12-09 19:29:39'),
(1068,862,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:29:39'),
(1069,863,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:29:40'),
(1070,864,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:29:40'),
(1071,865,'to','Brian Stufflebean <brian@mavrix.one>',NULL,'2025-12-09 19:29:54'),
(1072,865,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:29:54'),
(1073,866,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:29:54'),
(1074,867,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:29:55'),
(1075,868,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:29:55'),
(1076,869,'to','\"Brian C. Stufflebean\" <brian@mavrix.one>',NULL,'2025-12-09 19:29:55'),
(1077,870,'to','Jordan Wroblewski <jordan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:29:55'),
(1078,870,'to','Will McKenna <WMcKenna@forgenano.com>',NULL,'2025-12-09 19:29:55'),
(1079,871,'to','James Trevey <jtrevey@forgenano.com>',NULL,'2025-12-09 19:29:56'),
(1080,872,'to','Jordan Wroblewski <jordan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:29:56'),
(1081,873,'to','rick@mavrix.one',NULL,'2025-12-09 19:29:56'),
(1082,873,'to','elias@mavrix.one',NULL,'2025-12-09 19:29:56'),
(1083,873,'to','Nathan Staron <nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:29:57'),
(1084,873,'to','wmckenna@forgenano.com',NULL,'2025-12-09 19:29:57'),
(1085,873,'to','jtrevey@forgenano.com',NULL,'2025-12-09 19:29:57'),
(1086,873,'to','brian@mavrix.one',NULL,'2025-12-09 19:29:57'),
(1087,873,'to','dansheridanmusic@gmail.com',NULL,'2025-12-09 19:29:57'),
(1088,873,'to','lithiumbatteryco@pipedrivemail.com',NULL,'2025-12-09 19:29:57'),
(1089,874,'to','James Trevey <jtrevey@forgenano.com>',NULL,'2025-12-09 19:29:57'),
(1090,875,'to','rick@mavrix.one',NULL,'2025-12-09 19:29:57'),
(1091,876,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:29:58'),
(1092,877,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:29:58'),
(1093,878,'to','rick@mavrix.one',NULL,'2025-12-09 19:29:58'),
(1094,878,'to','brian@mavrix.one',NULL,'2025-12-09 19:29:58'),
(1095,878,'to','Nathan Staron <nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:29:58'),
(1096,878,'to','jtrevey@pneumaticoat.com',NULL,'2025-12-09 19:29:58'),
(1097,879,'to','Jordan Wroblewski <jordan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:30:06'),
(1098,880,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:30:06'),
(1099,881,'to','Nick Piasecki <piasecki_n@piasecki.com>',NULL,'2025-12-09 19:30:06'),
(1100,881,'to','Romin Dasmalchi <dasmalchi_r@piasecki.com>',NULL,'2025-12-09 19:30:06'),
(1101,881,'to','Brian Cormier <cormier_b@piasecki.com>',NULL,'2025-12-09 19:30:06'),
(1102,881,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:30:06'),
(1103,882,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:30:17'),
(1104,883,'to','Nathan Staron <Nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:30:20'),
(1105,884,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:30:21'),
(1106,885,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:30:22'),
(1107,886,'to','rick@mavrix.one',NULL,'2025-12-09 19:30:23'),
(1108,887,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:30:23'),
(1109,888,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:30:23'),
(1110,889,'to','rick@mavrix.one',NULL,'2025-12-09 19:30:24'),
(1111,890,'to','rick@mavrix.one',NULL,'2025-12-09 19:30:24'),
(1112,890,'to','brian@mavrix.one',NULL,'2025-12-09 19:30:24'),
(1113,890,'to','jtrevey@pneumaticoat.com',NULL,'2025-12-09 19:30:24'),
(1114,891,'to','Brian Stufflebean <brian@mavrix.one>',NULL,'2025-12-09 19:30:24'),
(1115,891,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:30:24'),
(1116,892,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:30:26'),
(1117,893,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:30:27'),
(1118,894,'to','Brian Stufflebean <brian@mavrix.one>',NULL,'2025-12-09 19:30:29'),
(1119,894,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:30:29'),
(1120,894,'to','Nathan Staron <Nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:30:29'),
(1121,895,'to','James Trevey <jtrevey@forgenano.com>',NULL,'2025-12-09 19:30:30'),
(1122,896,'to','rick@mavrix.one',NULL,'2025-12-09 19:30:30'),
(1123,896,'to','brian@mavrix.one',NULL,'2025-12-09 19:30:30'),
(1124,896,'to','\"Douglas',NULL,'2025-12-09 19:30:30'),
(1125,896,'to','Dustin\" <dustin.douglas@sol-ark.com>',NULL,'2025-12-09 19:30:30'),
(1126,896,'to','\"Brennan',NULL,'2025-12-09 19:30:30'),
(1127,896,'to','Tom\" <tom.brennan@sol-ark.com>',NULL,'2025-12-09 19:30:30'),
(1128,896,'to','Nathan Staron <nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:30:30'),
(1129,897,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:30:31'),
(1130,898,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:30:33'),
(1131,899,'to','Jarrett Brownfield <jarrett@lithiumbatterycompany.com>',NULL,'2025-12-09 19:30:33'),
(1132,900,'to','Jordan Wroblewski <jordan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:30:33'),
(1133,901,'to','Jarrett Brownfield <jarrett@lithiumbatterycompany.com>',NULL,'2025-12-09 19:30:34'),
(1134,902,'to','Jordan Wroblewski <jordan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:30:34'),
(1135,903,'to','Jarrett Brownfield <jarrett@lithiumbatterycompany.com>',NULL,'2025-12-09 19:30:34'),
(1136,904,'to','Katherine Aponte <katherine@mavrix.one>',NULL,'2025-12-09 19:30:34'),
(1137,904,'to','\"Nathan A. Staron\" <Nathan@Lithiumbatterycompany.com>',NULL,'2025-12-09 19:30:34'),
(1138,904,'to','Jarrett Brownfield <jarrett@lithiumbatterycompany.com>',NULL,'2025-12-09 19:30:34'),
(1139,904,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:30:34'),
(1140,905,'to','Katherine Aponte <katherine@mavrix.one>',NULL,'2025-12-09 19:30:35'),
(1141,905,'to','\"Nathan A. Staron\" <Nathan@Lithiumbatterycompany.com>',NULL,'2025-12-09 19:30:35'),
(1142,905,'to','Jordan Wroblewski <Jordan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:30:35'),
(1143,905,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:30:35'),
(1144,905,'to','Jarrett Brownfield <jarrett@lithiumbatterycompany.com>',NULL,'2025-12-09 19:30:35'),
(1145,906,'to','rick@mavrix.one',NULL,'2025-12-09 19:30:35'),
(1146,907,'to','Jarrett Brownfield <jarrett@lithiumbatterycompany.com>',NULL,'2025-12-09 19:30:35'),
(1147,908,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:30:36'),
(1148,909,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:30:36'),
(1149,910,'to','rick@mavrix.one',NULL,'2025-12-09 19:30:36'),
(1150,911,'to','rick@mavrix.one',NULL,'2025-12-09 19:30:37'),
(1151,912,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:30:37'),
(1152,913,'to','Brian Stufflebean <brian@mavrix.one>',NULL,'2025-12-09 19:30:38'),
(1153,913,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:30:38'),
(1154,914,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:30:38'),
(1155,915,'to','contact@mavrix.one',NULL,'2025-12-09 19:30:38'),
(1156,916,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:30:39'),
(1157,917,'to','Nathan Staron <Nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:30:39'),
(1158,918,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:30:39'),
(1159,919,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:30:45'),
(1160,920,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:30:45'),
(1161,921,'to','Nathan Staron <Nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:30:45'),
(1162,922,'to','Jordan Wroblewski <jordan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:30:46'),
(1163,923,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:30:46'),
(1164,924,'to','Brian Stufflebean <brian@mavrix.one>',NULL,'2025-12-09 19:30:47'),
(1165,925,'to','Rick@mavrix.one',NULL,'2025-12-09 19:30:48'),
(1166,926,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:30:48'),
(1167,927,'to','James Trevey <jtrevey@forgenano.com>',NULL,'2025-12-09 19:30:48'),
(1168,928,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:30:49'),
(1169,929,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:30:52'),
(1170,930,'to','Brian Stufflebean <brian@mavrix.one>',NULL,'2025-12-09 19:30:53'),
(1171,930,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:30:53'),
(1172,931,'to','Nathan Staron <Nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:30:53'),
(1173,932,'to','Jordan Wroblewski <jordan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:30:53'),
(1174,933,'to','Nathan Staron <Nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:30:54'),
(1175,934,'to','Jordan Wroblewski <jordan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:30:54'),
(1176,935,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:30:55'),
(1177,936,'to','Brian Stufflebean <brian@mavrix.one>',NULL,'2025-12-09 19:30:55'),
(1178,936,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-09 19:30:55'),
(1179,937,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:30:56'),
(1180,938,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:30:56'),
(1181,939,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:31:04'),
(1182,939,'to','Brian Stufflebean <brian@mavrix.one>',NULL,'2025-12-09 19:31:04'),
(1183,940,'to','Brian Stufflebean <brian@mavrix.one>',NULL,'2025-12-09 19:31:06'),
(1184,940,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:31:06'),
(1185,941,'to','\"Nathan A. Staron\" <Nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:31:07'),
(1186,941,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:31:07'),
(1187,942,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:31:07'),
(1188,943,'to','rick@mavrix.one',NULL,'2025-12-09 19:31:08'),
(1189,943,'to','mperkins.brandys@frontiernet.net',NULL,'2025-12-09 19:31:08'),
(1190,943,'to','brandys@frontiernet.net',NULL,'2025-12-09 19:31:08'),
(1191,944,'to','Jordan Wroblewski <jordan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:31:08'),
(1192,945,'to','James Trevey <jtrevey@forgenano.com>',NULL,'2025-12-09 19:31:08'),
(1193,946,'to','rick@mavrix.one',NULL,'2025-12-09 19:31:09'),
(1194,947,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:31:09'),
(1195,948,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:31:09'),
(1196,949,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:31:10'),
(1197,950,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:31:10'),
(1198,951,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:31:10'),
(1199,952,'to','Nathan Staron <Nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:31:11'),
(1200,952,'to','Brian Stufflebean <brian@mavrix.one>',NULL,'2025-12-09 19:31:11'),
(1201,952,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:31:11'),
(1202,952,'to','Jarrett Brownfield <jarrett@lithiumbatterycompany.com>',NULL,'2025-12-09 19:31:11'),
(1203,953,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:31:11'),
(1204,954,'to','rick@mavrix.one',NULL,'2025-12-09 19:31:11'),
(1205,955,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:31:13'),
(1206,955,'to','Brian Stufflebean <brian@mavrix.one>',NULL,'2025-12-09 19:31:13'),
(1207,955,'to','Nathan Staron <nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:31:13'),
(1208,955,'to','Jordan Wroblewski <jordan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:31:13'),
(1209,956,'to','Tony Aponte <tony@mavrix.one>',NULL,'2025-12-09 19:31:14'),
(1210,956,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:31:14'),
(1211,957,'to','Nathan Staron <Nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:31:19'),
(1212,957,'to','Brian Stufflebean <brian@mavrix.one>',NULL,'2025-12-09 19:31:19'),
(1213,957,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:31:19'),
(1214,957,'to','Jarrett Brownfield <jarrett@lithiumbatterycompany.com>',NULL,'2025-12-09 19:31:19'),
(1215,957,'to','tony@mavrix.one',NULL,'2025-12-09 19:31:19'),
(1216,958,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:31:20'),
(1217,959,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:31:20'),
(1218,960,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:31:20'),
(1219,961,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:31:21'),
(1220,962,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:31:21'),
(1221,963,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:31:22'),
(1222,964,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:31:22'),
(1223,965,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:31:25'),
(1224,966,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:31:27'),
(1225,967,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:31:27'),
(1226,968,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:31:27'),
(1227,969,'to','rick@mavrix.one',NULL,'2025-12-09 19:31:28'),
(1228,970,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:31:29'),
(1229,970,'to','Brian <brian@mavrix.one>',NULL,'2025-12-09 19:31:29'),
(1230,970,'to','Nathan <nathan@mavrix.one>',NULL,'2025-12-09 19:31:29'),
(1231,971,'to','Nathan Staron <Nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:31:30'),
(1232,971,'to','Brian Stufflebean <brian@mavrix.one>',NULL,'2025-12-09 19:31:30'),
(1233,971,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:31:30'),
(1234,971,'to','Jarrett Brownfield <jarrett@lithiumbatterycompany.com>',NULL,'2025-12-09 19:31:30'),
(1235,971,'to','tony@mavrix.one',NULL,'2025-12-09 19:31:30'),
(1236,972,'to','Brian Stufflebean <brian@mavrix.one>',NULL,'2025-12-09 19:31:33'),
(1237,972,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:31:33'),
(1238,973,'to','Brian Stufflebean <brian@mavrix.one>',NULL,'2025-12-09 19:31:33'),
(1239,973,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:31:33'),
(1240,973,'to','Nathan Staron <Nathan@lithiumbatterycompany.com>',NULL,'2025-12-09 19:31:33'),
(1241,973,'to','Jarrett Brownfield <jarrett@lithiumbatterycompany.com>',NULL,'2025-12-09 19:31:33'),
(1242,974,'to','tony@mavrix.one',NULL,'2025-12-09 19:31:34'),
(1243,974,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:31:34'),
(1244,975,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:31:34'),
(1245,976,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-09 19:31:34'),
(1246,976,'to','\"Nathan A. Staron\" <Nathan@Lithiumbatterycompany.com>',NULL,'2025-12-09 19:31:34'),
(1247,978,'to','Rick@mavrix.one',NULL,'2025-12-09 19:31:49'),
(1248,979,'to','Mavrix One <rick@mavrix.one>',NULL,'2025-12-09 19:31:50'),
(1249,980,'to','Rick <rick@mavrix.one>',NULL,'2025-12-09 19:31:50'),
(1250,981,'to','Mavrix One <rick@mavrix.one>',NULL,'2025-12-09 19:31:50'),
(1251,982,'to','<rick@mavrix.one>',NULL,'2025-12-09 19:31:51'),
(1252,983,'to','rick@mavrix.one',NULL,'2025-12-09 19:31:51'),
(1253,984,'to','\"Richard Mislan\" <rick@mavrix.one>',NULL,'2025-12-09 19:31:51'),
(1254,985,'to','Rick@mavrix.one',NULL,'2025-12-09 19:31:52'),
(1255,989,'to','rick@mavrix.one',NULL,'2025-12-09 20:30:33'),
(1256,998,'to','<rick@mavrix.one>',NULL,'2025-12-10 13:15:33'),
(1257,1005,'to','Tanner Hance <tanner@lithiumbatterycompany.com>',NULL,'2025-12-10 16:18:26'),
(1258,1005,'to','\"rick@mavrix.one\" <rick@mavrix.one>',NULL,'2025-12-10 16:18:26'),
(1259,1011,'to','Rick@mavrix.one',NULL,'2025-12-10 17:30:35'),
(1260,1011,'to','tony@mavrix.one',NULL,'2025-12-10 17:30:35'),
(1261,1027,'to','Nick Powell <nick@lithiumbatterycompany.com>',NULL,'2025-12-12 00:46:10'),
(1262,1028,'to','Rick@mavrix.one',NULL,'2025-12-12 00:46:10'),
(1263,1029,'to','Rick Mislan <rick@mavrix.one>',NULL,'2025-12-12 00:46:23'),
(1264,1030,'to','Larsen@avinc.com',NULL,'2025-12-12 00:46:23'),
(1265,1031,'to','\"Brian C. Stufflebean\" <brian@mavrix.one>',NULL,'2025-12-12 00:46:23'),
(1266,1031,'to','rick@mavrix.one',NULL,'2025-12-12 00:46:23'),
(1267,1032,'to','Jordan Wroblewski <jordan@lithiumbatterycompany.com>',NULL,'2025-12-12 00:46:24'),
(1268,1033,'to','<rick@mavrix.one>',NULL,'2025-12-12 00:46:24'),
(1269,1034,'to','<rick@mavrix.one>',NULL,'2025-12-12 00:46:25'),
(1270,1038,'to','<rick@mavrix.one>',NULL,'2025-12-13 03:46:17'),
(1271,1039,'to','Rick@mavrix.one',NULL,'2025-12-13 03:46:17'),
(1272,1040,'to','Mavrix One <rick@mavrix.one>',NULL,'2025-12-13 03:46:17'),
(1273,1061,'to','Rick@mavrix.one',NULL,'2025-12-13 15:01:10');
/*!40000 ALTER TABLE `email_recipients` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `email_signature_templates`
--

DROP TABLE IF EXISTS `email_signature_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_signature_templates` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `html_content` text NOT NULL,
  `is_default` tinyint(1) DEFAULT 0,
  `is_active` tinyint(1) DEFAULT 1,
  `created_by` int(11) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_is_default` (`is_default`),
  KEY `idx_is_active` (`is_active`),
  KEY `idx_created_by` (`created_by`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_signature_templates`
--

LOCK TABLES `email_signature_templates` WRITE;
/*!40000 ALTER TABLE `email_signature_templates` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `email_signature_templates` VALUES
(1,'Default Mavrix 1 Corporate Signature','Standard Mavrix1  signature with logo and contact information','<table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n    <tr>\r\n        <td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n            <table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n                <tr>\r\n                    <!-- LEFT COLUMN -->\r\n                    <td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n                        <div style=\"margin-bottom: 10px;\">\r\n                            <strong style=\"font-size: 14px; color: #0066cc;\">{user_name}</strong><br>\r\n                            <span style=\"font-size: 12px; color: #666;\">{position_title}</span>\r\n                        </div>\r\n\r\n                        <div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n                            <div><a href=\"mailto:{user_email}\" style=\"color: #0066cc; text-decoration: none;\">{user_email}</a></div>\r\n                            <div>Mobile: {user_phone}</div>\r\n                            <div>Office: {company_phone}</div>\r\n                            <div><a href=\"{company_website}\" style=\"color: #0066cc; text-decoration: none;\">{company_website}</a></div>\r\n                        </div>\r\n                    </td>\r\n\r\n                    <!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n                    <td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\">\r\n                        <img src=\"{company_logo}\" alt=\"{company_name}\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n\r\n                        <div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">\r\n                            {company_address_line1}<br>\r\n                            {company_city}, {company_state} {company_zip}\r\n                        </div>\r\n                    </td>\r\n                </tr>\r\n            </table>\r\n        </td>\r\n    </tr>\r\n\r\n    <tr>\r\n        <td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n            <div style=\"font-size: 9px; color: #888; line-height: 1.4;\">\r\n                <strong>CONFIDENTIALITY NOTICE:</strong><br>\r\n                <em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br>\r\n                <em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br>\r\n                <em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br>\r\n                <em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em>\r\n            </div>\r\n        </td>\r\n    </tr>\r\n</table>',1,1,1,'2025-11-26 17:39:39','2025-11-27 22:45:45');
/*!40000 ALTER TABLE `email_signature_templates` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `email_templates`
--

DROP TABLE IF EXISTS `email_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_templates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL COMMENT 'Template name/identifier',
  `slug` varchar(100) NOT NULL COMMENT 'Unique slug for programmatic access',
  `type` enum('quote','nda','notification','system') DEFAULT 'notification' COMMENT 'Template category',
  `subject` varchar(255) NOT NULL COMMENT 'Email subject line with variables',
  `body` text NOT NULL COMMENT 'Email body HTML with variables',
  `body_html` longtext DEFAULT NULL COMMENT 'HTML version of email body',
  `body_text` longtext DEFAULT NULL COMMENT 'Plain text version',
  `available_variables` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'List of available template variables' CHECK (json_valid(`available_variables`)),
  `sample_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Sample data for preview' CHECK (json_valid(`sample_data`)),
  `from_email` varchar(255) DEFAULT NULL COMMENT 'Override default from email',
  `from_name` varchar(255) DEFAULT NULL COMMENT 'Override default from name',
  `cc` varchar(500) DEFAULT NULL COMMENT 'Default CC addresses',
  `bcc` varchar(500) DEFAULT NULL COMMENT 'Default BCC addresses',
  `reply_to` varchar(255) DEFAULT NULL COMMENT 'Reply-to address',
  `description` text DEFAULT NULL COMMENT 'Template purpose and usage notes',
  `category` varchar(50) DEFAULT NULL COMMENT 'Category (invoices, quotes, hr, system, etc.)',
  `is_active` tinyint(1) DEFAULT 1 COMMENT 'Is template active',
  `is_system` tinyint(1) DEFAULT 0 COMMENT 'System template (cannot be deleted)',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `slug` (`slug`),
  KEY `idx_slug` (`slug`),
  KEY `idx_type` (`type`),
  KEY `idx_active` (`is_active`),
  KEY `idx_category` (`category`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_templates`
--

LOCK TABLES `email_templates` WRITE;
/*!40000 ALTER TABLE `email_templates` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `email_templates` VALUES
(1,'Quote Approval','quote_approval','quote','Quote {{quote_number}} - Please Review and Sign','<h2>Hello {{recipient_name}},</h2>\n<p>Please review and sign the attached quote:</p>\n<table style=\"width: 100%; margin: 20px 0;\">\n    <tr>\n        <td><strong>Quote Number:</strong></td>\n        <td>{{quote_number}}</td>\n    </tr>\n    <tr>\n        <td><strong>Total Amount:</strong></td>\n        <td>{{total_amount}}</td>\n    </tr>\n    {{#expiry_date}}\n    <tr>\n        <td><strong>Valid Until:</strong></td>\n        <td>{{expiry_date}}</td>\n    </tr>\n    {{/expiry_date}}\n</table>\n<div style=\"text-align: center; margin: 30px 0;\">\n    <a href=\"{{quote_link}}\" class=\"button\" style=\"display: inline-block; padding: 12px 30px; background: #3498db; color: white; text-decoration: none; border-radius: 5px;\">Review & Sign Quote</a>\n</div>\n<p>If you have any questions, please contact {{sender_name}}.</p>\n<p>Best regards,<br>{{company_name}}</p>','<h2>Hello {{recipient_name}},</h2>\n<p>Please review and sign the attached quote:</p>\n<table style=\"width: 100%; margin: 20px 0;\">\n    <tr>\n        <td><strong>Quote Number:</strong></td>\n        <td>{{quote_number}}</td>\n    </tr>\n    <tr>\n        <td><strong>Total Amount:</strong></td>\n        <td>{{total_amount}}</td>\n    </tr>\n    {{#expiry_date}}\n    <tr>\n        <td><strong>Valid Until:</strong></td>\n        <td>{{expiry_date}}</td>\n    </tr>\n    {{/expiry_date}}\n</table>\n<div style=\"text-align: center; margin: 30px 0;\">\n    <a href=\"{{quote_link}}\" class=\"button\" style=\"display: inline-block; padding: 12px 30px; background: #3498db; color: white; text-decoration: none; border-radius: 5px;\">Review & Sign Quote</a>\n</div>\n<p>If you have any questions, please contact {{sender_name}}.</p>\n<p>Best regards,<br>{{company_name}}</p>',NULL,'[\"{{recipient_name}}\", \"{{quote_number}}\", \"{{quote_link}}\", \"{{total_amount}}\", \"{{sender_name}}\", \"{{expiry_date}}\", \"{{company_name}}\"]',NULL,NULL,NULL,NULL,NULL,NULL,'Template used when sending quotes for customer approval and signature',NULL,1,1,'2025-11-16 21:17:31','2025-11-26 13:59:16',NULL,NULL),
(2,'NDA Signature Request','nda_signature','nda','Non-Disclosure Agreement {{nda_number}} - Signature Required','<h2>Hello {{recipient_name}},</h2>\n<p>We are excited to move forward with <strong>{{opportunity_name}}</strong>.</p>\n<p>Before we proceed, we require your signature on our Non-Disclosure Agreement:</p>\n<table style=\"width: 100%; margin: 20px 0;\">\n    <tr>\n        <td><strong>NDA Number:</strong></td>\n        <td>{{nda_number}}</td>\n    </tr>\n    <tr>\n        <td><strong>Related to:</strong></td>\n        <td>{{opportunity_name}}</td>\n    </tr>\n    {{#expiry_date}}\n    <tr>\n        <td><strong>Please sign by:</strong></td>\n        <td>{{expiry_date}}</td>\n    </tr>\n    {{/expiry_date}}\n</table>\n<div style=\"text-align: center; margin: 30px 0;\">\n    <a href=\"{{nda_link}}\" class=\"button\" style=\"display: inline-block; padding: 12px 30px; background: #e74c3c; color: white; text-decoration: none; border-radius: 5px;\">Review & Sign NDA</a>\n</div>\n<p><em>This is a confidential legal document. Please review it carefully before signing.</em></p>\n<p>If you have any questions, please contact {{sender_name}}.</p>\n<p>Best regards,<br>{{company_name}}</p>','<h2>Hello {{recipient_name}},</h2>\n<p>We are excited to move forward with <strong>{{opportunity_name}}</strong>.</p>\n<p>Before we proceed, we require your signature on our Non-Disclosure Agreement:</p>\n<table style=\"width: 100%; margin: 20px 0;\">\n    <tr>\n        <td><strong>NDA Number:</strong></td>\n        <td>{{nda_number}}</td>\n    </tr>\n    <tr>\n        <td><strong>Related to:</strong></td>\n        <td>{{opportunity_name}}</td>\n    </tr>\n    {{#expiry_date}}\n    <tr>\n        <td><strong>Please sign by:</strong></td>\n        <td>{{expiry_date}}</td>\n    </tr>\n    {{/expiry_date}}\n</table>\n<div style=\"text-align: center; margin: 30px 0;\">\n    <a href=\"{{nda_link}}\" class=\"button\" style=\"display: inline-block; padding: 12px 30px; background: #e74c3c; color: white; text-decoration: none; border-radius: 5px;\">Review & Sign NDA</a>\n</div>\n<p><em>This is a confidential legal document. Please review it carefully before signing.</em></p>\n<p>If you have any questions, please contact {{sender_name}}.</p>\n<p>Best regards,<br>{{company_name}}</p>',NULL,'[\"{{recipient_name}}\", \"{{nda_number}}\", \"{{nda_link}}\", \"{{opportunity_name}}\", \"{{sender_name}}\", \"{{expiry_date}}\", \"{{company_name}}\"]',NULL,NULL,NULL,NULL,NULL,NULL,'Template used when sending NDAs for signature',NULL,1,1,'2025-11-16 21:17:31','2025-11-26 13:59:16',NULL,NULL),
(3,'OTP Verification','otp','system','Your verification code for {{company_name}}','<h2>Hello {{name}},</h2>\n<p>Your verification code is:</p>\n<div style=\"background: #fff; border: 2px dashed #3498db; padding: 20px; text-align: center; font-size: 32px; font-weight: bold; letter-spacing: 5px; margin: 20px 0;\">{{otp_code}}</div>\n<p>This code will expire in <strong>{{expiry_minutes}} minutes</strong>.</p>\n<p style=\"color: #e74c3c; font-weight: bold;\">Do not share this code with anyone.</p>','<h2>Hello {{name}},</h2>\n<p>Your verification code is:</p>\n<div style=\"background: #fff; border: 2px dashed #3498db; padding: 20px; text-align: center; font-size: 32px; font-weight: bold; letter-spacing: 5px; margin: 20px 0;\">{{otp_code}}</div>\n<p>This code will expire in <strong>{{expiry_minutes}} minutes</strong>.</p>\n<p style=\"color: #e74c3c; font-weight: bold;\">Do not share this code with anyone.</p>',NULL,'[\"{{name}}\", \"{{otp_code}}\", \"{{expiry_minutes}}\", \"{{company_name}}\"]',NULL,NULL,NULL,NULL,NULL,NULL,'Template for OTP/MFA verification codes',NULL,1,1,'2025-11-16 21:17:31','2025-11-26 13:59:16',NULL,NULL),
(4,'Password Reset','password_reset','system','Reset your password for {{company_name}}','<h2>Hello {{name}},</h2>\n<p>We received a request to reset your password. Click the button below to reset it:</p>\n<div style=\"text-align: center; margin: 30px 0;\">\n    <a href=\"{{reset_link}}\" class=\"button\" style=\"display: inline-block; padding: 12px 30px; background: #3498db; color: white; text-decoration: none; border-radius: 5px;\">Reset Password</a>\n</div>\n<p>Or copy and paste this link into your browser:</p>\n<p style=\"word-break: break-all; color: #3498db;\">{{reset_link}}</p>\n<p>This link will expire in <strong>{{expiry_minutes}} minutes</strong>.</p>\n<p style=\"color: #e74c3c; font-weight: bold;\">If you didn\'t request this, please ignore this email or contact support.</p>','<h2>Hello {{name}},</h2>\n<p>We received a request to reset your password. Click the button below to reset it:</p>\n<div style=\"text-align: center; margin: 30px 0;\">\n    <a href=\"{{reset_link}}\" class=\"button\" style=\"display: inline-block; padding: 12px 30px; background: #3498db; color: white; text-decoration: none; border-radius: 5px;\">Reset Password</a>\n</div>\n<p>Or copy and paste this link into your browser:</p>\n<p style=\"word-break: break-all; color: #3498db;\">{{reset_link}}</p>\n<p>This link will expire in <strong>{{expiry_minutes}} minutes</strong>.</p>\n<p style=\"color: #e74c3c; font-weight: bold;\">If you didn\'t request this, please ignore this email or contact support.</p>',NULL,'[\"{{name}}\", \"{{reset_link}}\", \"{{expiry_minutes}}\", \"{{company_name}}\"]',NULL,NULL,NULL,NULL,NULL,NULL,'Template for password reset emails',NULL,1,1,'2025-11-16 21:17:31','2025-11-26 13:59:16',NULL,NULL),
(5,'NDA Fully Executed - Customer','nda_fully_executed','nda','NDA {{nda_number}} Fully Executed - Ready to Proceed','<p>Dear {{recipient_name}},</p>\n\n<p>Great news! The Non-Disclosure Agreement <strong>{{nda_number}}</strong> for <strong>{{opportunity_name}}</strong> has been fully executed by all parties.</p>\n\n<p>Both you and our company representative have signed the agreement, and we are now ready to proceed with the next steps.</p>\n\n<p style=\"margin: 20px 0;\">\n    <a href=\"{{nda_link}}\" class=\"button\" style=\"display: inline-block; padding: 12px 30px; background: #3498db; color: white !important; text-decoration: none; border-radius: 5px;\">\n        View Fully Executed NDA\n    </a>\n</p>\n\n<p>You can download a copy of the fully executed NDA from the link above for your records.</p>\n\n<p>If you have any questions, please don\'t hesitate to contact us.</p>\n\n<p>Best regards,<br>\n{{sender_name}}<br>\n{{company_name}}</p>','<p>Dear {{recipient_name}},</p>\n\n<p>Great news! The Non-Disclosure Agreement <strong>{{nda_number}}</strong> for <strong>{{opportunity_name}}</strong> has been fully executed by all parties.</p>\n\n<p>Both you and our company representative have signed the agreement, and we are now ready to proceed with the next steps.</p>\n\n<p style=\"margin: 20px 0;\">\n    <a href=\"{{nda_link}}\" class=\"button\" style=\"display: inline-block; padding: 12px 30px; background: #3498db; color: white !important; text-decoration: none; border-radius: 5px;\">\n        View Fully Executed NDA\n    </a>\n</p>\n\n<p>You can download a copy of the fully executed NDA from the link above for your records.</p>\n\n<p>If you have any questions, please don\'t hesitate to contact us.</p>\n\n<p>Best regards,<br>\n{{sender_name}}<br>\n{{company_name}}</p>',NULL,'[\"{{recipient_name}}\", \"{{nda_number}}\", \"{{nda_link}}\", \"{{opportunity_name}}\", \"{{sender_name}}\", \"{{company_name}}\"]',NULL,NULL,NULL,NULL,NULL,NULL,'Sent to customer when NDA is fully executed by both parties',NULL,1,1,'2025-11-17 11:16:18','2025-11-26 13:59:16',1,NULL),
(6,'NDA Fully Executed - Company Copy','nda_fully_executed_company','nda','NDA {{nda_number}} Fully Executed - {{customer_name}}','<p>Dear {{recipient_name}},</p>\n\n<p>You have successfully counter-signed the Non-Disclosure Agreement <strong>{{nda_number}}</strong> with <strong>{{customer_name}}</strong> for <strong>{{opportunity_name}}</strong>.</p>\n\n<p>The NDA is now fully executed by both parties, and a copy has been sent to the customer.</p>\n\n<p style=\"margin: 20px 0;\">\n    <a href=\"{{nda_link}}\" class=\"button\" style=\"display: inline-block; padding: 12px 30px; background: #3498db; color: white !important; text-decoration: none; border-radius: 5px;\">\n        View Fully Executed NDA\n    </a>\n</p>\n\n<p>You can download a copy of the fully executed NDA from the link above for your records.</p>\n\n<p>Best regards,<br>\n{{company_name}} System</p>','<p>Dear {{recipient_name}},</p>\n\n<p>You have successfully counter-signed the Non-Disclosure Agreement <strong>{{nda_number}}</strong> with <strong>{{customer_name}}</strong> for <strong>{{opportunity_name}}</strong>.</p>\n\n<p>The NDA is now fully executed by both parties, and a copy has been sent to the customer.</p>\n\n<p style=\"margin: 20px 0;\">\n    <a href=\"{{nda_link}}\" class=\"button\" style=\"display: inline-block; padding: 12px 30px; background: #3498db; color: white !important; text-decoration: none; border-radius: 5px;\">\n        View Fully Executed NDA\n    </a>\n</p>\n\n<p>You can download a copy of the fully executed NDA from the link above for your records.</p>\n\n<p>Best regards,<br>\n{{company_name}} System</p>',NULL,'[\"{{recipient_name}}\", \"{{nda_number}}\", \"{{nda_link}}\", \"{{customer_name}}\", \"{{opportunity_name}}\", \"{{company_name}}\"]',NULL,NULL,NULL,NULL,NULL,NULL,'Sent to company representative who counter-signed the NDA',NULL,1,1,'2025-11-17 11:16:18','2025-11-26 13:59:16',1,NULL);
/*!40000 ALTER TABLE `email_templates` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `email_tracking`
--

DROP TABLE IF EXISTS `email_tracking`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_tracking` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `email_id` int(10) unsigned NOT NULL,
  `event_type` enum('sent','delivered','opened','clicked','bounced','spam') NOT NULL,
  `event_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`event_data`)),
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `occurred_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_email_event` (`email_id`,`event_type`),
  CONSTRAINT `email_tracking_ibfk_1` FOREIGN KEY (`email_id`) REFERENCES `emails` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_tracking`
--

LOCK TABLES `email_tracking` WRITE;
/*!40000 ALTER TABLE `email_tracking` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `email_tracking` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `emails`
--

DROP TABLE IF EXISTS `emails`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `emails` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `message_id` varchar(255) DEFAULT NULL,
  `thread_id` varchar(255) DEFAULT NULL,
  `in_reply_to` varchar(255) DEFAULT NULL,
  `subject` varchar(500) DEFAULT NULL,
  `from_email` varchar(255) NOT NULL,
  `from_name` varchar(255) DEFAULT NULL,
  `body_html` longtext DEFAULT NULL,
  `body_plain` longtext DEFAULT NULL,
  `is_read` tinyint(1) DEFAULT 0,
  `is_starred` tinyint(1) DEFAULT 0,
  `is_automated` tinyint(1) DEFAULT 0,
  `is_important` tinyint(1) DEFAULT 0,
  `is_draft` tinyint(1) DEFAULT 0,
  `size_bytes` int(10) unsigned DEFAULT 0,
  `sent_at` timestamp NULL DEFAULT NULL,
  `received_at` timestamp NULL DEFAULT current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `context_type` varchar(50) DEFAULT NULL COMMENT 'Type of entity (employee, customer, opportunity, application, etc.)',
  `context_id` int(11) DEFAULT NULL COMMENT 'ID of the related entity',
  `related_module` varchar(50) DEFAULT NULL COMMENT 'Module name for organizational purposes',
  PRIMARY KEY (`id`),
  UNIQUE KEY `message_id` (`message_id`),
  KEY `idx_user_read` (`user_id`,`is_read`),
  KEY `idx_user_starred` (`user_id`,`is_starred`),
  KEY `idx_thread` (`thread_id`),
  KEY `idx_sent_at` (`sent_at`),
  KEY `idx_context` (`context_type`,`context_id`),
  KEY `idx_related_module` (`related_module`),
  KEY `idx_is_automated` (`is_automated`),
  FULLTEXT KEY `idx_search` (`subject`,`body_plain`),
  CONSTRAINT `emails_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1065 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `emails`
--

LOCK TABLES `emails` WRITE;
/*!40000 ALTER TABLE `emails` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `emails` VALUES
(49,1,NULL,NULL,NULL,'Non-Disclosure Agreement NDA-2025-00002 - Signature Required','info@mavrix.one','Mavrix1','\n        <!DOCTYPE html>\n        <html>\n        <head>\n            <meta charset=\'UTF-8\'>\n            <style>\n                body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }\n                .container { max-width: 600px; margin: 0 auto; padding: 20px; }\n                .header { background: white; padding: 20px; border-bottom: 2px solid #dee2e6; }\n                .header table { width: 100%; }\n                .header td { vertical-align: top; padding: 0; }\n                .content { background: #f9f9f9; padding: 30px; border: 1px solid #ddd; }\n                .code-box { background: #fff; border: 2px dashed #3498db; padding: 20px; \n                           text-align: center; font-size: 32px; font-weight: bold; \n                           letter-spacing: 5px; margin: 20px 0; }\n                .backup-code { font-family: monospace; font-size: 16px; padding: 5px; }\n                .button { display: inline-block; padding: 12px 30px; background: #3498db; \n                         color: white; text-decoration: none; border-radius: 5px; margin: 20px 0; }\n                .footer { text-align: center; padding: 20px; color: #777; font-size: 12px; }\n                .warning { color: #e74c3c; font-weight: bold; }\n            </style>\n        </head>\n        <body>\n            <div class=\'container\'>\n                <div class=\'header\'>\n                    <table>\n                        <tr>\n                            <td style=\'width: 50%;\'><img src=\"cid:company_logo_header\" alt=\"Mavrix1\" style=\"max-width: 300px; height: auto; display: block;\"></td>\n                            <td style=\'width: 50%; text-align: right;\'><div style=\'font-size: 10pt;\'>3900 W. Coachman Ave. , Tampa, FL 33611</div><div style=\'font-size: 10pt;\'>906-555-4567</div><div style=\'font-size: 10pt;\'>info@mavrix.one</div></td>\n                        </tr>\n                    </table>\n                </div>\n                <div class=\'content\'>\n        \n                    <h2>Hello AeroVironment,</h2>\n                    <p>We are working together on the opportunity: <strong>Battery Pack</strong>.</p>\n                    <p>Before we proceed, we require a signed Non-Disclosure Agreement (NDA).</p>\n                    <div style=\'background: #fff; padding: 20px; border: 1px solid #ddd; margin: 20px 0; border-radius: 5px;\'>\n                        <p style=\'margin: 0 0 10px 0;\'><strong>NDA Number:</strong> NDA-2025-00002</p>\n                        <p style=\'margin: 0 0 10px 0;\'><strong>Opportunity:</strong> Battery Pack</p>\n                        <p style=\'margin: 0;\'><strong>Signature Link Valid Until:</strong> March 2, 2026</p>\n                    </div>\n                    <p>Please click the button below to review and sign the NDA:</p>\n                    <div style=\'text-align: center;\'>\n                        <a href=\'http://localhost:8080/ndas/sign/1d7a74a4fd432b14c42f21b35e79395aa642fd177715a8959214976055305427\' class=\'button\'>Review &amp; Sign NDA</a>\n                    </div>\n                    <p>Or copy and paste this link into your browser:</p>\n                    <p style=\'word-break: break-all; color: #3498db;\'>http://localhost:8080/ndas/sign/1d7a74a4fd432b14c42f21b35e79395aa642fd177715a8959214976055305427</p>\n                    <p class=\'warning\'>This is a legally binding agreement. Please review it carefully before signing.</p>\n                    <p>If you have any questions, please contact us.</p>\n                    <p>Best regards,<br>Admin User</p>\n                <div style=\'margin-top: 30px; padding-top: 20px; border-top: 1px solid #ddd;\'><table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n    <tr>\r\n        <td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n            <table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n                <tr>\r\n                    <!-- LEFT COLUMN -->\r\n                    <td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n                        <div style=\"margin-bottom: 10px;\">\r\n                            <strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br>\r\n                            <span style=\"font-size: 12px; color: #666;\">Administrator</span>\r\n                        </div>\r\n\r\n                        <div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n                            <div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n                            <div>Mobile: 906-123-4567</div>\r\n                            <div>Office: 906-555-4567</div>\r\n                            <div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n                        </div>\r\n                    </td>\r\n\r\n                    <!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n                    <td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\">\r\n                        <img src=\"cid:company_logo_signature\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n\r\n                        <div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">\r\n                            3900 W. Coachman Ave.<br>\r\n                            Tampa, FL 33611\r\n                        </div>\r\n                    </td>\r\n                </tr>\r\n            </table>\r\n        </td>\r\n    </tr>\r\n\r\n    <tr>\r\n        <td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n            <div style=\"font-size: 9px; color: #888; line-height: 1.4;\">\r\n                <strong>CONFIDENTIALITY NOTICE:</strong><br>\r\n                <em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br>\r\n                <em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br>\r\n                <em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br>\r\n                <em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em>\r\n            </div>\r\n        </td>\r\n    </tr>\r\n</table></div>\n                </div>\n                <div class=\'footer\'>\n                    <p>This is an automated message from Mavrix1. Please do not reply to this email.</p>\n                    <p>If you did not request this, please contact support immediately.</p>\n                </div>\n            </div>\n        </body>\n        </html>\n        ','\n        \n        \n        \n            \n            \n                body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }\n                .container { max-width: 600px; margin: 0 auto; padding: 20px; }\n                .header { background: white; padding: 20px; border-bottom: 2px solid #dee2e6; }\n                .header table { width: 100%; }\n                .header td { vertical-align: top; padding: 0; }\n                .content { background: #f9f9f9; padding: 30px; border: 1px solid #ddd; }\n                .code-box { background: #fff; border: 2px dashed #3498db; padding: 20px; \n                           text-align: center; font-size: 32px; font-weight: bold; \n                           letter-spacing: 5px; margin: 20px 0; }\n                .backup-code { font-family: monospace; font-size: 16px; padding: 5px; }\n                .button { display: inline-block; padding: 12px 30px; background: #3498db; \n                         color: white; text-decoration: none; border-radius: 5px; margin: 20px 0; }\n                .footer { text-align: center; padding: 20px; color: #777; font-size: 12px; }\n                .warning { color: #e74c3c; font-weight: bold; }\n            \n        \n        \n            \n                \n                    \n                        \n                            \n                            3900 W. Coachman Ave. , Tampa, FL 33611906-555-4567info@mavrix.one\n                        \n                    \n                \n                \n        \n                    Hello AeroVironment,\n                    We are working together on the opportunity: Battery Pack.\n                    Before we proceed, we require a signed Non-Disclosure Agreement (NDA).\n                    \n                        NDA Number: NDA-2025-00002\n                        Opportunity: Battery Pack\n                        Signature Link Valid Until: March 2, 2026\n                    \n                    Please click the button below to review and sign the NDA:\n                    \n                        Review &amp; Sign NDA\n                    \n                    Or copy and paste this link into your browser:\n                    http://localhost:8080/ndas/sign/1d7a74a4fd432b14c42f21b35e79395aa642fd177715a8959214976055305427\n                    This is a legally binding agreement. Please review it carefully before signing.\n                    If you have any questions, please contact us.\n                    Best regards,Admin User\n                \r\n    \r\n        \r\n            \r\n                \r\n                    \r\n                    \r\n                        \r\n                            Admin User\r\n                            Administrator\r\n                        \r\n\r\n                        \r\n                            admin@mavrix.one\r\n                            Mobile: 906-123-4567\r\n                            Office: 906-555-4567\r\n                            https://mavrix1.com\r\n                        \r\n                    \r\n\r\n                    \r\n                    \r\n                        \r\n\r\n                        \r\n                            3900 W. Coachman Ave.\r\n                            Tampa, FL 33611\r\n                        \r\n                    \r\n                \r\n            \r\n        \r\n    \r\n\r\n    \r\n        \r\n            \r\n                CONFIDENTIALITY NOTICE:\r\n                This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.\r\n                This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n                If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n                Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n            \r\n        \r\n    \r\n\n                \n                \n                    This is an automated message from Mavrix1. Please do not reply to this email.\n                    If you did not request this, please contact support immediately.\n                \n            \n        \n        \n        ',1,0,1,0,0,0,'2025-12-02 21:54:07','2025-12-02 21:54:07','2025-12-02 21:54:07','2025-12-02 21:54:07','nda',16,NULL),
(50,1,'<ixAz0NpeUpBFDz1TDpGrsudbLI9hmt4bm5eU94a9Do@scb-lp-273.ad.rit.edu>',NULL,NULL,'Your verification code for Mavrix1','info@mavrix.one','Mavrix1','--b1=_ixAz0NpeUpBFDz1TDpGrsudbLI9hmt4bm5eU94a9Do\r\nContent-Type: text/plain; charset=us-ascii\r\n\r\n\r\n        \r\n        \r\n        \r\n            \r\n            \r\n                body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }\r\n                .container { max-width: 600px; margin: 0 auto; padding: 20px; }\r\n                .header { background: #2c3e50; color: white; padding: 20px; text-align: center; }\r\n                .content { background: #f9f9f9; padding: 30px; border: 1px solid #ddd; }\r\n                .code-box { background: #fff; border: 2px dashed #3498db; padding: 20px; \r\n                           text-align: center; font-size: 32px; font-weight: bold; \r\n                           letter-spacing: 5px; margin: 20px 0; }\r\n                .backup-code { font-family: monospace; font-size: 16px; padding: 5px; }\r\n                .button { display: inline-block; padding: 12px 30px; background: #3498db; \r\n                         color: white; text-decoration: none; border-radius: 5px; margin: 20px 0; }\r\n                .footer { text-align: center; padding: 20px; color: #777; font-size: 12px; }\r\n                .warning { color: #e74c3c; font-weight: bold; }\r\n            \r\n        \r\n        \r\n            \r\n                \r\n                    Mavrix1\r\n                \r\n                \r\n        \r\n                    Hello Test User,\r\n                    Your verification code is:\r\n                    123456\r\n                    This code will expire in 5 minutes.\r\n                    Do not share this code with anyone.\r\n                \r\n                \r\n                \r\n                    This is an automated message from Mavrix1. Please do not reply to this email.\r\n                    If you did not request this, please contact support immediately.\r\n                \r\n            \r\n        \r\n        \r\n        \r\n\r\n--b1=_ixAz0NpeUpBFDz1TDpGrsudbLI9hmt4bm5eU94a9Do\r\nContent-Type: text/html; charset=us-ascii\r\n\r\n\r\n        <!DOCTYPE html>\r\n        <html>\r\n        <head>\r\n            <meta charset=\'UTF-8\'>\r\n            <style>\r\n                body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }\r\n                .container { max-width: 600px; margin: 0 auto; padding: 20px; }\r\n                .header { background: #2c3e50; color: white; padding: 20px; text-align: center; }\r\n                .content { background: #f9f9f9; padding: 30px; border: 1px solid #ddd; }\r\n                .code-box { background: #fff; border: 2px dashed #3498db; padding: 20px; \r\n                           text-align: center; font-size: 32px; font-weight: bold; \r\n                           letter-spacing: 5px; margin: 20px 0; }\r\n                .backup-code { font-family: monospace; font-size: 16px; padding: 5px; }\r\n                .button { display: inline-block; padding: 12px 30px; background: #3498db; \r\n                         color: white; text-decoration: none; border-radius: 5px; margin: 20px 0; }\r\n                .footer { text-align: center; padding: 20px; color: #777; font-size: 12px; }\r\n                .warning { color: #e74c3c; font-weight: bold; }\r\n            </style>\r\n        </head>\r\n        <body>\r\n            <div class=\'container\'>\r\n                <div class=\'header\'>\r\n                    <h1>Mavrix1</h1>\r\n                </div>\r\n                <div class=\'content\'>\r\n        \r\n                    <h2>Hello Test User,</h2>\r\n                    <p>Your verification code is:</p>\r\n                    <div class=\'code-box\'>123456</div>\r\n                    <p>This code will expire in <strong>5 minutes</strong>.</p>\r\n                    <p class=\'warning\'>Do not share this code with anyone.</p>\r\n                \r\n                </div>\r\n                <div class=\'footer\'>\r\n                    <p>This is an automated message from Mavrix1. Please do not reply to this email.</p>\r\n                    <p>If you did not request this, please contact support immediately.</p>\r\n                </div>\r\n            </div>\r\n        </body>\r\n        </html>\r\n        \r\n\r\n\r\n--b1=_ixAz0NpeUpBFDz1TDpGrsudbLI9hmt4bm5eU94a9Do--\r\n\r\n','--b1=_ixAz0NpeUpBFDz1TDpGrsudbLI9hmt4bm5eU94a9Do\r\nContent-Type: text/plain; charset=us-ascii\r\n\r\n\r\n        \r\n        \r\n        \r\n            \r\n            \r\n                body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }\r\n                .container { max-width: 600px; margin: 0 auto; padding: 20px; }\r\n                .header { background: #2c3e50; color: white; padding: 20px; text-align: center; }\r\n                .content { background: #f9f9f9; padding: 30px; border: 1px solid #ddd; }\r\n                .code-box { background: #fff; border: 2px dashed #3498db; padding: 20px; \r\n                           text-align: center; font-size: 32px; font-weight: bold; \r\n                           letter-spacing: 5px; margin: 20px 0; }\r\n                .backup-code { font-family: monospace; font-size: 16px; padding: 5px; }\r\n                .button { display: inline-block; padding: 12px 30px; background: #3498db; \r\n                         color: white; text-decoration: none; border-radius: 5px; margin: 20px 0; }\r\n                .footer { text-align: center; padding: 20px; color: #777; font-size: 12px; }\r\n                .warning { color: #e74c3c; font-weight: bold; }\r\n            \r\n        \r\n        \r\n            \r\n                \r\n                    Mavrix1\r\n                \r\n                \r\n        \r\n                    Hello Test User,\r\n                    Your verification code is:\r\n                    123456\r\n                    This code will expire in 5 minutes.\r\n                    Do not share this code with anyone.\r\n                \r\n                \r\n                \r\n                    This is an automated message from Mavrix1. Please do not reply to this email.\r\n                    If you did not request this, please contact support immediately.\r\n                \r\n            \r\n        \r\n        \r\n        \r\n\r\n--b1=_ixAz0NpeUpBFDz1TDpGrsudbLI9hmt4bm5eU94a9Do\r\nContent-Type: text/html; charset=us-ascii\r\n\r\n\r\n        <!DOCTYPE html>\r\n        <html>\r\n        <head>\r\n            <meta charset=\'UTF-8\'>\r\n            <style>\r\n                body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }\r\n                .container { max-width: 600px; margin: 0 auto; padding: 20px; }\r\n                .header { background: #2c3e50; color: white; padding: 20px; text-align: center; }\r\n                .content { background: #f9f9f9; padding: 30px; border: 1px solid #ddd; }\r\n                .code-box { background: #fff; border: 2px dashed #3498db; padding: 20px; \r\n                           text-align: center; font-size: 32px; font-weight: bold; \r\n                           letter-spacing: 5px; margin: 20px 0; }\r\n                .backup-code { font-family: monospace; font-size: 16px; padding: 5px; }\r\n                .button { display: inline-block; padding: 12px 30px; background: #3498db; \r\n                         color: white; text-decoration: none; border-radius: 5px; margin: 20px 0; }\r\n                .footer { text-align: center; padding: 20px; color: #777; font-size: 12px; }\r\n                .warning { color: #e74c3c; font-weight: bold; }\r\n            </style>\r\n        </head>\r\n        <body>\r\n            <div class=\'container\'>\r\n                <div class=\'header\'>\r\n                    <h1>Mavrix1</h1>\r\n                </div>\r\n                <div class=\'content\'>\r\n        \r\n                    <h2>Hello Test User,</h2>\r\n                    <p>Your verification code is:</p>\r\n                    <div class=\'code-box\'>123456</div>\r\n                    <p>This code will expire in <strong>5 minutes</strong>.</p>\r\n                    <p class=\'warning\'>Do not share this code with anyone.</p>\r\n                \r\n                </div>\r\n                <div class=\'footer\'>\r\n                    <p>This is an automated message from Mavrix1. Please do not reply to this email.</p>\r\n                    <p>If you did not request this, please contact support immediately.</p>\r\n                </div>\r\n            </div>\r\n        </body>\r\n        </html>\r\n        \r\n\r\n\r\n--b1=_ixAz0NpeUpBFDz1TDpGrsudbLI9hmt4bm5eU94a9Do--\r\n\r\n',1,0,0,0,0,0,'2025-11-15 18:10:58','2025-12-04 11:06:00','2025-12-04 11:06:00','2025-12-04 11:12:00',NULL,NULL,NULL),
(51,1,'<ZgE4RABHIkF0VDTihF7Sg8GDQllCUKo6pe7zWIIy2So@localhost>',NULL,NULL,'Test the reply please','contact@mavrix.one','Mavrix1','--b1=_ZgE4RABHIkF0VDTihF7Sg8GDQllCUKo6pe7zWIIy2So\r\nContent-Type: text/plain; charset=us-ascii\r\n\r\nHey test this!Admin User  Administrator       admin@mavrix.one  906-555-4567 CONFIDENTIALITY NOTICE: This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.\r\n\r\n--b1=_ZgE4RABHIkF0VDTihF7Sg8GDQllCUKo6pe7zWIIy2So\r\nContent-Type: text/html; charset=us-ascii\r\n\r\n<p>Hey test this!</p><p><br></p><p><span style=\"color: rgb(0, 0, 0);\">Admin User</span> </p><p> <span style=\"color: rgb(0, 0, 0);\">Administrator</span> </p><p> </p><p><br></p><p> <img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\"> </p><p>  </p><p> <a href=\"mailto:admin@mavrix.one\" target=\"_blank\" style=\"color: rgb(0, 102, 204);\">admin@mavrix.one</a> </p><p> 906-555-4567 </p><p><strong><em>CONFIDENTIALITY NOTICE:</em></strong><em> This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.</em></p>\r\n\r\n\r\n--b1=_ZgE4RABHIkF0VDTihF7Sg8GDQllCUKo6pe7zWIIy2So--\r\n\r\n','--b1=_ZgE4RABHIkF0VDTihF7Sg8GDQllCUKo6pe7zWIIy2So\r\nContent-Type: text/plain; charset=us-ascii\r\n\r\nHey test this!Admin User  Administrator       admin@mavrix.one  906-555-4567 CONFIDENTIALITY NOTICE: This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.\r\n\r\n--b1=_ZgE4RABHIkF0VDTihF7Sg8GDQllCUKo6pe7zWIIy2So\r\nContent-Type: text/html; charset=us-ascii\r\n\r\n<p>Hey test this!</p><p><br></p><p><span style=\"color: rgb(0, 0, 0);\">Admin User</span> </p><p> <span style=\"color: rgb(0, 0, 0);\">Administrator</span> </p><p> </p><p><br></p><p> <img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\"> </p><p>  </p><p> <a href=\"mailto:admin@mavrix.one\" target=\"_blank\" style=\"color: rgb(0, 102, 204);\">admin@mavrix.one</a> </p><p> 906-555-4567 </p><p><strong><em>CONFIDENTIALITY NOTICE:</em></strong><em> This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.</em></p>\r\n\r\n\r\n--b1=_ZgE4RABHIkF0VDTihF7Sg8GDQllCUKo6pe7zWIIy2So--\r\n\r\n',1,0,0,0,0,0,'2025-11-26 19:42:16','2025-12-04 11:06:01','2025-12-04 11:06:01','2025-12-04 11:11:53',NULL,NULL,NULL),
(52,1,'<etPan.6927bee5.1a44d833.12662@mavrix.one>',NULL,NULL,'Fwd: Testing again','rick@mavrix.one','Rick','--6927bee5_5bfc50b7_12662\r\nContent-Type: text/plain; charset=\"utf-8\"\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\n\r\nSee this=3F Much cleaner.=C2=A0\r\n Maybe your ai can do better...\r\n =20\r\n        =20\r\n    =20\r\n    =20\r\n\r\n    =20\r\nRick Mislan, PhD,=C2=A0=46ounder, CTO\r\n\r\nhttps://mavrix1.com\r\n\r\n\r\nCON=46IDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, =\r\nprivileged, or Controlled Unclassified Information (CUI) protected under =\r\nfederal law. It is intended solely for the use of the designated recipien=\r\nt(s). Any unauthorized review, use, disclosure, distribution, or copying =\r\nis strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediate=\r\nly, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are thos=\r\ne of the sender and do not necessarily reflect those of the sender=E2=80=99=\r\ns employer or any U.S. Government agency. All recipients are responsible =\r\nfor handling information in accordance with applicable federal regulation=\r\ns, including but not limited to =46AR, D=46ARS, ITAR, and CUI handling re=\r\nquirements.\r\n\r\n\r\n\r\n\r\n =20\r\nOn November 26, 2025 at 9:59:36=E2=80=AFPM, Mavrix1 (contact=40mavrix.one=\r\n) wrote:\r\n =20\r\nHey Rick, here we go=21\r\n\r\n\r\nAdmin User\r\nAdministrator\r\nadmin=40mavrix.one\r\n906-123-4567\r\nhttps://mavrix1.com\r\n906-555-4567\r\n\r\nCON=46IDENTIALITY NOTICE: This email and any attachments are confidential=\r\n and intended solely for the use of the individual or entity to whom they=\r\n are addressed. If you have received this email in error, please notify M=\r\navrix1 immediately and delete this email from your system. Any unauthoriz=\r\ned review, use, disclosure, or distribution is prohibited.\r\n--6927bee5_5bfc50b7_12662\r\nContent-Type: multipart/related; boundary=\"6927bee5_7e223a68_12662\"\r\n\r\n--6927bee5_7e223a68_12662\r\nContent-Type: text/html; charset=\"utf-8\"\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\n\r\n\r\n    <style>body=7Bfont-family:Helvetica,Arial;font-size:13px=7D</style><d=\r\niv style=3D=22font-family:Helvetica,Arial;font-size:13px; =22>See this=3F=\r\n Much cleaner.&nbsp;</div> Maybe your ai can do better...<br> <div class=3D=\r\n=22gmail=5Fsignature=22>\r\n        <title></title>\r\n    =20\r\n    <br>\r\n    =20\r\n<div><span style=3D=22font-family: Helvetica, Arial;=22>Rick Mislan, PhD,=\r\n&nbsp;</span><div style=3D=22font-family: Helvetica, Arial;=22>=46ounder,=\r\n CTO</div><div style=3D=22font-family: Helvetica, Arial;=22><div><div><im=\r\ng class=3D=22composer=5Finternal=5Fattach=22 src=3D=22cid:79DD4A7A-37AE-4=\r\n702-8E68-DC07BDA56011=22 style=3D=22max-width: 99%;=22><br></div><div><a =\r\nhref=3D=22https://mavrix1.com/=22>https://mavrix1.com</a></div></div><div=\r\n><br></div><div><div>CON=46IDENTIALITY NOTICE</div><div>This communicatio=\r\nn, including any attachments, may contain confidential, privileged, or Co=\r\nntrolled Unclassified Information (CUI) protected under federal law. It i=\r\ns intended solely for the use of the designated recipient(s). Any unautho=\r\nrized review, use, disclosure, distribution, or copying is strictly prohi=\r\nbited and may be unlawful.</div><div><br></div><div>If you are not the in=\r\ntended recipient, please notify the sender immediately, delete this email=\r\n, and destroy all copies.</div><div><br></div><div>Unless expressly state=\r\nd, the views and opinions expressed herein are those of the sender and do=\r\n not necessarily reflect those of the sender=E2=80=99s employer or any U.=\r\nS. Government agency. All recipients are responsible for handling informa=\r\ntion in accordance with applicable federal regulations, including but not=\r\n limited to =46AR, D=46ARS, ITAR, and CUI handling requirements.</div></d=\r\niv></div></div></div> <br><p class=3D=22airmail=5Fon=22>On November 26, 2=\r\n025 at 9:59:36=E2=80=AFPM, Mavrix1 (<a href=3D=22mailto:contact=40mavrix.=\r\none=22>contact=40mavrix.one</a>) wrote:</p> <blockquote type=3D=22cite=22=\r\n class=3D=22clean=5Fbq=22><span><div><div></div><div><p><br></p><p>Hey Ri=\r\nck, here we go=21</p><p><br></p><p><br></p><p><strong style=3D=22color: r=\r\ngb(0, 102, 204);=22>Admin User</strong></p><p>Administrator</p><p><a href=\r\n=3D=22mailto:admin=40mavrix.one=22 target=3D=22=5Fblank=22 style=3D=22col=\r\nor: rgb(0, 102, 204);=22>admin=40mavrix.one</a></p><p>906-123-4567</p><p>=\r\n<img src=3D=22http://localhost:8080/uploads/company/logo=5F1762869843.png=\r\n=22 alt=3D=22Mavrix1=22></p><p>https://mavrix1.com</p><p>906-555-4567</p>=\r\n<p><br></p><p><strong><em>CON=46IDENTIALITY NOTICE:</em></strong><em> Thi=\r\ns email and any attachments are confidential and intended solely for the =\r\nuse of the individual or entity to whom they are addressed. If you have r=\r\neceived this email in error, please notify Mavrix1 immediately and delete=\r\n this email from your system. Any unauthorized review, use, disclosure, o=\r\nr distribution is prohibited.</em></p>\r\n\r\n</div></div></span></blockquote>\r\n\r\n\r\n\r\n--6927bee5_7e223a68_12662\r\nContent-Type: application/octet-stream\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <79DD4A7A-37AE-4702-8E68-DC07BDA56011>\r\nContent-Disposition: inline; filename=\"52AACA64-B468-4285-B5C4-838F6707FFCC\"\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGwAAAAYCAYAAAAf1RgaAAAAAXNSR0IArs4c6QAAAIRlWElmTU0A\r\nKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdp\r\nAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAGyg\r\nAwAEAAAAAQAAABgAAAAABrPxEgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5h\r\nZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9\r\nIlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9y\r\nZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6\r\nYWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZm\r\nLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgog\r\nICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAA\r\nC6FJREFUaAXtWnuMVUcZnznPe/fuZYEtDxHCQ1ADBNuuAlKh24dRaqURWFotj5haKAn9SxOaauRi\r\nxEBsMMFSAmnUCDTKWtDioyEm3RLKq6VKC7Rg20VA5Lmwz3vPa8bfN+ecu+fevbugjQQrX5g735n5\r\nvm++13wz5yyc3YKb0gP19a8YTU33+NNmbx0puHjJtGsm+U7beoMxyRsaGrUJE45JxlbclMp/1JXK\r\nsZWM5XLwP6PG6+tzOgVr8tzN0wWTjRq3hojAw6TU+EfdGf9T9uVyGsutQNC4nDpn8zz0m7lmWEwE\r\njm6mbd/r3MCnzNk6DlEbyRFCqfNbAbyBEeaBlJzrkula1mOFQ683fvMcLT917tblGF8dbTgmhe8a\r\nZsbyvY4NhsbEdwy7ZrHntDHOtBuo7q2lGLyvGSnmOe2/fH3S3//EGhGsOZuf03RrKRMC/3wBL30f\r\n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\r\n\r\n--6927bee5_7e223a68_12662--\r\n\r\n--6927bee5_5bfc50b7_12662--\r\n\r\n','--6927bee5_5bfc50b7_12662\r\nContent-Type: text/plain; charset=\"utf-8\"\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\n\r\nSee this=3F Much cleaner.=C2=A0\r\n Maybe your ai can do better...\r\n =20\r\n        =20\r\n    =20\r\n    =20\r\n\r\n    =20\r\nRick Mislan, PhD,=C2=A0=46ounder, CTO\r\n\r\nhttps://mavrix1.com\r\n\r\n\r\nCON=46IDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, =\r\nprivileged, or Controlled Unclassified Information (CUI) protected under =\r\nfederal law. It is intended solely for the use of the designated recipien=\r\nt(s). Any unauthorized review, use, disclosure, distribution, or copying =\r\nis strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediate=\r\nly, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are thos=\r\ne of the sender and do not necessarily reflect those of the sender=E2=80=99=\r\ns employer or any U.S. Government agency. All recipients are responsible =\r\nfor handling information in accordance with applicable federal regulation=\r\ns, including but not limited to =46AR, D=46ARS, ITAR, and CUI handling re=\r\nquirements.\r\n\r\n\r\n\r\n\r\n =20\r\nOn November 26, 2025 at 9:59:36=E2=80=AFPM, Mavrix1 (contact=40mavrix.one=\r\n) wrote:\r\n =20\r\nHey Rick, here we go=21\r\n\r\n\r\nAdmin User\r\nAdministrator\r\nadmin=40mavrix.one\r\n906-123-4567\r\nhttps://mavrix1.com\r\n906-555-4567\r\n\r\nCON=46IDENTIALITY NOTICE: This email and any attachments are confidential=\r\n and intended solely for the use of the individual or entity to whom they=\r\n are addressed. If you have received this email in error, please notify M=\r\navrix1 immediately and delete this email from your system. Any unauthoriz=\r\ned review, use, disclosure, or distribution is prohibited.\r\n--6927bee5_5bfc50b7_12662\r\nContent-Type: multipart/related; boundary=\"6927bee5_7e223a68_12662\"\r\n\r\n--6927bee5_7e223a68_12662\r\nContent-Type: text/html; charset=\"utf-8\"\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\n\r\n\r\n    <style>body=7Bfont-family:Helvetica,Arial;font-size:13px=7D</style><d=\r\niv style=3D=22font-family:Helvetica,Arial;font-size:13px; =22>See this=3F=\r\n Much cleaner.&nbsp;</div> Maybe your ai can do better...<br> <div class=3D=\r\n=22gmail=5Fsignature=22>\r\n        <title></title>\r\n    =20\r\n    <br>\r\n    =20\r\n<div><span style=3D=22font-family: Helvetica, Arial;=22>Rick Mislan, PhD,=\r\n&nbsp;</span><div style=3D=22font-family: Helvetica, Arial;=22>=46ounder,=\r\n CTO</div><div style=3D=22font-family: Helvetica, Arial;=22><div><div><im=\r\ng class=3D=22composer=5Finternal=5Fattach=22 src=3D=22cid:79DD4A7A-37AE-4=\r\n702-8E68-DC07BDA56011=22 style=3D=22max-width: 99%;=22><br></div><div><a =\r\nhref=3D=22https://mavrix1.com/=22>https://mavrix1.com</a></div></div><div=\r\n><br></div><div><div>CON=46IDENTIALITY NOTICE</div><div>This communicatio=\r\nn, including any attachments, may contain confidential, privileged, or Co=\r\nntrolled Unclassified Information (CUI) protected under federal law. It i=\r\ns intended solely for the use of the designated recipient(s). Any unautho=\r\nrized review, use, disclosure, distribution, or copying is strictly prohi=\r\nbited and may be unlawful.</div><div><br></div><div>If you are not the in=\r\ntended recipient, please notify the sender immediately, delete this email=\r\n, and destroy all copies.</div><div><br></div><div>Unless expressly state=\r\nd, the views and opinions expressed herein are those of the sender and do=\r\n not necessarily reflect those of the sender=E2=80=99s employer or any U.=\r\nS. Government agency. All recipients are responsible for handling informa=\r\ntion in accordance with applicable federal regulations, including but not=\r\n limited to =46AR, D=46ARS, ITAR, and CUI handling requirements.</div></d=\r\niv></div></div></div> <br><p class=3D=22airmail=5Fon=22>On November 26, 2=\r\n025 at 9:59:36=E2=80=AFPM, Mavrix1 (<a href=3D=22mailto:contact=40mavrix.=\r\none=22>contact=40mavrix.one</a>) wrote:</p> <blockquote type=3D=22cite=22=\r\n class=3D=22clean=5Fbq=22><span><div><div></div><div><p><br></p><p>Hey Ri=\r\nck, here we go=21</p><p><br></p><p><br></p><p><strong style=3D=22color: r=\r\ngb(0, 102, 204);=22>Admin User</strong></p><p>Administrator</p><p><a href=\r\n=3D=22mailto:admin=40mavrix.one=22 target=3D=22=5Fblank=22 style=3D=22col=\r\nor: rgb(0, 102, 204);=22>admin=40mavrix.one</a></p><p>906-123-4567</p><p>=\r\n<img src=3D=22http://localhost:8080/uploads/company/logo=5F1762869843.png=\r\n=22 alt=3D=22Mavrix1=22></p><p>https://mavrix1.com</p><p>906-555-4567</p>=\r\n<p><br></p><p><strong><em>CON=46IDENTIALITY NOTICE:</em></strong><em> Thi=\r\ns email and any attachments are confidential and intended solely for the =\r\nuse of the individual or entity to whom they are addressed. If you have r=\r\neceived this email in error, please notify Mavrix1 immediately and delete=\r\n this email from your system. Any unauthorized review, use, disclosure, o=\r\nr distribution is prohibited.</em></p>\r\n\r\n</div></div></span></blockquote>\r\n\r\n\r\n\r\n--6927bee5_7e223a68_12662\r\nContent-Type: application/octet-stream\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <79DD4A7A-37AE-4702-8E68-DC07BDA56011>\r\nContent-Disposition: inline; filename=\"52AACA64-B468-4285-B5C4-838F6707FFCC\"\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGwAAAAYCAYAAAAf1RgaAAAAAXNSR0IArs4c6QAAAIRlWElmTU0A\r\nKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdp\r\nAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAGyg\r\nAwAEAAAAAQAAABgAAAAABrPxEgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5h\r\nZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9\r\nIlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9y\r\nZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6\r\nYWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZm\r\nLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgog\r\nICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAA\r\nC6FJREFUaAXtWnuMVUcZnznPe/fuZYEtDxHCQ1ADBNuuAlKh24dRaqURWFotj5haKAn9SxOaauRi\r\nxEBsMMFSAmnUCDTKWtDioyEm3RLKq6VKC7Rg20VA5Lmwz3vPa8bfN+ecu+fevbugjQQrX5g735n5\r\nvm++13wz5yyc3YKb0gP19a8YTU33+NNmbx0puHjJtGsm+U7beoMxyRsaGrUJE45JxlbclMp/1JXK\r\nsZWM5XLwP6PG6+tzOgVr8tzN0wWTjRq3hojAw6TU+EfdGf9T9uVyGsutQNC4nDpn8zz0m7lmWEwE\r\njm6mbd/r3MCnzNk6DlEbyRFCqfNbAbyBEeaBlJzrkula1mOFQ683fvMcLT917tblGF8dbTgmhe8a\r\nZsbyvY4NhsbEdwy7ZrHntDHOtBuo7q2lGLyvGSnmOe2/fH3S3//EGhGsOZuf03RrKRMC/3wBL30f\r\nW24uxm6XHhcaQuxjgrwXMNpgt9p/3wfYGsrPMmC+07H8wPYFiyYfHj1gypwtr+JysZROMiG80wjO\r\nPftfnL9KpTaxoFQakk4y3WKB13Wc+97DbuB5hm5qXAvoAPzQ4GmG1HxRlCUMjZvC/7dLL7SCnkKK\r\nAPxmN388fr2Klq8fCI2yGGAzYXjXpRvZxBzGknqEcmxUt3xJmeqWH64S/5rwg+dI9+DOhc00pjF3\r\nMJPp51y3bRWXwuaafHNv46J/1H11Z5XGWsPqCDqDosbDo6uwd8fCI7HAW/2N9cD+HY+/gxWpdQMu\r\nIa0HmoNaa2BxDNd6gMp/zsfcv7rm9Gs/+bRuZ1OMBwJnmsA+LO6OIpeUGjZmcZdwbMfinEI4piUK\r\ntPDM9ND32s7sa8G1FTegnMgMnjJEeBfHMcXTLaOUP34iOULXNf1yx+UT76IoyMygzw0N3Avjuaa7\r\nKCtiyqQFB5uaVgT0atKoXk1i3tK+volpTU05Pz1s4gjZ1fEJyBJcZ4UH711zSPFBt+zHJ9f6+Qvj\r\nmNR1kg3HFG0MpflSCs3UrcHHNcNHUWoZj+KlG1rmQkfLsaO3fWpWtv2fb35B0+02KQMzlep/8uq5\r\nv56sq1tsjhlzv4j1m9B41Dh6tNEdO3amffLMnsk8KLiala2pqhn97pWzh07hWm/U168QuRx0mLmu\r\nxBA+dc7Wn1rp/su8QuuBD97a+o1LzX98Q9MzA6T0wjpbQh49oI6WQG+XS6Lj/DwK8lrfdZ8Bj4AV\r\nizG6sYT/Wg9wE0j2aFI+4bruacO2D0HuJ5EUJP9HfqHwXczraGWJUxQczmUyQ0zf3weu0eCjg+Ip\r\n6LWGqEzbfhKlJgeZA9VckbUUURGUcikUOo3K9Hs1K+VO33FmAa+CfRshf36k20UpxJLAdXdgjlip\r\nXFLvs0xmqOH7vwJ+N60npfwAu2em4zgnQjplnBw7c51dWzVwv50acLtbuPpsuMNAEcqhHidhN7wB\r\nSXTVJDroES3G+Z0YHxaRBcD3AO9AI8cQHTUTbQrmhjBNW6Nb1gko/lsodgrjr6Ll0Uh5ar0B3YZG\r\noY2HUTME5z8HPpULMU9q2m7g/SD/aT2VeicoFLbgmfRUNyj0MZB8sonDQVsRlNE0AT2ehz4qWEYq\r\nNQMKr8MgTXWhfw09MlY5WA3SBECAvz90OY5g91MjYbJG5yDLe4XCAiTUYcz9GG0Qgrod8lcgqX6A\r\nZ+VbPN/NfH8L5AxXMhDwwHEWYvIqnimoJK+iX8jAcqAySC4/gkXuBdZeTgDnN3BN2xYZ+Aqy64vl\r\nNPRsWNbTCNYqwqH4WOpB+zI6atcHlIlBcBRrUeaPRGYO8To7D0OHRZBJmYtCKTeZpvm253nkqPKg\r\nkQMC3bbXgf8+ogfshYOWhKjKrlGQQUpiGfkzzD0Zz/XW6+n01xG08mlKUg82PoOgvQV8M2QORr8S\r\nz5/xbftx03EewRrPYpwWozVXgf57kaC+qoQiqRSwkJfzLiC4CykgoynTiN7DWm1qNPyhnUUQ0xBO\r\niruga0mkZ2hdNnub5Ti0O2NrEyTEWgSwcy8IAjJYkjMBSCacawDarUiIp5AQq2F4WmjabzD8WTRc\r\nqYpZqoKnyrCUyyIHnfN1fQ5oaH0Ljc5CfPcJ1cCaxE9Ac7TLyoGcWr6LY5rYJgNB2GXb9jTsmm2Q\r\nfyfabMN178IqQ4DDItmBKrEkyOdfiJhVYsWCeut7D1hoNAlJgrIKP7hdFoEMIAgtLsUpcDEoOtPz\r\nZsO5GyPnxXN995EzYWgyKXQ6fxCMiShT86HPWGTxC3DUVyCMHKey3Uinp+Ec2RAtQCXpYdbZGZd5\r\nVaIwljBHJSWRJ+2h5+sF4qOAGjiP3kdfB722o/8a2iA0gvNwxnQnn/8bcNKT6ONgA+0dygNSThkr\r\nTX2ME00Sj3limuRcEo/p/Cib8V0TWYbDFuXoJFpzecMcjZ0GY28ZzXBmPIZ5OmupvDyA8wGfdBR4\r\ndLCjbP0aT8pO7J4nUOZ341ntvJCsx29SZ8IrtR5MZQOUAEoOJQzwiWo+TDjMyGpE58GIJz4ro8e+\r\nu752WN+c//lsmM1QHsgf4MBHkOYZiIuzPZZMdC520AhE6yBwys6kMykjade6MGKez/l+OILK53Jc\r\nQo7QJQRn34sI4nCMkZPWIrjPAyOeXhOASD8kxFUggB6LkDCboINFCQWDqPxNR0UYAUPW4lydgPPy\r\nWxgj2/tKoqJKlXZY7JS4LxL3glSii8fiPskabn0YgB1Ug4ksy2bTaJkeDYEUQlQVmcFQxENEGVoo\r\nFJrxOA9NzcMxa1CGfocFKLspWLtQKr+t8MqlJyk3iUcs1+xiHvIn2Sex03+I6vAL4BSsADotRcI8\r\nirEv4fkYxhFH/hjodtNFCo+URJXiQaRFSOwwekfFu3J42JKRyfOnyBAhREcrEl1CRjTbfSZQNpcA\r\nruT7kWGd4M2A98tQuJl5nguiUGaSOpWiFzADdIPUWpSpPenIUAM7Fd/h7GWQvR70w0BP70VA5fuB\r\nZT3KHHV/ih1KU91AL/nhpYYYeujcTZjAiKcbYh+QHdVIli3oH4pkXgQ+D8FqQm/iPZK+ZtxF5y3m\r\nZwKfjkrwNkunH/Lz+X14rqwjJgiSi+KLPkqrZl1G1RBcs66OGlUfOTFHkeGsvl4xGUYN6q5Bvixw\r\nzY5ujPRVIGp1ixUd0zMFrnY6PtLpVV00qBS2+kFR689MM7GWkUbrj4bd1qPReAZ0eD8xujgzW6qr\r\nh0bZHOkUrhmwhgbdc5znOE+tZ9x08NZ1Ge2cptfOY+3tl1hdHRKQdmhCz/rQPt2ogqNhC3TV9LTS\r\nk01o6LanEg+vwhpWB3gkfKBefQYMqKsxUtmXODdnQYdW9Ac1c+AMJFMTw9cOrO3DhxTcq9jxDyhd\r\nmQleoxo+32FWDbsDc4JsYbmVyvfD81nVk+8Iwi8dqf7L8Bb9F6+2Y8qhTer1hLKMyk2lay3xEdhh\r\np+h6OxNoMdoVBCQLQS4BmovLSclE2QPJoUa0lMXXglg30qv8bKzEey09r8VDa9Ba5Dc4X31EoApV\r\nQCOIdQ+fSn9TeCRe0pl8VGIf/VeBQu3Zg1aq/x2JLx3kB3yzu5jq9/mGbV3ZVA123nm9s9UjYT3A\r\ntLOyfUBaOb82bxmdrWewS3pCki57JW/i7z6kOCvYvpZyDFEYOvh6nFkUPAxYy7kLcTCK4+VILJd0\r\na710UTdMp8+kSOoZ2ZOsPOXi1XMFnjSNscwgJ2t12GdBBZur29kVnWwtF+J7tvKFP6LGh13WpSu1\r\nIpt6z4TPlX00n65uFV3+KRsfZZEIoQlqh+lGalkQ5Nuw88/hICvmAw7FHobSymQNzga1ICnSGx0O\r\n2CIN0eF8UYWfZJTP0fz1QFIG6RF7IsbL5ZbrFusfr1VJl3iNmKZSn7Sf5mOeSuM0X54BldZNyiFc\r\n0aiDUHwMZTsb+AX6lihxSGIXO6yfZtjh9zGivgU3jQeE7zCKUeDnq3EDYy+7nRfpL4wdgZcv2RE3\r\njcb/74rgq6NAsBCrXf8CAf/+y47p6ecAAAAASUVORK5CYII=\r\n\r\n--6927bee5_7e223a68_12662--\r\n\r\n--6927bee5_5bfc50b7_12662--\r\n\r\n',1,0,0,0,0,0,'2025-11-27 03:00:34','2025-12-04 11:06:01','2025-12-04 11:06:01','2025-12-04 11:06:06',NULL,NULL,NULL),
(53,1,'<1764847994.1@erp>',NULL,NULL,'Test','admin@mavrix.one','Admin User','<p>Hey Admin!</p>\r\n<p></p>\r\n<table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n<div style=\"margin-bottom: 10px;\"><strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span></div>\r\n<div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\"><img src=\"cid:company_logo\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong><br><em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br><em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br><em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br><em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Hey Admin!\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\n\r\n',1,0,0,0,0,0,'2025-12-04 11:33:14','2025-12-04 11:33:14','2025-12-04 11:33:14','2025-12-04 11:33:14',NULL,NULL,NULL),
(54,1,'<A8XnifFXRzA0dUmkccjmOCoLbTFRFN7hRpd9cKY@localhost>','thread_9168230d82e90b7de1795d2a28acdeca',NULL,'Test','contact@mavrix.one','Mavrix1','--b2=_A8XnifFXRzA0dUmkccjmOCoLbTFRFN7hRpd9cKY\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<p>Hey Admin!</p>\r\n<p></p>\r\n<table style=3D\"width: 100%; max-width: 600px; border-collapse: collapse; f=\r\nont-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=3D\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=3D\"width: 100%; border-collapse: collapse; padding-top: 15px;\"=\r\n>\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=3D\"vertical-align: top; padding-left: 20px; border-left: 2px soli=\r\nd #e0e0e0;\">\r\n<div style=3D\"margin-bottom: 10px;\"><strong style=3D\"font-size: 14px; color=\r\n: #0066cc;\">Admin User</strong><br><span style=3D\"font-size: 12px; color: #=\r\n666;\">Administrator</span></div>\r\n<div style=3D\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=3D\"mailto:admin@mavrix.one\" style=3D\"color: #0066cc; text-deco=\r\nration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=3D\"https://mavrix1.com\" style=3D\"color: #0066cc; text-decorati=\r\non: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=3D\"width: 200px; vertical-align: middle; text-align: center; padd=\r\ning-top: 10px;\"><img src=3D\"cid:company_logo\" alt=3D\"Mavrix1\" style=3D\"max-=\r\nwidth: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=3D\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1=\r\n.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=3D\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=3D\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFI=\r\nDENTIALITY NOTICE:</strong><br><em>This communication may contain confident=\r\nial information. Unauthorized review, use, disclosure, or distribution is p=\r\nrohibited.</em><br><br><em>This communication, including any attachments, m=\r\nay contain confidential, privileged, or Controlled Unclassified Information=\r\n (CUI) protected under federal law. It is intended solely for the use of th=\r\ne designated recipient(s). Any unauthorized review, use, disclosure, distri=\r\nbution, or copying is strictly prohibited and may be unlawful.</em><br><br>=\r\n<em>If you are not the intended recipient, please notify the sender immedia=\r\ntely, delete this email, and destroy all copies.</em><br><br><em>Unless exp=\r\nressly stated, the views and opinions expressed herein are those of the sen=\r\nder and do not necessarily reflect those of the sender=E2=80=99s employer o=\r\nr any U.S. Government agency. All recipients are responsible for handling i=\r\nnformation in accordance with applicable federal regulations, including but=\r\n not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n--b2=_A8XnifFXRzA0dUmkccjmOCoLbTFRFN7hRpd9cKY\r\nContent-Type: image/png; name=logo_1762869843.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <company_logo>\r\nContent-Disposition: inline; filename=logo_1762869843.png\r\n\r\n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\r\n\r\n--b2=_A8XnifFXRzA0dUmkccjmOCoLbTFRFN7hRpd9cKY--','Hey Admin!\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.',1,0,0,0,0,0,'2025-12-04 11:33:13','2025-12-04 11:33:20','2025-12-04 11:33:20','2025-12-04 12:01:24',NULL,NULL,NULL),
(55,1,'<1764849685.1@erp>','thread_9168230d82e90b7de1795d2a28acdeca',NULL,'Test2','admin@mavrix.one','Admin User','<p></p>\r\n<p>Test</p>\r\n<table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n<div style=\"margin-bottom: 10px;\"><strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span></div>\r\n<div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\"><img src=\"cid:company_logo\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong><br><em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br><em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br><em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br><em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p></p>\r\n<hr>\r\n<p><em>On Dec 4, 2025, Mavrix1 wrote:</em></p>\r\n<p>--b2=_A8XnifFXRzA0dUmkccjmOCoLbTFRFN7hRpd9cKY Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable</p>\r\n<p>Hey Admin!</p>\r\n<p></p>\r\n<table 100%;=\"\" max-width:=\"\" 600px;=\"\" border-collapse:=\"\" collapse;=\"\" f=\"ont-family:\" helvetica,=\"\" arial,=\"\" sans-serif;\"=\"\">\r\n<tbody>\r\n<tr>\r\n<td 0;=\"\" border-top:=\"\" 3px=\"\" solid=\"\" #0066cc;\"=\"\">\r\n<table 100%;=\"\" border-collapse:=\"\" collapse;=\"\" padding-top:=\"\" 15px;\"=\"\">\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td top;=\"\" padding-left:=\"\" 20px;=\"\" border-left:=\"\" 2px=\"\" soli=\"d\" #e0e0e0;\"=\"\">\r\n<div 10px;\"=\"\"><strong 14px;=\"\" color=\":\" #0066cc;\"=\"\">Admin User</strong><br><span 12px;=\"\" color:=\"\" #=\"666;&quot;\">Administrator</span></div>\r\n<div 12px;=\"\" color:=\"\" #333;=\"\" line-height:=\"\" 1.3;\"=\"\">\r\n<div><a href=\"3D&quot;mailto:admin@mavrix.one&quot;\" #0066cc;=\"\" text-deco=\"ration:\" none;\"=\"\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=\"3D&quot;https://mavrix1.com&quot;\" #0066cc;=\"\" text-decorati=\"on:\" none;\"=\"\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td 200px;=\"\" vertical-align:=\"\" middle;=\"\" text-align:=\"\" center;=\"\" padd=\"ing-top:\" 10px;\"=\"\"><img src=\"3D&quot;cid:company_logo&quot;\" alt=\"3D&quot;Mavrix1&quot;\" width:=\"\" 150px;=\"\" height:=\"\" auto;=\"\" display:=\"\" block;=\"\" margin:=\"\" 0=\"\" auto;\"=\"\">\r\n<div 8px;=\"\" font-size:=\"\" 11px;=\"\" color:=\"\" #666;=\"\" line-height:=\"\" 1=\".3;&quot;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td 15px;=\"\" border-top:=\"\" 1px=\"\" solid=\"\" #e0e0e0;\"=\"\">\r\n<div 9px;=\"\" color:=\"\" #888;=\"\" line-height:=\"\" 1.4;\"=\"\"><strong>CONFI= DENTIALITY NOTICE:</strong><br><em>This communication may contain confident= ial information. Unauthorized review, use, disclosure, or distribution is p= rohibited.</em><br><br><em>This communication, including any attachments, m= ay contain confidential, privileged, or Controlled Unclassified Information= (CUI) protected under federal law. It is intended solely for the use of th= e designated recipient(s). Any unauthorized review, use, disclosure, distri= bution, or copying is strictly prohibited and may be unlawful.</em><br><br>= <em>If you are not the intended recipient, please notify the sender immedia= tely, delete this email, and destroy all copies.</em><br><br><em>Unless exp= ressly stated, the views and opinions expressed herein are those of the sen= der and do not necessarily reflect those of the sender=E2=80=99s employer o= r any U.S. Government agency. All recipients are responsible for handling i= nformation in accordance with applicable federal regulations, including but= not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>--b2=_A8XnifFXRzA0dUmkccjmOCoLbTFRFN7hRpd9cKY Content-Type: image/png; name=logo_1762869843.png Content-Transfer-Encoding: base64 Content-ID: <company_logo> Content-Disposition: inline; filename=logo_1762869843.png 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 --b2=_A8XnifFXRzA0dUmkccjmOCoLbTFRFN7hRpd9cKY--</company_logo></p>','\r\nTest\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\n\r\n\r\n\r\n\r\nOn Dec 4, 2025, Mavrix1 wrote:\r\n--b2=_A8XnifFXRzA0dUmkccjmOCoLbTFRFN7hRpd9cKY Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable\r\nHey Admin!\r\n\r\n\r\n',1,0,0,0,0,0,'2025-12-04 12:01:25','2025-12-04 12:01:25','2025-12-04 12:01:25','2025-12-04 12:01:25',NULL,NULL,NULL),
(56,1,'<umIv8wt6HaFV1KXO8rssMAieLQxUAQNfpuIzUNLlUWM@localhost>',NULL,NULL,'Test2','contact@mavrix.one','Mavrix1','--b2=_umIv8wt6HaFV1KXO8rssMAieLQxUAQNfpuIzUNLlUWM\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<p></p>\r\n<p>Test</p>\r\n<table style=3D\"width: 100%; max-width: 600px; border-collapse: collapse; f=\r\nont-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=3D\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=3D\"width: 100%; border-collapse: collapse; padding-top: 15px;\"=\r\n>\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=3D\"vertical-align: top; padding-left: 20px; border-left: 2px soli=\r\nd #e0e0e0;\">\r\n<div style=3D\"margin-bottom: 10px;\"><strong style=3D\"font-size: 14px; color=\r\n: #0066cc;\">Admin User</strong><br><span style=3D\"font-size: 12px; color: #=\r\n666;\">Administrator</span></div>\r\n<div style=3D\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=3D\"mailto:admin@mavrix.one\" style=3D\"color: #0066cc; text-deco=\r\nration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=3D\"https://mavrix1.com\" style=3D\"color: #0066cc; text-decorati=\r\non: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=3D\"width: 200px; vertical-align: middle; text-align: center; padd=\r\ning-top: 10px;\"><img src=3D\"cid:company_logo\" alt=3D\"Mavrix1\" style=3D\"max-=\r\nwidth: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=3D\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1=\r\n.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=3D\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=3D\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFI=\r\nDENTIALITY NOTICE:</strong><br><em>This communication may contain confident=\r\nial information. Unauthorized review, use, disclosure, or distribution is p=\r\nrohibited.</em><br><br><em>This communication, including any attachments, m=\r\nay contain confidential, privileged, or Controlled Unclassified Information=\r\n (CUI) protected under federal law. It is intended solely for the use of th=\r\ne designated recipient(s). Any unauthorized review, use, disclosure, distri=\r\nbution, or copying is strictly prohibited and may be unlawful.</em><br><br>=\r\n<em>If you are not the intended recipient, please notify the sender immedia=\r\ntely, delete this email, and destroy all copies.</em><br><br><em>Unless exp=\r\nressly stated, the views and opinions expressed herein are those of the sen=\r\nder and do not necessarily reflect those of the sender=E2=80=99s employer o=\r\nr any U.S. Government agency. All recipients are responsible for handling i=\r\nnformation in accordance with applicable federal regulations, including but=\r\n not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p></p>\r\n<hr>\r\n<p><em>On Dec 4, 2025, Mavrix1 wrote:</em></p>\r\n<p>--b2=3D_A8XnifFXRzA0dUmkccjmOCoLbTFRFN7hRpd9cKY Content-Type: text/html;=\r\n charset=3DUTF-8 Content-Transfer-Encoding: quoted-printable</p>\r\n<p>Hey Admin!</p>\r\n<p></p>\r\n<table 100%;=3D\"\" max-width:=3D\"\" 600px;=3D\"\" border-collapse:=3D\"\" collaps=\r\ne;=3D\"\" f=3D\"ont-family:\" helvetica,=3D\"\" arial,=3D\"\" sans-serif;\"=3D\"\">\r\n<tbody>\r\n<tr>\r\n<td 0;=3D\"\" border-top:=3D\"\" 3px=3D\"\" solid=3D\"\" #0066cc;\"=3D\"\">\r\n<table 100%;=3D\"\" border-collapse:=3D\"\" collapse;=3D\"\" padding-top:=3D\"\" 15=\r\npx;\"=3D\"\">\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td top;=3D\"\" padding-left:=3D\"\" 20px;=3D\"\" border-left:=3D\"\" 2px=3D\"\" soli=\r\n=3D\"d\" #e0e0e0;\"=3D\"\">\r\n<div 10px;\"=3D\"\"><strong 14px;=3D\"\" color=3D\":\" #0066cc;\"=3D\"\">Admin User</=\r\nstrong><br><span 12px;=3D\"\" color:=3D\"\" #=3D\"666;&quot;\">Administrator</spa=\r\nn></div>\r\n<div 12px;=3D\"\" color:=3D\"\" #333;=3D\"\" line-height:=3D\"\" 1.3;\"=3D\"\">\r\n<div><a href=3D\"3D&quot;mailto:admin@mavrix.one&quot;\" #0066cc;=3D\"\" text-d=\r\neco=3D\"ration:\" none;\"=3D\"\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=3D\"3D&quot;https://mavrix1.com&quot;\" #0066cc;=3D\"\" text-decor=\r\nati=3D\"on:\" none;\"=3D\"\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td 200px;=3D\"\" vertical-align:=3D\"\" middle;=3D\"\" text-align:=3D\"\" center;=\r\n=3D\"\" padd=3D\"ing-top:\" 10px;\"=3D\"\"><img src=3D\"3D&quot;cid:company_logo&qu=\r\not;\" alt=3D\"3D&quot;Mavrix1&quot;\" width:=3D\"\" 150px;=3D\"\" height:=3D\"\" aut=\r\no;=3D\"\" display:=3D\"\" block;=3D\"\" margin:=3D\"\" 0=3D\"\" auto;\"=3D\"\">\r\n<div 8px;=3D\"\" font-size:=3D\"\" 11px;=3D\"\" color:=3D\"\" #666;=3D\"\" line-heigh=\r\nt:=3D\"\" 1=3D\".3;&quot;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td 15px;=3D\"\" border-top:=3D\"\" 1px=3D\"\" solid=3D\"\" #e0e0e0;\"=3D\"\">\r\n<div 9px;=3D\"\" color:=3D\"\" #888;=3D\"\" line-height:=3D\"\" 1.4;\"=3D\"\"><strong>=\r\nCONFI=3D DENTIALITY NOTICE:</strong><br><em>This communication may contain =\r\nconfident=3D ial information. Unauthorized review, use, disclosure, or dist=\r\nribution is p=3D rohibited.</em><br><br><em>This communication, including a=\r\nny attachments, m=3D ay contain confidential, privileged, or Controlled Unc=\r\nlassified Information=3D (CUI) protected under federal law. It is intended =\r\nsolely for the use of th=3D e designated recipient(s). Any unauthorized rev=\r\niew, use, disclosure, distri=3D bution, or copying is strictly prohibited a=\r\nnd may be unlawful.</em><br><br>=3D <em>If you are not the intended recipie=\r\nnt, please notify the sender immedia=3D tely, delete this email, and destro=\r\ny all copies.</em><br><br><em>Unless exp=3D ressly stated, the views and op=\r\ninions expressed herein are those of the sen=3D der and do not necessarily =\r\nreflect those of the sender=3DE2=3D80=3D99s employer o=3D r any U.S. Govern=\r\nment agency. All recipients are responsible for handling i=3D nformation in=\r\n accordance with applicable federal regulations, including but=3D not limit=\r\ned to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>--b2=3D_A8XnifFXRzA0dUmkccjmOCoLbTFRFN7hRpd9cKY Content-Type: image/png;=\r\n name=3Dlogo_1762869843.png Content-Transfer-Encoding: base64 Content-ID: <=\r\ncompany_logo> Content-Disposition: inline; filename=3Dlogo_1762869843.png i=\r\nVBORw0KGgoAAAANSUhEUgAAAuwAAACiCAYAAAAa7ZjJAAAACXBIWXMAAAsSAAALEgHS3X78AAAV=\r\n P0lEQVR4nO3dT1LcStbG4Te/8BzvgOoVgGfNiLoroG40Mw8oVgBegfEKKFZAEdHMHOFiBS5GHr=\r\npY QcMK2qwgv4FO0TLmX5XySCnp90R0dIejndK9NtKrzJMnQ4xRAAAAAHzt7F+OJU0kbazy+/7P=\r\n5W4A AAAAPNjZvzyRdK4Vw7okvUt+NwAAAAAkSTv7l+9VzKofrDsGgR0AAABwYGF9LmmryjiUxA=\r\nAAAACJ 7exfbktaqGJYlwjsAAAAQFI7+5cjFTPrmynGI7ADAAAAiezsXx5L+qY1Npc+hxp2AAAA=\r\nIIGd/cup KmwufQ6BHQAAAKjANpfOJO16jE9JDAAAALAm21w6l1NYl5hhBwAAANays385VDGznq=\r\nxe/SnMsAMA AAAr2tm/HEv6LuewLhHYAQAAgJXs7F9OJJ3XdT1KYgAAAIA3sM2lU0l7dV6XwA4A=\r\nAAC8Ymf/cqCi Xr3yyaWrIrADAAAALyh1gnGvV38KNewAAADAM2xz6U81FNYlAjsAAADwpJ39yx=\r\nPVuLn0OZTEAAAA ACW2uXQi6aDpe5EI7AAAAMADC+tzNbC59DmUxAAAAAB62Fx6q4zCukRgBwAA=\r\nALSzfzlSg51gXkJg BwAAQK/t7F8eS/qmDMO6RA07AAAAemxn/3KqTDaXPofADgAAgN7JcXPpc8=\r\nI///XvgaRxw/cBAAAA POnH148nKcezzaVTtSCsS8UM+0DS54bvAwAAAHjsXtIo5YA7+5dDSTPV=\r\nU69+Z/+9WWUQNp0CAAAg RzeShj++fpynGnBn/3Is6bvqCetXkpZtIiuhhh0AAAC5uZY0+vH146=\r\n9UA9a8ufTTj68fJ3bdyoMR 2AEAAJCTsx9fPx6nGsw2l84k7aYa8wV3Kj40FikHpSQGAAAAuThM=\r\nHNYHKjrB1BHWryRtpw7rEjPs AAAAaN69inr1ZGHXOsHMVU+9+kMJjAdm2AEAANCkGyWembbNpT=\r\n/lH9bvJH3wDOsSgR0AAADNuVIx s36basCd/cuJpPNU473ArQTmMUpiAAAA0ASPzaUT+XeCuZd0=\r\n4j2rXkZgBwAAQJ3uJR3/+PpxmmpA C+tz+Z9ceiNpXMesehmBHQAAAHVp8+bSCxUfGsl6w78VgR=\r\n0AAAB1WJ5cmvIwpLGKMhjPsJ58RWBV bDoFAACAtwulD+vHKjaXeob15UfG1PEar2KGHQAAAJ6+=\r\n/Pj68STlgDv7l1P5by5trATmMQI7AAAA PNyr2KA5SzVgTZtLU5fAVA78KQL7vaRad8oCAAAge8=\r\ncOm0tnkjZTjfkEjy4wC0l7VQZIEdgXP75+ HCYYBwAAAHjJ2Hn8RQ4lMI9REgMAAIDs1d37PCd0=\r\niQEAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAy RmAHAAAAMkZgBwAAADJGYAcAAAAyRmAHAAAAMk=\r\nZgBwAAADJGYAcAAAAyRmAHAAAAMkZgBwAAADJG YAcAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAy=\r\n9q6Oi4QQhpKGdVwLrbWQ9CvGOG/6RiQphHDS9D10 1K39ZxFj/OVxgRDCSNK2x9iSJl73jW7+2Y=\r\nUQtiW9V3/fgdMY4+1r/6cQwljSINVFY4wnVX5/CGEg aZzgVp4zizEuHMfPiv0cjBwv8aa/Z21W=\r\nS2BX8aD6XNO10GIhBEm6kTRf/qehgMTfV2chhDsVH2oz FX/Ot4mGnkuaSNpMNF6ZZ6DsNXuhTy=\r\nVtOAx/WNdzpBRMhpJ267hm5uYqPtJfM1baf18nFX//QL7v geMQwnGMcep4jSzYx9i582Xmetvf=\r\ns9aiJAY52pJ0JOmbpP+GEKa2SoNu2ZS0p+JB/p8QwiKEMA4h vK8yqAWzkaT7BPf42FYIYeowbq=\r\n/Zn/lcPmH9wjsUhRAGIYRJCOFW0k8VQY+w3m638nmGLG1IOg8h TByv0agQwnt7XnqH9Tt1PKxL=\r\nBHa0w4Gk7yGEW1syRzdtqXiw34YQTqoEd1tqHqe6sUcOQgjHTmP3 1Vw+Yf06xjh2GFfSQ1CfSv=\r\nqPikkGj1UdNMBW/AaSrp0vdWSTFZUmKnJjJUVzFe9vT1eStrteDiMR 2NEum5K+hRDmtuyMbtpQ=\r\nMUNZ6QMtxjiT9CnZXf3ulFWfNCzwbjkMfSenmlmbOZyoCOregQQNiTH+ ijEOJZ05X2pLxfNu6H=\r\nydWthzeyGfn+uyLzHGUV/2FRHY0Ua7kn4yy9l5Gyo+0Gbrzj7FGCeSLtLe 1oMZH47V2M+wR+C9=\r\nl+TyIrc/84WKGXX0QIzxWNKh/Etkvrf9vWYNG77JZ8Vs6V7S31U3FrcNgR1t dko9cS/sSZrbEu=\r\ns6jlVsZE5tQ9K0a0vZdbHZxFOn4cceHThs89xPUfrSO7YPYiifZ0nZaZVJiqbY qtNc/g0bblSU=\r\nwMycr5MdAjva7oDQ3gtbkhbrzGjbLOtQTptQVXQ2wQrsz9HrhfvJ42VeU6cLZMw+ Aocq6qY9LS=\r\ncpWrGCV1p18t5ofSFp2Id69acQ2NEFhPZ+WHtG2zm079G3/+3sz28qv44wybtuWE0u YR3LuvaR=\r\npC/Ol9pSEdrHzteppMZVp8MY47gv9epPIbCjKw7oINMLa89o2+yYV33o59xfrBmZymcz 2o1HRx=\r\ngrxZqmHhftZvXTf6mnrR9rbNl4L+lDH/rVv4bAji6ZtK3uD2vZW7ebgj30vWbGJm1Zwm6K BY89=\r\nh6Hv5HeS6Il8N9Chpexk7m3517Vn1fqxxpaN15IGfToR9iUEdnTJpnyPkkY+Ttb9jTYz5tE5 Zk=\r\nNF55gsXqq5sRUIj84qnh1hBqJtI15g9dRD+XWjWsqi9aNdv46WjWcxxmGfS2AeI7Cja8ZN3wBq =\r\nsVuha4zk1zlmU8XME0ps5cFrWf/YcQau1S32UA+rax+raP3oqdHWj7ZX57vqadnIz94j75q+gYq=\r\nu VHzptcVQvruob+TXecHDttIvj2+FEAYJdpF7byjqk4GKA2xSP+RHWjMExhh/lQ73SH1fWyGEq=\r\necJ m21iKw5z+bzkvzjXtg4dxrxR8e+jLzOHt03fQF1ijNMQwkJ+f9+Xlge31bIJs7RR3KOcrex=\r\nGTi1Z u6Ctgb21f6g20zRX2h/m5ZLwPOGYtbBZ0pnSLq8NVPEl0bcDGbzZA3+itOUFgyq/Oca4X=\r\nF7+meRu fncQQpizUUqSX3i5qOHnNPWy/yF/J7otxrgovdc8J+iWrR9ds1CpBat3F5gr1fQB0lZ=\r\ntLYk5aWNY lx46VYwTDztpY1iXHur/6O7ScfYQPlbajgqVN3jaz6PXMvZ50/WmTbMuEi4dYdS+c=\r\npULwno/WInM UNKZ86VcWz/auHP5h/VPMUaXfShd0srA3oETrlL/pZwnHq9WfT0EoW/sYZzdh7a=\r\nFKK8X66xirX1r WZ2tx4bNexWHp7Tt5X7b9A2gXlaHfagWtn4stWz0rlf/y+PshC5qZWAHgJTsx=\r\nepxemEvO8fYysKp w9BtDevoKZsQGKqe1o/zqs+aEMLA6vC9uyPdqGjZOHe+TmcQ2AGgMJbPS3V=\r\nLfh1SslOqefXg2REG cGF/Z4fymRQo21XR+nGtcsEaWzZexBi3+fBeDYEdAPRQsjOSz/L1gbVE6=\r\n7RSNwmPZfQzasDRVlbX PpJ/B7INST9Xbf1YY8vGQzporYfADgDGeRP0Z2sl2WVT+czOXdGXGV1=\r\ngnY3+km9du1S0fpy+ViIT QngfQphJ+ux8P3cqytmmztfpLAI7AJRYTaVX55jpusvVubNNbx59m=\r\nm/EgWjoEHvGbMu/rv1ARReZ J5859usL+fdXv5K0TTlbNQR2AHjEZoE8jhrv5CZUa/925DD08ow=\r\nJal3RKbaaN5TPc6Zs2frxt9W9 Gls2fqFlYxoEdgB4gtVZXjsMval2nUj8IpulO3cafkjbV3SV1=\r\nbWPJX1yvtSGpG/L1o81tmz8m0MI 0yGwA8DzRvJZtt5N3Te5CbZSMHca/pAldPSB9SH/IP+69qM=\r\nQwi/V07JxuwNn5mSFwA4Az7Bl3LF8 XqRHXicU1qEU1ukIA1RkH6cD+de1e86qS0WJDytjDgjsA=\r\nPACe5F6dXc5b/Em1InoCAMkYyUy2/I7 ednbYYxxTL26DwI7ALzCujp41ZlWPp2wbtbj2WNZnY4=\r\nw6D37YD2Uf4lMKveSPrAq5utd0zcA5KgP h9w0ZND0Dawrxjix2fDUQXVDRWgftmFmyrpNnDoMf=\r\nS+J2TlARaeqEMJCxQZ1704uVVyLTk61ILAD T/M+RAItFGMcW2hPXQqypaLEZJx43KTsn33qNPy=\r\nITabA/8QYF6WfOe9e6es4o3ytPpTEAMBqhipO 7UvtYNXjxOtkZTtT+WxaO7SyIwAlVtc+kvSl6=\r\nXspWbZszPZ51UUEdgBYgS39juRTX3r6+ICTjMzk s8n0gtpX4GXWz/xvNV/XfqOiCwwtG2tGYAe=\r\nAFVnpxthp+GlunWOsZ/yuw9DXdnAMgFdYSN6Wf+vH 51ypCOuUrjWAwA4Aa7CXp0fnmA0VoT2Lz=\r\njHWK/7IYegb+bXLBDrJ+psPVfQ7r9OnGCObSxtEYAeA NdkJhR4vzi35be58M5vpP3cYmo4wwJq=\r\nsrn2s+mbaz+xZhwYR2AGgAscX556VojSidJKphzHL6sB6 QgjvQwhz+ewpecpRk88iFAjsAFDdU=\r\nD6bwY6sJKVWpbDu0RHmExvWgPXYqtdcPntKXnIUQmjdIW9d QmAHgIqstGMon9A+aWAT6kR+HWG=\r\nYqQPWYB2k5qpvZv2xXUmL3DbF9wWBHQASsBIPj77Ey5NQa5nZ sl7wqU9zlaQbOsIA67HTt7/JZ=\r\n9VrFZsqnkdsGK8ZgR0AErF+4h4HnGzIr578gb2ETx2GvlOxAgFg BVavPlVep29vSPpmHxGoCYE=\r\ndABKyA05cOsfYi9tF6Qj01O4l0Q4OWFEIYaDiQ91jxSuFzyGEGXXt 9XjX9A0APXCtGmZHW2KsY=\r\nkm1645VHHCSutb0IISwSF0Hbi/cqXyW2+kIA6yotLm06RKY1+zJSmSs RzycENgBf3Obde29EMJ=\r\nQPQjsMcZf9s96q/Qv3FML7fOEY87ks5HtCx1hgNVYZyiP8w+8bKnYjDpK /FxCCSUxAOCg1DnGw=\r\n8yWyyuz/soeLeIu+FAFVmNlb20K60sbkr7bpnU4ILADgBMrBTl0GHpDRWiv VDtqM3lHSe7odzf=\r\ny6ZgDdJJtLl3Iv179znn8U8+9Nn1GYAcAR9Y55sxh6C1V2CRqNbIeM3n3koZs MgXexn4WF/Lvr=\r\n/4pxjiQTyersoMQwoLNqGkR2AHAWYzxWNKVw9B767RWK51kmhphHViBrXLN5bu3 517SX8vN6la=\r\nq9rd8Dnpb2pJ0yyFL6RDYAaAeYxWlIql9tpf+m5TCukf3iWM6wgBvYx/b5/LtBHOj 4iN6Xv5F2=\r\nww+lG+JzIakn6s8n/A8AjsA1MBmnUfymdWarDCTNZFfR5ipw7hAp1i9+kz+hyFdqQjr T35E269=\r\nvq2g97OmcuvbqCOwAUBPrUzx0GPpNm1Ctg4PHprYrOsIAryv1V99zvtRZjPHVA8tijL9i jEP5H=\r\nPZWdhBCmFPXvj4COwDUyLFzzKZeqEsPIYwknTpc90ZFuQ+AF9jZDHP5bi69l3Ro+2beLMY4 ls9=\r\nzqWxXRb926trXQGAHgJpZ6YjHjNbWU0vP9oL849cTuJf06iwe0He2uvVdvvXqy03f03V+s/2+ D=\r\n/LdjLqp4mTUseM1OonADgANsBktj9rRg/LL0Jagp/IJCkOOIwdeZh/RHqtbZTeSBlU3fZfq2j02=\r\n yC9tqKhrP3G8RucQ2AGgOSP5vBjPS8vOM/kswR/SEQZ4Xo2HIV3EGLdTrXSV9tp417V/DiFUPg=\r\nCu LwjsgL9R0zeAPNkLdiyfJei5daLYdRj7jI4wwPPsg/lW9RyGNE49qG1GHcv/kKU9Fc8q6tpf=\r\nQWAH npayVGHL6heBP9gstcdH3YZ8OlFcrbqhDegTK0n7Kf969YfDkLzUeMjS3Dbl4hnvmr4BIF=\r\nOpN9Gd WmifJh63bQZN30COYozzEMKhikNUckZHGOAFIYSJpCPny9xIGtdVkhZjnFmYnsnvRNYN=\r\nSd9DCJ+8 P0LaisAOPG2m9LOTm/I/KAMtFWOc2kvRu951XfcqQgIdYYBHrA7bqwSt7EoN/BzGGJ=\r\nftGL3/GU/t Osc8a35HSQzwtJl8lwCBP1jNqGd3hipGbDIF/lQ6DMk7rL/pMCQvdR6ypKJEhs2o=\r\nJQR24An2QGRZ Dk0YSrpr+iYeOYwxzpu+CSA3diDZXBkehuSlpkOWtiTdshn1fwjswPMmyi84oe=\r\nPsY3GkfFZ4LugI A/zJ+oh/U8aHIXmp6ZClDUk/OWSpQGAHnlEKTkCtrPRk3PR9SLr2aBkHtJn1=\r\nV5/Kf09SksOQvNR0 yJJUnCsxdb5G9gjswAvsgeS99Af8IcY4k/SpwVu4ER+swG9CCAMVJTCtOg=\r\nzJS42HLB2EEBZ9rmsn sAOvsKW/Q+VTooCesPZm3i/Cp9ARBnjE6qkXaulhSF5qPGRpS9Kir3Xt=\r\nBHbgDSy0D5VvBw90VEOd Y2rr8Qy0QZcOQ/JS0yFLmyo6yIwdr5ElAjvwRhZghpLOGr4V9M9Q9a=\r\n3wfLJyHACSrH7a+1CzGxWb S+fO13Flz46hfBs2bKioa2/lh826COzACmzp71jSP9RMqQJ6yEpT=\r\nhvIP7Rdtnd0DUrPNpQv516tf qQjrnVjVKm1GvXa+1FEIYdaXunYCO7CGGOOtlSr8Q8WMO+0f4c=\r\npegp59mG/aVDcLeLLNpXXUqzd6 GJKXGg9Z2lNRIjNwvk7jCOxABRbcj2OMAxU9ab/If1YBPWV7=\r\nKTw2dt2pmMEHUBioqJf2ktVhSF5q PGRp4HyNxr2r6Tq3IsSU/VLafx9d+DJv/b8PmwF9WNK0ne=\r\nwDFUuDsv89qPu+OqwTy8erijGe2BJw yk4Jx12b4Usk5XPpNuFYXZTbz3Pq9/Rjx10pgXlNjHFq=\r\npUWe5Xa5P78q/1mHf/7r30NJ3yuMcf3j 68dh1RsBAAAAumZn/3KoalmbkhgAAAAgZwR2AAAAIG=\r\nMEdgAAACBjBHYAAAAgYwR2AAAAIGMEdgAA ACBjBHYAAAAgYwR2AAAAIGMEdgAAACBjBHYAAAAg=\r\nYwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAA IGPvEoyxu7N/GROMAwAAAOARZtgBAACAjBHYAQ=\r\nAAgIwR2AEAAICMEdgBAACAjBHYAQAAgIwR2AEA AICMEdgBAACAjBHYAQAAgIwR2AEAAICMEdgB=\r\nAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAA gIwR2AEAAICMvZN0K+lLw/cBAAAA4An/D+=\r\npVjENe+oQjAAAAAElFTkSuQmCC --b2=3D_A8XnifFXRzA0dUmkccjmOCoLbTFRFN7hRpd9cKY-=\r\n-</company_logo></p>\r\n--b2=_umIv8wt6HaFV1KXO8rssMAieLQxUAQNfpuIzUNLlUWM\r\nContent-Type: image/png; name=logo_1762869843.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <company_logo>\r\nContent-Disposition: inline; filename=logo_1762869843.png\r\n\r\n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\r\n\r\n--b2=_umIv8wt6HaFV1KXO8rssMAieLQxUAQNfpuIzUNLlUWM--','\r\nTest\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\n\r\n\r\n\r\n\r\nOn Dec 4, 2025, Mavrix1 wrote:\r\n--b2=_A8XnifFXRzA0dUmkccjmOCoLbTFRFN7hRpd9cKY Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable\r\nHey Admin!',0,0,0,0,0,0,'2025-12-04 12:01:24','2025-12-04 12:01:31','2025-12-04 12:01:31','2025-12-04 12:01:31',NULL,NULL,NULL),
(57,1,'<1764851691.1@erp>',NULL,NULL,'Test','admin@mavrix.one','Admin User','<p>See ya </p>\r\n<p></p>\r\n<table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n<div style=\"margin-bottom: 10px;\"><strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span></div>\r\n<div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\"><img src=\"cid:company_logo\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong><br><em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br><em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br><em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br><em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','See ya \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\n\r\n',1,0,0,0,0,0,'2025-12-04 12:34:51','2025-12-04 12:34:51','2025-12-04 12:34:51','2025-12-04 12:34:51',NULL,NULL,NULL),
(58,1,'<wnivrE434LMeRopgRwsUIsPLKZ0jeArvOAgjrlU7U@localhost>',NULL,NULL,'Test','contact@mavrix.one','Mavrix1','--b2=_wnivrE434LMeRopgRwsUIsPLKZ0jeArvOAgjrlU7U\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<p>See ya=C2=A0</p>\r\n<p></p>\r\n<table style=3D\"width: 100%; max-width: 600px; border-collapse: collapse; f=\r\nont-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=3D\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=3D\"width: 100%; border-collapse: collapse; padding-top: 15px;\"=\r\n>\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=3D\"vertical-align: top; padding-left: 20px; border-left: 2px soli=\r\nd #e0e0e0;\">\r\n<div style=3D\"margin-bottom: 10px;\"><strong style=3D\"font-size: 14px; color=\r\n: #0066cc;\">Admin User</strong><br><span style=3D\"font-size: 12px; color: #=\r\n666;\">Administrator</span></div>\r\n<div style=3D\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=3D\"mailto:admin@mavrix.one\" style=3D\"color: #0066cc; text-deco=\r\nration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=3D\"https://mavrix1.com\" style=3D\"color: #0066cc; text-decorati=\r\non: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=3D\"width: 200px; vertical-align: middle; text-align: center; padd=\r\ning-top: 10px;\"><img src=3D\"cid:company_logo\" alt=3D\"Mavrix1\" style=3D\"max-=\r\nwidth: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=3D\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1=\r\n.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=3D\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=3D\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFI=\r\nDENTIALITY NOTICE:</strong><br><em>This communication may contain confident=\r\nial information. Unauthorized review, use, disclosure, or distribution is p=\r\nrohibited.</em><br><br><em>This communication, including any attachments, m=\r\nay contain confidential, privileged, or Controlled Unclassified Information=\r\n (CUI) protected under federal law. It is intended solely for the use of th=\r\ne designated recipient(s). Any unauthorized review, use, disclosure, distri=\r\nbution, or copying is strictly prohibited and may be unlawful.</em><br><br>=\r\n<em>If you are not the intended recipient, please notify the sender immedia=\r\ntely, delete this email, and destroy all copies.</em><br><br><em>Unless exp=\r\nressly stated, the views and opinions expressed herein are those of the sen=\r\nder and do not necessarily reflect those of the sender=E2=80=99s employer o=\r\nr any U.S. Government agency. All recipients are responsible for handling i=\r\nnformation in accordance with applicable federal regulations, including but=\r\n not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n--b2=_wnivrE434LMeRopgRwsUIsPLKZ0jeArvOAgjrlU7U\r\nContent-Type: image/png; name=logo_1762869843.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <company_logo>\r\nContent-Disposition: inline; filename=logo_1762869843.png\r\n\r\n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\r\n\r\n--b2=_wnivrE434LMeRopgRwsUIsPLKZ0jeArvOAgjrlU7U--','See ya \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.',1,0,0,0,0,0,'2025-12-04 12:34:50','2025-12-04 12:35:11','2025-12-04 12:35:11','2025-12-04 12:35:15',NULL,NULL,NULL),
(59,1,'<1764852353.1@erp>',NULL,NULL,'Test to Admin','admin@mavrix.one','Admin User','<p>Hey y\'all Admin dudeds,<br>What\'s Up???</p>\r\n<p></p>\r\n<table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n<div style=\"margin-bottom: 10px;\"><strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span></div>\r\n<div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\"><img src=\"cid:company_logo\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong><br><em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br><em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br><em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br><em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Hey y\'all Admin dudeds,What\'s Up???\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\n\r\n',1,0,0,0,0,0,'2025-12-04 12:45:53','2025-12-04 12:45:53','2025-12-04 12:45:53','2025-12-04 12:45:53',NULL,NULL,NULL),
(60,1,'<pzqsjAwYuwiue7B4v1apfwkBlj7ytnZ8PijSK3qggNw@localhost>',NULL,NULL,'Test to Admin','contact@mavrix.one','Mavrix1','--b2=_pzqsjAwYuwiue7B4v1apfwkBlj7ytnZ8PijSK3qggNw\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<p>Hey y\'all Admin dudeds,<br>What\'s Up???</p>\r\n<p></p>\r\n<table style=3D\"width: 100%; max-width: 600px; border-collapse: collapse; f=\r\nont-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=3D\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=3D\"width: 100%; border-collapse: collapse; padding-top: 15px;\"=\r\n>\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=3D\"vertical-align: top; padding-left: 20px; border-left: 2px soli=\r\nd #e0e0e0;\">\r\n<div style=3D\"margin-bottom: 10px;\"><strong style=3D\"font-size: 14px; color=\r\n: #0066cc;\">Admin User</strong><br><span style=3D\"font-size: 12px; color: #=\r\n666;\">Administrator</span></div>\r\n<div style=3D\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=3D\"mailto:admin@mavrix.one\" style=3D\"color: #0066cc; text-deco=\r\nration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=3D\"https://mavrix1.com\" style=3D\"color: #0066cc; text-decorati=\r\non: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=3D\"width: 200px; vertical-align: middle; text-align: center; padd=\r\ning-top: 10px;\"><img src=3D\"cid:company_logo\" alt=3D\"Mavrix1\" style=3D\"max-=\r\nwidth: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=3D\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1=\r\n.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=3D\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=3D\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFI=\r\nDENTIALITY NOTICE:</strong><br><em>This communication may contain confident=\r\nial information. Unauthorized review, use, disclosure, or distribution is p=\r\nrohibited.</em><br><br><em>This communication, including any attachments, m=\r\nay contain confidential, privileged, or Controlled Unclassified Information=\r\n (CUI) protected under federal law. It is intended solely for the use of th=\r\ne designated recipient(s). Any unauthorized review, use, disclosure, distri=\r\nbution, or copying is strictly prohibited and may be unlawful.</em><br><br>=\r\n<em>If you are not the intended recipient, please notify the sender immedia=\r\ntely, delete this email, and destroy all copies.</em><br><br><em>Unless exp=\r\nressly stated, the views and opinions expressed herein are those of the sen=\r\nder and do not necessarily reflect those of the sender=E2=80=99s employer o=\r\nr any U.S. Government agency. All recipients are responsible for handling i=\r\nnformation in accordance with applicable federal regulations, including but=\r\n not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n--b2=_pzqsjAwYuwiue7B4v1apfwkBlj7ytnZ8PijSK3qggNw\r\nContent-Type: image/png; name=logo_1762869843.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <company_logo>\r\nContent-Disposition: inline; filename=logo_1762869843.png\r\n\r\n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\r\n\r\n--b2=_pzqsjAwYuwiue7B4v1apfwkBlj7ytnZ8PijSK3qggNw--','Hey y\'all Admin dudeds,What\'s Up???\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.',1,0,0,0,0,0,'2025-12-04 12:45:52','2025-12-04 12:46:36','2025-12-04 12:46:36','2025-12-04 12:46:39',NULL,NULL,NULL),
(61,1,'<1764854108.1@erp>',NULL,NULL,'Test Admin','admin@mavrix.one','Admin User','<p>Hey y\'all!</p>\r\n<p></p>\r\n<table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n<div style=\"margin-bottom: 10px;\"><strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span></div>\r\n<div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\"><img src=\"cid:company_logo\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong><br><em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br><em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br><em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br><em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Hey y\'all!\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\n\r\n',1,0,0,0,0,0,'2025-12-04 13:15:08','2025-12-04 13:15:08','2025-12-04 13:15:08','2025-12-04 13:15:08',NULL,NULL,NULL),
(62,1,'<TTurHBbe3GmAkvst0W9dYEGrIM3qEBbBkdKpP0DE@localhost>',NULL,NULL,'Test Admin','contact@mavrix.one','Mavrix1','--b2=_TTurHBbe3GmAkvst0W9dYEGrIM3qEBbBkdKpP0DE\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<p>Hey y\'all!</p>\r\n<p></p>\r\n<table style=3D\"width: 100%; max-width: 600px; border-collapse: collapse; f=\r\nont-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=3D\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=3D\"width: 100%; border-collapse: collapse; padding-top: 15px;\"=\r\n>\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=3D\"vertical-align: top; padding-left: 20px; border-left: 2px soli=\r\nd #e0e0e0;\">\r\n<div style=3D\"margin-bottom: 10px;\"><strong style=3D\"font-size: 14px; color=\r\n: #0066cc;\">Admin User</strong><br><span style=3D\"font-size: 12px; color: #=\r\n666;\">Administrator</span></div>\r\n<div style=3D\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=3D\"mailto:admin@mavrix.one\" style=3D\"color: #0066cc; text-deco=\r\nration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=3D\"https://mavrix1.com\" style=3D\"color: #0066cc; text-decorati=\r\non: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=3D\"width: 200px; vertical-align: middle; text-align: center; padd=\r\ning-top: 10px;\"><img src=3D\"cid:company_logo\" alt=3D\"Mavrix1\" style=3D\"max-=\r\nwidth: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=3D\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1=\r\n.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=3D\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=3D\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFI=\r\nDENTIALITY NOTICE:</strong><br><em>This communication may contain confident=\r\nial information. Unauthorized review, use, disclosure, or distribution is p=\r\nrohibited.</em><br><br><em>This communication, including any attachments, m=\r\nay contain confidential, privileged, or Controlled Unclassified Information=\r\n (CUI) protected under federal law. It is intended solely for the use of th=\r\ne designated recipient(s). Any unauthorized review, use, disclosure, distri=\r\nbution, or copying is strictly prohibited and may be unlawful.</em><br><br>=\r\n<em>If you are not the intended recipient, please notify the sender immedia=\r\ntely, delete this email, and destroy all copies.</em><br><br><em>Unless exp=\r\nressly stated, the views and opinions expressed herein are those of the sen=\r\nder and do not necessarily reflect those of the sender=E2=80=99s employer o=\r\nr any U.S. Government agency. All recipients are responsible for handling i=\r\nnformation in accordance with applicable federal regulations, including but=\r\n not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n--b2=_TTurHBbe3GmAkvst0W9dYEGrIM3qEBbBkdKpP0DE\r\nContent-Type: image/png; name=logo_1762869843.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <company_logo>\r\nContent-Disposition: inline; filename=logo_1762869843.png\r\n\r\n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\r\n\r\n--b2=_TTurHBbe3GmAkvst0W9dYEGrIM3qEBbBkdKpP0DE--','Hey y\'all!\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.',1,0,0,0,0,0,'2025-12-04 13:15:07','2025-12-04 13:15:17','2025-12-04 13:15:17','2025-12-04 13:15:21',NULL,NULL,NULL),
(63,4,'<CANZ1scvVP2fcOtcXukOQNZ_n8DxqCBE=rr5bKQJyJMnNkd91zg@mail.gmail.com>',NULL,NULL,'Ashby - revisit?','jake@ashbyhq.com','Jake McLinden','<html><head></head><body><div dir=\"auto\">\r\n   <p style=\"margin:0\">Hi Rick,</p>\r\n   <p style=\"margin:0\"><br class=\"hs-trailingbreak\"></p>\r\n   <p style=\"margin:0\">With the last quarter of the year under way, many of the TA leaders I&#39;m speaking with are in the midst of planning for 2026 – including the tools that&#39;ll make their teams most successful. You had expressed interest in Ashby earlier this year but the timing wasn&#39;t right.</p>\r\n   <p style=\"text-align:start;margin:0\"><br class=\"hs-trailingbreak\"></p>\r\n   <p style=\"text-align:start;margin:0\">Curious if it makes sense to revisit and explore how Ashby can help streamline your hiring workflows and set your process up for scale in the new year?</p>\r\n   <p style=\"text-align:start;margin:0\"><br class=\"hs-trailingbreak\"></p>\r\n   <p style=\"text-align:start;margin:0\">Ashby is quickly becoming <a href=\"https://sales.ashbyhq.com/e3t/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3kzW7XlCCc4xKPd-W32C-KM7hVYsfW3RMjCL8rgs68W1f10NV3xrzYRW7thkTK20bdRbN5dXHGNbjSThW97mS6J3sXZ3rN8yh8vS2prJrV4ZJ381Vlf2VW3sKrpj36pyv5V5DNPk77gJ3VN5dnTsHdZ_cbN2ks7fzgXsX0W23fZ6X57SLftW4NRwjz2rB4kbW7lC2T-4-lY36W1hPlDY5-hmZ9W63PXXl7dN_2bV80fK_1PXtPnN5NY6RV60XBbN11XGSVh6SzVW1jcMXt7S5GQzf5fGkG204\" title=\"the default ATS of choice\" target=\"_blank\">the default ATS of choice</a> for growing teams.</p>\r\n   <p style=\"text-align:start;margin:0\"><br class=\"hs-trailingbreak\"></p>\r\n   <p style=\"text-align:start;margin:0\">Shoot me a note if you&#39;d like to learn more or feel free to find some time in <a href=\"https://sales.ashbyhq.com/e3t/Ctc/ZS+23284/cBJBm04/Jks2-6qcW69sMD-6lZ3krW5hvX6H5d-24vW1QfVsP77nHjyW4gc-h02p-D62N5Fwm4-_8MD1W5zK1Ft7sbTwdW6b_pQB28NlzfVVsChf6QHKgRW5Yw1db92PKW8W2NT1B55Rv4mqW4KNbkr7ZdTvmW3H_s1g8lRHLkW5b2hqz6L2-zsW3VS3Td6NF8cXW3Pl9Nr40bLj1W8bkds44S7QySW7H62yK6D7mzWW6NM-k_6YjdbpVnlw292lvXt3W3tZhWP8yNGcjW5NX2Qs8p6h3bf3SkfXg04\" target=\"_blank\" rel=\"nofollow noopener noreferrer\" style=\"box-sizing:border-box;font-weight:600;text-decoration:none\"><strong>on my calendar.</strong></a></p>\r\n   <p style=\"text-align:start;margin:0\"><br class=\"hs-trailingbreak\"></p>\r\n   <p style=\"text-align:start;margin:0\">Best,</p>\r\n   <p style=\"text-align:start;margin:0\">Jake</p>\r\n   <p style=\"margin:0\"><br class=\"hs-trailingbreak\"></p>\r\n   <div>\r\n    <div dir=\"ltr\">\r\n     <div dir=\"ltr\">\r\n      <table style=\"font-size:13px;color:rgb(136,136,136);font-family:sans-serif;border:none;border-collapse:collapse\">\r\n       <tbody>\r\n        <tr style=\"height:48pt\">\r\n         <td style=\"border-right:0.75pt solid rgb(213,213,213);vertical-align:middle;padding:0pt 15pt 0pt 0pt\"><p style=\"text-align:center;line-height:1.38;margin-top:0pt;margin-bottom:0pt\"><font color=\"#000000\"><img alt=\"\"><img src=\"cid:6c38d966cbcebfbe09553b99d74f75be\" width=\"96\" height=\"31\"><br></font></p></td>\r\n         <td style=\"border-left:0.75pt solid rgb(213,213,213);vertical-align:top;padding:0pt 0pt 0pt 15pt\"><p style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">Jake McLinden</font></p><p style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">Account Executive</font></p><p style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">774.277.1507 | <a href=\"https://sales.ashbyhq.com/e3t/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3p4W3j2fd421RyXBN38qMfDXtC2PW6-CCyB7F7K9qMcGsXG-wbQMW6r74-y5BYLylW21pCGx80xcl3W8sjB1x98nsvhN1h01s0hRQwTW460cP67-qmW1W3hnK4729xfkRW82YLVn442r7YW3CJWKr5HjkXqN5_wnGl2TpMVW17wfMP4dfT8nW3YFX4C3cCcCGW82wTPX4NHMh2W78zTXz4vQ6P4N21TZMcyR4wKN8LP1NSmg6lVW7nmd_w8frdQ5W8s-53L1L5BmsW69rXlJ56PZfmf79QrZb04\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">LinkedIn</a></font></p><p style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\"><a href=\"https://sales.ashbyhq.com/e3t/Ctc/ZS+23284/cBJBm04/JlF2-6qcW8wLKSR6lZ3q6W4-3YFg8sN3GXW6TfNp_5Gf7gdW6Q4fJY3pd_c0W1XSwVt3CHhx_W1ZNWSK1W5hDCW1H2TKY3F_vHDW5jHQpF6FTgp2W5_tF9y36z6KFW1gn7vf1sMYCvW4TM02T1048QQW4h95dx3b2WqnN65lr7ZsnZ1cW61SKyq2bVgZyW8bhH7L8XghvcW5c0HC86t6GF8W8ywfgM38Q-jhW2rPsjK5cntqTW3kc2cf3kNHwHW2W0Jk85rTHqnW3XgmZs1FQ9SvW97H28P6X9G1yW6wvLT-10Yd-7W2xl5_58gRfScW25pRtX7Y-3CzVwx3Qw6HWWcJW7ZsTvL14674RW2mmBNR2NZL2ZN6cSnF7xgbPff15-Sfz04\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Book a Meeting</a></font></p><p style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\"><a href=\"http://www.ashbyhq.com/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">www.ashbyhq.com</a></font></p></td>\r\n        </tr>\r\n       </tbody>\r\n      </table>\r\n     </div>\r\n    </div>\r\n   </div>\r\n   <div style=\"color:#33475b;font-family:sans-serif;font-weight:400;font-size:14px\"></div>\r\n   <p style=\"margin:0\"><br class=\"hs-trailingbreak\"></p>\r\n  </div>\r\n \r\n<img width=\"1\" height=\"1\" style=\"display:none\" alt=\"\" src=\"https://sales.ashbyhq.com/e3t/Cto/ZS+23284/cBJBm04/R5X8b4bTZN6rhp1Z2fDgXW3JK_7c1X0ykbW1X07gf1XlT-MW1Gy20J20TYH8W25cCC91X0cRWW1NsCXX1W-W13N22XzNXhPQZqf8Xjkl004\"></body></html>','Hi Rick,\r\n\r\n\r\nWith the last quarter of the year under way, many of the TA leaders I\'m\r\nspeaking with are in the midst of planning for 2026 – including the tools\r\nthat\'ll make their teams most successful. You had expressed interest in\r\nAshby earlier this year but the timing wasn\'t right.\r\n\r\n\r\nCurious if it makes sense to revisit and explore how Ashby can help\r\nstreamline your hiring workflows and set your process up for scale in the\r\nnew year?\r\n\r\n\r\nAshby is quickly becoming the default ATS of choice\r\n<https://sales.ashbyhq.com/e3t/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3kzW7XlCCc4xKPd-W32C-KM7hVYsfW3RMjCL8rgs68W1f10NV3xrzYRW7thkTK20bdRbN5dXHGNbjSThW97mS6J3sXZ3rN8yh8vS2prJrV4ZJ381Vlf2VW3sKrpj36pyv5V5DNPk77gJ3VN5dnTsHdZ_cbN2ks7fzgXsX0W23fZ6X57SLftW4NRwjz2rB4kbW7lC2T-4-lY36W1hPlDY5-hmZ9W63PXXl7dN_2bV80fK_1PXtPnN5NY6RV60XBbN11XGSVh6SzVW1jcMXt7S5GQzf5fGkG204>\r\nfor growing teams.\r\n\r\n\r\nShoot me a note if you\'d like to learn more or feel free to find some time\r\nin *on my calendar.*\r\n<https://sales.ashbyhq.com/e3t/Ctc/ZS+23284/cBJBm04/Jks2-6qcW69sMD-6lZ3krW5hvX6H5d-24vW1QfVsP77nHjyW4gc-h02p-D62N5Fwm4-_8MD1W5zK1Ft7sbTwdW6b_pQB28NlzfVVsChf6QHKgRW5Yw1db92PKW8W2NT1B55Rv4mqW4KNbkr7ZdTvmW3H_s1g8lRHLkW5b2hqz6L2-zsW3VS3Td6NF8cXW3Pl9Nr40bLj1W8bkds44S7QySW7H62yK6D7mzWW6NM-k_6YjdbpVnlw292lvXt3W3tZhWP8yNGcjW5NX2Qs8p6h3bf3SkfXg04>\r\n\r\n\r\nBest,\r\n\r\nJake\r\n\r\n\r\n\r\nJake McLinden\r\n\r\nAccount Executive\r\n\r\n774.277.1507 | LinkedIn\r\n<https://sales.ashbyhq.com/e3t/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3p4W3j2fd421RyXBN38qMfDXtC2PW6-CCyB7F7K9qMcGsXG-wbQMW6r74-y5BYLylW21pCGx80xcl3W8sjB1x98nsvhN1h01s0hRQwTW460cP67-qmW1W3hnK4729xfkRW82YLVn442r7YW3CJWKr5HjkXqN5_wnGl2TpMVW17wfMP4dfT8nW3YFX4C3cCcCGW82wTPX4NHMh2W78zTXz4vQ6P4N21TZMcyR4wKN8LP1NSmg6lVW7nmd_w8frdQ5W8s-53L1L5BmsW69rXlJ56PZfmf79QrZb04>\r\n\r\nBook a Meeting\r\n<https://sales.ashbyhq.com/e3t/Ctc/ZS+23284/cBJBm04/JlF2-6qcW8wLKSR6lZ3q6W4-3YFg8sN3GXW6TfNp_5Gf7gdW6Q4fJY3pd_c0W1XSwVt3CHhx_W1ZNWSK1W5hDCW1H2TKY3F_vHDW5jHQpF6FTgp2W5_tF9y36z6KFW1gn7vf1sMYCvW4TM02T1048QQW4h95dx3b2WqnN65lr7ZsnZ1cW61SKyq2bVgZyW8bhH7L8XghvcW5c0HC86t6GF8W8ywfgM38Q-jhW2rPsjK5cntqTW3kc2cf3kNHwHW2W0Jk85rTHqnW3XgmZs1FQ9SvW97H28P6X9G1yW6wvLT-10Yd-7W2xl5_58gRfScW25pRtX7Y-3CzVwx3Qw6HWWcJW7ZsTvL14674RW2mmBNR2NZL2ZN6cSnF7xgbPff15-Sfz04>\r\n\r\nwww.ashbyhq.com',0,0,0,0,0,0,'2025-11-19 16:04:48','2025-12-04 14:04:32','2025-12-04 14:04:32','2025-12-04 14:04:32',NULL,NULL,NULL),
(64,4,'<CAGgBgfBEg_KetPeMpSKmyPyWTJ-w=OgnXMcoL=zNsoqi8Q6oWw@mail.gmail.com>',NULL,NULL,'Extra Work? (11/19/25 1115)','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">Rick:</div><div><br></div><div><div class=\"gmail_default\" style=\"font-size:small\">Joel&#39;s made everything I have for him to do work -- so I need to find him some work or find another client project I can include him on. Do you know of someone?</div></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">When that money comes in we&#39;re going to want to clone Joel, but I also don&#39;t want to lose him.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><span class=\"gmail_default\" style=\"font-size:small\">Joel has </span>over 20 years of industry experience. Joel is proficient in a wide range of programming languages, with deep expertise in C and assembly. His typical workflow involves developing in C and then optimizing performance-critical sections directly in assembly when needed.<br><br>Joel has extensive hands-on experience with 8-bit and 16-bit microcontrollers, including both ARM-based devices and proprietary architectures such as Microchip’s PIC family. He is also familiar with higher-performance processors from NXP and has some background in FPGA design. In addition, he is a long-time Linux enthusiast, comfortable working close to the metal across a variety of environments.<br><br>He prefers remote engagements but is open to on-site work for firms in the Rochester, NY area.<br><br>If you have upcoming projects that could benefit from his skill set, please feel free to <span class=\"gmail_default\" style=\"font-size:small\"></span>l<span class=\"gmail_default\" style=\"font-size:small\">et me know.</span><br><span style=\"font-family:&quot;courier new&quot;,monospace\"><br></span></div><div><span style=\"font-family:&quot;courier new&quot;,monospace\">Regards,</span><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div dir=\"ltr\"><div><font face=\"courier new, monospace\">Thomas Pownall</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">CADX Services, Inc.</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Tel: 585-624-1491 X101</font></div><div><font face=\"courier new, monospace\">Fax: 585-582-1101</font></div><div><font face=\"courier new, monospace\">E-Mail: <a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a></font></div><div><font face=\"courier new, monospace\">Web: <a href=\"http://www.cadxservices.com\" target=\"_blank\">http://www.cadxservices.com</a></font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\">**************** Confidentiality Statement ****************</font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Privileged/Confidential Information may be contained in this</font></div><div><font face=\"courier new, monospace\">message. If you are not the addressee indicated in this message</font></div><div><font face=\"courier new, monospace\">(or responsible for delivery of the message to such person),</font></div><div><font face=\"courier new, monospace\">you may not copy or deliver this message to anyone. In such</font></div><div><font face=\"courier new, monospace\">case, you should destroy this message, and notify us</font></div><div><font face=\"courier new, monospace\">immediately. If you or your employer does not consent to</font></div><div><font face=\"courier new, monospace\">Internet email messages of this kind, please advise us</font></div><div><font face=\"courier new, monospace\">immediately. Opinions, conclusions and other information</font></div><div><font face=\"courier new, monospace\">expressed in this message are not given or endorsed by my firm</font></div><div><font face=\"courier new, monospace\">or employer unless otherwise indicated by an authorized</font></div><div><font face=\"courier new, monospace\">representative independent of this message.</font></div></div></div></div></div></div>','Rick:\r\n\r\nJoel\'s made everything I have for him to do work -- so I need to find him\r\nsome work or find another client project I can include him on. Do you know\r\nof someone?\r\n\r\nWhen that money comes in we\'re going to want to clone Joel, but I also\r\ndon\'t want to lose him.\r\n\r\nJoel has over 20 years of industry experience. Joel is proficient in a wide\r\nrange of programming languages, with deep expertise in C and assembly. His\r\ntypical workflow involves developing in C and then optimizing\r\nperformance-critical sections directly in assembly when needed.\r\n\r\nJoel has extensive hands-on experience with 8-bit and 16-bit\r\nmicrocontrollers, including both ARM-based devices and proprietary\r\narchitectures such as Microchip’s PIC family. He is also familiar with\r\nhigher-performance processors from NXP and has some background in FPGA\r\ndesign. In addition, he is a long-time Linux enthusiast, comfortable\r\nworking close to the metal across a variety of environments.\r\n\r\nHe prefers remote engagements but is open to on-site work for firms in the\r\nRochester, NY area.\r\n\r\nIf you have upcoming projects that could benefit from his skill set, please\r\nfeel free to let me know.\r\n\r\nRegards,\r\nThomas Pownall\r\n\r\nCADX Services, Inc.\r\n\r\nTel: 585-624-1491 X101\r\nFax: 585-582-1101\r\nE-Mail: tpownall@cadxservices.com\r\nWeb: http://www.cadxservices.com\r\n\r\n***********************************************************\r\n**************** Confidentiality Statement ****************\r\n***********************************************************\r\n\r\nPrivileged/Confidential Information may be contained in this\r\nmessage. If you are not the addressee indicated in this message\r\n(or responsible for delivery of the message to such person),\r\nyou may not copy or deliver this message to anyone. In such\r\ncase, you should destroy this message, and notify us\r\nimmediately. If you or your employer does not consent to\r\nInternet email messages of this kind, please advise us\r\nimmediately. Opinions, conclusions and other information\r\nexpressed in this message are not given or endorsed by my firm\r\nor employer unless otherwise indicated by an authorized\r\nrepresentative independent of this message.',0,0,0,0,0,0,'2025-11-19 16:12:17','2025-12-04 14:04:32','2025-12-04 14:04:32','2025-12-04 14:04:32',NULL,NULL,NULL),
(65,4,'<CAGgBgfBOr7JdtebH_KwTAhK_gxgGJ=JqjZZwv6ksmbNQYX4uDQ@mail.gmail.com>',NULL,NULL,'Re: Extra Work? (11/19/25 1115)','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">That&#39;s awesome, but I cleared out my piggy bank paying him for other jobs around here, so I&#39;m looking for a stopgap for him.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">I want to keep him, and you want to keep him (even if you haven&#39;t experienced why yet), but that costs money.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">The products I went out to find are mostly production -- I made my money on selling quantities of things.  I just got another order for 500 pieces of a thing, but delivery won&#39;t be here for another week and then payment&#39;s another 14 days out.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">The moral of the story is I focused too long on the drone project without mining for money -- if I had shifted my focus a month earlier it would be different.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">I&#39;m also trying to avoid 2 big boys that would eat me up if they decide they like me, and Joel alone won&#39;t be enough for them -- they would need mechanical, hardware and firmware.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">That&#39;s just FYI.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">-- Tom</div><div class=\"gmail_default\" style=\"font-size:small\"></div></div><br><div><br></div></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Nov 19, 2025 at 12:25 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"> Good news is coming soon….like within the next 15 days… ok? <br> <br><p>On November 19, 2025 at 11:13:35 AM, Thomas Pownall (<a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">Rick:</div><div><br></div><div><div class=\"gmail_default\" style=\"font-size:small\">Joel&#39;s made everything I have for him to do work -- so I need to find him some work or find another client project I can include him on. Do you know of someone?</div></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">When that money comes in we&#39;re going to want to clone Joel, but I also don&#39;t want to lose him.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><span class=\"gmail_default\" style=\"font-size:small\">Joel has </span>over 20 years of industry experience. Joel is proficient in a wide range of programming languages, with deep expertise in C and assembly. His typical workflow involves developing in C and then optimizing performance-critical sections directly in assembly when needed.<br><br>Joel has extensive hands-on experience with 8-bit and 16-bit microcontrollers, including both ARM-based devices and proprietary architectures such as Microchip’s PIC family. He is also familiar with higher-performance processors from NXP and has some background in FPGA design. In addition, he is a long-time Linux enthusiast, comfortable working close to the metal across a variety of environments.<br><br>He prefers remote engagements but is open to on-site work for firms in the Rochester, NY area.<br><br>If you have upcoming projects that could benefit from his skill set, please feel free to <span class=\"gmail_default\" style=\"font-size:small\"></span>l<span class=\"gmail_default\" style=\"font-size:small\">et me know.</span><br><span style=\"font-family:&quot;courier new&quot;,monospace\"><br></span></div><div><span style=\"font-family:&quot;courier new&quot;,monospace\">Regards,</span><br></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div dir=\"ltr\"><div><font face=\"courier new, monospace\">Thomas Pownall</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">CADX Services, Inc.</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Tel: 585-624-1491 X101</font></div><div><font face=\"courier new, monospace\">Fax: 585-582-1101</font></div><div><font face=\"courier new, monospace\">E-Mail: <a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a></font></div><div><font face=\"courier new, monospace\">Web: <a href=\"http://www.cadxservices.com\" target=\"_blank\">http://www.cadxservices.com</a></font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\">**************** Confidentiality Statement ****************</font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Privileged/Confidential Information may be contained in this</font></div><div><font face=\"courier new, monospace\">message. If you are not the addressee indicated in this message</font></div><div><font face=\"courier new, monospace\">(or responsible for delivery of the message to such person),</font></div><div><font face=\"courier new, monospace\">you may not copy or deliver this message to anyone. In such</font></div><div><font face=\"courier new, monospace\">case, you should destroy this message, and notify us</font></div><div><font face=\"courier new, monospace\">immediately. If you or your employer does not consent to</font></div><div><font face=\"courier new, monospace\">Internet email messages of this kind, please advise us</font></div><div><font face=\"courier new, monospace\">immediately. Opinions, conclusions and other information</font></div><div><font face=\"courier new, monospace\">expressed in this message are not given or endorsed by my firm</font></div><div><font face=\"courier new, monospace\">or employer unless otherwise indicated by an authorized</font></div><div><font face=\"courier new, monospace\">representative independent of this message.</font></div></div></div></div></div></div>\r\n\r\n</div></div></span></blockquote></blockquote></div>','That\'s awesome, but I cleared out my piggy bank paying him for other jobs\r\naround here, so I\'m looking for a stopgap for him.\r\n\r\nI want to keep him, and you want to keep him (even if you haven\'t\r\nexperienced why yet), but that costs money.\r\n\r\nThe products I went out to find are mostly production -- I made my money on\r\nselling quantities of things.  I just got another order for 500 pieces of a\r\nthing, but delivery won\'t be here for another week and then payment\'s\r\nanother 14 days out.\r\n\r\nThe moral of the story is I focused too long on the drone project without\r\nmining for money -- if I had shifted my focus a month earlier it would be\r\ndifferent.\r\n\r\nI\'m also trying to avoid 2 big boys that would eat me up if they decide\r\nthey like me, and Joel alone won\'t be enough for them -- they would need\r\nmechanical, hardware and firmware.\r\n\r\nThat\'s just FYI.\r\n\r\n-- Tom\r\n\r\n\r\n\r\nOn Wed, Nov 19, 2025 at 12:25 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> Good news is coming soon….like within the next 15 days… ok?\r\n>\r\n> On November 19, 2025 at 11:13:35 AM, Thomas Pownall (\r\n> tpownall@cadxservices.com) wrote:\r\n>\r\n> Rick:\r\n>\r\n> Joel\'s made everything I have for him to do work -- so I need to find him\r\n> some work or find another client project I can include him on. Do you know\r\n> of someone?\r\n>\r\n> When that money comes in we\'re going to want to clone Joel, but I also\r\n> don\'t want to lose him.\r\n>\r\n> Joel has over 20 years of industry experience. Joel is proficient in a\r\n> wide range of programming languages, with deep expertise in C and assembly.\r\n> His typical workflow involves developing in C and then optimizing\r\n> performance-critical sections directly in assembly when needed.\r\n>\r\n> Joel has extensive hands-on experience with 8-bit and 16-bit\r\n> microcontrollers, including both ARM-based devices and proprietary\r\n> architectures such as Microchip’s PIC family. He is also familiar with\r\n> higher-performance processors from NXP and has some background in FPGA\r\n> design. In addition, he is a long-time Linux enthusiast, comfortable\r\n> working close to the metal across a variety of environments.\r\n>\r\n> He prefers remote engagements but is open to on-site work for firms in the\r\n> Rochester, NY area.\r\n>\r\n> If you have upcoming projects that could benefit from his skill set,\r\n> please feel free to let me know.\r\n>\r\n> Regards,\r\n> Thomas Pownall\r\n>\r\n> CADX Services, Inc.\r\n>\r\n> Tel: 585-624-1491 X101\r\n> Fax: 585-582-1101\r\n> E-Mail: tpownall@cadxservices.com\r\n> Web: http://www.cadxservices.com\r\n>\r\n> ***********************************************************\r\n> **************** Confidentiality Statement ****************\r\n> ***********************************************************\r\n>\r\n> Privileged/Confidential Information may be contained in this\r\n> message. If you are not the addressee indicated in this message\r\n> (or responsible for delivery of the message to such person),\r\n> you may not copy or deliver this message to anyone. In such\r\n> case, you should destroy this message, and notify us\r\n> immediately. If you or your employer does not consent to\r\n> Internet email messages of this kind, please advise us\r\n> immediately. Opinions, conclusions and other information\r\n> expressed in this message are not given or endorsed by my firm\r\n> or employer unless otherwise indicated by an authorized\r\n> representative independent of this message.\r\n>\r\n>',0,0,0,0,0,0,'2025-11-19 17:30:49','2025-12-04 14:04:32','2025-12-04 14:04:32','2025-12-04 14:04:32',NULL,NULL,NULL),
(66,4,'<CAGOCFXisPuQe5-7UjuOYZNjrK_GDaS1G3HjWJsg+3KvAy8SPfA@mail.gmail.com>',NULL,NULL,'Fwd: Recap of your meeting with Lithium Battery Co','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">Fathom</strong> <span dir=\"auto\">&lt;no-reply@fathom.video&gt;</span><br>Date: Wed, Nov 19, 2025 at 3:06 PM<br>Subject: Recap of your meeting with Lithium Battery Co<br>To: Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\">nathan@lithiumbatterycompany.com</a>&gt;<br></div><br><br><div class=\"msg2037099574913418531\"><u></u>\r\n\r\n  \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n  \r\n  <div id=\"m_3925713835082034958emailBody\" style=\"margin:0;padding:0\">\r\n    <div style=\"display:none\">Meeting Purpose\r\n\r\nKick off the Lithium Battery Company (LBC) manufacturing facility fit-out project.\r\n\r\nKey Takeaways\r\n\r\n  - Suite 3 is the critical path: Its manufacturing equipment requires 380V/60Hz power, a 40–60% humidity range, and an ISO Class 8 cleanroom environment.\r\n  - Side-mounted HVAC is the preferred solution: It avoids roof penetrations, simplifies maintenance, and allows LBC to retain the equipment if they relocate.\r\n  - A 3rd-party plan review will accelerate permitting: This strategy is expected to cut the timeline from a typical 30+ days to ~10 days, bypassing city backlogs.\r\n  - The facility layout is confirmed: The large prismatic line will move to the left side of Suite 3, creating a central logistics channel.\r\n\r\nTopics\r\n\r\nFacility Layout &amp; Workflow\r\n\r\n  - Suite 3 (Manufacturing):\r\n      - Houses five production lines (Kukurova, prismatic, cylindrical).\r\n      - Layout Change: The large prismatic line will move to the left side and rotate 180 degrees to create a central logistics channel.\r\n      - Personnel: ~40 people (10 per line + supervisors).\r\n  - Suite 1 (Testing &amp; Aging):\r\n      - Function: Post-production testing and aging of battery modules.\r\n      - Equipment: Runs on the building&#39;s existing 480V/3-phase power.\r\n      - Personnel: 10–30 people.\r\n  - Suite 2 (Shipping &amp; Receiving):\r\n      - Function: Unboxing and staging equipment before moving it to Suite 3.\r\n      - Storage: Home Depot-style racks for lightweight components (&lt;15 ft high).\r\n      - Logistics: Electric pallet jacks only; forklifts are restricted to Suite 2 to protect floors.\r\n\r\nHVAC &amp; Environmental Control\r\n\r\n  - Suite 3 Requirements:\r\n      - Temperature: 18–25°C (64.4–77°F).\r\n      - Humidity: 40–60% RH.\r\n      - Filtration: ISO Class 8 cleanroom environment.\r\n      - Pressure: Positive pressure to prevent contamination.\r\n  - HVAC Solution → Side-Mounted Units:\r\n      - Rationale: Avoids roof penetrations, simplifies maintenance, and allows LBC to retain the equipment upon relocation.\r\n      - Implementation: Units on exterior walls with interior air handlers and ductwork.\r\n      - Flood Protection: Units must be raised above the Base Flood Elevation (BFE) on pads or brackets.\r\n  - Ventilation &amp; Gas Control:\r\n      - Challenge: The building&#39;s existing wall vents will compromise conditioned air.\r\n      - Solution: Isolate vents with ductwork to direct exhaust outside.\r\n      - Gas Lines: Compressed air, nitrogen, and oxygen lines are required.\r\n          - Nitrogen: Gaseous form. Options include portable tanks, a bulk tank, or a nitrogen generator.\r\n\r\nPower &amp; Electrical\r\n\r\n  - Suite 3 Equipment Power:\r\n      - Requirement: 380V/60Hz, 3-phase.\r\n      - Solution: Three readily available Maddox step-down transformers (4-week lead time) will convert the building&#39;s 480V supply.\r\n  - Power Capacity:\r\n      - Initial: Sufficient for day-one operations.\r\n      - Future: The Main Distribution Panel (MDP) must be sized for future expansion (e.g., CNC machines).\r\n      - Strategy: LBC will request TECO to pay for future power upgrades.\r\n  - Lighting:\r\n      - Requirement: Replace existing motion-sensor LEDs with a new, higher-output system.\r\n      - Rationale: Improve visibility and ensure safety, especially with potential nitrogen leaks.\r\n\r\nPermitting &amp; Schedule\r\n\r\n  - Permitting Strategy → 3rd-Party Review:\r\n      - Rationale: Accelerates the timeline by bypassing city backlogs.\r\n      - Timeline: Expected to reduce review from 30+ days to ~10 days.\r\n  - Construction Sequencing:\r\n      - Phase 1: Complete Suite 3 (flooring, HVAC, electrical).\r\n      - Phase 2: Unbox and stage equipment in Suite 2.\r\n      - Phase 3: Move equipment into Suite 3, then complete Suite 2 flooring.\r\n  - Occupancy: LBC can assemble equipment before receiving the Certificate of Occupancy (CO), but cannot begin production.\r\n\r\nFacility Enhancements\r\n\r\n  - Flooring: Anti-static epoxy floor required throughout.\r\n  - Material Handling:\r\n      - Bridge Crane: A mobile or monorail system is needed to move heavy battery packs.\r\n      - Ramps: The exterior ramp for container loading needs security enhancements.\r\n  - Office &amp; Break Areas:\r\n      - Reception: Add a foyer at the main entrance.\r\n      - Break Room: Convert a corner of Suite 1 into a break room.\r\n      - Conference Rooms: Several smaller rooms and one large collaboration space are needed.\r\n\r\nNext Steps\r\n\r\n  - Jordan/Nathan:\r\n      - Distribute all equipment spec sheets to the design team.\r\n      - Confirm the final Suite 3 layout with the design team.\r\n      - Research and propose a nitrogen supply solution (tanks vs. generator).\r\n  - Jeff (MEP):\r\n      - Analyze HVAC and power requirements based on specs.\r\n      - Propose side-mounted HVAC unit sizes and locations.\r\n      - Size the MDP for current and future power loads.\r\n  - James/Steve (LDDBlueline):\r\n      - Update the facility layout with the Suite 3 changes.\r\n      - Incorporate new office/breakroom areas into the design.\r\n  - Choate Construction:\r\n      - Secure a 3rd-party plan review consultant (e.g., NOVA).\r\n      - Develop a phased construction schedule.\r\n</div>\r\n    <table id=\"m_3925713835082034958emailWrapper\" width=\"100%\" style=\"min-width:320px\" cellspacing=\"0\" cellpadding=\"0\">\r\n      <tbody><tr>\r\n        <td class=\"m_3925713835082034958p-0\" style=\"padding:30px 0\">\r\n          <table class=\"m_3925713835082034958w-100p\" width=\"560\" align=\"center\" style=\"max-width:560px;margin:0 auto\" cellpadding=\"0\" cellspacing=\"0\">\r\n            <tbody><tr>\r\n              <td class=\"m_3925713835082034958pt-15\" style=\"padding:18px 0px 20px\">\r\n                <table class=\"m_3925713835082034958maxw-560\" style=\"max-width:640px;width:100%!important;margin:0\" cellpadding=\"0\" cellspacing=\"0\">\r\n                  <tbody><tr>\r\n                    <td>\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tbody><tr>\r\n                          <td align=\"left\">\r\n                            <a style=\"text-decoration:none\" href=\"https://fathom.video/?utm_campaign=postmeetingsummary&amp;utm_content=header&amp;utm_medium=email\" target=\"_blank\">\r\n                              <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/fathom-logo-black-2025.png\" width=\"152\" alt=\"FATHOM\">\r\n                            </a>\r\n                          </td>\r\n                        </tr>\r\n                      </tbody></table>\r\n                    </td>\r\n                  </tr>\r\n                </tbody></table>\r\n              </td>\r\n            </tr>\r\n            <tr>\r\n              <td class=\"m_3925713835082034958pt-15\">\r\n                <table class=\"m_3925713835082034958maxw-560\" style=\"max-width:640px;width:100%!important;margin:0\" cellpadding=\"0\" cellspacing=\"0\">\r\n                  <tbody><tr>\r\n                    <td style=\"padding:0 0 20px\">\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tbody><tr>\r\n                          <th class=\"m_3925713835082034958tflex\" align=\"left\" style=\"vertical-align:top\">\r\n                            <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                              <tbody><tr>\r\n                                <td class=\"m_3925713835082034958pt-0 m_3925713835082034958pb-9\" style=\"padding:8px 0 5px\">\r\n                                  <table cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td style=\"font:600 16px/20px Arial,Helvetica,sans-serif,Inter;color:#606167\">\r\n                                        Meeting with Lithium Battery Co\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td class=\"m_3925713835082034958fs-24 m_3925713835082034958lh-30\" style=\"padding:0 0 3px;font:700 28px/35px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.6px\">\r\n                                  Lithium / Garage - Kick Off Meeting  \r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td style=\"font:500 13px/17px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.2px\">\r\n                                  November 19, 2025  <span style=\"color:#d3d3d3\">•</span> \r\n                                  95 mins  <span style=\"color:#d3d3d3\">•</span> \r\n                                  <a class=\"m_3925713835082034958underline\" style=\"color:#0070ac\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;utm_campaign=postmeetingsummary&amp;utm_content=view_recording_link&amp;utm_medium=email\" target=\"_blank\">View Meeting</a>\r\n                                  or <a class=\"m_3925713835082034958underline\" style=\"color:#0070ac\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=ask_fathom&amp;utm_campaign=postmeetingsummary&amp;utm_content=ask_fathom&amp;utm_medium=email\" target=\"_blank\">Ask Fathom</a>\r\n                                </td>\r\n                              </tr>\r\n                            </tbody></table>\r\n                          </th>\r\n                        </tr>\r\n                      </tbody></table>\r\n                    </td>\r\n                  </tr>\r\n                  <tr>\r\n                    <td class=\"m_3925713835082034958ptb-20\" style=\"border-radius:10px\">\r\n                      <table width=\"560\" align=\"center\" style=\"max-width:560px;width:100%!important;margin:0px\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tbody><tr>\r\n                          <td class=\"m_3925713835082034958fs-20 m_3925713835082034958lh-25\" style=\"padding:19px 0 10px;font:700 14px/17px Arial,Helvetica,sans-serif,Inter;color:#9c9c9c;letter-spacing:-.28px;text-transform:uppercase\">\r\n                            Action Items ✨\r\n                          </td>\r\n                        </tr>\r\n                        <tr>\r\n                          <td class=\"m_3925713835082034958pb-10\" style=\"padding:0 0 15px\">\r\n                            <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                              <tbody><tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-03 m_3925713835082034958fs-14 m_3925713835082034958lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=899.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\" target=\"_blank\">\r\n                                          Email Jordan equipment layout + specs; request LBC add missing items<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        James Jacobik\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-03 m_3925713835082034958fs-14 m_3925713835082034958lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1189.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\" target=\"_blank\">\r\n                                          Email HVAC/power Qs + prior Q list to Jordan; request LBC answers<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        Jeff Miller\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-03 m_3925713835082034958fs-14 m_3925713835082034958lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1451.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\" target=\"_blank\">\r\n                                          Email background drawing to LDD/Choate; request updated layout<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        Jordan Wroblewski - LBC\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-03 m_3925713835082034958fs-14 m_3925713835082034958lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2245.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\" target=\"_blank\">\r\n                                          Email LDD/Choate high-bay rack heights/locations; request sprinkler review/options<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        Jordan Wroblewski - LBC\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-03 m_3925713835082034958fs-14 m_3925713835082034958lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2366.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\" target=\"_blank\">\r\n                                          Email LDD/Choate forklift charging qty/locations; request layout<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        Jordan Wroblewski - LBC\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-03 m_3925713835082034958fs-14 m_3925713835082034958lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2450.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\" target=\"_blank\">\r\n                                          Email LDD/Choate monorail/hoist lift points/loads; request design<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        Jordan Wroblewski - LBC\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-03 m_3925713835082034958fs-14 m_3925713835082034958lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2597.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\" target=\"_blank\">\r\n                                          Email LDD/Choate lighting plan w/ higher levels + N2-zone considerations<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        Jeff Miller\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-03 m_3925713835082034958fs-14 m_3925713835082034958lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2657.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\" target=\"_blank\">\r\n                                          Email LDD/Choate N2 flow rates/pressures/drops + tank location/shading; request N2 design<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        Jordan Wroblewski - LBC\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-03 m_3925713835082034958fs-14 m_3925713835082034958lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2803.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\" target=\"_blank\">\r\n                                          Email Airgas re: N2 supply/delivery/tank-swap; request proposal<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        Jordan Wroblewski - LBC\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-03 m_3925713835082034958fs-14 m_3925713835082034958lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=3517.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\" target=\"_blank\">\r\n                                          Email LDD/Choate bathroom counts/ADA + break/reception/training/server needs; request layout<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        Jordan Wroblewski - LBC\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-03 m_3925713835082034958fs-14 m_3925713835082034958lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=5579.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\" target=\"_blank\">\r\n                                          Email LDD/Choate fast-fabric door product data/lead times; request proposal<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        Jordan Wroblewski - LBC\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                            </tbody></table>\r\n                          </td>\r\n                        </tr>\r\n\r\n                        <tr>\r\n                          <td style=\"padding:0px\">\r\n                            <table cellpadding=\"0\" cellspacing=\"0\">\r\n                              <tbody><tr>\r\n                                <td colspan=\"3\" class=\"m_3925713835082034958fs-20 m_3925713835082034958lh-24 m_3925713835082034958fs-11-390\" style=\"font:700 14px/17px Arial,Helvetica,sans-serif,Inter;color:#9c9c9c;letter-spacing:-.28px;text-transform:uppercase\">\r\n                                  Meeting Summary ✨\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td height=\"12\"></td>\r\n                              </tr>\r\n                            </tbody></table>\r\n                          </td>\r\n                        </tr>\r\n\r\n                        <tr>\r\n                          <td style=\"padding:0 0 15px\">\r\n                            <div class=\"m_3925713835082034958ai_notes_html_content\">\r\n                              <h2 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 16px/20px Arial,Helvetica,sans-serif,Inter;margin:25px 0 0 0\">Meeting Purpose</h2>\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0 0 25px 0\">\r\nKick off the Lithium Battery Company (LBC) manufacturing facility fit-out project.\r\n</p>\r\n<h2 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 16px/20px Arial,Helvetica,sans-serif,Inter;margin:25px 0 0 0\">Key Takeaways</h2>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0 0 25px 0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=699.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Suite 3 is the critical path:</strong> Its manufacturing equipment requires 380V/60Hz power, a 40–60% humidity range, and an ISO Class 8 cleanroom environment.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=5032.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Side-mounted HVAC is the preferred solution:</strong> It avoids roof penetrations, simplifies maintenance, and allows LBC to retain the equipment if they relocate.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4195.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>A 3rd-party plan review will accelerate permitting:</strong> This strategy is expected to cut the timeline from a typical 30+ days to ~10 days, bypassing city backlogs.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1455.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>The facility layout is confirmed:</strong> The large prismatic line will move to the left side of Suite 3, creating a central logistics channel.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n<h2 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 16px/20px Arial,Helvetica,sans-serif,Inter;margin:25px 0 0 0\">Topics</h2>\r\n<h3 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 14px/18px Arial,Helvetica,sans-serif,Inter;margin:0\">Facility Layout &amp; Workflow</h3>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0 0 25px 0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=671.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Suite 3 (Manufacturing):</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=771.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\">Houses five production lines (Kukurova, prismatic, cylindrical).<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1455.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Layout Change:</strong> The large prismatic line will move to the left side and rotate 180 degrees to create a central logistics channel.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=3481.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Personnel:</strong> ~40 people (10 per line + supervisors).<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2114.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Suite 1 (Testing &amp; Aging):</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2127.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Function:</strong> Post-production testing and aging of battery modules.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=846.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Equipment:</strong> Runs on the building&#39;s existing 480V/3-phase power.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=3017.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Personnel:</strong> 10–30 people.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=677.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Suite 2 (Shipping &amp; Receiving):</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4835.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Function:</strong> Unboxing and staging equipment before moving it to Suite 3.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\"><strong>Storage:</strong> Home Depot-style racks for lightweight components (&lt;15 ft high).</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2377.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Logistics:</strong> Electric pallet jacks only; forklifts are restricted to Suite 2 to protect floors.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h3 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 14px/18px Arial,Helvetica,sans-serif,Inter;margin:0\">HVAC &amp; Environmental Control</h3>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0 0 25px 0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1711.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Suite 3 Requirements:</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1719.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Temperature:</strong> 18–25°C (64.4–77°F).<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1755.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Humidity:</strong> 40–60% RH.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1968.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Filtration:</strong> ISO Class 8 cleanroom environment.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2032.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Pressure:</strong> Positive pressure to prevent contamination.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=5032.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>HVAC Solution → Side-Mounted Units:</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=5032.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Rationale:</strong> Avoids roof penetrations, simplifies maintenance, and allows LBC to retain the equipment upon relocation.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=5091.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Implementation:</strong> Units on exterior walls with interior air handlers and ductwork.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=5276.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Flood Protection:</strong> Units must be raised above the Base Flood Elevation (BFE) on pads or brackets.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1279.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Ventilation &amp; Gas Control:</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1633.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Challenge:</strong> The building&#39;s existing wall vents will compromise conditioned air.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1633.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Solution:</strong> Isolate vents with ductwork to direct exhaust outside.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1032.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Gas Lines:</strong> Compressed air, nitrogen, and oxygen lines are required.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2795.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Nitrogen:</strong> Gaseous form. Options include portable tanks, a bulk tank, or a nitrogen generator.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h3 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 14px/18px Arial,Helvetica,sans-serif,Inter;margin:0\">Power &amp; Electrical</h3>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0 0 25px 0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=742.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Suite 3 Equipment Power:</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=742.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Requirement:</strong> 380V/60Hz, 3-phase.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=795.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Solution:</strong> Three readily available Maddox step-down transformers (4-week lead time) will convert the building&#39;s 480V supply.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=3933.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Power Capacity:</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=3950.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Initial:</strong> Sufficient for day-one operations.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=3933.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Future:</strong> The Main Distribution Panel (MDP) must be sized for future expansion (e.g., CNC machines).<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4054.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Strategy:</strong> LBC will request TECO to pay for future power upgrades.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2608.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Lighting:</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2608.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Requirement:</strong> Replace existing motion-sensor LEDs with a new, higher-output system.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2608.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Rationale:</strong> Improve visibility and ensure safety, especially with potential nitrogen leaks.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h3 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 14px/18px Arial,Helvetica,sans-serif,Inter;margin:0\">Permitting &amp; Schedule</h3>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0 0 25px 0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4195.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Permitting Strategy → 3rd-Party Review:</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4195.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Rationale:</strong> Accelerates the timeline by bypassing city backlogs.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4221.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Timeline:</strong> Expected to reduce review from 30+ days to ~10 days.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4835.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Construction Sequencing:</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4835.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Phase 1:</strong> Complete Suite 3 (flooring, HVAC, electrical).<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4835.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Phase 2:</strong> Unbox and stage equipment in Suite 2.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4835.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Phase 3:</strong> Move equipment into Suite 3, then complete Suite 2 flooring.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4293.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Occupancy:</strong> LBC can assemble equipment before receiving the Certificate of Occupancy (CO), but cannot begin production.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n<h3 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 14px/18px Arial,Helvetica,sans-serif,Inter;margin:0\">Facility Enhancements</h3>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0 0 25px 0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=699.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Flooring:</strong> Anti-static epoxy floor required throughout.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2330.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Material Handling:</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2330.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Bridge Crane:</strong> A mobile or monorail system is needed to move heavy battery packs.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=3694.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Ramps:</strong> The exterior ramp for container loading needs security enhancements.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4434.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Office &amp; Break Areas:</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4434.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Reception:</strong> Add a foyer at the main entrance.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4481.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Break Room:</strong> Convert a corner of Suite 1 into a break room.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4620.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Conference Rooms:</strong> Several smaller rooms and one large collaboration space are needed.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h2 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 16px/20px Arial,Helvetica,sans-serif,Inter;margin:25px 0 0 0\">Next Steps</h2>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0 0 25px 0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=910.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Jordan/Nathan:</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=910.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\">Distribute all equipment spec sheets to the design team.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1455.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\">Confirm the final Suite 3 layout with the design team.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2795.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\">Research and propose a nitrogen supply solution (tanks vs. generator).<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4715.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Jeff (MEP):</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4715.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\">Analyze HVAC and power requirements based on specs.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=5032.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\">Propose side-mounted HVAC unit sizes and locations.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=3933.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\">Size the MDP for current and future power loads.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4434.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>James/Steve (LDDBlueline):</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1455.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\">Update the facility layout with the Suite 3 changes.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4434.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\">Incorporate new office/breakroom areas into the design.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4195.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Choate Construction:</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4195.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\">Secure a 3rd-party plan review consultant (e.g., NOVA).<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4835.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\">Develop a phased construction schedule.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n\r\n                            </div>\r\n                          </td>\r\n                        </tr>\r\n\r\n                        <tr>\r\n                          <td style=\"padding:1px 0 0\">\r\n                            <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                              <tbody><tr class=\"m_3925713835082034958active-t\">\r\n                                <td class=\"m_3925713835082034958fs-18 m_3925713835082034958lh-22\" align=\"center\" style=\"background:#00beff;font:bold 20px/24px Arial,Helvetica,sans-serif,Inter;border-radius:6px\">\r\n                                  <a style=\"color:#000;text-decoration:none;display:block;padding:13px 15px\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;utm_campaign=postmeetingsummary&amp;utm_content=view_recording_button&amp;utm_medium=email\" target=\"_blank\">View Meeting →</a>\r\n                                </td>\r\n                              </tr>\r\n                            </tbody></table>\r\n                          </td>\r\n                        </tr>\r\n\r\n\r\n                        <tr height=\"25\"></tr>\r\n                        <tr>\r\n                          <td>\r\n                            <table width=\"560\" style=\"max-width:560px;width:560px;background-color:#00beff1a\">\r\n                              <tbody><tr>\r\n                                <td style=\"width:250px;padding:20px 5px 8px 20px;vertical-align:top\">\r\n                                  <table>\r\n                                    <tbody><tr>\r\n                                      <td>\r\n                                        <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/robot.png\" width=\"32\">\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr height=\"10\"></tr>\r\n                                    <tr>\r\n                                      <td style=\"font:700 14px/16px Arial,Helvetica,sans-serif,Inter;color:#2d2d31;letter-spacing:-.4px\">\r\n                                        Ask Fathom!\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td style=\"font:500 14px/16px Arial,Helvetica,sans-serif,Inter;color:#3d3d44;letter-spacing:-.28px\">\r\n                                        Ask our AI Assistant for answers and insights. It&#39;s ChatGPT for your meetings!\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr height=\"10\"></tr>\r\n                                    <tr>\r\n                                      <td>\r\n                                        <a class=\"m_3925713835082034958underline\" style=\"font:500 14px/16px Arial,Helvetica,sans-serif,Inter;color:#0070ac;letter-spacing:-.28px\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=ask_fathom&amp;utm_campaign=postmeetingsummary&amp;utm_content=ask_fathom_footer&amp;utm_medium=email\" target=\"_blank\">Try Ask Fathom →</a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    </tbody></table>\r\n                                </td>\r\n                                <td style=\"padding:8px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ask-fathom-screenshot.png\" width=\"310\">\r\n                                </td>\r\n                              </tr>\r\n                            </tbody></table>\r\n                          </td>\r\n                        </tr>\r\n                      </tbody></table>\r\n                    </td>\r\n                  </tr>\r\n\r\n                  <tr>\r\n                    <td style=\"padding:24px 0 0\">\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tbody><tr>\r\n                          <th width=\"250\" align=\"center\" style=\"font:700 12px/17px Arial,Helvetica,sans-serif,Inter500;color:#6c6d72;vertical-align:top\">\r\n                              <table cellpadding=\"0\" cellspacing=\"0\">\r\n                                  <tbody><tr>\r\n                                    <td style=\"font:500 11px/13px Arial,Helvetica,sans-serif,Inter500;color:#6c6d72\">\r\n                                      © Fathom 2025. All Rights Reserved.\r\n                                    </td>\r\n                                  </tr>\r\n                              </tbody></table>\r\n                          </th>\r\n                        </tr>\r\n                      </tbody></table>\r\n                    </td>\r\n                  </tr>\r\n                  <tr>\r\n                    <td height=\"20\"></td>\r\n                  </tr>\r\n                  <tr>\r\n                    <td>\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tbody><tr>\r\n                          <td align=\"center\">\r\n                            <a style=\"text-decoration:none\" href=\"https://www.g2.com/products/fathom-2021-09-22/reviews\" target=\"_blank\">\r\n                              <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/rating.png\" width=\"153\">\r\n                            </a>\r\n                          </td>\r\n                        </tr>\r\n                      </tbody></table>\r\n                    </td>\r\n                  </tr>\r\n                </tbody></table>\r\n              </td>\r\n            </tr>\r\n          </tbody></table>\r\n        </td>\r\n      </tr>\r\n    </tbody></table>\r\n  </div>\r\n\r\n</div></div></div>','<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: Fathom <no-reply@fathom.video>\r\nDate: Wed, Nov 19, 2025 at 3:06 PM\r\nSubject: Recap of your meeting with Lithium Battery Co\r\nTo: Nathan Staron <nathan@lithiumbatterycompany.com>\r\n\r\n\r\nMeeting Purpose Kick off the Lithium Battery Company (LBC) manufacturing\r\nfacility fit-out project. Key Takeaways - Suite 3 is the critical path: Its\r\nmanufacturing equipment requires 380V/60Hz power, a 40–60% humidity range,\r\nand an ISO Class 8 cleanroom environment. - Side-mounted HVAC is the\r\npreferred solution: It avoids roof penetrations, simplifies maintenance,\r\nand allows LBC to retain the equipment if they relocate. - A 3rd-party plan\r\nreview will accelerate permitting: This strategy is expected to cut the\r\ntimeline from a typical 30+ days to ~10 days, bypassing city backlogs. -\r\nThe facility layout is confirmed: The large prismatic line will move to the\r\nleft side of Suite 3, creating a central logistics channel. Topics Facility\r\nLayout & Workflow - Suite 3 (Manufacturing): - Houses five production lines\r\n(Kukurova, prismatic, cylindrical). - Layout Change: The large prismatic\r\nline will move to the left side and rotate 180 degrees to create a central\r\nlogistics channel. - Personnel: ~40 people (10 per line + supervisors). -\r\nSuite 1 (Testing & Aging): - Function: Post-production testing and aging of\r\nbattery modules. - Equipment: Runs on the building\'s existing 480V/3-phase\r\npower. - Personnel: 10–30 people. - Suite 2 (Shipping & Receiving): -\r\nFunction: Unboxing and staging equipment before moving it to Suite 3. -\r\nStorage: Home Depot-style racks for lightweight components (<15 ft high). -\r\nLogistics: Electric pallet jacks only; forklifts are restricted to Suite 2\r\nto protect floors. HVAC & Environmental Control - Suite 3 Requirements: -\r\nTemperature: 18–25°C (64.4–77°F). - Humidity: 40–60% RH. - Filtration: ISO\r\nClass 8 cleanroom environment. - Pressure: Positive pressure to prevent\r\ncontamination. - HVAC Solution → Side-Mounted Units: - Rationale: Avoids\r\nroof penetrations, simplifies maintenance, and allows LBC to retain the\r\nequipment upon relocation. - Implementation: Units on exterior walls with\r\ninterior air handlers and ductwork. - Flood Protection: Units must be\r\nraised above the Base Flood Elevation (BFE) on pads or brackets. -\r\nVentilation & Gas Control: - Challenge: The building\'s existing wall vents\r\nwill compromise conditioned air. - Solution: Isolate vents with ductwork to\r\ndirect exhaust outside. - Gas Lines: Compressed air, nitrogen, and oxygen\r\nlines are required. - Nitrogen: Gaseous form. Options include portable\r\ntanks, a bulk tank, or a nitrogen generator. Power & Electrical - Suite 3\r\nEquipment Power: - Requirement: 380V/60Hz, 3-phase. - Solution: Three\r\nreadily available Maddox step-down transformers (4-week lead time) will\r\nconvert the building\'s 480V supply. - Power Capacity: - Initial: Sufficient\r\nfor day-one operations. - Future: The Main Distribution Panel (MDP) must be\r\nsized for future expansion (e.g., CNC machines). - Strategy: LBC will\r\nrequest TECO to pay for future power upgrades. - Lighting: - Requirement:\r\nReplace existing motion-sensor LEDs with a new, higher-output system. -\r\nRationale: Improve visibility and ensure safety, especially with potential\r\nnitrogen leaks. Permitting & Schedule - Permitting Strategy → 3rd-Party\r\nReview: - Rationale: Accelerates the timeline by bypassing city backlogs. -\r\nTimeline: Expected to reduce review from 30+ days to ~10 days. -\r\nConstruction Sequencing: - Phase 1: Complete Suite 3 (flooring, HVAC,\r\nelectrical). - Phase 2: Unbox and stage equipment in Suite 2. - Phase 3:\r\nMove equipment into Suite 3, then complete Suite 2 flooring. - Occupancy:\r\nLBC can assemble equipment before receiving the Certificate of Occupancy\r\n(CO), but cannot begin production. Facility Enhancements - Flooring:\r\nAnti-static epoxy floor required throughout. - Material Handling: - Bridge\r\nCrane: A mobile or monorail system is needed to move heavy battery packs. -\r\nRamps: The exterior ramp for container loading needs security enhancements.\r\n- Office & Break Areas: - Reception: Add a foyer at the main entrance. -\r\nBreak Room: Convert a corner of Suite 1 into a break room. - Conference\r\nRooms: Several smaller rooms and one large collaboration space are needed.\r\nNext Steps - Jordan/Nathan: - Distribute all equipment spec sheets to the\r\ndesign team. - Confirm the final Suite 3 layout with the design team. -\r\nResearch and propose a nitrogen supply solution (tanks vs. generator). -\r\nJeff (MEP): - Analyze HVAC and power requirements based on specs. - Propose\r\nside-mounted HVAC unit sizes and locations. - Size the MDP for current and\r\nfuture power loads. - James/Steve (LDDBlueline): - Update the facility\r\nlayout with the Suite 3 changes. - Incorporate new office/breakroom areas\r\ninto the design. - Choate Construction: - Secure a 3rd-party plan review\r\nconsultant (e.g., NOVA). - Develop a phased construction schedule.\r\n[image: FATHOM]\r\n<https://fathom.video/?utm_campaign=postmeetingsummary&utm_content=header&utm_medium=email>\r\nMeeting with Lithium Battery Co\r\nLithium / Garage - Kick Off Meeting\r\nNovember 19, 2025  •  95 mins  •  View Meeting\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&utm_campaign=postmeetingsummary&utm_content=view_recording_link&utm_medium=email>\r\nor Ask Fathom\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=ask_fathom&utm_campaign=postmeetingsummary&utm_content=ask_fathom&utm_medium=email>\r\nAction Items ✨\r\nEmail Jordan equipment layout + specs; request LBC add missing items\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=899.9999&utm_campaign=postmeetingsummary&utm_content=action_item&utm_medium=email>\r\nJames Jacobik\r\nEmail HVAC/power Qs + prior Q list to Jordan; request LBC answers\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1189.9999&utm_campaign=postmeetingsummary&utm_content=action_item&utm_medium=email>\r\nJeff Miller\r\nEmail background drawing to LDD/Choate; request updated layout\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1451.9999&utm_campaign=postmeetingsummary&utm_content=action_item&utm_medium=email>\r\nJordan Wroblewski - LBC\r\nEmail LDD/Choate high-bay rack heights/locations; request sprinkler\r\nreview/options\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2245.9999&utm_campaign=postmeetingsummary&utm_content=action_item&utm_medium=email>\r\nJordan Wroblewski - LBC\r\nEmail LDD/Choate forklift charging qty/locations; request layout\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2366.9999&utm_campaign=postmeetingsummary&utm_content=action_item&utm_medium=email>\r\nJordan Wroblewski - LBC\r\nEmail LDD/Choate monorail/hoist lift points/loads; request design\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2450.9999&utm_campaign=postmeetingsummary&utm_content=action_item&utm_medium=email>\r\nJordan Wroblewski - LBC\r\nEmail LDD/Choate lighting plan w/ higher levels + N2-zone considerations\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2597.9999&utm_campaign=postmeetingsummary&utm_content=action_item&utm_medium=email>\r\nJeff Miller\r\nEmail LDD/Choate N2 flow rates/pressures/drops + tank location/shading;\r\nrequest N2 design\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2657.9999&utm_campaign=postmeetingsummary&utm_content=action_item&utm_medium=email>\r\nJordan Wroblewski - LBC\r\nEmail Airgas re: N2 supply/delivery/tank-swap; request proposal\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2803.9999&utm_campaign=postmeetingsummary&utm_content=action_item&utm_medium=email>\r\nJordan Wroblewski - LBC\r\nEmail LDD/Choate bathroom counts/ADA + break/reception/training/server\r\nneeds; request layout\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=3517.9999&utm_campaign=postmeetingsummary&utm_content=action_item&utm_medium=email>\r\nJordan Wroblewski - LBC\r\nEmail LDD/Choate fast-fabric door product data/lead times; request proposal\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=5579.9999&utm_campaign=postmeetingsummary&utm_content=action_item&utm_medium=email>\r\nJordan Wroblewski - LBC\r\nMeeting Summary ✨\r\n\r\nMeeting Purpose\r\n\r\nKick off the Lithium Battery Company (LBC) manufacturing facility fit-out\r\nproject.\r\nKey Takeaways\r\n\r\n   -\r\n\r\n   *Suite 3 is the critical path:* Its manufacturing equipment requires\r\n   380V/60Hz power, a 40–60% humidity range, and an ISO Class 8 cleanroom\r\n   environment.\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=699.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n   *Side-mounted HVAC is the preferred solution:* It avoids roof\r\n   penetrations, simplifies maintenance, and allows LBC to retain the\r\n   equipment if they relocate.\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=5032.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n   *A 3rd-party plan review will accelerate permitting:* This strategy is\r\n   expected to cut the timeline from a typical 30+ days to ~10 days, bypassing\r\n   city backlogs.\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4195.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n   *The facility layout is confirmed:* The large prismatic line will move\r\n   to the left side of Suite 3, creating a central logistics channel.\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1455.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\nTopics Facility Layout & Workflow\r\n\r\n   -\r\n\r\n   *Suite 3 (Manufacturing):*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=671.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      Houses five production lines (Kukurova, prismatic, cylindrical).\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=771.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Layout Change:* The large prismatic line will move to the left side\r\n      and rotate 180 degrees to create a central logistics channel.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1455.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Personnel:* ~40 people (10 per line + supervisors).\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=3481.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n   *Suite 1 (Testing & Aging):*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2114.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      *Function:* Post-production testing and aging of battery modules.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2127.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Equipment:* Runs on the building\'s existing 480V/3-phase power.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=846.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Personnel:* 10–30 people.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=3017.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n   *Suite 2 (Shipping & Receiving):*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=677.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      *Function:* Unboxing and staging equipment before moving it to Suite\r\n      3.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4835.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Storage:* Home Depot-style racks for lightweight components (<15 ft\r\n      high).\r\n      -\r\n\r\n      *Logistics:* Electric pallet jacks only; forklifts are restricted to\r\n      Suite 2 to protect floors.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2377.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\nHVAC & Environmental Control\r\n\r\n   -\r\n\r\n   *Suite 3 Requirements:*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1711.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      *Temperature:* 18–25°C (64.4–77°F).\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1719.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Humidity:* 40–60% RH.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1755.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Filtration:* ISO Class 8 cleanroom environment.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1968.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Pressure:* Positive pressure to prevent contamination.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2032.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n   *HVAC Solution → Side-Mounted Units:*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=5032.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      *Rationale:* Avoids roof penetrations, simplifies maintenance, and\r\n      allows LBC to retain the equipment upon relocation.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=5032.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Implementation:* Units on exterior walls with interior air handlers\r\n      and ductwork.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=5091.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Flood Protection:* Units must be raised above the Base Flood\r\n      Elevation (BFE) on pads or brackets.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=5276.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n   *Ventilation & Gas Control:*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1279.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      *Challenge:* The building\'s existing wall vents will compromise\r\n      conditioned air.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1633.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Solution:* Isolate vents with ductwork to direct exhaust outside.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1633.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Gas Lines:* Compressed air, nitrogen, and oxygen lines are required.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1032.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n         *Nitrogen:* Gaseous form. Options include portable tanks, a bulk\r\n         tank, or a nitrogen generator.\r\n         <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2795.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\nPower & Electrical\r\n\r\n   -\r\n\r\n   *Suite 3 Equipment Power:*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=742.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      *Requirement:* 380V/60Hz, 3-phase.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=742.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Solution:* Three readily available Maddox step-down transformers\r\n      (4-week lead time) will convert the building\'s 480V supply.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=795.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n   *Power Capacity:*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=3933.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      *Initial:* Sufficient for day-one operations.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=3950.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Future:* The Main Distribution Panel (MDP) must be sized for future\r\n      expansion (e.g., CNC machines).\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=3933.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Strategy:* LBC will request TECO to pay for future power upgrades.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4054.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n   *Lighting:*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2608.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      *Requirement:* Replace existing motion-sensor LEDs with a new,\r\n      higher-output system.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2608.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Rationale:* Improve visibility and ensure safety, especially with\r\n      potential nitrogen leaks.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2608.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\nPermitting & Schedule\r\n\r\n   -\r\n\r\n   *Permitting Strategy → 3rd-Party Review:*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4195.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      *Rationale:* Accelerates the timeline by bypassing city backlogs.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4195.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Timeline:* Expected to reduce review from 30+ days to ~10 days.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4221.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n   *Construction Sequencing:*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4835.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      *Phase 1:* Complete Suite 3 (flooring, HVAC, electrical).\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4835.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Phase 2:* Unbox and stage equipment in Suite 2.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4835.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Phase 3:* Move equipment into Suite 3, then complete Suite 2\r\n      flooring.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4835.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n   *Occupancy:* LBC can assemble equipment before receiving the Certificate\r\n   of Occupancy (CO), but cannot begin production.\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4293.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\nFacility Enhancements\r\n\r\n   -\r\n\r\n   *Flooring:* Anti-static epoxy floor required throughout.\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=699.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n   *Material Handling:*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2330.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      *Bridge Crane:* A mobile or monorail system is needed to move heavy\r\n      battery packs.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2330.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Ramps:* The exterior ramp for container loading needs security\r\n      enhancements.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=3694.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n   *Office & Break Areas:*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4434.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      *Reception:* Add a foyer at the main entrance.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4434.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Break Room:* Convert a corner of Suite 1 into a break room.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4481.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Conference Rooms:* Several smaller rooms and one large collaboration\r\n      space are needed.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4620.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\nNext Steps\r\n\r\n   -\r\n\r\n   *Jordan/Nathan:*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=910.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      Distribute all equipment spec sheets to the design team.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=910.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      Confirm the final Suite 3 layout with the design team.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1455.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      Research and propose a nitrogen supply solution (tanks vs. generator).\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2795.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n   *Jeff (MEP):*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4715.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      Analyze HVAC and power requirements based on specs.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4715.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      Propose side-mounted HVAC unit sizes and locations.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=5032.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      Size the MDP for current and future power loads.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=3933.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n   *James/Steve (LDDBlueline):*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4434.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      Update the facility layout with the Suite 3 changes.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1455.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      Incorporate new office/breakroom areas into the design.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4434.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n   *Choate Construction:*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4195.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      Secure a 3rd-party plan review consultant (e.g., NOVA).\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4195.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      Develop a phased construction schedule.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4835.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\nView Meeting →\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&utm_campaign=postmeetingsummary&utm_content=view_recording_button&utm_medium=email>\r\nAsk Fathom!\r\nAsk our AI Assistant for answers and insights. It\'s ChatGPT for your\r\nmeetings!\r\nTry Ask Fathom →\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=ask_fathom&utm_campaign=postmeetingsummary&utm_content=ask_fathom_footer&utm_medium=email>\r\n© Fathom 2025. All Rights Reserved.\r\n<https://www.g2.com/products/fathom-2021-09-22/reviews>',0,0,0,0,0,0,'2025-11-19 22:18:50','2025-12-04 14:04:33','2025-12-04 14:04:33','2025-12-04 14:04:33',NULL,NULL,NULL),
(67,4,'<CAJO9__bfM5Lt_-E08ihByGH2eNYw6EaUidyBOJVMeMDduQuXgA@mail.gmail.com>',NULL,NULL,'Kick Off LBC Manufacturing Facility - Choate Construction - LDD','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Hello Gentlemen,</div><div><br></div><div>For your reference, the recording of today&#39;s call.</div><div><br></div><div><a href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3\">https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3</a></div><div><br></div><div>A lot of good work ahead of us.</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div></div>','Hello Gentlemen,\r\n\r\nFor your reference, the recording of today\'s call.\r\n\r\nhttps://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3\r\n\r\nA lot of good work ahead of us.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>',0,0,0,0,0,0,'2025-11-19 22:37:02','2025-12-04 14:04:34','2025-12-04 14:04:34','2025-12-04 14:04:34',NULL,NULL,NULL),
(68,4,'<D20427C3-F1F6-49BB-81F2-38898658F57A@mavrix.one>',NULL,NULL,'Test email','Brian@mavrix.one','Brian Stufflebean','\r\n--Apple-Mail=_E032377D-1FC0-45F4-AFCC-0898B5E594E9\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Type: text/html;\r\n	charset=us-ascii\r\n\r\n<html><head><meta http-equiv=3D\"content-type\" content=3D\"text/html; =\r\ncharset=3Dus-ascii\"></head><body style=3D\"overflow-wrap: break-word; =\r\n-webkit-nbsp-mode: space; line-break: after-white-space;\"><meta =\r\nhttp-equiv=3D\"content-type\" content=3D\"text/html; charset=3Dus-ascii\"><div=\r\n style=3D\"overflow-wrap: break-word; -webkit-nbsp-mode: space; =\r\nline-break: after-white-space;\"><meta http-equiv=3D\"content-type\" =\r\ncontent=3D\"text/html; charset=3Dus-ascii\"><div style=3D\"overflow-wrap: =\r\nbreak-word; -webkit-nbsp-mode: space; line-break: =\r\nafter-white-space;\">Test<div><br></div><div><br><div>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; orphans: auto; text-align: start; text-indent: 0px; =\r\ntext-transform: none; white-space: normal; widows: auto; word-spacing: =\r\n0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><font size=3D\"2\">Best =\r\nregards,</font></div><div style=3D\"font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><font =\r\nsize=3D\"2\"><br></font></div><div style=3D\"font-family: Helvetica; =\r\nfont-size: 12px; font-style: normal; font-variant-caps: normal; =\r\nfont-weight: 400; letter-spacing: normal; orphans: auto; text-align: =\r\nstart; text-indent: 0px; text-transform: none; white-space: normal; =\r\nwidows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\" style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><b>Brian C. =\r\nStufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 =\r\nDirect</b></div><div style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><span style=3D\"font-size: =\r\n11px;\">(866)896-2423 Fax</span></div></div><span style=3D\"caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0); font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"></span><br class=3D\"Apple-interchange-newline\"><span><img =\r\nalt=3D\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" =\r\nsrc=3D\"cid:CB596987-D3CC-4C61-B9D3-CE1C1DF1C723\"></span><meta =\r\ncharset=3D\"UTF-8\"><div style=3D\"font-family: Helvetica; font-size: 12px; =\r\nfont-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br =\r\nclass=3D\"Apple-interchange-newline\"><br =\r\nclass=3D\"Apple-interchange-newline\"><a =\r\nhref=3D\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a =\r\nhref=3D\"https://mavrix1.com/\">https://mavrix1.com/</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY =\r\nNOTICE:</b><span style=3D\"font-family: Helvetica; font-style: normal; =\r\nfont-weight: 400; font-size: =\r\n12px;\">&nbsp;This&nbsp;communication&nbsp;is =\r\nconfidential&nbsp;and&nbsp;intended only for the =\r\nintended&nbsp;recipient.&nbsp;&nbsp;If you are not the =\r\nintended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, =\r\nor&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any =\r\nsuch&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this =\r\ncommunication&nbsp;in error,&nbsp;please contact the sender =\r\nof&nbsp;the&nbsp;message to inform him or her of =\r\nthe&nbsp;error.<br><br></span></div>\r\n</div>\r\n\r\n<br></div></div></div></body></html>=\r\n\r\n--Apple-Mail=_E032377D-1FC0-45F4-AFCC-0898B5E594E9\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\r\nContent-Type: image/png;\r\n	x-unix-mode=0666;\r\n	name=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\"\r\nContent-Id: <CB596987-D3CC-4C61-B9D3-CE1C1DF1C723>\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGwAAAAYCAYAAAAf1RgaAAAAAXNSR0IArs4c6QAAAIRlWElmTU0A\r\nKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdp\r\nAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAGyg\r\nAwAEAAAAAQAAABgAAAAABrPxEgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5h\r\nZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9\r\nIlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9y\r\nZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6\r\nYWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZm\r\nLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgog\r\nICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAA\r\nC6FJREFUaAXtWnuMVUcZnznPe/fuZYEtDxHCQ1ADBNuuAlKh24dRaqURWFotj5haKAn9SxOaauRi\r\nxEBsMMFSAmnUCDTKWtDioyEm3RLKq6VKC7Rg20VA5Lmwz3vPa8bfN+ecu+fevbugjQQrX5g735n5\r\nvm++13wz5yyc3YKb0gP19a8YTU33+NNmbx0puHjJtGsm+U7beoMxyRsaGrUJE45JxlbclMp/1JXK\r\nsZWM5XLwP6PG6+tzOgVr8tzN0wWTjRq3hojAw6TU+EfdGf9T9uVyGsutQNC4nDpn8zz0m7lmWEwE\r\njm6mbd/r3MCnzNk6DlEbyRFCqfNbAbyBEeaBlJzrkula1mOFQ683fvMcLT917tblGF8dbTgmhe8a\r\nZsbyvY4NhsbEdwy7ZrHntDHOtBuo7q2lGLyvGSnmOe2/fH3S3//EGhGsOZuf03RrKRMC/3wBL30f\r\nW24uxm6XHhcaQuxjgrwXMNpgt9p/3wfYGsrPMmC+07H8wPYFiyYfHj1gypwtr+JysZROMiG80wjO\r\nPftfnL9KpTaxoFQakk4y3WKB13Wc+97DbuB5hm5qXAvoAPzQ4GmG1HxRlCUMjZvC/7dLL7SCnkKK\r\nAPxmN388fr2Klq8fCI2yGGAzYXjXpRvZxBzGknqEcmxUt3xJmeqWH64S/5rwg+dI9+DOhc00pjF3\r\nMJPp51y3bRWXwuaafHNv46J/1H11Z5XGWsPqCDqDosbDo6uwd8fCI7HAW/2N9cD+HY+/gxWpdQMu\r\nIa0HmoNaa2BxDNd6gMp/zsfcv7rm9Gs/+bRuZ1OMBwJnmsA+LO6OIpeUGjZmcZdwbMfinEI4piUK\r\ntPDM9ND32s7sa8G1FTegnMgMnjJEeBfHMcXTLaOUP34iOULXNf1yx+UT76IoyMygzw0N3Avjuaa7\r\nKCtiyqQFB5uaVgT0atKoXk1i3tK+volpTU05Pz1s4gjZ1fEJyBJcZ4UH711zSPFBt+zHJ9f6+Qvj\r\nmNR1kg3HFG0MpflSCs3UrcHHNcNHUWoZj+KlG1rmQkfLsaO3fWpWtv2fb35B0+02KQMzlep/8uq5\r\nv56sq1tsjhlzv4j1m9B41Dh6tNEdO3amffLMnsk8KLiala2pqhn97pWzh07hWm/U168QuRx0mLmu\r\nxBA+dc7Wn1rp/su8QuuBD97a+o1LzX98Q9MzA6T0wjpbQh49oI6WQG+XS6Lj/DwK8lrfdZ8Bj4AV\r\nizG6sYT/Wg9wE0j2aFI+4bruacO2D0HuJ5EUJP9HfqHwXczraGWJUxQczmUyQ0zf3weu0eCjg+Ip\r\n6LWGqEzbfhKlJgeZA9VckbUUURGUcikUOo3K9Hs1K+VO33FmAa+CfRshf36k20UpxJLAdXdgjlip\r\nXFLvs0xmqOH7vwJ+N60npfwAu2em4zgnQjplnBw7c51dWzVwv50acLtbuPpsuMNAEcqhHidhN7wB\r\nSXTVJDroES3G+Z0YHxaRBcD3AO9AI8cQHTUTbQrmhjBNW6Nb1gko/lsodgrjr6Ll0Uh5ar0B3YZG\r\noY2HUTME5z8HPpULMU9q2m7g/SD/aT2VeicoFLbgmfRUNyj0MZB8sonDQVsRlNE0AT2ehz4qWEYq\r\nNQMKr8MgTXWhfw09MlY5WA3SBECAvz90OY5g91MjYbJG5yDLe4XCAiTUYcz9GG0Qgrod8lcgqX6A\r\nZ+VbPN/NfH8L5AxXMhDwwHEWYvIqnimoJK+iX8jAcqAySC4/gkXuBdZeTgDnN3BN2xYZ+Aqy64vl\r\nNPRsWNbTCNYqwqH4WOpB+zI6atcHlIlBcBRrUeaPRGYO8To7D0OHRZBJmYtCKTeZpvm253nkqPKg\r\nkQMC3bbXgf8+ogfshYOWhKjKrlGQQUpiGfkzzD0Zz/XW6+n01xG08mlKUg82PoOgvQV8M2QORr8S\r\nz5/xbftx03EewRrPYpwWozVXgf57kaC+qoQiqRSwkJfzLiC4CykgoynTiN7DWm1qNPyhnUUQ0xBO\r\niruga0mkZ2hdNnub5Ti0O2NrEyTEWgSwcy8IAjJYkjMBSCacawDarUiIp5AQq2F4WmjabzD8WTRc\r\nqYpZqoKnyrCUyyIHnfN1fQ5oaH0Ljc5CfPcJ1cCaxE9Ac7TLyoGcWr6LY5rYJgNB2GXb9jTsmm2Q\r\nfyfabMN178IqQ4DDItmBKrEkyOdfiJhVYsWCeut7D1hoNAlJgrIKP7hdFoEMIAgtLsUpcDEoOtPz\r\nZsO5GyPnxXN995EzYWgyKXQ6fxCMiShT86HPWGTxC3DUVyCMHKey3Uinp+Ec2RAtQCXpYdbZGZd5\r\nVaIwljBHJSWRJ+2h5+sF4qOAGjiP3kdfB722o/8a2iA0gvNwxnQnn/8bcNKT6ONgA+0dygNSThkr\r\nTX2ME00Sj3limuRcEo/p/Cib8V0TWYbDFuXoJFpzecMcjZ0GY28ZzXBmPIZ5OmupvDyA8wGfdBR4\r\ndLCjbP0aT8pO7J4nUOZ341ntvJCsx29SZ8IrtR5MZQOUAEoOJQzwiWo+TDjMyGpE58GIJz4ro8e+\r\nu752WN+c//lsmM1QHsgf4MBHkOYZiIuzPZZMdC520AhE6yBwys6kMykjade6MGKez/l+OILK53Jc\r\nQo7QJQRn34sI4nCMkZPWIrjPAyOeXhOASD8kxFUggB6LkDCboINFCQWDqPxNR0UYAUPW4lydgPPy\r\nWxgj2/tKoqJKlXZY7JS4LxL3glSii8fiPskabn0YgB1Ug4ksy2bTaJkeDYEUQlQVmcFQxENEGVoo\r\nFJrxOA9NzcMxa1CGfocFKLspWLtQKr+t8MqlJyk3iUcs1+xiHvIn2Sex03+I6vAL4BSsADotRcI8\r\nirEv4fkYxhFH/hjodtNFCo+URJXiQaRFSOwwekfFu3J42JKRyfOnyBAhREcrEl1CRjTbfSZQNpcA\r\nruT7kWGd4M2A98tQuJl5nguiUGaSOpWiFzADdIPUWpSpPenIUAM7Fd/h7GWQvR70w0BP70VA5fuB\r\nZT3KHHV/ih1KU91AL/nhpYYYeujcTZjAiKcbYh+QHdVIli3oH4pkXgQ+D8FqQm/iPZK+ZtxF5y3m\r\nZwKfjkrwNkunH/Lz+X14rqwjJgiSi+KLPkqrZl1G1RBcs66OGlUfOTFHkeGsvl4xGUYN6q5Bvixw\r\nzY5ujPRVIGp1ixUd0zMFrnY6PtLpVV00qBS2+kFR689MM7GWkUbrj4bd1qPReAZ0eD8xujgzW6qr\r\nh0bZHOkUrhmwhgbdc5znOE+tZ9x08NZ1Ge2cptfOY+3tl1hdHRKQdmhCz/rQPt2ogqNhC3TV9LTS\r\nk01o6LanEg+vwhpWB3gkfKBefQYMqKsxUtmXODdnQYdW9Ac1c+AMJFMTw9cOrO3DhxTcq9jxDyhd\r\nmQleoxo+32FWDbsDc4JsYbmVyvfD81nVk+8Iwi8dqf7L8Bb9F6+2Y8qhTer1hLKMyk2lay3xEdhh\r\np+h6OxNoMdoVBCQLQS4BmovLSclE2QPJoUa0lMXXglg30qv8bKzEey09r8VDa9Ba5Dc4X31EoApV\r\nQCOIdQ+fSn9TeCRe0pl8VGIf/VeBQu3Zg1aq/x2JLx3kB3yzu5jq9/mGbV3ZVA123nm9s9UjYT3A\r\ntLOyfUBaOb82bxmdrWewS3pCki57JW/i7z6kOCvYvpZyDFEYOvh6nFkUPAxYy7kLcTCK4+VILJd0\r\na710UTdMp8+kSOoZ2ZOsPOXi1XMFnjSNscwgJ2t12GdBBZur29kVnWwtF+J7tvKFP6LGh13WpSu1\r\nIpt6z4TPlX00n65uFV3+KRsfZZEIoQlqh+lGalkQ5Nuw88/hICvmAw7FHobSymQNzga1ICnSGx0O\r\n2CIN0eF8UYWfZJTP0fz1QFIG6RF7IsbL5ZbrFusfr1VJl3iNmKZSn7Sf5mOeSuM0X54BldZNyiFc\r\n0aiDUHwMZTsb+AX6lihxSGIXO6yfZtjh9zGivgU3jQeE7zCKUeDnq3EDYy+7nRfpL4wdgZcv2RE3\r\njcb/74rgq6NAsBCrXf8CAf/+y47p6ecAAAAASUVORK5CYII=\r\n--Apple-Mail=_E032377D-1FC0-45F4-AFCC-0898B5E594E9--','Test\r\n\r\n\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n￼\r\n\r\n\r\nbrian@mavrix.one <mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-11-18 18:15:41','2025-12-04 14:04:34','2025-12-04 14:04:34','2025-12-04 14:04:34',NULL,NULL,NULL),
(69,4,' <BN0P110MB11613100E3603F5DF45A1722CCD4A@BN0P110MB1161.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'RE: Call with Cellec','chris@cellectech.com','Christopher Schauerman','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon0, li.airmailon0, div.airmailon0\r\n	{mso-style-name:airmailon;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle21\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">See you at 11:30 at Java’s on campus.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Best,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Chris<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">--<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Christopher Schauerman, PhD<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">President/CEO<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Cellec Technologies, Inc.&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">245 Summit Point Dr<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Henrietta, NY 14467<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Office:&nbsp;(585) 280-9434<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Business: (585) 454-9166<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Cell: (814) 392-3661<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Thursday, November 13, 2025 2:41 PM<br>\r\n<b>To:</b> Christopher Schauerman &lt;chris@cellectech.com&gt;<br>\r\n<b>Subject:</b> RE: Call with Cellec<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">Sounds good! Earlier in the week is better, usually open MWF 10-1 and all day TR.<br>\r\nLet me know!<br>\r\nThanks!<br>\r\nRick <o:p></o:p></p>\r\n<p class=\"airmailon\">On November 13, 2025 at 1:00:01<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM, Christopher Schauerman (<a href=\"mailto:chris@cellectech.com\">chris@cellectech.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Hi Rick,\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">I should have some time next week if you want to meet up. I can come over to RIT if that works for you.</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Best,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Chris</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">--</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Christopher Schauerman, PhD</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">President/CEO</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Cellec Technologies, Inc.&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">245 Summit Point Dr</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Henrietta, NY 14467</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Office:&nbsp;(585) 280-9434</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Business: (585) 454-9166</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Cell: (814) 392-3661</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, November 5, 2025 5:24 PM<br>\r\n<b>To:</b> Christopher Schauerman &lt;<a href=\"mailto:chris@cellectech.com\">chris@cellectech.com</a>&gt;<br>\r\n<b>Subject:</b> Re: Call with Cellec</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Chris,</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Just trying to connect again.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Is there a chance we could connect in person next week?</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">At RIT or off campus...Thanks!</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"Picture_x0020_1\" src=\"cid:image001.png@01DC5A09.EF068660\"></span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://mavrix1.com/\">https://mavrix1.com</a></span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">CONFIDENTIALITY NOTICE</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI)\r\n protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of\r\n the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"airmailon0\">On October 30, 2025 at 10:14:28<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>AM, Christopher Schauerman (<a href=\"mailto:chris@cellectech.com\">chris@cellectech.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Hi Rick,\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Good chatting with you on the phone today. Let me know if tomorrow at 3:00pm works for everyone. Also, can you let me know who will be on the meeting.</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Best,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Chris</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">--</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Christopher Schauerman, PhD</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">President/CEO</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Cellec Technologies, Inc.&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">245 Summit Point Dr</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Henrietta, NY 14467</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Office:&nbsp;(585) 280-9434</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Business: (585) 454-9166</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Cell: (814) 392-3661</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','See you at 11:30 at Java’s on campus.\r\n\r\n\r\n\r\nBest,\r\nChris\r\n--\r\n\r\nChristopher Schauerman, PhD\r\nPresident/CEO\r\n\r\nCellec Technologies, Inc.\r\n245 Summit Point Dr\r\nHenrietta, NY 14467\r\nOffice: (585) 280-9434\r\nBusiness: (585) 454-9166\r\nCell: (814) 392-3661\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Thursday, November 13, 2025 2:41 PM\r\nTo: Christopher Schauerman <chris@cellectech.com>\r\nSubject: RE: Call with Cellec\r\n\r\nSounds good! Earlier in the week is better, usually open MWF 10-1 and all day TR.\r\nLet me know!\r\nThanks!\r\nRick\r\n\r\nOn November 13, 2025 at 1:00:01 PM, Christopher Schauerman (chris@cellectech.com<mailto:chris@cellectech.com>) wrote:\r\nHi Rick,\r\n\r\nI should have some time next week if you want to meet up. I can come over to RIT if that works for you.\r\n\r\n\r\n\r\nBest,\r\nChris\r\n--\r\n\r\nChristopher Schauerman, PhD\r\nPresident/CEO\r\n\r\nCellec Technologies, Inc.\r\n245 Summit Point Dr\r\nHenrietta, NY 14467\r\nOffice: (585) 280-9434\r\nBusiness: (585) 454-9166\r\nCell: (814) 392-3661\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Wednesday, November 5, 2025 5:24 PM\r\nTo: Christopher Schauerman <chris@cellectech.com<mailto:chris@cellectech.com>>\r\nSubject: Re: Call with Cellec\r\n\r\nHi Chris,\r\nJust trying to connect again.\r\nIs there a chance we could connect in person next week?\r\nAt RIT or off campus...Thanks!\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:image001.png@01DC5A09.EF068660]\r\nhttps://mavrix1.com<https://mavrix1.com/>\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\nOn October 30, 2025 at 10:14:28 AM, Christopher Schauerman (chris@cellectech.com<mailto:chris@cellectech.com>) wrote:\r\nHi Rick,\r\n\r\nGood chatting with you on the phone today. Let me know if tomorrow at 3:00pm works for everyone. Also, can you let me know who will be on the meeting.\r\n\r\n\r\n\r\nBest,\r\nChris\r\n--\r\n\r\nChristopher Schauerman, PhD\r\nPresident/CEO\r\n\r\nCellec Technologies, Inc.\r\n245 Summit Point Dr\r\nHenrietta, NY 14467\r\nOffice: (585) 280-9434\r\nBusiness: (585) 454-9166\r\nCell: (814) 392-3661\r\n',0,0,0,0,0,0,'2025-11-20 15:39:23','2025-12-04 14:04:34','2025-12-04 14:04:34','2025-12-04 14:04:34',NULL,NULL,NULL),
(70,4,'<CAJO9__bBnq0pt1ispna3nCJwKcV8Vf6HW-QMkqZHQ=5wmVp=bw@mail.gmail.com>',NULL,NULL,'Re: Forge Nano - Red River Project - & Term Sheet','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Hello Team,</div><div><br></div><div>I would like to keep the relationship with Forge Nano moving forward.</div><div><br></div><div>Please review the attached Summary of Terms and share your thoughts.  I have also included the cell spec sheets for the cells identified by Elias  that would work for our drones.  </div><div><br></div><div>Best,</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Nov 14, 2025 at 11:11 AM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\">Hello Gentlemen,<br><br>I spoke with James this week regarding the Red River project in Texas. It appears the Military intends to handle the entire operation internally at their facility.<br><br>Their preferred approach is to purchase the necessary equipment directly from us and then have us train their in-house team. Given our current operational commitments, pursuing this approach doesn&#39;t align with our current strategy or capacity.  Unless we want to sell them equipment. <br><br>It seems the proposal from Forge Nano would be a better fit for their needs. Forge Nano&#39;s angle involves supplying them with everything required to manufacture their cells at the Red River location, following the setup of a new production facility.<br><br>Second part of this email is the term sheet attached with Forge Nano.  The term sheet lays out the roadmap for LBC to source US-made lithium-ion cells from Forge Nano across development and production phases, with commitments expected in the final agreement. It also outlines the mutual interest in joint development and commercialization of battery products and leaves open the door for other future collaborations as a co-packer for FN.  <div><br></div><div>Let me know your thoughts.</div><div><br></div><div>Best, <br><br>Jordan G. Wroblewski<br>Partner | President <br>Lithium Battery Company<br>Direct: (917) 266-5336<br><a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a><br><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></div></div>\r\n</blockquote></div>','Hello Team,\r\n\r\nI would like to keep the relationship with Forge Nano moving forward.\r\n\r\nPlease review the attached Summary of Terms and share your thoughts.  I\r\nhave also included the cell spec sheets for the cells identified by Elias\r\nthat would work for our drones.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Fri, Nov 14, 2025 at 11:11 AM Jordan Wroblewski <\r\njordan@lithiumbatterycompany.com> wrote:\r\n\r\n> Hello Gentlemen,\r\n>\r\n> I spoke with James this week regarding the Red River project in Texas. It\r\n> appears the Military intends to handle the entire operation internally at\r\n> their facility.\r\n>\r\n> Their preferred approach is to purchase the necessary equipment directly\r\n> from us and then have us train their in-house team. Given our current\r\n> operational commitments, pursuing this approach doesn\'t align with our\r\n> current strategy or capacity.  Unless we want to sell them equipment.\r\n>\r\n> It seems the proposal from Forge Nano would be a better fit for their\r\n> needs. Forge Nano\'s angle involves supplying them with everything required\r\n> to manufacture their cells at the Red River location, following the setup\r\n> of a new production facility.\r\n>\r\n> Second part of this email is the term sheet attached with Forge Nano.  The\r\n> term sheet lays out the roadmap for LBC to source US-made lithium-ion cells\r\n> from Forge Nano across development and production phases, with commitments\r\n> expected in the final agreement. It also outlines the mutual interest in\r\n> joint development and commercialization of battery products and leaves open\r\n> the door for other future collaborations as a co-packer for FN.\r\n>\r\n> Let me know your thoughts.\r\n>\r\n> Best,\r\n>\r\n> Jordan G. Wroblewski\r\n> Partner | President\r\n> Lithium Battery Company\r\n> Direct: (917) 266-5336\r\n> jordan@lithiumbatterycompany.com\r\n> Lithium Battery Company <http://lithiumbatterycompany.com>\r\n>',1,0,0,0,0,0,'2025-11-20 17:13:35','2025-12-04 14:04:37','2025-12-04 14:04:37','2025-12-04 17:08:19',NULL,NULL,NULL),
(71,4,' <BN2P110MB0977FA6F9BB1972A558CEFE5A0D4A@BN2P110MB0977.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'Tethered Drones','mike@dpiuav.com','Michael Piasecki','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:#467886;\r\n	text-decoration:underline;}\r\nspan.EmailStyle17\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p>Dear Rick Mislan, PhD<o:p></o:p></p>\r\n<p>Mavrix1<o:p></o:p></p>\r\n<p>Founder , CTO <o:p></o:p></p>\r\n<p>Thank you for taking the time to explore the benefits of tethered drone systems with us today.<o:p></o:p></p>\r\n<p>Tethered drones provide a persistent, secure, and highly elevated &#8220;virtual high ground&#8221; for ISR, communications extension, and airspace awareness&#8212;filling the low-altitude blind spots that ground sensors and traditional aircraft cannot cover. Operating at\r\n adjustable heights just above the tree line, these systems overcome terrain and vegetation masking, dramatically increasing real detection volume without introducing new hazards, emitting RF energy, or adding airspace risk. Their fiber-optic tether ensures\r\n immunity to jamming, hacking, and GPS denial while enabling long-duration operations that maneuver with the host platform to maintain optimal positioning. This height-adaptive, low-signature approach satisfies FAA safety priorities and DoD mission requirements,\r\n giving land and maritime units persistent situational awareness, resilient communications, and enhanced C-UAS capability at a fraction of the cost and signature of aircraft, satellites, or fixed towers&#8212;allowing forces to see first, act first, and finish decisively.<o:p></o:p></p>\r\n<p>We believe tethered drones will continue to play a strong and enduring role due to the immutable benefits of line-of-sight and physics. A range of emerging passive and active sensing technologies&#8212;such as micro laser designators from Erete&#8217; integrated on\r\n Trillium gimbals&#8212;will rely on clear LOS to reach their full potential. You mentioned O-Circle, which is fascinating, and there are many other rapidly advancing capabilities, such as those from DeepNight.ai, that underscore the need for high mobility, elevated\r\n and persistent platforms.<o:p></o:p></p>\r\n<p>Ultimately, advanced sensors and algorithms will require a mobile, elevated, and enduring vantage point to guide weapons on target, enhance small-unit survivability, and resolve capability mismatches that will define future conflicts.<o:p></o:p></p>\r\n<p>Wishing you a very happy Thanksgiving and Christmas.<o:p></o:p></p>\r\n<p>I am hopeful that your tight schedule can make room for a visit in the new year. God Bless<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><a href=\"https://gdmissionsystems.com/shipboard-integration-and-combat-systems/containerized-tethered-elevated-mast\">https://gdmissionsystems.com/shipboard-integration-and-combat-systems/containerized-tethered-elevated-mast</a>\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><a href=\"https://www.dragonflypictures.com/brochure/\">https://www.dragonflypictures.com/brochure/</a>\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">Respectfully,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">Michael<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">Michael Piasecki<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">President<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">DPI UAV Systems<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">600 W. 2<sup>nd</sup> St., Essington, PA 19029<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">Office: (610) 521-6115 x 202<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">Mobile: (215) 439-2036<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\"><a href=\"http://www.dpiuav.com/\"><span style=\"color:#0563C1\">www.dpiuav.com</span></a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060;mso-ligatures:none\"><a href=\"https://youtu.be/4ihY-IiAfXI\"><span style=\"color:#0563C1\">https://youtu.be/4ihY-IiAfXI</span></a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black;mso-ligatures:none\">Extending Man\'s Reach with Unmanned Helicopters</span></b><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black;mso-ligatures:none\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060\"><img border=\"0\" width=\"222\" height=\"70\" style=\"width:2.3125in;height:.7291in\" id=\"Picture_x0020_2\" src=\"cid:image001.jpg@01DC5A31.46DC6AE0\" alt=\"DPI-logo-4-April28-blue-full\"></span><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">This is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information.\r\n No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is\r\n appreciated.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</body>\r\n</html>','Dear Rick Mislan, PhD\r\n\r\nMavrix1\r\n\r\nFounder , CTO\r\n\r\nThank you for taking the time to explore the benefits of tethered drone systems with us today.\r\n\r\nTethered drones provide a persistent, secure, and highly elevated \"virtual high ground\" for ISR, communications extension, and airspace awareness-filling the low-altitude blind spots that ground sensors and traditional aircraft cannot cover. Operating at adjustable heights just above the tree line, these systems overcome terrain and vegetation masking, dramatically increasing real detection volume without introducing new hazards, emitting RF energy, or adding airspace risk. Their fiber-optic tether ensures immunity to jamming, hacking, and GPS denial while enabling long-duration operations that maneuver with the host platform to maintain optimal positioning. This height-adaptive, low-signature approach satisfies FAA safety priorities and DoD mission requirements, giving land and maritime units persistent situational awareness, resilient communications, and enhanced C-UAS capability at a fraction of the cost and signature of aircraft, satellites, or fixed towers-allowing forces to see first, act first, and finish decisively.\r\n\r\nWe believe tethered drones will continue to play a strong and enduring role due to the immutable benefits of line-of-sight and physics. A range of emerging passive and active sensing technologies-such as micro laser designators from Erete\' integrated on Trillium gimbals-will rely on clear LOS to reach their full potential. You mentioned O-Circle, which is fascinating, and there are many other rapidly advancing capabilities, such as those from DeepNight.ai, that underscore the need for high mobility, elevated and persistent platforms.\r\n\r\nUltimately, advanced sensors and algorithms will require a mobile, elevated, and enduring vantage point to guide weapons on target, enhance small-unit survivability, and resolve capability mismatches that will define future conflicts.\r\n\r\nWishing you a very happy Thanksgiving and Christmas.\r\n\r\nI am hopeful that your tight schedule can make room for a visit in the new year. God Bless\r\nhttps://gdmissionsystems.com/shipboard-integration-and-combat-systems/containerized-tethered-elevated-mast\r\n\r\nhttps://www.dragonflypictures.com/brochure/\r\n\r\nRespectfully,\r\nMichael\r\n\r\n\r\nMichael Piasecki\r\nPresident\r\nDPI UAV Systems\r\n600 W. 2nd St., Essington, PA 19029\r\nOffice: (610) 521-6115 x 202\r\nMobile: (215) 439-2036\r\nwww.dpiuav.com<http://www.dpiuav.com/>\r\nhttps://youtu.be/4ihY-IiAfXI\r\n\r\n\r\nExtending Man\'s Reach with Unmanned Helicopters\r\n[DPI-logo-4-April28-blue-full]\r\n\r\nThis is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is appreciated.',0,0,0,0,0,0,'2025-11-20 20:56:01','2025-12-04 14:04:44','2025-12-04 14:04:44','2025-12-04 14:04:44',NULL,NULL,NULL),
(72,4,' <BN0P110MB1161A8EDD78F530CAF18AE99CCD4A@BN0P110MB1161.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'Re: Call with Cellec','chris@cellectech.com','Christopher Schauerman','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n</head>\r\n<body>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHi Rick,</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nIt was great meeting with you today. I will try to find a time next week to show you around the battery prototyping center on campus.&nbsp;</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" id=\"ms-outlook-mobile-signature\">\r\n<p style=\"line-height: 1.5; margin: 0px; font-family: Calibri, sans-serif; font-size: 11pt;\">\r\n<br>\r\n</p>\r\n<p style=\"line-height: 1.5; margin: 0px; font-family: Calibri, sans-serif; font-size: 11pt;\">\r\nBest,&nbsp;</p>\r\n<p style=\"line-height: 1.5; margin: 0px; font-family: Calibri, sans-serif; font-size: 11pt;\">\r\nChris</p>\r\n<p style=\"line-height: 1.5; margin: 0px; font-family: Calibri, sans-serif; font-size: 11pt;\">\r\n&nbsp;</p>\r\n<p style=\"line-height: 1.5; margin: 0px; font-family: Calibri, sans-serif; font-size: 11pt;\">\r\n--</p>\r\n<p style=\"line-height: 1.5; margin: 0px; font-family: Calibri, sans-serif; font-size: 11pt;\">\r\n&nbsp;</p>\r\n<p style=\"line-height: 1.5; margin: 0px; font-family: Calibri, sans-serif; font-size: 11pt;\">\r\nChristopher Schauerman, PhD</p>\r\n<p style=\"line-height: 1.5; margin: 0px; font-family: Calibri, sans-serif; font-size: 11pt;\">\r\nPresident/CEO</p>\r\n<p style=\"line-height: 1.5; margin: 0px; font-family: Calibri, sans-serif; font-size: 11pt;\">\r\nCellec Technologies, Inc.&nbsp;</p>\r\n<p style=\"line-height: 1.5; margin: 0px; font-family: Calibri, sans-serif; font-size: 11pt;\">\r\nOffice: (585)<span style=\"color: blue;\">280-9434</span></p>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Thursday, November 20, 2025 10:49:26 AM<br>\r\n<b>To:</b> Christopher Schauerman &lt;chris@cellectech.com&gt;<br>\r\n<b>Subject:</b> RE: Call with Cellec</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>Yes! <br>\r\nThanks!<br>\r\nRick <br>\r\n<br>\r\n<p class=\"x_airmail_on\">On November 20, 2025 at 10:40:08 AM, Christopher Schauerman (<a href=\"mailto:chris@cellectech.com\">chris@cellectech.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div lang=\"EN-US\" style=\"word-wrap:break-word\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_WordSection1\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">See you at 11:30 at Java’s on campus.</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">Best,</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">Chris</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">--</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Christopher Schauerman, PhD</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">President/CEO</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Cellec Technologies, Inc.&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">245 Summit Point Dr</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Henrietta, NY 14467</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Office:&nbsp;(585) 280-9434</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Business: (585) 454-9166</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Cell: (814) 392-3661</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<div style=\"border:none; border-top:solid #E1E1E1 1.0pt; padding:3.0pt 0in 0in 0in\">\r\n<p class=\"x_MsoNormal\"><b><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Thursday, November 13, 2025 2:41 PM<br>\r\n<b>To:</b> Christopher Schauerman &lt;chris@cellectech.com&gt;<br>\r\n<b>Subject:</b> RE: Call with Cellec</span></p>\r\n</div>\r\n<p class=\"x_MsoNormal\">&nbsp;</p>\r\n<p class=\"x_MsoNormal\" style=\"margin-bottom:12.0pt\">Sounds good! Earlier in the week is better, usually open MWF 10-1 and all day TR.<br>\r\nLet me know!<br>\r\nThanks!<br>\r\nRick </p>\r\n<p class=\"x_airmailon\">On November 13, 2025 at 1:00:01<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM, Christopher Schauerman (<a href=\"mailto:chris@cellectech.com\">chris@cellectech.com</a>) wrote:</p>\r\n<blockquote style=\"margin-top:5.0pt; margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">Hi Rick, </span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">I should have some time next week if you want to meet up. I can come over to RIT if that works for you.</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">Best,</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">Chris</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">--</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Christopher Schauerman, PhD</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">President/CEO</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Cellec Technologies, Inc.&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">245 Summit Point Dr</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Henrietta, NY 14467</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Office:&nbsp;(585) 280-9434</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Business: (585) 454-9166</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Cell: (814) 392-3661</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<div style=\"border:none; border-top:solid #E1E1E1 1.0pt; padding:3.0pt 0in 0in 0in\">\r\n<p class=\"x_MsoNormal\" style=\"\"><b><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, November 5, 2025 5:24 PM<br>\r\n<b>To:</b> Christopher Schauerman &lt;<a href=\"mailto:chris@cellectech.com\">chris@cellectech.com</a>&gt;<br>\r\n<b>Subject:</b> Re: Call with Cellec</span></p>\r\n</div>\r\n<p class=\"x_MsoNormal\" style=\"\">&nbsp;</p>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:10.0pt; font-family:&quot;Helvetica&quot;,sans-serif\">Hi Chris,</span></p>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:10.0pt; font-family:&quot;Helvetica&quot;,sans-serif\">Just trying to connect again.</span></p>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:10.0pt; font-family:&quot;Helvetica&quot;,sans-serif\">Is there a chance we could connect in person next week?</span></p>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:10.0pt; font-family:&quot;Helvetica&quot;,sans-serif\">At RIT or off campus...Thanks!</span></p>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:10.0pt; font-family:&quot;Helvetica&quot;,sans-serif\">Rick</span></p>\r\n</div>\r\n<p class=\"x_MsoNormal\" style=\"\">&nbsp;</p>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\">&nbsp;</p>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;</span></p>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO</span></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"108\" height=\"24\" id=\"x_Picture_x0020_1\" src=\"cid:5700760E-FA45-4883-8864-87CFF9919927\" style=\"width:1.125in; height:.25in\"></span></p>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://mavrix1.com/\">https://mavrix1.com</a></span></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">CONFIDENTIALITY NOTICE</span></p>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely\r\n for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</span></p>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span></p>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</span></p>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span></p>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency.\r\n All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"x_MsoNormal\" style=\"\">&nbsp;</p>\r\n<p class=\"x_airmailon0\">On October 30, 2025 at 10:14:28<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>AM, Christopher Schauerman (<a href=\"mailto:chris@cellectech.com\">chris@cellectech.com</a>) wrote:</p>\r\n<blockquote style=\"margin-top:5.0pt; margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">Hi Rick, </span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">Good chatting with you on the phone today. Let me know if tomorrow at 3:00pm works for everyone. Also, can you let me know who will be on the meeting.</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">Best,</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">Chris</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">--</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Christopher Schauerman, PhD</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">President/CEO</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Cellec Technologies, Inc.&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">245 Summit Point Dr</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Henrietta, NY 14467</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Office:&nbsp;(585) 280-9434</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Business: (585) 454-9166</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Cell: (814) 392-3661</span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Hi Rick,\r\n\r\nIt was great meeting with you today. I will try to find a time next week to show you around the battery prototyping center on campus.\r\n\r\n\r\n\r\nBest,\r\n\r\nChris\r\n\r\n\r\n\r\n--\r\n\r\n\r\n\r\nChristopher Schauerman, PhD\r\n\r\nPresident/CEO\r\n\r\nCellec Technologies, Inc.\r\n\r\nOffice: (585)280-9434\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Thursday, November 20, 2025 10:49:26 AM\r\nTo: Christopher Schauerman <chris@cellectech.com>\r\nSubject: RE: Call with Cellec\r\n\r\nYes!\r\nThanks!\r\nRick\r\n\r\n\r\nOn November 20, 2025 at 10:40:08 AM, Christopher Schauerman (chris@cellectech.com<mailto:chris@cellectech.com>) wrote:\r\n\r\nSee you at 11:30 at Java’s on campus.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nBest,\r\n\r\nChris\r\n\r\n--\r\n\r\n\r\n\r\nChristopher Schauerman, PhD\r\n\r\nPresident/CEO\r\n\r\n\r\n\r\nCellec Technologies, Inc.\r\n\r\n245 Summit Point Dr\r\n\r\nHenrietta, NY 14467\r\n\r\nOffice: (585) 280-9434\r\n\r\nBusiness: (585) 454-9166\r\n\r\nCell: (814) 392-3661\r\n\r\n\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Thursday, November 13, 2025 2:41 PM\r\nTo: Christopher Schauerman <chris@cellectech.com>\r\nSubject: RE: Call with Cellec\r\n\r\n\r\n\r\nSounds good! Earlier in the week is better, usually open MWF 10-1 and all day TR.\r\nLet me know!\r\nThanks!\r\nRick\r\n\r\nOn November 13, 2025 at 1:00:01 PM, Christopher Schauerman (chris@cellectech.com<mailto:chris@cellectech.com>) wrote:\r\n\r\nHi Rick,\r\n\r\n\r\n\r\nI should have some time next week if you want to meet up. I can come over to RIT if that works for you.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nBest,\r\n\r\nChris\r\n\r\n--\r\n\r\n\r\n\r\nChristopher Schauerman, PhD\r\n\r\nPresident/CEO\r\n\r\n\r\n\r\nCellec Technologies, Inc.\r\n\r\n245 Summit Point Dr\r\n\r\nHenrietta, NY 14467\r\n\r\nOffice: (585) 280-9434\r\n\r\nBusiness: (585) 454-9166\r\n\r\nCell: (814) 392-3661\r\n\r\n\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Wednesday, November 5, 2025 5:24 PM\r\nTo: Christopher Schauerman <chris@cellectech.com<mailto:chris@cellectech.com>>\r\nSubject: Re: Call with Cellec\r\n\r\n\r\n\r\nHi Chris,\r\n\r\nJust trying to connect again.\r\n\r\nIs there a chance we could connect in person next week?\r\n\r\nAt RIT or off campus...Thanks!\r\n\r\nRick\r\n\r\n\r\n\r\n\r\n\r\nRick Mislan, PhD,\r\n\r\nFounder, CTO\r\n\r\n[cid:5700760E-FA45-4883-8864-87CFF9919927]\r\n\r\nhttps://mavrix1.com<https://mavrix1.com/>\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE\r\n\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\n\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\n\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\n\r\nOn October 30, 2025 at 10:14:28 AM, Christopher Schauerman (chris@cellectech.com<mailto:chris@cellectech.com>) wrote:\r\n\r\nHi Rick,\r\n\r\n\r\n\r\nGood chatting with you on the phone today. Let me know if tomorrow at 3:00pm works for everyone. Also, can you let me know who will be on the meeting.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nBest,\r\n\r\nChris\r\n\r\n--\r\n\r\n\r\n\r\nChristopher Schauerman, PhD\r\n\r\nPresident/CEO\r\n\r\n\r\n\r\nCellec Technologies, Inc.\r\n\r\n245 Summit Point Dr\r\n\r\nHenrietta, NY 14467\r\n\r\nOffice: (585) 280-9434\r\n\r\nBusiness: (585) 454-9166\r\n\r\nCell: (814) 392-3661\r\n',0,0,0,0,0,0,'2025-11-20 23:58:30','2025-12-04 14:04:44','2025-12-04 14:04:44','2025-12-04 14:04:44',NULL,NULL,NULL),
(73,4,' <BN6PR08MB3315E9F63CBFEB8090E22191DCD4A@BN6PR08MB3315.namprd08.prod.outlook.com>',NULL,NULL,'Carlos with Flow Water Jets','cdiaz@flowcorp.com','Carlos Diaz','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nHi Rick,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nHope all is well. I wanted to check in and see if there have been any updates on the waterjet project. For planning purposes—both on my end and for our project manager—it would be helpful to know whether this might move forward before the end of the year, or\r\n if it\'s shaping up to be more of a Q1 2026 timeline.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nWe’re here to support you and the team as we continue working through this discovery process, so feel free to reach out anytime. I’d love to catch up when you have a moment.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nLooking forward to your reply.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" id=\"Signature\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: rgb(49, 132, 155);\"><b>Carlos R. Diaz</b></span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\"><b>Application Specialist</b></span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\">Flow International Corporation</span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\">Atlanta, GA. 30064</span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\">C.943.253.7285</span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: rgb(5, 99, 193);\"><u><a style=\"color: rgb(5, 99, 193); margin-top: 0px; margin-bottom: 0px;\" class=\"x_OWAAutoLink\" id=\"OWA740a10af-9a08-fc8b-b7e4-cd421b2f8244\" href=\"http://www.flowwaterjet.com/\">www.FlowWaterjet.com</a></u></span><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\">&nbsp;</span></p>\r\n<div style=\"font-family: &quot;Franklin Gothic Medium&quot;, sans-serif; font-size: 8.5pt; color: gray;\" class=\"elementToProof\">\r\n<span style=\"background-color: rgb(255, 255, 255);\"><br>\r\n</span></div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: &quot;Calibri Light&quot;, &quot;Helvetica Light&quot;, sans-serif; font-size: 14pt; color: rgb(23, 78, 134);\" class=\"elementToProof\">\r\n<b><br>\r\n</b></div>\r\n<div style=\"font-family: &quot;Segoe UI Light&quot;; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<span style=\"background-color: rgb(255, 255, 255);\"><b><br>\r\n</b></span></div>\r\n<div style=\"font-family: &quot;Segoe UI Light&quot;; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<span style=\"background-color: rgb(255, 255, 255);\"><br>\r\n</span></div>\r\n<div style=\"font-family: &quot;Segoe UI Light&quot;; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','Hi Rick,\r\n\r\nHope all is well. I wanted to check in and see if there have been any updates on the waterjet project. For planning purposes—both on my end and for our project manager—it would be helpful to know whether this might move forward before the end of the year, or if it\'s shaping up to be more of a Q1 2026 timeline.\r\n\r\nWe’re here to support you and the team as we continue working through this discovery process, so feel free to reach out anytime. I’d love to catch up when you have a moment.\r\n\r\nLooking forward to your reply.\r\n\r\n\r\n\r\nCarlos R. Diaz\r\n\r\nApplication Specialist\r\n\r\nFlow International Corporation\r\n\r\nAtlanta, GA. 30064\r\n\r\nC.943.253.7285\r\n\r\nwww.FlowWaterjet.com<http://www.flowwaterjet.com/>',0,0,0,0,0,0,'2025-11-21 13:00:00','2025-12-04 14:04:44','2025-12-04 14:04:44','2025-12-04 14:04:44',NULL,NULL,NULL),
(74,4,' <019aa6ca-f9a0-794c-b922-c78452cf3125@personalizedsalesagents.com>',NULL,NULL,'Re: Mavrix sales','m.hayes@personalizedsalesagents.com','Mason Hayes','Hi,\r\n\r\nSome manufacturing teams using SalesCloser cut response times by half.\r\n\r\nWould you like to see how that might look for Mavrix1?\r\n\r\nIt only takes 10 minutes. \r\n\r\nOn Thu, November 20, 2025 2:07 PM, Mason Hayes <m.hayes@personalizedsalesagents.com>\r\n[m.hayes@personalizedsalesagents.com]> wrote:\r\n\r\n> Hi,\r\n> \r\n> I know things get busy on the production floor.\r\n> \r\n> Still curious if improving client communication is on your radar.\r\n> \r\n> Should we set up a short walkthrough?\r\n> On Wed, November 19, 2025 1:25 PM, Mason Hayes <m.hayes@personalizedsalesagents.com>\r\n> [m.hayes@personalizedsalesagents.com]> wrote:\r\n> \r\n> > Hi,\r\n> > \r\n> > Just checking if you had a chance to think about SalesCloser.\r\n> > \r\n> > It could really simplify how your team handles client calls.\r\n> > \r\n> > Would you be open to a quick chat this week?\r\n> > On Mon, November 3, 2025 12:50 PM, Mason Hayes <m.hayes@personalizedsalesagents.com>\r\n> > [m.hayes@personalizedsalesagents.com]> wrote:\r\n> > \r\n> > > Hi,\r\n> > > \r\n> > > I came across Mavrix1 and noticed your focus on precision manufacturing and American autonomy. It seems like your team is committed to keeping operations efficient and quality driven.\r\n> > > \r\n> > > Many manufacturing teams are seeing great results using AI agents to manage client calls and scheduling without adding extra staff. SalesCloser helps automate lead engagement and customer communication so your team can focus on production.\r\n> > > \r\n> > > Would it make sense to explore how this could support your client communication process?\r\n> > > \r\n> > > \r\n> > > \r\n> > > Mason\r\n> > > 422 Richards Street, Ste 170, Vancouver, BC V6B 2Z4\r\n> > > P.S. Please let me know if you don\'t want to hear from me again\r\n> > >\r\n','Hi,\r\n\r\nSome manufacturing teams using SalesCloser cut response times by half.\r\n\r\nWould you like to see how that might look for Mavrix1?\r\n\r\nIt only takes 10 minutes. \r\n\r\nOn Thu, November 20, 2025 2:07 PM, Mason Hayes <m.hayes@personalizedsalesagents.com>\r\n[m.hayes@personalizedsalesagents.com]> wrote:\r\n\r\n> Hi,\r\n> \r\n> I know things get busy on the production floor.\r\n> \r\n> Still curious if improving client communication is on your radar.\r\n> \r\n> Should we set up a short walkthrough?\r\n> On Wed, November 19, 2025 1:25 PM, Mason Hayes <m.hayes@personalizedsalesagents.com>\r\n> [m.hayes@personalizedsalesagents.com]> wrote:\r\n> \r\n> > Hi,\r\n> > \r\n> > Just checking if you had a chance to think about SalesCloser.\r\n> > \r\n> > It could really simplify how your team handles client calls.\r\n> > \r\n> > Would you be open to a quick chat this week?\r\n> > On Mon, November 3, 2025 12:50 PM, Mason Hayes <m.hayes@personalizedsalesagents.com>\r\n> > [m.hayes@personalizedsalesagents.com]> wrote:\r\n> > \r\n> > > Hi,\r\n> > > \r\n> > > I came across Mavrix1 and noticed your focus on precision manufacturing and American autonomy. It seems like your team is committed to keeping operations efficient and quality driven.\r\n> > > \r\n> > > Many manufacturing teams are seeing great results using AI agents to manage client calls and scheduling without adding extra staff. SalesCloser helps automate lead engagement and customer communication so your team can focus on production.\r\n> > > \r\n> > > Would it make sense to explore how this could support your client communication process?\r\n> > > \r\n> > > \r\n> > > \r\n> > > Mason\r\n> > > 422 Richards Street, Ste 170, Vancouver, BC V6B 2Z4\r\n> > > P.S. Please let me know if you don\'t want to hear from me again\r\n> > >\r\n',0,0,0,0,0,0,'2025-11-21 14:21:51','2025-12-04 14:04:44','2025-12-04 14:04:44','2025-12-04 14:04:44',NULL,NULL,NULL),
(75,4,' <PH2P111MB07785810B20F461B2B796196E3D5A@PH2P111MB0778.NAMP111.PROD.OUTLOOK.COM>',NULL,NULL,'Army CTO Connection - [UNCLASSIFIED]','samuel.c.herbert.mil@army.mil','\"Herbert, Samuel C LTC USARMY HQDA CSA (USA)\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\nspan.EmailStyle18\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Times New Roman\",serif;\r\n	color:black;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<div id=\"oct-marking-header-unclassified\">\r\n<p class=\"MsoNormal\"><b>UNCLASSIFIED <o:p></o:p></b></p>\r\n</div>\r\n<div id=\"ms-marking-body\">\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"color:black\">Rick,&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"color:black\">My name is Sam and I work for Dr. Alex Miller, the Army CTO. He gave me your contact info and wanted to see if you could send over some products on what you have been working on? He&#8217;s traveling a lot the next couple\r\n weeks so I am putting together content for him to review while transiting. <o:p>\r\n</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\">Thanks Sir,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\">Sam <o:p></o:p></span></p>\r\n</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\">\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n<div id=\"ms-outlook-mobile-signature\">\r\n<p style=\"margin:0in;background:white\"><span style=\"font-size:12.5pt;color:black\">LTC Samuel Herbert</span><o:p></o:p></p>\r\n<p style=\"margin:0in;background:white\"><span style=\"font-size:12.5pt;color:black\">Executive Officer to the CTO</span><o:p></o:p></p>\r\n<p style=\"margin:0in;background:white\"><span style=\"font-size:12.5pt;color:black\">Office of the Chief of Staff, Army</span><o:p></o:p></p>\r\n<p style=\"margin:0in;background:white\"><span style=\"font-size:12.5pt;color:black\">3D654, Pentagon, Washington D.C.</span><o:p></o:p></p>\r\n<p style=\"margin:0in\"><span style=\"font-size:12.5pt;color:black;background:white\">&nbsp;</span><o:p></o:p></p>\r\n<p style=\"margin:0in\"><span style=\"font-size:12.5pt;color:black;background:white\">C: 859-699-3690</span><o:p></o:p></p>\r\n<p style=\"margin:0in\"><span style=\"font-size:12.5pt;color:black\">O: 703-614-4366</span><o:p></o:p></p>\r\n<p style=\"margin:0in\"><span style=\"font-size:12.5pt;color:black\">SVOIP: 302-221-4729<span style=\"background:white\"><br>\r\n<u><a href=\"mailto:Samuel.C.Herbert.mil@army.mil\">Samuel.C.Herbert.mil@army.mil</a></u>&nbsp;<br>\r\n<u><a href=\"mailto:Samuel.C.Herbert.mil@mail.smil.mil\">Samuel.C.Herbert.mil@mail.smil.mil</a></u></span></span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"oct-marking-footer-unclassified\">\r\n<p class=\"MsoNormal\"><b>UNCLASSIFIED <o:p></o:p></b></p>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','UNCLASSIFIED\r\nRick,\r\n\r\nMy name is Sam and I work for Dr. Alex Miller, the Army CTO. He gave me your contact info and wanted to see if you could send over some products on what you have been working on? He\'s traveling a lot the next couple weeks so I am putting together content for him to review while transiting.\r\n\r\nThanks Sir,\r\n\r\nSam\r\n\r\n\r\nLTC Samuel Herbert\r\n\r\nExecutive Officer to the CTO\r\n\r\nOffice of the Chief of Staff, Army\r\n\r\n3D654, Pentagon, Washington D.C.\r\n\r\n\r\n\r\nC: 859-699-3690\r\n\r\nO: 703-614-4366\r\n\r\nSVOIP: 302-221-4729\r\nSamuel.C.Herbert.mil@army.mil<mailto:Samuel.C.Herbert.mil@army.mil>\r\nSamuel.C.Herbert.mil@mail.smil.mil<mailto:Samuel.C.Herbert.mil@mail.smil.mil>\r\n\r\nUNCLASSIFIED',0,0,0,0,0,0,'2025-11-21 15:03:18','2025-12-04 14:04:44','2025-12-04 14:04:44','2025-12-04 14:04:44',NULL,NULL,NULL),
(76,4,'<0C3CA958-A141-460D-A42C-404E0EDFFB42@bayfrontcapitalllc.com>',NULL,NULL,'=?utf-8?Q?Palantir=E2=80=99s_=E2=80=98Meritocracy_Fellowship?= =?utf-8?Q?=E2=80=99_-_The_Wall_Street_Journal.?=','brian@bayfrontcapitalllc.com','Brian Stufflebean','<html class=\"apple-mail-supports-explicit-dark-mode\"><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body dir=\"auto\"><div dir=\"ltr\"><p>I thought you would be interested in the following story from The Wall Street Journal.</p> <a href=\"https://www.wsj.com/lifestyle/careers/palantirs-meritocracy-fellowship-c52fc4ad?st=fayeso&amp;reflink=article_email_share\"><p style=\"font-family: Georgia; font-weight: bold\">Palantir’s ‘Meritocracy Fellowship’</p></a><p></p> <p></p><p>Download the Wall Street Journal app here: <a href=\"https://itunes.apple.com/us/app/the-wall-street-journal./id364387007\">WSJ.</a></p> </div><br id=\"lineBreakAtBeginningOfSignature\"><div dir=\"ltr\"><div class=\"\"><span style=\"font-size: 17pt;\"><br></span></div><div class=\"\"><div class=\"\"><div><span class=\"\" style=\"background-color: rgba(255, 255, 255, 0);\">Best Regards,&nbsp;</span></div><div><span class=\"\" style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div><span class=\"\" style=\"background-color: rgba(255, 255, 255, 0);\">Brian C. Stufflebean, CEO<br class=\"\"><b class=\"\">Bayfront Capital, LLC</b><br class=\"\"><span class=\"\"><a href=\"tel:(941)545-4153\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"0/2\" style=\"text-decoration-color: rgba(128, 128, 128, 0.38);\">(941)545-4153</a>&nbsp;Cell</span></span></div><div><span style=\"background-color: rgba(255, 255, 255, 0);\"><span class=\"\"><a href=\"tel:(866)896-2423\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"0/3\" style=\"text-decoration-color: rgba(128, 128, 128, 0.38);\">(866)896-2423</a>&nbsp;Fax<br class=\"\"><a href=\"mailto:brian@bayfrontcapitalllc.com\" class=\"\">brian@bayfrontcapitalllc.com</a><br class=\"\"><a href=\"http://www.bayfrontcapitalllc.com/\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"link\" x-apple-data-detectors-result=\"0/5\" style=\"text-decoration-color: rgba(128, 128, 128, 0.38);\">www.bayfrontcapitalllc.com</a></span><br class=\"\">&nbsp; &nbsp; &nbsp;&nbsp;<br class=\"\"><br class=\"\"></span></div><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"Apple-interchange-newline\"><br></span><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"Apple-interchange-newline\"><br class=\"Apple-interchange-newline\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><b class=\"\">CONFIDENTIALITY NOTICE / NOTICE OF&nbsp;<u class=\"\">NOT A REGISTERED BROKER/DEALER:</u></b><span class=\"\">&nbsp;Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with&nbsp;FINRA. Nor does&nbsp;it provide tax or investment advice. &nbsp;Any references made to any transaction in any communication is being made as a business consultant. &nbsp; This is not a&nbsp;solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law.&nbsp;This communication&nbsp;is confidential and intended only for the intended&nbsp;recipient. &nbsp;If you are not the intended recipient, you&nbsp;may not copy, disclose, or distribute this message&nbsp;to anyone else; any such actions may be unlawful. If you have received this communication in error,&nbsp;please contact the sender of the message to inform him or her of the error.</span></span></div><div><span class=\"\"><br></span></div></div></div></div><div class=\"\"><span style=\"font-size: 17pt;\"><br></span></div><div class=\"\"><span style=\"font-size: 17pt;\">Sent from my iPhone</span></div></div></body></html>','I thought you would be interested in the following story from The Wall Street Journal. Palantir’s ‘Meritocracy Fellowship’ Download the Wall Street Journal app here: WSJ. Best Regards,&nbsp;Brian C. Stufflebean, CEOBayfront Capital, LLC(941)545-4153&nbsp;Cell(866)896-2423&nbsp;Faxbrian@bayfrontcapitalllc.comwww.bayfrontcapitalllc.com&nbsp; &nbsp; &nbsp;&nbsp;CONFIDENTIALITY NOTICE / NOTICE OF&nbsp;NOT A REGISTERED BROKER/DEALER:&nbsp;Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with&nbsp;FINRA. Nor does&nbsp;it provide tax or investment advice. &nbsp;Any references made to any transaction in any communication is being made as a business consultant. &nbsp; This is not a&nbsp;solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law.&nbsp;This communication&nbsp;is confidential and intended only for the intended&nbsp;recipient. &nbsp;If you are not the intended recipient, you&nbsp;may not copy, disclose, or distribute this message&nbsp;to anyone else; any such actions may be unlawful. If you have received this communication in error,&nbsp;please contact the sender of the message to inform him or her of the error.Sent from my iPhone',0,0,0,0,0,0,'2025-11-21 15:05:58','2025-12-04 14:04:45','2025-12-04 14:04:45','2025-12-04 14:04:45',NULL,NULL,NULL),
(77,4,'<CAGOCFXgSo-HezbK3R5i=L5xcXNVnNe=QCFwcWrzKPckeYMf79Q@mail.gmail.com>',NULL,NULL,'=?UTF-8?B?UmU6IFBhbGFudGly4oCZcyDigJhNZXJpdG9jcmFjeSBGZWxsb3dzaGlw4oCZIC0gVGhlIA==?= =?UTF-8?B?V2FsbCBTdHJlZXQgSm91cm5hbC4=?=','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Very interesting article.   Thanks for sharing. </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Nov 21, 2025 at 10:06 AM Brian Stufflebean &lt;<a href=\"mailto:brian@bayfrontcapitalllc.com\">brian@bayfrontcapitalllc.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"auto\"><div dir=\"ltr\"><p>I thought you would be interested in the following story from The Wall Street Journal.</p> <a href=\"https://www.wsj.com/lifestyle/careers/palantirs-meritocracy-fellowship-c52fc4ad?st=fayeso&amp;reflink=article_email_share\" target=\"_blank\"><p style=\"font-family:Georgia;font-weight:bold\">Palantir’s ‘Meritocracy Fellowship’</p></a><p></p> <p></p><p>Download the Wall Street Journal app here: <a href=\"https://itunes.apple.com/us/app/the-wall-street-journal./id364387007\" target=\"_blank\">WSJ.</a></p> </div><br id=\"m_6957849718986841481lineBreakAtBeginningOfSignature\"><div dir=\"ltr\"><div><span style=\"font-size:17pt\"><br></span></div><div><div><div><span style=\"background-color:rgba(255,255,255,0)\">Best Regards, </span></div><div><span style=\"background-color:rgba(255,255,255,0)\"><br></span></div><div><span style=\"background-color:rgba(255,255,255,0)\">Brian C. Stufflebean, CEO<br><b>Bayfront Capital, LLC</b><br><span><a href=\"tel:(941)545-4153\" dir=\"ltr\" style=\"text-decoration-color:rgba(128,128,128,0.38)\" target=\"_blank\">(941)545-4153</a> Cell</span></span></div><div><span style=\"background-color:rgba(255,255,255,0)\"><span><a href=\"tel:(866)896-2423\" dir=\"ltr\" style=\"text-decoration-color:rgba(128,128,128,0.38)\" target=\"_blank\">(866)896-2423</a> Fax<br><a href=\"mailto:brian@bayfrontcapitalllc.com\" target=\"_blank\">brian@bayfrontcapitalllc.com</a><br><a href=\"http://www.bayfrontcapitalllc.com/\" dir=\"ltr\" style=\"text-decoration-color:rgba(128,128,128,0.38)\" target=\"_blank\">www.bayfrontcapitalllc.com</a></span><br>      <br><br></span></div><span style=\"background-color:rgba(255,255,255,0)\"><br><br></span><div><span style=\"background-color:rgba(255,255,255,0)\"><br><br><br></span></div><div><span style=\"background-color:rgba(255,255,255,0)\"><br></span></div><div><span style=\"background-color:rgba(255,255,255,0)\"><br></span></div><div><span style=\"background-color:rgba(255,255,255,0)\"><br></span></div><div><span style=\"background-color:rgba(255,255,255,0)\"><br></span><div><span style=\"background-color:rgba(255,255,255,0)\"><br></span></div><div><span style=\"background-color:rgba(255,255,255,0)\"><br></span></div><div><span style=\"background-color:rgba(255,255,255,0)\"><b>CONFIDENTIALITY NOTICE / NOTICE OF <u>NOT A REGISTERED BROKER/DEALER:</u></b><span> Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.</span></span></div><div><span><br></span></div></div></div></div><div><span style=\"font-size:17pt\"><br></span></div><div><span style=\"font-size:17pt\">Sent from my iPhone</span></div></div></div></blockquote></div>','Very interesting article.   Thanks for sharing.\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Fri, Nov 21, 2025 at 10:06 AM Brian Stufflebean <\r\nbrian@bayfrontcapitalllc.com> wrote:\r\n\r\n> I thought you would be interested in the following story from The Wall\r\n> Street Journal.\r\n>\r\n> Palantir’s ‘Meritocracy Fellowship’\r\n>\r\n> <https://www.wsj.com/lifestyle/careers/palantirs-meritocracy-fellowship-c52fc4ad?st=fayeso&reflink=article_email_share>\r\n>\r\n> Download the Wall Street Journal app here: WSJ.\r\n> <https://itunes.apple.com/us/app/the-wall-street-journal./id364387007>\r\n>\r\n>\r\n> Best Regards,\r\n>\r\n> Brian C. Stufflebean, CEO\r\n> *Bayfront Capital, LLC*\r\n> (941)545-4153 Cell\r\n> (866)896-2423 Fax\r\n> brian@bayfrontcapitalllc.com\r\n> www.bayfrontcapitalllc.com\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n> *CONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER:* Bayfront\r\n> Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor\r\n> registered with FINRA. Nor does it provide tax or investment advice.  Any\r\n> references made to any transaction in any communication is being made as a\r\n> business consultant.   This is not a solicitation nor offer of any type and\r\n> any reference to any proposed transaction of any type is void where\r\n> prohibited by law. This communication is confidential and intended only for\r\n> the intended recipient.  If you are not the intended recipient, you may not\r\n> copy, disclose, or distribute this message to anyone else; any such actions\r\n> may be unlawful. If you have received this communication in error, please\r\n> contact the sender of the message to inform him or her of the error.\r\n>\r\n>\r\n> Sent from my iPhone\r\n>',0,0,0,0,0,0,'2025-11-21 15:23:32','2025-12-04 14:04:46','2025-12-04 14:04:46','2025-12-04 14:04:46',NULL,NULL,NULL),
(78,4,'<CAJO9__bRP1Q52-wHP_etji+jFNuNFdc1pCxNazmQ=bkhvEVK7A@mail.gmail.com>',NULL,NULL,'Fwd: Lithium Battery Company AE Proposal 6-25-25 for 3900 W Coachman','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\">Hello Team,<br><br>Please see attached LDDBlueline’s proposal.<div><br></div><div>Best Regards, <br><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">Steve Barthlow</strong> <span dir=\"auto\">&lt;<a href=\"mailto:Steve.Barthlow@lddblueline.com\">Steve.Barthlow@lddblueline.com</a>&gt;</span><br>Date: Fri, Nov 21, 2025 at 3:47 PM<br>Subject: Lithium Battery Company AE Proposal 6-25-25 for 3900 W Coachman<br>To: Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\">nathan@lithiumbatterycompany.com</a>&gt;, Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt;, Jarrett Brownfield &lt;<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>&gt;<br></div><br><br><div class=\"msg-650721144019420901\">\r\n\r\n\r\n\r\n\r\n\r\n<div lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"m_-650721144019420901WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\">Hi Nathan, Jordan, and Jarrett,<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\">It’s fantastic that the project is getting started!  The kickoff meeting was great!  At your convenience, please sign LDDBlueline’s proposal for our records.<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\">Thanks,<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\"><u></u> <u></u></span></p>\r\n<div>\r\n<table border=\"0\" cellpadding=\"0\" width=\"400\" style=\"width:300.0pt;background:white\">\r\n<tbody>\r\n<tr>\r\n<td width=\"396\" style=\"width:297.0pt;padding:0in 0in 4.5pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:#2256a1;border:none windowtext 1.0pt;padding:0in\">Steven D. Barthlow, AIA, NCARB</span></b><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#242424\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:105%\"><span style=\"font-size:10.0pt;line-height:105%;font-family:&quot;Arial&quot;,sans-serif;color:#878787;border:none windowtext 1.0pt;padding:0in\">principal | vice president | regional director</span><span style=\"font-size:10.0pt;line-height:105%;font-family:&quot;Arial&quot;,sans-serif;color:#878787\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:1.65pt\">\r\n<td width=\"396\" style=\"width:297.0pt;border:none;border-top:solid #2256a1 1.0pt;padding:0in 0in 0in 0in;height:1.65pt\">\r\n<p class=\"MsoNormal\" style=\"line-height:6.0pt\"><span style=\"font-size:5.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:24.9pt\">\r\n<td width=\"396\" style=\"width:297.0pt;padding:0in 0in 0in 0in;height:24.9pt\">\r\n<p class=\"MsoNormal\" style=\"line-height:105%\"><b><span style=\"font-size:18.0pt;line-height:105%;font-family:&quot;Arial Black&quot;,sans-serif;color:#bf0d3e;background:white\">LDD</span></b><b><span style=\"font-size:18.0pt;line-height:105%;font-family:&quot;Arial Black&quot;,sans-serif;color:#004c97;background:white\">Blueline</span></b><b><sup><span style=\"font-size:10.0pt;line-height:105%;font-family:&quot;Arial&quot;,sans-serif;color:black;background:white\">TM<u></u><u></u></span></sup></b></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:8.25pt\">\r\n<td width=\"396\" style=\"width:297.0pt;padding:0in 0in 0in 0in;height:8.25pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial Black&quot;,sans-serif;color:#595959\">Discover | Design | Deliver<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"396\" style=\"width:297.0pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><i><span style=\"font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black\">Celebrating 21 years of architectural service across Florida,</span></i><i><span style=\"font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></i></p>\r\n<p class=\"MsoNormal\"><i><span style=\"font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black\">and one vibrant year back in Tampa Bay!</span></i><i><span style=\"font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></i></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black\">306 East Oak Avenue, Tampa, FL 33602</span><span style=\"font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"396\" valign=\"top\" style=\"width:297.0pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"line-height:105%\"><u><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:blue;border:none windowtext 1.0pt;padding:0in\">Steve.Barthlow@LDDBlueline.com</span></u><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:#878787\">\r\n</span><span style=\"font-size:11.0pt;line-height:105%\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"396\" valign=\"top\" style=\"width:297.0pt;padding:0in 0in 0in 0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\">AR 103560 | office 813.771.2378 | cell 404.245.0451<u></u><u></u></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\"><u></u> <u></u></span></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #e1e1e1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Steve Barthlow\r\n<br>\r\n<b>Sent:</b> Thursday, June 26, 2025 12:26 PM<br>\r\n<b>To:</b> Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;; Jarrett Brownfield &lt;<a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Cc:</b> James Jacobik &lt;<a href=\"mailto:James.Jacobik@lddblueline.com\" target=\"_blank\">James.Jacobik@lddblueline.com</a>&gt;; Haley Lovin &lt;<a href=\"mailto:Haley.Lovin@lddblueline.com\" target=\"_blank\">Haley.Lovin@lddblueline.com</a>&gt;<br>\r\n<b>Subject:</b> Lithium Battery Company AE Proposal 6-25-25 for 3900 W Coachman<u></u><u></u></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\">Hi Nathan, Jordan and Jarrett,<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\">Attached please find LDDBlueline’s Architectural, MEP and Structural Proposal for the 3900 W Coachman Building.  Please let us know if you have any questions.  Thank you again\r\n for allowing us to be a part of this important project!<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\">Thanks,<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\"><u></u> <u></u></span></p>\r\n<table border=\"0\" cellpadding=\"0\" width=\"400\" style=\"width:300.0pt;background:white\">\r\n<tbody>\r\n<tr>\r\n<td width=\"396\" style=\"width:297.0pt;padding:0in 0in 4.5pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:#2256a1;border:none windowtext 1.0pt;padding:0in\">Steven D. Barthlow, AIA, NCARB</span></b><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#242424\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:105%\"><span style=\"font-size:10.0pt;line-height:105%;font-family:&quot;Arial&quot;,sans-serif;color:#878787;border:none windowtext 1.0pt;padding:0in\">principal | vice president | regional director</span><span style=\"font-size:10.0pt;line-height:105%;font-family:&quot;Arial&quot;,sans-serif;color:#878787\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:1.65pt\">\r\n<td width=\"396\" style=\"width:297.0pt;border:none;border-top:solid #2256a1 1.0pt;padding:0in 0in 0in 0in;height:1.65pt\">\r\n<p class=\"MsoNormal\" style=\"line-height:6.0pt\"><span style=\"font-size:5.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:24.9pt\">\r\n<td width=\"396\" style=\"width:297.0pt;padding:0in 0in 0in 0in;height:24.9pt\">\r\n<p class=\"MsoNormal\" style=\"line-height:105%\"><b><span style=\"font-size:18.0pt;line-height:105%;font-family:&quot;Arial Black&quot;,sans-serif;color:#bf0d3e;background:white\">LDD</span></b><b><span style=\"font-size:18.0pt;line-height:105%;font-family:&quot;Arial Black&quot;,sans-serif;color:#004c97;background:white\">Blueline</span></b><b><sup><span style=\"font-size:10.0pt;line-height:105%;font-family:&quot;Arial&quot;,sans-serif;color:black;background:white\">TM<u></u><u></u></span></sup></b></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:8.25pt\">\r\n<td width=\"396\" style=\"width:297.0pt;padding:0in 0in 0in 0in;height:8.25pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial Black&quot;,sans-serif;color:#595959\">Discover | Design | Deliver<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"396\" style=\"width:297.0pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><i><span style=\"font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black\">“National Expertise with Local Service”</span></i><i><span style=\"font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></i></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"396\" valign=\"top\" style=\"width:297.0pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"line-height:105%\"><u><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:blue;border:none windowtext 1.0pt;padding:0in\"><a href=\"mailto:Steve.Barthlow@LDDBlueline.com\" target=\"_blank\">Steve.Barthlow@LDDBlueline.com</a></span></u><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:#878787\">\r\n</span><span style=\"font-size:11.0pt;line-height:105%\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"396\" valign=\"top\" style=\"width:297.0pt;padding:0in 0in 0in 0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\">813.771.2378<u></u><u></u></p>\r\n<p class=\"MsoNormal\">404.245.0451 (cell)<u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n</div>\r\n</div>\r\n\r\n</div></div></div></div>','Hello Team,\r\n\r\nPlease see attached LDDBlueline’s proposal.\r\n\r\nBest Regards,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: Steve Barthlow <Steve.Barthlow@lddblueline.com>\r\nDate: Fri, Nov 21, 2025 at 3:47 PM\r\nSubject: Lithium Battery Company AE Proposal 6-25-25 for 3900 W Coachman\r\nTo: Nathan Staron <nathan@lithiumbatterycompany.com>, Jordan Wroblewski <\r\njordan@lithiumbatterycompany.com>, Jarrett Brownfield <\r\njarrett@lithiumbatterycompany.com>\r\n\r\n\r\nHi Nathan, Jordan, and Jarrett,\r\n\r\n\r\n\r\nIt’s fantastic that the project is getting started!  The kickoff meeting\r\nwas great!  At your convenience, please sign LDDBlueline’s proposal for our\r\nrecords.\r\n\r\n\r\n\r\nThanks,\r\n\r\n\r\n\r\n*Steven D. Barthlow, AIA, NCARB*\r\n\r\nprincipal | vice president | regional director\r\n\r\n\r\n\r\n*LDD**Blueline**TM*\r\n\r\nDiscover | Design | Deliver\r\n\r\n*Celebrating 21 years of architectural service across Florida,*\r\n\r\n*and one vibrant year back in Tampa Bay!*\r\n\r\n306 East Oak Avenue, Tampa, FL 33602\r\n\r\n*Steve.Barthlow@LDDBlueline.com*\r\n\r\nAR 103560 | office 813.771.2378 | cell 404.245.0451\r\n\r\n\r\n\r\n*From:* Steve Barthlow\r\n*Sent:* Thursday, June 26, 2025 12:26 PM\r\n*To:* Nathan Staron <nathan@lithiumbatterycompany.com>; Jordan Wroblewski <\r\njordan@lithiumbatterycompany.com>; Jarrett Brownfield <\r\njarrett@lithiumbatterycompany.com>\r\n*Cc:* James Jacobik <James.Jacobik@lddblueline.com>; Haley Lovin <\r\nHaley.Lovin@lddblueline.com>\r\n*Subject:* Lithium Battery Company AE Proposal 6-25-25 for 3900 W Coachman\r\n\r\n\r\n\r\nHi Nathan, Jordan and Jarrett,\r\n\r\n\r\n\r\nAttached please find LDDBlueline’s Architectural, MEP and Structural\r\nProposal for the 3900 W Coachman Building.  Please let us know if you have\r\nany questions.  Thank you again for allowing us to be a part of this\r\nimportant project!\r\n\r\n\r\n\r\nThanks,\r\n\r\n\r\n\r\n*Steven D. Barthlow, AIA, NCARB*\r\n\r\nprincipal | vice president | regional director\r\n\r\n\r\n\r\n*LDD**Blueline**TM*\r\n\r\nDiscover | Design | Deliver\r\n\r\n*“National Expertise with Local Service”*\r\n\r\n*Steve.Barthlow@LDDBlueline.com <Steve.Barthlow@LDDBlueline.com>*\r\n\r\n813.771.2378\r\n\r\n404.245.0451 (cell)',0,0,0,0,0,0,'2025-11-21 21:13:45','2025-12-04 14:04:47','2025-12-04 14:04:47','2025-12-04 14:04:47',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(79,4,'<CAGOCFXjcwR+5ufB=bn+hYUcK1Di2V74_MpBkD-GaGxzXN6Ucmg@mail.gmail.com>',NULL,NULL,'Fwd: Shmuel De-Leon Energy - Li-Ion Cells (Cylindrical, Pouch, Prismatic) for sale for this week - November 24, 2025','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Updated pricing this morning for cells.   </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">shmuel de-leon</strong> <span dir=\"auto\">&lt;<a href=\"mailto:shmuel@sdle.co.il\">shmuel@sdle.co.il</a>&gt;</span><br>Date: Mon, Nov 24, 2025 at 10:00 AM<br>Subject: Shmuel De-Leon Energy - Li-Ion Cells (Cylindrical, Pouch, Prismatic) for sale for this week - November 24, 2025<br>To: <br></div><br><br>\r\n\r\n\r\n\r\n\r\n\r\n<div lang=\"en-IL\" link=\"#0563C1\" vlink=\"#954F72\" style=\"word-wrap:break-word\">\r\n<div>\r\n<p class=\"MsoNormal\"><span lang=\"en-IL\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"PL\" style=\"color:red\"><img width=\"103\" height=\"136\" style=\"width:1.0729in;height:1.4166in\" id=\"m_5665758451303559904תמונה_x0020_2\" src=\"cid:ii_19ab6e887fa5b16b21\"></span></b><b><span lang=\"PL\" style=\"color:red\"><u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"PL\" style=\"color:red\"><u></u> <u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"PL\" style=\"color:red\">---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------<u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"PL\" style=\"color:red\"><u></u> <u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"PL\" style=\"color:red\">Attached list of cells we have availible for this week – Contact us for these cells or for other cell models you need and we will check availability – Contact us in case you wish to sell cell stock you\r\n have<u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"PL\" style=\"color:red\">----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------<u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"PL\" style=\"color:red\"><u></u> <u></u></span></b></p>\r\n<ul style=\"margin-top:0cm\" type=\"disc\">\r\n<li style=\"color:red;margin-left:0cm\">\r\n<b><span lang=\"PL\">Attached an update on discontiniue Panasonic cells  -Contact us to purchase these cells before it will be to late!!!<u></u><u></u></span></b></li></ul>\r\n<p class=\"MsoNormal\"><b><span lang=\"PL\" style=\"color:red\"><u></u> <u></u></span></b></p>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"2112\" style=\"width:1584.0pt;border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"1863\" nowrap valign=\"bottom\" style=\"width:1396.9pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><u><span lang=\"EN-US\" style=\"font-size:16.0pt;color:black\">New High Energy Density Cells we sell:<u></u><u></u></span></u></b></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:16.0pt;color:black\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">21700 cell</span></b><span style=\"color:black\"> – production capacity is 2000 cells per day (Vendor start building 500MWh/Year Factory – Production start\r\n Q1/26) - cost ~$20-28/pcs ex work China depend on the quantity<br>\r\nEnergy Density: 393 Wh/kg, Capacity: 6Ah at C/5, at room temperature to 3V C.O.V, Weight: 58 Grams, Size: 21.8, 71.8, Nominal voltage: 3.8V,  <br>\r\nMax constant charge current is 1C to 4.35V, Cycle life: 120 cycles, Max constant discharge current is 5C, Discharge temp -10 to 65 Deg C, <br>\r\nCharge temp 0 to 35 Deg C <br>\r\n <br>\r\n<b>Pouch Cells Vendor 1</b><br>\r\nWe also sell quasi solid lithium metal anode free pouch cells with energy densities of up to 520 Wh/kg, 1200 Wh/l, 8-50Ah capacity, 7C max constant discharge, 10-50 Cycles - Cells are made in 200MWh/Year factory .<br>\r\n<br>\r\n<b>Pouch Cells Vendor 2</b><br>\r\nWe also sell quasi solid lithium metal pouch cells with energy densities of up to 450 Wh/kg, 6-50Ah capacity, 8C max constant discharge, 1200 Cycles - Cells are made in 600MWh/Year factory.<br>\r\n<br>\r\n<b>Pouch Cells Vendor 3</b><br>\r\nWe also sell Semi solid lithium metal anode free pouch cells with energy densities of up to 400-600 Wh/kg, 8-50Ah capacity, 5C max constant discharge, 400Wh/Kg with 800 cycles, 500-600 Wh/kg with 10-15 Cycles - Cells are made in 10MWh/Year prototype production\r\n line.<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">We sell battery packs assemble with lithium metal cells with 400-460 Wh/kg.</span></b><b><u><span lang=\"EN-US\" style=\"font-size:16.0pt;color:black\"><u></u><u></u></span></u></b></p>\r\n<p class=\"MsoNormal\"><b><u><span lang=\"EN-US\" style=\"font-size:16.0pt;color:black\">---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------<u></u><u></u></span></u></b></p>\r\n<p class=\"MsoNormal\"><b><u><span lang=\"EN-US\" style=\"font-size:16.0pt;color:black\"><u></u><span style=\"text-decoration:none\"> </span><u></u></span></u></b></p>\r\n<p class=\"MsoNormal\"><b><u><span lang=\"EN-US\" style=\"font-size:16.0pt;color:black\">Our Customers/Suppliers new cells with and older date code stocks we have for sale:<u></u><u></u></span></u></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"EN-US\" style=\"color:black\"><u></u> <u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b>We have in Germany Panasonic NCR18650-B in special pricing – Contact us for more details<u></u><u></u></b></p>\r\n<p class=\"MsoNormal\"><b><u></u> <u></u></b></p>\r\n<p class=\"MsoNormal\"><b><span style=\"color:red\">Panasonic NCR-18650B</span></b><br>\r\nPrice for an order of minimum 50.040 pcs. = 3,46 € (transport costs will be added)<br>\r\nPrice is only valid for an order of minimum 50.040 pcs.<br>\r\nProduction date code of the cells: 34.700 pcs. with November 2024, 15.340 pcs. with March 2025<br>\r\nDelivery time: available on stock - subject to being unsold!<br>\r\n<b><br>\r\n<span style=\"color:red\">Molicel INR21700-P42A</span></b><br>\r\nPrice for an order of minimum 20.000 pcs.: 3.5 € (transport costs will be added)<br>\r\nMaximum available quantity: 48.000 pcs.<br>\r\nProduction date code of the cells: March 2025<br>\r\n<br>\r\n<b><span style=\"color:red\">Molicel INR21700-P45B</span></b><br>\r\nPrice for an order of minimum 20.000 pcs.: 3.5 € (transport costs will be added)<br>\r\nMaximum available quantity: 41.000 pcs.<br>\r\nProduction date code of the cells: December 2024 and January 2025<u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><u></u> <u></u></b></p>\r\n<p class=\"MsoNormal\"><b><span style=\"color:red\">Molicel INR18650-P28A</span></b><br>\r\nPrice for an order of minimum 7.000 pcs.: 1.8 € (transport costs will be added)<br>\r\nProduction date code of the cells: 2022 – Location: USA<b><u></u><u></u></b></p>\r\n<p class=\"MsoNormal\"><b><u></u> <u></u></b></p>\r\n<p class=\"MsoNormal\"><b>We have in Germany:<u></u><u></u></b></p>\r\n<p class=\"MsoNormal\">Murata US18650VTC6, 25K, cost 3Euro/pcs, Date cost March 2024<u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\"><b>We have in Germany:<u></u><u></u></b></p>\r\n<p class=\"MsoNormal\"><span lang=\"en-AE\">Panasonic 150K NCR18650GA6W (Factory Wuxi China) Date Code 2022 €2.6/pcs.<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"en-AE\"><u></u> <u></u></span></p>\r\n<p><span style=\"color:#1f497d\">----------------------------------------------------------------------------------------------------------------------------------------------------------------------------<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"EN-US\" style=\"font-size:16.0pt;color:black\">New cells we have for sale:<u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"EN-US\" style=\"font-size:16.0pt;color:black\"><u></u> <u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"EN-US\" style=\"font-size:16.0pt;color:#ee0000\">We start selling Moli Energy 21700 6.5Ah cells.</span></b><b><span style=\"font-size:16.0pt;color:#ee0000\"><u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\"><u></u> <u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"EN-US\" style=\"color:black\">Supplier 1:</span></b><b><span style=\"color:black\"><u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"EN-US\" style=\"color:black\">Moli cells</span></b><b><span style=\"color:black\"><u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\">P26A – Any Quantity 10K and up – fresh cells – An attractive cost.</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\">P28A – Any Quantity 10K and up – fresh cells - An attractive cost.</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\">P42A – Any Quantity 10K and up – fresh cells - An attractive cost.</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\">M35A – Any Quantity 10K and up – fresh cells - An attractive cost.</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"1271\" style=\"width:953.0pt;border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"309\" nowrap colspan=\"2\" valign=\"bottom\" style=\"width:232.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<ol style=\"margin-top:0cm\" start=\"1\" type=\"1\">\r\n<li style=\"color:black;margin-left:0cm\">\r\n<b><span>Samsung SDI<u></u><u></u></span></b></li></ol>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Leadtime<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">18650-20RM</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">High Rate, 3.6V, 2.0Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.6</span>5<span style=\"color:black\">\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-12<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in Malaysia<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">18650-20RM</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">High Rate, 3.6V, 2.0Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.7\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA HK</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-12<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in Malaysia, MOQ 20K pcs<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-25R<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High Rate, 3.6V, 2.5Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.69 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-26JM<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High Energy, 3.6V, 2.6Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.30 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2021-08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in Malaysia<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-30Q<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High rate, 3.6V, 3.0Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.25 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-07<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-30Q<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High rate, 3.6V, 3.0Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.15 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-10<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 1 Pallet<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-35E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 3.5Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.78 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 3 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-35E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 3.5Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.45 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-01<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-30T<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High Rate, 3.6V, 3.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-40T5<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High Rate, 3.6V, 4.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.05 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-40T<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High Rate, 3.6V, 4.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.90 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-02<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:12.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-48X3<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4.8Ah, 3000cycles,bare<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.65 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2023-12<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Bare cells<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-48X2<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4.8Ah, 3000cycles<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4 weeks<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2022-01<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-50E2<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.0Ah, 2C(C), 3C(P)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.70 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-01<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-50E2<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.0Ah, 2C(C), 3C(P)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.95 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Available in Oct.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 2025-07<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-50GB<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.0Ah, 1C(C), 2C(P)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.15 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-03<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in Malaysia, MOQ 1 Pallet<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-50S<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.0Ah 5C(C), 9C(P)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.45 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 2025<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-50S<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.0Ah 5C(C), 9C(P)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.68 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 2025<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-53G2<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.3Ah, 1C(C)<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.40 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-03<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">with tube<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-58E<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.64V, 5330mAh, 3C max<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-07<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"309\" nowrap colspan=\"2\" valign=\"bottom\" style=\"width:232.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">2. LG Energy Solution<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-F1L<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High Energy, 3.6V, 3.35Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.25 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-09<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-MF1<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 2.15Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2021-02<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Lot A045<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-M26(S)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 2.6Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">19,000pcs<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.83 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2020-10<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-M29<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 2.85Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.2 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Fresh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650HJ2<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High Rate, 3.6V, 3.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.05 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-05<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650HJ2<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High Rate, 3.6V, 3.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.21 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-MH1<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 3.2Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.56 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-MH1<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 3.2Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.54 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Within 6 months<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 1 Pallet<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-MJ1<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 3.5Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.55 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-MJ1<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 3.5Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.53 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 1 Pallet<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-M48<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.68V, 17.4Wh<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.03 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2023-05<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">LOT C118D283<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-M48A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.6 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-M50LT<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 5.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.92 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-M52V<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.2Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.16 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 2025<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in Korea, Bare cell<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">Cylindrical</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">21700-M58T</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">3.6V, 5.8Ah</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">5,330pcs</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">$2.15\r\n</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">FCA HK</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">3 days</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">2023-11</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">Made in Korea,\r\n<br>\r\nSpecial Promotion to take all</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-M58T<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.8Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$6.15 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3 days<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-06<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in Korea<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-M58T<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.8Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.7 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3 days<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Pouch Polymer<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">E66<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Li-ion, 3.65V 66Ah 11.3 x 98 x 357mm<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$35.00 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N/A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">A- grade<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Pouch Polymer<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">E78<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Li-ion, 3.65V 78Ah 8 x 98 x 510mm<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$38.00 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N/A<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">A- grade<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"309\" nowrap colspan=\"2\" valign=\"bottom\" style=\"width:232.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">3. Panasonic (Sanyo)<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650RX (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1950mAh, 3.6V<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 1 Pallet<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.75 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 3-6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Fresh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650AA (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2250mAh, 3.6V, 8A discharge<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.80 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650A(Y) (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2200mAh, 3.6V, 2C discharge<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.35 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">5 days<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650NSX (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2500mAh, 3.6V<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.35 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2023-03<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 1 Pallet<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650FM (Sanyo)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V 2.5Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.70 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">April, 2026<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 2026<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan, Irrevocable<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650ZM2 (Sanyo)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.55Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.75 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-08<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650ZM2 (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.55Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.77 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650ZY (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.6Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.25 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2022-03<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650ZTA (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.8V (4.35V charge), 3000mAh\r\n<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.60 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2022-03<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18500F<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V, 1620mAh<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.90 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR14500P (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V, 840mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.1 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2-4 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 20,160pcs, irrevocable,\r\n<br>\r\n30% deposit<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR14650R (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 1050mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">10,080pcs<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.35 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2021-10<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18650BF (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3.4Ah, standard<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">December<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 2025<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b>Japan, EOL sson</b><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18650GA (Sanyo)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3.5Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">End of Dec.<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 3 months<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 1 Pallet, <br>\r\nMade in Japan<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18500A (Pana)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2040mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 8 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR1850B (Pana)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2350mAh<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.55 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 2025<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18650PF (Pana)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2900mAh, 10A discharge<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.75 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18650BD (Pana.)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle Rate, 3.6V, 3.2Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.12 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-05<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b>China, EOL soon</b><u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18650GA6W (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle Rate, 3.6V, 3.5Ah, green tube<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.26 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-10<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b>China, EOL soon</b><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18650GA6W (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle Rate, 3.6V, 3.5Ah, green tube<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.22 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-09<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b>MOQ 1 Pallet, China, EOL soon</b><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18650GA6W (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle Rate, 3.6V, 3.5Ah, red tube<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 1 year<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b>China, EOL soon</b><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18650B (Pana.)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Standard, 3.6V, 3.4Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.40 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-01<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan, MOQ 1 Pallet<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR2170MB (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5150mAh, 12A discharge<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.65 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-01<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan, MOQ 1 Pallet<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR2270AE (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5635mAh, 12A discharge<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-11<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">CR123A in bulk package<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3V 1400mAh Lithium Primary<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.28 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">CR123A in candy package<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3V 1400mAh Lithium Primary<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.35 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA103443 (Pana.)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.01Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">9,000pcs<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$5.3 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2021-12<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA103450 w/o breaker (Pana.)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2350mAh<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.70 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA103450 w/t breaker (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2350mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$5.75 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-10<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 10K<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA882936SA (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 1310mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$5.45 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-01<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA903864A (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3280mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">5,040pcs<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$6.65 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2021-09<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA653864SA (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.4Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.40 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA793540(Pana)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 1485mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.04 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2-4 Months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-01<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA596080 (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4170mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$8.90 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA596080SA (Pana.)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4340mAh<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UF103450P without fuse<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V, 2000mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$5.60 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2021-10<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UF703450F (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V, 1480mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.50 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2022-08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UF653450S (Sanyo)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V, 1250mAh<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-02<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UF553450ZP (Sanyo)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V 1.15Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.70 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4 weeks<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-10<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UF553450ZP (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V 1.15Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.65 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-05<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UF553443ZU (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V 1.04Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Few<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.60 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2020-06<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UF553443ZU (Sanyo)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V 1.04Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.95 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-04<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Panasonic 50Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NMC 50Ah 27x148x92mm, 849g, 0.55mhom<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">A- grade<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Panasonic 4Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V 4.2Ah 13-120-65mm, 35C-70C, 183g<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">A- grade<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">4. Murata\r\n<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US18650VTC4<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.1Ah, 30A Disch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US18650VTC5<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.5Ah, 20A/30A Disch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US18650VTC5A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.5Ah, 30A/35A Disch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Few<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US18650VTC5C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.5Ah, 30A Disch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.75 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2021 Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US18650VTC5D<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.7Ah, 35A Disch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.2<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2021-10<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US18650VTC6<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3.0Ah, 20A/30A Disch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.65 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4-6 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 3-6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Fresh<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US18650VTC6<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3.0Ah, 20A/30A Disch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.2 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4-6 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US21700VTC6A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V 4100mAh 40A discharge<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$5.2 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4-6 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">30% deposit is needed<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US21700VTC6A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V 4100mAh 40A discharge<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.45 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4-6 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">30% deposit is needed<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">5. Molicel\r\n<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-P26A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2600mAh, Wide Temp, High rate<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 20Kpcs (1 pallet)<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-P28A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.8Ah, Widetemp. Highrate<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.55 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-P30B<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3.0Ah, Widetemp. 30A Disch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$5.1 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR18650-M35A</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.6V, 3.5Ah, Widetemp. Highrate</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$3.55\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">within 6 months</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-M35A<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3.5Ah, Widetemp. Highrate<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 16Kpcs<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.40 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-P42A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4.2Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.70 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3-5 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-P45B<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V 4500mAh<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.2 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-P50B<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V 5000mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Few<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$6.25 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">6. BYD<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FC46120P</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V, 24.50Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$14.5\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">MOQ 10pcs</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\"></td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"309\" nowrap colspan=\"2\" style=\"width:232.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">7. LithiumWerk (A123)<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">ANR26650M1B<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.3V 2.5Ah High Rate<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$8.5 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4-6 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-01<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">ANR26650M1B<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.3V 2.5Ah High Rate<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$7 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4-6 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-04<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 6,600pcs (1 pallet)<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"309\" nowrap colspan=\"2\" valign=\"bottom\" style=\"width:232.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">8. SK On (Previously, SK Innovation)<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Pouch</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">E400</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Li-ion, 3.6V, 40Ah, 9.5x97x320mm</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$30.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">within 2022</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">A- grade</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Pouch</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">E450</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Li-ion, 3.6V, 45Ah, 10x175x190mm</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$31.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">within 2022</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">A- grade</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Pouch</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">E500</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Li-ion, 3.6V, 50Ah, 11.5x98x300mm</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$35.10\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">N/A</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">A- grade, OEM by EVE</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Pouch</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">E556</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Li-ion, 3.6V, 55.60Ah, 10x100x354mm</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$30.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">N/A</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">A- grade</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Pouch</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">E600B</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Li-ion, 3.6V, 60Ah, 14.5x100x300mm</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">4,555</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$35.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">N/A</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">A- grade</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Pouch</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">E603</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Li-ion, 3.66V, 60.3Ah, 9.5x354x101mm</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$30.00\r\n</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">N/A</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Uncycled, for EV</span><u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Pouch</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">E805</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Li-ion, 3.6V, 60Ah, 14.5x100x300mm</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Few</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$36.00\r\n</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">N/A</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">disassembled, un-cycled</span><u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Pouch</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">E120</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Li-ion, 3.7V, 120Ah, 14.5x98x530mm</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$38.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">N/A</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">A- grade</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"309\" nowrap colspan=\"2\" valign=\"bottom\" style=\"width:232.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">9. Far East (FEB)<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-2600<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2600mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$<span lang=\"EN-US\">1.12</span><span lang=\"EN-US\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2-3 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-2900<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2900mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">EOL<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For E-bike<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-3300<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3300mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.58 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For Medical Equipment<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-3800<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3800mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.12 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For Lighting Equipment<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-4000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4000mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.70 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For Lighting Equipment<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-4000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4000mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.58 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For E-bike<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-4500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4500mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.63 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For UPS power<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-5000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5000mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.08 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For Smart Speaker<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-5500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5500mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.65 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For Smart Speaker<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-6000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 6000mAh, Max 0.7C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.00<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For Lighting Equipment / Sample<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\"></td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\"></td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span>10. DMEGC <u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR18650-20P<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>2.0Ah, CC 20A, Pulse 30A<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.30\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR18650-25P<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>2.5Ah, CC 20A, Pulse 30A<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.4\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR18650-30P<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>3.0Ah, CC 10A, Pulse 20A, with 80C cut<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.90\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR18650-26E<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>2.6Ah, CC 3C, Pulse 5C<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.12\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR18650-26E2<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>2.6Ah, CC 3C, Pulse 5C, 7S max<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.1\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR18650-29E<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>2.9Ah, CC 2C, Pulse 4C<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.4\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR18650-32E<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>3.2Ah, CC 10A, Pulse 5C<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.68\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR18650-35E<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>3.5Ah, CC 10A, Pulse 5C<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR21700-45E<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>4.5Ah, CC 1Cm Pulse 3C<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.55\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR21700-50E<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>5.0Ah, CC 3C, Pulse 4C<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.95\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR21700-40P<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>4.0Ah, CC 6A, Max DC 45A<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$2.70\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Supply<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR21700-40M (Orange tube)<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">4.0Ah, CC 20A, Max 45A,<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR21700-40M (Yellow tube)<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">4.0Ah, CC 15A, Max 18A,<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">11. EVE<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650/26V<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.60V 2.55Ah 7.65A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.16 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR18650/33V</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.60V 3.20Ah 10A</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.55\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Stock</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR18650/35V</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.65V 3.50Ah 10.20A</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.75\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Stock</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR18650/20P</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.60V 2.00Ah 30A</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$</span>1.26<span style=\"color:black\">\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR18650/25P</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.60V 2.50Ah 30A</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.56\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Stock</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR21700-40P</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.60V 4.00Ah 50A</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.90\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR21700-40PL</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.60V 4.00Ah Tabless</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Trail lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$4.40\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR21700-50E</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.65V 5.00Ah 15A</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.9\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR4695E</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.69V 31.90Ah 4C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$50.00\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR4695P</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.69V 29Ah</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Few</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$50.00\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">without QR code (TBI)</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">12. BAK<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap rowspan=\"10\" style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Middle Rate<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650CH<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2.60Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.03<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650CP<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.35Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.79<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650CP-34E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.40Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.72<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650CR-35E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.50Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.81<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N21700CG-50<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">5.00Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.2<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Within 3 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N21700CG-50E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">5.00Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.30<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N21700CD-53E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">5.30Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.53<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N21700CK-55E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">5.50Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Trial Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.21<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N21700CH-58E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">5.80Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Trial Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.37<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650CH<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2.60Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap rowspan=\"3\" style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">High Rate<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650COP<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2.50Ah 30A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.64<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650CQP<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.00Ah 15A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.92<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N21700CGP<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4.00Ah 35A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.40<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" rowspan=\"2\" style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Low\r\n<br>\r\nTemperature<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650CP Low Temperature<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.35Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.87<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650CR-35T Low Temperature<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.50Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.95<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Tabless<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-40D<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4.00Ah 100A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.30<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR4695-330B</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.6V, 33Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sample</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$50.00</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR4690-310B</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.6V, 31Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sample</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$50.00</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">13. CBAK<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap rowspan=\"9\" style=\"width:71.0pt;border-top:none;border-left:solid windowtext 1.0pt;border-bottom:solid black 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">LFP<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">26650FS2A<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V 3.40Ah 3C for EV / ESS<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">26650FS3<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V 3.60Ah 3C for EV / ESS<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">26650FS3A<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V 3.80Ah 3C for EV / ESS<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">26650FS4<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V 4.00Ah 3C for EV / ESS<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">26650FS4B<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V 4.00Ah 3C for Light Vehicle<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">26700FB<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V 4.00Ah 3C for Light Vehicle<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">26700FB2<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V 4.50Ah 3C for Light Vehicle<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">26700FE<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V 4.50Ah 3C for EV / ESS<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>32140FS<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>3.2V 15Ah\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$5.70<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1-2 weeks<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">32140NS</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.0V, 10Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sample</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$10.00</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Only Spec sheet is available<br>\r\n(No UN 38.3 &amp; MSDS)</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">14. CALB<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">4695</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.7V, 30Ah, NMC</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">MOQ 10pcs</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$50.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sample, No spec sheet yet</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">15. Highstar<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">NaCR33140-10ER</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.05V, 10Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">NaCR46145-20ER</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.05V, 20Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">MOQ 50pcs</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$40.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">NaCP50160118-70E3</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Prismatic, 3.05V, 70Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">NaCP50160118-70H3</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Prismatic, 3.0V, 70Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">NaCP50160118-80E3</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Prismatic, 3.05V, 80Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sample</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">NaCP40130208-80E3</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Prismatic, 3.05V, 80Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sample</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">NaCP50160153-103E3</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Prismatic, 3.0V, 103Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sample</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Tabless<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR21700-40PS<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>3.6V, 3950mAh<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>MOQ 50pcs<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$6.65\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>2 weeks<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Tabless<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-50PS<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4900mAh, Low Impedance<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">130pcs<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.50 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\"><u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"15\" nowrap valign=\"bottom\" style=\"width:11.2pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"41\" nowrap valign=\"bottom\" style=\"width:30.8pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"33\" nowrap valign=\"bottom\" style=\"width:25.05pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"33\" nowrap valign=\"bottom\" style=\"width:25.05pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"34\" nowrap valign=\"bottom\" style=\"width:25.35pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"34\" nowrap valign=\"bottom\" style=\"width:25.35pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"59\" nowrap valign=\"bottom\" style=\"width:44.3pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span lang=\"en-IL\" style=\"font-family:SimSun\"><u></u> <u></u></span></p>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"1276\" style=\"width:956.85pt;border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\"><b><span>16. Lishen<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"219\" nowrap valign=\"bottom\" style=\"width:164.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"246\" nowrap valign=\"bottom\" style=\"width:184.25pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"113\" nowrap valign=\"bottom\" style=\"width:3.0cm;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.05pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" style=\"width:3.0cm;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.05pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">18650LA</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">2Ah, 10C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$</span>1.15<span style=\"color:black\">\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">18650LD</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">2.5Ah, 10C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.50\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">18650LE</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3Ah, 10C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$</span>2.15<span style=\"color:black\">\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">18650SK</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">2.6Ah, 3C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$</span>1.1<span style=\"color:black\">\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">18650SS</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3Ah, 3C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.48\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">18650HB</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.35Ah, 3C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.63\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">18650HC</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.5Ah, 3C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.92\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">21700LA</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">4Ah, 10C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.93\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">21700SA</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">4Ah, 3C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.80\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">21700SD</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">5Ah, 3C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$</span>2.19<span style=\"color:black\">\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">21700SZ</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">5Ah, 3C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$</span>2.2<span style=\"color:black\">\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span lang=\"en-IL\" style=\"font-family:SimSun\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"en-IL\" style=\"font-family:SimSun\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"en-IL\" style=\"font-family:SimSun\"><u></u> <u></u></span></p>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"1276\" style=\"width:956.85pt;border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\"><b><span>17. Sunpower<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"219\" nowrap valign=\"bottom\" style=\"width:164.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"246\" nowrap valign=\"bottom\" style=\"width:184.25pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"113\" nowrap valign=\"bottom\" style=\"width:3.0cm;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.05pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" style=\"width:3.0cm;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.05pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-1300<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">13P (15C) 20A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-1500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">15H (13C) 20A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-2000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">20P (10C) 20A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-2000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">20T (15C) 30A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-2200<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">22R (9C) 20A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-2500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">25R (10C) 25A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-2500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">25T (12C) 30A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-2500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">25L (8C) 20A Low Temperature type<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-2600<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">26P (5C) 13A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.34<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-3000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">30P (10C) 30A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-3000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">30S (13C) 40A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-3000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">30L (3C) 10A Low Teperature type<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-4000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">40S (10C) 40A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-4000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">40L (10C) 40A Low Temperature type<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-5000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">50E (3C) 15A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-5000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">50SE (6C) 30A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">LFP26700-4300<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">43E (3C) 12.9A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">LFP26700-4500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">45E (3C) 13.5A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\"><span><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap valign=\"bottom\" style=\"width:164.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"246\" nowrap valign=\"bottom\" style=\"width:184.25pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"113\" nowrap valign=\"bottom\" style=\"width:3.0cm;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.05pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"219\" nowrap valign=\"bottom\" style=\"width:164.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"246\" nowrap valign=\"bottom\" style=\"width:184.25pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"113\" nowrap valign=\"bottom\" style=\"width:3.0cm;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.05pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;border:none;border-bottom:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\"><b><span>18. Maxell<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"219\" nowrap valign=\"bottom\" style=\"width:164.0pt;border:none;border-bottom:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"246\" nowrap valign=\"bottom\" style=\"width:184.25pt;border:none;border-bottom:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"113\" nowrap valign=\"bottom\" style=\"width:3.0cm;border:none;border-bottom:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;border:none;border-bottom:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;border:none;border-bottom:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;border:none;border-bottom:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;border:none;border-bottom:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.05pt;border:none;border-bottom:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">ICP653865SRU<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V, 1800mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">48,760<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">B0711<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">ICP653450AHR<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1360mAh 3.85V (4.35V charge)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">I2101<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\">Prismatic</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\">ICP103450AHR</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\">2160mAh 3.8V (4.35V charge)</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\">49,400</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\">TBI</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\">FCA HK</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\">1 week</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\">within 2020</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span lang=\"en-IL\" style=\"font-family:SimSun\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"en-IL\" style=\"font-family:SimSun\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-family:SimSun\">Warm regards</span><span lang=\"EN-US\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">Shmuel De-Leon/CEO</span><span lang=\"EN-US\" style=\"font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">Shmuel De-Leon Energy, Ltd.</span><span lang=\"EN-US\" style=\"font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">Mazal Arie 10, Hod-Hasharon, Israel 4536045</span><span lang=\"EN-US\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">Tel/Fax: 972-77-5010792</span><span lang=\"EN-US\" style=\"font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">Mobile: 972-52-8601517</span><span lang=\"EN-US\" style=\"font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"DE\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">E-Mail:\r\n</span><span lang=\"en-IL\"><a href=\"mailto:shmueld33@gmail.com\" target=\"_blank\"><span lang=\"DE\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif;color:blue\">shmuel@sdle.co.il</span></a></span><span lang=\"DE\" style=\"font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">Company web site:\r\n</span><span lang=\"en-IL\"><a href=\"http://www.sdle.co.il/\" target=\"_blank\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif;color:blue\">www.sdle.co.il</span></a></span><span lang=\"EN-US\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">Battery DataBase web site:\r\n</span><span lang=\"en-IL\"><a href=\"http://www.batteriesdatabase.com/\" target=\"_blank\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif;color:blue\">www.batteriesdatabase.com</span></a></span><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif;color:#1f497d\"><img border=\"0\" width=\"86\" height=\"43\" style=\"width:.8958in;height:.4479in\" id=\"m_5665758451303559904תמונה_x0020_1\" src=\"cid:image001.jpg@01D756D4.5D0E4230\"></span><span lang=\"EN-US\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">Sign-up to our weekly battery newsletter\r\n</span><span lang=\"en-IL\"><a href=\"https://www.sdle.co.il/services/newsletter/\" target=\"_blank\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif;color:blue\">https://www.sdle.co.il/services/newsletter/</span></a></span><span lang=\"en-IL\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">\r\n</span><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\"><u></u> <u></u></span></p>\r\n</div>\r\n</div>\r\n\r\n</div></div>','Updated pricing this morning for cells.\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: shmuel de-leon <shmuel@sdle.co.il>\r\nDate: Mon, Nov 24, 2025 at 10:00 AM\r\nSubject: Shmuel De-Leon Energy - Li-Ion Cells (Cylindrical, Pouch,\r\nPrismatic) for sale for this week - November 24, 2025\r\nTo:\r\n\r\n\r\n\r\n\r\n\r\n\r\n*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*\r\n\r\n\r\n\r\n*Attached list of cells we have availible for this week – Contact us for\r\nthese cells or for other cell models you need and we will check\r\navailability – Contact us in case you wish to sell cell stock you have*\r\n\r\n*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*\r\n\r\n\r\n\r\n   - *Attached an update on discontiniue Panasonic cells  -Contact us to\r\n   purchase these cells before it will be to late!!!*\r\n\r\n\r\n\r\n*New High Energy Density Cells we sell:*\r\n\r\n\r\n\r\n*21700 cell* – production capacity is 2000 cells per day (Vendor start\r\nbuilding 500MWh/Year Factory – Production start Q1/26) - cost ~$20-28/pcs\r\nex work China depend on the quantity\r\nEnergy Density: 393 Wh/kg, Capacity: 6Ah at C/5, at room temperature to 3V\r\nC.O.V, Weight: 58 Grams, Size: 21.8, 71.8, Nominal voltage: 3.8V,\r\nMax constant charge current is 1C to 4.35V, Cycle life: 120 cycles, Max\r\nconstant discharge current is 5C, Discharge temp -10 to 65 Deg C,\r\nCharge temp 0 to 35 Deg C\r\n\r\n*Pouch Cells Vendor 1*\r\nWe also sell quasi solid lithium metal anode free pouch cells with energy\r\ndensities of up to 520 Wh/kg, 1200 Wh/l, 8-50Ah capacity, 7C max constant\r\ndischarge, 10-50 Cycles - Cells are made in 200MWh/Year factory .\r\n\r\n*Pouch Cells Vendor 2*\r\nWe also sell quasi solid lithium metal pouch cells with energy densities of\r\nup to 450 Wh/kg, 6-50Ah capacity, 8C max constant discharge, 1200 Cycles -\r\nCells are made in 600MWh/Year factory.\r\n\r\n*Pouch Cells Vendor 3*\r\nWe also sell Semi solid lithium metal anode free pouch cells with energy\r\ndensities of up to 400-600 Wh/kg, 8-50Ah capacity, 5C max constant\r\ndischarge, 400Wh/Kg with 800 cycles, 500-600 Wh/kg with 10-15 Cycles -\r\nCells are made in 10MWh/Year prototype production line.\r\n\r\n\r\n\r\n*We sell battery packs assemble with lithium metal cells with 400-460\r\nWh/kg.*\r\n\r\n*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*\r\n\r\n\r\n\r\n*Our Customers/Suppliers new cells with and older date code stocks we have\r\nfor sale:*\r\n\r\n\r\n\r\n*We have in Germany Panasonic NCR18650-B in special pricing – Contact us\r\nfor more details*\r\n\r\n\r\n\r\n*Panasonic NCR-18650B*\r\nPrice for an order of minimum 50.040 pcs. = 3,46 € (transport costs will be\r\nadded)\r\nPrice is only valid for an order of minimum 50.040 pcs.\r\nProduction date code of the cells: 34.700 pcs. with November 2024, 15.340\r\npcs. with March 2025\r\nDelivery time: available on stock - subject to being unsold!\r\n\r\n* Molicel INR21700-P42A*\r\nPrice for an order of minimum 20.000 pcs.: 3.5 € (transport costs will be\r\nadded)\r\nMaximum available quantity: 48.000 pcs.\r\nProduction date code of the cells: March 2025\r\n\r\n*Molicel INR21700-P45B*\r\nPrice for an order of minimum 20.000 pcs.: 3.5 € (transport costs will be\r\nadded)\r\nMaximum available quantity: 41.000 pcs.\r\nProduction date code of the cells: December 2024 and January 2025\r\n\r\n\r\n\r\n*Molicel INR18650-P28A*\r\nPrice for an order of minimum 7.000 pcs.: 1.8 € (transport costs will be\r\nadded)\r\nProduction date code of the cells: 2022 – Location: USA\r\n\r\n\r\n\r\n*We have in Germany:*\r\n\r\nMurata US18650VTC6, 25K, cost 3Euro/pcs, Date cost March 2024\r\n\r\n\r\n\r\n*We have in Germany:*\r\n\r\nPanasonic 150K NCR18650GA6W (Factory Wuxi China) Date Code 2022 €2.6/pcs.\r\n\r\n\r\n\r\n----------------------------------------------------------------------------------------------------------------------------------------------------------------------------\r\n\r\n*New cells we have for sale:*\r\n\r\n\r\n\r\n*We start selling Moli Energy 21700 6.5Ah cells.*\r\n\r\n\r\n\r\n*Supplier 1:*\r\n\r\n*Moli cells*\r\n\r\nP26A – Any Quantity 10K and up – fresh cells – An attractive cost.\r\n\r\nP28A – Any Quantity 10K and up – fresh cells - An attractive cost.\r\n\r\nP42A – Any Quantity 10K and up – fresh cells - An attractive cost.\r\n\r\nM35A – Any Quantity 10K and up – fresh cells - An attractive cost.\r\n\r\n\r\n\r\n   1. *Samsung SDI*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nLeadtime\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\n18650-20RM\r\n\r\nHigh Rate, 3.6V, 2.0Ah\r\n\r\nmass quantity\r\n\r\n$1.65\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\n2024-12\r\n\r\nMade in Malaysia\r\n\r\nCylindrical\r\n\r\n18650-20RM\r\n\r\nHigh Rate, 3.6V, 2.0Ah\r\n\r\nmass quantity\r\n\r\n$1.7\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\n2024-12\r\n\r\nMade in Malaysia, MOQ 20K pcs\r\n\r\nCylindrical\r\n\r\n18650-25R\r\n\r\nHigh Rate, 3.6V, 2.5Ah\r\n\r\nmass quantity\r\n\r\n$1.69\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\n2024-08\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650-26JM\r\n\r\nHigh Energy, 3.6V, 2.6Ah\r\n\r\nTBI\r\n\r\n$2.30\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\n2021-08\r\n\r\nMade in Malaysia\r\n\r\nCylindrical\r\n\r\n18650-30Q\r\n\r\nHigh rate, 3.6V, 3.0Ah\r\n\r\nmass quantity\r\n\r\n$2.25\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\n2025-07\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650-30Q\r\n\r\nHigh rate, 3.6V, 3.0Ah\r\n\r\nmass quantity\r\n\r\n$2.15\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\n2024-10\r\n\r\nMOQ 1 Pallet\r\n\r\nCylindrical\r\n\r\n18650-35E\r\n\r\nMiddle rate, 3.6V, 3.5Ah\r\n\r\nmass quantity\r\n\r\n$1.78\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nwithin 3 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650-35E\r\n\r\nMiddle rate, 3.6V, 3.5Ah\r\n\r\nTBI\r\n\r\n$1.45\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\n2024-01\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700-30T\r\n\r\nHigh Rate, 3.6V, 3.0Ah\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n4 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700-40T5\r\n\r\nHigh Rate, 3.6V, 4.0Ah\r\n\r\nmass quantity\r\n\r\n$2.05\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nwithin 6 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700-40T\r\n\r\nHigh Rate, 3.6V, 4.0Ah\r\n\r\nmass quantity\r\n\r\n$1.90\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\n2024-02\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700-48X3\r\n\r\n3.6V, 4.8Ah, 3000cycles,bare\r\n\r\nmass quantity\r\n\r\n$1.65\r\n\r\nFCA Shenzhen\r\n\r\n4 weeks\r\n\r\n2023-12\r\n\r\nBare cells\r\n\r\nCylindrical\r\n\r\n21700-48X2\r\n\r\n3.6V, 4.8Ah, 3000cycles\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n4 weeks\r\n\r\n2022-01\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700-50E2\r\n\r\n3.6V, 5.0Ah, 2C(C), 3C(P)\r\n\r\nmass quantity\r\n\r\n$2.70\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\n2024-01\r\n\r\nMade in China\r\n\r\nCylindrical\r\n\r\n21700-50E2\r\n\r\n3.6V, 5.0Ah, 2C(C), 3C(P)\r\n\r\nmass quantity\r\n\r\n$2.95\r\n\r\nFCA Shenzhen\r\n\r\nAvailable in Oct.\r\n\r\nwithin 2025-07\r\n\r\nMade in China\r\n\r\nCylindrical\r\n\r\n21700-50GB\r\n\r\n3.6V, 5.0Ah, 1C(C), 2C(P)\r\n\r\nmass quantity\r\n\r\n$2.15\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\n2025-03\r\n\r\nMade in Malaysia, MOQ 1 Pallet\r\n\r\nCylindrical\r\n\r\n21700-50S\r\n\r\n3.6V, 5.0Ah 5C(C), 9C(P)\r\n\r\nmass quantity\r\n\r\n$2.45\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\nwithin 2025\r\n\r\nMade in China\r\n\r\nCylindrical\r\n\r\n21700-50S\r\n\r\n3.6V, 5.0Ah 5C(C), 9C(P)\r\n\r\nmass quantity\r\n\r\n$2.68\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nwithin 2025\r\n\r\nMade in China\r\n\r\nCylindrical\r\n\r\n21700-53G2\r\n\r\n3.6V, 5.3Ah, 1C(C)\r\n\r\nmass quantity\r\n\r\n$2.40\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\n2025-03\r\n\r\nwith tube\r\n\r\nCylindrical\r\n\r\n21700-58E\r\n\r\n3.64V, 5330mAh, 3C max\r\n\r\nmass quantity\r\n\r\n$4\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\n2024-07\r\n\r\n\r\n\r\n*2. LG Energy Solution*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\n18650-F1L\r\n\r\nHigh Energy, 3.6V, 3.35Ah\r\n\r\nmass quantity\r\n\r\n$3.25\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\n2024-09\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650-MF1\r\n\r\nMiddle rate, 3.6V, 2.15Ah\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\n2021-02\r\n\r\nLot A045\r\n\r\nCylindrical\r\n\r\n18650-M26(S)\r\n\r\nMiddle rate, 3.6V, 2.6Ah\r\n\r\n19,000pcs\r\n\r\n$1.83\r\n\r\nFCA HK\r\n\r\nTBI\r\n\r\n2020-10\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650-M29\r\n\r\nMiddle rate, 3.6V, 2.85Ah\r\n\r\nmass quantity\r\n\r\n$2.2\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nFresh\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650HJ2\r\n\r\nHigh Rate, 3.6V, 3.0Ah\r\n\r\nmass quantity\r\n\r\n$2.05\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\n2024-05\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650HJ2\r\n\r\nHigh Rate, 3.6V, 3.0Ah\r\n\r\nmass quantity\r\n\r\n$2.21\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nWithin 6 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650-MH1\r\n\r\nMiddle rate, 3.6V, 3.2Ah\r\n\r\nmass quantity\r\n\r\n$1.56\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nWithin 6 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650-MH1\r\n\r\nMiddle rate, 3.6V, 3.2Ah\r\n\r\nmass quantity\r\n\r\n$1.54\r\n\r\nFCA HK\r\n\r\nTBI\r\n\r\nWithin 6 months\r\n\r\nMOQ 1 Pallet\r\n\r\nCylindrical\r\n\r\n18650-MJ1\r\n\r\nMiddle rate, 3.6V, 3.5Ah\r\n\r\nmass quantity\r\n\r\n$1.55\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nWithin 6 months\r\n\r\nMade in China\r\n\r\nCylindrical\r\n\r\n18650-MJ1\r\n\r\nMiddle rate, 3.6V, 3.5Ah\r\n\r\nmass quantity\r\n\r\n$1.53\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\nWithin 6 months\r\n\r\nMOQ 1 Pallet\r\n\r\nCylindrical\r\n\r\n21700-M48\r\n\r\nMiddle rate, 3.68V, 17.4Wh\r\n\r\nmass quantity\r\n\r\n$2.03\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\n2023-05\r\n\r\nLOT C118D283\r\n\r\nCylindrical\r\n\r\n21700-M48A\r\n\r\n3C\r\n\r\nmass quantity\r\n\r\n$1.6\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700-M50LT\r\n\r\nMiddle rate, 3.6V, 5.0Ah\r\n\r\nmass quantity\r\n\r\n$1.92\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\n2025-08\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700-M52V\r\n\r\n3.6V, 5.2Ah\r\n\r\nmass quantity\r\n\r\n$2.16\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nwithin 2025\r\n\r\nMade in Korea, Bare cell\r\n\r\n*Cylindrical*\r\n\r\n*21700-M58T*\r\n\r\n*3.6V, 5.8Ah*\r\n\r\n*5,330pcs*\r\n\r\n*$2.15 *\r\n\r\n*FCA HK*\r\n\r\n*3 days*\r\n\r\n*2023-11*\r\n\r\n\r\n*Made in Korea, Special Promotion to take all*\r\n\r\nCylindrical\r\n\r\n21700-M58T\r\n\r\n3.6V, 5.8Ah\r\n\r\nmass quantity\r\n\r\n$6.15\r\n\r\nFCA Shenzhen\r\n\r\n3 days\r\n\r\n2024-06\r\n\r\nMade in Korea\r\n\r\nCylindrical\r\n\r\n21700-M58T\r\n\r\n3.6V, 5.8Ah\r\n\r\nmass quantity\r\n\r\n$2.7\r\n\r\nFCA Shenzhen\r\n\r\n3 days\r\n\r\nWithin 6 months\r\n\r\nMade in China\r\n\r\nPouch Polymer\r\n\r\nE66\r\n\r\nLi-ion, 3.65V 66Ah 11.3 x 98 x 357mm\r\n\r\nmass quantity\r\n\r\n$35.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nN/A\r\n\r\nA- grade\r\n\r\nPouch Polymer\r\n\r\nE78\r\n\r\nLi-ion, 3.65V 78Ah 8 x 98 x 510mm\r\n\r\nmass quantity\r\n\r\n$38.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nN/A\r\n\r\nA- grade\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n*3. Panasonic (Sanyo)*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\nUR18650RX (Sanyo)\r\n\r\n1950mAh, 3.6V\r\n\r\nMOQ 1 Pallet\r\n\r\n$3.75\r\n\r\nFCA HK\r\n\r\nwithin 3-6 months\r\n\r\nFresh\r\n\r\nJapan\r\n\r\nCylindrical\r\n\r\nUR18650AA (Sanyo)\r\n\r\n2250mAh, 3.6V, 8A discharge\r\n\r\nmass quantity\r\n\r\n$1.80\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nwithin 6 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\nUR18650A(Y) (Sanyo)\r\n\r\n2200mAh, 3.6V, 2C discharge\r\n\r\nmass quantity\r\n\r\n$2.35\r\n\r\nFCA Shenzhen\r\n\r\n5 days\r\n\r\n2024-08\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nUR18650NSX (Sanyo)\r\n\r\n2500mAh, 3.6V\r\n\r\nTBI\r\n\r\n$4.35\r\n\r\nFCA HK\r\n\r\nTBI\r\n\r\n2023-03\r\n\r\nMOQ 1 Pallet\r\n\r\nCylindrical\r\n\r\nUR18650FM (Sanyo)\r\n\r\n3.7V 2.5Ah\r\n\r\nmass quantity\r\n\r\n$4.70\r\n\r\nFCA HK\r\n\r\nApril, 2026\r\n\r\nwithin 2026\r\n\r\nJapan, Irrevocable\r\n\r\nCylindrical\r\n\r\nUR18650ZM2 (Sanyo)\r\n\r\n3.6V, 2.55Ah\r\n\r\nmass quantity\r\n\r\n$1.75\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\n2025-08\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nUR18650ZM2 (Sanyo)\r\n\r\n3.6V, 2.55Ah\r\n\r\nmass quantity\r\n\r\n$1.77\r\n\r\nFCA HK\r\n\r\nTBI\r\n\r\n2025-08\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nUR18650ZY (Sanyo)\r\n\r\n3.6V, 2.6Ah\r\n\r\nmass quantity\r\n\r\n$3.25\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\n2022-03\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nUR18650ZTA (Sanyo)\r\n\r\n3.8V (4.35V charge), 3000mAh\r\n\r\nmass\r\n\r\n$3.60\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\n2022-03\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nUR18500F\r\n\r\n3.7V, 1620mAh\r\n\r\nTBI\r\n\r\n$3.90\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nUR14500P (Sanyo)\r\n\r\n3.7V, 840mAh\r\n\r\nmass quantity\r\n\r\n$3.1\r\n\r\nFCA HK\r\n\r\n2-4 months\r\n\r\nwithin 6 months\r\n\r\nMOQ 20,160pcs, irrevocable,\r\n30% deposit\r\n\r\nCylindrical\r\n\r\nUR14650R (Sanyo)\r\n\r\n3.6V, 1050mAh\r\n\r\n10,080pcs\r\n\r\n$2.35\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\n2021-10\r\n\r\nJapan\r\n\r\nCylindrical\r\n\r\nNCR18650BF (Sanyo)\r\n\r\n3.6V, 3.4Ah, standard\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nDecember\r\n\r\nwithin 2025\r\n\r\n*Japan, EOL sson*\r\n\r\nCylindrical\r\n\r\nNCR18650GA (Sanyo)\r\n\r\n3.6V, 3.5Ah\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nEnd of Dec.\r\n\r\nwithin 3 months\r\n\r\nMOQ 1 Pallet,\r\nMade in Japan\r\n\r\nCylindrical\r\n\r\nNCR18500A (Pana)\r\n\r\n3.6V, 2040mAh\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nwithin 8 months\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nNCR1850B (Pana)\r\n\r\n3.6V, 2350mAh\r\n\r\nmass quantity\r\n\r\n$3.55\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nwithin 2025\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nNCR18650PF (Pana)\r\n\r\n3.6V, 2900mAh, 10A discharge\r\n\r\nTBI\r\n\r\n$2.75\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nNCR18650BD (Pana.)\r\n\r\nMiddle Rate, 3.6V, 3.2Ah\r\n\r\nmass quantity\r\n\r\n$2.12\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\n2025-05\r\n\r\n*China, EOL soon*\r\n\r\nCylindrical\r\n\r\nNCR18650GA6W (Pana.)\r\n\r\nMiddle Rate, 3.6V, 3.5Ah, green tube\r\n\r\nmass quantity\r\n\r\n$2.26\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\n2025-10\r\n\r\n*China, EOL soon*\r\n\r\nCylindrical\r\n\r\nNCR18650GA6W (Pana.)\r\n\r\nMiddle Rate, 3.6V, 3.5Ah, green tube\r\n\r\nmass quantity\r\n\r\n$2.22\r\n\r\nFCA HK\r\n\r\nStock\r\n\r\n2025-09\r\n\r\n*MOQ 1 Pallet, China, EOL soon*\r\n\r\nCylindrical\r\n\r\nNCR18650GA6W (Pana.)\r\n\r\nMiddle Rate, 3.6V, 3.5Ah, red tube\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nwithin 1 year\r\n\r\n*China, EOL soon*\r\n\r\nCylindrical\r\n\r\nNCR18650B (Pana.)\r\n\r\nStandard, 3.6V, 3.4Ah\r\n\r\nmass quantity\r\n\r\n$4.40\r\n\r\nFCA HK\r\n\r\nTBI\r\n\r\n2025-01\r\n\r\nJapan, MOQ 1 Pallet\r\n\r\nCylindrical\r\n\r\nNCR2170MB (Pana.)\r\n\r\n3.6V, 5150mAh, 12A discharge\r\n\r\nmass quantity\r\n\r\n$4.65\r\n\r\nFCA HK\r\n\r\n1-2 weeks\r\n\r\n2024-01\r\n\r\nJapan, MOQ 1 Pallet\r\n\r\nCylindrical\r\n\r\nNCR2270AE (Pana.)\r\n\r\n3.6V, 5635mAh, 12A discharge\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n2024-11\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nCR123A in bulk package\r\n\r\n3V 1400mAh Lithium Primary\r\n\r\nmass quantity\r\n\r\n$1.28\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nCR123A in candy package\r\n\r\n3V 1400mAh Lithium Primary\r\n\r\nmass quantity\r\n\r\n$1.35\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nPrismatic\r\n\r\nNCA103443 (Pana.)\r\n\r\n3.6V, 2.01Ah\r\n\r\n9,000pcs\r\n\r\n$5.3\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\n2021-12\r\n\r\nChina\r\n\r\nPrismatic\r\n\r\nNCA103450 w/o breaker (Pana.)\r\n\r\n3.6V, 2350mAh\r\n\r\nmass quantity\r\n\r\n$3.70\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nwithin 6 months\r\n\r\nChina\r\n\r\nPrismatic\r\n\r\nNCA103450 w/t breaker (Pana.)\r\n\r\n3.6V, 2350mAh\r\n\r\nmass quantity\r\n\r\n$5.75\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\n2024-10\r\n\r\nMOQ 10K\r\n\r\nPrismatic\r\n\r\nNCA882936SA (Pana.)\r\n\r\n3.6V, 1310mAh\r\n\r\nmass quantity\r\n\r\n$5.45\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\n2024-01\r\n\r\nChina\r\n\r\nPrismatic\r\n\r\nNCA903864A (Pana.)\r\n\r\n3.6V, 3280mAh\r\n\r\n5,040pcs\r\n\r\n$6.65\r\n\r\nFCA HK\r\n\r\n1-2 weeks\r\n\r\n2021-09\r\n\r\nJapan\r\n\r\nPrismatic\r\n\r\nNCA653864SA (Pana.)\r\n\r\n3.6V, 2.4Ah\r\n\r\nmass quantity\r\n\r\n$4.40\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nwithin 6 months\r\n\r\nJapan\r\n\r\nPrismatic\r\n\r\nNCA793540(Pana)\r\n\r\n3.6V, 1485mAh\r\n\r\nmass quantity\r\n\r\n$3.04\r\n\r\nFCA Shenzhen\r\n\r\n2-4 Months\r\n\r\n2025-01\r\n\r\nChina\r\n\r\nPrismatic\r\n\r\nNCA596080 (Pana.)\r\n\r\n3.6V, 4170mAh\r\n\r\nTBI\r\n\r\n$8.90\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nTBI\r\n\r\nJapan\r\n\r\nPrismatic\r\n\r\nNCA596080SA (Pana.)\r\n\r\n3.6V, 4340mAh\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nPrismatic\r\n\r\nUF103450P without fuse\r\n\r\n3.7V, 2000mAh\r\n\r\nTBI\r\n\r\n$5.60\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\n2021-10\r\n\r\nJapan\r\n\r\nPrismatic\r\n\r\nUF703450F (Sanyo)\r\n\r\n3.7V, 1480mAh\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n$4.50\r\n\r\n\r\n\r\n2022-08\r\n\r\nMade in Japan\r\n\r\nPrismatic\r\n\r\nUF653450S (Sanyo)\r\n\r\n3.7V, 1250mAh\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA HK\r\n\r\nStock\r\n\r\n2024-02\r\n\r\nJapan\r\n\r\nPrismatic\r\n\r\nUF553450ZP (Sanyo)\r\n\r\n3.7V 1.15Ah\r\n\r\nmass quantity\r\n\r\n$3.70\r\n\r\nFCA Shenzhen\r\n\r\n4 weeks\r\n\r\n2025-10\r\n\r\nJapan\r\n\r\nPrismatic\r\n\r\nUF553450ZP (Sanyo)\r\n\r\n3.7V 1.15Ah\r\n\r\nmass quantity\r\n\r\n$2.65\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\n2025-05\r\n\r\nJapan\r\n\r\nPrismatic\r\n\r\nUF553443ZU (Sanyo)\r\n\r\n3.7V 1.04Ah\r\n\r\nFew\r\n\r\n$3.60\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\n2020-06\r\n\r\nJapan\r\n\r\nPrismatic\r\n\r\nUF553443ZU (Sanyo)\r\n\r\n3.7V 1.04Ah\r\n\r\nmass quantity\r\n\r\n$4.95\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\n2025-04\r\n\r\nJapan\r\n\r\nPrismatic\r\n\r\nPanasonic 50Ah\r\n\r\nNMC 50Ah 27x148x92mm, 849g, 0.55mhom\r\n\r\nmass\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nTBI\r\n\r\nA- grade\r\n\r\nPrismatic\r\n\r\nPanasonic 4Ah\r\n\r\n3.7V 4.2Ah 13-120-65mm, 35C-70C, 183g\r\n\r\nmass\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nTBI\r\n\r\nA- grade\r\n\r\n*4. Murata *\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\nUS18650VTC4\r\n\r\n3.6V, 2.1Ah, 30A Disch.\r\n\r\nmass quantity\r\n\r\n$2\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nUS18650VTC5\r\n\r\n3.6V, 2.5Ah, 20A/30A Disch.\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nUS18650VTC5A\r\n\r\n3.6V, 2.5Ah, 30A/35A Disch.\r\n\r\nFew\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nUS18650VTC5C\r\n\r\n3.6V, 2.5Ah, 30A Disch.\r\n\r\nmass quantity\r\n\r\n$2.75\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\n2021 Stock\r\n\r\n\r\n\r\nCylindrical\r\n\r\nUS18650VTC5D\r\n\r\n3.6V, 2.7Ah, 35A Disch.\r\n\r\nmass quantity\r\n\r\n$4.2\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\n2021-10\r\n\r\n\r\n\r\nCylindrical\r\n\r\nUS18650VTC6\r\n\r\n3.6V, 3.0Ah, 20A/30A Disch.\r\n\r\nmass quantity\r\n\r\n$3.65\r\n\r\nFCA Shenzhen\r\n\r\n4-6 weeks\r\n\r\nwithin 3-6 months\r\n\r\nFresh\r\n\r\nCylindrical\r\n\r\nUS18650VTC6\r\n\r\n3.6V, 3.0Ah, 20A/30A Disch.\r\n\r\nmass quantity\r\n\r\n$3.2\r\n\r\nFCA HK\r\n\r\n4-6 weeks\r\n\r\nwithin 6 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\nUS21700VTC6A\r\n\r\n3.6V 4100mAh 40A discharge\r\n\r\nmass quantity\r\n\r\n$5.2\r\n\r\nFCA Shenzhen\r\n\r\n4-6 weeks\r\n\r\nNew Lot\r\n\r\n30% deposit is needed\r\n\r\nCylindrical\r\n\r\nUS21700VTC6A\r\n\r\n3.6V 4100mAh 40A discharge\r\n\r\nmass quantity\r\n\r\n$4.45\r\n\r\nFCA HK\r\n\r\n4-6 weeks\r\n\r\nwithin 6 months\r\n\r\n30% deposit is needed\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n*5. Molicel *\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\nINR18650-P26A\r\n\r\n3.6V, 2600mAh, Wide Temp, High rate\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA HK\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nMOQ 20Kpcs (1 pallet)\r\n\r\nCylindrical\r\n\r\nINR18650-P28A\r\n\r\n3.6V, 2.8Ah, Widetemp. Highrate\r\n\r\nmass quantity\r\n\r\n$3.55\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-P30B\r\n\r\n3.6V, 3.0Ah, Widetemp. 30A Disch.\r\n\r\nmass quantity\r\n\r\n$5.1\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-M35A\r\n\r\n3.6V, 3.5Ah, Widetemp. Highrate\r\n\r\nmass quantity\r\n\r\n$3.55\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nwithin 6 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-M35A\r\n\r\n3.6V, 3.5Ah, Widetemp. Highrate\r\n\r\nMOQ 16Kpcs\r\n\r\n$3.40\r\n\r\nFCA HK\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-P42A\r\n\r\n3.6V, 4.2Ah\r\n\r\nmass quantity\r\n\r\n$3.70\r\n\r\nFCA Shenzhen\r\n\r\n3-5 weeks\r\n\r\nwithin 6 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-P45B\r\n\r\n3.6V 4500mAh\r\n\r\nmass quantity\r\n\r\n$4.2\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nwithin 6 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-P50B\r\n\r\n3.6V 5000mAh\r\n\r\nFew\r\n\r\n$6.25\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nwithin 6 months\r\n\r\n\r\n\r\n*6. BYD*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\nFC46120P\r\n\r\n3.2V, 24.50Ah\r\n\r\nmass quantity\r\n\r\n$14.5\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\nMOQ 10pcs\r\n\r\n*7. LithiumWerk (A123)*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\nANR26650M1B\r\n\r\n3.3V 2.5Ah High Rate\r\n\r\nmass quantity\r\n\r\n$8.5\r\n\r\nFCA Shenzhen\r\n\r\n4-6 weeks\r\n\r\n2025-01\r\n\r\n\r\n\r\nCylindrical\r\n\r\nANR26650M1B\r\n\r\n3.3V 2.5Ah High Rate\r\n\r\nmass quantity\r\n\r\n$7\r\n\r\nFCA HK\r\n\r\n4-6 weeks\r\n\r\n2025-04\r\n\r\nMOQ 6,600pcs (1 pallet)\r\n\r\n*8. SK On (Previously, SK Innovation)*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nPouch\r\n\r\nE400\r\n\r\nLi-ion, 3.6V, 40Ah, 9.5x97x320mm\r\n\r\nmass quantity\r\n\r\n$30.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nwithin 2022\r\n\r\nA- grade\r\n\r\nPouch\r\n\r\nE450\r\n\r\nLi-ion, 3.6V, 45Ah, 10x175x190mm\r\n\r\nmass quantity\r\n\r\n$31.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nwithin 2022\r\n\r\nA- grade\r\n\r\nPouch\r\n\r\nE500\r\n\r\nLi-ion, 3.6V, 50Ah, 11.5x98x300mm\r\n\r\nmass quantity\r\n\r\n$35.10\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nN/A\r\n\r\nA- grade, OEM by EVE\r\n\r\nPouch\r\n\r\nE556\r\n\r\nLi-ion, 3.6V, 55.60Ah, 10x100x354mm\r\n\r\nmass quantity\r\n\r\n$30.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nN/A\r\n\r\nA- grade\r\n\r\nPouch\r\n\r\nE600B\r\n\r\nLi-ion, 3.6V, 60Ah, 14.5x100x300mm\r\n\r\n4,555\r\n\r\n$35.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nN/A\r\n\r\nA- grade\r\n\r\nPouch\r\n\r\nE603\r\n\r\nLi-ion, 3.66V, 60.3Ah, 9.5x354x101mm\r\n\r\nmass quantity\r\n\r\n$30.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nN/A\r\n\r\nUncycled, for EV\r\n\r\nPouch\r\n\r\nE805\r\n\r\nLi-ion, 3.6V, 60Ah, 14.5x100x300mm\r\n\r\nFew\r\n\r\n$36.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nN/A\r\n\r\ndisassembled, un-cycled\r\n\r\nPouch\r\n\r\nE120\r\n\r\nLi-ion, 3.7V, 120Ah, 14.5x98x530mm\r\n\r\nmass quantity\r\n\r\n$38.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nN/A\r\n\r\nA- grade\r\n\r\n*9. Far East (FEB)*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\n18650-2600\r\n\r\n3.6V, 2600mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\n$1.12\r\n\r\nFCA Shenzhen\r\n\r\n2-3 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650-2900\r\n\r\n3.6V, 2900mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\nEOL\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor E-bike\r\n\r\nCylindrical\r\n\r\n18650-3300\r\n\r\n3.6V, 3300mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\n$1.58\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor Medical Equipment\r\n\r\nCylindrical\r\n\r\n18650-3800\r\n\r\n3.6V, 3800mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\n$2.12\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor Lighting Equipment\r\n\r\nCylindrical\r\n\r\n18650-4000\r\n\r\n3.6V, 4000mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\n$2.70\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor Lighting Equipment\r\n\r\nCylindrical\r\n\r\n21700-4000\r\n\r\n3.6V, 4000mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\n$1.58\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor E-bike\r\n\r\nCylindrical\r\n\r\n21700-4500\r\n\r\n3.6V, 4500mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\n$1.63\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor UPS power\r\n\r\nCylindrical\r\n\r\n21700-5000\r\n\r\n3.6V, 5000mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\n$2.08\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor Smart Speaker\r\n\r\nCylindrical\r\n\r\n21700-5500\r\n\r\n3.6V, 5500mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\n$2.65\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor Smart Speaker\r\n\r\nCylindrical\r\n\r\n21700-6000\r\n\r\n3.6V, 6000mAh, Max 0.7C/2C\r\n\r\nmass quantity\r\n\r\n$4.00\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor Lighting Equipment / Sample\r\n\r\n10. DMEGC\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\nINR18650-20P\r\n\r\n2.0Ah, CC 20A, Pulse 30A\r\n\r\nmass quantity\r\n\r\n$1.30\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-25P\r\n\r\n2.5Ah, CC 20A, Pulse 30A\r\n\r\nmass quantity\r\n\r\n$1.4\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-30P\r\n\r\n3.0Ah, CC 10A, Pulse 20A, with 80C cut\r\n\r\nmass quantity\r\n\r\n$1.90\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-26E\r\n\r\n2.6Ah, CC 3C, Pulse 5C\r\n\r\nmass quantity\r\n\r\n$1.12\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-26E2\r\n\r\n2.6Ah, CC 3C, Pulse 5C, 7S max\r\n\r\nmass quantity\r\n\r\n$1.1\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-29E\r\n\r\n2.9Ah, CC 2C, Pulse 4C\r\n\r\nmass quantity\r\n\r\n$1.4\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-32E\r\n\r\n3.2Ah, CC 10A, Pulse 5C\r\n\r\nmass quantity\r\n\r\n$1.68\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-35E\r\n\r\n3.5Ah, CC 10A, Pulse 5C\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-45E\r\n\r\n4.5Ah, CC 1Cm Pulse 3C\r\n\r\nmass quantity\r\n\r\n$1.55\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-50E\r\n\r\n5.0Ah, CC 3C, Pulse 4C\r\n\r\nmass quantity\r\n\r\n$1.95\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-40P\r\n\r\n4.0Ah, CC 6A, Max DC 45A\r\n\r\nmass quantity\r\n\r\n$2.70\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\nNew Supply\r\n\r\nCylindrical\r\n\r\nINR21700-40M (Orange tube)\r\n\r\n4.0Ah, CC 20A, Max 45A,\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-40M (Yellow tube)\r\n\r\n4.0Ah, CC 15A, Max 18A,\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\n*11. EVE*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\nINR18650/26V\r\n\r\n3.60V 2.55Ah 7.65A\r\n\r\nmass quantity\r\n\r\n$1.16\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nNew Lot\r\n\r\nCylindrical\r\n\r\nCylindrical\r\n\r\nINR18650/33V\r\n\r\n3.60V 3.20Ah 10A\r\n\r\nmass quantity\r\n\r\n$1.55\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650/35V\r\n\r\n3.65V 3.50Ah 10.20A\r\n\r\nmass quantity\r\n\r\n$1.75\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650/20P\r\n\r\n3.60V 2.00Ah 30A\r\n\r\nmass quantity\r\n\r\n$1.26\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650/25P\r\n\r\n3.60V 2.50Ah 30A\r\n\r\nmass quantity\r\n\r\n$1.56\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-40P\r\n\r\n3.60V 4.00Ah 50A\r\n\r\nmass quantity\r\n\r\n$1.90\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-40PL\r\n\r\n3.60V 4.00Ah Tabless\r\n\r\nTrail lot\r\n\r\n$4.40\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-50E\r\n\r\n3.65V 5.00Ah 15A\r\n\r\nmass quantity\r\n\r\n$1.9\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR4695E\r\n\r\n3.69V 31.90Ah 4C\r\n\r\nmass quantity\r\n\r\n$50.00\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR4695P\r\n\r\n3.69V 29Ah\r\n\r\nFew\r\n\r\n$50.00\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nwithout QR code (TBI)\r\n\r\n*12. BAK*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nMiddle Rate\r\n\r\nN18650CH\r\n\r\n2.60Ah 3C\r\n\r\nmass quantity\r\n\r\n$1.03\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN18650CP\r\n\r\n3.35Ah 3C\r\n\r\nmass quantity\r\n\r\n$1.79\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN18650CP-34E\r\n\r\n3.40Ah 3C\r\n\r\nmass quantity\r\n\r\n$1.72\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN18650CR-35E\r\n\r\n3.50Ah 3C\r\n\r\nmass quantity\r\n\r\n$1.81\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN21700CG-50\r\n\r\n5.00Ah 3C\r\n\r\nmass quantity\r\n\r\n$2.2\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nWithin 3 months\r\n\r\n\r\n\r\nN21700CG-50E\r\n\r\n5.00Ah 3C\r\n\r\nmass quantity\r\n\r\n$2.30\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN21700CD-53E\r\n\r\n5.30Ah 3C\r\n\r\nmass quantity\r\n\r\n$2.53\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN21700CK-55E\r\n\r\n5.50Ah 3C\r\n\r\nTrial Lot\r\n\r\n$3.21\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nN21700CH-58E\r\n\r\n5.80Ah 3C\r\n\r\nTrial Lot\r\n\r\n$3.37\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nN18650CH\r\n\r\n2.60Ah 3C\r\n\r\nmass quantity\r\n\r\n$1.08\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nHigh Rate\r\n\r\nN18650COP\r\n\r\n2.50Ah 30A\r\n\r\nmass quantity\r\n\r\n$1.64\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN18650CQP\r\n\r\n3.00Ah 15A\r\n\r\nmass quantity\r\n\r\n$1.92\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN21700CGP\r\n\r\n4.00Ah 35A\r\n\r\nmass quantity\r\n\r\n$2.40\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nLow\r\nTemperature\r\n\r\nN18650CP Low Temperature\r\n\r\n3.35Ah 3C\r\n\r\nmass quantity\r\n\r\n$1.87\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN18650CR-35T Low Temperature\r\n\r\n3.50Ah 3C\r\n\r\nmass quantity\r\n\r\n$1.95\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nTabless\r\n\r\n21700-40D\r\n\r\n4.00Ah 100A\r\n\r\nmass quantity\r\n\r\n$3.30\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR4695-330B\r\n\r\n3.6V, 33Ah\r\n\r\nSample\r\n\r\n$50.00\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR4690-310B\r\n\r\n3.6V, 31Ah\r\n\r\nSample\r\n\r\n$50.00\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n*13. CBAK*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nLFP\r\n\r\n26650FS2A\r\n\r\n3.2V 3.40Ah 3C for EV / ESS\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n26650FS3\r\n\r\n3.2V 3.60Ah 3C for EV / ESS\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n26650FS3A\r\n\r\n3.2V 3.80Ah 3C for EV / ESS\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n26650FS4\r\n\r\n3.2V 4.00Ah 3C for EV / ESS\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n26650FS4B\r\n\r\n3.2V 4.00Ah 3C for Light Vehicle\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n26700FB\r\n\r\n3.2V 4.00Ah 3C for Light Vehicle\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n26700FB2\r\n\r\n3.2V 4.50Ah 3C for Light Vehicle\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n26700FE\r\n\r\n3.2V 4.50Ah 3C for EV / ESS\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n32140FS\r\n\r\n3.2V 15Ah\r\n\r\nmass quantity\r\n\r\n$5.70\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nSodium-ion\r\n\r\n32140NS\r\n\r\n3.0V, 10Ah\r\n\r\nSample\r\n\r\n$10.00\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\nOnly Spec sheet is available\r\n(No UN 38.3 & MSDS)\r\n\r\n*14. CALB*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\n4695\r\n\r\n3.7V, 30Ah, NMC\r\n\r\nMOQ 10pcs\r\n\r\n$50.00\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\nSample, No spec sheet yet\r\n\r\n*15. Highstar*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nSodium-ion\r\n\r\nNaCR33140-10ER\r\n\r\n3.05V, 10Ah\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nSodium-ion\r\n\r\nNaCR46145-20ER\r\n\r\n3.05V, 20Ah\r\n\r\nMOQ 50pcs\r\n\r\n$40.00\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nSodium-ion\r\n\r\nNaCP50160118-70E3\r\n\r\nPrismatic, 3.05V, 70Ah\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nSodium-ion\r\n\r\nNaCP50160118-70H3\r\n\r\nPrismatic, 3.0V, 70Ah\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nSodium-ion\r\n\r\nNaCP50160118-80E3\r\n\r\nPrismatic, 3.05V, 80Ah\r\n\r\nSample\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\nSodium-ion\r\n\r\nNaCP40130208-80E3\r\n\r\nPrismatic, 3.05V, 80Ah\r\n\r\nSample\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\nSodium-ion\r\n\r\nNaCP50160153-103E3\r\n\r\nPrismatic, 3.0V, 103Ah\r\n\r\nSample\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\nTabless\r\n\r\nINR21700-40PS\r\n\r\n3.6V, 3950mAh\r\n\r\nMOQ 50pcs\r\n\r\n$6.65\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nTabless\r\n\r\nINR21700-50PS\r\n\r\n3.6V, 4900mAh, Low Impedance\r\n\r\n130pcs\r\n\r\n$4.50\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n\r\n\r\n*16. Lishen*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\n18650LA\r\n\r\n2Ah, 10C\r\n\r\nmass quantity\r\n\r\n$1.15\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650LD\r\n\r\n2.5Ah, 10C\r\n\r\nmass quantity\r\n\r\n$1.50\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650LE\r\n\r\n3Ah, 10C\r\n\r\nmass quantity\r\n\r\n$2.15\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650SK\r\n\r\n2.6Ah, 3C\r\n\r\nmass quantity\r\n\r\n$1.1\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650SS\r\n\r\n3Ah, 3C\r\n\r\nmass quantity\r\n\r\n$1.48\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650HB\r\n\r\n3.35Ah, 3C\r\n\r\nmass quantity\r\n\r\n$1.63\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650HC\r\n\r\n3.5Ah, 3C\r\n\r\nmass quantity\r\n\r\n$1.92\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700LA\r\n\r\n4Ah, 10C\r\n\r\nmass quantity\r\n\r\n$1.93\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700SA\r\n\r\n4Ah, 3C\r\n\r\nmass quantity\r\n\r\n$1.80\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700SD\r\n\r\n5Ah, 3C\r\n\r\nmass quantity\r\n\r\n$2.19\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700SZ\r\n\r\n5Ah, 3C\r\n\r\nmass quantity\r\n\r\n$2.2\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n*17. Sunpower*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\nINR18650-1300\r\n\r\n13P (15C) 20A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-1500\r\n\r\n15H (13C) 20A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-2000\r\n\r\n20P (10C) 20A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-2000\r\n\r\n20T (15C) 30A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-2200\r\n\r\n22R (9C) 20A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-2500\r\n\r\n25R (10C) 25A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-2500\r\n\r\n25T (12C) 30A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-2500\r\n\r\n25L (8C) 20A Low Temperature type\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-2600\r\n\r\n26P (5C) 13A\r\n\r\nmass quantity\r\n\r\n$1.34\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-3000\r\n\r\n30P (10C) 30A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-3000\r\n\r\n30S (13C) 40A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-3000\r\n\r\n30L (3C) 10A Low Teperature type\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-4000\r\n\r\n40S (10C) 40A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-4000\r\n\r\n40L (10C) 40A Low Temperature type\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-5000\r\n\r\n50E (3C) 15A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-5000\r\n\r\n50SE (6C) 30A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nLFP26700-4300\r\n\r\n43E (3C) 12.9A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nLFP26700-4500\r\n\r\n45E (3C) 13.5A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\n\r\n\r\n*18. Maxell*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nPrismatic\r\n\r\nICP653865SRU\r\n\r\n3.7V, 1800mAh\r\n\r\n48,760\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nB0711\r\n\r\n\r\n\r\nPrismatic\r\n\r\nICP653450AHR\r\n\r\n1360mAh 3.85V (4.35V charge)\r\n\r\nmass quantity\r\n\r\n$4\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nI2101\r\n\r\n\r\n\r\nPrismatic\r\n\r\nICP103450AHR\r\n\r\n2160mAh 3.8V (4.35V charge)\r\n\r\n49,400\r\n\r\nTBI\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\nwithin 2020\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nWarm regards\r\n\r\n\r\n\r\nShmuel De-Leon/CEO\r\n\r\nShmuel De-Leon Energy, Ltd.\r\n\r\nMazal Arie 10, Hod-Hasharon, Israel 4536045\r\n\r\nTel/Fax: 972-77-5010792\r\n\r\nMobile: 972-52-8601517\r\n\r\nE-Mail: shmuel@sdle.co.il <shmueld33@gmail.com>\r\n\r\nCompany web site: www.sdle.co.il\r\n\r\nBattery DataBase web site: www.batteriesdatabase.com\r\n\r\n\r\n\r\nSign-up to our weekly battery newsletter\r\nhttps://www.sdle.co.il/services/newsletter/',0,0,0,0,0,0,'2025-11-24 17:28:30','2025-12-04 14:04:49','2025-12-04 14:04:49','2025-12-04 14:04:49',NULL,NULL,NULL),
(80,4,'<autogen-java-418aeef4-b0e4-4c64-8089-f6465cbaa8d8@google.com>',NULL,NULL,'Item shared with you: \"APPROVED-BLD-24-0510827-REV1 (1).pdf\"','drive-shares-dm-noreply@google.com','\"Jordan Wroblewski (via Google Drive)\"','<html><head></head><body><table style=\"border-collapse: collapse; width: 100%; background-color: white; text-align: center;\" role=\"presentation\"><tr><td style=\"padding: 24px 0 16px 0;\"><table style=\"border-collapse: collapse;font-family: Roboto, Arial, Helvetica, sans-serif;hyphens: auto; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word;width: 90%; margin: auto;max-width: 700px;min-width: 280px; text-align: left;\" role=\"presentation\"><tr><td style=\"padding: 0;\"><table style=\"width:100%; border: 1px solid #dadce0; border-radius: 8px; border-spacing: 0; table-layout:fixed; border-collapse: separate;\" role=\"presentation\"><tr><td style=\"padding: 4.5%;\" dir=\"ltr\"><div style=\"margin-bottom:32px;font-family: Google Sans, Roboto, Arial, Helvetica, sans-serif; font-style: normal; font-size: 28px; line-height: 36px; color: #3c4043;\">Jordan Wroblewski shared an item</div><table style=\"border-collapse: collapse;font-family: Roboto, Arial, Helvetica, sans-serif; font-size:16px; line-height:24px; color:#202124; letter-spacing:0.1px; table-layout:fixed; width:100%; overflow-wrap: break-word;\" role=\"presentation\"><tr><td style=\"padding: 0; vertical-align:top; padding-left:0px;\"><div style=\"padding-top:12px;\">Jordan Wroblewski (<a href=\"mailto:jordan@lithiumbatterycompany.com\" style=\"color:inherit;text-decoration:none\">jordan@lithiumbatterycompany.com</a>) has shared the following item: <a href=\"https://support.google.com/drive?p=collaborator_accounts\" target=\"_blank\">Learn more</a></div><div style=\"margin-top:24px; color:#5F6368\">Please see our CD set for 3900 W. Coachman Ave.</div></td></tr></table><table style=\"border-spacing:0 4px; table-layout:fixed; width:100%; overflow-wrap: break-word;\" role=\"presentation\"><tr style=\"height:28px;\"></tr><tr><td style=\"padding: 0;\"><a href=\"https://drive.google.com/file/d/1aPoDAzLq8aI_tOmtpgaNDHQIUyAr6MiD/view?usp=sharing_eil&amp;ts=6925f5f7&amp;sh=rRoVjb9cBs085x1t&amp;ca=1&amp;exids=71471469,71471463\" target=\"_blank\" style=\"color: #3c4043; display: inline-block; max-width: 100%; text-decoration: none; vertical-align: top;border: 1px solid #DADCE0; border-radius: 16px; white-space: nowrap;\"><div style=\"line-height: 18px; overflow: hidden; text-overflow: ellipsis;padding: 6px 12px;\"><span style=\"display: inline-block; vertical-align: top; min-width: 26px; width: 26px;\"><img src=\"https://ssl.gstatic.com/docs/doclist/images/mediatype/icon_3_pdf_x64.png\" width=\"18\" height=\"18\" style=\"vertical-align: top;\" role=\"presentation\"></span><span style=\"font: 500 14px/18px Google Sans, Roboto, Arial, Helvetica, sans-serif; display: inline; letter-spacing: 0.2px;\">APPROVED-BLD-24-0510827-REV1 (1).pdf</span></div></a></td></tr></table><table style=\"border-collapse: collapse;\" role=\"presentation\"><tr style=\"height: 32px\"><td></td></tr></table><div><!--[if mso]><v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://drive.google.com/file/d/1aPoDAzLq8aI_tOmtpgaNDHQIUyAr6MiD/view?usp=sharing_eip&amp;ts=6925f5f7&amp;sh=rRoVjb9cBs085x1t&amp;ca=1&amp;exids=71471469,71471463\" style=\"height:36px; width:100px; v-text-anchor:middle;\" arcsize=\"50%\" stroke=\"f\" fillcolor=\"#1a73e8\"><w:anchorlock/><center style=\"color:#ffffff;font-family:Arial,Helvetica,sans-serif;font-weight:500;font-size:14px;\">Open </center></v:roundrect><![endif]--><a href=\"https://drive.google.com/file/d/1aPoDAzLq8aI_tOmtpgaNDHQIUyAr6MiD/view?usp=sharing_eip&amp;ts=6925f5f7&amp;sh=rRoVjb9cBs085x1t&amp;ca=1&amp;exids=71471469,71471463\" class=\"material-button material-button-filled\" target=\"_blank\" tabindex=\"0\" role=\"link\" style=\"mso-hide:all;padding: 0 24px;font: 500 14px/36px Google Sans, Roboto, Arial, Helvetica, sans-serif; border: none; border-radius: 18px; box-sizing: border-box; display: inline-block; letter-spacing: .25px; min-height: 36px; text-align: center; text-decoration: none;background-color: #0B57D0; color: #fff; cursor: pointer;\">Open</a></div><br><div style=\"font-size: 12px; color:#5F6368;\">Use is subject to the Google <a href=\"https://policies.google.com/privacy\" target=\"_blank\"> Privacy Policy</a>.</div></td></tr></table><table style=\"border-collapse: collapse; width: 100%;\" role=\"presentation\"><tr><td style=\"padding: 24px 4.5%\"><table style=\"border-collapse: collapse; width: 100%;\" dir=\"ltr\"><tr><td style=\"padding: 0;font-family: Roboto, Arial, Helvetica, sans-serif; color: #5F6368; width: 100%; font-size: 12px; line-height: 16px; min-height: 40px; letter-spacing: .3px;\">Google LLC, 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA<br/> You have received this email because <a href=\"mailto:jordan@lithiumbatterycompany.com\" style=\"color:inherit;text-decoration:none\">jordan@lithiumbatterycompany.com</a> shared a file or folder located in Google Drive with you. <a href=\"https://myaccount.google.com/visitor-delete?atu=110084044959184708693\" target=\"_blank\">Delete visitor session</a></td><td style=\"padding: 0;padding-left: 20px; min-width: 96px\"><a href=\"https://workspace.google.com/\" target=\"_blank\" style=\"text-decoration: none\"><div style=\"font-family:Roboto, Arial, Helvetica, sans-serif; font-size:16px;color: #5F6368; white-space: nowrap; align-items: right\"><span style=\"font-weight:500;\">Google</span><span style=\"font-weight:400;\"> Workspace</span></div></a></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html>','I\'ve shared an item with you:\r\n\r\nAPPROVED-BLD-24-0510827-REV1 (1).pdf\r\nhttps://drive.google.com/file/d/1aPoDAzLq8aI_tOmtpgaNDHQIUyAr6MiD/view?usp=sharing&ts=6925f5f7&sh=rRoVjb9cBs085x1t&ca=1\r\n\r\nIt\'s not an attachment -- it\'s stored online. To open this item, just click  \r\nthe link above.\r\n\r\nPlease see our CD set for 3900 W. Coachman Ave.',0,0,0,0,0,0,'2025-11-25 18:31:19','2025-12-04 14:04:49','2025-12-04 14:04:49','2025-12-04 14:04:49',NULL,NULL,NULL),
(81,4,'<xJftF9qRROSOe4qIrt1RgA@geopod-ismtpd-40>',NULL,NULL,'Leslie Staron invited you to \"Blank diagram\"','sharing@app.lucid.co','Lucidchart','<!DOCTYPE HTML>\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\" xml:lang=\"en\">\r\n<head>\r\n<meta charset=\"utf-8\">\r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\r\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1, user-scalable=yes\">\r\n<meta name=\"format-detection\" content=\"telephone=no, date=no, address=no, email=no, url=no\">\r\n<meta name=\"x-apple-disable-message-reformatting\">\r\n<meta name=\"color-scheme\" content=\"light dark\">\r\n<meta name=\"supported-color-schemes\" content=\"light dark\">\r\n<title>Leslie Staron invited you to their document</title>\r\n<!--[if mso]>\r\n<noscript>\r\n<xml>\r\n  <o:OfficeDocumentSettings>\r\n    <o:PixelsPerInch>96</o:PixelsPerInch>\r\n  </o:OfficeDocumentSettings>\r\n</xml>\r\n</noscript>\r\n<![endif]-->\r\n<style>\r\n    :root {\r\n      color-scheme: light dark;\r\n      supported-color-schemes: light dark;\r\n    }\r\n    html,\r\n    body {\r\n        margin: 0 auto !important;\r\n        padding: 0 !important;\r\n        height: 100% !important;\r\n        width: 100% !important;\r\n    }\r\n    table {\r\n        border-collapse: collapse !important; \r\n        padding:0;\r\n    }\r\n    * {\r\n        -ms-text-size-adjust: 100%;\r\n        -webkit-text-size-adjust: 100%;\r\n        mso-height-rule: exactly !important;\r\n    }\r\n    .faux-absolute {\r\n        max-height: 0;\r\n        position: relative;\r\n        opacity: 0.999;\r\n    }\r\n    .button {\r\n		transition: 0.3s !important;\r\n	}\r\n	.button:hover {\r\n		background: #2F3296 !important;\r\n		transition: 0.3s !important;\r\n	}\r\n	.link {\r\n		transition: 0.3s !important;\r\n		text-decoration: underline !important;\r\n	}\r\n	.link:hover {\r\n		color: #2F3296 !important;\r\n		transition: 0.3s !important;\r\n	}\r\n    .link {\r\n        text-decoration: underline !important;\r\n    }\r\n	.fadeimg {\r\n      transition: 0.3s !important;\r\n      opacity: 1 !important;\r\n    }\r\n	.fadeimg:hover {\r\n      transition: 0.3s !important;\r\n      opacity: 0.5 !important;\r\n    }\r\n    body[data-outlook-cycle] .image {\r\n        width:300px;\r\n    }\r\n    @media (prefers-color-scheme: dark) {\r\n        div, .message, .mail-link {\r\n            color: #ffffff !important;\r\n        }\r\n        .bkgrd {\r\n            background: #23272c !important;\r\n            color: #ffffff !important;\r\n        }\r\n        .container {\r\n            background: #282C33 !important; \r\n            color: #ffffff !important\r\n        }\r\n        .message {\r\n            color: #ffffff !important;\r\n        }\r\n        .ftr-logo-dark { \r\n            display:block !important; \r\n            width: 80px !important; \r\n            overflow: visible !important; \r\n            float: none !important; \r\n            max-height:inherit !important; \r\n            max-width:80px !important; \r\n            line-height: auto !important; \r\n            margin-top:0px !important; \r\n            visibility:inherit !important; \r\n        }\r\n        .ftr-logo-light { \r\n            display:none !important; \r\n            width: 0px !important; \r\n            max-width: 0px !important;\r\n        }\r\n    }\r\n    @media only screen and (max-width: 680px) {\r\n		h1 {\r\n			font-size: 24px !important;\r\n		}\r\n        .mob-mar {\r\n            margin-left: 15px !important;\r\n            margin-right: 15px !important;\r\n        }\r\n        .mob-logo {\r\n            padding-left: 15px !important;\r\n        }\r\n        \r\n        .button {\r\n            margin-left: 15px !important;\r\n            margin-right: 15px !important;\r\n            display: block !important;\r\n            max-width: 680px !important;\r\n        }\r\n		.fadeimg {\r\n      		transition: 0.3s !important;\r\n      		opacity: 1 !important;\r\n    	}\r\n		.fadeimg:hover {\r\n      		transition: 0.3s !important;\r\n      		opacity: 0.5 !important;\r\n   		 }\r\n        .column {\r\n            width: 94% !important;\r\n            margin-left: 15px !important;\r\n            margin-right: 15px !important;\r\n        }\r\n        .bottom-pad-0 {\r\n            padding-bottom: 0px !important;\r\n        }\r\n    }\r\n</style>\r\n<!--[if gt mso 14]>\r\n    <style>\r\n        .black-text {\r\n        	color:#000000;\r\n        	mso-style-textfill-type:gradient;\r\n            mso-style-textfill-fill-gradientfill-stoplist:\"0 \\#fffffe 0 100000\\,100000 \\#fffffe 0 100000\";\r\n            }\r\n        .comment-text {\r\n	        mso-style-textfill-type:gradient;\r\n            mso-style-textfill-fill-gradientfill-stoplist:\"0 \\#000000 1 100000\\,99000 \\#000000 1 100000\";\r\n            color:#ffffff !important;\r\n            }\r\n    </style>\r\n<![endif]--> \r\n\r\n<!--[if !mso]><!-- -->\r\n    <style>\r\n        .comment-color{\r\n    	color:#282c33;\r\n    }\r\n    </style>\r\n    <!--<![endif]-->\r\n</head>\r\n<body class=\"body\">\r\n<div style=\"display:none;font-size:1px;color:#333333;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden\">View the document&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp; </div>\r\n<div role=\"article\" aria-roledescription=\"email\" bgcolor=\"#FAFBFC\" aria-label=\"Document Invtation email\" width=\"100%\" lang=\"en\" dir=\"ltr\" style=\"background-color: #FAFBFC\" class=\"bkgrd\"> \r\n  <!--[if mso]><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" height=\"100%\" bgcolor=\"#FAFBFC\" style=\"border-collapse:collapse\" class=\"bkgrd\"><tr><td valign=\"top\"><table cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"margin:0 auto; width:680px; background-color: #fff; font-family: Arial,Helvetica,Verdana,sans-serif; font-size: 20px; line-height: 1.4; color: #282c33\" align=\"center\"><tr style=\"margin:0 auto\"><td style=\"margin:0 auto\"><![endif]-->\r\n  <div lang=\"en\" bgcolor=\"#fff\" style=\"max-width: 680px; margin:0 auto; background: #fff; font-family: Arial,Helvetica,Verdana,sans-serif; font-size: 16px; font-size: 1rem; font-size:max(20px, 1rem);line-height: 140%; color: #282c33\" class=\"container\">\r\n    <div style=\"margin:0 auto; font-size: 6px; line-height: 1; background: #000; background-image: linear-gradient(#000,#000)\">&nbsp;</div>\r\n    <div style=\"background:#F96B13; background-image: linear-gradient(#F96B13,#F96B13); color: #282c33; padding: 35px 60px 30px 60px\" class=\"mob-logo\"> \r\n      <!--[if mso]></td></tr><tr style=\"margin:0 auto; background: #F96B13; color: #282c33\"><td style=\"margin:0 auto; padding: 35px 60px 40px 60px\"><![endif]--> \r\n      <a align=\"center\" href=\"https://url5041.app.lucid.co/ls/click?upn=u001.9CEiYqsCeDB7JcEaXQIz-2FwcXWzTlbvKFTuXsPuVGPmsOkkAc9NNsiq1UZPAiF-2BbAoIuyhSWicfvWf2uxofzpI-2BCioXwCKUwGYiG2smxuhG4wl76sO3zKw-2BjWkswcedBuqalJ96aWoD843NaUIyKfx72a1eeeZWs3nl5Jqy1PyXNolNpqoYR7AEk1oSLvxIsp0YTFYUZ3w2Xbe1pYPZN0Yw-3D-3DjWsF_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi9zBWmM6vvHZCsZtpnZ5kC8qWuI28rgmxt6vv7R7bESEgm4rM5Fcf1CrKZygnZdhwe-2FvQ-2BwZOazX4-2Blmyp4S2-2BMeMGss8htYY8z5pALvrCKYdtiMX5t4RnkT4U3lKa7sYY9KWqgc4rozBqmfUjXycOvqyyRw0JIKgqYMPjIrKO1AXSHbOOCpGKVx7dXHsSddAjOKiuUW67skYM3xWct9uOYy-2BdZBrIZQhDdvLTVtC-2F5V6DBFbRNLUWWmTf-2FmRENh1-2Bo68fm3gvNzJ-2BbT3dzJpdz-2FWyCUKt2sIwi5whJZu18-2BLwDHoE0bXEsVkO3wWyWvR6UdUFk9RDLFUoM93Tclh5gG4HPTX4QnbiEhQ-2BjA48Jj0YqT2LUAqtSqNqpXWbXguMyRuvu3tQ155deMn-2FflGIn5Y8ruO5iaAtOm-2F6-2BNYPmUqrX-2FbDcCekvdR8PtenRS-2BdpQgd6LwE2cm-2BljcKZOsTH7do4bFdDKxxffdLNwtBBJxnQ6ttdu5-2BIQURD8jwwJT63E89fgdwZfNrBui5lfbzRcwoGqilDutmWVEOv1bOCWE23sWE-2F-2Bzgygh5Aq-2F238RTV0-2B5MuIEtUtQQvQ1s5KN6cEGkpvm8tFfumMKowFHYhA9jSn5dODsveT4GHosIQaGWcmsm3TBnd574reK3bu0FucNOgza87N5UZ0pbowz-2F1w-3D-3D\"> <img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Marketo-Images/LC-white-logo-v1.png\" width=\"175\" border=\"0\" alt=\"Lucidchart\" style=\"vertical-align: middle; width:175px;max-width:175px\"> </a> \r\n      <!--[if mso]></td></tr><tr><td><![endif]--> \r\n    </div>\r\n    <h1 style=\"margin: 50px 60px 10px 60px; font-size: 32px; line-height: 1.2\" class=\"mob-mar bottom-pad-0\"> Leslie Staron invited you to edit a document </h1>\r\n    <!--[if true]>\r\n        <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"all:unset;opacity:0\">\r\n        <tr>\r\n        <![endif]--> \r\n    <!--[if false]></td></tr></table><![endif]-->\r\n    <div style=\"margin: 0px 60px 0px 60px; text-align:left; font-family: Arial,Helvetica,Verdana,sans-serif; font-size: 20px;line-height: 140%; mso-height-rule: exactly; color: #444444; display:table;width:82%\" class=\"column\"> \r\n      <!--[if true]>\r\n            <td>\r\n            <![endif]--> \r\n      <!--[if !true]><!-->\r\n      <div style=\"display:table-cell;width:15%; vertical-align:middle;\"> \r\n        <!--<![endif]-->\r\n        \r\n        <div style=\"height: 10px;\">&nbsp;</div>\r\n        <!--[if mso]>\r\n    <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n      <tr>\r\n        <td width=\"80px\" style=\"padding-left:100px\">\r\n    <![endif]--> \r\n        <img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Filled_Icon_circle_fix.png\" width=\"80\" height=\"75\" alt=\"Icon\" style=\"border: 0; width: 80px; max-width: 80px; vertical-align:bottom;border-radius: 50%\"> \r\n        <!--[if mso]>\r\n        </td>\r\n      </tr>\r\n      <tr>\r\n        <td width=\"65px\">\r\n    <![endif]--> \r\n        <img align=\"right\" src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Filled_Group_Icons.png\" width=\"65\" height=\"40\" alt=\"Icon\" style=\"border: 0; width: 65px; max-width: 65px; vertical-align:top;\"> \r\n        <!--[if mso]>\r\n    <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n      <tr>\r\n        <td>\r\n    <![endif]--> \r\n        <!--[if !true]><!--> \r\n      </div>\r\n      <!--<![endif]--> \r\n      <!--[if true]>\r\n            </td>\r\n            <![endif]--> \r\n      <!--[if true]>\r\n            <td >\r\n            <![endif]--> \r\n      <!--[if !true]><!-->\r\n      <div style=\"display:table-cell;width:85%; vertical-align:top;\"> \r\n        <!--<![endif]-->\r\n        <p style=\"padding: 10px 0px 0px 20px;\"> Leslie Staron (<a href=\"mailto:leslie@mavrix.one\" style=\"color: #282c33; text-decoration:none; cursor: text\" class=\"mail-link\">leslie@mavrix.one</a>) invited you to edit <a href=\"https://url5041.app.lucid.co/uni/ls/click?upn=u001.9CEiYqsCeDB7JcEaXQIz-2F8hA2T748OZjyY91l9S-2BOHpWIQbEGJbaVHr9V-2BjSyorr0PAhr-2FLZX8vFDnRykCzEnA4xgTdlLRZ2yjwuFOWbpRhx8Db1mR77dHyZBwgc3HJrSfOpM-2BvRUygq9h7tTRuTXcwECBus0t6uWs-2BGRcVEhfIWISD9SUGGVwlCWcY57K2lCQCZAYwWUFaGSVwhon2sAw-3D-3D8A9T_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi9zBWmM6vvHZCsZtpnZ5kC8qWuI28rgmxt6vv7R7bESEgm4rM5Fcf1CrKZygnZdhwe-2FvQ-2BwZOazX4-2Blmyp4S2-2BMeMGss8htYY8z5pALvrCKYdtiMX5t4RnkT4U3lKa7sYY9KWqgc4rozBqmfUjXycOvqyyRw0JIKgqYMPjIrKO1AXSHbOOCpGKVx7dXHsSddAjOKiuUW67skYM3xWct9uOYy-2BdZBrIZQhDdvLTVtC-2F5V6DBFbRNLUWWmTf-2FmRENh1-2Bo68fm3gvNzJ-2BbT3dzJpdz-2FWyCUKt2sIwi5whJZu18-2BLwDHoE0bXEsVkO3wWyWvR6UdUFk9RDLFUoM93Tclh5gG4HPTX4QnbiEhQ-2BjA48Jj0YqT2LUAqtSqNqpXWbXguMyRuvu3tQ155deMn-2FflGIn5Y8ruO5iaAtOm-2F6-2BNYPmUqrX-2FbDcCekvdR8PtenRS-2BdpQgd6LwE2cm-2BljcKZOsTH7do4bFdDKxxffdLNwtBBJxnQ6ttdu5-2BIQURD8jwwJT64vUsF4KneiXlInZOs7Sc9yoEyroGkgNNxE4ApMzQamPeUPKQZaelLUa8osNlWJ0hZYPGL-2B-2FKDWMtYUYvIyXG2ADlsTB3cv5T9R-2BeyPPEh0lfjX3Yl919XASv5O1-2F3h0l-2BC9oV-2F4JNxQJrqfG9YPBUSueZ-2BdXNnZ-2BEz3uOem4IHg-3D-3D\" universal=\"true\" style=\"color:#1071E5\" class=\"link\">Blank diagram</a> </p>\r\n        <!--[if !true]><!--> \r\n      </div>\r\n      <!--<![endif]--> \r\n      <!--[if true]>\r\n            </td>\r\n            <![endif]--> \r\n    </div>\r\n    <!--[if true]>\r\n        </tr>\r\n        </table>\r\n        <![endif]--> \r\n    <div style=\"height: 20px\">&nbsp;</div>\r\n    <div style=\"margin: 0px 60px 20px 60px\" class=\"mob-mar\"> \r\n      <!--[if mso]>\r\n<v:roundrect style=\"font-family: Arial,Helvetica,Verdana,sans-serif; width:225px; height:50px; v-text-anchor:middle;\" arcsize=\"15%\" stroke=\"f\" fillcolor=\"#1071E5\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\">\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0,0,0,0\">\r\n<center>\r\n<![endif]--> \r\n      <a align=\"center\" href=\"https://url5041.app.lucid.co/uni/ls/click?upn=u001.9CEiYqsCeDB7JcEaXQIz-2F8hA2T748OZjyY91l9S-2BOHpWIQbEGJbaVHr9V-2BjSyorr0PAhr-2FLZX8vFDnRykCzEnA4xgTdlLRZ2yjwuFOWbpRhx8Db1mR77dHyZBwgc3HJrSfOpM-2BvRUygq9h7tTRuTXcwECBus0t6uWs-2BGRcVEhfIWISD9SUGGVwlCWcY57K2lCQCZAYwWUFaGSVwhon2sAw-3D-3DUdjV_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi9zBWmM6vvHZCsZtpnZ5kC8qWuI28rgmxt6vv7R7bESEgm4rM5Fcf1CrKZygnZdhwe-2FvQ-2BwZOazX4-2Blmyp4S2-2BMeMGss8htYY8z5pALvrCKYdtiMX5t4RnkT4U3lKa7sYY9KWqgc4rozBqmfUjXycOvqyyRw0JIKgqYMPjIrKO1AXSHbOOCpGKVx7dXHsSddAjOKiuUW67skYM3xWct9uOYy-2BdZBrIZQhDdvLTVtC-2F5V6DBFbRNLUWWmTf-2FmRENh1-2Bo68fm3gvNzJ-2BbT3dzJpdz-2FWyCUKt2sIwi5whJZu18-2BLwDHoE0bXEsVkO3wWyWvR6UdUFk9RDLFUoM93Tclh5gG4HPTX4QnbiEhQ-2BjA48Jj0YqT2LUAqtSqNqpXWbXguMyRuvu3tQ155deMn-2FflGIn5Y8ruO5iaAtOm-2F6-2BNYPmUqrX-2FbDcCekvdR8PtenRS-2BdpQgd6LwE2cm-2BljcKZOsTH7do4bFdDKxxffdLNwtBBJxnQ6ttdu5-2BIQURD8jwwJT6ZZdXNLbkIDPvhxGG46EGP9SmL7pDtvvhpa9FFLOIoNjwHFt7hV2kPFC2i6A1x7K6fjPnQiAkB3h68CLYaU69IMXZfm9iOGfh-2BqUv-2FJU4ijvXT33qt6XqOeCu2Ln5auVQBl7Xl-2FNFHy-2BefdX5-2BGy6pB6b2ByrveO-2F-2B5TpKTgzQAw-3D-3D\" universal=\"true\" style=\"mso-shading: transparent; font-family: Arial,Helvetica, Verdana, sans-serif; font-size: 20px; background-color:#1071E5; text-decoration: none; padding: .5em 2em; color: #FFFFFE; display:inline-block; border-radius:4px; mso-padding-alt:0; text-underline-color:#1071E5\" class=\"button\"><span class=\"black-text\">Accept&nbsp;invitation</span> </a> \r\n      <!--[if mso]>\r\n</center>\r\n</v:textbox>\r\n</v:roundrect>\r\n<![endif]--> \r\n    </div>\r\n    <div style=\"height: 20px\">&nbsp;</div>\r\n    <div style=\"margin: 0px 60px\" class=\"mob-mar\"> <a align=\"center\" href=\"https://url5041.app.lucid.co/ls/click?upn=u001.9CEiYqsCeDB7JcEaXQIz-2F8hA2T748OZjyY91l9S-2BOHpWIQbEGJbaVHr9V-2BjSyorr0PAhr-2FLZX8vFDnRykCzEnA4xgTdlLRZ2yjwuFOWbpRhx8Db1mR77dHyZBwgc3HJrSfOpM-2BvRUygq9h7tTRuTXcwECBus0t6uWs-2BGRcVEhfIWISD9SUGGVwlCWcY57K2lCQCZAYwWUFaGSVwhon2sAw-3D-3DkbAM_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi9zBWmM6vvHZCsZtpnZ5kC8qWuI28rgmxt6vv7R7bESEgm4rM5Fcf1CrKZygnZdhwe-2FvQ-2BwZOazX4-2Blmyp4S2-2BMeMGss8htYY8z5pALvrCKYdtiMX5t4RnkT4U3lKa7sYY9KWqgc4rozBqmfUjXycOvqyyRw0JIKgqYMPjIrKO1AXSHbOOCpGKVx7dXHsSddAjOKiuUW67skYM3xWct9uOYy-2BdZBrIZQhDdvLTVtC-2F5V6DBFbRNLUWWmTf-2FmRENh1-2Bo68fm3gvNzJ-2BbT3dzJpdz-2FWyCUKt2sIwi5whJZu18-2BLwDHoE0bXEsVkO3wWyWvR6UdUFk9RDLFUoM93Tclh5gG4HPTX4QnbiEhQ-2BjA48Jj0YqT2LUAqtSqNqpXWbXguMyRuvu3tQ155deMn-2FflGIn5Y8ruO5iaAtOm-2F6-2BNYPmUqrX-2FbDcCekvdR8PtenRS-2BdpQgd6LwE2cm-2BljcKZOsTH7do4bFdDKxxffdLNwtBBJxnQ6ttdu5-2BIQURD8jwwJT5NDIn3l7-2FkjFwdwPR3GGMgcF32gB-2BHds37hKsCbBxI25ynIKdWyBnJG5cWL3sFpZuF21FRODCo3whzcpDadRGJddM3hzkCbbgiFd0AgaHzpno8QWcMO-2B2hWD6dat-2FPMpo9fGxCb6Uft4-2BW5w0cx4mpdvCYYuS44F2W30AQKZ0J9g-3D-3D\" class=\"img-link\"> <img src=\"https://documents.us.lucid.app/s3proxy/pdf-longterm-lucidchart-com/f4edfd8a-8582-4736-ab63-dadcc7fd8c4c?token=2725de161aa8345d63d88cbecd9eaeba5446e033e1f5a7fb47e8593128f43044-ts%3D1764096126\" alt=\"Document preview screenshot\" border=\"0\" width=\"560\" style=\"display:block;width:100%;max-width:560px;border: 3px solid #CED4DB;box-sizing: border-box\"> </a> </div>\r\n    <div style=\"height: 0px\">&nbsp;</div>\r\n    <div style=\"height: 40px\">&nbsp;</div>\r\n  </div>\r\n  <!--[if mso]></td></tr></table><table role=\"presentation\" style=\"margin:0 auto; width:680px; background-color: #FAFBFC; font-family: Arial,Helvetica,Verdana,sans-serif; font-size: 12px; line-height: 160%; color: #282c33\" align=\"center\"><tr style=\"margin:0 auto\"><td><![endif]-->\r\n  <div style=\"max-width: 680px; margin:0 auto; background: #FAFBFC; font-family: Arial,Helvetica,Verdana,sans-serif; font-size: 12px; line-height: 150%; color: #282c33\" class=\"bkgrd\">\r\n    <div style=\"height: 0px\">&nbsp;</div>\r\n    <div style=\"margin: 30px 60px 0px 60px\" class=\"mob-mar\"> <a align=\"center\" href=\"https://url5041.app.lucid.co/ls/click?upn=u001.9CEiYqsCeDB7JcEaXQIz-2F5ZA7b6Ng-2FmkjRqwr793bQJl6eCRn-2FD8wHGnt9qb2-2Fey3epHeHnseonILNN1qeqD5YOdm23QbLAJWehtYOV-2FTK8ee2H5gkdZ-2FU-2BcLtWC2VVEEzqvS7LNtDMMzbUqP3fRv2Q7c3eUeIkhW3BDIcuvzvGVx-2FK7Z9Nlh-2BgvyzAQb7LBlrcg_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi9zBWmM6vvHZCsZtpnZ5kC8qWuI28rgmxt6vv7R7bESEgm4rM5Fcf1CrKZygnZdhwe-2FvQ-2BwZOazX4-2Blmyp4S2-2BMeMGss8htYY8z5pALvrCKYdtiMX5t4RnkT4U3lKa7sYY9KWqgc4rozBqmfUjXycOvqyyRw0JIKgqYMPjIrKO1AXSHbOOCpGKVx7dXHsSddAjOKiuUW67skYM3xWct9uOYy-2BdZBrIZQhDdvLTVtC-2F5V6DBFbRNLUWWmTf-2FmRENh1-2Bo68fm3gvNzJ-2BbT3dzJpdz-2FWyCUKt2sIwi5whJZu18-2BLwDHoE0bXEsVkO3wWyWvR6UdUFk9RDLFUoM93Tclh5gG4HPTX4QnbiEhQ-2BjA48Jj0YqT2LUAqtSqNqpXWbXguMyRuvu3tQ155deMn-2FflGIn5Y8ruO5iaAtOm-2F6-2BNYPmUqrX-2FbDcCekvdR8PtenRS-2BdpQgd6LwE2cm-2BljcKZOsTH7do4bFdDKxxffdLNwtBBJxnQ6ttdu5-2BIQURD8jwwJT7HYOJszNXmqvPvF1TIRFp9UBOavcjtnP9CSjlKa7ZtdyzpMBoqGPipwBdVmlhDeXsHr9coeII1CWgPokmSAfljQ9XTYH-2Bc0kdWLYnCPCmV-2F08f9o6sJ12nL2-2BTF4ku-2Br51N8M9s3x1f4wOxBiD-2BRkUPNEB53ms4CmuBQJr44C3BQ-3D-3D\"> <img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Marketo-Images/Lucid-Primary-Logo-CG100-onClear-np-RGB@2x.png\" width=\"80\" alt=\"Lucid\" style=\"border: 0;width: 80px; max-width: 80px; vertical-align:middle\" class=\"ftr-logo-light\"><!--[if mso]><table style=\"mso-hide:all\"><tr style=\"mso-hide:all\"><td style=\"mso-hide:all\"><![endif]--> \r\n      <img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Marketo-Images/Lucid-Primary-Logo-White-onClear-np-RGB@2x.png\" width=\"80\" alt=\"Lucid\" style=\"vertical-align:middle;display:none; overflow:hidden; float:left; width:0px; max-height:0px; max-width:0px; line-height:0px; visibility:hidden\" class=\"ftr-logo-dark\"> \r\n      <!--[if mso]></td></tr></table><![endif]--> \r\n      </a> </div>\r\n    <p style=\"margin: 20px 60px 0px 60px\" class=\"mob-mar\"> Lucid Software, Inc. </p>\r\n    <p style=\"margin:0px 60px\" class=\"mob-mar\"> <a align=\"center\" href=\"https://url5041.app.lucid.co/ls/click?upn=u001.9CEiYqsCeDB7JcEaXQIz-2F5ZA7b6Ng-2FmkjRqwr793bQJl6eCRn-2FD8wHGnt9qb2-2Fey3epHeHnseonILNN1qeqD5YOdm23QbLAJWehtYOV-2FTK8ee2H5gkdZ-2FU-2BcLtWC2VVEEzqvS7LNtDMMzbUqP3fRv2Q7c3eUeIkhW3BDIcuvzvGVx-2FK7Z9Nlh-2BgvyzAQb7LBqCnZ_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi9zBWmM6vvHZCsZtpnZ5kC8qWuI28rgmxt6vv7R7bESEgm4rM5Fcf1CrKZygnZdhwe-2FvQ-2BwZOazX4-2Blmyp4S2-2BMeMGss8htYY8z5pALvrCKYdtiMX5t4RnkT4U3lKa7sYY9KWqgc4rozBqmfUjXycOvqyyRw0JIKgqYMPjIrKO1AXSHbOOCpGKVx7dXHsSddAjOKiuUW67skYM3xWct9uOYy-2BdZBrIZQhDdvLTVtC-2F5V6DBFbRNLUWWmTf-2FmRENh1-2Bo68fm3gvNzJ-2BbT3dzJpdz-2FWyCUKt2sIwi5whJZu18-2BLwDHoE0bXEsVkO3wWyWvR6UdUFk9RDLFUoM93Tclh5gG4HPTX4QnbiEhQ-2BjA48Jj0YqT2LUAqtSqNqpXWbXguMyRuvu3tQ155deMn-2FflGIn5Y8ruO5iaAtOm-2F6-2BNYPmUqrX-2FbDcCekvdR8PtenRS-2BdpQgd6LwE2cm-2BljcKZOsTH7do4bFdDKxxffdLNwtBBJxnQ6ttdu5-2BIQURD8jwwJT75diCoRNB9RyQ2Nd770oObPJ5NKjs1mdHCl7OuOy5D-2B6ERn1bq6pGK58c-2BejT174LaTuuI-2BhQR7sZWQPXpeUqfEI-2BRTyKgV3mqDQxCYcZnQCJFvlT5QNwu0Ax50h9dyDRnGROCtkIp-2BVVcSya-2Brhgluucdf85UCL-2BKfDWsF1uU-2BQ-3D-3D\" style=\"text-decoration: none; color: #282C33; cursor: text\" class=\"bkgrd\">10355 South Jordan Gateway, Suite 300 South Jordan, UT 84095 USA</a> </p>\r\n    <p style=\"margin:10px 60px\" class=\"mob-mar\"> By continuing to use Lucid\'s products, you agree to our <a href=\"https://url5041.app.lucid.co/ls/click?upn=u001.9CEiYqsCeDB7JcEaXQIz-2F3G1SXYAYfd20WN5DHnCGcs-3DZGF6_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi9zBWmM6vvHZCsZtpnZ5kC8qWuI28rgmxt6vv7R7bESEgm4rM5Fcf1CrKZygnZdhwe-2FvQ-2BwZOazX4-2Blmyp4S2-2BMeMGss8htYY8z5pALvrCKYdtiMX5t4RnkT4U3lKa7sYY9KWqgc4rozBqmfUjXycOvqyyRw0JIKgqYMPjIrKO1AXSHbOOCpGKVx7dXHsSddAjOKiuUW67skYM3xWct9uOYy-2BdZBrIZQhDdvLTVtC-2F5V6DBFbRNLUWWmTf-2FmRENh1-2Bo68fm3gvNzJ-2BbT3dzJpdz-2FWyCUKt2sIwi5whJZu18-2BLwDHoE0bXEsVkO3wWyWvR6UdUFk9RDLFUoM93Tclh5gG4HPTX4QnbiEhQ-2BjA48Jj0YqT2LUAqtSqNqpXWbXguMyRuvu3tQ155deMn-2FflGIn5Y8ruO5iaAtOm-2F6-2BNYPmUqrX-2FbDcCekvdR8PtenRS-2BdpQgd6LwE2cm-2BljcKZOsTH7do4bFdDKxxffdLNwtBBJxnQ6ttdu5-2BIQURD8jwwJT5H1nHqAG-2F6eTQr8OP0EJhO4LnSA1gzgS7AROgk2D9ua7KaoMxxSUDF-2FDMCdlrpOTeiyn3di8gecP0MDgOgDlPLcvYen6BasFI36I1RWZ6UZPcKlpEDxKBvowgy2s12N3kO1gGFMIAVyViObTxAJPkbLTaLOyBaj3bkqpGdfU-2Fb9A-3D-3D\" style=\"color:#1071E5; text-decoration: underline\" class=\"link\">Terms of Service</a> and acknowledge our <a href=\"https://url5041.app.lucid.co/ls/click?upn=u001.9CEiYqsCeDB7JcEaXQIz-2F-2FQRR19FjbyoYQhtFO1er9BQPMBFRdKg6Z3wesmcOjyFfMRM_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi9zBWmM6vvHZCsZtpnZ5kC8qWuI28rgmxt6vv7R7bESEgm4rM5Fcf1CrKZygnZdhwe-2FvQ-2BwZOazX4-2Blmyp4S2-2BMeMGss8htYY8z5pALvrCKYdtiMX5t4RnkT4U3lKa7sYY9KWqgc4rozBqmfUjXycOvqyyRw0JIKgqYMPjIrKO1AXSHbOOCpGKVx7dXHsSddAjOKiuUW67skYM3xWct9uOYy-2BdZBrIZQhDdvLTVtC-2F5V6DBFbRNLUWWmTf-2FmRENh1-2Bo68fm3gvNzJ-2BbT3dzJpdz-2FWyCUKt2sIwi5whJZu18-2BLwDHoE0bXEsVkO3wWyWvR6UdUFk9RDLFUoM93Tclh5gG4HPTX4QnbiEhQ-2BjA48Jj0YqT2LUAqtSqNqpXWbXguMyRuvu3tQ155deMn-2FflGIn5Y8ruO5iaAtOm-2F6-2BNYPmUqrX-2FbDcCekvdR8PtenRS-2BdpQgd6LwE2cm-2BljcKZOsTH7do4bFdDKxxffdLNwtBBJxnQ6ttdu5-2BIQURD8jwwJT7lqrf7nZwvxEToxdZgxKxO3a57FfFdJ6qyu6YNN62YXLjJuUJ1a-2FPf4ybGFrvcYQty3-2Bziu0VYY7kIx7nIFQ0dvXv43RjsJnnCrxrPMlDZk-2FHxN7Hy-2FPdYydcUSamxwxwBUEdRC3UrFqzSUT8vhSHMathb7czfA4M7RGR4GPzhYw-3D-3D\" style=\"color:#1071E5; text-decoration: underline\" class=\"link\">Privacy Policy</a>. </p>\r\n    <div style=\"height: 100px\">&nbsp;</div>\r\n  </div>\r\n  <!--[if mso]></td></tr></table><![endif]--> \r\n</div>\r\n<img src=\"https://url5041.app.lucid.co/wf/open?upn=u001.D6mC8SG6iITw2GIzPjAtw3VnKGws73w4Kg-2Fn2LF1yNJWZmnvRjdB3I9paPSgxdgjmSNcsUpyZWCSCuqIj22sE-2BajSHpap6gC2r7-2Bh3cP-2BEM11gnmldRXAOWrmHj6oMrE5TuUo1ICTrnRhlnkp2GaAaPKdcg57HvLPeiqWmVjqDD5A1x52MbgW6-2Btm7xhXa6pZ9dJ-2Bph35l6QFFywqcSgEGoeGzo-2BiChw0tcM8pcUjm6Nby4j6XB6pxAZ-2BRQuCXzWOV2jn6cK0NoG1AB4kE4gENhbFaIguCj7zhD8gCzp9KufPUIczaEJfzxQgHyAeQ50TXlnVNoeEd8d-2F82AvPg6CZivuSKVOPoAwmjv7FujhqslWa9kiLscODiJUdLY506ilFBosVGcgqN2AAu2-2FwN6M-2F-2BFHRkfW-2BacKM8cw-2BgtwqUSN30GVkcWX6tKSKk5HW6AD8ncZ2UcaEwXB8u4MrnGqBHCbS46uCFOwIVjHiye6wlh0Ktw-2FAkenkRrQmvuer6V7shC0xpd-2Bbof3Mq5TEVyvjINUCvadwM96uF4m2z0Shdji97i6fQQxSPsb09W-2FnvEnsGlly9xSd2YYlhkCSbDCBGUlciI-2F0pP6-2B-2FXObVg6Ln7pETpT-2F61pj1hUhA2S-2BfPpT9ezZb43TzPZ9zTOShUw0OW5nme4H58CJaFfnWYEosCAdcSvdCxDZsLW4-2BLkVleI30wCNMSDznbjI2-2BBYXeLQ-3D-3D\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/></body>\r\n</html>','\r\nYou\'re invited to the document \"Blank diagram\"\r\n\r\nLeslie Staron shared the Lucidchart document Blank diagram with you - accept the invitation to take a closer look! ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ \r\n\r\n\r\nhttps://url5041.app.lucid.co/ls/click?upn=u001.9CEiYqsCeDB7JcEaXQIz-2FwcXWzTlbvKFTuXsPuVGPmsZY6oUxtOG-2BFncmhSJWU1AnpcY_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi9zBWmM6vvHZCsZtpnZ5kC8qWuI28rgmxt6vv7R7bESEgm4rM5Fcf1CrKZygnZdhwe-2FvQ-2BwZOazX4-2Blmyp4S2-2BMeMGss8htYY8z5pALvrCKYdtiMX5t4RnkT4U3lKa7sYY9KWqgc4rozBqmfUjXycOvqyyRw0JIKgqYMPjIrKO1AXSHbOOCpGKVx7dXHsSddAjOKiuUW67skYM3xWct9uOYy-2BdZBrIZQhDdvLTVtC-2F5V6DBFbRNLUWWmTf-2FmRENh1-2Bo68fm3gvNzJ-2BbT3dzJpdz-2FWyCUKt2sIwi5whJZu18-2BLwDHoE0bXEsVkO3wWyWvR6UdUFk9RDLFUoM93Tclh5gG4HPTX4QnbiEhQ-2BjA48Jj0YqT2LUAqtSqNqpXWbXguMyRuvu3tQ155deMn-2FflGIn5Y8ruO5iaAtOm-2F6-2BNYPmUqrX-2FbDcCekvdR8PtenRS-2BdpQgd6LwE2cm-2BljcKZOsTH7do4bFdDKxxffdLNwtBBJxnQ6ttdu5-2BIQURD8jwwJT6LFEehjSd0oAXplXptHmW7u-2Fy-2BojqpoHzsfS4QIKLmz7WLBmQTdcRJUTXBlou1uVuSV0L1iwkeThVGKjjcDFVcmFYxF0-2BzKLpOkuDOBfzV-2F0H2-2BXCIUBqA8wsGMHqm0wreZTqpRuISn648BscHsdRaz1tLgHgBLbnaMrrnCTh4RA-3D-3D\r\n\r\nLeslie Staron shared the Lucidchart document Blank diagram https://url5041.app.lucid.co/ls/click?upn=u001.9CEiYqsCeDB7JcEaXQIz-2F8hA2T748OZjyY91l9S-2BOHpWIQbEGJbaVHr9V-2BjSyorr0PAhr-2FLZX8vFDnRykCzEnA4xgTdlLRZ2yjwuFOWbpRhx8Db1mR77dHyZBwgc3HJrEeHn0iSVMpQBVmLsx7UjCymTa38iYUay-2BoYkWksmMRTSNtlWQu0kw7dOTZiKxgFDr7dbErrfplz5EDfWMVD7Hg-3D-3D4JJG_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi9zBWmM6vvHZCsZtpnZ5kC8qWuI28rgmxt6vv7R7bESEgm4rM5Fcf1CrKZygnZdhwe-2FvQ-2BwZOazX4-2Blmyp4S2-2BMeMGss8htYY8z5pALvrCKYdtiMX5t4RnkT4U3lKa7sYY9KWqgc4rozBqmfUjXycOvqyyRw0JIKgqYMPjIrKO1AXSHbOOCpGKVx7dXHsSddAjOKiuUW67skYM3xWct9uOYy-2BdZBrIZQhDdvLTVtC-2F5V6DBFbRNLUWWmTf-2FmRENh1-2Bo68fm3gvNzJ-2BbT3dzJpdz-2FWyCUKt2sIwi5whJZu18-2BLwDHoE0bXEsVkO3wWyWvR6UdUFk9RDLFUoM93Tclh5gG4HPTX4QnbiEhQ-2BjA48Jj0YqT2LUAqtSqNqpXWbXguMyRuvu3tQ155deMn-2FflGIn5Y8ruO5iaAtOm-2F6-2BNYPmUqrX-2FbDcCekvdR8PtenRS-2BdpQgd6LwE2cm-2BljcKZOsTH7do4bFdDKxxffdLNwtBBJxnQ6ttdu5-2BIQURD8jwwJT5iXkjIFMlPSgJm7n2mfaSVrJ1MAv-2FyONFLwCtkKu-2F2c1mEg-2FiCJmDyJgkmDnd0zi9-2BBRAfYBHKZtbP9VnWHvEKwYLJyfF4D7CfzL9Va3kpnPL-2Bvz8rTic2qxjhpK-2FV0mwUF6IKhSoz37SWQTnpeU6NH06q70OGyk1fvgdnSpXdTQ-3D-3D with you — accept the invitation to take a closer look!\r\n\r\nMessage from Leslie:\r\n\r\n\r\n\r\nAccept invitation https://url5041.app.lucid.co/ls/click?upn=u001.9CEiYqsCeDB7JcEaXQIz-2F8hA2T748OZjyY91l9S-2BOHpWIQbEGJbaVHr9V-2BjSyorr0PAhr-2FLZX8vFDnRykCzEnA4xgTdlLRZ2yjwuFOWbpRhx8Db1mR77dHyZBwgc3HJrEeHn0iSVMpQBVmLsx7UjCymTa38iYUay-2BoYkWksmMRTSNtlWQu0kw7dOTZiKxgFDr7dbErrfplz5EDfWMVD7Hg-3D-3DAFQ2_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi9zBWmM6vvHZCsZtpnZ5kC8qWuI28rgmxt6vv7R7bESEgm4rM5Fcf1CrKZygnZdhwe-2FvQ-2BwZOazX4-2Blmyp4S2-2BMeMGss8htYY8z5pALvrCKYdtiMX5t4RnkT4U3lKa7sYY9KWqgc4rozBqmfUjXycOvqyyRw0JIKgqYMPjIrKO1AXSHbOOCpGKVx7dXHsSddAjOKiuUW67skYM3xWct9uOYy-2BdZBrIZQhDdvLTVtC-2F5V6DBFbRNLUWWmTf-2FmRENh1-2Bo68fm3gvNzJ-2BbT3dzJpdz-2FWyCUKt2sIwi5whJZu18-2BLwDHoE0bXEsVkO3wWyWvR6UdUFk9RDLFUoM93Tclh5gG4HPTX4QnbiEhQ-2BjA48Jj0YqT2LUAqtSqNqpXWbXguMyRuvu3tQ155deMn-2FflGIn5Y8ruO5iaAtOm-2F6-2BNYPmUqrX-2FbDcCekvdR8PtenRS-2BdpQgd6LwE2cm-2BljcKZOsTH7do4bFdDKxxffdLNwtBBJxnQ6ttdu5-2BIQURD8jwwJT4DtK-2BiD0LgoH3LQzbmbmGTgO2F8pJu2woo4ErOYYWU3JXKKm96-2BNoUOXTGd-2Fo7RXQar9t2ihCSPOpE0GQSPTIHAg3d3Q9Y0fvgN9KBzirgxQQhV-2BzxfRdB7v22lvg131e2BnB5bbMdVSlSpTs52t9rmZKVyuk7NCZf1S8JxhQgdA-3D-3D\r\n\r\nLucid Software, Inc.\r\n\r\n10355 South Jordan Gateway, Suite 150,\r\n South Jordan, UT 84095 USA https://url5041.app.lucid.co/ls/click?upn=u001.9CEiYqsCeDB7JcEaXQIz-2FwcXWzTlbvKFTuXsPuVGPmsZY6oUxtOG-2BFncmhSJWU1A2mBj_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi9zBWmM6vvHZCsZtpnZ5kC8qWuI28rgmxt6vv7R7bESEgm4rM5Fcf1CrKZygnZdhwe-2FvQ-2BwZOazX4-2Blmyp4S2-2BMeMGss8htYY8z5pALvrCKYdtiMX5t4RnkT4U3lKa7sYY9KWqgc4rozBqmfUjXycOvqyyRw0JIKgqYMPjIrKO1AXSHbOOCpGKVx7dXHsSddAjOKiuUW67skYM3xWct9uOYy-2BdZBrIZQhDdvLTVtC-2F5V6DBFbRNLUWWmTf-2FmRENh1-2Bo68fm3gvNzJ-2BbT3dzJpdz-2FWyCUKt2sIwi5whJZu18-2BLwDHoE0bXEsVkO3wWyWvR6UdUFk9RDLFUoM93Tclh5gG4HPTX4QnbiEhQ-2BjA48Jj0YqT2LUAqtSqNqpXWbXguMyRuvu3tQ155deMn-2FflGIn5Y8ruO5iaAtOm-2F6-2BNYPmUqrX-2FbDcCekvdR8PtenRS-2BdpQgd6LwE2cm-2BljcKZOsTH7do4bFdDKxxffdLNwtBBJxnQ6ttdu5-2BIQURD8jwwJT5sedJFc-2BrSybnSv6PTUHcqzyJoOft2npysNCo5uAwCY6k3prTHKfL0i119rvseISC7Ljdaa6gyrCPDNSQAoFgvK5INQTAu1E17L7HvW76DTzcW3GQh4sZr5phxsIlglDDaTvzCJXk43hej3aq5j5NZNduLwP1yWVFCXeHgEhlxfg-3D-3D',0,0,0,0,0,0,'2025-11-25 18:42:07','2025-12-04 14:04:49','2025-12-04 14:04:49','2025-12-04 14:04:49',NULL,NULL,NULL),
(82,4,'<2138175655.12855.1764186495851@event-consumer-prod-a-55765f5f5f-nhbtf>',NULL,NULL,'Signature requested on \"Offer Letter - Rick Mislan 11.26.2025\"','adobesign@adobesign.com','Leslie Staron via Adobe Acrobat Sign','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\r\n  \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en_US\">\r\n<head>\r\n  <title></title>\r\n  <style type=\"text/css\">\r\n\r\n    \r\n\r\n    body, table, div, td, p {\r\n    font-family: adobe, adobe-clean, \"Source Sans Pro\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, sans-serif;\r\n    color: #2C2C2C;\r\n    font-weight: 300;\r\n  }\r\n\r\n    p {\r\n    margin: 0;\r\n    padding: 0;\r\n  }\r\n\r\n    a {\r\n    border: none;\r\n  }\r\n\r\n    a, a:link, a:visited, a:hover, a:active {\r\n    color: #1473e6;\r\n    text-decoration: none;\r\n    font-weight: bold;\r\n  }\r\n\r\n    .separator {\r\n    margin: 0;\r\n    border: 1px solid #CACACA;\r\n  }\r\n\r\n    img {\r\n    border:0;\r\n  }\r\n\r\n    span.e_heading {\r\n    font-size: 12px;\r\n    font-weight: bold;\r\n  }\r\n\r\n    h1 {\r\n    font-size: 28px;\r\n    font-weight: 300;\r\n    color: #6E6E6E;\r\n    padding-bottom: 5px;\r\n  }\r\n\r\n      .bodyHeading {\r\n    margin: 0;\r\n    font-size: 22px;\r\n    color: #454545;\r\n    text-align: center;\r\n  }\r\n\r\n  .footerContainer {\r\n    margin-top: 16px;\r\n    font-size: 12px;\r\n    color: #4b4b4b\r\n  }\r\n\r\n  ul {\r\n    font-size: 17px;\r\n  }\r\n\r\n  .footerContainer p {\r\n    margin-bottom: 1em;\r\n  }\r\n  \r\n</style>\r\n</head>\r\n\r\n<body>\r\n  <center>\r\n        <table cellspacing=\"16\" cellpadding=\"0\" border=\"0\" style=\"max-width: 600px; background-color: #f0f0f0;border-collapse: separate\">\r\n      <tr style=\"background-color: #ffffff\">\r\n        <td>\r\n                \r\n  \r\n  <table style=\"background-color: #fff;width:100%; padding-bottom: 20px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n    <tbody>\r\n    <tr>\r\n      <td valign=\"bottom\">\r\n        <table class=\"\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n          <tbody>\r\n            <tr>\r\n              <td>\r\n                                                        <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n                      <tr>\r\n                        <td style=\"width:16px;\">&nbsp;</td>\r\n                        <td>\r\n                          <img src=\"https://na3.documents.adobe.com/images/emailNextGen/email-adobe-sign-logo.3@2x.png\" width=\"165\" alt=\"Adobe Acrobat Sign Logo\"/>\r\n                        </td>\r\n                      </tr>\r\n                    </table>\r\n                                                    </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td>\r\n\r\n                    <td style=\"color:#ffffff;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px\" width=\"39\" align=\"right\" valign=\"top\">\r\n                    <img style=\"background-color:#ff0000;display:inline-block\" src=\"https://na3.documents.adobe.com/images/emailNextGen/email-adobe-tag-classic@2x.png\" border=\"0\" alt=\"Adobe Logo\" width=\"39\" height=\"64\">\r\n        </td>\r\n        <td style=\"width:16px;\">&nbsp;</td>\r\n          </tr>\r\n    </tbody>\r\n  </table>\r\n          <table id=\"main\" cellpadding=\"20\" cellspacing=\"0\" style=\"width: 100%\">\r\n            <tr>\r\n              <td>\r\n     \r\n    <p style=\"display: none !important; visibility: hidden; mso-hide: all; font-size: 1px; color: #ffffff; line-height: 1px;\r\n  max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden;\">\r\n    Rick - Please review and sign the agreement.\r\n\r\nThank you,\r\nLeslie\r\n  </p>\r\n\r\n      <p class=\"bodyHeading\" style=\"margin: 0; font-size: 22px; color: #454545; text-align: center; word-break:break-word\">\r\n    Leslie Staron requests your signature on <br /> <a href=\"https://na3.documents.adobe.com/public/esign?tsid=CBFCIBAACBSCTBABDUAAABACAABAAJYh6_R4FA4DJlZ-6L1WJHmaxIYa2O5HkfMgkXD3FEnMDwye3-OoLRJHnuNuG_xXmUPOb6F_bQFXixt6zRJBKvTWbSTmo0ZnWbYEbw0uxGhdfSXfRnxzOEopcTTBTZKmx&\">Offer Letter - Rick Mislan 11.26.2025</a>\r\n  </p>\r\n\r\n      \r\n    \r\n          <center>\r\n        \r\n                        \r\n                \r\n        \r\n        \r\n        <!--[if mso]>\r\n          <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n              <tr>\r\n  <td height=\"28px\">\r\n    &nbsp;\r\n  </td>\r\n</tr>\r\n            <tr>\r\n              <td valign=\"middle\">\r\n                <center>\r\n                  <h1>\r\n                    <a href=\"https://na3.documents.adobe.com/public/esign?tsid=CBFCIBAACBSCTBABDUAAABACAABAAJYh6_R4FA4DJlZ-6L1WJHmaxIYa2O5HkfMgkXD3FEnMDwye3-OoLRJHnuNuG_xXmUPOb6F_bQFXixt6zRJBKvTWbSTmo0ZnWbYEbw0uxGhdfSXfRnxzOEopcTTBTZKmx&\">\r\n                      Review and sign\r\n                    </a>\r\n                  </h1>\r\n                </center>\r\n              </td>\r\n            </tr>\r\n              <tr>\r\n  <td height=\"28px\">\r\n    &nbsp;\r\n  </td>\r\n</tr>\r\n          </table>\r\n        <![endif]-->\r\n\r\n        <!--[if !mso]> <!---->\r\n          <div style=\"text-align: center; margin: 31px 0;\">\r\n            <a href=\"https://na3.documents.adobe.com/public/esign?tsid=CBFCIBAACBSCTBABDUAAABACAABAAJYh6_R4FA4DJlZ-6L1WJHmaxIYa2O5HkfMgkXD3FEnMDwye3-OoLRJHnuNuG_xXmUPOb6F_bQFXixt6zRJBKvTWbSTmo0ZnWbYEbw0uxGhdfSXfRnxzOEopcTTBTZKmx&\" style=\"background-color: #1473e6; border-color: #1473e6; color: #ffffff!important; border-width: 2px; border-style: solid;\r\n              border-radius: 20px; display: inline-block; height: auto; min-width: 72px; padding: 8px 14px; font-size: 15px; font-weight: 700 !important;\r\n              text-decoration: none; margin: 0; justify-content: center;\">\r\n              Review and sign\r\n            </a>\r\n          </div>\r\n        <!-- <![endif]-->\r\n    </center>\r\n  \r\n    \r\n        <hr class=\"separator\" />\r\n\r\n    <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-size: 17px;\">\r\n\r\n      \r\n      \r\n        <tr>\r\n  <td height=\"28px\">\r\n    &nbsp;\r\n  </td>\r\n</tr>\r\n\r\n      <tr>\r\n        <td>\r\n                          <p style=\"word-break:break-word\">Rick - Please review and sign the agreement.<br/><br/>Thank you,<br/>Leslie</p><br/>\r\n  \r\n                      \r\n                            <p style=\"text-transform: uppercase; font-size: 13px; letter-spacing: 0.78px; color: #2C2C2C; word-break:break-word\"><b>Leslie Staron</b></p>\r\n<p style=\"font-size: 15px; word-break:break-word\">leslie@mavrix.one</p>\r\n                </td>\r\n      </tr>\r\n    </table>\r\n        <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n        <tr>\r\n  <td height=\"28px\">\r\n    &nbsp;\r\n  </td>\r\n</tr>\r\n    </table>\r\n  \r\n<hr class=\"separator\" />\r\n\r\n\r\n\r\n  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n      <tr>\r\n  <td height=\"28px\">\r\n    &nbsp;\r\n  </td>\r\n</tr>\r\n    <tr>\r\n      <td>\r\n        <p>\r\n          \r\n\r\n                            After you sign <b>Offer Letter - Rick Mislan <span tabindex=\"-1\" style=\"pointer-events:none;cursor:text;text-decoration:none;color:inherit !important;font-weight:inherit;white-space:nowrap;\">11.<br style=\"display:none;\"/>26.<br style=\"display:none;\"/>2025</span></b>, all parties will receive a final PDF copy.\r\n                    </p>\r\n      </td>\r\n    </tr>\r\n  </table>\r\n\r\n\r\n\r\n  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n      <tr>\r\n  <td height=\"28px\">\r\n    &nbsp;\r\n  </td>\r\n</tr>\r\n    <tr>\r\n      <td>\r\n        <p>\r\n                      <p><b>Don\'t forward this email:</b> If you don\'t want to sign, you can <a href=\"https://supucansign.na3.echosign.com/public/resend?tsid=CBFCIBAACBSCTBABDUAAABACAABAAC9bF-6GE7CYE5pLbjryiRXQXryUSmzd-ORkvMDW9CzsstFgjpOMghLLGCI1Z01fjmjb0W0n972GUJGTBalpF42AZ0XUtj66O4gVeZ-eREPQIcxraeF4UXQVtrHmKgyoI\">delegate</a> to someone else.</p>\r\n        </p>\r\n      </td>\r\n    </tr>\r\n  </table>\r\n\r\n                      </td>\r\n                </tr>\r\n                            </table>\r\n            </td>\r\n        </tr>\r\n        <tr>\r\n          <td>\r\n            <table style=\"font-size: 12px; color: #4b4b4b\">\r\n              <tr>\r\n                <td>\r\n                                      <center>\r\n                      <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tr>\r\n                          <td>\r\n                            <img src=\"https://na3.documents.adobe.com/images/emailNextGen/email-powered-by-adobe-sign-logo.3@2x.png\" width=\"136\" hspace=\"2\" alt=\"Powered by Adobe Acrobat Sign\">\r\n                          </td>\r\n                        </tr>\r\n                        <tr>\r\n  <td height=\"16px\">\r\n    &nbsp;\r\n  </td>\r\n</tr>\r\n                      </table>\r\n                    </center>\r\n                                                                          <p style=\"margin-bottom: 18px\">By proceeding, you agree that this agreement may be signed using electronic or handwritten signatures.</p>\r\n\r\n                      <p style=\"margin-bottom: 18px\">\r\n                  To ensure that you continue receiving our emails, please add adobesign@adobesign.com to your address book or safe list.\r\n            </p>\r\n                                                            <p style=\"font-size: 80%; text-align: center; margin-bottom: 18px;\">\r\n      <span><a target=\"_blank\" href=\"https://www.adobe.com/go/terms\"><strong>Terms of Use</strong></a> | <a target=\"_blank\" href=\"https://na3.documents.adobe.com/public/reportAbuseForm?tsid=CBFCIBAACBSCTBABDUAAABACAABAAJYh6_R4FA4DJlZ-6L1WJHmaxIYa2O5HkfMgkXD3FEnMDwye3-OoLRJHnuNuG_xXmUPOb6F_bQFXixt6zRJBKvTWbSTmo0ZnWbYEbw0uxGhdfSXfRnxzOEopcTTBTZKmx&&reportAbuse=true\"><strong>Report Abuse</strong></a></span>\r\n    </p>\r\n                                      <p style=\"margin-bottom: 18px\">&copy; 2025 Adobe. All rights reserved.</p>\r\n\r\n                                                                      </td>\r\n              </tr>\r\n            </table>\r\n          </td>\r\n        </tr>\r\n            </table>\r\n    </center>\r\n        </body>\r\n</html>','\r\n\r\n\r\n\r\n  \r\n  \r\n\r\n    \r\n\r\n    body, table, div, td, p {\r\n    font-family: adobe, adobe-clean, \"Source Sans Pro\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, sans-serif;\r\n    color: #2C2C2C;\r\n    font-weight: 300;\r\n  }\r\n\r\n    p {\r\n    margin: 0;\r\n    padding: 0;\r\n  }\r\n\r\n    a {\r\n    border: none;\r\n  }\r\n\r\n    a, a:link, a:visited, a:hover, a:active {\r\n    color: #1473e6;\r\n    text-decoration: none;\r\n    font-weight: bold;\r\n  }\r\n\r\n    .separator {\r\n    margin: 0;\r\n    border: 1px solid #CACACA;\r\n  }\r\n\r\n    img {\r\n    border:0;\r\n  }\r\n\r\n    span.e_heading {\r\n    font-size: 12px;\r\n    font-weight: bold;\r\n  }\r\n\r\n    h1 {\r\n    font-size: 28px;\r\n    font-weight: 300;\r\n    color: #6E6E6E;\r\n    padding-bottom: 5px;\r\n  }\r\n\r\n      .bodyHeading {\r\n    margin: 0;\r\n    font-size: 22px;\r\n    color: #454545;\r\n    text-align: center;\r\n  }\r\n\r\n  .footerContainer {\r\n    margin-top: 16px;\r\n    font-size: 12px;\r\n    color: #4b4b4b\r\n  }\r\n\r\n  ul {\r\n    font-size: 17px;\r\n  }\r\n\r\n  .footerContainer p {\r\n    margin-bottom: 1em;\r\n  }\r\n  \r\n\r\n\r\n\r\n\r\n  \r\n        \r\n      \r\n        \r\n                \r\n  \r\n  \r\n    \r\n    \r\n      \r\n        \r\n          \r\n            \r\n              \r\n                                                        \r\n                      \r\n                        &nbsp;\r\n                        \r\n                          \r\n                        \r\n                      \r\n                    \r\n                                                    \r\n            \r\n          \r\n        \r\n      \r\n\r\n                    \r\n                    \r\n        \r\n        &nbsp;\r\n          \r\n    \r\n  \r\n          \r\n            \r\n              \r\n     \r\n    \r\n    Rick - Please review and sign the agreement.\r\n\r\nThank you,\r\nLeslie\r\n  \r\n\r\n      \r\n    Leslie Staron requests your signature on  Offer Letter - Rick Mislan 11.26.2025\r\n  \r\n\r\n      \r\n    \r\n          \r\n        \r\n                        \r\n                \r\n        \r\n        \r\n        \r\n\r\n        \r\n          \r\n            \r\n              Review and sign\r\n            \r\n          \r\n        \r\n    \r\n  \r\n    \r\n        \r\n\r\n    \r\n\r\n      \r\n      \r\n        \r\n  \r\n    &nbsp;\r\n  \r\n\r\n\r\n      \r\n        \r\n                          Rick - Please review and sign the agreement.Thank you,Leslie\r\n  \r\n                      \r\n                            Leslie Staron\r\nleslie@mavrix.one\r\n                \r\n      \r\n    \r\n        \r\n        \r\n  \r\n    &nbsp;\r\n  \r\n\r\n    \r\n  \r\n\r\n\r\n\r\n\r\n  \r\n      \r\n  \r\n    &nbsp;\r\n  \r\n\r\n    \r\n      \r\n        \r\n          \r\n\r\n                            After you sign Offer Letter - Rick Mislan 11.26.2025, all parties will receive a final PDF copy.\r\n                    \r\n      \r\n    \r\n  \r\n\r\n\r\n\r\n  \r\n      \r\n  \r\n    &nbsp;\r\n  \r\n\r\n    \r\n      \r\n        \r\n                      Don\'t forward this email: If you don\'t want to sign, you can delegate to someone else.\r\n        \r\n      \r\n    \r\n  \r\n\r\n                      \r\n                \r\n                            \r\n            \r\n        \r\n        \r\n          \r\n            \r\n              \r\n                \r\n                                      \r\n                      \r\n                        \r\n                          \r\n                            \r\n                          \r\n                        \r\n                        \r\n  \r\n    &nbsp;\r\n  \r\n\r\n                      \r\n                    \r\n                                                                          By proceeding, you agree that this agreement may be signed using electronic or handwritten signatures.\r\n\r\n                      \r\n                  To ensure that you continue receiving our emails, please add adobesign@adobesign.com to your address book or safe list.\r\n            \r\n                                                            \r\n      Terms of Use | Report Abuse\r\n    \r\n                                      &copy; 2025 Adobe. All rights reserved.\r\n\r\n                                                                      \r\n              \r\n            \r\n          \r\n        \r\n            \r\n    \r\n        \r\n',0,0,0,0,0,0,'2025-11-26 19:48:15','2025-12-04 14:04:49','2025-12-04 14:04:49','2025-12-04 14:04:49',NULL,NULL,NULL),
(83,4,'<1941251139.275256.1764202687751@event-consumer-prod-a-55765f5f5f-ffnkw>',NULL,NULL,'You signed: \"Offer Letter - Rick Mislan 11.26.2025\"','adobesign@adobesign.com','Leslie Staron via Adobe Acrobat Sign','  \r\n\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\r\n  \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en_US\">\r\n<head>\r\n  <title></title>\r\n  <style type=\"text/css\">\r\n\r\n    \r\n\r\n    body, table, div, td, p {\r\n    font-family: adobe, adobe-clean, \"Source Sans Pro\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, sans-serif;\r\n    color: #2C2C2C;\r\n    font-weight: 300;\r\n  }\r\n\r\n    p {\r\n    margin: 0;\r\n    padding: 0;\r\n  }\r\n\r\n    a {\r\n    border: none;\r\n  }\r\n\r\n    a, a:link, a:visited, a:hover, a:active {\r\n    color: #1473e6;\r\n    text-decoration: none;\r\n    font-weight: bold;\r\n  }\r\n\r\n    .separator {\r\n    margin: 0;\r\n    border: 1px solid #CACACA;\r\n  }\r\n\r\n    img {\r\n    border:0;\r\n  }\r\n\r\n    span.e_heading {\r\n    font-size: 12px;\r\n    font-weight: bold;\r\n  }\r\n\r\n    h1 {\r\n    font-size: 28px;\r\n    font-weight: 300;\r\n    color: #6E6E6E;\r\n    padding-bottom: 5px;\r\n  }\r\n\r\n      .bodyHeading {\r\n    margin: 0;\r\n    font-size: 22px;\r\n    color: #454545;\r\n    text-align: center;\r\n  }\r\n\r\n  .footerContainer {\r\n    margin-top: 16px;\r\n    font-size: 12px;\r\n    color: #4b4b4b\r\n  }\r\n\r\n  ul {\r\n    font-size: 17px;\r\n  }\r\n\r\n  .footerContainer p {\r\n    margin-bottom: 1em;\r\n  }\r\n  \r\n</style>\r\n</head>\r\n\r\n<body>\r\n  <center>\r\n        <table cellspacing=\"16\" cellpadding=\"0\" border=\"0\" style=\"max-width: 600px; background-color: #f0f0f0;border-collapse: separate\">\r\n      <tr style=\"background-color: #ffffff\">\r\n        <td>\r\n                \r\n  \r\n  <table style=\"background-color: #fff;width:100%; padding-bottom: 20px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n    <tbody>\r\n    <tr>\r\n      <td valign=\"bottom\">\r\n        <table class=\"\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n          <tbody>\r\n            <tr>\r\n              <td>\r\n                                                        <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n                      <tr>\r\n                        <td style=\"width:16px;\">&nbsp;</td>\r\n                        <td>\r\n                          <img src=\"https://na3.documents.adobe.com/images/emailNextGen/email-adobe-sign-logo.3@2x.png\" width=\"165\" alt=\"Adobe Acrobat Sign Logo\"/>\r\n                        </td>\r\n                      </tr>\r\n                    </table>\r\n                                                    </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td>\r\n\r\n                    <td style=\"color:#ffffff;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px\" width=\"39\" align=\"right\" valign=\"top\">\r\n                    <img style=\"background-color:#ff0000;display:inline-block\" src=\"https://na3.documents.adobe.com/images/emailNextGen/email-adobe-tag-classic@2x.png\" border=\"0\" alt=\"Adobe Logo\" width=\"39\" height=\"64\">\r\n        </td>\r\n        <td style=\"width:16px;\">&nbsp;</td>\r\n          </tr>\r\n    </tbody>\r\n  </table>\r\n          <table id=\"main\" cellpadding=\"20\" cellspacing=\"0\" style=\"width: 100%\">\r\n            <tr>\r\n              <td>\r\n     \r\n<center>\r\n<img src=\"https://na3.documents.adobe.com/images/emailNextGen/checkmarkCircle@2x.png\" style=\"padding-bottom: 28px; height: 50px; width: 50px; display: block; margin-left: auto; margin-right: auto;\" alt=\"Big Circle Checkmark\"/>\r\n</center>\r\n\r\n  <p style=\"display: none !important; visibility: hidden; mso-hide: all; font-size: 1px; color: #ffffff; line-height: 1px;\r\n  max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden;\">\r\n    You&rsquo;re all done. Attached is the final agreement for your reference.\r\n  </p>\r\n\r\n<p class=\"bodyHeading\" style=\"margin: 0; font-size: 22px; color: #454545; text-align: center; word-break:break-word\">\r\n You\'re done signing <br /> <b>Offer Letter - Rick Mislan <span tabindex=\"-1\" style=\"pointer-events:none;cursor:text;text-decoration:none;color:inherit !important;font-weight:inherit;white-space:nowrap;\">11.<br style=\"display:none;\"/>26.<br style=\"display:none;\"/>2025</span></b>\r\n</p>\r\n\r\n        <center>\r\n        \r\n                        \r\n                \r\n        \r\n        \r\n        <!--[if mso]>\r\n          <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n              <tr>\r\n  <td height=\"28px\">\r\n    &nbsp;\r\n  </td>\r\n</tr>\r\n            <tr>\r\n              <td valign=\"middle\">\r\n                <center>\r\n                  <h1>\r\n                    <a href=\"https://na3.documents.adobe.com/public/viewAgreement?tsid=CBFCIBAACBSCTBABDUAAABACAABAAGYEFb_zGEclydqc1i1KathrJ0h7B9QWYw9nvTm6MK1apIMV76jkb-gEt8q0lroB1MbUpTE2AVBf-7s-PrRrM_Zqxfcj6r-lU-DA3kNwLFbiLXBXPgjvENzbTyEY3jCGu&\">\r\n                      Open agreement\r\n                    </a>\r\n                  </h1>\r\n                </center>\r\n              </td>\r\n            </tr>\r\n              <tr>\r\n  <td height=\"28px\">\r\n    &nbsp;\r\n  </td>\r\n</tr>\r\n          </table>\r\n        <![endif]-->\r\n\r\n        <!--[if !mso]> <!---->\r\n          <div style=\"text-align: center; margin: 31px 0;\">\r\n            <a href=\"https://na3.documents.adobe.com/public/viewAgreement?tsid=CBFCIBAACBSCTBABDUAAABACAABAAGYEFb_zGEclydqc1i1KathrJ0h7B9QWYw9nvTm6MK1apIMV76jkb-gEt8q0lroB1MbUpTE2AVBf-7s-PrRrM_Zqxfcj6r-lU-DA3kNwLFbiLXBXPgjvENzbTyEY3jCGu&\" style=\"background-color: #1473e6; border-color: #1473e6; color: #ffffff!important; border-width: 2px; border-style: solid;\r\n              border-radius: 20px; display: inline-block; height: auto; min-width: 72px; padding: 8px 14px; font-size: 15px; font-weight: 700 !important;\r\n              text-decoration: none; margin: 0; justify-content: center;\">\r\n              Open agreement\r\n            </a>\r\n          </div>\r\n        <!-- <![endif]-->\r\n    </center>\r\n  \r\n<hr class=\"separator\" />\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n    <tr>\r\n  <td height=\"28px\">\r\n    &nbsp;\r\n  </td>\r\n</tr>\r\n  <tr>\r\n    <td>\r\n      <p>\r\n            <p style=\"font-size: 17px;\">\r\n      Attached is the final agreement for your reference.\r\n        Read it with <a href=\"https://www.adobe.com/go/sign_email_rdc\"><b>Acrobat Reader</b></a>.\r\n      \r\n  <span style=\"font-size: 17px;\">\r\n                You can also <a href=\"https://na3.documents.adobe.com/public/viewAgreement?tsid=CBFCIBAACBSCTBABDUAAABACAABAAGYEFb_zGEclydqc1i1KathrJ0h7B9QWYw9nvTm6MK1apIMV76jkb-gEt8q0lroB1MbUpTE2AVBf-7s-PrRrM_Zqxfcj6r-lU-DA3kNwLFbiLXBXPgjvENzbTyEY3jCGu&\"><b>open it online</b></a> to review its activity history.\r\n            </span>\r\n  </p>\r\n\r\n  \r\n<br />\r\n\r\n\r\n      </p>\r\n    </td>\r\n  </tr>\r\n</table>\r\n\r\n                      </td>\r\n                </tr>\r\n                            </table>\r\n            </td>\r\n        </tr>\r\n        <tr>\r\n          <td>\r\n            <table style=\"font-size: 12px; color: #4b4b4b\">\r\n              <tr>\r\n                <td>\r\n                                      <center>\r\n                      <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tr>\r\n                          <td>\r\n                            <img src=\"https://na3.documents.adobe.com/images/emailNextGen/email-powered-by-adobe-sign-logo.3@2x.png\" width=\"136\" hspace=\"2\" alt=\"Powered by Adobe Acrobat Sign\">\r\n                          </td>\r\n                        </tr>\r\n                        <tr>\r\n  <td height=\"16px\">\r\n    &nbsp;\r\n  </td>\r\n</tr>\r\n                      </table>\r\n                    </center>\r\n                                                                              <p style=\"margin-bottom: 18px\">Need your own documents signed? Adobe Acrobat Sign can help save you time. <a href=\"https://www.adobe.com/go/signeremail-trial-nov2019\"><b>Learn more</b></a>.</p>\r\n  \r\n                      <p style=\"margin-bottom: 18px\">\r\n                  To ensure that you continue receiving our emails, please add adobesign@adobesign.com to your address book or safe list.\r\n            </p>\r\n                                                            <p style=\"font-size: 80%; text-align: center; margin-bottom: 18px;\">\r\n      <span><a target=\"_blank\" href=\"https://www.adobe.com/go/terms\"><strong>Terms of Use</strong></a> | <a target=\"_blank\" href=\"https://na3.documents.adobe.com/public/reportAbuseForm?tsid=CBFCIBAACBSCTBABDUAAABACAABAAGYEFb_zGEclydqc1i1KathrJ0h7B9QWYw9nvTm6MK1apIMV76jkb-gEt8q0lroB1MbUpTE2AVBf-7s-PrRrM_Zqxfcj6r-lU-DA3kNwLFbiLXBXPgjvENzbTyEY3jCGu&&reportAbuse=true\"><strong>Report Abuse</strong></a></span>\r\n    </p>\r\n                                      <p style=\"margin-bottom: 18px\">&copy; 2025 Adobe. All rights reserved.</p>\r\n\r\n                                                                      </td>\r\n              </tr>\r\n            </table>\r\n          </td>\r\n        </tr>\r\n            </table>\r\n    </center>\r\n        </body>\r\n</html>','  \r\n\r\n\r\n\r\n\r\n\r\n  \r\n  \r\n\r\n    \r\n\r\n    body, table, div, td, p {\r\n    font-family: adobe, adobe-clean, \"Source Sans Pro\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, sans-serif;\r\n    color: #2C2C2C;\r\n    font-weight: 300;\r\n  }\r\n\r\n    p {\r\n    margin: 0;\r\n    padding: 0;\r\n  }\r\n\r\n    a {\r\n    border: none;\r\n  }\r\n\r\n    a, a:link, a:visited, a:hover, a:active {\r\n    color: #1473e6;\r\n    text-decoration: none;\r\n    font-weight: bold;\r\n  }\r\n\r\n    .separator {\r\n    margin: 0;\r\n    border: 1px solid #CACACA;\r\n  }\r\n\r\n    img {\r\n    border:0;\r\n  }\r\n\r\n    span.e_heading {\r\n    font-size: 12px;\r\n    font-weight: bold;\r\n  }\r\n\r\n    h1 {\r\n    font-size: 28px;\r\n    font-weight: 300;\r\n    color: #6E6E6E;\r\n    padding-bottom: 5px;\r\n  }\r\n\r\n      .bodyHeading {\r\n    margin: 0;\r\n    font-size: 22px;\r\n    color: #454545;\r\n    text-align: center;\r\n  }\r\n\r\n  .footerContainer {\r\n    margin-top: 16px;\r\n    font-size: 12px;\r\n    color: #4b4b4b\r\n  }\r\n\r\n  ul {\r\n    font-size: 17px;\r\n  }\r\n\r\n  .footerContainer p {\r\n    margin-bottom: 1em;\r\n  }\r\n  \r\n\r\n\r\n\r\n\r\n  \r\n        \r\n      \r\n        \r\n                \r\n  \r\n  \r\n    \r\n    \r\n      \r\n        \r\n          \r\n            \r\n              \r\n                                                        \r\n                      \r\n                        &nbsp;\r\n                        \r\n                          \r\n                        \r\n                      \r\n                    \r\n                                                    \r\n            \r\n          \r\n        \r\n      \r\n\r\n                    \r\n                    \r\n        \r\n        &nbsp;\r\n          \r\n    \r\n  \r\n          \r\n            \r\n              \r\n     \r\n\r\n\r\n\r\n\r\n  \r\n    You&rsquo;re all done. Attached is the final agreement for your reference.\r\n  \r\n\r\n\r\n You\'re done signing  Offer Letter - Rick Mislan 11.26.2025\r\n\r\n\r\n        \r\n        \r\n                        \r\n                \r\n        \r\n        \r\n        \r\n\r\n        \r\n          \r\n            \r\n              Open agreement\r\n            \r\n          \r\n        \r\n    \r\n  \r\n\r\n\r\n\r\n    \r\n  \r\n    &nbsp;\r\n  \r\n\r\n  \r\n    \r\n      \r\n            \r\n      Attached is the final agreement for your reference.\r\n        Read it with Acrobat Reader.\r\n      \r\n  \r\n                You can also open it online to review its activity history.\r\n            \r\n  \r\n\r\n  \r\n\r\n\r\n\r\n      \r\n    \r\n  \r\n\r\n\r\n                      \r\n                \r\n                            \r\n            \r\n        \r\n        \r\n          \r\n            \r\n              \r\n                \r\n                                      \r\n                      \r\n                        \r\n                          \r\n                            \r\n                          \r\n                        \r\n                        \r\n  \r\n    &nbsp;\r\n  \r\n\r\n                      \r\n                    \r\n                                                                              Need your own documents signed? Adobe Acrobat Sign can help save you time. Learn more.\r\n  \r\n                      \r\n                  To ensure that you continue receiving our emails, please add adobesign@adobesign.com to your address book or safe list.\r\n            \r\n                                                            \r\n      Terms of Use | Report Abuse\r\n    \r\n                                      &copy; 2025 Adobe. All rights reserved.\r\n\r\n                                                                      \r\n              \r\n            \r\n          \r\n        \r\n            \r\n    \r\n        \r\n',0,0,0,0,0,0,'2025-11-27 00:18:07','2025-12-04 14:04:50','2025-12-04 14:04:50','2025-12-04 14:04:50',NULL,NULL,NULL),
(84,4,'<20251127042156.Horde.ZemdH5sYBXn_JwUed_YXqZQ@mavrix1.aponte.to>',NULL,NULL,'Talent Acquisition Workflows/Specifications for ERP','leslie@mavrix.one','Leslie Staron','<!DOCTYPE html>\r\n<html><meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\"><body>\r\n<p style=\"margin:0;\">Hi Rick,</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\">The attached documents are in-process as far as what I\'m preparing to share with you to help build this module in the Mavrix 1 ERP.  Can you take a look at the Specifications document and let me know if the details make sense and are in a format you prefer to use to build everything out?  (The Workflow document outlines the seven workflows in more detail and I\'m planning to translate to process maps using LucidChart.). Let me know your thoughts.</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\">Thank you,</p><p style=\"margin:0;\">Leslie</p>\r\n</body></html>','Hi Rick,\r\n \r\nThe attached documents are in-process as far as what I\'m preparing to share\r\nwith you to help build this module in the Mavrix 1 ERP.  Can you take a\r\nlook at the Specifications document and let me know if the details make\r\nsense and are in a format you prefer to use to build everything out?  (The\r\nWorkflow document outlines the seven workflows in more detail and I\'m\r\nplanning to translate to process maps using LucidChart.). Let me know your\r\nthoughts.\r\n \r\nThank you,\r\nLeslie',1,0,0,0,0,0,'2025-11-27 04:21:56','2025-12-04 14:04:50','2025-12-04 14:04:50','2025-12-04 16:44:20',NULL,NULL,NULL),
(85,4,'<c43aedc2-2f4d-4097-988b-3755efe6f5e8@atl1s07mta3028.xt.local>',NULL,NULL,'Welcome to TinyMCE!','team@engage.tiny.cloud','\"The TinyMCE Team\"','<!DOCTYPE html>\r\n<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\">\r\n\r\n<head>\r\n	<title></title>\r\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n	<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"><!--[if mso]>\r\n<xml><w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\"><w:DontUseAdvancedTypographyReadingMail/></w:WordDocument>\r\n<o:OfficeDocumentSettings><o:PixelsPerInch>96</o:PixelsPerInch><o:AllowPNG/></o:OfficeDocumentSettings></xml>\r\n<![endif]--><!--[if !mso]><!-->\r\n	<link href=\"https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&amp;display=swap\" rel=\"stylesheet\" type=\"text/css\"><!--<![endif]-->\r\n	<style>\r\n		* {\r\n			box-sizing: border-box;\r\n		}\r\n\r\n		body {\r\n			margin: 0;\r\n			padding: 0;\r\n		}\r\n\r\n		a[x-apple-data-detectors] {\r\n			color: inherit !important;\r\n			text-decoration: inherit !important;\r\n		}\r\n\r\n		#MessageViewBody a {\r\n			color: inherit;\r\n			text-decoration: none;\r\n		}\r\n\r\n		p {\r\n			line-height: inherit\r\n		}\r\n\r\n		.desktop_hide,\r\n		.desktop_hide table {\r\n			mso-hide: all;\r\n			display: none;\r\n			max-height: 0px;\r\n			overflow: hidden;\r\n		}\r\n\r\n		.image_block img+div {\r\n			display: none;\r\n		}\r\n\r\n		sup,\r\n		sub {\r\n			font-size: 75%;\r\n			line-height: 0;\r\n		}\r\n\r\n		#converted-body .list_block ul,\r\n		#converted-body .list_block ol,\r\n		.body [class~=\"x_list_block\"] ul,\r\n		.body [class~=\"x_list_block\"] ol,\r\n		u+.body .list_block ul,\r\n		u+.body .list_block ol {\r\n			padding-left: 20px;\r\n		}\r\n\r\n		@media (max-width:620px) {\r\n			.desktop_hide table.icons-outer {\r\n				display: inline-table !important;\r\n			}\r\n\r\n			.mobile_hide {\r\n				display: none;\r\n			}\r\n\r\n			.row-content {\r\n				width: 100% !important;\r\n			}\r\n\r\n			.stack .column {\r\n				width: 100%;\r\n				display: block;\r\n			}\r\n\r\n			.mobile_hide {\r\n				min-height: 0;\r\n				max-height: 0;\r\n				max-width: 0;\r\n				overflow: hidden;\r\n				font-size: 0px;\r\n			}\r\n\r\n			.desktop_hide,\r\n			.desktop_hide table {\r\n				display: table !important;\r\n				max-height: none !important;\r\n			}\r\n		}\r\n	</style><!--[if mso ]><style>sup, sub { font-size: 100% !important; } sup { mso-text-raise:10% } sub { mso-text-raise:-10% }</style> <![endif]-->\r\n</head>\r\n\r\n<body class=\"body\" style=\"background-color: #ffffff; margin: 0; padding: 0; -webkit-text-size-adjust: none; text-size-adjust: none;\">\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"nl-container\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\" width=\"100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td>\r\n			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row row-1\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\" width=\"100%\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row-content stack\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n							<tbody>\r\n								<tr>\r\n									<td class=\"column column-1\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; vertical-align: top;\" width=\"100%\">\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"paragraph_block block-1\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n												<div style=\"color:#233477;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:14px;font-weight:300;letter-spacing:0px;line-height:1.5;text-align:center;mso-line-height-alt:21px;\">\r\n												<p style=\"margin: 0;\">Is this email not displaying correctly? <a href=\"https://pi.tiny.cloud/webmail/2202/1912781293/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864\" style=\"text-decoration: underline; color: #335dff;\">View it in your browser</a></p>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n\r\n			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row row-2\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\" width=\"100%\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row-content stack\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #fff; border-radius: 0; color: #000000; background-image: url(\'https://www2.ephox.com/l/2202/2022-04-08/d7rkxs/2202/16494577477vaj40mw/3._Illustration__no_text__2x.png\'); background-repeat: no-repeat; background-size: cover; width: 600px; margin: 0 auto;\" width=\"600\">\r\n							<tbody>\r\n								<tr>\r\n									<td class=\"column column-1\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\" width=\"50%\">\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"image_block block-1\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:20px;padding-left:40px;padding-right:40px;padding-top:30px;width:100%;\">\r\n												<div align=\"left\" class=\"alignment\">\r\n												<div style=\"max-width: 90px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xf7/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" target=\"_blank\"><img alt=\"Tiny logo\" height=\"auto\" src=\"https://www2.ephox.com/l/2202/2021-02-22/d55tdv/2202/16140490780zkI7GHy/logo_tiny__lock_secondary.png\" style=\"display: block; height: auto; border: 0; width: 100%;\" title=\"Tiny logo\" width=\"90\"></a></div>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<div class=\"spacer_block block-2 mobile_hide\" style=\"height:40px;line-height:40px;font-size:1px;\"> </div>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"heading_block block-3\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:10px;text-align:center;width:100%;\">\r\n												<h1 style=\"margin: 0; color: #17224f; direction: ltr; font-family: \'Inter\',\'Arial\'; font-size: 26px; font-weight: 600; letter-spacing: normal; line-height: 1.2; text-align: left; margin-top: 0; margin-bottom: 0; mso-line-height-alt: 31px;\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">Welcome to TinyMCE!</span></h1>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<div class=\"spacer_block block-4 mobile_hide\" style=\"height:50px;line-height:50px;font-size:1px;\"> </div>\r\n									</td>\r\n									<td class=\"column column-2\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\" width=\"50%\">\r\n									<div class=\"spacer_block block-1 mobile_hide\" style=\"height:60px;line-height:60px;font-size:1px;\"> </div>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n\r\n			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row row-3\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\" width=\"100%\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row-content stack\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #fff; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n							<tbody>\r\n								<tr>\r\n									<td class=\"column column-1\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\" width=\"100%\">\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"paragraph_block block-1\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-left:40px;padding-right:40px;padding-top:20px;\">\r\n												<div style=\"color:#202533;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:200;letter-spacing:0px;line-height:1.8;text-align:left;mso-line-height-alt:29px;\">\r\n												<p style=\"margin: 0; margin-bottom: 16px;\"><strong>Ready to get started?</strong></p>\r\n\r\n												<p style=\"margin: 0;\">You’re only a few steps away from getting TinyMCE up and running in your website or app:</p>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"list_block block-2\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word; color: #202533; direction: ltr; font-family: \'Inter\',\'Arial\'; font-size: 16px; font-weight: 200; letter-spacing: 0px; line-height: 1.8; text-align: left; mso-line-height-alt: 29px;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:10px;padding-left:60px;padding-right:40px;padding-top:10px;\">\r\n												<div style=\"margin-left:-20px\">\r\n												<ol style=\"margin-top: 0; margin-bottom: 0; list-style-type: decimal;\">\r\n													<li aria-level=\"1\" style=\"Margin: 0 0 0 0;\"><a href=\"https://pi.tiny.cloud/e/2202/-campaign-onboarding-free-html/dk6xcx/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: underline; color: #335dff;\">Log into </a>the Customer Portal&nbsp;</li>\r\n													<li aria-level=\"1\" style=\"Margin: 0 0 0 0;\">Add the TinyMCE code snippet to your project (this snippet will contain your API key)</li>\r\n													<li aria-level=\"1\" style=\"Margin: 0 0 0 0;\">Add your website or project URL to the “Approved Domains” section of the Customer Portal</li>\r\n													<li aria-level=\"1\" style=\"Margin: 0 0 0 0;\">Start building! 🎉</li>\r\n												</ol>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"paragraph_block block-3\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:30px;padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n												<div style=\"color:#202533;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:200;letter-spacing:0px;line-height:1.8;text-align:left;mso-line-height-alt:29px;\">\r\n												<p style=\"margin: 0;\"><strong>Need more in-depth instructions?</strong><br>\r\n												Follow one of our guides or simply forward this email to your developer.<br>\r\n												<a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xd1/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" rel=\"noopener\" style=\"text-decoration: underline; color: #335dff;\" target=\"_blank\"><strong>Cloud-hosted Quick-start guide →</strong></a></p>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n\r\n			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row row-4\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\" width=\"100%\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row-content stack\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f9f9fb; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n							<tbody>\r\n								<tr>\r\n									<td class=\"column column-1\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\" width=\"100%\">\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"heading_block block-1\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:30px;text-align:center;width:100%;\">\r\n												<h1 style=\"margin: 0; color: #17224f; direction: ltr; font-family: \'Inter\',\'Arial\'; font-size: 20px; font-weight: 600; letter-spacing: normal; line-height: 1.5; text-align: center; margin-top: 0; margin-bottom: 0; mso-line-height-alt: 30px;\">Take advantage of your free trial!</h1>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"paragraph_block block-2\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n												<div style=\"color:#202533;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:300;letter-spacing:0px;line-height:1.8;text-align:left;mso-line-height-alt:29px;\">\r\n												<p style=\"margin: 0; margin-bottom: 16px;\"><strong>For the next 14 days, enjoy full access to TinyMCE’s most powerful features</strong> — including <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xd4/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: underline; color: #335dff;\">PowerPaste</a>, <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xd7/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: underline; color: #335dff;\">Spell Checker</a>, <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdb/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: underline; color: #335dff;\">Merge Tags</a>, <a\r\nhref=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdf/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: underline; color: #335dff;\">Comments</a>, and more. It’s your chance to test the editor’s full potential and see how it performs with your most complex use cases.</p>\r\n\r\n												<p style=\"margin: 0; margin-bottom: 16px;\">Plus, don’t miss out on our most popular premium add-ons:<a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdj/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: underline; color: #335dff;\" target=\"_self\">AI Assistant</a>, <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdm/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: underline; color: #335dff;\">Document Converters</a>, <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdq/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: underline; color: #335dff;\" target=\"_self\">Revision History</a>, <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdt/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\"\r\nstyle=\"text-decoration: underline; color: #335dff;\" target=\"_self\">Suggested Edits</a>, and <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdx/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: underline; color: #335dff;\" target=\"_self\">Image Optimizer</a> — all available to try free for 14 days.</p>\r\n\r\n												<p style=\"margin: 0;\">After the 14-day trial, you\'ll have the option to <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xf1/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" rel=\"noopener\" style=\"text-decoration: underline; color: #335dff;\" target=\"_blank\">upgrade</a> or stay on our free plan.</p>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"paragraph_block block-3\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:40px;padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n												<div style=\"color:#202533;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:14px;font-weight:200;letter-spacing:0px;line-height:1.8;text-align:left;mso-line-height-alt:25px;\">\r\n												<p style=\"margin: 0;\">Please note that our Free Plan is limited to 1,000 editor loads per month. If you exceed this monthly limit, you’ll automatically be charged $40 USD for every block of 1,000 editor loads you go over. To learn more about our usage-based billing model and how to track your editor loads, <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xf4/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: underline; color: #335dff;\">visit our FAQ</a>.</p>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n\r\n			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row row-5\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\" width=\"100%\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row-content stack\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #0c132c; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n							<tbody>\r\n								<tr>\r\n									<td class=\"column column-1\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\" width=\"100%\">\r\n									<div class=\"spacer_block block-1\" style=\"height:40px;line-height:40px;font-size:1px;\"> </div>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"icons_block block-2\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center; line-height: 0;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"vertical-align: middle; color: #000000; font-family: inherit; font-size: 14px; font-weight: 400; padding-left: 40px; padding-right: 40px; text-align: center;\">\r\n												<table cellpadding=\"0\" cellspacing=\"0\" class=\"icons-outer\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; display: inline-table;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 10px; padding-right: 20px;\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xfb/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: none;\" target=\"_self\"><img align=\"center\" alt=\"facebook\" class=\"icon\" height=\"auto\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld41/2202/1724751073mZ9u0qBj/icons8_facebook_96.png\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\" width=\"32\"></a></td>\r\n															<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 20px;\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xff/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: none;\" target=\"_self\"><img align=\"center\" alt=\"twitter\" class=\"icon\" height=\"auto\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld54/2202/17247512213yTqKMau/Twitter_X_icon_white.png\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\" width=\"32\"></a></td>\r\n															<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 20px;\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xfj/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: none;\" target=\"_self\"><img align=\"center\" alt=\"linkedin\" class=\"icon\" height=\"auto\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld4m/2202/1724751160RDTHTZoS/icons8_linkedin_104.png\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\" width=\"32\"></a></td>\r\n															<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 20px;\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xfm/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: none;\" target=\"_self\"><img align=\"center\" alt=\"stack overflow\" class=\"icon\" height=\"auto\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld4x/2202/1724751181bzH3aYSZ/icons8_stack_overflow_100.png\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\" width=\"32\"></a></td>\r\n															<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 10px;\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xfq/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: none;\" target=\"_self\"><img align=\"center\" alt=\"github\" class=\"icon\" height=\"auto\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld4j/2202/1724751125SZG76c9m/icons8_github_96.png\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\" width=\"32\"></a></td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"paragraph_block block-3\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:20px;padding-left:40px;padding-right:40px;padding-top:20px;\">\r\n												<div style=\"color:#ffffff;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:14px;font-weight:200;letter-spacing:0px;line-height:1.5;text-align:center;mso-line-height-alt:21px;\">\r\n												<p style=\"margin: 0;\">This email was sent to rick@mavrix.one<br>\r\n												<br>\r\n												Update your <a href=\"https://pi.tiny.cloud/emailPreference/epc/2202/OwooexGNC2EurXPJhSvAZVuY7krFh_sSRZUN3viuI9A/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1912781293\" style=\"text-decoration: underline; color: #fff;\">email preferences</a> or <a href=\"https://pi.tiny.cloud/unsubscribe/u/2202/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1912781293\" style=\"text-decoration: underline; color: #fff;\">unsubscribe</a><br>\r\n												<br>\r\n												© 2025 Tiny Technologies | All rights reserved<br>\r\n												www.tiny.cloud | View our <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xft/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: underline; color: #fff;\">privacy policy</a><br>\r\n												2100 Geng Road, Palo Alto, CA 94303 USA</p>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<div class=\"spacer_block block-4\" style=\"height:40px;line-height:40px;font-size:1px;\"> </div>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n<!-- End -->\r\n<img alt=\"\" src=\"https://pi.tiny.cloud/r/2202/1/1912781293/open/1\" /></body>\r\n\r\n</html>','Activate your API key and start using TinyMCE inside your app\r\n\r\nIs this email not displaying correctly? View it in your browser (https://pi.tiny.cloud/webmail/2202/1912781293/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864)\r\n\r\n\r\n** Welcome to TinyMCE!\r\n------------------------------------------------------------\r\n \r\n Ready to get started?\r\n\r\nYou’re only a few steps away from getting TinyMCE up and running in your website or app:\r\n1. Log into (https://pi.tiny.cloud/e/2202/-campaign-onboarding-free-html/dk6xcx/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk) the Customer Portal\r\n2. Add the TinyMCE code snippet to your project (this snippet will contain your API key)\r\n3. Add your website or project URL to the “Approved Domains” section of the Customer Portal\r\n4. Start building! 🎉\r\n\r\nNeed more in-depth instructions?\r\nFollow one of our guides or simply forward this email to your developer.\r\nCloud-hosted Quick-start guide → (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xd1/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk)\r\n\r\n\r\n** Take advantage of your free trial!\r\n------------------------------------------------------------\r\n\r\nFor the next 14 days, enjoy full access to TinyMCE’s most powerful features — including PowerPaste (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xd4/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk) , Spell Checker (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xd7/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk) , Merge Tags (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdb/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk) , Comments (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdf/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk) , and more. It’s your chance to test the editor’s full potential and see how it performs with your most complex use cases.\r\n\r\nPlus, don’t miss out on our most popular premium add-ons:AI Assistant (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdj/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk) , Document Converters (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdm/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk) , Revision History (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdq/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk) , Suggested Edits (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdt/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk) , and Image Optimizer (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdx/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk) — all available to try free for 14 days.\r\n\r\nAfter the 14-day trial, you\'ll have the option to upgrade (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xf1/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk) or stay on our free plan.\r\n\r\nPlease note that our Free Plan is limited to 1,000 editor loads per month. If you exceed this monthly limit, you’ll automatically be charged $40 USD for every block of 1,000 editor loads you go over. To learn more about our usage-based billing model and how to track your editor loads, visit our FAQ (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xf4/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk) .\r\n \r\n\r\nhttps://pi.tiny.cloud/e/2202/jointiny-/dc7czr/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\r\nhttps://pi.tiny.cloud/e/2202/jointiny/dc7czv/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\r\nhttps://pi.tiny.cloud/e/2202/company-jointiny-/dc7czy/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\r\nhttps://pi.tiny.cloud/e/2202/search-q-23tinymce/dc7d12/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\r\nhttps://pi.tiny.cloud/e/2202/tinymce/dc7d15/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\r\n\r\nThis email was sent to rick@mavrix.one\r\nUpdate your email preferences\r\nhttps://pi.tiny.cloud/emailPreference/epc/2202/OwooexGNC2EurXPJhSvAZVuY7krFh_sSRZUN3viuI9A/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1912781293\r\n or unsubscribe\r\nhttps://pi.tiny.cloud/unsubscribe/u/2202/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1912781293\r\n\r\n© 2025 Tiny Technologies | All rights reserved\r\nwww.tiny.cloud | View our privacy policy\r\nhttps://pi.tiny.cloud/e/2202/legal-privacy/dc7d18/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\r\n2100 Geng Road, Palo Alto, CA 94303 USA',0,0,0,0,0,0,'2025-11-27 12:37:31','2025-12-04 14:04:51','2025-12-04 14:04:51','2025-12-04 14:04:51',NULL,NULL,NULL),
(86,4,'<c9dec377-c3df-476b-8f9d-525b6ebcba5c@atl1s07mta3030.xt.local>',NULL,NULL,'Need help getting started with TinyMCE?','support@tiny.cloud','\"The TinyMCE Support Team\"','<!DOCTYPE html>\r\n<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\">\r\n\r\n<head>\r\n	<title></title>\r\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n	<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"><!--[if mso]>\r\n<xml><w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\"><w:DontUseAdvancedTypographyReadingMail/></w:WordDocument>\r\n<o:OfficeDocumentSettings><o:PixelsPerInch>96</o:PixelsPerInch><o:AllowPNG/></o:OfficeDocumentSettings></xml>\r\n<![endif]--><!--[if !mso]><!-->\r\n	<link href=\"https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&amp;display=swap\" rel=\"stylesheet\" type=\"text/css\">\r\n	<link href=\"https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&amp;display=swap\" rel=\"stylesheet\" type=\"text/css\"><!--<![endif]-->\r\n	<style>\r\n		* {\r\n			box-sizing: border-box;\r\n		}\r\n\r\n		body {\r\n			margin: 0;\r\n			padding: 0;\r\n		}\r\n\r\n		a[x-apple-data-detectors] {\r\n			color: inherit !important;\r\n			text-decoration: inherit !important;\r\n		}\r\n\r\n		#MessageViewBody a {\r\n			color: inherit;\r\n			text-decoration: none;\r\n		}\r\n\r\n		p {\r\n			line-height: inherit\r\n		}\r\n\r\n		.desktop_hide,\r\n		.desktop_hide table {\r\n			mso-hide: all;\r\n			display: none;\r\n			max-height: 0px;\r\n			overflow: hidden;\r\n		}\r\n\r\n		.image_block img+div {\r\n			display: none;\r\n		}\r\n\r\n		sup,\r\n		sub {\r\n			font-size: 75%;\r\n			line-height: 0;\r\n		}\r\n\r\n		#converted-body .list_block ul,\r\n		#converted-body .list_block ol,\r\n		.body [class~=\"x_list_block\"] ul,\r\n		.body [class~=\"x_list_block\"] ol,\r\n		u+.body .list_block ul,\r\n		u+.body .list_block ol {\r\n			padding-left: 20px;\r\n		}\r\n\r\n		@media (max-width:620px) {\r\n			.desktop_hide table.icons-outer {\r\n				display: inline-table !important;\r\n			}\r\n\r\n			.mobile_hide {\r\n				display: none;\r\n			}\r\n\r\n			.row-content {\r\n				width: 100% !important;\r\n			}\r\n\r\n			.stack .column {\r\n				width: 100%;\r\n				display: block;\r\n			}\r\n\r\n			.mobile_hide {\r\n				min-height: 0;\r\n				max-height: 0;\r\n				max-width: 0;\r\n				overflow: hidden;\r\n				font-size: 0px;\r\n			}\r\n\r\n			.desktop_hide,\r\n			.desktop_hide table {\r\n				display: table !important;\r\n				max-height: none !important;\r\n			}\r\n		}\r\n	</style><!--[if mso ]><style>sup, sub { font-size: 100% !important; } sup { mso-text-raise:10% } sub { mso-text-raise:-10% }</style> <![endif]-->\r\n</head>\r\n\r\n<body class=\"body\" style=\"background-color: #ffffff; margin: 0; padding: 0; -webkit-text-size-adjust: none; text-size-adjust: none;\">\r\n	<table class=\"nl-container\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\">\r\n		<tbody>\r\n			<tr>\r\n				<td>\r\n					<table class=\"row row-1\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\">\r\n						<tbody>\r\n							<tr>\r\n								<td>\r\n									<table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; vertical-align: top;\">\r\n													<table class=\"paragraph_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n																<div style=\"color:#233477;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:14px;font-weight:300;letter-spacing:0px;line-height:1.5;text-align:center;mso-line-height-alt:21px;\">\r\n																	<p style=\"margin: 0;\">Is this email not displaying correctly? <a href=\"https://pi.tiny.cloud/webmail/2202/1916976913/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864\" style=\"text-decoration: underline; color: #335dff;\">View it in your browser</a></p>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n								</td>\r\n							</tr>\r\n						</tbody>\r\n					</table>\r\n					<table class=\"row row-2\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\">\r\n						<tbody>\r\n							<tr>\r\n								<td>\r\n									<table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #fff; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\">\r\n													<table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:20px;padding-left:40px;padding-right:40px;padding-top:30px;width:100%;\">\r\n																<div class=\"alignment\" align=\"left\">\r\n																	<div style=\"max-width: 90px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xnx/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\" target=\"_blank\"><img src=\"https://www2.ephox.com/l/2202/2021-02-22/d55tdv/2202/16140490780zkI7GHy/logo_tiny__lock_secondary.png\" style=\"display: block; height: auto; border: 0; width: 100%;\" width=\"90\" alt=\"Tiny logo\" title=\"Tiny logo\" height=\"auto\"></a></div>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n								</td>\r\n							</tr>\r\n						</tbody>\r\n					</table>\r\n					<table class=\"row row-3\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\">\r\n						<tbody>\r\n							<tr>\r\n								<td>\r\n									<table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #fff; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\">\r\n													<table class=\"paragraph_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n																<div style=\"color:#202533;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:200;letter-spacing:0px;line-height:1.8;text-align:left;mso-line-height-alt:29px;\">\r\n																	<p style=\"margin: 0;\">Hi Rick,<br><br>Allow me to introduce myself – I\'m Michael, TinyMCE\'s VP of Customer Success.<br><br>One of the benefits included in your 14-day FREE trial, is full access to our US-based support team. We\'re here to help you navigate all things TinyMCE, so please don\'t hesitate to submit a support request if you\'re having any challenges.</p>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n													<table class=\"button_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:30px;padding-left:40px;padding-right:40px;padding-top:10px;text-align:left;\">\r\n																<div class=\"alignment\" align=\"left\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xp1/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\" target=\"_blank\" style=\"color:#ffffff;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://support.tiny.cloud/hc/en-us/?_ga=2.21070523.1869188763.1678152539-1987605419.1678152539&utm_medium=email&utm_source=email&utm_campaign=onboarding_free\"  style=\"height:46px;width:300px;v-text-anchor:middle;\" arcsize=\"0%\" fillcolor=\"#335dff\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"0px\" color=\"#335dff\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#ffffff;font-family:sans-serif;font-size:16px\">\r\n<![endif]--><span class=\"button\" style=\"background-color: #335dff; border-bottom: 0px solid transparent; border-left: 0px solid transparent; border-radius: 0px; border-right: 0px solid transparent; border-top: 0px solid transparent; color: #ffffff; display: inline-block; font-family: \'Fira Code\',\'Arial\'; font-size: 16px; font-weight: 500; mso-border-alt: none; padding-bottom: 7px; padding-top: 7px; padding-left: 22px; padding-right: 22px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 32px;\">Submit a support request →</span></span><!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n								</td>\r\n							</tr>\r\n						</tbody>\r\n					</table>\r\n					<table class=\"row row-4\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\">\r\n						<tbody>\r\n							<tr>\r\n								<td>\r\n									<table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f9f9fb; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\">\r\n													<table class=\"paragraph_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:30px;\">\r\n																<div style=\"color:#202533;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:200;letter-spacing:0px;line-height:1.8;text-align:left;mso-line-height-alt:29px;\">\r\n																	<p style=\"margin: 0;\"><strong>Have you added the TinyMCE code snippet?</strong></p>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n													<table class=\"list_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word; color: #202533; direction: ltr; font-family: \'Inter\',\'Arial\'; font-size: 16px; font-weight: 200; letter-spacing: 0px; line-height: 1.8; text-align: left; mso-line-height-alt: 29px;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:10px;padding-left:60px;padding-right:40px;padding-top:10px;\">\r\n																<div style=\"margin-left:-20px\">\r\n																	<ul start=\"1\" style=\"margin-top: 0; margin-bottom: 0; list-style-type: revert;\">\r\n																		<li style=\"Margin: 0 0 0 0;\"><a href=\"https://pi.tiny.cloud/e/2202/-campaign-onboarding-free-html/dk6xnq/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\" target=\"_blank\" style=\"text-decoration: underline; color: #335dff;\" rel=\"noopener\">Log into the Customer Portal</a></li>\r\n																		<li style=\"Margin: 0 0 0 0;\">Add the TinyMCE code snippet to your project (this snippet will contain your API key)</li>\r\n																		<li style=\"Margin: 0 0 0 0;\">Add your website or project URL to the \"Approved Domains\" section of the Customer Portal</li>\r\n																		<li style=\"Margin: 0 0 0 0;\">Start building! 🎉</li>\r\n																	</ul>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n													<table class=\"paragraph_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:20px;padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n																<div style=\"color:#202533;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:200;letter-spacing:0px;line-height:1.8;text-align:left;mso-line-height-alt:29px;\">\r\n																	<p style=\"margin: 0;\"><strong>Get started with TinyMCE in under two minutes!</strong></p>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n													<table class=\"image_block block-4\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:40px;padding-left:40px;padding-right:40px;padding-top:5px;width:100%;\">\r\n																<div class=\"alignment\" align=\"center\">\r\n																	<div style=\"max-width: 520px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xp4/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\" target=\"_blank\"><img src=\"https://pi.tiny.cloud/l/2202/2025-08-06/dk6xm1/2202/1754474433kSFRYfpH/under_2_minutes.png\" style=\"display: block; height: auto; border: 0; width: 100%;\" width=\"520\" alt=\"Video: Set up TinyMCE in under 2 minutes\" title=\"Video: Set up TinyMCE in under 2 minutes\" height=\"auto\"></a></div>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n								</td>\r\n							</tr>\r\n						</tbody>\r\n					</table>\r\n					<table class=\"row row-5\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\">\r\n						<tbody>\r\n							<tr>\r\n								<td>\r\n									<table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #0c132c; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\">\r\n													<div class=\"spacer_block block-1\" style=\"height:40px;line-height:40px;font-size:1px;\">&#8202;</div>\r\n													<table class=\"icons_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center; line-height: 0;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"vertical-align: middle; color: #000000; font-family: inherit; font-size: 14px; font-weight: 400; padding-left: 40px; padding-right: 40px; text-align: center;\">\r\n																<table class=\"icons-outer\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; display: inline-table;\">\r\n																	<tr>\r\n																		<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 10px; padding-right: 20px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xp7/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\" target=\"_self\" style=\"text-decoration: none;\"><img class=\"icon\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld41/2202/1724751073mZ9u0qBj/icons8_facebook_96.png\" alt=\"facebook\" height=\"auto\" width=\"32\" align=\"center\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\"></a></td>\r\n																		<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 20px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xpb/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\" target=\"_self\" style=\"text-decoration: none;\"><img class=\"icon\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld54/2202/17247512213yTqKMau/Twitter_X_icon_white.png\" alt=\"twitter\" height=\"auto\" width=\"32\" align=\"center\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\"></a></td>\r\n																		<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 20px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xpf/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\" target=\"_self\" style=\"text-decoration: none;\"><img class=\"icon\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld4m/2202/1724751160RDTHTZoS/icons8_linkedin_104.png\" alt=\"linkedin\" height=\"auto\" width=\"32\" align=\"center\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\"></a></td>\r\n																		<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 20px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xpj/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\" target=\"_self\" style=\"text-decoration: none;\"><img class=\"icon\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld4x/2202/1724751181bzH3aYSZ/icons8_stack_overflow_100.png\" alt=\"stack overflow\" height=\"auto\" width=\"32\" align=\"center\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\"></a></td>\r\n																		<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 10px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xpm/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\" target=\"_self\" style=\"text-decoration: none;\"><img class=\"icon\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld4j/2202/1724751125SZG76c9m/icons8_github_96.png\" alt=\"github\" height=\"auto\" width=\"32\" align=\"center\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\"></a></td>\r\n																	</tr>\r\n																</table>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n													<table class=\"paragraph_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:20px;padding-left:40px;padding-right:40px;padding-top:20px;\">\r\n																<div style=\"color:#ffffff;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:14px;font-weight:200;letter-spacing:0px;line-height:1.5;text-align:center;mso-line-height-alt:21px;\">\r\n																	<p style=\"margin: 0;\">This email was sent to rick@mavrix.one<br><br>Update your <a href=\"https://pi.tiny.cloud/emailPreference/epc/2202/2_9lXLUkdcfHuO_vk6yjhJIo30xuraj6Zc_PHvmLPaU/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1916976913\" style=\"text-decoration: underline; color: #fff;\">email preferences</a> or <a href=\"https://pi.tiny.cloud/unsubscribe/u/2202/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1916976913\" style=\"text-decoration: underline; color: #fff;\">unsubscribe</a><br><br>© 2025 Tiny Technologies | All rights reserved<br>www.tiny.cloud | View our <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xpq/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\" style=\"text-decoration: underline; color: #fff;\">privacy policy</a><br>2100 Geng Road, Palo Alto, CA 94303 USA</p>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n													<div class=\"spacer_block block-4\" style=\"height:40px;line-height:40px;font-size:1px;\">&#8202;</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n								</td>\r\n							</tr>\r\n						</tbody>\r\n					</table>\r\n				</td>\r\n			</tr>\r\n		</tbody>\r\n	</table><!-- End -->\r\n<img alt=\"\" src=\"https://pi.tiny.cloud/r/2202/1/1916976913/open/1\" /></body>\r\n\r\n</html>','\r\nIn case you need help getting started\r\n\r\nhttps://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dc7d1c/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\r\n\r\n\r\nHi Rick,\r\n\r\nAllow me to introduce myself – I\'m Michael, TinyMCE\'s VP of Customer Success.\r\n\r\nOne of the benefits included in your 14-day FREE trial, is full access to our US-based support team. We\'re here to help you navigate all things TinyMCE, so please don\'t hesitate to submit a support request if you\'re having any challenges.\r\nSubmit a support request → (https://pi.tiny.cloud/e/2202/78152539-1987605419-1678152539/dc7d1g/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg)\r\n\r\nHave you added the TinyMCE code snippet?\r\n* Log into the Customer Portal (https://pi.tiny.cloud/e/2202/-campaign-onboarding-free-html/dk6xnq/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg)\r\n* Add the TinyMCE code snippet to your project (this snippet will contain your API key)\r\n* Add your website or project URL to the \"Approved Domains\" section of the Customer Portal\r\n* Start building! 🎉\r\n\r\nGet started with TinyMCE in under two minutes!\r\nhttps://pi.tiny.cloud/e/2202/PofZbdLbASE-feature-shared/dk6xnt/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\r\n\r\nhttps://pi.tiny.cloud/e/2202/jointiny-/dc7d1k/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\r\nhttps://pi.tiny.cloud/e/2202/jointiny/dc7d1n/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\r\nhttps://pi.tiny.cloud/e/2202/company-jointiny-/dc7d1r/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\r\nhttps://pi.tiny.cloud/e/2202/search-q-23tinymce/dc7d1v/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\r\nhttps://pi.tiny.cloud/e/2202/tinymce/dc7d1y/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\r\n\r\nThis email was sent to rick@mavrix.one\r\nUpdate your email preferences\r\nhttps://pi.tiny.cloud/emailPreference/epc/2202/2_9lXLUkdcfHuO_vk6yjhJIo30xuraj6Zc_PHvmLPaU/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1916976913\r\n or unsubscribe\r\nhttps://pi.tiny.cloud/unsubscribe/u/2202/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1916976913\r\n\r\n2025 Tiny Technologies | All rights reserved\r\nwww.tiny.cloud | View our privacy policy: https://pi.tiny.cloud/e/2202/legal-privacy/dc7d22/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\r\n2100 Geng Road, Palo Alto, CA 94303 USA',0,0,0,0,0,0,'2025-11-29 12:50:15','2025-12-04 14:04:51','2025-12-04 14:04:51','2025-12-04 14:04:51',NULL,NULL,NULL),
(87,4,'<96471B41-CC7C-4A42-BC24-BF0DF151EED5@lithiumbatterycompany.com>',NULL,NULL,'***SPAM***  Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body dir=\"auto\">Hi James,<div><br></div><div>I am out of town as well. &nbsp;How does your Wednesday look?&nbsp;</div><div><br></div><div>Looking forward to catching up.</div><div><br></div><div><br id=\"lineBreakAtBeginningOfSignature\"><div dir=\"ltr\"><p style=\"margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Jordan G. Wroblewski</span></p><p style=\"margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Partner | President&nbsp;<br></span></p><p style=\"margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Lithium Battery Company</span></p><p style=\"margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Direct:&nbsp;<span dir=\"ltr\">(917) 266-5336</span><br></span></p><p style=\"margin: 0in;\"><u style=\"background-color: rgba(255, 255, 255, 0);\">jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"margin: 0px;\">@lithiumbatterycompany.com</a></u></p><p style=\"margin: 0in;\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\" style=\"caret-color: rgb(255, 255, 255); background-color: rgba(255, 255, 255, 0);\"><font color=\"#ffffff\">Lithium Battery Company</font></a></p><p style=\"margin: 0in;\"></p><p style=\"margin: 0in;\"></p></div><div dir=\"ltr\"><br><blockquote type=\"cite\">On Oct 16, 2025, at 9:20 AM, James Trevey &lt;jtrevey@forgenano.com&gt; wrote:<br><br></blockquote></div><blockquote type=\"cite\"><div dir=\"ltr\">﻿\r\n\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n\r\n\r\n\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nHey Jordan,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nApologies for the slow/no replies recently. Travel has been brutal.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nWe\'ve got a lot of the information ready for you. Can we schedule a call to do a walk through on Monday the 20th at 9am or 10am ET?</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nJames</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b> Thursday, October 16, 2025 9:16 AM<br>\r\n<b>To:</b> James Trevey &lt;jtrevey@forgenano.com&gt;<br>\r\n<b>Cc:</b> Daniel &lt;dansheridanmusic@gmail.com&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div dir=\"auto\">Hi James,\r\n<div><br>\r\n</div>\r\n<div>Would be great to get some pricing and spec sheets.&nbsp;</div>\r\n<div><br>\r\n</div>\r\n<div>Let me know when we can connect.&nbsp;</div>\r\n<div><br>\r\n</div>\r\n<div>Best,</div>\r\n<div><br id=\"x_lineBreakAtBeginningOfSignature\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Direct:&nbsp;<span dir=\"ltr\">(917) 266-5336</span><br>\r\n</span></p>\r\n<p style=\"margin:0in\"><u style=\"background-color:rgba(255,255,255,0)\">jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"margin:0px\">@lithiumbatterycompany.com</a></u></p>\r\n<p style=\"margin:0in\"><a href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,kruzcWrtQAWBE_Wzkk5ZCPi8egnieSOSjhsFO2fIO_mt3sy1dInRgNFjLY-Xwbk4dmY7rgbxINSGlle76-Yg-vEcypX9dPm0sX9KSwuuDZUbmg,,&amp;typo=1\" target=\"_blank\" style=\"background-color:rgba(255,255,255,0)\"><font color=\"#ffffff\">Lithium\r\n Battery Company</font></a></p>\r\n<p style=\"margin:0in\"></p>\r\n<p style=\"margin:0in\"></p>\r\n</div>\r\n<div dir=\"ltr\"><br>\r\n<blockquote type=\"cite\">On Sep 30, 2025, at 4:31 PM, Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt; wrote:<br>\r\n<br>\r\n</blockquote>\r\n</div>\r\n<blockquote type=\"cite\">\r\n<div dir=\"ltr\">﻿\r\n<div dir=\"ltr\">\r\n<div dir=\"ltr\">\r\n<div>Hi James,</div>\r\n<div><br>\r\n</div>\r\n<div>\r\n<div>\r\n<div>I have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.</div>\r\n</div>\r\n<div><br>\r\n</div>\r\n</div>\r\n<div>Looking forward to our discussion and seeing your deck of prospective projects.&nbsp;&nbsp;</div>\r\n<div><br>\r\n</div>\r\n<div>Best,&nbsp;</div>\r\n<div>\r\n<div dir=\"ltr\" class=\"x_gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\"><br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,KG7OlMyZO9jbLU5vTJ3I8lMhBaHdNf06-ktzHMDOUSoCImrfUczbXUj1d1VcQUh_ApKsyrkLO9FO7PzcinsYewUWoskpuT9EKlrhqSI22A,,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n</div>\r\n<br>\r\n<div class=\"x_gmail_quote x_gmail_quote_container\">\r\n<div dir=\"ltr\" class=\"x_gmail_attr\">On Fri, Sep 26, 2025 at 4:59 PM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote class=\"x_gmail_quote\" style=\"margin:0px 0px 0px 0.8ex; border-left:1px solid rgb(204,204,204); padding-left:1ex\">\r\n<div class=\"x_msg7859046138643783182\">\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI won\'t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products.&nbsp;</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI\'ll send to you as soon as I can next week.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_m_7859046138643783182appendonsend\"></div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block; width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 24, 2025 10:49 AM<br>\r\n<b>To:</b>&nbsp;Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI also have a verbal matter we can discuss soon. Once I\'ve got the deck ready I\'ll find time for a short call with you.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nTalk soon.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJames</div>\r\n<div id=\"x_m_7859046138643783182x_appendonsend\"></div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_m_7859046138643783182x_divRplyFwdMsg\">\r\n<div style=\"direction:ltr\"><span style=\"font-family:Calibri,sans-serif; font-size:11pt; color:black\"><b>From:</b>&nbsp;Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 24, 2025 10:07 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</span>\r\n</div>\r\n<div style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for the follow up.&nbsp; You were on my list to contact today!&nbsp;&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Would that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I will let you know if I will be able to make it up to Detroit for The Battery Show.&nbsp;&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to seeing the deck.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">All the best,&nbsp;</div>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_7859046138643783182OWA90d54842-2faf-de90-7a8d-72df2faa57c2\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_7859046138643783182OWA0e5fa4bd-9870-58c4-8622-78d4cf24a810\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 24, 2025 at 11:59 AM James Trevey &lt;<a id=\"x_m_7859046138643783182OWAb7c381dc-96e5-45d0-b93e-e2aa9a01935f\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; padding-left:1ex; border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nHey Jordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nThank you for the quick follow up.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we\'ve decided we\'d like to provide information on additional products to you which are typically not on the menu but I have details\r\n to sort first.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nRegarding shows, happy to discuss when ready. We\'ll be at The Battery Show in 2 weeks, which I think you should consider attending and I\'d be happy to connect while there.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJames</div>\r\n<div id=\"x_m_7859046138643783182x_x_m_-6814561645313625911appendonsend\"></div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_m_7859046138643783182x_x_m_-6814561645313625911divRplyFwdMsg\">\r\n<div style=\"direction:ltr\"><span style=\"font-family:Calibri,sans-serif; font-size:11pt; color:black\"><b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_7859046138643783182OWAb0d22678-bda4-9932-d0a1-907e851cab2c\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Thursday, September 18, 2025 11:03 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_7859046138643783182OWAe81f39b0-ec24-b743-ca24-424e13107033\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a id=\"x_m_7859046138643783182OWA96c03181-9c79-378c-c150-ff2be9067492\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"x_m_7859046138643783182OWA2cb5ce13-d9cd-8a95-6b1c-85d355dafacd\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</span>\r\n</div>\r\n<div style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information\r\n to optimize our collaboration and planning:<br>\r\n<br>\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.<br>\r\n<br>\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.<br>\r\n<br>\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.<br>\r\n<br>\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.<br>\r\n<br>\r\nClarify your minimum order quantities and expected pricing for each product line.<br>\r\n<br>\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.<br>\r\n<br>\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted\r\n commercial timelines, and expected pricing.<br>\r\n<br>\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made module and packs for:<br>\r\n<br>\r\n18650:<br>\r\n<br>\r\nNMC: TNL-ITR18650-2600P<br>\r\n<br>\r\nLFP: SW18650-26HPA<br>\r\n<br>\r\nLFP: IFR18650-2000mAh<br>\r\n<br>\r\n21700:<br>\r\n<br>\r\nNMC: INR21700-50S<br>\r\n<br>\r\nNMC: INR21700-4000<br>\r\n<br>\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">In terms of the shows you mentioned, we are getting our schedules aligned so we can attend.&nbsp; What\'s the \"secret meeting\" in Nov?&nbsp;<br>\r\n<br>\r\nWe look forward to your prompt response so we can efficiently move to the next stages.\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Talk soon,&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_7859046138643783182OWAa894c5d9-0741-6243-3e0e-449171223bec\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_7859046138643783182OWAc8a757c1-67b5-a167-3793-f15be7380064\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 17, 2025 at 7:00 PM James Trevey &lt;<a id=\"x_m_7859046138643783182OWA13ecdc83-a950-da4e-3b8e-d04e2eb16671\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; padding-left:1ex; border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nThanks for moving quickly here. I got bogged down today but better late than never.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell has a 100% US supply chain already</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions\r\n</u>next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>thousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions</u>&nbsp;next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>thousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n</ul>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI will check with my people on 301 asap.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI look forward to our next communication.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJames</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:black\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:black\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_7859046138643783182OWA71ed3287-c884-92d5-1caa-92b1f1d318fa\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 17, 2025 7:56 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_7859046138643783182OWA6cd87ac5-84e9-6287-add8-4d889a10f57e\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;; Daniel &lt;<a id=\"x_m_7859046138643783182OWA9ff34847-3c2d-d41b-7b1a-a902aba2b15b\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"x_m_7859046138643783182OWAe23dbbcf-6954-539a-4659-57f697029434\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Gentlemen,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">It was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<ul style=\"direction:ltr\">\r\n<li style=\"direction:ltr\">James to&nbsp;send the cell specification sheets as soon as possible.</li><li style=\"direction:ltr\">LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.</li><li style=\"direction:ltr\">James to&nbsp;send their term sheet template for throughput contracts.</li><li style=\"direction:ltr\">We should discuss 301 exclusion support for manufacturing equipment.</li></ul>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I look forward to our next conversation.&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_7859046138643783182OWA57ab9852-a4df-04bc-6d07-5846e7a46499\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_7859046138643783182OWA01db43b7-0ffe-3df6-52fa-0845c64c7cef\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n<div>&lt;ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes (1).csv&gt;</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n\r\n\r\n</div></blockquote></div></body></html>','Hi James,I am out of town as well. &nbsp;How does your Wednesday look?&nbsp;Looking forward to catching up.Jordan G. WroblewskiPartner | President&nbsp;Lithium Battery CompanyDirect:&nbsp;(917) 266-5336jordan@lithiumbatterycompany.comLithium Battery CompanyOn Oct 16, 2025, at 9:20 AM, James Trevey &lt;jtrevey@forgenano.com&gt; wrote:﻿\r\n\r\n\r\n\r\n\r\n\r\n\r\nHey Jordan,\r\n\r\n\r\n\r\n\r\nApologies for the slow/no replies recently. Travel has been brutal.&nbsp;\r\n\r\n\r\n\r\n\r\nWe\'ve got a lot of the information ready for you. Can we schedule a call to do a walk through on Monday the 20th at 9am or 10am ET?\r\n\r\n\r\n\r\n\r\nJames\r\n\r\n\r\nFrom: Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;\r\nSent: Thursday, October 16, 2025 9:16 AM\r\nTo: James Trevey &lt;jtrevey@forgenano.com&gt;\r\nCc: Daniel &lt;dansheridanmusic@gmail.com&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;\r\nSubject: Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration\r\n&nbsp;\r\n\r\nHi James,\r\n\r\n\r\nWould be great to get some pricing and spec sheets.&nbsp;\r\n\r\n\r\nLet me know when we can connect.&nbsp;\r\n\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\nPartner | President&nbsp;\r\n\r\nLithium Battery Company\r\nDirect:&nbsp;(917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com\r\nLithium\r\n Battery Company\r\n\r\n\r\n\r\n\r\nOn Sep 30, 2025, at 4:31 PM, Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt; wrote:\r\n\r\n\r\n\r\n\r\n﻿\r\n\r\n\r\nHi James,\r\n\r\n\r\n\r\n\r\nI have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.\r\n\r\n\r\n\r\n\r\nLooking forward to our discussion and seeing your deck of prospective projects.&nbsp;&nbsp;\r\n\r\n\r\nBest,&nbsp;\r\n\r\n\r\n\r\n\r\n\r\nJordan G. Wroblewski\r\nPartner | President&nbsp;\r\n\r\nLithium Battery Company\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com\r\nLithium\r\n Battery Company\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nOn Fri, Sep 26, 2025 at 4:59 PM James Trevey &lt;jtrevey@forgenano.com&gt; wrote:\r\n\r\n\r\n\r\n\r\n\r\nJordan,\r\n\r\n\r\n\r\n\r\nI won\'t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products.&nbsp;\r\n\r\n\r\n\r\n\r\nI\'ll send to you as soon as I can next week.\r\n\r\n\r\n\r\n\r\nJames\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFrom:&nbsp;James Trevey &lt;jtrevey@forgenano.com&gt;\r\nSent:&nbsp;Wednesday, September 24, 2025 10:49 AM\r\nTo:&nbsp;Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;\r\nCc:&nbsp;Daniel &lt;dansheridanmusic@gmail.com&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;\r\nSubject:&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration \r\n\r\n\r\n\r\n\r\nJordan,\r\n\r\n\r\n\r\n\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating.&nbsp;\r\n\r\n\r\n\r\n\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?\r\n\r\n\r\n\r\n\r\nI also have a verbal matter we can discuss soon. Once I\'ve got the deck ready I\'ll find time for a short call with you.\r\n\r\n\r\n\r\n\r\nTalk soon.\r\n\r\n\r\n\r\n\r\nJames\r\n\r\n\r\n\r\nFrom:&nbsp;Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;\r\nSent:&nbsp;Wednesday, September 24, 2025 10:07 AM\r\nTo:&nbsp;James Trevey &lt;jtrevey@forgenano.com&gt;\r\nCc:&nbsp;Daniel &lt;dansheridanmusic@gmail.com&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;\r\nSubject:&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration\r\n\r\n&nbsp;\r\n\r\nHi James,\r\n\r\n\r\nThank you for the follow up.&nbsp; You were on my list to contact today!&nbsp;&nbsp;\r\n\r\n\r\nWould that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...\r\n\r\n\r\nI will let you know if I will be able to make it up to Detroit for The Battery Show.&nbsp;&nbsp;\r\n\r\n\r\nLooking forward to seeing the deck.\r\n\r\n\r\nAll the best,&nbsp;\r\n\r\n\r\nJordan G. Wroblewski\r\nPartner | President&nbsp;\r\n\r\nLithium Battery Company\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com\r\nLithium\r\n Battery Company\r\n\r\n\r\n\r\n\r\nOn Wed, Sep 24, 2025 at 11:59 AM James Trevey &lt;jtrevey@forgenano.com&gt; wrote:\r\n\r\n\r\n\r\nHey Jordan,\r\n\r\n\r\n\r\n\r\nThank you for the quick follow up.&nbsp;\r\n\r\n\r\n\r\n\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we\'ve decided we\'d like to provide information on additional products to you which are typically not on the menu but I have details\r\n to sort first.&nbsp;\r\n\r\n\r\n\r\n\r\nRegarding shows, happy to discuss when ready. We\'ll be at The Battery Show in 2 weeks, which I think you should consider attending and I\'d be happy to connect while there.&nbsp;\r\n\r\n\r\n\r\n\r\nJames\r\n\r\n\r\n\r\nFrom:&nbsp;Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;\r\nSent:&nbsp;Thursday, September 18, 2025 11:03 AM\r\nTo:&nbsp;James Trevey &lt;jtrevey@forgenano.com&gt;\r\nCc:&nbsp;Daniel &lt;dansheridanmusic@gmail.com&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;\r\nSubject:&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration\r\n\r\n&nbsp;\r\n\r\nHi James,\r\n\r\n\r\n\r\n\r\nThank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information\r\n to optimize our collaboration and planning:\r\n\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.\r\n\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.\r\n\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.\r\n\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.\r\n\r\nClarify your minimum order quantities and expected pricing for each product line.\r\n\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.\r\n\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted\r\n commercial timelines, and expected pricing.\r\n\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made module and packs for:\r\n\r\n18650:\r\n\r\nNMC: TNL-ITR18650-2600P\r\n\r\nLFP: SW18650-26HPA\r\n\r\nLFP: IFR18650-2000mAh\r\n\r\n21700:\r\n\r\nNMC: INR21700-50S\r\n\r\nNMC: INR21700-4000\r\n\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.\r\n\r\n\r\n\r\nIn terms of the shows you mentioned, we are getting our schedules aligned so we can attend.&nbsp; What\'s the \"secret meeting\" in Nov?&nbsp;\r\n\r\nWe look forward to your prompt response so we can efficiently move to the next stages.\r\n\r\n\r\n\r\n\r\n\r\nTalk soon,&nbsp;\r\n\r\n\r\nJordan G. Wroblewski\r\nPartner | President&nbsp;\r\n\r\nLithium Battery Company\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com\r\nLithium\r\n Battery Company\r\n\r\n\r\n\r\n\r\nOn Wed, Sep 17, 2025 at 7:00 PM James Trevey &lt;jtrevey@forgenano.com&gt; wrote:\r\n\r\n\r\n\r\nJordan,\r\n\r\n\r\n\r\n\r\nThanks for moving quickly here. I got bogged down today but better late than never.&nbsp;\r\n\r\n\r\n\r\n\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:\r\n\r\n\r\n\r\n\r\n\r\nSC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)\r\n\r\n\r\nThis cell has a 100% US supply chain already\r\n\r\nThis cell can be made in the millions&nbsp;next year by our partner in the EU, until our factory is online in 2027\r\n\r\n\r\nSC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)\r\n\r\n\r\nThis cell is 50% US and 50% non-FEOC currently\r\n\r\nThis cell can be made in the millions\r\nnext year by our partner in the EU, until our factory is online in 2027\r\n\r\n\r\nSC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.\r\n\r\n\r\nThis cell is 50% US and 50% non-FEOC currently\r\n\r\nThis cell can be made in the thousands&nbsp;next year by our partner in the EU, until our factory is online in 2027\r\n\r\n\r\nSC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)\r\n\r\n\r\nThis cell is 50% US and 50% non-FEOC currently\r\n\r\nThis cell can be made in the millions&nbsp;next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these\r\n\r\n\r\nSC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)\r\n\r\n\r\nThis cell is 50% US and 50% non-FEOC currently\r\n\r\nThis cell can be made in the thousands&nbsp;next year by our partner in the EU, until our factory is online in 2027\r\n\r\n\r\n\r\n\r\n\r\n\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.\r\n\r\n\r\n\r\n\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.&nbsp;\r\n\r\n\r\n\r\n\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?\r\n\r\n\r\n\r\n\r\nI will check with my people on 301 asap.\r\n\r\n\r\n\r\n\r\nI look forward to our next communication.\r\n\r\n\r\n\r\n\r\nJames\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFrom:&nbsp;Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;\r\nSent:&nbsp;Wednesday, September 17, 2025 7:56 AM\r\nTo:&nbsp;James Trevey &lt;jtrevey@forgenano.com&gt;; Daniel &lt;dansheridanmusic@gmail.com&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;\r\nSubject:&nbsp;Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration\r\n\r\n\r\n\r\nGentlemen,\r\n\r\n\r\nIt was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:\r\n\r\n\r\n\r\nJames to&nbsp;send the cell specification sheets as soon as possible.LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.James to&nbsp;send their term sheet template for throughput contracts.We should discuss 301 exclusion support for manufacturing equipment.\r\n\r\n\r\nI look forward to our next conversation.&nbsp;\r\n\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\nPartner | President&nbsp;\r\nLithium Battery Company\r\nDirect: (917) 266-5336\r\njordan@lithiumbatterycompany.com\r\nLithium\r\n Battery Company\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&lt;ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes (1).csv&gt;\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-10-20 11:12:52','2025-12-04 14:04:52','2025-12-04 14:04:52','2025-12-04 14:04:52',NULL,NULL,NULL),
(88,4,'<MW5PR84MB198503095AE0D09D70A695E0FB2BA@MW5PR84MB1985.NAMPRD84.PROD.OUTLOOK.COM>',NULL,NULL,'FW: 5600 Budgetary Quote','gary.fudge@hp.com','\"Fudge, Gary\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Forma DJR Display\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n@font-face\r\n	{font-family:\"Forma DJR Micro\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:#467886;\r\n	text-decoration:underline;}\r\nspan.EmailStyle20\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager &#8211; US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\"><span style=\"color:blue\">Gary.Fudge</span><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:blue\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black;mso-ligatures:none\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_231323438\" src=\"cid:image001.png@01DC0856.F0693A70\" alt=\"image001.png\"></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\"> Fudge, Gary\r\n<br>\r\n<b>Sent:</b> Friday, August 8, 2025 9:24 AM<br>\r\n<b>To:</b> \'Rick@mavrix.1\' &lt;Rick@mavrix.1&gt;<br>\r\n<b>Subject:</b> RE: 5600 Budgetary Quote<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Hello Rick<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">I just found out the Francois Minec (our Global go to market VP) will be in the US early September.&nbsp; It would be great if you could meet then as Francois can make things happen for us given his level in the company along with him being\r\n based out of HQ in Barcelona.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Regardless, per below, it would be good to have a short discussion in the interim,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Please let me know.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager &#8211; US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\"><span style=\"color:blue\">Gary.Fudge</span><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:blue\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black;mso-ligatures:none\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_1956623982\" src=\"cid:image001.png@01DC0856.F0693A70\" alt=\"image001.png\"></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\"> Fudge, Gary\r\n<br>\r\n<b>Sent:</b> Thursday, August 7, 2025 8:14 AM<br>\r\n<b>To:</b> \'Rick@mavrix.1\' &lt;<a href=\"mailto:Rick@mavrix.1\">Rick@mavrix.1</a>&gt;<br>\r\n<b>Subject:</b> RE: 5600 Budgetary Quote<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Hello Rick<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">I left you a voicemail last week&#8230;thought I would follow up here.&nbsp;\r\n<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Given your timeline, it would be good to get together for 30+ minutes or so to start putting some framework around your needs.&nbsp; We have a lot of solutions and teams to get you up and running quickly&#8230;including professional engineering services,\r\n applications support, drone vertical team, and service/maintenance teams along with various stop-gap solutions to outsource production as needed as you ramp.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Would you have some time this week or next to discuss?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager &#8211; US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\"><span style=\"color:blue\">Gary.Fudge</span><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:blue\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black;mso-ligatures:none\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_2120042471\" src=\"cid:image001.png@01DC0856.F0693A70\" alt=\"image001.png\"></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\"> Fudge, Gary\r\n<br>\r\n<b>Sent:</b> Wednesday, July 30, 2025 8:37 AM<br>\r\n<b>To:</b> <a href=\"mailto:Rick@mavrix.1\">Rick@mavrix.1</a><br>\r\n<b>Subject:</b> 5600 Budgetary Quote<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Good morning Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Good talking with you briefly late yesterday.&nbsp; As promised, attached is a budgetary quote for a 5600 system.&nbsp; Based on our limited discussion, this sounds like a good place to start but we should have a more detailed conversation to zero\r\n in on what is best for you.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">-I have included a 5600 brochure for your review.&nbsp; Note this is the base system and you may want to consider a 5620 or 5620 Pro upgrade.&nbsp; These upgraded systems are more economical for higher level production.&nbsp; You may also want to consider\r\n other accessories like Natural Cooling Units or an Auto Unpacker depending upon your workflow and volume.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">-These systems include a 1 year warranty which covers all parts and labor for that period.&nbsp; There are a variety of service plans beyond that you can chose from to fit your needs.&nbsp; Including self-maintenance, 3DaaS and others.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">-As requested, I have also included a brochure on our automation accessory to swap out build units.&nbsp; This costs approximately $52,000 per system and can be well worth it if you want to do 24 hour production with limited staff.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">I know you are familiar with HP MJF AM technology in the Drone world as we are quickly becoming AM the industry standard there but I have included some additional case studies attached here along with some video links below for you to review.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><a href=\"https://www.youtube.com/watch?v=TC5l7fkGNHE\" title=\"https://www.youtube.com/watch?v=TC5l7fkGNHE\">Blueflite at Xponential 2025 | HP</a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><a href=\"https://www.youtube.com/watch?v=VTa2ZwKHk2c\" title=\"https://www.youtube.com/watch?v=VTa2ZwKHk2c\">The Eye Above at Xponential 2025 | HP</a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><a href=\"https://www.youtube.com/watch?v=EwBmg0165gM\" title=\"https://www.youtube.com/watch?v=EwBmg0165gM\">Unusual Machines at Xponential 2025 | HP</a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Keep in mind this is an initial budgetary number and things will change as we zero in on your needs but it should get you in the ballpark.&nbsp; We should spend at least 30 minutes to review and discuss further.&nbsp; What day/time(s) this week for\r\n that?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Looking forward to working with you on this.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Best Regards,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager &#8211; US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\"><span style=\"color:blue\">Gary.Fudge</span><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:blue\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black;mso-ligatures:none\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_1\" src=\"cid:image001.png@01DC0856.F0693A70\" alt=\"image001.png\"></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</body>\r\n</html>','\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager - US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Fudge, Gary\r\nSent: Friday, August 8, 2025 9:24 AM\r\nTo: \'Rick@mavrix.1\' <Rick@mavrix.1>\r\nSubject: RE: 5600 Budgetary Quote\r\n\r\nHello Rick\r\n\r\nI just found out the Francois Minec (our Global go to market VP) will be in the US early September.  It would be great if you could meet then as Francois can make things happen for us given his level in the company along with him being based out of HQ in Barcelona.\r\n\r\nRegardless, per below, it would be good to have a short discussion in the interim,\r\n\r\nPlease let me know.\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager - US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Fudge, Gary\r\nSent: Thursday, August 7, 2025 8:14 AM\r\nTo: \'Rick@mavrix.1\' <Rick@mavrix.1<mailto:Rick@mavrix.1>>\r\nSubject: RE: 5600 Budgetary Quote\r\n\r\nHello Rick\r\n\r\nI left you a voicemail last week...thought I would follow up here.\r\n\r\nGiven your timeline, it would be good to get together for 30+ minutes or so to start putting some framework around your needs.  We have a lot of solutions and teams to get you up and running quickly...including professional engineering services, applications support, drone vertical team, and service/maintenance teams along with various stop-gap solutions to outsource production as needed as you ramp.\r\n\r\nWould you have some time this week or next to discuss?\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager - US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Fudge, Gary\r\nSent: Wednesday, July 30, 2025 8:37 AM\r\nTo: Rick@mavrix.1<mailto:Rick@mavrix.1>\r\nSubject: 5600 Budgetary Quote\r\n\r\nGood morning Rick,\r\n\r\nGood talking with you briefly late yesterday.  As promised, attached is a budgetary quote for a 5600 system.  Based on our limited discussion, this sounds like a good place to start but we should have a more detailed conversation to zero in on what is best for you.\r\n\r\n-I have included a 5600 brochure for your review.  Note this is the base system and you may want to consider a 5620 or 5620 Pro upgrade.  These upgraded systems are more economical for higher level production.  You may also want to consider other accessories like Natural Cooling Units or an Auto Unpacker depending upon your workflow and volume.\r\n\r\n-These systems include a 1 year warranty which covers all parts and labor for that period.  There are a variety of service plans beyond that you can chose from to fit your needs.  Including self-maintenance, 3DaaS and others.\r\n\r\n-As requested, I have also included a brochure on our automation accessory to swap out build units.  This costs approximately $52,000 per system and can be well worth it if you want to do 24 hour production with limited staff.\r\n\r\nI know you are familiar with HP MJF AM technology in the Drone world as we are quickly becoming AM the industry standard there but I have included some additional case studies attached here along with some video links below for you to review.\r\n\r\nBlueflite at Xponential 2025 | HP<https://www.youtube.com/watch?v=TC5l7fkGNHE>\r\n\r\nThe Eye Above at Xponential 2025 | HP<https://www.youtube.com/watch?v=VTa2ZwKHk2c>\r\n\r\nUnusual Machines at Xponential 2025 | HP<https://www.youtube.com/watch?v=EwBmg0165gM>\r\n\r\nKeep in mind this is an initial budgetary number and things will change as we zero in on your needs but it should get you in the ballpark.  We should spend at least 30 minutes to review and discuss further.  What day/time(s) this week for that?\r\n\r\nLooking forward to working with you on this.\r\n\r\nBest Regards,\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager - US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]',1,0,0,0,0,0,'2025-08-12 19:11:54','2025-12-04 14:04:53','2025-12-04 14:04:53','2025-12-09 13:50:28',NULL,NULL,NULL),
(89,4,'<MW5PR84MB198598CA2D39FED2D4631926FB2BA@MW5PR84MB1985.NAMPRD84.PROD.OUTLOOK.COM>',NULL,NULL,'FW: 5600 Budgetary Quote','gary.fudge@hp.com','\"Fudge, Gary\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Forma DJR Display\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n@font-face\r\n	{font-family:\"Forma DJR Micro\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:#467886;\r\n	text-decoration:underline;}\r\nspan.EmailStyle20\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager &#8211; US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\"><span style=\"color:blue\">Gary.Fudge</span><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:blue\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black;mso-ligatures:none\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_558724537\" src=\"cid:image001.png@01DC0772.AAD8E6C0\" alt=\"image001.png\"></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\"> Fudge, Gary\r\n<br>\r\n<b>Sent:</b> Thursday, August 7, 2025 6:14 AM<br>\r\n<b>To:</b> \'Rick@mavrix.1\' &lt;Rick@mavrix.1&gt;<br>\r\n<b>Subject:</b> RE: 5600 Budgetary Quote<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Hello Rick<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">I left you a voicemail last week&#8230;thought I would follow up here.&nbsp;\r\n<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Given your timeline, it would be good to get together for 30+ minutes or so to start putting some framework around your needs.&nbsp; We have a lot of solutions and teams to get you up and running quickly&#8230;including professional engineering services,\r\n applications support, drone vertical team, and service/maintenance teams along with various stop-gap solutions to outsource production as needed as you ramp.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Would you have some time this week or next to discuss?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager &#8211; US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\"><span style=\"color:blue\">Gary.Fudge</span><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:blue\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black;mso-ligatures:none\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_2120042471\" src=\"cid:image001.png@01DC0772.AAD8E6C0\" alt=\"image001.png\"></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\"> Fudge, Gary\r\n<br>\r\n<b>Sent:</b> Wednesday, July 30, 2025 8:37 AM<br>\r\n<b>To:</b> <a href=\"mailto:Rick@mavrix.1\">Rick@mavrix.1</a><br>\r\n<b>Subject:</b> 5600 Budgetary Quote<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Good morning Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Good talking with you briefly late yesterday.&nbsp; As promised, attached is a budgetary quote for a 5600 system.&nbsp; Based on our limited discussion, this sounds like a good place to start but we should have a more detailed conversation to zero\r\n in on what is best for you.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">-I have included a 5600 brochure for your review.&nbsp; Note this is the base system and you may want to consider a 5620 or 5620 Pro upgrade.&nbsp; These upgraded systems are more economical for higher level production.&nbsp; You may also want to consider\r\n other accessories like Natural Cooling Units or an Auto Unpacker depending upon your workflow and volume.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">-These systems include a 1 year warranty which covers all parts and labor for that period.&nbsp; There are a variety of service plans beyond that you can chose from to fit your needs.&nbsp; Including self-maintenance, 3DaaS and others.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">-As requested, I have also included a brochure on our automation accessory to swap out build units.&nbsp; This costs approximately $52,000 per system and can be well worth it if you want to do 24 hour production with limited staff.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">I know you are familiar with HP MJF AM technology in the Drone world as we are quickly becoming AM the industry standard there but I have included some additional case studies attached here along with some video links below for you to review.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><a href=\"https://www.youtube.com/watch?v=TC5l7fkGNHE\" title=\"https://www.youtube.com/watch?v=TC5l7fkGNHE\">Blueflite at Xponential 2025 | HP</a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><a href=\"https://www.youtube.com/watch?v=VTa2ZwKHk2c\" title=\"https://www.youtube.com/watch?v=VTa2ZwKHk2c\">The Eye Above at Xponential 2025 | HP</a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><a href=\"https://www.youtube.com/watch?v=EwBmg0165gM\" title=\"https://www.youtube.com/watch?v=EwBmg0165gM\">Unusual Machines at Xponential 2025 | HP</a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Keep in mind this is an initial budgetary number and things will change as we zero in on your needs but it should get you in the ballpark.&nbsp; We should spend at least 30 minutes to review and discuss further.&nbsp; What day/time(s) this week for\r\n that?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Looking forward to working with you on this.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Best Regards,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager &#8211; US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\"><span style=\"color:blue\">Gary.Fudge</span><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:blue\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black;mso-ligatures:none\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_1\" src=\"cid:image001.png@01DC0772.AAD8E6C0\" alt=\"image001.png\"></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</body>\r\n</html>','\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager - US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Fudge, Gary\r\nSent: Thursday, August 7, 2025 6:14 AM\r\nTo: \'Rick@mavrix.1\' <Rick@mavrix.1>\r\nSubject: RE: 5600 Budgetary Quote\r\n\r\nHello Rick\r\n\r\nI left you a voicemail last week...thought I would follow up here.\r\n\r\nGiven your timeline, it would be good to get together for 30+ minutes or so to start putting some framework around your needs.  We have a lot of solutions and teams to get you up and running quickly...including professional engineering services, applications support, drone vertical team, and service/maintenance teams along with various stop-gap solutions to outsource production as needed as you ramp.\r\n\r\nWould you have some time this week or next to discuss?\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager - US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Fudge, Gary\r\nSent: Wednesday, July 30, 2025 8:37 AM\r\nTo: Rick@mavrix.1<mailto:Rick@mavrix.1>\r\nSubject: 5600 Budgetary Quote\r\n\r\nGood morning Rick,\r\n\r\nGood talking with you briefly late yesterday.  As promised, attached is a budgetary quote for a 5600 system.  Based on our limited discussion, this sounds like a good place to start but we should have a more detailed conversation to zero in on what is best for you.\r\n\r\n-I have included a 5600 brochure for your review.  Note this is the base system and you may want to consider a 5620 or 5620 Pro upgrade.  These upgraded systems are more economical for higher level production.  You may also want to consider other accessories like Natural Cooling Units or an Auto Unpacker depending upon your workflow and volume.\r\n\r\n-These systems include a 1 year warranty which covers all parts and labor for that period.  There are a variety of service plans beyond that you can chose from to fit your needs.  Including self-maintenance, 3DaaS and others.\r\n\r\n-As requested, I have also included a brochure on our automation accessory to swap out build units.  This costs approximately $52,000 per system and can be well worth it if you want to do 24 hour production with limited staff.\r\n\r\nI know you are familiar with HP MJF AM technology in the Drone world as we are quickly becoming AM the industry standard there but I have included some additional case studies attached here along with some video links below for you to review.\r\n\r\nBlueflite at Xponential 2025 | HP<https://www.youtube.com/watch?v=TC5l7fkGNHE>\r\n\r\nThe Eye Above at Xponential 2025 | HP<https://www.youtube.com/watch?v=VTa2ZwKHk2c>\r\n\r\nUnusual Machines at Xponential 2025 | HP<https://www.youtube.com/watch?v=EwBmg0165gM>\r\n\r\nKeep in mind this is an initial budgetary number and things will change as we zero in on your needs but it should get you in the ballpark.  We should spend at least 30 minutes to review and discuss further.  What day/time(s) this week for that?\r\n\r\nLooking forward to working with you on this.\r\n\r\nBest Regards,\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager - US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]',0,0,0,0,0,0,'2025-08-12 19:11:53','2025-12-04 14:04:54','2025-12-04 14:04:54','2025-12-04 14:04:54',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(90,4,'<02.28.10444.7041A986@i-005781a3eaec7956a.mta1vrest.sd.prd.sparkpost>',NULL,NULL,'=?utf-8?B?SGVscCB1cyBoZWxwIHlvdSDwn5GA?=','survey@newsletter.printful.com','\"Printful\"','<!DOCTYPE html><html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\"><head><title></title><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><!--[if mso]><xml><o:OfficeDocumentSettings><o:PixelsPerInch>96</o:PixelsPerInch><o:AllowPNG/></o:OfficeDocumentSettings></xml><![endif]--><!--[if !mso]><!--><!--<![endif]--><style>*{box-sizing:border-box}body{margin:0;padding:0}a[x-apple-data-detectors]{color:inherit!important;text-decoration:inherit!important}#MessageViewBody a{color:inherit;text-decoration:none}p{line-height:inherit}.desktop_hide,.desktop_hide table{mso-hide:all;display:none;max-height:0;overflow:hidden}.image_block img+div{display:none}@media(max-width:620px){.image_block div.fullWidth{max-width:100%!important}.mobile_hide{display:none}.row-content{width:100%!important}.stack .column{width:100%;display:block}.mobile_hide{min-height:0;max-height:0;max-width:0;overflow:hidden;font-size:0}.desktop_hide,.desktop_hide table{display:table!important;max-height:none!important}}</style></head><body style=\"margin:0;background-color:#f4f4f4;padding:0;-webkit-text-size-adjust:none;text-size-adjust:none\">\r\n<div style=\"color:transparent;visibility:hidden;opacity:0;font-size:0px;border:0;max-height:1px;width:1px;margin:0px;padding:0px;border-width:0px!important;display:none!important;line-height:0px!important;\"><img border=\"0\" width=\"1\" height=\"1\" src=\"https://post.spmailtechnolo.com/q/jvjmncjjZIugpDNFx4PHCA~~/AARGbBA~/WyJsliGIxwuIsr7PvbDn9gTXBoAWAdFMBz-xaUl2Ee_Ohei2mAFEJ8XiCSDVA-is\" alt=\"\"/></div>\r\n<span style=\"color:transparent;visibility:hidden;display:none;opacity:0;height:0;width:0;font-size:0;\">Get a $5 coupon for 2-min. survey</span><img src=\"https://links.printful.com/e/eo?_t=67a5f8b7ad4949ae834ded7d199b2915&amp;_m=e7498a678a1f40a2a9273983581fb93d&amp;_e=zBdijGYIwKer5QBYVaigIqmWRbM0C5uiPrS1L59VGDXjwcLE8NxDj0HGO8C4ia-_5URuGLTYNAw0JSxlgLHae4qHQ88oTtvmONTQt3ho0h4wh0D0_7w2CHl_XVtRPiU1\" style=\"border:0;width:1px;height:1px;border-width:0px!important;display:none!important;line-height:0!important;\" width=\"1\" height=\"1\"/><table class=\"nl-container\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#f4f4f4\"><tbody><tr><td><table class=\"row row-1\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#f4f4f4;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-top:5px;vertical-align:top;border-top:0;border-right:0;border-bottom:0;border-left:0\"><table class=\"html_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div style=\"font-family:Helvetica Neue,Helvetica,Arial,sans-serif;text-align:center\" align=\"center\"><div> <table align=\"center\" aria-hidden=\"true\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width: 100%; margin: 0 auto; max-width: 600px;\" width=\"100%\"> <tbody> <tr> <td lang=\"en\" style=\"padding-bottom: 16px;\"> <div style=\"display:none\"> &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &nbsp; </div> <table align=\"center\" aria-hidden=\"true\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius: 10px;\" width=\"100%\"> <tbody> <tr> <td style=\"padding: 16px 0 0 0;\"> <div style=\"text-align:center\"><a target=\"_blank\" href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UaBbyfQg5aMVUsFND3PDSUEFnsM8NhKUmTokQWtUYh7hjiZh1uXY43L4bFQqAkz1xdGuEyLQpWy-I1FetZNhUoCAGRDPcl8skn4CrPHMsm08yj32Un4OZiXGPWV1cXTVjadB6eMW3xw2z99LUSEJnJ2d70TxK3geOLbJRRGN4Jwo17CCi2tuw5DKBL2A-ygA2Pez9YyaksCXUTd6_gA0FOO-nM1Fl32d_yn_AAr5rPj6BU1mQUIzQf879GrKf_PyC9qCp2DJDcfdIWqszey4j2Ox_vqhBePKHjLPZd7gw2BnouTYxfq5fOKbi6yMIiHoNiB3XfIUTswULAVmZUYhhFNrSecMhgO_W8BPaF5rZ8Pd-5N007Ix5bzisa-iZntXIV1wnjoAEqpCeZbbNR-unn6NDuk2HuSNyBAoIjGs91JH\"><img alt=\"Printful\" style=\"display: block; width: 280px; margin: 0 auto;\" width=\"280\" src=\"https://d3k81ch9hvuctc.cloudfront.net/company/Mq37fv/images/88d28808-76fc-4d9e-9138-16b412756689.png\"/></a></div> </td> </tr> <tr> <td style=\"padding: 16px 0 0 0;\"><!----> <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-size: 16px; font-family: Helvetica, Arial, sans-serif; color: #222222; line-height: 100%; text-align: center;\"> <tbody> <tr> <td><a style=\"color: #222222; text-decoration: underline; display: inline-block;\" href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UaBbyfQg5aMVUsFND3PDSUFE7RhXfR1nfr0NM2qtMwz4pwN7QO9KhiXR32xasxi6dCFucSiqauLsp--ZsBRvdEZPeIJaJv6aTHUNIUKWN6MP9uF1YI2ntTkPaqOgW-TemO08-hnhf7fWSUvFD4OXP1wad8ZxZE49CICrDSdWaiYhSrF8R7D8f2thm4k4mEWaGsa0-FI6XzyltcS1CQ-XO-YpE_ZYBnnzsu_VYTZ3ZOxUhfGMfdm3E_PjMlBJkMO2fEebyU_FmxXraZduLzeVaWmQvWxgEitb_E0OgGLKs8WfVx0TVMiuo6CQ1u_S9hnw6nvIzYd0TUqA4iE0tcuA0N6ZVK5RuC1mBLXwgLK9fTTyueZNOcjxxXeYR76uuhcB7tO7gx1A0mXnsyuHuRvymEoYOLQY7x128GUNYgnZX6P1Lu5jATcB8yT9_JHpnyCbFqlypDyjXr2hM3JSR-RYa2Goi2SSVeqT92SG2kPzYV1u\">New products</a></td> <td style=\"padding: 0 18px 0 18px;\">•</td> <td><a style=\"color: #222222; text-decoration: underline; display: inline-block;\" href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UaBbyfQg5aMVUsFND3PDSUGftiSxkcM92E_-eTRvdxX0X-_7Oe8NTuW1HpnU2NCa3t1ak9vldeOcKLdm1olLnOTPnhPNjMryJei8OHQmw57LlnIZz6ddBA94VMNz_P9Cl0TQ2JkkuHT6HbLBkOHXVfmEWilnjbBH8T1lJ9LHbQm2eHXShRLgDCkYvxaBY1T2Y39_1IV0aYeyniOYgCtYDjXSnij2MR27dphuARQDQJF7HBBR7sb21-tfsEYPkhd8-cSlsVDl9PxynOvnD39IIXIQXwBzB5NHEeWrIoBcjT_s1jIFWCKXOb9Me0Lpg2KWibtFnzh8YwRUQmrtmaZDLJf3gRwsYnxP1ROGIK263v8HSG_hvDL9xgsRAOqG5wbTAY6OaQnJuIYgnlQRCuxTZJUp4SrglD4TtXQZiHhF6fK6OHRZsHUg6QPAFZFN4RH4Jw%3D%3D\">Services</a></td> <td style=\"padding: 0 18px 0 18px;\">•</td> <td><a style=\"color: #222222; text-decoration: underline; display: inline-block;\" href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UaBbyfQg5aMVUsFND3PDSUEHwrzgZdxeAYf1K_W28YQNe_ACRl_Q-1jW0nwzl8jkt854UY0kvzTGb1WZ2bOeYllGYM-1NKO4uwNMe8e3ys7zpFVat9Jlvs5kKbS4s5SNNGpSTP8GqDyaoN37SmrzVpq3h9xTCmgC9T5hDxm_snVxbHw1-qIdqncOdiOlRK39qYHW2zEQeSLL3I_qRFThz8an8AiE8tIrLisyzluVlOMFu_OrEhNU7cpxHzGRwPbo_xVesJcZ7WR92lFKfvfPM2xxTqjkQnpG-v0TikX1omtEpviPdZ2ZfVT6mZaFBv3vtth4ZreWH8Ia0-qwWRb77YTuTxImvs-dspzt4g7MefAF00ErvLLQze20yZrYNoKCOPKKRjV5Rm2oClrty-f1PhPrC13m4VrMn54vwPyiT8TA2YTHTurz_LEMMxA2CjS4tg%3D%3D\">Blog</a></td> </tr> </tbody> </table> <!----></td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"100%\" style=\"width: 100%; min-width: 100%; margin: 0 auto; border-spacing: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\"> <tbody> <tr> <td align=\"center\" style=\"padding-left:7px;padding-right:7px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> <tr> <td align=\"center\" style=\"padding-left:5px;padding-right:5px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> <tr> <td align=\"center\" style=\"padding-left:4px;padding-right:4px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> <tr> <td align=\"center\" style=\"padding-left:3px;padding-right:3px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> <tr> <td align=\"center\" style=\"padding-left:2px;padding-right:2px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> <tr> <td align=\"center\" style=\"padding-left:1px;padding-right:1px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> <tr> <td align=\"center\" style=\"padding-left:1px;padding-right:1px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> </tbody> </table></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-2\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;background-repeat:no-repeat;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top;border-top:0;border-right:0;border-bottom:0;border-left:0\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"padding-top:30px;width:100%;padding-right:0;padding-left:0\"><div class=\"alignment\" align=\"center\" style=\"line-height:10px\"><div class=\"fullWidth\" style=\"max-width:360px\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/669d5713-9b6a-46bb-bd7e-c542cff6dd6a/67a5f8b7ad4949ae834ded7d199b2915/PNG-900x600_4.png\" style=\"display:block;height:auto;border:0;width:100%\" width=\"360\"></div></div></td></tr></table><table class=\"text_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:20px;padding-left:30px;padding-right:30px;padding-top:20px\"><div style=\"font-family:sans-serif\"><div class style=\"font-size:12px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;mso-line-height-alt:14.399999999999999px;color:#000;line-height:1.2\"><p style=\"margin:0;font-size:14px;text-align:left;mso-line-height-alt:16.8px\"><span style=\"font-size:26px\"><strong>Share your thoughts and save $5 on your next order!</strong></span></p></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-3\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;vertical-align:top;border-top:0;border-right:0;border-bottom:0;border-left:0\"><table class=\"text_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:20px;padding-left:30px;padding-right:30px;padding-top:20px\"><div style=\"font-family:sans-serif\"><div class style=\"font-size:12px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;mso-line-height-alt:18px;color:#555;line-height:1.5\"><p style=\"margin:0;font-size:16px;mso-line-height-alt:24px\"><strong>We see you signed up with Printful a month ago but haven’t ordered anything yet.</strong> We’d like to hear your thoughts on how we could improve your experience.</p><p style=\"margin:0;font-size:16px;mso-line-height-alt:18px\">&nbsp;</p><p style=\"margin:0;font-size:16px;mso-line-height-alt:24px\">Fill out a 2-minute survey and receive a $5 coupon code you can use for Printful orders—a small thank you for your time.</p></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-4\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:top;border-top:0;border-right:0;border-bottom:0;border-left:0\"><table class=\"text_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-left:10px;padding-right:10px\"><div style=\"font-family:sans-serif\"><div class style=\"font-size:12px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;mso-line-height-alt:14.399999999999999px;color:#555;line-height:1.2\"><p style=\"margin:0;font-size:14px;mso-line-height-alt:16.8px\"></p></div></div></td></tr></table><table class=\"button_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"padding-bottom:10px;padding-left:30px;padding-right:30px;padding-top:10px;text-align:left\"><div class=\"alignment\" align=\"left\"><!--[if mso]><v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UUPMsIK131f3MUF41AS2oxE1dd0Dvoj47BuggjJ4Lo5jI5wsCJ2aKA2hhBOBemstwW0XBAxvMgB2_I8gowsBs6feo5JJUZnr3hEkuSGNucrwXKW5Bdb9sF5Le9ldL1C6in_lGbYAkySqwASwfz6PNKsdSd5T3_qabnOcakJVqbWuY55b56Y9b1diT7b1ntdfXy47vA8TqhYzVz7MX0CI9Al-cqH8-0-tg1HugWue9ru1AOLY2Ic3KWKZnPRE6qP-Ehnd-Mdg1WHzWxv61KCrhAAUdb2nkJSpKqEQ4EkGAYZPCWpYg7jgVkwyLfjV-3aTZU80AGHvbJHn-6SPecKNilU%3D\" style=\"height:41px;width:160px;v-text-anchor:middle;\" arcsize=\"13%\" stroke=\"false\" fillcolor=\"#e40f0a\"> <w:anchorlock/> <v:textbox inset=\"0px,0px,0px,0px\"> <center style=\"color:#ffffff; font-family:Arial, sans-serif; font-size:16px\"><![endif]--><a href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UUPMsIK131f3MUF41AS2oxE1dd0Dvoj47BuggjJ4Lo5jI5wsCJ2aKA2hhBOBemstwW0XBAxvMgB2_I8gowsBs6feo5JJUZnr3hEkuSGNucrwXKW5Bdb9sF5Le9ldL1C6in_lGbYAkySqwASwfz6PNKsdSd5T3_qabnOcakJVqbWuY55b56Y9b1diT7b1ntdfXytZ6h4cs8cdu46uCEai9512vHfxAGec1J-4u2G-q4GGqur8HRMUBoXiS5cZq6rifJIuiF8J9ivySq5E7TpxuUDQrPM8kxCnB-ADF_3UKUSZXeYiyZ34nkxnW79CIvA-njZtzygzrCXOFd7zeXUejxU%3D\" target=\"_blank\" style=\"text-decoration:none;display:inline-block;color:#fff;background-color:#e40f0a;border-radius:5px;width:auto;border-top:0 solid transparent;font-weight:400;border-right:0 solid transparent;border-bottom:0 solid transparent;border-left:0 solid transparent;padding-top:5px;padding-bottom:5px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:16px;text-align:center;mso-border-alt:none;word-break:keep-all\"><span style=\"padding-left:20px;padding-right:20px;font-size:16px;display:inline-block;letter-spacing:normal\"><span style=\"word-break:break-word;line-height:32px\"><strong>Take the Survey</strong></span></span></a><!--[if mso]></center></v:textbox></v:roundrect><![endif]--></div></td></tr></table><table class=\"text_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-left:10px;padding-right:10px\"><div style=\"font-family:sans-serif\"><div class style=\"font-size:12px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;mso-line-height-alt:14.399999999999999px;color:#555;line-height:1.2\"><p style=\"margin:0;font-size:14px;mso-line-height-alt:16.8px\"></p></div></div></td></tr></table><table class=\"text_block block-6\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:20px;padding-left:30px;padding-right:30px;padding-top:20px\"><div style=\"font-family:sans-serif\"><div class style=\"font-size:12px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;mso-line-height-alt:18px;color:#555;line-height:1.5\"><p dir=\"ltr\" style=\"margin:0;mso-line-height-alt:24px\"><span style=\"font-size:16px\">Cheers,</span><br><span style=\"font-size:16px\">The Printful Team</span></p></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-5\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#f4f4f4;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;vertical-align:top;border-top:0;border-right:0;border-bottom:0;border-left:0\"><table class=\"html_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div style=\"font-family:Helvetica Neue,Helvetica,Arial,sans-serif;text-align:center\" align=\"center\"><table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"100%\" style=\"width: 100%; min-width: 100%; margin: 0 auto; border-spacing: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\"> <tbody> <tr> <td align=\"center\" style=\"padding-left:1px;padding-right:1px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> <tr> <td align=\"center\" style=\"padding-left:1px;padding-right:1px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> <tr> <td align=\"center\" style=\"padding-left:2px;padding-right:2px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> <tr> <td align=\"center\" style=\"padding-left:3px;padding-right:3px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> <tr> <td align=\"center\" style=\"padding-left:4px;padding-right:4px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> <tr> <td align=\"center\" style=\"padding-left:5px;padding-right:5px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> <tr> <td align=\"center\" style=\"padding-left:7px;padding-right:7px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> </tbody> </table> <div><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"font-size: 16px; font-family: Helvetica, Arial, sans-serif; color: #555; line-height: 150%; text-align: center;\"> <tbody> <tr> <td> <h2 style=\"color: #555; font-size: 24px; margin: 24px 0 18px 0; font-weight: bold; line-height: 32px;\"> Stay in touch! </h2> <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"> <tbody> <tr> <td style=\"padding: 0 8px;text-align: center;\"><a style=\"display: block;\" href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UfLLBPIueEBK5gCtIrB2UMDLCFLYHULWFqyOk4NSxESxafCxA_LwHADeig1U3C32riVTJeI8LMB6OZ-MvwSpCwJlzQ8jY80L3tbqnDRIqzB9WsW1UqUBSs_BW3iO_b96aUiI88yXS9xsBk66yobtdVlX33GdhQW6PsJ1dCuJEzbwuAyK3BeM516leAESRNXo79QvrTkw4vN8MMX_OC31niEluHzfBZc_8DbNa_CzF5cZeDhSxG21YR-38GR4ZTNM16s8Vq-Rkc3pmW-hzBi_WgoKf125Sb5SVzC7i4RN5riGgFxYAETtS_US7nyfFBqthOyxcxPxwEydIMgj3hraKO5j7-vKELPoN8eigDYgtFibdTmdUw45J_TSZKspTqYoJsHOTyJyzIFXltI4eVEdAi2wvu3O3JlsIGDcHC4uU4b5pyvcIun0MhxA39sxEdlcEw%3D%3D\"><img style=\"display: block; width: 32px;\" alt=\"\" width=\"32\" height=\"auto\" src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/669d5713-9b6a-46bb-bd7e-c542cff6dd6a/67a5f8b7ad4949ae834ded7d199b2915/editor_images/Tiktok.png\"/></a> </td> <td style=\"padding: 0 8px;text-align: center;\"><a style=\"display: block;\" href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UYy_TGZxaRu6uKrvYnAZR8P4YPod_XbuG_xQJ5rPscmkdFewiR4E77nYXgBUIqDI8E2DCD39swZ7DJBF-B2pg7PL4Txi9te73GtvOQHITDM3ysyzXDaVdKCD3OfnzSTrUyGXcSP62fTvS4rCaSvwZvAO4C0zH3eevAqjVMkD33A3i9V5xsQrhdfNVCSpF8lSYDf2EWccxdf7-SBoYBjfGhzKVVMQ6MuFQxz-j_OjIwy9OIEgx0Yek6J4cLT3uvi9MQDuJMBF8SNb8mn_kAR_MKpnnDwr3MSeQWftdklcsL3-QgPtkfkGWMt5o0jB2sApq1Q5aC_u4A7bw50RrqudMvHamId6NJybKu4PydzqqMN-Gq4MZfWeCqrC8Wuo8FZcKIG3wGxTEQUCUdHzy4eBJv15xNOt3o_oHAuuiuwH7hdnE9WtQCu2S4x1TWpxic-CXA%3D%3D\"><img style=\"display: block; width: 32px;\" alt=\"\" width=\"32\" height=\"auto\" src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/669d5713-9b6a-46bb-bd7e-c542cff6dd6a/67a5f8b7ad4949ae834ded7d199b2915/editor_images/Instagram.png\"/></a> </td> <td style=\"padding: 0 8px;text-align: center;\"><a style=\"display: block;\" href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UaMLxmjDlqOoGcD6t0-b7XzYxf-UC16uDBsHw0BGb_jtdVYX4fk7DvUpg9XwXqheYt4RQe5qnqIYhSUBwDjgF799GxTQoDLnHSLa7irQIanb-Ko536q_QGwyux-CIjuTDc7aIssPOdF4sjydrbA6CYTkH0CWbblLTXTVUA0uzS3s7-7EQRq-Btc5R442ljNoNm9jkhE4LJ7-S5Cpzdd78DWcLrF5aZPpeBMUuY2F_xA_GLCKVk8QICZajica-L8McVDstXf1lca8XdCXquTOLSEBhLpSI9kAyb87eIFdr4Wy9CIsq0UIyfwxb25Sk5psyJ0Wqh1TR3IaFxw1kEA4-Q1zIKBXcALAirrurmzN4cKmeEREOSdihDhaJlShRDFJhK6XS1fGTtJVlGFEsdeLSYA9oEbOBAtRRAl_oT9J_0a99BYhfzLvmE2kGCRd9p2_NdfkE59fsIe5KTZzhOJIB3UKSwi9XKSn8ZlYQSCFNtNI\"><img style=\"display: block; width: 32px;\" alt=\"\" width=\"32\" height=\"auto\" src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/669d5713-9b6a-46bb-bd7e-c542cff6dd6a/67a5f8b7ad4949ae834ded7d199b2915/editor_images/Youtube.png\"/></a> </td> <td style=\"padding: 0 8px;text-align: center;\"><a style=\"display: block;\" href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UbBU6qXOKALEm-d8GrnAyio97dVX8ElOrOLRlBDgwZovJXU8ToopZRpvhBkuCBhqSxUtOIDSmk_udewdG6-cYyWiYsfzIi52mTVVpUONvW0rmkvruaDlGscnJQcmrKkWfCk19_jMJex4iCRT-qoLD-MqEzPz4anqLZuLQM20bdpMoNa3vRsqKaPGkNjPONPlP9-hkg89887yNC5wMH_wOQh9cR5NUf1gU9kkwQkd1Z5Z-in7ARleO9P0KAxSC1UlRPSHj9UlNtSDVeq8oArZyp1XdkcUCxvjyUOh1yyISFjdmo65E_BJVnt4ZuYQYRjgYwCsgTPRFDElgi6z0OVP4bcxQnWuYoyKU9p1Yi_GZuaFIRJttLTFnpGRcxEqNZ1Y1hl_QgwhvbHlcC_MSMy_Am0GSf8cwCC19VFUUs0K4Iw77nrMvHzgjk-U33Gw2oZ-AbrA5QmLFWC5lj_BjA9ihdg%3D\"><img style=\"display: block; width: 32px;\" alt=\"\" width=\"32\" height=\"auto\" src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/669d5713-9b6a-46bb-bd7e-c542cff6dd6a/67a5f8b7ad4949ae834ded7d199b2915/editor_images/Linkedin.png\"/></a> </td> <td style=\"padding: 0 8px;text-align: center;\"><a style=\"display: block;\" href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UdsEqTARaDXD4ETpjouoQDY6cWo16GVY-5xU_SdH_WX-8-GH2u2C2y6LFMrBbC4NtwDH_Qqhak42ZntgZ8VWtHmUY3RUNjSiioWSQCYUv9-diF5QoaOXr3JMqG6mP7OQp3xW7wP9s0AEOfvz1iP_YwopJhjFAZScPYv2BYRsXLqKOQeY7Gq7ZGD99DQJHTWmpzV-40hQ4iKQyMDDHcXxlo72468rYRlan66WJaEZ121heoVCLp0iG1BC3v9skaLFRpvE7qRnZxWK1WKtBwc_AvmngTwTn8HaDwcKG5KpIKQWU6PnMCGp0LecfY45DFsUIY2epoK7VRssLtRAZDc5pbgR8Jzsz5WK4zO9zwVumhbv1t3R-fsG8tvoxKHBqyZBJlcKhXMTGKXhRXzNk1i4DlZFQ4ot1X8786TlNmbfPQJTTDnbXL2eqMCFU9pgzAltnA%3D%3D\"><img style=\"display: block; width: 32px;\" alt=\"\" width=\"32\" height=\"auto\" src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/669d5713-9b6a-46bb-bd7e-c542cff6dd6a/67a5f8b7ad4949ae834ded7d199b2915/editor_images/X.png\"/></a> </td> </tr> </tbody> </table> <table width=\"70%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"max-width:420px;\"> <tbody> <tr> <td style=\"max-width:300px; padding: 14px 0 0;\"> <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"> <tbody> <tr> <td align=\"right\" style=\"width: 30%; padding:10px;\"><img border=\"0\" style=\"width: 100%; max-width: 44px; display: block;\" width=\"44\" alt=\"\" src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/669d5713-9b6a-46bb-bd7e-c542cff6dd6a/67a5f8b7ad4949ae834ded7d199b2915/editor_images/t-shirt-and-hoodie.png\"/> </td> <td style=\"width: 70%; padding:10px;\"> <p style=\"font-size: 14px; line-height: 120%; text-align: left; margin: 0;\"> <a style=\"color:#222; text-decoration:underline;\" href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UaBbyfQg5aMVUsFND3PDSUHxgX8kb4w0IeRBeOv0gX2RQKvTG1DGJSGFFgPQp42gmFcdfydXONy6dSl2ijAhP3QWptDO7jPBrxFV7OtmNl3ZPmpIemSoUmh1DDU2C2cv2-1q-LYLcvPAO_rBrSz69GXI8aml5q3qLD4eW4jIqyLAk2HXw87hhpMxfTITVtwfJXaCTzsUYhT_Jbd5Ram29YisDGuCgTwYjFXIi-u10U2vvCrqxBm0ObnfhzQnft6e2oUf6Z7h8LhNBSlSuBUTUSFPRVfghIMRMLdxsIFh6vQ-KyESWrHEl_q2iLhWPDD27rfcMs8JAWBChYllpIlBWhzMRWGHuQJ4flB64S3Kv_Sehorh4OYR061-Vv1PQo8UBMQODgMKNgRADC3NH2ZttPeEA5yipXk8IFwjM0TdZK3lIwi4t0m4Ub4cbAvEn6Nt9QyrWQDAzf4R2vFalW-UTPUb8p5Y5dZBt0y_h7Q60KlJkvPfpwH596F7N2dYaK3ukQ%3D%3D\">Fulfilling your ideas on demand</a> </p> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <p style=\"font-size: 16px; line-height: 24px; text-align: center; color: #222; font-weight: bold; margin: 16px 0 8px 0;\"> Trusted to deliver 111.2M items since 2013 </p> <p style=\"font-size: 14px; line-height: 18px; text-align: center; color: #555; margin: 0 16px 24px;\"> Printful Inc., 11025 Westlake Dr., Charlotte, NC 28273, USA </p> <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"> <tbody> <tr> <td style=\"padding: 0 12px 24px 12px;text-align: center;\"><a style=\"display: block;\" href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UWSnXLB6rIO0OWU_OH9jA32BVbMTvBhnYXGeQPi-0YXQI8Znt814GcvQswviViDDA0dnQLDcUVLSRESWwfwF3ben8C-Vyr74IljwoMOWU0AXmb48cIhAUhgasrzp_Bwy7F-NGRDDaNaENGLSEg8HMrrjQVEKWrcHBXobxZMj3XnqIpVBgAdL7RmmVpORruRNKwK_06nse-_nnMF0yFB7k7iIfUQiEro2XOXG4YEJXsye_5UttQrypOtBVt7cvlX4gvFsKl82l5mUHlkHquwgcw359byzBwlYdGqivfo0Knc9O0RAwthftqtzVxYJ0dBt43xaHBs1nFpmr2qyQTyxu2FrcypNIFhxEfFlNet9OAf6LjqPirxfJ4SWr3Y0Dt9oZbc44wHBQwRy89IVNFMqydq5EWZSfpA3A7eUcQv5v0KYlcEx5il9OcFTwC8JhrPUV1VL1ONFM7MB0k0tjPj9K0kaYt_a9ZKhyyc7QN4Y0OpB7PO03Ec4ZQ2S3Wqd64GxYsQmncwStZM9QBor8pJLds7XmQagclWlTOnUPGz4BQ9M\"><img style=\"display: block; width: 120px;\" alt=\"iOS App\" width=\"120\" height=\"auto\" src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/669d5713-9b6a-46bb-bd7e-c542cff6dd6a/67a5f8b7ad4949ae834ded7d199b2915/editor_images/appstore_EN.png\"/></a> </td> <td style=\"padding: 0 12px 24px 12px;text-align: center;\"><a style=\"display: block;\" href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UWz4af_H727blV2BDJXLDCFx90TVl2SOFt-yJdSdjOoengOTclHGHTGZbLTCgC0Pfhk51VlCTosutj1LheQz_CkebNnbPKCJrj2UsbdLc0gzNwRfFoVkfuwIyllvBrPbQTw9NB3KqkPvLZnkFrdrzbrWouKrG2ZBG9KILuGcPHxkonhwCfKI8_ywz5t3aH_DbijvBaHW-vjvVkZQbH8CQ08DeHmqGDd-D8QTtI1r0XNfSSbJPW6LgsF9_m5Gupd5A3BeFRoEgmu4-vAc-UJQDTsIZ4oXZpOAyZ6AErYX2ByvHwai1xDMzNnzqBzEVcuSiYc8gq6ZTl6cgzk80Jn0YGIrj-2SdMwfK--Uz7CF24ogsC2In6GEwpJXey4GrQzH1Z8Crg6ZruJdU37qkn4ncSO1Ynq6qVxJv73q0Mrta6N0q-m5nd6W7tHUX5_dDtn5-HPUaiZBpBrzc9FIVxAH4_qvQHuuBXaQLgEh5t-TtNClx7Z3x9MfQZlKpTz7YceMOl2y9c1MD0iuqEvBC-yocQA%3D\"><img style=\"display: block; width: 135px;\" alt=\"Google Play\" width=\"135\" height=\"auto\" src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/669d5713-9b6a-46bb-bd7e-c542cff6dd6a/67a5f8b7ad4949ae834ded7d199b2915/editor_images/playstore_EN.png\"/></a> </td> </tr> </tbody> </table> <!-- --> <p style=\"line-height: 120%; font-size: 14px; color: #555; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; text-align:center; margin: 8px 0;\"> You’ve received this email because you’ve registered at Printful to sell online. </p> <!-- --> </td> </tr> </tbody> </table></div></div></td></tr></table><table class=\"text_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"10\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\"><div style=\"font-family:sans-serif\"><div class style=\"font-size:12px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;mso-line-height-alt:14.399999999999999px;color:#555;line-height:1.2\"><p style=\"margin:0;font-size:14px;text-align:center;mso-line-height-alt:16.8px\">Unsubscribe <a href=\"https://links.printful.com/e/eh?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UaBbyfQg5aMVUsFND3PDSUHLQnxoigdllCRIYBbRKeu_BLNjEz6IlGPkZBZrEDnB6YKhuiVJaDnWSTGRNdSew8UCHDvi2CQSEMEJJVVWDeNq-hu79QVR07nRzI_CBP8F-dta_Lnbxzj8ZGU4o9f7X08M0z0N76H3UVJv1FWpqfpcd9G5xUgkH58o_SlgnfTi906jb7cjkXbTuWkq_wS2VeCnIj4lV3HZOcSnXhPQN5si1v-DOyzMSEtGY-GP-d4DapeWrZTnEL2JPUUIhaJV5inBloYwAfRVP7WKjIqYRSgVWcRAh-84UmgqAX_790BbiyLsVBP3zbGYr7DdMfxiJfE%3D\" target=\"_blank\" rel=\"noopener\" style=\"color:#ed4642\">here</a> | Manage your <a href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UaBbyfQg5aMVUsFND3PDSUFegrF01rQGkSAHMoDyxIKxsMNtsxxXm_sDXq-W1WcJKfFMJaChtTXDM_EhZMJ_1hUpB3fdU6UUounHqHzL_awm8h5AgRwQpctEczrJWnh3ZQoh553XuFBSeK7zIrLfeMS_nhYbZqi04lY2B9WCjOAiAzhxXjCnMu9sEccim5iLLluTNAYBoZbVJ6eOr4c-3eVPPJL9-332nemudz1W2sI4_g-mAc6lh8YKIuAX3C6vWIS90uVkN07AysF_Wztx_pV9Kuq7JiVK5IQ8xoIKNtZIEav5i5AXWE7u3a7AQv2drA%3D%3D\" target=\"_blank\" rel=\"noopener\" style=\"color:#ed4642\">email preferences</a></p></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><!-- End -->\r\n<img border=\"0\" width=\"1\" height=\"1\" alt=\"\" src=\"https://post.spmailtechnolo.com/q/nKMVn7TLgGqvFl24wC97AQ~~/AARGbBA~/PJJVLOQFW1N7RIR4dlxqr1_1A8F_c5UTB8SOXS21RkX6d6ZIGxEyPjdcXLpK2pSa\">\r\n</body></html>','Get a $5 coupon for 2-min. survey\n\n\n\n\n  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏ \n ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏ \n ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏ \n ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏ \n ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏ \n ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏ \n <https://www.printful.com/?utm_content=header> \n\nNew products \n<https://www.printful.com/custom/collections/new?utm_content=header> • Services \n<https://www.printful.com/services?utm_content=header> • Blog \n<https://www.printful.com/blog/?utm_content=header> \n\n\n\n\n\n\n\n\n\n\n\nShare your thoughts and save $5 on your next order!\n\n\n\n\nWe see you signed up with Printful a month ago but haven’t ordered anything \nyet. We’d like to hear your thoughts on how we could improve your experience.\n\n\n\nFill out a 2-minute survey and receive a $5 coupon code you can use for \nPrintful orders—a small thank you for your time.\n\n\n\n\n\n\nTake the Survey \n<https://www.surveymonkey.com/r/printful2?env=13058791&profile=b2bShopify>\n\n\n\n\nCheers,\nThe Printful Team\n\n\n\n\n\n\n\n\n\n\n\n\n Stay in touch! \n\n <https://www.tiktok.com/@printful/?utm_content=footer>  \n<https://www.instagram.com/printful/?utm_content=footer>  \n<https://www.youtube.com/PrintfulCustomPrinting?utm_content=footer>  \n<https://www.linkedin.com/company/printful/?utm_content=footer>  \n<https://twitter.com/printful?utm_content=footer> \n\n\nFulfilling your ideas on demand \n<https://www.printful.com/sustainability-responsibility?utm_content=footer> \n\n Trusted to deliver 111.2M items since 2013 \n\n Printful Inc., 11025 Westlake Dr., Charlotte, NC 28273, USA \n\n \n<https://itunes.apple.com/us/app/printful-app/id1348743033?ls=1&mt=8?utm_content=footer>\n \n<https://play.google.com/store/apps/details?id=com.printful.app&utm_content=footer>\n You’ve received this email because you’ve registered at Printful to sell \nonline.\n\n\nUnsubscribe here \n<https://links.printful.com/e/eh?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UaBbyfQg5aMVUsFND3PDSUHLQnxoigdllCRIYBbRKeu_BLNjEz6IlGPkZBZrEDnB6YKhuiVJaDnWSTGRNdSew8UCHDvi2CQSEMEJJVVWDeNq-hu79QVR07nRzI_CBP8F-eTeeG9BadKAZx4QKqLEa85vqCVndAqcp8vRie-ok30masygOjATUaDY2CijwT97UwSQRKI8YVLfmDUEOY_Y0VRc2y8M8yugJHOsgInnJb25oaq0rtXjdCK6vTo9KZPqpQ%3D%3D>\n | Manage youremail preferences \n<https://www.printful.com/dashboard/settings/notifications>',0,0,0,0,0,0,'2025-08-11 16:02:15','2025-12-04 14:04:54','2025-12-04 14:04:54','2025-12-04 14:04:54',NULL,NULL,NULL),
(91,4,'<185437862732438528.0.v2@titan.email>',NULL,NULL,'Re:  Manned Drone project','info@jcdronesltd.com','\"Jc. Drones\"','(No content)','(No content)',0,0,0,0,0,0,'2025-08-08 20:15:40','2025-12-04 14:04:55','2025-12-04 14:04:55','2025-12-04 14:04:55',NULL,NULL,NULL),
(92,4,'<185380474710072320.0.v2@titan.email>',NULL,NULL,'Re:   Manned Drone project','info@jcdronesltd.com','\"Jc. Drones\"','(No content)','(No content)',0,0,0,0,0,0,'2025-08-08 05:03:31','2025-12-04 14:04:56','2025-12-04 14:04:56','2025-12-04 14:04:56',NULL,NULL,NULL),
(93,4,'<sCm0iZcXSh6uPn-MKorZXg@geopod-ismtpd-12>',NULL,NULL,'Fly with a Navy SEAL =?UTF-8?B?4oCU?= Virtual Drone Qualifier is Live!','registration@usnda.org','USNDA Registration','<!doctype html><html lang=\"en\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><!--><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><!--<![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><style type=\"text/css\">#a a {padding:0;}body {margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}table,td {border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;}img {border:0;height:auto;line-height:100%;outline:none;text-decoration:none;-ms-interpolation-mode:bicubic;}p {display:block;margin:13px 0;}</style><!--[if mso]>\r\n    <noscript>\r\n    <xml>\r\n    <o:OfficeDocumentSettings>\r\n      <o:AllowPNG/>\r\n      <o:PixelsPerInch>96</o:PixelsPerInch>\r\n    </o:OfficeDocumentSettings>\r\n    </xml>\r\n    </noscript>\r\n    <![endif]--><!--[if lte mso 11]>\r\n    <style type=\"text/css\">\r\n      .mj-outlook-group-fix { width:100% !important; }\r\n    </style>\r\n    <![endif]--><style type=\"text/css\"></style><style type=\"text/css\"></style><!--[if !mso]><!--><link href=\"https://static.parastorage.com/unpkg/@wix/wix-emails-fonts@1.1.2/f/Ubuntu.css\" rel=\"stylesheet\" type=\"text/css\"><style type=\"text/css\">@import url(https://static.parastorage.com/unpkg/@wix/wix-emails-fonts@1.1.2/f/Ubuntu.css);</style><!--<![endif]--><style type=\"text/css\">@media only screen and (min-width:480px){ .a {width:100%!important;max-width:100%;}.b {width:70.67723342939482%!important;max-width:70.67723342939482%;}.c {width:29.322766570605186%!important;max-width:29.322766570605186%;}.d {width:50%!important;max-width:50%;} }</style><style media=\"screen and (min-width:480px)\">.e .a {width:100%!important;max-width:100%;}.e .b {width:70.67723342939482%!important;max-width:70.67723342939482%;}.e .c {width:29.322766570605186%!important;max-width:29.322766570605186%;}.e .d {width:50%!important;max-width:50%;}</style><style type=\"text/css\">[owa] .a {width:100%!important;max-width:100%;}[owa] .b {width:70.67723342939482%!important;max-width:70.67723342939482%;}[owa] .c {width:29.322766570605186%!important;max-width:29.322766570605186%;}[owa] .d {width:50%!important;max-width:50%;}</style><style type=\"text/css\">.f {text-decoration:none;} @media all and (max-width:480px){ .g td {width:100%!important;} }@media all and (max-width:480px){ .h{font-size:17px!important;}.i{font-size:16px!important;}.j{font-size:14px!important;}.k{font-size:31px!important;}.l{font-size:17px!important;}.m{font-size:31px!important;}.n{font-size:23px!important;}.o{font-size:16px!important;}.p{font-size:15px!important;}.q{font-size:15px!important;}.r{font-size:14px!important;}.s{font-size:29px!important;}.t{font-size:15px!important;}.h{line-height:23.799999999999997px!important;}.i{line-height:22.4px!important;}.j{line-height:19.599999999999998px!important;}.k{line-height:43.4px!important;}.l{line-height:23.799999999999997px!important;}.m{line-height:43.4px!important;}.n{line-height:32.199999999999996px!important;}.o{line-height:22.4px!important;}.r{line-height:19.599999999999998px!important;}.s{line-height:40.599999999999994px!important;} .u>table {width:100%!important;} .v {display:none!important;} .w .x>table>tbody>tr>td {padding-bottom:24px!important;} .y .x>table>tbody>tr>td {padding-top:24px!important;} .w.x>table>tbody>tr>td {padding-bottom:24px!important;} .y.x>table>tbody>tr>td {padding-top:24px!important;} .z .x>table>tbody>tr>td {padding-top:16px!important;} .ab .x>table>tbody>tr>td {padding-right:16px!important;} .bb .x>table>tbody>tr>td {padding-bottom:16px!important;} .cb .x>table>tbody>tr>td {padding-left:16px!important;} .db .x>table>tbody>tr>td {padding-left:0px!important;} .eb .x>table>tbody>tr>td {padding-right:0px!important;} .fb>table>tbody>tr>td {padding-right:16px!important;} .gb>table>tbody>tr>td {padding-left:16px!important;} }@media only screen and (max-width:480px){ .hb>table>tbody>tr>td {padding-bottom:0px!important;} .ib>table>tbody>tr>td {padding-top:24px!important;} .jb {width:36px!important;height:36px!important;} .kb {width:12px!important;} .lb {margin:12px!important;} .mb{font-size:12px!important;} .nb{font-size:31px!important;} .ob{font-size:27px!important;} .pb{font-size:24px!important;} .qb{font-size:17px!important;} .rb{font-size:20px!important;} .sb{font-size:29px!important;} .tb{font-size:14px!important;} .ub{font-size:23px!important;} .vb{line-height:16px!important;} .wb{line-height:36px!important;} .xb{line-height:31px!important;} .yb{line-height:28px!important;} .zb{line-height:23px!important;} .ac{line-height:26px!important;} .bc{line-height:34px!important;} .cc{line-height:19px!important;} .dc {padding:0!important;} .ec {max-width:100%!important;} .fc {max-width:unset!important;} .gc img,.hc img {max-width:none!important;width:100%!important;} .ic>table>tbody>tr>td,.jc>table>tbody>tr>td,.gc>table>tbody>tr>td,.hc>table>tbody>tr>td {padding:0!important;} .gc {padding-bottom:20px!important;} .kc div {height:20px!important;} .gc>table>tbody>tr>td {padding-top:20px!important;} .hc>table>tbody>tr>td {padding-bottom:20px!important;} .gc,.ic {padding-bottom:20px!important;} .lc>table>tbody>tr>td {padding:0px 12px!important;} .jc>table>tbody>tr>td {padding:0px 8px!important;} .jc.hc>table>tbody>tr>td {padding-bottom:20px!important;} .mc {max-width:100%!important;} .mc img {height:100%!important;} .ic img {max-width:none!important;width:100%!important;} .nc {width:100%!important;padding-right:0!important;padding-left:0!important;} .oc>table>tbody>tr>td {padding-bottom:10px!important;} .pc {display:block!important;padding-bottom:18px!important;padding-top:18px!important;} .pc>* {width:70px!important;border-width:1px!important;} .qc {padding-top:0px!important;padding-bottom:0px!important;} .rc {padding-bottom:0px!important;} .oc>table>tbody>tr>td {padding-top:20px!important;} .sc>table>tbody>tr>td {padding:0!important;} .tc {padding:0!important;} .uc>table>tbody>tr>td {padding-top:8px!important;padding-bottom:10px!important;} .vc>table>tbody>tr>td {padding-top:20px!important;padding-bottom:10px!important;} .wc {padding-top:0px!important;padding-bottom:18px!important;} .wc>* {width:70px!important;} .xc {padding:0 20px!important;} .yc {padding:10px 20px 0!important;} .jc.zc {width:75%!important;}.jc.bd {width:25%!important;}.lc .cd>table>tbody>tr>td>a {padding-left:12px!important;padding-right:12px!important;} .dd>div {height:0px!important;} .ed>table>tbody>tr>td {padding-top:0px!important;} .ed .x>table>tbody>tr>td {padding-top:20px!important;} } @media only screen and (min-width:480px){ .html-emails-background>tbody>tr>td {padding:24px 0!important;} .sc.fd>table {border-right:1px solid #282936!important;} .sc.gd>table {border-left:1px solid #282936!important;} .sc.hd>table {height:67px!important;} }a,a:visited {text-decoration:none;}a,a:active,a:visited,a:hover,a:link {color:#109FFF;} .id>table>tbody>tr>td {overflow:hidden;} .id>div>table>tbody>tr>td {overflow:hidden;}[class=\"x_html-emails-background\"] {background-color:#282936!important;} .jc {display:inline-block!important;} .pc {display:none;}[owa] .gc,[owa] .hc {width:50%!important;}[owa] .jd {width:100%!important;max-width:100%!important;}[owa] .kd {max-width:400px;margin:0 auto;}[owa] .ld>table>tbody>tr>td {padding:20px 60px 20px 60px!important;}[owa] .md>table>tbody>tr>td {padding:40px 60px 20px 60px!important;}[owa] .nd {vertical-align:bottom!important;}</style><meta name=\"format-detection\" content=\"telephone=no,date=no,address=no,email=no,url=no\"><link rel=\"icon\" href=\"data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==\"><!--Ą--></head><body style=\"word-spacing:normal;background-color:#FFFFFF\"><div style=\"display:none;font-size:1px;color:#ffffff;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden\"><span>USNDA Virtual Drone Qualifier is Live for 72 hours!</span><span>&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;</span></div><div style=\"-webkit-font-smoothing:antialiased\"><div style=\"color:transparent;visibility:hidden;opacity:0;font-size:0px;border:0;max-height:1px;width:1px;margin:0px;padding:0px;border-width:0px!important;display:none!important;line-height:0px!important\"><img src=\"https://u49873623.ct.sendgrid.net/wf/open?upn=u001.D6mC8SG6iITw2GIzPjAtw3VnKGws73w4Kg-2Fn2LF1yNI0PYnEwO4aViJ17A-2FgMcCyDNZw4BdQF9O4Mb2-2BvqJUO3DQE7Xwf0dQZ0ScflZ658KGUDU39hy2bgSfFxSoQgs7diHI9OG2W5BgRvjyWxNCR0fNws7PV9GzLBjvYP4yEfUzwY7qAevG-2BuLNoc3tndI4Qtv-2FzmG85LF3yOxP7o00YodbHzpg9oBXydVBoYvVAUQxqldMv29yLnwjg1azvddM-2FIQGzvJoIvELDdt16Ca-2FTCRtP5n44ee6zi2IB9xvoOSF58tZkiI-2BzOPKlpifACK10OlTpir8dZE0a5IYFAI-2BgQp8dqIVLX1YgFCvSNgoeTVFOOjqGj6opV-2FE7LC8iPOu1FN1QAnTyErP-2BSNanszLl6zi-2Fu35H5peU4-2FjEFblNpIXRFLfdRHgwqr1V5o29HXDGJGRVPmrk1wfF6zd01vQWtTACrJqaFShc8qVSobsFXc0emL3j3Ib0P6Y8B0Pl1NC-2FiS4dMbTGFqkBr3BiVzCZa6BAt5VaJT1WPAfayeEedndsWEl-2FECT3WESzrEXZ0-2B-2FGQTiaNdBUKlQhcEIzQAQudyCRUsvb4-2Fw-2FpMa9-2BzMH33ZqeHVbZ7D263-2BHqNm0fav6CAWcfYfUFj2BjonnQpMUQ-3D-3D\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/></div><!--[if gte mso 9 & lt mso 16]><style> li { text-indent: -1em; }\r\n</style><![endif]--><!--[if gte mso 16]><style> ul li { margin-left: 60px; margin-right: 60px; } ol li { margin-left: 60px; margin-right: 60px; }\r\n</style><![endif]--><style>@media screen yahoo { .gc img,.hc img {max-width:90%!important;} .od {width:267px!important;} .html-emails-background {background-position:50% 0!important;} .nd {vertical-align:top!important;}tbody tr td div {overflow:visible!important;} }</style><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td><!--[if mso | IE]><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:732px\" width=\"732\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div style=\"margin:0px auto;max-width:732px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:100%\"><tbody><tr><td style=\"direction:ltr;font-size:0px;padding:18px 20px 18px 20px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:692px\"><![endif]--><div class=\"\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"vertical-align:top\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0;word-break:break-word\"><div style=\"font-family:Helvetica,Ubuntu,Arial,sans-serif;font-size:12px;line-height:20px;text-align:center;color:#757575;white-space:pre-wrap\"><strong style=\"font-weight:normal\">Can\'t see this message? <u><a style=\"font-family:Helvetica,Ubuntu,Arial,sans-serif;color:#222222;font-size:12px;line-height:20px;text-decoration:none\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=zh7W9ueRKCvHZlSBYEXU6GeO4S5nM7I8LF_ql8_hcxU.eyJ1IjoiaHR0cHM6Ly91c25kYS5vcmcvc28vODlQUTh1R3JmP2xhbmd1YWdlVGFnPWVuIiwibSI6Im1haWwiLCJjIjoiNGQxMWEzYjYtN2Q0NS00MTk3LTkzODgtZjhiMDlmNGY2MDE0In0\" rel=\"noopener noreferrer\" target=\"_blank\">View in browser</a></u></strong></div></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table><table align=\"center\" class=\"html-emails-background\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#282936;width:100%;background-color:#282936\" width=\"100%\" bgcolor=\"#282936\"><tbody><tr><td><!--[if mso | IE]><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:732px\" width=\"732\" bgcolor=\"#282936\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div style=\"margin:0px auto;max-width:732px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:100%\"><tbody><tr><td style=\"direction:ltr;font-size:0px;padding:16px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"z bb ed\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;border-top:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:#282936;vertical-align:top;padding:20px 0px 20px 0px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><div style=\"text-align:center\"><a class=\"\" style=\"display:inline-block;max-width:100%;max-height:122px\"><!--[if mso]><img src=\"https://images.wixstatic.com/media/56e7cd_dba4bd5067714c3fa175150e3204a889~mv2.png/v1/fit/h_122,q_100,w_694,al_c,lg_0/56e7cd_dba4bd5067714c3fa175150e3204a889~mv2.png\" width=\"auto\" style=\"display:inline-block;max-width:100%;width:auto;vertical-align:middle;max-height:122px\" alt=\"\"/><![endif]--><!--[if !mso]><!--><img src=\"https://images.wixstatic.com/media/56e7cd_dba4bd5067714c3fa175150e3204a889~mv2.png/v1/fit/h_244,q_100,w_694,al_c,lg_0/56e7cd_dba4bd5067714c3fa175150e3204a889~mv2.png\" width=\"auto\" style=\"display:inline-block;max-width:100%;width:auto;vertical-align:middle;max-height:122px\" alt=\"\"><!--<![endif]--></a></div></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h z ab bb cb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:#282936;border:0px none transparent;border-radius:0px;vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><p style=\"margin:0;font-size:12px;line-height:16px;\" class=\"mb vb\"><span style=\"color:rgb(255,255,255)\" class=\"mb vb\"><span style=\"font-size:12px;line-height:16px;\" class=\"mb vb\">Having trouble viewing this email?<br></span></span><a target=\"_blank\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=uR2P_H-mpT5YSV1jgypVL0PbUdSghJX4OmWp938CBs0.eyJ1IjoiaHR0cHM6Ly91c25kYS5vcmcvc28vYTBQUHphUzUtP2xhbmd1YWdlVGFnPWVuJnN0YXR1cz1EcmFmdCZjaWQ9MDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIiwiciI6IjI4NzU0OWYzLWJjM2QtNGRmNy1iNzk1LTQyMGE3OWI3ZmI2YSIsIm0iOiJtYWlsIiwiYyI6IjRkMTFhM2I2LTdkNDUtNDE5Ny05Mzg4LWY4YjA5ZjRmNjAxNCJ9\" rel=\"noopener noreferrer\" style=\"color:#109FFF;text-decoration:none;\"><span style=\"color:rgb(255,255,255);line-height:16px;font-size:12px;text-decoration:underline\" class=\"mb vb\">Click here to view it in your browser.</span></a></p><p style=\"margin:0;font-size:12px;line-height:16px;\" class=\"mb vb\"><span style=\"color:rgb(255,255,255)\" class=\"mb vb\">or </span><a target=\"_blank\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=Vdj9wbaej53uoQPC5m7uswUG9ihjShNWx6v2s65DThc.eyJ1IjoiaHR0cHM6Ly82YThiNDQ2MS0xMmEwLTQzYTItYmQxZi00YzBjOGY3Zjc2ZDQudXNyZmlsZXMuY29tL3VnZC82YThiNDRfY2JiY2M2YmEzMzdiNDVmNDlhYThlMzdhNzllZmI2NDkucGRmIiwiciI6IjI4NzU0OWYzLWJjM2QtNGRmNy1iNzk1LTQyMGE3OWI3ZmI2YSIsIm0iOiJtYWlsIiwiYyI6IjRkMTFhM2I2LTdkNDUtNDE5Ny05Mzg4LWY4YjA5ZjRmNjAxNCJ9\" rel=\"noopener noreferrer\" style=\"color:#109FFF;text-decoration:none;\"><span style=\"color:rgb(255,255,255);line-height:16px;font-size:12px;text-decoration:underline\" class=\"mb vb\">Click here to download it as a PDF.</span></a></p></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 0px 0px 0px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:1;text-align:center;color:#000000;white-space:pre-wrap\"><a style=\"display:inline-block;max-width:100%\"><!--[if mso]><img src=\"https://static.wixstatic.com/media/b31579_120cd48e5fb9417a98d41fa7774d27be~mv2.jpg/v1/fit/w_694,h_2000,al_c,q_85/b31579_120cd48e5fb9417a98d41fa7774d27be~mv2.jpg\" width=\"694\" style=\"display:inline-block;max-width:100%;width:auto;vertical-align:middle\" alt=\"\"/><![endif]--><!--[if !mso]><!--><img src=\"https://static.wixstatic.com/media/b31579_120cd48e5fb9417a98d41fa7774d27be~mv2.jpg/v1/fit/w_1388,h_2000,al_c,q_85/b31579_120cd48e5fb9417a98d41fa7774d27be~mv2.jpg\" width=\"auto\" style=\"display:inline-block;max-width:100%;vertical-align:middle;width:auto;\" alt=\"\"><!--<![endif]--></a></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 0px 0px 0px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:1;text-align:center;color:#000000;white-space:pre-wrap\"><a style=\"display:inline-block;max-width:100%\"><!--[if mso]><img src=\"https://static.wixstatic.com/media/6a8b44_a91c8f3713744508af4787485ece4623~mv2.png/v1/fit/w_694,h_2000,al_c,q_85/6a8b44_a91c8f3713744508af4787485ece4623~mv2.png\" width=\"694\" style=\"display:inline-block;max-width:100%;width:auto;vertical-align:middle\" alt=\"\"/><![endif]--><!--[if !mso]><!--><img src=\"https://static.wixstatic.com/media/6a8b44_a91c8f3713744508af4787485ece4623~mv2.png/v1/fit/w_1388,h_2000,al_c,q_85/6a8b44_a91c8f3713744508af4787485ece4623~mv2.png\" width=\"auto\" style=\"display:inline-block;max-width:100%;vertical-align:middle;width:auto;\" alt=\"\"><!--<![endif]--></a></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h z ab cb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:#C2274B;border:0px none transparent;border-radius:0px;vertical-align:top;padding:20px 60px 0px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><h1 class=\"k nb wb\" style=\"margin:0;margin-block-start:0px;margin-block-end:0px;margin-inline-start:0px;margin-inline-end:0px;font-weight:normal;color:#282936;font-family:helvetica,sans-serif;font-size:42px;line-height:58px;\"><span style=\"color:rgb(255,255,255);font-weight:bold\" class=\"nb wb\">-TRYOUTS ARE LIVE-</span></h1></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h ab bb cb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:#C2274B;border:0px none transparent;border-radius:0px;vertical-align:top;padding:0px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><h2 style=\"margin:0;margin-block-start:0px;margin-block-end:0px;margin-inline-start:0px;margin-inline-end:0px;font-weight:normal;color:#282936;font-family:helvetica,sans-serif;font-size:30px;line-height:42px;\" class=\"s ob xb\"><span style=\"color:rgb(255,255,255)\" class=\"ob xb\">Sign Up Now to Secure Your Spot</span></h2></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"z ab bb cb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:#C2274B;vertical-align:top;padding:20px 60px 40px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" valign=\"middle\" class=\"id\" style=\"font-size:0px;padding:0;word-break:break-word\"><div style=\"max-width:400px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate;line-height:100%\"><tbody><tr><td align=\"center\" bgcolor=\"#282936\" role=\"presentation\" style=\"border:solid 0px #C2274B;border-radius:0px;cursor:auto;mso-padding-alt:12px 40px 12px 40px;background:#282936\" valign=\"middle\"><a href=\"https://usnda.org/so/89PQ8uGrf/c?w=4wERl47un4WgZ_YKpR3PD3xhNv5UtXcG31EEiPKccas.eyJ1IjoiaHR0cHM6Ly93d3cudXNuZGEub3JnL2NvbXBldGUiLCJyIjoiMjQzZDI5NzctMGE0My00NGFjLTgxNWMtOGMwNjM3MTk3MmYxIiwibSI6Im1haWwiLCJjIjoiNGQxMWEzYjYtN2Q0NS00MTk3LTkzODgtZjhiMDlmNGY2MDE0In0\" rel=\"noopener\" style=\"display:inline-block;background:#282936;color:#FFFFFF;font-family:helvetica,sans-serif;font-size:15px;font-weight:normal;line-height:120%;margin:0;text-decoration:none;text-transform:none;padding:12px 40px 12px 40px;mso-padding-alt:0px;border-radius:0px;\" target=\"_blank\"><strong style=\"font-weight:inherit\">Sign Up Here</strong></a><img height=\"1\" style=\"display:block;width:100px!important;height:1px;max-width:100%!important;max-height:1px\" src=\"https://static.wixstatic.com/media/5e9922_0a9111966d7648649336e1f1546c5ec9~mv2.gif\" alt=\"\"></td></tr></tbody></table></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h z ab bb cb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:#282936;border:0px none transparent;border-radius:0px;vertical-align:top;padding:20px 60px 32px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><h2 style=\"margin:0;margin-block-start:0px;margin-block-end:0px;margin-inline-start:0px;margin-inline-end:0px;font-weight:normal;color:#282936;font-family:helvetica,sans-serif;font-size:30px;line-height:42px;\" class=\"s ob xb\"><span style=\"color:rgb(255,255,255);font-weight:bold\" class=\"ob xb\">Climb the leaderboard and earn your shot to compete alongside real special ops warfighters.</span></h2></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"ab cb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:#282936;vertical-align:top;padding:0px 0px 0px 0px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><table cellpadding=\"0\" cellspacing=\"0\" width=\"62\" border=\"0\" style=\"color:#000000;font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:22px;table-layout:auto;width:62px;border:none\"><tr><td height=\"40px\"><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"border-bottom:2px solid #C2274B\"></td></tr></table></td></tr></table></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h ab bb cb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:#282936;border:0px none transparent;border-radius:0px;vertical-align:top;padding:0px 60px 32px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><h2 style=\"margin:0;margin-block-start:0px;margin-block-end:0px;margin-inline-start:0px;margin-inline-end:0px;font-weight:normal;color:#282936;font-family:helvetica,sans-serif;font-size:30px;line-height:42px;\" class=\"s ob xb\"><span style=\"color:rgb(255,255,255)\" class=\"ob xb\"><span style=\"font-size:24px;line-height:33px;\" class=\"pb yb\">This isn’t just a game. It’s your mission.<br><span style=\"font-weight:bold\" class=\"pb yb\">Live finals. National stage. Washington, D.C.</span></span></span></h2></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h gb db fb eb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:transparent;border:0px none transparent;border-radius:0px;vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><h1 class=\"k nb wb\" style=\"margin:0;margin-block-start:0px;margin-block-end:0px;margin-inline-start:0px;margin-inline-end:0px;font-weight:normal;color:#282936;font-family:helvetica,sans-serif;font-size:42px;line-height:58px;\"><span style=\"font-weight:bold\" class=\"nb wb\">Velocidrone Simulator Qualifier</span></h1><p class=\"h qb zb\" style=\"margin:0;color:#282936;font-family:helvetica,sans-serif;font-size:17px;line-height:23px;\"><span style=\"font-weight:normal\" class=\"qb zb\">Practice Track now live and open to all students + service members</span></p><p class=\"h qb zb\" style=\"margin:0;color:#282936;font-family:helvetica,sans-serif;font-size:17px;line-height:28px;\"><span style=\"font-size:20px;text-decoration:underline;font-weight:bold;font-style:italic\" class=\"rb ac\">Registration closes May 4</span></p><p class=\"h qb zb\" style=\"margin:0;color:#282936;font-family:helvetica,sans-serif;font-size:17px;line-height:23px;\">&nbsp;</p></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h gb db fb eb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:transparent;border:0px none transparent;border-radius:0px;vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><p style=\"margin:0;line-height:23px;font-size:17px;\" class=\"qb zb\">Start competing now!</p></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"gb db fb eb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" valign=\"middle\" class=\"id\" style=\"font-size:0px;padding:0;word-break:break-word\"><div style=\"max-width:400px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate;line-height:100%\"><tbody><tr><td align=\"center\" bgcolor=\"#C2274B\" role=\"presentation\" style=\"border:solid 0px #C2274B;border-radius:0px;cursor:auto;mso-padding-alt:12px 40px 12px 40px;background:#C2274B\" valign=\"middle\"><a href=\"https://usnda.org/so/89PQ8uGrf/c?w=10qur6ZO5-uTNEp6CTTGu4TL3ldvJpJB7BpjaPdssZ8.eyJ1IjoiaHR0cHM6Ly80ODc4ZjgzNS1hMjQyLTQ5MmMtYTY1Ni00ZDNmODgwNWViNjIudXNyZmlsZXMuY29tL3VnZC82YThiNDRfZWM2NTY4N2M3YmYwNDZkMjgyZDczNmM1ZGQ0MTQ1OGMucGRmP2RuPVVTTkRBJTIwTWlsaXRhcnklMjBEcm9uZSUyMENvbXBldGl0aW9uLnBkZiIsInIiOiIzYjVjY2E4ZC0yN2NhLTQ5M2ItYjQxZS02MTFhZjExOTRlNTQiLCJtIjoibWFpbCIsImMiOiI0ZDExYTNiNi03ZDQ1LTQxOTctOTM4OC1mOGIwOWY0ZjYwMTQifQ\" rel=\"noopener\" style=\"display:inline-block;background:#C2274B;color:#FFFFFF;font-family:helvetica,sans-serif;font-size:15px;font-weight:normal;line-height:120%;margin:0;text-decoration:none;text-transform:none;padding:12px 40px 12px 40px;mso-padding-alt:0px;border-radius:0px;\" target=\"_blank\"><strong style=\"font-weight:inherit\">Download the Official USNDA Tryouts track</strong></a><img height=\"1\" style=\"display:block;width:100px!important;height:1px;max-width:100%!important;max-height:1px\" src=\"https://static.wixstatic.com/media/5e9922_0a9111966d7648649336e1f1546c5ec9~mv2.gif\" alt=\"\"></td></tr></tbody></table></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"gb db fb eb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 0px 0px 0px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><table cellpadding=\"0\" cellspacing=\"0\" width=\"62\" border=\"0\" style=\"color:#000000;font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:22px;table-layout:auto;width:62px;border:none\"><tr><td height=\"40px\"><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"border-bottom:2px solid #C2274B\"></td></tr></table></td></tr></table></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h gb db fb eb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:transparent;border:0px none transparent;border-radius:0px;vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><p style=\"margin:0;line-height:23px;font-size:17px;\" class=\"qb zb\">The United States National Drone Association™ (USNDA) invites high school and college students, university drone clubs, and aspiring drone pilots across the nation to compete in the ultimate virtual qualifier.<br><br>We’re excited to announce that the Velocidrone Practice Track is now LIVE and open to all service members, high school students, and university-level participants. Whether you’re new to drone flight or a seasoned pilot, this is your chance to fly with purpose.</p></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h gb db fb eb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:transparent;border:0px none transparent;border-radius:0px;vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><h2 style=\"margin:0;margin-block-start:0px;margin-block-end:0px;margin-inline-start:0px;margin-inline-end:0px;font-weight:normal;color:#282936;font-family:helvetica,sans-serif;font-size:36px;line-height:50px;\" class=\"s sb bc\"><span style=\"font-weight:bold\" class=\"sb bc\">Sign Up Now to Secure Your Spot</span></h2></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"gb db fb eb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" valign=\"middle\" class=\"id\" style=\"font-size:0px;padding:0;word-break:break-word\"><div style=\"max-width:400px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate;line-height:100%\"><tbody><tr><td align=\"center\" bgcolor=\"#C2274B\" role=\"presentation\" style=\"border:solid 0px #C2274B;border-radius:0px;cursor:auto;mso-padding-alt:12px 40px 12px 40px;background:#C2274B\" valign=\"middle\"><a href=\"https://usnda.org/so/89PQ8uGrf/c?w=31ts5GFcvU3lIUPurJnAfmn2nwzC-c-QgkYVFO4UmvU.eyJ1IjoiaHR0cHM6Ly93d3cudXNuZGEub3JnL2NvbXBldGUiLCJyIjoiOGVlYjIzMDAtMzBiMi00MjUxLTg1MWEtZjdkMzU3MGUyOWU4IiwibSI6Im1haWwiLCJjIjoiNGQxMWEzYjYtN2Q0NS00MTk3LTkzODgtZjhiMDlmNGY2MDE0In0\" rel=\"noopener\" style=\"display:inline-block;background:#C2274B;color:#FFFFFF;font-family:helvetica,sans-serif;font-size:15px;font-weight:normal;line-height:120%;margin:0;text-decoration:none;text-transform:none;padding:12px 40px 12px 40px;mso-padding-alt:0px;border-radius:0px;\" target=\"_blank\"><strong style=\"font-weight:inherit\">Sign Up Here</strong></a><img height=\"1\" style=\"display:block;width:100px!important;height:1px;max-width:100%!important;max-height:1px\" src=\"https://static.wixstatic.com/media/5e9922_0a9111966d7648649336e1f1546c5ec9~mv2.gif\" alt=\"\"></td></tr></tbody></table></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"gb db fb eb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 40px 0px 40px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\" style=\"color:#000000;font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:22px;table-layout:auto;width:100%;border:none\"><tr><td height=\"40px\"><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"border-bottom:1px solid #C2274B\"></td></tr></table></td></tr></table></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h gb db fb eb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:rgba(255,255,255,0);border:0px none transparent;border-radius:0px;vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><h1 class=\"k nb wb\" style=\"margin:0;margin-block-start:0px;margin-block-end:0px;margin-inline-start:0px;margin-inline-end:0px;font-weight:normal;color:#282936;font-family:helvetica,sans-serif;font-size:42px;line-height:58px;\"><span style=\"font-weight:bold\" class=\"nb wb\">How To Participate:</span></h1></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"gb db fb eb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"border:0px none transparent;vertical-align:top;padding:20px 215px 20px 215px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:1;text-align:center;color:#000000;white-space:pre-wrap\"><a style=\"display:inline-block;max-width:100%\"><!--[if mso]><img src=\"https://static.wixstatic.com/media/6a8b44_8b25005cee5d4cbc9d268eb8d1eed45f~mv2.png/v1/fit/w_264,h_2000,al_c,q_85/6a8b44_8b25005cee5d4cbc9d268eb8d1eed45f~mv2.png\" width=\"264\" style=\"display:inline-block;max-width:100%;width:auto;vertical-align:middle\" alt=\"\"/><![endif]--><!--[if !mso]><!--><img src=\"https://static.wixstatic.com/media/6a8b44_8b25005cee5d4cbc9d268eb8d1eed45f~mv2.png/v1/fit/w_528,h_2000,al_c,q_85/6a8b44_8b25005cee5d4cbc9d268eb8d1eed45f~mv2.png\" width=\"auto\" style=\"display:inline-block;max-width:100%;vertical-align:middle;width:auto;\" alt=\"\"><!--<![endif]--></a></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h gb db fb eb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:transparent;border:0px none transparent;border-radius:0px;vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><p style=\"margin:0;line-height:23px;font-size:17px;\" class=\"qb zb\">Sign up using the button below</p></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"gb db fb eb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" valign=\"middle\" class=\"id\" style=\"font-size:0px;padding:0;word-break:break-word\"><div style=\"max-width:400px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate;line-height:100%\"><tbody><tr><td align=\"center\" bgcolor=\"#C2274B\" role=\"presentation\" style=\"border:solid 0px #C2274B;border-radius:0px;cursor:auto;mso-padding-alt:12px 40px 12px 40px;background:#C2274B\" valign=\"middle\"><a href=\"https://usnda.org/so/89PQ8uGrf/c?w=4sitK0VOD_Nv_Na0t8Lu1gcVLEeeBQfwBghTEaP3GlA.eyJ1IjoiaHR0cHM6Ly93d3cudXNuZGEub3JnL2NvbXBldGUiLCJyIjoiOGZmNzkzZWYtOWU1YS00MDI5LThiNWQtZjQ2NDU5OTIzMDQ1IiwibSI6Im1haWwiLCJjIjoiNGQxMWEzYjYtN2Q0NS00MTk3LTkzODgtZjhiMDlmNGY2MDE0In0\" rel=\"noopener\" style=\"display:inline-block;background:#C2274B;color:#FFFFFF;font-family:helvetica,sans-serif;font-size:15px;font-weight:normal;line-height:120%;margin:0;text-decoration:none;text-transform:none;padding:12px 40px 12px 40px;mso-padding-alt:0px;border-radius:0px;\" target=\"_blank\"><strong style=\"font-weight:inherit\">Sign Up</strong></a><img height=\"1\" style=\"display:block;width:100px!important;height:1px;max-width:100%!important;max-height:1px\" src=\"https://static.wixstatic.com/media/5e9922_0a9111966d7648649336e1f1546c5ec9~mv2.gif\" alt=\"\"></td></tr></tbody></table></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"gb db fb eb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 40px 0px 40px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:1;text-align:center;color:#000000;white-space:pre-wrap\"><a style=\"display:inline-block;max-width:100%;line-height:40px\"><img src=\"https://images.wixstatic.com/media/a306cb_3d2c01641d3e44db820b987d9be43503~mv2.png/v1/fit/al_c,h_18,q_100,w_33,br_-24,sat_-20,hue_166/a306cb_3d2c01641d3e44db820b987d9be43503~mv2.png\" width=\"33\" height=\"18\" style=\"display:inline-block;max-width:100%;width:auto;vertical-align:middle\" alt=\"\"></a></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"gb db fb eb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"border:0px none transparent;vertical-align:top;padding:20px 215px 20px 215px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:1;text-align:center;color:#000000;white-space:pre-wrap\"><a style=\"display:inline-block;max-width:100%\"><!--[if mso]><img src=\"https://static.wixstatic.com/media/6a8b44_e477d1d9288243a49e538fa004bf1796~mv2.png/v1/fit/w_264,h_2000,al_c,q_85/6a8b44_e477d1d9288243a49e538fa004bf1796~mv2.png\" width=\"264\" style=\"display:inline-block;max-width:100%;width:auto;vertical-align:middle\" alt=\"\"/><![endif]--><!--[if !mso]><!--><img src=\"https://static.wixstatic.com/media/6a8b44_e477d1d9288243a49e538fa004bf1796~mv2.png/v1/fit/w_528,h_2000,al_c,q_85/6a8b44_e477d1d9288243a49e538fa004bf1796~mv2.png\" width=\"auto\" style=\"display:inline-block;max-width:100%;vertical-align:middle;width:auto;\" alt=\"\"><!--<![endif]--></a></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h gb db fb eb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:transparent;border:0px none transparent;border-radius:0px;vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><p style=\"margin:0;line-height:23px;font-size:17px;\" class=\"qb zb\">Access Practice Track + Setup Instructions</p></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"gb db fb eb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" valign=\"middle\" class=\"id\" style=\"font-size:0px;padding:0;word-break:break-word\"><div style=\"max-width:400px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate;line-height:100%\"><tbody><tr><td align=\"center\" bgcolor=\"#C2274B\" role=\"presentation\" style=\"border:solid 0px #C2274B;border-radius:0px;cursor:auto;mso-padding-alt:12px 40px 12px 40px;background:#C2274B\" valign=\"middle\"><a href=\"https://usnda.org/so/89PQ8uGrf/c?w=XJC_ScXfZaYkgXQa_ArBaUvYTun1RFlEeSfYLvhxib4.eyJ1IjoiaHR0cHM6Ly80ODc4ZjgzNS1hMjQyLTQ5MmMtYTY1Ni00ZDNmODgwNWViNjIudXNyZmlsZXMuY29tL3VnZC82YThiNDRfZWM2NTY4N2M3YmYwNDZkMjgyZDczNmM1ZGQ0MTQ1OGMucGRmP2RuPVVTTkRBJTIwTWlsaXRhcnklMjBEcm9uZSUyMENvbXBldGl0aW9uLnBkZiIsInIiOiJmODc4NTQ4NS0wYjI3LTQ1ODgtYjBlYS1jN2QwZmUyZTkwNjEiLCJtIjoibWFpbCIsImMiOiI0ZDExYTNiNi03ZDQ1LTQxOTctOTM4OC1mOGIwOWY0ZjYwMTQifQ\" rel=\"noopener\" style=\"display:inline-block;background:#C2274B;color:#FFFFFF;font-family:helvetica,sans-serif;font-size:15px;font-weight:normal;line-height:120%;margin:0;text-decoration:none;text-transform:none;padding:12px 40px 12px 40px;mso-padding-alt:0px;border-radius:0px;\" target=\"_blank\"><strong style=\"font-weight:inherit\">Instructions</strong></a><img height=\"1\" style=\"display:block;width:100px!important;height:1px;max-width:100%!important;max-height:1px\" src=\"https://static.wixstatic.com/media/5e9922_0a9111966d7648649336e1f1546c5ec9~mv2.gif\" alt=\"\"></td></tr></tbody></table></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h gb db fb eb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:rgba(255,255,255,0);border:0px none transparent;border-radius:0px;vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><p style=\"margin:0;line-height:23px;font-size:17px;\" class=\"qb zb\">This is more than just a drone race. It’s your gateway to national recognition, networking with defense and industry leaders, and shaping the future of drone innovation in the U.S.</p></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"gb db fb eb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 40px 0px 40px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\" style=\"color:#000000;font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:22px;table-layout:auto;width:100%;border:none\"><tr><td height=\"40px\"><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"border-bottom:3px solid #C2274B\"></td></tr></table></td></tr></table></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"gb db fb eb gb db fb eb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:490.5px\"><![endif]--><div class=\"gc ec\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;max-width:70.67723342939482%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 20px 20px 40px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"\"><div class=\"h\" style=\"color:#282936;font-family:helvetica,sans-serif;font-size:17px;line-height:NaNpx;\"><h3 class=\"n ub yb\" style=\"margin:0;margin-block-start:0px;margin-block-end:0px;margin-inline-start:0px;margin-inline-end:0px;font-weight:normal;font-size:23px;line-height:32px\"><span style=\"font-weight:bold\" class=\"ub yb\">About the United States National Drone Association™</span></h3></div></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td><td style=\"vertical-align:top;width:203.5px\"><![endif]--><div class=\"hc ec\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;max-width:29.322766570605186%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 40px 20px 20px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><!--[if mso]><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:1;text-align:center;color:#000000;white-space:pre-wrap\"><a class=\"html-emails-mix-image-wrapper html-emails-mix-image-wrapper-full-width\" style=\"display:inline-block;max-width:143px;width:100%\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=IV1o3imFtCenssnnO8xF86KrXnpYY900iRgqsBnpqVs.eyJ1IjoiaHR0cHM6Ly93d3cudXNuZGEub3JnLyIsInIiOiI2NzRkZWM4Mi0zN2NkLTQ3NzItODdlMC1hMjZjYjdiNTgzYzQiLCJtIjoibWFpbCIsImMiOiI0ZDExYTNiNi03ZDQ1LTQxOTctOTM4OC1mOGIwOWY0ZjYwMTQifQ\" target=\"_blank\"><img src=\"https://static.wixstatic.com/media/eceb8e_3180aaf897c04bf1ac5a4e331fe8a86a~mv2.png/v1/fit/w_700,h_2000,al_c,q_85/eceb8e_3180aaf897c04bf1ac5a4e331fe8a86a~mv2.png\" width=\"143\" style=\"display:inline-block;max-width:100%;width:143px;vertical-align:middle\" alt=\"\"/></a></div></td></tr><![endif]--><!--[if !mso]><!--><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:1;text-align:center;color:#000000;white-space:pre-wrap\"><a class=\"od mc\" style=\"display:inline-block;max-width:143px;width:100%\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=IV1o3imFtCenssnnO8xF86KrXnpYY900iRgqsBnpqVs.eyJ1IjoiaHR0cHM6Ly93d3cudXNuZGEub3JnLyIsInIiOiI2NzRkZWM4Mi0zN2NkLTQ3NzItODdlMC1hMjZjYjdiNTgzYzQiLCJtIjoibWFpbCIsImMiOiI0ZDExYTNiNi03ZDQ1LTQxOTctOTM4OC1mOGIwOWY0ZjYwMTQifQ\" target=\"_blank\"><img src=\"https://static.wixstatic.com/media/eceb8e_3180aaf897c04bf1ac5a4e331fe8a86a~mv2.png/v1/fit/w_700,h_2000,al_c,q_85/eceb8e_3180aaf897c04bf1ac5a4e331fe8a86a~mv2.png\" width=\"143\" style=\"display:inline-block;max-width:100%;width:143px;vertical-align:middle\" alt=\"\"></a></div></td></tr><!--<![endif]--></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h gb db fb eb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:transparent;border:0px none transparent;border-radius:0px;vertical-align:top;padding:10px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><p style=\"margin:0;text-align:left;line-height:23px;font-size:17px;\" class=\"qb zb\">The United States National Drone Association™ (USNDA) accelerates America’s drone readiness by connecting top talent, breakthrough tech, and national security missions. We host elite competitions, surface real-world challenges from defense and public safety agencies, and help fast-track innovative solutions into government hands.<br>From students to startups, USNDA creates the platforms where the next generation of drone professionals rise, and where the future of U.S. drone capability takes flight. Learn more at <a target=\"_blank\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=D2ly53IGTiFH6itRtc4RaloLzgg1v7S1vii3_2-_FKY.eyJ1IjoiaHR0cHM6Ly91c25kYS5vcmciLCJyIjoiOTYxNzBhNGMtMDAzZi00MDI1LTgyZDktMGJkNDFjZDY5NGE1IiwibSI6Im1haWwiLCJjIjoiNGQxMWEzYjYtN2Q0NS00MTk3LTkzODgtZjhiMDlmNGY2MDE0In0\" rel=\"noopener noreferrer\" style=\"color:#109FFF;text-decoration:none;\"><span style=\"text-decoration:underline;line-height:23px;font-size:17px;\" class=\"qb zb\">USNDA.org</span></a></p></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h gb db fb eb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:transparent;border:0px none transparent;border-radius:0px;vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><p style=\"margin:0;line-height:23px;font-size:17px;\" class=\"qb zb\"><span style=\"font-weight:bold\" class=\"qb zb\">Join the movement. Fly the mission. Shape the future.</span></p></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"gb db fb eb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 0px 0px 0px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><table cellpadding=\"0\" cellspacing=\"0\" width=\"62\" border=\"0\" style=\"color:#000000;font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:22px;table-layout:auto;width:62px;border:none\"><tr><td height=\"40px\"><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"border-bottom:2px solid #C2274B\"></td></tr></table></td></tr></table></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h gb db fb eb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:transparent;border:0px none transparent;border-radius:0px;vertical-align:top;padding:20px 60px 0px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><p style=\"margin:0;font-size:14px;line-height:19px;\" class=\"tb cc\"><span style=\"\" class=\"tb cc\">Questions? Reach us at </span><a target=\"_blank\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=1mklv5DzB3HpFHjsK6crIZ7dnIY2lmcOB3gRwTxue8U.eyJ1IjoibWFpbHRvOmFjYWRlbWljcGFydG5lcnNAdXNuZGEub3JnP3N1YmplY3Q9VmVsb2NpZHJvbmUlMjBFdmVudCUyMFF1ZXN0aW9uIiwiciI6ImM4MzU0NDhhLTZiZWItNGZmMC05ZTAxLWU3YWUwOWE2YjA5YiIsIm0iOiJtYWlsIiwiYyI6IjRkMTFhM2I2LTdkNDUtNDE5Ny05Mzg4LWY4YjA5ZjRmNjAxNCJ9\" rel=\"noopener noreferrer\" style=\"color:#109FFF;text-decoration:none;\"><span style=\"font-size:14px;line-height:19px;text-decoration:underline\" class=\"tb cc\">registration@usnda.org</span></a></p></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"gb db fb eb oc\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><![endif]--><div class=\"tc\" style=\"height:10px;padding:20px 60px 0px 60px\"></div><!--[if mso | IE]><td style=\"vertical-align:middle;width:347px\"><![endif]--><div class=\"sc fd hd ec\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;max-width:50%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:middle;padding-right:0px;padding-left:60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:10px 25px;padding-top:0px;padding-right:10px;padding-bottom:0px;padding-left:10px;word-break:break-word\"><div style=\"font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:1;text-align:center;color:#000000;white-space:pre-wrap\"><p class=\"j\" style=\"margin:0;line-height:1.4;font-size:14px;color:#282936;font-family:helvetica,sans-serif;margin-bottom:10px;\">Follow us on</p><p style=\"margin:0;white-space:normal;\"><a style=\"vertical-align:middle;display:inline-block;text-decoration:none\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=3t2fjlxVHPsOrN5Kd2yVLoZAnHrDjwLjUr2xJhxQiUo.eyJ1IjoiaHR0cHM6Ly93d3cuZmFjZWJvb2suY29tL3Byb2ZpbGUucGhwP2lkPTYxNTc0OTMzOTM5NTQwIyIsInIiOiJhMTkyZWQ5OS1hNmM5LTQwZDMtYTdlOS03MmY5MTQ2ZTZkZjUiLCJtIjoibWFpbCIsImMiOiI0ZDExYTNiNi03ZDQ1LTQxOTctOTM4OC1mOGIwOWY0ZjYwMTQifQ\" target=\"_blank\"><img class=\"jb lb\" src=\"https://images.wixstatic.com/media/5e9922_549fe65f377b4459894488d785954edd~mv2.png/v1/fit/w_750,h_750,br_-79,sat_-74,hue_56,lg_0/5e9922_549fe65f377b4459894488d785954edd~mv2.png\" width=\"28\" height=\"28\" alt=\"\" style=\"margin:6px\"></a><a style=\"vertical-align:middle;display:inline-block;text-decoration:none\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=zqMqYRW75R2Q6NQCTZ70UqjvS9E0gg8tlMD_dnhfmtM.eyJ1IjoiaHR0cHM6Ly9pbnN0YWdyYW0uY29tL3VzbmRhb2ZmaWNpYWwiLCJyIjoiYTE5MmVkOTktYTZjOS00MGQzLWE3ZTktNzJmOTE0NmU2ZGY1IiwibSI6Im1haWwiLCJjIjoiNGQxMWEzYjYtN2Q0NS00MTk3LTkzODgtZjhiMDlmNGY2MDE0In0\" target=\"_blank\"><img class=\"jb lb\" src=\"https://images.wixstatic.com/media/5e9922_b329b26d01b040f3845afc82c7ed6f3d~mv2.png/v1/fit/w_750,h_750,br_-79,sat_-74,hue_56,lg_0/5e9922_b329b26d01b040f3845afc82c7ed6f3d~mv2.png\" width=\"28\" height=\"28\" alt=\"\" style=\"margin:6px\"></a><a style=\"vertical-align:middle;display:inline-block;text-decoration:none\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=PxnV7SFZRjBD3ejU18AWGH9HK-h7KF9Q_3MOzIFuDvg.eyJ1IjoiaHR0cHM6Ly93d3cueW91dHViZS5jb20vQFVTTkRBT1BFUkFUSU9OUyIsInIiOiJhMTkyZWQ5OS1hNmM5LTQwZDMtYTdlOS03MmY5MTQ2ZTZkZjUiLCJtIjoibWFpbCIsImMiOiI0ZDExYTNiNi03ZDQ1LTQxOTctOTM4OC1mOGIwOWY0ZjYwMTQifQ\" target=\"_blank\"><img class=\"jb lb\" src=\"https://images.wixstatic.com/media/5e9922_205a9db5f0dd4185a5433e7183d1fe08~mv2.png/v1/fit/w_750,h_750,br_-79,sat_-74,hue_56,lg_0/5e9922_205a9db5f0dd4185a5433e7183d1fe08~mv2.png\" width=\"28\" height=\"28\" alt=\"\" style=\"margin:6px\"></a><a style=\"vertical-align:middle;display:inline-block;text-decoration:none\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=FmWw3laxgVmz9vnJ6zq54ZNKiDHG7g3XMXfThOsQbnE.eyJ1IjoiaHR0cHM6Ly93d3cubGlua2VkaW4uY29tL2NvbXBhbnkvdXNuZGEtb3JnLyIsInIiOiJhMTkyZWQ5OS1hNmM5LTQwZDMtYTdlOS03MmY5MTQ2ZTZkZjUiLCJtIjoibWFpbCIsImMiOiI0ZDExYTNiNi03ZDQ1LTQxOTctOTM4OC1mOGIwOWY0ZjYwMTQifQ\" target=\"_blank\"><img class=\"jb lb\" src=\"https://images.wixstatic.com/media/5e9922_931f3e857768439bb9293a3039d6f9ef~mv2.png/v1/fit/w_750,h_750,br_-79,sat_-74,hue_56,lg_0/5e9922_931f3e857768439bb9293a3039d6f9ef~mv2.png\" width=\"28\" height=\"28\" alt=\"\" style=\"margin:6px\"></a><a style=\"vertical-align:middle;display:inline-block;text-decoration:none\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=3E3ZL85Db7Zejs3iIPf98Rwiyk33U8xh9TX7fPUvztg.eyJ1IjoiaHR0cHM6Ly94LmNvbS91c25kYV9vcmciLCJyIjoiYTE5MmVkOTktYTZjOS00MGQzLWE3ZTktNzJmOTE0NmU2ZGY1IiwibSI6Im1haWwiLCJjIjoiNGQxMWEzYjYtN2Q0NS00MTk3LTkzODgtZjhiMDlmNGY2MDE0In0\" target=\"_blank\"><img class=\"jb lb\" src=\"https://images.wixstatic.com/media/5e9922_64d32055fbe647738b345b72f05aef96~mv2.png/v1/fit/w_750,h_750,br_-79,sat_-74,hue_56,lg_0/5e9922_64d32055fbe647738b345b72f05aef96~mv2.png\" width=\"28\" height=\"28\" alt=\"\" style=\"margin:6px\"></a></p></div></td></tr><tr><td align=\"center\" class=\"pc\" style=\"font-size:0px;padding:10px 25px;word-break:break-word\"><p style=\"border-top:solid 0px #282936;font-size:1px;margin:0px auto;width:0px;\"></p><!--[if mso | IE]><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" style=\"border-top:solid 0px #282936;font-size:1px;margin:0px auto;width:0px\" role=\"presentation\" width=\"0px\"><tr><td style=\"height:0;line-height:0\">&nbsp;</td></tr></table><![endif]--></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td><td style=\"vertical-align:middle;width:347px\"><![endif]--><div class=\"sc hd ec\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;max-width:50%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:middle;padding-right:60px;padding-left:0px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" class=\"qc\" style=\"font-size:0px;padding:0px 10px 0px 10px;word-break:break-word\"><div style=\"font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:1;text-align:center;color:#000000;white-space:pre-wrap\"><div style=\"display:inline-block;vertical-align:middle\"><a class=\"\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=yaEQURX0WgIqNZFBmrGA5_OT54BXBOIEKWrWKcQoU_s.eyJ1IjoiaHR0cHM6Ly93d3cudXNuZGEub3JnL2Fib3V0LTEtMSIsInIiOiJhMTkyZWQ5OS1hNmM5LTQwZDMtYTdlOS03MmY5MTQ2ZTZkZjUiLCJtIjoibWFpbCIsImMiOiI0ZDExYTNiNi03ZDQ1LTQxOTctOTM4OC1mOGIwOWY0ZjYwMTQifQ\" target=\"_blank\" style=\"text-decoration:none;\"><span class=\"j\" style=\"font-size:14px;font-family:helvetica,sans-serif;margin-right:1.5px;line-height:25px;display:inline-block;overflow:hidden;vertical-align:middle;color:#282936;max-height:100px;\"><strong style=\"font-weight:inherit\">STAY CONNECTED</strong></span>  <img class=\"nd\" height=\"22\" src=\"https://images.wixstatic.com/media/b49ee3_dd9b1a8812ae41138409a667954a6088~mv2.png/v1/fit/w_750,h_750,br_-79,sat_-74,hue_56,lg_0/b49ee3_dd9b1a8812ae41138409a667954a6088~mv2.png\" style=\"vertical-align:middle;border:0\" width=\"22\" alt=\"\"></a></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><div class=\"tc\" style=\"height:10px;padding:0px 60px 20px 60px\"></div><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div style=\"margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:100%\"><tbody><tr><td style=\"border-bottom:solid 3px #C2274B;border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"vertical-align:top\" width=\"100%\"><tbody><tr><td class=\"\" style=\"background:#FFFFFF;font-size:0px;word-break:break-word\"><div style=\"height:0px;line-height:0px\">&#8202;</div></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td><!--[if mso | IE]><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:732px\" width=\"732\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div style=\"margin:0px auto;max-width:732px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:100%\"><tbody><tr><td style=\"direction:ltr;font-size:0px;padding:18px 20px 18px 20px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:692px\"><![endif]--><div class=\"\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"vertical-align:top\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0;word-break:break-word\"><div style=\"font-family:Helvetica,Ubuntu,Arial,sans-serif;font-size:12px;line-height:20px;text-align:center;color:#757575;white-space:pre-wrap\"><strong style=\"font-weight:normal\">This email was sent from <u><a style=\"font-family:Helvetica,Ubuntu,Arial,sans-serif;color:#222222;font-size:12px;line-height:20px;text-decoration:none\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=yICo34RQf8d3_8xGjyzbyfifPTCihfJekdIwBFrimTQ.eyJ1IjoiaHR0cHM6Ly93d3cudXNuZGEub3JnLyIsIm0iOiJtYWlsIiwiYyI6IjRkMTFhM2I2LTdkNDUtNDE5Ny05Mzg4LWY4YjA5ZjRmNjAxNCJ9\" rel=\"noopener noreferrer\" target=\"_blank\">this site</a></u>.</strong></div></td></tr><tr><td align=\"center\" style=\"font-size:0px;padding:0;word-break:break-word\"><div style=\"font-family:Helvetica,Ubuntu,Arial,sans-serif;font-size:12px;line-height:20px;text-align:center;color:#757575;white-space:pre-wrap\"><strong style=\"font-weight:normal\">If you no longer wish to receive this email, change your email preferences <u><a style=\"font-family:Helvetica,Ubuntu,Arial,sans-serif;color:#222222;font-size:12px;line-height:20px;text-decoration:none\" href=\"https://www.usnda.org//_manage-consent/api/revoke-consent/unsubscribe?wixToken=JWE.eyJhbGciOiJBMTI4S1ciLCJlbmMiOiJBMTI4Q0JDLUhTMjU2Iiwia2lkIjoiZkhJbFA4M1cifQ.f4Uw_Lv_BPFsr3D-buEaH5hUVHcPffoAXat5c8Jt5HLTi6YAa5kltA.EHURp4sou8KiIIe_6tn24A.lRKGChznChacN6Fj5oZ1UyBcI0X9p1mEAPmRQ_fD0X7LuvX57OlKlS74HeyeS26Kj82QnJq79btUMSoNBwvolIvCgZ9JOeUrW0GB8YQycLxd2H6i19UllKS5xH7MUVU9IEQS8aWWTmVScFW0VRK9lyWQPVpICc74yG6sT2gXottay5mE5eOSyoI1MAF2QUzPt8ZXpoBw0mkn4rk2WApLIsskioMkc7zNy963m9jOC2VTD8D_VLg-2sHfseQUn88HRey28__zf1HmBQiBS9Us8UXCofzbSEluFk3Z61s4_DKhm4BjiZDcMn_OWG2PnQP23nq4H_XaQvDfmmI3QNVGeHNlDOzy7nE9oqw0WoMbxsbJSxEF_igOYiPMl9UAOsE8wyV_iHVKaghZIuVEB1AwBRC6INXPO3coSS52URW6F2YTLmtGvQGbvgAZ-r7O6hBX.oBJUGCwXyAFtAIc5hf2mfg&amp;locale=en\" rel=\"noopener noreferrer\" target=\"_blank\">here</a></u>.</strong></div></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div></body></html>','Having trouble viewing this email? Click here to view it in your browser. or Click here to download it as a PDF.\r\n\r\n-TRYOUTS ARE LIVE-\r\n\r\nSign Up Now to Secure Your Spot\r\n\r\nClimb the leaderboard and earn your shot to compete alongside real special ops warfighters.\r\n\r\nThis isn’t just a game. It’s your mission. Live finals. National stage. Washington, D.C.\r\n\r\nVelocidrone Simulator Qualifier Practice Track now live and open to all students + service members Registration closes May 4\r\n\r\nStart competing now!\r\n\r\nThe United States National Drone Association™ (USNDA) invites high school and college students, university drone clubs, and aspiring drone pilots across the nation to compete in the ultimate virtual qualifier. We’re excited to announce that the Velocidrone Practice Track is now LIVE and open to all service members, high school students, and university-level participants. Whether you’re new to drone flight or a seasoned pilot, this is your chance to fly with purpose.\r\n\r\nSign Up Now to Secure Your Spot\r\n\r\nHow To Participate:\r\n\r\nSign up using the button below\r\n\r\nAccess Practice Track + Setup Instructions\r\n\r\nThis is more than just a drone race. It’s your gateway to national recognition, networking with defense and industry leaders, and shaping the future of drone innovation in the U.S.\r\n\r\nThe United States National Drone Association™ (USNDA) accelerates America’s drone readiness by connecting top talent, breakthrough tech, and national security missions. We host elite competitions, surface real-world challenges from defense and public safety agencies, and help fast-track innovative solutions into government hands. From students to startups, USNDA creates the platforms where the next generation of drone professionals rise, and where the future of U.S. drone capability takes flight. Learn more at USNDA.org\r\n\r\nJoin the movement. Fly the mission. Shape the future.\r\n\r\nQuestions? Reach us at registration@usnda.org\r\n\r\nClick on the link below to open the message in a browser:\r\nhttps://usnda.org/so/89PQ8uGrf/c?w=zh7W9ueRKCvHZlSBYEXU6GeO4S5nM7I8LF_ql8_hcxU.eyJ1IjoiaHR0cHM6Ly91c25kYS5vcmcvc28vODlQUTh1R3JmP2xhbmd1YWdlVGFnPWVuIiwibSI6Im1haWwiLCJjIjoiNGQxMWEzYjYtN2Q0NS00MTk3LTkzODgtZjhiMDlmNGY2MDE0In0\r\n\r\nYou\'ve received this email because you are a subscriber of this site.\r\nhttps://usnda.org/so/89PQ8uGrf/c?w=yICo34RQf8d3_8xGjyzbyfifPTCihfJekdIwBFrimTQ.eyJ1IjoiaHR0cHM6Ly93d3cudXNuZGEub3JnLyIsIm0iOiJtYWlsIiwiYyI6IjRkMTFhM2I2LTdkNDUtNDE5Ny05Mzg4LWY4YjA5ZjRmNjAxNCJ9\r\n\r\nIf you feel you received it by mistake or wish to unsubscribe, please click here.\r\nhttps://www.usnda.org//_manage-consent/api/revoke-consent/unsubscribe?wixToken=JWE.eyJhbGciOiJBMTI4S1ciLCJlbmMiOiJBMTI4Q0JDLUhTMjU2Iiwia2lkIjoiZkhJbFA4M1cifQ.f4Uw_Lv_BPFsr3D-buEaH5hUVHcPffoAXat5c8Jt5HLTi6YAa5kltA.EHURp4sou8KiIIe_6tn24A.lRKGChznChacN6Fj5oZ1UyBcI0X9p1mEAPmRQ_fD0X7LuvX57OlKlS74HeyeS26Kj82QnJq79btUMSoNBwvolIvCgZ9JOeUrW0GB8YQycLxd2H6i19UllKS5xH7MUVU9IEQS8aWWTmVScFW0VRK9lyWQPVpICc74yG6sT2gXottay5mE5eOSyoI1MAF2QUzPt8ZXpoBw0mkn4rk2WApLIsskioMkc7zNy963m9jOC2VTD8D_VLg-2sHfseQUn88HRey28__zf1HmBQiBS9Us8UXCofzbSEluFk3Z61s4_DKhm4BjiZDcMn_OWG2PnQP23nq4H_XaQvDfmmI3QNVGeHNlDOzy7nE9oqw0WoMbxsbJSxEF_igOYiPMl9UAOsE8wyV_iHVKaghZIuVEB1AwBRC6INXPO3coSS52URW6F2YTLmtGvQGbvgAZ-r7O6hBX.oBJUGCwXyAFtAIc5hf2mfg&locale=en',0,0,0,0,0,0,'2025-04-30 23:41:51','2025-12-04 14:04:57','2025-12-04 14:04:57','2025-12-04 14:04:57',NULL,NULL,NULL),
(94,4,'<185323780114160640.0.v2@titan.email>',NULL,NULL,'Re:  Manned Drone project','info@jcdronesltd.com','\"Jc. Drones\"','(No content)','(No content)',0,0,0,0,0,0,'2025-08-07 14:02:22','2025-12-04 14:04:57','2025-12-04 14:04:57','2025-12-04 14:04:57',NULL,NULL,NULL),
(95,4,'<1bcd3120660842aeb8184f686edc7d7a@flowcorp.com>',NULL,NULL,'The Future is Bright: Flow\'s Journey Beyond Waterjet','info@flowcorp.com','Flow Waterjet','\r\n<!DOCTYPE html>    \r\n<html>    \r\n<head>    \r\n<meta content=\"width=device-width, initial-scale=1.0\" name=\"viewport\">    \r\n<style type=\"text/css\">\r    \r\n/*** BMEMBF Start ***/\r    \r\n/* CMS V4 Editor Test */\r    \r\n[name=bmeMainBody]{min-height:1000px;}\r    \r\n@media only screen and (max-width: 480px){table.blk, table.tblText, .bmeHolder, .bmeHolder1, table.bmeMainColumn{width:100% !important;} }    \r    \r\n@media only screen and (max-width: 480px){.bmeImageCard table.bmeCaptionTable td.tblCell{padding:0px 20px 20px 20px !important;} }    \r    \r\n@media only screen and (max-width: 480px){.bmeImageCard table.bmeCaptionTable.bmeCaptionTableMobileTop td.tblCell{padding:20px 20px 0 20px !important;} }    \r    \r\n@media only screen and (max-width: 480px){table.bmeCaptionTable td.tblCell{padding:10px !important;} }    \r    \r\n@media only screen and (max-width: 480px){table.tblGtr{ padding-bottom:20px !important;} }    \r    \r\n@media only screen and (max-width: 480px){td.blk_container, .blk_parent, .bmeLeftColumn, .bmeRightColumn, .bmeColumn1, .bmeColumn2, .bmeColumn3, .bmeBody{display:table !important;max-width:600px !important;width:100% !important;} }    \r    \r\n@media only screen and (max-width: 480px){table.container-table, .bmeheadertext, .container-table { width: 95% !important; } }    \r    \r\n@media only screen and (max-width: 480px){.mobile-footer, .mobile-footer a{ font-size: 13px !important; line-height: 18px !important; } .mobile-footer{ text-align: center !important; } table.share-tbl { padding-bottom: 15px; width: 100% !important; } table.share-tbl td { display: block !important; text-align: center !important; width: 100% !important; } }    \r    \r\n@media only screen and (max-width: 480px){td.bmeShareTD, td.bmeSocialTD{width: 100% !important; } }    \r    \r\n@media only screen and (max-width: 480px){td.tdBoxedTextBorder{width: auto !important;} }\r    \r\n@media only screen and (max-width: 480px){th.tdBoxedTextBorder{width: auto !important;} }\r    \r\n\r    \r\n@media only screen and (max-width: 480px){table.blk, table[name=tblText], .bmeHolder, .bmeHolder1, table[name=bmeMainColumn]{width:100% !important;} }\r    \r\n@media only screen and (max-width: 480px){.bmeImageCard table.bmeCaptionTable td[name=tblCell]{padding:0px 20px 20px 20px !important;} }\r    \r\n@media only screen and (max-width: 480px){.bmeImageCard table.bmeCaptionTable.bmeCaptionTableMobileTop td[name=tblCell]{padding:20px 20px 0 20px !important;} }\r    \r\n@media only screen and (max-width: 480px){table.bmeCaptionTable td[name=tblCell]{padding:10px !important;} }\r    \r\n@media only screen and (max-width: 480px){table[name=tblGtr]{ padding-bottom:20px !important;} }\r    \r\n@media only screen and (max-width: 480px){td.blk_container, .blk_parent, [name=bmeLeftColumn], [name=bmeRightColumn], [name=bmeColumn1], [name=bmeColumn2], [name=bmeColumn3], [name=bmeBody]{display:table !important;max-width:600px !important;width:100% !important;} }\r    \r\n@media only screen and (max-width: 480px){table[class=container-table], .bmeheadertext, .container-table { width: 95% !important; } }\r    \r\n@media only screen and (max-width: 480px){.mobile-footer, .mobile-footer a{ font-size: 13px !important; line-height: 18px !important; } .mobile-footer{ text-align: center !important; } table[class=\"share-tbl\"] { padding-bottom: 15px; width: 100% !important; } table[class=\"share-tbl\"] td { display: block !important; text-align: center !important; width: 100% !important; } }\r    \r\n@media only screen and (max-width: 480px){td[name=bmeShareTD], td[name=bmeSocialTD]{width: 100% !important; } }\r    \r\n@media only screen and (max-width: 480px){td[name=tdBoxedTextBorder]{width: auto !important;} }\r    \r\n@media only screen and (max-width: 480px){th[name=tdBoxedTextBorder]{width: auto !important;} }\r    \r\n           \r    \r\n@media only screen and (max-width: 480px){.bmeImageCard table.bmeImageTable{height: auto !important; width:100% !important; padding:20px !important;clear:both; float:left !important; border-collapse: separate;} }            \r    \r\n@media only screen and (max-width: 480px){.bmeMblInline table.bmeImageTable{height: auto !important; width:100% !important; padding:10px !important;clear:both;} }\r    \r\n@media only screen and (max-width: 480px){.bmeMblInline table.bmeCaptionTable{width:100% !important; clear:both;} }\r    \r\n@media only screen and (max-width: 480px){table.bmeImageTable{height: auto !important; width:100% !important; padding:10px !important;clear:both; } }\r    \r\n@media only screen and (max-width: 480px){table.bmeCaptionTable{width:100% !important;  clear:both;} }\r    \r\n@media only screen and (max-width: 480px){table.bmeImageContainer{width:100% !important; clear:both; float:left !important;} }            \r    \r\n@media only screen and (max-width: 480px){table.bmeImageTable td{padding:0px !important; height: auto; } }            \r    \r\n@media only screen and (max-width: 480px){img.mobile-img-large{width:100% !important; height:auto !important;} }\r    \r\n@media only screen and (max-width: 480px){img.bmeRSSImage{max-width:320px; height:auto !important;} }\r    \r\n@media only screen and (min-width: 640px){img.bmeRSSImage{max-width:600px !important; height:auto !important;} }            \r    \r\n@media only screen and (max-width: 480px){.trMargin img{height:10px;} }          \r    \r\n@media only screen and (max-width: 480px){div.bmefooter, div.bmeheader{ display:block !important;} }  \r    \r\n@media only screen and (max-width: 480px){.tdPart{ width:100% !important; clear:both; float:left !important; } }\r    \r\n@media only screen and (max-width: 480px){table.blk_parent1, table.tblPart {width: 100% !important; } }            \r    \r\n@media only screen and (max-width: 480px){.tblLine{min-width: 100% !important;} }            \r    \r\n@media only screen and (max-width: 480px){.bmeMblCenter img { margin: 0 auto; } }   \r    \r\n@media only screen and (max-width: 480px){.bmeMblCenter, .bmeMblCenter div, .bmeMblCenter span  { text-align: center !important; text-align: -webkit-center !important; } }\r    \r\n@media only screen and (max-width: 480px){.bmeNoBr br, .bmeImageGutterRow, .bmeMblStackCenter .bmeShareItem .tdMblHide { display: none !important; } }\r    \r\n@media only screen and (max-width: 480px){.bmeMblInline table.bmeImageTable, .bmeMblInline table.bmeCaptionTable, .bmeMblInline { clear: none !important; width:50% !important; } }\r    \r\n@media only screen and (max-width: 480px){.bmeMblInlineHide, .bmeShareItem .trMargin { display: none !important; } }\r    \r\n@media only screen and (max-width: 480px){.bmeMblInline table.bmeImageTable img, .bmeMblShareCenter.tblContainer.mblSocialContain, .bmeMblFollowCenter.tblContainer.mblSocialContain{width: 100% !important; } }\r    \r\n@media only screen and (max-width: 480px){.bmeMblStack> .bmeShareItem{width: 100% !important; clear: both !important;} }\r    \r\n@media only screen and (max-width: 480px){.bmeShareItem{padding-top: 10px !important;} }            \r    \r\n@media only screen and (max-width: 480px){.tdPart.bmeMblStackCenter, .bmeMblStackCenter .bmeFollowItemIcon {padding:0px !important; text-align: center !important;} }\r    \r\n@media only screen and (max-width: 480px){.bmeMblStackCenter> .bmeShareItem{width: 100% !important;} }\r    \r\n@media only screen and (max-width: 480px){ td.bmeMblCenter {border: 0 none transparent !important;} }\r    \r\n@media only screen and (max-width: 480px){.bmeLinkTable.tdPart td{padding-left:0px !important; padding-right:0px !important; border:0px none transparent !important;padding-bottom:15px !important;height: auto !important;} }\r    \r\n@media only screen and (max-width: 480px){.tdMblHide{width:10px !important;} }            \r    \r\n@media only screen and (max-width: 480px){.bmeShareItemBtn{display:table !important;} }\r    \r\n@media only screen and (max-width: 480px){.bmeMblStack td {text-align: left !important;} }\r    \r\n@media only screen and (max-width: 480px){.bmeMblStack .bmeFollowItem{clear:both !important; padding-top: 10px !important;} }\r    \r\n@media only screen and (max-width: 480px){.bmeMblStackCenter .bmeFollowItemText{padding-left: 5px !important;} }\r    \r\n@media only screen and (max-width: 480px){.bmeMblStackCenter .bmeFollowItem{clear:both !important;align-self:center; float:none !important; padding-top:10px;margin: 0 auto;} }            \r    \r\n@media only screen and (max-width: 480px){\r    \r\n.tdPart> table{width:100% !important;}\r    \r\n}\r    \r\n@media only screen and (max-width: 480px){.tdPart>table.bmeLinkContainer{ width:auto !important; } }\r    \r\n@media only screen and (max-width: 480px){.tdPart.mblStackCenter>table.bmeLinkContainer{ width:100% !important;} } \r    \r\n.blk_parent:first-child, .blk_parent{float:left;}            \r    \r\n.blk_parent:last-child{float:right;}\r    \r\n\r    \r\n/* Tablet and Mobile Styles - 767px breakpoint TEXT BLOCK */\r    \r\n@media only screen and (max-width: 767px){ \r    \r\n    table.blk, table[name=blk_text] { max-width: 100% !important; }\r    \r\n    table.bmeContainerRow { max-width: 100% !important; }\r    \r\n    table[name=tblText], table.tblText { max-width: 100% !important; }\r    \r\n    table.blk th.tdPart { height: auto !important; }\r    \r\n}\r    \r\n\r    \r\n/*** BMEMBF END ***/    \r\n    \r\n</style>    \r\n<!--[if gte mso 9]>    \r\n<xml>    \r\n<o:OfficeDocumentSettings>    \r\n<o:AllowPNG/>    \r\n<o:PixelsPerInch>96</o:PixelsPerInch>    \r\n</o:OfficeDocumentSettings>    \r\n</xml>    \r\n<![endif]-->    \r\n    \r\n</head>    \r\n<body topmargin=\"0\" leftmargin=\"0\" style=\"height: 100% !important; margin: 0; padding: 0; width: 100% !important;min-width: 100%;\"><img src=\'https://flowcorp.benchurl.com/c/o?e=1A99F8B&c=9A612&relid=&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D\' alt=\'\' border=\"0\" style=\"display:none;\" height=\"1\" width=\"1\"><div class=\"inbox-preview\" style=\"display: none; font-size: 0; max-height: 0; line-height: 0; padding: 0; mso-hide: all;\">2025 was a year for expanding what it means to be Flow. </div><!-- inbox-preview -->    \r\n    \r\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" name=\"bmeMainBody\" style=\"background-color: rgb(255, 255, 255);\" bgcolor=\"#ffffff\"><tbody><tr><td width=\"100%\" valign=\"top\" align=\"center\">    \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" name=\"bmeMainColumnParentTable\"><tbody><tr><td name=\"bmeMainColumnParent\" style=\"border-collapse: separate;\">     \r\n<table name=\"bmeMainColumn\" class=\"bmeHolder bmeMainColumn\" style=\"max-width: 600px; overflow: visible;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\">    <tbody><tr id=\"section_1\" class=\"flexible-section\" data-columns=\"1\" data-section-type=\"bmePreHeader\"><td width=\"100%\" class=\"blk_container bmeHolder\" name=\"bmePreHeader\" valign=\"top\" align=\"center\" bgcolor=\"#e6e6e8\" style=\"background-color: rgb(230, 230, 232); color: rgb(102, 102, 102);   \"></td></tr> <tr><td width=\"100%\" class=\"bmeHolder\" valign=\"top\" align=\"center\" name=\"bmeMainContentParent\" style=\"border-color: rgb(128, 128, 128); border-radius: 5px; border-collapse: separate; border-spacing: 0px;\">     \r\n<table name=\"bmeMainContent\" style=\"border-radius: 5px; border-collapse: separate;border-spacing: 0px; overflow: hidden;\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\"> <tbody><tr class=\"flexible-section\" data-columns=\"1\" data-columns-ratio=\"\" id=\"section_2\"><td width=\"100%\" class=\"blk_container bmeHolder bmeBody\" name=\"bmeBody\" valign=\"top\" align=\"center\" style=\"background-color: rgb(230, 230, 232);\" bgcolor=\"#e6e6e8\"><div id=\"dv_18\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_image\"><tbody><tr><td>    \r\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\"><tbody><tr><td align=\"center\" class=\"bmeImage\" style=\"border-collapse: collapse; padding: 0px;\"><a href=\"https://flowcorp.benchurl.com/c/l?u=133E2043&e=1A99F8B&c=9A612&&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D&seq=1\" target=\"_blank\"><img src=\"https://images.benchmarkemail.com/client632338/image16875457.png\" class=\"mobile-img-large\" width=\"600\" style=\"max-width: 1200px; display: block; border-radius: 0px; border-style: none; border-width: 0px; border-color: rgb(0, 0, 238);\" alt=\"\" data-radius=\"0\" border=\"0\" data-original-max-width=\"1200\"></a></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div></td></tr> <tr id=\"section_3\" class=\"flexible-section\" data-columns=\"1\"><td width=\"100%\" class=\"blk_container bmeHolder bmeBody\" name=\"bmeBody\" valign=\"top\" align=\"center\" bgcolor=\"#e6e6e8\" style=\"color: rgb(54, 56, 56); background-color: rgb(230, 230, 232);\">    \r\n    \r\n    \r\n<div id=\"dv_4\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_image\"><tbody><tr><td>    \r\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\"><tbody><tr><td align=\"center\" class=\"bmeImage\" style=\"border-collapse: collapse; padding: 0px;\"><a href=\"https://flowcorp.benchurl.com/c/l?u=133E2227&e=1A99F8B&c=9A612&&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D&seq=1\" target=\"_blank\"><img src=\"https://images.benchmarkemail.com/client632338/image18255080.jpeg\" class=\"mobile-img-large\" width=\"600\" alt=\"\" data-radius=\"0\" style=\"max-width: 2404px; display: block; border-radius: 0px; border-style: none; border-width: 0px; border-color: rgb(0, 0, 238);\" border=\"0\" data-original-max-width=\"2404\"></a></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div><div id=\"dv_32\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_spacer\" style=\"background-color: rgb(4, 55, 62); width: 100%; max-width: 600px;\"><tbody><tr><td class=\"tblCellMain\" style=\"padding-top: 9px; padding-bottom: 9px;\">    \r\n<table class=\"tblLine\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" style=\"min-width: 1px;\"><tbody><tr><td><span></span></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div><div id=\"dv_28\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_text\" style=\"width: 100%; max-width: 600px;\"><tbody><tr><td>    \r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"bmeContainerRow\" style=\"width: 100%; max-width: 600px;\"><tbody><tr><th class=\"tdPart\" valign=\"top\" align=\"center\" style=\"background-color: rgb(4, 55, 62);height:77px;\">    \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"600\" name=\"tblText\" class=\"tblText\" style=\"float: left; background-color: rgb(4, 55, 62); width: 100%; max-width: 600px;\" align=\"left\"><tbody><tr><td valign=\"top\" align=\"left\" name=\"tblCell\" class=\"tblCell\" style=\"padding: 5px 20px; font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: 400; color: rgb(56, 56, 56); text-align: left; word-break: break-word;\"><div style=\"line-height: 150%; text-align: center;\">    \r\n<p style=\"margin-top: 0px; margin-bottom: 0px;\"><span style=\"color: rgb(255, 255, 255);\">For five decades, Flow has been synonymous with pioneering abrasive&nbsp;waterjet technology. </span><span style=\"color: rgb(255, 255, 255);\">This year, we set our sights beyond what we’ve always done best. We focused on building what’s next and expanding what it means to be Flow.&nbsp;&nbsp;</span></p>    \r\n</div></td></tr></tbody>    \r\n</table></th></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div><div id=\"dv_20\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_spacer\" style=\"background-color: rgb(4, 55, 62); width: 100%; max-width: 600px;\"><tbody><tr><td class=\"tblCellMain\" style=\"padding-top: 15.5px; padding-bottom: 15.5px;\">    \r\n<table class=\"tblLine\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" style=\"min-width: 1px;\"><tbody><tr><td><span></span></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div></td></tr><tr class=\"flexible-section\" data-columns=\"1\" data-columns-ratio=\"\" id=\"section_7\"><td width=\"100%\" class=\"blk_container bmeHolder bmeBody\" name=\"bmeBody\" valign=\"top\" align=\"center\" style=\"background-color: rgb(230, 230, 232);\" bgcolor=\"#e6e6e8\"><div id=\"dv_1\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_divider\" style=\"background-color: rgb(230, 230, 232); width: 100%; max-width: 600px;\"><tbody><tr><td class=\"tblCellMain\" style=\"padding: 10px 20px;\">    \r\n<table class=\"tblLine\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" style=\"border-top-width: 0px; border-top-style: none; min-width: 1px;\"><tbody><tr><td><span></span></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div><div id=\"dv_27\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_image\"><tbody><tr><td>    \r\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\"><tbody><tr><td align=\"center\" class=\"bmeImage\" style=\"border-collapse: collapse; padding: 10px 20px;\"><img src=\"https://images.benchmarkemail.com/client632338/image17904214.jpg\" class=\"mobile-img-large\" width=\"560\" style=\"max-width: 1200px; display: block; border-radius: 0px; border-style: none; border-width: 0px; border-color: rgb(0, 0, 238);\" alt=\"\" data-radius=\"0\" border=\"0\" data-original-max-width=\"1200\" height=\"303.328125\"></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div><div id=\"dv_36\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_divider\" style=\"background-color: rgb(230, 230, 232); width: 100%; max-width: 600px;\"><tbody><tr><td class=\"tblCellMain\" style=\"padding: 10px 20px;\">    \r\n<table class=\"tblLine\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" style=\"border-top-width: 0px; border-top-style: none; min-width: 1px;\"><tbody><tr><td><span></span></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div><div id=\"dv_13\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_text\" style=\"width: 100%; max-width: 600px;\"><tbody><tr><td>    \r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"bmeContainerRow\" style=\"width: 100%; max-width: 600px;\"><tbody><tr><th class=\"tdPart\" valign=\"top\" align=\"center\" style=\"background-color: rgb(230, 230, 232);height:24px;\">    \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"600\" name=\"tblText\" class=\"tblText\" style=\"float: left; background-color: rgb(230, 230, 232); width: 100%; max-width: 600px;\" align=\"left\"><tbody><tr><td valign=\"top\" align=\"left\" name=\"tblCell\" class=\"tblCell\" style=\"padding: 0px 20px; font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: 400; color: rgb(56, 56, 56); text-align: left; word-break: break-word;\"><div style=\"line-height: 150%; text-align: left;\"><span style=\"color: #007681;\"><span style=\"font-size: 21px;\"><strong>New Systems Debut at FABTECH</strong></span></span></div></td></tr></tbody>    \r\n</table></th></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div><div id=\"dv_33\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_text\" style=\"width: 100%; max-width: 600px;\"><tbody><tr><td>    \r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"bmeContainerRow\" style=\"width: 100%; max-width: 600px;\"><tbody><tr><th class=\"tdPart\" valign=\"top\" align=\"center\" style=\"height:276px;\">    \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"600\" name=\"tblText\" class=\"tblText\" style=\"float: left;  width: 100%; max-width: 600px;\" align=\"left\"><tbody><tr><td valign=\"top\" align=\"left\" name=\"tblCell\" class=\"tblCell\" style=\"padding: 10px 20px; font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: 400; color: rgb(56, 56, 56); text-align: left; word-break: break-word;\"><div style=\"line-height: 150%;\"><span style=\"color: rgb(102, 102, 102);\">At FABTECH, we unveiled three new systems that redefine what it means to be a fabrication partner:&nbsp;</span></div>    \r\n<div style=\"line-height: 150%;\">    \r\n<ul>    \r\n    \r\n<li style=\"color: rgb(102, 102, 102);\"><span style=\"color: rgb(102, 102, 102);\"><strong>NX Pro Waterjet</strong> – Enclosed, next-gen system with automated abrasive recycling.</span></li>    \r\n    \r\n<li style=\"color: rgb(102, 102, 102);\"><span style=\"color: rgb(102, 102, 102);\"><strong>LZR Fiber Laser</strong> – High-speed, high-accuracy cutting for thin and thick materials.</span></li>    \r\n    \r\n<li style=\"color: rgb(102, 102, 102);\"><span style=\"color: rgb(102, 102, 102);\"><strong>HyperBend Press Brake</strong> – Six-axis bending with hybrid drive and smart controls.</span></li>    \r\n</ul>    \r\n<div><span style=\"color: rgb(102, 102, 102);\">Industry experts are calling it a bold move toward the future of flexible fabrication.</span></div>    \r\n<div>&nbsp;</div>    \r\n<div><span style=\"color: rgb(102, 102, 102);\">But that\'s just the beginning. We\'re investing in smarter systems, sustainable technologies, and integrated workflows to help manufacturers stay ahead of what\'s next.&nbsp;</span></div>    \r\n<div>&nbsp;</div>    \r\n<div><span style=\"color: rgb(102, 102, 102);\"><strong>Want the full story?&nbsp;</strong></span></div>    \r\n</div></td></tr></tbody>    \r\n</table></th></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div><div id=\"dv_34\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_button\" style=\"width: 100%; max-width: 600px;\"><tbody><tr><td width=\"20\"></td><td align=\"center\">    \r\n<table class=\"tblContainer\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"><tbody><tr><td height=\"10\"></td></tr><tr><td align=\"left\">    \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"bmeButton\" style=\"border-collapse: separate;\"><tbody><tr><td style=\"border-radius: 50px; border-width: 0px; border-style: none; border-color: transparent; background-color: rgb(0, 118, 129); text-align: center; font-family: Arial, Helvetica, sans-serif; font-size: 14px; padding: 20px 40px; font-weight: bold; word-break: break-word;\" class=\"bmeButtonText\"><span style=\"font-family:Arial, Verdana; font-size:14px;color:#FFFFFF;\"><a style=\"color:#FFFFFF;text-decoration:none;\" target=\"_blank\" href=\"https://flowcorp.benchurl.com/c/l?u=132D4328&e=1A99F8B&c=9A612&&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D&seq=1\" target=\"_blank\" data-link-type=\"web\">Read the Article</a></span></td></tr></tbody>    \r\n</table></td></tr><tr><td height=\"10\"></td></tr></tbody>    \r\n</table></td><td width=\"20\"></td></tr></tbody>    \r\n</table></div><div id=\"dv_15\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_divider\" style=\"background-color: rgb(230, 230, 232); width: 100%; max-width: 600px;\"><tbody><tr><td class=\"tblCellMain\" style=\"padding: 20px;\">    \r\n<table class=\"tblLine\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" style=\"border-top-width: 0px; border-top-style: none; min-width: 1px;\"><tbody><tr><td><span></span></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div></td></tr> <tr class=\"flexible-section\" data-columns=\"1\" data-columns-ratio=\"\" id=\"section_6\"><td width=\"100%\" class=\"blk_container bmeHolder bmeBody\" name=\"bmeBody\" valign=\"top\" align=\"center\" style=\"background-color: rgb(230, 230, 232);\" bgcolor=\"#e6e6e8\"><div id=\"dv_24\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_text\" style=\"width: 100%; max-width: 600px;\"><tbody><tr><td>    \r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"bmeContainerRow\" style=\"width: 100%; max-width: 600px;\"><tbody><tr><th class=\"tdPart\" valign=\"top\" align=\"center\" style=\"background-color: rgb(0, 118, 129);height:61px;\">    \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"600\" name=\"tblText\" class=\"tblText\" style=\"float: left; background-color: rgb(0, 118, 129); width: 100%; max-width: 600px;\" align=\"left\"><tbody><tr><td valign=\"top\" align=\"left\" name=\"tblCell\" class=\"tblCell\" style=\"padding: 20px 0px; font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: 400; color: rgb(56, 56, 56); text-align: left; word-break: break-word;\"><div style=\"line-height: 150%; text-align: center;\"><strong><span style=\"color: #ffffff;\">STAY UP TO DATE</span></strong></div></td></tr></tbody>    \r\n</table></th></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div><div id=\"dv_6\" class=\"blk_wrapper\" style=\"\">    \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"background-color: rgb(0, 118, 129); width: 100%; max-width: 600px;\" name=\"blk_social_follow\" width=\"600\" class=\"blk\"><tbody><tr><td class=\"tblCellMain\" align=\"center\" style=\"padding-top:0px; padding-bottom:0px; padding-left:20px; padding-right:20px;\">    \r\n<table class=\"tblContainer mblSocialContain\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" style=\"text-align:center;\"><tbody><tr><td class=\"tdItemContainer\">    \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"mblSocialContain\" style=\"table-layout: auto;\"><tbody><tr><td valign=\"top\" name=\"bmeSocialTD\" class=\"bmeSocialTD\"><!--[if gte mso 6]></td><td align=\"left\" valign=\"top\"><![endif]-->    \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"bmeFollowItem\" type=\"facebook\" style=\"float: left; display: block;\" align=\"left\"><tbody><tr><td align=\"left\" class=\"bmeFollowItemIcon\" gutter=\"5\" width=\"24\" style=\"padding-right:5px;height:20px;\"><a href=\"https://flowcorp.benchurl.com/c/l?u=132C023E&e=1A99F8B&c=9A612&&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D&seq=1\" target=\"_blank\" style=\"display: inline-block;background-color: rgb(0, 118, 129);border-radius: 0px;border-style: none; border-width: 0px; border-color: rgb(0, 0, 238);\" target=\"_blank\"><img src=\"https://images.benchmarkemail.com/social/fb_btn.png\" alt=\"Facebook\" style=\"display: block; max-width: 24px;\" border=\"0\" width=\"24\" height=\"24\"></a></td></tr></tbody>    \r\n</table><!--[if gte mso 6]></td><td align=\"left\" valign=\"top\"><![endif]-->    \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"bmeFollowItem\" type=\"youtube\" style=\"float: left; display: block;\" align=\"left\"><tbody><tr><td align=\"left\" class=\"bmeFollowItemIcon\" gutter=\"5\" width=\"24\" style=\"padding-right:5px;height:20px;\"><a href=\"https://flowcorp.benchurl.com/c/l?u=132C023F&e=1A99F8B&c=9A612&&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D&seq=1\" target=\"_blank\" style=\"display: inline-block;background-color: rgb(0, 118, 129);border-radius: 0px;border-style: none; border-width: 0px; border-color: rgb(0, 0, 238);\" target=\"_blank\"><img src=\"https://images.benchmarkemail.com/social/yt_btn.png\" alt=\"YouTube\" style=\"display: block; max-width: 24px;\" border=\"0\" width=\"24\" height=\"24\"></a></td></tr></tbody>    \r\n</table><!--[if gte mso 6]></td><td align=\"left\" valign=\"top\"><![endif]-->    \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"bmeFollowItem\" type=\"instagram\" style=\"float: left; display: block;\" align=\"left\"><tbody><tr><td align=\"left\" class=\"bmeFollowItemIcon\" gutter=\"5\" width=\"24\" style=\"padding-right:5px;height:20px;\"><a href=\"https://flowcorp.benchurl.com/c/l?u=132C0240&e=1A99F8B&c=9A612&&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D&seq=1\" target=\"_blank\" style=\"display: inline-block;background-color: rgb(0, 118, 129);border-radius: 0px;border-style: none; border-width: 0px; border-color: rgb(0, 0, 238);\" target=\"_blank\"><img src=\"https://images.benchmarkemail.com/social/in_btn.png\" alt=\"Instagram\" style=\"display: block; max-width: 24px;\" border=\"0\" width=\"24\" height=\"24\"></a></td></tr></tbody>    \r\n</table><!--[if gte mso 6]></td><td align=\"left\" valign=\"top\"><![endif]-->    \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"bmeFollowItem\" type=\"linkedin\" style=\"float: left; display: block;\" align=\"left\"><tbody><tr><td align=\"left\" class=\"bmeFollowItemIcon\" gutter=\"5\" width=\"24\" style=\"height:20px;\"><a href=\"https://flowcorp.benchurl.com/c/l?u=132C0241&e=1A99F8B&c=9A612&&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D&seq=1\" target=\"_blank\" style=\"display: inline-block;background-color: rgb(0, 118, 129);border-radius: 0px;border-style: none; border-width: 0px; border-color: rgb(0, 0, 238);\" target=\"_blank\"><img src=\"https://images.benchmarkemail.com/social/li_btn.png\" alt=\"LinkedIn\" style=\"display: block; max-width: 24px;\" border=\"0\" width=\"24\" height=\"24\"></a></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div><div id=\"dv_26\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_divider\" style=\"background-color: rgb(0, 118, 129); width: 100%; max-width: 600px;\"><tbody><tr><td class=\"tblCellMain\" style=\"padding-top:20px; padding-bottom:20px;padding-left:20px;padding-right:20px;\">    \r\n<table class=\"tblLine\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" style=\"border-top-width: 1px; border-top-style: none; min-width: 1px;\"><tbody><tr><td><span></span></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div></td></tr> </tbody>    \r\n</table> </td></tr>  <tr id=\"section_5\" class=\"flexible-section\" data-columns=\"1\" data-section-type=\"bmeFooter\"><td width=\"100%\" class=\"blk_container bmeHolder\" name=\"bmeFooter\" valign=\"top\" align=\"center\" bgcolor=\"#e6e6e8\" style=\"color: rgb(102, 102, 102); background-color: rgb(230, 230, 232);\"><div id=\"dv_7\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_permission\" style=\"background-color: rgb(255, 255, 255); width: 100%; max-width: 600px;\"><tbody><tr><td name=\"tblCell\" class=\"tblCell\" style=\"padding: 20px; word-break: break-word;\" valign=\"top\" align=\"left\">    \r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\"><tbody><tr><td name=\"bmePermissionText\" style=\"text-align:left;\" align=\"left\"><span style=\"font-family: Arial, Helvetica, sans-serif; font-weight: normal; font-size: 11px;line-height: 140%;\"><a style=\"color: #16a7e0;\" target=\"_new\" href=\"https://flowcorp.benchurl.com/c/v?e=1A99F8B&c=9A612&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D\">View this email in your browser</a>    \r\n    \r\n<br>You are receiving this email because of your relationship with Flow International. Please <a style=\"color: #16a7e0;\" target=\"_new\" href=\"https://flowcorp.benchurl.com/c/opt?e=1A99F8B&c=9A612&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D\">reconfirm</a> your interest in receiving emails from us.   If you do not wish to receive any more emails, you can <a style=\"color: #16a7e0;\" target=\"_new\" href=\"https://flowcorp.benchurl.com/c/su?e=1A99F8B&c=9A612&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D\">unsubscribe here</a>.    \r\n</span></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div><div id=\"dv_8\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_footer\" style=\"background-color: rgb(255, 255, 255); width: 100%; max-width: 600px;\"><tbody><tr><td name=\"tblCell\" class=\"tblCell\" style=\"padding: 20px; word-break: break-word;\" valign=\"top\" align=\"left\">    \r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\"><tbody><tr><td name=\"bmeBadgeText\" style=\"text-align:left; word-break: break-word;\" align=\"left\"><span id=\"spnFooterText\" style=\"font-family: Arial, Helvetica, sans-serif; font-weight: normal; font-size: 11px; line-height: 140%;\">This message was sent to rick@mavrix.one by info@flowcorp.com    \r\n<br>23500 64th Avenue South, Kent, WA, 98032</span>    \r\n<br>    \r\n<br><span style=\"font-family: Arial, Helvetica, sans-serif; font-weight: normal; font-size: 11px; line-height: 140%;\"><span href=\"https://flowcorp.benchurl.com/c/su?e=1A99F8B&c=9A612&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D&relid=\"><img src=\"https://ui.benchmarkemail.com/images/verified.png\" alt=\"Unsubscribe from all mailings\" title=\"Unsubscribe from all mailings\" border=\"0\"></span> <a class=\"bmefootertext\" target=\"_new\" href=\"https://flowcorp.benchurl.com/c/su?e=1A99F8B&c=9A612&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D&relid=\" style=\"color:inherit;text-decoration:underline;\">Unsubscribe</a>   | <a class=\"bmefootertext\" target=\"_new\" href=\"https://flowcorp.benchurl.com/c/s?e=1A99F8B&c=9A612&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D&relid=\" style=\"color:inherit;text-decoration:underline;\">Manage Subscription</a>      \r\n<br></span></td></tr><tr><td name=\"bmeBadgeImage\" style=\"text-align:left;padding-top:20px;\" align=\"left\"><a href=\"https://www.benchmarkemail.com?p=500289\" target=\"|URLTarget|\"><img src=\"https://www.benchmarkemail.com/images/web4/misc/emailfooter/opt11.png\" style=\"max-width:116px;\" border=\"0\"></a></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div></td></tr> </tbody>    \r\n</table></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table>    \r\n</body>    \r\n</html>','[1]    \r\n    \r\n[2]    \r\nFor five decades, Flow has been synonymous with pioneering abrasive waterjet technology. This year, we set our sights beyond what we’ve always done best. We focused on building what’s next and expanding what it means to be Flow.    \r\n    \r\nNew Systems Debut at FABTECH    \r\n    \r\nAt FABTECH, we unveiled three new systems that redefine what it means to be a fabrication partner:    \r\n    \r\nNX Pro Waterjet– Enclosed, next-gen system with automated abrasive recycling.    \r\nLZR Fiber Laser– High-speed, high-accuracy cutting for thin and thick materials.    \r\nHyperBend Press Brake– Six-axis bending with hybrid drive and smart controls.    \r\n    \r\nIndustry experts are calling it a bold move toward the future of flexible fabrication.    \r\n    \r\nBut that\'s just the beginning. We\'re investing in smarter systems, sustainable technologies, and integrated workflows to help manufacturers stay ahead of what\'s next.    \r\n    \r\nWant the full story?    \r\n[3] Read the Article    \r\n    \r\nSTAY UP TO DATE    \r\n    \r\n[4]    \r\n    \r\n[5]    \r\n    \r\n[6]    \r\n    \r\n[7]    \r\n[8] View this email in your browser    \r\n    \r\nYou are receiving this email because of your relationship with Flow International. Please [9] reconfirmyour interest in receiving emails from us. If you do not wish to receive any more emails, you can [10] unsubscribe here.    \r\n    \r\n    \r\n References:    \r\n    \r\n1. https://flowcorp.benchurl.com/c/l?u=133E208D&e=1A99F8B&c=9A612&t=0&seq=1    \r\n2. https://flowcorp.benchurl.com/c/l?u=133E222B&e=1A99F8B&c=9A612&t=0&seq=1    \r\n3. https://flowcorp.benchurl.com/c/l?u=132D4329&e=1A99F8B&c=9A612&t=0&seq=1    \r\n4. https://flowcorp.benchurl.com/c/l?u=132C024B&e=1A99F8B&c=9A612&t=0&seq=1    \r\n5. https://flowcorp.benchurl.com/c/l?u=132C024C&e=1A99F8B&c=9A612&t=0&seq=1    \r\n6. https://flowcorp.benchurl.com/c/l?u=132C024D&e=1A99F8B&c=9A612&t=0&seq=1    \r\n7. https://flowcorp.benchurl.com/c/l?u=132C024E&e=1A99F8B&c=9A612&t=0&seq=1    \r\n8. https://flowcorp.benchurl.com/c/v?e=1A99F8B&c=9A612&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D    \r\n9. https://flowcorp.benchurl.com/c/opt?e=1A99F8B&c=9A612&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D    \r\n10. https://flowcorp.benchurl.com/c/su?e=1A99F8B&c=9A612&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D    \r\n    \r\n    \r\n    \r\nThis message was sent to rick@mavrix.one by info@flowcorp.com    \r\n    \r\nYou can modify/update your subscription via the link below.    \r\n    \r\nUnsubscribe from all mailings    \r\nhttps://flowcorp.benchurl.com/c/su?e=1A99F8B&c=9A612&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D&relid=    \r\n    \r\nManage Subscription    \r\nhttps://flowcorp.benchurl.com/c/s?e=1A99F8B&c=9A612&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D&relid=    \r\n    \r\n23500 64th Avenue South, Kent, WA, 98032    \r\n    \r\nEmail Marketing    \r\nbenchmarkemail.com    \r\n [https://flowcorp.benchurl.com]    \r\n    \r\n    \r\n    \r\nhttps://flowcorp.benchurl.com/c/su?e=1A99F8B&c=9A612&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D&relid=',0,0,0,0,0,0,'2025-11-19 16:28:54','2025-12-04 14:04:58','2025-12-04 14:04:58','2025-12-04 14:04:58',NULL,NULL,NULL),
(96,4,'<EF8C5BFC-87A7-4B12-9277-8AB9857F1EA6@mavrix.one>',NULL,NULL,'Project Bolt - Kimley - Horn Team','Brian@mavrix.one','Brian Stufflebean','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=us-ascii\"></head><body style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"><div><div><span></span><meta charset=\"UTF-8\"><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br class=\"Apple-interchange-newline\"><br class=\"Apple-interchange-newline\"><a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a href=\"https://mavrix1.com\">https://mavrix1.com/</a></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family: Helvetica; font-style: normal; font-weight: 400; font-size: 12px;\">&nbsp;This&nbsp;communication&nbsp;is confidential&nbsp;and&nbsp;intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, or&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any such&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this communication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the&nbsp;message to inform him or her of the&nbsp;error.<br><br></span></div>\r\n</div>\r\n\r\n<br></div></body></html>','Rick and Nathan,\r\n\r\nThis document is for “your eyes only”, not to be shared beyond the 3 of us for now. Please keep confidential. \r\n\r\n\r\n\r\n￼\r\n\r\n\r\n\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n￼\r\n\r\n\r\nbrian@mavrix.one <mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-12-01 16:33:55','2025-12-04 14:05:21','2025-12-04 14:05:21','2025-12-04 14:05:21',NULL,NULL,NULL),
(97,4,'<0100019a7f4187c3-830b6f66-8558-4f37-9121-c73391ceadd7-000000@email.amazonses.com>',NULL,NULL,'APPROVED-BLD-24-0510827-REV1 (1)','message@adobe.com','\"jordan.wroblewski@me.com via Adobe Acrobat\"','<html lang=\"en\" xmlns=\"https://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\">\r\n  <head>\r\n<link rel=\"icon\" href=\"https://www.adobe.com/favicon.ico\" type=\"image/x-icon\">\r\n<link rel=\"shortcut icon\" href=\"https://www.adobe.com/favicon.ico\" type=\"image/x-icon\">\r\n<meta name=\"x-apple-disable-message-reformatting\">\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n<meta name=\"viewport\" content=\"width=device-width,initial-scale=1.0\">\r\n<meta name=\"format-detection\" content=\"telephone=no\">\r\n<meta name=\"format-detection\" content=\"date=no\">\r\n<meta name=\"format-detection\" content=\"address=no\">\r\n<meta name=\"format-detection\" content=\"email=no\">\r\n<title>Adobe</title>\r\n\r\n<!--[if mso]>\r\n<style type=\"text/css\">\r\nbody, table, td {\r\nfont-family:Helvetica Neue, Helvetica, Verdana, Arial, sans-serif !important;\r\nmso-hyphenate:none !important;\r\n}\r\n.button {\r\nbackground:transparent !important;\r\n}\r\n</style>\r\n<xml>\r\n  <o:OfficeDocumentSettings>\r\n    <o:AllowPNG/>\r\n    <o:PixelsPerInch>96</o:PixelsPerInch>\r\n  </o:OfficeDocumentSettings>\r\n</xml>\r\n<![endif]-->\r\n\r\n<style type=\"text/css\">\r\n@import url(\"https://use.typekit.net/ulc2sof.css\");\r\n@media (prefers-color-scheme: dark) { }\r\n.ReadMsgBody { width:100%;}\r\n.ExternalClass {width:100%;}\r\ntable {border-collapse:collapse; margin:0 auto;}\r\na, a:visited {color:#1473E6; text-decoration:none;}\r\n.legal a {color:#6D6D6D; text-decoration:underline;}\r\n/* iOS BLUE LINKS */\r\na[x-apple-data-detectors] {color:inherit !important; text-decoration:none !important; font-size:inherit !important; font-family:inherit !important; font-weight:inherit !important; line-height:inherit !important;}\r\n\r\n.mobile {border-spacing:0;display:none!important;height:0;max-height:0;mso-hide:all;overflow:hidden;visibility:hidden;width:0;}\r\n	\r\n	@media only screen and (max-width:480px) {\r\n		u ~ div {\r\n			min-width:100vw;\r\n		}\r\n		div > u ~ div {\r\n        	min-width: 100%;\r\n		}\r\n		.web {\r\n			 display:none !important;\r\n	     }\r\n		 \r\n		 .mobile {\r\n			 display:block !important;\r\n			 width:auto !important;\r\n			 overflow:visible !important;\r\n			 height:auto !important;\r\n			 max-height:inherit !important;\r\n			 font-size:18px !important;\r\n			 line-height:26px !important;\r\n			 visibility:visible !important;\r\n	     }\r\n		 \r\n		 .email-width {\r\n			 width:84% !important;\r\n	     }\r\n		 \r\n		 .full-width {\r\n			 width:100% !important;\r\n	     }\r\n		 \r\n		 .mobile-image {\r\n			 height:auto !important;\r\n			 width:100% !important;\r\n	     }\r\n		\r\n		.social {\r\n			float:left !important;\r\n			padding-top:66px !important;\r\n			text-align:left !important;\r\n		}\r\n	}\r\n</style>\r\n</head>\r\n  <body bgcolor=\"#E4E4E4\" style=\"background-color:#E4E4E4; margin:0; padding:0;-webkit-font-smoothing:antialiased;width:100% !important;-webkit-text-size-adjust:none;\" topmargin=\"0\">\r\n    <div style=\"font-size:1px; color:#E4E4E4; display:none; overflow:hidden; visibility:hidden;\">jordan.wroblewski@me.com has shared APPROVED-BLD-24-0510827-REV1 (1) &nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;</div>\r\n\r\n<table width=\"100%\" bgcolor=\"#E4E4E4\" style=\"background-color:#E4E4E4;\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\r\n  <tr>\r\n    <td>\r\n    	<table class=\"full-width\" align=\"center\" width=\"600\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:600px;\">\r\n		<tr>\r\n           <td bgcolor=\"#ffffff\" style=\"background-color:#ffffff; padding-bottom:60px;\">\r\n           \r\n            <!-- pod1 -->\r\n            <table class=\"email-width\" align=\"center\" width=\"500\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:500px;\">\r\n			 <tr>\r\n            	<td style=\"color:#EB1000; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:14px; line-height:20px; padding-top:50px; padding-bottom:60px;\">\r\n										<img alt=\"Adobe Acrobat\" src=\"https://landing.adobe.com/dam/global/images/lockups/acrobat.logo.74777a.352x40.png\" width=\"176\" height=\"auto\" border=\"0\" hspace=\"0\" vspace=\"0\" style=\"color:#EB1000; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:14px; line-height:20px; display:block; vertical-align:top;\"/>\r\n									</td>\r\n             </tr>\r\n			 <tr>\r\n            	<td style=\"color:#000000; font-family:adobe-clean-display, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:22px; font-weight:800; font-feature-settings:\'ss04\' on; line-height:24px;\"><strong><a href=\"mailto:jordan.wroblewski@me.com\" target=\"_blank\" style=\"color:#000000; text-decoration:none;\">jordan.wroblewski@me.com</a></strong> has shared <a href=\"https://postoffice.adobe.com/po-server/link/redirect?target=eyJhbGciOiJIUzUxMiJ9.eyJ0ZW1wbGF0ZSI6ImNjX2NvbGxhYl9kY3NoYXJpbmdfdmlld19lbWFpbCIsImVtYWlsQWRkcmVzcyI6InJpY2tAbWF2cml4Lm9uZSIsInJlcXVlc3RJZCI6ImYxYzVlMDgxLTgzZDEtNDU2MC1iODVkLTk2ZTBhM2VlN2E3MSIsImxpbmsiOiJodHRwczovL2Fjcm9iYXQuYWRvYmUuY29tL2lkL3VybjphYWlkOnNjOlVTOjNmZGJlZWFjLTJiZTUtNDkzYy1iZTE3LWEyNGEzYzVhZDcwNiIsImxhYmVsIjoiMTEiLCJsb2NhbGUiOiJlbl9VUyJ9.a_MyFy-Sdl9XgwAmyHqDw7B_CmKmuda3HWoslvmGqNaidN5VAqYaEI-ppfSif528njasYhIpbevZHVb0JVBtfQ\" target=\"_blank\" style=\"color:#1473E6; text-decoration:none;\">APPROVED-BLD-24-0510827-REV1 (1)</a></td>\r\n             </tr>\r\n             <tr>\r\n            	<td style=\"color:#2C2C2C; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:18px; line-height:26px; padding-top:20px;\">You can also comment on it.<br/>				</td>\r\n             </tr>\r\n			 <tr>\r\n            	<td style=\"color:#1473E6; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:16px; line-height:20px; padding-top:40px;\"><!--[if gte mso 9]>\r\n				  <v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" style=\"height:40px; v-text-anchor:middle; width:200px;\" arcsize=\"50%\" stroke=\"f\" fillcolor=\"#1473E6\">\r\n				  <v:textbox style=\"mso-fit-shape-to-text:t\">\r\n				  <center style=\"color:#ffffff; font-family:Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:16px;\">\r\n				  <![endif]-->\r\n					<a class=\"button\" href=\"https://postoffice.adobe.com/po-server/link/redirect?target=eyJhbGciOiJIUzUxMiJ9.eyJ0ZW1wbGF0ZSI6ImNjX2NvbGxhYl9kY3NoYXJpbmdfdmlld19lbWFpbCIsImVtYWlsQWRkcmVzcyI6InJpY2tAbWF2cml4Lm9uZSIsInJlcXVlc3RJZCI6ImYxYzVlMDgxLTgzZDEtNDU2MC1iODVkLTk2ZTBhM2VlN2E3MSIsImxpbmsiOiJodHRwczovL2Fjcm9iYXQuYWRvYmUuY29tL2lkL3VybjphYWlkOnNjOlVTOjNmZGJlZWFjLTJiZTUtNDkzYy1iZTE3LWEyNGEzYzVhZDcwNiIsImxhYmVsIjoiMTIiLCJsb2NhbGUiOiJlbl9VUyJ9.mPNx13cUj-WC9EtLriPDWnlIK0WL5VK4Sa9QWsuUcm1019nc8_U14shsDuxYmzvFMpO-MI80ELl1ZsSkRGDAOw\" target=\"_blank\" style=\"background-color:#1473E6;border-radius:20px;color:#ffffff;display:inline-block;font-size:16px;line-height:40px;text-align:center;text-decoration:none;width:200px;-webkit-text-size-adjust:none;\"><strong>Open</strong></a>\r\n				  <!--[if gte mso 9]>\r\n				  </center>\r\n				  <p style=\"margin:0; font-size:0; line-height:0;\"><o:p xmlns:o=\"urn:schemas-microsoft-com:office:office\">&nbsp;</o:p></p>\r\n				  </v:textbox>\r\n				  </v:roundrect>\r\n				  <![endif]-->\r\n				</td>\r\n             </tr>\r\n			 <tr>\r\n            	<td style=\"color:#505050; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:14px; line-height:20px; padding-top:16px;\">Your <a href=\"https://postoffice.adobe.com/po-server/link/redirect?target=eyJhbGciOiJIUzUxMiJ9.eyJ0ZW1wbGF0ZSI6ImNjX2NvbGxhYl9kY3NoYXJpbmdfdmlld19lbWFpbCIsImVtYWlsQWRkcmVzcyI6InJpY2tAbWF2cml4Lm9uZSIsInJlcXVlc3RJZCI6ImYxYzVlMDgxLTgzZDEtNDU2MC1iODVkLTk2ZTBhM2VlN2E3MSIsImxpbmsiOiJodHRwczovL3d3dy5hZG9iZS5jb20vZ28vYWNjb3VudF9wcm9maWxlIiwibGFiZWwiOiIxMyIsImxvY2FsZSI6ImVuX1VTIn0.AJ-cCPBYKTKZXTE0xvuVE6A9VZtsEX5UhIm7YNXn-l86QJwulT6-D4yoFrhrPFiA5WGlHQ9EjJJ6U_kX7ESG9w\" target=\"_blank\" style=\"color:#505050; text-decoration:underline;\">public profile</a> is visible to others who can access this document, your usage insights will be visible to the sender. You can leave the document at any time by selecting &#8216;Remove me&#8217; from the in&#8209;context menu.</td>\r\n             </tr>\r\n            </table>\r\n            <!-- END pod1 -->\r\n			   \r\n			</td>\r\n		</tr>\r\n		<tr>\r\n           <td bgcolor=\"#FBFBFB\" style=\"background-color:#FBFBFB; padding-top:60px; padding-bottom:60px;\">\r\n			   \r\n            <!-- order -->\r\n            <table class=\"email-width\" align=\"center\" width=\"500\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:500px;\">\r\n				<tr>\r\n					<td style=\"color:#8E8E8E; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:14px; line-height:18px; padding-top:20px;\">SENT BY</td>\r\n				</tr>\r\n				<tr>\r\n					<td style=\"color:#505050; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:18px; line-height:26px; padding-top:4px;\"><a href=\"mailto:jordan.wroblewski@me.com\" target=\"_blank\" style=\"color:#505050; text-decoration:none;\">jordan.wroblewski@me.com</a></td>\r\n				</tr>\r\n								<tr>\r\n					<td style=\"color:#8E8E8E; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:14px; line-height:18px; padding-top:20px;\">MESSAGE FROM SENDER</td>\r\n				</tr>\r\n				<tr>\r\n					<td style=\"color:#505050; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:18px; line-height:26px; padding-top:4px;\"><xmp style=\"font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:18px; line-height:26px; margin:0; overflow-x:auto; white-space:pre-wrap; white-space:-moz-pre-wrap; white-space:-pre-wrap; white-space:-o-pre-wrap; word-wrap:break-word;\">Please view this document. You can also add comments.</xmp></td>\r\n				</tr>\r\n								<tr>\r\n					<td style=\"color:#8E8E8E; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:14px; line-height:18px; padding-top:20px;\">SHARED ON</td>\r\n				</tr>\r\n				<tr>\r\n					<td style=\"color:#505050; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:18px; line-height:26px; padding-top:4px;\">November 13, 2025 10:06:32 PM UTC</td>\r\n				</tr>\r\n			</table>\r\n            <!-- END order -->\r\n            \r\n           <!-- END email content -->\r\n           </td>\r\n        </tr>\r\n		<tr>\r\n		<td bgcolor=\"#F5F5F5\" style=\"background-color:#F5F5F5;\">\r\n		  \r\n		  <!-- logo, links & legal-->\r\n          <table class=\"email-width\" align=\"center\" width=\"500\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:500px;\">\r\n		   <tr>\r\n			<td style=\"color:#EB1000; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:12px; line-height:18px; padding-top:40px;\"><img alt=\"Adobe\" src=\"https://landing.adobe.com/dam/global/images/adobe-logo.320x80.png\" width=\"80\" height=\"auto\" border=\"0\" hspace=\"0\" vspace=\"0\" style=\"color:#EB1000; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:12px; line-height:18px; display:block; vertical-align:top;\"/></td>\r\n		   </tr>\r\n		   <tr>\r\n			  <td class=\"legal\" style=\"color:#6D6D6D; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:16px; line-height:32px; padding-top:60px;\"><a href=\"https://postoffice.adobe.com/po-server/link/redirect?target=eyJhbGciOiJIUzUxMiJ9.eyJ0ZW1wbGF0ZSI6ImNjX2NvbGxhYl9kY3NoYXJpbmdfdmlld19lbWFpbCIsImVtYWlsQWRkcmVzcyI6InJpY2tAbWF2cml4Lm9uZSIsInJlcXVlc3RJZCI6ImYxYzVlMDgxLTgzZDEtNDU2MC1iODVkLTk2ZTBhM2VlN2E3MSIsImxpbmsiOiJodHRwczovL3d3dy5hZG9iZS5jb20vZ28vYWNjb3VudCIsImxhYmVsIjoiMTQiLCJsb2NhbGUiOiJlbl9VUyJ9.aNfvY290Jm4gV_-DKLsrtDXBEGpVr7wnVg61sJTVIkQzdbFSC9aTM86yPMLH3cUDrJMC7hN9vLSMMxym7ffthg\" target=\"_blank\" style=\"color:#6D6D6D; text-decoration:underline;\">Manage Account</a><br/>\r\n			  <a href=\"https://postoffice.adobe.com/po-server/link/redirect?target=eyJhbGciOiJIUzUxMiJ9.eyJ0ZW1wbGF0ZSI6ImNjX2NvbGxhYl9kY3NoYXJpbmdfdmlld19lbWFpbCIsImVtYWlsQWRkcmVzcyI6InJpY2tAbWF2cml4Lm9uZSIsInJlcXVlc3RJZCI6ImYxYzVlMDgxLTgzZDEtNDU2MC1iODVkLTk2ZTBhM2VlN2E3MSIsImxpbmsiOiJodHRwczovL3d3dy5hZG9iZS5jb20vZ28vc3VwcG9ydCIsImxhYmVsIjoiMTUiLCJsb2NhbGUiOiJlbl9VUyJ9.FixsSure2FUSwP7YB3HslO7gBNkTX0N4PpiA45vwAlEvyEIt0zQYxtJnF_W3yQp5q9DAjjEhk4yrVEMYFkLJSA\" target=\"_blank\" style=\"color:#6D6D6D; text-decoration:underline;\">Customer Support</a><br/>\r\n			  <a href=\"https://postoffice.adobe.com/po-server/link/redirect?target=eyJhbGciOiJIUzUxMiJ9.eyJ0ZW1wbGF0ZSI6ImNjX2NvbGxhYl9kY3NoYXJpbmdfdmlld19lbWFpbCIsImVtYWlsQWRkcmVzcyI6InJpY2tAbWF2cml4Lm9uZSIsInJlcXVlc3RJZCI6ImYxYzVlMDgxLTgzZDEtNDU2MC1iODVkLTk2ZTBhM2VlN2E3MSIsImxpbmsiOiJodHRwczovL3d3dy5hZG9iZS5jb20vZ28vZm9ydW1zIiwibGFiZWwiOiIxNiIsImxvY2FsZSI6ImVuX1VTIn0.KZ3BbG_qjncv9S9OKqQM-mf2DQPiONOV9HXigE29EPxpzh_X2Yz3ZZvefA158zk2sXNqxylzAEDZ9mjdwrnBJg\" target=\"_blank\" style=\"color:#6D6D6D; text-decoration:underline;\">Forums</a><br/>\r\n			  <a href=\"https://postoffice.adobe.com/po-server/link/redirect?target=eyJhbGciOiJIUzUxMiJ9.eyJ0ZW1wbGF0ZSI6ImNjX2NvbGxhYl9kY3NoYXJpbmdfdmlld19lbWFpbCIsImVtYWlsQWRkcmVzcyI6InJpY2tAbWF2cml4Lm9uZSIsInJlcXVlc3RJZCI6ImYxYzVlMDgxLTgzZDEtNDU2MC1iODVkLTk2ZTBhM2VlN2E3MSIsImxpbmsiOiJodHRwczovL3d3dy5hZG9iZS5jb20vZ28vdGVybXMiLCJsYWJlbCI6IjE3IiwibG9jYWxlIjoiZW5fVVMifQ.HzeWDWmNtGBklEIk8UjW8qdQeWSgwOyn4CKaF2JWll7KcLGclSvsjAUU0SAllH3f6SQUPT2u9PGdbQYLwXaHkg\" target=\"_blank\" style=\"color:#6D6D6D; text-decoration:underline;\">Terms of Use</a><br/>\r\n			  <a href=\"https://postoffice.adobe.com/po-server/link/redirect?target=eyJhbGciOiJIUzUxMiJ9.eyJ0ZW1wbGF0ZSI6ImNjX2NvbGxhYl9kY3NoYXJpbmdfdmlld19lbWFpbCIsImVtYWlsQWRkcmVzcyI6InJpY2tAbWF2cml4Lm9uZSIsInJlcXVlc3RJZCI6ImYxYzVlMDgxLTgzZDEtNDU2MC1iODVkLTk2ZTBhM2VlN2E3MSIsImxpbmsiOiJodHRwczovL2Fjcm9iYXQuYWRvYmUuY29tL2xpbmsvcmVwb3J0YWJ1c2UvdHJhY2s_dXJpPXVybjphYWlkOnNjOlVTOjNmZGJlZWFjLTJiZTUtNDkzYy1iZTE3LWEyNGEzYzVhZDcwNiIsImxhYmVsIjoiMTgiLCJsb2NhbGUiOiJlbl9VUyJ9.7rNEtc1CIMcIsbg_ubofkx0lPv9A8p3sFyr6UZ69nVwoOIwLVMm2_2QzpAGbDUwGrplEo2Xz-4D4zmbtigHPCw\" target=\"_blank\" style=\"color:#6D6D6D; text-decoration:underline;\">Report Abuse</a></td>\r\n			</tr>\r\n		   <tr>\r\n			  <td class=\"legal\" style=\"color:#6D6D6D; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:11px; line-height:18px; padding-top:50px; padding-bottom:100px;\">Adobe, Adobe (Stylized), Creative Cloud, the Creative Cloud logo, Document Cloud, and the Adobe PDF logo are either registered trademarks or trademarks of Adobe in the United States and/or other countries.<br/><br/>\r\n			  This is not a comprehensive list of all Adobe trademarks. For a full list, refer to the <a href=\"https://postoffice.adobe.com/po-server/link/redirect?target=eyJhbGciOiJIUzUxMiJ9.eyJ0ZW1wbGF0ZSI6ImNjX2NvbGxhYl9kY3NoYXJpbmdfdmlld19lbWFpbCIsImVtYWlsQWRkcmVzcyI6InJpY2tAbWF2cml4Lm9uZSIsInJlcXVlc3RJZCI6ImYxYzVlMDgxLTgzZDEtNDU2MC1iODVkLTk2ZTBhM2VlN2E3MSIsImxpbmsiOiJodHRwczovL3d3dy5hZG9iZS5jb20vZ28vdHJhZGVtYXJrcyIsImxhYmVsIjoiMTkiLCJsb2NhbGUiOiJlbl9VUyJ9.6wfL_PKvXqg_AYSBlUzOr1gewzSRp7iD3WLAGTgdtVJ26ho6S6reJ8jC0zuha8H-FCzajc5Qqht3ag5rgwIhlA\" target=\"_blank\" style=\"color:#6D6D6D;\">Adobe Trademark Guidelines</a>. All other trademarks are the property of their respective owners.<br/><br/>\r\n			  Registered Office: Adobe Systems Software Ireland Limited, 4-6 Riverwalk, Citywest Business Park, Dublin 24, Ireland. Registered number: 344992<br/><br/>\r\n			  <a href=\"https://postoffice.adobe.com/po-server/link/redirect?target=eyJhbGciOiJIUzUxMiJ9.eyJ0ZW1wbGF0ZSI6ImNjX2NvbGxhYl9kY3NoYXJpbmdfdmlld19lbWFpbCIsImVtYWlsQWRkcmVzcyI6InJpY2tAbWF2cml4Lm9uZSIsInJlcXVlc3RJZCI6ImYxYzVlMDgxLTgzZDEtNDU2MC1iODVkLTk2ZTBhM2VlN2E3MSIsImxpbmsiOiJodHRwczovL3d3dy5hZG9iZS5jb20vZ28vY29tbXMiLCJsYWJlbCI6IjIwIiwibG9jYWxlIjoiZW5fVVMifQ.nRAItapzMQ_T3KfeMZo8MFeYW1_XBtfSb1ARyYA7Lkz17SeYMCFbROWRurpcyuMQsd1gOz2FZMOXCulT5erLkw\" target=\"_blank\" style=\"color:#6D6D6D;\">Stop notifications for reviews</a>.\r\n			  			  </td>\r\n			</tr>\r\n		  </table>\r\n		  <!-- END logo, links & legal-->\r\n			\r\n		</td>\r\n	  </tr>\r\n    </table>\r\n    </td>\r\n  </tr>\r\n</table>\r\n<img src=\"https://postoffice.adobe.com/po-server/link/open?source=eyJhbGciOiJIUzUxMiJ9.eyJ0ZW1wbGF0ZSI6ImNjX2NvbGxhYl9kY3NoYXJpbmdfdmlld19lbWFpbCIsImVtYWlsQWRkcmVzcyI6InJpY2tAbWF2cml4Lm9uZSIsInJlcXVlc3RJZCI6ImYxYzVlMDgxLTgzZDEtNDU2MC1iODVkLTk2ZTBhM2VlN2E3MSIsImxvY2FsZSI6ImVuX1VTIn0.oiSkAdmXdNSjc0-GIHz41_jUioeRCYyz4tqysgiYCV_QmZ2W57d77CkGsxy8KK8Xv0hhL3LxASdN0heL3MSTuw\" height=\"1\" width=\"1\" /><!-- cc_collab_dcsharing_view_email -->\r\n  </body>\r\n</html>','------------------------------------------------------------------\r\n------------------------------------------------------------------\r\n\r\njordan.wroblewski@me.com has shared APPROVED-BLD-24-0510827-REV1 (1)\r\nYou can also comment on it.\r\nOpen:\r\nhttps://acrobat.adobe.com/id/urn:aaid:sc:US:3fdbeeac-2be5-493c-be17-a24a3c5ad706\r\n\r\nYour public profile is visible to others who can access this document, your usage insights will be visible to the sender. You can leave the document at any time by selecting \'Remove me\' from the in-context menu.\r\n\r\nhttps://www.adobe.com/go/account_profile\r\n\r\n------------------------------------------------------------------\r\n\r\nSENT BY\r\njordan.wroblewski@me.com\r\nMESSAGE FROM SENDER\r\nPlease view this document. You can also add comments.\r\nSHARED ON\r\nNovember 13, 2025 10:06:32 PM UTC\r\n\r\n------------------------------------------------------------------\r\n\r\nManage Account:\r\nhttps://www.adobe.com/go/account\r\n\r\nCustomer Support:\r\nhttps://www.adobe.com/go/support\r\n\r\nForums:\r\nhttps://www.adobe.com/go/forums\r\n\r\nTerms of Use:\r\nhttps://www.adobe.com/go/terms\r\n\r\nReport Abuse:\r\nhttps://acrobat.adobe.com/link/reportabuse/track?uri=urn:aaid:sc:US:3fdbeeac-2be5-493c-be17-a24a3c5ad706\r\n\r\n******************************************************************\r\n\r\nAdobe, Adobe (Stylized), Creative Cloud, the Creative Cloud logo, Document Cloud, and the Adobe PDF logo are either registered trademarks or trademarks of Adobe in the United States and/or other countries.\r\n\r\nThis is not a comprehensive list of all Adobe trademarks. For a full list, refer to the Adobe Trademark Guidelines. All other trademarks are the property of their respective owners.\r\n\r\nAdobe Trademark Guidelines:\r\nhttps://www.adobe.com/go/trademarks\r\n\r\nRegistered Office: Adobe Systems Software Ireland Limited, 4-6 Riverwalk, Citywest Business Park, Dublin 24, Ireland. Registered number: 344992\r\nStop notifications for reviews:\r\nhttps://www.adobe.com/go/comms',0,0,0,0,0,0,'2025-11-13 22:06:32','2025-12-04 14:05:21','2025-12-04 14:05:21','2025-12-04 14:05:21',NULL,NULL,NULL),
(98,4,' <SA1PR18MB482461D0EB837DE19CD021D7A1CEA@SA1PR18MB4824.namprd18.prod.outlook.com>',NULL,NULL,'***SPAM***  Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration','jtrevey@forgenano.com','James Trevey','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nSent! Thank you, Jordan.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nI\'m looking to understand your standard pack designs for a 6S2P, 8S2P, 12S2p for cylindrical 21700s as well as a 3S1P and 2S1p for pouch that would be 7mmx63mmx140mm. And any info on the BMS and pack design, or any existing drones using any of these packs from\r\n you.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nI\'d love to also get ballpark costs/facility footprint/electrical needs/labor for you to set up a line for 6S2P to make 1,440,000 packs per year and the pouch to make 720,000 per year. It is not optional to have you make packs in Florida unfortunately, but\r\n you can certainly supply the parts to them from there if that helps.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nI look forward to syncing up. Thanks!</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nJames</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b> Monday, November 10, 2025 3:43 PM<br>\r\n<b>To:</b> James Trevey &lt;jtrevey@forgenano.com&gt;<br>\r\n<b>Cc:</b> Will McKenna &lt;WMcKenna@forgenano.com&gt;; Daniel &lt;dansheridanmusic@gmail.com&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div>Hi James,</div>\r\n<div><br>\r\n</div>\r\n<div>Yes, I can do 10:30am EST.&nbsp; Go ahead and send me a meeting invite and if others can make it they can join as well.&nbsp;</div>\r\n<div><br>\r\n</div>\r\n<div>Looking forward to catching up.</div>\r\n<div><br>\r\n</div>\r\n<div>Best,</div>\r\n<div>\r\n<div dir=\"ltr\" class=\"x_gmail_signature\" data-smartmail=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\"><br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,mGkPUj_d0_J2K1BXwgIzY9wMKTJ1_kIOO3mXzETbTMfuP-qgmt69ms2pFCmy3iNE151jUZGvcyAxTQ0lC_uyz9itz0X3lYQVSCJzZo6C5KMJ&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n</div>\r\n<br>\r\n<div class=\"x_gmail_quote x_gmail_quote_container\">\r\n<div dir=\"ltr\" class=\"x_gmail_attr\">On Mon, Nov 10, 2025 at 5:37 PM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote class=\"x_gmail_quote\" style=\"margin:0px 0px 0px 0.8ex; border-left:1px solid rgb(204,204,204); padding-left:1ex\">\r\n<div class=\"x_msg7691130268813451465\">\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nHey Jordan,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nSorry for going dark. The meeting went great. I would love to sync up with you to figure out next details. Can you chat at 8:30am MT tomorrow (11th)?</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJames</div>\r\n<div id=\"x_m_7691130268813451465appendonsend\"></div>\r\n<hr style=\"display:inline-block; width:98%\">\r\n<div id=\"x_m_7691130268813451465divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Thursday, November 6, 2025 12:05 PM<br>\r\n<b>To:</b> James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Will McKenna &lt;<a href=\"mailto:WMcKenna@forgenano.com\" target=\"_blank\">WMcKenna@forgenano.com</a>&gt;; Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron\r\n &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div>Hi James,</div>\r\n<div><br>\r\n</div>\r\n<div>Hope you are well.&nbsp;&nbsp;</div>\r\n<div><br>\r\n</div>\r\n<div>How did your meeting go?&nbsp;</div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\"><br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,0yjyucKyeUfIxS-5HFSvjrsDEo1K2sQDkz8oFv1cIzwEU8O73aVHhykbwL6rlE26TNk2-ufHYgRZUnkYoStD2sgHGVdzqKGuSup50N5h1F8,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n</div>\r\n<br>\r\n<div>\r\n<div dir=\"ltr\">On Mon, Oct 27, 2025 at 2:33 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; border-left:1px solid rgb(204,204,204); padding-left:1ex\">\r\n<div dir=\"ltr\">\r\n<div>Hi James,</div>\r\n<div><br>\r\n</div>\r\n<div>We are logged on to the teams meeting.&nbsp;</div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\"><br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,oTvbzZaLRCIhe4MhhhOwP3SQWQDt-6Fwcd6dQZR2vvpjA3wEcLTacBUH6dS2M_Ld9yfC3kJRxIbAniyQdmaJp7TgDFdc7r7sWlrEhV0RGfTYRb6Sfrc,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n</div>\r\n<br>\r\n<div>\r\n<div dir=\"ltr\">On Thu, Oct 23, 2025 at 1:05 PM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; border-left:1px solid rgb(204,204,204); padding-left:1ex\">\r\n<div>\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nThanks for the call today. Attached are a bunch of documents:</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<ul style=\"margin-top:0px; margin-bottom:0px; list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">spec sheets for all (5) FN Products</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">spec sheet for the Samsung 53G</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">spec sheet for the Moli P50B</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Presentation from our call with ballpark cell availability and pricing</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Term sheet for capturing our relationship interests</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Skyfoundary proposal</div>\r\n</li></ul>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434appendonsend\">\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI have your volumes from the ProgramProduct excel sheet that I\'ve plugged into the term sheet for now as a first draft. On your end I captured the following action items:</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<ul style=\"margin-top:0px; margin-bottom:0px; list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Review all documents in this email and confirm volumes and provide first pass review on the term sheet</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Review the Skyfoundary proposal and put together a first-pass budget/plan to support Forge as a partner</div>\r\n</li></ul>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI am out tomorrow for personal matters but look forward to our discussion on Monday.&nbsp;</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block; width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, October 22, 2025 9:45 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Will McKenna &lt;<a href=\"mailto:WMcKenna@forgenano.com\" target=\"_blank\">WMcKenna@forgenano.com</a>&gt;; Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron\r\n &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">You bet,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Speak with you tomorrow.&nbsp;</div>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAd0bf4139-d110-2b14-2e7d-f838dea323c6\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA491b8ae0-354c-d404-4a80-c7e9f97e7013\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,RCp_srnsn8TsHi-Y90KYoNQPNLUs9Z2k6AQ2a8mY4AU8XQa0dJ0qeugNm0mDw--U4uH_iIRb9IN4Nb3dl2ctTPPmCoYcMeCAkzmhYm7mlpPXnMYFHVt8&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Oct 22, 2025 at 11:34 AM James Trevey &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAa31267f6-c393-7fea-dc8a-2e771875250b\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;\r\n wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; padding-left:1ex; border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nperfect. I look forward to speaking with you then!</div>\r\n<div id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434x_m_5154054507612261457appendonsend\">\r\n</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434x_m_5154054507612261457divRplyFwdMsg\">\r\n<div style=\"direction:ltr; font-family:Calibri,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA95e85b38-b96c-174d-e756-81f1bec2a1ff\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, October 22, 2025 9:30 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAd1de4bb3-03ed-f1d6-f7e4-1848df71c103\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Will McKenna &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA8bded2a7-9490-66c0-1166-46535ffa61f0\" href=\"mailto:WMcKenna@forgenano.com\" target=\"_blank\">WMcKenna@forgenano.com</a>&gt;; Daniel &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA5cab2c66-aa13-c490-cc32-3f94f13d8838\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA42851c95-8020-51f8-373b-55e4c94f515b\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I can do tomorrow at 9am MST.&nbsp;&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Let me know if that still works for you and I can send you over an invite.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA79c48f2b-7c75-15f7-0c38-0a8a933b49ef\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAc61fd127-5390-c059-5dcd-e6ec1ef6d2b9\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,irabj1pPRcbHt7fZTnVGlp-D5OWgJo5J-DJVmYysbSINfzIevG80IYq97Jraq-OV6w6IJC3gu0pHz4oFYfW4xcnb3n-PwXqRHBE_AugLqCnyxkrk6RI,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Tue, Oct 21, 2025 at 6:09 PM James Trevey &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA873dbf9f-ca2b-ea71-cec5-8029b0003dfb\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;\r\n wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; padding-left:1ex; border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nHey Jordan,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI am back from 3 weeks of travel and ready to get sorted here. Tomorrow is sunk, but on Thursday I can do 9am MT or 12:30pm MT. Do either work for you? If not, I have the following next week:</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n27th: 11:30-1pm MT</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n28th: 8am MT, 11am MT, after 1pm MT</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n29th: after 1pm MT</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n30th: after 10am MT</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nLet me know what works.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA81571a2c-6c21-2436-85b5-8714e8b66c05\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Monday, October 20, 2025 5:12 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA1e87c462-b83e-2b9c-f923-2ac81a62cf8d\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA31dc8928-3d8b-0f48-12bd-d8b3c385d531\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;;\r\n Nathan Staron &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA542618ae-28b3-7246-75f5-03485d9c3649\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I am out of town as well.&nbsp; How does your Wednesday look?&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to catching up.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\"><u>jordan<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA2ec3caf6-8cfd-8a8d-d7e5-54d935ffa458\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"color:rgb(255,255,255); background-color:rgba(255,255,255,0)\"><a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAe825f741-6e69-fe40-fbd6-457f5c25b3a9\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,kcAZ-rF3D0Z_d8KzW-apTAtlzHQofd8D2ZjbELiCHZPsqOhCV8Xd_fUJ6ZWDkt-2fgJod-EPR6FfR9gTPQj_LmrIjU3cEOjFP4Vi0A3Pa8jqtC5XpIZ1aRU,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px; background-color:rgba(255,255,255,0)\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<blockquote>\r\n<div style=\"direction:ltr\">On Oct 16, 2025, at 9:20 AM, James Trevey &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA1939e34b-5b2c-9003-ede8-c8f559743e5e\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;\r\n wrote:<br>\r\n<br>\r\n</div>\r\n</blockquote>\r\n<blockquote>\r\n<div style=\"direction:ltr\">﻿</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nHey Jordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nApologies for the slow/no replies recently. Travel has been brutal.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nWe\'ve got a lot of the information ready for you. Can we schedule a call to do a walk through on Monday the 20th at 9am or 10am ET?</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJames</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434x_m_5154054507612261457x_m_3027303751782346756x_divRplyFwdMsg\">\r\n<div style=\"direction:ltr; font-family:Calibri,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA8c58e32e-c07b-2c9d-031e-39378c6b2453\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Thursday, October 16, 2025 9:16 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA370bc921-b453-4ca1-a90c-a3760d045262\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA38a65a75-0a32-7ad1-fb6e-fec3a8ccf702\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;;\r\n Nathan Staron &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAef467482-444c-bd55-030d-8124fe0eb8a3\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Would be great to get some pricing and spec sheets.&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Let me know when we can connect.&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\"><u>jordan<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAbde88397-5f7f-6e20-eecb-9c9d616ae70b\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"color:rgb(255,255,255); background-color:rgba(255,255,255,0)\"><a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA8995a143-93ff-32bf-0768-f2305f87035a\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,kruzcWrtQAWBE_Wzkk5ZCPi8egnieSOSjhsFO2fIO_mt3sy1dInRgNFjLY-Xwbk4dmY7rgbxINSGlle76-Yg-vEcypX9dPm0sX9KSwuuDZUbmg,,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px; background-color:rgba(255,255,255,0)\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<blockquote>\r\n<div style=\"direction:ltr\">On Sep 30, 2025, at 4:31 PM, Jordan Wroblewski &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAfc903b23-ac77-7b70-923b-6abe766ec537\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;\r\n wrote:<br>\r\n<br>\r\n</div>\r\n</blockquote>\r\n<blockquote>\r\n<div style=\"direction:ltr\">﻿</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to our discussion and seeing your deck of prospective projects.&nbsp;&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,&nbsp;</div>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA69160ff1-d5bd-007c-638f-52d5ccdd5f0d\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA6a7ea24c-1ec8-7ec2-7302-6e195d239024\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,KG7OlMyZO9jbLU5vTJ3I8lMhBaHdNf06-ktzHMDOUSoCImrfUczbXUj1d1VcQUh_ApKsyrkLO9FO7PzcinsYewUWoskpuT9EKlrhqSI22A,,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Fri, Sep 26, 2025 at 4:59 PM James Trevey &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAa8fbc85b-a982-60aa-1b0f-421cd7a87c0d\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;\r\n wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; padding-left:1ex; border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI won\'t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI\'ll send to you as soon as I can next week.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;James Trevey &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAd7a5c27b-da55-2c7f-698b-f818d5e5341c\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 24, 2025 10:49 AM<br>\r\n<b>To:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAa691f501-9154-2520-985f-29cdd2fb5c90\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAbf77b698-937c-aeca-a707-b2494628658b\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;;\r\n Nathan Staron &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA104e212a-34bd-05fd-2c13-aef8bc1517fa\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI also have a verbal matter we can discuss soon. Once I\'ve got the deck ready I\'ll find time for a short call with you.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nTalk soon.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJames</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434x_m_5154054507612261457x_m_3027303751782346756x_x_m_7859046138643783182x_divRplyFwdMsg\">\r\n<div style=\"direction:ltr; font-family:Calibri,sans-serif; font-size:11pt; color:black\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA8839c907-fb82-436d-88c1-e4063c0ac22f\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 24, 2025 10:07 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA5bbe05c5-50fd-d977-82a6-0bb9a3e8d948\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAfb29af50-570f-4e82-d05d-36379913355d\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;;\r\n Nathan Staron &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAf2c74f2a-7269-dfef-9873-29a46c5c4b9e\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for the follow up.&nbsp; You were on my list to contact today!&nbsp;&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Would that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I will let you know if I will be able to make it up to Detroit for The Battery Show.&nbsp;&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to seeing the deck.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">All the best,&nbsp;</div>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA61a86075-871c-a4f2-6f33-e7c4eb316069\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA214782f4-48ae-8022-ef74-7608a601abba\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 24, 2025 at 11:59 AM James Trevey &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA33cce604-09df-9972-aa99-5a2cf482f6d9\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;\r\n wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; padding-left:1ex; border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nHey Jordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nThank you for the quick follow up.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we\'ve decided we\'d like to provide information on additional products to you which are typically not on the menu but I have details\r\n to sort first.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nRegarding shows, happy to discuss when ready. We\'ll be at The Battery Show in 2 weeks, which I think you should consider attending and I\'d be happy to connect while there.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJames</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434x_m_5154054507612261457x_m_3027303751782346756x_x_m_7859046138643783182x_x_m_-6814561645313625911divRplyFwdMsg\">\r\n<div style=\"direction:ltr; font-family:Calibri,sans-serif; font-size:11pt; color:black\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAd96cc1aa-a813-6163-4f4d-3a604e112ee7\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Thursday, September 18, 2025 11:03 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA6c494d49-99e5-cffe-a9df-8e6c460a0e63\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA5652f27b-5ef0-af9b-1a3e-1cecbce3fad8\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;;\r\n Nathan Staron &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAd0fa53a7-eca3-9387-f15c-28b074c1a084\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information\r\n to optimize our collaboration and planning:<br>\r\n<br>\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.<br>\r\n<br>\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.<br>\r\n<br>\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.<br>\r\n<br>\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.<br>\r\n<br>\r\nClarify your minimum order quantities and expected pricing for each product line.<br>\r\n<br>\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.<br>\r\n<br>\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted\r\n commercial timelines, and expected pricing.<br>\r\n<br>\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made module and packs for:<br>\r\n<br>\r\n18650:<br>\r\n<br>\r\nNMC: TNL-ITR18650-2600P<br>\r\n<br>\r\nLFP: SW18650-26HPA<br>\r\n<br>\r\nLFP: IFR18650-2000mAh<br>\r\n<br>\r\n21700:<br>\r\n<br>\r\nNMC: INR21700-50S<br>\r\n<br>\r\nNMC: INR21700-4000<br>\r\n<br>\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">In terms of the shows you mentioned, we are getting our schedules aligned so we can attend.&nbsp; What\'s the &quot;secret meeting&quot; in Nov?&nbsp;<br>\r\n<br>\r\nWe look forward to your prompt response so we can efficiently move to the next stages.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Talk soon,&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA4e4576b1-1931-f3c5-bf04-1d623e748413\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA0cfcaabe-77cb-de77-b671-98d78df6d665\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 17, 2025 at 7:00 PM James Trevey &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA2efeafd1-df26-a882-3cd2-915ab031edb6\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;\r\n wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; padding-left:1ex; border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nThanks for moving quickly here. I got bogged down today but better late than never.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell has a 100% US supply chain already</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions\r\n</u>next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>thousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions</u>&nbsp;next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>thousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n</ul>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI will check with my people on 301 asap.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI look forward to our next communication.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJames</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:black\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:black\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA3b059ab0-9fb4-963d-d6b8-369eb4ca0cc2\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 17, 2025 7:56 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA3d6fb971-5d4e-9b71-f39f-0860c844fa95\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;; Daniel &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA3111b555-f6ea-0b7e-f4da-ab68556c65e8\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA7b82e4d2-9ac4-eea2-625d-4079b0c83093\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Gentlemen,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">It was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<ul style=\"direction:ltr\">\r\n<li style=\"direction:ltr\">James to&nbsp;send the cell specification sheets as soon as possible.</li><li style=\"direction:ltr\">LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.</li><li style=\"direction:ltr\">James to&nbsp;send their term sheet template for throughput contracts.</li><li style=\"direction:ltr\">We should discuss 301 exclusion support for manufacturing equipment.</li></ul>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I look forward to our next conversation.&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAdbe91ca4-1ba3-791b-0976-85d477e08c5f\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA739c124e-e74e-a939-4030-d125840b8a52\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n<div style=\"direction:ltr\">&lt;ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes (1).csv&gt;</div>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Sent! Thank you, Jordan.\r\n\r\nI\'m looking to understand your standard pack designs for a 6S2P, 8S2P, 12S2p for cylindrical 21700s as well as a 3S1P and 2S1p for pouch that would be 7mmx63mmx140mm. And any info on the BMS and pack design, or any existing drones using any of these packs from you.\r\n\r\nI\'d love to also get ballpark costs/facility footprint/electrical needs/labor for you to set up a line for 6S2P to make 1,440,000 packs per year and the pouch to make 720,000 per year. It is not optional to have you make packs in Florida unfortunately, but you can certainly supply the parts to them from there if that helps.\r\n\r\nI look forward to syncing up. Thanks!\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\nSent: Monday, November 10, 2025 3:43 PM\r\nTo: James Trevey <jtrevey@forgenano.com>\r\nCc: Will McKenna <WMcKenna@forgenano.com>; Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nYes, I can do 10:30am EST.  Go ahead and send me a meeting invite and if others can make it they can join as well.\r\n\r\nLooking forward to catching up.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,mGkPUj_d0_J2K1BXwgIzY9wMKTJ1_kIOO3mXzETbTMfuP-qgmt69ms2pFCmy3iNE151jUZGvcyAxTQ0lC_uyz9itz0X3lYQVSCJzZo6C5KMJ&typo=1>\r\n\r\n\r\nOn Mon, Nov 10, 2025 at 5:37 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nHey Jordan,\r\n\r\nSorry for going dark. The meeting went great. I would love to sync up with you to figure out next details. Can you chat at 8:30am MT tomorrow (11th)?\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Thursday, November 6, 2025 12:05 PM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Will McKenna <WMcKenna@forgenano.com<mailto:WMcKenna@forgenano.com>>; Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nHope you are well.\r\n\r\nHow did your meeting go?\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,0yjyucKyeUfIxS-5HFSvjrsDEo1K2sQDkz8oFv1cIzwEU8O73aVHhykbwL6rlE26TNk2-ufHYgRZUnkYoStD2sgHGVdzqKGuSup50N5h1F8,&typo=1>\r\n\r\n\r\nOn Mon, Oct 27, 2025 at 2:33 PM Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>> wrote:\r\nHi James,\r\n\r\nWe are logged on to the teams meeting.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,oTvbzZaLRCIhe4MhhhOwP3SQWQDt-6Fwcd6dQZR2vvpjA3wEcLTacBUH6dS2M_Ld9yfC3kJRxIbAniyQdmaJp7TgDFdc7r7sWlrEhV0RGfTYRb6Sfrc,&typo=1>\r\n\r\n\r\nOn Thu, Oct 23, 2025 at 1:05 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nJordan,\r\n\r\nThanks for the call today. Attached are a bunch of documents:\r\n\r\n\r\n  *\r\nspec sheets for all (5) FN Products\r\n  *\r\nspec sheet for the Samsung 53G\r\n  *\r\nspec sheet for the Moli P50B\r\n  *\r\nPresentation from our call with ballpark cell availability and pricing\r\n  *\r\nTerm sheet for capturing our relationship interests\r\n  *\r\nSkyfoundary proposal\r\n\r\nI have your volumes from the ProgramProduct excel sheet that I\'ve plugged into the term sheet for now as a first draft. On your end I captured the following action items:\r\n\r\n\r\n  *\r\nReview all documents in this email and confirm volumes and provide first pass review on the term sheet\r\n  *\r\nReview the Skyfoundary proposal and put together a first-pass budget/plan to support Forge as a partner\r\n\r\nI am out tomorrow for personal matters but look forward to our discussion on Monday.\r\n\r\nJames\r\n\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Wednesday, October 22, 2025 9:45 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Will McKenna <WMcKenna@forgenano.com<mailto:WMcKenna@forgenano.com>>; Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nYou bet,\r\n\r\nSpeak with you tomorrow.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,RCp_srnsn8TsHi-Y90KYoNQPNLUs9Z2k6AQ2a8mY4AU8XQa0dJ0qeugNm0mDw--U4uH_iIRb9IN4Nb3dl2ctTPPmCoYcMeCAkzmhYm7mlpPXnMYFHVt8&typo=1>\r\n\r\n\r\nOn Wed, Oct 22, 2025 at 11:34 AM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nperfect. I look forward to speaking with you then!\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Wednesday, October 22, 2025 9:30 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Will McKenna <WMcKenna@forgenano.com<mailto:WMcKenna@forgenano.com>>; Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nI can do tomorrow at 9am MST.\r\n\r\nLet me know if that still works for you and I can send you over an invite.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,irabj1pPRcbHt7fZTnVGlp-D5OWgJo5J-DJVmYysbSINfzIevG80IYq97Jraq-OV6w6IJC3gu0pHz4oFYfW4xcnb3n-PwXqRHBE_AugLqCnyxkrk6RI,&typo=1>\r\n\r\n\r\nOn Tue, Oct 21, 2025 at 6:09 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nHey Jordan,\r\n\r\nI am back from 3 weeks of travel and ready to get sorted here. Tomorrow is sunk, but on Thursday I can do 9am MT or 12:30pm MT. Do either work for you? If not, I have the following next week:\r\n\r\n27th: 11:30-1pm MT\r\n28th: 8am MT, 11am MT, after 1pm MT\r\n29th: after 1pm MT\r\n30th: after 10am MT\r\n\r\nLet me know what works.\r\n\r\nJames\r\n\r\n\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Monday, October 20, 2025 5:12 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nI am out of town as well.  How does your Wednesday look?\r\n\r\nLooking forward to catching up.\r\n\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,kcAZ-rF3D0Z_d8KzW-apTAtlzHQofd8D2ZjbELiCHZPsqOhCV8Xd_fUJ6ZWDkt-2fgJod-EPR6FfR9gTPQj_LmrIjU3cEOjFP4Vi0A3Pa8jqtC5XpIZ1aRU,&typo=1>\r\n\r\nOn Oct 16, 2025, at 9:20 AM, James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\n\r\n﻿\r\nHey Jordan,\r\n\r\nApologies for the slow/no replies recently. Travel has been brutal.\r\n\r\nWe\'ve got a lot of the information ready for you. Can we schedule a call to do a walk through on Monday the 20th at 9am or 10am ET?\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Thursday, October 16, 2025 9:16 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nWould be great to get some pricing and spec sheets.\r\n\r\nLet me know when we can connect.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,kruzcWrtQAWBE_Wzkk5ZCPi8egnieSOSjhsFO2fIO_mt3sy1dInRgNFjLY-Xwbk4dmY7rgbxINSGlle76-Yg-vEcypX9dPm0sX9KSwuuDZUbmg,,&typo=1>\r\n\r\nOn Sep 30, 2025, at 4:31 PM, Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>> wrote:\r\n\r\n﻿\r\nHi James,\r\n\r\nI have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.\r\n\r\nLooking forward to our discussion and seeing your deck of prospective projects.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,KG7OlMyZO9jbLU5vTJ3I8lMhBaHdNf06-ktzHMDOUSoCImrfUczbXUj1d1VcQUh_ApKsyrkLO9FO7PzcinsYewUWoskpuT9EKlrhqSI22A,,&typo=1>\r\n\r\n\r\nOn Fri, Sep 26, 2025 at 4:59 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nJordan,\r\n\r\nI won\'t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products.\r\n\r\nI\'ll send to you as soon as I can next week.\r\n\r\nJames\r\n\r\n\r\n\r\n\r\n________________________________\r\nFrom: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nSent: Wednesday, September 24, 2025 10:49 AM\r\nTo: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nJordan,\r\n\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating.\r\n\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?\r\n\r\nI also have a verbal matter we can discuss soon. Once I\'ve got the deck ready I\'ll find time for a short call with you.\r\n\r\nTalk soon.\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Wednesday, September 24, 2025 10:07 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nThank you for the follow up.  You were on my list to contact today!\r\n\r\nWould that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...\r\n\r\nI will let you know if I will be able to make it up to Detroit for The Battery Show.\r\n\r\nLooking forward to seeing the deck.\r\n\r\nAll the best,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&typo=1>\r\n\r\n\r\nOn Wed, Sep 24, 2025 at 11:59 AM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nHey Jordan,\r\n\r\nThank you for the quick follow up.\r\n\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we\'ve decided we\'d like to provide information on additional products to you which are typically not on the menu but I have details to sort first.\r\n\r\nRegarding shows, happy to discuss when ready. We\'ll be at The Battery Show in 2 weeks, which I think you should consider attending and I\'d be happy to connect while there.\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Thursday, September 18, 2025 11:03 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\n\r\nThank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information to optimize our collaboration and planning:\r\n\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.\r\n\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.\r\n\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.\r\n\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.\r\n\r\nClarify your minimum order quantities and expected pricing for each product line.\r\n\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.\r\n\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted commercial timelines, and expected pricing.\r\n\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made module and packs for:\r\n\r\n18650:\r\n\r\nNMC: TNL-ITR18650-2600P\r\n\r\nLFP: SW18650-26HPA\r\n\r\nLFP: IFR18650-2000mAh\r\n\r\n21700:\r\n\r\nNMC: INR21700-50S\r\n\r\nNMC: INR21700-4000\r\n\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.\r\n\r\nIn terms of the shows you mentioned, we are getting our schedules aligned so we can attend.  What\'s the \"secret meeting\" in Nov?\r\n\r\nWe look forward to your prompt response so we can efficiently move to the next stages.\r\n\r\n\r\nTalk soon,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&typo=1>\r\n\r\n\r\nOn Wed, Sep 17, 2025 at 7:00 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nJordan,\r\n\r\nThanks for moving quickly here. I got bogged down today but better late than never.\r\n\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:\r\n\r\n\r\n  *\r\nSC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)\r\n     *\r\nThis cell has a 100% US supply chain already\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the thousands next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these\r\n  *\r\nSC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the thousands next year by our partner in the EU, until our factory is online in 2027\r\n\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.\r\n\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.\r\n\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret meeting on November 5th in DC?\r\n\r\nI will check with my people on 301 asap.\r\n\r\nI look forward to our next communication.\r\n\r\nJames\r\n\r\n\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Wednesday, September 17, 2025 7:56 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>; Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nGentlemen,\r\n\r\nIt was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:\r\n\r\n\r\n  *   James to send the cell specification sheets as soon as possible.\r\n  *   LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.\r\n  *   James to send their term sheet template for throughput contracts.\r\n  *   We should discuss 301 exclusion support for manufacturing equipment.\r\n\r\nI look forward to our next conversation.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&typo=1>\r\n\r\n<ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes (1).csv>\r\n',0,0,0,0,0,0,'2025-11-10 23:12:50','2025-12-04 14:05:22','2025-12-04 14:05:22','2025-12-04 14:05:22',NULL,NULL,NULL),
(99,4,'<457555374.59639999.1764615442662@abmktmail-trigger1i.marketo.org>',NULL,NULL,'[Onboarding] Customize with Lucidchart templates','email@e.lucid.co','Lucid','<!doctype html>\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\">\r\n<head> \r\n<meta http-equiv=\"Content-Type\" content=\"text/html charset=UTF-8\"> \r\n<meta name=\"viewport\" content=\"width=device-width\"> \r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"> \r\n<meta name=\"color-scheme\" content=\"light dark\"> \r\n<meta name=\"supported-color-schemes\" content=\"light dark\"> \r\n<title>[Onboarding] Customize with Lucidchart templates\r\n\r\n</title> \r\n<!--[if mso]>\r\n        <style>\r\n        * {\r\n        font-family: sans-serif!important;\r\n        }\r\n        </style>\r\n        <![endif]--> \r\n<style>\r\n        \r\nhtml,\r\nbody {\r\n    margin: 0 auto !important;\r\n    padding: 0 !important;\r\n    height: 100% !important;\r\n    width: 100% !important;\r\n}\r\n\r\n* {\r\n    -ms-text-size-adjust: 100%;\r\n    -webkit-text-size-adjust: 100%;\r\n}\r\n\r\ndiv[style*=\"margin: 16px 0\"] {\r\n    margin: 0 !important;\r\n}\r\n\r\ntable,\r\ntd {\r\n    mso-table-lspace: 0pt !important;\r\n    mso-table-rspace: 0pt !important;\r\n}\r\n\r\ntable {\r\n    border-spacing: 0 !important;\r\n    border-collapse: collapse !important;\r\n    table-layout: fixed !important;\r\n    margin: 0 auto !important;\r\n}\r\n\r\ntd {\r\n    font-family: Arial,Helvetica,Verdana,sans-serif !important;\r\n    font-size: 20px !important;\r\n    line-height: 28px !important;\r\n    color: #282c33 !important;\r\n    mso-height-rule: exactly !important;\r\n}\r\n\r\n.header {\r\n    font-size: 48px !important;\r\n    line-height: 52px !important;\r\n    font-weight: bold !important;\r\n    text-align:left !important;\r\n}\r\n\r\n.text {\r\n    font-size: 24px !important;\r\n    line-height: 36px !important;\r\n}\r\n    \r\n.text2 { \r\n    background-color: #FFF3D9 !important;\r\n}\r\n\r\n.templates, .templates-last {\r\n    background-color: #F96B13 !important;\r\n}\r\n\r\n.template-image {\r\n    width: 100% !important; \r\n    max-width: 100% !important;\r\n    vertical-align: middle !important;\r\n    background-color: #ffffff !important;\r\n    border-top-left-radius: 7px !important; \r\n    border-top-right-radius: 7px !important;\r\n}\r\n\r\n.template-subheader {\r\n    background-color: #ffffff !important;\r\n    font-weight: bold !important;\r\n    border-bottom-left-radius: 7px !important; \r\n    border-bottom-right-radius: 7px !important;\r\n}\r\n\r\n.link {\r\n    text-align: left !important;\r\n    color: #282C33 !important;\r\n}\r\n\r\n.link:hover {\r\n    color: #F96B13 !important;\r\n}\r\n    \r\n.link2 {\r\n    text-align: left !important;\r\n    color: #282C33 !important;\r\n}\r\n\r\n.link2:hover {\r\n    color: #F96B13 !important;\r\n}\r\n\r\n.button {\r\n    background: #282C33 !important;\r\n    border: 1px solid #282C33 !important;\r\n    text-decoration: none !important;\r\n    color: #ffffff !important;\r\n    border-radius: 4px !important;\r\n    display:inline-block !important;\r\n    mso-padding-alt:0 !important;\r\n    font-size:20px !important;\r\n    padding: 10px 40px !important;\r\n}\r\n\r\n.button-pad {\r\n    vertical-align: top !important;\r\n    background-color: #FFF3D9 !important;\r\n    font-weight: bold !important;\r\n}\r\n\r\n.button:hover {\r\n  background-color: #5D646F !important;\r\n  border: 1px solid #5D646F !important;\r\n  color: #FFFFFF !important;\r\n  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0) !important;\r\n}\r\n\r\n.footer {\r\n    font-size: 12px !important;\r\n    line-height:18px !important;\r\n}\r\n\r\n@media (prefers-color-scheme: dark ) {\r\n\r\n.deep-drk-bkgrd {\r\n    background-color: #23272c !important;\r\n}\r\n\r\n.drk-bkgrd { \r\n    background-color: #282C33 !important;\r\n}\r\n\r\n.hero-bkgrd { \r\n    background-color: #FFF3D9 !important;\r\n}\r\n\r\n.header {\r\n    background-color: #FFF3D9 !important;\r\n    color: #282C33 !important;\r\n}\r\n\r\n.text {\r\n    background-color: #FFF3D9 !important;\r\n    color: #282C33 !important;\r\n}\r\n\r\n.templates, .templates-last {\r\n    background-color: #282C33 !important;\r\n}\r\n\r\n.template-subheader {\r\n    background-color: #FEFEFE !important;\r\n}\r\n\r\n.template-image {\r\n    background-color: #FEFEFE !important;\r\n}\r\n\r\ntd {\r\n    color: #ffffff !important;\r\n}\r\n\r\n.button {\r\n    background: #f2f2f2 !important;\r\n    border: 1px solid #282C33 !important;\r\n    text-decoration: none !important;\r\n    color: #282C33 !important;\r\n    border-radius: 4px !important;\r\n    display: inline-block !important;\r\n    mso-padding-alt: 0 !important;\r\n    font-size: 20px !important;\r\n}\r\n\r\n.button-pad {\r\n    vertical-align: top !important;\r\n    background-color: #282C33 !important;\r\n}\r\n\r\n.button:hover {\r\n    background: #CED4DB !important;\r\n    border: 1px solid #CED4DB !important;\r\n    color: #000000 !important;\r\n}\r\n\r\n.link2 { \r\n    color: #FFFFFF !important;\r\n}\r\n\r\n.text2 { \r\n    background-color: #282C33 !important;\r\n    color: #FFFFFF !important;\r\n}\r\n    \r\n.footer-link {\r\n    color: #ffffff !important;\r\n}\r\n\r\n    .ftr-logo-dark { display:block !important;width: 80px !important;overflow: visible !important;float: none !important;max-height:inherit !important;max-width:80px !important;line-height: auto !important;margin-top:0px !important;visibility:inherit !important;}\r\n\r\n    .ftr-logo-light { display:none;display:none !important;width: 0px !important;max-width: 0px !important;}\r\n}\r\n\r\ntable table table {\r\n    table-layout: auto;\r\n}\r\n\r\nimg {\r\n    -ms-interpolation-mode: bicubic;\r\n}\r\n\r\n*[x-apple-data-detectors] {\r\n    color: inherit !important;\r\n    text-decoration: none !important;\r\n}\r\n\r\n.x-gmail-data-detectors,\r\n.x-gmail-data-detectors *,\r\n.aBn {\r\n    border-bottom: 0 !important;\r\n    cursor: default !important;\r\n}\r\n\r\n@media screen and (max-width: 480px) {\r\n    u~div {\r\n        width: 100vw !important;\r\n    }\r\n\r\n    div>u~div {\r\n        width: 100% !important;\r\n    }\r\n}\r\n\r\n      \r\n@media only screen and (max-width: 680px) {\r\n\r\n.logo {\r\n    padding-top: 15px !important;\r\n    padding-bottom: 0px !important;\r\n    padding-left: 15px !important;\r\n}\r\n\r\n.logo-img {\r\n    max-width: 60px !important;\r\n    padding-left: 15px !important;\r\n}\r\n\r\n.logo-big {\r\n    padding-top: 20px !important;\r\n    padding-bottom: 30px !important;\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n}\r\n\r\n.logo-big-img {\r\n    max-width: 200px !important;\r\n}\r\n\r\n.header {\r\n    font-size: 30px !important;\r\n    line-height: 1.2 !important;\r\n    padding: 0px 20px 20px 20px !important;\r\n}\r\n\r\n.text {\r\n    font-size: 16px !important;\r\n    line-height: 24px !important;\r\n    max-width: 680px !important;\r\n    padding: 0px 20px 20px 20px !important;\r\n}\r\n\r\n.text2 {\r\n    font-size: 16px !important;\r\n    line-height: 24px !important;\r\n    max-width: 680px !important;\r\n    padding: 30px 20px 20px 20px !important;\r\n}\r\n    \r\n.link, .link2 {\r\n	text-decoration: underline !important;\r\n    font-weight: bold !important;\r\n}\r\n\r\n.templates {\r\n    display: block !important;\r\n    width: 100% !important;\r\n    max-width: 100% !important;\r\n    -moz-box-sizing: border-box;\r\n    -webkit-box-sizing: border-box;\r\n    box-sizing: border-box;\r\n    padding: 30px 35px 10px 35px !important;\r\n}\r\n    \r\n.templates-last {\r\n    display: block !important;\r\n    width: 100% !important;\r\n    max-width: 100% !important;\r\n    -moz-box-sizing: border-box;\r\n    -webkit-box-sizing: border-box;\r\n    box-sizing: border-box;\r\n    padding: 30px 35px 40px 35px !important;\r\n}\r\n\r\n.template-image {\r\n	padding: 20px 0px 0px 0px !important;\r\n    display: center !important;\r\n}\r\n\r\n .template-subheader {\r\n 	padding: 10px 30px 20px 35px !important;\r\n    font-weight: bold !important;\r\n    font-size: 16px !important;\r\n}\r\n\r\n.button {\r\n    line-height: 24px !important;\r\n    padding-top: 10px !important;\r\n    padding-bottom: 10px !important;\r\n    font-size: 16px !important;\r\n    text-align: center !important;\r\n    display: block !important;\r\n}\r\n\r\n.button-pad {\r\n	padding: 0px 40px 30px 40px !important;\r\n}\r\n    \r\n.footer {\r\n    font-size: 12px !important;\r\n    padding-left: 15px !important;\r\n    padding-right: 15px !important;\r\n    padding-top: 30px !important;\r\n    max-width: 680px !important;\r\n}\r\n}\r\n    </style> \r\n</head> \r\n<body width=\"100%\" style=\"Margin: 0; background-color: #FAFBFC;\" class=\"deep-drk-bkgrd\"> \r\n<div style=\"display:none;font-size:1px;color:#333333;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;\">\r\n There are hundreds of them\r\n\r\n ‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp; \r\n</div> \r\n<div lang=\"en\"> \r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" height=\"100%\" bgcolor=\"#FAFBFC\" style=\"border-collapse:collapse;\" class=\"deep-drk-bkgrd\"> \r\n<tbody> \r\n<tr> \r\n<td valign=\"top\"> \r\n<center style=\"width: 100%;\"> \r\n<div style=\"max-width: 660px;\"> \r\n<!--[if mso]>\r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"660\" style=\"max-width: 660px;min-width: 660px;\" align=\"center\">\r\n<tr>\r\n<td width=\"380\">\r\n<![endif]--> \r\n<div style=\"font-size: 6px; line-height: 1; background-color: #F96B13;\">\r\n&nbsp;\r\n</div>\r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" align=\"center\" style=\"max-width: 660px; background-color: #ffffff;\" class=\"drk-bkgrd\"> \r\n<tbody> \r\n<tr>  \r\n</tr> \r\n<tr style=\"background-color: #FFFFFF;\" class=\"hero-bkgrd\">\r\n<td align=\"left\" valign=\"middle\" width=\"80\" height=\"100%\" style=\"font-size:0; padding: 35px 24px 0px 60px;\" class=\"logo\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3cQfvwMi2a7Z-7w9tnxhvzKGIBbwEsYwivQ7Momx4ZqVkgSUoQNeMsq4h82ClPDcC54=\"\r\n><img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Marketo-Images/Lucid-Primary-Logo-CG100-onClear-np-RGB@2x.png\" width=\"80\" alt=\"Lucid\" style=\"border: 0;width: 80px; max-width: 80px; vertical-align:middle;\" class=\"logo-img\">\r\n</a>\r\n</td>\r\n</tr> \r\n<tr style=\"background-color: #FFFFFF;\" class=\"hero-bkgrd\">\r\n<td align=\"center\" valign=\"middle\" width=\"288\" height=\"100%\" style=\"font-size:0; padding: 35px 60px 0px 60px;\" class=\"logo-big\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3VZHKlQ_b6WfV7JrjhiS435LwahjriMVFTBPaJsYrxiUpDkdjYbNh5pxg8sG9YjH2XE=\"\r\n><img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Lucidchart-Primary3D-Logo-Default-TypeCG100-onClear-wp-RGB@2x2.png\" width=\"288\" alt=\"Lucidchart\" style=\"border: 0;width: 100%; max-width: 288px; vertical-align:middle;\" class=\"logo-big-img\"> \r\n</a>\r\n</td>\r\n</tr> \r\n<tr style=\"background-color: #FFFFFF;\" class=\"hero-bkgrd\">\r\n <tr>\r\n<td style=\"padding: 20px 60px 20px 60px;\" class=\"header\">We’ve got a template for that</td>\r\n</tr>\r\n<tr>\r\n    <td valign=\"top\" style=\"padding: 10px 60px 30px 60px;\" class=\"text\">No need to start from square one. With Lucidchart’s <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3VA2mCf6Q7qjj6Fws8Hv6zTG8D0idjf-Y77653jnbCI2wk3yY7b4P6oQvnxfGbXpE_c=\" class=\"link\"\r\n>customizable templates</a>, you and your team can collaborate with clarity and accelerate productivity. Here are some of our most popular templates to get you started:</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"caption-side:top;width:100%;\">\r\n<tr>\r\n<td class=\"templates\" width=\"221\" max-width=\"221\" align=\"center\" valign=\"top\" style=\"padding: 40px 20px 0px 40px;\">\r\n<table cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"caption-side: top; width: 100%;\">\r\n<tr>\r\n<td width=\"221\" max-width=\"221\" align=\"center\" valign=\"top\" style=\"padding: 20px 10px 0px 10px;\" class=\"template-image\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3d-qHasvGy8tMGo511FquLYwZNllnyceE5ccHcWlf51ZkgXRz1J51ao-cpuR9vA2_N8=\"\r\n>\r\n<img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Self-Serve-Onboarding/Lucidchart/New/org-chart.png\" alt=\"Org chart template\" width=\"221\">\r\n</a>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" style=\"padding: 10px 20px 20px 20px;\" class=\"template-subheader\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3d-qHasvGy8tMGo511FquLYwZNllnyceE5ccHcWlf51ZkgXRz1J51ao-cpuR9vA2_N8=\" style=\"color: #282C33;\" class=\"link\"\r\n>Org chart</a>\r\n</td>\r\n</tr>\r\n</table>\r\n</td>\r\n<td class=\"templates\" width=\"221\" max-width=\"221\" align=\"center\" valign=\"top\" style=\"padding: 40px 40px 0px 20px;\">\r\n<table cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"caption-side: top; width: 100%;\">\r\n<tr>\r\n<td width=\"221\" max-width=\"221\" align=\"center\" valign=\"top\" style=\"padding: 20px 10px 0px 10px;\" class=\"template-image\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3bHOZZwJjgM226CXQYm8bjIzHL4emoNOSdlwhEAaUo_-jzfldb1elX-SfMNAJgHi8xo=\"\r\n>\r\n<img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Self-Serve-Onboarding/Lucidchart/New/flowchart.png\" alt=\"Flow chart template\" width=\"221\">\r\n</a>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" style=\"padding: 10px 20px 20px 20px;\" class=\"template-subheader\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3bHOZZwJjgM226CXQYm8bjIzHL4emoNOSdlwhEAaUo_-jzfldb1elX-SfMNAJgHi8xo=\" style=\"color: #282C33;\" class=\"link\"\r\n>Flowchart</a>\r\n</td>\r\n</tr>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td class=\"templates\" width=\"221\" max-width=\"221\" align=\"center\" valign=\"top\" style=\"padding: 40px 20px 40px 40px;\">\r\n<table cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"caption-side: top; width: 100%;\">\r\n<tr>\r\n<td width=\"221\" max-width=\"221\" align=\"center\" valign=\"top\" style=\"padding: 20px 0px 0px 0px;\" class=\"template-image\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3UESvLlNSsrOB5IquMN8fVlhnstx4jIwXYfcLYPk6nENYvVfGrESfekDFJvbL3-EpN0=\"\r\n>\r\n<img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Self-Serve-Onboarding/Lucidchart/New/er.png\" alt=\"Database ER diagram\" width=\"221\">\r\n</a>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" style=\"padding: 10px 20px 20px 20px;\" class=\"template-subheader\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3UESvLlNSsrOB5IquMN8fVlhnstx4jIwXYfcLYPk6nENYvVfGrESfekDFJvbL3-EpN0=\" style=\"color: #282C33;\" class=\"link\"\r\n>Database ER diagram</a>\r\n</td>\r\n</tr>\r\n</table>\r\n</td>\r\n<td class=\"templates-last\" width=\"221\" max-width=\"221\" align=\"center\" valign=\"top\" style=\"padding: 40px 40px 40px 20px;\">\r\n<table cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"caption-side: top; width: 100%;\">\r\n<tr>\r\n<td width=\"221\" max-width=\"221\" align=\"center\" valign=\"top\" style=\"padding: 20px 0px 0px 0px;\" class=\"template-image\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3evnbqL4C2UVb4JZdMKBw_5kK-KdqzGHNEROoPzi5pFBX72o_V7nGqGhOkSJQkOEAl4=\"\r\n>\r\n<img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Self-Serve-Onboarding/Lucidchart/New/uml.png\" alt=\"UML class diagram\" width=\"221\">\r\n</a>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" style=\"padding: 10px 20px 20px 20px;\" class=\"template-subheader\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3evnbqL4C2UVb4JZdMKBw_5kK-KdqzGHNEROoPzi5pFBX72o_V7nGqGhOkSJQkOEAl4=\" style=\"color: #282C33;\" class=\"link\"\r\n>UML class diagram</a>\r\n</td>\r\n</tr>\r\n</table>\r\n</td>\r\n</tr>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" style=\"padding: 40px 60px 10px 60px;\" class=\"text2\">Looking for something else?</td>\r\n</tr>\r\n<tr>\r\n<td align=\"left\" style=\"padding: 20px 60px 60px 60px;\" class=\"button-pad\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3VA2mCf6Q7qjj6Fws8Hv6zTG8D0idjf-Y77653jnbCI2wk3yY7b4P6oQvnxfGbXpE_c=\" class=\"button\"\r\n>\r\n<!--[if mso]><i style=\"letter-spacing: 25px;mso-font-width:-100%;mso-text-raise:30pt\">&nbsp;</i><![endif]-->\r\n<span style=\"mso-text-raise:15pt;\">Explore templates</span>\r\n<!--[if mso]><i style=\"letter-spacing: 25px;mso-font-width:-100%\">&nbsp;</i><![endif]-->\r\n</a>\r\n</td>\r\n</tr>\r\n\r\n</tr>\r\n<tr style=\"background-color: #FAFBFC;\" class=\"deep-drk-bkgrd\">\r\n<td align=\"left\" valign=\"middle\" width=\"80\" height=\"100%\" style=\"font-size:0; padding: 35px 24px 0px 60px;\" class=\"logo\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3cQfvwMi2a7Z-7w9tnxhvzKGIBbwEsYwivQ7Momx4ZqVkgSUoQNeMsq4h82ClPDcC54=\"\r\n><img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Marketo-Images/Lucid-Primary-Logo-CG100-onClear-np-RGB@2x.png\" width=\"80\" alt=\"Lucid\" style=\"border: 0;width: 80px; max-width: 80px; vertical-align:middle;\" class=\"ftr-logo-light\">\r\n<img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Marketo-Images/Lucid-Primary-Logo-White-onClear-np-RGB@2x.png\" width=\"80\" alt=\"Lucid\" style=\"vertical-align:middle;display:none; overflow:hidden; float:left; width:0px; max-height:0px; max-width:0px; line-height:0px; visibility:hidden;\r\n\" class=\"ftr-logo-dark\">\r\n</a>\r\n</td>\r\n</tr> \r\n<tr style=\"background-color: #FAFBFC;\" class=\"deep-drk-bkgrd\"> \r\n<td style=\"padding:30px 60px 40px 60px; width: 400;\" class=\"footer\"><a style=\"color:#282C33; text-decoration: underline;\" href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3BcdCo4mvKFoLVw65TBB0DLneyjLRSuBy0ujSUIZpI7lCZO9499j9SAUB2j8rc_DSdo=\" class=\"footer-link\"\r\n>Unsubscribe</a><br><br> \r\nLucid Software Inc.<br> \r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3TpXxPigaERWRkQUe4kk0fIYbyNbIH4tpYuVUFO1czGD4gaHcvvFigeqZ3NowcbEhrk=\" target=\"_blank\" style=\"text-decoration: none; color: #282c33; cursor: default;\" class=\"footer-link\"\r\n>10355 South Jordan Gateway, Suite 300<br> \r\nSouth Jordan, UT 84095 USA<br></a><br><br>\r\nBy continuing to use Lucid\'s products, you agree to our <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3TN8Htb82pa6mjdaNwMWVXXnid43dD6JhIUmzvYQ0Mc0-b9c4dSRBLwZ3c4iOBqi2SQ=\" style=\"color:#282c33; text-decoration: underline\" class=\"footer-link\"\r\n>Terms of Service</a> and acknowledge our <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3UQ6zF3p7V-IuSjYOrZMh2GFq4vElQSgrYcIBgnHWgk_Vj2TOCb6KwsOYoqvyQSJ-Yo=\" style=\"color:#282c33; text-decoration: underline\" class=\"footer-link\"\r\n>Privacy Policy</a>.\r\n   \r\n</td> \r\n</tr> \r\n</tbody> \r\n</table> \r\n<!--[if (gte mso 9)|(IE)]>\r\n</td>\r\n</tr>\r\n</table>\r\n<![endif]--> \r\n</div> \r\n</center> </td> \r\n</tr> \r\n</tbody> \r\n</table> \r\n</div>  \r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3bBFCWvOlG_Ln_W_fwk6iQ9ym_aduSPRoqu1dma26TIBtVjSeg2WEYwkoLvNa-KqnVI=\"\r\n></a>\r\n<img src=\"https://email.lucid.co/trk?t=1&mid=NzA0LUJFTC0zNjYAAAGeej-A3WSfMRl9kOMFMVb0ybttu9lHqB9r22_-uGjJgEVw2EztbQzqBTHnUJ_Pof99zV4YIGM7XfcBDfQ-Q0KxRkhmwi3v6QKrTZGJb26h2xEis7n0NZtxKq4\" width=\"1\" height=\"1\" style=\"display:none !important;\" alt=\"\" />\r\n\r\n<!--This is a comment -->\r\n</body>\r\n</html>','\r\n\r\n.',0,0,0,0,0,0,'2025-12-01 18:57:22','2025-12-04 14:05:22','2025-12-04 14:05:22','2025-12-04 14:05:22',NULL,NULL,NULL),
(100,4,'<20251202142016.e2bf1f80f80b2a45@emails.leatherman.com>',NULL,NULL,'Last Shot for the Best Deals','Leatherman@emails.leatherman.com','Leatherman','<!DOCTYPE html>\r\n<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\"><head><title>Last Shot for the Best Deals</title><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><!--[if mso]>\r\n<xml><w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\"><w:DontUseAdvancedTypographyReadingMail/></w:WordDocument>\r\n<o:OfficeDocumentSettings><o:PixelsPerInch>96</o:PixelsPerInch><o:AllowPNG/></o:OfficeDocumentSettings></xml>\r\n<![endif]--><style>\r\n*{box-sizing:border-box}body{margin:0;padding:0}a[x-apple-data-detectors]{color:inherit!important;text-decoration:inherit!important}#MessageViewBody a{color:inherit;text-decoration:none}p{line-height:inherit}.desktop_hide,.desktop_hide table{mso-hide:all;display:none;max-height:0;overflow:hidden}.image_block img+div{display:none}sub,sup{font-size:75%;line-height:0} @media (max-width:620px){.mobile_hide{display:none}.row-content{width:100%!important}.stack .column{width:100%;display:block}.mobile_hide{min-height:0;max-height:0;max-width:0;overflow:hidden;font-size:0}.desktop_hide,.desktop_hide table{display:table!important;max-height:none!important}.row-3 .column-1 .block-1.heading_block h1{font-size:29px!important}.row-3 .column-1 .block-2.paragraph_block td.pad>div{font-size:16px!important}.row-3 .column-1 .block-2.paragraph_block td.pad{padding:15px 40px 0!important}.row-5 .column-1{padding:0!important}}\r\n</style><!--[if mso ]><style>sup, sub { font-size: 100% !important; } sup { mso-text-raise:10% } sub { mso-text-raise:-10% }</style> <![endif]--><!--[if true]><style>.forceBgColor{background-color: white !important}</style><![endif]--></head><body class=\"body forceBgColor\" style=\"background-color:transparent;margin:0;padding:0;-webkit-text-size-adjust:none;text-size-adjust:none\"><span style=\"color: transparent; display: none !important; font-size: 0px; line-height: 0px; height: 0; max-height: 0; max-width: 0; opacity: 0; overflow: hidden; mso-hide: all; visibility: hidden; width: 0;\">Black Fri/Cyber Mon Deals End Tonight*</span><div style=\"display: none; max-height: 0px; overflow: hidden;\">&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&nbsp; </div><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/CgxoqE1BKlemu9sZFygSIGV9rJythEGOVgtWbLzZhRQ75HP_DgV2L1PnBFs5TkMbMbDi_me9S9pBagxoR0_g78-WAAdi9-TIAQGAAgM.pnPExSfadPUYJA/click\" xnpe-attr=\"notextnorew\"><img width=\"1\" height=\"1\" alt=\"\" src=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/CgxoqE1BKlemu9sZFygSIGV9rJythEGOVgtWbLzZhRQ75HP_DgV2L1PnBFs5TkMbMbDi_me9S9pBagxoR0_g78-WAAdi9-SAAgM.u-VKU0KBVnnsnQ/open\" style=\"display: none;\"></a><table class=\"nl-container\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:transparent\"><tbody><tr><td><table class=\"row row-1\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:600px\">\r\n<a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUkitXTNnbYtjXxh3WM6em60i1k-K__OxlukHP2eJtvRzlpaSzigpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VN9zw6F_6Xu9bjlYCXEylxUJcTjn5-blFqYnJGVbyQJFkIUkjU0MjA6N4Jzdn33ifxOIS54zEvOTU-NBgK26gglwh1tTcxMycqFB9_aT8lEr9ksSknFT9Egi7SL8kBSISbRiLKYhNBMxOySwD48QkK0PjJPM0CwMTc9Nko2QDi7QasHXxmSlWRZnJ2Q65iWVFmRV6-XmpNSaWZimWaeZmlsmpRkYpFslZPBnu_g_en5_GwJ70_UkDEzMAQIRpYQ.Yt35SJPj1MUXGQ/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/Skeletool%20Logo%20Cyber%20Monday.png\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt=\"Shop multi-tools and knives at Leatherman.com\" title=\"Shop multi-tools and knives at Leatherman.com\" height=\"auto\"></a></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-2\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto;background-color:#000;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:600px\">\r\n<a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUkitXTNnbYtjXxh3WM6em60i1k-K__OxlukHP2eJtvRzlpaSzigpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VN9zw6F_6Xu9bjlYCXEylxUJcTjn5-blFqYnJGVbyQJFkIUkjU0MjA6N4Jzdn33ifxOIS54zEvOTU-NBgK26gglwh1tTcxMycqFB9_aT8lEr9ksSknFT9Egi7SL8kBSISbRSLKYhNBMxOySwD48QkK0PjJPM0CwMTc9Nko2QDi7QasHXxmSlWRZnJ2Q65iWVFmRV6-XmpNSaWZimWaeZmlsmpRkYpFslZPBnu_g_en5_GwJ70_UkDEzMAQQdpYg.DlhuGKjr89iwlA/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/IMG_0199.jpg\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt=\"Cyber Monday. Last Shot: Skeletool&#174; Deal\" title=\"Cyber Monday. Last Shot: Skeletool&#174; Deal\" height=\"auto\"></a></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-3\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#000;border-radius:0;color:#000;background-image:url(https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/Skeletool%2020%25%20bottom%20Cyber%20Monday.png);background-repeat:no-repeat;background-size:cover;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:25px;padding-top:20px;vertical-align:top\"><table class=\"heading_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"30\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><h1 style=\"margin:0;color:#fff;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:36px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:43px\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">Built Different. Gift Different.</span></h1></td></tr></table><table class=\"paragraph_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-left:40px;padding-right:40px\"><div style=\"color:#fff;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:24px;font-weight:400;letter-spacing:0;line-height:1.2;text-align:center;mso-line-height-alt:29px\"><p style=\"margin:0;margin-bottom:0\">\r\nThis holiday season don&#8217;t just give a gift, start a legacy. Leatherman tools are designed to be used, maintained, and passed down. With heirloom-quality materials and everyday functionality, these tools are gifts they&#8217;ll reach for from day one to day one million.</p><p style=\"margin:0;margin-bottom:0\">&#160;</p><p style=\"margin:0\">Last chance to shop Black Fri/Cyber Mon deals - ends tonight*</p></div></td></tr></table><table class=\"button_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"30\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUkitXTNnbYtjXxh3WM6em60i1k-K__OxlukHP2eJtvRzlpaSzigpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VN9zw6F_6Xu9bjlYCXEylxUJcTjn5-blFqYnJGVbyQJFkIUkjU0MjA6N4Jzdn33ifxOIS54zEvOTU-NBgK26gglwh1tTcxMycqBB9_aT8lEr9ksSknFT9Egi7SL8kBSISbRyLKYhDGZibklmmn5hkZWicZJ5mYWBibppslGxgkVYDti0-M8WqKDM52yE3sawos0IvPy-1xsTSLMUyzdzMMjnVyCjFIjmLJ8Pd_8H789MY2JO-P2lgYgYAyAJo2w.dAVKsBk_RPpxRw/click\" target=\"_blank\" style=\"color:#ffffff;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/EiBlfaycrYRBjlYLVmy82YUUO-Rz_w4Fdi9T5wRbOU5DGxobaHR0cHM6Ly93d3cubGVhdGhlcm1hbi5jb20vMbDi_me9S9pBOhAKAnVzEgpCbG9vbXJlYWNoOh8KAnVjEhkyNTEyMDJfQkZDTV9MYXN0Q2hhbmNlX1VTOgsKAnVtEgVlbWFpbGI6MTNiN2Y4MDQ3NWMyYzA4ZnxlbWFpbF9pZDpyaWNrQG1hdnJpeC5vbmV8NDk2ZDlmNzY5Y2UyMmQ4Y2oMaEdP4O_PlgAHYvfkgAID.yrPJK1P7Fe_YxA/click\"  style=\"height:38px;width:152px;v-text-anchor:middle;\" arcsize=\"0%\" fill=\"false\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"3px\" color=\"#e6b800\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#ffffff;font-family:sans-serif;font-size:14px\">\r\n<![endif]-->\r\n<span class=\"button\" style=\"background-color: transparent; mso-shading: transparent; border-bottom: 3px solid #e6b800; border-left: 3px solid #e6b800; border-radius: 0px; border-right: 3px solid #e6b800; border-top: 3px solid #e6b800; color: #ffffff; display: inline-block; font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size: 14px; font-weight: 700; mso-border-alt: none; padding-bottom: 5px; padding-top: 5px; padding-left: 20px; padding-right: 20px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 28px;\">SHOP THE SALE</span></span>\r\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-4\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#000;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"html_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div style=\"font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;text-align:center\" align=\"center\"><table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#000000\" align=\"center\" width=\"100%\" style=\"width: 100%; padding: 10px 0px;\"><tbody><tr><td align=\"center\">\r\n\r\n        <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\"><tbody><tr align=\"center\"><td colspan=\"5\"></td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zrtKw1AAxnGpFsGKSHFRBwVX09OcJs1FCrYFHbwNxQ6WEs6tTUxOjiTHXqCCg66OTj6Cgg-gz-Csk0jB0dFNLe3QQd3-_PiGL73Kzm5v7i6KV9VUNXh4vlzY6Mffc8kWqLxP1az98vJSy5XyJLYBaLfbGS-MJWpGiGeI4CBgSLos4iiUQgTxmsNj2g25Lx0qQiFlhIhfyK6POfBC36MFpEJsIkwUQ2VY0XIsr1gqhQrGDcQ0VTd0Han3b1_Nx52Xoj0_kziN0zOlQAgeMURce2UgJL0IdRVmoVPaKu85uyiWZReFhDmHFTs1GPB0knHkBUcdALCgXSARDhiQo46ApCOpafXf-JcMm3qt_xdjqcE6QNhWc9homFnN0AkkWbPRGz5yPGpHHvE3OWpFXicjQtbTrDy1GkbeIgxCapLjWXf74PXj6XpiGn_2zxOTPyPLlqU.bPZ696o0yk2M1g/click\" data-msdyn-tracking-id=\"060e7af814e081672338229931\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b1b88c4-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"Instagram\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUkitXTNnbYtjXxh3WM6em60i1k-K__OxlukHP2eJtvRzlpaKyygpKSi20tcvLy_XK8nMLsnP1kvOz9V3yElNLMlILcpNzIsvyc_PKVaOzy1OqczLzS6Jz8nMy85MsTUxTjZOSU5L1TUwMEnRNUk2Tta1NLZM1DU1ME1LM0tNBaI0ww2P_qXv9b7laCXAxVRaLMTllJOfn1uUmpicYSUPFEkWkjQyNTQyMIp3cnP2jfdJLC5xzkjMS06NDw224gYqyBViTc1NzMyJqtDXT8pPqdQvSUzKSdUvgbCL9EtSICLRJrGYgthEwOyUzDLcKhAi0cax-olJVobGSeZpFgYm5qbJRskGFmk1YBfFZ6ZYFWUmZzvkJpYVZVbo5eel1phYmqVYppmbWSanGhmlWCRn8WS4-z94f34aA3vS9ycNTMwAzE6NOw.EjsZobSNGwsMBA/click\" data-msdyn-tracking-id=\"55a2adb6bbc371672338239108\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b1dd76e-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"TikTok\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUkitXTNnbYtjXxh3WM6em60i1k-K__OxlukHP2eJtvRzlpYqzCgpKSi20tcvLy_XS0tMTk3Kz8_WS87P1fdJTSzJSC3KTczTV47PLU6pzMvNLolPyc_LLykpSkzOtjXQQQjnZOZlZ6bYGicbmaUYGafqmpgbmuuamKRZ6FqamiXrJpoYmBmYmVsmGhmlGW549C99r_ctRysBLqbSYiEup5z8_Nyi1MTkDCt5oEiykKSRqaGRgVG8k5uzb7xPYnGJc0ZiXnJqfGiwFTdQQa4Qa2puYmZOVIW-flJ-SqV-SWJSTqp-CYRdpF-SAhGJNonFFMQmAmanZJbhVoEQARmamGRlaJxknmZhYGJummyUbGCRVgN2UXxmilVRZnK2Q25iWVFmhV5-XmqNiaVZimWauZllcqqRUYpFchZPhrv_g_fnpzGwJ31_0sDEDAB4BZK7.3td5Sg4EKJg8Uw/click\" data-msdyn-tracking-id=\"1c347b64588db1672338250130\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b140b4e-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"Facebook\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zj1Lw0AAxnGpFsGKSHBRBwVX00uuad6kYFvQwVaHYgdLCZe7i4l5k-TSNlDBQVdHJz-Cgh9AP4OzTiIFR0c3tbRDB3X78-MZHm6dnt3e3F2Ur5q5pvfwfLm0NYi_F7Id0HifaWn71dWV1GbsNNYB6Ha7-TRMWGLSPA59kMQ0AjWKmE0jHwV1Shy0YfgxSQPfZQYJg5CxCGG3JGxO2HMC1yElSy0QmVCBV5Bl8ZICi7xWECWeCBiqqgIVWbbE-7ev48e9l7K-OJdJYm6u4oWhH1GEbX1tKJhbhkURCtCo7FTrRg3FrGqjAFPjsKHnhgOfy1IfOd5RDwAzJClgyPQoYOOOACNjaUnt3_iXjJo4nf8XE2kV2wCZulgwFUsVJKWIIRZUqz96ZDhEjxzsbvuoEzm9fBjQvqTJRLMUWcMUQqLik3l79-D14-l6atb8HJxnpn8ArUeWpA.r0sWRzh43HVw-A/click\" data-msdyn-tracking-id=\"05f4617e605a71672338263640\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b1ff6c0-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"YouTube\"></a>\r\n              </td>\r\n\r\n              <td colspan=\"6\"></td>\r\n            </tr></tbody></table></td>\r\n    </tr></tbody></table></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-5\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;vertical-align:top\"><table class=\"html_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div style=\"font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;text-align:center\" align=\"center\"><div data-section=\"true\" class=\"footer-container\" style=\"font-family: Arial, Verdana, sans-serif; color: #FFFFFF; background-color: #000000; margin: 0; border-radius: 0;\" data-protected=\"false\">\r\n\r\n  <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse; background-color: #000000;\"><tr><td align=\"center\" style=\"padding: 10px 0; text-align: center;\">\r\n\r\n        <div style=\"display: inline-block; text-align: center;\">\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzj1Lw0AYB3DfitCKSHFRBwVXk0vTvEvBtqCDb0Oxg6WEy93VnMklJTlTCxUc6uro5EdQ8APoZ3DWSaTg6OimlnRQ0OGB__Pj_8CTXyFnN9e3_fJlPVf3758u5tcH8ddsJgG1t6mGuVddWuyPu5y3YwuATqcj-gRyl0QMBiIKGWiHPkWUxKAd0QSirpBCV3Q581dtFuNuwDxu4zAIOY8g8krS2g_7NPAoLhmSo2pYIYKj6pqgGEgWzGJREjSnpZtEKurQRIW718-jh-3nsjWXnTiJ89mKH4YsIhC51vJQUH5BVguyJNuVzequvQNjXnVhgIh9ULNywwLLZwiD1D_0AHBC3AUcOj4BfJQjwPFIGmrzL_4nacY0SWd0Wmj-YjhcHatQdPSWISm6imQkGa1e-oRNsRVR5G0wmET0VAwD0lNMDZstXTMRkWVsoOMZd2v_5f3xamza-RicT0x-AyqGldw.SiW8mAGgxAdJaw/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #FFFFFF; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Privacy Policy</u></strong>\r\n          </a>\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzk9LG0EYBnCrFUFLKaEX9dB-gexkN242syKaXU20-aM1uoGEsMzMzv4xuzNxdzYkRaGHeu2xJz-Cgh-g7VfouZ6kCD322FtVEiiFenjh4cfzwpN5TU8vzi8_lD5aC1b4-fvZy9Xb5O757AA0fz7twIa5vPT1iS9EP9EBSJN8ljhMosyTcMh5FFNEfInwCIQUCZ_GEWJZwXmY7cfcSYkIOAMUmN6QH2_JRjWkUQqTdnnkNXcqFozfjIS_Vdm1PNHCtXdtf_-tpm7v2ZuepdTkPWaUE_WgV8d1vBnYEYVN2DeIN-zXBi23kJbz-_woaJl1CWarqOFrkArhNkqAcJZQJtZDxLw1yuSrH3-8L9Xrkv5ifjpNMvPG3-n6qwchmUVFlZWcYhtls27XUCJMHzFC7cOmvvBQiDKzNEJB2O4BgLkzAgLhkAIxyTEQzkQ6avd_fEzG2QkG45u8yt1_GHWULtblPNbcYm5FU4lCckX3ZDzCDhw9DkhvI0KDOBhKnNGTFVhwoKsVIKGK4hTJ0TO_snvz69unqTn8-_b99Mw9QdKq0Q.NsxcWXAgRgFq3Q/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #FFFFFF; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Manage Preferences</u></strong>\r\n          </a>\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzk9LG0EYBnC1iqBFSuhFe2i_QHayGzebWSmaXU3a5o_W6AYSwjIzO_vH7M6ku7MhKRY82GuPnvwICn6Atl-h53qSInj02FtVEiiFenjh4cfzwpN5RT-dnZ4fl75Yi1b49efn52vXyd3S3AA0b2Y7sGG-WPk-7QvRT3QA0iSfJQ6TKPMkHHIexRQRXyI8AiFFwqdxhFhWcB5m-zF3UiICzgAFpjfkH7ZkoxrSKIVJuzzymm8rFozfjYS_Vdm2PNHCtY9tf_e9pr7ZsTc9S6nJO8woJ-per47reDOwIwqbsG8Qb9ivDVpuIS3nd_lB0DLrEsxWUcPXIBXCbZQA4SyhTKyHiHmvKZMvfv3xvlUvS_qzhZk0ySwYf6frLx-EZJYVVVZyim2UzbpdQ4kwfcQItfeb-uJDIcrM0QgFYbsHAObOCAiEQwrEJMdAOBPpqN3_8TEZZycYjG_yKnf_YdTJd7Eu57HmFnOrmkoUkiu6h-MRduDocUB6GxEaxMFQ4owersKCA12tAAlVFKdIDp76le2r2x8nU_P49_XRzJN7QiGq0g.RL54dFHr35h5jg/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #FFFFFF; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Unsubscribe</u></strong>\r\n          </a>\r\n\r\n        </div>\r\n\r\n      </td>\r\n    </tr></table><table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse; background-color: #000000;\"><tr><td align=\"center\" style=\"padding: 0; text-align: center;\">\r\n        <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse;\"><tr><td align=\"center\" style=\"text-align: center; padding: 10px 30px;\">\r\n              <div style=\"font-size: 11px; color: #FFFFFF; text-align: center;\">\r\n\r\n                <p>This email was sent to Rick@mavrix.one</p>\r\n\r\n                <p>by <strong>Leatherman Tool Group, Inc.</strong></p>\r\n\r\n                <p>12106 NE Ainsworth Circle <br>Portland, Oregon 97220</p>\r\n\r\n                <p style=\"display: none;\">Preference Center (PLACEHOLDER)</p>\r\n\r\n                <p style=\"line-height: 1.25;\">&#169; 2025 Leatherman Tool Group, Inc. All Rights Reserved.</p>\r\n                <br>\r\n                Black Friday/Cyber Monday Gift with Purchase valid 11/20/25 9AM PST &#8211; 12/2/25 11:59PM PST at leatherman.com. Spend $125+ or $225+ to qualify. One gift per order based on threshold met. Higher threshold does not receive both gifts. While supplies last. Gift auto-added at checkout.\r\n              </div>\r\n            </td>\r\n          </tr></table></td>\r\n    </tr></table></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><!-- End --></body></html>','[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUkitXTNnbYtjXxh3WM6em60i1k-K__OxlukHP2eJtvRzlpaSzigpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VN9zw6F_6Xu9bjlYCXEylxUJcTjn5-blFqYnJGVbyQJFkIUkjU0MjA6N4Jzdn33ifxOIS54zEvOTU-NBgK26gglwh1tTcxMycqFB9_aT8lEr9ksSknFT9Egi7SL8kBSISbRiLKYhNBMxOySwD48QkK0PjJPM0CwMTc9Nko2QDi7QasHXxmSlWRZnJ2Q65iWVFmRV6-XmpNSaWZimWaeZmlsmpRkYpFslZPBnu_g_en5_GwJ70_UkDEzMAQIRpYQ.Yt35SJPj1MUXGQ/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUkitXTNnbYtjXxh3WM6em60i1k-K__OxlukHP2eJtvRzlpaSzigpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VN9zw6F_6Xu9bjlYCXEylxUJcTjn5-blFqYnJGVbyQJFkIUkjU0MjA6N4Jzdn33ifxOIS54zEvOTU-NBgK26gglwh1tTcxMycqFB9_aT8lEr9ksSknFT9Egi7SL8kBSISbRSLKYhNBMxOySwD48QkK0PjJPM0CwMTc9Nko2QDi7QasHXxmSlWRZnJ2Q65iWVFmRV6-XmpNSaWZimWaeZmlsmpRkYpFslZPBnu_g_en5_GwJ70_UkDEzMAQQdpYg.DlhuGKjr89iwlA/click]\r\n\r\n# Built Different. Gift Different.\r\n\r\nThis holiday season don’t just give a gift, start a legacy. Leatherman tools are designed to be used, maintained, and passed down. With heirloom-quality materials and everyday functionality, these tools are gifts they’ll reach for from day one to day one million.\r\n\r\nLast chance to shop Black Fri/Cyber Mon deals - ends tonight*\r\n\r\nSHOP THE SALE [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUkitXTNnbYtjXxh3WM6em60i1k-K__OxlukHP2eJtvRzlpaSzigpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VN9zw6F_6Xu9bjlYCXEylxUJcTjn5-blFqYnJGVbyQJFkIUkjU0MjA6N4Jzdn33ifxOIS54zEvOTU-NBgK26gglwh1tTcxMycqBB9_aT8lEr9ksSknFT9Egi7SL8kBSISbRyLKYhDGZibklmmn5hkZWicZJ5mYWBibppslGxgkVYDti0-M8WqKDM52yE3sawos0IvPy-1xsTSLMUyzdzMMjnVyCjFIjmLJ8Pd_8H789MY2JO-P2lgYgYAyAJo2w.dAVKsBk_RPpxRw/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zrtKw1AAxnGpFsGKSHFRBwVX09OcJs1FCrYFHbwNxQ6WEs6tTUxOjiTHXqCCg66OTj6Cgg-gz-Csk0jB0dFNLe3QQd3-_PiGL73Kzm5v7i6KV9VUNXh4vlzY6Mffc8kWqLxP1az98vJSy5XyJLYBaLfbGS-MJWpGiGeI4CBgSLos4iiUQgTxmsNj2g25Lx0qQiFlhIhfyK6POfBC36MFpEJsIkwUQ2VY0XIsr1gqhQrGDcQ0VTd0Han3b1_Nx52Xoj0_kziN0zOlQAgeMURce2UgJL0IdRVmoVPaKu85uyiWZReFhDmHFTs1GPB0knHkBUcdALCgXSARDhiQo46ApCOpafXf-JcMm3qt_xdjqcE6QNhWc9homFnN0AkkWbPRGz5yPGpHHvE3OWpFXicjQtbTrDy1GkbeIgxCapLjWXf74PXj6XpiGn_2zxOTPyPLlqU.bPZ696o0yk2M1g/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUkitXTNnbYtjXxh3WM6em60i1k-K__OxlukHP2eJtvRzlpaKyygpKSi20tcvLy_XK8nMLsnP1kvOz9V3yElNLMlILcpNzIsvyc_PKVaOzy1OqczLzS6Jz8nMy85MsTUxTjZOSU5L1TUwMEnRNUk2Tta1NLZM1DU1ME1LM0tNBaI0ww2P_qXv9b7laCXAxVRaLMTllJOfn1uUmpicYSUPFEkWkjQyNTQyMIp3cnP2jfdJLC5xzkjMS06NDw224gYqyBViTc1NzMyJqtDXT8pPqdQvSUzKSdUvgbCL9EtSICLRJrGYgthEwOyUzDLcKhAi0cax-olJVobGSeZpFgYm5qbJRskGFmk1YBfFZ6ZYFWUmZzvkJpYVZVbo5eel1phYmqVYppmbWSanGhmlWCRn8WS4-z94f34aA3vS9ycNTMwAzE6NOw.EjsZobSNGwsMBA/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUkitXTNnbYtjXxh3WM6em60i1k-K__OxlukHP2eJtvRzlpYqzCgpKSi20tcvLy_XS0tMTk3Kz8_WS87P1fdJTSzJSC3KTczTV47PLU6pzMvNLolPyc_LLykpSkzOtjXQQQjnZOZlZ6bYGicbmaUYGafqmpgbmuuamKRZ6FqamiXrJpoYmBmYmVsmGhmlGW549C99r_ctRysBLqbSYiEup5z8_Nyi1MTkDCt5oEiykKSRqaGRgVG8k5uzb7xPYnGJc0ZiXnJqfGiwFTdQQa4Qa2puYmZOVIW-flJ-SqV-SWJSTqp-CYRdpF-SAhGJNonFFMQmAmanZJbhVoEQARmamGRlaJxknmZhYGJummyUbGCRVgN2UXxmilVRZnK2Q25iWVFmhV5-XmqNiaVZimWauZllcqqRUYpFchZPhrv_g_fnpzGwJ31_0sDEDAB4BZK7.3td5Sg4EKJg8Uw/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zj1Lw0AAxnGpFsGKSHBRBwVX00uuad6kYFvQwVaHYgdLCZe7i4l5k-TSNlDBQVdHJz-Cgh9AP4OzTiIFR0c3tbRDB3X78-MZHm6dnt3e3F2Ur5q5pvfwfLm0NYi_F7Id0HifaWn71dWV1GbsNNYB6Ha7-TRMWGLSPA59kMQ0AjWKmE0jHwV1Shy0YfgxSQPfZQYJg5CxCGG3JGxO2HMC1yElSy0QmVCBV5Bl8ZICi7xWECWeCBiqqgIVWbbE-7ev48e9l7K-OJdJYm6u4oWhH1GEbX1tKJhbhkURCtCo7FTrRg3FrGqjAFPjsKHnhgOfy1IfOd5RDwAzJClgyPQoYOOOACNjaUnt3_iXjJo4nf8XE2kV2wCZulgwFUsVJKWIIRZUqz96ZDhEjxzsbvuoEzm9fBjQvqTJRLMUWcMUQqLik3l79-D14-l6atb8HJxnpn8ArUeWpA.r0sWRzh43HVw-A/click] \r\n\r\n*Privacy Policy* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzj1Lw0AYB3DfitCKSHFRBwVXk0vTvEvBtqCDb0Oxg6WEy93VnMklJTlTCxUc6uro5EdQ8APoZ3DWSaTg6OimlnRQ0OGB__Pj_8CTXyFnN9e3_fJlPVf3758u5tcH8ddsJgG1t6mGuVddWuyPu5y3YwuATqcj-gRyl0QMBiIKGWiHPkWUxKAd0QSirpBCV3Q581dtFuNuwDxu4zAIOY8g8krS2g_7NPAoLhmSo2pYIYKj6pqgGEgWzGJREjSnpZtEKurQRIW718-jh-3nsjWXnTiJ89mKH4YsIhC51vJQUH5BVguyJNuVzequvQNjXnVhgIh9ULNywwLLZwiD1D_0AHBC3AUcOj4BfJQjwPFIGmrzL_4nacY0SWd0Wmj-YjhcHatQdPSWISm6imQkGa1e-oRNsRVR5G0wmET0VAwD0lNMDZstXTMRkWVsoOMZd2v_5f3xamza-RicT0x-AyqGldw.SiW8mAGgxAdJaw/click] *Manage Preferences* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzk9LG0EYBnCrFUFLKaEX9dB-gexkN242syKaXU20-aM1uoGEsMzMzv4xuzNxdzYkRaGHeu2xJz-Cgh-g7VfouZ6kCD322FtVEiiFenjh4cfzwpN5TU8vzi8_lD5aC1b4-fvZy9Xb5O757AA0fz7twIa5vPT1iS9EP9EBSJN8ljhMosyTcMh5FFNEfInwCIQUCZ_GEWJZwXmY7cfcSYkIOAMUmN6QH2_JRjWkUQqTdnnkNXcqFozfjIS_Vdm1PNHCtXdtf_-tpm7v2ZuepdTkPWaUE_WgV8d1vBnYEYVN2DeIN-zXBi23kJbz-_woaJl1CWarqOFrkArhNkqAcJZQJtZDxLw1yuSrH3-8L9Xrkv5ifjpNMvPG3-n6qwchmUVFlZWcYhtls27XUCJMHzFC7cOmvvBQiDKzNEJB2O4BgLkzAgLhkAIxyTEQzkQ6avd_fEzG2QkG45u8yt1_GHWULtblPNbcYm5FU4lCckX3ZDzCDhw9DkhvI0KDOBhKnNGTFVhwoKsVIKGK4hTJ0TO_snvz69unqTn8-_b99Mw9QdKq0Q.NsxcWXAgRgFq3Q/click] *Unsubscribe* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzk9LG0EYBnC1iqBFSuhFe2i_QHayGzebWSmaXU3a5o_W6AYSwjIzO_vH7M6ku7MhKRY82GuPnvwICn6Atl-h53qSInj02FtVEiiFenjh4cfzwpN5RT-dnZ4fl75Yi1b49efn52vXyd3S3AA0b2Y7sGG-WPk-7QvRT3QA0iSfJQ6TKPMkHHIexRQRXyI8AiFFwqdxhFhWcB5m-zF3UiICzgAFpjfkH7ZkoxrSKIVJuzzymm8rFozfjYS_Vdm2PNHCtY9tf_e9pr7ZsTc9S6nJO8woJ-per47reDOwIwqbsG8Qb9ivDVpuIS3nd_lB0DLrEsxWUcPXIBXCbZQA4SyhTKyHiHmvKZMvfv3xvlUvS_qzhZk0ySwYf6frLx-EZJYVVVZyim2UzbpdQ4kwfcQItfeb-uJDIcrM0QgFYbsHAObOCAiEQwrEJMdAOBPpqN3_8TEZZycYjG_yKnf_YdTJd7Eu57HmFnOrmkoUkiu6h-MRduDocUB6GxEaxMFQ4owersKCA12tAAlVFKdIDp76le2r2x8nU_P49_XRzJN7QiGq0g.RL54dFHr35h5jg/click] \r\n\r\nThis email was sent to Rick@mavrix.one\r\n\r\nby *Leatherman Tool Group, Inc.*\r\n\r\n12106 NE Ainsworth Circle \r\nPortland, Oregon 97220\r\n\r\n© 2025 Leatherman Tool Group, Inc. All Rights Reserved.\r\n\r\nBlack Friday/Cyber Monday Gift with Purchase valid 11/20/25 9AM PST – 12/2/25 11:59PM PST at leatherman.com. Spend $125+ or $225+ to qualify. One gift per order based on threshold met. Higher threshold does not receive both gifts. While supplies last. Gift auto-added at checkout. ',0,0,0,0,0,0,'2025-12-02 14:20:16','2025-12-04 14:05:22','2025-12-04 14:05:22','2025-12-04 14:05:22',NULL,NULL,NULL),
(101,4,'<CAPzxmXaL_EJR2g++CRJM2PAsczaOYe3e9wwhbm29OWdNx1xUuQ@mail.gmail.com>',NULL,NULL,'Re: Grafik: Request for Information','tanya@grafik.com','Tanya Nazarian','<div dir=\"ltr\">Hi Rick, <div><br></div><div>I hope you had a restful holiday weekend. I wanted to touch base to see if you were ready to regroup on the Mavrix story. Looking forward to hearing back. Thanks! </div></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Oct 24, 2025 at 9:13 AM Tanya Nazarian &lt;<a href=\"mailto:tanya@grafik.com\">tanya@grafik.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\">Hi Rick, <div><br></div><div>I appreciate the update and love to hear that you&#39;re focused on the Mavrix1 story. We&#39;ll be on the lookout for next steps soon. Have a great weekend! </div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Oct 24, 2025 at 7:44 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex\"> Hi Tanya,<br>Sorry we’ve been a bit busy on our end….&quot;building our story&quot; you could say…<br>That all said, thanks for the quote and getting it to us so quickly. <br>I think we’ll be in touch later this month if not next to discuss some next steps.<br>Thanks for your patience. Talk soon.<br>Rick <br> <br><p>On October 23, 2025 at 10:17:54, Tanya Nazarian (<a href=\"mailto:tanya@grafik.com\" target=\"_blank\">tanya@grafik.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div>Hi Rick, </div><div><br></div><div>I hope all is well. I wanted to follow up with you on the ROM we shared. Do you have a few minutes to connect one day next week? As mentioned, it would be great to bring in our strategy team to continue the conversation.</div><div><br></div><div>Thanks! </div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Oct 3, 2025 at 5:28 PM Tanya Nazarian &lt;<a href=\"mailto:tanya@grafik.com\" target=\"_blank\">tanya@grafik.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\">Rick, <div><br></div><div>Thank you again for your interest in Grafik. We&#39;ve taken the time to consider your near-term goals and the current state of the Mavrix1 brand, and feel well-equipped to deliver on your needs. Per our conversation, we wanted to share with you a rough order of magnitude that outlines what you can expect when working with our team.<span> </span></div><div><br></div><div>Take a look, and if you remain interested in continuing the conversation, I recommend setting up a follow-up discussion with our brand and client strategy teams to take a deeper dive into what it will actually take to get the brand where it needs to be. Let us know your thoughts, and please confirm receipt when you get a moment. </div><div><br></div><div>Have a great weekend!  </div><div><br></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Sep 24, 2025 at 3:46 PM Ian Olsen &lt;<a href=\"mailto:ian@grafik.com\" target=\"_blank\">ian@grafik.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>Let&#39;s do 3-3:30pm. I can shoot over an invite here shortly!<br><br>Much appreciated, glad we can work it out.</div><div><br></div><div>Look forward to chatting,</div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal\"><br><font color=\"#222222\" face=\"arial, sans-serif\"><b>Ian Olsen</b></font><br></p><p style=\"margin:0px 0px 2px;line-height:normal\"><font color=\"#222222\" face=\"arial, sans-serif\"><span>Business Development Manager</span></font><span style=\"color:rgb(34,34,34);font-family:arial,sans-serif\">  •<span>  </span><b>P</b> (</span><font color=\"#222222\" face=\"arial, sans-serif\"><span>703) 249-9771</span></font></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><b style=\"font-family:arial,sans-serif\">Grafik</b><span style=\"font-family:&quot;Helvetica Neue&quot;\">  •  Philadelphia  •  </span><span style=\"font-family:&quot;Helvetica Neue&quot;\">Washington, D.C.</span><br></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><span style=\"font-family:arial,sans-serif\"><b><a href=\"https://grafik.agency/\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">instagram</font></a>   <a href=\"https://linkedin.com/company/grafik\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">linkedin</font></a></font></font><font color=\"#3db3b5\"> </font></b></span></p></div></div></div><br><div></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Sep 24, 2025 at 3:30 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex\"> Can we still take tomorrow 2-5: <br>Sometime in that range???<br>Sorry for the confusion.<br>Thanks!<br>Rick <br> <br><p>On September 23, 2025 at 11:42:41, Ian Olsen (<a href=\"mailto:ian@grafik.com\" target=\"_blank\">ian@grafik.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>Next week looks good on our end. We can do Monday 1-3:30pm or Wednesday is mostly open. </div><div><br></div><div>Let me know what works for you.</div><div><br></div><div>Thanks,</div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal\"><br><font color=\"#222222\" face=\"arial, sans-serif\"><b>Ian Olsen</b></font><br></p><p style=\"margin:0px 0px 2px;line-height:normal\"><font color=\"#222222\" face=\"arial, sans-serif\"><span>Business Development Manager</span></font><span style=\"color:rgb(34,34,34);font-family:arial,sans-serif\">  •<span>  </span><b>P</b> (</span><font color=\"#222222\" face=\"arial, sans-serif\"><span>703) 249-9771</span></font></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><b style=\"font-family:arial,sans-serif\">Grafik</b><span style=\"font-family:&quot;Helvetica Neue&quot;\">  •  Philadelphia  •  </span><span style=\"font-family:&quot;Helvetica Neue&quot;\">Washington, D.C.</span><br></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><span style=\"font-family:arial,sans-serif\"><b><a href=\"https://grafik.agency/\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">instagram</font></a>   <a href=\"https://linkedin.com/company/grafik\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">linkedin</font></a></font></font><font color=\"#3db3b5\"> </font></b></span></p></div></div></div><br><div></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Sep 23, 2025 at 10:28 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex\">\r\n\r\n\r\n\r\n    <div id=\"m_-5257253216587140171m_-6971739334956016662m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Hi Ian,</div><div id=\"m_-5257253216587140171m_-6971739334956016662m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thanks for the response.</div><div id=\"m_-5257253216587140171m_-6971739334956016662m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">It was quick enough. </div><div id=\"m_-5257253216587140171m_-6971739334956016662m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">How does next week look?</div><div id=\"m_-5257253216587140171m_-6971739334956016662m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thanks again,</div><div id=\"m_-5257253216587140171m_-6971739334956016662m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Rick</div> <br> <div id=\"m_-5257253216587140171m_-6971739334956016662m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_sign_1758637591710331904\">\r\n\r\n\r\n\r\n          \r\n       \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n\r\n\r\n\r\n       \r\n</div> <br><p>On September 23, 2025 at 09:31:55, Ian Olsen (<a href=\"mailto:ian@grafik.com\" target=\"_blank\">ian@grafik.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>Apologies for the late reply. Thanks for reaching out to Grafik. We&#39;re happy to talk through your branding &amp; campaign needs soup to nuts. We have some openings tomorrow at 10 or 10:30am, or Thursday between 2-5pm ET. Let me know if that works on your end and we can get it on the books.</div><div><br></div><div>Look forward to hearing from you soon.</div><div><br></div><div>Thanks,</div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal\"><br><font color=\"#222222\" face=\"arial, sans-serif\"><b>Ian Olsen</b></font><br></p><p style=\"margin:0px 0px 2px;line-height:normal\"><font color=\"#222222\" face=\"arial, sans-serif\"><span>Business Development Manager</span></font><span style=\"color:rgb(34,34,34);font-family:arial,sans-serif\">  •<span>  </span><b>P</b> (</span><font color=\"#222222\" face=\"arial, sans-serif\"><span>703) 249-9771</span></font></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><b style=\"font-family:arial,sans-serif\">Grafik</b><span style=\"font-family:&quot;Helvetica Neue&quot;\">  •  Philadelphia  •  </span><span style=\"font-family:&quot;Helvetica Neue&quot;\">Washington, D.C.</span><br></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><span style=\"font-family:arial,sans-serif\"><b><a href=\"https://grafik.agency/\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">instagram</font></a>   <a href=\"https://linkedin.com/company/grafik\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">linkedin</font></a></font></font><font color=\"#3db3b5\"> </font></b></span></p></div></div></div><div></div></div>\r\n\r\n\r\n\r\n</div></div></span></blockquote>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</blockquote></div><div></div></div>\r\n\r\n\r\n\r\n</div></div></span></blockquote></blockquote></div><img src=\"https://c3chr04.na1.hs-salescrm-engage.com/Cto/F9+23284/c3chr04/R5Q8b47KQW174dQh1kQnsgW3C6vB320TTh4W3LDP5q1Q68ztW25d0xB1G9Wn6W1QsWFK3z8hH2W22z0GD1Z0NBmf1-_dqx12\" alt=\"\" height=\"1\" width=\"1\" style=\"display: none;\"><div></div><div id=\"m_-5257253216587140171m_-6971739334956016662m_-3361122506656212532m_6920436297612873467data-hbsasc-v0-f0a73054-d677-4c93-b7a3-427e281c6c20\"></div></div>\r\n\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal;font-family:Arial;color:rgb(61,179,181)\"><span><b>—</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 3px;line-height:normal;font-family:Arial\"><span><b>Tanya Nazarian</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span>SVP, Growth  • <b>T</b> 703.299.5984</span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span><b>Grafik</b>  •  Washington, DC </span>• Philadelphia, PA </p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><b><span><a href=\"https://grafik.agency/\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a></span><span><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" target=\"_blank\"><span><font color=\"#3db3b5\">instagram</font></span></a>   <a href=\"https://linkedin.com/company/grafik\" target=\"_blank\"><span><font color=\"#3db3b5\">linkedin</font></span></a></font></font><font color=\"#3db3b5\">  </font></span></b></p><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px\"></div></div></div></div></div>\r\n\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal;font-family:Arial;color:rgb(61,179,181)\"><span><b>—</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 3px;line-height:normal;font-family:Arial\"><span><b>Tanya Nazarian</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span>SVP, Growth  • <b>T</b> 703.299.5984</span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span><b>Grafik</b>  •  Washington, DC </span>• Philadelphia, PA </p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><b><span><a href=\"https://grafik.agency/\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a></span><span><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" target=\"_blank\"><span><font color=\"#3db3b5\">instagram</font></span></a>   <a href=\"https://linkedin.com/company/grafik\" target=\"_blank\"><span><font color=\"#3db3b5\">linkedin</font></span></a></font></font><font color=\"#3db3b5\">  </font></span></b></p><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px\"></div></div></div></div></div></div>\r\n\r\n</div></div></span></blockquote></blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal;font-family:Arial;color:rgb(61,179,181)\"><span><b>—</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 3px;line-height:normal;font-family:Arial\"><span><b>Tanya Nazarian</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span>SVP, Growth  • <b>T</b> 703.299.5984</span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span><b>Grafik</b>  •  Washington, DC </span>• Philadelphia, PA </p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><b><span><a href=\"https://grafik.agency/\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a></span><span><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" target=\"_blank\"><span><font color=\"#3db3b5\">instagram</font></span></a>   <a href=\"https://linkedin.com/company/grafik\" target=\"_blank\"><span><font color=\"#3db3b5\">linkedin</font></span></a></font></font><font color=\"#3db3b5\">  </font></span></b></p><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px\"></div></div></div></div></div>\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal;font-family:Arial;color:rgb(61,179,181)\"><span><b>—</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 3px;line-height:normal;font-family:Arial\"><span><b>Tanya Nazarian</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span>SVP, Growth  • <b>T</b> 703.299.5984</span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span><b>Grafik</b>  •  Washington, DC </span>• Philadelphia, PA </p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><b><span><a href=\"https://grafik.agency/\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a></span><span><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" target=\"_blank\"><span><font color=\"#3db3b5\">instagram</font></span></a>   <a href=\"https://linkedin.com/company/grafik\" target=\"_blank\"><span><font color=\"#3db3b5\">linkedin</font></span></a></font></font><font color=\"#3db3b5\">  </font></span></b></p><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px\"></div></div></div></div></div>','Hi Rick,\r\n\r\nI hope you had a restful holiday weekend. I wanted to touch base to see if\r\nyou were ready to regroup on the Mavrix story. Looking forward to hearing\r\nback. Thanks!\r\n\r\nOn Fri, Oct 24, 2025 at 9:13 AM Tanya Nazarian <tanya@grafik.com> wrote:\r\n\r\n> Hi Rick,\r\n>\r\n> I appreciate the update and love to hear that you\'re focused on the\r\n> Mavrix1 story. We\'ll be on the lookout for next steps soon. Have a great\r\n> weekend!\r\n>\r\n> On Fri, Oct 24, 2025 at 7:44 AM Rick <rick@mavrix.one> wrote:\r\n>\r\n>> Hi Tanya,\r\n>> Sorry we’ve been a bit busy on our end….\"building our story\" you could\r\n>> say…\r\n>> That all said, thanks for the quote and getting it to us so quickly.\r\n>> I think we’ll be in touch later this month if not next to discuss some\r\n>> next steps.\r\n>> Thanks for your patience. Talk soon.\r\n>> Rick\r\n>>\r\n>> On October 23, 2025 at 10:17:54, Tanya Nazarian (tanya@grafik.com) wrote:\r\n>>\r\n>> Hi Rick,\r\n>>\r\n>> I hope all is well. I wanted to follow up with you on the ROM we shared.\r\n>> Do you have a few minutes to connect one day next week? As mentioned, it\r\n>> would be great to bring in our strategy team to continue the conversation.\r\n>>\r\n>> Thanks!\r\n>>\r\n>> On Fri, Oct 3, 2025 at 5:28 PM Tanya Nazarian <tanya@grafik.com> wrote:\r\n>>\r\n>>> Rick,\r\n>>>\r\n>>> Thank you again for your interest in Grafik. We\'ve taken the time to\r\n>>> consider your near-term goals and the current state of the Mavrix1 brand,\r\n>>> and feel well-equipped to deliver on your needs. Per our conversation, we\r\n>>> wanted to share with you a rough order of magnitude that outlines what you\r\n>>> can expect when working with our team.\r\n>>>\r\n>>> Take a look, and if you remain interested in continuing the\r\n>>> conversation, I recommend setting up a follow-up discussion with our brand\r\n>>> and client strategy teams to take a deeper dive into what it will actually\r\n>>> take to get the brand where it needs to be. Let us know your thoughts, and\r\n>>> please confirm receipt when you get a moment.\r\n>>>\r\n>>> Have a great weekend!\r\n>>>\r\n>>>\r\n>>> On Wed, Sep 24, 2025 at 3:46 PM Ian Olsen <ian@grafik.com> wrote:\r\n>>>\r\n>>>> Hi Rick,\r\n>>>>\r\n>>>> Let\'s do 3-3:30pm. I can shoot over an invite here shortly!\r\n>>>>\r\n>>>> Much appreciated, glad we can work it out.\r\n>>>>\r\n>>>> Look forward to chatting,\r\n>>>>\r\n>>>>\r\n>>>> *Ian Olsen*\r\n>>>>\r\n>>>> Business Development Manager  •  *P* (703) 249-9771\r\n>>>>\r\n>>>> *Grafik*  •  Philadelphia  •  Washington, D.C.\r\n>>>>\r\n>>>> *grafik.agency <https://grafik.agency/>   instagram\r\n>>>> <https://instagram.com/grafikagency>   linkedin\r\n>>>> <https://linkedin.com/company/grafik> *\r\n>>>>\r\n>>>>\r\n>>>> On Wed, Sep 24, 2025 at 3:30 PM Rick <rick@mavrix.one> wrote:\r\n>>>>\r\n>>>>> Can we still take tomorrow 2-5:\r\n>>>>> Sometime in that range???\r\n>>>>> Sorry for the confusion.\r\n>>>>> Thanks!\r\n>>>>> Rick\r\n>>>>>\r\n>>>>> On September 23, 2025 at 11:42:41, Ian Olsen (ian@grafik.com) wrote:\r\n>>>>>\r\n>>>>> Hi Rick,\r\n>>>>>\r\n>>>>> Next week looks good on our end. We can do Monday 1-3:30pm or\r\n>>>>> Wednesday is mostly open.\r\n>>>>>\r\n>>>>> Let me know what works for you.\r\n>>>>>\r\n>>>>> Thanks,\r\n>>>>>\r\n>>>>>\r\n>>>>> *Ian Olsen*\r\n>>>>>\r\n>>>>> Business Development Manager  •  *P* (703) 249-9771\r\n>>>>>\r\n>>>>> *Grafik*  •  Philadelphia  •  Washington, D.C.\r\n>>>>>\r\n>>>>> *grafik.agency <https://grafik.agency/>   instagram\r\n>>>>> <https://instagram.com/grafikagency>   linkedin\r\n>>>>> <https://linkedin.com/company/grafik> *\r\n>>>>>\r\n>>>>>\r\n>>>>> On Tue, Sep 23, 2025 at 10:28 AM Rick <rick@mavrix.one> wrote:\r\n>>>>>\r\n>>>>>> Hi Ian,\r\n>>>>>> Thanks for the response.\r\n>>>>>> It was quick enough.\r\n>>>>>> How does next week look?\r\n>>>>>> Thanks again,\r\n>>>>>> Rick\r\n>>>>>>\r\n>>>>>> Rick Mislan, PhD\r\n>>>>>> https://mavrix.one\r\n>>>>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>>>>\r\n>>>>>> On September 23, 2025 at 09:31:55, Ian Olsen (ian@grafik.com) wrote:\r\n>>>>>>\r\n>>>>>> Hi Rick,\r\n>>>>>>\r\n>>>>>> Apologies for the late reply. Thanks for reaching out to Grafik.\r\n>>>>>> We\'re happy to talk through your branding & campaign needs soup to nuts. We\r\n>>>>>> have some openings tomorrow at 10 or 10:30am, or Thursday between 2-5pm ET.\r\n>>>>>> Let me know if that works on your end and we can get it on the books.\r\n>>>>>>\r\n>>>>>> Look forward to hearing from you soon.\r\n>>>>>>\r\n>>>>>> Thanks,\r\n>>>>>>\r\n>>>>>>\r\n>>>>>> *Ian Olsen*\r\n>>>>>>\r\n>>>>>> Business Development Manager  •  *P* (703) 249-9771\r\n>>>>>>\r\n>>>>>> *Grafik*  •  Philadelphia  •  Washington, D.C.\r\n>>>>>>\r\n>>>>>> *grafik.agency <https://grafik.agency/>   instagram\r\n>>>>>> <https://instagram.com/grafikagency>   linkedin\r\n>>>>>> <https://linkedin.com/company/grafik> *\r\n>>>>>>\r\n>>>>>>\r\n>>>\r\n>>> --\r\n>>>\r\n>>> *—*\r\n>>>\r\n>>> *Tanya Nazarian*\r\n>>>\r\n>>> SVP, Growth  • *T* 703.299.5984\r\n>>>\r\n>>> *Grafik*  •  Washington, DC • Philadelphia, PA\r\n>>>\r\n>>> *grafik.agency <https://grafik.agency/>   instagram\r\n>>> <https://instagram.com/grafikagency>   linkedin\r\n>>> <https://linkedin.com/company/grafik>  *\r\n>>>\r\n>>\r\n>>\r\n>> --\r\n>>\r\n>> *—*\r\n>>\r\n>> *Tanya Nazarian*\r\n>>\r\n>> SVP, Growth  • *T* 703.299.5984\r\n>>\r\n>> *Grafik*  •  Washington, DC • Philadelphia, PA\r\n>>\r\n>> *grafik.agency <https://grafik.agency/>   instagram\r\n>> <https://instagram.com/grafikagency>   linkedin\r\n>> <https://linkedin.com/company/grafik>  *\r\n>>\r\n>>\r\n>\r\n> --\r\n>\r\n> *—*\r\n>\r\n> *Tanya Nazarian*\r\n>\r\n> SVP, Growth  • *T* 703.299.5984\r\n>\r\n> *Grafik*  •  Washington, DC • Philadelphia, PA\r\n>\r\n> *grafik.agency <https://grafik.agency/>   instagram\r\n> <https://instagram.com/grafikagency>   linkedin\r\n> <https://linkedin.com/company/grafik>  *\r\n>\r\n\r\n\r\n-- \r\n\r\n*—*\r\n\r\n*Tanya Nazarian*\r\n\r\nSVP, Growth  • *T* 703.299.5984\r\n\r\n*Grafik*  •  Washington, DC • Philadelphia, PA\r\n\r\n*grafik.agency <https://grafik.agency/>   instagram\r\n<https://instagram.com/grafikagency>   linkedin\r\n<https://linkedin.com/company/grafik>  *',0,0,0,0,0,0,'2025-12-02 17:16:55','2025-12-04 14:05:22','2025-12-04 14:05:22','2025-12-04 14:05:22',NULL,NULL,NULL),
(102,4,'<CAGOCFXiDFeGwG16ZuY2E+cJH0jVYeWps_vaqF8GoXY1akdNSVg@mail.gmail.com>',NULL,NULL,'Fwd: BMS and component cost assumptions','Nathan@lithiumbatterycompany.com','Nathan Staron','<div><br clear=\"all\"><br clear=\"all\"><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div><div><br></div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">Jarrett Brownfield</strong> <span dir=\"auto\">&lt;<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>&gt;</span><br>Date: Tue, Dec 2, 2025 at 11:19 AM<br>Subject: BMS and component cost assumptions<br>To: Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt;<br>CC: Nick Powell &lt;<a href=\"mailto:nick@lithiumbatterycompany.com\">nick@lithiumbatterycompany.com</a>&gt;, Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\">nathan@lithiumbatterycompany.com</a>&gt;<br></div><br><br>\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nJordan / Nick, <br>\r\n<br>\r\nComponent Cost per Pack and BMS cost per pack on the &quot;Battery_Production_Pipeline&quot; in columns O and P, respectively. These two figures should only include components and BMS with cells accounted for separately (similar to sol-ark attached)</div>\r\n<div id=\"m_-3776843232282097020Signature\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:11pt;color:black\"><b>Jarrett Brownfield </b></span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black;background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:rgb(0,36,81)\"><u><a style=\"color:rgb(0,36,81);margin:0px\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"m_-3776843232282097020OWAac83a8ff-6f02-db1d-6141-850df7245244\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">Jarrett@</a>lithiumbatterycompany<a style=\"color:rgb(0,36,81);margin:0px\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"m_-3776843232282097020OWAb228ec0f-2ea2-43d1-650e-dc74ef216e65\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">.com</a></u></span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:rgb(0,36,81)\"><u><a style=\"color:rgb(0,36,81);margin:0px\" title=\"https://lithiumbatterycompany.com/\" id=\"m_-3776843232282097020OWAc171676b-c3df-e247-1f58-f4a9ed9e02eb\" href=\"https://lithiumbatterycompany.com/\" target=\"_blank\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n</div>\r\n\r\n</div></div>','<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nDate: Tue, Dec 2, 2025 at 11:19 AM\r\nSubject: BMS and component cost assumptions\r\nTo: Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\nCC: Nick Powell <nick@lithiumbatterycompany.com>, Nathan Staron <\r\nnathan@lithiumbatterycompany.com>\r\n\r\n\r\nJordan / Nick,\r\n\r\nComponent Cost per Pack and BMS cost per pack on the\r\n\"Battery_Production_Pipeline\" in columns O and P, respectively. These two\r\nfigures should only include components and BMS with cells accounted for\r\nseparately (similar to sol-ark attached)\r\n\r\n*Jarrett Brownfield *\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\n*Jarrett@\r\n<Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\n*Lithium Battery Company <https://lithiumbatterycompany.com/>*',1,0,0,0,0,0,'2025-12-02 17:21:25','2025-12-04 14:05:25','2025-12-04 14:05:25','2025-12-04 16:19:13',NULL,NULL,NULL),
(103,4,'<1764701278273.6896e622-be57-4cae-bc8f-70f9c4bbde14@bf03.hubspotemail.net>',NULL,NULL,'When a prime spins off, brand drives value','tanya@grafik.com','Tanya Nazarian','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional //EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:v=\"urn:schemas-microsoft-com:vml\" lang=\"en\"><head>\r\n    <title>When a prime spins off, brand drives value</title>\r\n    <meta property=\"og:title\" content=\"When a prime spins off, brand drives value\">\r\n    <meta name=\"twitter:title\" content=\"When a prime spins off, brand drives value\">\r\n    \r\n    \r\n    \r\n<meta name=\"x-apple-disable-message-reformatting\">\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\r\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <!--[if gte mso 9]>\r\n  <xml>\r\n    <o:OfficeDocumentSettings>\r\n      <o:AllowPNG/>\r\n      <o:PixelsPerInch>96</o:PixelsPerInch>\r\n    </o:OfficeDocumentSettings>\r\n    <w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\">\r\n      <w:DontUseAdvancedTypographyReadingMail/>\r\n    </w:WordDocument>\r\n  </xml>\r\n  \r\n  <style>\r\n    ul > li {\r\n      text-indent: -1em;\r\n    }\r\n  </style>\r\n<![endif]-->\r\n<!--[if mso]>\r\n<style type=\"text/css\">\r\n body, td {font-family: Arial, Helvetica, sans-serif;}\r\n .hse-body-wrapper-table {background-color: #f2efea;}\r\n</style>\r\n<![endif]-->\r\n<!--[if mso | IE]>\r\n  <style type=\"text/css\">\r\n    .hse-column-container { border: none !important; padding: 0 !important; }\r\n  </style>\r\n<![endif]-->\r\n    \r\n      \r\n  \r\n  \r\n    \r\n  <meta name=\"generator\" content=\"HubSpot\"><meta property=\"og:url\" content=\"http://grafik-7.hs-sites.com/when-a-prime-spins-off-brand-drives-value\"><meta name=\"robots\" content=\"noindex,follow\"><!--[if !((mso)|(IE))]><!-- --><style type=\"text/css\">@media only screen and (max-width:639px){img.stretch-on-mobile,.hs_rss_email_entries_table img,.hs-stretch-cta .hs-cta-img{height:auto !important;width:100% !important}\r\n.display_block_on_small_screens{display:block}.hs_padded{padding-left:20px !important;padding-right:20px !important}\r\n.hs-hm,table.hs-hm{display:none}.hs-hd{display:block !important}table.hs-hd{display:table !important}\r\n}@media only screen and (max-width:639px){.hse-border-m{border-left:1px solid #cbd6e2 !important;border-right:1px solid #cbd6e2 !important;box-sizing:border-box}\r\n.hse-border-bottom-m{border-bottom:1px solid #cbd6e2 !important}.hse-border-top-m{border-top:1px solid #cbd6e2 !important}\r\n.hse-border-top-hm{border-top:none !important}.hse-border-bottom-hm{border-bottom:none !important}\r\n}.moz-text-html .hse-column-container{max-width:600px !important;width:600px !important}\r\n.moz-text-html .hse-column{display:table-cell;vertical-align:top}.moz-text-html .hse-section .hse-size-6{max-width:300px !important;width:300px !important}\r\n.moz-text-html .hse-section .hse-size-12{max-width:600px !important;width:600px !important}\r\n@media only screen and (min-width:640px){.hse-column-container{max-width:600px !important;width:600px !important}\r\n.hse-column{display:table-cell;vertical-align:top}.hse-section .hse-size-6{max-width:300px !important;width:300px !important}\r\n.hse-section .hse-size-12{max-width:600px !important;width:600px !important} }@media only screen and (max-width:639px){.hse-body-wrapper-td{padding-top:0px !important}\r\n#section_1747855946904 .hse-column-container{background-color:transparent !important}\r\n#section_1747855946904 .hse-column-container{background-color:transparent !important}\r\n}@media only screen and (max-width:639px){ #section_17468034824076 .hse-column-container{background-color:#151515 !important}\r\n}@media only screen and (max-width:639px){.hse-body-wrapper-td{padding-bottom:0px !important}\r\n#section_17468034857699 .hse-column-container{padding-top:0px !important;padding-bottom:10px !important}\r\n#section_17468034857699 .hse-column-container{background-color:#151515 !important}\r\n}</style><!--<![endif]--><style type=\"text/css\">#hs_body #hs_cos_wrapper_main a[x-apple-data-detectors]{color:inherit !important;text-decoration:none !important;font-size:inherit !important;font-family:inherit !important;font-weight:inherit !important;line-height:inherit !important}\r\na{text-decoration:underline}p{margin:0}body{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale}\r\ntable{border-spacing:0;mso-table-lspace:0;mso-table-rspace:0}table,td{border-collapse:collapse}\r\nimg{-ms-interpolation-mode:bicubic}p,a,li,td,blockquote{mso-line-height-rule:exactly}\r\n.ShadowHTML p,.sh-modified-inline p{margin:0}</style></head>\r\n  <body id=\"hs_body\" bgcolor=\"#f2efea\" style=\"margin:0 !important; padding:0 !important; font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word\">\r\n    <div id=\"preview_text\" style=\"display:none;font-size:1px;color:#f2efea;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;\" lang=\"en\">The new acquisition environment is favoring companies with sharp positioning and clear purpose.</div>\r\n    \r\n<!--[if gte mso 9]>\r\n<v:background xmlns:v=\"urn:schemas-microsoft-com:vml\" fill=\"t\">\r\n    <v:fill type=\"tile\" size=\"100%,100%\" color=\"#ffffff\"/>\r\n</v:background>\r\n<![endif]-->\r\n    <div class=\"hse-body-background\" lang=\"en\" style=\"background-color:#f2efea\" bgcolor=\"#f2efea\">\r\n      <table role=\"presentation\" class=\"hse-body-wrapper-table\" cellpadding=\"0\" cellspacing=\"0\" style=\"margin:0; padding:0; width:100% !important; min-width:320px !important; height:100% !important\" width=\"100%\" height=\"100%\">\r\n        <tbody><tr>\r\n          <td class=\"hse-body-wrapper-td\" valign=\"top\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; padding-top:20px; padding-bottom:20px\">\r\n            <div id=\"hs_cos_wrapper_main\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_dnd_area\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"dnd_area\">  <div id=\"section_1747855946904\" class=\"hse-section hse-section-first\" style=\"padding-left:0px; padding-right:0px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\r\n      <tr>\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column_1747855946904_0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module_17478559469032\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div style=\"overflow:hidden\">\r\n  <table role=\"presentation\" class=\"hse-pre-header hse-secondary\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"text-align:right; font-family:Arial, sans-serif; font-size:12px; line-height:135%; color:#23496d; margin-bottom:0; padding:0\" align=\"right\">\r\n    <tbody>\r\n      <tr>\r\n        <td align=\"right\" valign=\"top\" style=\"color:#000000; word-break:break-word; text-align:right; font-family:Arial, sans-serif; font-size:12px; padding:10px 0; margin-bottom:0; line-height:135%\">\r\n          <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYxK5nXHCW7lCGcx6lZ3lyW9lQcCb5vCc-6W2Qkrqw7y7Ph6W8N7yN51tQKwkW2w6ZJw2M3SnKN8WJjXkF3h3NW4LlnVk4hvBljW2gVwGg8jPrwrW5cm6wt68Mz8fW8VHxgc21LPQyN5kjcpStJCZbW5jSr903GLlbjN6PzXdTx1GJ8W37Ck0T7WkmBPW7f1VBC6zmV7fW2Mnh-k5FVjCXW42Fgq43bskd-W7C7LqY86s3SWW5LWPJd4SDpTGV9tppc2T3DbYW3VT9V13dDbJpW66MvPL8nnL3wW4dGFKj2CBFMfW74FrJH7PcxYqW9hC-yk4V8TwMW5JbHTH8JGp0TW4Qg8d557Sr2MW4pV5b79l2V6TMFvHn3MCM2YW20kJqx5_JC2zN7nfbZt1JlLWW3C42mF5MWxSdW5TvbZv2MqhxKW8N9V665y2KRsW2tCdVW8mVnH4W6xMzb81Xfcc6Vf-6G997S2GtW1N9sgB9kg3yjV9yt8-4v2sGDW2sWGcp36X4MQW59mSCF1XMH7Rf38FV3Y04\" style=\"color:#d01300; font-weight:normal; text-decoration:underline; font-style:normal\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"/dZSk7EX\" target=\"_blank\">View in browser</a>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n</div></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"builtin_section-2\" class=\"hse-section\" style=\"padding-left:0px; padding-right:0px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"builtin_column_2-0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module_16389778621911\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#000000; word-break:break-word; text-align:center; padding:0px; font-size:0px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYwx5nXHCW50kH_H6lZ3pJW8HrN7b6WDNWsW6V0HjC8khZyfW4Pv5g97t3mrMW2Qq0QK5VmnNnW7zSj8w7Cfpt8W6PGcVg80vV46W1jK6WF2WrB5vW7yL6FF5qHb40W72lrRY82tT8CW1nDrSF80SVn0W707dLr6dr3c_W4Nt9b-6v6N1sW98Mn6p2c_Cp-W2GrRL-1r1Q5LW8JFZ3R8RWK-YN38TtGWTv-BdW3Kpb2Y8nWcqVW96hqFv687jZCVVBCbV1GR00yVSd7w256J9fKW6mLQ-v55rtB7W848_TQ8cjl0tW7TMJrB8vyNnbN8Sn4HMjyMMhVMS-sT5CjvmHVT2sjS8gJCC_N7DWxZ5bX1hPW4JSrJL3ZzFppW6811ss3FNdG2W168Wjx3sFCDTW1xg7Dz93LRchW99s-XX4R4VHRd-pWm604\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"IBRbojCh\">\r\n        <img alt=\"B2B Tech email header (2)\" src=\"https://hs-505301.f.hubspotemail.net/hub/505301/hubfs/B2B%20Tech%20email%20header%20(2).png?width=1200&amp;upscale=true&amp;name=B2B%20Tech%20email%20header%20(2).png\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"600\" align=\"middle\" class=\"stretch-on-mobile\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; padding:20px 20px 0px\"><div id=\"hs_cos_wrapper_builtin_module_2_0_0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_builtin_module_2_0_0_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"line-height:175%\"><span style=\"color: #000000; font-family: Arial, sans-serif;\">Hi Rick,</span></p>\r\n<p data-start=\"470\" data-end=\"643\" style=\"line-height:175%\">Spin-offs are accelerating across the defense sector, and the reason is becoming clear. In the new acquisition environment, focus is not just operational. It is financial.</p>\r\n<p data-start=\"645\" data-end=\"956\" style=\"line-height:175%\"><br>At the Baird 2025 Defense and Government Conference, leaders from across the industry made the same point. The <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYwx5nXHCW50kH_H6lZ3nsW3Tr_gL5C6d4zW8524mm8D3cK9W3YPYlr3YyKnzW8BtzdZ4fq1bLW2nGdZD3H7pJ4W2-ybRJ6_VZSPW3L5Ycj67H-51VLx8SS1GvlW8W8fn6PX8jW6LZW6_KSRh3D-JMnW4qkHJ07rR8FLW6kvwm47lM03XW1PPTKK2ZJ3CrW2z-3Tp6-9VKCN4gpmlMcY5rGVqJ4Vw44Vv05W72dvcT6RxSt7W1M5GPP1wD7rmW5DVR_13knMdnW5VfhHH7SVkWcW3npGWg60841bW7FfQgZ4S6BxgW29LPCP76fCdtW7rmJCh7qP0CbW1SMYSc6F2DP3Vj58sD5w40PhW9fDqcw1K-yXXW11jjqr93fbJGW4PnYwr6pv_J4W26ZJMX8FD0SYW5C3g0s3jFdYTW4KNCg261znBMf6Qj_Zv04\" rel=\"noopener\" style=\"color:#d01300\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"RFAhPYwj\" target=\"_blank\">Warfighting Acquisition System</a> is shifting attention from incumbency to relevance. Companies that show clear mission alignment are gaining momentum faster than those relying on size or legacy alone.</p>\r\n<p data-start=\"958\" data-end=\"997\" style=\"line-height:175%\"><strong data-start=\"958\" data-end=\"995\"><br>Recent moves reinforce the trend:</strong></p>\r\n<ul data-start=\"998\" data-end=\"1225\" style=\"line-height:175%\">\r\n<li data-start=\"998\" data-end=\"1059\">\r\n<p data-start=\"1000\" data-end=\"1059\" style=\"line-height:175%\">KBR’s planned carve-out of Mission Technologies Solutions</p>\r\n</li>\r\n<li data-start=\"1060\" data-end=\"1102\">\r\n<p data-start=\"1062\" data-end=\"1102\" style=\"line-height:175%\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYy03qn9qW7Y8-PT6lZ3lqW4Wf3wq6Z2pfYW2Zxsyw58H0d_W4vFrFJ7bQ1DNW3G-nm15CBX5gW1LRFlr2pPc7_N6tV8nKM1-lGW10cJR02DGK1RW9fjkZm7NlCyXVcWJck7Bp00LW173vMf5S6QVhN6gL87R6RgY4W1JXt094clq1ZVjrZHd21Dbr_W5SDvTR34sPJNW2ZSyqz7D2w2mW2Ly1pp91V5zxN26vn0L1K0w_VF9sBQ9bWXdhW6jnWT23fSRj4W2BH2r17XQ7C5W7knG1H2YwtnWW8Rt3wl7-WmpCW4CDtxg83yff6W96T-Wh1vhfJhVpnH-j8q4hDCW8cQkf-1r0f09f8bcF-s04\" rel=\"noopener\" style=\"color:#d01300\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"36AG222V\" target=\"_blank\">Maxar’s</a> split into Vantor and Lanteris</p>\r\n</li>\r\n<li data-start=\"1103\" data-end=\"1156\">\r\n<p data-start=\"1105\" data-end=\"1156\" style=\"line-height:175%\">Intuitive Machines’ rapid acquisition of Lanteris</p>\r\n</li>\r\n<li data-start=\"1157\" data-end=\"1225\">\r\n<p data-start=\"1159\" data-end=\"1225\" style=\"line-height:175%\">Defense tech valuation multiples far outpacing traditional primes</p>\r\n</li>\r\n</ul>\r\n<p data-start=\"1227\" data-end=\"1455\" style=\"line-height:175%\">When a business separates from its parent, the brand becomes the signal that tells customers and investors what the new entity stands for and why it exists.<br><br></p>\r\n<p data-start=\"1457\" data-end=\"1664\" style=\"line-height:175%\">In <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYwx5nXHCW50kH_H6lZ3lkW7whKt15tvH5_W2JKHnS2NZrXbVrxvLh5vl3_WN2nFMDtzvmSrW5TQlKB5gB08SW3TQGY64FLB-MW4T5Sl41VtPq3W1fzSP-4Z91m3W9cCFc96Ltbw5W5WFp7c4prQ_JV3nPz26vVBVcV76XcS2s0fBsW81SxKF7n1BjvVnnkqF8yRm3BW3KF94d2C1DSRW4Wk4BK2FMVGtW8Lkv228-wj_cW6LXBrM2DF-fDW4C-DCd5sm_zyW5NvZm46nmqLPN6h83fjL2xZXW9hrzvd6ncdfHW7T1zDz8xk2c1W417jqz8-jwyQW7y7BC_3vT70TW3Vkfpz3glsq1W6lGhhY38XnqCW8--g-c7J13NNW8M_3VW5Jl4KgW5MFB7h9kXWmrW417F_S1yCBmpW6jL2J456M89Pf7vqtfT04\" rel=\"noopener\" style=\"color:#d01300\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"cVB6nSLQ\" target=\"_blank\">our latest blog</a>, we outline the brand imperatives every carve-out should prioritize to capture full value, including narrative clarity, investor confidence, customer reassurance, and internal alignment.</p>\r\n<p data-start=\"1209\" data-end=\"1281\" style=\"line-height:175%\">&nbsp;</p></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; padding:0px 20px 10px\"><div id=\"hs_cos_wrapper_module_17521663901933\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#ff2d0f\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; border-radius:4px; cursor:auto; background-color:#ff2d0f; mso-padding-alt:12px 18px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYwx5nXHCW50kH_H6lZ3mnW3Zb3NN4K5M9xW3W9G6m5KyKSlW8ZV-t51_kCB4N944R4CmGvDDW8_rCV_9h-_msVWv3zF4t0Sc6W3GVr7Z2JZw5JW3LY4y04dHYMlW4RKjjR6jDKMsW6CmpYy856F7vW5HmT7h3l226kW3mmP3d1dXBXtW1VXK084Df7-tN8Ktbn_K0rgbW1bTmxG8j4QbCN3hFhPNrZRZ-W7PPSbk5c_vCPW1BV-Yc8pN78jN96qWK_ZMsqDN2Qnft_m3RxSW8s5zTF4Ygc4SW408PhZ7P7xW7W6Ztnpt667dPZW1v1Cdh1fvzw5W6btzLq5djM9lV9L4XD9lyssqW25RcNl29ggYKW7C8V7144t-cNW7dkGpZ5xJm3GW7Gggwb3vvkp_W1QPgCL92DkcjVQYNKs5mjx51d95_Lb04\" target=\"_blank\" style=\"color:#00a4bd; font-size:16px; font-family:Arial, sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:12px 18px; display:block\" data-hs-link-id=\"2\" data-hs-link-id-v2=\"F1uBLoDq\">\r\n          <strong style=\"color:#ffffff;font-weight:bold;text-decoration:none;font-style:normal;\">Read the full blog</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; padding:5px 30px 0px\"><div id=\"hs_cos_wrapper_module_17521664251794\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17521664251794_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"line-height:175%\"><span style=\"color: #3574e3;\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYxK3qn9qW7lCdLW6lZ3mFW67Xlkh15vBktW5673lJ63BLS9W5bCCnx5fBgK5W8D5SjT3F9VnsW48W7zl3YhgkpW3tGx195RnrPxW4fm4nZ1Q4yXnW3DwFBB5SxdHDVCpCgK5vN3VFW4s2rtt2-b99RVfyssm3dT4JqW32FlYc6TkBglW2ZF5dD7-RpKhW1Z8WDg7YV45tW8wt8RW39w20jW7C2bVZ1kG4BGW7tV_4n8qjC4xW125Whc2NCGXRW4Ghmz41DrwnNW28BFfR43kWWDN6S_DmHMyMDZN297G-dCjTwTVn-4nP2WNGRWW6gkKLR7yGFKhf364f9K04\" style=\"color:#3574e3; text-decoration:none; font-weight:normal\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"B1oh/uBP\" target=\"_blank\"> </a></span></p>\r\n<p data-start=\"1687\" data-end=\"1799\" style=\"line-height:175%\">We help carve-outs and newly focused organizations turn structural change into strategic advantage.<br><br></p>\r\n<p data-start=\"1801\" data-end=\"1900\" style=\"line-height:175%\">If your organization is preparing for a carve-out or repositioning for greater focus, <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYxK3qn9qW7lCdLW6lZ3phW7dFDXG8sXnCDW2lsP8y68MyPFN694pZKNySJwW3D74Rt4pb0DsW3N4M642qp_sPW6_-SxH2pP8kHW60SMDF187CLlW63SYLY1LNW9fW6ZDBvz312wSCW76gw8w2n_mVYN45vzG41mvngW4nrSV75RKwb5VDHRhx3D5CfkW2n-b8n6LZTPKW2ncHnP8clP7QN2B7XYfDdyy6W3FqSCj4dtlJdN1384WRHW3C3W7F4DqN3pDVKPW7J4YqH97LgKWW19jKTK4ctY9fW8pxN3K4y56TwW1jcP_r1PjHZzW7qZbHj1QbYn4f8BctWH04\" rel=\"noopener\" style=\"color:#d01300\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"fLyDNOI6\" target=\"_blank\">let’s talk</a>.</p></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section_1638569706852\" class=\"hse-section\" style=\"padding-left:0px; padding-right:0px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff; padding-bottom:20px\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-bottom:20px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column_1638569706852_0\" class=\"hse-column hse-size-12\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; padding:10px 30px\"><div id=\"hs_cos_wrapper_module_15948141236582\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_15948141236582_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"font-size:15px; line-height:150%\"><span style=\"color: #000000; font-family: Arial, sans-serif;\"><br>Best Regards,</span></p>\r\n<p style=\"font-size:15px; line-height:150%\">&nbsp;</p>\r\n<p style=\"font-size:18px; line-height:125%\"><span style=\"color: #000000; font-family: Arial, sans-serif; font-size: 15px; font-weight: normal;\">Tanya Nazarian</span></p>\r\n<p style=\"font-size:18px; line-height:125%; font-weight:normal\"><span style=\"color: #000000; font-family: Arial, sans-serif; font-size: 15px;\">SVP, Growth</span></p>\r\n<p style=\"font-size:18px; line-height:125%; font-weight:normal\"><span style=\"text-decoration: underline; font-family: Arial, sans-serif;\"><span style=\"color: #000000; font-size: 15px; text-decoration: underline;\">703-299-5984</span></span></p>\r\n<p style=\"font-size:18px; line-height:125%; font-weight:normal\"><span style=\"font-family: Helvetica, Arial, sans-serif;\"><span style=\"color: #000000;\"><a href=\"mailto:tanya@grafik.com\" style=\"color:#000000\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"2P7oQQm8\" target=\"_blank\"><span style=\"font-size: 15px;\"><span style=\"font-family: Arial, sans-serif;\">tanya@grafik.com</span></span></a></span></span></p></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section_17468034824076\" class=\"hse-section\" style=\"padding-left:0px; padding-right:0px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container hse-no-stack-row\" style=\"min-width:280px; max-width:600px; margin:0 auto; border-collapse:separate; display:table; width:100%; background-color:#151515; padding-bottom:30px; padding-top:15px\" bgcolor=\"#151515\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" class=\"hse-no-stack-row\" width=\"600\" bgcolor=\"#151515\">\r\n      <tr style=\"background-color:#151515;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:300px;padding-bottom:30px; padding-top:15px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"300\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:300px\">\r\n<![endif]-->\r\n<div id=\"column_1747057387726_0\" class=\"hse-column hse-size-6 hse-no-stack\" style=\"display:table-cell; vertical-align:top; max-width:300px; width:50%\">\r\n  <div id=\"hs_cos_wrapper_module_17468034824075\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;table-layout:fixed\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"left\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#000000; word-break:break-word; text-align:left; padding:10px 20px 10px 30px; font-size:0px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYxK3qn9qW7lCdLW6lZ3npW5VtnCs3g4f1vW2QCqcD6qrCpfVyYY586HHRd-W4L91yL7C2mpZW4WqGcs3MvPhqN8sf3FRDklXVW2nvBS86xXrWZW3vH_672fZWLYW3tY8c_31Z381W3pd-865FRsVzW6wGS662vjkyQN3M7jMTpsdYhW8xPvBz1tsb7cW57QRql8ySG_BW3WD5Vg284x3zW1tdP_B7GvKJcW4w00qR438kkTW64DsFg4_93CZW4VjNxz8j-vFQW6sFHb95Bp9ybW1HTvt27vCy29N96HtRQxGZ2lN1RJH0C2YcKRW2fbL76999-LZf4RRKHW04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"jBtPrh1/\">\r\n        <img alt=\"Grafik-Logo-Tagline-1\" src=\"https://hs-505301.f.hubspotemail.net/hub/505301/hubfs/Grafik-Logo-Tagline-1.png?width=380&amp;upscale=true&amp;name=Grafik-Logo-Tagline-1.png\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"190\" align=\"middle\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:300px;padding-bottom:30px; padding-top:15px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"300\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:300px\">\r\n<![endif]-->\r\n<div id=\"column-1746803482407-0\" class=\"hse-column hse-size-6 hse-no-stack\" style=\"display:table-cell; vertical-align:top; max-width:300px; width:50%\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"table-layout:fixed\"><tbody><tr><td style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; padding:10px 30px 10px 20px\"><div id=\"hs_cos_wrapper_module_17468034486883\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17468034486883_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"text-align:right; line-height:175%\" align=\"right\"><span style=\"color: #ffffff;\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYy03qn9qW7Y8-PT6lZ3kWVfH4K55G3rGCN8RK8J5sPhXdN97Ly2B3_4N1W8GhkfY1vSy-KW7fPQkV3kZT45W1m2Mk28ysHjpW9jjj855McVlQW3S2Wc-7qxgtQW8Lw4HT5Hfp4zW1dp7Ng7vlrZcW2vq0zv84kL9QW3RHpMf5QshJTW4XxZzf8QXG2WW249qL95PjGKRN2psMm6PngvrW828Lcl7_T47VVFqmg51YNq5-W4-6lrl8TFllvN74qlGpPC48-W1bPjtx4hSYtVW5DYbW12BswH6W6nClDv1rgHYTW8Xsznt2CZ7T6W4pwTBz9dPQW5W2qnJ5g4LQvz-W4g2TwY2yZGxCf7BF0WC04\" style=\"text-decoration:underline; color:#ffffff\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"pBQ+yHPN\" target=\"_blank\"><span style=\"color: #ffffff;\">LinkedIn</span></a></span></p>\r\n<p style=\"text-align:right; line-height:175%\" align=\"right\"><span style=\"color: #ffffff;\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYy03qn9qW7Y8-PT6lZ3pkW4BZ25T7pPCylN1_knSPkFD51W7S-Pd24kf7zxW6sXm5f3BvvbsW1Mztl05j35vWW6K7Pm774yY-pN3DK0Gp_Mb1lW3lV9Kq1nJv3mN8BDRJVs9RVKW6kcB7Y4NhjJFF90bvFbrW5mVGHkJJ4nkYJLW7zX5sJ71lSRNN13056HFBw6kW5HdVqm1gq4njW5Vrjzp2qfDwTW2-yRt-3h70ZpW7zByMX8063TyW1W-Nrx4k3QhfW30PKcv7ZDpSmW5qnM_84YtQLKW3vFLXB1V4-80W67Jx5V89PRsfW1wCR4G773pblV_gBvx7jKd67W4ljDx287WJyxf1MDB9604\" style=\"text-decoration:underline; color:#ffffff\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"pfSNRZcW\" target=\"_blank\"><span style=\"color: #ffffff;\">Instagram</span></a></span></p></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section_17468034857699\" class=\"hse-section hse-section-last\" style=\"padding-left:0px; padding-right:0px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#151515; padding-bottom:10px\" bgcolor=\"#151515\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#151515\">\r\n      <tr style=\"background-color:#151515;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-bottom:10px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-1746803485769-0\" class=\"hse-column hse-size-12\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; padding:10px 20px 0px\"><div id=\"hs_cos_wrapper_module_17468034857697\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17468034857697_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"line-height:175%; text-align:center\" align=\"center\"><span style=\"color: #ffffff;\">© 2025&nbsp;Grafik. All rights reserved.</span></p></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; padding:5px 20px 10px\"><div id=\"hs_cos_wrapper_module_17468034857698\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table role=\"presentation\" class=\"hse-footer hse-secondary\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family:Arial, sans-serif; font-size:12px; line-height:135%; color:#23496d; margin-bottom:0; padding:0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; text-align:center; margin-bottom:0; line-height:135%; padding:10px 20px\">\r\n          <p><span style=\"color: #ffffff;\"><span style=\"text-align: left;\">Grafik</span>, 8045 Leesburg Pike, Suite 503, Vienna,VA,22182,United States,</span></p>\r\n<p><span style=\"color: #ffffff;\"><a href=\"https://hs-505301.s.hubspotemail.net/hs/preferences-center/en/direct?data=W2nXS-N30h-S1W47MPR73dbF0YW43FXtR2zxTn3W1NkJnX3gtRq9W2Ymm602r425gW45QV0W1Bsws8W3R6Ws_2qWNY5W47wRHQ4mbT3YW2HGPqf1QlhBzW23mNBw2F-87dW32gBNw2-bqCNW3XYNjS3jrZgkW1BJ2Jt1Bs82hW23kctL256D3zW4kGzfp3Szk94W2t2xPd4cyvKCW3bwSMS1NxY_gW2B1Vsn3dxt9yW25q0sF4fqKgRW32stQG2RCVccW2WsYP63bhMB3W2sZYBx2TRdqZW1Xx-lK21hkXrW2KNNL0346SqGW2HFyqz3g8gbyW2HSh_V23rwvQW30CJvY3j4l8dW2RCmGz1_6p8DW2B1Ys12YMyt-W4chQxD3XZzMrW3dh-Z72pb0cLW365SBy2HXt8KW43lLBZ3CgNCtW2nGls83_FYnsW3Zw9x44fP8JqW2Whj8D2-H_6kW41PFXv2zQSQxW3yNZdR3Ch7DqW4hhnq92-zNMjW2HX4DN4tBNsKW2PCGDX2Tx514W45mjc849gmRJW2vMXVt2MzJrmW2w4pQQ4mkwGwW2FttRh2t6gZXW38Bs2G1BDKVCW2B2l1v3XGHq6W3g9ysX2RtlXnW25d50_3SBcbZW2TpPQD2w3b3HW1NkJWN3T0WGGW1_j0ys3B_Q7tW47Qgfv4hPRdJ0&amp;utm_campaign=Defense%20Technology&amp;utm_source=hs_automation&amp;utm_medium=email&amp;utm_content=392657847&amp;_hsenc=p2ANqtz--EcEbVlVjzgIekIpnTT7VGgruALxYmSitq_ZgfI0pFMjQ6vTWPNowKIhNsjyEG_6LofI-uO4tE6Zo-ztoEiIEVCvorkQ&amp;_hsmi=392657847\" style=\"color:#ffffff\" data-unsubscribe=\"true\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"SFRZzEXk\" target=\"_blank\">Unsubscribe</a> <a href=\"https://hs-505301.s.hubspotemail.net/hs/preferences-center/en/page?data=W2nXS-N30h-S1W47MPR73dbF0YW43FXtR2zxTn3W1NkJnX3gtRq9W2Ymm602r425gW45QV0W1Bsws8W3R6Ws_2qWNY5W47wRHQ4mbT3YW2HGPqf1QlhBzW23mNBw2F-87dW32gBNw2-bqCNW3XYNjS3jrZgkW1BJ2Jt1Bs82hW23kctL256D3zW4kGzfp3Szk94W2t2xPd4cyvKCW3bwSMS1NxY_gW2B1Vsn3dxt9yW25q0sF4fqKgRW32stQG2RCVccW2WsYP63bhMB3W2sZYBx2TRdqZW1Xx-lK21hkXrW2KNNL0346SqGW2HFyqz3g8gbyW2HSh_V23rwvQW30CJvY3j4l8dW2RCmGz1_6p8DW2B1Ys12YMyt-W4chQxD3XZzMrW3dh-Z72pb0cLW365SBy2HXt8KW43lLBZ3CgNCtW2nGls83_FYnsW3Zw9x44fP8JqW2Whj8D2-H_6kW41PFXv2zQSQxW3yNZdR3Ch7DqW4hhnq92-zNMjW2HX4DN4tBNsKW2PCGDX2Tx514W45mjc849gmRJW2vMXVt2MzJrmW2w4pQQ4mkwGwW2FttRh2t6gZXW38Bs2G1BDKVCW2B2l1v3XGHq6W3g9ysX2RtlXnW25d50_3SBcbZW2TpPQD2w3b3HW1NkJWN3T0WGGW1_j0ys3B_Q7tW47Qgfv4hPRdJ0&amp;utm_campaign=Defense%20Technology&amp;utm_source=hs_automation&amp;utm_medium=email&amp;utm_content=392657847&amp;_hsenc=p2ANqtz--EcEbVlVjzgIekIpnTT7VGgruALxYmSitq_ZgfI0pFMjQ6vTWPNowKIhNsjyEG_6LofI-uO4tE6Zo-ztoEiIEVCvorkQ&amp;_hsmi=392657847\" style=\"color:#ffffff\" data-unsubscribe=\"true\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"qjPJqCop\" target=\"_blank\">Manage Preferences</a></span></p>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div></div>\r\n          </td>\r\n        </tr>\r\n      </tbody></table>\r\n    </div>\r\n  \r\n<img src=\"https://c3chr04.na1.hubspotlinks.com/Cto/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjW2nfYhw8fYGwf1z2\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"display:none!important;min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important\"></body></html>','The new acquisition environment is favoring companies with sharp positioning and clear purpose.\r\n\r\nView in browser (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYxq5n4LbW6N1X8z6lZ3mBVDGcq65w4GCsW7JxkgC62vK4sW27TCq93kJ6z0W7vt-5R32HryQW2tQPLS4WvHB9W2-RlSZ3Qp_3TW8Nm6b68tW2K9W4k5L6P3sRVxmN8yRzY5-GsRPV8vGqg8j45H3W6hK50g3DR2vvW4XwKwg75rV6NW3CXVch5PBS_fW2bHSJy33_6DQW3my4qR6Nfw3nVY2QdV81h0SyN3yHhxrvNmp-VLnyLy674LR5VgBJCk4P1CjJW1slZDq7x4ZCMV2BLyn1sxhr4W36rvgm39093JW11tm_s1_v21_W4x_jxQ3tgwLXW1LKDM727srNTW67-n1Z7NB2zlW91BG7x1jtXhGN5rR4qttC1BrW2L3QvX4CclPVW1N5GdL96dZgpW1m1BzC5nm2mlW1CFfN45xzyHsW78ptTk7YrfNyW8nJFJn6zGJMhW56Hy4z2057FJW3_pDMR400l4LW1WzCrr3dZQ2GW34XF1t6Cdb_7f8DWQdx04 )\r\n\r\nB2B Tech email header (2) (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYyC3pyd0W95jsWP6lZ3mWW8Zs7Px8XBQBwW7xDQz47_BLFGW6V0pS11Xs0ZRW8lzGR45k5g45W4-qFZ_4cb5jFW3xJWYd873K8KW5QfhnZ4x3pP4W8-V_ZV4Rdb_sW34ZnGw1Pfwr6W21w5kJ7S_yKYW7Sc1QL3bkSkyW8gpfFl7nMrF1W1tXsJr5F5QhtW8TJC-b5h0dRhV5fkZV3GGXtQW58qZLw70Rmm3W3-BM9Y5B_QhtW92rNzh2bV-YqW2BBpN4773RgZN83RfzGGFQ04W1Lz0t59jqprhW3pv4l438LtZmW7pbDtb8B6SWlW6bg34w6_yV_qV6_mTz7jNTwwW5yzyq26QkcQ3W6Fswf78nC8kPW7YB5px3FjwmcW4Jxn1K3jBz7XMwTD4tM3dwMf5bWsSF04 )\r\n\r\nHi Rick,\r\n\r\nSpin-offs are accelerating across the defense sector, and the reason is becoming clear. In the new acquisition environment, focus is not just operational. It is financial.\r\n\r\nAt the Baird 2025 Defense and Government Conference, leaders from across the industry made the same point. The Warfighting Acquisition System (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYyC3pyd0W95jsWP6lZ3mCW2vKthv6xx6CMW6gHss_1t8BWwW7kq2zB31T59MW7rfqfJ20hZcGW2WWSxh3YQCymW3HVRQZ5pfXjHW1NRfP54gXX2ZW6mVx3c6Kn9XrV7-qbY7J1DwGW7ZD36V753SzwW1jFr7d83CW3_W2KfvND1MMpRjW7hvsg22zWBdlW136NMb8N4XS7W5rX6yt3ZTltNW7QBr-56rq_nsW64YSNL6vMJ9jW3hV1YD1Ytf7DW2T27Gf3_Gz5GW93HzdH6rrrx8W8lZrds1qgFQBW3qy8_86LSbvgN1Qx72tMH34cW5r3_Qn95NmZ9W5Nhqyz7jStnBW25dDVl7nKT4sW7QYcfF8Vlq3RW8L9qGL8hdRT9W7K_v4D2JHT_yW569vvy8dXYZ9f1hfNM404 ) is shifting attention from incumbency to relevance. Companies that show clear mission alignment are gaining momentum faster than those relying on size or legacy alone.\r\n\r\nRecent moves reinforce the trend:\r\n\r\n-\r\n\r\nKBR’s planned carve-out of Mission Technologies Solutions\r\n\r\n-\r\n\r\nMaxar’s (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYy03pyd0W7Y8-PT6lZ3kTW5RGVkp1wXKqNW1vMp8n1bP-LnV-0C0p29wGwJW62491C6tYNzsN5d7zkf1_x6MMyRBnZvdqN0W3zvwHF6PWCX9N3jCNX69MqDcN3lMb0WYdMPBW23b3gZ1clrt6W44rJYS1QD1qPW1prnwr7wF-PGW3Zzjvh1lk7JqW7Jk_wM5796_NW4skXPM66KJXxVy0KYK8_zlxNN2TThdzvmN_dW8s342C6yznb-W4m75RC2lkgvZW29S4273pqTvvN7f-snrFVW2MW4-95JJ1FMv_wW946Hv59htX6FW10PjQs7MGK0FN2_ZJ9J_M0YFW1mn9b75yv9pPf7nD8T-04 ) split into Vantor and Lanteris\r\n\r\n-\r\n\r\nIntuitive Machines’ rapid acquisition of Lanteris\r\n\r\n-\r\n\r\nDefense tech valuation multiples far outpacing traditional primes\r\n\r\nWhen a business separates from its parent, the brand becomes the signal that tells customers and investors what the new entity stands for and why it exists.\r\n\r\nIn our latest blog (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYyC3pyd0W95jsWP6lZ3mWW8Zs7Px8XBQBwW7xDQz47_BLFGW6V0pS11Xs0ZRW8lzGR45k5g45W4-qFZ_4cb5jFW3xJWYd873K8KW5QfhnZ4x3pP4W8-V_ZV4Rdb_sW34ZnGw1Pfwr6W21w5kJ7S_yKYW7Sc1QL3bkSkyW8gpfFl7nMrF1W1tXsJr5F5QhtW8TJC-b5h0dRhV5fkZV3GGXtQW58qZLw70Rmm3W3-BM9Y5B_QhtW92rNzh2bV-YqW2BBpN4773RgZN83RfzGGFQ04W1Lz0t59jqprhW3pv4l438LtZmW7pbDtb8B6SWlW6bg34w6_yV_qV6_mTz7jNTwwW5yzyq26QkcQ3W6Fswf78nC8kPW7YB5px3FjwmcW4Jxn1K3jBz7XMwTD4tM3dwMf5bWsSF04 ) , we outline the brand imperatives every carve-out should prioritize to capture full value, including narrative clarity, investor confidence, customer reassurance, and internal alignment.\r\n\r\nRead the full blog\r\n(https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYyC3pyd0W95jsWP6lZ3mWW8Zs7Px8XBQBwW7xDQz47_BLFGW6V0pS11Xs0ZRW8lzGR45k5g45W4-qFZ_4cb5jFW3xJWYd873K8KW5QfhnZ4x3pP4W8-V_ZV4Rdb_sW34ZnGw1Pfwr6W21w5kJ7S_yKYW7Sc1QL3bkSkyW8gpfFl7nMrF1W1tXsJr5F5QhtW8TJC-b5h0dRhV5fkZV3GGXtQW58qZLw70Rmm3W3-BM9Y5B_QhtW92rNzh2bV-YqW2BBpN4773RgZN83RfzGGFQ04W1Lz0t59jqprhW3pv4l438LtZmW7pbDtb8B6SWlW6bg34w6_yV_qV6_mTz7jNTwwW5yzyq26QkcQ3W6Fswf78nC8kPW7YB5px3FjwmcW4Jxn1K3jBz7XMwTD4tM3dwMf5bWsSF04 )\r\n\r\nWe help carve-outs and newly focused organizations turn structural change into strategic advantage.\r\n\r\nIf your organization is preparing for a carve-out or repositioning for greater focus, let’s talk (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYxK3pyd0W7lCdLW6lZ3mDW4-v42P371b6RN5GFvZXMvV_BN8MZzzrzP60jW2n9g1V79-f-pW1WQ_Rt8TkZ4JW1s_PYr52Tj3NW2QvqTl4hChCQM19bFWXJ1b0W1fk2wR6nw81KW2PlKSd90FHvvW3Rp8yZ1snSQvW68LZwY4LK448W8XqP1z1l6MSCW2Z1mNW3kGnJbVYCyN17xxLcgW60cy6-6mLXC9W1rNjTq4C9RpWW6QzG1j51SswHW3thRhl6-BxQKW2TD_5R5kTSC0W5nxNf88DdGk3W58yd1w7Q7SgTW6bDkxm2M_0nBVsp7C1761dQ7f5X8RW004 ) .\r\n\r\nBest Regards,\r\n\r\nTanya Nazarian\r\n\r\nSVP, Growth\r\n\r\n703-299-5984\r\n\r\ntanya@grafik.com (mailto:tanya@grafik.com)\r\n\r\nGrafik-Logo-Tagline-1 (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYxq3pyd0W6N1vHY6lZ3nsVnt-9h3rV_jbW4dtR2x1CQ6dYW9hDnk-85V1-vW4BVmKZ2Sm2MjW4H31rF4mTkd0W6qbDLT1lzqSTW1gjp4J6pyg8bN5DRG_vQ6CxXVJ-8C042LhQwMlDNgNTVY9-N7C_p1tP8r7bW3tLJ-16jkxJ6W7Bw2wV4TYTnMW2TFmnz5h2DfQVRC9jT9lWkMcVclmMK1KKqlMW8fB2Xv5sMdp3W1B4_g-2WkVJhW3qzntz6BZ1K9W2t2lKV4_vrY5W4DwGtZ4tmrKcW8lQqH934tLLff1LVlC004 )\r\n\r\nLinkedIn (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYxK3pyd0W7lCdLW6lZ3pBW9dn4pP40pSHKW72Xv_b2HjCWCW3rYyJz9b_RvwW66zK1s5S3XmHW6L_38B8D2sYwW32r57f6r3zZ2W44DTVt199PDJW8Lnw_K3_xkYpW5ks2D84z44ZFW3b98r44c_K5yVj0QRT3p-rfwW7JL2yM7VsQXNN8Y5ZX7M86rfW433rHL5xPsN4W6PCvVZ1JM4ZTW8BVPvJ6gGz0cW86x3RZ84z8Q0N4y11pLPsQj2W3llHl66Hg6wFW6xTZ_R4cZkfNW79p_9L2K4ypfW2stY8x5jgBN-W3MLL5t8QnvC_W4slnv_7Ycj6Vf6qwvSY04 )\r\n\r\nInstagram (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYxK3pyd0W7lCdLW6lZ3lSW2xfn_q8hq9ZkW856ltV9cHn5vW3ykh4x8jyVbxW2-5JHP2Cx_5BW14wYJg7hNyV5W8dbGCL8CTh2BW8KTrNK15Zbn1W299dY47Tk2kyW8_DpRs1dJtnDW2vwJ9795W_Q8W78ZXXs3qM6RTW6Yvp4p7p2zQ_W8DnS008DZPh5W40NW486QGSTxW3K4Gy83vF80ZW5cDv4J5K-ByJW5B9d6Q8Wwr3HW4YcQkM2W5RqPW5VPlg64qQs0nVG28RL655cXXW5JP4h-64SjCcW6J6fcl5zwPh4N24PGQqxJ8HNW4sscZ04FPTBDf2Nzbrz04 )\r\n\r\n© 2025 Grafik. All rights reserved.\r\n\r\nGrafik, 8045 Leesburg Pike, Suite 503, Vienna,VA,22182,United States,\r\n\r\nUnsubscribe (https://hs-505301.s.hubspotemail.net/hs/preferences-center/en/direct?data=W2nXS-N30h-S1W47MPR73dbF0YW43FXtR2zxTn3W1NkJnX3gtRq9W2Ymm602r425gW45QV0W1Bsws8W3R6Ws_2qWNY5W47wRHQ4mbT3YW2HGPqf1QlhBzW23mNBw2F-87dW32gBNw2-bqCNW3XYNjS3jrZgkW1BJ2Jt1Bs82hW23kctL256D3zW4kGzfp3Szk94W2t2xPd4cyvKCW3bwSMS1NxY_gW2B1Vsn3dxt9yW25q0sF4fqKgRW32stQG2RCVccW2WsYP63bhMB3W2sZYBx2TRdqZW1Xx-lK21hkXrW2KNNL0346SqGW2HFyqz3g8gbyW2HSh_V23rwvQW30CJvY3j4l8dW2RCmGz1_6p8DW2B1Ys12YMyt-W4chQxD3XZzMrW3dh-Z72pb0cLW365SBy2HXt8KW43lLBZ3CgNCtW2nGls83_FYnsW3Zw9x44fP8JqW2Whj8D2-H_6kW41PFXv2zQSQxW3yNZdR3Ch7DqW4hhnq92-zNMjW2HX4DN4tBNsKW2PCGDX2Tx514W45mjc849gmRJW2vMXVt2MzJrmW2w4pQQ4mkwGwW2FttRh2t6gZXW38Bs2G1BDKVCW2B2l1v3XGHq6W3g9ysX2RtlXnW25d50_3SBcbZW2TpPQD2w3b3HW1NkJWN3T0WGGW1_j0ys3B_Q7tW47Qgfv4hPRdJ0&_hsenc=p2ANqtz-_s9mC_21hgk5q63ldFthis7IW5EtA6kSVigwJhet-8_JWzNvorQtE1GLvdrgIs68hlTPOPcy6TTjLvbb6Y80UKDs8onQ&_hsmi=392657847 ) Manage Preferences (https://hs-505301.s.hubspotemail.net/hs/preferences-center/en/page?data=W2nXS-N30h-S1W47MPR73dbF0YW43FXtR2zxTn3W1NkJnX3gtRq9W2Ymm602r425gW45QV0W1Bsws8W3R6Ws_2qWNY5W47wRHQ4mbT3YW2HGPqf1QlhBzW23mNBw2F-87dW32gBNw2-bqCNW3XYNjS3jrZgkW1BJ2Jt1Bs82hW23kctL256D3zW4kGzfp3Szk94W2t2xPd4cyvKCW3bwSMS1NxY_gW2B1Vsn3dxt9yW25q0sF4fqKgRW32stQG2RCVccW2WsYP63bhMB3W2sZYBx2TRdqZW1Xx-lK21hkXrW2KNNL0346SqGW2HFyqz3g8gbyW2HSh_V23rwvQW30CJvY3j4l8dW2RCmGz1_6p8DW2B1Ys12YMyt-W4chQxD3XZzMrW3dh-Z72pb0cLW365SBy2HXt8KW43lLBZ3CgNCtW2nGls83_FYnsW3Zw9x44fP8JqW2Whj8D2-H_6kW41PFXv2zQSQxW3yNZdR3Ch7DqW4hhnq92-zNMjW2HX4DN4tBNsKW2PCGDX2Tx514W45mjc849gmRJW2vMXVt2MzJrmW2w4pQQ4mkwGwW2FttRh2t6gZXW38Bs2G1BDKVCW2B2l1v3XGHq6W3g9ysX2RtlXnW25d50_3SBcbZW2TpPQD2w3b3HW1NkJWN3T0WGGW1_j0ys3B_Q7tW47Qgfv4hPRdJ0&_hsenc=p2ANqtz-_s9mC_21hgk5q63ldFthis7IW5EtA6kSVigwJhet-8_JWzNvorQtE1GLvdrgIs68hlTPOPcy6TTjLvbb6Y80UKDs8onQ&_hsmi=392657847 )',0,0,0,0,0,0,'2025-12-02 18:47:58','2025-12-04 14:05:25','2025-12-04 14:05:25','2025-12-04 14:05:25',NULL,NULL,NULL),
(104,4,'<PH7PR84MB176758D113F6B0FC21611B2EFBD8A@PH7PR84MB1767.NAMPRD84.PROD.OUTLOOK.COM>',NULL,NULL,'RE: HP MJF Printers','gary.fudge@hp.com','\"Fudge, Gary\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Forma DJR Micro\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n@font-face\r\n	{font-family:\"Forma DJR Display\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.xairmailon, li.xairmailon, div.xairmailon\r\n	{mso-style-name:x_airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.xmsonormal, li.xmsonormal, div.xmsonormal\r\n	{mso-style-name:x_msonormal;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle23\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">How are things progressing/when should we connect back?&nbsp; Last we talked you mentioned wanting to get some equipment about this time.&nbsp;\r\n<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Please advise<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">3D Print - Enterprise Account Manager – US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">|</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black;mso-ligatures:standardcontextual\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_535934039\" src=\"cid:image001.png@01DC63AC.FC62A440\" alt=\"image001.png\"><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Fudge, Gary\r\n<br>\r\n<b>Sent:</b> Monday, November 3, 2025 5:47 PM<br>\r\n<b>To:</b> \'Rick\' &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> RE: HP MJF Printers<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Any questions on the site prep guide?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Also, please email me the physical address in FL so I can start getting you set up in our system.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Thanks<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">3D Print - Enterprise Account Manager – US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">|</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black;mso-ligatures:standardcontextual\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_877011165\" src=\"cid:image001.png@01DC63AC.FC62A440\" alt=\"image001.png\"></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Fudge, Gary\r\n<br>\r\n<b>Sent:</b> Friday, October 24, 2025 6:27 PM<br>\r\n<b>To:</b> \'Rick\' &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;<br>\r\n<b>Subject:</b> RE: HP MJF Printers<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Good catching up with you today.&nbsp; See attached site prep guide as requested.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Can you please email me your address now that you have the land secure so I can go ahead and get you into our system?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Please let me know if you have any questions or need any additional information.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Best Regards<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">3D Print - Enterprise Account Manager – US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">|</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black;mso-ligatures:standardcontextual\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_2\" src=\"cid:image001.png@01DC63AC.FC62A440\" alt=\"image001.png\"></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Friday, October 24, 2025 8:46 AM<br>\r\n<b>To:</b> Fudge, Gary &lt;<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>&gt;<br>\r\n<b>Subject:</b> Re: HP MJF Printers<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;color:red\">CAUTION: External Email\r\n</span></b><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">585.797.9473<br>\r\nSafe travels!<br>\r\nThanks,<br>\r\nRick <o:p></o:p></p>\r\n<p class=\"airmailon\">On October 24, 2025 at 08:56:44, Fudge, Gary (<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">I’m on a flight but should land around 10:30-10:45. &nbsp; Let me know of a good number to reach you and I can call then<o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\">\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div id=\"ms-outlook-mobile-signature\">\r\n<div>\r\n<p class=\"MsoNormal\">Gary Fudge<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">678-654-6734<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n<div class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">\r\n<hr size=\"1\" width=\"98%\" align=\"center\">\r\n</div>\r\n<div id=\"divRplyFwdMsg\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;<br>\r\n<b>Sent:</b> Friday, October 24, 2025 7:41:17 AM<br>\r\n<b>To:</b> Fudge, Gary &lt;<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>&gt;<br>\r\n<b>Subject:</b> Re: HP MJF Printers</span> <o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;color:red\">CAUTION: External Email\r\n</span></b><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">Hey Gary,<br>\r\nAre you available to day at 10a for a call?<br>\r\nTalking about power requirements for our facilities next week and need to start pulling together numbers.&nbsp;<br>\r\nOr, can you send me power requirements for the MJF Printers?<br>\r\nLet me know what works.<br>\r\nThanks!<br>\r\nRick <o:p></o:p></p>\r\n<p class=\"xairmailon\">On October 2, 2025 at 11:28:38, Fudge, Gary (<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"xmsonormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n<p class=\"xmsonormal\">Are you all ready to continue the conversation about our 3D Printers/3DP Services?&nbsp; If not, when should I check back with you?<o:p></o:p></p>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n<p class=\"xmsonormal\">Best Regards,<o:p></o:p></p>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"xmsonormal\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"xmsonormal\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager – US South\r\n</span><o:p></o:p></p>\r\n<p class=\"xmsonormal\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"xmsonormal\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><o:p></o:p></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"xmsonormal\" align=\"center\" style=\"text-align:center\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><o:p></o:p></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"xmsonormal\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"xmsonormal\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"_x0000_i1028\" src=\"cid:92845B48-0023-45F7-81C1-620B3C947B46\"></span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Hello Rick,\r\n\r\nHow are things progressing/when should we connect back?  Last we talked you mentioned wanting to get some equipment about this time.\r\n\r\nPlease advise\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager – US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Fudge, Gary\r\nSent: Monday, November 3, 2025 5:47 PM\r\nTo: \'Rick\' <rick@mavrix.one>\r\nSubject: RE: HP MJF Printers\r\n\r\nHello Rick,\r\n\r\nAny questions on the site prep guide?\r\n\r\nAlso, please email me the physical address in FL so I can start getting you set up in our system.\r\n\r\nThanks\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager – US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Fudge, Gary\r\nSent: Friday, October 24, 2025 6:27 PM\r\nTo: \'Rick\' <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSubject: RE: HP MJF Printers\r\n\r\nHello Rick,\r\n\r\nGood catching up with you today.  See attached site prep guide as requested.\r\n\r\nCan you please email me your address now that you have the land secure so I can go ahead and get you into our system?\r\n\r\nPlease let me know if you have any questions or need any additional information.\r\n\r\nBest Regards\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager – US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Friday, October 24, 2025 8:46 AM\r\nTo: Fudge, Gary <gary.fudge@hp.com<mailto:gary.fudge@hp.com>>\r\nSubject: Re: HP MJF Printers\r\n\r\nCAUTION: External Email\r\n585.797.9473\r\nSafe travels!\r\nThanks,\r\nRick\r\n\r\nOn October 24, 2025 at 08:56:44, Fudge, Gary (gary.fudge@hp.com<mailto:gary.fudge@hp.com>) wrote:\r\nI’m on a flight but should land around 10:30-10:45.   Let me know of a good number to reach you and I can call then\r\n\r\nGary Fudge\r\n678-654-6734\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Friday, October 24, 2025 7:41:17 AM\r\nTo: Fudge, Gary <gary.fudge@hp.com<mailto:gary.fudge@hp.com>>\r\nSubject: Re: HP MJF Printers\r\n\r\nCAUTION: External Email\r\nHey Gary,\r\nAre you available to day at 10a for a call?\r\nTalking about power requirements for our facilities next week and need to start pulling together numbers.\r\nOr, can you send me power requirements for the MJF Printers?\r\nLet me know what works.\r\nThanks!\r\nRick\r\n\r\nOn October 2, 2025 at 11:28:38, Fudge, Gary (gary.fudge@hp.com<mailto:gary.fudge@hp.com>) wrote:\r\n\r\nHello Rick,\r\n\r\n\r\n\r\nAre you all ready to continue the conversation about our 3D Printers/3DP Services?  If not, when should I check back with you?\r\n\r\n\r\n\r\nBest Regards,\r\n\r\n\r\n\r\nGary Fudge\r\n\r\n3D Print - Enterprise Account Manager – US South\r\n\r\nAtlanta , GA\r\n\r\nM - (678) 654-6734\r\n\r\n|\r\n\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n\r\n[cid:92845B48-0023-45F7-81C1-620B3C947B46]\r\n\r\n\r\n\r\n\r\n',1,0,0,0,0,0,'2025-12-02 21:59:14','2025-12-04 14:05:25','2025-12-04 14:05:25','2025-12-04 16:04:32',NULL,NULL,NULL),
(105,4,'<49812c77-be30-434d-b023-24239dbb6fed@atl1s07mta3028.xt.local>',NULL,NULL,'Try TinyMCE\'s advanced features before your free trial expires','team@engage.tiny.cloud','\"The TinyMCE Team\"','<!DOCTYPE html>\r\n<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\">\r\n\r\n<head>\r\n	<title></title>\r\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n	<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"><!--[if mso]>\r\n<xml><w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\"><w:DontUseAdvancedTypographyReadingMail/></w:WordDocument>\r\n<o:OfficeDocumentSettings><o:PixelsPerInch>96</o:PixelsPerInch><o:AllowPNG/></o:OfficeDocumentSettings></xml>\r\n<![endif]--><!--[if !mso]><!-->\r\n	<link href=\"https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&amp;display=swap\" rel=\"stylesheet\" type=\"text/css\">\r\n	<link href=\"https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&amp;display=swap\" rel=\"stylesheet\" type=\"text/css\"><!--<![endif]-->\r\n	<style>\r\n		* {\r\n			box-sizing: border-box;\r\n		}\r\n\r\n		body {\r\n			margin: 0;\r\n			padding: 0;\r\n		}\r\n\r\n		a[x-apple-data-detectors] {\r\n			color: inherit !important;\r\n			text-decoration: inherit !important;\r\n		}\r\n\r\n		#MessageViewBody a {\r\n			color: inherit;\r\n			text-decoration: none;\r\n		}\r\n\r\n		p {\r\n			line-height: inherit\r\n		}\r\n\r\n		.desktop_hide,\r\n		.desktop_hide table {\r\n			mso-hide: all;\r\n			display: none;\r\n			max-height: 0px;\r\n			overflow: hidden;\r\n		}\r\n\r\n		.image_block img+div {\r\n			display: none;\r\n		}\r\n\r\n		sup,\r\n		sub {\r\n			font-size: 75%;\r\n			line-height: 0;\r\n		}\r\n\r\n		#converted-body .list_block ul,\r\n		#converted-body .list_block ol,\r\n		.body [class~=\"x_list_block\"] ul,\r\n		.body [class~=\"x_list_block\"] ol,\r\n		u+.body .list_block ul,\r\n		u+.body .list_block ol {\r\n			padding-left: 20px;\r\n		}\r\n\r\n		@media (max-width:620px) {\r\n			.desktop_hide table.icons-outer {\r\n				display: inline-table !important;\r\n			}\r\n\r\n			.image_block div.fullWidth {\r\n				max-width: 100% !important;\r\n			}\r\n\r\n			.mobile_hide {\r\n				display: none;\r\n			}\r\n\r\n			.row-content {\r\n				width: 100% !important;\r\n			}\r\n\r\n			.stack .column {\r\n				width: 100%;\r\n				display: block;\r\n			}\r\n\r\n			.mobile_hide {\r\n				min-height: 0;\r\n				max-height: 0;\r\n				max-width: 0;\r\n				overflow: hidden;\r\n				font-size: 0px;\r\n			}\r\n\r\n			.desktop_hide,\r\n			.desktop_hide table {\r\n				display: table !important;\r\n				max-height: none !important;\r\n			}\r\n		}\r\n	</style><!--[if mso ]><style>sup, sub { font-size: 100% !important; } sup { mso-text-raise:10% } sub { mso-text-raise:-10% }</style> <![endif]-->\r\n</head>\r\n\r\n<body class=\"body\" style=\"background-color: #ffffff; margin: 0; padding: 0; -webkit-text-size-adjust: none; text-size-adjust: none;\">\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"nl-container\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\" width=\"100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td>\r\n			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row row-1\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\" width=\"100%\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row-content stack\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n							<tbody>\r\n								<tr>\r\n									<td class=\"column column-1\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; vertical-align: top;\" width=\"100%\">\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"paragraph_block block-1\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n												<div style=\"color:#233477;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:14px;font-weight:300;letter-spacing:0px;line-height:1.5;text-align:center;mso-line-height-alt:21px;\">\r\n												<p style=\"margin: 0;\">Is this email not displaying correctly? <a href=\"https://pi.tiny.cloud/webmail/2202/1924500100/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864\" style=\"text-decoration: underline; color: #335dff;\">View it in your browser</a></p>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n\r\n			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row row-2\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\" width=\"100%\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row-content stack\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f9f9fb; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n							<tbody>\r\n								<tr>\r\n									<td class=\"column column-1\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\" width=\"100%\">\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"image_block block-1\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:20px;padding-left:40px;padding-right:40px;padding-top:30px;width:100%;\">\r\n												<div align=\"left\" class=\"alignment\">\r\n												<div style=\"max-width: 90px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xsx/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" target=\"_blank\"><img alt=\"Tiny logo\" height=\"auto\" src=\"https://www2.ephox.com/l/2202/2021-02-22/d55tdv/2202/16140490780zkI7GHy/logo_tiny__lock_secondary.png\" style=\"display: block; height: auto; border: 0; width: 100%;\" title=\"Tiny logo\" width=\"90\"></a></div>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n\r\n			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row row-3\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\" width=\"100%\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row-content stack\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f9f9fb; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n							<tbody>\r\n								<tr>\r\n									<td class=\"column column-1\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\" width=\"100%\">\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"paragraph_block block-1\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n												<div style=\"color:#05bc84;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:400;letter-spacing:0px;line-height:1.8;text-align:center;mso-line-height-alt:29px;\">\r\n												<p style=\"margin: 0;\">7 of 14 days remaining in trial</p>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"image_block block-2\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-left:40px;padding-right:40px;width:100%;\">\r\n												<div align=\"center\" class=\"alignment\">\r\n												<div class=\"fullWidth\" style=\"max-width: 450px;\"><img alt=\"time tracker image\" height=\"auto\" src=\"https://pi.tiny.cloud/l/2202/2024-06-20/dh87s3/2202/1718923446A5erkv8K/ProgressBar_halfway.png\" style=\"display: block; height: auto; border: 0; width: 100%;\" title=\"time tracker image\" width=\"450\"></div>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"paragraph_block block-3\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n												<div style=\"color:#202533;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:200;letter-spacing:0px;line-height:1.8;text-align:center;mso-line-height-alt:29px;\">\r\n												<p style=\"margin: 0;\">Explore TinyMCE\'s <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xrq/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" rel=\"noopener\" style=\"text-decoration: underline; color: #335dff;\" target=\"_blank\">advanced features</a>&nbsp;before it\'s too late!</p>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"paragraph_block block-4\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n												<div style=\"color:#202533;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:200;letter-spacing:0px;line-height:1.8;text-align:left;mso-line-height-alt:29px;\">\r\n												<p style=\"margin: 0; margin-bottom: 16px;\">Build with some of our most popular features like PowerPaste, Spell Checker, Merge Tags, Comments and more.</p>\r\n\r\n												<p style=\"margin: 0;\">Simply add the TinyMCE code snippet to your project to get started</p>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"list_block block-5\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word; color: #202533; direction: ltr; font-family: \'Inter\',\'Arial\'; font-size: 16px; font-weight: 200; letter-spacing: 0px; line-height: 1.8; text-align: left; mso-line-height-alt: 29px;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:30px;padding-left:60px;padding-right:40px;padding-top:10px;\">\r\n												<div style=\"margin-left:-20px\">\r\n												<ul style=\"margin-top: 0; margin-bottom: 0; list-style-type: circle;\">\r\n													<li aria-level=\"1\" style=\"Margin: 0 0 0 0;\"><a href=\"https://pi.tiny.cloud/e/2202/-campaign-onboarding-free-html/dk6xrt/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: underline; color: #335dff;\">Log into </a>the Customer Portal&nbsp;</li>\r\n													<li aria-level=\"1\" style=\"Margin: 0 0 0 0;\">Add the TinyMCE code snippet to your project (this snippet will contain your API key)</li>\r\n													<li aria-level=\"1\" style=\"Margin: 0 0 0 0;\">Add your website or project URL to the “Approved Domains” section of the Customer Portal</li>\r\n													<li aria-level=\"1\" style=\"Margin: 0 0 0 0;\">Start building! 🎉</li>\r\n												</ul>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n\r\n			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row row-4\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\" width=\"100%\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row-content stack\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n							<tbody>\r\n								<tr>\r\n									<td class=\"column column-1\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\" width=\"100%\">\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"paragraph_block block-1\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:30px;\">\r\n												<div style=\"color:#202533;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:200;letter-spacing:0px;line-height:1.8;text-align:left;mso-line-height-alt:29px;\">\r\n												<p style=\"margin: 0; margin-bottom: 16px;\"><strong>For the next 7 days, enjoy full access to TinyMCE’s most powerful features</strong> — including <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xrx/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: underline; color: #335dff;\">PowerPaste</a>, <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xs1/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: underline; color: #335dff;\">Spell Checker</a>, <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xs4/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: underline; color: #335dff;\">Merge Tags</a>, <a\r\nhref=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xs7/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: underline; color: #335dff;\">Comments</a>, and more. It’s your chance to test the editor’s full potential and see how it performs with your most complex use cases.</p>\r\n\r\n												<p style=\"margin: 0;\">Plus, don’t miss out on our most popular premium add-ons: <strong><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xsb/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: underline; color: #335dff;\">AI Assistant</a></strong>, <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xsf/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: underline; color: #335dff;\"><strong>Document Converters</strong></a><strong>, </strong><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xsj/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: underline; color: #335dff;\"><strong>Revision History</strong></a><strong>, </strong><a\r\nhref=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xsm/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: underline; color: #335dff;\"><strong>Suggested Edits</strong></a><strong>,</strong> and <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xsq/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: underline; color: #335dff;\"><strong>Image Optimizer</strong></a> — all available to try free for 7 more days.</p>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"paragraph_block block-2\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:30px;\">\r\n												<div style=\"color:#202533;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:200;letter-spacing:0px;line-height:1.8;text-align:left;mso-line-height-alt:29px;\">\r\n												<p style=\"margin: 0;\"><strong>Need additional help?</strong><br>\r\n												Follow our <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xst/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" rel=\"noopener\" style=\"text-decoration: underline; color: #335dff;\" target=\"_blank\">Cloud-hosted Quick-start guide</a> or simply forward this email to your developer.</p>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"button_block block-3\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:40px;padding-left:40px;padding-right:40px;padding-top:10px;text-align:left;\">\r\n												<div align=\"left\" class=\"alignment\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xst/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"color:#ffffff;text-decoration:none;\" target=\"_blank\">\r\n<!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://www.tiny.cloud/blog/cloud-based-tinymce-editor/?utm_medium=email&utm_source=email&utm_campaign=onboarding_free\"  style=\"height:46px;width:357px;v-text-anchor:middle;\" arcsize=\"0%\" fillcolor=\"#335dff\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"0px\" color=\"#335dff\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#ffffff;font-family:sans-serif;font-size:16px\">\r\n<![endif]--><span class=\"button\" style=\"background-color: #335dff; border-bottom: 0px solid transparent; border-left: 0px solid transparent; border-radius: 0px; border-right: 0px solid transparent; border-top: 0px solid transparent; color: #ffffff; display: inline-block; font-family: \'Fira Code\',\'Arial\'; font-size: 16px; font-weight: 400; mso-border-alt: none; padding-bottom: 7px; padding-top: 7px; padding-left: 22px; padding-right: 22px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 32px;\">Cloud-hosted Quick-start guide →</span></span>\r\n <!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n\r\n			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row row-5\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\" width=\"100%\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row-content stack\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #0c132c; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n							<tbody>\r\n								<tr>\r\n									<td class=\"column column-1\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\" width=\"100%\">\r\n									<div class=\"spacer_block block-1\" style=\"height:40px;line-height:40px;font-size:1px;\"> </div>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"icons_block block-2\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center; line-height: 0;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"vertical-align: middle; color: #000000; font-family: inherit; font-size: 14px; font-weight: 400; padding-left: 40px; padding-right: 40px; text-align: center;\">\r\n												<table cellpadding=\"0\" cellspacing=\"0\" class=\"icons-outer\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; display: inline-table;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 10px; padding-right: 20px;\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xt1/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: none;\" target=\"_self\"><img align=\"center\" alt=\"facebook\" class=\"icon\" height=\"auto\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld41/2202/1724751073mZ9u0qBj/icons8_facebook_96.png\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\" width=\"32\"></a></td>\r\n															<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 20px;\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xt4/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: none;\" target=\"_self\"><img align=\"center\" alt=\"twitter\" class=\"icon\" height=\"auto\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld54/2202/17247512213yTqKMau/Twitter_X_icon_white.png\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\" width=\"32\"></a></td>\r\n															<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 20px;\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xt7/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: none;\" target=\"_self\"><img align=\"center\" alt=\"linkedin\" class=\"icon\" height=\"auto\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld4m/2202/1724751160RDTHTZoS/icons8_linkedin_104.png\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\" width=\"32\"></a></td>\r\n															<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 20px;\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xtb/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: none;\" target=\"_self\"><img align=\"center\" alt=\"stack overflow\" class=\"icon\" height=\"auto\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld4x/2202/1724751181bzH3aYSZ/icons8_stack_overflow_100.png\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\" width=\"32\"></a></td>\r\n															<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 10px;\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xtf/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: none;\" target=\"_self\"><img align=\"center\" alt=\"github\" class=\"icon\" height=\"auto\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld4j/2202/1724751125SZG76c9m/icons8_github_96.png\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\" width=\"32\"></a></td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"paragraph_block block-3\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:20px;padding-left:40px;padding-right:40px;padding-top:20px;\">\r\n												<div style=\"color:#ffffff;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:14px;font-weight:200;letter-spacing:0px;line-height:1.5;text-align:center;mso-line-height-alt:21px;\">\r\n												<p style=\"margin: 0;\">This email was sent to rick@mavrix.one<br>\r\n												<br>\r\n												Update your <a href=\"https://pi.tiny.cloud/emailPreference/epc/2202/GCJnM6uCa9lowWujzzOgjgKBTs4rqjHMIMbbbl-kBW4/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1924500100\" style=\"text-decoration: underline; color: #fff;\">email preferences</a> or <a href=\"https://pi.tiny.cloud/unsubscribe/u/2202/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1924500100\" style=\"text-decoration: underline; color: #fff;\">unsubscribe</a><br>\r\n												<br>\r\n												© 2025 Tiny Technologies | All rights reserved<br>\r\n												www.tiny.cloud | View our <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xtj/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: underline; color: #fff;\">privacy policy</a><br>\r\n												2100 Geng Road, Palo Alto, CA 94303 USA</p>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<div class=\"spacer_block block-4\" style=\"height:40px;line-height:40px;font-size:1px;\"> </div>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n<!-- End -->\r\n<img alt=\"\" src=\"https://pi.tiny.cloud/r/2202/1/1924500100/open/1\" /></body>\r\n\r\n</html>','Explore all that TinyMCE has to offer\r\n\r\nEmail not displaying correctly? View it in your browser https://pi.tiny.cloud/webmail/2202/1924500100/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864\r\n\r\nhttps://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dc7d55/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\r\n\r\n7 of 14 days remaining in trial\r\nExplore TinyMCE\'s advanced features (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xrq/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk)  before it\'s too late!\r\n\r\nBuild with some of our most popular features like PowerPaste, Spell Checker, Merge Tags, Comments and more.\r\n\r\nSimply add the TinyMCE code snippet to your project to get started\r\n* Log into (https://pi.tiny.cloud/e/2202/-campaign-onboarding-free-html/dk6xrt/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk) the Customer Portal\r\n* Add the TinyMCE code snippet to your project (this snippet will contain your API key)\r\n* Add your website or project URL to the “Approved Domains” section of the Customer Portal\r\n* Start building! 🎉\r\n\r\nFor the next 7 days, enjoy full access to TinyMCE’s most powerful features — including PowerPaste (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xrx/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk) , Spell Checker (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xs1/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk) , Merge Tags (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xs4/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk) , Comments (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xs7/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk) , and more. It’s your chance to test the editor’s full potential and see how it performs with your most complex use cases.\r\n\r\nPlus, don’t miss out on our most popular premium add-ons: AI Assistant (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xsb/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk) , Document Converters (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xsf/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk) , Revision History (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xsj/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk) , Suggested Edits (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xsm/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk) , and Image Optimizer (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xsq/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk) — all available to try free for 7 more days.\r\n\r\nNeed additional help?\r\nFollow our Cloud-hosted Quick-start guide (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xst/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk) or simply forward this email to your developer.\r\nCloud-hosted Quick-start guide → (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xst/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk)\r\n\r\nhttps://pi.tiny.cloud/e/2202/jointiny-/dc7d5k/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\r\nhttps://pi.tiny.cloud/e/2202/jointiny/dc7d5n/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\r\nhttps://pi.tiny.cloud/e/2202/company-jointiny-/dc7d5r/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\r\nhttps://pi.tiny.cloud/e/2202/search-q-23tinymce/dc7d5v/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\r\nhttps://pi.tiny.cloud/e/2202/tinymce/dc7d5y/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\r\n\r\nThis email was sent to rick@mavrix.one\r\nUpdate your email preferences https://pi.tiny.cloud/emailPreference/epc/2202/GCJnM6uCa9lowWujzzOgjgKBTs4rqjHMIMbbbl-kBW4/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1924500100or unsubscribe https://pi.tiny.cloud/unsubscribe/u/2202/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1924500100\r\n\r\n© 2025 Tiny Technologies | All rights reserved\r\nwww.tiny.cloud | View our privacy policy\r\nhttps://pi.tiny.cloud/e/2202/legal-privacy/dc7d62/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\r\n2100 Geng Road, Palo Alto, CA 94303 USA',1,0,0,0,0,0,'2025-12-03 13:00:41','2025-12-04 14:05:25','2025-12-04 14:05:25','2025-12-09 13:50:51',NULL,NULL,NULL),
(106,4,'<1976873432.64059005.1764788547535@abmktmail-trigger1i.marketo.org>',NULL,NULL,'[Onboarding] Lucid Training Labs','email@e.lucid.co','Lucid','<!doctype html>\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\">\r\n<head> \r\n<meta http-equiv=\"Content-Type\" content=\"text/html charset=UTF-8\"> \r\n<meta name=\"viewport\" content=\"width=device-width\"> \r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"> \r\n<meta name=\"color-scheme\" content=\"light dark\"> \r\n<meta name=\"supported-color-schemes\" content=\"light dark\"> \r\n<title>[Onboarding] Lucid Training Labs</title> \r\n<!--[if mso]>\r\n        <style>\r\n        * {\r\n        font-family: sans-serif!important;\r\n        }\r\n        </style>\r\n        <![endif]--> \r\n<style>\r\n        \r\nhtml,\r\nbody {\r\n    margin: 0 auto !important;\r\n    padding: 0 !important;\r\n    height: 100% !important;\r\n    width: 100% !important;\r\n}\r\n\r\n* {\r\n    -ms-text-size-adjust: 100%;\r\n    -webkit-text-size-adjust: 100%;\r\n}\r\n\r\ndiv[style*=\"margin: 16px 0\"] {\r\n    margin: 0 !important;\r\n}\r\n\r\ntable,\r\ntd {\r\n    mso-table-lspace: 0pt !important;\r\n    mso-table-rspace: 0pt !important;\r\n}\r\n\r\ntable {\r\n    border-spacing: 0 !important;\r\n    border-collapse: collapse !important;\r\n    table-layout: fixed !important;\r\n    margin: 0 auto !important;\r\n}\r\n\r\ntd {\r\n    font-family: Arial,Helvetica,Verdana,sans-serif !important;\r\n    font-size: 20px !important;\r\n    line-height: 28px !important;\r\n    color: #282c33 !important;\r\n    mso-height-rule: exactly !important;\r\n}\r\n\r\n.header {\r\n    font-size: 48px !important;\r\n    line-height: 52px !important;\r\n    font-weight: bold !important;\r\n    text-align: left !important;\r\n    background-color: #FFDDA6 !important;\r\n}\r\n      \r\n.subheader {\r\n	font-weight: bold !important;\r\n}\r\n\r\n.text {\r\n    background-color: #FFDDA6 !important;\r\n    color: #282C33 !important;\r\n    font-size: 24px !important;\r\n    line-height: 36px !important;\r\n}\r\n      \r\n.text2 {\r\n    background-color: #FFFFFF !important;\r\n    color: #282C33 !important;\r\n    font-size: 24px !important;\r\n    line-height: 36px !important;\r\n}\r\n      \r\n.text3 {\r\n    background-color: #FFFFFF !important;\r\n    color: #282C33 !important;\r\n    font-size: 24px !important;\r\n    line-height: 36px !important;\r\n}\r\n\r\n.link {\r\n    font-weight: bold !important;\r\n    font-size: 20px !important;\r\n    line-height: 28px !important;\r\n    text-decoration: none !important;\r\n    color: #282C33 !important;\r\n}\r\n\r\n.link:hover {\r\n    color: #CC4E00 !important;\r\n}\r\n\r\n.link2 {\r\n    font-weight: bold !important;\r\n    color: #282C33 !important;\r\n    text-decoration: underline !important;\r\n}\r\n\r\n.link2:hover {\r\n    color: #F96B13 !important;\r\n}\r\n      \r\n.left-image {\r\n	background-color: #FFF3D9 !important;\r\n}\r\n      \r\n.subheader {\r\n	background-color: #FFF3D9 !important;\r\n}\r\n      \r\n.course-text {\r\n	background-color: #FFF3D9 !important;\r\n}\r\n   \r\n.button1 {\r\n    background: #282C33 !important;\r\n    border: 1px solid #282C33 !important;\r\n    text-decoration: none !important;\r\n    color: #ffffff !important;\r\n    border-radius: 4px !important;\r\n    display:inline-block !important;\r\n    mso-padding-alt:0 !important;\r\n    font-size: 18px !important;\r\n    padding: 10px 20px !important;\r\n}\r\n\r\n.button-pad1 {\r\n    vertical-align: top !important;\r\n    background-color: #FFF3D9 !important;\r\n    font-weight: bold !important;\r\n    width: 280px !important;\r\n    max-width: 280px !important;\r\n}\r\n\r\n.button1:hover {\r\n  background-color: #F96B13 !important;\r\n  border: 1px solid #F96B13 !important;\r\n  color: #FFFFFF !important;\r\n  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0) !important;\r\n}\r\n      \r\n.button2 {\r\n    background: #F96B13 !important;\r\n    border: 1px solid #F96B13 !important;\r\n    text-decoration: none !important;\r\n    color: #ffffff !important;\r\n    border-radius: 4px !important;\r\n    display:inline-block !important;\r\n    mso-padding-alt:0 !important;\r\n    font-size: 18px !important;\r\n    padding: 10px 20px !important;\r\n}\r\n\r\n.button-pad2 {\r\n    vertical-align: top !important;\r\n    background-color: #FFFFFF !important;\r\n    font-weight: bold !important;\r\n    width: 280px !important;\r\n    max-width: 280px !important;\r\n}\r\n\r\n.button2:hover {\r\n  background-color: #5D646F !important;\r\n  border: 1px solid #5D646F !important;\r\n  color: #FFFFFF !important;\r\n  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0) !important;\r\n}\r\n      \r\n.footer {\r\n    font-size: 12px !important;\r\n    line-height: 18px !important;\r\n}\r\n        \r\n@media (prefers-color-scheme: dark ) {\r\n\r\n.deep-drk-bkgrd {\r\n    background-color: #23272c !important;\r\n}\r\n\r\n.drk-bkgrd { \r\n    background-color: #282C33 !important; \r\n}\r\n\r\n.hero-bkgrd { \r\n    background-color: #FFDDA6 !important; \r\n}\r\n\r\ntd {\r\n    color: #ffffff !important;\r\n}    \r\n\r\n.header {\r\n    color: #282C33 !important; \r\n}\r\n    \r\n.text { \r\n    background-color: #FFDDA6 !important; \r\n}\r\n \r\n.text2, .text3, .col, .left-col, .left-image, .subheader, .course-text {\r\n	color: #FFFFFF !important;\r\n    background-color: #282C33 !important;\r\n}\r\n\r\n.link { \r\n    color: #F96B13 !important; \r\n}\r\n\r\n.link2:hover {\r\n    color: #F96B13 !important;\r\n}\r\n\r\n.link2 {\r\n    color: #282C33 !important;\r\n}\r\n    \r\n.button1 {\r\n    background: #f2f2f2 !important;\r\n    border: 1px solid #282C33 !important;\r\n    text-decoration: none !important;\r\n    color: #282C33 !important;\r\n    border-radius: 4px !important;\r\n    display: inline-block !important;\r\n    mso-padding-alt: 0 !important;\r\n    font-size: 20px !important;\r\n}\r\n\r\n.button-pad1, .button-pad2 {\r\n    vertical-align: top !important;\r\n    background-color: #282C33 !important;\r\n}\r\n\r\n.button1:hover {\r\n    background: #CED4DB !important;\r\n    border: 1px solid #CED4DB !important;\r\n    color: #000000 !important;\r\n}\r\n\r\n.footer-link {\r\n    color: #ffffff !important; \r\n}\r\n\r\n    .ftr-logo-dark { display:block !important; width: 80px !important; overflow: visible !important; float: none !important; max-height:inherit !important; max-width:80px !important; line-height: auto !important; margin-top:0px !important; visibility:inherit !important; }\r\n\r\n    .ftr-logo-light { display:none !important; width: 0px !important; max-width: 0px !important;}\r\n}\r\n\r\ntable table table {\r\n    table-layout: auto;\r\n}\r\n\r\nimg {\r\n    -ms-interpolation-mode: bicubic;\r\n}\r\n\r\n*[x-apple-data-detectors] {\r\n    color: inherit !important;\r\n    text-decoration: none !important;\r\n}\r\n\r\n.x-gmail-data-detectors,\r\n.x-gmail-data-detectors *,\r\n.aBn {\r\n    border-bottom: 0 !important;\r\n    cursor: default !important;\r\n}\r\n\r\n\r\n</style> \r\n<!--[if gte mso 9]>\r\n    <xml>\r\n    <o:OfficeDocumentSettings>\r\n    <o:AllowPNG/>\r\n    <o:PixelsPerInch>96</o:PixelsPerInch>\r\n    </o:OfficeDocumentSettings>\r\n    </xml>\r\n<![endif]--> \r\n<style>\r\n\r\n@media only screen and (max-width: 660px) {\r\n\r\n.logo {\r\n    padding-top: 15px !important;\r\n    padding-bottom: 0px !important;\r\n    padding-left: 15px !important;\r\n}\r\n\r\n.logo-img {\r\n    max-width: 60px !important;\r\n    padding-left: 15px !important;\r\n}\r\n\r\n.logo-big {\r\n     padding-top: 20px !important;\r\n     padding-bottom: 30px !important;\r\n     padding-left: 0px !important;\r\n     padding-right:0px !important;\r\n}\r\n\r\n.logo-big-img {\r\n    max-width: 200px !important;\r\n}\r\n\r\n.header {\r\n    font-size: 30px !important;\r\n    line-height: 1.2 !important;\r\n    padding: 0px 20px 20px 20px !important;\r\n}\r\n\r\n.link {\r\n    font-size: 18px !important;\r\n    line-height: 24px !important;\r\n    padding: 30px 0px 30px 0px !important;\r\n    max-width: 680px !important;\r\n}\r\n    \r\n.subheader {\r\n    font-size: 18px !important;\r\n    text-align: left !important;\r\n    line-height: 24px !important;\r\n    padding: 0px 20px 10px 20px !important;\r\n    max-width: 680px !important;\r\n}\r\n    \r\n.text {\r\n    font-size: 18px !important;\r\n    text-align: left !important;\r\n    line-height: 24px !important;\r\n    padding: 0px 20px 20px 20px !important;\r\n    max-width: 680px !important;\r\n}\r\n    \r\n.text2 {\r\n    font-size: 18px !important;\r\n    text-align: left !important;\r\n    line-height: 24px !important;\r\n    padding: 30px 20px 10px 20px !important;\r\n    max-width: 680px !important;\r\n}\r\n    \r\n.text3 {\r\n    font-size: 18px !important;\r\n    text-align: left !important;\r\n    line-height: 24px !important;\r\n    padding: 30px 20px 0px 20px !important;\r\n    max-width: 680px !important;\r\n}\r\n    \r\n.course-text {\r\n    font-size: 18px !important;\r\n    text-align: left !important;\r\n    line-height: 24px !important;\r\n    padding: 0px 20px 10px 20px !important;\r\n    max-width: 680px !important;\r\n}\r\n    \r\n .col {\r\n    padding: 20px 20px 0px 20px !important;\r\n    max-width: 680px !important;\r\n    display: block !important;\r\n    width: 100% !important;\r\n    max-width: 100% !important;\r\n    box-sizing: border-box;\r\n}\r\n    \r\n .left-col {\r\n    padding: 0px 20px 0px 20px !important;\r\n    max-width: 680px !important;\r\n    display: block !important;\r\n    width: 100% !important;\r\n    max-width: 100% !important;\r\n    box-sizing: border-box;\r\n}\r\n    \r\n.left-image {\r\n    padding: 20px 20px 10px 20px !important;\r\n    display: block !important;\r\n    width: 100% !important;\r\n    max-width: 100% !important;\r\n    box-sizing: border-box;  \r\n    text-align: center !important;\r\n}\r\n    \r\n.right-text {\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n    font-size: 16px !important;\r\n    line-height: 24px !important;\r\n    padding-bottom: 0px !important;\r\n    padding-top: 0px !important;\r\n    display: block !important;\r\n    width: 100% !important;\r\n    max-width: 100% !important;\r\n    box-sizing: border-box;\r\n}\r\n    \r\n.button1 {\r\n    line-height: 24px !important;\r\n    padding-top: 10px !important;\r\n    padding-bottom: 10px !important;\r\n    font-size: 16px !important;\r\n    text-align: center !important;\r\n    display: block !important;\r\n}\r\n\r\n.button-pad1 {\r\n	padding: 10px 60px 20px 60px !important;\r\n    display: block !important;\r\n    width: 100% !important;\r\n    max-width: 100% !important;\r\n    -moz-box-sizing: border-box;\r\n    -webkit-box-sizing: border-box;\r\n    box-sizing: border-box;\r\n}\r\n    \r\n.button2 {\r\n    line-height: 24px !important;\r\n    padding-top: 10px !important;\r\n    padding-bottom: 10px !important;\r\n    font-size: 16px !important;\r\n    text-align: center !important;\r\n    display: block !important;\r\n}\r\n\r\n.button-pad2 {\r\n	padding: 20px 40px 40px 40px !important;\r\n    display: block !important;\r\n    width: 100% !important;\r\n    max-width: 100% !important;\r\n    -moz-box-sizing: border-box;\r\n    -webkit-box-sizing: border-box;\r\n    box-sizing: border-box;\r\n}\r\n\r\n.footer {\r\n    font-size: 12px !important;\r\n    padding-left: 15px !important;\r\n    padding-right: 15px !important;\r\n    padding-top: 30px !important;\r\n    max-width: 660px !important;\r\n}\r\n}\r\n    </style> \r\n</head> \r\n<body width=\"100%\" style=\"Margin: 0; background-color: #FAFBFC;\" class=\"deep-drk-bkgrd\"> \r\n<div style=\"display:none;font-size:1px;color:#333333;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;\">\r\n Free, self-paced courses to help you get started ‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp; \r\n</div> \r\n<div lang=\"en\"> \r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" height=\"100%\" bgcolor=\"#FAFBFC\" style=\"border-collapse:collapse;\" class=\"deep-drk-bkgrd\"> \r\n<tbody> \r\n<tr> \r\n<td valign=\"top\"> \r\n<center style=\"width: 100%;\"> \r\n<div style=\"max-width: 660px;\"> \r\n<!--[if mso]>\r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"660\" style=\"max-width: 660px;min-width: 660px;\" align=\"center\">\r\n<tr>\r\n<td width=\"380\">\r\n<![endif]--> \r\n<div style=\"font-size: 6px; line-height: 1; background-color: #282C33;\">\r\n&nbsp;\r\n</div>\r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" align=\"center\" style=\"max-width: 660px; background-color: #ffffff;\" class=\"drk-bkgrd\"> \r\n<tbody> \r\n<tr>  \r\n</tr> \r\n<tr style=\"background-color: #FFDDA6;\" class=\"hero-bkgrd\">\r\n<td align=\"left\" valign=\"middle\" width=\"80\" height=\"100%\" style=\"font-size:0; padding: 35px 24px 0px 60px;\" class=\"logo\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfylQ9I4TvtiWflSAw9E1k8HvFDyz6BoIajYdF9KLgA4KPeITRKmaT4Fc_zvexM1hYm-4=\"\r\n><img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Marketo-Images/Lucid-Primary-Logo-CG100-onClear-np-RGB@2x.png\" width=\"80\" alt=\"Lucid\" style=\"border: 0;width: 80px; max-width: 80px; vertical-align:middle;\" class=\"logo-img\">\r\n</a>\r\n</td>\r\n</tr> \r\n<tr style=\"background-color: #FFDDA6;\" class=\"hero-bkgrd\">\r\n<td align=\"center\" valign=\"middle\" width=\"288\" height=\"100%\" style=\"font-size:0; padding: 35px 60px 0px 60px;\" class=\"logo-big\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfylZOKSBo0ZsjmdSkM1IpLAVZU5SJK4VmQpClfPxSqBXi-f5e5ynD0kba8Sa7GUjsuo0=\"\r\n><img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Lucidchart-Primary3D-Logo-Default-TypeCG100-onClear-wp-RGB@2x2.png\" width=\"288\" alt=\"Lucidchart\" style=\"border: 0;width: 100%; max-width: 288px; vertical-align:middle;\" class=\"logo-big-img\"> \r\n</a>\r\n</td>\r\n</tr> \r\n<tr style=\"background-color: #FFDDA6;\" class=\"hero-bkgrd\"> \r\n</tr>\r\n<tr> \r\n<td style=\"padding: 30px 60px 20px 60px;\" class=\"header\">Become a Lucidchart pro with your team </td> \r\n</tr> \r\n<tr> \r\n<td valign=\"top\" style=\"padding: 10px 60px 20px 60px;\" class=\"text\">Hey there—we wanted to encourage you to check out our <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfyvltA_k5vCdradSuvWJejcKpFSD5vOsQ4Nb8jT8o5gwrCM4guvLHw_a5Tuv9WOy-xCE=\" class=\"link2\"\r\n>Lucid Training Labs</a>. They’re free, self-paced courses covering a wide range of topics that will help you and your team dive deeper into Lucidchart. </td> \r\n</tr> \r\n<tr> \r\n<td align=\"center\" valign=\"middle\" style=\"padding: 0px 0px;\" class=\"img\"> <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfyvltA_k5vCdradSuvWJejcKpFSD5vOsQ4Nb8jT8o5gwrCM4guvLHw_a5Tuv9WOy-xCE=\"\r\n><img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Self-Serve-Onboarding/Lucidchart/New/training-labs_Hero.png\" width=\"680\" alt=\"Lucid Training Labs\" style=\"border: 0;width: 100%;max-width: 680px; vertical-align:middle;\"></a> </td> \r\n</tr> \r\n<tr> \r\n<td valign=\"top\" style=\"padding: 40px 60px 30px 60px;\" class=\"text2\">Here are a few courses we think you’ll like: </td> \r\n</tr> \r\n<tr> \r\n<td bgcolor=\"#FFFFFF\" style=\"padding: 0px 40px 20px 40px\" class=\"col\"> \r\n<table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\"> \r\n<tbody>\r\n<tr style=\"border: 2px solid #282C33; background-color: #FFF3D9;\"> \r\n<td style=\"padding: 0px 0px 0px 0px;\" class=\"left-col\"> \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> \r\n<tbody>\r\n<tr> \r\n<td align=\"center\" valign=\"middle\" style=\"padding: 0px 0px 0px 0px; width: 120px;\" class=\"left-image\"> <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfynklckYQ6pXJOHPEfa_lqul_k4rUsTrDmIRbestIEHgq4eB201YYSCnRRC52TBbm9lI=\"\r\n> <img class=\"fadeimg\" src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Self-Serve-Onboarding/Lucidchart/New/Welcome_LC_Course.png\" alt=\"Welcome to Lucidchart\" border=\"0\" width=\"100\"> </a> </td> \r\n</tr> \r\n</tbody>\r\n</table> </td> \r\n<td style=\"padding: 0px 0px 0px 0px; width: 380px;\" class=\"right-text\"> \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> \r\n<tbody>\r\n<tr> \r\n<td style=\"padding: 10px 0px 0px 0px;\" class=\"subheader\"> <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfynklckYQ6pXJOHPEfa_lqul_k4rUsTrDmIRbestIEHgq4eB201YYSCnRRC52TBbm9lI=\" class=\"link\"\r\n>Welcome to Lucidchart </a> </td> \r\n</tr> \r\n<tr> \r\n<td style=\"padding: 10px 0px 0px 0px; font-size: 18px;\" class=\"course-text\"> Kickstart your diagramming journey. </td> \r\n</tr> \r\n<tr> \r\n<td style=\"padding: 10px 0px 0px 0px; font-size: 18px; font-weight: bold;\" class=\"course-text\"> 25 minutes </td> \r\n</tr> \r\n<tr> \r\n<td align=\"left\" style=\"padding: 10px 0px 17px 0px;\" class=\"button-pad1\"> <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfynklckYQ6pXJOHPEfa_lqul_k4rUsTrDmIRbestIEHgq4eB201YYSCnRRC52TBbm9lI=\" class=\"button1\"\r\n> \r\n<!--[if mso]><i style=\"letter-spacing: 25px;mso-font-width:-100%;mso-text-raise:30pt\">&nbsp;</i><![endif]--> <span style=\"mso-text-raise:15pt; text-decoration: underline;\">Register</span> \r\n<!--[if mso]><i style=\"letter-spacing: 25px;mso-font-width:-100%\">&nbsp;</i><![endif]--> </a> </td> \r\n</tr> \r\n</tbody>\r\n</table> </td> \r\n</tr> \r\n</tbody>\r\n</table> </td> \r\n</tr> \r\n<tr> \r\n<td bgcolor=\"#FFFFFF\" style=\"padding: 0px 40px 20px 40px\" class=\"col\"> \r\n<table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\"> \r\n<tbody>\r\n<tr style=\"border: 2px solid #282C33; background-color: #FFF3D9;\"> \r\n<td style=\"padding: 0px 0px 0px 0px;\" class=\"left-col\"> \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> \r\n<tbody>\r\n<tr> \r\n<td align=\"center\" valign=\"middle\" style=\"padding: 0px 0px 0px 0px; width: 120px;\" class=\"left-image\"> <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfyc8KXB5NDHu4LT6HZxF2_l58FIp5JP5_nMmtVX_zf1pUF8-vl1SgSRUUkjRLaEnpIvc=\"\r\n> <img class=\"fadeimg\" src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Self-Serve-Onboarding/Lucidchart/New/Basic_Diagrams_Course.png\" alt=\"Create basic diagrams\" border=\"0\" width=\"100\"> </a> </td> \r\n</tr> \r\n</tbody>\r\n</table> </td> \r\n<td style=\"padding: 0px 0px 0px 0px; width: 380px;\" class=\"right-text\"> \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> \r\n<tbody>\r\n<tr> \r\n<td style=\"padding: 10px 0px 0px 0px;\" class=\"subheader\"> <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfyc8KXB5NDHu4LT6HZxF2_l58FIp5JP5_nMmtVX_zf1pUF8-vl1SgSRUUkjRLaEnpIvc=\" class=\"link\"\r\n>Create basic diagrams</a> </td> \r\n</tr> \r\n<tr> \r\n<td style=\"padding: 10px 0px 0px 0px; font-size: 18px;\" class=\"course-text\"> Create and customize your diagrams to drive team alignment. </td> \r\n</tr> \r\n<tr> \r\n<td style=\"padding: 10px 0px 0px 0px; font-size: 18px; font-weight: bold;\" class=\"course-text\"> 50 minutes </td> \r\n</tr> \r\n<tr> \r\n<td align=\"left\" style=\"padding: 10px 0px 17px 0px;\" class=\"button-pad1\"> <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfyc8KXB5NDHu4LT6HZxF2_l58FIp5JP5_nMmtVX_zf1pUF8-vl1SgSRUUkjRLaEnpIvc=\" class=\"button1\"\r\n> \r\n<!--[if mso]><i style=\"letter-spacing: 25px;mso-font-width:-100%;mso-text-raise:30pt\">&nbsp;</i><![endif]--> <span style=\"mso-text-raise:15pt; text-decoration: underline;\">Register</span> \r\n<!--[if mso]><i style=\"letter-spacing: 25px;mso-font-width:-100%\">&nbsp;</i><![endif]--> </a> </td> \r\n</tr> \r\n</tbody>\r\n</table> </td> \r\n</tr> \r\n</tbody>\r\n</table> </td> \r\n</tr> \r\n<tr> \r\n<td bgcolor=\"#FFFFFF\" style=\"padding: 0px 40px 20px 40px\" class=\"col\"> \r\n<table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\"> \r\n<tbody>\r\n<tr style=\"border: 2px solid #282C33; background-color: #FFF3D9;\"> \r\n<td style=\"padding: 0px 0px 0px 0px;\" class=\"left-col\"> \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> \r\n<tbody>\r\n<tr> \r\n<td align=\"center\" valign=\"middle\" style=\"padding: 0px 0px 0px 0px; width: 120px;\" class=\"left-image\"> <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfyr4WBwsqT0jjc344xHtg2a2g8jSiV7S7q3FNpau588UryLecQdKEi7JcTAJePuIRBzk=\"\r\n> <img class=\"fadeimg\" src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Self-Serve-Onboarding/Lucidchart/New/Team_Collab_Course.png\" alt=\"Enhance team collaboration\" border=\"0\" width=\"100\"> </a> </td> \r\n</tr> \r\n</tbody>\r\n</table> </td> \r\n<td style=\"padding: 0px 0px 0px 0px; width: 380px;\" class=\"right-text\"> \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> \r\n<tbody>\r\n<tr> \r\n<td style=\"padding: 10px 0px 0px 0px;\" class=\"subheader\"> <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfyr4WBwsqT0jjc344xHtg2a2g8jSiV7S7q3FNpau588UryLecQdKEi7JcTAJePuIRBzk=\" class=\"link\"\r\n>Enhance team collaboration</a> </td> \r\n</tr> \r\n<tr> \r\n<td style=\"padding: 10px 0px 0px 0px; font-size: 18px;\" class=\"course-text\"> Create a shared visual language to enhance clarity. </td> \r\n</tr> \r\n<tr> \r\n<td style=\"padding: 10px 0px 0px 0px; font-size: 18px; font-weight: bold;\" class=\"course-text\"> 36 minutes </td> \r\n</tr> \r\n<tr> \r\n<td align=\"left\" style=\"padding: 10px 0px 17px 0px;\" class=\"button-pad1\"> <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfyr4WBwsqT0jjc344xHtg2a2g8jSiV7S7q3FNpau588UryLecQdKEi7JcTAJePuIRBzk=\" class=\"button1\"\r\n> \r\n<!--[if mso]><i style=\"letter-spacing: 25px;mso-font-width:-100%;mso-text-raise:30pt\">&nbsp;</i><![endif]--> <span style=\"mso-text-raise:15pt; text-decoration: underline;\">Register</span> \r\n<!--[if mso]><i style=\"letter-spacing: 25px;mso-font-width:-100%\">&nbsp;</i><![endif]--> </a> </td> \r\n</tr> \r\n</tbody>\r\n</table> </td> \r\n</tr> \r\n</tbody>\r\n</table> </td> \r\n</tr> \r\n<tr> \r\n<td valign=\"top\" style=\"padding: 20px 60px 20px 60px;\" class=\"text3\">Explore in-product resources. </td> \r\n</tr> \r\n<tr> \r\n<td align=\"left\" style=\"padding: 0px 0px 40px 60px;\" class=\"button-pad2\"> <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfysbosyarGcTXJql7ozwynFvyATVRPitCqOlK_kRjYC9IPnEImZpEg8Jrz0aFIhaDMtg=\" class=\"button2\"\r\n> \r\n<!--[if mso]><i style=\"letter-spacing: 25px;mso-font-width:-100%;mso-text-raise:30pt\">&nbsp;</i><![endif]--> <span style=\"mso-text-raise:15pt; text-decoration: underline;\">Jump into Lucidchart</span> \r\n<!--[if mso]><i style=\"letter-spacing: 25px;mso-font-width:-100%\">&nbsp;</i><![endif]--> </a> </td> \r\n</tr> \r\n<tr style=\"background-color: #FAFBFC;\" class=\"deep-drk-bkgrd\">\r\n<td align=\"left\" valign=\"middle\" width=\"80\" height=\"100%\" style=\"font-size:0; padding: 35px 24px 0px 60px;\" class=\"logo\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfylQ9I4TvtiWflSAw9E1k8HvFDyz6BoIajYdF9KLgA4KPeITRKmaT4Fc_zvexM1hYm-4=\"\r\n><img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Marketo-Images/Lucid-Primary-Logo-CG100-onClear-np-RGB@2x.png\" width=\"80\" alt=\"Lucid\" style=\"border: 0;width: 80px; max-width: 80px; vertical-align:middle;\" class=\"ftr-logo-light\">\r\n<img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Marketo-Images/Lucid-Primary-Logo-White-onClear-np-RGB@2x.png\" width=\"80\" alt=\"Lucid\" style=\"vertical-align:middle;display:none; overflow:hidden; float:left; width:0px; max-height:0px; max-width:0px; line-height:0px; visibility:hidden;\r\n\" class=\"ftr-logo-dark\">\r\n</a>\r\n</td>\r\n</tr> \r\n<tr style=\"background-color: #FAFBFC;\" class=\"deep-drk-bkgrd\"> \r\n<td style=\"padding:30px 60px 40px 60px; width: 400;\" class=\"footer\"><a style=\"color:#282C33; text-decoration: underline;\" href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfydeui0xsH9SjFbZ8Hvip7UzpyVQe1rtI6zjiiZ_dSD_SnPt9vcdaZ4i4uQ47-I500lA=\" class=\"footer-link\"\r\n>Unsubscribe</a><br><br> \r\nLucid Software Inc.<br> \r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfyZL_EfWN2Sbmlv57sPGWYwllodsb3uYavHemxfn1ewC_1UqxXT9n_JitKMJueIgPa9M=\" target=\"_blank\" style=\"text-decoration: none; color: #282c33; cursor: default;\" class=\"footer-link\"\r\n>10355 South Jordan Gateway, Suite 300<br> \r\nSouth Jordan, UT 84095 USA<br></a><br><br>\r\nBy continuing to use Lucid\'s products, you agree to our <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfyjU3fKzRbwF4ZWPWPTK1Ovk8LFYCbZjDG_SmYOY0fdJKjZWnIyRRE_Xhmki3PJDN9gA=\" style=\"color:#282c33; text-decoration: underline\" class=\"footer-link\"\r\n>Terms of Service</a> and acknowledge our <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfykxD5tUOMGb_lRJgGAgL7vGAnvJa59pM-iGfP7lWVKKvpccZsFFlqNdehKSRvQzeY7w=\" style=\"color:#282c33; text-decoration: underline\" class=\"footer-link\"\r\n>Privacy Policy</a>.\r\n   \r\n</td> \r\n</tr> \r\n</tbody> \r\n</table> \r\n<!--[if (gte mso 9)|(IE)]>\r\n</td>\r\n</tr>\r\n</table>\r\n<![endif]--> \r\n</div> \r\n</center> </td> \r\n</tr> \r\n</tbody> \r\n</table> \r\n</div>  \r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfyh6wmeG8tQzuShqC6V9nZ6c8R9CeLgyBtO0MmWP72lE6n6gMICNuNfAOyTEFo9rDsNQ=\"\r\n></a>\r\n<img src=\"https://email.lucid.co/trk?t=1&mid=NzA0LUJFTC0zNjYAAAGehJDfyv97z4UpQfUKIIMJXILMBhsEkGIUcFD3sWtbzla5RSMr69v5KVpjL_RaSu-W5GbomotfBcFEmWcqICcQB4xnpG64zYO6S0corhGqvEf33WthoULTPl0\" width=\"1\" height=\"1\" style=\"display:none !important;\" alt=\"\" />\r\n\r\n<!--This is a comment -->\r\n</body>\r\n</html>','\r\n\r\n.',1,0,0,0,0,0,'2025-12-03 19:02:27','2025-12-04 14:05:25','2025-12-04 14:05:25','2025-12-09 13:50:50',NULL,NULL,NULL),
(107,4,'<CAGOCFXiG6-3cqfLZVaD29FYFbmXdRy-oDviCJXuwLW6PBAejww@mail.gmail.com>',NULL,NULL,'Re: Lithium Battery Company @ 3900 W Coachman HVAC','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div><div class=\"gmail-w-full gmail-my-[1px]\"><div class=\"gmail-py-[3px]\"><span class=\"gmail-\" style=\"word-break:break-word\">Steve, \r\n\r\nThank you for your detailed email and for proactively seeking clarification on the HVAC requirements for our new lithium battery pack assembly facility. Your summary of the situation is accurate, and we appreciate the opportunity to align on the design basis before proceeding.\r\n\r\n</span></div></div><div class=\"gmail-w-full gmail-my-[1px]\"><div class=\"gmail-py-[3px]\"><span class=\"gmail-\" style=\"word-break:break-word\">After an internal review and consideration of our specific process needs, we can confirm that our intent is for a </span><span class=\"gmail-font-[600]\" style=\"word-break:break-word\">comfort-conditioned industrial space with specific humidity control</span><span class=\"gmail-\" style=\"word-break:break-word\">, rather than a full ISO-8 cleanroom environment. The mention of &quot;ISO-8&quot; in the kickoff meeting was intended to convey a general need for a clean and controlled environment but was not meant to be a formal classification requirement.\r\n\r\n</span></div></div><div class=\"gmail-w-full gmail-my-[1px]\"><div class=\"gmail-py-[3px]\"><span class=\"gmail-\" style=\"word-break:break-word\">To directly address your questions:\r\n\r\n</span></div></div><div class=\"gmail-w-full gmail-my-[1px]\"><div class=\"gmail-flex gmail-flex-row gmail-ps-[2px]\"><span class=\"gmail-select-none gmail-flex gmail-flex-row gmail-justify-center gmail-items-center gmail-h-[30px] gmail-w-[24px] gmail-me-[2px] gmail-whitespace-nowrap gmail-flex-shrink-0\"><span class=\"gmail-Helvetica gmail-Neue gmail-font-normal\">1.</span></span><span class=\"gmail-flex-1 gmail-py-[3px] gmail-font-normal gmail-text-[16px] gmail-text-[var(--text-primary)]\"><span class=\"gmail-font-[600]\" style=\"word-break:break-word\">Is ISO-8 a firm requirement?</span><span class=\"gmail-\" style=\"word-break:break-word\"> No, it is not. An ISO-8 classification is not necessary for our battery pack assembly process. We believe that an </span><span class=\"gmail-font-[600]\" style=\"word-break:break-word\">ISO-9 classification (or even a well-maintained, unclassified space)</span><span class=\"gmail-\" style=\"word-break:break-word\"> with good housekeeping and filtration practices will be more than sufficient for our needs. Our primary concern is controlling airborne particulates that could affect final product quality, not meeting a specific cleanroom standard.\r\n\r\n</span></span></div></div><div class=\"gmail-w-full gmail-my-[1px]\"><div class=\"gmail-flex gmail-flex-row gmail-ps-[2px]\"><span class=\"gmail-select-none gmail-flex gmail-flex-row gmail-justify-center gmail-items-center gmail-h-[30px] gmail-w-[24px] gmail-me-[2px] gmail-whitespace-nowrap gmail-flex-shrink-0\"><span class=\"gmail-Helvetica gmail-Neue gmail-font-normal\">2.</span></span><span class=\"gmail-flex-1 gmail-py-[3px] gmail-font-normal gmail-text-[16px] gmail-text-[var(--text-primary)]\"><span class=\"gmail-font-[600]\" style=\"word-break:break-word\">Is humidity &lt;50% mandatory?</span><span class=\"gmail-\" style=\"word-break:break-word\"> Yes, this is a </span><span class=\"gmail-font-[600]\" style=\"word-break:break-word\">mandatory requirement</span><span class=\"gmail-\" style=\"word-break:break-word\"> for our equipment and process. Maintaining a relative humidity of less than 50% is critical to prevent moisture absorption and ensure the quality and safety of our battery packs. However, we do not require the extremely low dew points (-35°C or lower) associated with lithium-ion </span><span class=\"gmail-italic\" style=\"word-break:break-word\">cell manufacturing</span><span class=\"gmail-\" style=\"word-break:break-word\">. Our process involves the assembly of pre-sealed cells, which is a far less moisture-sensitive operation.\r\n\r\n</span></span></div></div><div class=\"gmail-w-full gmail-my-[1px]\"><div class=\"gmail-flex gmail-flex-row gmail-ps-[2px]\"><span class=\"gmail-select-none gmail-flex gmail-flex-row gmail-justify-center gmail-items-center gmail-h-[30px] gmail-w-[24px] gmail-me-[2px] gmail-whitespace-nowrap gmail-flex-shrink-0\"><span class=\"gmail-Helvetica gmail-Neue gmail-font-normal\">3.</span></span><span class=\"gmail-flex-1 gmail-py-[3px] gmail-font-normal gmail-text-[16px] gmail-text-[var(--text-primary)]\"><span class=\"gmail-font-[600]\" style=\"word-break:break-word\">Will future products require tighter control?</span><span class=\"gmail-\" style=\"word-break:break-word\"> We do not anticipate any future products or process changes that would require significantly lower humidity or higher filtration levels. Our long-term forecast is based on the assembly of similar battery pack architectures.\r\n\r\n</span></span></div></div><div class=\"gmail-w-full gmail-my-[1px]\"><div class=\"gmail-flex gmail-flex-row gmail-ps-[2px]\"><span class=\"gmail-select-none gmail-flex gmail-flex-row gmail-justify-center gmail-items-center gmail-h-[30px] gmail-w-[24px] gmail-me-[2px] gmail-whitespace-nowrap gmail-flex-shrink-0\"><span class=\"gmail-Helvetica gmail-Neue gmail-font-normal\">4.</span></span><span class=\"gmail-flex-1 gmail-py-[3px] gmail-font-normal gmail-text-[16px] gmail-text-[var(--text-primary)]\"><span class=\"gmail-font-[600]\" style=\"word-break:break-word\">Is positive pressure required?</span><span class=\"gmail-\" style=\"word-break:break-word\"> No, positive pressure relative to adjacent spaces is </span><span class=\"gmail-font-[600]\" style=\"word-break:break-word\">not required</span><span class=\"gmail-\" style=\"word-break:break-word\">. A neutral or even slightly negative pressure environment would be acceptable, as long as the primary production space is well-sealed and the HVAC system can effectively maintain the required temperature and humidity levels.\r\n\r\n</span></span></div></div><div class=\"gmail-w-full gmail-my-[1px]\"><div class=\"gmail-py-[3px]\"><span class=\"gmail-\" style=\"word-break:break-word\">Based on this, we agree that the project scope should align with your description of a </span><span class=\"gmail-font-[600]\" style=\"word-break:break-word\">comfort-conditioned industrial space with robust dehumidification</span><span class=\"gmail-\" style=\"word-break:break-word\">, rather than a full cleanroom approach. This will allow us to achieve our operational goals without the unnecessary cost and complexity of an ISO-8 buildout.\r\n\r\n</span></div></div><div class=\"gmail-w-full gmail-my-[1px]\"><div class=\"gmail-py-[3px]\"><span class=\"gmail-\" style=\"word-break:break-word\">We are happy to schedule a brief follow-up meeting to confirm these details and answer any further questions you may have. Please let us know what time works best for your team.</span></div></div><div class=\"gmail-w-full gmail-my-[1px]\"><div class=\"gmail-py-[3px]\"><span class=\"gmail-\" style=\"word-break:break-word\">Thank you again for your diligence and partnership.</span></div></div></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Nov 25, 2025 at 3:51 PM Steve Barthlow &lt;<a href=\"mailto:Steve.Barthlow@lddblueline.com\">Steve.Barthlow@lddblueline.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"msg-2153113158076329948\">\r\n\r\n\r\n\r\n\r\n\r\n<div lang=\"EN-US\" style=\"overflow-wrap: break-word;\">\r\n<div class=\"m_-2153113158076329948WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Arial,sans-serif\">Nathan, Jordan, and Jarrett,<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Arial,sans-serif\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Arial,sans-serif\">Please see email below from Hahn Engineering regarding potential HVAC requirements at the 3900 Coachman building.<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Arial,sans-serif\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Arial,sans-serif\">Thanks,<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Arial,sans-serif\"><u></u> <u></u></span></p>\r\n<div>\r\n<table border=\"0\" cellpadding=\"0\" width=\"400\" style=\"width:300pt;background:white\">\r\n<tbody>\r\n<tr>\r\n<td width=\"396\" style=\"width:297pt;padding:0in 0in 4.5pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:Arial,sans-serif;color:rgb(34,86,161);border:1pt none windowtext;padding:0in\">Steven D. Barthlow, AIA, NCARB</span></b><span style=\"font-size:10pt;font-family:Calibri,sans-serif;color:rgb(36,36,36)\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:105%\"><span style=\"font-size:10pt;line-height:105%;font-family:Arial,sans-serif;color:rgb(135,135,135);border:1pt none windowtext;padding:0in\">principal | vice president | regional director</span><span style=\"font-size:10pt;line-height:105%;font-family:Arial,sans-serif;color:rgb(135,135,135)\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:1.65pt\">\r\n<td width=\"396\" style=\"width:297pt;border-right:none;border-bottom:none;border-left:none;border-top:1pt solid rgb(34,86,161);padding:0in;height:1.65pt\">\r\n<p class=\"MsoNormal\" style=\"line-height:6pt\"><span style=\"font-size:5pt;font-family:Calibri,sans-serif\"><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:24.9pt\">\r\n<td width=\"396\" style=\"width:297pt;padding:0in;height:24.9pt\">\r\n<p class=\"MsoNormal\" style=\"line-height:105%\"><b><span style=\"font-size:18pt;line-height:105%;font-family:&quot;Arial Black&quot;,sans-serif;color:rgb(191,13,62);background:white\">LDD</span></b><b><span style=\"font-size:18pt;line-height:105%;font-family:&quot;Arial Black&quot;,sans-serif;color:rgb(0,76,151);background:white\">Blueline</span></b><b><sup><span style=\"font-size:10pt;line-height:105%;font-family:Arial,sans-serif;color:black;background:white\">TM<u></u><u></u></span></sup></b></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:8.25pt\">\r\n<td width=\"396\" style=\"width:297pt;padding:0in;height:8.25pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10pt;font-family:&quot;Arial Black&quot;,sans-serif;color:rgb(89,89,89)\">Discover | Design | Deliver<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\">We&#39;re hiring! We&#39;re looking for a Project Manager and a Project Architect. Send your resume to\r\n<a href=\"mailto:careers@lddblueline.com\" target=\"_blank\">careers@lddblueline.com</a></span><span style=\"font-size:10pt;font-family:&quot;Arial Black&quot;,sans-serif;color:rgb(89,89,89)\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"396\" style=\"width:297pt;padding:0in\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:8pt;font-family:Arial,sans-serif;color:black\">306 East Oak Avenue, Tampa, FL 33602</span><span style=\"font-size:8pt;font-family:Arial,sans-serif\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"396\" valign=\"top\" style=\"width:297pt;padding:0in\">\r\n<p class=\"MsoNormal\" style=\"line-height:105%\"><u><span style=\"font-family:Arial,sans-serif;color:blue;border:1pt none windowtext;padding:0in\">Steve.Barthlow@LDDBlueline.com</span></u><span style=\"font-family:Arial,sans-serif;color:rgb(135,135,135)\">\r\n</span><span style=\"font-size:11pt;line-height:105%\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"396\" valign=\"top\" style=\"width:297pt;padding:0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\">AR 103560 | office 813.771.2378 | cell 404.245.0451<u></u><u></u></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Arial,sans-serif\"><u></u> <u></u></span></p>\r\n<div>\r\n<div style=\"border-right:none;border-bottom:none;border-left:none;border-top:1pt solid rgb(225,225,225);padding:3pt 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">From:</span></b><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"> Jeffrey Hahn &lt;<a href=\"mailto:jjhahn@hahneng.com\" target=\"_blank\">jjhahn@hahneng.com</a>&gt;\r\n<br>\r\n<b>Sent:</b> Tuesday, November 25, 2025 3:44 PM<br>\r\n<b>To:</b> Steve Barthlow &lt;<a href=\"mailto:Steve.Barthlow@lddblueline.com\" target=\"_blank\">Steve.Barthlow@lddblueline.com</a>&gt;; James Jacobik &lt;<a href=\"mailto:James.Jacobik@lddblueline.com\" target=\"_blank\">James.Jacobik@lddblueline.com</a>&gt;<br>\r\n<b>Cc:</b> Stephen Morris &lt;<a href=\"mailto:sjmorris@hahneng.com\" target=\"_blank\">sjmorris@hahneng.com</a>&gt;; William Augensen &lt;<a href=\"mailto:waugensen@hahneng.com\" target=\"_blank\">waugensen@hahneng.com</a>&gt;; Justin Erman &lt;<a href=\"mailto:jerman@hahneng.com\" target=\"_blank\">jerman@hahneng.com</a>&gt;<br>\r\n<b>Subject:</b> Lithium Battery Company @ 3900 W Coachman [25029-Email]<u></u><u></u></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\">Steve,<u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\">Over the past few days been reviewing the production space requirements and the information provided. We originally asked whether any specialized HVAC conditions—such as positive pressurization, controlled filtration, or humidity limits—were\r\n required for the production area or the building as a whole. The response we received at that time was that no positively pressurized spaces and no specific direction on cooling and humidity requirements.\r\n<u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\">Last week during the kickoff meeting it was mentioned that ISO-8 conditions for the production space, with a target of humidity below 50%, are desired. This represents a significantly higher level of HVAC sophistication than standard comfort\r\n cooling, as it introduces air-change-rate requirements, filtration requirements (HEPA or near-HEPA), positive or neutral pressure considerations, and much more precise humidity and dew-point control. These items directly affect airflow quantities, equipment\r\n selection, duct routing, ceiling/architectural details, and—importantly—electrical capacity.\r\n<u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\">Before we proceed with finalizing our basis of design, we want to confirm the actual intent of the owner and equipment team. Several indicators suggest that the production line may be low shedding and relatively enclosed, and they indicated\r\n that similar equipment in other facilities overseas often operates in minimally conditioned spaces. If the true requirement is to simply temper the space—cooling, dehumidifying to a comfortable level, and preventing condensation—then the system can be much\r\n simpler and far less costly. However, if the intent is to meet ISO-8 cleanliness, maintain &lt;50% RH, or anticipate future products that require tighter environmental control, then we need to design the space accordingly from the start to avoid rework or service\r\n interruptions later.<u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\">At this point, the HVAC project could fall into one of two very different scopes:<u></u><u></u></p>\r\n<ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n<li class=\"MsoNormal\">A full ISO-8 environmental cleanroom approach, with defined air changes per hour, filtration, and controlled humidity; or<u></u><u></u></li><li class=\"MsoNormal\">A comfort-conditioned industrial space, with no pressurization and only general cooling and dehumidification.<u></u><u></u></li></ol>\r\n<p class=\"MsoNormal\">Each path has different implications for HVAC equipment size, system complexity, construction coordination, and electrical infrastructure.\r\n<u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\">We respectfully request a clarification meeting to confirm:<u></u><u></u></p>\r\n<ul style=\"margin-top:0in\" type=\"disc\">\r\n<li class=\"MsoNormal\">Whether ISO-8 is a firm requirement or an aspirational target,<u></u><u></u></li><li class=\"MsoNormal\">Whether humidity &lt;50% is mandatory or optional for initial operations (sounds mandatory based on a reference to equipment operational requirements discussed in the meeting)<u></u><u></u></li><li class=\"MsoNormal\">Whether future products or process steps may require lower humidity or higher filtration, and<u></u><u></u></li><li class=\"MsoNormal\">Whether positive pressure relative to adjacent spaces is required.<u></u><u></u></li></ul>\r\n<p class=\"MsoNormal\">Once these items are confirmed, we can move forward with confidence that the system matches the owner’s true operational needs.<u></u><u></u></p>\r\n<p class=\"MsoNormal\">Thank you,<u></u><u></u></p>\r\n<p class=\"MsoNormal\">Jeff<u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td width=\"452\" colspan=\"2\" valign=\"top\" style=\"width:338.75pt;padding:0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11pt;font-family:&quot;Book Antiqua&quot;,serif;color:rgb(90,47,33)\">Jeffrey J. Hahn, P.E.<u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:6pt\"><i><span style=\"font-size:11pt;font-family:&quot;Book Antiqua&quot;,serif;color:rgb(90,47,33)\">President<u></u><u></u></span></i></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"186\" valign=\"top\" style=\"width:139.25pt;padding:0in\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt\"><a href=\"mailto:jjhahn@hahneng.com\" target=\"_blank\"><span style=\"font-family:&quot;Book Antiqua&quot;,serif;color:rgb(90,47,33)\">jjhahn@hahneng.com</span></a></span><span style=\"font-size:11pt;font-family:&quot;Book Antiqua&quot;,serif;color:rgb(90,47,33)\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:&quot;Book Antiqua&quot;,serif\">Direct: 813.537.2162<span style=\"color:rgb(90,47,33)\"><u></u><u></u></span></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:6pt\"><span style=\"font-size:11pt;font-family:&quot;Book Antiqua&quot;,serif\">Office: 813.831.8599<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11pt;font-family:&quot;Book Antiqua&quot;,serif;color:rgb(90,47,33)\">Hahn Engineering, Inc.<u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:&quot;Book Antiqua&quot;,serif\">3060 S. Dale Mabry Hwy.<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:&quot;Book Antiqua&quot;,serif\">Tampa, FL 33629<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"266\" valign=\"top\" style=\"width:199.5pt;padding:0in\">\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><u></u><a href=\"https://www.hahneng.com/\" target=\"_blank\"><img border=\"0\" width=\"249\" height=\"118\" style=\"width: 2.5937in; height: 1.2291in;\" src=\"cid:ii_19ae5b9d98f6917eb1\" align=\"left\" hspace=\"12\" title=\"\"></a><u></u><span style=\"font-size:3pt;font-family:&quot;Gill Sans MT&quot;,sans-serif;color:rgb(89,89,89)\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:7pt;font-family:&quot;Gill Sans MT&quot;,sans-serif;color:rgb(89,89,89)\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:7pt;font-family:&quot;Gill Sans MT&quot;,sans-serif;color:rgb(89,89,89)\">THE ELECTRONIC DATA ON THIS TRANSMISSION IS TRANSMITTED FOR YOUR CONVENIENCE.  BY ACCEPTING DELIVERY OF THESE FILES, THE RECIPIENT\r\n HEREBY AGREES TO INDEMNIFY AND HOLD HARMLESS HAHN ENGINEERING, INC. FROM ANY LIABILITY RESULTING FROM USE OF THIS DATA.  THE DATA ON THIS TRANSMISSION IS SUBJECT TO CHANGE.  COORDINATION FOR UPDATES IS THE SOLE RESPONSIBILITY OF THE RECIPIENT.  HAHN ENGINEERING,\r\n INC. IS NOT RESPONSIBLE TO THE RECIPIENT OR ANY OTHER PARTY ALLOWED TO UTILIZE THE DATA BY THE RECIPIENT FOR UPDATING THE DISK OR FOR COMPATIBILITY WITH RECIPIENT HARDWARE OR SOFTWARE.<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n</div>\r\n</div>\r\n\r\n</div></blockquote></div>','Steve, Thank you for your detailed email and for proactively seeking\r\nclarification on the HVAC requirements for our new lithium battery pack\r\nassembly facility. Your summary of the situation is accurate, and we\r\nappreciate the opportunity to align on the design basis before proceeding.\r\nAfter an internal review and consideration of our specific process needs,\r\nwe can confirm that our intent is for a comfort-conditioned industrial\r\nspace with specific humidity control, rather than a full ISO-8 cleanroom\r\nenvironment. The mention of \"ISO-8\" in the kickoff meeting was intended to\r\nconvey a general need for a clean and controlled environment but was not\r\nmeant to be a formal classification requirement.\r\nTo directly address your questions:\r\n1.Is ISO-8 a firm requirement? No, it is not. An ISO-8 classification is\r\nnot necessary for our battery pack assembly process. We believe that an ISO-9\r\nclassification (or even a well-maintained, unclassified space) with good\r\nhousekeeping and filtration practices will be more than sufficient for our\r\nneeds. Our primary concern is controlling airborne particulates that could\r\naffect final product quality, not meeting a specific cleanroom standard.\r\n2.Is humidity <50% mandatory? Yes, this is a mandatory requirement for our\r\nequipment and process. Maintaining a relative humidity of less than 50% is\r\ncritical to prevent moisture absorption and ensure the quality and safety\r\nof our battery packs. However, we do not require the extremely low dew\r\npoints (-35°C or lower) associated with lithium-ion cell manufacturing. Our\r\nprocess involves the assembly of pre-sealed cells, which is a far less\r\nmoisture-sensitive operation.\r\n3.Will future products require tighter control? We do not anticipate any\r\nfuture products or process changes that would require significantly lower\r\nhumidity or higher filtration levels. Our long-term forecast is based on\r\nthe assembly of similar battery pack architectures.\r\n4.Is positive pressure required? No, positive pressure relative to adjacent\r\nspaces is not required. A neutral or even slightly negative pressure\r\nenvironment would be acceptable, as long as the primary production space is\r\nwell-sealed and the HVAC system can effectively maintain the required\r\ntemperature and humidity levels.\r\nBased on this, we agree that the project scope should align with your\r\ndescription of a comfort-conditioned industrial space with robust\r\ndehumidification, rather than a full cleanroom approach. This will allow us\r\nto achieve our operational goals without the unnecessary cost and\r\ncomplexity of an ISO-8 buildout.\r\nWe are happy to schedule a brief follow-up meeting to confirm these details\r\nand answer any further questions you may have. Please let us know what time\r\nworks best for your team.\r\nThank you again for your diligence and partnership.\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Tue, Nov 25, 2025 at 3:51 PM Steve Barthlow <\r\nSteve.Barthlow@lddblueline.com> wrote:\r\n\r\n> Nathan, Jordan, and Jarrett,\r\n>\r\n>\r\n>\r\n> Please see email below from Hahn Engineering regarding potential HVAC\r\n> requirements at the 3900 Coachman building.\r\n>\r\n>\r\n>\r\n> Thanks,\r\n>\r\n>\r\n>\r\n> *Steven D. Barthlow, AIA, NCARB*\r\n>\r\n> principal | vice president | regional director\r\n>\r\n>\r\n>\r\n> *LDD**Blueline**TM*\r\n>\r\n> Discover | Design | Deliver\r\n>\r\n> We\'re hiring! We\'re looking for a Project Manager and a Project Architect.\r\n> Send your resume to careers@lddblueline.com\r\n>\r\n> 306 East Oak Avenue, Tampa, FL 33602\r\n>\r\n> *Steve.Barthlow@LDDBlueline.com*\r\n>\r\n> AR 103560 | office 813.771.2378 | cell 404.245.0451\r\n>\r\n>\r\n>\r\n> *From:* Jeffrey Hahn <jjhahn@hahneng.com>\r\n> *Sent:* Tuesday, November 25, 2025 3:44 PM\r\n> *To:* Steve Barthlow <Steve.Barthlow@lddblueline.com>; James Jacobik <\r\n> James.Jacobik@lddblueline.com>\r\n> *Cc:* Stephen Morris <sjmorris@hahneng.com>; William Augensen <\r\n> waugensen@hahneng.com>; Justin Erman <jerman@hahneng.com>\r\n> *Subject:* Lithium Battery Company @ 3900 W Coachman [25029-Email]\r\n>\r\n>\r\n>\r\n> Steve,\r\n>\r\n>\r\n>\r\n> Over the past few days been reviewing the production space requirements\r\n> and the information provided. We originally asked whether any specialized\r\n> HVAC conditions—such as positive pressurization, controlled filtration, or\r\n> humidity limits—were required for the production area or the building as a\r\n> whole. The response we received at that time was that no positively\r\n> pressurized spaces and no specific direction on cooling and humidity\r\n> requirements.\r\n>\r\n>\r\n>\r\n> Last week during the kickoff meeting it was mentioned that ISO-8\r\n> conditions for the production space, with a target of humidity below 50%,\r\n> are desired. This represents a significantly higher level of HVAC\r\n> sophistication than standard comfort cooling, as it introduces\r\n> air-change-rate requirements, filtration requirements (HEPA or near-HEPA),\r\n> positive or neutral pressure considerations, and much more precise humidity\r\n> and dew-point control. These items directly affect airflow quantities,\r\n> equipment selection, duct routing, ceiling/architectural details,\r\n> and—importantly—electrical capacity.\r\n>\r\n>\r\n>\r\n> Before we proceed with finalizing our basis of design, we want to confirm\r\n> the actual intent of the owner and equipment team. Several indicators\r\n> suggest that the production line may be low shedding and relatively\r\n> enclosed, and they indicated that similar equipment in other facilities\r\n> overseas often operates in minimally conditioned spaces. If the true\r\n> requirement is to simply temper the space—cooling, dehumidifying to a\r\n> comfortable level, and preventing condensation—then the system can be much\r\n> simpler and far less costly. However, if the intent is to meet ISO-8\r\n> cleanliness, maintain <50% RH, or anticipate future products that require\r\n> tighter environmental control, then we need to design the space accordingly\r\n> from the start to avoid rework or service interruptions later.\r\n>\r\n>\r\n>\r\n> At this point, the HVAC project could fall into one of two very different\r\n> scopes:\r\n>\r\n>    1. A full ISO-8 environmental cleanroom approach, with defined air\r\n>    changes per hour, filtration, and controlled humidity; or\r\n>    2. A comfort-conditioned industrial space, with no pressurization and\r\n>    only general cooling and dehumidification.\r\n>\r\n> Each path has different implications for HVAC equipment size, system\r\n> complexity, construction coordination, and electrical infrastructure.\r\n>\r\n>\r\n>\r\n> We respectfully request a clarification meeting to confirm:\r\n>\r\n>    - Whether ISO-8 is a firm requirement or an aspirational target,\r\n>    - Whether humidity <50% is mandatory or optional for initial\r\n>    operations (sounds mandatory based on a reference to equipment operational\r\n>    requirements discussed in the meeting)\r\n>    - Whether future products or process steps may require lower humidity\r\n>    or higher filtration, and\r\n>    - Whether positive pressure relative to adjacent spaces is required.\r\n>\r\n> Once these items are confirmed, we can move forward with confidence that\r\n> the system matches the owner’s true operational needs.\r\n>\r\n> Thank you,\r\n>\r\n> Jeff\r\n>\r\n>\r\n>\r\n>\r\n>\r\n> *Jeffrey J. Hahn, P.E.*\r\n>\r\n> *President*\r\n>\r\n> jjhahn@hahneng.com\r\n>\r\n> Direct: 813.537.2162\r\n>\r\n> Office: 813.831.8599\r\n>\r\n> *Hahn Engineering, Inc.*\r\n>\r\n> 3060 S. Dale Mabry Hwy.\r\n>\r\n> Tampa, FL 33629\r\n>\r\n> <https://www.hahneng.com/>\r\n>\r\n>\r\n>\r\n> THE ELECTRONIC DATA ON THIS TRANSMISSION IS TRANSMITTED FOR YOUR\r\n> CONVENIENCE.  BY ACCEPTING DELIVERY OF THESE FILES, THE RECIPIENT HEREBY\r\n> AGREES TO INDEMNIFY AND HOLD HARMLESS HAHN ENGINEERING, INC. FROM ANY\r\n> LIABILITY RESULTING FROM USE OF THIS DATA.  THE DATA ON THIS TRANSMISSION\r\n> IS SUBJECT TO CHANGE.  COORDINATION FOR UPDATES IS THE SOLE RESPONSIBILITY\r\n> OF THE RECIPIENT.  HAHN ENGINEERING, INC. IS NOT RESPONSIBLE TO THE\r\n> RECIPIENT OR ANY OTHER PARTY ALLOWED TO UTILIZE THE DATA BY THE RECIPIENT\r\n> FOR UPDATING THE DISK OR FOR COMPATIBILITY WITH RECIPIENT HARDWARE OR\r\n> SOFTWARE.\r\n>\r\n>\r\n>',1,0,0,0,0,0,'2025-12-03 19:40:33','2025-12-04 14:05:25','2025-12-04 14:05:25','2025-12-04 16:04:20',NULL,NULL,NULL),
(108,4,'<2EF9B58B-4032-491F-B9A6-C2FF660902AA@mavrix.one>',NULL,NULL,'Re: Sol-Ark Preferred Prototype Specs','Brian@mavrix.one','Brian Stufflebean','\r\n--Apple-Mail=_3AED1276-DD28-4659-A629-E1BAE21291AF\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Type: text/html;\r\n	charset=utf-8\r\n\r\n<html><head><meta http-equiv=3D\"content-type\" content=3D\"text/html; =\r\ncharset=3Dutf-8\"></head><body style=3D\"overflow-wrap: break-word; =\r\n-webkit-nbsp-mode: space; line-break: after-white-space;\"><span =\r\nstyle=3D\"font-size: 14px;\"><b>Nathan and =\r\nJordan,&nbsp;</b></span><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: 14px;\">I need to =\r\nhave the proposed Sol-Ark annual units, price per unit and total annual =\r\nprojected forecast for the next 5-years, broken out into an Excel table, =\r\nby year.&nbsp;</span></div><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: 14px;\">We need =\r\nthis ASAP for meetings tomorrow (Thursday, 12/4/25) =\r\n&nbsp;afternoon.&nbsp;</span></div><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: 14px;\">Need the =\r\nsame thing for Sonnen and Mitsubishi.</span></div><div><span =\r\nstyle=3D\"font-size: 14px;\"><br></span></div><div><span style=3D\"font-size:=\r\n 14px;\">Please place at high priority. &nbsp;</span></div><div><span =\r\nstyle=3D\"font-size: 14px;\"><br></span></div><div><span style=3D\"font-size:=\r\n 14px;\">Thank you,</span></div><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: =\r\n14px;\">Brian&nbsp;</span><br><div><div><br><blockquote =\r\ntype=3D\"cite\"><div>On Nov 5, 2025, at 11:20=E2=80=AFPM, Nathan Staron =\r\n&lt;Nathan@lithiumbatterycompany.com&gt; wrote:</div><br =\r\nclass=3D\"Apple-interchange-newline\"><div><div dir=3D\"auto\">Will respond =\r\nmore clearly tomorrow morning.&nbsp; I want to make sure Nick is =\r\nincluded with the communication. &nbsp;&nbsp;</div><div =\r\ndir=3D\"auto\"><br></div><div dir=3D\"auto\">The BMS could handle 300A for =\r\n15 seconds.&nbsp; It is a heat dissipation issue from FETS.&nbsp; It can =\r\nbe programmed in back end software. &nbsp;</div><div =\r\ndir=3D\"auto\"><br></div><div dir=3D\"auto\">Susan and Wilson have new =\r\nrelationship together so their working relationship and knowledge needs =\r\nto be communicated. &nbsp;&nbsp;</div><div dir=3D\"auto\"><br></div><div =\r\ndir=3D\"auto\">Try not to be persuaded from GSL to accept their =\r\nparameters.&nbsp; Sol Ark is just setting their battery management =\r\nsystem and cells to a better quality which will lower their after sales =\r\nsupport and align the battery for better performance and =\r\nbalancing.&nbsp; Chinese have very narrow scope and we need to be =\r\nspecific on laying out our requirements for the project.&nbsp;</div><div =\r\ndir=3D\"auto\"><br></div><div dir=3D\"auto\">Let=E2=80=99s discuss tomorrow =\r\nmorning.&nbsp;<br clear=3D\"all\"><div dir=3D\"auto\"><div dir=3D\"ltr\" =\r\nclass=3D\"gmail_signature\" data-smartmail=3D\"gmail_signature\"><div =\r\ndir=3D\"ltr\"><br><div><br></div><div><table cellpadding=3D\"0\" =\r\ncellspacing=3D\"0\" border=3D\"0\" style=3D\"border: medium; border-collapse: =\r\ncollapse; font-size: 10px; font-family: Inter, sans-serif;\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;line-height:16px\"><table =\r\ncellpadding=3D\"0\" cellspacing=3D\"0\" style=3D\"border:none\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td valign=3D\"top\" =\r\nalign=3D\"left\" style=3D\"border:1px solid =\r\nrgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px =\r\n8px 8px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://lithiumbatterycompany.com/\" target=3D\"_blank\"><img =\r\nalt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/web-icon=\r\n.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.instagram.com/lithiumbatteryco/\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/insta-ic=\r\non.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.linkedin.com/company/the-lithium-battery-company\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/linkedin=\r\n-icon.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.facebook.com/LithiumBatteryCompany/\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/facebook=\r\n-icon.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.youtube.com/c/LithiumBatteryCompany\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/youtube-=\r\nicon.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr></tbody></table></td><td =\r\nwidth=3D\"8\" =\r\nstyle=3D\"border:none;border-collapse:collapse;display:revert\">&nbsp;</td><=\r\ntd valign=3D\"top\" align=3D\"left\" style=3D\"border:1px solid =\r\nrgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\">=\r\n<table width=3D\"100%\" border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td align=3D\"left\" =\r\nvalign=3D\"middle\" style=3D\"border:none;border-collapse:collapse\"><table =\r\nwidth=3D\"100%\" border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><a =\r\nhref=3D\"https://lithiumbatterycompany.com/\" target=3D\"_blank\"><img =\r\nsrc=3D\"https://app.customesignature.com/upload/signature/11122/11122.png\" =\r\nwidth=3D\"170\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:0px 0px =\r\n10px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:15px 0px =\r\n0px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td align=3D\"left\" =\r\nvalign=3D\"middle\" style=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:20px\">NATHAN A. =\r\nSTARON</span></td><td align=3D\"left\" valign=3D\"middle\" =\r\nstyle=3D\"border:none;border-collapse:collapse;padding-left:5px\"><img =\r\nwidth=3D\"15\" height=3D\"15\" =\r\nsrc=3D\"https://app.customesignature.com/images/verify.gif\" =\r\nstyle=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-size:12px\">Founder / =\r\nCEO</span></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Lithium Battery =\r\nCompany</span></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Cell Phone</span>&nbsp;<a =\r\nhref=3D\"tel:813-504-0074\" style=3D\"font-size: 12px;\" =\r\ntarget=3D\"_blank\">813-504-0074</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Phone</span>&nbsp;<a =\r\nhref=3D\"tel:844-GET-LITHIUM\" style=3D\"font-size: 12px;\" =\r\ntarget=3D\"_blank\">844-GET-LITHIUM</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><a =\r\nhref=3D\"mailto:Nathan@lithiumbatterycompany.com\" style=3D\"\" =\r\ntarget=3D\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px =\r\n0px\"><table cellpadding=3D\"0\" cellspacing=3D\"0\" border=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;display:flex;font-weight:bol=\r\nd\"><a href=3D\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" =\r\nstyle=3D\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px =\r\n15px;text-align:center;font-size:12px;line-height:14px;display:inline-bloc=\r\nk\" target=3D\"_blank\">Schedule A =\r\nZoom</a></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><table cellpadding=3D\"0\" =\r\ncellspacing=3D\"0\" border=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"></tr></tbody></table></td><=\r\n/tr></tbody></table></td><td align=3D\"left\" valign=3D\"middle\" =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:0px 0px 0px =\r\n15px;display:revert\"><div style=3D\"max-height:0px;overflow:visible\"><img =\r\nsrc=3D\"https://app.customesignature.com/upload/signature/profile/173870830=\r\n7-11122.jpg\" width=3D\"140\" style=3D\"display:block;border-radius:10px\" =\r\ndata-unique-identifier=3D\"\"></div><img =\r\nsrc=3D\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gi=\r\nf\" name=3D\"SignatureSanitizer_profile_annimation_gif\" width=3D\"140\" =\r\nstyle=3D\"display:block;border-radius:10px\" =\r\ndata-unique-identifier=3D\"\"></td></tr></tbody></table></td></tr></tbody></=\r\ntable></td></tr><tr style=3D\"border:none;border-collapse:collapse\"><td =\r\nalign=3D\"left\" valign=3D\"top\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><table border=3D\"0\" =\r\ncellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"></tr></tbody></table></td><=\r\n/tr><tr style=3D\"border:none;border-collapse:collapse\"></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:10px 0px =\r\n0px\"><a></a></td></tr></tbody></table></div></div></div></div></div><div><=\r\nbr></div><div><br><div class=3D\"gmail_quote gmail_quote_container\"><div =\r\ndir=3D\"ltr\" class=3D\"gmail_attr\">On Wed, Nov 5, 2025 at 10:36=E2=80=AFPM =\r\nJordan Wroblewski &lt;<a =\r\nhref=3D\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycomp=\r\nany.com</a>&gt; wrote:<br></div><blockquote class=3D\"gmail_quote\" =\r\nstyle=3D\"margin:0 0 0 .8ex;border-left:1px #ccc =\r\nsolid;padding-left:1ex\"><div dir=3D\"ltr\"><div>Good evening =\r\nteam.&nbsp;&nbsp;</div><div><br></div><div>Back from Sol-Ark - BMS =\r\nquestion.&nbsp;</div><div><br></div><div><span =\r\nid=3D\"cid:ii_mhmv8y361\">&lt;image (7).png&gt;</span><br></div><div><span =\r\nstyle=3D\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, =\r\nCalibri, Helvetica, sans-serif; font-size: 14.6667px;\">Is there any =\r\npossibility of setting the Max Charge/Discharge at 200A to align with =\r\nthe performance targets we=E2=80=99re aiming for? I understand that =\r\nmaintaining 300A for 15 seconds may not be feasible, 15 seconds is a =\r\nlong duration, and most appliances don=E2=80=99t require that much =\r\nramp-up time. Could you share any data regarding the peak power =\r\ncapability for a shorter duration, such as 10ms or =\r\nless?</span></div><div><span style=3D\"font-family: Aptos, =\r\nAptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; =\r\nfont-size: 14.6667px;\"><br></span></div><div><span style=3D\"font-family: =\r\nAptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, =\r\nsans-serif; font-size: 14.6667px;\">I reached out to Susan and Wilson on =\r\nthis.&nbsp; The 16kWh battery can support 200Ah burst but not =\r\ncontinuous.&nbsp; The 314Ah cell is a .5C charge/discharge so they don\'t =\r\nsuggest continuous over 157A.&nbsp;&nbsp;</span></div><div><span =\r\nstyle=3D\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, =\r\nCalibri, Helvetica, sans-serif; font-size: =\r\n14.6667px;\"><br></span></div><div><span style=3D\"font-family: Aptos, =\r\nAptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; =\r\nfont-size: 14.6667px;\">I want to confirm with you and see if you have =\r\nany thoughts or ideas before I =\r\nrespond.&nbsp;&nbsp;</span></div><div><span style=3D\"font-family: Aptos, =\r\nAptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; =\r\nfont-size: 14.6667px;\"><br></span></div><div><span style=3D\"font-family: =\r\nAptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, =\r\nsans-serif; font-size: 14.6667px;\">Thanks,</span></div></div><div =\r\ndir=3D\"ltr\"><div><div dir=3D\"ltr\" class=3D\"gmail_signature\" =\r\ndata-smartmail=3D\"gmail_signature\"><div dir=3D\"ltr\"><div style=3D\"margin: =\r\n0in;\"><span style=3D\"font-family: Arial, =\r\nsans-serif;\"><br></span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif;\">Jordan G. =\r\nWroblewski</span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif; font-size: 9pt;\">Partner | =\r\nPresident&nbsp;<br></span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif; font-size: 10pt;\">Lithium =\r\nBattery Company</span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif; font-size: 10pt;\">Direct: (917) =\r\n266-5336<br></span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<=\r\na href=3D\"mailto:Jarrett.brownfield@trackmastermobility.com\" =\r\nstyle=3D\"color:blue;margin:0px\" =\r\ntarget=3D\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div =\r\nstyle=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><=\r\na href=3D\"http://lithiumbatterycompany.com/\" target=3D\"_blank\">Lithium =\r\nBattery Company</a></span></div></div></div></div><br></div><br><div =\r\nclass=3D\"gmail_quote\"><div dir=3D\"ltr\" class=3D\"gmail_attr\">On Mon, Nov =\r\n3, 2025 at 2:10=E2=80=AFPM Jordan Wroblewski &lt;<a =\r\nhref=3D\"mailto:jordan@lithiumbatterycompany.com\" =\r\ntarget=3D\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; =\r\nwrote:<br></div><blockquote class=3D\"gmail_quote\" style=3D\"margin:0px =\r\n0px 0px 0.8ex;border-left:1px solid =\r\nrgb(204,204,204);padding-left:1ex\"><div dir=3D\"ltr\"><div>Hi Nathan and =\r\nteam,</div><div><br></div><div>Here are the list of preferred prototype =\r\nspecs from Sol-Ark</div><div><br></div><div><div style=3D\"font-family: =\r\nAptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, =\r\nsans-serif; font-size: 11pt;\">Please see the below specs for the =\r\nprototype battery for testing:</div><ul =\r\nstyle=3D\"margin-top:0px;margin-bottom:0px\"><li style=3D\"margin-left: =\r\n15px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, =\r\nCalibri, Helvetica, sans-serif; font-size: 11pt;\"><div =\r\nrole=3D\"presentation\">LBC512314</div></li><ul =\r\nstyle=3D\"margin-top:0px;margin-bottom:0px\"><li style=3D\"margin-left: =\r\n15px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, =\r\nCalibri, Helvetica, sans-serif; font-size: 11pt;\"><div =\r\nrole=3D\"presentation\">Capacity: 16.1kWh</div></li><li =\r\nstyle=3D\"margin-left: 15px; font-family: Aptos, Aptos_EmbeddedFont, =\r\nAptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: =\r\n11pt;\"><div role=3D\"presentation\">Amp Hours (Ah): 314Ah</div></li><li =\r\nstyle=3D\"margin-left: 15px; font-family: Aptos, Aptos_EmbeddedFont, =\r\nAptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: =\r\n11pt;\"><div role=3D\"presentation\">Nominal Voltage: 51.2v</div></li><li =\r\nstyle=3D\"margin-left: 15px; font-family: Aptos, Aptos_EmbeddedFont, =\r\nAptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: =\r\n11pt;\"><div role=3D\"presentation\">Operating Range: 48v - =\r\n56v</div></li><li style=3D\"margin-left: 15px; font-family: Aptos, =\r\nAptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; =\r\nfont-size: 11pt;\"><div role=3D\"presentation\">Max Continuous Charge: 200A =\r\nOptimal | 150A Minimum</div></li><li style=3D\"margin-left: 15px; =\r\nfont-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, =\r\nHelvetica, sans-serif; font-size: 11pt;\"><div role=3D\"presentation\">Max =\r\nContinuous Discharge: 220A Optimal | 200A Minimum</div></li><li =\r\nstyle=3D\"margin-left: 15px; font-family: Aptos, Aptos_EmbeddedFont, =\r\nAptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: =\r\n11pt;\"><div role=3D\"presentation\">Peak Discharge Current: =\r\n300A</div></li><li style=3D\"margin-left: 15px; font-family: Aptos, =\r\nAptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; =\r\nfont-size: 11pt;\"><div role=3D\"presentation\">Communication Protocol: =\r\nRS-485 Modbus RTU &amp; CANBUS<span =\r\nstyle=3D\"font-size:11pt\"></span></div></li></ul></ul><div><font =\r\nface=3D\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, =\r\nHelvetica, sans-serif\"><span =\r\nstyle=3D\"font-size:14.6667px\"><br></span></font></div></div><div><span =\r\nstyle=3D\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, =\r\nCalibri, Helvetica, sans-serif; font-size: 14.6667px;\">Here is a list of =\r\nspecs that would be comparable:</span><font face=3D\"Aptos, =\r\nAptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, =\r\nsans-serif\"><span =\r\nstyle=3D\"font-size:14.6667px\"></span></font></div><div><span =\r\nid=3D\"cid:ii_mhjik7da1\">&lt;image =\r\n(5).png&gt;</span><br></div><div><br></div><div>I have reached out to =\r\nSusan from GSL and shared the specs. I\'ve also inquired if this would be =\r\navailable&nbsp;from one of their dealers in the =\r\nUS.</div><div><br></div><div>Let me know if you have any other thoughts =\r\non what we should send thier =\r\nway.</div><div><br></div><div>Best,&nbsp;</div><div><div dir=3D\"ltr\" =\r\nclass=3D\"gmail_signature\"><div dir=3D\"ltr\"><div style=3D\"margin: =\r\n0in;\"><span style=3D\"font-family: Arial, =\r\nsans-serif;\"><br></span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif;\">Jordan G. =\r\nWroblewski</span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif; font-size: 9pt;\">Partner | =\r\nPresident&nbsp;<br></span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif; font-size: 10pt;\">Lithium =\r\nBattery Company</span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif; font-size: 10pt;\">Direct: (917) =\r\n266-5336<br></span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<=\r\na href=3D\"mailto:Jarrett.brownfield@trackmastermobility.com\" =\r\nstyle=3D\"color:blue;margin:0px\" =\r\ntarget=3D\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div =\r\nstyle=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><=\r\na href=3D\"http://lithiumbatterycompany.com/\" target=3D\"_blank\">Lithium =\r\nBattery Company</a></span></div></div></div></div></div>\r\n</blockquote></div>\r\n</blockquote></div></div>\r\n</div></blockquote></div><br><div>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; orphans: auto; text-align: start; text-indent: 0px; =\r\ntext-transform: none; white-space: normal; widows: auto; word-spacing: =\r\n0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><font size=3D\"2\">Best =\r\nregards,</font></div><div style=3D\"font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><font =\r\nsize=3D\"2\"><br></font></div><div style=3D\"font-family: Helvetica; =\r\nfont-size: 12px; font-style: normal; font-variant-caps: normal; =\r\nfont-weight: 400; letter-spacing: normal; orphans: auto; text-align: =\r\nstart; text-indent: 0px; text-transform: none; white-space: normal; =\r\nwidows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\" style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><b>Brian C. =\r\nStufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 =\r\nDirect</b></div><div style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><span style=3D\"font-size: =\r\n11px;\">(866)896-2423 Fax</span></div></div><span style=3D\"caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0); font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"></span><br class=3D\"Apple-interchange-newline\"><span><img =\r\nalt=3D\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" =\r\nsrc=3D\"cid:CB596987-D3CC-4C61-B9D3-CE1C1DF1C723\"></span><meta =\r\ncharset=3D\"UTF-8\"><div style=3D\"font-family: Helvetica; font-size: 12px; =\r\nfont-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br =\r\nclass=3D\"Apple-interchange-newline\"><br =\r\nclass=3D\"Apple-interchange-newline\"><a =\r\nhref=3D\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a =\r\nhref=3D\"https://mavrix1.com\">https://mavrix1.com/</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY =\r\nNOTICE:</b><span style=3D\"font-family: Helvetica; font-style: normal; =\r\nfont-weight: 400; font-size: =\r\n12px;\">&nbsp;This&nbsp;communication&nbsp;is =\r\nconfidential&nbsp;and&nbsp;intended only for the =\r\nintended&nbsp;recipient.&nbsp;&nbsp;If you are not the =\r\nintended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, =\r\nor&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any =\r\nsuch&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this =\r\ncommunication&nbsp;in error,&nbsp;please contact the sender =\r\nof&nbsp;the&nbsp;message to inform him or her of =\r\nthe&nbsp;error.<br><br></span></div>\r\n</div>\r\n<br></div></div></body></html>=\r\n\r\n--Apple-Mail=_3AED1276-DD28-4659-A629-E1BAE21291AF\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\r\nContent-Type: image/png;\r\n	name=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\"\r\nContent-Id: <CB596987-D3CC-4C61-B9D3-CE1C1DF1C723>\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGwAAAAYCAYAAAAf1RgaAAAAAXNSR0IArs4c6QAAAIRlWElmTU0A\r\nKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdp\r\nAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAGyg\r\nAwAEAAAAAQAAABgAAAAABrPxEgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5h\r\nZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9\r\nIlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9y\r\nZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6\r\nYWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZm\r\nLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgog\r\nICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAA\r\nC6FJREFUaAXtWnuMVUcZnznPe/fuZYEtDxHCQ1ADBNuuAlKh24dRaqURWFotj5haKAn9SxOaauRi\r\nxEBsMMFSAmnUCDTKWtDioyEm3RLKq6VKC7Rg20VA5Lmwz3vPa8bfN+ecu+fevbugjQQrX5g735n5\r\nvm++13wz5yyc3YKb0gP19a8YTU33+NNmbx0puHjJtGsm+U7beoMxyRsaGrUJE45JxlbclMp/1JXK\r\nsZWM5XLwP6PG6+tzOgVr8tzN0wWTjRq3hojAw6TU+EfdGf9T9uVyGsutQNC4nDpn8zz0m7lmWEwE\r\njm6mbd/r3MCnzNk6DlEbyRFCqfNbAbyBEeaBlJzrkula1mOFQ683fvMcLT917tblGF8dbTgmhe8a\r\nZsbyvY4NhsbEdwy7ZrHntDHOtBuo7q2lGLyvGSnmOe2/fH3S3//EGhGsOZuf03RrKRMC/3wBL30f\r\n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\r\n--Apple-Mail=_3AED1276-DD28-4659-A629-E1BAE21291AF--','Nathan and Jordan, \r\n\r\nI need to have the proposed Sol-Ark annual units, price per unit and total annual projected forecast for the next 5-years, broken out into an Excel table, by year. \r\n\r\nWe need this ASAP for meetings tomorrow (Thursday, 12/4/25)  afternoon. \r\n\r\nNeed the same thing for Sonnen and Mitsubishi.\r\n\r\nPlease place at high priority.  \r\n\r\nThank you,\r\n\r\nBrian \r\n\r\n> On Nov 5, 2025, at 11:20 PM, Nathan Staron <Nathan@lithiumbatterycompany.com> wrote:\r\n> \r\n> Will respond more clearly tomorrow morning.  I want to make sure Nick is included with the communication.   \r\n> \r\n> The BMS could handle 300A for 15 seconds.  It is a heat dissipation issue from FETS.  It can be programmed in back end software.  \r\n> \r\n> Susan and Wilson have new relationship together so their working relationship and knowledge needs to be communicated.   \r\n> \r\n> Try not to be persuaded from GSL to accept their parameters.  Sol Ark is just setting their battery management system and cells to a better quality which will lower their after sales support and align the battery for better performance and balancing.  Chinese have very narrow scope and we need to be specific on laying out our requirements for the project. \r\n> \r\n> Let’s discuss tomorrow morning. \r\n> \r\n> \r\n>  <https://lithiumbatterycompany.com/>\r\n>  <https://www.instagram.com/lithiumbatteryco/>\r\n>  <https://www.linkedin.com/company/the-lithium-battery-company>\r\n>  <https://www.facebook.com/LithiumBatteryCompany/>\r\n>  <https://www.youtube.com/c/LithiumBatteryCompany>	 	\r\n>  <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON	\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074 <tel:813-504-0074>\r\n> Phone 844-GET-LITHIUM <tel:844-GET-LITHIUM>\r\n> Nathan@lithiumbatterycompany.com <mailto:Nathan@lithiumbatterycompany.com>\r\n> Schedule A Zoom\r\n>  <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n> \r\n> \r\n> \r\n> On Wed, Nov 5, 2025 at 10:36 PM Jordan Wroblewski <jordan@lithiumbatterycompany.com <mailto:jordan@lithiumbatterycompany.com>> wrote:\r\n>> Good evening team.  \r\n>> \r\n>> Back from Sol-Ark - BMS question. \r\n>> \r\n>> <image (7).png>\r\n>> Is there any possibility of setting the Max Charge/Discharge at 200A to align with the performance targets we’re aiming for? I understand that maintaining 300A for 15 seconds may not be feasible, 15 seconds is a long duration, and most appliances don’t require that much ramp-up time. Could you share any data regarding the peak power capability for a shorter duration, such as 10ms or less?\r\n>> \r\n>> I reached out to Susan and Wilson on this.  The 16kWh battery can support 200Ah burst but not continuous.  The 314Ah cell is a .5C charge/discharge so they don\'t suggest continuous over 157A.  \r\n>> \r\n>> I want to confirm with you and see if you have any thoughts or ideas before I respond.  \r\n>> \r\n>> Thanks,\r\n>> \r\n>> Jordan G. Wroblewski\r\n>> Partner | President \r\n>> Lithium Battery Company\r\n>> Direct: (917) 266-5336\r\n>> jordan@lithiumbatterycompany.com <mailto:Jarrett.brownfield@trackmastermobility.com>\r\n>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n>> \r\n>> On Mon, Nov 3, 2025 at 2:10 PM Jordan Wroblewski <jordan@lithiumbatterycompany.com <mailto:jordan@lithiumbatterycompany.com>> wrote:\r\n>>> Hi Nathan and team,\r\n>>> \r\n>>> Here are the list of preferred prototype specs from Sol-Ark\r\n>>> \r\n>>> Please see the below specs for the prototype battery for testing:\r\n>>> LBC512314\r\n>>> Capacity: 16.1kWh\r\n>>> Amp Hours (Ah): 314Ah\r\n>>> Nominal Voltage: 51.2v\r\n>>> Operating Range: 48v - 56v\r\n>>> Max Continuous Charge: 200A Optimal | 150A Minimum\r\n>>> Max Continuous Discharge: 220A Optimal | 200A Minimum\r\n>>> Peak Discharge Current: 300A\r\n>>> Communication Protocol: RS-485 Modbus RTU & CANBUS\r\n>>> \r\n>>> Here is a list of specs that would be comparable:\r\n>>> <image (5).png>\r\n>>> \r\n>>> I have reached out to Susan from GSL and shared the specs. I\'ve also inquired if this would be available from one of their dealers in the US.\r\n>>> \r\n>>> Let me know if you have any other thoughts on what we should send thier way.\r\n>>> \r\n>>> Best, \r\n>>> \r\n>>> Jordan G. Wroblewski\r\n>>> Partner | President \r\n>>> Lithium Battery Company\r\n>>> Direct: (917) 266-5336\r\n>>> jordan@lithiumbatterycompany.com <mailto:Jarrett.brownfield@trackmastermobility.com>\r\n>>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n￼\r\n\r\n\r\nbrian@mavrix.one <mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',1,0,0,0,0,0,'2025-12-04 01:49:21','2025-12-04 14:05:26','2025-12-04 14:05:26','2025-12-04 16:04:13',NULL,NULL,NULL),
(109,4,'<CAGOCFXiR-YpQ+LF9yXtMmmzobh2eY1Z9eewb2b9O-XOq9AVOjA@mail.gmail.com>',NULL,NULL,'Re: Sol-Ark Preferred Prototype Specs','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"auto\">Got it.  Will work on this tomorrow morning. </div><div dir=\"auto\"><br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div><div><br></div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Dec 3, 2025 at 8:50 PM Brian Stufflebean &lt;Brian@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div style=\"line-break:after-white-space\"><span style=\"font-size:14px\"><b>Nathan and Jordan, </b></span><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">I need to have the proposed Sol-Ark annual units, price per unit and total annual projected forecast for the next 5-years, broken out into an Excel table, by year. </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">We need this ASAP for meetings tomorrow (Thursday, 12/4/25)  afternoon. </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Need the same thing for Sonnen and Mitsubishi.</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Please place at high priority.  </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Thank you,</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Brian </span><br><div><div><br><blockquote type=\"cite\"></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div>On Nov 5, 2025, at 11:20 PM, Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:</div><br></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div></div></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div><div dir=\"auto\">Will respond more clearly tomorrow morning.  I want to make sure Nick is included with the communication.   </div><div dir=\"auto\"><br></div><div dir=\"auto\">The BMS could handle 300A for 15 seconds.  It is a heat dissipation issue from FETS.  It can be programmed in back end software.  </div><div dir=\"auto\"><br></div><div dir=\"auto\">Susan and Wilson have new relationship together so their working relationship and knowledge needs to be communicated.   </div><div dir=\"auto\"><br></div><div dir=\"auto\">Try not to be persuaded from GSL to accept their parameters.  Sol Ark is just setting their battery management system and cells to a better quality which will lower their after sales support and align the battery for better performance and balancing.  Chinese have very narrow scope and we need to be specific on laying out our requirements for the project. </div><div dir=\"auto\"><br></div><div dir=\"auto\">Let’s discuss tomorrow morning. <br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_578106803208480977_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div><div><br></div></div></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div><div><br><div class=\"gmail_quote\"></div></div></div></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Nov 5, 2025 at 10:36 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div></div></div></div></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div dir=\"ltr\"></div></blockquote></div></div></div></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div dir=\"ltr\"><div>Good evening team.  </div><div><br></div><div>Back from Sol-Ark - BMS question. </div><div><br></div><div><span id=\"m_578106803208480977cid:ii_mhmv8y361\">&lt;image (7).png&gt;</span><br></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Is there any possibility of setting the Max Charge/Discharge at 200A to align with the performance targets we’re aiming for? I understand that maintaining 300A for 15 seconds may not be feasible, 15 seconds is a long duration, and most appliances don’t require that much ramp-up time. Could you share any data regarding the peak power capability for a shorter duration, such as 10ms or less?</span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">I reached out to Susan and Wilson on this.  The 16kWh battery can support 200Ah burst but not continuous.  The 314Ah cell is a .5C charge/discharge so they don&#39;t suggest continuous over 157A.  </span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">I want to confirm with you and see if you have any thoughts or ideas before I respond.  </span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Thanks,</span></div></div></blockquote></div></div></div></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div dir=\"ltr\"></div></blockquote></div></div></div></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div dir=\"ltr\"><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\"><br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt\">Partner | President <br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Lithium Battery Company</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Direct: (917) 266-5336<br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\">Lithium Battery Company</a></span></div></div></div></div><br></div><br></blockquote></div></div></div></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div class=\"gmail_quote\"></div></blockquote></div></div></div></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Nov 3, 2025 at 2:10 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div></div></blockquote></div></div></div></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"></div></blockquote></div></blockquote></div></div></div></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Hi Nathan and team,</div><div><br></div><div>Here are the list of preferred prototype specs from Sol-Ark</div><div><br></div><div><div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\">Please see the below specs for the prototype battery for testing:</div><ul style=\"margin-top:0px;margin-bottom:0px\"><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">LBC512314</div></li><ul style=\"margin-top:0px;margin-bottom:0px\"><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Capacity: 16.1kWh</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Amp Hours (Ah): 314Ah</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Nominal Voltage: 51.2v</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Operating Range: 48v - 56v</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Max Continuous Charge: 200A Optimal | 150A Minimum</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Max Continuous Discharge: 220A Optimal | 200A Minimum</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Peak Discharge Current: 300A</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Communication Protocol: RS-485 Modbus RTU &amp; CANBUS<span style=\"font-size:11pt\"></span></div></li></ul></ul><div><font face=\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif\"><span style=\"font-size:14.6667px\"><br></span></font></div></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Here is a list of specs that would be comparable:</span><font face=\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif\"><span style=\"font-size:14.6667px\"></span></font></div></div></blockquote></div></blockquote></div></div></div></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div><span id=\"m_578106803208480977cid:ii_mhjik7da1\">&lt;image (5).png&gt;</span><br></div><div><br></div><div>I have reached out to Susan from GSL and shared the specs. I&#39;ve also inquired if this would be available from one of their dealers in the US.</div><div><br></div><div>Let me know if you have any other thoughts on what we should send thier way.</div><div><br></div><div>Best, </div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\"><br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt\">Partner | President <br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Lithium Battery Company</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Direct: (917) 266-5336<br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\">Lithium Battery Company</a></span></div></div></div></div></div>\r\n</blockquote></div>\r\n</blockquote></div></div>\r\n</div></blockquote></div><br><div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\">Best regards,</font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\" style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><b>Brian C. Stufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 Direct</b></div><div style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><span style=\"font-size:11px\">(866)896-2423 Fax</span></div></div><span style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"></span><br><span><img alt=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" src=\"cid:ii_19ae76cfe50d2422db41\" style=\"width:108px;max-width:100%\"></span><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><br><a href=\"mailto:brian@mavrix.one\" target=\"_blank\">brian@mavrix.one</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><a href=\"https://mavrix1.com\" target=\"_blank\">https://mavrix1.com/</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"> This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.<br><br></span></div>\r\n</div>\r\n<br></div></div></div></blockquote></div></div>','Got it.  Will work on this tomorrow morning.\r\n\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Wed, Dec 3, 2025 at 8:50 PM Brian Stufflebean <Brian@mavrix.one> wrote:\r\n\r\n> *Nathan and Jordan, *\r\n>\r\n> I need to have the proposed Sol-Ark annual units, price per unit and total\r\n> annual projected forecast for the next 5-years, broken out into an Excel\r\n> table, by year.\r\n>\r\n> We need this ASAP for meetings tomorrow (Thursday, 12/4/25)  afternoon.\r\n>\r\n> Need the same thing for Sonnen and Mitsubishi.\r\n>\r\n> Please place at high priority.\r\n>\r\n> Thank you,\r\n>\r\n> Brian\r\n>\r\n> On Nov 5, 2025, at 11:20 PM, Nathan Staron <\r\n> Nathan@lithiumbatterycompany.com> wrote:\r\n>\r\n> Will respond more clearly tomorrow morning.  I want to make sure Nick is\r\n> included with the communication.\r\n>\r\n> The BMS could handle 300A for 15 seconds.  It is a heat dissipation issue\r\n> from FETS.  It can be programmed in back end software.\r\n>\r\n> Susan and Wilson have new relationship together so their working\r\n> relationship and knowledge needs to be communicated.\r\n>\r\n> Try not to be persuaded from GSL to accept their parameters.  Sol Ark is\r\n> just setting their battery management system and cells to a better quality\r\n> which will lower their after sales support and align the battery for better\r\n> performance and balancing.  Chinese have very narrow scope and we need to\r\n> be specific on laying out our requirements for the project.\r\n>\r\n> Let’s discuss tomorrow morning.\r\n>\r\n>\r\n> <https://lithiumbatterycompany.com/>\r\n> <https://www.instagram.com/lithiumbatteryco/>\r\n> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n> <https://www.facebook.com/LithiumBatteryCompany/>\r\n> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n> <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074\r\n> Phone 844-GET-LITHIUM\r\n> Nathan@lithiumbatterycompany.com\r\n> Schedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>\r\n>\r\n>\r\n> On Wed, Nov 5, 2025 at 10:36 PM Jordan Wroblewski <\r\n> jordan@lithiumbatterycompany.com> wrote:\r\n>\r\n> Good evening team.\r\n>>\r\n>> Back from Sol-Ark - BMS question.\r\n>>\r\n>> <image (7).png>\r\n>> Is there any possibility of setting the Max Charge/Discharge at 200A to\r\n>> align with the performance targets we’re aiming for? I understand that\r\n>> maintaining 300A for 15 seconds may not be feasible, 15 seconds is a long\r\n>> duration, and most appliances don’t require that much ramp-up time. Could\r\n>> you share any data regarding the peak power capability for a shorter\r\n>> duration, such as 10ms or less?\r\n>>\r\n>> I reached out to Susan and Wilson on this.  The 16kWh battery can support\r\n>> 200Ah burst but not continuous.  The 314Ah cell is a .5C charge/discharge\r\n>> so they don\'t suggest continuous over 157A.\r\n>>\r\n>> I want to confirm with you and see if you have any thoughts or ideas\r\n>> before I respond.\r\n>>\r\n>> Thanks,\r\n>>\r\n>\r\n>> Jordan G. Wroblewski\r\n>> Partner | President\r\n>> Lithium Battery Company\r\n>> Direct: (917) 266-5336\r\n>> *jordan@lithiumbatterycompany.com\r\n>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n>>\r\n>>\r\n>> On Mon, Nov 3, 2025 at 2:10 PM Jordan Wroblewski <\r\n>> jordan@lithiumbatterycompany.com> wrote:\r\n>>\r\n> Hi Nathan and team,\r\n>>>\r\n>>> Here are the list of preferred prototype specs from Sol-Ark\r\n>>>\r\n>>> Please see the below specs for the prototype battery for testing:\r\n>>>\r\n>>>    - LBC512314\r\n>>>    - Capacity: 16.1kWh\r\n>>>       - Amp Hours (Ah): 314Ah\r\n>>>       - Nominal Voltage: 51.2v\r\n>>>       - Operating Range: 48v - 56v\r\n>>>       - Max Continuous Charge: 200A Optimal | 150A Minimum\r\n>>>       - Max Continuous Discharge: 220A Optimal | 200A Minimum\r\n>>>       - Peak Discharge Current: 300A\r\n>>>       - Communication Protocol: RS-485 Modbus RTU & CANBUS\r\n>>>\r\n>>>\r\n>>> Here is a list of specs that would be comparable:\r\n>>>\r\n>> <image (5).png>\r\n>>>\r\n>>> I have reached out to Susan from GSL and shared the specs. I\'ve also\r\n>>> inquired if this would be available from one of their dealers in the US.\r\n>>>\r\n>>> Let me know if you have any other thoughts on what we should send thier\r\n>>> way.\r\n>>>\r\n>>> Best,\r\n>>>\r\n>>> Jordan G. Wroblewski\r\n>>> Partner | President\r\n>>> Lithium Battery Company\r\n>>> Direct: (917) 266-5336\r\n>>> *jordan@lithiumbatterycompany.com\r\n>>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n>>>\r\n>>\r\n> Best regards,\r\n>\r\n>\r\n>\r\n> *Brian C. Stufflebean*\r\n> CEO, Co-Founder\r\n> *(941)545-4153 Direct*\r\n> (866)896-2423 Fax\r\n>\r\n> [image: CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png]\r\n>\r\n>\r\n> brian@mavrix.one\r\n>\r\n> https://mavrix1.com/\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n> *CONFIDENTIALITY NOTICE:* This communication is confidential and intended\r\n> only for the intended recipient.  If you are not the\r\n> intended recipient, you may not copy, disclose, or distribute this\r\n> message to anyone else; any such actions may be unlawful. If you\r\n> have received this communication in error, please contact the sender\r\n> of the message to inform him or her of the error.\r\n>\r\n>\r\n>',1,0,0,0,0,0,'2025-12-04 03:34:52','2025-12-04 14:05:26','2025-12-04 14:05:26','2025-12-09 13:45:04',NULL,NULL,NULL),
(110,4,'<CAJO9__Y-hC_VZYNdUKLwS9G57YVzLkb_DzZ1g-cTiau3KYWjDw@mail.gmail.com>',NULL,NULL,'Re: Sol-Ark Preferred Prototype Specs','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Evening team,</div><div><br></div><div>Just spoke with Jarrett (added here).  He has those numbers broken down already.</div><div><br></div><div>Will get those over to you in the morning.  </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Dec 3, 2025 at 10:35 PM Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"auto\">Got it.  Will work on this tomorrow morning. </div><div dir=\"auto\"><br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_-9120908063171834998_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div><div><br></div><div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Dec 3, 2025 at 8:50 PM Brian Stufflebean &lt;Brian@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div><span style=\"font-size:14px\"><b>Nathan and Jordan, </b></span><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">I need to have the proposed Sol-Ark annual units, price per unit and total annual projected forecast for the next 5-years, broken out into an Excel table, by year. </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">We need this ASAP for meetings tomorrow (Thursday, 12/4/25)  afternoon. </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Need the same thing for Sonnen and Mitsubishi.</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Please place at high priority.  </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Thank you,</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Brian </span><br><div><div><br><blockquote type=\"cite\"></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div>On Nov 5, 2025, at 11:20 PM, Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:</div><br></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div></div></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div><div dir=\"auto\">Will respond more clearly tomorrow morning.  I want to make sure Nick is included with the communication.   </div><div dir=\"auto\"><br></div><div dir=\"auto\">The BMS could handle 300A for 15 seconds.  It is a heat dissipation issue from FETS.  It can be programmed in back end software.  </div><div dir=\"auto\"><br></div><div dir=\"auto\">Susan and Wilson have new relationship together so their working relationship and knowledge needs to be communicated.   </div><div dir=\"auto\"><br></div><div dir=\"auto\">Try not to be persuaded from GSL to accept their parameters.  Sol Ark is just setting their battery management system and cells to a better quality which will lower their after sales support and align the battery for better performance and balancing.  Chinese have very narrow scope and we need to be specific on laying out our requirements for the project. </div><div dir=\"auto\"><br></div><div dir=\"auto\">Let’s discuss tomorrow morning. <br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_-9120908063171834998_m_578106803208480977_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div><div><br></div></div></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div><div><br><div class=\"gmail_quote\"></div></div></div></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Nov 5, 2025 at 10:36 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div></div></div></div></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"></div></blockquote></div></div></div></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Good evening team.  </div><div><br></div><div>Back from Sol-Ark - BMS question. </div><div><br></div><div><span id=\"m_-9120908063171834998m_578106803208480977cid:ii_mhmv8y361\">&lt;image (7).png&gt;</span><br></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Is there any possibility of setting the Max Charge/Discharge at 200A to align with the performance targets we’re aiming for? I understand that maintaining 300A for 15 seconds may not be feasible, 15 seconds is a long duration, and most appliances don’t require that much ramp-up time. Could you share any data regarding the peak power capability for a shorter duration, such as 10ms or less?</span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">I reached out to Susan and Wilson on this.  The 16kWh battery can support 200Ah burst but not continuous.  The 314Ah cell is a .5C charge/discharge so they don&#39;t suggest continuous over 157A.  </span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">I want to confirm with you and see if you have any thoughts or ideas before I respond.  </span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Thanks,</span></div></div></blockquote></div></div></div></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"></div></blockquote></div></div></div></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\"><br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt\">Partner | President <br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Lithium Battery Company</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Direct: (917) 266-5336<br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\">Lithium Battery Company</a></span></div></div></div></div><br></div><br></blockquote></div></div></div></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"gmail_quote\"></div></blockquote></div></div></div></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Nov 3, 2025 at 2:10 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div></div></blockquote></div></div></div></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"></div></blockquote></div></blockquote></div></div></div></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Hi Nathan and team,</div><div><br></div><div>Here are the list of preferred prototype specs from Sol-Ark</div><div><br></div><div><div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\">Please see the below specs for the prototype battery for testing:</div><ul style=\"margin-top:0px;margin-bottom:0px\"><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">LBC512314</div></li><ul style=\"margin-top:0px;margin-bottom:0px\"><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Capacity: 16.1kWh</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Amp Hours (Ah): 314Ah</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Nominal Voltage: 51.2v</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Operating Range: 48v - 56v</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Max Continuous Charge: 200A Optimal | 150A Minimum</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Max Continuous Discharge: 220A Optimal | 200A Minimum</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Peak Discharge Current: 300A</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Communication Protocol: RS-485 Modbus RTU &amp; CANBUS<span style=\"font-size:11pt\"></span></div></li></ul></ul><div><font face=\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif\"><span style=\"font-size:14.6667px\"><br></span></font></div></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Here is a list of specs that would be comparable:</span><font face=\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif\"><span style=\"font-size:14.6667px\"></span></font></div></div></blockquote></div></blockquote></div></div></div></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div><span id=\"m_-9120908063171834998m_578106803208480977cid:ii_mhjik7da1\">&lt;image (5).png&gt;</span><br></div><div><br></div><div>I have reached out to Susan from GSL and shared the specs. I&#39;ve also inquired if this would be available from one of their dealers in the US.</div><div><br></div><div>Let me know if you have any other thoughts on what we should send thier way.</div><div><br></div><div>Best, </div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\"><br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt\">Partner | President <br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Lithium Battery Company</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Direct: (917) 266-5336<br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\">Lithium Battery Company</a></span></div></div></div></div></div>\r\n</blockquote></div>\r\n</blockquote></div></div>\r\n</div></blockquote></div><br><div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\">Best regards,</font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\" style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><b>Brian C. Stufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 Direct</b></div><div style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><span style=\"font-size:11px\">(866)896-2423 Fax</span></div></div><span style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"></span><br><span><img alt=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" src=\"cid:ii_19ae76cfe50d2422db41\" style=\"width: 108px; max-width: 100%;\"></span><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><br><a href=\"mailto:brian@mavrix.one\" target=\"_blank\">brian@mavrix.one</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><a href=\"https://mavrix1.com\" target=\"_blank\">https://mavrix1.com/</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"> This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.<br><br></span></div>\r\n</div>\r\n<br></div></div></div></blockquote></div></div>\r\n</blockquote></div>','Evening team,\r\n\r\nJust spoke with Jarrett (added here).  He has those numbers broken down\r\nalready.\r\n\r\nWill get those over to you in the morning.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Wed, Dec 3, 2025 at 10:35 PM Nathan Staron <\r\nNathan@lithiumbatterycompany.com> wrote:\r\n\r\n> Got it.  Will work on this tomorrow morning.\r\n>\r\n>\r\n>\r\n> <https://lithiumbatterycompany.com/>\r\n> <https://www.instagram.com/lithiumbatteryco/>\r\n> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n> <https://www.facebook.com/LithiumBatteryCompany/>\r\n> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n> <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074\r\n> Phone 844-GET-LITHIUM\r\n> Nathan@lithiumbatterycompany.com\r\n> Schedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>\r\n>\r\n>\r\n> On Wed, Dec 3, 2025 at 8:50 PM Brian Stufflebean <Brian@mavrix.one> wrote:\r\n>\r\n>> *Nathan and Jordan, *\r\n>>\r\n>> I need to have the proposed Sol-Ark annual units, price per unit and\r\n>> total annual projected forecast for the next 5-years, broken out into an\r\n>> Excel table, by year.\r\n>>\r\n>> We need this ASAP for meetings tomorrow (Thursday, 12/4/25)  afternoon.\r\n>>\r\n>> Need the same thing for Sonnen and Mitsubishi.\r\n>>\r\n>> Please place at high priority.\r\n>>\r\n>> Thank you,\r\n>>\r\n>> Brian\r\n>>\r\n>> On Nov 5, 2025, at 11:20 PM, Nathan Staron <\r\n>> Nathan@lithiumbatterycompany.com> wrote:\r\n>>\r\n>> Will respond more clearly tomorrow morning.  I want to make sure Nick is\r\n>> included with the communication.\r\n>>\r\n>> The BMS could handle 300A for 15 seconds.  It is a heat dissipation issue\r\n>> from FETS.  It can be programmed in back end software.\r\n>>\r\n>> Susan and Wilson have new relationship together so their working\r\n>> relationship and knowledge needs to be communicated.\r\n>>\r\n>> Try not to be persuaded from GSL to accept their parameters.  Sol Ark is\r\n>> just setting their battery management system and cells to a better quality\r\n>> which will lower their after sales support and align the battery for better\r\n>> performance and balancing.  Chinese have very narrow scope and we need to\r\n>> be specific on laying out our requirements for the project.\r\n>>\r\n>> Let’s discuss tomorrow morning.\r\n>>\r\n>>\r\n>> <https://lithiumbatterycompany.com/>\r\n>> <https://www.instagram.com/lithiumbatteryco/>\r\n>> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n>> <https://www.facebook.com/LithiumBatteryCompany/>\r\n>> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n>> <https://lithiumbatterycompany.com/>\r\n>> NATHAN A. STARON\r\n>> Founder / CEO\r\n>> Lithium Battery Company\r\n>> Cell Phone 813-504-0074\r\n>> Phone 844-GET-LITHIUM\r\n>> Nathan@lithiumbatterycompany.com\r\n>> Schedule A Zoom\r\n>> <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>>\r\n>>\r\n>>\r\n>> On Wed, Nov 5, 2025 at 10:36 PM Jordan Wroblewski <\r\n>> jordan@lithiumbatterycompany.com> wrote:\r\n>>\r\n>> Good evening team.\r\n>>>\r\n>>> Back from Sol-Ark - BMS question.\r\n>>>\r\n>>> <image (7).png>\r\n>>> Is there any possibility of setting the Max Charge/Discharge at 200A to\r\n>>> align with the performance targets we’re aiming for? I understand that\r\n>>> maintaining 300A for 15 seconds may not be feasible, 15 seconds is a long\r\n>>> duration, and most appliances don’t require that much ramp-up time. Could\r\n>>> you share any data regarding the peak power capability for a shorter\r\n>>> duration, such as 10ms or less?\r\n>>>\r\n>>> I reached out to Susan and Wilson on this.  The 16kWh battery can\r\n>>> support 200Ah burst but not continuous.  The 314Ah cell is a .5C\r\n>>> charge/discharge so they don\'t suggest continuous over 157A.\r\n>>>\r\n>>> I want to confirm with you and see if you have any thoughts or ideas\r\n>>> before I respond.\r\n>>>\r\n>>> Thanks,\r\n>>>\r\n>>\r\n>>> Jordan G. Wroblewski\r\n>>> Partner | President\r\n>>> Lithium Battery Company\r\n>>> Direct: (917) 266-5336\r\n>>> *jordan@lithiumbatterycompany.com\r\n>>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n>>>\r\n>>>\r\n>>> On Mon, Nov 3, 2025 at 2:10 PM Jordan Wroblewski <\r\n>>> jordan@lithiumbatterycompany.com> wrote:\r\n>>>\r\n>> Hi Nathan and team,\r\n>>>>\r\n>>>> Here are the list of preferred prototype specs from Sol-Ark\r\n>>>>\r\n>>>> Please see the below specs for the prototype battery for testing:\r\n>>>>\r\n>>>>    - LBC512314\r\n>>>>    - Capacity: 16.1kWh\r\n>>>>       - Amp Hours (Ah): 314Ah\r\n>>>>       - Nominal Voltage: 51.2v\r\n>>>>       - Operating Range: 48v - 56v\r\n>>>>       - Max Continuous Charge: 200A Optimal | 150A Minimum\r\n>>>>       - Max Continuous Discharge: 220A Optimal | 200A Minimum\r\n>>>>       - Peak Discharge Current: 300A\r\n>>>>       - Communication Protocol: RS-485 Modbus RTU & CANBUS\r\n>>>>\r\n>>>>\r\n>>>> Here is a list of specs that would be comparable:\r\n>>>>\r\n>>> <image (5).png>\r\n>>>>\r\n>>>> I have reached out to Susan from GSL and shared the specs. I\'ve also\r\n>>>> inquired if this would be available from one of their dealers in the US.\r\n>>>>\r\n>>>> Let me know if you have any other thoughts on what we should send thier\r\n>>>> way.\r\n>>>>\r\n>>>> Best,\r\n>>>>\r\n>>>> Jordan G. Wroblewski\r\n>>>> Partner | President\r\n>>>> Lithium Battery Company\r\n>>>> Direct: (917) 266-5336\r\n>>>> *jordan@lithiumbatterycompany.com\r\n>>>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n>>>>\r\n>>>\r\n>> Best regards,\r\n>>\r\n>>\r\n>>\r\n>> *Brian C. Stufflebean*\r\n>> CEO, Co-Founder\r\n>> *(941)545-4153 Direct*\r\n>> (866)896-2423 Fax\r\n>>\r\n>> [image: CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png]\r\n>>\r\n>>\r\n>> brian@mavrix.one\r\n>>\r\n>> https://mavrix1.com/\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>> *CONFIDENTIALITY NOTICE:* This communication is\r\n>> confidential and intended only for the intended recipient.  If you are not\r\n>> the intended recipient, you may not copy, disclose, or distribute this\r\n>> message to anyone else; any such actions may be unlawful. If you\r\n>> have received this communication in error, please contact the sender\r\n>> of the message to inform him or her of the error.\r\n>>\r\n>>\r\n>>',1,0,0,0,0,0,'2025-12-04 03:51:04','2025-12-04 14:05:27','2025-12-04 14:05:27','2025-12-04 14:45:37',NULL,NULL,NULL),
(114,1,'<1764860348.1@erp>',NULL,NULL,'Test','admin@mavrix.one','Admin User','<p>Test</p>\r\n<p></p>\r\n<table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n<div style=\"margin-bottom: 10px;\"><strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span></div>\r\n<div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\"><img src=\"cid:company_logo\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong><br><em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br><em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br><em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br><em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Test\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\n\r\n',1,0,0,0,0,0,'2025-12-04 14:59:08','2025-12-04 14:59:08','2025-12-04 14:59:08','2025-12-04 14:59:08',NULL,NULL,NULL),
(115,1,'<LwaL0dLXDuxDiazC6DLwLl83f4F6iDBlD5S8ptZ89A@localhost>',NULL,NULL,'Test','contact@mavrix.one','Mavrix1','--b2=_LwaL0dLXDuxDiazC6DLwLl83f4F6iDBlD5S8ptZ89A\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<p>Test</p>\r\n<p></p>\r\n<table style=3D\"width: 100%; max-width: 600px; border-collapse: collapse; f=\r\nont-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=3D\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=3D\"width: 100%; border-collapse: collapse; padding-top: 15px;\"=\r\n>\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=3D\"vertical-align: top; padding-left: 20px; border-left: 2px soli=\r\nd #e0e0e0;\">\r\n<div style=3D\"margin-bottom: 10px;\"><strong style=3D\"font-size: 14px; color=\r\n: #0066cc;\">Admin User</strong><br><span style=3D\"font-size: 12px; color: #=\r\n666;\">Administrator</span></div>\r\n<div style=3D\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=3D\"mailto:admin@mavrix.one\" style=3D\"color: #0066cc; text-deco=\r\nration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=3D\"https://mavrix1.com\" style=3D\"color: #0066cc; text-decorati=\r\non: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=3D\"width: 200px; vertical-align: middle; text-align: center; padd=\r\ning-top: 10px;\"><img src=3D\"cid:company_logo\" alt=3D\"Mavrix1\" style=3D\"max-=\r\nwidth: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=3D\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1=\r\n.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=3D\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=3D\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFI=\r\nDENTIALITY NOTICE:</strong><br><em>This communication may contain confident=\r\nial information. Unauthorized review, use, disclosure, or distribution is p=\r\nrohibited.</em><br><br><em>This communication, including any attachments, m=\r\nay contain confidential, privileged, or Controlled Unclassified Information=\r\n (CUI) protected under federal law. It is intended solely for the use of th=\r\ne designated recipient(s). Any unauthorized review, use, disclosure, distri=\r\nbution, or copying is strictly prohibited and may be unlawful.</em><br><br>=\r\n<em>If you are not the intended recipient, please notify the sender immedia=\r\ntely, delete this email, and destroy all copies.</em><br><br><em>Unless exp=\r\nressly stated, the views and opinions expressed herein are those of the sen=\r\nder and do not necessarily reflect those of the sender=E2=80=99s employer o=\r\nr any U.S. Government agency. All recipients are responsible for handling i=\r\nnformation in accordance with applicable federal regulations, including but=\r\n not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n--b2=_LwaL0dLXDuxDiazC6DLwLl83f4F6iDBlD5S8ptZ89A\r\nContent-Type: image/png; name=logo_1762869843.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <company_logo>\r\nContent-Disposition: inline; filename=logo_1762869843.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAuwAAACiCAYAAAAa7ZjJAAAACXBIWXMAAAsSAAALEgHS3X78AAAV\r\nP0lEQVR4nO3dT1LcStbG4Te/8BzvgOoVgGfNiLoroG40Mw8oVgBegfEKKFZAEdHMHOFiBS5GHrpY\r\nQcMK2qwgv4FO0TLmX5XySCnp90R0dIejndK9NtKrzJMnQ4xRAAAAAHzt7F+OJU0kbazy+/7P5W4A\r\nAAAAPNjZvzyRdK4Vw7okvUt+NwAAAAAkSTv7l+9VzKofrDsGgR0AAABwYGF9LmmryjiUxAAAAACJ\r\n7exfbktaqGJYlwjsAAAAQFI7+5cjFTPrmynGI7ADAAAAiezsXx5L+qY1Npc+hxp2AAAAIIGd/cup\r\nKmwufQ6BHQAAAKjANpfOJO16jE9JDAAAALAm21w6l1NYl5hhBwAAANays385VDGznqxe/SnMsAMA\r\nAAAr2tm/HEv6LuewLhHYAQAAgJXs7F9OJJ3XdT1KYgAAAIA3sM2lU0l7dV6XwA4AAAC8Ymf/cqCi\r\nXr3yyaWrIrADAAAALyh1gnGvV38KNewAAADAM2xz6U81FNYlAjsAAADwpJ39yxPVuLn0OZTEAAAA\r\nACW2uXQi6aDpe5EI7AAAAMADC+tzNbC59DmUxAAAAAB62Fx6q4zCukRgBwAAALSzfzlSg51gXkJg\r\nBwAAQK/t7F8eS/qmDMO6RA07AAAAemxn/3KqTDaXPofADgAAgN7JcXPpc8I///XvgaRxw/cBAAAA\r\nPOnH148nKcezzaVTtSCsS8UM+0DS54bvAwAAAHjsXtIo5YA7+5dDSTPVU69+Z/+9WWUQNp0CAAAg\r\nRzeShj++fpynGnBn/3Is6bvqCetXkpZtIiuhhh0AAAC5uZY0+vH1469UA9a8ufTTj68fJ3bdyoMR\r\n2AEAAJCTsx9fPx6nGsw2l84k7aYa8wV3Kj40FikHpSQGAAAAuThMHNYHKjrB1BHWryRtpw7rEjPs\r\nAAAAaN69inr1ZGHXOsHMVU+9+kMJjAdm2AEAANCkGyWembbNpT/lH9bvJH3wDOsSgR0AAADNuVIx\r\ns36basCd/cuJpPNU473ArQTmMUpiAAAA0ASPzaUT+XeCuZd04j2rXkZgBwAAQJ3uJR3/+PpxmmpA\r\nC+tz+Z9ceiNpXMesehmBHQAAAHVp8+bSCxUfGsl6w78VgR0AAAB1WJ5cmvIwpLGKMhjPsJ58RWBV\r\nbDoFAACAtwulD+vHKjaXeob15UfG1PEar2KGHQAAAJ6+/Pj68STlgDv7l1P5by5trATmMQI7AAAA\r\nPNyr2KA5SzVgTZtLU5fAVA78KQL7vaRad8oCAAAge8cOm0tnkjZTjfkEjy4wC0l7VQZIEdgXP75+\r\nHCYYBwAAAHjJ2Hn8RQ4lMI9REgMAAIDs1d37PCd0iQEAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAy\r\nRmAHAAAAMkZgBwAAADJGYAcAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAyRmAHAAAAMkZgBwAAADJG\r\nYAcAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAy9q6Oi4QQhpKGdVwLrbWQ9CvGOG/6RiQphHDS9D10\r\n1K39ZxFj/OVxgRDCSNK2x9iSJl73jW7+2YUQtiW9V3/fgdMY4+1r/6cQwljSINVFY4wnVX5/CGEg\r\naZzgVp4zizEuHMfPiv0cjBwv8aa/Z21WS2BX8aD6XNO10GIhBEm6kTRf/qehgMTfV2chhDsVH2oz\r\nFX/Ot4mGnkuaSNpMNF6ZZ6DsNXuhTyVtOAx/WNdzpBRMhpJ267hm5uYqPtJfM1baf18nFX//QL7v\r\ngeMQwnGMcep4jSzYx9i582Xmetvfs9aiJAY52pJ0JOmbpP+GEKa2SoNu2ZS0p+JB/p8QwiKEMA4h\r\nvK8yqAWzkaT7BPf42FYIYeowbq/Zn/lcPmH9wjsUhRAGIYRJCOFW0k8VQY+w3m638nmGLG1IOg8h\r\nTByv0agQwnt7XnqH9Tt1PKxLBHa0w4Gk7yGEW1syRzdtqXiw34YQTqoEd1tqHqe6sUcOQgjHTmP3\r\n1Vw+Yf06xjh2GFfSQ1CfSvqPikkGj1UdNMBW/AaSrp0vdWSTFZUmKnJjJUVzFe9vT1eStrteDiMR\r\n2NEum5K+hRDmtuyMbtpQMUNZ6QMtxjiT9CnZXf3ulFWfNCzwbjkMfSenmlmbOZyoCOregQQNiTH+\r\nijEOJZ05X2pLxfNu6HydWthzeyGfn+uyLzHGUV/2FRHY0Ua7kn4yy9l5Gyo+0Gbrzj7FGCeSLtLe\r\n1oMZH47V2M+wR+C9l+TyIrc/84WKGXX0QIzxWNKh/Etkvrf9vWYNG77JZ8Vs6V7S31U3FrcNgR1t\r\ndko9cS/sSZrbEus6jlVsZE5tQ9K0a0vZdbHZxFOn4cceHThs89xPUfrSO7YPYiifZ0nZaZVJiqbY\r\nqtNc/g0bblSUwMycr5MdAjva7oDQ3gtbkhbrzGjbLOtQTptQVXQ2wQrsz9HrhfvJ42VeU6cLZMw+\r\nAocq6qY9LScpWrGCV1p18t5ofSFp2Id69acQ2NEFhPZ+WHtG2zm079G3/+3sz28qv44wybtuWE0u\r\nYR3LuvaRpC/Ol9pSEdrHzteppMZVp8MY47gv9epPIbCjKw7oINMLa89o2+yYV33o59xfrBmZymcz\r\n2o1HRxgrxZqmHhftZvXTf6mnrR9rbNl4L+lDH/rVv4bAji6ZtK3uD2vZW7ebgj30vWbGJm1Zwm6K\r\nBY89h6Hv5HeS6Il8N9Chpexk7m3517Vn1fqxxpaN15IGfToR9iUEdnTJpnyPkkY+Ttb9jTYz5tE5\r\nZkNF55gsXqq5sRUIj84qnh1hBqJtI15g9dRD+XWjWsqi9aNdv46WjWcxxmGfS2AeI7Cja8ZN3wBq\r\nsVuha4zk1zlmU8XME0ps5cFrWf/YcQau1S32UA+rax+raP3oqdHWj7ZX57vqadnIz94j75q+gYqu\r\nVHzptcVQvruob+TXecHDttIvj2+FEAYJdpF7byjqk4GKA2xSP+RHWjMExhh/lQ73SH1fWyGEqecJ\r\nm21iKw5z+bzkvzjXtg4dxrxR8e+jLzOHt03fQF1ijNMQwkJ+f9+Xlge31bIJs7RR3KOcrexGTi1Z\r\nu6Ctgb21f6g20zRX2h/m5ZLwPOGYtbBZ0pnSLq8NVPEl0bcDGbzZA3+itOUFgyq/Oca4XF7+meRu\r\nfncQQpizUUqSX3i5qOHnNPWy/yF/J7otxrgovdc8J+iWrR9ds1CpBat3F5gr1fQB0lZtLYk5aWNY\r\nlx46VYwTDztpY1iXHur/6O7ScfYQPlbajgqVN3jaz6PXMvZ50/WmTbMuEi4dYdS+cpULwno/WInM\r\nUNKZ86VcWz/auHP5h/VPMUaXfShd0srA3oETrlL/pZwnHq9WfT0EoW/sYZzdh7aFKK8X66xirX1r\r\nWZ2tx4bNexWHp7Tt5X7b9A2gXlaHfagWtn4stWz0rlf/y+PshC5qZWAHgJTsxepxemEvO8fYysKp\r\nw9BtDevoKZsQGKqe1o/zqs+aEMLA6vC9uyPdqGjZOHe+TmcQ2AGgMJbPS3VLfh1SslOqefXg2REG\r\ncGF/Z4fymRQo21XR+nGtcsEaWzZexBi3+fBeDYEdAPRQsjOSz/L1gbVE67RSNwmPZfQzasDRVlbX\r\nPpJ/B7INST9Xbf1YY8vGQzporYfADgDGeRP0Z2sl2WVT+czOXdGXGV1gnY3+km9du1S0fpy+ViIT\r\nQngfQphJ+ux8P3cqytmmztfpLAI7AJRYTaVX55jpusvVubNNbx59mm/EgWjoEHvGbMu/rv1ARReZ\r\nJ5859usL+fdXv5K0TTlbNQR2AHjEZoE8jhrv5CZUa/925DD08owJal3RKbaaN5TPc6Zs2frxt9W9\r\nGls2fqFlYxoEdgB4gtVZXjsMval2nUj8IpulO3cafkjbV3SV1bWPJX1yvtSGpG/L1o81tmz8m0MI\r\n0yGwA8DzRvJZtt5N3Te5CbZSMHca/pAldPSB9SH/IP+69qMQwi/V07JxuwNn5mSFwA4Az7Bl3LF8\r\nXqRHXicU1qEU1ukIA1RkH6cD+de1e86qS0WJDytjDgjsAPACe5F6dXc5b/Em1InoCAMkYyUy2/I7\r\nednbYYxxTL26DwI7ALzCujp41ZlWPp2wbtbj2WNZnY4w6D37YD2Uf4lMKveSPrAq5utd0zcA5KgP\r\nh9w0ZND0Dawrxjix2fDUQXVDRWgftmFmyrpNnDoMfS+J2TlARaeqEMJCxQZ1704uVVyLTk61ILAD\r\nT/M+RAItFGMcW2hPXQqypaLEZJx43KTsn33qNPyITabA/8QYF6WfOe9e6es4o3ytPpTEAMBqhipO\r\n7UvtYNXjxOtkZTtT+WxaO7SyIwAlVtc+kvSl6XspWbZszPZ51UUEdgBYgS39juRTX3r6+ICTjMzk\r\ns8n0gtpX4GXWz/xvNV/XfqOiCwwtG2tGYAeAFVnpxthp+GlunWOsZ/yuw9DXdnAMgFdYSN6Wf+vH\r\n51ypCOuUrjWAwA4Aa7CXp0fnmA0VoT2LzjHWK/7IYegb+bXLBDrJ+psPVfQ7r9OnGCObSxtEYAeA\r\nNdkJhR4vzi35be58M5vpP3cYmo4wwJqsrn2s+mbaz+xZhwYR2AGgAscX556VojSidJKphzHL6sB6\r\nQgjvQwhz+ewpecpRk88iFAjsAFDdUD6bwY6sJKVWpbDu0RHmExvWgPXYqtdcPntKXnIUQmjdIW9d\r\nQmAHgIqstGMon9A+aWAT6kR+HWGYqQPWYB2k5qpvZv2xXUmL3DbF9wWBHQASsBIPj77Ey5NQa5nZ\r\nsl7wqU9zlaQbOsIA67HTt7/JZ9VrFZsqnkdsGK8ZgR0AErF+4h4HnGzIr578gb2ETx2GvlOxAgFg\r\nBVavPlVep29vSPpmHxGoCYEdABKyA05cOsfYi9tF6Qj01O4l0Q4OWFEIYaDiQ91jxSuFzyGEGXXt\r\n9XjX9A0APXCtGmZHW2KsYkm1645VHHCSutb0IISwSF0Hbi/cqXyW2+kIA6yotLm06RKY1+zJSmSs\r\nRzycENgBf3Obde29EMJQPQjsMcZf9s96q/Qv3FML7fOEY87ks5HtCx1hgNVYZyiP8w+8bKnYjDpK\r\n/FxCCSUxAOCg1DnGw8yWyyuz/soeLeIu+FAFVmNlb20K60sbkr7bpnU4ILADgBMrBTl0GHpDRWiv\r\nVDtqM3lHSe7odzfy6ZgDdJJtLl3Iv179znn8U8+9Nn1GYAcAR9Y55sxh6C1V2CRqNbIeM3n3koZs\r\nMgXexn4WF/Lvr/4pxjiQTyersoMQwoLNqGkR2AHAWYzxWNKVw9B767RWK51kmhphHViBrXLN5bu3\r\n517SX8vN6laq9rd8Dnpb2pJ0yyFL6RDYAaAeYxWlIql9tpf+m5TCukf3iWM6wgBvYx/b5/LtBHOj\r\n4iN6Xv5F2ww+lG+JzIakn6s8n/A8AjsA1MBmnUfymdWarDCTNZFfR5ipw7hAp1i9+kz+hyFdqQjr\r\nT35E269vq2g97OmcuvbqCOwAUBPrUzx0GPpNm1Ctg4PHprYrOsIAryv1V99zvtRZjPHVA8tijL9i\r\njEP5HPZWdhBCmFPXvj4COwDUyLFzzKZeqEsPIYwknTpc90ZFuQ+AF9jZDHP5bi69l3Ro+2beLMY4\r\nls9zqWxXRb926trXQGAHgJpZ6YjHjNbWU0vP9oL849cTuJf06iwe0He2uvVdvvXqy03f03V+s/2+\r\nD/LdjLqp4mTUseM1OonADgANsBktj9rRg/LL0Jagp/IJCkOOIwdeZh/RHqtbZTeSBlU3fZfq2j02\r\nyC9tqKhrP3G8RucQ2AGgOSP5vBjPS8vOM/kswR/SEQZ4Xo2HIV3EGLdTrXSV9tp417V/DiFUPgCu\r\nLwjsgL9R0zeAPNkLdiyfJei5daLYdRj7jI4wwPPsg/lW9RyGNE49qG1GHcv/kKU9Fc8q6tpfQWAH\r\nnpayVGHL6heBP9gstcdH3YZ8OlFcrbqhDegTK0n7Kf969YfDkLzUeMjS3Dbl4hnvmr4BIFOpN9Gd\r\nWmifJh63bQZN30COYozzEMKhikNUckZHGOAFIYSJpCPny9xIGtdVkhZjnFmYnsnvRNYNSd9DCJ+8\r\nP0LaisAOPG2m9LOTm/I/KAMtFWOc2kvRu951XfcqQgIdYYBHrA7bqwSt7EoN/BzGGJftGL3/GU/t\r\nOsc8a35HSQzwtJl8lwCBP1jNqGd3hipGbDIF/lQ6DMk7rL/pMCQvdR6ypKJEhs2oJQR24An2QGRZ\r\nDk0YSrpr+iYeOYwxzpu+CSA3diDZXBkehuSlpkOWtiTdshn1fwjswPMmyi84oePsY3GkfFZ4LugI\r\nA/zJ+oh/U8aHIXmp6ZClDUk/OWSpQGAHnlEKTkCtrPRk3PR9SLr2aBkHtJn1V5/Kf09SksOQvNR0\r\nyJJUnCsxdb5G9gjswAvsgeS99Af8IcY4k/SpwVu4ER+swG9CCAMVJTCtOgzJS42HLB2EEBZ9rmsn\r\nsAOvsKW/Q+VTooCesPZm3i/Cp9ARBnjE6qkXaulhSF5qPGRpS9Kir3XtBHbgDSy0D5VvBw90VEOd\r\nY2rr8Qy0QZcOQ/JS0yFLmyo6yIwdr5ElAjvwRhZghpLOGr4V9M9Q9a3wfLJyHACSrH7a+1CzGxWb\r\nS+fO13Flz46hfBs2bKioa2/lh826COzACmzp71jSP9RMqQJ6yEpThvIP7Rdtnd0DUrPNpQv516tf\r\nqQjrnVjVKm1GvXa+1FEIYdaXunYCO7CGGOOtlSr8Q8WMO+0f4cpegp59mG/aVDcLeLLNpXXUqzd6\r\nGJKXGg9Z2lNRIjNwvk7jCOxABRbcj2OMAxU9ab/If1YBPWV7KTw2dt2pmMEHUBioqJf2ktVhSF5q\r\nPGRp4HyNxr2r6Tq3IsSU/VLafx9d+DJv/b8PmwF9WNK0newDFUuDsv89qPu+OqwTy8erijGe2BJw\r\nyk4Jx12b4Usk5XPpNuFYXZTbz3Pq9/Rjx10pgXlNjHFqpUWe5Xa5P78q/1mHf/7r30NJ3yuMcf3j\r\n68dh1RsBAAAAumZn/3KoalmbkhgAAAAgZwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAAIGMEdgAA\r\nACBjBHYAAAAgYwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAA\r\nIGPvEoyxu7N/GROMAwAAAOARZtgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAAgIwR2AEA\r\nAICMEdgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAA\r\ngIwR2AEAAICMvZN0K+lLw/cBAAAA4An/D+pVjENe+oQjAAAAAElFTkSuQmCC\r\n\r\n--b2=_LwaL0dLXDuxDiazC6DLwLl83f4F6iDBlD5S8ptZ89A--','Test\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.',0,0,0,0,0,0,'2025-12-04 14:59:05','2025-12-04 14:59:09','2025-12-04 14:59:09','2025-12-04 14:59:09',NULL,NULL,NULL),
(122,4,'<1764864596.4@erp>',NULL,NULL,'Test','rick@mavrix.one','Rick M','<p>Test</p>\r\n<p></p>\r\n<table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n<div style=\"margin-bottom: 10px;\"><strong style=\"font-size: 14px; color: #0066cc;\">Rick M</strong><br><span style=\"font-size: 12px; color: #666;\">Chief Technology Officer</span></div>\r\n<div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=\"mailto:rick@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">rick@mavrix.one</a></div>\r\n<div>Mobile: 5857979473</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\"><img src=\"cid:company_logo\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong><br><em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br><em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br><em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br><em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Test\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nRick MChief Technology Officer\r\n\r\nrick@mavrix.one\r\nMobile: 5857979473\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\n\r\n',1,0,0,0,0,0,'2025-12-04 16:09:56','2025-12-04 16:09:56','2025-12-04 16:09:56','2025-12-04 16:09:56',NULL,NULL,NULL),
(128,1,'<ntujNk40OF6Z6UM21407WBqjg5LAE6ShuOnwe0L4YM@localhost>',NULL,NULL,'Test','contact@mavrix.one','Mavrix1','--b2=_ntujNk40OF6Z6UM21407WBqjg5LAE6ShuOnwe0L4YM\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<p>Test</p>\r\n<p></p>\r\n<table style=3D\"width: 100%; max-width: 600px; border-collapse: collapse; f=\r\nont-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=3D\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=3D\"width: 100%; border-collapse: collapse; padding-top: 15px;\"=\r\n>\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=3D\"vertical-align: top; padding-left: 20px; border-left: 2px soli=\r\nd #e0e0e0;\">\r\n<div style=3D\"margin-bottom: 10px;\"><strong style=3D\"font-size: 14px; color=\r\n: #0066cc;\">Rick M</strong><br><span style=3D\"font-size: 12px; color: #666;=\r\n\">Chief Technology Officer</span></div>\r\n<div style=3D\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=3D\"mailto:rick@mavrix.one\" style=3D\"color: #0066cc; text-decor=\r\nation: none;\">rick@mavrix.one</a></div>\r\n<div>Mobile: 5857979473</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=3D\"https://mavrix1.com\" style=3D\"color: #0066cc; text-decorati=\r\non: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=3D\"width: 200px; vertical-align: middle; text-align: center; padd=\r\ning-top: 10px;\"><img src=3D\"cid:company_logo\" alt=3D\"Mavrix1\" style=3D\"max-=\r\nwidth: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=3D\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1=\r\n.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=3D\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=3D\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFI=\r\nDENTIALITY NOTICE:</strong><br><em>This communication may contain confident=\r\nial information. Unauthorized review, use, disclosure, or distribution is p=\r\nrohibited.</em><br><br><em>This communication, including any attachments, m=\r\nay contain confidential, privileged, or Controlled Unclassified Information=\r\n (CUI) protected under federal law. It is intended solely for the use of th=\r\ne designated recipient(s). Any unauthorized review, use, disclosure, distri=\r\nbution, or copying is strictly prohibited and may be unlawful.</em><br><br>=\r\n<em>If you are not the intended recipient, please notify the sender immedia=\r\ntely, delete this email, and destroy all copies.</em><br><br><em>Unless exp=\r\nressly stated, the views and opinions expressed herein are those of the sen=\r\nder and do not necessarily reflect those of the sender=E2=80=99s employer o=\r\nr any U.S. Government agency. All recipients are responsible for handling i=\r\nnformation in accordance with applicable federal regulations, including but=\r\n not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n--b2=_ntujNk40OF6Z6UM21407WBqjg5LAE6ShuOnwe0L4YM\r\nContent-Type: image/png; name=logo_1762869843.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <company_logo>\r\nContent-Disposition: inline; filename=logo_1762869843.png\r\n\r\n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\r\n\r\n--b2=_ntujNk40OF6Z6UM21407WBqjg5LAE6ShuOnwe0L4YM--','Test\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nRick MChief Technology Officer\r\n\r\nrick@mavrix.one\r\nMobile: 5857979473\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.',0,0,0,0,0,0,'2025-12-04 16:09:55','2025-12-04 16:18:59','2025-12-04 16:18:59','2025-12-04 16:18:59',NULL,NULL,NULL),
(130,1,'<1764866274.1@erp>',NULL,NULL,'Test','admin@mavrix.one','Admin User','<p></p>\r\n<p></p>\r\n<table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n<div style=\"margin-bottom: 10px;\"><strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span></div>\r\n<div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\"><img src=\"cid:company_logo\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong><br><em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br><em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br><em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br><em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\n\r\n',1,0,0,0,0,0,'2025-12-04 16:37:54','2025-12-04 16:37:54','2025-12-04 16:37:54','2025-12-04 16:37:54',NULL,NULL,NULL),
(131,1,'<rl8NJR70YxnAMViftpsvGWN8SlXZNq8IbssOmQVjNfc@localhost>',NULL,NULL,'Test','contact@mavrix.one','Mavrix1','--b3=_rl8NJR70YxnAMViftpsvGWN8SlXZNq8IbssOmQVjNfc\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<p></p>\r\n<p></p>\r\n<table style=3D\"width: 100%; max-width: 600px; border-collapse: collapse; f=\r\nont-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=3D\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=3D\"width: 100%; border-collapse: collapse; padding-top: 15px;\"=\r\n>\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=3D\"vertical-align: top; padding-left: 20px; border-left: 2px soli=\r\nd #e0e0e0;\">\r\n<div style=3D\"margin-bottom: 10px;\"><strong style=3D\"font-size: 14px; color=\r\n: #0066cc;\">Admin User</strong><br><span style=3D\"font-size: 12px; color: #=\r\n666;\">Administrator</span></div>\r\n<div style=3D\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=3D\"mailto:admin@mavrix.one\" style=3D\"color: #0066cc; text-deco=\r\nration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=3D\"https://mavrix1.com\" style=3D\"color: #0066cc; text-decorati=\r\non: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=3D\"width: 200px; vertical-align: middle; text-align: center; padd=\r\ning-top: 10px;\"><img src=3D\"cid:company_logo\" alt=3D\"Mavrix1\" style=3D\"max-=\r\nwidth: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=3D\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1=\r\n.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=3D\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=3D\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFI=\r\nDENTIALITY NOTICE:</strong><br><em>This communication may contain confident=\r\nial information. Unauthorized review, use, disclosure, or distribution is p=\r\nrohibited.</em><br><br><em>This communication, including any attachments, m=\r\nay contain confidential, privileged, or Controlled Unclassified Information=\r\n (CUI) protected under federal law. It is intended solely for the use of th=\r\ne designated recipient(s). Any unauthorized review, use, disclosure, distri=\r\nbution, or copying is strictly prohibited and may be unlawful.</em><br><br>=\r\n<em>If you are not the intended recipient, please notify the sender immedia=\r\ntely, delete this email, and destroy all copies.</em><br><br><em>Unless exp=\r\nressly stated, the views and opinions expressed herein are those of the sen=\r\nder and do not necessarily reflect those of the sender=E2=80=99s employer o=\r\nr any U.S. Government agency. All recipients are responsible for handling i=\r\nnformation in accordance with applicable federal regulations, including but=\r\n not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n--b3=_rl8NJR70YxnAMViftpsvGWN8SlXZNq8IbssOmQVjNfc\r\nContent-Type: image/png; name=logo_1762869843.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <company_logo>\r\nContent-Disposition: inline; filename=logo_1762869843.png\r\n\r\n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\r\n\r\n--b3=_rl8NJR70YxnAMViftpsvGWN8SlXZNq8IbssOmQVjNfc--','\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.',1,0,0,0,0,0,'2025-12-04 16:37:49','2025-12-04 16:38:07','2025-12-04 16:38:07','2025-12-04 16:38:13',NULL,NULL,NULL),
(138,1,'<etPan.6932112f.659bb999.3cc3@mavrix.one>',NULL,NULL,'Demo - Top 10!','rick@mavrix.one','Rick','(No content)','(No content)',0,0,0,0,0,0,'2025-12-04 22:54:34','2025-12-04 22:54:48','2025-12-04 22:54:48','2025-12-04 22:54:48',NULL,NULL,NULL),
(139,1,'<etPan.69321177.2f8aaec3.3cc3@mavrix.one>',NULL,NULL,'$9B Drone Order- Open Quick','rick@mavrix.one','Rick','(No content)','(No content)',1,0,0,0,0,0,'2025-12-04 22:55:50','2025-12-04 22:55:58','2025-12-04 22:55:58','2025-12-04 23:06:12',NULL,NULL,NULL),
(143,4,'<CAGOCFXhQuabNsWOWXieM6uf9F6h3_tky3TaRVuvy0ffa9cnH+w@mail.gmail.com>',NULL,NULL,'Re: Fwd: Inventory + Quantity','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>Here is an explanation for you.  Let me know if you have any questions. <br><br>(LBC) - Manufacturer <br>(2450) - 24V 50AH - Related to the voltage and capacity of the battery<br>(C) - Custom Battery</div><div>(M) - Marine Battery<br>(TM) - Identified a battery used for a company we sold for.  <br>(CC) Cold Crank - Starting Battery<br>(WBMS-SF) - Wilson BMS Manufacturer. <br><br><br><blockquote type=\"cite\" style=\"font-family:UICTFontTextStyleBody;font-size:14px\"><div dir=\"ltr\"><div dir=\"ltr\"><div>LBC10 - 34 - <a href=\"https://lithiumbatterycompany.com/catalog/12v-10ah-lithium-ion-battery/\">https://lithiumbatterycompany.com/catalog/12v-10ah-lithium-ion-battery/</a><br>LBC20 - 3 - <a href=\"https://lithiumbatterycompany.com/catalog/12v-20ah-lithium-ion-battery/\">https://lithiumbatterycompany.com/catalog/12v-20ah-lithium-ion-battery/</a><br>LBC2460M - 4 - <a href=\"https://lithiumbatterycompany.com/catalog/24v-60ah-lithium-ion-battery-with-connectivityhtml/\">https://lithiumbatterycompany.com/catalog/24v-60ah-lithium-ion-battery-with-connectivityhtml/</a><br>LBC2475TM - 24 - <span style=\"font-family:Arial,Helvetica,sans-serif;font-size:small\">Customized for customer (private labeled) no link<br></span><span style=\"font-family:Arial,Helvetica,sans-serif;font-size:small\">LBC2450M - 1 - Outdated and replaced with LBC2460M<br></span><span style=\"font-family:Arial,Helvetica,sans-serif;font-size:small\">LBC-1220CC - 9 -  <a href=\"https://lithiumbatterycompany.com/catalog/12v-20ah-starting-lithium-ion-battery/\">https://lithiumbatterycompany.com/catalog/12v-20ah-starting-lithium-ion-battery/</a><br></span><span style=\"font-family:Arial,Helvetica,sans-serif;font-size:small\">LBC-2B1224C - 6 - </span><span style=\"font-family:Arial,Helvetica,sans-serif;font-size:small\">Customized for customer (private labeled) no link<br></span><span style=\"font-family:Arial,Helvetica,sans-serif;font-size:small\">LBC-2B1236C -13 - </span><span style=\"font-family:Arial,Helvetica,sans-serif;font-size:small\">Customized for customer (private labeled) no link<br></span><span style=\"font-family:Arial,Helvetica,sans-serif;font-size:small\">LBC-2420C - 4 - </span><span style=\"font-family:Arial,Helvetica,sans-serif;font-size:small\"><a href=\"https://lithiumbatterycompany.com/catalog/24v-20ah-lithium-ion-battery/\">https://lithiumbatterycompany.com/catalog/24v-20ah-lithium-ion-battery/</a><br></span><span style=\"font-family:Arial,Helvetica,sans-serif;font-size:small\">LBCWBMS-SF - 4 - Private No Link </span></div></div></div></blockquote></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Nov 14, 2025 at 5:25 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">Can I get a more formal descipotion or table of what these are:</div><div style=\"font-family:Helvetica,Arial;font-size:13px\"><br></div><div style=\"font-family:Helvetica,Arial;font-size:13px\"><blockquote type=\"cite\" style=\"font-family:UICTFontTextStyleBody;font-size:14px\"><div dir=\"ltr\"><div dir=\"ltr\"><div>LBC10 - 34<br>LBC20 - 3<br>LBC2460M - 4<br>LBC2475TM - 24<br>LBC2450M - 1<br>LBC-1220CC - 9<br>LBC-2B1224C - 6<br>LBC-2B1236C -13</div><div>LBC-2420C - 4<br>LBCWBMS-SF - 4 </div></div></div></blockquote><br></div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Are the values associated with them?</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Are these actual Model numbers of products we own to sell?</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Just need details and clarity, imagery would help too…</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Thanks!</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Rick</div> <br> <div class=\"gmail_signature\">\r\n        \r\n     \r\n    <br>\r\n     \r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD, </span><div style=\"font-family:Helvetica,Arial\">Founder, CTO</div><div style=\"font-family:Helvetica,Arial\"><div><div><img src=\"cid:ii_19a8483de01fcc4344d1\" style=\"max-width: 99%;\"><br></div><div><a href=\"https://mavrix1.com/\" target=\"_blank\">https://mavrix1.com</a></div></div><div><br></div><div><div>CONFIDENTIALITY NOTICE</div><div>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</div><div><br></div><div>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</div><div><br></div><div>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</div></div></div></div></div> <br><p>On November 14, 2025 at 3:33:59 PM, Brian C. Stufflebean (<a href=\"mailto:brian@mavrix.one\" target=\"_blank\">brian@mavrix.one</a>) wrote:</p> <blockquote type=\"cite\"><span><div dir=\"auto\"><div></div><div><br id=\"m_-3474435634480117714lineBreakAtBeginningOfSignature\"><div dir=\"ltr\">Sent from my iPhone</div><div dir=\"ltr\"><br>Begin forwarded message:<br><br></div><blockquote type=\"cite\"><div dir=\"ltr\"><b>From:</b> Nick Powell &lt;<a href=\"mailto:nick@lithiumbatterycompany.com\" target=\"_blank\">nick@lithiumbatterycompany.com</a>&gt;<br><b>Date:</b> November 14, 2025 at 3:30:49 PM EST<br><b>To:</b> Katherine Aponte &lt;katherine@mavrix.one&gt;, jarrett@mavrix.one<br><b>Cc:</b> Brian Stufflebean &lt;Brian@mavrix.one&gt;<br><b>Subject:</b> <b>Re: Inventory + Quantity</b><br><br></div></blockquote><blockquote type=\"cite\"><div dir=\"ltr\">﻿<div dir=\"ltr\">Update: Inventory has been updated. Cost variables have been cancelled out and accurate physical inventory has been implemented. <br><br>Here are the final quantities for relevant inventory items:<br><br><div>LBC10 - 34<br>LBC20 - 3<br>LBC2460M - 4<br>LBC2475TM - 24<br>LBC2450M - 1<br>LBC-1220CC - 9<br>LBC-2B1224C - 6<br>LBC-2B1236C -13</div><div>LBC-2420C - 4<br>LBCWBMS-SF - 4 </div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Nov 14, 2025 at 2:34 PM Nick Powell &lt;<a href=\"mailto:nick@lithiumbatterycompany.com\" target=\"_blank\">nick@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Here are the products currently in inventory. If you see any products in QuickBooks (inventory) showing a quantity but not listed here, please mark the quantity as 0. Also, if any item in QuickBooks (inventory) has a quantity but is not a battery, charger, or Wilson BMS, mark it as 0, as we will not be selling those items.<br><br>Batteries, Chargers and Wilson BMS<br>LBC10 - 34<br>LBC20 - 3<br>LBC2460M - 4<br>LBC2475TM - 24<br>LBC2450M - 1<br>LBC-1220CC - 9<br>LBC-2B1224C - 6</div><div>LBC-2420C - 4<br>Wilson BMS - 4 <br><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><font size=\"4\"><b><br>Nick Powell</b></font></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><b>Client Relations Coordinator</b></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><font size=\"2\"><b>TheLithiumBatteryCompany</b></font></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><br></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\">Toll Free - 844-GET-LITHIUM</div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\">Mobile - 813-613-6105</div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><br></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><a href=\"http://www.lithiumbatterycompany.com/\" style=\"color:rgb(17,85,204)\" target=\"_blank\">www.LithiumBatteryCompany.com</a></div><div></div><div><br style=\"color:rgb(34,34,34)\"></div></div></div></div>\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><font size=\"4\"><b><br>Nick Powell</b></font></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><b>Client Relations Coordinator</b></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><font size=\"2\"><b>TheLithiumBatteryCompany</b></font></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><br></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\">Toll Free - 844-GET-LITHIUM</div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\">Mobile - 813-613-6105</div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><br></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><a href=\"http://www.lithiumbatterycompany.com/\" style=\"color:rgb(17,85,204)\" target=\"_blank\">www.LithiumBatteryCompany.com</a></div><div></div><div><br style=\"color:rgb(34,34,34)\"></div></div></div>\r\n</div></blockquote></div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div>','Hi Rick,\r\n\r\nHere is an explanation for you.  Let me know if you have any questions.\r\n\r\n(LBC) - Manufacturer\r\n(2450) - 24V 50AH - Related to the voltage and capacity of the battery\r\n(C) - Custom Battery\r\n(M) - Marine Battery\r\n(TM) - Identified a battery used for a company we sold for.\r\n(CC) Cold Crank - Starting Battery\r\n(WBMS-SF) - Wilson BMS Manufacturer.\r\n\r\n\r\nLBC10 - 34 -\r\nhttps://lithiumbatterycompany.com/catalog/12v-10ah-lithium-ion-battery/\r\nLBC20 - 3 -\r\nhttps://lithiumbatterycompany.com/catalog/12v-20ah-lithium-ion-battery/\r\nLBC2460M - 4 -\r\nhttps://lithiumbatterycompany.com/catalog/24v-60ah-lithium-ion-battery-with-connectivityhtml/\r\nLBC2475TM - 24 - Customized for customer (private labeled) no link\r\nLBC2450M - 1 - Outdated and replaced with LBC2460M\r\nLBC-1220CC - 9 -\r\nhttps://lithiumbatterycompany.com/catalog/12v-20ah-starting-lithium-ion-battery/\r\nLBC-2B1224C - 6 - Customized for customer (private labeled) no link\r\nLBC-2B1236C -13 - Customized for customer (private labeled) no link\r\nLBC-2420C - 4 -\r\nhttps://lithiumbatterycompany.com/catalog/24v-20ah-lithium-ion-battery/\r\nLBCWBMS-SF - 4 - Private No Link\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Fri, Nov 14, 2025 at 5:25 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> Can I get a more formal descipotion or table of what these are:\r\n>\r\n> LBC10 - 34\r\n> LBC20 - 3\r\n> LBC2460M - 4\r\n> LBC2475TM - 24\r\n> LBC2450M - 1\r\n> LBC-1220CC - 9\r\n> LBC-2B1224C - 6\r\n> LBC-2B1236C -13\r\n> LBC-2420C - 4\r\n> LBCWBMS-SF - 4\r\n>\r\n>\r\n> Are the values associated with them?\r\n> Are these actual Model numbers of products we own to sell?\r\n> Just need details and clarity, imagery would help too…\r\n> Thanks!\r\n> Rick\r\n>\r\n>\r\n> Rick Mislan, PhD,\r\n> Founder, CTO\r\n>\r\n> https://mavrix1.com\r\n>\r\n> CONFIDENTIALITY NOTICE\r\n> This communication, including any attachments, may contain confidential,\r\n> privileged, or Controlled Unclassified Information (CUI) protected under\r\n> federal law. It is intended solely for the use of the designated\r\n> recipient(s). Any unauthorized review, use, disclosure, distribution, or\r\n> copying is strictly prohibited and may be unlawful.\r\n>\r\n> If you are not the intended recipient, please notify the sender\r\n> immediately, delete this email, and destroy all copies.\r\n>\r\n> Unless expressly stated, the views and opinions expressed herein are those\r\n> of the sender and do not necessarily reflect those of the sender’s employer\r\n> or any U.S. Government agency. All recipients are responsible for handling\r\n> information in accordance with applicable federal regulations, including\r\n> but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n>\r\n> On November 14, 2025 at 3:33:59 PM, Brian C. Stufflebean (brian@mavrix.one)\r\n> wrote:\r\n>\r\n>\r\n> Sent from my iPhone\r\n>\r\n> Begin forwarded message:\r\n>\r\n> *From:* Nick Powell <nick@lithiumbatterycompany.com>\r\n> *Date:* November 14, 2025 at 3:30:49 PM EST\r\n> *To:* Katherine Aponte <katherine@mavrix.one>, jarrett@mavrix.one\r\n> *Cc:* Brian Stufflebean <Brian@mavrix.one>\r\n> *Subject:* *Re: Inventory + Quantity*\r\n>\r\n> ﻿\r\n> Update: Inventory has been updated. Cost variables have been cancelled out\r\n> and accurate physical inventory has been implemented.\r\n>\r\n> Here are the final quantities for relevant inventory items:\r\n>\r\n> LBC10 - 34\r\n> LBC20 - 3\r\n> LBC2460M - 4\r\n> LBC2475TM - 24\r\n> LBC2450M - 1\r\n> LBC-1220CC - 9\r\n> LBC-2B1224C - 6\r\n> LBC-2B1236C -13\r\n> LBC-2420C - 4\r\n> LBCWBMS-SF - 4\r\n>\r\n> On Fri, Nov 14, 2025 at 2:34 PM Nick Powell <\r\n> nick@lithiumbatterycompany.com> wrote:\r\n>\r\n>> Here are the products currently in inventory. If you see any products in\r\n>> QuickBooks (inventory) showing a quantity but not listed here, please mark\r\n>> the quantity as 0. Also, if any item in QuickBooks (inventory) has a\r\n>> quantity but is not a battery, charger, or Wilson BMS, mark it as 0, as we\r\n>> will not be selling those items.\r\n>>\r\n>> Batteries, Chargers and Wilson BMS\r\n>> LBC10 - 34\r\n>> LBC20 - 3\r\n>> LBC2460M - 4\r\n>> LBC2475TM - 24\r\n>> LBC2450M - 1\r\n>> LBC-1220CC - 9\r\n>> LBC-2B1224C - 6\r\n>> LBC-2420C - 4\r\n>> Wilson BMS - 4\r\n>>\r\n>> --\r\n>>\r\n>> *Nick Powell*\r\n>> *Client Relations Coordinator*\r\n>> *TheLithiumBatteryCompany*\r\n>>\r\n>> Toll Free - 844-GET-LITHIUM\r\n>> Mobile - 813-613-6105\r\n>>\r\n>> www.LithiumBatteryCompany.com <http://www.lithiumbatterycompany.com/>\r\n>>\r\n>>\r\n>\r\n> --\r\n>\r\n> *Nick Powell*\r\n> *Client Relations Coordinator*\r\n> *TheLithiumBatteryCompany*\r\n>\r\n> Toll Free - 844-GET-LITHIUM\r\n> Mobile - 813-613-6105\r\n>\r\n> www.LithiumBatteryCompany.com <http://www.lithiumbatterycompany.com/>\r\n>\r\n>',0,0,0,0,0,0,'2025-11-14 22:47:36','2025-12-09 18:52:04','2025-12-09 18:52:04','2025-12-09 18:52:04',NULL,NULL,NULL),
(144,4,'<CAGOCFXjqtN_fptNYAtSD685LafJh0an2qY+OjU5sB+JLafmZuw@mail.gmail.com>',NULL,NULL,'Re: Fwd: Inventory + Quantity','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>To address your questions regarding the dates and status of the customer accounts listed in Jarrett&#39;s Excel file:</div><div><br></div><div>The Excel sheet represents the confirmed battery requirements and quantities for each customer. This information was primarily gathered by tracking customer communications within Pipedrive and utilizing our AI note-taker for meeting summaries.</div><div><br></div><div>Crucially, there has never been a formal quote generated through QuickBooks or Pipedrive for these opportunities. The conversations typically centered on reaching an agreed-upon price range or a simple pricing email sent directly to the customer.</div><div><br></div><div>The majority of our initial customer engagement originates from LinkedIn, which quickly transitions into Zoom meetings. Following the signing of Non-Disclosure Agreements (NDAs), customers provide us with build sheets. We then confirm that our battery cells are compatible with their equipment and that we can successfully manufacture the required battery pack.</div><div><br></div><div>For the purpose of calculating the potential revenue in the Excel model, we applied a consistent pricing structure of $200 per kilowatt (kW) to the agreed-upon voltage, capacity, and quantity for each customer, as we discussed on Wednesday.</div><div><br></div><div>In terms of the sales stage, approximately 90% of these conversations have concluded with the customer telling LBC to notify them when our manufacturing equipment is fully operational so they can visit and finalize their commitment.</div><div><br></div><div>Therefore, the only way to track &quot;initial quote dates&quot; is through the communication history within Pipedrive. The Excel list essentially represents 99% quotes that were communicated via simple email. All stages of these customers are accurately documented within Pipedrive, ensuring we know the required next steps for each one.</div><div><br></div><div>To be perfectly clear, we currently have no signed contracts for any of the opportunities listed. The main barrier to converting these quotes into sales orders is the lack of physical evidence—no one can commit until they see that the factory is fully set up and running.</div><div><br></div><div>Please let me know if you require any further clarification on this pipeline status.</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Nov 14, 2025 at 5:58 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\"><div style=\"margin:0px\">Nathan,</div><div style=\"margin:0px\">Do you have dates for all of your initial quotes with all of those customers in Jarretts excel? </div><div style=\"margin:0px\">I don&#39;t think i saw it in Jarretts model. </div><div style=\"margin:0px\">I saw the contract end date date, but that&#39;s not helpful yet to what I&#39;m doing. </div><div style=\"margin:0px\">Also, are these contracts are are these still quotes? </div><div style=\"margin:0px\">Do we actually have signed contracts or sales orders or are these still in the pipeline phase of quote, not yet converted to sales order..</div><div style=\"margin:0px\">Thanks,</div><div style=\"margin:0px\">Rick.  </div></div> <br> <div class=\"gmail_signature\">\r\n        \r\n     \r\n    <br>\r\n     \r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD, </span><div style=\"font-family:Helvetica,Arial\">Founder, CTO</div><div style=\"font-family:Helvetica,Arial\"><div><div><img src=\"cid:ii_19a84a41db5fcc4344d2\" style=\"max-width: 99%;\"><br></div><div><a href=\"https://mavrix1.com/\" target=\"_blank\">https://mavrix1.com</a></div></div><div><br></div><div><div>CONFIDENTIALITY NOTICE</div><div>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</div><div><br></div><div>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</div><div><br></div><div>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</div></div></div></div></div> <br><p>On November 14, 2025 at 5:48:57 PM, Nathan Staron (<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>Here is an explanation for you.  Let me know if you have any questions. <br><br>(LBC) - Manufacturer <br>(2450) - 24V 50AH - Related to the voltage and capacity of the battery<br>(C) - Custom Battery</div><div>(M) - Marine Battery<br>(TM) - Identified a battery used for a company we sold for.  <br>(CC) Cold Crank - Starting Battery<br>(WBMS-SF) - Wilson BMS Manufacturer. <br><br><br><blockquote type=\"cite\" style=\"font-family:UICTFontTextStyleBody;font-size:14px\"><div dir=\"ltr\"><div dir=\"ltr\"><div>LBC10 - 34 - <a href=\"https://lithiumbatterycompany.com/catalog/12v-10ah-lithium-ion-battery/\" target=\"_blank\">https://lithiumbatterycompany.com/catalog/12v-10ah-lithium-ion-battery/</a><br>LBC20 - 3 - <a href=\"https://lithiumbatterycompany.com/catalog/12v-20ah-lithium-ion-battery/\" target=\"_blank\">https://lithiumbatterycompany.com/catalog/12v-20ah-lithium-ion-battery/</a><br>LBC2460M - 4 - <a href=\"https://lithiumbatterycompany.com/catalog/24v-60ah-lithium-ion-battery-with-connectivityhtml/\" target=\"_blank\">https://lithiumbatterycompany.com/catalog/24v-60ah-lithium-ion-battery-with-connectivityhtml/</a><br>LBC2475TM - 24 - <span style=\"font-family:Arial,Helvetica,sans-serif;font-size:small\">Customized for customer (private labeled) no link<br></span><span style=\"font-family:Arial,Helvetica,sans-serif;font-size:small\">LBC2450M - 1 - Outdated and replaced with LBC2460M<br></span><span style=\"font-family:Arial,Helvetica,sans-serif;font-size:small\">LBC-1220CC - 9 -  <a href=\"https://lithiumbatterycompany.com/catalog/12v-20ah-starting-lithium-ion-battery/\" target=\"_blank\">https://lithiumbatterycompany.com/catalog/12v-20ah-starting-lithium-ion-battery/</a><br></span><span style=\"font-family:Arial,Helvetica,sans-serif;font-size:small\">LBC-2B1224C - 6 - </span><span style=\"font-family:Arial,Helvetica,sans-serif;font-size:small\">Customized for customer (private labeled) no link<br></span><span style=\"font-family:Arial,Helvetica,sans-serif;font-size:small\">LBC-2B1236C -13 - </span><span style=\"font-family:Arial,Helvetica,sans-serif;font-size:small\">Customized for customer (private labeled) no link<br></span><span style=\"font-family:Arial,Helvetica,sans-serif;font-size:small\">LBC-2420C - 4 - </span><span style=\"font-family:Arial,Helvetica,sans-serif;font-size:small\"><a href=\"https://lithiumbatterycompany.com/catalog/24v-20ah-lithium-ion-battery/\" target=\"_blank\">https://lithiumbatterycompany.com/catalog/24v-20ah-lithium-ion-battery/</a><br></span><span style=\"font-family:Arial,Helvetica,sans-serif;font-size:small\">LBCWBMS-SF - 4 - Private No Link </span></div></div></div></blockquote></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_5649815685680704109_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Nov 14, 2025 at 5:25 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">Can I get a more formal descipotion or table of what these are:</div><div style=\"font-family:Helvetica,Arial;font-size:13px\"><br></div><div style=\"font-family:Helvetica,Arial;font-size:13px\"><blockquote type=\"cite\" style=\"font-family:UICTFontTextStyleBody;font-size:14px\"><div dir=\"ltr\"><div dir=\"ltr\"><div>LBC10 - 34<br>LBC20 - 3<br>LBC2460M - 4<br>LBC2475TM - 24<br>LBC2450M - 1<br>LBC-1220CC - 9<br>LBC-2B1224C - 6<br>LBC-2B1236C -13</div><div>LBC-2420C - 4<br>LBCWBMS-SF - 4 </div></div></div></blockquote><br></div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Are the values associated with them?</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Are these actual Model numbers of products we own to sell?</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Just need details and clarity, imagery would help too…</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Thanks!</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Rick</div> <br> <div class=\"gmail_signature\">\r\n         \r\n      \r\n    <br>\r\n      \r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD, </span><div style=\"font-family:Helvetica,Arial\">Founder, CTO</div><div style=\"font-family:Helvetica,Arial\"><div><div><img src=\"cid:ii_19a84a41db5f3569a9f1\" style=\"max-width: 99%;\"><br></div><div><a href=\"https://mavrix1.com/\" target=\"_blank\">https://mavrix1.com</a></div></div><div><br></div><div><div>CONFIDENTIALITY NOTICE</div><div>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</div><div><br></div><div>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</div><div><br></div><div>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</div></div></div></div></div> <br><p>On November 14, 2025 at 3:33:59 PM, Brian C. Stufflebean (<a href=\"mailto:brian@mavrix.one\" target=\"_blank\">brian@mavrix.one</a>) wrote:</p> <blockquote type=\"cite\"><span><div dir=\"auto\"><div></div><div><br id=\"m_5649815685680704109m_-3474435634480117714lineBreakAtBeginningOfSignature\"><div dir=\"ltr\">Sent from my iPhone</div><div dir=\"ltr\"><br>Begin forwarded message:<br><br></div><blockquote type=\"cite\"><div dir=\"ltr\"><b>From:</b> Nick Powell &lt;<a href=\"mailto:nick@lithiumbatterycompany.com\" target=\"_blank\">nick@lithiumbatterycompany.com</a>&gt;<br><b>Date:</b> November 14, 2025 at 3:30:49 PM EST<br><b>To:</b> Katherine Aponte &lt;katherine@mavrix.one&gt;, jarrett@mavrix.one<br><b>Cc:</b> Brian Stufflebean &lt;Brian@mavrix.one&gt;<br><b>Subject:</b> <b>Re: Inventory + Quantity</b><br><br></div></blockquote><blockquote type=\"cite\"><div dir=\"ltr\">﻿<div dir=\"ltr\">Update: Inventory has been updated. Cost variables have been cancelled out and accurate physical inventory has been implemented. <br><br>Here are the final quantities for relevant inventory items:<br><br><div>LBC10 - 34<br>LBC20 - 3<br>LBC2460M - 4<br>LBC2475TM - 24<br>LBC2450M - 1<br>LBC-1220CC - 9<br>LBC-2B1224C - 6<br>LBC-2B1236C -13</div><div>LBC-2420C - 4<br>LBCWBMS-SF - 4 </div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Nov 14, 2025 at 2:34 PM Nick Powell &lt;<a href=\"mailto:nick@lithiumbatterycompany.com\" target=\"_blank\">nick@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Here are the products currently in inventory. If you see any products in QuickBooks (inventory) showing a quantity but not listed here, please mark the quantity as 0. Also, if any item in QuickBooks (inventory) has a quantity but is not a battery, charger, or Wilson BMS, mark it as 0, as we will not be selling those items.<br><br>Batteries, Chargers and Wilson BMS<br>LBC10 - 34<br>LBC20 - 3<br>LBC2460M - 4<br>LBC2475TM - 24<br>LBC2450M - 1<br>LBC-1220CC - 9<br>LBC-2B1224C - 6</div><div>LBC-2420C - 4<br>Wilson BMS - 4 <br><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><font size=\"4\"><b><br>Nick Powell</b></font></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><b>Client Relations Coordinator</b></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><font size=\"2\"><b>TheLithiumBatteryCompany</b></font></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><br></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\">Toll Free - 844-GET-LITHIUM</div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\">Mobile - 813-613-6105</div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><br></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><a href=\"http://www.lithiumbatterycompany.com/\" style=\"color:rgb(17,85,204)\" target=\"_blank\">www.LithiumBatteryCompany.com</a></div><div></div><div><br style=\"color:rgb(34,34,34)\"></div></div></div></div>\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><font size=\"4\"><b><br>Nick Powell</b></font></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><b>Client Relations Coordinator</b></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><font size=\"2\"><b>TheLithiumBatteryCompany</b></font></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><br></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\">Toll Free - 844-GET-LITHIUM</div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\">Mobile - 813-613-6105</div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><br></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><a href=\"http://www.lithiumbatterycompany.com/\" style=\"color:rgb(17,85,204)\" target=\"_blank\">www.LithiumBatteryCompany.com</a></div><div></div><div><br style=\"color:rgb(34,34,34)\"></div></div></div>\r\n</div></blockquote></div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div>','Hi Rick,\r\n\r\nTo address your questions regarding the dates and status of the customer\r\naccounts listed in Jarrett\'s Excel file:\r\n\r\nThe Excel sheet represents the confirmed battery requirements and\r\nquantities for each customer. This information was primarily gathered by\r\ntracking customer communications within Pipedrive and utilizing our AI\r\nnote-taker for meeting summaries.\r\n\r\nCrucially, there has never been a formal quote generated through QuickBooks\r\nor Pipedrive for these opportunities. The conversations typically centered\r\non reaching an agreed-upon price range or a simple pricing email sent\r\ndirectly to the customer.\r\n\r\nThe majority of our initial customer engagement originates from LinkedIn,\r\nwhich quickly transitions into Zoom meetings. Following the signing of\r\nNon-Disclosure Agreements (NDAs), customers provide us with build sheets.\r\nWe then confirm that our battery cells are compatible with their equipment\r\nand that we can successfully manufacture the required battery pack.\r\n\r\nFor the purpose of calculating the potential revenue in the Excel model, we\r\napplied a consistent pricing structure of $200 per kilowatt (kW) to the\r\nagreed-upon voltage, capacity, and quantity for each customer, as we\r\ndiscussed on Wednesday.\r\n\r\nIn terms of the sales stage, approximately 90% of these conversations have\r\nconcluded with the customer telling LBC to notify them when our\r\nmanufacturing equipment is fully operational so they can visit and finalize\r\ntheir commitment.\r\n\r\nTherefore, the only way to track \"initial quote dates\" is through the\r\ncommunication history within Pipedrive. The Excel list essentially\r\nrepresents 99% quotes that were communicated via simple email. All stages\r\nof these customers are accurately documented within Pipedrive, ensuring we\r\nknow the required next steps for each one.\r\n\r\nTo be perfectly clear, we currently have no signed contracts for any of the\r\nopportunities listed. The main barrier to converting these quotes into\r\nsales orders is the lack of physical evidence—no one can commit until they\r\nsee that the factory is fully set up and running.\r\n\r\nPlease let me know if you require any further clarification on this\r\npipeline status.\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Fri, Nov 14, 2025 at 5:58 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> Nathan,\r\n> Do you have dates for all of your initial quotes with all of those\r\n> customers in Jarretts excel?\r\n> I don\'t think i saw it in Jarretts model.\r\n> I saw the contract end date date, but that\'s not helpful yet to what I\'m\r\n> doing.\r\n> Also, are these contracts are are these still quotes?\r\n> Do we actually have signed contracts or sales orders or are these still in\r\n> the pipeline phase of quote, not yet converted to sales order..\r\n> Thanks,\r\n> Rick.\r\n>\r\n>\r\n> Rick Mislan, PhD,\r\n> Founder, CTO\r\n>\r\n> https://mavrix1.com\r\n>\r\n> CONFIDENTIALITY NOTICE\r\n> This communication, including any attachments, may contain confidential,\r\n> privileged, or Controlled Unclassified Information (CUI) protected under\r\n> federal law. It is intended solely for the use of the designated\r\n> recipient(s). Any unauthorized review, use, disclosure, distribution, or\r\n> copying is strictly prohibited and may be unlawful.\r\n>\r\n> If you are not the intended recipient, please notify the sender\r\n> immediately, delete this email, and destroy all copies.\r\n>\r\n> Unless expressly stated, the views and opinions expressed herein are those\r\n> of the sender and do not necessarily reflect those of the sender’s employer\r\n> or any U.S. Government agency. All recipients are responsible for handling\r\n> information in accordance with applicable federal regulations, including\r\n> but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n>\r\n> On November 14, 2025 at 5:48:57 PM, Nathan Staron (\r\n> nathan@lithiumbatterycompany.com) wrote:\r\n>\r\n> Hi Rick,\r\n>\r\n> Here is an explanation for you.  Let me know if you have any questions.\r\n>\r\n> (LBC) - Manufacturer\r\n> (2450) - 24V 50AH - Related to the voltage and capacity of the battery\r\n> (C) - Custom Battery\r\n> (M) - Marine Battery\r\n> (TM) - Identified a battery used for a company we sold for.\r\n> (CC) Cold Crank - Starting Battery\r\n> (WBMS-SF) - Wilson BMS Manufacturer.\r\n>\r\n>\r\n> LBC10 - 34 -\r\n> https://lithiumbatterycompany.com/catalog/12v-10ah-lithium-ion-battery/\r\n> LBC20 - 3 -\r\n> https://lithiumbatterycompany.com/catalog/12v-20ah-lithium-ion-battery/\r\n> LBC2460M - 4 -\r\n> https://lithiumbatterycompany.com/catalog/24v-60ah-lithium-ion-battery-with-connectivityhtml/\r\n> LBC2475TM - 24 - Customized for customer (private labeled) no link\r\n> LBC2450M - 1 - Outdated and replaced with LBC2460M\r\n> LBC-1220CC - 9 -\r\n> https://lithiumbatterycompany.com/catalog/12v-20ah-starting-lithium-ion-battery/\r\n> LBC-2B1224C - 6 - Customized for customer (private labeled) no link\r\n> LBC-2B1236C -13 - Customized for customer (private labeled) no link\r\n> LBC-2420C - 4 -\r\n> https://lithiumbatterycompany.com/catalog/24v-20ah-lithium-ion-battery/\r\n> LBCWBMS-SF - 4 - Private No Link\r\n>\r\n>\r\n> <https://lithiumbatterycompany.com/>\r\n> <https://www.instagram.com/lithiumbatteryco/>\r\n> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n> <https://www.facebook.com/LithiumBatteryCompany/>\r\n> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n> <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074\r\n> Phone 844-GET-LITHIUM\r\n> Nathan@lithiumbatterycompany.com\r\n> Schedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>\r\n>\r\n>\r\n> On Fri, Nov 14, 2025 at 5:25 PM Rick <rick@mavrix.one> wrote:\r\n>\r\n>> Can I get a more formal descipotion or table of what these are:\r\n>>\r\n>> LBC10 - 34\r\n>> LBC20 - 3\r\n>> LBC2460M - 4\r\n>> LBC2475TM - 24\r\n>> LBC2450M - 1\r\n>> LBC-1220CC - 9\r\n>> LBC-2B1224C - 6\r\n>> LBC-2B1236C -13\r\n>> LBC-2420C - 4\r\n>> LBCWBMS-SF - 4\r\n>>\r\n>>\r\n>> Are the values associated with them?\r\n>> Are these actual Model numbers of products we own to sell?\r\n>> Just need details and clarity, imagery would help too…\r\n>> Thanks!\r\n>> Rick\r\n>>\r\n>>\r\n>> Rick Mislan, PhD,\r\n>> Founder, CTO\r\n>>\r\n>> https://mavrix1.com\r\n>>\r\n>> CONFIDENTIALITY NOTICE\r\n>> This communication, including any attachments, may contain confidential,\r\n>> privileged, or Controlled Unclassified Information (CUI) protected under\r\n>> federal law. It is intended solely for the use of the designated\r\n>> recipient(s). Any unauthorized review, use, disclosure, distribution, or\r\n>> copying is strictly prohibited and may be unlawful.\r\n>>\r\n>> If you are not the intended recipient, please notify the sender\r\n>> immediately, delete this email, and destroy all copies.\r\n>>\r\n>> Unless expressly stated, the views and opinions expressed herein are\r\n>> those of the sender and do not necessarily reflect those of the sender’s\r\n>> employer or any U.S. Government agency. All recipients are responsible for\r\n>> handling information in accordance with applicable federal regulations,\r\n>> including but not limited to FAR, DFARS, ITAR, and CUI handling\r\n>> requirements.\r\n>>\r\n>> On November 14, 2025 at 3:33:59 PM, Brian C. Stufflebean (\r\n>> brian@mavrix.one) wrote:\r\n>>\r\n>>\r\n>> Sent from my iPhone\r\n>>\r\n>> Begin forwarded message:\r\n>>\r\n>> *From:* Nick Powell <nick@lithiumbatterycompany.com>\r\n>> *Date:* November 14, 2025 at 3:30:49 PM EST\r\n>> *To:* Katherine Aponte <katherine@mavrix.one>, jarrett@mavrix.one\r\n>> *Cc:* Brian Stufflebean <Brian@mavrix.one>\r\n>> *Subject:* *Re: Inventory + Quantity*\r\n>>\r\n>> ﻿\r\n>> Update: Inventory has been updated. Cost variables have been cancelled\r\n>> out and accurate physical inventory has been implemented.\r\n>>\r\n>> Here are the final quantities for relevant inventory items:\r\n>>\r\n>> LBC10 - 34\r\n>> LBC20 - 3\r\n>> LBC2460M - 4\r\n>> LBC2475TM - 24\r\n>> LBC2450M - 1\r\n>> LBC-1220CC - 9\r\n>> LBC-2B1224C - 6\r\n>> LBC-2B1236C -13\r\n>> LBC-2420C - 4\r\n>> LBCWBMS-SF - 4\r\n>>\r\n>> On Fri, Nov 14, 2025 at 2:34 PM Nick Powell <\r\n>> nick@lithiumbatterycompany.com> wrote:\r\n>>\r\n>>> Here are the products currently in inventory. If you see any products in\r\n>>> QuickBooks (inventory) showing a quantity but not listed here, please mark\r\n>>> the quantity as 0. Also, if any item in QuickBooks (inventory) has a\r\n>>> quantity but is not a battery, charger, or Wilson BMS, mark it as 0, as we\r\n>>> will not be selling those items.\r\n>>>\r\n>>> Batteries, Chargers and Wilson BMS\r\n>>> LBC10 - 34\r\n>>> LBC20 - 3\r\n>>> LBC2460M - 4\r\n>>> LBC2475TM - 24\r\n>>> LBC2450M - 1\r\n>>> LBC-1220CC - 9\r\n>>> LBC-2B1224C - 6\r\n>>> LBC-2420C - 4\r\n>>> Wilson BMS - 4\r\n>>>\r\n>>> --\r\n>>>\r\n>>> *Nick Powell*\r\n>>> *Client Relations Coordinator*\r\n>>> *TheLithiumBatteryCompany*\r\n>>>\r\n>>> Toll Free - 844-GET-LITHIUM\r\n>>> Mobile - 813-613-6105\r\n>>>\r\n>>> www.LithiumBatteryCompany.com <http://www.lithiumbatterycompany.com/>\r\n>>>\r\n>>>\r\n>>\r\n>> --\r\n>>\r\n>> *Nick Powell*\r\n>> *Client Relations Coordinator*\r\n>> *TheLithiumBatteryCompany*\r\n>>\r\n>> Toll Free - 844-GET-LITHIUM\r\n>> Mobile - 813-613-6105\r\n>>\r\n>> www.LithiumBatteryCompany.com <http://www.lithiumbatterycompany.com/>\r\n>>\r\n>>',0,0,0,0,0,0,'2025-11-14 23:25:04','2025-12-09 18:52:05','2025-12-09 18:52:05','2025-12-09 18:52:05',NULL,NULL,NULL),
(145,4,' <DS4PR06MB11254B335CB0867E5D7A74ED8FECBA@DS4PR06MB11254.namprd06.prod.outlook.com>',NULL,NULL,'Fw: Revenue Projections','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n</head>\r\n<body>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<br>\r\n</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\" data-applydefaultfontstyles=\"true\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" dir=\"ltr\">\r\n<br>\r\n</div>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" id=\"ms-outlook-mobile-signature\" dir=\"ltr\">\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b> Friday, November 14, 2025 2:17:12 PM<br>\r\n<b>To:</b> Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Revenue Projections </font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style type=\"text/css\" style=\"display:none\">\r\n<!--\r\np\r\n	{margin-top:0;\r\n	margin-bottom:0}\r\n-->\r\n</style>\r\n<div dir=\"ltr\">\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" id=\"x_Signature\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a data-linkindex=\"8\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a data-linkindex=\"9\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a data-auth=\"NotApplicable\" data-linkindex=\"10\" title=\"https://lithiumbatterycompany.com/\" href=\"https://lithiumbatterycompany.com/\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','\r\n\r\n________________________________\r\nFrom: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSent: Friday, November 14, 2025 2:17:12 PM\r\nTo: Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\nSubject: Revenue Projections\r\n\r\n\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>',0,0,0,0,0,0,'2025-11-15 02:33:03','2025-12-09 18:52:08','2025-12-09 18:52:08','2025-12-09 18:52:08',NULL,NULL,NULL),
(146,4,'<2101304917.32855235.1763391411729@lor1-app44886.prod.linkedin.com>',NULL,NULL,'=?UTF-8?Q?Mavrix,_follow_Flore_YAP_-_Charg=C3=A9e_de_Recrute?= =?UTF-8?Q?ment_at_SOSUCAM_(Soci=C3=A9t=C3=A9_Sucri=C3=A8re_du_Cameroun)?=','messages-noreply@linkedin.com','LinkedIn','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n              @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n            </style> <style>\r\n            @media (max-width: 480px) { .inline-button, .inline-button table { display: none !important; }\r\n            .full-width-button, .full-width-button table { display: table !important; } }\r\n          </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n            \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n            \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">See your recommendations</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-left: auto; margin-right: auto; margin-top: 0px; margin-bottom: 0px; width: 512px; max-width: 512px; padding: 0px;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"bg-color-background-container \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2W0STNInEwtc01&amp;trk=eml-email_edge_discover_01-header-0-home_glimmer_static_badging_with_count&amp;trkEmail=eml-email_edge_discover_01-header-0-home_glimmer_static_badging_with_count-null-poh2nf~mi39f4jz~s9-null-null&amp;eid=poh2nf-mi39f4jz-s9&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0Yjc4NmNmZDQ0MDk4YWY4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGYzODg1N2ZkZGM5NzA4Nzc0ZTA1MjNjMmZiNzkxZGY2ZDI2ODc1YWY1N2ZkY2IsMSwx\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img class=\"h-[37px] w-[101px]\" alt=\"LinkedIn\" src=\"https://static.licdn.com/aero-v1/sc/h/2fp5x7ci191mxbdy1eynscn59\" data-test-header-static-badging-img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 37px; width: 101px;\" width=\"101\" height=\"37\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" data-test-header-notification-badges style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/messaging/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2W0STNInEwtc01&amp;trk=eml-email_edge_discover_01-header-0-messaging_glimmer&amp;trkEmail=eml-email_edge_discover_01-header-0-messaging_glimmer-null-poh2nf~mi39f4jz~s9-null-null&amp;eid=poh2nf-mi39f4jz-s9&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0Yjc4NmNmZDQ0MDk4YWY4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGYzODg1N2ZkZGM5NzA4Nzc0ZTA1MjNjMmZiNzkxZGY2ZDI2ODc1YWY1N2ZkY2IsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Messaging icon\" src=\"https://static.licdn.com/aero-v1/sc/h/10fimloaw3jryyzve9w87w3h1\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2W0STNInEwtc01&amp;trk=eml-email_edge_discover_01-header-0-my_network_glimmer&amp;trkEmail=eml-email_edge_discover_01-header-0-my_network_glimmer-null-poh2nf~mi39f4jz~s9-null-null&amp;eid=poh2nf-mi39f4jz-s9&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0Yjc4NmNmZDQ0MDk4YWY4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGYzODg1N2ZkZGM5NzA4Nzc0ZTA1MjNjMmZiNzkxZGY2ZDI2ODc1YWY1N2ZkY2IsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Mynetwork icon\" src=\"https://static.licdn.com/aero-v1/sc/h/anu0f2h3c0xay9ou5nkdrjk8q\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/notifications/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2W0STNInEwtc01&amp;trk=eml-email_edge_discover_01-header-0-notifications_glimmer&amp;trkEmail=eml-email_edge_discover_01-header-0-notifications_glimmer-null-poh2nf~mi39f4jz~s9-null-null&amp;eid=poh2nf-mi39f4jz-s9&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0Yjc4NmNmZDQ0MDk4YWY4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGYzODg1N2ZkZGM5NzA4Nzc0ZTA1MjNjMmZiNzkxZGY2ZDI2ODc1YWY1N2ZkY2IsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Notifications icon\" src=\"https://static.licdn.com/aero-v1/sc/h/9pd3p4xrruqz3lc8kghvmdnjs\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"px-3 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px; padding-bottom: 24px;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <h2 class=\"text-lg leading-regular\" data-test-id=\"follow-recommendation-header\" style=\"margin: 0; font-weight: 500; font-size: 20px; line-height: 1.25;\"> Mavrix, add interesting content to your feed. Here are a few recommendations to get started. </h2> </td> </tr> <tr data-test-id=\"follow-recommendation-section\"> <td align=\"center\" class=\"pt-1.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" class=\"pr-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/flore-yap-54b112161?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2W0STNInEwtc01&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A648232331&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A648232331-null-poh2nf~mi39f4jz~s9-null-null&amp;eid=poh2nf-mi39f4jz-s9&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0Yjc4NmNmZDQ0MDk4YWY4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGYzODg1N2ZkZGM5NzA4Nzc0ZTA1MjNjMmZiNzkxZGY2ZDI2ODc1YWY1N2ZkY2IsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/C4D03AQFuZUfIOZ2c0Q/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1648740344351?e=2147483647&amp;v=beta&amp;t=JMaID-Ru10jGguBwMIiX8sI3s9nryS3X9j8YmyTy1UE\" alt=\"Flore YAP’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/flore-yap-54b112161?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2W0STNInEwtc01&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A648232331&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A648232331-null-poh2nf~mi39f4jz~s9-null-null&amp;eid=poh2nf-mi39f4jz-s9&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0Yjc4NmNmZDQ0MDk4YWY4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGYzODg1N2ZkZGM5NzA4Nzc0ZTA1MjNjMmZiNzkxZGY2ZDI2ODc1YWY1N2ZkY2IsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Flore YAP </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> Chargée de Recrutement chez SOSUCAM (Société Sucrière du Cameroun) </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 55,970 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=flore-yap-54b112161&amp;entityUrn=ADoAACajPYsBxFZJFO3EpULUk-uzodlsB0X1GUY&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midSig=2W0STNInEwtc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A648232331-null-poh2nf%7Emi39f4jz%7Es9-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A648232331\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=flore-yap-54b112161&amp;entityUrn=ADoAACajPYsBxFZJFO3EpULUk-uzodlsB0X1GUY&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midSig=2W0STNInEwtc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A648232331-null-poh2nf%7Emi39f4jz%7Es9-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A648232331\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=flore-yap-54b112161&amp;entityUrn=ADoAACajPYsBxFZJFO3EpULUk-uzodlsB0X1GUY&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midSig=2W0STNInEwtc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A648232331-null-poh2nf%7Emi39f4jz%7Es9-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A648232331\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=flore-yap-54b112161&amp;entityUrn=ADoAACajPYsBxFZJFO3EpULUk-uzodlsB0X1GUY&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midSig=2W0STNInEwtc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A648232331-null-poh2nf%7Emi39f4jz%7Es9-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A648232331\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/robertherjavec?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2W0STNInEwtc01&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A3945137&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A3945137-null-poh2nf~mi39f4jz~s9-null-null&amp;eid=poh2nf-mi39f4jz-s9&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0Yjc4NmNmZDQ0MDk4YWY4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGYzODg1N2ZkZGM5NzA4Nzc0ZTA1MjNjMmZiNzkxZGY2ZDI2ODc1YWY1N2ZkY2IsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/D5603AQFiRlNTrlxlQg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1725409070762?e=2147483647&amp;v=beta&amp;t=FDCaG0s4KoHSzHrzHUHrxd-77mMw77KLfSN18dYOXXM\" alt=\"Robert Herjavec’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/robertherjavec?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2W0STNInEwtc01&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A3945137&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A3945137-null-poh2nf~mi39f4jz~s9-null-null&amp;eid=poh2nf-mi39f4jz-s9&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0Yjc4NmNmZDQ0MDk4YWY4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGYzODg1N2ZkZGM5NzA4Nzc0ZTA1MjNjMmZiNzkxZGY2ZDI2ODc1YWY1N2ZkY2IsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Robert Herjavec </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> Emmy Award Winner 🏆 Entrepreneur | Investor | Cybersecurity Expert Lead Shark… </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 2,369,665 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=robertherjavec&amp;entityUrn=ADoAAAA8MrEBkUH3qKrg34GWkxIyMfiNLPrw1hM&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midSig=2W0STNInEwtc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A3945137-null-poh2nf%7Emi39f4jz%7Es9-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A3945137\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=robertherjavec&amp;entityUrn=ADoAAAA8MrEBkUH3qKrg34GWkxIyMfiNLPrw1hM&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midSig=2W0STNInEwtc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A3945137-null-poh2nf%7Emi39f4jz%7Es9-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A3945137\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=robertherjavec&amp;entityUrn=ADoAAAA8MrEBkUH3qKrg34GWkxIyMfiNLPrw1hM&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midSig=2W0STNInEwtc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A3945137-null-poh2nf%7Emi39f4jz%7Es9-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A3945137\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=robertherjavec&amp;entityUrn=ADoAAAA8MrEBkUH3qKrg34GWkxIyMfiNLPrw1hM&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midSig=2W0STNInEwtc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A3945137-null-poh2nf%7Emi39f4jz%7Es9-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A3945137\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/mdc2025?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2W0STNInEwtc01&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A50533525&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A50533525-null-poh2nf~mi39f4jz~s9-null-null&amp;eid=poh2nf-mi39f4jz-s9&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0Yjc4NmNmZDQ0MDk4YWY4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGYzODg1N2ZkZGM5NzA4Nzc0ZTA1MjNjMmZiNzkxZGY2ZDI2ODc1YWY1N2ZkY2IsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/D5603AQGKuLzKO8uXqg/profile-displayphoto-scale_400_400/B56Zfz0t3mHUAg-/0/1752142372938?e=2147483647&amp;v=beta&amp;t=_eVL28N4RIY_LMmRVoE5EZWezMa09PHXwps-2J-PO6A\" alt=\"Michael Chapman’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/mdc2025?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2W0STNInEwtc01&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A50533525&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A50533525-null-poh2nf~mi39f4jz~s9-null-null&amp;eid=poh2nf-mi39f4jz-s9&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0Yjc4NmNmZDQ0MDk4YWY4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGYzODg1N2ZkZGM5NzA4Nzc0ZTA1MjNjMmZiNzkxZGY2ZDI2ODc1YWY1N2ZkY2IsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Michael Chapman </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> Driving Revenue, Scaling Businesses &amp; Building High-Performing Teams ► Sales… </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 252,840 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=mdc2025&amp;entityUrn=ADoAAAMDFJUBH2yZuyZqebq3YwXvuJchpMuLvug&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midSig=2W0STNInEwtc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A50533525-null-poh2nf%7Emi39f4jz%7Es9-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A50533525\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=mdc2025&amp;entityUrn=ADoAAAMDFJUBH2yZuyZqebq3YwXvuJchpMuLvug&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midSig=2W0STNInEwtc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A50533525-null-poh2nf%7Emi39f4jz%7Es9-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A50533525\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=mdc2025&amp;entityUrn=ADoAAAMDFJUBH2yZuyZqebq3YwXvuJchpMuLvug&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midSig=2W0STNInEwtc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A50533525-null-poh2nf%7Emi39f4jz%7Es9-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A50533525\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=mdc2025&amp;entityUrn=ADoAAAMDFJUBH2yZuyZqebq3YwXvuJchpMuLvug&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midSig=2W0STNInEwtc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A50533525-null-poh2nf%7Emi39f4jz%7Es9-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A50533525\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/williamhgates?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2W0STNInEwtc01&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A251749025&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A251749025-null-poh2nf~mi39f4jz~s9-null-null&amp;eid=poh2nf-mi39f4jz-s9&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0Yjc4NmNmZDQ0MDk4YWY4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGYzODg1N2ZkZGM5NzA4Nzc0ZTA1MjNjMmZiNzkxZGY2ZDI2ODc1YWY1N2ZkY2IsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/D5603AQF-RYZP55jmXA/profile-displayphoto-shrink_400_400/B56ZRi8g.aGsAg-/0/1736826818802?e=2147483647&amp;v=beta&amp;t=r6LJYwKPrJzfFDXVG8qAOoklQnqvEN855sHJ1NxhEAo\" alt=\"Bill Gates’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/williamhgates?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2W0STNInEwtc01&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A251749025&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A251749025-null-poh2nf~mi39f4jz~s9-null-null&amp;eid=poh2nf-mi39f4jz-s9&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0Yjc4NmNmZDQ0MDk4YWY4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGYzODg1N2ZkZGM5NzA4Nzc0ZTA1MjNjMmZiNzkxZGY2ZDI2ODc1YWY1N2ZkY2IsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Bill Gates </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> Chair, Gates Foundation and Founder, Breakthrough Energy </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 39,292,612 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=williamhgates&amp;entityUrn=ADoAAA8BYqEB2zNK8febp2b0sSdPQSEqLm_ypFc&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midSig=2W0STNInEwtc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A251749025-null-poh2nf%7Emi39f4jz%7Es9-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A251749025\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=williamhgates&amp;entityUrn=ADoAAA8BYqEB2zNK8febp2b0sSdPQSEqLm_ypFc&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midSig=2W0STNInEwtc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A251749025-null-poh2nf%7Emi39f4jz%7Es9-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A251749025\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=williamhgates&amp;entityUrn=ADoAAA8BYqEB2zNK8febp2b0sSdPQSEqLm_ypFc&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midSig=2W0STNInEwtc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A251749025-null-poh2nf%7Emi39f4jz%7Es9-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A251749025\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=williamhgates&amp;entityUrn=ADoAAA8BYqEB2zNK8febp2b0sSdPQSEqLm_ypFc&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midSig=2W0STNInEwtc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A251749025-null-poh2nf%7Emi39f4jz%7Es9-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A251749025\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/touhajleb-sidi-aly-289772164?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2W0STNInEwtc01&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A658807305&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A658807305-null-poh2nf~mi39f4jz~s9-null-null&amp;eid=poh2nf-mi39f4jz-s9&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0Yjc4NmNmZDQ0MDk4YWY4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGYzODg1N2ZkZGM5NzA4Nzc0ZTA1MjNjMmZiNzkxZGY2ZDI2ODc1YWY1N2ZkY2IsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQEsq7Zz8FcKiw/profile-displayphoto-shrink_400_400/B4EZdewsb4HgAk-/0/1749641513539?e=2147483647&amp;v=beta&amp;t=sO6cuZYhB6Syjgecd5EikUTkVSsxFbcJf8VW4mlW3Js\" alt=\"Touhajleb Sidi Aly’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/touhajleb-sidi-aly-289772164?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2W0STNInEwtc01&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A658807305&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A658807305-null-poh2nf~mi39f4jz~s9-null-null&amp;eid=poh2nf-mi39f4jz-s9&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0Yjc4NmNmZDQ0MDk4YWY4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGYzODg1N2ZkZGM5NzA4Nzc0ZTA1MjNjMmZiNzkxZGY2ZDI2ODc1YWY1N2ZkY2IsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Touhajleb Sidi Aly </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> Entrepreneure | Directrice-Fondatrice chez ETOP SARL </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 64,845 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=touhajleb-sidi-aly-289772164&amp;entityUrn=ADoAACdEmgkBBh_BBP-7vMvTNhi7-hWJMHWO6KU&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midSig=2W0STNInEwtc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A658807305-null-poh2nf%7Emi39f4jz%7Es9-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A658807305\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=touhajleb-sidi-aly-289772164&amp;entityUrn=ADoAACdEmgkBBh_BBP-7vMvTNhi7-hWJMHWO6KU&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midSig=2W0STNInEwtc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A658807305-null-poh2nf%7Emi39f4jz%7Es9-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A658807305\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=touhajleb-sidi-aly-289772164&amp;entityUrn=ADoAACdEmgkBBh_BBP-7vMvTNhi7-hWJMHWO6KU&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midSig=2W0STNInEwtc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A658807305-null-poh2nf%7Emi39f4jz%7Es9-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A658807305\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=touhajleb-sidi-aly-289772164&amp;entityUrn=ADoAACdEmgkBBh_BBP-7vMvTNhi7-hWJMHWO6KU&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midSig=2W0STNInEwtc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A658807305-null-poh2nf%7Emi39f4jz%7Es9-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A658807305\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/discovery-see-all/?usecase=EMAIL_MIXED_RECOMMENDATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2W0STNInEwtc01&amp;trk=eml-email_edge_discover_01-see_more-0-cta~text&amp;trkEmail=eml-email_edge_discover_01-see_more-0-cta~text-null-poh2nf~mi39f4jz~s9-null-null&amp;eid=poh2nf-mi39f4jz-s9&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0Yjc4NmNmZDQ0MDk4YWY4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGYzODg1N2ZkZGM5NzA4Nzc0ZTA1MjNjMmZiNzkxZGY2ZDI2ODc1YWY1N2ZkY2IsMSwx\" target=\"_blank\" aria-label=\"See all\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/discovery-see-all/?usecase=EMAIL_MIXED_RECOMMENDATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2W0STNInEwtc01&amp;trk=eml-email_edge_discover_01-see_more-0-cta~text&amp;trkEmail=eml-email_edge_discover_01-see_more-0-cta~text-null-poh2nf~mi39f4jz~s9-null-null&amp;eid=poh2nf-mi39f4jz-s9&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0Yjc4NmNmZDQ0MDk4YWY4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGYzODg1N2ZkZGM5NzA4Nzc0ZTA1MjNjMmZiNzkxZGY2ZDI2ODc1YWY1N2ZkY2IsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> See all </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-lg text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 20px; color: #114951;\"> Get the new LinkedIn desktop app </h2> </td> </tr> <tr> <td class=\"text-center pb-2\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <a href=\"https://apps.microsoft.com/store/detail/9WZDNCRFJ4Q7?launch=true&amp;cid=linkedin_email_upsell&amp;mode=full\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it from Microsoft\" src=\"https://static.licdn.com/aero-v1/sc/h/ejpkkpwvqks31a3cjqokb7fbm\" class=\"h-[40px] w-[112px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 112px;\" width=\"112\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-md text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 16px; color: #114951;\"> Also available on mobile </h2> </td> </tr> <tr> <td class=\"text-center\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <a href=\"https://itunes.apple.com/us/app/linkedin/id288429040?pt=10746&amp;ct=st_appsite_flagship&amp;mt=8\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Download on the App Store\" src=\"https://static.licdn.com/aero-v1/sc/h/76yzkd0h5kiv27lrd4yaenylk\" class=\"h-[40px] w-[120px] pr-1\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 120px; padding-right: 8px;\" width=\"120\" height=\"40\"> </a> <a href=\"https://play.google.com/store/apps/details?id=com.linkedin.android&amp;referrer=st_appsite_flagship\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it on Google Play\" src=\"https://static.licdn.com/aero-v1/sc/h/142qudwblp58zwmc9vkqfplug\" class=\"h-[40px] w-[134px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 134px;\" width=\"134\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px;\"><hr class=\"border-none bg-[#e0dfdd] h-[1px]\" style=\"height: 1px; border-style: none; background-color: #e0dfdd;\"></td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" data-test-id=\"email-footer__intended\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2W0STNInEwtc01&amp;trk=eml-email_edge_discover_01-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_edge_discover_01-SecurityHelp-0-footerglimmer-null-poh2nf~mi39f4jz~s9-null-null&amp;eid=poh2nf-mi39f4jz-s9&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0Yjc4NmNmZDQ0MDk4YWY4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGYzODg1N2ZkZGM5NzA4Nzc0ZTA1MjNjMmZiNzkxZGY2ZDI2ODc1YWY1N2ZkY2IsMSwx\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving People You May Know notification emails.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2W0STNInEwtc01&amp;trk=eml-email_edge_discover_01-unsubscribe-0-footerGlimmer&amp;trkEmail=eml-email_edge_discover_01-unsubscribe-0-footerGlimmer-null-poh2nf~mi39f4jz~s9-null-null&amp;eid=poh2nf-mi39f4jz-s9&amp;loid=AQGMobdVRc1hnwAAAZqSUZOHFj686RrOuIjnG5OZS6kyH8OkkZQ-HWOfPa18Cl5dmt4PO0gfr7OW2VpDqwoD1RCyYRVvvJQPPd6M\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Unsubscribe</a>   ·   <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2W0STNInEwtc01&amp;trk=eml-email_edge_discover_01-help-0-footerglimmer&amp;trkEmail=eml-email_edge_discover_01-help-0-footerglimmer-null-poh2nf~mi39f4jz~s9-null-null&amp;eid=poh2nf-mi39f4jz-s9&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0Yjc4NmNmZDQ0MDk4YWY4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGYzODg1N2ZkZGM5NzA4Nzc0ZTA1MjNjMmZiNzkxZGY2ZDI2ODc1YWY1N2ZkY2IsMSwx\" target=\"_blank\" data-test-help-link class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2W0STNInEwtc01&amp;trk=eml-email_edge_discover_01-footer-0-logoGlimmer&amp;trkEmail=eml-email_edge_discover_01-footer-0-logoGlimmer-null-poh2nf~mi39f4jz~s9-null-null&amp;eid=poh2nf-mi39f4jz-s9&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0Yjc4NmNmZDQ0MDk4YWY4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGYzODg1N2ZkZGM5NzA4Nzc0ZTA1MjNjMmZiNzkxZGY2ZDI2ODc1YWY1N2ZkY2IsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/aero-v1/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFwTXpsbU5HcDZMWE01OlpXMWhhV3hmWldSblpWOWthWE5qYjNabGNsOHdNUT09Og==.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','Mavrix, add interesting content to your feed. Here are a few recommendations to get started.\r\n\r\n\r\nhttps://www.linkedin.com/comm/mynetwork/discovery-see-all/?usecase=EMAIL_MIXED_RECOMMENDATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&midToken=AQE-iPshthTClw&midSig=2W0STNInEwtc01&trk=eml-email_edge_discover_01-see_all-0-cta~text&trkEmail=eml-email_edge_discover_01-see_all-0-cta~text-null-poh2nf~mi39f4jz~s9-null-null&eid=poh2nf-mi39f4jz-s9&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0Yjc4NmNmZDQ0MDk4YWY4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGYzODg1N2ZkZGM5NzA4Nzc0ZTA1MjNjMmZiNzkxZGY2ZDI2ODc1YWY1N2ZkY2IsMSwx\r\n      \r\n\r\n----------------------------------------\r\n\r\nThis email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\nLearn why we included this: https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&midToken=AQE-iPshthTClw&midSig=2W0STNInEwtc01&trk=eml-email_edge_discover_01-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_edge_discover_01-SecurityHelp-0-textfooterglimmer-null-poh2nf~mi39f4jz~s9-null-null&eid=poh2nf-mi39f4jz-s9&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0Yjc4NmNmZDQ0MDk4YWY4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGYzODg1N2ZkZGM5NzA4Nzc0ZTA1MjNjMmZiNzkxZGY2ZDI2ODc1YWY1N2ZkY2IsMSwx\r\nYou are receiving People You May Know notification emails.\r\n\r\n\r\nUnsubscribe: https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&midToken=AQE-iPshthTClw&midSig=2W0STNInEwtc01&trk=eml-email_edge_discover_01-unsubscribe-0-textfooterglimmer&trkEmail=eml-email_edge_discover_01-unsubscribe-0-textfooterglimmer-null-poh2nf~mi39f4jz~s9-null-null&eid=poh2nf-mi39f4jz-s9&loid=AQGMobdVRc1hnwAAAZqSUZOHFj686RrOuIjnG5OZS6kyH8OkkZQ-HWOfPa18Cl5dmt4PO0gfr7OW2VpDqwoD1RCyYRVvvJQPPd6M\r\nHelp: https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bd7a2PXleTJuE4PeMMp5JHg%3D%3D&midToken=AQE-iPshthTClw&midSig=2W0STNInEwtc01&trk=eml-email_edge_discover_01-help-0-textfooterglimmer&trkEmail=eml-email_edge_discover_01-help-0-textfooterglimmer-null-poh2nf~mi39f4jz~s9-null-null&eid=poh2nf-mi39f4jz-s9&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0Yjc4NmNmZDQ0MDk4YWY4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGYzODg1N2ZkZGM5NzA4Nzc0ZTA1MjNjMmZiNzkxZGY2ZDI2ODc1YWY1N2ZkY2IsMSwx\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.\r\nLinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',0,0,0,0,0,0,'2025-11-17 14:56:51','2025-12-09 18:52:08','2025-12-09 18:52:08','2025-12-09 18:52:08',NULL,NULL,NULL),
(147,4,'<0100019a92bdd8bc-47b3b867-b161-4a68-b3e7-8ed844e8f4a1-000000@email.amazonses.com>',NULL,NULL,'Black Friday deals + $75 back in rewards','no-reply@business.amazon.com','Amazon Business','<!doctype html>\r\n<html lang=\"en-US\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\">\r\n <head>\r\n  <title>Black Friday deals + $75 back in rewards</title><!--[if !mso]><!-- -->\r\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><!--<![endif]-->\r\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\r\n  <style type=\"text/css\">#outlook a { padding:0; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block; }</style><!--[if mso]>                    <xml>                      <o:OfficeDocumentSettings xmlns:o=\"urn:schemas-microsoft-com:office:office\">                    <o:AllowPNG/>                          <o:PixelsPerInch>96</o:PixelsPerInch>                      </o:OfficeDocumentSettings>                   <w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\">               <w:DontUseAdvancedTypographyReadingMail/>             </w:WordDocument>                  </xml>                        <style type=\"text/css\">             table { border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt; }             .mj-outlook-group-fix { width:100% !important; }           </style>                  <![endif]--><!--[if !mso]><!-->\r\n  <link href=\"https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <link href=\"https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <style type=\"text/css\">@import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);</style><!--<![endif]-->\r\n  <style type=\"text/css\">@media only screen and (min-width:390px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }</style>\r\n  <style type=\"text/css\">body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; } .links-232F3E-underline-bold a { color: #232F3E; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .mso-button-dark-mode a {background: transparent !important;} u ~ div ul, u ~ div ol {margin-left: -3px} .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .links-161D26-underline a { color: #161D26; text-decoration: underline; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:390px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-165px { max-width: 165px !important} .padding-32px-40px-20px-40px { padding: 32px 40px 20px 40px !important} .font-size-36px { font-size: 36px !important} .padding-0px-40px-24px-40px { padding: 0px 40px 24px 40px !important} .max-width-640px { max-width: 640px !important} .padding-0px-40px-0px-40px { padding: 0px 40px 0px 40px !important} .padding-24px-40px-0px-40px { padding: 24px 40px 0px 40px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }</style>\r\n  <style type=\"text/css\">ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 390px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}</style><!--[if mso]>             <style>                 .hide-on-mobile {display:block !important}             </style>         <![endif]--><!--[if mso]>                 <style>                              .mso-font-size-36px { font-size: 36px !important; } .ul-78ad6e40-c0b9-11f0-9bcb-d5be397603e6 li {            margin-left: -44px !important;            text-indent: -20px; }         .ul-78ad6e40-c0b9-11f0-9bcb-d5be397603e6 li li {            margin-left: -47px !important;           text-indent: -17px;           } ul li { tab-stops: 100%; }                 </style>             <![endif]-->\r\n  <style>[class~=\"x_body\"] { width: 99.9% }</style>\r\n </head>\r\n <body style=\"word-spacing:normal;background-color:#FFFFFF;\" class=\"body\" id=\"body\">\r\n  <div>\r\n   <p><img alt=\"\" src=\"http://elinks.business.amazon.com/CI0/0100019a92bdd8bc-47b3b867-b161-4a68-b3e7-8ed844e8f4a1-000000/h5za8tDyFuOBPyiD5DH23Dl5lqFmSIzOGfcxlqopdLg=431\" style=\"display: none; width: 1px; height: 1px;\">\r\n</p>\r\n  </div><!--[if !mso 9]><!-->\r\n  <div id=\"emailPreHeader\" style=\"display: none;\">\r\n   Business Prime savings details inside\r\n  </div>\r\n  <div style=\"display: none;\">\r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  </div><!--<![endif]-->\r\n  <div style=\"background-color:#FFFFFF;background-position:center center;background-size:auto;background-repeat:repeat;\" id=\"main\">\r\n   <!--[if mso]>\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><![endif]--><!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:16px 16px 14px 16px;text-align:center;vertical-align:top;mso-padding-alt:14px 0px 14px 40px;\" class=\"block-grid padding-14px-0px-14px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:600px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n              <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:middle;width:300px;\" ><![endif]-->\r\n              <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n               <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n                <tbody>\r\n                 <tr>\r\n                  <td class=\"padding-0px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 0px 0px;word-break:break-word;mso-padding-alt:0px 0px 0px 0px;text-align:left;\">\r\n                   <div style=\"margin:0 auto 0 0;\" class=\"max-width-165px\">\r\n                    <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%3Fref_=b2b_life_e_e2_bfcm25_bp_us_75back/1/0100019a92bdd8bc-47b3b867-b161-4a68-b3e7-8ed844e8f4a1-000000/nwQU-gyN7QkToMYQ-7qWnD24AygH9B8aAcVeQFlLf30=431\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business\" height=\"auto\" width=\"165\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-2color2x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                   </div></td>\r\n                 </tr>\r\n                </tbody>\r\n               </table>\r\n              </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:middle;width:300px;\" ><![endif]-->\r\n              <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n               <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n                <tbody>\r\n                 <tr>\r\n                  <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                   <div style=\"line-height:0px;height:0px;mso-line-height-alt:0px;\">\r\n                    &nbsp;\r\n                   </div></td>\r\n                 </tr>\r\n                </tbody>\r\n               </table>\r\n              </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:32px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:32px 40px 20px 40px;\" class=\"block-grid padding-32px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-232F3E-underline-bold\">\r\n                  <div style=\"font-family:\'Ember Modern Display\', Arial, sans-serif;font-size:28px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:2.688em;color:#161D26;\" class=\"mso-font-size-36px font-size-36px\">\r\n                   <p style=\"margin: 0 0 0px 0;\">Don\'t leave money on the table this Black Friday</p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 16px 24px 16px;text-align:center;vertical-align:top;mso-padding-alt:0px 40px 24px 40px;\" class=\"block-grid padding-0px-40px-24px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td valign=\"middle\" class=\"button-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div>\r\n                  <!--[if mso]>\r\n<table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\">\r\n<tr>\r\n<td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_life_e_e2_bfcm25_bp_us_75back%26%26return_to=%252Fab%252Fincentives%252Factivate%253FcampaignId%253D84fddccd-0717-44f2-994f-2ab74d35d975%2526fwd%253D%252Fbusinessprime/1/0100019a92bdd8bc-47b3b867-b161-4a68-b3e7-8ed844e8f4a1-000000/TQ2w0vhdFXuex_nADD4-WUpb8gs8dX-LDfGx4vgFRe0=431\" fillcolor=\"#FFD814\" arcsize=\"58%\" style=\"v-text-anchor:middle;width:77.25pt;height:32.25pt;\" stroke=\"f\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_life_e_e2_bfcm25_bp_us_75back%26%26return_to=%252Fab%252Fincentives%252Factivate%253FcampaignId%253D84fddccd-0717-44f2-994f-2ab74d35d975%2526fwd%253D%252Fbusinessprime/1/0100019a92bdd8bc-47b3b867-b161-4a68-b3e7-8ed844e8f4a1-000000/TQ2w0vhdFXuex_nADD4-WUpb8gs8dX-LDfGx4vgFRe0=431\" style=\"display: inline-block; background: #FFD814; color: #161D26; font-family: \'Amber Ember\', Arial, sans-serif; font-size: 16px; font-weight: normal; line-height: 1.2; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 12px 24px 12px 24px; mso-padding-alt: 0px; border-radius: 25px; border-left: 0 none #FFFFFF; border-right: 0 none #FFFFFF; border-top: 0 none #FFFFFF; border-bottom: 0 none #FFFFFF; mso-border-alt: none; box-sizing: border-box;\" target=\"_blank\" width=\"103\">Sign up </a><!--[if mso]></center></a:textbox></a:roundrect>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\">\r\n                  <div style=\"margin:0 auto;\" class=\"max-width-640px\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_life_e_e2_bfcm25_bp_us_75back%26%26return_to=%252Fab%252Fincentives%252Factivate%253FcampaignId%253D84fddccd-0717-44f2-994f-2ab74d35d975%2526fwd%253D%252Fbusinessprime/2/0100019a92bdd8bc-47b3b867-b161-4a68-b3e7-8ed844e8f4a1-000000/ZLI7Zp7OMscFrXgRVV_mCT2vLB-strpWT0d-5rkq_3o=431\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Don\'t leave money on the table this Black Friday\" height=\"auto\" width=\"640\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/BP/XX-XX_AB_BFCM25_P5_544_Email_Wide_Logo_1280x460.jpg\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"[object Object]\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;mso-padding-alt:0px 0px 0px 0px;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                  <div style=\"line-height:24px;height:24px;mso-line-height-alt:24px;\">\r\n                   &nbsp;\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:0px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:0px 40px 0px 40px;\" class=\"block-grid padding-0px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                  <div class=\"links-007185-bold\">\r\n                   <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:normal;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.375em;color:#222D3A;\">\r\n                    <p style=\"margin: 0 0 0px 0;\">For a limited time, you\'ll earn $75 back in Business Prime Rewards when you sign up.&nbsp;<br><br></p>\r\n                    <p style=\"margin: 0 0 0px 0;\">In addition to fast, free delivery during Black Friday, here\'s what you can expect with your membership:</p>\r\n                    <ul class=\"ul-78ad6e40-c0b9-11f0-9bcb-d5be397603e6\" style=\"display: block; margin-top: 0px; margin-bottom: 0px; padding-left: 45px; color: rgb(22, 29, 38); list-style-type: disc; mso-para-margin-left: 45px;\">\r\n                     <li style=\"padding-left: 3px; margin-left: 0px; margin-top: 16px; margin-bottom: 5px; color: rgb(22, 29, 38);\"><span style=\"color: rgb(34, 45, 58);\">Earn 4% back in Business Prime Rewards on brands by Amazon</span></li>\r\n                     <li style=\"padding-left: 3px; margin-left: 0px; margin-bottom: 5px; color: rgb(22, 29, 38);\"><span style=\"color: rgb(34, 45, 58);\">Get free cybersecurity with CrowdStrike</span></li>\r\n                     <li style=\"padding-left: 3px; margin-left: 0px; margin-bottom: 5px; color: rgb(22, 29, 38);\"><span style=\"color: rgb(34, 45, 58);\">Take 70% off any Gusto plan for 12 months<br><br></span></li>\r\n                    </ul>\r\n                    <p style=\"margin: 0 0 0px 0;\">Start your free trial today. &nbsp;</p>\r\n                   </div>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:24px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:24px 40px 0px 40px;\" class=\"block-grid padding-24px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td valign=\"middle\" class=\"button-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                  <div>\r\n                   <!--[if mso]>\r\n<table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\">\r\n<tr>\r\n<td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_life_e_e2_bfcm25_bp_us_75back%26%26return_to=%252Fab%252Fincentives%252Factivate%253FcampaignId%253D84fddccd-0717-44f2-994f-2ab74d35d975%2526fwd%253D%252Fbusinessprime/2/0100019a92bdd8bc-47b3b867-b161-4a68-b3e7-8ed844e8f4a1-000000/ZLI7Zp7OMscFrXgRVV_mCT2vLB-strpWT0d-5rkq_3o=431\" fillcolor=\"#FFFFFF\" arcsize=\"17%\" style=\"v-text-anchor:middle;width:66pt;height:35.25pt;\" strokecolor=\"#D5D9D9\" strokeweight=\"1.5pt\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_life_e_e2_bfcm25_bp_us_75back%26%26return_to=%252Fab%252Fincentives%252Factivate%253FcampaignId%253D84fddccd-0717-44f2-994f-2ab74d35d975%2526fwd%253D%252Fbusinessprime/3/0100019a92bdd8bc-47b3b867-b161-4a68-b3e7-8ed844e8f4a1-000000/r5Okj1L6vGcBkOA3i5dZnhSXTrcHA9VRYSRv2KScs40=431\" style=\"display: inline-block; background: #FFFFFF; color: #161D26; font-family: \'Amber Ember\', Arial, sans-serif; font-size: 16px; font-weight: normal; line-height: 1.2; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 12px 16px 12px 16px; mso-padding-alt: 0px; border-radius: 8px; border-left: 2px solid #D5D9D9; border-right: 2px solid #D5D9D9; border-top: 2px solid #D5D9D9; border-bottom: 2px solid #D5D9D9; mso-border-alt: none; box-sizing: border-box;\" target=\"_blank\" width=\"90\">Sign up </a><!--[if mso]></center></a:textbox></a:roundrect>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;mso-padding-alt:0px 0px 0px 0px;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                 <div style=\"line-height:30px;height:30px;mso-line-height-alt:30px;\">\r\n                  &nbsp;\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F7F7F7;background-color:#F7F7F7;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F7F7F7;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><!--[if !mso]><!-- --><p style=\"border-top:solid 1px #D5D9D9;font-size:1px;margin:0 auto;width:100%;text-align:center;\"></p><!--<![endif]--><!--Divider--><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-top:solid 1px #D5D9D9;font-size:1px;margin:0 auto;width:640px;text-align:center;\" role=\"presentation\" width=\"640px\" >\r\n<tr>\r\n<td style=\"height:0;line-height:0;\"> &nbsp; </td>\r\n</tr>\r\n</table><![endif]--></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F5F3EF;background-color:#F5F3EF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F5F3EF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-161D26-underline\">\r\n                  <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#222D3A;\">\r\n                   <p style=\"margin: 0;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fgp%2Fhelp%2Fcustomer%2Fdisplay.html%3Fref_=b2b_life_e_e2_bfcm25_bp_us_75back%26nodeId=TcqbDfSE0qpqvXei6k/1/0100019a92bdd8bc-47b3b867-b161-4a68-b3e7-8ed844e8f4a1-000000/xf8hTPpnskvV2_Kptx55Bb-78B34tyLhBTzhh1073Ok=431\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(22, 29, 38); text-decoration: underline;\">Terms and Conditions apply</a>. Offers expire December 1, 2025, at 11:59 pm PT. Max reward for this offer is $75. Don\'t have a Prime membership?&nbsp;<a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_life_e_e2_bfcm25_bp_us_75back%26return_to=%2Fbusinessprime/1/0100019a92bdd8bc-47b3b867-b161-4a68-b3e7-8ed844e8f4a1-000000/Qy_X1BJN6ODyA8Yv5s6PPzVTEbWTpIpvqFMNztJ8sMk=431\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(22, 29, 38); text-decoration: underline;\">Try Business Prime Essentials</a> free for 30 days.</p>\r\n                   <p style=\"margin: 0;\">&nbsp;</p>\r\n                   <p style=\"margin: 0;\">Business Prime offers multiple membership plans and may require a paid plan based on eligibility. Paid plans automatically renew unless cancelled.</p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#161D26;background-color:#161D26;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#161D26;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\">\r\n            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n             <tbody>\r\n              <tr>\r\n               <td style=\"line-height:0;font-size:0;direction:rtl;\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:252px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-45 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-align-right social-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\"><!--[if mso | IE]>\r\n<table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" >\r\n<tr>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.facebook.com%2FAmazonBusiness%2F%3Fref_=b2b_life_e_e2_bfcm25_bp_us_75back/1/0100019a92bdd8bc-47b3b867-b161-4a68-b3e7-8ed844e8f4a1-000000/tSnW9TwJP6dL8SxGSFrc27KfLf2OChecMuaILqYb9U8=431\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Facebook\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Facebook-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Ftwitter.com%2FAmazonBusiness%3Fref_=b2b_life_e_e2_bfcm25_bp_us_75back/1/0100019a92bdd8bc-47b3b867-b161-4a68-b3e7-8ed844e8f4a1-000000/PqQ9EE4cNtuOqnUHu7iw87IWNrQ2SKjDqWrOqabkR_A=431\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Twitter\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Twitter-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.linkedin.com%2Fcompany%2Famazon-business%2F%3Fref_=b2b_life_e_e2_bfcm25_bp_us_75back/1/0100019a92bdd8bc-47b3b867-b161-4a68-b3e7-8ed844e8f4a1-000000/9jdGqkNlMCUbD4fItRxq0HtmuYammKVpy_kmDkdZU3A=431\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Linkedin\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-LinkedIn-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"padding-10px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 20px 0px;word-break:break-word;mso-padding-alt:10px 0px 0px 0px;text-align:right;\">\r\n                     <div style=\"margin:0 auto 0 0;max-width:163px;\" class=\"margin-0-0-0-auto\">\r\n                      <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2F%3Fref_=b2b_life_e_e2_bfcm25_bp_us_75back%26ref_=b2b_life_e_e2_bfcm25_bp_us_75back/1/0100019a92bdd8bc-47b3b867-b161-4a68-b3e7-8ed844e8f4a1-000000/WKNMf7YhTqNhnR94tMcdJpuyT1zPcZUhIe1dGFHymH0=431\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business logo\" height=\"auto\" width=\"163\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-white2x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:308px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-55 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Fen%2Fcontact-us%3Fref_=b2b_life_e_e2_bfcm25_bp_us_75back/1/0100019a92bdd8bc-47b3b867-b161-4a68-b3e7-8ed844e8f4a1-000000/Kupwbqr7yjBj3JUjtqtMBppSGgnUsXhddl34GYDKSvM=431\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">Contact us</a> | <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fab%2Fmanage%2Faccount%2F%3Fref_=b2b_life_e_e2_bfcm25_bp_us_75back/1/0100019a92bdd8bc-47b3b867-b161-4a68-b3e7-8ed844e8f4a1-000000/lcxB_e7is7z1novk03k46s-pcfXB_aRZmoSeSkJIzh4=431\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">Manage account</a></p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\">If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Femail-preferences%2Fep%2F3MT2FCOJhItbzSND30BA%2BXpG8YYEMwmDF2M50XNKX0VKWLMsbXP1YxgVAg==%2F1244813025%2FGbFi8CiQwyuPCyEZaalopqo*Jkb%2BhylO4TUI7Z%2B2EYIp4hAs8AiUFWWeHZvdRjgNdpdbs6bsbckMwcJzlxUbumDAe9mA6w*9a*euXKy*CSKjAq6Zwfbu*01N9eNs1phtUgXmHIddWIv7ZPSm%2BfUzUI8zAbTMlHAk97UVpEZrVCvOpmdS*yqfxdkdlHfIcTMJheGS0wOg11dIaUvg9yuEWYj3b%2BO3HyvgUAQ*RMNLNeg8dOSmybWp%2BrhTZCAjzdF7GH%2BoTTUFeXsqjMsZ1vsZG6j6sdqPB3HNTUWVAdP2Ye*my2Lgbo9nftSKkm7E3RpqsrJ%2BJzslx8FYHliAorAHMvLHTxkXN5eEYNV4VoUJ*BzYkrDjM3g=%2F5%2BwVXAqnTutcCJ7zYX%2BOXq0SI7KOpdmtcnF2ZKtDm9%2BQ%3Fref_=b2b_life_e_e2_bfcm25_bp_us_75back/1/0100019a92bdd8bc-47b3b867-b161-4a68-b3e7-8ed844e8f4a1-000000/5F2cbZ6n97Z2oWVjvGgjVVGoFJFDE2DMOHgXfP5jgYk=431\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">email preferences</a>.</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 30px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\">© 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210</p>\r\n                       <p style=\"margin: 0;\">&nbsp;</p>\r\n                       <p style=\"margin: 0;\">Reference: 1244813025</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n              </tr>\r\n             </tbody>\r\n            </table></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--><!--[if mso]>\r\n</table><![endif]-->\r\n  </div>\r\n </body>\r\n</html>\r\n','\r\n\r\n \r\n  Black Friday deals + $75 back in rewards\r\n  \r\n  \r\n  \r\n  #outlook a { padding:0; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block; }\r\n  \r\n  \r\n  @import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);\r\n  @media only screen and (min-width:390px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }\r\n  body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; } .links-232F3E-underline-bold a { color: #232F3E; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .mso-button-dark-mode a {background: transparent !important;} u ~ div ul, u ~ div ol {margin-left: -3px} .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .links-161D26-underline a { color: #161D26; text-decoration: underline; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:390px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-165px { max-width: 165px !important} .padding-32px-40px-20px-40px { padding: 32px 40px 20px 40px !important} .font-size-36px { font-size: 36px !important} .padding-0px-40px-24px-40px { padding: 0px 40px 24px 40px !important} .max-width-640px { max-width: 640px !important} .padding-0px-40px-0px-40px { padding: 0px 40px 0px 40px !important} .padding-24px-40px-0px-40px { padding: 24px 40px 0px 40px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }\r\n  ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 390px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}\r\n  [class~=\"x_body\"] { width: 99.9% }\r\n \r\n \r\n  \r\n   \r\n\r\n  \r\n  \r\n   Business Prime savings details inside\r\n  \r\n  \r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  \r\n  \r\n   \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                   \r\n                 \r\n                \r\n               \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    &nbsp;\r\n                   \r\n                 \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   Don\'t leave money on the table this Black Friday\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                   Sign up \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   &nbsp;\r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    For a limited time, you\'ll earn $75 back in Business Prime Rewards when you sign up.&nbsp;\r\n                    In addition to fast, free delivery during Black Friday, here\'s what you can expect with your membership:\r\n                    \r\n                     Earn 4% back in Business Prime Rewards on brands by Amazon\r\n                     Get free cybersecurity with CrowdStrike\r\n                     Take 70% off any Gusto plan for 12 months\r\n                    \r\n                    Start your free trial today. &nbsp;\r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                    Sign up \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  &nbsp;\r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   Terms and Conditions apply. Offers expire December 1, 2025, at 11:59 pm PT. Max reward for this offer is $75. Don\'t have a Prime membership?&nbsp;Try Business Prime Essentials free for 30 days.\r\n                   &nbsp;\r\n                   Business Prime offers multiple membership plans and may require a paid plan based on eligibility. Paid plans automatically renew unless cancelled.\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       Contact us | Manage account\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your email preferences.\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       © 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210\r\n                       &nbsp;\r\n                       Reference: 1244813025\r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n   \r\n  \r\n \r\n\r\n',0,0,0,0,0,0,'2025-11-17 16:55:06','2025-12-09 18:52:08','2025-12-09 18:52:08','2025-12-09 18:52:08',NULL,NULL,NULL),
(148,4,'<CAGOCFXhG+ZT2qQTSq2FM43BOpewZP7zXpR-3oqA7NX2oRJ-JzA@mail.gmail.com>',NULL,NULL,'LBC Sales Process Bubble Chart','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Attached is the LBC Sales Process Bubble Chart.  </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div>','Attached is the LBC Sales Process Bubble Chart.\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>',0,0,0,0,0,0,'2025-11-17 17:40:38','2025-12-09 18:52:09','2025-12-09 18:52:09','2025-12-09 18:52:09',NULL,NULL,NULL),
(149,4,'<CAGOCFXg5acpirH-zdZSSiFx6qkvQMmCouDrq1RvEQwTA6S6xxw@mail.gmail.com>',NULL,NULL,'Fwd: Lithium / Garage - Kick Off Meeting','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"auto\">Brian wanted to see if you wanted to attend this on a video meeting.  If not no big deal.  <br clear=\"all\"><br clear=\"all\"><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div><div><br></div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">Jeff Miller</strong> <span dir=\"auto\">&lt;<a href=\"mailto:JMiller@choateco.com\">JMiller@choateco.com</a>&gt;</span><br>Date: Mon, Nov 17, 2025 at 11:48 AM<br>Subject: Lithium / Garage - Kick Off Meeting<br>To: Brian Stufflebean &lt;brian@mavrix.one&gt;, Steve Barthlow &lt;<a href=\"mailto:steve.barthlow@lddblueline.com\">steve.barthlow@lddblueline.com</a>&gt;, Geiger, Marcus &lt;<a href=\"mailto:marcus.geiger@kimley-horn.com\">marcus.geiger@kimley-horn.com</a>&gt;, <a href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a> &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt;, <a href=\"mailto:nathan@lithiumbatterycompany.com\">nathan@lithiumbatterycompany.com</a> &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\">nathan@lithiumbatterycompany.com</a>&gt;<br>CC: Aubree Garrison &lt;<a href=\"mailto:AGarrison@choateco.com\">AGarrison@choateco.com</a>&gt;, R Scott Willett &lt;<a href=\"mailto:RSWillett@choateco.com\">RSWillett@choateco.com</a>&gt;, Kara Holley &lt;<a href=\"mailto:KHolley@choateco.com\">KHolley@choateco.com</a>&gt;<br></div><br><br>\r\n\r\n\r\n\r\n\r\n\r\n<div lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"m_-8015278068448698091WordSection1\">\r\n<p class=\"MsoNormal\">Team please review the “sent to list” and forward to anyone I’m missing. Steve, please forward to the MEP team.\r\n<u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\">Our office is listed and available for anyone that would like to meet in person or there is a teams link for those that cannot meet in person.\r\n<u></u><u></u></p>\r\n<div>\r\n<div style=\"margin-bottom:.25in;overflow:hidden\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">________________________________________________________________________________</span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\"><u></u><u></u></span></p>\r\n</div>\r\n<div style=\"margin-bottom:9.0pt\">\r\n<p class=\"MsoNormal\"><span class=\"m_-8015278068448698091me-email-text\"><b><span style=\"font-size:18.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">Microsoft Teams</span></b></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<a href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\" target=\"_blank\"><span style=\"font-size:10.5pt;color:#5b5fc7\">Need help?</span></a>\r\n<u></u><u></u></span></p>\r\n</div>\r\n<div style=\"margin-bottom:4.5pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\"><a href=\"https://teams.microsoft.com/l/meetup-join/19%3ameeting_MzI0ZTNjMTItMWU4OC00ZDcwLWE4ODYtODQxMWY4Y2ZkZTJk%40thread.v2/0?context=%7b%22Tid%22%3a%226ee58ae5-ec27-465d-b85e-652ad8ebded0%22%2c%22Oid%22%3a%221eb4286c-7ae5-4c40-8c13-c9732624522f%22%7d\" title=\"Meeting join link\" target=\"_blank\"><b><span style=\"font-size:15.0pt;color:#5b5fc7\">Join\r\n the meeting now</span></b></a> <u></u><u></u></span></p>\r\n</div>\r\n<div style=\"margin-bottom:4.5pt\">\r\n<p class=\"MsoNormal\"><span class=\"m_-8015278068448698091me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">Meeting ID:\r\n</span></span><span class=\"m_-8015278068448698091me-email-text\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">224 928 244 514 74</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<u></u><u></u></span></p>\r\n</div>\r\n<div style=\"margin-bottom:24.0pt\">\r\n<p class=\"MsoNormal\"><span class=\"m_-8015278068448698091me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">Passcode:\r\n</span></span><span class=\"m_-8015278068448698091me-email-text\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">vv6ms9Zw</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<u></u><u></u></span></p>\r\n</div>\r\n<div style=\"margin-bottom:9.0pt\">\r\n<div class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<hr size=\"1\" width=\"100%\" align=\"center\">\r\n</span></div>\r\n</div>\r\n<div>\r\n<div style=\"margin-bottom:4.5pt\">\r\n<p class=\"MsoNormal\"><span class=\"m_-8015278068448698091me-email-text\"><b><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">Dial in by phone</span></b></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<u></u><u></u></span></p>\r\n</div>\r\n<div style=\"margin-bottom:4.5pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\"><a href=\"tel:+14782390858,,335728708\" target=\"_blank\"><span style=\"font-size:10.5pt;color:#5b5fc7\">+1 478-239-0858,,335728708#</span></a>\r\n</span><span class=\"m_-8015278068448698091me-email-text\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">United States, Macon</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<u></u><u></u></span></p>\r\n</div>\r\n<div style=\"margin-bottom:4.5pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\"><a href=\"https://dialin.teams.microsoft.com/c8a002b4-63a3-4e56-92d3-60dc7f8591c4?id=335728708\" target=\"_blank\"><span style=\"font-size:10.5pt;color:#5b5fc7\">Find a local number</span></a>\r\n<u></u><u></u></span></p>\r\n</div>\r\n</div>\r\n<div style=\"margin-bottom:.25in\">\r\n<p class=\"MsoNormal\"><span class=\"m_-8015278068448698091me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">Phone conference ID:\r\n</span></span><span class=\"m_-8015278068448698091me-email-text\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">335 728 708#</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<u></u><u></u></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span class=\"m_-8015278068448698091me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">For organizers:\r\n</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\"><a href=\"https://teams.microsoft.com/meetingOptions/?organizerId=1eb4286c-7ae5-4c40-8c13-c9732624522f&amp;tenantId=6ee58ae5-ec27-465d-b85e-652ad8ebded0&amp;threadId=19_meeting_MzI0ZTNjMTItMWU4OC00ZDcwLWE4ODYtODQxMWY4Y2ZkZTJk@thread.v2&amp;messageId=0&amp;language=en-US\" target=\"_blank\"><span style=\"font-size:10.5pt;color:#5b5fc7\">Meeting\r\n options</span></a> </span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">|</span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<a href=\"https://dialin.teams.microsoft.com/usp/pstnconferencing\" target=\"_blank\">\r\n<span style=\"font-size:10.5pt;color:#5b5fc7\">Reset dial-in PIN</span></a> <u></u><u></u></span></p>\r\n</div>\r\n<div style=\"margin-bottom:.25in;overflow:hidden\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">________________________________________________________________________________<u></u><u></u></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n</div>\r\n</div>\r\n\r\n</div></div>','Brian wanted to see if you wanted to attend this on a video meeting.  If\r\nnot no big deal.\r\n\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: Jeff Miller <JMiller@choateco.com>\r\nDate: Mon, Nov 17, 2025 at 11:48 AM\r\nSubject: Lithium / Garage - Kick Off Meeting\r\nTo: Brian Stufflebean <brian@mavrix.one>, Steve Barthlow <\r\nsteve.barthlow@lddblueline.com>, Geiger, Marcus <\r\nmarcus.geiger@kimley-horn.com>, jordan@lithiumbatterycompany.com <\r\njordan@lithiumbatterycompany.com>, nathan@lithiumbatterycompany.com <\r\nnathan@lithiumbatterycompany.com>\r\nCC: Aubree Garrison <AGarrison@choateco.com>, R Scott Willett <\r\nRSWillett@choateco.com>, Kara Holley <KHolley@choateco.com>\r\n\r\n\r\nTeam please review the “sent to list” and forward to anyone I’m missing.\r\nSteve, please forward to the MEP team.\r\n\r\n\r\n\r\nOur office is listed and available for anyone that would like to meet in\r\nperson or there is a teams link for those that cannot meet in person.\r\n\r\n________________________________________________________________________________\r\n\r\n*Microsoft Teams* Need help? <https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\n\r\n*Join the meeting now*\r\n<https://teams.microsoft.com/l/meetup-join/19%3ameeting_MzI0ZTNjMTItMWU4OC00ZDcwLWE4ODYtODQxMWY4Y2ZkZTJk%40thread.v2/0?context=%7b%22Tid%22%3a%226ee58ae5-ec27-465d-b85e-652ad8ebded0%22%2c%22Oid%22%3a%221eb4286c-7ae5-4c40-8c13-c9732624522f%22%7d>\r\n\r\nMeeting ID: 224 928 244 514 74\r\n\r\nPasscode: vv6ms9Zw\r\n------------------------------\r\n\r\n*Dial in by phone*\r\n\r\n+1 478-239-0858,,335728708# <+14782390858,,335728708> United States, Macon\r\n\r\nFind a local number\r\n<https://dialin.teams.microsoft.com/c8a002b4-63a3-4e56-92d3-60dc7f8591c4?id=335728708>\r\n\r\nPhone conference ID: 335 728 708#\r\n\r\nFor organizers: Meeting options\r\n<https://teams.microsoft.com/meetingOptions/?organizerId=1eb4286c-7ae5-4c40-8c13-c9732624522f&tenantId=6ee58ae5-ec27-465d-b85e-652ad8ebded0&threadId=19_meeting_MzI0ZTNjMTItMWU4OC00ZDcwLWE4ODYtODQxMWY4Y2ZkZTJk@thread.v2&messageId=0&language=en-US>\r\n| Reset dial-in PIN\r\n<https://dialin.teams.microsoft.com/usp/pstnconferencing>\r\n\r\n________________________________________________________________________________',0,0,0,0,0,0,'2025-11-17 18:42:40','2025-12-09 18:52:10','2025-12-09 18:52:10','2025-12-09 18:52:10',NULL,NULL,NULL),
(150,4,'<1763411143901.1d513234-4120-41b0-ac7c-db557f44db31@bf03.hubspotemail.net>',NULL,NULL,'FYSA: Speed-to-field now starts with speed-to-engagement','tanya@grafik.com','Tanya Nazarian','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional //EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:v=\"urn:schemas-microsoft-com:vml\" lang=\"en\"><head>\r\n    <title>FYSA: Speed-to-field now starts with speed-to-engagement</title>\r\n    <meta property=\"og:title\" content=\"FYSA: Speed-to-field now starts with speed-to-engagement\">\r\n    <meta name=\"twitter:title\" content=\"FYSA: Speed-to-field now starts with speed-to-engagement\">\r\n    \r\n    \r\n    \r\n<meta name=\"x-apple-disable-message-reformatting\">\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\r\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <!--[if gte mso 9]>\r\n  <xml>\r\n    <o:OfficeDocumentSettings>\r\n      <o:AllowPNG/>\r\n      <o:PixelsPerInch>96</o:PixelsPerInch>\r\n    </o:OfficeDocumentSettings>\r\n    <w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\">\r\n      <w:DontUseAdvancedTypographyReadingMail/>\r\n    </w:WordDocument>\r\n  </xml>\r\n  \r\n  <style>\r\n    ul > li {\r\n      text-indent: -1em;\r\n    }\r\n  </style>\r\n<![endif]-->\r\n<!--[if mso]>\r\n<style type=\"text/css\">\r\n body, td {font-family: Arial, Helvetica, sans-serif;}\r\n .hse-body-wrapper-table {background-color: #f2efea;}\r\n</style>\r\n<![endif]-->\r\n<!--[if mso | IE]>\r\n  <style type=\"text/css\">\r\n    .hse-column-container { border: none !important; padding: 0 !important; }\r\n  </style>\r\n<![endif]-->\r\n    \r\n      \r\n  \r\n  \r\n    \r\n  <meta name=\"generator\" content=\"HubSpot\"><meta property=\"og:url\" content=\"http://grafik-7.hs-sites.com/fysa-speed-to-field-now-starts-with-speed-to-engagement\"><meta name=\"robots\" content=\"noindex,follow\"><!--[if !((mso)|(IE))]><!-- --><style type=\"text/css\">@media only screen and (max-width:639px){img.stretch-on-mobile,.hs_rss_email_entries_table img,.hs-stretch-cta .hs-cta-img{height:auto !important;width:100% !important}\r\n.display_block_on_small_screens{display:block}.hs_padded{padding-left:20px !important;padding-right:20px !important}\r\n.hs-hm,table.hs-hm{display:none}.hs-hd{display:block !important}table.hs-hd{display:table !important}\r\n}@media only screen and (max-width:639px){.hse-border-m{border-left:1px solid #cbd6e2 !important;border-right:1px solid #cbd6e2 !important;box-sizing:border-box}\r\n.hse-border-bottom-m{border-bottom:1px solid #cbd6e2 !important}.hse-border-top-m{border-top:1px solid #cbd6e2 !important}\r\n.hse-border-top-hm{border-top:none !important}.hse-border-bottom-hm{border-bottom:none !important}\r\n}.moz-text-html .hse-column-container{max-width:600px !important;width:600px !important}\r\n.moz-text-html .hse-column{display:table-cell;vertical-align:top}.moz-text-html .hse-section .hse-size-6{max-width:300px !important;width:300px !important}\r\n.moz-text-html .hse-section .hse-size-12{max-width:600px !important;width:600px !important}\r\n@media only screen and (min-width:640px){.hse-column-container{max-width:600px !important;width:600px !important}\r\n.hse-column{display:table-cell;vertical-align:top}.hse-section .hse-size-6{max-width:300px !important;width:300px !important}\r\n.hse-section .hse-size-12{max-width:600px !important;width:600px !important} }@media only screen and (max-width:639px){.hse-body-wrapper-td{padding-top:0px !important}\r\n#section_1747855946904 .hse-column-container{background-color:transparent !important}\r\n#section_1747855946904 .hse-column-container{background-color:transparent !important}\r\n}@media only screen and (max-width:639px){ #section_17468034824076 .hse-column-container{background-color:#151515 !important}\r\n}@media only screen and (max-width:639px){.hse-body-wrapper-td{padding-bottom:0px !important}\r\n#section_17468034857699 .hse-column-container{padding-top:0px !important;padding-bottom:10px !important}\r\n#section_17468034857699 .hse-column-container{background-color:#151515 !important}\r\n}</style><!--<![endif]--><style type=\"text/css\">#hs_body #hs_cos_wrapper_main a[x-apple-data-detectors]{color:inherit !important;text-decoration:none !important;font-size:inherit !important;font-family:inherit !important;font-weight:inherit !important;line-height:inherit !important}\r\na{text-decoration:underline}p{margin:0}body{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale}\r\ntable{border-spacing:0;mso-table-lspace:0;mso-table-rspace:0}table,td{border-collapse:collapse}\r\nimg{-ms-interpolation-mode:bicubic}p,a,li,td,blockquote{mso-line-height-rule:exactly}\r\n.ShadowHTML p,.sh-modified-inline p{margin:0}</style></head>\r\n  <body id=\"hs_body\" bgcolor=\"#f2efea\" style=\"margin:0 !important; padding:0 !important; font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word\">\r\n    <div id=\"preview_text\" style=\"display:none;font-size:1px;color:#f2efea;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;\" lang=\"en\">The Warfighting Acquisition System Has Arrived. Is Your Brand Ready?</div>\r\n    \r\n<!--[if gte mso 9]>\r\n<v:background xmlns:v=\"urn:schemas-microsoft-com:vml\" fill=\"t\">\r\n    <v:fill type=\"tile\" size=\"100%,100%\" color=\"#ffffff\"/>\r\n</v:background>\r\n<![endif]-->\r\n    <div class=\"hse-body-background\" lang=\"en\" style=\"background-color:#f2efea\" bgcolor=\"#f2efea\">\r\n      <table role=\"presentation\" class=\"hse-body-wrapper-table\" cellpadding=\"0\" cellspacing=\"0\" style=\"margin:0; padding:0; width:100% !important; min-width:320px !important; height:100% !important\" width=\"100%\" height=\"100%\">\r\n        <tbody><tr>\r\n          <td class=\"hse-body-wrapper-td\" valign=\"top\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; padding-top:20px; padding-bottom:20px\">\r\n            <div id=\"hs_cos_wrapper_main\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_dnd_area\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"dnd_area\">  <div id=\"section_1747855946904\" class=\"hse-section hse-section-first\" style=\"padding-left:0px; padding-right:0px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\r\n      <tr>\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column_1747855946904_0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module_17478559469032\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div style=\"overflow:hidden\">\r\n  <table role=\"presentation\" class=\"hse-pre-header hse-secondary\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"text-align:right; font-family:Arial, sans-serif; font-size:12px; line-height:135%; color:#23496d; margin-bottom:0; padding:0\" align=\"right\">\r\n    <tbody>\r\n      <tr>\r\n        <td align=\"right\" valign=\"top\" style=\"color:#000000; word-break:break-word; text-align:right; font-family:Arial, sans-serif; font-size:12px; padding:10px 0; margin-bottom:0; line-height:135%\">\r\n          <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VVBj-F1X5wTtW6sBZbQ36Jq67W1PHNH55F_xqCN84393W5nXHCW7Y9pgv6lZ3lhN3rWp2VMw5HjW5T0qXT9gVc8yW4lJ0d62bYFyZW4y2Zbg7NrlPfW4LfCV153hQdvT9J-k3RBQJVW7PrGLG55-d0HN75LXXNKM6vzW8g7SQM5StqlhVsZDzV52Zpv1V2vprb17zrjBW2kCCPD2FwPrLVNZcpM41kdsgW42hBHK47QyzvW1LRT1K3Mrl_8N8-8chHvFcjgW41dZ8L846JtqVp2Xhg65t3-fV9yk8W7jNQK6N45MjFRjq87PW7-5Vh55_TkzgW1xMR2-2y7L8wMxlMmKpkyqNN6J5yw66N_PzW6VjTYS2rWv_6W8kd93-1xBbHjW6r3_3z8TztqCN8N6ZMx4vZyJW7f9R3d71fNpbN1SjfRZb-S5-V1SP0g86pqJ6W6FKl4w6NvKy8W7y04cR8SzF31W36qCgM3LWnPSW2wFWpY3Cp-czVllMxr7tyMFbW4TN_9Y3hX88mW4VYx-k4T0KFlW7X-c9Z2g0hDZW2lgN_p4jSQW-N5RGbM324d7ZW3yN61k3cYvQDf4Jqry604\" style=\"color:#d01300; font-weight:normal; text-decoration:underline; font-style:normal\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"KNxdOPvx\" target=\"_blank\">View in browser</a>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n</div></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"builtin_section-2\" class=\"hse-section\" style=\"padding-left:0px; padding-right:0px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"builtin_column_2-0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module_16389778621911\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#000000; word-break:break-word; text-align:center; padding:0px; font-size:0px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VVBj-F1X5wTtW6sBZbQ36Jq67W1PHNH55F_xqCN84392q5nXHCW50kH_H6lZ3p_W8gPtNK8-nyj3VRTpkz5PKKPsW4dVfLs2vzJWRW39m_Kk5MxdfpW4kGDCM1DT-mXW7cKnJp39LD5dW5pDcZJ5Q-3H7W5B5hXZ5tLRdhN1Jc7QWRS6dPW90thT84wHnFLW4vGkyn6_vnfkW5Qm3Hf8ChSf9VjkNMP1d5FMKW6v1Lj02G_k0LW3N4rqf7dlzD9W6Vn4wX4cHYptW2B_KrV5lb6pMW5bZpT21qrmjXW4j8_f82Q33-RW8nrcYL8P8h9YW1y-Pyc6XcqvsW8ZC8gT3gZ0M9W1srfy51GkTHNW2KJmPs8cTTgDW88GgQ93D2ldNW2KdPF_5qKT2lW4080yc7kyqdgW3Llt0D8yr2N1W2rYYlK1hn0HcW8K1tGh4bf8qPW7ycCGf41FqrjW3YDCqn5zVB3yf2-yfhb04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"RFAhPYwj\">\r\n        <img alt=\"Warfight Acquisition Header_1200x500\" src=\"https://hs-505301.f.hubspotemail.net/hub/505301/hubfs/Warfight%20Acquisition%20Header_1200x500.jpg?width=1200&amp;upscale=true&amp;name=Warfight%20Acquisition%20Header_1200x500.jpg\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"600\" align=\"middle\" class=\"stretch-on-mobile\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; padding:20px 20px 0px\"><div id=\"hs_cos_wrapper_builtin_module_2_0_0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_builtin_module_2_0_0_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"line-height:175%\"><span style=\"color: #000000; font-family: Arial, sans-serif;\">Hi Rick,</span></p>\r\n<p data-start=\"385\" data-end=\"484\" style=\"line-height:175%\">A recent RFI from the Defense Innovation Unit didn’t appear on SAM.gov. It showed up on LinkedIn. That’s not an anomaly. It’s a signal.</p>\r\n<p data-start=\"527\" data-end=\"727\" style=\"line-height:175%\"><br>The Pentagon just rebranded the Defense Acquisition System as the <strong data-start=\"593\" data-end=\"627\">Warfighting Acquisition System</strong>, a generational shift designed to move faster, cut red tape, and get capability to the field now.</p>\r\n<p data-start=\"729\" data-end=\"930\" style=\"line-height:175%\">&nbsp;</p>\r\n<p data-start=\"729\" data-end=\"930\" style=\"line-height:175%\">For defense tech companies, that means acquisition is no longer a waiting game. The companies that show up early, visibly, and credibly in the right channels are the ones earning a seat at the table.<br><br></p>\r\n<p data-start=\"932\" data-end=\"995\" style=\"line-height:175%\">In our <span style=\"color: #ff2d0f;\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VVBj-F1X5wTtW6sBZbQ36Jq67W1PHNH55F_xqCN84392q5nXHCW50kH_H6lZ3p2W5W1W3H6yt19RW2MbcpS92zZtqW8Vx1d67rC41-N5-6fD1b5wBZW7LYlvd3t1ZZcVVPM4z6W5-n_N7QwNr1_Lq12W936Tw-3Stkc0MNLW5w32wjYV3-ng778CSXPW3N9GXX69_6tLW6qrmkL90dLMsVl8Vmm5b722YW1kfscj370dV0W2WH2hR1x-v2HW6fy51K5yXY8PW3XTjJv25Z5v_W7dw1Sz6gD3LbW5523RT6zYK6_W21tcdy8cLV1lVtHPml6JtqMXW4sSsmj5nYhlkW2R1Ptd20ySlpW43SCQ019mTFjW72pPC075KnsTW3cFlgL4P59rHV9MvR-1wqGxZW4gnLYD95nMrmW6VRFgk1DPZRNMysWF-Nz3gMW4rDlzs2M1WWmN3QtVVndhfF0f6b24LK04\" style=\"color:#ff2d0f\" rel=\"noopener\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"23Gl+ldJ\" target=\"_blank\">latest blog</a>,</span> we unpack what this means for your brand:</p>\r\n<ul data-start=\"997\" data-end=\"1207\" style=\"line-height:175%\">\r\n<li data-start=\"997\" data-end=\"1061\">\r\n<p data-start=\"999\" data-end=\"1061\" style=\"line-height:175%\">How “speed-to-field” now begins with <span style=\"font-weight: normal;\">speed-to-engagement</span></p>\r\n</li>\r\n<li data-start=\"1062\" data-end=\"1128\">\r\n<p data-start=\"1064\" data-end=\"1128\" style=\"line-height:175%\">Why DIU, AFWERX, and others are signaling demand in new places</p>\r\n</li>\r\n<li data-start=\"1129\" data-end=\"1207\">\r\n<p data-start=\"1131\" data-end=\"1207\" style=\"line-height:175%\">What brand behaviors build credibility in this new acquisition environment</p>\r\n</li>\r\n</ul>\r\n<p data-start=\"1209\" data-end=\"1281\" style=\"line-height:175%\">The government’s moving fast. The question is, can your brand keep up?<br><br></p></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; padding:0px 20px 10px\"><div id=\"hs_cos_wrapper_module_17521663901933\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#ff2d0f\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; border-radius:4px; cursor:auto; background-color:#ff2d0f; mso-padding-alt:12px 18px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VVBj-F1X5wTtW6sBZbQ36Jq67W1PHNH55F_xqCN84392q5nXHCW50kH_H6lZ3lcW5R0px84-kdnGW15C_Hd7lcnvZW7-B5K14-HcMLN481tD-Zt45-W8wsP8P3rgBbKTzq2M8pF7XZW13cQ_28t6CWFW5cbf0W7-pw8KW8bfPnG45GQlkW1lsJqL5d6hL-VV2xPC1-2jJQW8vj0pt5KdLGCW6nDFDy28j6yvW4Cj4tS4TH41fW4mjpPD3Gz5tSW2WPjv411p8l2W5fbDY24XP0GLW2D0qsq88Xcj-W6lBzvL8TH8LpW3_GWQ22k97HGN1yZ9C7L7qzMW1kG0wj4RTRP5W4kCQpy33Pk0QW6s4ygn4Mv4gLN4GtzDbJNScwW3BnR7X5M-GYbW2m1SBY35_Kv7VGFn9G3_CKXgVW0wYH96g6N_W4pTkZM5ftgnYW1Tv24Y3gCQksW2dfz9Y4xX_CPdzcmBF04\" target=\"_blank\" style=\"color:#00a4bd; font-size:16px; font-family:Arial, sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:12px 18px; display:block\" data-hs-link-id=\"2\" data-hs-link-id-v2=\"OZD6H8zX\">\r\n          <strong style=\"color:#ffffff;font-weight:bold;text-decoration:none;font-style:normal;\">Read the full blog</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; padding:5px 30px 0px\"><div id=\"hs_cos_wrapper_module_17521664251794\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17521664251794_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"line-height:175%\"><span style=\"color: #3574e3;\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VVBj-F1X5wTtW6sBZbQ36Jq67W1PHNH55F_xqCN84393C3qn9qW7lCdLW6lZ3k_W9gz0nR9jWqgvW6jsZfv81XFLrW2X6DjG8zhZ_PW702_3g3kG92-W80x6bg4gF2-xN2ngtgkkBlT_N97_1TZ__H87W6JCb1D3yR3fCVpvXWG541fzFMlr540MTLl5W5VJ1px22twFDW7rW5Vh91-VpsW5p177542CJd3W5DJSMR46_V_MW8p3L4l5jMcd9W6qb9TV8sXVWSV_MlMT67N_G_W7fWmR_3SKTzFW33gKSW911HvdW3b2BXr39BpWvW6kBBsh4WfWxjW2Mw_Tg6Ymp-lW8vkc9n6_8FJkW823PPl4r2HX8f4J8QHd04\" style=\"color:#3574e3; text-decoration:none; font-weight:normal\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"B1oh/uBP\" target=\"_blank\"> </a></span></p>\r\n<p data-start=\"1342\" data-end=\"1534\" style=\"line-height:175%\">At Grafik, we help defense tech brands position for speed, relevance, and mission fit. Because in today’s acquisition environment, <span style=\"font-weight: normal;\">brand isn’t just a logo. It’s operational readiness.</span></p>\r\n<p style=\"line-height:175%\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VVBj-F1X5wTtW6sBZbQ36Jq67W1PHNH55F_xqCN84393C3qn9qW7lCdLW6lZ3kDMg6WnTqDtY2W4G6TLg2fNXy3N7FCTXdG9rlcW6CkYCx3YRqKPW2vHF-r5SqPSnW7BznWD48Fb7dW5rBFRY2bMB5KW5VB1vn5_dZt-W1KtTMZ59jTggW6Jd5pg6qPjCkW1l96q21_NZ4LW4w8tR62TQ3kPW5MmwPl8NFBZGW6WJNxJ2QMqG1N5Yr9QdGf_36Vm80kf4dhdjzW8PgCsf8c-LxXN9d64vzc7QGbN3SPpsDTnp14W8HmTwh432rfPW5NhBfX6hvnXSW7vjqB_7wCRfTW1PN0DN6FKJhsW7tZ_q15tg5rLf4G-3Fs04\" style=\"color:#3574e3; text-decoration:none; font-weight:normal\" rel=\"noopener\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"vZYqO6D+\" target=\"_blank\"> </a></p>\r\n<p data-start=\"870\" data-end=\"1016\" style=\"line-height:175%\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VVBj-F1X5wTtW6sBZbQ36Jq67W1PHNH55F_xqCN84393C3qn9qW7lCdLW6lZ3p_W93xp_V2xSsgqW33rCWw34qhRWN30-j4FNPnrBW7xg7LY9dFLBXW2BZnTW4pZGSrW1GnMqV3J8nlsW12bmYr8SYCv0W5jVn4s6bP73QW9jqxCD6KMvhsW62TnXS98Xd_1W3N1jBR3-4f44W38qLVh56nVjpW7YPV7S1Q9lymW3qsK691_1wv6W5Zkqlx3kXylQW2rTxgX2_XRZXW9c13Bk1hdZr0W5kKfk58Xj30MW3qYwzn73zmP6Vzs7N67hWydqW93d5HK5JMzvMW3wzbfV5MSbK4W2Gx_TC57sKYvN4ZzP3Ys0-TXf2TKVp604\" style=\"color:#3574e3; text-decoration:none; font-weight:normal\" rel=\"noopener\" data-hs-link-id=\"2\" data-hs-link-id-v2=\"yV/dBbt0\" target=\"_blank\">&nbsp;</a></p>\r\n<p data-start=\"1536\" data-end=\"1629\" style=\"line-height:175%\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VVBj-F1X5wTtW6sBZbQ36Jq67W1PHNH55F_xqCN84393C3qn9qW7lCdLW6lZ3pkW1yCKn96X-YR8VH-ctx1m8rhpW7qHgHl6X9DwHW52gb474G4443W5W1PRf3Qnj-sW8DJF637vpYBqN7PPmDRM83wfW2x3bM63pvnfvW453JlN3yw_zMW6S7Y3y8Z0ypJN73zfmR5c8TJN2WkqLSg09YYW6Y5VZ06Tx5mHN6kYMWvTdscYW7LwWNn7j7zTBW6tQ5pp3-d7ZVMtV1s-Lqz2ZW6HXgFz4bBFVJW19BZwM727BgtW7CCrGN4nL3BzV5kTKD5H1cG-W1X26JR1L0FKnW21_FTM65yQ0NW3cY1_K8YpNvYf1QgP_b04\" style=\"color:#3574e3; text-decoration:none; font-weight:normal\" rel=\"noopener\" data-hs-link-id=\"3\" data-hs-link-id-v2=\"zfg9f07P\" target=\"_blank\"><span style=\"color: #000000;\">If you’re rethinking how your brand shows up in this new acquisition landscape, <span style=\"text-decoration: underline; color: #ff2d0f;\">we\'re here to help</span>.</span></a></p></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section_1638569706852\" class=\"hse-section\" style=\"padding-left:0px; padding-right:0px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff; padding-bottom:20px\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-bottom:20px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column_1638569706852_0\" class=\"hse-column hse-size-12\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; padding:10px 30px\"><div id=\"hs_cos_wrapper_module_15948141236582\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_15948141236582_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"font-size:15px; line-height:150%\"><span style=\"color: #000000; font-family: Arial, sans-serif;\"><br>Best Regards,</span></p>\r\n<p style=\"font-size:15px; line-height:150%\">&nbsp;</p>\r\n<p style=\"font-size:18px; line-height:125%\"><span style=\"color: #000000; font-family: Arial, sans-serif; font-size: 15px; font-weight: normal;\">Tanya Nazarian</span></p>\r\n<p style=\"font-size:18px; line-height:125%; font-weight:normal\"><span style=\"color: #000000; font-family: Arial, sans-serif; font-size: 15px;\">SVP, Growth</span></p>\r\n<p style=\"font-size:18px; line-height:125%; font-weight:normal\"><span style=\"text-decoration: underline; font-family: Arial, sans-serif;\"><span style=\"color: #000000; font-size: 15px; text-decoration: underline;\">703-299-5984</span></span></p>\r\n<p style=\"font-size:18px; line-height:125%; font-weight:normal\"><span style=\"font-family: Helvetica, Arial, sans-serif;\"><span style=\"color: #000000;\"><a href=\"mailto:tanya@grafik.com\" style=\"color:#000000\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"2P7oQQm8\" target=\"_blank\"><span style=\"font-size: 15px;\"><span style=\"font-family: Arial, sans-serif;\">tanya@grafik.com</span></span></a></span></span></p></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section_17468034824076\" class=\"hse-section\" style=\"padding-left:0px; padding-right:0px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container hse-no-stack-row\" style=\"min-width:280px; max-width:600px; margin:0 auto; border-collapse:separate; display:table; width:100%; background-color:#151515; padding-bottom:30px; padding-top:15px\" bgcolor=\"#151515\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" class=\"hse-no-stack-row\" width=\"600\" bgcolor=\"#151515\">\r\n      <tr style=\"background-color:#151515;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:300px;padding-bottom:30px; padding-top:15px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"300\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:300px\">\r\n<![endif]-->\r\n<div id=\"column_1747057387726_0\" class=\"hse-column hse-size-6 hse-no-stack\" style=\"display:table-cell; vertical-align:top; max-width:300px; width:50%\">\r\n  <div id=\"hs_cos_wrapper_module_17468034824075\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;table-layout:fixed\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"left\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#000000; word-break:break-word; text-align:left; padding:10px 20px 10px 30px; font-size:0px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VVBj-F1X5wTtW6sBZbQ36Jq67W1PHNH55F_xqCN84393C3qn9qW7lCdLW6lZ3ljW3JTn5z3MRxgVW75ywyn4qXLLBW8r3Kll7xccbyW2QkfKm78V8dtW2WYW8k910cl_W9jFQB14y-ypfN1KhY-tbVMLZN6G7SC2s5whbW1k5C8H7s1RYLW2z7ld089BwMWW4wfrCl8XTTMJW5RZmW91JzdV3W4QvbLn76RDD4W4j3GKf3L3M6NW30jqfM8XKccmN421FH8hBQ8tW85Xjg65b1S2mW9m1fXC5kNT5qW7zVyfT3Y2zwmW8HyFfF7ZjKZpW47tqDZ12kVDmW5t5nk742SkT1W8YvCVZ8k0GB7V29rhD1WTmRqdM3Mvx04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"jBtPrh1/\">\r\n        <img alt=\"Grafik-Logo-Tagline-1\" src=\"https://hs-505301.f.hubspotemail.net/hub/505301/hubfs/Grafik-Logo-Tagline-1.png?width=380&amp;upscale=true&amp;name=Grafik-Logo-Tagline-1.png\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"190\" align=\"middle\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:300px;padding-bottom:30px; padding-top:15px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"300\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:300px\">\r\n<![endif]-->\r\n<div id=\"column-1746803482407-0\" class=\"hse-column hse-size-6 hse-no-stack\" style=\"display:table-cell; vertical-align:top; max-width:300px; width:50%\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"table-layout:fixed\"><tbody><tr><td style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; padding:10px 30px 10px 20px\"><div id=\"hs_cos_wrapper_module_17468034486883\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17468034486883_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"text-align:right; line-height:175%\" align=\"right\"><span style=\"color: #ffffff;\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VVBj-F1X5wTtW6sBZbQ36Jq67W1PHNH55F_xqCN84393W3qn9qW7Y8-PT6lZ3ksW7XCTpf11C_qRW2HHbS-2M4hn1W4y1JT357FG6ZW4hmscQ8sGvl-W1Fd1764cfw4PW83vdQB422sL4W1F5kZM88Kf3dW6YQn1t7wHXqJW28G23l8CX3T8W857H5p68kFNdW7N3QS-22cklhN8hjn2x5NkCnN3-hHjR_pHYWW6nqfVW1Fw8nTW5xcNlP7H94qrW25fKP31N0QcQW3vpzv97nZG1bW6H-dr762QvqQW3RP6wv8rZb-3W6dkkJM2__jkPW3ZS2vn5_5tf3W8LQj3y23QpBrN40_hpcCdvbYW16Js586kgssJW6p9bfg9jNrCGW4pYrjY1x-FXGf4ww1ZF04\" style=\"text-decoration:underline; color:#ffffff\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"pBQ+yHPN\" target=\"_blank\"><span style=\"color: #ffffff;\">LinkedIn</span></a></span></p>\r\n<p style=\"text-align:right; line-height:175%\" align=\"right\"><span style=\"color: #ffffff;\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VVBj-F1X5wTtW6sBZbQ36Jq67W1PHNH55F_xqCN84393W3qn9qW7Y8-PT6lZ3lHW3jf1qt7M_-H4W58nyZy5N-52kW1VcZ9F5k1jB-W8CmT3b33FdvJW1XkBKx7Gms4mW2VzpzP5GSBLcW5HScsy8crSk8W86q_CS7RF3vwW3Mpp8J1wyMKMW1k374Z5VLpgsW1c0D9K6VJfZ0W5BlPT23KhPTzW4hHhDz2-C-MTW7Vh7Hj2FDR8LW5rQYw01xmyTPW3D7Cwv5HJNVJW2-7_Fg70g8LBW812HBW6htb6BW7Q4Ppk4hY9XhW3bMZHt4WBzmrW9dl9yc4HR30qW1l2ZG08BpkMbW7xbrmS38CrdgW61tM2S1jX0dWW7qGqRj87JcDqW8sRGJR1m_bghf31KxWW04\" style=\"text-decoration:underline; color:#ffffff\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"pfSNRZcW\" target=\"_blank\"><span style=\"color: #ffffff;\">Instagram</span></a></span></p>\r\n<p style=\"text-align:right; line-height:175%\" align=\"right\"><span style=\"color: #ffffff;\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VVBj-F1X5wTtW6sBZbQ36Jq67W1PHNH55F_xqCN84393W3qn9qW7Y8-PT6lZ3l8VccFnd8VhHN4W43yZK91_Ys4HN2kb7R16bZLGW1cCrbf1Sw055V3s_JF3cVWCrVNgdLx1r4ShXW8Wzkrn7K321qW6B0H3W70QLMyW2YM4fZ50BkbLW38xCjR658F4BW762J177QSXQCW1J6Nd_7J38ChW5js5Z32SJCkcW4kGXhJ6rb7KQW7R5wPh3g3JKcW69dBfl35wbvNN48z4rsSwFsFW5frJG85QG9MhW777mN085cYfwN96GNFtBb0zZW90CnQd5nJBjmW2yn2f01rRVf9N1bchz_FH9t2W4sP2PL8P8kzkW7lzp5f3wvsy3W1q1XQr44Vbtpf77YFlR04\" style=\"color:#ffffff; text-decoration:underline\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"fEH59q0m\" target=\"_blank\"><span style=\"color: #ffffff;\">Bluesky</span></a></span></p></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section_17468034857699\" class=\"hse-section hse-section-last\" style=\"padding-left:0px; padding-right:0px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#151515; padding-bottom:10px\" bgcolor=\"#151515\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#151515\">\r\n      <tr style=\"background-color:#151515;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-bottom:10px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-1746803485769-0\" class=\"hse-column hse-size-12\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; padding:10px 20px 0px\"><div id=\"hs_cos_wrapper_module_17468034857697\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17468034857697_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"line-height:175%; text-align:center\" align=\"center\"><span style=\"color: #ffffff;\">© 2025&nbsp;Grafik. All rights reserved.</span></p></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; padding:5px 20px 10px\"><div id=\"hs_cos_wrapper_module_17468034857698\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table role=\"presentation\" class=\"hse-footer hse-secondary\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family:Arial, sans-serif; font-size:12px; line-height:135%; color:#23496d; margin-bottom:0; padding:0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; text-align:center; margin-bottom:0; line-height:135%; padding:10px 20px\">\r\n          <p><span style=\"color: #ffffff;\"><span style=\"text-align: left;\">Grafik</span>, 8045 Leesburg Pike, Suite 503, Vienna,VA,22182,United States,</span></p>\r\n<p><span style=\"color: #ffffff;\"><a href=\"https://hs-505301.s.hubspotemail.net/hs/preferences-center/en/direct?data=W2nXS-N30h-BqW3b9_JV45Y87qW2Mys5f1NFJZhW3JH86w2CLSt2W2YHkjY3H7MSRW1Q2t6M2PVytlW1Vg9t23T6jY9W2Yr5c22qMr_RW3W41RH3BP77HW4t5Bd92zVbXBW49BMvz2MB6lPW2-pBnx2PzC8fW3g95nY2RNwR_W45yKVM1_4RK8W4phxy54klTrXW2MT-B83_GPR4W3VNpgL1Ly4hdW2qCFZ649DWR0W2sCnKx2Yq9qsW45xV2g3jbGq2W49k9mt4cShgDW1L5nWB3dykgKW49vqL52HCQ7PW3QCBLh4hJRcjW2545ZR2p1kGwW1_5dXJ3c_RcbW3djqL63R7mn3W2xyxFk45PC-NW3R0b2q45Mv2dW3SQBnx4fQWz4W4pp2Nn1BFtgNW1NCf_D3yRXsKW2B1XGJ38xrJQW41qDCX3gnqT7W4fvPK61Vy-Q9W4pqjz54tqdzgW3b485b32q3NkW1V7vPV2MDKgMW2qP5z01QkpzCW1Bs5qG3b9Z8XW21chBS4fLlcjW1Vtq-S2HyTBvW36tk8w32JV_3W3JH5vh43Jm2VW21rM3r1SzY8lW3T2WjK2HVngwW2qTQ5W41yKmWW4fqfTR4ryxZpW3M6y8f1Bv_CVf41GXbJ04&amp;utm_campaign=Defense%20Technology&amp;utm_source=hs_automation&amp;utm_medium=email&amp;utm_content=390352389&amp;_hsenc=p2ANqtz-9byPgzopRae54U_kUzHOZPcQLJ5gzRJAU5ZkhqQt2_YoTKMcm771v6cfMyFLheG3GzY6i2zZgP0bEcLOzNojUwjue6xw&amp;_hsmi=390352389\" style=\"color:#ffffff\" data-unsubscribe=\"true\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"SFRZzEXk\" target=\"_blank\">Unsubscribe</a> <a href=\"https://hs-505301.s.hubspotemail.net/hs/preferences-center/en/page?data=W2nXS-N30h-BqW3b9_JV45Y87qW2Mys5f1NFJZhW3JH86w2CLSt2W2YHkjY3H7MSRW1Q2t6M2PVytlW1Vg9t23T6jY9W2Yr5c22qMr_RW3W41RH3BP77HW4t5Bd92zVbXBW49BMvz2MB6lPW2-pBnx2PzC8fW3g95nY2RNwR_W45yKVM1_4RK8W4phxy54klTrXW2MT-B83_GPR4W3VNpgL1Ly4hdW2qCFZ649DWR0W2sCnKx2Yq9qsW45xV2g3jbGq2W49k9mt4cShgDW1L5nWB3dykgKW49vqL52HCQ7PW3QCBLh4hJRcjW2545ZR2p1kGwW1_5dXJ3c_RcbW3djqL63R7mn3W2xyxFk45PC-NW3R0b2q45Mv2dW3SQBnx4fQWz4W4pp2Nn1BFtgNW1NCf_D3yRXsKW2B1XGJ38xrJQW41qDCX3gnqT7W4fvPK61Vy-Q9W4pqjz54tqdzgW3b485b32q3NkW1V7vPV2MDKgMW2qP5z01QkpzCW1Bs5qG3b9Z8XW21chBS4fLlcjW1Vtq-S2HyTBvW36tk8w32JV_3W3JH5vh43Jm2VW21rM3r1SzY8lW3T2WjK2HVngwW2qTQ5W41yKmWW4fqfTR4ryxZpW3M6y8f1Bv_CVf41GXbJ04&amp;utm_campaign=Defense%20Technology&amp;utm_source=hs_automation&amp;utm_medium=email&amp;utm_content=390352389&amp;_hsenc=p2ANqtz-9byPgzopRae54U_kUzHOZPcQLJ5gzRJAU5ZkhqQt2_YoTKMcm771v6cfMyFLheG3GzY6i2zZgP0bEcLOzNojUwjue6xw&amp;_hsmi=390352389\" style=\"color:#ffffff\" data-unsubscribe=\"true\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"qjPJqCop\" target=\"_blank\">Manage Preferences</a></span></p>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div></div>\r\n          </td>\r\n        </tr>\r\n      </tbody></table>\r\n    </div>\r\n  \r\n<img src=\"https://c3chr04.na1.hubspotlinks.com/Cto/F9+113/c3chr04/VVBj-F1X5wTtW6sBZbQ36Jq67W1PHNH55F_xqCW8438Rp8fYGwf1z2\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"display:none!important;min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important\"></body></html>','The Warfighting Acquisition System Has Arrived. Is Your Brand Ready?\r\n\r\nView in browser (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VVBj-F1X5wTtW6sBZbQ36Jq67W1PHNH55F_xqCN84393C5n4LbW7lCGcx6lZ3kVW2h2mL88yFnRcW1WlJq08fq3LjW4Fg-Pq7WFsrWW8M-fZm2QzP6FW3DXrRn1q9g2dW1dTYPX22RDQ_W6pQ9kd1GNDDrW8H0PbP46BmPmW5lMkL63x6W9-W30RFdX2L4FLYW5Vl-7w4h8cnyW4_Vn2V6gMGLsVkzfFW35zCjTVZbByC4L-yVSW1yCk5P82ynxSW5xqhLb8Zwtp5F53yFW4QDTfW2hV_bl364lpgW7dQH0V6QZDBYW5N1s4P5SKqs2W7bRyjR6q7yy0W7Vjl7Y5RR9ZkW4xnhhr4kqFChW2p1vYS2fsyDWW82QMJg8Cb4nxW5dwKX22gc033W7l0vNd50w87DVflFLh83wKstW5nSSLX53cFpKW1Mddxz4cGL-QW4zDXjM9h_ZLSW6hcnhB3YBLgqW6jfBwf4tx_dHW5yYM6B5B8-J1W2l_p879fwhJyW2FdJ9H3xZsNdW8dDVlj1H1bd-W9l1LK35b052VW39Zch461TGwbW7wG8Vz7mCb7Mf39yKkP04 )\r\n\r\nWarfight Acquisition Header_1200x500 (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VVBj-F1X5wTtW6sBZbQ36Jq67W1PHNH55F_xqCN84394v3pyd0W95jsWP6lZ3l3W49HysC3tYCgFW1ScQQy23PR1RW5Mj0Ng2vt_F2W16XZRY3PqSs8VKw-3g8bk35WW7K26k361nX2fW61d_h-510xRGW7zLcK641kGZSW99Yh6n6rGtKGW1ZYSBy1wNG0gW8DjTnl2TxvmtW32ydb85z6wcQW6f8cGK4FgGB_W5tjBv-2vn-mZW6YLyJL5n3Fx-W1-Mfsd5V80yJW2yCXCg5dLkMRW28pVlS3PhMTkW6nWBfn97573sVbWFK31l1D78W1_g4NF8Ws7ZpW7ZDcp18K2VZJW6Zl8Sd7WyZmBW4txRbx1szZr1W5ywmFc93NxqbW22bVGm4hBBpSW3FQ0p12X3ssXW8C8Hc797w202N33J2cvLhnW6W71fb4J2WC65Tf5DYkqs04 )\r\n\r\nHi Rick,\r\n\r\nA recent RFI from the Defense Innovation Unit didn’t appear on SAM.gov. It showed up on LinkedIn. That’s not an anomaly. It’s a signal.\r\n\r\nThe Pentagon just rebranded the Defense Acquisition System as the Warfighting Acquisition System, a generational shift designed to move faster, cut red tape, and get capability to the field now.\r\n\r\nFor defense tech companies, that means acquisition is no longer a waiting game. The companies that show up early, visibly, and credibly in the right channels are the ones earning a seat at the table.\r\n\r\nIn our latest blog (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VVBj-F1X5wTtW6sBZbQ36Jq67W1PHNH55F_xqCN84394v3pyd0W95jsWP6lZ3l3W49HysC3tYCgFW1ScQQy23PR1RW5Mj0Ng2vt_F2W16XZRY3PqSs8VKw-3g8bk35WW7K26k361nX2fW61d_h-510xRGW7zLcK641kGZSW99Yh6n6rGtKGW1ZYSBy1wNG0gW8DjTnl2TxvmtW32ydb85z6wcQW6f8cGK4FgGB_W5tjBv-2vn-mZW6YLyJL5n3Fx-W1-Mfsd5V80yJW2yCXCg5dLkMRW28pVlS3PhMTkW6nWBfn97573sVbWFK31l1D78W1_g4NF8Ws7ZpW7ZDcp18K2VZJW6Zl8Sd7WyZmBW4txRbx1szZr1W5ywmFc93NxqbW22bVGm4hBBpSW3FQ0p12X3ssXW8C8Hc797w202N33J2cvLhnW6W71fb4J2WC65Tf5DYkqs04 ) , we unpack what this means for your brand:\r\n\r\n-\r\n\r\nHow “speed-to-field” now begins with speed-to-engagement\r\n\r\n-\r\n\r\nWhy DIU, AFWERX, and others are signaling demand in new places\r\n\r\n-\r\n\r\nWhat brand behaviors build credibility in this new acquisition environment\r\n\r\nThe government’s moving fast. The question is, can your brand keep up?\r\n\r\nRead the full blog\r\n(https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VVBj-F1X5wTtW6sBZbQ36Jq67W1PHNH55F_xqCN84394v3pyd0W95jsWP6lZ3l3W49HysC3tYCgFW1ScQQy23PR1RW5Mj0Ng2vt_F2W16XZRY3PqSs8VKw-3g8bk35WW7K26k361nX2fW61d_h-510xRGW7zLcK641kGZSW99Yh6n6rGtKGW1ZYSBy1wNG0gW8DjTnl2TxvmtW32ydb85z6wcQW6f8cGK4FgGB_W5tjBv-2vn-mZW6YLyJL5n3Fx-W1-Mfsd5V80yJW2yCXCg5dLkMRW28pVlS3PhMTkW6nWBfn97573sVbWFK31l1D78W1_g4NF8Ws7ZpW7ZDcp18K2VZJW6Zl8Sd7WyZmBW4txRbx1szZr1W5ywmFc93NxqbW22bVGm4hBBpSW3FQ0p12X3ssXW8C8Hc797w202N33J2cvLhnW6W71fb4J2WC65Tf5DYkqs04 )\r\n\r\nAt Grafik, we help defense tech brands position for speed, relevance, and mission fit. Because in today’s acquisition environment, brand isn’t just a logo. It’s operational readiness.\r\n\r\n(https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VVBj-F1X5wTtW6sBZbQ36Jq67W1PHNH55F_xqCN84393C3pyd0W7lCdLW6lZ3nlW69-B8828F4vQW6rQ7yX1wbMMsW7_VZB614XBs9W4r4N5g2yR1SyW6BSDLV6MnZLQW4D7_wG4dCY0WW5gvz6h26NzFMVYNC7j2WFg6ZW7sJZr98vTvTkW9h177j4GlX2BW4xBKVz1kxSQbW2RbqmR5JtRR6W1FzH3j43_VvDVvYWR27n7xZbW58B2-h4zm3xZW7KFQ0f3rQCTzW8Dy8Zv10q3kbV9pFff92D9vrVZL8cd5mfyMTW6880Mj5ZmJ75W6S-Pjz4xmm0wN8Jfpj-RcnhFW3yh1nv4_tVjGN95H77cYSmNGf1l1QpT04 )\r\n\r\nIf you’re rethinking how your brand shows up in this new acquisition landscape, we\'re here to help. (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VVBj-F1X5wTtW6sBZbQ36Jq67W1PHNH55F_xqCN84393C3pyd0W7lCdLW6lZ3nlW69-B8828F4vQW6rQ7yX1wbMMsW7_VZB614XBs9W4r4N5g2yR1SyW6BSDLV6MnZLQW4D7_wG4dCY0WW5gvz6h26NzFMVYNC7j2WFg6ZW7sJZr98vTvTkW9h177j4GlX2BW4xBKVz1kxSQbW2RbqmR5JtRR6W1FzH3j43_VvDVvYWR27n7xZbW58B2-h4zm3xZW7KFQ0f3rQCTzW8Dy8Zv10q3kbV9pFff92D9vrVZL8cd5mfyMTW6880Mj5ZmJ75W6S-Pjz4xmm0wN8Jfpj-RcnhFW3yh1nv4_tVjGN95H77cYSmNGf1l1QpT04 )\r\n\r\nBest Regards,\r\n\r\nTanya Nazarian\r\n\r\nSVP, Growth\r\n\r\n703-299-5984\r\n\r\ntanya@grafik.com (mailto:tanya@grafik.com)\r\n\r\nGrafik-Logo-Tagline-1 (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VVBj-F1X5wTtW6sBZbQ36Jq67W1PHNH55F_xqCN84393j3pyd0W6N1vHY6lZ3m-W6n0MF532k6dQV6NsgW3yCt9dN1QsQZ9cnv1wW3wGgyS7lD9VnW2QxCw03WmwTNW2V8TzW1ByDgpW8BJYSW7414gdW78s_8-8TJTQLW5mGDKy6Y7V5SW40B8Hc1xJZhxW3qdg1Q2xSSMkW1dN6ys8H6sDKW3PsvDZ2NZjNWW79-cXW4FD1dFW1y17S_4DtgQFW6cJ64-51HshZVXnNn21547ZvW1BN4Np25_ZWqW3LW7Cj1jNzRtW4XNyCM4MHhKMW6yzXC18pVTvLN4MCD98hpCNbf51wpnx04 )\r\n\r\nLinkedIn (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VVBj-F1X5wTtW6sBZbQ36Jq67W1PHNH55F_xqCN84393C3pyd0W7lCdLW6lZ3mJW5SfLLf1P9YngW2plv5h7rjSrdW7J0fDL702DLKW6ZQ-C37PtPx5W2Dfrp57cHPvnW6QjM3t6MdZvnW5RgJ728mqY1MW8MrGNW679SpmW2Tj5LF3hK4cBW7GcqQR6crRSxW4HZ9783QjfHzW3Nm1764tw8RtW4wpncn1Bb5CmW48kMZw650-7mW6dYsyv24xZC8W70bv0H5s4XCMW2_Rfv28gtf8TW5MTwn35SLHcjW3VJtLc5wRD0_W8RJX6g3Wft98W6yWqWy3DlMGMW2zgvnq4gWCMwW1cPpY919JNpfW5QZTWx43DNVff2J8qpP04 )\r\n\r\nInstagram (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VVBj-F1X5wTtW6sBZbQ36Jq67W1PHNH55F_xqCN84393C3pyd0W7lCdLW6lZ3lvW6CZV-L20-7QfW85bgrn3FqVS4W8m0Ll933zmJxW4ZfQ5W6djp0yN7cj_jp78JWzW2F04372q9d2QW90BKYX3-0q95W5HBTjV27sTyXW4RKZxQ2h4JHqW330yl98LqWVQN3zD0mkNmVRtW4dm4xZ6HHkVMW5sYmZX7lVMPYW35Yhqm1BBrMfW7cwMC687VTh3W1YKGYZ5MhcjTW1gcNgY28LdjdW4-7Pt74-2rDcW2qp3rv3q0LZFW5W-7F051hQBbW5DMsM_8pyjZkW3000f_6ml_sfW1F94c83hZyz2W4qtdb-5RrqbcdtZVLl04 )\r\n\r\nBluesky (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VVBj-F1X5wTtW6sBZbQ36Jq67W1PHNH55F_xqCN84393W3pyd0W7Y8-PT6lZ3m4W6-YMQW63KrYFW3sLvTG5wWV6JW2hSv8D2vF7qGW2LJ-XY3vf0jcW33dL888bVt1CW3R4FJn2-F21TN7L_TN8WxvSKVRc6dp8ztJZyN5xdL_DlLb3FW7X4HZC3GBw4FW5X1mML1GfwcMW2yXqWG37ggslW4cR8X82bNPDjW2bk33K5TT5_FW1CKL23385hqcW28GG0r1yN_7GW8ysgcR2KyqGKW9hDrT33S06_kW3fxlL223v7TfN2n_4dcFw_53W96HZqw6gqF7xW5j9_P97GmB2tW7KQSzK2BfrhSW6ZMkFd1DZqKwW67-PFr6lSsWqV9RR4Y4ZhdpTf2W3SG204 )\r\n\r\n© 2025 Grafik. All rights reserved.\r\n\r\nGrafik, 8045 Leesburg Pike, Suite 503, Vienna,VA,22182,United States,\r\n\r\nUnsubscribe (https://hs-505301.s.hubspotemail.net/hs/preferences-center/en/direct?data=W2nXS-N30h-BqW3b9_JV45Y87qW2Mys5f1NFJZhW3JH86w2CLSt2W2YHkjY3H7MSRW1Q2t6M2PVytlW1Vg9t23T6jY9W2Yr5c22qMr_RW3W41RH3BP77HW4t5Bd92zVbXBW49BMvz2MB6lPW2-pBnx2PzC8fW3g95nY2RNwR_W45yKVM1_4RK8W4phxy54klTrXW2MT-B83_GPR4W3VNpgL1Ly4hdW2qCFZ649DWR0W2sCnKx2Yq9qsW45xV2g3jbGq2W49k9mt4cShgDW1L5nWB3dykgKW49vqL52HCQ7PW3QCBLh4hJRcjW2545ZR2p1kGwW1_5dXJ3c_RcbW3djqL63R7mn3W2xyxFk45PC-NW3R0b2q45Mv2dW3SQBnx4fQWz4W4pp2Nn1BFtgNW1NCf_D3yRXsKW2B1XGJ38xrJQW41qDCX3gnqT7W4fvPK61Vy-Q9W4pqjz54tqdzgW3b485b32q3NkW1V7vPV2MDKgMW2qP5z01QkpzCW1Bs5qG3b9Z8XW21chBS4fLlcjW1Vtq-S2HyTBvW36tk8w32JV_3W3JH5vh43Jm2VW21rM3r1SzY8lW3T2WjK2HVngwW2qTQ5W41yKmWW4fqfTR4ryxZpW3M6y8f1Bv_CVf41GXbJ04&_hsenc=p2ANqtz-90sj0K6Bte6kNpyEmRjxMfA-hSab1nAgPxlJP5EW6d7imP0kxuB6qjN3hNLWSjl3UXoLACudQxUQP9OYOCWEeNwkhMww&_hsmi=390352389 ) Manage Preferences (https://hs-505301.s.hubspotemail.net/hs/preferences-center/en/page?data=W2nXS-N30h-BqW3b9_JV45Y87qW2Mys5f1NFJZhW3JH86w2CLSt2W2YHkjY3H7MSRW1Q2t6M2PVytlW1Vg9t23T6jY9W2Yr5c22qMr_RW3W41RH3BP77HW4t5Bd92zVbXBW49BMvz2MB6lPW2-pBnx2PzC8fW3g95nY2RNwR_W45yKVM1_4RK8W4phxy54klTrXW2MT-B83_GPR4W3VNpgL1Ly4hdW2qCFZ649DWR0W2sCnKx2Yq9qsW45xV2g3jbGq2W49k9mt4cShgDW1L5nWB3dykgKW49vqL52HCQ7PW3QCBLh4hJRcjW2545ZR2p1kGwW1_5dXJ3c_RcbW3djqL63R7mn3W2xyxFk45PC-NW3R0b2q45Mv2dW3SQBnx4fQWz4W4pp2Nn1BFtgNW1NCf_D3yRXsKW2B1XGJ38xrJQW41qDCX3gnqT7W4fvPK61Vy-Q9W4pqjz54tqdzgW3b485b32q3NkW1V7vPV2MDKgMW2qP5z01QkpzCW1Bs5qG3b9Z8XW21chBS4fLlcjW1Vtq-S2HyTBvW36tk8w32JV_3W3JH5vh43Jm2VW21rM3r1SzY8lW3T2WjK2HVngwW2qTQ5W41yKmWW4fqfTR4ryxZpW3M6y8f1Bv_CVf41GXbJ04&_hsenc=p2ANqtz-90sj0K6Bte6kNpyEmRjxMfA-hSab1nAgPxlJP5EW6d7imP0kxuB6qjN3hNLWSjl3UXoLACudQxUQP9OYOCWEeNwkhMww&_hsmi=390352389 )',0,0,0,0,0,0,'2025-11-17 20:25:44','2025-12-09 18:52:10','2025-12-09 18:52:10','2025-12-09 18:52:10',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(151,4,'<PYQQJ7YH4P9ZMJX8ZJ0H6500A0@mail.proton.me>',NULL,NULL,'You have 1 new message(s) in your Proton Mail account m******','no-reply@mail.proton.me','Proton','--b2=_fN1u2Hhjz6VhVRPZReM1fJD82mZIFfO40qbJ2FbWcA\r\nContent-Type: text/html; charset=utf-8\r\nContent-Transfer-Encoding: base64\r\n\r\nPCFET0NUWVBFIGh0bWw+DQo8P3htbCBlbmNvZGluZz0idXRmLTgiID8+PGh0bWwgeG1sbnM9Imh0\r\ndHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWwiIHhtbG5zOnY9InVybjpzY2hlbWFzLW1pY3Jvc29m\r\ndC1jb206dm1sIiB4bWxuczpvPSJ1cm46c2NoZW1hcy1taWNyb3NvZnQtY29tOm9mZmljZTpvZmZp\r\nY2UiPg0KDQo8aGVhZD48bWV0YSBodHRwLWVxdWl2PSJDb250ZW50LVR5cGUiIGNvbnRlbnQ9InRl\r\neHQvaHRtbDsgY2hhcnNldD11dGYtOCI+DQogICAgPCEtLSBOQU1FOiAxIENPTFVNTiAtLT4NCiAg\r\nICA8IS0tW2lmIGd0ZSBtc28gMTVdPg0KICAgIDx4bWw+DQogICAgICAgIDxvOk9mZmljZURvY3Vt\r\nZW50U2V0dGluZ3M+DQogICAgICAgIDxvOkFsbG93UE5HLz4NCiAgICAgICAgPG86UGl4ZWxzUGVy\r\nSW5jaD45NjwvbzpQaXhlbHNQZXJJbmNoPg0KICAgICAgICA8L286T2ZmaWNlRG9jdW1lbnRTZXR0\r\naW5ncz4NCiAgICA8L3htbD4NCiAgICA8IVtlbmRpZl0tLT4NCiAgICA8bWV0YSBjaGFyc2V0PSJV\r\nVEYtOCI+DQogICAgPG1ldGEgbmFtZT0ieC1hcHBsZS1kaXNhYmxlLW1lc3NhZ2UtcmVmb3JtYXR0\r\naW5nIj4NCiAgICA8bWV0YSBuYW1lPSJmb3JtYXQtZGV0ZWN0aW9uIiBjb250ZW50PSJ0ZWxlcGhv\r\nbmU9bm8sIGRhdGU9bm8sIGFkZHJlc3M9bm8sIGVtYWlsPW5vLCB1cmw9bm8iPg0KICAgIDxtZXRh\r\nIGh0dHAtZXF1aXY9IlgtVUEtQ29tcGF0aWJsZSIgY29udGVudD0iSUU9ZWRnZSI+DQogICAgPG1l\r\ndGEgbmFtZT0idmlld3BvcnQiIGNvbnRlbnQ9IndpZHRoPWRldmljZS13aWR0aCwgaW5pdGlhbC1z\r\nY2FsZT0xIj4NCiAgICA8bWV0YSBuYW1lPSJhdXRob3IiIGNvbnRlbnQ9IlByb3RvbiAmbHQ7bm8t\r\ncmVwbHlAbWFpbC5wcm90b24ubWUmZ3Q7Ij4NCiAgICA8bWV0YSBuYW1lPSJkZXNjcmlwdGlvbiIg\r\nY29udGVudD0iUGxlYXNlIGxvZyBpbiBhdCBodHRwczovL21haWwucHJvdG9uLm1lIHRvIGNoZWNr\r\nIHRoZW0uIj4NCiAgICA8dGl0bGU+WW91IGhhdmUgMSBuZXcgbWVzc2FnZShzKSBpbiB5b3VyIFBy\r\nb3RvbiBNYWlsIGFjY291bnQ8L3RpdGxlPg0KDQoNCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+QG1l\r\nZGlhIG9ubHkgc2NyZWVuIGFuZCAobWluLXdpZHRoOjc2OHB4KXsudGVtcGxhdGVDb250YWluZXJ7\r\nd2lkdGg6IDYwMHB4ICFpbXBvcnRhbnQ7fX1AbWVkaWEgb25seSBzY3JlZW4gYW5kIChtYXgtd2lk\r\ndGg6IDUyMHB4KXtib2R5LHRhYmxlLHRkLHAsYXstd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IG5v\r\nbmUgIWltcG9ydGFudDt9Ym9keXt3aWR0aDogMTAwJSAhaW1wb3J0YW50OyBtaW4td2lkdGg6IDEw\r\nMCUgIWltcG9ydGFudDt9Lm1jblJldGluYUltYWdle21heC13aWR0aDogMTAwJSAhaW1wb3J0YW50\r\nO30ubWNuQnV0dG9uQ29udGVudENvbnRhaW5lciwubWNuVGV4dENvbnRlbnRDb250YWluZXJ7bWF4\r\nLXdpZHRoOiAxMDAlICFpbXBvcnRhbnQ7IHdpZHRoOiAxMDAlICFpbXBvcnRhbnQ7fS5tY25UZXh0\r\nQ29udGVudHtwYWRkaW5nLXJpZ2h0OiAzMnB4ICFpbXBvcnRhbnQ7IHBhZGRpbmctbGVmdDogMzJw\r\neCAhaW1wb3J0YW50O31oMXtmb250LXNpemU6IDIycHggIWltcG9ydGFudDsgbGluZS1oZWlnaHQ6\r\nIDEuMjVlbSAhaW1wb3J0YW50O30jdGVtcGxhdGVCb2R5IC5tY25UZXh0Q29udGVudCwjdGVtcGxh\r\ndGVCb2R5IC5tY25UZXh0Q29udGVudCBwe2ZvbnQtc2l6ZTogMTZweCAhaW1wb3J0YW50OyBsaW5l\r\nLWhlaWdodDogMS41ZW0gIWltcG9ydGFudDt9I3RlbXBsYXRlRm9vdGVyIC5tY25UZXh0Q29udGVu\r\ndCwjdGVtcGxhdGVGb290ZXIgLm1jblRleHRDb250ZW50IHB7Zm9udC1zaXplOiAxNHB4ICFpbXBv\r\ncnRhbnQ7IGxpbmUtaGVpZ2h0OiAxLjVlbSAhaW1wb3J0YW50O30jdGVtcGxhdGVGb290ZXIgLm1j\r\nbkZvbGxvd0NvbnRlbnRJdGVtQ29udGFpbmVye3BhZGRpbmctbGVmdDogMnB4ICFpbXBvcnRhbnQ7\r\nIHBhZGRpbmctcmlnaHQ6IDJweCAhaW1wb3J0YW50O319QG1lZGlhIG9ubHkgc2NyZWVuIGFuZCAo\r\nbWF4LXdpZHRoOiAzNTJweCl7Lm1jbkZvbGxvd0ljb25Db250ZW50LC5tY25Gb2xsb3dJY29uQ29u\r\ndGVudCBpbWcuc29jaWFsLWljb257d2lkdGg6IDM4cHggIWltcG9ydGFudDsgaGVpZ2h0OiAzOHB4\r\nICFpbXBvcnRhbnQ7fSN0ZW1wbGF0ZUZvb3RlciAubWNuRm9sbG93Q29udGVudEl0ZW1Db250YWlu\r\nZXJ7cGFkZGluZy1sZWZ0OiAwICFpbXBvcnRhbnQ7IHBhZGRpbmctcmlnaHQ6IDAgIWltcG9ydGFu\r\ndDt9fTwvc3R5bGU+PC9oZWFkPg0KDQo8Ym9keSBzdHlsZT0iaGVpZ2h0OiAxMDAlOyBtYXJnaW46\r\nIDA7IHBhZGRpbmc6IDA7IHdpZHRoOiAxMDAlOyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBiYWNrZ3JvdW5kLWNvbG9yOiAjZjVmNGYy\r\nOyI+DQogICAgPCEtLVtpZiAhZ3RlIG1zbyA5XT48IS0tLS0+PHNwYW4gY2xhc3M9Im1jblByZXZp\r\nZXdUZXh0IiBzdHlsZT0iZm9udC1zaXplOiAwcHg7IGxpbmUtaGVpZ2h0OiAwcHg7IG1heC1oZWln\r\naHQ6IDBweDsgbWF4LXdpZHRoOiAwcHg7IG9wYWNpdHk6IDA7IG92ZXJmbG93OiBoaWRkZW47IHZp\r\nc2liaWxpdHk6IGhpZGRlbjsgbXNvLWhpZGU6IGFsbDsgZGlzcGxheTogbm9uZTsiPlBsZWFzZSBs\r\nb2cgaW4gYXQgaHR0cHM6Ly9tYWlsLnByb3Rvbi5tZSB0byBjaGVjayB0aGVtLjwvc3Bhbj48IS0t\r\nPCFbZW5kaWZdLS0+DQogICAgPGNlbnRlcj4NCiAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIi\r\nIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBoZWlnaHQ9IjEwMCUi\r\nIHdpZHRoPSIxMDAlIiBpZD0iYm9keVRhYmxlIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xs\r\nYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGhl\r\naWdodDogMTAwJTsgbWFyZ2luOiAwOyBwYWRkaW5nOiAwOyB3aWR0aDogMTAwJTsgYmFja2dyb3Vu\r\nZC1jb2xvcjogI2Y1ZjRmMjsiPg0KICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgIDx0\r\nZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249InRvcCIgaWQ9ImJvZHlDZWxsIiBzdHlsZT0ibXNvLWxp\r\nbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Vi\r\na2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGhlaWdodDogMTAwJTsgbWFyZ2luOiAwOyBwYWRk\r\naW5nOiA4cHg7IHdpZHRoOiAxMDAlOyBib3JkZXItdG9wOiAwOyI+DQogICAgICAgICAgICAgICAg\r\nICAgIDwhLS0gQkVHSU4gVEVNUExBVEUgLy8gLS0+DQogICAgICAgICAgICAgICAgICAgIDwhLS1b\r\naWYgKGd0ZSBtc28gOSl8KElFKV0+DQogICAgICAgICAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0i\r\nY2VudGVyIiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIwIiBjZWxscGFkZGluZz0iMCIgd2lkdGg9\r\nIjYwMCIgc3R5bGU9IndpZHRoOjYwMHB4OyI+PHRyPjx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249\r\nInRvcCIgd2lkdGg9IjYwMCIgc3R5bGU9IndpZHRoOjYwMHB4OyI+DQogICAgICAgICAgICAgICAg\r\nICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBj\r\nZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0idGVtcGxh\r\ndGVDb250YWluZXIiIHN0eWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUt\r\nbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgYm9yZGVyOiAwOyBib3JkZXIt\r\ncmFkaXVzOiAxNnB4OyBtYXgtd2lkdGg6IDYwMHB4OyI+DQo8dHI+DQogICAgPHRkIHZhbGlnbj0i\r\ndG9wIiBpZD0idGVtcGxhdGVIZWFkZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhh\r\nY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgYmFja2dyb3VuZC1jb2xvcjogI2ZmZmZmZjsgYmFja2dyb3VuZC1pbWFnZTogbm9u\r\nZTsgYmFja2dyb3VuZC1yZXBlYXQ6IG5vLXJlcGVhdDsgYmFja2dyb3VuZC1wb3NpdGlvbjogY2Vu\r\ndGVyOyBiYWNrZ3JvdW5kLXNpemU6IGNvdmVyOyBib3JkZXItdG9wOiAwOyBib3JkZXItYm90dG9t\r\nOiAwOyBwYWRkaW5nLXRvcDogMHB4OyBwYWRkaW5nLWJvdHRvbTogMHB4OyBib3JkZXItcmFkaXVz\r\nOiAxNnB4IDE2cHggMCAwOyI+DQogICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5n\r\nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25JbWFnZUJsb2NrIiBz\r\ndHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFi\r\nbGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAg\r\nPHRib2R5IGNsYXNzPSJtY25JbWFnZUJsb2NrT3V0ZXIiPg0KICAgICAgICAgICAgICAgIDx0cj4N\r\nCiAgICAgICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuSW1hZ2VCbG9j\r\na0lubmVyIiBzdHlsZT0icGFkZGluZzogMTZweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0\r\nbHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0ibGVmdCIgd2lk\r\ndGg9IjEwMCUiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBjbGFz\r\ncz0ibWNuSW1hZ2VDb250ZW50Q29udGFpbmVyIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3Jk\r\nZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1y\r\nc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJtY25JbWFnZUNvbnRlbnQiIHZhbGlnbj0idG9wIiBz\r\ndHlsZT0icGFkZGluZzogMTZweDsgdGV4dC1hbGlnbjogY2VudGVyOyBtc28tbGluZS1oZWlnaHQt\r\ncnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgIDxhIGhyZWY9Imh0dHBzOi8vcHJvdG9uLm1lLyIgdGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJt\r\nc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgbGluZS1oZWlnaHQ6IGluaGVyaXQ7IGNv\r\nbG9yOiAjNmQ0YWZmOyBmb250LXdlaWdodDogbm9ybWFsOyB0ZXh0LWRlY29yYXRpb246IHVuZGVy\r\nbGluZTsiPjxpbWcgYWxpZ249ImNlbnRlciIgYWx0PSJQcm90b24iIHNyYz0iY2lkOjE0NzU0N2E5\r\nNTAzY2M3MDViMjQxQG1haWwucHJvdG9uLm1lIiB3aWR0aD0iMjEwIiBzdHlsZT0id2lkdGg6IDM5\r\nLjE3OTElOyBtYXgtd2lkdGg6IDQyMHB4OyBwYWRkaW5nLWJvdHRvbTogMDsgdmVydGljYWwtYWxp\r\nZ246IGJvdHRvbTsgYm9yZGVyOiAwOyBoZWlnaHQ6IGF1dG87IG91dGxpbmU6IG5vbmU7IHRleHQt\r\nZGVjb3JhdGlvbjogbm9uZTsgLW1zLWludGVycG9sYXRpb24tbW9kZTogYmljdWJpYzsgZm9udC1m\r\nYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGlu\r\nZS1oZWlnaHQ6IDEuNWVtOyBjb2xvcjogIzZkNGFmZjsgZGlzcGxheTogaW5saW5lOyI+PC9hPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Ri\r\nb2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAg\r\nICAgPC90ZD4NCiAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgPC90Ym9keT4NCiAg\r\nICAgICAgPC90YWJsZT4NCiAgICA8L3RkPg0KPC90cj4NCjx0cj4NCiAgICA8dGQgdmFsaWduPSJ0\r\nb3AiIGlkPSJ0ZW1wbGF0ZUJvZHkiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3Rs\r\neTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgYmFja2dyb3VuZC1jb2xvcjogI2ZmZmZmZjsgYmFja2dyb3VuZC1pbWFnZTogbm9uZTsg\r\nYmFja2dyb3VuZC1yZXBlYXQ6IG5vLXJlcGVhdDsgYmFja2dyb3VuZC1wb3NpdGlvbjogY2VudGVy\r\nOyBiYWNrZ3JvdW5kLXNpemU6IGNvdmVyOyBib3JkZXItdG9wOiAwOyBib3JkZXItYm90dG9tOiAw\r\nOyBwYWRkaW5nLXRvcDogOHB4OyBwYWRkaW5nLWJvdHRvbTogOHB4OyI+DQo8dGFibGUgYm9yZGVy\r\nPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0i\r\nbWNuRGl2aWRlckJsb2NrIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6\r\nIGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgdGFibGUtbGF5b3V0OiBmaXhlZDsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNuRGl2aWRlckJs\r\nb2NrT3V0ZXIiPg0KICAgICAgICA8dHI+DQogICAgICAgICAgICA8dGQgY2xhc3M9Im1jbkRpdmlk\r\nZXJCbG9ja0lubmVyIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBwYWRkaW5nOiAwIDMycHggMHB4\r\nIDMycHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAg\r\nICAgPHRhYmxlIGNsYXNzPSJtY25EaXZpZGVyQ29udGVudCIgYm9yZGVyPSIwIiBjZWxscGFkZGlu\r\nZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAl\r\nOyBib3JkZXItdG9wOiAxcHggc29saWQgI0Y1RjRGMjsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBz\r\nZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAg\r\nICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1\r\nbGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4+\r\nPC9zcGFuPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAg\r\nICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAg\r\nICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgPCEtLQ0KICAgICAgICAgICAgICAgIDx0\r\nZCBjbGFzcz0ibWNuRGl2aWRlckJsb2NrSW5uZXIiIHN0eWxlPSJwYWRkaW5nOiAzMnB4OyI+DQog\r\nICAgICAgICAgICAgICAgPGhyIGNsYXNzPSJtY25EaXZpZGVyQ29udGVudCIgc3R5bGU9ImJvcmRl\r\nci1ib3R0b20tY29sb3I6bm9uZTsgYm9yZGVyLWxlZnQtY29sb3I6bm9uZTsgYm9yZGVyLXJpZ2h0\r\nLWNvbG9yOm5vbmU7IGJvcmRlci1ib3R0b20td2lkdGg6MDsgYm9yZGVyLWxlZnQtd2lkdGg6MDsg\r\nYm9yZGVyLXJpZ2h0LXdpZHRoOjA7IG1hcmdpbi10b3A6MDsgbWFyZ2luLXJpZ2h0OjA7IG1hcmdp\r\nbi1ib3R0b206MDsgbWFyZ2luLWxlZnQ6MDsiIC8+DQogICAgICAgICAgICAgICAgLS0+DQogICAg\r\nICAgICAgICA8L3RkPg0KICAgICAgICA8L3RyPg0KICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0KPHRh\r\nYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAw\r\nJSIgY2xhc3M9Im1jblRleHRCbG9jayIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNv\r\nbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNl\r\nOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7Ij4NCiAgICA8dGJvZHkgY2xhc3M9Im1jblRleHRCbG9ja091dGVyIj4NCiAgICAg\r\nICAgPHRyPg0KICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dEJsb2Nr\r\nSW5uZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAg\r\nICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249Imxl\r\nZnQiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIiB3aWR0aD0iMTAw\r\nJSIgc3R5bGU9IndpZHRoOjEwMCU7Ij48dHI+DQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+\r\nDQoNCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAgICAgPHRkIHZh\r\nbGlnbj0idG9wIiB3aWR0aD0iNjAwIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij4NCiAgICAgICAgICAg\r\nICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImxlZnQiIGJv\r\ncmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xh\r\nc3M9Im1jblRleHRDb250ZW50Q29udGFpbmVyIiBzdHlsZT0ibWF4LXdpZHRoOiAxMDAlOyBtaW4t\r\nd2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6\r\nIDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgIDx0\r\nYm9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJtY25UZXh0Q29udGVudCIgc3R5bGU9Im1z\r\nby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyB3b3JkLWJyZWFrOiBicmVhay13b3JkOyBj\r\nb2xvcjogIzBjMGMxNDsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7\r\nIGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBsZWZ0OyBw\r\nYWRkaW5nLXRvcDogMzJweDsgcGFkZGluZy1ib3R0b206IDE2cHg7IHBhZGRpbmctcmlnaHQ6IDMy\r\ncHg7IHBhZGRpbmctbGVmdDogMzJweDsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICA8aDEgY2xhc3M9Im1jblRleHRDb250ZW50Q29udGFpbmVyIiBzdHlsZT0iZGlzcGxheTogYmxv\r\nY2s7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBB\r\ncmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDI0cHg7IGZvbnQtc3R5bGU6\r\nIG5vcm1hbDsgZm9udC13ZWlnaHQ6IGJvbGQ7IGxpbmUtaGVpZ2h0OiAxLjI1ZW07IGxldHRlci1z\r\ncGFjaW5nOiAwcHg7IHRleHQtYWxpZ246IGxlZnQ7Ij5Zb3UgaGF2ZSAxIG5ldyBtZXNzYWdlKHMp\r\nPC9oMT4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAg\r\nICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAg\r\nICAgPC90ZD4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgICAg\r\nIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8L3RyPjwvdGFibGU+DQogICAgICAgICAg\r\nICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICA8L3RkPg0KICAgICAgICA8L3RyPg0KICAg\r\nIDwvdGJvZHk+DQo8L3RhYmxlPg0KPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNl\r\nbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRCbG9jayIgc3R5bGU9Im1p\r\nbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFj\r\nZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICA8dGJvZHkgY2xhc3M9Im1j\r\nblRleHRCbG9ja091dGVyIj4NCiAgICAgICAgPHRyPg0KICAgICAgICAgICAgPHRkIHZhbGlnbj0i\r\ndG9wIiBjbGFzcz0ibWNuVGV4dEJsb2NrSW5uZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVs\r\nZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAg\r\nICAgICAgICA8dGFibGUgYWxpZ249ImxlZnQiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNl\r\nbGxwYWRkaW5nPSIwIiB3aWR0aD0iMTAwJSIgc3R5bGU9IndpZHRoOjEwMCU7Ij48dHI+DQogICAg\r\nICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+\r\nDQogICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiB3aWR0aD0iNjAwIiBzdHlsZT0id2lk\r\ndGg6NjAwcHg7Ij4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAgICAg\r\nICA8dGFibGUgYWxpZ249ImxlZnQiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFj\r\naW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRDb250ZW50Q29udGFpbmVyIiBzdHls\r\nZT0ibWF4LXdpZHRoOiAxMDAlOyBtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29s\r\nbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+\r\nDQogICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0\r\ncj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJt\r\nY25UZXh0Q29udGVudCIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyB3\r\nb3JkLWJyZWFrOiBicmVhay13b3JkOyBjb2xvcjogIzBjMGMxNDsgZm9udC1mYW1pbHk6IEFyaWFs\r\nLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWlnaHQ6IDEu\r\nNWVtOyB0ZXh0LWFsaWduOiBsZWZ0OyBwYWRkaW5nLXRvcDogOHB4OyBwYWRkaW5nLWJvdHRvbTog\r\nMTJweDsgcGFkZGluZy1yaWdodDogMzJweDsgcGFkZGluZy1sZWZ0OiAzMnB4OyI+DQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5l\r\nciIgc3R5bGU9InBhZGRpbmc6IDBweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1t\r\ncy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIGNvbG9yOiAjMGMwYzE0OyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJp\r\nZjsgZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGxlZnQ7\r\nIG1hcmdpbjogMTJweCAwcHg7Ij5IZWxsbyw8L3A+PHAgY2xhc3M9Im1jblRleHRDb250ZW50Q29u\r\ndGFpbmVyIiBzdHlsZT0icGFkZGluZzogMHB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3Rs\r\neTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5z\r\nLXNlcmlmOyBmb250LXNpemU6IDE2cHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgdGV4dC1hbGlnbjog\r\nbGVmdDsgbWFyZ2luOiAxMnB4IDBweDsiPllvdSBoYXZlIDxiIHN0eWxlPSJsaW5lLWhlaWdodDog\r\naW5oZXJpdDsiPjEgbmV3IG1lc3NhZ2Uocyk8L2I+IGluIHlvdXIgaW5ib3ggYW5kIGN1c3RvbSBm\r\nb2xkZXJzLjwvcD48cCBjbGFzcz0ibWNuVGV4dENvbnRlbnRDb250YWluZXIiIHN0eWxlPSJwYWRk\r\naW5nOiAwcHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBjb2xvcjogIzBjMGMx\r\nNDsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTog\r\nMTZweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBsZWZ0OyBtYXJnaW46IDEycHgg\r\nMHB4OyI+UGxlYXNlIGxvZyBpbiBhdCA8YSB0YXJnZXQ9Il9ibGFuayIgdGl0bGU9IkdvIHRvIHlv\r\ndXIgaW5ib3giIGhyZWY9Imh0dHBzOi8vbWFpbC5wcm90b24ubWUiIHN0eWxlPSJtc28tbGluZS1o\r\nZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsgbGluZS1oZWlnaHQ6IGluaGVyaXQ7IGNvbG9yOiAjNmQ0\r\nYWZmOyBmb250LXdlaWdodDogaW5oZXJpdDsgdGV4dC1kZWNvcmF0aW9uOiB1bmRlcmxpbmU7Ij5o\r\ndHRwczovL21haWwucHJvdG9uLm1lPC9hPiB0byBjaGVjayB0aGVtLiBUaGVzZSBub3RpZmljYXRp\r\nb25zIGNhbiBiZSB0dXJuZWQgb2ZmIGJ5IGxvZ2dpbmcgaW50byB5b3VyIGFjY291bnQgYW5kIGRp\r\nc2FibGluZyB0aGUgZGFpbHkgbm90aWZpY2F0aW9uIHNldHRpbmcuPC9wPiAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAg\r\nICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAg\r\nICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAg\r\nICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAg\r\nICAgICAgICAgICAgIDwvdHI+PC90YWJsZT4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4N\r\nCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwvdGFibGU+\r\nDQo8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRo\r\nPSIxMDAlIiBjbGFzcz0ibWNuQnV0dG9uQmxvY2siIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJv\r\ncmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxl\r\nLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyI+DQogICAgPHRib2R5IGNsYXNzPSJtY25CdXR0b25CbG9ja091dGVy\r\nIj4NCiAgICAgICAgPHRyPg0KICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBhbGlnbj0ibGVm\r\ndCIgY2xhc3M9Im1jbkJ1dHRvbkJsb2NrSW5uZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVs\r\nZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgdGV4dC1hbGlnbjogY2VudGVyOyBwYWRkaW5nLWxlZnQ6IDMycHg7IHBh\r\nZGRpbmctcmlnaHQ6IDMycHg7IHBhZGRpbmctdG9wOiAwcHg7IHBhZGRpbmctYm90dG9tOiAzMnB4\r\nOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNl\r\nbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgY2xhc3M9Im1jbkJ1dHRvbkNvbnRlbnRDb250\r\nYWluZXIiIHN0eWxlPSJtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBw\r\ndDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBzZXBhcmF0ZTsiPg0KICAgICAgICAgICAgICAgICAgICA8\r\ndGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgPHRkIHZhbGlnbj0ibWlkZGxlIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6\r\nIGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGEgY2xhc3M9\r\nIm1jbkJ1dHRvbiBtYWlsaW5nLWJ1dHRvbiIgdGl0bGU9IkxvZyBpbiB0byBjaGVjayB5b3VyIG1l\r\nc3NhZ2VzIiBocmVmPSJodHRwczovL21haWwucHJvdG9uLm1lIiB0YXJnZXQ9Il9ibGFuayIgc3R5\r\nbGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBmb250LWZhbWlseTogQXJpYWws\r\nIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBwYWRkaW5nLWxlZnQ6IDMy\r\ncHg7IHBhZGRpbmctcmlnaHQ6IDMycHg7IHBhZGRpbmctdG9wOiAxMnB4OyBwYWRkaW5nLWJvdHRv\r\nbTogMTJweDsgZGlzcGxheTogYmxvY2s7IGZvbnQtd2VpZ2h0OiBub3JtYWw7IGxldHRlci1zcGFj\r\naW5nOiAxcHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgdGV4dC1hbGlnbjogY2VudGVyOyB0ZXh0LWRl\r\nY29yYXRpb246IG5vbmU7IGNvbG9yOiAjRkZGRkZGOyBib3JkZXItcmFkaXVzOiA4cHg7IGJhY2tn\r\ncm91bmQtY29sb3I6ICM2ZDRhZmY7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICA8aSBzdHlsZT0iZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7Zm9u\r\ndC1zaXplOiAxNnB4O3BhZGRpbmctbGVmdDogMzJweDtwYWRkaW5nLXJpZ2h0OiAzMnB4O3BhZGRp\r\nbmctdG9wOiAxMnB4O3BhZGRpbmctYm90dG9tOiAxMnB4O2Rpc3BsYXk6IGJsb2NrO2ZvbnQtd2Vp\r\nZ2h0OiBub3JtYWw7bGV0dGVyLXNwYWNpbmc6IDFweDtsaW5lLWhlaWdodDogMS41ZW07dGV4dC1h\r\nbGlnbjogY2VudGVyO3RleHQtZGVjb3JhdGlvbjogbm9uZTtjb2xvcjogI0ZGRkZGRjsiPiZuYnNw\r\nOzwvaT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4gc3R5bGU9IiI+T3BlbiBQ\r\ncm90b24gTWFpbDwvc3Bhbj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9hPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgIDwv\r\ndGFibGU+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgPC90cj4N\r\nCiAgICA8L3Rib2R5Pg0KPC90YWJsZT4NCjx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIw\r\nIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25UZXh0QmxvY2siIHN0eWxl\r\nPSJtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1s\r\nc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgPHRib2R5IGNsYXNz\r\nPSJtY25UZXh0QmxvY2tPdXRlciI+DQogICAgICAgIDx0cj4NCiAgICAgICAgICAgIDx0ZCB2YWxp\r\nZ249InRvcCIgY2xhc3M9Im1jblRleHRCbG9ja0lubmVyIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0\r\nLXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAg\r\nICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJsZWZ0IiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIw\r\nIiBjZWxscGFkZGluZz0iMCIgd2lkdGg9IjEwMCUiIHN0eWxlPSJ3aWR0aDoxMDAlOyI+PHRyPg0K\r\nICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgICAgICAgICAgPCEtLVtpZiBt\r\nc29dPg0KICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgd2lkdGg9IjYwMCIgc3R5bGU9\r\nIndpZHRoOjYwMHB4OyI+DQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAg\r\nICAgICAgPHRhYmxlIGFsaWduPSJsZWZ0IiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxs\r\nc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIg\r\nc3R5bGU9Im1heC13aWR0aDogMTAwJTsgbWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6\r\nIGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsiPg0KICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFz\r\ncz0ibWNuVGV4dENvbnRlbnQiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgd29yZC1icmVhazogYnJlYWstd29yZDsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBB\r\ncmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE2cHg7IGxpbmUtaGVpZ2h0\r\nOiAxLjVlbTsgdGV4dC1hbGlnbjogbGVmdDsgcGFkZGluZy10b3A6IDhweDsgcGFkZGluZy1ib3R0\r\nb206IDEycHg7IHBhZGRpbmctcmlnaHQ6IDMycHg7IHBhZGRpbmctbGVmdDogMzJweDsiPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0ibWNuVGV4dENvbnRlbnRDb250\r\nYWluZXIiIHN0eWxlPSJwYWRkaW5nOiAwcHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5\r\nOyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyBjb2xvcjogIzBjMGMxNDsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMt\r\nc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBs\r\nZWZ0OyBtYXJnaW46IDEycHggMHB4OyI+PGEgdGFyZ2V0PSJfYmxhbmsiIGhyZWY9Imh0dHBzOi8v\r\ncHJvdG9uLm1lL3N1cHBvcnQvbm90aWZpY2F0aW9uLWVtYWlsIiBzdHlsZT0ibXNvLWxpbmUtaGVp\r\nZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRl\r\neHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGxpbmUtaGVpZ2h0OiBpbmhlcml0OyBjb2xvcjogIzZkNGFm\r\nZjsgZm9udC13ZWlnaHQ6IGluaGVyaXQ7IHRleHQtZGVjb3JhdGlvbjogdW5kZXJsaW5lOyI+TGVh\r\ncm4gbW9yZSBhYm91dCBub3RpZmljYXRpb24gZW1haWxzPC9hPjwvcD48cCBjbGFzcz0ibWNuVGV4\r\ndENvbnRlbnRDb250YWluZXIiIHN0eWxlPSJwYWRkaW5nOiAwcHg7IG1zby1saW5lLWhlaWdodC1y\r\ndWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyBjb2xvcjogIzBjMGMxNDsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2\r\nZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0\r\nZXh0LWFsaWduOiBsZWZ0OyBtYXJnaW46IDEycHggMHB4OyI+VGhhbmsgeW91LDxicj5UaGUgUHJv\r\ndG9uIFRlYW08L3A+ICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAg\r\nICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAg\r\nICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAg\r\nICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAgICAgPC90cj48L3RhYmxlPg0KICAg\r\nICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgPC90\r\ncj4NCiAgICA8L3Rib2R5Pg0KPC90YWJsZT4NCiAgICA8L3RkPg0KPC90cj48dHI+DQogICAgPHRk\r\nIHZhbGlnbj0idG9wIiBpZD0idGVtcGxhdGVGb290ZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQt\r\ncnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgYmFja2dyb3VuZC1jb2xvcjogI2ZmZmZmZjsgYmFja2dyb3VuZC1p\r\nbWFnZTogbm9uZTsgYmFja2dyb3VuZC1yZXBlYXQ6IG5vLXJlcGVhdDsgYmFja2dyb3VuZC1wb3Np\r\ndGlvbjogY2VudGVyOyBiYWNrZ3JvdW5kLXNpemU6IGNvdmVyOyBib3JkZXItdG9wOiAwOyBib3Jk\r\nZXItYm90dG9tOiAwOyBwYWRkaW5nLXRvcDogMTZweDsgcGFkZGluZy1ib3R0b206IDE2cHg7IGJv\r\ncmRlci1yYWRpdXM6IDAgMCAxNnB4IDE2cHg7Ij4NCiAgICAgICAgPHRhYmxlIGJvcmRlcj0iMCIg\r\nY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jbkRp\r\ndmlkZXJCbG9jayIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xs\r\nYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHRh\r\nYmxlLWxheW91dDogZml4ZWQ7Ij4NCiAgICA8dGJvZHkgY2xhc3M9Im1jbkRpdmlkZXJCbG9ja091\r\ndGVyIj4NCiAgICAgICAgPHRyPg0KICAgICAgICAgICAgPHRkIGNsYXNzPSJtY25EaXZpZGVyQmxv\r\nY2tJbm5lciIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgcGFkZGluZzogMCAzMnB4IDE2cHggMzJw\r\neDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICA8\r\ndGFibGUgY2xhc3M9Im1jbkRpdmlkZXJDb250ZW50IiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIw\r\nIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJv\r\ncmRlci10b3A6IDFweCBzb2xpZCAjRjVGNEYyOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBt\r\nc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAg\r\nICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgPHRkIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTog\r\nZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3Bhbj48L3Nw\r\nYW4+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAg\r\nICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8IS0tDQogICAgICAgICAgICAgICAgPHRkIGNs\r\nYXNzPSJtY25EaXZpZGVyQmxvY2tJbm5lciIgc3R5bGU9InBhZGRpbmc6IDMycHg7Ij4NCiAgICAg\r\nICAgICAgICAgICA8aHIgY2xhc3M9Im1jbkRpdmlkZXJDb250ZW50IiBzdHlsZT0iYm9yZGVyLWJv\r\ndHRvbS1jb2xvcjpub25lOyBib3JkZXItbGVmdC1jb2xvcjpub25lOyBib3JkZXItcmlnaHQtY29s\r\nb3I6bm9uZTsgYm9yZGVyLWJvdHRvbS13aWR0aDowOyBib3JkZXItbGVmdC13aWR0aDowOyBib3Jk\r\nZXItcmlnaHQtd2lkdGg6MDsgbWFyZ2luLXRvcDowOyBtYXJnaW4tcmlnaHQ6MDsgbWFyZ2luLWJv\r\ndHRvbTowOyBtYXJnaW4tbGVmdDowOyIgLz4NCiAgICAgICAgICAgICAgICAtLT4NCiAgICAgICAg\r\nICAgIDwvdGQ+DQogICAgICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwvdGFibGU+DQo8dGFibGUg\r\nYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBj\r\nbGFzcz0ibWNuVGV4dEJsb2NrIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFw\r\nc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBw\r\ndDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNuVGV4dEJsb2NrT3V0ZXIiPg0KICAgIDx0cj4N\r\nCiAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dEJsb2NrSW5uZXIiIHN0eWxl\r\nPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgPCEtLVtp\r\nZiBtc29dPg0KICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2Vs\r\nbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIiB3aWR0aD0iMTAwJSIgc3R5bGU9IndpZHRoOjEw\r\nMCU7Ij4NCiAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0K\r\nICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiB3\r\naWR0aD0iNjAwIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij4NCiAgICAgICAgICAgIDwhW2VuZGlmXS0t\r\nPg0KICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRp\r\nbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRDb250ZW50\r\nQ29udGFpbmVyIiBzdHlsZT0ibWF4LXdpZHRoOiAxMDAlOyBtaW4td2lkdGg6IDEwMCU7IGJvcmRl\r\nci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJz\r\ncGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAg\r\nIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4\r\ndENvbnRlbnQiIHN0eWxlPSJwYWRkaW5nLXRvcDogMjRweDsgcGFkZGluZy1yaWdodDogMzJweDsg\r\ncGFkZGluZy1ib3R0b206IDA7IHBhZGRpbmctbGVmdDogMzJweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1\r\nbGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IHdvcmQtYnJlYWs6IGJyZWFrLXdvcmQ7IGNvbG9yOiAjNzA2ZDZiOyBm\r\nb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNHB4\r\nOyBsaW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGNlbnRlcjsiPkNvbm5lY3Qgd2l0aCB0\r\naGUgUHJvdG9uJm5ic3A7Y29tbXVuaXR5PC90ZD4NCiAgICAgICAgICAgICAgICA8L3RyPg0KICAg\r\nICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAg\r\nPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgIDwhW2VuZGlmXS0t\r\nPg0KDQogICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICA8L3RyPg0KICAgICAg\r\nICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICA8L3RkPg0K\r\nICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwvdGFibGU+DQoNCiAgICAgICAgPHRhYmxlIGJvcmRl\r\ncj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9\r\nIm1jbkZvbGxvd0Jsb2NrIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6\r\nIGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsiPg0KICAgICAgICAgICAgPHRib2R5IGNsYXNzPSJtY25Gb2xsb3dCbG9ja091dGVyIj4NCiAg\r\nICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVy\r\nIiB2YWxpZ249InRvcCIgY2xhc3M9Im1jbkZvbGxvd0Jsb2NrSW5uZXIiIHN0eWxlPSJwYWRkaW5n\r\nOiAxNnB4IDE2cHggMDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAg\r\nICAgICAgICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxs\r\nc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50Q29udGFpbmVy\r\nIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28t\r\ndGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGFsaWduPSJj\r\nZW50ZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxw\r\nYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25Gb2xsb3dD\r\nb250ZW50IiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNl\r\nOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGFsaWduPSJjZW50\r\nZXIiIHZhbGlnbj0idG9wIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1t\r\ncy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxz\r\ncGFjaW5nPSIwIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxz\r\ncGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249InRvcCIgc3R5bGU9\r\nIm1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8IS0t\r\nW2lmIG1zb10+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIw\r\nIiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAiPg0KICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCg0KICAgICAgICA8IS0tW2lmIG1zb10+DQog\r\nICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249InRvcCI+DQogICAgICAgIDwhW2VuZGlm\r\nXS0tPg0KICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIwIiBjZWxscGFkZGlu\r\nZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHN0eWxlPSJkaXNwbGF5OiBpbmxpbmU7IGJvcmRlci1jb2xs\r\nYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTog\r\nMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyI+DQogICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICA8dHI+DQogICAgICAg\r\nICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuRm9sbG93Q29udGVudEl0ZW1Db250\r\nYWluZXIiIHN0eWxlPSJwYWRkaW5nLXRvcDogOHB4OyBwYWRkaW5nLXJpZ2h0OiA0cHg7IHBhZGRp\r\nbmctYm90dG9tOiA4cHg7IHBhZGRpbmctbGVmdDogNHB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTog\r\nZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBjZWxs\r\ncGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuRm9sbG93\r\nQ29udGVudEl0ZW0iIHN0eWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUt\r\nbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249Im1pZGRsZSIgc3R5\r\nbGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRk\r\naW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IiIgc3R5bGU9ImJvcmRlci1jb2xsYXBzZTog\r\nY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAt\r\nbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0ibWlkZGxlIiB3aWR0\r\naD0iMzUiIGNsYXNzPSJtY25Gb2xsb3dJY29uQ29udGVudCIgc3R5bGU9Im1zby1saW5lLWhlaWdo\r\ndC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyI+DQoNCiAgICAgICAgPGEgaHJlZj0iaHR0cHM6Ly90d2l0dGVy\r\nLmNvbS9Qcm90b25Qcml2YWN5IiB0YXJnZXQ9Il9ibGFuayIgc3R5bGU9Im1zby1saW5lLWhlaWdo\r\ndC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyBsaW5lLWhlaWdodDogaW5oZXJpdDsiPjxpbWcgc3JjPSJjaWQ6\r\nODUzZTBkZTk3NjRhYThiZDYxZDBAbWFpbC5wcm90b24ubWUiIGFsdD0iVHdpdHRlciIgaGVpZ2h0\r\nPSIzNSIgd2lkdGg9IjM1IiBjbGFzcz0ic29jaWFsLWljb24iIHN0eWxlPSJkaXNwbGF5OiBibG9j\r\nazsgYm9yZGVyOiAwOyBoZWlnaHQ6IGF1dG87IG91dGxpbmU6IG5vbmU7IHRleHQtZGVjb3JhdGlv\r\nbjogdW5kZXJsaW5lOyAtbXMtaW50ZXJwb2xhdGlvbi1tb2RlOiBiaWN1YmljOyBmb250LWZhbWls\r\neTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxMnB4OyBsaW5lLWhl\r\naWdodDogMS41ZW07IGNvbG9yOiAjNzA2ZDZiOyBmb250LXdlaWdodDogbm9ybWFsOyI+PC9hPg0K\r\nDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\nL3RhYmxlPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAg\r\nICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAg\r\nICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAg\r\nICAgPC90cj4NCiAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgIDwvdGFibGU+DQogICAgICAg\r\nIDwhLS1baWYgbXNvXT4NCiAgICAgICAgPC90ZD4NCiAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAg\r\nICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJ0\r\nb3AiPg0KICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIi\r\nIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBzdHlsZT0iZGlzcGxh\r\neTogaW5saW5lOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAw\r\ncHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13\r\nZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgPHRib2R5Pg0KICAg\r\nICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1j\r\nbkZvbGxvd0NvbnRlbnRJdGVtQ29udGFpbmVyIiBzdHlsZT0icGFkZGluZy10b3A6IDhweDsgcGFk\r\nZGluZy1yaWdodDogNHB4OyBwYWRkaW5nLWJvdHRvbTogOHB4OyBwYWRkaW5nLWxlZnQ6IDRweDsg\r\nbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAg\r\nPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0i\r\nMTAwJSIgY2xhc3M9Im1jbkZvbGxvd0NvbnRlbnRJdGVtIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNl\r\nOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7\r\nIC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgYWxpZ249ImNlbnRl\r\nciIgdmFsaWduPSJtaWRkbGUiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRl\r\nciIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIiIHN0\r\neWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1z\r\nby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVy\r\nIiB2YWxpZ249Im1pZGRsZSIgd2lkdGg9IjM1IiBjbGFzcz0ibWNuRm9sbG93SWNvbkNvbnRlbnQi\r\nIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KDQogICAgICAgIDxh\r\nIGhyZWY9Imh0dHBzOi8vcmVkZGl0LmNvbS9yL1Byb3Rvbk1haWwiIHRhcmdldD0iX2JsYW5rIiBz\r\ndHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGxpbmUtaGVpZ2h0OiBpbmhl\r\ncml0OyI+PGltZyBzcmM9ImNpZDo5MWU5YmQyNWVmZjIyM2NlNmY0Y0BtYWlsLnByb3Rvbi5tZSIg\r\nYWx0PSJSZWRkaXQiIGhlaWdodD0iMzUiIHdpZHRoPSIzNSIgY2xhc3M9InNvY2lhbC1pY29uIiBz\r\ndHlsZT0iZGlzcGxheTogYmxvY2s7IGJvcmRlcjogMDsgaGVpZ2h0OiBhdXRvOyBvdXRsaW5lOiBu\r\nb25lOyB0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTsgLW1zLWludGVycG9sYXRpb24tbW9kZTog\r\nYmljdWJpYzsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQt\r\nc2l6ZTogMTJweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyBjb2xvcjogIzcwNmQ2YjsgZm9udC13ZWln\r\naHQ6IG5vcm1hbDsiPjwvYT4NCg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\nL3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAg\r\nICAgPC90ZD4NCiAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAg\r\nICA8L3RhYmxlPg0KICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgIDwvdGQ+DQogICAgICAg\r\nIDwhW2VuZGlmXS0tPg0KDQogICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgPHRkIGFsaWdu\r\nPSJjZW50ZXIiIHZhbGlnbj0idG9wIj4NCiAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgIDx0\r\nYWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2lu\r\nZz0iMCIgc3R5bGU9ImRpc3BsYXk6IGlubGluZTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsg\r\nbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAg\r\nICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICA8dGQgdmFs\r\naWduPSJ0b3AiIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50SXRlbUNvbnRhaW5lciIgc3R5bGU9InBh\r\nZGRpbmctdG9wOiA4cHg7IHBhZGRpbmctcmlnaHQ6IDRweDsgcGFkZGluZy1ib3R0b206IDhweDsg\r\ncGFkZGluZy1sZWZ0OiA0cHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQog\r\nICAgICAgICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxs\r\nc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50SXRlbSIgc3R5\r\nbGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNv\r\nLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+\r\nDQogICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0ibWlkZGxlIiBzdHlsZT0ibXNvLWxpbmUtaGVp\r\nZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRl\r\neHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFj\r\naW5nPSIwIiB3aWR0aD0iIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRh\r\nYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJtaWRkbGUiIHdpZHRoPSIzNSIgY2xhc3M9Im1j\r\nbkZvbGxvd0ljb25Db250ZW50IiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7\r\nIC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7Ij4NCg0KICAgICAgICA8YSBocmVmPSJodHRwczovL3d3dy5saW5rZWRpbi5jb20vY29tcGFu\r\neS9wcm90b25wcml2YWN5LyIgdGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQt\r\ncnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgbGluZS1oZWlnaHQ6IGluaGVyaXQ7Ij48aW1nIHNyYz0iY2lkOmUy\r\nMDM1MWJkYTlhNjc1N2NkMTY1QG1haWwucHJvdG9uLm1lIiBhbHQ9IkxpbmtlZEluIiBoZWlnaHQ9\r\nIjM1IiB3aWR0aD0iMzUiIGNsYXNzPSJzb2NpYWwtaWNvbiIgc3R5bGU9ImRpc3BsYXk6IGJsb2Nr\r\nOyBib3JkZXI6IDA7IGhlaWdodDogYXV0bzsgb3V0bGluZTogbm9uZTsgdGV4dC1kZWNvcmF0aW9u\r\nOiB1bmRlcmxpbmU7IC1tcy1pbnRlcnBvbGF0aW9uLW1vZGU6IGJpY3ViaWM7IGZvbnQtZmFtaWx5\r\nOiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDEycHg7IGxpbmUtaGVp\r\nZ2h0OiAxLjVlbTsgY29sb3I6ICM3MDZkNmI7IGZvbnQtd2VpZ2h0OiBub3JtYWw7Ij48L2E+DQoN\r\nCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwv\r\ndGFibGU+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAg\r\nICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAg\r\nICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAg\r\nICA8L3RyPg0KICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgPC90YWJsZT4NCiAgICAgICAg\r\nPCEtLVtpZiBtc29dPg0KICAgICAgICA8L3RkPg0KICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAg\r\nICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249InRv\r\ncCI+DQogICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIg\r\nYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHN0eWxlPSJkaXNwbGF5\r\nOiBpbmxpbmU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBw\r\ndDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdl\r\nYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICA8dGJvZHk+DQogICAg\r\nICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNu\r\nRm9sbG93Q29udGVudEl0ZW1Db250YWluZXIiIHN0eWxlPSJwYWRkaW5nLXRvcDogOHB4OyBwYWRk\r\naW5nLXJpZ2h0OiA0cHg7IHBhZGRpbmctYm90dG9tOiA4cHg7IHBhZGRpbmctbGVmdDogNHB4OyBt\r\nc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICA8\r\ndGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIx\r\nMDAlIiBjbGFzcz0ibWNuRm9sbG93Q29udGVudEl0ZW0iIHN0eWxlPSJib3JkZXItY29sbGFwc2U6\r\nIGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAg\r\nICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVy\r\nIiB2YWxpZ249Im1pZGRsZSIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAt\r\nbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVy\r\nIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IiIgc3R5\r\nbGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNv\r\nLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIi\r\nIHZhbGlnbj0ibWlkZGxlIiB3aWR0aD0iMzUiIGNsYXNzPSJtY25Gb2xsb3dJY29uQ29udGVudCIg\r\nc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQoNCiAgICAgICAgPGEg\r\naHJlZj0iaHR0cHM6Ly9mYWNlYm9vay5jb20vUHJvdG9uIiB0YXJnZXQ9Il9ibGFuayIgc3R5bGU9\r\nIm1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBsaW5lLWhlaWdodDogaW5oZXJpdDsi\r\nPjxpbWcgc3JjPSJjaWQ6OTFiMDZhNmQyNjI3MDBkMjlhNWNAbWFpbC5wcm90b24ubWUiIGFsdD0i\r\nRmFjZWJvb2siIGhlaWdodD0iMzUiIHdpZHRoPSIzNSIgY2xhc3M9InNvY2lhbC1pY29uIiBzdHls\r\nZT0iZGlzcGxheTogYmxvY2s7IGJvcmRlcjogMDsgaGVpZ2h0OiBhdXRvOyBvdXRsaW5lOiBub25l\r\nOyB0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTsgLW1zLWludGVycG9sYXRpb24tbW9kZTogYmlj\r\ndWJpYzsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6\r\nZTogMTJweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyBjb2xvcjogIzcwNmQ2YjsgZm9udC13ZWlnaHQ6\r\nIG5vcm1hbDsiPjwvYT4NCg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Rk\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAg\r\nIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAg\r\nPC90ZD4NCiAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICA8\r\nL3RhYmxlPg0KICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgIDwvdGQ+DQogICAgICAgIDwh\r\nW2VuZGlmXS0tPg0KDQogICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgPHRkIGFsaWduPSJj\r\nZW50ZXIiIHZhbGlnbj0idG9wIj4NCiAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgIDx0YWJs\r\nZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0i\r\nMCIgc3R5bGU9ImRpc3BsYXk6IGlubGluZTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNv\r\nLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAg\r\nICAgIDx0Ym9keT4NCiAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICA8dGQgdmFsaWdu\r\nPSJ0b3AiIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50SXRlbUNvbnRhaW5lciIgc3R5bGU9InBhZGRp\r\nbmctdG9wOiA4cHg7IHBhZGRpbmctcmlnaHQ6IDRweDsgcGFkZGluZy1ib3R0b206IDhweDsgcGFk\r\nZGluZy1sZWZ0OiA0cHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAg\r\nICAgICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3Bh\r\nY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50SXRlbSIgc3R5bGU9\r\nImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRh\r\nYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0ibWlkZGxlIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0\r\nLXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRh\r\nYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5n\r\nPSIwIiB3aWR0aD0iIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxl\r\nLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\ndGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJtaWRkbGUiIHdpZHRoPSIzNSIgY2xhc3M9Im1jbkZv\r\nbGxvd0ljb25Db250ZW50IiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1t\r\ncy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIj4NCg0KICAgICAgICA8YSBocmVmPSJodHRwczovL2luc3RhZ3JhbS5jb20vcHJvdG9ucHJpdmFj\r\neSIgdGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgbGluZS1oZWlnaHQ6IGluaGVyaXQ7Ij48aW1nIHNyYz0iY2lkOjlhNTkzNzNiNzdmNDNkOWNk\r\nNjU3QG1haWwucHJvdG9uLm1lIiBhbHQ9Ikluc3RhZ3JhbSIgaGVpZ2h0PSIzNSIgd2lkdGg9IjM1\r\nIiBjbGFzcz0ic29jaWFsLWljb24iIHN0eWxlPSJkaXNwbGF5OiBibG9jazsgYm9yZGVyOiAwOyBo\r\nZWlnaHQ6IGF1dG87IG91dGxpbmU6IG5vbmU7IHRleHQtZGVjb3JhdGlvbjogdW5kZXJsaW5lOyAt\r\nbXMtaW50ZXJwb2xhdGlvbi1tb2RlOiBiaWN1YmljOyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZl\r\ndGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxMnB4OyBsaW5lLWhlaWdodDogMS41ZW07IGNv\r\nbG9yOiAjNzA2ZDZiOyBmb250LXdlaWdodDogbm9ybWFsOyI+PC9hPg0KDQogICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\nL3Rib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3Ry\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICAgICAg\r\nPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgPC90cj4NCiAgICAg\r\nICAgICAgIDwvdGJvZHk+DQogICAgICAgIDwvdGFibGU+DQogICAgICAgIDwhLS1baWYgbXNvXT4N\r\nCiAgICAgICAgPC90ZD4NCiAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgPCEtLVtpZiBt\r\nc29dPg0KICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJ0b3AiPg0KICAgICAgICA8\r\nIVtlbmRpZl0tLT4NCiAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2Vs\r\nbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBzdHlsZT0iZGlzcGxheTogaW5saW5lOyBib3Jk\r\nZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1y\r\nc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgPHRyPg0K\r\nICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jbkZvbGxvd0NvbnRlbnRJ\r\ndGVtQ29udGFpbmVyIiBzdHlsZT0icGFkZGluZy10b3A6IDhweDsgcGFkZGluZy1yaWdodDogNHB4\r\nOyBwYWRkaW5nLWJvdHRvbTogOHB4OyBwYWRkaW5nLWxlZnQ6IDRweDsgbXNvLWxpbmUtaGVpZ2h0\r\nLXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgPHRhYmxlIGJvcmRlcj0i\r\nMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1j\r\nbkZvbGxvd0NvbnRlbnRJdGVtIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNv\r\nLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAg\r\nICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJtaWRk\r\nbGUiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIwIiBj\r\nZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIiIHN0eWxlPSJib3JkZXItY29s\r\nbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6\r\nIDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249Im1pZGRs\r\nZSIgd2lkdGg9IjM1IiBjbGFzcz0ibWNuRm9sbG93SWNvbkNvbnRlbnQiIHN0eWxlPSJtc28tbGlu\r\nZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJr\r\naXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KDQogICAgICAgIDxhIGhyZWY9Imh0dHBzOi8v\r\ncHJvdG9uLm1lL2Jsb2ciIHRhcmdldD0iX2JsYW5rIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1\r\nbGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IGxpbmUtaGVpZ2h0OiBpbmhlcml0OyI+PGltZyBzcmM9ImNpZDo2MDg0\r\nYTgxNjMyZTcyNzQ4OTVhZUBtYWlsLnByb3Rvbi5tZSIgYWx0PSJCbG9nIiBoZWlnaHQ9IjM1IiB3\r\naWR0aD0iMzUiIGNsYXNzPSJzb2NpYWwtaWNvbiIgc3R5bGU9ImRpc3BsYXk6IGJsb2NrOyBib3Jk\r\nZXI6IDA7IGhlaWdodDogYXV0bzsgb3V0bGluZTogbm9uZTsgdGV4dC1kZWNvcmF0aW9uOiB1bmRl\r\ncmxpbmU7IC1tcy1pbnRlcnBvbGF0aW9uLW1vZGU6IGJpY3ViaWM7IGZvbnQtZmFtaWx5OiBBcmlh\r\nbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDEycHg7IGxpbmUtaGVpZ2h0OiAx\r\nLjVlbTsgY29sb3I6ICM3MDZkNmI7IGZvbnQtd2VpZ2h0OiBub3JtYWw7Ij48L2E+DQoNCiAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGFibGU+\r\nDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAg\r\nICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICA8L3Ry\r\nPg0KICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgPC90YWJsZT4NCiAgICAgICAgPCEtLVtp\r\nZiBtc29dPg0KICAgICAgICA8L3RkPg0KICAgICAgICA8IVtlbmRpZl0tLT4NCg0KDQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Rk\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgIDwv\r\ndHI+DQogICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICA8L3RhYmxlPg0KDQo8dGFibGUgYm9y\r\nZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFz\r\ncz0ibWNuVGV4dEJsb2NrIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6\r\nIGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNuVGV4dEJsb2NrT3V0ZXIiPg0KICAgIDx0cj4NCiAg\r\nICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dEJsb2NrSW5uZXIiIHN0eWxlPSJt\r\nc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgPCEtLVtpZiBt\r\nc29dPg0KICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHNw\r\nYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIiB3aWR0aD0iMTAwJSIgc3R5bGU9IndpZHRoOjEwMCU7\r\nIj4NCiAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAg\r\nICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiB3aWR0\r\naD0iNjAwIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij4NCiAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0K\r\nICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9\r\nIjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRDb250ZW50Q29u\r\ndGFpbmVyIiBzdHlsZT0ibWF4LXdpZHRoOiAxMDAlOyBtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1j\r\nb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFj\r\nZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgIDx0\r\ncj4NCiAgICAgICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dENv\r\nbnRlbnQiIHN0eWxlPSJwYWRkaW5nLXRvcDogMjRweDsgcGFkZGluZy1yaWdodDogMzJweDsgcGFk\r\nZGluZy1ib3R0b206IDA7IHBhZGRpbmctbGVmdDogMzJweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6\r\nIGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IHdvcmQtYnJlYWs6IGJyZWFrLXdvcmQ7IGNvbG9yOiAjNzA2ZDZiOyBmb250\r\nLWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNHB4OyBs\r\naW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGNlbnRlcjsiPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgWW91IGFyZSByZWNlaXZpbmcgdGhpcyBlbWFpbCBiZWNhdXNlIHlvdSBzZXQgYSBu\r\nb3RpZmljYXRpb24gZm9yIG5ldyBtZXNzYWdlcyByZWNlaXZlZCBpbiB5b3VyIFByb3RvbiBNYWls\r\nIGluYm94LiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICA8YSBocmVmPSJodHRwczovL3Byb3Rvbi5tZS9zdXBwb3J0L25vdGlmaWNhdGlvbi1lbWFpbCIg\r\ndGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1z\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nbGluZS1oZWlnaHQ6IGluaGVyaXQ7IGNvbG9yOiAjNzA2ZDZiOyBmb250LXdlaWdodDogbm9ybWFs\r\nOyB0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTsiPkxlYXJuIG1vcmUgYWJvdXQgbm90aWZpY2F0\r\naW9uIGVtYWlsczwvYT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPC90ZD4NCiAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgIDwvdGJvZHk+\r\nDQogICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAg\r\nICAgICAgPC90ZD4NCiAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgICAgICA8IS0t\r\nW2lmIG1zb10+DQogICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgPC90YWJsZT4NCiAgICAg\r\nICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICA8L3RkPg0KICAgIDwvdHI+DQogICAgPC90Ym9k\r\neT4NCjwvdGFibGU+DQo8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNp\r\nbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dEJsb2NrIiBzdHlsZT0ibWluLXdpZHRo\r\nOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7\r\nIG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJr\r\naXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNuVGV4dEJs\r\nb2NrT3V0ZXIiPg0KICAgIDx0cj4NCiAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNu\r\nVGV4dEJsb2NrSW5uZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1z\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsi\r\nPg0KICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJj\r\nZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIiB3aWR0aD0i\r\nMTAwJSIgc3R5bGU9IndpZHRoOjEwMCU7Ij4NCiAgICAgICAgICAgICAgICA8dHI+DQogICAgICAg\r\nICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAg\r\nICAgPHRkIHZhbGlnbj0idG9wIiB3aWR0aD0iNjAwIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij4NCiAg\r\nICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIi\r\nIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIg\r\nY2xhc3M9Im1jblRleHRDb250ZW50Q29udGFpbmVyIiBzdHlsZT0ibWF4LXdpZHRoOiAxMDAlOyBt\r\naW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3Bh\r\nY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPHRi\r\nb2R5Pg0KICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgPHRkIHZhbGln\r\nbj0idG9wIiBjbGFzcz0ibWNuVGV4dENvbnRlbnQiIHN0eWxlPSJwYWRkaW5nLXRvcDogMTZweDsg\r\ncGFkZGluZy1yaWdodDogMzJweDsgcGFkZGluZy1ib3R0b206IDA7IHBhZGRpbmctbGVmdDogMzJw\r\neDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHdvcmQtYnJlYWs6IGJyZWFrLXdv\r\ncmQ7IGNvbG9yOiAjNzA2ZDZiOyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1z\r\nZXJpZjsgZm9udC1zaXplOiAxNHB4OyBsaW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGNl\r\nbnRlcjsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPGEgZGF0YS11bnN1YnNjcmliZS1saW5r\r\nPSJwcm90b24ubWUiIHJlbD0ibm9vcGVuZXIgbm9yZWZlcnJlciIgaHJlZj0iaHR0cHM6Ly9hY2Nv\r\ndW50LnByb3Rvbi5tZS91bnN1YnNjcmliZS82NCNleUowZVhBaU9pSktWMVFpTENKaGJHY2lPaUpJ\r\nVXpJMU5pSjkuZXlKcFlYUWlPakUzTmpNMU1EQTJOemN1TlRNd05UTTFMQ0psZUhBaU9qRTNOall3\r\nT1RJMk56Y3NJbFZ6WlhKSlJDSTZJbFJKVTFwWVJIaHdabEpCVTFkVE4wUjZWMHhYZDJjaUxDSlRZ\r\nMjl3WlNJNk9UZ3pNRFFzSW1semN5STZJbkJ5YjNSdmJpNXRaU0lzSW1GMVpDSTZJbkJ5YjNSdmJp\r\nNXRaU0lzSWxSNWNHVWlPakY5LndHQXNGMllpM2F1ZEhYVXZ2REZBdkdtOFZNRWkwSjc1ZWsyNW1s\r\ncUw3LUkiIHRhcmdldD0iX2JsYW5rIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0\r\nbHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IGxpbmUtaGVpZ2h0OiBpbmhlcml0OyBjb2xvcjogIzcwNmQ2YjsgZm9udC13ZWlnaHQ6\r\nIG5vcm1hbDsgdGV4dC1kZWNvcmF0aW9uOiB1bmRlcmxpbmU7Ij5VcGRhdGUgeW91ciBlbWFpbCBw\r\ncmVmZXJlbmNlcyBvciB1bnN1YnNjcmliZTwvYT4NCiAgICAgICAgICAgICAgICAgICAgPC90ZD4N\r\nCiAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAg\r\nICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPC90\r\nZD4NCiAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgICAgICA8IS0tW2lmIG1zb10+\r\nDQogICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgIDwh\r\nW2VuZGlmXS0tPg0KICAgICAgICA8L3RkPg0KICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwvdGFi\r\nbGU+DQo8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdp\r\nZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dEJsb2NrIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBi\r\nb3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJs\r\nZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNuVGV4dEJsb2NrT3V0ZXIi\r\nPg0KICAgIDx0cj4NCiAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dEJsb2Nr\r\nSW5uZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAg\r\nICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJv\r\ncmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIiB3aWR0aD0iMTAwJSIgc3R5\r\nbGU9IndpZHRoOjEwMCU7Ij4NCiAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICA8IVtl\r\nbmRpZl0tLT4NCg0KICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPHRkIHZh\r\nbGlnbj0idG9wIiB3aWR0aD0iNjAwIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij4NCiAgICAgICAgICAg\r\nIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0i\r\nMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1j\r\nblRleHRDb250ZW50Q29udGFpbmVyIiBzdHlsZT0ibWF4LXdpZHRoOiAxMDAlOyBtaW4td2lkdGg6\r\nIDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsg\r\nbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtp\r\ndC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPHRib2R5Pg0KICAg\r\nICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBj\r\nbGFzcz0ibWNuVGV4dENvbnRlbnQiIHN0eWxlPSJwYWRkaW5nLXRvcDogMTZweDsgcGFkZGluZy1y\r\naWdodDogMzJweDsgcGFkZGluZy1ib3R0b206IDA7IHBhZGRpbmctbGVmdDogMzJweDsgbXNvLWxp\r\nbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Vi\r\na2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHdvcmQtYnJlYWs6IGJyZWFrLXdvcmQ7IGNvbG9y\r\nOiAjNzA2ZDZiOyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9u\r\ndC1zaXplOiAxNHB4OyBsaW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGNlbnRlcjsiPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgPHAgc3R5bGU9Im1hcmdpbjogMTJweCAwOyBwYWRkaW5n\r\nOiAwOyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPsKpIDIwMjUgUHJvdG9uIEFH\r\nIFN3aXR6ZXJsYW5kPGJyPlJvdXRlIGRlIGxhIEdhbGFpc2UmbmJzcDszMiwgMTIyOCZuYnNwO1Bs\r\nYW4tbGVzLU91YXRlcywgR2VuZXZhLCZuYnNwO1N3aXR6ZXJsYW5kPC9wPg0KICAgICAgICAgICAg\r\nICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgPC90\r\nYm9keT4NCiAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICA8IS0tW2lmIG1zb10+DQog\r\nICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgICAg\r\nIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICA8L3RhYmxlPg0K\r\nICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgIDwvdGQ+DQogICAgPC90cj4NCiAgICA8\r\nL3Rib2R5Pg0KPC90YWJsZT4NCjx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxs\r\nc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25JbWFnZUJsb2NrIiBzdHlsZT0iYm9y\r\nZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUt\r\ncnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IG1pbi13aWR0aDogMTAwJTsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNu\r\nSW1hZ2VCbG9ja091dGVyIj4NCiAgICA8dHI+DQogICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xh\r\nc3M9Im1jbkltYWdlQmxvY2tJbm5lciIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFj\r\ndGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyBwYWRkaW5nOiAxNnB4OyI+DQogICAgICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRl\r\nciIgd2lkdGg9IjEwMCUiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIw\r\nIiBjbGFzcz0ibWNuSW1hZ2VDb250ZW50Q29udGFpbmVyIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNl\r\nOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7\r\nIC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7IG1pbi13aWR0aDogMTAwJTsiPg0KICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAg\r\nICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0ibWNuSW1hZ2VDb250\r\nZW50IiB2YWxpZ249InRvcCIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAt\r\nbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyBwYWRkaW5nLXJpZ2h0OiAxNnB4OyBwYWRkaW5nLWxlZnQ6IDE2cHg7IHBhZGRpbmctdG9wOiAw\r\nOyBwYWRkaW5nLWJvdHRvbTogMDsgdGV4dC1hbGlnbjogY2VudGVyOyI+DQogICAgICAgICAgICAg\r\nICAgICAgICAgICA8aW1nIGFsaWduPSJjZW50ZXIiIGFsdD0iIiBzcmM9ImNpZDo5MDM3N2FmYjZj\r\nZmFmM2FmYjY1OUBtYWlsLnByb3Rvbi5tZSIgd2lkdGg9IjI3NiIgY2xhc3M9Im1jblJldGluYUlt\r\nYWdlIiBzdHlsZT0iYm9yZGVyOiAwOyBoZWlnaHQ6IGF1dG87IG91dGxpbmU6IG5vbmU7IHRleHQt\r\nZGVjb3JhdGlvbjogbm9uZTsgLW1zLWludGVycG9sYXRpb24tbW9kZTogYmljdWJpYzsgbWF4LXdp\r\nZHRoOiA1NTJweDsgcGFkZGluZy1ib3R0b206IDA7IHZlcnRpY2FsLWFsaWduOiBib3R0b207IGZv\r\nbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDEycHg7\r\nIGxpbmUtaGVpZ2h0OiAxLjVlbTsgZGlzcGxheTogaW5saW5lOyI+DQogICAgICAgICAgICAgICAg\r\nICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICA8L3Rib2R5\r\nPg0KICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgPC90ZD4NCiAgICA8L3RyPg0KICAgIDwv\r\ndGJvZHk+DQo8L3RhYmxlPg0KICAgIDwvdGQ+DQo8L3RyPg0KICAgICAgICAgICAgICAgICAgICAg\r\nICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwhLS1baWYgKGd0ZSBtc28gOSl8\r\nKElFKV0+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAg\r\nICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwhLS0g\r\nLy8gRU5EIFRFTVBMQVRFIC0tPg0KICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAg\r\nICAgICAgIDwvdHI+DQogICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICA8L2NlbnRlcj4NCiAg\r\nICA8L2JvZHk+DQo8L2h0bWw+DQo=\r\n\r\n--b2=_fN1u2Hhjz6VhVRPZReM1fJD82mZIFfO40qbJ2FbWcA\r\nContent-Type: image/png; name=logos-footer.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <90377afb6cfaf3afb659@mail.proton.me>\r\nContent-Disposition: inline; filename=logos-footer.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAigAAABwCAMAAAADkXsEAAAABGdBTUEAALGPC/xhBQAAAAFzUkdC\r\nAK7OHOkAAAAJcEhZcwAAFiUAABYlAUlSJPAAAALfUExURUdwTIpy/YZp/rfc/KOc6Ydn+76K3WxJ\r\n/97I0ZBp//CJWbx+0b6l+o1v/ubH3y7ZzdVqlo5p/fO7m29P/sXM8qiO/vi7tL7O++l3e5Z3/4tp\r\n/8mz9eSr2LXu9bae/3df/pV3//jZ0L2q/te/+XaA/bXo9+GpufnSzjKj8NrC/+SGjNLE/9Roo6Rp\r\n5KGK/cRiqNxujzq619ep3Itk/Cyo8PnBycWIy2vZ4fJgxltp+O9/e0ed4rbt9cWHyuRyhDHO0DjA\r\n1CrgyrVau+tfyJt4/8GI/3BN/21K/3BN/3hN+rCS/3VS/55+/3JL/H9O+JZ1/5p5/7KZ/ref/oVR\r\n9UZ0/4tP8pFx/+C3/1Jm/6uM/7yl/6KC/4lp/6dT5qaH/0xt/1hg/z97/7ZW4HpZ/4Nl/39g/9ix\r\n/11a/8G//59S6bbs9TiC/65U4zKJ/7zj+GhQ/4JM7Ytw/5JQ7x2f/5lS2L1X3JhR7MCr/9Kr/7jX\r\n/762/4pO5mNV/8ym/5JP345Z8fK9zcVY2SuQ/3tL9O66z+a00/+7k7H28r/e/WFl9iWX/8Wg/+q3\r\n0biU/5df681Z1l1s87d612Re+L+a/8au8cKDzsbR/RWo/7yn9qWT/rdcuceJycnJ/5eA/86QxLF0\r\n3OGw1rFZwNZb0s27/6tu4L5fspF6//a/y8LY+/B8ctSXvtqr2ta76M617eevqMKa5p9T0tKm3qCM\r\n/qVp471+06xXxZ5k5/jb0t9cztHB/8Ww/02R5lGJ6eGnrrat/2dX+7/U/0mZ40Wj4Mqg4sViqqRV\r\nzVSB7Fd67sm2/6OC9Vp08ECu3L/K/6uJ8uh1f97B5PHU2NbH//GEY8tlopuH/+TH4LqU6qmc/zu6\r\n2O24oIhf/+rN3NFom9icubKP79lsktyhtK+k/+peyeFxiN7S//rCyadWyjXI0/GNVN1vjJDG+fHN\r\nynqu9abL//20h/ife5bk7NVyobFiylqj/52w+HnLP+kAAABGdFJOUwBnRH8QICD+IP+AMd6f3v7+\r\n397dON6AWYTPvpdj3n+Fi9e/yv2m05d63k1/hd+7pNlD3PW/65P32brk5MfX58+IiN6/v4D1Cm7r\r\n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\r\n\r\n--b2=_fN1u2Hhjz6VhVRPZReM1fJD82mZIFfO40qbJ2FbWcA\r\nContent-Type: image/png; name=link.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <6084a81632e7274895ae@mail.proton.me>\r\nContent-Disposition: inline; filename=link.png\r\n\r\n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\r\nHx/rAPwHlmSLrKlhoigAAAAASUVORK5CYII=\r\n\r\n--b2=_fN1u2Hhjz6VhVRPZReM1fJD82mZIFfO40qbJ2FbWcA\r\nContent-Type: image/png; name=instagram.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <9a59373b77f43d9cd657@mail.proton.me>\r\nContent-Disposition: inline; filename=instagram.png\r\n\r\n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\r\n\r\n--b2=_fN1u2Hhjz6VhVRPZReM1fJD82mZIFfO40qbJ2FbWcA\r\nContent-Type: image/png; name=facebook.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <91b06a6d262700d29a5c@mail.proton.me>\r\nContent-Disposition: inline; filename=facebook.png\r\n\r\n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\r\ncG0LAAAAAElFTkSuQmCC\r\n\r\n--b2=_fN1u2Hhjz6VhVRPZReM1fJD82mZIFfO40qbJ2FbWcA\r\nContent-Type: image/png; name=linkedin.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <e20351bda9a6757cd165@mail.proton.me>\r\nContent-Disposition: inline; filename=linkedin.png\r\n\r\n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\r\n\r\n--b2=_fN1u2Hhjz6VhVRPZReM1fJD82mZIFfO40qbJ2FbWcA\r\nContent-Type: image/png; name=reddit.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <91e9bd25eff223ce6f4c@mail.proton.me>\r\nContent-Disposition: inline; filename=reddit.png\r\n\r\n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\r\n\r\n--b2=_fN1u2Hhjz6VhVRPZReM1fJD82mZIFfO40qbJ2FbWcA\r\nContent-Type: image/png; name=twitter.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <853e0de9764aa8bd61d0@mail.proton.me>\r\nContent-Disposition: inline; filename=twitter.png\r\n\r\n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\r\nTkSuQmCC\r\n\r\n--b2=_fN1u2Hhjz6VhVRPZReM1fJD82mZIFfO40qbJ2FbWcA\r\nContent-Type: image/png; name=logo-proton.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <147547a9503cc705b241@mail.proton.me>\r\nContent-Disposition: inline; filename=logo-proton.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAXwAAAB4CAMAAADG37laAAAABGdBTUEAALGPC/xhBQAAAAFzUkdC\r\nAK7OHOkAAAAJcEhZcwAAFiUAABYlAUlSJPAAAAJhUExURUdwTGBQ32hQ32NR4WRQ32NR4WJQ32BQ\r\n32NR4mNS4mNR4WJQ32JR4WFQ32BQ32BQ32NS4mBQ32JQ32VQ32RQ32JR4XBQ32NQ4GNQ42JS42JR\r\n4WNQ32FQ32NR4WBQ32NQ32NQ5GNQ32NR4WJQ4WRR4WNT42NT5GJS4mNR4WBQ32JQ4GRQ32VQ32RS\r\n4mJQ32NR4WRR5WBQ32NQ32NS4m5M/WJQ32NQ4GNR4mNQ4GJR4WRQ32JS4mNR4mFQ32JQ32NR4WNS\r\n4GNQ32NR4UossUYqq2xK+2pI9WhG71Y2y0Qop25K/WZE62JC5WBA31Q2x1IywU4wu0wutWxK+Vw+\r\n21w81Vg6z0ImoVdDyjgYhzIZgjsgkT4jnD0jkzshl086ujAYgDcdjTUah2NR4W1L/WxK+2dG8U4w\r\nvF093Fg50VAywVY3zGRE62JB5l8/4WpI9ksut2JC5kkssmlI9mVE7Fo71kQop0Elojwhl0YprFM1\r\nx1U3zFs711092z8jnWxK/WA/4Uwut1M0x1M0xmBA4UYqrEQnp0kssT8jnDoeklQ1x21K/WpJ9m1L\r\n+2VE60cqrVo710ImojcdjTofklo61mdF8W5M/lQ7x1EzwVk60mBF4V9L2mNC5mBI318/4GJE5VU6\r\nyVpF0VEzwmFN3lAywk0wvEsutmVF6mhG8Vk50lM9xWBM22FM31M1xkgrsUwxuFpA1D8lnEQoqD4k\r\nnFU2zFI7wkcqrFs811tI0lI8wVg40VE6v0EloVk801s71k43uGBN3DUaiDcejVxK1FdDyjQahzkg\r\nkjcdjDYciEUtpkw2tVM+wiSBEHAAAABidFJOUwAQIP5A32Agv5/vgN+gQEGvYHAwgO8Qv29/z1CQ\r\nkDCQX6Cg389vX4/eUM9wYI+w7k8hAZ6AYa8Bvs5Bn74BcQGvn/2AgICAgICAgICAgICAgICAgICA\r\ngJAg31+wUN/vIN/fHPTuiQAACW1JREFUeNrtnYd/3LYVx8kzeRxHX6lbOt3Qthw7dkZX0qZtRps2\r\ne7RN96STxomnnCjxrOPtNHvvPbqSdO89ko6/KryzJEvAA/DAO4JKDr+PffLncyQAfvHwADw8yoah\r\n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\r\nYII=\r\n\r\n--b2=_fN1u2Hhjz6VhVRPZReM1fJD82mZIFfO40qbJ2FbWcA--','Please log in at https://mail.proton.me to check them.\n\n[Proton](https://proton.me/)\n\nYou have 1 new message(s)\n\nHello,\n\nYou have 1 new message(s) in your inbox and custom folders.\n\nPlease log in at https://mail.proton.me to check them. These notifications can be turned off by logging into your account and disabling the daily notification setting.\n\n[Open Proton Mail](https://mail.proton.me)\n\n[Learn more about notification emails](https://proton.me/support/notification-email)\n\nThank you,\nThe Proton Team\n\nConnect with the Proton community\n\n[Twitter](https://twitter.com/ProtonPrivacy)\n\n[Reddit](https://reddit.com/r/ProtonMail)\n\n[LinkedIn](https://www.linkedin.com/company/protonprivacy/)\n\n[Facebook](https://facebook.com/Proton)\n\n[Instagram](https://instagram.com/protonprivacy)\n\n[Blog](https://proton.me/blog)\n\nYou are receiving this email because you set a notification for new messages received in your Proton Mail inbox. [Learn more about notification emails](https://proton.me/support/notification-email)\n\n[Update your email preferences or unsubscribe](https://account.proton.me/unsubscribe/64#eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3NjM1MDA2NzcuNTMwNTM1LCJleHAiOjE3NjYwOTI2NzcsIlVzZXJJRCI6IlRJU1pYRHhwZlJBU1dTN0R6V0xXd2ciLCJTY29wZSI6OTgzMDQsImlzcyI6InByb3Rvbi5tZSIsImF1ZCI6InByb3Rvbi5tZSIsIlR5cGUiOjF9.wGAsF2Yi3audHXUvvDFAvGm8VMEi0J75ek25mlqL7-I)\n\n© 2025 Proton AG Switzerland\nRoute de la Galaise 32, 1228 Plan-les-Ouates, Geneva, Switzerland',0,0,0,0,0,0,'2025-11-18 21:17:57','2025-12-09 18:52:10','2025-12-09 18:52:10','2025-12-09 18:52:10',NULL,NULL,NULL),
(152,4,'<784280100.736604.1763513351227@lor1-app45431.prod.linkedin.com>',NULL,NULL,'=?UTF-8?Q?=F0=9F=92=AC_Mavrix,_add_Aaron_Joshua_Shuster?=','messages-noreply@linkedin.com','LinkedIn','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n              @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n            </style> <style>\r\n            @media (max-width: 480px) { .inline-button, .inline-button table { display: none !important; }\r\n            .full-width-button, .full-width-button table { display: table !important; } }\r\n          </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n            \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n            \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> <script type=\"application/ld+json\">\r\n    { \"@context\": \"http://schema.org\", \"@type\": \"EmailMessage\", \"potentialAction\": { \"@type\": \"ViewAction\", \"url\": \"https://www.linkedin.com/comm/mynetwork/send-invite/aaron-joshua-shuster-2a5b41223/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midSig=08jgDzMBQhvc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A943407197-null-poh2nf%7Emi5aak8q%7E64-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A943407197&amp;_sig=0dwnEZ26Ehvc01\",\r\n    \"name\": \"Connect\" }, \"description\": \"Connect with Aaron Joshua\", \"publisher\": { \"@type\": \"Organization\", \"name\":\r\n    \"LinkedIn\", \"url\": \"https://www.linkedin.com/\" } }\r\n  </script> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">Chief Executive Officer</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-left: auto; margin-right: auto; margin-top: 0px; margin-bottom: 0px; width: 512px; max-width: 512px; padding: 0px;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"bg-color-background-container \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=08jgDzMBQhvc01&amp;trk=eml-email_pymk_02-header-0-home_glimmer_static_badging_with_count&amp;trkEmail=eml-email_pymk_02-header-0-home_glimmer_static_badging_with_count-null-poh2nf~mi5aak8q~64-null-null&amp;eid=poh2nf-mi5aak8q-64&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0YjE4ZWNkZDM0NDk5YWI4ODZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmMWQwZGM3YmYyZGNiNTJlNzQ1OWQ5ODEyZjg5NzJmNDIwNzk2MGQwMWRjNDA1MTQsMSwx\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img class=\"h-[37px] w-[101px]\" alt=\"LinkedIn\" src=\"https://static.licdn.com/aero-v1/sc/h/2fp5x7ci191mxbdy1eynscn59\" data-test-header-static-badging-img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 37px; width: 101px;\" width=\"101\" height=\"37\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" data-test-header-notification-badges style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/messaging/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=08jgDzMBQhvc01&amp;trk=eml-email_pymk_02-header-0-messaging_glimmer&amp;trkEmail=eml-email_pymk_02-header-0-messaging_glimmer-null-poh2nf~mi5aak8q~64-null-null&amp;eid=poh2nf-mi5aak8q-64&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0YjE4ZWNkZDM0NDk5YWI4ODZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmMWQwZGM3YmYyZGNiNTJlNzQ1OWQ5ODEyZjg5NzJmNDIwNzk2MGQwMWRjNDA1MTQsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Messaging icon\" src=\"https://static.licdn.com/aero-v1/sc/h/10fimloaw3jryyzve9w87w3h1\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=08jgDzMBQhvc01&amp;trk=eml-email_pymk_02-header-0-my_network_glimmer&amp;trkEmail=eml-email_pymk_02-header-0-my_network_glimmer-null-poh2nf~mi5aak8q~64-null-null&amp;eid=poh2nf-mi5aak8q-64&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0YjE4ZWNkZDM0NDk5YWI4ODZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmMWQwZGM3YmYyZGNiNTJlNzQ1OWQ5ODEyZjg5NzJmNDIwNzk2MGQwMWRjNDA1MTQsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Mynetwork icon\" src=\"https://static.licdn.com/aero-v1/sc/h/anu0f2h3c0xay9ou5nkdrjk8q\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/notifications/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=08jgDzMBQhvc01&amp;trk=eml-email_pymk_02-header-0-notifications_glimmer&amp;trkEmail=eml-email_pymk_02-header-0-notifications_glimmer-null-poh2nf~mi5aak8q~64-null-null&amp;eid=poh2nf-mi5aak8q-64&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0YjE4ZWNkZDM0NDk5YWI4ODZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmMWQwZGM3YmYyZGNiNTJlNzQ1OWQ5ODEyZjg5NzJmNDIwNzk2MGQwMWRjNDA1MTQsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Notifications icon\" src=\"https://static.licdn.com/aero-v1/sc/h/9pd3p4xrruqz3lc8kghvmdnjs\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"px-0 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 0px; padding-right: 0px; padding-bottom: 24px;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"pymk-hero-banner\"> <td class=\"px-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"px-3 py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px; padding-left: 24px; padding-right: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/in/aaron-joshua-shuster-2a5b41223?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=08jgDzMBQhvc01&amp;trk=eml-email_pymk_02-pymk_hero-0-profile_name_link&amp;trkEmail=eml-email_pymk_02-pymk_hero-0-profile_name_link-null-poh2nf~mi5aak8q~64-null-null&amp;eid=poh2nf-mi5aak8q-64&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0YjE4ZWNkZDM0NDk5YWI4ODZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmMWQwZGM3YmYyZGNiNTJlNzQ1OWQ5ODEyZjg5NzJmNDIwNzk2MGQwMWRjNDA1MTQsMSwx\" target=\"_blank\" class=\"text-system-gray-90\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #282828;\"> <h2 class=\"text-lg font-semibold leading-regular\" data-test-id=\"pymk-hero_header\" style=\"margin: 0; font-size: 20px; font-weight: 600; line-height: 1.25;\"> Do you know Aaron Joshua? </h2> </a> </td> </tr> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <h4 class=\"text-sm text-system-gray-90 leading-regular\" data-test-id=\"pymk-hero_subheader\" style=\"margin: 0; font-weight: 500; font-size: 14px; line-height: 1.25; color: #282828;\"> Request to connect with members you know and trust </h4> </td> </tr> <tr> <td class=\"pt-[10px]\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 10px;\"> <a href=\"https://www.linkedin.com/comm/in/aaron-joshua-shuster-2a5b41223?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=08jgDzMBQhvc01&amp;trk=eml-email_pymk_02-pymk_hero-0-profile_image&amp;trkEmail=eml-email_pymk_02-pymk_hero-0-profile_image-null-poh2nf~mi5aak8q~64-null-null&amp;eid=poh2nf-mi5aak8q-64&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0YjE4ZWNkZDM0NDk5YWI4ODZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmMWQwZGM3YmYyZGNiNTJlNzQ1OWQ5ODEyZjg5NzJmNDIwNzk2MGQwMWRjNDA1MTQsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px]\" src=\"https://media.licdn.com/dms/image/v2/C5603AQH_Z7GdPvO65A/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1634593517643?e=2147483647&amp;v=beta&amp;t=D3EE_Pf0l9trt2QKn83iV9-MjfbfgR4j-kHBDpqZ4Qc\" alt=\"Aaron Joshua Shuster’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </a> </td> </tr> <tr> <td class=\"pt-[10px]\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 10px;\"> <a href=\"https://www.linkedin.com/comm/in/aaron-joshua-shuster-2a5b41223?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=08jgDzMBQhvc01&amp;trk=eml-email_pymk_02-pymk_hero-0-profile_name_link&amp;trkEmail=eml-email_pymk_02-pymk_hero-0-profile_name_link-null-poh2nf~mi5aak8q~64-null-null&amp;eid=poh2nf-mi5aak8q-64&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0YjE4ZWNkZDM0NDk5YWI4ODZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmMWQwZGM3YmYyZGNiNTJlNzQ1OWQ5ODEyZjg5NzJmNDIwNzk2MGQwMWRjNDA1MTQsMSwx\" target=\"_blank\" class=\"text-system-gray-90\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #282828;\"> <h2 class=\"text-lg font-semibold leading-regular\" style=\"margin: 0; font-size: 20px; font-weight: 600; line-height: 1.25;\"> Aaron Joshua Shuster </h2> </a> </td> </tr> <tr> <td class=\"text-xs text-system-gray-90 leading-regular pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px; font-size: 12px; line-height: 1.25; color: #282828;\"> Chief Executive Officer </td> </tr> <tr> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/aaron-joshua-shuster-2a5b41223/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midSig=08jgDzMBQhvc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A943407197-null-poh2nf%7Emi5aak8q%7E64-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A943407197&amp;_sig=0dwnEZ26Ehvc01\" target=\"_blank\" aria-label=\"Connect\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid w-[100vw] max-w-[400px]\" data-test-id=\"pymk-hero_default-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; width: 100vw; max-width: 400px; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/aaron-joshua-shuster-2a5b41223/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midSig=08jgDzMBQhvc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A943407197-null-poh2nf%7Emi5aak8q%7E64-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A943407197&amp;_sig=0dwnEZ26Ehvc01\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"pymk-section-header\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <h2 class=\"text-lg font-semibold leading-regular text-system-gray-90 text-center\" style=\"margin: 0; text-align: center; font-size: 20px; font-weight: 600; line-height: 1.25; color: #282828;\"> More people you may know </h2> </td> </tr> <tr data-test-id=\"pymk-section-body\"> <td align=\"center\" class=\"pt-1.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"></td> <td class=\"pr-1 w-[400px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 400px; padding-right: 8px;\" width=\"400\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"w-1/2 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/olufemi-arosanyin-0b0b912?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=08jgDzMBQhvc01&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mi5aak8q~64-null-null&amp;eid=poh2nf-mi5aak8q-64&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0YjE4ZWNkZDM0NDk5YWI4ODZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmMWQwZGM3YmYyZGNiNTJlNzQ1OWQ5ODEyZjg5NzJmNDIwNzk2MGQwMWRjNDA1MTQsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/C4E03AQE3WI0FSAPB8g/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1516281909144?e=2147483647&amp;v=beta&amp;t=1g7U8sxdBA0J4Uk_R_HispazFdGbwZnwXo2v0riRpqI\" alt=\"Olufemi Arosanyin’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Olufemi Arosanyin </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Consultant </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/olufemi-arosanyin-0b0b912/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midSig=08jgDzMBQhvc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A8897604-null-poh2nf%7Emi5aak8q%7E64-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A8897604&amp;_sig=1TtGkf9mEhvc01\" target=\"_blank\" aria-label=\"Connect with Olufemi Arosanyin\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/olufemi-arosanyin-0b0b912/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midSig=08jgDzMBQhvc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A8897604-null-poh2nf%7Emi5aak8q%7E64-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A8897604&amp;_sig=1TtGkf9mEhvc01\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"w-1/2 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/peter-van-haur-1941b413?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=08jgDzMBQhvc01&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mi5aak8q~64-null-null&amp;eid=poh2nf-mi5aak8q-64&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0YjE4ZWNkZDM0NDk5YWI4ODZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmMWQwZGM3YmYyZGNiNTJlNzQ1OWQ5ODEyZjg5NzJmNDIwNzk2MGQwMWRjNDA1MTQsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/C4E03AQGzUhsnHdaDkA/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1572601041519?e=2147483647&amp;v=beta&amp;t=xqXzDgaKcQgWq7tRSRW1qITE-6UDhJZiCblvNIGs2rk\" alt=\"Peter Van Haur’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Peter Van Haur </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer at VitalConnect </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/peter-van-haur-1941b413/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midSig=08jgDzMBQhvc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A45273856-null-poh2nf%7Emi5aak8q%7E64-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A45273856&amp;_sig=1HQ0kwFwQhvc01\" target=\"_blank\" aria-label=\"Connect with Peter Van Haur\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/peter-van-haur-1941b413/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midSig=08jgDzMBQhvc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A45273856-null-poh2nf%7Emi5aak8q%7E64-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A45273856&amp;_sig=1HQ0kwFwQhvc01\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/robmangiarelli?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=08jgDzMBQhvc01&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mi5aak8q~64-null-null&amp;eid=poh2nf-mi5aak8q-64&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0YjE4ZWNkZDM0NDk5YWI4ODZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmMWQwZGM3YmYyZGNiNTJlNzQ1OWQ5ODEyZjg5NzJmNDIwNzk2MGQwMWRjNDA1MTQsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/C4E03AQF-awV7sNHxTg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1647551946044?e=2147483647&amp;v=beta&amp;t=HayKFwfLj20we3jYionaWT1WPUW4DELJ9gMYa47g8N4\" alt=\"Rob Mangiarelli’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Rob Mangiarelli </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer at Atrium… </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/robmangiarelli/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midSig=08jgDzMBQhvc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A28655352-null-poh2nf%7Emi5aak8q%7E64-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A28655352&amp;_sig=3aEaq39aAhvc01\" target=\"_blank\" aria-label=\"Connect with Rob Mangiarelli\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/robmangiarelli/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midSig=08jgDzMBQhvc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A28655352-null-poh2nf%7Emi5aak8q%7E64-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A28655352&amp;_sig=3aEaq39aAhvc01\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/rob-jay-scionhealth?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=08jgDzMBQhvc01&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mi5aak8q~64-null-null&amp;eid=poh2nf-mi5aak8q-64&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0YjE4ZWNkZDM0NDk5YWI4ODZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmMWQwZGM3YmYyZGNiNTJlNzQ1OWQ5ODEyZjg5NzJmNDIwNzk2MGQwMWRjNDA1MTQsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/C4D03AQHZD6OP0-9_Jg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1648825635059?e=2147483647&amp;v=beta&amp;t=UnHax8mhRQyy1L-8qoeJw4WolYbMIt25c5qfVSBijR4\" alt=\"Rob Jay’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Rob Jay </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer at ScionHealth </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/rob-jay-scionhealth/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midSig=08jgDzMBQhvc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A33617988-null-poh2nf%7Emi5aak8q%7E64-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A33617988&amp;_sig=2qa8-K8Sshvc01\" target=\"_blank\" aria-label=\"Connect with Rob Jay\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/rob-jay-scionhealth/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midSig=08jgDzMBQhvc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A33617988-null-poh2nf%7Emi5aak8q%7E64-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A33617988&amp;_sig=2qa8-K8Sshvc01\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/sushil-purohit-7523424?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=08jgDzMBQhvc01&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mi5aak8q~64-null-null&amp;eid=poh2nf-mi5aak8q-64&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0YjE4ZWNkZDM0NDk5YWI4ODZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmMWQwZGM3YmYyZGNiNTJlNzQ1OWQ5ODEyZjg5NzJmNDIwNzk2MGQwMWRjNDA1MTQsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/C5603AQHxx2cNmuhB5w/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1651515753770?e=2147483647&amp;v=beta&amp;t=uJvXmbJOlOzxixuYC6DWPQHcDh5oce7dilDdhRMCEc0\" alt=\"Sushil Purohit’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Sushil Purohit </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer, Gentari Group </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/sushil-purohit-7523424/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midSig=08jgDzMBQhvc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A12777902-null-poh2nf%7Emi5aak8q%7E64-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A12777902&amp;_sig=2nbmyA_Kohvc01\" target=\"_blank\" aria-label=\"Connect with Sushil Purohit\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/sushil-purohit-7523424/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midSig=08jgDzMBQhvc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A12777902-null-poh2nf%7Emi5aak8q%7E64-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A12777902&amp;_sig=2nbmyA_Kohvc01\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/chuck-shaffer-0504276?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=08jgDzMBQhvc01&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mi5aak8q~64-null-null&amp;eid=poh2nf-mi5aak8q-64&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0YjE4ZWNkZDM0NDk5YWI4ODZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmMWQwZGM3YmYyZGNiNTJlNzQ1OWQ5ODEyZjg5NzJmNDIwNzk2MGQwMWRjNDA1MTQsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQGBADA1DAedXw/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1714914797056?e=2147483647&amp;v=beta&amp;t=OVSUT5akb42LwJuhydZiDbj7_MdARpBOdtqP6689DXI\" alt=\"Chuck Shaffer’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Chuck Shaffer </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer at Seacoast Bank </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/chuck-shaffer-0504276/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midSig=08jgDzMBQhvc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A18964860-null-poh2nf%7Emi5aak8q%7E64-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A18964860&amp;_sig=1sA8E3sy8hvc01\" target=\"_blank\" aria-label=\"Connect with Chuck Shaffer\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/chuck-shaffer-0504276/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midSig=08jgDzMBQhvc01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A18964860-null-poh2nf%7Emi5aak8q%7E64-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A18964860&amp;_sig=1sA8E3sy8hvc01\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"></td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 px-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button px-3\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/add-connections/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=08jgDzMBQhvc01&amp;trk=eml-email_pymk_02-see_more-0-cta&amp;trkEmail=eml-email_pymk_02-see_more-0-cta-null-poh2nf~mi5aak8q~64-null-null&amp;eid=poh2nf-mi5aak8q-64&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0YjE4ZWNkZDM0NDk5YWI4ODZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmMWQwZGM3YmYyZGNiNTJlNzQ1OWQ5ODEyZjg5NzJmNDIwNzk2MGQwMWRjNDA1MTQsMSwx\" target=\"_blank\" aria-label=\"See more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/add-connections/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=08jgDzMBQhvc01&amp;trk=eml-email_pymk_02-see_more-0-cta&amp;trkEmail=eml-email_pymk_02-see_more-0-cta-null-poh2nf~mi5aak8q~64-null-null&amp;eid=poh2nf-mi5aak8q-64&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0YjE4ZWNkZDM0NDk5YWI4ODZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmMWQwZGM3YmYyZGNiNTJlNzQ1OWQ5ODEyZjg5NzJmNDIwNzk2MGQwMWRjNDA1MTQsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> See more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-lg text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 20px; color: #114951;\"> Get the new LinkedIn desktop app </h2> </td> </tr> <tr> <td class=\"text-center pb-2\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <a href=\"https://apps.microsoft.com/store/detail/9WZDNCRFJ4Q7?launch=true&amp;cid=linkedin_email_upsell&amp;mode=full\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it from Microsoft\" src=\"https://static.licdn.com/aero-v1/sc/h/ejpkkpwvqks31a3cjqokb7fbm\" class=\"h-[40px] w-[112px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 112px;\" width=\"112\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-md text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 16px; color: #114951;\"> Also available on mobile </h2> </td> </tr> <tr> <td class=\"text-center\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <a href=\"https://itunes.apple.com/us/app/linkedin/id288429040?pt=10746&amp;ct=st_appsite_flagship&amp;mt=8\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Download on the App Store\" src=\"https://static.licdn.com/aero-v1/sc/h/76yzkd0h5kiv27lrd4yaenylk\" class=\"h-[40px] w-[120px] pr-1\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 120px; padding-right: 8px;\" width=\"120\" height=\"40\"> </a> <a href=\"https://play.google.com/store/apps/details?id=com.linkedin.android&amp;referrer=st_appsite_flagship\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it on Google Play\" src=\"https://static.licdn.com/aero-v1/sc/h/142qudwblp58zwmc9vkqfplug\" class=\"h-[40px] w-[134px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 134px;\" width=\"134\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px;\"><hr class=\"border-none bg-[#e0dfdd] h-[1px]\" style=\"height: 1px; border-style: none; background-color: #e0dfdd;\"></td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" data-test-id=\"email-footer__intended\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=08jgDzMBQhvc01&amp;trk=eml-email_pymk_02-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_pymk_02-SecurityHelp-0-footerglimmer-null-poh2nf~mi5aak8q~64-null-null&amp;eid=poh2nf-mi5aak8q-64&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0YjE4ZWNkZDM0NDk5YWI4ODZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmMWQwZGM3YmYyZGNiNTJlNzQ1OWQ5ODEyZjg5NzJmNDIwNzk2MGQwMWRjNDA1MTQsMSwx\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving People You May Know notification emails.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=08jgDzMBQhvc01&amp;trk=eml-email_pymk_02-unsubscribe-0-footerGlimmer&amp;trkEmail=eml-email_pymk_02-unsubscribe-0-footerGlimmer-null-poh2nf~mi5aak8q~64-null-null&amp;eid=poh2nf-mi5aak8q-64&amp;loid=AQEiMtIdY0Ig4QAAAZqZljmUg3TWZeDUeELsLxr_vnG1LyAJ6m_QUDfQ2-bC24RGkv7OYHc30CqPVTRvmYpNyhgU-Pd3fl-QNDcG\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Unsubscribe</a>   ·   <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=08jgDzMBQhvc01&amp;trk=eml-email_pymk_02-help-0-footerglimmer&amp;trkEmail=eml-email_pymk_02-help-0-footerglimmer-null-poh2nf~mi5aak8q~64-null-null&amp;eid=poh2nf-mi5aak8q-64&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0YjE4ZWNkZDM0NDk5YWI4ODZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmMWQwZGM3YmYyZGNiNTJlNzQ1OWQ5ODEyZjg5NzJmNDIwNzk2MGQwMWRjNDA1MTQsMSwx\" target=\"_blank\" data-test-help-link class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=08jgDzMBQhvc01&amp;trk=eml-email_pymk_02-footer-0-logoGlimmer&amp;trkEmail=eml-email_pymk_02-footer-0-logoGlimmer-null-poh2nf~mi5aak8q~64-null-null&amp;eid=poh2nf-mi5aak8q-64&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0YjE4ZWNkZDM0NDk5YWI4ODZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmMWQwZGM3YmYyZGNiNTJlNzQ1OWQ5ODEyZjg5NzJmNDIwNzk2MGQwMWRjNDA1MTQsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/aero-v1/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFwTldGaGF6aHhMVFkwOlpXMWhhV3hmY0hsdGExOHdNZz09Og==.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','Do you know Aaron Joshua Shuster?\r\n\r\nYes, connect: https://www.linkedin.com/comm/mynetwork/send-invite/aaron-joshua-shuster-2a5b41223/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&midSig=08jgDzMBQhvc01&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A943407197-null-poh2nf%7Emi5aak8q%7E64-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A943407197&_sig=0dwnEZ26Ehvc01\r\n\r\n\r\nMore people you may know\r\n            \r\n    Olufemi Arosanyin\r\nConsultant\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/olufemi-arosanyin-0b0b912/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&midSig=08jgDzMBQhvc01&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A8897604-null-poh2nf%7Emi5aak8q%7E64-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A8897604&_sig=1TtGkf9mEhvc01\r\n            \r\n    Peter Van Haur\r\nChief Executive Officer at VitalConnect\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/peter-van-haur-1941b413/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&midSig=08jgDzMBQhvc01&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A45273856-null-poh2nf%7Emi5aak8q%7E64-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A45273856&_sig=1HQ0kwFwQhvc01\r\n            \r\n    Rob Mangiarelli\r\nChief Executive Officer at Atrium Hospitality\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/robmangiarelli/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&midSig=08jgDzMBQhvc01&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A28655352-null-poh2nf%7Emi5aak8q%7E64-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A28655352&_sig=3aEaq39aAhvc01\r\n            \r\n    Rob Jay\r\nChief Executive Officer at ScionHealth\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/rob-jay-scionhealth/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&midSig=08jgDzMBQhvc01&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A33617988-null-poh2nf%7Emi5aak8q%7E64-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A33617988&_sig=2qa8-K8Sshvc01\r\n            \r\n    Sushil Purohit\r\nChief Executive Officer, Gentari Group\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/sushil-purohit-7523424/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&midSig=08jgDzMBQhvc01&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A12777902-null-poh2nf%7Emi5aak8q%7E64-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A12777902&_sig=2nbmyA_Kohvc01\r\n\r\nSee more people you might know:https://www.linkedin.com/comm/mynetwork/add-connections/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&midToken=AQE-iPshthTClw&midSig=08jgDzMBQhvc01&trk=eml-email_pymk_02-see_more-0-cta~text&trkEmail=eml-email_pymk_02-see_more-0-cta~text-null-poh2nf~mi5aak8q~64-null-null&eid=poh2nf-mi5aak8q-64&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0YjE4ZWNkZDM0NDk5YWI4ODZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmMWQwZGM3YmYyZGNiNTJlNzQ1OWQ5ODEyZjg5NzJmNDIwNzk2MGQwMWRjNDA1MTQsMSwx\r\n      \r\n\r\n----------------------------------------\r\n\r\nThis email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\nLearn why we included this: https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&midToken=AQE-iPshthTClw&midSig=08jgDzMBQhvc01&trk=eml-email_pymk_02-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_pymk_02-SecurityHelp-0-textfooterglimmer-null-poh2nf~mi5aak8q~64-null-null&eid=poh2nf-mi5aak8q-64&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0YjE4ZWNkZDM0NDk5YWI4ODZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmMWQwZGM3YmYyZGNiNTJlNzQ1OWQ5ODEyZjg5NzJmNDIwNzk2MGQwMWRjNDA1MTQsMSwx\r\nYou are receiving People You May Know notification emails.\r\n\r\n\r\nUnsubscribe: https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&midToken=AQE-iPshthTClw&midSig=08jgDzMBQhvc01&trk=eml-email_pymk_02-unsubscribe-0-textfooterglimmer&trkEmail=eml-email_pymk_02-unsubscribe-0-textfooterglimmer-null-poh2nf~mi5aak8q~64-null-null&eid=poh2nf-mi5aak8q-64&loid=AQEiMtIdY0Ig4QAAAZqZljmUg3TWZeDUeELsLxr_vnG1LyAJ6m_QUDfQ2-bC24RGkv7OYHc30CqPVTRvmYpNyhgU-Pd3fl-QNDcG\r\nHelp: https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1HkMY1U0TteG6yR9TUWwUQ%3D%3D&midToken=AQE-iPshthTClw&midSig=08jgDzMBQhvc01&trk=eml-email_pymk_02-help-0-textfooterglimmer&trkEmail=eml-email_pymk_02-help-0-textfooterglimmer-null-poh2nf~mi5aak8q~64-null-null&eid=poh2nf-mi5aak8q-64&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGU0YjE4ZWNkZDM0NDk5YWI4ODZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmMWQwZGM3YmYyZGNiNTJlNzQ1OWQ5ODEyZjg5NzJmNDIwNzk2MGQwMWRjNDA1MTQsMSwx\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.\r\nLinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',0,0,0,0,0,0,'2025-11-19 00:49:11','2025-12-09 18:52:11','2025-12-09 18:52:11','2025-12-09 18:52:11',NULL,NULL,NULL),
(153,4,' <PH2P110MB07965C54D4EBCEB0AD245725D0D7A@PH2P110MB0796.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'RE: DPI Introduction','barry@dpiuav.com','Barry Phillips','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Segoe UI\";\r\n	panose-1:2 11 5 2 4 2 4 2 2 3;}\r\n@font-face\r\n	{font-family:\"Freestyle Script\";\r\n	panose-1:3 8 4 2 3 2 5 11 4 4;}\r\n@font-face\r\n	{font-family:\"Arial Nova Light\";}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.gmailquote, li.gmailquote, div.gmailquote\r\n	{mso-style-name:gmail_quote;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.me-email-text\r\n	{mso-style-name:me-email-text;}\r\nspan.me-email-text-secondary\r\n	{mso-style-name:me-email-text-secondary;}\r\np.gmailquote0, li.gmailquote0, div.gmailquote0\r\n	{mso-style-name:gmailquote;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmailon;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle23\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Rick,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Not a problem sir, I have already sent the updated meeting time. Looking forward to Thursday morning.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:20.0pt;font-family:&quot;Freestyle Script&quot;;mso-ligatures:standardcontextual\">Barry Phillips<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Engineering Manager<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Cell: 484-459-7997<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">DPI UAV Systems<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">600 West 2<sup>nd</sup> St.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Essington PA 19029<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\">Extending Man\'s Reach with Unmanned Helicopters</span></b><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;color:#002060\"><img width=\"222\" height=\"70\" style=\"width:2.3125in;height:.7291in\" id=\"Picture_x0020_1101246731\" src=\"cid:image001.jpg@01DC58CE.73B98E80\" alt=\"DPI-logo-4-April28-blue-full\"></span><span style=\"font-size:11.0pt;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">This is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged\r\n information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your\r\n cooperation is appreciated.<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Tuesday, November 18, 2025 9:15 AM<br>\r\n<b>To:</b> Barry Phillips &lt;barry@dpiuav.com&gt;<br>\r\n<b>Cc:</b> Michael Piasecki &lt;mike@dpiuav.com&gt;; Chuck Wythe &lt;chuckw@dpiuav.com&gt;; Joseph Pawelczyk &lt;joe@dpiuav.com&gt;<br>\r\n<b>Subject:</b> Re: DPI Introduction<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\">Hey sorry guys. &nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">We’ve had some issues and I had to adjust schedule.&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">I missed this one.&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Can we try again Thursday morning?<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">My apologies,<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">Rick<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img width=\"144\" height=\"32\" style=\"width:1.5in;height:.3333in\" id=\"Picture_x0020_4\" src=\"cid:image002.jpg@01DC58CE.73B98E80\"></span><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"http://mavrix1.com/\">mavrix1.com</a><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">CONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient. &nbsp;If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may\r\n be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"gmailquote\"><span style=\"color:black\">On November 12, 2025 at 9:03:45</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"color:black\">AM, Barry Phillips (<a href=\"mailto:barry@dpiuav.com\">barry@dpiuav.com</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">DPI’s introduction and discussion about our product line.</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Changing the date to the following Tuesday on the 18<sup>th</sup> per Rick’s request to deconflict schedules.</span><o:p></o:p></p>\r\n<div>\r\n<div>\r\n<div style=\"margin-bottom:.25in;overflow:hidden\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">________________________________________________________________________________</span><o:p></o:p></p>\r\n</div>\r\n<div style=\"margin-bottom:9.0pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span class=\"me-email-text\"><b><span style=\"font-size:18.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">Microsoft Teams</span></b></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<a href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\"><span style=\"font-size:10.5pt;color:#5B5FC7\">Need help?</span></a>\r\n</span><o:p></o:p></p>\r\n</div>\r\n<div style=\"margin-bottom:4.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\"><a href=\"https://gov.teams.microsoft.us/l/meetup-join/19%3agcch%3ameeting_648a7638fb1442c78154430401863565%40thread.v2/0?context=%7b%22Tid%22%3a%221c84fc53-749d-4fba-8afb-153d00e6dde0%22%2c%22Oid%22%3a%221efc1998-d3df-4ff0-8a4d-837f245fe19a%22%7d\" target=\"_blank\" title=\"Meeting join link\"><b><span style=\"font-size:15.0pt;color:#5B5FC7\">Join\r\n the meeting now</span></b></a> </span><o:p></o:p></p>\r\n</div>\r\n<div style=\"margin-bottom:4.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">Meeting ID:\r\n</span></span><span class=\"me-email-text\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">992 928 332 67</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n</span><o:p></o:p></p>\r\n</div>\r\n<div style=\"margin-bottom:24.0pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">Passcode:\r\n</span></span><span class=\"me-email-text\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">cA2dP369</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n</span><o:p></o:p></p>\r\n</div>\r\n<div style=\"margin-bottom:9.0pt\">\r\n<div class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<hr size=\"1\" width=\"100%\" align=\"center\">\r\n</span></div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">For organizers:\r\n</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\"><a href=\"https://gov.teams.microsoft.us/meetingOptions/?organizerId=1efc1998-d3df-4ff0-8a4d-837f245fe19a&amp;tenantId=1c84fc53-749d-4fba-8afb-153d00e6dde0&amp;threadId=19_gcch_meeting_648a7638fb1442c78154430401863565@thread.v2&amp;messageId=0&amp;language=en-US\" target=\"_blank\"><span style=\"font-size:10.5pt;color:#5B5FC7\">Meeting\r\n options</span></a> </span><o:p></o:p></p>\r\n</div>\r\n<div style=\"margin-bottom:.25in;overflow:hidden\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">________________________________________________________________________________</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">_____________________________________________<br>\r\n<b>From:</b> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; <br>\r\n<b>Sent:</b> Thursday, November 6, 2025 2:49 PM<br>\r\n<b>To:</b> Barry Phillips &lt;<a href=\"mailto:barry@dpiuav.com\">barry@dpiuav.com</a>&gt;<br>\r\n<b>Cc:</b> Chuck Wythe &lt;<a href=\"mailto:chuckw@dpiuav.com\">chuckw@dpiuav.com</a>&gt;; Joseph Pawelczyk &lt;<a href=\"mailto:joe@dpiuav.com\">joe@dpiuav.com</a>&gt;; Michael Piasecki &lt;<a href=\"mailto:mike@dpiuav.com\">mike@dpiuav.com</a>&gt;<br>\r\n<b>Subject:</b> RE: Dragonfly Pictures, Inc.</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Hi Barry!<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Yes that would be fine. &nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Please send an invite!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:12.0pt\">Rick<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"144\" height=\"32\" style=\"width:1.5in;height:.3333in\" id=\"_x0000_i1030\" src=\"file://private/var/mobile/Containers/Shared/AppGroup/A5EA8206-7AD4-4CB7-B85D-F604D42E26CF/Data/Local2/Attachments/908/image001.jpg@01DC4F2C.FB6CF750\"></span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"http://mavrix1.com/\">mavrix1.com</a></span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">CONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient. &nbsp;If you are not the intended recipient, you may not copy, disclose, or distribute\r\n this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"gmailquote0\"><span style=\"color:black\">On November 6, 2025 at 1:36:12</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"color:black\">PM, Barry Phillips (<a href=\"mailto:barry@dpiuav.com\">barry@dpiuav.com</a>) wrote:</span><o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Mr. Mislan,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">I am responding on behalf of Mr. Piasecki, would you be available for a meeting with DPI at 9am Thursday morning NOV 13<sup>th</sup>, 2025?</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:20.0pt;font-family:&quot;Freestyle Script&quot;;mso-ligatures:standardcontextual\">Barry Phillips</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Engineering Manager</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Cell: 484-459-7997</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">DPI UAV Systems</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">600 West 2<sup>nd</sup> St.</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Essington PA 19029</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\">Extending Man\'s Reach with Unmanned Helicopters</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:#002060\"><img border=\"0\" width=\"222\" height=\"70\" style=\"width:2.3125in;height:.7291in\" id=\"_x0000_i1029\" src=\"file://private/var/mobile/Containers/Shared/AppGroup/A5EA8206-7AD4-4CB7-B85D-F604D42E26CF/Data/Local2/Attachments/900/image001.jpg@01DC4F22.2625DC10\" alt=\"DPI-logo-4-April28-blue-full\"></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;mso-ligatures:standardcontextual\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:9.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">This is an e-mail from DPI UAV Systems. It is for the intended recipient\r\n only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete\r\n the message and any attachments from your computer. Your cooperation is appreciated.</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;</span><a href=\"mailto:rick@mavrix.one\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">rick@mavrix.one</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, November 5, 2025 5:24 PM<br>\r\n<b>To:</b> Michael Piasecki &lt;</span><a href=\"mailto:mike@dpiuav.com\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">mike@dpiuav.com</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;<br>\r\n<b>Subject:</b> Re: Dragonfly Pictures, Inc.</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Michael,</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Yes completely remember you.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Want to schedule something for next week?</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Tuesday or Thursday mornings are best for me.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Let me know if you have a time in mind.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks!</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"_x0000_i1028\" src=\"file://private/var/mobile/Containers/Shared/AppGroup/A5EA8206-7AD4-4CB7-B85D-F604D42E26CF/Data/Local2/Attachments/900/image002.png@01DC4F22.2625DC10\"></span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://mavrix1.com/\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">https://mavrix1.com</span></a><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">CONFIDENTIALITY NOTICE</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI)\r\n protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of\r\n the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"airmailon\">On November 5, 2025 at 1:19:51<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM, Michael Piasecki (<a href=\"mailto:mike@dpiuav.com\">mike@dpiuav.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Dear Rick,\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">We met at the Army Marketplace event in Huntsville a while back. I drove you to the airport. If you wanted us to brief you on our portion of the market,\r\n we can do that. Otherwise, I wish you well on your excellent mission of increasing the manufacturing of relevant US military products at scale and in time enough.\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Respectfully,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Michael</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Michael Piasecki</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">President</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">DPI UAV Systems</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">600 W. 2<sup>nd</sup> St., Essington, PA 19029</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Office: (610) 521-6115 x 202</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Mobile: (215) 439-2036</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"http://www.dpiuav.com/\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#0563C1\">www.dpiuav.com</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://youtu.be/4ihY-IiAfXI\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#0563C1\">https://youtu.be/4ihY-IiAfXI</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\">Extending Man\'s Reach with Unmanned Helicopters</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060\"><img border=\"0\" width=\"222\" height=\"70\" style=\"width:2.3125in;height:.7291in\" id=\"_x0000_i1027\" src=\"file://private/var/mobile/Containers/Shared/AppGroup/A5EA8206-7AD4-4CB7-B85D-F604D42E26CF/Data/Local2/Attachments/900/image003.jpg@01DC4F22.2625DC10\" alt=\"DPI-logo-4-April28-blue-full\"></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">This is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential,\r\n proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments\r\n from your computer. Your cooperation is appreciated.</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Rick,\r\n\r\nNot a problem sir, I have already sent the updated meeting time. Looking forward to Thursday morning.\r\n\r\nBarry Phillips\r\nEngineering Manager\r\nCell: 484-459-7997\r\nDPI UAV Systems\r\n600 West 2nd St.\r\nEssington PA 19029\r\n\r\nExtending Man\'s Reach with Unmanned Helicopters\r\n[DPI-logo-4-April28-blue-full]\r\n\r\nThis is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is appreciated.\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, November 18, 2025 9:15 AM\r\nTo: Barry Phillips <barry@dpiuav.com>\r\nCc: Michael Piasecki <mike@dpiuav.com>; Chuck Wythe <chuckw@dpiuav.com>; Joseph Pawelczyk <joe@dpiuav.com>\r\nSubject: Re: DPI Introduction\r\n\r\nHey sorry guys.\r\nWe’ve had some issues and I had to adjust schedule.\r\nI missed this one.\r\nCan we try again Thursday morning?\r\nMy apologies,\r\nRick\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:image002.jpg@01DC58CE.73B98E80]\r\nmavrix1.com<http://mavrix1.com/>\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.\r\n\r\n\r\nOn November 12, 2025 at 9:03:45 AM, Barry Phillips (barry@dpiuav.com<mailto:barry@dpiuav.com>) wrote:\r\nDPI’s introduction and discussion about our product line.\r\n\r\nChanging the date to the following Tuesday on the 18th per Rick’s request to deconflict schedules.\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://gov.teams.microsoft.us/l/meetup-join/19%3agcch%3ameeting_648a7638fb1442c78154430401863565%40thread.v2/0?context=%7b%22Tid%22%3a%221c84fc53-749d-4fba-8afb-153d00e6dde0%22%2c%22Oid%22%3a%221efc1998-d3df-4ff0-8a4d-837f245fe19a%22%7d>\r\nMeeting ID: 992 928 332 67\r\nPasscode: cA2dP369\r\n________________________________\r\nFor organizers: Meeting options<https://gov.teams.microsoft.us/meetingOptions/?organizerId=1efc1998-d3df-4ff0-8a4d-837f245fe19a&tenantId=1c84fc53-749d-4fba-8afb-153d00e6dde0&threadId=19_gcch_meeting_648a7638fb1442c78154430401863565@thread.v2&messageId=0&language=en-US>\r\n________________________________________________________________________________\r\n\r\n\r\n_____________________________________________\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Thursday, November 6, 2025 2:49 PM\r\nTo: Barry Phillips <barry@dpiuav.com<mailto:barry@dpiuav.com>>\r\nCc: Chuck Wythe <chuckw@dpiuav.com<mailto:chuckw@dpiuav.com>>; Joseph Pawelczyk <joe@dpiuav.com<mailto:joe@dpiuav.com>>; Michael Piasecki <mike@dpiuav.com<mailto:mike@dpiuav.com>>\r\nSubject: RE: Dragonfly Pictures, Inc.\r\n\r\nHi Barry!\r\nYes that would be fine.\r\nPlease send an invite!\r\nRick\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[X]\r\nmavrix1.com<http://mavrix1.com/>\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.\r\n\r\n\r\nOn November 6, 2025 at 1:36:12 PM, Barry Phillips (barry@dpiuav.com<mailto:barry@dpiuav.com>) wrote:\r\nMr. Mislan,\r\n\r\nI am responding on behalf of Mr. Piasecki, would you be available for a meeting with DPI at 9am Thursday morning NOV 13th, 2025?\r\n\r\nBarry Phillips\r\nEngineering Manager\r\nCell: 484-459-7997\r\nDPI UAV Systems\r\n600 West 2nd St.\r\nEssington PA 19029\r\n\r\nExtending Man\'s Reach with Unmanned Helicopters\r\n[DPI-logo-4-April28-blue-full]\r\n\r\nThis is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is appreciated.\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Wednesday, November 5, 2025 5:24 PM\r\nTo: Michael Piasecki <mike@dpiuav.com<mailto:mike@dpiuav.com>>\r\nSubject: Re: Dragonfly Pictures, Inc.\r\n\r\nHi Michael,\r\nYes completely remember you.\r\nWant to schedule something for next week?\r\nTuesday or Thursday mornings are best for me.\r\nLet me know if you have a time in mind.\r\nThanks!\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[X]\r\nhttps://mavrix1.com<https://mavrix1.com/>\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\nOn November 5, 2025 at 1:19:51 PM, Michael Piasecki (mike@dpiuav.com<mailto:mike@dpiuav.com>) wrote:\r\nDear Rick,\r\n\r\nWe met at the Army Marketplace event in Huntsville a while back. I drove you to the airport. If you wanted us to brief you on our portion of the market, we can do that. Otherwise, I wish you well on your excellent mission of increasing the manufacturing of relevant US military products at scale and in time enough.\r\n\r\nRespectfully,\r\nMichael\r\n\r\n\r\nMichael Piasecki\r\nPresident\r\nDPI UAV Systems\r\n600 W. 2nd St., Essington, PA 19029\r\nOffice: (610) 521-6115 x 202\r\nMobile: (215) 439-2036\r\nwww.dpiuav.com<http://www.dpiuav.com/>\r\nhttps://youtu.be/4ihY-IiAfXI\r\n\r\n\r\nExtending Man\'s Reach with Unmanned Helicopters\r\n[DPI-logo-4-April28-blue-full]\r\n\r\nThis is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is appreciated.\r\n\r\n',0,0,0,0,0,0,'2025-11-19 02:01:06','2025-12-09 18:52:11','2025-12-09 18:52:11','2025-12-09 18:52:11',NULL,NULL,NULL),
(154,4,'<etPan.691db9f1.67be0bd8.109c9@rit.edu>',NULL,NULL,'Testing Email','rmislan@saunders.rit.edu','Rick Mislan','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style>body{font-family:Helvetica,Arial;font-size:13px}</style>\r\n</head>\r\n<body>\r\n<div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">\r\nYou Good?</div>\r\n<br>\r\n<div>\r\n<title></title>\r\n<br>\r\n<div><span style=\"font-family: Helvetica, Arial;\">Rick Mislan, PhD,&nbsp;</span>\r\n<div style=\"font-family: Helvetica, Arial;\">Founder, CTO</div>\r\n<div style=\"font-family: Helvetica, Arial;\"><img class=\"composer_internal_attach\" src=\"data:application/octet-stream;base64,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\" ?=\"\" style=\"max-width: 99%;\"><br>\r\n</div>\r\n<div style=\"font-family: Helvetica, Arial;\"><a href=\"http://mavrix1.com/\">mavrix1.com</a></div>\r\n</div>\r\n<div><br>\r\n</div>\r\n</div>\r\n<div class=\"bloop_sign\" id=\"bloop_sign_1763555801325017088\">\r\n<div>Thanks,</div>\r\n<div>Rick</div>\r\n<div><br>\r\n</div>\r\n<div id=\"bloop_customfont\" style=\"caret-color: rgb(255, 255, 255); font-family: Helvetica, Arial; margin: 0px;\">\r\nRichard P. Mislan, PhD (COLA ’91, Army ROTC ’91)&nbsp;&nbsp;&nbsp;<br>\r\n</div>\r\n<div><span style=\"caret-color: rgb(255, 255, 255); font-family: Helvetica, Arial;\">U.S. Army Veteran, Electronic Warfare Officer</span>&nbsp; &nbsp;</div>\r\n<div>www.Mislan.com</div>\r\n<div>Rochester Institute of Technology</div>\r\n<div>Senior Lecturer, MIS, Marketing &amp; Analytics</div>\r\n<div>Saunders College of Business</div>\r\n<div>Saunders.RIT.edu</div>\r\n<div>Creative Director, Cyber Range &amp; Training Center</div>\r\n<div>ESL Global Cybersecurity Institute</div>\r\n<div>Cyber.RIT.edu&nbsp;</div>\r\n<div>World’s Largest KerPlunk</div>\r\n<div>http://kerplunk.rit.edu/</div>\r\n<div><br>\r\n</div>\r\n<div>https://www.linkedin.com/in/rmislan/ &nbsp;</div>\r\n<div><b style=\"caret-color: rgb(32, 31, 30); color: rgb(32, 31, 30); font-family: Arial; font-size: 14px; orphans: 2; widows: 2;\"><i><img src=\"cid:1C4FCCD7-AC70-4480-A305-EE9B03FD6A79\" ?=\"\" width=\"185\" height=\"185\" loadstarttime=\"1658692009164\" style=\"border: 0px; font-family: inherit; font-size: inherit; font-style: inherit; font-variant-caps: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline; width: 185px; height: 185px;\"></i></b></div>\r\n<div>RITchieFindsHisStripes.com</div>\r\n<div>Please help me find my stripes!</div>\r\n<div><b style=\"caret-color: rgb(32, 31, 30); color: rgb(32, 31, 30); font-family: Arial; font-size: 14px; orphans: 2; widows: 2;\"><i><img data-imagetype=\"DataUri\" src=\"cid:B217A68D-936C-474C-B0C3-B3349C3CC4AA\" ?=\"\" loadstarttime=\"1658692009170\" style=\"border: 0px; font-family: inherit; font-size: inherit; font-style: inherit; font-variant-caps: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;\"></i></b></div>\r\n<div><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div>RIT | Rochester Institute of Technology</div>\r\n<div>CONFIDENTIALITY NOTICE: The contents of this email message and any attachments are intended solely for the addressee(s) and may contain confidential and/or privileged information and may be legally protected from disclosure. If you are not the intended\r\n recipient of this message or their agent, or if this message has been addressed to you in error, please immediately alert the sender by reply email and then delete this message and any attachments. If you are not the intended recipient, you are hereby notified\r\n that any use, dissemination, copying, or storage of this message or its attachments is strictly prohibited.</div>\r\n</div>\r\n</body>\r\n</html>\r\n','You Good?\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[X]\r\nmavrix1.com<http://mavrix1.com/>\r\n\r\nThanks,\r\nRick\r\n\r\nRichard P. Mislan, PhD (COLA ’91, Army ROTC ’91)\r\nU.S. Army Veteran, Electronic Warfare Officer\r\nwww.Mislan.com\r\nRochester Institute of Technology\r\nSenior Lecturer, MIS, Marketing & Analytics\r\nSaunders College of Business\r\nSaunders.RIT.edu\r\nCreative Director, Cyber Range & Training Center\r\nESL Global Cybersecurity Institute\r\nCyber.RIT.edu\r\nWorld’s Largest KerPlunk\r\nhttp://kerplunk.rit.edu/\r\n\r\nhttps://www.linkedin.com/in/rmislan/\r\n[cid:1C4FCCD7-AC70-4480-A305-EE9B03FD6A79]\r\nRITchieFindsHisStripes.com\r\nPlease help me find my stripes!\r\n[cid:B217A68D-936C-474C-B0C3-B3349C3CC4AA]\r\n\r\n\r\n\r\nRIT | Rochester Institute of Technology\r\nCONFIDENTIALITY NOTICE: The contents of this email message and any attachments are intended solely for the addressee(s) and may contain confidential and/or privileged information and may be legally protected from disclosure. If you are not the intended recipient of this message or their agent, or if this message has been addressed to you in error, please immediately alert the sender by reply email and then delete this message and any attachments. If you are not the intended recipient, you are hereby notified that any use, dissemination, copying, or storage of this message or its attachments is strictly prohibited.\r\n',0,0,0,0,0,0,'2025-11-19 12:37:05','2025-12-09 18:52:12','2025-12-09 18:52:12','2025-12-09 18:52:12',NULL,NULL,NULL),
(155,4,' <019a9c4a-5247-770f-a8d6-9b89dbf6bdd6@personalizedsalesagents.com>',NULL,NULL,'Re: Mavrix sales','m.hayes@personalizedsalesagents.com','Mason Hayes','Hi,\r\n\r\nJust checking if you had a chance to think about SalesCloser.\r\n\r\nIt could really simplify how your team handles client calls.\r\n\r\nWould you be open to a quick chat this week? \r\n\r\nOn Mon, November 3, 2025 12:50 PM, Mason Hayes <m.hayes@personalizedsalesagents.com>\r\n[m.hayes@personalizedsalesagents.com]> wrote:\r\n\r\n> Hi,\r\n> \r\n> I came across Mavrix1 and noticed your focus on precision manufacturing and American autonomy. It seems like your team is committed to keeping operations efficient and quality driven.\r\n> \r\n> Many manufacturing teams are seeing great results using AI agents to manage client calls and scheduling without adding extra staff. SalesCloser helps automate lead engagement and customer communication so your team can focus on production.\r\n> \r\n> Would it make sense to explore how this could support your client communication process?\r\n> \r\n> \r\n> \r\n> Mason\r\n> 422 Richards Street, Ste 170, Vancouver, BC V6B 2Z4\r\n> P.S. Please let me know if you don\'t want to hear from me again\r\n>\r\n','Hi,\r\n\r\nJust checking if you had a chance to think about SalesCloser.\r\n\r\nIt could really simplify how your team handles client calls.\r\n\r\nWould you be open to a quick chat this week? \r\n\r\nOn Mon, November 3, 2025 12:50 PM, Mason Hayes <m.hayes@personalizedsalesagents.com>\r\n[m.hayes@personalizedsalesagents.com]> wrote:\r\n\r\n> Hi,\r\n> \r\n> I came across Mavrix1 and noticed your focus on precision manufacturing and American autonomy. It seems like your team is committed to keeping operations efficient and quality driven.\r\n> \r\n> Many manufacturing teams are seeing great results using AI agents to manage client calls and scheduling without adding extra staff. SalesCloser helps automate lead engagement and customer communication so your team can focus on production.\r\n> \r\n> Would it make sense to explore how this could support your client communication process?\r\n> \r\n> \r\n> \r\n> Mason\r\n> 422 Richards Street, Ste 170, Vancouver, BC V6B 2Z4\r\n> P.S. Please let me know if you don\'t want to hear from me again\r\n>\r\n',0,0,0,0,0,0,'2025-11-19 13:25:07','2025-12-09 18:52:12','2025-12-09 18:52:12','2025-12-09 18:52:12',NULL,NULL,NULL),
(156,4,'<19c2cf6467543469d56d8ecd0181e5d9@mavrix.one>',NULL,NULL,'test','john@mavrix.one','john@mavrix.one','test from PC\r\n','test from PC\r\n',0,0,0,0,0,0,'2025-11-19 13:55:34','2025-12-09 18:52:12','2025-12-09 18:52:12','2025-12-09 18:52:12',NULL,NULL,NULL),
(157,4,' <PH2P110MB0796213091776D8005378114D0D7A@PH2P110MB0796.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'RE: DPI Introduction','barry@dpiuav.com','Barry Phillips','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Segoe UI\";\r\n	panose-1:2 11 5 2 4 2 4 2 2 3;}\r\n@font-face\r\n	{font-family:\"Freestyle Script\";\r\n	panose-1:3 8 4 2 3 2 5 11 4 4;}\r\n@font-face\r\n	{font-family:\"Arial Nova Light\";}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.gmailquote, li.gmailquote, div.gmailquote\r\n	{mso-style-name:gmail_quote;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.me-email-text\r\n	{mso-style-name:me-email-text;}\r\nspan.me-email-text-secondary\r\n	{mso-style-name:me-email-text-secondary;}\r\np.gmailquote0, li.gmailquote0, div.gmailquote0\r\n	{mso-style-name:gmailquote;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmailon;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle23\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Not a problem.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:20.0pt;font-family:&quot;Freestyle Script&quot;;mso-ligatures:standardcontextual\">Barry Phillips<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Engineering Manager<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Cell: 484-459-7997<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">DPI UAV Systems<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">600 West 2<sup>nd</sup> St.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Essington PA 19029<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\">Extending Man\'s Reach with Unmanned Helicopters</span></b><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;color:#002060\"><img width=\"222\" height=\"70\" style=\"width:2.3125in;height:.7291in\" id=\"Picture_x0020_1536741603\" src=\"cid:image001.jpg@01DC5934.56CB0770\" alt=\"DPI-logo-4-April28-blue-full\"></span><span style=\"font-size:11.0pt;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">This is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged\r\n information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your\r\n cooperation is appreciated.<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, November 19, 2025 7:35 AM<br>\r\n<b>To:</b> Barry Phillips &lt;barry@dpiuav.com&gt;<br>\r\n<b>Subject:</b> Re: DPI Introduction<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Can you resend the new invite. &nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\">We also had an email issue this week. &nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">It may have been bounced. &nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">Thanks!<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img id=\"_x0000_i1031\" src=\"data:application/octet-stream;base64,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\"></span><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"http://mavrix1.com/\">mavrix1.com</a><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"gmailquote\"><span style=\"color:black\">On November 12, 2025 at 9:03:45</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"color:black\">AM, Barry Phillips (<a href=\"mailto:barry@dpiuav.com\">barry@dpiuav.com</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">DPI’s introduction and discussion about our product line.</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Changing the date to the following Tuesday on the 18<sup>th</sup> per Rick’s request to deconflict schedules.</span><o:p></o:p></p>\r\n<div>\r\n<div>\r\n<div style=\"margin-bottom:.25in;overflow:hidden\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">________________________________________________________________________________</span><o:p></o:p></p>\r\n</div>\r\n<div style=\"margin-bottom:9.0pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span class=\"me-email-text\"><b><span style=\"font-size:18.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">Microsoft Teams</span></b></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<a href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\"><span style=\"font-size:10.5pt;color:#5B5FC7\">Need help?</span></a>\r\n</span><o:p></o:p></p>\r\n</div>\r\n<div style=\"margin-bottom:4.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\"><a href=\"https://gov.teams.microsoft.us/l/meetup-join/19%3agcch%3ameeting_648a7638fb1442c78154430401863565%40thread.v2/0?context=%7b%22Tid%22%3a%221c84fc53-749d-4fba-8afb-153d00e6dde0%22%2c%22Oid%22%3a%221efc1998-d3df-4ff0-8a4d-837f245fe19a%22%7d\" target=\"_blank\" title=\"Meeting join link\"><b><span style=\"font-size:15.0pt;color:#5B5FC7\">Join\r\n the meeting now</span></b></a> </span><o:p></o:p></p>\r\n</div>\r\n<div style=\"margin-bottom:4.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">Meeting ID:\r\n</span></span><span class=\"me-email-text\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">992 928 332 67</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n</span><o:p></o:p></p>\r\n</div>\r\n<div style=\"margin-bottom:24.0pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">Passcode:\r\n</span></span><span class=\"me-email-text\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">cA2dP369</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n</span><o:p></o:p></p>\r\n</div>\r\n<div style=\"margin-bottom:9.0pt\">\r\n<div class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<hr size=\"1\" width=\"100%\" align=\"center\">\r\n</span></div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">For organizers:\r\n</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\"><a href=\"https://gov.teams.microsoft.us/meetingOptions/?organizerId=1efc1998-d3df-4ff0-8a4d-837f245fe19a&amp;tenantId=1c84fc53-749d-4fba-8afb-153d00e6dde0&amp;threadId=19_gcch_meeting_648a7638fb1442c78154430401863565@thread.v2&amp;messageId=0&amp;language=en-US\" target=\"_blank\"><span style=\"font-size:10.5pt;color:#5B5FC7\">Meeting\r\n options</span></a> </span><o:p></o:p></p>\r\n</div>\r\n<div style=\"margin-bottom:.25in;overflow:hidden\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">________________________________________________________________________________</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">_____________________________________________<br>\r\n<b>From:</b> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; <br>\r\n<b>Sent:</b> Thursday, November 6, 2025 2:49 PM<br>\r\n<b>To:</b> Barry Phillips &lt;<a href=\"mailto:barry@dpiuav.com\">barry@dpiuav.com</a>&gt;<br>\r\n<b>Cc:</b> Chuck Wythe &lt;<a href=\"mailto:chuckw@dpiuav.com\">chuckw@dpiuav.com</a>&gt;; Joseph Pawelczyk &lt;<a href=\"mailto:joe@dpiuav.com\">joe@dpiuav.com</a>&gt;; Michael Piasecki &lt;<a href=\"mailto:mike@dpiuav.com\">mike@dpiuav.com</a>&gt;<br>\r\n<b>Subject:</b> RE: Dragonfly Pictures, Inc.</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Hi Barry!<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Yes that would be fine. &nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Please send an invite!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:12.0pt\">Rick<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"144\" height=\"32\" style=\"width:1.5in;height:.3333in\" id=\"_x0000_i1030\" src=\"file://private/var/mobile/Containers/Shared/AppGroup/A5EA8206-7AD4-4CB7-B85D-F604D42E26CF/Data/Local2/Attachments/910/image001.jpg@01DC4F2C.FB6CF750\"></span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"http://mavrix1.com/\">mavrix1.com</a></span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">CONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient. &nbsp;If you are not the intended recipient, you may not copy, disclose, or distribute\r\n this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"gmailquote0\"><span style=\"color:black\">On November 6, 2025 at 1:36:12</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"color:black\">PM, Barry Phillips (<a href=\"mailto:barry@dpiuav.com\">barry@dpiuav.com</a>) wrote:</span><o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Mr. Mislan,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">I am responding on behalf of Mr. Piasecki, would you be available for a meeting with DPI at 9am Thursday morning NOV 13<sup>th</sup>, 2025?</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:20.0pt;font-family:&quot;Freestyle Script&quot;;mso-ligatures:standardcontextual\">Barry Phillips</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Engineering Manager</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Cell: 484-459-7997</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">DPI UAV Systems</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">600 West 2<sup>nd</sup> St.</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Essington PA 19029</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\">Extending Man\'s Reach with Unmanned Helicopters</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:#002060\"><img border=\"0\" width=\"222\" height=\"70\" style=\"width:2.3125in;height:.7291in\" id=\"_x0000_i1029\" src=\"file://private/var/mobile/Containers/Shared/AppGroup/A5EA8206-7AD4-4CB7-B85D-F604D42E26CF/Data/Local2/Attachments/900/image001.jpg@01DC4F22.2625DC10\" alt=\"DPI-logo-4-April28-blue-full\"></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;mso-ligatures:standardcontextual\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:9.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">This is an e-mail from DPI UAV Systems. It is for the intended recipient\r\n only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete\r\n the message and any attachments from your computer. Your cooperation is appreciated.</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;</span><a href=\"mailto:rick@mavrix.one\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">rick@mavrix.one</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, November 5, 2025 5:24 PM<br>\r\n<b>To:</b> Michael Piasecki &lt;</span><a href=\"mailto:mike@dpiuav.com\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">mike@dpiuav.com</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;<br>\r\n<b>Subject:</b> Re: Dragonfly Pictures, Inc.</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Michael,</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Yes completely remember you.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Want to schedule something for next week?</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Tuesday or Thursday mornings are best for me.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Let me know if you have a time in mind.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks!</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"_x0000_i1028\" src=\"file://private/var/mobile/Containers/Shared/AppGroup/A5EA8206-7AD4-4CB7-B85D-F604D42E26CF/Data/Local2/Attachments/900/image002.png@01DC4F22.2625DC10\"></span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://mavrix1.com/\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">https://mavrix1.com</span></a><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">CONFIDENTIALITY NOTICE</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI)\r\n protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of\r\n the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"airmailon\">On November 5, 2025 at 1:19:51<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM, Michael Piasecki (<a href=\"mailto:mike@dpiuav.com\">mike@dpiuav.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Dear Rick,\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">We met at the Army Marketplace event in Huntsville a while back. I drove you to the airport. If you wanted us to brief you on our portion of the market,\r\n we can do that. Otherwise, I wish you well on your excellent mission of increasing the manufacturing of relevant US military products at scale and in time enough.\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Respectfully,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Michael</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Michael Piasecki</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">President</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">DPI UAV Systems</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">600 W. 2<sup>nd</sup> St., Essington, PA 19029</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Office: (610) 521-6115 x 202</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Mobile: (215) 439-2036</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"http://www.dpiuav.com/\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#0563C1\">www.dpiuav.com</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://youtu.be/4ihY-IiAfXI\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#0563C1\">https://youtu.be/4ihY-IiAfXI</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\">Extending Man\'s Reach with Unmanned Helicopters</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060\"><img border=\"0\" width=\"222\" height=\"70\" style=\"width:2.3125in;height:.7291in\" id=\"_x0000_i1027\" src=\"file://private/var/mobile/Containers/Shared/AppGroup/A5EA8206-7AD4-4CB7-B85D-F604D42E26CF/Data/Local2/Attachments/900/image003.jpg@01DC4F22.2625DC10\" alt=\"DPI-logo-4-April28-blue-full\"></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">This is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential,\r\n proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments\r\n from your computer. Your cooperation is appreciated.</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Not a problem.\r\n\r\nBarry Phillips\r\nEngineering Manager\r\nCell: 484-459-7997\r\nDPI UAV Systems\r\n600 West 2nd St.\r\nEssington PA 19029\r\n\r\nExtending Man\'s Reach with Unmanned Helicopters\r\n[DPI-logo-4-April28-blue-full]\r\n\r\nThis is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is appreciated.\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Wednesday, November 19, 2025 7:35 AM\r\nTo: Barry Phillips <barry@dpiuav.com>\r\nSubject: Re: DPI Introduction\r\n\r\nCan you resend the new invite.\r\nWe also had an email issue this week.\r\nIt may have been bounced.\r\nThanks!\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[X]\r\nmavrix1.com<http://mavrix1.com/>\r\n\r\n\r\nOn November 12, 2025 at 9:03:45 AM, Barry Phillips (barry@dpiuav.com<mailto:barry@dpiuav.com>) wrote:\r\nDPI’s introduction and discussion about our product line.\r\n\r\nChanging the date to the following Tuesday on the 18th per Rick’s request to deconflict schedules.\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://gov.teams.microsoft.us/l/meetup-join/19%3agcch%3ameeting_648a7638fb1442c78154430401863565%40thread.v2/0?context=%7b%22Tid%22%3a%221c84fc53-749d-4fba-8afb-153d00e6dde0%22%2c%22Oid%22%3a%221efc1998-d3df-4ff0-8a4d-837f245fe19a%22%7d>\r\nMeeting ID: 992 928 332 67\r\nPasscode: cA2dP369\r\n________________________________\r\nFor organizers: Meeting options<https://gov.teams.microsoft.us/meetingOptions/?organizerId=1efc1998-d3df-4ff0-8a4d-837f245fe19a&tenantId=1c84fc53-749d-4fba-8afb-153d00e6dde0&threadId=19_gcch_meeting_648a7638fb1442c78154430401863565@thread.v2&messageId=0&language=en-US>\r\n________________________________________________________________________________\r\n\r\n\r\n_____________________________________________\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Thursday, November 6, 2025 2:49 PM\r\nTo: Barry Phillips <barry@dpiuav.com<mailto:barry@dpiuav.com>>\r\nCc: Chuck Wythe <chuckw@dpiuav.com<mailto:chuckw@dpiuav.com>>; Joseph Pawelczyk <joe@dpiuav.com<mailto:joe@dpiuav.com>>; Michael Piasecki <mike@dpiuav.com<mailto:mike@dpiuav.com>>\r\nSubject: RE: Dragonfly Pictures, Inc.\r\n\r\nHi Barry!\r\nYes that would be fine.\r\nPlease send an invite!\r\nRick\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[X]\r\nmavrix1.com<http://mavrix1.com/>\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.\r\n\r\n\r\nOn November 6, 2025 at 1:36:12 PM, Barry Phillips (barry@dpiuav.com<mailto:barry@dpiuav.com>) wrote:\r\nMr. Mislan,\r\n\r\nI am responding on behalf of Mr. Piasecki, would you be available for a meeting with DPI at 9am Thursday morning NOV 13th, 2025?\r\n\r\nBarry Phillips\r\nEngineering Manager\r\nCell: 484-459-7997\r\nDPI UAV Systems\r\n600 West 2nd St.\r\nEssington PA 19029\r\n\r\nExtending Man\'s Reach with Unmanned Helicopters\r\n[DPI-logo-4-April28-blue-full]\r\n\r\nThis is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is appreciated.\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Wednesday, November 5, 2025 5:24 PM\r\nTo: Michael Piasecki <mike@dpiuav.com<mailto:mike@dpiuav.com>>\r\nSubject: Re: Dragonfly Pictures, Inc.\r\n\r\nHi Michael,\r\nYes completely remember you.\r\nWant to schedule something for next week?\r\nTuesday or Thursday mornings are best for me.\r\nLet me know if you have a time in mind.\r\nThanks!\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[X]\r\nhttps://mavrix1.com<https://mavrix1.com/>\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\nOn November 5, 2025 at 1:19:51 PM, Michael Piasecki (mike@dpiuav.com<mailto:mike@dpiuav.com>) wrote:\r\nDear Rick,\r\n\r\nWe met at the Army Marketplace event in Huntsville a while back. I drove you to the airport. If you wanted us to brief you on our portion of the market, we can do that. Otherwise, I wish you well on your excellent mission of increasing the manufacturing of relevant US military products at scale and in time enough.\r\n\r\nRespectfully,\r\nMichael\r\n\r\n\r\nMichael Piasecki\r\nPresident\r\nDPI UAV Systems\r\n600 W. 2nd St., Essington, PA 19029\r\nOffice: (610) 521-6115 x 202\r\nMobile: (215) 439-2036\r\nwww.dpiuav.com<http://www.dpiuav.com/>\r\nhttps://youtu.be/4ihY-IiAfXI\r\n\r\n\r\nExtending Man\'s Reach with Unmanned Helicopters\r\n[DPI-logo-4-April28-blue-full]\r\n\r\nThis is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is appreciated.\r\n\r\n',0,0,0,0,0,0,'2025-11-19 14:10:26','2025-12-09 18:52:13','2025-12-09 18:52:13','2025-12-09 18:52:13',NULL,NULL,NULL),
(158,4,' <PH2P110MB0796A1F00A76645185E8960ED0D7A@PH2P110MB0796.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'FW: DPI Introduction','barry@dpiuav.com','Barry Phillips','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Segoe UI\";\r\n	panose-1:2 11 5 2 4 2 4 2 2 3;}\r\n@font-face\r\n	{font-family:\"Freestyle Script\";\r\n	panose-1:3 8 4 2 3 2 5 11 4 4;}\r\n@font-face\r\n	{font-family:\"Arial Nova Light\";}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.gmailquote, li.gmailquote, div.gmailquote\r\n	{mso-style-name:gmail_quote;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmailon;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.me-email-text\r\n	{mso-style-name:me-email-text;}\r\nspan.me-email-text-secondary\r\n	{mso-style-name:me-email-text-secondary;}\r\nspan.EmailStyle22\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">-----Original Appointment-----<br>\r\n<b>From:</b> Barry Phillips <br>\r\n<b>Sent:</b> Thursday, November 6, 2025 2:53 PM<br>\r\n<b>To:</b> Barry Phillips; Rick<br>\r\n<b>Cc:</b> Chuck Wythe; Joseph Pawelczyk; Michael Piasecki; Jeff Field<br>\r\n<b>Subject:</b> DPI Introduction<br>\r\n<b>When:</b> Thursday, November 20, 2025 9:00 AM-10:00 AM (UTC-05:00) Eastern Time (US &amp; Canada).<br>\r\n<b>Where:</b> Microsoft Teams Meeting<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">DPI’s introduction and discussion about our product line.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Changing the date to the following Tuesday on the 18<sup>th</sup> per Rick’s request to deconflict schedules.<o:p></o:p></span></p>\r\n<div>\r\n<div>\r\n<div style=\"margin-bottom:.25in;overflow:hidden\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">________________________________________________________________________________<o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:9.0pt\">\r\n<p class=\"MsoNormal\"><span class=\"me-email-text\"><b><span style=\"font-size:18.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">Microsoft Teams</span></b></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<a href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\"><span style=\"font-size:10.5pt;color:#5B5FC7\">Need help?</span></a>\r\n<o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:4.5pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\"><a href=\"https://gov.teams.microsoft.us/l/meetup-join/19%3agcch%3ameeting_648a7638fb1442c78154430401863565%40thread.v2/0?context=%7b%22Tid%22%3a%221c84fc53-749d-4fba-8afb-153d00e6dde0%22%2c%22Oid%22%3a%221efc1998-d3df-4ff0-8a4d-837f245fe19a%22%7d\" target=\"_blank\" title=\"Meeting join link\"><b><span style=\"font-size:15.0pt;color:#5B5FC7\">Join\r\n the meeting now</span></b></a> <o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:4.5pt\">\r\n<p class=\"MsoNormal\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">Meeting ID:\r\n</span></span><span class=\"me-email-text\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">992 928 332 67</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:24.0pt\">\r\n<p class=\"MsoNormal\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">Passcode:\r\n</span></span><span class=\"me-email-text\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">cA2dP369</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:9.0pt\">\r\n<div class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<hr size=\"1\" width=\"100%\" align=\"center\">\r\n</span></div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">For organizers:\r\n</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\"><a href=\"https://gov.teams.microsoft.us/meetingOptions/?organizerId=1efc1998-d3df-4ff0-8a4d-837f245fe19a&amp;tenantId=1c84fc53-749d-4fba-8afb-153d00e6dde0&amp;threadId=19_gcch_meeting_648a7638fb1442c78154430401863565@thread.v2&amp;messageId=0&amp;language=en-US\" target=\"_blank\"><span style=\"font-size:10.5pt;color:#5B5FC7\">Meeting\r\n options</span></a> <o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:.25in;overflow:hidden\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">________________________________________________________________________________<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">_____________________________________________<br>\r\n<b>From:</b> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; <br>\r\n<b>Sent:</b> Thursday, November 6, 2025 2:49 PM<br>\r\n<b>To:</b> Barry Phillips &lt;<a href=\"mailto:barry@dpiuav.com\">barry@dpiuav.com</a>&gt;<br>\r\n<b>Cc:</b> Chuck Wythe &lt;<a href=\"mailto:chuckw@dpiuav.com\">chuckw@dpiuav.com</a>&gt;; Joseph Pawelczyk &lt;<a href=\"mailto:joe@dpiuav.com\">joe@dpiuav.com</a>&gt;; Michael Piasecki &lt;<a href=\"mailto:mike@dpiuav.com\">mike@dpiuav.com</a>&gt;<br>\r\n<b>Subject:</b> RE: Dragonfly Pictures, Inc.<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Hi Barry!<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\">Yes that would be fine. &nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Please send an invite!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">Rick<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"144\" height=\"32\" style=\"width:1.5in;height:.3333in\" id=\"Picture_x0020_1\" src=\"cid:image001.jpg@01DC4F2C.FB6CF750\"></span><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"http://mavrix1.com/\">mavrix1.com</a><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">CONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient. &nbsp;If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may\r\n be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"gmailquote\"><span style=\"color:black\">On November 6, 2025 at 1:36:12</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"color:black\">PM, Barry Phillips (<a href=\"mailto:barry@dpiuav.com\">barry@dpiuav.com</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Mr. Mislan,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">I am responding on behalf of Mr. Piasecki, would you be available for a meeting with DPI at 9am Thursday morning NOV 13<sup>th</sup>, 2025?</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:20.0pt;font-family:&quot;Freestyle Script&quot;;mso-ligatures:standardcontextual\">Barry Phillips</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Engineering Manager</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Cell: 484-459-7997</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">DPI UAV Systems</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">600 West 2<sup>nd</sup> St.</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Essington PA 19029</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\">Extending Man\'s Reach with Unmanned Helicopters</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:#002060\"><img border=\"0\" width=\"222\" height=\"70\" style=\"width:2.3125in;height:.7291in\" id=\"_x0000_i1028\" src=\"file://private/var/mobile/Containers/Shared/AppGroup/A5EA8206-7AD4-4CB7-B85D-F604D42E26CF/Data/Local2/Attachments/900/image001.jpg@01DC4F22.2625DC10\" alt=\"DPI-logo-4-April28-blue-full\"></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;mso-ligatures:standardcontextual\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:9.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">This is an e-mail from DPI UAV Systems. It is for the intended recipient\r\n only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete\r\n the message and any attachments from your computer. Your cooperation is appreciated.</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;</span><a href=\"mailto:rick@mavrix.one\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">rick@mavrix.one</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, November 5, 2025 5:24 PM<br>\r\n<b>To:</b> Michael Piasecki &lt;</span><a href=\"mailto:mike@dpiuav.com\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">mike@dpiuav.com</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;<br>\r\n<b>Subject:</b> Re: Dragonfly Pictures, Inc.</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Michael,</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Yes completely remember you.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Want to schedule something for next week?</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Tuesday or Thursday mornings are best for me.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Let me know if you have a time in mind.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks!</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"_x0000_i1027\" src=\"file://private/var/mobile/Containers/Shared/AppGroup/A5EA8206-7AD4-4CB7-B85D-F604D42E26CF/Data/Local2/Attachments/900/image002.png@01DC4F22.2625DC10\"></span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://mavrix1.com/\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">https://mavrix1.com</span></a><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">CONFIDENTIALITY NOTICE</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI)\r\n protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of\r\n the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"airmailon\">On November 5, 2025 at 1:19:51<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM, Michael Piasecki (<a href=\"mailto:mike@dpiuav.com\">mike@dpiuav.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Dear Rick,\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">We met at the Army Marketplace event in Huntsville a while back. I drove you to the airport. If you wanted us to brief you on our portion of the market,\r\n we can do that. Otherwise, I wish you well on your excellent mission of increasing the manufacturing of relevant US military products at scale and in time enough.\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Respectfully,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Michael</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Michael Piasecki</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">President</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">DPI UAV Systems</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">600 W. 2<sup>nd</sup> St., Essington, PA 19029</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Office: (610) 521-6115 x 202</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Mobile: (215) 439-2036</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"http://www.dpiuav.com/\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#0563C1\">www.dpiuav.com</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://youtu.be/4ihY-IiAfXI\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#0563C1\">https://youtu.be/4ihY-IiAfXI</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\">Extending Man\'s Reach with Unmanned Helicopters</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060\"><img border=\"0\" width=\"222\" height=\"70\" style=\"width:2.3125in;height:.7291in\" id=\"_x0000_i1026\" src=\"file://private/var/mobile/Containers/Shared/AppGroup/A5EA8206-7AD4-4CB7-B85D-F604D42E26CF/Data/Local2/Attachments/900/image003.jpg@01DC4F22.2625DC10\" alt=\"DPI-logo-4-April28-blue-full\"></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">This is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential,\r\n proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments\r\n from your computer. Your cooperation is appreciated.</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','\r\n\r\n-----Original Appointment-----\r\nFrom: Barry Phillips\r\nSent: Thursday, November 6, 2025 2:53 PM\r\nTo: Barry Phillips; Rick\r\nCc: Chuck Wythe; Joseph Pawelczyk; Michael Piasecki; Jeff Field\r\nSubject: DPI Introduction\r\nWhen: Thursday, November 20, 2025 9:00 AM-10:00 AM (UTC-05:00) Eastern Time (US & Canada).\r\nWhere: Microsoft Teams Meeting\r\n\r\nDPI’s introduction and discussion about our product line.\r\n\r\nChanging the date to the following Tuesday on the 18th per Rick’s request to deconflict schedules.\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://gov.teams.microsoft.us/l/meetup-join/19%3agcch%3ameeting_648a7638fb1442c78154430401863565%40thread.v2/0?context=%7b%22Tid%22%3a%221c84fc53-749d-4fba-8afb-153d00e6dde0%22%2c%22Oid%22%3a%221efc1998-d3df-4ff0-8a4d-837f245fe19a%22%7d>\r\nMeeting ID: 992 928 332 67\r\nPasscode: cA2dP369\r\n________________________________\r\nFor organizers: Meeting options<https://gov.teams.microsoft.us/meetingOptions/?organizerId=1efc1998-d3df-4ff0-8a4d-837f245fe19a&tenantId=1c84fc53-749d-4fba-8afb-153d00e6dde0&threadId=19_gcch_meeting_648a7638fb1442c78154430401863565@thread.v2&messageId=0&language=en-US>\r\n________________________________________________________________________________\r\n\r\n\r\n_____________________________________________\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Thursday, November 6, 2025 2:49 PM\r\nTo: Barry Phillips <barry@dpiuav.com<mailto:barry@dpiuav.com>>\r\nCc: Chuck Wythe <chuckw@dpiuav.com<mailto:chuckw@dpiuav.com>>; Joseph Pawelczyk <joe@dpiuav.com<mailto:joe@dpiuav.com>>; Michael Piasecki <mike@dpiuav.com<mailto:mike@dpiuav.com>>\r\nSubject: RE: Dragonfly Pictures, Inc.\r\n\r\nHi Barry!\r\nYes that would be fine.\r\nPlease send an invite!\r\nRick\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:image001.jpg@01DC4F2C.FB6CF750]\r\nmavrix1.com<http://mavrix1.com/>\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.\r\n\r\n\r\nOn November 6, 2025 at 1:36:12 PM, Barry Phillips (barry@dpiuav.com<mailto:barry@dpiuav.com>) wrote:\r\nMr. Mislan,\r\n\r\nI am responding on behalf of Mr. Piasecki, would you be available for a meeting with DPI at 9am Thursday morning NOV 13th, 2025?\r\n\r\nBarry Phillips\r\nEngineering Manager\r\nCell: 484-459-7997\r\nDPI UAV Systems\r\n600 West 2nd St.\r\nEssington PA 19029\r\n\r\nExtending Man\'s Reach with Unmanned Helicopters\r\n[DPI-logo-4-April28-blue-full]\r\n\r\nThis is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is appreciated.\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Wednesday, November 5, 2025 5:24 PM\r\nTo: Michael Piasecki <mike@dpiuav.com<mailto:mike@dpiuav.com>>\r\nSubject: Re: Dragonfly Pictures, Inc.\r\n\r\nHi Michael,\r\nYes completely remember you.\r\nWant to schedule something for next week?\r\nTuesday or Thursday mornings are best for me.\r\nLet me know if you have a time in mind.\r\nThanks!\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[X]\r\nhttps://mavrix1.com<https://mavrix1.com/>\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\nOn November 5, 2025 at 1:19:51 PM, Michael Piasecki (mike@dpiuav.com<mailto:mike@dpiuav.com>) wrote:\r\nDear Rick,\r\n\r\nWe met at the Army Marketplace event in Huntsville a while back. I drove you to the airport. If you wanted us to brief you on our portion of the market, we can do that. Otherwise, I wish you well on your excellent mission of increasing the manufacturing of relevant US military products at scale and in time enough.\r\n\r\nRespectfully,\r\nMichael\r\n\r\n\r\nMichael Piasecki\r\nPresident\r\nDPI UAV Systems\r\n600 W. 2nd St., Essington, PA 19029\r\nOffice: (610) 521-6115 x 202\r\nMobile: (215) 439-2036\r\nwww.dpiuav.com<http://www.dpiuav.com/>\r\nhttps://youtu.be/4ihY-IiAfXI\r\n\r\n\r\nExtending Man\'s Reach with Unmanned Helicopters\r\n[DPI-logo-4-April28-blue-full]\r\n\r\nThis is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is appreciated.\r\n\r\n',0,0,0,0,0,0,'2025-11-19 14:11:02','2025-12-09 18:52:13','2025-12-09 18:52:13','2025-12-09 18:52:13',NULL,NULL,NULL),
(160,4,'<PH7PR84MB1767DB3F30A5AA5D938DB70FFBA6A@PH7PR84MB1767.NAMPRD84.PROD.OUTLOOK.COM>',NULL,NULL,'DOD Opportunity-MJF 3D Print','gary.fudge@hp.com','\"Fudge, Gary\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Forma DJR Micro\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n@font-face\r\n	{font-family:\"Forma DJR Display\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.xairmailon, li.xairmailon, div.xairmailon\r\n	{mso-style-name:x_airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.xmsonormal, li.xmsonormal, div.xmsonormal\r\n	{mso-style-name:x_msonormal;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle23\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">There is need for a significant amount of parts to be printed on our equipment based on some recent DOD/government supply contracts that have been awarded and being awarded.&nbsp;\r\n<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">I know you mentioned getting up and running soon. &nbsp;And based on our conversations, this sounds like it may be right up your ally.&nbsp; Depending on your timing and how things turn out, we may be able to instantly fill some to all capacity of\r\n several machines.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Do you have some time to discuss in the next few days?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">3D Print - Enterprise Account Manager – US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">|</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black;mso-ligatures:standardcontextual\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_662089474\" src=\"cid:image001.png@01DC64F5.62255090\" alt=\"image001.png\"><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Fudge, Gary\r\n<br>\r\n<b>Sent:</b> Tuesday, December 2, 2025 4:59 PM<br>\r\n<b>To:</b> \'Rick\' &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> RE: HP MJF Printers<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">How are things progressing/when should we connect back?&nbsp; Last we talked you mentioned wanting to get some equipment about this time.&nbsp;\r\n<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Please advise<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">3D Print - Enterprise Account Manager – US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">|</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black;mso-ligatures:standardcontextual\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_535934039\" src=\"cid:image001.png@01DC64F5.62255090\" alt=\"image001.png\"></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Fudge, Gary\r\n<br>\r\n<b>Sent:</b> Monday, November 3, 2025 5:47 PM<br>\r\n<b>To:</b> \'Rick\' &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;<br>\r\n<b>Subject:</b> RE: HP MJF Printers<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Any questions on the site prep guide?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Also, please email me the physical address in FL so I can start getting you set up in our system.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Thanks<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">3D Print - Enterprise Account Manager – US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">|</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black;mso-ligatures:standardcontextual\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_877011165\" src=\"cid:image001.png@01DC64F5.62255090\" alt=\"image001.png\"></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Fudge, Gary\r\n<br>\r\n<b>Sent:</b> Friday, October 24, 2025 6:27 PM<br>\r\n<b>To:</b> \'Rick\' &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;<br>\r\n<b>Subject:</b> RE: HP MJF Printers<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Good catching up with you today.&nbsp; See attached site prep guide as requested.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Can you please email me your address now that you have the land secure so I can go ahead and get you into our system?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Please let me know if you have any questions or need any additional information.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Best Regards<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">3D Print - Enterprise Account Manager – US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">|</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black;mso-ligatures:standardcontextual\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_2\" src=\"cid:image001.png@01DC64F5.62255090\" alt=\"image001.png\"></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Friday, October 24, 2025 8:46 AM<br>\r\n<b>To:</b> Fudge, Gary &lt;<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>&gt;<br>\r\n<b>Subject:</b> Re: HP MJF Printers<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;color:red\">CAUTION: External Email\r\n</span></b><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">585.797.9473<br>\r\nSafe travels!<br>\r\nThanks,<br>\r\nRick <o:p></o:p></p>\r\n<p class=\"airmailon\">On October 24, 2025 at 08:56:44, Fudge, Gary (<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">I’m on a flight but should land around 10:30-10:45. &nbsp; Let me know of a good number to reach you and I can call then<o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\">\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div id=\"ms-outlook-mobile-signature\">\r\n<div>\r\n<p class=\"MsoNormal\">Gary Fudge<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">678-654-6734<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n<div class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">\r\n<hr size=\"1\" width=\"98%\" align=\"center\">\r\n</div>\r\n<div id=\"divRplyFwdMsg\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;<br>\r\n<b>Sent:</b> Friday, October 24, 2025 7:41:17 AM<br>\r\n<b>To:</b> Fudge, Gary &lt;<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>&gt;<br>\r\n<b>Subject:</b> Re: HP MJF Printers</span> <o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;color:red\">CAUTION: External Email\r\n</span></b><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">Hey Gary,<br>\r\nAre you available to day at 10a for a call?<br>\r\nTalking about power requirements for our facilities next week and need to start pulling together numbers.&nbsp;<br>\r\nOr, can you send me power requirements for the MJF Printers?<br>\r\nLet me know what works.<br>\r\nThanks!<br>\r\nRick <o:p></o:p></p>\r\n<p class=\"xairmailon\">On October 2, 2025 at 11:28:38, Fudge, Gary (<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"xmsonormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n<p class=\"xmsonormal\">Are you all ready to continue the conversation about our 3D Printers/3DP Services?&nbsp; If not, when should I check back with you?<o:p></o:p></p>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n<p class=\"xmsonormal\">Best Regards,<o:p></o:p></p>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"xmsonormal\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"xmsonormal\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager – US South\r\n</span><o:p></o:p></p>\r\n<p class=\"xmsonormal\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"xmsonormal\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><o:p></o:p></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"xmsonormal\" align=\"center\" style=\"text-align:center\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><o:p></o:p></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"xmsonormal\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"xmsonormal\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"_x0000_i1029\" src=\"cid:92845B48-0023-45F7-81C1-620B3C947B46\"></span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Hello Rick,\r\n\r\nThere is need for a significant amount of parts to be printed on our equipment based on some recent DOD/government supply contracts that have been awarded and being awarded.\r\n\r\nI know you mentioned getting up and running soon.  And based on our conversations, this sounds like it may be right up your ally.  Depending on your timing and how things turn out, we may be able to instantly fill some to all capacity of several machines.\r\n\r\nDo you have some time to discuss in the next few days?\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager – US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Fudge, Gary\r\nSent: Tuesday, December 2, 2025 4:59 PM\r\nTo: \'Rick\' <rick@mavrix.one>\r\nSubject: RE: HP MJF Printers\r\n\r\nHello Rick,\r\n\r\nHow are things progressing/when should we connect back?  Last we talked you mentioned wanting to get some equipment about this time.\r\n\r\nPlease advise\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager – US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Fudge, Gary\r\nSent: Monday, November 3, 2025 5:47 PM\r\nTo: \'Rick\' <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSubject: RE: HP MJF Printers\r\n\r\nHello Rick,\r\n\r\nAny questions on the site prep guide?\r\n\r\nAlso, please email me the physical address in FL so I can start getting you set up in our system.\r\n\r\nThanks\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager – US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Fudge, Gary\r\nSent: Friday, October 24, 2025 6:27 PM\r\nTo: \'Rick\' <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSubject: RE: HP MJF Printers\r\n\r\nHello Rick,\r\n\r\nGood catching up with you today.  See attached site prep guide as requested.\r\n\r\nCan you please email me your address now that you have the land secure so I can go ahead and get you into our system?\r\n\r\nPlease let me know if you have any questions or need any additional information.\r\n\r\nBest Regards\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager – US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Friday, October 24, 2025 8:46 AM\r\nTo: Fudge, Gary <gary.fudge@hp.com<mailto:gary.fudge@hp.com>>\r\nSubject: Re: HP MJF Printers\r\n\r\nCAUTION: External Email\r\n585.797.9473\r\nSafe travels!\r\nThanks,\r\nRick\r\n\r\nOn October 24, 2025 at 08:56:44, Fudge, Gary (gary.fudge@hp.com<mailto:gary.fudge@hp.com>) wrote:\r\nI’m on a flight but should land around 10:30-10:45.   Let me know of a good number to reach you and I can call then\r\n\r\nGary Fudge\r\n678-654-6734\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Friday, October 24, 2025 7:41:17 AM\r\nTo: Fudge, Gary <gary.fudge@hp.com<mailto:gary.fudge@hp.com>>\r\nSubject: Re: HP MJF Printers\r\n\r\nCAUTION: External Email\r\nHey Gary,\r\nAre you available to day at 10a for a call?\r\nTalking about power requirements for our facilities next week and need to start pulling together numbers.\r\nOr, can you send me power requirements for the MJF Printers?\r\nLet me know what works.\r\nThanks!\r\nRick\r\n\r\nOn October 2, 2025 at 11:28:38, Fudge, Gary (gary.fudge@hp.com<mailto:gary.fudge@hp.com>) wrote:\r\n\r\nHello Rick,\r\n\r\n\r\n\r\nAre you all ready to continue the conversation about our 3D Printers/3DP Services?  If not, when should I check back with you?\r\n\r\n\r\n\r\nBest Regards,\r\n\r\n\r\n\r\nGary Fudge\r\n\r\n3D Print - Enterprise Account Manager – US South\r\n\r\nAtlanta , GA\r\n\r\nM - (678) 654-6734\r\n\r\n|\r\n\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n\r\n[cid:92845B48-0023-45F7-81C1-620B3C947B46]\r\n\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-12-04 13:10:33','2025-12-09 18:52:21','2025-12-09 18:52:21','2025-12-09 18:52:21',NULL,NULL,NULL),
(161,4,'<D4AB0028-7D2F-4DE5-BE0D-6C73B291D1C6@mavrix.one>',NULL,NULL,'Re: DOD Opportunity-MJF 3D Print','brian@mavrix.one','\"Brian C. Stufflebean\"','<html class=\"apple-mail-supports-explicit-dark-mode\"><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body dir=\"auto\">Let’s discuss a little later this morning.<div><br></div><div><br id=\"lineBreakAtBeginningOfSignature\"><div dir=\"ltr\">Sent from my iPhone</div><div dir=\"ltr\"><br><blockquote type=\"cite\">On Dec 4, 2025, at 8:54 AM, Rick &lt;rick@mavrix.one&gt; wrote:<br><br></blockquote></div><blockquote type=\"cite\"><div dir=\"ltr\">﻿\r\n    <style>body { font-family: Helvetica, Arial; font-size: 13px; }</style><div style=\"font-family:Helvetica,Arial;font-size:13px; \">At least he’s trying :)</div> <br> <div class=\"gmail_signature\">\r\n        <title></title>\r\n     \r\n    <br>\r\n     \r\n<div><span style=\"font-family: Helvetica, Arial;\">Rick Mislan, PhD,&nbsp;</span><div style=\"font-family: Helvetica, Arial;\">Founder, CTO</div><div style=\"font-family: Helvetica, Arial;\"><div><div><div>&lt;52AACA64-B468-4285-B5C4-838F6707FFCC&gt;</div><br></div><div><a href=\"https://mavrix1.com/\">https://mavrix1.com</a></div></div><div><br></div><div><div>CONFIDENTIALITY NOTICE</div><div>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</div><div><br></div><div>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</div><div><br></div><div>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</div></div></div></div></div> <br><p class=\"airmail_on\">On December 4, 2025 at 8:11:21 AM, Fudge, Gary (<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>) wrote:</p> <blockquote type=\"cite\" class=\"clean_bq\"><span><div lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\"><div></div><div>\r\n\r\n\r\n\r\n<!--[if !mso]><![endif]-->\r\n\r\n\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">There is need for a significant amount of parts to be printed on our equipment based on some recent DOD/government supply contracts that have been awarded and being awarded.&nbsp;\r\n<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">I know you mentioned getting up and running soon. &nbsp;And based on our conversations, this sounds like it may be right up your ally.&nbsp; Depending on your timing and how things turn out, we may be able to instantly fill some to all capacity of\r\n several machines.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Do you have some time to discuss in the next few days?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">3D Print - Enterprise Account Manager – US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">|</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black;mso-ligatures:standardcontextual\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black\"><div>&lt;image001.png@01DC64F5.62255090&gt;</div><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Fudge, Gary\r\n<br>\r\n<b>Sent:</b> Tuesday, December 2, 2025 4:59 PM<br>\r\n<b>To:</b> \'Rick\' &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> RE: HP MJF Printers<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">How are things progressing/when should we connect back?&nbsp; Last we talked you mentioned wanting to get some equipment about this time.&nbsp;\r\n<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Please advise<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">3D Print - Enterprise Account Manager – US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">|</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black;mso-ligatures:standardcontextual\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black\"><div>&lt;image001.png@01DC64F5.62255090&gt;</div></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Fudge, Gary\r\n<br>\r\n<b>Sent:</b> Monday, November 3, 2025 5:47 PM<br>\r\n<b>To:</b> \'Rick\' &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;<br>\r\n<b>Subject:</b> RE: HP MJF Printers<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Any questions on the site prep guide?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Also, please email me the physical address in FL so I can start getting you set up in our system.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Thanks<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">3D Print - Enterprise Account Manager – US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">|</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black;mso-ligatures:standardcontextual\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black\"><div>&lt;image001.png@01DC64F5.62255090&gt;</div></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Fudge, Gary\r\n<br>\r\n<b>Sent:</b> Friday, October 24, 2025 6:27 PM<br>\r\n<b>To:</b> \'Rick\' &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;<br>\r\n<b>Subject:</b> RE: HP MJF Printers<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Good catching up with you today.&nbsp; See attached site prep guide as requested.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Can you please email me your address now that you have the land secure so I can go ahead and get you into our system?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Please let me know if you have any questions or need any additional information.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Best Regards<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">3D Print - Enterprise Account Manager – US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">|</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black;mso-ligatures:standardcontextual\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black\"><div>&lt;image001.png@01DC64F5.62255090&gt;</div></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Friday, October 24, 2025 8:46 AM<br>\r\n<b>To:</b> Fudge, Gary &lt;<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>&gt;<br>\r\n<b>Subject:</b> Re: HP MJF Printers<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;color:red\">CAUTION: External Email\r\n</span></b><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">585.797.9473<br>\r\nSafe travels!<br>\r\nThanks,<br>\r\nRick <o:p></o:p></p>\r\n<p class=\"airmailon\">On October 24, 2025 at 08:56:44, Fudge, Gary (<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">I’m on a flight but should land around 10:30-10:45. &nbsp; Let me know of a good number to reach you and I can call then<o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\">\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div id=\"ms-outlook-mobile-signature\">\r\n<div>\r\n<p class=\"MsoNormal\">Gary Fudge<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">678-654-6734<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n<div class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">\r\n<hr size=\"1\" width=\"98%\" align=\"center\">\r\n</div>\r\n<div id=\"divRplyFwdMsg\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;<br>\r\n<b>Sent:</b> Friday, October 24, 2025 7:41:17 AM<br>\r\n<b>To:</b> Fudge, Gary &lt;<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>&gt;<br>\r\n<b>Subject:</b> Re: HP MJF Printers</span> <o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;color:red\">CAUTION: External Email\r\n</span></b><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">Hey Gary,<br>\r\nAre you available to day at 10a for a call?<br>\r\nTalking about power requirements for our facilities next week and need to start pulling together numbers.&nbsp;<br>\r\nOr, can you send me power requirements for the MJF Printers?<br>\r\nLet me know what works.<br>\r\nThanks!<br>\r\nRick <o:p></o:p></p>\r\n<p class=\"xairmailon\">On October 2, 2025 at 11:28:38, Fudge, Gary (<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"xmsonormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n<p class=\"xmsonormal\">Are you all ready to continue the conversation about our 3D Printers/3DP Services?&nbsp; If not, when should I check back with you?<o:p></o:p></p>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n<p class=\"xmsonormal\">Best Regards,<o:p></o:p></p>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"xmsonormal\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"xmsonormal\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager – US South\r\n</span><o:p></o:p></p>\r\n<p class=\"xmsonormal\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"xmsonormal\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><o:p></o:p></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"xmsonormal\" align=\"center\" style=\"text-align:center\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><o:p></o:p></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"xmsonormal\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"xmsonormal\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"_x0000_i1029\" src=\"cid:Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/Local/1764856446886025984/Attachments/92845B48-0023-45F7-81C1-620B3C947B46\" data-unique-identifier=\"\"></span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n\r\n\r\n</div></div></span></blockquote>\r\n\r\n\r\n</div></blockquote></div></body></html>','Let’s discuss a little later this morning.Sent from my iPhoneOn Dec 4, 2025, at 8:54 AM, Rick &lt;rick@mavrix.one&gt; wrote:﻿\r\n    body { font-family: Helvetica, Arial; font-size: 13px; }At least he’s trying :)  \r\n        \r\n     \r\n    \r\n     \r\nRick Mislan, PhD,&nbsp;Founder, CTO&lt;52AACA64-B468-4285-B5C4-838F6707FFCC&gt;https://mavrix1.comCONFIDENTIALITY NOTICEThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements. On December 4, 2025 at 8:11:21 AM, Fudge, Gary (gary.fudge@hp.com) wrote: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nHello Rick,\r\n&nbsp;\r\nThere is need for a significant amount of parts to be printed on our equipment based on some recent DOD/government supply contracts that have been awarded and being awarded.&nbsp;\r\n\r\n&nbsp;\r\nI know you mentioned getting up and running soon. &nbsp;And based on our conversations, this sounds like it may be right up your ally.&nbsp; Depending on your timing and how things turn out, we may be able to instantly fill some to all capacity of\r\n several machines.\r\n&nbsp;\r\nDo you have some time to discuss in the next few days?\r\n&nbsp;\r\n\r\n\r\n\r\n\r\n\r\nGary Fudge\r\n\r\n\r\n\r\n\r\n3D Print - Enterprise Account Manager – US South\r\n\r\nAtlanta , GA\r\n\r\n\r\n\r\n\r\nM -&nbsp;(678) 654-6734\r\n\r\n\r\n\r\n|\r\n\r\n\r\nGary.Fudge@HP.com\r\n\r\n\r\n\r\n\r\n&lt;image001.png@01DC64F5.62255090&gt;\r\n\r\n\r\n\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n\r\nFrom: Fudge, Gary\r\n\r\nSent: Tuesday, December 2, 2025 4:59 PM\r\nTo: \'Rick\' &lt;rick@mavrix.one&gt;\r\nSubject: RE: HP MJF Printers\r\n\r\n\r\n&nbsp;\r\nHello Rick,\r\n&nbsp;\r\nHow are things progressing/when should we connect back?&nbsp; Last we talked you mentioned wanting to get some equipment about this time.&nbsp;\r\n\r\n&nbsp;\r\nPlease advise\r\n&nbsp;\r\n\r\n\r\n\r\n\r\n\r\nGary Fudge\r\n\r\n\r\n\r\n\r\n3D Print - Enterprise Account Manager – US South\r\n\r\nAtlanta , GA\r\n\r\n\r\n\r\n\r\nM -&nbsp;(678) 654-6734\r\n\r\n\r\n\r\n|\r\n\r\n\r\nGary.Fudge@HP.com\r\n\r\n\r\n\r\n\r\n&lt;image001.png@01DC64F5.62255090&gt;\r\n\r\n\r\n\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n\r\nFrom: Fudge, Gary\r\n\r\nSent: Monday, November 3, 2025 5:47 PM\r\nTo: \'Rick\' &lt;rick@mavrix.one&gt;\r\nSubject: RE: HP MJF Printers\r\n\r\n\r\n&nbsp;\r\nHello Rick,\r\n&nbsp;\r\nAny questions on the site prep guide?\r\n&nbsp;\r\nAlso, please email me the physical address in FL so I can start getting you set up in our system.\r\n&nbsp;\r\nThanks\r\n&nbsp;\r\n\r\n\r\n\r\n\r\n\r\nGary Fudge\r\n\r\n\r\n\r\n\r\n3D Print - Enterprise Account Manager – US South\r\n\r\nAtlanta , GA\r\n\r\n\r\n\r\n\r\nM -&nbsp;(678) 654-6734\r\n\r\n\r\n\r\n|\r\n\r\n\r\nGary.Fudge@HP.com\r\n\r\n\r\n\r\n\r\n&lt;image001.png@01DC64F5.62255090&gt;\r\n\r\n\r\n\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n\r\nFrom: Fudge, Gary\r\n\r\nSent: Friday, October 24, 2025 6:27 PM\r\nTo: \'Rick\' &lt;rick@mavrix.one&gt;\r\nSubject: RE: HP MJF Printers\r\n\r\n\r\n&nbsp;\r\nHello Rick,\r\n&nbsp;\r\nGood catching up with you today.&nbsp; See attached site prep guide as requested.\r\n&nbsp;\r\nCan you please email me your address now that you have the land secure so I can go ahead and get you into our system?\r\n&nbsp;\r\nPlease let me know if you have any questions or need any additional information.\r\n&nbsp;\r\nBest Regards\r\n&nbsp;\r\n\r\n\r\n\r\n\r\n\r\nGary Fudge\r\n\r\n\r\n\r\n\r\n3D Print - Enterprise Account Manager – US South\r\n\r\nAtlanta , GA\r\n\r\n\r\n\r\n\r\nM -&nbsp;(678) 654-6734\r\n\r\n\r\n\r\n|\r\n\r\n\r\nGary.Fudge@HP.com\r\n\r\n\r\n\r\n\r\n&lt;image001.png@01DC64F5.62255090&gt;\r\n\r\n\r\n\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n\r\nFrom: Rick &lt;rick@mavrix.one&gt;\r\n\r\nSent: Friday, October 24, 2025 8:46 AM\r\nTo: Fudge, Gary &lt;gary.fudge@hp.com&gt;\r\nSubject: Re: HP MJF Printers\r\n\r\n\r\n&nbsp;\r\nCAUTION: External Email\r\n\r\n\r\n585.797.9473\r\nSafe travels!\r\nThanks,\r\nRick \r\nOn October 24, 2025 at 08:56:44, Fudge, Gary (gary.fudge@hp.com) wrote:\r\n\r\n\r\n\r\n\r\n\r\nI’m on a flight but should land around 10:30-10:45. &nbsp; Let me know of a good number to reach you and I can call then\r\n\r\n\r\n\r\n&nbsp;\r\n\r\n\r\n\r\nGary Fudge\r\n\r\n\r\n678-654-6734\r\n\r\n\r\n&nbsp;\r\n\r\n\r\n\r\n\r\n\r\n\r\nFrom: Rick &lt;rick@mavrix.one&gt;\r\nSent: Friday, October 24, 2025 7:41:17 AM\r\nTo: Fudge, Gary &lt;gary.fudge@hp.com&gt;\r\nSubject: Re: HP MJF Printers \r\n\r\n&nbsp;\r\n\r\n\r\n\r\nCAUTION: External Email\r\n\r\n\r\nHey Gary,\r\nAre you available to day at 10a for a call?\r\nTalking about power requirements for our facilities next week and need to start pulling together numbers.&nbsp;\r\nOr, can you send me power requirements for the MJF Printers?\r\nLet me know what works.\r\nThanks!\r\nRick \r\nOn October 2, 2025 at 11:28:38, Fudge, Gary (gary.fudge@hp.com) wrote:\r\n\r\n\r\n\r\n\r\nHello Rick,\r\n&nbsp;\r\nAre you all ready to continue the conversation about our 3D Printers/3DP Services?&nbsp; If not, when should I check back with you?\r\n&nbsp;\r\nBest Regards,\r\n&nbsp;\r\n\r\n\r\n\r\n\r\nGary Fudge\r\n\r\n\r\n\r\n\r\n3D Print - Enterprise Account Manager – US South\r\n\r\nAtlanta , GA\r\n\r\n\r\n\r\n\r\nM -&nbsp;(678) 654-6734\r\n\r\n\r\n|\r\n\r\n\r\nGary.Fudge@HP.com\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-12-04 14:06:36','2025-12-09 18:52:22','2025-12-09 18:52:22','2025-12-09 18:52:22',NULL,NULL,NULL),
(162,4,'<30018621.20251204142705.69319a39ce7dc5.19906515@mail180-31.suw31.mandrillapp.com>',NULL,NULL,'=?utf-8?Q?Action=20Required!=20Mavrix1=20Management=20LLC\'s=20Employee=20Benefits=20Program=20-=20Questionnaire?=','no-reply@benefitter.com','\"Mavrix1 Management LLC\'s Management\"','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html><body style=\"margin: 0; padding: 0\">      <div style=\"padding-left: 10px; padding-right: 10px;\">\r\n        \r\n        <p>\r\n          Dear Richard,\r\n        </p>\r\n        <p>\r\n          Mavrix1 Management LLC\'s is exploring insurance options that may result in cost savings for you. \r\n          Collecting medical history information is part of that process. Mavrix1 Management LLC\'s is requesting \r\n          that you complete the electronic individual medical questionnaire. Your responses will only be \r\n          disclosed to insurance carriers, are secure, and will not be shared with Mavrix1 Management LLC\'s.\r\n          <br /><br />\r\n          All statements contained in this form must be true and correct, and no material information \r\n          can be withheld or omitted.\r\n          <br /><br />\r\n          Please click the \'Let\'s Begin\' button to start your questionnaire.\r\n        </p>\r\n        <p>\r\n        The deadline to complete this questionnaire is: 12/10/2025.\r\n        </p>\r\n        <hr>\r\n        <p>\r\n          To prepare, please gather the following pieces of information of everyone you are expecting to enroll:<br>\r\n          <ul>\r\n            <li>Dates of Birth</li>\r\n            <li>Heights and weights</li>\r\n            <li>Medical and prescription history from the past 5 years</li>\r\n          </ul>\r\n        </p>\r\n        <br>\r\n        <a href=\"https://mandrillapp.com/track/click/30018621/ei.benefitter.com?p=eyJzIjoiS3lhRHh5eDZVMXRmdC1teFNfa2VSMV9xOHNvIiwidiI6MiwicCI6IntcInVcIjozMDAxODYyMSxcInZcIjoyLFwidXJsXCI6XCJodHRwczpcXFwvXFxcL2VpLmJlbmVmaXR0ZXIuY29tXFxcL2ltcVxcXC9hY3RpdmF0ZVxcXC9QTk1UWU5cIixcImlkXCI6XCI3OWFkMWFjN2I3NmU0YjI3YjE2Mjc0YjExZjk2NzhjY1wiLFwidXJsX2lkc1wiOltcImQ0OGQwODMzMGUwZDdiNzRkOWI3MTI1M2M5Yjg1NTZhMWZmNDEzYjdcIl0sXCJtc2dfdHNcIjoxNzY0ODU4NDI1fSJ9\" style=\"background: #f26222; color: white; padding: 10px;\r\n            text-decoration: none; font-weight: bold;\r\n            border-radius: 4px;\">\r\n          Let\'s Begin!\r\n        </a><br><br>\r\n        <p>Or Copy - Paste the link below on your internet browser:</p>\r\n        <p>https://ei.benefitter.com/imq/activate/PNMTYN</p><br>\r\n        <p>Thank you,</p>\r\n        <p>Mavrix1 Management LLC\'s Management</p>\r\n      </div>\r\n<img src=\"https://mandrillapp.com/track/open.php?u=30018621&id=79ad1ac7b76e4b27b16274b11f9678cc\" height=\"1\" width=\"1\" alt=\"\"></body></html>','   Dear Richard, \r\n\r\n  Mavrix1 Management LLC\'s is exploring insurance options that may result\r\nin cost savings for you. Collecting medical history information is part of\r\nthat process. Mavrix1 Management LLC\'s is requesting that you complete the\r\nelectronic individual medical questionnaire. Your responses will only be\r\ndisclosed to insurance carriers, are secure, and will not be shared with\r\nMavrix1 Management LLC\'s. \r\n\r\n All statements contained in this form must be true and correct, and no\r\nmaterial information can be withheld or omitted. \r\n\r\n Please click the \'Let\'s Begin\' button to start your questionnaire. \r\n\r\n  The deadline to complete this questionnaire is: 12/10/2025. \r\n\r\n   To prepare, please gather the following pieces of information of\r\neveryone you are expecting to enroll:\r\n   - Dates of Birth\r\n  - Heights and weights\r\n  - Medical and prescription history from the past 5 years\r\n \r\n \r\n\r\n \r\n  Let\'s Begin! <https://mandrillapp.com/track/click/30018621/ei.benefitter.com?p=eyJzIjoiS3lhRHh5eDZVMXRmdC1teFNfa2VSMV9xOHNvIiwidiI6MiwicCI6IntcInVcIjozMDAxODYyMSxcInZcIjoyLFwidXJsXCI6XCJodHRwczpcXFwvXFxcL2VpLmJlbmVmaXR0ZXIuY29tXFxcL2ltcVxcXC9hY3RpdmF0ZVxcXC9QTk1UWU5cIixcImlkXCI6XCI3OWFkMWFjN2I3NmU0YjI3YjE2Mjc0YjExZjk2NzhjY1wiLFwidXJsX2lkc1wiOltcImQ0OGQwODMzMGUwZDdiNzRkOWI3MTI1M2M5Yjg1NTZhMWZmNDEzYjdcIl0sXCJtc2dfdHNcIjoxNzY0ODU4NDI1fSJ9>\r\n\r\n Or Copy - Paste the link below on your internet browser:\r\n\r\n https://mandrillapp.com/track/click/30018621/ei.benefitter.com?p=eyJzIjoiS3lhRHh5eDZVMXRmdC1teFNfa2VSMV9xOHNvIiwidiI6MiwicCI6IntcInVcIjozMDAxODYyMSxcInZcIjoyLFwidXJsXCI6XCJodHRwczpcXFwvXFxcL2VpLmJlbmVmaXR0ZXIuY29tXFxcL2ltcVxcXC9hY3RpdmF0ZVxcXC9QTk1UWU5cIixcImlkXCI6XCI3OWFkMWFjN2I3NmU0YjI3YjE2Mjc0YjExZjk2NzhjY1wiLFwidXJsX2lkc1wiOltcImQ0OGQwODMzMGUwZDdiNzRkOWI3MTI1M2M5Yjg1NTZhMWZmNDEzYjdcIl0sXCJtc2dfdHNcIjoxNzY0ODU4NDI1fSJ9\r\n\r\n Thank you,\r\n\r\n Mavrix1 Management LLC\'s Management',0,0,0,0,0,0,'2025-12-04 14:27:05','2025-12-09 18:52:22','2025-12-09 18:52:22','2025-12-09 18:52:22',NULL,NULL,NULL),
(163,4,'<4B4E2C2E-84BE-4C62-AB7D-35D5F5556386@mavrix.one>',NULL,NULL,'Attached files for 3900 W Coachman Tampa','Brian@mavrix.one','Brian Stufflebean','\r\n--Apple-Mail=_9E090E15-9F03-4D60-BE4A-FF9A7828E89A\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Type: text/html;\r\n	charset=us-ascii\r\n\r\n<html><head><meta http-equiv=3D\"content-type\" content=3D\"text/html; =\r\ncharset=3Dus-ascii\"></head><body style=3D\"overflow-wrap: break-word; =\r\n-webkit-nbsp-mode: space; line-break: after-white-space;\"><div>Please =\r\nreview the approved files for the Garage, see if there are any foreseen =\r\nproblems or issues you =\r\ndetect.&nbsp;</div><div><br></div><div><br></div><div><div =\r\nstyle=3D\"display: block;\"><div style=3D\"-webkit-user-select: all; =\r\n-webkit-user-drag: element; display: inline-block;\" =\r\nclass=3D\"apple-rich-link\" draggable=3D\"true\" role=3D\"link\" =\r\ndata-url=3D\"https://drive.google.com/file/d/1z9I7q7EDCiixQ7_fidhZ55296dTHi=\r\nB8g/view?usp=3Dsharing\"><a =\r\nstyle=3D\"border-radius:10px;font-family:-apple-system, Helvetica, Arial, =\r\nsans-serif;display:block;-webkit-user-select:none;width:300px;user-select:=\r\nnone;-webkit-user-modify:read-only;user-modify:read-only;overflow:hidden;t=\r\next-decoration:none;\" class=3D\"lp-rich-link\" rel=3D\"nofollow\" =\r\nhref=3D\"https://drive.google.com/file/d/1z9I7q7EDCiixQ7_fidhZ55296dTHiB8g/=\r\nview?usp=3Dsharing\" dir=3D\"ltr\" role=3D\"button\" draggable=3D\"false\" =\r\nwidth=3D\"300\"><table =\r\nstyle=3D\"table-layout:fixed;border-collapse:collapse;width:300px;backgroun=\r\nd-color:#278741;font-family:-apple-system, Helvetica, Arial, =\r\nsans-serif;\" class=3D\"lp-rich-link-emailBaseTable\" cellpadding=3D\"0\" =\r\ncellspacing=3D\"0\" border=3D\"0\" width=3D\"300\"><tbody><tr><td =\r\nvertical-align=3D\"center\"><table bgcolor=3D\"#278741\" cellpadding=3D\"0\" =\r\ncellspacing=3D\"0\" width=3D\"300\" =\r\nstyle=3D\"table-layout:fixed;font-family:-apple-system, Helvetica, Arial, =\r\nsans-serif;background-color:rgba(39, 135, 65, =\r\n1);-apple-color-filter:initial;\" =\r\nclass=3D\"lp-rich-link-captionBar\"><tbody><tr><td style=3D\"padding:8px =\r\n0px 8px 0px;\" class=3D\"lp-rich-link-captionBar-textStackItem\"><div =\r\nstyle=3D\"max-width:100%;margin:0px 16px 0px 16px;overflow:hidden;\" =\r\nclass=3D\"lp-rich-link-captionBar-textStack\"><div =\r\nstyle=3D\"word-wrap:break-word;font-weight:500;font-size:12px;overflow:hidd=\r\nen;text-overflow:ellipsis;text-align:left;\" =\r\nclass=3D\"lp-rich-link-captionBar-textStack-topCaption-leading\"><a =\r\nrel=3D\"nofollow\" =\r\nhref=3D\"https://drive.google.com/file/d/1z9I7q7EDCiixQ7_fidhZ55296dTHiB8g/=\r\nview?usp=3Dsharing\" style=3D\"text-decoration: none\" =\r\ndraggable=3D\"false\"><font color=3D\"#FFFFFF\" style=3D\"color: rgba(255, =\r\n255, 255, 0.847059);\">Google Drive: Sign-in</font></a></div><div =\r\nstyle=3D\"word-wrap:break-word;font-weight:400;font-size:11px;overflow:hidd=\r\nen;text-overflow:ellipsis;text-align:left;\" =\r\nclass=3D\"lp-rich-link-captionBar-textStack-bottomCaption-leading\"><a =\r\nrel=3D\"nofollow\" =\r\nhref=3D\"https://drive.google.com/file/d/1z9I7q7EDCiixQ7_fidhZ55296dTHiB8g/=\r\nview?usp=3Dsharing\" style=3D\"text-decoration: none\" =\r\ndraggable=3D\"false\"><font color=3D\"#FFFFFF\" style=3D\"color: rgba(255, =\r\n255, 255, 0.54902);\">drive.google.com</font></a></div></div></td><td =\r\nstyle=3D\"padding:6px 12px 6px 0px;\" =\r\nclass=3D\"lp-rich-link-captionBar-rightIconItem\" width=3D\"30\"><a =\r\nrel=3D\"nofollow\" =\r\nhref=3D\"https://drive.google.com/file/d/1z9I7q7EDCiixQ7_fidhZ55296dTHiB8g/=\r\nview?usp=3Dsharing\" draggable=3D\"false\"><img style=3D\"pointer-events:none =\r\n!important;display:inline-block;width:30px;height:30px;border-radius:3px;\"=\r\n width=3D\"30\" height=3D\"30\" draggable=3D\"false\" =\r\nclass=3D\"lp-rich-link-captionBar-rightIcon\" alt=3D\"favicon.ico\" =\r\nsrc=3D\"cid:AAD29054-B115-4ED7-AA7B-AFDDDB163EB9\"></a></td></tr></tbody></t=\r\nable></td></tr></tbody></table></a></div></div></div><br><div>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; orphans: auto; text-align: start; text-indent: 0px; =\r\ntext-transform: none; white-space: normal; widows: auto; word-spacing: =\r\n0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><font size=3D\"2\">Best =\r\nregards,</font></div><div style=3D\"font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><font =\r\nsize=3D\"2\"><br></font></div><div style=3D\"font-family: Helvetica; =\r\nfont-size: 12px; font-style: normal; font-variant-caps: normal; =\r\nfont-weight: 400; letter-spacing: normal; orphans: auto; text-align: =\r\nstart; text-indent: 0px; text-transform: none; white-space: normal; =\r\nwidows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\" style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><b>Brian C. =\r\nStufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 =\r\nDirect</b></div><div style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><span style=3D\"font-size: =\r\n11px;\">(866)896-2423 Fax</span></div></div><span style=3D\"caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0); font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"></span><br class=3D\"Apple-interchange-newline\"><span><img =\r\nalt=3D\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" =\r\nsrc=3D\"cid:CB596987-D3CC-4C61-B9D3-CE1C1DF1C723\"></span><meta =\r\ncharset=3D\"UTF-8\"><div style=3D\"font-family: Helvetica; font-size: 12px; =\r\nfont-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br =\r\nclass=3D\"Apple-interchange-newline\"><br =\r\nclass=3D\"Apple-interchange-newline\"><a =\r\nhref=3D\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a =\r\nhref=3D\"https://mavrix1.com\">https://mavrix1.com/</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY =\r\nNOTICE:</b><span style=3D\"font-family: Helvetica; font-style: normal; =\r\nfont-weight: 400; font-size: =\r\n12px;\">&nbsp;This&nbsp;communication&nbsp;is =\r\nconfidential&nbsp;and&nbsp;intended only for the =\r\nintended&nbsp;recipient.&nbsp;&nbsp;If you are not the =\r\nintended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, =\r\nor&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any =\r\nsuch&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this =\r\ncommunication&nbsp;in error,&nbsp;please contact the sender =\r\nof&nbsp;the&nbsp;message to inform him or her of =\r\nthe&nbsp;error.<br><br></span></div>\r\n</div>\r\n\r\n<br></body></html>=\r\n\r\n--Apple-Mail=_9E090E15-9F03-4D60-BE4A-FF9A7828E89A\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=favicon.ico\r\nContent-Type: image/vnd.microsoft.icon;\r\n	x-unix-mode=0666;\r\n	name=\"favicon.ico\"\r\nContent-Id: <AAD29054-B115-4ED7-AA7B-AFDDDB163EB9>\r\n\r\niVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADBklEQVR4AWIgFYwC8QYrHYkGCwcA\r\nbeUAZFcMQNHMdG3btlmu7fe3tm3btu32o7Zt27ZtpslMs3z5yerOnPF758ZimA6KdAEVleCVgofX\r\n3OQ9SASVcXSt/la4D1iUqzxqUWONEJlwC/HbZmRVqlwyyQv+2q2COVS+o5dKeiE5xPguTPspJrcZ\r\nEg7vbtH6hgtgfu+uVK9c5KGKXAsk/oSABIdxUcUK9JrjTEZPeAT3AY2yj14mLCJiQsDSTGg5JF/u\r\nNjwEvtmuQcT57FEZVCZ5kCwnAgvFcJ0an1dg8TKLP1gowrdv+zQcSj/9MuEYrUCwNOe79fAqsMZY\r\nf/hjlwqtAPy5W1VaSrmkHk1O8F2Qeun2Zu0bREZll0rVEsm9Fbk6IXLhEZYwWIcEpxCQwSm4D6jw\r\nj14qGcYh/xakyHXBo2PIyVI045JHSLMc8M9ZBdD+GEW+wevMUeIZ3AcMACshshwpx+if4WUi36Af\r\n2+AdzyyxR2WUcrlUEsUhh8FyoREoEnzmOWbh1/d96i7i9/2+KBX083McBU4BkeBbD99+HCU2UUaf\r\n04xn9PhyApSg+78WQ06OZSIomIB1WQZo7V8xC0iFZYAR/BJy7IVrhY4lXlOeYxe+PMcGMPJzp2oI\r\n5yxEARKXwQsGuwxd+Mp58DIoyrAFT0PHb1wTM+LzIh6WD+2/6WN3h6cfOjvBYnRx+vmxp/3ddz2c\r\nGwMSi5aXUi1bXYQ07Npdg+jHPxCQh6Shb97fS4yGL2NDqTxPCPEBeRm8TwWJrtEKhPR7wS0nTG45\r\n7w9N/io2dBcoGsvW5xPF5C4db4pLGCQOf/fnYnqWWIFfZPTFgoTbCsqtWl2CVQa9pYsYdO+yq/jo\r\n40JmAVps2l52QeJfpIBnt3tsEYO9klYFC7x7FxWg/D2wanVhHJZbt7kMawz/+KOsBWr1v/P1WVzE\r\n/wIh7QArpm2v6Fi2unQoqM/zx9wiBvOaTXr0MjZsFYyK+jdY4UPYEY4tn6qcWr5sdmz7sp8S7NT6\r\neX147b0csOWDEYwCAJuJN71tqVZWAAAAAElFTkSuQmCC\r\n--Apple-Mail=_9E090E15-9F03-4D60-BE4A-FF9A7828E89A\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\r\nContent-Type: image/png;\r\n	name=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\"\r\nContent-Id: <CB596987-D3CC-4C61-B9D3-CE1C1DF1C723>\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGwAAAAYCAYAAAAf1RgaAAAAAXNSR0IArs4c6QAAAIRlWElmTU0A\r\nKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdp\r\nAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAGyg\r\nAwAEAAAAAQAAABgAAAAABrPxEgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5h\r\nZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9\r\nIlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9y\r\nZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6\r\nYWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZm\r\nLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgog\r\nICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAA\r\nC6FJREFUaAXtWnuMVUcZnznPe/fuZYEtDxHCQ1ADBNuuAlKh24dRaqURWFotj5haKAn9SxOaauRi\r\nxEBsMMFSAmnUCDTKWtDioyEm3RLKq6VKC7Rg20VA5Lmwz3vPa8bfN+ecu+fevbugjQQrX5g735n5\r\nvm++13wz5yyc3YKb0gP19a8YTU33+NNmbx0puHjJtGsm+U7beoMxyRsaGrUJE45JxlbclMp/1JXK\r\nsZWM5XLwP6PG6+tzOgVr8tzN0wWTjRq3hojAw6TU+EfdGf9T9uVyGsutQNC4nDpn8zz0m7lmWEwE\r\njm6mbd/r3MCnzNk6DlEbyRFCqfNbAbyBEeaBlJzrkula1mOFQ683fvMcLT917tblGF8dbTgmhe8a\r\nZsbyvY4NhsbEdwy7ZrHntDHOtBuo7q2lGLyvGSnmOe2/fH3S3//EGhGsOZuf03RrKRMC/3wBL30f\r\n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\r\n--Apple-Mail=_9E090E15-9F03-4D60-BE4A-FF9A7828E89A--','Please review the approved files for the Garage, see if there are any foreseen problems or issues you detect. \r\n\r\n\r\nhttps://drive.google.com/file/d/1z9I7q7EDCiixQ7_fidhZ55296dTHiB8g/view?usp=sharing￼\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n￼\r\n\r\n\r\nbrian@mavrix.one <mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-12-04 16:40:08','2025-12-09 18:52:23','2025-12-09 18:52:23','2025-12-09 18:52:23',NULL,NULL,NULL),
(164,4,'<010f019aea47a9cb-2cc7d3a5-1b45-460d-a905-551b5d0ad20d-000000@us-east-2.amazonses.com>',NULL,NULL,'Please confirm your HealthSafe ID email address','noreply@identity.healthsafe-id.com','HealthSafe ID-NoReply','\r\n<!DOCTYPE HTML>\r\n<html lang=\"en\">\r\n<head>\r\n    <meta charset=\"utf-8\"/>\r\n    <title>Your HealthSafe ID account information</title>\r\n    <style>\r\n@font-face {\r\n    font-display: swap;\r\n    font-family: Optum Sans;\r\n    font-style: normal;\r\n    font-weight: 500;\r\n    src: url(../assets/fonts/optum/OptumSans-Regular.woff2) format(\"woff2\")\r\n}\r\n\r\n.textBoldHeadline {\r\n    font-family: \"Georgia\", serif;\r\n    font-weight: bold;\r\n}\r\n\r\n.textRegularBody {\r\n    font-family: \"Arial\", sans-serif;\r\n}\r\n\r\n.textRegular {\r\n    color: #000;\r\n    font-family: \"Optum Sans\", sans-serif;\r\n    font-size: 13px;\r\n}\r\n\r\n.textRegularBold {\r\n    font-family: \"Optum Sans\", sans-serif;\r\n    font-size: 13px;\r\n    font-weight: bold;\r\n}\r\n\r\n.textTitle {\r\n    color: #C36121;\r\n    font-family: \"Optum Sans\", sans-serif;\r\n    font-size: 16px;\r\n    font-weight: bold;\r\n}\r\n\r\n.tableCellBorder {\r\n    border: 1px solid #ccc;\r\n    padding: 15px;\r\n    margin: 0;\r\n    background-color: #FAF8F2;\r\n}\r\n\r\n.alignRight {\r\n    text-align: right;\r\n}\r\n\r\n.alignLeft {\r\n    text-align: left;\r\n}\r\n\r\n.fullWidth {\r\n    width: 100%;\r\n}\r\n\r\n.pushBottom {\r\n    margin: 0 0 26px;\r\n}\r\n\r\n.pushTop {\r\n    margin: 26px 0 0;\r\n}\r\n\r\n.pushBoth {\r\n    margin: 13px 0;\r\n}\r\n\r\n.noPushBottom {\r\n    margin-bottom: 0;\r\n}\r\n\r\n.noPushTop {\r\n    margin-top: 0;\r\n}\r\n\r\n.noMargin {\r\n    margin: 0;\r\n}\r\n\r\n.noTopPushBottom {\r\n    margin-top: 0 !important;\r\n    margin-bottom: 7px !important;\r\n}\r\n\r\n.textInline {\r\n    display: inline;\r\n}\r\n\r\n.tableWhole {\r\n    border: 0;\r\n    padding: 0;\r\n    margin: 0;\r\n    border-collapse: collapse;\r\n    font-family: \"Optum Sans\", sans-serif;\r\n    font-size: 13px;\r\n}\r\n\r\n\r\n\r\n.textRegular {\r\n    color: #000;\r\n    font-family: \"Optum Sans\", sans-serif;\r\n    font-size: 13px;\r\n}\r\n\r\n.textRegularBold {\r\n    font-family: \"Optum Sans\", sans-serif;\r\n    font-size: 13px;\r\n    font-weight: bold;\r\n    margin: 13px 0;\r\n}\r\n\r\n.actionLink, .actionLinkNoPad, .actionLinkSmallPad {\r\n    font-family: \"Optum Sans\", sans-serif;\r\n    font-size: 16px;\r\n    font-weight: bold;\r\n    display: block;\r\n    padding: 10px 0;\r\n}\r\n\r\n.actionLinkNoPad {\r\n    padding: 0;\r\n}\r\n\r\n.button {\r\n    display: inline-block;\r\n    font-size: 17px;\r\n    background-color: #f3f3f3;\r\n    width: 200px;\r\n    height: 28px;\r\n    padding: 26px;\r\n    text-decoration: none;\r\n    color: #333333;\r\n    border: 1px solid #333333;\r\n    text-align: center;\r\n}\r\n\r\n.noListBullets {\r\n    list-style-type: none;\r\n}\r\n\r\n.text{\r\ncolor: #002677;\r\nfont-size: 36px;\r\nline-height: 48px;\r\n}\r\n\r\n.code{\r\nfont-size: 40px;\r\ncolor: #DB00FF;\r\nfont-weight: 70;\r\nline-height: 28px;\r\n}\r\n\r\n.img-rp-logo{\r\nmax-height: 50px;\r\nmax-width: 160px;\r\n}\r\n\r\n.textBottom{\r\nfont-size: 16px;\r\ncolor: #000000;\r\nline-height: 28px;\r\n}\r\n\r\n.textBottomBold{\r\nfont-weight: bold;\r\nfont-size: 16px;\r\ncolor: #000000;\r\nline-height: 28px;\r\n}\r\n\r\n\r\n#ActivateButton {\r\n    background-color: #002677;\r\n    border: none;\r\n    color: white;\r\n    text-align: center;\r\n    display: inline-block;\r\n    cursor: pointer;\r\n    padding: 12px 24px 12px 24px;\r\n    border-radius: 999px;\r\n    gap: 8px\r\n}\r\n\r\n#ActivateButton:hover {\r\n    background-color: #002677;\r\n}    </style>\r\n\r\n</head>\r\n<body>\r\n<div class=\"content\" role=\"main\">\r\n\r\n    <table class=\"tableWhole\" role=\"presentation\">\r\n        <tr>\r\n            <td class=\"tableCellBorder\">\r\n                    <img alt=\"HealthSafe ID\" src=\"https://identity.healthsafe-id.com/tenants/hsid/applications/BEN025554N/logos/benefitterLogo.png\" class=\"img-rp-logo\"/>\r\n                <div style=\"text-align: left; background-color: #FFFFFF; padding: 10px;\">\r\n                    <h1 class=\"textTitle noTopPushBottom\" id=\"emailHeading\"><br/>\r\n                            <img  alt=\"HealthSafe ID\" src=\"https://identity.healthsafe-id.com/tenants/hsid/logos/main_logo.png\">\r\n                        <br/><br/></h1>\r\n\r\n\r\n<h2 class=\"text textBoldHeadline\">Your HealthSafe ID<sup>&reg;</sup> code is:</h2>\r\n<p class=\"code textBoldHeadline\">845022</p>\r\n<p class=\"textBottom textRegularBody\">This code will expire in 10 minutes. Please don&#39;t share this code with anyone.</p>\r\n<p class=\"textBottomBold textRegularBody\">If you did not make this request or need assistance, please call <span style=\"color: #DB00FF;\">support at 1-800-419-0116 or support@Benefitter.com</span>.</p>\r\n\r\n<br/>\r\n\r\n<br/>\r\n<p style=\"font-size: 16px;\">Please don\'t reply to this email. This mailbox is unmonitored.</p>\r\n<p style=\"font-size: 16px;\"><b>Thank you for keeping your HealthSafe ID information current.</b></p>\r\n</div>\r\n<p style=\"padding-top: 20px; padding-bottom: 20px; text-align: left; font-size: 12px; color: #666;\">\r\nThis e-mail, including attachments, may include confidential and/or proprietary information, and may be used only by the person or entity to which it is addressed. If the reader of this e-mail is not the intended recipient or intended recipient\'s authorized agent, the reader is hereby notified that any dissemination, distribution or copying of this e-mail is prohibited. If you have received this e-mail in error, please notify the sender by replying to this message and delete this e-mail immediately.</p>\r\n\r\n\r\n</td>\r\n</tr>\r\n</table>\r\n</body>\r\n</html>\r\n','\r\n\r\n\r\n\r\n    \r\n    Your HealthSafe ID account information\r\n    \r\n@font-face {\r\n    font-display: swap;\r\n    font-family: Optum Sans;\r\n    font-style: normal;\r\n    font-weight: 500;\r\n    src: url(../assets/fonts/optum/OptumSans-Regular.woff2) format(\"woff2\")\r\n}\r\n\r\n.textBoldHeadline {\r\n    font-family: \"Georgia\", serif;\r\n    font-weight: bold;\r\n}\r\n\r\n.textRegularBody {\r\n    font-family: \"Arial\", sans-serif;\r\n}\r\n\r\n.textRegular {\r\n    color: #000;\r\n    font-family: \"Optum Sans\", sans-serif;\r\n    font-size: 13px;\r\n}\r\n\r\n.textRegularBold {\r\n    font-family: \"Optum Sans\", sans-serif;\r\n    font-size: 13px;\r\n    font-weight: bold;\r\n}\r\n\r\n.textTitle {\r\n    color: #C36121;\r\n    font-family: \"Optum Sans\", sans-serif;\r\n    font-size: 16px;\r\n    font-weight: bold;\r\n}\r\n\r\n.tableCellBorder {\r\n    border: 1px solid #ccc;\r\n    padding: 15px;\r\n    margin: 0;\r\n    background-color: #FAF8F2;\r\n}\r\n\r\n.alignRight {\r\n    text-align: right;\r\n}\r\n\r\n.alignLeft {\r\n    text-align: left;\r\n}\r\n\r\n.fullWidth {\r\n    width: 100%;\r\n}\r\n\r\n.pushBottom {\r\n    margin: 0 0 26px;\r\n}\r\n\r\n.pushTop {\r\n    margin: 26px 0 0;\r\n}\r\n\r\n.pushBoth {\r\n    margin: 13px 0;\r\n}\r\n\r\n.noPushBottom {\r\n    margin-bottom: 0;\r\n}\r\n\r\n.noPushTop {\r\n    margin-top: 0;\r\n}\r\n\r\n.noMargin {\r\n    margin: 0;\r\n}\r\n\r\n.noTopPushBottom {\r\n    margin-top: 0 !important;\r\n    margin-bottom: 7px !important;\r\n}\r\n\r\n.textInline {\r\n    display: inline;\r\n}\r\n\r\n.tableWhole {\r\n    border: 0;\r\n    padding: 0;\r\n    margin: 0;\r\n    border-collapse: collapse;\r\n    font-family: \"Optum Sans\", sans-serif;\r\n    font-size: 13px;\r\n}\r\n\r\n\r\n\r\n.textRegular {\r\n    color: #000;\r\n    font-family: \"Optum Sans\", sans-serif;\r\n    font-size: 13px;\r\n}\r\n\r\n.textRegularBold {\r\n    font-family: \"Optum Sans\", sans-serif;\r\n    font-size: 13px;\r\n    font-weight: bold;\r\n    margin: 13px 0;\r\n}\r\n\r\n.actionLink, .actionLinkNoPad, .actionLinkSmallPad {\r\n    font-family: \"Optum Sans\", sans-serif;\r\n    font-size: 16px;\r\n    font-weight: bold;\r\n    display: block;\r\n    padding: 10px 0;\r\n}\r\n\r\n.actionLinkNoPad {\r\n    padding: 0;\r\n}\r\n\r\n.button {\r\n    display: inline-block;\r\n    font-size: 17px;\r\n    background-color: #f3f3f3;\r\n    width: 200px;\r\n    height: 28px;\r\n    padding: 26px;\r\n    text-decoration: none;\r\n    color: #333333;\r\n    border: 1px solid #333333;\r\n    text-align: center;\r\n}\r\n\r\n.noListBullets {\r\n    list-style-type: none;\r\n}\r\n\r\n.text{\r\ncolor: #002677;\r\nfont-size: 36px;\r\nline-height: 48px;\r\n}\r\n\r\n.code{\r\nfont-size: 40px;\r\ncolor: #DB00FF;\r\nfont-weight: 70;\r\nline-height: 28px;\r\n}\r\n\r\n.img-rp-logo{\r\nmax-height: 50px;\r\nmax-width: 160px;\r\n}\r\n\r\n.textBottom{\r\nfont-size: 16px;\r\ncolor: #000000;\r\nline-height: 28px;\r\n}\r\n\r\n.textBottomBold{\r\nfont-weight: bold;\r\nfont-size: 16px;\r\ncolor: #000000;\r\nline-height: 28px;\r\n}\r\n\r\n\r\n#ActivateButton {\r\n    background-color: #002677;\r\n    border: none;\r\n    color: white;\r\n    text-align: center;\r\n    display: inline-block;\r\n    cursor: pointer;\r\n    padding: 12px 24px 12px 24px;\r\n    border-radius: 999px;\r\n    gap: 8px\r\n}\r\n\r\n#ActivateButton:hover {\r\n    background-color: #002677;\r\n}    \r\n\r\n\r\n\r\n\r\n\r\n    \r\n        \r\n            \r\n                    \r\n                \r\n                    \r\n                            \r\n                        \r\n\r\n\r\nYour HealthSafe ID&reg; code is:\r\n845022\r\nThis code will expire in 10 minutes. Please don&#39;t share this code with anyone.\r\nIf you did not make this request or need assistance, please call support at 1-800-419-0116 or support@Benefitter.com.\r\n\r\n\r\n\r\n\r\nPlease don\'t reply to this email. This mailbox is unmonitored.\r\nThank you for keeping your HealthSafe ID information current.\r\n\r\n\r\nThis e-mail, including attachments, may include confidential and/or proprietary information, and may be used only by the person or entity to which it is addressed. If the reader of this e-mail is not the intended recipient or intended recipient\'s authorized agent, the reader is hereby notified that any dissemination, distribution or copying of this e-mail is prohibited. If you have received this e-mail in error, please notify the sender by replying to this message and delete this e-mail immediately.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-12-04 16:52:36','2025-12-09 18:52:23','2025-12-09 18:52:23','2025-12-09 18:52:23',NULL,NULL,NULL),
(165,4,'<7C07E97E-89D6-4A2F-B35B-81207271F2C1@mavrix.one>',NULL,NULL,'Project Bolt Meeting - Bradenton Area EDC','Brian@mavrix.one','Brian Stufflebean','\r\n--Apple-Mail=_20802EA4-2E4C-429D-87D8-3759392CA741\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Type: text/html;\r\n	charset=us-ascii\r\n\r\n<html><head><meta http-equiv=3D\"content-type\" content=3D\"text/html; =\r\ncharset=3Dus-ascii\"></head><body style=3D\"overflow-wrap: break-word; =\r\n-webkit-nbsp-mode: space; line-break: after-white-space;\"><div><span =\r\nstyle=3D\"font-size: 14px;\"><br></span></div><div><p class=3D\"MsoNormal\" =\r\nstyle=3D\"margin: 0in; font-family: Aptos, sans-serif;\"><font =\r\ncolor=3D\"#0a2f41\"><span style=3D\"caret-color: rgb(10, 47, 65); =\r\nfont-size: 14px;\">Elizabeth and all,&nbsp;</span></font></p><p =\r\nclass=3D\"MsoNormal\" style=3D\"margin: 0in; font-family: Aptos, =\r\nsans-serif;\"><span style=3D\"font-size: 14px;\"><br></span></p><p =\r\nclass=3D\"MsoNormal\" style=3D\"margin: 0in; font-family: Aptos, =\r\nsans-serif;\"><font color=3D\"#0a2f41\"><span style=3D\"caret-color: rgb(10, =\r\n47, 65); font-size: 14px;\"><br></span></font></p><p class=3D\"MsoNormal\" =\r\nstyle=3D\"margin: 0in; font-family: Aptos, sans-serif;\"><span =\r\nstyle=3D\"color: rgb(10, 47, 65); font-size: 14px;\"><b>Can we confirm =\r\n12/16 at 1pm?</b></span></p><p class=3D\"MsoNormal\" style=3D\"margin: 0in; =\r\nfont-family: Aptos, sans-serif;\"><span style=3D\"color: rgb(10, 47, 65); =\r\nfont-size: 14px;\"><br></span></p><p class=3D\"MsoNormal\" style=3D\"margin: =\r\n0in;\"><font color=3D\"#0a2f41\" face=3D\"Aptos, sans-serif\" =\r\nstyle=3D\"font-size: 14px;\">We may have up to 3 <span style=3D\"caret-color:=\r\n rgb(10, 47, 65);\">additional</span>&nbsp;people joining as well, will =\r\ntry to get you a better headcount closer to the date. Thank =\r\nyou!</font></p><p class=3D\"MsoNormal\" style=3D\"margin: 0in;\"><font =\r\ncolor=3D\"#0a2f41\" face=3D\"Aptos, sans-serif\"><span style=3D\"font-size: =\r\n11pt;\"><br></span></font></p><p class=3D\"MsoNormal\" style=3D\"margin: =\r\n0in;\"><font color=3D\"#0a2f41\" face=3D\"Aptos, sans-serif\"><span =\r\nstyle=3D\"font-size: 11pt;\"><br></span></font></p></div><br><div>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; orphans: auto; text-align: start; text-indent: 0px; =\r\ntext-transform: none; white-space: normal; widows: auto; word-spacing: =\r\n0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><font size=3D\"2\">Best =\r\nregards,</font></div><div style=3D\"font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><font =\r\nsize=3D\"2\"><br></font></div><div style=3D\"font-family: Helvetica; =\r\nfont-size: 12px; font-style: normal; font-variant-caps: normal; =\r\nfont-weight: 400; letter-spacing: normal; orphans: auto; text-align: =\r\nstart; text-indent: 0px; text-transform: none; white-space: normal; =\r\nwidows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\" style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><b>Brian C. =\r\nStufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 =\r\nDirect</b></div><div style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><span style=3D\"font-size: =\r\n11px;\">(866)896-2423 Fax</span></div></div><span style=3D\"caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0); font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"></span><br class=3D\"Apple-interchange-newline\"><span><img =\r\nalt=3D\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" =\r\nsrc=3D\"cid:CB596987-D3CC-4C61-B9D3-CE1C1DF1C723\"></span><meta =\r\ncharset=3D\"UTF-8\"><div style=3D\"font-family: Helvetica; font-size: 12px; =\r\nfont-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br =\r\nclass=3D\"Apple-interchange-newline\"><br =\r\nclass=3D\"Apple-interchange-newline\"><a =\r\nhref=3D\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a =\r\nhref=3D\"https://mavrix1.com\">https://mavrix1.com/</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY =\r\nNOTICE:</b><span style=3D\"font-family: Helvetica; font-style: normal; =\r\nfont-weight: 400; font-size: =\r\n12px;\">&nbsp;This&nbsp;communication&nbsp;is =\r\nconfidential&nbsp;and&nbsp;intended only for the =\r\nintended&nbsp;recipient.&nbsp;&nbsp;If you are not the =\r\nintended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, =\r\nor&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any =\r\nsuch&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this =\r\ncommunication&nbsp;in error,&nbsp;please contact the sender =\r\nof&nbsp;the&nbsp;message to inform him or her of =\r\nthe&nbsp;error.<br><br></span></div>\r\n</div>\r\n\r\n<br></body></html>=\r\n\r\n--Apple-Mail=_20802EA4-2E4C-429D-87D8-3759392CA741\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\r\nContent-Type: image/png;\r\n	name=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\"\r\nContent-Id: <CB596987-D3CC-4C61-B9D3-CE1C1DF1C723>\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGwAAAAYCAYAAAAf1RgaAAAAAXNSR0IArs4c6QAAAIRlWElmTU0A\r\nKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdp\r\nAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAGyg\r\nAwAEAAAAAQAAABgAAAAABrPxEgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5h\r\nZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9\r\nIlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9y\r\nZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6\r\nYWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZm\r\nLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgog\r\nICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAA\r\nC6FJREFUaAXtWnuMVUcZnznPe/fuZYEtDxHCQ1ADBNuuAlKh24dRaqURWFotj5haKAn9SxOaauRi\r\nxEBsMMFSAmnUCDTKWtDioyEm3RLKq6VKC7Rg20VA5Lmwz3vPa8bfN+ecu+fevbugjQQrX5g735n5\r\nvm++13wz5yyc3YKb0gP19a8YTU33+NNmbx0puHjJtGsm+U7beoMxyRsaGrUJE45JxlbclMp/1JXK\r\nsZWM5XLwP6PG6+tzOgVr8tzN0wWTjRq3hojAw6TU+EfdGf9T9uVyGsutQNC4nDpn8zz0m7lmWEwE\r\njm6mbd/r3MCnzNk6DlEbyRFCqfNbAbyBEeaBlJzrkula1mOFQ683fvMcLT917tblGF8dbTgmhe8a\r\nZsbyvY4NhsbEdwy7ZrHntDHOtBuo7q2lGLyvGSnmOe2/fH3S3//EGhGsOZuf03RrKRMC/3wBL30f\r\nW24uxm6XHhcaQuxjgrwXMNpgt9p/3wfYGsrPMmC+07H8wPYFiyYfHj1gypwtr+JysZROMiG80wjO\r\nPftfnL9KpTaxoFQakk4y3WKB13Wc+97DbuB5hm5qXAvoAPzQ4GmG1HxRlCUMjZvC/7dLL7SCnkKK\r\nAPxmN388fr2Klq8fCI2yGGAzYXjXpRvZxBzGknqEcmxUt3xJmeqWH64S/5rwg+dI9+DOhc00pjF3\r\nMJPp51y3bRWXwuaafHNv46J/1H11Z5XGWsPqCDqDosbDo6uwd8fCI7HAW/2N9cD+HY+/gxWpdQMu\r\nIa0HmoNaa2BxDNd6gMp/zsfcv7rm9Gs/+bRuZ1OMBwJnmsA+LO6OIpeUGjZmcZdwbMfinEI4piUK\r\ntPDM9ND32s7sa8G1FTegnMgMnjJEeBfHMcXTLaOUP34iOULXNf1yx+UT76IoyMygzw0N3Avjuaa7\r\nKCtiyqQFB5uaVgT0atKoXk1i3tK+volpTU05Pz1s4gjZ1fEJyBJcZ4UH711zSPFBt+zHJ9f6+Qvj\r\nmNR1kg3HFG0MpflSCs3UrcHHNcNHUWoZj+KlG1rmQkfLsaO3fWpWtv2fb35B0+02KQMzlep/8uq5\r\nv56sq1tsjhlzv4j1m9B41Dh6tNEdO3amffLMnsk8KLiala2pqhn97pWzh07hWm/U168QuRx0mLmu\r\nxBA+dc7Wn1rp/su8QuuBD97a+o1LzX98Q9MzA6T0wjpbQh49oI6WQG+XS6Lj/DwK8lrfdZ8Bj4AV\r\nizG6sYT/Wg9wE0j2aFI+4bruacO2D0HuJ5EUJP9HfqHwXczraGWJUxQczmUyQ0zf3weu0eCjg+Ip\r\n6LWGqEzbfhKlJgeZA9VckbUUURGUcikUOo3K9Hs1K+VO33FmAa+CfRshf36k20UpxJLAdXdgjlip\r\nXFLvs0xmqOH7vwJ+N60npfwAu2em4zgnQjplnBw7c51dWzVwv50acLtbuPpsuMNAEcqhHidhN7wB\r\nSXTVJDroES3G+Z0YHxaRBcD3AO9AI8cQHTUTbQrmhjBNW6Nb1gko/lsodgrjr6Ll0Uh5ar0B3YZG\r\noY2HUTME5z8HPpULMU9q2m7g/SD/aT2VeicoFLbgmfRUNyj0MZB8sonDQVsRlNE0AT2ehz4qWEYq\r\nNQMKr8MgTXWhfw09MlY5WA3SBECAvz90OY5g91MjYbJG5yDLe4XCAiTUYcz9GG0Qgrod8lcgqX6A\r\nZ+VbPN/NfH8L5AxXMhDwwHEWYvIqnimoJK+iX8jAcqAySC4/gkXuBdZeTgDnN3BN2xYZ+Aqy64vl\r\nNPRsWNbTCNYqwqH4WOpB+zI6atcHlIlBcBRrUeaPRGYO8To7D0OHRZBJmYtCKTeZpvm253nkqPKg\r\nkQMC3bbXgf8+ogfshYOWhKjKrlGQQUpiGfkzzD0Zz/XW6+n01xG08mlKUg82PoOgvQV8M2QORr8S\r\nz5/xbftx03EewRrPYpwWozVXgf57kaC+qoQiqRSwkJfzLiC4CykgoynTiN7DWm1qNPyhnUUQ0xBO\r\niruga0mkZ2hdNnub5Ti0O2NrEyTEWgSwcy8IAjJYkjMBSCacawDarUiIp5AQq2F4WmjabzD8WTRc\r\nqYpZqoKnyrCUyyIHnfN1fQ5oaH0Ljc5CfPcJ1cCaxE9Ac7TLyoGcWr6LY5rYJgNB2GXb9jTsmm2Q\r\nfyfabMN178IqQ4DDItmBKrEkyOdfiJhVYsWCeut7D1hoNAlJgrIKP7hdFoEMIAgtLsUpcDEoOtPz\r\nZsO5GyPnxXN995EzYWgyKXQ6fxCMiShT86HPWGTxC3DUVyCMHKey3Uinp+Ec2RAtQCXpYdbZGZd5\r\nVaIwljBHJSWRJ+2h5+sF4qOAGjiP3kdfB722o/8a2iA0gvNwxnQnn/8bcNKT6ONgA+0dygNSThkr\r\nTX2ME00Sj3limuRcEo/p/Cib8V0TWYbDFuXoJFpzecMcjZ0GY28ZzXBmPIZ5OmupvDyA8wGfdBR4\r\ndLCjbP0aT8pO7J4nUOZ341ntvJCsx29SZ8IrtR5MZQOUAEoOJQzwiWo+TDjMyGpE58GIJz4ro8e+\r\nu752WN+c//lsmM1QHsgf4MBHkOYZiIuzPZZMdC520AhE6yBwys6kMykjade6MGKez/l+OILK53Jc\r\nQo7QJQRn34sI4nCMkZPWIrjPAyOeXhOASD8kxFUggB6LkDCboINFCQWDqPxNR0UYAUPW4lydgPPy\r\nWxgj2/tKoqJKlXZY7JS4LxL3glSii8fiPskabn0YgB1Ug4ksy2bTaJkeDYEUQlQVmcFQxENEGVoo\r\nFJrxOA9NzcMxa1CGfocFKLspWLtQKr+t8MqlJyk3iUcs1+xiHvIn2Sex03+I6vAL4BSsADotRcI8\r\nirEv4fkYxhFH/hjodtNFCo+URJXiQaRFSOwwekfFu3J42JKRyfOnyBAhREcrEl1CRjTbfSZQNpcA\r\nruT7kWGd4M2A98tQuJl5nguiUGaSOpWiFzADdIPUWpSpPenIUAM7Fd/h7GWQvR70w0BP70VA5fuB\r\nZT3KHHV/ih1KU91AL/nhpYYYeujcTZjAiKcbYh+QHdVIli3oH4pkXgQ+D8FqQm/iPZK+ZtxF5y3m\r\nZwKfjkrwNkunH/Lz+X14rqwjJgiSi+KLPkqrZl1G1RBcs66OGlUfOTFHkeGsvl4xGUYN6q5Bvixw\r\nzY5ujPRVIGp1ixUd0zMFrnY6PtLpVV00qBS2+kFR689MM7GWkUbrj4bd1qPReAZ0eD8xujgzW6qr\r\nh0bZHOkUrhmwhgbdc5znOE+tZ9x08NZ1Ge2cptfOY+3tl1hdHRKQdmhCz/rQPt2ogqNhC3TV9LTS\r\nk01o6LanEg+vwhpWB3gkfKBefQYMqKsxUtmXODdnQYdW9Ac1c+AMJFMTw9cOrO3DhxTcq9jxDyhd\r\nmQleoxo+32FWDbsDc4JsYbmVyvfD81nVk+8Iwi8dqf7L8Bb9F6+2Y8qhTer1hLKMyk2lay3xEdhh\r\np+h6OxNoMdoVBCQLQS4BmovLSclE2QPJoUa0lMXXglg30qv8bKzEey09r8VDa9Ba5Dc4X31EoApV\r\nQCOIdQ+fSn9TeCRe0pl8VGIf/VeBQu3Zg1aq/x2JLx3kB3yzu5jq9/mGbV3ZVA123nm9s9UjYT3A\r\ntLOyfUBaOb82bxmdrWewS3pCki57JW/i7z6kOCvYvpZyDFEYOvh6nFkUPAxYy7kLcTCK4+VILJd0\r\na710UTdMp8+kSOoZ2ZOsPOXi1XMFnjSNscwgJ2t12GdBBZur29kVnWwtF+J7tvKFP6LGh13WpSu1\r\nIpt6z4TPlX00n65uFV3+KRsfZZEIoQlqh+lGalkQ5Nuw88/hICvmAw7FHobSymQNzga1ICnSGx0O\r\n2CIN0eF8UYWfZJTP0fz1QFIG6RF7IsbL5ZbrFusfr1VJl3iNmKZSn7Sf5mOeSuM0X54BldZNyiFc\r\n0aiDUHwMZTsb+AX6lihxSGIXO6yfZtjh9zGivgU3jQeE7zCKUeDnq3EDYy+7nRfpL4wdgZcv2RE3\r\njcb/74rgq6NAsBCrXf8CAf/+y47p6ecAAAAASUVORK5CYII=\r\n--Apple-Mail=_20802EA4-2E4C-429D-87D8-3759392CA741--','\r\nElizabeth and all, \r\n\r\n\r\nCan we confirm 12/16 at 1pm?\r\n\r\nWe may have up to 3 additional people joining as well, will try to get you a better headcount closer to the date. Thank you!\r\n\r\n\r\n\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n￼\r\n\r\n\r\nbrian@mavrix.one <mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-12-04 17:19:07','2025-12-09 18:52:23','2025-12-09 18:52:23','2025-12-09 18:52:23',NULL,NULL,NULL),
(166,4,'<CAGOCFXhCfp7nEA6nWSkzs4JDNSP6LS=aYLYrtzgsYbrdedn0FA@mail.gmail.com>',NULL,NULL,'Re: Sol-Ark Preferred Prototype Specs','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Here it is. </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Dec 3, 2025 at 8:50 PM Brian Stufflebean &lt;Brian@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div><span style=\"font-size:14px\"><b>Nathan and Jordan, </b></span><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">I need to have the proposed Sol-Ark annual units, price per unit and total annual projected forecast for the next 5-years, broken out into an Excel table, by year. </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">We need this ASAP for meetings tomorrow (Thursday, 12/4/25)  afternoon. </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Need the same thing for Sonnen and Mitsubishi.</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Please place at high priority.  </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Thank you,</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Brian </span><br><div><div><br><blockquote type=\"cite\"><div>On Nov 5, 2025, at 11:20 PM, Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:</div><br><div><div dir=\"auto\">Will respond more clearly tomorrow morning.  I want to make sure Nick is included with the communication.   </div><div dir=\"auto\"><br></div><div dir=\"auto\">The BMS could handle 300A for 15 seconds.  It is a heat dissipation issue from FETS.  It can be programmed in back end software.  </div><div dir=\"auto\"><br></div><div dir=\"auto\">Susan and Wilson have new relationship together so their working relationship and knowledge needs to be communicated.   </div><div dir=\"auto\"><br></div><div dir=\"auto\">Try not to be persuaded from GSL to accept their parameters.  Sol Ark is just setting their battery management system and cells to a better quality which will lower their after sales support and align the battery for better performance and balancing.  Chinese have very narrow scope and we need to be specific on laying out our requirements for the project. </div><div dir=\"auto\"><br></div><div dir=\"auto\">Let’s discuss tomorrow morning. <br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_-4108392742560738955_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div><div><br></div><div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Nov 5, 2025 at 10:36 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Good evening team.  </div><div><br></div><div>Back from Sol-Ark - BMS question. </div><div><br></div><div><span id=\"m_-4108392742560738955cid:ii_mhmv8y361\">&lt;image (7).png&gt;</span><br></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Is there any possibility of setting the Max Charge/Discharge at 200A to align with the performance targets we’re aiming for? I understand that maintaining 300A for 15 seconds may not be feasible, 15 seconds is a long duration, and most appliances don’t require that much ramp-up time. Could you share any data regarding the peak power capability for a shorter duration, such as 10ms or less?</span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">I reached out to Susan and Wilson on this.  The 16kWh battery can support 200Ah burst but not continuous.  The 314Ah cell is a .5C charge/discharge so they don&#39;t suggest continuous over 157A.  </span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">I want to confirm with you and see if you have any thoughts or ideas before I respond.  </span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Thanks,</span></div></div><div dir=\"ltr\"><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\"><br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt\">Partner | President <br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Lithium Battery Company</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Direct: (917) 266-5336<br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\">Lithium Battery Company</a></span></div></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Nov 3, 2025 at 2:10 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Hi Nathan and team,</div><div><br></div><div>Here are the list of preferred prototype specs from Sol-Ark</div><div><br></div><div><div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\">Please see the below specs for the prototype battery for testing:</div><ul style=\"margin-top:0px;margin-bottom:0px\"><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">LBC512314</div></li><ul style=\"margin-top:0px;margin-bottom:0px\"><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Capacity: 16.1kWh</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Amp Hours (Ah): 314Ah</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Nominal Voltage: 51.2v</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Operating Range: 48v - 56v</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Max Continuous Charge: 200A Optimal | 150A Minimum</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Max Continuous Discharge: 220A Optimal | 200A Minimum</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Peak Discharge Current: 300A</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Communication Protocol: RS-485 Modbus RTU &amp; CANBUS<span style=\"font-size:11pt\"></span></div></li></ul></ul><div><font face=\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif\"><span style=\"font-size:14.6667px\"><br></span></font></div></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Here is a list of specs that would be comparable:</span><font face=\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif\"><span style=\"font-size:14.6667px\"></span></font></div><div><span id=\"m_-4108392742560738955cid:ii_mhjik7da1\">&lt;image (5).png&gt;</span><br></div><div><br></div><div>I have reached out to Susan from GSL and shared the specs. I&#39;ve also inquired if this would be available from one of their dealers in the US.</div><div><br></div><div>Let me know if you have any other thoughts on what we should send thier way.</div><div><br></div><div>Best, </div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\"><br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt\">Partner | President <br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Lithium Battery Company</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Direct: (917) 266-5336<br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\">Lithium Battery Company</a></span></div></div></div></div></div>\r\n</blockquote></div>\r\n</blockquote></div></div>\r\n</div></blockquote></div><br><div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\">Best regards,</font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\" style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><b>Brian C. Stufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 Direct</b></div><div style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><span style=\"font-size:11px\">(866)896-2423 Fax</span></div></div><span style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"></span><br><span><img alt=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" src=\"cid:ii_19aea613d1c4a653afc1\"></span><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><br><a href=\"mailto:brian@mavrix.one\" target=\"_blank\">brian@mavrix.one</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><a href=\"https://mavrix1.com\" target=\"_blank\">https://mavrix1.com/</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"> This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.<br><br></span></div>\r\n</div>\r\n<br></div></div></div></blockquote></div>','Here it is.\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Wed, Dec 3, 2025 at 8:50 PM Brian Stufflebean <Brian@mavrix.one> wrote:\r\n\r\n> *Nathan and Jordan, *\r\n>\r\n> I need to have the proposed Sol-Ark annual units, price per unit and total\r\n> annual projected forecast for the next 5-years, broken out into an Excel\r\n> table, by year.\r\n>\r\n> We need this ASAP for meetings tomorrow (Thursday, 12/4/25)  afternoon.\r\n>\r\n> Need the same thing for Sonnen and Mitsubishi.\r\n>\r\n> Please place at high priority.\r\n>\r\n> Thank you,\r\n>\r\n> Brian\r\n>\r\n> On Nov 5, 2025, at 11:20 PM, Nathan Staron <\r\n> Nathan@lithiumbatterycompany.com> wrote:\r\n>\r\n> Will respond more clearly tomorrow morning.  I want to make sure Nick is\r\n> included with the communication.\r\n>\r\n> The BMS could handle 300A for 15 seconds.  It is a heat dissipation issue\r\n> from FETS.  It can be programmed in back end software.\r\n>\r\n> Susan and Wilson have new relationship together so their working\r\n> relationship and knowledge needs to be communicated.\r\n>\r\n> Try not to be persuaded from GSL to accept their parameters.  Sol Ark is\r\n> just setting their battery management system and cells to a better quality\r\n> which will lower their after sales support and align the battery for better\r\n> performance and balancing.  Chinese have very narrow scope and we need to\r\n> be specific on laying out our requirements for the project.\r\n>\r\n> Let’s discuss tomorrow morning.\r\n>\r\n>\r\n> <https://lithiumbatterycompany.com/>\r\n> <https://www.instagram.com/lithiumbatteryco/>\r\n> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n> <https://www.facebook.com/LithiumBatteryCompany/>\r\n> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n> <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074\r\n> Phone 844-GET-LITHIUM\r\n> Nathan@lithiumbatterycompany.com\r\n> Schedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>\r\n>\r\n>\r\n> On Wed, Nov 5, 2025 at 10:36 PM Jordan Wroblewski <\r\n> jordan@lithiumbatterycompany.com> wrote:\r\n>\r\n>> Good evening team.\r\n>>\r\n>> Back from Sol-Ark - BMS question.\r\n>>\r\n>> <image (7).png>\r\n>> Is there any possibility of setting the Max Charge/Discharge at 200A to\r\n>> align with the performance targets we’re aiming for? I understand that\r\n>> maintaining 300A for 15 seconds may not be feasible, 15 seconds is a long\r\n>> duration, and most appliances don’t require that much ramp-up time. Could\r\n>> you share any data regarding the peak power capability for a shorter\r\n>> duration, such as 10ms or less?\r\n>>\r\n>> I reached out to Susan and Wilson on this.  The 16kWh battery can support\r\n>> 200Ah burst but not continuous.  The 314Ah cell is a .5C charge/discharge\r\n>> so they don\'t suggest continuous over 157A.\r\n>>\r\n>> I want to confirm with you and see if you have any thoughts or ideas\r\n>> before I respond.\r\n>>\r\n>> Thanks,\r\n>>\r\n>> Jordan G. Wroblewski\r\n>> Partner | President\r\n>> Lithium Battery Company\r\n>> Direct: (917) 266-5336\r\n>> *jordan@lithiumbatterycompany.com\r\n>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n>>\r\n>>\r\n>> On Mon, Nov 3, 2025 at 2:10 PM Jordan Wroblewski <\r\n>> jordan@lithiumbatterycompany.com> wrote:\r\n>>\r\n>>> Hi Nathan and team,\r\n>>>\r\n>>> Here are the list of preferred prototype specs from Sol-Ark\r\n>>>\r\n>>> Please see the below specs for the prototype battery for testing:\r\n>>>\r\n>>>    - LBC512314\r\n>>>    - Capacity: 16.1kWh\r\n>>>       - Amp Hours (Ah): 314Ah\r\n>>>       - Nominal Voltage: 51.2v\r\n>>>       - Operating Range: 48v - 56v\r\n>>>       - Max Continuous Charge: 200A Optimal | 150A Minimum\r\n>>>       - Max Continuous Discharge: 220A Optimal | 200A Minimum\r\n>>>       - Peak Discharge Current: 300A\r\n>>>       - Communication Protocol: RS-485 Modbus RTU & CANBUS\r\n>>>\r\n>>>\r\n>>> Here is a list of specs that would be comparable:\r\n>>> <image (5).png>\r\n>>>\r\n>>> I have reached out to Susan from GSL and shared the specs. I\'ve also\r\n>>> inquired if this would be available from one of their dealers in the US.\r\n>>>\r\n>>> Let me know if you have any other thoughts on what we should send thier\r\n>>> way.\r\n>>>\r\n>>> Best,\r\n>>>\r\n>>> Jordan G. Wroblewski\r\n>>> Partner | President\r\n>>> Lithium Battery Company\r\n>>> Direct: (917) 266-5336\r\n>>> *jordan@lithiumbatterycompany.com\r\n>>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n>>>\r\n>>\r\n> Best regards,\r\n>\r\n>\r\n>\r\n> *Brian C. Stufflebean*\r\n> CEO, Co-Founder\r\n> *(941)545-4153 Direct*\r\n> (866)896-2423 Fax\r\n>\r\n> [image: CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png]\r\n>\r\n>\r\n> brian@mavrix.one\r\n>\r\n> https://mavrix1.com/\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n> *CONFIDENTIALITY NOTICE:* This communication is confidential and intended\r\n> only for the intended recipient.  If you are not the\r\n> intended recipient, you may not copy, disclose, or distribute this\r\n> message to anyone else; any such actions may be unlawful. If you\r\n> have received this communication in error, please contact the sender\r\n> of the message to inform him or her of the error.\r\n>\r\n>\r\n>',0,0,0,0,0,0,'2025-12-04 17:20:41','2025-12-09 18:52:23','2025-12-09 18:52:23','2025-12-09 18:52:23',NULL,NULL,NULL),
(167,4,'<CAGOCFXh5ukJUFYcFEjNy0=U=emvYT4oGo-RG7tHiRG2gGD7AEQ@mail.gmail.com>',NULL,NULL,'Re: Sol-Ark Preferred Prototype Specs','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Dec 4, 2025 at 12:20 PM Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Here it is. </div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_8061372820603128261_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Dec 3, 2025 at 8:50 PM Brian Stufflebean &lt;Brian@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div><span style=\"font-size:14px\"><b>Nathan and Jordan, </b></span><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">I need to have the proposed Sol-Ark annual units, price per unit and total annual projected forecast for the next 5-years, broken out into an Excel table, by year. </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">We need this ASAP for meetings tomorrow (Thursday, 12/4/25)  afternoon. </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Need the same thing for Sonnen and Mitsubishi.</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Please place at high priority.  </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Thank you,</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Brian </span><br><div><div><br><blockquote type=\"cite\"><div>On Nov 5, 2025, at 11:20 PM, Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:</div><br><div><div dir=\"auto\">Will respond more clearly tomorrow morning.  I want to make sure Nick is included with the communication.   </div><div dir=\"auto\"><br></div><div dir=\"auto\">The BMS could handle 300A for 15 seconds.  It is a heat dissipation issue from FETS.  It can be programmed in back end software.  </div><div dir=\"auto\"><br></div><div dir=\"auto\">Susan and Wilson have new relationship together so their working relationship and knowledge needs to be communicated.   </div><div dir=\"auto\"><br></div><div dir=\"auto\">Try not to be persuaded from GSL to accept their parameters.  Sol Ark is just setting their battery management system and cells to a better quality which will lower their after sales support and align the battery for better performance and balancing.  Chinese have very narrow scope and we need to be specific on laying out our requirements for the project. </div><div dir=\"auto\"><br></div><div dir=\"auto\">Let’s discuss tomorrow morning. <br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_8061372820603128261_m_-4108392742560738955_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div><div><br></div><div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Nov 5, 2025 at 10:36 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Good evening team.  </div><div><br></div><div>Back from Sol-Ark - BMS question. </div><div><br></div><div><span id=\"m_8061372820603128261m_-4108392742560738955cid:ii_mhmv8y361\">&lt;image (7).png&gt;</span><br></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Is there any possibility of setting the Max Charge/Discharge at 200A to align with the performance targets we’re aiming for? I understand that maintaining 300A for 15 seconds may not be feasible, 15 seconds is a long duration, and most appliances don’t require that much ramp-up time. Could you share any data regarding the peak power capability for a shorter duration, such as 10ms or less?</span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">I reached out to Susan and Wilson on this.  The 16kWh battery can support 200Ah burst but not continuous.  The 314Ah cell is a .5C charge/discharge so they don&#39;t suggest continuous over 157A.  </span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">I want to confirm with you and see if you have any thoughts or ideas before I respond.  </span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Thanks,</span></div></div><div dir=\"ltr\"><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\"><br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt\">Partner | President <br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Lithium Battery Company</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Direct: (917) 266-5336<br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\">Lithium Battery Company</a></span></div></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Nov 3, 2025 at 2:10 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Hi Nathan and team,</div><div><br></div><div>Here are the list of preferred prototype specs from Sol-Ark</div><div><br></div><div><div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\">Please see the below specs for the prototype battery for testing:</div><ul style=\"margin-top:0px;margin-bottom:0px\"><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">LBC512314</div></li><ul style=\"margin-top:0px;margin-bottom:0px\"><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Capacity: 16.1kWh</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Amp Hours (Ah): 314Ah</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Nominal Voltage: 51.2v</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Operating Range: 48v - 56v</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Max Continuous Charge: 200A Optimal | 150A Minimum</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Max Continuous Discharge: 220A Optimal | 200A Minimum</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Peak Discharge Current: 300A</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Communication Protocol: RS-485 Modbus RTU &amp; CANBUS<span style=\"font-size:11pt\"></span></div></li></ul></ul><div><font face=\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif\"><span style=\"font-size:14.6667px\"><br></span></font></div></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Here is a list of specs that would be comparable:</span><font face=\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif\"><span style=\"font-size:14.6667px\"></span></font></div><div><span id=\"m_8061372820603128261m_-4108392742560738955cid:ii_mhjik7da1\">&lt;image (5).png&gt;</span><br></div><div><br></div><div>I have reached out to Susan from GSL and shared the specs. I&#39;ve also inquired if this would be available from one of their dealers in the US.</div><div><br></div><div>Let me know if you have any other thoughts on what we should send thier way.</div><div><br></div><div>Best, </div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\"><br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt\">Partner | President <br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Lithium Battery Company</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Direct: (917) 266-5336<br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\">Lithium Battery Company</a></span></div></div></div></div></div>\r\n</blockquote></div>\r\n</blockquote></div></div>\r\n</div></blockquote></div><br><div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\">Best regards,</font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\" style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><b>Brian C. Stufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 Direct</b></div><div style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><span style=\"font-size:11px\">(866)896-2423 Fax</span></div></div><span style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"></span><br><span><img alt=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" src=\"cid:ii_19aea613d1c4a653afc1\"></span><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><br><a href=\"mailto:brian@mavrix.one\" target=\"_blank\">brian@mavrix.one</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><a href=\"https://mavrix1.com\" target=\"_blank\">https://mavrix1.com/</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"> This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.<br><br></span></div>\r\n</div>\r\n<br></div></div></div></blockquote></div>\r\n</blockquote></div>','<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Thu, Dec 4, 2025 at 12:20 PM Nathan Staron <\r\nNathan@lithiumbatterycompany.com> wrote:\r\n\r\n> Here it is.\r\n>\r\n>\r\n> <https://lithiumbatterycompany.com/>\r\n> <https://www.instagram.com/lithiumbatteryco/>\r\n> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n> <https://www.facebook.com/LithiumBatteryCompany/>\r\n> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n> <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074\r\n> Phone 844-GET-LITHIUM\r\n> Nathan@lithiumbatterycompany.com\r\n> Schedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>\r\n>\r\n>\r\n> On Wed, Dec 3, 2025 at 8:50 PM Brian Stufflebean <Brian@mavrix.one> wrote:\r\n>\r\n>> *Nathan and Jordan, *\r\n>>\r\n>> I need to have the proposed Sol-Ark annual units, price per unit and\r\n>> total annual projected forecast for the next 5-years, broken out into an\r\n>> Excel table, by year.\r\n>>\r\n>> We need this ASAP for meetings tomorrow (Thursday, 12/4/25)  afternoon.\r\n>>\r\n>> Need the same thing for Sonnen and Mitsubishi.\r\n>>\r\n>> Please place at high priority.\r\n>>\r\n>> Thank you,\r\n>>\r\n>> Brian\r\n>>\r\n>> On Nov 5, 2025, at 11:20 PM, Nathan Staron <\r\n>> Nathan@lithiumbatterycompany.com> wrote:\r\n>>\r\n>> Will respond more clearly tomorrow morning.  I want to make sure Nick is\r\n>> included with the communication.\r\n>>\r\n>> The BMS could handle 300A for 15 seconds.  It is a heat dissipation issue\r\n>> from FETS.  It can be programmed in back end software.\r\n>>\r\n>> Susan and Wilson have new relationship together so their working\r\n>> relationship and knowledge needs to be communicated.\r\n>>\r\n>> Try not to be persuaded from GSL to accept their parameters.  Sol Ark is\r\n>> just setting their battery management system and cells to a better quality\r\n>> which will lower their after sales support and align the battery for better\r\n>> performance and balancing.  Chinese have very narrow scope and we need to\r\n>> be specific on laying out our requirements for the project.\r\n>>\r\n>> Let’s discuss tomorrow morning.\r\n>>\r\n>>\r\n>> <https://lithiumbatterycompany.com/>\r\n>> <https://www.instagram.com/lithiumbatteryco/>\r\n>> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n>> <https://www.facebook.com/LithiumBatteryCompany/>\r\n>> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n>> <https://lithiumbatterycompany.com/>\r\n>> NATHAN A. STARON\r\n>> Founder / CEO\r\n>> Lithium Battery Company\r\n>> Cell Phone 813-504-0074\r\n>> Phone 844-GET-LITHIUM\r\n>> Nathan@lithiumbatterycompany.com\r\n>> Schedule A Zoom\r\n>> <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>>\r\n>>\r\n>>\r\n>> On Wed, Nov 5, 2025 at 10:36 PM Jordan Wroblewski <\r\n>> jordan@lithiumbatterycompany.com> wrote:\r\n>>\r\n>>> Good evening team.\r\n>>>\r\n>>> Back from Sol-Ark - BMS question.\r\n>>>\r\n>>> <image (7).png>\r\n>>> Is there any possibility of setting the Max Charge/Discharge at 200A to\r\n>>> align with the performance targets we’re aiming for? I understand that\r\n>>> maintaining 300A for 15 seconds may not be feasible, 15 seconds is a long\r\n>>> duration, and most appliances don’t require that much ramp-up time. Could\r\n>>> you share any data regarding the peak power capability for a shorter\r\n>>> duration, such as 10ms or less?\r\n>>>\r\n>>> I reached out to Susan and Wilson on this.  The 16kWh battery can\r\n>>> support 200Ah burst but not continuous.  The 314Ah cell is a .5C\r\n>>> charge/discharge so they don\'t suggest continuous over 157A.\r\n>>>\r\n>>> I want to confirm with you and see if you have any thoughts or ideas\r\n>>> before I respond.\r\n>>>\r\n>>> Thanks,\r\n>>>\r\n>>> Jordan G. Wroblewski\r\n>>> Partner | President\r\n>>> Lithium Battery Company\r\n>>> Direct: (917) 266-5336\r\n>>> *jordan@lithiumbatterycompany.com\r\n>>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n>>>\r\n>>>\r\n>>> On Mon, Nov 3, 2025 at 2:10 PM Jordan Wroblewski <\r\n>>> jordan@lithiumbatterycompany.com> wrote:\r\n>>>\r\n>>>> Hi Nathan and team,\r\n>>>>\r\n>>>> Here are the list of preferred prototype specs from Sol-Ark\r\n>>>>\r\n>>>> Please see the below specs for the prototype battery for testing:\r\n>>>>\r\n>>>>    - LBC512314\r\n>>>>    - Capacity: 16.1kWh\r\n>>>>       - Amp Hours (Ah): 314Ah\r\n>>>>       - Nominal Voltage: 51.2v\r\n>>>>       - Operating Range: 48v - 56v\r\n>>>>       - Max Continuous Charge: 200A Optimal | 150A Minimum\r\n>>>>       - Max Continuous Discharge: 220A Optimal | 200A Minimum\r\n>>>>       - Peak Discharge Current: 300A\r\n>>>>       - Communication Protocol: RS-485 Modbus RTU & CANBUS\r\n>>>>\r\n>>>>\r\n>>>> Here is a list of specs that would be comparable:\r\n>>>> <image (5).png>\r\n>>>>\r\n>>>> I have reached out to Susan from GSL and shared the specs. I\'ve also\r\n>>>> inquired if this would be available from one of their dealers in the US.\r\n>>>>\r\n>>>> Let me know if you have any other thoughts on what we should send thier\r\n>>>> way.\r\n>>>>\r\n>>>> Best,\r\n>>>>\r\n>>>> Jordan G. Wroblewski\r\n>>>> Partner | President\r\n>>>> Lithium Battery Company\r\n>>>> Direct: (917) 266-5336\r\n>>>> *jordan@lithiumbatterycompany.com\r\n>>>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n>>>>\r\n>>>\r\n>> Best regards,\r\n>>\r\n>>\r\n>>\r\n>> *Brian C. Stufflebean*\r\n>> CEO, Co-Founder\r\n>> *(941)545-4153 Direct*\r\n>> (866)896-2423 Fax\r\n>>\r\n>> [image: CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png]\r\n>>\r\n>>\r\n>> brian@mavrix.one\r\n>>\r\n>> https://mavrix1.com/\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>> *CONFIDENTIALITY NOTICE:* This communication is\r\n>> confidential and intended only for the intended recipient.  If you are not\r\n>> the intended recipient, you may not copy, disclose, or distribute this\r\n>> message to anyone else; any such actions may be unlawful. If you\r\n>> have received this communication in error, please contact the sender\r\n>> of the message to inform him or her of the error.\r\n>>\r\n>>\r\n>>',0,0,0,0,0,0,'2025-12-04 17:36:31','2025-12-09 18:52:24','2025-12-09 18:52:24','2025-12-09 18:52:24',NULL,NULL,NULL),
(168,4,'<20251204180730.8DECF9281BD3@scb-lp-273.ad.rit.edu>',NULL,NULL,'Calendar Event Invitation: Demo','noreply@example.com','Admin User','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">Demo</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 30, 2025 7:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 30, 2025 9:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666\r\n ;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n    <tr>\r\n        <td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n            <table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n                <tr>\r\n                    <!-- LEFT COLUMN -->\r\n                    <td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n                        <div style=\"margin-bottom: 10px;\">\r\n                            <strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br>\r\n                            <span style=\"font-size: 12px; color: #666;\">Administrator</span>\r\n                        </div>\r\n\r\n                        <div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n                            <div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n                            <div>Mobile: 906-123-4567</div>\r\n                            <div>Office: 906-555-4567</div>\r\n                            <div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n                        </div>\r\n                    </td>\r\n\r\n                    <!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n                    <td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\">\r\n                        <img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n\r\n                        <div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">\r\n                            3900 W. Coachman Ave.<br>\r\n                            Tampa, FL 33611\r\n                        </div>\r\n                    </td>\r\n                </tr>\r\n            </table>\r\n        </td>\r\n    </tr>\r\n\r\n    <tr>\r\n        <td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n            <div style=\"font-size: 9px; color: #888; line-height: 1.4;\">\r\n                <strong>CONFIDENTIALITY NOTICE:</strong><br>\r\n                <em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br>\r\n                <em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br>\r\n                <em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br>\r\n                <em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em>\r\n            </div>\r\n        </td>\r\n    </tr>\r\n</table></div>\r\n','📅 Calendar Event InvitationDemo📅 Start:Nov 30, 2025 7:30 PM🕐 End:Nov 30, 2025 9:00 PM📍 Location:Not specifiedView Calendar\r\n    \r\n        \r\n            \r\n                \r\n                    \r\n                    \r\n                        \r\n                            Admin User\r\n                            Administrator\r\n                        \r\n\r\n                        \r\n                            admin@mavrix.one\r\n                            Mobile: 906-123-4567\r\n                            Office: 906-555-4567\r\n                            https://mavrix1.com\r\n                        \r\n                    \r\n\r\n                    \r\n                    \r\n                        \r\n\r\n                        \r\n                            3900 W. Coachman Ave.\r\n                            Tampa, FL 33611\r\n                        \r\n                    \r\n                \r\n            \r\n        \r\n    \r\n\r\n    \r\n        \r\n            \r\n                CONFIDENTIALITY NOTICE:\r\n                This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.\r\n                This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n                If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n                Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n            \r\n        \r\n    \r\n\r\n',0,0,0,0,0,0,'2025-12-04 18:07:29','2025-12-09 18:52:24','2025-12-09 18:52:24','2025-12-09 18:52:24',NULL,NULL,NULL),
(169,4,'<A59F56FA-A716-4177-8FE9-7A4F200C9700@mavrix.one>',NULL,NULL,'Re: Sol-Ark Preferred Prototype Specs','Brian@mavrix.one','Brian Stufflebean','\r\n--Apple-Mail=_26AA5D79-3F86-4FD2-9EBD-961362614060\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Type: text/html;\r\n	charset=utf-8\r\n\r\n<html><head><meta http-equiv=3D\"content-type\" content=3D\"text/html; =\r\ncharset=3Dutf-8\"></head><body style=3D\"overflow-wrap: break-word; =\r\n-webkit-nbsp-mode: space; line-break: after-white-space;\"><span =\r\nstyle=3D\"font-size: 14px;\">Nathan,</span><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: 14px;\">Please =\r\nremove LiIon from the reserved production list due to their current =\r\nstatus.</span></div><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: 14px;\">Thank =\r\nyou.</span></div><div><br></div><div><br =\r\nid=3D\"lineBreakAtBeginningOfMessage\"><div><br><blockquote =\r\ntype=3D\"cite\"><div>On Dec 4, 2025, at 12:36=E2=80=AFPM, Nathan Staron =\r\n&lt;Nathan@lithiumbatterycompany.com&gt; wrote:</div><br =\r\nclass=3D\"Apple-interchange-newline\"><div><div dir=3D\"ltr\"><div><br =\r\nclear=3D\"all\"></div><div><div dir=3D\"ltr\" class=3D\"gmail_signature\" =\r\ndata-smartmail=3D\"gmail_signature\"><div =\r\ndir=3D\"ltr\"><br><div><br></div><div><table cellpadding=3D\"0\" =\r\ncellspacing=3D\"0\" border=3D\"0\" style=3D\"border: medium; border-collapse: =\r\ncollapse; font-size: 10px; font-family: Inter, sans-serif;\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;line-height:16px\"><table =\r\ncellpadding=3D\"0\" cellspacing=3D\"0\" style=3D\"border:none\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td valign=3D\"top\" =\r\nalign=3D\"left\" style=3D\"border:1px solid =\r\nrgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px =\r\n8px 8px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://lithiumbatterycompany.com/\" target=3D\"_blank\"><img =\r\nalt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/web-icon=\r\n.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.instagram.com/lithiumbatteryco/\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/insta-ic=\r\non.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.linkedin.com/company/the-lithium-battery-company\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/linkedin=\r\n-icon.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.facebook.com/LithiumBatteryCompany/\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/facebook=\r\n-icon.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.youtube.com/c/LithiumBatteryCompany\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/youtube-=\r\nicon.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr></tbody></table></td><td =\r\nwidth=3D\"8\" =\r\nstyle=3D\"border:none;border-collapse:collapse;display:revert\">&nbsp;</td><=\r\ntd valign=3D\"top\" align=3D\"left\" style=3D\"border:1px solid =\r\nrgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\">=\r\n<table width=3D\"100%\" border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td align=3D\"left\" =\r\nvalign=3D\"middle\" style=3D\"border:none;border-collapse:collapse\"><table =\r\nwidth=3D\"100%\" border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><a =\r\nhref=3D\"https://lithiumbatterycompany.com/\" target=3D\"_blank\"><img =\r\nsrc=3D\"https://app.customesignature.com/upload/signature/11122/11122.png\" =\r\nwidth=3D\"170\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:0px 0px =\r\n10px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:15px 0px =\r\n0px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td align=3D\"left\" =\r\nvalign=3D\"middle\" style=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:20px\">NATHAN A. =\r\nSTARON</span></td><td align=3D\"left\" valign=3D\"middle\" =\r\nstyle=3D\"border:none;border-collapse:collapse;padding-left:5px\"><img =\r\nwidth=3D\"15\" height=3D\"15\" =\r\nsrc=3D\"https://app.customesignature.com/images/verify.gif\" =\r\nstyle=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-size:12px\">Founder / =\r\nCEO</span></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Lithium Battery =\r\nCompany</span></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Cell Phone</span>&nbsp;<a =\r\nhref=3D\"tel:813-504-0074\" style=3D\"font-size: 12px;\" =\r\ntarget=3D\"_blank\">813-504-0074</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Phone</span>&nbsp;<a =\r\nhref=3D\"tel:844-GET-LITHIUM\" style=3D\"font-size: 12px;\" =\r\ntarget=3D\"_blank\">844-GET-LITHIUM</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><a =\r\nhref=3D\"mailto:Nathan@lithiumbatterycompany.com\" style=3D\"\" =\r\ntarget=3D\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px =\r\n0px\"><table cellpadding=3D\"0\" cellspacing=3D\"0\" border=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;display:flex;font-weight:bol=\r\nd\"><a href=3D\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" =\r\nstyle=3D\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px =\r\n15px;text-align:center;font-size:12px;line-height:14px;display:inline-bloc=\r\nk\" target=3D\"_blank\">Schedule A =\r\nZoom</a></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><table cellpadding=3D\"0\" =\r\ncellspacing=3D\"0\" border=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"></tr></tbody></table></td><=\r\n/tr></tbody></table></td><td align=3D\"left\" valign=3D\"middle\" =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:0px 0px 0px =\r\n15px;display:revert\"><div style=3D\"max-height:0px;overflow:visible\"><img =\r\nsrc=3D\"https://app.customesignature.com/upload/signature/profile/173870830=\r\n7-11122.jpg\" width=3D\"140\" style=3D\"display:block;border-radius:10px\" =\r\ndata-unique-identifier=3D\"\"></div><img =\r\nsrc=3D\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gi=\r\nf\" name=3D\"SignatureSanitizer_profile_annimation_gif\" width=3D\"140\" =\r\nstyle=3D\"display:block;border-radius:10px\" =\r\ndata-unique-identifier=3D\"\"></td></tr></tbody></table></td></tr></tbody></=\r\ntable></td></tr><tr style=3D\"border:none;border-collapse:collapse\"><td =\r\nalign=3D\"left\" valign=3D\"top\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><table border=3D\"0\" =\r\ncellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"></tr></tbody></table></td><=\r\n/tr><tr style=3D\"border:none;border-collapse:collapse\"></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:10px 0px =\r\n0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><b=\r\nr><div class=3D\"gmail_quote gmail_quote_container\"><div dir=3D\"ltr\" =\r\nclass=3D\"gmail_attr\">On Thu, Dec 4, 2025 at 12:20=E2=80=AFPM Nathan =\r\nStaron &lt;<a =\r\nhref=3D\"mailto:Nathan@lithiumbatterycompany.com\">Nathan@lithiumbatterycomp=\r\nany.com</a>&gt; wrote:<br></div><blockquote class=3D\"gmail_quote\" =\r\nstyle=3D\"margin:0px 0px 0px 0.8ex;border-left:1px solid =\r\nrgb(204,204,204);padding-left:1ex\"><div dir=3D\"ltr\"><div>Here it =\r\nis.&nbsp;</div><div><div dir=3D\"ltr\" class=3D\"gmail_signature\"><div =\r\ndir=3D\"ltr\"><br><div><br></div><div><table cellpadding=3D\"0\" =\r\ncellspacing=3D\"0\" border=3D\"0\" style=3D\"border: medium; border-collapse: =\r\ncollapse; font-size: 10px; font-family: Inter, sans-serif;\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;line-height:16px\"><table =\r\ncellpadding=3D\"0\" cellspacing=3D\"0\" style=3D\"border:none\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td valign=3D\"top\" =\r\nalign=3D\"left\" style=3D\"border:1px solid =\r\nrgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px =\r\n8px 8px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://lithiumbatterycompany.com/\" target=3D\"_blank\"><img =\r\nalt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/web-icon=\r\n.gif\" width=3D\"24\" style=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.instagram.com/lithiumbatteryco/\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/insta-ic=\r\non.gif\" width=3D\"24\" style=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.linkedin.com/company/the-lithium-battery-company\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/linkedin=\r\n-icon.gif\" width=3D\"24\" style=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.facebook.com/LithiumBatteryCompany/\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/facebook=\r\n-icon.gif\" width=3D\"24\" style=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.youtube.com/c/LithiumBatteryCompany\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/youtube-=\r\nicon.gif\" width=3D\"24\" style=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr></tbody></table></td><td =\r\nwidth=3D\"8\" =\r\nstyle=3D\"border:none;border-collapse:collapse;display:revert\">&nbsp;</td><=\r\ntd valign=3D\"top\" align=3D\"left\" style=3D\"border:1px solid =\r\nrgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\">=\r\n<table width=3D\"100%\" border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td align=3D\"left\" =\r\nvalign=3D\"middle\" style=3D\"border:none;border-collapse:collapse\"><table =\r\nwidth=3D\"100%\" border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><a =\r\nhref=3D\"https://lithiumbatterycompany.com/\" target=3D\"_blank\"><img =\r\nsrc=3D\"https://app.customesignature.com/upload/signature/11122/11122.png\" =\r\nwidth=3D\"170\" style=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:0px 0px =\r\n10px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:15px 0px =\r\n0px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td align=3D\"left\" =\r\nvalign=3D\"middle\" style=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:20px\">NATHAN A. =\r\nSTARON</span></td><td align=3D\"left\" valign=3D\"middle\" =\r\nstyle=3D\"border:none;border-collapse:collapse;padding-left:5px\"><img =\r\nwidth=3D\"15\" height=3D\"15\" =\r\nsrc=3D\"https://app.customesignature.com/images/verify.gif\" =\r\nstyle=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-size:12px\">Founder / =\r\nCEO</span></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Lithium Battery =\r\nCompany</span></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Cell Phone</span>&nbsp;<a =\r\nhref=3D\"tel:813-504-0074\" style=3D\"font-size: 12px;\" =\r\ntarget=3D\"_blank\">813-504-0074</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Phone</span>&nbsp;<a =\r\nhref=3D\"tel:844-GET-LITHIUM\" style=3D\"font-size: 12px;\" =\r\ntarget=3D\"_blank\">844-GET-LITHIUM</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><a =\r\nhref=3D\"mailto:Nathan@lithiumbatterycompany.com\" style=3D\"\" =\r\ntarget=3D\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px =\r\n0px\"><table cellpadding=3D\"0\" cellspacing=3D\"0\" border=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;display:flex;font-weight:bol=\r\nd\"><a href=3D\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" =\r\nstyle=3D\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px =\r\n15px;text-align:center;font-size:12px;line-height:14px;display:inline-bloc=\r\nk\" target=3D\"_blank\">Schedule A =\r\nZoom</a></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><table cellpadding=3D\"0\" =\r\ncellspacing=3D\"0\" border=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"></tr></tbody></table></td><=\r\n/tr></tbody></table></td><td align=3D\"left\" valign=3D\"middle\" =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:0px 0px 0px =\r\n15px;display:revert\"><div style=3D\"max-height:0px;overflow:visible\"><img =\r\nsrc=3D\"https://app.customesignature.com/upload/signature/profile/173870830=\r\n7-11122.jpg\" width=3D\"140\" style=3D\"display: block; border-radius: =\r\n10px;\" data-unique-identifier=3D\"\"></div><img =\r\nsrc=3D\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gi=\r\nf\" =\r\nname=3D\"m_8061372820603128261_SignatureSanitizer_profile_annimation_gif\" =\r\nwidth=3D\"140\" style=3D\"display: block; border-radius: 10px;\" =\r\ndata-unique-identifier=3D\"\"></td></tr></tbody></table></td></tr></tbody></=\r\ntable></td></tr><tr style=3D\"border:none;border-collapse:collapse\"><td =\r\nalign=3D\"left\" valign=3D\"top\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><table border=3D\"0\" =\r\ncellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"></tr></tbody></table></td><=\r\n/tr><tr style=3D\"border:none;border-collapse:collapse\"></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:10px 0px =\r\n0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><b=\r\nr><div class=3D\"gmail_quote\"><div dir=3D\"ltr\" class=3D\"gmail_attr\">On =\r\nWed, Dec 3, 2025 at 8:50=E2=80=AFPM Brian Stufflebean =\r\n&lt;Brian@mavrix.one&gt; wrote:<br></div><blockquote class=3D\"gmail_quote\"=\r\n style=3D\"margin:0px 0px 0px 0.8ex;border-left:1px solid =\r\nrgb(204,204,204);padding-left:1ex\"><div><span =\r\nstyle=3D\"font-size:14px\"><b>Nathan and =\r\nJordan,&nbsp;</b></span><div><span =\r\nstyle=3D\"font-size:14px\"><br></span></div><div><span =\r\nstyle=3D\"font-size:14px\">I need to have the proposed Sol-Ark annual =\r\nunits, price per unit and total annual projected forecast for the next =\r\n5-years, broken out into an Excel table, by =\r\nyear.&nbsp;</span></div><div><span =\r\nstyle=3D\"font-size:14px\"><br></span></div><div><span =\r\nstyle=3D\"font-size:14px\">We need this ASAP for meetings tomorrow =\r\n(Thursday, 12/4/25) &nbsp;afternoon.&nbsp;</span></div><div><span =\r\nstyle=3D\"font-size:14px\"><br></span></div><div><span =\r\nstyle=3D\"font-size:14px\">Need the same thing for Sonnen and =\r\nMitsubishi.</span></div><div><span =\r\nstyle=3D\"font-size:14px\"><br></span></div><div><span =\r\nstyle=3D\"font-size:14px\">Please place at high priority. =\r\n&nbsp;</span></div><div><span =\r\nstyle=3D\"font-size:14px\"><br></span></div><div><span =\r\nstyle=3D\"font-size:14px\">Thank you,</span></div><div><span =\r\nstyle=3D\"font-size:14px\"><br></span></div><div><span =\r\nstyle=3D\"font-size:14px\">Brian&nbsp;</span><br><div><div><br><blockquote =\r\ntype=3D\"cite\"><div>On Nov 5, 2025, at 11:20=E2=80=AFPM, Nathan Staron =\r\n&lt;<a href=3D\"mailto:Nathan@lithiumbatterycompany.com\" =\r\ntarget=3D\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt; =\r\nwrote:</div><br><div><div dir=3D\"auto\">Will respond more clearly =\r\ntomorrow morning.&nbsp; I want to make sure Nick is included with the =\r\ncommunication. &nbsp;&nbsp;</div><div dir=3D\"auto\"><br></div><div =\r\ndir=3D\"auto\">The BMS could handle 300A for 15 seconds.&nbsp; It is a =\r\nheat dissipation issue from FETS.&nbsp; It can be programmed in back end =\r\nsoftware. &nbsp;</div><div dir=3D\"auto\"><br></div><div dir=3D\"auto\">Susan =\r\nand Wilson have new relationship together so their working relationship =\r\nand knowledge needs to be communicated. &nbsp;&nbsp;</div><div =\r\ndir=3D\"auto\"><br></div><div dir=3D\"auto\">Try not to be persuaded from =\r\nGSL to accept their parameters.&nbsp; Sol Ark is just setting their =\r\nbattery management system and cells to a better quality which will lower =\r\ntheir after sales support and align the battery for better performance =\r\nand balancing.&nbsp; Chinese have very narrow scope and we need to be =\r\nspecific on laying out our requirements for the project.&nbsp;</div><div =\r\ndir=3D\"auto\"><br></div><div dir=3D\"auto\">Let=E2=80=99s discuss tomorrow =\r\nmorning.&nbsp;<br clear=3D\"all\"><div dir=3D\"auto\"><div dir=3D\"ltr\" =\r\nclass=3D\"gmail_signature\"><div dir=3D\"ltr\"><br><div><br></div><div><table =\r\ncellpadding=3D\"0\" cellspacing=3D\"0\" border=3D\"0\" =\r\nstyle=3D\"border:medium;border-collapse:collapse;font-size:10px;font-family=\r\n:Inter,sans-serif\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;line-height:16px\"><table =\r\ncellpadding=3D\"0\" cellspacing=3D\"0\" style=3D\"border:none\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td valign=3D\"top\" =\r\nalign=3D\"left\" style=3D\"border:1px solid =\r\nrgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px =\r\n8px 8px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://lithiumbatterycompany.com/\" target=3D\"_blank\"><img =\r\nalt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/web-icon=\r\n.gif\" width=3D\"24\" style=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.instagram.com/lithiumbatteryco/\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/insta-ic=\r\non.gif\" width=3D\"24\" style=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.linkedin.com/company/the-lithium-battery-company\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/linkedin=\r\n-icon.gif\" width=3D\"24\" style=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.facebook.com/LithiumBatteryCompany/\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/facebook=\r\n-icon.gif\" width=3D\"24\" style=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.youtube.com/c/LithiumBatteryCompany\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/youtube-=\r\nicon.gif\" width=3D\"24\" style=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr></tbody></table></td><td =\r\nwidth=3D\"8\" =\r\nstyle=3D\"border:none;border-collapse:collapse;display:revert\">&nbsp;</td><=\r\ntd valign=3D\"top\" align=3D\"left\" style=3D\"border:1px solid =\r\nrgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\">=\r\n<table width=3D\"100%\" border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td align=3D\"left\" =\r\nvalign=3D\"middle\" style=3D\"border:none;border-collapse:collapse\"><table =\r\nwidth=3D\"100%\" border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><a =\r\nhref=3D\"https://lithiumbatterycompany.com/\" target=3D\"_blank\"><img =\r\nsrc=3D\"https://app.customesignature.com/upload/signature/11122/11122.png\" =\r\nwidth=3D\"170\" style=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:0px 0px =\r\n10px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:15px 0px =\r\n0px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td align=3D\"left\" =\r\nvalign=3D\"middle\" style=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:20px\">NATHAN A. =\r\nSTARON</span></td><td align=3D\"left\" valign=3D\"middle\" =\r\nstyle=3D\"border:none;border-collapse:collapse;padding-left:5px\"><img =\r\nwidth=3D\"15\" height=3D\"15\" =\r\nsrc=3D\"https://app.customesignature.com/images/verify.gif\" =\r\nstyle=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-size:12px\">Founder / =\r\nCEO</span></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Lithium Battery =\r\nCompany</span></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Cell Phone</span>&nbsp;<a =\r\nhref=3D\"tel:813-504-0074\" style=3D\"font-size:12px\" =\r\ntarget=3D\"_blank\">813-504-0074</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Phone</span>&nbsp;<a =\r\nhref=3D\"tel:844-GET-LITHIUM\" style=3D\"font-size:12px\" =\r\ntarget=3D\"_blank\">844-GET-LITHIUM</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><a =\r\nhref=3D\"mailto:Nathan@lithiumbatterycompany.com\" =\r\ntarget=3D\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px =\r\n0px\"><table cellpadding=3D\"0\" cellspacing=3D\"0\" border=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;display:flex;font-weight:bol=\r\nd\"><a href=3D\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" =\r\nstyle=3D\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px =\r\n15px;text-align:center;font-size:12px;line-height:14px;display:inline-bloc=\r\nk\" target=3D\"_blank\">Schedule A =\r\nZoom</a></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><table cellpadding=3D\"0\" =\r\ncellspacing=3D\"0\" border=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"></tr></tbody></table></td><=\r\n/tr></tbody></table></td><td align=3D\"left\" valign=3D\"middle\" =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:0px 0px 0px =\r\n15px;display:revert\"><div style=3D\"max-height:0px;overflow:visible\"><img =\r\nsrc=3D\"https://app.customesignature.com/upload/signature/profile/173870830=\r\n7-11122.jpg\" width=3D\"140\" style=3D\"display: block; border-radius: =\r\n10px;\" data-unique-identifier=3D\"\"></div><img =\r\nsrc=3D\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gi=\r\nf\" =\r\nname=3D\"m_8061372820603128261_m_-4108392742560738955_SignatureSanitizer_pr=\r\nofile_annimation_gif\" width=3D\"140\" style=3D\"display: block; =\r\nborder-radius: 10px;\" =\r\ndata-unique-identifier=3D\"\"></td></tr></tbody></table></td></tr></tbody></=\r\ntable></td></tr><tr style=3D\"border:none;border-collapse:collapse\"><td =\r\nalign=3D\"left\" valign=3D\"top\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><table border=3D\"0\" =\r\ncellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"></tr></tbody></table></td><=\r\n/tr><tr style=3D\"border:none;border-collapse:collapse\"></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:10px 0px =\r\n0px\"><a></a></td></tr></tbody></table></div></div></div></div></div><div><=\r\nbr></div><div><br><div class=3D\"gmail_quote\"><div dir=3D\"ltr\" =\r\nclass=3D\"gmail_attr\">On Wed, Nov 5, 2025 at 10:36=E2=80=AFPM Jordan =\r\nWroblewski &lt;<a href=3D\"mailto:jordan@lithiumbatterycompany.com\" =\r\ntarget=3D\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; =\r\nwrote:<br></div><blockquote class=3D\"gmail_quote\" style=3D\"margin:0px =\r\n0px 0px 0.8ex;border-left:1px solid =\r\nrgb(204,204,204);padding-left:1ex\"><div dir=3D\"ltr\"><div>Good evening =\r\nteam.&nbsp;&nbsp;</div><div><br></div><div>Back from Sol-Ark - BMS =\r\nquestion.&nbsp;</div><div><br></div><div><span =\r\nid=3D\"m_8061372820603128261m_-4108392742560738955cid:ii_mhmv8y361\">&lt;ima=\r\nge (7).png&gt;</span><br></div><div><span =\r\nstyle=3D\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,=\r\nHelvetica,sans-serif;font-size:14.6667px\">Is there any possibility of =\r\nsetting the Max Charge/Discharge at 200A to align with the performance =\r\ntargets we=E2=80=99re aiming for? I understand that maintaining 300A for =\r\n15 seconds may not be feasible, 15 seconds is a long duration, and most =\r\nappliances don=E2=80=99t require that much ramp-up time. Could you share =\r\nany data regarding the peak power capability for a shorter duration, =\r\nsuch as 10ms or less?</span></div><div><span =\r\nstyle=3D\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,=\r\nHelvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span =\r\nstyle=3D\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,=\r\nHelvetica,sans-serif;font-size:14.6667px\">I reached out to Susan and =\r\nWilson on this.&nbsp; The 16kWh battery can support 200Ah burst but not =\r\ncontinuous.&nbsp; The 314Ah cell is a .5C charge/discharge so they don\'t =\r\nsuggest continuous over 157A.&nbsp;&nbsp;</span></div><div><span =\r\nstyle=3D\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,=\r\nHelvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span =\r\nstyle=3D\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,=\r\nHelvetica,sans-serif;font-size:14.6667px\">I want to confirm with you and =\r\nsee if you have any thoughts or ideas before I =\r\nrespond.&nbsp;&nbsp;</span></div><div><span =\r\nstyle=3D\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,=\r\nHelvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span =\r\nstyle=3D\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,=\r\nHelvetica,sans-serif;font-size:14.6667px\">Thanks,</span></div></div><div =\r\ndir=3D\"ltr\"><div><div dir=3D\"ltr\" class=3D\"gmail_signature\"><div =\r\ndir=3D\"ltr\"><div style=3D\"margin:0in\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif\"><br></span></div><div =\r\nstyle=3D\"margin:0in\"><span style=3D\"font-family:Arial,sans-serif\">Jordan =\r\nG. Wroblewski</span></div><div style=3D\"margin:0in\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif;font-size:9pt\">Partner | =\r\nPresident&nbsp;<br></span></div><div style=3D\"margin:0in\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif;font-size:10pt\">Lithium Battery =\r\nCompany</span></div><div style=3D\"margin:0in\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif;font-size:10pt\">Direct: (917) =\r\n266-5336<br></span></div><div style=3D\"margin:0in\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<=\r\na href=3D\"mailto:Jarrett.brownfield@trackmastermobility.com\" =\r\nstyle=3D\"color:blue;margin:0px\" =\r\ntarget=3D\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div =\r\nstyle=3D\"margin:0in\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><=\r\na href=3D\"http://lithiumbatterycompany.com/\" target=3D\"_blank\">Lithium =\r\nBattery Company</a></span></div></div></div></div><br></div><br><div =\r\nclass=3D\"gmail_quote\"><div dir=3D\"ltr\" class=3D\"gmail_attr\">On Mon, Nov =\r\n3, 2025 at 2:10=E2=80=AFPM Jordan Wroblewski &lt;<a =\r\nhref=3D\"mailto:jordan@lithiumbatterycompany.com\" =\r\ntarget=3D\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; =\r\nwrote:<br></div><blockquote class=3D\"gmail_quote\" style=3D\"margin:0px =\r\n0px 0px 0.8ex;border-left:1px solid =\r\nrgb(204,204,204);padding-left:1ex\"><div dir=3D\"ltr\"><div>Hi Nathan and =\r\nteam,</div><div><br></div><div>Here are the list of preferred prototype =\r\nspecs from Sol-Ark</div><div><br></div><div><div =\r\nstyle=3D\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,=\r\nHelvetica,sans-serif;font-size:11pt\">Please see the below specs for the =\r\nprototype battery for testing:</div><ul =\r\nstyle=3D\"margin-top:0px;margin-bottom:0px\"><li =\r\nstyle=3D\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFon=\r\ntService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div =\r\nrole=3D\"presentation\">LBC512314</div></li><ul =\r\nstyle=3D\"margin-top:0px;margin-bottom:0px\"><li =\r\nstyle=3D\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFon=\r\ntService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div =\r\nrole=3D\"presentation\">Capacity: 16.1kWh</div></li><li =\r\nstyle=3D\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFon=\r\ntService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div =\r\nrole=3D\"presentation\">Amp Hours (Ah): 314Ah</div></li><li =\r\nstyle=3D\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFon=\r\ntService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div =\r\nrole=3D\"presentation\">Nominal Voltage: 51.2v</div></li><li =\r\nstyle=3D\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFon=\r\ntService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div =\r\nrole=3D\"presentation\">Operating Range: 48v - 56v</div></li><li =\r\nstyle=3D\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFon=\r\ntService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div =\r\nrole=3D\"presentation\">Max Continuous Charge: 200A Optimal | 150A =\r\nMinimum</div></li><li =\r\nstyle=3D\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFon=\r\ntService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div =\r\nrole=3D\"presentation\">Max Continuous Discharge: 220A Optimal | 200A =\r\nMinimum</div></li><li =\r\nstyle=3D\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFon=\r\ntService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div =\r\nrole=3D\"presentation\">Peak Discharge Current: 300A</div></li><li =\r\nstyle=3D\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFon=\r\ntService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div =\r\nrole=3D\"presentation\">Communication Protocol: RS-485 Modbus RTU &amp; =\r\nCANBUS<span =\r\nstyle=3D\"font-size:11pt\"></span></div></li></ul></ul><div><font =\r\nface=3D\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, =\r\nHelvetica, sans-serif\"><span =\r\nstyle=3D\"font-size:14.6667px\"><br></span></font></div></div><div><span =\r\nstyle=3D\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,=\r\nHelvetica,sans-serif;font-size:14.6667px\">Here is a list of specs that =\r\nwould be comparable:</span><font face=3D\"Aptos, Aptos_EmbeddedFont, =\r\nAptos_MSFontService, Calibri, Helvetica, sans-serif\"><span =\r\nstyle=3D\"font-size:14.6667px\"></span></font></div><div><span =\r\nid=3D\"m_8061372820603128261m_-4108392742560738955cid:ii_mhjik7da1\">&lt;ima=\r\nge (5).png&gt;</span><br></div><div><br></div><div>I have reached out to =\r\nSusan from GSL and shared the specs. I\'ve also inquired if this would be =\r\navailable&nbsp;from one of their dealers in the =\r\nUS.</div><div><br></div><div>Let me know if you have any other thoughts =\r\non what we should send thier =\r\nway.</div><div><br></div><div>Best,&nbsp;</div><div><div dir=3D\"ltr\" =\r\nclass=3D\"gmail_signature\"><div dir=3D\"ltr\"><div style=3D\"margin:0in\"><span=\r\n style=3D\"font-family:Arial,sans-serif\"><br></span></div><div =\r\nstyle=3D\"margin:0in\"><span style=3D\"font-family:Arial,sans-serif\">Jordan =\r\nG. Wroblewski</span></div><div style=3D\"margin:0in\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif;font-size:9pt\">Partner | =\r\nPresident&nbsp;<br></span></div><div style=3D\"margin:0in\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif;font-size:10pt\">Lithium Battery =\r\nCompany</span></div><div style=3D\"margin:0in\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif;font-size:10pt\">Direct: (917) =\r\n266-5336<br></span></div><div style=3D\"margin:0in\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<=\r\na href=3D\"mailto:Jarrett.brownfield@trackmastermobility.com\" =\r\nstyle=3D\"color:blue;margin:0px\" =\r\ntarget=3D\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div =\r\nstyle=3D\"margin:0in\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><=\r\na href=3D\"http://lithiumbatterycompany.com/\" target=3D\"_blank\">Lithium =\r\nBattery Company</a></span></div></div></div></div></div>\r\n</blockquote></div>\r\n</blockquote></div></div>\r\n</div></blockquote></div><br><div>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; text-align: start; text-indent: 0px; text-transform: none; =\r\nwhite-space: normal; word-spacing: 0px; text-decoration: none;\"><font =\r\nsize=3D\"2\">Best regards,</font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; text-align: start; =\r\ntext-indent: 0px; text-transform: none; white-space: normal; =\r\nword-spacing: 0px; text-decoration: none;\"><font =\r\nsize=3D\"2\"><br></font></div><div style=3D\"font-family: Helvetica; =\r\nfont-size: 12px; font-style: normal; font-variant-caps: normal; =\r\nfont-weight: 400; letter-spacing: normal; text-align: start; =\r\ntext-indent: 0px; text-transform: none; white-space: normal; =\r\nword-spacing: 0px; text-decoration: none;\"><font =\r\nsize=3D\"2\"><br></font></div><div style=3D\"font-family: Helvetica; =\r\nfont-size: 12px; font-style: normal; font-variant-caps: normal; =\r\nfont-weight: 400; letter-spacing: normal; text-align: start; =\r\ntext-indent: 0px; text-transform: none; white-space: normal; =\r\nword-spacing: 0px; text-decoration: none;\"><font =\r\nsize=3D\"2\"><br></font></div><div style=3D\"font-family: Helvetica; =\r\nfont-size: 12px; font-style: normal; font-variant-caps: normal; =\r\nfont-weight: 400; letter-spacing: normal; text-align: start; =\r\ntext-indent: 0px; text-transform: none; white-space: normal; =\r\nword-spacing: 0px; text-decoration: none;\"><font size=3D\"2\" =\r\nstyle=3D\"font-family:Helvetica;font-style:normal;font-weight:400;font-size=\r\n:12px\"><b>Brian C. Stufflebean</b><br>CEO, =\r\nCo-Founder</font><br><div><b>(941)545-4153 Direct</b></div><div =\r\nstyle=3D\"font-family:Helvetica;font-style:normal;font-weight:400;font-size=\r\n:12px\"><span style=3D\"font-size:11px\">(866)896-2423 =\r\nFax</span></div></div><span style=3D\"font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; text-align: start; text-indent: 0px; =\r\ntext-transform: none; white-space: normal; word-spacing: 0px; =\r\ntext-decoration: none;\"></span><br><span><span =\r\nid=3D\"cid:ii_19aea613d1c4a653afc1\">&lt;CB596987-D3CC-4C61-B9D3-CE1C1DF1C72=\r\n3.png&gt;</span></span><div style=3D\"font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; text-align: start; text-indent: 0px; =\r\ntext-transform: none; white-space: normal; word-spacing: 0px; =\r\ntext-decoration: none;\"><br><br><a href=3D\"mailto:brian@mavrix.one\" =\r\ntarget=3D\"_blank\">brian@mavrix.one</a></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; text-align: start; =\r\ntext-indent: 0px; text-transform: none; white-space: normal; =\r\nword-spacing: 0px; text-decoration: none;\"><br><a =\r\nhref=3D\"https://mavrix1.com/\" =\r\ntarget=3D\"_blank\">https://mavrix1.com/</a></div><div style=3D\"font-family:=\r\n Helvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; text-align: start; =\r\ntext-indent: 0px; text-transform: none; white-space: normal; =\r\nword-spacing: 0px; text-decoration: none;\"><br></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; word-spacing: 0px; text-decoration: =\r\nnone;\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY =\r\nNOTICE:</b><span =\r\nstyle=3D\"font-family:Helvetica;font-style:normal;font-weight:400;font-size=\r\n:12px\">&nbsp;This&nbsp;communication&nbsp;is =\r\nconfidential&nbsp;and&nbsp;intended only for the =\r\nintended&nbsp;recipient.&nbsp;&nbsp;If you are not the =\r\nintended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, =\r\nor&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any =\r\nsuch&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this =\r\ncommunication&nbsp;in error,&nbsp;please contact the sender =\r\nof&nbsp;the&nbsp;message to inform him or her of =\r\nthe&nbsp;error.<br><br></span></div>\r\n</div>\r\n<br></div></div></div></blockquote></div>\r\n</blockquote></div>\r\n<span =\r\nid=3D\"cid:f_mirpwkcz1\">&lt;Battery_Pack_Manufacturing_Equipment_Requiremen=\r\nts_Analysis.pdf&gt;</span></div></blockquote></div><br><div>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; orphans: auto; text-align: start; text-indent: 0px; =\r\ntext-transform: none; white-space: normal; widows: auto; word-spacing: =\r\n0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><font size=3D\"2\">Best =\r\nregards,</font></div><div style=3D\"font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><font =\r\nsize=3D\"2\"><br></font></div><div style=3D\"font-family: Helvetica; =\r\nfont-size: 12px; font-style: normal; font-variant-caps: normal; =\r\nfont-weight: 400; letter-spacing: normal; orphans: auto; text-align: =\r\nstart; text-indent: 0px; text-transform: none; white-space: normal; =\r\nwidows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\" style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><b>Brian C. =\r\nStufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 =\r\nDirect</b></div><div style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><span style=3D\"font-size: =\r\n11px;\">(866)896-2423 Fax</span></div></div><span style=3D\"caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0); font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"></span><br class=3D\"Apple-interchange-newline\"><span><img =\r\nalt=3D\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" =\r\nsrc=3D\"cid:CB596987-D3CC-4C61-B9D3-CE1C1DF1C723\"></span><meta =\r\ncharset=3D\"UTF-8\"><div style=3D\"font-family: Helvetica; font-size: 12px; =\r\nfont-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br =\r\nclass=3D\"Apple-interchange-newline\"><br =\r\nclass=3D\"Apple-interchange-newline\"><a =\r\nhref=3D\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a =\r\nhref=3D\"https://mavrix1.com\">https://mavrix1.com/</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY =\r\nNOTICE:</b><span style=3D\"font-family: Helvetica; font-style: normal; =\r\nfont-weight: 400; font-size: =\r\n12px;\">&nbsp;This&nbsp;communication&nbsp;is =\r\nconfidential&nbsp;and&nbsp;intended only for the =\r\nintended&nbsp;recipient.&nbsp;&nbsp;If you are not the =\r\nintended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, =\r\nor&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any =\r\nsuch&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this =\r\ncommunication&nbsp;in error,&nbsp;please contact the sender =\r\nof&nbsp;the&nbsp;message to inform him or her of =\r\nthe&nbsp;error.<br><br></span></div>\r\n</div>\r\n<br></div></body></html>=\r\n\r\n--Apple-Mail=_26AA5D79-3F86-4FD2-9EBD-961362614060\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\r\nContent-Type: image/png;\r\n	name=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\"\r\nContent-Id: <CB596987-D3CC-4C61-B9D3-CE1C1DF1C723>\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGwAAAAYCAYAAAAf1RgaAAAAAXNSR0IArs4c6QAAAIRlWElmTU0A\r\nKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdp\r\nAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAGyg\r\nAwAEAAAAAQAAABgAAAAABrPxEgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5h\r\nZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9\r\nIlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9y\r\nZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6\r\nYWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZm\r\nLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgog\r\nICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAA\r\nC6FJREFUaAXtWnuMVUcZnznPe/fuZYEtDxHCQ1ADBNuuAlKh24dRaqURWFotj5haKAn9SxOaauRi\r\nxEBsMMFSAmnUCDTKWtDioyEm3RLKq6VKC7Rg20VA5Lmwz3vPa8bfN+ecu+fevbugjQQrX5g735n5\r\nvm++13wz5yyc3YKb0gP19a8YTU33+NNmbx0puHjJtGsm+U7beoMxyRsaGrUJE45JxlbclMp/1JXK\r\nsZWM5XLwP6PG6+tzOgVr8tzN0wWTjRq3hojAw6TU+EfdGf9T9uVyGsutQNC4nDpn8zz0m7lmWEwE\r\njm6mbd/r3MCnzNk6DlEbyRFCqfNbAbyBEeaBlJzrkula1mOFQ683fvMcLT917tblGF8dbTgmhe8a\r\nZsbyvY4NhsbEdwy7ZrHntDHOtBuo7q2lGLyvGSnmOe2/fH3S3//EGhGsOZuf03RrKRMC/3wBL30f\r\n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\r\n--Apple-Mail=_26AA5D79-3F86-4FD2-9EBD-961362614060--','Nathan,\r\n\r\nPlease remove LiIon from the reserved production list due to their current status.\r\n\r\nThank you.\r\n\r\n\r\n\r\n> On Dec 4, 2025, at 12:36 PM, Nathan Staron <Nathan@lithiumbatterycompany.com> wrote:\r\n> \r\n> \r\n> \r\n> \r\n>  <https://lithiumbatterycompany.com/>\r\n>  <https://www.instagram.com/lithiumbatteryco/>\r\n>  <https://www.linkedin.com/company/the-lithium-battery-company>\r\n>  <https://www.facebook.com/LithiumBatteryCompany/>\r\n>  <https://www.youtube.com/c/LithiumBatteryCompany>	 	\r\n>  <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON	\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074 <tel:813-504-0074>\r\n> Phone 844-GET-LITHIUM <tel:844-GET-LITHIUM>\r\n> Nathan@lithiumbatterycompany.com <mailto:Nathan@lithiumbatterycompany.com>\r\n> Schedule A Zoom\r\n>  <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n> \r\n> \r\n> \r\n> On Thu, Dec 4, 2025 at 12:20 PM Nathan Staron <Nathan@lithiumbatterycompany.com <mailto:Nathan@lithiumbatterycompany.com>> wrote:\r\n>> Here it is. \r\n>> \r\n>> \r\n>>  <https://lithiumbatterycompany.com/>\r\n>>  <https://www.instagram.com/lithiumbatteryco/>\r\n>>  <https://www.linkedin.com/company/the-lithium-battery-company>\r\n>>  <https://www.facebook.com/LithiumBatteryCompany/>\r\n>>  <https://www.youtube.com/c/LithiumBatteryCompany>	 	\r\n>>  <https://lithiumbatterycompany.com/>\r\n>> NATHAN A. STARON	\r\n>> Founder / CEO\r\n>> Lithium Battery Company\r\n>> Cell Phone 813-504-0074 <tel:813-504-0074>\r\n>> Phone 844-GET-LITHIUM <tel:844-GET-LITHIUM>\r\n>> Nathan@lithiumbatterycompany.com <mailto:Nathan@lithiumbatterycompany.com>\r\n>> Schedule A Zoom\r\n>>  <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>> \r\n>> \r\n>> \r\n>> On Wed, Dec 3, 2025 at 8:50 PM Brian Stufflebean <Brian@mavrix.one> wrote:\r\n>>> Nathan and Jordan, \r\n>>> \r\n>>> I need to have the proposed Sol-Ark annual units, price per unit and total annual projected forecast for the next 5-years, broken out into an Excel table, by year. \r\n>>> \r\n>>> We need this ASAP for meetings tomorrow (Thursday, 12/4/25)  afternoon. \r\n>>> \r\n>>> Need the same thing for Sonnen and Mitsubishi.\r\n>>> \r\n>>> Please place at high priority.  \r\n>>> \r\n>>> Thank you,\r\n>>> \r\n>>> Brian \r\n>>> \r\n>>>> On Nov 5, 2025, at 11:20 PM, Nathan Staron <Nathan@lithiumbatterycompany.com <mailto:Nathan@lithiumbatterycompany.com>> wrote:\r\n>>>> \r\n>>>> Will respond more clearly tomorrow morning.  I want to make sure Nick is included with the communication.   \r\n>>>> \r\n>>>> The BMS could handle 300A for 15 seconds.  It is a heat dissipation issue from FETS.  It can be programmed in back end software.  \r\n>>>> \r\n>>>> Susan and Wilson have new relationship together so their working relationship and knowledge needs to be communicated.   \r\n>>>> \r\n>>>> Try not to be persuaded from GSL to accept their parameters.  Sol Ark is just setting their battery management system and cells to a better quality which will lower their after sales support and align the battery for better performance and balancing.  Chinese have very narrow scope and we need to be specific on laying out our requirements for the project. \r\n>>>> \r\n>>>> Let’s discuss tomorrow morning. \r\n>>>> \r\n>>>> \r\n>>>>  <https://lithiumbatterycompany.com/>\r\n>>>>  <https://www.instagram.com/lithiumbatteryco/>\r\n>>>>  <https://www.linkedin.com/company/the-lithium-battery-company>\r\n>>>>  <https://www.facebook.com/LithiumBatteryCompany/>\r\n>>>>  <https://www.youtube.com/c/LithiumBatteryCompany>	 	\r\n>>>>  <https://lithiumbatterycompany.com/>\r\n>>>> NATHAN A. STARON	\r\n>>>> Founder / CEO\r\n>>>> Lithium Battery Company\r\n>>>> Cell Phone 813-504-0074 <tel:813-504-0074>\r\n>>>> Phone 844-GET-LITHIUM <tel:844-GET-LITHIUM>\r\n>>>> Nathan@lithiumbatterycompany.com <mailto:Nathan@lithiumbatterycompany.com>\r\n>>>> Schedule A Zoom\r\n>>>>  <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>>>> \r\n>>>> \r\n>>>> \r\n>>>> On Wed, Nov 5, 2025 at 10:36 PM Jordan Wroblewski <jordan@lithiumbatterycompany.com <mailto:jordan@lithiumbatterycompany.com>> wrote:\r\n>>>>> Good evening team.  \r\n>>>>> \r\n>>>>> Back from Sol-Ark - BMS question. \r\n>>>>> \r\n>>>>> <image (7).png>\r\n>>>>> Is there any possibility of setting the Max Charge/Discharge at 200A to align with the performance targets we’re aiming for? I understand that maintaining 300A for 15 seconds may not be feasible, 15 seconds is a long duration, and most appliances don’t require that much ramp-up time. Could you share any data regarding the peak power capability for a shorter duration, such as 10ms or less?\r\n>>>>> \r\n>>>>> I reached out to Susan and Wilson on this.  The 16kWh battery can support 200Ah burst but not continuous.  The 314Ah cell is a .5C charge/discharge so they don\'t suggest continuous over 157A.  \r\n>>>>> \r\n>>>>> I want to confirm with you and see if you have any thoughts or ideas before I respond.  \r\n>>>>> \r\n>>>>> Thanks,\r\n>>>>> \r\n>>>>> Jordan G. Wroblewski\r\n>>>>> Partner | President \r\n>>>>> Lithium Battery Company\r\n>>>>> Direct: (917) 266-5336\r\n>>>>> jordan@lithiumbatterycompany.com <mailto:Jarrett.brownfield@trackmastermobility.com>\r\n>>>>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n>>>>> \r\n>>>>> On Mon, Nov 3, 2025 at 2:10 PM Jordan Wroblewski <jordan@lithiumbatterycompany.com <mailto:jordan@lithiumbatterycompany.com>> wrote:\r\n>>>>>> Hi Nathan and team,\r\n>>>>>> \r\n>>>>>> Here are the list of preferred prototype specs from Sol-Ark\r\n>>>>>> \r\n>>>>>> Please see the below specs for the prototype battery for testing:\r\n>>>>>> LBC512314\r\n>>>>>> Capacity: 16.1kWh\r\n>>>>>> Amp Hours (Ah): 314Ah\r\n>>>>>> Nominal Voltage: 51.2v\r\n>>>>>> Operating Range: 48v - 56v\r\n>>>>>> Max Continuous Charge: 200A Optimal | 150A Minimum\r\n>>>>>> Max Continuous Discharge: 220A Optimal | 200A Minimum\r\n>>>>>> Peak Discharge Current: 300A\r\n>>>>>> Communication Protocol: RS-485 Modbus RTU & CANBUS\r\n>>>>>> \r\n>>>>>> Here is a list of specs that would be comparable:\r\n>>>>>> <image (5).png>\r\n>>>>>> \r\n>>>>>> I have reached out to Susan from GSL and shared the specs. I\'ve also inquired if this would be available from one of their dealers in the US.\r\n>>>>>> \r\n>>>>>> Let me know if you have any other thoughts on what we should send thier way.\r\n>>>>>> \r\n>>>>>> Best, \r\n>>>>>> \r\n>>>>>> Jordan G. Wroblewski\r\n>>>>>> Partner | President \r\n>>>>>> Lithium Battery Company\r\n>>>>>> Direct: (917) 266-5336\r\n>>>>>> jordan@lithiumbatterycompany.com <mailto:Jarrett.brownfield@trackmastermobility.com>\r\n>>>>>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n>>> Best regards,\r\n>>> \r\n>>> \r\n>>> \r\n>>> Brian C. Stufflebean\r\n>>> CEO, Co-Founder\r\n>>> (941)545-4153 Direct\r\n>>> (866)896-2423 Fax\r\n>>> \r\n>>> <CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png>\r\n>>> \r\n>>> \r\n>>> brian@mavrix.one <mailto:brian@mavrix.one>\r\n>>> \r\n>>> https://mavrix1.com/\r\n>>> \r\n>>> \r\n>>> \r\n>>> \r\n>>> \r\n>>> \r\n>>> \r\n>>> \r\n>>> \r\n>>> \r\n>>> CONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.\r\n>>> \r\n>>> \r\n> <Battery_Pack_Manufacturing_Equipment_Requirements_Analysis.pdf>\r\n\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n￼\r\n\r\n\r\nbrian@mavrix.one <mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-12-04 18:28:04','2025-12-09 18:52:25','2025-12-09 18:52:25','2025-12-09 18:52:25',NULL,NULL,NULL),
(170,4,'<20251204193242.2E7CD9287837@scb-lp-273.ad.rit.edu>',NULL,NULL,'Calendar Event Update: Demo','noreply@example.com','Admin User','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Update</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">Demo</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 4, 2025 7:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 4, 2025 7:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><st\r\n rong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n    <tr>\r\n        <td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n            <table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n                <tr>\r\n                    <!-- LEFT COLUMN -->\r\n                    <td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n                        <div style=\"margin-bottom: 10px;\">\r\n                            <strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br>\r\n                            <span style=\"font-size: 12px; color: #666;\">Administrator</span>\r\n                        </div>\r\n\r\n                        <div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n                            <div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n                            <div>Mobile: 906-123-4567</div>\r\n                            <div>Office: 906-555-4567</div>\r\n                            <div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n                        </div>\r\n                    </td>\r\n\r\n                    <!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n                    <td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\">\r\n                        <img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n\r\n                        <div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">\r\n                            3900 W. Coachman Ave.<br>\r\n                            Tampa, FL 33611\r\n                        </div>\r\n                    </td>\r\n                </tr>\r\n            </table>\r\n        </td>\r\n    </tr>\r\n\r\n    <tr>\r\n        <td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n            <div style=\"font-size: 9px; color: #888; line-height: 1.4;\">\r\n                <strong>CONFIDENTIALITY NOTICE:</strong><br>\r\n                <em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br>\r\n                <em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br>\r\n                <em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br>\r\n                <em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em>\r\n            </div>\r\n        </td>\r\n    </tr>\r\n</table></div>\r\n','📅 Calendar Event UpdateDemo📅 Start:Dec 4, 2025 7:00 PM🕐 End:Dec 4, 2025 7:30 PM📍 Location:Not specifiedView Calendar\r\n    \r\n        \r\n            \r\n                \r\n                    \r\n                    \r\n                        \r\n                            Admin User\r\n                            Administrator\r\n                        \r\n\r\n                        \r\n                            admin@mavrix.one\r\n                            Mobile: 906-123-4567\r\n                            Office: 906-555-4567\r\n                            https://mavrix1.com\r\n                        \r\n                    \r\n\r\n                    \r\n                    \r\n                        \r\n\r\n                        \r\n                            3900 W. Coachman Ave.\r\n                            Tampa, FL 33611\r\n                        \r\n                    \r\n                \r\n            \r\n        \r\n    \r\n\r\n    \r\n        \r\n            \r\n                CONFIDENTIALITY NOTICE:\r\n                This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.\r\n                This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n                If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n                Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n            \r\n        \r\n    \r\n\r\n',0,0,0,0,0,0,'2025-12-04 19:32:41','2025-12-09 18:52:25','2025-12-09 18:52:25','2025-12-09 18:52:25',NULL,NULL,NULL),
(171,4,'<C3416250-60EB-4CF0-96F5-966A258A0A3A@mavrix.one>',NULL,NULL,'Policy Paragraph','Brian@mavrix.one','Brian Stufflebean','\r\n--Apple-Mail=_59CD87DD-F9B6-46BB-B468-F08A9ACFD2E6\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Type: text/html;\r\n	charset=utf-8\r\n\r\n<html><head><meta http-equiv=3D\"content-type\" content=3D\"text/html; =\r\ncharset=3Dutf-8\"></head><body style=3D\"overflow-wrap: break-word; =\r\n-webkit-nbsp-mode: space; line-break: after-white-space;\"><span =\r\nstyle=3D\"font-size: 14px;\">Nathan,</span><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: 14px;\">I need =\r\nthat policy paragraph we talked about last night for clients/customers =\r\nshowing return policies in one time purchases, and also a modified =\r\nparagraph for adaptation and insertion into multi-year agreements. (Saw =\r\nwhat was on the LBC website, and it=E2=80=99s a =\r\nstart.)</span></div><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: 14px;\">Same =\r\nduplicated type of policy for suppler orders of manufacturing component =\r\nparts, in terms of overage quantities, acceptable return rates of =\r\nproduct, testing standards, chargebacks on certain levels of rejected =\r\nparts, etc.&nbsp;</span></div><div><br></div><div><br><div>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; orphans: auto; text-align: start; text-indent: 0px; =\r\ntext-transform: none; white-space: normal; widows: auto; word-spacing: =\r\n0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><font size=3D\"2\">Best =\r\nregards,</font></div><div style=3D\"font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><font =\r\nsize=3D\"2\"><br></font></div><div style=3D\"font-family: Helvetica; =\r\nfont-size: 12px; font-style: normal; font-variant-caps: normal; =\r\nfont-weight: 400; letter-spacing: normal; orphans: auto; text-align: =\r\nstart; text-indent: 0px; text-transform: none; white-space: normal; =\r\nwidows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\" style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><b>Brian C. =\r\nStufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 =\r\nDirect</b></div><div style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><span style=3D\"font-size: =\r\n11px;\">(866)896-2423 Fax</span></div></div><span style=3D\"caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0); font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"></span><br class=3D\"Apple-interchange-newline\"><span><img =\r\nalt=3D\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" =\r\nsrc=3D\"cid:CB596987-D3CC-4C61-B9D3-CE1C1DF1C723\"></span><meta =\r\ncharset=3D\"UTF-8\"><div style=3D\"font-family: Helvetica; font-size: 12px; =\r\nfont-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br =\r\nclass=3D\"Apple-interchange-newline\"><br =\r\nclass=3D\"Apple-interchange-newline\"><a =\r\nhref=3D\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a =\r\nhref=3D\"https://mavrix1.com\">https://mavrix1.com/</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY =\r\nNOTICE:</b><span style=3D\"font-family: Helvetica; font-style: normal; =\r\nfont-weight: 400; font-size: =\r\n12px;\">&nbsp;This&nbsp;communication&nbsp;is =\r\nconfidential&nbsp;and&nbsp;intended only for the =\r\nintended&nbsp;recipient.&nbsp;&nbsp;If you are not the =\r\nintended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, =\r\nor&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any =\r\nsuch&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this =\r\ncommunication&nbsp;in error,&nbsp;please contact the sender =\r\nof&nbsp;the&nbsp;message to inform him or her of =\r\nthe&nbsp;error.<br><br></span></div>\r\n</div>\r\n\r\n<br></div></body></html>=\r\n\r\n--Apple-Mail=_59CD87DD-F9B6-46BB-B468-F08A9ACFD2E6\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\r\nContent-Type: image/png;\r\n	name=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\"\r\nContent-Id: <CB596987-D3CC-4C61-B9D3-CE1C1DF1C723>\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGwAAAAYCAYAAAAf1RgaAAAAAXNSR0IArs4c6QAAAIRlWElmTU0A\r\nKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdp\r\nAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAGyg\r\nAwAEAAAAAQAAABgAAAAABrPxEgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5h\r\nZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9\r\nIlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9y\r\nZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6\r\nYWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZm\r\nLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgog\r\nICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAA\r\nC6FJREFUaAXtWnuMVUcZnznPe/fuZYEtDxHCQ1ADBNuuAlKh24dRaqURWFotj5haKAn9SxOaauRi\r\nxEBsMMFSAmnUCDTKWtDioyEm3RLKq6VKC7Rg20VA5Lmwz3vPa8bfN+ecu+fevbugjQQrX5g735n5\r\nvm++13wz5yyc3YKb0gP19a8YTU33+NNmbx0puHjJtGsm+U7beoMxyRsaGrUJE45JxlbclMp/1JXK\r\nsZWM5XLwP6PG6+tzOgVr8tzN0wWTjRq3hojAw6TU+EfdGf9T9uVyGsutQNC4nDpn8zz0m7lmWEwE\r\njm6mbd/r3MCnzNk6DlEbyRFCqfNbAbyBEeaBlJzrkula1mOFQ683fvMcLT917tblGF8dbTgmhe8a\r\nZsbyvY4NhsbEdwy7ZrHntDHOtBuo7q2lGLyvGSnmOe2/fH3S3//EGhGsOZuf03RrKRMC/3wBL30f\r\n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\r\n--Apple-Mail=_59CD87DD-F9B6-46BB-B468-F08A9ACFD2E6--','Nathan,\r\n\r\nI need that policy paragraph we talked about last night for clients/customers showing return policies in one time purchases, and also a modified paragraph for adaptation and insertion into multi-year agreements. (Saw what was on the LBC website, and it’s a start.)\r\n\r\nSame duplicated type of policy for suppler orders of manufacturing component parts, in terms of overage quantities, acceptable return rates of product, testing standards, chargebacks on certain levels of rejected parts, etc. \r\n\r\n\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n￼\r\n\r\n\r\nbrian@mavrix.one <mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-12-04 19:32:36','2025-12-09 18:52:25','2025-12-09 18:52:25','2025-12-09 18:52:25',NULL,NULL,NULL),
(172,4,'<CAGOCFXiYe3SojBKPJywTgr7ubaMBdWvBKsKLvU5VUK3FpokVCQ@mail.gmail.com>',NULL,NULL,'Re: Sol-Ark Preferred Prototype Specs','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Attached is the 5-year projection for our customer list.  </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Dec 4, 2025 at 1:28 PM Brian Stufflebean &lt;Brian@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div><span style=\"font-size:14px\">Nathan,</span><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Please remove LiIon from the reserved production list due to their current status.</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Thank you.</span></div><div><br></div><div><br id=\"m_-791000949994118413lineBreakAtBeginningOfMessage\"><div><br><blockquote type=\"cite\"><div>On Dec 4, 2025, at 12:36 PM, Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:</div><br><div><div dir=\"ltr\"><div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_-791000949994118413_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Dec 4, 2025 at 12:20 PM Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Here it is. </div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_-791000949994118413_m_8061372820603128261_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Dec 3, 2025 at 8:50 PM Brian Stufflebean &lt;Brian@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div><span style=\"font-size:14px\"><b>Nathan and Jordan, </b></span><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">I need to have the proposed Sol-Ark annual units, price per unit and total annual projected forecast for the next 5-years, broken out into an Excel table, by year. </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">We need this ASAP for meetings tomorrow (Thursday, 12/4/25)  afternoon. </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Need the same thing for Sonnen and Mitsubishi.</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Please place at high priority.  </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Thank you,</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Brian </span><br><div><div><br><blockquote type=\"cite\"><div>On Nov 5, 2025, at 11:20 PM, Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:</div><br><div><div dir=\"auto\">Will respond more clearly tomorrow morning.  I want to make sure Nick is included with the communication.   </div><div dir=\"auto\"><br></div><div dir=\"auto\">The BMS could handle 300A for 15 seconds.  It is a heat dissipation issue from FETS.  It can be programmed in back end software.  </div><div dir=\"auto\"><br></div><div dir=\"auto\">Susan and Wilson have new relationship together so their working relationship and knowledge needs to be communicated.   </div><div dir=\"auto\"><br></div><div dir=\"auto\">Try not to be persuaded from GSL to accept their parameters.  Sol Ark is just setting their battery management system and cells to a better quality which will lower their after sales support and align the battery for better performance and balancing.  Chinese have very narrow scope and we need to be specific on laying out our requirements for the project. </div><div dir=\"auto\"><br></div><div dir=\"auto\">Let’s discuss tomorrow morning. <br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_-791000949994118413_m_8061372820603128261_m_-4108392742560738955_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div><div><br></div><div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Nov 5, 2025 at 10:36 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Good evening team.  </div><div><br></div><div>Back from Sol-Ark - BMS question. </div><div><br></div><div><span id=\"m_-791000949994118413m_8061372820603128261m_-4108392742560738955cid:ii_mhmv8y361\">&lt;image (7).png&gt;</span><br></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Is there any possibility of setting the Max Charge/Discharge at 200A to align with the performance targets we’re aiming for? I understand that maintaining 300A for 15 seconds may not be feasible, 15 seconds is a long duration, and most appliances don’t require that much ramp-up time. Could you share any data regarding the peak power capability for a shorter duration, such as 10ms or less?</span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">I reached out to Susan and Wilson on this.  The 16kWh battery can support 200Ah burst but not continuous.  The 314Ah cell is a .5C charge/discharge so they don&#39;t suggest continuous over 157A.  </span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">I want to confirm with you and see if you have any thoughts or ideas before I respond.  </span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Thanks,</span></div></div><div dir=\"ltr\"><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\"><br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt\">Partner | President <br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Lithium Battery Company</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Direct: (917) 266-5336<br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\">Lithium Battery Company</a></span></div></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Nov 3, 2025 at 2:10 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Hi Nathan and team,</div><div><br></div><div>Here are the list of preferred prototype specs from Sol-Ark</div><div><br></div><div><div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\">Please see the below specs for the prototype battery for testing:</div><ul style=\"margin-top:0px;margin-bottom:0px\"><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">LBC512314</div></li><ul style=\"margin-top:0px;margin-bottom:0px\"><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Capacity: 16.1kWh</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Amp Hours (Ah): 314Ah</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Nominal Voltage: 51.2v</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Operating Range: 48v - 56v</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Max Continuous Charge: 200A Optimal | 150A Minimum</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Max Continuous Discharge: 220A Optimal | 200A Minimum</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Peak Discharge Current: 300A</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Communication Protocol: RS-485 Modbus RTU &amp; CANBUS<span style=\"font-size:11pt\"></span></div></li></ul></ul><div><font face=\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif\"><span style=\"font-size:14.6667px\"><br></span></font></div></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Here is a list of specs that would be comparable:</span><font face=\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif\"><span style=\"font-size:14.6667px\"></span></font></div><div><span id=\"m_-791000949994118413m_8061372820603128261m_-4108392742560738955cid:ii_mhjik7da1\">&lt;image (5).png&gt;</span><br></div><div><br></div><div>I have reached out to Susan from GSL and shared the specs. I&#39;ve also inquired if this would be available from one of their dealers in the US.</div><div><br></div><div>Let me know if you have any other thoughts on what we should send thier way.</div><div><br></div><div>Best, </div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\"><br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt\">Partner | President <br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Lithium Battery Company</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Direct: (917) 266-5336<br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\">Lithium Battery Company</a></span></div></div></div></div></div>\r\n</blockquote></div>\r\n</blockquote></div></div>\r\n</div></blockquote></div><br><div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><font size=\"2\">Best regards,</font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><font size=\"2\" style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><b>Brian C. Stufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 Direct</b></div><div style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><span style=\"font-size:11px\">(866)896-2423 Fax</span></div></div><span style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"></span><br><span><span id=\"m_-791000949994118413cid:ii_19aea613d1c4a653afc1\">&lt;CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png&gt;</span></span><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><br><br><a href=\"mailto:brian@mavrix.one\" target=\"_blank\">brian@mavrix.one</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><br><a href=\"https://mavrix1.com/\" target=\"_blank\">https://mavrix1.com/</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><br></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"> This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.<br><br></span></div>\r\n</div>\r\n<br></div></div></div></blockquote></div>\r\n</blockquote></div>\r\n<span id=\"m_-791000949994118413cid:f_mirpwkcz1\">&lt;Battery_Pack_Manufacturing_Equipment_Requirements_Analysis.pdf&gt;</span></div></blockquote></div><br><div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\">Best regards,</font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\" style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><b>Brian C. Stufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 Direct</b></div><div style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><span style=\"font-size:11px\">(866)896-2423 Fax</span></div></div><span style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"></span><br><span><img alt=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" src=\"cid:ii_19aeaedf7d34a653afc1\"></span><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><br><a href=\"mailto:brian@mavrix.one\" target=\"_blank\">brian@mavrix.one</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><a href=\"https://mavrix1.com\" target=\"_blank\">https://mavrix1.com/</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"> This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.<br><br></span></div>\r\n</div>\r\n<br></div></div></blockquote></div>','Attached is the 5-year projection for our customer list.\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Thu, Dec 4, 2025 at 1:28 PM Brian Stufflebean <Brian@mavrix.one> wrote:\r\n\r\n> Nathan,\r\n>\r\n> Please remove LiIon from the reserved production list due to their current\r\n> status.\r\n>\r\n> Thank you.\r\n>\r\n>\r\n>\r\n> On Dec 4, 2025, at 12:36 PM, Nathan Staron <\r\n> Nathan@lithiumbatterycompany.com> wrote:\r\n>\r\n>\r\n>\r\n>\r\n> <https://lithiumbatterycompany.com/>\r\n> <https://www.instagram.com/lithiumbatteryco/>\r\n> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n> <https://www.facebook.com/LithiumBatteryCompany/>\r\n> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n> <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074\r\n> Phone 844-GET-LITHIUM\r\n> Nathan@lithiumbatterycompany.com\r\n> Schedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>\r\n>\r\n>\r\n> On Thu, Dec 4, 2025 at 12:20 PM Nathan Staron <\r\n> Nathan@lithiumbatterycompany.com> wrote:\r\n>\r\n>> Here it is.\r\n>>\r\n>>\r\n>> <https://lithiumbatterycompany.com/>\r\n>> <https://www.instagram.com/lithiumbatteryco/>\r\n>> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n>> <https://www.facebook.com/LithiumBatteryCompany/>\r\n>> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n>> <https://lithiumbatterycompany.com/>\r\n>> NATHAN A. STARON\r\n>> Founder / CEO\r\n>> Lithium Battery Company\r\n>> Cell Phone 813-504-0074\r\n>> Phone 844-GET-LITHIUM\r\n>> Nathan@lithiumbatterycompany.com\r\n>> Schedule A Zoom\r\n>> <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>>\r\n>>\r\n>>\r\n>> On Wed, Dec 3, 2025 at 8:50 PM Brian Stufflebean <Brian@mavrix.one>\r\n>> wrote:\r\n>>\r\n>>> *Nathan and Jordan, *\r\n>>>\r\n>>> I need to have the proposed Sol-Ark annual units, price per unit and\r\n>>> total annual projected forecast for the next 5-years, broken out into an\r\n>>> Excel table, by year.\r\n>>>\r\n>>> We need this ASAP for meetings tomorrow (Thursday, 12/4/25)  afternoon.\r\n>>>\r\n>>> Need the same thing for Sonnen and Mitsubishi.\r\n>>>\r\n>>> Please place at high priority.\r\n>>>\r\n>>> Thank you,\r\n>>>\r\n>>> Brian\r\n>>>\r\n>>> On Nov 5, 2025, at 11:20 PM, Nathan Staron <\r\n>>> Nathan@lithiumbatterycompany.com> wrote:\r\n>>>\r\n>>> Will respond more clearly tomorrow morning.  I want to make sure Nick is\r\n>>> included with the communication.\r\n>>>\r\n>>> The BMS could handle 300A for 15 seconds.  It is a heat dissipation\r\n>>> issue from FETS.  It can be programmed in back end software.\r\n>>>\r\n>>> Susan and Wilson have new relationship together so their working\r\n>>> relationship and knowledge needs to be communicated.\r\n>>>\r\n>>> Try not to be persuaded from GSL to accept their parameters.  Sol Ark is\r\n>>> just setting their battery management system and cells to a better quality\r\n>>> which will lower their after sales support and align the battery for better\r\n>>> performance and balancing.  Chinese have very narrow scope and we need to\r\n>>> be specific on laying out our requirements for the project.\r\n>>>\r\n>>> Let’s discuss tomorrow morning.\r\n>>>\r\n>>>\r\n>>> <https://lithiumbatterycompany.com/>\r\n>>> <https://www.instagram.com/lithiumbatteryco/>\r\n>>> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n>>> <https://www.facebook.com/LithiumBatteryCompany/>\r\n>>> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n>>> <https://lithiumbatterycompany.com/>\r\n>>> NATHAN A. STARON\r\n>>> Founder / CEO\r\n>>> Lithium Battery Company\r\n>>> Cell Phone 813-504-0074\r\n>>> Phone 844-GET-LITHIUM\r\n>>> Nathan@lithiumbatterycompany.com\r\n>>> Schedule A Zoom\r\n>>> <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>>>\r\n>>>\r\n>>>\r\n>>> On Wed, Nov 5, 2025 at 10:36 PM Jordan Wroblewski <\r\n>>> jordan@lithiumbatterycompany.com> wrote:\r\n>>>\r\n>>>> Good evening team.\r\n>>>>\r\n>>>> Back from Sol-Ark - BMS question.\r\n>>>>\r\n>>>> <image (7).png>\r\n>>>> Is there any possibility of setting the Max Charge/Discharge at 200A to\r\n>>>> align with the performance targets we’re aiming for? I understand that\r\n>>>> maintaining 300A for 15 seconds may not be feasible, 15 seconds is a long\r\n>>>> duration, and most appliances don’t require that much ramp-up time. Could\r\n>>>> you share any data regarding the peak power capability for a shorter\r\n>>>> duration, such as 10ms or less?\r\n>>>>\r\n>>>> I reached out to Susan and Wilson on this.  The 16kWh battery can\r\n>>>> support 200Ah burst but not continuous.  The 314Ah cell is a .5C\r\n>>>> charge/discharge so they don\'t suggest continuous over 157A.\r\n>>>>\r\n>>>> I want to confirm with you and see if you have any thoughts or ideas\r\n>>>> before I respond.\r\n>>>>\r\n>>>> Thanks,\r\n>>>>\r\n>>>> Jordan G. Wroblewski\r\n>>>> Partner | President\r\n>>>> Lithium Battery Company\r\n>>>> Direct: (917) 266-5336\r\n>>>> *jordan@lithiumbatterycompany.com\r\n>>>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n>>>>\r\n>>>>\r\n>>>> On Mon, Nov 3, 2025 at 2:10 PM Jordan Wroblewski <\r\n>>>> jordan@lithiumbatterycompany.com> wrote:\r\n>>>>\r\n>>>>> Hi Nathan and team,\r\n>>>>>\r\n>>>>> Here are the list of preferred prototype specs from Sol-Ark\r\n>>>>>\r\n>>>>> Please see the below specs for the prototype battery for testing:\r\n>>>>>\r\n>>>>>    - LBC512314\r\n>>>>>    - Capacity: 16.1kWh\r\n>>>>>       - Amp Hours (Ah): 314Ah\r\n>>>>>       - Nominal Voltage: 51.2v\r\n>>>>>       - Operating Range: 48v - 56v\r\n>>>>>       - Max Continuous Charge: 200A Optimal | 150A Minimum\r\n>>>>>       - Max Continuous Discharge: 220A Optimal | 200A Minimum\r\n>>>>>       - Peak Discharge Current: 300A\r\n>>>>>       - Communication Protocol: RS-485 Modbus RTU & CANBUS\r\n>>>>>\r\n>>>>>\r\n>>>>> Here is a list of specs that would be comparable:\r\n>>>>> <image (5).png>\r\n>>>>>\r\n>>>>> I have reached out to Susan from GSL and shared the specs. I\'ve also\r\n>>>>> inquired if this would be available from one of their dealers in the US.\r\n>>>>>\r\n>>>>> Let me know if you have any other thoughts on what we should send\r\n>>>>> thier way.\r\n>>>>>\r\n>>>>> Best,\r\n>>>>>\r\n>>>>> Jordan G. Wroblewski\r\n>>>>> Partner | President\r\n>>>>> Lithium Battery Company\r\n>>>>> Direct: (917) 266-5336\r\n>>>>> *jordan@lithiumbatterycompany.com\r\n>>>>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>>>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n>>>>>\r\n>>>>\r\n>>> Best regards,\r\n>>>\r\n>>>\r\n>>>\r\n>>> *Brian C. Stufflebean*\r\n>>> CEO, Co-Founder\r\n>>> *(941)545-4153 Direct*\r\n>>> (866)896-2423 Fax\r\n>>>\r\n>>> <CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png>\r\n>>>\r\n>>>\r\n>>> brian@mavrix.one\r\n>>>\r\n>>> https://mavrix1.com/\r\n>>>\r\n>>>\r\n>>>\r\n>>>\r\n>>>\r\n>>>\r\n>>>\r\n>>>\r\n>>>\r\n>>>\r\n>>> *CONFIDENTIALITY NOTICE:* This communication is\r\n>>> confidential and intended only for the intended recipient.  If you are not\r\n>>> the intended recipient, you may not copy, disclose, or distribute this\r\n>>> message to anyone else; any such actions may be unlawful. If you\r\n>>> have received this communication in error, please contact the sender\r\n>>> of the message to inform him or her of the error.\r\n>>>\r\n>>>\r\n>>> <Battery_Pack_Manufacturing_Equipment_Requirements_Analysis.pdf>\r\n>\r\n>\r\n> Best regards,\r\n>\r\n>\r\n>\r\n> *Brian C. Stufflebean*\r\n> CEO, Co-Founder\r\n> *(941)545-4153 Direct*\r\n> (866)896-2423 Fax\r\n>\r\n> [image: CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png]\r\n>\r\n>\r\n> brian@mavrix.one\r\n>\r\n> https://mavrix1.com/\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n> *CONFIDENTIALITY NOTICE:* This communication is confidential and intended\r\n> only for the intended recipient.  If you are not the\r\n> intended recipient, you may not copy, disclose, or distribute this\r\n> message to anyone else; any such actions may be unlawful. If you\r\n> have received this communication in error, please contact the sender\r\n> of the message to inform him or her of the error.\r\n>\r\n>\r\n>',0,0,0,0,0,0,'2025-12-04 19:54:50','2025-12-09 18:52:26','2025-12-09 18:52:26','2025-12-09 18:52:26',NULL,NULL,NULL),
(173,4,'<CAGOCFXioyo5veX0AtdriO3NHGPuH-SxKj0C=SZt0S5FAMgaJBg@mail.gmail.com>',NULL,NULL,'Re: Sol-Ark Preferred Prototype Specs','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Attached is a rough estimate of the energy, nitrogen, and compressed air calculations for the 5-year projection.   Money could be saved by buying a nitrogen generator instead of using liquid nitrogen.  </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table><br></div><div><br></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Dec 4, 2025 at 2:54 PM Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Attached is the 5-year projection for our customer list.  </div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_8869118502528831875_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Dec 4, 2025 at 1:28 PM Brian Stufflebean &lt;Brian@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div><span style=\"font-size:14px\">Nathan,</span><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Please remove LiIon from the reserved production list due to their current status.</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Thank you.</span></div><div><br></div><div><br id=\"m_8869118502528831875m_-791000949994118413lineBreakAtBeginningOfMessage\"><div><br><blockquote type=\"cite\"><div>On Dec 4, 2025, at 12:36 PM, Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:</div><br><div><div dir=\"ltr\"><div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_8869118502528831875_m_-791000949994118413_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Dec 4, 2025 at 12:20 PM Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Here it is. </div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_8869118502528831875_m_-791000949994118413_m_8061372820603128261_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Dec 3, 2025 at 8:50 PM Brian Stufflebean &lt;Brian@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div><span style=\"font-size:14px\"><b>Nathan and Jordan, </b></span><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">I need to have the proposed Sol-Ark annual units, price per unit and total annual projected forecast for the next 5-years, broken out into an Excel table, by year. </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">We need this ASAP for meetings tomorrow (Thursday, 12/4/25)  afternoon. </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Need the same thing for Sonnen and Mitsubishi.</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Please place at high priority.  </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Thank you,</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Brian </span><br><div><div><br><blockquote type=\"cite\"><div>On Nov 5, 2025, at 11:20 PM, Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:</div><br><div><div dir=\"auto\">Will respond more clearly tomorrow morning.  I want to make sure Nick is included with the communication.   </div><div dir=\"auto\"><br></div><div dir=\"auto\">The BMS could handle 300A for 15 seconds.  It is a heat dissipation issue from FETS.  It can be programmed in back end software.  </div><div dir=\"auto\"><br></div><div dir=\"auto\">Susan and Wilson have new relationship together so their working relationship and knowledge needs to be communicated.   </div><div dir=\"auto\"><br></div><div dir=\"auto\">Try not to be persuaded from GSL to accept their parameters.  Sol Ark is just setting their battery management system and cells to a better quality which will lower their after sales support and align the battery for better performance and balancing.  Chinese have very narrow scope and we need to be specific on laying out our requirements for the project. </div><div dir=\"auto\"><br></div><div dir=\"auto\">Let’s discuss tomorrow morning. <br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_8869118502528831875_m_-791000949994118413_m_8061372820603128261_m_-4108392742560738955_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div><div><br></div><div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Nov 5, 2025 at 10:36 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Good evening team.  </div><div><br></div><div>Back from Sol-Ark - BMS question. </div><div><br></div><div><span id=\"m_8869118502528831875m_-791000949994118413m_8061372820603128261m_-4108392742560738955cid:ii_mhmv8y361\">&lt;image (7).png&gt;</span><br></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Is there any possibility of setting the Max Charge/Discharge at 200A to align with the performance targets we’re aiming for? I understand that maintaining 300A for 15 seconds may not be feasible, 15 seconds is a long duration, and most appliances don’t require that much ramp-up time. Could you share any data regarding the peak power capability for a shorter duration, such as 10ms or less?</span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">I reached out to Susan and Wilson on this.  The 16kWh battery can support 200Ah burst but not continuous.  The 314Ah cell is a .5C charge/discharge so they don&#39;t suggest continuous over 157A.  </span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">I want to confirm with you and see if you have any thoughts or ideas before I respond.  </span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Thanks,</span></div></div><div dir=\"ltr\"><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\"><br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt\">Partner | President <br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Lithium Battery Company</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Direct: (917) 266-5336<br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\">Lithium Battery Company</a></span></div></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Nov 3, 2025 at 2:10 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Hi Nathan and team,</div><div><br></div><div>Here are the list of preferred prototype specs from Sol-Ark</div><div><br></div><div><div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\">Please see the below specs for the prototype battery for testing:</div><ul style=\"margin-top:0px;margin-bottom:0px\"><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">LBC512314</div></li><ul style=\"margin-top:0px;margin-bottom:0px\"><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Capacity: 16.1kWh</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Amp Hours (Ah): 314Ah</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Nominal Voltage: 51.2v</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Operating Range: 48v - 56v</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Max Continuous Charge: 200A Optimal | 150A Minimum</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Max Continuous Discharge: 220A Optimal | 200A Minimum</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Peak Discharge Current: 300A</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Communication Protocol: RS-485 Modbus RTU &amp; CANBUS<span style=\"font-size:11pt\"></span></div></li></ul></ul><div><font face=\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif\"><span style=\"font-size:14.6667px\"><br></span></font></div></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Here is a list of specs that would be comparable:</span><font face=\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif\"><span style=\"font-size:14.6667px\"></span></font></div><div><span id=\"m_8869118502528831875m_-791000949994118413m_8061372820603128261m_-4108392742560738955cid:ii_mhjik7da1\">&lt;image (5).png&gt;</span><br></div><div><br></div><div>I have reached out to Susan from GSL and shared the specs. I&#39;ve also inquired if this would be available from one of their dealers in the US.</div><div><br></div><div>Let me know if you have any other thoughts on what we should send thier way.</div><div><br></div><div>Best, </div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\"><br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt\">Partner | President <br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Lithium Battery Company</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Direct: (917) 266-5336<br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\">Lithium Battery Company</a></span></div></div></div></div></div>\r\n</blockquote></div>\r\n</blockquote></div></div>\r\n</div></blockquote></div><br><div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><font size=\"2\">Best regards,</font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><font size=\"2\" style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><b>Brian C. Stufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 Direct</b></div><div style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><span style=\"font-size:11px\">(866)896-2423 Fax</span></div></div><span style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"></span><br><span><span id=\"m_8869118502528831875m_-791000949994118413cid:ii_19aea613d1c4a653afc1\">&lt;CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png&gt;</span></span><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><br><br><a href=\"mailto:brian@mavrix.one\" target=\"_blank\">brian@mavrix.one</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><br><a href=\"https://mavrix1.com/\" target=\"_blank\">https://mavrix1.com/</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><br></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"> This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.<br><br></span></div>\r\n</div>\r\n<br></div></div></div></blockquote></div>\r\n</blockquote></div>\r\n<span id=\"m_8869118502528831875m_-791000949994118413cid:f_mirpwkcz1\">&lt;Battery_Pack_Manufacturing_Equipment_Requirements_Analysis.pdf&gt;</span></div></blockquote></div><br><div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\">Best regards,</font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\" style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><b>Brian C. Stufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 Direct</b></div><div style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><span style=\"font-size:11px\">(866)896-2423 Fax</span></div></div><span style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"></span><br><span><img alt=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" src=\"cid:ii_19aeaedf7d34a653afc1\"></span><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><br><a href=\"mailto:brian@mavrix.one\" target=\"_blank\">brian@mavrix.one</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><a href=\"https://mavrix1.com\" target=\"_blank\">https://mavrix1.com/</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"> This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.<br><br></span></div>\r\n</div>\r\n<br></div></div></blockquote></div>\r\n</blockquote></div>','Attached is a rough estimate of the energy, nitrogen, and compressed air\r\ncalculations for the 5-year projection.   Money could be saved by buying a\r\nnitrogen generator instead of using liquid nitrogen.\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\n\r\n\r\nOn Thu, Dec 4, 2025 at 2:54 PM Nathan Staron <\r\nNathan@lithiumbatterycompany.com> wrote:\r\n\r\n> Attached is the 5-year projection for our customer list.\r\n>\r\n>\r\n> <https://lithiumbatterycompany.com/>\r\n> <https://www.instagram.com/lithiumbatteryco/>\r\n> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n> <https://www.facebook.com/LithiumBatteryCompany/>\r\n> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n> <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074\r\n> Phone 844-GET-LITHIUM\r\n> Nathan@lithiumbatterycompany.com\r\n> Schedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>\r\n>\r\n>\r\n> On Thu, Dec 4, 2025 at 1:28 PM Brian Stufflebean <Brian@mavrix.one> wrote:\r\n>\r\n>> Nathan,\r\n>>\r\n>> Please remove LiIon from the reserved production list due to their\r\n>> current status.\r\n>>\r\n>> Thank you.\r\n>>\r\n>>\r\n>>\r\n>> On Dec 4, 2025, at 12:36 PM, Nathan Staron <\r\n>> Nathan@lithiumbatterycompany.com> wrote:\r\n>>\r\n>>\r\n>>\r\n>>\r\n>> <https://lithiumbatterycompany.com/>\r\n>> <https://www.instagram.com/lithiumbatteryco/>\r\n>> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n>> <https://www.facebook.com/LithiumBatteryCompany/>\r\n>> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n>> <https://lithiumbatterycompany.com/>\r\n>> NATHAN A. STARON\r\n>> Founder / CEO\r\n>> Lithium Battery Company\r\n>> Cell Phone 813-504-0074\r\n>> Phone 844-GET-LITHIUM\r\n>> Nathan@lithiumbatterycompany.com\r\n>> Schedule A Zoom\r\n>> <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>>\r\n>>\r\n>>\r\n>> On Thu, Dec 4, 2025 at 12:20 PM Nathan Staron <\r\n>> Nathan@lithiumbatterycompany.com> wrote:\r\n>>\r\n>>> Here it is.\r\n>>>\r\n>>>\r\n>>> <https://lithiumbatterycompany.com/>\r\n>>> <https://www.instagram.com/lithiumbatteryco/>\r\n>>> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n>>> <https://www.facebook.com/LithiumBatteryCompany/>\r\n>>> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n>>> <https://lithiumbatterycompany.com/>\r\n>>> NATHAN A. STARON\r\n>>> Founder / CEO\r\n>>> Lithium Battery Company\r\n>>> Cell Phone 813-504-0074\r\n>>> Phone 844-GET-LITHIUM\r\n>>> Nathan@lithiumbatterycompany.com\r\n>>> Schedule A Zoom\r\n>>> <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>>>\r\n>>>\r\n>>>\r\n>>> On Wed, Dec 3, 2025 at 8:50 PM Brian Stufflebean <Brian@mavrix.one>\r\n>>> wrote:\r\n>>>\r\n>>>> *Nathan and Jordan, *\r\n>>>>\r\n>>>> I need to have the proposed Sol-Ark annual units, price per unit and\r\n>>>> total annual projected forecast for the next 5-years, broken out into an\r\n>>>> Excel table, by year.\r\n>>>>\r\n>>>> We need this ASAP for meetings tomorrow (Thursday, 12/4/25)  afternoon.\r\n>>>>\r\n>>>> Need the same thing for Sonnen and Mitsubishi.\r\n>>>>\r\n>>>> Please place at high priority.\r\n>>>>\r\n>>>> Thank you,\r\n>>>>\r\n>>>> Brian\r\n>>>>\r\n>>>> On Nov 5, 2025, at 11:20 PM, Nathan Staron <\r\n>>>> Nathan@lithiumbatterycompany.com> wrote:\r\n>>>>\r\n>>>> Will respond more clearly tomorrow morning.  I want to make sure Nick\r\n>>>> is included with the communication.\r\n>>>>\r\n>>>> The BMS could handle 300A for 15 seconds.  It is a heat dissipation\r\n>>>> issue from FETS.  It can be programmed in back end software.\r\n>>>>\r\n>>>> Susan and Wilson have new relationship together so their working\r\n>>>> relationship and knowledge needs to be communicated.\r\n>>>>\r\n>>>> Try not to be persuaded from GSL to accept their parameters.  Sol Ark\r\n>>>> is just setting their battery management system and cells to a better\r\n>>>> quality which will lower their after sales support and align the battery\r\n>>>> for better performance and balancing.  Chinese have very narrow scope and\r\n>>>> we need to be specific on laying out our requirements for the project.\r\n>>>>\r\n>>>> Let’s discuss tomorrow morning.\r\n>>>>\r\n>>>>\r\n>>>> <https://lithiumbatterycompany.com/>\r\n>>>> <https://www.instagram.com/lithiumbatteryco/>\r\n>>>> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n>>>> <https://www.facebook.com/LithiumBatteryCompany/>\r\n>>>> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n>>>> <https://lithiumbatterycompany.com/>\r\n>>>> NATHAN A. STARON\r\n>>>> Founder / CEO\r\n>>>> Lithium Battery Company\r\n>>>> Cell Phone 813-504-0074\r\n>>>> Phone 844-GET-LITHIUM\r\n>>>> Nathan@lithiumbatterycompany.com\r\n>>>> Schedule A Zoom\r\n>>>> <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>>>>\r\n>>>>\r\n>>>>\r\n>>>> On Wed, Nov 5, 2025 at 10:36 PM Jordan Wroblewski <\r\n>>>> jordan@lithiumbatterycompany.com> wrote:\r\n>>>>\r\n>>>>> Good evening team.\r\n>>>>>\r\n>>>>> Back from Sol-Ark - BMS question.\r\n>>>>>\r\n>>>>> <image (7).png>\r\n>>>>> Is there any possibility of setting the Max Charge/Discharge at 200A\r\n>>>>> to align with the performance targets we’re aiming for? I understand that\r\n>>>>> maintaining 300A for 15 seconds may not be feasible, 15 seconds is a long\r\n>>>>> duration, and most appliances don’t require that much ramp-up time. Could\r\n>>>>> you share any data regarding the peak power capability for a shorter\r\n>>>>> duration, such as 10ms or less?\r\n>>>>>\r\n>>>>> I reached out to Susan and Wilson on this.  The 16kWh battery can\r\n>>>>> support 200Ah burst but not continuous.  The 314Ah cell is a .5C\r\n>>>>> charge/discharge so they don\'t suggest continuous over 157A.\r\n>>>>>\r\n>>>>> I want to confirm with you and see if you have any thoughts or ideas\r\n>>>>> before I respond.\r\n>>>>>\r\n>>>>> Thanks,\r\n>>>>>\r\n>>>>> Jordan G. Wroblewski\r\n>>>>> Partner | President\r\n>>>>> Lithium Battery Company\r\n>>>>> Direct: (917) 266-5336\r\n>>>>> *jordan@lithiumbatterycompany.com\r\n>>>>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>>>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n>>>>>\r\n>>>>>\r\n>>>>> On Mon, Nov 3, 2025 at 2:10 PM Jordan Wroblewski <\r\n>>>>> jordan@lithiumbatterycompany.com> wrote:\r\n>>>>>\r\n>>>>>> Hi Nathan and team,\r\n>>>>>>\r\n>>>>>> Here are the list of preferred prototype specs from Sol-Ark\r\n>>>>>>\r\n>>>>>> Please see the below specs for the prototype battery for testing:\r\n>>>>>>\r\n>>>>>>    - LBC512314\r\n>>>>>>    - Capacity: 16.1kWh\r\n>>>>>>       - Amp Hours (Ah): 314Ah\r\n>>>>>>       - Nominal Voltage: 51.2v\r\n>>>>>>       - Operating Range: 48v - 56v\r\n>>>>>>       - Max Continuous Charge: 200A Optimal | 150A Minimum\r\n>>>>>>       - Max Continuous Discharge: 220A Optimal | 200A Minimum\r\n>>>>>>       - Peak Discharge Current: 300A\r\n>>>>>>       - Communication Protocol: RS-485 Modbus RTU & CANBUS\r\n>>>>>>\r\n>>>>>>\r\n>>>>>> Here is a list of specs that would be comparable:\r\n>>>>>> <image (5).png>\r\n>>>>>>\r\n>>>>>> I have reached out to Susan from GSL and shared the specs. I\'ve also\r\n>>>>>> inquired if this would be available from one of their dealers in the US.\r\n>>>>>>\r\n>>>>>> Let me know if you have any other thoughts on what we should send\r\n>>>>>> thier way.\r\n>>>>>>\r\n>>>>>> Best,\r\n>>>>>>\r\n>>>>>> Jordan G. Wroblewski\r\n>>>>>> Partner | President\r\n>>>>>> Lithium Battery Company\r\n>>>>>> Direct: (917) 266-5336\r\n>>>>>> *jordan@lithiumbatterycompany.com\r\n>>>>>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>>>>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n>>>>>>\r\n>>>>>\r\n>>>> Best regards,\r\n>>>>\r\n>>>>\r\n>>>>\r\n>>>> *Brian C. Stufflebean*\r\n>>>> CEO, Co-Founder\r\n>>>> *(941)545-4153 Direct*\r\n>>>> (866)896-2423 Fax\r\n>>>>\r\n>>>> <CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png>\r\n>>>>\r\n>>>>\r\n>>>> brian@mavrix.one\r\n>>>>\r\n>>>> https://mavrix1.com/\r\n>>>>\r\n>>>>\r\n>>>>\r\n>>>>\r\n>>>>\r\n>>>>\r\n>>>>\r\n>>>>\r\n>>>>\r\n>>>>\r\n>>>> *CONFIDENTIALITY NOTICE:* This communication is\r\n>>>> confidential and intended only for the intended recipient.  If you are not\r\n>>>> the intended recipient, you may not copy, disclose, or distribute this\r\n>>>> message to anyone else; any such actions may be unlawful. If you\r\n>>>> have received this communication in error, please contact the sender\r\n>>>> of the message to inform him or her of the error.\r\n>>>>\r\n>>>>\r\n>>>> <Battery_Pack_Manufacturing_Equipment_Requirements_Analysis.pdf>\r\n>>\r\n>>\r\n>> Best regards,\r\n>>\r\n>>\r\n>>\r\n>> *Brian C. Stufflebean*\r\n>> CEO, Co-Founder\r\n>> *(941)545-4153 Direct*\r\n>> (866)896-2423 Fax\r\n>>\r\n>> [image: CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png]\r\n>>\r\n>>\r\n>> brian@mavrix.one\r\n>>\r\n>> https://mavrix1.com/\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>> *CONFIDENTIALITY NOTICE:* This communication is\r\n>> confidential and intended only for the intended recipient.  If you are not\r\n>> the intended recipient, you may not copy, disclose, or distribute this\r\n>> message to anyone else; any such actions may be unlawful. If you\r\n>> have received this communication in error, please contact the sender\r\n>> of the message to inform him or her of the error.\r\n>>\r\n>>\r\n>>',0,0,0,0,0,0,'2025-12-04 20:13:50','2025-12-09 18:52:26','2025-12-09 18:52:26','2025-12-09 18:52:26',NULL,NULL,NULL),
(174,4,'<CAGOCFXgMkxm+OJ5=i3fR4vi=Q3H4v4r9FXDmmFsbxkFJunmpqQ@mail.gmail.com>',NULL,NULL,'Re: Policy Paragraph','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Updated the website address to include the policy.<br><br><a href=\"https://lithiumbatterycompany.com/warranty/\">https://lithiumbatterycompany.com/warranty/</a></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Dec 4, 2025 at 2:32 PM Brian Stufflebean &lt;Brian@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div><span style=\"font-size:14px\">Nathan,</span><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">I need that policy paragraph we talked about last night for clients/customers showing return policies in one time purchases, and also a modified paragraph for adaptation and insertion into multi-year agreements. (Saw what was on the LBC website, and it’s a start.)</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Same duplicated type of policy for suppler orders of manufacturing component parts, in terms of overage quantities, acceptable return rates of product, testing standards, chargebacks on certain levels of rejected parts, etc. </span></div><div><br></div><div><br><div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\">Best regards,</font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\" style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><b>Brian C. Stufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 Direct</b></div><div style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><span style=\"font-size:11px\">(866)896-2423 Fax</span></div></div><span style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"></span><br><span><img alt=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" src=\"cid:ii_19aeb0e441b4a653afc1\"></span><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><br><a href=\"mailto:brian@mavrix.one\" target=\"_blank\">brian@mavrix.one</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><a href=\"https://mavrix1.com\" target=\"_blank\">https://mavrix1.com/</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"> This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.<br><br></span></div>\r\n</div>\r\n\r\n<br></div></div></blockquote></div>','Updated the website address to include the policy.\r\n\r\nhttps://lithiumbatterycompany.com/warranty/\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Thu, Dec 4, 2025 at 2:32 PM Brian Stufflebean <Brian@mavrix.one> wrote:\r\n\r\n> Nathan,\r\n>\r\n> I need that policy paragraph we talked about last night for\r\n> clients/customers showing return policies in one time purchases, and also a\r\n> modified paragraph for adaptation and insertion into multi-year agreements.\r\n> (Saw what was on the LBC website, and it’s a start.)\r\n>\r\n> Same duplicated type of policy for suppler orders of manufacturing\r\n> component parts, in terms of overage quantities, acceptable return rates of\r\n> product, testing standards, chargebacks on certain levels of rejected\r\n> parts, etc.\r\n>\r\n>\r\n> Best regards,\r\n>\r\n>\r\n>\r\n> *Brian C. Stufflebean*\r\n> CEO, Co-Founder\r\n> *(941)545-4153 Direct*\r\n> (866)896-2423 Fax\r\n>\r\n> [image: CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png]\r\n>\r\n>\r\n> brian@mavrix.one\r\n>\r\n> https://mavrix1.com/\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n> *CONFIDENTIALITY NOTICE:* This communication is confidential and intended\r\n> only for the intended recipient.  If you are not the\r\n> intended recipient, you may not copy, disclose, or distribute this\r\n> message to anyone else; any such actions may be unlawful. If you\r\n> have received this communication in error, please contact the sender\r\n> of the message to inform him or her of the error.\r\n>\r\n>\r\n>',0,0,0,0,0,0,'2025-12-04 20:29:53','2025-12-09 18:52:26','2025-12-09 18:52:26','2025-12-09 18:52:26',NULL,NULL,NULL),
(175,4,'<20251204203835.Horde.-scSDPg_jTFqFh75IBn4nnb@mavrix1.aponte.to>',NULL,NULL,'Email Reminder:  Healthcare Benefit Questionnaire','leslie@mavrix.one','Leslie Staron','<!DOCTYPE html>\r\n<html><meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\"><body>\r\n<p style=\"margin:0;\">Hi Everyone!</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\">Just a heads up to keep an eye out for an email with the Subject:  Action Required! Mavrix 1 Management LLC\'s Employee Benefits Program - Questionnaire.</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\">You have been sent a questionnaire by one of our benefit brokers asking for additional information related to the healthcare benefit details I collected from you a few weeks ago.  Your response to the email may positively impact the benefit offers we receive and I know we all are looking for the best possible rates.</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\">Thank you in advance and let me know if you have any questions!</p><p style=\"margin:0;\">Leslie Staron</p><p style=\"margin:0;\">Human Resources</p>\r\n</body></html>','Hi Everyone!\r\n \r\nJust a heads up to keep an eye out for an email with the Subject:  Action\r\nRequired! Mavrix 1 Management LLC\'s Employee Benefits Program -\r\nQuestionnaire.\r\n \r\nYou have been sent a questionnaire by one of our benefit brokers asking for\r\nadditional information related to the healthcare benefit details I\r\ncollected from you a few weeks ago.  Your response to the email may\r\npositively impact the benefit offers we receive and I know we all are\r\nlooking for the best possible rates.\r\n \r\nThank you in advance and let me know if you have any questions!\r\nLeslie Staron\r\nHuman Resources',0,0,0,0,0,0,'2025-12-04 20:38:35','2025-12-09 18:52:27','2025-12-09 18:52:27','2025-12-09 18:52:27',NULL,NULL,NULL),
(176,4,'<CAGOCFXimmHu+PJJYjmSiMErDXQjD_5WCXw95QnmWUqLcGSHvcQ@mail.gmail.com>',NULL,NULL,'Re: Sol-Ark Preferred Prototype Specs','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Updated Formatting for Customer List</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Dec 4, 2025 at 3:13 PM Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Attached is a rough estimate of the energy, nitrogen, and compressed air calculations for the 5-year projection.   Money could be saved by buying a nitrogen generator instead of using liquid nitrogen.  </div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_-4395457955111583434_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table><br></div><div><br></div></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Dec 4, 2025 at 2:54 PM Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Attached is the 5-year projection for our customer list.  </div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_-4395457955111583434_m_8869118502528831875_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Dec 4, 2025 at 1:28 PM Brian Stufflebean &lt;Brian@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div><span style=\"font-size:14px\">Nathan,</span><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Please remove LiIon from the reserved production list due to their current status.</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Thank you.</span></div><div><br></div><div><br id=\"m_-4395457955111583434m_8869118502528831875m_-791000949994118413lineBreakAtBeginningOfMessage\"><div><br><blockquote type=\"cite\"><div>On Dec 4, 2025, at 12:36 PM, Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:</div><br><div><div dir=\"ltr\"><div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_-4395457955111583434_m_8869118502528831875_m_-791000949994118413_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Dec 4, 2025 at 12:20 PM Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Here it is. </div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_-4395457955111583434_m_8869118502528831875_m_-791000949994118413_m_8061372820603128261_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Dec 3, 2025 at 8:50 PM Brian Stufflebean &lt;Brian@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div><span style=\"font-size:14px\"><b>Nathan and Jordan, </b></span><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">I need to have the proposed Sol-Ark annual units, price per unit and total annual projected forecast for the next 5-years, broken out into an Excel table, by year. </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">We need this ASAP for meetings tomorrow (Thursday, 12/4/25)  afternoon. </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Need the same thing for Sonnen and Mitsubishi.</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Please place at high priority.  </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Thank you,</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Brian </span><br><div><div><br><blockquote type=\"cite\"><div>On Nov 5, 2025, at 11:20 PM, Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:</div><br><div><div dir=\"auto\">Will respond more clearly tomorrow morning.  I want to make sure Nick is included with the communication.   </div><div dir=\"auto\"><br></div><div dir=\"auto\">The BMS could handle 300A for 15 seconds.  It is a heat dissipation issue from FETS.  It can be programmed in back end software.  </div><div dir=\"auto\"><br></div><div dir=\"auto\">Susan and Wilson have new relationship together so their working relationship and knowledge needs to be communicated.   </div><div dir=\"auto\"><br></div><div dir=\"auto\">Try not to be persuaded from GSL to accept their parameters.  Sol Ark is just setting their battery management system and cells to a better quality which will lower their after sales support and align the battery for better performance and balancing.  Chinese have very narrow scope and we need to be specific on laying out our requirements for the project. </div><div dir=\"auto\"><br></div><div dir=\"auto\">Let’s discuss tomorrow morning. <br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_-4395457955111583434_m_8869118502528831875_m_-791000949994118413_m_8061372820603128261_m_-4108392742560738955_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div><div><br></div><div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Nov 5, 2025 at 10:36 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Good evening team.  </div><div><br></div><div>Back from Sol-Ark - BMS question. </div><div><br></div><div><span id=\"m_-4395457955111583434m_8869118502528831875m_-791000949994118413m_8061372820603128261m_-4108392742560738955cid:ii_mhmv8y361\">&lt;image (7).png&gt;</span><br></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Is there any possibility of setting the Max Charge/Discharge at 200A to align with the performance targets we’re aiming for? I understand that maintaining 300A for 15 seconds may not be feasible, 15 seconds is a long duration, and most appliances don’t require that much ramp-up time. Could you share any data regarding the peak power capability for a shorter duration, such as 10ms or less?</span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">I reached out to Susan and Wilson on this.  The 16kWh battery can support 200Ah burst but not continuous.  The 314Ah cell is a .5C charge/discharge so they don&#39;t suggest continuous over 157A.  </span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">I want to confirm with you and see if you have any thoughts or ideas before I respond.  </span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Thanks,</span></div></div><div dir=\"ltr\"><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\"><br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt\">Partner | President <br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Lithium Battery Company</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Direct: (917) 266-5336<br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\">Lithium Battery Company</a></span></div></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Nov 3, 2025 at 2:10 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Hi Nathan and team,</div><div><br></div><div>Here are the list of preferred prototype specs from Sol-Ark</div><div><br></div><div><div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\">Please see the below specs for the prototype battery for testing:</div><ul style=\"margin-top:0px;margin-bottom:0px\"><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">LBC512314</div></li><ul style=\"margin-top:0px;margin-bottom:0px\"><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Capacity: 16.1kWh</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Amp Hours (Ah): 314Ah</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Nominal Voltage: 51.2v</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Operating Range: 48v - 56v</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Max Continuous Charge: 200A Optimal | 150A Minimum</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Max Continuous Discharge: 220A Optimal | 200A Minimum</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Peak Discharge Current: 300A</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Communication Protocol: RS-485 Modbus RTU &amp; CANBUS<span style=\"font-size:11pt\"></span></div></li></ul></ul><div><font face=\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif\"><span style=\"font-size:14.6667px\"><br></span></font></div></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Here is a list of specs that would be comparable:</span><font face=\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif\"><span style=\"font-size:14.6667px\"></span></font></div><div><span id=\"m_-4395457955111583434m_8869118502528831875m_-791000949994118413m_8061372820603128261m_-4108392742560738955cid:ii_mhjik7da1\">&lt;image (5).png&gt;</span><br></div><div><br></div><div>I have reached out to Susan from GSL and shared the specs. I&#39;ve also inquired if this would be available from one of their dealers in the US.</div><div><br></div><div>Let me know if you have any other thoughts on what we should send thier way.</div><div><br></div><div>Best, </div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\"><br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt\">Partner | President <br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Lithium Battery Company</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Direct: (917) 266-5336<br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\">Lithium Battery Company</a></span></div></div></div></div></div>\r\n</blockquote></div>\r\n</blockquote></div></div>\r\n</div></blockquote></div><br><div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><font size=\"2\">Best regards,</font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><font size=\"2\" style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><b>Brian C. Stufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 Direct</b></div><div style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><span style=\"font-size:11px\">(866)896-2423 Fax</span></div></div><span style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"></span><br><span><span id=\"m_-4395457955111583434m_8869118502528831875m_-791000949994118413cid:ii_19aea613d1c4a653afc1\">&lt;CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png&gt;</span></span><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><br><br><a href=\"mailto:brian@mavrix.one\" target=\"_blank\">brian@mavrix.one</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><br><a href=\"https://mavrix1.com/\" target=\"_blank\">https://mavrix1.com/</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><br></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"> This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.<br><br></span></div>\r\n</div>\r\n<br></div></div></div></blockquote></div>\r\n</blockquote></div>\r\n<span id=\"m_-4395457955111583434m_8869118502528831875m_-791000949994118413cid:f_mirpwkcz1\">&lt;Battery_Pack_Manufacturing_Equipment_Requirements_Analysis.pdf&gt;</span></div></blockquote></div><br><div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\">Best regards,</font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\" style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><b>Brian C. Stufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 Direct</b></div><div style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><span style=\"font-size:11px\">(866)896-2423 Fax</span></div></div><span style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"></span><br><span><img alt=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" src=\"cid:ii_19aeaedf7d34a653afc1\"></span><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><br><a href=\"mailto:brian@mavrix.one\" target=\"_blank\">brian@mavrix.one</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><a href=\"https://mavrix1.com\" target=\"_blank\">https://mavrix1.com/</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"> This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.<br><br></span></div>\r\n</div>\r\n<br></div></div></blockquote></div>\r\n</blockquote></div>\r\n</blockquote></div>','Updated Formatting for Customer List\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Thu, Dec 4, 2025 at 3:13 PM Nathan Staron <\r\nNathan@lithiumbatterycompany.com> wrote:\r\n\r\n> Attached is a rough estimate of the energy, nitrogen, and compressed air\r\n> calculations for the 5-year projection.   Money could be saved by buying a\r\n> nitrogen generator instead of using liquid nitrogen.\r\n>\r\n>\r\n> <https://lithiumbatterycompany.com/>\r\n> <https://www.instagram.com/lithiumbatteryco/>\r\n> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n> <https://www.facebook.com/LithiumBatteryCompany/>\r\n> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n> <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074\r\n> Phone 844-GET-LITHIUM\r\n> Nathan@lithiumbatterycompany.com\r\n> Schedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n> On Thu, Dec 4, 2025 at 2:54 PM Nathan Staron <\r\n> Nathan@lithiumbatterycompany.com> wrote:\r\n>\r\n>> Attached is the 5-year projection for our customer list.\r\n>>\r\n>>\r\n>> <https://lithiumbatterycompany.com/>\r\n>> <https://www.instagram.com/lithiumbatteryco/>\r\n>> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n>> <https://www.facebook.com/LithiumBatteryCompany/>\r\n>> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n>> <https://lithiumbatterycompany.com/>\r\n>> NATHAN A. STARON\r\n>> Founder / CEO\r\n>> Lithium Battery Company\r\n>> Cell Phone 813-504-0074\r\n>> Phone 844-GET-LITHIUM\r\n>> Nathan@lithiumbatterycompany.com\r\n>> Schedule A Zoom\r\n>> <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>>\r\n>>\r\n>>\r\n>> On Thu, Dec 4, 2025 at 1:28 PM Brian Stufflebean <Brian@mavrix.one>\r\n>> wrote:\r\n>>\r\n>>> Nathan,\r\n>>>\r\n>>> Please remove LiIon from the reserved production list due to their\r\n>>> current status.\r\n>>>\r\n>>> Thank you.\r\n>>>\r\n>>>\r\n>>>\r\n>>> On Dec 4, 2025, at 12:36 PM, Nathan Staron <\r\n>>> Nathan@lithiumbatterycompany.com> wrote:\r\n>>>\r\n>>>\r\n>>>\r\n>>>\r\n>>> <https://lithiumbatterycompany.com/>\r\n>>> <https://www.instagram.com/lithiumbatteryco/>\r\n>>> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n>>> <https://www.facebook.com/LithiumBatteryCompany/>\r\n>>> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n>>> <https://lithiumbatterycompany.com/>\r\n>>> NATHAN A. STARON\r\n>>> Founder / CEO\r\n>>> Lithium Battery Company\r\n>>> Cell Phone 813-504-0074\r\n>>> Phone 844-GET-LITHIUM\r\n>>> Nathan@lithiumbatterycompany.com\r\n>>> Schedule A Zoom\r\n>>> <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>>>\r\n>>>\r\n>>>\r\n>>> On Thu, Dec 4, 2025 at 12:20 PM Nathan Staron <\r\n>>> Nathan@lithiumbatterycompany.com> wrote:\r\n>>>\r\n>>>> Here it is.\r\n>>>>\r\n>>>>\r\n>>>> <https://lithiumbatterycompany.com/>\r\n>>>> <https://www.instagram.com/lithiumbatteryco/>\r\n>>>> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n>>>> <https://www.facebook.com/LithiumBatteryCompany/>\r\n>>>> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n>>>> <https://lithiumbatterycompany.com/>\r\n>>>> NATHAN A. STARON\r\n>>>> Founder / CEO\r\n>>>> Lithium Battery Company\r\n>>>> Cell Phone 813-504-0074\r\n>>>> Phone 844-GET-LITHIUM\r\n>>>> Nathan@lithiumbatterycompany.com\r\n>>>> Schedule A Zoom\r\n>>>> <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>>>>\r\n>>>>\r\n>>>>\r\n>>>> On Wed, Dec 3, 2025 at 8:50 PM Brian Stufflebean <Brian@mavrix.one>\r\n>>>> wrote:\r\n>>>>\r\n>>>>> *Nathan and Jordan, *\r\n>>>>>\r\n>>>>> I need to have the proposed Sol-Ark annual units, price per unit and\r\n>>>>> total annual projected forecast for the next 5-years, broken out into an\r\n>>>>> Excel table, by year.\r\n>>>>>\r\n>>>>> We need this ASAP for meetings tomorrow (Thursday, 12/4/25)\r\n>>>>>  afternoon.\r\n>>>>>\r\n>>>>> Need the same thing for Sonnen and Mitsubishi.\r\n>>>>>\r\n>>>>> Please place at high priority.\r\n>>>>>\r\n>>>>> Thank you,\r\n>>>>>\r\n>>>>> Brian\r\n>>>>>\r\n>>>>> On Nov 5, 2025, at 11:20 PM, Nathan Staron <\r\n>>>>> Nathan@lithiumbatterycompany.com> wrote:\r\n>>>>>\r\n>>>>> Will respond more clearly tomorrow morning.  I want to make sure Nick\r\n>>>>> is included with the communication.\r\n>>>>>\r\n>>>>> The BMS could handle 300A for 15 seconds.  It is a heat dissipation\r\n>>>>> issue from FETS.  It can be programmed in back end software.\r\n>>>>>\r\n>>>>> Susan and Wilson have new relationship together so their working\r\n>>>>> relationship and knowledge needs to be communicated.\r\n>>>>>\r\n>>>>> Try not to be persuaded from GSL to accept their parameters.  Sol Ark\r\n>>>>> is just setting their battery management system and cells to a better\r\n>>>>> quality which will lower their after sales support and align the battery\r\n>>>>> for better performance and balancing.  Chinese have very narrow scope and\r\n>>>>> we need to be specific on laying out our requirements for the project.\r\n>>>>>\r\n>>>>> Let’s discuss tomorrow morning.\r\n>>>>>\r\n>>>>>\r\n>>>>> <https://lithiumbatterycompany.com/>\r\n>>>>> <https://www.instagram.com/lithiumbatteryco/>\r\n>>>>> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n>>>>> <https://www.facebook.com/LithiumBatteryCompany/>\r\n>>>>> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n>>>>> <https://lithiumbatterycompany.com/>\r\n>>>>> NATHAN A. STARON\r\n>>>>> Founder / CEO\r\n>>>>> Lithium Battery Company\r\n>>>>> Cell Phone 813-504-0074\r\n>>>>> Phone 844-GET-LITHIUM\r\n>>>>> Nathan@lithiumbatterycompany.com\r\n>>>>> Schedule A Zoom\r\n>>>>> <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>>>>>\r\n>>>>>\r\n>>>>>\r\n>>>>> On Wed, Nov 5, 2025 at 10:36 PM Jordan Wroblewski <\r\n>>>>> jordan@lithiumbatterycompany.com> wrote:\r\n>>>>>\r\n>>>>>> Good evening team.\r\n>>>>>>\r\n>>>>>> Back from Sol-Ark - BMS question.\r\n>>>>>>\r\n>>>>>> <image (7).png>\r\n>>>>>> Is there any possibility of setting the Max Charge/Discharge at 200A\r\n>>>>>> to align with the performance targets we’re aiming for? I understand that\r\n>>>>>> maintaining 300A for 15 seconds may not be feasible, 15 seconds is a long\r\n>>>>>> duration, and most appliances don’t require that much ramp-up time. Could\r\n>>>>>> you share any data regarding the peak power capability for a shorter\r\n>>>>>> duration, such as 10ms or less?\r\n>>>>>>\r\n>>>>>> I reached out to Susan and Wilson on this.  The 16kWh battery can\r\n>>>>>> support 200Ah burst but not continuous.  The 314Ah cell is a .5C\r\n>>>>>> charge/discharge so they don\'t suggest continuous over 157A.\r\n>>>>>>\r\n>>>>>> I want to confirm with you and see if you have any thoughts or ideas\r\n>>>>>> before I respond.\r\n>>>>>>\r\n>>>>>> Thanks,\r\n>>>>>>\r\n>>>>>> Jordan G. Wroblewski\r\n>>>>>> Partner | President\r\n>>>>>> Lithium Battery Company\r\n>>>>>> Direct: (917) 266-5336\r\n>>>>>> *jordan@lithiumbatterycompany.com\r\n>>>>>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>>>>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n>>>>>>\r\n>>>>>>\r\n>>>>>> On Mon, Nov 3, 2025 at 2:10 PM Jordan Wroblewski <\r\n>>>>>> jordan@lithiumbatterycompany.com> wrote:\r\n>>>>>>\r\n>>>>>>> Hi Nathan and team,\r\n>>>>>>>\r\n>>>>>>> Here are the list of preferred prototype specs from Sol-Ark\r\n>>>>>>>\r\n>>>>>>> Please see the below specs for the prototype battery for testing:\r\n>>>>>>>\r\n>>>>>>>    - LBC512314\r\n>>>>>>>    - Capacity: 16.1kWh\r\n>>>>>>>       - Amp Hours (Ah): 314Ah\r\n>>>>>>>       - Nominal Voltage: 51.2v\r\n>>>>>>>       - Operating Range: 48v - 56v\r\n>>>>>>>       - Max Continuous Charge: 200A Optimal | 150A Minimum\r\n>>>>>>>       - Max Continuous Discharge: 220A Optimal | 200A Minimum\r\n>>>>>>>       - Peak Discharge Current: 300A\r\n>>>>>>>       - Communication Protocol: RS-485 Modbus RTU & CANBUS\r\n>>>>>>>\r\n>>>>>>>\r\n>>>>>>> Here is a list of specs that would be comparable:\r\n>>>>>>> <image (5).png>\r\n>>>>>>>\r\n>>>>>>> I have reached out to Susan from GSL and shared the specs. I\'ve also\r\n>>>>>>> inquired if this would be available from one of their dealers in the US.\r\n>>>>>>>\r\n>>>>>>> Let me know if you have any other thoughts on what we should send\r\n>>>>>>> thier way.\r\n>>>>>>>\r\n>>>>>>> Best,\r\n>>>>>>>\r\n>>>>>>> Jordan G. Wroblewski\r\n>>>>>>> Partner | President\r\n>>>>>>> Lithium Battery Company\r\n>>>>>>> Direct: (917) 266-5336\r\n>>>>>>> *jordan@lithiumbatterycompany.com\r\n>>>>>>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>>>>>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n>>>>>>>\r\n>>>>>>\r\n>>>>> Best regards,\r\n>>>>>\r\n>>>>>\r\n>>>>>\r\n>>>>> *Brian C. Stufflebean*\r\n>>>>> CEO, Co-Founder\r\n>>>>> *(941)545-4153 Direct*\r\n>>>>> (866)896-2423 Fax\r\n>>>>>\r\n>>>>> <CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png>\r\n>>>>>\r\n>>>>>\r\n>>>>> brian@mavrix.one\r\n>>>>>\r\n>>>>> https://mavrix1.com/\r\n>>>>>\r\n>>>>>\r\n>>>>>\r\n>>>>>\r\n>>>>>\r\n>>>>>\r\n>>>>>\r\n>>>>>\r\n>>>>>\r\n>>>>>\r\n>>>>> *CONFIDENTIALITY NOTICE:* This communication is\r\n>>>>> confidential and intended only for the intended recipient.  If you are not\r\n>>>>> the intended recipient, you may not copy, disclose, or distribute this\r\n>>>>> message to anyone else; any such actions may be unlawful. If you\r\n>>>>> have received this communication in error, please contact the sender\r\n>>>>> of the message to inform him or her of the error.\r\n>>>>>\r\n>>>>>\r\n>>>>> <Battery_Pack_Manufacturing_Equipment_Requirements_Analysis.pdf>\r\n>>>\r\n>>>\r\n>>> Best regards,\r\n>>>\r\n>>>\r\n>>>\r\n>>> *Brian C. Stufflebean*\r\n>>> CEO, Co-Founder\r\n>>> *(941)545-4153 Direct*\r\n>>> (866)896-2423 Fax\r\n>>>\r\n>>> [image: CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png]\r\n>>>\r\n>>>\r\n>>> brian@mavrix.one\r\n>>>\r\n>>> https://mavrix1.com/\r\n>>>\r\n>>>\r\n>>>\r\n>>>\r\n>>>\r\n>>>\r\n>>>\r\n>>>\r\n>>>\r\n>>>\r\n>>> *CONFIDENTIALITY NOTICE:* This communication is\r\n>>> confidential and intended only for the intended recipient.  If you are not\r\n>>> the intended recipient, you may not copy, disclose, or distribute this\r\n>>> message to anyone else; any such actions may be unlawful. If you\r\n>>> have received this communication in error, please contact the sender\r\n>>> of the message to inform him or her of the error.\r\n>>>\r\n>>>\r\n>>>',0,0,0,0,0,0,'2025-12-04 20:52:08','2025-12-09 18:52:27','2025-12-09 18:52:27','2025-12-09 18:52:27',NULL,NULL,NULL),
(177,4,'<20251204231539.557B49294A2C@scb-lp-273.ad.rit.edu>',NULL,NULL,'Calendar Event Invitation: Rick Mtg','noreply@example.com','Admin User','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">Rick Mtg</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 10, 2025 5:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 10, 2025 5:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: \r\n #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n    <tr>\r\n        <td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n            <table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n                <tr>\r\n                    <!-- LEFT COLUMN -->\r\n                    <td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n                        <div style=\"margin-bottom: 10px;\">\r\n                            <strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br>\r\n                            <span style=\"font-size: 12px; color: #666;\">Administrator</span>\r\n                        </div>\r\n\r\n                        <div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n                            <div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n                            <div>Mobile: 906-123-4567</div>\r\n                            <div>Office: 906-555-4567</div>\r\n                            <div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n                        </div>\r\n                    </td>\r\n\r\n                    <!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n                    <td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\">\r\n                        <img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n\r\n                        <div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">\r\n                            3900 W. Coachman Ave.<br>\r\n                            Tampa, FL 33611\r\n                        </div>\r\n                    </td>\r\n                </tr>\r\n            </table>\r\n        </td>\r\n    </tr>\r\n\r\n    <tr>\r\n        <td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n            <div style=\"font-size: 9px; color: #888; line-height: 1.4;\">\r\n                <strong>CONFIDENTIALITY NOTICE:</strong><br>\r\n                <em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br>\r\n                <em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br>\r\n                <em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br>\r\n                <em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em>\r\n            </div>\r\n        </td>\r\n    </tr>\r\n</table></div>\r\n','📅 Calendar Event InvitationRick Mtg📅 Start:Dec 10, 2025 5:00 PM🕐 End:Dec 10, 2025 5:30 PM📍 Location:Not specifiedView Calendar\r\n    \r\n        \r\n            \r\n                \r\n                    \r\n                    \r\n                        \r\n                            Admin User\r\n                            Administrator\r\n                        \r\n\r\n                        \r\n                            admin@mavrix.one\r\n                            Mobile: 906-123-4567\r\n                            Office: 906-555-4567\r\n                            https://mavrix1.com\r\n                        \r\n                    \r\n\r\n                    \r\n                    \r\n                        \r\n\r\n                        \r\n                            3900 W. Coachman Ave.\r\n                            Tampa, FL 33611\r\n                        \r\n                    \r\n                \r\n            \r\n        \r\n    \r\n\r\n    \r\n        \r\n            \r\n                CONFIDENTIALITY NOTICE:\r\n                This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.\r\n                This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n                If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n                Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n            \r\n        \r\n    \r\n\r\n',1,0,0,0,0,0,'2025-12-04 23:15:38','2025-12-09 18:52:28','2025-12-09 18:52:28','2025-12-09 19:51:16',NULL,NULL,NULL),
(178,4,'<CAGOCFXgBnrsWnwU4aYxR7H_e2z05fKq27iZNgWUAAFt-Jjn2SQ@mail.gmail.com>',NULL,NULL,'Re: Upcoming Grant Opps -- first opens 12/10','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Hi Robert,</div><div><br></div><div>This is definitely something we are very interested in.  When would be a good time to talk about this?</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Dec 3, 2025 at 6:22 PM Robert Eckard &lt;<a href=\"mailto:robert@flowpath.pro\">robert@flowpath.pro</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"msg8536607063659091676\">\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nHey LBC team -- </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nDo you all have time for a quick check in sometime in the next couple of days? </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nThere are two solicitations that are going to be released starting next week, one for DOD on Li Ion batteries specifically for a\r\n<a title=\"https://share.google/images/piQ6Jnax7gqmh9AV3\" href=\"https://share.google/images/piQ6Jnax7gqmh9AV3\" target=\"_blank\">\r\n6T form factor</a> (attached), which will come out on the 10th, and then a second one from DOE that was announced out over the summer and is likely to come out sometime late this year or early Q1.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nWhen would be a good time to check in? I&#39;m flexible pretty much all day Friday, and have openings tomorrow in the morning and late late afternoon ET.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nRobert</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n____________________  </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nRobert Eckard, PhD</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n916.233.9035 (cell)</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n</div>\r\n\r\n</div></blockquote></div>','Hi Robert,\r\n\r\nThis is definitely something we are very interested in.  When would be a\r\ngood time to talk about this?\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Wed, Dec 3, 2025 at 6:22 PM Robert Eckard <robert@flowpath.pro> wrote:\r\n\r\n> Hey LBC team --\r\n> Do you all have time for a quick check in sometime in the next couple of\r\n> days?\r\n> There are two solicitations that are going to be released starting next\r\n> week, one for DOD on Li Ion batteries specifically for a 6T form factor\r\n> <https://share.google/images/piQ6Jnax7gqmh9AV3> (attached), which will\r\n> come out on the 10th, and then a second one from DOE that was announced out\r\n> over the summer and is likely to come out sometime late this year or early\r\n> Q1.\r\n>\r\n> When would be a good time to check in? I\'m flexible pretty much all day\r\n> Friday, and have openings tomorrow in the morning and late late afternoon\r\n> ET.\r\n>\r\n> Robert\r\n>\r\n> ____________________\r\n> Robert Eckard, PhD\r\n> 916.233.9035 (cell)\r\n>\r\n>\r\n>',0,0,0,0,0,0,'2025-12-05 00:01:02','2025-12-09 18:52:28','2025-12-09 18:52:28','2025-12-09 18:52:28',NULL,NULL,NULL),
(179,4,' <BN7PR04MB4259BFC33D1ED043D846BA70A8A7A@BN7PR04MB4259.namprd04.prod.outlook.com>',NULL,NULL,'Project Volt Meeting with the Bradenton Area EDC','elizabethc@bradentonareaedc.com','Elizabeth Cordes','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle18\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Calibri\",sans-serif;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n</body>\r\n</html>','\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;\r\n\r\n\r\n',0,0,0,0,0,0,'2025-12-05 14:24:35','2025-12-09 18:52:29','2025-12-09 18:52:29','2025-12-09 18:52:29',NULL,NULL,NULL),
(180,4,' <BN7PR04MB4259451DA48795403DEC6D6AA8A7A@BN7PR04MB4259.namprd04.prod.outlook.com>',NULL,NULL,'RE: Project Bolt Meeting - Bradenton Area EDC','elizabethc@bradentonareaedc.com','Elizabeth Cordes','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\nspan.EmailStyle18\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Calibri\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">HI Brian,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">I have sent over a calendar invite for our meeting at 1pm on the 16<sup>th</sup>. Can you please complete the attached form for the project prior to our meeting? If you have\r\n any questions, please don&#8217;t hesitate to reach out.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Kindest regards,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:16.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#0079A1;mso-ligatures:standardcontextual\">Elizabeth Cordes</span></b><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:14.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Director of Business Recruitment &amp; Expansion</span><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:14.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#212121;mso-ligatures:standardcontextual\">Bradenton Area Economic Development Corporation</span></b><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkMgQprkW6N3_xK6lZ3mQW2P7y7-6V_mnjW7j8c83143s9NW3YnBPp7WMQy9W7XM3wn48XHWbW25B5CJ4Kj0ltVJxzg-86ByxkW38F0Lk52lnxkW2Rb3448qSv2kW2Jysh86cck06W2pQX7L736kSNW7ZTQGn8XmZwTW46MqlM2nks5RW4q_bNr7t419bW7b3vsl5d3gfCW1jKRmz7V7DywN5y7-dkCTTL0W7lFq_77GJ3y_N9cHFSJsfVjTVyVFLm2wCqnkW1X6NrQ8xFBgGW4V1fT46J40GcW45xK0B3KxyqFW1V0P378J7_W6W222zQ25tc-h9N4LwnV7Kb_KFW1tcjqp4tVz3mW9jhtR15Q1Jl4W8rH_0n7cTKRCVFBDph8pTZtLW4W0w082559t9N5J389Mf_z9rW3LqvdS3Fbj2MW1Shqxy8h9NKhW77wF6K3wDwvtW4QZfQ21fHzzhVYghsf8mwfwzW8R_v-88p9wD2W7Z5pvh1WK97CW5skF178KC7rMW8yrtYp3WvPlhW51QQgD813dnmW71jD4c2BhmrSW2l3-6z7-XvvSSs0g3QNtNTW38Yb_c6r-fGVW3d2zk_8lb1gYW6rnqn96R6L1GW1_SQH78hngzwW6Q_TQ_8yxvKWVjsLb06SyhJ1VrX0Kz77fwLDW39f8n_1MHxprVLXV5K2b-qPyW3_-PZx5MlgJ-W35H6lT2wBNTWW1-hVTT2vHnjJW2c1q0X94Y_6TW8bpkhv4Jj2snW8t_VRB6zQDkyW8jzvxg8mhb81W67SPFl6CcYJmVlphyF2bxmQNW4_JHsj8TrpM0W1SkLyv3mkxYRW1Hm02M1X1qBfW2M38dG9hVBPgW5DTVN91x2j3tW2Lykvb1FM6MkW8m951H7Xz0BPVp2GB87Ty0wfW1YfdH55hWwlKW4ZHY891NrTx6W8sYt7k1vqmpPW5fMymx2Mh7K5N20-q14CzC88W4CqnYx9hPqtYW4nD0jk5sFwwJW27FCjp7L9HmvN24sdHkLCl14W9b2_mW1RZqJfW6YKw7m2SfzntW8R-HKy5dBkG9W5pfBw_6XCtDYW1f79yX6cHwhnW46GBNs4t4lDzW1JdrfJ2pSmQmN4TxZYmmb1lmW2bFcZh4b0VjnW1c6m2p4HTTybW3vdn6S5Xw3rwW8BJcMK3wfVwgW95ZDYX1sY_qTW40n7rM9gxjHFW3PR6196g0h52W7SbLhV25LH63W6DXpFv7CSPpsW8_S1bD19d5ZQW3HzCWw2QmT5WN4npdQwC0g7wW8VB4RG1hvSlPW8Z7s613h545qVf5tVs1FD5DkW6Nx4FL3FJc8JW7fdftt9h5MptV5Dmcp1RYKy2W9015sw75bk4_W2-X7MD20VlCzW3l3ZK42pygGVVQQCrz5hLNb4W1XcGTG6X361tW5ZYnN66HcmmjW4CGqGJ60GdGPW16WpyL7plnXTW2vql9l2LKjhCW59lqf07X740KN2m4zHKwV6N-W3hjyqn72jxHQW5kdPtw8ST5l4f2pct5q04\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0563C1;mso-ligatures:standardcontextual\">5840\r\n 26<sup>th</sup> Street West, 26 West Center, Suite 232, Bradenton, FL 34207</span></a><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0079A1;mso-ligatures:standardcontextual\">Email:</span></b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">\r\n</span><a href=\"mailto:ElizabethC@BradentonAreaEDC.com\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0563C1;mso-ligatures:standardcontextual\">ElizabethC@BradentonAreaEDC.com</span></a><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0079A1;mso-ligatures:standardcontextual\">Phone:&nbsp;</span></b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">941-803-9033</span><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0079A1;mso-ligatures:standardcontextual\">Cell:&nbsp;</span></b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">716-908-6134<b><span style=\"color:black\"><br>\r\n</span></b></span><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mvN5s_MddTTTVWW8L63bB5NW6CRW6CK8-r62YSGSW4q-y_63t3BzRN8N4m6PRRSpFW4pthms7F3thfW5NgRD86RmsB2W43bbY76XM4yQN6Z_6ydpgtFzW4H9XXz9496RTW1vwmz24BzChzW26fJ753FBsbqW9dy5095_788lVF-bWT6H5qd2W4s9cT75LMzVlW5x5gG54wC9QqN2ZLg3NKMt7pW3WkcHD2Wnnb_W97Pr0-2s2bR7W4W3M9l6tpTRCMtkcxNBh_DpVqrK_V5Q9TRxf56XMd004\" title=\"http://www.bradentonareaedc.com/\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:purple;mso-ligatures:standardcontextual\">BradentonAreaEDC.com</span></a><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">&nbsp;</span><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3kxW4WPcVT2DJWqJW2Q9w3G3XH1gtW3YvwDz6_NL56W73pcXs5F2lNSW2rqXBb14v4-MW3m6PDs5rPLlqN62bkjwqN2ynW6ks7551Zk-yJW8WVNXh993ll5VWR4cp6SXcdXW8lyVZP5ltP1CW6Y4Hd98mCJ84W4-sYRQ6JhCVXVBKQhb5KjslyW7m7D2Z16qv7JW5pn4t63jGS7yW1_-cbM2vPQyVW8rgxrW1gxXxPW7BqCVj6nL8CNW7M_z516rrDN9N4TkWsqLWlCVW4fKs4c7TMlNvf8WBXg004\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"34\" height=\"34\" style=\"width:.3583in;height:.3583in\" id=\"Picture_x0020_49\" src=\"cid:image001.png@01DC65CB.0C91F210\"></span></a><span style=\"mso-ligatures:standardcontextual\">&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3kvW7Gynn_3pjkHyN2w5NSsHdKDMW1fLXWD5qC9MKW3_ZPY-4pg5YrW1lKfry8byyDxW8HVLWG74jQNLW5yQv-82zCnx6W7kn6dw4Sjm-sW3V07xp3jmqcqW39B9-t1RDkwKW1Lm6Br35-KGFVYHwNk4_WjhNW4s1rpc49x7BpW7j99Jy2bS6JPW5M6knS3NHrXQW1GT64p4Y084_N42hy6lqNNK6W5MWBSN1vv9ghW1PsZc_2RpnmCW17ZVHG8gmZjHN8Dls57P5bWfW31NGCf5spQFgW7WHSzd6fcczRW2yq3D-5PPzCMf8hn93b04\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"34\" height=\"34\" style=\"width:.35in;height:.35in\" id=\"Picture_x0020_48\" src=\"cid:image002.png@01DC65CB.0C91F210\"></span></a><span style=\"mso-ligatures:standardcontextual\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jll2-6qcW7Y8-PT6lZ3nsW1yVVp72Wkd5yN1V_flgDJLKPVfsYN72PN_nwW8qcyTC3TmQ8qW4d3ymg4r3VTRW7qSgxL7k4lpxW1x-Vld93QTbvW54dc2S1t9S79W4CwkmF4MdmpsW7xn4Rg3vgtsYW1l4x0D4nHcGwW79Z5ly5qtSX6W94N1XW1L3_81W4zFYFC8RDrmTW59fk9D97cqwpW3lShGt91qfKVVNSDzm5xZJ3TW7LTFft4PNBYDW4lVJh74NlFwvW6mKMcB3Zp1CZW3dxmsQ6-NyrRVyWX6R2NZsxhW4vYzNr4YJZc9N1q8LsLtnBQ7N1ddcw2yMdSXVh3yq520h2WSdH1M4W04\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"34\" height=\"34\" style=\"width:.3583in;height:.3583in\" id=\"Picture_x0020_47\" src=\"cid:image003.png@01DC65CB.0C91F210\"></span></a><span style=\"mso-ligatures:standardcontextual\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3p6W3CNCcW952ctKW11PhF31XR_S8W5tNFCj5jWVNJW5krNzs77P-hbW72FcfW2vK86YW2HDDcD4Pdb1XW8NDj8H5SnX4gW3wPX6051v9zDW14zZZ286NCd1N6C1wQ3THCbMW5_LRyV8sQLN5W2tqk2w7ckyRDW12Mz9Q3HdHvrMhMcxLjc-58W1YPKNt42QJCsN3SH7wnQRF6ZW6Bj2z45tQDZcW1_ZwHq1TDvJxW5_hTcn3DJF6nW2gRZmJ7PyysdW1WNFBN3RPwR4MD9FNv_d8mZW5x_vg13s-MbpW6JB2y67-HTdTf2Z2c7v04\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"34\" height=\"34\" style=\"width:.3583in;height:.3583in\" id=\"Picture_x0020_46\" src=\"cid:image004.png@01DC65CB.0C91F210\"></span></a><span style=\"mso-ligatures:standardcontextual\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3q0W15vtTZ7pVBB0W70wHQw5X2y4CW9knmM92tCssbW43p9d_3rqYR4VP62m_5fPQLBW8Y1TBf7zmwhzW8YPlsT4b2jxqW1TWlnp3ClgWvN5_MzvlgPyB2W65L4Kp72qn-VW1PxRs_2Z78V4N29LQmDFCJn9W7bkWzH486TJ0W4YQH492pw0HhVW76n88NGBl1N7RpldbyDmBgW7MpT6y3Fr5_-W2-35LF5b5PHVW6sTj1530TYNGW40C5DM7FdspFW3C5rg28my2wLW69RJ9F3p6bWdf8Xs32s04\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"34\" height=\"34\" style=\"width:.3583in;height:.3583in\" id=\"Picture_x0020_45\" src=\"cid:image005.png@01DC65CB.0C91F210\"></span></a><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3q5W9jCcTF2MPLC-W51K0mj8wZZ3CW2xDdJW7xZfMrVD8NfC6h8HDTW91LZ9W5pQhWSW8DzFnX8vyn-dW4XCF_D7Qt2gbN2LLY0w7q0qWVqt1dp2scsD6W3X-VV_97dvh8W6VTrmp8k6pWJW12CR9l197C4WW8dWJh41rmQWmW2zZ9sF6K3k1mW7G3tFx3DPDl2W53WxvG5DmPqhW8YpJxs98YVR5N2mhFg2mMPpvW6sDRRY2P4vMVW15SqVs1JkgpYW6xgln77Zd3tNW5dYL1y1WF9nnW4K0qxk4s5gtDVbNy-c8y6_mCf5fwq_204\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:windowtext;text-decoration:none\"><img border=\"0\" width=\"624\" height=\"312\" style=\"width:6.5in;height:3.25in\" id=\"Picture_x0020_6\" src=\"cid:image006.png@01DC65CB.0C91F210\"></span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Brian Stufflebean &lt;Brian@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Thursday, December 4, 2025 12:19 PM<br>\r\n<b>To:</b> Elizabeth Cordes &lt;elizabethc@bradentonareaedc.com&gt;; Marcus Geiger, P.E. &lt;Marcus.Geiger@kimley-horn.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;; Nathan A. Staron &lt;Nathan@Lithiumbatterycompany.com&gt;<br>\r\n<b>Cc:</b> Tony Aponte &lt;tony@mavrix.one&gt;<br>\r\n<b>Subject:</b> Project Bolt Meeting - Bradenton Area EDC<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt;color:#0A2F41\">Elizabeth and all,&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:10.5pt;color:#0A2F41\">Can we confirm 12/16 at 1pm?</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt;color:#0A2F41\">We may have up to 3 additional&nbsp;people joining as well, will try to get you a better headcount closer to the date. Thank you!</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Best regards,</span><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Brian C. Stufflebean</span></b><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><br>\r\nCEO, Co-Founder<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">(941)545-4153 Direct</span></b><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:8.5pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">(866)896-2423 Fax</span><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><br>\r\n<img border=\"0\" width=\"108\" height=\"23\" style=\"width:1.125in;height:.2416in\" id=\"Picture_x0020_1\" src=\"cid:image007.png@01DC65CB.0C91F210\"><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><br>\r\n<br>\r\n</span><a href=\"mailto:brian@mavrix.one\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">brian@mavrix.one</span></a><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><br>\r\n</span><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jks2-6qcW69sMD-6lZ3lTW7jl-Sx7v5CBcW5BBJyq6pNnrqN20xFVTP8mwHW7xZFL88F7PMdW91SjT98KNm-4V4KtFK7JSfXdW1tgPPp1lCclKVyYZJh1W-ZPRW5tsSMN56HKStN402X5tSkQTbV_gg2G7N3w8fW11tX8K41lKrXW5kttdh9lJysJW8m6ZD53zkh2kN1NcxF5dWRmhW4Ns2Hd5q7GlcW49-8nR4nmz-vW5bVNF96qjMgPW1Q7_yV8wNvP8W88-JJN22QPR0f6ZxW5F04\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">https://mavrix1.com/</span></a><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<b>CONFIDENTIALITY NOTICE:</b>&nbsp;This&nbsp;communication&nbsp;is confidential&nbsp;and&nbsp;intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, or&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any such&nbsp;actions may be unlawful.\r\n If&nbsp;you have&nbsp;received this communication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the&nbsp;message to inform him or her of the&nbsp;error.<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><img border=\"0\" width=\"1\" height=\"1\" style=\"width:.0083in;height:.0083in\" id=\"_x0000_i1025\" src=\"https://d152-C04.na1.hs-sales-engage.com/Cto/V+23284/d152-C04/R5R8b49ndN6J62ww2fC_PW1SpPdD1SpN9DW1Q2S1G1X0z5SW1Gyt0P1T-HVyW1N5DlD1Xn5V9W24TQ571V0Nlnn1V3ftj4W1\"><o:p></o:p></p>\r\n</div>\r\n</body>\r\n</html>','HI Brian,\r\n\r\nI have sent over a calendar invite for our meeting at 1pm on the 16th. Can you please complete the attached form for the project prior to our meeting? If you have any questions, please don\'t hesitate to reach out.\r\n\r\nKindest regards,\r\n\r\nElizabeth Cordes\r\nDirector of Business Recruitment & Expansion\r\nBradenton Area Economic Development Corporation\r\n5840 26th Street West, 26 West Center, Suite 232, Bradenton, FL 34207<https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkMgQprkW6N3_xK6lZ3mQW2P7y7-6V_mnjW7j8c83143s9NW3YnBPp7WMQy9W7XM3wn48XHWbW25B5CJ4Kj0ltVJxzg-86ByxkW38F0Lk52lnxkW2Rb3448qSv2kW2Jysh86cck06W2pQX7L736kSNW7ZTQGn8XmZwTW46MqlM2nks5RW4q_bNr7t419bW7b3vsl5d3gfCW1jKRmz7V7DywN5y7-dkCTTL0W7lFq_77GJ3y_N9cHFSJsfVjTVyVFLm2wCqnkW1X6NrQ8xFBgGW4V1fT46J40GcW45xK0B3KxyqFW1V0P378J7_W6W222zQ25tc-h9N4LwnV7Kb_KFW1tcjqp4tVz3mW9jhtR15Q1Jl4W8rH_0n7cTKRCVFBDph8pTZtLW4W0w082559t9N5J389Mf_z9rW3LqvdS3Fbj2MW1Shqxy8h9NKhW77wF6K3wDwvtW4QZfQ21fHzzhVYghsf8mwfwzW8R_v-88p9wD2W7Z5pvh1WK97CW5skF178KC7rMW8yrtYp3WvPlhW51QQgD813dnmW71jD4c2BhmrSW2l3-6z7-XvvSSs0g3QNtNTW38Yb_c6r-fGVW3d2zk_8lb1gYW6rnqn96R6L1GW1_SQH78hngzwW6Q_TQ_8yxvKWVjsLb06SyhJ1VrX0Kz77fwLDW39f8n_1MHxprVLXV5K2b-qPyW3_-PZx5MlgJ-W35H6lT2wBNTWW1-hVTT2vHnjJW2c1q0X94Y_6TW8bpkhv4Jj2snW8t_VRB6zQDkyW8jzvxg8mhb81W67SPFl6CcYJmVlphyF2bxmQNW4_JHsj8TrpM0W1SkLyv3mkxYRW1Hm02M1X1qBfW2M38dG9hVBPgW5DTVN91x2j3tW2Lykvb1FM6MkW8m951H7Xz0BPVp2GB87Ty0wfW1YfdH55hWwlKW4ZHY891NrTx6W8sYt7k1vqmpPW5fMymx2Mh7K5N20-q14CzC88W4CqnYx9hPqtYW4nD0jk5sFwwJW27FCjp7L9HmvN24sdHkLCl14W9b2_mW1RZqJfW6YKw7m2SfzntW8R-HKy5dBkG9W5pfBw_6XCtDYW1f79yX6cHwhnW46GBNs4t4lDzW1JdrfJ2pSmQmN4TxZYmmb1lmW2bFcZh4b0VjnW1c6m2p4HTTybW3vdn6S5Xw3rwW8BJcMK3wfVwgW95ZDYX1sY_qTW40n7rM9gxjHFW3PR6196g0h52W7SbLhV25LH63W6DXpFv7CSPpsW8_S1bD19d5ZQW3HzCWw2QmT5WN4npdQwC0g7wW8VB4RG1hvSlPW8Z7s613h545qVf5tVs1FD5DkW6Nx4FL3FJc8JW7fdftt9h5MptV5Dmcp1RYKy2W9015sw75bk4_W2-X7MD20VlCzW3l3ZK42pygGVVQQCrz5hLNb4W1XcGTG6X361tW5ZYnN66HcmmjW4CGqGJ60GdGPW16WpyL7plnXTW2vql9l2LKjhCW59lqf07X740KN2m4zHKwV6N-W3hjyqn72jxHQW5kdPtw8ST5l4f2pct5q04>\r\nEmail: ElizabethC@BradentonAreaEDC.com<mailto:ElizabethC@BradentonAreaEDC.com>\r\nPhone: 941-803-9033\r\nCell: 716-908-6134\r\nBradentonAreaEDC.com<https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mvN5s_MddTTTVWW8L63bB5NW6CRW6CK8-r62YSGSW4q-y_63t3BzRN8N4m6PRRSpFW4pthms7F3thfW5NgRD86RmsB2W43bbY76XM4yQN6Z_6ydpgtFzW4H9XXz9496RTW1vwmz24BzChzW26fJ753FBsbqW9dy5095_788lVF-bWT6H5qd2W4s9cT75LMzVlW5x5gG54wC9QqN2ZLg3NKMt7pW3WkcHD2Wnnb_W97Pr0-2s2bR7W4W3M9l6tpTRCMtkcxNBh_DpVqrK_V5Q9TRxf56XMd004>\r\n\r\n[cid:image001.png@01DC65CB.0C91F210]<https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3kxW4WPcVT2DJWqJW2Q9w3G3XH1gtW3YvwDz6_NL56W73pcXs5F2lNSW2rqXBb14v4-MW3m6PDs5rPLlqN62bkjwqN2ynW6ks7551Zk-yJW8WVNXh993ll5VWR4cp6SXcdXW8lyVZP5ltP1CW6Y4Hd98mCJ84W4-sYRQ6JhCVXVBKQhb5KjslyW7m7D2Z16qv7JW5pn4t63jGS7yW1_-cbM2vPQyVW8rgxrW1gxXxPW7BqCVj6nL8CNW7M_z516rrDN9N4TkWsqLWlCVW4fKs4c7TMlNvf8WBXg004>     [cid:image002.png@01DC65CB.0C91F210] <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3kvW7Gynn_3pjkHyN2w5NSsHdKDMW1fLXWD5qC9MKW3_ZPY-4pg5YrW1lKfry8byyDxW8HVLWG74jQNLW5yQv-82zCnx6W7kn6dw4Sjm-sW3V07xp3jmqcqW39B9-t1RDkwKW1Lm6Br35-KGFVYHwNk4_WjhNW4s1rpc49x7BpW7j99Jy2bS6JPW5M6knS3NHrXQW1GT64p4Y084_N42hy6lqNNK6W5MWBSN1vv9ghW1PsZc_2RpnmCW17ZVHG8gmZjHN8Dls57P5bWfW31NGCf5spQFgW7WHSzd6fcczRW2yq3D-5PPzCMf8hn93b04>      [cid:image003.png@01DC65CB.0C91F210] <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jll2-6qcW7Y8-PT6lZ3nsW1yVVp72Wkd5yN1V_flgDJLKPVfsYN72PN_nwW8qcyTC3TmQ8qW4d3ymg4r3VTRW7qSgxL7k4lpxW1x-Vld93QTbvW54dc2S1t9S79W4CwkmF4MdmpsW7xn4Rg3vgtsYW1l4x0D4nHcGwW79Z5ly5qtSX6W94N1XW1L3_81W4zFYFC8RDrmTW59fk9D97cqwpW3lShGt91qfKVVNSDzm5xZJ3TW7LTFft4PNBYDW4lVJh74NlFwvW6mKMcB3Zp1CZW3dxmsQ6-NyrRVyWX6R2NZsxhW4vYzNr4YJZc9N1q8LsLtnBQ7N1ddcw2yMdSXVh3yq520h2WSdH1M4W04>      [cid:image004.png@01DC65CB.0C91F210] <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3p6W3CNCcW952ctKW11PhF31XR_S8W5tNFCj5jWVNJW5krNzs77P-hbW72FcfW2vK86YW2HDDcD4Pdb1XW8NDj8H5SnX4gW3wPX6051v9zDW14zZZ286NCd1N6C1wQ3THCbMW5_LRyV8sQLN5W2tqk2w7ckyRDW12Mz9Q3HdHvrMhMcxLjc-58W1YPKNt42QJCsN3SH7wnQRF6ZW6Bj2z45tQDZcW1_ZwHq1TDvJxW5_hTcn3DJF6nW2gRZmJ7PyysdW1WNFBN3RPwR4MD9FNv_d8mZW5x_vg13s-MbpW6JB2y67-HTdTf2Z2c7v04>      [cid:image005.png@01DC65CB.0C91F210] <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3q0W15vtTZ7pVBB0W70wHQw5X2y4CW9knmM92tCssbW43p9d_3rqYR4VP62m_5fPQLBW8Y1TBf7zmwhzW8YPlsT4b2jxqW1TWlnp3ClgWvN5_MzvlgPyB2W65L4Kp72qn-VW1PxRs_2Z78V4N29LQmDFCJn9W7bkWzH486TJ0W4YQH492pw0HhVW76n88NGBl1N7RpldbyDmBgW7MpT6y3Fr5_-W2-35LF5b5PHVW6sTj1530TYNGW40C5DM7FdspFW3C5rg28my2wLW69RJ9F3p6bWdf8Xs32s04>\r\n[cid:image006.png@01DC65CB.0C91F210]<https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3q5W9jCcTF2MPLC-W51K0mj8wZZ3CW2xDdJW7xZfMrVD8NfC6h8HDTW91LZ9W5pQhWSW8DzFnX8vyn-dW4XCF_D7Qt2gbN2LLY0w7q0qWVqt1dp2scsD6W3X-VV_97dvh8W6VTrmp8k6pWJW12CR9l197C4WW8dWJh41rmQWmW2zZ9sF6K3k1mW7G3tFx3DPDl2W53WxvG5DmPqhW8YpJxs98YVR5N2mhFg2mMPpvW6sDRRY2P4vMVW15SqVs1JkgpYW6xgln77Zd3tNW5dYL1y1WF9nnW4K0qxk4s5gtDVbNy-c8y6_mCf5fwq_204>\r\n\r\nFrom: Brian Stufflebean <Brian@mavrix.one>\r\nSent: Thursday, December 4, 2025 12:19 PM\r\nTo: Elizabeth Cordes <elizabethc@bradentonareaedc.com>; Marcus Geiger, P.E. <Marcus.Geiger@kimley-horn.com>; Rick Mislan <rick@mavrix.one>; Nathan A. Staron <Nathan@Lithiumbatterycompany.com>\r\nCc: Tony Aponte <tony@mavrix.one>\r\nSubject: Project Bolt Meeting - Bradenton Area EDC\r\n\r\n\r\nElizabeth and all,\r\n\r\n\r\nCan we confirm 12/16 at 1pm?\r\n\r\nWe may have up to 3 additional people joining as well, will try to get you a better headcount closer to the date. Thank you!\r\n\r\n\r\n\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n[cid:image007.png@01DC65CB.0C91F210]\r\n\r\n\r\nbrian@mavrix.one<mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/<https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jks2-6qcW69sMD-6lZ3lTW7jl-Sx7v5CBcW5BBJyq6pNnrqN20xFVTP8mwHW7xZFL88F7PMdW91SjT98KNm-4V4KtFK7JSfXdW1tgPPp1lCclKVyYZJh1W-ZPRW5tsSMN56HKStN402X5tSkQTbV_gg2G7N3w8fW11tX8K41lKrXW5kttdh9lJysJW8m6ZD53zkh2kN1NcxF5dWRmhW4Ns2Hd5q7GlcW49-8nR4nmz-vW5bVNF96qjMgPW1Q7_yV8wNvP8W88-JJN22QPR0f6ZxW5F04>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-12-05 14:39:39','2025-12-09 18:52:31','2025-12-09 18:52:31','2025-12-09 18:52:31',NULL,NULL,NULL),
(181,4,' <BN7PR04MB425966EDB90189CB9B65AB4AA8A7A@BN7PR04MB4259.namprd04.prod.outlook.com>',NULL,NULL,'Project Bolt Meeting with the Bradenton Area EDC','elizabethc@bradentonareaedc.com','Elizabeth Cordes','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle18\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Calibri\",sans-serif;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n</body>\r\n</html>','\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;\r\n\r\n\r\n',0,0,0,0,0,0,'2025-12-05 14:39:53','2025-12-09 18:52:31','2025-12-09 18:52:31','2025-12-09 18:52:31',NULL,NULL,NULL),
(182,4,'<20251206050850.fcf5770e01769f22@emails.leatherman.com>',NULL,NULL,'Gifts That Get Things Done','Leatherman@emails.leatherman.com','Leatherman','<!DOCTYPE html>\r\n<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\"><head><title>Gifts That Get Things Done</title><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><!--[if mso]>\r\n<xml><w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\"><w:DontUseAdvancedTypographyReadingMail/></w:WordDocument>\r\n<o:OfficeDocumentSettings><o:PixelsPerInch>96</o:PixelsPerInch><o:AllowPNG/></o:OfficeDocumentSettings></xml>\r\n<![endif]--><style>\r\n*{box-sizing:border-box}body{margin:0;padding:0}a[x-apple-data-detectors]{color:inherit!important;text-decoration:inherit!important}#MessageViewBody a{color:inherit;text-decoration:none}p{line-height:inherit}.desktop_hide,.desktop_hide table{mso-hide:all;display:none;max-height:0;overflow:hidden}.image_block img+div{display:none}sub,sup{font-size:75%;line-height:0} @media (max-width:620px){.image_block div.fullWidth{max-width:100%!important}.mobile_hide{display:none}.row-content{width:100%!important}.stack .column{width:100%;display:block}.mobile_hide{min-height:0;max-height:0;max-width:0;overflow:hidden;font-size:0}.desktop_hide,.desktop_hide table{display:table!important;max-height:none!important}.reverse{display:table;width:100%}.reverse .column.first{display:table-footer-group!important}.reverse .column.last{display:table-header-group!important}.row-7 td.column.first .border{padding:5px}.row-11 td.column.first .border,.row-11 td.column.last .border,.row-7 td.column.last .border{padding:0}.row-3 .column-2 .block-1.heading_block td.pad{padding:0 30px!important}.row-3 .column-2 .block-1.heading_block h1{font-size:18px!important}.row-11 .column-1 .block-2.paragraph_block td.pad>div,.row-13 .column-1 .block-4.paragraph_block td.pad>div,.row-5 .column-1 .block-2.paragraph_block td.pad>div,.row-7 .column-1 .block-2.paragraph_block td.pad>div,.row-9 .column-2 .block-2.paragraph_block td.pad>div{font-size:14px!important}.row-5 .column-1 .block-1.heading_block h1{font-size:22px!important}.row-6 .column-1 .block-1.heading_block h1{font-size:24px!important}.row-5 .column-1 .block-3.button_block span{font-size:14px!important;line-height:28px!important}.row-7 .column-1 .block-1.heading_block td.pad{padding:0 20px!important}.row-11 .column-1 .block-1.heading_block h1,.row-7 .column-1 .block-1.heading_block h1,.row-9 .column-2 .block-1.heading_block h1{font-size:20px!important}.row-7 .column-1 .block-3.button_block td.pad{padding:5px 5px 30px!important}.row-11 .column-1 .block-3.button_block span,.row-7 .column-1 .block-3.button_block span,.row-9 .column-2 .block-3.button_block span{font-size:11px!important;line-height:22px!important}.row-11 .column-2 .block-1.image_block td.pad,.row-15 .column-1,.row-7 .column-2 .block-1.image_block td.pad,.row-7 .column-2 .border,.row-9 .column-1,.row-9 .column-1 .block-1.image_block td.pad{padding:0!important}.row-11 .column-1 .block-2.paragraph_block td.pad,.row-7 .column-1 .block-2.paragraph_block td.pad,.row-9 .column-2 .block-2.paragraph_block td.pad{padding:5px 20px!important}.row-10 .column-1 .block-1.spacer_block,.row-12 .column-1 .block-1.spacer_block,.row-8 .column-1 .block-1.spacer_block{height:20px!important}.row-11 .column-1 .block-1.heading_block td.pad,.row-9 .column-2 .block-1.heading_block td.pad{padding:10px 20px 0!important}.row-9 .column-2 .block-3.button_block td.pad{padding:5px 10px 30px!important}.row-11 .column-1 .block-3.button_block td.pad{padding:5px 5px 35px!important}.row-13 .column-1 .block-1.divider_block td.pad,.row-13 .column-1 .block-6.divider_block td.pad{padding:10px 10px 25px!important}.row-13 .column-1 .block-1.divider_block .alignment table,.row-13 .column-1 .block-6.divider_block .alignment table{display:inline-table}.row-13 .column-1 .block-3.paragraph_block td.pad>div{font-size:21px!important}.row-7 .column-1 .border{padding:10px!important}}\r\n</style><!--[if mso ]><style>sup, sub { font-size: 100% !important; } sup { mso-text-raise:10% } sub { mso-text-raise:-10% }</style> <![endif]--><!--[if true]><style>.forceBgColor{background-color: white !important}</style><![endif]--></head><body class=\"body forceBgColor\" style=\"background-color:transparent;margin:0;padding:0;-webkit-text-size-adjust:none;text-size-adjust:none\"><span style=\"color: transparent; display: none !important; font-size: 0px; line-height: 0px; height: 0; max-height: 0; max-width: 0; opacity: 0; overflow: hidden; mso-hide: all; visibility: hidden; width: 0;\">plus our new Fan Gear Collection</span><div style=\"display: none; max-height: 0px; overflow: hidden;\">&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&nbsp; </div><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/CgxoqE1BKlemu9sZFygSIFFR3uwM-KaVERs1Z4PFFv54v4iDYF-jYrHADyrwgvcnMcvVt5juTNpBagxoR0_g78-WAAdi9-TIAQGAAgM.sEHSRm4uJ60qXg/click\" xnpe-attr=\"notextnorew\"><img width=\"1\" height=\"1\" alt=\"\" src=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/CgxoqE1BKlemu9sZFygSIFFR3uwM-KaVERs1Z4PFFv54v4iDYF-jYrHADyrwgvcnMcvVt5juTNpBagxoR0_g78-WAAdi9-SAAgM.o4uoPGa5InoBng/open\" style=\"display: none;\"></a><table class=\"nl-container\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:transparent\"><tbody><tr><td><table class=\"row row-1\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:600px\">\r\n<a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pS0hklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-oanr26f8c7nlqOVABdTabEQl1NOfn5uUWpicoaVElAkWUjGyNTQyNAg3iM_JzMlsTLePTOtJN69NDMlNT402IobqCZXiDU1NzEzJypUXz8pP6VSvyQxKSdVvwTCLtIvSYGIRBvGYgpiEwGzUzLLwDgxycrMwNwg1cLI0szIxCzJMtGiBmxdfGaKVVFmcrZDbmJZUWaFXn5eak1ykqWFSaqRYVKqsaWxWYppFk-Gu_-D9-enMbAnfX_SwMQMABfKbao.50YelsSyNVbOUw/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/Logo%20%288%29.png\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt=\"Shop multi-tools and knives at Leatherman.com\" title=\"Shop multi-tools and knives at Leatherman.com\" height=\"auto\"></a></div></div></td></tr></table></td></tr></tbody></table></td>\r\n</tr></tbody></table><table class=\"row row-2 mobile_hide\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"8.333333333333334%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:middle\"><div class=\"spacer_block block-1\" style=\"height:60px;line-height:60px;font-size:1px\">&#8202;</div></td><td class=\"column column-2\" width=\"16.666666666666668%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:middle\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%;padding-right:0;padding-left:0\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:45px\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pS_hklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-gVF-SmlySXF-ghx3fTMtBLd5MSiFPuyxKLMxLwSWxNjY2NTQwtLY2MjAzNDw9NXt89453PL0UqAi6m0WIjLKSc_P7coNTE5w0oJKJIsJGNkamhkaBDvkZ-TmZJYGe8ONDHevTQzJTU-NNiKG6gmV4g1NTcxMycqQl8_KT-lUr8kMSknVb8Ewi7SL0mBiEQbxWIKIouAFUAEwQpSMsvAODHJyszA3CDVwsjSzMjELMky0aIGbGN8ZopVUWZytkNuYllRZoVefl5qTXKSpYVJqpFhUqqxpbFZimkWT4a7_4P356cxsCd9f9LAxAwAzOSAcg.1BQ0wvVY0rEMkw/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/insider_icon_gift.png\" style=\"display:block;height:auto;border:0;width:100%\" width=\"45\" alt title height=\"auto\"></a></div></div></td></tr></table></td><td class=\"column column-3\" width=\"66.66666666666667%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-right:30px;padding-top:5px;vertical-align:middle\"><table class=\"heading_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"text-align:center;width:100%\"><h1 style=\"margin:0;color:#555;direction:ltr;font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;font-size:18px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:22px\">\r\n<span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pS_hklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-gVF-SmlySXF-ghx3fTMtBLd5MSiFPuyxKLMxLwSWxNjY2NTQwtLY2MjAzNDw9NXt89453PL0UqAi6m0WIjLKSc_P7coNTE5w0oJKJIsJGNkamhkaBDvkZ-TmZJYGe8ONDHevTQzJTU-NNiKG6gmV4g1NTcxMycqQl8_KT-lUr8kMSknVb8Ewi7SL0mBiEQbxWIKIotEG8fCBMEKMgz1iwsS8_QTk6zMDMwNUi2MLM2MTMySLBMtasA2xmemWBVlJmc75CaWFWVW6OXnpdYkJ1lamKQaGSalGlsam6WYZvFkuPs_eH9-GgN70vcnDUzMALmZgDg.yloqqPpenh1Ruw/click\" target=\"_blank\" style=\"text-decoration: none; color: #555555;\" rel=\"noopener\"><span class=\"mce-content-body mce-edit-focus\" style=\"word-break: break-word; position: relative;\" id=\"23134738-4939-4823-8b46-3b8100f604eb\" data-position=\"20-1-0\" data-qa=\"tinyeditor-root-element\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">NEW: SHOP DIGITAL GIFT CARDS</span></span></a></span>\r\n</h1></td></tr></table></td><td class=\"column column-4\" width=\"8.333333333333334%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:middle\"><div class=\"spacer_block block-1\" style=\"height:60px;line-height:60px;font-size:1px\">&#8202;</div></td></tr></tbody></table></td></tr></tbody></table><!--[if !mso]><!--><table class=\"row row-3 desktop_hide\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"25%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:15px;padding-top:15px;vertical-align:middle\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tr><td class=\"pad\" style=\"width:100%;padding-right:0;padding-left:0\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:30px\">\r\n<a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pS_hklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-gVF-SmlySXF-ghx3fTMtBLd5MSiFPuyxKLMxLwSWxNjY2NTQwtLY2MjAzNDw9NXt89453PL0UqAi6m0WIjLKSc_P7coNTE5w0oJKJIsJGNkamhkaBDvkZ-TmZJYGe8ONDHevTQzJTU-NNiKG6gmV4g1NTcxMycqQl8_KT-lUr8kMSknVb8Ewi7SL0mBiEQbx2IKIotEG8bCBMEKUjLLwDgxycrMwNwg1cLI0szIxCzJMtGiBmxjfGaKVVFmcrZDbmJZUWaFXn5eak1ykqWFSaqRYVKqsaWxWYppFk-Gu_-D9-enMbAnfX_SwMQMAM0FgHI.KDLAzj6dhyBP5A/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/insider_icon_gift.png\" style=\"display:block;height:auto;border:0;width:100%\" width=\"30\" alt title height=\"auto\"></a></div></div></td></tr></table></td><td class=\"column column-2\" width=\"75%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:middle\"><table class=\"heading_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tr><td class=\"pad\" style=\"text-align:center;width:100%\"><h1 style=\"margin:0;color:#555;direction:ltr;font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;font-size:17px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:20px\">\r\n<span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pS_hklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-gVF-SmlySXF-ghx3fTMtBLd5MSiFPuyxKLMxLwSWxNjY2NTQwtLY2MjAzNDw9NXt89453PL0UqAi6m0WIjLKSc_P7coNTE5w0oJKJIsJGNkamhkaBDvkZ-TmZJYGe8ONDHevTQzJTU-NNiKG6gmV4g1NTcxMycqQl8_KT-lUr8kMSknVb8Ewi7SL0mBiEQbx2IKIotEG8XCBMEKMgz1iwsS8_QTk6zMDMwNUi2MLM2MTMySLBMtasA2xmemWBVlJmc75CaWFWVW6OXnpdYkJ1lamKQaGSalGlsam6WYZvFkuPs_eH9-GgN70vcnDUzMALm6gDg.gmDmLWjMTKW-nw/click\" target=\"_blank\" style=\"text-decoration: none; color: #555555;\" rel=\"noopener\"><span class=\"mce-content-body mce-edit-focus\" style=\"word-break: break-word; position: relative;\" id=\"23134738-4939-4823-8b46-3b8100f604eb\" data-position=\"20-1-0\" data-qa=\"tinyeditor-root-element\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">NEW: DIGITAL GIFT CARDS</span></span></a></span>\r\n</h1></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><!--<![endif]--><table class=\"row row-4\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:600px\">\r\n<a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pShhklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-sn5OTmpySWZ-XnF-umZaSW66aWZKamGp69un_HO55ajlQAXU2mxEJdTTn5-blFqYnKGlRJQJFlIxsjU0MjQIN4jPyczJbEy3h2oN94dpDc-NNiKG6gmV4g1NTcxMycqVF8_KT-lUr8kMSknVb8Ewi7SL0mBiESbxGIKYhMBs1Myy8A4McnKzMDcINXCyNLMyMQsyTLRogZsXXxmilVRZnK2Q25iWVFmhV5-XmpNcpKlhUmqkWFSqrGlsVmKaRZPhrv_g_fnpzGwJ31_0sDEDAAI1nZ2.ZCUGMUs9nHXHHg/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/ezgif.com-animated-gif-maker%20%282%29.gif\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt=\"Holiday Gifts\" title=\"Holiday Gifts\" height=\"auto\"></a></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-5\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto;background-color:#67252d;color:#000;border-radius:0;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:10px;vertical-align:top\"><table class=\"heading_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"25\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><h1 style=\"margin:0;color:#f7f7f2;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:28px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:34px\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">GIFT ICONS THAT LAST</span></h1></td></tr></table><table class=\"paragraph_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-left:40px;padding-right:40px\"><div style=\"color:#f7f7f2;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:18px;font-weight:400;letter-spacing:0;line-height:1.2;text-align:center;mso-line-height-alt:22px\"><p style=\"margin:0;margin-bottom:0\">\r\nYou can&#8217;t go wrong gifting our top tools &#8212;&#160; proven favorites, built for daily use and big moments.</p><p style=\"margin:0;margin-bottom:0\">&#160;</p><p style=\"margin:0\">Want to level it up?<br>Every accessory below pairs with these icons. No overthinking, just upgrades that make sense.</p></div></td></tr></table><table class=\"button_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"35\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\">\r\n<div class=\"alignment\" align=\"center\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pShhklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-sn5OTmpySWZ-XnF-umZaSW66aWZKamGp69un_HO55ajlQAXU2mxEJdTTn5-blFqYnKGlRJQJFlIxsjU0MjQIN4jPyczJbEy3h2oN94dpDc-NNiKG6gmV4g1NTcxMycqRF8_KT-lUr8kMSknVb8Ewi7SL0mBiESbxmIKYlFmHAvlpmSW6ScmWZkZmBukWhhZmhmZmCVZJlrUgG2Lz0yxKspMznbITSwryqzQy89LrUlOsrQwSTUyTEo1tjQ2SzHN4slw93_w_vw0Bvak708amJgBgld17w.5dcArFyz-ZTMog/click\" target=\"_blank\" style=\"color:#f7f7f2;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/EiBRUd7sDPimlREbNWeDxRb-eL-Ig2Bfo2KxwA8q8IL3JxoxaHR0cHM6Ly93d3cubGVhdGhlcm1hbi5jb20vY29sbGVjdGlvbnMvZ2lmdC1ndWlkZTHL1beY7kzaQToQCgJ1cxIKQmxvb21yZWFjaDoiCgJ1YxIcMjUxMjEwX0hvbGlkYXlfR2lmdF9HdWlkZV9VUzoLCgJ1bRIFZW1haWxiOjYwNzBlODI5NjI0NmI5YTh8ZW1haWxfaWQ6cmlja0BtYXZyaXgub25lfGNiOTg0ZTIxYmUzOTM2ZDVqDGhHT-Dvz5YAB2L35IACAw.WxSupGhtf-Irlw/click\"  style=\"height:42px;width:194px;v-text-anchor:middle;\" arcsize=\"0%\" fill=\"false\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"3px\" color=\"#f7f7f2\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#f7f7f2;font-family:\'Trebuchet MS\', Tahoma, sans-serif;font-size:16px\">\r\n<![endif]-->\r\n<span class=\"button\" style=\"background-color: transparent; mso-shading: transparent; border-bottom: 3px solid #f7f7f2; border-left: 3px solid #f7f7f2; border-radius: 0px; border-right: 3px solid #f7f7f2; border-top: 3px solid #f7f7f2; color: #f7f7f2; display: inline-block; font-family: \'Trebuchet MS\',\'Lucida Grande\', \'Lucida Sans Unicode\', \'Lucida Sans\', Tahoma, sans-serif; font-size: 16px; font-weight: 700; mso-border-alt: none; padding-bottom: 5px; padding-top: 5px; padding-left: 20px; padding-right: 20px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 32px;\">SHOP HOLIDAY PICKS</span></span>\r\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-6\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#67252d;color:#000;border-radius:0;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:top\"><table class=\"heading_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"10\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\">\r\n<h1 style=\"margin:0;color:#f7f7f2;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:32px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:38px\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">&#160;&#8212; GIFT LIKE A PRO &#8212;</span></h1></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-7\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#67252d;color:#000;border-radius:0;width:600px;margin:0 auto\" width=\"600\"><tbody><tr class=\"reverse\"><td class=\"column column-1 first\" width=\"50%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-left:5px;padding-right:5px;padding-top:5px;vertical-align:middle\"><div class=\"border\"><table class=\"heading_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"padding-left:20px;padding-right:20px;text-align:center;width:100%\"><h1 style=\"margin:0;color:#f7f7f2;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:24px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:29px\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">BIT KIT SET</span></h1></td></tr></table><table class=\"paragraph_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:20px;padding-left:20px;padding-right:20px;padding-top:15px\"><div style=\"color:#f7f7f2;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:20px;font-weight:400;letter-spacing:0;line-height:1.2;text-align:center;mso-line-height-alt:24px\"><p style=\"margin:0\">\r\nExpand your tool\'s capabilities with 21 double-ended bits.</p></div></td></tr></table><table class=\"button_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"10\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pS7hklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-sn5OTmpySWZ-XnF-onJyanFxflFmanF-gVF-SmlySXF-kmZJbrZQFycWmJ4-ur2Ge98bjlaCXAxlRYLcTnl5OfnFqUmJmdYKQFFkoVkjEwNjQwN4j3yczJTEivj3TPTSuLdSzNTUuNDg624gWpyhVhTcxMzc6Ki9fWT8lMq9UsSk3JS9Usg7CL9khSISLR5LKYgski0Yax-SmYZVLVxLFQdSCgxycrMwNwg1cLI0szIxCzJMtGiBmxpfGaKVVFmcrZDbmJZUWaFXn5eak1ykqWFSaqRYVKqsaWxWYppFk-Gu_-D9-enMbAnfX_SwMQMAKjIgRc.X7zm8hgNSiH9OA/click\" target=\"_blank\" style=\"color:#f7f7f2;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/EiBRUd7sDPimlREbNWeDxRb-eL-Ig2Bfo2KxwA8q8IL3JxpHaHR0cHM6Ly93d3cubGVhdGhlcm1hbi5jb20vY29sbGVjdGlvbnMvYWNjZXNzb3JpZXMvcHJvZHVjdHMvYml0LWtpdC1zZXQxy9W3mO5M2kE6EAoCdXMSCkJsb29tcmVhY2g6IgoCdWMSHDI1MTIxMF9Ib2xpZGF5X0dpZnRfR3VpZGVfVVM6CwoCdW0SBWVtYWlsYjo2MDcwZTgyOTYyNDZiOWE4fGVtYWlsX2lkOnJpY2tAbWF2cml4Lm9uZXxjYjk4NGUyMWJlMzkzNmQ1agxoR0_g78-WAAdi9-SAAgM.HbWFJaQEZv5-Sg/click\"  style=\"height:34px;width:100px;v-text-anchor:middle;\" arcsize=\"0%\" fill=\"false\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"3px\" color=\"#f7f7f2\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#f7f7f2;font-family:\'Trebuchet MS\', Tahoma, sans-serif;font-size:12px\">\r\n<![endif]-->\r\n<span class=\"button\" style=\"background-color: transparent; mso-shading: transparent; border-bottom: 3px solid #f7f7f2; border-left: 3px solid #f7f7f2; border-radius: 0px; border-right: 3px solid #f7f7f2; border-top: 3px solid #f7f7f2; color: #f7f7f2; display: inline-block; font-family: \'Trebuchet MS\',\'Lucida Grande\', \'Lucida Sans Unicode\', \'Lucida Sans\', Tahoma, sans-serif; font-size: 12px; font-weight: 700; mso-border-alt: none; padding-bottom: 5px; padding-top: 5px; padding-left: 20px; padding-right: 20px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 24px;\"><strong>SHOP NOW</strong></span></span>\r\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table></div></td><td class=\"column column-2 last\" width=\"50%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:middle\"><div class=\"border\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:290px\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pS7hklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-sn5OTmpySWZ-XnF-onJyanFxflFmanF-gVF-SmlySXF-kmZJbrZQFycWmJ4-ur2Ge98bjlaCXAxlRYLcTnl5OfnFqUmJmdYKQFFkoVkjEwNjQwN4j3yczJTEivj3TPTSuLdSzNTUuNDg624gWpyhVhTcxMzc6Ji9PWT8lMq9UsSk3JS9Usg7CL9khSISLR5LKYgski0Uax-SmYZTAKsCMQH4cQkKzMDc4NUCyNLMyMTsyTLRIsasK3xmSlWRZnJ2Q65iWVFmRV6-XmpNclJlhYmqUaGSanGlsZmKaZZPBnu_g_en5_GwJ70_UkDEzMAO2KBoA.HA1xdGwW4T7RkQ/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/Bit%20Kit%20Holiday%20Background%20%281%29.png\" style=\"display:block;height:auto;border:0;width:100%\" width=\"290\" alt=\"Shop Bit Kit Set at Leatherman.com\" title=\"Shop Bit Kit Set at Leatherman.com\" height=\"auto\"></a></div></div></td></tr></table></div></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-8\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#67252d;color:#000;border-radius:0;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:top\"><div class=\"spacer_block block-1\" style=\"height:10px;line-height:10px;font-size:1px\">&#8202;</div></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-9\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td>\r\n<table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#67252d;color:#000;border-radius:0;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"50%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:middle\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:290px\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pSXhklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-sn5OTmpySWZ-XnF-onJyanFxflFmanF-gVF-SmlySXF-kWJJckZqSW6KUWZZalFhqevbp_xzueWo5UAF1NpsRCXU05-fm5RamJyhpUSUCRZSMbI1NDI0CDeIz8nMyWxMt49M60k3r00MyU1PjTYihuoJleINTU3MTMnKkJfPyk_pVK_JDEpJ1W_BMIu0i9JgYhEW8ZiCiKLRBvGwgTBClIyy8A4McnKzMDcINXCyNLMyMQsyTLRogZsY3xmilVRZnK2Q25iWVFmhV5-XmpNcpKlhUmqkWFSqrGlsVmKaRZPhrv_g_fnpzGwJ31_0sDEDAAhEIGl.j0IdflzjQe77Tg/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/ratchet%20Gradient%20Background%20%281%29.png\" style=\"display:block;height:auto;border:0;width:100%\" width=\"290\" alt=\"Shop Ratchet Driver at Leatherman.com\" title=\"Shop Ratchet Driver at Leatherman.com\" height=\"auto\"></a></div></div></td></tr></table></td><td class=\"column column-2\" width=\"50%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:middle\"><table class=\"heading_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"padding-left:20px;padding-right:20px;text-align:center;width:100%\"><h1 style=\"margin:0;color:#f7f7f2;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:24px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:29px\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">RATCHET DRIVER</span></h1></td></tr></table><table class=\"paragraph_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:10px;padding-left:20px;padding-right:20px;padding-top:10px\"><div style=\"color:#f7f7f2;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:20px;font-weight:400;letter-spacing:0;line-height:1.2;text-align:center;mso-line-height-alt:24px\"><p style=\"margin:0\">Apply more torque to<br>stubborn screws and nuts.</p></div></td></tr></table><table class=\"button_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"10\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pSXhklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-sn5OTmpySWZ-XnF-onJyanFxflFmanF-gVF-SmlySXF-kWJJckZqSW6KUWZZalFhqevbp_xzueWo5UAF1NpsRCXU05-fm5RamJyhpUSUCRZSMbI1NDI0CDeIz8nMyWxMt49M60k3r00MyU1PjTYihuoJleINTU3MTMnKlxfPyk_pVK_JDEpJ1W_BMIu0i9JgYhEW8ZiCiKLRBvFQlUax0LVpGSW6ScmWZkZmBukWhhZmhmZmCVZJlrUgC2Mz0yxKspMznbITSwryqzQy89LrUlOsrQwSTUyTEo1tjQ2SzHN4slw93_w_vw0Bvak708amJgBj0GBHg.N0qxwfItff52BQ/click\" target=\"_blank\" style=\"color:#f7f7f2;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/EiBRUd7sDPimlREbNWeDxRb-eL-Ig2Bfo2KxwA8q8IL3JxpKaHR0cHM6Ly93d3cubGVhdGhlcm1hbi5jb20vY29sbGVjdGlvbnMvYWNjZXNzb3JpZXMvcHJvZHVjdHMvcmF0Y2hldC1kcml2ZXIxy9W3mO5M2kE6EAoCdXMSCkJsb29tcmVhY2g6IgoCdWMSHDI1MTIxMF9Ib2xpZGF5X0dpZnRfR3VpZGVfVVM6CwoCdW0SBWVtYWlsYjo2MDcwZTgyOTYyNDZiOWE4fGVtYWlsX2lkOnJpY2tAbWF2cml4Lm9uZXxjYjk4NGUyMWJlMzkzNmQ1agxoR0_g78-WAAdi9-SAAgM.--eZdIRQs3K0xg/click\"  style=\"height:34px;width:100px;v-text-anchor:middle;\" arcsize=\"0%\" fill=\"false\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"3px\" color=\"#f7f7f2\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#f7f7f2;font-family:\'Trebuchet MS\', Tahoma, sans-serif;font-size:12px\">\r\n<![endif]-->\r\n<span class=\"button\" style=\"background-color: transparent; mso-shading: transparent; border-bottom: 3px solid #f7f7f2; border-left: 3px solid #f7f7f2; border-radius: 0px; border-right: 3px solid #f7f7f2; border-top: 3px solid #f7f7f2; color: #f7f7f2; display: inline-block; font-family: \'Trebuchet MS\',\'Lucida Grande\', \'Lucida Sans Unicode\', \'Lucida Sans\', Tahoma, sans-serif; font-size: 12px; font-weight: 700; mso-border-alt: none; padding-bottom: 5px; padding-top: 5px; padding-left: 20px; padding-right: 20px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 24px;\"><strong>SHOP NOW</strong></span></span>\r\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-10\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#67252d;color:#000;border-radius:0;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:top\"><div class=\"spacer_block block-1\" style=\"height:10px;line-height:10px;font-size:1px\">&#8202;</div></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-11\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#67252d;color:#000;border-radius:0;width:600px;margin:0 auto\" width=\"600\"><tbody><tr class=\"reverse\"><td class=\"column column-1 first\" width=\"50%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:middle\"><div class=\"border\"><table class=\"heading_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"padding-left:20px;padding-right:20px;text-align:center;width:100%\"><h1 style=\"margin:0;color:#f7f7f2;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:24px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:29px\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">TOOL POUCH</span></h1></td></tr></table><table class=\"paragraph_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:10px;padding-left:20px;padding-right:20px;padding-top:10px\"><div style=\"color:#f7f7f2;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:20px;font-weight:400;letter-spacing:0;line-height:1.2;text-align:center;mso-line-height-alt:24px\"><p style=\"margin:0\">\r\nKeep everyday essentials organized and ready to go.</p></div></td></tr></table><table class=\"button_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"10\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pSARklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-gVF-SmlySXF-ghx3ZL8_BzdgvzS5Az7ssSizMS8ElsTY1MzYyMjE0NjcwsjQ8PTV7fPeOdzy9FKgIuptFiIyyknPz-3KDUxOcNKCSiSLCRjZGpoZGgQ75Gfk5mSWBnvnplWEu9empmSGh8abMUNVJMrxJqam5iZExWjr5-Un1KpX5KYlJOqXwJhF-mXpEBEog0NYzFFkUWigQpSMsugyo1joepAQolJVmYG5gapFkaWZkYmZkmWiRY1YFvjM1OsijKTsx1yE8uKMiv08vNSa5KTLC1MUo0Mk1KNLY3NUkyzeDLc_R-8Pz-NgT3p-5MGJmYAfb-CKg.Hm3YJt4s7TBt_Q/click\" target=\"_blank\" style=\"color:#f7f7f2;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pSARklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-gVF-SmlySXF-ghx3ZL8_BzdgvzS5Az7ssSizMS8ElsTY1MzYyMjE0NjcwsjQ8PTV7fPeOdzy9FKgIuptFiIyyknPz-3KDUxOcNKCSiSLCRjZGpoZGgQ75Gfk5mSWBnvnplWEu9empmSGh8abMUNVJMrxJqam5iZk2RlZmBukGphZGlmZGKWZJloUQMWj89MsSrKTM52yE0sK8qs0MvPS61JTrK0MEk1MkxKNbY0NksxzeLJcPd_8P78NAb2pO9PGpiYAXh0YMc.5vm8iahOBRqgLA/click\"  style=\"height:34px;width:100px;v-text-anchor:middle;\" arcsize=\"0%\" fill=\"false\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"3px\" color=\"#f7f7f2\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#f7f7f2;font-family:\'Trebuchet MS\', Tahoma, sans-serif;font-size:12px\">\r\n<![endif]-->\r\n<span class=\"button\" style=\"background-color: transparent; mso-shading: transparent; border-bottom: 3px solid #f7f7f2; border-left: 3px solid #f7f7f2; border-radius: 0px; border-right: 3px solid #f7f7f2; border-top: 3px solid #f7f7f2; color: #f7f7f2; display: inline-block; font-family: \'Trebuchet MS\',\'Lucida Grande\', \'Lucida Sans Unicode\', \'Lucida Sans\', Tahoma, sans-serif; font-size: 12px; font-weight: 700; mso-border-alt: none; padding-bottom: 5px; padding-top: 5px; padding-left: 20px; padding-right: 20px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 24px;\"><strong>SHOP NOW</strong></span></span>\r\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table></div></td><td class=\"column column-2 last\" width=\"50%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:middle\"><div class=\"border\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:290px\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pSARklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-gVF-SmlySXF-ghx3ZL8_BzdgvzS5Az7ssSizMS8ElsTY1MzYyMjE0NjcwsjQ8PTV7fPeOdzy9FKgIuptFiIyyknPz-3KDUxOcNKCSiSLCRjZGpoZGgQ75Gfk5mSWBnvnplWEu9empmSGh8abMUNVJMrxJqam5iZExWrr5-Un1KpX5KYlJOqXwJhF-mXpEBEog0NYzFFkUWijWL1UzLLYBJgRSA-CCcmWZkZmBukWhhZmhmZmCVZJlrUgK2Nz0yxKspMznbITSwryqzQy89LrUlOsrQwSTUyTEo1tjQ2SzHN4slw93_w_vw0Bvak708amJgBEW2Csw.KBd634elboVPsw/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/Tool%20pouch%20Holiday%20Background%20%281%29.png\" style=\"display:block;height:auto;border:0;width:100%\" width=\"290\" alt=\"Shop Tool Pouch at Leatherman.com\" title=\"Shop Tool Pouch at Leatherman.com\" height=\"auto\"></a></div></div></td></tr></table></div></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-12\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#67252d;color:#000;border-radius:0;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:top\"><div class=\"spacer_block block-1\" style=\"height:10px;line-height:10px;font-size:1px\">&#8202;</div></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-13\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td>\r\n<table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#67252d;color:#000;border-radius:0;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:top\"><table class=\"divider_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"padding-bottom:30px;padding-left:10px;padding-right:10px;padding-top:30px\"><div class=\"alignment\" align=\"center\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"80%\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"divider_inner\" style=\"font-size:1px;line-height:1px;border-top:3px solid #f7f7f2\">\r\n<span style=\"word-break: break-word;\">&#8202;</span></td></tr></table></div></td></tr></table><table class=\"image_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%;padding-right:0;padding-left:0\"><div class=\"alignment\" align=\"center\"><div class=\"fullWidth\" style=\"max-width:600px\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pS3hklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-sn5OTmpySWZ-XnF-mmJebrpqYlF-gVF-SmlySXF-mWZeSWJ6am6VZkFuhn5-SmZqYanr26f8c7nlqOVABdTabEQl1NOfn5uUWpicoaVElAkWUjGyNTQyNAg3iM_JzMlsTLePTOtJN69NDMlNT402IobqCZXiDU1NzEzJypSXz8pP6VSvyQxKSdVvwTCLtIvSYGIRBsax2KKYlFnFAvlpmSWgXFikpWZgblBqoWRpZmRiVmSZaJFDdjK-MwUq6LM5GyH3MSyoswKvfy81JrkJEsLk1Qjw6RUY0tjsxTTLJ4Md_8H789PY2BP-v6kgYkZAIzqga8.1eL1Xk6WejcnrQ/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/editor_images/c4642780-510d-4efa-8e7c-d98a1f548396.jpg\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt title height=\"auto\"></a></div></div></td></tr></table><table class=\"paragraph_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:15px;padding-left:40px;padding-right:40px;padding-top:15px\"><div style=\"color:#f7f7f2;direction:ltr;font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;font-size:24px;font-weight:700;letter-spacing:0;line-height:1.5;text-align:center;mso-line-height-alt:36px\"><p style=\"margin:0\">MADE FOR FANS. PERFECT FOR GIFTING</p></div></td></tr></table><table class=\"paragraph_block block-4\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:5px\"><div style=\"color:#f7f7f2;direction:ltr;font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;font-size:18px;font-weight:400;letter-spacing:0;line-height:1.5;text-align:center;mso-line-height-alt:27px\"><p style=\"margin:0\">\r\nFrom tees to hats to hoodies, the Leatherman Fan Gear Collection turns everyday staples into something personal. Understated, functional, and made to last &#8212; this is gear they&#8217;ll actually want to wear.</p></div></td></tr></table><table class=\"button_block block-5\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"padding-bottom:20px;padding-left:10px;padding-right:10px;padding-top:20px;text-align:center\"><div class=\"alignment\" align=\"center\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pS-hklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-sn5OTmpySWZ-XnF-mmJebrpqYlFhqevbp_xzueWo5UAF1NpsRCXU05-fm5RamJyhpUSUCRZSMbI1NDI0CDeIz8nMyWxMt49M60k3r00MyU1PjTYihuoJleINTU3MTMnKlRfPyk_pVK_JDEpJ1W_BMIu0i9JgYhEGxrHYopiUWcaC-WmZJbpJyZZmRmYG6RaGFmaGZmYJVkmWtSArYvPTLEqykzOdshNLCvKrNDLz0utSU6ytDBJNTJMSjW2NDZLMc3iyXD3f_D-_DQG9qTvTxqYmAHFFnU7.VFIXC2NeyFVxVQ/click\" target=\"_blank\" style=\"color:#f7f7f2;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/EiBRUd7sDPimlREbNWeDxRb-eL-Ig2Bfo2KxwA8q8IL3JxovaHR0cHM6Ly93d3cubGVhdGhlcm1hbi5jb20vY29sbGVjdGlvbnMvZmFuLWdlYXIxy9W3mO5M2kE6EAoCdXMSCkJsb29tcmVhY2g6IgoCdWMSHDI1MTIxMF9Ib2xpZGF5X0dpZnRfR3VpZGVfVVM6CwoCdW0SBWVtYWlsYjo2MDcwZTgyOTYyNDZiOWE4fGVtYWlsX2lkOnJpY2tAbWF2cml4Lm9uZXxjYjk4NGUyMWJlMzkzNmQ1agxoR0_g78-WAAdi9-SAAgM.GanG_FKUs9xRdw/click\"  style=\"height:38px;width:183px;v-text-anchor:middle;\" arcsize=\"3%\" fill=\"false\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"3px\" color=\"#f7f7f2\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#f7f7f2;font-family:sans-serif;font-size:14px\">\r\n<![endif]-->\r\n<span class=\"button\" style=\"background-color: transparent; mso-shading: transparent; border-bottom: 3px solid #f7f7f2; border-left: 3px solid #f7f7f2; border-radius: 1px; border-right: 3px solid #f7f7f2; border-top: 3px solid #f7f7f2; color: #f7f7f2; display: inline-block; font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size: 14px; font-weight: 700; mso-border-alt: none; padding-bottom: 5px; padding-top: 5px; padding-left: 20px; padding-right: 20px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 28px;\">EXPLORE FAN GEAR</span></span>\r\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table><table class=\"divider_block block-6\" width=\"100%\" border=\"0\" cellpadding=\"10\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"80%\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"divider_inner\" style=\"font-size:1px;line-height:1px;border-top:3px solid #f7f7f2\"><span style=\"word-break: break-word;\">&#8202;</span></td></tr></table></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-14\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#67252d;color:#000;border-radius:0;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"html_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div style=\"font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;text-align:center\" align=\"center\"><table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#67252d\" align=\"center\" width=\"100%\" style=\"width: 100%; padding: 10px 0px;\"><tbody><tr><td align=\"center\">\r\n\r\n        <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\"><tbody><tr align=\"center\"><td colspan=\"5\"></td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pSZRklJQXFVvr65eXlepl5xSWJ6UWJuXrJ-bn6OamJJRmpRbmJeSX5-TnFyvG5xSmVebnZJfEp-Xn5JSVFicnZtgY6COGczLzszBTbREOjJIvEpGRdc8PUJF0T41QzXUvDFCPdpKS0xFQTQ1NzU9NEw9NXt89453PL0UqAi6m0WIjLKSc_P7coNTE5w0oJKJIsJGNkamhkaBDvkZ-TmZJYGe-emVYS716amZIaHxpsxQ1UkyvEmpqbmJkTVamvn5SfUqlfkpiUk6pfAmEX6ZekQESiDU1iMUWxiYDZKZlluFUgRKKNYvUTk6zMDMwNUi2MLM2MTMySLBMtasBOis9MsSrKTM52yE0sK8qs0MvPS61JTrK0MEk1MkxKNbY0NksxzeLJcPd_8P78NAb2pO9PGpiYAX_zmyA.haasvRgDwm_wmw/click\" data-msdyn-tracking-id=\"060e7af814e081672338229931\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b1b88c4-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"Instagram\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pScRklJQXFVvr65eXleiWZ2SX52XrJ-bn6DjmpiSUZqUW5iXnxJfn5OcXK8bnFKZV5udkl8TmZedmZKbYmxsnGKclpqboGBiYpuibJxsm6lsaWibqmBqZpaWapqUCUZnj66vYZ73xuOVoJcDGVFgtxOeXk5-cWpSYmZ1gpAUWShWSMTA2NDA3iPfJzMlMSK-PdM9NK4t1LM1NS40ODrbiBanKFWFNzEzNzoir19ZPyUyr1SxKTclL1SyDsIv2SFIhItKFJLKYoNhEwOyWzDLcKhEi0cax-YpKVmYG5QaqFkaWZkYlZkmWiRQ3YSfGZKVZFmcnZDrmJZUWZFXr5eak1yUmWFiapRoZJqcaWxmYpplk8Ge7-D96fn8bAnvT9SQMTMwC_kpG2.P0oPRnzV_MdVCA/click\" data-msdyn-tracking-id=\"55a2adb6bbc371672338239108\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b1dd76e-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"TikTok\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pShRklJQXFVvr65eXlemmJyalJ-fnZesn5ufo-qYklGalFuYl5-srxucUplXm52SXxKfl5-SUlRYnJ2bYGOgjhnMy87MwUW-NkI7MUI-NUXRNzQ3NdE5M0C11LU7Nk3UQTAzMDM3PLRCOjNMPTV7fPeOdzy9FKgIuptFiIyyknPz-3KDUxOcNKCSiSLCRjZGpoZGgQ75Gfk5mSWBnvnplWEu9empmSGh8abMUNVJMrxJqam5iZE1Wpr5-Un1KpX5KYlJOqXwJhF-mXpEBEog1NYjFFsYmA2SmZZbhVIESigYYmJlmZGZgbpFoYWZoZmZglWSZa1ICdFJ-ZYlWUmZztkJtYVpRZoZefl1qTnGRpYZJqZJiUamxpbJZimsWT4e7_4P35aQzsSd-fNDAxAwC2fJc2.8FMOFQSyswrrYw/click\" data-msdyn-tracking-id=\"1c347b64588db1672338250130\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b140b4e-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"Facebook\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zr0vA2EAx3GpiKSa4AYDBmGQiPa597ekCZYaKtKIRdOc57nnOX307h65Ptf2kg6ii3-A2CV2k5HFZDBZDGIwCraaRNMOBmzffPIbfsJcqfT0mvm8OJmc0fY6t1Nfrevjzq5zji5vxpc-jrqL00mV84O6DUCz2cwlLOYxIjmXBSCukwgUCeRVEgUw3CCYwgUnqOMkDGrcwSxknEfQreXF5R_2aVijOO-ZCtYxEbMG9Lysasha1lIkNYtFVzZNQzZ03ZPuHq7O3oqPq_ZEOhXXhfSaz1gQEehW7fmeuMKsrEmyJDrrzKcYJk6BetwpxBQTZ3vLHuttAmGEBJD6OwkAiOEEcIh8AvigI8DxQMqSWvmtf0m_MW38v_iRslYBENm6aIjElC1dVnVkQbPdv-RQbEfUra0EsBHRVo6FpO0iy1SJLCGiWIqOtf1MtbD5_H5_OjSKui-HqeFvEdWbHw.V1CyuutNZLu9lA/click\" data-msdyn-tracking-id=\"05f4617e605a71672338263640\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b1ff6c0-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"YouTube\"></a>\r\n              </td>\r\n\r\n              <td colspan=\"6\"></td>\r\n            </tr></tbody></table></td>\r\n    </tr></tbody></table></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-15\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;vertical-align:top\"><table class=\"html_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div style=\"font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;text-align:center\" align=\"center\"><div data-section=\"true\" class=\"footer-container\" style=\"font-family: Arial, Verdana, sans-serif; color: #ffffff; background-color: #67252d; margin: 0; border-radius: 0;\" data-protected=\"false\">\r\n\r\n  <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse; background-color: #67252d;\"><tr><td align=\"center\" style=\"padding: 10px 0; text-align: center;\">\r\n\r\n        <div style=\"display: inline-block; text-align: center;\">\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pSLYwZJSUFxVb6-uXl5Xo5qYklGalFuYl5esn5ufoF-TmZyZmpxfoFRZllicmVumCBSr2Mktwc5fjc4pTKvNzskviU_Lz8kpKixORsWwMdhHBOZl52ZoqthUGSqVmKSapukqm5ma6JRbKRrqWxsYGuWVKauWWqgbF5omWy4emr22e887nlaCXAxVRaLMTllJOfn1uUmpicYaUEFEkWkjEyNTQyNIj3ALogJbEy3j0zrSTevTQzJTU-NNiKG6gmV4g1NTcxMycqR18_KT-lUr8kMSknVb8Ewi7SL0mBiEQbmsZiimITAbNTMsvAGKo3Fkk4EchNsjIzMDdItTCyNDMyMUuyTLSoAbsiPjPFqigzOdshN7GsKLNCLz8vtSY5ydLCJNXIMCnV2NLYLMU0iyfD3f_B-_PTGNiTvj9pYGIGAILnmlc.Mxzyh7zOsICUqg/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #ffffff; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Privacy Policy</u></strong>\r\n          </a>\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pS-xgzSkoKiq309UuLjXWTU_L0UvPS9ZJy8vNzi1ITkzP0kvNz9XNSE0syUotyE_N0S_Lzc3QLivJTSpNLMvPz9FP1ndMr8gtdDZ28c1JzSy2Lo9wq04M93dyCjEvLfXW9E8Ncg4oNo0wC3NzKTE3KTDJdIt10syKLPBxdKovK08uS83yTy8JKTLNKQ_wKnJLTKwp8zQsyk4uCcw2cw8OLww30QlyLywuN_DLLTHQDLRz1k_PzilPzSuxzEvPSbVPzDE9f3T7jnc8tRysBLqbSYiEuJ7jTrZSAIslCMkamhkaGBvEe-TmZKYmV8e6ZaSXx7qWZKanxocFW3EA1uUKsqbmJmTlROfr6SfkplfoliUk5qfolEHaRfkkKRCTa0DQWUxSbCJidklkGxlC9sUjCidFGsUlWZgbmBqkWRpZmRiZmSZaJFjVgV8RnplgVZSZnO-QmlhVlVujl56XWJCdZWpikGhkmpRpbGpulmGbxZLj7P3h_fhoDe9L3Jw1MzAC9Ia9_.YU6g9G6zrd1ZpQ/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #ffffff; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Manage Preferences</u></strong>\r\n          </a>\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pS-xgzSkoKiq309UuLjXWTU_L0UvPS9ZJy8vNzi1ITkzP0kvNz9XNSE0syUotyE_N0S_Lzc3QLivJTSpNLMvPz9FP1ndMr8gtdDZ28c1JzSy2Lo9wq04M93dyCjEvLfXW9E8Ncg4oNo0wC3NzKTE3KTDJdIt10syKLPBxdKovK08uS83yTy8JKTLNKQ_wKnJLTKwp8zQsyk4uCcw2cw8OLww30QlyLywuN_DLLTHQDLRz1k_PzilPzSuxzEvPSbVPzDE9f3T7jnc8tRysBLqbSYiEuJ7jTrZSAIslCMkamhkaGBvEe-TmZKYmV8e6ZaSXx7qWZKanxocFW3EA1uUKsqbmJmTlROfr6SfkplfoliUk5qfolEHaRfkkKRCTa0DQWUxSbCJidklkGxlC9sUjCidHGsUlWZgbmBqkWRpZmRiZmSZaJFjVgV8RnplgVZSZnO-QmlhVlVujl56XWJCdZWpikGhkmpRpbGpulmGbxZLj7P3h_fhoDe9L3Jw1MzAC9cK-A.kqNFjG41JKj_jw/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #ffffff; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Unsubscribe</u></strong>\r\n          </a>\r\n\r\n        </div>\r\n\r\n      </td>\r\n    </tr></table><table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse; background-color: #67252d;\"><tr><td align=\"center\" style=\"padding: 0; text-align: center;\">\r\n        <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse;\"><tr><td align=\"center\" style=\"text-align: center; padding: 10px 30px;\">\r\n              <div style=\"font-size: 11px; color: #ffffff; text-align: center;\">\r\n\r\n                <p>This email was sent to Rick@mavrix.one</p>\r\n\r\n                <p>by <strong>Leatherman Tool Group, Inc.</strong></p>\r\n\r\n                <p>12106 NE Ainsworth Circle <br>Portland, Oregon 97220</p>\r\n\r\n                <p style=\"display: none;\">Preference Center (PLACEHOLDER)</p>\r\n\r\n                <p style=\"line-height: 1.25;\">&#169; 2025 Leatherman Tool Group, Inc. All Rights Reserved.</p>\r\n                <br></div>\r\n            </td>\r\n          </tr></table></td>\r\n    </tr></table></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><!-- End --></body></html>','[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pS0hklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-oanr26f8c7nlqOVABdTabEQl1NOfn5uUWpicoaVElAkWUjGyNTQyNAg3iM_JzMlsTLePTOtJN69NDMlNT402IobqCZXiDU1NzEzJypUXz8pP6VSvyQxKSdVvwTCLtIvSYGIRBvGYgpiEwGzUzLLwDgxycrMwNwg1cLI0szIxCzJMtGiBmxdfGaKVVFmcrZDbmJZUWaFXn5eak1ykqWFSaqRYVKqsaWxWYppFk-Gu_-D9-enMbAnfX_SwMQMABfKbao.50YelsSyNVbOUw/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pS_hklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-gVF-SmlySXF-ghx3fTMtBLd5MSiFPuyxKLMxLwSWxNjY2NTQwtLY2MjAzNDw9NXt89453PL0UqAi6m0WIjLKSc_P7coNTE5w0oJKJIsJGNkamhkaBDvkZ-TmZJYGe8ONDHevTQzJTU-NNiKG6gmV4g1NTcxMycqQl8_KT-lUr8kMSknVb8Ewi7SL0mBiEQbxWIKIouAFUAEwQpSMsvAODHJyszA3CDVwsjSzMjELMky0aIGbGN8ZopVUWZytkNuYllRZoVefl5qTXKSpYVJqpFhUqqxpbFZimkWT4a7_4P356cxsCd9f9LAxAwAzOSAcg.1BQ0wvVY0rEMkw/click]\r\n\r\n# NEW: SHOP DIGITAL GIFT CARDS [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pS_hklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-gVF-SmlySXF-ghx3fTMtBLd5MSiFPuyxKLMxLwSWxNjY2NTQwtLY2MjAzNDw9NXt89453PL0UqAi6m0WIjLKSc_P7coNTE5w0oJKJIsJGNkamhkaBDvkZ-TmZJYGe8ONDHevTQzJTU-NNiKG6gmV4g1NTcxMycqQl8_KT-lUr8kMSknVb8Ewi7SL0mBiEQbxWIKIotEG8fCBMEKMgz1iwsS8_QTk6zMDMwNUi2MLM2MTMySLBMtasA2xmemWBVlJmc75CaWFWVW6OXnpdYkJ1lamKQaGSalGlsam6WYZvFkuPs_eH9-GgN70vcnDUzMALmZgDg.yloqqPpenh1Ruw/click] \r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pS_hklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-gVF-SmlySXF-ghx3fTMtBLd5MSiFPuyxKLMxLwSWxNjY2NTQwtLY2MjAzNDw9NXt89453PL0UqAi6m0WIjLKSc_P7coNTE5w0oJKJIsJGNkamhkaBDvkZ-TmZJYGe8ONDHevTQzJTU-NNiKG6gmV4g1NTcxMycqQl8_KT-lUr8kMSknVb8Ewi7SL0mBiEQbx2IKIotEG8bCBMEKUjLLwDgxycrMwNwg1cLI0szIxCzJMtGiBmxjfGaKVVFmcrZDbmJZUWaFXn5eak1ykqWFSaqRYVKqsaWxWYppFk-Gu_-D9-enMbAnfX_SwMQMAM0FgHI.KDLAzj6dhyBP5A/click]\r\n\r\n# NEW: DIGITAL GIFT CARDS [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pS_hklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-gVF-SmlySXF-ghx3fTMtBLd5MSiFPuyxKLMxLwSWxNjY2NTQwtLY2MjAzNDw9NXt89453PL0UqAi6m0WIjLKSc_P7coNTE5w0oJKJIsJGNkamhkaBDvkZ-TmZJYGe8ONDHevTQzJTU-NNiKG6gmV4g1NTcxMycqQl8_KT-lUr8kMSknVb8Ewi7SL0mBiEQbx2IKIotEG8XCBMEKMgz1iwsS8_QTk6zMDMwNUi2MLM2MTMySLBMtasA2xmemWBVlJmc75CaWFWVW6OXnpdYkJ1lamKQaGSalGlsam6WYZvFkuPs_eH9-GgN70vcnDUzMALm6gDg.gmDmLWjMTKW-nw/click] \r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pShhklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-sn5OTmpySWZ-XnF-umZaSW66aWZKamGp69un_HO55ajlQAXU2mxEJdTTn5-blFqYnKGlRJQJFlIxsjU0MjQIN4jPyczJbEy3h2oN94dpDc-NNiKG6gmV4g1NTcxMycqVF8_KT-lUr8kMSknVb8Ewi7SL0mBiESbxGIKYhMBs1Myy8A4McnKzMDcINXCyNLMyMQsyTLRogZsXXxmilVRZnK2Q25iWVFmhV5-XmpNcpKlhUmqkWFSqrGlsVmKaRZPhrv_g_fnpzGwJ31_0sDEDAAI1nZ2.ZCUGMUs9nHXHHg/click]\r\n\r\n# GIFT ICONS THAT LAST\r\n\r\nYou can’t go wrong gifting our top tools — proven favorites, built for daily use and big moments.\r\n\r\nWant to level it up?\r\nEvery accessory below pairs with these icons. No overthinking, just upgrades that make sense.\r\n\r\nSHOP HOLIDAY PICKS [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pShhklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-sn5OTmpySWZ-XnF-umZaSW66aWZKamGp69un_HO55ajlQAXU2mxEJdTTn5-blFqYnKGlRJQJFlIxsjU0MjQIN4jPyczJbEy3h2oN94dpDc-NNiKG6gmV4g1NTcxMycqRF8_KT-lUr8kMSknVb8Ewi7SL0mBiESbxmIKYlFmHAvlpmSW6ScmWZkZmBukWhhZmhmZmCVZJlrUgG2Lz0yxKspMznbITSwryqzQy89LrUlOsrQwSTUyTEo1tjQ2SzHN4slw93_w_vw0Bvak708amJgBgld17w.5dcArFyz-ZTMog/click]\r\n\r\n# — GIFT LIKE A PRO —\r\n\r\n# BIT KIT SET\r\n\r\nExpand your tool\'s capabilities with 21 double-ended bits.\r\n\r\n*SHOP NOW* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pS7hklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-sn5OTmpySWZ-XnF-onJyanFxflFmanF-gVF-SmlySXF-kmZJbrZQFycWmJ4-ur2Ge98bjlaCXAxlRYLcTnl5OfnFqUmJmdYKQFFkoVkjEwNjQwN4j3yczJTEivj3TPTSuLdSzNTUuNDg624gWpyhVhTcxMzc6Ki9fWT8lMq9UsSk3JS9Usg7CL9khSISLR5LKYgski0Yax-SmYZVLVxLFQdSCgxycrMwNwg1cLI0szIxCzJMtGiBmxpfGaKVVFmcrZDbmJZUWaFXn5eak1ykqWFSaqRYVKqsaWxWYppFk-Gu_-D9-enMbAnfX_SwMQMAKjIgRc.X7zm8hgNSiH9OA/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pS7hklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-sn5OTmpySWZ-XnF-onJyanFxflFmanF-gVF-SmlySXF-kmZJbrZQFycWmJ4-ur2Ge98bjlaCXAxlRYLcTnl5OfnFqUmJmdYKQFFkoVkjEwNjQwN4j3yczJTEivj3TPTSuLdSzNTUuNDg624gWpyhVhTcxMzc6Ji9PWT8lMq9UsSk3JS9Usg7CL9khSISLR5LKYgski0Uax-SmYZTAKsCMQH4cQkKzMDc4NUCyNLMyMTsyTLRIsasK3xmSlWRZnJ2Q65iWVFmRV6-XmpNclJlhYmqUaGSanGlsZmKaZZPBnu_g_en5_GwJ70_UkDEzMAO2KBoA.HA1xdGwW4T7RkQ/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pSXhklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-sn5OTmpySWZ-XnF-onJyanFxflFmanF-gVF-SmlySXF-kWJJckZqSW6KUWZZalFhqevbp_xzueWo5UAF1NpsRCXU05-fm5RamJyhpUSUCRZSMbI1NDI0CDeIz8nMyWxMt49M60k3r00MyU1PjTYihuoJleINTU3MTMnKkJfPyk_pVK_JDEpJ1W_BMIu0i9JgYhEW8ZiCiKLRBvGwgTBClIyy8A4McnKzMDcINXCyNLMyMQsyTLRogZsY3xmilVRZnK2Q25iWVFmhV5-XmpNcpKlhUmqkWFSqrGlsVmKaRZPhrv_g_fnpzGwJ31_0sDEDAAhEIGl.j0IdflzjQe77Tg/click]\r\n\r\n# RATCHET DRIVER\r\n\r\nApply more torque to\r\nstubborn screws and nuts.\r\n\r\n*SHOP NOW* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pSXhklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-sn5OTmpySWZ-XnF-onJyanFxflFmanF-gVF-SmlySXF-kWJJckZqSW6KUWZZalFhqevbp_xzueWo5UAF1NpsRCXU05-fm5RamJyhpUSUCRZSMbI1NDI0CDeIz8nMyWxMt49M60k3r00MyU1PjTYihuoJleINTU3MTMnKlxfPyk_pVK_JDEpJ1W_BMIu0i9JgYhEW8ZiCiKLRBvFQlUax0LVpGSW6ScmWZkZmBukWhhZmhmZmCVZJlrUgC2Mz0yxKspMznbITSwryqzQy89LrUlOsrQwSTUyTEo1tjQ2SzHN4slw93_w_vw0Bvak708amJgBj0GBHg.N0qxwfItff52BQ/click]\r\n\r\n# TOOL POUCH\r\n\r\nKeep everyday essentials organized and ready to go.\r\n\r\n*SHOP NOW* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pSARklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-gVF-SmlySXF-ghx3ZL8_BzdgvzS5Az7ssSizMS8ElsTY1MzYyMjE0NjcwsjQ8PTV7fPeOdzy9FKgIuptFiIyyknPz-3KDUxOcNKCSiSLCRjZGpoZGgQ75Gfk5mSWBnvnplWEu9empmSGh8abMUNVJMrxJqam5iZExWjr5-Un1KpX5KYlJOqXwJhF-mXpEBEog0NYzFFkUWigQpSMsugyo1joepAQolJVmYG5gapFkaWZkYmZkmWiRY1YFvjM1OsijKTsx1yE8uKMiv08vNSa5KTLC1MUo0Mk1KNLY3NUkyzeDLc_R-8Pz-NgT3p-5MGJmYAfb-CKg.Hm3YJt4s7TBt_Q/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pSARklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-gVF-SmlySXF-ghx3ZL8_BzdgvzS5Az7ssSizMS8ElsTY1MzYyMjE0NjcwsjQ8PTV7fPeOdzy9FKgIuptFiIyyknPz-3KDUxOcNKCSiSLCRjZGpoZGgQ75Gfk5mSWBnvnplWEu9empmSGh8abMUNVJMrxJqam5iZExWrr5-Un1KpX5KYlJOqXwJhF-mXpEBEog0NYzFFkUWijWL1UzLLYBJgRSA-CCcmWZkZmBukWhhZmhmZmCVZJlrUgK2Nz0yxKspMznbITSwryqzQy89LrUlOsrQwSTUyTEo1tjQ2SzHN4slw93_w_vw0Bvak708amJgBEW2Csw.KBd634elboVPsw/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pS3hklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-sn5OTmpySWZ-XnF-mmJebrpqYlF-gVF-SmlySXF-mWZeSWJ6am6VZkFuhn5-SmZqYanr26f8c7nlqOVABdTabEQl1NOfn5uUWpicoaVElAkWUjGyNTQyNAg3iM_JzMlsTLePTOtJN69NDMlNT402IobqCZXiDU1NzEzJypSXz8pP6VSvyQxKSdVvwTCLtIvSYGIRBsax2KKYlFnFAvlpmSWgXFikpWZgblBqoWRpZmRiVmSZaJFDdjK-MwUq6LM5GyH3MSyoswKvfy81JrkJEsLk1Qjw6RUY0tjsxTTLJ4Md_8H789PY2BP-v6kgYkZAIzqga8.1eL1Xk6WejcnrQ/click]\r\n\r\nMADE FOR FANS. PERFECT FOR GIFTING\r\n\r\nFrom tees to hats to hoodies, the Leatherman Fan Gear Collection turns everyday staples into something personal. Understated, functional, and made to last — this is gear they’ll actually want to wear.\r\n\r\nEXPLORE FAN GEAR [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pS-hklJQXFVvr65eXlejmpiSUZqUW5iXl6yfm5-sn5OTmpySWZ-XnF-mmJebrpqYlFhqevbp_xzueWo5UAF1NpsRCXU05-fm5RamJyhpUSUCRZSMbI1NDI0CDeIz8nMyWxMt49M60k3r00MyU1PjTYihuoJleINTU3MTMnKlRfPyk_pVK_JDEpJ1W_BMIu0i9JgYhEGxrHYopiUWcaC-WmZJbpJyZZmRmYG6RaGFmaGZmYJVkmWtSArYvPTLEqykzOdshNLCvKrNDLz0utSU6ytDBJNTJMSjW2NDZLMc3iyXD3f_D-_DQG9qTvTxqYmAHFFnU7.VFIXC2NeyFVxVQ/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pSZRklJQXFVvr65eXlepl5xSWJ6UWJuXrJ-bn6OamJJRmpRbmJeSX5-TnFyvG5xSmVebnZJfEp-Xn5JSVFicnZtgY6COGczLzszBTbREOjJIvEpGRdc8PUJF0T41QzXUvDFCPdpKS0xFQTQ1NzU9NEw9NXt89453PL0UqAi6m0WIjLKSc_P7coNTE5w0oJKJIsJGNkamhkaBDvkZ-TmZJYGe-emVYS716amZIaHxpsxQ1UkyvEmpqbmJkTVamvn5SfUqlfkpiUk6pfAmEX6ZekQESiDU1iMUWxiYDZKZlluFUgRKKNYvUTk6zMDMwNUi2MLM2MTMySLBMtasBOis9MsSrKTM52yE0sK8qs0MvPS61JTrK0MEk1MkxKNbY0NksxzeLJcPd_8P78NAb2pO9PGpiYAX_zmyA.haasvRgDwm_wmw/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pScRklJQXFVvr65eXleiWZ2SX52XrJ-bn6DjmpiSUZqUW5iXnxJfn5OcXK8bnFKZV5udkl8TmZedmZKbYmxsnGKclpqboGBiYpuibJxsm6lsaWibqmBqZpaWapqUCUZnj66vYZ73xuOVoJcDGVFgtxOeXk5-cWpSYmZ1gpAUWShWSMTA2NDA3iPfJzMlMSK-PdM9NK4t1LM1NS40ODrbiBanKFWFNzEzNzoir19ZPyUyr1SxKTclL1SyDsIv2SFIhItKFJLKYoNhEwOyWzDLcKhEi0cax-YpKVmYG5QaqFkaWZkYlZkmWiRQ3YSfGZKVZFmcnZDrmJZUWZFXr5eak1yUmWFiapRoZJqcaWxmYpplk8Ge7-D96fn8bAnvT9SQMTMwC_kpG2.P0oPRnzV_MdVCA/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pShRklJQXFVvr65eXlemmJyalJ-fnZesn5ufo-qYklGalFuYl5-srxucUplXm52SXxKfl5-SUlRYnJ2bYGOgjhnMy87MwUW-NkI7MUI-NUXRNzQ3NdE5M0C11LU7Nk3UQTAzMDM3PLRCOjNMPTV7fPeOdzy9FKgIuptFiIyyknPz-3KDUxOcNKCSiSLCRjZGpoZGgQ75Gfk5mSWBnvnplWEu9empmSGh8abMUNVJMrxJqam5iZE1Wpr5-Un1KpX5KYlJOqXwJhF-mXpEBEog1NYjFFsYmA2SmZZbhVIESigYYmJlmZGZgbpFoYWZoZmZglWSZa1ICdFJ-ZYlWUmZztkJtYVpRZoZefl1qTnGRpYZJqZJiUamxpbJZimsWT4e7_4P35aQzsSd-fNDAxAwC2fJc2.8FMOFQSyswrrYw/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zr0vA2EAx3GpiKSa4AYDBmGQiPa597ekCZYaKtKIRdOc57nnOX307h65Ptf2kg6ii3-A2CV2k5HFZDBZDGIwCraaRNMOBmzffPIbfsJcqfT0mvm8OJmc0fY6t1Nfrevjzq5zji5vxpc-jrqL00mV84O6DUCz2cwlLOYxIjmXBSCukwgUCeRVEgUw3CCYwgUnqOMkDGrcwSxknEfQreXF5R_2aVijOO-ZCtYxEbMG9Lysasha1lIkNYtFVzZNQzZ03ZPuHq7O3oqPq_ZEOhXXhfSaz1gQEehW7fmeuMKsrEmyJDrrzKcYJk6BetwpxBQTZ3vLHuttAmGEBJD6OwkAiOEEcIh8AvigI8DxQMqSWvmtf0m_MW38v_iRslYBENm6aIjElC1dVnVkQbPdv-RQbEfUra0EsBHRVo6FpO0iy1SJLCGiWIqOtf1MtbD5_H5_OjSKui-HqeFvEdWbHw.V1CyuutNZLu9lA/click] \r\n\r\n*Privacy Policy* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pSLYwZJSUFxVb6-uXl5Xo5qYklGalFuYl5esn5ufoF-TmZyZmpxfoFRZllicmVumCBSr2Mktwc5fjc4pTKvNzskviU_Lz8kpKixORsWwMdhHBOZl52ZoqthUGSqVmKSapukqm5ma6JRbKRrqWxsYGuWVKauWWqgbF5omWy4emr22e887nlaCXAxVRaLMTllJOfn1uUmpicYaUEFEkWkjEyNTQyNIj3ALogJbEy3j0zrSTevTQzJTU-NNiKG6gmV4g1NTcxMycqR18_KT-lUr8kMSknVb8Ewi7SL0mBiEQbmsZiimITAbNTMsvAGKo3Fkk4EchNsjIzMDdItTCyNDMyMUuyTLSoAbsiPjPFqigzOdshN7GsKLNCLz8vtSY5ydLCJNXIMCnV2NLYLMU0iyfD3f_B-_PTGNiTvj9pYGIGAILnmlc.Mxzyh7zOsICUqg/click] *Manage Preferences* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pS-xgzSkoKiq309UuLjXWTU_L0UvPS9ZJy8vNzi1ITkzP0kvNz9XNSE0syUotyE_N0S_Lzc3QLivJTSpNLMvPz9FP1ndMr8gtdDZ28c1JzSy2Lo9wq04M93dyCjEvLfXW9E8Ncg4oNo0wC3NzKTE3KTDJdIt10syKLPBxdKovK08uS83yTy8JKTLNKQ_wKnJLTKwp8zQsyk4uCcw2cw8OLww30QlyLywuN_DLLTHQDLRz1k_PzilPzSuxzEvPSbVPzDE9f3T7jnc8tRysBLqbSYiEuJ7jTrZSAIslCMkamhkaGBvEe-TmZKYmV8e6ZaSXx7qWZKanxocFW3EA1uUKsqbmJmTlROfr6SfkplfoliUk5qfolEHaRfkkKRCTa0DQWUxSbCJidklkGxlC9sUjCidFGsUlWZgbmBqkWRpZmRiZmSZaJFjVgV8RnplgVZSZnO-QmlhVlVujl56XWJCdZWpikGhkmpRpbGpulmGbxZLj7P3h_fhoDe9L3Jw1MzAC9Ia9_.YU6g9G6zrd1ZpQ/click] *Unsubscribe* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUggMvPeG58eyqYLSpunNR8X-VezvaE6IX5y08QC_1oem7-pS-xgzSkoKiq309UuLjXWTU_L0UvPS9ZJy8vNzi1ITkzP0kvNz9XNSE0syUotyE_N0S_Lzc3QLivJTSpNLMvPz9FP1ndMr8gtdDZ28c1JzSy2Lo9wq04M93dyCjEvLfXW9E8Ncg4oNo0wC3NzKTE3KTDJdIt10syKLPBxdKovK08uS83yTy8JKTLNKQ_wKnJLTKwp8zQsyk4uCcw2cw8OLww30QlyLywuN_DLLTHQDLRz1k_PzilPzSuxzEvPSbVPzDE9f3T7jnc8tRysBLqbSYiEuJ7jTrZSAIslCMkamhkaGBvEe-TmZKYmV8e6ZaSXx7qWZKanxocFW3EA1uUKsqbmJmTlROfr6SfkplfoliUk5qfolEHaRfkkKRCTa0DQWUxSbCJidklkGxlC9sUjCidHGsUlWZgbmBqkWRpZmRiZmSZaJFjVgV8RnplgVZSZnO-QmlhVlVujl56XWJCdZWpikGhkmpRpbGpulmGbxZLj7P3h_fhoDe9L3Jw1MzAC9cK-A.kqNFjG41JKj_jw/click] \r\n\r\nThis email was sent to Rick@mavrix.one\r\n\r\nby *Leatherman Tool Group, Inc.*\r\n\r\n12106 NE Ainsworth Circle \r\nPortland, Oregon 97220\r\n\r\n© 2025 Leatherman Tool Group, Inc. All Rights Reserved.',0,0,0,0,0,0,'2025-12-06 05:08:50','2025-12-09 18:52:32','2025-12-09 18:52:32','2025-12-09 18:52:32',NULL,NULL,NULL),
(183,4,'<CADxgbC-N3BhbQtYg9XaOaV1MoWdDkvJhhDmdCQcrBseJexemrQ@mail.gmail.com>',NULL,NULL,'Fwd: EDI Integration to Custom ERP and ICRS','tanner@lithiumbatterycompany.com','Tanner Hance','<div dir=\"auto\">Rick,</div><div dir=\"auto\"><br></div><div dir=\"auto\">Please see the traffic below and let me know if you have any questions. I am going to try to connect with Torrey for a phone call next week when he has some availability. </div><div dir=\"auto\"><br></div><div dir=\"auto\">I’m assuming we plan to self file, but I don’t know. I asked Nathan, Jordan, and Jarrett, but got no response. I will reconnect with them on Monday. <br clear=\"all\"><br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div style=\"color:rgb(80,0,80)\"><div dir=\"ltr\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\"><br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">V/r</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\"><br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Tanner Hance</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (919) 356-0862<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u style=\"font-family:Arial,sans-serif\">tanner<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"margin:0px;font-family:Arial,sans-serif;color:blue\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" style=\"font-family:Arial,sans-serif;color:rgb(17,85,204)\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><div style=\"margin:2px 0px 0px;color:rgb(80,0,80)\"></div></div></div></div></div><div><br></div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">Torrey Chambliss</strong> <span dir=\"auto\">&lt;<a href=\"mailto:tchambliss@tampaport.com\">tchambliss@tampaport.com</a>&gt;</span><br>Date: Sat, Dec 6, 2025 at 07:04<br>Subject: Re: EDI Integration to Custom ERP and ICRS<br>To: Tanner Hance &lt;<a href=\"mailto:tanner@lithiumbatterycompany.com\">tanner@lithiumbatterycompany.com</a>&gt;<br></div><br><br>\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nHELLO Tanner.   </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nIt was a pleasure to meet you in person.  Thanks for coming. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nFor the goods to clear customs, CBP will need certain information on the product and on its mode of transportation.  How familiar are you with the customs clearance process?  Will you and the team use a customs broker to manage/file the customs paperwork product\r\n or will you self file?</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nA phone conversation would probably more effective for this conversation.  </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nCan we set up a call for early next week?</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nI look forward to your response.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,-apple-system,HelveticaNeue,sans-serif;font-size:12pt\" id=\"m_2473979748156005597ms-outlook-mobile-body-separator-line\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,-apple-system,HelveticaNeue,sans-serif;font-size:12pt\" id=\"m_2473979748156005597ms-outlook-mobile-body-separator-line\">\r\n<br>\r\n</div>\r\n<div id=\"m_2473979748156005597ms-outlook-mobile-signature\">\r\n<p style=\"direction:ltr;line-height:1.5;margin:0px;font-family:Calibri,sans-serif;font-size:11pt\">\r\n<span style=\"font-family:Calibri,sans-serif;color:rgb(31,73,125)\">Torrey Chambliss - LCB, AZS, MBA, MA</span></p><a href=\"https://www.google.com/maps/search/1101+Channelside+Drive+%0D%0A+%0D%0A+Tampa,+Florida+33602?entry=gmail&amp;source=g\">\r\n</a><p style=\"direction:ltr;line-height:1.5;margin:0px;font-family:Calibri,sans-serif;font-size:11pt\"><a href=\"https://www.google.com/maps/search/1101+Channelside+Drive+%0D%0A+%0D%0A+Tampa,+Florida+33602?entry=gmail&amp;source=g\" style=\"font-family:Calibri,sans-serif\">\r\n</a><span style=\"font-family:Calibri,sans-serif;color:rgb(31,73,125)\">Director, FTZ &amp; Cargo Business Development</span></p>\r\n<p style=\"direction:ltr;line-height:1.5;margin:0px;font-family:Calibri,sans-serif;font-size:11pt\">\r\n<span style=\"font-family:Calibri,sans-serif;color:rgb(31,73,125)\">Port Tampa Bay</span></p>\r\n<p style=\"direction:ltr;line-height:1.5;margin:0px;font-family:Calibri,sans-serif;font-size:11pt\">\r\n<span style=\"font-family:Calibri,sans-serif;color:currentcolor\"><a href=\"https://www.google.com/maps/search/1101+Channelside+Drive+%0D%0A+%0D%0A+Tampa,+Florida+33602?entry=gmail&amp;source=g\" style=\"font-family:Calibri,sans-serif\">1101 Channelside Drive</a></span></p>\r\n<p style=\"direction:ltr;line-height:1.5;margin:0px;font-family:Calibri,sans-serif;font-size:11pt\">\r\n<span style=\"font-family:Calibri,sans-serif;color:currentcolor\"><a href=\"https://www.google.com/maps/search/1101+Channelside+Drive+%0D%0A+%0D%0A+Tampa,+Florida+33602?entry=gmail&amp;source=g\" style=\"font-family:Calibri,sans-serif\">Tampa, Florida 33602</a></span></p>\r\n<p style=\"direction:ltr;line-height:1.5;margin:0px;font-family:Calibri,sans-serif;font-size:11pt\">\r\n<span style=\"font-family:Calibri,sans-serif;color:rgb(31,73,125)\">Tel: </span><span style=\"font-family:Calibri,sans-serif;color:currentcolor\">813-905-5125</span></p>\r\n<p style=\"direction:ltr;line-height:1.5;margin:0px;font-family:Calibri,sans-serif;font-size:11pt\">\r\n<span style=\"font-family:Calibri,sans-serif;color:rgb(31,73,125)\">Cell: </span><span style=\"font-family:Calibri,sans-serif;color:currentcolor\">813-382-1591</span></p>\r\n<p style=\"direction:ltr;line-height:1.5;margin:0px;font-family:Calibri,sans-serif;font-size:11pt\">\r\n<span style=\"font-family:Calibri,sans-serif;color:rgb(31,73,125)\">Website: </span><span style=\"font-family:Calibri,sans-serif;color:rgb(0,120,212)\"><a style=\"margin-top:0px;margin-bottom:0px;font-family:Calibri,sans-serif;color:rgb(0,120,212)\" id=\"m_2473979748156005597OWAcd742da8-1fe7-530c-a235-d5dba57ca232\" href=\"http://www.porttb.com/\" target=\"_blank\">www.PortTB.com</a></span></p>\r\n<p style=\"direction:ltr;line-height:1.5;margin:0px;font-family:Calibri,sans-serif;font-size:11pt\">\r\n<span style=\"font-family:Calibri,sans-serif;color:rgb(31,73,125)\">Website: </span><span style=\"font-family:Calibri,sans-serif;color:rgb(0,120,212)\"><a style=\"margin-top:0px;margin-bottom:0px;font-family:Calibri,sans-serif;color:rgb(0,120,212)\" id=\"m_2473979748156005597OWA05aefa2c-f518-c525-cb53-e0791b6b6bac\" href=\"http://www.tampaftz.com/\" target=\"_blank\">www.TampaFTZ.com</a></span></p>\r\n<p style=\"direction:ltr;line-height:1.5;margin:0px;font-family:Calibri,sans-serif;font-size:11pt\">\r\n<span style=\"font-family:Calibri,sans-serif;color:rgb(31,73,125)\"> </span></p>\r\n<p style=\"direction:ltr;line-height:1.5;margin:0px;font-family:Calibri,sans-serif;font-size:11pt\">\r\n<span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:rgb(23,54,93)\"><b style=\"font-family:Calibri,sans-serif\"><img style=\"width: 216px; height: 39.9867px; max-width: 100%; margin-top: 0px; margin-bottom: 0px; font-family: Calibri, sans-serif;\" height=\"39\" width=\"216\" alt=\"PortTampaBay_Horizontal\"></b></span></p>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div id=\"m_2473979748156005597divRplyFwdMsg\">\r\n<div style=\"direction:ltr;font-family:Calibri,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<b style=\"font-family:Calibri,sans-serif\">De:</b> Tanner Hance &lt;<a href=\"mailto:tanner@lithiumbatterycompany.com\" target=\"_blank\" style=\"font-family:Calibri,sans-serif\">tanner@lithiumbatterycompany.com</a>&gt;<br>\r\n<b style=\"font-family:Calibri,sans-serif\">Enviado:</b> Friday, December 5, 2025 5:14:30 PM<br>\r\n<b style=\"font-family:Calibri,sans-serif\">Para:</b> Torrey Chambliss &lt;<a href=\"mailto:tchambliss@tampaport.com\" target=\"_blank\" style=\"font-family:Calibri,sans-serif\">tchambliss@tampaport.com</a>&gt;<br>\r\n<b style=\"font-family:Calibri,sans-serif\">Asunto:</b> EDI Integration to Custom ERP and ICRS</div>\r\n<div style=\"direction:ltr\"> </div>\r\n</div>\r\n<div style=\"text-align:left;line-height:12pt;padding:2pt;border-width:1pt;border-style:solid;font-family:Arial;font-size:10pt;background-color:rgb(255,215,0);border-color:rgb(128,0,0)\">\r\n<span style=\"font-family:Arial;color:rgb(165,42,42)\"><b style=\"font-family:Arial\">CAUTION:</b></span><span style=\"font-family:Arial;color:black\"><b style=\"font-family:Arial\"> External Sender. Please do not click on links or open attachments from senders you do not trust.</b></span></div></div><div dir=\"ltr\">\r\n<div><b><br>\r\n</b></div>\r\n<div style=\"direction:ltr\">Torrey, </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">We are currently working on building out a custom ERP that will integrate an ICRS. We are looking for information on what reports would be required by CBP,  what information they would need 24/7 access to,\r\n what needs to be tracked in our ICRS, and to what level, and any other pertinent information to be compliant. <br>\r\n<br>\r\nI know the seminar talked about this broadly, but we need to find the exact requirements since we aren&#39;t using 3rd party software for our reporting system. <br>\r\n<br>\r\nIf you could point me in the right direction and give me some example reports, I would appreciate it. </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I hope you have a great weekend. </div>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">V/r</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Tanner Hance</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (919) 356-0862</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u style=\"font-family:Arial,sans-serif\">tanner<a style=\"margin:0px;font-family:Arial,sans-serif;color:blue\" id=\"m_2473979748156005597OWAd817f33a-bc2a-fcd2-b594-556f98cfae4f\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(17,85,204)\"><a style=\"margin-top:0px;margin-bottom:0px;font-family:Arial,sans-serif;color:rgb(17,85,204)\" id=\"m_2473979748156005597OWA2ff6f2db-d589-5b67-82ae-1056ff177a82\" href=\"http://lithiumbatterycompany.com/\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p></div><div dir=\"ltr\">\r\n***** Notice ***** The Tampa Port Authority d/b/a Port Tampa Bay is a public agency subject to Chapter 119, Florida Statutes, concerning public records. Electronic Mail (email) messages are covered under such laws and thus subject to disclosure. All email sent\r\n and received is captured by the Port Tampa Bay server and retained as a public record.\r\n</div>\r\n\r\n</div></div>','Rick,\r\n\r\nPlease see the traffic below and let me know if you have any questions. I\r\nam going to try to connect with Torrey for a phone call next week when he\r\nhas some availability.\r\n\r\nI’m assuming we plan to self file, but I don’t know. I asked Nathan,\r\nJordan, and Jarrett, but got no response. I will reconnect with them on\r\nMonday.\r\n\r\n\r\nV/r\r\n\r\n\r\nTanner Hance\r\n\r\nLithium Battery Company\r\n\r\nDirect: (919) 356-0862\r\n\r\n*tanner@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com/>\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: Torrey Chambliss <tchambliss@tampaport.com>\r\nDate: Sat, Dec 6, 2025 at 07:04\r\nSubject: Re: EDI Integration to Custom ERP and ICRS\r\nTo: Tanner Hance <tanner@lithiumbatterycompany.com>\r\n\r\n\r\nHELLO Tanner.\r\n\r\nIt was a pleasure to meet you in person.  Thanks for coming.\r\n\r\nFor the goods to clear customs, CBP will need certain information on the\r\nproduct and on its mode of transportation.  How familiar are you with the\r\ncustoms clearance process?  Will you and the team use a customs broker to\r\nmanage/file the customs paperwork product or will you self file?\r\n\r\nA phone conversation would probably more effective for this conversation.\r\n\r\nCan we set up a call for early next week?\r\n\r\nI look forward to your response.\r\n\r\n\r\n\r\nTorrey Chambliss - LCB, AZS, MBA, MA\r\n<https://www.google.com/maps/search/1101+Channelside+Drive+%0D%0A+%0D%0A+Tampa,+Florida+33602?entry=gmail&source=g>\r\n\r\n<https://www.google.com/maps/search/1101+Channelside+Drive+%0D%0A+%0D%0A+Tampa,+Florida+33602?entry=gmail&source=g>Director,\r\nFTZ & Cargo Business Development\r\n\r\nPort Tampa Bay\r\n\r\n1101 Channelside Drive\r\n<https://www.google.com/maps/search/1101+Channelside+Drive+%0D%0A+%0D%0A+Tampa,+Florida+33602?entry=gmail&source=g>\r\n\r\nTampa, Florida 33602\r\n<https://www.google.com/maps/search/1101+Channelside+Drive+%0D%0A+%0D%0A+Tampa,+Florida+33602?entry=gmail&source=g>\r\n\r\nTel: 813-905-5125\r\n\r\nCell: 813-382-1591\r\n\r\nWebsite: www.PortTB.com <http://www.porttb.com/>\r\n\r\nWebsite: www.TampaFTZ.com <http://www.tampaftz.com/>\r\n\r\n\r\n\r\n*[image: PortTampaBay_Horizontal]*\r\n------------------------------\r\n*De:* Tanner Hance <tanner@lithiumbatterycompany.com>\r\n*Enviado:* Friday, December 5, 2025 5:14:30 PM\r\n*Para:* Torrey Chambliss <tchambliss@tampaport.com>\r\n*Asunto:* EDI Integration to Custom ERP and ICRS\r\n\r\n*CAUTION:** External Sender. Please do not click on links or open\r\nattachments from senders you do not trust.*\r\n\r\nTorrey,\r\n\r\nWe are currently working on building out a custom ERP that will integrate\r\nan ICRS. We are looking for information on what reports would be required\r\nby CBP,  what information they would need 24/7 access to, what needs to be\r\ntracked in our ICRS, and to what level, and any other pertinent information\r\nto be compliant.\r\n\r\nI know the seminar talked about this broadly, but we need to find the exact\r\nrequirements since we aren\'t using 3rd party software for our reporting\r\nsystem.\r\n\r\nIf you could point me in the right direction and give me some example\r\nreports, I would appreciate it.\r\n\r\nI hope you have a great weekend.\r\n\r\n\r\nV/r\r\n\r\n\r\nTanner Hance\r\n\r\nLithium Battery Company\r\n\r\nDirect: (919) 356-0862\r\n\r\n*tanner@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com/>\r\n***** Notice ***** The Tampa Port Authority d/b/a Port Tampa Bay is a\r\npublic agency subject to Chapter 119, Florida Statutes, concerning public\r\nrecords. Electronic Mail (email) messages are covered under such laws and\r\nthus subject to disclosure. All email sent and received is captured by the\r\nPort Tampa Bay server and retained as a public record.',1,0,0,0,0,0,'2025-12-07 01:24:56','2025-12-09 18:52:32','2025-12-09 18:52:32','2025-12-09 19:51:06',NULL,NULL,NULL),
(184,4,'<CADxgbC9JTxWdzk9jmKawui-TKXj7gUGSoUq0z8wdetypara-0w@mail.gmail.com>',NULL,NULL,'Re: Fwd: EDI Integration to Custom ERP and ICRS','tanner@lithiumbatterycompany.com','Tanner Hance','<div dir=\"auto\">Copy all, I will try to make it a 3-way call or VTC when he gives me his availability. <br clear=\"all\"><br><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div style=\"color:rgb(80,0,80)\"><div dir=\"ltr\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">V/r</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\"><br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Tanner Hance</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (919) 356-0862<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u style=\"font-family:Arial,sans-serif\">tanner<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"margin:0px;font-family:Arial,sans-serif;color:blue\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" style=\"font-family:Arial,sans-serif;color:rgb(17,85,204)\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><div style=\"margin:2px 0px 0px;color:rgb(80,0,80)\"></div></div></div></div></div><div><br></div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Sat, Dec 6, 2025 at 20:34 Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;padding-left:1ex;border-left-color:rgb(204,204,204)\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">This is great progress. If possible, I’d like to be on the call, if only to just listen in…mostly.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Let me know what you think.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Thanks again,</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Rick</div> <br> <div class=\"gmail_signature\">\r\n        \r\n     \r\n    <br>\r\n     \r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD, </span><div style=\"font-family:Helvetica,Arial\">Founder, CTO</div><div style=\"font-family:Helvetica,Arial\"><div style=\"font-family:Helvetica,Arial\"><div style=\"font-family:Helvetica,Arial\"><img src=\"cid:ii_19af6725af5736203531\" style=\"width:108px;max-width:100%\"><br></div><div style=\"font-family:Helvetica,Arial\"><a href=\"https://mavrix1.com/\" target=\"_blank\" style=\"font-family:Helvetica,Arial\">https://mavrix1.com</a></div></div><div style=\"font-family:Helvetica,Arial\"><br></div><div style=\"font-family:Helvetica,Arial\"><div style=\"font-family:Helvetica,Arial\">CONFIDENTIALITY NOTICE</div><div style=\"font-family:Helvetica,Arial\">This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</div><div style=\"font-family:Helvetica,Arial\"><br></div><div style=\"font-family:Helvetica,Arial\">If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</div><div style=\"font-family:Helvetica,Arial\"><br></div><div style=\"font-family:Helvetica,Arial\">Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</div></div></div></div></div> <br><p>On December 6, 2025 at 8:25:51 PM, Tanner Hance (<a href=\"mailto:tanner@lithiumbatterycompany.com\" target=\"_blank\">tanner@lithiumbatterycompany.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><span style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:16px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;float:none;display:inline!important;color:rgb(0,0,0)\">Will you and the team use a customs broker to manage/file the customs paperwork product or will you self</span></div></span></blockquote>\r\n\r\n\r\n</blockquote></div></div>','Copy all, I will try to make it a 3-way call or VTC when he gives me his\r\navailability.\r\n\r\nV/r\r\n\r\n\r\nTanner Hance\r\n\r\nLithium Battery Company\r\n\r\nDirect: (919) 356-0862\r\n\r\n*tanner@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com/>\r\n\r\n\r\nOn Sat, Dec 6, 2025 at 20:34 Rick <rick@mavrix.one> wrote:\r\n\r\n> This is great progress. If possible, I’d like to be on the call, if only\r\n> to just listen in…mostly.\r\n> Let me know what you think.\r\n> Thanks again,\r\n> Rick\r\n>\r\n>\r\n> Rick Mislan, PhD,\r\n> Founder, CTO\r\n>\r\n> https://mavrix1.com\r\n>\r\n> CONFIDENTIALITY NOTICE\r\n> This communication, including any attachments, may contain confidential,\r\n> privileged, or Controlled Unclassified Information (CUI) protected under\r\n> federal law. It is intended solely for the use of the designated\r\n> recipient(s). Any unauthorized review, use, disclosure, distribution, or\r\n> copying is strictly prohibited and may be unlawful.\r\n>\r\n> If you are not the intended recipient, please notify the sender\r\n> immediately, delete this email, and destroy all copies.\r\n>\r\n> Unless expressly stated, the views and opinions expressed herein are those\r\n> of the sender and do not necessarily reflect those of the sender’s employer\r\n> or any U.S. Government agency. All recipients are responsible for handling\r\n> information in accordance with applicable federal regulations, including\r\n> but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n>\r\n> On December 6, 2025 at 8:25:51 PM, Tanner Hance (\r\n> tanner@lithiumbatterycompany.com) wrote:\r\n>\r\n> Will you and the team use a customs broker to manage/file the customs\r\n> paperwork product or will you self\r\n>\r\n>',1,0,0,0,0,0,'2025-12-07 01:36:32','2025-12-09 18:52:32','2025-12-09 18:52:32','2025-12-10 12:53:22',NULL,NULL,NULL),
(185,4,'<30018621.20251207081355.693537431489c8.73709481@mail180-31.suw31.mandrillapp.com>',NULL,NULL,'=?utf-8?Q?Action=20Required!=20Mavrix1=20Management=20LLC\'s=20Employee=20Benefits=20Program=20-=20Questionnaire?=','no-reply@benefitter.com','\"Mavrix1 Management LLC\'s Management\"','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html><body style=\"margin: 0; padding: 0\">      <div style=\"padding-left: 10px; padding-right: 10px;\">\r\n        \r\n        <p>\r\n          Dear Richard,\r\n        </p>\r\n        <p>\r\n          Mavrix1 Management LLC\'s is exploring insurance options that may result in cost savings for you. \r\n          Collecting medical history information is part of that process. Mavrix1 Management LLC\'s is requesting \r\n          that you complete the electronic individual medical questionnaire. Your responses will only be \r\n          disclosed to insurance carriers, are secure, and will not be shared with Mavrix1 Management LLC\'s.\r\n          <br /><br />\r\n          All statements contained in this form must be true and correct, and no material information \r\n          can be withheld or omitted.\r\n          <br /><br />\r\n          Please click the \'Let\'s Begin\' button to start your questionnaire.\r\n        </p>\r\n        <p>\r\n        The deadline to complete this questionnaire is: 12/10/2025.\r\n        </p>\r\n        <hr>\r\n        <p>\r\n          To prepare, please gather the following pieces of information of everyone you are expecting to enroll:<br>\r\n          <ul>\r\n            <li>Dates of Birth</li>\r\n            <li>Heights and weights</li>\r\n            <li>Medical and prescription history from the past 5 years</li>\r\n          </ul>\r\n        </p>\r\n        <br>\r\n        <a href=\"https://mandrillapp.com/track/click/30018621/ei.benefitter.com?p=eyJzIjoiZy1saFRiNEk5eURhTGdMbTA4bnJoTFpWTHl3IiwidiI6MiwicCI6IntcInVcIjozMDAxODYyMSxcInZcIjoyLFwidXJsXCI6XCJodHRwczpcXFwvXFxcL2VpLmJlbmVmaXR0ZXIuY29tXFxcL2ltcVxcXC9hY3RpdmF0ZVxcXC9QTk1UWU5cIixcImlkXCI6XCJkOTZjZGVhYjczZGU0NWNmYThiOWVlOTc4NzBlYWE3M1wiLFwidXJsX2lkc1wiOltcImQ0OGQwODMzMGUwZDdiNzRkOWI3MTI1M2M5Yjg1NTZhMWZmNDEzYjdcIl0sXCJtc2dfdHNcIjoxNzY1MDk1MjM1fSJ9\" style=\"background: #f26222; color: white; padding: 10px;\r\n            text-decoration: none; font-weight: bold;\r\n            border-radius: 4px;\">\r\n          Let\'s Begin!\r\n        </a><br><br>\r\n        <p>Or Copy - Paste the link below on your internet browser:</p>\r\n        <p>https://ei.benefitter.com/imq/activate/PNMTYN</p><br>\r\n        <p>Thank you,</p>\r\n        <p>Mavrix1 Management LLC\'s Management</p>\r\n      </div>\r\n<img src=\"https://mandrillapp.com/track/open.php?u=30018621&id=d96cdeab73de45cfa8b9ee97870eaa73\" height=\"1\" width=\"1\" alt=\"\"></body></html>','   Dear Richard, \r\n\r\n  Mavrix1 Management LLC\'s is exploring insurance options that may result\r\nin cost savings for you. Collecting medical history information is part of\r\nthat process. Mavrix1 Management LLC\'s is requesting that you complete the\r\nelectronic individual medical questionnaire. Your responses will only be\r\ndisclosed to insurance carriers, are secure, and will not be shared with\r\nMavrix1 Management LLC\'s. \r\n\r\n All statements contained in this form must be true and correct, and no\r\nmaterial information can be withheld or omitted. \r\n\r\n Please click the \'Let\'s Begin\' button to start your questionnaire. \r\n\r\n  The deadline to complete this questionnaire is: 12/10/2025. \r\n\r\n   To prepare, please gather the following pieces of information of\r\neveryone you are expecting to enroll:\r\n   - Dates of Birth\r\n  - Heights and weights\r\n  - Medical and prescription history from the past 5 years\r\n \r\n \r\n\r\n \r\n  Let\'s Begin! <https://mandrillapp.com/track/click/30018621/ei.benefitter.com?p=eyJzIjoiZy1saFRiNEk5eURhTGdMbTA4bnJoTFpWTHl3IiwidiI6MiwicCI6IntcInVcIjozMDAxODYyMSxcInZcIjoyLFwidXJsXCI6XCJodHRwczpcXFwvXFxcL2VpLmJlbmVmaXR0ZXIuY29tXFxcL2ltcVxcXC9hY3RpdmF0ZVxcXC9QTk1UWU5cIixcImlkXCI6XCJkOTZjZGVhYjczZGU0NWNmYThiOWVlOTc4NzBlYWE3M1wiLFwidXJsX2lkc1wiOltcImQ0OGQwODMzMGUwZDdiNzRkOWI3MTI1M2M5Yjg1NTZhMWZmNDEzYjdcIl0sXCJtc2dfdHNcIjoxNzY1MDk1MjM1fSJ9>\r\n\r\n Or Copy - Paste the link below on your internet browser:\r\n\r\n https://mandrillapp.com/track/click/30018621/ei.benefitter.com?p=eyJzIjoiZy1saFRiNEk5eURhTGdMbTA4bnJoTFpWTHl3IiwidiI6MiwicCI6IntcInVcIjozMDAxODYyMSxcInZcIjoyLFwidXJsXCI6XCJodHRwczpcXFwvXFxcL2VpLmJlbmVmaXR0ZXIuY29tXFxcL2ltcVxcXC9hY3RpdmF0ZVxcXC9QTk1UWU5cIixcImlkXCI6XCJkOTZjZGVhYjczZGU0NWNmYThiOWVlOTc4NzBlYWE3M1wiLFwidXJsX2lkc1wiOltcImQ0OGQwODMzMGUwZDdiNzRkOWI3MTI1M2M5Yjg1NTZhMWZmNDEzYjdcIl0sXCJtc2dfdHNcIjoxNzY1MDk1MjM1fSJ9\r\n\r\n Thank you,\r\n\r\n Mavrix1 Management LLC\'s Management',0,0,0,0,0,0,'2025-12-07 08:13:55','2025-12-09 18:52:33','2025-12-09 18:52:33','2025-12-09 18:52:33',NULL,NULL,NULL),
(186,4,'<11873c15-f29c-49dc-9838-bc5e0d99f17e@atl1s07mta3029.xt.local>',NULL,NULL,'Your free access to TinyMCE\'s advanced features is ending soon!','team@engage.tiny.cloud','\"The TinyMCE Team\"','<!DOCTYPE html>\r\n<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\">\r\n\r\n<head>\r\n	<title></title>\r\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n	<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"><!--[if mso]>\r\n<xml><w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\"><w:DontUseAdvancedTypographyReadingMail/></w:WordDocument>\r\n<o:OfficeDocumentSettings><o:PixelsPerInch>96</o:PixelsPerInch><o:AllowPNG/></o:OfficeDocumentSettings></xml>\r\n<![endif]--><!--[if !mso]><!-->\r\n	<link href=\"https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&amp;display=swap\" rel=\"stylesheet\" type=\"text/css\"><!--<![endif]-->\r\n	<style>\r\n		* {\r\n			box-sizing: border-box;\r\n		}\r\n\r\n		body {\r\n			margin: 0;\r\n			padding: 0;\r\n		}\r\n\r\n		a[x-apple-data-detectors] {\r\n			color: inherit !important;\r\n			text-decoration: inherit !important;\r\n		}\r\n\r\n		#MessageViewBody a {\r\n			color: inherit;\r\n			text-decoration: none;\r\n		}\r\n\r\n		p {\r\n			line-height: inherit\r\n		}\r\n\r\n		.desktop_hide,\r\n		.desktop_hide table {\r\n			mso-hide: all;\r\n			display: none;\r\n			max-height: 0px;\r\n			overflow: hidden;\r\n		}\r\n\r\n		.image_block img+div {\r\n			display: none;\r\n		}\r\n\r\n		sup,\r\n		sub {\r\n			font-size: 75%;\r\n			line-height: 0;\r\n		}\r\n\r\n		@media (max-width:620px) {\r\n			.desktop_hide table.icons-outer {\r\n				display: inline-table !important;\r\n			}\r\n\r\n			.image_block div.fullWidth {\r\n				max-width: 100% !important;\r\n			}\r\n\r\n			.mobile_hide {\r\n				display: none;\r\n			}\r\n\r\n			.row-content {\r\n				width: 100% !important;\r\n			}\r\n\r\n			.stack .column {\r\n				width: 100%;\r\n				display: block;\r\n			}\r\n\r\n			.mobile_hide {\r\n				min-height: 0;\r\n				max-height: 0;\r\n				max-width: 0;\r\n				overflow: hidden;\r\n				font-size: 0px;\r\n			}\r\n\r\n			.desktop_hide,\r\n			.desktop_hide table {\r\n				display: table !important;\r\n				max-height: none !important;\r\n			}\r\n		}\r\n	</style><!--[if mso ]><style>sup, sub { font-size: 100% !important; } sup { mso-text-raise:10% } sub { mso-text-raise:-10% }</style> <![endif]-->\r\n</head>\r\n\r\n<body class=\"body\" style=\"background-color: #ffffff; margin: 0; padding: 0; -webkit-text-size-adjust: none; text-size-adjust: none;\">\r\n	<table class=\"nl-container\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\">\r\n		<tbody>\r\n			<tr>\r\n				<td>\r\n					<table class=\"row row-1\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\">\r\n						<tbody>\r\n							<tr>\r\n								<td>\r\n									<table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; vertical-align: top;\">\r\n													<table class=\"paragraph_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n																<div style=\"color:#233477;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:14px;font-weight:300;letter-spacing:0px;line-height:1.5;text-align:center;mso-line-height-alt:21px;\">\r\n																	<p style=\"margin: 0;\">Is this email not displaying correctly? <a href=\"https://pi.tiny.cloud/webmail/2202/1930450518/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864\" style=\"text-decoration: underline; color: #335dff;\">View it in your browser</a></p>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n								</td>\r\n							</tr>\r\n						</tbody>\r\n					</table>\r\n					<table class=\"row row-2\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\">\r\n						<tbody>\r\n							<tr>\r\n								<td>\r\n									<table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f9f9fb; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\">\r\n													<table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:20px;padding-left:40px;padding-right:40px;padding-top:30px;width:100%;\">\r\n																<div class=\"alignment\" align=\"left\">\r\n																	<div style=\"max-width: 90px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y8q/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\" target=\"_blank\"><img src=\"https://www2.ephox.com/l/2202/2021-02-22/d55tdv/2202/16140490780zkI7GHy/logo_tiny__lock_secondary.png\" style=\"display: block; height: auto; border: 0; width: 100%;\" width=\"90\" alt=\"Tiny logo\" title=\"Tiny logo\" height=\"auto\"></a></div>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n								</td>\r\n							</tr>\r\n						</tbody>\r\n					</table>\r\n					<table class=\"row row-3\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\">\r\n						<tbody>\r\n							<tr>\r\n								<td>\r\n									<table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f9f9fb; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\">\r\n													<table class=\"paragraph_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n																<div style=\"color:#05bc84;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:400;letter-spacing:0px;line-height:1.8;text-align:center;mso-line-height-alt:29px;\">\r\n																	<p style=\"margin: 0;\">3 of 14 days remaining in trial</p>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n													<table class=\"image_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-left:40px;padding-right:40px;width:100%;\">\r\n																<div class=\"alignment\" align=\"center\">\r\n																	<div class=\"fullWidth\" style=\"max-width: 450px;\"><img src=\"https://pi.tiny.cloud/l/2202/2024-06-20/dh87ss/2202/1718924065tGTks1rH/ProgressBar_3_4.png\" style=\"display: block; height: auto; border: 0; width: 100%;\" width=\"450\" alt=\"time tracker image\" title=\"time tracker image\" height=\"auto\"></div>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n													<table class=\"paragraph_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:30px;padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n																<div style=\"color:#202533;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:200;letter-spacing:0px;line-height:1.8;text-align:center;mso-line-height-alt:29px;\">\r\n																	<p style=\"margin: 0;\">Time is running out to explore all of TinyMCE\'s<br><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y77/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\" style=\"text-decoration: underline; color: #335dff;\">advanced features</a>!</p>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n								</td>\r\n							</tr>\r\n						</tbody>\r\n					</table>\r\n					<table class=\"row row-4\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\">\r\n						<tbody>\r\n							<tr>\r\n								<td>\r\n									<table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\">\r\n													<table class=\"paragraph_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"40\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\">\r\n														<tr>\r\n															<td class=\"pad\">\r\n																<div style=\"color:#202533;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:200;letter-spacing:0px;line-height:1.8;text-align:left;mso-line-height-alt:29px;\">\r\n																	<p style=\"margin: 0; margin-bottom: 16px;\"><strong>Having trouble getting started?</strong></p>\r\n																	<p style=\"margin: 0; margin-bottom: 16px;\">Follow our <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y7b/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\" style=\"text-decoration: underline; color: #335dff;\">Cloud-hosted Quick-start guide</a> or <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y7f/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\" style=\"text-decoration: underline; color: #335dff;\">submit a support request</a> if you continue to have any challenges.</p>\r\n																	<p style=\"margin: 0; margin-bottom: 16px;\"><strong><br>Take advantage of your free trial!</strong></p>\r\n																	<p style=\"margin: 0; margin-bottom: 16px;\"><strong>For the next 3 days, enjoy full access to TinyMCE’s most powerful features</strong> — including <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y7j/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\" style=\"text-decoration: underline; color: #335dff;\">PowerPaste</a>, <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y7m/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\" style=\"text-decoration: underline; color: #335dff;\">Spell Checker</a>, <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y7q/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\" style=\"text-decoration: underline; color: #335dff;\">Merge Tags</a>, <a\r\nhref=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y7t/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\" style=\"text-decoration: underline; color: #335dff;\">Comments</a>, and more. It’s your chance to test the editor’s full potential and see how it performs with your most complex use cases.</p>\r\n																	<p style=\"margin: 0; margin-bottom: 16px;\">Plus, don’t miss out on our most popular premium add-ons: <strong><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y7x/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\" style=\"text-decoration: underline; color: #335dff;\">AI Assistant</a></strong>, <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y81/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\" style=\"text-decoration: underline; color: #335dff;\"><strong>Document Converters</strong></a><strong>, </strong><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y84/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\" style=\"text-decoration: underline; color: #335dff;\"><strong>Revision History</strong></a><strong>, </strong><a\r\nhref=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y87/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\" style=\"text-decoration: underline; color: #335dff;\"><strong>Suggested Edits</strong></a><strong>,</strong> and <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y8b/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\" style=\"text-decoration: underline; color: #335dff;\"><strong>Image Optimizer</strong></a> — all available to try free for 3 more days</p>\r\n																	<p style=\"margin: 0; margin-bottom: 16px;\">&nbsp;</p>\r\n																	<p style=\"margin: 0; margin-bottom: 16px;\"><strong>What happens after your 14-day trial ends?</strong></p>\r\n																	<p style=\"margin: 0; margin-bottom: 16px;\">At the end of your 14-day trial, you’ll lose access to all advanced features unless you upgrade to an Essential or Professional <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y8f/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\" style=\"text-decoration: underline; color: #335dff;\">plan</a>.</p>\r\n																	<p style=\"margin: 0; margin-bottom: 16px;\">We’ll also begin tracking your editor loads. If you exceed your allocated plan limit of 1,000 editor loads per month, you’ll automatically be charged $40 USD for every block of 1,000 additional editor loads. To learn more about this usage-based billing model and how to track your editor loads, <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y8j/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\" style=\"text-decoration: underline; color: #335dff;\">visit our FAQ</a>.</p>\r\n																	<p style=\"margin: 0; margin-bottom: 16px;\"><strong>Just a heads-up:</strong> any images you’ve uploaded using the Image Optimizer plugin will be removed once your trial ends — unless you decide to upgrade to a plan that includes the Image Optimizer add-on.</p>\r\n																	<p style=\"margin: 0; margin-bottom: 16px;\">&nbsp;</p>\r\n																	<p style=\"margin: 0; margin-bottom: 16px;\"><strong>Want to continue using the commercial version of TinyMCE, but need to self-host?</strong></p>\r\n																	<p style=\"margin: 0;\">Get in touch with our <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y8m/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\" style=\"text-decoration: underline; color: #335dff;\">sales team</a>, who can help set you up with a proof-of-concept and discuss the costs involved in self-hosting the advanced TinyMCE features.</p>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n								</td>\r\n							</tr>\r\n						</tbody>\r\n					</table>\r\n					<table class=\"row row-5\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\">\r\n						<tbody>\r\n							<tr>\r\n								<td>\r\n									<table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #0c132c; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\">\r\n													<div class=\"spacer_block block-1\" style=\"height:40px;line-height:40px;font-size:1px;\">&#8202;</div>\r\n													<table class=\"icons_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center; line-height: 0;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"vertical-align: middle; color: #000000; font-family: inherit; font-size: 14px; font-weight: 400; padding-left: 40px; padding-right: 40px; text-align: center;\">\r\n																<table class=\"icons-outer\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; display: inline-table;\">\r\n																	<tr>\r\n																		<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 10px; padding-right: 20px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y8t/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\" target=\"_self\" style=\"text-decoration: none;\"><img class=\"icon\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld41/2202/1724751073mZ9u0qBj/icons8_facebook_96.png\" alt=\"facebook\" height=\"auto\" width=\"32\" align=\"center\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\"></a></td>\r\n																		<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 20px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y8x/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\" target=\"_self\" style=\"text-decoration: none;\"><img class=\"icon\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld54/2202/17247512213yTqKMau/Twitter_X_icon_white.png\" alt=\"twitter\" height=\"auto\" width=\"32\" align=\"center\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\"></a></td>\r\n																		<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 20px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y91/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\" target=\"_self\" style=\"text-decoration: none;\"><img class=\"icon\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld4m/2202/1724751160RDTHTZoS/icons8_linkedin_104.png\" alt=\"linkedin\" height=\"auto\" width=\"32\" align=\"center\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\"></a></td>\r\n																		<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 20px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y94/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\" target=\"_self\" style=\"text-decoration: none;\"><img class=\"icon\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld4x/2202/1724751181bzH3aYSZ/icons8_stack_overflow_100.png\" alt=\"stack overflow\" height=\"auto\" width=\"32\" align=\"center\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\"></a></td>\r\n																		<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 10px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y97/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\" target=\"_self\" style=\"text-decoration: none;\"><img class=\"icon\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld4j/2202/1724751125SZG76c9m/icons8_github_96.png\" alt=\"github\" height=\"auto\" width=\"32\" align=\"center\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\"></a></td>\r\n																	</tr>\r\n																</table>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n													<table class=\"paragraph_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:20px;padding-left:40px;padding-right:40px;padding-top:20px;\">\r\n																<div style=\"color:#ffffff;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:14px;font-weight:200;letter-spacing:0px;line-height:1.5;text-align:center;mso-line-height-alt:21px;\">\r\n																	<p style=\"margin: 0;\">This email was sent to rick@mavrix.one<br><br>Update your <a href=\"https://pi.tiny.cloud/emailPreference/epc/2202/i62z4euGh04ThWz32_LglWyvxLZ86UncQxvXNu5DnR4/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1930450518\" style=\"text-decoration: underline; color: #fff;\">email preferences</a> or <a href=\"https://pi.tiny.cloud/unsubscribe/u/2202/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1930450518\" style=\"text-decoration: underline; color: #fff;\">unsubscribe</a><br><br>© 2025 Tiny Technologies | All rights reserved<br>www.tiny.cloud | View our <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y9b/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\" style=\"text-decoration: underline; color: #fff;\">privacy policy</a><br>2100 Geng Road, Palo Alto, CA 94303 USA</p>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n													<div class=\"spacer_block block-4\" style=\"height:40px;line-height:40px;font-size:1px;\">&#8202;</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n								</td>\r\n							</tr>\r\n						</tbody>\r\n					</table>\r\n				</td>\r\n			</tr>\r\n		</tbody>\r\n	</table><!-- End -->\r\n<img alt=\"\" src=\"https://pi.tiny.cloud/r/2202/1/1930450518/open/1\" /></body>\r\n\r\n</html>','Email not displaying correctly? View it in your browser\r\nhttps://pi.tiny.cloud/webmail/2202/1930450518/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864\r\n\r\nhttps://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dc7d3y/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\r\n\r\n3 of 14 days remaining\r\nTime is running out to explore all of TinyMCE\'s\r\nadvanced features (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y77/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14) !\r\n\r\nHaving trouble getting started?\r\n\r\nFollow our Cloud-hosted Quick-start guide (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y7b/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14) or submit a support request (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y7f/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14) if you continue to have any challenges.\r\n\r\nTake advantage of your free trial!\r\n\r\nFor the next 3 days, enjoy full access to TinyMCE’s most powerful features — including PowerPaste (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y7j/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14) , Spell Checker (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y7m/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14) , Merge Tags (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y7q/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14) , Comments (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y7t/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14) , and more. It’s your chance to test the editor’s full potential and see how it performs with your most complex use cases.\r\n\r\nPlus, don’t miss out on our most popular premium add-ons: AI Assistant (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y7x/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14) , Document Converters (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y81/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14) , Revision History (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y84/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14) , Suggested Edits (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y87/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14) , and Image Optimizer (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y8b/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14) — all available to try free for 3 more days\r\n\r\n\r\nWhat happens after your 14-day trial ends?\r\n\r\nAt the end of your 14-day trial, you’ll lose access to all advanced features unless you upgrade to an Essential or Professional plan (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y8f/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14) .\r\n\r\nWe’ll also begin tracking your editor loads. If you exceed your allocated plan limit of 1,000 editor loads per month, you’ll automatically be charged $40 USD for every block of 1,000 additional editor loads. To learn more about this usage-based billing model and how to track your editor loads, visit our FAQ (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y8j/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14) .\r\n\r\nJust a heads-up: any images you’ve uploaded using the Image Optimizer plugin will be removed once your trial ends — unless you decide to upgrade to a plan that includes the Image Optimizer add-on.\r\n\r\n\r\nWant to continue using the commercial version of TinyMCE, but need to self-host?\r\n\r\nGet in touch with our sales team (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y8m/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14) , who can help set you up with a proof-of-concept and discuss the costs involved in self-hosting the advanced TinyMCE features.\r\n \r\n\r\nhttps://pi.tiny.cloud/e/2202/jointiny-/dc7d4k/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\r\nhttps://pi.tiny.cloud/e/2202/jointiny/dc7d4n/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\r\nhttps://pi.tiny.cloud/e/2202/company-jointiny-/dc7d4r/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\r\nhttps://pi.tiny.cloud/e/2202/search-q-23tinymce/dc7d4v/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\r\nhttps://pi.tiny.cloud/e/2202/tinymce/dc7d4y/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\r\n\r\nThis email was sent to rick@mavrix.one\r\nUpdate your email preferences\r\nhttps://pi.tiny.cloud/emailPreference/epc/2202/i62z4euGh04ThWz32_LglWyvxLZ86UncQxvXNu5DnR4/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1930450518\r\n or unsubscribe\r\nhttps://pi.tiny.cloud/unsubscribe/u/2202/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1930450518\r\n\r\n© 2025 Tiny Technologies | All rights reserved\r\nwww.tiny.cloud | View our privacy policy\r\nhttps://pi.tiny.cloud/e/2202/legal-privacy/dc7d52/1930450518/h/ru3mrUS37lmq9l0DP3-LtNFJ2uazxL2PdfxV5yiyj14\r\n2100 Geng Road, Palo Alto, CA 94303 USA',1,0,0,0,0,0,'2025-12-07 13:01:41','2025-12-09 18:52:33','2025-12-09 18:52:33','2025-12-09 19:03:21',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(187,4,'<1744487751.bev3SaM_CFn86zPA@nwpro5.fcomet.com>',NULL,NULL,'=?UTF-8?B?W21hdnJpeC5vbmVdIENsaWVudCBjb25maWd1cmF0aW9uIHNldHRp?= =?UTF-8?B?bmdzIGZvciDigJxyaWNrQG1hdnJpeC5vbmXigJ0u?=','cpanel@mavrix.one','\"cPanel on mavrix.one\"','<body style=\"background:#F4F4F4\">\r\n    <div style=\"margin:0;padding:0;background:#F4F4F4\">\r\n        <table cellpadding=\"10\" cellspacing=\"0\" border=\"0\" width=\"100%\" style=\"width:0 auto;\">\r\n            <tbody>\r\n                <tr>\r\n                    <td align=\"center\">\r\n                        <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"680\" style=\"border:0;width:0 auto;max-width:680px;\">\r\n                            <tbody>\r\n                                <tr>\r\n                                                                        <td width=\"680\" height=\"25\" style=\"font-family:\'Helvetica Neue\',Helvetica,Arial,sans-serif;font-size:16px;color:#333333\">\r\n                                                                                                                                Client Configuration settings for “rick@mavrix.one”.                                                                            </td>\r\n                                                                    </tr>\r\n                                <tr>\r\n                                                                        <td style=\"padding: 15px 0 20px 0; background-color: #FFFFFF; border: 2px solid #E8E8E8; border-bottom: 2px solid #FF6C2C;\">\r\n                                        <table width=\"680\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"background:#FFFFFF;font-family:\'Helvetica Neue\',Helvetica,Arial,sans-serif;\">\r\n                                            <tbody>\r\n                                                <tr>\r\n                                                    <td width=\"15\">\r\n                                                    </td>\r\n                                                    <td width=\"650\">\r\n                                                        <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\">\r\n                                                            <tbody>\r\n                                                                <tr>\r\n                                                                    <td>\r\n                                                                        <div id=\"manual_settings_area\" class=\"section\">\r\n        <h2 id=\"hdrManualSettings\">Mail Client Manual Settings</h2>\r\n        \r\n        <div class=\"row\">\r\n         <div class=\"col-md-6\">\r\n          <div id=\"ssl_settings_area\"\r\n            \r\n            style=\"background-color: #fff;  border: 1px solid transparent; border-radius: 4px; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); margin-bottom: 20px; border-color: #428bca;\"\r\n            \r\n            class=\"preferred-selection panel panel-primary\">\r\n               <div\r\n                \r\n                style=\"border-top-left-radius: 3px; border-top-right-radius: 3px; padding: 10px 15px; background-color: #428bca; border-color: #428bca; color: #fff;\"\r\n                \r\n                class=\"panel-heading\">\r\n                Secure <abbr title=\"Secure Sockets Layer\">SSL</abbr>/<abbr title=\"Transport Layer Security\">TLS</abbr> Settings\r\n                (Recommended)\r\n              </div>\r\n              <table class=\"table manual_settings_table\" style=\"border-collapse: collapse; border-spacing: 0; margin-bottom: 0; width: 100%; background-color: transparent; max-width: 100%;\">\r\n                  <tr>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" id=\"lblSSLSettingsAreaUsername\">Username:</td>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" id=\"valSSLSettingsAreaUsername\" class=\"data wrap-text\">rick@mavrix.one</td>\r\n                  </tr>\r\n                  <tr>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" id=\"lblSettingsAreaPassword\">Password:</td>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" id=\"valSettingsAreaPassword\" class=\"escape-note\"> Use the email account’s password.</td>\r\n                  </tr>\r\n                  <tr>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" id=\"lblSettingsAreaIncomingServer\">Incoming Server:</td>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" id=\"valSettingsAreaIncomingServer\" class=\"data\">mail.mavrix.one\r\n                          <ul\r\n                          style=\"margin-bottom: 10px; margin-top: 0; list-style: outside none none; margin-left: -5px; padding-left: 0;\"\r\n                          class=\"port_list list-inline\">\r\n                              <li style=\"display: inline-block; padding-left: 5px; padding-right: 5px;\"><abbr title=\"Internet Message Access Protocol\" class=\"initialism\">IMAP</abbr> Port: 993</li>\r\n                              \r\n                              <li style=\"display: inline-block; padding-left: 5px; padding-right: 5px;\"><abbr title=\"Post Office Protocol 3\" class=\"initialism\">POP3</abbr> Port: 995</li>\r\n                              \r\n                          </ul>\r\n                      </td>\r\n                  </tr>\r\n                  \r\n                  <tr>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" id=\"lblSettingsAreaOutgoingServer\">Outgoing Server:</td>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" id=\"valSettingsAreaOutGoingServer\" class=\"data\">mail.mavrix.one\r\n                          <ul\r\n                          style=\"margin-bottom: 10px; margin-top: 0; list-style: outside none none; margin-left: -5px; padding-left: 0;\"\r\n                          class=\"port_list list-inline\">\r\n                              <li style=\"display: inline-block; padding-left: 5px; padding-right: 5px;\"><abbr title=\"Simple Mail Transfer Protocol\">SMTP</abbr> Port: 465</li>\r\n                          </ul>\r\n                      </td>\r\n                  </tr>\r\n                  \r\n                  <tr>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" colspan=\"2\" class=\"notes\">\r\n                                                    \r\n                                                                                <div id=\"lblSettingsAreaSmallNote1\" class=\"small_note\">IMAP, POP3, and SMTP require authentication.</div>\r\n                      </td>\r\n                  </tr>\r\n              </table>\r\n          </div>\r\n         </div>\r\n  \r\n      </div>\r\n        \r\n\r\n        <div class=\"row\" id=\"nonSSL\" style=\"display: none\">\r\n         <div class=\"col-md-6\">\r\n           <div id=\"non_ssl_settings_area\"\r\n            \r\n            style=\"background-color: #fff;  border: 1px solid transparent; border-radius: 4px; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); margin-bottom: 20px; border-color: #f6c342;\"\r\n            \r\n           class=\"panel panel-default panel-warning\">\r\n               <div\r\n                \r\n                style=\"border-top-left-radius: 3px; border-top-right-radius: 3px; padding: 10px 15px; background-color: #fcf8e1; border-color: #f6c342; color: #333;\"\r\n                \r\n                class=\"panel-heading\">\r\n                <span id=\"descNonSSLSettings\" class=\"caption not-recommended\">Non-SSL Settings (NOT Recommended)</span>\r\n              </div>\r\n              <table id=\"tblManualSettingsTable\" class=\"table manual_settings_table\" style=\"border-collapse: collapse; border-spacing: 0; margin-bottom: 0; width: 100%; background-color: transparent; max-width: 100%;\">\r\n                  <tr>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" id=\"lblNonSSLSettingsUsername\">Username:</td>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" id=\"valNonSSLSettingsUsername\" class=\"data wrap-text\">rick@mavrix.one</td>\r\n                  </tr>\r\n                  <tr>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" id=\"lblNonSSLSettingsPassword\">Password:</td>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" id=\"valNonSSLSettingsPassword\" class=\"escape-note\">Use the email account’s password.</td>\r\n                  </tr>\r\n                  <tr>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" id=\"lblNonSSLSettingsIncomingServer\">Incoming Server:</td>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" id=\"valNonSSLSettingsIncomingServer\" class=\"data\">mail.mavrix.one                          <ul\r\n                          style=\"margin-bottom: 10px; margin-top: 0; list-style: outside none none; margin-left: -5px; padding-left: 0;\"\r\n                          class=\"port_list list-inline\">\r\n                              <li style=\"display: inline-block; padding-left: 5px; padding-right: 5px;\"><abbr title=\"Internet Message Access Protocol\" class=\"initialism\">IMAP</abbr> Port: 143</li>\r\n                               \r\n                              <li style=\"display: inline-block; padding-left: 5px; padding-right: 5px;\"><abbr title=\"Post Office Protocol 3\" class=\"initialism\">POP3</abbr> Port: 110</li>\r\n                              \r\n                          </ul>\r\n                      </td>\r\n                  </tr>\r\n                   \r\n                  <tr>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" id=\"NonSSLSettingsOutgoingServer\">Outgoing Server:</td>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" id=\"NonSSLSettingsOutgoingServerData\" class=\"data\">mail.mavrix.one                          <ul\r\n                          style=\"margin-bottom: 10px; margin-top: 0; list-style: outside none none; margin-left: -5px; padding-left: 0;\"\r\n                          class=\"port_list list-inline\">\r\n                              <li style=\"display: inline-block; padding-left: 5px; padding-right: 5px;\"><abbr title=\"Simple Mail Transfer Protocol\">SMTP</abbr> Port: 2525</li>\r\n                          </ul>\r\n                      </td>\r\n                  </tr>\r\n                  \r\n                  <tr>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" colspan=\"2\" class=\"notes\">\r\n                                                    \r\n                                                                                <div id=\"descNonSSLSettingsAuthenticationIsRequiredForIMAPPOP3SMTP1\" class=\"small_note\">IMAP, POP3, and SMTP require authentication.</div>\r\n                      </td>\r\n                  </tr>\r\n              </table>\r\n          </div>\r\n        </div>\r\n      </div>\r\n\r\n    </div><div class=\"section\">\r\n        <h2>Calendar &amp; Contacts Manual Settings</h2>\r\n        <div class=\"row\">\r\n         \r\n         <div class=\"col-md-6\">\r\n          <div style=\"background-color: #fff;  border: 1px solid transparent; border-radius: 4px; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); margin-bottom: 20px; border-color: #428bca;\" class=\"preferred-selection panel panel-primary\">\r\n               <div style=\"border-top-left-radius: 3px; border-top-right-radius: 3px; padding: 10px 15px; background-color: #428bca; border-color: #428bca; color: #fff;\" class=\"panel-heading\">\r\n                Secure <abbr title=\"Secure Sockets Layer\">SSL</abbr>/<abbr title=\"Transport Layer Security\">TLS</abbr> Settings (Recommended).\r\n              </div>\r\n              <table class=\"table manual_settings_table\" style=\"border-collapse: collapse; border-spacing: 0; margin-bottom: 0; width: 100%; background-color: transparent; max-width: 100%;\">\r\n                  <tr>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\">Username:</td>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" class=\"data wrap-text\">rick@mavrix.one</td>\r\n                  </tr>\r\n                  <tr>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\">Password:</td>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" class=\"escape-note\"> Use the email account’s password.</td>\r\n                  </tr>\r\n                  <tr>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\">Server:</td>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" class=\"data\">https://mail.mavrix.one:2080\r\n                          <ul\r\n                          style=\"margin-bottom: 10px; margin-top: 0; list-style: outside none none; margin-left: -5px; padding-left: 0;\"\r\n                          class=\"port_list list-inline\">\r\n                              <li style=\"display: inline-block; padding-left: 5px; padding-right: 5px;\">Port: 2080</li>\r\n                          </ul>\r\n                      </td>\r\n                  </tr>\r\n                  \r\n                  <tr>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\">Full Calendar URL(s):</td>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" class=\"data\">\r\n                          <ul\r\n                          style=\"margin-bottom: 10px; margin-top: 0; list-style: outside none none; margin-left: -5px; padding-left: 0;\"\r\n                          class=\"port_list list-inline\">\r\n                              \r\n                              <li style=\"display: inline-block; padding-left: 5px; padding-right: 5px;\"><b>cPanel CalDAV Calendar</b>:</li>\r\n                              <li style=\"display: inline-block; padding-left: 5px; padding-right: 5px;\">https://mail.mavrix.one:2080/calendars/rick@mavrix.one/calendar</li>\r\n                              \r\n                          </ul>\r\n                      </td>\r\n                  </tr>\r\n                  \r\n                  \r\n                  <tr>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\">Full Contact List URL(s):</td>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" class=\"data\">\r\n                          <ul\r\n                          style=\"margin-bottom: 10px; margin-top: 0; list-style: outside none none; margin-left: -5px; padding-left: 0;\"\r\n                          class=\"port_list list-inline\">\r\n                              \r\n                              <li style=\"display: inline-block; padding-left: 5px; padding-right: 5px;\"><b>cPanel CardDAV Address Book</b>:</li>\r\n                              <li style=\"display: inline-block; padding-left: 5px; padding-right: 5px;\">https://mail.mavrix.one:2080/addressbooks/rick@mavrix.one/addressbook</li>\r\n                              \r\n                          </ul>\r\n                      </td>\r\n                  </tr>\r\n                  \r\n              </table>\r\n          </div>\r\n         </div>\r\n         \r\n         <div class=\"col-md-6\">\r\n          <div style=\"background-color: #fff;  border: 1px solid transparent; border-radius: 4px; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); margin-bottom: 20px; border-color: #f6c342;\" class=\"preferred-selection panel panel-primary\">\r\n               <div style=\"border-top-left-radius: 3px; border-top-right-radius: 3px; padding: 10px 15px; background-color: #fcf8e1; border-color: #f6c342; color: #333;\" class=\"panel-heading\">\r\n                Non-SSL Settings (NOT Recommended).\r\n              </div>\r\n              <table class=\"table manual_settings_table\" style=\"border-collapse: collapse; border-spacing: 0; margin-bottom: 0; width: 100%; background-color: transparent; max-width: 100%;\">\r\n                  <tr>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\">Username:</td>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" class=\"data wrap-text\">rick@mavrix.one</td>\r\n                  </tr>\r\n                  <tr>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\">Password:</td>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" class=\"escape-note\"> Use the email account’s password.</td>\r\n                  </tr>\r\n                  <tr>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\">Server:</td>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" class=\"data\">http://mail.mavrix.one:2079\r\n                          <ul\r\n                          style=\"margin-bottom: 10px; margin-top: 0; list-style: outside none none; margin-left: -5px; padding-left: 0;\"\r\n                          class=\"port_list list-inline\">\r\n                              <li style=\"display: inline-block; padding-left: 5px; padding-right: 5px;\">Port: 2079</li>\r\n                          </ul>\r\n                      </td>\r\n                  </tr>\r\n                  \r\n                  <tr>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\">Full Calendar URL(s):</td>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" class=\"data\">\r\n                          <ul\r\n                          style=\"margin-bottom: 10px; margin-top: 0; list-style: outside none none; margin-left: -5px; padding-left: 0;\"\r\n                          class=\"port_list list-inline\">\r\n                              \r\n                              <li style=\"display: inline-block; padding-left: 5px; padding-right: 5px;\"><b>cPanel CalDAV Calendar</b>:</li>\r\n                              <li style=\"display: inline-block; padding-left: 5px; padding-right: 5px;\">http://mail.mavrix.one:2079/calendars/rick@mavrix.one/calendar</li>\r\n                              \r\n                          </ul>\r\n                      </td>\r\n                  </tr>\r\n                  \r\n                  \r\n                  <tr>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\">Full Contact List URL(s):</td>\r\n                      <td style=\"border-top: 1px solid #ddd; padding: 8px;\" class=\"data\">\r\n                          <ul\r\n                          style=\"margin-bottom: 10px; margin-top: 0; list-style: outside none none; margin-left: -5px; padding-left: 0;\"\r\n                          class=\"port_list list-inline\">\r\n                              \r\n                              <li style=\"display: inline-block; padding-left: 5px; padding-right: 5px;\"><b>cPanel CardDAV Address Book</b>:</li>\r\n                              <li style=\"display: inline-block; padding-left: 5px; padding-right: 5px;\">http://mail.mavrix.one:2079/addressbooks/rick@mavrix.one/addressbook</li>\r\n                              \r\n                          </ul>\r\n                      </td>\r\n                  </tr>\r\n                  \r\n              </table>\r\n          </div>\r\n         </div>\r\n         \r\n        </div>\r\n      </div>\r\n    </div><p>\r\n A .mobileconfig file for use with iOS for iPhone/iPad/iPod and MacOS® Mail.app® for Mountain Lion (10.8+) is attached to this message.\r\n</p>                                                                    </td>\r\n                                                                </tr>\r\n                                                                <tr>\r\n                                                                    <td>\r\n                                                                        <div style=\"font-family:\'Helvetica Neue\',Helvetica,Arial,sans-serif;border-top: 2px solid #E8E8E8; padding-top:5px; margin-top: 5px; font-size:12px; color: #666666;\">\r\n        <p style=\"padding:0 0 0 0; margin: 5px 0 0 0;\">\r\n                  This notice is the result of a request made by a computer with the <abbr title=\"Internet Protocol\">IP</abbr> address of “98.11.193.56” through the “cpanel” service on the server.            </p>\r\n\r\n                        <p style=\"padding:0 0 0 0; margin: 5px 0 0 0;\">\r\n                A reverse <abbr title=\"Domain Name Service\">DNS</abbr> lookup on the remote <abbr title=\"Internet Protocol\">IP</abbr> address returned the host name “syn-098-011-193-056.res.spectrum.com”.            </p>\r\n                <p style=\"padding:0 0 0 0; margin: 5px 0 0 0;\">\r\n                            The remote computer’s location appears to be: United States (US).                    </p>\r\n                                    <p style=\"padding:0 0 0 0; margin: 5px 0 0 0;\">\r\n                  The remote computer’s <abbr title=\"Internet Protocol\">IP</abbr> address is assigned to the provider: “Charter Communications Inc”                </p>\r\n                                        <p style=\"padding:0 0 0 0; margin: 5px 0 0 0;\">\r\n                  The provider supplied the following remarks about the <abbr title=\"Internet Protocol\">IP</abbr> address allocation: “Legacy Time Warner Cable IP Assets”                </p>\r\n            \r\n                     <p style=\"padding:0 0 0 0; margin: 5px 0 0 0;\">\r\n        The system generated this notice on Saturday, April 12, 2025 at 7:55:51 PM UTC.    </p>\r\n</div>                                                                                                                                                   <!-- -->\r\n                                                                        <p>\r\n    Do not reply to this automated message.</p>\r\n                                                                    </td>\r\n                                                                </tr>\r\n                                                            </tbody>\r\n                                                        </table>\r\n\r\n                                                    </td>\r\n                                                    <td width=\"15\">\r\n                                                    </td>\r\n                                                </tr>\r\n                                            </tbody>\r\n                                        </table>\r\n                                    </td>\r\n                                                                    </tr>\r\n                                <tr>\r\n                                    <td align=\"center\" style=\"padding-top: 10px;\">\r\n                                                                            <img src=\"cid:auto_cid_157512637\" height=\"25\" width=\"25\" style=\"border:0;line-height:100%;border:0\" alt=\"cP\">\r\n                                        <p style=\"font-family:\'Helvetica Neue\',Helvetica,Arial,sans-serif;font-size:12px;color:#666666; padding: 0; margin: 0;\">Copyright© 2025 cPanel, L.L.C.<p>\r\n                                                                        </td>\r\n                                </tr>\r\n                            </tbody>\r\n                        </table>\r\n                    </td>\r\n                </tr>\r\n            </tbody>\r\n        </table>\r\n    </div>\r\n</body>','Client Configuration settings for “rick@mavrix.one”.\r\n\r\n\r\nMail Client Manual Settings\r\n---------------------------\r\n\r\nSecure SSL/TLS Settings (Recommended)\r\n\r\nUsername:\r\n\r\nrick@mavrix.one\r\n\r\nPassword:\r\n\r\nUse the email account’s password.\r\n\r\nIncoming Server:\r\n\r\nmail.mavrix.one\r\n\r\n  * IMAP Port: 993\r\n\r\n  * POP3 Port: 995\r\n\r\nOutgoing Server:\r\n\r\nmail.mavrix.one\r\n\r\n  * SMTP Port: 465\r\n\r\nIMAP, POP3, and SMTP require authentication.\r\n\r\nNon-SSL Settings (NOT Recommended)\r\n\r\nUsername:\r\n\r\nrick@mavrix.one\r\n\r\nPassword:\r\n\r\nUse the email account’s password.\r\n\r\nIncoming Server:\r\n\r\nmail.mavrix.one\r\n\r\n  * IMAP Port: 143\r\n\r\n  * POP3 Port: 110\r\n\r\nOutgoing Server:\r\n\r\nmail.mavrix.one\r\n\r\n  * SMTP Port: 2525\r\n\r\nIMAP, POP3, and SMTP require authentication.\r\n\r\n\r\nCalendar & Contacts Manual Settings\r\n-----------------------------------\r\n\r\nSecure SSL/TLS Settings (Recommended).\r\n\r\nUsername:\r\n\r\nrick@mavrix.one\r\n\r\nPassword:\r\n\r\nUse the email account’s password.\r\n\r\nServer:\r\n\r\nhttps://mail.mavrix.one:2080\r\n\r\n  * Port: 2080\r\n\r\nFull Calendar URL(s):\r\n\r\n  * cPanel CalDAV Calendar:\r\n\r\n  * https://mail.mavrix.one:2080/calendars/rick@mavrix.one/calendar\r\n\r\nFull Contact List URL(s):\r\n\r\n  * cPanel CardDAV Address Book:\r\n\r\n  * https://mail.mavrix.one:2080/addressbooks/rick@mavrix.one/addressbook\r\n\r\nNon-SSL Settings (NOT Recommended).\r\n\r\nUsername:\r\n\r\nrick@mavrix.one\r\n\r\nPassword:\r\n\r\nUse the email account’s password.\r\n\r\nServer:\r\n\r\nhttp://mail.mavrix.one:2079\r\n\r\n  * Port: 2079\r\n\r\nFull Calendar URL(s):\r\n\r\n  * cPanel CalDAV Calendar:\r\n\r\n  * http://mail.mavrix.one:2079/calendars/rick@mavrix.one/calendar\r\n\r\nFull Contact List URL(s):\r\n\r\n  * cPanel CardDAV Address Book:\r\n\r\n  * http://mail.mavrix.one:2079/addressbooks/rick@mavrix.one/addressbook\r\n\r\nA .mobileconfig file for use with iOS for iPhone/iPad/iPod and MacOS® Mail.app® for Mountain Lion (10.8+) is attached to this message.\r\n\r\nThis notice is the result of a request made by a computer with the IP address of “98.11.193.56” through the “cpanel” service on the server.\r\n\r\nA reverse DNS lookup on the remote IP address returned the host name “syn-098-011-193-056.res.spectrum.com”.\r\n\r\nThe remote computer’s location appears to be: United States (US).\r\n\r\nThe remote computer’s IP address is assigned to the provider: “Charter Communications Inc”\r\n\r\nThe provider supplied the following remarks about the IP address allocation: “Legacy Time Warner Cable IP Assets”\r\n\r\nThe system generated this notice on Saturday, April 12, 2025 at 7:55:51 PM UTC.\r\n\r\nDo not reply to this automated message.\r\n\r\ncP\r\n\r\nCopyright© 2025 cPanel, L.L.C.',0,0,0,0,0,0,'2025-04-12 19:55:51','2025-12-09 19:02:00','2025-12-09 19:02:00','2025-12-09 19:02:00',NULL,NULL,NULL),
(188,4,'<B994E016-1060-44F8-AAC7-793EB4E4EC63@packetdigital.com>',NULL,NULL,'=?utf-8?Q?Re:_Exploring_Strategic_Partnerships_=E2=80=93_MAVRIX_?= =?utf-8?Q?American_Drone_Consortium?=','terri.zimmerman@packetdigital.com','terri.zimmerman@packetdigital.com','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body dir=\"auto\">Your mission sounds very compelling. I would be interested in hearing more.<div><br id=\"lineBreakAtBeginningOfSignature\"><div dir=\"ltr\">Terri Zimmerman<div>CEO</div><div>Packet Digital LLC</div></div><div dir=\"ltr\"><br><blockquote type=\"cite\">On Apr 15, 2025, at 10:47 AM, Rick &lt;rick@mavrix.one&gt; wrote:<br><br></blockquote></div><blockquote type=\"cite\"><div dir=\"ltr\">﻿\r\n    <style>body { font-family: Helvetica, Arial; font-size: 13px; }</style><div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\"><p class=\"p1\">Hi Terri,</p><p class=\"p1\">I’m reaching out on behalf of MAVRIX — a new U.S.-based consortium focused on building the next generation of American drone companies and suppliers through investment, manufacturing, and long-term collaboration.</p><p class=\"p1\">We’re assembling a group of forward-thinking firms that share a commitment to American-made systems, trusted sourcing, and defense-grade standards — and we’re backing that vision with deep, flexible capital designed to help our partners grow, scale, and lead in this evolving space.</p><p class=\"p1\">We are not a bank and this is not a gimmic. We are a group of American Patriots with access to deep pockets and the desire to leapfrog the competition quickly, bypassing the usual annual SBIR and STTR struggles.</p><p class=\"p1\">I’d welcome a conversation to explore whether there’s alignment and how we might support your growth as part of this mission. Truthfully, we’d love to have your companies (PacketDigita, Badlands Batteries, and Botlink) as a part of the greater consortium!</p><p class=\"p2\">Please let me know what you have available for an initial chat.</p><p class=\"p2\">Thank you!</p></div><div id=\"bloop_sign_1744731700861881088\" class=\"bloop_sign\">\r\n        <title></title>\r\n     \r\n    Rick M.<br><div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div><div><img src=\"cid:Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height: 11px;\" data-unique-identifier=\"\"></div>\r\n     \r\n</div>\r\n\r\n\r\n</div></blockquote></div></body></html>','Your mission sounds very compelling. I would be interested in hearing more.Terri ZimmermanCEOPacket Digital LLCOn Apr 15, 2025, at 10:47 AM, Rick &lt;rick@mavrix.one&gt; wrote:﻿\r\n    body { font-family: Helvetica, Arial; font-size: 13px; }Hi Terri,I’m reaching out on behalf of MAVRIX — a new U.S.-based consortium focused on building the next generation of American drone companies and suppliers through investment, manufacturing, and long-term collaboration.We’re assembling a group of forward-thinking firms that share a commitment to American-made systems, trusted sourcing, and defense-grade standards — and we’re backing that vision with deep, flexible capital designed to help our partners grow, scale, and lead in this evolving space.We are not a bank and this is not a gimmic. We are a group of American Patriots with access to deep pockets and the desire to leapfrog the competition quickly, bypassing the usual annual SBIR and STTR struggles.I’d welcome a conversation to explore whether there’s alignment and how we might support your growth as part of this mission. Truthfully, we’d love to have your companies (PacketDigita, Badlands Batteries, and Botlink) as a part of the greater consortium!Please let me know what you have available for an initial chat.Thank you!\r\n        \r\n     \r\n    Rick M.https://mavrix.one\r\n     \r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-04-15 22:32:14','2025-12-09 19:02:00','2025-12-09 19:02:00','2025-12-09 19:02:00',NULL,NULL,NULL),
(189,4,' <BN8P111MB21271D20636BB11A7973C299D3BDA@BN8P111MB2127.NAMP111.PROD.OUTLOOK.COM>',NULL,NULL,'FW: Last Call to RSVP for Tactical Innovation Symposium and West Point Projects Day!','paul.r.shorkey-chacon.mil@army.mil','\"Shorkey-Chacon, Paul R CPT USARMY 1 ID 2 ABCT (USA)\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:11.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:#467886;\r\n	text-decoration:underline;}\r\nspan.EmailStyle19\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\">From:</span></b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\"> Aliperti, Christopher C CPT &lt;christopher.aliperti@westpoint.edu&gt;\r\n<br>\r\n<b>Sent:</b> Tuesday, April 15, 2025 12:41 PM<br>\r\n<b>To:</b> Cooper, Shawn P MAJ USARMY (USA) &lt;shawn.p.cooper7.mil@army.mil&gt;; DragonInnovations &lt;dragoninnovations@army.mil&gt;; Coutu, Christopher D MAJ USARMY NG CTARNG (USA) &lt;christopher.d.coutu.mil@army.mil&gt;; DiNatale, James A MAJ USARMY I CORPS (USA) &lt;james.a.dinatale.mil@army.mil&gt;;\r\n Archuleta, Matthew J MAJ USARMY NG CTARNG (USA) &lt;matthew.j.archuleta.mil@army.mil&gt;; Allen, Terrence J 1LT USARMY 82 ABN DIV (USA) &lt;terrence.j.allen.mil@army.mil&gt;; Hunter, Madison N CPT USARMY 513 MI BDE (USA) &lt;madison.n.hunter2.mil@army.mil&gt;; Simoes, Hunter\r\n A 1LT USARMY 101 ABN DIVARTY (USA) &lt;hunter.a.simoes.mil@army.mil&gt;; Roehrich, Gregory J CIV USARMY DEVCOM AC (USA) &lt;gregory.j.roehrich.civ@army.mil&gt;; Mcdonough, Nicholas J CPT USARMY 101 ABN DIV 1 BCT (USA &lt;nicholas.j.mcdonough.mil@army.mil&gt;; Lawson, Eden Elizabeth\r\n CPT USARMY 101 ABN DIV (USA) &lt;eden.e.lawson.mil@army.mil&gt;; Rose, Denett R CIV USARMY DEVCOM C5ISR (USA) &lt;denett.r.rose.civ@army.mil&gt;; Shannon, James A CIV USARMY DEVCOM C5ISR (USA) &lt;james.a.shannon.civ@army.mil&gt;; Shutt, Brenden M 1LT USARMY 3 ID (USA) &lt;brenden.m.shutt.mil@army.mil&gt;;\r\n Abraham, Ani CIV USARMY AFC DOI (USA) &lt;ani.abraham.civ@army.mil&gt;; Lee, David Y CIV USARMY DEVCOM AC (USA) &lt;david.y.lee.civ@army.mil&gt;; Connors, Christopher C CTR USARMY DEVCOM ARL (USA) &lt;christopher.c.connors.ctr@army.mil&gt;; Moore, Mallory E 1LT USARMY 3 ID\r\n (USA) &lt;mallory.e.moore3.mil@army.mil&gt;; Pollin, Mary Grace CPT USARMY 513 MI BDE (USA) &lt;mary.g.pollin.mil@army.mil&gt;; Decostanza, Arwen H CIV USARMY DEVCOM ARL (USA) &lt;arwen.h.decostanza.civ@army.mil&gt;; Johnston, Mark L COL USARMY 1SFC (USA) &lt;mark.l.johnston6.mil@army.mil&gt;;\r\n Tinker, Michael C LTC USARMY SOCOM HQ SOCOM (USA) &lt;michael.c.tinker2.mil@army.mil&gt;; Padgett, Jock B HQE (USA &lt;jock.b.padgett.civ@army.mil&gt;; Linnemann, Randall A COL USARMY (USA) &lt;randall.a.linnemann.mil@army.mil&gt;; Taylor, Madelyn G CPT USARMY ENGINEER SCHL\r\n (USA) &lt;madelyn.g.taylor3.mil@army.mil&gt;; Bradford, Jacob C SGT USARMY XVIII ABN CORPS (USA) &lt;jacob.c.bradford2.mil@army.mil&gt;; Costa, Joel Andrew MAJ USARMY 2 SFA BDE (USA) &lt;joel.a.costa.mil@army.mil&gt;; Hudson, Jesse J CPT USARMY 20 ENG BDE (USA) &lt;jesse.j.hudson8.mil@army.mil&gt;;\r\n Davis, Albert W COL USARMY ASC 406 AFSB (USA) &lt;albert.w.davis.mil@army.mil&gt;; Shelden, Dennis L COL USARMY 3 ESC (USA) &lt;dennis.l.shelden.mil@army.mil&gt;; Flournoy, Christopher M CPT USARMY 3 ID (USA) &lt;christopher.m.flournoy2.mil@army.mil&gt;; Wiggins, Dustin A MAJ\r\n USARMY 86 TSD (USA) &lt;dustin.a.wiggins.mil@army.mil&gt;; Blane, Janice T LTC USARMY 1 MDTF (USA) &lt;janice.t.blane.mil@army.mil&gt;; Fuentes, Richard J SFC USARMY (USA) &lt;richard.j.fuentes2.mil@army.mil&gt;; Hinds, Jason F MAJ USARMY 25 ID (USA) &lt;jason.f.hinds.mil@army.mil&gt;;\r\n Marquez, Coral B 1LT USARMY 25 ID 2 IBCT (USA) &lt;coral.b.marquez.mil@army.mil&gt;; Reeve, Mickey I Jr SSG USARMY FUTURES COMMAND (USA) &lt;mickey.i.reeve.mil@army.mil&gt;; Rykowski, Joshua Brandon (Josh) LTC USARMY HRC (USA &lt;joshua.b.rykowski.mil@army.mil&gt;; Tracy, Clint\r\n E COL USARMY III CORPS (USA &lt;clint.e.tracy.mil@army.mil&gt;; Backscheider, Justin E CPT USARMY 316 ESC (USA) &lt;justin.e.backscheider.mil@army.mil&gt;; Thompson, Adam T LTC USARMY 4 ID (USA) &lt;adam.t.thompson2.mil@army.mil&gt;; Wright, Michael A (Mike) MAJ USARMY I CORPS\r\n (USA) &lt;michael.a.wright4.mil@army.mil&gt;; Quinn, Sean T MAJ USARMY 1 MDTF (USA) &lt;sean.t.quinn10.mil@army.mil&gt;; Moore, Daniel Robert CIV USARMY DEVCOM AMERICAS (USA) &lt;daniel.r.moore5.civ@army.mil&gt;; jwhiteaker.ctr@nsin.mil; dakota.belcher@afwerx.af.mil; Driver,\r\n Shawn L MAJ USARMY AFC DOI (USA) &lt;shawn.l.driver.mil@army.mil&gt;; Royal, Rickey B Jr MAJ USARMY AFC AAL (USA) &lt;rickey.b.royal.mil@army.mil&gt;; Dionisio, Robert A CIV USARMY DEVCOM AC (USA) &lt;robert.a.dionisio.civ@army.mil&gt;; Clowes, Ian W LTC USARMY XVIII ABN CORPS\r\n (USA) &lt;ian.w.clowes.mil@army.mil&gt;; Moody, Steven S MAJ USARMY XVIII ABN CORPS (USA) &lt;steven.s.moody.mil@army.mil&gt;; Fitton, Jeffrey James CIV USARMY USAG (USA) &lt;jeffrey.j.fitton.civ@army.mil&gt;; Marne Innovation Center &lt;marneinnovationcenter@army.mil&gt;; abeatty.ctr@nsin.mil;\r\n Mountain Innovation &lt;mountaininnovation@army.mil&gt;; 82D Innovations &lt;82dinnovations@army.mil&gt;; Airborne Innovation Lab &lt;airborneinnovationlab@army.mil&gt;; bborger@cmi2.org; djordan@cmi2.org; Johnson, Adam Griffan CPT USARMY (USA) &lt;adam.g.johnson21.mil@army.mil&gt;;\r\n Smart, Kellie A 1LT USARMY AVNCOE (USA) &lt;kellie.a.smart.mil@army.mil&gt;; EagleWERX ATIC (Operations) &lt;eaglewerxatic@army.mil&gt;; 3rdESCSpearsInnovation@army.mil; 7TBXInnovation@army.mil; SteelInnovation@army.mil; 20thENBDEInnovationsTeam@army.mil; 35th CSB_Innovation_Team\r\n &lt;35thCSB_Innovation_Team@army.mil&gt;; DragonMedicInnovations &lt;DragonMedicInnovations@army.mil&gt;; 261STInnovationCell@army.mil; 525E-MIBInnovation@army.mil; USARMY Schofield Barracks 25 ID Mailbox Lightning Labs Innovations Mailbox &lt;usarmy.schofield.25-id.mbx.lightning-labs-innovations-mailbox@army.mil&gt;;\r\n Doane, Wise M CPT USARMY SOCOM HQ SOCOM (USA) &lt;wise.m.doane.mil@army.mil&gt;; USARMY Shaw AFB USARCENT Mailbox TF39 &lt;usarmy.shaw.usarcent.mbx.tf39@army.mil&gt;; Edwards, Jonathan I GySgt USMC (USA) &lt;jonathan.edwards@socom.mil&gt;; Vermillion, Connor J CPT USARMY 82\r\n ABN DIV (USA) &lt;connor.j.vermillion.mil@army.mil&gt;; Ortiz, Michael A. SFC USSOCOM USASOC (USA &lt;michael.andrew.ortiz@socom.mil&gt;; Humphries, Samuel S CPT USARMY 173 ABN BDE (USA) &lt;samuel.s.humphries.mil@army.mil&gt;; ronald.l.reusch.ctr@army.mil; Mitch Kusmier &lt;mkusmier@cmi2.org&gt;;\r\n Al Husseini, Mahdi CPT USARMY MEDICAL COE (USA) &lt;mahdi.alhusseini.mil@army.mil&gt;; Massey, Scott D MAJ USARMY NG SCARNG (USA) &lt;scott.d.massey.mil@army.mil&gt;; Miltenberger, Mark D CIV USARMY DEVCOM ARL (USA) &lt;mark.d.miltenberger.civ@army.mil&gt;; sezz@cmi2.org; Chopra,\r\n Manpreet CIV USARMY DEVCOM AC (USA) &lt;manpreet.chopra.civ@army.mil&gt;; Keys, Omar J SFC USARMY USSOCOM USASOC (USA) &lt;omar.j.keys.mil@socom.mil&gt;; Hicks, Ricky R Jr CW3 USARMY FORSCOM (USA) &lt;ricky.r.hicks.mil@army.mil&gt;; Fink, Joseph T CPT USARMY (USA) &lt;joseph.t.fink2.mil@army.mil&gt;;\r\n Nessler, Patrick J CPT USARMY 10 MTN DIV 1 BCT (USA) &lt;patrick.j.nessler.mil@army.mil&gt;; rleach@cmi2.org; benjamin.e.schiff.mil@swf.army.mil; james.b.cho.mil@swf.army.mil; Young, Rodney J CIV USARMY DEVCOM C5ISR (USA) &lt;rodney.j.young18.civ@army.mil&gt;; Rodriguez,\r\n Carlos CPT USARMY 3 ID (USA &lt;carlos.rodriguez432.mil@army.mil&gt;; Hudson, Jesse J CPT USARMY 20 ENG BDE (USA) &lt;jesse.j.hudson8.mil@army.mil&gt;; Saling, Kristin C (Kris) COL USARMY HQDA ASA MRA (USA) &lt;kristin.c.saling.mil@army.mil&gt;; McVay, Robert C (Clay) COL USARMY\r\n AFC AAL (USA) &lt;robert.c.mcvay.mil@army.mil&gt;; Saptarsi Bandyopadhyay (CTR &lt;sbandy.ctr@nsin.mil&gt;; David Skinner (CIV &lt;dskinner@nsin.mil&gt;; Blatherwick, Donovan R MAJ USARMY 3 ID (USA) &lt;donovan.r.blatherwick.mil@army.mil&gt;; Fitzgerald, Michael C MAJ USARMY 10 MTN\r\n DIV (USA) &lt;michael.c.fitzgerald22.mil@army.mil&gt;; Fera, Anthony J LTC USARMY USAJFKSWCS (USA) &lt;anthony.j.fera.mil@army.mil&gt;; Quach, Gary T MAJ USARMY 82 ABN DIV (USA &lt;gary.t.quach.mil@army.mil&gt;; Fossett, Darren J CPT USARMY 82 ABN DIV (USA) &lt;darren.j.fossett.mil@army.mil&gt;;\r\n Miller, Zachary Steven (Zac) LTC USARMY USACC (USA) &lt;zachary.s.miller36.mil@army.mil&gt;; Portee, Alicia S CPT USARMY (USA) &lt;alicia.s.portee.mil@army.mil&gt;; Dunphy, Colin S MAJ USARMY 7 TRANS BDE-X (USA) &lt;colin.s.dunphy.mil@army.mil&gt;; Thompson, Douglas W III CPT\r\n USARMY 16 MP BDE (USA) &lt;douglas.w.thompson50.mil@army.mil&gt;; Wiggins, Dustin A MAJ USARMY 86 TSD (USA) &lt;dustin.a.wiggins.mil@army.mil&gt;; Turbyfill, Joshua R CPT USARMY NGIC (USA) &lt;joshua.r.turbyfill2.mil@army.mil&gt;; Hudson, Jesse J CPT USARMY 20 ENG BDE (USA)\r\n &lt;jesse.j.hudson8.mil@army.mil&gt;; Madsen, Eric S CSM USARMY 101 ABN DIV 2 BCT (USA) &lt;eric.s.madsen.mil@army.mil&gt;; Landes, Russell I CPT USARMY 35 SIG BDE (USA &lt;russell.i.landes.mil@army.mil&gt;; Owens, Sylvester L (Sly) II CW3 USARMY 335 SIG CMD (USA) &lt;sylvester.l.owens.mil@army.mil&gt;;\r\n Iraola, Jaime J CW3 USARMY 35 SIG BDE (USA) &lt;jaime.j.iraola.mil@army.mil&gt;; Bryant, Anson L MAJ USARMY 95 CA BDE (USA) &lt;anson.l.bryant.mil@army.mil&gt;; Davis, Jermine R SFC USARMY 44 MED BDE (USA) &lt;jermine.r.davis.mil@army.mil&gt;; Chierichella, Marissa F LTC USARMY\r\n XVIII ABN CORPS (USA) &lt;marissa.f.chierichella.mil@army.mil&gt;; Smartfain, Omseti A CPT USARMY (USA) &lt;omseti.a.smartfain.mil@army.mil&gt;; Bray, Davina C SGT USARMY 470 MI BDE (USA) &lt;davina.c.bray.mil@army.mil&gt;; Nunez, Roberto LTC USARMY I CORPS (USA) &lt;roberto.nunez.mil@army.mil&gt;;\r\n Bailey, Brad F CPT USARMY III CORPS (USA) &lt;brad.f.bailey.mil@army.mil&gt;; McMillan, Justin S LTC USARMY 1 AD (USA) &lt;justin.s.mcmillan.mil@army.mil&gt;; Farnsworth, Andrew P CW2 USARMY 1 AD (USA) &lt;andrew.p.farnsworth.mil@army.mil&gt;; Farnsworth, Andrew P CW2 USARMY\r\n 1 AD (USA) &lt;andrew.p.farnsworth.mil@army.mil&gt;; Kezele, William A II CPT USARMY 1 ID 1 HBCT (USA) &lt;william.a.kezele.mil@army.mil&gt;; Capehart, Sean M CPT USARMY 71 EOD (USA) &lt;sean.m.capehart.mil@army.mil&gt;; Hackett, Donald S (Don) LTC USARMY V CORPS (USA) &lt;donald.s.hackett.mil@army.mil&gt;;\r\n Hofmaier, Andrew P CIV USARMY DEVCOM PAC (USA &lt;andrew.p.hofmaier.civ@army.mil&gt;; Tellez, Gilberto M MAJ USARMY I CORPS (USA) &lt;gilberto.m.tellez.mil@army.mil&gt;; Tracy, Jonathan W CPT USARMY 1 CD DIVARTY (USA &lt;jonathan.w.tracy6.mil@army.mil&gt;; Skidmore, Tyler A\r\n 1LT USARMY XVIII ABN CORPS (USA) &lt;tyler.a.skidmore2.mil@army.mil&gt;; Warne, Russell T CIV USARMY HQDA ARI (USA) &lt;russell.t.warne.civ@army.mil&gt;; Naber, Andrew Michael CIV (USA) &lt;andrew.m.naber.civ@army.mil&gt;; Tomczyk, Cameron J 1LT USARMY 10 MTN DIV 1 BCT (USA\r\n &lt;cameron.j.tomczyk.mil@army.mil&gt;; Payne, Travis J LTC USARMY FIRST ARMY DIVEAST (USA) &lt;travis.j.payne10.mil@army.mil&gt;; Morelli, John M 1LT USARMY 4 CAV BDE (USA) &lt;john.m.morelli.mil@army.mil&gt;; Girvin, Michael T COL USARMY NG PAARNG (USA) &lt;michael.t.girvin.mil@army.mil&gt;;\r\n James Clevenger &lt;jclevenger@cmi2.org&gt;; Weymiller, Alexander J CPT USARMY USSOCOM USASOC (USA) &lt;alexander.j.weymiller.mil@socom.mil&gt;; Shea, Patrick I 1LT USARMY (USA) &lt;patrick.i.shea.mil@army.mil&gt;; Coker, Byron &lt;Byron.Coker@gtri.gatech.edu&gt;; Weaver, Dennis\r\n J COL USARMY III CORPS (USA) &lt;dennis.j.weaver2.mil@army.mil&gt;; Blond, Kyle &lt;Kyle.Blond@gtri.gatech.edu&gt;; Chang, Andrew B. &lt;Andrew.Chang@gtri.gatech.edu&gt;; Shah, Aanand V CPT USARMY USAREUR-AF (USA) &lt;aanand.v.shah.mil@army.mil&gt;; Hardy, Edmond A (Ed) COL USARMY\r\n I CORPS (USA) &lt;edmond.a.hardy.mil@army.mil&gt;; Martin, Paul D SGT USARMY NG MAARNG (USA) &lt;paul.d.martin107.mil@army.mil&gt;; Rounds, Thomas G CPT USARMY 7 ENG BDE (USA) &lt;thomas.g.rounds.mil@army.mil&gt;; Jonathon Morgan &lt;jonathon.morgan16@gmail.com&gt;; Bailey, Brad\r\n F CPT USARMY III CORPS (USA) &lt;brad.f.bailey.mil@army.mil&gt;; Shorkey-Chacon, Paul R CPT USARMY 1 ID 2 ABCT (USA) &lt;paul.r.shorkey-chacon.mil@army.mil&gt;; Cea, Brandon 1LT USARMY CYBER SCHL (USA) &lt;brandon.cea.mil@army.mil&gt;; Bryant, Anson L MAJ USARMY 95 CA BDE (USA)\r\n &lt;anson.l.bryant.mil@army.mil&gt;; EagleWERX ATIC (Operations) &lt;eaglewerxatic@army.mil&gt;; Hill, Matthew D CPT USARMY 18 FA BDE (USA) &lt;matthew.d.hill6.mil@army.mil&gt;; Hudson, Jesse J CPT USARMY 20 ENG BDE (USA) &lt;jesse.j.hudson8.mil@army.mil&gt;; Lasley, Daniel D MAJ\r\n USARMY 16 MP BDE (USA) &lt;daniel.d.lasley.mil@army.mil&gt;; Marne Innovation Center &lt;marneinnovationcenter@army.mil&gt;; Mountain Innovation &lt;mountaininnovation@army.mil&gt;; Pereira, Robert J CPT USARMY 1 CD 1 ABCT (USA) &lt;robert.j.pereira4.mil@army.mil&gt;; Thompson, Douglas\r\n W III CPT USARMY 16 MP BDE (USA) &lt;douglas.w.thompson50.mil@army.mil&gt;; Stacey Kessler &lt;stacey@mobilizevision.com&gt;; Hickey, Benita A CIV USAF AFLCMC ISR (USA) &lt;benita.hickey@us.af.mil&gt;; Breyer, Jay J CIV USAF AFLCMC (USA) &lt;jay.breyer@us.af.mil&gt;; Logan, Vernon\r\n V LTC USARMY SETAF-AF (USA) &lt;vernon.v.logan.mil@army.mil&gt;; Hunter, Madison N CPT USARMY 513 MI BDE (USA) &lt;madison.n.hunter2.mil@army.mil&gt;; Becker, Joshua M CW3 USARMY 207 MI BDE (USA) &lt;joshua.m.becker.mil@army.mil&gt;; Edwards, Jonathan I GySgt USMC (USA) &lt;jonathan.edwards@socom.mil&gt;;\r\n 513th Intelligence Data Solutions Group &lt;513th_Innovation@army.mil&gt;; USARMY Shaw AFB USARCENT Mailbox TF39 &lt;usarmy.shaw.usarcent.mbx.tf39@army.mil&gt;; DragonInnovations &lt;dragoninnovations@army.mil&gt;; USARMY Ft Bragg XVIII ABN Corps Mailbox dat &lt;usarmy.liberty.xviiith-abn-corps.mbx.dat@army.mil&gt;;\r\n Marne Innovation Center &lt;marneinnovationcenter@army.mil&gt;; Mountain Innovation &lt;mountaininnovation@army.mil&gt;; 82D Innovations &lt;82dinnovations@army.mil&gt;; Airborne Innovation Lab &lt;airborneinnovationlab@army.mil&gt;; EagleWERX ATIC (Operations) &lt;eaglewerxatic@army.mil&gt;;\r\n 3rdESCSpearsInnovation@army.mil; 7TBXInnovation@army.mil; 20thENBDEInnovationsTeam@army.mil; 35th CSB_Innovation_Team &lt;35thCSB_Innovation_Team@army.mil&gt;; DragonMedicInnovations &lt;DragonMedicInnovations@army.mil&gt;; 261STInnovationCell@army.mil; 525E-MIBInnovation@army.mil;\r\n USARMY Schofield Barracks 25 ID Mailbox Lightning Labs Innovations Mailbox &lt;usarmy.schofield.25-id.mbx.lightning-labs-innovations-mailbox@army.mil&gt;; Linnemann, Randall A COL USARMY (USA) &lt;randall.a.linnemann.mil@army.mil&gt;; Wilder, William R SFC USARMY XVIII\r\n ABN CORPS (USA) &lt;william.r.wilder10.mil@army.mil&gt;; Vazquez, Daniel P MAJ USARMY (USA) &lt;daniel.p.vazquez.mil@army.mil&gt;; Skidmore, Tyler A 1LT USARMY XVIII ABN CORPS (USA) &lt;tyler.a.skidmore2.mil@army.mil&gt;; Blatherwick, Donovan R MAJ USARMY 3 ID (USA) &lt;donovan.r.blatherwick.mil@army.mil&gt;;\r\n Flournoy, Christopher M CPT USARMY 3 ID (USA) &lt;christopher.m.flournoy2.mil@army.mil&gt;; Moore, Mallory E 1LT USARMY 3 ID (USA) &lt;mallory.e.moore3.mil@army.mil&gt;; Fitzgerald, Michael C MAJ USARMY 10 MTN DIV (USA) &lt;michael.c.fitzgerald22.mil@army.mil&gt;; Fink, Joseph\r\n T CPT USARMY (USA) &lt;joseph.t.fink2.mil@army.mil&gt;; Fera, Anthony J LTC USARMY USAJFKSWCS (USA) &lt;anthony.j.fera.mil@army.mil&gt;; Quach, Gary T MAJ USARMY 82 ABN DIV (USA) &lt;gary.t.quach.mil@army.mil&gt;; Allen, Terrence J 1LT USARMY 82 ABN DIV (USA) &lt;terrence.j.allen.mil@army.mil&gt;;\r\n Fossett, Darren J CPT USARMY 82 ABN DIV (USA) &lt;darren.j.fossett.mil@army.mil&gt;; Lawson, Eden Elizabeth CPT USARMY 101 ABN DIV (USA) &lt;eden.e.lawson.mil@army.mil&gt;; scott.p.noon.mil@army.mil; Miller, Zachary Steven (Zac) LTC USARMY USACC (USA) &lt;zachary.s.miller36.mil@army.mil&gt;;\r\n Portee, Alicia S CPT USARMY (USA) &lt;alicia.s.portee.mil@army.mil&gt;; Dunphy, Colin S MAJ USARMY 7 TRANS BDE-X (USA) &lt;colin.s.dunphy.mil@army.mil&gt;; phillip.m.carswell.mil@army.mil; Escobar, John CPT USARMY TRADOC (USA) &lt;john.escobar13.mil@army.mil&gt;; Thompson,\r\n Douglas W III CPT USARMY 16 MP BDE (USA) &lt;douglas.w.thompson50.mil@army.mil&gt;; Wiggins, Dustin A MAJ USARMY 86 TSD (USA) &lt;dustin.a.wiggins.mil@army.mil&gt;; Turbyfill, Joshua R CPT USARMY NGIC (USA) &lt;joshua.r.turbyfill2.mil@army.mil&gt;; joshua.e.greenberg.mil@army.mil;\r\n Hudson, Jesse J CPT USARMY 20 ENG BDE (USA) &lt;jesse.j.hudson8.mil@army.mil&gt;; Madsen, Eric S CSM USARMY 101 ABN DIV 2 BCT (USA) &lt;eric.s.madsen.mil@army.mil&gt;; russell.i.landes.mil@army.mil; Owens, Sylvester L (Sly) II CW3 USARMY 335 SIG CMD (USA) &lt;sylvester.l.owens.mil@army.mil&gt;;\r\n Iraola, Jaime J CW3 USARMY 35 SIG BDE (USA) &lt;jaime.j.iraola.mil@army.mil&gt;; Munoz vega, Joselyn CW2 USARMY 35 SIG BDE (USA) &lt;joselyn.munozvega.mil@army.mil&gt;; melissa.b.reisterhartsell.mil@army.mil; Bryant, Anson L MAJ USARMY 95 CA BDE (USA) &lt;anson.l.bryant.mil@army.mil&gt;;\r\n Davis, Jermine R SFC USARMY 44 MED BDE (USA) &lt;jermine.r.davis.mil@army.mil&gt;; Chierichella, Marissa F LTC USARMY XVIII ABN CORPS (USA) &lt;marissa.f.chierichella.mil@army.mil&gt;; Smartfain, Omseti A CPT USARMY (USA) &lt;omseti.a.smartfain.mil@army.mil&gt;; Bray, Davina\r\n C SGT USARMY 470 MI BDE (USA) &lt;davina.c.bray.mil@army.mil&gt;; Hinds, Jason F MAJ USARMY 25 ID (USA) &lt;jason.f.hinds.mil@army.mil&gt;; Marquez, Coral B 1LT USARMY 25 ID 2 IBCT (USA) &lt;coral.b.marquez.mil@army.mil&gt;; Tracy, Jonathan W CPT USARMY 1 CD DIVARTY (USA) &lt;jonathan.w.tracy6.mil@army.mil&gt;;\r\n Bailey, Brad F CPT USARMY III CORPS (USA) &lt;brad.f.bailey.mil@army.mil&gt;; Backscheider, Justin E CPT USARMY 316 ESC (USA) &lt;justin.e.backscheider.mil@army.mil&gt;; McMillan, Justin S LTC USARMY 1 AD (USA) &lt;justin.s.mcmillan.mil@army.mil&gt;; Farnsworth, Andrew P CW2\r\n USARMY 1 AD (USA) &lt;andrew.p.farnsworth.mil@army.mil&gt;; Overstake, Aaron M MAJ USARMY 1 CD SUST BDE (USA) &lt;aaron.m.overstake.mil@army.mil&gt;; Kezele, William A II CPT USARMY 1 ID 1 HBCT (USA) &lt;william.a.kezele.mil@army.mil&gt;; Thompson, Adam T LTC USARMY 4 ID (USA)\r\n &lt;adam.t.thompson2.mil@army.mil&gt;; Capehart, Sean M CPT USARMY 71 EOD (USA) &lt;sean.m.capehart.mil@army.mil&gt;; Hackett, Donald S (Don) LTC USARMY V CORPS (USA) &lt;donald.s.hackett.mil@army.mil&gt;; Johnston, Mark L COL USARMY 1SFC (USA) &lt;mark.l.johnston6.mil@army.mil&gt;;\r\n Tinker, Michael C LTC USARMY SOCOM HQ SOCOM (USA) &lt;michael.c.tinker2.mil@army.mil&gt;; Reeve, Mickey I Jr SSG USARMY FUTURES COMMAND (USA) &lt;mickey.i.reeve.mil@army.mil&gt;; Wright, Michael A (Mike) MAJ USARMY I CORPS (USA) &lt;michael.a.wright4.mil@army.mil&gt;; Quinn,\r\n Sean T MAJ USARMY 1 MDTF (USA) &lt;sean.t.quinn10.mil@army.mil&gt;; Coutu, Christopher D MAJ USARMY NG CTARNG (USA) &lt;christopher.d.coutu.mil@army.mil&gt;; Randy Emert &lt;remert@cmi2.org&gt;; Saldutti, Robert L Jr 1LT USARMY 3 ID (USA) &lt;robert.l.saldutti2.mil@army.mil&gt;;\r\n Hoover, Matthew F 1LT USARMY 4 ID 2 IBCT (USA) &lt;matthew.f.hoover2.mil@army.mil&gt;; Deboskey, Mitchel D 1LT USARMY (USA) &lt;mitchel.d.deboskey.mil@army.mil&gt;; Tawson, Joshua C CPT USARMY 101 ABN DIV 3 BCT (USA) &lt;joshua.c.tawson.mil@army.mil&gt;; Hickey, Benita A CIV\r\n USAF AFLCMC ISR (USA) &lt;benita.hickey@us.af.mil&gt;; Allen, Terrence J 1LT USARMY 82 ABN DIV (USA) &lt;terrence.j.allen.mil@army.mil&gt;; Smith, William Darrell III CIV USARMY PEO SOLDIER (USA) &lt;william.d.smith924.civ@army.mil&gt;; Girvin, Michael T COL USARMY NG PAARNG\r\n (USA) &lt;michael.t.girvin.mil@army.mil&gt;; Hill, Aaron T COL &lt;aaron.hill@westpoint.edu&gt;; Patel, Kush A Cpl USMC (USA) &lt;kush.patel@usmc.mil&gt;; Lawson, Eden Elizabeth CPT USARMY 101 ABN DIV (USA) &lt;eden.e.lawson.mil@army.mil&gt;; Blomquist, Andrew C CPT USARMY 101 ABN\r\n DIV 2 BCT (USA) &lt;andrew.c.blomquist.mil@army.mil&gt;; Shah, Aanand V CPT USARMY USAREUR-AF (USA) &lt;Aanand.v.shah.mil@army.mil&gt;; Jackson, Thomas CW4 &lt;thomas.jackson@westpoint.edu&gt;; Breyer, Jay J CIV USAF AFLCMC (USA) &lt;jay.breyer@us.af.mil&gt;; Breyer, Jay J CIV USAF\r\n AFLCMC (USA) &lt;jay.breyer@us.af.mil&gt;; erik.kast@afwerx.af.mil; Harwell, Kyle W CIV USARMY HQDA ARI (USA) &lt;kyle.w.harwell.civ@army.mil&gt;; kyle.blond@gtri.gatech.edu; Mitchell, Paul B Sgt USMC (USA) &lt;paul.b.mitchell@usmc.mil&gt;; Browning, Zachary P CPT USARMY 82\r\n ABN DIV 3 BCT (USA) &lt;zachary.p.browning.mil@army.mil&gt;; Moore, Mallory E 1LT USARMY 3 ID (USA) &lt;mallory.e.moore3.mil@army.mil&gt;; Gasparri, Vincent A 1LT USARMY (USA) &lt;vincent.a.gasparri.mil@army.mil&gt;; Clowes, Ian W LTC USARMY XVIII ABN CORPS (USA) &lt;ian.w.clowes.mil@army.mil&gt;;\r\n DiNatale, James A MAJ USARMY I CORPS (USA) &lt;james.a.dinatale.mil@army.mil&gt;; Vigneault, Nathaniel J Maj USMC MARFORRES (USA) &lt;nathaniel.vignea.mil@usmc.mil&gt;; Kleiber, Thomas A Maj USMC HQMC (USA) &lt;thomas.kleiber@usmc.mil&gt;; michael.j.dolan10.ctr@army.mil; michael.j.dolan10.ctr@army.mil;\r\n Miltenberger, Mark D CIV USARMY DEVCOM ARL (USA) &lt;mark.d.miltenberger.civ@army.mil&gt;; michael.j.dolan10.ctr@army.mil; euzmann@cmi2.org; Simoes, Hunter A 1LT USARMY 101 ABN DIVARTY (USA) &lt;hunter.a.simoes.mil@army.mil&gt;; Naber, Andrew Michael CIV (USA) &lt;andrew.m.naber.civ@army.mil&gt;;\r\n Schlegel, Jeremy A SGM &lt;jeremy.schlegel@westpoint.edu&gt;; Fuentes, Richard J SFC USARMY (USA) &lt;richard.j.fuentes2.mil@army.mil&gt;; Reeve, Mickey I Jr SSG USARMY FUTURES COMMAND (USA) &lt;mickey.i.reeve.mil@army.mil&gt;; Linnemann, Randall A COL USARMY (USA) &lt;randall.a.linnemann.mil@army.mil&gt;;\r\n Wilder, William R SFC USARMY XVIII ABN CORPS (USA) &lt;william.r.wilder10.mil@army.mil&gt;; Skidmore, Tyler A 1LT USARMY XVIII ABN CORPS (USA) &lt;tyler.a.skidmore2.mil@army.mil&gt;; Blatherwick, Donovan R MAJ USARMY 3 ID (USA) &lt;donovan.r.blatherwick.mil@army.mil&gt;; Flournoy,\r\n Christopher M CPT USARMY 3 ID (USA) &lt;christopher.m.flournoy2.mil@army.mil&gt;; Moore, Mallory E 1LT USARMY 3 ID (USA) &lt;mallory.e.moore3.mil@army.mil&gt;; Fitzgerald, Michael C MAJ USARMY 10 MTN DIV (USA) &lt;michael.c.fitzgerald22.mil@army.mil&gt;; Fink, Joseph T CPT\r\n USARMY (USA) &lt;joseph.t.fink2.mil@army.mil&gt;; Fera, Anthony J LTC USARMY USAJFKSWCS (USA) &lt;anthony.j.fera.mil@army.mil&gt;; gary.t.quach.mil@army.mil; Allen, Terrence J 1LT USARMY 82 ABN DIV (USA) &lt;terrence.j.allen.mil@army.mil&gt;; Fossett, Darren J CPT USARMY 82\r\n ABN DIV (USA) &lt;darren.j.fossett.mil@army.mil&gt;; Lawson, Eden Elizabeth CPT USARMY 101 ABN DIV (USA) &lt;eden.e.lawson.mil@army.mil&gt;; scott.p.noon.mil@army.mil; Miller, Zachary Steven (Zac) LTC USARMY USACC (USA) &lt;zachary.s.miller36.mil@army.mil&gt;; Portee, Alicia\r\n S CPT USARMY (USA) &lt;alicia.s.portee.mil@army.mil&gt;; Dunphy, Colin S MAJ USARMY 7 TRANS BDE-X (USA) &lt;colin.s.dunphy.mil@army.mil&gt;; phillip.m.carswell.mil@army.mil; Escobar, John CPT USARMY TRADOC (USA) &lt;john.escobar13.mil@army.mil&gt;; Thompson, Douglas W III CPT\r\n USARMY 16 MP BDE (USA) &lt;douglas.w.thompson50.mil@army.mil&gt;; Wiggins, Dustin A MAJ USARMY 86 TSD (USA) &lt;dustin.a.wiggins.mil@army.mil&gt;; Turbyfill, Joshua R CPT USARMY NGIC (USA) &lt;joshua.r.turbyfill2.mil@army.mil&gt;; joshua.e.greenberg.mil@army.mil; Hudson, Jesse\r\n J CPT USARMY 20 ENG BDE (USA) &lt;jesse.j.hudson8.mil@army.mil&gt;; Madsen, Eric S CSM USARMY 101 ABN DIV 2 BCT (USA) &lt;eric.s.madsen.mil@army.mil&gt;; russell.i.landes.mil@army.mil; Owens, Sylvester L (Sly) II CW3 USARMY 335 SIG CMD (USA) &lt;sylvester.l.owens.mil@army.mil&gt;;\r\n Iraola, Jaime J CW3 USARMY 35 SIG BDE (USA) &lt;jaime.j.iraola.mil@army.mil&gt;; Munoz vega, Joselyn CW2 USARMY 35 SIG BDE (USA) &lt;joselyn.munozvega.mil@army.mil&gt;; melissa.b.reisterhartsell.mil@army.mil; Bryant, Anson L MAJ USARMY 95 CA BDE (USA) &lt;anson.l.bryant.mil@army.mil&gt;;\r\n Davis, Jermine R SFC USARMY 44 MED BDE (USA) &lt;jermine.r.davis.mil@army.mil&gt;; Chierichella, Marissa F LTC USARMY XVIII ABN CORPS (USA) &lt;marissa.f.chierichella.mil@army.mil&gt;; Smartfain, Omseti A CPT USARMY (USA) &lt;omseti.a.smartfain.mil@army.mil&gt;; Bray, Davina\r\n C SGT USARMY 470 MI BDE (USA) &lt;davina.c.bray.mil@army.mil&gt;; Tellez, Gilberto M MAJ USARMY I CORPS (USA) &lt;gilberto.m.tellez.mil@army.mil&gt;; Nunez, Roberto LTC USARMY I CORPS (USA) &lt;roberto.nunez.mil@army.mil&gt;; DiNatale, James A MAJ USARMY I CORPS (USA) &lt;james.a.dinatale.mil@army.mil&gt;;\r\n Fuentes, Richard J SFC USARMY (USA) &lt;richard.j.fuentes2.mil@army.mil&gt;; Hinds, Jason F MAJ USARMY 25 ID (USA) &lt;jason.f.hinds.mil@army.mil&gt;; Owens, John P 1LT USARMY (USA) &lt;john.p.owens45.mil@army.mil&gt;; Bailey, Brad F CPT USARMY III CORPS (USA) &lt;brad.f.bailey.mil@army.mil&gt;;\r\n McMillan, Justin S LTC USARMY 1 AD (USA) &lt;justin.s.mcmillan.mil@army.mil&gt;; Farnsworth, Andrew P CW2 USARMY 1 AD (USA) &lt;andrew.p.farnsworth.mil@army.mil&gt;; aaron.m.overstake.mil@army.mil; Kezele, William A II CPT USARMY 1 ID 1 HBCT (USA) &lt;william.a.kezele.mil@army.mil&gt;;\r\n Thompson, Adam T LTC USARMY 4 ID (USA) &lt;adam.t.thompson2.mil@army.mil&gt;; Capehart, Sean M CPT USARMY 71 EOD (USA) &lt;sean.m.capehart.mil@army.mil&gt;; Hackett, Donald S (Don) LTC USARMY V CORPS (USA) &lt;donald.s.hackett.mil@army.mil&gt;; tamaria.n.belser-ouedrago.mil@army.mil;\r\n Johnston, Mark L COL USARMY 1SFC (USA) &lt;mark.l.johnston6.mil@army.mil&gt;; Tinker, Michael C LTC USARMY SOCOM HQ SOCOM (USA) &lt;michael.c.tinker2.mil@army.mil&gt;; Reeve, Mickey I Jr SSG USARMY FUTURES COMMAND (USA) &lt;mickey.i.reeve.mil@army.mil&gt;; Wright, Michael A\r\n (Mike) MAJ USARMY I CORPS (USA) &lt;michael.a.wright4.mil@army.mil&gt;; Quinn, Sean T MAJ USARMY 1 MDTF (USA) &lt;sean.t.quinn10.mil@army.mil&gt;; Coutu, Christopher D MAJ USARMY NG CTARNG (USA) &lt;christopher.d.coutu.mil@army.mil&gt;; Edwards, Jonathan I GySgt USMC (USA)\r\n &lt;jonathan.edwards@socom.mil&gt;; rickey.royal.mil@aal.army; aaron.m.stetson.civ@aal.army; Dionisio, Robert A CIV USARMY DEVCOM AC (USA) &lt;robert.a.dionisio.civ@army.mil&gt;; Decostanza, Arwen H CIV USARMY DEVCOM ARL (USA) &lt;arwen.h.decostanza.civ@army.mil&gt;; Lovelace,\r\n C D (Chris) CIV USARMY AFC DOI (USA) &lt;christopher.d.lovelace4.civ@army.mil&gt;; Driver, Shawn L MAJ USARMY AFC DOI (USA) &lt;shawn.l.driver.mil@army.mil&gt;; Hunter, Madison N CPT USARMY 513 MI BDE (USA) &lt;madison.n.hunter2.mil@army.mil&gt;; Pollin, Mary Grace CPT USARMY\r\n 513 MI BDE (USA) &lt;mary.g.pollin.mil@army.mil&gt;; Becker, Joshua M CW3 USARMY 207 MI BDE (USA) &lt;joshua.m.becker.mil@army.mil&gt;; Saling, Kristin C (Kris) COL USARMY HQDA ASA MRA (USA) &lt;kristin.c.saling.mil@army.mil&gt;; joshua.b.rykowski.mil@army.mil; Logan, Vernon\r\n V LTC USARMY SETAF-AF (USA) &lt;vernon.v.logan.mil@army.mil&gt;; Mahanty, Daniel R CIV (USA) &lt;daniel.r.mahanty.civ@army.mil&gt;; Heil, Francis C III CTR USARMY HQDA DCS G-3-5-7 (USA) &lt;francis.c.heil2.ctr@army.mil&gt;; april.l.cisneros.ctr@army.mil; Rodgers, Jake A CPT\r\n USARMY MP SCHL (USA) &lt;jake.a.rodgers2.mil@army.mil&gt;; Netta, Victor C CIV USARMY PEO SOLDIER (USA) &lt;victor.c.netta.civ@army.mil&gt;; Martinez, Mary P COL USARMY AFC-FCC (USA) &lt;mary.p.martinez.mil@army.mil&gt;; devin.gongora@afwerx.af.mil; colin.dziadaszek@afwerx.af.mil;\r\n ian.clowes@afwerx.af.mil; Thompson, Jerry W SFC USARMY DEVCOM ARL (USA) &lt;jerry.w.thompson91.mil@army.mil&gt;; Raines, Darius D MSG USARMY DEVCOM ARL (USA) &lt;darius.d.raines.mil@army.mil&gt;; Enyart, Lacey C LTC USARMY USARPAC (USA) &lt;lacey.c.enyart.mil@army.mil&gt;;\r\n USARMY Ft Belvoir PEO SOLDIER Mailbox APEO Soldier &lt;usarmy.belvoir.peo-soldier.mbx.apeo-soldier@army.mil&gt;; USARMY Ft Belvoir PEO SOLDIER Mailbox APEO Soldier Futures &lt;usarmy.belvoir.peo-soldier.mbx.apeo-soldier-futures@army.mil&gt;; USARMY Ft Belvoir PEO SOLDIER\r\n Mailbox APEO Soldier SIF &lt;usarmy.belvoir.peo-soldier.mbx.apeo-soldier-sif@army.mil&gt;; Crawford, Donald E (Don) II CIV USARMY HQDA ASA IEE (USA) &lt;donald.e.crawford2.civ@army.mil&gt;; Vitale, Christopher J COL USARMY HQDA ASA IEE (USA) &lt;christopher.j.vitale.mil@army.mil&gt;;\r\n Williams, Michael E (Mike) CPT USARMY HQDA ASA IEE (USA) &lt;michael.e.williams503.mil@army.mil&gt;; Mitch Kusmier &lt;mkusmier@cmi2.org&gt;; DiNatale, James A MAJ USARMY I CORPS (USA) &lt;james.a.dinatale.mil@army.mil&gt;; Smith, Eston T 1LT USARMY (USA) &lt;eston.t.smith.mil@army.mil&gt;;\r\n Hilferty, Samuel P 1LT USARMY 2 CAV REGT (USA) &lt;samuel.p.hilferty.mil@army.mil&gt;; Connell, Everett N 2LT USARMY 2 CAV REGT (USA) &lt;everett.n.connell.mil@army.mil&gt;; Rounds, Thomas G CPT USARMY 7 ENG BDE (USA) &lt;thomas.g.rounds.mil@army.mil&gt;; Decostanza, Arwen\r\n H CIV USARMY DEVCOM ARL (USA) &lt;arwen.h.decostanza.civ@army.mil&gt;; Pfeiffer, Andrew C CPT USARMY USSOCOM SOCPAC (USA) &lt;Andrew.C.Pfeiffer.mil@socom.mil&gt;; Romanowski, Matthew P MAJ USARMY USSOCOM SOCPAC (USA) &lt;matthew.p.romanowski.mil@socom.mil&gt;; Alford, Wade\r\n L CDT 2025 &lt;wade.alford@westpoint.edu&gt;; Brousseau, Louis C CIV USARMY AFC DOI (USA) &lt;louis.c.brousseau.civ@army.mil&gt;; Crossman, Jacob M CDT 2026 &lt;jacob.crossman@westpoint.edu&gt;; Westdyk, Jordan A SSG USARMY 1 MDTF (USA) &lt;jordan.a.westdyk.mil@army.mil&gt;<br>\r\n<b>Cc:</b> Flournoy, Christopher M CPT USARMY 3 ID (USA) &lt;christopher.m.flournoy2.mil@army.mil&gt;; tacticalinnovationinstitute@gmail.com; Nowicki, Margaret A COL &lt;margaret.nowicki@westpoint.edu&gt;; Chris Flournoy &lt;chrisflournoy17@gmail.com&gt;<br>\r\n<b>Subject:</b> Last Call to RSVP for Tactical Innovation Symposium and West Point Projects Day!\r\n<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Tactical Innovators,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">This is the last call to <b><span style=\"font-size:16.0pt\"><a href=\"https://docs.google.com/forms/d/e/1FAIpQLSdFDvAqzukzsGr3iTlpXZ7BLo6OE-VNQ9POM4uIB9RTt71DIw/viewform?usp=dialog\">RSVP</a></span></b> &nbsp;for the Tactical Innovation Symposium\r\n on Wednesday April 23<sup>rd</sup> and West Point&#8217;s Projects Day Research Symposium on Thursday April 24<sup>th</sup>.\r\n<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Attached is a tentative agenda for the presentations on the 23<sup>rd</sup> which will take place in the Civil and Mechanical Engineering Conference Room in Mahan Hall at West Point and virtually via Teams. A link will be shared with all\r\n who RSVP and select the virtual attendance option. If you believe you are presenting but do not see yourself on the schedule, or your time slot does not work, please let us know ASAP! A read ahead with abstracts for each of the presentations will be sent to\r\n all those who RSVP on Monday the 21<sup>st</sup> and published for release after the Symposium. The uniform for the 23<sup>rd</sup> will Army Combat Uniform. &nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Please use the Projects Day App: <a href=\"https://projectsday.westpoint.edu/\">\r\nhttps://projectsday.westpoint.edu/</a> to see the entire lineup of Cadet projects being presented on April 24<sup>th</sup> and build your own itinerary to see the ones you are interested in! There will not be a virtual option for the 24<sup>th</sup>. For those\r\n attending there is not specified uniform but for your awareness the faculty will be wearing AGSU-A.\r\n<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Please let us know if you have any questions, look forwarding to seeing you all next week!\r\n<span style=\"font-size:12.0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div style=\"border:none;border-bottom:solid windowtext 1.0pt;padding:0in 0in 1.0pt 0in\">\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">-Chris <o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Chris Aliperti<o:p></o:p></p>\r\n<p class=\"MsoNormal\">CPT, IN<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Instructor, Mechanical Engineering, Department of Civil and Mechanical Engineering\r\n<o:p></o:p></p>\r\n<p class=\"MsoNormal\">Associate Director, Tactical Innovation, Center for Innovation and Engineering<o:p></o:p></p>\r\n<p class=\"MsoNormal\">Director, Tactical Innovation Institute <o:p></o:p></p>\r\n<p class=\"MsoNormal\">United States Military Academy, West Point NY <o:p></o:p></p>\r\n<p class=\"MsoNormal\">RM 224A, Mahan Hall <o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">C: 631-449-3941<o:p></o:p></p>\r\n<p class=\"MsoNormal\">W: <a href=\"mailto:Christopher.Aliperti@Westpoint.edu\"><span style=\"color:blue\">Christopher.Aliperti@Westpoint.edu</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\">A: <a href=\"mailto:Christopher.C.Aliperti.mil@Army.mil\"><span style=\"color:blue\">Christopher.C.Aliperti.mil@Army.mil</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><a href=\"https://outlook.office.com/bookwithme/user/df2961587d6440ada1674229467feef8@westpoint.edu?anonymous&amp;ep=pcard\"><span style=\"color:blue\">Book time with Aliperti, Christopher C CPT\r\n</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n</body>\r\n</html>','\r\n\r\nFrom: Aliperti, Christopher C CPT <christopher.aliperti@westpoint.edu>\r\nSent: Tuesday, April 15, 2025 12:41 PM\r\nTo: Cooper, Shawn P MAJ USARMY (USA) <shawn.p.cooper7.mil@army.mil>; DragonInnovations <dragoninnovations@army.mil>; Coutu, Christopher D MAJ USARMY NG CTARNG (USA) <christopher.d.coutu.mil@army.mil>; DiNatale, James A MAJ USARMY I CORPS (USA) <james.a.dinatale.mil@army.mil>; Archuleta, Matthew J MAJ USARMY NG CTARNG (USA) <matthew.j.archuleta.mil@army.mil>; Allen, Terrence J 1LT USARMY 82 ABN DIV (USA) <terrence.j.allen.mil@army.mil>; Hunter, Madison N CPT USARMY 513 MI BDE (USA) <madison.n.hunter2.mil@army.mil>; Simoes, Hunter A 1LT USARMY 101 ABN DIVARTY (USA) <hunter.a.simoes.mil@army.mil>; Roehrich, Gregory J CIV USARMY DEVCOM AC (USA) <gregory.j.roehrich.civ@army.mil>; Mcdonough, Nicholas J CPT USARMY 101 ABN DIV 1 BCT (USA <nicholas.j.mcdonough.mil@army.mil>; Lawson, Eden Elizabeth CPT USARMY 101 ABN DIV (USA) <eden.e.lawson.mil@army.mil>; Rose, Denett R CIV USARMY DEVCOM C5ISR (USA) <denett.r.rose.civ@army.mil>; Shannon, James A CIV USARMY DEVCOM C5ISR (USA) <james.a.shannon.civ@army.mil>; Shutt, Brenden M 1LT USARMY 3 ID (USA) <brenden.m.shutt.mil@army.mil>; Abraham, Ani CIV USARMY AFC DOI (USA) <ani.abraham.civ@army.mil>; Lee, David Y CIV USARMY DEVCOM AC (USA) <david.y.lee.civ@army.mil>; Connors, Christopher C CTR USARMY DEVCOM ARL (USA) <christopher.c.connors.ctr@army.mil>; Moore, Mallory E 1LT USARMY 3 ID (USA) <mallory.e.moore3.mil@army.mil>; Pollin, Mary Grace CPT USARMY 513 MI BDE (USA) <mary.g.pollin.mil@army.mil>; Decostanza, Arwen H CIV USARMY DEVCOM ARL (USA) <arwen.h.decostanza.civ@army.mil>; Johnston, Mark L COL USARMY 1SFC (USA) <mark.l.johnston6.mil@army.mil>; Tinker, Michael C LTC USARMY SOCOM HQ SOCOM (USA) <michael.c.tinker2.mil@army.mil>; Padgett, Jock B HQE (USA <jock.b.padgett.civ@army.mil>; Linnemann, Randall A COL USARMY (USA) <randall.a.linnemann.mil@army.mil>; Taylor, Madelyn G CPT USARMY ENGINEER SCHL (USA) <madelyn.g.taylor3.mil@army.mil>; Bradford, Jacob C SGT USARMY XVIII ABN CORPS (USA) <jacob.c.bradford2.mil@army.mil>; Costa, Joel Andrew MAJ USARMY 2 SFA BDE (USA) <joel.a.costa.mil@army.mil>; Hudson, Jesse J CPT USARMY 20 ENG BDE (USA) <jesse.j.hudson8.mil@army.mil>; Davis, Albert W COL USARMY ASC 406 AFSB (USA) <albert.w.davis.mil@army.mil>; Shelden, Dennis L COL USARMY 3 ESC (USA) <dennis.l.shelden.mil@army.mil>; Flournoy, Christopher M CPT USARMY 3 ID (USA) <christopher.m.flournoy2.mil@army.mil>; Wiggins, Dustin A MAJ USARMY 86 TSD (USA) <dustin.a.wiggins.mil@army.mil>; Blane, Janice T LTC USARMY 1 MDTF (USA) <janice.t.blane.mil@army.mil>; Fuentes, Richard J SFC USARMY (USA) <richard.j.fuentes2.mil@army.mil>; Hinds, Jason F MAJ USARMY 25 ID (USA) <jason.f.hinds.mil@army.mil>; Marquez, Coral B 1LT USARMY 25 ID 2 IBCT (USA) <coral.b.marquez.mil@army.mil>; Reeve, Mickey I Jr SSG USARMY FUTURES COMMAND (USA) <mickey.i.reeve.mil@army.mil>; Rykowski, Joshua Brandon (Josh) LTC USARMY HRC (USA <joshua.b.rykowski.mil@army.mil>; Tracy, Clint E COL USARMY III CORPS (USA <clint.e.tracy.mil@army.mil>; Backscheider, Justin E CPT USARMY 316 ESC (USA) <justin.e.backscheider.mil@army.mil>; Thompson, Adam T LTC USARMY 4 ID (USA) <adam.t.thompson2.mil@army.mil>; Wright, Michael A (Mike) MAJ USARMY I CORPS (USA) <michael.a.wright4.mil@army.mil>; Quinn, Sean T MAJ USARMY 1 MDTF (USA) <sean.t.quinn10.mil@army.mil>; Moore, Daniel Robert CIV USARMY DEVCOM AMERICAS (USA) <daniel.r.moore5.civ@army.mil>; jwhiteaker.ctr@nsin.mil; dakota.belcher@afwerx.af.mil; Driver, Shawn L MAJ USARMY AFC DOI (USA) <shawn.l.driver.mil@army.mil>; Royal, Rickey B Jr MAJ USARMY AFC AAL (USA) <rickey.b.royal.mil@army.mil>; Dionisio, Robert A CIV USARMY DEVCOM AC (USA) <robert.a.dionisio.civ@army.mil>; Clowes, Ian W LTC USARMY XVIII ABN CORPS (USA) <ian.w.clowes.mil@army.mil>; Moody, Steven S MAJ USARMY XVIII ABN CORPS (USA) <steven.s.moody.mil@army.mil>; Fitton, Jeffrey James CIV USARMY USAG (USA) <jeffrey.j.fitton.civ@army.mil>; Marne Innovation Center <marneinnovationcenter@army.mil>; abeatty.ctr@nsin.mil; Mountain Innovation <mountaininnovation@army.mil>; 82D Innovations <82dinnovations@army.mil>; Airborne Innovation Lab <airborneinnovationlab@army.mil>; bborger@cmi2.org; djordan@cmi2.org; Johnson, Adam Griffan CPT USARMY (USA) <adam.g.johnson21.mil@army.mil>; Smart, Kellie A 1LT USARMY AVNCOE (USA) <kellie.a.smart.mil@army.mil>; EagleWERX ATIC (Operations) <eaglewerxatic@army.mil>; 3rdESCSpearsInnovation@army.mil; 7TBXInnovation@army.mil; SteelInnovation@army.mil; 20thENBDEInnovationsTeam@army.mil; 35th CSB_Innovation_Team <35thCSB_Innovation_Team@army.mil>; DragonMedicInnovations <DragonMedicInnovations@army.mil>; 261STInnovationCell@army.mil; 525E-MIBInnovation@army.mil; USARMY Schofield Barracks 25 ID Mailbox Lightning Labs Innovations Mailbox <usarmy.schofield.25-id.mbx.lightning-labs-innovations-mailbox@army.mil>; Doane, Wise M CPT USARMY SOCOM HQ SOCOM (USA) <wise.m.doane.mil@army.mil>; USARMY Shaw AFB USARCENT Mailbox TF39 <usarmy.shaw.usarcent.mbx.tf39@army.mil>; Edwards, Jonathan I GySgt USMC (USA) <jonathan.edwards@socom.mil>; Vermillion, Connor J CPT USARMY 82 ABN DIV (USA) <connor.j.vermillion.mil@army.mil>; Ortiz, Michael A. SFC USSOCOM USASOC (USA <michael.andrew.ortiz@socom.mil>; Humphries, Samuel S CPT USARMY 173 ABN BDE (USA) <samuel.s.humphries.mil@army.mil>; ronald.l.reusch.ctr@army.mil; Mitch Kusmier <mkusmier@cmi2.org>; Al Husseini, Mahdi CPT USARMY MEDICAL COE (USA) <mahdi.alhusseini.mil@army.mil>; Massey, Scott D MAJ USARMY NG SCARNG (USA) <scott.d.massey.mil@army.mil>; Miltenberger, Mark D CIV USARMY DEVCOM ARL (USA) <mark.d.miltenberger.civ@army.mil>; sezz@cmi2.org; Chopra, Manpreet CIV USARMY DEVCOM AC (USA) <manpreet.chopra.civ@army.mil>; Keys, Omar J SFC USARMY USSOCOM USASOC (USA) <omar.j.keys.mil@socom.mil>; Hicks, Ricky R Jr CW3 USARMY FORSCOM (USA) <ricky.r.hicks.mil@army.mil>; Fink, Joseph T CPT USARMY (USA) <joseph.t.fink2.mil@army.mil>; Nessler, Patrick J CPT USARMY 10 MTN DIV 1 BCT (USA) <patrick.j.nessler.mil@army.mil>; rleach@cmi2.org; benjamin.e.schiff.mil@swf.army.mil; james.b.cho.mil@swf.army.mil; Young, Rodney J CIV USARMY DEVCOM C5ISR (USA) <rodney.j.young18.civ@army.mil>; Rodriguez, Carlos CPT USARMY 3 ID (USA <carlos.rodriguez432.mil@army.mil>; Hudson, Jesse J CPT USARMY 20 ENG BDE (USA) <jesse.j.hudson8.mil@army.mil>; Saling, Kristin C (Kris) COL USARMY HQDA ASA MRA (USA) <kristin.c.saling.mil@army.mil>; McVay, Robert C (Clay) COL USARMY AFC AAL (USA) <robert.c.mcvay.mil@army.mil>; Saptarsi Bandyopadhyay (CTR <sbandy.ctr@nsin.mil>; David Skinner (CIV <dskinner@nsin.mil>; Blatherwick, Donovan R MAJ USARMY 3 ID (USA) <donovan.r.blatherwick.mil@army.mil>; Fitzgerald, Michael C MAJ USARMY 10 MTN DIV (USA) <michael.c.fitzgerald22.mil@army.mil>; Fera, Anthony J LTC USARMY USAJFKSWCS (USA) <anthony.j.fera.mil@army.mil>; Quach, Gary T MAJ USARMY 82 ABN DIV (USA <gary.t.quach.mil@army.mil>; Fossett, Darren J CPT USARMY 82 ABN DIV (USA) <darren.j.fossett.mil@army.mil>; Miller, Zachary Steven (Zac) LTC USARMY USACC (USA) <zachary.s.miller36.mil@army.mil>; Portee, Alicia S CPT USARMY (USA) <alicia.s.portee.mil@army.mil>; Dunphy, Colin S MAJ USARMY 7 TRANS BDE-X (USA) <colin.s.dunphy.mil@army.mil>; Thompson, Douglas W III CPT USARMY 16 MP BDE (USA) <douglas.w.thompson50.mil@army.mil>; Wiggins, Dustin A MAJ USARMY 86 TSD (USA) <dustin.a.wiggins.mil@army.mil>; Turbyfill, Joshua R CPT USARMY NGIC (USA) <joshua.r.turbyfill2.mil@army.mil>; Hudson, Jesse J CPT USARMY 20 ENG BDE (USA) <jesse.j.hudson8.mil@army.mil>; Madsen, Eric S CSM USARMY 101 ABN DIV 2 BCT (USA) <eric.s.madsen.mil@army.mil>; Landes, Russell I CPT USARMY 35 SIG BDE (USA <russell.i.landes.mil@army.mil>; Owens, Sylvester L (Sly) II CW3 USARMY 335 SIG CMD (USA) <sylvester.l.owens.mil@army.mil>; Iraola, Jaime J CW3 USARMY 35 SIG BDE (USA) <jaime.j.iraola.mil@army.mil>; Bryant, Anson L MAJ USARMY 95 CA BDE (USA) <anson.l.bryant.mil@army.mil>; Davis, Jermine R SFC USARMY 44 MED BDE (USA) <jermine.r.davis.mil@army.mil>; Chierichella, Marissa F LTC USARMY XVIII ABN CORPS (USA) <marissa.f.chierichella.mil@army.mil>; Smartfain, Omseti A CPT USARMY (USA) <omseti.a.smartfain.mil@army.mil>; Bray, Davina C SGT USARMY 470 MI BDE (USA) <davina.c.bray.mil@army.mil>; Nunez, Roberto LTC USARMY I CORPS (USA) <roberto.nunez.mil@army.mil>; Bailey, Brad F CPT USARMY III CORPS (USA) <brad.f.bailey.mil@army.mil>; McMillan, Justin S LTC USARMY 1 AD (USA) <justin.s.mcmillan.mil@army.mil>; Farnsworth, Andrew P CW2 USARMY 1 AD (USA) <andrew.p.farnsworth.mil@army.mil>; Farnsworth, Andrew P CW2 USARMY 1 AD (USA) <andrew.p.farnsworth.mil@army.mil>; Kezele, William A II CPT USARMY 1 ID 1 HBCT (USA) <william.a.kezele.mil@army.mil>; Capehart, Sean M CPT USARMY 71 EOD (USA) <sean.m.capehart.mil@army.mil>; Hackett, Donald S (Don) LTC USARMY V CORPS (USA) <donald.s.hackett.mil@army.mil>; Hofmaier, Andrew P CIV USARMY DEVCOM PAC (USA <andrew.p.hofmaier.civ@army.mil>; Tellez, Gilberto M MAJ USARMY I CORPS (USA) <gilberto.m.tellez.mil@army.mil>; Tracy, Jonathan W CPT USARMY 1 CD DIVARTY (USA <jonathan.w.tracy6.mil@army.mil>; Skidmore, Tyler A 1LT USARMY XVIII ABN CORPS (USA) <tyler.a.skidmore2.mil@army.mil>; Warne, Russell T CIV USARMY HQDA ARI (USA) <russell.t.warne.civ@army.mil>; Naber, Andrew Michael CIV (USA) <andrew.m.naber.civ@army.mil>; Tomczyk, Cameron J 1LT USARMY 10 MTN DIV 1 BCT (USA <cameron.j.tomczyk.mil@army.mil>; Payne, Travis J LTC USARMY FIRST ARMY DIVEAST (USA) <travis.j.payne10.mil@army.mil>; Morelli, John M 1LT USARMY 4 CAV BDE (USA) <john.m.morelli.mil@army.mil>; Girvin, Michael T COL USARMY NG PAARNG (USA) <michael.t.girvin.mil@army.mil>; James Clevenger <jclevenger@cmi2.org>; Weymiller, Alexander J CPT USARMY USSOCOM USASOC (USA) <alexander.j.weymiller.mil@socom.mil>; Shea, Patrick I 1LT USARMY (USA) <patrick.i.shea.mil@army.mil>; Coker, Byron <Byron.Coker@gtri.gatech.edu>; Weaver, Dennis J COL USARMY III CORPS (USA) <dennis.j.weaver2.mil@army.mil>; Blond, Kyle <Kyle.Blond@gtri.gatech.edu>; Chang, Andrew B. <Andrew.Chang@gtri.gatech.edu>; Shah, Aanand V CPT USARMY USAREUR-AF (USA) <aanand.v.shah.mil@army.mil>; Hardy, Edmond A (Ed) COL USARMY I CORPS (USA) <edmond.a.hardy.mil@army.mil>; Martin, Paul D SGT USARMY NG MAARNG (USA) <paul.d.martin107.mil@army.mil>; Rounds, Thomas G CPT USARMY 7 ENG BDE (USA) <thomas.g.rounds.mil@army.mil>; Jonathon Morgan <jonathon.morgan16@gmail.com>; Bailey, Brad F CPT USARMY III CORPS (USA) <brad.f.bailey.mil@army.mil>; Shorkey-Chacon, Paul R CPT USARMY 1 ID 2 ABCT (USA) <paul.r.shorkey-chacon.mil@army.mil>; Cea, Brandon 1LT USARMY CYBER SCHL (USA) <brandon.cea.mil@army.mil>; Bryant, Anson L MAJ USARMY 95 CA BDE (USA) <anson.l.bryant.mil@army.mil>; EagleWERX ATIC (Operations) <eaglewerxatic@army.mil>; Hill, Matthew D CPT USARMY 18 FA BDE (USA) <matthew.d.hill6.mil@army.mil>; Hudson, Jesse J CPT USARMY 20 ENG BDE (USA) <jesse.j.hudson8.mil@army.mil>; Lasley, Daniel D MAJ USARMY 16 MP BDE (USA) <daniel.d.lasley.mil@army.mil>; Marne Innovation Center <marneinnovationcenter@army.mil>; Mountain Innovation <mountaininnovation@army.mil>; Pereira, Robert J CPT USARMY 1 CD 1 ABCT (USA) <robert.j.pereira4.mil@army.mil>; Thompson, Douglas W III CPT USARMY 16 MP BDE (USA) <douglas.w.thompson50.mil@army.mil>; Stacey Kessler <stacey@mobilizevision.com>; Hickey, Benita A CIV USAF AFLCMC ISR (USA) <benita.hickey@us.af.mil>; Breyer, Jay J CIV USAF AFLCMC (USA) <jay.breyer@us.af.mil>; Logan, Vernon V LTC USARMY SETAF-AF (USA) <vernon.v.logan.mil@army.mil>; Hunter, Madison N CPT USARMY 513 MI BDE (USA) <madison.n.hunter2.mil@army.mil>; Becker, Joshua M CW3 USARMY 207 MI BDE (USA) <joshua.m.becker.mil@army.mil>; Edwards, Jonathan I GySgt USMC (USA) <jonathan.edwards@socom.mil>; 513th Intelligence Data Solutions Group <513th_Innovation@army.mil>; USARMY Shaw AFB USARCENT Mailbox TF39 <usarmy.shaw.usarcent.mbx.tf39@army.mil>; DragonInnovations <dragoninnovations@army.mil>; USARMY Ft Bragg XVIII ABN Corps Mailbox dat <usarmy.liberty.xviiith-abn-corps.mbx.dat@army.mil>; Marne Innovation Center <marneinnovationcenter@army.mil>; Mountain Innovation <mountaininnovation@army.mil>; 82D Innovations <82dinnovations@army.mil>; Airborne Innovation Lab <airborneinnovationlab@army.mil>; EagleWERX ATIC (Operations) <eaglewerxatic@army.mil>; 3rdESCSpearsInnovation@army.mil; 7TBXInnovation@army.mil; 20thENBDEInnovationsTeam@army.mil; 35th CSB_Innovation_Team <35thCSB_Innovation_Team@army.mil>; DragonMedicInnovations <DragonMedicInnovations@army.mil>; 261STInnovationCell@army.mil; 525E-MIBInnovation@army.mil; USARMY Schofield Barracks 25 ID Mailbox Lightning Labs Innovations Mailbox <usarmy.schofield.25-id.mbx.lightning-labs-innovations-mailbox@army.mil>; Linnemann, Randall A COL USARMY (USA) <randall.a.linnemann.mil@army.mil>; Wilder, William R SFC USARMY XVIII ABN CORPS (USA) <william.r.wilder10.mil@army.mil>; Vazquez, Daniel P MAJ USARMY (USA) <daniel.p.vazquez.mil@army.mil>; Skidmore, Tyler A 1LT USARMY XVIII ABN CORPS (USA) <tyler.a.skidmore2.mil@army.mil>; Blatherwick, Donovan R MAJ USARMY 3 ID (USA) <donovan.r.blatherwick.mil@army.mil>; Flournoy, Christopher M CPT USARMY 3 ID (USA) <christopher.m.flournoy2.mil@army.mil>; Moore, Mallory E 1LT USARMY 3 ID (USA) <mallory.e.moore3.mil@army.mil>; Fitzgerald, Michael C MAJ USARMY 10 MTN DIV (USA) <michael.c.fitzgerald22.mil@army.mil>; Fink, Joseph T CPT USARMY (USA) <joseph.t.fink2.mil@army.mil>; Fera, Anthony J LTC USARMY USAJFKSWCS (USA) <anthony.j.fera.mil@army.mil>; Quach, Gary T MAJ USARMY 82 ABN DIV (USA) <gary.t.quach.mil@army.mil>; Allen, Terrence J 1LT USARMY 82 ABN DIV (USA) <terrence.j.allen.mil@army.mil>; Fossett, Darren J CPT USARMY 82 ABN DIV (USA) <darren.j.fossett.mil@army.mil>; Lawson, Eden Elizabeth CPT USARMY 101 ABN DIV (USA) <eden.e.lawson.mil@army.mil>; scott.p.noon.mil@army.mil; Miller, Zachary Steven (Zac) LTC USARMY USACC (USA) <zachary.s.miller36.mil@army.mil>; Portee, Alicia S CPT USARMY (USA) <alicia.s.portee.mil@army.mil>; Dunphy, Colin S MAJ USARMY 7 TRANS BDE-X (USA) <colin.s.dunphy.mil@army.mil>; phillip.m.carswell.mil@army.mil; Escobar, John CPT USARMY TRADOC (USA) <john.escobar13.mil@army.mil>; Thompson, Douglas W III CPT USARMY 16 MP BDE (USA) <douglas.w.thompson50.mil@army.mil>; Wiggins, Dustin A MAJ USARMY 86 TSD (USA) <dustin.a.wiggins.mil@army.mil>; Turbyfill, Joshua R CPT USARMY NGIC (USA) <joshua.r.turbyfill2.mil@army.mil>; joshua.e.greenberg.mil@army.mil; Hudson, Jesse J CPT USARMY 20 ENG BDE (USA) <jesse.j.hudson8.mil@army.mil>; Madsen, Eric S CSM USARMY 101 ABN DIV 2 BCT (USA) <eric.s.madsen.mil@army.mil>; russell.i.landes.mil@army.mil; Owens, Sylvester L (Sly) II CW3 USARMY 335 SIG CMD (USA) <sylvester.l.owens.mil@army.mil>; Iraola, Jaime J CW3 USARMY 35 SIG BDE (USA) <jaime.j.iraola.mil@army.mil>; Munoz vega, Joselyn CW2 USARMY 35 SIG BDE (USA) <joselyn.munozvega.mil@army.mil>; melissa.b.reisterhartsell.mil@army.mil; Bryant, Anson L MAJ USARMY 95 CA BDE (USA) <anson.l.bryant.mil@army.mil>; Davis, Jermine R SFC USARMY 44 MED BDE (USA) <jermine.r.davis.mil@army.mil>; Chierichella, Marissa F LTC USARMY XVIII ABN CORPS (USA) <marissa.f.chierichella.mil@army.mil>; Smartfain, Omseti A CPT USARMY (USA) <omseti.a.smartfain.mil@army.mil>; Bray, Davina C SGT USARMY 470 MI BDE (USA) <davina.c.bray.mil@army.mil>; Hinds, Jason F MAJ USARMY 25 ID (USA) <jason.f.hinds.mil@army.mil>; Marquez, Coral B 1LT USARMY 25 ID 2 IBCT (USA) <coral.b.marquez.mil@army.mil>; Tracy, Jonathan W CPT USARMY 1 CD DIVARTY (USA) <jonathan.w.tracy6.mil@army.mil>; Bailey, Brad F CPT USARMY III CORPS (USA) <brad.f.bailey.mil@army.mil>; Backscheider, Justin E CPT USARMY 316 ESC (USA) <justin.e.backscheider.mil@army.mil>; McMillan, Justin S LTC USARMY 1 AD (USA) <justin.s.mcmillan.mil@army.mil>; Farnsworth, Andrew P CW2 USARMY 1 AD (USA) <andrew.p.farnsworth.mil@army.mil>; Overstake, Aaron M MAJ USARMY 1 CD SUST BDE (USA) <aaron.m.overstake.mil@army.mil>; Kezele, William A II CPT USARMY 1 ID 1 HBCT (USA) <william.a.kezele.mil@army.mil>; Thompson, Adam T LTC USARMY 4 ID (USA) <adam.t.thompson2.mil@army.mil>; Capehart, Sean M CPT USARMY 71 EOD (USA) <sean.m.capehart.mil@army.mil>; Hackett, Donald S (Don) LTC USARMY V CORPS (USA) <donald.s.hackett.mil@army.mil>; Johnston, Mark L COL USARMY 1SFC (USA) <mark.l.johnston6.mil@army.mil>; Tinker, Michael C LTC USARMY SOCOM HQ SOCOM (USA) <michael.c.tinker2.mil@army.mil>; Reeve, Mickey I Jr SSG USARMY FUTURES COMMAND (USA) <mickey.i.reeve.mil@army.mil>; Wright, Michael A (Mike) MAJ USARMY I CORPS (USA) <michael.a.wright4.mil@army.mil>; Quinn, Sean T MAJ USARMY 1 MDTF (USA) <sean.t.quinn10.mil@army.mil>; Coutu, Christopher D MAJ USARMY NG CTARNG (USA) <christopher.d.coutu.mil@army.mil>; Randy Emert <remert@cmi2.org>; Saldutti, Robert L Jr 1LT USARMY 3 ID (USA) <robert.l.saldutti2.mil@army.mil>; Hoover, Matthew F 1LT USARMY 4 ID 2 IBCT (USA) <matthew.f.hoover2.mil@army.mil>; Deboskey, Mitchel D 1LT USARMY (USA) <mitchel.d.deboskey.mil@army.mil>; Tawson, Joshua C CPT USARMY 101 ABN DIV 3 BCT (USA) <joshua.c.tawson.mil@army.mil>; Hickey, Benita A CIV USAF AFLCMC ISR (USA) <benita.hickey@us.af.mil>; Allen, Terrence J 1LT USARMY 82 ABN DIV (USA) <terrence.j.allen.mil@army.mil>; Smith, William Darrell III CIV USARMY PEO SOLDIER (USA) <william.d.smith924.civ@army.mil>; Girvin, Michael T COL USARMY NG PAARNG (USA) <michael.t.girvin.mil@army.mil>; Hill, Aaron T COL <aaron.hill@westpoint.edu>; Patel, Kush A Cpl USMC (USA) <kush.patel@usmc.mil>; Lawson, Eden Elizabeth CPT USARMY 101 ABN DIV (USA) <eden.e.lawson.mil@army.mil>; Blomquist, Andrew C CPT USARMY 101 ABN DIV 2 BCT (USA) <andrew.c.blomquist.mil@army.mil>; Shah, Aanand V CPT USARMY USAREUR-AF (USA) <Aanand.v.shah.mil@army.mil>; Jackson, Thomas CW4 <thomas.jackson@westpoint.edu>; Breyer, Jay J CIV USAF AFLCMC (USA) <jay.breyer@us.af.mil>; Breyer, Jay J CIV USAF AFLCMC (USA) <jay.breyer@us.af.mil>; erik.kast@afwerx.af.mil; Harwell, Kyle W CIV USARMY HQDA ARI (USA) <kyle.w.harwell.civ@army.mil>; kyle.blond@gtri.gatech.edu; Mitchell, Paul B Sgt USMC (USA) <paul.b.mitchell@usmc.mil>; Browning, Zachary P CPT USARMY 82 ABN DIV 3 BCT (USA) <zachary.p.browning.mil@army.mil>; Moore, Mallory E 1LT USARMY 3 ID (USA) <mallory.e.moore3.mil@army.mil>; Gasparri, Vincent A 1LT USARMY (USA) <vincent.a.gasparri.mil@army.mil>; Clowes, Ian W LTC USARMY XVIII ABN CORPS (USA) <ian.w.clowes.mil@army.mil>; DiNatale, James A MAJ USARMY I CORPS (USA) <james.a.dinatale.mil@army.mil>; Vigneault, Nathaniel J Maj USMC MARFORRES (USA) <nathaniel.vignea.mil@usmc.mil>; Kleiber, Thomas A Maj USMC HQMC (USA) <thomas.kleiber@usmc.mil>; michael.j.dolan10.ctr@army.mil; michael.j.dolan10.ctr@army.mil; Miltenberger, Mark D CIV USARMY DEVCOM ARL (USA) <mark.d.miltenberger.civ@army.mil>; michael.j.dolan10.ctr@army.mil; euzmann@cmi2.org; Simoes, Hunter A 1LT USARMY 101 ABN DIVARTY (USA) <hunter.a.simoes.mil@army.mil>; Naber, Andrew Michael CIV (USA) <andrew.m.naber.civ@army.mil>; Schlegel, Jeremy A SGM <jeremy.schlegel@westpoint.edu>; Fuentes, Richard J SFC USARMY (USA) <richard.j.fuentes2.mil@army.mil>; Reeve, Mickey I Jr SSG USARMY FUTURES COMMAND (USA) <mickey.i.reeve.mil@army.mil>; Linnemann, Randall A COL USARMY (USA) <randall.a.linnemann.mil@army.mil>; Wilder, William R SFC USARMY XVIII ABN CORPS (USA) <william.r.wilder10.mil@army.mil>; Skidmore, Tyler A 1LT USARMY XVIII ABN CORPS (USA) <tyler.a.skidmore2.mil@army.mil>; Blatherwick, Donovan R MAJ USARMY 3 ID (USA) <donovan.r.blatherwick.mil@army.mil>; Flournoy, Christopher M CPT USARMY 3 ID (USA) <christopher.m.flournoy2.mil@army.mil>; Moore, Mallory E 1LT USARMY 3 ID (USA) <mallory.e.moore3.mil@army.mil>; Fitzgerald, Michael C MAJ USARMY 10 MTN DIV (USA) <michael.c.fitzgerald22.mil@army.mil>; Fink, Joseph T CPT USARMY (USA) <joseph.t.fink2.mil@army.mil>; Fera, Anthony J LTC USARMY USAJFKSWCS (USA) <anthony.j.fera.mil@army.mil>; gary.t.quach.mil@army.mil; Allen, Terrence J 1LT USARMY 82 ABN DIV (USA) <terrence.j.allen.mil@army.mil>; Fossett, Darren J CPT USARMY 82 ABN DIV (USA) <darren.j.fossett.mil@army.mil>; Lawson, Eden Elizabeth CPT USARMY 101 ABN DIV (USA) <eden.e.lawson.mil@army.mil>; scott.p.noon.mil@army.mil; Miller, Zachary Steven (Zac) LTC USARMY USACC (USA) <zachary.s.miller36.mil@army.mil>; Portee, Alicia S CPT USARMY (USA) <alicia.s.portee.mil@army.mil>; Dunphy, Colin S MAJ USARMY 7 TRANS BDE-X (USA) <colin.s.dunphy.mil@army.mil>; phillip.m.carswell.mil@army.mil; Escobar, John CPT USARMY TRADOC (USA) <john.escobar13.mil@army.mil>; Thompson, Douglas W III CPT USARMY 16 MP BDE (USA) <douglas.w.thompson50.mil@army.mil>; Wiggins, Dustin A MAJ USARMY 86 TSD (USA) <dustin.a.wiggins.mil@army.mil>; Turbyfill, Joshua R CPT USARMY NGIC (USA) <joshua.r.turbyfill2.mil@army.mil>; joshua.e.greenberg.mil@army.mil; Hudson, Jesse J CPT USARMY 20 ENG BDE (USA) <jesse.j.hudson8.mil@army.mil>; Madsen, Eric S CSM USARMY 101 ABN DIV 2 BCT (USA) <eric.s.madsen.mil@army.mil>; russell.i.landes.mil@army.mil; Owens, Sylvester L (Sly) II CW3 USARMY 335 SIG CMD (USA) <sylvester.l.owens.mil@army.mil>; Iraola, Jaime J CW3 USARMY 35 SIG BDE (USA) <jaime.j.iraola.mil@army.mil>; Munoz vega, Joselyn CW2 USARMY 35 SIG BDE (USA) <joselyn.munozvega.mil@army.mil>; melissa.b.reisterhartsell.mil@army.mil; Bryant, Anson L MAJ USARMY 95 CA BDE (USA) <anson.l.bryant.mil@army.mil>; Davis, Jermine R SFC USARMY 44 MED BDE (USA) <jermine.r.davis.mil@army.mil>; Chierichella, Marissa F LTC USARMY XVIII ABN CORPS (USA) <marissa.f.chierichella.mil@army.mil>; Smartfain, Omseti A CPT USARMY (USA) <omseti.a.smartfain.mil@army.mil>; Bray, Davina C SGT USARMY 470 MI BDE (USA) <davina.c.bray.mil@army.mil>; Tellez, Gilberto M MAJ USARMY I CORPS (USA) <gilberto.m.tellez.mil@army.mil>; Nunez, Roberto LTC USARMY I CORPS (USA) <roberto.nunez.mil@army.mil>; DiNatale, James A MAJ USARMY I CORPS (USA) <james.a.dinatale.mil@army.mil>; Fuentes, Richard J SFC USARMY (USA) <richard.j.fuentes2.mil@army.mil>; Hinds, Jason F MAJ USARMY 25 ID (USA) <jason.f.hinds.mil@army.mil>; Owens, John P 1LT USARMY (USA) <john.p.owens45.mil@army.mil>; Bailey, Brad F CPT USARMY III CORPS (USA) <brad.f.bailey.mil@army.mil>; McMillan, Justin S LTC USARMY 1 AD (USA) <justin.s.mcmillan.mil@army.mil>; Farnsworth, Andrew P CW2 USARMY 1 AD (USA) <andrew.p.farnsworth.mil@army.mil>; aaron.m.overstake.mil@army.mil; Kezele, William A II CPT USARMY 1 ID 1 HBCT (USA) <william.a.kezele.mil@army.mil>; Thompson, Adam T LTC USARMY 4 ID (USA) <adam.t.thompson2.mil@army.mil>; Capehart, Sean M CPT USARMY 71 EOD (USA) <sean.m.capehart.mil@army.mil>; Hackett, Donald S (Don) LTC USARMY V CORPS (USA) <donald.s.hackett.mil@army.mil>; tamaria.n.belser-ouedrago.mil@army.mil; Johnston, Mark L COL USARMY 1SFC (USA) <mark.l.johnston6.mil@army.mil>; Tinker, Michael C LTC USARMY SOCOM HQ SOCOM (USA) <michael.c.tinker2.mil@army.mil>; Reeve, Mickey I Jr SSG USARMY FUTURES COMMAND (USA) <mickey.i.reeve.mil@army.mil>; Wright, Michael A (Mike) MAJ USARMY I CORPS (USA) <michael.a.wright4.mil@army.mil>; Quinn, Sean T MAJ USARMY 1 MDTF (USA) <sean.t.quinn10.mil@army.mil>; Coutu, Christopher D MAJ USARMY NG CTARNG (USA) <christopher.d.coutu.mil@army.mil>; Edwards, Jonathan I GySgt USMC (USA) <jonathan.edwards@socom.mil>; rickey.royal.mil@aal.army; aaron.m.stetson.civ@aal.army; Dionisio, Robert A CIV USARMY DEVCOM AC (USA) <robert.a.dionisio.civ@army.mil>; Decostanza, Arwen H CIV USARMY DEVCOM ARL (USA) <arwen.h.decostanza.civ@army.mil>; Lovelace, C D (Chris) CIV USARMY AFC DOI (USA) <christopher.d.lovelace4.civ@army.mil>; Driver, Shawn L MAJ USARMY AFC DOI (USA) <shawn.l.driver.mil@army.mil>; Hunter, Madison N CPT USARMY 513 MI BDE (USA) <madison.n.hunter2.mil@army.mil>; Pollin, Mary Grace CPT USARMY 513 MI BDE (USA) <mary.g.pollin.mil@army.mil>; Becker, Joshua M CW3 USARMY 207 MI BDE (USA) <joshua.m.becker.mil@army.mil>; Saling, Kristin C (Kris) COL USARMY HQDA ASA MRA (USA) <kristin.c.saling.mil@army.mil>; joshua.b.rykowski.mil@army.mil; Logan, Vernon V LTC USARMY SETAF-AF (USA) <vernon.v.logan.mil@army.mil>; Mahanty, Daniel R CIV (USA) <daniel.r.mahanty.civ@army.mil>; Heil, Francis C III CTR USARMY HQDA DCS G-3-5-7 (USA) <francis.c.heil2.ctr@army.mil>; april.l.cisneros.ctr@army.mil; Rodgers, Jake A CPT USARMY MP SCHL (USA) <jake.a.rodgers2.mil@army.mil>; Netta, Victor C CIV USARMY PEO SOLDIER (USA) <victor.c.netta.civ@army.mil>; Martinez, Mary P COL USARMY AFC-FCC (USA) <mary.p.martinez.mil@army.mil>; devin.gongora@afwerx.af.mil; colin.dziadaszek@afwerx.af.mil; ian.clowes@afwerx.af.mil; Thompson, Jerry W SFC USARMY DEVCOM ARL (USA) <jerry.w.thompson91.mil@army.mil>; Raines, Darius D MSG USARMY DEVCOM ARL (USA) <darius.d.raines.mil@army.mil>; Enyart, Lacey C LTC USARMY USARPAC (USA) <lacey.c.enyart.mil@army.mil>; USARMY Ft Belvoir PEO SOLDIER Mailbox APEO Soldier <usarmy.belvoir.peo-soldier.mbx.apeo-soldier@army.mil>; USARMY Ft Belvoir PEO SOLDIER Mailbox APEO Soldier Futures <usarmy.belvoir.peo-soldier.mbx.apeo-soldier-futures@army.mil>; USARMY Ft Belvoir PEO SOLDIER Mailbox APEO Soldier SIF <usarmy.belvoir.peo-soldier.mbx.apeo-soldier-sif@army.mil>; Crawford, Donald E (Don) II CIV USARMY HQDA ASA IEE (USA) <donald.e.crawford2.civ@army.mil>; Vitale, Christopher J COL USARMY HQDA ASA IEE (USA) <christopher.j.vitale.mil@army.mil>; Williams, Michael E (Mike) CPT USARMY HQDA ASA IEE (USA) <michael.e.williams503.mil@army.mil>; Mitch Kusmier <mkusmier@cmi2.org>; DiNatale, James A MAJ USARMY I CORPS (USA) <james.a.dinatale.mil@army.mil>; Smith, Eston T 1LT USARMY (USA) <eston.t.smith.mil@army.mil>; Hilferty, Samuel P 1LT USARMY 2 CAV REGT (USA) <samuel.p.hilferty.mil@army.mil>; Connell, Everett N 2LT USARMY 2 CAV REGT (USA) <everett.n.connell.mil@army.mil>; Rounds, Thomas G CPT USARMY 7 ENG BDE (USA) <thomas.g.rounds.mil@army.mil>; Decostanza, Arwen H CIV USARMY DEVCOM ARL (USA) <arwen.h.decostanza.civ@army.mil>; Pfeiffer, Andrew C CPT USARMY USSOCOM SOCPAC (USA) <Andrew.C.Pfeiffer.mil@socom.mil>; Romanowski, Matthew P MAJ USARMY USSOCOM SOCPAC (USA) <matthew.p.romanowski.mil@socom.mil>; Alford, Wade L CDT 2025 <wade.alford@westpoint.edu>; Brousseau, Louis C CIV USARMY AFC DOI (USA) <louis.c.brousseau.civ@army.mil>; Crossman, Jacob M CDT 2026 <jacob.crossman@westpoint.edu>; Westdyk, Jordan A SSG USARMY 1 MDTF (USA) <jordan.a.westdyk.mil@army.mil>\r\nCc: Flournoy, Christopher M CPT USARMY 3 ID (USA) <christopher.m.flournoy2.mil@army.mil>; tacticalinnovationinstitute@gmail.com; Nowicki, Margaret A COL <margaret.nowicki@westpoint.edu>; Chris Flournoy <chrisflournoy17@gmail.com>\r\nSubject: Last Call to RSVP for Tactical Innovation Symposium and West Point Projects Day!\r\n\r\nTactical Innovators,\r\n\r\nThis is the last call to RSVP<https://docs.google.com/forms/d/e/1FAIpQLSdFDvAqzukzsGr3iTlpXZ7BLo6OE-VNQ9POM4uIB9RTt71DIw/viewform?usp=dialog>  for the Tactical Innovation Symposium on Wednesday April 23rd and West Point\'s Projects Day Research Symposium on Thursday April 24th.\r\n\r\nAttached is a tentative agenda for the presentations on the 23rd which will take place in the Civil and Mechanical Engineering Conference Room in Mahan Hall at West Point and virtually via Teams. A link will be shared with all who RSVP and select the virtual attendance option. If you believe you are presenting but do not see yourself on the schedule, or your time slot does not work, please let us know ASAP! A read ahead with abstracts for each of the presentations will be sent to all those who RSVP on Monday the 21st and published for release after the Symposium. The uniform for the 23rd will Army Combat Uniform.\r\n\r\nPlease use the Projects Day App: https://projectsday.westpoint.edu/ to see the entire lineup of Cadet projects being presented on April 24th and build your own itinerary to see the ones you are interested in! There will not be a virtual option for the 24th. For those attending there is not specified uniform but for your awareness the faculty will be wearing AGSU-A.\r\n\r\nPlease let us know if you have any questions, look forwarding to seeing you all next week!\r\n\r\n\r\n-Chris\r\n\r\n\r\nChris Aliperti\r\nCPT, IN\r\n\r\nInstructor, Mechanical Engineering, Department of Civil and Mechanical Engineering\r\nAssociate Director, Tactical Innovation, Center for Innovation and Engineering\r\nDirector, Tactical Innovation Institute\r\nUnited States Military Academy, West Point NY\r\nRM 224A, Mahan Hall\r\n\r\nC: 631-449-3941\r\nW: Christopher.Aliperti@Westpoint.edu<mailto:Christopher.Aliperti@Westpoint.edu>\r\nA: Christopher.C.Aliperti.mil@Army.mil<mailto:Christopher.C.Aliperti.mil@Army.mil>\r\nBook time with Aliperti, Christopher C CPT <https://outlook.office.com/bookwithme/user/df2961587d6440ada1674229467feef8@westpoint.edu?anonymous&ep=pcard>',0,0,0,0,0,0,'2025-04-16 22:58:33','2025-12-09 19:02:01','2025-12-09 19:02:01','2025-12-09 19:02:01',NULL,NULL,NULL),
(190,4,'<CAPrf-PbzC0iLEk9hCM7B9Q9yL4YmfuQSBch2omUTKkPzgdM4iQ@mail.gmail.com>',NULL,NULL,'=?UTF-8?Q?Re=3A_Exploring_Strategic_Partnerships_=E2=80=93_MAVRIX_Amer?= =?UTF-8?Q?ican_Drone_Consortium?=','terri.zimmerman@packetdigital.com','Terri Zimmerman','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">I&#39;m available next week Monday - midday Wednesday. Do you have availability during that time frame?</div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><font size=\"2\">Terri Zimmerman</font><div><font size=\"2\">CEO</font></div><div><font size=\"2\"><a href=\"http://www.packetdigital.com\" target=\"_blank\">Packet Digital</a> | 701.365.4421</font><br></div><div><br></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Apr 16, 2025 at 5:08 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div id=\"m_-6417633787682835921bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thank you, Terri!</div><div id=\"m_-6417633787682835921bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><br></div><div id=\"m_-6417633787682835921bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">I apologize for the cold call email, but I knew I had to reach out given your efforts!</div><div id=\"m_-6417633787682835921bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">I’d love to schedule a Zoom/Meet video call at your convenience this week or next.</div><div id=\"m_-6417633787682835921bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Things are moving quickly and I want to ensure that your team(s) are included!</div><div id=\"m_-6417633787682835921bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Please let me know what’s best for your schedule.</div><div id=\"m_-6417633787682835921bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><br></div><div id=\"m_-6417633787682835921bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Full disclosure, I am a former US Army Electronic Warfare Officer who teaches at the Rochester Institute of Technology and is frustrated by the state of our class 1 and 2 drone systems and supply chains.</div><div id=\"m_-6417633787682835921bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Let’s just say I know people who are very interested in solving this problem - and investing in America!</div><div id=\"m_-6417633787682835921bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><br></div><div id=\"m_-6417633787682835921bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">In the meantime, more about me here: <a href=\"https://www.mislan.com\" target=\"_blank\">https://www.mislan.com</a></div><div id=\"m_-6417633787682835921bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><br></div><div id=\"m_-6417633787682835921bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thank you for your interest and timely response!<br></div><div id=\"m_-6417633787682835921bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Respectfully,</div><div id=\"m_-6417633787682835921bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Rick</div> <br> <div id=\"m_-6417633787682835921bloop_sign_1744840931366989056\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div> <br><p>On April 15, 2025 at 6:33:09 PM, <a href=\"mailto:terri.zimmerman@packetdigital.com\" target=\"_blank\">terri.zimmerman@packetdigital.com</a> (<a href=\"mailto:terri.zimmerman@packetdigital.com\" target=\"_blank\">terri.zimmerman@packetdigital.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div dir=\"auto\"><div></div><div>Your mission sounds very compelling. I would be interested in hearing more.<div><br id=\"m_-6417633787682835921lineBreakAtBeginningOfSignature\"><div dir=\"ltr\">Terri Zimmerman<div>CEO</div><div>Packet Digital LLC</div></div><div dir=\"ltr\"><br><blockquote type=\"cite\">On Apr 15, 2025, at 10:47 AM, Rick &lt;rick@mavrix.one&gt; wrote:<br><br></blockquote></div><blockquote type=\"cite\"><div dir=\"ltr\">﻿\r\n    <div id=\"m_-6417633787682835921bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><p>Hi Terri,</p><p>I’m reaching out on behalf of MAVRIX — a new U.S.-based consortium focused on building the next generation of American drone companies and suppliers through investment, manufacturing, and long-term collaboration.</p><p>We’re assembling a group of forward-thinking firms that share a commitment to American-made systems, trusted sourcing, and defense-grade standards — and we’re backing that vision with deep, flexible capital designed to help our partners grow, scale, and lead in this evolving space.</p><p>We are not a bank and this is not a gimmic. We are a group of American Patriots with access to deep pockets and the desire to leapfrog the competition quickly, bypassing the usual annual SBIR and STTR struggles.</p><p>I’d welcome a conversation to explore whether there’s alignment and how we might support your growth as part of this mission. Truthfully, we’d love to have your companies (PacketDigita, Badlands Batteries, and Botlink) as a part of the greater consortium!</p><p>Please let me know what you have available for an initial chat.</p><p>Thank you!</p></div><div id=\"m_-6417633787682835921bloop_sign_1744731700861881088\">\r\n         \r\n      \r\n    Rick M.<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n      \r\n</div>\r\n\r\n\r\n</div></blockquote></div></div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div>','I\'m available next week Monday - midday Wednesday. Do you have\r\navailability during that time frame?\r\n\r\nTerri Zimmerman\r\nCEO\r\nPacket Digital <http://www.packetdigital.com> | 701.365.4421\r\n\r\n\r\n\r\nOn Wed, Apr 16, 2025 at 5:08 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> Thank you, Terri!\r\n>\r\n> I apologize for the cold call email, but I knew I had to reach out given\r\n> your efforts!\r\n> I’d love to schedule a Zoom/Meet video call at your convenience this week\r\n> or next.\r\n> Things are moving quickly and I want to ensure that your team(s) are\r\n> included!\r\n> Please let me know what’s best for your schedule.\r\n>\r\n> Full disclosure, I am a former US Army Electronic Warfare Officer who\r\n> teaches at the Rochester Institute of Technology and is frustrated by the\r\n> state of our class 1 and 2 drone systems and supply chains.\r\n> Let’s just say I know people who are very interested in solving this\r\n> problem - and investing in America!\r\n>\r\n> In the meantime, more about me here: https://www.mislan.com\r\n>\r\n> Thank you for your interest and timely response!\r\n> Respectfully,\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On April 15, 2025 at 6:33:09 PM, terri.zimmerman@packetdigital.com (\r\n> terri.zimmerman@packetdigital.com) wrote:\r\n>\r\n> Your mission sounds very compelling. I would be interested in hearing more.\r\n>\r\n> Terri Zimmerman\r\n> CEO\r\n> Packet Digital LLC\r\n>\r\n> On Apr 15, 2025, at 10:47 AM, Rick <rick@mavrix.one> wrote:\r\n>\r\n> ﻿\r\n>\r\n> Hi Terri,\r\n>\r\n> I’m reaching out on behalf of MAVRIX — a new U.S.-based consortium focused\r\n> on building the next generation of American drone companies and suppliers\r\n> through investment, manufacturing, and long-term collaboration.\r\n>\r\n> We’re assembling a group of forward-thinking firms that share a commitment\r\n> to American-made systems, trusted sourcing, and defense-grade standards —\r\n> and we’re backing that vision with deep, flexible capital designed to help\r\n> our partners grow, scale, and lead in this evolving space.\r\n>\r\n> We are not a bank and this is not a gimmic. We are a group of American\r\n> Patriots with access to deep pockets and the desire to leapfrog the\r\n> competition quickly, bypassing the usual annual SBIR and STTR struggles.\r\n>\r\n> I’d welcome a conversation to explore whether there’s alignment and how we\r\n> might support your growth as part of this mission. Truthfully, we’d love to\r\n> have your companies (PacketDigita, Badlands Batteries, and Botlink) as a\r\n> part of the greater consortium!\r\n>\r\n> Please let me know what you have available for an initial chat.\r\n>\r\n> Thank you!\r\n> Rick M.\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n>',0,0,0,0,0,0,'2025-04-17 18:33:34','2025-12-09 19:02:01','2025-12-09 19:02:01','2025-12-09 19:02:01',NULL,NULL,NULL),
(191,4,'<DM4PR16MB5069749075725DEF905D7FA38EBF2@DM4PR16MB5069.namprd16.prod.outlook.com>',NULL,NULL,'agents','rmislan@saunders.rit.edu','Rick Mislan','<html xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;\r\n	panose-1:2 11 0 4 2 2 2 2 2 4;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:#467886;\r\n	text-decoration:underline;}\r\nspan.EmailStyle17\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><a href=\"https://astra.datastax.com/langflow/de16fb18-bb57-40c8-bf9a-1e961d8c174f/flow/c984a6b8-e7cd-45dd-9235-cc309f42ed6e/folder/52925d16-b1a3-4cc9-9df0-28960da1cdc0\">https://astra.datastax.com/langflow/de16fb18-bb57-40c8-bf9a-1e961d8c174f/flow/c984a6b8-e7cd-45dd-9235-cc309f42ed6e/folder/52925d16-b1a3-4cc9-9df0-28960da1cdc0</a><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:none\">Get <a href=\"https://aka.ms/GetOutlookForMac\">\r\n<span style=\"color:blue\">Outlook for Mac </span></a></span><o:p></o:p></p>\r\n</div>\r\n</body>\r\n</html>','https://astra.datastax.com/langflow/de16fb18-bb57-40c8-bf9a-1e961d8c174f/flow/c984a6b8-e7cd-45dd-9235-cc309f42ed6e/folder/52925d16-b1a3-4cc9-9df0-28960da1cdc0\r\n\r\nGet Outlook for Mac <https://aka.ms/GetOutlookForMac>',0,0,0,0,0,0,'2025-04-18 16:43:50','2025-12-09 19:02:02','2025-12-09 19:02:02','2025-12-09 19:02:02',NULL,NULL,NULL),
(192,4,'<CAKMKXpnQ--=v36hdEUqK_PAYHdMiKdt7qdSB1pN8wYsg-mGnYA@mail.gmail.com>',NULL,NULL,'Fwd: Follow-up from call with Ed','rmislan@gmail.com','Richard Mislan','<html><head></head><body><br> <br><div class=\"gmail_signature\"><div><br></div><div><div class=\"gmail_signature\" style=\"font-family:&quot;helvetica Neue&quot;,helvetica;font-size:14px\">Rick Mislan, PhD<div><a href=\"http://www.mislan.com/\" style=\"word-wrap:break-word;word-break:break-word\">www.mislan.com</a></div><div><a href=\"tel://(585) 797-9473\" style=\"word-wrap:break-word;word-break:break-word\">(585) 797-9473</a></div></div></div></div> <p class=\"gmail_quote\" style=\"color:#000\">On April 15, 2025 at 11:11:12 AM, Richard Mislan (<a href=\"mailto:rmislan@gmail.com\">rmislan@gmail.com</a>) wrote:</p> <blockquote type=\"cite\" class=\"gmail_quote\"><span><div><div></div><div>\r\n\r\n\r\n\r\n\r\n\r\nSee attached…\r\n<div>Confirm receipt. </div>\r\n<div>Thanks!</div>\r\n<div>Rick<br>\r\n<br>\r\n<div class=\"gmail_signature\">\r\n<div><br></div>\r\n<div>\r\n<div class=\"gmail_signature\" style=\"font-family:&quot;helvetica Neue&quot;,helvetica;font-size:14px\">\r\nRick Mislan, PhD\r\n<div><a href=\"http://www.mislan.com/\" style=\"word-wrap:break-word;word-break:break-word\">\r\nwww.mislan.com</a></div>\r\n<div><a href=\"tel://(585)%20797-9473\" style=\"word-wrap:break-word;word-break:break-word\">\r\n(585) 797-9473</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"gmail_quote\" style=\"color:#000\">On April 15, 2025 at\r\n10:52:47 AM, Steve Hoover (<a href=\"mailto:shoover@impossible-objects.com\">shoover@impossible-objects.com</a>)\r\nwrote:</p>\r\n<blockquote type=\"cite\" class=\"gmail_quote\">\r\n<div style=\"line-break:after-white-space\">\r\n<div><span>Rick &amp; Ed,</span>\r\n<div><span><br></span></div>\r\n<div><span>Thanks for the time today.</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Attached is the slide deck I presented as well as a 1\r\npage investment teaser.</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Looking forward to working with you.</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Best</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Steve</span></div>\r\n<div><span><br></span></div>\r\n<hr>\r\n<span><br>\r\n<br></span>\r\n<div>\r\n<div dir=\"auto\" style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0);line-break:after-white-space\">\r\n<span>Steve Hoover<br>\r\nCEO, Impossible Objects<br>\r\n\r\n<a href=\"mailto:shoover@impossible-objects.com\" dir=\"ltr\" style=\"color:currentcolor;text-decoration-color:rgba(128,128,128,0.38)\">shoover@impossible-objects.com</a><br>\r\n<a href=\"https://impossible-objects.com/\">www.impossible-objects.com<br></a></span></div>\r\n<span><br class=\"Apple-interchange-newline\" style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\">\r\n</span></div>\r\n<span><br></span></div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n\r\n\r\n<hr></div></div></span></blockquote></body></html>','Rick Mislan, PhD\r\nwww.mislan.com\r\n(585) 797-9473 <//(585) 797-9473>\r\n\r\nOn April 15, 2025 at 11:11:12 AM, Richard Mislan (rmislan@gmail.com) wrote:\r\n\r\n> See attached…\r\n> Confirm receipt.\r\n> Thanks!\r\n> Rick\r\n>\r\n>\r\n> Rick Mislan, PhD\r\n> www.mislan.com\r\n> (585) 797-9473 <//(585)%20797-9473>\r\n>\r\n> On April 15, 2025 at 10:52:47 AM, Steve Hoover (\r\n> shoover@impossible-objects.com) wrote:\r\n>\r\n>> Rick & Ed,\r\n>>\r\n>> Thanks for the time today.\r\n>>\r\n>> Attached is the slide deck I presented as well as a 1 page investment\r\n>> teaser.\r\n>>\r\n>> Looking forward to working with you.\r\n>>\r\n>> Best\r\n>>\r\n>> Steve\r\n>>\r\n>> ------------------------------\r\n>>\r\n>>\r\n>> Steve Hoover\r\n>> CEO, Impossible Objects\r\n>> shoover@impossible-objects.com\r\n>> www.impossible-objects.com\r\n>> <https://impossible-objects.com/>\r\n>>\r\n>>\r\n>> ------------------------------\r\n>',0,0,0,0,0,0,'2025-04-18 20:35:41','2025-12-09 19:02:03','2025-12-09 19:02:03','2025-12-09 19:02:03',NULL,NULL,NULL),
(193,4,' <SA0PR18MB3662568F41DA57A7C969E916E6B82@SA0PR18MB3662.namprd18.prod.outlook.com>',NULL,NULL,'Drone overview','david.reinhard@knowmadics.com','David Reinhard','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n</head>\r\n<body>\r\n<br>\r\n<div style=\"max-width: 600px; color: #242424; font-family:\'Segoe UI\',\'Helvetica Neue\',Helvetica,Arial,sans-serif\" class=\"me-email-text\">\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n<div style=\"margin-bottom: 12px;\"><span class=\"me-email-text\" style=\"font-size: 24px;font-weight: 700; margin-right:12px;\">Microsoft Teams</span>\r\n<a id=\"meet_invite_block.action.help\" class=\"me-email-link\" style=\"font-size:14px; text-decoration:underline; color: #5B5FC7;\" href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\">\r\nNeed help?</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><a id=\"meet_invite_block.action.join_link\" title=\"Meeting join link\" class=\"me-email-headline\" style=\"font-size: 20px; font-weight:600; text-decoration: underline; color: #5B5FC7;\" href=\"https://teams.microsoft.com/l/meetup-join/19%3ameeting_MDAxNzI3NTItYTdkYS00MGFmLWJmMTUtN2ZhYmE4MmUyZTUy%40thread.v2/0?context=%7b%22Tid%22%3a%22613a19c5-071a-4194-9140-3d57660024b7%22%2c%22Oid%22%3a%227cb5d81a-7d3f-40b2-9a1a-3f7e57bbf79f%22%7d\" target=\"_blank\" rel=\"noreferrer noopener\">Join\r\n the meeting now</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Meeting ID:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">265 678 445 151 9</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Passcode:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">a78Fh9bT</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px; max-width: 532px;\">\r\n<hr style=\"border: 0; background: #D1D1D1; height: 1px;\">\r\n</div>\r\n<div>\r\n<div style=\"margin-bottom: 6px;\"><span class=\"me-email-text\" style=\"font-size: 16px; color: #242424; font-weight: 600; margin-right: 4px;\">Dial in by phone</span>\r\n</div>\r\n<div style=\"margin-bottom: 6px;\"><a id=\"meet_invite_block.action.join_phone_number1\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7; margin-right: 6px;\" href=\"tel:+16468381723,,247610863#\">+1 646-838-1723,,247610863#</a>\r\n<span class=\"me-email-text\" style=\"font-size: 14px; color: #616161;\">United States, New York City</span>\r\n</div>\r\n<div style=\"margin-bottom: 6px;\"><a id=\"meet_invite_block.action.join_phone_find_local_number\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7\" href=\"https://dialin.teams.microsoft.com/0c2eb207-e434-493d-b1cb-72d5b93f6870?id=247610863\">Find\r\n a local number</a> </div>\r\n</div>\r\n<div style=\"margin-bottom: 24px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Phone conference ID:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">247 610 863#</span>\r\n</div>\r\n<div><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">For organizers:\r\n</span><a id=\"meet_invite_block.action.organizer_meet_options\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7;\" target=\"_blank\" href=\"https://teams.microsoft.com/meetingOptions/?organizerId=7cb5d81a-7d3f-40b2-9a1a-3f7e57bbf79f&amp;tenantId=613a19c5-071a-4194-9140-3d57660024b7&amp;threadId=19_meeting_MDAxNzI3NTItYTdkYS00MGFmLWJmMTUtN2ZhYmE4MmUyZTUy@thread.v2&amp;messageId=0&amp;language=en-US\" rel=\"noreferrer noopener\">Meeting\r\n options</a> <span style=\"color: #D1D1D1\">|</span> <a id=\"meet_invite_block.action.organizer_reset_dialin_pin\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7;\" target=\"_blank\" href=\"https://dialin.teams.microsoft.com/usp/pstnconferencing\" rel=\"noreferrer noopener\">\r\nReset dial-in PIN</a> </div>\r\n<div style=\"margin-top: 24px; margin-bottom: 6px;\"></div>\r\n<div style=\"margin-bottom: 24px;\"></div>\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n</div>\r\n</body>\r\n</html>','\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://teams.microsoft.com/l/meetup-join/19%3ameeting_MDAxNzI3NTItYTdkYS00MGFmLWJmMTUtN2ZhYmE4MmUyZTUy%40thread.v2/0?context=%7b%22Tid%22%3a%22613a19c5-071a-4194-9140-3d57660024b7%22%2c%22Oid%22%3a%227cb5d81a-7d3f-40b2-9a1a-3f7e57bbf79f%22%7d>\r\nMeeting ID: 265 678 445 151 9\r\nPasscode: a78Fh9bT\r\n________________________________\r\nDial in by phone\r\n+1 646-838-1723,,247610863#<tel:+16468381723,,247610863#> United States, New York City\r\nFind a local number<https://dialin.teams.microsoft.com/0c2eb207-e434-493d-b1cb-72d5b93f6870?id=247610863>\r\nPhone conference ID: 247 610 863#\r\nFor organizers: Meeting options<https://teams.microsoft.com/meetingOptions/?organizerId=7cb5d81a-7d3f-40b2-9a1a-3f7e57bbf79f&tenantId=613a19c5-071a-4194-9140-3d57660024b7&threadId=19_meeting_MDAxNzI3NTItYTdkYS00MGFmLWJmMTUtN2ZhYmE4MmUyZTUy@thread.v2&messageId=0&language=en-US> | Reset dial-in PIN<https://dialin.teams.microsoft.com/usp/pstnconferencing>\r\n________________________________________________________________________________',0,0,0,0,0,0,'2025-04-21 15:00:36','2025-12-09 19:02:04','2025-12-09 19:02:04','2025-12-09 19:02:04',NULL,NULL,NULL),
(194,4,' <SA0PR18MB366217BE9F7AB04476C20D83E6BA2@SA0PR18MB3662.namprd18.prod.outlook.com>',NULL,NULL,'Re: Drone overview','david.reinhard@knowmadics.com','David Reinhard','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nRick,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nLink you sent isn\'t working.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nTry sending here to my email.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nDave</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"Signature\" class=\"elementToProof\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nDavid Reinhard</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nVP, MSS Tech Eval and Support</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nKnowmadics, Inc.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n13873 Park Center Rd, Ste. 202S</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHerndon, VA 20171-3249</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n(Cell) 757-944-0401</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nThis electronic transmission, including all attachments may contain confidential information and is intended to be conveyed only to the designated recipient(s) of this transmission. The contents of the transmission may also be subject to intellectual property\r\n rights and all such rights are expressly claimed and are not waived. If you have received this transmission in error, please notify the sender immediately and delete the transmission from your system. The unauthorized use, dissemination or reproduction of\r\n this electronic transmission by other that the intended recipient is strictly prohibited and may be unlawful.</div>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Wednesday, April 23, 2025 10:56 AM<br>\r\n<b>To:</b> David Reinhard &lt;david.reinhard@knowmadics.com&gt;<br>\r\n<b>Subject:</b> Re: Drone overview</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>Any luck on updating this?\r\n<div>Thanks again!<br>\r\n<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<p class=\"x_gmail_quote\" style=\"color:#000\">On April 21, 2025 at 11:00:36 AM, David Reinhard (<a href=\"mailto:david.reinhard@knowmadics.com\">david.reinhard@knowmadics.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_gmail_quote\"><span>\r\n<div>\r\n<div></div>\r\n<div><br>\r\n<div class=\"x_me-email-text\" style=\"max-width:600px; color:#242424; font-family:\'Segoe UI\',\'Helvetica Neue\',Helvetica,Arial,sans-serif\">\r\n<div style=\"margin-bottom:24px; overflow:hidden; white-space:nowrap\">________________________________________________________________________________</div>\r\n<div style=\"margin-bottom:12px\"><span class=\"x_me-email-text\" style=\"font-size:24px; font-weight:700; margin-right:12px\">Microsoft Teams</span>\r\n<a id=\"x_meet_invite_block.action.help\" class=\"x_me-email-link\" href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\" style=\"font-size:14px; text-decoration:underline; color:#5B5FC7\">\r\nNeed help?</a></div>\r\n<div style=\"margin-bottom:6px\"><a id=\"x_meet_invite_block.action.join_link\" title=\"Meeting join link\" class=\"x_me-email-headline\" href=\"https://teams.microsoft.com/l/meetup-join/19%3ameeting_MDAxNzI3NTItYTdkYS00MGFmLWJmMTUtN2ZhYmE4MmUyZTUy%40thread.v2/0?context=%7b%22Tid%22%3a%22613a19c5-071a-4194-9140-3d57660024b7%22%2c%22Oid%22%3a%227cb5d81a-7d3f-40b2-9a1a-3f7e57bbf79f%22%7d\" target=\"_blank\" rel=\"noreferrer noopener\" style=\"font-size:20px; font-weight:600; text-decoration:underline; color:#5B5FC7\">Join\r\n the meeting now</a></div>\r\n<div style=\"margin-bottom:6px\"><span class=\"x_me-email-text-secondary\" style=\"font-size:14px; color:#616161\">Meeting ID:</span>\r\n<span class=\"x_me-email-text\" style=\"font-size:14px; color:#242424\">265 678 445 151 9</span></div>\r\n<div style=\"margin-bottom:24px\"><span class=\"x_me-email-text-secondary\" style=\"font-size:14px; color:#616161\">Passcode:</span>\r\n<span class=\"x_me-email-text\" style=\"font-size:14px; color:#242424\">a78Fh9bT</span></div>\r\n<div style=\"margin-bottom:24px; max-width:532px\">\r\n<hr style=\"border:0; background:#D1D1D1; height:1px\">\r\n</div>\r\n<div>\r\n<div style=\"margin-bottom:6px\"><span class=\"x_me-email-text\" style=\"font-size:16px; color:#242424; font-weight:600; margin-right:4px\">Dial in by phone</span></div>\r\n<div style=\"margin-bottom:6px\"><a id=\"x_meet_invite_block.action.join_phone_number1\" class=\"x_me-email-link\" href=\"tel:+16468381723,,247610863#\" style=\"font-size:14px; text-decoration:underline; color:#5B5FC7; margin-right:6px\">+1 646-838-1723,,247610863#</a>\r\n<span class=\"x_me-email-text\" style=\"font-size:14px; color:#616161\">United States, New York City</span></div>\r\n<div style=\"margin-bottom:6px\"><a id=\"x_meet_invite_block.action.join_phone_find_local_number\" class=\"x_me-email-link\" href=\"https://dialin.teams.microsoft.com/0c2eb207-e434-493d-b1cb-72d5b93f6870?id=247610863\" style=\"font-size:14px; text-decoration:underline; color:#5B5FC7\">Find\r\n a local number</a></div>\r\n</div>\r\n<div style=\"margin-bottom:24px\"><span class=\"x_me-email-text-secondary\" style=\"font-size:14px; color:#616161\">Phone conference ID:</span>\r\n<span class=\"x_me-email-text\" style=\"font-size:14px; color:#242424\">247 610 863#</span></div>\r\n<div><span class=\"x_me-email-text-secondary\" style=\"font-size:14px; color:#616161\">For organizers:</span>\r\n<a id=\"x_meet_invite_block.action.organizer_meet_options\" class=\"x_me-email-link\" target=\"_blank\" href=\"https://teams.microsoft.com/meetingOptions/?organizerId=7cb5d81a-7d3f-40b2-9a1a-3f7e57bbf79f&amp;tenantId=613a19c5-071a-4194-9140-3d57660024b7&amp;threadId=19_meeting_MDAxNzI3NTItYTdkYS00MGFmLWJmMTUtN2ZhYmE4MmUyZTUy@thread.v2&amp;messageId=0&amp;language=en-US\" rel=\"noreferrer noopener\" style=\"font-size:14px; text-decoration:underline; color:#5B5FC7\">\r\nMeeting options</a> <span style=\"color:#D1D1D1\">|</span> <a id=\"x_meet_invite_block.action.organizer_reset_dialin_pin\" class=\"x_me-email-link\" target=\"_blank\" href=\"https://dialin.teams.microsoft.com/usp/pstnconferencing\" rel=\"noreferrer noopener\" style=\"font-size:14px; text-decoration:underline; color:#5B5FC7\">\r\nReset dial-in PIN</a></div>\r\n<div style=\"margin-top:24px; margin-bottom:6px\"></div>\r\n<div style=\"margin-bottom:24px\"></div>\r\n<div style=\"margin-bottom:24px; overflow:hidden; white-space:nowrap\">________________________________________________________________________________</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Rick,\r\n\r\nLink you sent isn\'t working.\r\n\r\nTry sending here to my email.\r\n\r\nDave\r\n\r\n\r\nDavid Reinhard\r\nVP, MSS Tech Eval and Support\r\nKnowmadics, Inc.\r\n13873 Park Center Rd, Ste. 202S\r\nHerndon, VA 20171-3249\r\n(Cell) 757-944-0401\r\n\r\nThis electronic transmission, including all attachments may contain confidential information and is intended to be conveyed only to the designated recipient(s) of this transmission. The contents of the transmission may also be subject to intellectual property rights and all such rights are expressly claimed and are not waived. If you have received this transmission in error, please notify the sender immediately and delete the transmission from your system. The unauthorized use, dissemination or reproduction of this electronic transmission by other that the intended recipient is strictly prohibited and may be unlawful.\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Wednesday, April 23, 2025 10:56 AM\r\nTo: David Reinhard <david.reinhard@knowmadics.com>\r\nSubject: Re: Drone overview\r\n\r\nAny luck on updating this?\r\nThanks again!\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\nOn April 21, 2025 at 11:00:36 AM, David Reinhard (david.reinhard@knowmadics.com<mailto:david.reinhard@knowmadics.com>) wrote:\r\n\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://teams.microsoft.com/l/meetup-join/19%3ameeting_MDAxNzI3NTItYTdkYS00MGFmLWJmMTUtN2ZhYmE4MmUyZTUy%40thread.v2/0?context=%7b%22Tid%22%3a%22613a19c5-071a-4194-9140-3d57660024b7%22%2c%22Oid%22%3a%227cb5d81a-7d3f-40b2-9a1a-3f7e57bbf79f%22%7d>\r\nMeeting ID: 265 678 445 151 9\r\nPasscode: a78Fh9bT\r\n________________________________\r\nDial in by phone\r\n+1 646-838-1723,,247610863#<tel:+16468381723,,247610863#> United States, New York City\r\nFind a local number<https://dialin.teams.microsoft.com/0c2eb207-e434-493d-b1cb-72d5b93f6870?id=247610863>\r\nPhone conference ID: 247 610 863#\r\nFor organizers: Meeting options<https://teams.microsoft.com/meetingOptions/?organizerId=7cb5d81a-7d3f-40b2-9a1a-3f7e57bbf79f&tenantId=613a19c5-071a-4194-9140-3d57660024b7&threadId=19_meeting_MDAxNzI3NTItYTdkYS00MGFmLWJmMTUtN2ZhYmE4MmUyZTUy@thread.v2&messageId=0&language=en-US> | Reset dial-in PIN<https://dialin.teams.microsoft.com/usp/pstnconferencing>\r\n________________________________________________________________________________\r\n',0,0,0,0,0,0,'2025-04-23 16:41:58','2025-12-09 19:02:04','2025-12-09 19:02:04','2025-12-09 19:02:04',NULL,NULL,NULL),
(195,4,'<O540tTcRfzW4e37OocpKhAkwxywe25RfHm7YYxHE@www.mavrix.one>',NULL,NULL,'New MAVRIX Mission Signup','rick@mavrix.one','MAVRIX Website','A new user has joined the MAVRIX mission!\r\n\r\nEmail: abe_amirana@teknic.com\r\n\r\n','A new user has joined the MAVRIX mission!\r\n\r\nEmail: abe_amirana@teknic.com\r\n\r\n',0,0,0,0,0,0,'2025-04-28 14:51:59','2025-12-09 19:02:04','2025-12-09 19:02:04','2025-12-09 19:02:04',NULL,NULL,NULL),
(196,4,'<CAFhmHLGn+PC=gxnLRUZryZNZg1jHkjVX6H1rgBPsehZZcV4Tuw@mail.gmail.com>',NULL,NULL,'Form submission on 29/04/2025','info@icarusswarms.ai','\"Jd Lauwereins (IS) from Icarus Swarms\"','<html><head></head><body><div class=\"hs_reply_wrap\">\r\n <div style=\"font-family:Tahoma;color:#000000\" dir=\"auto\">\r\n  <p style=\"margin:0\"><span style=\"font-size:11pt\">Dear Rick,</span><br><br><span style=\"font-size:11pt\">Thank you very much for your offer to help. However, as a non-American company, we may not align perfectly with your expertise. </span></p>\r\n  <p style=\"margin:0\"><span style=\"font-size:11pt\">Additionally, our strategy includes some confidential aspects that limit the details we can share. Could you clarify how you believe you can assist us in raising funds?</span><br><br><span style=\"font-size:11pt\">Thank you for your understanding,</span></p>\r\n  <br>\r\n  <br>\r\n </div>\r\n <div class=\"hs_reply\">\r\n  <br>\r\n  <div>\r\n   mardi 29 avril 2025, 18:19:05 +0200, Rick Mislan \r\n   <span dir=\"ltr\">&lt;<a href=\"mailto:rick@mavrix.one\" target=\"_blank\">rick@mavrix.one</a>&gt;</span>:\r\n   <br>\r\n   <blockquote class=\"hs_reply_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\">\r\n    <div>\r\n     First name: Rick\r\n    </div>\r\n    <div>\r\n     Last name: Mislan\r\n    </div>\r\n    <div>\r\n     Email: rick@mavrix.one\r\n    </div>\r\n    <div>\r\n     Message: I believe I can help with your current funding round and beyond. \r\n     <br> Please contact me asap with your pitch deck and a time when we can connect. \r\n     <br> Thanks, \r\n     <br> Rick\r\n    </div>\r\n   </blockquote>\r\n  </div>\r\n </div>\r\n</div><img width=\"1\" height=\"1\" style=\"display:none\" alt=\"\" src=\"https://cTGwW04.na1.hs-service-engage.com/Cto/GE+23284/cTGwW04/R5R8b48vtN70Tyzy2fDg4W25dwdy3yQ6ZBW20YCWy1W_nyCW1Gc-yR1S07bSW1NvMXd3yQcPjW24VczS1Q44F4n1S3Vyj4W1\"></body></html>','Dear Rick,\r\n\r\nThank you very much for your offer to help. However, as a non-American\r\ncompany, we may not align perfectly with your expertise.\r\n\r\nAdditionally, our strategy includes some confidential aspects that limit\r\nthe details we can share. Could you clarify how you believe you can assist\r\nus in raising funds?\r\n\r\nThank you for your understanding,\r\n\r\n\r\n\r\nmardi 29 avril 2025, 18:19:05 +0200, Rick Mislan <rick@mavrix.one>:\r\n\r\nFirst name: Rick\r\nLast name: Mislan\r\nEmail: rick@mavrix.one\r\nMessage: I believe I can help with your current funding round and beyond.\r\nPlease contact me asap with your pitch deck and a time when we can connect.\r\nThanks,\r\nRick',0,0,0,0,0,0,'2025-04-29 16:46:32','2025-12-09 19:02:04','2025-12-09 19:02:04','2025-12-09 19:02:04',NULL,NULL,NULL),
(197,4,' <SA0PR18MB366266DB040B116E75D66FF5E6B82@SA0PR18MB3662.namprd18.prod.outlook.com>',NULL,NULL,'Drone Talk','david.reinhard@knowmadics.com','David Reinhard','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n</head>\r\n<body>\r\n<br>\r\n<div style=\"max-width: 600px; color: #242424; font-family:\'Segoe UI\',\'Helvetica Neue\',Helvetica,Arial,sans-serif\" class=\"me-email-text\">\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n<div style=\"margin-bottom: 12px;\"><span class=\"me-email-text\" style=\"font-size: 24px;font-weight: 700; margin-right:12px;\">Microsoft Teams</span>\r\n<a id=\"meet_invite_block.action.help\" class=\"me-email-link\" style=\"font-size:14px; text-decoration:underline; color: #5B5FC7;\" href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\">\r\nNeed help?</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><a id=\"meet_invite_block.action.join_link\" title=\"Meeting join link\" class=\"me-email-headline\" style=\"font-size: 20px; font-weight:600; text-decoration: underline; color: #5B5FC7;\" href=\"https://teams.microsoft.com/l/meetup-join/19%3ameeting_NjdhMDliMDMtZTgyNS00ZTA2LThiOGMtOTZiYTEyZmI5MGJk%40thread.v2/0?context=%7b%22Tid%22%3a%22613a19c5-071a-4194-9140-3d57660024b7%22%2c%22Oid%22%3a%227cb5d81a-7d3f-40b2-9a1a-3f7e57bbf79f%22%7d\" target=\"_blank\" rel=\"noreferrer noopener\">Join\r\n the meeting now</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Meeting ID:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">233 860 699 308 9</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Passcode:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">gJ3VY6Xn</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px; max-width: 532px;\">\r\n<hr style=\"border: 0; background: #D1D1D1; height: 1px;\">\r\n</div>\r\n<div>\r\n<div style=\"margin-bottom: 6px;\"><span class=\"me-email-text\" style=\"font-size: 16px; color: #242424; font-weight: 600; margin-right: 4px;\">Dial in by phone</span>\r\n</div>\r\n<div style=\"margin-bottom: 6px;\"><a id=\"meet_invite_block.action.join_phone_number1\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7; margin-right: 6px;\" href=\"tel:+16468381723,,799187331#\">+1 646-838-1723,,799187331#</a>\r\n<span class=\"me-email-text\" style=\"font-size: 14px; color: #616161;\">United States, New York City</span>\r\n</div>\r\n<div style=\"margin-bottom: 6px;\"><a id=\"meet_invite_block.action.join_phone_find_local_number\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7\" href=\"https://dialin.teams.microsoft.com/0c2eb207-e434-493d-b1cb-72d5b93f6870?id=799187331\">Find\r\n a local number</a> </div>\r\n</div>\r\n<div style=\"margin-bottom: 24px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Phone conference ID:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">799 187 331#</span>\r\n</div>\r\n<div><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">For organizers:\r\n</span><a id=\"meet_invite_block.action.organizer_meet_options\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7;\" target=\"_blank\" href=\"https://teams.microsoft.com/meetingOptions/?organizerId=7cb5d81a-7d3f-40b2-9a1a-3f7e57bbf79f&amp;tenantId=613a19c5-071a-4194-9140-3d57660024b7&amp;threadId=19_meeting_NjdhMDliMDMtZTgyNS00ZTA2LThiOGMtOTZiYTEyZmI5MGJk@thread.v2&amp;messageId=0&amp;language=en-US\" rel=\"noreferrer noopener\">Meeting\r\n options</a> <span style=\"color: #D1D1D1\">|</span> <a id=\"meet_invite_block.action.organizer_reset_dialin_pin\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7;\" target=\"_blank\" href=\"https://dialin.teams.microsoft.com/usp/pstnconferencing\" rel=\"noreferrer noopener\">\r\nReset dial-in PIN</a> </div>\r\n<div style=\"margin-top: 24px; margin-bottom: 6px;\"></div>\r\n<div style=\"margin-bottom: 24px;\"></div>\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n</div>\r\n</body>\r\n</html>','\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://teams.microsoft.com/l/meetup-join/19%3ameeting_NjdhMDliMDMtZTgyNS00ZTA2LThiOGMtOTZiYTEyZmI5MGJk%40thread.v2/0?context=%7b%22Tid%22%3a%22613a19c5-071a-4194-9140-3d57660024b7%22%2c%22Oid%22%3a%227cb5d81a-7d3f-40b2-9a1a-3f7e57bbf79f%22%7d>\r\nMeeting ID: 233 860 699 308 9\r\nPasscode: gJ3VY6Xn\r\n________________________________\r\nDial in by phone\r\n+1 646-838-1723,,799187331#<tel:+16468381723,,799187331#> United States, New York City\r\nFind a local number<https://dialin.teams.microsoft.com/0c2eb207-e434-493d-b1cb-72d5b93f6870?id=799187331>\r\nPhone conference ID: 799 187 331#\r\nFor organizers: Meeting options<https://teams.microsoft.com/meetingOptions/?organizerId=7cb5d81a-7d3f-40b2-9a1a-3f7e57bbf79f&tenantId=613a19c5-071a-4194-9140-3d57660024b7&threadId=19_meeting_NjdhMDliMDMtZTgyNS00ZTA2LThiOGMtOTZiYTEyZmI5MGJk@thread.v2&messageId=0&language=en-US> | Reset dial-in PIN<https://dialin.teams.microsoft.com/usp/pstnconferencing>\r\n________________________________________________________________________________',0,0,0,0,0,0,'2025-04-21 14:58:21','2025-12-09 19:02:05','2025-12-09 19:02:05','2025-12-09 19:02:05',NULL,NULL,NULL),
(198,4,'<CAFhmHLEAH7FNJzjCWh+eiBPgtQTi0JhpoOSrXhoWwT4upw0ecw@mail.gmail.com>',NULL,NULL,'Re: Icarus Swarms','info@icarusswarms.ai','\"Jd Lauwereins (IS) from Icarus Swarms\"','<html><head></head><body><div class=\"hs_reply_wrap\">\r\n <div style=\"font-family:Tahoma;color:#000000\" dir=\"auto\">\r\n  <p style=\"margin:0\"><span style=\"font-size:11pt\">Hello Rick,</span><br><br><span style=\"font-size:11pt\">Thank you for your response! I look forward to getting to know you better. I would be happy to have a conversation with you. I will send you a few calendar invitations, so please feel free to accept the one that works best for you. I hope to talk to you tomorrow!</span><br><br><span style=\"font-size:11pt\">Kind regards,</span></p>\r\n </div>\r\n <div class=\"hs_reply\">\r\n  <br>\r\n  <div>\r\n   mardi 29 avril 2025, 19:08:06 +0200, Rick \r\n   <span dir=\"ltr\">&lt;<a href=\"mailto:rick@mavrix.one\" target=\"_blank\">rick@mavrix.one</a>&gt;</span>:\r\n   <br>\r\n   <blockquote class=\"hs_reply_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"> \r\n    <div>\r\n      JD, \r\n    </div> \r\n    <div>\r\n      Bonjour, \r\n    </div> \r\n    <div>\r\n      I’m not sure you quite understand who I am and who I represent and would like the opportunity to chat… \r\n    </div> \r\n    <div>\r\n      We just did a $75M round for class 3 drone systems.  \r\n    </div> \r\n    <div>\r\n      I believe we can help you with your capital needs within 45-60 days….from $M - $B…. \r\n    </div> \r\n    <div>\r\n      Please don’t underestimate the work I have done for my brothers who serve worldwide. \r\n    </div> \r\n    <div>\r\n      Please, contact me at your convenience. \r\n    </div> \r\n    <div>\r\n      585-797-9473 \r\n    </div> \r\n    <div>\r\n      Or setup a vid con. \r\n    </div> \r\n    <div>\r\n      Respectfully, \r\n    </div> \r\n    <div>\r\n      Rick \r\n    </div> \r\n    <br> \r\n    <div class=\"gmail_signature\"> \r\n     <title></title> Rick Mislan, PhD \r\n     <br> \r\n     <div> \r\n      <a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a> \r\n     </div> \r\n     <div> \r\n     </div> \r\n    </div> \r\n    <p class=\"gmail_quote\" style=\"color:#000\">On April 29, 2025 at 12:46:32 PM, Jd Lauwereins (IS) from Icarus Swarms (<a href=\"mailto:info@icarusswarms.ai\">info@icarusswarms.ai</a>) wrote:</p> \r\n    <blockquote type=\"cite\" class=\"gmail_quote\"> \r\n     <span> \r\n      <div> \r\n       <div></div> \r\n       <div> \r\n        <div class=\"hs_reply_wrap\"> \r\n         <div style=\"font-family:Tahoma;color:#000000\" dir=\"auto\"> \r\n          <p style=\"margin:0\"><span style=\"font-size:11pt\">Dear Rick,</span><br> <br> <span style=\"font-size:11pt\">Thank you very much for your offer to help. However, as a non-American company, we may not align perfectly with your expertise.</span></p> \r\n          <p style=\"margin:0\"><span style=\"font-size:11pt\">Additionally, our strategy includes some confidential aspects that limit the details we can share. Could you clarify how you believe you can assist us in raising funds?</span><br> <br> <span style=\"font-size:11pt\">Thank you for your understanding,</span></p> \r\n          <br> \r\n          <br> \r\n         </div> \r\n         <div class=\"hs_reply\"> \r\n          <br> \r\n          <div>\r\n            mardi 29 avril 2025, 18:19:05 +0200, Rick Mislan \r\n           <span dir=\"ltr\">&lt;<a href=\"mailto:rick@mavrix.one\" target=\"_blank\">rick@mavrix.one</a>&gt;</span>: \r\n           <br> \r\n           <blockquote class=\"hs_reply_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"> \r\n            <div>\r\n              First name: Rick \r\n            </div> \r\n            <div>\r\n              Last name: Mislan \r\n            </div> \r\n            <div>\r\n              Email: rick@mavrix.one \r\n            </div> \r\n            <div>\r\n              Message: I believe I can help with your current funding round and beyond. \r\n             <br> Please contact me asap with your pitch deck and a time when we can connect. \r\n             <br> Thanks, \r\n             <br> Rick \r\n            </div> \r\n           </blockquote> \r\n          </div> \r\n         </div> \r\n        </div> \r\n       </div> \r\n      </div></span> \r\n    </blockquote>  \r\n   </blockquote>\r\n  </div>\r\n </div>\r\n</div><img width=\"1\" height=\"1\" style=\"display:none\" alt=\"\" src=\"https://cTGwW04.na1.hs-service-engage.com/Cto/GE+23284/cTGwW04/R5R8b48vtN70Tyzy2fJnVW3K3j1K1--tfZW23gPMp1Xmhb2W1Gdtx81Q1BPsW1SqCBr1SrT0lW21j5lJ1Q44F4n1S3Vyj4W1\"></body></html>','Hello Rick,\r\n\r\nThank you for your response! I look forward to getting to know you better.\r\nI would be happy to have a conversation with you. I will send you a few\r\ncalendar invitations, so please feel free to accept the one that works best\r\nfor you. I hope to talk to you tomorrow!\r\n\r\nKind regards,\r\n\r\nmardi 29 avril 2025, 19:08:06 +0200, Rick <rick@mavrix.one>:\r\n\r\nJD,\r\nBonjour,\r\nI’m not sure you quite understand who I am and who I represent and would\r\nlike the opportunity to chat…\r\nWe just did a $75M round for class 3 drone systems.\r\nI believe we can help you with your capital needs within 45-60 days….from\r\n$M - $B….\r\nPlease don’t underestimate the work I have done for my brothers who serve\r\nworldwide.\r\nPlease, contact me at your convenience.\r\n585-797-9473\r\nOr setup a vid con.\r\nRespectfully,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one <https://mavrix.one https://mavrix.one\r\nhttps://mavrix.one>\r\n\r\nOn April 29, 2025 at 12:46:32 PM, Jd Lauwereins (IS) from Icarus Swarms (\r\ninfo@icarusswarms.ai) wrote:\r\n\r\n> Dear Rick,\r\n>\r\n> Thank you very much for your offer to help. However, as a non-American\r\n> company, we may not align perfectly with your expertise.\r\n>\r\n> Additionally, our strategy includes some confidential aspects that limit\r\n> the details we can share. Could you clarify how you believe you can assist\r\n> us in raising funds?\r\n>\r\n> Thank you for your understanding,\r\n>\r\n>\r\n>\r\n> mardi 29 avril 2025, 18:19:05 +0200, Rick Mislan <rick@mavrix.one>:\r\n>\r\n> First name: Rick\r\n> Last name: Mislan\r\n> Email: rick@mavrix.one\r\n> Message: I believe I can help with your current funding round and beyond.\r\n> Please contact me asap with your pitch deck and a time when we can\r\n> connect.\r\n> Thanks,\r\n> Rick\r\n>\r\n>',0,0,0,0,0,0,'2025-04-29 19:57:47','2025-12-09 19:02:05','2025-12-09 19:02:05','2025-12-09 19:02:05',NULL,NULL,NULL),
(199,4,'<calendar-396022d8-3eb7-42d4-9810-495d375ec24c@google.com>',NULL,NULL,'Invitation: Rick / Jean-Dominique ? - mer. 30 avr. 2025 15:00 - 15:30 (UTC+2) (rick@mavrix.one)','jdlauwereins@icarusswarms.ai','Jean-dominique Lauwereins','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v143/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v117/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation reçue de Jean-dominique Lauwereins\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"6oo5cp5eq7lqh4jj4lquj95h15\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Rick / Jean-Dominique ?</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=Nm9vNWNwNWVxN2xxaDRqajRscXVqOTVoMTUgcmlja0BtYXZyaXgub25l&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haTljOWQzODFjOWM0MGZkNmZiMmRkNzcwMmU2NDg0NWVhNGM0Mjg5OTk&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250430T130000Z\"></time><time itemprop=\"endDate\" datetime=\"20250430T133000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">Participer avec Google Meet - Vous avez été invité par Jean-dominique Lauwereins à participer à un événement appelé Rick / Jean-Dominique ? le mercredi 30 avr. 2025 ⋅ 15:00 – 15:30 (Heure d’Europe centrale - Paris).</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:28px;\"><a href=\"https://meet.google.com/udz-trbr-ebv?hs=224\" class=\"primary-button-text\" style=\"display: inline-block;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"display: inline-block\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"background-color: #1a73e8; cursor: auto; padding: 10px 25px; border: none; border-radius: 4px; margin: 0;\" class=\"primary-button\"><!--[if mso]><a href=\"https://meet.google.com/udz-trbr-ebv?hs=224\" class=\"primary-button-text\" target=\"_blank\"><![endif]--><span class=\"primary-button-text\" style=\"font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\">Participer avec Google Meet</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Lien de la réunion</h2></td></tr></table><!-- Use grey text for the Meet link--><div><a style=\"display: inline-block;;color: #70757a; text-decoration: none;\" class=\"secondary-text underline-on-hover\" href=\"https://meet.google.com/udz-trbr-ebv?hs=224\">meet.google.com/udz-trbr-ebv</a></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Participer par téléphone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(FR) </span><a href=\"tel:+33-1-87-40-25-69%3B755246454%23\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+33 1 87 40 25 69</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">CODE SECRET: 755246454</span><br><br><a href=\"https://tel.meet/udz-trbr-ebv?pin=7365041075531&amp;hs=0\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">Plus de numéros de téléphone</a><br></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250430T130000Z\"></time><time itemprop=\"endDate\" datetime=\"20250430T133000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Date</h2></td></tr></table><span>mercredi 30 avr. 2025 ⋅ 15:00 – 15:30 (Heure d’Europe centrale - Paris)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Invités</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jdlauwereins@icarusswarms.ai\">Jean-dominique Lauwereins</a></span><meta itemprop=\"email\" content=\"jdlauwereins@icarusswarms.ai\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Jean-dominique Lauwereins\"/><meta itemprop=\"email\" content=\"jdlauwereins@icarusswarms.ai\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\">- organisateur</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=Nm9vNWNwNWVxN2xxaDRqajRscXVqOTVoMTUgcmlja0BtYXZyaXgub25l&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haTljOWQzODFjOWM0MGZkNmZiMmRkNzcwMmU2NDg0NWVhNGM0Mjg5OTk&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">Afficher les informations sur tous les invités</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Répondre</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> pour <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=Nm9vNWNwNWVxN2xxaDRqajRscXVqOTVoMTUgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haTljOWQzODFjOWM0MGZkNmZiMmRkNzcwMmU2NDg0NWVhNGM0Mjg5OTk&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=Nm9vNWNwNWVxN2xxaDRqajRscXVqOTVoMTUgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haTljOWQzODFjOWM0MGZkNmZiMmRkNzcwMmU2NDg0NWVhNGM0Mjg5OTk&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Oui</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=Nm9vNWNwNWVxN2xxaDRqajRscXVqOTVoMTUgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haTljOWQzODFjOWM0MGZkNmZiMmRkNzcwMmU2NDg0NWVhNGM0Mjg5OTk&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=Nm9vNWNwNWVxN2xxaDRqajRscXVqOTVoMTUgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haTljOWQzODFjOWM0MGZkNmZiMmRkNzcwMmU2NDg0NWVhNGM0Mjg5OTk&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Non</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=Nm9vNWNwNWVxN2xxaDRqajRscXVqOTVoMTUgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haTljOWQzODFjOWM0MGZkNmZiMmRkNzcwMmU2NDg0NWVhNGM0Mjg5OTk&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=Nm9vNWNwNWVxN2xxaDRqajRscXVqOTVoMTUgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haTljOWQzODFjOWM0MGZkNmZiMmRkNzcwMmU2NDg0NWVhNGM0Mjg5OTk&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Peut-être</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=Nm9vNWNwNWVxN2xxaDRqajRscXVqOTVoMTUgcmlja0BtYXZyaXgub25l&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haTljOWQzODFjOWM0MGZkNmZiMmRkNzcwMmU2NDg0NWVhNGM0Mjg5OTk&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=Nm9vNWNwNWVxN2xxaDRqajRscXVqOTVoMTUgcmlja0BtYXZyaXgub25l&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haTljOWQzODFjOWM0MGZkNmZiMmRkNzcwMmU2NDg0NWVhNGM0Mjg5OTk&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Autres options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation de <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Agenda</a></p><p>Vous recevez cet e-mail, car vous participez à l’événement.</p><p>En transférant cette invitation, vous risquez d’autoriser tous les destinataires à envoyer une réponse à l’organisateur, à être ajoutés à la liste des invités, à inviter d’autres personnes indépendamment de l’état de l’invitation qu’ils ont reçue, ou à modifier votre réponse à l’invitation. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">En savoir plus</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','Rick / Jean-Dominique ?\r\nmercredi 30 avr. 2025 ⋅ 15:00 – 15:30\r\nHeure d’Europe centrale - Paris\r\n\r\nParticiper avec Google Meet\r\nhttps://meet.google.com/udz-trbr-ebv?hs=224\r\n\r\n\r\n	\r\nParticiper par téléphone\r\n(FR) +33 1 87 40 25 69\r\nCODE SECRET: 755246454\r\n\r\nPlus de numéros de téléphone\r\nhttps://tel.meet/udz-trbr-ebv?pin=7365041075531&hs=0\r\n\r\n\r\nOrganisateur\r\nJean-dominique Lauwereins\r\njdlauwereins@icarusswarms.ai\r\n\r\nInvités\r\nJean-dominique Lauwereins- organisateur\r\nrick@mavrix.one\r\nAfficher les informations sur tous les invités  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=Nm9vNWNwNWVxN2xxaDRqajRscXVqOTVoMTUgcmlja0BtYXZyaXgub25l&tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haTljOWQzODFjOWM0MGZkNmZiMmRkNzcwMmU2NDg0NWVhNGM0Mjg5OTk&ctz=Europe%2FParis&hl=fr&es=0\r\n\r\nRépondre pour rick@mavrix.one et afficher plus de détails :  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=Nm9vNWNwNWVxN2xxaDRqajRscXVqOTVoMTUgcmlja0BtYXZyaXgub25l&tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haTljOWQzODFjOWM0MGZkNmZiMmRkNzcwMmU2NDg0NWVhNGM0Mjg5OTk&ctz=Europe%2FParis&hl=fr&es=0\r\nVotre participation est facultative.\r\n\r\n~~//~~\r\nInvitation de Google Agenda : https://calendar.google.com/calendar/\r\n\r\nVous recevez cet e-mail, car vous participez à l’événement.\r\n\r\nEn transférant cette invitation, vous risquez d’autoriser tous les  \r\ndestinataires à envoyer une réponse à l’organisateur, à être ajoutés à la  \r\nliste des invités, à inviter d’autres personnes indépendamment de l’état de  \r\nl’invitation qu’ils ont reçue, ou à modifier votre réponse à l’invitation.\r\n\r\nEn savoir plus https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-04-29 19:58:33','2025-12-09 19:02:05','2025-12-09 19:02:05','2025-12-09 19:02:05',NULL,NULL,NULL),
(200,4,'<calendar-600b3b05-2b94-4ffe-9ffb-97c0bf8016d9@google.com>',NULL,NULL,'Invitation: Rick / Jean-Dominique ? - mer. 30 avr. 2025 17:00 - 17:30 (UTC+2) (rick@mavrix.one)','jdlauwereins@icarusswarms.ai','Jean-dominique Lauwereins','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v143/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v117/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation reçue de Jean-dominique Lauwereins\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"3tur4ur40sdqf3gu022ucaleks\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Rick / Jean-Dominique ?</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M3R1cjR1cjQwc2RxZjNndTAyMnVjYWxla3Mgcmlja0BtYXZyaXgub25l&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haThhZjEzMjUzN2I4ZWNmMjRhODIxOTA1YmNlN2FkMDg1YjY1MDliMzU&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250430T150000Z\"></time><time itemprop=\"endDate\" datetime=\"20250430T153000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">Participer avec Google Meet - Vous avez été invité par Jean-dominique Lauwereins à participer à un événement appelé Rick / Jean-Dominique ? le mercredi 30 avr. 2025 ⋅ 17:00 – 17:30 (Heure d’Europe centrale - Paris).</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:28px;\"><a href=\"https://meet.google.com/sro-kfja-ouh?hs=224\" class=\"primary-button-text\" style=\"display: inline-block;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"display: inline-block\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"background-color: #1a73e8; cursor: auto; padding: 10px 25px; border: none; border-radius: 4px; margin: 0;\" class=\"primary-button\"><!--[if mso]><a href=\"https://meet.google.com/sro-kfja-ouh?hs=224\" class=\"primary-button-text\" target=\"_blank\"><![endif]--><span class=\"primary-button-text\" style=\"font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\">Participer avec Google Meet</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Lien de la réunion</h2></td></tr></table><!-- Use grey text for the Meet link--><div><a style=\"display: inline-block;;color: #70757a; text-decoration: none;\" class=\"secondary-text underline-on-hover\" href=\"https://meet.google.com/sro-kfja-ouh?hs=224\">meet.google.com/sro-kfja-ouh</a></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Participer par téléphone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(FR) </span><a href=\"tel:+33-1-87-40-07-41%3B433506526%23\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+33 1 87 40 07 41</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">CODE SECRET: 433506526</span><br><br><a href=\"https://tel.meet/sro-kfja-ouh?pin=7466597892228&amp;hs=0\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">Plus de numéros de téléphone</a><br></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250430T150000Z\"></time><time itemprop=\"endDate\" datetime=\"20250430T153000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Date</h2></td></tr></table><span>mercredi 30 avr. 2025 ⋅ 17:00 – 17:30 (Heure d’Europe centrale - Paris)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Invités</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jdlauwereins@icarusswarms.ai\">Jean-dominique Lauwereins</a></span><meta itemprop=\"email\" content=\"jdlauwereins@icarusswarms.ai\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Jean-dominique Lauwereins\"/><meta itemprop=\"email\" content=\"jdlauwereins@icarusswarms.ai\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\">- organisateur</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M3R1cjR1cjQwc2RxZjNndTAyMnVjYWxla3Mgcmlja0BtYXZyaXgub25l&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haThhZjEzMjUzN2I4ZWNmMjRhODIxOTA1YmNlN2FkMDg1YjY1MDliMzU&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">Afficher les informations sur tous les invités</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Répondre</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> pour <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3R1cjR1cjQwc2RxZjNndTAyMnVjYWxla3Mgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haThhZjEzMjUzN2I4ZWNmMjRhODIxOTA1YmNlN2FkMDg1YjY1MDliMzU&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3R1cjR1cjQwc2RxZjNndTAyMnVjYWxla3Mgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haThhZjEzMjUzN2I4ZWNmMjRhODIxOTA1YmNlN2FkMDg1YjY1MDliMzU&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Oui</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3R1cjR1cjQwc2RxZjNndTAyMnVjYWxla3Mgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haThhZjEzMjUzN2I4ZWNmMjRhODIxOTA1YmNlN2FkMDg1YjY1MDliMzU&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3R1cjR1cjQwc2RxZjNndTAyMnVjYWxla3Mgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haThhZjEzMjUzN2I4ZWNmMjRhODIxOTA1YmNlN2FkMDg1YjY1MDliMzU&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Non</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3R1cjR1cjQwc2RxZjNndTAyMnVjYWxla3Mgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haThhZjEzMjUzN2I4ZWNmMjRhODIxOTA1YmNlN2FkMDg1YjY1MDliMzU&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3R1cjR1cjQwc2RxZjNndTAyMnVjYWxla3Mgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haThhZjEzMjUzN2I4ZWNmMjRhODIxOTA1YmNlN2FkMDg1YjY1MDliMzU&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Peut-être</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M3R1cjR1cjQwc2RxZjNndTAyMnVjYWxla3Mgcmlja0BtYXZyaXgub25l&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haThhZjEzMjUzN2I4ZWNmMjRhODIxOTA1YmNlN2FkMDg1YjY1MDliMzU&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M3R1cjR1cjQwc2RxZjNndTAyMnVjYWxla3Mgcmlja0BtYXZyaXgub25l&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haThhZjEzMjUzN2I4ZWNmMjRhODIxOTA1YmNlN2FkMDg1YjY1MDliMzU&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Autres options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation de <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Agenda</a></p><p>Vous recevez cet e-mail, car vous participez à l’événement.</p><p>En transférant cette invitation, vous risquez d’autoriser tous les destinataires à envoyer une réponse à l’organisateur, à être ajoutés à la liste des invités, à inviter d’autres personnes indépendamment de l’état de l’invitation qu’ils ont reçue, ou à modifier votre réponse à l’invitation. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">En savoir plus</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','Rick / Jean-Dominique ?\r\nmercredi 30 avr. 2025 ⋅ 17:00 – 17:30\r\nHeure d’Europe centrale - Paris\r\n\r\nParticiper avec Google Meet\r\nhttps://meet.google.com/sro-kfja-ouh?hs=224\r\n\r\n\r\n	\r\nParticiper par téléphone\r\n(FR) +33 1 87 40 07 41\r\nCODE SECRET: 433506526\r\n\r\nPlus de numéros de téléphone\r\nhttps://tel.meet/sro-kfja-ouh?pin=7466597892228&hs=0\r\n\r\n\r\nOrganisateur\r\nJean-dominique Lauwereins\r\njdlauwereins@icarusswarms.ai\r\n\r\nInvités\r\nJean-dominique Lauwereins- organisateur\r\nrick@mavrix.one\r\nAfficher les informations sur tous les invités  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=M3R1cjR1cjQwc2RxZjNndTAyMnVjYWxla3Mgcmlja0BtYXZyaXgub25l&tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haThhZjEzMjUzN2I4ZWNmMjRhODIxOTA1YmNlN2FkMDg1YjY1MDliMzU&ctz=Europe%2FParis&hl=fr&es=0\r\n\r\nRépondre pour rick@mavrix.one et afficher plus de détails :  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=M3R1cjR1cjQwc2RxZjNndTAyMnVjYWxla3Mgcmlja0BtYXZyaXgub25l&tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haThhZjEzMjUzN2I4ZWNmMjRhODIxOTA1YmNlN2FkMDg1YjY1MDliMzU&ctz=Europe%2FParis&hl=fr&es=0\r\nVotre participation est facultative.\r\n\r\n~~//~~\r\nInvitation de Google Agenda : https://calendar.google.com/calendar/\r\n\r\nVous recevez cet e-mail, car vous participez à l’événement.\r\n\r\nEn transférant cette invitation, vous risquez d’autoriser tous les  \r\ndestinataires à envoyer une réponse à l’organisateur, à être ajoutés à la  \r\nliste des invités, à inviter d’autres personnes indépendamment de l’état de  \r\nl’invitation qu’ils ont reçue, ou à modifier votre réponse à l’invitation.\r\n\r\nEn savoir plus https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-04-29 19:58:55','2025-12-09 19:02:06','2025-12-09 19:02:06','2025-12-09 19:02:06',NULL,NULL,NULL),
(201,4,'<calendar-8b4bd769-1710-40a6-83a4-a0b8366f9c92@google.com>',NULL,NULL,'Invitation: Rick / Jean-Dominique ? - mer. 30 avr. 2025 18:00 - 18:30 (UTC+2) (rick@mavrix.one)','jdlauwereins@icarusswarms.ai','Jean-dominique Lauwereins','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v143/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v117/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation reçue de Jean-dominique Lauwereins\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"1mkrlpcpv5u3oe1lt1oqk2nmib\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Rick / Jean-Dominique ?</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MW1rcmxwY3B2NXUzb2UxbHQxb3FrMm5taWIgcmlja0BtYXZyaXgub25l&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haWY0YzViNDEwMTc0ZTBiODk4MDAzNGNmM2MwN2UzYTNlMmM4OWI2MGI&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250430T160000Z\"></time><time itemprop=\"endDate\" datetime=\"20250430T163000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">Participer avec Google Meet - Vous avez été invité par Jean-dominique Lauwereins à participer à un événement appelé Rick / Jean-Dominique ? le mercredi 30 avr. 2025 ⋅ 18:00 – 18:30 (Heure d’Europe centrale - Paris).</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:28px;\"><a href=\"https://meet.google.com/zja-efqp-zcx?hs=224\" class=\"primary-button-text\" style=\"display: inline-block;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"display: inline-block\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"background-color: #1a73e8; cursor: auto; padding: 10px 25px; border: none; border-radius: 4px; margin: 0;\" class=\"primary-button\"><!--[if mso]><a href=\"https://meet.google.com/zja-efqp-zcx?hs=224\" class=\"primary-button-text\" target=\"_blank\"><![endif]--><span class=\"primary-button-text\" style=\"font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\">Participer avec Google Meet</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Lien de la réunion</h2></td></tr></table><!-- Use grey text for the Meet link--><div><a style=\"display: inline-block;;color: #70757a; text-decoration: none;\" class=\"secondary-text underline-on-hover\" href=\"https://meet.google.com/zja-efqp-zcx?hs=224\">meet.google.com/zja-efqp-zcx</a></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Participer par téléphone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(FR) </span><a href=\"tel:+33-1-87-40-14-31%3B255237581%23\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+33 1 87 40 14 31</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">CODE SECRET: 255237581</span><br><br><a href=\"https://tel.meet/zja-efqp-zcx?pin=9667789423531&amp;hs=0\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">Plus de numéros de téléphone</a><br></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250430T160000Z\"></time><time itemprop=\"endDate\" datetime=\"20250430T163000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Date</h2></td></tr></table><span>mercredi 30 avr. 2025 ⋅ 18:00 – 18:30 (Heure d’Europe centrale - Paris)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Invités</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jdlauwereins@icarusswarms.ai\">Jean-dominique Lauwereins</a></span><meta itemprop=\"email\" content=\"jdlauwereins@icarusswarms.ai\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Jean-dominique Lauwereins\"/><meta itemprop=\"email\" content=\"jdlauwereins@icarusswarms.ai\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\">- organisateur</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MW1rcmxwY3B2NXUzb2UxbHQxb3FrMm5taWIgcmlja0BtYXZyaXgub25l&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haWY0YzViNDEwMTc0ZTBiODk4MDAzNGNmM2MwN2UzYTNlMmM4OWI2MGI&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">Afficher les informations sur tous les invités</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Répondre</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> pour <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MW1rcmxwY3B2NXUzb2UxbHQxb3FrMm5taWIgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haWY0YzViNDEwMTc0ZTBiODk4MDAzNGNmM2MwN2UzYTNlMmM4OWI2MGI&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MW1rcmxwY3B2NXUzb2UxbHQxb3FrMm5taWIgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haWY0YzViNDEwMTc0ZTBiODk4MDAzNGNmM2MwN2UzYTNlMmM4OWI2MGI&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Oui</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MW1rcmxwY3B2NXUzb2UxbHQxb3FrMm5taWIgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haWY0YzViNDEwMTc0ZTBiODk4MDAzNGNmM2MwN2UzYTNlMmM4OWI2MGI&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MW1rcmxwY3B2NXUzb2UxbHQxb3FrMm5taWIgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haWY0YzViNDEwMTc0ZTBiODk4MDAzNGNmM2MwN2UzYTNlMmM4OWI2MGI&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Non</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MW1rcmxwY3B2NXUzb2UxbHQxb3FrMm5taWIgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haWY0YzViNDEwMTc0ZTBiODk4MDAzNGNmM2MwN2UzYTNlMmM4OWI2MGI&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MW1rcmxwY3B2NXUzb2UxbHQxb3FrMm5taWIgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haWY0YzViNDEwMTc0ZTBiODk4MDAzNGNmM2MwN2UzYTNlMmM4OWI2MGI&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Peut-être</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MW1rcmxwY3B2NXUzb2UxbHQxb3FrMm5taWIgcmlja0BtYXZyaXgub25l&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haWY0YzViNDEwMTc0ZTBiODk4MDAzNGNmM2MwN2UzYTNlMmM4OWI2MGI&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MW1rcmxwY3B2NXUzb2UxbHQxb3FrMm5taWIgcmlja0BtYXZyaXgub25l&amp;tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haWY0YzViNDEwMTc0ZTBiODk4MDAzNGNmM2MwN2UzYTNlMmM4OWI2MGI&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Autres options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation de <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Agenda</a></p><p>Vous recevez cet e-mail, car vous participez à l’événement.</p><p>En transférant cette invitation, vous risquez d’autoriser tous les destinataires à envoyer une réponse à l’organisateur, à être ajoutés à la liste des invités, à inviter d’autres personnes indépendamment de l’état de l’invitation qu’ils ont reçue, ou à modifier votre réponse à l’invitation. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">En savoir plus</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','Rick / Jean-Dominique ?\r\nmercredi 30 avr. 2025 ⋅ 18:00 – 18:30\r\nHeure d’Europe centrale - Paris\r\n\r\nParticiper avec Google Meet\r\nhttps://meet.google.com/zja-efqp-zcx?hs=224\r\n\r\n\r\n	\r\nParticiper par téléphone\r\n(FR) +33 1 87 40 14 31\r\nCODE SECRET: 255237581\r\n\r\nPlus de numéros de téléphone\r\nhttps://tel.meet/zja-efqp-zcx?pin=9667789423531&hs=0\r\n\r\n\r\nOrganisateur\r\nJean-dominique Lauwereins\r\njdlauwereins@icarusswarms.ai\r\n\r\nInvités\r\nJean-dominique Lauwereins- organisateur\r\nrick@mavrix.one\r\nAfficher les informations sur tous les invités  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=MW1rcmxwY3B2NXUzb2UxbHQxb3FrMm5taWIgcmlja0BtYXZyaXgub25l&tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haWY0YzViNDEwMTc0ZTBiODk4MDAzNGNmM2MwN2UzYTNlMmM4OWI2MGI&ctz=Europe%2FParis&hl=fr&es=0\r\n\r\nRépondre pour rick@mavrix.one et afficher plus de détails :  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=MW1rcmxwY3B2NXUzb2UxbHQxb3FrMm5taWIgcmlja0BtYXZyaXgub25l&tok=MjgjamRsYXV3ZXJlaW5zQGljYXJ1c3N3YXJtcy5haWY0YzViNDEwMTc0ZTBiODk4MDAzNGNmM2MwN2UzYTNlMmM4OWI2MGI&ctz=Europe%2FParis&hl=fr&es=0\r\nVotre participation est facultative.\r\n\r\n~~//~~\r\nInvitation de Google Agenda : https://calendar.google.com/calendar/\r\n\r\nVous recevez cet e-mail, car vous participez à l’événement.\r\n\r\nEn transférant cette invitation, vous risquez d’autoriser tous les  \r\ndestinataires à envoyer une réponse à l’organisateur, à être ajoutés à la  \r\nliste des invités, à inviter d’autres personnes indépendamment de l’état de  \r\nl’invitation qu’ils ont reçue, ou à modifier votre réponse à l’invitation.\r\n\r\nEn savoir plus https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-04-29 19:59:18','2025-12-09 19:02:06','2025-12-09 19:02:06','2025-12-09 19:02:06',NULL,NULL,NULL),
(202,4,'<calendar-dc626542-14c7-4955-ad99-34d4ad8683db@google.com>',NULL,NULL,'=?UTF-8?B?w4l2w6luZW1lbnQgYW5udWzDqTogUmljayAvIEplYW4tRG9taW5pcXVlID8gLSBtZXIuIA==?= =?UTF-8?B?MzAgYXZyLiAyMDI1IDE3OjAwIC0gMTc6MzAgKFVUQysyKSAocmlja0BtYXZyaXgub25lKQ==?=','jdlauwereins@icarusswarms.ai','Jean-dominique Lauwereins','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v143/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v117/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventCancelled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"3tur4ur40sdqf3gu022ucaleks\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Rick / Jean-Dominique ?</span><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250430T150000Z\"></time><time itemprop=\"endDate\" datetime=\"20250430T153000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"background-color: #fce8e6;color: #2d0c0c;padding: 12px 32px; border-radius: 8px;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px;text-align: left;\" class=\"info-bar-inner\"><span style=\"font-weight: 700;\">Cet événement a été annulé.</span></td></tr></tbody></table><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"12\" style=\"height:12px;\"><![endif]--><div style=\"height:12px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:28px;\"><a href=\"https://meet.google.com/sro-kfja-ouh?hs=224\" class=\"primary-button-text\" style=\"display: inline-block;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"display: inline-block\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"background-color: #1a73e8; cursor: auto; padding: 10px 25px; border: none; border-radius: 4px; margin: 0;\" class=\"primary-button\"><!--[if mso]><a href=\"https://meet.google.com/sro-kfja-ouh?hs=224\" class=\"primary-button-text\" target=\"_blank\"><![endif]--><span class=\"primary-button-text\" style=\"font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\">Participer avec Google Meet</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Lien de la réunion</h2></td></tr></table><!-- Use grey text for the Meet link--><div><a style=\"display: inline-block;;color: #70757a; text-decoration: none;\" class=\"secondary-text underline-on-hover\" href=\"https://meet.google.com/sro-kfja-ouh?hs=224\">meet.google.com/sro-kfja-ouh</a></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Participer par téléphone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(FR) </span><a href=\"tel:+33-1-87-40-07-41%3B433506526%23\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+33 1 87 40 07 41</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">CODE SECRET: 433506526</span><br><br><a href=\"https://tel.meet/sro-kfja-ouh?pin=7466597892228&amp;hs=0\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">Plus de numéros de téléphone</a><br></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250430T150000Z\"></time><time itemprop=\"endDate\" datetime=\"20250430T153000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Date</h2></td></tr></table><span>mercredi 30 avr. 2025 ⋅ 17:00 – 17:30 (Heure d’Europe centrale - Paris)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Invités</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jdlauwereins@icarusswarms.ai\">Jean-dominique Lauwereins</a></span><meta itemprop=\"email\" content=\"jdlauwereins@icarusswarms.ai\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Jean-dominique Lauwereins\"/><meta itemprop=\"email\" content=\"jdlauwereins@icarusswarms.ai\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\">- organisateur</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation de <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Agenda</a></p><p>Vous recevez cet e-mail, car vous participez à l’événement.</p><p>En transférant cette invitation, vous risquez d’autoriser tous les destinataires à envoyer une réponse à l’organisateur, à être ajoutés à la liste des invités, à inviter d’autres personnes indépendamment de l’état de l’invitation qu’ils ont reçue, ou à modifier votre réponse à l’invitation. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">En savoir plus</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','Cet événement a été annulé.\r\n\r\nRick / Jean-Dominique ?\r\nmercredi 30 avr. 2025 ⋅ 17:00 – 17:30\r\nHeure d’Europe centrale - Paris\r\n\r\nParticiper avec Google Meet\r\nhttps://meet.google.com/sro-kfja-ouh?hs=224\r\n\r\n\r\n	\r\nParticiper par téléphone\r\n(FR) +33 1 87 40 07 41\r\nCODE SECRET: 433506526\r\n\r\nPlus de numéros de téléphone\r\nhttps://tel.meet/sro-kfja-ouh?pin=7466597892228&hs=0\r\n\r\n\r\nOrganisateur\r\nJean-dominique Lauwereins\r\njdlauwereins@icarusswarms.ai\r\n\r\nInvités\r\nJean-dominique Lauwereins- organisateur\r\nrick@mavrix.one\r\n\r\n\r\n~~//~~\r\nInvitation de Google Agenda : https://calendar.google.com/calendar/\r\n\r\nVous recevez cet e-mail, car vous participez à l’événement.\r\n\r\nEn transférant cette invitation, vous risquez d’autoriser tous les  \r\ndestinataires à envoyer une réponse à l’organisateur, à être ajoutés à la  \r\nliste des invités, à inviter d’autres personnes indépendamment de l’état de  \r\nl’invitation qu’ils ont reçue, ou à modifier votre réponse à l’invitation.\r\n\r\nEn savoir plus https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-04-29 20:11:06','2025-12-09 19:02:06','2025-12-09 19:02:06','2025-12-09 19:02:06',NULL,NULL,NULL),
(203,4,'<calendar-63b0c0ea-84bd-4c86-b415-9fb6901700e6@google.com>',NULL,NULL,'=?UTF-8?B?w4l2w6luZW1lbnQgYW5udWzDqTogUmljayAvIEplYW4tRG9taW5pcXVlID8gLSBtZXIuIA==?= =?UTF-8?B?MzAgYXZyLiAyMDI1IDE4OjAwIC0gMTg6MzAgKFVUQysyKSAocmlja0BtYXZyaXgub25lKQ==?=','jdlauwereins@icarusswarms.ai','Jean-dominique Lauwereins','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v143/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v117/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventCancelled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"1mkrlpcpv5u3oe1lt1oqk2nmib\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Rick / Jean-Dominique ?</span><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250430T160000Z\"></time><time itemprop=\"endDate\" datetime=\"20250430T163000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"background-color: #fce8e6;color: #2d0c0c;padding: 12px 32px; border-radius: 8px;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px;text-align: left;\" class=\"info-bar-inner\"><span style=\"font-weight: 700;\">Cet événement a été annulé.</span></td></tr></tbody></table><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"12\" style=\"height:12px;\"><![endif]--><div style=\"height:12px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:28px;\"><a href=\"https://meet.google.com/zja-efqp-zcx?hs=224\" class=\"primary-button-text\" style=\"display: inline-block;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"display: inline-block\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"background-color: #1a73e8; cursor: auto; padding: 10px 25px; border: none; border-radius: 4px; margin: 0;\" class=\"primary-button\"><!--[if mso]><a href=\"https://meet.google.com/zja-efqp-zcx?hs=224\" class=\"primary-button-text\" target=\"_blank\"><![endif]--><span class=\"primary-button-text\" style=\"font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\">Participer avec Google Meet</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Lien de la réunion</h2></td></tr></table><!-- Use grey text for the Meet link--><div><a style=\"display: inline-block;;color: #70757a; text-decoration: none;\" class=\"secondary-text underline-on-hover\" href=\"https://meet.google.com/zja-efqp-zcx?hs=224\">meet.google.com/zja-efqp-zcx</a></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Participer par téléphone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(FR) </span><a href=\"tel:+33-1-87-40-14-31%3B255237581%23\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+33 1 87 40 14 31</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">CODE SECRET: 255237581</span><br><br><a href=\"https://tel.meet/zja-efqp-zcx?pin=9667789423531&amp;hs=0\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">Plus de numéros de téléphone</a><br></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250430T160000Z\"></time><time itemprop=\"endDate\" datetime=\"20250430T163000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Date</h2></td></tr></table><span>mercredi 30 avr. 2025 ⋅ 18:00 – 18:30 (Heure d’Europe centrale - Paris)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Invités</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jdlauwereins@icarusswarms.ai\">Jean-dominique Lauwereins</a></span><meta itemprop=\"email\" content=\"jdlauwereins@icarusswarms.ai\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Jean-dominique Lauwereins\"/><meta itemprop=\"email\" content=\"jdlauwereins@icarusswarms.ai\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\">- organisateur</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation de <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Agenda</a></p><p>Vous recevez cet e-mail, car vous participez à l’événement.</p><p>En transférant cette invitation, vous risquez d’autoriser tous les destinataires à envoyer une réponse à l’organisateur, à être ajoutés à la liste des invités, à inviter d’autres personnes indépendamment de l’état de l’invitation qu’ils ont reçue, ou à modifier votre réponse à l’invitation. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">En savoir plus</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','Cet événement a été annulé.\r\n\r\nRick / Jean-Dominique ?\r\nmercredi 30 avr. 2025 ⋅ 18:00 – 18:30\r\nHeure d’Europe centrale - Paris\r\n\r\nParticiper avec Google Meet\r\nhttps://meet.google.com/zja-efqp-zcx?hs=224\r\n\r\n\r\n	\r\nParticiper par téléphone\r\n(FR) +33 1 87 40 14 31\r\nCODE SECRET: 255237581\r\n\r\nPlus de numéros de téléphone\r\nhttps://tel.meet/zja-efqp-zcx?pin=9667789423531&hs=0\r\n\r\n\r\nOrganisateur\r\nJean-dominique Lauwereins\r\njdlauwereins@icarusswarms.ai\r\n\r\nInvités\r\nJean-dominique Lauwereins- organisateur\r\nrick@mavrix.one\r\n\r\n\r\n~~//~~\r\nInvitation de Google Agenda : https://calendar.google.com/calendar/\r\n\r\nVous recevez cet e-mail, car vous participez à l’événement.\r\n\r\nEn transférant cette invitation, vous risquez d’autoriser tous les  \r\ndestinataires à envoyer une réponse à l’organisateur, à être ajoutés à la  \r\nliste des invités, à inviter d’autres personnes indépendamment de l’état de  \r\nl’invitation qu’ils ont reçue, ou à modifier votre réponse à l’invitation.\r\n\r\nEn savoir plus https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-04-29 20:11:08','2025-12-09 19:02:07','2025-12-09 19:02:07','2025-12-09 19:02:07',NULL,NULL,NULL),
(204,4,'<IyoW6000000000000000000000000000000000000000000000SVKYT8009rFZeiqTSwKrf8v4y_9-Gg@sfdc.net>',NULL,NULL,'=?ISO-8859-1?Q?Thank_you_for_joining_the_Defense?= =?ISO-8859-1?Q?_Innovation_Unit=92s_(DIU)_network!?=','noreply@diusalesforce.com','No Reply DIU Salesforce','<html>\r\n<head>\r\n	<title></title>\r\n</head>\r\n<body style=\"height: auto; min-height: auto;\">\r\n<p style=\"line-height:1.38\"><span style=\"font-size:11pt; font-variant:normal; white-space:pre-wrap\"><span style=\"font-family:Arial,sans-serif\"><span style=\"color:#000000\"><span style=\"font-weight:400\"><span style=\"font-style:normal\"><span style=\"text-decoration:none\">Thank you for joining the Defense Innovation Units (DIU) network! By joining, your information will be shared across the DIU organization.</span></span></span></span></span></span></p>\r\n&nbsp;\r\n\r\n<p style=\"line-height:1.38\"><span style=\"font-size:11pt; font-variant:normal; white-space:pre-wrap\"><span style=\"font-family:Arial,sans-serif\"><span style=\"color:#000000\"><span style=\"font-weight:400\"><span style=\"font-style:normal\"><span style=\"text-decoration:none\">If your technology aligns with a current problem set, we will contact you to schedule a discussion. Additionally, if youve opted in, you will receive email notifications about </span></span></span></span></span></span><a href=\"https://www.diu.mil/work-with-us/open-solicitations\" style=\"text-decoration:none\"><span style=\"font-size:11pt; font-variant:normal; white-space:pre-wrap\"><span style=\"font-family:Arial,sans-serif\"><span style=\"color:#1155cc\"><span style=\"font-weight:400\"><span style=\"font-style:normal\"><span style=\"text-decoration:underline\"><span style=\"-webkit-text-decoration-skip:none\"><span style=\"text-decoration-skip-ink:none\">new DIU solicitations</span></span></span></span></span></span></span></span></a><span style=\"font-size:11pt; font-variant:normal; white-space:pre-wrap\"><span style=\"font-family:Arial,sans-serif\"><span style=\"color:#000000\"><span style=\"font-weight:400\"><span style=\"font-style:normal\"><span style=\"text-decoration:none\"> relevant to your product area.</span></span></span></span></span></span></p>\r\n&nbsp;\r\n\r\n<p style=\"line-height:1.38\"><span style=\"font-size:11pt; font-variant:normal; white-space:pre-wrap\"><span style=\"font-family:Arial,sans-serif\"><span style=\"color:#000000\"><span style=\"font-weight:400\"><span style=\"font-style:normal\"><span style=\"text-decoration:none\">To help you start your journey with DIU and the larger defense ecosystem, weve provided a curated set of resources in our</span></span></span></span></span></span><a href=\"https://www.diu.mil/defense-innovation-onramp-hub-resource-guide\" style=\"text-decoration:none\"><span style=\"font-size:11pt; font-variant:normal; white-space:pre-wrap\"><span style=\"font-family:Arial,sans-serif\"><span style=\"color:#1155cc\"><span style=\"font-weight:400\"><span style=\"font-style:normal\"><span style=\"text-decoration:underline\"><span style=\"-webkit-text-decoration-skip:none\"><span style=\"text-decoration-skip-ink:none\"> OnRamp Hub: Digital Resource Guide</span></span></span></span></span></span></span></span></a><span style=\"font-size:11pt; font-variant:normal; white-space:pre-wrap\"><span style=\"font-family:Arial,sans-serif\"><span style=\"color:#000000\"><span style=\"font-weight:400\"><span style=\"font-style:normal\"><span style=\"text-decoration:none\">. This guide includes information tailored for early-stage companies new to working with the DoD, as well as mature companies looking to scale within the DoD. Be sure to explore our </span></span></span></span></span></span><a href=\"https://www.diu.mil/defense-innovation-onramp-hubs\" style=\"text-decoration:none\"><span style=\"font-size:11pt; font-variant:normal; white-space:pre-wrap\"><span style=\"font-family:Arial,sans-serif\"><span style=\"color:#1155cc\"><span style=\"font-weight:400\"><span style=\"font-style:normal\"><span style=\"text-decoration:underline\"><span style=\"-webkit-text-decoration-skip:none\"><span style=\"text-decoration-skip-ink:none\">Defense Innovation OnRamp Hubs</span></span></span></span></span></span></span></span></a><span style=\"font-size:11pt; font-variant:normal; white-space:pre-wrap\"><span style=\"font-family:Arial,sans-serif\"><span style=\"color:#000000\"><span style=\"font-weight:400\"><span style=\"font-style:normal\"><span style=\"text-decoration:none\"> for region-specific information and resources.</span></span></span></span></span></span></p>\r\n&nbsp;\r\n\r\n<p style=\"line-height:1.38\"><span style=\"font-size:11pt; font-variant:normal; white-space:pre-wrap\"><span style=\"font-family:Arial,sans-serif\"><span style=\"color:#000000\"><span style=\"font-weight:400\"><span style=\"font-style:normal\"><span style=\"text-decoration:none\">If youve opted in, you will also receive our DIU newsletter, which highlights upcoming solicitations and events within the broader DIU organization. Keep an eye out for this newsletter, and </span></span></span></span></span></span><a href=\"https://www.linkedin.com/company/diux/\" style=\"text-decoration:none\"><span style=\"font-size:11pt; font-variant:normal; white-space:pre-wrap\"><span style=\"font-family:Arial,sans-serif\"><span style=\"color:#1155cc\"><span style=\"font-weight:400\"><span style=\"font-style:normal\"><span style=\"text-decoration:underline\"><span style=\"-webkit-text-decoration-skip:none\"><span style=\"text-decoration-skip-ink:none\">follow us on LinkedIn</span></span></span></span></span></span></span></span></a><span style=\"font-size:11pt; font-variant:normal; white-space:pre-wrap\"><span style=\"font-family:Arial,sans-serif\"><span style=\"color:#000000\"><span style=\"font-weight:400\"><span style=\"font-style:normal\"><span style=\"text-decoration:none\"> to stay updated on current and future DIU activities.</span></span></span></span></span></span></p>\r\n&nbsp;\r\n\r\n<p style=\"line-height:1.38\"><span style=\"font-size:11pt; font-variant:normal; white-space:pre-wrap\"><span style=\"font-family:Arial,sans-serif\"><span style=\"color:#000000\"><span style=\"font-weight:400\"><span style=\"font-style:normal\"><span style=\"text-decoration:none\">Thank you again for joining our network. We look forward to bringing your innovative solutions closer to the warfighter!</span></span></span></span></span></span></p>\r\n\r\n<p style=\"line-height:1.38\"><br />\r\n&nbsp;</p>\r\n\r\n<p style=\"line-height:1.38\">&nbsp;</p>\r\n</body>\r\n</html><img alt=\"\" src=\"https://diu.my.salesforce.com/servlet/servlet.ImageServer?oid=00Dt00000004XMj&esid=018cr00000D2mHB&from=ext\">','Thank you for joining the Defense Innovation Units (DIU) network! By joining, your information will be shared across the DIU organization.\r\n \r\n\r\nIf your technology aligns with a current problem set, we will contact you to schedule a discussion. Additionally, if youve opted in, you will receive email notifications about new DIU solicitations relevant to your product area.\r\n \r\n\r\nTo help you start your journey with DIU and the larger defense ecosystem, weve provided a curated set of resources in our OnRamp Hub: Digital Resource Guide. This guide includes information tailored for early-stage companies new to working with the DoD, as well as mature companies looking to scale within the DoD. Be sure to explore our Defense Innovation OnRamp Hubs for region-specific information and resources.\r\n \r\n\r\nIf youve opted in, you will also receive our DIU newsletter, which highlights upcoming solicitations and events within the broader DIU organization. Keep an eye out for this newsletter, and follow us on LinkedIn to stay updated on current and future DIU activities.\r\n \r\n\r\nThank you again for joining our network. We look forward to bringing your innovative solutions closer to the warfighter!\r\n\r\n \r\n\r\n ',0,0,0,0,0,0,'2025-05-01 11:34:21','2025-12-09 19:02:07','2025-12-09 19:02:07','2025-12-09 19:02:07',NULL,NULL,NULL),
(205,4,'<0f3201dbbc33$57ddcfb0$07996f10$@videoaerialsystems.com>',NULL,NULL,'RE: Thank you!','marc@videoaerialsystems.com','','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\"><head><meta http-equiv=Content-Type content=\"text/html; charset=utf-8\"><meta name=Generator content=\"Microsoft Word 15 (filtered medium)\"><!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\nspan.EmailStyle18\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Calibri\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]--></head><body lang=EN-US link=blue vlink=purple style=\'word-wrap:break-word\'><div class=WordSection1><p class=MsoNormal><span style=\'font-size:11.0pt;font-family:\"Calibri\",sans-serif\'>Rick,<o:p></o:p></span></p><p class=MsoNormal><span style=\'font-size:11.0pt;font-family:\"Calibri\",sans-serif\'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style=\'font-size:11.0pt;font-family:\"Calibri\",sans-serif\'> Thank you for the call. I will be in touch.<o:p></o:p></span></p><p class=MsoNormal><span style=\'font-size:11.0pt;font-family:\"Calibri\",sans-serif\'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style=\'font-size:11.0pt;font-family:\"Calibri\",sans-serif\'>Marc Ashton<o:p></o:p></span></p><p class=MsoNormal><span style=\'font-size:11.0pt;font-family:\"Calibri\",sans-serif\'>Operations Manager<o:p></o:p></span></p><p class=MsoNormal><span style=\'font-size:11.0pt;font-family:\"Calibri\",sans-serif\'>5236 S. Amherst Hwy<o:p></o:p></span></p><p class=MsoNormal><span style=\'font-size:11.0pt;font-family:\"Calibri\",sans-serif\'>Madison Heights, VA 24572<o:p></o:p></span></p><p class=MsoNormal><span style=\'font-size:11.0pt;font-family:\"Calibri\",sans-serif\'>(910)547-9717<o:p></o:p></span></p><p class=MsoNormal><span style=\'font-size:11.0pt;font-family:\"Calibri\",sans-serif\'><img width=156 height=121 style=\'width:1.625in;height:1.2604in\' id=\"Picture_x0020_226327531\" src=\"cid:image002.png@01DBBC11.D0359500\"><o:p></o:p></span></p><p class=MsoNormal><span style=\'font-size:11.0pt;font-family:\"Calibri\",sans-serif\'><o:p>&nbsp;</o:p></span></p><div style=\'border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\'><p class=MsoNormal><b><span style=\'font-size:11.0pt;font-family:\"Calibri\",sans-serif\'>From:</span></b><span style=\'font-size:11.0pt;font-family:\"Calibri\",sans-serif\'> Rick &lt;rick@mavrix.one&gt; <br><b>Sent:</b> Saturday, May 3, 2025 9:56 AM<br><b>To:</b> marc@videoaerialsystems.com<br><b>Subject:</b> Thank you!<o:p></o:p></span></p></div><p class=MsoNormal><o:p>&nbsp;</o:p></p><div><p class=MsoNormal><span style=\'font-size:10.0pt;font-family:\"Helvetica\",sans-serif\'>Marc,<o:p></o:p></span></p></div><div><p class=MsoNormal><span style=\'font-size:10.0pt;font-family:\"Helvetica\",sans-serif\'>The website is down below.<o:p></o:p></span></p></div><div><p class=MsoNormal><span style=\'font-size:10.0pt;font-family:\"Helvetica\",sans-serif\'><o:p>&nbsp;</o:p></span></p></div><div><p class=MsoNormal><span style=\'font-size:10.0pt;font-family:\"Helvetica\",sans-serif\'>Feel free to schedule something&nbsp;<o:p></o:p></span></p></div><div><p class=MsoNormal><span style=\'font-size:10.0pt;font-family:\"Helvetica\",sans-serif\'>with me at your convenience...<o:p></o:p></span></p></div><div><p class=MsoNormal><span style=\'font-size:10.0pt;font-family:\"Helvetica\",sans-serif\'><o:p>&nbsp;</o:p></span></p></div><div><p class=MsoNormal><span style=\'font-size:10.0pt;font-family:\"Helvetica\",sans-serif\'>Thanks,<o:p></o:p></span></p></div><div><p class=MsoNormal><span style=\'font-size:10.0pt;font-family:\"Helvetica\",sans-serif\'>Rick<o:p></o:p></span></p></div><div><p class=MsoNormal><span style=\'font-size:10.0pt;font-family:\"Helvetica\",sans-serif\'><a href=\"https://www.mislan.com\">https://www.mislan.com</a><o:p></o:p></span></p></div><div><p class=MsoNormal><span style=\'font-size:10.0pt;font-family:\"Helvetica\",sans-serif\'><o:p>&nbsp;</o:p></span></p></div><div><p class=MsoNormal>Rick Mislan, PhD<o:p></o:p></p><div><p class=MsoNormal><a href=\"https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one\">https://mavrix.one</a><o:p></o:p></p></div><div><p class=MsoNormal><img border=0 id=\"_x0000_i1025\" src=\"file://Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"><o:p></o:p></p></div></div></div></body></html>','Rick,\r\n\r\n \r\n\r\nThank you for the call. I will be in touch.\r\n\r\n \r\n\r\nMarc Ashton\r\n\r\nOperations Manager\r\n\r\n5236 S. Amherst Hwy\r\n\r\nMadison Heights, VA 24572\r\n\r\n(910)547-9717\r\n\r\n\r\n\r\n \r\n\r\nFrom: Rick <rick@mavrix.one> \r\nSent: Saturday, May 3, 2025 9:56 AM\r\nTo: marc@videoaerialsystems.com\r\nSubject: Thank you!\r\n\r\n \r\n\r\nMarc,\r\n\r\nThe website is down below.\r\n\r\n \r\n\r\nFeel free to schedule something \r\n\r\nwith me at your convenience...\r\n\r\n \r\n\r\nThanks,\r\n\r\nRick\r\n\r\nhttps://www.mislan.com\r\n\r\n \r\n\r\nRick Mislan, PhD\r\n\r\nhttps://mavrix.one <https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one> \r\n\r\n  <file://Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png> ',0,0,0,0,0,0,'2025-05-03 13:57:43','2025-12-09 19:02:07','2025-12-09 19:02:07','2025-12-09 19:02:07',NULL,NULL,NULL),
(206,4,'<40.65.45230.18856186@i-0ec521ae98601c523.mta1vrest.sd.prd.sparkpost>',NULL,NULL,'[Action required] Verify your email address','noreply@notify.cloudflare.com','\"Cloudflare\"','<!DOCTYPE html>\n<html\n  xmlns=\"“http://www.w3.org/1999/xhtml”\"\n  xmlns:v=\"“urn:schemas-microsoft-com:vml”\"\n  xmlns:o=\"“urn:schemas-microsoft-com:office:office”\"\n>\n  <head>\n    <meta charset=\"utf-8\" />\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" />\n    <!--[if gte mso 9\n      ]><xml>\n        <o:OfficeDocumentSettings>\n          <o:AllowPNG />\n          <o:PixelsPerInch>96</o:PixelsPerInch>\n        </o:OfficeDocumentSettings>\n      </xml><!\n    [endif]-->\n    <!--Variables-->\n    <title></title>\n    <link\n      href=\"https://fonts.googleapis.com/css?family=Inter:300,300i,400,400i,600,600i,700,700i,800,800i\"\n      rel=\"stylesheet\"\n    />\n    <style>\n      /* CLIENT-SPECIFIC STYLES */\n      img {\n        -ms-interpolation-mode: bicubic;\n      }\n      /* Force IE to smoothly render resized images. */\n      #outlook a {\n        padding: 0;\n      }\n      /* Force Outlook 2007 and up to provide a \"view in browser\" message. */\n      table {\n        mso-table-lspace: 0pt;\n        mso-table-rspace: 0pt;\n      }\n      /* Remove spacing between tables in Outlook 2007 and up. */\n      .ReadMsgBody {\n        width: 100%;\n      }\n      .ExternalClass {\n        width: 100%;\n      }\n      /* Force Outlook.com to display emails at full width. */\n      p,\n      a,\n      li,\n      td,\n      blockquote {\n        mso-line-height-rule: exactly;\n      }\n      /* Force Outlook to render line heights as they\'re originally set. */\n      a[href^=\"tel\"],\n      a[href^=\"sms\"] {\n        color: inherit;\n        cursor: default;\n        text-decoration: none;\n      }\n      /* Force mobile devices to inherit declared link styles. */\n      p,\n      a,\n      li,\n      td,\n      body,\n      table,\n      blockquote {\n        -ms-text-size-adjust: 100%;\n        -webkit-text-size-adjust: 100%;\n      }\n      /* Prevent Windows- and Webkit-based mobile platforms from changing declared text sizes. */\n      .ExternalClass,\n      .ExternalClass p,\n      .ExternalClass td,\n      .ExternalClass div,\n      .ExternalClass span,\n      .ExternalClass font {\n        line-height: 100%;\n      }\n      /* Force Outlook.com to display line heights normally. */\n      table {\n        border-collapse: collapse;\n      }\n\n      html {\n        -webkit-text-size-adjust: none;\n      }\n\n      #gmailModule,\n      .mobileOnly {\n        display: none !important;\n      }\n      /*Hide Full-Width Image on Desktop*/\n\n      a,\n      a:hover {\n        color: #ff6633 !important;\n        text-decoration: none !important;\n      }\n\n      .button a,\n      .button a:hover {\n        color: #000000 !important;\n        text-decoration: none !important;\n      }\n\n      .footer a,\n      .footer a:hover {\n        color: #8f8f8f !important;\n        text-decoration: none !important;\n      }\n\n      a[x-apple-data-detectors] {\n        color: inherit !important;\n        text-decoration: none !important;\n        font-size: inherit !important;\n        font-family: inherit !important;\n        font-weight: inherit !important;\n        line-height: inherit !important;\n      }\n\n      @media only screen and (max-width: 650px) {\n        #bodyTable {\n          width: 100% !important;\n        }\n        #logo-image {\n          max-width: 40% !important;\n        }\n\n        #headline {\n          font-size: 20px;\n          line-height: 24px;\n        }\n\n        img {\n          width: auto !important;\n          max-width: 100% !important;\n          height: auto !important;\n        }\n        .tableStack {\n          width: 100% !important;\n        }\n        table.buttonStack {\n          margin-top: 10px !important;\n        }\n        td.buttonStack {\n          padding-top: 16px !important;\n        }\n\n        td.mobImg {\n          width: 28% !important;\n          padding-right: 15px !important;\n        }\n        td.mobText {\n          width: 68% !important;\n        }\n\n        #fullTextContent {\n          font-size: 13px;\n          line-height: 17px;\n        }\n\n        #fullTextContent strong {\n          font-size: 14px;\n          line-height: 18px;\n        }\n\n        table.mobileImageWidth {\n          width: 28% !important;\n        }\n        table.mobileTextWidth {\n          width: 68% !important;\n        }\n\n        .stack-img {\n          padding-top: 10px !important;\n          padding-right: 0% !important;\n          padding-bottom: 10px !important;\n          padding-left: 0% !important;\n          width: 90% !important;\n        }\n\n        .stack {\n          padding-top: 4px !important;\n          padding-right: 5% !important;\n          padding-bottom: 22px !important;\n          padding-left: 5% !important;\n          width: 90% !important;\n        }\n\n        .stack2 {\n          padding-top: 10px !important;\n          padding-right: 0px !important;\n          padding-bottom: 10px !important;\n          padding-left: 5% !important;\n          width: 90% !important;\n        }\n\n        td.mobileTopPad {\n          padding-top: 20px !important;\n        }\n        table.mobileTopPad {\n          margin-top: 20px !important;\n        }\n\n        .desktopPad,\n        #gmailModule {\n          display: none !important;\n        }\n        .left img {\n          margin-left: 0 !important;\n        }\n        .center img {\n          margin-left: auto !important;\n          margin-right: auto !important;\n        }\n        .center table {\n          margin-right: auto;\n          margin-left: auto;\n        }\n        .left {\n          text-align: left !important;\n        }\n        .center {\n          text-align: center !important;\n        }\n        .noPad {\n          padding-top: 0px !important;\n          padding-right: 0px !important;\n          padding-bottom: 0px !important;\n          padding-left: 0px !important;\n        }\n        .noSidePad {\n          padding-right: 0px !important;\n          padding-left: 0px !important;\n        }\n        .noBorder {\n          border: 0px !important;\n        }\n        hr {\n          margin-right: auto !important;\n          margin-left: auto !important;\n        }\n        .mobileOnly {\n          display: block !important;\n        }\n        .mobquote {\n          font-size: 20px !important;\n          line-height: 26px !important;\n          margin: 0px 15px !important;\n        }\n        .padding5p {\n          padding-right: 5% !important;\n        }\n        .mobwidth100 {\n          max-width: 100px !important;\n        }\n      }\n    </style>\n    <!--[if gte mso 9]>\n      <style type=\"text/css\">\n        td,\n        p,\n        ul,\n        ol,\n        li {\n          font-family: Arial, sans-serif !important;\n        }\n        ul,\n        ol {\n          margin: 0px 0px 0px 26px !important;\n          padding: 0px !important;\n          list-style-position: inside !important;\n        }\n        table.outlookPadColumn {\n          width: 34% !important;\n          padding-right: 2% !important;\n        }\n        td.outlookFloat {\n          margin-left: 40px;\n          padding-right: 0px !important;\n        }\n      </style>\n    <![endif]-->\n  </head>\n  <body\n    bgcolor=\"#f6f6f6\"\n    style=\"\n      background: #f6f6f6;\n      margin: 0;\n      padding: 0;\n      mso-padding-alt: 0px 0px 0px 0px;\n    \"\n  >\n  <div style=\"display:none;\">\n    This email address was used to sign up for a Cloudflare account.</div>\n    <table\n      role=\"presentation\"\n      width=\"100%\"\n      border=\"0\"\n      cellspacing=\"0\"\n      cellpadding=\"0\"\n      style=\"background: #f6f6f6; mso-padding-alt: 0px 0px 0px 0px\"\n    >\n      <tbody>\n        <tr>\n          <td>\n            <!--Body Table-->\n            <table\n              role=\"presentation\"\n              id=\"bodyTable\"\n              width=\"650\"\n              border=\"0\"\n              cellspacing=\"0\"\n              cellpadding=\"0\"\n              align=\"center\"\n              style=\"margin-left: auto; margin-right: auto\"\n            >\n              <!--Preheader Container-->\n              <tbody>\n                <tr class=\"desktopPad\">\n                  <td\n                    class=\"footer\"\n                    style=\"\n                      white-space: normal;\n                      color: #8f8f8f;\n                      font-family: Inter, Helvetica, Arial, sans-serif;\n                      font-size: 11px;\n                      text-align: right;\n                      padding-top: 7px;\n                      padding-bottom: 7px;\n                      text-align: center;\n                    \"\n                  >\n                    <div class=\"mktoText\" id=\"preheaderText\"></div>\n                  </td>\n                </tr>\n                <!--/Preheader Container-->\n                <tr>\n                  <td>\n                    <table\n                      role=\"presentation\"\n                      id=\"container\"\n                      class=\"mktoContainer\"\n                      width=\"100%\"\n                      border=\"0\"\n                      cellpadding=\"0\"\n                      cellspacing=\"0\"\n                      style=\"border-collapse: collapse\"\n                    >\n                      <tr class=\"mktoModule\" id=\"header\">\n                        <td>\n                          <table\n                            role=\"presentation\"\n                            width=\"100%\"\n                            border=\"0\"\n                            cellpadding=\"0\"\n                            cellspacing=\"0\"\n                            style=\"min-width: 100%\"\n                          >\n                            <!--[if gte mso 9]>\n<tr>\n<td>\n<table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n<![endif]-->\n                            <tbody>\n                              <tr\n                                style=\"\n                                  white-space: nowrap;\n                                  background-color: #ffffff;\n                                \"\n                              >\n                                <td\n                                  class=\"stack\"\n                                  style=\"\n                                    border-top: 10px solid #f38020;\n                                    white-space: normal;\n                                    padding-top: 25px;\n                                    padding-left: 40px;\n                                    padding-bottom: 25px;\n                                    padding-right: 40px;\n                                    background-color: #ffffff;\n                                  \"\n                                >\n                                  <!--Left-->\n                                  <table\n                                    class=\"tableStack\"\n                                    role=\"presentation\"\n                                    width=\"48%\"\n                                    border=\"0\"\n                                    cellpadding=\"0\"\n                                    cellspacing=\"0\"\n                                    align=\"left\"\n                                  >\n                                    <tbody>\n                                      <tr>\n                                        <td class=\"stack-img\">\n                                          <div class=\"mktoSnippet\" id=\"logo\">\n                                            <table\n                                              role=\"presentation\"\n                                              width=\"100%\"\n                                              cellpadding=\"0\"\n                                              cellspacing=\"0\"\n                                              border=\"0\"\n                                            >\n                                              <tbody>\n                                                <tr>\n                                                  <td class=\"left\">\n                                                    <a\n                                                      href=\"https://www.cloudflare.com/\"\n                                                      target=\"_blank\"\n                                                      ><img\n                                                        id=\"logo-image\"\n                                                        src=\"https://info.cloudflare.com/rs/713-XSC-918/images/CF_logo_horizontal_blktype_1955x285.png?version=0\"\n                                                        alt=\"Cloudflare logo\"\n                                                        height=\"37\"\n                                                        width=\"260\"\n                                                        constrain=\"true\"\n                                                        imagepreview=\"false\"\n                                                    /></a>\n                                                  </td>\n                                                </tr>\n                                              </tbody>\n                                            </table>\n                                          </div>\n                                        </td>\n                                      </tr>\n                                    </tbody>\n                                  </table>\n                                  <!--/Left-->\n                                  <!--Right-->\n                                  <table\n                                    class=\"tableStack\"\n                                    role=\"presentation\"\n                                    width=\"48%\"\n                                    border=\"0\"\n                                    cellpadding=\"0\"\n                                    cellspacing=\"0\"\n                                    align=\"right\"\n                                  >\n                                    <tbody>\n                                      <tr>\n                                        <td\n                                          class=\"center\"\n                                          style=\"\n                                            text-align: right;\n                                            color: #000000;\n                                            font-family: Inter, Helvetica, Arial,\n                                              sans-serif;\n                                            font-size: 14px;\n                                            line-height: 21px;\n                                          \"\n                                        >\n                                          <div\n                                            class=\"mktoText\"\n                                            id=\"headerHeadline\"\n                                          ></div>\n                                        </td>\n                                      </tr>\n                                    </tbody>\n                                  </table>\n                                  <!--/Right-->\n                                </td>\n                              </tr>\n                              <!--[if gte mso 9]>\n</table>\n</td>\n</tr>\n<![endif]-->\n                            </tbody>\n                          </table>\n                        </td>\n                      </tr>\n                      <tr class=\"mktoModule desktopPad\" id=\"spacerModule\">\n                        <td>\n                          <table\n                            role=\"presentation\"\n                            border=\"0\"\n                            cellpadding=\"0\"\n                            cellspacing=\"0\"\n                            style=\"min-width: 100%\"\n                          >\n                            <!--[if gte mso 9]>\n<tr>\n<td>\n<table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n<![endif]-->\n                            <tbody>\n                              <tr\n                                style=\"\n                                  white-space: nowrap;\n                                  background-color: #ffffff;\n                                \"\n                              >\n                                <td\n                                  class=\"desktopPad\"\n                                  height=\"25\"\n                                  style=\"\n                                    background-color: #ffffff;\n                                    line-height: 25px;\n                                    font-size: 25px;\n                                  \"\n                                >\n                                  &nbsp;\n                                </td>\n                              </tr>\n                              <!--[if gte mso 9]>\n</table>\n</td>\n</tr>\n<![endif]-->\n                            </tbody>\n                          </table>\n                        </td>\n                      </tr>\n\n                      <!-- HEADLINE -->\n\n                      <tr class=\"mktoModule\" id=\"headline\">\n                        <td>\n                          <!--Title Text-->\n                          <table\n                            role=\"presentation\"\n                            width=\"100%\"\n                            border=\"0\"\n                            cellpadding=\"0\"\n                            cellspacing=\"0\"\n                            style=\"min-width: 100%\"\n                          >\n                            <!--[if gte mso 9]>\n<tr>\n<td>\n<table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n<![endif]-->\n                            <tbody>\n                              <tr\n                                style=\"\n                                  white-space: nowrap;\n                                  background-color: #ffffff;\n                                \"\n                              >\n                                <td\n                                  class=\"stack\"\n                                  style=\"\n                                    font-weight: 600;\n                                    color: #000000;\n                                    text-align: left;\n                                    white-space: normal;\n                                    font-family: Inter, Helvetica, Arial,\n                                      sans-serif;\n                                    font-size: 26px;\n                                    line-height: 32px;\n                                    padding-left: 40px;\n                                    padding-right: 40px;\n                                    background-color: #ffffff;\n                                  \"\n                                >\n                                  <div class=\"mktoText\" id=\"headline\">\n                                                                        This email address was just used to sign up for a Cloudflare account\n                                    \n                                    <br />\n                                  </div>\n                                </td>\n                              </tr>\n                              <!--[if gte mso 9]>\n</table>\n</td>\n</tr>\n<![endif]-->\n                            </tbody>\n                          </table>\n                          <!--/Title Text-->\n                        </td>\n                      </tr>\n                      <!-- END HEADLINE -->\n\n\n                      <!-- SPACING -->\n                      <tr class=\"mktoModule desktopPad\" id=\"spacerModule\">\n                        <td>\n                          <table\n                            role=\"presentation\"\n                            border=\"0\"\n                            cellpadding=\"0\"\n                            cellspacing=\"0\"\n                            style=\"min-width: 100%\"\n                          >\n                            <!--[if gte mso 9]>\n<tr>\n<td>\n<table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n<![endif]-->\n                            <tbody>\n                              <tr\n                                style=\"\n                                  white-space: nowrap;\n                                  background-color: #ffffff;\n                                \"\n                              >\n                                <td\n                                  class=\"desktopPad\"\n                                  height=\"25\"\n                                  style=\"\n                                    background-color: #ffffff;\n                                    line-height: 25px;\n                                    font-size: 25px;\n                                  \"\n                                >\n                                  &nbsp;\n                                </td>\n                              </tr>\n                              <!--[if gte mso 9]>\n</table>\n</td>\n</tr>\n<![endif]-->\n                            </tbody>\n                          </table>\n                        </td>\n                      </tr>\n                      <!-- END SPACING -->\n\n\n                      <!-- SUBHEADLINE -->\n                      <tr class=\"mktoModule\" id=\"fullText\">\n                        <td>\n                          <!--Full Text-->\n                          <table\n                            role=\"presentation\"\n                            width=\"100%\"\n                            border=\"0\"\n                            cellpadding=\"0\"\n                            cellspacing=\"0\"\n                            style=\"min-width: 100%\"\n                          >\n                            <!--[if gte mso 9]>\n<tr>\n<td>\n<table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n<![endif]-->\n                            <tbody>\n                              <tr\n                                style=\"\n                                  white-space: nowrap;\n                                  background-color: #ffffff;\n                                \"\n                              >\n                                <td\n                                  class=\"stack\"\n                                  style=\"\n                                    color: #000000;\n                                    text-align: left;\n                                    white-space: normal;\n                                    font-family: Inter, Helvetica, Arial,\n                                      sans-serif;\n                                    font-size: 14px;\n                                    line-height: 24px;\n                                    padding-left: 40px;\n                                    padding-right: 40px;\n                                    background-color: #ffffff;\n                                    font-weight: normal;\n                                  \">\n                                  <div class=\"mktoText\" id=\"fullTextContent\">\n                                     \n                                                                        If this was you, please verify your email below.\n                                                                        <br /><br />\n\n                                  </div>\n                                </td>\n                              </tr>\n                              <!--[if gte mso 9]>\n</table>\n</td>\n</tr>\n<![endif]-->\n                            </tbody>\n                          </table>\n                          <!--/Full Text-->\n                        </td>\n                      </tr>\n                      <!-- END OF SUBHEADLINE -->\n\n\n                      <!-- BUTTON -->\n                      <tr class=\"mktoModule\" id=\"buttonModule\">\n                        <td>\n                          <!--Button Module-->\n                          <table\n                            role=\"presentation\"\n                            width=\"100%\"\n                            border=\"0\"\n                            cellpadding=\"0\"\n                            cellspacing=\"0\"\n                            style=\"min-width: 100%\"\n                          >\n                            <!--[if gte mso 9]>\n<tr>\n<td>\n<table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n<![endif]-->\n                            <tbody>\n                              <tr\n                                style=\"\n                                  white-space: nowrap;\n                                  background-color: #ffffff;\n                                \"\n                              >\n                                <td\n                                  class=\"stack\"\n                                  style=\"\n                                    text-align: left;\n                                    white-space: normal;\n                                    background-color: #ffffff;\n                                    padding-left: 40px;\n                                    padding-right: 40px;\n                                    padding-top: 0px;\n                                    padding-bottom: 0px;\n                                  \"\n                                >\n                                  <!--Button-->\n                                  <table\n                                    role=\"presentation\"\n                                    class=\"button\"\n                                    border=\"0\"\n                                    cellpadding=\"0\"\n                                    cellspacing=\"0\"\n                                    bgcolor=\"#FF6633\"\n                                    style=\"\n                                      border-radius: 8px;\n                                      border: solid #ff6633 0px;\n                                      display: inline-block;\n                                    \"\n                                  >\n                                    <tbody>\n                                      <tr>\n                                        <td\n                                          style=\"\n                                            font-family: Inter, Helvetica, Arial,\n                                              sans-serif;\n                                            font-size: 14px;\n                                            padding-top: 7px;\n                                            padding-right: 27px;\n                                            padding-bottom: 7px;\n                                            padding-left: 27px;\n                                            text-align: center;\n                                          \"\n                                        >\n                                          <div class=\"mktoText\" id=\"buttonText\">\n\n                                            \n                                              <a\n                                              href=\"https://dash.cloudflare.com/email-verification?token=IMNUl5LmDCHt5X7y7dvmPOj6iV8dtXKtvv-ycVkx9_hivrSqDZhbejZPrfPVBE9fdMCK16mX2j6vY5-T_LMh5gRZaC7u3ZSTGEAi-7WV44MTh04wMn4fnZDd9itcLuALTNihEXA5boNEn8jQ6JKnUSaF7OHXAVPYnEACmX1KWA0fAIpcUOBGO5jZoB66KtYFUfYTYcTEVsOtBGlrhpOhmmwC-QZVvczjquKa58xlcuo\"\n                                              style=\"\n                                                text-decoration: none;\n                                                color: #000000;\n                                              \"\n                                              target=\"_blank\"\n                                              >Verify your email</a>\n                                            \n                                            \n                                          </div>\n                                        </td>\n                                      </tr>\n                                    </tbody>\n                                  </table>\n                                  <!--/Button-->\n                                </td>\n                              </tr>\n                              <!--[if gte mso 9]>\n</table>\n</td>\n</tr>\n<![endif]-->\n                            </tbody>\n                          </table>\n                          <!--/Button Module-->\n                        </td>\n                      </tr>\n                      <!-- END BUTTON -->\n\n\n\n                      <!-- SPACING -->\n                      <tr class=\"mktoModule desktopPad\" id=\"spacerModule\">\n                        <td>\n                          <table\n                            role=\"presentation\"\n                            border=\"0\"\n                            cellpadding=\"0\"\n                            cellspacing=\"0\"\n                            style=\"min-width: 100%\"\n                          >\n                            <!--[if gte mso 9]>\n<tr>\n<td>\n<table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n<![endif]-->\n                            <tbody>\n                              <tr\n                                style=\"\n                                  white-space: nowrap;\n                                  background-color: #ffffff;\n                                \"\n                              >\n                                <td\n                                  class=\"desktopPad\"\n                                  height=\"25\"\n                                  style=\"\n                                    background-color: #ffffff;\n                                    line-height: 25px;\n                                    font-size: 25px;\n                                  \"\n                                >\n                                  &nbsp;\n                                </td>\n                              </tr>\n                              <!--[if gte mso 9]>\n</table>\n</td>\n</tr>\n<![endif]-->\n                            </tbody>\n                          </table>\n                        </td>\n                      </tr>\n                      <!-- END SPACING -->\n\n\n                      <!-- SUBHEADLINE -->\n                      <tr class=\"mktoModule\" id=\"fullText\">\n                        <td>\n                          <!--Full Text-->\n                          <table\n                            role=\"presentation\"\n                            width=\"100%\"\n                            border=\"0\"\n                            cellpadding=\"0\"\n                            cellspacing=\"0\"\n                            style=\"min-width: 100%\"\n                          >\n                            <!--[if gte mso 9]>\n<tr>\n<td>\n<table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n<![endif]-->\n                            <tbody>\n                              <tr\n                                style=\"\n                                  white-space: nowrap;\n                                  background-color: #ffffff;\n                                \"\n                              >\n                                <td\n                                  class=\"stack\"\n                                  style=\"\n                                    color: #000000;\n                                    text-align: left;\n                                    white-space: normal;\n                                    font-family: Inter, Helvetica, Arial,\n                                      sans-serif;\n                                    font-size: 14px;\n                                    line-height: 24px;\n                                    padding-left: 40px;\n                                    padding-right: 40px;\n                                    background-color: #ffffff;\n                                    font-weight: normal;\n                                  \"\n                                >\n                                  <div class=\"mktoText\" id=\"fullTextContent\">\n                                    <span style=\"font-size: 18px\"\n                                      ><strong\n                                        >Not you?</strong\n                                      ></span\n                                    >\n                                    <br />\n                                                                        Don’t worry. Your internet properties on this account (and any other Cloudflare accounts you own) are not at risk.<br/><br/>\n                                    \n                                    You can delete this newly-created account by entering the following token at the link below:<br/>\n                                    Token: f1bce644decf2f287f226dae2df458e6cae9f3eeb011e34787ee789cee4fb3eb<br/><br/>\n                                    https://dash.cloudflare.com/unintended-registration\n                                    \n                                    \n                                  </div>\n                                </td>\n                              </tr>\n                              <!--[if gte mso 9]>\n</table>\n</td>\n</tr>\n<![endif]-->\n                            </tbody>\n                          </table>\n                          <!--/Full Text-->\n                        </td>\n                      </tr>\n                      <!-- END OF SUBHEADLINE -->\n\n\n\n                      <!-- FOOTER -->\n                      <tr class=\"mktoModule desktopPad\" id=\"spacerModule\">\n                        <td>\n                          <table\n                            role=\"presentation\"\n                            border=\"0\"\n                            cellpadding=\"0\"\n                            cellspacing=\"0\"\n                            style=\"min-width: 100%\"\n                          >\n                            <!--[if gte mso 9]>\n<tr>\n<td>\n<table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n<![endif]-->\n                            <tbody>\n                              <tr\n                                style=\"\n                                  white-space: nowrap;\n                                  background-color: #ffffff;\n                                \"\n                              >\n                                <td\n                                  class=\"desktopPad\"\n                                  height=\"25\"\n                                  style=\"\n                                    background-color: #ffffff;\n                                    line-height: 25px;\n                                    font-size: 25px;\n                                  \"\n                                >\n                                  &nbsp;\n                                </td>\n                              </tr>\n                              <!--[if gte mso 9]>\n</table>\n</td>\n</tr>\n<![endif]-->\n                            </tbody>\n                          </table>\n                        </td>\n                      </tr>\n                      <tr class=\"mktoModule\" id=\"persistentSpacerModule\">\n                        <td>\n                          <!--Persistent Spacer-->\n                          <table\n                            role=\"presentation\"\n                            width=\"100%\"\n                            border=\"0\"\n                            cellpadding=\"0\"\n                            cellspacing=\"0\"\n                            style=\"min-width: 100%\"\n                          >\n                            <!--[if gte mso 9]>\n<tr>\n<td>\n<table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n<![endif]-->\n                            <tbody>\n                              <tr\n                                style=\"\n                                  white-space: nowrap;\n                                  background-color: #f6f6f6;\n                                \"\n                              >\n                                <td\n                                  height=\"25\"\n                                  style=\"\n                                    white-space: normal;\n                                    background-color: #f6f6f6;\n                                    line-height: 25px;\n                                    font-size: 25px;\n                                  \"\n                                >\n                                  &nbsp;\n                                </td>\n                              </tr>\n                              <!--[if gte mso 9]>\n</table>\n</td>\n</tr>\n<![endif]-->\n                            </tbody>\n                          </table>\n                          <!--/Persistent Spacer-->\n                        </td>\n                      </tr>\n                      <tr class=\"mktoModule\" id=\"footerModule\">\n                        <td>\n                          <!--Footer-->\n                          <table\n                            role=\"presentation\"\n                            width=\"100%\"\n                            border=\"0\"\n                            cellpadding=\"0\"\n                            cellspacing=\"0\"\n                            style=\"min-width: 100%\"\n                          >\n                            <!--[if gte mso 9]>\n<tr>\n<td>\n<table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n<![endif]-->\n                            <tbody>\n                              <tr style=\"white-space: nowrap\">\n                                <td\n                                  class=\"stack\"\n                                  style=\"\n                                    white-space: normal;\n                                    padding-left: 40px;\n                                    padding-right: 40px;\n                                  \"\n                                >\n                                  <div class=\"mktoSnippet\" id=\"footer\">\n                                    <table\n                                      role=\"presentation\"\n                                      width=\"100%\"\n                                      border=\"0\"\n                                      cellpadding=\"0\"\n                                      cellspacing=\"0\"\n                                    >\n                                      <tbody>\n                                        <tr>\n                                          <td\n                                            class=\"footer\"\n                                            style=\"\n                                              font-family: Arial, Helvetica,\n                                                sans-serif;\n                                              color: #8f8f8f;\n                                              font-size: 13px;\n                                              text-align: center;\n                                            \"\n                                          >\n                                            Copyright ©&nbsp;2025 Cloudflare,\n                                            Inc.<br />\n                                            101 Townsend Street, San Francisco,\n                                            CA 94107<br /><br />\n                                            <a\n                                              href=\"https://www.cloudflare.com/\"\n                                              style=\"\n                                                color: #8f8f8f;\n                                                text-decoration: none;\n                                              \"\n                                              >www.cloudflare.com</a\n                                            >\n                                            &nbsp;|&nbsp;\n                                            <a\n                                              href=\"https://community.cloudflare.com/\"\n                                              style=\"\n                                                color: #8f8f8f;\n                                                text-decoration: none;\n                                              \"\n                                              target=\"_blank\"\n                                              >Community</a\n                                            >\n                                          </td>\n                                        </tr>\n                                        <tr>\n                                          <td\n                                            style=\"padding-top: 20px\"\n                                            align=\"center\"\n                                          >\n                                            <table\n                                              role=\"presentation\"\n                                              border=\"0\"\n                                              cellpadding=\"0\"\n                                              cellspacing=\"0\"\n                                              stlye=\"margin-right:auto;margin-left:auto;\"\n                                              align=\"center\"\n                                            >\n                                              <tbody>\n                                                <tr>\n                                                  <td\n                                                    width=\"40\"\n                                                    align=\"center\"\n                                                    style=\"\n                                                      padding-right: 2px;\n                                                      padding-left: 2px;\n                                                    \"\n                                                  >\n                                                    <a\n                                                      href=\"https://www.facebook.com/Cloudflare/\"\n                                                      title=\"Facebook\"\n                                                      ><img\n                                                        src=\"https://info.cloudflare.com/rs/713-XSC-918/images/social-icon-fb-email-108px.png\"\n                                                        width=\"36\"\n                                                        height=\"36\"\n                                                        alt=\"Facebook\"\n                                                        style=\"\n                                                          display: block;\n                                                          margin-right: auto;\n                                                          margin-left: auto;\n                                                          border-style: none;\n                                                        \"\n                                                        constrain=\"true\"\n                                                        imagepreview=\"false\"\n                                                    /></a>\n                                                  </td>\n                                                  <td\n                                                    width=\"40\"\n                                                    align=\"center\"\n                                                    style=\"\n                                                      padding-right: 2px;\n                                                      padding-left: 2px;\n                                                    \"\n                                                  >\n                                                    <a\n                                                      href=\"https://X.com/Cloudflare\"\n                                                      title=\"X\"\n                                                      ><img\n                                                        src=\"https://info.cloudflare.com/rs/713-XSC-918/images/social-icon-twitter-email-108px.png\"\n                                                        width=\"36\"\n                                                        height=\"36\"\n                                                        alt=\"X\"\n                                                        style=\"\n                                                          display: block;\n                                                          margin-right: auto;\n                                                          margin-left: auto;\n                                                          border-style: none;\n                                                        \"\n                                                        constrain=\"true\"\n                                                        imagepreview=\"false\"\n                                                    /></a>\n                                                  </td>\n                                                  <td\n                                                    width=\"40\"\n                                                    align=\"center\"\n                                                    style=\"\n                                                      padding-right: 2px;\n                                                      padding-left: 2px;\n                                                    \"\n                                                  >\n                                                    <a\n                                                      href=\"https://www.linkedin.com/company/cloudflare\"\n                                                      title=\"LinkedIn\"\n                                                      ><img\n                                                        src=\"https://info.cloudflare.com/rs/713-XSC-918/images/social-icon-linkedin-email-108px.png\"\n                                                        width=\"36\"\n                                                        height=\"36\"\n                                                        alt=\"LinkedIn\"\n                                                        style=\"\n                                                          display: block;\n                                                          margin-right: auto;\n                                                          margin-left: auto;\n                                                          border-style: none;\n                                                        \"\n                                                        constrain=\"true\"\n                                                        imagepreview=\"false\"\n                                                    /></a>\n                                                  </td>\n                                                </tr>\n                                              </tbody>\n                                            </table>\n                                            <br />\n                                          </td>\n                                        </tr>\n                                      </tbody>\n                                    </table>\n                                  </div>\n                                </td>\n                              </tr>\n                              <!--[if gte mso 9]>\n</table>\n</td>\n</tr>\n<![endif]-->\n                            </tbody>\n                          </table>\n                          <!--/Footer-->\n                        </td>\n                      </tr>\n                    </table>\n                  </td>\n                </tr>\n                <!-- END FOOTER -->\n\n                <!--/Container-->\n                <!--Full Width Image for Gmail to render desktop version on mobile-->\n                <tr>\n                  <td>\n                    <table\n                      role=\"presentation\"\n                      class=\"hide\"\n                      id=\"gmailModule\"\n                      width=\"100%\"\n                      border=\"0\"\n                      cellpadding=\"0\"\n                      cellspacing=\"0\"\n                      style=\"min-width: 100%\"\n                    >\n                      <tbody>\n                        <tr\n                          style=\"white-space: nowrap; background-color: #ffffff\"\n                        >\n                          <td\n                            height=\"1\"\n                            class=\"hide\"\n                            style=\"\n                              min-width: 650px;\n                              opacity: 0;\n                              font-size: 0px;\n                              line-height: 0px;\n                            \"\n                          >\n                            <img\n                              height=\"1\"\n                              src=\"#\"\n                              style=\"\n                                min-width: 650px;\n                                max-height: 0px;\n                                text-decoration: none;\n                                border: none;\n                                -ms-interpolation-mode: bicubic;\n                              \"\n                            />\n                          </td>\n                        </tr>\n                      </tbody>\n                    </table>\n                  </td>\n                </tr>\n                <!--/Full Width Image for Gmail to render desktop version on mobile-->\n              </tbody>\n            </table>\n            <!--End Body Table-->\n          </td>\n        </tr>\n      </tbody>\n    </table>\n    <script\n      defer\n      src=\"https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015\"\n      integrity=\"sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==\"\n      data-cf-beacon=\'{\"rayId\":\"921e05f29d13a948\",\"serverTiming\":{\"name\":{\"cfExtPri\":true,\"cfL4\":true,\"cfSpeedBrain\":true,\"cfCacheStatus\":true}},\"version\":\"2025.1.0\",\"token\":\"271854501d8743cfb7cc749ee8f2dde0\"}\'\n      crossorigin=\"anonymous\"\n    ></script>\n  </body>\n</html>\n','This email address was just used to sign up for a Cloudflare account \n\nIf this was you, please verify your email below. \n\nhttps://dash.cloudflare.com/email-verification?token=IMNUl5LmDCHt5X7y7dvmPOj6iV8dtXKtvv-ycVkx9_hivrSqDZhbejZPrfPVBE9fdMCK16mX2j6vY5-T_LMh5gRZaC7u3ZSTGEAi-7WV44MTh04wMn4fnZDd9itcLuALTNihEXA5boNEn8jQ6JKnUSaF7OHXAVPYnEACmX1KWA0fAIpcUOBGO5jZoB66KtYFUfYTYcTEVsOtBGlrhpOhmmwC-QZVvczjquKa58xlcuo\n\nNot you?\n Don’t worry. Your internet properties on this account (and any other Cloudflare accounts you own) are not at risk. \n\nYou can delete this newly-created account by entering the following token at the link below:\nToken: f1bce644decf2f287f226dae2df458e6cae9f3eeb011e34787ee789cee4fb3eb\nhttps://dash.cloudflare.com/unintended-registration\n\n',0,0,0,0,0,0,'2025-05-03 17:55:13','2025-12-09 19:02:08','2025-12-09 19:02:08','2025-12-09 19:02:08',NULL,NULL,NULL),
(207,4,'<1C.04.48315.7A856186@i-023220bd6c5741581.mta1vrest.sd.prd.sparkpost>',NULL,NULL,'Free Plan purchased for mavrix.one','em@em1.cloudflare.com','\"Cloudflare\"','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"> <html dir=\"ltr\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\" style=\"font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\'\"> <head> <meta charset=\"UTF-8\"> <meta name=\"x-apple-disable-message-reformatting\"> <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"> <meta content=\"telephone=no\" name=\"format-detection\"> <title>Free Plan purchased for mavrix.one</title><!--[if (mso 16)]><style type=\"text/css\">a{text-decoration:none}</style><![endif]--><!--[if gte mso 9]><style>sup{font-size:100%!important}</style><![endif]--><!--[if gte mso 9]><xml> <o:OfficeDocumentSettings> <o:AllowPNG></o:AllowPNG> <o:PixelsPerInch>96</o:PixelsPerInch> </o:OfficeDocumentSettings> </xml><![endif]--> <style type=\"text/css\">#outlook a{padding:0}.es-button{mso-style-priority:100!important;text-decoration:none!important}a[x-apple-data-detectors]{color:inherit!important;text-decoration:none!important;font-size:inherit!important;font-family:inherit!important;font-weight:inherit!important;line-height:inherit!important}.es-desk-hidden{display:none;float:left;overflow:hidden;width:0;max-height:0;line-height:0;mso-hide:all}@media screen and (max-width:384px){.mail-message-content{width:414px!important}}</style> </head> <body style=\"width:100%;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;padding:0;Margin:0\">\r\n<div style=\"color:transparent;visibility:hidden;opacity:0;font-size:0px;border:0;max-height:1px;width:1px;margin:0px;padding:0px;border-width:0px!important;display:none!important;line-height:0px!important;\"><img border=\"0\" width=\"1\" height=\"1\" src=\"http://tracksp.cloudflare.com/q/LdS5oYxsih5mrXpBx-jpvg~~/AARGbBA~/4iq7MhkucuIoTY11GCp9V_oSdPOW5Wz8XYeg9eC1cbPC10b1Y3dtj_Z4TXOI_81l\" alt=\"\"/></div>\r\n<span style=\"color:transparent;visibility:hidden;display:none;opacity:0;height:0;width:0;font-size:0;\">Start by enabling a few features designed to protect and optimize the performance of your website.</span><img src=\"https://links1.cloudflare.com/s/eo/xc2j8hEWbbT_L88iVo4fPWB-_y6cvmBR7a7buKAZ8ZBCfTWvbRc6cH5aIIi1kiyO1naDzFZn29DZAW402e5Qx8Lp-koLO2um-bKhi9FDoavtTzvhewUZAiJbmgexgk9iYG3fYiaZjuOGFyh3bck6S0Bt8N8psNECwhxTaao_8pjYimbByt53ngiwcloLiSAc6VvOIA/5wRVofe9URBdq2PKBqM0XPL3vCBaXNKe/8\" style=\"border:0;width:1px;height:1px;border-width:0px!important;display:none!important;line-height:0!important;\" width=\"1\" height=\"1\"/><span style=\"display:none !important;font-size:0px;line-height:0;color:#ffffff;visibility:hidden;opacity:0;height:0;width:0;mso-hide:all\">Start by enabling a few features designed to protect and optimize the performance of your website. </span> <div dir=\"ltr\" class=\"es-wrapper-color\" lang=\"en\" style=\"background-color:#F2F2F2\"><!--[if gte mso 9]><v:background xmlns:v=\"urn:schemas-microsoft-com:vml\" fill=\"t\"> <v:fill type=\"tile\" color=\"#f2f2f2\"></v:fill> </v:background><![endif]--> <table class=\"es-wrapper\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;padding:0;Margin:0;width:100%;height:100%;background-repeat:repeat;background-position:center top;background-color:#F2F2F2\"> <tr class=\"gmail-fix\" height=\"0\"> <td style=\"padding:0;Margin:0\"> <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" align=\"center\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;width:600px\"> <tr> <td cellpadding=\"0\" cellspacing=\"0\" border=\"0\" height=\"0\" style=\"padding:0;Margin:0;line-height:1px;min-width:600px\"><img src=\"https://rtbpvv.stripocdn.email/content/guids/CABINET_837dc1d79e3a5eca5eb1609bfe9fd374/images/41521605538834349.png\" width=\"600\" height=\"1\" style=\"display:block;border:0;outline:none;text-decoration:none;-ms-interpolation-mode:bicubic;max-height:0px;min-height:0px;min-width:600px;width:600px\" alt></td> </tr> </table></td> </tr> <tr> <td valign=\"top\" style=\"padding:0;Margin:0\"> <table class=\"es-header\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;table-layout:fixed !important;width:100%;background-color:transparent;background-repeat:repeat;background-position:center top\"> <tr> <td align=\"center\" bgcolor=\"#dfdfdf\" style=\"padding:0;Margin:0;background-color:#dfdfdf\"> <table class=\"es-header-body\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#ffffff\" align=\"center\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;background-color:#FFFFFF;width:600px\"> <tr> <td align=\"left\" bgcolor=\"#ffffff\" style=\"padding:20px;Margin:0;background-color:#ffffff\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"center\" valign=\"top\" style=\"padding:0;Margin:0;width:560px\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"center\" style=\"padding:0;Margin:0;font-size:0px\"><a target=\"_blank\" href=\"https://links1.cloudflare.com/s/c/WIAZcypKVif3OGwOKviV6QGrkPz7-CWxlXk1RgQ2dHyOtuI1QObtbZwbMiMpK3XRoD-HrbttUDTrI_sGeF5aq1fTpNj05MGh5iRYAPBFxJjte0W8xOkYL9sSq1hV-2rkMm9t0uZTt_vG_DWU-n354U8f5atIZJwiz1H4NJ7d5CQ-GKQ-t2ajn2ksiAlFExAELSZgy1haYTrBhW22tl3D9DzLcvi6XtqsasDjYEUAV7HI7ZeoRo2ySVPc2eAWZEsF07P0ieSBMfDVrZOJGXnnu6k32KzqZ_r6mCwIPwawFIr-DPtyLM-EkPTJcZ1TUcjckI817OM09FntpmKvW9DGizPBsfbAyIuKp6fI9CvcJhXi6ZUUa8kjh86PUUlk/oKdCMEvU_QrsNX1kCI6xPBXcuTgL79Pu/8\" style=\"-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;text-decoration:underline;color:#1376C8;font-size:14px\"><img class=\"adapt-img\" src=\"https://rtbpvv.stripocdn.email/content/guids/CABINET_c9363f2831761bed027a1139c4081aa6a762758014d7a3bf26c0684caf4aaa0d/images/cloudflare_email_header1.png\" alt style=\"display:block;border:0;outline:none;text-decoration:none;-ms-interpolation-mode:bicubic\" width=\"560\"></a> </td> </tr> </table></td> </tr> </table></td> </tr> <tr> <td align=\"left\" bgcolor=\"#ffffff\" style=\"padding:0;Margin:0;padding-top:20px;padding-left:20px;padding-right:20px;background-color:#ffffff\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"center\" valign=\"top\" style=\"padding:0;Margin:0;width:560px\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"center\" style=\"padding:0;Margin:0;font-size:0px\"><img class=\"adapt-img\" src=\"https://rtbpvv.stripocdn.email/content/guids/CABINET_25ac98bd541a2780ad573b87e8a372363c12ba5cc935b8b84b844c2f940ca7bd/images/dev_platform.png\" alt style=\"display:block;border:0;outline:none;text-decoration:none;-ms-interpolation-mode:bicubic\" width=\"560\"></td> </tr> <tr> <td align=\"center\" style=\"padding:0;Margin:0;padding-top:10px\"><h1 style=\"Margin:0;line-height:34px;mso-line-height-rule:exactly;font-family:arial, \'helvetica neue\', helvetica, sans-serif;font-size:28px;font-style:normal;font-weight:bold;color:#222222\">Welcome to your free plan for mavrix.one!</h1></td> </tr> <tr> <td align=\"center\" style=\"padding:5px;Margin:0;font-size:0\"> <table border=\"0\" width=\"100%\" height=\"100%\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td style=\"padding:0;Margin:0;border-bottom:0px solid #cccccc;background:none;height:1px;width:100%;margin:0px\"></td> </tr> </table></td> </tr> <tr> <td align=\"center\" style=\"padding:0;Margin:0\"><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:19px;color:#3d3d3d;font-size:16px\">Get familiar with our documentation, tools, and features available now.</p></td> </tr> </table></td> </tr> </table></td> </tr> <tr> <td align=\"left\" style=\"padding:20px;Margin:0\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"center\" valign=\"top\" style=\"padding:0;Margin:0;width:560px\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"center\" style=\"padding:0;Margin:0\"><!--[if mso]><a href=\"https://links1.cloudflare.com/s/c/SaGM27XivgtmKGFOmo30CHEZ0D0m6BOKrl9BJ0J61CXQQUQPpw4ocIgAW66yATHjljBpzfXT6oqtQU9S9V-AFIOjzGukaAfgRZpYBqXBf4RD753AJS83Ij7qPU-sH-qj46Mcwe663v9IiJF9z3rnF5_f5SlC9XgyEQO9pShjQhtLNR6uXna0Xd6qJgD4MUFY7YS8Ui-g3S7QaoINVNURvqFTjuYSOLADHNAGGnKIRfy8vU4ObZGkMu00KXGiQ3ZY9DaRtJy6GqyabHhXYpE8_pdJnbqaMGV8jaO_qYVFI_LBPllneJlXKq9sV-JRABbWCYJNSrw4hjRPFUv4_28qI7joZ-Afu17mfvWQOzhfLXNMUNQLPt836TkQhPh2l8B-3CPR1NSuiXbxu9SePpENsjFthp41nve_/1VcAitVZ6vZsBRnBL41YMdSVhfcNKl2E/8\" target=\"_blank\" hidden> <v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" esdevVmlButton href=\"https://links1.cloudflare.com/s/c/bbwvQdP-11TO9uQQR5P8XO5LeLp0cR-NbrZ98SJZLEbw00cZL8pGHfE4UDTVWP9tRC7XehKdvygWev7FCzZa5uzr7AsGs1zU-_5bkp-MQvxaRvZ3ac13yLmgY65U90jTXE3o67g2XRWlehp84e6b-vv4_BNArl5JIOD-ch8-nVosz_d2IG5APdQin66fwaPbKIr-h_Vdx55jbzCAGhk7cQDRefxGbpc9U0-uxfZ79eyXxTTI58lMRKuRBDPyMo6Ku2xFYdpDyjzkUZeyE_Uys7T6Ow8Pet0yPAJZzf8-oe4dSLxfA6NS8yd6wqtrSNbOAzTrJdwf33se8ONS8NAylj3mxDm9Og5lprth9NyOUfjMQsH8dpi45apqAN4GqensxgCOj9_Jui0fzmpKa09Q1rpn-Fys8Kkk/cJgeXq7iTncF3YxQXgAKXjHEbrHjXB9d/8\" style=\"height:49px; v-text-anchor:middle; width:172px\" arcsize=\"12%\" strokecolor=\"#ff6633\" strokeweight=\"1px\" fillcolor=\"#ff6633\"> <w:anchorlock></w:anchorlock> <center style=\'color:#ffffff; font-family:-apple-system, \"system-ui\", \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"; font-size:16px; font-weight:400; line-height:16px; mso-text-raise:1px\'>Manage Website</center> </v:roundrect></a><![endif]--><!--[if !mso]><!-- --><span class=\"msohide es-button-border\" style=\"border-style:solid;border-color:#ff6633;background:#ff6633;border-width:2px;display:inline-block;border-radius:6px;width:auto;mso-hide:all\"><a href=\"https://links1.cloudflare.com/s/c/kzl23TXZ0B2AqabFJGA_ZwmBvYa3_alQrUvKb3CQGEZ5UouCQng6NiLBpsfRYdTNqhzTf_8zlcSrQxzV7ouH_cQ6y4jrd1E-M1_OL3_CV67q9oLPIq-X9zKTZUlFMLVa10rLU75ogrZ_Jcd4Hjlnztpk9NiKhGN9vYc2IYicU0kQQbSRx8kJVJri1hwkdvOuXHVG9xCeWw9mhRJFetjiExYvFs6dYlZaTZohixkKzgTAVKZAXW5B-UE_adruKxycS_xfGX0sL0njru4CSVCcDrJnnOk9yqLwAuQk1czSJvexjl6bWxHbJNQXezKDUrwIuqXUT-yXiukD-zIKziGAlNYy6vuHqqJh8wUm3P7u1t5VhHnjtIen2Ab2Ps2w4re5jBX7l83b3kI7igyUSBGbNt5Z49FN9Em6/nq6fAKklqdW1f0SQi5Zs88TXQ5eCNK45/8\" class=\"es-button\" target=\"_blank\" style=\"-webkit-text-size-adjust: none; -ms-text-size-adjust: none; mso-line-height-rule: exactly; color: #ffffff; font-size: 16px; display: inline-block; background: #ff6633; border-radius: 6px; font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\'; font-weight: normal; font-style: normal; line-height: 19px; width: auto; text-align: center; padding: 15px; mso-padding-alt: 0; mso-border-alt: 10px solid #ff6633; text-decoration: none!important; mso-style-priority: 100 !important;\">Manage Website</a></span><!--<![endif]--></td> </tr> </table></td> </tr> </table></td> </tr> </table></td> </tr> </table> <table class=\"es-content\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;table-layout:fixed !important;width:100%\"> <tr> <td align=\"center\" bgcolor=\"#dfdfdf\" style=\"padding:0;Margin:0;background-color:#dfdfdf\"> <table class=\"es-content-body\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#ffffff\" align=\"center\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;background-color:#ffffff;width:600px\" role=\"none\"> <tr> <td align=\"left\" bgcolor=\"#ffffff\" style=\"padding:0;Margin:0;padding-top:20px;padding-left:20px;padding-right:20px;background-color:#ffffff\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"center\" valign=\"top\" style=\"padding:0;Margin:0;width:560px\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"left\" style=\"padding:0;Margin:0\"><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:36px;color:#333333;font-size:24px\"><strong>Onboarding 101</strong></p> </td> </tr> <tr> <td align=\"center\" style=\"padding:0;Margin:0;padding-top:5px;font-size:0\"> <table border=\"0\" width=\"100%\" height=\"100%\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td style=\"padding:0;Margin:0;border-bottom:2px solid #ff6633;background:none;height:1px;width:100%;margin:0px\"></td> </tr> </table></td> </tr> </table></td> </tr> </table></td> </tr> <tr> <td align=\"left\" bgcolor=\"#ffffff\" style=\"padding:20px;Margin:0;background-color:#ffffff\"><!--[if mso]><table style=\"width:560px\" cellpadding=\"0\" cellspacing=\"0\"><tr> <td style=\"width:394px\" valign=\"top\"><![endif]--> <table cellpadding=\"0\" cellspacing=\"0\" class=\"es-left\" align=\"left\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;float:left\"> <tr> <td class=\"es-m-p0r es-m-p20b\" valign=\"top\" align=\"center\" style=\"padding:0;Margin:0;width:394px\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"left\" style=\"padding:0;Margin:0;padding-bottom:5px\"><h3 style=\"Margin:0;line-height:22px;mso-line-height-rule:exactly;font-family:-apple-system, blinkmacsystemfont, \'segoe ui\', roboto, helvetica, arial, sans-serif, \'apple color emoji\', \'segoe ui emoji\', \'segoe ui symbol\';font-size:18px;font-style:normal;font-weight:bold;color:#222222\">Getting Started with Cloudflare (Free Plan)</h3></td> </tr> <tr> <td align=\"left\" style=\"padding:0;Margin:0\"><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:24px;color:#333333;font-size:16px\">Learn how you can get the most out of your Free plan.</p></td> </tr> </table></td> </tr> </table><!--[if mso]></td><td style=\"width:20px\"></td> <td style=\"width:146px\" valign=\"top\"><![endif]--> <table cellpadding=\"0\" cellspacing=\"0\" align=\"right\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"left\" style=\"padding:0;Margin:0;width:146px\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"center\" style=\"padding:5px;Margin:0;font-size:0\"> <table border=\"0\" width=\"100%\" height=\"100%\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td style=\"padding:0;Margin:0;border-bottom:0px solid #cccccc;background:none;height:1px;width:100%;margin:0px\"></td> </tr> </table></td> </tr> <tr> <td align=\"center\" style=\"padding:0;Margin:0\"><!--[if mso]><a href=\"https://links1.cloudflare.com/s/c/NIMmNrR_5FItjwM52VHfr3xI0o18MO6Ooa1tOH0W6FXc1q5bS6sAVoyt8K8cJ796OOfTyo1aO7vqVtDfLJ8lxYQsB2UOi3o2Eqh73Zyd5PSb1uDZUaIgdGvJXsx_T3R0YZ1bvPzlkvJdb4_7dLmRqAlMt1gXleOE774qLER6yfIU0nJ6O6fb1WLIZYEHF9ekQggrWcYxy3OWi9ZWqD7VCodDjKHvMkN2PysQSbfNE_6jT3XT3tuAzKXvNWpTKk5xUkaoo0O8JKrZ7ZbZg1uFXh1CvOQGUrUwkg4MCprGvQWFEnm94HPhOAtfu80Sa_lstLipdaC3KKBktj7pjH1hM9GIKpgti6xVLBheL6cJKJ7buDRKw5w1U3Tn09Dus53m1E4xz6nSqIFrFhLB1_VlPjGSBPIKnnAoL-LIF4Unq-PfLQ10aA/uJZmC6KvSwSh7D0cu-_OD8oSwYGMQERi/8\" target=\"_blank\" hidden> <v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" esdevVmlButton href=\"https://links1.cloudflare.com/s/c/xpn3NSe6kcqQpXsBawVXR2ZvCuUPDXBW-feb2IgCud56fIF30LS58I6FYbyPSpWjDkYLkVc0FQcwrxCuwKdaogK56GqeVw2uzgnI8fhkN__rpRswuxHl49s7NXOpwwUG9CAdQlAR9RX8iaA3WSBUlxk87dSmI5Pe7cfA4nv5FRkmQAUb5d8oe2x-rRtbEy02gvjnDqL9j2sl6AHOGBo2NXQY6IRKOjzP3jmrqdPBhnWG-j5jZxgCM1E1WXUUWiJrilEMEkRIzlSQREjwr3a3qvSO-X80wcavEYp5OL-KXppiq1Id4peqqNMfx3Qe9Yz9fm7SUTq_CTiSgSvFW8iIb2oK4AnzOvsYukW8oQuh7vgGye0w2v_N_NmHEtQGqUkoeflDu2ElSsbvapkuXGeGzVjmQDnIMfwhXLeq6YMUbc-HqFVqiQ/kJAsb-V_3I5C2wxt4fU5iD-I1S3of3K0/8\" style=\"height:49px; v-text-anchor:middle; width:143px\" arcsize=\"12%\" strokecolor=\"#ff6633\" strokeweight=\"1px\" fillcolor=\"#ffffff\"> <w:anchorlock></w:anchorlock> <center style=\'color:#ff6633; font-family:-apple-system, \"system-ui\", \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"; font-size:16px; font-weight:400; line-height:16px; mso-text-raise:1px\'>Learn more</center> </v:roundrect></a><![endif]--><!--[if !mso]><!-- --><span class=\"msohide es-button-border\" style=\"border-style:solid;border-color:#ff6633;background:#ffffff;border-width:2px;display:block;border-radius:6px;width:auto;mso-hide:all\"><a href=\"https://links1.cloudflare.com/s/c/9WSTt-kS_Ciq7gcFH73lWpnkTAVgeRc0eE1-DCyGz5OJD6k7dJVz3miQPuwpfiZLGI8q5u0y4PzcINobQ97ulkexqVzx57TZ_z8RZywvrySoQhZy6JVBLiwZbHFXn3MAJ-KtTCFk_dSROADHNCbdguFdlmc8nteNQDVecpoH6igVyKLAu0MquTt1RnAnHjlWl60OenYHShZCwV8eKKAKz-TtRY1m9p4PojCrKkGXyK0KtNVwh4Zoy3hAfuasv92pI3drgk0HQ8s9TahVpB20zQx6k47w1jB2tHssUXFtRFTtjV_xEbb-Ze7JCjaeFuAfCDKq67FKT4_m4Io9yllbNPtVIbJGyXR0g4ORRs2wD-LKFU5syLryvKa8Q18bKxxqtkoKl7d-Qnx5EumI3StYqAn_4FKIkH7RXWngyl3ZN1PozW46cg/lRxlyRdBdPjSQHHoBeho9t619XbwLpH-/8\" class=\"es-button msohide\" target=\"_blank\" style=\"-webkit-text-size-adjust: none; -ms-text-size-adjust: none; mso-line-height-rule: exactly; color: #ff6633; font-size: 16px; display: block; background: #FFFFFF; border-radius: 6px; font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\'; font-weight: normal; font-style: normal; line-height: 19px; width: auto; text-align: center; padding: 15px; mso-padding-alt: 0; mso-border-alt: 10px solid #FFFFFF; mso-hide: all; padding-left: 15px; padding-right: 15px; text-decoration: none!important; mso-style-priority: 100 !important;\">Learn more</a></span> <!--<![endif]--></td> </tr> </table></td> </tr> </table><!--[if mso]></td></tr></table><![endif]--></td> </tr> <tr> <td align=\"left\" bgcolor=\"#ffffff\" style=\"padding:20px;Margin:0;background-color:#ffffff\"><!--[if mso]><table style=\"width:560px\" cellpadding=\"0\" cellspacing=\"0\"><tr> <td style=\"width:394px\" valign=\"top\"><![endif]--> <table cellpadding=\"0\" cellspacing=\"0\" class=\"es-left\" align=\"left\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;float:left\"> <tr> <td class=\"es-m-p0r es-m-p20b\" valign=\"top\" align=\"center\" style=\"padding:0;Margin:0;width:394px\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"left\" style=\"padding:0;Margin:0;padding-bottom:5px\"><h3 style=\"Margin:0;line-height:22px;mso-line-height-rule:exactly;font-family:-apple-system, blinkmacsystemfont, \'segoe ui\', roboto, helvetica, arial, sans-serif, \'apple color emoji\', \'segoe ui emoji\', \'segoe ui symbol\';font-size:18px;font-style:normal;font-weight:bold;color:#222222\">Transfer Domain to Cloudflare</h3></td> </tr> <tr> <td align=\"left\" style=\"padding:0;Margin:0\"><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:24px;color:#333333;font-size:16px\">Cloudflare sells domains at cost allowing us to have the lowest price available. You pay what we pay.</p></td> </tr> </table></td> </tr> </table><!--[if mso]></td><td style=\"width:20px\"></td> <td style=\"width:146px\" valign=\"top\"><![endif]--> <table cellpadding=\"0\" cellspacing=\"0\" align=\"right\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"left\" style=\"padding:0;Margin:0;width:146px\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"center\" style=\"padding:5px;Margin:0;font-size:0\"> <table border=\"0\" width=\"100%\" height=\"100%\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td style=\"padding:0;Margin:0;border-bottom:0px solid #cccccc;background:none;height:1px;width:100%;margin:0px\"></td> </tr> </table></td> </tr> <tr> <td align=\"center\" style=\"padding:0;Margin:0\"><!--[if mso]><a href=\"https://links1.cloudflare.com/s/c/Jt1nGZ7rr1k7hPu87lxLhl_72vrMoObWnwn7wRKLxabIw6OKkh3g-8-uOfQLMYctT3XsHJHTd-8BDuxohf4U3UsmPNUko9q0HVf-9onsZ9QAp5ZgzaHK26ewpcCaIEv82grv4XJqzC5bCkRnXv1QvvKCqAYWm7fC6oDTqEARueU46XIL-uIKWUJWTJfPGD6vEQBTzbVJiDtOx47oJM6J92f9xJyrmvpf5Z7VORzpEfwG1cIMZ7WCAUFm4lF2kufzznL5qpjzN9bfS2lur_V4dP2WduUqLILbP40Qx10ktErpnOFBfIp4VbXNLUIiP0aBRtixsuLTAVJo7FdxjNAuBZ9TneSL7d0tKt35Y8Y4_J2xOloTa6vttTcqu7LHLtupKaELChBT5t9gd10WoRfECkUBLI3PIwYeSSbKJi8/iS9dx5iiyeBli1umGWjhxohcbCkAp4KB/8\" target=\"_blank\" hidden> <v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" esdevVmlButton href=\"https://links1.cloudflare.com/s/c/lDFPUNPUC1t8_LgJbdynlJda_wWZuyy3bTAJF10Ci6ift-j-FUVUyFmC1tY4S6u5F781w4RIoAVXEPqyasqZRhewsJHz9rfYfpOdEfD80mV-NG4qBvBV9UOTOfRH8IW-Q-u4B-jrRpTZNDKVKREA7PE7RLEv_AomVkQGlLBZq7hqlamzmhkF2nsP7swP2wdkNutXNoGrPVlVnFaT7F0h3F0VALuLYdGwq6_AJxxzQ71hjp-WtgBVoDZXT3U3d75mAdS2fDHhkA4x8mhVXOip0xfY-T3fepF1wkiPWTeghVuKvBwTPPZfFKw1Hw6Ay-6QBaUUglimjhtAbHP3R9wB-COaQQWciW4h_kFYGNCc58UGeyKoeRLV__IH6ePSiwHkUu8IF6YQweH4JDvTq2Sc2wfM2CEaRc4g6rvODlU/8BKvP7L8pzqj_MVRTCIv-ltjG_MWsRQD/8\" style=\"height:68px; v-text-anchor:middle; width:143px\" arcsize=\"9%\" strokecolor=\"#ff6633\" strokeweight=\"1px\" fillcolor=\"#ffffff\"> <w:anchorlock></w:anchorlock> <center style=\'color:#ff6633; font-family:-apple-system, \"system-ui\", \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"; font-size:16px; font-weight:400; line-height:16px; mso-text-raise:1px\'>Transfer Domain</center> </v:roundrect></a><![endif]--><!--[if !mso]><!-- --><span class=\"msohide es-button-border\" style=\"border-style:solid;border-color:#ff6633;background:#ffffff;border-width:2px;display:block;border-radius:6px;width:auto;mso-hide:all\"><a href=\"https://links1.cloudflare.com/s/c/JW3Qyx7rlVIXmt8zHMMgWLMqpWWgilzMjrWs7ea-ZklSgJthcUbm2O5vdpJ1gxLzf842Wj_gmsYFvDl1Lok523nMvz71EAPQpUaSfKq2jmNHey3i8zOQDfCUPLsxZzKl-_kijdAQzPtYJXlgPCGWLO837I78uYLHF3QKkA_bjzeGdhcV6ZUx9ekN07DHdsx1snlnY_JUb6Rf2jLbwUDGN3-GhUCN9jWJXu1_KGrnsr3ok_nEzgN_wvl6n6RZuwXzbPzCAiFUv5Uk3nn6j1POPyCIUN7UbH-jzHNQ6aouFF1CX9DDoDI5p3w9t4Wl-Y1ZuZajMfvK2uGZxqNIiYsbvHZ_KqJuEduRPhqHDeVAbKO7-02s_P76XXTcGhCbm3vavAOZmCemQ5FIr5fmFg7s5HG6VV1JS4Kcswy3UAM/hqxtH1fY9_jC6ElAfFprcbuhpbWR5L-f/8\" class=\"es-button msohide\" target=\"_blank\" style=\"-webkit-text-size-adjust: none; -ms-text-size-adjust: none; mso-line-height-rule: exactly; color: #ff6633; font-size: 16px; display: block; background: #FFFFFF; border-radius: 6px; font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\'; font-weight: normal; font-style: normal; line-height: 19px; width: auto; text-align: center; padding: 15px; mso-padding-alt: 0; mso-border-alt: 10px solid #FFFFFF; mso-hide: all; padding-left: 15px; padding-right: 15px; text-decoration: none!important; mso-style-priority: 100 !important;\">Transfer Domain</a></span> <!--<![endif]--></td> </tr> </table></td> </tr> </table><!--[if mso]></td></tr></table><![endif]--></td> </tr> </table></td> </tr> </table> <table class=\"es-content\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;table-layout:fixed !important;width:100%\"> <tr> <td align=\"center\" bgcolor=\"#dfdfdf\" style=\"padding:0;Margin:0;background-color:#dfdfdf\"> <table class=\"es-content-body\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#ffffff\" align=\"center\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;background-color:#ffffff;width:600px\" role=\"none\"> <tr> <td align=\"left\" bgcolor=\"#ffffff\" style=\"padding:0;Margin:0;padding-top:20px;padding-left:20px;padding-right:20px;background-color:#ffffff\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"center\" valign=\"top\" style=\"padding:0;Margin:0;width:560px\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"left\" style=\"padding:0;Margin:0\"><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:36px;color:#333333;font-size:24px\"><strong>Optimize Performance</strong></p> </td> </tr> <tr> <td align=\"center\" style=\"padding:0;Margin:0;padding-top:5px;font-size:0\"> <table border=\"0\" width=\"100%\" height=\"100%\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td style=\"padding:0;Margin:0;border-bottom:2px solid #ff6633;background:none;height:1px;width:100%;margin:0px\"></td> </tr> </table></td> </tr> </table></td> </tr> </table></td> </tr> <tr> <td align=\"left\" bgcolor=\"#ffffff\" style=\"padding:20px;Margin:0;background-color:#ffffff\"><!--[if mso]><table style=\"width:560px\" cellpadding=\"0\" cellspacing=\"0\"><tr> <td style=\"width:394px\" valign=\"top\"><![endif]--> <table cellpadding=\"0\" cellspacing=\"0\" class=\"es-left\" align=\"left\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;float:left\"> <tr> <td class=\"es-m-p0r es-m-p20b\" valign=\"top\" align=\"center\" style=\"padding:0;Margin:0;width:394px\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"left\" style=\"padding:0;Margin:0;padding-bottom:5px\"><h3 style=\"Margin:0;line-height:22px;mso-line-height-rule:exactly;font-family:-apple-system, blinkmacsystemfont, \'segoe ui\', roboto, helvetica, arial, sans-serif, \'apple color emoji\', \'segoe ui emoji\', \'segoe ui symbol\';font-size:18px;font-style:normal;font-weight:bold;color:#222222\">Brotli</h3></td> </tr> <tr> <td align=\"left\" style=\"padding:0;Margin:0\"><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, blinkmacsystemfont, \'segoe ui\', roboto, helvetica, arial, sans-serif, \'apple color emoji\', \'segoe ui emoji\', \'segoe ui symbol\';line-height:24px;color:#3d3d3d;font-size:16px\">Speed up page load times for your visitor’s HTTPS traffic by applying Brotli compression.</p></td> </tr> </table></td> </tr> </table><!--[if mso]></td><td style=\"width:20px\"></td> <td style=\"width:146px\" valign=\"top\"><![endif]--> <table cellpadding=\"0\" cellspacing=\"0\" align=\"right\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"left\" style=\"padding:0;Margin:0;width:146px\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"center\" style=\"padding:5px;Margin:0;font-size:0\"> <table border=\"0\" width=\"100%\" height=\"100%\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td style=\"padding:0;Margin:0;border-bottom:0px solid #cccccc;background:none;height:1px;width:100%;margin:0px\"></td> </tr> </table></td> </tr> <tr> <td align=\"center\" style=\"padding:0;Margin:0\"><!--[if mso]><a href=\"https://links1.cloudflare.com/s/c/EiNdnSxbNk2XXL098A65yGNfofScuGEznA965fdV-8n-BOn27NJ56me0aPHjWNtUWwcuz63W1AvY9VM2NQZNogaGggNWp1W63fUJcBviDFmNryrkxxrq_I9EY72El_SByDRIR9hz_rKD-QGKGRSbwZG1qzJ8L1vaG28YWlgeEm6bO6ymZ829vGA9GT99kvisCjDRSgC_eFqP8xtVrWwLSaxvELh2bAgEme38qDyldMBD4BhPUOOwngCDgnHh7HqWmtuL3brXML3oMdIUtF9l4bRmCduG4nmkXoTNpH279n3dI5arNN7pEYo2kCjfKf-AlFSyfsJSF9S8arQcoAQXEKwYsm-o6BF2OkgHPY4fHLr9SMn77faDItDNzod42DAout886dssays3T7dAGo_HWC986KlCTiAIVSVhHqIhy2Gw5YF-miQeLfpUt7J6IeE0U2Y/4yw76E-Q7_8lDtuZRKN-UT7n1kUwEOgz/8\" target=\"_blank\" hidden> <v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" esdevVmlButton href=\"https://links1.cloudflare.com/s/c/pIKZWRoaOH_OuoBn_-S9tT9BWRXfaBnZki5OTjHc6BWiGasvhhFAMgOvrJ0jYf4bZAW9cRD2P_lmYEne6V6gJp5gu6xoMae0O7K0K4x7m5u9mwnIkof3Jgpg2jKLVNs8ZbOsISv-mjH9JbFXmQiY-zKl8xD-zEJJmUy797Wwje-dp2mv7urWV2yjBoKUMP6743BcHL2-UiWkB8X9at8bieyn7822LQqaJb62w2cmPBFPtSnfL_1Z9g_MEQmmF4hH4EkVuse4ChE0mlZxCZeAezBGvUi7lm-H7y3S2p6_z0kRLAmFOnomKV5pVxyu8vNL3IfSwSL9_Ipqdx_OtLq6LvGTygUBdN_0J8DFpTgdsMgh8cR8r84zZ69qV8H_ncZv2-AHgj14yDONxW1wzy8LE5vH6Fyp835pxQaTMg4ZexT1j4apm1Xo9oU8h2UNkh8O6N4/U6AsTRTcOwIQYAKaYK_wn4NnD9cIpLDn/8\" style=\"height:49px; v-text-anchor:middle; width:143px\" arcsize=\"12%\" strokecolor=\"#ff6633\" strokeweight=\"1px\" fillcolor=\"#ffffff\"> <w:anchorlock></w:anchorlock> <center style=\'color:#ff6633; font-family:-apple-system, \"system-ui\", \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"; font-size:16px; font-weight:400; line-height:16px; mso-text-raise:1px\'>Enable</center> </v:roundrect></a><![endif]--><!--[if !mso]><!-- --><span class=\"msohide es-button-border\" style=\"border-style:solid;border-color:#ff6633;background:#ffffff;border-width:2px;display:block;border-radius:6px;width:auto;mso-hide:all\"><a href=\"https://links1.cloudflare.com/s/c/e6yiFEykN5X-k-haZ2U4ggLOmEHy1aN9pXRvkhPGum2thohrJtOVgJ1eEnCz926HKnGcLfad-LVq-5_OJH2ntoKVQHtctRIZu-OBjRluVoZGTeAwNvNonKQeiq02anf7YyR9frc0qohbNOkfwsZCxMR8IaRS9pHbhN35f8JtrR4Rj7dS0uLPIE5f2a-gM6MlVFQHcnWYGXTxJ5Bov46AvQtDylhyJ9YjBM3TTPY4ktmBKkpb2siruVKSi1e_QvlDR15tlKTrdzasE9ehE5RHoLj3wO5rE-P9kXlFPmvzDhzEZANqLfjwkVcIvFeFnf9IsXZV2hKFMG2H9aBTcFEkC62bSWbIyQNNjih4AqTKCPYrhJbL2PG4DQ2om8LnQbA1BasmgU9mdQEDRX3OwVy1APZy3n50qclsfytSIPkbVbtuaD7yaAQXPYuFRqdGscPbugs/YJqjkxQMf_pi9IubqM96D2j1z2LA17BC/8\" class=\"es-button msohide\" target=\"_blank\" style=\"-webkit-text-size-adjust: none; -ms-text-size-adjust: none; mso-line-height-rule: exactly; color: #ff6633; font-size: 16px; display: block; background: #FFFFFF; border-radius: 6px; font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\'; font-weight: normal; font-style: normal; line-height: 19px; width: auto; text-align: center; padding: 15px; mso-padding-alt: 0; mso-border-alt: 10px solid #FFFFFF; mso-hide: all; padding-left: 15px; padding-right: 15px; text-decoration: none!important; mso-style-priority: 100 !important;\">Enable</a></span> <!--<![endif]--></td> </tr> </table></td> </tr> </table><!--[if mso]></td></tr></table><![endif]--></td> </tr> <tr> <td align=\"left\" bgcolor=\"#ffffff\" style=\"padding:20px;Margin:0;background-color:#ffffff\"><!--[if mso]><table style=\"width:560px\" cellpadding=\"0\" cellspacing=\"0\"><tr> <td style=\"width:394px\" valign=\"top\"><![endif]--> <table cellpadding=\"0\" cellspacing=\"0\" class=\"es-left\" align=\"left\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;float:left\"> <tr> <td class=\"es-m-p0r es-m-p20b\" valign=\"top\" align=\"center\" style=\"padding:0;Margin:0;width:394px\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"left\" style=\"padding:0;Margin:0;padding-bottom:5px\"><h3 style=\"Margin:0;line-height:22px;mso-line-height-rule:exactly;font-family:-apple-system, blinkmacsystemfont, \'segoe ui\', roboto, helvetica, arial, sans-serif, \'apple color emoji\', \'segoe ui emoji\', \'segoe ui symbol\';font-size:18px;font-style:normal;font-weight:bold;color:#222222\">Run a Speed Test</h3></td> </tr> <tr> <td align=\"left\" style=\"padding:0;Margin:0\"><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, blinkmacsystemfont, \'segoe ui\', roboto, helvetica, arial, sans-serif, \'apple color emoji\', \'segoe ui emoji\', \'segoe ui symbol\';line-height:24px;color:#3d3d3d;font-size:16px\">See important stats on how quickly your website is loading and how much faster it is on Cloudflare’s network.</p></td> </tr> </table></td> </tr> </table><!--[if mso]></td><td style=\"width:20px\"></td> <td style=\"width:146px\" valign=\"top\"><![endif]--> <table cellpadding=\"0\" cellspacing=\"0\" align=\"right\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"left\" style=\"padding:0;Margin:0;width:146px\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"center\" style=\"padding:10px;Margin:0;font-size:0\"> <table border=\"0\" width=\"100%\" height=\"100%\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td style=\"padding:0;Margin:0;border-bottom:0px solid #cccccc;background:none;height:1px;width:100%;margin:0px\"></td> </tr> </table></td> </tr> <tr> <td align=\"center\" style=\"padding:0;Margin:0\"><!--[if mso]><a href=\"https://links1.cloudflare.com/s/c/48HJfqfbhaWMJ2BgTbj5F_atTFk_dIu-QIaWOMwAI8gryFqbeNaX4FOE3DVDfnx0f3upvDgihS4LHT6FKXlsyYez7q-rTHiq7Na20cp0G7y-JCI2gaNi6Z6MkAz0Q6uOwZcFWe6d_2BtixJhxVeLu6NG-RdCNEYLnUB1ADZJGYzvrrbz2OGE14zEyyLJVds5UdWeaK3Qlig7HN1uRUgmvI5GVvr5W_yJVFS96--VPcN6qJzAqYJY2ToD7jYO8wxDRdGPANt2fk3xVyJ1Ib18kQLt4MkArD3Cj8spLvLhG0TX4XI4FkLi1sbRf-0hid5Anqm2QT7BXcrY3yejMvVplCmOmPIjJ6PrfMsmmBTUprxbb-hz8bDs_ic8lXmX4ULufFjxeOaX82P-v_hmUSEmqLx3OZJ4a3Ffb3uey0kfl9OYEg/5J2at5TSRcXtdTSrmzFUekMpnFRxA8cb/8\" target=\"_blank\" hidden> <v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" esdevVmlButton href=\"https://links1.cloudflare.com/s/c/2YzsI5quf3Re9B-HDqSIbxLiaCZ_gKt3iWE5DCf8I2iwkiSSAK7DHpx6AXBAXPzAa-c85a-su2ItBQmhOt5tPjrkzZbxfEpEfzTIde2zsWci1-EWeUagH7CObfBWipLRLCyL7INFEXaxCkPUvzoZGjTheqzZQZU9jZNXf7oKQKgmANlF14jHsew83VRqUqNO4s3pKNkzUVTK-e20C-i9JWqnAM6Mr2eYkPyzRapPoCeLs_ZcI1aQ_vbz4busAHZXNjM76CpZsRwNlJ4p3J5RYuzVh_vpCrwR3SFKAPO-5SqHkDtStTxWTGzQY3B3AINmF56XD37mt-7uirCCwCnkX7r79CrJNsOx-VD5bhGAPY1Arp8hV4y8WHBHy2SxwX7xZ7kz83x41reTOAZQH1i_CwQ-wOIGXOnYbJZed4ZD2ym7Iw/NHqdcOKlv99RlVt8k6s8brgmtUFSuMxK/8\" style=\"height:49px; v-text-anchor:middle; width:143px\" arcsize=\"12%\" strokecolor=\"#ff6633\" strokeweight=\"1px\" fillcolor=\"#ffffff\"> <w:anchorlock></w:anchorlock> <center style=\'color:#ff6633; font-family:-apple-system, \"system-ui\", \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"; font-size:16px; font-weight:400; line-height:16px; mso-text-raise:1px\'>Run test</center> </v:roundrect></a><![endif]--><!--[if !mso]><!-- --><span class=\"msohide es-button-border\" style=\"border-style:solid;border-color:#ff6633;background:#ffffff;border-width:2px;display:block;border-radius:6px;width:auto;mso-hide:all\"><a href=\"https://links1.cloudflare.com/s/c/C0hmKcEAzyrx2szQXX7CsHYdxcrdgDUmNpLCCCMWSgUugM5pr4YZh-OYAW7kZc8yh9LHVclwtkvWrK-ixDJKW8Aulh4J3-Rzvzu63OAT4U8NVYgh9qxnkMeWAkgZTETLDIFXCYYebo76G9KvH1sK68XSDsv_mMkiVJ09eXWNQ2Z_sltEKS_60odYINS9CgaSASsgdzCtyiN1n4reWpOkL8YV6Hprrcdj9cuZ206tPvujVIDqRSJlq0tD7IYBsyFGzt1eFnajbBVk_bH3V3TSgu0jUHx9jjk9A3M3OH6d8a-tFCQ3gT7VXa8CnBVnJVtQeCpuL8xodMQJR1ssh7F8Sy-03YimQeZ3G_OqIzxBpQPj_Mf11EF30FnBvdLy5eBOhn5Sf90U99OUnxBo0D1xh03fsA3S5XTWoxkaXnlbfFe9hA/b19ooLj-sFgmJuxQIcGvRSmU93vQAbsD/8\" class=\"es-button msohide\" target=\"_blank\" style=\"-webkit-text-size-adjust: none; -ms-text-size-adjust: none; mso-line-height-rule: exactly; color: #ff6633; font-size: 16px; display: block; background: #FFFFFF; border-radius: 6px; font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\'; font-weight: normal; font-style: normal; line-height: 19px; width: auto; text-align: center; padding: 15px; mso-padding-alt: 0; mso-border-alt: 10px solid #FFFFFF; mso-hide: all; padding-left: 15px; padding-right: 15px; text-decoration: none!important; mso-style-priority: 100 !important;\">Run test</a></span> <!--<![endif]--></td> </tr> </table></td> </tr> </table><!--[if mso]></td></tr></table><![endif]--></td> </tr> </table></td> </tr> </table> <table class=\"es-content\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;table-layout:fixed !important;width:100%\"> <tr> <td align=\"center\" bgcolor=\"#dfdfdf\" style=\"padding:0;Margin:0;background-color:#dfdfdf\"> <table class=\"es-content-body\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#ffffff\" align=\"center\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;background-color:#FFFFFF;width:600px\"> <tr> <td align=\"left\" bgcolor=\"#ffffff\" style=\"padding:0;Margin:0;padding-top:20px;padding-left:20px;padding-right:20px;background-color:#ffffff\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"center\" valign=\"top\" style=\"padding:0;Margin:0;width:560px\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"left\" style=\"padding:0;Margin:0\"><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:36px;color:#333333;font-size:24px\"><strong>Improve Security</strong></p> </td> </tr> <tr> <td align=\"center\" style=\"padding:0;Margin:0;padding-top:5px;font-size:0\"> <table border=\"0\" width=\"100%\" height=\"100%\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td style=\"padding:0;Margin:0;border-bottom:2px solid #ff6633;background:none;height:1px;width:100%;margin:0px\"></td> </tr> </table></td> </tr> </table></td> </tr> </table></td> </tr> <tr> <td align=\"left\" bgcolor=\"#ffffff\" style=\"padding:20px;Margin:0;background-color:#ffffff\"><!--[if mso]><table style=\"width:560px\" cellpadding=\"0\" cellspacing=\"0\"><tr> <td style=\"width:394px\" valign=\"top\"><![endif]--> <table cellpadding=\"0\" cellspacing=\"0\" class=\"es-left\" align=\"left\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;float:left\"> <tr> <td class=\"es-m-p0r es-m-p20b\" valign=\"top\" align=\"center\" style=\"padding:0;Margin:0;width:394px\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"left\" style=\"padding:0;Margin:0;padding-bottom:5px\"><h3 style=\"Margin:0;line-height:22px;mso-line-height-rule:exactly;font-family:-apple-system, blinkmacsystemfont, \'segoe ui\', roboto, helvetica, arial, sans-serif, \'apple color emoji\', \'segoe ui emoji\', \'segoe ui symbol\';font-size:18px;font-style:normal;font-weight:bold;color:#222222\">Bot Fight Mode</h3></td> </tr> <tr> <td align=\"left\" style=\"padding:0;Margin:0\"><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, blinkmacsystemfont, \'segoe ui\', roboto, helvetica, arial, sans-serif, \'apple color emoji\', \'segoe ui emoji\', \'segoe ui symbol\';line-height:24px;color:#3d3d3d;font-size:16px\">Simple but powerful reporting and controls for managing bot traffic.</p></td> </tr> </table></td> </tr> </table><!--[if mso]></td><td style=\"width:20px\"></td> <td style=\"width:146px\" valign=\"top\"><![endif]--> <table cellpadding=\"0\" cellspacing=\"0\" align=\"right\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"left\" style=\"padding:0;Margin:0;width:146px\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"center\" style=\"padding:10px;Margin:0;font-size:0\"> <table border=\"0\" width=\"100%\" height=\"100%\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td style=\"padding:0;Margin:0;border-bottom:0px solid #cccccc;background:none;height:1px;width:100%;margin:0px\"></td> </tr> </table></td> </tr> <tr> <td align=\"center\" style=\"padding:0;Margin:0\"><!--[if mso]><a href=\"https://links1.cloudflare.com/s/c/6jk0wQFIR38Jf-bfFZPzg6XPjN1EbmInOjfwz1nsZQSv9QByjnQN8CmSqrEaUFoo1tGqkY9ny2SxLpS3hRsZt-7-B3XQ41f7cAmN6-bMfTLK-qfS2tM6EZUTO2V7qPYAtcTyZRxBdS97mwZTXXXdG1FXqjptaLGH6cAGHncnrDyDkFazu9gG83dgy9xh_EJLyX2xM8dsigfvrr2r7ZbPWZi4y2zT2XR01bCOoF_t8xUsLJlNBClmziG1NMLF1Y22fm5l12bm3U7_FA2cMV_Trau5UXw6StfUo77SrxaoFJrcGTk8739nXB-P2_V6pqAU5JmM6Y-2s7ztLbNtNPji-j6szJVIV5mYef5jc4qW0pHtEGQA-dzi3TdAIDDz9wn31TIJL_nFaEf9JSusfKTBs0dOiI7zz0T3gLPxP1aw0Tc36LbcYw/N7a4juVJVYaWH3SNmBTSc28IkvTK9psh/8\" target=\"_blank\" hidden> <v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" esdevVmlButton href=\"https://links1.cloudflare.com/s/c/-Ylj4PIEbiHkDz6HUtpeEUvA_tmI-urkzyWMWFTcfV85HRaAk_S3oQfNOZ9oHu4Ar8u4f_Xyb_lhR5aq0d_y2LDx1QtL1pd1L5OtDEp5nrWB1zR612KR-20YQCtnc9o0mmSUFlZumqjM7IoDbOEND9r3zKg6AJml1MoqRwBJo8CtjLJTZ3gTYZrkMDGc1_jeMQp5-Fb390P-zKemJelseuAWRRIk4pPZE4bHIyDZPl5RSCz2brrZ5XT0MHosMt_BFvLueOvQf9TXmhTBEdyVSWCF9j5ktVu4ZwKX4wiOpzm90k8Hm5gAzOlv4YpdKvAgyQaAgCqR6vjEDd60l4WVrPAYybItyJcs7hxb5_DZgqf-1KUVqz7t7iK6R0noTFPD2QjM1kRAOBgJq7SPPs4iqkHJao2P0J4Pzdh4GRDkWV1rLxyM4Q/8hBSpgYA1HgNZ-Isma53JNIZHhAFCQEQ/8\" style=\"height:49px; v-text-anchor:middle; width:143px\" arcsize=\"12%\" strokecolor=\"#ff6633\" strokeweight=\"1px\" fillcolor=\"#ffffff\"> <w:anchorlock></w:anchorlock> <center style=\'color:#ff6633; font-family:-apple-system, \"system-ui\", \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"; font-size:16px; font-weight:400; line-height:16px; mso-text-raise:1px\'>Enable</center> </v:roundrect></a><![endif]--><!--[if !mso]><!-- --><span class=\"msohide es-button-border\" style=\"border-style:solid;border-color:#ff6633;background:#ffffff;border-width:2px;display:block;border-radius:6px;width:auto;mso-hide:all\"><a href=\"https://links1.cloudflare.com/s/c/q266HgIqAk_dVDLy9IWzpeXiaOmVS_rOF8pxC-JaW83SvkR5481gIbwyu5VZVrvBvgWP_le9waBLSCGmN9k0Pty7sz-zgvNCAp-xF33orKe8gmyXvmM5nJnuykghkaRDilbA7RNvOALzhO_EHcQAVkAVBeJONS2-X_zKIyY7lI9_u1Id-4Rg1sKDM2BMUbQ6KRT85ibdfgpkFe_H6lWv9gTBnm-hpWGx9_AZ0BzY6vl1X9XvoRrGVYxKJN7DBzqzNRfzsTfc6ZN553q5cYYTYVJgQASsyoYj4l2uwleg15n3sYZWZSJnqYS55g6mG5pOKhrcEwu9qJcJ6_xgM2JzPCe7MpZ4MFRe4VsTr1LD6wDziLad9q6qbinoCpyVE69a_wTu8JROk7d1g7wtoLmBhyhp5SxsvGfY2Dn_wOb_MLPvb6IusA/qZBjUS8Eg18sS8eBfUXCd1lkuKaHFbE0/8\" class=\"es-button msohide\" target=\"_blank\" style=\"-webkit-text-size-adjust: none; -ms-text-size-adjust: none; mso-line-height-rule: exactly; color: #ff6633; font-size: 16px; display: block; background: #FFFFFF; border-radius: 6px; font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\'; font-weight: normal; font-style: normal; line-height: 19px; width: auto; text-align: center; padding: 15px; mso-padding-alt: 0; mso-border-alt: 10px solid #FFFFFF; mso-hide: all; padding-left: 15px; padding-right: 15px; text-decoration: none!important; mso-style-priority: 100 !important;\">Enable</a></span> <!--<![endif]--></td> </tr> </table></td> </tr> </table><!--[if mso]></td></tr></table><![endif]--></td> </tr> <tr> <td align=\"left\" bgcolor=\"#ffffff\" style=\"Margin:0;padding-top:20px;padding-left:20px;padding-right:20px;padding-bottom:30px;background-color:#ffffff\"><!--[if mso]><table style=\"width:560px\" cellpadding=\"0\" cellspacing=\"0\"><tr> <td style=\"width:394px\" valign=\"top\"><![endif]--> <table cellpadding=\"0\" cellspacing=\"0\" class=\"es-left\" align=\"left\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;float:left\"> <tr> <td class=\"es-m-p0r es-m-p20b\" valign=\"top\" align=\"center\" style=\"padding:0;Margin:0;width:394px\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"left\" style=\"padding:0;Margin:0;padding-bottom:5px\"><h3 style=\"Margin:0;line-height:22px;mso-line-height-rule:exactly;font-family:-apple-system, blinkmacsystemfont, \'segoe ui\', roboto, helvetica, arial, sans-serif, \'apple color emoji\', \'segoe ui emoji\', \'segoe ui symbol\';font-size:18px;font-style:normal;font-weight:bold;color:#222222\">Automatic HTTPS Rewrites</h3></td> </tr> <tr> <td align=\"left\" style=\"padding:0;Margin:0\"><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, blinkmacsystemfont, \'segoe ui\', roboto, helvetica, arial, sans-serif, \'apple color emoji\', \'segoe ui emoji\', \'segoe ui symbol\';line-height:24px;color:#3d3d3d;font-size:16px\">Redirect all requests with scheme “http” to “https”. This applies to all http requests to the zone.</p></td> </tr> </table></td> </tr> </table><!--[if mso]></td><td style=\"width:20px\"></td> <td style=\"width:146px\" valign=\"top\"><![endif]--> <table cellpadding=\"0\" cellspacing=\"0\" align=\"right\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"left\" style=\"padding:0;Margin:0;width:146px\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"center\" style=\"padding:5px;Margin:0;font-size:0\"> <table border=\"0\" width=\"100%\" height=\"100%\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td style=\"padding:0;Margin:0;border-bottom:0px solid #cccccc;background:none;height:1px;width:100%;margin:0px\"></td> </tr> </table></td> </tr> <tr> <td align=\"center\" style=\"padding:0;Margin:0\"><!--[if mso]><a href=\"https://links1.cloudflare.com/s/c/KZG4yQYVbWCfIHM6-9JnjLFXr8PNoxJeXRaw-RBH9O0GPhR2B2kvNdap0JNFJy1X0ECQQNKh86Ovw2GXUZ0gnIrDye1Y-xKwF1s2Cv_ED5jghAO0t4Ppi2V38cklkKemCADkUMVAbRh2zcs9kxhmIAUiL54Ms5HiWp_etDA-p551qs1GuclQJdweD8vr7gGxckYKbbZVp9QdEvaRagYKNEj2Gg5V-QI8bCEBDFxjnaX4Gaqkd4YrzYfrl_4wW5Kux18ZNuVOLQbh6f4Mn9RyeD9qOoFBQ3hlD7IIZTBw07OshlEfd9NkfqUeiu-XtS_Q9UFrFZnbTX5cib55KrBvPGmX-dvDMw02GIBKqFh5D5F2TLmgGj5zsxdzUWdvDguFRTZHeyTB_iLljqT7GbYfll7uZa-0ODdDQSC876Mt9dPHmhIKy4JzOT3Jsr7tkfL5Rze7brs1u1I7YrHUSjmHw1t5kWks8QLEi2g8rXH-pNpVFkNkS1rkmLWDp73c7PvEp4w/-nOX-rQt9k8Iv9XvQ42wBOWN6Kt3AUPy/8\" target=\"_blank\" hidden> <v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" esdevVmlButton href=\"https://links1.cloudflare.com/s/c/EWTJFYR_IoyAyxwPxM9wY_v53wwTX61UjbjAaHZF60NxtqMShBYHOE33dFgcE6azl7dvbtv1FhnoK_E7shvpROPnNNtCsRBm7O721Wwp8fm1s1XDnaCLoo4FowVZruHDsOw7-Q4HiqhRSD4UqThL849y-peD1g0Sw3F-v6Ijrzyfy0xf-mjGQLln0B7s-wmQG26iirpikFA-h6-efTPhz-VxfGQVeFLwQ7qYhAq-EV36CHe42DgVumC7fHbc45wQi5fpL5SrbXh1a1gzPNW2HAKkzwYFDKQxozC7Rce2ZTLMdi7IZwvE6nxschxJiy29WVG54398lpPyNOEdLu7BvcsNFMRVqp9Mkj2GMQla_EbPxZWyvEgIncPWgu1Ku7XOmSxep_Kc7QS-4prz7Og5xIUj23qGsHNhN2vTXtUo58LPx-cJmLb1EjSZAb4f1R1IHvxLe0jui5w7TP-FR7anAv8iZe1Ti3AABQTG2aahveiva_BK3yBL_MVZDfPQVAn-s0Q/iEYhCRByL_I0VdpW5SLsZC0szfDZ1-Oo/8\" style=\"height:49px; v-text-anchor:middle; width:143px\" arcsize=\"12%\" strokecolor=\"#ff6633\" strokeweight=\"1px\" fillcolor=\"#ffffff\"> <w:anchorlock></w:anchorlock> <center style=\'color:#ff6633; font-family:-apple-system, \"system-ui\", \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"; font-size:16px; font-weight:400; line-height:16px; mso-text-raise:1px\'>Enable</center> </v:roundrect></a><![endif]--><!--[if !mso]><!-- --><span class=\"msohide es-button-border\" style=\"border-style:solid;border-color:#ff6633;background:#ffffff;border-width:2px;display:block;border-radius:6px;width:auto;mso-hide:all\"><a href=\"https://links1.cloudflare.com/s/c/ysTClcVOGFyJkpDyhrvaWeBYjA2otUhmdia-5jocGAuumWbBrJSu2q0S3s3sqte5LFtv3-7vw0Ayb1nLYq-enHJ3tRy32NAveeGT4rlFsOLAfsLFfzmJ2ZkEwsInM75Z3-act_i0sY3n1mRBC2VycwxrtpCZgBcXqXWbZFljBAHI3e9YnZROq5rX-uduKlpP7WWWrdYpWFtlashnOKKXxFI4ChfOSOFyOdfZBPZHRN1HzLbbusPQ7lTcc8pyYVT2WfSZpNcNzE3k4W6CEG7Iuj3XrY0z_gdomt1m3eL-aFy8sJ-IHVcaAdFRaBjihaZ67zXrBQc_6JDcXjY7b2nzItd4z0RO99Ti1z5HnE7WnIxzl18WBhB_iEAMTiVEJ1FbGWXXwhWpkyv40VaBpKeJi7C9yLvPPi-Zrmcjkhpg76Pu9nRcTqVXHLANMMIYAomEoUhdGOgcHfeGuDC6NlTZ5m-_TpM2-SDj_xTaIXYwRWICqAGJM5x7PCi4wzSxrPWkp7Q/9N9mWELjsCLz75iHEdG6PiL2mW7R_-f8/8\" class=\"es-button msohide\" target=\"_blank\" style=\"-webkit-text-size-adjust: none; -ms-text-size-adjust: none; mso-line-height-rule: exactly; color: #ff6633; font-size: 16px; display: block; background: #FFFFFF; border-radius: 6px; font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\'; font-weight: normal; font-style: normal; line-height: 19px; width: auto; text-align: center; padding: 15px; mso-padding-alt: 0; mso-border-alt: 10px solid #FFFFFF; mso-hide: all; padding-left: 15px; padding-right: 15px; text-decoration: none!important; mso-style-priority: 100 !important;\">Enable</a> </span><!--<![endif]--></td> </tr> </table></td> </tr> </table><!--[if mso]></td></tr></table><![endif]--></td> </tr> </table></td> </tr> </table> <table class=\"es-content\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;table-layout:fixed !important;width:100%\"> <tr> <td align=\"center\" bgcolor=\"#dfdfdf\" style=\"padding:0;Margin:0;background-color:#dfdfdf\"> <table class=\"es-content-body\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#ffffff\" align=\"center\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;background-color:#FFFFFF;width:600px\"> <tr> <td align=\"left\" bgcolor=\"#ff6633\" style=\"padding:20px;Margin:0;background-color:#ff6633\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"center\" valign=\"top\" style=\"padding:0;Margin:0;width:560px\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"center\" style=\"padding:0;Margin:0\"><h2 style=\"Margin:0;line-height:29px;mso-line-height-rule:exactly;font-family:arial, \'helvetica neue\', helvetica, sans-serif;font-size:24px;font-style:normal;font-weight:bold;color:#ffffff\">Recommendations for mavrix.one</h2> </td> </tr> </table></td> </tr> </table></td> </tr> <tr> <td align=\"left\" bgcolor=\"#ffffff\" style=\"Margin:0;padding-top:20px;padding-left:20px;padding-right:20px;padding-bottom:40px;background-color:#ffffff\"><!--[if mso]><table style=\"width:560px\" cellpadding=\"0\" cellspacing=\"0\"><tr> <td style=\"width:145px\" valign=\"top\"><![endif]--> <table cellpadding=\"0\" cellspacing=\"0\" class=\"es-left\" align=\"left\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;float:left\"> <tr> <td class=\"es-m-p0r es-m-p20b\" align=\"center\" style=\"padding:0;Margin:0;width:125px\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"left\" style=\"padding:0;Margin:0\"><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\"><strong>Pro Plan</strong></p> <p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\">For users primarily focused on improving website and application performance.</p><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\"><br></p> <p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\"><br></p><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\">$25 / month</p><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\"><br></p> <p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\"><br></p><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\"><strong><a target=\"_blank\" href=\"https://links1.cloudflare.com/s/c/t3wD8EXt_HpaQJs2pK8c5ahSKekUIRtEW2OEvwac1LPYu3TCto-RUBJHIedYVPk2wrjBG0VaBGZTR5fQk4RTCY7wSZdRqNVH5B-xnogsyRXZHKDZ1PcikBvJK54MybL_ib1SFCa3FXA_s-yoEW-98WUdtYo6Gaio4M3_4-qSEZmjGrmcLCOvBsmzM0Y8DP9_fhrUkVhCa6HQUnDVdBsCStuUYrNCx_wDqOlq1DcVz3i-kTxT5-f241QNacmLid3AOxwBjpAHxdtKU5yQ_0vE-Rj_eYxvgbbT2fKI7F-4UGEdkpoIdyblmMGKIvWv53FH_f0RdXjDPjqQiTo9OF4_ih75DBnlpoaHRlZiNFxg6hOR4xmJroB0ZPOUQ7tiOjaMhTfrczVhKP9V5GGP-W6AHBr3b9MZb61piWm87BcDI1EFTYh_ECfg_H1o/RN-3lejZAuaAmH05H_bTNfaEkhmeltG3/8\" style=\"-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;text-decoration:underline;color:#ff6633;font-size:14px\">Go Pro &gt;</a></strong></p></td> </tr> </table></td> <td class=\"es-hidden\" style=\"padding:0;Margin:0;width:20px\"></td> </tr> </table><!--[if mso]></td> <td style=\"width:145px\" valign=\"top\"><![endif]--> <table cellpadding=\"0\" cellspacing=\"0\" class=\"es-left\" align=\"left\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;float:left\"> <tr> <td class=\"es-m-p20b\" align=\"center\" style=\"padding:0;Margin:0;width:125px\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"left\" style=\"padding:0;Margin:0\"><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\"><strong>Argo</strong></p> <p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\">Experience faster website load times and reduced latency, all while simplifying management.</p><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\"><br></p> <p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\">$5 / month + usage</p><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\"><br></p> <p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\"><strong><a target=\"_blank\" href=\"https://links1.cloudflare.com/s/c/fPqXxDbibcwWZVNgWUMTWSzVI2mCNUJvMtKoEhin0erk_eFtNwD5NGJD2WWk5IekwS1A4YhQNbB9GL0OTRLXl2U2T6obXOvWAL63dQ3PDctf61h50Kjg0UE4bWjC-ckT-Ke_0wUNeEZQbFj8AfC8EvoNm7guEzgfuH_A_TsFpafYHo_SCwvpXPCpi_vKlUF8JE0QnpWeLPIjkRpIG2prTOBrl_a7_JX0cVPAtJQ67_o8eYDzaL5Qnga_RAGd6zZFrKvG9DN56zPCaQKnUhuta1snOYA8f2xSJv1WBrq9stPNjIQ7RsuPG4-iC_j-G6ru5lAzASkhF-cmeqPPnBHKQeGDwXDnspwJiNcU5FM8FcBOuezJPzv62_Z42KNP_RdiSM1KqA3sB8JZmvfJKdQB0S4wBAHX7AQEs7D2N1Vlew/wmC9PUEi35ThGeR0QtoQT15GtF5XKh1Y/8\" style=\"-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;text-decoration:underline;color:#ff6633;font-size:14px\">Get Argo &gt;</a></strong></p></td> </tr> </table></td> <td class=\"es-hidden\" style=\"padding:0;Margin:0;width:20px\"></td> </tr> </table><!--[if mso]></td> <td style=\"width:125px\" valign=\"top\"><![endif]--> <table cellpadding=\"0\" cellspacing=\"0\" class=\"es-left\" align=\"left\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;float:left\"> <tr> <td class=\"es-m-p20b\" align=\"center\" style=\"padding:0;Margin:0;width:125px\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"left\" style=\"padding:0;Margin:0\"><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\"><strong>APO</strong></p> <p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\">Take your WordPress site’s performance to the next level with APO.</p><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\"><br></p> <p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\"><br></p><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\">$5 / month</p><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\"><br></p> <p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\"><br></p><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\"><strong><a target=\"_blank\" href=\"https://links1.cloudflare.com/s/c/_ZmG6LLclxlIWYMPuu_8RwfCi5Ydf1ZOxtdfOLujQ1Y8EkEmeRJT_C65OulA57Zgvtus7sIdPqKmtCmhGEI5Gs0aF088W11n7F7ZcGYMsBZKxp2l04JBtrh9nTAY3gK2fYTjNEAdqaT0oQAFkqwyW5iL6PMB8PDypCcxgJLUHK-PzdOhtOmX2fPE2fIsyHY5Vv1d3vCeg0zLxiPolUceVg5kIYZLkgg-Eizlssanc6Fofs9o6QttcgS5OlsrR5wPBlEPj1XcxBkdZr2WXqmncqg44wYR4U3Q_hgLvgrcYmDn7dzL_gVo6hLne3edzHXhGusDJOpVKYoYbk8ht11izHtzy3s8BQelb-5A51ly_XrwZVkG0leKN8LQ0Uz8lWSdYozdHamOQUrMSXY2H6OpadqKYZBKLHGA4wOVI5D91YMH-RPnxW08zNELJDTj6DS4M1fS6PdxitHleeVLVE7uR_qzAHZ5tXt3YtRdfAs9B4ZuIg/PBnoehUCMUVNt0bNAs1BbVA11kGzZRf3/8\" style=\"-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;text-decoration:underline;color:#ff6633;font-size:14px\">Get APO &gt;</a></strong></p></td> </tr> </table></td> </tr> </table><!--[if mso]></td><td style=\"width:20px\"></td><td style=\"width:125px\" valign=\"top\"><![endif]--> <table cellpadding=\"0\" cellspacing=\"0\" class=\"es-right\" align=\"right\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;float:right\"> <tr> <td align=\"center\" style=\"padding:0;Margin:0;width:125px\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"left\" style=\"padding:0;Margin:0\"><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\"><strong>Images</strong></p> <p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\">Upload, store, and resize images with ease at low costs. For websites and applications with many images.</p><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\"><br></p> <p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\">Usage based pricing</p><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\"><br></p> <p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:21px;color:#333333;font-size:14px\"><strong><a target=\"_blank\" href=\"https://links1.cloudflare.com/s/c/lGMGW3sDlIUg6BQ2oC3i0z0zDen8jy9MxRsR4jtf0XQVogJNmGmfW0RLM8vmehiQ0V1cLvwQ7dIFwHA6LS1W8RG3waccwOaY0h4qJ2Js3IB743wvM1FGwSiLMEJRrEpMZE1hg_2kR4cTUshQkQbJCPnAmddAgFkReW56oiLnSczofCyqalmFFpwy5GA9YLReGAZx5-hxcBw2oXVNgHGiM0DT1x5CxIhEUfm0GrqWxjmZLMZ203GRXS_TJuIzgs2QL9sibuTVQCQ2_0ODOXfNnoXqd6b3UNQqPYS_xCySYTzhotXUJuanmowdyMBVEgPnVD1SI_maFzZhu-ZhMqeixpYtaTyKvG-S2ALL032fR1AtO01YvVo9f9Xbg_SkCh5cmwMmDtcDN93FESbYwdu9xcVZLA/oNY49U8-UvcAPSX5hsbi0Q4GgAd8OCHx/8\" style=\"-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;text-decoration:underline;color:#ff6633;font-size:14px\">Upload Images &gt;</a></strong></p></td> </tr> </table></td> </tr> </table><!--[if mso]></td></tr></table><![endif]--></td> </tr> </table></td> </tr> </table> <table cellpadding=\"0\" cellspacing=\"0\" class=\"es-footer\" align=\"center\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;table-layout:fixed !important;width:100%;background-color:transparent;background-repeat:repeat;background-position:center top\"> <tr> <td align=\"center\" bgcolor=\"#DFDFDF\" style=\"padding:0;Margin:0;background-color:#dfdfdf\"> <table class=\"es-footer-body\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#fafafa\" align=\"center\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px;background-color:#fafafa;width:600px\" role=\"none\"> <tr> <td align=\"left\" bgcolor=\"#DFDFDF\" style=\"Margin:0;padding-top:20px;padding-bottom:20px;padding-left:20px;padding-right:20px;background-color:#dfdfdf\"> <table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" role=\"none\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td align=\"left\" style=\"padding:0;Margin:0;width:560px\"> <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td style=\"padding:0;Margin:0\"> <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"es-menu\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr class=\"links\"> <td align=\"center\" valign=\"top\" width=\"33.33%\" id=\"esd-menu-id-0\" style=\"Margin:0;padding-left:5px;padding-right:5px;padding-top:20px;padding-bottom:20px;border:0\"><a target=\"_blank\" href=\"https://links1.cloudflare.com/s/c/JxJ1d29h-j-yhOgo-KP3v0ZdU5mdQQdxzOKl72b8-EYwzG4ygXLAiy7uyTOdDUEbqIKh3-9FgCTH5959xzMFHWp9Neo-H1mS1glQ9sIMNXdpsN6tVQtKQ5tfNDM5rR4-60P0uYOmO_or-VoWvPpjRJRQPBCo494wMo9LMMXFE9W2bfMPzz8NvL461ZIjROGaUEwBQVTy4pfAcSfaeaJXb4saaTkkhM7zpXFL_1GBt8XhIFwsFuBfi-184efLKNDPlKUJIkZyxCWYERXZY4xM8fRh3uBETZSrKg79UrqQJ-ZLJsTClUh6nNmAiKf3QC1joNCw-HXBwxllUPfD_50ff0KRcyzofwNXLJAFKt3_TVjvNmDtMMqOIAjYLItBNllgeg22kbfYUPbdxd16hROgUts8uJ9Q8QMzxr70rJDCCWBKp-ZoNw/jVWbEQ6lqrVBeDxhxzQ7jipT6CH0Rmf-/8\" style=\"-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;text-decoration:none;display:block;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';color:#313131;font-size:16px;font-weight:bold\">Upgrade Plan</a> </td> <td align=\"center\" valign=\"top\" width=\"33.33%\" id=\"esd-menu-id-1\" style=\"Margin:0;padding-left:5px;padding-right:5px;padding-top:20px;padding-bottom:20px;border:0\"><a target=\"_blank\" href=\"https://links1.cloudflare.com/s/c/IFXVT5OQmZ9NQk8Mu2fQZPwCGcUPFuyKplIbdoEnq9k8_xAVqmjraqAmqogEWWRmqpwEVCL-rqEXb-8Gs_v00ar7muz-Vv7W5AlE73el6rgSvtAtS_93O8ZAiyMkdtrroul8ObaO0RYieIPJjj5eg8BDyJPki7dpm3h8ppNRE56k4yyrFzNE2TcsY41ReoMuAdUjBaywXgpJyT0ge8piYg5DLGPo4SAANbdahkHiAZre5j59nfZHw6uymuVVPuoe_jJKh0CjcklqLOPETUqfQoV-ODS3iZrPCtzMSZH_3LMKWOhV4p2YtjNNtwr5Mm3sWW5GGzM3qv7R6DCG66NuF8vxuwU-Kg7BPY-GMsK5F4XXA3cu0BOtSMNXjCA1kwvbF1zJpQ/4G-fv5g_ciZvWPBg_HIOId-y2tl9byj6/8\" style=\"-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;text-decoration:none;display:block;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';color:#313131;font-size:16px;font-weight:bold\">Login</a></td> <td align=\"center\" valign=\"top\" width=\"33.33%\" id=\"esd-menu-id-2\" style=\"Margin:0;padding-left:5px;padding-right:5px;padding-top:20px;padding-bottom:20px;border:0\"><a target=\"_blank\" href=\"https://links1.cloudflare.com/s/c/F-icP7Vmy1fEAMO8pGchjg4PnoYd2D9kmgzTBFPflOhdvh1ppVcpnXWcsd-MIuJDnL_Mo8T5IbaC1s-kJJ__4zDCRDrwo_5YQerEPzdyEfGH2acd3NFk_htU6FHJaEn6WJBet9lOIr8HWkBWe2MrXI6Xnn5rCf9wx-TXnGqeQqh6BFqXFVffVCP-aflnEpUBjVo9kJlTC6njVJBZOWJ7HeyL6BgVOxzRxOMTM5VvRupJGaMfJbqL4T5fDs4HOI2HAnywzra3-LtxdVd2zapXSAVO_ADnDzJSiPVyht0GkiBG29hNtwwgFvdUXQO6rBv4w9CpQzm89qgT128RATfwjNygTksrhJLRD2XC0pRfjQ_KAZ3FTD1EaVAeWESrOtNJOC_O/1sklUdt__FYaNrd-jzESOE8ls5ypKWlW/8\" style=\"-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;text-decoration:none;display:block;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';color:#313131;font-size:16px;font-weight:bold\">Visit Community</a></td> </tr> </table></td> </tr> <tr> <td align=\"center\" style=\"padding:0;Margin:0;padding-bottom:10px;padding-top:20px\"><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:28px;color:#797979;font-size:14px\">Copyright © 2025 Cloudflare, Inc.<br>101 Townsend Street, San Francisco, CA 94107</p><p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:28px;color:#797979;font-size:14px\"><br></p> <p style=\"Margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\';line-height:28px;color:#797979;font-size:14px\"><a target=\"_blank\" style=\"-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;text-decoration:underline;color:#797979;font-size:14px\" href=\"https://links1.cloudflare.com/s/c/Awg97N0ndUWGMchhKtycyqSf_cBXOw31-nrCgB2Fz-kFE-YqehQtdlM4xM1_agVrOAzelfOBa-c2GaB4SU8hCMthbpyIzwNt3NdgM_4FJaXRASVa3WysE4Ua1SbDWor9oTu76mXuogX_tpBfbfBjHZGqX8LCHYUWqpkYJq36A-ReMQBP4nmuyVuhBR3ST71A5dWOZ1jGRKqVUBH4Uq5vc8P1YP3XwacmtAT73dkWEn6j09F-IIxB7Adlsw0bPiQypfpx6E0ywgzDRKzax34tZMQgFsY-_PEf6tFAihTvdK9ulKEHELx_WcdamQrXaqmKtUHpwFDZwaYGaltqGzENDaXJAtkEUraI758iGJOZRjEgE8XL55uyYq4Z2v-jXA/XMqrLQQGjTpyvvZDLkb30VClzVosSLoF/8\">cloudflare.com</a> | <a target=\"_blank\" style=\"-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;text-decoration:underline;color:#797979;font-size:14px\" href=\"https://links1.cloudflare.com/s/c/g-idZ9T-IFcPcFtelDs0wP_MPwS-retD8giTyxf8Ll7VPPGuostJLTGw66obLWYDXtYy5d2PNUjg7SoMAL9ezrkYg_z8BRo4e_PyOV7OTEkefpema_Tl8uXl0F6ObjhTs44XqIiWLvn_ZvbUNnKQbmALZ_mx4L16cPlD69ijCDXB5nL84smfjyG_gj1NFo8QvkY4rfc72blleHcsdLOb35i--GuqNPfiBMR7kmuQUaVMadbVC-nE0i4CZXZW7t3Mla4JhpPZHwx_pXW5Cmti_3LngmSRMFMvHziaQBHVmx-M60v2n7WiaVV1akvC3qu4hqmabAUzcCID9yVvRNzman3NEfP3e53KkOpthDWjeWNyOxsz6zi4DjUwnf-2rJGLB4Cb3l0ecNnbAC5H/lBW8pFB6UQAcN-sG4ZU7QPotMFEtTljp/8\">Privacy Policy</a> | <a target=\"_blank\" style=\"-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;text-decoration:underline;color:#797979;font-size:14px\" href=\"https://links1.cloudflare.com/s/eh/RUvq7S8z9eM_XVWmyuKToX7Cw0ZR1rfl2nXhF34EojZuGI5sH91hfGi1f81cZFiq-6z13a0loedkyR552Rn_0AEPqISjANI1x69YErozrxk7tfv_OiXAPzr-WxqZmbpMNEwCc_0kLNOPXN6UMgnvB42vY5XeBsX6CMLBfJivHtv6XZ5FO7urHw1RxE8g-OJiX6HtK40UFDmotguF5_-0PnDEQonRZnzCkPHcyAyTmvaSRBMV9EJy16zZAu6dgVyZE8FOWCftRRYm_WWO7_r9kYWSBbQ5bRznrZr7zS-PfUStjjmPUpve_T9CrNJ-IPyaWw1sK6NfVlUe-_DLJil3Gsy_MnvTYr1d1Oq7Zqj9Jbyt/3LICmM4388hUHZMSMr6A1n3ul9h3_DNi/8\">Unsubscribe</a></p> </td> </tr> <tr> <td align=\"center\" style=\"padding:0;Margin:0;padding-top:10px;padding-bottom:10px;font-size:0px\"> <table class=\"es-table-not-adapt es-social\" cellspacing=\"0\" cellpadding=\"0\" role=\"presentation\" style=\"mso-table-lspace:0pt;mso-table-rspace:0pt;border-collapse:collapse;border-spacing:0px\"> <tr> <td valign=\"top\" align=\"center\" style=\"padding:0;Margin:0;padding-right:10px\"><a target=\"_blank\" href=\"https://links1.cloudflare.com/s/c/FIdkSl3rZnhg6RYuHJIKn2lqAbsbcSFOFTfuyKNF35oo-aMdQVQ9n08hl23XVwHQdHEgsh-LZsJsTzFNds6vSMSaBCr7eH8akfi_8fN21Cp22cnhY4mClSpd73EL5pWHuPCtQapBG5yMxHgsiUgZF1VSc4VFiJNN0hmjJcqqk7TW3Lm42tv_wr9NY3cQNrnVvMAOqk8pubOvGTBWq9NmRBngDm3G0ucmWyDtnNP5J_dXWr7vMlSxBVxIbnixxezBCW-LyxlNUC_4FaWXw8OP1ypKja2-daBrybjHpRusZbWfCSbu9tjo78gp93f14uIpG0CQIi9AgasDhMqSvOJkinLPqtog1qpeFftRxUlgwdpPMcoePtmxN_NA1vYdvz1ILVTkNrnH/dTMVJZgZqUYkXMSVnS4pLSMwi3x_jiMm/8\" style=\"-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;text-decoration:underline;color:#FFFFFF;font-size:14px\"><img title=\"Facebook\" src=\"https://rtbpvv.stripocdn.email/content/assets/img/social-icons/logo-black/facebook-logo-black.png\" alt=\"Fb\" width=\"32\" style=\"display:block;border:0;outline:none;text-decoration:none;-ms-interpolation-mode:bicubic\"></a></td> <td valign=\"top\" align=\"center\" style=\"padding:0;Margin:0;padding-right:10px\"><a target=\"_blank\" href=\"https://links1.cloudflare.com/s/c/yv_ThRRkckfX8TAmgkr66rlf-amoenenSeJRck-EJTusGcGfff2-L_OQQMRM7MIZdYHstszTbTfQo8txLdLOK2BLk_LN3x93apuG8np3NSVHaCZqk4qpBrVn6W3rlFoPBV8AeO0mTe9hunA7HbW2OFd3JHu-7nYfUyDQXkPtB5ALdghgYH3kYnd-GMo2BOKJahqKzRnEI0xWwmqTdfvt9T5mowJm6m2OhY4wn_xC34NEixLQyiYqnuGxcHyVe8D8V6ZLiVfBSTTvlievSMf7MI82qNr8Zo9irQ0Map6cA-NWz7rtjSDhjM1SLPkGCWvkSHuCDedMrs0KBrnujZsCoThtCEmF7A1xV73JdK7QflKeT2FZ2-CaLI8xGFiwbOS0fAAakcuWkA/-5gX7U0A7pHU6cdSuFiw2hhpUzaLx1Qt/8\" style=\"-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;text-decoration:underline;color:#FFFFFF;font-size:14px\"><img title=\"Instagram\" src=\"https://rtbpvv.stripocdn.email/content/assets/img/social-icons/logo-black/instagram-logo-black.png\" alt=\"Inst\" width=\"32\" style=\"display:block;border:0;outline:none;text-decoration:none;-ms-interpolation-mode:bicubic\"></a></td> <td valign=\"top\" align=\"center\" style=\"padding:0;Margin:0;padding-right:10px\"><a target=\"_blank\" href=\"https://links1.cloudflare.com/s/c/cQ_jrVS7QJUo7SrqQk15kIhkp-ktE30H80vuS0cpLzGBAr7lFJaktITzXgiXwrwoqEkBiAr5xi4QWWAyKRvEEMRW0lSBngpL3wZkVlTKkquNCT_e7nVjV8pyCwmcqFCob6qqUXa1mGSfFhrNYvr55Wo2F_zKQIw1fPeHu1b4JkGuKV8heTfTcgVbvIsGlKL-jH67LdRZHFtJUOqDBf3zTuHywTubnlSX3YBlITO9lzMZIDSkE5JtwxM_VkdAq33sG_QYlbaVaLNj9IWlUvhYu2AxQjaKcMEdzPr2x2oDf_Ek7JYewx4fAdI_U-dWPLZgwswkfT6yIkIh6pGMf3UwqooSv9cR5v6f2LDH-c3QjPCbAt7qmvBC0RoGXWk6j4Z-_hqng98TChQzuQI7V7M/Dou4FrUhU3I-U6tzAKLL1Kfs3Ex-dxwC/8\" style=\"-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;text-decoration:underline;color:#FFFFFF;font-size:14px\"><img title=\"Linkedin\" src=\"https://rtbpvv.stripocdn.email/content/assets/img/social-icons/logo-black/linkedin-logo-black.png\" alt=\"In\" width=\"32\" style=\"display:block;border:0;outline:none;text-decoration:none;-ms-interpolation-mode:bicubic\"></a></td> <td valign=\"top\" align=\"center\" style=\"padding:0;Margin:0\"><a target=\"_blank\" href=\"https://links1.cloudflare.com/s/c/IeQgqIP5WXYtzWTcuMX1XR-ntW-zOXiFMXhOTMR2QcOoOwv3mNH9TLu8rRoZy_1AHppwtmKJlivkyU3HTobHlkIuJNvg_EhaeWO26iDF72PZBLNoPZPp2jhmF9kAZJVINndB_JvHOC6K4EPi4IaPMVWS2VlI7RlPliEULq-ydBxG3gykh0q6vkkYUdLxGFqxHkdx60tQOeMxBtoTZlaf2CQ3gT64KVuNrbDmS2AAvvRCQa3LEks4jaHxMQBMorMVNTuFmzX5UxoByl7pAYBbmtTDtjNl4bqMjrTgFeqnWjvG1a7HAqqWu4ySoHcTfMdS-gEuut-XCs5zFrKi9bexmb20Ll0gIgRbT37Bi_L_cEIN7w4awJNV33x2FEIzVD5wh8knmcuQKIw3AmWGT1BoqRny5Z5ZBXgm6FbKlO10MFX43_S6ECPuPTx9GSrnlaIRoqKYPic7pVU/lrdUa3q-Spr7xnqFs0o0y4BDKBvJC_Wp/8\" style=\"-webkit-text-size-adjust:none;-ms-text-size-adjust:none;mso-line-height-rule:exactly;text-decoration:underline;color:#FFFFFF;font-size:14px\"><img title=\"X\" src=\"https://rtbpvv.stripocdn.email/content/assets/img/social-icons/logo-black/x-logo-black.png\" alt=\"X\" width=\"32\" style=\"display:block;border:0;outline:none;text-decoration:none;-ms-interpolation-mode:bicubic\"></a></td> </tr> </table></td> </tr> </table></td> </tr> </table></td> </tr> </table></td> </tr> </table></td> </tr> </table> </div> \r\n<img border=\"0\" width=\"1\" height=\"1\" alt=\"\" src=\"http://tracksp.cloudflare.com/q/-WZsTPvEIMBIztRnOhSwpw~~/AARGbBA~/iwELNS104yki8CQHSoLXEAPVw-l8StuSxY4m3AU2XwtG52ehM8sppljuzLbVcIFC\">\r\n</body> </html>','Free Plan purchased for mavrix.one Start by enabling a few features designed to protect and optimize the performance of your website. Welcome to your free plan for mavrix.one! Get familiar with our documentation, tools, and features available now. Manage Website Onboarding 101 Getting Started with Cloudflare (Free Plan) Learn how you can get the most out of your Free plan. Learn more Transfer Domain to Cloudflare Cloudflare sells domains at cost allowing us to have the lowest price available. You pay what we pay. Transfer Domain Optimize Performance Brotli Speed up page load times for your visitor’s HTTPS traffic by applying Brotli compression. Enable Run a Speed Test See important stats on how quickly your website is loading and how much faster it is on Cloudflare’s network. Run test Improve Security Bot Fight Mode Simple but powerful reporting and controls for managing bot traffic. Enable Automatic HTTPS Rewrites Redirect all requests with scheme “http” to “https”. This applies to all http requests to the zone. Enable Recommendations for mavrix.one Pro Plan For users primarily focused on improving website and application performance. $25 / month Go Pro > Argo Experience faster website load times and reduced latency, all while simplifying management. $5 / month + usage Get Argo > APO Take your WordPress site’s performance to the next level with APO. $5 / month Get APO > Images Upload, store, and resize images with ease at low costs. For websites and applications with many images. Usage based pricing Upload Images > Upgrade Plan Login Visit Community Copyright © 2025 Cloudflare, Inc. 101 Townsend Street, San Francisco, CA 94107 cloudflare.com | Privacy Policy | Unsubscribe',0,0,0,0,0,0,'2025-05-03 17:55:51','2025-12-09 19:02:08','2025-12-09 19:02:08','2025-12-09 19:02:08',NULL,NULL,NULL),
(208,4,'<D2.F1.13326.60909186@i-0d03cca353c2e4b50.mta1vrest.sd.prd.sparkpost>',NULL,NULL,'[Action required] Update nameservers for mavrix.one','noreply@notify.cloudflare.com','\"Cloudflare\"','<!DOCTYPE html>\n<html\n        xmlns=\"“http://www.w3.org/1999/xhtml”\"\n        xmlns:v=\"“urn:schemas-microsoft-com:vml”\"\n        xmlns:o=\"“urn:schemas-microsoft-com:office:office”\"\n>\n<head>\n  <meta charset=\"utf-8\" />\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" />\n  <!--[if gte mso 9\n    ]><xml>\n      <o:OfficeDocumentSettings>\n        <o:AllowPNG />\n        <o:PixelsPerInch>96</o:PixelsPerInch>\n      </o:OfficeDocumentSettings>\n    </xml><!\n  [endif]-->\n  <!--Variables-->\n  <title></title>\n  <link\n          href=\"https://fonts.googleapis.com/css?family=Inter:300,300i,400,400i,600,600i,700,700i,800,800i\"\n          rel=\"stylesheet\"\n  />\n  <style>\n    /* CLIENT-SPECIFIC STYLES */\n    img {\n      -ms-interpolation-mode: bicubic;\n    }\n    /* Force IE to smoothly render resized images. */\n    #outlook a {\n      padding: 0;\n    }\n    /* Force Outlook 2007 and up to provide a \"view in browser\" message. */\n    table {\n      mso-table-lspace: 0pt;\n      mso-table-rspace: 0pt;\n    }\n    /* Remove spacing between tables in Outlook 2007 and up. */\n    .ReadMsgBody {\n      width: 100%;\n    }\n    .ExternalClass {\n      width: 100%;\n    }\n    /* Force Outlook.com to display emails at full width. */\n    p,\n    a,\n    li,\n    td,\n    blockquote {\n      mso-line-height-rule: exactly;\n    }\n    /* Force Outlook to render line heights as they\'re originally set. */\n    a[href^=\"tel\"],\n    a[href^=\"sms\"] {\n      color: inherit;\n      cursor: default;\n      text-decoration: none;\n    }\n    /* Force mobile devices to inherit declared link styles. */\n    p,\n    a,\n    li,\n    td,\n    body,\n    table,\n    blockquote {\n      -ms-text-size-adjust: 100%;\n      -webkit-text-size-adjust: 100%;f\n    }\n    /* Prevent Windows- and Webkit-based mobile platforms from changing declared text sizes. */\n    .ExternalClass,\n    .ExternalClass p,\n    .ExternalClass td,\n    .ExternalClass div,\n    .ExternalClass span,\n    .ExternalClass font {\n      line-height: 100%;\n    }\n    /* Force Outlook.com to display line heights normally. */\n    table {\n      border-collapse: collapse;\n    }\n\n    html {\n      -webkit-text-size-adjust: none;\n    }\n\n    #gmailModule,\n    .mobileOnly {\n      display: none !important;\n    }\n    /*Hide Full-Width Image on Desktop*/\n\n    a,\n    a:hover {\n      color: #ff6633 !important;\n      text-decoration: none !important;\n    }\n\n    .button a,\n    .button a:hover {\n      color: #000000 !important;\n      text-decoration: none !important;\n    }\n\n    .footer a,\n    .footer a:hover {\n      color: #8f8f8f !important;\n      text-decoration: none !important;\n    }\n\n    a[x-apple-data-detectors] {\n      color: inherit !important;\n      text-decoration: none !important;\n      font-size: inherit !important;\n      font-family: inherit !important;\n      font-weight: inherit !important;\n      line-height: inherit !important;\n    }\n\n    @media only screen and (max-width: 650px) {\n      #bodyTable {\n        width: 100% !important;\n      }\n      #logo-image {\n        max-width: 40% !important;\n      }\n\n      #headline {\n        font-size: 20px;\n        line-height: 24px;\n      }\n\n      img {\n        width: auto !important;\n        max-width: 100% !important;\n        height: auto !important;\n      }\n      .tableStack {\n        width: 100% !important;\n      }\n      table.buttonStack {\n        margin-top: 10px !important;\n      }\n      td.buttonStack {\n        padding-top: 16px !important;\n      }\n\n      td.mobImg {\n        width: 28% !important;\n        padding-right: 15px !important;\n      }\n      td.mobText {\n        width: 68% !important;\n      }\n\n      #fullTextContent {\n        font-size: 13px;\n        line-height: 17px;\n      }\n\n      #fullTextContent strong {\n        font-size: 14px;\n        line-height: 18px;\n      }\n\n      table.mobileImageWidth {\n        width: 28% !important;\n      }\n      table.mobileTextWidth {\n        width: 68% !important;\n      }\n\n      .stack-img {\n        padding-top: 10px !important;\n        padding-right: 0% !important;\n        padding-bottom: 10px !important;\n        padding-left: 0% !important;\n        width: 90% !important;\n      }\n\n      .stack {\n        padding-top: 4px !important;\n        padding-right: 5% !important;\n        padding-bottom: 22px !important;\n        padding-left: 5% !important;\n        width: 90% !important;\n      }\n\n      .stack2 {\n        padding-top: 10px !important;\n        padding-right: 0px !important;\n        padding-bottom: 10px !important;\n        padding-left: 5% !important;\n        width: 90% !important;\n      }\n\n      td.mobileTopPad {\n        padding-top: 20px !important;\n      }\n      table.mobileTopPad {\n        margin-top: 20px !important;\n      }\n\n      .desktopPad,\n      #gmailModule {\n        display: none !important;\n      }\n      .left img {\n        margin-left: 0 !important;\n      }\n      .center img {\n        margin-left: auto !important;\n        margin-right: auto !important;\n      }\n      .center table {\n        margin-right: auto;\n        margin-left: auto;\n      }\n      .left {\n        text-align: left !important;\n      }\n      .center {\n        text-align: center !important;\n      }\n      .noPad {\n        padding-top: 0px !important;\n        padding-right: 0px !important;\n        padding-bottom: 0px !important;\n        padding-left: 0px !important;\n      }\n      .noSidePad {\n        padding-right: 0px !important;\n        padding-left: 0px !important;\n      }\n      .noBorder {\n        border: 0px !important;\n      }\n      hr {\n        margin-right: auto !important;\n        margin-left: auto !important;\n      }\n      .mobileOnly {\n        display: block !important;\n      }\n      .mobquote {\n        font-size: 20px !important;\n        line-height: 26px !important;\n        margin: 0px 15px !important;\n      }\n      .padding5p {\n        padding-right: 5% !important;\n      }\n      .mobwidth100 {\n        max-width: 100px !important;\n      }\n    }\n  </style>\n  <!--[if gte mso 9]>\n  <style type=\"text/css\">\n    td,\n    p,\n    ul,\n    ol,\n    li {\n      font-family: Arial, sans-serif !important;\n    }\n    ul,\n    ol {\n      margin: 0px 0px 0px 26px !important;\n      padding: 0px !important;\n      list-style-position: inside !important;\n    }\n    table.outlookPadColumn {\n      width: 34% !important;\n      padding-right: 2% !important;\n    }\n    td.outlookFloat {\n      margin-left: 40px;\n      padding-right: 0px !important;\n    }\n  </style>\n  <![endif]-->\n</head>\n<body\n        bgcolor=\"#f6f6f6\"\n        style=\"\n      background: #f6f6f6;\n      margin: 0;\n      padding: 0;\n      mso-padding-alt: 0px 0px 0px 0px;\n    \"\n>\n<div style=\"display:none;\">mavrix.one is still not benefiting from Cloudflare\'s network.</div>\n\n<table\n        role=\"presentation\"\n        width=\"100%\"\n        border=\"0\"\n        cellspacing=\"0\"\n        cellpadding=\"0\"\n        style=\"background: #f6f6f6; mso-padding-alt: 0px 0px 0px 0px\"\n>\n  <tbody>\n  <tr>\n    <td>\n      <!--Body Table-->\n      <table\n              role=\"presentation\"\n              id=\"bodyTable\"\n              width=\"650\"\n              border=\"0\"\n              cellspacing=\"0\"\n              cellpadding=\"0\"\n              align=\"center\"\n              style=\"margin-left: auto; margin-right: auto\"\n      >\n        <!--Preheader Container-->\n        <tbody>\n        <tr class=\"desktopPad\">\n          <td\n                  class=\"footer\"\n                  style=\"\n                      white-space: normal;\n                      color: #8f8f8f;\n                      font-family: Inter, Helvetica, Arial, sans-serif;\n                      font-size: 11px;\n                      text-align: right;\n                      padding-top: 7px;\n                      padding-bottom: 7px;\n                      text-align: center;\n                    \"\n          >\n            <div class=\"mktoText\" id=\"preheaderText\"></div>\n          </td>\n        </tr>\n        <!--/Preheader Container-->\n        <tr>\n          <td>\n            <table\n                    role=\"presentation\"\n                    id=\"container\"\n                    class=\"mktoContainer\"\n                    width=\"100%\"\n                    border=\"0\"\n                    cellpadding=\"0\"\n                    cellspacing=\"0\"\n                    style=\"border-collapse: collapse\"\n            >\n              <tr class=\"mktoModule\" id=\"header\">\n                <td>\n                  <table\n                          role=\"presentation\"\n                          width=\"100%\"\n                          border=\"0\"\n                          cellpadding=\"0\"\n                          cellspacing=\"0\"\n                          style=\"min-width: 100%\"\n                  >\n                    <!--[if gte mso 9]>\n                    <tr>\n                      <td>\n                        <table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n                    <![endif]-->\n                    <tbody>\n                    <tr\n                            style=\"\n                                  white-space: nowrap;\n                                  background-color: #ffffff;\n                                \"\n                    >\n                      <td\n                              class=\"stack\"\n                              style=\"\n                                    border-top: 10px solid #f38020;\n                                    white-space: normal;\n                                    padding-top: 25px;\n                                    padding-left: 40px;\n                                    padding-bottom: 25px;\n                                    padding-right: 40px;\n                                    background-color: #ffffff;\n                                  \"\n                      >\n                        <!--Left-->\n                        <table\n                                class=\"tableStack\"\n                                role=\"presentation\"\n                                width=\"48%\"\n                                border=\"0\"\n                                cellpadding=\"0\"\n                                cellspacing=\"0\"\n                                align=\"left\"\n                        >\n                          <tbody>\n                          <tr>\n                            <td class=\"stack-img\">\n                              <div class=\"mktoSnippet\" id=\"logo\">\n                                <table\n                                        role=\"presentation\"\n                                        width=\"100%\"\n                                        cellpadding=\"0\"\n                                        cellspacing=\"0\"\n                                        border=\"0\"\n                                >\n                                  <tbody>\n                                  <tr>\n                                    <td class=\"left\">\n                                      <a\n                                              href=\"https://www.cloudflare.com/\"\n                                              target=\"_blank\"\n                                      ><img\n                                              id=\"logo-image\"\n                                              src=\"https://info.cloudflare.com/rs/713-XSC-918/images/CF_logo_horizontal_blktype_1955x285.png?version=0\"\n                                              alt=\"Cloudflare logo\"\n                                              height=\"37\"\n                                              width=\"260\"\n                                              constrain=\"true\"\n                                              imagepreview=\"false\"\n                                      /></a>\n                                    </td>\n                                  </tr>\n                                  </tbody>\n                                </table>\n                              </div>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                        <!--/Left-->\n                        <!--Right-->\n                        <table\n                                class=\"tableStack\"\n                                role=\"presentation\"\n                                width=\"48%\"\n                                border=\"0\"\n                                cellpadding=\"0\"\n                                cellspacing=\"0\"\n                                align=\"right\"\n                        >\n                          <tbody>\n                          <tr>\n                            <td\n                                    class=\"center\"\n                                    style=\"\n                                            text-align: right;\n                                            color: #000000;\n                                            font-family: Inter, Helvetica, Arial,\n                                              sans-serif;\n                                            font-size: 14px;\n                                            line-height: 21px;\n                                          \"\n                            >\n                              <div\n                                      class=\"mktoText\"\n                                      id=\"headerHeadline\"\n                              ></div>\n                            </td>\n                          </tr>\n                          </tbody>\n                        </table>\n                        <!--/Right-->\n                      </td>\n                    </tr>\n                    <!--[if gte mso 9]>\n                    </table>\n                    </td>\n                    </tr>\n                    <![endif]-->\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              <tr class=\"mktoModule desktopPad\" id=\"spacerModule\">\n                <td>\n                  <table\n                          role=\"presentation\"\n                          border=\"0\"\n                          cellpadding=\"0\"\n                          cellspacing=\"0\"\n                          style=\"min-width: 100%\"\n                  >\n                    <!--[if gte mso 9]>\n                    <tr>\n                      <td>\n                        <table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n                    <![endif]-->\n                    <tbody>\n                    <tr\n                            style=\"\n                                  white-space: nowrap;\n                                  background-color: #ffffff;\n                                \"\n                    >\n                      <td\n                              class=\"desktopPad\"\n                              height=\"25\"\n                              style=\"\n                                    background-color: #ffffff;\n                                    line-height: 25px;\n                                    font-size: 25px;\n                                  \"\n                      >\n                        &nbsp;\n                      </td>\n                    </tr>\n                    <!--[if gte mso 9]>\n                    </table>\n                    </td>\n                    </tr>\n                    <![endif]-->\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n\n              <!-- HEADLINE -->\n\n              <tr class=\"mktoModule\" id=\"headline\">\n                <td>\n                  <!--Title Text-->\n                  <table\n                          role=\"presentation\"\n                          width=\"100%\"\n                          border=\"0\"\n                          cellpadding=\"0\"\n                          cellspacing=\"0\"\n                          style=\"min-width: 100%\"\n                  >\n                    <!--[if gte mso 9]>\n                    <tr>\n                      <td>\n                        <table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n                    <![endif]-->\n                    <tbody>\n                    <tr\n                            style=\"\n                                  white-space: nowrap;\n                                  background-color: #ffffff;\n                                \"\n                    >\n                      <td\n                              class=\"stack\"\n                              style=\"\n                                    font-weight: 600;\n                                    color: #000000;\n                                    text-align: left;\n                                    white-space: normal;\n                                    font-family: Inter, Helvetica, Arial,\n                                      sans-serif;\n                                    font-size: 26px;\n                                    line-height: 32px;\n                                    padding-left: 40px;\n                                    padding-right: 40px;\n                                    background-color: #ffffff;\n                                  \"\n                      >\n                        <div class=\"mktoText\" id=\"headline\">\n                          mavrix.one is not benefiting from\n                          Cloudflare\'s network. To boost speed and\n                          security, update its\n                          nameservers.                           <br />\n                        </div>\n                      </td>\n                    </tr>\n                    <!--[if gte mso 9]>\n                    </table>\n                    </td>\n                    </tr>\n                    <![endif]-->\n                    </tbody>\n                  </table>\n                  <!--/Title Text-->\n                </td>\n              </tr>\n              <!-- END HEADLINE -->\n\n              <!-- SPACING -->\n              <tr class=\"mktoModule desktopPad\" id=\"spacerModule\">\n                <td>\n                  <table\n                          role=\"presentation\"\n                          border=\"0\"\n                          cellpadding=\"0\"\n                          cellspacing=\"0\"\n                          style=\"min-width: 100%\"\n                  >\n                    <!--[if gte mso 9]>\n                    <tr>\n                      <td>\n                        <table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n                    <![endif]-->\n                    <tbody>\n                    <tr\n                            style=\"\n                                  white-space: nowrap;\n                                  background-color: #ffffff;\n                                \"\n                    >\n                      <td\n                              class=\"desktopPad\"\n                              height=\"25\"\n                              style=\"\n                                    background-color: #ffffff;\n                                    line-height: 25px;\n                                    font-size: 25px;\n                                  \"\n                      >\n                        &nbsp;\n                      </td>\n                    </tr>\n                    <!--[if gte mso 9]>\n                    </table>\n                    </td>\n                    </tr>\n                    <![endif]-->\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              <!-- END SPACING -->\n\n              <!-- SUBHEADLINE -->\n              <tr class=\"mktoModule\" id=\"fullText\">\n                <td>\n                  <!--Full Text-->\n                  <table\n                          role=\"presentation\"\n                          width=\"100%\"\n                          border=\"0\"\n                          cellpadding=\"0\"\n                          cellspacing=\"0\"\n                          style=\"min-width: 100%\"\n                  >\n                    <!--[if gte mso 9]>\n                    <tr>\n                      <td>\n                        <table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n                    <![endif]-->\n                    <tbody>\n                    <tr\n                            style=\"\n                                  white-space: nowrap;\n                                  background-color: #ffffff;\n                                \"\n                    >\n                      <td\n                              class=\"stack\"\n                              style=\"\n                                    color: #000000;\n                                    text-align: left;\n                                    white-space: normal;\n                                    font-family: Inter, Helvetica, Arial,\n                                      sans-serif;\n                                    font-size: 14px;\n                                    line-height: 24px;\n                                    padding-left: 40px;\n                                    padding-right: 40px;\n                                    background-color: #ffffff;\n                                    font-weight: normal;\n                                  \"\n                      >\n                        <div class=\"mktoText\" id=\"fullTextContent\">\n                                    <span style=\"font-size: 18px\"\n                                    ><strong\n                                    >Why am I getting this email?\n                                      </strong></span\n                                    >\n                          <br />\n                          mavrix.one was added to your Cloudflare\n                          account. However, this domain is still not\n                          using Cloudflare\'s nameservers.\n                                                  </div>\n                      </td>\n                    </tr>\n                    <!--[if gte mso 9]>\n                    </table>\n                    </td>\n                    </tr>\n                    <![endif]-->\n                    </tbody>\n                  </table>\n                  <!--/Full Text-->\n                </td>\n              </tr>\n              <!-- END OF SUBHEADLINE -->\n\n              <!-- SPACING -->\n              <tr class=\"mktoModule desktopPad\" id=\"spacerModule\">\n                <td>\n                  <table\n                          role=\"presentation\"\n                          border=\"0\"\n                          cellpadding=\"0\"\n                          cellspacing=\"0\"\n                          style=\"min-width: 100%\"\n                  >\n                    <!--[if gte mso 9]>\n                    <tr>\n                      <td>\n                        <table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n                    <![endif]-->\n                    <tbody>\n                    <tr\n                            style=\"\n                                  white-space: nowrap;\n                                  background-color: #ffffff;\n                                \"\n                    >\n                      <td\n                              class=\"desktopPad\"\n                              height=\"25\"\n                              style=\"\n                                    background-color: #ffffff;\n                                    line-height: 25px;\n                                    font-size: 25px;\n                                  \"\n                      >\n                        &nbsp;\n                      </td>\n                    </tr>\n                    <!--[if gte mso 9]>\n                    </table>\n                    </td>\n                    </tr>\n                    <![endif]-->\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              <!-- END SPACING -->\n\n              <!-- SUBHEADLINE -->\n              <tr class=\"mktoModule\" id=\"fullText\">\n                <td>\n                  <!--Full Text-->\n                  <table\n                          role=\"presentation\"\n                          width=\"100%\"\n                          border=\"0\"\n                          cellpadding=\"0\"\n                          cellspacing=\"0\"\n                          style=\"min-width: 100%\"\n                  >\n                    <!--[if gte mso 9]>\n                    <tr>\n                      <td>\n                        <table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n                    <![endif]-->\n                    <tbody>\n                    <tr\n                            style=\"\n                                  white-space: nowrap;\n                                  background-color: #ffffff;\n                                \"\n                    >\n                      <td\n                              class=\"stack\"\n                              style=\"\n                                    color: #000000;\n                                    text-align: left;\n                                    white-space: normal;\n                                    font-family: Inter, Helvetica, Arial,\n                                      sans-serif;\n                                    font-size: 14px;\n                                    line-height: 24px;\n                                    padding-left: 40px;\n                                    padding-right: 40px;\n                                    background-color: #ffffff;\n                                    font-weight: normal;\n                                  \"\n                      >\n                        <div class=\"mktoText\" id=\"fullTextContent\">\n                                    <span style=\"font-size: 18px\">\n                                      <strong>\n                                        How\n                                        to update nameservers for this domain\n                                                                              </strong></span\n                                    >\n                          <br />\n\n                           1. Log into your domain\n                          registrar (<a\n                                href=\"https://developers.cloudflare.com/dns/nameservers/update-nameservers/?utm_medium=email&utm_source=transactional&utm_campaign=ca-update-ns\"\n                        >See instructions</a\n                        >)<br /><br />\n                          2. Replace your current nameserver records\n                          with only these two:<br />\n                          boyd.ns.cloudflare.com<br />\n                          paris.ns.cloudflare.com<br /><br />\n\n                          3. Once that’s done, log in to\n                          <a\n                                  href=\"https://dash.cloudflare.com?to=/:account/mavrix.one\"\n                          >your Cloudflare account</a\n                          >\n                          and check mavrix.one’s status.                         </div>\n                      </td>\n                    </tr>\n                    <!--[if gte mso 9]>\n                    </table>\n                    </td>\n                    </tr>\n                    <![endif]-->\n                    </tbody>\n                  </table>\n                  <!--/Full Text-->\n                </td>\n              </tr>\n              <!-- END OF SUBHEADLINE -->\n\n              <!-- SPACING -->\n              <tr class=\"mktoModule desktopPad\" id=\"spacerModule\">\n                <td>\n                  <table\n                          role=\"presentation\"\n                          border=\"0\"\n                          cellpadding=\"0\"\n                          cellspacing=\"0\"\n                          style=\"min-width: 100%\"\n                  >\n                    <!--[if gte mso 9]>\n                    <tr>\n                      <td>\n                        <table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n                    <![endif]-->\n                    <tbody>\n                    <tr\n                            style=\"\n                                  white-space: nowrap;\n                                  background-color: #ffffff;\n                                \"\n                    >\n                      <td\n                              class=\"desktopPad\"\n                              height=\"25\"\n                              style=\"\n                                    background-color: #ffffff;\n                                    line-height: 25px;\n                                    font-size: 25px;\n                                  \"\n                      >\n                        &nbsp;\n                      </td>\n                    </tr>\n                    <!--[if gte mso 9]>\n                    </table>\n                    </td>\n                    </tr>\n                    <![endif]-->\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              <!-- END SPACING -->\n\n              <!-- SUBHEADLINE -->\n              <tr class=\"mktoModule\" id=\"fullText\">\n                <td>\n                  <!--Full Text-->\n                  <table\n                          role=\"presentation\"\n                          width=\"100%\"\n                          border=\"0\"\n                          cellpadding=\"0\"\n                          cellspacing=\"0\"\n                          style=\"min-width: 100%\"\n                  >\n                    <!--[if gte mso 9]>\n                    <tr>\n                      <td>\n                        <table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n                    <![endif]-->\n                    <tbody>\n                    <tr\n                            style=\"\n                                  white-space: nowrap;\n                                  background-color: #ffffff;\n                                \"\n                    >\n                      <td\n                              class=\"stack\"\n                              style=\"\n                                    color: #000000;\n                                    text-align: left;\n                                    white-space: normal;\n                                    font-family: Inter, Helvetica, Arial,\n                                      sans-serif;\n                                    font-size: 14px;\n                                    line-height: 24px;\n                                    padding-left: 40px;\n                                    padding-right: 40px;\n                                    background-color: #ffffff;\n                                    font-weight: normal;\n                                  \"\n                      >\n                        <div class=\"mktoText\" id=\"fullTextContent\">\n                                    <span style=\"font-size: 18px\"\n                                    ><strong\n                                    >Additional resources</strong\n                                    ></span\n                                    >\n                          <br />\n                          <ul>\n                            <li>\n                              <a\n                                      href=\"https://developers.cloudflare.com/dns/zone-setups/full-setup/setup/#update-your-nameservers\"\n                              >Change your nameservers</a\n                              >\n                            </li>\n                            <li>\n                              <a\n                                      href=\"https://developers.cloudflare.com/dns/zone-setups/reference/domain-status/\"\n                              >Domain status</a\n                              >\n                            </li>\n                            <li>\n                              Find your registrar on\n                              <a\n                                      href=\"https://lookup.icann.org/en/lookup?name=\"\n                              >ICANN Lookup</a\n                              >\n                            </li>\n                          </ul>\n                        </div>\n                      </td>\n                    </tr>\n                    <!--[if gte mso 9]>\n                    </table>\n                    </td>\n                    </tr>\n                    <![endif]-->\n                    </tbody>\n                  </table>\n                  <!--/Full Text-->\n                </td>\n              </tr>\n              <!-- END OF SUBHEADLINE -->\n\n              <!-- FOOTER -->\n              <tr class=\"mktoModule desktopPad\" id=\"spacerModule\">\n                <td>\n                  <table\n                          role=\"presentation\"\n                          border=\"0\"\n                          cellpadding=\"0\"\n                          cellspacing=\"0\"\n                          style=\"min-width: 100%\"\n                  >\n                    <!--[if gte mso 9]>\n                    <tr>\n                      <td>\n                        <table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n                    <![endif]-->\n                    <tbody>\n                    <tr\n                            style=\"\n                                  white-space: nowrap;\n                                  background-color: #ffffff;\n                                \"\n                    >\n                      <td\n                              class=\"desktopPad\"\n                              height=\"25\"\n                              style=\"\n                                    background-color: #ffffff;\n                                    line-height: 25px;\n                                    font-size: 25px;\n                                  \"\n                      >\n                        &nbsp;\n                      </td>\n                    </tr>\n                    <!--[if gte mso 9]>\n                    </table>\n                    </td>\n                    </tr>\n                    <![endif]-->\n                    </tbody>\n                  </table>\n                </td>\n              </tr>\n              <tr class=\"mktoModule\" id=\"persistentSpacerModule\">\n                <td>\n                  <!--Persistent Spacer-->\n                  <table\n                          role=\"presentation\"\n                          width=\"100%\"\n                          border=\"0\"\n                          cellpadding=\"0\"\n                          cellspacing=\"0\"\n                          style=\"min-width: 100%\"\n                  >\n                    <!--[if gte mso 9]>\n                    <tr>\n                      <td>\n                        <table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n                    <![endif]-->\n                    <tbody>\n                    <tr\n                            style=\"\n                                  white-space: nowrap;\n                                  background-color: #f6f6f6;\n                                \"\n                    >\n                      <td\n                              height=\"25\"\n                              style=\"\n                                    white-space: normal;\n                                    background-color: #f6f6f6;\n                                    line-height: 25px;\n                                    font-size: 25px;\n                                  \"\n                      >\n                        &nbsp;\n                      </td>\n                    </tr>\n                    <!--[if gte mso 9]>\n                    </table>\n                    </td>\n                    </tr>\n                    <![endif]-->\n                    </tbody>\n                  </table>\n                  <!--/Persistent Spacer-->\n                </td>\n              </tr>\n              <tr class=\"mktoModule\" id=\"footerModule\">\n                <td>\n                  <!--Footer-->\n                  <table\n                          role=\"presentation\"\n                          width=\"100%\"\n                          border=\"0\"\n                          cellpadding=\"0\"\n                          cellspacing=\"0\"\n                          style=\"min-width: 100%\"\n                  >\n                    <!--[if gte mso 9]>\n                    <tr>\n                      <td>\n                        <table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n                    <![endif]-->\n                    <tbody>\n                    <tr style=\"white-space: nowrap\">\n                      <td\n                              class=\"stack\"\n                              style=\"\n                                    white-space: normal;\n                                    padding-left: 40px;\n                                    padding-right: 40px;\n                                  \"\n                      >\n                        <div class=\"mktoSnippet\" id=\"footer\">\n                          <table\n                                  role=\"presentation\"\n                                  width=\"100%\"\n                                  border=\"0\"\n                                  cellpadding=\"0\"\n                                  cellspacing=\"0\"\n                          >\n                            <tbody>\n                            <tr>\n                              <td\n                                      class=\"footer\"\n                                      style=\"\n                                              font-family: Arial, Helvetica,\n                                                sans-serif;\n                                              color: #8f8f8f;\n                                              font-size: 13px;\n                                              text-align: center;\n                                            \"\n                              >\n                                Copyright ©&nbsp;2025 Cloudflare,\n                                Inc.<br />\n                                101 Townsend Street, San Francisco,\n                                CA 94107<br /><br />\n                                <a\n                                        href=\"https://www.cloudflare.com/\"\n                                        style=\"\n                                                color: #8f8f8f;\n                                                text-decoration: none;\n                                              \"\n                                >www.cloudflare.com</a\n                                >\n                                &nbsp;|&nbsp;\n                                <a\n                                        href=\"https://community.cloudflare.com/\"\n                                        style=\"\n                                                color: #8f8f8f;\n                                                text-decoration: none;\n                                              \"\n                                        target=\"_blank\"\n                                >Community</a\n                                >\n                              </td>\n                            </tr>\n                            <tr>\n                              <td\n                                      style=\"padding-top: 20px\"\n                                      align=\"center\"\n                              >\n                                <table\n                                        role=\"presentation\"\n                                        border=\"0\"\n                                        cellpadding=\"0\"\n                                        cellspacing=\"0\"\n                                        stlye=\"margin-right:auto;margin-left:auto;\"\n                                        align=\"center\"\n                                >\n                                  <tbody>\n                                  <tr>\n                                    <td\n                                            width=\"40\"\n                                            align=\"center\"\n                                            style=\"\n                                                      padding-right: 2px;\n                                                      padding-left: 2px;\n                                                    \"\n                                    >\n                                      <a\n                                              href=\"https://www.facebook.com/Cloudflare/\"\n                                              title=\"Facebook\"\n                                      ><img\n                                              src=\"https://info.cloudflare.com/rs/713-XSC-918/images/social-icon-fb-email-108px.png\"\n                                              width=\"36\"\n                                              height=\"36\"\n                                              alt=\"Facebook\"\n                                              style=\"\n                                                          display: block;\n                                                          margin-right: auto;\n                                                          margin-left: auto;\n                                                          border-style: none;\n                                                        \"\n                                              constrain=\"true\"\n                                              imagepreview=\"false\"\n                                      /></a>\n                                    </td>\n                                    <td\n                                            width=\"40\"\n                                            align=\"center\"\n                                            style=\"\n                                                      padding-right: 2px;\n                                                      padding-left: 2px;\n                                                    \"\n                                    >\n                                      <a\n                                              href=\"https://X.com/Cloudflare\"\n                                              title=\"X\"\n                                      ><img\n                                              src=\"https://info.cloudflare.com/rs/713-XSC-918/images/social-icon-twitter-email-108px.png\"\n                                              width=\"36\"\n                                              height=\"36\"\n                                              alt=\"X\"\n                                              style=\"\n                                                          display: block;\n                                                          margin-right: auto;\n                                                          margin-left: auto;\n                                                          border-style: none;\n                                                        \"\n                                              constrain=\"true\"\n                                              imagepreview=\"false\"\n                                      /></a>\n                                    </td>\n                                    <td\n                                            width=\"40\"\n                                            align=\"center\"\n                                            style=\"\n                                                      padding-right: 2px;\n                                                      padding-left: 2px;\n                                                    \"\n                                    >\n                                      <a\n                                              href=\"https://www.linkedin.com/company/cloudflare\"\n                                              title=\"LinkedIn\"\n                                      ><img\n                                              src=\"https://info.cloudflare.com/rs/713-XSC-918/images/social-icon-linkedin-email-108px.png\"\n                                              width=\"36\"\n                                              height=\"36\"\n                                              alt=\"LinkedIn\"\n                                              style=\"\n                                                          display: block;\n                                                          margin-right: auto;\n                                                          margin-left: auto;\n                                                          border-style: none;\n                                                        \"\n                                              constrain=\"true\"\n                                              imagepreview=\"false\"\n                                      /></a>\n                                    </td>\n                                  </tr>\n                                  </tbody>\n                                </table>\n                                <br />\n                              </td>\n                            </tr>\n                            </tbody>\n                          </table>\n                        </div>\n                      </td>\n                    </tr>\n                    <!--[if gte mso 9]>\n                    </table>\n                    </td>\n                    </tr>\n                    <![endif]-->\n                    </tbody>\n                  </table>\n                  <!--/Footer-->\n                </td>\n              </tr>\n            </table>\n          </td>\n        </tr>\n        <!-- END FOOTER -->\n\n        <!--/Container-->\n        <!--Full Width Image for Gmail to render desktop version on mobile-->\n        <tr>\n          <td>\n            <table\n                    role=\"presentation\"\n                    class=\"hide\"\n                    id=\"gmailModule\"\n                    width=\"100%\"\n                    border=\"0\"\n                    cellpadding=\"0\"\n                    cellspacing=\"0\"\n                    style=\"min-width: 100%\"\n            >\n              <tbody>\n              <tr\n                      style=\"white-space: nowrap; background-color: #ffffff\"\n              >\n                <td\n                        height=\"1\"\n                        class=\"hide\"\n                        style=\"\n                              min-width: 650px;\n                              opacity: 0;\n                              font-size: 0px;\n                              line-height: 0px;\n                            \"\n                >\n                  <img\n                          height=\"1\"\n                          src=\"#\"\n                          style=\"\n                                min-width: 650px;\n                                max-height: 0px;\n                                text-decoration: none;\n                                border: none;\n                                -ms-interpolation-mode: bicubic;\n                              \"\n                  />\n                </td>\n              </tr>\n              </tbody>\n            </table>\n          </td>\n        </tr>\n        <!--/Full Width Image for Gmail to render desktop version on mobile-->\n        </tbody>\n      </table>\n      <!--End Body Table-->\n    </td>\n  </tr>\n  </tbody>\n</table>\n<script\n        defer\n        src=\"https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015\"\n        integrity=\"sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==\"\n        data-cf-beacon=\'{\"rayId\":\"921e05f29d13a948\",\"serverTiming\":{\"name\":{\"cfExtPri\":true,\"cfL4\":true,\"cfSpeedBrain\":true,\"cfCacheStatus\":true}},\"version\":\"2025.1.0\",\"token\":\"271854501d8743cfb7cc749ee8f2dde0\"}\'\n        crossorigin=\"anonymous\"\n></script>\n</body>\n</html>\n','mavrix.one is not benefiting from Cloudflare\'s network. To boost speed and security, update its nameservers. \n\nWhy am I getting this email?\n\nmavrix.one was added to your Cloudflare account. However, this domain is still not using Cloudflare\'s nameservers. \n\nHow to update nameservers for mavrix.one \n 1. Log into your domain registrar (See instructions: https://developers.cloudflare.com/dns/nameservers/update-nameservers/?utm_medium=email&utm_source=transactional&utm_campaign=ca-update-ns)\n\n2. Replace your current nameserver records with only these two:\nboyd.ns.cloudflare.com\nparis.ns.cloudflare.com\n\n3. Once that’s done, log in to your Cloudflare account and check ’s status.\nhttps://dash.cloudflare.com/?to=/:account/mavrix.one\n \n\nAdditional resources\n\n- Change your nameservers: https://developers.cloudflare.com/dns/zone-setups/full-setup/setup/#update-your-nameservers\n- Domain status: https://developers.cloudflare.com/dns/zone-setups/reference/domain-status/\n- Find your registrar on ICANN Lookup: https://lookup.icann.org/en/lookup?name=',0,0,0,0,0,0,'2025-05-05 18:52:54','2025-12-09 19:02:09','2025-12-09 19:02:09','2025-12-09 19:02:09',NULL,NULL,NULL),
(209,4,'<CAN5j37OCCt9+ZxsaTMkzysRRJgmCBgkMCVJup9hrhs2WZ37qeA@mail.gmail.com>',NULL,NULL,'Introduction','jdlauwereins@icarusswarms.ai','Jean-dominique Lauwereins','<div dir=\"ltr\"><div><span class=\"gmail_default\" style=\"color:rgb(11,83,148)\">Hi Rick and Jean,</span></div><div><span class=\"gmail_default\" style=\"color:rgb(11,83,148)\"><br>I wanted to connect you both, as I believe Rick can provide valuable support to Icarus Swarms in raising funds for its growth plans.<br><br>Rick – Jean is the CFO of the group overseeing Dronisos and Icarus Swarms, bringing extensive financial expertise and strategic insight into their operations.<br><br>Jean – Rick has substantial experience in fundraising and could be instrumental in securing investments that align with Icarus Swarms’ ambitions.<br><br>I&#39;ll let you both take it from here. Please feel free to reach out if I can be of further assistance.<br><br></span></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><font color=\"#0b5394\">Jean-Dominique </font><div><br><table bgcolor=\"#ffffff\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"color:rgb(34,34,34)\"><tbody><tr><td valign=\"top\"><table align=\"left\" bgcolor=\"#ffffff\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"padding-left:15px;padding-top:15px;padding-right:15px\"><tbody><tr><td valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tbody><tr><td valign=\"top\" width=\"50\" style=\"padding-right:20px;vertical-align:top\"><img src=\"https://ci3.googleusercontent.com/mail-sig/AIorK4yFAkZTUTwb7Q8Bjxu3howl-sD275B9dr8nnheUm2K_dXRumDopoUz4Qx8vbCWo8QSLXmrxNRrMk8fG\" width=\"96\" height=\"96\"><br></td><td valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tbody><tr><td valign=\"top\"><table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tbody><tr><td valign=\"top\" style=\"font-family:tahoma,geneva,sans-serif;font-size:14px;line-height:17px;text-transform:uppercase;font-weight:bold;padding-bottom:5px;padding-right:10px\"><font color=\"#3d85c6\">JEAN-DOMINIQUE LAUWEREINS</font></td></tr><tr><td valign=\"top\" style=\"font-family:tahoma,geneva,sans-serif;font-size:12px;line-height:14px;padding-bottom:10px\"><font color=\"#3d85c6\">Co-Founder and CTO</font></td></tr><tr><td valign=\"top\" style=\"padding-bottom:10px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tbody><tr><td height=\"5\" valign=\"top\" style=\"background-color:rgb(232,232,232);font-size:5px;line-height:5px;border-radius:5px\"><font color=\"#3d85c6\"> </font></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td valign=\"top\" style=\"font-family:tahoma,geneva,sans-serif;font-size:11px;padding-bottom:5px;line-height:13px\"><strong><font color=\"#3d85c6\">E </font></strong><font color=\"#3d85c6\"> <a href=\"mailto:jdlauwereins@icarusswarms.ai\" target=\"_blank\">jdlauwereins@icarusswarms.ai</a> </font><font color=\"#000000\">| </font><strong><font color=\"#6fa8dc\">M</font></strong><font color=\"#000000\"> +33 670 633 071</font></td></tr><tr><td valign=\"top\" style=\"font-family:tahoma,geneva,sans-serif;font-size:11px;color:rgb(0,0,0);line-height:13px;padding-bottom:5px\"><strong>Icarus Swarms</strong>  |  Bordeaux, France </td></tr><tr><td valign=\"top\" style=\"font-family:tahoma,geneva,sans-serif;line-height:13px;padding-bottom:5px\"><a href=\"http://www.icarusswarms.ai\" target=\"_blank\"><font color=\"#3d85c6\" size=\"1\">www.icarusswarms.ai</font></a><br><br></td></tr><tr><td valign=\"top\"><br></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></div></div></div></div><img src=\"https://cTGwW04.na1.hs-sales-engage.com/Cto/GE+23284/cTGwW04/R5R8b48vtN70Tyzy2fD4xW1ZkpZt1S56bwW24T2gD1W_LpVW1GyxJS22Svy7W24Wbws1Q5MDvW22VS6p1Q44F4n1S3Vyj4W1\" alt=\"\" height=\"1\" width=\"1\" style=\"display: none !important;\"><div></div></div>','Hi Rick and Jean,\r\n\r\nI wanted to connect you both, as I believe Rick can provide valuable\r\nsupport to Icarus Swarms in raising funds for its growth plans.\r\n\r\nRick – Jean is the CFO of the group overseeing Dronisos and Icarus Swarms,\r\nbringing extensive financial expertise and strategic insight into their\r\noperations.\r\n\r\nJean – Rick has substantial experience in fundraising and could be\r\ninstrumental in securing investments that align with Icarus Swarms’\r\nambitions.\r\n\r\nI\'ll let you both take it from here. Please feel free to reach out if I can\r\nbe of further assistance.\r\n\r\nJean-Dominique\r\n\r\n\r\nJEAN-DOMINIQUE LAUWEREINS\r\nCo-Founder and CTO\r\n\r\n*E * jdlauwereins@icarusswarms.ai | *M* +33 670 633 071\r\n*Icarus Swarms*  |  Bordeaux, France\r\nwww.icarusswarms.ai',0,0,0,0,0,0,'2025-05-06 09:42:24','2025-12-09 19:02:09','2025-12-09 19:02:09','2025-12-09 19:02:09',NULL,NULL,NULL),
(210,4,'<CA+UrV6fyOF0DK+eZjy5vD8iLhFVwANC6nWM5k=t5iRcoQCYYMw@mail.gmail.com>',NULL,NULL,'=?UTF-8?Q?SKY_Perfect_JSAT_is_the_customer_behind_Planet=E2=80=99s_=24?= =?UTF-8?Q?230_million_LEO_order?=','jon.mathers@federal.planet.com','Jonathan Mathers','<div><div><div dir=\"auto\" style=\"font-family:-apple-system,helveticaneue;font-size:15px;font-style:normal;font-weight:400;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;background-color:rgba(0,0,0,0);border-color:rgb(0,0,0);color:rgb(0,0,0)\">Rick,</div><div dir=\"auto\" style=\"font-family:-apple-system,helveticaneue;font-size:15px;font-style:normal;font-weight:400;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;background-color:rgba(0,0,0,0);border-color:rgb(0,0,0);color:rgb(0,0,0)\"><br></div><div dir=\"auto\" style=\"font-family:-apple-system,helveticaneue;font-size:15px;font-style:normal;font-weight:400;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;background-color:rgba(0,0,0,0);border-color:rgb(0,0,0);color:rgb(0,0,0)\">Great meeting you today at my booth (Planet). Here is the article on the deal we did for the CaaS in Japan. If you/a customer needs more or wants to talk more I’m around all week. </div><div dir=\"auto\" style=\"font-family:-apple-system,helveticaneue;font-size:15px;font-style:normal;font-weight:400;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;background-color:rgba(0,0,0,0);border-color:rgb(0,0,0);color:rgb(0,0,0)\"><br></div><div style=\"font-family:-apple-system,helveticaneue;font-size:15px;font-style:normal;font-weight:400;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;background-color:rgba(0,0,0,0);border-color:rgb(0,0,0);color:rgb(0,0,0)\"><a href=\"https://spacenews.com/sky-perfect-jsat-is-the-customer-behind-planets-230-million-leo-order/\" style=\"font-family:-apple-system,helveticaneue;background-color:rgba(0,0,0,0);border-color:rgb(66,133,244);color:rgb(66,133,244)\">https://spacenews.com/sky-perfect-jsat-is-the-customer-behind-planets-230-million-leo-order/</a><br></div><div dir=\"auto\" style=\"font-family:-apple-system,helveticaneue;font-size:15px;font-style:normal;font-weight:400;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;background-color:rgba(0,0,0,0);border-color:rgb(0,0,0);color:rgb(0,0,0)\"><br></div><div dir=\"auto\" style=\"font-family:-apple-system,helveticaneue;font-size:15px;font-style:normal;font-weight:400;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;background-color:rgba(0,0,0,0);border-color:rgb(0,0,0);color:rgb(0,0,0)\">Best,</div></div><br clear=\"all\"><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\">Jon Mathers<br>Senior Manager, Global Defense and Intelligence<br>M: (614) 581-4038<br><a href=\"mailto:jon.mathers@federal.planet.com\">jon.mathers@federal.planet.com</a></div></div></div><div dir=\"auto\"><div class=\"gmail_quote gmail_quote_container\">\r\n</div></div>','Rick,\r\n\r\nGreat meeting you today at my booth (Planet). Here is the article on the\r\ndeal we did for the CaaS in Japan. If you/a customer needs more or wants to\r\ntalk more I’m around all week.\r\n\r\nhttps://spacenews.com/sky-perfect-jsat-is-the-customer-behind-planets-230-million-leo-order/\r\n\r\nBest,\r\n\r\nJon Mathers\r\nSenior Manager, Global Defense and Intelligence\r\nM: (614) 581-4038\r\njon.mathers@federal.planet.com',0,0,0,0,0,0,'2025-05-06 22:30:08','2025-12-09 19:02:09','2025-12-09 19:02:09','2025-12-09 19:02:09',NULL,NULL,NULL),
(211,4,' <SJ4PPFC79825DEDD9AA603C29E26542393EBF88A@SJ4PPFC79825DED.namprd18.prod.outlook.com>',NULL,NULL,'SOF follow up','elle.lynch@harpoon1.com','Elle Lynch','<html xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;\r\n	panose-1:2 11 0 4 2 2 2 2 2 4;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:11.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle17\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:11.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">Dear Rick, <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;mso-ligatures:none\">I hope you\'re doing well and enjoying the mania of SOF! I am heading back to KY, but really enjoyed chatting to you at the Bad\r\n Monkey.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;mso-ligatures:none\">I am tying in our CEO, Craig Harris, and wanted to follow up on our discussion regarding potential investment in supply chain-related\r\n capabilities. I appreciated your insights and the opportunity to explore where there may be alignment.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;mso-ligatures:none\">If you\'re available, I’d welcome the chance to connect for a quick debrief next week to continue the conversation and discuss potential\r\n next steps.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;mso-ligatures:none\">Please let me know a time that works for you.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;mso-ligatures:none\">Kind regards,\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;mso-ligatures:none\">Elle<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</body>\r\n</html>','Dear Rick,\r\nI hope you\'re doing well and enjoying the mania of SOF! I am heading back to KY, but really enjoyed chatting to you at the Bad Monkey.\r\n\r\nI am tying in our CEO, Craig Harris, and wanted to follow up on our discussion regarding potential investment in supply chain-related capabilities. I appreciated your insights and the opportunity to explore where there may be alignment.\r\n\r\nIf you\'re available, I’d welcome the chance to connect for a quick debrief next week to continue the conversation and discuss potential next steps.\r\n\r\nPlease let me know a time that works for you.\r\nKind regards,\r\nElle',0,0,0,0,0,0,'2025-05-07 20:16:25','2025-12-09 19:02:10','2025-12-09 19:02:10','2025-12-09 19:02:10',NULL,NULL,NULL),
(212,4,'<CF318A54-330C-48DF-A78B-C8E99490667C@bavovna.ai>',NULL,NULL,'SOFWeek intro','alm@bavovna.ai','Arthur Mccallum','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body dir=\"auto\">Hey Rick!<div dir=\"ltr\"></div><div dir=\"ltr\"></div><div><br></div><div>It was a real pleasure to meet you today on the Orqa yacht.&nbsp;</div><div><br></div><div>I wanted to be sure we’re in touch. &nbsp;You can reach me here or on 9172141726, signal or WhatsApp.&nbsp;</div><div><br></div><div>Please tell me what you need from me as we engage.&nbsp;</div><div><br></div><div>Look forward to connecting soon.</div><div><br></div><div>And just in case you haven’t seen the greatest cycling doc of all time - pls be acquainted with&nbsp;<a href=\"https://youtu.be/zxBTVU9JDrA?si=u1sgMLHcMeEcUKAF\">A Sunday in Hell</a>.&nbsp;</div><div><br></div><div><br></div><div>Thank you, sir!&nbsp;</div><div><br></div><div>&nbsp;</div></body></html>','Hey Rick!It was a real pleasure to meet you today on the Orqa yacht.&nbsp;I wanted to be sure we’re in touch. &nbsp;You can reach me here or on 9172141726, signal or WhatsApp.&nbsp;Please tell me what you need from me as we engage.&nbsp;Look forward to connecting soon.And just in case you haven’t seen the greatest cycling doc of all time - pls be acquainted with&nbsp;A Sunday in Hell.&nbsp;Thank you, sir!&nbsp;&nbsp;',0,0,0,0,0,0,'2025-05-08 00:16:53','2025-12-09 19:02:10','2025-12-09 19:02:10','2025-12-09 19:02:10',NULL,NULL,NULL),
(213,4,' <SJ2P223MB1001612DD51398CA266740A7D895A@SJ2P223MB1001.NAMP223.PROD.OUTLOOK.COM>',NULL,NULL,'AEROMARINE UAVs','chip@wetaero.com','Chip Erwin','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:x=\"urn:schemas-microsoft-com:office:excel\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:#467886;\r\n	text-decoration:underline;}\r\nspan.EmailStyle18\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Thanks for taking a moment o meet with me at SOF week. I attach the Customer Memorandum from my last SBIR submission. Col. Rhett Brown is in Maj. Gen. Josef Kunkels&#8217; office. He will support a new CM along with Dr. Robert Hancock (AFRL).<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">A new round of SBIRs just opened. Ron has someone that can improve my presentation. &nbsp;I am better with engineering design than pretty graphics as you may have noticed.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">My two new UAV or piloted designs are a lot more than just images. I am flying the LEOPARD proof of concept aircraft now. And the Hyper-STOL complete design packaged was completed including performance verifications under an Army Phase\r\n I in 2024.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">The DoD acknowledges that both these aircraft have urgent applications in the INDOPACOM. Both these aircraft are extremely low cost and easily mass produced (&gt;1,000/year). They will make a difference in both force multiplication and affordable\r\n mass.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">I look forward to your interests.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Cheers,<o:p></o:p></p>\r\n<p class=\"MsoNormal\">CHIP<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Aeromarine<o:p></o:p></p>\r\n<p class=\"MsoNormal\">Chip W Erwin<o:p></o:p></p>\r\n<p class=\"MsoNormal\">262-408-0124<o:p></o:p></p>\r\n<p class=\"MsoNormal\">chip@wetaero.com<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><a href=\"http://www.aeromarine-lsa.com/\">www.aeromarine-lsa.com</a><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</body>\r\n</html>','Rick,\r\n\r\nThanks for taking a moment o meet with me at SOF week. I attach the Customer Memorandum from my last SBIR submission. Col. Rhett Brown is in Maj. Gen. Josef Kunkels\' office. He will support a new CM along with Dr. Robert Hancock (AFRL).\r\n\r\nA new round of SBIRs just opened. Ron has someone that can improve my presentation.  I am better with engineering design than pretty graphics as you may have noticed.\r\n\r\nMy two new UAV or piloted designs are a lot more than just images. I am flying the LEOPARD proof of concept aircraft now. And the Hyper-STOL complete design packaged was completed including performance verifications under an Army Phase I in 2024.\r\n\r\nThe DoD acknowledges that both these aircraft have urgent applications in the INDOPACOM. Both these aircraft are extremely low cost and easily mass produced (>1,000/year). They will make a difference in both force multiplication and affordable mass.\r\n\r\nI look forward to your interests.\r\n\r\nCheers,\r\nCHIP\r\n\r\n\r\nAeromarine\r\nChip W Erwin\r\n262-408-0124\r\nchip@wetaero.com\r\nwww.aeromarine-lsa.com<http://www.aeromarine-lsa.com/>',0,0,0,0,0,0,'2025-05-10 09:37:32','2025-12-09 19:02:12','2025-12-09 19:02:12','2025-12-09 19:02:12',NULL,NULL,NULL),
(214,4,'<CALHF0x3vv0Ah7Fh_sUhyYA53T=gfsDmYnKZB+T0ADMXH1nF5vQ@mail.gmail.com>',NULL,NULL,'Re: SOFWeek Yacht Talk','dkovar@ursasecure.com','David Kovar','<html><body><div dir=\"ltr\">Greetings,</div><div dir=\"ltr\"><br></div><div dir=\"ltr\">This week is remarkably quiet, particularly Tuesday and Wednesday.</div><div dir=\"ltr\"><br></div><div dir=\"ltr\">Looking forward to catching up.</div><div dir=\"ltr\"><br></div><div dir=\"ltr\">Cheers,</div><div dir=\"ltr\"><br></div><div dir=\"ltr\">-David</div><div dir=\"ltr\"><br clear=\"all\"><div><div class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><span style=\"font-family:Helvetica;font-size:12px;color:rgb(0,0,0)\">David Kovar</span><br style=\"font-family:Helvetica;font-size:12px;color:rgb(0,0,0)\"><span style=\"font-family:Helvetica;font-size:12px;color:rgb(0,0,0)\">CEO, Founder URSA Inc.</span><br style=\"font-family:Helvetica;font-size:12px;color:rgb(0,0,0)\"><span style=\"font-family:Helvetica;font-size:12px;color:rgb(0,0,0)\">Cell: 650-278-1774</span><br></div></div></div><br>\r\n</div>\r\n<br>\r\n<div class=\"gmail_quote\">\r\n    <div dir=\"ltr\" class=\"gmail_attr\">On May 11, 2025 at 9:23:41 AM, Rick &lt;rick@mavrix.one&gt; wrote:<br></div>\r\n    <blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\" type=\"cite\">\r\n        \r\n    <div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Hi David,</div><div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Just following up with a request to chat again,</div><div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">regarding the yacht talk about Mavrix and Ursa.</div><div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Please let me know what works best for you this week or next.</div><div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">All my best,</div><div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Rick</div><br><div id=\"bloop_sign_1746969413606791936\" class=\"bloop_sign\">\r\n        <title></title>\r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div><div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height: 11px;\"></div>\r\n     \r\n</div>\r\n\r\n\r\n\r\n    </blockquote>\r\n</div></body></html>','Greetings,\r\n\r\nThis week is remarkably quiet, particularly Tuesday and Wednesday.\r\n\r\nLooking forward to catching up.\r\n\r\nCheers,\r\n\r\n-David\r\n\r\nDavid Kovar\r\nCEO, Founder URSA Inc.\r\nCell: 650-278-1774\r\n\r\n\r\nOn May 11, 2025 at 9:23:41 AM, Rick <rick@mavrix.one> wrote:\r\n\r\n> Hi David,\r\n> Just following up with a request to chat again,\r\n> regarding the yacht talk about Mavrix and Ursa.\r\n> Please let me know what works best for you this week or next.\r\n> All my best,\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one <https://mavrix.one https://mavrix.one\r\n> https://mavrix.one>\r\n>',0,0,0,0,0,0,'2025-05-11 14:02:50','2025-12-09 19:02:12','2025-12-09 19:02:12','2025-12-09 19:02:12',NULL,NULL,NULL),
(215,4,'<CALHF0x3-1Afa=SLANbN0aQx8-_fQNrnSYJ9uAidwvNHp0Bjy8g@mail.gmail.com>',NULL,NULL,'Re: SOFWeek Yacht Talk','dkovar@ursasecure.com','David Kovar','<html><body><div dir=\"ltr\">\r\n    Greetings,</div><div dir=\"ltr\"><br></div><div dir=\"ltr\">Tuesday at 11 would be great. I do DOD contracting, I think I’ve got every video tool and version of those tools on the planet. Anything is fine, thank you for asking.</div><div dir=\"ltr\"><br></div><div dir=\"ltr\">Cheers,</div><div dir=\"ltr\"><br></div><div dir=\"ltr\">-David</div><div dir=\"ltr\"><br clear=\"all\"><div><div class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><span style=\"font-family:Helvetica;font-size:12px;color:rgb(0,0,0)\">David Kovar</span><br style=\"font-family:Helvetica;font-size:12px;color:rgb(0,0,0)\"><span style=\"font-family:Helvetica;font-size:12px;color:rgb(0,0,0)\">CEO, Founder URSA Inc.</span><br style=\"font-family:Helvetica;font-size:12px;color:rgb(0,0,0)\"><span style=\"font-family:Helvetica;font-size:12px;color:rgb(0,0,0)\">Cell: 650-278-1774</span><br></div></div></div><br>\r\n</div>\r\n<br>\r\n<div class=\"gmail_quote\">\r\n    <div dir=\"ltr\" class=\"gmail_attr\">On May 11, 2025 at 10:10:58 AM, Rick &lt;rick@mavrix.one&gt; wrote:<br></div>\r\n    <blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\" type=\"cite\">\r\n        \r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">Wonderful,</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">How about Tuesday morning?</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">9, 10, 11?</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Video tool preferences?</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Thanks</div> <br> <div class=\"gmail_signature\">\r\n        <title></title>\r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div><div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height: 11px;\"></div>\r\n     \r\n</div> <br><p class=\"airmail_on\">On May 11, 2025 at 10:03:32 AM, David Kovar (<a href=\"mailto:dkovar@ursasecure.com\">dkovar@ursasecure.com</a>) wrote:</p> <blockquote type=\"cite\" class=\"clean_bq\"><span><div><div></div><div><div dir=\"ltr\">Greetings,</div><div dir=\"ltr\"><br></div><div dir=\"ltr\">This week is remarkably quiet, particularly Tuesday and Wednesday.</div><div dir=\"ltr\"><br></div><div dir=\"ltr\">Looking forward to catching up.</div><div dir=\"ltr\"><br></div><div dir=\"ltr\">Cheers,</div><div dir=\"ltr\"><br></div><div dir=\"ltr\">-David</div><div dir=\"ltr\"><br clear=\"all\"><div><div class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><span style=\"font-family:Helvetica;font-size:12px;color:rgb(0,0,0)\">David Kovar</span><br style=\"font-family:Helvetica;font-size:12px;color:rgb(0,0,0)\"><span style=\"font-family:Helvetica;font-size:12px;color:rgb(0,0,0)\">CEO, Founder URSA Inc.</span><br style=\"font-family:Helvetica;font-size:12px;color:rgb(0,0,0)\"><span style=\"font-family:Helvetica;font-size:12px;color:rgb(0,0,0)\">Cell: 650-278-1774</span><br></div></div></div><br>\r\n</div>\r\n<br>\r\n<div class=\"gmail_quote\">\r\n    <div dir=\"ltr\" class=\"gmail_attr\">On May 11, 2025 at 9:23:41 AM, Rick &lt;rick@mavrix.one&gt; wrote:<br></div>\r\n    <blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\" type=\"cite\">\r\n         \r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Hi David,</div><div style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Just following up with a request to chat again,</div><div style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">regarding the yacht talk about Mavrix and Ursa.</div><div style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Please let me know what works best for you this week or next.</div><div style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">All my best,</div><div style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Rick</div><br><div class=\"gmail_signature\">\r\n         \r\n      \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div><div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height: 11px;\"></div>\r\n      \r\n</div>\r\n\r\n\r\n\r\n    </blockquote>\r\n</div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n\r\n    </blockquote>\r\n</div></body></html>',' Greetings,\r\n\r\nTuesday at 11 would be great. I do DOD contracting, I think I’ve got every\r\nvideo tool and version of those tools on the planet. Anything is fine,\r\nthank you for asking.\r\n\r\nCheers,\r\n\r\n-David\r\n\r\nDavid Kovar\r\nCEO, Founder URSA Inc.\r\nCell: 650-278-1774\r\n\r\n\r\nOn May 11, 2025 at 10:10:58 AM, Rick <rick@mavrix.one> wrote:\r\n\r\n> Wonderful,\r\n> How about Tuesday morning?\r\n> 9, 10, 11?\r\n> Video tool preferences?\r\n> Thanks\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one <https://mavrix.one https://mavrix.one\r\n> https://mavrix.one>\r\n>\r\n> On May 11, 2025 at 10:03:32 AM, David Kovar (dkovar@ursasecure.com) wrote:\r\n>\r\n> Greetings,\r\n>\r\n> This week is remarkably quiet, particularly Tuesday and Wednesday.\r\n>\r\n> Looking forward to catching up.\r\n>\r\n> Cheers,\r\n>\r\n> -David\r\n>\r\n> David Kovar\r\n> CEO, Founder URSA Inc.\r\n> Cell: 650-278-1774\r\n>\r\n>\r\n> On May 11, 2025 at 9:23:41 AM, Rick <rick@mavrix.one> wrote:\r\n>\r\n>> Hi David,\r\n>> Just following up with a request to chat again,\r\n>> regarding the yacht talk about Mavrix and Ursa.\r\n>> Please let me know what works best for you this week or next.\r\n>> All my best,\r\n>> Rick\r\n>>\r\n>> Rick Mislan, PhD\r\n>> https://mavrix.one <https://mavrix.one https://mavrix.one\r\n>> https://mavrix.one>\r\n>>\r\n>',0,0,0,0,0,0,'2025-05-11 15:07:20','2025-12-09 19:02:13','2025-12-09 19:02:13','2025-12-09 19:02:13',NULL,NULL,NULL),
(216,4,'<B356E4FA-5CBE-48F1-BC3C-C78AEE808DF6@gmail.com>',NULL,NULL,'Google Calendar - Event details','rmislan@gmail.com','Rick Mislan','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body dir=\"auto\"><div dir=\"ltr\"><br>https://calendar.google.com/calendar/u/0/r/eventedit?vcon=meet</div><div dir=\"ltr\"><div><div class=\"gmail_signature\" style=\"caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); font-family: helvetica, Arial; font-size: 13px; -webkit-text-size-adjust: auto;\"><div></div></div></div></div></body></html>','\r\nhttps://calendar.google.com/calendar/u/0/r/eventedit?vcon=meet',0,0,0,0,0,0,'2025-05-11 16:24:10','2025-12-09 19:02:13','2025-12-09 19:02:13','2025-12-09 19:02:13',NULL,NULL,NULL),
(217,4,'<CANkMA8WVkvff96g5V1iOUc6KpNsUAxETTykfN4q_o8=KEsp9Pg@mail.gmail.com>',NULL,NULL,'Strategic Logix','avalkenburg@strategic-logix.com','Andrew Valkenburg','<div dir=\"ltr\"><div>Rick,</div><div><br></div><div>Great meeting you last week. We talked about Strategic Logix&#39;s NDAA Compliant and Blue UAS, made in the USA, Drone Builders Kits and our Modular and Scalable Drone Ecosystem. These have become very popular over the past year or so and we have thousands on open order right now. I am looking forward to talking more if you are still interested in collaborating in any way. </div><div><br></div><div>Our company is only successful due to teaming agreements, partnerships, and collaborations and we are always eager to meet someone new. We actually are a contracting company by design but have really hit the mark on some of our drone solutions inside the DOD. Excited to talk, give me a call or shoot me a note anytime.</div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p><font color=\"#000000\"><b><a href=\"https://d5Fk0J04.na1.hs-sales-engage.com/Ctc/ZY+23284/d5Fk0J04/Jks2-6qcW69sMD-6lZ3nJW1C9lY887HyBKW6D21wy2c_9HvW89wrSb8y-J9KW7CPBBF77W0-HW24SmGJ3p3jMLW1VtT5C90mlClW3jk-MZ3Fb8LsW8QkSvS4n2RDYN1JBMvQh9XcgW4kPFBF3XdQBgW1_rTMP3g903PW6c20-g5YlyctVn6gjK7Ls8cbW58R6sz4xNH_1W11szhh6mx-64N19tyQnr6Tr8W5n2jWr6h6_qyW85W9mH3ntSrqW392dsw8n7TqwW92PdNw7JP8mpf2BxDqM04\" target=\"_blank\">VISIT OUR WEBSITE</a></b></font></p><p><strong><font color=\"#000000\"><br></font></strong></p><p><strong><font color=\"#000000\">Sincerely,</font></strong></p><p><font color=\"#000000\">Andrew Valkenburg<br>Chief Operations Officer, Strategic Logix LLC<br>484-225-9132<br><a rel=\"noopener\">avalkenburg@strategic-logix.com</a></font></p></div></div><div></div><img src=\"https://d5Fk0J04.na1.hs-sales-engage.com/Cto/ZY+23284/d5Fk0J04/R5R8b46GFN8DRvLG2fCY0W25fl9Q23h6BPW3C6S931X0D-pW1Gysw91T-H-hW1X1QP421hMz7W1Xmcqh1T_YtRn1--v6q4W1\" alt=\"\" height=\"1\" width=\"1\" style=\"display: none !important;\"></div>','Rick,\r\n\r\nGreat meeting you last week. We talked about Strategic Logix\'s NDAA\r\nCompliant and Blue UAS, made in the USA, Drone Builders Kits and our\r\nModular and Scalable Drone Ecosystem. These have become very popular over\r\nthe past year or so and we have thousands on open order right now. I am\r\nlooking forward to talking more if you are still interested in\r\ncollaborating in any way.\r\n\r\nOur company is only successful due to teaming agreements, partnerships, and\r\ncollaborations and we are always eager to meet someone new. We actually are\r\na contracting company by design but have really hit the mark on some of our\r\ndrone solutions inside the DOD. Excited to talk, give me a call or shoot me\r\na note anytime.\r\n\r\n-- \r\n\r\n*VISIT OUR WEBSITE\r\n<https://d5Fk0J04.na1.hs-sales-engage.com/Ctc/ZY+23284/d5Fk0J04/Jks2-6qcW69sMD-6lZ3nJW1C9lY887HyBKW6D21wy2c_9HvW89wrSb8y-J9KW7CPBBF77W0-HW24SmGJ3p3jMLW1VtT5C90mlClW3jk-MZ3Fb8LsW8QkSvS4n2RDYN1JBMvQh9XcgW4kPFBF3XdQBgW1_rTMP3g903PW6c20-g5YlyctVn6gjK7Ls8cbW58R6sz4xNH_1W11szhh6mx-64N19tyQnr6Tr8W5n2jWr6h6_qyW85W9mH3ntSrqW392dsw8n7TqwW92PdNw7JP8mpf2BxDqM04>*\r\n\r\n\r\n*Sincerely,*\r\n\r\nAndrew Valkenburg\r\nChief Operations Officer, Strategic Logix LLC\r\n484-225-9132\r\navalkenburg@strategic-logix.com',0,0,0,0,0,0,'2025-05-12 12:00:00','2025-12-09 19:02:13','2025-12-09 19:02:13','2025-12-09 19:02:13',NULL,NULL,NULL),
(218,4,'<CANkMA8Xq+oOVt2i-R3ug4=XSfYhxR8UkOJv8hV2nLRrwA1NK2A@mail.gmail.com>',NULL,NULL,'Re: Strategic Logix','avalkenburg@strategic-logix.com','Andrew Valkenburg','<div dir=\"auto\">Hey Rick,</div><div dir=\"auto\"><br></div><div dir=\"auto\">I’m open today until 9AM EST for an intro or discovery call, otherwise Tuesday from 9-11EST works and Friday is pretty free for me. </div><div dir=\"auto\"><br></div><div dir=\"auto\"><br></div><div dir=\"auto\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\">Sincerely,<br><br>Andrew J. Valkenburg<br>Chief Operations Officer | Partner,<br>Strategic Logix<br><br>484-225-9132<br><a href=\"mailto:Avalkenburg@strategic-logix.com\">Avalkenburg@strategic-logix.com</a></div></div></div><div><br></div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, May 12, 2025 at 8:05 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;padding-left:1ex;border-left-color:rgb(204,204,204)\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">Yes! Let’s talk…pretty open this week.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Let me know what’s best.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Thanks for the follow-up.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Rick</div> <br> <div class=\"gmail_signature\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div> <br><p>On May 12, 2025 at 8:01:38 AM, Andrew Valkenburg (<a href=\"mailto:avalkenburg@strategic-logix.com\" target=\"_blank\">avalkenburg@strategic-logix.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div>Rick,</div><div><br></div><div>Great meeting you last week. We talked about Strategic Logix&#39;s NDAA Compliant and Blue UAS, made in the USA, Drone Builders Kits and our Modular and Scalable Drone Ecosystem. These have become very popular over the past year or so and we have thousands on open order right now. I am looking forward to talking more if you are still interested in collaborating in any way. </div><div><br></div><div>Our company is only successful due to teaming agreements, partnerships, and collaborations and we are always eager to meet someone new. We actually are a contracting company by design but have really hit the mark on some of our drone solutions inside the DOD. Excited to talk, give me a call or shoot me a note anytime.</div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p><font style=\"color:rgb(0,0,0)\"><b><a href=\"https://d5Fk0J04.na1.hs-sales-engage.com/Ctc/ZY+23284/d5Fk0J04/Jks2-6qcW69sMD-6lZ3nJW1C9lY887HyBKW6D21wy2c_9HvW89wrSb8y-J9KW7CPBBF77W0-HW24SmGJ3p3jMLW1VtT5C90mlClW3jk-MZ3Fb8LsW8QkSvS4n2RDYN1JBMvQh9XcgW4kPFBF3XdQBgW1_rTMP3g903PW6c20-g5YlyctVn6gjK7Ls8cbW58R6sz4xNH_1W11szhh6mx-64N19tyQnr6Tr8W5n2jWr6h6_qyW85W9mH3ntSrqW392dsw8n7TqwW92PdNw7JP8mpf2BxDqM04\" target=\"_blank\">VISIT OUR WEBSITE</a></b></font></p><p><strong><font style=\"color:rgb(0,0,0)\"><br></font></strong></p><p><strong><font style=\"color:rgb(0,0,0)\">Sincerely,</font></strong></p><p><font style=\"color:rgb(0,0,0)\">Andrew Valkenburg<br>Chief Operations Officer, Strategic Logix LLC<br>484-225-9132<br><a rel=\"noopener\">avalkenburg@strategic-logix.com</a></font></p></div></div><div></div><img src=\"https://d5Fk0J04.na1.hs-sales-engage.com/Cto/ZY+23284/d5Fk0J04/R5R8b46GFN8DRvLG2fCY0W25fl9Q23h6BPW3C6S931X0D-pW1Gysw91T-H-hW1X1QP421hMz7W1Xmcqh1T_YtRn1--v6q4W1\" alt=\"\" height=\"1\" width=\"1\" style=\"display: none !important;\"></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div></div>','Hey Rick,\r\n\r\nI’m open today until 9AM EST for an intro or discovery call, otherwise\r\nTuesday from 9-11EST works and Friday is pretty free for me.\r\n\r\n\r\nSincerely,\r\n\r\nAndrew J. Valkenburg\r\nChief Operations Officer | Partner,\r\nStrategic Logix\r\n\r\n484-225-9132\r\nAvalkenburg@strategic-logix.com\r\n\r\n\r\nOn Mon, May 12, 2025 at 8:05 AM Rick <rick@mavrix.one> wrote:\r\n\r\n> Yes! Let’s talk…pretty open this week.\r\n> Let me know what’s best.\r\n> Thanks for the follow-up.\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On May 12, 2025 at 8:01:38 AM, Andrew Valkenburg (\r\n> avalkenburg@strategic-logix.com) wrote:\r\n>\r\n> Rick,\r\n>\r\n> Great meeting you last week. We talked about Strategic Logix\'s NDAA\r\n> Compliant and Blue UAS, made in the USA, Drone Builders Kits and our\r\n> Modular and Scalable Drone Ecosystem. These have become very popular over\r\n> the past year or so and we have thousands on open order right now. I am\r\n> looking forward to talking more if you are still interested in\r\n> collaborating in any way.\r\n>\r\n> Our company is only successful due to teaming agreements, partnerships,\r\n> and collaborations and we are always eager to meet someone new. We actually\r\n> are a contracting company by design but have really hit the mark on some of\r\n> our drone solutions inside the DOD. Excited to talk, give me a call or\r\n> shoot me a note anytime.\r\n>\r\n> --\r\n>\r\n> *VISIT OUR WEBSITE\r\n> <https://d5Fk0J04.na1.hs-sales-engage.com/Ctc/ZY+23284/d5Fk0J04/Jks2-6qcW69sMD-6lZ3nJW1C9lY887HyBKW6D21wy2c_9HvW89wrSb8y-J9KW7CPBBF77W0-HW24SmGJ3p3jMLW1VtT5C90mlClW3jk-MZ3Fb8LsW8QkSvS4n2RDYN1JBMvQh9XcgW4kPFBF3XdQBgW1_rTMP3g903PW6c20-g5YlyctVn6gjK7Ls8cbW58R6sz4xNH_1W11szhh6mx-64N19tyQnr6Tr8W5n2jWr6h6_qyW85W9mH3ntSrqW392dsw8n7TqwW92PdNw7JP8mpf2BxDqM04>*\r\n>\r\n>\r\n> *Sincerely,*\r\n>\r\n> Andrew Valkenburg\r\n> Chief Operations Officer, Strategic Logix LLC\r\n> 484-225-9132\r\n> avalkenburg@strategic-logix.com\r\n>\r\n>',0,0,0,0,0,0,'2025-05-12 12:07:38','2025-12-09 19:02:14','2025-12-09 19:02:14','2025-12-09 19:02:14',NULL,NULL,NULL),
(219,4,'<calendar-8dd19f1a-80b2-4515-8ec4-4d678ce979c7@google.com>',NULL,NULL,'Invitation: Defense market place @ Mon May 12, 2025 1pm - 1:45pm (EDT) (rick@mavrix.one)','bryan@orqafpv.com','Bryan Sardoch','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v143/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v117/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation from Bryan Sardoch\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"6dhjgcr26gqm2bb164sjib9kc8r62bb26li64b9l6cs3ad1lcdgm8p1gck\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Defense market place</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NmRoamdjcjI2Z3FtMmJiMTY0c2ppYjlrYzhyNjJiYjI2bGk2NGI5bDZjczNhZDFsY2RnbThwMWdjayByaWNrQG1hdnJpeC5vbmU&amp;tok=MTcjYnJ5YW5Ab3JxYWZwdi5jb21mNTJlMDU3N2QwZTRmZWM3MjBkMTI1MDAwMGVjYTIwZGI4YzRlMzQ2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250512T170000Z\"></time><time itemprop=\"endDate\" datetime=\"20250512T174500Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">Join with Google Meet – You have been invited by Bryan Sardoch to attend an event named Defense market place on Monday May 12, 2025 ⋅ 1pm – 1:45pm (Eastern Time - New York).</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:28px;\"><a href=\"https://meet.google.com/smm-szdt-adj?hs=224\" class=\"primary-button-text\" style=\"display: inline-block;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"display: inline-block\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"background-color: #1a73e8; cursor: auto; padding: 10px 25px; border: none; border-radius: 4px; margin: 0;\" class=\"primary-button\"><!--[if mso]><a href=\"https://meet.google.com/smm-szdt-adj?hs=224\" class=\"primary-button-text\" target=\"_blank\"><![endif]--><span class=\"primary-button-text\" style=\"font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\">Join with Google Meet</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Meeting link</h2></td></tr></table><!-- Use grey text for the Meet link--><div><a style=\"display: inline-block;;color: #70757a; text-decoration: none;\" class=\"secondary-text underline-on-hover\" href=\"https://meet.google.com/smm-szdt-adj?hs=224\">meet.google.com/smm-szdt-adj</a></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Join by phone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(US) </span><a href=\"tel:+1-240-356-1219%3B779644357%23\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+1 240-356-1219</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">PIN: 779644357</span><br><br><a href=\"https://tel.meet/smm-szdt-adj?pin=5984102745704&amp;hs=0\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">More phone numbers</a><br></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250512T170000Z\"></time><time itemprop=\"endDate\" datetime=\"20250512T174500Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Monday May 12, 2025 ⋅ 1pm – 1:45pm (Eastern Time - New York)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:bryan@orqafpv.com\">Bryan Sardoch</a></span><meta itemprop=\"email\" content=\"bryan@orqafpv.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Bryan Sardoch\"/><meta itemprop=\"email\" content=\"bryan@orqafpv.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:timurzima2121@gmail.com\">timurzima2121@gmail.com</a></span><meta itemprop=\"email\" content=\"timurzima2121@gmail.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NmRoamdjcjI2Z3FtMmJiMTY0c2ppYjlrYzhyNjJiYjI2bGk2NGI5bDZjczNhZDFsY2RnbThwMWdjayByaWNrQG1hdnJpeC5vbmU&amp;tok=MTcjYnJ5YW5Ab3JxYWZwdi5jb21mNTJlMDU3N2QwZTRmZWM3MjBkMTI1MDAwMGVjYTIwZGI4YzRlMzQ2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NmRoamdjcjI2Z3FtMmJiMTY0c2ppYjlrYzhyNjJiYjI2bGk2NGI5bDZjczNhZDFsY2RnbThwMWdjayByaWNrQG1hdnJpeC5vbmU&amp;rst=1&amp;tok=MTcjYnJ5YW5Ab3JxYWZwdi5jb21mNTJlMDU3N2QwZTRmZWM3MjBkMTI1MDAwMGVjYTIwZGI4YzRlMzQ2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NmRoamdjcjI2Z3FtMmJiMTY0c2ppYjlrYzhyNjJiYjI2bGk2NGI5bDZjczNhZDFsY2RnbThwMWdjayByaWNrQG1hdnJpeC5vbmU&amp;rst=1&amp;tok=MTcjYnJ5YW5Ab3JxYWZwdi5jb21mNTJlMDU3N2QwZTRmZWM3MjBkMTI1MDAwMGVjYTIwZGI4YzRlMzQ2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NmRoamdjcjI2Z3FtMmJiMTY0c2ppYjlrYzhyNjJiYjI2bGk2NGI5bDZjczNhZDFsY2RnbThwMWdjayByaWNrQG1hdnJpeC5vbmU&amp;rst=2&amp;tok=MTcjYnJ5YW5Ab3JxYWZwdi5jb21mNTJlMDU3N2QwZTRmZWM3MjBkMTI1MDAwMGVjYTIwZGI4YzRlMzQ2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NmRoamdjcjI2Z3FtMmJiMTY0c2ppYjlrYzhyNjJiYjI2bGk2NGI5bDZjczNhZDFsY2RnbThwMWdjayByaWNrQG1hdnJpeC5vbmU&amp;rst=2&amp;tok=MTcjYnJ5YW5Ab3JxYWZwdi5jb21mNTJlMDU3N2QwZTRmZWM3MjBkMTI1MDAwMGVjYTIwZGI4YzRlMzQ2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NmRoamdjcjI2Z3FtMmJiMTY0c2ppYjlrYzhyNjJiYjI2bGk2NGI5bDZjczNhZDFsY2RnbThwMWdjayByaWNrQG1hdnJpeC5vbmU&amp;rst=3&amp;tok=MTcjYnJ5YW5Ab3JxYWZwdi5jb21mNTJlMDU3N2QwZTRmZWM3MjBkMTI1MDAwMGVjYTIwZGI4YzRlMzQ2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NmRoamdjcjI2Z3FtMmJiMTY0c2ppYjlrYzhyNjJiYjI2bGk2NGI5bDZjczNhZDFsY2RnbThwMWdjayByaWNrQG1hdnJpeC5vbmU&amp;rst=3&amp;tok=MTcjYnJ5YW5Ab3JxYWZwdi5jb21mNTJlMDU3N2QwZTRmZWM3MjBkMTI1MDAwMGVjYTIwZGI4YzRlMzQ2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NmRoamdjcjI2Z3FtMmJiMTY0c2ppYjlrYzhyNjJiYjI2bGk2NGI5bDZjczNhZDFsY2RnbThwMWdjayByaWNrQG1hdnJpeC5vbmU&amp;tok=MTcjYnJ5YW5Ab3JxYWZwdi5jb21mNTJlMDU3N2QwZTRmZWM3MjBkMTI1MDAwMGVjYTIwZGI4YzRlMzQ2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NmRoamdjcjI2Z3FtMmJiMTY0c2ppYjlrYzhyNjJiYjI2bGk2NGI5bDZjczNhZDFsY2RnbThwMWdjayByaWNrQG1hdnJpeC5vbmU&amp;tok=MTcjYnJ5YW5Ab3JxYWZwdi5jb21mNTJlMDU3N2QwZTRmZWM3MjBkMTI1MDAwMGVjYTIwZGI4YzRlMzQ2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>\r\n<br>\r\n<font size=\"1\">This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Orqa Holding Group liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted.</font><br>','Defense market place\r\nMonday May 12, 2025 ⋅ 1pm – 1:45pm\r\nEastern Time - New York\r\n\r\nJoin with Google Meet\r\nhttps://meet.google.com/smm-szdt-adj?hs=224\r\n\r\n\r\n	\r\nJoin by phone\r\n(US) +1 240-356-1219\r\nPIN: 779644357\r\n\r\nMore phone numbers\r\nhttps://tel.meet/smm-szdt-adj?pin=5984102745704&hs=0\r\n\r\n\r\nOrganizer\r\nBryan Sardoch\r\nbryan@orqafpv.com\r\n\r\nGuests\r\nBryan Sardoch - organizer\r\nrick@mavrix.one\r\ntimurzima2121@gmail.com\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=NmRoamdjcjI2Z3FtMmJiMTY0c2ppYjlrYzhyNjJiYjI2bGk2NGI5bDZjczNhZDFsY2RnbThwMWdjayByaWNrQG1hdnJpeC5vbmU&tok=MTcjYnJ5YW5Ab3JxYWZwdi5jb21mNTJlMDU3N2QwZTRmZWM3MjBkMTI1MDAwMGVjYTIwZGI4YzRlMzQ2&ctz=America%2FNew_York&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=NmRoamdjcjI2Z3FtMmJiMTY0c2ppYjlrYzhyNjJiYjI2bGk2NGI5bDZjczNhZDFsY2RnbThwMWdjayByaWNrQG1hdnJpeC5vbmU&tok=MTcjYnJ5YW5Ab3JxYWZwdi5jb21mNTJlMDU3N2QwZTRmZWM3MjBkMTI1MDAwMGVjYTIwZGI4YzRlMzQ2&ctz=America%2FNew_York&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n\r\n-- \r\nThis e-mail and the documents attached are confidential and intended solely \r\nfor the addressee; it may also be privileged. If you receive this e-mail in \r\nerror, please notify the sender immediately and destroy it. As its \r\nintegrity cannot be secured on the Internet, the Orqa Holding Group \r\nliability cannot be triggered for the message content. Although the sender \r\nendeavours to maintain a computer virus-free network, the sender does not \r\nwarrant that this transmission is virus-free and will not be liable for any \r\ndamages resulting from any virus transmitted.',0,0,0,0,0,0,'2025-05-12 13:22:09','2025-12-09 19:02:14','2025-12-09 19:02:14','2025-12-09 19:02:14',NULL,NULL,NULL),
(220,4,'<calendar-f37440f8-6a5b-4a44-b966-03a4cf447b7d@google.com>',NULL,NULL,'Updated invitation: SOF Week followup. @ Tue May 13, 2025 12pm - 1pm (EDT) (rick@mavrix.one)','dkovar@ursasecure.com','David Kovar','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v143/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v117/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventRescheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"5bmbp5m18giv4sneho5r9h12ns\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">SOF Week followup.</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&amp;tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250513T160000Z\"></time><time itemprop=\"endDate\" datetime=\"20250513T170000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">Join with Google Meet – Discuss SOF Week observations, roles and possible routes forward.</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"background-color: #e6f4ea;color: #0d5327;padding: 12px 32px; border-radius: 8px;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px;text-align: left;\" class=\"info-bar-inner\"><span style=\"font-weight: 700;\">This event has been updated</span><br/><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Thing/Clock\"><meta itemprop=\"description\" content=\"Time updated\"/></span><div style=\"\"><span style=\"font-weight: 700;\">Changed:</span> time</div></td></tr></tbody></table><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"12\" style=\"height:12px;\"><![endif]--><div style=\"height:12px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:28px;\"><a href=\"https://meet.google.com/ehm-tnap-itj?hs=224\" class=\"primary-button-text\" style=\"display: inline-block;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"display: inline-block\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"background-color: #1a73e8; cursor: auto; padding: 10px 25px; border: none; border-radius: 4px; margin: 0;\" class=\"primary-button\"><!--[if mso]><a href=\"https://meet.google.com/ehm-tnap-itj?hs=224\" class=\"primary-button-text\" target=\"_blank\"><![endif]--><span class=\"primary-button-text\" style=\"font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\">Join with Google Meet</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Meeting link</h2></td></tr></table><!-- Use grey text for the Meet link--><div><a style=\"display: inline-block;;color: #70757a; text-decoration: none;\" class=\"secondary-text underline-on-hover\" href=\"https://meet.google.com/ehm-tnap-itj?hs=224\">meet.google.com/ehm-tnap-itj</a></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Join by phone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(US) </span><a href=\"tel:+1-732-602-5671%3B497423659%23\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+1 732-602-5671</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">PIN: 497423659</span><br><br><a href=\"https://tel.meet/ehm-tnap-itj?pin=7778206985581&amp;hs=0\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">More phone numbers</a><br></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span>Discuss SOF Week observations, roles and possible routes forward.</span><meta itemprop=\"description\" content=\"Discuss SOF Week observations, roles and possible routes forward.\"/></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250513T160000Z\"></time><time itemprop=\"endDate\" datetime=\"20250513T170000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td><td style=\"width: 8px;\"></td><td style=\"padding-top: 2px; padding-bottom: 3px;\"><div style=\"background-color: #1e8e3e; border-radius: 10px; padding: 1px 5px; line-height: 13px;\"><span style=\"color: white; font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; vertical-align: top;\">CHANGED</span></div></td></tr></table><span>Tuesday May 13, 2025 ⋅ 12pm – 1pm (Eastern Time - New York)<br/><span style=\"text-decoration: line-through;\"><del><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;font-size: 0; display: block;\">Old: </span>Tuesday May 13, 2025 ⋅ 11am – 12pm (Eastern Time - New York)</del></span></span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:dkovar@ursasecure.com\">David Kovar</a></span><meta itemprop=\"email\" content=\"dkovar@ursasecure.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"David Kovar\"/><meta itemprop=\"email\" content=\"dkovar@ursasecure.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&amp;tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&amp;tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&amp;tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','This event has been updated\r\nChanged: time\r\n\r\n\r\nSOF Week followup.\r\nTuesday May 13, 2025 ⋅ 12pm – 1pm\r\nEastern Time - New York\r\n\r\nJoin with Google Meet\r\nhttps://meet.google.com/ehm-tnap-itj?hs=224\r\n\r\n\r\n	\r\nJoin by phone\r\n(US) +1 732-602-5671\r\nPIN: 497423659\r\n\r\nMore phone numbers\r\nhttps://tel.meet/ehm-tnap-itj?pin=7778206985581&hs=0\r\n\r\n\r\nDiscuss SOF Week observations, roles and possible routes forward.\r\n\r\nOrganizer\r\nDavid Kovar\r\ndkovar@ursasecure.com\r\n\r\nGuests\r\nDavid Kovar - organizer\r\nrick@mavrix.one\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&ctz=America%2FNew_York&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&ctz=America%2FNew_York&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-05-12 15:25:44','2025-12-09 19:02:14','2025-12-09 19:02:14','2025-12-09 19:02:14',NULL,NULL,NULL),
(221,4,'<CALHF0x3yc5M6ELJNT8+Y+S9bwyN9gmcWvL=+kJQfoxrGrC-RvA@mail.gmail.com>',NULL,NULL,'Re: Updated invitation: SOF Week followup. @ Tue May 13, 2025 12pm - 1pm (EDT) (rick@mavrix.one)','dkovar@ursasecure.com','David Kovar','<html><body><div dir=\"ltr\">\r\n    Rick,</div><div dir=\"ltr\"><br></div><div dir=\"ltr\">I had an unavoidable conflict come up at 11AM. I hope that noon works for you. If not, please let me know and I’ll try for a better time.</div><div dir=\"ltr\"><br></div><div dir=\"ltr\">Regards,</div><div dir=\"ltr\"><br></div><div dir=\"ltr\">-David</div><div dir=\"ltr\"><br clear=\"all\"><div><div class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><span style=\"font-family:Helvetica;font-size:12px;color:rgb(0,0,0)\">David Kovar</span><br style=\"font-family:Helvetica;font-size:12px;color:rgb(0,0,0)\"><span style=\"font-family:Helvetica;font-size:12px;color:rgb(0,0,0)\">CEO, Founder URSA Inc.</span><br style=\"font-family:Helvetica;font-size:12px;color:rgb(0,0,0)\"><span style=\"font-family:Helvetica;font-size:12px;color:rgb(0,0,0)\">Cell: 650-278-1774</span><br></div></div></div><br>\r\n</div>\r\n<br>\r\n<div class=\"gmail_quote\">\r\n    <div dir=\"ltr\" class=\"gmail_attr\">On May 12, 2025 at 11:25:44 AM, David Kovar &lt;<a href=\"mailto:dkovar@ursasecure.com\">dkovar@ursasecure.com</a>&gt; wrote:<br></div>\r\n    <blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\" type=\"cite\">\r\n        <div><div><title></title><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n\r\n    \r\n  \r\n      \r\n  \r\n      \r\n  \r\n    \r\n  \r\n    \r\n  \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n\r\n    \r\n  </div><div class=\"body\"><span itemscope=\"\" itemtype=\"http://schema.org/InformAction\"><span itemprop=\"object\" itemscope=\"\" itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventRescheduled\"><span itemprop=\"publisher\" itemscope=\"\" itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"></span><meta itemprop=\"eventId/googleCalendar\" content=\"5bmbp5m18giv4sneho5r9h12ns\"><span style=\"display:none;font-size:1px;color:#fff;line-height:1px;height:0;max-height:0;width:0;max-width:0;opacity:0;overflow:hidden\" itemprop=\"name\">SOF Week followup.</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&amp;tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250513T160000Z\"></time><time itemprop=\"endDate\" datetime=\"20250513T170000Z\"></time></span><div style=\"display:none;font-size:1px;color:#fff;line-height:1px;height:0;max-height:0;width:0;max-width:0;opacity:0;overflow:hidden\">Join with Google Meet – Discuss SOF Week observations, roles and possible routes forward.</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><div style=\"height:16px\" aria-hidden=\"true\">   </div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%\" class=\"\"><tbody><tr><td style=\"background-color:#e6f4ea;color:#0d5327;padding:12px 32px;border-radius:8px;font-family:Roboto,sans-serif;font-size:14px;line-height:20px;text-align:left\" class=\"info-bar-inner\"><span style=\"font-weight:700\">This event has been updated</span><br><span style=\"display:none\" itemprop=\"about\" itemscope=\"\" itemtype=\"http://schema.org/Thing/Clock\"><meta itemprop=\"description\" content=\"Time updated\"></span><div style=\"\"><span style=\"font-weight:700\">Changed:</span> time</div></td></tr></tbody></table><div style=\"height:12px\" aria-hidden=\"true\">   </div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%\" class=\"\"><tbody><tr><td style=\"border:solid 1px #dadce0;border-radius:8px;direction:rtl;font-size:0;padding:24px 32px;text-align:left;vertical-align:top\" class=\"main-container-inner\"><div class=\"column-per-37 outlook-group-fix\" style=\"font-size:13px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;overflow:hidden;word-wrap:break-word\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"font-size:0;padding:0;text-align:left;word-break:break-word;padding-bottom:28px\"><a href=\"https://meet.google.com/ehm-tnap-itj?hs=224\" class=\"primary-button-text\" style=\"display:inline-block;font-family:&#39;Google Sans&#39;,Roboto,sans-serif;font-size:14px;letter-spacing:0.25px;line-height:20px;text-decoration:none;text-transform:none;word-wrap:break-word;white-space:nowrap;color:#fff;font-weight:700;white-space:normal\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"display:inline-block\"><tbody><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"background-color:#1a73e8;padding:10px 25px;border:none;border-radius:4px;margin:0\" class=\"primary-button\"><span class=\"primary-button-text\" style=\"font-family:&#39;Google Sans&#39;,Roboto,sans-serif;font-size:14px;letter-spacing:0.25px;line-height:20px;text-decoration:none;text-transform:none;word-wrap:break-word;white-space:nowrap;color:#fff;font-weight:700;white-space:normal\">Join with Google Meet</span></td></tr></tbody></table></a></td></tr><tr><td style=\"font-size:0;padding:0;text-align:left;word-break:break-word;padding-bottom:24px\"><div style=\"font-family:Roboto,sans-serif;font-size:14px;line-height:20px;text-align:left\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom:4px\"><tbody><tr><td><h2 class=\"primary-text\" style=\"font-size:14px;color:#3c4043;text-decoration:none;font-weight:700;margin:0;padding:0\">Meeting link</h2></td></tr></tbody></table><div><a style=\"display:inline-block;color:#70757a;text-decoration:none\" class=\"secondary-text underline-on-hover\" href=\"https://meet.google.com/ehm-tnap-itj?hs=224\">meet.google.com/ehm-tnap-itj</a></div></div></td></tr><tr><td style=\"font-size:0;padding:0;text-align:left;word-break:break-word;padding-bottom:24px\"><div style=\"font-family:Roboto,sans-serif;font-size:14px;line-height:20px;text-align:left\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom:4px\"><tbody><tr><td><h2 class=\"primary-text\" style=\"font-size:14px;color:#3c4043;text-decoration:none;font-weight:700;margin:0;padding:0\">Join by phone</h2></td></tr></tbody></table><span class=\"secondary-text\" style=\"color:#70757a;text-decoration:none\">(US) </span><a href=\"tel:+1-732-602-5671%3B497423659%23\" style=\"display:inline-block;color:#1a73e8;text-decoration:none\" target=\"_blank\" class=\"accent-text underline-on-hover\">+1 732-602-5671</a> <br><span class=\"secondary-text\" style=\"color:#70757a;text-decoration:none\">PIN: 497423659</span><br><br><a href=\"https://tel.meet/ehm-tnap-itj?pin=7778206985581&amp;hs=0\" style=\"display:inline-block;color:#1a73e8;text-decoration:none\" target=\"_blank\" class=\"accent-text underline-on-hover\">More phone numbers</a><br></div></td></tr></tbody></table></td></tr></tbody></table></div><div class=\"column-per-63 outlook-group-fix\" style=\"font-size:13px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;overflow:hidden;word-wrap:break-word\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right:32px;padding-left:0;table-layout:fixed\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0;vertical-align:top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout:fixed\"><tbody><tr><td style=\"font-size:0;padding:0;text-align:left;word-break:break-word;padding-bottom:24px\"><div style=\"font-family:Roboto,sans-serif;font-style:normal;font-weight:400;font-size:14px;line-height:20px;letter-spacing:0.2px;color:#3c4043;text-decoration:none\" class=\"primary-text\" role=\"presentation\"><span>Discuss SOF Week observations, roles and possible routes forward.</span><meta itemprop=\"description\" content=\"Discuss SOF Week observations, roles and possible routes forward.\"></div></td></tr><tr><td style=\"font-size:0;padding:0;text-align:left;word-break:break-word;padding-bottom:24px\"><div style=\"font-family:Roboto,sans-serif;font-style:normal;font-weight:400;font-size:14px;line-height:20px;letter-spacing:0.2px;color:#3c4043;text-decoration:none\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250513T160000Z\"></time><time itemprop=\"endDate\" datetime=\"20250513T170000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom:4px\"><tbody><tr><td><h2 class=\"primary-text\" style=\"font-size:14px;color:#3c4043;text-decoration:none;font-weight:700;margin:0;padding:0\">When</h2></td><td style=\"width:8px\"></td><td style=\"padding-top:2px;padding-bottom:3px\"><div style=\"background-color:#1e8e3e;border-radius:10px;padding:1px 5px;line-height:13px\"><span style=\"color:white;font-size:11px;font-weight:700;letter-spacing:0.8px;text-transform:uppercase;vertical-align:top\">CHANGED</span></div></td></tr></tbody></table><span>Tuesday May 13, 2025 ⋅ 12pm – 1pm (Eastern Time - New York)<br><span style=\"text-decoration:line-through\"><del><span style=\"display:none;font-size:1px;color:#fff;line-height:1px;height:0;max-height:0;width:0;max-width:0;opacity:0;overflow:hidden;font-size:0;display:block\">Old: </span>Tuesday May 13, 2025 ⋅ 11am – 12pm (Eastern Time - New York)</del></span></span></div></td></tr><tr><td style=\"font-size:0;padding:0;text-align:left;word-break:break-word;padding-bottom:24px\"><div style=\"font-family:Roboto,sans-serif;font-style:normal;font-weight:400;font-size:14px;line-height:20px;letter-spacing:0.2px;color:#3c4043;text-decoration:none\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom:4px\"><tbody><tr><td><h2 class=\"primary-text\" style=\"font-size:14px;color:#3c4043;text-decoration:none;font-weight:700;margin:0;padding:0\">Guests</h2></td></tr></tbody></table><div style=\"padding-bottom:4px;text-align:left;color:#3c4042\"><div><span itemprop=\"attendee\" itemscope=\"\" itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display:inline-block;color:#3c4043;text-decoration:none\" href=\"mailto:dkovar@ursasecure.com\">David Kovar</a></span><meta itemprop=\"email\" content=\"dkovar@ursasecure.com\"></span><span itemprop=\"organizer\" itemscope=\"\" itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"David Kovar\"><meta itemprop=\"email\" content=\"dkovar@ursasecure.com\"></span><span class=\"secondary-text\" style=\"color:#70757a;text-decoration:none\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope=\"\" itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display:inline-block;color:#3c4043;text-decoration:none\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"></span><span class=\"secondary-text\" style=\"color:#70757a;text-decoration:none\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&amp;tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display:inline-block;color:#1a73e8;text-decoration:none;font-weight:700\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size:0;padding:0;text-align:left;word-break:break-word;padding-bottom:0px\"><div style=\"color:#3c4043;text-decoration:none;font-family:Roboto,sans-serif;font-size:14px;line-height:20px;text-align:left\" class=\"primary-text\"><div><span style=\"font-weight:700\">Reply</span><span class=\"secondary-text\" style=\"color:#70757a;text-decoration:none\"> for <a class=\"secondary-text underline-on-hover\" style=\"display:inline-block;color:#70757a;text-decoration:none\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size:0;padding:0;text-align:left;word-break:break-word;padding-bottom:16px\"><div style=\"font-family:Roboto,sans-serif;font-size:14px;line-height:20px;text-align:left\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate\"><tbody><tr><td style=\"padding-top:8px;padding-left:0;padding-right:12px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border:solid 1px #dadce0;border-radius:16px;border-collapse:separate;font-family:&#39;Google Sans&#39;,Roboto,sans-serif;display:inline-block;margin-right:12px;margin-left:0\"><tbody><tr><td align=\"center\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope=\"\" itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"><span itemprop=\"handler\" itemscope=\"\" itemtype=\"http://schema.org/HttpActionHandler\"><span style=\"color:#5f6367\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight:400;font-family:&#39;Google Sans&#39;,Roboto,sans-serif;color:#5f6368;font-size:14px;line-height:120%;margin:0;text-decoration:none;text-transform:none\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tbody><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding:6px 0;padding-left:16px;padding-right:12px;white-space:nowrap\"><span class=\"grey-button-text\" style=\"font-weight:400;font-family:&#39;Google Sans&#39;,Roboto,sans-serif;color:#5f6368;font-size:14px;line-height:120%;margin:0;text-decoration:none;text-transform:none\">Yes</span></td></tr></tbody></table></a></span></span></span></td><td align=\"center\" role=\"presentation\" style=\"border-left:solid 1px #dadce0;border-right:solid 1px #dadce0\"><span itemprop=\"potentialaction\" itemscope=\"\" itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"><span itemprop=\"handler\" itemscope=\"\" itemtype=\"http://schema.org/HttpActionHandler\"><span style=\"color:#5f6367\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight:400;font-family:&#39;Google Sans&#39;,Roboto,sans-serif;color:#5f6368;font-size:14px;line-height:120%;margin:0;text-decoration:none;text-transform:none\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tbody><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding:6px 12px;white-space:nowrap\"><span class=\"grey-button-text\" style=\"font-weight:400;font-family:&#39;Google Sans&#39;,Roboto,sans-serif;color:#5f6368;font-size:14px;line-height:120%;margin:0;text-decoration:none;text-transform:none\">No</span></td></tr></tbody></table></a></span></span></span></td><td align=\"center\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope=\"\" itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"><span itemprop=\"handler\" itemscope=\"\" itemtype=\"http://schema.org/HttpActionHandler\"><span style=\"color:#5f6367\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight:400;font-family:&#39;Google Sans&#39;,Roboto,sans-serif;color:#5f6368;font-size:14px;line-height:120%;margin:0;text-decoration:none;text-transform:none\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tbody><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding:6px 0;padding-left:12px;padding-right:16px;white-space:nowrap\"><span class=\"grey-button-text\" style=\"font-weight:400;font-family:&#39;Google Sans&#39;,Roboto,sans-serif;color:#5f6368;font-size:14px;line-height:120%;margin:0;text-decoration:none;text-transform:none\">Maybe</span></td></tr></tbody></table></a></span></span></span></td></tr></tbody></table><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&amp;tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display:inline-block;font-weight:400;font-family:&#39;Google Sans&#39;,Roboto,sans-serif;color:#5f6368;font-size:14px;line-height:120%;margin:0;text-decoration:none;text-transform:none\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border:solid 1px #dadce0;border-radius:16px;border-collapse:separate;font-family:&#39;Google Sans&#39;,Roboto,sans-serif\"><tbody><tr><td align=\"center\" role=\"presentation\" style=\"padding:6px 0;padding-left:16px;padding-right:12px;white-space:nowrap;color:#5f6367\"><span class=\"grey-button-text\" style=\"font-weight:400;font-family:&#39;Google Sans&#39;,Roboto,sans-serif;color:#5f6368;font-size:14px;line-height:120%;margin:0;text-decoration:none;text-transform:none\">More options</span></td></tr></tbody></table></a></td></tr></tbody></table></div></td></tr></tbody></table></td></tr></tbody></table></div></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%\" class=\"\"><tbody><tr><td style=\"font-size:0;padding:0;text-align:left;word-break:break-word;padding:4px 12px\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color:#70757a;text-decoration:none;font-family:Roboto,sans-serif;font-size:12px;line-height:16px;text-align:left\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family:Roboto,sans-serif;font-size:12px;line-height:16px;color:#1a73e8;text-decoration:none\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family:Roboto,sans-serif;font-size:12px;line-height:16px;color:#1a73e8;text-decoration:none\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></div></div>\r\n    </blockquote>\r\n</div></body></html>',' Rick,\r\n\r\nI had an unavoidable conflict come up at 11AM. I hope that noon works for\r\nyou. If not, please let me know and I’ll try for a better time.\r\n\r\nRegards,\r\n\r\n-David\r\n\r\nDavid Kovar\r\nCEO, Founder URSA Inc.\r\nCell: 650-278-1774\r\n\r\n\r\nOn May 12, 2025 at 11:25:44 AM, David Kovar <dkovar@ursasecure.com> wrote:\r\n\r\n> SOF Week followup.\r\n> Join with Google Meet – Discuss SOF Week observations, roles and possible\r\n> routes forward.\r\n>\r\n> This event has been updated\r\n> Changed: time\r\n>\r\n> Join with Google Meet <https://meet.google.com/ehm-tnap-itj?hs=224>\r\n>\r\n> Meeting link\r\n> meet.google.com/ehm-tnap-itj <https://meet.google.com/ehm-tnap-itj?hs=224>\r\n> Join by phone(US) +1 732-602-5671 <+1-732-602-5671%3B497423659%23>\r\n> PIN: 497423659\r\n>\r\n> More phone numbers <https://tel.meet/ehm-tnap-itj?pin=7778206985581&hs=0>\r\n> Discuss SOF Week observations, roles and possible routes forward.\r\n> When\r\n> CHANGED\r\n> Tuesday May 13, 2025 ⋅ 12pm – 1pm (Eastern Time - New York)\r\n> Old: Tuesday May 13, 2025 ⋅ 11am – 12pm (Eastern Time - New York)\r\n> Guests\r\n> David Kovar <dkovar@ursasecure.com> - organizer\r\n> rick@mavrix.one\r\n> View all guest info\r\n> <https://calendar.google.com/calendar/event?action=VIEW&eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&ctz=America%2FNew_York&hl=en&es=0>\r\n> Reply for rick@mavrix.one\r\n> Yes\r\n> <https://calendar.google.com/calendar/event?action=RESPOND&eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&rst=1&tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&ctz=America%2FNew_York&hl=en&es=0>\r\n> No\r\n> <https://calendar.google.com/calendar/event?action=RESPOND&eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&rst=2&tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&ctz=America%2FNew_York&hl=en&es=0>\r\n> Maybe\r\n> <https://calendar.google.com/calendar/event?action=RESPOND&eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&rst=3&tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&ctz=America%2FNew_York&hl=en&es=0>\r\n> More options\r\n> <https://calendar.google.com/calendar/event?action=VIEW&eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&ctz=America%2FNew_York&hl=en&es=0>\r\n>\r\n> Invitation from Google Calendar <https://calendar.google.com/calendar/>\r\n>\r\n> You are receiving this email because you are an attendee on the event.\r\n>\r\n> Forwarding this invitation could allow any recipient to send a response to\r\n> the organizer, be added to the guest list, invite others regardless of\r\n> their own invitation status, or modify your RSVP. Learn more\r\n> <https://support.google.com/calendar/answer/37135#forwarding>\r\n>',0,0,0,0,0,0,'2025-05-12 15:26:48','2025-12-09 19:02:14','2025-12-09 19:02:14','2025-12-09 19:02:14',NULL,NULL,NULL),
(222,4,' <CH2PR16MB3431B892E03D7FA1DFF46891FE97A@CH2PR16MB3431.namprd16.prod.outlook.com>',NULL,NULL,'Re: Next steps!','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHi Rick,&nbsp;</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nWe enjoyed meeting with you as well and thanks for circling back - please find below availability and we look forward to speaking:<br>\r\n<br>\r\n(all times EST)<br>\r\nToday:&nbsp; 3-4:30pm<br>\r\nTuesday (5.13): 930-11am || 1130am-1pm<br>\r\nWednesday (5.14): 10am-1130<br>\r\nThursday (5.15): 12-3pm&nbsp;<br>\r\nFriday (5.16): 9am-3pm<br>\r\n<br>\r\n<br>\r\nBest,&nbsp;</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"Signature\">\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA3934a0e6-5ca0-1266-85aa-daee72895de2\" class=\"OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color: rgb(0, 36, 81); margin: 0px;\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA8f9f0346-23ca-332a-ca64-2ddcfccc3988\" class=\"OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color: rgb(0, 36, 81); margin: 0px;\">.com</a></u></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a href=\"https://lithiumbatterycompany.com/\" id=\"OWAa13b9183-e682-d6d1-c7b0-7ba13ea0c8e9\" class=\"OWAAutoLink\" title=\"https://lithiumbatterycompany.com/\" data-auth=\"NotApplicable\" data-linkindex=\"10\" style=\"color: rgb(0, 36, 81); margin: 0px;\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Sunday, May 11, 2025 9:18 AM<br>\r\n<b>To:</b> nathan@lithiumbatterycompany.com &lt;nathan@lithiumbatterycompany.com&gt;; jordan@lithiumbatterycompany.com &lt;jordan@lithiumbatterycompany.com&gt;; ronald@lithiumbatterycompany.com &lt;ronald@lithiumbatterycompany.com&gt;; jarrett@lithiumbatterycompany.com &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Ok, following up again,&nbsp;</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">this time for a request&nbsp;</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">to discuss next steps.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Interested in money? :)</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Let’s set up a time to chat soon.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On May 8, 2025 at 1:33:01 PM, Rick (<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div><span style=\"color:rgb(0,0,0); font-family:UICTFontTextStyleBody; font-size:14px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; background-color:rgb(255,255,255); text-decoration:none; display:inline!important; float:none\">Gentlemen,</span>\r\n<div style=\"color:rgb(0,0,0); font-family:UICTFontTextStyleBody; font-size:14px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none\">\r\n<br>\r\n</div>\r\n<div style=\"color:rgb(0,0,0); font-family:UICTFontTextStyleBody; font-size:14px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none\">\r\nA pleasure meeting you all!</div>\r\n<div style=\"color:rgb(0,0,0); font-family:UICTFontTextStyleBody; font-size:14px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none\">\r\n<br>\r\n</div>\r\n<div style=\"color:rgb(0,0,0); font-family:UICTFontTextStyleBody; font-size:14px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none\">\r\nJust wanted to let you know that</div>\r\n<div style=\"color:rgb(0,0,0); font-family:UICTFontTextStyleBody; font-size:14px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none\">\r\nI am talking to my team<span class=\"x_Apple-converted-space\">&nbsp;</span><a href=\"http://airmail.calendar/2025-05-11 19:00:00 EDT\" style=\"word-break:break-word\">tonight</a></div>\r\n<div style=\"color:rgb(0,0,0); font-family:UICTFontTextStyleBody; font-size:14px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none\">\r\nhere in Treasure Island.&nbsp;</div>\r\n<div style=\"color:rgb(0,0,0); font-family:UICTFontTextStyleBody; font-size:14px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none\">\r\n<br>\r\n</div>\r\n<div style=\"color:rgb(0,0,0); font-family:UICTFontTextStyleBody; font-size:14px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none\">\r\nMy goal for<span class=\"x_Apple-converted-space\">&nbsp;</span><a href=\"http://airmail.calendar/2025-05-11 19:00:00 EDT\" style=\"word-break:break-word\">tonight</a><span class=\"x_Apple-converted-space\">&nbsp;</span>is to</div>\r\n<div style=\"color:rgb(0,0,0); font-family:UICTFontTextStyleBody; font-size:14px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none\">\r\ndiscuss the mavrix&nbsp;portfolio and</div>\r\n<div style=\"color:rgb(0,0,0); font-family:UICTFontTextStyleBody; font-size:14px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none\">\r\nplan out a schedule of calls</div>\r\n<div style=\"color:rgb(0,0,0); font-family:UICTFontTextStyleBody; font-size:14px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none\">\r\nwith you for next steps.&nbsp;</div>\r\n<div style=\"color:rgb(0,0,0); font-family:UICTFontTextStyleBody; font-size:14px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none\">\r\n<br>\r\n</div>\r\n<div style=\"color:rgb(0,0,0); font-family:UICTFontTextStyleBody; font-size:14px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none\">\r\nAgain, I truly enjoyed meeting&nbsp;</div>\r\n<div style=\"color:rgb(0,0,0); font-family:UICTFontTextStyleBody; font-size:14px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none\">\r\nand chatting with you all!&nbsp;</div>\r\n<div style=\"color:rgb(0,0,0); font-family:UICTFontTextStyleBody; font-size:14px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none\">\r\n<br>\r\n</div>\r\n<div style=\"color:rgb(0,0,0); font-family:UICTFontTextStyleBody; font-size:14px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none\">\r\nI’ll be in touch next week!</div>\r\n<div style=\"color:rgb(0,0,0); font-family:UICTFontTextStyleBody; font-size:14px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none\">\r\n<br>\r\n</div>\r\n<div style=\"color:rgb(0,0,0); font-family:UICTFontTextStyleBody; font-size:14px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none\">\r\nAll my best,</div>\r\n<div style=\"color:rgb(0,0,0); font-family:UICTFontTextStyleBody; font-size:14px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none\">\r\nRick</div>\r\n<br class=\"x_Apple-interchange-newline\">\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Hi Rick,\r\n\r\nWe enjoyed meeting with you as well and thanks for circling back - please find below availability and we look forward to speaking:\r\n\r\n(all times EST)\r\nToday:  3-4:30pm\r\nTuesday (5.13): 930-11am || 1130am-1pm\r\nWednesday (5.14): 10am-1130\r\nThursday (5.15): 12-3pm\r\nFriday (5.16): 9am-3pm\r\n\r\n\r\nBest,\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Sunday, May 11, 2025 9:18 AM\r\nTo: nathan@lithiumbatterycompany.com <nathan@lithiumbatterycompany.com>; jordan@lithiumbatterycompany.com <jordan@lithiumbatterycompany.com>; ronald@lithiumbatterycompany.com <ronald@lithiumbatterycompany.com>; jarrett@lithiumbatterycompany.com <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nOk, following up again,\r\nthis time for a request\r\nto discuss next steps.\r\n\r\nInterested in money? :)\r\nLet’s set up a time to chat soon.\r\n\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 8, 2025 at 1:33:01 PM, Rick (rick@mavrix.one<mailto:rick@mavrix.one>) wrote:\r\n\r\nGentlemen,\r\n\r\nA pleasure meeting you all!\r\n\r\nJust wanted to let you know that\r\nI am talking to my team tonight<http://airmail.calendar/2025-05-11%2019:00:00%20EDT>\r\nhere in Treasure Island.\r\n\r\nMy goal for tonight<http://airmail.calendar/2025-05-11%2019:00:00%20EDT> is to\r\ndiscuss the mavrix portfolio and\r\nplan out a schedule of calls\r\nwith you for next steps.\r\n\r\nAgain, I truly enjoyed meeting\r\nand chatting with you all!\r\n\r\nI’ll be in touch next week!\r\n\r\nAll my best,\r\nRick\r\n\r\n',0,0,0,0,0,0,'2025-05-12 18:26:32','2025-12-09 19:02:15','2025-12-09 19:02:15','2025-12-09 19:02:15',NULL,NULL,NULL),
(223,4,'<D0AD2E96-4645-4E08-A24A-6F3E49DCA3B5@bavovna.ai>',NULL,NULL,'Re: SOFWeek intro','alm@bavovna.ai','Arthur McCallum','<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head><body style=\"word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\" class=\"\"><div class=\"\"><div class=\"\"><br class=\"\"><div><br class=\"\"><blockquote type=\"cite\" class=\"\"><div class=\"\">On May 7, 2025, at 8:48 PM, Rick &lt;<a href=\"mailto:rick@mavrix.one\" class=\"\">rick@mavrix.one</a>&gt; wrote:</div><br class=\"Apple-interchange-newline\"><div class=\"\"><div class=\"\">Just sent you a signal message!<div class=\"\">The first of many to come.&nbsp;</div><div class=\"\">Thank you for your time today!</div><div class=\"\">Rick</div><div class=\"\"><br class=\"\"></div><div class=\"\"><br class=\"\"></div><div class=\"\"><br class=\"\"> <br class=\"\"><div class=\"gmail_signature\">\r\n        <title class=\"\"></title>\r\n     \r\n    Rick Mislan, PhD<br class=\"\"><div class=\"\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\" class=\"\">https://mavrix.one</a></div><div class=\"\"><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height: 11px;\" class=\"\"></div>\r\n     \r\n</div><p class=\"gmail_quote\" style=\"\">On May 7, 2025 at 8:16:53 PM, Arthur Mccallum (<a href=\"mailto:alm@bavovna.ai\" class=\"\">alm@bavovna.ai</a>) wrote:</p> <blockquote type=\"cite\" class=\"gmail_quote\"><span class=\"\"><div dir=\"auto\" class=\"\"><div class=\"\"></div><div class=\"\">\r\n\r\n\r\n\r\n\r\n\r\n\r\nHey Rick!\r\n<div dir=\"ltr\" class=\"\"></div>\r\n<div dir=\"ltr\" class=\"\"></div>\r\n<div class=\"\"><br class=\"\"></div>\r\n<div class=\"\">It was a real pleasure to meet you today on the Orqa\r\nyacht.&nbsp;</div>\r\n<div class=\"\"><br class=\"\"></div>\r\n<div class=\"\">I wanted to be sure we’re in touch. &nbsp;You can reach me\r\nhere or on 9172141726, signal or WhatsApp.&nbsp;</div>\r\n<div class=\"\"><br class=\"\"></div>\r\n<div class=\"\">Please tell me what you need from me as we engage.&nbsp;</div>\r\n<div class=\"\"><br class=\"\"></div>\r\n<div class=\"\">Look forward to connecting soon.</div>\r\n<div class=\"\"><br class=\"\"></div>\r\n<div class=\"\">And just in case you haven’t seen the greatest cycling doc of\r\nall time - pls be acquainted with&nbsp;<a href=\"https://youtu.be/zxBTVU9JDrA?si=u1sgMLHcMeEcUKAF\" class=\"\">A Sunday in\r\nHell</a>.&nbsp;</div>\r\n<div class=\"\"><br class=\"\"></div>\r\n<div class=\"\"><br class=\"\"></div>\r\n<div class=\"\">Thank you, sir!&nbsp;</div>\r\n<div class=\"\"><br class=\"\"></div>\r\n<div class=\"\">&nbsp;</div>\r\n\r\n\r\n</div></div></span></blockquote>\r\n\r\n</div></div></div></blockquote></div><br class=\"\"></div></div></body></html>','Hi Rick. \r\n\r\nSomething I threw together this am. I can flesh it out much more\r\n\r\n\r\n\r\n\r\n> On May 7, 2025, at 8:48 PM, Rick <rick@mavrix.one> wrote:\r\n> \r\n> Just sent you a signal message!\r\n> The first of many to come. \r\n> Thank you for your time today!\r\n> Rick\r\n> \r\n> \r\n> \r\n> \r\n> Rick Mislan, PhD\r\n> https://mavrix.one <https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n> \r\n> On May 7, 2025 at 8:16:53 PM, Arthur Mccallum (alm@bavovna.ai <mailto:alm@bavovna.ai>) wrote:\r\n> \r\n>> Hey Rick!\r\n>> \r\n>> It was a real pleasure to meet you today on the Orqa yacht. \r\n>> \r\n>> I wanted to be sure we’re in touch.  You can reach me here or on 9172141726, signal or WhatsApp. \r\n>> \r\n>> Please tell me what you need from me as we engage. \r\n>> \r\n>> Look forward to connecting soon.\r\n>> \r\n>> And just in case you haven’t seen the greatest cycling doc of all time - pls be acquainted with A Sunday in Hell <https://youtu.be/zxBTVU9JDrA?si=u1sgMLHcMeEcUKAF>. \r\n>> \r\n>> \r\n>> Thank you, sir! \r\n>> \r\n>>  ',0,0,0,0,0,0,'2025-05-12 19:41:37','2025-12-09 19:02:15','2025-12-09 19:02:15','2025-12-09 19:02:15',NULL,NULL,NULL),
(224,4,'<calendar-c53a261c-6f1a-47a6-9852-9981aa57c2a7@google.com>',NULL,NULL,'Invitation: LBC | Mavrix1 [Next Steps] @ Tue May 13, 2025 10am - 11am (EDT) (rick@mavrix.one)','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v143/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v117/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation from Jarrett Brownfield\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"af1f2b8f31rph53105qo994br0\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">LBC | Mavrix1 [Next Steps]</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=YWYxZjJiOGYzMXJwaDUzMTA1cW85OTRicjAgcmlja0BtYXZyaXgub25l&amp;tok=MzMjamFycmV0dEBsaXRoaXVtYmF0dGVyeWNvbXBhbnkuY29tYjNjYjJmMjQ0MzJjOTYzNDhiZjJiMzRlMjQyMDQyNDNmYmYwNGZmYQ&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250513T140000Z\"></time><time itemprop=\"endDate\" datetime=\"20250513T150000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">──────────Jarrett Brownfield is inviting you to a scheduled Zoom meeting.Join Zoom Meetinghttps://us06web.zoom.us/j/88994085483?pwd=MI5egkbCF8lJ7aweE04fYSLfb4HDbS.1Meeting ID: 889 9408 5483Passcode: 0</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><div class=\"\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span><p>──────────<br>Jarrett Brownfield is inviting you to a scheduled Zoom meeting.<br>Join Zoom Meeting<br><a href=\"https://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fj%2F88994085483%3Fpwd%3DMI5egkbCF8lJ7aweE04fYSLfb4HDbS.1&amp;sa=D&amp;ust=1747573020000000&amp;usg=AOvVaw2Kv-KcqkLbpPa6V7-eTHQC\" target=\"_blank\">https://us06web.zoom.us/j/88994085483?pwd=MI5egkbCF8lJ7aweE04fYSLfb4HDbS.1</a><br><br>Meeting ID: 889 9408 5483<br>Passcode: 090551<br><br>---<br><br>One tap mobile<br>+13052241968,,88994085483#,,,,*090551# US<br>+13126266799,,88994085483#,,,,*090551# US (Chicago)<br><br>---<br><br>Dial by your location<br>• +1 305 224 1968 US<br>• +1 312 626 6799 US (Chicago)<br>• +1 646 931 3860 US<br>• +1 929 205 6099 US (New York)<br>• +1 301 715 8592 US (Washington DC)<br>• +1 309 205 3325 US<br>• +1 507 473 4847 US<br>• +1 564 217 2000 US<br>• +1 669 444 9171 US<br>• +1 669 900 6833 US (San Jose)<br>• +1 689 278 1000 US<br>• +1 719 359 4580 US<br>• +1 253 205 0468 US<br>• +1 253 215 8782 US (Tacoma)<br>• +1 346 248 7799 US (Houston)<br>• +1 360 209 5623 US<br>• +1 386 347 5053 US<br><br>Meeting ID: 889 9408 5483<br>Passcode: 090551<br><br>Find your local number: <a href=\"https://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fu%2FkceqgwZyI4&amp;sa=D&amp;ust=1747573020000000&amp;usg=AOvVaw1-9otdLgUSPIv7xvfe-K9w\" target=\"_blank\">https://us06web.zoom.us/u/kceqgwZyI4</a><br><br><br>──────────</p></span><meta itemprop=\"description\" content=\"──────────Jarrett Brownfield is inviting you to a scheduled Zoom meeting.Join Zoom Meetinghttps://us06web.zoom.us/j/88994085483?pwd=MI5egkbCF8lJ7aweE04fYSLfb4HDbS.1Meeting ID: 889 9408 5483Passcode: 090551---One tap mobile+13052241968,,88994085483#,,,,*090551# US+13126266799,,88994085483#,,,,*090551# US (Chicago)---Dial by your location• +1 305 224 1968 US• +1 312 626 6799 US (Chicago)• +1 646 931 3860 US• +1 929 205 6099 US (New York)• +1 301 715 8592 US (Washington DC)• +1 309 205 3325 US• +1 507 473 4847 US• +1 564 217 2000 US• +1 669 444 9171 US• +1 669 900 6833 US (San Jose)• +1 689 278 1000 US• +1 719 359 4580 US• +1 253 205 0468 US• +1 253 215 8782 US (Tacoma)• +1 346 248 7799 US (Houston)• +1 360 209 5623 US• +1 386 347 5053 USMeeting ID: 889 9408 5483Passcode: 090551Find your local number: https://us06web.zoom.us/u/kceqgwZyI4──────────\"/></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250513T140000Z\"></time><time itemprop=\"endDate\" datetime=\"20250513T150000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Tuesday May 13, 2025 ⋅ 10am – 11am (Eastern Time - New York)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Location</h2></td></tr></table><span itemprop=\"location\" itemscope itemtype=\"http://schema.org/Place\"><span itemprop=\"name\" class=\"primary-text notranslate\" style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\">https://us06web.zoom.us/j/88994085483?pwd=MI5egkbCF8lJ7aweE04fYSLfb4HDbS.1</span><br/><a href=\"https://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fj%2F88994085483%3Fpwd%3DMI5egkbCF8lJ7aweE04fYSLfb4HDbS.1&amp;sa=D&amp;ust=1747573020000000&amp;usg=AOvVaw2Kv-KcqkLbpPa6V7-eTHQC\" class=\"accent-text underline-on-hover\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" itemprop=\"map\">View map</a></span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jarrett@lithiumbatterycompany.com\">Jarrett Brownfield</a></span><meta itemprop=\"email\" content=\"jarrett@lithiumbatterycompany.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Jarrett Brownfield\"/><meta itemprop=\"email\" content=\"jarrett@lithiumbatterycompany.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jordan@lithiumbatterycompany.com\">Jordan Wroblewski</a></span><meta itemprop=\"email\" content=\"jordan@lithiumbatterycompany.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=YWYxZjJiOGYzMXJwaDUzMTA1cW85OTRicjAgcmlja0BtYXZyaXgub25l&amp;tok=MzMjamFycmV0dEBsaXRoaXVtYmF0dGVyeWNvbXBhbnkuY29tYjNjYjJmMjQ0MzJjOTYzNDhiZjJiMzRlMjQyMDQyNDNmYmYwNGZmYQ&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=YWYxZjJiOGYzMXJwaDUzMTA1cW85OTRicjAgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MzMjamFycmV0dEBsaXRoaXVtYmF0dGVyeWNvbXBhbnkuY29tYjNjYjJmMjQ0MzJjOTYzNDhiZjJiMzRlMjQyMDQyNDNmYmYwNGZmYQ&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=YWYxZjJiOGYzMXJwaDUzMTA1cW85OTRicjAgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MzMjamFycmV0dEBsaXRoaXVtYmF0dGVyeWNvbXBhbnkuY29tYjNjYjJmMjQ0MzJjOTYzNDhiZjJiMzRlMjQyMDQyNDNmYmYwNGZmYQ&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=YWYxZjJiOGYzMXJwaDUzMTA1cW85OTRicjAgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MzMjamFycmV0dEBsaXRoaXVtYmF0dGVyeWNvbXBhbnkuY29tYjNjYjJmMjQ0MzJjOTYzNDhiZjJiMzRlMjQyMDQyNDNmYmYwNGZmYQ&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=YWYxZjJiOGYzMXJwaDUzMTA1cW85OTRicjAgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MzMjamFycmV0dEBsaXRoaXVtYmF0dGVyeWNvbXBhbnkuY29tYjNjYjJmMjQ0MzJjOTYzNDhiZjJiMzRlMjQyMDQyNDNmYmYwNGZmYQ&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=YWYxZjJiOGYzMXJwaDUzMTA1cW85OTRicjAgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MzMjamFycmV0dEBsaXRoaXVtYmF0dGVyeWNvbXBhbnkuY29tYjNjYjJmMjQ0MzJjOTYzNDhiZjJiMzRlMjQyMDQyNDNmYmYwNGZmYQ&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=YWYxZjJiOGYzMXJwaDUzMTA1cW85OTRicjAgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MzMjamFycmV0dEBsaXRoaXVtYmF0dGVyeWNvbXBhbnkuY29tYjNjYjJmMjQ0MzJjOTYzNDhiZjJiMzRlMjQyMDQyNDNmYmYwNGZmYQ&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=YWYxZjJiOGYzMXJwaDUzMTA1cW85OTRicjAgcmlja0BtYXZyaXgub25l&amp;tok=MzMjamFycmV0dEBsaXRoaXVtYmF0dGVyeWNvbXBhbnkuY29tYjNjYjJmMjQ0MzJjOTYzNDhiZjJiMzRlMjQyMDQyNDNmYmYwNGZmYQ&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=YWYxZjJiOGYzMXJwaDUzMTA1cW85OTRicjAgcmlja0BtYXZyaXgub25l&amp;tok=MzMjamFycmV0dEBsaXRoaXVtYmF0dGVyeWNvbXBhbnkuY29tYjNjYjJmMjQ0MzJjOTYzNDhiZjJiMzRlMjQyMDQyNDNmYmYwNGZmYQ&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','LBC | Mavrix1 [Next Steps]\r\nTuesday May 13, 2025 ⋅ 10am – 11am\r\nEastern Time - New York\r\n\r\nLocation\r\nhttps://us06web.zoom.us/j/88994085483?pwd=MI5egkbCF8lJ7aweE04fYSLfb4HDbS.1	\r\nhttps://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fj%2F88994085483%3Fpwd%3DMI5egkbCF8lJ7aweE04fYSLfb4HDbS.1&sa=D&ust=1747573020000000&usg=AOvVaw2Kv-KcqkLbpPa6V7-eTHQC\r\n\r\n\r\n\r\n──────────Jarrett Brownfield is inviting you to a scheduled Zoom  \r\nmeeting.Join Zoom  \r\nMeetinghttps://us06web.zoom.us/j/88994085483?pwd=MI5egkbCF8lJ7aweE04fYSLfb4HDbS.1Meeting  \r\nID: 889 9408 5483Passcode: 090551---One tap  \r\nmobile+13052241968,,88994085483#,,,,*090551#  \r\nUS+13126266799,,88994085483#,,,,*090551# US (Chicago)---Dial by your  \r\nlocation• +1 305 224 1968 US• +1 312 626 6799 US (Chicago)• +1 646 931 3860  \r\nUS• +1 929 205 6099 US (New York)• +1 301 715 8592 US (Washington DC)• +1  \r\n309 205 3325 US• +1 507 473 4847 US• +1 564 217 2000 US• +1 669 444 9171  \r\nUS• +1 669 900 6833 US (San Jose)• +1 689 278 1000 US• +1 719 359 4580 US•  \r\n+1 253 205 0468 US• +1 253 215 8782 US (Tacoma)• +1 346 248 7799 US  \r\n(Houston)• +1 360 209 5623 US• +1 386 347 5053 USMeeting ID: 889 9408  \r\n5483Passcode: 090551Find your local number:  \r\nhttps://us06web.zoom.us/u/kceqgwZyI4──────────\r\n\r\nOrganizer\r\nJarrett Brownfield\r\njarrett@lithiumbatterycompany.com\r\n\r\nGuests\r\nJarrett Brownfield - organizer\r\nrick@mavrix.one\r\nJordan Wroblewski\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=YWYxZjJiOGYzMXJwaDUzMTA1cW85OTRicjAgcmlja0BtYXZyaXgub25l&tok=MzMjamFycmV0dEBsaXRoaXVtYmF0dGVyeWNvbXBhbnkuY29tYjNjYjJmMjQ0MzJjOTYzNDhiZjJiMzRlMjQyMDQyNDNmYmYwNGZmYQ&ctz=America%2FNew_York&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=YWYxZjJiOGYzMXJwaDUzMTA1cW85OTRicjAgcmlja0BtYXZyaXgub25l&tok=MzMjamFycmV0dEBsaXRoaXVtYmF0dGVyeWNvbXBhbnkuY29tYjNjYjJmMjQ0MzJjOTYzNDhiZjJiMzRlMjQyMDQyNDNmYmYwNGZmYQ&ctz=America%2FNew_York&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-05-13 12:57:16','2025-12-09 19:02:16','2025-12-09 19:02:16','2025-12-09 19:02:16',NULL,NULL,NULL),
(225,4,' <CH2PR16MB3431903482CEDF28632D0737FE96A@CH2PR16MB3431.namprd16.prod.outlook.com>',NULL,NULL,'Re: Next steps!','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHi Rick,&nbsp;</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nYes, 10am this morning - I just resent the zoom invite. Look forward to speaking soon</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"Signature\" class=\"elementToProof\">\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWAa99fda94-e056-c619-a196-a33c2ff2877b\" class=\"OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color: rgb(0, 36, 81); margin: 0px;\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA098259f9-2a26-ebbc-a687-62be0f9f5580\" class=\"OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color: rgb(0, 36, 81); margin: 0px;\">.com</a></u></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a href=\"https://lithiumbatterycompany.com/\" id=\"OWA6dd24376-6350-4d35-05a2-83112c570eec\" class=\"OWAAutoLink\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color: rgb(0, 36, 81); margin: 0px;\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<hr style=\"display: inline-block; width: 98%;\">\r\n<div style=\"font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Rick<br>\r\n<b>Sent:</b>&nbsp;Tuesday, May 13, 2025 7:28 AM<br>\r\n<b>To:</b>&nbsp;Jarrett Brownfield<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps! </div>\r\n<div style=\"font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div>Not sure if I responded accurately.&nbsp;</div>\r\n<div>I’m open at 10a today if that works.&nbsp;</div>\r\n<div>Thanks!</div>\r\n<div>Rick</div>\r\n<div><br>\r\n</div>\r\n<div>Rick Mislan, PhD</div>\r\n<div>[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one</div>\r\n<div><img height=\"11\" style=\"height: 11px;\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n<p style=\"color: rgb(0, 0, 0);\">On May 12, 2025 at 2:26:32 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\" id=\"OWA6fe9a5f9-a715-dff3-4833-c48bb98fbcc5\" class=\"OWAAutoLink\" style=\"margin-top: 0px; margin-bottom: 0px;\">jarrett@lithiumbatterycompany.com</a>)\r\n wrote:</p>\r\n<blockquote>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHi Rick,&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nWe enjoyed meeting with you as well and thanks for circling back - please find below availability and we look forward to speaking:<br>\r\n<br>\r\n(all times EST)<br>\r\nToday:&nbsp; 3-4:30pm<br>\r\nTuesday (5.13): 930-11am || 1130am-1pm<br>\r\nWednesday (5.14): 10am-1130<br>\r\nThursday (5.15): 12-3pm&nbsp;<br>\r\nFriday (5.16): 9am-3pm<br>\r\n<br>\r\n<br>\r\nBest,&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"x_Signature\">\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner</span>\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">\r\nI Chief Financial Officer</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA85b348c0-ceb1-fac7-e499-95d5a963cc38\" class=\"x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color: rgb(0, 36, 81); margin: 0px;\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA9b7813f6-bff5-7b2b-9efa-d558ec60b684\" class=\"x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color: rgb(0, 36, 81); margin: 0px;\">.com</a></u></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a href=\"https://lithiumbatterycompany.com/\" id=\"OWA93baa47e-fc9a-556d-beba-278bafbdf824\" class=\"x_OWAAutoLink\" title=\"https://lithiumbatterycompany.com/\" data-auth=\"NotApplicable\" data-linkindex=\"10\" style=\"color: rgb(0, 36, 81); margin: 0px;\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\"><b>From:</b>&nbsp;Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b>&nbsp;Sunday, May 11, 2025 9:18 AM<br>\r\n<b>To:</b>&nbsp;nathan@lithiumbatterycompany.com &lt;nathan@lithiumbatterycompany.com&gt;; jordan@lithiumbatterycompany.com &lt;jordan@lithiumbatterycompany.com&gt;; ronald@lithiumbatterycompany.com &lt;ronald@lithiumbatterycompany.com&gt;; jarrett@lithiumbatterycompany.com &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps!</span>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Ok, following up again,&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">this time for a request&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">to discuss next steps.</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Interested in money? :)</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Let’s set up a time to chat soon.</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Thanks,</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Rick</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Rick Mislan, PhD</div>\r\n<div style=\"direction: ltr;\"><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" id=\"OWA6f2250de-935b-77bd-ce88-2cfb3cbe652e\" class=\"OWAAutoLink\" data-auth=\"NotApplicable\">https://mavrix.one</a></div>\r\n<div style=\"direction: ltr;\"><img height=\"11\" style=\"height: 11px;\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<p style=\"direction: ltr;\">On May 8, 2025 at 1:33:01 PM, Rick (<a href=\"mailto:rick@mavrix.one\" id=\"OWA44b57871-3029-0cf0-fc3a-86d620da512e\" class=\"OWAAutoLink\" style=\"margin-top: 0px; margin-bottom: 0px;\">rick@mavrix.one</a>) wrote:</p>\r\n<blockquote>\r\n<div style=\"direction: ltr; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\n<span style=\"background-color: rgb(255, 255, 255);\">Gentlemen,</span></div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\nA pleasure meeting you all!</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\nJust wanted to let you know that</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\nI am talking to my team <a href=\"http://airmail.calendar/2025-05-11%2019:00:00%20EDT\" id=\"OWA8867e85c-bf8e-41be-d815-e78244229e9c\" class=\"OWAAutoLink\" data-auth=\"NotApplicable\">\r\ntonight</a></div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\nhere in Treasure Island.&nbsp;</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\nMy goal for <a href=\"http://airmail.calendar/2025-05-11%2019:00:00%20EDT\" id=\"OWA7aced99c-5963-164f-8e4a-9d96675a373f\" class=\"OWAAutoLink\" data-auth=\"NotApplicable\">\r\ntonight</a>&nbsp;is to</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\ndiscuss the mavrix&nbsp;portfolio and</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\nplan out a schedule of calls</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\nwith you for next steps.&nbsp;</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\nAgain, I truly enjoyed meeting&nbsp;</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\nand chatting with you all!&nbsp;</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\nI’ll be in touch next week!</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\nAll my best,</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\nRick</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</body>\r\n</html>\r\n','Hi Rick,\r\n\r\nYes, 10am this morning - I just resent the zoom invite. Look forward to speaking soon\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n\r\n________________________________\r\nFrom: Rick\r\nSent: Tuesday, May 13, 2025 7:28 AM\r\nTo: Jarrett Brownfield\r\nSubject: Re: Next steps!\r\n\r\nNot sure if I responded accurately.\r\nI’m open at 10a today if that works.\r\nThanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\n[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one\r\n[X]\r\n\r\nOn May 12, 2025 at 2:26:32 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nWe enjoyed meeting with you as well and thanks for circling back - please find below availability and we look forward to speaking:\r\n\r\n(all times EST)\r\nToday:  3-4:30pm\r\nTuesday (5.13): 930-11am || 1130am-1pm\r\nWednesday (5.14): 10am-1130\r\nThursday (5.15): 12-3pm\r\nFriday (5.16): 9am-3pm\r\n\r\n\r\nBest,\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Sunday, May 11, 2025 9:18 AM\r\nTo: nathan@lithiumbatterycompany.com <nathan@lithiumbatterycompany.com>; jordan@lithiumbatterycompany.com <jordan@lithiumbatterycompany.com>; ronald@lithiumbatterycompany.com <ronald@lithiumbatterycompany.com>; jarrett@lithiumbatterycompany.com <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nOk, following up again,\r\nthis time for a request\r\nto discuss next steps.\r\n\r\nInterested in money? :)\r\nLet’s set up a time to chat soon.\r\n\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 8, 2025 at 1:33:01 PM, Rick (rick@mavrix.one<mailto:rick@mavrix.one>) wrote:\r\n\r\nGentlemen,\r\n\r\nA pleasure meeting you all!\r\n\r\nJust wanted to let you know that\r\nI am talking to my team tonight<http://airmail.calendar/2025-05-11%2019:00:00%20EDT>\r\nhere in Treasure Island.\r\n\r\nMy goal for tonight<http://airmail.calendar/2025-05-11%2019:00:00%20EDT> is to\r\ndiscuss the mavrix portfolio and\r\nplan out a schedule of calls\r\nwith you for next steps.\r\n\r\nAgain, I truly enjoyed meeting\r\nand chatting with you all!\r\n\r\nI’ll be in touch next week!\r\n\r\nAll my best,\r\nRick\r\n\r\n',0,0,0,0,0,0,'2025-05-13 12:58:46','2025-12-09 19:02:16','2025-12-09 19:02:16','2025-12-09 19:02:16',NULL,NULL,NULL),
(226,4,'<calendar-72d0f490-1e4b-41af-bbd9-dbf8020fc412@google.com>',NULL,NULL,'Updated invitation: SOF Week followup. @ Tue May 13, 2025 1:30pm - 2:30pm (EDT) (rick@mavrix.one)','dkovar@ursasecure.com','David Kovar','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v143/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v117/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventRescheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"5bmbp5m18giv4sneho5r9h12ns\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">SOF Week followup.</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&amp;tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250513T173000Z\"></time><time itemprop=\"endDate\" datetime=\"20250513T183000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">Join with Google Meet – Discuss SOF Week observations, roles and possible routes forward.</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"background-color: #e6f4ea;color: #0d5327;padding: 12px 32px; border-radius: 8px;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px;text-align: left;\" class=\"info-bar-inner\"><span style=\"font-weight: 700;\">This event has been updated</span><br/><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Thing/Clock\"><meta itemprop=\"description\" content=\"Time updated\"/></span><div style=\"\"><span style=\"font-weight: 700;\">Changed:</span> time</div></td></tr></tbody></table><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"12\" style=\"height:12px;\"><![endif]--><div style=\"height:12px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:28px;\"><a href=\"https://meet.google.com/ehm-tnap-itj?hs=224\" class=\"primary-button-text\" style=\"display: inline-block;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"display: inline-block\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"background-color: #1a73e8; cursor: auto; padding: 10px 25px; border: none; border-radius: 4px; margin: 0;\" class=\"primary-button\"><!--[if mso]><a href=\"https://meet.google.com/ehm-tnap-itj?hs=224\" class=\"primary-button-text\" target=\"_blank\"><![endif]--><span class=\"primary-button-text\" style=\"font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\">Join with Google Meet</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Meeting link</h2></td></tr></table><!-- Use grey text for the Meet link--><div><a style=\"display: inline-block;;color: #70757a; text-decoration: none;\" class=\"secondary-text underline-on-hover\" href=\"https://meet.google.com/ehm-tnap-itj?hs=224\">meet.google.com/ehm-tnap-itj</a></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Join by phone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(US) </span><a href=\"tel:+1-732-602-5671%3B497423659%23\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+1 732-602-5671</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">PIN: 497423659</span><br><br><a href=\"https://tel.meet/ehm-tnap-itj?pin=7778206985581&amp;hs=0\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">More phone numbers</a><br></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span>Discuss SOF Week observations, roles and possible routes forward.</span><meta itemprop=\"description\" content=\"Discuss SOF Week observations, roles and possible routes forward.\"/></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250513T173000Z\"></time><time itemprop=\"endDate\" datetime=\"20250513T183000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td><td style=\"width: 8px;\"></td><td style=\"padding-top: 2px; padding-bottom: 3px;\"><div style=\"background-color: #1e8e3e; border-radius: 10px; padding: 1px 5px; line-height: 13px;\"><span style=\"color: white; font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; vertical-align: top;\">CHANGED</span></div></td></tr></table><span>Tuesday May 13, 2025 ⋅ 1:30pm – 2:30pm (Eastern Time - New York)<br/><span style=\"text-decoration: line-through;\"><del><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;font-size: 0; display: block;\">Old: </span>Tuesday May 13, 2025 ⋅ 12pm – 1pm (Eastern Time - New York)</del></span></span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:dkovar@ursasecure.com\">David Kovar</a></span><meta itemprop=\"email\" content=\"dkovar@ursasecure.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"David Kovar\"/><meta itemprop=\"email\" content=\"dkovar@ursasecure.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&amp;tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&amp;tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&amp;tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','This event has been updated\r\nChanged: time\r\n\r\n\r\nSOF Week followup.\r\nTuesday May 13, 2025 ⋅ 1:30pm – 2:30pm\r\nEastern Time - New York\r\n\r\nJoin with Google Meet\r\nhttps://meet.google.com/ehm-tnap-itj?hs=224\r\n\r\n\r\n	\r\nJoin by phone\r\n(US) +1 732-602-5671\r\nPIN: 497423659\r\n\r\nMore phone numbers\r\nhttps://tel.meet/ehm-tnap-itj?pin=7778206985581&hs=0\r\n\r\n\r\nDiscuss SOF Week observations, roles and possible routes forward.\r\n\r\nOrganizer\r\nDavid Kovar\r\ndkovar@ursasecure.com\r\n\r\nGuests\r\nDavid Kovar - organizer\r\nrick@mavrix.one\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&ctz=America%2FNew_York&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=NWJtYnA1bTE4Z2l2NHNuZWhvNXI5aDEybnMgcmlja0BtYXZyaXgub25l&tok=MjEjZGtvdmFyQHVyc2FzZWN1cmUuY29tNDA5MGZjZDA3NzJkNTc3OTMwN2IyZWFjMjlhZGNhYWZmNTllNWNmZA&ctz=America%2FNew_York&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-05-13 16:05:55','2025-12-09 19:02:16','2025-12-09 19:02:16','2025-12-09 19:02:16',NULL,NULL,NULL),
(227,4,' <CH2PR16MB3431162B1C37C2D9606B3C6FFE91A@CH2PR16MB3431.namprd16.prod.outlook.com>',NULL,NULL,'Re: Next steps!','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n</head>\r\n<body>\r\n<div>\r\n<div dir=\"ltr\">Rick, apologies for the delay - after our call yesterday we were engaged by the Shell Corporation and today we are receiving an award at the Florida SBDC event so have been in meetings nearly constantly and I fell behind on kicking over the MNDA.\r\n It’s first on my to-do list after this event!</div>\r\n</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"ms-outlook-mobile-signature\">\r\n<div></div>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, May 13, 2025 9:02:50 AM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nGot it! Will be there.. thanks!</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div id=\"x_bloop_sign_1747141266137078016\" class=\"x_bloop_sign\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height:11px\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On May 13, 2025 at 8:59:30 AM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick,&nbsp;</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nYes, 10am this morning - I just resent the zoom invite. Look forward to speaking soon</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_Signature\" class=\"x_elementToProof\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWAa99fda94-e056-c619-a196-a33c2ff2877b\" class=\"x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA098259f9-2a26-ebbc-a687-62be0f9f5580\" class=\"x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" id=\"OWA6dd24376-6350-4d35-05a2-83112c570eec\" class=\"x_OWAAutoLink\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block; width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Rick<br>\r\n<b>Sent:</b>&nbsp;Tuesday, May 13, 2025 7:28 AM<br>\r\n<b>To:</b>&nbsp;Jarrett Brownfield<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps! </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div>Not sure if I responded accurately.&nbsp;</div>\r\n<div>I’m open at 10a today if that works.&nbsp;</div>\r\n<div>Thanks!</div>\r\n<div>Rick</div>\r\n<div><br>\r\n</div>\r\n<div>Rick Mislan, PhD</div>\r\n<div>[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one</div>\r\n<div><img height=\"11\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height:11px\"></div>\r\n<p style=\"color:rgb(0,0,0)\">On May 12, 2025 at 2:26:32 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\" id=\"OWA6fe9a5f9-a715-dff3-4833-c48bb98fbcc5\" class=\"x_OWAAutoLink\" style=\"margin-top:0px; margin-bottom:0px\">jarrett@lithiumbatterycompany.com</a>)\r\n wrote:</p>\r\n<blockquote>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nWe enjoyed meeting with you as well and thanks for circling back - please find below availability and we look forward to speaking:<br>\r\n<br>\r\n(all times EST)<br>\r\nToday:&nbsp; 3-4:30pm<br>\r\nTuesday (5.13): 930-11am || 1130am-1pm<br>\r\nWednesday (5.14): 10am-1130<br>\r\nThursday (5.15): 12-3pm&nbsp;<br>\r\nFriday (5.16): 9am-3pm<br>\r\n<br>\r\n<br>\r\nBest,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_Signature\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner</span>\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">\r\nI Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA85b348c0-ceb1-fac7-e499-95d5a963cc38\" class=\"x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA9b7813f6-bff5-7b2b-9efa-d558ec60b684\" class=\"x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" id=\"OWA93baa47e-fc9a-556d-beba-278bafbdf824\" class=\"x_x_OWAAutoLink\" title=\"https://lithiumbatterycompany.com/\" data-auth=\"NotApplicable\" data-linkindex=\"10\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_appendonsend\"></div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_x_divRplyFwdMsg\" dir=\"ltr\"><span style=\"font-family:Calibri,sans-serif; font-size:11pt; color:rgb(0,0,0)\"><b>From:</b>&nbsp;Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b>&nbsp;Sunday, May 11, 2025 9:18 AM<br>\r\n<b>To:</b>&nbsp;nathan@lithiumbatterycompany.com &lt;nathan@lithiumbatterycompany.com&gt;; jordan@lithiumbatterycompany.com &lt;jordan@lithiumbatterycompany.com&gt;; ronald@lithiumbatterycompany.com &lt;ronald@lithiumbatterycompany.com&gt;; jarrett@lithiumbatterycompany.com &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps!</span>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Ok, following up again,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">this time for a request&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">to discuss next steps.</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Interested in money? :)</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Let’s set up a time to chat soon.</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Thanks,</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Rick Mislan, PhD</div>\r\n<div style=\"direction:ltr\"><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" id=\"OWA6f2250de-935b-77bd-ce88-2cfb3cbe652e\" class=\"x_OWAAutoLink\" data-auth=\"NotApplicable\">https://mavrix.one</a></div>\r\n<div style=\"direction:ltr\"><img height=\"11\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height:11px\"></div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr\">On May 8, 2025 at 1:33:01 PM, Rick (<a href=\"mailto:rick@mavrix.one\" id=\"OWA44b57871-3029-0cf0-fc3a-86d620da512e\" class=\"x_OWAAutoLink\" style=\"margin-top:0px; margin-bottom:0px\">rick@mavrix.one</a>) wrote:</p>\r\n<blockquote>\r\n<div style=\"direction:ltr; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<span style=\"background-color:rgb(255,255,255)\">Gentlemen,</span></div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nA pleasure meeting you all!</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nJust wanted to let you know that</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nI am talking to my team <a href=\"http://airmail.calendar/2025-05-11%2019:00:00%20EDT\" id=\"OWA8867e85c-bf8e-41be-d815-e78244229e9c\" class=\"x_OWAAutoLink\" data-auth=\"NotApplicable\">\r\ntonight</a></div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nhere in Treasure Island.&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nMy goal for <a href=\"http://airmail.calendar/2025-05-11%2019:00:00%20EDT\" id=\"OWA7aced99c-5963-164f-8e4a-9d96675a373f\" class=\"x_OWAAutoLink\" data-auth=\"NotApplicable\">\r\ntonight</a>&nbsp;is to</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\ndiscuss the mavrix&nbsp;portfolio and</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nplan out a schedule of calls</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nwith you for next steps.&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nAgain, I truly enjoyed meeting&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nand chatting with you all!&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nI’ll be in touch next week!</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nAll my best,</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nRick</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Rick, apologies for the delay - after our call yesterday we were engaged by the Shell Corporation and today we are receiving an award at the Florida SBDC event so have been in meetings nearly constantly and I fell behind on kicking over the MNDA. It’s first on my to-do list after this event!\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, May 13, 2025 9:02:50 AM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nGot it! Will be there.. thanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 13, 2025 at 8:59:30 AM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nYes, 10am this morning - I just resent the zoom invite. Look forward to speaking soon\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n\r\n________________________________\r\nFrom: Rick\r\nSent: Tuesday, May 13, 2025 7:28 AM\r\nTo: Jarrett Brownfield\r\nSubject: Re: Next steps!\r\n\r\nNot sure if I responded accurately.\r\nI’m open at 10a today if that works.\r\nThanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\n[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one\r\n[X]\r\n\r\nOn May 12, 2025 at 2:26:32 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nWe enjoyed meeting with you as well and thanks for circling back - please find below availability and we look forward to speaking:\r\n\r\n(all times EST)\r\nToday:  3-4:30pm\r\nTuesday (5.13): 930-11am || 1130am-1pm\r\nWednesday (5.14): 10am-1130\r\nThursday (5.15): 12-3pm\r\nFriday (5.16): 9am-3pm\r\n\r\n\r\nBest,\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Sunday, May 11, 2025 9:18 AM\r\nTo: nathan@lithiumbatterycompany.com <nathan@lithiumbatterycompany.com>; jordan@lithiumbatterycompany.com <jordan@lithiumbatterycompany.com>; ronald@lithiumbatterycompany.com <ronald@lithiumbatterycompany.com>; jarrett@lithiumbatterycompany.com <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nOk, following up again,\r\nthis time for a request\r\nto discuss next steps.\r\n\r\nInterested in money? :)\r\nLet’s set up a time to chat soon.\r\n\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 8, 2025 at 1:33:01 PM, Rick (rick@mavrix.one<mailto:rick@mavrix.one>) wrote:\r\n\r\nGentlemen,\r\n\r\nA pleasure meeting you all!\r\n\r\nJust wanted to let you know that\r\nI am talking to my team tonight<http://airmail.calendar/2025-05-11%2019:00:00%20EDT>\r\nhere in Treasure Island.\r\n\r\nMy goal for tonight<http://airmail.calendar/2025-05-11%2019:00:00%20EDT> is to\r\ndiscuss the mavrix portfolio and\r\nplan out a schedule of calls\r\nwith you for next steps.\r\n\r\nAgain, I truly enjoyed meeting\r\nand chatting with you all!\r\n\r\nI’ll be in touch next week!\r\n\r\nAll my best,\r\nRick\r\n\r\n',0,0,0,0,0,0,'2025-05-14 17:52:36','2025-12-09 19:02:17','2025-12-09 19:02:17','2025-12-09 19:02:17',NULL,NULL,NULL),
(228,4,' <SJ2P223MB1001BF816775D44DDC7E14D8D890A@SJ2P223MB1001.NAMP223.PROD.OUTLOOK.COM>',NULL,NULL,'RE: AEROMARINE UAVs','chip@wetaero.com','Chip Erwin','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:x=\"urn:schemas-microsoft-com:office:excel\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle21\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Thanks for the note. BTW, SOCOM invited me to present both the Hyper-STOL and the LEOPARD but that will only be 20 minutes each and not until July.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">I am in the Czech Republic now. I have designed a new wing for the LEOPARD to make it STOL AND long distance! Totally runway independent.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><img width=\"592\" height=\"215\" style=\"width:6.1666in;height:2.2395in\" id=\"Picture_x0020_1\" src=\"cid:image001.png@01DBC574.5669E3E0\"><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">It will be amazing and have big commercial market as well! SOLO is sure to want it and will sign another CM. This will now be a Collaborative Combat Aircraft (CCA).<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">I am submitting this to a D2P2 that closes in 3 weeks.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Cheers,<o:p></o:p></p>\r\n<p class=\"MsoNormal\">CHIP<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Aeromarine<o:p></o:p></p>\r\n<p class=\"MsoNormal\">Chip W Erwin<o:p></o:p></p>\r\n<p class=\"MsoNormal\">262-408-0124<o:p></o:p></p>\r\n<p class=\"MsoNormal\">chip@wetaero.com<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><a href=\"http://www.aeromarine-lsa.com/\"><span style=\"color:#467886\">www.aeromarine-lsa.com</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Thursday, May 15, 2025 8:24 AM<br>\r\n<b>To:</b> Chip Erwin &lt;chip@wetaero.com&gt;<br>\r\n<b>Subject:</b> Re: AEROMARINE UAVs<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Chip,<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">It was my pleasure to meet such a legend in the aviation field.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">That said, I have your information, and as I continue to meet, I am keeping you on the list of considerations.&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">At this moment, I don’t have a direct connection, but I will keep you and your systems warm.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Again, thank you for your time and consideration.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">All my best,<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div id=\"bloop_sign_1747311667492058112\">\r\n<p class=\"MsoNormal\">Rick Mislan, PhD<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><a href=\"https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one\">https://mavrix.one</a><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><img border=\"0\" id=\"_x0000_i1025\" src=\"file://Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"airmailon\">On May 10, 2025 at 5:38:18<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>AM, Chip Erwin (<a href=\"mailto:chip@wetaero.com\">chip@wetaero.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Thanks for taking a moment o meet with me at SOF week. I attach the Customer Memorandum from my last SBIR submission. Col. Rhett Brown is in Maj. Gen. Josef Kunkels’ office. He\r\n will support a new CM along with Dr. Robert Hancock (AFRL).<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">A new round of SBIRs just opened. Ron has someone that can improve my presentation. &nbsp;I am better with engineering design than pretty graphics as you may have noticed.<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">My two new UAV or piloted designs are a lot more than just images. I am flying the LEOPARD proof of concept aircraft now. And the Hyper-STOL complete design packaged was completed\r\n including performance verifications under an Army Phase I in 2024.<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">The DoD acknowledges that both these aircraft have urgent applications in the INDOPACOM. Both these aircraft are extremely low cost and easily mass produced (&gt;1,000/year). They\r\n will make a difference in both force multiplication and affordable mass.<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">I look forward to your interests.<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Cheers,<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">CHIP<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Aeromarine<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Chip W Erwin<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">262-408-0124<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"mailto:chip@wetaero.com\">chip@wetaero.com</a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"http://www.aeromarine-lsa.com/\">www.aeromarine-lsa.com</a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Rick,\r\n\r\nThanks for the note. BTW, SOCOM invited me to present both the Hyper-STOL and the LEOPARD but that will only be 20 minutes each and not until July.\r\n\r\nI am in the Czech Republic now. I have designed a new wing for the LEOPARD to make it STOL AND long distance! Totally runway independent.\r\n[cid:image001.png@01DBC574.5669E3E0]\r\n\r\nIt will be amazing and have big commercial market as well! SOLO is sure to want it and will sign another CM. This will now be a Collaborative Combat Aircraft (CCA).\r\n\r\nI am submitting this to a D2P2 that closes in 3 weeks.\r\n\r\nCheers,\r\nCHIP\r\n\r\nAeromarine\r\nChip W Erwin\r\n262-408-0124\r\nchip@wetaero.com\r\nwww.aeromarine-lsa.com<http://www.aeromarine-lsa.com/>\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Thursday, May 15, 2025 8:24 AM\r\nTo: Chip Erwin <chip@wetaero.com>\r\nSubject: Re: AEROMARINE UAVs\r\n\r\nChip,\r\nIt was my pleasure to meet such a legend in the aviation field.\r\nThat said, I have your information, and as I continue to meet, I am keeping you on the list of considerations.\r\nAt this moment, I don’t have a direct connection, but I will keep you and your systems warm.\r\nAgain, thank you for your time and consideration.\r\nAll my best,\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 10, 2025 at 5:38:18 AM, Chip Erwin (chip@wetaero.com<mailto:chip@wetaero.com>) wrote:\r\nRick,\r\n\r\nThanks for taking a moment o meet with me at SOF week. I attach the Customer Memorandum from my last SBIR submission. Col. Rhett Brown is in Maj. Gen. Josef Kunkels’ office. He will support a new CM along with Dr. Robert Hancock (AFRL).\r\n\r\nA new round of SBIRs just opened. Ron has someone that can improve my presentation.  I am better with engineering design than pretty graphics as you may have noticed.\r\n\r\nMy two new UAV or piloted designs are a lot more than just images. I am flying the LEOPARD proof of concept aircraft now. And the Hyper-STOL complete design packaged was completed including performance verifications under an Army Phase I in 2024.\r\n\r\nThe DoD acknowledges that both these aircraft have urgent applications in the INDOPACOM. Both these aircraft are extremely low cost and easily mass produced (>1,000/year). They will make a difference in both force multiplication and affordable mass.\r\n\r\nI look forward to your interests.\r\n\r\nCheers,\r\nCHIP\r\n\r\n\r\nAeromarine\r\nChip W Erwin\r\n262-408-0124\r\nchip@wetaero.com<mailto:chip@wetaero.com>\r\nwww.aeromarine-lsa.com<http://www.aeromarine-lsa.com/>\r\n\r\n',0,0,0,0,0,0,'2025-05-15 12:36:06','2025-12-09 19:02:17','2025-12-09 19:02:17','2025-12-09 19:02:17',NULL,NULL,NULL),
(229,4,' <CH2PR16MB3431FD6314C46FEF870D019EFE90A@CH2PR16MB3431.namprd16.prod.outlook.com>',NULL,NULL,'Re: Next steps!','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHi Rick,&nbsp;<br>\r\n<br>\r\nPlease find attached MNDA for your review. If acceptable, please let us know and <a href=\"mailto:nick@lithiumbatterycompany.com\" id=\"OWAAM408789\" class=\"tWKOu mention ms-bgc-nlr ms-fcl-b\">\r\n@Nick Powell</a>&nbsp;will coordinate to send across a docusign for execution. Please let me know if any questions and we look forward to evaluating opportunities with you &amp; your team</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"Signature\" class=\"elementToProof\">\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color: rgb(0, 36, 81); margin: 0px;\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color: rgb(0, 36, 81); margin: 0px;\">.com</a></u></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a href=\"https://lithiumbatterycompany.com/\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color: rgb(0, 36, 81); margin: 0px;\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Thursday, May 15, 2025 8:17 AM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Sounds good.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Hope we can help you sooner rather than later!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">All my best,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On May 14, 2025 at 1:53:19 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div>\r\n<div dir=\"ltr\">Rick, apologies for the delay - after our call yesterday we were engaged by the Shell Corporation and today we are receiving an award at the Florida SBDC event so have been in meetings nearly constantly and I fell behind on kicking over the MNDA.\r\n It’s first on my to-do list after this event!</div>\r\n</div>\r\n<div id=\"x_ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"x_ms-outlook-mobile-signature\">\r\n<div></div>\r\n</div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, May 13, 2025 9:02:50 AM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nGot it! Will be there.. thanks!</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div id=\"x_x_bloop_sign_1747141266137078016\" class=\"x_x_bloop_sign\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_airmail_on\">On May 13, 2025 at 8:59:30 AM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick,&nbsp;</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nYes, 10am this morning - I just resent the zoom invite. Look forward to speaking soon</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_Signature\" class=\"x_x_elementToProof\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWAa99fda94-e056-c619-a196-a33c2ff2877b\" class=\"x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA098259f9-2a26-ebbc-a687-62be0f9f5580\" class=\"x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" id=\"OWA6dd24376-6350-4d35-05a2-83112c570eec\" class=\"x_x_OWAAutoLink\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_appendonsend\"></div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block; width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Rick<br>\r\n<b>Sent:</b>&nbsp;Tuesday, May 13, 2025 7:28 AM<br>\r\n<b>To:</b>&nbsp;Jarrett Brownfield<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps! </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div>Not sure if I responded accurately.&nbsp;</div>\r\n<div>I’m open at 10a today if that works.&nbsp;</div>\r\n<div>Thanks!</div>\r\n<div>Rick</div>\r\n<div><br>\r\n</div>\r\n<div>Rick Mislan, PhD</div>\r\n<div>[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one</div>\r\n<div><img height=\"11\" style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n<p style=\"color:rgb(0,0,0)\">On May 12, 2025 at 2:26:32 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\" id=\"OWA6fe9a5f9-a715-dff3-4833-c48bb98fbcc5\" class=\"x_x_OWAAutoLink\" style=\"margin-top:0px; margin-bottom:0px\">jarrett@lithiumbatterycompany.com</a>)\r\n wrote:</p>\r\n<blockquote>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nWe enjoyed meeting with you as well and thanks for circling back - please find below availability and we look forward to speaking:<br>\r\n<br>\r\n(all times EST)<br>\r\nToday:&nbsp; 3-4:30pm<br>\r\nTuesday (5.13): 930-11am || 1130am-1pm<br>\r\nWednesday (5.14): 10am-1130<br>\r\nThursday (5.15): 12-3pm&nbsp;<br>\r\nFriday (5.16): 9am-3pm<br>\r\n<br>\r\n<br>\r\nBest,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_x_Signature\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner</span>\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">\r\nI Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA85b348c0-ceb1-fac7-e499-95d5a963cc38\" class=\"x_x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA9b7813f6-bff5-7b2b-9efa-d558ec60b684\" class=\"x_x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" id=\"OWA93baa47e-fc9a-556d-beba-278bafbdf824\" class=\"x_x_x_OWAAutoLink\" title=\"https://lithiumbatterycompany.com/\" data-auth=\"NotApplicable\" data-linkindex=\"10\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_x_appendonsend\"></div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_x_x_divRplyFwdMsg\" dir=\"ltr\"><span style=\"font-family:Calibri,sans-serif; font-size:11pt; color:rgb(0,0,0)\"><b>From:</b>&nbsp;Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b>&nbsp;Sunday, May 11, 2025 9:18 AM<br>\r\n<b>To:</b>&nbsp;nathan@lithiumbatterycompany.com &lt;nathan@lithiumbatterycompany.com&gt;; jordan@lithiumbatterycompany.com &lt;jordan@lithiumbatterycompany.com&gt;; ronald@lithiumbatterycompany.com &lt;ronald@lithiumbatterycompany.com&gt;; jarrett@lithiumbatterycompany.com &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps!</span>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Ok, following up again,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">this time for a request&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">to discuss next steps.</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Interested in money? :)</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Let’s set up a time to chat soon.</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Thanks,</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Rick Mislan, PhD</div>\r\n<div style=\"direction:ltr\"><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" id=\"OWA6f2250de-935b-77bd-ce88-2cfb3cbe652e\" class=\"x_x_OWAAutoLink\" data-auth=\"NotApplicable\">https://mavrix.one</a></div>\r\n<div style=\"direction:ltr\"><img height=\"11\" style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr\">On May 8, 2025 at 1:33:01 PM, Rick (<a href=\"mailto:rick@mavrix.one\" id=\"OWA44b57871-3029-0cf0-fc3a-86d620da512e\" class=\"x_x_OWAAutoLink\" style=\"margin-top:0px; margin-bottom:0px\">rick@mavrix.one</a>) wrote:</p>\r\n<blockquote>\r\n<div style=\"direction:ltr; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<span style=\"background-color:rgb(255,255,255)\">Gentlemen,</span></div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nA pleasure meeting you all!</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nJust wanted to let you know that</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nI am talking to my team <a href=\"http://airmail.calendar/2025-05-11%2019:00:00%20EDT\" id=\"OWA8867e85c-bf8e-41be-d815-e78244229e9c\" class=\"x_x_OWAAutoLink\" data-auth=\"NotApplicable\">\r\ntonight</a></div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nhere in Treasure Island.&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nMy goal for <a href=\"http://airmail.calendar/2025-05-11%2019:00:00%20EDT\" id=\"OWA7aced99c-5963-164f-8e4a-9d96675a373f\" class=\"x_x_OWAAutoLink\" data-auth=\"NotApplicable\">\r\ntonight</a>&nbsp;is to</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\ndiscuss the mavrix&nbsp;portfolio and</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nplan out a schedule of calls</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nwith you for next steps.&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nAgain, I truly enjoyed meeting&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nand chatting with you all!&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nI’ll be in touch next week!</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nAll my best,</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nRick</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Hi Rick,\r\n\r\nPlease find attached MNDA for your review. If acceptable, please let us know and @Nick Powell<mailto:nick@lithiumbatterycompany.com> will coordinate to send across a docusign for execution. Please let me know if any questions and we look forward to evaluating opportunities with you & your team\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Thursday, May 15, 2025 8:17 AM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nSounds good.\r\nHope we can help you sooner rather than later!\r\nAll my best,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 14, 2025 at 1:53:19 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nRick, apologies for the delay - after our call yesterday we were engaged by the Shell Corporation and today we are receiving an award at the Florida SBDC event so have been in meetings nearly constantly and I fell behind on kicking over the MNDA. It’s first on my to-do list after this event!\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, May 13, 2025 9:02:50 AM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nGot it! Will be there.. thanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 13, 2025 at 8:59:30 AM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nYes, 10am this morning - I just resent the zoom invite. Look forward to speaking soon\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n\r\n________________________________\r\nFrom: Rick\r\nSent: Tuesday, May 13, 2025 7:28 AM\r\nTo: Jarrett Brownfield\r\nSubject: Re: Next steps!\r\n\r\nNot sure if I responded accurately.\r\nI’m open at 10a today if that works.\r\nThanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\n[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one\r\n[X]\r\n\r\nOn May 12, 2025 at 2:26:32 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nWe enjoyed meeting with you as well and thanks for circling back - please find below availability and we look forward to speaking:\r\n\r\n(all times EST)\r\nToday:  3-4:30pm\r\nTuesday (5.13): 930-11am || 1130am-1pm\r\nWednesday (5.14): 10am-1130\r\nThursday (5.15): 12-3pm\r\nFriday (5.16): 9am-3pm\r\n\r\n\r\nBest,\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Sunday, May 11, 2025 9:18 AM\r\nTo: nathan@lithiumbatterycompany.com <nathan@lithiumbatterycompany.com>; jordan@lithiumbatterycompany.com <jordan@lithiumbatterycompany.com>; ronald@lithiumbatterycompany.com <ronald@lithiumbatterycompany.com>; jarrett@lithiumbatterycompany.com <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nOk, following up again,\r\nthis time for a request\r\nto discuss next steps.\r\n\r\nInterested in money? :)\r\nLet’s set up a time to chat soon.\r\n\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 8, 2025 at 1:33:01 PM, Rick (rick@mavrix.one<mailto:rick@mavrix.one>) wrote:\r\n\r\nGentlemen,\r\n\r\nA pleasure meeting you all!\r\n\r\nJust wanted to let you know that\r\nI am talking to my team tonight<http://airmail.calendar/2025-05-11%2019:00:00%20EDT>\r\nhere in Treasure Island.\r\n\r\nMy goal for tonight<http://airmail.calendar/2025-05-11%2019:00:00%20EDT> is to\r\ndiscuss the mavrix portfolio and\r\nplan out a schedule of calls\r\nwith you for next steps.\r\n\r\nAgain, I truly enjoyed meeting\r\nand chatting with you all!\r\n\r\nI’ll be in touch next week!\r\n\r\nAll my best,\r\nRick\r\n\r\n',0,0,0,0,0,0,'2025-05-15 14:35:41','2025-12-09 19:02:17','2025-12-09 19:02:17','2025-12-09 19:02:17',NULL,NULL,NULL),
(230,4,'<CAB5cvoztB04svtm9aZy=c5mwOU2JcL7ztf7WLM6x+d9Rk6wpFQ@mail.gmail.com>',NULL,NULL,'=?UTF-8?Q?Re=3A_via_Nic_Vandre=2D_Open_Round=E2=80=A6?=','andy@tfvector.com','Andy Yakulis','<div dir=\"ltr\"><div>Rick</div><div><br></div><div>Thank you for reaching out! Absolutely interested in speaking with you especially if you know Nick!</div><div><br></div><div>Not sure what time zone you are in, I&#39;m in MTN so I&#39;ll offer the following:</div><div><br></div><div>Mon 19May:</div><div>4pm</div><div>5pm</div><div><br></div><div>Tues, 20May</div><div>5pm</div><div><br></div><div>Wed, 21May:</div><div>9am</div><div>10am</div><div>3pm</div><div>4pm</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><span><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:#776b6c;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap\">Andy Yakulis</span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap\">, </span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\"><font color=\"#9a000a\">CEO</font></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:#141414;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap\"><a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" style=\"text-decoration:none\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:#1155cc;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;vertical-align:baseline;white-space:pre;white-space:pre-wrap\"><span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\"><img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left:0px;margin-top:0px\"></span></span></a></p><div><br></div></span><div></div><div><br></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, May 15, 2025 at 5:37 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">Andy,</div><div style=\"font-family:Helvetica,Arial;font-size:13px\"><br></div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Nic Vandre said to reach out.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">I’ve followed your work a bit over time, but recently, </div><div style=\"font-family:Helvetica,Arial;font-size:13px\">I&#39;ve come into an opportunity where I think I can help make a difference.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\"><br></div><div style=\"font-family:Helvetica,Arial;font-size:13px\">I’d love to schedule a call sometime this week or next</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">to see how I might help with your open round of investment.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\"><br></div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Please let me know what’s most convenient and then let’s jump on a call!</div><div><br></div>Thank you for your time and consideration,<div>Rick</div><div><br><div class=\"gmail_signature\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><a href=\"https://ww.mislan.com\" target=\"_blank\">https://mislan.com</a><img style=\"height: 11px;\"></div><div><br></div>\r\n     \r\n</div>\r\n\r\n\r\n</div></blockquote></div>','Rick\r\n\r\nThank you for reaching out! Absolutely interested in speaking with you\r\nespecially if you know Nick!\r\n\r\nNot sure what time zone you are in, I\'m in MTN so I\'ll offer the following:\r\n\r\nMon 19May:\r\n4pm\r\n5pm\r\n\r\nTues, 20May\r\n5pm\r\n\r\nWed, 21May:\r\n9am\r\n10am\r\n3pm\r\n4pm\r\n\r\nAndy Yakulis, CEO\r\n\r\nandy@tfvector.com\r\n\r\n<https://www.tfvector.com/>\r\n\r\n\r\n\r\n\r\nOn Thu, May 15, 2025 at 5:37 AM Rick <rick@mavrix.one> wrote:\r\n\r\n> Andy,\r\n>\r\n> Nic Vandre said to reach out.\r\n> I’ve followed your work a bit over time, but recently,\r\n> I\'ve come into an opportunity where I think I can help make a difference.\r\n>\r\n> I’d love to schedule a call sometime this week or next\r\n> to see how I might help with your open round of investment.\r\n>\r\n> Please let me know what’s most convenient and then let’s jump on a call!\r\n>\r\n> Thank you for your time and consideration,\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n> https://mislan.com <https://ww.mislan.com>\r\n>\r\n>',0,0,0,0,0,0,'2025-05-16 04:19:10','2025-12-09 19:02:18','2025-12-09 19:02:18','2025-12-09 19:02:18',NULL,NULL,NULL),
(231,4,'<acaddd3449f14f868ccdce1d5fe542de@docusign.net>',NULL,NULL,'Complete with Docusign: _MAVRIX_MNDA_UrsaSecure_1.docx','dse_NA3@docusign.net','\"David Kovar via Docusign\"','<html lang=3D\"en\"><head><meta http-equiv=3D\"Content-Type\" content=3D\"te=\r\nxt/html; charset=3DUTF-8\"/><meta name=3D\"viewport\" content=3D\"initial-s=\r\ncale=3D1=2E0\"/><meta name=3D\"format-detection\" content=3D\"telephone=3Dn=\r\no\"/><title>EnvelopeActivation</title></head><body style=3D\"background-c=\r\nolor:#EAEAEA;padding:2%;font-family:Helvetica,Arial,Sans Serif;\"><table=\r\n role=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\'=\r\n align=3D\'center\' width=3D\"100%\" dir=3D\"\"><tr><td></td><td width=3D\"640=\r\n\"><table role=3D\"presentation\" style=3D\"mso-table-lspace:0pt;mso-table-=\r\nrspace:0pt;border-collapse:collapse;background-color:#ffffff;max-width:=\r\n640px;\"><tr><td style=3D\"padding:10px 24px;\"><img style=3D\"border:none;=\r\n\" width=3D\"116\" src=3D\"https://docucdn-a=2Eakamaihd=2Enet/olive/images/=\r\n2=2E62=2E0/global-assets/email-templates/email-logo=2Epng\" alt=3D\"DocuS=\r\nign\"/></td></tr><tr><td style=3D\"padding:0px 24px 30px 24px;\"><table ro=\r\nle=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\' wi=\r\ndth=3D\'100%\' align=3D\'center\' style=3D\'background-color:#260559;color:#=\r\nFFFFFF;\'><tr><td style=3D\"padding:28px 36px 36px 36px;border-radius:2px=\r\n;background-color:#260559;color:#FFFFFF;font-size:16px;font-family:Helv=\r\netica,Arial,Sans Serif;width:100%;text-align:center;\" align=3D\"center\">=\r\n<img width=3D\"75\" height=3D\"75\" src=3D\"https://docucdn-a=2Eakamaihd=2En=\r\net/olive/images/2=2E76=2E0/email/iconSignWhite=2Epng\" style=3D\"width:75=\r\npx;height:75px;\" alt=3D\"\" /><table role=3D\'presentation\' border=3D\'0\' c=\r\nellspacing=3D\'0\' cellpadding=3D\'0\' width=3D\'100%\'><tr><td style=3D\"padd=\r\ning-top:24px;font-size:16px;font-family:Helvetica,Arial,Sans Serif;bord=\r\ner:none;text-align:center;color:#FFFFFF\" align=3D\"center\"> David Kovar =\r\nsent you a document to review and sign=2E </td></tr></table><table role=\r\n=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\' widt=\r\nh=3D\'100%\'><tr><td align=3D\"center\" style=3D\"padding-top:30px;\"><div><t=\r\nable cellspacing=3D\"0\" cellpadding=3D\"0\"><tr><td align=3D\"center\" heigh=\r\nt=3D\"44\" style=3D\"font-size:15px;color:#FFFFFF;background-color:#735AFF=\r\n;font-family:Helvetica,Arial,Sans Serif;font-weight:bold;text-align:cen=\r\nter;text-decoration:none;;border-radius:2px;background-color:#735AFF;;d=\r\nisplay: block;\"><a href=3D\"https://na3=2Edocusign=2Enet/Signing/EmailSt=\r\nart=2Easpx?a=3D2b5ee1ed-08c7-4831-9169-479f9a99b952&etti=3D24&acct=3Dc1=\r\na08d76-d00c-420b-b9ae-9336551d2b39&er=3D70a06ce2-53cf-43a0-bb50-6dfa868=\r\n2f299\" style=3D\"font-size:15px;color:#FFFFFF;background-color:#735AFF;f=\r\nont-family:Helvetica,Arial,Sans Serif;font-weight:bold;text-align:cente=\r\nr;text-decoration:none;;border-radius:2px;background-color:#735AFF;;dis=\r\nplay:inline-block\"><span style=3D\"padding:0px 24px;;line-height:44px;\">=\r\n<!--[if mso]>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<![endif]--> REVIEW DO=\r\nCUMENT <!--[if mso]>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<![endif]--></s=\r\npan></a></td></tr></table></div></td></tr></table></td></tr></table></t=\r\nd></tr><tr><td style=3D\"padding:0px 24px 24px 24px;color:#000000;font-s=\r\nize:16px;font-family:Helvetica,Arial,Sans Serif;background-color:white;=\r\n\"><table role=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpaddi=\r\nng=3D\'0\'><tr><td style=3D\"padding-bottom:20px;\"><div style=3D\"font-fami=\r\nly:Helvetica,Arial,Sans Serif;font-weight:bold;line-height:18px;font-si=\r\nze:15px;color:#333333;\"> David Kovar </div><div style=3D\"font-family:He=\r\nlvetica,Arial,Sans Serif;line-height:18px;font-size:15px;color:#666666;=\r\n\">dkovar@ursasecure=2Ecom</div></td></tr></table><span style=3D\"font-si=\r\nze:15px;color:#333333;font-family:Helvetica,Arial,Sans Serif;line-heigh=\r\nt:20px;\">Rick,<br/> Hope this method works for you=2E If not, I can pri=\r\nnt, sign, scan this afternoon=2E<br/> Cheers,<br/> -David<br /></span><=\r\nbr /></td></tr><tr><td style=3D\"padding:0px 24px 12px 24px;background-c=\r\nolor:#ffffff;font-family:Helvetica,Arial,Sans Serif;font-size:11px;colo=\r\nr:#666666;\"></td></tr><tr><td style=3D\"padding:30px 24px 45px 24px;back=\r\nground-color:#EAEAEA;\"><p style=3D\"margin-bottom:1em;font-family:Helvet=\r\nica,Arial,Sans Serif;font-size:13px;color:#666666;line-height:18px;\"><b=\r\n aria-level=3D\"3\" role=3D\"heading\">Do Not Share This Email</b><br/> Thi=\r\ns email contains a secure link to Docusign=2E Please do not share this =\r\nemail, link, or access code with others=2E<br/></p><p style=3D\"margin-b=\r\nottom:1em;font-family:Helvetica,Arial,Sans Serif;font-size:13px;color:#=\r\n666666;line-height:18px;\"><b aria-level=3D\"3\" role=3D\"heading\">Alternat=\r\ne Signing Method</b><br/> Visit Docusign=2Ecom, click \'Access Documents=\r\n\', and enter the security code:<br /> 2B5EE1ED08C748319169479F9A99B9523=\r\n </p><p style=3D\"margin-bottom:1em;font-family:Helvetica,Arial,Sans Ser=\r\nif;font-size:13px;color:#666666;line-height:18px;\"><b aria-level=3D\"3\" =\r\nrole=3D\"heading\">About Docusign</b><br/> Sign documents electronically =\r\nin just minutes=2E It\'s safe, secure, and legally binding=2E Whether yo=\r\nu\'re in an office, at home, on-the-go -- or even across the globe -- Do=\r\ncusign provides a professional trusted solution for Digital Transaction=\r\n Management=E2=84=A2=2E </p><p style=3D\"margin-bottom:1em;font-family:H=\r\nelvetica,Arial,Sans Serif;font-size:13px;color:#666666;line-height:18px=\r\n;\"><b aria-level=3D\"3\" role=3D\"heading\">Questions about the Document?</=\r\nb><br /> If you need to modify the document or have questions about the=\r\n details in the document, please reach out to the sender by emailing th=\r\nem directly=2E<br /><br /><b aria-level=3D\"3\" role=3D\"heading\">Stop rec=\r\neiving this email</b><br /><a href=3D\'https://protect=2Edocusign=2Enet/=\r\nreport-abuse?e=3DAUtomjpFak9GlbPL0zFFi13xtHI2EobXlRGTRyl91O6_u0yPGxciLs=\r\nfbVIgW-5BfIXfWl9EJp6mdGTYiQmHeJqAN4xrN7ha3IAVO9584xSxUslsAdXbnpm7glVdJc=\r\nnvAsJ7wy24Fvh7o0WNfKJhayHUsMADarasupjh2Qdr9V0QOzH73VJdZ0ddWJ8V9PNB94mj8=\r\nqLRIxzdwVpyd_3I2Ob5BUjXw4znOid860DJaanwmJFxF24LrNp_x7p_VZKS6X6b2XBwBsfu=\r\n9FTY0zUTD-pnk4eeQrWuGEyvYCx0NRSPwUyQkTiYI8l067JB3u_CP5-W_yrpkZ5i4Hpyx9l=\r\nvbRdaFyaJqx-LJ0krzzpym2V9D3W80tGZHakIKRCj6ENPFthDgV7lvEze6X_vPzaggIDQrH=\r\nDIelkDeZrv5bwME5V0RPjbmWUncStswbxIc51AMlw&lang=3Den\' style=3D\'color:#24=\r\n63d1;\' >Report this email</a> or read more about <a href=3D\'https://sup=\r\nport=2Edocusign=2Ecom/en/guides/Declining-to-sign-DocuSign-Signer-Guide=\r\n\' style=3D\'color:#2463d1;\' >Declining to sign</a> and <a href=3D\'https:=\r\n//support=2Edocusign=2Ecom/en/articles/How-do-I-manage-my-email-notific=\r\nations\' style=3D\'color:#2463d1;\' >Managing notifications</a>=2E<br /><b=\r\nr /> If you have trouble signing, visit \"<a href=3D\'https://support=2Ed=\r\nocusign=2Ecom/s/articles/How-do-I-sign-a-DocuSign-document-Basic-Signin=\r\ng?language=3Den_US&#38;utm_campaign=3DGBL_XX_DBU_UPS_2211_SignNotificat=\r\nionEmailFooter&#38;utm_medium=3Dproduct&#38;utm_source=3Dpostsend\' styl=\r\ne=3D\'color:#2463d1;\' >How to Sign a Document</a>\" on our <a href=3D\'htt=\r\nps://support=2Edocusign=2Ecom/\' style=3D\'color:#2463d1;\' >Docusign Supp=\r\nort Center</a>, or become part of the <a href=3D\'https://community=2Edo=\r\ncusign=2Ecom/new-member-guide-142?utm_campaign=3DGBL_US_PRD_AWA_2405_Co=\r\nmmunityCTA&#38;utm_medium=3Demail&#38;utm_source=3Dpostsend\' style=3D\'c=\r\nolor:#2463d1;\' >Docusign Community</a> to access tips and guidance from=\r\n peers=2E<br /><br /></p><p style=3D\"margin-bottom:1em;font-family:Helv=\r\netica,Arial,Sans Serif;font-size:13px;color:#666666;line-height:18px;\">=\r\n<a href=3D\"https://www=2Edocusign=2Ecom/features-and-benefits/mobile?ut=\r\nm_campaign=3DGBL_XX_DBU_UPS_2211_SignNotificationEmailFooter&#38;utm_me=\r\ndium=3Dproduct&#38;utm_source=3Dpostsend\" style=3D\"color:#2463d1;\" ><im=\r\ng style=3D\"margin-right:7px;border:none;vertical-align:middle;\" width=3D=\r\n\"18\" height=3D\"18\" src=3D\"https://docucdn-a=2Eakamaihd=2Enet/olive/imag=\r\nes/2=2E62=2E0/global-assets/email-templates/icon-download-app=2Epng\" al=\r\nt=3D\"\" />Download the Docusign App </a></p><p style=3D\"margin-bottom:1e=\r\nm;font-family:Helvetica,Arial,Sans Serif;font-size:13px;color:#666666;l=\r\nine-height:18px;font-size:10px;line-height:14px;\">This message was sent=\r\n to you by David Kovar who is using the Docusign Electronic Signature S=\r\nervice=2E If you would rather not receive email from this sender you ma=\r\ny contact the sender with your request=2E</p></td></tr></table></td><td=\r\n></td></tr></table><span itemscope=3D\"\" itemtype=3D\"http://schema=2Eorg=\r\n/EmailMessage\"><meta itemprop=3D\"text\" content=3D\"David Kovar sent you =\r\na document to review and sign=2E\"/><span itemscope=3D\"\" itemprop=3D\"abo=\r\nut\" itemtype=3D\"http://schema=2Eorg/CreativeWork\"><span itemscope=3D\"\" =\r\nitemprop=3D\"action\" itemtype=3D\"http://schema=2Eorg/ViewAction\"><meta i=\r\ntemprop=3D\"url\" content=3D\"https://na3=2Edocusign=2Enet/Signing/EmailSt=\r\nart=2Easpx?a=3D2b5ee1ed-08c7-4831-9169-479f9a99b952&etti=3D24&acct=3Dc1=\r\na08d76-d00c-420b-b9ae-9336551d2b39&er=3D70a06ce2-53cf-43a0-bb50-6dfa868=\r\n2f299\"/><meta itemprop=3D\"name\" content=3D\"View Documents\"/></span></sp=\r\nan></span></body></html>','EnvelopeActivation=\r\n David Kovar =\r\nsent you a document to review and sign=2E =\r\n REVIEW DO=\r\nCUMENT  David Kovar dkovar@ursasecure=2EcomRick, Hope this method works for you=2E If not, I can pri=\r\nnt, sign, scan this afternoon=2E Cheers, -DavidDo Not Share This Email Thi=\r\ns email contains a secure link to Docusign=2E Please do not share this =\r\nemail, link, or access code with others=2EAlternat=\r\ne Signing Method Visit Docusign=2Ecom, click \'Access Documents=\r\n\', and enter the security code: 2B5EE1ED08C748319169479F9A99B9523=\r\n About Docusign Sign documents electronically =\r\nin just minutes=2E It\'s safe, secure, and legally binding=2E Whether yo=\r\nu\'re in an office, at home, on-the-go -- or even across the globe -- Do=\r\ncusign provides a professional trusted solution for Digital Transaction=\r\n Management=E2=84=A2=2E Questions about the Document? If you need to modify the document or have questions about the=\r\n details in the document, please reach out to the sender by emailing th=\r\nem directly=2EStop rec=\r\neiving this emailReport this email or read more about Declining to sign and Managing notifications=2E If you have trouble signing, visit \"How to Sign a Document\" on our Docusign Supp=\r\nort Center, or become part of the Docusign Community to access tips and guidance from=\r\n peers=2E=\r\nDownload the Docusign App This message was sent=\r\n to you by David Kovar who is using the Docusign Electronic Signature S=\r\nervice=2E If you would rather not receive email from this sender you ma=\r\ny contact the sender with your request=2E',0,0,0,0,0,0,'2025-05-16 14:49:21','2025-12-09 19:02:18','2025-12-09 19:02:18','2025-12-09 19:02:18',NULL,NULL,NULL),
(232,4,'<CANkMA8XDcAchpwv3giJzqedKT-DA-cSRX4pC7tpaPqaFe-f7WQ@mail.gmail.com>',NULL,NULL,'Re: Strategic Logix','avalkenburg@strategic-logix.com','Andrew Valkenburg','<div dir=\"ltr\"><div dir=\"ltr\">Rick,<div><br></div><div>Please see attached.</div><div><br></div><div>We introduced the idea to a few organizations including those you asked about and are waiting to hear back. We meet with each of them on a rotation and will follow up shortly. Two that I&#39;d like you to take a look at is Zeal OTM and North Vector Dynamics. I have pitch decks from both if you ever need them, but they are invaluable partners of ours in the UAS space. Zeal OTM works inside Florida Tech as well and would be a natural connection to Florida Tech Research Institute.</div><div><br></div><div>Andrew</div><div></div></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, May 15, 2025 at 8:47 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">Andrew,</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">I just following up with an NDA. See attached</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Please confirm receipt and then fill in, initial each page, </div><div style=\"font-family:Helvetica,Arial;font-size:13px\">sign the final page, and return when you’re finished.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">I look forward to our next call.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Respectfully,</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Rick</div><div style=\"font-family:Helvetica,Arial;font-size:13px\"><br></div> <div class=\"gmail_signature\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div> <br><p>On May 12, 2025 at 8:08:32 AM, Andrew Valkenburg (<a href=\"mailto:avalkenburg@strategic-logix.com\" target=\"_blank\">avalkenburg@strategic-logix.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"auto\">Hey Rick,</div><div dir=\"auto\"><br></div><div dir=\"auto\">I’m open today until 9AM EST for an intro or discovery call, otherwise Tuesday from 9-11EST works and Friday is pretty free for me. </div><div dir=\"auto\"><br></div><div dir=\"auto\"><br></div><div dir=\"auto\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\">Sincerely,<br><br>Andrew J. Valkenburg<br>Chief Operations Officer | Partner,<br>Strategic Logix<br><br>484-225-9132<br><a href=\"mailto:Avalkenburg@strategic-logix.com\" target=\"_blank\">Avalkenburg@strategic-logix.com</a></div></div></div><div><br></div><div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, May 12, 2025 at 8:05 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">Yes! Let’s talk…pretty open this week.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Let me know what’s best.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Thanks for the follow-up.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Rick</div> <br> <div class=\"gmail_signature\">\r\n         \r\n      \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n      \r\n</div> <br><p>On May 12, 2025 at 8:01:38 AM, Andrew Valkenburg (<a href=\"mailto:avalkenburg@strategic-logix.com\" target=\"_blank\">avalkenburg@strategic-logix.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div>Rick,</div><div><br></div><div>Great meeting you last week. We talked about Strategic Logix&#39;s NDAA Compliant and Blue UAS, made in the USA, Drone Builders Kits and our Modular and Scalable Drone Ecosystem. These have become very popular over the past year or so and we have thousands on open order right now. I am looking forward to talking more if you are still interested in collaborating in any way. </div><div><br></div><div>Our company is only successful due to teaming agreements, partnerships, and collaborations and we are always eager to meet someone new. We actually are a contracting company by design but have really hit the mark on some of our drone solutions inside the DOD. Excited to talk, give me a call or shoot me a note anytime.</div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p><font style=\"color:rgb(0,0,0)\"><b><a href=\"https://d5Fk0J04.na1.hs-sales-engage.com/Ctc/ZY+23284/d5Fk0J04/Jks2-6qcW69sMD-6lZ3nJW1C9lY887HyBKW6D21wy2c_9HvW89wrSb8y-J9KW7CPBBF77W0-HW24SmGJ3p3jMLW1VtT5C90mlClW3jk-MZ3Fb8LsW8QkSvS4n2RDYN1JBMvQh9XcgW4kPFBF3XdQBgW1_rTMP3g903PW6c20-g5YlyctVn6gjK7Ls8cbW58R6sz4xNH_1W11szhh6mx-64N19tyQnr6Tr8W5n2jWr6h6_qyW85W9mH3ntSrqW392dsw8n7TqwW92PdNw7JP8mpf2BxDqM04\" target=\"_blank\">VISIT OUR WEBSITE</a></b></font></p><p><strong><font style=\"color:rgb(0,0,0)\"><br></font></strong></p><p><strong><font style=\"color:rgb(0,0,0)\">Sincerely,</font></strong></p><p><font style=\"color:rgb(0,0,0)\">Andrew Valkenburg<br>Chief Operations Officer, Strategic Logix LLC<br>484-225-9132<br><a rel=\"noopener\">avalkenburg@strategic-logix.com</a></font></p></div></div><div></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p><font color=\"#000000\"><b><a href=\"https://strategic-logix.com\" target=\"_blank\">VISIT OUR WEBSITE</a></b></font></p><p><strong><font color=\"#000000\"><br></font></strong></p><p><strong><font color=\"#000000\">Sincerely,</font></strong></p><p><font color=\"#000000\">Andrew Valkenburg<br>Chief Operations Officer, Strategic Logix LLC<br>484-225-9132<br><a rel=\"noopener\">avalkenburg@strategic-logix.com</a></font></p></div></div><img src=\"https://d5Fk0J04.na1.hs-sales-engage.com/Cto/ZY+23284/d5Fk0J04/R5R8b46GFN8DRvLG2fJj7W25dSRJ3yQyrbW1NtYcc1Xp1cnW1GdpFK1N32clW23gQ6k1YZrDNW3C5Y591T_YtRn1--v6q4W1\" alt=\"\" height=\"1\" width=\"1\" style=\"display: none !important;\"><div></div></div>','Rick,\r\n\r\nPlease see attached.\r\n\r\nWe introduced the idea to a few organizations including those you asked\r\nabout and are waiting to hear back. We meet with each of them on a rotation\r\nand will follow up shortly. Two that I\'d like you to take a look at is Zeal\r\nOTM and North Vector Dynamics. I have pitch decks from both if you ever\r\nneed them, but they are invaluable partners of ours in the UAS space. Zeal\r\nOTM works inside Florida Tech as well and would be a natural connection to\r\nFlorida Tech Research Institute.\r\n\r\nAndrew\r\n\r\nOn Thu, May 15, 2025 at 8:47 AM Rick <rick@mavrix.one> wrote:\r\n\r\n> Andrew,\r\n> I just following up with an NDA. See attached\r\n> Please confirm receipt and then fill in, initial each page,\r\n> sign the final page, and return when you’re finished.\r\n> I look forward to our next call.\r\n> Respectfully,\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On May 12, 2025 at 8:08:32 AM, Andrew Valkenburg (\r\n> avalkenburg@strategic-logix.com) wrote:\r\n>\r\n> Hey Rick,\r\n>\r\n> I’m open today until 9AM EST for an intro or discovery call, otherwise\r\n> Tuesday from 9-11EST works and Friday is pretty free for me.\r\n>\r\n>\r\n> Sincerely,\r\n>\r\n> Andrew J. Valkenburg\r\n> Chief Operations Officer | Partner,\r\n> Strategic Logix\r\n>\r\n> 484-225-9132\r\n> Avalkenburg@strategic-logix.com\r\n>\r\n>\r\n> On Mon, May 12, 2025 at 8:05 AM Rick <rick@mavrix.one> wrote:\r\n>\r\n>> Yes! Let’s talk…pretty open this week.\r\n>> Let me know what’s best.\r\n>> Thanks for the follow-up.\r\n>> Rick\r\n>>\r\n>> Rick Mislan, PhD\r\n>> https://mavrix.one\r\n>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>\r\n>> On May 12, 2025 at 8:01:38 AM, Andrew Valkenburg (\r\n>> avalkenburg@strategic-logix.com) wrote:\r\n>>\r\n>> Rick,\r\n>>\r\n>> Great meeting you last week. We talked about Strategic Logix\'s NDAA\r\n>> Compliant and Blue UAS, made in the USA, Drone Builders Kits and our\r\n>> Modular and Scalable Drone Ecosystem. These have become very popular over\r\n>> the past year or so and we have thousands on open order right now. I am\r\n>> looking forward to talking more if you are still interested in\r\n>> collaborating in any way.\r\n>>\r\n>> Our company is only successful due to teaming agreements, partnerships,\r\n>> and collaborations and we are always eager to meet someone new. We actually\r\n>> are a contracting company by design but have really hit the mark on some of\r\n>> our drone solutions inside the DOD. Excited to talk, give me a call or\r\n>> shoot me a note anytime.\r\n>>\r\n>> --\r\n>>\r\n>> *VISIT OUR WEBSITE\r\n>> <https://d5Fk0J04.na1.hs-sales-engage.com/Ctc/ZY+23284/d5Fk0J04/Jks2-6qcW69sMD-6lZ3nJW1C9lY887HyBKW6D21wy2c_9HvW89wrSb8y-J9KW7CPBBF77W0-HW24SmGJ3p3jMLW1VtT5C90mlClW3jk-MZ3Fb8LsW8QkSvS4n2RDYN1JBMvQh9XcgW4kPFBF3XdQBgW1_rTMP3g903PW6c20-g5YlyctVn6gjK7Ls8cbW58R6sz4xNH_1W11szhh6mx-64N19tyQnr6Tr8W5n2jWr6h6_qyW85W9mH3ntSrqW392dsw8n7TqwW92PdNw7JP8mpf2BxDqM04>*\r\n>>\r\n>>\r\n>> *Sincerely,*\r\n>>\r\n>> Andrew Valkenburg\r\n>> Chief Operations Officer, Strategic Logix LLC\r\n>> 484-225-9132\r\n>> avalkenburg@strategic-logix.com\r\n>>\r\n>>\r\n\r\n-- \r\n\r\n*VISIT OUR WEBSITE <https://strategic-logix.com>*\r\n\r\n\r\n*Sincerely,*\r\n\r\nAndrew Valkenburg\r\nChief Operations Officer, Strategic Logix LLC\r\n484-225-9132\r\navalkenburg@strategic-logix.com',0,0,0,0,0,0,'2025-05-16 18:58:15','2025-12-09 19:02:18','2025-12-09 19:02:18','2025-12-09 19:02:18',NULL,NULL,NULL),
(233,4,'<CAB5cvoySpWaw4R2_92UE_8P2o4zo_fsn8RqXEBDM6WsK=R=xsQ@mail.gmail.com>',NULL,NULL,'=?UTF-8?Q?Re=3A_via_Nic_Vandre=2D_Open_Round=E2=80=A6?=','andy@tfvector.com','Andy Yakulis','<div dir=\"ltr\"><div>Rick,</div><div><br></div><div>Sorry, 4pm EST monday got filled up as we were coordinating. How&#39;s Wed morning? 11am EST?</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><span><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:#776b6c;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap\">Andy Yakulis</span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap\">, </span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\"><font color=\"#9a000a\">CEO</font></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:#141414;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap\"><a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" style=\"text-decoration:none\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:#1155cc;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;vertical-align:baseline;white-space:pre;white-space:pre-wrap\"><span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\"><img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left:0px;margin-top:0px\"></span></span></a></p><div><br></div></span><div></div><div><br></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, May 16, 2025 at 5:49 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div id=\"m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thanks, Andy!</div><div id=\"m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Let’s do your first time slot on Monday at 4p.</div><div id=\"m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">I’m in NY, so EST.</div><div id=\"m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">You want a Zoom/Teams/Meet link?</div><div id=\"m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Appreciate the connect!</div><div id=\"m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Rick</div> <br> <div id=\"m_1319968862344816610bloop_sign_1747396037540008960\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div> <br><p>On May 16, 2025 at 12:20:03 AM, Andy Yakulis (<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div>Rick</div><div><br></div><div>Thank you for reaching out! Absolutely interested in speaking with you especially if you know Nick!</div><div><br></div><div>Not sure what time zone you are in, I&#39;m in MTN so I&#39;ll offer the following:</div><div><br></div><div>Mon 19May:</div><div>4pm</div><div>5pm</div><div><br></div><div>Tues, 20May</div><div>5pm</div><div><br></div><div>Wed, 21May:</div><div>9am</div><div>10am</div><div>3pm</div><div>4pm</div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><span><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(119,107,108);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">Andy Yakulis</span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">, </span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\"><font color=\"#9a000a\">CEO</font></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(20,20,20);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\"><a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" style=\"text-decoration:none\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:rgb(17,85,204);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;vertical-align:baseline;white-space:pre-wrap\"><span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\"><img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left: 0px; margin-top: 0px;\"></span></span></a></p><div><br></div></span><div></div><div><br></div></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, May 15, 2025 at 5:37 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">Andy,</div><div style=\"font-family:Helvetica,Arial;font-size:13px\"><br></div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Nic Vandre said to reach out.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">I’ve followed your work a bit over time, but recently, </div><div style=\"font-family:Helvetica,Arial;font-size:13px\">I&#39;ve come into an opportunity where I think I can help make a difference.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\"><br></div><div style=\"font-family:Helvetica,Arial;font-size:13px\">I’d love to schedule a call sometime this week or next</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">to see how I might help with your open round of investment.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\"><br></div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Please let me know what’s most convenient and then let’s jump on a call!</div><div><br></div>Thank you for your time and consideration,<div>Rick</div><div><br><div class=\"gmail_signature\">\r\n         \r\n      \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><a href=\"https://ww.mislan.com\" target=\"_blank\">https://mislan.com</a><img style=\"height: 11px;\"></div><div><br></div>\r\n      \r\n</div>\r\n\r\n\r\n</div></blockquote></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div>','Rick,\r\n\r\nSorry, 4pm EST monday got filled up as we were coordinating. How\'s Wed\r\nmorning? 11am EST?\r\n\r\nAndy Yakulis, CEO\r\n\r\nandy@tfvector.com\r\n\r\n<https://www.tfvector.com/>\r\n\r\n\r\n\r\n\r\nOn Fri, May 16, 2025 at 5:49 AM Rick <rick@mavrix.one> wrote:\r\n\r\n> Thanks, Andy!\r\n> Let’s do your first time slot on Monday at 4p.\r\n> I’m in NY, so EST.\r\n> You want a Zoom/Teams/Meet link?\r\n> Appreciate the connect!\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On May 16, 2025 at 12:20:03 AM, Andy Yakulis (andy@tfvector.com) wrote:\r\n>\r\n> Rick\r\n>\r\n> Thank you for reaching out! Absolutely interested in speaking with you\r\n> especially if you know Nick!\r\n>\r\n> Not sure what time zone you are in, I\'m in MTN so I\'ll offer the following:\r\n>\r\n> Mon 19May:\r\n> 4pm\r\n> 5pm\r\n>\r\n> Tues, 20May\r\n> 5pm\r\n>\r\n> Wed, 21May:\r\n> 9am\r\n> 10am\r\n> 3pm\r\n> 4pm\r\n>\r\n> Andy Yakulis, CEO\r\n>\r\n> andy@tfvector.com\r\n>\r\n> <https://www.tfvector.com/>\r\n>\r\n>\r\n>\r\n>\r\n> On Thu, May 15, 2025 at 5:37 AM Rick <rick@mavrix.one> wrote:\r\n>\r\n>> Andy,\r\n>>\r\n>> Nic Vandre said to reach out.\r\n>> I’ve followed your work a bit over time, but recently,\r\n>> I\'ve come into an opportunity where I think I can help make a difference.\r\n>>\r\n>> I’d love to schedule a call sometime this week or next\r\n>> to see how I might help with your open round of investment.\r\n>>\r\n>> Please let me know what’s most convenient and then let’s jump on a call!\r\n>>\r\n>> Thank you for your time and consideration,\r\n>> Rick\r\n>>\r\n>> Rick Mislan, PhD\r\n>> https://mavrix.one\r\n>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>> https://mislan.com <https://ww.mislan.com>\r\n>>\r\n>>',0,0,0,0,0,0,'2025-05-17 00:54:45','2025-12-09 19:02:19','2025-12-09 19:02:19','2025-12-09 19:02:19',NULL,NULL,NULL),
(234,4,'<CANkMA8VbT3qbQAaTQA_kMACPr6X0i1DtKskbbYcenmb=Ck0ksA@mail.gmail.com>',NULL,NULL,'Re: Strategic Logix','avalkenburg@strategic-logix.com','Andrew Valkenburg','<div dir=\"auto\">Awesome, sounds good.</div><div dir=\"auto\"><br></div><div dir=\"auto\">I planned an impromptu trip to Xponential next week, will you be there?</div><div dir=\"auto\">Either way, I’m free for the most on Thursday and Friday for a call. <br clear=\"all\"><br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\">Sincerely,<br><br>Andrew J. Valkenburg<br>Chief Operations Officer | Partner,<br>Strategic Logix<br><br>484-225-9132<br><a href=\"mailto:Avalkenburg@strategic-logix.com\">Avalkenburg@strategic-logix.com</a></div></div></div><div><br></div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Sat, May 17, 2025 at 3:07 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;padding-left:1ex;border-left-color:rgb(204,204,204)\">\r\n    <div id=\"m_-8122750652460477267bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thank you, I’ll send back the completed version soon.</div><div id=\"m_-8122750652460477267bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Schedule for a next call?</div><div id=\"m_-8122750652460477267bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Let me know.</div><div id=\"m_-8122750652460477267bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thanks!</div><div id=\"m_-8122750652460477267bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Rick</div> <br> <div id=\"m_-8122750652460477267bloop_sign_1747508733864720896\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div> <br><p>On May 16, 2025 at 2:59:12 PM, Andrew Valkenburg (<a href=\"mailto:avalkenburg@strategic-logix.com\" target=\"_blank\">avalkenburg@strategic-logix.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div dir=\"ltr\">Rick,<div><br></div><div>Please see attached.</div><div><br></div><div>We introduced the idea to a few organizations including those you asked about and are waiting to hear back. We meet with each of them on a rotation and will follow up shortly. Two that I&#39;d like you to take a look at is Zeal OTM and North Vector Dynamics. I have pitch decks from both if you ever need them, but they are invaluable partners of ours in the UAS space. Zeal OTM works inside Florida Tech as well and would be a natural connection to Florida Tech Research Institute.</div><div><br></div><div>Andrew</div><div></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, May 15, 2025 at 8:47 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;padding-left:1ex;border-left-color:rgb(204,204,204)\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">Andrew,</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">I just following up with an NDA. See attached</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Please confirm receipt and then fill in, initial each page, </div><div style=\"font-family:Helvetica,Arial;font-size:13px\">sign the final page, and return when you’re finished.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">I look forward to our next call.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Respectfully,</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Rick</div><div style=\"font-family:Helvetica,Arial;font-size:13px\"><br></div> <div class=\"gmail_signature\">\r\n         \r\n      \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n      \r\n</div> <br><p>On May 12, 2025 at 8:08:32 AM, Andrew Valkenburg (<a href=\"mailto:avalkenburg@strategic-logix.com\" target=\"_blank\">avalkenburg@strategic-logix.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"auto\">Hey Rick,</div><div dir=\"auto\"><br></div><div dir=\"auto\">I’m open today until 9AM EST for an intro or discovery call, otherwise Tuesday from 9-11EST works and Friday is pretty free for me. </div><div dir=\"auto\"><br></div><div dir=\"auto\"><br></div><div dir=\"auto\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\">Sincerely,<br><br>Andrew J. Valkenburg<br>Chief Operations Officer | Partner,<br>Strategic Logix<br><br>484-225-9132<br><a href=\"mailto:Avalkenburg@strategic-logix.com\" target=\"_blank\">Avalkenburg@strategic-logix.com</a></div></div></div><div><br></div><div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, May 12, 2025 at 8:05 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;padding-left:1ex;border-left-color:rgb(204,204,204)\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">Yes! Let’s talk…pretty open this week.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Let me know what’s best.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Thanks for the follow-up.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Rick</div> <br> <div class=\"gmail_signature\">\r\n          \r\n       \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n       \r\n</div> <br><p>On May 12, 2025 at 8:01:38 AM, Andrew Valkenburg (<a href=\"mailto:avalkenburg@strategic-logix.com\" target=\"_blank\">avalkenburg@strategic-logix.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div>Rick,</div><div><br></div><div>Great meeting you last week. We talked about Strategic Logix&#39;s NDAA Compliant and Blue UAS, made in the USA, Drone Builders Kits and our Modular and Scalable Drone Ecosystem. These have become very popular over the past year or so and we have thousands on open order right now. I am looking forward to talking more if you are still interested in collaborating in any way. </div><div><br></div><div>Our company is only successful due to teaming agreements, partnerships, and collaborations and we are always eager to meet someone new. We actually are a contracting company by design but have really hit the mark on some of our drone solutions inside the DOD. Excited to talk, give me a call or shoot me a note anytime.</div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p><font style=\"color:rgb(0,0,0)\"><b><a href=\"https://d5Fk0J04.na1.hs-sales-engage.com/Ctc/ZY+23284/d5Fk0J04/Jks2-6qcW69sMD-6lZ3nJW1C9lY887HyBKW6D21wy2c_9HvW89wrSb8y-J9KW7CPBBF77W0-HW24SmGJ3p3jMLW1VtT5C90mlClW3jk-MZ3Fb8LsW8QkSvS4n2RDYN1JBMvQh9XcgW4kPFBF3XdQBgW1_rTMP3g903PW6c20-g5YlyctVn6gjK7Ls8cbW58R6sz4xNH_1W11szhh6mx-64N19tyQnr6Tr8W5n2jWr6h6_qyW85W9mH3ntSrqW392dsw8n7TqwW92PdNw7JP8mpf2BxDqM04\" target=\"_blank\">VISIT OUR WEBSITE</a></b></font></p><p><strong><font style=\"color:rgb(0,0,0)\"><br></font></strong></p><p><strong><font style=\"color:rgb(0,0,0)\">Sincerely,</font></strong></p><p><font style=\"color:rgb(0,0,0)\">Andrew Valkenburg<br>Chief Operations Officer, Strategic Logix LLC<br>484-225-9132<br><a rel=\"noopener\">avalkenburg@strategic-logix.com</a></font></p></div></div><div></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p><font style=\"color:rgb(0,0,0)\"><b><a href=\"https://strategic-logix.com\" target=\"_blank\">VISIT OUR WEBSITE</a></b></font></p><p><strong><font style=\"color:rgb(0,0,0)\"><br></font></strong></p><p><strong><font style=\"color:rgb(0,0,0)\">Sincerely,</font></strong></p><p><font style=\"color:rgb(0,0,0)\">Andrew Valkenburg<br>Chief Operations Officer, Strategic Logix LLC<br>484-225-9132<br><a rel=\"noopener\">avalkenburg@strategic-logix.com</a></font></p></div></div><img src=\"https://d5Fk0J04.na1.hs-sales-engage.com/Cto/ZY+23284/d5Fk0J04/R5R8b46GFN8DRvLG2fJj7W25dSRJ3yQyrbW1NtYcc1Xp1cnW1GdpFK1N32clW23gQ6k1YZrDNW3C5Y591T_YtRn1--v6q4W1\" alt=\"\" height=\"1\" width=\"1\" style=\"display: none !important;\"><div></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div></div>','Awesome, sounds good.\r\n\r\nI planned an impromptu trip to Xponential next week, will you be there?\r\nEither way, I’m free for the most on Thursday and Friday for a call.\r\n\r\nSincerely,\r\n\r\nAndrew J. Valkenburg\r\nChief Operations Officer | Partner,\r\nStrategic Logix\r\n\r\n484-225-9132\r\nAvalkenburg@strategic-logix.com\r\n\r\n\r\nOn Sat, May 17, 2025 at 3:07 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> Thank you, I’ll send back the completed version soon.\r\n> Schedule for a next call?\r\n> Let me know.\r\n> Thanks!\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On May 16, 2025 at 2:59:12 PM, Andrew Valkenburg (\r\n> avalkenburg@strategic-logix.com) wrote:\r\n>\r\n> Rick,\r\n>\r\n> Please see attached.\r\n>\r\n> We introduced the idea to a few organizations including those you asked\r\n> about and are waiting to hear back. We meet with each of them on a rotation\r\n> and will follow up shortly. Two that I\'d like you to take a look at is Zeal\r\n> OTM and North Vector Dynamics. I have pitch decks from both if you ever\r\n> need them, but they are invaluable partners of ours in the UAS space. Zeal\r\n> OTM works inside Florida Tech as well and would be a natural connection to\r\n> Florida Tech Research Institute.\r\n>\r\n> Andrew\r\n>\r\n> On Thu, May 15, 2025 at 8:47 AM Rick <rick@mavrix.one> wrote:\r\n>\r\n>> Andrew,\r\n>> I just following up with an NDA. See attached\r\n>> Please confirm receipt and then fill in, initial each page,\r\n>> sign the final page, and return when you’re finished.\r\n>> I look forward to our next call.\r\n>> Respectfully,\r\n>> Rick\r\n>>\r\n>> Rick Mislan, PhD\r\n>> https://mavrix.one\r\n>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>\r\n>> On May 12, 2025 at 8:08:32 AM, Andrew Valkenburg (\r\n>> avalkenburg@strategic-logix.com) wrote:\r\n>>\r\n>> Hey Rick,\r\n>>\r\n>> I’m open today until 9AM EST for an intro or discovery call, otherwise\r\n>> Tuesday from 9-11EST works and Friday is pretty free for me.\r\n>>\r\n>>\r\n>> Sincerely,\r\n>>\r\n>> Andrew J. Valkenburg\r\n>> Chief Operations Officer | Partner,\r\n>> Strategic Logix\r\n>>\r\n>> 484-225-9132\r\n>> Avalkenburg@strategic-logix.com\r\n>>\r\n>>\r\n>> On Mon, May 12, 2025 at 8:05 AM Rick <rick@mavrix.one> wrote:\r\n>>\r\n>>> Yes! Let’s talk…pretty open this week.\r\n>>> Let me know what’s best.\r\n>>> Thanks for the follow-up.\r\n>>> Rick\r\n>>>\r\n>>> Rick Mislan, PhD\r\n>>> https://mavrix.one\r\n>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>\r\n>>> On May 12, 2025 at 8:01:38 AM, Andrew Valkenburg (\r\n>>> avalkenburg@strategic-logix.com) wrote:\r\n>>>\r\n>>> Rick,\r\n>>>\r\n>>> Great meeting you last week. We talked about Strategic Logix\'s NDAA\r\n>>> Compliant and Blue UAS, made in the USA, Drone Builders Kits and our\r\n>>> Modular and Scalable Drone Ecosystem. These have become very popular over\r\n>>> the past year or so and we have thousands on open order right now. I am\r\n>>> looking forward to talking more if you are still interested in\r\n>>> collaborating in any way.\r\n>>>\r\n>>> Our company is only successful due to teaming agreements, partnerships,\r\n>>> and collaborations and we are always eager to meet someone new. We actually\r\n>>> are a contracting company by design but have really hit the mark on some of\r\n>>> our drone solutions inside the DOD. Excited to talk, give me a call or\r\n>>> shoot me a note anytime.\r\n>>>\r\n>>> --\r\n>>>\r\n>>> *VISIT OUR WEBSITE\r\n>>> <https://d5Fk0J04.na1.hs-sales-engage.com/Ctc/ZY+23284/d5Fk0J04/Jks2-6qcW69sMD-6lZ3nJW1C9lY887HyBKW6D21wy2c_9HvW89wrSb8y-J9KW7CPBBF77W0-HW24SmGJ3p3jMLW1VtT5C90mlClW3jk-MZ3Fb8LsW8QkSvS4n2RDYN1JBMvQh9XcgW4kPFBF3XdQBgW1_rTMP3g903PW6c20-g5YlyctVn6gjK7Ls8cbW58R6sz4xNH_1W11szhh6mx-64N19tyQnr6Tr8W5n2jWr6h6_qyW85W9mH3ntSrqW392dsw8n7TqwW92PdNw7JP8mpf2BxDqM04>*\r\n>>>\r\n>>>\r\n>>> *Sincerely,*\r\n>>>\r\n>>> Andrew Valkenburg\r\n>>> Chief Operations Officer, Strategic Logix LLC\r\n>>> 484-225-9132\r\n>>> avalkenburg@strategic-logix.com\r\n>>>\r\n>>>\r\n>\r\n> --\r\n>\r\n> *VISIT OUR WEBSITE <https://strategic-logix.com>*\r\n>\r\n>\r\n> *Sincerely,*\r\n>\r\n> Andrew Valkenburg\r\n> Chief Operations Officer, Strategic Logix LLC\r\n> 484-225-9132\r\n> avalkenburg@strategic-logix.com\r\n>\r\n>',0,0,0,0,0,0,'2025-05-17 19:08:51','2025-12-09 19:02:19','2025-12-09 19:02:19','2025-12-09 19:02:19',NULL,NULL,NULL),
(235,4,'<CANkMA8WCLb0iCV-LFCyXwc6cZaFt9oPP+UPwS=+Fh28z1WT4dg@mail.gmail.com>',NULL,NULL,'Re: Strategic Logix','avalkenburg@strategic-logix.com','Andrew Valkenburg','<div dir=\"auto\">Received. Yes Thursday morning works. How about 0900 Thursday EST?<br clear=\"all\"><br clear=\"all\"><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\">Sincerely,<br><br>Andrew J. Valkenburg<br>Chief Operations Officer | Partner,<br>Strategic Logix<br><br>484-225-9132<br><a href=\"mailto:Avalkenburg@strategic-logix.com\">Avalkenburg@strategic-logix.com</a></div></div></div><div><br></div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Sat, May 17, 2025 at 3:14 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;padding-left:1ex;border-left-color:rgb(204,204,204)\">\r\n    <div id=\"m_7940640070924317952bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">No, I am not. Love to hear about it though.</div><div id=\"m_7940640070924317952bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thursday morning?</div><div id=\"m_7940640070924317952bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">See attached - confirm receipt.</div> <div><br></div>Thanks,<div></div><div>Rick<br> <div id=\"m_7940640070924317952bloop_sign_1747509133581437952\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div> <br><p>On May 17, 2025 at 3:09:44 PM, Andrew Valkenburg (<a href=\"mailto:avalkenburg@strategic-logix.com\" target=\"_blank\">avalkenburg@strategic-logix.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"auto\">Awesome, sounds good.</div><div dir=\"auto\"><br></div><div dir=\"auto\">I planned an impromptu trip to Xponential next week, will you be there?</div><div dir=\"auto\">Either way, I’m free for the most on Thursday and Friday for a call. <br clear=\"all\"><br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\">Sincerely,<br><br>Andrew J. Valkenburg<br>Chief Operations Officer | Partner,<br>Strategic Logix<br><br>484-225-9132<br><a href=\"mailto:Avalkenburg@strategic-logix.com\" target=\"_blank\">Avalkenburg@strategic-logix.com</a></div></div></div><div><br></div><div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Sat, May 17, 2025 at 3:07 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;padding-left:1ex;border-left-color:rgb(204,204,204)\">\r\n    <div id=\"m_7940640070924317952m_-8122750652460477267bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thank you, I’ll send back the completed version soon.</div><div id=\"m_7940640070924317952m_-8122750652460477267bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Schedule for a next call?</div><div id=\"m_7940640070924317952m_-8122750652460477267bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Let me know.</div><div id=\"m_7940640070924317952m_-8122750652460477267bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thanks!</div><div id=\"m_7940640070924317952m_-8122750652460477267bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Rick</div> <br> <div id=\"m_7940640070924317952m_-8122750652460477267bloop_sign_1747508733864720896\">\r\n         \r\n      \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n      \r\n</div> <br><p>On May 16, 2025 at 2:59:12 PM, Andrew Valkenburg (<a href=\"mailto:avalkenburg@strategic-logix.com\" target=\"_blank\">avalkenburg@strategic-logix.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div dir=\"ltr\">Rick,<div><br></div><div>Please see attached.</div><div><br></div><div>We introduced the idea to a few organizations including those you asked about and are waiting to hear back. We meet with each of them on a rotation and will follow up shortly. Two that I&#39;d like you to take a look at is Zeal OTM and North Vector Dynamics. I have pitch decks from both if you ever need them, but they are invaluable partners of ours in the UAS space. Zeal OTM works inside Florida Tech as well and would be a natural connection to Florida Tech Research Institute.</div><div><br></div><div>Andrew</div><div></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, May 15, 2025 at 8:47 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;padding-left:1ex;border-left-color:rgb(204,204,204)\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">Andrew,</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">I just following up with an NDA. See attached</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Please confirm receipt and then fill in, initial each page, </div><div style=\"font-family:Helvetica,Arial;font-size:13px\">sign the final page, and return when you’re finished.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">I look forward to our next call.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Respectfully,</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Rick</div><div style=\"font-family:Helvetica,Arial;font-size:13px\"><br></div> <div class=\"gmail_signature\">\r\n          \r\n       \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n       \r\n</div> <br><p>On May 12, 2025 at 8:08:32 AM, Andrew Valkenburg (<a href=\"mailto:avalkenburg@strategic-logix.com\" target=\"_blank\">avalkenburg@strategic-logix.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"auto\">Hey Rick,</div><div dir=\"auto\"><br></div><div dir=\"auto\">I’m open today until 9AM EST for an intro or discovery call, otherwise Tuesday from 9-11EST works and Friday is pretty free for me. </div><div dir=\"auto\"><br></div><div dir=\"auto\"><br></div><div dir=\"auto\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\">Sincerely,<br><br>Andrew J. Valkenburg<br>Chief Operations Officer | Partner,<br>Strategic Logix<br><br>484-225-9132<br><a href=\"mailto:Avalkenburg@strategic-logix.com\" target=\"_blank\">Avalkenburg@strategic-logix.com</a></div></div></div><div><br></div><div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, May 12, 2025 at 8:05 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;padding-left:1ex;border-left-color:rgb(204,204,204)\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">Yes! Let’s talk…pretty open this week.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Let me know what’s best.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Thanks for the follow-up.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Rick</div> <br> <div class=\"gmail_signature\">\r\n           \r\n        \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n        \r\n</div> <br><p>On May 12, 2025 at 8:01:38 AM, Andrew Valkenburg (<a href=\"mailto:avalkenburg@strategic-logix.com\" target=\"_blank\">avalkenburg@strategic-logix.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div>Rick,</div><div><br></div><div>Great meeting you last week. We talked about Strategic Logix&#39;s NDAA Compliant and Blue UAS, made in the USA, Drone Builders Kits and our Modular and Scalable Drone Ecosystem. These have become very popular over the past year or so and we have thousands on open order right now. I am looking forward to talking more if you are still interested in collaborating in any way. </div><div><br></div><div>Our company is only successful due to teaming agreements, partnerships, and collaborations and we are always eager to meet someone new. We actually are a contracting company by design but have really hit the mark on some of our drone solutions inside the DOD. Excited to talk, give me a call or shoot me a note anytime.</div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p><font style=\"color:rgb(0,0,0)\"><b><a href=\"https://d5Fk0J04.na1.hs-sales-engage.com/Ctc/ZY+23284/d5Fk0J04/Jks2-6qcW69sMD-6lZ3nJW1C9lY887HyBKW6D21wy2c_9HvW89wrSb8y-J9KW7CPBBF77W0-HW24SmGJ3p3jMLW1VtT5C90mlClW3jk-MZ3Fb8LsW8QkSvS4n2RDYN1JBMvQh9XcgW4kPFBF3XdQBgW1_rTMP3g903PW6c20-g5YlyctVn6gjK7Ls8cbW58R6sz4xNH_1W11szhh6mx-64N19tyQnr6Tr8W5n2jWr6h6_qyW85W9mH3ntSrqW392dsw8n7TqwW92PdNw7JP8mpf2BxDqM04\" target=\"_blank\">VISIT OUR WEBSITE</a></b></font></p><p><strong><font style=\"color:rgb(0,0,0)\"><br></font></strong></p><p><strong><font style=\"color:rgb(0,0,0)\">Sincerely,</font></strong></p><p><font style=\"color:rgb(0,0,0)\">Andrew Valkenburg<br>Chief Operations Officer, Strategic Logix LLC<br>484-225-9132<br><a rel=\"noopener\">avalkenburg@strategic-logix.com</a></font></p></div></div><div></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p><font style=\"color:rgb(0,0,0)\"><b><a href=\"https://strategic-logix.com\" target=\"_blank\">VISIT OUR WEBSITE</a></b></font></p><p><strong><font style=\"color:rgb(0,0,0)\"><br></font></strong></p><p><strong><font style=\"color:rgb(0,0,0)\">Sincerely,</font></strong></p><p><font style=\"color:rgb(0,0,0)\">Andrew Valkenburg<br>Chief Operations Officer, Strategic Logix LLC<br>484-225-9132<br><a rel=\"noopener\">avalkenburg@strategic-logix.com</a></font></p></div></div><img src=\"https://d5Fk0J04.na1.hs-sales-engage.com/Cto/ZY+23284/d5Fk0J04/R5R8b46GFN8DRvLG2fJj7W25dSRJ3yQyrbW1NtYcc1Xp1cnW1GdpFK1N32clW23gQ6k1YZrDNW3C5Y591T_YtRn1--v6q4W1\" alt=\"\" height=\"1\" width=\"1\" style=\"display: none !important;\"><div></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</div></blockquote></div></div>','Received. Yes Thursday morning works. How about 0900 Thursday EST?\r\n\r\nSincerely,\r\n\r\nAndrew J. Valkenburg\r\nChief Operations Officer | Partner,\r\nStrategic Logix\r\n\r\n484-225-9132\r\nAvalkenburg@strategic-logix.com\r\n\r\n\r\nOn Sat, May 17, 2025 at 3:14 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> No, I am not. Love to hear about it though.\r\n> Thursday morning?\r\n> See attached - confirm receipt.\r\n>\r\n> Thanks,\r\n> Rick\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On May 17, 2025 at 3:09:44 PM, Andrew Valkenburg (\r\n> avalkenburg@strategic-logix.com) wrote:\r\n>\r\n> Awesome, sounds good.\r\n>\r\n> I planned an impromptu trip to Xponential next week, will you be there?\r\n> Either way, I’m free for the most on Thursday and Friday for a call.\r\n>\r\n> Sincerely,\r\n>\r\n> Andrew J. Valkenburg\r\n> Chief Operations Officer | Partner,\r\n> Strategic Logix\r\n>\r\n> 484-225-9132\r\n> Avalkenburg@strategic-logix.com\r\n>\r\n>\r\n> On Sat, May 17, 2025 at 3:07 PM Rick <rick@mavrix.one> wrote:\r\n>\r\n>> Thank you, I’ll send back the completed version soon.\r\n>> Schedule for a next call?\r\n>> Let me know.\r\n>> Thanks!\r\n>> Rick\r\n>>\r\n>> Rick Mislan, PhD\r\n>> https://mavrix.one\r\n>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>\r\n>> On May 16, 2025 at 2:59:12 PM, Andrew Valkenburg (\r\n>> avalkenburg@strategic-logix.com) wrote:\r\n>>\r\n>> Rick,\r\n>>\r\n>> Please see attached.\r\n>>\r\n>> We introduced the idea to a few organizations including those you asked\r\n>> about and are waiting to hear back. We meet with each of them on a rotation\r\n>> and will follow up shortly. Two that I\'d like you to take a look at is Zeal\r\n>> OTM and North Vector Dynamics. I have pitch decks from both if you ever\r\n>> need them, but they are invaluable partners of ours in the UAS space. Zeal\r\n>> OTM works inside Florida Tech as well and would be a natural connection to\r\n>> Florida Tech Research Institute.\r\n>>\r\n>> Andrew\r\n>>\r\n>> On Thu, May 15, 2025 at 8:47 AM Rick <rick@mavrix.one> wrote:\r\n>>\r\n>>> Andrew,\r\n>>> I just following up with an NDA. See attached\r\n>>> Please confirm receipt and then fill in, initial each page,\r\n>>> sign the final page, and return when you’re finished.\r\n>>> I look forward to our next call.\r\n>>> Respectfully,\r\n>>> Rick\r\n>>>\r\n>>> Rick Mislan, PhD\r\n>>> https://mavrix.one\r\n>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>\r\n>>> On May 12, 2025 at 8:08:32 AM, Andrew Valkenburg (\r\n>>> avalkenburg@strategic-logix.com) wrote:\r\n>>>\r\n>>> Hey Rick,\r\n>>>\r\n>>> I’m open today until 9AM EST for an intro or discovery call, otherwise\r\n>>> Tuesday from 9-11EST works and Friday is pretty free for me.\r\n>>>\r\n>>>\r\n>>> Sincerely,\r\n>>>\r\n>>> Andrew J. Valkenburg\r\n>>> Chief Operations Officer | Partner,\r\n>>> Strategic Logix\r\n>>>\r\n>>> 484-225-9132\r\n>>> Avalkenburg@strategic-logix.com\r\n>>>\r\n>>>\r\n>>> On Mon, May 12, 2025 at 8:05 AM Rick <rick@mavrix.one> wrote:\r\n>>>\r\n>>>> Yes! Let’s talk…pretty open this week.\r\n>>>> Let me know what’s best.\r\n>>>> Thanks for the follow-up.\r\n>>>> Rick\r\n>>>>\r\n>>>> Rick Mislan, PhD\r\n>>>> https://mavrix.one\r\n>>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>>\r\n>>>> On May 12, 2025 at 8:01:38 AM, Andrew Valkenburg (\r\n>>>> avalkenburg@strategic-logix.com) wrote:\r\n>>>>\r\n>>>> Rick,\r\n>>>>\r\n>>>> Great meeting you last week. We talked about Strategic Logix\'s NDAA\r\n>>>> Compliant and Blue UAS, made in the USA, Drone Builders Kits and our\r\n>>>> Modular and Scalable Drone Ecosystem. These have become very popular over\r\n>>>> the past year or so and we have thousands on open order right now. I am\r\n>>>> looking forward to talking more if you are still interested in\r\n>>>> collaborating in any way.\r\n>>>>\r\n>>>> Our company is only successful due to teaming agreements, partnerships,\r\n>>>> and collaborations and we are always eager to meet someone new. We actually\r\n>>>> are a contracting company by design but have really hit the mark on some of\r\n>>>> our drone solutions inside the DOD. Excited to talk, give me a call or\r\n>>>> shoot me a note anytime.\r\n>>>>\r\n>>>> --\r\n>>>>\r\n>>>> *VISIT OUR WEBSITE\r\n>>>> <https://d5Fk0J04.na1.hs-sales-engage.com/Ctc/ZY+23284/d5Fk0J04/Jks2-6qcW69sMD-6lZ3nJW1C9lY887HyBKW6D21wy2c_9HvW89wrSb8y-J9KW7CPBBF77W0-HW24SmGJ3p3jMLW1VtT5C90mlClW3jk-MZ3Fb8LsW8QkSvS4n2RDYN1JBMvQh9XcgW4kPFBF3XdQBgW1_rTMP3g903PW6c20-g5YlyctVn6gjK7Ls8cbW58R6sz4xNH_1W11szhh6mx-64N19tyQnr6Tr8W5n2jWr6h6_qyW85W9mH3ntSrqW392dsw8n7TqwW92PdNw7JP8mpf2BxDqM04>*\r\n>>>>\r\n>>>>\r\n>>>> *Sincerely,*\r\n>>>>\r\n>>>> Andrew Valkenburg\r\n>>>> Chief Operations Officer, Strategic Logix LLC\r\n>>>> 484-225-9132\r\n>>>> avalkenburg@strategic-logix.com\r\n>>>>\r\n>>>>\r\n>>\r\n>> --\r\n>>\r\n>> *VISIT OUR WEBSITE <https://strategic-logix.com>*\r\n>>\r\n>>\r\n>> *Sincerely,*\r\n>>\r\n>> Andrew Valkenburg\r\n>> Chief Operations Officer, Strategic Logix LLC\r\n>> 484-225-9132\r\n>> avalkenburg@strategic-logix.com\r\n>>\r\n>>',0,0,0,0,0,0,'2025-05-17 19:14:53','2025-12-09 19:02:20','2025-12-09 19:02:20','2025-12-09 19:02:20',NULL,NULL,NULL),
(236,4,'<01010196dfb0654a-456e6606-ab6c-44e1-8088-b0f861284779-000000@us-west-2.amazonses.com>',NULL,NULL,'Confirm your email','no-reply@login.gov','\"Login.gov\"','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns=\"http://www.w3.org/1999/xhtml\" style=\"background-color: #ebf3fa; min-height: 100%;\">\r\n  <head>\r\n    <meta content=\"text/html; charset=utf-8\" http-equiv=\"Content-Type\" />\r\n    <meta content=\"width=device-width\" name=\"viewport\" />\r\n    <title>Confirm your email\r\n    </title>\r\n  <style>body {\r\n-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; box-sizing: border-box; min-width: 100%; margin: 0; padding: 0; width: 100% !important;\r\n}\r\n.ExternalClass {\r\nwidth: 100%;\r\n}\r\n.ExternalClass {\r\nline-height: 100%;\r\n}\r\n#backgroundTable {\r\nmargin: 0; padding: 0; width: 100% !important; line-height: 100% !important;\r\n}\r\nimg {\r\n-ms-interpolation-mode: bicubic; clear: both; outline: none; width: auto; max-width: 100%; text-decoration: none; display: block;\r\n}\r\nbody {\r\ncolor: #5b616a; text-align: left; margin: 0; padding: 0; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5;\r\n}\r\nbody {\r\nfont-size: 16px; line-height: 1.5;\r\n}\r\na:hover {\r\ncolor: #005288;\r\n}\r\na:active {\r\ncolor: #005288;\r\n}\r\na:visited {\r\ncolor: #0071bb;\r\n}\r\nh1 a:visited {\r\ncolor: #0071bb;\r\n}\r\nh2 a:visited {\r\ncolor: #0071bb;\r\n}\r\nh3 a:visited {\r\ncolor: #0071bb;\r\n}\r\nh4 a:visited {\r\ncolor: #0071bb;\r\n}\r\nh5 a:visited {\r\ncolor: #0071bb;\r\n}\r\nh6 a:visited {\r\ncolor: #0071bb;\r\n}\r\ntable.button:hover table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button:active table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button table tr td a:visited {\r\ncolor: #fff;\r\n}\r\ntable.button.tiny:hover table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button.tiny:active table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button.tiny table tr td a:visited {\r\ncolor: #fff;\r\n}\r\ntable.button.small:hover table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button.small:active table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button.small table tr td a:visited {\r\ncolor: #fff;\r\n}\r\ntable.button.large:hover table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button.large:active table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button.large table tr td a:visited {\r\ncolor: #fff;\r\n}\r\ntable.button:hover table td {\r\ncolor: #fff; background: #005288;\r\n}\r\ntable.button:visited table td {\r\ncolor: #fff; background: #005288;\r\n}\r\ntable.button:active table td {\r\ncolor: #fff; background: #005288;\r\n}\r\ntable.button:hover table a {\r\nborder: 0 solid #005288;\r\n}\r\ntable.button:visited table a {\r\nborder: 0 solid #005288;\r\n}\r\ntable.button:active table a {\r\nborder: 0 solid #005288;\r\n}\r\ntable.button.secondary:hover table td {\r\ncolor: #fff; background: #1a467b;\r\n}\r\ntable.button.secondary:hover table a {\r\nborder: 0 solid #1a467b;\r\n}\r\ntable.button.secondary:hover table td a {\r\ncolor: #fff;\r\n}\r\ntable.button.secondary:active table td a {\r\ncolor: #fff;\r\n}\r\ntable.button.secondary table td a:visited {\r\ncolor: #fff;\r\n}\r\ntable.button.success:hover table td {\r\nbackground: #23bf5d;\r\n}\r\ntable.button.success:hover table a {\r\nborder: 0 solid #23bf5d;\r\n}\r\ntable.button.alert:hover table td {\r\nbackground: #e23317;\r\n}\r\ntable.button.alert:hover table a {\r\nborder: 0 solid #e23317;\r\n}\r\ntable.button.warning:hover table td {\r\nbackground: #cc8b00;\r\n}\r\ntable.button.warning:hover table a {\r\nborder: 0 solid #cc8b00;\r\n}\r\n.thumbnail:hover {\r\nbox-shadow: 0 0 6px 1px #0071bb80;\r\n}\r\n.thumbnail:focus {\r\nbox-shadow: 0 0 6px 1px #0071bb80;\r\n}\r\nbody.outlook p {\r\ndisplay: inline !important;\r\n}\r\n.gray:active {\r\ncolor: #5b616a;\r\n}\r\n.gray:hover {\r\ncolor: #5b616a;\r\n}\r\n.gray:visited {\r\ncolor: #5b616a;\r\n}\r\n.button.expanded.large .btn-warn-bkg:hover {\r\nbackground-color: #fff;\r\n}\r\n.usa-table th[data-sortable]:after {\r\ncontent: \"\"; border-bottom: 1px solid #0000; width: 100%; height: 0; position: absolute; bottom: 0; left: 0;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:visited {\r\ncolor: #0071bb;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:visited {\r\ncolor: #0071bb;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:hover {\r\ncolor: #205493;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:hover {\r\ncolor: #205493;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:active {\r\ncolor: #112e51;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:active {\r\ncolor: #112e51;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:focus {\r\noutline-offset: 1px; outline: 2px solid #0071bb;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:focus {\r\noutline-offset: 1px; outline: 2px solid #0071bb;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:disabled:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:disabled:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:disabled:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:disabled:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:disabled:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:disabled:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:disabled:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:focus {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:disabled:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:focus {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:hover .usa-icon&gt;g.unsorted {\r\nfill: #000;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:hover .usa-icon&gt;g.unsorted {\r\nfill: #000;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:visited {\r\ncolor: #0071bb;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:hover {\r\ncolor: #205493;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:active {\r\ncolor: #112e51;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:focus {\r\noutline-offset: 1px; outline: 2px solid #0071bb;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:disabled:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:disabled:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:disabled:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:disabled:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:focus {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:visited {\r\ncolor: #0071bb;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:hover {\r\ncolor: #205493;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:active {\r\ncolor: #112e51;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:focus {\r\noutline-offset: 1px; outline: 2px solid #0071bb;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:disabled:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:disabled:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:disabled:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:disabled:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:focus {\r\ncolor: #767676;\r\n}\r\n@media only screen and (max-width:596px) {\r\n  .small-float-center {\r\n    float: none !important; text-align: center !important; margin: 0 auto !important;\r\n  }\r\n  .small-text-center {\r\n    text-align: center !important;\r\n  }\r\n  .small-text-left {\r\n    text-align: left !important;\r\n  }\r\n  .small-text-right {\r\n    text-align: right !important;\r\n  }\r\n  .hide-for-large {\r\n    font-size: inherit !important; line-height: inherit !important; width: auto !important; max-height: none !important; display: block !important; overflow: visible !important;\r\n  }\r\n  table.body table.container .hide-for-large {\r\n    width: 100% !important; display: table !important;\r\n  }\r\n  table.body table.container .row.hide-for-large {\r\n    width: 100% !important; display: table !important;\r\n  }\r\n  table.body table.container .callout-inner.hide-for-large {\r\n    width: 100% !important; display: table-cell !important;\r\n  }\r\n  table.body table.container .show-for-large {\r\n    mso-hide: all; width: 0; overflow: hidden; display: none !important;\r\n  }\r\n  .menu.small-vertical .menu-item {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.body img {\r\n    width: auto; height: auto;\r\n  }\r\n  table.body center {\r\n    min-width: 0 !important;\r\n  }\r\n  table.body .container {\r\n    width: 95% !important;\r\n  }\r\n  table.body .columns {\r\n    box-sizing: border-box; height: auto !important; padding-left: 16px !important; padding-right: 16px !important;\r\n  }\r\n  table.body .column {\r\n    box-sizing: border-box; height: auto !important; padding-left: 16px !important; padding-right: 16px !important;\r\n  }\r\n  table.body .columns .column {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.body .columns .columns {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.body .column .column {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.body .column .columns {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.body .collapse .columns {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.body .collapse .column {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  td.small-1 {\r\n    width: 8.33333% !important; display: inline-block !important;\r\n  }\r\n  th.small-1 {\r\n    width: 8.33333% !important; display: inline-block !important;\r\n  }\r\n  td.small-2 {\r\n    width: 16.6667% !important; display: inline-block !important;\r\n  }\r\n  th.small-2 {\r\n    width: 16.6667% !important; display: inline-block !important;\r\n  }\r\n  td.small-3 {\r\n    width: 25% !important; display: inline-block !important;\r\n  }\r\n  th.small-3 {\r\n    width: 25% !important; display: inline-block !important;\r\n  }\r\n  td.small-4 {\r\n    width: 33.3333% !important; display: inline-block !important;\r\n  }\r\n  th.small-4 {\r\n    width: 33.3333% !important; display: inline-block !important;\r\n  }\r\n  td.small-5 {\r\n    width: 41.6667% !important; display: inline-block !important;\r\n  }\r\n  th.small-5 {\r\n    width: 41.6667% !important; display: inline-block !important;\r\n  }\r\n  td.small-6 {\r\n    width: 50% !important; display: inline-block !important;\r\n  }\r\n  th.small-6 {\r\n    width: 50% !important; display: inline-block !important;\r\n  }\r\n  td.small-7 {\r\n    width: 58.3333% !important; display: inline-block !important;\r\n  }\r\n  th.small-7 {\r\n    width: 58.3333% !important; display: inline-block !important;\r\n  }\r\n  td.small-8 {\r\n    width: 66.6667% !important; display: inline-block !important;\r\n  }\r\n  th.small-8 {\r\n    width: 66.6667% !important; display: inline-block !important;\r\n  }\r\n  td.small-9 {\r\n    width: 75% !important; display: inline-block !important;\r\n  }\r\n  th.small-9 {\r\n    width: 75% !important; display: inline-block !important;\r\n  }\r\n  td.small-10 {\r\n    width: 83.3333% !important; display: inline-block !important;\r\n  }\r\n  th.small-10 {\r\n    width: 83.3333% !important; display: inline-block !important;\r\n  }\r\n  td.small-11 {\r\n    width: 91.6667% !important; display: inline-block !important;\r\n  }\r\n  th.small-11 {\r\n    width: 91.6667% !important; display: inline-block !important;\r\n  }\r\n  td.small-12 {\r\n    width: 100% !important; display: inline-block !important;\r\n  }\r\n  th.small-12 {\r\n    width: 100% !important; display: inline-block !important;\r\n  }\r\n  .columns td.small-12 {\r\n    width: 100% !important; display: block !important;\r\n  }\r\n  .column td.small-12 {\r\n    width: 100% !important; display: block !important;\r\n  }\r\n  .columns th.small-12 {\r\n    width: 100% !important; display: block !important;\r\n  }\r\n  .column th.small-12 {\r\n    width: 100% !important; display: block !important;\r\n  }\r\n  table.body td.small-offset-1 {\r\n    margin-left: 8.33333% !important;\r\n  }\r\n  table.body th.small-offset-1 {\r\n    margin-left: 8.33333% !important;\r\n  }\r\n  table.body td.small-offset-2 {\r\n    margin-left: 16.6667% !important;\r\n  }\r\n  table.body th.small-offset-2 {\r\n    margin-left: 16.6667% !important;\r\n  }\r\n  table.body td.small-offset-3 {\r\n    margin-left: 25% !important;\r\n  }\r\n  table.body th.small-offset-3 {\r\n    margin-left: 25% !important;\r\n  }\r\n  table.body td.small-offset-4 {\r\n    margin-left: 33.3333% !important;\r\n  }\r\n  table.body th.small-offset-4 {\r\n    margin-left: 33.3333% !important;\r\n  }\r\n  table.body td.small-offset-5 {\r\n    margin-left: 41.6667% !important;\r\n  }\r\n  table.body th.small-offset-5 {\r\n    margin-left: 41.6667% !important;\r\n  }\r\n  table.body td.small-offset-6 {\r\n    margin-left: 50% !important;\r\n  }\r\n  table.body th.small-offset-6 {\r\n    margin-left: 50% !important;\r\n  }\r\n  table.body td.small-offset-7 {\r\n    margin-left: 58.3333% !important;\r\n  }\r\n  table.body th.small-offset-7 {\r\n    margin-left: 58.3333% !important;\r\n  }\r\n  table.body td.small-offset-8 {\r\n    margin-left: 66.6667% !important;\r\n  }\r\n  table.body th.small-offset-8 {\r\n    margin-left: 66.6667% !important;\r\n  }\r\n  table.body td.small-offset-9 {\r\n    margin-left: 75% !important;\r\n  }\r\n  table.body th.small-offset-9 {\r\n    margin-left: 75% !important;\r\n  }\r\n  table.body td.small-offset-10 {\r\n    margin-left: 83.3333% !important;\r\n  }\r\n  table.body th.small-offset-10 {\r\n    margin-left: 83.3333% !important;\r\n  }\r\n  table.body td.small-offset-11 {\r\n    margin-left: 91.6667% !important;\r\n  }\r\n  table.body th.small-offset-11 {\r\n    margin-left: 91.6667% !important;\r\n  }\r\n  table.body table.columns td.expander {\r\n    display: none !important;\r\n  }\r\n  table.body table.columns th.expander {\r\n    display: none !important;\r\n  }\r\n  table.body .right-text-pad {\r\n    padding-left: 10px !important;\r\n  }\r\n  table.body .text-pad-right {\r\n    padding-left: 10px !important;\r\n  }\r\n  table.body .left-text-pad {\r\n    padding-right: 10px !important;\r\n  }\r\n  table.body .text-pad-left {\r\n    padding-right: 10px !important;\r\n  }\r\n  table.menu {\r\n    width: 100% !important;\r\n  }\r\n  table.menu td {\r\n    width: auto !important; display: inline-block !important;\r\n  }\r\n  table.menu th {\r\n    width: auto !important; display: inline-block !important;\r\n  }\r\n  table.menu.vertical td {\r\n    display: block !important;\r\n  }\r\n  table.menu.vertical th {\r\n    display: block !important;\r\n  }\r\n  table.menu.small-vertical td {\r\n    display: block !important;\r\n  }\r\n  table.menu.small-vertical th {\r\n    display: block !important;\r\n  }\r\n  table.menu[align=center] {\r\n    width: auto !important;\r\n  }\r\n  table.button.small-expand {\r\n    width: 100% !important;\r\n  }\r\n  table.button.small-expanded {\r\n    width: 100% !important;\r\n  }\r\n  table.button.small-expand table {\r\n    width: 100%;\r\n  }\r\n  table.button.small-expanded table {\r\n    width: 100%;\r\n  }\r\n  table.button.small-expand table a {\r\n    text-align: center !important; width: 100% !important; padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.button.small-expanded table a {\r\n    text-align: center !important; width: 100% !important; padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.button.small-expand center {\r\n    min-width: 0;\r\n  }\r\n  table.button.small-expanded center {\r\n    min-width: 0;\r\n  }\r\n}\r\n@media (forced-colors:active) {\r\n  .usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:disabled {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true] {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:disabled:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:focus {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:disabled {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true] {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:disabled:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:focus {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:disabled {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true] {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:disabled:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:focus {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:disabled {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true] {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:disabled:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:focus {\r\n    color: GrayText;\r\n  }\r\n}\r\n</style></head>\r\n  <body style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; box-sizing: border-box; min-width: 100%; width: 100% !important; color: #5b616a; text-align: left; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\">\r\n    <table class=\"body\" data-made-with-foundation=\"\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; height: 100%; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" bgcolor=\"#ebf3fa\">\r\n      <tbody>\r\n        <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n          <td align=\"center\" class=\"float-center\" valign=\"top\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; float: none; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 auto; padding: 0;\">\r\n            <center style=\"width: 100%; min-width: 580px;\">\r\n              <table class=\"spacer\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                <tbody>\r\n                  <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                    <td class=\"s10\" height=\"10px\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; mso-line-height-rule: exactly; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 10px; font-size: 10px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                       \r\n                    </td>\r\n                  </tr>\r\n                </tbody>\r\n              </table>\r\n              <table class=\"container float-center\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: center; width: 580px; float: none; margin: 0 auto; padding: 0;\" bgcolor=\"#fff\">\r\n                <tbody>\r\n                  <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                    <td style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                      <table class=\"spacer\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                        <tbody>\r\n                          <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                            <td class=\"s60\" height=\"60px\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; mso-line-height-rule: exactly; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 60px; font-size: 60px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                               \r\n                            </td>\r\n                          </tr>\r\n                        </tbody>\r\n                      </table>\r\n                      <table class=\"row\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; position: relative; display: table; padding: 0;\">\r\n                        <tbody>\r\n                          <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                            <th class=\"small-12 large-12 columns first last\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; width: 520px; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 auto; padding: 0 60px 16px;\" align=\"left\" valign=\"top\">\r\n                              <table style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                                <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                  <th style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                                    <img style=\"width: 142px; height: 19px; -ms-interpolation-mode: bicubic; clear: both; outline: none; max-width: 100%; text-decoration: none; display: block;\" alt=\"Login.gov logo\" src=\"cid:6828e16175aff_23838c1814513b5@idp-i-0b671bd59124cc490.prod.login.gov.mail\" width=\"142\" height=\"19\" />\r\n                                  </th>\r\n                                  <th class=\"expander\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; visibility: hidden; width: 0; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\"></th>\r\n                                </tr>\r\n                              </table>\r\n                            </th>\r\n                          </tr>\r\n                        </tbody>\r\n                      </table>\r\n                      <table class=\"row\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; position: relative; display: table; padding: 0;\">\r\n                        <tbody>\r\n                          <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                            <th class=\"small-12 large-12 columns first last\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; width: 520px; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 auto; padding: 0 60px 16px;\" align=\"left\" valign=\"top\">\r\n                              <table style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                                <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                  <th style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                                    <table class=\"spacer\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                                      <tbody>\r\n                                        <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                          <td class=\"s30\" height=\"30px\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; mso-line-height-rule: exactly; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 30px; font-size: 30px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                                             \r\n                                          </td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                      <h1 style=\"color: inherit; font-family: Arial,Helvetica,sans-serif; font-weight: 700; line-height: 1.4; word-wrap: normal; font-size: 28px; margin: 0 0 16px; padding: 0;\" align=\"left\">Confirm your email</h1>\r\n                                    <p class=\"lead\" style=\"color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; -webkit-hyphens: none; hyphens: none; margin: 0 0 30px; padding: 0;\" align=\"left\">\r\n  Thanks for submitting your email address. Please click the link below or copy and paste the entire link into your browser.\r\n  This link will expire in 24 hours.\r\n</p>\r\n\r\n<table class=\"button expanded large radius\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; margin: 0 0 16px; padding: 0;\">\r\n  <tbody>\r\n    <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n      <td style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n        <table style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n          <tbody>\r\n            <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n              <td style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #fff; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; border-radius: 5px; margin: 0; padding: 0; border: 2px none #0071bb;\" align=\"center\" bgcolor=\"#0071bb\" valign=\"top\">\r\n                <a target=\"_blank\" class=\"float-center\" rel=\"noopener noreferrer\" href=\"https://secure.login.gov/sign_up/email/confirm?_request_id=58cd24ee-fb4d-41b8-8f16-2bce0904ecdd&amp;confirmation_token=V4cR8Vjm719zb73XaUdF\" style=\"color: #fff; text-align: center; font-family: Arial,Helvetica,sans-serif; font-weight: 700; line-height: 1.5; text-decoration: none; border-radius: 5px; font-size: 20px; display: inline-block; width: 100%; padding: 20px 0; border: 0 solid #0071bb;\">Confirm email address</a>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td>\r\n      <td class=\"expander\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; visibility: hidden; width: 0; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\"></td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<p style=\"color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 0 10px; padding: 0;\" align=\"left\">\r\n  <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://secure.login.gov/sign_up/email/confirm?_request_id=58cd24ee-fb4d-41b8-8f16-2bce0904ecdd&amp;confirmation_token=V4cR8Vjm719zb73XaUdF\" style=\"color: #0071bb; text-align: left; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; text-decoration: none; padding: 0;\">https://secure.login.gov/sign_up/email/confirm?_request_id=58cd24ee-fb4d-41b8-8f16-2bce0904ecdd&amp;confirmation_token=V4cR8Vjm719zb73XaUdF</a>\r\n</p>\r\n\r\n                                    <table class=\"spacer\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                                      <tbody>\r\n                                        <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                          <td class=\"s30\" height=\"30px\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; mso-line-height-rule: exactly; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 30px; font-size: 30px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                                             \r\n                                          </td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                  </th>\r\n                                </tr>\r\n                              </table>\r\n                            </th>\r\n                          </tr>\r\n                        </tbody>\r\n                      </table>\r\n                      <table align=\"center\" class=\"wrapper\" style=\"width: 100%; border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; padding: 0;\">\r\n                        <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                          <td class=\"wrapper-inner\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                            <table class=\"row\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; position: relative; display: table; padding: 0;\">\r\n                              <tbody>\r\n                                <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                  <th class=\"small-12 large-12 columns first last\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; width: 520px; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 auto; padding: 0 60px 16px;\" align=\"left\" valign=\"top\">\r\n                                    <table style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                                      <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                        <th style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                                          <p style=\"color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 0 10px; padding: 0;\" align=\"left\">\r\n                                            Please do not reply to this message.\r\n                                            If you need help, visit <a href=\"https://www.login.gov/help/\" style=\"color: #0071bb; text-align: left; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; text-decoration: none; padding: 0;\">login.gov/help/</a>\r\n                                          </p>\r\n                                        </th>\r\n                                      </tr>\r\n                                    </table>\r\n                                  </th>\r\n                                </tr>\r\n                              </tbody>\r\n                            </table>\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                      <table class=\"xwrapper\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; padding: 0;\">\r\n                        <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                          <td class=\"xwrapper-inner\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                            <table class=\"row\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; position: relative; display: table; padding: 0;\">\r\n                              <tbody>\r\n                                <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                  <th class=\"small-12 large-12 columns first last\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; width: 520px; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 auto; padding: 0 60px 16px;\" align=\"left\" valign=\"top\">\r\n                                    <table class=\"hr\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; margin: 10px auto; padding: 0;\">\r\n                                      <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                        <th style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0 0 10px auto;\" align=\"center\" valign=\"top\">\r\n                                           \r\n                                        </th>\r\n                                      </tr>\r\n                                    </table>\r\n                                    <table style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                                      <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                        <th style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                                          <p style=\"color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 0 10px; padding: 0;\" align=\"left\">\r\n                                            <a style=\"text-decoration: underline; color: #0071bb; text-align: left; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; padding: 0;\" href=\"https://www.login.gov/\">About Login.gov</a>\r\n                                              |  \r\n                                            <a style=\"text-decoration: underline; color: #0071bb; text-align: left; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; padding: 0;\" href=\"https://www.login.gov/policy/\">Privacy policy</a>\r\n                                          </p>\r\n                                          <p style=\"color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 0 10px; padding: 0;\" align=\"left\">\r\n                                            Sent at 2025-05-17T19:20:01.482311Z\r\n                                          </p>\r\n                                        </th>\r\n                                        <th class=\"expander\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; visibility: hidden; width: 0; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\"></th>\r\n                                      </tr>\r\n                                    </table>\r\n                                  </th>\r\n                                </tr>\r\n                              </tbody>\r\n                            </table>\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </tbody>\r\n              </table>\r\n            </center>\r\n          </td>\r\n        </tr>\r\n      </tbody>\r\n      <!--prevent Gmail on iOS font size manipulation-->\r\n      <div style=\"display: none; white-space: nowrap; font: 15px/0 courier;\">\r\n                                 \r\n                                 \r\n               \r\n      </div>\r\n    </table>\r\n  </body>\r\n</html>','Login.gov logo\r\n\r\n******************\r\nConfirm your email\r\n******************\r\n\r\nThanks for submitting your email address. Please click the link\r\nbelow or copy and paste the entire link into your browser.\r\nThis link will expire in 24 hours.\r\n\r\nConfirm email address \r\n( https://secure.login.gov/sign_up/email/confirm?_request_id=58cd24ee-fb4d-41b8-8f16-2bce0904ecdd&confirmation_token=V4cR8Vjm719zb73XaUdF )\r\n\r\n\r\nhttps://secure.login.gov/sign_up/email/confirm?_request_id=58cd24ee-fb4d-41b8-8f16-2bce0904ecdd&confirmation_token=V4cR8Vjm719zb73XaUdF\r\n\r\nPlease do not reply\r\nto this message.\r\nIf you need help,\r\nvisit login.gov/help/ ( https://www.login.gov/help/ )\r\n\r\nAbout Login.gov \r\n( https://www.login.gov/ )\r\n|\r\nPrivacy policy \r\n( https://www.login.gov/policy/ )\r\n\r\nSent at\r\n2025-05-17T19:20:01.482311Z',0,0,0,0,0,0,'2025-05-17 19:20:01','2025-12-09 19:02:20','2025-12-09 19:02:20','2025-12-09 19:02:20',NULL,NULL,NULL),
(237,4,'<01010196dfb947c5-d7c2228b-4fbc-4534-822b-c5de39c47801-000000@us-west-2.amazonses.com>',NULL,NULL,'New phone number added','no-reply@login.gov','\"Login.gov\"','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns=\"http://www.w3.org/1999/xhtml\" style=\"background-color: #ebf3fa; min-height: 100%;\">\r\n  <head>\r\n    <meta content=\"text/html; charset=utf-8\" http-equiv=\"Content-Type\" />\r\n    <meta content=\"width=device-width\" name=\"viewport\" />\r\n    <title>New phone number added\r\n    </title>\r\n  <style>body {\r\n-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; box-sizing: border-box; min-width: 100%; margin: 0; padding: 0; width: 100% !important;\r\n}\r\n.ExternalClass {\r\nwidth: 100%;\r\n}\r\n.ExternalClass {\r\nline-height: 100%;\r\n}\r\n#backgroundTable {\r\nmargin: 0; padding: 0; width: 100% !important; line-height: 100% !important;\r\n}\r\nimg {\r\n-ms-interpolation-mode: bicubic; clear: both; outline: none; width: auto; max-width: 100%; text-decoration: none; display: block;\r\n}\r\nbody {\r\ncolor: #5b616a; text-align: left; margin: 0; padding: 0; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5;\r\n}\r\nbody {\r\nfont-size: 16px; line-height: 1.5;\r\n}\r\na:hover {\r\ncolor: #005288;\r\n}\r\na:active {\r\ncolor: #005288;\r\n}\r\na:visited {\r\ncolor: #0071bb;\r\n}\r\nh1 a:visited {\r\ncolor: #0071bb;\r\n}\r\nh2 a:visited {\r\ncolor: #0071bb;\r\n}\r\nh3 a:visited {\r\ncolor: #0071bb;\r\n}\r\nh4 a:visited {\r\ncolor: #0071bb;\r\n}\r\nh5 a:visited {\r\ncolor: #0071bb;\r\n}\r\nh6 a:visited {\r\ncolor: #0071bb;\r\n}\r\ntable.button:hover table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button:active table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button table tr td a:visited {\r\ncolor: #fff;\r\n}\r\ntable.button.tiny:hover table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button.tiny:active table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button.tiny table tr td a:visited {\r\ncolor: #fff;\r\n}\r\ntable.button.small:hover table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button.small:active table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button.small table tr td a:visited {\r\ncolor: #fff;\r\n}\r\ntable.button.large:hover table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button.large:active table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button.large table tr td a:visited {\r\ncolor: #fff;\r\n}\r\ntable.button:hover table td {\r\ncolor: #fff; background: #005288;\r\n}\r\ntable.button:visited table td {\r\ncolor: #fff; background: #005288;\r\n}\r\ntable.button:active table td {\r\ncolor: #fff; background: #005288;\r\n}\r\ntable.button:hover table a {\r\nborder: 0 solid #005288;\r\n}\r\ntable.button:visited table a {\r\nborder: 0 solid #005288;\r\n}\r\ntable.button:active table a {\r\nborder: 0 solid #005288;\r\n}\r\ntable.button.secondary:hover table td {\r\ncolor: #fff; background: #1a467b;\r\n}\r\ntable.button.secondary:hover table a {\r\nborder: 0 solid #1a467b;\r\n}\r\ntable.button.secondary:hover table td a {\r\ncolor: #fff;\r\n}\r\ntable.button.secondary:active table td a {\r\ncolor: #fff;\r\n}\r\ntable.button.secondary table td a:visited {\r\ncolor: #fff;\r\n}\r\ntable.button.success:hover table td {\r\nbackground: #23bf5d;\r\n}\r\ntable.button.success:hover table a {\r\nborder: 0 solid #23bf5d;\r\n}\r\ntable.button.alert:hover table td {\r\nbackground: #e23317;\r\n}\r\ntable.button.alert:hover table a {\r\nborder: 0 solid #e23317;\r\n}\r\ntable.button.warning:hover table td {\r\nbackground: #cc8b00;\r\n}\r\ntable.button.warning:hover table a {\r\nborder: 0 solid #cc8b00;\r\n}\r\n.thumbnail:hover {\r\nbox-shadow: 0 0 6px 1px #0071bb80;\r\n}\r\n.thumbnail:focus {\r\nbox-shadow: 0 0 6px 1px #0071bb80;\r\n}\r\nbody.outlook p {\r\ndisplay: inline !important;\r\n}\r\n.gray:active {\r\ncolor: #5b616a;\r\n}\r\n.gray:hover {\r\ncolor: #5b616a;\r\n}\r\n.gray:visited {\r\ncolor: #5b616a;\r\n}\r\n.button.expanded.large .btn-warn-bkg:hover {\r\nbackground-color: #fff;\r\n}\r\n.usa-table th[data-sortable]:after {\r\ncontent: \"\"; border-bottom: 1px solid #0000; width: 100%; height: 0; position: absolute; bottom: 0; left: 0;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:visited {\r\ncolor: #0071bb;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:visited {\r\ncolor: #0071bb;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:hover {\r\ncolor: #205493;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:hover {\r\ncolor: #205493;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:active {\r\ncolor: #112e51;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:active {\r\ncolor: #112e51;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:focus {\r\noutline-offset: 1px; outline: 2px solid #0071bb;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:focus {\r\noutline-offset: 1px; outline: 2px solid #0071bb;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:disabled:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:disabled:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:disabled:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:disabled:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:disabled:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:disabled:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:disabled:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:focus {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:disabled:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:focus {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:hover .usa-icon&gt;g.unsorted {\r\nfill: #000;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:hover .usa-icon&gt;g.unsorted {\r\nfill: #000;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:visited {\r\ncolor: #0071bb;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:hover {\r\ncolor: #205493;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:active {\r\ncolor: #112e51;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:focus {\r\noutline-offset: 1px; outline: 2px solid #0071bb;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:disabled:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:disabled:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:disabled:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:disabled:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:focus {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:visited {\r\ncolor: #0071bb;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:hover {\r\ncolor: #205493;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:active {\r\ncolor: #112e51;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:focus {\r\noutline-offset: 1px; outline: 2px solid #0071bb;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:disabled:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:disabled:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:disabled:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:disabled:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:focus {\r\ncolor: #767676;\r\n}\r\n@media only screen and (max-width:596px) {\r\n  .small-float-center {\r\n    float: none !important; text-align: center !important; margin: 0 auto !important;\r\n  }\r\n  .small-text-center {\r\n    text-align: center !important;\r\n  }\r\n  .small-text-left {\r\n    text-align: left !important;\r\n  }\r\n  .small-text-right {\r\n    text-align: right !important;\r\n  }\r\n  .hide-for-large {\r\n    font-size: inherit !important; line-height: inherit !important; width: auto !important; max-height: none !important; display: block !important; overflow: visible !important;\r\n  }\r\n  table.body table.container .hide-for-large {\r\n    width: 100% !important; display: table !important;\r\n  }\r\n  table.body table.container .row.hide-for-large {\r\n    width: 100% !important; display: table !important;\r\n  }\r\n  table.body table.container .callout-inner.hide-for-large {\r\n    width: 100% !important; display: table-cell !important;\r\n  }\r\n  table.body table.container .show-for-large {\r\n    mso-hide: all; width: 0; overflow: hidden; display: none !important;\r\n  }\r\n  .menu.small-vertical .menu-item {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.body img {\r\n    width: auto; height: auto;\r\n  }\r\n  table.body center {\r\n    min-width: 0 !important;\r\n  }\r\n  table.body .container {\r\n    width: 95% !important;\r\n  }\r\n  table.body .columns {\r\n    box-sizing: border-box; height: auto !important; padding-left: 16px !important; padding-right: 16px !important;\r\n  }\r\n  table.body .column {\r\n    box-sizing: border-box; height: auto !important; padding-left: 16px !important; padding-right: 16px !important;\r\n  }\r\n  table.body .columns .column {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.body .columns .columns {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.body .column .column {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.body .column .columns {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.body .collapse .columns {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.body .collapse .column {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  td.small-1 {\r\n    width: 8.33333% !important; display: inline-block !important;\r\n  }\r\n  th.small-1 {\r\n    width: 8.33333% !important; display: inline-block !important;\r\n  }\r\n  td.small-2 {\r\n    width: 16.6667% !important; display: inline-block !important;\r\n  }\r\n  th.small-2 {\r\n    width: 16.6667% !important; display: inline-block !important;\r\n  }\r\n  td.small-3 {\r\n    width: 25% !important; display: inline-block !important;\r\n  }\r\n  th.small-3 {\r\n    width: 25% !important; display: inline-block !important;\r\n  }\r\n  td.small-4 {\r\n    width: 33.3333% !important; display: inline-block !important;\r\n  }\r\n  th.small-4 {\r\n    width: 33.3333% !important; display: inline-block !important;\r\n  }\r\n  td.small-5 {\r\n    width: 41.6667% !important; display: inline-block !important;\r\n  }\r\n  th.small-5 {\r\n    width: 41.6667% !important; display: inline-block !important;\r\n  }\r\n  td.small-6 {\r\n    width: 50% !important; display: inline-block !important;\r\n  }\r\n  th.small-6 {\r\n    width: 50% !important; display: inline-block !important;\r\n  }\r\n  td.small-7 {\r\n    width: 58.3333% !important; display: inline-block !important;\r\n  }\r\n  th.small-7 {\r\n    width: 58.3333% !important; display: inline-block !important;\r\n  }\r\n  td.small-8 {\r\n    width: 66.6667% !important; display: inline-block !important;\r\n  }\r\n  th.small-8 {\r\n    width: 66.6667% !important; display: inline-block !important;\r\n  }\r\n  td.small-9 {\r\n    width: 75% !important; display: inline-block !important;\r\n  }\r\n  th.small-9 {\r\n    width: 75% !important; display: inline-block !important;\r\n  }\r\n  td.small-10 {\r\n    width: 83.3333% !important; display: inline-block !important;\r\n  }\r\n  th.small-10 {\r\n    width: 83.3333% !important; display: inline-block !important;\r\n  }\r\n  td.small-11 {\r\n    width: 91.6667% !important; display: inline-block !important;\r\n  }\r\n  th.small-11 {\r\n    width: 91.6667% !important; display: inline-block !important;\r\n  }\r\n  td.small-12 {\r\n    width: 100% !important; display: inline-block !important;\r\n  }\r\n  th.small-12 {\r\n    width: 100% !important; display: inline-block !important;\r\n  }\r\n  .columns td.small-12 {\r\n    width: 100% !important; display: block !important;\r\n  }\r\n  .column td.small-12 {\r\n    width: 100% !important; display: block !important;\r\n  }\r\n  .columns th.small-12 {\r\n    width: 100% !important; display: block !important;\r\n  }\r\n  .column th.small-12 {\r\n    width: 100% !important; display: block !important;\r\n  }\r\n  table.body td.small-offset-1 {\r\n    margin-left: 8.33333% !important;\r\n  }\r\n  table.body th.small-offset-1 {\r\n    margin-left: 8.33333% !important;\r\n  }\r\n  table.body td.small-offset-2 {\r\n    margin-left: 16.6667% !important;\r\n  }\r\n  table.body th.small-offset-2 {\r\n    margin-left: 16.6667% !important;\r\n  }\r\n  table.body td.small-offset-3 {\r\n    margin-left: 25% !important;\r\n  }\r\n  table.body th.small-offset-3 {\r\n    margin-left: 25% !important;\r\n  }\r\n  table.body td.small-offset-4 {\r\n    margin-left: 33.3333% !important;\r\n  }\r\n  table.body th.small-offset-4 {\r\n    margin-left: 33.3333% !important;\r\n  }\r\n  table.body td.small-offset-5 {\r\n    margin-left: 41.6667% !important;\r\n  }\r\n  table.body th.small-offset-5 {\r\n    margin-left: 41.6667% !important;\r\n  }\r\n  table.body td.small-offset-6 {\r\n    margin-left: 50% !important;\r\n  }\r\n  table.body th.small-offset-6 {\r\n    margin-left: 50% !important;\r\n  }\r\n  table.body td.small-offset-7 {\r\n    margin-left: 58.3333% !important;\r\n  }\r\n  table.body th.small-offset-7 {\r\n    margin-left: 58.3333% !important;\r\n  }\r\n  table.body td.small-offset-8 {\r\n    margin-left: 66.6667% !important;\r\n  }\r\n  table.body th.small-offset-8 {\r\n    margin-left: 66.6667% !important;\r\n  }\r\n  table.body td.small-offset-9 {\r\n    margin-left: 75% !important;\r\n  }\r\n  table.body th.small-offset-9 {\r\n    margin-left: 75% !important;\r\n  }\r\n  table.body td.small-offset-10 {\r\n    margin-left: 83.3333% !important;\r\n  }\r\n  table.body th.small-offset-10 {\r\n    margin-left: 83.3333% !important;\r\n  }\r\n  table.body td.small-offset-11 {\r\n    margin-left: 91.6667% !important;\r\n  }\r\n  table.body th.small-offset-11 {\r\n    margin-left: 91.6667% !important;\r\n  }\r\n  table.body table.columns td.expander {\r\n    display: none !important;\r\n  }\r\n  table.body table.columns th.expander {\r\n    display: none !important;\r\n  }\r\n  table.body .right-text-pad {\r\n    padding-left: 10px !important;\r\n  }\r\n  table.body .text-pad-right {\r\n    padding-left: 10px !important;\r\n  }\r\n  table.body .left-text-pad {\r\n    padding-right: 10px !important;\r\n  }\r\n  table.body .text-pad-left {\r\n    padding-right: 10px !important;\r\n  }\r\n  table.menu {\r\n    width: 100% !important;\r\n  }\r\n  table.menu td {\r\n    width: auto !important; display: inline-block !important;\r\n  }\r\n  table.menu th {\r\n    width: auto !important; display: inline-block !important;\r\n  }\r\n  table.menu.vertical td {\r\n    display: block !important;\r\n  }\r\n  table.menu.vertical th {\r\n    display: block !important;\r\n  }\r\n  table.menu.small-vertical td {\r\n    display: block !important;\r\n  }\r\n  table.menu.small-vertical th {\r\n    display: block !important;\r\n  }\r\n  table.menu[align=center] {\r\n    width: auto !important;\r\n  }\r\n  table.button.small-expand {\r\n    width: 100% !important;\r\n  }\r\n  table.button.small-expanded {\r\n    width: 100% !important;\r\n  }\r\n  table.button.small-expand table {\r\n    width: 100%;\r\n  }\r\n  table.button.small-expanded table {\r\n    width: 100%;\r\n  }\r\n  table.button.small-expand table a {\r\n    text-align: center !important; width: 100% !important; padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.button.small-expanded table a {\r\n    text-align: center !important; width: 100% !important; padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.button.small-expand center {\r\n    min-width: 0;\r\n  }\r\n  table.button.small-expanded center {\r\n    min-width: 0;\r\n  }\r\n}\r\n@media (forced-colors:active) {\r\n  .usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:disabled {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true] {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:disabled:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:focus {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:disabled {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true] {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:disabled:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:focus {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:disabled {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true] {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:disabled:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:focus {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:disabled {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true] {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:disabled:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:focus {\r\n    color: GrayText;\r\n  }\r\n}\r\n</style></head>\r\n  <body style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; box-sizing: border-box; min-width: 100%; width: 100% !important; color: #5b616a; text-align: left; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\">\r\n    <table class=\"body\" data-made-with-foundation=\"\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; height: 100%; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" bgcolor=\"#ebf3fa\">\r\n      <tbody>\r\n        <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n          <td align=\"center\" class=\"float-center\" valign=\"top\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; float: none; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 auto; padding: 0;\">\r\n            <center style=\"width: 100%; min-width: 580px;\">\r\n              <table class=\"spacer\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                <tbody>\r\n                  <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                    <td class=\"s10\" height=\"10px\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; mso-line-height-rule: exactly; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 10px; font-size: 10px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                       \r\n                    </td>\r\n                  </tr>\r\n                </tbody>\r\n              </table>\r\n              <table class=\"container float-center\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: center; width: 580px; float: none; margin: 0 auto; padding: 0;\" bgcolor=\"#fff\">\r\n                <tbody>\r\n                  <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                    <td style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                      <table class=\"spacer\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                        <tbody>\r\n                          <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                            <td class=\"s60\" height=\"60px\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; mso-line-height-rule: exactly; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 60px; font-size: 60px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                               \r\n                            </td>\r\n                          </tr>\r\n                        </tbody>\r\n                      </table>\r\n                      <table class=\"row\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; position: relative; display: table; padding: 0;\">\r\n                        <tbody>\r\n                          <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                            <th class=\"small-12 large-12 columns first last\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; width: 520px; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 auto; padding: 0 60px 16px;\" align=\"left\" valign=\"top\">\r\n                              <table style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                                <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                  <th style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                                    <img style=\"width: 142px; height: 19px; -ms-interpolation-mode: bicubic; clear: both; outline: none; max-width: 100%; text-decoration: none; display: block;\" alt=\"Login.gov logo\" src=\"cid:6828e3a7b75ab_22ec8c1815215b5@idp-i-0782fd38879e93f32.prod.login.gov.mail\" width=\"142\" height=\"19\" />\r\n                                  </th>\r\n                                  <th class=\"expander\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; visibility: hidden; width: 0; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\"></th>\r\n                                </tr>\r\n                              </table>\r\n                            </th>\r\n                          </tr>\r\n                        </tbody>\r\n                      </table>\r\n                      <table class=\"row\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; position: relative; display: table; padding: 0;\">\r\n                        <tbody>\r\n                          <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                            <th class=\"small-12 large-12 columns first last\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; width: 520px; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 auto; padding: 0 60px 16px;\" align=\"left\" valign=\"top\">\r\n                              <table style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                                <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                  <th style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                                    <table class=\"spacer\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                                      <tbody>\r\n                                        <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                          <td class=\"s30\" height=\"30px\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; mso-line-height-rule: exactly; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 30px; font-size: 30px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                                             \r\n                                          </td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                      <h1 style=\"color: inherit; font-family: Arial,Helvetica,sans-serif; font-weight: 700; line-height: 1.4; word-wrap: normal; font-size: 28px; margin: 0 0 16px; padding: 0;\" align=\"left\">New phone number added</h1>\r\n                                    <p class=\"lead\" style=\"color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; -webkit-hyphens: none; hyphens: none; margin: 0 0 30px; padding: 0;\" align=\"left\">\r\n  A new phone number was added to your <a class=\"gray\" href=\"https://secure.login.gov\" style=\"color: #5b616a; text-align: left; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; text-decoration: none; padding: 0;\">Login.gov</a> profile.\r\n</p>\r\n\r\n<table class=\"spacer\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n  <tbody>\r\n    <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n      <td class=\"s10\" height=\"10px\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; mso-line-height-rule: exactly; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 10px; font-size: 10px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n         \r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n<table class=\"hr\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; margin: 10px auto; padding: 0;\">\r\n  <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n    <th style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0 0 10px auto;\" align=\"center\" valign=\"top\">\r\n       \r\n    </th>\r\n  </tr>\r\n</table>\r\n\r\n<p style=\"color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 0 10px; padding: 0;\" align=\"left\">\r\n  If you did not make this change, sign in to your profile and manage your phone numbers. We also recommend that you <a href=\"https://secure.login.gov/en/events/disavow?disavowal_token=i3ffOLWYW5e6YmvCdtkkmgP4bwBT0Jir6fKb9kF-rnc\" style=\"color: #0071bb; text-align: left; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; text-decoration: none; padding: 0;\">reset your password</a>.\r\n</p>\r\n\r\n                                    <table class=\"spacer\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                                      <tbody>\r\n                                        <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                          <td class=\"s30\" height=\"30px\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; mso-line-height-rule: exactly; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 30px; font-size: 30px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                                             \r\n                                          </td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                  </th>\r\n                                </tr>\r\n                              </table>\r\n                            </th>\r\n                          </tr>\r\n                        </tbody>\r\n                      </table>\r\n                      <table align=\"center\" class=\"wrapper\" style=\"width: 100%; border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; padding: 0;\">\r\n                        <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                          <td class=\"wrapper-inner\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                            <table class=\"row\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; position: relative; display: table; padding: 0;\">\r\n                              <tbody>\r\n                                <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                  <th class=\"small-12 large-12 columns first last\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; width: 520px; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 auto; padding: 0 60px 16px;\" align=\"left\" valign=\"top\">\r\n                                    <table style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                                      <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                        <th style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                                          <p style=\"color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 0 10px; padding: 0;\" align=\"left\">\r\n                                            Please do not reply to this message.\r\n                                            If you need help, visit <a href=\"https://www.login.gov/help/\" style=\"color: #0071bb; text-align: left; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; text-decoration: none; padding: 0;\">login.gov/help/</a>\r\n                                          </p>\r\n                                        </th>\r\n                                      </tr>\r\n                                    </table>\r\n                                  </th>\r\n                                </tr>\r\n                              </tbody>\r\n                            </table>\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                      <table class=\"xwrapper\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; padding: 0;\">\r\n                        <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                          <td class=\"xwrapper-inner\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                            <table class=\"row\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; position: relative; display: table; padding: 0;\">\r\n                              <tbody>\r\n                                <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                  <th class=\"small-12 large-12 columns first last\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; width: 520px; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 auto; padding: 0 60px 16px;\" align=\"left\" valign=\"top\">\r\n                                    <table class=\"hr\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; margin: 10px auto; padding: 0;\">\r\n                                      <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                        <th style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0 0 10px auto;\" align=\"center\" valign=\"top\">\r\n                                           \r\n                                        </th>\r\n                                      </tr>\r\n                                    </table>\r\n                                    <table style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                                      <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                        <th style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                                          <p style=\"color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 0 10px; padding: 0;\" align=\"left\">\r\n                                            <a style=\"text-decoration: underline; color: #0071bb; text-align: left; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; padding: 0;\" href=\"https://www.login.gov/\">About Login.gov</a>\r\n                                              |  \r\n                                            <a style=\"text-decoration: underline; color: #0071bb; text-align: left; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; padding: 0;\" href=\"https://www.login.gov/policy/\">Privacy policy</a>\r\n                                          </p>\r\n                                          <p style=\"color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 0 10px; padding: 0;\" align=\"left\">\r\n                                            Sent at 2025-05-17T19:29:43.751276Z\r\n                                          </p>\r\n                                        </th>\r\n                                        <th class=\"expander\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; visibility: hidden; width: 0; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\"></th>\r\n                                      </tr>\r\n                                    </table>\r\n                                  </th>\r\n                                </tr>\r\n                              </tbody>\r\n                            </table>\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </tbody>\r\n              </table>\r\n            </center>\r\n          </td>\r\n        </tr>\r\n      </tbody>\r\n      <!--prevent Gmail on iOS font size manipulation-->\r\n      <div style=\"display: none; white-space: nowrap; font: 15px/0 courier;\">\r\n                                 \r\n                                 \r\n               \r\n      </div>\r\n    </table>\r\n  </body>\r\n</html>','Login.gov logo\r\n\r\n**********************\r\nNew phone number added\r\n**********************\r\n\r\nA new phone number was added to your Login.gov \r\n( https://secure.login.gov ) profile.\r\n\r\nIf you did not make this change, sign in to your profile and\r\nmanage your phone numbers. We also recommend that you reset your\r\npassword \r\n( https://secure.login.gov/en/events/disavow?disavowal_token=i3ffOLWYW5e6YmvCdtkkmgP4bwBT0Jir6fKb9kF-rnc )\r\n.\r\n\r\nPlease do not reply\r\nto this message.\r\nIf you need help,\r\nvisit login.gov/help/ ( https://www.login.gov/help/ )\r\n\r\nAbout Login.gov \r\n( https://www.login.gov/ )\r\n|\r\nPrivacy policy \r\n( https://www.login.gov/policy/ )\r\n\r\nSent at\r\n2025-05-17T19:29:43.751276Z',0,0,0,0,0,0,'2025-05-17 19:29:43','2025-12-09 19:02:20','2025-12-09 19:02:20','2025-12-09 19:02:20',NULL,NULL,NULL),
(238,4,'<01010196dfbbe83c-a90c2e74-ddf2-4383-8529-68b27d9d1e44-000000@us-west-2.amazonses.com>',NULL,NULL,'New sign-in and authentication with your Login.gov account','no-reply@login.gov','\"Login.gov\"','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns=\"http://www.w3.org/1999/xhtml\" style=\"background-color: #ebf3fa; min-height: 100%;\">\r\n  <head>\r\n    <meta content=\"text/html; charset=utf-8\" http-equiv=\"Content-Type\" />\r\n    <meta content=\"width=device-width\" name=\"viewport\" />\r\n    <title>New sign-in and authentication with your Login.gov account\r\n    </title>\r\n  <style>body {\r\n-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; box-sizing: border-box; min-width: 100%; margin: 0; padding: 0; width: 100% !important;\r\n}\r\n.ExternalClass {\r\nwidth: 100%;\r\n}\r\n.ExternalClass {\r\nline-height: 100%;\r\n}\r\n#backgroundTable {\r\nmargin: 0; padding: 0; width: 100% !important; line-height: 100% !important;\r\n}\r\nimg {\r\n-ms-interpolation-mode: bicubic; clear: both; outline: none; width: auto; max-width: 100%; text-decoration: none; display: block;\r\n}\r\nbody {\r\ncolor: #5b616a; text-align: left; margin: 0; padding: 0; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5;\r\n}\r\nbody {\r\nfont-size: 16px; line-height: 1.5;\r\n}\r\na:hover {\r\ncolor: #005288;\r\n}\r\na:active {\r\ncolor: #005288;\r\n}\r\na:visited {\r\ncolor: #0071bb;\r\n}\r\nh1 a:visited {\r\ncolor: #0071bb;\r\n}\r\nh2 a:visited {\r\ncolor: #0071bb;\r\n}\r\nh3 a:visited {\r\ncolor: #0071bb;\r\n}\r\nh4 a:visited {\r\ncolor: #0071bb;\r\n}\r\nh5 a:visited {\r\ncolor: #0071bb;\r\n}\r\nh6 a:visited {\r\ncolor: #0071bb;\r\n}\r\ntable.button:hover table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button:active table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button table tr td a:visited {\r\ncolor: #fff;\r\n}\r\ntable.button.tiny:hover table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button.tiny:active table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button.tiny table tr td a:visited {\r\ncolor: #fff;\r\n}\r\ntable.button.small:hover table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button.small:active table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button.small table tr td a:visited {\r\ncolor: #fff;\r\n}\r\ntable.button.large:hover table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button.large:active table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button.large table tr td a:visited {\r\ncolor: #fff;\r\n}\r\ntable.button:hover table td {\r\ncolor: #fff; background: #005288;\r\n}\r\ntable.button:visited table td {\r\ncolor: #fff; background: #005288;\r\n}\r\ntable.button:active table td {\r\ncolor: #fff; background: #005288;\r\n}\r\ntable.button:hover table a {\r\nborder: 0 solid #005288;\r\n}\r\ntable.button:visited table a {\r\nborder: 0 solid #005288;\r\n}\r\ntable.button:active table a {\r\nborder: 0 solid #005288;\r\n}\r\ntable.button.secondary:hover table td {\r\ncolor: #fff; background: #1a467b;\r\n}\r\ntable.button.secondary:hover table a {\r\nborder: 0 solid #1a467b;\r\n}\r\ntable.button.secondary:hover table td a {\r\ncolor: #fff;\r\n}\r\ntable.button.secondary:active table td a {\r\ncolor: #fff;\r\n}\r\ntable.button.secondary table td a:visited {\r\ncolor: #fff;\r\n}\r\ntable.button.success:hover table td {\r\nbackground: #23bf5d;\r\n}\r\ntable.button.success:hover table a {\r\nborder: 0 solid #23bf5d;\r\n}\r\ntable.button.alert:hover table td {\r\nbackground: #e23317;\r\n}\r\ntable.button.alert:hover table a {\r\nborder: 0 solid #e23317;\r\n}\r\ntable.button.warning:hover table td {\r\nbackground: #cc8b00;\r\n}\r\ntable.button.warning:hover table a {\r\nborder: 0 solid #cc8b00;\r\n}\r\n.thumbnail:hover {\r\nbox-shadow: 0 0 6px 1px #0071bb80;\r\n}\r\n.thumbnail:focus {\r\nbox-shadow: 0 0 6px 1px #0071bb80;\r\n}\r\nbody.outlook p {\r\ndisplay: inline !important;\r\n}\r\n.gray:active {\r\ncolor: #5b616a;\r\n}\r\n.gray:hover {\r\ncolor: #5b616a;\r\n}\r\n.gray:visited {\r\ncolor: #5b616a;\r\n}\r\n.button.expanded.large .btn-warn-bkg:hover {\r\nbackground-color: #fff;\r\n}\r\n.usa-table th[data-sortable]:after {\r\ncontent: \"\"; border-bottom: 1px solid #0000; width: 100%; height: 0; position: absolute; bottom: 0; left: 0;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:visited {\r\ncolor: #0071bb;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:visited {\r\ncolor: #0071bb;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:hover {\r\ncolor: #205493;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:hover {\r\ncolor: #205493;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:active {\r\ncolor: #112e51;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:active {\r\ncolor: #112e51;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:focus {\r\noutline-offset: 1px; outline: 2px solid #0071bb;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:focus {\r\noutline-offset: 1px; outline: 2px solid #0071bb;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:disabled:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:disabled:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:disabled:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:disabled:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:disabled:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:disabled:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:disabled:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:focus {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:disabled:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:focus {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:hover .usa-icon&gt;g.unsorted {\r\nfill: #000;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:hover .usa-icon&gt;g.unsorted {\r\nfill: #000;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:visited {\r\ncolor: #0071bb;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:hover {\r\ncolor: #205493;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:active {\r\ncolor: #112e51;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:focus {\r\noutline-offset: 1px; outline: 2px solid #0071bb;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:disabled:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:disabled:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:disabled:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:disabled:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:focus {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:visited {\r\ncolor: #0071bb;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:hover {\r\ncolor: #205493;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:active {\r\ncolor: #112e51;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:focus {\r\noutline-offset: 1px; outline: 2px solid #0071bb;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:disabled:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:disabled:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:disabled:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:disabled:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:focus {\r\ncolor: #767676;\r\n}\r\n@media only screen and (max-width:596px) {\r\n  .small-float-center {\r\n    float: none !important; text-align: center !important; margin: 0 auto !important;\r\n  }\r\n  .small-text-center {\r\n    text-align: center !important;\r\n  }\r\n  .small-text-left {\r\n    text-align: left !important;\r\n  }\r\n  .small-text-right {\r\n    text-align: right !important;\r\n  }\r\n  .hide-for-large {\r\n    font-size: inherit !important; line-height: inherit !important; width: auto !important; max-height: none !important; display: block !important; overflow: visible !important;\r\n  }\r\n  table.body table.container .hide-for-large {\r\n    width: 100% !important; display: table !important;\r\n  }\r\n  table.body table.container .row.hide-for-large {\r\n    width: 100% !important; display: table !important;\r\n  }\r\n  table.body table.container .callout-inner.hide-for-large {\r\n    width: 100% !important; display: table-cell !important;\r\n  }\r\n  table.body table.container .show-for-large {\r\n    mso-hide: all; width: 0; overflow: hidden; display: none !important;\r\n  }\r\n  .menu.small-vertical .menu-item {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.body img {\r\n    width: auto; height: auto;\r\n  }\r\n  table.body center {\r\n    min-width: 0 !important;\r\n  }\r\n  table.body .container {\r\n    width: 95% !important;\r\n  }\r\n  table.body .columns {\r\n    box-sizing: border-box; height: auto !important; padding-left: 16px !important; padding-right: 16px !important;\r\n  }\r\n  table.body .column {\r\n    box-sizing: border-box; height: auto !important; padding-left: 16px !important; padding-right: 16px !important;\r\n  }\r\n  table.body .columns .column {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.body .columns .columns {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.body .column .column {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.body .column .columns {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.body .collapse .columns {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.body .collapse .column {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  td.small-1 {\r\n    width: 8.33333% !important; display: inline-block !important;\r\n  }\r\n  th.small-1 {\r\n    width: 8.33333% !important; display: inline-block !important;\r\n  }\r\n  td.small-2 {\r\n    width: 16.6667% !important; display: inline-block !important;\r\n  }\r\n  th.small-2 {\r\n    width: 16.6667% !important; display: inline-block !important;\r\n  }\r\n  td.small-3 {\r\n    width: 25% !important; display: inline-block !important;\r\n  }\r\n  th.small-3 {\r\n    width: 25% !important; display: inline-block !important;\r\n  }\r\n  td.small-4 {\r\n    width: 33.3333% !important; display: inline-block !important;\r\n  }\r\n  th.small-4 {\r\n    width: 33.3333% !important; display: inline-block !important;\r\n  }\r\n  td.small-5 {\r\n    width: 41.6667% !important; display: inline-block !important;\r\n  }\r\n  th.small-5 {\r\n    width: 41.6667% !important; display: inline-block !important;\r\n  }\r\n  td.small-6 {\r\n    width: 50% !important; display: inline-block !important;\r\n  }\r\n  th.small-6 {\r\n    width: 50% !important; display: inline-block !important;\r\n  }\r\n  td.small-7 {\r\n    width: 58.3333% !important; display: inline-block !important;\r\n  }\r\n  th.small-7 {\r\n    width: 58.3333% !important; display: inline-block !important;\r\n  }\r\n  td.small-8 {\r\n    width: 66.6667% !important; display: inline-block !important;\r\n  }\r\n  th.small-8 {\r\n    width: 66.6667% !important; display: inline-block !important;\r\n  }\r\n  td.small-9 {\r\n    width: 75% !important; display: inline-block !important;\r\n  }\r\n  th.small-9 {\r\n    width: 75% !important; display: inline-block !important;\r\n  }\r\n  td.small-10 {\r\n    width: 83.3333% !important; display: inline-block !important;\r\n  }\r\n  th.small-10 {\r\n    width: 83.3333% !important; display: inline-block !important;\r\n  }\r\n  td.small-11 {\r\n    width: 91.6667% !important; display: inline-block !important;\r\n  }\r\n  th.small-11 {\r\n    width: 91.6667% !important; display: inline-block !important;\r\n  }\r\n  td.small-12 {\r\n    width: 100% !important; display: inline-block !important;\r\n  }\r\n  th.small-12 {\r\n    width: 100% !important; display: inline-block !important;\r\n  }\r\n  .columns td.small-12 {\r\n    width: 100% !important; display: block !important;\r\n  }\r\n  .column td.small-12 {\r\n    width: 100% !important; display: block !important;\r\n  }\r\n  .columns th.small-12 {\r\n    width: 100% !important; display: block !important;\r\n  }\r\n  .column th.small-12 {\r\n    width: 100% !important; display: block !important;\r\n  }\r\n  table.body td.small-offset-1 {\r\n    margin-left: 8.33333% !important;\r\n  }\r\n  table.body th.small-offset-1 {\r\n    margin-left: 8.33333% !important;\r\n  }\r\n  table.body td.small-offset-2 {\r\n    margin-left: 16.6667% !important;\r\n  }\r\n  table.body th.small-offset-2 {\r\n    margin-left: 16.6667% !important;\r\n  }\r\n  table.body td.small-offset-3 {\r\n    margin-left: 25% !important;\r\n  }\r\n  table.body th.small-offset-3 {\r\n    margin-left: 25% !important;\r\n  }\r\n  table.body td.small-offset-4 {\r\n    margin-left: 33.3333% !important;\r\n  }\r\n  table.body th.small-offset-4 {\r\n    margin-left: 33.3333% !important;\r\n  }\r\n  table.body td.small-offset-5 {\r\n    margin-left: 41.6667% !important;\r\n  }\r\n  table.body th.small-offset-5 {\r\n    margin-left: 41.6667% !important;\r\n  }\r\n  table.body td.small-offset-6 {\r\n    margin-left: 50% !important;\r\n  }\r\n  table.body th.small-offset-6 {\r\n    margin-left: 50% !important;\r\n  }\r\n  table.body td.small-offset-7 {\r\n    margin-left: 58.3333% !important;\r\n  }\r\n  table.body th.small-offset-7 {\r\n    margin-left: 58.3333% !important;\r\n  }\r\n  table.body td.small-offset-8 {\r\n    margin-left: 66.6667% !important;\r\n  }\r\n  table.body th.small-offset-8 {\r\n    margin-left: 66.6667% !important;\r\n  }\r\n  table.body td.small-offset-9 {\r\n    margin-left: 75% !important;\r\n  }\r\n  table.body th.small-offset-9 {\r\n    margin-left: 75% !important;\r\n  }\r\n  table.body td.small-offset-10 {\r\n    margin-left: 83.3333% !important;\r\n  }\r\n  table.body th.small-offset-10 {\r\n    margin-left: 83.3333% !important;\r\n  }\r\n  table.body td.small-offset-11 {\r\n    margin-left: 91.6667% !important;\r\n  }\r\n  table.body th.small-offset-11 {\r\n    margin-left: 91.6667% !important;\r\n  }\r\n  table.body table.columns td.expander {\r\n    display: none !important;\r\n  }\r\n  table.body table.columns th.expander {\r\n    display: none !important;\r\n  }\r\n  table.body .right-text-pad {\r\n    padding-left: 10px !important;\r\n  }\r\n  table.body .text-pad-right {\r\n    padding-left: 10px !important;\r\n  }\r\n  table.body .left-text-pad {\r\n    padding-right: 10px !important;\r\n  }\r\n  table.body .text-pad-left {\r\n    padding-right: 10px !important;\r\n  }\r\n  table.menu {\r\n    width: 100% !important;\r\n  }\r\n  table.menu td {\r\n    width: auto !important; display: inline-block !important;\r\n  }\r\n  table.menu th {\r\n    width: auto !important; display: inline-block !important;\r\n  }\r\n  table.menu.vertical td {\r\n    display: block !important;\r\n  }\r\n  table.menu.vertical th {\r\n    display: block !important;\r\n  }\r\n  table.menu.small-vertical td {\r\n    display: block !important;\r\n  }\r\n  table.menu.small-vertical th {\r\n    display: block !important;\r\n  }\r\n  table.menu[align=center] {\r\n    width: auto !important;\r\n  }\r\n  table.button.small-expand {\r\n    width: 100% !important;\r\n  }\r\n  table.button.small-expanded {\r\n    width: 100% !important;\r\n  }\r\n  table.button.small-expand table {\r\n    width: 100%;\r\n  }\r\n  table.button.small-expanded table {\r\n    width: 100%;\r\n  }\r\n  table.button.small-expand table a {\r\n    text-align: center !important; width: 100% !important; padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.button.small-expanded table a {\r\n    text-align: center !important; width: 100% !important; padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.button.small-expand center {\r\n    min-width: 0;\r\n  }\r\n  table.button.small-expanded center {\r\n    min-width: 0;\r\n  }\r\n}\r\n@media (forced-colors:active) {\r\n  .usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:disabled {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true] {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:disabled:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:focus {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:disabled {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true] {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:disabled:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:focus {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:disabled {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true] {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:disabled:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:focus {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:disabled {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true] {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:disabled:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:focus {\r\n    color: GrayText;\r\n  }\r\n}\r\n</style></head>\r\n  <body style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; box-sizing: border-box; min-width: 100%; width: 100% !important; color: #5b616a; text-align: left; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\">\r\n    <table class=\"body\" data-made-with-foundation=\"\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; height: 100%; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" bgcolor=\"#ebf3fa\">\r\n      <tbody>\r\n        <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n          <td align=\"center\" class=\"float-center\" valign=\"top\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; float: none; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 auto; padding: 0;\">\r\n            <center style=\"width: 100%; min-width: 580px;\">\r\n              <table class=\"spacer\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                <tbody>\r\n                  <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                    <td class=\"s10\" height=\"10px\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; mso-line-height-rule: exactly; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 10px; font-size: 10px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                       \r\n                    </td>\r\n                  </tr>\r\n                </tbody>\r\n              </table>\r\n              <table class=\"container float-center\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: center; width: 580px; float: none; margin: 0 auto; padding: 0;\" bgcolor=\"#fff\">\r\n                <tbody>\r\n                  <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                    <td style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                      <table class=\"spacer\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                        <tbody>\r\n                          <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                            <td class=\"s60\" height=\"60px\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; mso-line-height-rule: exactly; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 60px; font-size: 60px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                               \r\n                            </td>\r\n                          </tr>\r\n                        </tbody>\r\n                      </table>\r\n                      <table class=\"row\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; position: relative; display: table; padding: 0;\">\r\n                        <tbody>\r\n                          <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                            <th class=\"small-12 large-12 columns first last\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; width: 520px; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 auto; padding: 0 60px 16px;\" align=\"left\" valign=\"top\">\r\n                              <table style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                                <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                  <th style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                                    <img style=\"width: 142px; height: 19px; -ms-interpolation-mode: bicubic; clear: both; outline: none; max-width: 100%; text-decoration: none; display: block;\" alt=\"Login.gov logo\" src=\"cid:6828e453d88c9_22d98c181602712@idp-i-0e767beed6d740ed9.prod.login.gov.mail\" width=\"142\" height=\"19\" />\r\n                                  </th>\r\n                                  <th class=\"expander\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; visibility: hidden; width: 0; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\"></th>\r\n                                </tr>\r\n                              </table>\r\n                            </th>\r\n                          </tr>\r\n                        </tbody>\r\n                      </table>\r\n                      <table class=\"row\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; position: relative; display: table; padding: 0;\">\r\n                        <tbody>\r\n                          <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                            <th class=\"small-12 large-12 columns first last\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; width: 520px; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 auto; padding: 0 60px 16px;\" align=\"left\" valign=\"top\">\r\n                              <table style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                                <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                  <th style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                                    <table class=\"spacer\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                                      <tbody>\r\n                                        <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                          <td class=\"s30\" height=\"30px\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; mso-line-height-rule: exactly; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 30px; font-size: 30px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                                             \r\n                                          </td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                      <h1 style=\"color: inherit; font-family: Arial,Helvetica,sans-serif; font-weight: 700; line-height: 1.4; word-wrap: normal; font-size: 28px; margin: 0 0 16px; padding: 0;\" align=\"left\">New sign-in and authentication with your Login.gov account</h1>\r\n                                    <p class=\"margin-bottom-2\" style=\"color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 0 1rem; padding: 0;\" align=\"left\">\r\n  Your Login.gov email and password were used to sign-in and authenticate on a new device.\r\n</p>\r\n\r\n<p class=\"margin-bottom-2\" style=\"color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 0 1rem; padding: 0;\" align=\"left\">\r\n  If you recognize this activity, you don’t need to do anything.\r\n</p>\r\n\r\n<p style=\"color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 0 10px; padding: 0;\" align=\"left\">\r\n  If this wasn’t you, <a href=\"https://secure.login.gov/en/events/disavow?disavowal_token=XdkJQwdfwmrtcdtOpCyksQWHrRZjd5pPqt1CsRHfoMc\" style=\"color: #0071bb; text-align: left; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; text-decoration: none; padding: 0;\">reset your password</a> and change your <a href=\"https://www.login.gov/help/manage-your-account/add-or-change-your-authentication-method/\" style=\"color: #0071bb; text-align: left; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; text-decoration: none; padding: 0;\">authentication methods</a> immediately.\r\n</p>\r\n\r\n  <div class=\"margin-top-5\" style=\"margin-top: 2.5rem;\">\r\n    <table class=\"usa-table\" style=\"border-spacing: 0; border-collapse: separate; vertical-align: top; text-align: left; width: 100%; color: #454545; font-family: Public Sans Web,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol; font-size: 1rem; line-height: 1.5; margin: 1.25rem 0; padding: 0;\">\r\n      <thead>\r\n        <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n          <th scope=\"col\" class=\"font-family-mono\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #454545; font-family: monospace; font-weight: 700; line-height: 1.4; font-size: 16px; background-clip: padding-box; border-top-left-radius: .25rem; border-top-right-radius: .25rem; margin: 0; padding: .5rem 1rem; border: 1px solid #dedede;\" align=\"left\" bgcolor=\"#f0f0f0\" valign=\"top\">\r\n            New sign-in potentially located in Rochester, NY\r\n          </th>\r\n        </tr>\r\n      </thead>\r\n      <tbody>\r\n          <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n            <td class=\"font-family-mono\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: monospace; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: .5rem 1rem; border-color: #dedede; border-style: solid; border-width: 0 1px 1px;\" align=\"left\" bgcolor=\"#fff\" valign=\"top\">\r\n              Signed in with password<br />\r\n              May 17, 2025 at 3:32 PM (Eastern)\r\n            </td>\r\n          </tr>\r\n          <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n            <td class=\"font-family-mono\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: monospace; font-weight: 400; line-height: 1.5; font-size: 16px; border-bottom-left-radius: .25rem; border-bottom-right-radius: .25rem; margin: 0; padding: .5rem 1rem; border-color: #dedede; border-style: solid; border-width: 0 1px 1px;\" align=\"left\" bgcolor=\"#fff\" valign=\"top\">\r\n              Authenticated<br />\r\n              May 17, 2025 at 3:32 PM (Eastern)\r\n            </td>\r\n          </tr>\r\n      </tbody>\r\n    </table>\r\n  </div>\r\n\r\n\r\n                                    <table class=\"spacer\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                                      <tbody>\r\n                                        <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                          <td class=\"s30\" height=\"30px\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; mso-line-height-rule: exactly; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 30px; font-size: 30px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                                             \r\n                                          </td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                  </th>\r\n                                </tr>\r\n                              </table>\r\n                            </th>\r\n                          </tr>\r\n                        </tbody>\r\n                      </table>\r\n                      <table align=\"center\" class=\"wrapper\" style=\"width: 100%; border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; padding: 0;\">\r\n                        <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                          <td class=\"wrapper-inner\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                            <table class=\"row\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; position: relative; display: table; padding: 0;\">\r\n                              <tbody>\r\n                                <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                  <th class=\"small-12 large-12 columns first last\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; width: 520px; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 auto; padding: 0 60px 16px;\" align=\"left\" valign=\"top\">\r\n                                    <table style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                                      <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                        <th style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                                          <p style=\"color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 0 10px; padding: 0;\" align=\"left\">\r\n                                            Please do not reply to this message.\r\n                                            If you need help, visit <a href=\"https://www.login.gov/help/\" style=\"color: #0071bb; text-align: left; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; text-decoration: none; padding: 0;\">login.gov/help/</a>\r\n                                          </p>\r\n                                        </th>\r\n                                      </tr>\r\n                                    </table>\r\n                                  </th>\r\n                                </tr>\r\n                              </tbody>\r\n                            </table>\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                      <table class=\"xwrapper\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; padding: 0;\">\r\n                        <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                          <td class=\"xwrapper-inner\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                            <table class=\"row\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; position: relative; display: table; padding: 0;\">\r\n                              <tbody>\r\n                                <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                  <th class=\"small-12 large-12 columns first last\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; width: 520px; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 auto; padding: 0 60px 16px;\" align=\"left\" valign=\"top\">\r\n                                    <table class=\"hr\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; margin: 10px auto; padding: 0;\">\r\n                                      <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                        <th style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0 0 10px auto;\" align=\"center\" valign=\"top\">\r\n                                           \r\n                                        </th>\r\n                                      </tr>\r\n                                    </table>\r\n                                    <table style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                                      <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                        <th style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                                          <p style=\"color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 0 10px; padding: 0;\" align=\"left\">\r\n                                            <a style=\"text-decoration: underline; color: #0071bb; text-align: left; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; padding: 0;\" href=\"https://www.login.gov/\">About Login.gov</a>\r\n                                              |  \r\n                                            <a style=\"text-decoration: underline; color: #0071bb; text-align: left; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; padding: 0;\" href=\"https://www.login.gov/policy/\">Privacy policy</a>\r\n                                          </p>\r\n                                          <p style=\"color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 0 10px; padding: 0;\" align=\"left\">\r\n                                            Sent at 2025-05-17T19:32:35.887246Z\r\n                                          </p>\r\n                                        </th>\r\n                                        <th class=\"expander\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; visibility: hidden; width: 0; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\"></th>\r\n                                      </tr>\r\n                                    </table>\r\n                                  </th>\r\n                                </tr>\r\n                              </tbody>\r\n                            </table>\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </tbody>\r\n              </table>\r\n            </center>\r\n          </td>\r\n        </tr>\r\n      </tbody>\r\n      <!--prevent Gmail on iOS font size manipulation-->\r\n      <div style=\"display: none; white-space: nowrap; font: 15px/0 courier;\">\r\n                                 \r\n                                 \r\n               \r\n      </div>\r\n    </table>\r\n  </body>\r\n</html>','Login.gov logo\r\n\r\n**********************************************************\r\nNew sign-in and authentication with your Login.gov account\r\n**********************************************************\r\n\r\nYour Login.gov email and password were used to sign-in and\r\nauthenticate on a new device.\r\n\r\nIf you recognize this activity, you don’t need to do anything.\r\n\r\nIf this wasn’t you, reset your password \r\n( https://secure.login.gov/en/events/disavow?disavowal_token=XdkJQwdfwmrtcdtOpCyksQWHrRZjd5pPqt1CsRHfoMc )\r\n and change your authentication methods \r\n( https://www.login.gov/help/manage-your-account/add-or-change-your-authentication-method/ )\r\n immediately.\r\n\r\nNew sign-in potentially located in Rochester, NY\r\n\r\nSigned in with password\r\n\r\nMay 17, 2025 at 3:32 PM (Eastern)\r\n\r\nAuthenticated\r\n\r\nMay 17, 2025 at 3:32 PM (Eastern)\r\n\r\nPlease do not reply\r\nto this message.\r\nIf you need help,\r\nvisit login.gov/help/ ( https://www.login.gov/help/ )\r\n\r\nAbout Login.gov \r\n( https://www.login.gov/ )\r\n|\r\nPrivacy policy \r\n( https://www.login.gov/policy/ )\r\n\r\nSent at\r\n2025-05-17T19:32:35.887246Z',0,0,0,0,0,0,'2025-05-17 19:32:36','2025-12-09 19:02:21','2025-12-09 19:02:21','2025-12-09 19:02:21',NULL,NULL,NULL),
(239,4,'<123757334.293504.1747510376821@bf52178f0c4f>',NULL,NULL,'SAM.gov | One-Time Password','donotreply@sam.gov','donotreply@sam.gov','rick@mavrix.one ,<br><br>Here is a one-time password you can use to sign the Terms of Use in SAM.gov. It is valid for two hours. You can only use it once.<br><br> <b>232568</b> <br><br>If you did not request an one-time password or are in need of assistance, please contact the Federal Service Desk at <a href=\"https://fsd.gov\">www.fsd.gov</a> or by telephone at 866-606-8220 (toll free) or at 334-206-7828 (internationally).<div><p>This email was sent from SAM.gov</p></div>','rick@mavrix.one ,Here is a one-time password you can use to sign the Terms of Use in SAM.gov. It is valid for two hours. You can only use it once. 232568 If you did not request an one-time password or are in need of assistance, please contact the Federal Service Desk at www.fsd.gov or by telephone at 866-606-8220 (toll free) or at 334-206-7828 (internationally).This email was sent from SAM.gov',0,0,0,0,0,0,'2025-05-17 19:32:56','2025-12-09 19:02:21','2025-12-09 19:02:21','2025-12-09 19:02:21',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(240,4,'<calendar-78f17dee-7047-49d3-a0e7-1ad8baabee2a@google.com>',NULL,NULL,'Invitation: Rick (Mavrix) <> Andy (Vector) @ Wed May 21, 2025 9am - 9:45am (MDT) (rick@mavrix.one)','andy@tfvector.com','Andy Yakulis','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v143/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v117/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation from Andy Yakulis\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"3seau7b740fvkpqtmma7auq817\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Rick (Mavrix) &lt;&gt; Andy (Vector)</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M3NlYXU3Yjc0MGZ2a3BxdG1tYTdhdXE4MTcgcmlja0BtYXZyaXgub25l&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21mMmFlOTY2NGMxOWQ5ZjUyNzdlZGRiNDliY2VjMDE3MDFlZTQxYTc4&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250521T150000Z\"></time><time itemprop=\"endDate\" datetime=\"20250521T154500Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">You have been invited by Andy Yakulis to attend an event named Rick (Mavrix) &lt;&gt; Andy (Vector) on Wednesday May 21, 2025 ⋅ 9am – 9:45am (Mountain Time - Denver).</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><a href=\"https://tfvector.zoom.us/j/96176287030?pwd=wboyrxejRjbbXFvbZvP19ZsaUh1jGl.1&amp;jst=2\" style=\"color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">Join Zoom Meeting</a><br><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/JoinAction\"><span itemprop=\"name\" content=\"tfvector.zoom.us/j/96176287030?p...\"><span itemprop=\"target\" itemscope itemtype=\"http://schema.org/EntryPoint\"><span itemprop=\"url\" content=\"https://tfvector.zoom.us/j/96176287030?pwd=wboyrxejRjbbXFvbZvP19ZsaUh1jGl.1&amp;jst=2\"><span itemprop=\"httpMethod\" content=\"GET\"><a href=\"https://tfvector.zoom.us/j/96176287030?pwd=wboyrxejRjbbXFvbZvP19ZsaUh1jGl.1&amp;jst=2\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">tfvector.zoom.us/j/96176287030?p...</a></span></span></span></span></span> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">ID: 96176287030</span><br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">passcode: 711270</span><br><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Join by phone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(US) </span><a href=\"tel:+13092053325,,96176287030#\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+1 309-205-3325</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">passcode: 711270</span><br><br><a href=\"https://www.google.com/url?q=https://applications.zoom.us/addon/invitation/detail?meetingUuid%3DFl2S8ZsQT%252FKqAvCizcAvYQ%253D%253D%26signature%3Da9334914816592748848381b32fe65267e7447de86bc86b86ab7065b2aa6ff69%26v%3D1&amp;sa=D&amp;source=calendar&amp;usg=AOvVaw27VRJkSD9CVO4xy_Ualgw7\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">Joining instructions</a><br><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Joining notes</h2></td></tr></table>------------<br><a href=\"https://www.google.com/url?q=https%3A%2F%2Fsupport.zoom.us%2Fhc%2Fen-us%2Farticles%2F360020187492-Zoom-for-GSuite-add-on-Troubleshooting%23h_01FRGZTWJYRGRDMPQW4N041QF7&amp;sa=D&amp;ust=1747972980000000&amp;usg=AOvVaw0IFb-c8qjYRpf3MZ56SgB4\" target=\"_blank\">Zoom for G Suite Add-On Help</a><br>------------<br><br>Meeting host: <a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a><br><br>Join Zoom Meeting: <br><a href=\"https://www.google.com/url?q=https%3A%2F%2Ftfvector.zoom.us%2Fj%2F96176287030%3Fpwd%3DwboyrxejRjbbXFvbZvP19ZsaUh1jGl.1%26jst%3D2&amp;sa=D&amp;ust=1747972980000000&amp;usg=AOvVaw0fFeAFQ28cB2203xzs18U9\" target=\"_blank\">https://tfvector.zoom.us/j/96176287030?pwd=wboyrxejRjbbXFvbZvP19ZsaUh1jGl.1&amp;jst=2</a></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250521T150000Z\"></time><time itemprop=\"endDate\" datetime=\"20250521T154500Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Wednesday May 21, 2025 ⋅ 9am – 9:45am (Mountain Time - Denver)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:andy@tfvector.com\">Andy Yakulis</a></span><meta itemprop=\"email\" content=\"andy@tfvector.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Andy Yakulis\"/><meta itemprop=\"email\" content=\"andy@tfvector.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M3NlYXU3Yjc0MGZ2a3BxdG1tYTdhdXE4MTcgcmlja0BtYXZyaXgub25l&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21mMmFlOTY2NGMxOWQ5ZjUyNzdlZGRiNDliY2VjMDE3MDFlZTQxYTc4&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3NlYXU3Yjc0MGZ2a3BxdG1tYTdhdXE4MTcgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21mMmFlOTY2NGMxOWQ5ZjUyNzdlZGRiNDliY2VjMDE3MDFlZTQxYTc4&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3NlYXU3Yjc0MGZ2a3BxdG1tYTdhdXE4MTcgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21mMmFlOTY2NGMxOWQ5ZjUyNzdlZGRiNDliY2VjMDE3MDFlZTQxYTc4&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3NlYXU3Yjc0MGZ2a3BxdG1tYTdhdXE4MTcgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21mMmFlOTY2NGMxOWQ5ZjUyNzdlZGRiNDliY2VjMDE3MDFlZTQxYTc4&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3NlYXU3Yjc0MGZ2a3BxdG1tYTdhdXE4MTcgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21mMmFlOTY2NGMxOWQ5ZjUyNzdlZGRiNDliY2VjMDE3MDFlZTQxYTc4&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3NlYXU3Yjc0MGZ2a3BxdG1tYTdhdXE4MTcgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21mMmFlOTY2NGMxOWQ5ZjUyNzdlZGRiNDliY2VjMDE3MDFlZTQxYTc4&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3NlYXU3Yjc0MGZ2a3BxdG1tYTdhdXE4MTcgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21mMmFlOTY2NGMxOWQ5ZjUyNzdlZGRiNDliY2VjMDE3MDFlZTQxYTc4&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M3NlYXU3Yjc0MGZ2a3BxdG1tYTdhdXE4MTcgcmlja0BtYXZyaXgub25l&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21mMmFlOTY2NGMxOWQ5ZjUyNzdlZGRiNDliY2VjMDE3MDFlZTQxYTc4&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M3NlYXU3Yjc0MGZ2a3BxdG1tYTdhdXE4MTcgcmlja0BtYXZyaXgub25l&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21mMmFlOTY2NGMxOWQ5ZjUyNzdlZGRiNDliY2VjMDE3MDFlZTQxYTc4&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','Rick (Mavrix) <> Andy (Vector)\r\nWednesday May 21, 2025 ⋅ 9am – 9:45am\r\nMountain Time - Denver\r\n\r\n	\r\nJoin Zoom Meeting\r\nhttps://tfvector.zoom.us/j/96176287030?pwd=wboyrxejRjbbXFvbZvP19ZsaUh1jGl.1&jst=2\r\n	\r\nJoin by phone\r\n(US) +1 309-205-3325\r\npasscode: 711270\r\n\r\nJoining instructions\r\nhttps://www.google.com/url?q=https://applications.zoom.us/addon/invitation/detail?meetingUuid%3DFl2S8ZsQT%252FKqAvCizcAvYQ%253D%253D%26signature%3Da9334914816592748848381b32fe65267e7447de86bc86b86ab7065b2aa6ff69%26v%3D1&sa=D&source=calendar&usg=AOvVaw27VRJkSD9CVO4xy_Ualgw7\r\n	\r\nJoining notes\r\n------------\r\nZoom for G Suite Add-On Help\r\n------------\r\n\r\nMeeting host: andy@tfvector.com\r\n\r\nJoin Zoom Meeting:\r\nhttps://tfvector.zoom.us/j/96176287030?pwd=wboyrxejRjbbXFvbZvP19ZsaUh1jGl.1&jst=2\r\n\r\n\r\nOrganizer\r\nAndy Yakulis\r\nandy@tfvector.com\r\n\r\nGuests\r\nAndy Yakulis - organizer\r\nrick@mavrix.one\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=M3NlYXU3Yjc0MGZ2a3BxdG1tYTdhdXE4MTcgcmlja0BtYXZyaXgub25l&tok=MTcjYW5keUB0ZnZlY3Rvci5jb21mMmFlOTY2NGMxOWQ5ZjUyNzdlZGRiNDliY2VjMDE3MDFlZTQxYTc4&ctz=America%2FDenver&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=M3NlYXU3Yjc0MGZ2a3BxdG1tYTdhdXE4MTcgcmlja0BtYXZyaXgub25l&tok=MTcjYW5keUB0ZnZlY3Rvci5jb21mMmFlOTY2NGMxOWQ5ZjUyNzdlZGRiNDliY2VjMDE3MDFlZTQxYTc4&ctz=America%2FDenver&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-05-18 04:03:23','2025-12-09 19:02:22','2025-12-09 19:02:22','2025-12-09 19:02:22',NULL,NULL,NULL),
(241,4,'<calendar-f29da4ab-f62a-437f-8949-9669370dda16@google.com>',NULL,NULL,'Updated invitation: Rick (Mavrix) <> Andy (Vector) @ Wed May 21, 2025 9am - 9:45am (MDT) (rick@mavrix.one)','andy@tfvector.com','Andy Yakulis','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v143/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v117/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventRescheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"3seau7b740fvkpqtmma7auq817\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Rick (Mavrix) &lt;&gt; Andy (Vector)</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M3NlYXU3Yjc0MGZ2a3BxdG1tYTdhdXE4MTcgcmlja0BtYXZyaXgub25l&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21mMmFlOTY2NGMxOWQ5ZjUyNzdlZGRiNDliY2VjMDE3MDFlZTQxYTc4&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250521T150000Z\"></time><time itemprop=\"endDate\" datetime=\"20250521T154500Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">You have been invited by Andy Yakulis to attend an event named Rick (Mavrix) &lt;&gt; Andy (Vector) on Wednesday May 21, 2025 ⋅ 9am – 9:45am (Mountain Time - Denver).</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"background-color: #e6f4ea;color: #0d5327;padding: 12px 32px; border-radius: 8px;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px;text-align: left;\" class=\"info-bar-inner\"><span style=\"font-weight: 700;\">This event has been updated</span><br/><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Thing/Video\"><meta itemprop=\"description\" content=\"Video call link updated\"/></span><div style=\"\"><span style=\"font-weight: 700;\">Changed:</span> conferencing</div></td></tr></tbody></table><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"12\" style=\"height:12px;\"><![endif]--><div style=\"height:12px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><a href=\"https://tfvector.zoom.us/j/96176287030?pwd=wboyrxejRjbbXFvbZvP19ZsaUh1jGl.1&amp;jst=2\" style=\"color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">Join Zoom Meeting</a><br><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/JoinAction\"><span itemprop=\"name\" content=\"tfvector.zoom.us/j/96176287030?p...\"><span itemprop=\"target\" itemscope itemtype=\"http://schema.org/EntryPoint\"><span itemprop=\"url\" content=\"https://tfvector.zoom.us/j/96176287030?pwd=wboyrxejRjbbXFvbZvP19ZsaUh1jGl.1&amp;jst=2\"><span itemprop=\"httpMethod\" content=\"GET\"><a href=\"https://tfvector.zoom.us/j/96176287030?pwd=wboyrxejRjbbXFvbZvP19ZsaUh1jGl.1&amp;jst=2\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">tfvector.zoom.us/j/96176287030?p...</a></span></span></span></span></span> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">ID: 96176287030</span><br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">passcode: 711270</span><br><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Join by phone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(US) </span><a href=\"tel:+13092053325,,96176287030#\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+1 309-205-3325</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">passcode: 711270</span><br><br><a href=\"https://www.google.com/url?q=https://applications.zoom.us/addon/invitation/detail?meetingUuid%3DFl2S8ZsQT%252FKqAvCizcAvYQ%253D%253D%26signature%3Da9334914816592748848381b32fe65267e7447de86bc86b86ab7065b2aa6ff69%26v%3D1&amp;sa=D&amp;source=calendar&amp;usg=AOvVaw27VRJkSD9CVO4xy_Ualgw7\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">Joining instructions</a><br><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Joining notes</h2></td></tr></table>Meeting host: <a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a><br><br>Join Zoom Meeting: <br><a href=\"https://www.google.com/url?q=https%3A%2F%2Ftfvector.zoom.us%2Fj%2F96176287030%3Fpwd%3DwboyrxejRjbbXFvbZvP19ZsaUh1jGl.1%26jst%3D2&amp;sa=D&amp;ust=1747972980000000&amp;usg=AOvVaw0fFeAFQ28cB2203xzs18U9\" target=\"_blank\">https://tfvector.zoom.us/j/96176287030?pwd=wboyrxejRjbbXFvbZvP19ZsaUh1jGl.1&amp;jst=2</a></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250521T150000Z\"></time><time itemprop=\"endDate\" datetime=\"20250521T154500Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Wednesday May 21, 2025 ⋅ 9am – 9:45am (Mountain Time - Denver)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:andy@tfvector.com\">Andy Yakulis</a></span><meta itemprop=\"email\" content=\"andy@tfvector.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Andy Yakulis\"/><meta itemprop=\"email\" content=\"andy@tfvector.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M3NlYXU3Yjc0MGZ2a3BxdG1tYTdhdXE4MTcgcmlja0BtYXZyaXgub25l&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21mMmFlOTY2NGMxOWQ5ZjUyNzdlZGRiNDliY2VjMDE3MDFlZTQxYTc4&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3NlYXU3Yjc0MGZ2a3BxdG1tYTdhdXE4MTcgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21mMmFlOTY2NGMxOWQ5ZjUyNzdlZGRiNDliY2VjMDE3MDFlZTQxYTc4&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3NlYXU3Yjc0MGZ2a3BxdG1tYTdhdXE4MTcgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21mMmFlOTY2NGMxOWQ5ZjUyNzdlZGRiNDliY2VjMDE3MDFlZTQxYTc4&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3NlYXU3Yjc0MGZ2a3BxdG1tYTdhdXE4MTcgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21mMmFlOTY2NGMxOWQ5ZjUyNzdlZGRiNDliY2VjMDE3MDFlZTQxYTc4&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3NlYXU3Yjc0MGZ2a3BxdG1tYTdhdXE4MTcgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21mMmFlOTY2NGMxOWQ5ZjUyNzdlZGRiNDliY2VjMDE3MDFlZTQxYTc4&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3NlYXU3Yjc0MGZ2a3BxdG1tYTdhdXE4MTcgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21mMmFlOTY2NGMxOWQ5ZjUyNzdlZGRiNDliY2VjMDE3MDFlZTQxYTc4&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3NlYXU3Yjc0MGZ2a3BxdG1tYTdhdXE4MTcgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21mMmFlOTY2NGMxOWQ5ZjUyNzdlZGRiNDliY2VjMDE3MDFlZTQxYTc4&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M3NlYXU3Yjc0MGZ2a3BxdG1tYTdhdXE4MTcgcmlja0BtYXZyaXgub25l&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21mMmFlOTY2NGMxOWQ5ZjUyNzdlZGRiNDliY2VjMDE3MDFlZTQxYTc4&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M3NlYXU3Yjc0MGZ2a3BxdG1tYTdhdXE4MTcgcmlja0BtYXZyaXgub25l&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21mMmFlOTY2NGMxOWQ5ZjUyNzdlZGRiNDliY2VjMDE3MDFlZTQxYTc4&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','This event has been updated\r\nChanged: conferencing\r\n\r\n\r\nRick (Mavrix) <> Andy (Vector)\r\nWednesday May 21, 2025 ⋅ 9am – 9:45am\r\nMountain Time - Denver\r\n\r\n	\r\nJoin Zoom Meeting\r\nhttps://tfvector.zoom.us/j/96176287030?pwd=wboyrxejRjbbXFvbZvP19ZsaUh1jGl.1&jst=2\r\n	\r\nJoin by phone\r\n(US) +1 309-205-3325\r\npasscode: 711270\r\n\r\nJoining instructions\r\nhttps://www.google.com/url?q=https://applications.zoom.us/addon/invitation/detail?meetingUuid%3DFl2S8ZsQT%252FKqAvCizcAvYQ%253D%253D%26signature%3Da9334914816592748848381b32fe65267e7447de86bc86b86ab7065b2aa6ff69%26v%3D1&sa=D&source=calendar&usg=AOvVaw27VRJkSD9CVO4xy_Ualgw7\r\n	\r\nJoining notes\r\nMeeting host: andy@tfvector.com\r\n\r\nJoin Zoom Meeting:\r\nhttps://tfvector.zoom.us/j/96176287030?pwd=wboyrxejRjbbXFvbZvP19ZsaUh1jGl.1&jst=2\r\n\r\n\r\nOrganizer\r\nAndy Yakulis\r\nandy@tfvector.com\r\n\r\nGuests\r\nAndy Yakulis - organizer\r\nrick@mavrix.one\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=M3NlYXU3Yjc0MGZ2a3BxdG1tYTdhdXE4MTcgcmlja0BtYXZyaXgub25l&tok=MTcjYW5keUB0ZnZlY3Rvci5jb21mMmFlOTY2NGMxOWQ5ZjUyNzdlZGRiNDliY2VjMDE3MDFlZTQxYTc4&ctz=America%2FDenver&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=M3NlYXU3Yjc0MGZ2a3BxdG1tYTdhdXE4MTcgcmlja0BtYXZyaXgub25l&tok=MTcjYW5keUB0ZnZlY3Rvci5jb21mMmFlOTY2NGMxOWQ5ZjUyNzdlZGRiNDliY2VjMDE3MDFlZTQxYTc4&ctz=America%2FDenver&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-05-18 04:03:29','2025-12-09 19:02:22','2025-12-09 19:02:22','2025-12-09 19:02:22',NULL,NULL,NULL),
(242,4,'<CAB5cvoxXGMcs9Vbi-Hs=72YqCt0EdR3AhuQBAZRjhmp+ZWhF0g@mail.gmail.com>',NULL,NULL,'=?UTF-8?Q?Re=3A_via_Nic_Vandre=2D_Open_Round=E2=80=A6?=','andy@tfvector.com','Andy Yakulis','<div dir=\"ltr\"><div>Sent an invite!</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><span><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:#776b6c;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap\">Andy Yakulis</span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap\">, </span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\"><font color=\"#9a000a\">CEO</font></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:#141414;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap\"><a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" style=\"text-decoration:none\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:#1155cc;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;vertical-align:baseline;white-space:pre;white-space:pre-wrap\"><span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\"><img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left:0px;margin-top:0px\"></span></span></a></p><div><br></div></span><div></div><div><br></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Sat, May 17, 2025 at 7:02 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div>Wednesday at 11 works as well. <div>Thanks!</div><div>Rick<br> <br><div class=\"gmail_signature\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div> <p class=\"gmail_quote\" style=\"color:rgb(0,0,0)\">On May 16, 2025 at 8:54:45 PM, Andy Yakulis (<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a>) wrote:</p> <blockquote type=\"cite\" class=\"gmail_quote\"><span><div><div></div><div>\r\n\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div>Rick,</div>\r\n<div><br></div>\r\n<div>Sorry, 4pm EST monday got filled up as we were coordinating.\r\nHow&#39;s Wed morning? 11am EST?</div>\r\n<div>\r\n<div dir=\"ltr\" class=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\">\r\n<span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(119,107,108);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\nAndy Yakulis</span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">,</span>\r\n<span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<font color=\"#9A000A\">CEO</font></span></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(20,20,20);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" style=\"text-decoration:none\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:rgb(17,85,204);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;vertical-align:baseline;white-space:pre-wrap\">\r\n<span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\">\r\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left: 0px; margin-top: 0px;\"></span></span></a></p>\r\n<div><br></div>\r\n<div><br></div>\r\n</div>\r\n</div>\r\n</div>\r\n<br></div>\r\n<br>\r\n<div class=\"gmail_quote\">\r\n<div dir=\"ltr\" class=\"gmail_attr\">On Fri, May 16, 2025 at 5:49 AM\r\nRick &lt;rick@mavrix.one&gt; wrote:<br></div>\r\n<blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div id=\"m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thanks,\r\nAndy!</div>\r\n<div id=\"m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Let’s do\r\nyour first time slot on Monday at 4p.</div>\r\n<div id=\"m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">I’m in NY,\r\nso EST.</div>\r\n<div id=\"m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">You want a\r\nZoom/Teams/Meet link?</div>\r\n<div id=\"m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Appreciate\r\nthe connect!</div>\r\n<div id=\"m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Rick</div>\r\n<br>\r\n<div id=\"m_-5266176066065057347m_1319968862344816610bloop_sign_1747396037540008960\">Rick\r\nMislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div><img style=\"height: 11px;\"></div>\r\n</div>\r\n<br>\r\n<p>On May 16, 2025 at 12:20:03 AM, Andy Yakulis (<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a>)\r\nwrote:</p>\r\n<blockquote type=\"cite\">\r\n<div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div><span>Rick</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Thank you for reaching out! Absolutely interested in\r\nspeaking with you especially if you know Nick!</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Not sure what time zone you are in, I&#39;m in MTN so I&#39;ll\r\noffer the following:</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Mon 19May:</span></div>\r\n<div><span>4pm</span></div>\r\n<div><span>5pm</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Tues, 20May</span></div>\r\n<div><span>5pm</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Wed, 21May:</span></div>\r\n<div><span>9am</span></div>\r\n<div><span>10am</span></div>\r\n<div><span>3pm</span></div>\r\n<div><span>4pm</span></div>\r\n<div>\r\n<div dir=\"ltr\" class=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\">\r\n<span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(119,107,108);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\nAndy Yakulis</span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">,</span>\r\n<span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<font color=\"#9A000A\">CEO</font></span></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(20,20,20);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" style=\"text-decoration:none\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:rgb(17,85,204);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;vertical-align:baseline;white-space:pre-wrap\">\r\n<span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\">\r\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left: 0px; margin-top: 0px;\"></span></span></a></p>\r\n<div><br></div>\r\n<div><br></div>\r\n</div>\r\n</div>\r\n</div>\r\n<br></div>\r\n<br>\r\n<div class=\"gmail_quote\">\r\n<div dir=\"ltr\" class=\"gmail_attr\">On Thu, May 15, 2025 at 5:37 AM\r\nRick &lt;rick@mavrix.one&gt; wrote:<br></div>\r\n<blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Andy,</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">\r\n<br></div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Nic Vandre\r\nsaid to reach out.</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">I’ve\r\nfollowed your work a bit over time, but recently, </div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">I&#39;ve come\r\ninto an opportunity where I think I can help make a\r\ndifference.</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">\r\n<br></div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">I’d love to\r\nschedule a call sometime this week or next</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">to see how\r\nI might help with your open round of investment.</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">\r\n<br></div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Please let\r\nme know what’s most convenient and then let’s jump on a call!</div>\r\n<div><br></div>\r\nThank you for your time and consideration,\r\n<div>Rick</div>\r\n<div><br>\r\n<div class=\"gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div><a href=\"https://ww.mislan.com\" target=\"_blank\">https://mislan.com</a><img style=\"height: 11px;\"></div>\r\n<div><br></div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n\r\n\r\n</div></div></span></blockquote>\r\n\r\n</div></div></blockquote></div>','Sent an invite!\r\n\r\nAndy Yakulis, CEO\r\n\r\nandy@tfvector.com\r\n\r\n<https://www.tfvector.com/>\r\n\r\n\r\n\r\n\r\nOn Sat, May 17, 2025 at 7:02 AM Rick <rick@mavrix.one> wrote:\r\n\r\n> Wednesday at 11 works as well.\r\n> Thanks!\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On May 16, 2025 at 8:54:45 PM, Andy Yakulis (andy@tfvector.com) wrote:\r\n>\r\n>> Rick,\r\n>>\r\n>> Sorry, 4pm EST monday got filled up as we were coordinating. How\'s Wed\r\n>> morning? 11am EST?\r\n>>\r\n>> Andy Yakulis, CEO\r\n>>\r\n>> andy@tfvector.com\r\n>>\r\n>> <https://www.tfvector.com/>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>> On Fri, May 16, 2025 at 5:49 AM Rick <rick@mavrix.one> wrote:\r\n>>\r\n>>> Thanks, Andy!\r\n>>> Let’s do your first time slot on Monday at 4p.\r\n>>> I’m in NY, so EST.\r\n>>> You want a Zoom/Teams/Meet link?\r\n>>> Appreciate the connect!\r\n>>> Rick\r\n>>>\r\n>>> Rick Mislan, PhD\r\n>>> https://mavrix.one\r\n>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>\r\n>>> On May 16, 2025 at 12:20:03 AM, Andy Yakulis (andy@tfvector.com) wrote:\r\n>>>\r\n>>> Rick\r\n>>>\r\n>>> Thank you for reaching out! Absolutely interested in speaking with you\r\n>>> especially if you know Nick!\r\n>>>\r\n>>> Not sure what time zone you are in, I\'m in MTN so I\'ll offer the\r\n>>> following:\r\n>>>\r\n>>> Mon 19May:\r\n>>> 4pm\r\n>>> 5pm\r\n>>>\r\n>>> Tues, 20May\r\n>>> 5pm\r\n>>>\r\n>>> Wed, 21May:\r\n>>> 9am\r\n>>> 10am\r\n>>> 3pm\r\n>>> 4pm\r\n>>>\r\n>>> Andy Yakulis, CEO\r\n>>>\r\n>>> andy@tfvector.com\r\n>>>\r\n>>> <https://www.tfvector.com/>\r\n>>>\r\n>>>\r\n>>>\r\n>>>\r\n>>> On Thu, May 15, 2025 at 5:37 AM Rick <rick@mavrix.one> wrote:\r\n>>>\r\n>>>> Andy,\r\n>>>>\r\n>>>> Nic Vandre said to reach out.\r\n>>>> I’ve followed your work a bit over time, but recently,\r\n>>>> I\'ve come into an opportunity where I think I can help make a\r\n>>>> difference.\r\n>>>>\r\n>>>> I’d love to schedule a call sometime this week or next\r\n>>>> to see how I might help with your open round of investment.\r\n>>>>\r\n>>>> Please let me know what’s most convenient and then let’s jump on a call!\r\n>>>>\r\n>>>> Thank you for your time and consideration,\r\n>>>> Rick\r\n>>>>\r\n>>>> Rick Mislan, PhD\r\n>>>> https://mavrix.one\r\n>>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>> https://mislan.com <https://ww.mislan.com>\r\n>>>>\r\n>>>>',0,0,0,0,0,0,'2025-05-18 04:03:28','2025-12-09 19:02:22','2025-12-09 19:02:22','2025-12-09 19:02:22',NULL,NULL,NULL),
(243,4,'<templateID=eb7f91a7-2143-468a-9572-5cacf9727482--account=60f7b6c1-712f-4754-ab54-5ecba433a7b3--messageID=b9d7dcf3-51f8-4db8-aeec-1c49d42b8270--productTags=Welcome+kjnvoihdf@wyregisteredagent.net>',NULL,NULL,'Thank You for Your Order with Buffalo Registered Agents LLC','agent@wyregisteredagent.net','Buffalo Registered Agents LLC','<p>Dear Richard,</p>\r\n<p>Thank you for placing your order with us.<!-- <span class=\"mceNonEditable\" data-mce-content=\"\"></span> --> We have received your information and are processing it now. We process orders the same day that we receive them. <!-- <span class=\"mceNonEditable\" data-mce-content=\"\"></span> --></p>\r\n<p><!-- <span class=\"mceNonEditable\" data-mce-content=\"\"></span> --></p>\r\n<h4 style=\"font-weight: bold; font-size: 18px; line-height: 24px; margin: 18px 0 0;\">Your Order Details:</h4>\r\n<p style=\"margin: 0 0 5px; font-size: 13px; line-height: 22px; color: #777777;\">Order placed on May 18, 2025</p>\r\n<p><!-- <span class=\"mceNonEditable\" data-mce-content=\"\"></span> --></p>\r\n<ul style=\"margin: 0 0 18px; list-style: square;\">\r\n<li>Registered Agent Service in Wyoming</li>\r\n</ul>\r\n<p><!-- <span class=\"mceNonEditable\" data-mce-content=\"\"></span> --></p>\r\n<ul style=\"margin: 0 0 18px; list-style: square;\">\r\n<li>Standard Wyoming Form a Company (WY) filing</li>\r\n</ul>\r\n<p><!-- <span class=\"mceNonEditable\" data-mce-content=\"\"></span> --></p>\r\n<ul style=\"margin: 0 0 18px; list-style: square;\">\r\n<li>Renewal Service</li>\r\n</ul>\r\n<p><!-- <span class=\"mceNonEditable\" data-mce-content=\"\"></span> --></p>\r\n<p><!-- <span class=\"mceNonEditable\" data-mce-content=\"\"></span> --></p>\r\n<p><!-- <span class=\"mceNonEditable\" data-mce-content=\"\"></span> --></p>\r\n<p><!-- <span class=\"mceNonEditable\" data-mce-content=\"\"></span> --></p>\r\n<p>Your company, MAVRIX, LLC, will be registered in Wyoming soon. Your state documents will be uploaded into your account once we receive them and we\'ll notify you via email.&nbsp;</p>\r\n<p>This is the email address that we use to communicate about your account and company, so set this address as trusted in your inbox (that way our emails don\'t disappear into junk or spam):</p>\r\n<p style=\"text-align: center; padding: 8px 16px; background-color: rgb(238, 238, 238);\"><a href=\"mailto:agent@wyregisteredagent.net\">agent@wyregisteredagent.net</a></p>\r\n<p><!-- <span class=\"mceNonEditable\" data-mce-content=\"\"></span> --></p>\r\n<h4 style=\"font-weight: bold; font-size: 18px; line-height: 24px; margin: 18px 0px 0px;\">Using Your Account:</h4>\r\n<p>Use your online account to make a filing, manage your domain,&nbsp; monitor company documents, pay an invoice, access registered agent information, and so much more.</p>\r\n<p style=\"text-align: left;\">https://www.wyregisteredagent.net/client-account</p>\r\n<p style=\"text-align: left;\">We\'re thrilled to have you onboard and look forward to supporting you and your new adventure!</p>\r\n<p style=\"text-align: left;\">Sincerely,</p>\r\n<p style=\"text-align: left;\"><p style=\"margin: 0 0 18px; font-size: 16px; line-height: 22px;\">Buffalo Registered Agents LLC<br>www.wyregisteredagent.net<br>agent@wyregisteredagent.net<br>307-554-1800<br>412 N Main St Suite 100 <br>Buffalo, Wyoming 82834</p></p><img width=\"1\" height=\"1\" alt=\"\" src=\"https://email.wyregisteredagent.net/o/eJw8UD2P1DAQ_TVJg-bkj3FsF27QUtBQIVGi8XicM7ubLIk3sP8ecSxXvi-9p1eS0VhR0yhJe_QuegxqlEOW_r2V5KIWSyqDTEoDchHI0ReYbHRiqg2saXxNlqdgQ7aWOVRkrkapoBWqTKyF6thSl-vtQl0-nwZ7kuxr1OTBaLSAUyCIzhtwTFyjNx6DASDm9b70wZ4mVX2eWIPXpgJ6h0DZITjhTGgt-WwBrrLvNP9ryLH4wtWC0zUAlhyARBg0YyxocjBeAdy2tdy5f6V5H-zpm1x4vcpgPp5_LMfaXksdUP16bDK3vcsmhWZZ-ssifbysM9CtwVkeKUTRE4oFZUwBnEyA6EwG7eqE1WSVVX0GbunT32s_fFl7q42pt3XZ3zRZjvSc09bljdplOxpL-nmXu_xH45a2xucB1ZWOrf1-WRcZe2LqMq_b4912JPMnAAD__4BGlSM\">\r\n','Dear Richard,\r\nThank you for placing your order with us. We have received your information and are processing it now. We process orders the same day that we receive them. \r\n\r\nYour Order Details:\r\nOrder placed on May 18, 2025\r\n\r\n\r\nRegistered Agent Service in Wyoming\r\n\r\n\r\n\r\nStandard Wyoming Form a Company (WY) filing\r\n\r\n\r\n\r\nRenewal Service\r\n\r\n\r\n\r\n\r\n\r\nYour company, MAVRIX, LLC, will be registered in Wyoming soon. Your state documents will be uploaded into your account once we receive them and we\'ll notify you via email.&nbsp;\r\nThis is the email address that we use to communicate about your account and company, so set this address as trusted in your inbox (that way our emails don\'t disappear into junk or spam):\r\nagent@wyregisteredagent.net\r\n\r\nUsing Your Account:\r\nUse your online account to make a filing, manage your domain,&nbsp; monitor company documents, pay an invoice, access registered agent information, and so much more.\r\nhttps://www.wyregisteredagent.net/client-account\r\nWe\'re thrilled to have you onboard and look forward to supporting you and your new adventure!\r\nSincerely,\r\nBuffalo Registered Agents LLCwww.wyregisteredagent.netagent@wyregisteredagent.net307-554-1800412 N Main St Suite 100 Buffalo, Wyoming 82834\r\n',0,0,0,0,0,0,'2025-05-18 19:44:40','2025-12-09 19:02:22','2025-12-09 19:02:22','2025-12-09 19:02:22',NULL,NULL,NULL),
(244,4,'<14cce3782b6b4cce86a8967741d1153c@docusign.net>',NULL,NULL,'Complete with Docusign: LBC Investor MNDA (2025)_Mavrix1.pdf','dse_NA4@docusign.net','\"Nathan Staron via Docusign\"','<html lang=3D\"en\"><head><meta http-equiv=3D\"Content-Type\" content=3D\"te=\r\nxt/html; charset=3DUTF-8\"/><meta name=3D\"viewport\" content=3D\"initial-s=\r\ncale=3D1=2E0\"/><meta name=3D\"format-detection\" content=3D\"telephone=3Dn=\r\no\"/><title>EnvelopeActivation</title></head><body style=3D\"background-c=\r\nolor:#EAEAEA;padding:2%;font-family:Helvetica,Arial,Sans Serif;\"><table=\r\n role=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\'=\r\n align=3D\'center\' width=3D\"100%\" dir=3D\"\"><tr><td></td><td width=3D\"640=\r\n\"><table role=3D\"presentation\" style=3D\"mso-table-lspace:0pt;mso-table-=\r\nrspace:0pt;border-collapse:collapse;background-color:#ffffff;max-width:=\r\n640px;\"><tr><td style=3D\"padding:10px 24px;\"><img style=3D\"border:none;=\r\n\" width=3D\"116\" src=3D\"https://docucdn-a=2Eakamaihd=2Enet/olive/images/=\r\n2=2E62=2E0/global-assets/email-templates/email-logo=2Epng\" alt=3D\"DocuS=\r\nign\"/></td></tr><tr><td style=3D\"padding:0px 24px 30px 24px;\"><table ro=\r\nle=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\' wi=\r\ndth=3D\'100%\' align=3D\'center\' style=3D\'background-color:#260559;color:#=\r\nFFFFFF;\'><tr><td style=3D\"padding:28px 36px 36px 36px;border-radius:2px=\r\n;background-color:#260559;color:#FFFFFF;font-size:16px;font-family:Helv=\r\netica,Arial,Sans Serif;width:100%;text-align:center;\" align=3D\"center\">=\r\n<img width=3D\"75\" height=3D\"75\" src=3D\"https://docucdn-a=2Eakamaihd=2En=\r\net/olive/images/2=2E76=2E0/email/iconSignWhite=2Epng\" style=3D\"width:75=\r\npx;height:75px;\" alt=3D\"\" /><table role=3D\'presentation\' border=3D\'0\' c=\r\nellspacing=3D\'0\' cellpadding=3D\'0\' width=3D\'100%\'><tr><td style=3D\"padd=\r\ning-top:24px;font-size:16px;font-family:Helvetica,Arial,Sans Serif;bord=\r\ner:none;text-align:center;color:#FFFFFF\" align=3D\"center\"> Nathan Staro=\r\nn sent you a document to review and sign=2E </td></tr></table><table ro=\r\nle=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\' wi=\r\ndth=3D\'100%\'><tr><td align=3D\"center\" style=3D\"padding-top:30px;\"><div>=\r\n<table cellspacing=3D\"0\" cellpadding=3D\"0\"><tr><td align=3D\"center\" hei=\r\nght=3D\"44\" style=3D\"font-size:15px;color:#FFFFFF;background-color:#735A=\r\nFF;font-family:Helvetica,Arial,Sans Serif;font-weight:bold;text-align:c=\r\nenter;text-decoration:none;;border-radius:2px;background-color:#735AFF;=\r\n;display: block;\"><a href=3D\"https://na4=2Edocusign=2Enet/Signing/Email=\r\nStart=2Easpx?a=3D657c2e5e-0f8c-4a82-b31a-151a7f845442&etti=3D24&acct=3D=\r\n613f2384-c6a1-4e6c-83b9-3855b481bae0&er=3D2b593fbd-14e3-4fc9-b5ec-d185d=\r\ndd0b383\" style=3D\"font-size:15px;color:#FFFFFF;background-color:#735AFF=\r\n;font-family:Helvetica,Arial,Sans Serif;font-weight:bold;text-align:cen=\r\nter;text-decoration:none;;border-radius:2px;background-color:#735AFF;;d=\r\nisplay:inline-block\"><span style=3D\"padding:0px 24px;;line-height:44px;=\r\n\"><!--[if mso]>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<![endif]--> REVIEW =\r\nDOCUMENT <!--[if mso]>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<![endif]--><=\r\n/span></a></td></tr></table></div></td></tr></table></td></tr></table><=\r\n/td></tr><tr><td style=3D\"padding:0px 24px 24px 24px;color:#000000;font=\r\n-size:16px;font-family:Helvetica,Arial,Sans Serif;background-color:whit=\r\ne;\"><table role=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpad=\r\nding=3D\'0\'><tr><td style=3D\"padding-right:12px;padding-bottom:20px;\"><i=\r\nmg style=3D\"height:40px;width:40px;border-radius:2px;\" height=3D\"40\" wi=\r\ndth=3D\"40\" src=3D\"https://NA4=2Edocusign=2Enet/Member/image=2Easpx?i=3D=\r\nlogo&l=3De61f3549-d4a4-42cf-b677-c057599d85f7\" alt=3D\"Picture of Nathan=\r\n Staron\" /></td><td style=3D\"padding-bottom:20px;\"><div style=3D\"font-f=\r\namily:Helvetica,Arial,Sans Serif;font-weight:bold;line-height:18px;font=\r\n-size:15px;color:#333333;\"> Nathan Staron </div><div style=3D\"font-fami=\r\nly:Helvetica,Arial,Sans Serif;line-height:18px;font-size:15px;color:#66=\r\n6666;\">nathan@lithiumbatterycompany=2Ecom</div></td></tr></table><span =\r\nstyle=3D\"font-size:15px;color:#333333;font-family:Helvetica,Arial,Sans =\r\nSerif;line-height:20px;\">Rick Mislan,<br /><br /> Complete with Docusig=\r\nn: LBC Investor MNDA (2025)_Mavrix1=2Epdf<br /><br /> Thank You, Nathan=\r\n Staron</span><br /></td></tr><tr><td style=3D\"padding:0px 24px 12px 24=\r\npx;background-color:#ffffff;font-family:Helvetica,Arial,Sans Serif;font=\r\n-size:11px;color:#666666;\"></td></tr><tr><td style=3D\"padding:30px 24px=\r\n 45px 24px;background-color:#EAEAEA;\"><p style=3D\"margin-bottom:1em;fon=\r\nt-family:Helvetica,Arial,Sans Serif;font-size:13px;color:#666666;line-h=\r\neight:18px;\"><b aria-level=3D\"3\" role=3D\"heading\">Do Not Share This Ema=\r\nil</b><br/> This email contains a secure link to Docusign=2E Please do =\r\nnot share this email, link, or access code with others=2E<br/></p><p st=\r\nyle=3D\"margin-bottom:1em;font-family:Helvetica,Arial,Sans Serif;font-si=\r\nze:13px;color:#666666;line-height:18px;\"><b aria-level=3D\"3\" role=3D\"he=\r\nading\">Alternate Signing Method</b><br/> Visit Docusign=2Ecom, click \'A=\r\nccess Documents\', and enter the security code:<br /> 657C2E5E0F8C4A82B3=\r\n1A151A7F8454427 </p><p style=3D\"margin-bottom:1em;font-family:Helvetica=\r\n,Arial,Sans Serif;font-size:13px;color:#666666;line-height:18px;\"><b ar=\r\nia-level=3D\"3\" role=3D\"heading\">About Docusign</b><br/> Sign documents =\r\nelectronically in just minutes=2E It\'s safe, secure, and legally bindin=\r\ng=2E Whether you\'re in an office, at home, on-the-go -- or even across =\r\nthe globe -- Docusign provides a professional trusted solution for Digi=\r\ntal Transaction Management=E2=84=A2=2E </p><p style=3D\"margin-bottom:1e=\r\nm;font-family:Helvetica,Arial,Sans Serif;font-size:13px;color:#666666;l=\r\nine-height:18px;\"><b aria-level=3D\"3\" role=3D\"heading\">Questions about =\r\nthe Document?</b><br /> If you need to modify the document or have ques=\r\ntions about the details in the document, please reach out to the sender=\r\n by emailing them directly=2E<br /><br /><b aria-level=3D\"3\" role=3D\"he=\r\nading\">Stop receiving this email</b><br /><a href=3D\'https://protect=2E=\r\ndocusign=2Enet/report-abuse?e=3DAUtomjpFak9GlbPL0zFFi11f9TM-TCgYLkRH0uL=\r\nOFFMWPsWLu8fku5FygOhyCY48PJnglK9lNAccf1odt_QbEx7LbeiGfhSSKf_3Xij6ZIodi3=\r\nb8IOv5jzeq3PkWIsYcTJpVsk3_2jpR7VuwdxvJ8H-a_HqW4kqU7Cl8dmGudTbBZqRN1X22R=\r\n1aH7OvJrm_FbjgLVjf-j7NchExYjmfe5bj7N3hgusK3ONjv_WvaCO1X-g51cY7xguFVO8hi=\r\nkxJhDHv74mRsQDz8TUz6RW3Ti5DBNfQewty3lJJfib3N45h4acub0kKhJsmnK7N3JupDTaV=\r\nJbPyjvfVgt29QpbkCLesFHD80M6qDNkVtn9F1PHsL-7bt5OCx2EqAc34QOcQ7DDidfh_HWe=\r\nPc1Vj_OAZNPKk&lang=3Den\' style=3D\'color:#2463d1;\' >Report this email</a=\r\n> or read more about <a href=3D\'https://support=2Edocusign=2Ecom/en/gui=\r\ndes/Declining-to-sign-DocuSign-Signer-Guide\' style=3D\'color:#2463d1;\' >=\r\nDeclining to sign</a> and <a href=3D\'https://support=2Edocusign=2Ecom/e=\r\nn/articles/How-do-I-manage-my-email-notifications\' style=3D\'color:#2463=\r\nd1;\' >Managing notifications</a>=2E<br /><br /> If you have trouble sig=\r\nning, visit \"<a href=3D\'https://support=2Edocusign=2Ecom/s/articles/How=\r\n-do-I-sign-a-DocuSign-document-Basic-Signing?language=3Den_US&#38;utm_c=\r\nampaign=3DGBL_XX_DBU_UPS_2211_SignNotificationEmailFooter&#38;utm_mediu=\r\nm=3Dproduct&#38;utm_source=3Dpostsend\' style=3D\'color:#2463d1;\' >How to=\r\n Sign a Document</a>\" on our <a href=3D\'https://support=2Edocusign=2Eco=\r\nm/\' style=3D\'color:#2463d1;\' >Docusign Support Center</a>, or become pa=\r\nrt of the <a href=3D\'https://community=2Edocusign=2Ecom/new-member-guid=\r\ne-142?utm_campaign=3DGBL_US_PRD_AWA_2405_CommunityCTA&#38;utm_medium=3D=\r\nemail&#38;utm_source=3Dpostsend\' style=3D\'color:#2463d1;\' >Docusign Com=\r\nmunity</a> to access tips and guidance from peers=2E<br /><br /></p><p =\r\nstyle=3D\"margin-bottom:1em;font-family:Helvetica,Arial,Sans Serif;font-=\r\nsize:13px;color:#666666;line-height:18px;\"><a href=3D\"https://www=2Edoc=\r\nusign=2Ecom/features-and-benefits/mobile?utm_campaign=3DGBL_XX_DBU_UPS_=\r\n2211_SignNotificationEmailFooter&#38;utm_medium=3Dproduct&#38;utm_sourc=\r\ne=3Dpostsend\" style=3D\"color:#2463d1;\" ><img style=3D\"margin-right:7px;=\r\nborder:none;vertical-align:middle;\" width=3D\"18\" height=3D\"18\" src=3D\"h=\r\nttps://docucdn-a=2Eakamaihd=2Enet/olive/images/2=2E62=2E0/global-assets=\r\n/email-templates/icon-download-app=2Epng\" alt=3D\"\" />Download the Docus=\r\nign App </a></p><p style=3D\"margin-bottom:1em;font-family:Helvetica,Ari=\r\nal,Sans Serif;font-size:13px;color:#666666;line-height:18px;font-size:1=\r\n0px;line-height:14px;\">This message was sent to you by Nathan Staron wh=\r\no is using the Docusign Electronic Signature Service=2E If you would ra=\r\nther not receive email from this sender you may contact the sender with=\r\n your request=2E</p></td></tr></table></td><td></td></tr></table><span =\r\nitemscope=3D\"\" itemtype=3D\"http://schema=2Eorg/EmailMessage\"><meta item=\r\nprop=3D\"text\" content=3D\"Nathan Staron sent you a document to review an=\r\nd sign=2E\"/><span itemscope=3D\"\" itemprop=3D\"about\" itemtype=3D\"http://=\r\nschema=2Eorg/CreativeWork\"><span itemscope=3D\"\" itemprop=3D\"action\" ite=\r\nmtype=3D\"http://schema=2Eorg/ViewAction\"><meta itemprop=3D\"url\" content=\r\n=3D\"https://na4=2Edocusign=2Enet/Signing/EmailStart=2Easpx?a=3D657c2e5e=\r\n-0f8c-4a82-b31a-151a7f845442&etti=3D24&acct=3D613f2384-c6a1-4e6c-83b9-3=\r\n855b481bae0&er=3D2b593fbd-14e3-4fc9-b5ec-d185ddd0b383\"/><meta itemprop=3D=\r\n\"name\" content=3D\"View Documents\"/></span></span></span></body></html>','EnvelopeActivation=\r\n Nathan Staro=\r\nn sent you a document to review and sign=2E =\r\n REVIEW =\r\nDOCUMENT  Nathan Staron nathan@lithiumbatterycompany=2EcomRick Mislan, Complete with Docusig=\r\nn: LBC Investor MNDA (2025)_Mavrix1=2Epdf Thank You, Nathan=\r\n StaronDo Not Share This Ema=\r\nil This email contains a secure link to Docusign=2E Please do =\r\nnot share this email, link, or access code with others=2EAlternate Signing Method Visit Docusign=2Ecom, click \'A=\r\nccess Documents\', and enter the security code: 657C2E5E0F8C4A82B3=\r\n1A151A7F8454427 About Docusign Sign documents =\r\nelectronically in just minutes=2E It\'s safe, secure, and legally bindin=\r\ng=2E Whether you\'re in an office, at home, on-the-go -- or even across =\r\nthe globe -- Docusign provides a professional trusted solution for Digi=\r\ntal Transaction Management=E2=84=A2=2E Questions about =\r\nthe Document? If you need to modify the document or have ques=\r\ntions about the details in the document, please reach out to the sender=\r\n by emailing them directly=2EStop receiving this emailReport this email or read more about =\r\nDeclining to sign and Managing notifications=2E If you have trouble sig=\r\nning, visit \"How to=\r\n Sign a Document\" on our Docusign Support Center, or become pa=\r\nrt of the Docusign Com=\r\nmunity to access tips and guidance from peers=2EDownload the Docus=\r\nign App This message was sent to you by Nathan Staron wh=\r\no is using the Docusign Electronic Signature Service=2E If you would ra=\r\nther not receive email from this sender you may contact the sender with=\r\n your request=2E',0,0,0,0,0,0,'2025-05-19 13:11:11','2025-12-09 19:02:23','2025-12-09 19:02:23','2025-12-09 19:02:23',NULL,NULL,NULL),
(245,4,'<CAKK=axgPDFtSyOW0zPjQU9F4=gbFNKvZodeZW2eWmpC_O3JBQA@mail.gmail.com>',NULL,NULL,'Re: Fw: Next steps!','nick@lithiumbatterycompany.com','Nick Powell','<div dir=\"ltr\">Hi Rick,<div><br></div><div>I sent over the document via docusign. Please let me know if you haven&#39;t received it. <br><br>Once it is fully executed, I&#39;ll attach the PDF for your records. <br><br>Thanks,</div><div>Nick</div></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, May 19, 2025 at 9:03 AM Nick Powell &lt;<a href=\"mailto:nick@lithiumbatterycompany.com\">nick@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\">Absolutely! Sending it now!</div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Sun, May 18, 2025 at 4:25 PM Jarrett Brownfield &lt;<a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div>\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nCan you send Rick a docusign of the attached MNDA tomorrow morning when you get a chance?</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"m_2941440385654154094m_-2208946776207730770Signature\">\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:11pt;color:black\"><b>Jarrett Brownfield </b></span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black;background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:rgb(0,36,81);margin:0px\" target=\"_blank\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:rgb(0,36,81);margin:0px\" target=\"_blank\">.com</a></u></span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" title=\"https://lithiumbatterycompany.com/\" style=\"color:rgb(0,36,81);margin:0px\" target=\"_blank\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"m_2941440385654154094m_-2208946776207730770appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div id=\"m_2941440385654154094m_-2208946776207730770divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Saturday, May 17, 2025 4:18 PM<br>\r\n<b>To:</b> Nick Powell &lt;<a href=\"mailto:nick@lithiumbatterycompany.com\" target=\"_blank\">nick@lithiumbatterycompany.com</a>&gt;; Jarrett Brownfield &lt;<a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div> </div>\r\n</div>\r\n\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Looks good.</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Go ahead and send a Docusign.</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Thank you,</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Rick</div>\r\n<br>\r\n<div>Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div><img style=\"height: 11px;\"></div>\r\n</div>\r\n<br>\r\n<p>On May 15, 2025 at 10:36:26 AM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nHi Rick, <br>\r\n<br>\r\nPlease find attached MNDA for your review. If acceptable, please let us know and <a href=\"mailto:nick@lithiumbatterycompany.com\" id=\"m_2941440385654154094m_-2208946776207730770OWAAM408789\" target=\"_blank\">\r\n@Nick Powell</a> will coordinate to send across a docusign for execution. Please let me know if any questions and we look forward to evaluating opportunities with you &amp; your team</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"m_2941440385654154094m_-2208946776207730770x_Signature\">\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:11pt;color:black\"><b>Jarrett Brownfield </b></span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black;background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:rgb(0,36,81);margin:0px\" target=\"_blank\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:rgb(0,36,81);margin:0px\" target=\"_blank\">.com</a></u></span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" title=\"https://lithiumbatterycompany.com/\" style=\"color:rgb(0,36,81);margin:0px\" target=\"_blank\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"m_2941440385654154094m_-2208946776207730770x_appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div id=\"m_2941440385654154094m_-2208946776207730770x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Thursday, May 15, 2025 8:17 AM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;<a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div> </div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Sounds good.</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Hope we can help you sooner rather than later!</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">All my best,</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Rick</div>\r\n<br>\r\n<div>Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div><img style=\"height: 11px;\"></div>\r\n</div>\r\n<br>\r\n<p>On May 14, 2025 at 1:53:19 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div>\r\n<div dir=\"ltr\">Rick, apologies for the delay - after our call yesterday we were engaged by the Shell Corporation and today we are receiving an award at the Florida SBDC event so have been in meetings nearly constantly and I fell behind on kicking over the MNDA.\r\n It’s first on my to-do list after this event!</div>\r\n</div>\r\n<div id=\"m_2941440385654154094m_-2208946776207730770x_x_ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"m_2941440385654154094m_-2208946776207730770x_x_ms-outlook-mobile-signature\">\r\n<div></div>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div id=\"m_2941440385654154094m_-2208946776207730770x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, May 13, 2025 9:02:50 AM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;<a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div> </div>\r\n</div>\r\n<div>\r\n<div id=\"m_2941440385654154094m_-2208946776207730770x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\nGot it! Will be there.. thanks!</div>\r\n<div id=\"m_2941440385654154094m_-2208946776207730770x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\nRick</div>\r\n<br>\r\n<div id=\"m_2941440385654154094m_-2208946776207730770x_x_x_bloop_sign_1747141266137078016\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div><img style=\"height: 11px;\"></div>\r\n</div>\r\n<br>\r\n<p>On May 13, 2025 at 8:59:30 AM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nHi Rick, </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nYes, 10am this morning - I just resent the zoom invite. Look forward to speaking soon</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"m_2941440385654154094m_-2208946776207730770x_x_x_Signature\">\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:11pt;color:black\"><b>Jarrett Brownfield </b></span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black;background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"m_2941440385654154094m_-2208946776207730770OWAa99fda94-e056-c619-a196-a33c2ff2877b\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:rgb(0,36,81);margin:0px\" target=\"_blank\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"m_2941440385654154094m_-2208946776207730770OWA098259f9-2a26-ebbc-a687-62be0f9f5580\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:rgb(0,36,81);margin:0px\" target=\"_blank\">.com</a></u></span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" id=\"m_2941440385654154094m_-2208946776207730770OWA6dd24376-6350-4d35-05a2-83112c570eec\" title=\"https://lithiumbatterycompany.com/\" style=\"color:rgb(0,36,81);margin:0px\" target=\"_blank\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"m_2941440385654154094m_-2208946776207730770x_x_x_appendonsend\"></div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<b>From:</b> Rick<br>\r\n<b>Sent:</b> Tuesday, May 13, 2025 7:28 AM<br>\r\n<b>To:</b> Jarrett Brownfield<br>\r\n<b>Subject:</b> Re: Next steps! </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div>Not sure if I responded accurately. </div>\r\n<div>I’m open at 10a today if that works. </div>\r\n<div>Thanks!</div>\r\n<div>Rick</div>\r\n<div><br>\r\n</div>\r\n<div>Rick Mislan, PhD</div>\r\n<div>[<a href=\"https://mavrix.one\" target=\"_blank\">https://mavrix.one</a> <a href=\"https://mavrix.one\" target=\"_blank\">https://mavrix.one</a> <a href=\"https://mavrix.one\" target=\"_blank\">https://mavrix.one</a>]<a href=\"https://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div><img height=\"11\" style=\"height: 11px;\"></div>\r\n<p style=\"color:rgb(0,0,0)\">On May 12, 2025 at 2:26:32 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\" id=\"m_2941440385654154094m_-2208946776207730770OWA6fe9a5f9-a715-dff3-4833-c48bb98fbcc5\" style=\"margin-top:0px;margin-bottom:0px\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>)\r\n wrote:</p>\r\n<blockquote>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nHi Rick, </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nWe enjoyed meeting with you as well and thanks for circling back - please find below availability and we look forward to speaking:<br>\r\n<br>\r\n(all times EST)<br>\r\nToday:  3-4:30pm<br>\r\nTuesday (5.13): 930-11am || 1130am-1pm<br>\r\nWednesday (5.14): 10am-1130<br>\r\nThursday (5.15): 12-3pm <br>\r\nFriday (5.16): 9am-3pm<br>\r\n<br>\r\n<br>\r\nBest, </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"m_2941440385654154094m_-2208946776207730770x_x_x_x_Signature\">\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:11pt;color:black\"><b>Jarrett Brownfield </b></span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black;background-color:white\">Partner</span>\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">\r\nI Chief Financial Officer</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"m_2941440385654154094m_-2208946776207730770OWA85b348c0-ceb1-fac7-e499-95d5a963cc38\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:rgb(0,36,81);margin:0px\" target=\"_blank\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"m_2941440385654154094m_-2208946776207730770OWA9b7813f6-bff5-7b2b-9efa-d558ec60b684\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:rgb(0,36,81);margin:0px\" target=\"_blank\">.com</a></u></span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" id=\"m_2941440385654154094m_-2208946776207730770OWA93baa47e-fc9a-556d-beba-278bafbdf824\" title=\"https://lithiumbatterycompany.com/\" style=\"color:rgb(0,36,81);margin:0px\" target=\"_blank\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"m_2941440385654154094m_-2208946776207730770x_x_x_x_appendonsend\"></div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div id=\"m_2941440385654154094m_-2208946776207730770x_x_x_x_divRplyFwdMsg\" dir=\"ltr\"><span style=\"font-family:Calibri,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Sunday, May 11, 2025 9:18 AM<br>\r\n<b>To:</b> <a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a> &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; <a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a> &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;; <a href=\"mailto:ronald@lithiumbatterycompany.com\" target=\"_blank\">ronald@lithiumbatterycompany.com</a> &lt;<a href=\"mailto:ronald@lithiumbatterycompany.com\" target=\"_blank\">ronald@lithiumbatterycompany.com</a>&gt;; <a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a> &lt;<a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</span>\r\n<div> </div>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Helvetica,Arial;font-size:13px\">Ok, following up again, </div>\r\n<div style=\"direction:ltr;font-family:Helvetica,Arial;font-size:13px\">this time for a request </div>\r\n<div style=\"direction:ltr;font-family:Helvetica,Arial;font-size:13px\">to discuss next steps.</div>\r\n<div style=\"direction:ltr;font-family:Helvetica,Arial;font-size:13px\"><br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Helvetica,Arial;font-size:13px\">Interested in money? :)</div>\r\n<div style=\"direction:ltr;font-family:Helvetica,Arial;font-size:13px\">Let’s set up a time to chat soon.</div>\r\n<div style=\"direction:ltr;font-family:Helvetica,Arial;font-size:13px\"><br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Helvetica,Arial;font-size:13px\">Thanks,</div>\r\n<div style=\"direction:ltr;font-family:Helvetica,Arial;font-size:13px\">Rick</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Rick Mislan, PhD</div>\r\n<div style=\"direction:ltr\"><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" id=\"m_2941440385654154094m_-2208946776207730770OWA6f2250de-935b-77bd-ce88-2cfb3cbe652e\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div style=\"direction:ltr\"><img height=\"11\" style=\"height: 11px;\"></div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr\">On May 8, 2025 at 1:33:01 PM, Rick (<a href=\"mailto:rick@mavrix.one\" id=\"m_2941440385654154094m_-2208946776207730770OWA44b57871-3029-0cf0-fc3a-86d620da512e\" style=\"margin-top:0px;margin-bottom:0px\" target=\"_blank\">rick@mavrix.one</a>) wrote:</p>\r\n<blockquote>\r\n<div style=\"direction:ltr;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\n<span style=\"background-color:rgb(255,255,255)\">Gentlemen,</span></div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\nA pleasure meeting you all!</div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\nJust wanted to let you know that</div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\nI am talking to my team <a href=\"http://airmail.calendar/2025-05-11%2019:00:00%20EDT\" id=\"m_2941440385654154094m_-2208946776207730770OWA8867e85c-bf8e-41be-d815-e78244229e9c\" target=\"_blank\">\r\ntonight</a></div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\nhere in Treasure Island. </div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\nMy goal for <a href=\"http://airmail.calendar/2025-05-11%2019:00:00%20EDT\" id=\"m_2941440385654154094m_-2208946776207730770OWA7aced99c-5963-164f-8e4a-9d96675a373f\" target=\"_blank\">\r\ntonight</a> is to</div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\ndiscuss the mavrix portfolio and</div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\nplan out a schedule of calls</div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\nwith you for next steps. </div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\nAgain, I truly enjoyed meeting </div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\nand chatting with you all! </div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\nI’ll be in touch next week!</div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\nAll my best,</div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\nRick</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n\r\n</div></blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><font size=\"4\"><b><br>Nick Powell</b></font></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><b>Client Relations Coordinator</b></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><font size=\"2\"><b>TheLithiumBatteryCompany</b></font></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><br></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\">Toll Free - 844-GET-LITHIUM</div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\">Mobile - 813-613-6105</div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><br></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><a href=\"http://www.lithiumbatterycompany.com/\" style=\"color:rgb(17,85,204)\" target=\"_blank\">www.LithiumBatteryCompany.com</a></div><div></div><div><br style=\"color:rgb(34,34,34)\"></div></div></div>\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><font size=\"4\"><b><br>Nick Powell</b></font></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><b>Client Relations Coordinator</b></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><font size=\"2\"><b>TheLithiumBatteryCompany</b></font></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><br></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\">Toll Free - 844-GET-LITHIUM</div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\">Mobile - 813-613-6105</div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><br></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><a href=\"http://www.lithiumbatterycompany.com/\" style=\"color:rgb(17,85,204)\" target=\"_blank\">www.LithiumBatteryCompany.com</a></div><div></div><div><br style=\"color:rgb(34,34,34)\"></div></div></div>','Hi Rick,\r\n\r\nI sent over the document via docusign. Please let me know if you\r\nhaven\'t received it.\r\n\r\nOnce it is fully executed, I\'ll attach the PDF for your records.\r\n\r\nThanks,\r\nNick\r\n\r\nOn Mon, May 19, 2025 at 9:03 AM Nick Powell <nick@lithiumbatterycompany.com>\r\nwrote:\r\n\r\n> Absolutely! Sending it now!\r\n>\r\n> On Sun, May 18, 2025 at 4:25 PM Jarrett Brownfield <\r\n> jarrett@lithiumbatterycompany.com> wrote:\r\n>\r\n>> Can you send Rick a docusign of the attached MNDA tomorrow morning when\r\n>> you get a chance?\r\n>>\r\n>> *Jarrett Brownfield *\r\n>>\r\n>> Partner I Chief Financial Officer\r\n>>\r\n>> Lithium Battery Company\r\n>>\r\n>> Direct: (812) 552-6854\r\n>>\r\n>> *Jarrett@\r\n>> <Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com\r\n>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>\r\n>> *Lithium Battery Company <https://lithiumbatterycompany.com/>*\r\n>> ------------------------------\r\n>> *From:* Rick <rick@mavrix.one>\r\n>> *Sent:* Saturday, May 17, 2025 4:18 PM\r\n>> *To:* Nick Powell <nick@lithiumbatterycompany.com>; Jarrett Brownfield <\r\n>> jarrett@lithiumbatterycompany.com>\r\n>> *Subject:* Re: Next steps!\r\n>>\r\n>> Looks good.\r\n>> Go ahead and send a Docusign.\r\n>> Thank you,\r\n>> Rick\r\n>>\r\n>> Rick Mislan, PhD\r\n>> https://mavrix.one\r\n>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>\r\n>> On May 15, 2025 at 10:36:26 AM, Jarrett Brownfield (\r\n>> jarrett@lithiumbatterycompany.com) wrote:\r\n>>\r\n>> Hi Rick,\r\n>>\r\n>> Please find attached MNDA for your review. If acceptable, please let us\r\n>> know and @Nick Powell <nick@lithiumbatterycompany.com> will coordinate\r\n>> to send across a docusign for execution. Please let me know if any\r\n>> questions and we look forward to evaluating opportunities with you & your\r\n>> team\r\n>>\r\n>> *Jarrett Brownfield *\r\n>>\r\n>> Partner I Chief Financial Officer\r\n>>\r\n>> Lithium Battery Company\r\n>>\r\n>> Direct: (812) 552-6854\r\n>>\r\n>> *Jarrett@\r\n>> <Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com\r\n>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>\r\n>> *Lithium Battery Company <https://lithiumbatterycompany.com/>*\r\n>> ------------------------------\r\n>> *From:* Rick <rick@mavrix.one>\r\n>> *Sent:* Thursday, May 15, 2025 8:17 AM\r\n>> *To:* Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\n>> *Subject:* Re: Next steps!\r\n>>\r\n>> Sounds good.\r\n>> Hope we can help you sooner rather than later!\r\n>> All my best,\r\n>> Rick\r\n>>\r\n>> Rick Mislan, PhD\r\n>> https://mavrix.one\r\n>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>\r\n>> On May 14, 2025 at 1:53:19 PM, Jarrett Brownfield (\r\n>> jarrett@lithiumbatterycompany.com) wrote:\r\n>>\r\n>> Rick, apologies for the delay - after our call yesterday we were engaged\r\n>> by the Shell Corporation and today we are receiving an award at the Florida\r\n>> SBDC event so have been in meetings nearly constantly and I fell behind on\r\n>> kicking over the MNDA. It’s first on my to-do list after this event!\r\n>>\r\n>> ------------------------------\r\n>> *From:* Rick <rick@mavrix.one>\r\n>> *Sent:* Tuesday, May 13, 2025 9:02:50 AM\r\n>> *To:* Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\n>> *Subject:* Re: Next steps!\r\n>>\r\n>> Got it! Will be there.. thanks!\r\n>> Rick\r\n>>\r\n>> Rick Mislan, PhD\r\n>> https://mavrix.one\r\n>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>\r\n>> On May 13, 2025 at 8:59:30 AM, Jarrett Brownfield (\r\n>> jarrett@lithiumbatterycompany.com) wrote:\r\n>>\r\n>> Hi Rick,\r\n>>\r\n>> Yes, 10am this morning - I just resent the zoom invite. Look forward to\r\n>> speaking soon\r\n>>\r\n>> *Jarrett Brownfield *\r\n>>\r\n>> Partner I Chief Financial Officer\r\n>>\r\n>> Lithium Battery Company\r\n>>\r\n>> Direct: (812) 552-6854\r\n>>\r\n>> *Jarrett@\r\n>> <Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com\r\n>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>\r\n>> *Lithium Battery Company <https://lithiumbatterycompany.com/>*\r\n>>\r\n>>\r\n>> ------------------------------\r\n>> *From:* Rick\r\n>> *Sent:* Tuesday, May 13, 2025 7:28 AM\r\n>> *To:* Jarrett Brownfield\r\n>> *Subject:* Re: Next steps!\r\n>>\r\n>> Not sure if I responded accurately.\r\n>> I’m open at 10a today if that works.\r\n>> Thanks!\r\n>> Rick\r\n>>\r\n>> Rick Mislan, PhD\r\n>> [https://mavrix.one https://mavrix.one https://mavrix.one]\r\n>> https://mavrix.one\r\n>>\r\n>> On May 12, 2025 at 2:26:32 PM, Jarrett Brownfield (\r\n>> jarrett@lithiumbatterycompany.com) wrote:\r\n>>\r\n>> Hi Rick,\r\n>>\r\n>> We enjoyed meeting with you as well and thanks for circling back - please\r\n>> find below availability and we look forward to speaking:\r\n>>\r\n>> (all times EST)\r\n>> Today:  3-4:30pm\r\n>> Tuesday (5.13): 930-11am || 1130am-1pm\r\n>> Wednesday (5.14): 10am-1130\r\n>> Thursday (5.15): 12-3pm\r\n>> Friday (5.16): 9am-3pm\r\n>>\r\n>>\r\n>> Best,\r\n>>\r\n>> *Jarrett Brownfield *\r\n>>\r\n>> Partner I Chief Financial Officer\r\n>>\r\n>> Lithium Battery Company\r\n>>\r\n>> Direct: (812) 552-6854\r\n>>\r\n>> *Jarrett@\r\n>> <Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com\r\n>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>\r\n>> *Lithium Battery Company <https://lithiumbatterycompany.com/>*\r\n>> ------------------------------\r\n>> *From:* Rick <rick@mavrix.one>\r\n>> *Sent:* Sunday, May 11, 2025 9:18 AM\r\n>> *To:* nathan@lithiumbatterycompany.com <nathan@lithiumbatterycompany.com>;\r\n>> jordan@lithiumbatterycompany.com <jordan@lithiumbatterycompany.com>;\r\n>> ronald@lithiumbatterycompany.com <ronald@lithiumbatterycompany.com>;\r\n>> jarrett@lithiumbatterycompany.com <jarrett@lithiumbatterycompany.com>\r\n>> *Subject:* Re: Next steps!\r\n>>\r\n>> Ok, following up again,\r\n>> this time for a request\r\n>> to discuss next steps.\r\n>>\r\n>> Interested in money? :)\r\n>> Let’s set up a time to chat soon.\r\n>>\r\n>> Thanks,\r\n>> Rick\r\n>>\r\n>> Rick Mislan, PhD\r\n>> https://mavrix.one\r\n>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>\r\n>> On May 8, 2025 at 1:33:01 PM, Rick (rick@mavrix.one) wrote:\r\n>>\r\n>> Gentlemen,\r\n>>\r\n>> A pleasure meeting you all!\r\n>>\r\n>> Just wanted to let you know that\r\n>> I am talking to my team tonight\r\n>> <http://airmail.calendar/2025-05-11%2019:00:00%20EDT>\r\n>> here in Treasure Island.\r\n>>\r\n>> My goal for tonight <http://airmail.calendar/2025-05-11%2019:00:00%20EDT> is\r\n>> to\r\n>> discuss the mavrix portfolio and\r\n>> plan out a schedule of calls\r\n>> with you for next steps.\r\n>>\r\n>> Again, I truly enjoyed meeting\r\n>> and chatting with you all!\r\n>>\r\n>> I’ll be in touch next week!\r\n>>\r\n>> All my best,\r\n>> Rick\r\n>>\r\n>>\r\n>\r\n> --\r\n>\r\n> *Nick Powell*\r\n> *Client Relations Coordinator*\r\n> *TheLithiumBatteryCompany*\r\n>\r\n> Toll Free - 844-GET-LITHIUM\r\n> Mobile - 813-613-6105\r\n>\r\n> www.LithiumBatteryCompany.com <http://www.lithiumbatterycompany.com/>\r\n>\r\n>\r\n\r\n-- \r\n\r\n*Nick Powell*\r\n*Client Relations Coordinator*\r\n*TheLithiumBatteryCompany*\r\n\r\nToll Free - 844-GET-LITHIUM\r\nMobile - 813-613-6105\r\n\r\nwww.LithiumBatteryCompany.com <http://www.lithiumbatterycompany.com/>',0,0,0,0,0,0,'2025-05-19 13:13:22','2025-12-09 19:02:23','2025-12-09 19:02:23','2025-12-09 19:02:23',NULL,NULL,NULL),
(246,4,'<8d68ffcbd1e14d9293c121c0f4c161d2@docusign.net>',NULL,NULL,'Get started with your free Docusign Account','dse_NA4@docusign.net','\"Docusign via Docusign\"','<html lang=3D\"en\"><head><meta http-equiv=3D\"Content-Type\" content=3D\"te=\r\nxt/html; charset=3DUTF-8\"/><meta name=3D\"viewport\" content=3D\"initial-s=\r\ncale=3D1=2E0\"/><meta name=3D\"format-detection\" content=3D\"telephone=3Dn=\r\no\"/><title>SaveACopyDefaultActivationEmail</title></head><body><table r=\r\nole=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\' a=\r\nlign=3D\'center\' width=3D\"100%\" dir=3D\"\"><tr><td></td><td width=3D\"640\">=\r\n<table style=3D\"border-collapse: collapse; background-color: #F6F8FA; m=\r\nax-width: 640px;\"><tr><td style=3D\"padding:10px 24px;\"><img style=3D\"bo=\r\nrder:none;\" width=3D\"116\" src=3D\"https://docucdn-a=2Eakamaihd=2Enet/oli=\r\nve/images/2=2E62=2E0/global-assets/email-templates/email-logo=2Epng\" al=\r\nt=3D\"DocuSign\" /></td></tr><tr><td style=3D\"padding: 0px 24px;\"><table =\r\nrole=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\' =\r\nwidth=3D\'100%\' align=3D\'center\' style=3D\'background-color:#260559;color=\r\n:#FFFFFF;\'><tr><td style=3D\"background-color: #006FF9; padding: 24px;\">=\r\n<table role=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=\r\n=3D\'0\' width=3D\'100%\'><tr><td style=3D\"color: #FFFFFF; border-radius: 2=\r\npx; font-family: Helvetica; font-style: normal; font-weight: bold; font=\r\n-size: 22px; line-height: 28px;\" align=3D\"left\"> Access your document a=\r\nnytime with an account </td></tr></table></td></tr></table></td></tr><t=\r\nr><td style=3D\"padding: 0px 24px; background-color: #F6F8FA;\"><table ro=\r\nle=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\' wi=\r\ndth=3D\'100%\' align=3D\'center\' style=3D\'background-color:#260559;color:#=\r\nFFFFFF;\'><tr><td style=3D\"color: #000000; background: #ffffff; font-fam=\r\nily: Helvetica; font-style: normal; font-weight: normal; font-size: 16p=\r\nx; line-height: 22px; padding: 24px 24px 0px 24px;\"> You have finished =\r\nsigning and your part is done=2E Once all the parties have reviewed and=\r\n signed the documents, everyone will receive a copy=2E </td></tr><tr><t=\r\nd style=3D\"color: #000000; background: #ffffff; font-family: Helvetica;=\r\n font-style: normal; font-weight: normal; font-size: 16px; line-height:=\r\n 22px; padding: 24px 24px 0px 24px;\"> You always have secure access to =\r\nthe most recent copy with a free account=2E </td></tr><tr><td style=3D\"=\r\nbackground-color: #FFFFFF; padding: 32px 0px 12px 0px;\"><table role=3D\'=\r\npresentation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\' width=3D=\r\n\'100%\'><tr><td style=3D\"padding: 6px;\" align=3D\"center\"><div><table cel=\r\nlspacing=3D\"0\" cellpadding=3D\"0\"><tr><td style=3D\"height: 32px; color: =\r\n#FFFFFF; background-color: #006FF9; padding: 10px 40px 10px 40px; displ=\r\nay: block; \"><a href=3D\"https://na=2Eaccount=2Edocusign=2Ecom/managed_t=\r\noken/v1/redeem?mtid=3D60ed516a-67c6-47ee-8141-f9de89bc52fd&mtsec=3DgZnW=\r\nIpc1ydq-lzNm9dc225GaGW1erYB5q5GzRc747NY\" style=3D\"font-family: Helvetic=\r\na; font-style: normal; font-weight: bold; font-size: 16px; line-height:=\r\n 32px; color: #FFFFFF; background-color: #006FF9; text-align: center; t=\r\next-decoration: none; display: inline-block; \"><span style=3D\"padding: =\r\n0px 24px; line-height: 32px;\"><!--[if mso]>&nbsp;&nbsp;&nbsp;&nbsp;&nbs=\r\np;&nbsp;<![endif]--> Access My Document <!--[if mso]>&nbsp;&nbsp;&nbsp;=\r\n&nbsp;&nbsp;&nbsp;<![endif]--></span></a></td></tr></table></div></td><=\r\n/tr></table></td></tr><tr><td style=3D\"color: #000000; background: #fff=\r\nfff; font-family: Helvetica; font-style: normal; font-weight: normal; f=\r\nont-size: 16px; line-height: 22px; padding: 24px 24px 0px 24px;\"> Docus=\r\nign eSignature is the safe, secure, and legally binding way to sign you=\r\nr documents electronically=2E </td></tr><tr><td style=3D\"color: #000000=\r\n; background: #ffffff; font-family: Helvetica; font-style: normal; font=\r\n-weight: normal; font-size: 16px; line-height: 22px; padding: 24px 24px=\r\n 0px 24px;\"> A Docusign account lets you also track what happens next, =\r\nsee who needs to sign, and who receives a copy=2E </td></tr><tr><td sty=\r\nle=3D\"background-color: #FFFFFF; padding: 0px 24px;\" align=3D\"center\"><=\r\ntable style=3D\"width: 100%;\" cellspacing=3D\"0\" cellpadding=3D\"0\" align=3D=\r\n\"center\"><tr><td style=3D\"background-color: #FFFFFF; padding: 24px 24px=\r\n 0px 24px; border-bottom: solid; border-bottom-color: #D8D8D8; border-b=\r\nottom-width: 1px;\" align=3D\"center\"></td></tr></table></td></tr><tr><td=\r\n style=3D\"background-color: #FFFFFF; padding: 24px;\"><table style=3D\"ma=\r\nx-width: 350px;\" align=3D\"center\"><td style=3D\"font-family: Helvetica; =\r\nfont-size: 12px; color: #767677; line-height: 18px;\"><p style=3D\"font-f=\r\namily: Helvetica; font-size: 12px; color: #767677; line-height: 18px;\" =\r\nalign=3D\"center\"><b aria-level=3D\"3\" role=3D\"heading\">Do Not Share This=\r\n Email</b><br /> This email contains a secure link to Docusign=2E Pleas=\r\ne do not share this email, link, or access code with others=2E </p></td=\r\n></table></td></tr></table></td></tr><tr><td style=3D\"padding: 24px;\" a=\r\nlign=3D\"center\"><table style=3D\"max-width: 350px;\" align=3D\"center\"><tr=\r\n><td style=3D\"margin-bottom:1em;font-family:Helvetica,Arial,Sans Serif;=\r\nfont-size:13px;color:#666666;line-height:18px;\" align=3D\"center\"><p sty=\r\nle=3D\"margin-bottom:1em;font-family:Helvetica,Arial,Sans Serif;font-siz=\r\ne:13px;color:#666666;line-height:18px;\" align=3D\"center\"><a href=3D\"htt=\r\nps://www=2Edocusign=2Ecom/features-and-benefits/mobile?ECID%3D26160%26e=\r\nlqCampaignId%3D26160%26LS%3DWW_OMR_BOTH_ProdEmailMobileCTA_2021-11%26ut=\r\nm_campaign%3DWW_OMR_BOTH_ProdEmailMobileCTA_2021-11%26utm_content%3DMob=\r\nileApp%26utm_term%3DNewActivationEmail%26Channel%3DDDCUS000143525633%26=\r\ncName%3DProduct%2520Email%2520Notifications%26utm_medium%3Dcustom%26utm=\r\n_source%3Dproduct\" style=3D\"color:#2463d1;\">Download the Docusign Mobil=\r\ne App </a></p></td></tr></table></td></tr></table></td><td></td></tr></=\r\ntable><span itemscope=3D\"\" itemtype=3D\"http://schema=2Eorg/EmailMessage=\r\n\"><meta itemprop=3D\"text\" content=3D\" sent you a document to review and=\r\n sign=2E\"/><span itemscope=3D\"\" itemprop=3D\"about\" itemtype=3D\"http://s=\r\nchema=2Eorg/CreativeWork\"><span itemscope=3D\"\" itemprop=3D\"action\" item=\r\ntype=3D\"http://schema=2Eorg/ViewAction\"><meta itemprop=3D\"url\" content=3D=\r\n\"https://na=2Eaccount=2Edocusign=2Ecom/managed_token/v1/redeem?mtid=3D6=\r\n0ed516a-67c6-47ee-8141-f9de89bc52fd&mtsec=3DgZnWIpc1ydq-lzNm9dc225GaGW1=\r\nerYB5q5GzRc747NY\"/><meta itemprop=3D\"name\" content=3D\"View Documents\"/>=\r\n</span></span></span></body></html>','SaveACopyDefaultActivationEmail=\r\n=\r\n Access your document a=\r\nnytime with an account  You have finished =\r\nsigning and your part is done=2E Once all the parties have reviewed and=\r\n signed the documents, everyone will receive a copy=2E  You always have secure access to =\r\nthe most recent copy with a free account=2E  Access My Document  Docus=\r\nign eSignature is the safe, secure, and legally binding way to sign you=\r\nr documents electronically=2E  A Docusign account lets you also track what happens next, =\r\nsee who needs to sign, and who receives a copy=2E Do Not Share This=\r\n Email This email contains a secure link to Docusign=2E Pleas=\r\ne do not share this email, link, or access code with others=2E Download the Docusign Mobil=\r\ne App =\r\n',0,0,0,0,0,0,'2025-05-19 15:29:32','2025-12-09 19:02:23','2025-12-09 19:02:23','2025-12-09 19:02:23',NULL,NULL,NULL),
(247,4,'<1665574769.671021.1747668640309.JavaMail.zimbra@registeredagentsinc.com>',NULL,NULL,'MAVRIX, LLC','filings@registeredagentsinc.com','\"Registered Agents, Inc\"','<html><body><div style=\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000\"><div id=\"zimbraEditorContainer\" style=\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000\" class=\"18\">Hello Rick,</div><div style=\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000\" class=\"18\">It was so nice to speak with you today!&nbsp;</div><div style=\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000\" class=\"18\"><br data-mce-bogus=\"1\"></div><div style=\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000\" class=\"18\">Please reply to this email with your 3 alternative names in order of preference and we will update the name and file that.&nbsp;</div><div style=\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000\" class=\"18\"><br data-mce-bogus=\"1\"></div><div style=\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000\" class=\"18\">If&nbsp;you&nbsp;need&nbsp;any&nbsp;further&nbsp;assistance&nbsp;please&nbsp;let&nbsp;me&nbsp;know&nbsp;as&nbsp;I&nbsp;am&nbsp;always&nbsp;happy&nbsp;to&nbsp;help!&nbsp;🙂<br></div><div style=\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000\" class=\"18\"><br data-mce-bogus=\"1\"></div><div style=\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000\" class=\"18\">Hillary Cox<br><div data-marker=\"__SIG_PRE__\"><div>Registered Agents Inc.<br></div><div>30 N. Gould St. Suite R</div><div>Sheridan, WY 82801</div><div>307-200-2803<br>www.registeredagentsinc.com<br>filings@registeredagentsinc.com<br></div></div></div></div></body></html>','Hello Rick, \r\nIt was so nice to speak with you today! \r\n\r\nPlease reply to this email with your 3 alternative names in order of preference and we will update the name and file that. \r\n\r\nIf you need any further assistance please let me know as I am always happy to help! 🙂 \r\n\r\nHillary Cox \r\nRegistered Agents Inc. \r\n30 N. Gould St. Suite R \r\nSheridan, WY 82801 \r\n307-200-2803 \r\nwww.registeredagentsinc.com \r\nfilings@registeredagentsinc.com ',0,0,0,0,0,0,'2025-05-19 15:30:40','2025-12-09 19:02:24','2025-12-09 19:02:24','2025-12-09 19:02:24',NULL,NULL,NULL),
(248,4,' <LV3PR22MB4438F379DDA5E8229AEE7C27A29CA@LV3PR22MB4438.namprd22.prod.outlook.com>',NULL,NULL,'SOF Week Follow Up','Chris@buildmo.com','Chris Sargent','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nRick,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nI wanted to reach out and discuss with you more the American Made Drone Consortium, Mavrix. If you could give me a brief overview on your initiative, I would be very appreciative. I have visited your website, however it looks&nbsp;like it won\'t be fully up an running\r\n for another six weeks or so. Thank you.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"Signature\" class=\"elementToProof\">\r\n<p style=\"margin-top: 0px; margin-bottom: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 8pt; color: rgb(0, 0, 0); line-height: 11.2px;\"><img width=\"331\" height=\"39\" style=\"width: 248.99pt; height: 29.99pt; max-width: 800px; min-width: auto; min-height: auto; margin: 0px;\" data-outlook-trace=\"F:1|T:1\" src=\"cid:4c09aeb7-9505-4275-8357-f4d069e0efae\"></span></p>\r\n<p style=\"margin-top: 0px; margin-bottom: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 8pt; color: rgb(34, 34, 34); background-color: white; line-height: 11.2px;\"><i>A Service-Disabled Veteran-Owned&nbsp;Small Business</i></span></p>\r\n<p style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 8pt; color: rgb(237, 125, 49); line-height: 11.2px;\"><b>________________________________________________________</b></span></p>\r\n<p style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: black; background-color: white; line-height: 12.6px;\"><a href=\"mailto:chris@buildmo.com\" title=\"chris@buildmo.com\" style=\"text-decoration: none; margin-top: 0px; margin-bottom: 0px;\"><img id=\"imageSelected1\" width=\"107\" height=\"89\" style=\"width: 107px; height: 89px; margin-top: 0px; margin-bottom: 0px;\" data-outlook-trace=\"F:1|T:1\" src=\"cid:25900d13-8a94-43bd-9754-b95dd487d086\"></a></span></p>\r\n<p style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(253, 151, 31); line-height: 14px;\"><b>Chris Sargent&nbsp;</b></span></p>\r\n<p style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(0, 0, 0); line-height: 14px;\">Email: Chris@buildmo.com&nbsp;</span></p>\r\n<p style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(0, 0, 0); line-height: 14px;\">Mobile</span><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black; line-height: 14px;\">:\r\n 619 721 5080</span></p>\r\n<p style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(5, 99, 193); line-height: 14px;\"><a href=\"https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764\" target=\"_blank\" rel=\"noopener noreferrer\" data-auth=\"NotApplicable\" data-linkindex=\"1\" data-event-added=\"1\" style=\"margin: 0px;\">5380\r\n Eisenhower Ave, Suite C</a></span></p>\r\n<p style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(5, 99, 193); line-height: 14px;\"><u><a href=\"https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764\" target=\"_blank\" rel=\"noopener noreferrer\" data-auth=\"NotApplicable\" data-linkindex=\"2\" data-event-added=\"1\" style=\"margin: 0px;\">Alexandria,\r\n Virginia 22304</a></u></span></p>\r\n<p style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(243, 144, 29); line-height: 14px;\">​</span></p>\r\n<p style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: &quot;Segoe UI Web (West European)&quot;, &quot;Segoe UI&quot;, -apple-system, BlinkMacSystemFont, Roboto, &quot;Helvetica Neue&quot;, sans-serif; font-size: 10pt; color: rgb(243, 144, 29); background-color: rgb(255, 255, 255); line-height: 14px;\">Innovation\r\n Bootcamp by the seat: <a href=\"https://www.gsaadvantage.gov/advantage/ws/catalog/product_detail?gsin=11000095666640\" style=\"margin: 0px; background-color: rgb(255, 255, 255); text-align: left;\">\r\nProduct Detail (gsaadvantage.gov)</a></span></p>\r\n<p style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(243, 144, 29); line-height: 14px;\">NDAA Compliant COTS sUAS by the seat:\r\n<a href=\"https://www.gsaadvantage.gov/advantage/ws/catalog/product_detail?gsin=11000095666641\" style=\"margin-top: 0px; margin-bottom: 0px;\">\r\nProduct Detail (gsaadvantage.gov)</a></span></p>\r\n<p style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"color: rgb(0, 0, 0);\"><br>\r\n</span></p>\r\n<div style=\"margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<span style=\"line-height: 12.6px;\"><br>\r\n</span><br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Rick,\r\n\r\nI wanted to reach out and discuss with you more the American Made Drone Consortium, Mavrix. If you could give me a brief overview on your initiative, I would be very appreciative. I have visited your website, however it looks like it won\'t be fully up an running for another six weeks or so. Thank you.\r\n\r\n\r\n[cid:4c09aeb7-9505-4275-8357-f4d069e0efae]\r\n\r\nA Service-Disabled Veteran-Owned Small Business\r\n\r\n________________________________________________________\r\n\r\n[cid:25900d13-8a94-43bd-9754-b95dd487d086]<mailto:chris@buildmo.com>\r\n\r\nChris Sargent\r\n\r\nEmail: Chris@buildmo.com\r\n\r\nMobile: 619 721 5080\r\n\r\n5380 Eisenhower Ave, Suite C<https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764>\r\n\r\nAlexandria, Virginia 22304<https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764>\r\n\r\n​\r\n\r\nInnovation Bootcamp by the seat: Product Detail (gsaadvantage.gov)<https://www.gsaadvantage.gov/advantage/ws/catalog/product_detail?gsin=11000095666640>\r\n\r\nNDAA Compliant COTS sUAS by the seat: Product Detail (gsaadvantage.gov)<https://www.gsaadvantage.gov/advantage/ws/catalog/product_detail?gsin=11000095666641>\r\n\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-05-19 15:34:53','2025-12-09 19:02:24','2025-12-09 19:02:24','2025-12-09 19:02:24',NULL,NULL,NULL),
(249,4,'<1ef3ec637eb1408ca4ba5d5a0d0edafc@docusign.net>',NULL,NULL,'Completed: Complete with Docusign: LBC Investor MNDA (2025)_Mavrix1.pdf','dse_NA4@docusign.net','\"Nathan Staron via Docusign\"','<html lang=3D\"en\"><head><meta http-equiv=3D\"Content-Type\" content=3D\"te=\r\nxt/html; charset=3DUTF-8\"/><meta name=3D\"viewport\" content=3D\"initial-s=\r\ncale=3D1=2E0\"/><meta name=3D\"format-detection\" content=3D\"telephone=3Dn=\r\no\"/><title>RecipientEnvelopeComplete</title></head><body style=3D\"backg=\r\nround-color:#EAEAEA;padding:2%;font-family:Helvetica,Arial,Sans Serif;\"=\r\n><table role=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpaddin=\r\ng=3D\'0\' align=3D\'center\' width=3D\"100%\" dir=3D\"\"><tr><td></td><td width=\r\n=3D\"640\"><table role=3D\"presentation\" style=3D\"mso-table-lspace:0pt;mso=\r\n-table-rspace:0pt;border-collapse:collapse;background-color:#ffffff;max=\r\n-width:640px;\"><tr><td style=3D\"padding:10px 24px;\"><img style=3D\"borde=\r\nr:none;\" width=3D\"116\" src=3D\"https://docucdn-a=2Eakamaihd=2Enet/olive/=\r\nimages/2=2E62=2E0/global-assets/email-templates/email-logo=2Epng\" alt=3D=\r\n\"DocuSign\"/></td></tr><tr><td style=3D\"padding:0px 24px 30px 24px;\"><ta=\r\nble role=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D=\r\n\'0\' width=3D\'100%\' align=3D\'center\' style=3D\'background-color:#260559;c=\r\nolor:#FFFFFF;\'><tr><td style=3D\"padding:28px 10px 36px 10px;border-radi=\r\nus:2px;background-color:#260559;color:#FFFFFF;font-size:16px;font-famil=\r\ny:Helvetica,Arial,Sans Serif;width:100%;text-align:center;\" align=3D\"ce=\r\nnter\"><img width=3D\"75\" height=3D\"75\" src=3D\"https://docucdn-a=2Eakamai=\r\nhd=2Enet/olive/images/2=2E76=2E0/email/iconFileWithCheckWhite=2Epng\" st=\r\nyle=3D\"width:75px;height:75px;\" alt=3D\"\" /><table role=3D\'presentation\'=\r\n border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\' width=3D\'100%\'><tr><t=\r\nd style=3D\"padding-top:24px;font-size:16px;font-family:Helvetica,Arial,=\r\nSans Serif;border:none;text-align:center;color:#FFFFFF\" align=3D\"center=\r\n\"> Your document has been completed </td></tr></table><table role=3D\'pr=\r\nesentation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\' width=3D\'1=\r\n00%\'><tr><td align=3D\"center\" style=3D\"padding-top:30px;\"><div><table c=\r\nellspacing=3D\"0\" cellpadding=3D\"0\"><tr><td align=3D\"center\" height=3D\"4=\r\n4\" style=3D\"font-size:14px;color:#FFFFFF;background-color:#260559;font-=\r\nfamily:Helvetica,Arial,Sans Serif;font-weight:bold;text-align:center;te=\r\nxt-decoration:none;;border-radius:2px;border: 1px solid #FFFFFF;backgro=\r\nund-color:#260559;height:100%;display:block;\"><a href=3D\"https://na4=2E=\r\ndocusign=2Enet/Signing/EmailStart=2Easpx?a=3D45706c1f-0068-4f06-ae45-47=\r\n90596395bd&etti=3D43&r=3D2b593fbd-14e3-4fc9-b5ec-d185ddd0b383\" style=3D=\r\n\"padding:0px 12px;;font-size:14px;color:#FFFFFF;background-color:#26055=\r\n9;font-family:Helvetica,Arial,Sans Serif;font-weight:bold;text-align:ce=\r\nnter;text-decoration:none;;display:inline-block\"><span style=3D\"line-he=\r\night:44px;\"><!--[if mso]>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<![endif]-=\r\n-> VIEW COMPLETED DOCUMENT <!--[if mso]>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=\r\nnbsp;<![endif]--></span></a></td></tr></table></div></td></tr></table><=\r\n/td></tr></table></td></tr><tr><td style=3D\"padding:0px 24px 24px 24px;=\r\ncolor:#000000;font-size:16px;font-family:Helvetica,Arial,Sans Serif;bac=\r\nkground-color:white;\"><table role=3D\'presentation\' border=3D\'0\' cellspa=\r\ncing=3D\'0\' cellpadding=3D\'0\'><tr><td style=3D\"padding-right:12px;paddin=\r\ng-bottom:20px;\"><img style=3D\"height:40px;width:40px;border-radius:2px;=\r\n\" height=3D\"40\" width=3D\"40\" src=3D\"https://NA4=2Edocusign=2Enet/Member=\r\n/image=2Easpx?i=3Dlogo&l=3De61f3549-d4a4-42cf-b677-c057599d85f7\" alt=3D=\r\n\"Picture of Nathan Staron\" /></td><td style=3D\"padding-bottom:20px;\"><d=\r\niv style=3D\"font-family:Helvetica,Arial,Sans Serif;font-weight:bold;lin=\r\ne-height:18px;font-size:15px;color:#333333;\"> Nathan Staron </div><div =\r\nstyle=3D\"font-family:Helvetica,Arial,Sans Serif;line-height:18px;font-s=\r\nize:15px;color:#666666;\">nathan@lithiumbatterycompany=2Ecom</div></td><=\r\n/tr></table><p style=3D\"font-size:15px;color:#333333;font-family:Helvet=\r\nica,Arial,Sans Serif;line-height:20px;\">All parties have completed Comp=\r\nlete with Docusign: LBC Investor MNDA (2025)_Mavrix1=2Epdf=2E</p></td><=\r\n/tr><tr><td style=3D\"padding:0px 24px 12px 24px;background-color:#fffff=\r\nf;font-family:Helvetica,Arial,Sans Serif;font-size:11px;color:#666666;\"=\r\n></td></tr><tr><td style=3D\"padding:30px 24px 45px 24px;background-colo=\r\nr:#EAEAEA;\"><p style=3D\"margin-bottom:1em;font-family:Helvetica,Arial,S=\r\nans Serif;font-size:13px;color:#666666;line-height:18px;\"><b aria-level=\r\n=3D\"3\" role=3D\"heading\">Do Not Share This Email</b><br/> This email con=\r\ntains a secure link to Docusign=2E Please do not share this email, link=\r\n, or access code with others=2E<br/></p><p style=3D\"margin-bottom:1em;f=\r\nont-family:Helvetica,Arial,Sans Serif;font-size:13px;color:#666666;line=\r\n-height:18px;\"><b aria-level=3D\"3\" role=3D\"heading\">Alternate Signing M=\r\nethod</b><br/> Visit Docusign=2Ecom, click \'Access Documents\', and ente=\r\nr the security code:<br /> 45706C1F00684F06AE454790596395BD7 </p><p sty=\r\nle=3D\"margin-bottom:1em;font-family:Helvetica,Arial,Sans Serif;font-siz=\r\ne:13px;color:#666666;line-height:18px;\"><b aria-level=3D\"3\" role=3D\"hea=\r\nding\">About Docusign</b><br/> Sign documents electronically in just min=\r\nutes=2E It\'s safe, secure, and legally binding=2E Whether you\'re in an =\r\noffice, at home, on-the-go -- or even across the globe -- Docusign prov=\r\nides a professional trusted solution for Digital Transaction Management=\r\n=E2=84=A2=2E </p><p style=3D\"margin-bottom:1em;font-family:Helvetica,Ar=\r\nial,Sans Serif;font-size:13px;color:#666666;line-height:18px;\"><b aria-=\r\nlevel=3D\"3\" role=3D\"heading\">Questions about the Document?</b><br /> If=\r\n you need to modify the document or have questions about the details in=\r\n the document, please reach out to the sender by emailing them directly=\r\n=2E<br /><br /><b aria-level=3D\"3\" role=3D\"heading\">Stop receiving this=\r\n email</b><br /><a href=3D\'https://protect=2Edocusign=2Enet/report-abus=\r\ne?e=3DAUtomjpFak9GlbPL0zFFi138crCSRY-5ytSUVr-rZ9f1ZvfQa8sTP5Id-VAsgE5B8=\r\nP86jYBaLQuN7fQFgjJrfOUtv7NHhupp0a7TQgGN5hh1Vv64JsPHBP7vYfS3s92idKM6Dh8g=\r\nzQEGpbvpslfFjnbyulgILbWNekSttJOcsrXt1gqyq6L1NbWEmvXDEAYuqrrKEAFyDorhuGc=\r\nRtBjmcv26qM7JINH42mlkabQ9TScOMnszWKgW3Uu3Y5MVBJT4aCURWeWTfiS97aY4HBCWyZ=\r\n1KGA7j5WR6En7sLYMifYCLOHBfeJEy23J3C2pW9m4__vY_L5gG7ylOBR_ClIP3ibhl05EQV=\r\nSHK0PwSe-GwZLIfSeYXGQI7ANNjoKQREuL3SfUubdhoFXcqlFoPutQcvs0bHfVxzfLOAZA6=\r\nBZvcMxZtgapbpi0AhVUsFw0sdz1L2b5w4EHcVuQp8deR0SI73Ho&lang=3Den\' style=3D=\r\n\'color:#2463d1;\' >Report this email</a> or read more about <a href=3D\'h=\r\nttps://support=2Edocusign=2Ecom/en/guides/Declining-to-sign-DocuSign-Si=\r\ngner-Guide\' style=3D\'color:#2463d1;\' >Declining to sign</a> and <a href=\r\n=3D\'https://support=2Edocusign=2Ecom/en/articles/How-do-I-manage-my-ema=\r\nil-notifications\' style=3D\'color:#2463d1;\' >Managing notifications</a>=2E=\r\n<br /><br /> If you have trouble signing, visit \"<a href=3D\'https://sup=\r\nport=2Edocusign=2Ecom/s/articles/How-do-I-sign-a-DocuSign-document-Basi=\r\nc-Signing?language=3Den_US&#38;utm_campaign=3DGBL_XX_DBU_UPS_2211_SignN=\r\notificationEmailFooter&#38;utm_medium=3Dproduct&#38;utm_source=3Dpostse=\r\nnd\' style=3D\'color:#2463d1;\' >How to Sign a Document</a>\" on our <a hre=\r\nf=3D\'https://support=2Edocusign=2Ecom/\' style=3D\'color:#2463d1;\' >Docus=\r\nign Support Center</a>, or become part of the <a href=3D\'https://commun=\r\nity=2Edocusign=2Ecom/new-member-guide-142?utm_campaign=3DGBL_US_PRD_AWA=\r\n_2405_CommunityCTA&#38;utm_medium=3Demail&#38;utm_source=3Dpostsend\' st=\r\nyle=3D\'color:#2463d1;\' >Docusign Community</a> to access tips and guida=\r\nnce from peers=2E<br /><br /></p><p style=3D\"margin-bottom:1em;font-fam=\r\nily:Helvetica,Arial,Sans Serif;font-size:13px;color:#666666;line-height=\r\n:18px;\"><a href=3D\"https://www=2Edocusign=2Ecom/features-and-benefits/m=\r\nobile?utm_campaign=3DGBL_XX_DBU_UPS_2211_SignNotificationEmailFooter&#3=\r\n8;utm_medium=3Dproduct&#38;utm_source=3Dpostsend\" style=3D\"color:#2463d=\r\n1;\" ><img style=3D\"margin-right:7px;border:none;vertical-align:middle;\"=\r\n width=3D\"18\" height=3D\"18\" src=3D\"https://docucdn-a=2Eakamaihd=2Enet/o=\r\nlive/images/2=2E62=2E0/global-assets/email-templates/icon-download-app=2E=\r\npng\" alt=3D\"\" />Download the Docusign App </a></p><p style=3D\"margin-bo=\r\nttom:1em;font-family:Helvetica,Arial,Sans Serif;font-size:13px;color:#6=\r\n66666;line-height:18px;font-size:10px;line-height:14px;\">This message w=\r\nas sent to you by Nathan Staron who is using the Docusign Electronic Si=\r\ngnature Service=2E If you would rather not receive email from this send=\r\ner you may contact the sender with your request=2E</p></td></tr></table=\r\n></td><td></td></tr></table><span itemscope=3D\"\" itemtype=3D\"http://sch=\r\nema=2Eorg/EmailMessage\"><meta itemprop=3D\"text\" content=3D\"Nathan Staro=\r\nn sent you a document to review and sign=2E\"/><span itemscope=3D\"\" item=\r\nprop=3D\"about\" itemtype=3D\"http://schema=2Eorg/CreativeWork\"><span item=\r\nscope=3D\"\" itemprop=3D\"action\" itemtype=3D\"http://schema=2Eorg/ViewActi=\r\non\"><meta itemprop=3D\"url\" content=3D\"https://na4=2Edocusign=2Enet/Sign=\r\ning/EmailStart=2Easpx?a=3D45706c1f-0068-4f06-ae45-4790596395bd&etti=3D4=\r\n3&r=3D2b593fbd-14e3-4fc9-b5ec-d185ddd0b383\"/><meta itemprop=3D\"name\" co=\r\nntent=3D\"View Documents\"/></span></span></span></body></html>','RecipientEnvelopeComplete Your document has been completed  Nathan Staron nathan@lithiumbatterycompany=2EcomAll parties have completed Comp=\r\nlete with Docusign: LBC Investor MNDA (2025)_Mavrix1=2Epdf=2EDo Not Share This Email This email con=\r\ntains a secure link to Docusign=2E Please do not share this email, link=\r\n, or access code with others=2EAlternate Signing M=\r\nethod Visit Docusign=2Ecom, click \'Access Documents\', and ente=\r\nr the security code: 45706C1F00684F06AE454790596395BD7 About Docusign Sign documents electronically in just min=\r\nutes=2E It\'s safe, secure, and legally binding=2E Whether you\'re in an =\r\noffice, at home, on-the-go -- or even across the globe -- Docusign prov=\r\nides a professional trusted solution for Digital Transaction Management=\r\n=E2=84=A2=2E Questions about the Document? If=\r\n you need to modify the document or have questions about the details in=\r\n the document, please reach out to the sender by emailing them directly=\r\n=2EStop receiving this=\r\n emailReport this email or read more about Declining to sign and Managing notifications=2E=\r\n If you have trouble signing, visit \"How to Sign a Document\" on our Docus=\r\nign Support Center, or become part of the Docusign Community to access tips and guida=\r\nnce from peers=2EDownload the Docusign App This message w=\r\nas sent to you by Nathan Staron who is using the Docusign Electronic Si=\r\ngnature Service=2E If you would rather not receive email from this send=\r\ner you may contact the sender with your request=2E',0,0,0,0,0,0,'2025-05-19 16:16:39','2025-12-09 19:02:24','2025-12-09 19:02:24','2025-12-09 19:02:24',NULL,NULL,NULL),
(250,4,'<CAKK=axh_udWfZnKJd4-auu7Fa1KzzkZwftF3E9m-Q24=ohdGbQ@mail.gmail.com>',NULL,NULL,'Re: Fw: Next steps!','nick@lithiumbatterycompany.com','Nick Powell','<div dir=\"ltr\">Here is the attached document for your records as promised.<br><br>Thank you!<br><br><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, May 19, 2025 at 11:30 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div id=\"m_-2507522909408851259bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thank you.</div><div id=\"m_-2507522909408851259bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">All signed!</div> Rick<div><br></div><div><br> <div id=\"m_-2507522909408851259bloop_sign_1747668572363867904\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div> <br><p>On May 19, 2025 at 9:14:15 AM, Nick Powell (<a href=\"mailto:nick@lithiumbatterycompany.com\" target=\"_blank\">nick@lithiumbatterycompany.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\">Hi Rick,<div><br></div><div>I sent over the document via docusign. Please let me know if you haven&#39;t received it. <br><br>Once it is fully executed, I&#39;ll attach the PDF for your records. <br><br>Thanks,</div><div>Nick</div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, May 19, 2025 at 9:03 AM Nick Powell &lt;<a href=\"mailto:nick@lithiumbatterycompany.com\" target=\"_blank\">nick@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\">Absolutely! Sending it now!</div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Sun, May 18, 2025 at 4:25 PM Jarrett Brownfield &lt;<a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div>\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nCan you send Rick a docusign of the attached MNDA tomorrow morning when you get a chance?</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770Signature\">\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:11pt;color:black\"><b>Jarrett Brownfield </b></span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black;background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:rgb(0,36,81);margin:0px\" target=\"_blank\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:rgb(0,36,81);margin:0px\" target=\"_blank\">.com</a></u></span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" title=\"https://lithiumbatterycompany.com/\" style=\"color:rgb(0,36,81);margin:0px\" target=\"_blank\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Saturday, May 17, 2025 4:18 PM<br>\r\n<b>To:</b> Nick Powell &lt;<a href=\"mailto:nick@lithiumbatterycompany.com\" target=\"_blank\">nick@lithiumbatterycompany.com</a>&gt;; Jarrett Brownfield &lt;<a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div> </div>\r\n</div>\r\n\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Looks good.</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Go ahead and send a Docusign.</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Thank you,</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Rick</div>\r\n<br>\r\n<div>Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div><img style=\"height: 11px;\"></div>\r\n</div>\r\n<br>\r\n<p>On May 15, 2025 at 10:36:26 AM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nHi Rick, <br>\r\n<br>\r\nPlease find attached MNDA for your review. If acceptable, please let us know and <a href=\"mailto:nick@lithiumbatterycompany.com\" id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770OWAAM408789\" target=\"_blank\">\r\n@Nick Powell</a> will coordinate to send across a docusign for execution. Please let me know if any questions and we look forward to evaluating opportunities with you &amp; your team</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770x_Signature\">\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:11pt;color:black\"><b>Jarrett Brownfield </b></span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black;background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:rgb(0,36,81);margin:0px\" target=\"_blank\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:rgb(0,36,81);margin:0px\" target=\"_blank\">.com</a></u></span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" title=\"https://lithiumbatterycompany.com/\" style=\"color:rgb(0,36,81);margin:0px\" target=\"_blank\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770x_appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Thursday, May 15, 2025 8:17 AM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;<a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div> </div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Sounds good.</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Hope we can help you sooner rather than later!</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">All my best,</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Rick</div>\r\n<br>\r\n<div>Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div><img style=\"height: 11px;\"></div>\r\n</div>\r\n<br>\r\n<p>On May 14, 2025 at 1:53:19 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div>\r\n<div dir=\"ltr\">Rick, apologies for the delay - after our call yesterday we were engaged by the Shell Corporation and today we are receiving an award at the Florida SBDC event so have been in meetings nearly constantly and I fell behind on kicking over the MNDA.\r\n It’s first on my to-do list after this event!</div>\r\n</div>\r\n<div id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770x_x_ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770x_x_ms-outlook-mobile-signature\">\r\n<div></div>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, May 13, 2025 9:02:50 AM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;<a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div> </div>\r\n</div>\r\n<div>\r\n<div id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\nGot it! Will be there.. thanks!</div>\r\n<div id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\nRick</div>\r\n<br>\r\n<div id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770x_x_x_bloop_sign_1747141266137078016\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div><img style=\"height: 11px;\"></div>\r\n</div>\r\n<br>\r\n<p>On May 13, 2025 at 8:59:30 AM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nHi Rick, </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nYes, 10am this morning - I just resent the zoom invite. Look forward to speaking soon</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770x_x_x_Signature\">\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:11pt;color:black\"><b>Jarrett Brownfield </b></span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black;background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770OWAa99fda94-e056-c619-a196-a33c2ff2877b\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:rgb(0,36,81);margin:0px\" target=\"_blank\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770OWA098259f9-2a26-ebbc-a687-62be0f9f5580\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:rgb(0,36,81);margin:0px\" target=\"_blank\">.com</a></u></span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770OWA6dd24376-6350-4d35-05a2-83112c570eec\" title=\"https://lithiumbatterycompany.com/\" style=\"color:rgb(0,36,81);margin:0px\" target=\"_blank\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770x_x_x_appendonsend\"></div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<b>From:</b> Rick<br>\r\n<b>Sent:</b> Tuesday, May 13, 2025 7:28 AM<br>\r\n<b>To:</b> Jarrett Brownfield<br>\r\n<b>Subject:</b> Re: Next steps! </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div>Not sure if I responded accurately. </div>\r\n<div>I’m open at 10a today if that works. </div>\r\n<div>Thanks!</div>\r\n<div>Rick</div>\r\n<div><br>\r\n</div>\r\n<div>Rick Mislan, PhD</div>\r\n<div>[<a href=\"https://mavrix.one\" target=\"_blank\">https://mavrix.one</a> <a href=\"https://mavrix.one\" target=\"_blank\">https://mavrix.one</a> <a href=\"https://mavrix.one\" target=\"_blank\">https://mavrix.one</a>]<a href=\"https://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div><img height=\"11\" style=\"height: 11px;\"></div>\r\n<p style=\"color:rgb(0,0,0)\">On May 12, 2025 at 2:26:32 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\" id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770OWA6fe9a5f9-a715-dff3-4833-c48bb98fbcc5\" style=\"margin-top:0px;margin-bottom:0px\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>)\r\n wrote:</p>\r\n<blockquote>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nHi Rick, </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nWe enjoyed meeting with you as well and thanks for circling back - please find below availability and we look forward to speaking:<br>\r\n<br>\r\n(all times EST)<br>\r\nToday:  3-4:30pm<br>\r\nTuesday (5.13): 930-11am || 1130am-1pm<br>\r\nWednesday (5.14): 10am-1130<br>\r\nThursday (5.15): 12-3pm <br>\r\nFriday (5.16): 9am-3pm<br>\r\n<br>\r\n<br>\r\nBest, </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770x_x_x_x_Signature\">\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:11pt;color:black\"><b>Jarrett Brownfield </b></span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black;background-color:white\">Partner</span>\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">\r\nI Chief Financial Officer</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770OWA85b348c0-ceb1-fac7-e499-95d5a963cc38\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:rgb(0,36,81);margin:0px\" target=\"_blank\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770OWA9b7813f6-bff5-7b2b-9efa-d558ec60b684\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:rgb(0,36,81);margin:0px\" target=\"_blank\">.com</a></u></span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770OWA93baa47e-fc9a-556d-beba-278bafbdf824\" title=\"https://lithiumbatterycompany.com/\" style=\"color:rgb(0,36,81);margin:0px\" target=\"_blank\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770x_x_x_x_appendonsend\"></div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770x_x_x_x_divRplyFwdMsg\" dir=\"ltr\"><span style=\"font-family:Calibri,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Sunday, May 11, 2025 9:18 AM<br>\r\n<b>To:</b> <a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a> &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; <a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a> &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;; <a href=\"mailto:ronald@lithiumbatterycompany.com\" target=\"_blank\">ronald@lithiumbatterycompany.com</a> &lt;<a href=\"mailto:ronald@lithiumbatterycompany.com\" target=\"_blank\">ronald@lithiumbatterycompany.com</a>&gt;; <a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a> &lt;<a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</span>\r\n<div> </div>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Helvetica,Arial;font-size:13px\">Ok, following up again, </div>\r\n<div style=\"direction:ltr;font-family:Helvetica,Arial;font-size:13px\">this time for a request </div>\r\n<div style=\"direction:ltr;font-family:Helvetica,Arial;font-size:13px\">to discuss next steps.</div>\r\n<div style=\"direction:ltr;font-family:Helvetica,Arial;font-size:13px\"><br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Helvetica,Arial;font-size:13px\">Interested in money? :)</div>\r\n<div style=\"direction:ltr;font-family:Helvetica,Arial;font-size:13px\">Let’s set up a time to chat soon.</div>\r\n<div style=\"direction:ltr;font-family:Helvetica,Arial;font-size:13px\"><br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Helvetica,Arial;font-size:13px\">Thanks,</div>\r\n<div style=\"direction:ltr;font-family:Helvetica,Arial;font-size:13px\">Rick</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Rick Mislan, PhD</div>\r\n<div style=\"direction:ltr\"><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770OWA6f2250de-935b-77bd-ce88-2cfb3cbe652e\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div style=\"direction:ltr\"><img height=\"11\" style=\"height: 11px;\"></div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr\">On May 8, 2025 at 1:33:01 PM, Rick (<a href=\"mailto:rick@mavrix.one\" id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770OWA44b57871-3029-0cf0-fc3a-86d620da512e\" style=\"margin-top:0px;margin-bottom:0px\" target=\"_blank\">rick@mavrix.one</a>) wrote:</p>\r\n<blockquote>\r\n<div style=\"direction:ltr;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\n<span style=\"background-color:rgb(255,255,255)\">Gentlemen,</span></div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\nA pleasure meeting you all!</div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\nJust wanted to let you know that</div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\nI am talking to my team <a href=\"http://airmail.calendar/2025-05-11%2019:00:00%20EDT\" id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770OWA8867e85c-bf8e-41be-d815-e78244229e9c\" target=\"_blank\">\r\ntonight</a></div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\nhere in Treasure Island. </div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\nMy goal for <a href=\"http://airmail.calendar/2025-05-11%2019:00:00%20EDT\" id=\"m_-2507522909408851259m_2941440385654154094m_-2208946776207730770OWA7aced99c-5963-164f-8e4a-9d96675a373f\" target=\"_blank\">\r\ntonight</a> is to</div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\ndiscuss the mavrix portfolio and</div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\nplan out a schedule of calls</div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\nwith you for next steps. </div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\nAgain, I truly enjoyed meeting </div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\nand chatting with you all! </div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\nI’ll be in touch next week!</div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\nAll my best,</div>\r\n<div style=\"direction:ltr;text-align:left;text-indent:0px;font-family:UICTFontTextStyleBody;font-size:14px;color:rgb(0,0,0)\">\r\nRick</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n\r\n</div></blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><font size=\"4\"><b><br>Nick Powell</b></font></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><b>Client Relations Coordinator</b></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><font size=\"2\"><b>TheLithiumBatteryCompany</b></font></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><br></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\">Toll Free - 844-GET-LITHIUM</div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\">Mobile - 813-613-6105</div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><br></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><a href=\"http://www.lithiumbatterycompany.com/\" style=\"color:rgb(17,85,204)\" target=\"_blank\">www.LithiumBatteryCompany.com</a></div><div></div><div><br style=\"color:rgb(34,34,34)\"></div></div></div>\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><font size=\"4\"><b><br>Nick Powell</b></font></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><b>Client Relations Coordinator</b></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><font size=\"2\"><b>TheLithiumBatteryCompany</b></font></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><br></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\">Toll Free - 844-GET-LITHIUM</div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\">Mobile - 813-613-6105</div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><br></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><a href=\"http://www.lithiumbatterycompany.com/\" style=\"color:rgb(17,85,204)\" target=\"_blank\">www.LithiumBatteryCompany.com</a></div><div></div><div><br style=\"color:rgb(34,34,34)\"></div></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</div></blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><font size=\"4\"><b><br>Nick Powell</b></font></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><b>Client Relations Coordinator</b></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><font size=\"2\"><b>TheLithiumBatteryCompany</b></font></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><br></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\">Toll Free - 844-GET-LITHIUM</div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\">Mobile - 813-613-6105</div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><br></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><a href=\"http://www.lithiumbatterycompany.com/\" style=\"color:rgb(17,85,204)\" target=\"_blank\">www.LithiumBatteryCompany.com</a></div><div></div><div><br style=\"color:rgb(34,34,34)\"></div></div></div>','Here is the attached document for your records as promised.\r\n\r\nThank you!\r\n\r\n\r\n\r\nOn Mon, May 19, 2025 at 11:30 AM Rick <rick@mavrix.one> wrote:\r\n\r\n> Thank you.\r\n> All signed!\r\n> Rick\r\n>\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On May 19, 2025 at 9:14:15 AM, Nick Powell (nick@lithiumbatterycompany.com)\r\n> wrote:\r\n>\r\n> Hi Rick,\r\n>\r\n> I sent over the document via docusign. Please let me know if you\r\n> haven\'t received it.\r\n>\r\n> Once it is fully executed, I\'ll attach the PDF for your records.\r\n>\r\n> Thanks,\r\n> Nick\r\n>\r\n> On Mon, May 19, 2025 at 9:03 AM Nick Powell <\r\n> nick@lithiumbatterycompany.com> wrote:\r\n>\r\n>> Absolutely! Sending it now!\r\n>>\r\n>> On Sun, May 18, 2025 at 4:25 PM Jarrett Brownfield <\r\n>> jarrett@lithiumbatterycompany.com> wrote:\r\n>>\r\n>>> Can you send Rick a docusign of the attached MNDA tomorrow morning when\r\n>>> you get a chance?\r\n>>>\r\n>>> *Jarrett Brownfield *\r\n>>>\r\n>>> Partner I Chief Financial Officer\r\n>>>\r\n>>> Lithium Battery Company\r\n>>>\r\n>>> Direct: (812) 552-6854\r\n>>>\r\n>>> *Jarrett@\r\n>>> <Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com\r\n>>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>>\r\n>>> *Lithium Battery Company <https://lithiumbatterycompany.com/>*\r\n>>> ------------------------------\r\n>>> *From:* Rick <rick@mavrix.one>\r\n>>> *Sent:* Saturday, May 17, 2025 4:18 PM\r\n>>> *To:* Nick Powell <nick@lithiumbatterycompany.com>; Jarrett Brownfield <\r\n>>> jarrett@lithiumbatterycompany.com>\r\n>>> *Subject:* Re: Next steps!\r\n>>>\r\n>>> Looks good.\r\n>>> Go ahead and send a Docusign.\r\n>>> Thank you,\r\n>>> Rick\r\n>>>\r\n>>> Rick Mislan, PhD\r\n>>> https://mavrix.one\r\n>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>\r\n>>> On May 15, 2025 at 10:36:26 AM, Jarrett Brownfield (\r\n>>> jarrett@lithiumbatterycompany.com) wrote:\r\n>>>\r\n>>> Hi Rick,\r\n>>>\r\n>>> Please find attached MNDA for your review. If acceptable, please let us\r\n>>> know and @Nick Powell <nick@lithiumbatterycompany.com> will coordinate\r\n>>> to send across a docusign for execution. Please let me know if any\r\n>>> questions and we look forward to evaluating opportunities with you & your\r\n>>> team\r\n>>>\r\n>>> *Jarrett Brownfield *\r\n>>>\r\n>>> Partner I Chief Financial Officer\r\n>>>\r\n>>> Lithium Battery Company\r\n>>>\r\n>>> Direct: (812) 552-6854\r\n>>>\r\n>>> *Jarrett@\r\n>>> <Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com\r\n>>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>>\r\n>>> *Lithium Battery Company <https://lithiumbatterycompany.com/>*\r\n>>> ------------------------------\r\n>>> *From:* Rick <rick@mavrix.one>\r\n>>> *Sent:* Thursday, May 15, 2025 8:17 AM\r\n>>> *To:* Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\n>>> *Subject:* Re: Next steps!\r\n>>>\r\n>>> Sounds good.\r\n>>> Hope we can help you sooner rather than later!\r\n>>> All my best,\r\n>>> Rick\r\n>>>\r\n>>> Rick Mislan, PhD\r\n>>> https://mavrix.one\r\n>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>\r\n>>> On May 14, 2025 at 1:53:19 PM, Jarrett Brownfield (\r\n>>> jarrett@lithiumbatterycompany.com) wrote:\r\n>>>\r\n>>> Rick, apologies for the delay - after our call yesterday we were engaged\r\n>>> by the Shell Corporation and today we are receiving an award at the Florida\r\n>>> SBDC event so have been in meetings nearly constantly and I fell behind on\r\n>>> kicking over the MNDA. It’s first on my to-do list after this event!\r\n>>>\r\n>>> ------------------------------\r\n>>> *From:* Rick <rick@mavrix.one>\r\n>>> *Sent:* Tuesday, May 13, 2025 9:02:50 AM\r\n>>> *To:* Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\n>>> *Subject:* Re: Next steps!\r\n>>>\r\n>>> Got it! Will be there.. thanks!\r\n>>> Rick\r\n>>>\r\n>>> Rick Mislan, PhD\r\n>>> https://mavrix.one\r\n>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>\r\n>>> On May 13, 2025 at 8:59:30 AM, Jarrett Brownfield (\r\n>>> jarrett@lithiumbatterycompany.com) wrote:\r\n>>>\r\n>>> Hi Rick,\r\n>>>\r\n>>> Yes, 10am this morning - I just resent the zoom invite. Look forward to\r\n>>> speaking soon\r\n>>>\r\n>>> *Jarrett Brownfield *\r\n>>>\r\n>>> Partner I Chief Financial Officer\r\n>>>\r\n>>> Lithium Battery Company\r\n>>>\r\n>>> Direct: (812) 552-6854\r\n>>>\r\n>>> *Jarrett@\r\n>>> <Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com\r\n>>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>>\r\n>>> *Lithium Battery Company <https://lithiumbatterycompany.com/>*\r\n>>>\r\n>>>\r\n>>> ------------------------------\r\n>>> *From:* Rick\r\n>>> *Sent:* Tuesday, May 13, 2025 7:28 AM\r\n>>> *To:* Jarrett Brownfield\r\n>>> *Subject:* Re: Next steps!\r\n>>>\r\n>>> Not sure if I responded accurately.\r\n>>> I’m open at 10a today if that works.\r\n>>> Thanks!\r\n>>> Rick\r\n>>>\r\n>>> Rick Mislan, PhD\r\n>>> [https://mavrix.one https://mavrix.one https://mavrix.one]\r\n>>> https://mavrix.one\r\n>>>\r\n>>> On May 12, 2025 at 2:26:32 PM, Jarrett Brownfield (\r\n>>> jarrett@lithiumbatterycompany.com) wrote:\r\n>>>\r\n>>> Hi Rick,\r\n>>>\r\n>>> We enjoyed meeting with you as well and thanks for circling back -\r\n>>> please find below availability and we look forward to speaking:\r\n>>>\r\n>>> (all times EST)\r\n>>> Today:  3-4:30pm\r\n>>> Tuesday (5.13): 930-11am || 1130am-1pm\r\n>>> Wednesday (5.14): 10am-1130\r\n>>> Thursday (5.15): 12-3pm\r\n>>> Friday (5.16): 9am-3pm\r\n>>>\r\n>>>\r\n>>> Best,\r\n>>>\r\n>>> *Jarrett Brownfield *\r\n>>>\r\n>>> Partner I Chief Financial Officer\r\n>>>\r\n>>> Lithium Battery Company\r\n>>>\r\n>>> Direct: (812) 552-6854\r\n>>>\r\n>>> *Jarrett@\r\n>>> <Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com\r\n>>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>>\r\n>>> *Lithium Battery Company <https://lithiumbatterycompany.com/>*\r\n>>> ------------------------------\r\n>>> *From:* Rick <rick@mavrix.one>\r\n>>> *Sent:* Sunday, May 11, 2025 9:18 AM\r\n>>> *To:* nathan@lithiumbatterycompany.com <nathan@lithiumbatterycompany.com>;\r\n>>> jordan@lithiumbatterycompany.com <jordan@lithiumbatterycompany.com>;\r\n>>> ronald@lithiumbatterycompany.com <ronald@lithiumbatterycompany.com>;\r\n>>> jarrett@lithiumbatterycompany.com <jarrett@lithiumbatterycompany.com>\r\n>>> *Subject:* Re: Next steps!\r\n>>>\r\n>>> Ok, following up again,\r\n>>> this time for a request\r\n>>> to discuss next steps.\r\n>>>\r\n>>> Interested in money? :)\r\n>>> Let’s set up a time to chat soon.\r\n>>>\r\n>>> Thanks,\r\n>>> Rick\r\n>>>\r\n>>> Rick Mislan, PhD\r\n>>> https://mavrix.one\r\n>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>\r\n>>> On May 8, 2025 at 1:33:01 PM, Rick (rick@mavrix.one) wrote:\r\n>>>\r\n>>> Gentlemen,\r\n>>>\r\n>>> A pleasure meeting you all!\r\n>>>\r\n>>> Just wanted to let you know that\r\n>>> I am talking to my team tonight\r\n>>> <http://airmail.calendar/2025-05-11%2019:00:00%20EDT>\r\n>>> here in Treasure Island.\r\n>>>\r\n>>> My goal for tonight\r\n>>> <http://airmail.calendar/2025-05-11%2019:00:00%20EDT> is to\r\n>>> discuss the mavrix portfolio and\r\n>>> plan out a schedule of calls\r\n>>> with you for next steps.\r\n>>>\r\n>>> Again, I truly enjoyed meeting\r\n>>> and chatting with you all!\r\n>>>\r\n>>> I’ll be in touch next week!\r\n>>>\r\n>>> All my best,\r\n>>> Rick\r\n>>>\r\n>>>\r\n>>\r\n>> --\r\n>>\r\n>> *Nick Powell*\r\n>> *Client Relations Coordinator*\r\n>> *TheLithiumBatteryCompany*\r\n>>\r\n>> Toll Free - 844-GET-LITHIUM\r\n>> Mobile - 813-613-6105\r\n>>\r\n>> www.LithiumBatteryCompany.com <http://www.lithiumbatterycompany.com/>\r\n>>\r\n>>\r\n>\r\n> --\r\n>\r\n> *Nick Powell*\r\n> *Client Relations Coordinator*\r\n> *TheLithiumBatteryCompany*\r\n>\r\n> Toll Free - 844-GET-LITHIUM\r\n> Mobile - 813-613-6105\r\n>\r\n> www.LithiumBatteryCompany.com <http://www.lithiumbatterycompany.com/>\r\n>\r\n>\r\n\r\n-- \r\n\r\n*Nick Powell*\r\n*Client Relations Coordinator*\r\n*TheLithiumBatteryCompany*\r\n\r\nToll Free - 844-GET-LITHIUM\r\nMobile - 813-613-6105\r\n\r\nwww.LithiumBatteryCompany.com <http://www.lithiumbatterycompany.com/>',0,0,0,0,0,0,'2025-05-19 16:20:14','2025-12-09 19:02:25','2025-12-09 19:02:25','2025-12-09 19:02:25',NULL,NULL,NULL),
(251,4,'<calendar-1d5bd0a8-0087-46e3-b144-69d27bb73362@google.com>',NULL,NULL,'Invitation: Mavrix <> StratLog 2 @ Thu May 22, 2025 9am - 10am (EDT) (rick@mavrix.one)','avalkenburg@strategic-logix.com','Andrew Valkenburg','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v143/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v117/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation from Andrew Valkenburg\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"9i75pqelc95jb3jjdsib9hns78\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Mavrix &lt;&gt; StratLog 2</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=OWk3NXBxZWxjOTVqYjNqamRzaWI5aG5zNzggcmlja0BtYXZyaXgub25l&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTUwZWQ5Y2NjMjU1ODQxZWVmZTE3MDMwNzFhOWY2NDRmMjNlZTA2MjY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250522T130000Z\"></time><time itemprop=\"endDate\" datetime=\"20250522T140000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">Join with Google Meet – You have been invited by Andrew Valkenburg to attend an event named Mavrix &lt;&gt; StratLog 2 on Thursday May 22, 2025 ⋅ 9am – 10am (Eastern Time - New York).</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:28px;\"><a href=\"https://meet.google.com/tmb-kska-pkf?hs=224\" class=\"primary-button-text\" style=\"display: inline-block;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"display: inline-block\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"background-color: #1a73e8; cursor: auto; padding: 10px 25px; border: none; border-radius: 4px; margin: 0;\" class=\"primary-button\"><!--[if mso]><a href=\"https://meet.google.com/tmb-kska-pkf?hs=224\" class=\"primary-button-text\" target=\"_blank\"><![endif]--><span class=\"primary-button-text\" style=\"font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\">Join with Google Meet</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Meeting link</h2></td></tr></table><!-- Use grey text for the Meet link--><div><a style=\"display: inline-block;;color: #70757a; text-decoration: none;\" class=\"secondary-text underline-on-hover\" href=\"https://meet.google.com/tmb-kska-pkf?hs=224\">meet.google.com/tmb-kska-pkf</a></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Join by phone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(US) </span><a href=\"tel:+1-650-466-0231%3B285645292%23\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+1 650-466-0231</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">PIN: 285645292</span><br><br><a href=\"https://tel.meet/tmb-kska-pkf?pin=6337404045505&amp;hs=0\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">More phone numbers</a><br></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250522T130000Z\"></time><time itemprop=\"endDate\" datetime=\"20250522T140000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Thursday May 22, 2025 ⋅ 9am – 10am (Eastern Time - New York)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:avalkenburg@strategic-logix.com\">Andrew Valkenburg</a></span><meta itemprop=\"email\" content=\"avalkenburg@strategic-logix.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Andrew Valkenburg\"/><meta itemprop=\"email\" content=\"avalkenburg@strategic-logix.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=OWk3NXBxZWxjOTVqYjNqamRzaWI5aG5zNzggcmlja0BtYXZyaXgub25l&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTUwZWQ5Y2NjMjU1ODQxZWVmZTE3MDMwNzFhOWY2NDRmMjNlZTA2MjY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=OWk3NXBxZWxjOTVqYjNqamRzaWI5aG5zNzggcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTUwZWQ5Y2NjMjU1ODQxZWVmZTE3MDMwNzFhOWY2NDRmMjNlZTA2MjY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=OWk3NXBxZWxjOTVqYjNqamRzaWI5aG5zNzggcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTUwZWQ5Y2NjMjU1ODQxZWVmZTE3MDMwNzFhOWY2NDRmMjNlZTA2MjY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=OWk3NXBxZWxjOTVqYjNqamRzaWI5aG5zNzggcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTUwZWQ5Y2NjMjU1ODQxZWVmZTE3MDMwNzFhOWY2NDRmMjNlZTA2MjY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=OWk3NXBxZWxjOTVqYjNqamRzaWI5aG5zNzggcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTUwZWQ5Y2NjMjU1ODQxZWVmZTE3MDMwNzFhOWY2NDRmMjNlZTA2MjY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=OWk3NXBxZWxjOTVqYjNqamRzaWI5aG5zNzggcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTUwZWQ5Y2NjMjU1ODQxZWVmZTE3MDMwNzFhOWY2NDRmMjNlZTA2MjY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=OWk3NXBxZWxjOTVqYjNqamRzaWI5aG5zNzggcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTUwZWQ5Y2NjMjU1ODQxZWVmZTE3MDMwNzFhOWY2NDRmMjNlZTA2MjY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=OWk3NXBxZWxjOTVqYjNqamRzaWI5aG5zNzggcmlja0BtYXZyaXgub25l&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTUwZWQ5Y2NjMjU1ODQxZWVmZTE3MDMwNzFhOWY2NDRmMjNlZTA2MjY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=OWk3NXBxZWxjOTVqYjNqamRzaWI5aG5zNzggcmlja0BtYXZyaXgub25l&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTUwZWQ5Y2NjMjU1ODQxZWVmZTE3MDMwNzFhOWY2NDRmMjNlZTA2MjY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','Mavrix <> StratLog 2\r\nThursday May 22, 2025 ⋅ 9am – 10am\r\nEastern Time - New York\r\n\r\nJoin with Google Meet\r\nhttps://meet.google.com/tmb-kska-pkf?hs=224\r\n\r\n\r\n	\r\nJoin by phone\r\n(US) +1 650-466-0231\r\nPIN: 285645292\r\n\r\nMore phone numbers\r\nhttps://tel.meet/tmb-kska-pkf?pin=6337404045505&hs=0\r\n\r\n\r\nOrganizer\r\nAndrew Valkenburg\r\navalkenburg@strategic-logix.com\r\n\r\nGuests\r\nAndrew Valkenburg - organizer\r\nrick@mavrix.one\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=OWk3NXBxZWxjOTVqYjNqamRzaWI5aG5zNzggcmlja0BtYXZyaXgub25l&tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTUwZWQ5Y2NjMjU1ODQxZWVmZTE3MDMwNzFhOWY2NDRmMjNlZTA2MjY&ctz=America%2FNew_York&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=OWk3NXBxZWxjOTVqYjNqamRzaWI5aG5zNzggcmlja0BtYXZyaXgub25l&tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTUwZWQ5Y2NjMjU1ODQxZWVmZTE3MDMwNzFhOWY2NDRmMjNlZTA2MjY&ctz=America%2FNew_York&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-05-19 18:07:07','2025-12-09 19:02:25','2025-12-09 19:02:25','2025-12-09 19:02:25',NULL,NULL,NULL),
(252,4,'<QatrFQ5JRyKkuezNU8gnNg@geopod-ismtpd-4>',NULL,NULL,'DIU Newsletter - May 19, 2025','info@diu.mil','Defense Innovation Unit','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html data-editor-version=\"2\" class=\"sg-campaigns\" xmlns=\"http://www.w3.org/1999/xhtml\">\r\n    <head>\r\n      <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n      <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1\">\r\n      <!--[if !mso]><!-->\r\n      <meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge\">\r\n      <!--<![endif]-->\r\n      <!--[if (gte mso 9)|(IE)]>\r\n      <xml>\r\n        <o:OfficeDocumentSettings>\r\n          <o:AllowPNG/>\r\n          <o:PixelsPerInch>96</o:PixelsPerInch>\r\n        </o:OfficeDocumentSettings>\r\n      </xml>\r\n      <![endif]-->\r\n      <!--[if (gte mso 9)|(IE)]>\r\n  <style type=\"text/css\">\r\n    body {width: 620px;margin: 0 auto;}\r\n    table {border-collapse: collapse;}\r\n    table, td {mso-table-lspace: 0pt;mso-table-rspace: 0pt;}\r\n    img {-ms-interpolation-mode: bicubic;}\r\n  </style>\r\n<![endif]-->\r\n      <style type=\"text/css\">\r\n    body, p, div {\r\n      font-family: arial,helvetica,sans-serif;\r\n      font-size: 14px;\r\n    }\r\n    body {\r\n      color: #000000;\r\n    }\r\n    body a {\r\n      color: #0D66BBFF;\r\n      text-decoration: none;\r\n    }\r\n    p { margin: 0; padding: 0; }\r\n    table.wrapper {\r\n      width:100% !important;\r\n      table-layout: fixed;\r\n      -webkit-font-smoothing: antialiased;\r\n      -webkit-text-size-adjust: 100%;\r\n      -moz-text-size-adjust: 100%;\r\n      -ms-text-size-adjust: 100%;\r\n    }\r\n    img.max-width {\r\n      max-width: 100% !important;\r\n    }\r\n    .column.of-2 {\r\n      width: 50%;\r\n    }\r\n    .column.of-3 {\r\n      width: 33.333%;\r\n    }\r\n    .column.of-4 {\r\n      width: 25%;\r\n    }\r\n    ul ul ul ul  {\r\n      list-style-type: disc !important;\r\n    }\r\n    ol ol {\r\n      list-style-type: lower-roman !important;\r\n    }\r\n    ol ol ol {\r\n      list-style-type: lower-latin !important;\r\n    }\r\n    ol ol ol ol {\r\n      list-style-type: decimal !important;\r\n    }\r\n    @media screen and (max-width:480px) {\r\n      .preheader .rightColumnContent,\r\n      .footer .rightColumnContent {\r\n        text-align: left !important;\r\n      }\r\n      .preheader .rightColumnContent div,\r\n      .preheader .rightColumnContent span,\r\n      .footer .rightColumnContent div,\r\n      .footer .rightColumnContent span {\r\n        text-align: left !important;\r\n      }\r\n      .preheader .rightColumnContent,\r\n      .preheader .leftColumnContent {\r\n        font-size: 80% !important;\r\n        padding: 5px 0;\r\n      }\r\n      table.wrapper-mobile {\r\n        width: 100% !important;\r\n        table-layout: fixed;\r\n      }\r\n      img.max-width {\r\n        height: auto !important;\r\n        max-width: 100% !important;\r\n      }\r\n      a.bulletproof-button {\r\n        display: block !important;\r\n        width: auto !important;\r\n        font-size: 80%;\r\n        padding-left: 0 !important;\r\n        padding-right: 0 !important;\r\n      }\r\n      .columns {\r\n        width: 100% !important;\r\n      }\r\n      .column {\r\n        display: block !important;\r\n        width: 100% !important;\r\n        padding-left: 0 !important;\r\n        padding-right: 0 !important;\r\n        margin-left: 0 !important;\r\n        margin-right: 0 !important;\r\n      }\r\n      .social-icon-column {\r\n        display: inline-block !important;\r\n      }\r\n    }\r\n  </style>\r\n      <!--user entered Head Start--><!--End Head user entered-->\r\n    </head>\r\n    <body>\r\n      <center class=\"wrapper\" data-link-color=\"#0D66BBFF\" data-body-style=\"font-size:14px; font-family:arial,helvetica,sans-serif; color:#000000; background-color:#e6e6e6;\">\r\n        <div class=\"webkit\">\r\n          <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"wrapper\" bgcolor=\"#e6e6e6\">\r\n            <tr>\r\n              <td valign=\"top\" bgcolor=\"#e6e6e6\" width=\"100%\">\r\n                <table width=\"100%\" role=\"content-container\" class=\"outer\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                  <tr>\r\n                    <td width=\"100%\">\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                        <tr>\r\n                          <td>\r\n                            <!--[if mso]>\r\n    <center>\r\n    <table><tr><td width=\"620\">\r\n  <![endif]-->\r\n                                    <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:100%; max-width:620px;\" align=\"center\">\r\n                                      <tr>\r\n                                        <td role=\"modules-container\" style=\"padding:0px 10px 0px 10px; color:#000000; text-align:left;\" bgcolor=\"#E6E6E6\" width=\"100%\" align=\"left\"><table class=\"module preheader preheader-hide\" role=\"module\" data-type=\"preheader\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"display: none !important; mso-hide: all; visibility: hidden; opacity: 0; color: transparent; height: 0; width: 0;\">\r\n    <tr>\r\n      <td role=\"module-content\">\r\n        <p>Read more about our Open Solicitations and Programs</p>\r\n      </td>\r\n    </tr>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"1104c33b-738b-4f49-a025-f96d421a4309\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:5px 0px 15px 0px; line-height:14px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: right\"><span style=\"color: #454545; font-family: helvetica, sans-serif; font-size: 12px\">Email not displaying correctly? </span><span style=\"color: #0059dd; font-family: helvetica, sans-serif; font-size: 12px\">View it</span><span style=\"color: #454545; font-family: helvetica, sans-serif; font-size: 12px\"> in your browser.</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:30px 0px 10px 0px;\" bgcolor=\"#E6E6E6\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"600\" style=\"width:600px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"9fc032df-f2d9-4c0d-ba50-8b72bae5eecc\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:0px 0px 0px 0px;\" valign=\"top\" align=\"center\">\r\n          <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:70% !important; width:70%; height:auto !important;\" width=\"420\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/3c3e14b4-863b-44ea-a235-44a86550fd55/1920x553.png\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"divider\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"93bd745a-3983-4ff8-9fbb-874f3c29dd2f\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 0px 0px;\" role=\"module-content\" height=\"100%\" valign=\"top\" bgcolor=\"\">\r\n          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" height=\"5px\" style=\"line-height:5px; font-size:5px;\">\r\n            <tbody>\r\n              <tr>\r\n                <td style=\"padding:0px 0px 5px 0px;\" bgcolor=\"#FFFFFF\"></td>\r\n              </tr>\r\n            </tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"622c7d5b-4ec9-436d-b26e-4a4e2807ad72\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:27px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-size: 16px\">Monday, May 19, 2025 - Reading time: 2.5 minutes</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2e35c854-f82d-44a2-a0f5-30013d25e3d3.2.3\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px; line-height:30px; text-align:inherit; background-color:#e6e6e6;\" height=\"100%\" valign=\"top\" bgcolor=\"#e6e6e6\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-family: helvetica, sans-serif; color: #0d66bb; font-size: 30px\"><strong>Open Solicitations</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"600\" style=\"width:600px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9o-2FlKB-2F7U18GyA9MvN6HtKuPFeM2-2BZPOjBN5vxPZUYnAPDRLZa2OPqRPx1qrC8udWPF-2FWtO-2FbwV-2FKib-2B3rQOO0upR28vkTMu0sGntc8Qo7SHk235_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0XfWWtOOzPn9YJRBv7Cl6R-2BS-2FCM5uj3s61X6X-2FvXF3kHDVVkS5OwCr0xhq6Jh6kbN0-2FGllTgPAROkdz30PSivLOzziUlcEanbY2AM3OUOLdJKCVBAWRuzaBdtA-2F4XU1qIfxRhSxT3kWQxmu8qKa6YgsJdgHrgFzr3TvD8ohqAhILFmyNdhrPzm5fdrkGDTrzy-2FRl3IkjSWK2uDS8oQgpQphj\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>Joint Low-Collateral Defeat Capabilities</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">MAY 19, 2025</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">We are seeking the most agile commercial companies with low-collateral defeat (LCD) capabilities to meet the evolving challenges in countering UAS, scaling your solutions across the joint force in support of Replicator 2 and integrating your capabilities into existing programs of record. This call builds on multiple efforts to deliver strategic capability and to build new innovative muscle for the DoD. Submissions close May 19.</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9o-2FlKB-2F7U18GyA9MvN6HtKuPFeM2-2BZPOjBN5vxPZUYnAPDRLZa2OPqRPx1qrC8udWPF-2FWtO-2FbwV-2FKib-2B3rQOO0upR28vkTMu0sGntc8Qo7SHJlC-_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0XfhZieYmEA79BO984h5mfSjPPQBXeS5hVNMkXii9S-2BtW-2FMQFVN-2B-2BPvFxFFXHfVN9VcBh7vkc7EBrDmUo0YRPDX6tW4adIAAZy0xAwqmsw-2FkBOMHJn7Z4z25jx2yyCMFI6urH6MsdkVJT9B3PriY8NqTAUV6t3dGMoBldNt89JjMfPauMv2VyBFaM5NGxMQle6gZY-2BB87Ja4i1kYbdLthBOM\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-size: 14px; font-family: arial, helvetica, sans-serif\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"600\" style=\"width:600px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.1.1.2\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9tST9sk2GZYgKHQ1-2F0wBoh3R4I1R05sC-2BCRkPI3E6P0KP0JYKG74i0US-2F-2FdqDEJzz9gjCnHCg9sw3e0Mi-2FzRaL9Rfu6lo59KfU7y30gvH8-2Bq9Rd5_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0XdFJFzVSWBfLuGS9PpbRVECgRsBVXpeO5RTNcX1CMiqcKbOaIwCmw-2B9fA3G-2B5qNtkmH-2B-2BVjRpV-2FejE8sRTafi1f8sAXOj8BoEXURS8TjzyRGGb2uc7EODAlpzcxg0iY9UL-2FAbMWDTejxEJDNpVfO-2B8pKVkb0cW6-2BNOOSNdCkc9y5DlIN-2BzBot4GMn7Hb3r9ZusMUb5IZAmh9XpQxuvjoAAO\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>Advance Operational Readiness Across Manufacturing Parts and Production Platforms</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.2\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">MAY 26, 2025</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">Calling all advanced manufacturing companies: Our Foundry for Operational Readiness and Global Effects (FORGE) solicitation is seeking solutions to boost production capacity and remove production bottlenecks for cast metal parts used in high-performance aeronautical systems. We are looking for advanced manufacturing techniques that support high-rate production, but open to any novel methods which best achieve the government’s goals such as, but not limited to: survivability, reliability, and affordability. Submissions close May 26.<br>\r\n</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9tST9sk2GZYgKHQ1-2F0wBoh3R4I1R05sC-2BCRkPI3E6P0KP0JYKG74i0US-2F-2FdqDEJzz9gjCnHCg9sw3e0Mi-2FzRaL9Rfu6lo59KfU7y30gvH8-2BqSHlD_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0XdfQBITl50Hub-2B94anNPAoJXtoGz-2BwgaPVXWHsWaR7Lu5kIFgrE-2Fcm-2FGSaJfPBJVrb7ZxdvSEbOnql6I2Z0-2B6g3-2BLkoAkYJxORl72Rrod37IMv7XDjs0mGOI6YggED45R-2BOUgGctJY8Ep-2Bc-2F6i72pO-2BjbXBPqSNkTfZhd9N5qzReQgh2LCBXjB45z5Sg8LoNxUHOLNtiTUZuPnwe-2B67AyL-2B\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-size: 14px; font-family: arial, helvetica, sans-serif\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"600\" style=\"width:600px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.1.1.2.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9v9Frb8CfXNFnM9xkwe1UB6t7hKC5ZK-2BORBaD0mikwl6IqSVHXcaM36vBk-2BYbuxOEhzNgMIprs-2FYqLw3sbS-2BJ1WTxvlM1Yxm5b7HnxTklOFoVYmhgDb4-2BGb6dYrEhxzxIbqMOeE4zmJN8-2BFr-2FeTgaMFXTHl4Hs7374yE3Vr8qyJ-2BqLR0_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0XdqcSKfjopI61ybo1cDjlcxEHE8YYItWF0AMy12u3g9FYVG8XK3LdZ3tv-2B-2BgEmQkpOM4G2OMJ9HQSQ-2FPsw32rbAoT8iTuI14eD4Kq-2B-2F2iFvOtc5cG-2BXqZ-2BhNIjz5BPN-2FtUJ72Mipl0i39lw4bsW55nO3vk-2F5MY1b-2Boyour2XekT3sWpvgqcHOsb-2Bpwi2G1QpxvmUULm7OwXncipdX1ZOYJT\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>Advanced Marine Propulsion and Power System Technology</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.2.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">JUNE 5, 2025</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">Does your company have a proven Integrated Power System technology to inform and de-risk power and propulsion design for the next generation Navy destroyer? Submit your solution to our Advanced Marine Propulsion and Energy for Revolutionary Efficiency (AMPERE) solicitation to enhance the warfighting capabilities of the U.S. Navy’s next-generation surface destroyers. These vessels must remain adaptable and lethal against both conventional and asymmetric threats to maintain superiority in the evolving maritime domain. Submissions close June 5.<br>\r\n</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9v9Frb8CfXNFnM9xkwe1UB6t7hKC5ZK-2BORBaD0mikwl6IqSVHXcaM36vBk-2BYbuxOEhzNgMIprs-2FYqLw3sbS-2BJ1WTxvlM1Yxm5b7HnxTklOFoVYmhgDb4-2BGb6dYrEhxzxIbqMOeE4zmJN8-2BFr-2FeTgaMFXTHl4Hs7374yE3Vr8qyJ-2BtkaK_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0XcX6B9SRvBGEsUe3iIMloN0lNutPgfluLDYy7kaEKHzcLwAB9GIAuvKKU9EyJPH2SoEsCmaLXOvL8gGVHqhKnxIBJIDu6ul-2Fem1v7i8i4b-2BdUqcSTXu5NQfRd73x7YeKSFMQUqeEs-2BsjoTcEcT8BdAeBXmf1HmRBv1TczzPCo5R5jTZRHA3TcnNvFDrWy7ZLkTF5g8V1V-2FNKJ1hkJvT2hAG\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-size: 14px; font-family: arial, helvetica, sans-serif\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"b2aae8b4-07ed-4408-856d-9fad1455350e\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 70px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2e35c854-f82d-44a2-a0f5-30013d25e3d3.2.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px; line-height:30px; text-align:inherit; background-color:#e6e6e6;\" height=\"100%\" valign=\"top\" bgcolor=\"#e6e6e6\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-family: helvetica, sans-serif; color: #0d66bb; font-size: 30px\"><strong>Open Programs</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"200\" style=\"width:200px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cBiyKgSAf3sHzEQtGwL8gU.1.2.1.1.1.1.2\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:25px 0px 5px 5px;\" valign=\"top\" align=\"left\">\r\n          \r\n        <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILqlD5M7P-2FNhPQ3lDEPT8Onosc-2FeZMSz-2F8UwCjjRp523lNOAkZg-2Bo61BdWZ6LS7FP-2BTINU1ZNWBl6LAoc1zB5sPolVozo0eCzBFgb5y68Ew4W2SSXm6eYHcg-2BEhe5mtx134MbXvMRmeJU4KYrMj9tEKP71Pe2-2BNLg-2BvMJan02z4XlsL_D_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0Xcv0FR1EoeX8PEXSYxabw1QLeGu7aWO1OVMmfXUrDotmJuAuNYj2l6Hj0HZJJHxjs1gbT0yFM5hBlCrsnmb2zNtFWJb1OwrasLShWCITMn0z-2Ff5Z7N4YjuX3jdvuqcIBuQqCoJcQdop6grwfh0WpUkwJJpRsVFkmNWmi3MoQHgqM7j36fcbYryksvDXeSUlU4J2nw35KziwyZ2ywGfJZCBK\"><img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"200\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/4917baf2-71a7-4bbf-8eb3-aaac5caf6b74/1080x1080.png\"></a></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"400\" style=\"width:400px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.2.1.1.1.1.2\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILqlD5M7P-2FNhPQ3lDEPT8Onosc-2FeZMSz-2F8UwCjjRp523lNOAkZg-2Bo61BdWZ6LS7FP-2BTINU1ZNWBl6LAoc1zB5sPolVozo0eCzBFgb5y68Ew4W2SSXm6eYHcg-2BEhe5mtx134MbXvMRmeJU4KYrMj9tEKP71Pe2-2BNLg-2BvMJan02z4Xlk0-h_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0Xdj3BVINTIaNLw-2B-2FKIKed1cP-2FtpxQ9hqpRV-2FD0Zmqt6-2BvXoXFUEN3w-2FhbJ0TV9dpEjhN4cCf9iAkjGHcJAEFC9TNeqOxWtKZhmK-2FbbZHd9In8MAPTUXMR183f8xj7Sy6k8tTExnC8nz6WgEA-2FVY6dQ8oJeeZ-2Fg0uc-2FR7ZMcLkDXta1h4xl26SU09rAsaqo095CfWHZqNudFXMJ2Nz7nXhZd\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>$1M Available for Scalable UAS Detection, Identification, and Tracking</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.1.1.1.2\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #454545; font-family: helvetica, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline\">MAY 20, 2025</span>&nbsp;</div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">Do you have solutions for scalable, cost-effective UAS detection, identification, and tracking? We are looking to enhance the DoD’s counter-UAS capabilities while addressing cost and scalability limitations associated with traditional radars, optical sensors, and radio frequency detection systems. Applications close on May 20.&nbsp;</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILqlD5M7P-2FNhPQ3lDEPT8Onosc-2FeZMSz-2F8UwCjjRp523lNOAkZg-2Bo61BdWZ6LS7FP-2BTINU1ZNWBl6LAoc1zB5sPolVozo0eCzBFgb5y68Ew4W2SSXm6eYHcg-2BEhe5mtx134MbXvMRmeJU4KYrMj9tEKP71Pe2-2BNLg-2BvMJan02z4Xlogpr_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0XdcaE-2BPTq1lsrWkgJEljVOCX7gdYYPIUfJ7Mz2YQVYhjNhffsO2z-2FofDo8xeuAJQZaRxHfGj9zylkF1qbuSc6duIjdZz56dVZvPeHcjN96F7R1-2FcNSdpxEJ1pbA-2BdQIqq-2BpcLLqQFoXI86R0VtcnPtUKPXusCfjpnvOkuwuQTEDSTfWcdAkCVtH2x5r7m9XJ17OXXAHlmTrnTAt6I8tPaul\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-family: arial, helvetica, sans-serif; font-size: 14px\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"b2aae8b4-07ed-4408-856d-9fad1455350e.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 70px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2e35c854-f82d-44a2-a0f5-30013d25e3d3.2.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px; line-height:30px; text-align:inherit; background-color:#e6e6e6;\" height=\"100%\" valign=\"top\" bgcolor=\"#e6e6e6\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-family: helvetica, sans-serif; color: #0d66bb; font-size: 30px\"><strong>Upcoming Events</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"200\" style=\"width:200px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cBiyKgSAf3sHzEQtGwL8gU.1.2.1.1.1.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:25px 0px 5px 5px;\" valign=\"top\" align=\"left\">\r\n          \r\n        <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILhu7-2Fqcmz3EM5lVMjhHaLLkPWIFPdkFXc6dkpJZ7wdgFd7SQWd9NW3ouL7r2O8fTMN65THrPX1NW0-2FFvIeoNnMWkHH6IHDh4azTN0ep0ralPcYZ__V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0XfuKOJWiLJTQ-2FYZ3OnMcuLUeZyBPakhksu9boX0jii6jg8vGFrcGaxZl79BRbbXv-2FR5UNKAAVJ0d1ntDG-2BTMDOTpwsEqYw0RBbWeA6WxIQkWo459knjCxmfFc2kSnnmq2iDBcQ0TS9TK0JxHtwSORZVEyCUvtIWqgnO-2BoPzPZ-2Ft-2FUYw-2FoyQNFoDwxbtsZEw71Zxk1mBFYWGwyfX-2FQ38E8PT\"><img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"200\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/a553c6be-4e06-4726-8e83-0332bd039b0a/1080x1080.png\"></a></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"400\" style=\"width:400px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.2.1.1.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILhu7-2Fqcmz3EM5lVMjhHaLLkPWIFPdkFXc6dkpJZ7wdgFd7SQWd9NW3ouL7r2O8fTMN65THrPX1NW0-2FFvIeoNnMWkHH6IHDh4azTN0ep0ralPAx7n_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0XdbMJj-2FrZRlnOby7-2BFQyQhMwDEedtp-2Fl8-2FFkEC75-2B-2FimQBWK44H6CHmoO0SPqDosaUMWUy4ippOHzGbC1-2FF53CbcWx8i-2B0Sll6F5ugfm7X3UVF8YFMNeUHWPgoNZ1-2F9n4jdM6eLNkOLvlXQAYCIHveEEqHxU2oUFeEwr-2B-2FyWwryJuAVsvgNVPxQo3dtMY-2FdxGC-2FQm-2FnCC40GktzfjWiqb16\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>Special Competitive Studies Project (SCSP) AI+ Expo</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.1.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">JUNE 2-4, 2025</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">Join representatives from the Defense Innovation Community of Entities, or DICE, including AFWERX, NAVALX, DARPA and more, at this collaborative forum for government, industry, and academia to connect on key issues around AI. Come together in the nation’s capital to share ideas, showcase solutions, and cultivate opportunities to work together.&nbsp;</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILhu7-2Fqcmz3EM5lVMjhHaLLkPWIFPdkFXc6dkpJZ7wdgFd7SQWd9NW3ouL7r2O8fTMN65THrPX1NW0-2FFvIeoNnMWkHH6IHDh4azTN0ep0ralP9gzW_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0Xeno1GHCj078KT3FXoT15xrePrJYIOfQekxHZnFeI52-2BjbW-2FZI9khGptLqdjauJTKW2g-2F6HFrObMNZHQOA-2BxT-2FWw-2FgnGtB2SVI7L8a31IkTJoSfFFJIaWhl07JzO8tOP-2FYV8493qp7cOjwKgCo-2BP6ncJwwwLw65Y8VIk23FmHfn71KN8zR9eDVTjOSt-2BfPzsO6RcZ0u8J9mJ6y3XVoEQk86\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-family: arial, helvetica, sans-serif; font-size: 14px\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"200\" style=\"width:200px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cBiyKgSAf3sHzEQtGwL8gU.1.2.1.1.1.1.5\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:25px 0px 5px 5px;\" valign=\"top\" align=\"left\">\r\n          \r\n        <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILs1XNAkONq27Vy2eoL6dfunuZV2ouMkPE9B-2FNWdcY2xHVi7SnfkK1i2UNM1BB9AgjhGECCfSvugvOfRrW6mT2smYFDorEs2SHKqhd4CeMjabwxG1geFck383WvGQ3Orw999eYI6vBE816EOwT-2Bq9QHnza4Hmtdr2JasWA5ubFMpzUfmY_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0XfAwl-2FofcDF42mIZeh6cZocu1iCPdnvZjarshtHoXydw4OmLhsoMADEohqc7kOR7mll2NLW6FN1wVPbsNgZxvLLuTuLPML2s7ccFeEbpjEFSBny2dc0-2BJw5foSBeQRrYmjBZ-2Bqzi94lCXCHx8woH752pQR4qEbpseZijShgEqWqWEKh5xGeubDQhOOvn7435jammJ3tCeXXJfvOzqsdvRUR\"><img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"200\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/b77beec1-f9be-4605-add1-667e3d2a1890/1080x1080.png\"></a></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"400\" style=\"width:400px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.2.1.1.1.1.5\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILs1XNAkONq27Vy2eoL6dfunuZV2ouMkPE9B-2FNWdcY2xHVi7SnfkK1i2UNM1BB9AgjhGECCfSvugvOfRrW6mT2smYFDorEs2SHKqhd4CeMjabwxG1geFck383WvGQ3Orw999eYI6vBE816EOwT-2Bq9QHnza4Hmtdr2JasWA5ubFMpzWEQA_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0XfaX7EBV1wIwj8xRyoy7RoptiWGRPcw16iBgeSbvItmwKW3wr47CWtZ9Wz1OZ6YA1kBu07nOhh9jGqkOf317Rv12-2Bji9LKjkeo4w-2BABuWR-2BZ6nTQEPyP0b9abzP6O1QRy2-2BNAEsrWw-2FFiCr9AtBQagej4KU2jjQXxsget0X-2BIIKRtUq7-2FkRILmyiX0wG3-2BC4S31XBMWjnzJrQecRhzEBK9s\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>US Export Controls Webinar — UK Focused</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.1.1.1.5\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">JUNE 10, 2025</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">Interested in learning how to work with the DoD and how to adhere to U.S. export controls? Join experts from the Directorate of Defense Trade Controls and the Bureau of Industry and Security.<br>\r\n</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILs1XNAkONq27Vy2eoL6dfunuZV2ouMkPE9B-2FNWdcY2xHVi7SnfkK1i2UNM1BB9AgjhGECCfSvugvOfRrW6mT2smYFDorEs2SHKqhd4CeMjabwxG1geFck383WvGQ3Orw999eYI6vBE816EOwT-2Bq9QHnza4Hmtdr2JasWA5ubFMpzv_j7_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0Xc4ebP7GCueKAjybqdN-2BlpW3SL-2BKCA9HhnyUQUslzqoCSFI52nL0dGLewErhwypnhvQ1zMISv-2BVdB9EuCPCqELFPWTbAc3UQGJDx00b6WNkMQR7u2F1ERFNpGT7hgVB88yt-2BgW00b4JizINMAb2jbMjMsVi3lnyg4MfMH-2BhyuhW5pwshXS45TLaCyRlAoyCW7Y8mjyYvYe4qJIUjYcag-2BJ0\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-family: arial, helvetica, sans-serif; font-size: 14px\">Register here</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"b2aae8b4-07ed-4408-856d-9fad1455350e.1.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 70px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2e35c854-f82d-44a2-a0f5-30013d25e3d3.2.1.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px; line-height:30px; text-align:inherit; background-color:#e6e6e6;\" height=\"100%\" valign=\"top\" bgcolor=\"#e6e6e6\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-family: helvetica, sans-serif; color: #0d66bb; font-size: 30px\"><strong>DIU News</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"200\" style=\"width:200px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cBiyKgSAf3sHzEQtGwL8gU.1.2.1.1.1.1.4\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:25px 0px 5px 5px;\" valign=\"top\" align=\"left\">\r\n          \r\n        <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOdmufIFpPtbvMDN-2F3X1pFYpHBlNqt8VkrQc4GyG-2Bavk8ISVJOQePaOvAPuUjk1iKzsFP5vNRjhYlaXMVOZmLVVhd-2BQGxK8Z4XzTP1zaeRnAZwlKI7UCIbA4udC0V9oHXMmjaVVhSBEacf8pdz5JLnju7ZwUOsDXJyhZ8z5-2FyCPLC2YbQwgO6LzaKSoTy6bQ-2BPE-3DjYsF_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0XeLdQDU1Un4rAFOLDWNKbE4Bdf-2FtY5b63GjGcNV5tASXFV2UROHn4NvepIjY106B80Gc7IeNY1SM1jWZBXYAE7zuyCfE8N-2B7Hb-2Bu4-2F6gTweE2cIHvCjHTRxG-2F2wiQEcgu7DSgCsvAe3Fjf0gnl7-2FjLqaCni1CxykliPBc-2Famhad0kZfatKvaHDzppUJFWa7xpJrTPyr6BlYoIsunWv8mnda\"><img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"200\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/7f30c50c-1d37-45c1-aaf7-4d41d9e537bd/1080x1080.png\"></a></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"400\" style=\"width:400px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.2.1.1.1.1.4\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOdmufIFpPtbvMDN-2F3X1pFYpHBlNqt8VkrQc4GyG-2Bavk8ISVJOQePaOvAPuUjk1iKzsFP5vNRjhYlaXMVOZmLVVhd-2BQGxK8Z4XzTP1zaeRnAZwlKI7UCIbA4udC0V9oHXMmjaVVhSBEacf8pdz5JLnju7ZwUOsDXJyhZ8z5-2FyCPLC2YbQwgO6LzaKSoTy6bQ-2BPE-3DWOBB_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0XeEBVmsG4Y4GkPyDqcCT9Q-2BvqZrePPTiSCo4PLpySx8yr1Y5WV06sMgNiz7bC1jBxRpWXKbVz2GvYCTwn-2BkbnAPjbNkUYfXzx1FaDG8tYd2ow8fS0kBEBUqjgVAq-2B-2Bnr4LDsPEZFOXshbm1FnGJ9lcp4FZWBX8wgjHUmiceToZjPwVIE-2BQF2SxKolP1SIIqmhFbnlG58JIdpBDBIlcXx3KF\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>DIU Hosts Blue Manufacturing Informational Webinar</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.1.1.1.4\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">Gain insights into our new Blue Manufacturing initiative, the call for trusted advanced manufacturing partners to support scaling production of critical technology capabilities. This hour-long information session provides an overview of the program as well as a detailed question and answer session.&nbsp;</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOdmufIFpPtbvMDN-2F3X1pFYpHBlNqt8VkrQc4GyG-2Bavk8ISVJOQePaOvAPuUjk1iKzsFP5vNRjhYlaXMVOZmLVVhd-2BQGxK8Z4XzTP1zaeRnAZwlKI7UCIbA4udC0V9oHXMmjaVVhSBEacf8pdz5JLnju7ZwUOsDXJyhZ8z5-2FyCPLC2YbQwgO6LzaKSoTy6bQ-2BPE-3D8S1__V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0Xc0PeApz7yB2lCUQG5ri6Tzag2sM8IFEr5djjgsD1RkBI20x2KNSnD-2BGzKUAv-2FmsBqB-2BIkgcXx5DCCFqE03tjUbAHHa8VlmFYSIc4K9BZh7QrR3QDbzAK6BMDsqpLKpRBMgW0tfZPVll52YYCmdVoKIxTySvmy2cbFVpUsjhl56Uobf0duwH7JbKm-2FAEPrepr2qVVSM069b1S3h7dnyN9u1\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-family: arial, helvetica, sans-serif; font-size: 14px\">Watch the Webinar</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"200\" style=\"width:200px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cBiyKgSAf3sHzEQtGwL8gU.1.2.1.1.1.1.3\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:25px 0px 5px 5px;\" valign=\"top\" align=\"left\">\r\n          \r\n        <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOev10J0gOTS7Hut-2FeXWL1aVosmnbi5xa6HjHLmOXZKtXoAn2ZN99QEDj2pE2sE8iE33wlGSP9Ef8leqrIjR4LetrQ8IvOPhwFO9C-2FS1d1ms3XzlFql30xzRQl4nen6ZXAbwCVduRAnnCCrYN4yyjMRoqMNmBm3RamWlIRmVxjBaz3AaxOvQ1L98issYwJPrdy0ty8lQwSxCYVayp0pdkvpz7X2L_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0XdbWXeULIdoSiNHLO662I8zUUBidwDLZ0PuhYdH7hmMiXjsDIzyDfSzob5poFsn-2FNVl5UUhbnfhcSaJfu24x-2Bvq027m3eoMJ8GKqZxqM47QKnuH1gJCktkrDtSiv4PIIUinVgZMfks3HLiayERGAOcgwarzrxReluygzqZuqrHwYgdtDJYXo9UnCLGMMxw7P8gGjWZtOdBRmm1VDXK4o9E1\"><img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"200\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/e5e95120-ae30-43ee-8b61-8aba351e4a09/1080x1080.png\"></a></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"400\" style=\"width:400px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.2.1.1.1.1.3\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOev10J0gOTS7Hut-2FeXWL1aVosmnbi5xa6HjHLmOXZKtXoAn2ZN99QEDj2pE2sE8iE33wlGSP9Ef8leqrIjR4LetrQ8IvOPhwFO9C-2FS1d1ms3XzlFql30xzRQl4nen6ZXAbwCVduRAnnCCrYN4yyjMRoqMNmBm3RamWlIRmVxjBaz3AaxOvQ1L98issYwJPrdy0ty8lQwSxCYVayp0pdkvpzx8Gk_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0XebkKmMFjdbmHOaJukI8mzLBrGzNxl3nTP2eLiW0zlp48KvOnomHaqFvB1VMIpXQOeKfucJZ8jrhMLYXDHK1Jm0zQaalDJd6MSfSrXiGIaDJxo-2FCgPJ0w45wBdcKOJ2b9JxeYkkugC7yyT2SNmO3xZktWACaMn8ayYcY7-2Fc7d5pgu3p7sEAVdmalTHNGfL3A08vYeuJt2qM-2FP-2FOCh-2FAsKsG\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>DoD Selects Companies for Advanced Nuclear Power Installations Program</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.1.1.1.3\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">Eight vendors were selected as eligible to receive Other Transaction awards to field microreactor technology as part of DIU’s Advanced Nuclear Power for Installations (ANPI) program. To secure U.S. energy dominance, the ANPI project seeks to build fixed, on-site microreactor nuclear power systems on select military installations and support multi-domain operations ensuring resilience from constrained grid energy systems, natural disasters, or physical and cyber attacks to infrastructure.&nbsp;</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOev10J0gOTS7Hut-2FeXWL1aVosmnbi5xa6HjHLmOXZKtXoAn2ZN99QEDj2pE2sE8iE33wlGSP9Ef8leqrIjR4LetrQ8IvOPhwFO9C-2FS1d1ms3XzlFql30xzRQl4nen6ZXAbwCVduRAnnCCrYN4yyjMRoqMNmBm3RamWlIRmVxjBaz3AaxOvQ1L98issYwJPrdy0ty8lQwSxCYVayp0pdkvpzXzE5_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0XeSP26gOUkaXRZtLPEgU3btRhUp1NS5RyfdtoFqxjV6ZQBAYqXgvMGxOz0AwDXhnwhSI5Do9hl6wf-2FfJ40842-2F1l-2BaIkH8Jp1qoo6aQPmGGa25yBq-2Bv5rPcRqExxVNw7XJDORJdQCIXutSt8934OdcBQtO2T8P9lop-2BbOGztx7PMoyVoWfR2KdXV42yefQpW-2BNjGJ7U4YjV-2BrA3nk3PpbcT\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-family: arial, helvetica, sans-serif; font-size: 14px\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"200\" style=\"width:200px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cBiyKgSAf3sHzEQtGwL8gU.1.2.1.1.1.1.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:25px 0px 5px 5px;\" valign=\"top\" align=\"left\">\r\n          \r\n        <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILigSPgoyRWe1jvwzlC4TXPcPXiyBFsfM3ISLoN-2BwsiTKVcSxaWIVrT1ZcvaeuqBm5jNMEepVoCBpVAnr5JKUSv3wbhhpeEORA01fMRpVRYeDUk6it3magLaKHUoNvNRgq19tu0gVGhkEmGjkiZUZGWmNEF91GbnCIYRRwPs8GieCK0qn_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0XdNQOSYRj3DWDB3WB-2FtHCQNK5kxkuvKQLut7VuaiAfpFJtvBbb5YwhJ17KUyWhA6nAdeVnqfbIawccGoPzTIOBdtXPSmCWqa8C-2F8i0TsJppHOdHF-2FThfoNl1oVGKjkSsurEuDPC9ewJHChmC54MQl8d5Ma8KYuNAkxRQbufW5QalyVASxlMQMqNsBgQlSDq-2FgUN7G7LubcLz-2FXi4z6zHJm7\"><img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"200\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/c3d43190-23a9-4010-b669-3185abc75d63/1080x1080.png\"></a></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"400\" style=\"width:400px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.2.1.1.1.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILigSPgoyRWe1jvwzlC4TXPcPXiyBFsfM3ISLoN-2BwsiTKVcSxaWIVrT1ZcvaeuqBm5jNMEepVoCBpVAnr5JKUSv3wbhhpeEORA01fMRpVRYeDUk6it3magLaKHUoNvNRgq19tu0gVGhkEmGjkiZUZGWmNEF91GbnCIYRRwPs8GieCf8CS_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0XdKkSqf3JtWj9rHus27K12ck7CQbaHaEV4WRzDgYUW2zd2YwK3fw079WjJHpJduvQwyhR9gWMoyMnTq1NrfkmA59q8jVKBPub4tmQvOFAS-2FEwk1PaQAPGGT1QN3j4Q1w2Y80osI37bYG6otC-2FAVNLskWAOoh9w-2Fn-2B5cPdsE6XA9aoP5D62neiwAFqmx9BeQFB9YfmSd9hRFQH82uoZkFmzX\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>$300,000 Awarded in First US-Japan Prize Challenge</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.1.1.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif; font-size: 14px\">Two California-based companies, PHC Global and Peak Metrics, were awarded the Japan-U.S. Global Innovation Challenge splitting $300,000 in prize money. PHC Global was selected as the “AI-biodefense” solution, and Peak Metrics was selected as the “Judging Information Accuracy &amp; Counter Disinformation” solution.</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILigSPgoyRWe1jvwzlC4TXPcPXiyBFsfM3ISLoN-2BwsiTKVcSxaWIVrT1ZcvaeuqBm5jNMEepVoCBpVAnr5JKUSv3wbhhpeEORA01fMRpVRYeDUk6it3magLaKHUoNvNRgq19tu0gVGhkEmGjkiZUZGWmNEF91GbnCIYRRwPs8GieCQwdz_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0XcdoTaQKp911GoElsBhZQ-2Fkd7WLIW8C5QyQ-2BZYmaWjUct5PSTBcHr3Vx7d7j6FewWCaZf-2Fe2-2Fvw5zDzYocxdWqXj6-2BD90goMy-2FAN6JaO4-2BoAgSC9sWIynX1ZKhvuSly6QaQPJACo5NqGwMnv60-2FwwIzb0VMFA107-2Fmw74AP0-2FPSnuhi9L0OY0KcTiNoQex7244AQlKBY6ErH8IsYHMklOHt\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-size: 14px; font-family: arial, helvetica, sans-serif\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"b2aae8b4-07ed-4408-856d-9fad1455350e.1.1.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 70px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"600\" style=\"width:600px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.1.1.2.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: center\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9v9Frb8CfXNFnM9xkwe1UB6t7hKC5ZK-2BORBaD0mikwl6IqSVHXcaM36vBk-2BYbuxOEhzNgMIprs-2FYqLw3sbS-2BJ1WTxvlM1Yxm5b7HnxTklOFoVYmhgDb4-2BGb6dYrEhxzxIbqMOeE4zmJN8-2BFr-2FeTgaMFXTHl4Hs7374yE3Vr8qyJ-2BuMGQ_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0XcvSytlHKExGzcUgMM4wNzqGxezXB8uek9hTHWn32hO4tZrWH3FO1dg-2FAcZMMBr6l56uZBbJVlHrS0FR-2FT8wQKzYmxPp-2BYxWUD870I3rxe742Byo1B6rrj38ui-2BG6dzOlgPFoU-2FN-2Faul902XvSvUAC8KKESKLUmPiXgI6zC-2F6N-2BSVGMlhUjHYhhmylNoHS2pgySeR2J-2BudUlT5s-2BF34ry23\"><span style=\"font-size: 24px; font-family: arial, helvetica, sans-serif; color: #0d66bb\"><strong>D</strong></span></a><span style=\"font-size: 24px; font-family: arial, helvetica, sans-serif; color: #0d66bb\"><strong>IU Data Digest</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.2.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; font-size: 12pt; font-family: Lato, sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; font-variant-emoji: normal; text-decoration-line: none; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; vertical-align: baseline; white-space-collapse: preserve; text-wrap-mode: wrap\">DIU works with companies across the country and around the world to lower barriers to entry to the DoD and broader defense marketplace. In FY 2024, 87% of contract awards went to non-traditional vendors.</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"9200222e-4167-47db-ae94-88f47ef8d50b\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-family: arial, helvetica, sans-serif\">If you were not the original recipient of this email and would like to sign up for the DIU Newsletter, please register </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkRcYMiV4RQSYNbz4WjG1zsrVoDrJTcK9AlMfUqQSru5OZJPjwZluHDFvUZw0wQ7Vu6M8-2FmKWpebp4Tkj4KGMvR6Xvdv1bfHdGF3ROb2ml3EFnqIS68d1Ds387XBuD6Jbg-3D-3D7BAA_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0Xf5NTeXiwkVjLnhYowuIgFXU3Za9XzxA7iMRDP8NH73YdtukS4APnmZlvIreiref0r6whBueGGL0kqZeJ52Qnzro9UeAXuv5C6atxCV4cA3CWbNqPsPMz2QAdTCIhEf8rlo3PPi8Grknu3Pl-2BIDdOYSGj1nMR5lT-2B4PZHU-2BcvHeDoSn1iIl4rtyU6VCmVHlOi2B8SolKrCT3N8dpB1Vm-2FD0\"><span style=\"font-family: arial, helvetica, sans-serif\"><u>here</u></span></a><span style=\"font-family: arial, helvetica, sans-serif\">.</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"divider\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"52646515-03f4-4e8c-9b72-4fc547d4e522.2\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 0px 0px;\" role=\"module-content\" height=\"100%\" valign=\"top\" bgcolor=\"\">\r\n          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" height=\"5px\" style=\"line-height:5px; font-size:5px;\">\r\n            <tbody>\r\n              <tr>\r\n                <td style=\"padding:0px 0px 5px 0px;\" bgcolor=\"#FFFFFF\"></td>\r\n              </tr>\r\n            </tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"112c8b7c-f2db-4e56-a488-a954a02f2d55\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.CzY0f5tAFeDq1sMG7ZgpjdgsKlVwIPTNpzdKOiUDPD7AMjR-2B-2BITtcDo2VB5cKOgB7tsD-2F-2BeB11DytdpaLmbU-2BV1AGqioxMI2oTm1SpzmKlZcp7QVQeuc6HlOF6Vdg4gyUpy6_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0Xc-2B7bu1eD5TDuVbDidiW-2F6I3Sbab4T-2FrRieSjaOr4NgxpQEH4o2carRjidnBCEr9fDzZ1W-2BXL7XwOMB1bRbb5S23hdCweBxlVlvB9XXel1w3r9-2Bp21whIag-2FU5uT-2F3eH9Fv4twDbxI8PJAwVtvWMWTDIjjfuCUZ-2B05pn70Or9KcojoGaTSzhG2dCQfgOROqZPmWYuW0qJa-2Bc0SORlmn3sHn\"><u><strong>About the Defense Innovation Unit</strong></u></a></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><br>\r\n<span style=\"font-family: arial, helvetica, sans-serif\">The Defense Innovation Unit (DIU) strengthens national security by accelerating the adoption of commercial technology in the Department of Defense and bolstering our allied and national security innovation bases. DIU partners with organizations across the DoD to rapidly prototype and field dual-use capabilities that solve operational challenges at speed and scale. With offices in Silicon Valley, Boston, Austin, Chicago and Washington, D.C., DIU is the Department’s gateway to leading technology companies across the country.</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"divider\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"52646515-03f4-4e8c-9b72-4fc547d4e522.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 0px 0px;\" role=\"module-content\" height=\"100%\" valign=\"top\" bgcolor=\"\">\r\n          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" height=\"5px\" style=\"line-height:5px; font-size:5px;\">\r\n            <tbody>\r\n              <tr>\r\n                <td style=\"padding:0px 0px 5px 0px;\" bgcolor=\"#FFFFFF\"></td>\r\n              </tr>\r\n            </tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"193\" style=\"width:193px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"63b68e10-68b8-4c48-9974-bf287cfe098d\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:0px 0px 0px 0px;\" valign=\"top\" align=\"right\">\r\n          <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"193\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/3c3e14b4-863b-44ea-a235-44a86550fd55/1920x553.png\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"386\" style=\"width:386px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"social\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"0a01c058-b46f-483b-b78c-66b27b087fdb\">\r\n    <tbody>\r\n      <tr>\r\n        <td valign=\"top\" style=\"padding:20px 0px 20px 20px; font-size:6px; line-height:10px;\" align=\"left\">\r\n          <table align=\"left\" style=\"-webkit-margin-start:auto;-webkit-margin-end:auto;\">\r\n            <tbody><tr align=\"left\"><td style=\"padding: 0px 5px;\" class=\"social-icon-column\">\r\n      <a role=\"social-icon-link\" href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILruprgLTFax-2FwdCEoDuowPk6lC7UUuoxLkqryl-2BFeCqC-2Fuuup74SDcFdJIT2Wm0IfAmqo7rZb72PCnLcp4IdbNmccKXqxXWg6lmbf7ew5wTx9me94BdR-2Fom4u79s3MIz1i7C5Lj7aIahKoybW7Na0OQ-3Dc4Gj_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0Xe1b2rbg4sd9EbOw6vEFC-2FjgAyRRC4xs7VCTh-2Fjn9MeFKnabVjtLOclP4zcpsf-2B2FB8gL3-2FJZ1V3IcQdY5VoNn9G9Y2TFNR29aWvP-2F9-2BGTr-2Ft35j5gAyuUBIVyggDnC5CSyah51jYAfkF-2FYjL3bKWH3cEtW38u2DjBByXVVZdp4nVjX8o1ze6swHJ0bFTMOvaPI0uuThO79-2BNDPtTpm5ijE\" target=\"_blank\" alt=\"Facebook\" title=\"Facebook\" style=\"display:inline-block; background-color:#0059DD; height:20px; width:20px;\">\r\n        <img role=\"social-icon\" alt=\"Facebook\" title=\"Facebook\" src=\"https://mc.sendgrid.com/assets/social/white/facebook.png\" style=\"height:20px; width:20px;\" height=\"20\" width=\"20\">\r\n      </a>\r\n    </td><td style=\"padding: 0px 5px;\" class=\"social-icon-column\">\r\n      <a role=\"social-icon-link\" href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILl3jEI7VQOngoB3sTi1sr0s6s6sidlqsKRgMcMtXT58oriF8r16RvZ3Lu32AlHfiRN0AVnM0wls9ICuqiTYgXdYFJYYrWuI4drLYbtBHNfG6jlTojqNjDmgpaa79IUj3GQ-3D-3DxxAp_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0XcKCKxHTCLn7ImWqPdf6WKl4kzUFZF9puGmF146ec6Ao4OvdjCUf7t5UO4vo4CI70tr8L7KV8Jz4DLqU13rqszV8Bc4nP3dg3Z7Qr6blAMSC0c3yT4xsh7uBERWShZIOAq1K-2FJ7O7-2BxiZSwO66O6mpTqk0KiXMjSg7lJ-2BBXd-2FitiVaBNb6Oa3K1NBsxX-2FMmUaYdvE1YX11-2BrpJj-2Bx4nxrJb\" target=\"_blank\" alt=\"X\" title=\"X\" style=\"display:inline-block; background-color:#0059DD; height:20px; width:20px;\">\r\n        <img role=\"social-icon\" alt=\"X\" title=\"X\" src=\"https://mc.sendgrid.com/assets/social/white/x.png\" style=\"height:20px; width:20px;\" height=\"20\" width=\"20\">\r\n      </a>\r\n    </td><td style=\"padding: 0px 5px;\" class=\"social-icon-column\">\r\n      <a role=\"social-icon-link\" href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILigSPgoyRWe1jvwzlC4TXPcgTZYPtfIjDa-2BOoPwkKp3eVLkplbFWVOchz-2B37AepGp3rqzDpRumX-2BwFxTVU8Ul3zBPB9ciOg2s1a93u-2FYzFlbtL-2F5cWLWJQtgDp5FtLK4SisK3DLek80T1U9DBvj-2FgmiKHB9L1RiayX4SfEyUzzlYT7jV_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhBV-2BG-2FfNN-2B-2FUG1EnUF8Vgzw151RUnivFTJ4PGHQQ9Oae-2Bt8DSW9F56BxNHEF0v9NmEkK3PwtMIZTejqGZeOFwpUKHX2ITVLJ5-2FqY4Bz7oyvUazB43AdPTqs6tNLe0aXkPqQlGi8Ye0eLalHZM-2FHtQdji0v2wO560rvD4FaVusN1tvitvP07oOVQA1Hmh1TmYAksNbDrVC5JuNlAooTURWUEe8WoQOlCcdrz-2Fe0HT6Rkpg3EmtTjjYHmDr3OZkCc0DFJdmsQspLj2B-2FGbCRWxvzR9iAgoiRIsIME99hjwRoKVk2EUYboD5dWju0mKIAdMuAQyucioROep7jLqRPxldrvI7Kh8ndZ4aJqwWEF8-2Fl7-2Bc5Ysxc7imxDEeYqMRp6A8ju1b3g6juU9luLg6sd4ugka5vvf791CK-2FNDsKaVOZZ3aptfZ-2BstGsmjezBLx5iGfauIFi-2F27Rf1AZIcHewFE3uChLshh8kvy72h-2BA-2BDM7SWi6qXDHz3jSRLUOn2hD9wdrR8GS-2FgJMWgm72HyRsTig85f17NN-2F5CAOA9gNk8lJEL908ppu0IAi8KJgprvCTcAY02XjrWiLljeyc4nZP9A9pJ5IoDqDlFnDzJIFgLc0XcUYv98-2FRtm-2BC5YYclh69z8WOXDhgT14dfkxyvC73vmhNtFd0xS5dVxddThHc2dxgjd15wJSYA0ieagVOT1KcXpnhhpElk0T0PJeHD3L8Cj-2Fu0eMCu2Z-2FfDpX1K-2BT7Rgp-2BkmZQWbxwzTzdXIwDUF5i9q71V1Nfgh6xAwB0EYYTwMR7iCaZ-2B-2BsJE-2FFpujLAYZ-2BL0GJdc8oe-2FAOMWv-2F9QGfKm\" target=\"_blank\" alt=\"LinkedIn\" title=\"LinkedIn\" style=\"display:inline-block; background-color:#0059DD; height:20px; width:20px;\">\r\n        <img role=\"social-icon\" alt=\"LinkedIn\" title=\"LinkedIn\" src=\"https://mc.sendgrid.com/assets/social/white/linkedin.png\" style=\"height:20px; width:20px;\" height=\"20\" width=\"20\">\r\n      </a>\r\n    </td></tr></tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><div data-role=\"module-unsubscribe\" class=\"module\" role=\"module\" data-type=\"unsubscribe\" style=\"color:#454545; font-size:12px; line-height:20px; padding:0px 16px 16px 25px; text-align:left;\" data-muid=\"4e838cf3-9892-4a6d-94d6-170e474d21e5.1\"><div class=\"Unsubscribe--addressLine\"><p class=\"Unsubscribe--senderName\" style=\"font-family:helvetica,sans-serif; font-size:12px; line-height:20px;\">Defense Innovation Unit</p><p style=\"font-family:helvetica,sans-serif; font-size:12px; line-height:20px;\"><span class=\"Unsubscribe--senderAddress\">230 RT Jones Rd</span>, <span class=\"Unsubscribe--senderCity\">Mountain View</span>, <span class=\"Unsubscribe--senderState\"></span> <span class=\"Unsubscribe--senderZip\"></span></p></div><p style=\"font-family:helvetica,sans-serif; font-size:12px; line-height:20px;\"><a class=\"Unsubscribe--unsubscribeLink\" href=\"https://u18220755.ct.sendgrid.net/asm/unsubscribe/?user_id=18220755&amp;data=Kgc5N60ljS8xLcKNAVMa7xqYAj13OUN55ioBzRclGsNoMDAwdTAwME7ZTU44a9E87RrxI0pT9oOAM5byWne3Xa123l0EBVMWa1fx59S2-VtsKRVNSSIb_Y393Fi3hlQJDWsfbqBCNflbEFaiF1WAwAyS2pV0PBHO417HmXHa_rQoYldqI2C7QCEzKNZj-Tmo8ryXc1AbNBreCWyag3ki3pxezWW7MOfPMLdUAPMF7uXF9qeCARdj7OCi1oVJO1o5cNnz3LFD09LmEPq7-XqyTlsX8AgQpke9wlxbp0n2nsmlHEkO5XsHkHRGn-PKfqiyHJkMMUNZygZFZETpLp0lxExtpcTFX9chV_54mZy0pJ4K6DmF-PC3hTbWkZ4ZeEhOSIt37-zMNKyFLz9Tu1ujgwVVpUGUemBBe4NWijA6wT-kiONCmFbC5twFVeA7JZxkPsuznJ637gCcZBWdqIB-Z6l9bnjIFH3WWichU3vN6tMnZq0Eu5jSMNgsd2f2pXiVNWY77TXcdKG2K7uJtz_5wdB06or0DhpO8Vot2LEBFj0xVgJP3hyyMQ-YlZGXSwOIsd0A7R3Ah-CQv5zPFiA7kcVJNNJhEtF-BU9kPSXbspWokQv2LwU7FvGCUFJyNPfYgEoML3FMVJQC8FIwcXufKAV8JkSvGPTSFAjmMb1BlhiuBXieoPMPSNfamhd5pvSu_k5UtgwAaCQaJQlZ-KQdQayfLce21DssjvzaT2RFs0tKhhHw24jQ0PPEZ7yrvgs5zotFV8kIWN7zp3n7bnsI2Uk7uRQ5xmDV4SguZGpUVEiuEZ_lKrrPhu6XXOQqtol4u9bv_HL9e7-ncnKbuEtkv8i8B87mSV_AxGwXUiGZpCbZg__MEAns9yQk2kFZkzovp0m5_M2pmletg2To6wt2GYuvaDqWaOTvx9DT2JnOd5Q-jkHABM_4G2ckHKArn3JuOSKg6ahcqeTNxJ6KnQ4VVuzAMZPY1q7fE47MrF4kq2c_50B2eVxXPoWx0aIW-WU1Nu5Yh9dNsni9s0k_K-p2XZroEfWCNy8C4vyTBu5-CMI3n9Aveo4GEr6MeVbBsdn6HeV1ogDD_Lr2oDUb5BLSyKizV2hSz5cJtR51hOPyWn6w6lQ5-D8TTOD__cPuPNrrw4gqIFZZsPc=\" target=\"_blank\" style=\"\">Unsubscribe</a> - <a href=\"https://u18220755.ct.sendgrid.net/asm/?user_id=18220755&amp;data=medrnph6ryGJNkVUicS2TgnP_S4aYORjJGiAqqOMLMNoMDAwdTAwMMQe1dZc4yt-XPGctnFo76_nz9q8e33DOiEHFJy9ivBsESgVunV157cIB_qHGLoGpjTdWFSp0j-PnXwznfqg860zJK8bOC71cQTQNFmks9Qinaj6XPK5wTwzZkCi1y5K29HTyC0xtkNyKH7MeN9GcGkuqTUsXgd84HZCZwbLqUOqBYJV2QvZAAhOgNXIGFrF1lB1Rzg3Mjj_jyyNZ_PEf_ZmKYr25zM5kwKHH9KVXvNriPnjGpBWD_FBr5vHVNknvGRrucfEiGM2VleFzgNUeP7ade03l2Gkn_TzOCoLP8n6bh2IdrVo2BhJiqM8_FrYM1wwS7FA37yNYbTIPGFOVd8mqaXr1xoQVHfD9vqaBzErTwkUItZkCEdCeIHeCh-vn4HFUjoSshRVunSmTa73ECyPEI3ZcIgeFhR-f7KT1ATcqLSwZoMD36MEUYmyZhXqqc-Lrv7Aa69_WUpwDkxvOVqKxhVC9DXoKOJy9BkHJAoFUH21w_8MQ2K0Y3_dKxR8ONOUEfY4zxzBTvNxkIikEXdnn2bmuHM8dRpD4mqaTgI-6pEJXXgCJpkr4jYb5CiN9lPUOBJP3aLnMZo1XF3gQMQa6JzJCjDRD5VEcbQjGy7vqpRF0I02cMQcqO2EZY19y10cRI-Tsef8azTkxxiqE6kYwWj39WIYPGMYt9e-mFhynx15RNxkkLl1Xy-tQYNwsSJVNupI_mGpjlSQpJ06bxdIGWKAhNsnVQ1xRfmcxtrxY5EiVHDbmNdInCQ3W1GfSoFLVS7CYOK8BDj25DxpNLYDgKJwGUESV5Kd2rba1SiRGuZoK-Ksjv--VoTRdebuEPW7IZwDEW2cSdWVmhk_L5JTBkMk8OPFvTSsnHeA1s12IyI2DgltcYzdmP0xe74YFUy8POsAv93fb4nM7lt2kiFJKLmtNQhT4aflOjjYWD_ddv3BGw5UZUjBO_th7AOlXn47I6xLfoKAsEDpldvR87X7YivaAsP8hPh5tzzz60X_WKamNtRo6EBG_5ukyIR5W5xkATdIOyUOZh6AESqLB4labX82rY0NuQJPRMlCjt7RqUfG2LoIK_H8zJ-kHGmg6g==\" target=\"_blank\" class=\"Unsubscribe--unsubscribePreferences\" style=\"\">Unsubscribe Preferences</a></p></div></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n                                      </tr>\r\n                                    </table>\r\n                                    <!--[if mso]>\r\n                                  </td>\r\n                                </tr>\r\n                              </table>\r\n                            </center>\r\n                            <![endif]-->\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </div>\r\n      </center>\r\n    <img src=\"https://u18220755.ct.sendgrid.net/wf/open?upn=u001.D6mC8SG6iITw2GIzPjAtw7SLAuEgZhcE7OQx5Ie2paKW9TCJvoy3Eh7ani-2FmDfzWZ4Aty9oKYAg8U-2BpXv81mmaeCBsQtTAdxlXqbnsXBCjn-2FAW10qJfypmIUPoD1-2B38yDZGfKg3voZ5f1B7iyc24CTr-2BuNSgj7oVzpSysNl3Z0pDH7B9N5MRdOixqcfo6AW5AgKDmv-2Fmvkmp-2FoN0ChU-2BW82spV5uanhMDZj-2FSCztWLVa-2B81mlXQG9VpdlCRTzs81gbes8PHaMz8dSr5gyhd1skiHld44Uiwv2X0faZ1UvF5BhOpOp4jk8kbfjZUT7X7R8DyJbJLyUCIHpTiioNbqIKaKQM-2FFqxkmubreoEe-2FNiDwZRc2-2FMlEjgIaoL016E33Ug3-2B3EzL9oioNUOiW0RioXJu79MelT-2BabXiaJ32rtD0jUcEdO1a9LZo7-2FX9Fsec-2BHs0TAYG294wiXP2Hvssh4FoMHaYsy7zTT3hpXt6hgFW3zgx1fvd9t-2Bs8dbdEgO8GZ-2BJfa-2FOEEp1M2-2B-2BgMGoxlh-2Bq4qGUKXSPlXgrTfpl0RZCvuRYm-2FuQAPaXDRg0Ka7p1ucbVWbKTucItIbI7WyxsvKV-2BuzmW3R2rEX5PEP8K8ifurXPAmSlzWDsCqt6jnaW0Rpm0IA5-2B4neslrCJAZlJSN1UUhGC7-2BHTt9uy47vB1ZiV4yJPG9dmyS0Zciu212BvUf274gylsti9jSYLPUdkGwweRXF5TprtCO5N9sjz8c8PVm1y8JyQ2ASQsS7I1czdNBokgb7yqQLh4ioeZSmR9pGAqn4wCQChsSRli9pu3l2QNi8l5d9-2FdlX0uo423vmsX8poe8TupXpkZLOrl50K9sBlDI-2BQxIkjMxrRZnLGTRH10hD8-2FPIAredA5ROgCSJXB9FYIR4vBKpVWZpl8LNRKOSSZuIEMfikxpNdevg8wk4UXSLQn1dbd-2F15L4YKXxI\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/></body>\r\n  </html>','Read more about our Open Solicitations and Programs\r\n\r\nEmail not displaying correctly? View it in your browser.\r\n\r\nMonday, May 19, 2025 - Reading time: 2.5 minutes\r\n\r\n*Open Solicitations*\r\n\r\n*Joint Low-Collateral Defeat Capabilities* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00597?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nMAY 19, 2025\r\nWe are seeking the most agile commercial companies with low-collateral defeat (LCD) capabilities to meet the evolving challenges in countering UAS, scaling your solutions across the joint force in support of Replicator 2 and integrating your capabilities into existing programs of record. This call builds on multiple efforts to deliver strategic capability and to build new innovative muscle for the DoD. Submissions close May 19.\r\n\r\nLearn more ( https://www.diu.mil/work-with-us/submit-solution/PROJ00597?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*Advance Operational Readiness Across Manufacturing Parts and Production Platforms* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00594?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nMAY 26, 2025\r\nCalling all advanced manufacturing companies: Our Foundry for Operational Readiness and Global Effects (FORGE) solicitation is seeking solutions to boost production capacity and remove production bottlenecks for cast metal parts used in high-performance aeronautical systems. We are looking for advanced manufacturing techniques that support high-rate production, but open to any novel methods which best achieve the government’s goals such as, but not limited to: survivability, reliability, and affordability. Submissions close May 26.\r\n\r\nLearn more ( https://www.diu.mil/work-with-us/submit-solution/PROJ00594?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*Advanced Marine Propulsion and Power System Technology* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00591?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nJUNE 5, 2025\r\nDoes your company have a proven Integrated Power System technology to inform and de-risk power and propulsion design for the next generation Navy destroyer? Submit your solution to our Advanced Marine Propulsion and Energy for Revolutionary Efficiency (AMPERE) solicitation to enhance the warfighting capabilities of the U.S. Navy’s next-generation surface destroyers. These vessels must remain adaptable and lethal against both conventional and asymmetric threats to maintain superiority in the evolving maritime domain. Submissions close June 5.\r\n\r\nLearn more ( https://www.diu.mil/work-with-us/submit-solution/PROJ00591?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*Open Programs*\r\n\r\n( https://nsin.mil/events/2025-05-20-cuas-low-cost-sensing-challenge/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*$1M Available for Scalable UAS Detection, Identification, and Tracking* ( https://nsin.mil/events/2025-05-20-cuas-low-cost-sensing-challenge/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nMAY 20, 2025\r\nDo you have solutions for scalable, cost-effective UAS detection, identification, and tracking? We are looking to enhance the DoD’s counter-UAS capabilities while addressing cost and scalability limitations associated with traditional radars, optical sensors, and radio frequency detection systems. Applications close on May 20.\r\n\r\nLearn more ( https://nsin.mil/events/2025-05-20-cuas-low-cost-sensing-challenge/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*Upcoming Events*\r\n\r\n( https://expo.scsp.ai/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*Special Competitive Studies Project (SCSP) AI+ Expo* ( https://expo.scsp.ai/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nJUNE 2-4, 2025\r\nJoin representatives from the Defense Innovation Community of Entities, or DICE, including AFWERX, NAVALX, DARPA and more, at this collaborative forum for government, industry, and academia to connect on key issues around AI. Come together in the nation’s capital to share ideas, showcase solutions, and cultivate opportunities to work together.\r\n\r\nLearn more ( https://expo.scsp.ai/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n( https://www.zoomgov.com/webinar/register/WN_rANVklULTcC4E-ytB20e-A?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*US Export Controls Webinar — UK Focused* ( https://www.zoomgov.com/webinar/register/WN_rANVklULTcC4E-ytB20e-A?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nJUNE 10, 2025\r\nInterested in learning how to work with the DoD and how to adhere to U.S. export controls? Join experts from the Directorate of Defense Trade Controls and the Bureau of Industry and Security.\r\n\r\nRegister here ( https://www.zoomgov.com/webinar/register/WN_rANVklULTcC4E-ytB20e-A?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*DIU News*\r\n\r\n( https://www.diu.mil/latest/defense-innovation-unit-launches-blue-manufacturing-initiative-to-strengthen?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*DIU Hosts Blue Manufacturing Informational Webinar* ( https://www.diu.mil/latest/defense-innovation-unit-launches-blue-manufacturing-initiative-to-strengthen?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nGain insights into our new Blue Manufacturing initiative, the call for trusted advanced manufacturing partners to support scaling production of critical technology capabilities. This hour-long information session provides an overview of the program as well as a detailed question and answer session.\r\n\r\nWatch the Webinar ( https://www.diu.mil/latest/defense-innovation-unit-launches-blue-manufacturing-initiative-to-strengthen?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n( https://www.diu.mil/latest/DOD-selects-eligible-companies-for-the-Advanced-Nuclear-Power-for-Installations-Program?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*DoD Selects Companies for Advanced Nuclear Power Installations Program* ( https://www.diu.mil/latest/DOD-selects-eligible-companies-for-the-Advanced-Nuclear-Power-for-Installations-Program?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nEight vendors were selected as eligible to receive Other Transaction awards to field microreactor technology as part of DIU’s Advanced Nuclear Power for Installations (ANPI) program. To secure U.S. energy dominance, the ANPI project seeks to build fixed, on-site microreactor nuclear power systems on select military installations and support multi-domain operations ensuring resilience from constrained grid energy systems, natural disasters, or physical and cyber attacks to infrastructure.\r\n\r\nLearn more ( https://www.diu.mil/latest/DOD-selects-eligible-companies-for-the-Advanced-Nuclear-Power-for-Installations-Program?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n( https://www.linkedin.com/feed/update/urn:li:activity:7323700231743713283?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*$300,000 Awarded in First US-Japan Prize Challenge* ( https://www.linkedin.com/feed/update/urn:li:activity:7323700231743713283?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nTwo California-based companies, PHC Global and Peak Metrics, were awarded the Japan-U.S. Global Innovation Challenge splitting $300,000 in prize money. PHC Global was selected as the “AI-biodefense” solution, and Peak Metrics was selected as the “Judging Information Accuracy & Counter Disinformation” solution.\r\n\r\nLearn more ( https://www.linkedin.com/feed/update/urn:li:activity:7323700231743713283?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*D* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00591?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) *IU Data Digest*\r\n\r\nDIU works with companies across the country and around the world to lower barriers to entry to the DoD and broader defense marketplace. In FY 2024, 87% of contract awards went to non-traditional vendors.\r\n\r\nIf you were not the original recipient of this email and would like to sign up for the DIU Newsletter, please register here ( https://www.diu.mil/newsletter-sign-up?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ).\r\n\r\n*About the Defense Innovation Unit* ( http://diu.mil?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\nThe Defense Innovation Unit (DIU) strengthens national security by accelerating the adoption of commercial technology in the Department of Defense and bolstering our allied and national security innovation bases. DIU partners with organizations across the DoD to rapidly prototype and field dual-use capabilities that solve operational challenges at speed and scale. With offices in Silicon Valley, Boston, Austin, Chicago and Washington, D.C., DIU is the Department’s gateway to leading technology companies across the country.\r\n\r\n( https://www.facebook.com/defenseinnovationunitx/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) ( https://x.com/diu_x?lang=en&mx=2&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) ( https://www.linkedin.com/company/diux/posts/?feedview=all&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\nDefense Innovation Unit\r\n\r\n230 RT Jones Rd , Mountain View ,  \r\n\r\nUnsubscribe ( https://u18220755.ct.sendgrid.net/asm/unsubscribe/?user_id=18220755&data=Kgc5N60ljS8xLcKNAVMa7xqYAj13OUN55ioBzRclGsNoMDAwdTAwME7ZTU44a9E87RrxI0pT9oOAM5byWne3Xa123l0EBVMWa1fx59S2-VtsKRVNSSIb_Y393Fi3hlQJDWsfbqBCNflbEFaiF1WAwAyS2pV0PBHO417HmXHa_rQoYldqI2C7QCEzKNZj-Tmo8ryXc1AbNBreCWyag3ki3pxezWW7MOfPMLdUAPMF7uXF9qeCARdj7OCi1oVJO1o5cNnz3LFD09LmEPq7-XqyTlsX8AgQpke9wlxbp0n2nsmlHEkO5XsHkHRGn-PKfqiyHJkMMUNZygZFZETpLp0lxExtpcTFX9chV_54mZy0pJ4K6DmF-PC3hTbWkZ4ZeEhOSIt37-zMNKyFLz9Tu1ujgwVVpUGUemBBe4NWijA6wT-kiONCmFbC5twFVeA7JZxkPsuznJ637gCcZBWdqIB-Z6l9bnjIFH3WWichU3vN6tMnZq0Eu5jSMNgsd2f2pXiVNWY77TXcdKG2K7uJtz_5wdB06or0DhpO8Vot2LEBFj0xVgJP3hyyMQ-YlZGXSwOIsd0A7R3Ah-CQv5zPFiA7kcVJNNJhEtF-BU9kPSXbspWokQv2LwU7FvGCUFJyNPfYgEoML3FMVJQC8FIwcXufKAV8JkSvGPTSFAjmMb1BlhiuBXieoPMPSNfamhd5pvSu_k5UtgwAaCQaJQlZ-KQdQayfLce21DssjvzaT2RFs0tKhhHw24jQ0PPEZ7yrvgs5zotFV8kIWN7zp3n7bnsI2Uk7uRQ5xmDV4SguZGpUVEiuEZ_lKrrPhu6XXOQqtol4u9bv_HL9e7-ncnKbuEtkv8i8B87mSV_AxGwXUiGZpCbZg__MEAns9yQk2kFZkzovp0m5_M2pmletg2To6wt2GYuvaDqWaOTvx9DT2JnOd5Q-jkHABM_4G2ckHKArn3JuOSKg6ahcqeTNxJ6KnQ4VVuzAMZPY1q7fE47MrF4kq2c_50B2eVxXPoWx0aIW-WU1Nu5Yh9dNsni9s0k_K-p2XZroEfWCNy8C4vyTBu5-CMI3n9Aveo4GEr6MeVbBsdn6HeV1ogDD_Lr2oDUb5BLSyKizV2hSz5cJtR51hOPyWn6w6lQ5-D8TTOD__cPuPNrrw4gqIFZZsPc= ) - Unsubscribe Preferences ( https://u18220755.ct.sendgrid.net/asm/?user_id=18220755&data=medrnph6ryGJNkVUicS2TgnP_S4aYORjJGiAqqOMLMNoMDAwdTAwMMQe1dZc4yt-XPGctnFo76_nz9q8e33DOiEHFJy9ivBsESgVunV157cIB_qHGLoGpjTdWFSp0j-PnXwznfqg860zJK8bOC71cQTQNFmks9Qinaj6XPK5wTwzZkCi1y5K29HTyC0xtkNyKH7MeN9GcGkuqTUsXgd84HZCZwbLqUOqBYJV2QvZAAhOgNXIGFrF1lB1Rzg3Mjj_jyyNZ_PEf_ZmKYr25zM5kwKHH9KVXvNriPnjGpBWD_FBr5vHVNknvGRrucfEiGM2VleFzgNUeP7ade03l2Gkn_TzOCoLP8n6bh2IdrVo2BhJiqM8_FrYM1wwS7FA37yNYbTIPGFOVd8mqaXr1xoQVHfD9vqaBzErTwkUItZkCEdCeIHeCh-vn4HFUjoSshRVunSmTa73ECyPEI3ZcIgeFhR-f7KT1ATcqLSwZoMD36MEUYmyZhXqqc-Lrv7Aa69_WUpwDkxvOVqKxhVC9DXoKOJy9BkHJAoFUH21w_8MQ2K0Y3_dKxR8ONOUEfY4zxzBTvNxkIikEXdnn2bmuHM8dRpD4mqaTgI-6pEJXXgCJpkr4jYb5CiN9lPUOBJP3aLnMZo1XF3gQMQa6JzJCjDRD5VEcbQjGy7vqpRF0I02cMQcqO2EZY19y10cRI-Tsef8azTkxxiqE6kYwWj39WIYPGMYt9e-mFhynx15RNxkkLl1Xy-tQYNwsSJVNupI_mGpjlSQpJ06bxdIGWKAhNsnVQ1xRfmcxtrxY5EiVHDbmNdInCQ3W1GfSoFLVS7CYOK8BDj25DxpNLYDgKJwGUESV5Kd2rba1SiRGuZoK-Ksjv--VoTRdebuEPW7IZwDEW2cSdWVmhk_L5JTBkMk8OPFvTSsnHeA1s12IyI2DgltcYzdmP0xe74YFUy8POsAv93fb4nM7lt2kiFJKLmtNQhT4aflOjjYWD_ddv3BGw5UZUjBO_th7AOlXn47I6xLfoKAsEDpldvR87X7YivaAsP8hPh5tzzz60X_WKamNtRo6EBG_5ukyIR5W5xkATdIOyUOZh6AESqLB4labX82rY0NuQJPRMlCjt7RqUfG2LoIK_H8zJ-kHGmg6g== )',0,0,0,0,0,0,'2025-05-19 21:00:56','2025-12-09 19:02:25','2025-12-09 19:02:25','2025-12-09 19:02:25',NULL,NULL,NULL),
(253,4,'<CB5C116A-3D76-45CF-B4BA-74F0954F336F@bavovna.ai>',NULL,NULL,'Re: MNDA','alm@bavovna.ai','Arthur McCallum','<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\"></head><body style=\"word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\" class=\"\">Hi Rick, received.&nbsp;<div class=\"\"><br class=\"\"></div><div class=\"\">Alla will put it through our Pandadocs system for signature. You should see shortly or in the morning.&nbsp;<div class=\"\"><br class=\"\"></div><div class=\"\">The doc will come from <a href=\"mailto:contracts@bavovna.ai\" class=\"\">contracts@bavovna.ai</a>.&nbsp;<br class=\"\"><div><br class=\"\"><blockquote type=\"cite\" class=\"\"><div class=\"\">On May 19, 2025, at 5:29 PM, Rick &lt;<a href=\"mailto:rick@mavrix.one\" class=\"\">rick@mavrix.one</a>&gt; wrote:</div><br class=\"Apple-interchange-newline\"><div class=\"\"><span id=\"cid:4F0C26F2-7577-4C68-9845-754FDEC602B9\">&lt;Bavovna MNDA_Mavrix_05192025_rpm_signed.docx&gt;</span></div></blockquote></div><br class=\"\"></div></div></body></html>','Hi Rick, received. \r\n\r\nAlla will put it through our Pandadocs system for signature. You should see shortly or in the morning. \r\n\r\nThe doc will come from contracts@bavovna.ai <mailto:contracts@bavovna.ai>. \r\n\r\n> On May 19, 2025, at 5:29 PM, Rick <rick@mavrix.one> wrote:\r\n> \r\n> <Bavovna MNDA_Mavrix_05192025_rpm_signed.docx>',0,0,0,0,0,0,'2025-05-19 21:44:12','2025-12-09 19:02:26','2025-12-09 19:02:26','2025-12-09 19:02:26',NULL,NULL,NULL),
(254,4,'<20250520103720.ff530a99b97aa1e1@email.pandadoc.net>',NULL,NULL,'Contracts Bavovna sent you Bavovna MNDA_Mavrix_05192025 via PandaDoc','docs@email.pandadoc.net','Contracts Bavovna via PandaDoc','<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\r\n<html>\r\n<head>\r\n	<title>Contracts Bavovna sent you Bavovna MNDA_Mavrix_05192025</title>\r\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n	<meta name=\"viewport\" content=\"width=320, target-densitydpi=device-dpi\">\r\n	<meta name=\"x-apple-disable-message-reformatting\">\r\n	<style type=\"text/css\">\r\n        /* Client-specific Styles */\r\n        #outlook a { padding: 0; }	/* Force Outlook to provide a \"view in browser\" button. */\r\n        body { width: 100% !important; }\r\n        .ReadMsgBody { width: 100%; }\r\n        .ExternalClass { width: 100%; display:block !important; } /* Force Hotmail to display emails at full width */\r\n\r\n        /* Reset Styles */\r\n        /* Add 100px so mobile switch bar doesn\'t cover street address. */\r\n        body { background-color: #e5e5e5; margin: 0; padding: 0; }\r\n        img { outline: none; text-decoration: none; display: block;}\r\n        br, strong br, b br, em br, i br { line-height:100%; }\r\n        h1, h2, h3, h4, h5, h6 { line-height: 100% !important; -webkit-font-smoothing: antialiased; }\r\n        h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color: #333b40 !important; }\r\n        h1 a:active, h2 a:active,  h3 a:active, h4 a:active, h5 a:active, h6 a:active {	color: #333b40 !important; }\r\n        h1 a:visited, h2 a:visited,  h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited { color: #333b40 !important; }\r\n        table td, table tr { border-collapse: collapse; }\r\n        .yshortcuts, .yshortcuts a, .yshortcuts a:link,.yshortcuts a:visited, .yshortcuts a:hover, .yshortcuts a span { color: black; text-decoration: none !important; border-bottom: none !important; background: none !important;}\r\n\r\n        body, td { font-family:\'Helvetica Neue\',\'Helvetica\',Arial,sans-serif;font-size:15px;color: #333b40;margin:0;padding:0;line-height:22px!important;}\r\n        #background-table { background-color: #e5e5e5; }\r\n        #content-table { background-color: #ffffff; text-align: left;}\r\n        .logo { display: block; text-align: center; border:none;}\r\n        .separator {margin: 10px 0 20px 0; border: none; color: #eaeaea; background-color: #eaeaea; height: 1px;}\r\n        #content-table p {margin: 0 0 20px 0;}\r\n        .footer {color: #898a8b; font-size: 12px; line-height: 18px; text-align: center; padding-bottom:20px;}\r\n        .text-with-emoji img { display: inline; }\r\n\r\n        /* Mobile-specific Styles */\r\n        @media only screen and (max-width: 480px) {\r\n            .w_full {width: 360px !important;}\r\n            .w_padding {width: 20px !important;}\r\n            .w_full_with_padding {width: 320px !important;}\r\n            .w_message {width: 250px !important;}\r\n            .media_padding {padding: 10px 0 !important;}\r\n        }\r\n	</style>\r\n</head>\r\n<body>\r\n    \r\n    \r\n    <div style=\"display: none; max-height: 0px; overflow: hidden;\">\r\n        Contracts Bavovna sent you Bavovna MNDA_Mavrix_05192025.\r\n\r\nThe MNDA is ready for signature.\r\nThank you.\r\n\r\nKind regards,\r\nAlla Kukhtenko\r\n\r\nOpen the document via https://app.pandadoc.com/document/v2?token=04296ebd01e337576a834e7407f1d033af4e6ca7?\r\n\r\nForward https://app.pandadoc.com/document/v2?token=04296ebd01e337576a834e7407f1d033af4e6ca7?tool=forward\r\n\r\n\r\n\r\nPandaDoc is an application to send, track, annotate, and sign documents online in a fast, secure, and professional way.\r\n    </div>\r\n    <div style=\"display: none; max-height: 0px; overflow: hidden;\">\r\n        &nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;\r\n    </div>\r\n\r\n	<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" id=\"background-table\">\r\n		<tbody>\r\n			<tr><td align=\"center\" bgcolor=\"#e5e5e5\">\r\n				<table class=\"w_full\" width=\"480\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n					<tbody>\r\n						<tr><td class=\"w_full\" width=\"480\" height=\"30\"></td></tr>\r\n						<tr><td class=\"w_full\" width=\"480\" height=\"30\" align=\"center\">\r\n								\r\n									<img style=\"display: block; height: 50px; text-align: center; border:none;\"\r\n										 src=\"https://s3-us-west-2.amazonaws.com/pd-emails/images/pd-logo-new.png\"\r\n										 alt=\"\"\r\n										 title=\"\"\r\n										 height=\"50\"\r\n										 border=\"0\"\r\n										 class=\"logo\"\r\n									/>\r\n                                \r\n							</td></tr>\r\n						<tr><td class=\"w_full\" width=\"480\" height=\"30\"></td></tr>\r\n						<tr><td class=\"w_full\" width=\"480\" id=\"content-table\" bgcolor=\"#ffffff\" align=\"center\">\r\n							<table class=\"w_full\" width=\"480\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" id=\"email-base-table\">\r\n								<tbody>\r\n									<tr>\r\n										<td class=\"w_padding\" width=\"40\"></td>\r\n										<td class=\"w_full_with_padding\" width=\"400\" height=\"30\"></td>\r\n										<td class=\"w_padding\" width=\"40\"></td>\r\n									</tr>\r\n									<tr>\r\n										<td class=\"w_padding\" width=\"40\"></td>\r\n										<td class=\"w_full_with_padding\" width=\"400\">\r\n											<table class=\"w_full_with_padding\" width=\"400\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" id=\"basic-table\">\r\n    <tr><td class=\"w_full_with_padding\" width=\"400\">\r\n        <table class=\"w_full_with_padding\" width=\"400\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n            <tbody>\r\n                <tr>\r\n                    <td class=\"w_avatar\" width=\"70\" valign=\"top\">\r\n                        <img src=\"https://api.pandadoc.com/avatar/?q=contracts%40bavovna.ai&amp;s=40\" alt=\"\" width=\"50\" height=\"50\" style=\"margin:5px 0 0 0;\" />\r\n                    </td>\r\n                    <td class=\"w_message\" width=\"330\" valign=\"top\" style=\"font-family: \'Helvetica Neue\',\'Helvetica\',Arial,sans-serif;font-size: 15px;color: #333b40;margin: 0;padding: 0;border-collapse: collapse;line-height: 22px!important;\">\r\n                        <b>Contracts Bavovna</b> sent you <b>Bavovna MNDA_Mavrix_05192025</b>.\r\n                    </td>\r\n                </tr>\r\n            </tbody>\r\n        </table>\r\n    </td></tr>\r\n    <tr><td class=\"w_full_with_padding\" width=\"400\">\r\n        <hr size=\"1\" noshade style=\"margin: 10px 0 20px 0; border: none; color: #eaeaea; background-color: #eaeaea; height: 1px;\" class=\"separator\"/>\r\n    </td></tr>\r\n    \r\n        <tr><td class=\"w_full_with_padding\" width=\"400\">\r\n            <p style=\"font-family: \'Helvetica Neue\',\'Helvetica\',Arial,sans-serif;font-size: 15px;color: #333b40;margin: 0;padding: 0;border-collapse: collapse;line-height: 22px!important;\">The MNDA is ready for signature.<br>Thank you.<br><br>Kind regards,<br>Alla Kukhtenko</p>\r\n        </td></tr>\r\n        <tr><td class=\"w_full_with_padding\" width=\"400\">\r\n            <hr size=\"1\" noshade style=\"margin: 10px 0 20px 0; border: none; color: #eaeaea; background-color: #eaeaea; height: 1px;\" class=\"separator\"/>\r\n        </td></tr>\r\n    \r\n    <tr><td class=\"w_full_with_padding\" width=\"400\" align=\"center\">\r\n        <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%;text-align: center; border-collapse: separate; border-top-left-radius: 3px;border-top-right-radius: 3px;border-bottom-right-radius: 3px;border-bottom-left-radius: 3px;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\r\n            <tbody>\r\n                <tr>\r\n                    \r\n                        <td valign=\"middle\" style=\"width: 50%;border-radius: 2px;font-size: 16px;letter-spacing: 1.2px;padding: 0px; margin-right: 20px; mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%; background-color: #47B972;\">\r\n                            <a title=\"Open the document\" href=\"https://email.email.pandadoc.net/c/eJxMkEFvEzEUhH-NfUvktb1-uwcfEsIqSlEFCqL0VL213yZuEnvxOtuSX49AFHocjb7RzHjbG9UPDffJXS8Uy1PwNtfkt9tNsx4297drKYdLedhHTrYCDaBAa8GPtjVGNIZAkERA1bS1qVzjpGhEL30NPFgpZC1qKSqhQIrlMNRKYNv2LSBWVDEt6ILhvBwxevTJLSMVHqanktER9meyJV-Jn-2xlHFiasVkx2SH4_gfcenCZPdWn8lulkx1JZ0oMrURWraGei8qUgpqMNgoTaAFDJUXSuGgyTgEpjoeUwlDcFhCir9v8LppKwCz6J0yCw0GF63TwwIUaWilMtoQT_mAMdz-QXerzfq2-9o5WvXp0-3LsJ4_bO95tjm4E9PignMOr8sUiWeaw_QXg9cfd3qf88_dc9QPuYfavbjIi30btpgolnf6vVUwH6jw2Ur-kvJpGtHRn9CdeuyeXfr2HR6Pp89789Gs9rtfAQAA__-VXqAv\"\r\n                                rel=\"noopener\" target=\"_blank\" style=\"font-size: 13px;line-height: 100%;text-align: center;text-decoration: none;color: #FFFFFF;word-wrap: break-word;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;text-transform: uppercase;display: inline-block;padding: 11px 25px;\">\r\n                                  Open the document\r\n                            </a>\r\n                        </td>\r\n                        <td style=\"width: 3%;\"></td>\r\n                        <td valign=\"middle\" style=\"width: 47%;min-width: 125px;border: 1px solid #c3c3c3;border-radius: 2px;font-size: 16px;height: 28px;line-height: 28px;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%; background-color: #ffffff;\">\r\n                            <a title=\"Forward\"\r\n                                href=\"https://email.email.pandadoc.net/c/eJxM0M9uGjEQBvCnWd9A_rce9uADlK4QqaJWVE1zimbtMTiATY1ZUp6-atQ0OY5Gv9F8n7eDUUOYMZ_d5UipPkVvS0t-tVrOFmF5f7vUuj3Wh01iZAVoAAVac7azwnnSCMIF6VofxGC88EZxScZpQ5pFK7lseSu54Aokn4bQKo5dN3SAKEg0mtMR42F6wuTRZzdNVFk8P9WCjnA4kK3lQuxgd7Wezo2aN7JvZI-n0ztx-djI_u39RvajbFRf855So5Zcy87Q4LkgpaAFgzOlCTSHIDxXCoMm4xBeST40ahlyuWLxLOUaQ3RYY05_S_F61gkAMxmcMhMNBied02ECijR0UhltiOWyxRRv_9HdfLm4rb_3juZD_nL7Fhbjp9U9K7ZEt280P-JY4ss0J2KFxnj-x-Dl153elPJ7_Zz0QxmgdVeXWLVvMSdnSvXD_HFVsWypstFKds1lfz6ho9eja_XYP7v84yc87vZfN-azmW_WfwIAAP__Es-muA\"\r\n                                target=\"_blank\" style=\"display: inline-block;width: 100%;padding: 11px 0;font-size: 13px;line-height: 28px;letter-spacing: 1.2px;text-align: center;text-decoration: none;background-color: #FFFFFF;color: #8d8d8d;word-wrap: break-word;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;text-transform: uppercase;\">\r\n                                <img style=\"display: inline-block;max-width: 28px;height: 28px;text-align: center;border:none;vertical-align: middle;line-height: 28px\"\r\n                                    src=\"https://pd-emails.s3-us-west-2.amazonaws.com/images/icons/forward@3x.png\"\r\n                                    alt=\"Arrow\" title=\"Arrow\" width=\"28\" height=\"28\" border=\"0\"/>\r\n                                <div style=\"display: inline-block; max-width: 140px; vertical-align: middle;\">\r\n                                    <span style=\"line-height: 100%\">Forward</span>\r\n                                </div>\r\n                            </a>\r\n                        </td>\r\n                    \r\n                </tr>\r\n            </tbody>\r\n        </table>\r\n    </td></tr>\r\n    \r\n</table>\r\n										</td>\r\n										<td class=\"w_padding\" width=\"40\"></td>\r\n									</tr>\r\n									<tr>\r\n										<td class=\"w_padding\" width=\"40\"></td>\r\n										<td class=\"w_full_with_padding\" width=\"400\" height=\"30\"></td>\r\n										<td class=\"w_padding\" width=\"40\"></td>\r\n									</tr>\r\n								</tbody>\r\n							</table>\r\n						</td></tr>\r\n						<tr>\r\n							<td class=\"w_full\" width=\"480\" height=\"20\">\r\n								\r\n									<table class=\"w_full\" width=\"480\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n										<tbody>\r\n										<tr>\r\n											<td class=\"w_padding\" width=\"40\"></td>\r\n											<td class=\"w_full_with_padding\" width=\"400\">\r\n												<p class=\"footer\" align=\"center\" style=\"color: #898a8b; font-size: 13px; line-height: 16px; height: 16px; text-align: center; font-family: \'Helvetica Neue\',\'Helvetica\',Arial,sans-serif; padding-bottom: 0; margin-bottom: 0;\">\r\n													<a title=\"Report spam\" class=\"unsubscribe\" href=\"https://email.email.pandadoc.net/c/eJxMkEFvEzEUhH-NfUvktb1-u4c9pIRVlKIKFETpKXprPydusvbiddKSX49AFHocjb7RzLhuMGrwDXfJXkaKZR9cl2tym826ufPrh9ullMNYHneRU1eBBlCgteDHTihsalOZtqVBkXdCgW5cAxbrynkgHjopZC1qKSqhQIql97US2LZDC4gVVUwLGjGclxNGhy7ZZaTCw7wvGS3hcKau5Avxc3csZZqZWjHZM9njNP1HbBqZ7N_qM9lfJVN9SSeKTK2Flq2hwYmKlIIaDDZKE2gBvnJCKfSajEVgUjHVZ5pSLvt5wpHHVIIPFktI8fcpTjdtBWAWg1VmocHgorXaL0CRhlYqow3xlA8Yw-0fdL9a3922X3tLqyF9un3xd9cPmweeuxzsiWkx4jWH12WKxDNdw_wXg9cf93qX88_tc9SPeYDavtjIS_c2czFTLO_0e6tgPlDh107yl5RP84SW_oRu1VP_bNO37_B0PH3emY9mtdv-CgAA__8mZqYs\" target=\"_blank\" style=\"text-decoration: none;color: #898a8b;display: inline-block; line-height: 15px; height: 15px\">\r\n														<img src=\"https://pd-static-content.s3.amazonaws.com/images/report.png\" style=\"display: inline-block; height: 100%; vertical-align: top;\" alt=\"Report spam\"/>\r\n														<span style=\"vertical-align: middle; font-family: HelveticaNeue;\">Report spam</span>\r\n													</a>\r\n												</p>\r\n											</td>\r\n											<td class=\"w_padding\" width=\"40\"></td>\r\n										</tr>\r\n										</tbody>\r\n									</table>\r\n								\r\n							</td>\r\n						</tr>\r\n						<tr><td class=\"w_full\" width=\"480\">\r\n							<table class=\"w_full\" width=\"480\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n								<tbody>\r\n									<tr>\r\n										<td class=\"w_padding\" width=\"51\"></td>\r\n										<td class=\"w_full_with_padding\" width=\"378\">\r\n											<p class=\"footer\" align=\"center\" style=\"color: #767676; font-size: 12px; line-height: 15px; text-align: center; padding-bottom:20px; font-family: \'Helvetica Neue\', \'Helvetica\', Arial, sans-serif;\">\r\n												\r\n													Use PandaDoc to create, send, track, and eSign documents — quickly and securely.\r\n												\r\n											</p>\r\n										</td>\r\n										<td class=\"w_padding\" width=\"51\"></td>\r\n									</tr>\r\n								</tbody>\r\n							</table>\r\n						</td></tr>\r\n					</tbody>\r\n				</table>\r\n			</td></tr>\r\n		</tbody>\r\n	</table>\r\n<img width=\"1\" height=\"1\" alt=\"\" src=\"https://email.email.pandadoc.net/o/eJxMkE2P0zAYhH_N-pbIiT_e5OBDS1lVWbQCBbHsqfLHm9ZtYxfHTUt-PQIB6nE0ekajxykjmRka4qK9jhjyzjuVBLrtdtOsh83rcs15P-a3PhBUFXAABpxTclCaW2TCcNuCoI41jAsKRhrpkAJYSbyqaS2oqGlFGdS0HAbBqG5b04LWFVZPnOKo_bm86OC0i7YMmImfdjlpi9qcUeV0RRJi9oO3OvsYfv9zvGkrAFkYy2TBQeqitXwogCGHtmaSSyQx7XXwy3_oZbVZL93XZ4srEz8tX4b1_GH7SpJK3p6eOB31nPy9jAFJwtlPfzG4_3jhfUo_u2Pgb8mAsDcbSFb_hBUThvyQH6us0x4zmVVNbjGdpou2-Ge0Y-_PRxu_fYf3w-lzLz_KVd_9CgAA___q8IIG\"></body>\r\n</html>','Contracts Bavovna sent you Bavovna MNDA_Mavrix_05192025.\r\n\r\nThe MNDA is ready for signature.\r\nThank you.\r\n\r\nKind regards,\r\nAlla Kukhtenko\r\n\r\nOpen the document via https://email.email.pandadoc.net/c/eJxMkEFvEzEUhH-NfUvktb1-uwcfEsIqSlEFCqL0VL213yZuEnvxOtuSX49AFHocjb7RzHjbG9UPDffJXS8Uy1PwNtfkt9tNsx4297drKYdLedhHTrYCDaBAa8GPtjVGNIZAkERA1bS1qVzjpGhEL30NPFgpZC1qKSqhQIrlMNRKYNv2LSBWVDEt6ILhvBwxevTJLSMVHqanktER9meyJV-Jn-2xlHFiasVkx2SH4_gfcenCZPdWn8lulkx1JZ0oMrURWraGei8qUgpqMNgoTaAFDJUXSuGgyTgEpjoeUwlDcFhCir9v8LppKwCz6J0yCw0GF63TwwIUaWilMtoQT_mAMdz-QXerzfq2-9o5WvXp0-3LsJ4_bO95tjm4E9PignMOr8sUiWeaw_QXg9cfd3qf88_dc9QPuYfavbjIi30btpgolnf6vVUwH6jw2Ur-kvJpGtHRn9CdeuyeXfr2HR6Pp89789Gs9rtfAQAA__-VXqAv\r\n\r\nForward https://email.email.pandadoc.net/c/eJxM0M9uGjEQBvCnWd9A_rce9uADlK4QqaJWVE1zimbtMTiATY1ZUp6-atQ0OY5Gv9F8n7eDUUOYMZ_d5UipPkVvS0t-tVrOFmF5f7vUuj3Wh01iZAVoAAVac7azwnnSCMIF6VofxGC88EZxScZpQ5pFK7lseSu54Aokn4bQKo5dN3SAKEg0mtMR42F6wuTRZzdNVFk8P9WCjnA4kK3lQuxgd7Wezo2aN7JvZI-n0ztx-djI_u39RvajbFRf855So5Zcy87Q4LkgpaAFgzOlCTSHIDxXCoMm4xBeST40ahlyuWLxLOUaQ3RYY05_S_F61gkAMxmcMhMNBied02ECijR0UhltiOWyxRRv_9HdfLm4rb_3juZD_nL7Fhbjp9U9K7ZEt280P-JY4ss0J2KFxnj-x-Dl153elPJ7_Zz0QxmgdVeXWLVvMSdnSvXD_HFVsWypstFKds1lfz6ho9eja_XYP7v84yc87vZfN-azmW_WfwIAAP__Es-muA\r\n\r\n\r\n\r\nPandaDoc is an application to send, track, annotate, and sign documents online in a fast, secure, and professional way.',0,0,0,0,0,0,'2025-05-20 10:37:20','2025-12-09 19:02:26','2025-12-09 19:02:26','2025-12-09 19:02:26',NULL,NULL,NULL),
(255,4,'<CAM9RAoFrCFmTb-fVpesdwMM4bCTnbyNa45EG095hLCq1y-d79w@mail.gmail.com>',NULL,NULL,'Re: MNDA','ok@bavovna.ai','\"Alla (Operations) Kukhtenko\"','<div dir=\"ltr\"><div>Good morning.</div><div><br></div><div>The MNDA is already sent for signature via Pandadocs.</div><div><br></div><div>Thank you for your cooperation!</div><div><br></div><div>Kind regards,</div><div>Alla Kukhtenko</div><div><br></div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\">Sincerely,<div><br></div><div>Alla Kukhtenko</div><div>Operation Officer<div>BavovnaAI</div><div>Email: <a href=\"mailto:ok@bavovna.ai\" target=\"_blank\">ok@bavovna.ai</a></div></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, 19 May 2025 at 22:44, Arthur McCallum &lt;<a href=\"mailto:alm@bavovna.ai\">alm@bavovna.ai</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex\"><div style=\"line-break:after-white-space\">Hi Rick, received. <div><br></div><div>Alla will put it through our Pandadocs system for signature. You should see shortly or in the morning. <div><br></div><div>The doc will come from <a href=\"mailto:contracts@bavovna.ai\" target=\"_blank\">contracts@bavovna.ai</a>. <br><div><br><blockquote type=\"cite\"><div>On May 19, 2025, at 5:29 PM, Rick &lt;<a href=\"mailto:rick@mavrix.one\" target=\"_blank\">rick@mavrix.one</a>&gt; wrote:</div><br><div><span id=\"m_-3263184204107270767cid:4F0C26F2-7577-4C68-9845-754FDEC602B9\">&lt;Bavovna MNDA_Mavrix_05192025_rpm_signed.docx&gt;</span></div></blockquote></div><br></div></div></div></blockquote></div>','Good morning.\r\n\r\nThe MNDA is already sent for signature via Pandadocs.\r\n\r\nThank you for your cooperation!\r\n\r\nKind regards,\r\nAlla Kukhtenko\r\n\r\n\r\nSincerely,\r\n\r\nAlla Kukhtenko\r\nOperation Officer\r\nBavovnaAI\r\nEmail: ok@bavovna.ai\r\n\r\n\r\nOn Mon, 19 May 2025 at 22:44, Arthur McCallum <alm@bavovna.ai> wrote:\r\n\r\n> Hi Rick, received.\r\n>\r\n> Alla will put it through our Pandadocs system for signature. You should\r\n> see shortly or in the morning.\r\n>\r\n> The doc will come from contracts@bavovna.ai.\r\n>\r\n> On May 19, 2025, at 5:29 PM, Rick <rick@mavrix.one> wrote:\r\n>\r\n> <Bavovna MNDA_Mavrix_05192025_rpm_signed.docx>\r\n>\r\n>\r\n>',0,0,0,0,0,0,'2025-05-20 10:39:26','2025-12-09 19:02:27','2025-12-09 19:02:27','2025-12-09 19:02:27',NULL,NULL,NULL),
(256,4,' <LV3PR22MB4438F3E6D6B1DF1EB3AA98BDA29FA@LV3PR22MB4438.namprd22.prod.outlook.com>',NULL,NULL,'Re: [External] Re: SOF Week Follow Up','Chris@buildmo.com','Chris Sargent','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n</head>\r\n<body>\r\n<div>\r\n<div dir=\"ltr\">Rick,</div>\r\n<div dir=\"ltr\">Sounds good, what days work&nbsp;best for you?</div>\r\n</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"ms-outlook-mobile-signature\">\r\n<div dir=\"ltr\">\r\n<div data-ogsc=\"rgb(0, 0, 0)\" style=\"font-size: 12pt; text-decoration: none; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; line-height: 1.5; color: rgb(0, 0, 0);\" dir=\"ltr\">\r\n<br>\r\n</div>\r\n<div style=\"text-decoration: none; color: rgb(0, 0, 0);\">\r\n<p style=\"margin-top:0px;margin-bottom:0px;text-decoration:none\"><span data-ogsc=\"rgb(0, 0, 0)\" style=\"font-family: Arial, sans-serif; font-size: 8pt; line-height: 11.2px; color: rgb(0, 0, 0);\"><img width=\"331\" height=\"39\" data-outlook-trace=\"F:5|T:5\" src=\"blob:outlook-mobile-compose:///f3a53078-7577-4b6b-9ef3-5b95284daeef\" alt=\"Image\" tabindex=\"0\" style=\"border:medium;max-width:800px;min-width:auto;min-height:auto;margin:0px;touch-action:auto;width:331.984375px !important;height:39.986391px !important\"></span></p>\r\n<p style=\"margin-top:0px;margin-bottom:0px;text-decoration:none\"><span data-ogsc=\"rgb(34, 34, 34)\" data-ogsb=\"white\" style=\"font-family: Arial, sans-serif; font-size: 8pt; line-height: 11.2px; color: rgb(34, 34, 34); background-color: white;\"><i>A Service-Disabled\r\n Veteran-Owned&nbsp;Small Business</i></span></p>\r\n<p style=\"margin:0px 0px 3pt;text-decoration:none;line-height:15.4px\"><span style=\"font-family: Arial, sans-serif; font-size: 8pt; line-height: 11.2px; color: rgb(237, 125, 49);\"><b>________________________________________________________</b></span></p>\r\n<p style=\"margin:0px 0px 3pt;text-decoration:none;line-height:15.4px\"><span data-ogsc=\"black\" data-ogsb=\"white\" style=\"font-family: Arial, sans-serif; font-size: 9pt; line-height: 12.6px; color: black; background-color: white;\"><a href=\"mailto:chris@buildmo.com\" title=\"chris@buildmo.com\" data-outlook-id=\"715d3b51-b34d-48af-9eac-dec126ca25e8\" data-linkindex=\"11\" style=\"text-decoration: none; margin-top: 0px; margin-bottom: 0px; color: rgb(0, 134, 240);\"><img width=\"107\" height=\"89\" data-outlook-trace=\"F:5|T:5\" src=\"blob:outlook-mobile-compose:///bd1e8652-99f3-4ed7-bc1b-29c1d2717ccc\" alt=\"Image\" tabindex=\"0\" style=\"border:medium;max-width:100%;width:107px !important;height:89px !important\"></a></span></p>\r\n<p style=\"margin:0px 0px 3pt;text-decoration:none;line-height:15.4px\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; line-height: 14px; color: rgb(253, 151, 31);\"><b>Chris Sargent&nbsp;</b></span></p>\r\n<p style=\"margin:0px 0px 3pt;text-decoration:none;line-height:15.4px\"><span data-ogsc=\"rgb(0, 0, 0)\" style=\"font-family: Arial, sans-serif; font-size: 10pt; line-height: 14px; color: rgb(0, 0, 0);\">Email:<span>&nbsp;</span><span dir=\"ltr\" style=\"color: currentcolor;\">Chris@buildmo.com</span>&nbsp;</span></p>\r\n<p style=\"margin:0px 0px 3pt;text-decoration:none;line-height:15.4px\"><span data-ogsc=\"rgb(0, 0, 0)\" style=\"font-family: Arial, sans-serif; font-size: 10pt; line-height: 14px; color: rgb(0, 0, 0);\">Mobile</span><span data-ogsc=\"black\" style=\"font-family: Arial, sans-serif; font-size: 10pt; line-height: 14px; color: black;\">:<span>&nbsp;</span><span dir=\"ltr\" style=\"color: currentcolor;\">619\r\n 721 5080</span></span></p>\r\n<p style=\"margin:0px 0px 3pt;text-decoration:none;line-height:15.4px\"><span data-ogsc=\"rgb(5, 99, 193)\" style=\"font-family: Arial, sans-serif; font-size: 10pt; line-height: 14px; color: rgb(5, 99, 193);\"><a href=\"https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764\" data-auth=\"Verified\" data-event-added=\"1\" data-linkindex=\"12\" data-outlook-id=\"8471eafc-e2f3-45c2-bf8b-b7e1e239e55a\" style=\"margin: 0px; color: rgb(0, 134, 240);\">5380\r\n Eisenhower Ave, Suite C</a></span></p>\r\n<p style=\"margin:0px 0px 3pt;text-decoration:none;line-height:15.4px\"><span data-ogsc=\"rgb(5, 99, 193)\" style=\"font-family: Arial, sans-serif; font-size: 10pt; line-height: 14px; color: rgb(5, 99, 193);\"><u><a href=\"https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764\" data-auth=\"Verified\" data-event-added=\"1\" data-linkindex=\"13\" data-outlook-id=\"039a7558-8827-4bbe-b406-62fae21ac229\" style=\"margin: 0px; color: rgb(0, 134, 240);\">Alexandria,\r\n Virginia 22304</a></u></span></p>\r\n<p></p>\r\n</div>\r\n<br>\r\n<br>\r\n</div>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Monday, May 19, 2025 3:35:14 PM<br>\r\n<b>To:</b> Chris Sargent &lt;chris@buildmo.com&gt;<br>\r\n<b>Cc:</b> Henry Sullivan &lt;henry@buildmo.com&gt;; Tom Labrecque &lt;tl@buildmo.com&gt;; Thomas Sullivan &lt;tom@buildmo.com&gt;<br>\r\n<b>Subject:</b> [External] Re: SOF Week Follow Up</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks for the follow-up, Chris.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Would a video call be useful?</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Let’s setup something for next week.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height:11px\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On May 19, 2025 at 11:35:39 AM, Chris Sargent (<a href=\"mailto:chris@buildmo.com\">chris@buildmo.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nRick,</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nI wanted to reach out and discuss with you more the American Made Drone Consortium, Mavrix. If you could give me a brief overview on your initiative, I would be very appreciative. I have visited your website, however it looks&nbsp;like it won\'t be fully up an running\r\n for another six weeks or so. Thank you.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_Signature\" class=\"x_elementToProof\">\r\n<p style=\"margin-top:0px; margin-bottom:0px\"><span style=\"font-family:Arial,sans-serif; font-size:8pt; color:rgb(0,0,0); line-height:11.2px\"><img width=\"331\" height=\"39\" data-outlook-trace=\"F:1|T:1\" src=\"cid:503489C9-8F45-4FF5-8EC0-43408011D967\" style=\"width:248.99pt; height:29.99pt; max-width:800px; min-width:auto; min-height:auto; margin:0px\"></span></p>\r\n<p style=\"margin-top:0px; margin-bottom:0px\"><span style=\"font-family:Arial,sans-serif; font-size:8pt; color:rgb(34,34,34); background-color:white; line-height:11.2px\"><i>A Service-Disabled Veteran-Owned&nbsp;Small Business</i></span></p>\r\n<p style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:8pt; color:rgb(237,125,49); line-height:11.2px\"><b>________________________________________________________</b></span></p>\r\n<p style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black; background-color:white; line-height:12.6px\"><a href=\"mailto:chris@buildmo.com\" title=\"chris@buildmo.com\" style=\"text-decoration:none; margin-top:0px; margin-bottom:0px\"><img id=\"x_imageSelected1\" width=\"107\" height=\"89\" data-outlook-trace=\"F:1|T:1\" src=\"cid:02A26CF0-BE3B-41BB-8A38-E3C8278E21D4\" style=\"width:107px; height:89px; margin-top:0px; margin-bottom:0px\"></a></span></p>\r\n<p style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:rgb(253,151,31); line-height:14px\"><b>Chris Sargent&nbsp;</b></span></p>\r\n<p style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:rgb(0,0,0); line-height:14px\">Email: Chris@buildmo.com&nbsp;</span></p>\r\n<p style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:rgb(0,0,0); line-height:14px\">Mobile</span><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black; line-height:14px\">: 619 721\r\n 5080</span></p>\r\n<p style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:rgb(5,99,193); line-height:14px\"><a href=\"https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764\" target=\"_blank\" rel=\"noopener noreferrer\" data-auth=\"NotApplicable\" data-linkindex=\"1\" data-event-added=\"1\" style=\"margin:0px\">5380\r\n Eisenhower Ave, Suite C</a></span></p>\r\n<p style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:rgb(5,99,193); line-height:14px\"><u><a href=\"https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764\" target=\"_blank\" rel=\"noopener noreferrer\" data-auth=\"NotApplicable\" data-linkindex=\"2\" data-event-added=\"1\" style=\"margin:0px\">Alexandria,\r\n Virginia 22304</a></u></span></p>\r\n<p style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:rgb(243,144,29); line-height:14px\">​</span></p>\r\n<p style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:&quot;Segoe UI Web (West European)&quot;,&quot;Segoe UI&quot;,-apple-system,BlinkMacSystemFont,Roboto,&quot;Helvetica Neue&quot;,sans-serif; font-size:10pt; color:rgb(243,144,29); background-color:rgb(255,255,255); line-height:14px\">Innovation\r\n Bootcamp by the seat: <a href=\"https://www.gsaadvantage.gov/advantage/ws/catalog/product_detail?gsin=11000095666640\" style=\"margin:0px; background-color:rgb(255,255,255); text-align:left\">\r\nProduct Detail (gsaadvantage.gov)</a></span></p>\r\n<p style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:rgb(243,144,29); line-height:14px\">NDAA Compliant COTS sUAS by the seat:\r\n<a href=\"https://www.gsaadvantage.gov/advantage/ws/catalog/product_detail?gsin=11000095666641\" style=\"margin-top:0px; margin-bottom:0px\">\r\nProduct Detail (gsaadvantage.gov)</a></span></p>\r\n<p style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"color:rgb(0,0,0)\"><br>\r\n</span></p>\r\n<div style=\"margin:0px; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<span style=\"line-height:12.6px\"><br>\r\n</span><br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Rick,\r\nSounds good, what days work best for you?\r\n\r\n\r\n\r\n[Image]\r\n\r\nA Service-Disabled Veteran-Owned Small Business\r\n\r\n________________________________________________________\r\n\r\n[Image]<mailto:chris@buildmo.com>\r\n\r\nChris Sargent\r\n\r\nEmail: Chris@buildmo.com\r\n\r\nMobile: 619 721 5080\r\n\r\n5380 Eisenhower Ave, Suite C<https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764>\r\n\r\nAlexandria, Virginia 22304<https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764>\r\n\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Monday, May 19, 2025 3:35:14 PM\r\nTo: Chris Sargent <chris@buildmo.com>\r\nCc: Henry Sullivan <henry@buildmo.com>; Tom Labrecque <tl@buildmo.com>; Thomas Sullivan <tom@buildmo.com>\r\nSubject: [External] Re: SOF Week Follow Up\r\n\r\nThanks for the follow-up, Chris.\r\nWould a video call be useful?\r\nLet’s setup something for next week.\r\nThanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 19, 2025 at 11:35:39 AM, Chris Sargent (chris@buildmo.com<mailto:chris@buildmo.com>) wrote:\r\n\r\nRick,\r\n\r\nI wanted to reach out and discuss with you more the American Made Drone Consortium, Mavrix. If you could give me a brief overview on your initiative, I would be very appreciative. I have visited your website, however it looks like it won\'t be fully up an running for another six weeks or so. Thank you.\r\n\r\n\r\n[cid:503489C9-8F45-4FF5-8EC0-43408011D967]\r\n\r\nA Service-Disabled Veteran-Owned Small Business\r\n\r\n________________________________________________________\r\n\r\n[cid:02A26CF0-BE3B-41BB-8A38-E3C8278E21D4]<mailto:chris@buildmo.com>\r\n\r\nChris Sargent\r\n\r\nEmail: Chris@buildmo.com\r\n\r\nMobile: 619 721 5080\r\n\r\n5380 Eisenhower Ave, Suite C<https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764>\r\n\r\nAlexandria, Virginia 22304<https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764>\r\n\r\n​\r\n\r\nInnovation Bootcamp by the seat: Product Detail (gsaadvantage.gov)<https://www.gsaadvantage.gov/advantage/ws/catalog/product_detail?gsin=11000095666640>\r\n\r\nNDAA Compliant COTS sUAS by the seat: Product Detail (gsaadvantage.gov)<https://www.gsaadvantage.gov/advantage/ws/catalog/product_detail?gsin=11000095666641>\r\n\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-05-20 11:31:26','2025-12-09 19:02:27','2025-12-09 19:02:27','2025-12-09 19:02:27',NULL,NULL,NULL),
(257,4,' <DM6PR07MB5850B54DB50BCAC3E653D99FAD9FA@DM6PR07MB5850.namprd07.prod.outlook.com>',NULL,NULL,'Re: Next steps?','rich@achramlabs.com','Richard Van Voorst','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;\r\n	panose-1:2 11 0 4 2 2 2 2 2 4;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:10.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\nspan.EmailStyle18\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Hey Rick,<br>\r\n<br>\r\nSo sorry, but for some reason I found this email in my spam folder looking for something else! I felt the exact same way. Would love to connect with you at the beginning of next week. What does your schedule look like late Monday or Tuesday?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">V/R,<br>\r\n<br>\r\nRich<br>\r\n<br>\r\n--&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">Achram Labs | CEO<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">e. <a href=\"mailto:rich@achramlabs.com\">\r\n<span style=\"color:#467886\">rich@achramlabs.com</span></a><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">c. 813.334.5104</span><span style=\"font-size:11.0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div id=\"mail-editor-reference-message-container\">\r\n<div>\r\n<div>\r\n<div style=\"border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\"><b><span style=\"font-size:12.0pt;color:black\">From:\r\n</span></b><span style=\"font-size:12.0pt;color:black\">Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Date: </b>Thursday, May 8, 2025 at 1:36</span><span style=\"font-size:12.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"font-size:12.0pt;color:black\">PM<br>\r\n<b>To: </b>Richard Van Voorst &lt;rich@achramlabs.com&gt;<br>\r\n<b>Subject: </b>Next steps?<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">Hi Rich,<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">It was my pleasure meeting you&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">at Bad&nbsp;Monkey&nbsp;Monday night.&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">As a creative, I wish we had&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">more time&nbsp;to chat.&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">That said, I’d love to<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">schedule a time to&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">reconnect next week.&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">Please let me know<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">what’s possible!<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">Thanks much,<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">Rick<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">Rick Mislan, PhD<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\"><a href=\"https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one\">https://mavrix.one</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\"><img border=\"0\" id=\"_x0000_i1025\" src=\"file:////Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Hey Rick,\r\n\r\nSo sorry, but for some reason I found this email in my spam folder looking for something else! I felt the exact same way. Would love to connect with you at the beginning of next week. What does your schedule look like late Monday or Tuesday?\r\n\r\nV/R,\r\n\r\nRich\r\n\r\n--\r\nAchram Labs | CEO\r\ne. rich@achramlabs.com<mailto:rich@achramlabs.com>\r\nc. 813.334.5104\r\n\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nDate: Thursday, May 8, 2025 at 1:36 PM\r\nTo: Richard Van Voorst <rich@achramlabs.com>\r\nSubject: Next steps?\r\nHi Rich,\r\nIt was my pleasure meeting you\r\nat Bad Monkey Monday night.\r\nAs a creative, I wish we had\r\nmore time to chat.\r\nThat said, I’d love to\r\nschedule a time to\r\nreconnect next week.\r\nPlease let me know\r\nwhat’s possible!\r\nThanks much,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one>\r\n[X]\r\n',0,0,0,0,0,0,'2025-05-20 17:15:42','2025-12-09 19:02:28','2025-12-09 19:02:28','2025-12-09 19:02:28',NULL,NULL,NULL),
(258,4,' <LV3PR22MB443890317149444F06AFA1DBA29FA@LV3PR22MB4438.namprd22.prod.outlook.com>',NULL,NULL,'Re: [External] Re: [External] Re: SOF Week Follow Up','Chris@buildmo.com','Chris Sargent','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n</head>\r\n<body>\r\n<div dir=\"ltr\">Rick,</div>\r\n<div dir=\"ltr\"><br>\r\n</div>\r\n<div dir=\"ltr\">Can we setup a video call for 10am Tuesday of next week? Teams would be preferred if possible. We applied it!</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\" dir=\"ltr\"><br>\r\n</div>\r\n<div id=\"ms-outlook-mobile-signature\">\r\n<div dir=\"ltr\" style=\"line-height: 1.5; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<p dir=\"ltr\" style=\"margin-top: 0px; margin-bottom: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 8pt; color: rgb(0, 0, 0); line-height: 11.2px;\"><img src=\"blob:outlook-mobile-compose:///f3a53078-7577-4b6b-9ef3-5b95284daeef\" alt=\"Image\" tabindex=\"0\" data-outlook-trace=\"F:5|T:5\" width=\"331\" height=\"39\" style=\"width: 331.984375px; height: 39.986391px; max-width: 800px; min-width: auto; min-height: auto; margin: 0px; border-width: medium; border-style: none; border-color: currentcolor;\"></span></p>\r\n<p dir=\"ltr\" style=\"margin-top: 0px; margin-bottom: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 8pt; color: rgb(34, 34, 34); background-color: white; line-height: 11.2px;\"><i>A Service-Disabled Veteran-Owned&nbsp;Small Business</i></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 8pt; color: rgb(237, 125, 49); line-height: 11.2px;\"><b>________________________________________________________</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: rgb(0, 134, 240); background-color: white; line-height: 12.6px;\"><a href=\"mailto:chris@buildmo.com\" title=\"chris@buildmo.com\" data-outlook-id=\"715d3b51-b34d-48af-9eac-dec126ca25e8\" data-linkindex=\"11\" style=\"color: rgb(0, 134, 240); text-decoration: none; margin-top: 0px; margin-bottom: 0px;\"><img src=\"blob:outlook-mobile-compose:///bd1e8652-99f3-4ed7-bc1b-29c1d2717ccc\" alt=\"Image\" tabindex=\"0\" data-outlook-trace=\"F:5|T:5\" width=\"107\" height=\"89\" style=\"width: 107px; height: 89px; max-width: 100%; margin-top: 0px; margin-bottom: 0px; border-width: medium; border-style: none; border-color: currentcolor;\"></a></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(253, 151, 31); line-height: 14px;\"><b>Chris Sargent&nbsp;</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(0, 0, 0); line-height: 14px;\">Email:\r\n</span><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: currentcolor; line-height: 14px;\">Chris@buildmo.com</span><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(0, 0, 0); line-height: 14px;\">&nbsp;</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(0, 0, 0); line-height: 14px;\">Mobile</span><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black; line-height: 14px;\">:\r\n</span><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: currentcolor; line-height: 14px;\">619 721 5080</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(0, 134, 240); line-height: 14px;\"><a href=\"https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764\" data-auth=\"Verified\" data-event-added=\"1\" data-linkindex=\"12\" data-outlook-id=\"8471eafc-e2f3-45c2-bf8b-b7e1e239e55a\" style=\"color: rgb(0, 134, 240); margin: 0px;\">5380\r\n Eisenhower Ave, Suite C</a></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(0, 134, 240); line-height: 14px;\"><u><a href=\"https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764\" data-auth=\"Verified\" data-event-added=\"1\" data-linkindex=\"13\" data-outlook-id=\"039a7558-8827-4bbe-b406-62fae21ac229\" style=\"color: rgb(0, 134, 240); margin: 0px;\">Alexandria,\r\n Virginia 22304</a></u></span></p>\r\n<div dir=\"ltr\"><br>\r\n<br>\r\n</div>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, May 20, 2025 9:39:35 AM<br>\r\n<b>To:</b> Chris Sargent &lt;chris@buildmo.com&gt;<br>\r\n<b>Subject:</b> [External] Re: [External] Re: SOF Week Follow Up</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nTuesday and Wednesday are pretty open…</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nLet me know if that works?</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks,</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div id=\"x_bloop_sign_1747748355556706816\" class=\"x_bloop_sign\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height:11px\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On May 20, 2025 at 7:32:11 AM, Chris Sargent (<a href=\"mailto:chris@buildmo.com\">chris@buildmo.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div>\r\n<div dir=\"ltr\">Rick,</div>\r\n<div dir=\"ltr\">Sounds good, what days work&nbsp;best for you?</div>\r\n</div>\r\n<div id=\"x_ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"x_ms-outlook-mobile-signature\">\r\n<div dir=\"ltr\">\r\n<div data-ogsc=\"rgb(0, 0, 0)\" dir=\"ltr\" style=\"font-size:12pt; text-decoration:none; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; line-height:1.5; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"text-decoration:none; color:rgb(0,0,0)\">\r\n<p style=\"margin-top:0px; margin-bottom:0px; text-decoration:none\"><span data-ogsc=\"rgb(0, 0, 0)\" style=\"font-family:Arial,sans-serif; font-size:8pt; line-height:11.2px; color:rgb(0,0,0)\"><img width=\"331\" height=\"39\" data-outlook-trace=\"F:5|T:5\" src=\"\" alt=\"Image\" tabindex=\"0\" style=\"border:medium; max-width:800px; min-width:auto; min-height:auto; margin:0px; width:331.984375px!important; height:39.986391px!important\"></span></p>\r\n<p style=\"margin-top:0px; margin-bottom:0px; text-decoration:none\"><span data-ogsc=\"rgb(34, 34, 34)\" data-ogsb=\"white\" style=\"font-family:Arial,sans-serif; font-size:8pt; line-height:11.2px; color:rgb(34,34,34); background-color:white\"><i>A Service-Disabled\r\n Veteran-Owned&nbsp;Small Business</i></span></p>\r\n<p style=\"margin:0px 0px 3pt; text-decoration:none; line-height:15.4px\"><span style=\"font-family:Arial,sans-serif; font-size:8pt; line-height:11.2px; color:rgb(237,125,49)\"><b>________________________________________________________</b></span></p>\r\n<p style=\"margin:0px 0px 3pt; text-decoration:none; line-height:15.4px\"><span data-ogsc=\"black\" data-ogsb=\"white\" style=\"font-family:Arial,sans-serif; font-size:9pt; line-height:12.6px; color:black; background-color:white\"><a href=\"mailto:chris@buildmo.com\" title=\"chris@buildmo.com\" data-outlook-id=\"715d3b51-b34d-48af-9eac-dec126ca25e8\" data-linkindex=\"11\" style=\"text-decoration:none; margin-top:0px; margin-bottom:0px; color:rgb(0,134,240)\"><img width=\"107\" height=\"89\" data-outlook-trace=\"F:5|T:5\" src=\"\" alt=\"Image\" tabindex=\"0\" style=\"border:medium; max-width:100%; width:107px!important; height:89px!important\"></a></span></p>\r\n<p style=\"margin:0px 0px 3pt; text-decoration:none; line-height:15.4px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; line-height:14px; color:rgb(253,151,31)\"><b>Chris Sargent&nbsp;</b></span></p>\r\n<p style=\"margin:0px 0px 3pt; text-decoration:none; line-height:15.4px\"><span data-ogsc=\"rgb(0, 0, 0)\" style=\"font-family:Arial,sans-serif; font-size:10pt; line-height:14px; color:rgb(0,0,0)\">Email:<span>&nbsp;</span><span dir=\"ltr\" style=\"color:currentcolor\">Chris@buildmo.com</span>&nbsp;</span></p>\r\n<p style=\"margin:0px 0px 3pt; text-decoration:none; line-height:15.4px\"><span data-ogsc=\"rgb(0, 0, 0)\" style=\"font-family:Arial,sans-serif; font-size:10pt; line-height:14px; color:rgb(0,0,0)\">Mobile</span><span data-ogsc=\"black\" style=\"font-family:Arial,sans-serif; font-size:10pt; line-height:14px; color:black\">:<span>&nbsp;</span><span dir=\"ltr\" style=\"color:currentcolor\">619\r\n 721 5080</span></span></p>\r\n<p style=\"margin:0px 0px 3pt; text-decoration:none; line-height:15.4px\"><span data-ogsc=\"rgb(5, 99, 193)\" style=\"font-family:Arial,sans-serif; font-size:10pt; line-height:14px; color:rgb(5,99,193)\"><a href=\"https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764\" data-auth=\"Verified\" data-event-added=\"1\" data-linkindex=\"12\" data-outlook-id=\"8471eafc-e2f3-45c2-bf8b-b7e1e239e55a\" style=\"margin:0px; color:rgb(0,134,240)\">5380\r\n Eisenhower Ave, Suite C</a></span></p>\r\n<p style=\"margin:0px 0px 3pt; text-decoration:none; line-height:15.4px\"><span data-ogsc=\"rgb(5, 99, 193)\" style=\"font-family:Arial,sans-serif; font-size:10pt; line-height:14px; color:rgb(5,99,193)\"><u><a href=\"https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764\" data-auth=\"Verified\" data-event-added=\"1\" data-linkindex=\"13\" data-outlook-id=\"039a7558-8827-4bbe-b406-62fae21ac229\" style=\"margin:0px; color:rgb(0,134,240)\">Alexandria,\r\n Virginia 22304</a></u></span></p>\r\n<p></p>\r\n</div>\r\n<br>\r\n<br>\r\n</div>\r\n</div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Monday, May 19, 2025 3:35:14 PM<br>\r\n<b>To:</b> Chris Sargent &lt;chris@buildmo.com&gt;<br>\r\n<b>Cc:</b> Henry Sullivan &lt;henry@buildmo.com&gt;; Tom Labrecque &lt;tl@buildmo.com&gt;; Thomas Sullivan &lt;tom@buildmo.com&gt;<br>\r\n<b>Subject:</b> [External] Re: SOF Week Follow Up</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks for the follow-up, Chris.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Would a video call be useful?</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Let’s setup something for next week.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height:11px\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_airmail_on\">On May 19, 2025 at 11:35:39 AM, Chris Sargent (<a href=\"mailto:chris@buildmo.com\">chris@buildmo.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nRick,</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nI wanted to reach out and discuss with you more the American Made Drone Consortium, Mavrix. If you could give me a brief overview on your initiative, I would be very appreciative. I have visited your website, however it looks&nbsp;like it won\'t be fully up an running\r\n for another six weeks or so. Thank you.</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_Signature\" class=\"x_x_elementToProof\">\r\n<p style=\"margin-top:0px; margin-bottom:0px\"><span style=\"font-family:Arial,sans-serif; font-size:8pt; color:rgb(0,0,0); line-height:11.2px\"><img width=\"331\" height=\"39\" data-outlook-trace=\"F:1|T:1\" src=\"cid:491BF459-0C69-47AF-A0F4-FCCA54DEDED3\" style=\"width:248.99pt; height:29.99pt; max-width:800px; min-width:auto; min-height:auto; margin:0px\"></span></p>\r\n<p style=\"margin-top:0px; margin-bottom:0px\"><span style=\"font-family:Arial,sans-serif; font-size:8pt; color:rgb(34,34,34); background-color:white; line-height:11.2px\"><i>A Service-Disabled Veteran-Owned&nbsp;Small Business</i></span></p>\r\n<p style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:8pt; color:rgb(237,125,49); line-height:11.2px\"><b>________________________________________________________</b></span></p>\r\n<p style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black; background-color:white; line-height:12.6px\"><a href=\"mailto:chris@buildmo.com\" title=\"chris@buildmo.com\" style=\"text-decoration:none; margin-top:0px; margin-bottom:0px\"><img id=\"x_x_imageSelected1\" width=\"107\" height=\"89\" data-outlook-trace=\"F:1|T:1\" src=\"cid:2997AAA2-FCC3-4F64-B20B-D464C2B55F21\" style=\"width:107px; height:89px; margin-top:0px; margin-bottom:0px\"></a></span></p>\r\n<p style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:rgb(253,151,31); line-height:14px\"><b>Chris Sargent&nbsp;</b></span></p>\r\n<p style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:rgb(0,0,0); line-height:14px\">Email: Chris@buildmo.com&nbsp;</span></p>\r\n<p style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:rgb(0,0,0); line-height:14px\">Mobile</span><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black; line-height:14px\">: 619 721\r\n 5080</span></p>\r\n<p style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:rgb(5,99,193); line-height:14px\"><a href=\"https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764\" target=\"_blank\" rel=\"noopener noreferrer\" data-auth=\"NotApplicable\" data-linkindex=\"1\" data-event-added=\"1\" style=\"margin:0px\">5380\r\n Eisenhower Ave, Suite C</a></span></p>\r\n<p style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:rgb(5,99,193); line-height:14px\"><u><a href=\"https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764\" target=\"_blank\" rel=\"noopener noreferrer\" data-auth=\"NotApplicable\" data-linkindex=\"2\" data-event-added=\"1\" style=\"margin:0px\">Alexandria,\r\n Virginia 22304</a></u></span></p>\r\n<p style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:rgb(243,144,29); line-height:14px\">​</span></p>\r\n<p style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:&quot;Segoe UI Web (West European)&quot;,&quot;Segoe UI&quot;,-apple-system,BlinkMacSystemFont,Roboto,&quot;Helvetica Neue&quot;,sans-serif; font-size:10pt; color:rgb(243,144,29); background-color:rgb(255,255,255); line-height:14px\">Innovation\r\n Bootcamp by the seat: <a href=\"https://www.gsaadvantage.gov/advantage/ws/catalog/product_detail?gsin=11000095666640\" style=\"margin:0px; background-color:rgb(255,255,255); text-align:left\">\r\nProduct Detail (gsaadvantage.gov)</a></span></p>\r\n<p style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:rgb(243,144,29); line-height:14px\">NDAA Compliant COTS sUAS by the seat:\r\n<a href=\"https://www.gsaadvantage.gov/advantage/ws/catalog/product_detail?gsin=11000095666641\" style=\"margin-top:0px; margin-bottom:0px\">\r\nProduct Detail (gsaadvantage.gov)</a></span></p>\r\n<p style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"color:rgb(0,0,0)\"><br>\r\n</span></p>\r\n<div style=\"margin:0px; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<span style=\"line-height:12.6px\"><br>\r\n</span><br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Rick,\r\n\r\nCan we setup a video call for 10am Tuesday of next week? Teams would be preferred if possible. We applied it!\r\n\r\n\r\n\r\n[Image]\r\n\r\nA Service-Disabled Veteran-Owned Small Business\r\n\r\n________________________________________________________\r\n\r\n[Image]<mailto:chris@buildmo.com>\r\n\r\nChris Sargent\r\n\r\nEmail: Chris@buildmo.com\r\n\r\nMobile: 619 721 5080\r\n\r\n5380 Eisenhower Ave, Suite C<https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764>\r\n\r\nAlexandria, Virginia 22304<https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764>\r\n\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, May 20, 2025 9:39:35 AM\r\nTo: Chris Sargent <chris@buildmo.com>\r\nSubject: [External] Re: [External] Re: SOF Week Follow Up\r\n\r\nTuesday and Wednesday are pretty open…\r\nLet me know if that works?\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 20, 2025 at 7:32:11 AM, Chris Sargent (chris@buildmo.com<mailto:chris@buildmo.com>) wrote:\r\n\r\nRick,\r\nSounds good, what days work best for you?\r\n\r\n\r\n\r\n[Image]\r\n\r\nA Service-Disabled Veteran-Owned Small Business\r\n\r\n________________________________________________________\r\n\r\n[Image]<mailto:chris@buildmo.com>\r\n\r\nChris Sargent\r\n\r\nEmail: Chris@buildmo.com\r\n\r\nMobile: 619 721 5080\r\n\r\n5380 Eisenhower Ave, Suite C<https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764>\r\n\r\nAlexandria, Virginia 22304<https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764>\r\n\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Monday, May 19, 2025 3:35:14 PM\r\nTo: Chris Sargent <chris@buildmo.com>\r\nCc: Henry Sullivan <henry@buildmo.com>; Tom Labrecque <tl@buildmo.com>; Thomas Sullivan <tom@buildmo.com>\r\nSubject: [External] Re: SOF Week Follow Up\r\n\r\nThanks for the follow-up, Chris.\r\nWould a video call be useful?\r\nLet’s setup something for next week.\r\nThanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 19, 2025 at 11:35:39 AM, Chris Sargent (chris@buildmo.com<mailto:chris@buildmo.com>) wrote:\r\n\r\nRick,\r\n\r\nI wanted to reach out and discuss with you more the American Made Drone Consortium, Mavrix. If you could give me a brief overview on your initiative, I would be very appreciative. I have visited your website, however it looks like it won\'t be fully up an running for another six weeks or so. Thank you.\r\n\r\n\r\n[cid:491BF459-0C69-47AF-A0F4-FCCA54DEDED3]\r\n\r\nA Service-Disabled Veteran-Owned Small Business\r\n\r\n________________________________________________________\r\n\r\n[cid:2997AAA2-FCC3-4F64-B20B-D464C2B55F21]<mailto:chris@buildmo.com>\r\n\r\nChris Sargent\r\n\r\nEmail: Chris@buildmo.com\r\n\r\nMobile: 619 721 5080\r\n\r\n5380 Eisenhower Ave, Suite C<https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764>\r\n\r\nAlexandria, Virginia 22304<https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764>\r\n\r\n​\r\n\r\nInnovation Bootcamp by the seat: Product Detail (gsaadvantage.gov)<https://www.gsaadvantage.gov/advantage/ws/catalog/product_detail?gsin=11000095666640>\r\n\r\nNDAA Compliant COTS sUAS by the seat: Product Detail (gsaadvantage.gov)<https://www.gsaadvantage.gov/advantage/ws/catalog/product_detail?gsin=11000095666641>\r\n\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-05-20 20:24:49','2025-12-09 19:02:28','2025-12-09 19:02:28','2025-12-09 19:02:28',NULL,NULL,NULL),
(259,4,'<CABFjg5kCBjC7zMOJPutGStbSwWNRbayRJBLeMM6wv+KPmN806Q@mail.gmail.com>',NULL,NULL,'Re: Introduction','jmeillon@dronisos.com','Jean Meillon','<div dir=\"auto\">Hello Rick,</div><div dir=\"auto\"><br></div><div dir=\"auto\">We can schedule a meeting  on « google meet »</div><div dir=\"auto\"><br></div><div dir=\"auto\">next friday 4 Pm (Paris Time) or next monday 4 pm (Paris time) ?</div><div dir=\"auto\"><br></div><div dir=\"auto\">Let me know,</div><div dir=\"auto\"><br></div><div dir=\"auto\">Jean</div><div dir=\"auto\"><br></div><div dir=\"auto\"><br clear=\"all\"><br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><table bgcolor=\"#ffffff\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tbody><tr><td valign=\"top\">\r\n			<table align=\"left\" bgcolor=\"#ffffff\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"background-color:#ffffff;padding-left:15px;padding-top:15px;padding-right:15px\" width=\"600\"><tbody><tr><td valign=\"top\">\r\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tbody><tr><td style=\"padding-right:10px;border-right:5px solid #e8e8e8\" valign=\"middle\" width=\"85\"><img alt=\"Img\" height=\"75\" src=\"https://storage.googleapis.com/signaturesatori/customer-C00ovsxcj/avatars/google/fbSMS.jpg\" style=\"vertical-align:middle\" width=\"75\"></td><td style=\"padding-left:10px\" valign=\"top\">\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tbody><tr><td style=\"font-family:&#39;arial&#39;,&#39;helvetica&#39;,sans-serif;font-size:14px;line-height:17px;color:#ff5722;text-transform:uppercase;font-weight:bold\" valign=\"top\"><span style=\"color:#fec000\">Jean Meillon</span></td></tr><tr><td style=\"font-family:&#39;arial&#39;,&#39;helvetica&#39;,sans-serif;font-size:12px;line-height:14px;color:#000000;padding-bottom:7px\" valign=\"top\">CFO - Directeur Financier</td></tr><tr><td style=\"font-family:&#39;arial&#39;,sans-serif;font-size:12px;color:#000000;line-height:14px;padding-bottom:5px\" valign=\"top\"><span style=\"color:#fec000\"><strong><span style=\"font-family:&#39;arial&#39;,&#39;helvetica&#39;,sans-serif;font-size:12px;line-height:14px;background-color:#ffffff\">P</span></strong></span><span style=\"color:#ffa500\"><strong><span style=\"font-family:&#39;arial&#39;,&#39;helvetica&#39;,sans-serif;font-size:12px;line-height:14px;background-color:#ffffff\"> </span></strong></span><span style=\"color:#000000;font-family:&#39;arial&#39;,&#39;helvetica&#39;,sans-serif;font-size:12px;line-height:14px;background-color:#ffffff\"> +33678989456 </span><span style=\"color:#000000;font-family:&#39;arial&#39;,&#39;helvetica&#39;,sans-serif;font-size:12px;line-height:14px;background-color:#ffffff\"> | </span><span style=\"color:#ffa500\"><span style=\"font-family:&#39;arial&#39;,&#39;helvetica&#39;,sans-serif;font-size:12px;line-height:14px;background-color:#ffffff\"> </span></span><strong><span style=\"color:#fec000\"><span style=\"font-family:&#39;arial&#39;,&#39;helvetica&#39;,sans-serif;font-size:12px;line-height:14px;background-color:#ffffff\">E</span></span><span style=\"font-family:&#39;arial&#39;,&#39;helvetica&#39;,sans-serif;font-size:12px;line-height:14px;color:#ff5722;background-color:#ffffff\"> </span></strong><span style=\"color:#000000;font-family:&#39;arial&#39;,&#39;helvetica&#39;,sans-serif;font-size:12px;line-height:14px;background-color:#ffffff\"> <a href=\"mailto:jmeillon@dronisos.com\" style=\"color:#000000;text-decoration:none;font-family:&#39;arial&#39;,&#39;helvetica&#39;,sans-serif;font-size:12px;line-height:14px\" target=\"_blank\">jmeillon@dronisos.com</a></span></td></tr><tr><td style=\"font-family:&#39;arial&#39;,&#39;helvetica&#39;,sans-serif;font-size:12px;line-height:14px;color:#ff5722\" valign=\"bottom\"><span style=\"font-family:&#39;arial&#39;,&#39;helvetica&#39;,sans-serif;font-size:12px;line-height:14px;background-color:#ffffff\"><a href=\"https://www.dronisos.com?utm_source=signaturesatori&amp;utm_medium=email&amp;utm_campaign=general_signature\" style=\"color:#0067ff;text-decoration:none\" target=\"_blank\"><span style=\"color:#fec000\">www.dronisos.com</span></a></span></td></tr></tbody></table>\r\n									</td></tr></tbody></table>\r\n						</td></tr></tbody></table>\r\n			</td></tr></tbody></table>\r\n</div></div></div><div><br></div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">Le mar. 20 mai 2025 à 21:58, Rick &lt;rick@mavrix.one&gt; a écrit :<br></div><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\">\r\n    <div id=\"m_-6431880612897130545bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Gentlemen,</div><div id=\"m_-6431880612897130545bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Resending to reconnect.</div><div id=\"m_-6431880612897130545bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">I believe we can help move things along for you and </div><div id=\"m_-6431880612897130545bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">are very interested in discussing a future together.</div><div id=\"m_-6431880612897130545bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Please let me know your availability.</div><div id=\"m_-6431880612897130545bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\"><br></div><div id=\"m_-6431880612897130545bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Thank you,</div><div id=\"m_-6431880612897130545bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Rick</div> <br> <div id=\"m_-6431880612897130545bloop_sign_1747770952422214144\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height:11px\"></div>\r\n     \r\n</div> <br><p>On May 15, 2025 at 8:20:36 AM, Rick (<a href=\"mailto:rick@mavrix.one\" target=\"_blank\">rick@mavrix.one</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div>\r\n    <div id=\"m_-6431880612897130545bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Hello Jean, and thank you for the introduction, Jean-Dominique. </div><div id=\"m_-6431880612897130545bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">So nice to meet you (virtually). Sorry for the delays. </div><div id=\"m_-6431880612897130545bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">I was in Tampa at SOF Week and have been recovering from the deluge of emails from new and old connections.</div><div id=\"m_-6431880612897130545bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">If you’re interested, I think it would be good to connect next week to discuss some opportunities.</div><div id=\"m_-6431880612897130545bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Thank you so much for your time and consideration,</div><div id=\"m_-6431880612897130545bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Rick</div> <br> <div id=\"m_-6431880612897130545bloop_sign_1747311462841691136\">\r\n         \r\n      \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height:11px\"></div>\r\n      \r\n</div> <br><p>On May 6, 2025 at 5:43:32 AM, Jean-dominique Lauwereins (<a href=\"mailto:jdlauwereins@icarusswarms.ai\" target=\"_blank\">jdlauwereins@icarusswarms.ai</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div><span class=\"gmail_default\" style=\"color:rgb(11,83,148)\">Hi Rick and Jean,</span></div><div><span class=\"gmail_default\" style=\"color:rgb(11,83,148)\"><br>I wanted to connect you both, as I believe Rick can provide valuable support to Icarus Swarms in raising funds for its growth plans.<br><br>Rick – Jean is the CFO of the group overseeing Dronisos and Icarus Swarms, bringing extensive financial expertise and strategic insight into their operations.<br><br>Jean – Rick has substantial experience in fundraising and could be instrumental in securing investments that align with Icarus Swarms’ ambitions.<br><br>I&#39;ll let you both take it from here. Please feel free to reach out if I can be of further assistance.<br><br></span></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><font color=\"#0b5394\">Jean-Dominique </font><div><br><table bgcolor=\"#ffffff\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"color:rgb(34,34,34)\"><tbody><tr><td valign=\"top\"><table align=\"left\" bgcolor=\"#ffffff\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"padding-left:15px;padding-top:15px;padding-right:15px\"><tbody><tr><td valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tbody><tr><td valign=\"top\" width=\"50\" style=\"padding-right:20px;vertical-align:top\"><img src=\"https://ci3.googleusercontent.com/mail-sig/AIorK4yFAkZTUTwb7Q8Bjxu3howl-sD275B9dr8nnheUm2K_dXRumDopoUz4Qx8vbCWo8QSLXmrxNRrMk8fG\" width=\"96\" height=\"96\"><br></td><td valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tbody><tr><td valign=\"top\"><table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tbody><tr><td valign=\"top\" style=\"font-family:tahoma,geneva,sans-serif;font-size:14px;line-height:17px;text-transform:uppercase;font-weight:bold;padding-bottom:5px;padding-right:10px\"><font color=\"#3d85c6\">JEAN-DOMINIQUE LAUWEREINS</font></td></tr><tr><td valign=\"top\" style=\"font-family:tahoma,geneva,sans-serif;font-size:12px;line-height:14px;padding-bottom:10px\"><font color=\"#3d85c6\">Co-Founder and CTO</font></td></tr><tr><td valign=\"top\" style=\"padding-bottom:10px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tbody><tr><td height=\"5\" valign=\"top\" style=\"background-color:rgb(232,232,232);font-size:5px;line-height:5px;border-radius:5px\"><font color=\"#3d85c6\"> </font></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td valign=\"top\" style=\"font-family:tahoma,geneva,sans-serif;font-size:11px;padding-bottom:5px;line-height:13px\"><strong><font color=\"#3d85c6\">E </font></strong><font color=\"#3d85c6\"> <a href=\"mailto:jdlauwereins@icarusswarms.ai\" target=\"_blank\">jdlauwereins@icarusswarms.ai</a> </font><font color=\"#000000\">| </font><strong><font color=\"#6fa8dc\">M</font></strong><font color=\"#000000\"> +33 670 633 071</font></td></tr><tr><td valign=\"top\" style=\"font-family:tahoma,geneva,sans-serif;font-size:11px;color:rgb(0,0,0);line-height:13px;padding-bottom:5px\"><strong>Icarus Swarms</strong>  |  Bordeaux, France </td></tr><tr><td valign=\"top\" style=\"font-family:tahoma,geneva,sans-serif;line-height:13px;padding-bottom:5px\"><a href=\"http://www.icarusswarms.ai\" target=\"_blank\"><font color=\"#3d85c6\" size=\"1\">www.icarusswarms.ai</font></a><br><br></td></tr><tr><td valign=\"top\"><br></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></div></div></div></div><img src=\"https://cTGwW04.na1.hs-sales-engage.com/Cto/GE+23284/cTGwW04/R5R8b48vtN70Tyzy2fD4xW1ZkpZt1S56bwW24T2gD1W_LpVW1GyxJS22Svy7W24Wbws1Q5MDvW22VS6p1Q44F4n1S3Vyj4W1\" alt=\"\" height=\"1\" width=\"1\" style=\"display:none!important\"><div></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div></div>','Hello Rick,\r\n\r\nWe can schedule a meeting  on « google meet »\r\n\r\nnext friday 4 Pm (Paris Time) or next monday 4 pm (Paris time) ?\r\n\r\nLet me know,\r\n\r\nJean\r\n\r\n\r\n\r\n[image: Img]\r\nJean Meillon\r\nCFO - Directeur Financier\r\n*P*  +33678989456  |  *E * jmeillon@dronisos.com\r\nwww.dronisos.com\r\n<https://www.dronisos.com?utm_source=signaturesatori&utm_medium=email&utm_campaign=general_signature>\r\n\r\n\r\nLe mar. 20 mai 2025 à 21:58, Rick <rick@mavrix.one> a écrit :\r\n\r\n> Gentlemen,\r\n> Resending to reconnect.\r\n> I believe we can help move things along for you and\r\n> are very interested in discussing a future together.\r\n> Please let me know your availability.\r\n>\r\n> Thank you,\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On May 15, 2025 at 8:20:36 AM, Rick (rick@mavrix.one) wrote:\r\n>\r\n> Hello Jean, and thank you for the introduction, Jean-Dominique.\r\n> So nice to meet you (virtually). Sorry for the delays.\r\n> I was in Tampa at SOF Week and have been recovering from the deluge of\r\n> emails from new and old connections.\r\n> If you’re interested, I think it would be good to connect next week to\r\n> discuss some opportunities.\r\n> Thank you so much for your time and consideration,\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On May 6, 2025 at 5:43:32 AM, Jean-dominique Lauwereins (\r\n> jdlauwereins@icarusswarms.ai) wrote:\r\n>\r\n> Hi Rick and Jean,\r\n>\r\n> I wanted to connect you both, as I believe Rick can provide valuable\r\n> support to Icarus Swarms in raising funds for its growth plans.\r\n>\r\n> Rick – Jean is the CFO of the group overseeing Dronisos and Icarus Swarms,\r\n> bringing extensive financial expertise and strategic insight into their\r\n> operations.\r\n>\r\n> Jean – Rick has substantial experience in fundraising and could be\r\n> instrumental in securing investments that align with Icarus Swarms’\r\n> ambitions.\r\n>\r\n> I\'ll let you both take it from here. Please feel free to reach out if I\r\n> can be of further assistance.\r\n>\r\n> Jean-Dominique\r\n>\r\n>\r\n> JEAN-DOMINIQUE LAUWEREINS\r\n> Co-Founder and CTO\r\n>\r\n> *E * jdlauwereins@icarusswarms.ai | *M* +33 670 633 071\r\n> *Icarus Swarms*  |  Bordeaux, France\r\n> www.icarusswarms.ai\r\n>\r\n>\r\n>',0,0,0,0,0,0,'2025-05-20 21:20:25','2025-12-09 19:03:04','2025-12-09 19:03:04','2025-12-09 19:03:04',NULL,NULL,NULL),
(260,4,' <CH2PR16MB3431A3EB407088A059851A99FE9FA@CH2PR16MB3431.namprd16.prod.outlook.com>',NULL,NULL,'Re: Next steps!','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nFantastic! I will send across the investor teaser and then we can set up a time to discuss</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"Signature\" class=\"elementToProof\">\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color: rgb(0, 36, 81); margin: 0px;\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color: rgb(0, 36, 81); margin: 0px;\">.com</a></u></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a href=\"https://lithiumbatterycompany.com/\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color: rgb(0, 36, 81); margin: 0px;\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, May 20, 2025 4:00 PM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">NDAs in place, next steps…</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Let me know what\'s best for your team.&nbsp;</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On May 15, 2025 at 8:17:14 AM, Rick (<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Sounds good.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Hope we can help you sooner rather than later!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">All my best,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On May 14, 2025 at 1:53:19 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div>\r\n<div dir=\"ltr\">Rick, apologies for the delay - after our call yesterday we were engaged by the Shell Corporation and today we are receiving an award at the Florida SBDC event so have been in meetings nearly constantly and I fell behind on kicking over the MNDA.\r\n It’s first on my to-do list after this event!</div>\r\n</div>\r\n<div id=\"x_ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"x_ms-outlook-mobile-signature\">\r\n<div></div>\r\n</div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, May 13, 2025 9:02:50 AM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nGot it! Will be there.. thanks!</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div id=\"x_x_bloop_sign_1747141266137078016\" class=\"x_x_bloop_sign\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_airmail_on\">On May 13, 2025 at 8:59:30 AM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick,&nbsp;</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nYes, 10am this morning - I just resent the zoom invite. Look forward to speaking soon</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_Signature\" class=\"x_x_elementToProof\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWAa99fda94-e056-c619-a196-a33c2ff2877b\" class=\"x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA098259f9-2a26-ebbc-a687-62be0f9f5580\" class=\"x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" id=\"OWA6dd24376-6350-4d35-05a2-83112c570eec\" class=\"x_x_OWAAutoLink\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_appendonsend\"></div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block; width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Rick<br>\r\n<b>Sent:</b>&nbsp;Tuesday, May 13, 2025 7:28 AM<br>\r\n<b>To:</b>&nbsp;Jarrett Brownfield<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps! </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div>Not sure if I responded accurately.&nbsp;</div>\r\n<div>I’m open at 10a today if that works.&nbsp;</div>\r\n<div>Thanks!</div>\r\n<div>Rick</div>\r\n<div><br>\r\n</div>\r\n<div>Rick Mislan, PhD</div>\r\n<div>[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one</div>\r\n<div><img height=\"11\" style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n<p style=\"color:rgb(0,0,0)\">On May 12, 2025 at 2:26:32 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\" id=\"OWA6fe9a5f9-a715-dff3-4833-c48bb98fbcc5\" class=\"x_x_OWAAutoLink\" style=\"margin-top:0px; margin-bottom:0px\">jarrett@lithiumbatterycompany.com</a>)\r\n wrote:</p>\r\n<blockquote>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nWe enjoyed meeting with you as well and thanks for circling back - please find below availability and we look forward to speaking:<br>\r\n<br>\r\n(all times EST)<br>\r\nToday:&nbsp; 3-4:30pm<br>\r\nTuesday (5.13): 930-11am || 1130am-1pm<br>\r\nWednesday (5.14): 10am-1130<br>\r\nThursday (5.15): 12-3pm&nbsp;<br>\r\nFriday (5.16): 9am-3pm<br>\r\n<br>\r\n<br>\r\nBest,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_x_Signature\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner</span>\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">\r\nI Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA85b348c0-ceb1-fac7-e499-95d5a963cc38\" class=\"x_x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA9b7813f6-bff5-7b2b-9efa-d558ec60b684\" class=\"x_x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" id=\"OWA93baa47e-fc9a-556d-beba-278bafbdf824\" class=\"x_x_x_OWAAutoLink\" title=\"https://lithiumbatterycompany.com/\" data-auth=\"NotApplicable\" data-linkindex=\"10\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_x_appendonsend\"></div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_x_x_divRplyFwdMsg\" dir=\"ltr\"><span style=\"font-family:Calibri,sans-serif; font-size:11pt; color:rgb(0,0,0)\"><b>From:</b>&nbsp;Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b>&nbsp;Sunday, May 11, 2025 9:18 AM<br>\r\n<b>To:</b>&nbsp;nathan@lithiumbatterycompany.com &lt;nathan@lithiumbatterycompany.com&gt;; jordan@lithiumbatterycompany.com &lt;jordan@lithiumbatterycompany.com&gt;; ronald@lithiumbatterycompany.com &lt;ronald@lithiumbatterycompany.com&gt;; jarrett@lithiumbatterycompany.com &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps!</span>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Ok, following up again,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">this time for a request&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">to discuss next steps.</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Interested in money? :)</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Let’s set up a time to chat soon.</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Thanks,</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Rick Mislan, PhD</div>\r\n<div style=\"direction:ltr\"><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" id=\"OWA6f2250de-935b-77bd-ce88-2cfb3cbe652e\" class=\"x_x_OWAAutoLink\" data-auth=\"NotApplicable\">https://mavrix.one</a></div>\r\n<div style=\"direction:ltr\"><img height=\"11\" style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr\">On May 8, 2025 at 1:33:01 PM, Rick (<a href=\"mailto:rick@mavrix.one\" id=\"OWA44b57871-3029-0cf0-fc3a-86d620da512e\" class=\"x_x_OWAAutoLink\" style=\"margin-top:0px; margin-bottom:0px\">rick@mavrix.one</a>) wrote:</p>\r\n<blockquote>\r\n<div style=\"direction:ltr; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<span style=\"background-color:rgb(255,255,255)\">Gentlemen,</span></div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nA pleasure meeting you all!</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nJust wanted to let you know that</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nI am talking to my team <a href=\"http://airmail.calendar/2025-05-11%2019:00:00%20EDT\" id=\"OWA8867e85c-bf8e-41be-d815-e78244229e9c\" class=\"x_x_OWAAutoLink\" data-auth=\"NotApplicable\">\r\ntonight</a></div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nhere in Treasure Island.&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nMy goal for <a href=\"http://airmail.calendar/2025-05-11%2019:00:00%20EDT\" id=\"OWA7aced99c-5963-164f-8e4a-9d96675a373f\" class=\"x_x_OWAAutoLink\" data-auth=\"NotApplicable\">\r\ntonight</a>&nbsp;is to</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\ndiscuss the mavrix&nbsp;portfolio and</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nplan out a schedule of calls</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nwith you for next steps.&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nAgain, I truly enjoyed meeting&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nand chatting with you all!&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nI’ll be in touch next week!</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nAll my best,</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nRick</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Fantastic! I will send across the investor teaser and then we can set up a time to discuss\r\n\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, May 20, 2025 4:00 PM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nNDAs in place, next steps…\r\nLet me know what\'s best for your team.\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 15, 2025 at 8:17:14 AM, Rick (rick@mavrix.one<mailto:rick@mavrix.one>) wrote:\r\n\r\nSounds good.\r\nHope we can help you sooner rather than later!\r\nAll my best,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 14, 2025 at 1:53:19 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nRick, apologies for the delay - after our call yesterday we were engaged by the Shell Corporation and today we are receiving an award at the Florida SBDC event so have been in meetings nearly constantly and I fell behind on kicking over the MNDA. It’s first on my to-do list after this event!\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, May 13, 2025 9:02:50 AM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nGot it! Will be there.. thanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 13, 2025 at 8:59:30 AM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nYes, 10am this morning - I just resent the zoom invite. Look forward to speaking soon\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n\r\n________________________________\r\nFrom: Rick\r\nSent: Tuesday, May 13, 2025 7:28 AM\r\nTo: Jarrett Brownfield\r\nSubject: Re: Next steps!\r\n\r\nNot sure if I responded accurately.\r\nI’m open at 10a today if that works.\r\nThanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\n[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one\r\n[X]\r\n\r\nOn May 12, 2025 at 2:26:32 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nWe enjoyed meeting with you as well and thanks for circling back - please find below availability and we look forward to speaking:\r\n\r\n(all times EST)\r\nToday:  3-4:30pm\r\nTuesday (5.13): 930-11am || 1130am-1pm\r\nWednesday (5.14): 10am-1130\r\nThursday (5.15): 12-3pm\r\nFriday (5.16): 9am-3pm\r\n\r\n\r\nBest,\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Sunday, May 11, 2025 9:18 AM\r\nTo: nathan@lithiumbatterycompany.com <nathan@lithiumbatterycompany.com>; jordan@lithiumbatterycompany.com <jordan@lithiumbatterycompany.com>; ronald@lithiumbatterycompany.com <ronald@lithiumbatterycompany.com>; jarrett@lithiumbatterycompany.com <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nOk, following up again,\r\nthis time for a request\r\nto discuss next steps.\r\n\r\nInterested in money? :)\r\nLet’s set up a time to chat soon.\r\n\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 8, 2025 at 1:33:01 PM, Rick (rick@mavrix.one<mailto:rick@mavrix.one>) wrote:\r\n\r\nGentlemen,\r\n\r\nA pleasure meeting you all!\r\n\r\nJust wanted to let you know that\r\nI am talking to my team tonight<http://airmail.calendar/2025-05-11%2019:00:00%20EDT>\r\nhere in Treasure Island.\r\n\r\nMy goal for tonight<http://airmail.calendar/2025-05-11%2019:00:00%20EDT> is to\r\ndiscuss the mavrix portfolio and\r\nplan out a schedule of calls\r\nwith you for next steps.\r\n\r\nAgain, I truly enjoyed meeting\r\nand chatting with you all!\r\n\r\nI’ll be in touch next week!\r\n\r\nAll my best,\r\nRick\r\n\r\n',0,0,0,0,0,0,'2025-05-20 21:24:38','2025-12-09 19:03:05','2025-12-09 19:03:05','2025-12-09 19:03:05',NULL,NULL,NULL),
(261,4,'<CAP1B=smCVKRvejLLLf0tTh8x8-kNd7-7z5xpPLTSYdXp58Q6WA@mail.gmail.com>',NULL,NULL,'Re: Thank You for Connecting at SOF Week','charles.phillips@orqafpv.com','Charles Phillips','<div dir=\"auto\">Rick,</div><div dir=\"auto\"><br></div><div dir=\"auto\">I was waiting to hear back from you regarding open dates. What dates work for you next week?</div><div dir=\"auto\"><br></div><div dir=\"auto\">Regards,</div><div dir=\"auto\"><br></div><div dir=\"auto\">Charles Phillips </div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, May 20, 2025 at 3:00 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\">\r\n    <div id=\"m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Gentlemen,</div><div id=\"m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">I am reaching out to schedule a call with you for next week</div><div id=\"m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">to follow up on the conversation Charles and I had during SOF Week.</div><div id=\"m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\"><br></div><div id=\"m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Please let me know your interest and availability.</div><div id=\"m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\"><br></div><div id=\"m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Thank you,</div><div id=\"m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Rick</div><div id=\"m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\"><br></div> <div id=\"m_7908639273750937061bloop_sign_1747771088106214912\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height:11px\"></div>\r\n     \r\n</div> <br><p>On May 8, 2025 at 3:14:43 PM, Rick (<a href=\"mailto:rick@mavrix.one\" target=\"_blank\">rick@mavrix.one</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div>\r\n    <div id=\"m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Hi Charles,<br></div><div><br></div><div><div>Thank you again for your time yesterday on the yacht.</div><div>It was a pleasure meeting you in person. </div><div>I appreciated the opportunity to connect and </div><div>share more about MAVRIX and the work we&#39;re doing.<br></div><div><br></div><div>I&#39;ll be meeting with my team later today and </div><div>will follow up to schedule something for next week </div><div>so we can continue the conversation and </div><div>explore potential next steps.</div></div><div><div><br></div><div><div>Also, I want to take a moment to share </div><div>how impressed I was with Bryan Sardoch.</div><div>His ability to clearly articulate ORQA’s capabilities, </div><div>along with the TTPs he employs in theater, really stood out. </div><div>His depth of knowledge and firsthand experience brought </div><div>a level of authenticity that resonated with the soldiers who stopped by. </div><div>He’s a tremendous asset to ORQA </div><div>and a strong identity for the brand.</div><div><br></div></div><div><div>Looking forward to reconnecting soon. </div><div>I’ll send over some open dates shortly.</div><div><br></div></div><div>Respectfully,</div></div><div>Rick</div><div id=\"m_7908639273750937061bloop_sign_1746731112679679744\"></div>\r\n\r\n\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div></div>\r\n\r\n<br>\r\n<font size=\"1\">This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Orqa Holding Group liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted.</font><br>','Rick,\r\n\r\nI was waiting to hear back from you regarding open dates. What dates work\r\nfor you next week?\r\n\r\nRegards,\r\n\r\nCharles Phillips\r\n\r\nOn Tue, May 20, 2025 at 3:00 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> Gentlemen,\r\n> I am reaching out to schedule a call with you for next week\r\n> to follow up on the conversation Charles and I had during SOF Week.\r\n>\r\n> Please let me know your interest and availability.\r\n>\r\n> Thank you,\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On May 8, 2025 at 3:14:43 PM, Rick (rick@mavrix.one) wrote:\r\n>\r\n> Hi Charles,\r\n>\r\n> Thank you again for your time yesterday on the yacht.\r\n> It was a pleasure meeting you in person.\r\n> I appreciated the opportunity to connect and\r\n> share more about MAVRIX and the work we\'re doing.\r\n>\r\n> I\'ll be meeting with my team later today and\r\n> will follow up to schedule something for next week\r\n> so we can continue the conversation and\r\n> explore potential next steps.\r\n>\r\n> Also, I want to take a moment to share\r\n> how impressed I was with Bryan Sardoch.\r\n> His ability to clearly articulate ORQA’s capabilities,\r\n> along with the TTPs he employs in theater, really stood out.\r\n> His depth of knowledge and firsthand experience brought\r\n> a level of authenticity that resonated with the soldiers who stopped by.\r\n> He’s a tremendous asset to ORQA\r\n> and a strong identity for the brand.\r\n>\r\n> Looking forward to reconnecting soon.\r\n> I’ll send over some open dates shortly.\r\n>\r\n> Respectfully,\r\n> Rick\r\n>\r\n>\r\n\r\n-- \r\nThis e-mail and the documents attached are confidential and intended solely \r\nfor the addressee; it may also be privileged. If you receive this e-mail in \r\nerror, please notify the sender immediately and destroy it. As its \r\nintegrity cannot be secured on the Internet, the Orqa Holding Group \r\nliability cannot be triggered for the message content. Although the sender \r\nendeavours to maintain a computer virus-free network, the sender does not \r\nwarrant that this transmission is virus-free and will not be liable for any \r\ndamages resulting from any virus transmitted.',0,0,0,0,0,0,'2025-05-20 22:25:58','2025-12-09 19:03:05','2025-12-09 19:03:05','2025-12-09 19:03:05',NULL,NULL,NULL),
(262,4,'<templateID=e2dd4ea6-fdda-4be7-922f-e71bdd431b43--account=60f7b6c1-712f-4754-ab54-5ecba433a7b3--messageID=bdd02aa0-2513-433e-8317-d3530deefe54--productTags=Filings+kjnvoihdf@reminder.wyregisteredagent.net>',NULL,NULL,'Important information about your recent order for MAVRIX, LLC','info@reminder.wyregisteredagent.net','Buffalo Registered Agents LLC','<p></p>\r\n<p style=\"margin: 0 0 18px; font-size: 16px; line-height: 22px;\"></p>\r\n<p style=\"margin: 0 0 18px; font-size: 16px; line-height: 22px;\">Thank you for hiring&nbsp;Buffalo Registered Agents LLC to complete a Standard Wyoming Form a Company (WY) filing for MAVRIX, LLC on 05/18/2025. <br>After reviewing the Standard Wyoming Form a Company (WY) filing information you provided we determined that the name you selected is not available in Wyoming. Please reply to this email with the new name(s) you would like us to submit. <br>If you&rsquo;d like any clarification, please feel free to reply to this email or call for more information.</p>\r\n<p style=\"margin: 0 0 18px; font-size: 16px; line-height: 22px;\"></p>\r\n<p style=\"margin: 0 0 18px; font-size: 16px; line-height: 22px;\">Buffalo Registered Agents LLC<br>412 N Main St Suite 100 <br>Buffalo, Wyoming 82834<br>T: 307-554-1800<br>E: <a href=\"mailto:agent@wyregisteredagent.net\">agent@wyregisteredagent.net</a><br>W: <a href=\"https://email.reminder.wyregisteredagent.net/c/eJx0kbGO2zwQhJ9Gan6sQe6SolSw-APHQJpU6YMluZQZ25Qj0XL89kEud2XK3ZnB4MMkr4PgEHrx2hnnRjSWetmltu8l-UzESM4BkiMwmSzwODBMGIwKSSli05_9FJ3OeVQxT0RKi7IWp8ysBtSU3dAX3-R2v3KTL8eOjoIpGeEBckoMJoiDCTGDOB1SMqSDIQCOcXnU1tFxUNmFIWpwGjMYZw1wsAasxMCGiF0ggJtsG89_G0JKCpkVoNUEhkhgJO0gkSWVRLJYA3Bfl_SI7RvPW0fHU7mWOm8dfrr8qPtSzil3Rq1yKzXJeni-VpnL1mSVxLPUdqjS-qs_t3bv6P8OTx2ens_nv4zLDHwvcJGXHyfRgxEChZjADDjCZDGAtnkwGYMKKr8H7v7znzH--7q0kkvkVpa6vWlSd_8OUJb69tpk3UsU__MhD_m4-tWvJV46o268r-XXYanSNx-5ybysL_gA7HePvwMAAP__SB6m3w\" aria-invalid=\"true\">www.wyregisteredagent.net</a></p><img width=\"1\" height=\"1\" alt=\"\" src=\"https://email.reminder.wyregisteredagent.net/o/eJw0kLGO2zwQhJ9Gan7sgeQuRblg88MJkCZV-mDJXeoY25Qj0Ur89kEud-XMYDAfRqJN6qY0arSBQpgdeRz10Na_V4kFkR2GAA4DAhX0wPPEcHKJTBJjkGl8jXmi2ZeZQsjeZispk2f0bHyQopjHGrve7lfu-uU84FmdCClPUEQYKGmAk3MFNNgkQmgTIQDnvD5aH_A8mRLSlC0E6wpQ8AScPIHXnJgQOSQEuOm-8_JvIYkYx2zAeYtAiAoz2gCCHo2oFvUEcN9WeeT-jZd9wPPneq1t2Qf3_-VHO9b6KmUgs-mtNtHt5ddz06XuXTcVXrT1l6Z9vK4L8L3CRZ9xPqmdSBGMcwI0uRlO3iWwvkxUXDLJlPfCPX76-_F_X9deS83c69r2t0zbEd-56trerF23o2aNPx_60A81bnGr-TKQufGx1d8va9Oxx8xdl3V7wgf3eET3JwAA__9VDpja\">\r\n','\r\n\r\nThank you for hiring&nbsp;Buffalo Registered Agents LLC to complete a Standard Wyoming Form a Company (WY) filing for MAVRIX, LLC on 05/18/2025. After reviewing the Standard Wyoming Form a Company (WY) filing information you provided we determined that the name you selected is not available in Wyoming. Please reply to this email with the new name(s) you would like us to submit. If you&rsquo;d like any clarification, please feel free to reply to this email or call for more information.\r\n\r\nBuffalo Registered Agents LLC412 N Main St Suite 100 Buffalo, Wyoming 82834T: 307-554-1800E: agent@wyregisteredagent.netW: www.wyregisteredagent.net\r\n',0,0,0,0,0,0,'2025-05-20 23:07:33','2025-12-09 19:03:05','2025-12-09 19:03:05','2025-12-09 19:03:05',NULL,NULL,NULL),
(263,4,'<calendar-eeeef086-16b9-4f6e-8f94-f71da2a05bf2@google.com>',NULL,NULL,'Invitation: Re: Introduction /  Rick Mislan - ICarus Swarm - lun. 26 mai 2025 4pm - 5pm (UTC+2) (rick@mavrix.one)','jmeillon@dronisos.com','Jean Meillon','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v143/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v117/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation reçue de Jean Meillon\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"36ghre4s1hpdjn4forvsp9aoqd\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Re: Introduction /  Rick Mislan - ICarus Swarm</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MzZnaHJlNHMxaHBkam40Zm9ydnNwOWFvcWQgcmlja0BtYXZyaXgub25l&amp;tok=MjEjam1laWxsb25AZHJvbmlzb3MuY29tZTM5OWZkNjRiNDE5N2U1MGQ4OWJlMGZiZmI4MTNmOTg1ZDk5NDUxMw&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250526T140000Z\"></time><time itemprop=\"endDate\" datetime=\"20250526T150000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">Participer avec Google Meet - Vous avez été invité par Jean Meillon à participer à un événement appelé Re: Introduction /  Rick Mislan - ICarus Swarm le lundi 26 mai 2025 ⋅ 4pm – 5pm (Heure d’Europe centrale - Paris).</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:28px;\"><a href=\"https://meet.google.com/jmy-gcsc-ast?hs=224\" class=\"primary-button-text\" style=\"display: inline-block;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"display: inline-block\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"background-color: #1a73e8; cursor: auto; padding: 10px 25px; border: none; border-radius: 4px; margin: 0;\" class=\"primary-button\"><!--[if mso]><a href=\"https://meet.google.com/jmy-gcsc-ast?hs=224\" class=\"primary-button-text\" target=\"_blank\"><![endif]--><span class=\"primary-button-text\" style=\"font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\">Participer avec Google Meet</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Lien de la réunion</h2></td></tr></table><!-- Use grey text for the Meet link--><div><a style=\"display: inline-block;;color: #70757a; text-decoration: none;\" class=\"secondary-text underline-on-hover\" href=\"https://meet.google.com/jmy-gcsc-ast?hs=224\">meet.google.com/jmy-gcsc-ast</a></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Participer par téléphone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(FR) </span><a href=\"tel:+33-1-87-40-09-45%3B653393912%23\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+33 1 87 40 09 45</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">CODE SECRET: 653393912</span><br><br><a href=\"https://tel.meet/jmy-gcsc-ast?pin=7588203748083&amp;hs=0\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">Plus de numéros de téléphone</a><br></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250526T140000Z\"></time><time itemprop=\"endDate\" datetime=\"20250526T150000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Date</h2></td></tr></table><span>lundi 26 mai 2025 ⋅ 4pm – 5pm (Heure d’Europe centrale - Paris)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Invités</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jmeillon@dronisos.com\">Jean Meillon</a></span><meta itemprop=\"email\" content=\"jmeillon@dronisos.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Jean Meillon\"/><meta itemprop=\"email\" content=\"jmeillon@dronisos.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\">- organisateur</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jdlauwereins@icarusswarms.ai\">jdlauwereins@icarusswarms.ai</a></span><meta itemprop=\"email\" content=\"jdlauwereins@icarusswarms.ai\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MzZnaHJlNHMxaHBkam40Zm9ydnNwOWFvcWQgcmlja0BtYXZyaXgub25l&amp;tok=MjEjam1laWxsb25AZHJvbmlzb3MuY29tZTM5OWZkNjRiNDE5N2U1MGQ4OWJlMGZiZmI4MTNmOTg1ZDk5NDUxMw&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">Afficher les informations sur tous les invités</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Répondre</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> pour <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MzZnaHJlNHMxaHBkam40Zm9ydnNwOWFvcWQgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjEjam1laWxsb25AZHJvbmlzb3MuY29tZTM5OWZkNjRiNDE5N2U1MGQ4OWJlMGZiZmI4MTNmOTg1ZDk5NDUxMw&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MzZnaHJlNHMxaHBkam40Zm9ydnNwOWFvcWQgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjEjam1laWxsb25AZHJvbmlzb3MuY29tZTM5OWZkNjRiNDE5N2U1MGQ4OWJlMGZiZmI4MTNmOTg1ZDk5NDUxMw&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Oui</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MzZnaHJlNHMxaHBkam40Zm9ydnNwOWFvcWQgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjEjam1laWxsb25AZHJvbmlzb3MuY29tZTM5OWZkNjRiNDE5N2U1MGQ4OWJlMGZiZmI4MTNmOTg1ZDk5NDUxMw&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MzZnaHJlNHMxaHBkam40Zm9ydnNwOWFvcWQgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjEjam1laWxsb25AZHJvbmlzb3MuY29tZTM5OWZkNjRiNDE5N2U1MGQ4OWJlMGZiZmI4MTNmOTg1ZDk5NDUxMw&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Non</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MzZnaHJlNHMxaHBkam40Zm9ydnNwOWFvcWQgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjEjam1laWxsb25AZHJvbmlzb3MuY29tZTM5OWZkNjRiNDE5N2U1MGQ4OWJlMGZiZmI4MTNmOTg1ZDk5NDUxMw&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MzZnaHJlNHMxaHBkam40Zm9ydnNwOWFvcWQgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjEjam1laWxsb25AZHJvbmlzb3MuY29tZTM5OWZkNjRiNDE5N2U1MGQ4OWJlMGZiZmI4MTNmOTg1ZDk5NDUxMw&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Peut-être</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MzZnaHJlNHMxaHBkam40Zm9ydnNwOWFvcWQgcmlja0BtYXZyaXgub25l&amp;tok=MjEjam1laWxsb25AZHJvbmlzb3MuY29tZTM5OWZkNjRiNDE5N2U1MGQ4OWJlMGZiZmI4MTNmOTg1ZDk5NDUxMw&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MzZnaHJlNHMxaHBkam40Zm9ydnNwOWFvcWQgcmlja0BtYXZyaXgub25l&amp;tok=MjEjam1laWxsb25AZHJvbmlzb3MuY29tZTM5OWZkNjRiNDE5N2U1MGQ4OWJlMGZiZmI4MTNmOTg1ZDk5NDUxMw&amp;ctz=Europe%2FParis&amp;hl=fr&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Autres options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation de <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Agenda</a></p><p>Vous recevez cet e-mail, car vous participez à l’événement.</p><p>En transférant cette invitation, vous risquez d’autoriser tous les destinataires à envoyer une réponse à l’organisateur, à être ajoutés à la liste des invités, à inviter d’autres personnes indépendamment de l’état de l’invitation qu’ils ont reçue, ou à modifier votre réponse à l’invitation. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">En savoir plus</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','Re: Introduction /  Rick Mislan - ICarus Swarm\r\nlundi 26 mai 2025 ⋅ 4pm – 5pm\r\nHeure d’Europe centrale - Paris\r\n\r\nParticiper avec Google Meet\r\nhttps://meet.google.com/jmy-gcsc-ast?hs=224\r\n\r\n\r\n	\r\nParticiper par téléphone\r\n(FR) +33 1 87 40 09 45\r\nCODE SECRET: 653393912\r\n\r\nPlus de numéros de téléphone\r\nhttps://tel.meet/jmy-gcsc-ast?pin=7588203748083&hs=0\r\n\r\n\r\nOrganisateur\r\nJean Meillon\r\njmeillon@dronisos.com\r\n\r\nInvités\r\nJean Meillon- organisateur\r\nrick@mavrix.one\r\njdlauwereins@icarusswarms.ai\r\nAfficher les informations sur tous les invités  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=MzZnaHJlNHMxaHBkam40Zm9ydnNwOWFvcWQgcmlja0BtYXZyaXgub25l&tok=MjEjam1laWxsb25AZHJvbmlzb3MuY29tZTM5OWZkNjRiNDE5N2U1MGQ4OWJlMGZiZmI4MTNmOTg1ZDk5NDUxMw&ctz=Europe%2FParis&hl=fr&es=0\r\n\r\nRépondre pour rick@mavrix.one et afficher plus de détails :  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=MzZnaHJlNHMxaHBkam40Zm9ydnNwOWFvcWQgcmlja0BtYXZyaXgub25l&tok=MjEjam1laWxsb25AZHJvbmlzb3MuY29tZTM5OWZkNjRiNDE5N2U1MGQ4OWJlMGZiZmI4MTNmOTg1ZDk5NDUxMw&ctz=Europe%2FParis&hl=fr&es=0\r\nVotre participation est facultative.\r\n\r\n~~//~~\r\nInvitation de Google Agenda : https://calendar.google.com/calendar/\r\n\r\nVous recevez cet e-mail, car vous participez à l’événement.\r\n\r\nEn transférant cette invitation, vous risquez d’autoriser tous les  \r\ndestinataires à envoyer une réponse à l’organisateur, à être ajoutés à la  \r\nliste des invités, à inviter d’autres personnes indépendamment de l’état de  \r\nl’invitation qu’ils ont reçue, ou à modifier votre réponse à l’invitation.\r\n\r\nEn savoir plus https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-05-21 05:51:06','2025-12-09 19:03:06','2025-12-09 19:03:06','2025-12-09 19:03:06',NULL,NULL,NULL),
(264,4,' <CH3PR22MB4418E3629E024AFE02B4CF35A29EA@CH3PR22MB4418.namprd22.prod.outlook.com>',NULL,NULL,'Mavrix review','Chris@buildmo.com','Chris Sargent','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n</head>\r\n<body>\r\n<div dir=\"ltr\">Review of Mavrix</div>\r\n<div dir=\"ltr\" id=\"mail-editor-reference-message-container\" class=\"ms-outlook-mobile-reference-message\">\r\n</div>\r\n<br>\r\n<div style=\"max-width: 600px; color: #242424; font-family:\'Segoe UI\',\'Helvetica Neue\',Helvetica,Arial,sans-serif\" class=\"me-email-text\">\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n<div style=\"margin-bottom: 12px;\"><span class=\"me-email-text\" style=\"font-size: 24px;font-weight: 700; margin-right:12px;\">Microsoft Teams</span>\r\n<a id=\"meet_invite_block.action.help\" class=\"me-email-link\" style=\"font-size:14px; text-decoration:underline; color: #5B5FC7;\" href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\">\r\nNeed help?</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><a id=\"meet_invite_block.action.join_link\" title=\"Meeting join link\" class=\"me-email-headline\" style=\"font-size: 20px; font-weight:600; text-decoration: underline; color: #5B5FC7;\" href=\"https://teams.microsoft.com/l/meetup-join/19%3ameeting_M2FlOTQ1OGMtYzg4OC00OGQ2LTg0ZjMtNWUxM2IwOTk4MmRi%40thread.v2/0?context=%7b%22Tid%22%3a%22eb89ee6f-fe71-493b-ae11-557a65d1f2ac%22%2c%22Oid%22%3a%22af5fd021-7cab-412d-a676-9e48475091f7%22%7d\" target=\"_blank\" rel=\"noreferrer noopener\">Join\r\n the meeting now</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Meeting ID:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">285 605 989 083 8</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Passcode:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">84Pj9rc6</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px; max-width: 532px;\">\r\n<hr style=\"border: 0; background: #D1D1D1; height: 1px;\">\r\n</div>\r\n<div>\r\n<div style=\"margin-bottom: 6px;\"><span class=\"me-email-text\" style=\"font-size: 16px; color: #242424; font-weight: 600; margin-right: 4px;\">Dial in by phone</span>\r\n</div>\r\n<div style=\"margin-bottom: 6px;\"><a id=\"meet_invite_block.action.join_phone_number1\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7; margin-right: 6px;\" href=\"tel:+12762432011,,994378831#\">+1 276-243-2011,,994378831#</a>\r\n<span class=\"me-email-text\" style=\"font-size: 14px; color: #616161;\">United States, Marion</span>\r\n</div>\r\n<div style=\"margin-bottom: 6px;\"><a id=\"meet_invite_block.action.join_phone_find_local_number\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7\" href=\"https://dialin.teams.microsoft.com/89b235b5-9b43-4da1-9737-2f6ee26e72d4?id=994378831\">Find\r\n a local number</a> </div>\r\n</div>\r\n<div style=\"margin-bottom: 24px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Phone conference ID:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">994 378 831#</span>\r\n</div>\r\n<div><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">For organizers:\r\n</span><a id=\"meet_invite_block.action.organizer_meet_options\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7;\" target=\"_blank\" href=\"https://teams.microsoft.com/meetingOptions/?organizerId=af5fd021-7cab-412d-a676-9e48475091f7&amp;tenantId=eb89ee6f-fe71-493b-ae11-557a65d1f2ac&amp;threadId=19_meeting_M2FlOTQ1OGMtYzg4OC00OGQ2LTg0ZjMtNWUxM2IwOTk4MmRi@thread.v2&amp;messageId=0&amp;language=en-US\" rel=\"noreferrer noopener\">Meeting\r\n options</a> <span style=\"color: #D1D1D1\">|</span> <a id=\"meet_invite_block.action.organizer_reset_dialin_pin\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7;\" target=\"_blank\" href=\"https://dialin.teams.microsoft.com/usp/pstnconferencing\" rel=\"noreferrer noopener\">\r\nReset dial-in PIN</a> </div>\r\n<div style=\"margin-top: 24px; margin-bottom: 6px;\"></div>\r\n<div style=\"margin-bottom: 24px;\"></div>\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n</div>\r\n</body>\r\n</html>','Review of Mavrix\r\n\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://teams.microsoft.com/l/meetup-join/19%3ameeting_M2FlOTQ1OGMtYzg4OC00OGQ2LTg0ZjMtNWUxM2IwOTk4MmRi%40thread.v2/0?context=%7b%22Tid%22%3a%22eb89ee6f-fe71-493b-ae11-557a65d1f2ac%22%2c%22Oid%22%3a%22af5fd021-7cab-412d-a676-9e48475091f7%22%7d>\r\nMeeting ID: 285 605 989 083 8\r\nPasscode: 84Pj9rc6\r\n________________________________\r\nDial in by phone\r\n+1 276-243-2011,,994378831#<tel:+12762432011,,994378831#> United States, Marion\r\nFind a local number<https://dialin.teams.microsoft.com/89b235b5-9b43-4da1-9737-2f6ee26e72d4?id=994378831>\r\nPhone conference ID: 994 378 831#\r\nFor organizers: Meeting options<https://teams.microsoft.com/meetingOptions/?organizerId=af5fd021-7cab-412d-a676-9e48475091f7&tenantId=eb89ee6f-fe71-493b-ae11-557a65d1f2ac&threadId=19_meeting_M2FlOTQ1OGMtYzg4OC00OGQ2LTg0ZjMtNWUxM2IwOTk4MmRi@thread.v2&messageId=0&language=en-US> | Reset dial-in PIN<https://dialin.teams.microsoft.com/usp/pstnconferencing>\r\n________________________________________________________________________________',0,0,0,0,0,0,'2025-05-21 12:29:40','2025-12-09 19:03:06','2025-12-09 19:03:06','2025-12-09 19:03:06',NULL,NULL,NULL),
(265,4,'<CAP1B=smBKH91B5H6K8rLqyjMpONatLHPJKopjdAvxwCumH5fCw@mail.gmail.com>',NULL,NULL,'Re: Thank You for Connecting at SOF Week','charles.phillips@orqafpv.com','Charles Phillips','<div dir=\"auto\">Rick,</div><div dir=\"auto\"><br></div><div dir=\"auto\">Are you referring to EST below?</div><div dir=\"auto\"><br></div><div dir=\"auto\">Regards,</div><div dir=\"auto\"><br></div><div dir=\"auto\">Charles</div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, May 20, 2025 at 7:57 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\">\r\n    <div id=\"m_9205091688542381711bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Gentlemen,</div><div id=\"m_9205091688542381711bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\"><div id=\"m_9205091688542381711bloop_customfont\" style=\"margin:0px\"><br></div><div id=\"m_9205091688542381711bloop_customfont\" style=\"margin:0px\"><a href=\"http://airmail.calendar/2025-05-27%2008:00:00%20EDT\" style=\"word-break:break-word\" target=\"_blank\">Tuesday 8-9</a>,1-3 are currently open.</div><div id=\"m_9205091688542381711bloop_customfont\" style=\"margin:0px\">and Wednesday is wide open.</div><div id=\"m_9205091688542381711bloop_customfont\" style=\"margin:0px\"><br></div><div id=\"m_9205091688542381711bloop_customfont\" style=\"margin:0px\">Please let me know what works best for you.</div><div id=\"m_9205091688542381711bloop_customfont\" style=\"margin:0px\"><br></div><div id=\"m_9205091688542381711bloop_customfont\" style=\"margin:0px\">Looking forward to catching up!</div><div id=\"m_9205091688542381711bloop_customfont\" style=\"margin:0px\">Thank you,<br></div></div> Rick<div><br> <div id=\"m_9205091688542381711bloop_sign_1747788949242577920\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height:11px\"></div>\r\n     \r\n</div> <br></div><div><p>On May 20, 2025 at 6:26:51 PM, Charles Phillips (<a href=\"mailto:charles.phillips@orqafpv.com\" target=\"_blank\">charles.phillips@orqafpv.com</a>) wrote:</p> </div><div><blockquote type=\"cite\"><span><div><div></div><div></div></div></span></blockquote></div><div><blockquote type=\"cite\"><span><div><div><div dir=\"auto\">Rick,</div><div dir=\"auto\"><br></div><div dir=\"auto\">I was waiting to hear back from you regarding open dates. What dates work for you next week?</div><div dir=\"auto\"><br></div><div dir=\"auto\">Regards,</div><div dir=\"auto\"><br></div><div dir=\"auto\">Charles Phillips </div><div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, May 20, 2025 at 3:00 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\">\r\n    <div id=\"m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Gentlemen,</div><div id=\"m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">I am reaching out to schedule a call with you for next week</div><div id=\"m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">to follow up on the conversation Charles and I had during SOF Week.</div><div id=\"m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\"><br></div><div id=\"m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Please let me know your interest and availability.</div><div id=\"m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\"><br></div><div id=\"m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Thank you,</div><div id=\"m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Rick</div><div id=\"m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\"><br></div> <div id=\"m_9205091688542381711m_7908639273750937061bloop_sign_1747771088106214912\">\r\n         \r\n      \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height:11px\"></div>\r\n      \r\n</div> <br><p>On May 8, 2025 at 3:14:43 PM, Rick (<a href=\"mailto:rick@mavrix.one\" target=\"_blank\">rick@mavrix.one</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div>\r\n    <div id=\"m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Hi Charles,<br></div><div><br></div><div><div>Thank you again for your time yesterday on the yacht.</div><div>It was a pleasure meeting you in person. </div><div>I appreciated the opportunity to connect and </div><div>share more about MAVRIX and the work we&#39;re doing.<br></div><div><br></div><div>I&#39;ll be meeting with my team later today and </div><div>will follow up to schedule something for next week </div><div>so we can continue the conversation and </div><div>explore potential next steps.</div></div><div><div><br></div><div><div>Also, I want to take a moment to share </div><div>how impressed I was with Bryan Sardoch.</div><div>His ability to clearly articulate ORQA’s capabilities, </div><div>along with the TTPs he employs in theater, really stood out. </div><div>His depth of knowledge and firsthand experience brought </div><div>a level of authenticity that resonated with the soldiers who stopped by. </div><div>He’s a tremendous asset to ORQA </div><div>and a strong identity for the brand.</div><div><br></div></div><div><div>Looking forward to reconnecting soon. </div><div>I’ll send over some open dates shortly.</div><div><br></div></div><div>Respectfully,</div></div><div>Rick</div><div id=\"m_9205091688542381711m_7908639273750937061bloop_sign_1746731112679679744\"></div>\r\n\r\n\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div></div>\r\n\r\n<br>\r\n</div></div></span></blockquote></div><div><blockquote type=\"cite\"><span><div><div><font size=\"1\">This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Orqa Holding Group liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted.</font><br></div></div></span></blockquote>\r\n\r\n\r\n</div></blockquote></div></div>\r\n\r\n<br>\r\n<font size=\"1\">This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Orqa Holding Group liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted.</font><br>','Rick,\r\n\r\nAre you referring to EST below?\r\n\r\nRegards,\r\n\r\nCharles\r\n\r\nOn Tue, May 20, 2025 at 7:57 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> Gentlemen,\r\n>\r\n> Tuesday 8-9 <http://airmail.calendar/2025-05-27%2008:00:00%20EDT>,1-3 are\r\n> currently open.\r\n> and Wednesday is wide open.\r\n>\r\n> Please let me know what works best for you.\r\n>\r\n> Looking forward to catching up!\r\n> Thank you,\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On May 20, 2025 at 6:26:51 PM, Charles Phillips (\r\n> charles.phillips@orqafpv.com) wrote:\r\n>\r\n> Rick,\r\n>\r\n> I was waiting to hear back from you regarding open dates. What dates work\r\n> for you next week?\r\n>\r\n> Regards,\r\n>\r\n> Charles Phillips\r\n>\r\n> On Tue, May 20, 2025 at 3:00 PM Rick <rick@mavrix.one> wrote:\r\n>\r\n>> Gentlemen,\r\n>> I am reaching out to schedule a call with you for next week\r\n>> to follow up on the conversation Charles and I had during SOF Week.\r\n>>\r\n>> Please let me know your interest and availability.\r\n>>\r\n>> Thank you,\r\n>> Rick\r\n>>\r\n>> Rick Mislan, PhD\r\n>> https://mavrix.one\r\n>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>\r\n>> On May 8, 2025 at 3:14:43 PM, Rick (rick@mavrix.one) wrote:\r\n>>\r\n>> Hi Charles,\r\n>>\r\n>> Thank you again for your time yesterday on the yacht.\r\n>> It was a pleasure meeting you in person.\r\n>> I appreciated the opportunity to connect and\r\n>> share more about MAVRIX and the work we\'re doing.\r\n>>\r\n>> I\'ll be meeting with my team later today and\r\n>> will follow up to schedule something for next week\r\n>> so we can continue the conversation and\r\n>> explore potential next steps.\r\n>>\r\n>> Also, I want to take a moment to share\r\n>> how impressed I was with Bryan Sardoch.\r\n>> His ability to clearly articulate ORQA’s capabilities,\r\n>> along with the TTPs he employs in theater, really stood out.\r\n>> His depth of knowledge and firsthand experience brought\r\n>> a level of authenticity that resonated with the soldiers who stopped by.\r\n>> He’s a tremendous asset to ORQA\r\n>> and a strong identity for the brand.\r\n>>\r\n>> Looking forward to reconnecting soon.\r\n>> I’ll send over some open dates shortly.\r\n>>\r\n>> Respectfully,\r\n>> Rick\r\n>>\r\n>>\r\n> This e-mail and the documents attached are confidential and intended\r\n> solely for the addressee; it may also be privileged. If you receive this\r\n> e-mail in error, please notify the sender immediately and destroy it. As\r\n> its integrity cannot be secured on the Internet, the Orqa Holding Group\r\n> liability cannot be triggered for the message content. Although the sender\r\n> endeavours to maintain a computer virus-free network, the sender does not\r\n> warrant that this transmission is virus-free and will not be liable for any\r\n> damages resulting from any virus transmitted.\r\n>\r\n>\r\n\r\n-- \r\nThis e-mail and the documents attached are confidential and intended solely \r\nfor the addressee; it may also be privileged. If you receive this e-mail in \r\nerror, please notify the sender immediately and destroy it. As its \r\nintegrity cannot be secured on the Internet, the Orqa Holding Group \r\nliability cannot be triggered for the message content. Although the sender \r\nendeavours to maintain a computer virus-free network, the sender does not \r\nwarrant that this transmission is virus-free and will not be liable for any \r\ndamages resulting from any virus transmitted.',0,0,0,0,0,0,'2025-05-21 13:14:12','2025-12-09 19:03:07','2025-12-09 19:03:07','2025-12-09 19:03:07',NULL,NULL,NULL),
(266,4,'<CAP1B=s=r9d30ap+NbbaHsS=K98S17p+ttOczbfKbYF9WKLa7qg@mail.gmail.com>',NULL,NULL,'Re: Thank You for Connecting at SOF Week','charles.phillips@orqafpv.com','Charles Phillips','<div dir=\"auto\">Rick,</div><div dir=\"auto\"><br></div><div dir=\"auto\">How about Wednesday at 11:30 am?</div><div dir=\"auto\"><br></div><div dir=\"auto\">Regards,</div><div dir=\"auto\"><br></div><div dir=\"auto\">Charles</div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, May 21, 2025 at 8:27 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\">\r\n    <div id=\"m_-6774134892025449968bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Yes, I’m in Rochester, NY.</div><div id=\"m_-6774134892025449968bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\"><br></div> <br> <div id=\"m_-6774134892025449968bloop_sign_1747833972160056064\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height:11px\"></div>\r\n     \r\n</div> <br><p>On May 21, 2025 at 9:15:07 AM, Charles Phillips (<a href=\"mailto:charles.phillips@orqafpv.com\" target=\"_blank\">charles.phillips@orqafpv.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"auto\">Rick,</div><div dir=\"auto\"><br></div><div dir=\"auto\">Are you referring to EST below?</div><div dir=\"auto\"><br></div><div dir=\"auto\">Regards,</div><div dir=\"auto\"><br></div><div dir=\"auto\">Charles</div><div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, May 20, 2025 at 7:57 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\">\r\n    <div id=\"m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Gentlemen,</div><div id=\"m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\"><div id=\"m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"margin:0px\"><br></div><div id=\"m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"margin:0px\"><a href=\"http://airmail.calendar/2025-05-27%2008:00:00%20EDT\" style=\"word-break:break-word\" target=\"_blank\">Tuesday 8-9</a>,1-3 are currently open.</div><div id=\"m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"margin:0px\">and Wednesday is wide open.</div><div id=\"m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"margin:0px\"><br></div><div id=\"m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"margin:0px\">Please let me know what works best for you.</div><div id=\"m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"margin:0px\"><br></div><div id=\"m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"margin:0px\">Looking forward to catching up!</div><div id=\"m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"margin:0px\">Thank you,<br></div></div> Rick<div><br> <div id=\"m_-6774134892025449968m_9205091688542381711bloop_sign_1747788949242577920\">\r\n         \r\n      \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height:11px\"></div>\r\n      \r\n</div> <br></div><div><p>On May 20, 2025 at 6:26:51 PM, Charles Phillips (<a href=\"mailto:charles.phillips@orqafpv.com\" target=\"_blank\">charles.phillips@orqafpv.com</a>) wrote:</p> </div><div><blockquote type=\"cite\"><span><div><div></div><div></div></div></span></blockquote></div><div><blockquote type=\"cite\"><span><div><div><div dir=\"auto\">Rick,</div><div dir=\"auto\"><br></div><div dir=\"auto\">I was waiting to hear back from you regarding open dates. What dates work for you next week?</div><div dir=\"auto\"><br></div><div dir=\"auto\">Regards,</div><div dir=\"auto\"><br></div><div dir=\"auto\">Charles Phillips </div><div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, May 20, 2025 at 3:00 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\">\r\n    <div id=\"m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Gentlemen,</div><div id=\"m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">I am reaching out to schedule a call with you for next week</div><div id=\"m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">to follow up on the conversation Charles and I had during SOF Week.</div><div id=\"m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\"><br></div><div id=\"m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Please let me know your interest and availability.</div><div id=\"m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\"><br></div><div id=\"m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Thank you,</div><div id=\"m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Rick</div><div id=\"m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\"><br></div> <div id=\"m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_sign_1747771088106214912\">\r\n          \r\n       \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height:11px\"></div>\r\n       \r\n</div> <br><p>On May 8, 2025 at 3:14:43 PM, Rick (<a href=\"mailto:rick@mavrix.one\" target=\"_blank\">rick@mavrix.one</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div>\r\n    <div id=\"m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Hi Charles,<br></div><div><br></div><div><div>Thank you again for your time yesterday on the yacht.</div><div>It was a pleasure meeting you in person. </div><div>I appreciated the opportunity to connect and </div><div>share more about MAVRIX and the work we&#39;re doing.<br></div><div><br></div><div>I&#39;ll be meeting with my team later today and </div><div>will follow up to schedule something for next week </div><div>so we can continue the conversation and </div><div>explore potential next steps.</div></div><div><div><br></div><div><div>Also, I want to take a moment to share </div><div>how impressed I was with Bryan Sardoch.</div><div>His ability to clearly articulate ORQA’s capabilities, </div><div>along with the TTPs he employs in theater, really stood out. </div><div>His depth of knowledge and firsthand experience brought </div><div>a level of authenticity that resonated with the soldiers who stopped by. </div><div>He’s a tremendous asset to ORQA </div><div>and a strong identity for the brand.</div><div><br></div></div><div><div>Looking forward to reconnecting soon. </div><div>I’ll send over some open dates shortly.</div><div><br></div></div><div>Respectfully,</div></div><div>Rick</div><div id=\"m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_sign_1746731112679679744\"></div>\r\n\r\n\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div></div>\r\n\r\n<br>\r\n</div></div></span></blockquote></div><div><blockquote type=\"cite\"><span><div><div><font size=\"1\">This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Orqa Holding Group liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted.</font><br></div></div></span></blockquote>\r\n\r\n\r\n</div></blockquote></div></div>\r\n\r\n<br>\r\n<font size=\"1\">This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Orqa Holding Group liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted.</font><br></div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div></div>\r\n\r\n<br>\r\n<font size=\"1\">This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Orqa Holding Group liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted.</font><br>','Rick,\r\n\r\nHow about Wednesday at 11:30 am?\r\n\r\nRegards,\r\n\r\nCharles\r\n\r\nOn Wed, May 21, 2025 at 8:27 AM Rick <rick@mavrix.one> wrote:\r\n\r\n> Yes, I’m in Rochester, NY.\r\n>\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On May 21, 2025 at 9:15:07 AM, Charles Phillips (\r\n> charles.phillips@orqafpv.com) wrote:\r\n>\r\n> Rick,\r\n>\r\n> Are you referring to EST below?\r\n>\r\n> Regards,\r\n>\r\n> Charles\r\n>\r\n> On Tue, May 20, 2025 at 7:57 PM Rick <rick@mavrix.one> wrote:\r\n>\r\n>> Gentlemen,\r\n>>\r\n>> Tuesday 8-9 <http://airmail.calendar/2025-05-27%2008:00:00%20EDT>,1-3\r\n>> are currently open.\r\n>> and Wednesday is wide open.\r\n>>\r\n>> Please let me know what works best for you.\r\n>>\r\n>> Looking forward to catching up!\r\n>> Thank you,\r\n>> Rick\r\n>>\r\n>> Rick Mislan, PhD\r\n>> https://mavrix.one\r\n>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>\r\n>> On May 20, 2025 at 6:26:51 PM, Charles Phillips (\r\n>> charles.phillips@orqafpv.com) wrote:\r\n>>\r\n>> Rick,\r\n>>\r\n>> I was waiting to hear back from you regarding open dates. What dates work\r\n>> for you next week?\r\n>>\r\n>> Regards,\r\n>>\r\n>> Charles Phillips\r\n>>\r\n>> On Tue, May 20, 2025 at 3:00 PM Rick <rick@mavrix.one> wrote:\r\n>>\r\n>>> Gentlemen,\r\n>>> I am reaching out to schedule a call with you for next week\r\n>>> to follow up on the conversation Charles and I had during SOF Week.\r\n>>>\r\n>>> Please let me know your interest and availability.\r\n>>>\r\n>>> Thank you,\r\n>>> Rick\r\n>>>\r\n>>> Rick Mislan, PhD\r\n>>> https://mavrix.one\r\n>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>\r\n>>> On May 8, 2025 at 3:14:43 PM, Rick (rick@mavrix.one) wrote:\r\n>>>\r\n>>> Hi Charles,\r\n>>>\r\n>>> Thank you again for your time yesterday on the yacht.\r\n>>> It was a pleasure meeting you in person.\r\n>>> I appreciated the opportunity to connect and\r\n>>> share more about MAVRIX and the work we\'re doing.\r\n>>>\r\n>>> I\'ll be meeting with my team later today and\r\n>>> will follow up to schedule something for next week\r\n>>> so we can continue the conversation and\r\n>>> explore potential next steps.\r\n>>>\r\n>>> Also, I want to take a moment to share\r\n>>> how impressed I was with Bryan Sardoch.\r\n>>> His ability to clearly articulate ORQA’s capabilities,\r\n>>> along with the TTPs he employs in theater, really stood out.\r\n>>> His depth of knowledge and firsthand experience brought\r\n>>> a level of authenticity that resonated with the soldiers who stopped by.\r\n>>> He’s a tremendous asset to ORQA\r\n>>> and a strong identity for the brand.\r\n>>>\r\n>>> Looking forward to reconnecting soon.\r\n>>> I’ll send over some open dates shortly.\r\n>>>\r\n>>> Respectfully,\r\n>>> Rick\r\n>>>\r\n>>>\r\n>> This e-mail and the documents attached are confidential and intended\r\n>> solely for the addressee; it may also be privileged. If you receive this\r\n>> e-mail in error, please notify the sender immediately and destroy it. As\r\n>> its integrity cannot be secured on the Internet, the Orqa Holding Group\r\n>> liability cannot be triggered for the message content. Although the sender\r\n>> endeavours to maintain a computer virus-free network, the sender does not\r\n>> warrant that this transmission is virus-free and will not be liable for any\r\n>> damages resulting from any virus transmitted.\r\n>>\r\n>>\r\n> This e-mail and the documents attached are confidential and intended\r\n> solely for the addressee; it may also be privileged. If you receive this\r\n> e-mail in error, please notify the sender immediately and destroy it. As\r\n> its integrity cannot be secured on the Internet, the Orqa Holding Group\r\n> liability cannot be triggered for the message content. Although the sender\r\n> endeavours to maintain a computer virus-free network, the sender does not\r\n> warrant that this transmission is virus-free and will not be liable for any\r\n> damages resulting from any virus transmitted.\r\n>\r\n>\r\n\r\n-- \r\nThis e-mail and the documents attached are confidential and intended solely \r\nfor the addressee; it may also be privileged. If you receive this e-mail in \r\nerror, please notify the sender immediately and destroy it. As its \r\nintegrity cannot be secured on the Internet, the Orqa Holding Group \r\nliability cannot be triggered for the message content. Although the sender \r\nendeavours to maintain a computer virus-free network, the sender does not \r\nwarrant that this transmission is virus-free and will not be liable for any \r\ndamages resulting from any virus transmitted.',0,0,0,0,0,0,'2025-05-21 13:33:29','2025-12-09 19:03:07','2025-12-09 19:03:07','2025-12-09 19:03:07',NULL,NULL,NULL),
(267,4,'<CA+8Nfa=0Y+cHyCbhFVObOiKDeZ80T=h7CgwCbyB-+Mh4-T=okg@mail.gmail.com>',NULL,NULL,'Re: Seen these?','vaniere@deafllc.com','Elias Vanier','<div dir=\"ltr\">We actually looked into their drones earlier this year. It&#39;s expensive but it works depending on the application. The only downside is they don&#39;t have much gpu power and dont have lidar which means it won&#39;t be as good at self positioning and navigation. It has 15 Tops we want closer to 30 Tops.<div><br></div></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, May 21, 2025 at 8:54 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div id=\"m_4347613684814366365bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><a href=\"https://www.modalai.com/collections/built-in-the-usa\" target=\"_blank\">https://www.modalai.com/collections/built-in-the-usa</a><br></div><div id=\"m_4347613684814366365bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thoughts?</div><br><div id=\"m_4347613684814366365bloop_sign_1747832041762334720\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div>\r\n\r\n\r\n</blockquote></div>','We actually looked into their drones earlier this year. It\'s expensive but\r\nit works depending on the application. The only downside is they don\'t have\r\nmuch gpu power and dont have lidar which means it won\'t be as good at self\r\npositioning and navigation. It has 15 Tops we want closer to 30 Tops.\r\n\r\n\r\nOn Wed, May 21, 2025 at 8:54 AM Rick <rick@mavrix.one> wrote:\r\n\r\n> https://www.modalai.com/collections/built-in-the-usa\r\n> Thoughts?\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>',0,0,0,0,0,0,'2025-05-21 14:10:44','2025-12-09 19:03:08','2025-12-09 19:03:08','2025-12-09 19:03:08',NULL,NULL,NULL),
(268,4,'<CA+8NfanABN02jThfRUfXP+XQr+1yhJp9MZrw_+GKH67J+f1tQQ@mail.gmail.com>',NULL,NULL,'Re: Stinger?','vaniere@deafllc.com','Elias Vanier','<div dir=\"ltr\">After briefly speaking with my brother, if we can get something as powerful as the nvidia jetson nano we will be set for the long term. But the key thing we need is CUDA to run the PyTorch models.</div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, May 21, 2025 at 10:04 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div id=\"m_3619145685701241305bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><br></div><div id=\"m_3619145685701241305bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Perfect thanks…</div><div id=\"m_3619145685701241305bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">The voxl2 mini… </div><div id=\"m_3619145685701241305bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">is that something our electronics guy could build a version for us then (a better one)…</div><div id=\"m_3619145685701241305bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><br></div> <br> <div id=\"m_3619145685701241305bloop_sign_1747836099987948032\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div> <br><p>On May 21, 2025 at 9:53:29 AM, Elias Vanier (<a href=\"mailto:vaniere@deafllc.com\" target=\"_blank\">vaniere@deafllc.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\">So their base components are that of a cine-whoop ( examples:<a href=\"https://www.racedayquads.com/products/sub250-huma20-2-drone-hd-w-dji-o4-pro\" target=\"_blank\">2in drone with digital fpv</a>, <a href=\"https://www.racedayquads.com/products/lumenier-qav-pro-vier-whoop-4-cinequads-edition-frame-kit?pr_prod_strat=e5_desc&amp;pr_rec_id=763066fac&amp;pr_rec_pid=7261482614897&amp;pr_ref_pid=7006690541681&amp;pr_seq=uniform\" target=\"_blank\">Frame example</a>).  They are unique with 3 features: 1: Their MVX FPV streaming (US made), which is analog video. DJI, walksnail and other fpv streaming companies are now using digital FPV feed (<a href=\"https://www.dji.com/o3-air-unit\" target=\"_blank\">DJI O3</a>: scroll down there is a comparison between digital and analog). 2. Their VOXL2 mini which is their NUC replacement. 3. \r\n\r\nComputer-Vision assisted Position\r\nMode in GPS-denied Environments. This feature is basically only as good as the pilot is at flying, thus skill becomes the limiting factor. In the demo video provided on the website shows a rather shaky video which shows that whoever is flying it is not going to be good enough to do evasive maneuvers if confronted. (The backtrack feature is probably not very good either if the demo video is indicative of the performance)<div><br></div><div>We are different in that:</div><div>The drone flies autonomously without any direct control of the operator (no skills in fpv flying needed) and simultaneously avoids obstacles without operator intervention. We also use swarm intelligence which allows multiple drones to fly at once, complete specialized tasks and share information between each other to assist with navigation and data mapping. Also, adding video to the drone is really straightforward and simple. We can add head tracking to the cameras, so that when the drone is loitering or patroling you can move your head in real time to look around. We did this earlier this year already when prototyping the warehouse drones. <a href=\"https://www.dropbox.com/scl/fi/heiiqux26nxn6j7n7knlo/IMG_4319.mov?rlkey=tmv824rxuc4u93k8wq7nx65to&amp;st=wn5s38i9&amp;dl=0\" target=\"_blank\">example head tracking</a></div><div><div> <br><div><div><br></div><div><br></div><div>Sorry if there is broken english or if sentences aren&#39;t structured properly, I just want to get this out to you fast.</div><div>With regards,</div><div>Elias Vanier</div><div><br></div></div></div></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, May 21, 2025 at 6:39 AM Rick Mislan , PhD &lt;<a href=\"mailto:rick@mislan.com\" target=\"_blank\">rick@mislan.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\"><a href=\"https://www.modalai.com/products/stinger-vision-fpv?variant=48373207695664\" target=\"_blank\">https://www.modalai.com/products/stinger-vision-fpv?variant=48373207695664</a><br></div><div style=\"font-family:Helvetica,Arial;font-size:13px\">What makes this Stinger worth $3K? (Cameras?)</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">And how will ours be better?</div>Thanks,<div>Rick<br><div class=\"gmail_signature\"><div><br></div><div><br style=\"font-family:&quot;helvetica Neue&quot;,helvetica;font-size:14px\"><div class=\"gmail_signature\" style=\"font-family:&quot;helvetica Neue&quot;,helvetica;font-size:14px\">Rick Mislan, PhD<div><a href=\"http://www.mislan.com/\" style=\"word-break:break-word\" target=\"_blank\">www.mislan.com</a></div><div><a href=\"tel://(585)%20797-9473\" style=\"word-break:break-word\" target=\"_blank\">(585) 797-9473</a></div></div></div></div>\r\n\r\n\r\n</div></blockquote></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div>','After briefly speaking with my brother, if we can get something as\r\npowerful as the nvidia jetson nano we will be set for the long term. But\r\nthe key thing we need is CUDA to run the PyTorch models.\r\n\r\nOn Wed, May 21, 2025 at 10:04 AM Rick <rick@mavrix.one> wrote:\r\n\r\n>\r\n> Perfect thanks…\r\n> The voxl2 mini…\r\n> is that something our electronics guy could build a version for us then (a\r\n> better one)…\r\n>\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On May 21, 2025 at 9:53:29 AM, Elias Vanier (vaniere@deafllc.com) wrote:\r\n>\r\n> So their base components are that of a cine-whoop ( examples:2in drone\r\n> with digital fpv\r\n> <https://www.racedayquads.com/products/sub250-huma20-2-drone-hd-w-dji-o4-pro>\r\n> , Frame example\r\n> <https://www.racedayquads.com/products/lumenier-qav-pro-vier-whoop-4-cinequads-edition-frame-kit?pr_prod_strat=e5_desc&pr_rec_id=763066fac&pr_rec_pid=7261482614897&pr_ref_pid=7006690541681&pr_seq=uniform>).\r\n> They are unique with 3 features: 1: Their MVX FPV streaming (US made),\r\n> which is analog video. DJI, walksnail and other fpv streaming companies are\r\n> now using digital FPV feed (DJI O3 <https://www.dji.com/o3-air-unit>:\r\n> scroll down there is a comparison between digital and analog). 2. Their\r\n> VOXL2 mini which is their NUC replacement. 3.  Computer-Vision assisted\r\n> Position Mode in GPS-denied Environments. This feature is basically only as\r\n> good as the pilot is at flying, thus skill becomes the limiting factor. In\r\n> the demo video provided on the website shows a rather shaky video which\r\n> shows that whoever is flying it is not going to be good enough to do\r\n> evasive maneuvers if confronted. (The backtrack feature is probably not\r\n> very good either if the demo video is indicative of the performance)\r\n>\r\n> We are different in that:\r\n> The drone flies autonomously without any direct control of the operator\r\n> (no skills in fpv flying needed) and simultaneously avoids obstacles\r\n> without operator intervention. We also use swarm intelligence which allows\r\n> multiple drones to fly at once, complete specialized tasks and share\r\n> information between each other to assist with navigation and data mapping.\r\n> Also, adding video to the drone is really straightforward and simple. We\r\n> can add head tracking to the cameras, so that when the drone is\r\n> loitering or patroling you can move your head in real time to look around.\r\n> We did this earlier this year already when prototyping the warehouse\r\n> drones. example head tracking\r\n> <https://www.dropbox.com/scl/fi/heiiqux26nxn6j7n7knlo/IMG_4319.mov?rlkey=tmv824rxuc4u93k8wq7nx65to&st=wn5s38i9&dl=0>\r\n>\r\n>\r\n>\r\n> Sorry if there is broken english or if sentences aren\'t structured\r\n> properly, I just want to get this out to you fast.\r\n> With regards,\r\n> Elias Vanier\r\n>\r\n>\r\n> On Wed, May 21, 2025 at 6:39 AM Rick Mislan , PhD <rick@mislan.com> wrote:\r\n>\r\n>> https://www.modalai.com/products/stinger-vision-fpv?variant=48373207695664\r\n>> What makes this Stinger worth $3K? (Cameras?)\r\n>> And how will ours be better?\r\n>> Thanks,\r\n>> Rick\r\n>>\r\n>>\r\n>> Rick Mislan, PhD\r\n>> www.mislan.com\r\n>> (585) 797-9473 <//(585)%20797-9473>\r\n>>\r\n>',0,0,0,0,0,0,'2025-05-21 14:17:22','2025-12-09 19:03:08','2025-12-09 19:03:08','2025-12-09 19:03:08',NULL,NULL,NULL),
(269,4,'<CA+8NfamnUnaOs51NC8L_AQ1rQvDv+2KmnATjS_twTdW3H3X-OQ@mail.gmail.com>',NULL,NULL,'Re: Stinger?','vaniere@deafllc.com','Elias Vanier','<div dir=\"ltr\"><a href=\"https://www.arrow.com/en/products/900-13767-0030-000/nvidia?utm_source=nvidia\">https://www.arrow.com/en/products/900-13767-0030-000/nvidia?utm_source=nvidia</a> its $249 and would be much better than the Voxlmini 2 and would allow us to do everything we need.<div>We can also use <a href=\"https://www.arrow.com/en/products/900-13767-0010-000/nvidia?utm_source=nvidia\">https://www.arrow.com/en/products/900-13767-0010-000/nvidia?utm_source=nvidia</a> if we need more computational power.</div><div><br></div><div><a href=\"https://www.nvidia.com/en-us/autonomous-machines/embedded-systems/jetson-nano/product-development/\">https://www.nvidia.com/en-us/autonomous-machines/embedded-systems/jetson-nano/product-development/</a> ---- additional info on the Jetson nano</div></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, May 21, 2025 at 10:25 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div id=\"m_540892006357320121bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Link with price...</div> <br> <div id=\"m_540892006357320121bloop_sign_1747837521024139008\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div> <br><p>On May 21, 2025 at 10:11:18 AM, Elias Vanier (<a href=\"mailto:vaniere@deafllc.com\" target=\"_blank\">vaniere@deafllc.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><span style=\"color:rgb(0,0,0);font-family:UICTFontTextStyleBody;font-size:14px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration:none;float:none;display:inline\"><span> </span>CUDA to run the PyTorch</span></div></span></blockquote>\r\n\r\n\r\n</blockquote></div>','https://www.arrow.com/en/products/900-13767-0030-000/nvidia?utm_source=nvidia\r\nits\r\n$249 and would be much better than the Voxlmini 2 and would allow us to do\r\neverything we need.\r\nWe can also use\r\nhttps://www.arrow.com/en/products/900-13767-0010-000/nvidia?utm_source=nvidia\r\nif\r\nwe need more computational power.\r\n\r\nhttps://www.nvidia.com/en-us/autonomous-machines/embedded-systems/jetson-nano/product-development/\r\n----\r\nadditional info on the Jetson nano\r\n\r\nOn Wed, May 21, 2025 at 10:25 AM Rick <rick@mavrix.one> wrote:\r\n\r\n> Link with price...\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On May 21, 2025 at 10:11:18 AM, Elias Vanier (vaniere@deafllc.com) wrote:\r\n>\r\n>  CUDA to run the PyTorch\r\n>\r\n>',0,0,0,0,0,0,'2025-05-21 14:55:22','2025-12-09 19:03:08','2025-12-09 19:03:08','2025-12-09 19:03:08',NULL,NULL,NULL),
(270,4,' <DM6PR07MB5850D3D7DF90B0F7FB1F28C3AD9EA@DM6PR07MB5850.namprd07.prod.outlook.com>',NULL,NULL,'Drone Sync','rich@achramlabs.com','Richard Van Voorst','<html xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;\r\n	panose-1:2 11 0 4 2 2 2 2 2 4;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle17\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Looking forward to it Rick!<br>\r\n<br>\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Rich<o:p></o:p></span></p>\r\n</div>\r\n<br>\r\n<div style=\"max-width: 600px; color: #242424; font-family:\'Segoe UI\',\'Helvetica Neue\',Helvetica,Arial,sans-serif\" class=\"me-email-text\">\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n<div style=\"margin-bottom: 12px;\"><span class=\"me-email-text\" style=\"font-size: 24px;font-weight: 700; margin-right:12px;\">Microsoft Teams</span>\r\n<a id=\"meet_invite_block.action.help\" class=\"me-email-link\" style=\"font-size:14px; text-decoration:underline; color: #5B5FC7;\" href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\">\r\nNeed help?</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><a id=\"meet_invite_block.action.join_link\" title=\"Meeting join link\" class=\"me-email-headline\" style=\"font-size: 20px; font-weight:600; text-decoration: underline; color: #5B5FC7;\" href=\"https://teams.microsoft.com/l/meetup-join/19%3ameeting_NTU5YTExODAtMDllYi00ZTcyLWE2YTAtNzk4NDExNjg2NTVj%40thread.v2/0?context=%7b%22Tid%22%3a%220930a80e-2157-43f6-aeeb-8cd66ff956b1%22%2c%22Oid%22%3a%22ed6fbfe0-0b33-4893-8efe-ef687ac31ad7%22%7d\" target=\"_blank\" rel=\"noreferrer noopener\">Join\r\n the meeting now</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Meeting ID:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">273 425 292 913 7</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Passcode:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">kn96PR28</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px; max-width: 532px;\">\r\n<hr style=\"border: 0; background: #D1D1D1; height: 1px;\">\r\n</div>\r\n<div><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">For organizers:\r\n</span><a id=\"meet_invite_block.action.organizer_meet_options\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7;\" target=\"_blank\" href=\"https://teams.microsoft.com/meetingOptions/?organizerId=ed6fbfe0-0b33-4893-8efe-ef687ac31ad7&amp;tenantId=0930a80e-2157-43f6-aeeb-8cd66ff956b1&amp;threadId=19_meeting_NTU5YTExODAtMDllYi00ZTcyLWE2YTAtNzk4NDExNjg2NTVj@thread.v2&amp;messageId=0&amp;language=en-US\" rel=\"noreferrer noopener\">Meeting\r\n options</a> </div>\r\n<div style=\"margin-top: 24px; margin-bottom: 6px;\"></div>\r\n<div style=\"margin-bottom: 24px;\"></div>\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n</div>\r\n</body>\r\n</html>','Looking forward to it Rick!\r\n\r\nRich\r\n\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://teams.microsoft.com/l/meetup-join/19%3ameeting_NTU5YTExODAtMDllYi00ZTcyLWE2YTAtNzk4NDExNjg2NTVj%40thread.v2/0?context=%7b%22Tid%22%3a%220930a80e-2157-43f6-aeeb-8cd66ff956b1%22%2c%22Oid%22%3a%22ed6fbfe0-0b33-4893-8efe-ef687ac31ad7%22%7d>\r\nMeeting ID: 273 425 292 913 7\r\nPasscode: kn96PR28\r\n________________________________\r\nFor organizers: Meeting options<https://teams.microsoft.com/meetingOptions/?organizerId=ed6fbfe0-0b33-4893-8efe-ef687ac31ad7&tenantId=0930a80e-2157-43f6-aeeb-8cd66ff956b1&threadId=19_meeting_NTU5YTExODAtMDllYi00ZTcyLWE2YTAtNzk4NDExNjg2NTVj@thread.v2&messageId=0&language=en-US>\r\n________________________________________________________________________________',0,0,0,0,0,0,'2025-05-21 14:55:05','2025-12-09 19:03:09','2025-12-09 19:03:09','2025-12-09 19:03:09',NULL,NULL,NULL),
(271,4,' <DM6PR07MB5850A920E6C2899E81AE8F57AD9EA@DM6PR07MB5850.namprd07.prod.outlook.com>',NULL,NULL,'Re: Next steps?','rich@achramlabs.com','Richard Van Voorst','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:0 0 0 0 0 0 0 0 0 0;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;\r\n	panose-1:2 11 0 4 2 2 2 2 2 4;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:10.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle19\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Hey Rick,<br>\r\n<br>\r\nI sent the meeting invite. I’m looking forward to taking a tech deep dive with you! Here is our MNDA if you are willing to sign it, we can head down that road. If you have questions let me know.\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">Talk soon,<br>\r\n<br>\r\nRich<br>\r\n<br>\r\n--&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">Achram Labs | CEO<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">e. <a href=\"mailto:rich@achramlabs.com\">\r\n<span style=\"color:#467886\">rich@achramlabs.com</span></a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">c. 813.334.5104</span><span style=\"font-size:11.0pt\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div id=\"mail-editor-reference-message-container\">\r\n<div>\r\n<div>\r\n<div style=\"border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\"><b><span style=\"font-size:12.0pt;color:black\">From:\r\n</span></b><span style=\"font-size:12.0pt;color:black\">Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Date: </b>Tuesday, May 20, 2025 at 8:43</span><span style=\"font-size:12.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"font-size:12.0pt;color:black\">PM<br>\r\n<b>To: </b>Richard Van Voorst &lt;rich@achramlabs.com&gt;<br>\r\n<b>Subject: </b>Re: Next steps?<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Monday and Tuesday 8-10 and 1-3 are open.&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Please let me know.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Looking forward to catching up!<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Thank you,<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Rick<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div id=\"bloop_sign_1747788112089477888\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Rick Mislan, PhD<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><a href=\"https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one\">https://mavrix.one</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><img border=\"0\" id=\"_x0000_i1026\" src=\"file:////Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"airmailon\"><span style=\"font-size:10.0pt;font-family:Helvetica\">On May 20, 2025 at 1:16:54 PM, Richard Van Voorst (<a href=\"mailto:rich@achramlabs.com\">rich@achramlabs.com</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:Helvetica\">Hey Rick,<br>\r\n<br>\r\nSo sorry, but for some reason I found this email in my spam folder looking for something else! I felt the exact same way. Would love to connect with you at the beginning of next week. What does your schedule look like late Monday or Tuesday?</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:Helvetica\">&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">V/R,<br>\r\n<br>\r\nRich<br>\r\n<br>\r\n--&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">Achram Labs | CEO</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">e.\r\n<a href=\"mailto:rich@achramlabs.com\"><span style=\"color:#467886\">rich@achramlabs.com</span></a></span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">c. 813.334.5104</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:Helvetica\">&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:Helvetica\">&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n<div id=\"mail-editor-reference-message-container\">\r\n<div>\r\n<div>\r\n<div style=\"border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:12.0pt\"><b><span style=\"font-size:12.0pt;font-family:Helvetica;color:black\">From:\r\n</span></b><span style=\"font-size:12.0pt;font-family:Helvetica;color:black\">Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Date: </b>Thursday, May 8, 2025 at 1:36</span><span style=\"font-size:12.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"font-size:12.0pt;font-family:Helvetica;color:black\">PM<br>\r\n<b>To: </b>Richard Van Voorst &lt;rich@achramlabs.com&gt;<br>\r\n<b>Subject: </b>Next steps?</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">Hi Rich,</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">It was my pleasure meeting you&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">at Bad&nbsp;Monkey&nbsp;Monday night.&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">As a creative, I wish we had&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">more time&nbsp;to chat.&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">That said, I’d love to</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">schedule a time to&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">reconnect next week.&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">Please let me know</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">what’s possible!</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">Thanks much,</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">Rick</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">Rick Mislan, PhD</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\"><a href=\"https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one\">https://mavrix.one</a></span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\"><img border=\"0\" id=\"_x0000_i1025\" src=\"file:////Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Hey Rick,\r\n\r\nI sent the meeting invite. I’m looking forward to taking a tech deep dive with you! Here is our MNDA if you are willing to sign it, we can head down that road. If you have questions let me know.\r\n\r\nTalk soon,\r\n\r\nRich\r\n\r\n--\r\nAchram Labs | CEO\r\ne. rich@achramlabs.com<mailto:rich@achramlabs.com>\r\nc. 813.334.5104\r\n\r\n\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nDate: Tuesday, May 20, 2025 at 8:43 PM\r\nTo: Richard Van Voorst <rich@achramlabs.com>\r\nSubject: Re: Next steps?\r\nMonday and Tuesday 8-10 and 1-3 are open.\r\nPlease let me know.\r\nLooking forward to catching up!\r\nThank you,\r\nRick\r\n\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 20, 2025 at 1:16:54 PM, Richard Van Voorst (rich@achramlabs.com<mailto:rich@achramlabs.com>) wrote:\r\nHey Rick,\r\n\r\nSo sorry, but for some reason I found this email in my spam folder looking for something else! I felt the exact same way. Would love to connect with you at the beginning of next week. What does your schedule look like late Monday or Tuesday?\r\n\r\nV/R,\r\n\r\nRich\r\n\r\n--\r\nAchram Labs | CEO\r\ne. rich@achramlabs.com<mailto:rich@achramlabs.com>\r\nc. 813.334.5104\r\n\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nDate: Thursday, May 8, 2025 at 1:36 PM\r\nTo: Richard Van Voorst <rich@achramlabs.com>\r\nSubject: Next steps?\r\nHi Rich,\r\nIt was my pleasure meeting you\r\nat Bad Monkey Monday night.\r\nAs a creative, I wish we had\r\nmore time to chat.\r\nThat said, I’d love to\r\nschedule a time to\r\nreconnect next week.\r\nPlease let me know\r\nwhat’s possible!\r\nThanks much,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one>\r\n[X]\r\n',0,0,0,0,0,0,'2025-05-21 15:01:52','2025-12-09 19:03:10','2025-12-09 19:03:10','2025-12-09 19:03:10',NULL,NULL,NULL),
(272,4,' <DM6PR07MB585062E65EBC1F4548B15F13AD9EA@DM6PR07MB5850.namprd07.prod.outlook.com>',NULL,NULL,'Drone Sync','rich@achramlabs.com','Richard Van Voorst','<html xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;\r\n	panose-1:2 11 0 4 2 2 2 2 2 4;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle17\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Looking forward to it Rick!<br>\r\n<br>\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Rich<o:p></o:p></span></p>\r\n</div>\r\n<br>\r\n<div style=\"max-width: 600px; color: #242424; font-family:\'Segoe UI\',\'Helvetica Neue\',Helvetica,Arial,sans-serif\" class=\"me-email-text\">\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n<div style=\"margin-bottom: 12px;\"><span class=\"me-email-text\" style=\"font-size: 24px;font-weight: 700; margin-right:12px;\">Microsoft Teams</span>\r\n<a id=\"meet_invite_block.action.help\" class=\"me-email-link\" style=\"font-size:14px; text-decoration:underline; color: #5B5FC7;\" href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\">\r\nNeed help?</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><a id=\"meet_invite_block.action.join_link\" title=\"Meeting join link\" class=\"me-email-headline\" style=\"font-size: 20px; font-weight:600; text-decoration: underline; color: #5B5FC7;\" href=\"https://teams.microsoft.com/l/meetup-join/19%3ameeting_NTU5YTExODAtMDllYi00ZTcyLWE2YTAtNzk4NDExNjg2NTVj%40thread.v2/0?context=%7b%22Tid%22%3a%220930a80e-2157-43f6-aeeb-8cd66ff956b1%22%2c%22Oid%22%3a%22ed6fbfe0-0b33-4893-8efe-ef687ac31ad7%22%7d\" target=\"_blank\" rel=\"noreferrer noopener\">Join\r\n the meeting now</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Meeting ID:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">273 425 292 913 7</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Passcode:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">kn96PR28</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px; max-width: 532px;\">\r\n<hr style=\"border: 0; background: #D1D1D1; height: 1px;\">\r\n</div>\r\n<div><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">For organizers:\r\n</span><a id=\"meet_invite_block.action.organizer_meet_options\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7;\" target=\"_blank\" href=\"https://teams.microsoft.com/meetingOptions/?organizerId=ed6fbfe0-0b33-4893-8efe-ef687ac31ad7&amp;tenantId=0930a80e-2157-43f6-aeeb-8cd66ff956b1&amp;threadId=19_meeting_NTU5YTExODAtMDllYi00ZTcyLWE2YTAtNzk4NDExNjg2NTVj@thread.v2&amp;messageId=0&amp;language=en-US\" rel=\"noreferrer noopener\">Meeting\r\n options</a> </div>\r\n<div style=\"margin-top: 24px; margin-bottom: 6px;\"></div>\r\n<div style=\"margin-bottom: 24px;\"></div>\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n</div>\r\n</body>\r\n</html>','Looking forward to it Rick!\r\n\r\nRich\r\n\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://teams.microsoft.com/l/meetup-join/19%3ameeting_NTU5YTExODAtMDllYi00ZTcyLWE2YTAtNzk4NDExNjg2NTVj%40thread.v2/0?context=%7b%22Tid%22%3a%220930a80e-2157-43f6-aeeb-8cd66ff956b1%22%2c%22Oid%22%3a%22ed6fbfe0-0b33-4893-8efe-ef687ac31ad7%22%7d>\r\nMeeting ID: 273 425 292 913 7\r\nPasscode: kn96PR28\r\n________________________________\r\nFor organizers: Meeting options<https://teams.microsoft.com/meetingOptions/?organizerId=ed6fbfe0-0b33-4893-8efe-ef687ac31ad7&tenantId=0930a80e-2157-43f6-aeeb-8cd66ff956b1&threadId=19_meeting_NTU5YTExODAtMDllYi00ZTcyLWE2YTAtNzk4NDExNjg2NTVj@thread.v2&messageId=0&language=en-US>\r\n________________________________________________________________________________',0,0,0,0,0,0,'2025-05-21 15:09:19','2025-12-09 19:03:10','2025-12-09 19:03:10','2025-12-09 19:03:10',NULL,NULL,NULL),
(273,4,'<CAB5cvozRe7rh5Va96qzmnXVEnrr_R+vtRiXVignADcWCpbw8xw@mail.gmail.com>',NULL,NULL,'=?UTF-8?Q?Re=3A_via_Nic_Vandre=2D_Open_Round=E2=80=A6?=','andy@tfvector.com','Andy Yakulis','<div dir=\"ltr\"><div>Tory,</div><div><br></div><div>Please get Rick a mNDA</div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><span><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:#776b6c;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap\">Andy Yakulis</span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap\">, </span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\"><font color=\"#9a000a\">CEO</font></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:#141414;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap\"><a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" style=\"text-decoration:none\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:#1155cc;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;vertical-align:baseline;white-space:pre;white-space:pre-wrap\"><span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\"><img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left:0px;margin-top:0px\"></span></span></a></p><div><br></div></span><div></div><div><br></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Sun, May 18, 2025 at 6:10 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div>Got it! Thanks!<div>Rick<br> <br><div class=\"gmail_signature\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div> <p class=\"gmail_quote\" style=\"color:rgb(0,0,0)\">On May 18, 2025 at 12:03:28 AM, Andy Yakulis (<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a>) wrote:</p> <blockquote type=\"cite\" class=\"gmail_quote\"><span><div><div></div><div>\r\n\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div>Sent an invite!</div>\r\n<div>\r\n<div dir=\"ltr\" class=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\">\r\n<span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(119,107,108);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\nAndy Yakulis</span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">,</span>\r\n<span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<font color=\"#9A000A\">CEO</font></span></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(20,20,20);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" style=\"text-decoration:none\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:rgb(17,85,204);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;vertical-align:baseline;white-space:pre-wrap\">\r\n<span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\">\r\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left: 0px; margin-top: 0px;\"></span></span></a></p>\r\n<div><br></div>\r\n<div><br></div>\r\n</div>\r\n</div>\r\n</div>\r\n<br></div>\r\n<br>\r\n<div class=\"gmail_quote\">\r\n<div dir=\"ltr\" class=\"gmail_attr\">On Sat, May 17, 2025 at 7:02 AM\r\nRick &lt;rick@mavrix.one&gt; wrote:<br></div>\r\n<blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div>Wednesday at 11 works as well. \r\n<div>Thanks!</div>\r\n<div>Rick<br>\r\n<br>\r\n<div class=\"gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div><img style=\"height: 11px;\"></div>\r\n</div>\r\n<p class=\"gmail_quote\" style=\"color:rgb(0,0,0)\">On May 16, 2025 at\r\n8:54:45 PM, Andy Yakulis (<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"gmail_quote\">\r\n<div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div><span>Rick,</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Sorry, 4pm EST monday got filled up as we were\r\ncoordinating. How&#39;s Wed morning? 11am EST?</span></div>\r\n<div>\r\n<div dir=\"ltr\" class=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\">\r\n<span><span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(119,107,108);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\nAndy Yakulis</span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">,</span>\r\n<span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<font color=\"#9A000A\">CEO</font></span></span></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(20,20,20);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" style=\"text-decoration:none\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:rgb(17,85,204);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;vertical-align:baseline;white-space:pre-wrap\">\r\n<span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\">\r\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left: 0px; margin-top: 0px;\"></span></span></a></p>\r\n<div><br></div>\r\n<div><br></div>\r\n</div>\r\n</div>\r\n</div>\r\n<br></div>\r\n<br>\r\n<div class=\"gmail_quote\">\r\n<div dir=\"ltr\" class=\"gmail_attr\">On Fri, May 16, 2025 at 5:49 AM\r\nRick &lt;rick@mavrix.one&gt; wrote:<br></div>\r\n<blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div id=\"m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\nThanks, Andy!</div>\r\n<div id=\"m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Let’s\r\ndo your first time slot on Monday at 4p.</div>\r\n<div id=\"m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">I’m\r\nin NY, so EST.</div>\r\n<div id=\"m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">You\r\nwant a Zoom/Teams/Meet link?</div>\r\n<div id=\"m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\nAppreciate the connect!</div>\r\n<div id=\"m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\nRick</div>\r\n<br>\r\n<div id=\"m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_sign_1747396037540008960\">\r\nRick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div><img style=\"height: 11px;\"></div>\r\n</div>\r\n<br>\r\n<p>On May 16, 2025 at 12:20:03 AM, Andy Yakulis (<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a>)\r\nwrote:</p>\r\n<blockquote type=\"cite\">\r\n<div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div><span>Rick</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Thank you for reaching out! Absolutely interested in\r\nspeaking with you especially if you know Nick!</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Not sure what time zone you are in, I&#39;m in MTN so I&#39;ll\r\noffer the following:</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Mon 19May:</span></div>\r\n<div><span>4pm</span></div>\r\n<div><span>5pm</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Tues, 20May</span></div>\r\n<div><span>5pm</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Wed, 21May:</span></div>\r\n<div><span>9am</span></div>\r\n<div><span>10am</span></div>\r\n<div><span>3pm</span></div>\r\n<div><span>4pm</span></div>\r\n<div>\r\n<div dir=\"ltr\" class=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\">\r\n<span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(119,107,108);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\nAndy Yakulis</span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">,</span>\r\n<span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<font color=\"#9A000A\">CEO</font></span></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(20,20,20);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" style=\"text-decoration:none\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:rgb(17,85,204);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;vertical-align:baseline;white-space:pre-wrap\">\r\n<span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\">\r\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left: 0px; margin-top: 0px;\"></span></span></a></p>\r\n<div><br></div>\r\n<div><br></div>\r\n</div>\r\n</div>\r\n</div>\r\n<br></div>\r\n<br>\r\n<div class=\"gmail_quote\">\r\n<div dir=\"ltr\" class=\"gmail_attr\">On Thu, May 15, 2025 at 5:37 AM\r\nRick &lt;rick@mavrix.one&gt; wrote:<br></div>\r\n<blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Andy,</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">\r\n<br></div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Nic Vandre\r\nsaid to reach out.</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">I’ve\r\nfollowed your work a bit over time, but recently, </div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">I&#39;ve come\r\ninto an opportunity where I think I can help make a\r\ndifference.</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">\r\n<br></div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">I’d love to\r\nschedule a call sometime this week or next</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">to see how\r\nI might help with your open round of investment.</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">\r\n<br></div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Please let\r\nme know what’s most convenient and then let’s jump on a call!</div>\r\n<div><br></div>\r\nThank you for your time and consideration,\r\n<div>Rick</div>\r\n<div><br>\r\n<div class=\"gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div><a href=\"https://ww.mislan.com\" target=\"_blank\">https://mislan.com</a><img style=\"height: 11px;\"></div>\r\n<div><br></div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n\r\n\r\n</div></div></span></blockquote>\r\n\r\n</div></div></blockquote></div>','Tory,\r\n\r\nPlease get Rick a mNDA\r\n\r\nAndy Yakulis, CEO\r\n\r\nandy@tfvector.com\r\n\r\n<https://www.tfvector.com/>\r\n\r\n\r\n\r\n\r\nOn Sun, May 18, 2025 at 6:10 AM Rick <rick@mavrix.one> wrote:\r\n\r\n> Got it! Thanks!\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On May 18, 2025 at 12:03:28 AM, Andy Yakulis (andy@tfvector.com) wrote:\r\n>\r\n>> Sent an invite!\r\n>>\r\n>> Andy Yakulis, CEO\r\n>>\r\n>> andy@tfvector.com\r\n>>\r\n>> <https://www.tfvector.com/>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>> On Sat, May 17, 2025 at 7:02 AM Rick <rick@mavrix.one> wrote:\r\n>>\r\n>>> Wednesday at 11 works as well.\r\n>>> Thanks!\r\n>>> Rick\r\n>>>\r\n>>> Rick Mislan, PhD\r\n>>> https://mavrix.one\r\n>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>\r\n>>> On May 16, 2025 at 8:54:45 PM, Andy Yakulis (andy@tfvector.com) wrote:\r\n>>>\r\n>>>> Rick,\r\n>>>>\r\n>>>> Sorry, 4pm EST monday got filled up as we were coordinating. How\'s Wed\r\n>>>> morning? 11am EST?\r\n>>>>\r\n>>>> Andy Yakulis, CEO\r\n>>>>\r\n>>>> andy@tfvector.com\r\n>>>>\r\n>>>> <https://www.tfvector.com/>\r\n>>>>\r\n>>>>\r\n>>>>\r\n>>>>\r\n>>>> On Fri, May 16, 2025 at 5:49 AM Rick <rick@mavrix.one> wrote:\r\n>>>>\r\n>>>>> Thanks, Andy!\r\n>>>>> Let’s do your first time slot on Monday at 4p.\r\n>>>>> I’m in NY, so EST.\r\n>>>>> You want a Zoom/Teams/Meet link?\r\n>>>>> Appreciate the connect!\r\n>>>>> Rick\r\n>>>>>\r\n>>>>> Rick Mislan, PhD\r\n>>>>> https://mavrix.one\r\n>>>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>>>\r\n>>>>> On May 16, 2025 at 12:20:03 AM, Andy Yakulis (andy@tfvector.com)\r\n>>>>> wrote:\r\n>>>>>\r\n>>>>> Rick\r\n>>>>>\r\n>>>>> Thank you for reaching out! Absolutely interested in speaking with you\r\n>>>>> especially if you know Nick!\r\n>>>>>\r\n>>>>> Not sure what time zone you are in, I\'m in MTN so I\'ll offer the\r\n>>>>> following:\r\n>>>>>\r\n>>>>> Mon 19May:\r\n>>>>> 4pm\r\n>>>>> 5pm\r\n>>>>>\r\n>>>>> Tues, 20May\r\n>>>>> 5pm\r\n>>>>>\r\n>>>>> Wed, 21May:\r\n>>>>> 9am\r\n>>>>> 10am\r\n>>>>> 3pm\r\n>>>>> 4pm\r\n>>>>>\r\n>>>>> Andy Yakulis, CEO\r\n>>>>>\r\n>>>>> andy@tfvector.com\r\n>>>>>\r\n>>>>> <https://www.tfvector.com/>\r\n>>>>>\r\n>>>>>\r\n>>>>>\r\n>>>>>\r\n>>>>> On Thu, May 15, 2025 at 5:37 AM Rick <rick@mavrix.one> wrote:\r\n>>>>>\r\n>>>>>> Andy,\r\n>>>>>>\r\n>>>>>> Nic Vandre said to reach out.\r\n>>>>>> I’ve followed your work a bit over time, but recently,\r\n>>>>>> I\'ve come into an opportunity where I think I can help make a\r\n>>>>>> difference.\r\n>>>>>>\r\n>>>>>> I’d love to schedule a call sometime this week or next\r\n>>>>>> to see how I might help with your open round of investment.\r\n>>>>>>\r\n>>>>>> Please let me know what’s most convenient and then let’s jump on a\r\n>>>>>> call!\r\n>>>>>>\r\n>>>>>> Thank you for your time and consideration,\r\n>>>>>> Rick\r\n>>>>>>\r\n>>>>>> Rick Mislan, PhD\r\n>>>>>> https://mavrix.one\r\n>>>>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>>>> https://mislan.com <https://ww.mislan.com>\r\n>>>>>>\r\n>>>>>>',0,0,0,0,0,0,'2025-05-21 15:44:58','2025-12-09 19:03:10','2025-12-09 19:03:10','2025-12-09 19:03:10',NULL,NULL,NULL),
(274,4,'<126944810.2582399.1747848420129.JavaMail.zimbra@registeredagentsinc.com>',NULL,NULL,'Re: MAVRIX, LLC','filings@registeredagentsinc.com','\"Registered Agents, Inc\"','<html><body><div style=\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000\"><div style=\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000\">Hey Rick,</div><div style=\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000\"><br></div><div style=\"\"><span style=\"font-size: 12pt;\">Thank you for the name update.&nbsp;</span><b>MAVRIX 1, LLC</b> appears available so your application will be submitted to the state for processing today. The approved documents will be uploaded to your account shortly.</div><div style=\"\"><br data-mce-bogus=\"1\"></div><div style=\"\">Please don\'t hesitate to reach out with any questions in the meantime.&nbsp;</div><div style=\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000\"><br data-mce-bogus=\"1\"></div><div style=\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000\"><div data-marker=\"__SIG_PRE__\"><div>Lynn Kay<br></div><div>Buffalo Registered Agents LLC <br>412 N Main St Suite 100 <br>Buffalo, WY 82834 <br>(307) 554-1800 <br>agent@wyregisteredagent.net <br>www.wyregisteredagent.net <br><br>Write us a review at: <br><br><a href=\"https://www.yelp.com/writeareview/biz/KajHuzjgBnuAbPp6n5NAzA?return_url=%2Fbiz%2FKajHuzjgBnuAbPp6n5NAzA&amp;source=biz_details_war_button\" rel=\"noopener nofollow noopener noreferrer nofollow noopener noreferrer nofollow noopener noreferrer\" target=\"_blank\">Yelp</a><br></div></div><br><hr id=\"zwchr\" data-marker=\"__DIVIDER__\"><div data-marker=\"__HEADERS__\"><b>From: </b>\"Rick\" &lt;rick@mavrix.one&gt;<br><b>To: </b>\"Registered Agents, Inc\" &lt;filings@registeredagentsinc.com&gt;<br><b>Sent: </b>Tuesday, May 20, 2025 5:38:01 PM<br><b>Subject: </b>Re: MAVRIX, LLC<br></div><br><div data-marker=\"__QUOTED_TEXT__\"><div id=\"bloop_customfont\" style=\"font-family:\'helvetica\' , \'arial\';font-size:13px;margin:0px\">Hi Hillary,</div><div id=\"bloop_customfont\" style=\"font-family:\'helvetica\' , \'arial\';font-size:13px;margin:0px\">I responded to your email with MAVRIX 1, LLC</div><div id=\"bloop_customfont\" style=\"font-family:\'helvetica\' , \'arial\';font-size:13px;margin:0px\">I got another email today suggesting that MAVRIX, LLC was no good…</div><div id=\"bloop_customfont\" style=\"font-family:\'helvetica\' , \'arial\';font-size:13px;margin:0px\">Can you confirm that MAVRIX 1, LLC is secured for me?</div><div id=\"bloop_customfont\" style=\"font-family:\'helvetica\' , \'arial\';font-size:13px;margin:0px\">Thanks aggain!</div><div id=\"bloop_customfont\" style=\"font-family:\'helvetica\' , \'arial\';font-size:13px;margin:0px\">Rick</div> <br> <div id=\"bloop_sign_1747787807459959040\" class=\"bloop_sign\">\r\n        <title></title>\r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.one%0d%0ahttps://mavrix.one%0d%0ahttps://mavrix.one\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">https://mavrix.one</a></div><div><img style=\"height:11px\"></div>\r\n     \r\n</div> <img class=\"composer_internal_attach\" src=\"cid:08F0DAA4-11F4-4976-B26E-1FAD1AB2B83D\"><br><p class=\"airmail_on\">On May 19, 2025 at 11:31:23 AM, Registered Agents, Inc (<a href=\"mailto:filings@registeredagentsinc.com\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">filings@registeredagentsinc.com</a>) wrote:</p> <blockquote class=\"clean_bq\"><div><div><div style=\"font-family:\'arial\' , \'helvetica\' , sans-serif;font-size:12pt;color:#000000\"><div id=\"zimbraEditorContainer\" style=\"font-family:\'arial\' , \'helvetica\' , sans-serif;font-size:12pt;color:#000000\" class=\"18\">Hello Rick,</div><div style=\"font-family:\'arial\' , \'helvetica\' , sans-serif;font-size:12pt;color:#000000\" class=\"18\">It was so nice to speak with you today!&nbsp;</div><div style=\"font-family:\'arial\' , \'helvetica\' , sans-serif;font-size:12pt;color:#000000\" class=\"18\"><br></div><div style=\"font-family:\'arial\' , \'helvetica\' , sans-serif;font-size:12pt;color:#000000\" class=\"18\">Please reply to this email with your 3 alternative names in order of preference and we will update the name and file that.&nbsp;</div><div style=\"font-family:\'arial\' , \'helvetica\' , sans-serif;font-size:12pt;color:#000000\" class=\"18\"><br></div><div style=\"font-family:\'arial\' , \'helvetica\' , sans-serif;font-size:12pt;color:#000000\" class=\"18\">If&nbsp;you&nbsp;need&nbsp;any&nbsp;further&nbsp;assistance&nbsp;please&nbsp;let&nbsp;me&nbsp;know&nbsp;as&nbsp;I&nbsp;am&nbsp;always&nbsp;happy&nbsp;to&nbsp;help!&nbsp;🙂<br></div><div style=\"font-family:\'arial\' , \'helvetica\' , sans-serif;font-size:12pt;color:#000000\" class=\"18\"><br></div><div style=\"font-family:\'arial\' , \'helvetica\' , sans-serif;font-size:12pt;color:#000000\" class=\"18\">Hillary Cox<br><div><div>Registered Agents Inc.<br></div><div>30 N. Gould St. Suite R</div><div>Sheridan, WY 82801</div><div>307-200-2803<br>www.registeredagentsinc.com<br>filings@registeredagentsinc.com</div></div></div></div></div></div></blockquote></div></div><div><br></div></div></body></html>','Hey Rick, \r\n\r\nThank you for the name update. MAVRIX 1, LLC appears available so your application will be submitted to the state for processing today. The approved documents will be uploaded to your account shortly. \r\n\r\nPlease don\'t hesitate to reach out with any questions in the meantime. \r\n\r\nLynn Kay \r\nBuffalo Registered Agents LLC \r\n412 N Main St Suite 100 \r\nBuffalo, WY 82834 \r\n(307) 554-1800 \r\nagent@wyregisteredagent.net \r\nwww.wyregisteredagent.net \r\n\r\nWrite us a review at: \r\n\r\n[ https://www.yelp.com/writeareview/biz/KajHuzjgBnuAbPp6n5NAzA?return_url=%2Fbiz%2FKajHuzjgBnuAbPp6n5NAzA&source=biz_details_war_button | Yelp ] \r\n\r\n\r\nFrom: \"Rick\" <rick@mavrix.one> \r\nTo: \"Registered Agents, Inc\" <filings@registeredagentsinc.com> \r\nSent: Tuesday, May 20, 2025 5:38:01 PM \r\nSubject: Re: MAVRIX, LLC \r\n\r\nHi Hillary, \r\nI responded to your email with MAVRIX 1, LLC \r\nI got another email today suggesting that MAVRIX, LLC was no good… \r\nCan you confirm that MAVRIX 1, LLC is secured for me? \r\nThanks aggain! \r\nRick \r\n\r\nRick Mislan, PhD \r\n[ https://mavrix.one%0d%0ahttps://mavrix.one%0d%0ahttps://mavrix.one | https://mavrix.one ] \r\n\r\n\r\n\r\nOn May 19, 2025 at 11:31:23 AM, Registered Agents, Inc ( [ mailto:filings@registeredagentsinc.com | filings@registeredagentsinc.com ] ) wrote: \r\n\r\n\r\nHello Rick, \r\nIt was so nice to speak with you today! \r\n\r\nPlease reply to this email with your 3 alternative names in order of preference and we will update the name and file that. \r\n\r\nIf you need any further assistance please let me know as I am always happy to help! 🙂 \r\n\r\nHillary Cox \r\nRegistered Agents Inc. \r\n30 N. Gould St. Suite R \r\nSheridan, WY 82801 \r\n307-200-2803 \r\nwww.registeredagentsinc.com \r\nfilings@registeredagentsinc.com ',0,0,0,0,0,0,'2025-05-21 17:27:00','2025-12-09 19:03:12','2025-12-09 19:03:12','2025-12-09 19:03:12',NULL,NULL,NULL),
(275,4,'<990dc55edc054e5898c37e547bc1a7e4@docusign.net>',NULL,NULL,'Complete with Docusign: Rick Mislan _ Vector Form of NDA (Mutual).docx.pdf','dse_NA4@docusign.net','\"Tory Roberts via Docusign\"','<html lang=3D\"en\"><head><meta http-equiv=3D\"Content-Type\" content=3D\"te=\r\nxt/html; charset=3DUTF-8\"/><meta name=3D\"viewport\" content=3D\"initial-s=\r\ncale=3D1=2E0\"/><meta name=3D\"format-detection\" content=3D\"telephone=3Dn=\r\no\"/><title>EnvelopeActivation</title></head><body style=3D\"background-c=\r\nolor:#EAEAEA;padding:2%;font-family:Helvetica,Arial,Sans Serif;\"><table=\r\n role=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\'=\r\n align=3D\'center\' width=3D\"100%\" dir=3D\"\"><tr><td></td><td width=3D\"640=\r\n\"><table role=3D\"presentation\" style=3D\"mso-table-lspace:0pt;mso-table-=\r\nrspace:0pt;border-collapse:collapse;background-color:#ffffff;max-width:=\r\n640px;\"><tr><td style=3D\"padding:10px 24px;\"><img style=3D\"border:none;=\r\n\" width=3D\"\" src=3D\"https://NA4=2Edocusign=2Enet/Member/Image=2Easpx?i=3D=\r\nlogo&l=3D494cb785-6844-4015-b56e-8e89f27d6f54\" alt=3D\"\"/></td></tr><tr>=\r\n<td style=3D\"padding:0px 24px 30px 24px;\"><table role=3D\'presentation\' =\r\nborder=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\' width=3D\'100%\' align=3D=\r\n\'center\' style=3D\'background-color:#3A3838;color:#FFFFFF;\'><tr><td styl=\r\ne=3D\"padding:28px 36px 36px 36px;border-radius:2px;background-color:#3A=\r\n3838;color:#FFFFFF;font-size:16px;font-family:Helvetica,Arial,Sans Seri=\r\nf;width:100%;text-align:center;\" align=3D\"center\"><img width=3D\"75\" hei=\r\nght=3D\"75\" src=3D\"https://docucdn-a=2Eakamaihd=2Enet/olive/images/2=2E7=\r\n6=2E0/email/iconSignWhite=2Epng\" style=3D\"width:75px;height:75px;\" alt=3D=\r\n\"\" /><table role=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpa=\r\ndding=3D\'0\' width=3D\'100%\'><tr><td style=3D\"padding-top:24px;font-size:=\r\n16px;font-family:Helvetica,Arial,Sans Serif;border:none;text-align:cent=\r\ner;color:#FFFFFF\" align=3D\"center\"> Tory Roberts sent you a document to=\r\n review and sign=2E </td></tr></table><table role=3D\'presentation\' bord=\r\ner=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\' width=3D\'100%\'><tr><td ali=\r\ngn=3D\"center\" style=3D\"padding-top:30px;\"><div><table cellspacing=3D\"0\"=\r\n cellpadding=3D\"0\"><tr><td align=3D\"center\" height=3D\"44\" style=3D\"font=\r\n-size:15px;color:#ffffff;background-color:#9f0c16;font-family:Helvetica=\r\n,Arial,Sans Serif;font-weight:bold;text-align:center;text-decoration:no=\r\nne;;border-radius:2px;background-color:#9f0c16;;display: block;\"><a hre=\r\nf=3D\"https://na4=2Edocusign=2Enet/Signing/EmailStart=2Easpx?a=3D35525c4=\r\n1-76c3-4c7e-936a-83f986228010&etti=3D24&acct=3D613f2384-c6a1-4e6c-83b9-=\r\n3855b481bae0&er=3Db046fba7-5ca1-4bda-8621-92399f5833d2\" style=3D\"font-s=\r\nize:15px;color:#ffffff;background-color:#9f0c16;font-family:Helvetica,A=\r\nrial,Sans Serif;font-weight:bold;text-align:center;text-decoration:none=\r\n;;border-radius:2px;background-color:#9f0c16;;display:inline-block\"><sp=\r\nan style=3D\"padding:0px 24px;;line-height:44px;\"><!--[if mso]>&nbsp;&nb=\r\nsp;&nbsp;&nbsp;&nbsp;&nbsp;<![endif]--> REVIEW DOCUMENT <!--[if mso]>&n=\r\nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<![endif]--></span></a></td></tr></ta=\r\nble></div></td></tr></table></td></tr></table></td></tr><tr><td style=3D=\r\n\"padding:0px 24px 24px 24px;color:#000000;font-size:16px;font-family:He=\r\nlvetica,Arial,Sans Serif;background-color:white;\"><table role=3D\'presen=\r\ntation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\'><tr><td style=3D=\r\n\"padding-bottom:20px;\"><div style=3D\"font-family:Helvetica,Arial,Sans S=\r\nerif;font-weight:bold;line-height:18px;font-size:15px;color:#333333;\"> =\r\nTory Roberts </div><div style=3D\"font-family:Helvetica,Arial,Sans Serif=\r\n;line-height:18px;font-size:15px;color:#666666;\">tory@tfvector=2Ecom</d=\r\niv></td></tr></table><span style=3D\"font-size:15px;color:#333333;font-f=\r\namily:Helvetica,Arial,Sans Serif;line-height:20px;\">Rick Mislan,<br /><=\r\nbr /> Complete with Docusign: Rick Mislan _ Vector Form of NDA (Mutual)=\r\n=2Edocx=2Epdf<br /><br /> Thank You, Tory Roberts</span><br /></td></tr=\r\n><tr><td style=3D\"padding:0px 24px 12px 24px;background-color:#ffffff;f=\r\nont-family:Helvetica,Arial,Sans Serif;font-size:11px;color:#666666;\"><t=\r\nable border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\"><tbody><tr><td va=\r\nlign=3D\"top\" style=3D\"font-family: Helvetica,Arial,Sans Serif; font-siz=\r\ne: 11px; color: #666666; vertical-align: top;\"><div style=3D\"font-famil=\r\ny:Helvetica,Arial,Sans Serif; font-size:11px; color:#666666; padding: 2=\r\npx 5px 0 0;\">Powered by&#160;</div></td><td><img src=3D\"https://docucdn=\r\n-a=2Eakamaihd=2Enet/olive/images/2=2E62=2E0/global-assets/email-templat=\r\nes/email-logo=2Epng\" height=3D\"19\" alt=3D\"Docusign\" style=3D\"border:non=\r\ne;\"/></td></tr></tbody></table></td></tr><tr><td style=3D\"padding:30px =\r\n24px 45px 24px;background-color:#EAEAEA;\"><p style=3D\"margin-bottom:1em=\r\n;font-family:Helvetica,Arial,Sans Serif;font-size:13px;color:#666666;li=\r\nne-height:18px;\"><b aria-level=3D\"3\" role=3D\"heading\">Do Not Share This=\r\n Email</b><br/> This email contains a secure link to Docusign=2E Please=\r\n do not share this email, link, or access code with others=2E<br/></p><=\r\np style=3D\"margin-bottom:1em;font-family:Helvetica,Arial,Sans Serif;fon=\r\nt-size:13px;color:#666666;line-height:18px;\"><b aria-level=3D\"3\" role=3D=\r\n\"heading\">Alternate Signing Method</b><br/> Visit Docusign=2Ecom, click=\r\n \'Access Documents\', and enter the security code:<br /> 35525C4176C34C7=\r\nE936A83F9862280107 </p><p style=3D\"margin-bottom:1em;font-family:Helvet=\r\nica,Arial,Sans Serif;font-size:13px;color:#666666;line-height:18px;\"><b=\r\n aria-level=3D\"3\" role=3D\"heading\">About Docusign</b><br/> Sign documen=\r\nts electronically in just minutes=2E It\'s safe, secure, and legally bin=\r\nding=2E Whether you\'re in an office, at home, on-the-go -- or even acro=\r\nss the globe -- Docusign provides a professional trusted solution for D=\r\nigital Transaction Management=E2=84=A2=2E </p><p style=3D\"margin-bottom=\r\n:1em;font-family:Helvetica,Arial,Sans Serif;font-size:13px;color:#66666=\r\n6;line-height:18px;\"><b aria-level=3D\"3\" role=3D\"heading\">Questions abo=\r\nut the Document?</b><br /> If you need to modify the document or have q=\r\nuestions about the details in the document, please reach out to the sen=\r\nder by emailing them directly=2E<br /><br /><b aria-level=3D\"3\" role=3D=\r\n\"heading\">Stop receiving this email</b><br /><a href=3D\'https://protect=\r\n=2Edocusign=2Enet/report-abuse?e=3DAUtomjpFak9GlbPL0zFFi115zki4u8cy-He2=\r\n00boflDn4ZK8rZVPmSLndTj94-s7G8bWxcZ1M5qi91_VuuA3FaaqxcPcW_GoKuqiobhK3N-=\r\nDprNa84-VuRvQ3IxTQY09Se5fACcPxPUzoZcQzRXFncY5lKsfCeID9XAOpQhGXl5h7abSeL=\r\nebjupjsEvKHn9gKdmZQzTvgvHxVKDQ_UYbH-WI-tkihoxGx0_BGwcltp04qCGB3xLT7MAsO=\r\noappoYkba5J8NPO0sScdpcgIr8x_088tBF9ukS0CsutfaK4VE_IE4pldxI5rMQG3BeXWVJ9=\r\nGjgOCx9JiFncZbhzJD-4UCmnnZXOhuGI42LdWCDWMnDlmNZ7YWqA2XrIPUhekfy3tarhUrH=\r\nTcGNgX9ubWgOCrAHBqEnJThlk1VeWFX9tzkn5JYOZv_3ALXPq5ievvyKmSg&lang=3Den\' =\r\nstyle=3D\'color:#2463d1;\' >Report this email</a> or read more about <a h=\r\nref=3D\'https://support=2Edocusign=2Ecom/en/guides/Declining-to-sign-Doc=\r\nuSign-Signer-Guide\' style=3D\'color:#2463d1;\' >Declining to sign</a> and=\r\n <a href=3D\'https://support=2Edocusign=2Ecom/en/articles/How-do-I-manag=\r\ne-my-email-notifications\' style=3D\'color:#2463d1;\' >Managing notificati=\r\nons</a>=2E<br /><br /> If you have trouble signing, visit \"<a href=3D\'h=\r\nttps://support=2Edocusign=2Ecom/s/articles/How-do-I-sign-a-DocuSign-doc=\r\nument-Basic-Signing?language=3Den_US&#38;utm_campaign=3DGBL_XX_DBU_UPS_=\r\n2211_SignNotificationEmailFooter&#38;utm_medium=3Dproduct&#38;utm_sourc=\r\ne=3Dpostsend\' style=3D\'color:#2463d1;\' >How to Sign a Document</a>\" on =\r\nour <a href=3D\'https://support=2Edocusign=2Ecom/\' style=3D\'color:#2463d=\r\n1;\' >Docusign Support Center</a>, or become part of the <a href=3D\'http=\r\ns://community=2Edocusign=2Ecom/new-member-guide-142?utm_campaign=3DGBL_=\r\nUS_PRD_AWA_2405_CommunityCTA&#38;utm_medium=3Demail&#38;utm_source=3Dpo=\r\nstsend\' style=3D\'color:#2463d1;\' >Docusign Community</a> to access tips=\r\n and guidance from peers=2E<br /><br /></p><p style=3D\"margin-bottom:1e=\r\nm;font-family:Helvetica,Arial,Sans Serif;font-size:13px;color:#666666;l=\r\nine-height:18px;\"><a href=3D\"https://www=2Edocusign=2Ecom/features-and-=\r\nbenefits/mobile?utm_campaign=3DGBL_XX_DBU_UPS_2211_SignNotificationEmai=\r\nlFooter&#38;utm_medium=3Dproduct&#38;utm_source=3Dpostsend\" style=3D\"co=\r\nlor:#2463d1;\" ><img style=3D\"margin-right:7px;border:none;vertical-alig=\r\nn:middle;\" width=3D\"18\" height=3D\"18\" src=3D\"https://docucdn-a=2Eakamai=\r\nhd=2Enet/olive/images/2=2E62=2E0/global-assets/email-templates/icon-dow=\r\nnload-app=2Epng\" alt=3D\"\" />Download the Docusign App </a></p><p style=3D=\r\n\"margin-bottom:1em;font-family:Helvetica,Arial,Sans Serif;font-size:13p=\r\nx;color:#666666;line-height:18px;font-size:10px;line-height:14px;\">This=\r\n message was sent to you by Tory Roberts who is using the Docusign Elec=\r\ntronic Signature Service=2E If you would rather not receive email from =\r\nthis sender you may contact the sender with your request=2E</p></td></t=\r\nr></table></td><td></td></tr></table><span itemscope=3D\"\" itemtype=3D\"h=\r\nttp://schema=2Eorg/EmailMessage\"><meta itemprop=3D\"text\" content=3D\"Tor=\r\ny Roberts sent you a document to review and sign=2E\"/><span itemscope=3D=\r\n\"\" itemprop=3D\"about\" itemtype=3D\"http://schema=2Eorg/CreativeWork\"><sp=\r\nan itemscope=3D\"\" itemprop=3D\"action\" itemtype=3D\"http://schema=2Eorg/V=\r\niewAction\"><meta itemprop=3D\"url\" content=3D\"https://na4=2Edocusign=2En=\r\net/Signing/EmailStart=2Easpx?a=3D35525c41-76c3-4c7e-936a-83f986228010&e=\r\ntti=3D24&acct=3D613f2384-c6a1-4e6c-83b9-3855b481bae0&er=3Db046fba7-5ca1=\r\n-4bda-8621-92399f5833d2\"/><meta itemprop=3D\"name\" content=3D\"View Docum=\r\nents\"/></span></span></span></body></html>','EnvelopeActivation=\r\n Tory Roberts sent you a document to=\r\n review and sign=2E  REVIEW DOCUMENT  =\r\nTory Roberts tory@tfvector=2EcomRick Mislan, Complete with Docusign: Rick Mislan _ Vector Form of NDA (Mutual)=\r\n=2Edocx=2Epdf Thank You, Tory RobertsPowered by&#160;Do Not Share This=\r\n Email This email contains a secure link to Docusign=2E Please=\r\n do not share this email, link, or access code with others=2EAlternate Signing Method Visit Docusign=2Ecom, click=\r\n \'Access Documents\', and enter the security code: 35525C4176C34C7=\r\nE936A83F9862280107 About Docusign Sign documen=\r\nts electronically in just minutes=2E It\'s safe, secure, and legally bin=\r\nding=2E Whether you\'re in an office, at home, on-the-go -- or even acro=\r\nss the globe -- Docusign provides a professional trusted solution for D=\r\nigital Transaction Management=E2=84=A2=2E Questions abo=\r\nut the Document? If you need to modify the document or have q=\r\nuestions about the details in the document, please reach out to the sen=\r\nder by emailing them directly=2EStop receiving this emailReport this email or read more about Declining to sign and=\r\n Managing notificati=\r\nons=2E If you have trouble signing, visit \"How to Sign a Document\" on =\r\nour Docusign Support Center, or become part of the Docusign Community to access tips=\r\n and guidance from peers=2EDownload the Docusign App This=\r\n message was sent to you by Tory Roberts who is using the Docusign Elec=\r\ntronic Signature Service=2E If you would rather not receive email from =\r\nthis sender you may contact the sender with your request=2E',0,0,0,0,0,0,'2025-05-21 17:30:57','2025-12-09 19:03:12','2025-12-09 19:03:12','2025-12-09 19:03:12',NULL,NULL,NULL),
(276,4,'<CAArCLoizqbap+y6Wa3uGMfcYojU8swGBpkegse3Ng04qeat38g@mail.gmail.com>',NULL,NULL,'=?UTF-8?Q?Re=3A_via_Nic_Vandre=2D_Open_Round=E2=80=A6?=','tory@tfvector.com','Tory Roberts','<div dir=\"ltr\"><div>Hello Rick,</div><div><br></div><div>I have your MNDA via DocuSign. Please don&#39;t hesitate to reach out should you have any issues in receiving the document.</div><div><br></div><div>Regards,</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><span><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;vertical-align:baseline\"><font color=\"#776b6c\">Tory Roberts</font></span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(0,0,0);background-color:transparent;font-weight:700;vertical-align:baseline\">, </span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(154,0,10);background-color:transparent;font-weight:700;vertical-align:baseline\">Executive Assistant</span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(20,20,20);background-color:transparent;vertical-align:baseline\"><a href=\"mailto:tory@tfvector.com\" target=\"_blank\">tory@tfvector.com</a></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:rgb(17,85,204);background-color:transparent;vertical-align:baseline\"><span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\"><img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXeTal6s0IkK0baMnx93qZXuKVLEl524EKd9lkDV6RX225u9cdtAnN3cqG4blT8dvTtp8fF16wmo64-INi88bfNYnoYkjJL9TwMP7uEp8S1CcAeB4Is1WVndfHfIphkEpvnWQ1m8tQ?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left:0px;margin-top:0px\"></span></span></a></p></span></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, May 21, 2025 at 11:45 AM Andy Yakulis &lt;<a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Tory,</div><div><br></div><div>Please get Rick a mNDA</div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><span><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(119,107,108);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">Andy Yakulis</span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">, </span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\"><font color=\"#9a000a\">CEO</font></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(20,20,20);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\"><a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" style=\"text-decoration:none\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:rgb(17,85,204);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;vertical-align:baseline;white-space:pre-wrap\"><span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\"><img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left: 0px; margin-top: 0px;\"></span></span></a></p><div><br></div></span><div></div><div><br></div></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Sun, May 18, 2025 at 6:10 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div>Got it! Thanks!<div>Rick<br> <br><div class=\"gmail_signature\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div> <p class=\"gmail_quote\" style=\"color:rgb(0,0,0)\">On May 18, 2025 at 12:03:28 AM, Andy Yakulis (<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a>) wrote:</p> <blockquote type=\"cite\" class=\"gmail_quote\"><span><div><div></div><div>\r\n\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div>Sent an invite!</div>\r\n<div>\r\n<div dir=\"ltr\" class=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\">\r\n<span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(119,107,108);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\nAndy Yakulis</span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">,</span>\r\n<span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<font color=\"#9A000A\">CEO</font></span></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(20,20,20);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" style=\"text-decoration:none\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:rgb(17,85,204);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;vertical-align:baseline;white-space:pre-wrap\">\r\n<span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\">\r\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left: 0px; margin-top: 0px;\"></span></span></a></p>\r\n<div><br></div>\r\n<div><br></div>\r\n</div>\r\n</div>\r\n</div>\r\n<br></div>\r\n<br>\r\n<div class=\"gmail_quote\">\r\n<div dir=\"ltr\" class=\"gmail_attr\">On Sat, May 17, 2025 at 7:02 AM\r\nRick &lt;rick@mavrix.one&gt; wrote:<br></div>\r\n<blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div>Wednesday at 11 works as well. \r\n<div>Thanks!</div>\r\n<div>Rick<br>\r\n<br>\r\n<div class=\"gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div><img style=\"height: 11px;\"></div>\r\n</div>\r\n<p class=\"gmail_quote\" style=\"color:rgb(0,0,0)\">On May 16, 2025 at\r\n8:54:45 PM, Andy Yakulis (<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"gmail_quote\">\r\n<div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div><span>Rick,</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Sorry, 4pm EST monday got filled up as we were\r\ncoordinating. How&#39;s Wed morning? 11am EST?</span></div>\r\n<div>\r\n<div dir=\"ltr\" class=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\">\r\n<span><span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(119,107,108);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\nAndy Yakulis</span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">,</span>\r\n<span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<font color=\"#9A000A\">CEO</font></span></span></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(20,20,20);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" style=\"text-decoration:none\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:rgb(17,85,204);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;vertical-align:baseline;white-space:pre-wrap\">\r\n<span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\">\r\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left: 0px; margin-top: 0px;\"></span></span></a></p>\r\n<div><br></div>\r\n<div><br></div>\r\n</div>\r\n</div>\r\n</div>\r\n<br></div>\r\n<br>\r\n<div class=\"gmail_quote\">\r\n<div dir=\"ltr\" class=\"gmail_attr\">On Fri, May 16, 2025 at 5:49 AM\r\nRick &lt;rick@mavrix.one&gt; wrote:<br></div>\r\n<blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div id=\"m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\nThanks, Andy!</div>\r\n<div id=\"m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Let’s\r\ndo your first time slot on Monday at 4p.</div>\r\n<div id=\"m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">I’m\r\nin NY, so EST.</div>\r\n<div id=\"m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">You\r\nwant a Zoom/Teams/Meet link?</div>\r\n<div id=\"m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\nAppreciate the connect!</div>\r\n<div id=\"m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\nRick</div>\r\n<br>\r\n<div id=\"m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_sign_1747396037540008960\">\r\nRick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div><img style=\"height: 11px;\"></div>\r\n</div>\r\n<br>\r\n<p>On May 16, 2025 at 12:20:03 AM, Andy Yakulis (<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a>)\r\nwrote:</p>\r\n<blockquote type=\"cite\">\r\n<div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div><span>Rick</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Thank you for reaching out! Absolutely interested in\r\nspeaking with you especially if you know Nick!</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Not sure what time zone you are in, I&#39;m in MTN so I&#39;ll\r\noffer the following:</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Mon 19May:</span></div>\r\n<div><span>4pm</span></div>\r\n<div><span>5pm</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Tues, 20May</span></div>\r\n<div><span>5pm</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Wed, 21May:</span></div>\r\n<div><span>9am</span></div>\r\n<div><span>10am</span></div>\r\n<div><span>3pm</span></div>\r\n<div><span>4pm</span></div>\r\n<div>\r\n<div dir=\"ltr\" class=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\">\r\n<span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(119,107,108);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\nAndy Yakulis</span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">,</span>\r\n<span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<font color=\"#9A000A\">CEO</font></span></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(20,20,20);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" style=\"text-decoration:none\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:rgb(17,85,204);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;vertical-align:baseline;white-space:pre-wrap\">\r\n<span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\">\r\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left: 0px; margin-top: 0px;\"></span></span></a></p>\r\n<div><br></div>\r\n<div><br></div>\r\n</div>\r\n</div>\r\n</div>\r\n<br></div>\r\n<br>\r\n<div class=\"gmail_quote\">\r\n<div dir=\"ltr\" class=\"gmail_attr\">On Thu, May 15, 2025 at 5:37 AM\r\nRick &lt;rick@mavrix.one&gt; wrote:<br></div>\r\n<blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Andy,</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">\r\n<br></div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Nic Vandre\r\nsaid to reach out.</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">I’ve\r\nfollowed your work a bit over time, but recently, </div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">I&#39;ve come\r\ninto an opportunity where I think I can help make a\r\ndifference.</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">\r\n<br></div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">I’d love to\r\nschedule a call sometime this week or next</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">to see how\r\nI might help with your open round of investment.</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">\r\n<br></div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Please let\r\nme know what’s most convenient and then let’s jump on a call!</div>\r\n<div><br></div>\r\nThank you for your time and consideration,\r\n<div>Rick</div>\r\n<div><br>\r\n<div class=\"gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div><a href=\"https://ww.mislan.com\" target=\"_blank\">https://mislan.com</a><img style=\"height: 11px;\"></div>\r\n<div><br></div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n\r\n\r\n</div></div></span></blockquote>\r\n\r\n</div></div></blockquote></div>\r\n</blockquote></div>','Hello Rick,\r\n\r\nI have your MNDA via DocuSign. Please don\'t hesitate to reach out should\r\nyou have any issues in receiving the document.\r\n\r\nRegards,\r\n\r\nTory Roberts, Executive Assistant\r\n\r\ntory@tfvector.com\r\n\r\n<https://www.tfvector.com/>\r\n\r\n\r\nOn Wed, May 21, 2025 at 11:45 AM Andy Yakulis <andy@tfvector.com> wrote:\r\n\r\n> Tory,\r\n>\r\n> Please get Rick a mNDA\r\n>\r\n> Andy Yakulis, CEO\r\n>\r\n> andy@tfvector.com\r\n>\r\n> <https://www.tfvector.com/>\r\n>\r\n>\r\n>\r\n>\r\n> On Sun, May 18, 2025 at 6:10 AM Rick <rick@mavrix.one> wrote:\r\n>\r\n>> Got it! Thanks!\r\n>> Rick\r\n>>\r\n>> Rick Mislan, PhD\r\n>> https://mavrix.one\r\n>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>\r\n>> On May 18, 2025 at 12:03:28 AM, Andy Yakulis (andy@tfvector.com) wrote:\r\n>>\r\n>>> Sent an invite!\r\n>>>\r\n>>> Andy Yakulis, CEO\r\n>>>\r\n>>> andy@tfvector.com\r\n>>>\r\n>>> <https://www.tfvector.com/>\r\n>>>\r\n>>>\r\n>>>\r\n>>>\r\n>>> On Sat, May 17, 2025 at 7:02 AM Rick <rick@mavrix.one> wrote:\r\n>>>\r\n>>>> Wednesday at 11 works as well.\r\n>>>> Thanks!\r\n>>>> Rick\r\n>>>>\r\n>>>> Rick Mislan, PhD\r\n>>>> https://mavrix.one\r\n>>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>>\r\n>>>> On May 16, 2025 at 8:54:45 PM, Andy Yakulis (andy@tfvector.com) wrote:\r\n>>>>\r\n>>>>> Rick,\r\n>>>>>\r\n>>>>> Sorry, 4pm EST monday got filled up as we were coordinating. How\'s Wed\r\n>>>>> morning? 11am EST?\r\n>>>>>\r\n>>>>> Andy Yakulis, CEO\r\n>>>>>\r\n>>>>> andy@tfvector.com\r\n>>>>>\r\n>>>>> <https://www.tfvector.com/>\r\n>>>>>\r\n>>>>>\r\n>>>>>\r\n>>>>>\r\n>>>>> On Fri, May 16, 2025 at 5:49 AM Rick <rick@mavrix.one> wrote:\r\n>>>>>\r\n>>>>>> Thanks, Andy!\r\n>>>>>> Let’s do your first time slot on Monday at 4p.\r\n>>>>>> I’m in NY, so EST.\r\n>>>>>> You want a Zoom/Teams/Meet link?\r\n>>>>>> Appreciate the connect!\r\n>>>>>> Rick\r\n>>>>>>\r\n>>>>>> Rick Mislan, PhD\r\n>>>>>> https://mavrix.one\r\n>>>>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>>>>\r\n>>>>>> On May 16, 2025 at 12:20:03 AM, Andy Yakulis (andy@tfvector.com)\r\n>>>>>> wrote:\r\n>>>>>>\r\n>>>>>> Rick\r\n>>>>>>\r\n>>>>>> Thank you for reaching out! Absolutely interested in speaking with\r\n>>>>>> you especially if you know Nick!\r\n>>>>>>\r\n>>>>>> Not sure what time zone you are in, I\'m in MTN so I\'ll offer the\r\n>>>>>> following:\r\n>>>>>>\r\n>>>>>> Mon 19May:\r\n>>>>>> 4pm\r\n>>>>>> 5pm\r\n>>>>>>\r\n>>>>>> Tues, 20May\r\n>>>>>> 5pm\r\n>>>>>>\r\n>>>>>> Wed, 21May:\r\n>>>>>> 9am\r\n>>>>>> 10am\r\n>>>>>> 3pm\r\n>>>>>> 4pm\r\n>>>>>>\r\n>>>>>> Andy Yakulis, CEO\r\n>>>>>>\r\n>>>>>> andy@tfvector.com\r\n>>>>>>\r\n>>>>>> <https://www.tfvector.com/>\r\n>>>>>>\r\n>>>>>>\r\n>>>>>>\r\n>>>>>>\r\n>>>>>> On Thu, May 15, 2025 at 5:37 AM Rick <rick@mavrix.one> wrote:\r\n>>>>>>\r\n>>>>>>> Andy,\r\n>>>>>>>\r\n>>>>>>> Nic Vandre said to reach out.\r\n>>>>>>> I’ve followed your work a bit over time, but recently,\r\n>>>>>>> I\'ve come into an opportunity where I think I can help make a\r\n>>>>>>> difference.\r\n>>>>>>>\r\n>>>>>>> I’d love to schedule a call sometime this week or next\r\n>>>>>>> to see how I might help with your open round of investment.\r\n>>>>>>>\r\n>>>>>>> Please let me know what’s most convenient and then let’s jump on a\r\n>>>>>>> call!\r\n>>>>>>>\r\n>>>>>>> Thank you for your time and consideration,\r\n>>>>>>> Rick\r\n>>>>>>>\r\n>>>>>>> Rick Mislan, PhD\r\n>>>>>>> https://mavrix.one\r\n>>>>>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>>>>> https://mislan.com <https://ww.mislan.com>\r\n>>>>>>>\r\n>>>>>>>',0,0,0,0,0,0,'2025-05-21 17:31:09','2025-12-09 19:03:12','2025-12-09 19:03:12','2025-12-09 19:03:12',NULL,NULL,NULL),
(277,4,'<CAGgBgfBVGfFXJwr6+Qyb+konQoJkC_V4M8_7cpZW_soS5UhQKg@mail.gmail.com>',NULL,NULL,'Re: Seen these?','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">Rick:</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">This is the kind of product line they&#39;d end up with, except we&#39;d have specific airframes and motors and it would all be US-based.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">They have an ESC that is US-based for $200 and a FCC for $1300.  This is the kind of thing we&#39;d plot out.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">All the peripherals would be mapped out, although not necessarily designed for your client.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">You probably won&#39;t be able to find this guy being able to sell his company for less than $1 million, but it would be an excellent start to buy a handful of these peripherals and borrow some of their marketing thoughts.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">We&#39;ve managed to put more than 4 man-days into what you were looking for and we sent it to you.  </div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Let me know if we&#39;re moving forward, or if I need to add/subtract anything from the document.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">It&#39;s all in your hands now.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">-- Tom</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"></div></div><br><div><br></div></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, May 21, 2025 at 8:55 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div id=\"m_-4072441164874672331bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><a href=\"https://www.modalai.com/collections/built-in-the-usa\" target=\"_blank\">https://www.modalai.com/collections/built-in-the-usa</a><br></div><div id=\"m_-4072441164874672331bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><br></div><br><div id=\"m_-4072441164874672331bloop_sign_1747832012616983040\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div>\r\n\r\n\r\n</blockquote></div>','Rick:\r\n\r\nThis is the kind of product line they\'d end up with, except we\'d have\r\nspecific airframes and motors and it would all be US-based.\r\n\r\nThey have an ESC that is US-based for $200 and a FCC for $1300.  This is\r\nthe kind of thing we\'d plot out.\r\n\r\nAll the peripherals would be mapped out, although not necessarily designed\r\nfor your client.\r\n\r\nYou probably won\'t be able to find this guy being able to sell his company\r\nfor less than $1 million, but it would be an excellent start to buy a\r\nhandful of these peripherals and borrow some of their marketing thoughts.\r\n\r\n\r\n\r\nWe\'ve managed to put more than 4 man-days into what you were looking for\r\nand we sent it to you.\r\n\r\nLet me know if we\'re moving forward, or if I need to add/subtract anything\r\nfrom the document.\r\n\r\nIt\'s all in your hands now.\r\n\r\n-- Tom\r\n\r\n\r\n\r\n\r\nOn Wed, May 21, 2025 at 8:55 AM Rick <rick@mavrix.one> wrote:\r\n\r\n> https://www.modalai.com/collections/built-in-the-usa\r\n>\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>',0,0,0,0,0,0,'2025-05-21 17:32:42','2025-12-09 19:03:13','2025-12-09 19:03:13','2025-12-09 19:03:13',NULL,NULL,NULL),
(278,4,'<CAGgBgfAy8Pg9Sfg7LPC2BVqU4NYWrRNxQQDMFFNyetBit=RUjA@mail.gmail.com>',NULL,NULL,'Re: Seen these?','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">By the way, keep in mind that we&#39;re trying to source everything here.  </div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">The products on that site are bleeding with parts that are not sourced in the United States.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">We&#39;re going to be fighting the same problem.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Our Gen 4 will be approaching parts that are only accessible in the United States.  It might be the Gen 5 before it&#39;s the version where only the US is able to build it.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">That&#39;s part of the secret sauce.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">-- Tom</div><div class=\"gmail_default\" style=\"font-size:small\"></div></div><br><div><br></div></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, May 21, 2025 at 1:32 PM Thomas Pownall &lt;<a href=\"mailto:tpownall@cadxservices.com\">tpownall@cadxservices.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">Rick:</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">This is the kind of product line they&#39;d end up with, except we&#39;d have specific airframes and motors and it would all be US-based.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">They have an ESC that is US-based for $200 and a FCC for $1300.  This is the kind of thing we&#39;d plot out.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">All the peripherals would be mapped out, although not necessarily designed for your client.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">You probably won&#39;t be able to find this guy being able to sell his company for less than $1 million, but it would be an excellent start to buy a handful of these peripherals and borrow some of their marketing thoughts.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">We&#39;ve managed to put more than 4 man-days into what you were looking for and we sent it to you.  </div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Let me know if we&#39;re moving forward, or if I need to add/subtract anything from the document.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">It&#39;s all in your hands now.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">-- Tom</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"></div></div><br><div><br></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, May 21, 2025 at 8:55 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div id=\"m_6622690752616931131m_-4072441164874672331bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><a href=\"https://www.modalai.com/collections/built-in-the-usa\" target=\"_blank\">https://www.modalai.com/collections/built-in-the-usa</a><br></div><div id=\"m_6622690752616931131m_-4072441164874672331bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><br></div><br><div id=\"m_6622690752616931131m_-4072441164874672331bloop_sign_1747832012616983040\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div>\r\n\r\n\r\n</blockquote></div>\r\n</blockquote></div>','By the way, keep in mind that we\'re trying to source everything here.\r\n\r\nThe products on that site are bleeding with parts that are not sourced in\r\nthe United States.\r\n\r\nWe\'re going to be fighting the same problem.\r\n\r\nOur Gen 4 will be approaching parts that are only accessible in the United\r\nStates.  It might be the Gen 5 before it\'s the version where only the US is\r\nable to build it.\r\n\r\nThat\'s part of the secret sauce.\r\n\r\n-- Tom\r\n\r\n\r\n\r\nOn Wed, May 21, 2025 at 1:32 PM Thomas Pownall <tpownall@cadxservices.com>\r\nwrote:\r\n\r\n> Rick:\r\n>\r\n> This is the kind of product line they\'d end up with, except we\'d have\r\n> specific airframes and motors and it would all be US-based.\r\n>\r\n> They have an ESC that is US-based for $200 and a FCC for $1300.  This is\r\n> the kind of thing we\'d plot out.\r\n>\r\n> All the peripherals would be mapped out, although not necessarily designed\r\n> for your client.\r\n>\r\n> You probably won\'t be able to find this guy being able to sell his company\r\n> for less than $1 million, but it would be an excellent start to buy a\r\n> handful of these peripherals and borrow some of their marketing thoughts.\r\n>\r\n>\r\n>\r\n> We\'ve managed to put more than 4 man-days into what you were looking for\r\n> and we sent it to you.\r\n>\r\n> Let me know if we\'re moving forward, or if I need to add/subtract anything\r\n> from the document.\r\n>\r\n> It\'s all in your hands now.\r\n>\r\n> -- Tom\r\n>\r\n>\r\n>\r\n>\r\n> On Wed, May 21, 2025 at 8:55 AM Rick <rick@mavrix.one> wrote:\r\n>\r\n>> https://www.modalai.com/collections/built-in-the-usa\r\n>>\r\n>>\r\n>> Rick Mislan, PhD\r\n>> https://mavrix.one\r\n>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>\r\n>',0,0,0,0,0,0,'2025-05-21 17:36:01','2025-12-09 19:03:13','2025-12-09 19:03:13','2025-12-09 19:03:13',NULL,NULL,NULL),
(279,4,' <CH2PR16MB3431F35B8F0EBA1822E85F63FE9EA@CH2PR16MB3431.namprd16.prod.outlook.com>',NULL,NULL,'Re: Next steps!','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nRick,&nbsp;<br>\r\n<br>\r\nPlease find attached a high-level investment teaser with an overview of our recent transaction, equipment purchase, facility layout and letters of support for our manufacturing aspirations from Mayor Castor, who\'s support has been instrumental in our project,\r\n as well as from our clients (volume of around ~$14.8m) for your review. Please let me know if any questions and we look forward to hearing your interest level.&nbsp;</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nBest,&nbsp;</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"Signature\" class=\"elementToProof\">\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color: rgb(0, 36, 81); margin: 0px;\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color: rgb(0, 36, 81); margin: 0px;\">.com</a></u></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a href=\"https://lithiumbatterycompany.com/\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color: rgb(0, 36, 81); margin: 0px;\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, May 20, 2025 4:00 PM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">NDAs in place, next steps…</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Let me know what\'s best for your team.&nbsp;</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On May 15, 2025 at 8:17:14 AM, Rick (<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Sounds good.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Hope we can help you sooner rather than later!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">All my best,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On May 14, 2025 at 1:53:19 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div>\r\n<div dir=\"ltr\">Rick, apologies for the delay - after our call yesterday we were engaged by the Shell Corporation and today we are receiving an award at the Florida SBDC event so have been in meetings nearly constantly and I fell behind on kicking over the MNDA.\r\n It’s first on my to-do list after this event!</div>\r\n</div>\r\n<div id=\"x_ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"x_ms-outlook-mobile-signature\">\r\n<div></div>\r\n</div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, May 13, 2025 9:02:50 AM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nGot it! Will be there.. thanks!</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div id=\"x_x_bloop_sign_1747141266137078016\" class=\"x_x_bloop_sign\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_airmail_on\">On May 13, 2025 at 8:59:30 AM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick,&nbsp;</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nYes, 10am this morning - I just resent the zoom invite. Look forward to speaking soon</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_Signature\" class=\"x_x_elementToProof\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWAa99fda94-e056-c619-a196-a33c2ff2877b\" class=\"x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA098259f9-2a26-ebbc-a687-62be0f9f5580\" class=\"x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" id=\"OWA6dd24376-6350-4d35-05a2-83112c570eec\" class=\"x_x_OWAAutoLink\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_appendonsend\"></div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block; width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Rick<br>\r\n<b>Sent:</b>&nbsp;Tuesday, May 13, 2025 7:28 AM<br>\r\n<b>To:</b>&nbsp;Jarrett Brownfield<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps! </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div>Not sure if I responded accurately.&nbsp;</div>\r\n<div>I’m open at 10a today if that works.&nbsp;</div>\r\n<div>Thanks!</div>\r\n<div>Rick</div>\r\n<div><br>\r\n</div>\r\n<div>Rick Mislan, PhD</div>\r\n<div>[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one</div>\r\n<div><img height=\"11\" style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n<p style=\"color:rgb(0,0,0)\">On May 12, 2025 at 2:26:32 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\" id=\"OWA6fe9a5f9-a715-dff3-4833-c48bb98fbcc5\" class=\"x_x_OWAAutoLink\" style=\"margin-top:0px; margin-bottom:0px\">jarrett@lithiumbatterycompany.com</a>)\r\n wrote:</p>\r\n<blockquote>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nWe enjoyed meeting with you as well and thanks for circling back - please find below availability and we look forward to speaking:<br>\r\n<br>\r\n(all times EST)<br>\r\nToday:&nbsp; 3-4:30pm<br>\r\nTuesday (5.13): 930-11am || 1130am-1pm<br>\r\nWednesday (5.14): 10am-1130<br>\r\nThursday (5.15): 12-3pm&nbsp;<br>\r\nFriday (5.16): 9am-3pm<br>\r\n<br>\r\n<br>\r\nBest,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_x_Signature\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner</span>\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">\r\nI Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA85b348c0-ceb1-fac7-e499-95d5a963cc38\" class=\"x_x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA9b7813f6-bff5-7b2b-9efa-d558ec60b684\" class=\"x_x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" id=\"OWA93baa47e-fc9a-556d-beba-278bafbdf824\" class=\"x_x_x_OWAAutoLink\" title=\"https://lithiumbatterycompany.com/\" data-auth=\"NotApplicable\" data-linkindex=\"10\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_x_appendonsend\"></div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_x_x_divRplyFwdMsg\" dir=\"ltr\"><span style=\"font-family:Calibri,sans-serif; font-size:11pt; color:rgb(0,0,0)\"><b>From:</b>&nbsp;Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b>&nbsp;Sunday, May 11, 2025 9:18 AM<br>\r\n<b>To:</b>&nbsp;nathan@lithiumbatterycompany.com &lt;nathan@lithiumbatterycompany.com&gt;; jordan@lithiumbatterycompany.com &lt;jordan@lithiumbatterycompany.com&gt;; ronald@lithiumbatterycompany.com &lt;ronald@lithiumbatterycompany.com&gt;; jarrett@lithiumbatterycompany.com &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps!</span>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Ok, following up again,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">this time for a request&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">to discuss next steps.</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Interested in money? :)</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Let’s set up a time to chat soon.</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Thanks,</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Rick Mislan, PhD</div>\r\n<div style=\"direction:ltr\"><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" id=\"OWA6f2250de-935b-77bd-ce88-2cfb3cbe652e\" class=\"x_x_OWAAutoLink\" data-auth=\"NotApplicable\">https://mavrix.one</a></div>\r\n<div style=\"direction:ltr\"><img height=\"11\" style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr\">On May 8, 2025 at 1:33:01 PM, Rick (<a href=\"mailto:rick@mavrix.one\" id=\"OWA44b57871-3029-0cf0-fc3a-86d620da512e\" class=\"x_x_OWAAutoLink\" style=\"margin-top:0px; margin-bottom:0px\">rick@mavrix.one</a>) wrote:</p>\r\n<blockquote>\r\n<div style=\"direction:ltr; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<span style=\"background-color:rgb(255,255,255)\">Gentlemen,</span></div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nA pleasure meeting you all!</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nJust wanted to let you know that</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nI am talking to my team <a href=\"http://airmail.calendar/2025-05-11%2019:00:00%20EDT\" id=\"OWA8867e85c-bf8e-41be-d815-e78244229e9c\" class=\"x_x_OWAAutoLink\" data-auth=\"NotApplicable\">\r\ntonight</a></div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nhere in Treasure Island.&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nMy goal for <a href=\"http://airmail.calendar/2025-05-11%2019:00:00%20EDT\" id=\"OWA7aced99c-5963-164f-8e4a-9d96675a373f\" class=\"x_x_OWAAutoLink\" data-auth=\"NotApplicable\">\r\ntonight</a>&nbsp;is to</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\ndiscuss the mavrix&nbsp;portfolio and</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nplan out a schedule of calls</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nwith you for next steps.&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nAgain, I truly enjoyed meeting&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nand chatting with you all!&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nI’ll be in touch next week!</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nAll my best,</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nRick</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Rick,\r\n\r\nPlease find attached a high-level investment teaser with an overview of our recent transaction, equipment purchase, facility layout and letters of support for our manufacturing aspirations from Mayor Castor, who\'s support has been instrumental in our project, as well as from our clients (volume of around ~$14.8m) for your review. Please let me know if any questions and we look forward to hearing your interest level.\r\n\r\nBest,\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, May 20, 2025 4:00 PM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nNDAs in place, next steps…\r\nLet me know what\'s best for your team.\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 15, 2025 at 8:17:14 AM, Rick (rick@mavrix.one<mailto:rick@mavrix.one>) wrote:\r\n\r\nSounds good.\r\nHope we can help you sooner rather than later!\r\nAll my best,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 14, 2025 at 1:53:19 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nRick, apologies for the delay - after our call yesterday we were engaged by the Shell Corporation and today we are receiving an award at the Florida SBDC event so have been in meetings nearly constantly and I fell behind on kicking over the MNDA. It’s first on my to-do list after this event!\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, May 13, 2025 9:02:50 AM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nGot it! Will be there.. thanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 13, 2025 at 8:59:30 AM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nYes, 10am this morning - I just resent the zoom invite. Look forward to speaking soon\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n\r\n________________________________\r\nFrom: Rick\r\nSent: Tuesday, May 13, 2025 7:28 AM\r\nTo: Jarrett Brownfield\r\nSubject: Re: Next steps!\r\n\r\nNot sure if I responded accurately.\r\nI’m open at 10a today if that works.\r\nThanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\n[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one\r\n[X]\r\n\r\nOn May 12, 2025 at 2:26:32 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nWe enjoyed meeting with you as well and thanks for circling back - please find below availability and we look forward to speaking:\r\n\r\n(all times EST)\r\nToday:  3-4:30pm\r\nTuesday (5.13): 930-11am || 1130am-1pm\r\nWednesday (5.14): 10am-1130\r\nThursday (5.15): 12-3pm\r\nFriday (5.16): 9am-3pm\r\n\r\n\r\nBest,\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Sunday, May 11, 2025 9:18 AM\r\nTo: nathan@lithiumbatterycompany.com <nathan@lithiumbatterycompany.com>; jordan@lithiumbatterycompany.com <jordan@lithiumbatterycompany.com>; ronald@lithiumbatterycompany.com <ronald@lithiumbatterycompany.com>; jarrett@lithiumbatterycompany.com <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nOk, following up again,\r\nthis time for a request\r\nto discuss next steps.\r\n\r\nInterested in money? :)\r\nLet’s set up a time to chat soon.\r\n\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 8, 2025 at 1:33:01 PM, Rick (rick@mavrix.one<mailto:rick@mavrix.one>) wrote:\r\n\r\nGentlemen,\r\n\r\nA pleasure meeting you all!\r\n\r\nJust wanted to let you know that\r\nI am talking to my team tonight<http://airmail.calendar/2025-05-11%2019:00:00%20EDT>\r\nhere in Treasure Island.\r\n\r\nMy goal for tonight<http://airmail.calendar/2025-05-11%2019:00:00%20EDT> is to\r\ndiscuss the mavrix portfolio and\r\nplan out a schedule of calls\r\nwith you for next steps.\r\n\r\nAgain, I truly enjoyed meeting\r\nand chatting with you all!\r\n\r\nI’ll be in touch next week!\r\n\r\nAll my best,\r\nRick\r\n\r\n',0,0,0,0,0,0,'2025-05-21 19:34:08','2025-12-09 19:03:17','2025-12-09 19:03:17','2025-12-09 19:03:17',NULL,NULL,NULL),
(280,4,'<1335552422.3864.1747857426177@mail.yahoo.com>',NULL,NULL,'Re: Next mtg.','kennerly.john@yahoo.com','John Kennerly','<html><head></head><body><div class=\"ydpf5103f47yahoo-style-wrap\" style=\"font-family:Helvetica Neue, Helvetica, Arial, sans-serif;font-size:16px;\"><div></div>\r\n        <div dir=\"ltr\" data-setdir=\"false\">6pm This Thursday works, I\'ll get the signed NDA back to you before we start.</div><div dir=\"ltr\" data-setdir=\"false\"><br></div><div dir=\"ltr\" data-setdir=\"false\">John kennerly<br></div><div><br></div>\r\n        \r\n        <div id=\"ydpf5103f47yahoo_quoted_7953858104\" class=\"ydpf5103f47yahoo_quoted\">\r\n            <div style=\"font-family:\'Helvetica Neue\', Helvetica, Arial, sans-serif;font-size:13px;\">\r\n                \r\n                <div>\r\n                    On Tuesday, May 20, 2025 at 08:52:58 PM EDT, Rick &lt;rick@mavrix.one&gt; wrote:\r\n                </div>\r\n                <div><br></div>\r\n                <div><br></div>\r\n                <div><div id=\"ydpf5103f47yiv8211447698\">\r\n    <div id=\"ydpf5103f47yiv8211447698bloop_customfont\" style=\"font-family:Helvetica, Arial;font-size:13px;margin:0px;\">Hi John,&nbsp;</div><div id=\"ydpf5103f47yiv8211447698bloop_customfont\" style=\"font-family:Helvetica, Arial;font-size:13px;margin:0px;\">Thanks for the re-connect today.</div>Let’s shoot for this Thursday at 6p&nbsp;<div><div id=\"ydpf5103f47yiv8211447698bloop_sign_1747788486926599936\" class=\"ydpf5103f47yiv8211447698bloop_sign\"><a href=\"https://meet.google.com/rug-ccvn-qwb\" rel=\"nofollow\" target=\"_blank\">https://meet.google.com/rug-ccvn-qwb</a></div><div id=\"ydpf5103f47yiv8211447698bloop_sign_1747788486926599936\" class=\"ydpf5103f47yiv8211447698bloop_sign\"><br></div><div id=\"ydpf5103f47yiv8211447698bloop_sign_1747788486926599936\" class=\"ydpf5103f47yiv8211447698bloop_sign\">Also, attached is an NDA: please sign and return at your leisure.</div><div id=\"ydpf5103f47yiv8211447698bloop_sign_1747788486926599936\" class=\"ydpf5103f47yiv8211447698bloop_sign\">Let me know if you need anything else.</div><div id=\"ydpf5103f47yiv8211447698bloop_sign_1747788486926599936\" class=\"ydpf5103f47yiv8211447698bloop_sign\">Thanks,<br></div><div id=\"ydpf5103f47yiv8211447698bloop_sign_1747788486926599936\" class=\"ydpf5103f47yiv8211447698bloop_sign\">Rick</div><div id=\"ydpf5103f47yiv8211447698bloop_sign_1747788486926599936\" class=\"ydpf5103f47yiv8211447698bloop_sign\"><br></div><div id=\"ydpf5103f47yiv8211447698bloop_sign_1747788486926599936\" class=\"ydpf5103f47yiv8211447698bloop_sign\">Rick Mislan, PhD<br><div><a>https://mavrix.one</a></div><div><img style=\"\" data-inlineimagemanipulating=\"true\" data-id=\"1747857373849\"></div>\r\n     \r\n</div>\r\n\r\n\r\n</div></div></div>\r\n            </div>\r\n        </div></div><div id=\"DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2\"><br><table style=\"border-top: 1px solid #D3D4DE;\"><tr><td style=\"width: 55px; padding-top: 13px;\"><a href=\"https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail\" target=\"_blank\"><img src=\"https://s-install.avcdn.net/ipm/preview/icons/icon-envelope-tick-round-orange-animated-no-repeat-v1.gif\" alt=\"\" width=\"46\" height=\"29\" style=\"width: 46px; height: 29px;\"></a></td><td style=\"width: 470px; padding-top: 12px; color: #41424e; font-size: 13px; font-family: Arial, Helvetica, sans-serif; line-height: 18px;\">Virus-free.<a href=\"https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail\" target=\"_blank\" style=\"color: #4453ea;\">www.avast.com</a></td></tr></table><a href=\"#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2\" width=\"1\" height=\"1\"></a></div></body></html>',' 6pm This Thursday works, I\'ll get the signed NDA back to you before we start.\r\nJohn kennerly\r\n\r\n    On Tuesday, May 20, 2025 at 08:52:58 PM EDT, Rick <rick@mavrix.one> wrote:  \r\n \r\n  Hi John, Thanks for the re-connect today.Let’s shoot for this Thursday at 6p https://meet.google.com/rug-ccvn-qwb\r\nAlso, attached is an NDA: please sign and return at your leisure.Let me know if you need anything else.Thanks,\r\nRick\r\nRick Mislan, PhD\r\nhttps://mavrix.one   \r\n\r\n|  | Virus-free.www.avast.com |',0,0,0,0,0,0,'2025-05-21 19:57:06','2025-12-09 19:03:18','2025-12-09 19:03:18','2025-12-09 19:03:18',NULL,NULL,NULL),
(281,4,'<templateID=069292b0-9871-4018-bb90-d0b5b39f8ba5--account=60f7b6c1-712f-4754-ab54-5ecba433a7b3--messageID=34277b4f-56d9-451e-b8c7-bbc0950694f9--productTags=Filings+kjnvoihdf,Stageline+kjnvoihdf,Documents+kjnvoihdf@wyregisteredagent.net>',NULL,NULL,'Your Company has been Filed, View Documents','agent@wyregisteredagent.net','Buffalo Registered Agents LLC','<div style=\"width: 100%; max-width: 531px; margin: 0 auto; padding: 1.5em 0; border: 1px solid #f1f1f1; font-family: Roboto, sans-serif;\">\r\n<p style=\"display: none;\">https://accounts.wyregisteredagent.net/redirect-v2/stageline-v2/f89ea658-f74d-4803-a8b6-1e27ff69634e/slide/ae087cf9-bc55-41c6-872b-dbbed2beb0b9?source=formation-document-uploaded</p>\r\n<p style=\"display: none;\"></p>\r\n<p></p>\r\n<div style=\"display: flex; flex-direction: column; max-width: 45em; padding: 0 2em; width: auto;\">\r\n<div style=\"display: table; margin-bottom: 1em;\">\r\n<div style=\"display: table-cell; vertical-align: middle;\">\r\n<h1 style=\"font-size: 2.3em;\" data-renderer-start-pos=\"593\">Congratulations&mdash;your business formation is complete!</h1>\r\n</div>\r\n<div style=\"display: table-cell; vertical-align: middle;\">\r\n<div style=\"max-width: 16em;\"><img style=\"display: inline-block; vertical-align: middle; margin: 0 2em 2em 0;\" src=\"https://event-notifications-images.s3.us-east-2.amazonaws.com/Product+Card+Illustrations.png\" alt=\"Company Document Uploaded\" width=\"150\"></div>\r\n</div>\r\n</div>\r\n<p data-renderer-start-pos=\"752\">Your formation document is one of your business&rsquo;s most critical documents. It shows proof of the creation of your business entity<strong data-renderer-mark=\"true\">,</strong> and is needed to do the following:</p>\r\n<ul style=\"list-style-type: disc;\" data-indent-level=\"1\">\r\n<li>\r\n<p data-renderer-start-pos=\"920\">Open a business bank account</p>\r\n</li>\r\n<li>\r\n<p data-renderer-start-pos=\"920\">Apply for business financing, accounts, or insurance</p>\r\n</li>\r\n<li>\r\n<p data-renderer-start-pos=\"1008\">Obtain licensing and other permits needed to operate and grow your business</p>\r\n</li>\r\n</ul>\r\n<div style=\"display: flex; flex-direction: row; justify-content: center;\">\r\n<p><a style=\"display: table; background: #2FB2AE; padding: 1em 2.5em; border-radius: 3px; color: #fff; text-decoration: none; text-align: center; margin: 3em auto;\" href=\"https://email.wyregisteredagent.net/c/eJxsUs2O1DwQfJrk8qlX_mn_HXL4YBiJCxe4I7fdzprNJEPiBPbt0c7OIoE4WVWu6u5Sdx6UxIIy9jxIh85baYLu-eC5fa15SNlQCkKAF6QB2VkIDj346IgtylKU6R8HIXIwOjirgyOHWVli71UpaHRyBfs6NL5cp9j446nTJ2GDCooEBO8koJAeiIKALMiQDsVTNAAxpWWfW6dPVhRHNklwUhVAZxAiGQTDiSJqHR1pgAtvWxxfO2hUzhEWMDYHQCMZyCcHREkEI2zAEgCu65L31L7Ecev06VynOo9bp949fZuPpT7m0qn3n1sceaoz_8WflrRfeG5_6lH8eF55rFvjlXMceW4PM7d-Gh5bu26d_r9T506d79m2h3_KO3VeOdeVU4NDdeq8vQ3xCosPHK3xUBxmQC80RE8WJCtXig1WI7-4pppf3sjCu1QCUDIGUCYL3imCTMRZEZOg0Onztuxr4k6fyrJeYqvLDPkeEvbrtMTMuZ-WEeK1whM_Dz6wtMgahFIZ0CoPwSgCaYrFokiQKHfDdfjwclP_fVpaLTXdqm-3P56P4b6Husw3auP1qImH7zvv_Ib6dVhreupQXOKx1p8Py8x9G1JsPC7r82_ZMahfAQAA__-PweWa\" aria-invalid=\"true\">View Document</a></p>\r\n</div>\r\n<p>&nbsp;</p>\r\n<div><div style=\"margin: 2.0em 0 1.0em 0; text-align: center;\">\r\n<p style=\"margin: 0; padding-bottom: 0.4em; font-size: 0.75em; font-weight: bold;\">Buffalo Registered Agents LLC</p>\r\n<p style=\"margin: 0; padding-bottom: 0.4em; font-size: 0.625em; font-weight: 400;\">412 N Main St Suite 100, &nbsp;Buffalo, Wyoming 82834</p>\r\n<p style=\"margin: 0; padding-bottom: 0.4em; font-size: 0.625em; font-weight: 400; color: black;\">T: 307-554-1800 | agent@wyregisteredagent.net</p>\r\n<p style=\"margin: 0; font-size: 0.625em; font-weight: 400;\"><a style=\"color: black; text-decoration: underline;\" href=\"https://email.wyregisteredagent.net/c/eJx0kU2P0zAQhn9NckFT-WNsxwdfoCBx4QJ35LHHWdPWKYmb0n-PWBYkkPY47_OMRqM3ByWxoIwjB-nQTVYar0feufWvNYeUDSUvBEyCNCA7C97hBFN0xBZlKcqMT0HmHK2O0uviikc2ZhKeNKnCXmVNYw2dL9dz7PzxOOijsF55RQL85CSgkBMQeQFZkCHty0TRAMSUllvrgz5aURzZJMFJVQCdQYhkEAwniqh1dKQBLrxtcf59QaNyjrCAsdkDGslAU3JAlIQ3wnosHuC6LvmW-pc4b4M-fqjn2uZtUG9P39q-1KdcBvXuc48zn2vj__Ljkm4Xbv1fH8X9sfJct84r5zhz64fGfTyH-_1-eIUtM8RrhRM_wuRZWmQNQqkMaNUE3igCaYrFokiQKC8L1_D-V01vPi29lppir0vbnhm3Pby8Vpf2HG287jVx-H7jG_-ZxjWsNZ0GFJe4r_XHYWk89pBi53lZH3-1PaifAQAA__8HnbAE\" aria-invalid=\"true\">www.wyregisteredagent.net</a></p>\r\n</div></div>\r\n</div>\r\n</div><img width=\"1\" height=\"1\" alt=\"\" src=\"https://email.wyregisteredagent.net/o/eJxckcuOFDsMhp-manPkUS7ObZHNoUFiwwb2KE6cmtDdqaYqXdBvjxgGJFj682f5l_4SlcSKMs0cpUPnrTRBz3xwH59bibkYykEI8II0IDsLwaEHnxyxRVmrMvNzTNaGYItUiA4xoy7ZZBbstSgmU5hbHHy9XdLg96dJn4QNKigSELyTgEJ6IAoCiiBDOlRPyQCknNd7H5M-WVEd2SzBSVUBnUFIZBAMZ0qodXKkAa6872n59UGjco6wgrElABrJQD47IMoiGGED1gBw29Zyz-NTWvZJn961S-vLPqn_z1_6sbbnUif15uNIC19a53_4ac33K_fxt4_i22Pjpe2DNy5p4T6eOo_5si6Qbg3O_Ig-sLTIGoRSBdAqD8EoAmmqxapIkKivB7f49mcV_31YR6stp9HWvr_suB_xNX5b-wvaeTta5vj1znf-Pc1b3Fo-Tyiu6dja96e18zxiToOXdXv80Y6ofgQAAP__z62knw\">\r\n','\r\nhttps://accounts.wyregisteredagent.net/redirect-v2/stageline-v2/f89ea658-f74d-4803-a8b6-1e27ff69634e/slide/ae087cf9-bc55-41c6-872b-dbbed2beb0b9?source=formation-document-uploaded\r\n\r\n\r\n\r\n\r\n\r\nCongratulations&mdash;your business formation is complete!\r\n\r\n\r\n\r\n\r\n\r\nYour formation document is one of your business&rsquo;s most critical documents. It shows proof of the creation of your business entity, and is needed to do the following:\r\n\r\n\r\nOpen a business bank account\r\n\r\n\r\nApply for business financing, accounts, or insurance\r\n\r\n\r\nObtain licensing and other permits needed to operate and grow your business\r\n\r\n\r\n\r\nView Document\r\n\r\n&nbsp;\r\n\r\nBuffalo Registered Agents LLC\r\n412 N Main St Suite 100, &nbsp;Buffalo, Wyoming 82834\r\nT: 307-554-1800 | agent@wyregisteredagent.net\r\nwww.wyregisteredagent.net\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-05-21 21:06:33','2025-12-09 19:03:18','2025-12-09 19:03:18','2025-12-09 19:03:18',NULL,NULL,NULL),
(282,4,'<CAB5cvoy8Eng25O96Zhxk6Q_w-shU8kha9-40ttVAWfh_U7SKuw@mail.gmail.com>',NULL,NULL,'=?UTF-8?Q?Re=3A_via_Nic_Vandre=2D_Open_Round=E2=80=A6?=','andy@tfvector.com','Andy Yakulis','<div dir=\"ltr\"><div>Thanks Rick,</div><div><br></div><div>TO clarify... you meant 10 or 100m investment into the company? (at my 200m valuation)?</div><div><br></div><div>I&#39;ll bring my assistant on another thread to schedule time.</div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><span><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:#776b6c;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap\">Andy Yakulis</span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap\">, </span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\"><font color=\"#9a000a\">CEO</font></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:#141414;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap\"><a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" style=\"text-decoration:none\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:#1155cc;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;vertical-align:baseline;white-space:pre;white-space:pre-wrap\"><span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\"><img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left:0px;margin-top:0px\"></span></span></a></p><div><br></div></span><div></div><div><br></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, May 21, 2025 at 7:06 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div>Andy,<div>Thank you for your time and interest today!</div><div>I enjoyed the conversation and appreciate your efforts!</div><div>Let me know what works best for your Wednesday-Friday next week.  I’ll have Brian join us. </div><div>Also, as a follow up, my guys says we could do 10 or 100…</div><div>We will work towards a demo asap!</div><div><br></div><div>I look forward to talking again soon!</div><div><br></div><div>Thanks again,<br></div><div>Rick</div><div> <br><div class=\"gmail_signature\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div> <p class=\"gmail_quote\" style=\"color:rgb(0,0,0)\">On May 21, 2025 at 1:31:09 PM, Tory Roberts (<a href=\"mailto:tory@tfvector.com\" target=\"_blank\">tory@tfvector.com</a>) wrote:</p> <blockquote type=\"cite\" class=\"gmail_quote\"><span><div></div><div>\r\n\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div><br></div></div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div><div><blockquote type=\"cite\" class=\"gmail_quote\"><div><div><div dir=\"ltr\"><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><br></p></div></div></div></div>\r\n<br>\r\n<div class=\"gmail_quote\">\r\n<div dir=\"ltr\" class=\"gmail_attr\">On Sat, May 17, 2025 at 7:02 AM\r\nRick &lt;rick@mavrix.one&gt; wrote:<br></div>\r\n<blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div>Wednesday at 11 works as well. \r\n<div>Thanks!</div>\r\n<div>Rick<br>\r\n<br>\r\n<div class=\"gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div><img style=\"height: 11px;\"></div>\r\n</div>\r\n<p class=\"gmail_quote\" style=\"color:rgb(0,0,0)\">On May 16, 2025 at\r\n8:54:45 PM, Andy Yakulis (<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"gmail_quote\">\r\n<div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div><span>Rick,</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Sorry, 4pm EST monday got filled up as we were\r\ncoordinating. How&#39;s Wed morning? 11am EST?</span></div>\r\n<div>\r\n<div dir=\"ltr\" class=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\">\r\n<span><span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(119,107,108);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\nAndy Yakulis</span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">,</span>\r\n<span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<font color=\"#9A000A\">CEO</font></span></span></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(20,20,20);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" style=\"text-decoration:none\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:rgb(17,85,204);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;vertical-align:baseline;white-space:pre-wrap\">\r\n<span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\">\r\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left: 0px; margin-top: 0px;\"></span></span></a></p>\r\n<div><br></div>\r\n<div><br></div>\r\n</div>\r\n</div>\r\n</div>\r\n<br></div>\r\n<br>\r\n<div class=\"gmail_quote\">\r\n<div dir=\"ltr\" class=\"gmail_attr\">On Fri, May 16, 2025 at 5:49 AM\r\nRick &lt;rick@mavrix.one&gt; wrote:<br></div>\r\n<blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div id=\"m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\nThanks, Andy!</div>\r\n<div id=\"m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Let’s\r\ndo your first time slot on Monday at 4p.</div>\r\n<div id=\"m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">I’m\r\nin NY, so EST.</div>\r\n<div id=\"m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">You\r\nwant a Zoom/Teams/Meet link?</div>\r\n<div id=\"m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\nAppreciate the connect!</div>\r\n<div id=\"m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\nRick</div>\r\n<br>\r\n<div id=\"m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_sign_1747396037540008960\">\r\nRick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div><img style=\"height: 11px;\"></div>\r\n</div>\r\n<br>\r\n<p>On May 16, 2025 at 12:20:03 AM, Andy Yakulis (<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a>)\r\nwrote:</p>\r\n<blockquote type=\"cite\">\r\n<div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div><span>Rick</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Thank you for reaching out! Absolutely interested in\r\nspeaking with you especially if you know Nick!</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Not sure what time zone you are in, I&#39;m in MTN so I&#39;ll\r\noffer the following:</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Mon 19May:</span></div>\r\n<div><span>4pm</span></div>\r\n<div><span>5pm</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Tues, 20May</span></div>\r\n<div><span>5pm</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Wed, 21May:</span></div>\r\n<div><span>9am</span></div>\r\n<div><span>10am</span></div>\r\n<div><span>3pm</span></div>\r\n<div><span>4pm</span></div>\r\n<div>\r\n<div dir=\"ltr\" class=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\">\r\n<span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(119,107,108);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\nAndy Yakulis</span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">,</span>\r\n<span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<font color=\"#9A000A\">CEO</font></span></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(20,20,20);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" style=\"text-decoration:none\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:rgb(17,85,204);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;vertical-align:baseline;white-space:pre-wrap\">\r\n<span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\">\r\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left: 0px; margin-top: 0px;\"></span></span></a></p>\r\n<div><br></div>\r\n<div><br></div>\r\n</div>\r\n</div>\r\n</div>\r\n<br></div>\r\n<br>\r\n<div class=\"gmail_quote\">\r\n<div dir=\"ltr\" class=\"gmail_attr\">On Thu, May 15, 2025 at 5:37 AM\r\nRick &lt;rick@mavrix.one&gt; wrote:<br></div>\r\n<blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Andy,</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">\r\n<br></div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Nic Vandre\r\nsaid to reach out.</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">I’ve\r\nfollowed your work a bit over time, but recently, </div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">I&#39;ve come\r\ninto an opportunity where I think I can help make a\r\ndifference.</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">\r\n<br></div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">I’d love to\r\nschedule a call sometime this week or next</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">to see how\r\nI might help with your open round of investment.</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">\r\n<br></div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Please let\r\nme know what’s most convenient and then let’s jump on a call!</div>\r\n<div><br></div>\r\nThank you for your time and consideration,\r\n<div>Rick</div>\r\n<div><br>\r\n<div class=\"gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div><a href=\"https://ww.mislan.com\" target=\"_blank\">https://mislan.com</a><img style=\"height: 11px;\"></div>\r\n<div><br></div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</blockquote>\r\n</div>\r\n\r\n\r\n</div></span></blockquote>\r\n\r\n</div></div></blockquote></div>','Thanks Rick,\r\n\r\nTO clarify... you meant 10 or 100m investment into the company? (at my 200m\r\nvaluation)?\r\n\r\nI\'ll bring my assistant on another thread to schedule time.\r\n\r\nAndy Yakulis, CEO\r\n\r\nandy@tfvector.com\r\n\r\n<https://www.tfvector.com/>\r\n\r\n\r\n\r\n\r\nOn Wed, May 21, 2025 at 7:06 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> Andy,\r\n> Thank you for your time and interest today!\r\n> I enjoyed the conversation and appreciate your efforts!\r\n> Let me know what works best for your Wednesday-Friday next week.  I’ll\r\n> have Brian join us.\r\n> Also, as a follow up, my guys says we could do 10 or 100…\r\n> We will work towards a demo asap!\r\n>\r\n> I look forward to talking again soon!\r\n>\r\n> Thanks again,\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On May 21, 2025 at 1:31:09 PM, Tory Roberts (tory@tfvector.com) wrote:\r\n>\r\n>>\r\n>>\r\n>>>>>\r\n>>>>> On Sat, May 17, 2025 at 7:02 AM Rick <rick@mavrix.one> wrote:\r\n>>>>>\r\n>>>>>> Wednesday at 11 works as well.\r\n>>>>>> Thanks!\r\n>>>>>> Rick\r\n>>>>>>\r\n>>>>>> Rick Mislan, PhD\r\n>>>>>> https://mavrix.one\r\n>>>>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>>>>\r\n>>>>>> On May 16, 2025 at 8:54:45 PM, Andy Yakulis (andy@tfvector.com)\r\n>>>>>> wrote:\r\n>>>>>>\r\n>>>>>>> Rick,\r\n>>>>>>>\r\n>>>>>>> Sorry, 4pm EST monday got filled up as we were coordinating. How\'s\r\n>>>>>>> Wed morning? 11am EST?\r\n>>>>>>>\r\n>>>>>>> Andy Yakulis, CEO\r\n>>>>>>>\r\n>>>>>>> andy@tfvector.com\r\n>>>>>>>\r\n>>>>>>> <https://www.tfvector.com/>\r\n>>>>>>>\r\n>>>>>>>\r\n>>>>>>>\r\n>>>>>>>\r\n>>>>>>> On Fri, May 16, 2025 at 5:49 AM Rick <rick@mavrix.one> wrote:\r\n>>>>>>>\r\n>>>>>>>> Thanks, Andy!\r\n>>>>>>>> Let’s do your first time slot on Monday at 4p.\r\n>>>>>>>> I’m in NY, so EST.\r\n>>>>>>>> You want a Zoom/Teams/Meet link?\r\n>>>>>>>> Appreciate the connect!\r\n>>>>>>>> Rick\r\n>>>>>>>>\r\n>>>>>>>> Rick Mislan, PhD\r\n>>>>>>>> https://mavrix.one\r\n>>>>>>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>>>>>>\r\n>>>>>>>> On May 16, 2025 at 12:20:03 AM, Andy Yakulis (andy@tfvector.com)\r\n>>>>>>>> wrote:\r\n>>>>>>>>\r\n>>>>>>>> Rick\r\n>>>>>>>>\r\n>>>>>>>> Thank you for reaching out! Absolutely interested in speaking with\r\n>>>>>>>> you especially if you know Nick!\r\n>>>>>>>>\r\n>>>>>>>> Not sure what time zone you are in, I\'m in MTN so I\'ll offer the\r\n>>>>>>>> following:\r\n>>>>>>>>\r\n>>>>>>>> Mon 19May:\r\n>>>>>>>> 4pm\r\n>>>>>>>> 5pm\r\n>>>>>>>>\r\n>>>>>>>> Tues, 20May\r\n>>>>>>>> 5pm\r\n>>>>>>>>\r\n>>>>>>>> Wed, 21May:\r\n>>>>>>>> 9am\r\n>>>>>>>> 10am\r\n>>>>>>>> 3pm\r\n>>>>>>>> 4pm\r\n>>>>>>>>\r\n>>>>>>>> Andy Yakulis, CEO\r\n>>>>>>>>\r\n>>>>>>>> andy@tfvector.com\r\n>>>>>>>>\r\n>>>>>>>> <https://www.tfvector.com/>\r\n>>>>>>>>\r\n>>>>>>>>\r\n>>>>>>>>\r\n>>>>>>>>\r\n>>>>>>>> On Thu, May 15, 2025 at 5:37 AM Rick <rick@mavrix.one> wrote:\r\n>>>>>>>>\r\n>>>>>>>>> Andy,\r\n>>>>>>>>>\r\n>>>>>>>>> Nic Vandre said to reach out.\r\n>>>>>>>>> I’ve followed your work a bit over time, but recently,\r\n>>>>>>>>> I\'ve come into an opportunity where I think I can help make a\r\n>>>>>>>>> difference.\r\n>>>>>>>>>\r\n>>>>>>>>> I’d love to schedule a call sometime this week or next\r\n>>>>>>>>> to see how I might help with your open round of investment.\r\n>>>>>>>>>\r\n>>>>>>>>> Please let me know what’s most convenient and then let’s jump on a\r\n>>>>>>>>> call!\r\n>>>>>>>>>\r\n>>>>>>>>> Thank you for your time and consideration,\r\n>>>>>>>>> Rick\r\n>>>>>>>>>\r\n>>>>>>>>> Rick Mislan, PhD\r\n>>>>>>>>> https://mavrix.one\r\n>>>>>>>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>>>>>>> https://mislan.com <https://ww.mislan.com>\r\n>>>>>>>>>\r\n>>>>>>>>>',0,0,0,0,0,0,'2025-05-22 01:23:33','2025-12-09 19:03:18','2025-12-09 19:03:18','2025-12-09 19:03:18',NULL,NULL,NULL),
(283,4,'<CAB5cvoy8JoCky3dqhTOVWzzDH14mhn3igE3YcC-Ubvidnuqssg@mail.gmail.com>',NULL,NULL,'Mavrix <> Vector','andy@tfvector.com','Andy Yakulis','<div dir=\"ltr\"><div>Tory, can you find time for me and Rick next week? We prob need an hour.</div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><span><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:#776b6c;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap\">Andy Yakulis</span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap\">, </span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\"><font color=\"#9a000a\">CEO</font></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:#141414;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap\"><a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" style=\"text-decoration:none\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:#1155cc;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;vertical-align:baseline;white-space:pre;white-space:pre-wrap\"><span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\"><img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left:0px;margin-top:0px\"></span></span></a></p><div><br></div></span><div></div><div><br></div></div></div></div></div>','Tory, can you find time for me and Rick next week? We prob need an hour.\r\n\r\nAndy Yakulis, CEO\r\n\r\nandy@tfvector.com\r\n\r\n<https://www.tfvector.com/>',0,0,0,0,0,0,'2025-05-22 01:24:05','2025-12-09 19:03:19','2025-12-09 19:03:19','2025-12-09 19:03:19',NULL,NULL,NULL),
(284,4,'<c2dc57519c0d4219abbb7ddb7190ae68@docusign.net>',NULL,NULL,'Completed: Complete with Docusign: Rick Mislan _ Vector Form of NDA (Mutual).docx.pdf','dse_NA4@docusign.net','\"Tory Roberts via Docusign\"','<html lang=3D\"en\"><head><meta http-equiv=3D\"Content-Type\" content=3D\"te=\r\nxt/html; charset=3DUTF-8\"/><meta name=3D\"viewport\" content=3D\"initial-s=\r\ncale=3D1=2E0\"/><meta name=3D\"format-detection\" content=3D\"telephone=3Dn=\r\no\"/><title>RecipientEnvelopeComplete</title></head><body style=3D\"backg=\r\nround-color:#EAEAEA;padding:2%;font-family:Helvetica,Arial,Sans Serif;\"=\r\n><table role=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpaddin=\r\ng=3D\'0\' align=3D\'center\' width=3D\"100%\" dir=3D\"\"><tr><td></td><td width=\r\n=3D\"640\"><table role=3D\"presentation\" style=3D\"mso-table-lspace:0pt;mso=\r\n-table-rspace:0pt;border-collapse:collapse;background-color:#ffffff;max=\r\n-width:640px;\"><tr><td style=3D\"padding:10px 24px;\"><img style=3D\"borde=\r\nr:none;\" width=3D\"\" src=3D\"https://NA4=2Edocusign=2Enet/Member/Image=2E=\r\naspx?i=3Dlogo&l=3D494cb785-6844-4015-b56e-8e89f27d6f54\" alt=3D\"\"/></td>=\r\n</tr><tr><td style=3D\"padding:0px 24px 30px 24px;\"><table role=3D\'prese=\r\nntation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\' width=3D\'100%=\r\n\' align=3D\'center\' style=3D\'background-color:#3A3838;color:#FFFFFF;\'><t=\r\nr><td style=3D\"padding:28px 10px 36px 10px;border-radius:2px;background=\r\n-color:#3A3838;color:#FFFFFF;font-size:16px;font-family:Helvetica,Arial=\r\n,Sans Serif;width:100%;text-align:center;\" align=3D\"center\"><img width=3D=\r\n\"75\" height=3D\"75\" src=3D\"https://docucdn-a=2Eakamaihd=2Enet/olive/imag=\r\nes/2=2E76=2E0/email/iconFileWithCheckWhite=2Epng\" style=3D\"width:75px;h=\r\neight:75px;\" alt=3D\"\" /><table role=3D\'presentation\' border=3D\'0\' cells=\r\npacing=3D\'0\' cellpadding=3D\'0\' width=3D\'100%\'><tr><td style=3D\"padding-=\r\ntop:24px;font-size:16px;font-family:Helvetica,Arial,Sans Serif;border:n=\r\none;text-align:center;color:#FFFFFF\" align=3D\"center\"> Your document ha=\r\ns been completed </td></tr></table><table role=3D\'presentation\' border=3D=\r\n\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\' width=3D\'100%\'><tr><td align=3D=\r\n\"center\" style=3D\"padding-top:30px;\"><div><table cellspacing=3D\"0\" cell=\r\npadding=3D\"0\"><tr><td align=3D\"center\" height=3D\"44\" style=3D\"font-size=\r\n:14px;color:#FFFFFF;background-color:#3A3838;font-family:Helvetica,Aria=\r\nl,Sans Serif;font-weight:bold;text-align:center;text-decoration:none;;b=\r\norder-radius:2px;border: 1px solid #FFFFFF;background-color:#3A3838;hei=\r\nght:100%;display:block;\"><a href=3D\"https://na4=2Edocusign=2Enet/Signin=\r\ng/EmailStart=2Easpx?a=3D0995ae80-6571-4f76-9622-3c9bf5dd72ce&etti=3D43&=\r\nr=3Db046fba7-5ca1-4bda-8621-92399f5833d2\" style=3D\"padding:0px 12px;;fo=\r\nnt-size:14px;color:#FFFFFF;background-color:#3A3838;font-family:Helveti=\r\nca,Arial,Sans Serif;font-weight:bold;text-align:center;text-decoration:=\r\nnone;;display:inline-block\"><span style=3D\"line-height:44px;\"><!--[if m=\r\nso]>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<![endif]--> VIEW COMPLETED DOC=\r\nUMENT <!--[if mso]>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<![endif]--></sp=\r\nan></a></td></tr></table></div></td></tr></table></td></tr></table></td=\r\n></tr><tr><td style=3D\"padding:0px 24px 24px 24px;color:#000000;font-si=\r\nze:16px;font-family:Helvetica,Arial,Sans Serif;background-color:white;\"=\r\n><table role=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpaddin=\r\ng=3D\'0\'><tr><td style=3D\"padding-bottom:20px;\"><div style=3D\"font-famil=\r\ny:Helvetica,Arial,Sans Serif;font-weight:bold;line-height:18px;font-siz=\r\ne:15px;color:#333333;\"> Tory Roberts </div><div style=3D\"font-family:He=\r\nlvetica,Arial,Sans Serif;line-height:18px;font-size:15px;color:#666666;=\r\n\">tory@tfvector=2Ecom</div></td></tr></table><p style=3D\"font-size:15px=\r\n;color:#333333;font-family:Helvetica,Arial,Sans Serif;line-height:20px;=\r\n\">All parties have completed Complete with Docusign: Rick Mislan _ Vect=\r\nor Form of NDA (Mutual)=2Edocx=2Epdf=2E</p></td></tr><tr><td style=3D\"p=\r\nadding:0px 24px 12px 24px;background-color:#ffffff;font-family:Helvetic=\r\na,Arial,Sans Serif;font-size:11px;color:#666666;\"><table border=3D\"0\" c=\r\nellspacing=3D\"0\" cellpadding=3D\"0\"><tbody><tr><td valign=3D\"top\" style=3D=\r\n\"font-family: Helvetica,Arial,Sans Serif; font-size: 11px; color: #6666=\r\n66; vertical-align: top;\"><div style=3D\"font-family:Helvetica,Arial,San=\r\ns Serif; font-size:11px; color:#666666; padding: 2px 5px 0 0;\">Powered =\r\nby&#160;</div></td><td><img src=3D\"https://docucdn-a=2Eakamaihd=2Enet/o=\r\nlive/images/2=2E62=2E0/global-assets/email-templates/email-logo=2Epng\" =\r\nheight=3D\"19\" alt=3D\"Docusign\" style=3D\"border:none;\"/></td></tr></tbod=\r\ny></table></td></tr><tr><td style=3D\"padding:30px 24px 45px 24px;backgr=\r\nound-color:#EAEAEA;\"><p style=3D\"margin-bottom:1em;font-family:Helvetic=\r\na,Arial,Sans Serif;font-size:13px;color:#666666;line-height:18px;\"><b a=\r\nria-level=3D\"3\" role=3D\"heading\">Do Not Share This Email</b><br/> This =\r\nemail contains a secure link to Docusign=2E Please do not share this em=\r\nail, link, or access code with others=2E<br/></p><p style=3D\"margin-bot=\r\ntom:1em;font-family:Helvetica,Arial,Sans Serif;font-size:13px;color:#66=\r\n6666;line-height:18px;\"><b aria-level=3D\"3\" role=3D\"heading\">Alternate =\r\nSigning Method</b><br/> Visit Docusign=2Ecom, click \'Access Documents\',=\r\n and enter the security code:<br /> 0995AE8065714F7696223C9BF5DD72CE7 <=\r\n/p><p style=3D\"margin-bottom:1em;font-family:Helvetica,Arial,Sans Serif=\r\n;font-size:13px;color:#666666;line-height:18px;\"><b aria-level=3D\"3\" ro=\r\nle=3D\"heading\">About Docusign</b><br/> Sign documents electronically in=\r\n just minutes=2E It\'s safe, secure, and legally binding=2E Whether you\'=\r\nre in an office, at home, on-the-go -- or even across the globe -- Docu=\r\nsign provides a professional trusted solution for Digital Transaction M=\r\nanagement=E2=84=A2=2E </p><p style=3D\"margin-bottom:1em;font-family:Hel=\r\nvetica,Arial,Sans Serif;font-size:13px;color:#666666;line-height:18px;\"=\r\n><b aria-level=3D\"3\" role=3D\"heading\">Questions about the Document?</b>=\r\n<br /> If you need to modify the document or have questions about the d=\r\netails in the document, please reach out to the sender by emailing them=\r\n directly=2E<br /><br /><b aria-level=3D\"3\" role=3D\"heading\">Stop recei=\r\nving this email</b><br /><a href=3D\'https://protect=2Edocusign=2Enet/re=\r\nport-abuse?e=3DAUtomjpFak9GlbPL0zFFi13mKsgkjnuEOB5WaAUKSzFQWtGSozooHb7e=\r\ngBJzyFm4VkCJqvZm2d-2drWpdvoYftGfs-5y426cuboDmeFTKd1hG1fUklyE-OW5Xyo43w7=\r\nNBu6ZLaV0-VYkbDyPnmqiyQ-lf_sCoAwimiuVOhdc-nenwzTP_vvQ9Fb8a4K3ASul270ABp=\r\n-zolbK-jUgmLqTy__m_0hA4EM34jQbZTY_PgxhfTMDzt6xAgZ9ZzkvGZ2UsGD20kCFeSeav=\r\n9nqdLgPx3BQzyAl4dxaHKUNwpF8LnpIWHGh06yr9Gl2bYSGC64sswvBi10uZ9dFqPQz6Kit=\r\npzqC3p2lIRg4oWBAodoq5iNmJWprcvFzBKo8UCBehxdaJrkiQM8_SpRbi9hoshKLeoR8e_Y=\r\nwE0TzqXJDwjeTWpU99y6oEQHvyXBdWTP6U1Ijgw&lang=3Den\' style=3D\'color:#2463=\r\nd1;\' >Report this email</a> or read more about <a href=3D\'https://suppo=\r\nrt=2Edocusign=2Ecom/en/guides/Declining-to-sign-DocuSign-Signer-Guide\' =\r\nstyle=3D\'color:#2463d1;\' >Declining to sign</a> and <a href=3D\'https://=\r\nsupport=2Edocusign=2Ecom/en/articles/How-do-I-manage-my-email-notificat=\r\nions\' style=3D\'color:#2463d1;\' >Managing notifications</a>=2E<br /><br =\r\n/> If you have trouble signing, visit \"<a href=3D\'https://support=2Edoc=\r\nusign=2Ecom/s/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing?=\r\nlanguage=3Den_US&#38;utm_campaign=3DGBL_XX_DBU_UPS_2211_SignNotificatio=\r\nnEmailFooter&#38;utm_medium=3Dproduct&#38;utm_source=3Dpostsend\' style=3D=\r\n\'color:#2463d1;\' >How to Sign a Document</a>\" on our <a href=3D\'https:/=\r\n/support=2Edocusign=2Ecom/\' style=3D\'color:#2463d1;\' >Docusign Support =\r\nCenter</a>, or become part of the <a href=3D\'https://community=2Edocusi=\r\ngn=2Ecom/new-member-guide-142?utm_campaign=3DGBL_US_PRD_AWA_2405_Commun=\r\nityCTA&#38;utm_medium=3Demail&#38;utm_source=3Dpostsend\' style=3D\'color=\r\n:#2463d1;\' >Docusign Community</a> to access tips and guidance from pee=\r\nrs=2E<br /><br /></p><p style=3D\"margin-bottom:1em;font-family:Helvetic=\r\na,Arial,Sans Serif;font-size:13px;color:#666666;line-height:18px;\"><a h=\r\nref=3D\"https://www=2Edocusign=2Ecom/features-and-benefits/mobile?utm_ca=\r\nmpaign=3DGBL_XX_DBU_UPS_2211_SignNotificationEmailFooter&#38;utm_medium=\r\n=3Dproduct&#38;utm_source=3Dpostsend\" style=3D\"color:#2463d1;\" ><img st=\r\nyle=3D\"margin-right:7px;border:none;vertical-align:middle;\" width=3D\"18=\r\n\" height=3D\"18\" src=3D\"https://docucdn-a=2Eakamaihd=2Enet/olive/images/=\r\n2=2E62=2E0/global-assets/email-templates/icon-download-app=2Epng\" alt=3D=\r\n\"\" />Download the Docusign App </a></p><p style=3D\"margin-bottom:1em;fo=\r\nnt-family:Helvetica,Arial,Sans Serif;font-size:13px;color:#666666;line-=\r\nheight:18px;font-size:10px;line-height:14px;\">This message was sent to =\r\nyou by Tory Roberts who is using the Docusign Electronic Signature Serv=\r\nice=2E If you would rather not receive email from this sender you may c=\r\nontact the sender with your request=2E</p></td></tr></table></td><td></=\r\ntd></tr></table><span itemscope=3D\"\" itemtype=3D\"http://schema=2Eorg/Em=\r\nailMessage\"><meta itemprop=3D\"text\" content=3D\"Tory Roberts sent you a =\r\ndocument to review and sign=2E\"/><span itemscope=3D\"\" itemprop=3D\"about=\r\n\" itemtype=3D\"http://schema=2Eorg/CreativeWork\"><span itemscope=3D\"\" it=\r\nemprop=3D\"action\" itemtype=3D\"http://schema=2Eorg/ViewAction\"><meta ite=\r\nmprop=3D\"url\" content=3D\"https://na4=2Edocusign=2Enet/Signing/EmailStar=\r\nt=2Easpx?a=3D0995ae80-6571-4f76-9622-3c9bf5dd72ce&etti=3D43&r=3Db046fba=\r\n7-5ca1-4bda-8621-92399f5833d2\"/><meta itemprop=3D\"name\" content=3D\"View=\r\n Documents\"/></span></span></span></body></html>','RecipientEnvelopeComplete=\r\n Your document ha=\r\ns been completed  VIEW COMPLETED DOC=\r\nUMENT  Tory Roberts tory@tfvector=2EcomAll parties have completed Complete with Docusign: Rick Mislan _ Vect=\r\nor Form of NDA (Mutual)=2Edocx=2Epdf=2EPowered =\r\nby&#160;Do Not Share This Email This =\r\nemail contains a secure link to Docusign=2E Please do not share this em=\r\nail, link, or access code with others=2EAlternate =\r\nSigning Method Visit Docusign=2Ecom, click \'Access Documents\',=\r\n and enter the security code: 0995AE8065714F7696223C9BF5DD72CE7 About Docusign Sign documents electronically in=\r\n just minutes=2E It\'s safe, secure, and legally binding=2E Whether you\'=\r\nre in an office, at home, on-the-go -- or even across the globe -- Docu=\r\nsign provides a professional trusted solution for Digital Transaction M=\r\nanagement=E2=84=A2=2E Questions about the Document?=\r\n If you need to modify the document or have questions about the d=\r\netails in the document, please reach out to the sender by emailing them=\r\n directly=2EStop recei=\r\nving this emailReport this email or read more about Declining to sign and Managing notifications=2E If you have trouble signing, visit \"How to Sign a Document\" on our Docusign Support =\r\nCenter, or become part of the Docusign Community to access tips and guidance from pee=\r\nrs=2EDownload the Docusign App This message was sent to =\r\nyou by Tory Roberts who is using the Docusign Electronic Signature Serv=\r\nice=2E If you would rather not receive email from this sender you may c=\r\nontact the sender with your request=2E',0,0,0,0,0,0,'2025-05-22 01:27:53','2025-12-09 19:03:19','2025-12-09 19:03:19','2025-12-09 19:03:19',NULL,NULL,NULL),
(285,4,'<CAB5cvow5zHUw_mpn74yaABhh+Of3F2DD9SEakQAX2Zk04-AZTQ@mail.gmail.com>',NULL,NULL,'=?UTF-8?Q?Re=3A_via_Nic_Vandre=2D_Open_Round=E2=80=A6?=','andy@tfvector.com','Andy Yakulis','<div dir=\"ltr\"><div>oh haha. Was thinking that would be a big investment!</div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><span><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:#776b6c;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap\">Andy Yakulis</span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap\">, </span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\"><font color=\"#9a000a\">CEO</font></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:#141414;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap\"><a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" style=\"text-decoration:none\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:#1155cc;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;vertical-align:baseline;white-space:pre;white-space:pre-wrap\"><span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\"><img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left:0px;margin-top:0px\"></span></span></a></p><div><br></div></span><div></div><div><br></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, May 21, 2025 at 7:27 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div><div>Sorry.  I was talking about 10 or 100 drones in the swarm ;) - didn’t matter to the dev guys.  <br> But if you need $10M or 100M… :)<br>All good!<br>Let’s get to the next!<br>Thanks!<br>Rick </div> <br> <br><div class=\"gmail_signature\">\r\n        \r\n    \r\n    <div>Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div></div> <p class=\"gmail_quote\" style=\"color:rgb(0,0,0)\">On May 21, 2025 at 9:23:33 PM, Andy Yakulis (<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a>) wrote:</p> <blockquote type=\"cite\" class=\"gmail_quote\"><span><div><div></div><div>\r\n\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div>Thanks Rick,</div>\r\n<div><br></div>\r\n<div>TO clarify... you meant 10 or 100m investment into the\r\ncompany? (at my 200m valuation)?</div>\r\n<div><br></div>\r\n<div>I&#39;ll bring my assistant on another thread to schedule\r\ntime.</div>\r\n<div><br></div>\r\n<div>\r\n<div dir=\"ltr\" class=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\">\r\n<span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(119,107,108);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\nAndy Yakulis</span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">,</span>\r\n<span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<font color=\"#9A000A\">CEO</font></span></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(20,20,20);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" style=\"text-decoration:none\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:rgb(17,85,204);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;vertical-align:baseline;white-space:pre-wrap\">\r\n<span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\">\r\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left: 0px; margin-top: 0px;\"></span></span></a></p>\r\n<div><br></div>\r\n<div><br></div>\r\n</div>\r\n</div>\r\n</div>\r\n<br></div>\r\n<br>\r\n<div class=\"gmail_quote\">\r\n<div dir=\"ltr\" class=\"gmail_attr\">On Wed, May 21, 2025 at 7:06 PM\r\nRick &lt;rick@mavrix.one&gt; wrote:<br></div>\r\n<blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div>Andy,\r\n<div>Thank you for your time and interest today!</div>\r\n<div>I enjoyed the conversation and appreciate your efforts!</div>\r\n<div>Let me know what works best for your Wednesday-Friday next\r\nweek.  I’ll have Brian join us. </div>\r\n<div>Also, as a follow up, my guys says we could do 10 or\r\n100…</div>\r\n<div>We will work towards a demo asap!</div>\r\n<div><br></div>\r\n<div>I look forward to talking again soon!</div>\r\n<div><br></div>\r\n<div>Thanks again,<br></div>\r\n<div>Rick</div>\r\n<div><br>\r\n<div class=\"gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div><img style=\"height: 11px;\"></div>\r\n</div>\r\n<p class=\"gmail_quote\" style=\"color:rgb(0,0,0)\">On May 21, 2025 at\r\n1:31:09 PM, Tory Roberts (<a href=\"mailto:tory@tfvector.com\" target=\"_blank\">tory@tfvector.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"gmail_quote\">\r\n<div>\r\n<div dir=\"ltr\">\r\n<div><span><br></span></div>\r\n</div>\r\n<div class=\"gmail_quote\">\r\n<blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div class=\"gmail_quote\">\r\n<blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div>\r\n<div>\r\n<blockquote type=\"cite\" class=\"gmail_quote\">\r\n<div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div>\r\n<div dir=\"ltr\" class=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\">\r\n<span><br></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<span><br></span>\r\n<div class=\"gmail_quote\">\r\n<div dir=\"ltr\" class=\"gmail_attr\"><span>On Sat, May 17, 2025 at\r\n7:02 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></span></div>\r\n<blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div><span>Wednesday at 11 works as well. </span>\r\n<div><span>Thanks!</span></div>\r\n<div><span>Rick<br>\r\n<br></span>\r\n<div class=\"gmail_signature\"><span>Rick Mislan, PhD<br></span>\r\n<div><span><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></span></div>\r\n<div><span><img style=\"height: 11px;\"></span></div>\r\n</div>\r\n<p class=\"gmail_quote\" style=\"color:rgb(0,0,0)\"><span>On May 16,\r\n2025 at 8:54:45 PM, Andy Yakulis (<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a>)\r\nwrote:</span></p>\r\n<blockquote type=\"cite\" class=\"gmail_quote\">\r\n<div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div><span><span>Rick,</span></span></div>\r\n<div><span><br></span></div>\r\n<div><span>Sorry, 4pm EST monday got filled up as we were\r\ncoordinating. How&#39;s Wed morning? 11am EST?</span></div>\r\n<div>\r\n<div dir=\"ltr\" class=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\">\r\n<span><span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(119,107,108);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\nAndy Yakulis</span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">,</span>\r\n<span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<font color=\"#9A000A\">CEO</font></span></span></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(20,20,20);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" style=\"text-decoration:none\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:rgb(17,85,204);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;vertical-align:baseline;white-space:pre-wrap\">\r\n<span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\">\r\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left: 0px; margin-top: 0px;\"></span></span></a></p>\r\n<div><br></div>\r\n<div><br></div>\r\n</div>\r\n</div>\r\n</div>\r\n<br></div>\r\n<br>\r\n<div class=\"gmail_quote\">\r\n<div dir=\"ltr\" class=\"gmail_attr\">On Fri, May 16, 2025 at 5:49 AM\r\nRick &lt;rick@mavrix.one&gt; wrote:<br></div>\r\n<blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\nThanks, Andy!</div>\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Let’s\r\ndo your first time slot on Monday at 4p.</div>\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">I’m\r\nin NY, so EST.</div>\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">You\r\nwant a Zoom/Teams/Meet link?</div>\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\nAppreciate the connect!</div>\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\nRick</div>\r\n<br>\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_sign_1747396037540008960\">\r\nRick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div><img style=\"height: 11px;\"></div>\r\n</div>\r\n<br>\r\n<p>On May 16, 2025 at 12:20:03 AM, Andy Yakulis (<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a>)\r\nwrote:</p>\r\n<blockquote type=\"cite\">\r\n<div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div><span>Rick</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Thank you for reaching out! Absolutely interested in\r\nspeaking with you especially if you know Nick!</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Not sure what time zone you are in, I&#39;m in MTN so I&#39;ll\r\noffer the following:</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Mon 19May:</span></div>\r\n<div><span>4pm</span></div>\r\n<div><span>5pm</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Tues, 20May</span></div>\r\n<div><span>5pm</span></div>\r\n<div><span><br></span></div>\r\n<div><span>Wed, 21May:</span></div>\r\n<div><span>9am</span></div>\r\n<div><span>10am</span></div>\r\n<div><span>3pm</span></div>\r\n<div><span>4pm</span></div>\r\n<div>\r\n<div dir=\"ltr\" class=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\">\r\n<span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(119,107,108);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\nAndy Yakulis</span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">,</span>\r\n<span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<font color=\"#9A000A\">CEO</font></span></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(20,20,20);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" style=\"text-decoration:none\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:rgb(17,85,204);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;vertical-align:baseline;white-space:pre-wrap\">\r\n<span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\">\r\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left: 0px; margin-top: 0px;\"></span></span></a></p>\r\n<div><br></div>\r\n<div><br></div>\r\n</div>\r\n</div>\r\n</div>\r\n<br></div>\r\n<br>\r\n<div class=\"gmail_quote\">\r\n<div dir=\"ltr\" class=\"gmail_attr\">On Thu, May 15, 2025 at 5:37 AM\r\nRick &lt;rick@mavrix.one&gt; wrote:<br></div>\r\n<blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Andy,</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">\r\n<br></div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Nic Vandre\r\nsaid to reach out.</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">I’ve\r\nfollowed your work a bit over time, but recently, </div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">I&#39;ve come\r\ninto an opportunity where I think I can help make a\r\ndifference.</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">\r\n<br></div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">I’d love to\r\nschedule a call sometime this week or next</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">to see how\r\nI might help with your open round of investment.</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">\r\n<br></div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Please let\r\nme know what’s most convenient and then let’s jump on a call!</div>\r\n<div><br></div>\r\nThank you for your time and consideration,\r\n<div>Rick</div>\r\n<div><br>\r\n<div class=\"gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div><a href=\"https://ww.mislan.com\" target=\"_blank\">https://mislan.com</a><img style=\"height: 11px;\"></div>\r\n<div><br></div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n\r\n\r\n</div></div></span></blockquote></div></blockquote></div>','oh haha. Was thinking that would be a big investment!\r\n\r\nAndy Yakulis, CEO\r\n\r\nandy@tfvector.com\r\n\r\n<https://www.tfvector.com/>\r\n\r\n\r\n\r\n\r\nOn Wed, May 21, 2025 at 7:27 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> Sorry. I was talking about 10 or 100 drones in the swarm ;) - didn’t\r\n> matter to the dev guys.\r\n> But if you need $10M or 100M… :)\r\n> All good!\r\n> Let’s get to the next!\r\n> Thanks!\r\n> Rick\r\n>\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On May 21, 2025 at 9:23:33 PM, Andy Yakulis (andy@tfvector.com) wrote:\r\n>\r\n>> Thanks Rick,\r\n>>\r\n>> TO clarify... you meant 10 or 100m investment into the company? (at my\r\n>> 200m valuation)?\r\n>>\r\n>> I\'ll bring my assistant on another thread to schedule time.\r\n>>\r\n>> Andy Yakulis, CEO\r\n>>\r\n>> andy@tfvector.com\r\n>>\r\n>> <https://www.tfvector.com/>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>> On Wed, May 21, 2025 at 7:06 PM Rick <rick@mavrix.one> wrote:\r\n>>\r\n>>> Andy,\r\n>>> Thank you for your time and interest today!\r\n>>> I enjoyed the conversation and appreciate your efforts!\r\n>>> Let me know what works best for your Wednesday-Friday next week.  I’ll\r\n>>> have Brian join us.\r\n>>> Also, as a follow up, my guys says we could do 10 or 100…\r\n>>> We will work towards a demo asap!\r\n>>>\r\n>>> I look forward to talking again soon!\r\n>>>\r\n>>> Thanks again,\r\n>>> Rick\r\n>>>\r\n>>> Rick Mislan, PhD\r\n>>> https://mavrix.one\r\n>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>\r\n>>> On May 21, 2025 at 1:31:09 PM, Tory Roberts (tory@tfvector.com) wrote:\r\n>>>\r\n>>>>\r\n>>>>\r\n>>>>>>>\r\n>>>>>>> On Sat, May 17, 2025 at 7:02 AM Rick <rick@mavrix.one> wrote:\r\n>>>>>>>\r\n>>>>>>>> Wednesday at 11 works as well.\r\n>>>>>>>> Thanks!\r\n>>>>>>>> Rick\r\n>>>>>>>>\r\n>>>>>>>> Rick Mislan, PhD\r\n>>>>>>>> https://mavrix.one\r\n>>>>>>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>>>>>>\r\n>>>>>>>> On May 16, 2025 at 8:54:45 PM, Andy Yakulis (andy@tfvector.com)\r\n>>>>>>>> wrote:\r\n>>>>>>>>\r\n>>>>>>>>> Rick,\r\n>>>>>>>>>\r\n>>>>>>>>> Sorry, 4pm EST monday got filled up as we were coordinating. How\'s\r\n>>>>>>>>> Wed morning? 11am EST?\r\n>>>>>>>>>\r\n>>>>>>>>> Andy Yakulis, CEO\r\n>>>>>>>>>\r\n>>>>>>>>> andy@tfvector.com\r\n>>>>>>>>>\r\n>>>>>>>>> <https://www.tfvector.com/>\r\n>>>>>>>>>\r\n>>>>>>>>>\r\n>>>>>>>>>\r\n>>>>>>>>>\r\n>>>>>>>>> On Fri, May 16, 2025 at 5:49 AM Rick <rick@mavrix.one> wrote:\r\n>>>>>>>>>\r\n>>>>>>>>>> Thanks, Andy!\r\n>>>>>>>>>> Let’s do your first time slot on Monday at 4p.\r\n>>>>>>>>>> I’m in NY, so EST.\r\n>>>>>>>>>> You want a Zoom/Teams/Meet link?\r\n>>>>>>>>>> Appreciate the connect!\r\n>>>>>>>>>> Rick\r\n>>>>>>>>>>\r\n>>>>>>>>>> Rick Mislan, PhD\r\n>>>>>>>>>> https://mavrix.one\r\n>>>>>>>>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>>>>>>>>\r\n>>>>>>>>>> On May 16, 2025 at 12:20:03 AM, Andy Yakulis (andy@tfvector.com)\r\n>>>>>>>>>> wrote:\r\n>>>>>>>>>>\r\n>>>>>>>>>> Rick\r\n>>>>>>>>>>\r\n>>>>>>>>>> Thank you for reaching out! Absolutely interested in\r\n>>>>>>>>>> speaking with you especially if you know Nick!\r\n>>>>>>>>>>\r\n>>>>>>>>>> Not sure what time zone you are in, I\'m in MTN so I\'ll offer the\r\n>>>>>>>>>> following:\r\n>>>>>>>>>>\r\n>>>>>>>>>> Mon 19May:\r\n>>>>>>>>>> 4pm\r\n>>>>>>>>>> 5pm\r\n>>>>>>>>>>\r\n>>>>>>>>>> Tues, 20May\r\n>>>>>>>>>> 5pm\r\n>>>>>>>>>>\r\n>>>>>>>>>> Wed, 21May:\r\n>>>>>>>>>> 9am\r\n>>>>>>>>>> 10am\r\n>>>>>>>>>> 3pm\r\n>>>>>>>>>> 4pm\r\n>>>>>>>>>>\r\n>>>>>>>>>> Andy Yakulis, CEO\r\n>>>>>>>>>>\r\n>>>>>>>>>> andy@tfvector.com\r\n>>>>>>>>>>\r\n>>>>>>>>>> <https://www.tfvector.com/>\r\n>>>>>>>>>>\r\n>>>>>>>>>>\r\n>>>>>>>>>>\r\n>>>>>>>>>>\r\n>>>>>>>>>> On Thu, May 15, 2025 at 5:37 AM Rick <rick@mavrix.one> wrote:\r\n>>>>>>>>>>\r\n>>>>>>>>>>> Andy,\r\n>>>>>>>>>>>\r\n>>>>>>>>>>> Nic Vandre said to reach out.\r\n>>>>>>>>>>> I’ve followed your work a bit over time, but recently,\r\n>>>>>>>>>>> I\'ve come into an opportunity where I think I can help make a\r\n>>>>>>>>>>> difference.\r\n>>>>>>>>>>>\r\n>>>>>>>>>>> I’d love to schedule a call sometime this week or next\r\n>>>>>>>>>>> to see how I might help with your open round of investment.\r\n>>>>>>>>>>>\r\n>>>>>>>>>>> Please let me know what’s most convenient and then let’s jump on\r\n>>>>>>>>>>> a call!\r\n>>>>>>>>>>>\r\n>>>>>>>>>>> Thank you for your time and consideration,\r\n>>>>>>>>>>> Rick\r\n>>>>>>>>>>>\r\n>>>>>>>>>>> Rick Mislan, PhD\r\n>>>>>>>>>>> https://mavrix.one\r\n>>>>>>>>>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>>>>>>>>> https://mislan.com <https://ww.mislan.com>\r\n>>>>>>>>>>>\r\n>>>>>>>>>>>',0,0,0,0,0,0,'2025-05-22 01:43:10','2025-12-09 19:03:20','2025-12-09 19:03:20','2025-12-09 19:03:20',NULL,NULL,NULL),
(286,4,'<templateID=d6cac34b-d0e9-4873-8a7f-1518c2c9c683--account=60f7b6c1-712f-4754-ab54-5ecba433a7b3--messageID=b1ddad12-1ce9-4a2a-87d6-2db78d49c9c8--productTags=Registered Agent+kjnvoihdf,Email+kjnvoihdf@wyregisteredagent.net>',NULL,NULL,'=?UTF-8?q?Tell_us:_Did_we_get_the_order_for_MAVRIX_1,_LLC=C2=A0right=3F?=','agent@wyregisteredagent.net','Buffalo Registered Agents LLC','<p style=\"margin: 0 0 18px; line-height: 22px; font: 16px Arial, Helvetica, sans-serif;\">Dear MAVRIX 1, LLC,</p>\r\n<p style=\"margin: 0 0 18px; line-height: 22px; font: 16px Arial, Helvetica, sans-serif;\">Are you happy with the service(s) you ordered on 05/18/25?</p>\r\n<p></p>\r\n<p></p>\r\n<ul>\r\n<li>Registered Agent Service in Wyoming</li>\r\n</ul>\r\n<p></p>\r\n<ul>\r\n<li>Standard Wyoming Form a Company (WY) filing</li>\r\n</ul>\r\n<p></p>\r\n<ul>\r\n<li>Renewal Service</li>\r\n</ul>\r\n<p></p>\r\n<p></p>\r\n<p style=\"margin: 0 0 18px; line-height: 22px; font: 16px Arial, Helvetica, sans-serif;\">Did we solve your problem?</p>\r\n<p style=\"margin: 0 0 18px; line-height: 22px; font: 16px Arial, Helvetica, sans-serif;\">We want to make sure we\'ve met your needs. If you have any questions or dissatisfaction, you can simply reply to this email. Your concerns will go directly to our  support team  who will work to resolve your issue.</p>\r\n<p style=\"margin: 0 0 18px; line-height: 22px; font: 16px Arial, Helvetica, sans-serif;\">Thank you for your business!</p>\r\n<p style=\"margin: 0 0 18px; line-height: 22px; font: 16px Arial, Helvetica, sans-serif;\"><p style=\"margin: 0 0 18px; font-size: 16px; line-height: 22px;\">Buffalo Registered Agents LLC<br>www.wyregisteredagent.net<br>agent@wyregisteredagent.net<br>307-554-1800<br>412 N Main St Suite 100 <br>Buffalo, Wyoming 82834</p></p><img width=\"1\" height=\"1\" alt=\"\" src=\"https://email.wyregisteredagent.net/o/eJxUkLGO2zAMhp_GXg48WBJtSYOGtrmhS4eie0GRtE9NYqe24jZvX-R6DdCRP_nhI35J1uCIhlpNxqMP0Zh-aHXXuX4vkkIfNXfUgQlZAXscIBI5GNUPkg2PXkz7mhit9zlnjSY7joQSiaLY6BwORqgtqer5cqKqnw-NO8jAxA4zSKcRMHgHgfwIpjeBLUceggMg5uU618Ydhm70eWAD3tgR0PcIlHuEXjkTOkc-O4CzbhtNfw3ZiJAYC4bvBrIEwcsAVrIPgpEjB4DLusiV6zeatsYdvupUtqqrytOHSefa2I_HH_O-lFcZG_vp5Uzl9F-G3a_b-oDozjzPWtvTMgFdChz1ljCKRhEF31kBFKsQokZwA1mxHdq-t-_AJb3ce3_6stQyFqZalnl72-m8p_dfyzK_RZuue2FNP6961X9Tu6a18LHB7kz7Wn4_L7O2NTFVnZb19jjbk_0TAAD__5EroJE\">\r\n','Dear MAVRIX 1, LLC,\r\nAre you happy with the service(s) you ordered on 05/18/25?\r\n\r\n\r\n\r\nRegistered Agent Service in Wyoming\r\n\r\n\r\n\r\nStandard Wyoming Form a Company (WY) filing\r\n\r\n\r\n\r\nRenewal Service\r\n\r\n\r\n\r\nDid we solve your problem?\r\nWe want to make sure we\'ve met your needs. If you have any questions or dissatisfaction, you can simply reply to this email. Your concerns will go directly to our  support team  who will work to resolve your issue.\r\nThank you for your business!\r\nBuffalo Registered Agents LLCwww.wyregisteredagent.netagent@wyregisteredagent.net307-554-1800412 N Main St Suite 100 Buffalo, Wyoming 82834\r\n',0,0,0,0,0,0,'2025-05-22 05:19:16','2025-12-09 19:03:20','2025-12-09 19:03:20','2025-12-09 19:03:20',NULL,NULL,NULL),
(287,4,'<templateID=02c8faea-0b53-428b-83f0-3c81399678eb--account=60f7b6c1-712f-4754-ab54-5ecba433a7b3--messageID=6157a44b-df06-43a7-b3d8-703dadf32574--productTags=DRAMA+kjnvoihdf@wyregisteredagent.net>',NULL,NULL,'MAVRIX 1, LLC - Formation Document notification','agent@wyregisteredagent.net','Buffalo Registered Agents LLC','<p style=\"margin: 0 0 18px; font-size: 16px; line-height: 22px;\">MAVRIX 1, LLC,</p>\r\n<p><!--  --></p>\r\n<p style=\"margin: 0 0 18px; font-size: 16px; line-height: 22px;\">We recently sent you a <!--  --> document upload <!--  -->notification and it\'s been 1 day<!--  --> and you haven\'t logged into your account to look at it.</p>\r\n<p style=\"margin: 0 0 18px; font-size: 16px; line-height: 22px;\">The document we uploaded on your company\'s behalf could be really important and we want to make sure you see it. <!--  --></p>\r\n<p style=\"margin: 0 0 18px; font-size: 16px; line-height: 22px;\">Would you please log in here: <a href=\"https://email.wyregisteredagent.net/c/eJxskU2P0zAQhn9NckFT2Z6xnRx8KCqVOMABcUf-GKemrVMSN6X_HrHsctrjzDyjV4_e5JSkTNL37KQlOyoURve8cW0_SnJBjKizZlDBJiArE3itB1CcCKUMMqLqT87oFA0mJhvUwDFpDhwC2WgoBxKxL67x9XbxjT8fOjwIFYfs2YMIGoHUEGDALADjIHEcjR04APgY53ttHR6MyDaYKMFKlYGsJvBBE2iOwROitwEBrryufvqXYKS2nihAysIAobcQMA1gBSafMiptCeC2zOke23c_rR0eDt_2X_ad-nj-Wbe5nFLuSDyeC09lbbxw8hPXtqvc-os7tXZbO9x36tip4-Px2L1LduoYL4Vre5PpL_ME_lbgzE83jCwNMYJQKgEZNcCoVQCps6Gsgggivz7c3Ke_nXz4OreSS_StzHV9uXHd3KtHmevLauVlK5Hdrzvf-W3qF7eUeO5IXP22lN-7uXLfXPSNp3l5_sc2p_4EAAD__6b-qLQ\" target=\"_blank\" rel=\"noopener\" aria-invalid=\"true\">https://www.wyregisteredagent.net/client-account</a></p>\r\n<p style=\"margin: 0 0 18px; font-size: 16px; line-height: 22px;\">Maybe you\'re not who we should notify or perhaps this isn\'t the best email address? If not, simply reply to this email and explain how we should be notifying you or give us a call at 307-554-1800 if you\'d rather talk in person.</p>\r\n<p style=\"margin: 0 0 18px; font-size: 16px; line-height: 22px;\">Odds are, this document is important and it\'s important you take a couple minutes to review.</p>\r\n<p style=\"margin: 0 0 18px; font-size: 16px; line-height: 22px;\">Sincerely,</p>\r\n<p style=\"margin: 0 0 18px; font-size: 16px; line-height: 22px;\">Buffalo Registered Agents LLC<br>412 N Main St Suite 100 <br>Buffalo, Wyoming 82834<br>T: 307-554-1800<br>E: <a href=\"mailto:agent@wyregisteredagent.net\">agent@wyregisteredagent.net</a><br>W: <a href=\"https://email.wyregisteredagent.net/c/eJx0kU-P0zAQxT9NckGzsmfGsXPwoaisxAEOiDvyn3Fquk1K4qb02yOWhRvHmfd7ek962aPmwjr04rVlOyKpwfSyy9y-1eyjGskUI4DRZmCrMwRjHKBkJq2jToT9yVvHqoxFDUSxoM0xpVFsyWq0GilSX32Ty_UlNPl47OioMLkSJICKhoDRRXBUFFBymsZxsE4iQEhpuc2to-Ogio1D0mA1FmBrGEI0DEZSDEwUbCSAi2xbmP4kDNrYwBwhFzUAU7AQKTuwinLIhdBYBriuS76l9jVMW0fH45fDp0OH78_f532pp1w6VvfHKlPdmqySwyRze5ql9S_-1Nq1o0OHzx0-3-_3p_-AywThWuEsD-9G0QMLgULMwAM6GA1G0KYMXDCqqMqb4eo__F7g3eel1VJTaHWZt1dN5t2_ta7L_PraZN1rEv_jJjf5e_WrX2s6d6wuYV_rz6dllr75FJpMy_r4h-0efwUAAP__Mo6hIw\" aria-invalid=\"true\">www.wyregisteredagent.net</a></p><img width=\"1\" height=\"1\" alt=\"\" src=\"https://email.wyregisteredagent.net/o/eJw8UD2P1DAQ_TVJg-Zke8YfKVwcCgUFFIgeje1xztxtsiTewP57xHFQvi-9p1ei0VRJ8yhRe_KTQeXsKKes_VsrMakJbbUCJvkC5HUBtjaAkUKoddIZzfgUi6pWagqMefJTyVPIDgs5XRRrZevYYpfL9YW7fJwHnJXJobIwqGQRyIQEAasCzEHjNDkfJAFwzttt7QPOTlWfXNbgtalA3hJwsgRWcmJCZJ8Q4CLHwcvfBqetZ6IEpSoHhOwhYQngFRYuFY31BHDdt3LL_Ssvx4Dz_OXx0-Ng3j9_X8-tPZU6kPp532VpR5ddCi-y9odV-viyLcDXBs9yj2ES7UgQlDEFyJkAkzUJtK2OqkkqqfoWuMYPf45993nrrbbMvW3r8arJesa3MW1bX6lD9rNliT9ucpN_aNzj3vLzQOrC595-PWyrjD1m7rJs-_2_7YzmdwAAAP__4mSS6Q\">\r\n','MAVRIX 1, LLC,\r\n\r\nWe recently sent you a  document upload notification and it\'s been 1 day and you haven\'t logged into your account to look at it.\r\nThe document we uploaded on your company\'s behalf could be really important and we want to make sure you see it. \r\nWould you please log in here: https://www.wyregisteredagent.net/client-account\r\nMaybe you\'re not who we should notify or perhaps this isn\'t the best email address? If not, simply reply to this email and explain how we should be notifying you or give us a call at 307-554-1800 if you\'d rather talk in person.\r\nOdds are, this document is important and it\'s important you take a couple minutes to review.\r\nSincerely,\r\nBuffalo Registered Agents LLC412 N Main St Suite 100 Buffalo, Wyoming 82834T: 307-554-1800E: agent@wyregisteredagent.netW: www.wyregisteredagent.net\r\n',0,0,0,0,0,0,'2025-05-22 14:11:04','2025-12-09 19:03:20','2025-12-09 19:03:20','2025-12-09 19:03:20',NULL,NULL,NULL),
(288,4,'<CAGgBgfCaOZHe4YZYQsdzUw4WFcoV0J3NL=VYuajfNS03OuiAiA@mail.gmail.com>',NULL,NULL,'Google Meet','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">Rick:</div></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">If it&#39;s easier, I figure have the document from yesterday up on the screen and do this over Google Meet:</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><a href=\"https://meet.google.com/frv-iaea-iho\">https://meet.google.com/frv-iaea-iho</a><br><br></div><div class=\"gmail_default\" style=\"font-size:small\">-- Tom</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div></div><div class=\"gmail_quote gmail_quote_container\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div id=\"m_-1700796143563430783bloop_sign_1747832012616983040\">\r\n     \r\n</div>\r\n\r\n\r\n</blockquote></div></div>','Rick:\r\n\r\nIf it\'s easier, I figure have the document from yesterday up on the screen\r\nand do this over Google Meet:\r\n\r\nhttps://meet.google.com/frv-iaea-iho\r\n\r\n-- Tom',0,0,0,0,0,0,'2025-05-22 14:35:32','2025-12-09 19:03:20','2025-12-09 19:03:20','2025-12-09 19:03:20',NULL,NULL,NULL),
(289,4,'<CAGgBgfB0_ackhUw0nh=k6ENdDo4cznSaW3m8vP18rDWpV-U-aA@mail.gmail.com>',NULL,NULL,'Re: Google Meet','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">The link isn&#39;t going to stay open, drop me a text later and we&#39;ll set something up.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">I&#39;ll go looking for someone who can help me with my tire.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">-- Tom</div><div class=\"gmail_default\" style=\"font-size:small\"></div></div><br><div><br></div></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, May 22, 2025 at 10:42 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div id=\"m_2294518844041881785bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">sorry pushing late today….</div><div id=\"m_2294518844041881785bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">I&#39;ll try later if thats ok…</div><div id=\"m_2294518844041881785bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><br></div> <br> <div id=\"m_2294518844041881785bloop_sign_1747924875289572864\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div> <br><p>On May 22, 2025 at 10:36:47 AM, Thomas Pownall (<a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">Rick:</div></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">If it&#39;s easier, I figure have the document from yesterday up on the screen and do this over Google Meet:</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><a href=\"https://meet.google.com/frv-iaea-iho\" target=\"_blank\">https://meet.google.com/frv-iaea-iho</a><br><br></div><div class=\"gmail_default\" style=\"font-size:small\">-- Tom</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div></div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div id=\"m_2294518844041881785m_-1700796143563430783bloop_sign_1747832012616983040\">\r\n      \r\n</div>\r\n\r\n\r\n</blockquote></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div>','The link isn\'t going to stay open, drop me a text later and we\'ll set\r\nsomething up.\r\n\r\nI\'ll go looking for someone who can help me with my tire.\r\n\r\n-- Tom\r\n\r\n\r\n\r\nOn Thu, May 22, 2025 at 10:42 AM Rick <rick@mavrix.one> wrote:\r\n\r\n> sorry pushing late today….\r\n> I\'ll try later if thats ok…\r\n>\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On May 22, 2025 at 10:36:47 AM, Thomas Pownall (tpownall@cadxservices.com)\r\n> wrote:\r\n>\r\n> Rick:\r\n>\r\n> If it\'s easier, I figure have the document from yesterday up on the screen\r\n> and do this over Google Meet:\r\n>\r\n> https://meet.google.com/frv-iaea-iho\r\n>\r\n> -- Tom\r\n>\r\n>',0,0,0,0,0,0,'2025-05-22 14:44:28','2025-12-09 19:03:21','2025-12-09 19:03:21','2025-12-09 19:03:21',NULL,NULL,NULL),
(290,4,' <BL3PR20MB49244BF70ACD47ABC257CEF9AF99A@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: Next mtg?','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHey Rick,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nSounds great, I have good availability in the afternoon for Wednesday - Friday if you want to send an invite.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nThanks,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nJason</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Thursday, May 22, 2025 8:28 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Next mtg?</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Hi Jason,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Can we schedule something for next week with my money guy?</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Let me know what works best.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick&nbsp;</div>\r\n<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','Hey Rick,\r\n\r\nSounds great, I have good availability in the afternoon for Wednesday - Friday if you want to send an invite.\r\n\r\nThanks,\r\nJason\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Thursday, May 22, 2025 8:28 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Next mtg?\r\n\r\nHi Jason,\r\nCan we schedule something for next week with my money guy?\r\nLet me know what works best.\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]',0,0,0,0,0,0,'2025-05-22 15:37:24','2025-12-09 19:03:21','2025-12-09 19:03:21','2025-12-09 19:03:21',NULL,NULL,NULL),
(291,4,'<2111947180.182541.1747928288431@mail.yahoo.com>',NULL,NULL,'Re: Next mtg.','kennerly.john@yahoo.com','John Kennerly','<html><head></head><body><div class=\"ydp82755ae0yahoo-style-wrap\" style=\"font-family:Helvetica Neue, Helvetica, Arial, sans-serif;font-size:16px;\"><div></div>\r\n        <div dir=\"ltr\" data-setdir=\"false\">I\'ll be ready as close to 6 as possible.&nbsp; <br></div><div dir=\"ltr\" data-setdir=\"false\"><br></div><div dir=\"ltr\" data-setdir=\"false\">Will inform if commute impacts timeline, but not expected.</div><div dir=\"ltr\" data-setdir=\"false\"><br></div><div dir=\"ltr\" data-setdir=\"false\">Signed NDA attached.</div><div dir=\"ltr\" data-setdir=\"false\"><br></div><div dir=\"ltr\" data-setdir=\"false\">Best,</div><div dir=\"ltr\" data-setdir=\"false\"><br></div><div dir=\"ltr\" data-setdir=\"false\">John<br></div><div><br></div>\r\n        \r\n        <div id=\"ydp82755ae0yahoo_quoted_7970733082\" class=\"ydp82755ae0yahoo_quoted\">\r\n            <div style=\"font-family:\'Helvetica Neue\', Helvetica, Arial, sans-serif;font-size:13px;\">\r\n                \r\n                <div>\r\n                    On Wednesday, May 21, 2025 at 03:57:06 PM EDT, John Kennerly &lt;kennerly.john@yahoo.com&gt; wrote:\r\n                </div>\r\n                <div><br></div>\r\n                <div><br></div>\r\n                <div><div id=\"ydp82755ae0yiv8742068277\"><div><div style=\"font-family:Helvetica Neue, Helvetica, Arial, sans-serif;font-size:16px;\" class=\"ydp82755ae0yiv8742068277ydpf5103f47yahoo-style-wrap\"><div></div>\r\n        <div dir=\"ltr\">6pm This Thursday works, I\'ll get the signed NDA back to you before we start.</div><div dir=\"ltr\"><br clear=\"none\"></div><div dir=\"ltr\">John kennerly<br clear=\"none\"></div><div><br clear=\"none\"></div>\r\n        \r\n        <div id=\"ydp82755ae0yiv8742068277yqt49922\" class=\"ydp82755ae0yiv8742068277yqt5467291699\"><div id=\"ydp82755ae0yiv8742068277ydpf5103f47yahoo_quoted_7953858104\" class=\"ydp82755ae0yiv8742068277ydpf5103f47yahoo_quoted\">\r\n            <div style=\"font-family:\'Helvetica Neue\', Helvetica, Arial, sans-serif;font-size:13px;\">\r\n                \r\n                <div>\r\n                    On Tuesday, May 20, 2025 at 08:52:58 PM EDT, Rick &lt;rick@mavrix.one&gt; wrote:\r\n                </div>\r\n                <div><br clear=\"none\"></div>\r\n                <div><br clear=\"none\"></div>\r\n                <div><div id=\"ydp82755ae0yiv8742068277ydpf5103f47yiv8211447698\">\r\n    <div id=\"ydp82755ae0yiv8742068277ydpf5103f47yiv8211447698bloop_customfont\" style=\"font-family:Helvetica, Arial;font-size:13px;margin:0px;\">Hi John,&nbsp;</div><div id=\"ydp82755ae0yiv8742068277ydpf5103f47yiv8211447698bloop_customfont\" style=\"font-family:Helvetica, Arial;font-size:13px;margin:0px;\">Thanks for the re-connect today.</div>Let’s shoot for this Thursday at 6p&nbsp;<div><div id=\"ydp82755ae0yiv8742068277ydpf5103f47yiv8211447698bloop_sign_1747788486926599936\" class=\"ydp82755ae0yiv8742068277ydpf5103f47yiv8211447698bloop_sign\"><a shape=\"rect\" href=\"https://meet.google.com/rug-ccvn-qwb\" target=\"_blank\" rel=\"noreferrer noopener\">https://meet.google.com/rug-ccvn-qwb</a></div><div id=\"ydp82755ae0yiv8742068277ydpf5103f47yiv8211447698bloop_sign_1747788486926599936\" class=\"ydp82755ae0yiv8742068277ydpf5103f47yiv8211447698bloop_sign\"><br clear=\"none\"></div><div id=\"ydp82755ae0yiv8742068277ydpf5103f47yiv8211447698bloop_sign_1747788486926599936\" class=\"ydp82755ae0yiv8742068277ydpf5103f47yiv8211447698bloop_sign\">Also, attached is an NDA: please sign and return at your leisure.</div><div id=\"ydp82755ae0yiv8742068277ydpf5103f47yiv8211447698bloop_sign_1747788486926599936\" class=\"ydp82755ae0yiv8742068277ydpf5103f47yiv8211447698bloop_sign\">Let me know if you need anything else.</div><div id=\"ydp82755ae0yiv8742068277ydpf5103f47yiv8211447698bloop_sign_1747788486926599936\" class=\"ydp82755ae0yiv8742068277ydpf5103f47yiv8211447698bloop_sign\">Thanks,<br clear=\"none\"></div><div id=\"ydp82755ae0yiv8742068277ydpf5103f47yiv8211447698bloop_sign_1747788486926599936\" class=\"ydp82755ae0yiv8742068277ydpf5103f47yiv8211447698bloop_sign\">Rick</div><div id=\"ydp82755ae0yiv8742068277ydpf5103f47yiv8211447698bloop_sign_1747788486926599936\" class=\"ydp82755ae0yiv8742068277ydpf5103f47yiv8211447698bloop_sign\"><br clear=\"none\"></div><div id=\"ydp82755ae0yiv8742068277ydpf5103f47yiv8211447698bloop_sign_1747788486926599936\" class=\"ydp82755ae0yiv8742068277ydpf5103f47yiv8211447698bloop_sign\">Rick Mislan, PhD<br clear=\"none\"><div><a shape=\"rect\" target=\"_blank\" rel=\"noreferrer noopener\">https://mavrix.one</a></div><div><img data-inlineimagemanipulating=\"true\" data-id=\"1747928163908\"></div>\r\n     \r\n</div>\r\n\r\n\r\n</div></div></div>\r\n            </div>\r\n        </div></div></div><div id=\"ydp82755ae0yiv8742068277DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2\"><br clear=\"none\"><table style=\"border-top:1px solid #D3D4DE;\" class=\"yahoo-compose-table-card\"><tbody><tr><td colspan=\"1\" rowspan=\"1\" style=\"width:55px;padding-top:13px;\"><a shape=\"rect\" href=\"https://www.avast.com/sig-email?utm_medium=email&amp;utm_source=link&amp;utm_campaign=sig-email&amp;utm_content=webmail\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://s-install.avcdn.net/ipm/preview/icons/icon-envelope-tick-round-orange-animated-no-repeat-v1.gif\" alt=\"\" width=\"46\" height=\"29\" style=\"width:46px;min-height:29px;\" class=\"\"></a></td><td colspan=\"1\" rowspan=\"1\" style=\"width:470px;padding-top:12px;color:#41424e;font-size:13px;font-family:Arial, Helvetica, sans-serif;line-height:18px;\">Virus-free.<a shape=\"rect\" href=\"https://www.avast.com/sig-email?utm_medium=email&amp;utm_source=link&amp;utm_campaign=sig-email&amp;utm_content=webmail\" style=\"color:#4453ea;\" target=\"_blank\" rel=\"noreferrer noopener\">www.avast.com</a></td></tr></tbody></table><a shape=\"rect\" href=\"#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2\" target=\"_blank\" rel=\"noreferrer noopener\"></a></div></div></div></div>\r\n            </div>\r\n        </div></div></body></html>',' I\'ll be ready as close to 6 as possible.  \r\n\r\nWill inform if commute impacts timeline, but not expected.\r\nSigned NDA attached.\r\nBest,\r\nJohn\r\n\r\n    On Wednesday, May 21, 2025 at 03:57:06 PM EDT, John Kennerly <kennerly.john@yahoo.com> wrote:  \r\n \r\n  6pm This Thursday works, I\'ll get the signed NDA back to you before we start.\r\nJohn kennerly\r\n\r\n    On Tuesday, May 20, 2025 at 08:52:58 PM EDT, Rick <rick@mavrix.one> wrote:  \r\n \r\n  Hi John, Thanks for the re-connect today.Let’s shoot for this Thursday at 6p https://meet.google.com/rug-ccvn-qwb\r\nAlso, attached is an NDA: please sign and return at your leisure.Let me know if you need anything else.Thanks,\r\nRick\r\nRick Mislan, PhD\r\nhttps://mavrix.one   \r\n\r\n|  | Virus-free.www.avast.com |\r\n\r\n  ',0,0,0,0,0,0,'2025-05-22 15:38:07','2025-12-09 19:06:44','2025-12-09 19:06:44','2025-12-09 19:06:44',NULL,NULL,NULL),
(292,4,'<CANkMA8VnRU2xj_9LZXXaT2HtBokGPJfvDSymG+GDcjWi2e5qyA@mail.gmail.com>',NULL,NULL,'Due outs','avalkenburg@strategic-logix.com','Andrew Valkenburg','<div dir=\"auto\">Rick,</div><div dir=\"auto\"><br></div><div dir=\"auto\">Us made parts I can get you ASAP:</div><div dir=\"auto\">Brave F7 FC</div><div dir=\"auto\">Brave 55A 4-in-1 ESC</div><div dir=\"auto\">Revo 2207 Motors</div><div dir=\"auto\">Aura Camera</div><div dir=\"auto\"><br></div><div dir=\"auto\">If you let me know if we want 5” or 7” we can see about sending frames and props as well.</div><div dir=\"auto\"><br></div><div dir=\"auto\">I thought I heard you say you have a 16S battery, which could be a lot for this. But we can talk about optimizations.</div><div dir=\"auto\"><br></div><div dir=\"auto\">———————-</div><div dir=\"auto\"><br></div><div dir=\"auto\">If you can remind me about your Brave1 replacement name, the Army CTO seems to be interested in the concept</div><div dir=\"auto\"><br></div><div dir=\"auto\"><br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\">Sincerely,<br><br>Andrew J. Valkenburg<br>Chief Operations Officer | Partner,<br>Strategic Logix<br><br>484-225-9132<br><a href=\"mailto:Avalkenburg@strategic-logix.com\">Avalkenburg@strategic-logix.com</a></div></div></div>','Rick,\r\n\r\nUs made parts I can get you ASAP:\r\nBrave F7 FC\r\nBrave 55A 4-in-1 ESC\r\nRevo 2207 Motors\r\nAura Camera\r\n\r\nIf you let me know if we want 5” or 7” we can see about sending frames and\r\nprops as well.\r\n\r\nI thought I heard you say you have a 16S battery, which could be a lot for\r\nthis. But we can talk about optimizations.\r\n\r\n———————-\r\n\r\nIf you can remind me about your Brave1 replacement name, the Army CTO seems\r\nto be interested in the concept\r\n\r\n\r\nSincerely,\r\n\r\nAndrew J. Valkenburg\r\nChief Operations Officer | Partner,\r\nStrategic Logix\r\n\r\n484-225-9132\r\nAvalkenburg@strategic-logix.com',0,0,0,0,0,0,'2025-05-22 15:40:18','2025-12-09 19:06:44','2025-12-09 19:06:44','2025-12-09 19:06:44',NULL,NULL,NULL),
(293,4,' <BL3PR20MB492438A8A87D8E692DDD89DCAF99A@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: Next mtg?','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nYeah, anything past 12pm PST.</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Thursday, May 22, 2025 8:38 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Next mtg?</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"\">Afternoon your time?</div>\r\n<br>\r\n<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<p class=\"x_gmail_quote\" style=\"color:#000\">On May 22, 2025 at 11:37:24 AM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_gmail_quote\"><span>\r\n<div></div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Yeah, anything past 12pm PST.\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Thursday, May 22, 2025 8:38 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Next mtg?\r\n\r\nAfternoon your time?\r\n\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\nOn May 22, 2025 at 11:37:24 AM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n',0,0,0,0,0,0,'2025-05-22 15:40:38','2025-12-09 19:06:44','2025-12-09 19:06:44','2025-12-09 19:06:44',NULL,NULL,NULL),
(294,4,' <BL3PR20MB4924844C58E7792C0BC53067AF99A@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: Next mtg?','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nOr actually anytime Wednesday except 1pm - 2pm would work, even the morning.</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Sent:</b> Thursday, May 22, 2025 8:40 AM<br>\r\n<b>To:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next mtg?</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style type=\"text/css\" style=\"display:none\">\r\n<!--\r\np\r\n	{margin-top:0;\r\n	margin-bottom:0}\r\n-->\r\n</style>\r\n<div dir=\"ltr\">\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nYeah, anything past 12pm PST.</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Thursday, May 22, 2025 8:38 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Next mtg?</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"\">Afternoon your time?</div>\r\n<br>\r\n<br>\r\n<div class=\"x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<p class=\"x_x_gmail_quote\" style=\"color:#000\">On May 22, 2025 at 11:37:24 AM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_gmail_quote\"><span>\r\n<div></div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Or actually anytime Wednesday except 1pm - 2pm would work, even the morning.\r\n________________________________\r\nFrom: Jason Blick <jason@corvexsystems.com>\r\nSent: Thursday, May 22, 2025 8:40 AM\r\nTo: Rick <rick@mavrix.one>\r\nSubject: Re: Next mtg?\r\n\r\nYeah, anything past 12pm PST.\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Thursday, May 22, 2025 8:38 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Next mtg?\r\n\r\nAfternoon your time?\r\n\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\nOn May 22, 2025 at 11:37:24 AM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n',0,0,0,0,0,0,'2025-05-22 15:41:58','2025-12-09 19:06:45','2025-12-09 19:06:45','2025-12-09 19:06:45',NULL,NULL,NULL),
(295,4,' <BYAPR07MB58481C76567712BC99067B05AD99A@BYAPR07MB5848.namprd07.prod.outlook.com>',NULL,NULL,'Re: Next steps?','rich@achramlabs.com','Richard Van Voorst','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:0 0 0 0 0 0 0 0 0 0;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;\r\n	panose-1:2 11 0 4 2 2 2 2 2 4;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:10.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon0, li.airmailon0, div.airmailon0\r\n	{mso-style-name:airmailon;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle20\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Thanks Rick! <br>\r\n<br>\r\nAttached is the executed version for your records!<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Rich<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div id=\"mail-editor-reference-message-container\">\r\n<div>\r\n<div>\r\n<div style=\"border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\"><b><span style=\"font-size:12.0pt;color:black\">From:\r\n</span></b><span style=\"font-size:12.0pt;color:black\">Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Date: </b>Thursday, May 22, 2025 at 12:48</span><span style=\"font-size:12.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"font-size:12.0pt;color:black\">PM<br>\r\n<b>To: </b>Richard Van Voorst &lt;rich@achramlabs.com&gt;<br>\r\n<b>Subject: </b>Re: Next steps?<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Signed.&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Attached.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Confirm receipt.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Thanks!<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Rick<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n<div id=\"bloop_sign_1747932416619680768\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Rick Mislan, PhD<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><a href=\"https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one\">https://mavrix.one</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><img border=\"0\" id=\"_x0000_i1027\" src=\"file:////Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"airmailon\"><span style=\"font-size:10.0pt;font-family:Helvetica\">On May 21, 2025 at 11:03:03 AM, Richard Van Voorst (<a href=\"mailto:rich@achramlabs.com\">rich@achramlabs.com</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:Helvetica\">Hey Rick,<br>\r\n<br>\r\nI sent the meeting invite. I’m looking forward to taking a tech deep dive with you! Here is our MNDA if you are willing to sign it, we can head down that road. If you have questions let me know.\r\n</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:Helvetica\">&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">Talk soon,<br>\r\n<br>\r\nRich<br>\r\n<br>\r\n--&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">Achram Labs | CEO</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">e.\r\n<a href=\"mailto:rich@achramlabs.com\"><span style=\"color:#467886\">rich@achramlabs.com</span></a></span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">c. 813.334.5104</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:Helvetica\">&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:Helvetica\">&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:Helvetica\">&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n<div id=\"mail-editor-reference-message-container\">\r\n<div>\r\n<div>\r\n<div style=\"border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:12.0pt\"><b><span style=\"font-size:12.0pt;font-family:Helvetica;color:black\">From:\r\n</span></b><span style=\"font-size:12.0pt;font-family:Helvetica;color:black\">Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Date: </b>Tuesday, May 20, 2025 at 8:43</span><span style=\"font-size:12.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"font-size:12.0pt;font-family:Helvetica;color:black\">PM<br>\r\n<b>To: </b>Richard Van Voorst &lt;rich@achramlabs.com&gt;<br>\r\n<b>Subject: </b>Re: Next steps?</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:Helvetica\">Monday and Tuesday 8-10 and 1-3 are open.&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:Helvetica\">Please let me know.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:Helvetica\">Looking forward to catching up!<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:Helvetica\">Thank you,<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:Helvetica\">Rick<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:Helvetica\">&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:Helvetica\">&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_sign_1747788112089477888\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:Helvetica\">Rick Mislan, PhD<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:Helvetica\"><a href=\"https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one\">https://mavrix.one</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:Helvetica\"><img border=\"0\" id=\"_x0000_i1026\" src=\"file:////Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:Helvetica\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"airmailon0\"><span style=\"font-size:10.0pt;font-family:Helvetica\">On May 20, 2025 at 1:16:54 PM, Richard Van Voorst (<a href=\"mailto:rich@achramlabs.com\">rich@achramlabs.com</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:Helvetica\">Hey Rick,<br>\r\n<br>\r\nSo sorry, but for some reason I found this email in my spam folder looking for something else! I felt the exact same way. Would love to connect with you at the beginning of next week. What does your schedule look like late Monday or Tuesday?</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:Helvetica\">&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">V/R,<br>\r\n<br>\r\nRich<br>\r\n<br>\r\n--&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">Achram Labs | CEO</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">e.\r\n<a href=\"mailto:rich@achramlabs.com\"><span style=\"color:#467886\">rich@achramlabs.com</span></a></span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">c. 813.334.5104</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:Helvetica\">&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:Helvetica\">&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n<div id=\"mail-editor-reference-message-container\">\r\n<div>\r\n<div>\r\n<div style=\"border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:12.0pt\"><b><span style=\"font-size:12.0pt;font-family:Helvetica;color:black\">From:\r\n</span></b><span style=\"font-size:12.0pt;font-family:Helvetica;color:black\">Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Date: </b>Thursday, May 8, 2025 at 1:36</span><span style=\"font-size:12.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"font-size:12.0pt;font-family:Helvetica;color:black\">PM<br>\r\n<b>To: </b>Richard Van Voorst &lt;rich@achramlabs.com&gt;<br>\r\n<b>Subject: </b>Next steps?</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">Hi Rich,</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">It was my pleasure meeting you&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">at Bad&nbsp;Monkey&nbsp;Monday night.&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">As a creative, I wish we had&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">more time&nbsp;to chat.&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">That said, I’d love to</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">schedule a time to&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">reconnect next week.&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">Please let me know</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">what’s possible!</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">Thanks much,</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">Rick</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">&nbsp;</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\">Rick Mislan, PhD</span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\"><a href=\"https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one\">https://mavrix.one</a></span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:12.0pt;font-family:Helvetica\"><img border=\"0\" id=\"_x0000_i1025\" src=\"file:////Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Thanks Rick!\r\n\r\nAttached is the executed version for your records!\r\n\r\nRich\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nDate: Thursday, May 22, 2025 at 12:48 PM\r\nTo: Richard Van Voorst <rich@achramlabs.com>\r\nSubject: Re: Next steps?\r\nSigned.\r\nAttached.\r\nConfirm receipt.\r\nThanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 21, 2025 at 11:03:03 AM, Richard Van Voorst (rich@achramlabs.com<mailto:rich@achramlabs.com>) wrote:\r\nHey Rick,\r\n\r\nI sent the meeting invite. I’m looking forward to taking a tech deep dive with you! Here is our MNDA if you are willing to sign it, we can head down that road. If you have questions let me know.\r\n\r\nTalk soon,\r\n\r\nRich\r\n\r\n--\r\nAchram Labs | CEO\r\ne. rich@achramlabs.com<mailto:rich@achramlabs.com>\r\nc. 813.334.5104\r\n\r\n\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nDate: Tuesday, May 20, 2025 at 8:43 PM\r\nTo: Richard Van Voorst <rich@achramlabs.com>\r\nSubject: Re: Next steps?\r\nMonday and Tuesday 8-10 and 1-3 are open.\r\nPlease let me know.\r\nLooking forward to catching up!\r\nThank you,\r\nRick\r\n\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 20, 2025 at 1:16:54 PM, Richard Van Voorst (rich@achramlabs.com<mailto:rich@achramlabs.com>) wrote:\r\nHey Rick,\r\n\r\nSo sorry, but for some reason I found this email in my spam folder looking for something else! I felt the exact same way. Would love to connect with you at the beginning of next week. What does your schedule look like late Monday or Tuesday?\r\n\r\nV/R,\r\n\r\nRich\r\n\r\n--\r\nAchram Labs | CEO\r\ne. rich@achramlabs.com<mailto:rich@achramlabs.com>\r\nc. 813.334.5104\r\n\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nDate: Thursday, May 8, 2025 at 1:36 PM\r\nTo: Richard Van Voorst <rich@achramlabs.com>\r\nSubject: Next steps?\r\nHi Rich,\r\nIt was my pleasure meeting you\r\nat Bad Monkey Monday night.\r\nAs a creative, I wish we had\r\nmore time to chat.\r\nThat said, I’d love to\r\nschedule a time to\r\nreconnect next week.\r\nPlease let me know\r\nwhat’s possible!\r\nThanks much,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one>\r\n[X]\r\n',0,0,0,0,0,0,'2025-05-22 19:39:40','2025-12-09 19:06:45','2025-12-09 19:06:45','2025-12-09 19:06:45',NULL,NULL,NULL),
(296,4,'<AED7D1DD-994A-4675-9863-7457EE89E6F5@impossible-objects.com>',NULL,NULL,'Re: Next steps?','shoover@impossible-objects.com','Steve Hoover','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\">Rick,<div><br></div><div>Sounds good. &nbsp;I am in Europe this week on a business trip.</div><div><br></div><div>As discussed below are times next week.</div><div><br></div><div>Tuesday - noon to 3 pm</div><div>Wednesday -9-noon and 1-5</div><div>Thursday 9-3 pm</div><div>Friday 9-noon, 1:30- pm</div><div><br></div><div>All times east coast time zone.</div><div><br></div><div>Best</div><div><br></div><div>Steve</div><div><br></div><div><div><div><br><blockquote type=\"cite\"><div>On May 22, 2025, at 5:26 PM, Rick &lt;rick@mavrix.one&gt; wrote:</div><br class=\"Apple-interchange-newline\"><div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><div style=\"margin: 0px;\">Hi Steve,</div><div style=\"margin: 0px;\">Can you send me some dates and times to have a follow-up with Brian?</div><div style=\"margin: 0px;\">Thank you,</div><div style=\"margin: 0px;\">Rick</div></div><br style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><div class=\"gmail_signature\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div><div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height: 11px;\"></div></div></div></blockquote></div><br></div></div></body></html>','Rick,\r\n\r\nSounds good.  I am in Europe this week on a business trip.\r\n\r\nAs discussed below are times next week.\r\n\r\nTuesday - noon to 3 pm\r\nWednesday -9-noon and 1-5\r\nThursday 9-3 pm\r\nFriday 9-noon, 1:30- pm\r\n\r\nAll times east coast time zone.\r\n\r\nBest\r\n\r\nSteve\r\n\r\n\r\n> On May 22, 2025, at 5:26 PM, Rick <rick@mavrix.one> wrote:\r\n> \r\n> Hi Steve,\r\n> Can you send me some dates and times to have a follow-up with Brian?\r\n> Thank you,\r\n> Rick\r\n> \r\n> Rick Mislan, PhD\r\n> https://mavrix.one <https://mavrix.onehttps//mavrix.onehttps://mavrix.one>',0,0,0,0,0,0,'2025-05-22 19:50:35','2025-12-09 19:06:46','2025-12-09 19:06:46','2025-12-09 19:06:46',NULL,NULL,NULL),
(297,4,'<20250522214907.c829192e502a4ef0@email.pandadoc.net>',NULL,NULL,'\"Bavovna MNDA_Mavrix_05192025\" document has been completed by all participants','docs@email.pandadoc.net','PandaDoc','<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\r\n<html>\r\n<head>\r\n	<title></title>\r\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n	<meta name=\"viewport\" content=\"width=320, target-densitydpi=device-dpi\">\r\n	<meta name=\"x-apple-disable-message-reformatting\">\r\n	<style type=\"text/css\">\r\n        /* Client-specific Styles */\r\n        #outlook a { padding: 0; }	/* Force Outlook to provide a \"view in browser\" button. */\r\n        body { width: 100% !important; }\r\n        .ReadMsgBody { width: 100%; }\r\n        .ExternalClass { width: 100%; display:block !important; } /* Force Hotmail to display emails at full width */\r\n\r\n        /* Reset Styles */\r\n        /* Add 100px so mobile switch bar doesn\'t cover street address. */\r\n        body { background-color: #e5e5e5; margin: 0; padding: 0; }\r\n        img { outline: none; text-decoration: none; display: block;}\r\n        br, strong br, b br, em br, i br { line-height:100%; }\r\n        h1, h2, h3, h4, h5, h6 { line-height: 100% !important; -webkit-font-smoothing: antialiased; }\r\n        h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color: #333b40 !important; }\r\n        h1 a:active, h2 a:active,  h3 a:active, h4 a:active, h5 a:active, h6 a:active {	color: #333b40 !important; }\r\n        h1 a:visited, h2 a:visited,  h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited { color: #333b40 !important; }\r\n        table td, table tr { border-collapse: collapse; }\r\n        .yshortcuts, .yshortcuts a, .yshortcuts a:link,.yshortcuts a:visited, .yshortcuts a:hover, .yshortcuts a span { color: black; text-decoration: none !important; border-bottom: none !important; background: none !important;}\r\n\r\n        body, td { font-family:\'Helvetica Neue\',\'Helvetica\',Arial,sans-serif;font-size:15px;color: #333b40;margin:0;padding:0;line-height:22px!important;}\r\n        #background-table { background-color: #e5e5e5; }\r\n        #content-table { background-color: #ffffff; text-align: left;}\r\n        .logo { display: block; text-align: center; border:none;}\r\n        .separator {margin: 10px 0 20px 0; border: none; color: #eaeaea; background-color: #eaeaea; height: 1px;}\r\n        #content-table p {margin: 0 0 20px 0;}\r\n        .footer {color: #898a8b; font-size: 12px; line-height: 18px; text-align: center; padding-bottom:20px;}\r\n        .text-with-emoji img { display: inline; }\r\n\r\n        /* Mobile-specific Styles */\r\n        @media only screen and (max-width: 480px) {\r\n            .w_full {width: 360px !important;}\r\n            .w_padding {width: 20px !important;}\r\n            .w_full_with_padding {width: 320px !important;}\r\n            .w_message {width: 250px !important;}\r\n            .media_padding {padding: 10px 0 !important;}\r\n        }\r\n	</style>\r\n</head>\r\n<body>\r\n    \r\n    \r\n    <div style=\"display: none; max-height: 0px; overflow: hidden;\">\r\n        &#34;Bavovna MNDA_Mavrix_05192025&#34; document has been completed by all participants.\r\n\r\nOpen the document via https://app.pandadoc.com/document/v2?token=04296ebd01e337576a834e7407f1d033af4e6ca7\r\n\r\nPandaDoc is an application to send, track, annotate, and sign documents online in a fast, secure, and professional way.\r\n    </div>\r\n    <div style=\"display: none; max-height: 0px; overflow: hidden;\">\r\n        &nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;\r\n    </div>\r\n\r\n	<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" id=\"background-table\">\r\n		<tbody>\r\n			<tr><td align=\"center\" bgcolor=\"#e5e5e5\">\r\n				<table class=\"w_full\" width=\"480\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n					<tbody>\r\n						<tr><td class=\"w_full\" width=\"480\" height=\"30\"></td></tr>\r\n						<tr><td class=\"w_full\" width=\"480\" height=\"30\" align=\"center\">\r\n								\r\n									<img style=\"display: block; height: 50px; text-align: center; border:none;\"\r\n										 src=\"https://s3-us-west-2.amazonaws.com/pd-emails/images/pd-logo-new.png\"\r\n										 alt=\"\"\r\n										 title=\"\"\r\n										 height=\"50\"\r\n										 border=\"0\"\r\n										 class=\"logo\"\r\n									/>\r\n                                \r\n							</td></tr>\r\n						<tr><td class=\"w_full\" width=\"480\" height=\"30\"></td></tr>\r\n						<tr><td class=\"w_full\" width=\"480\" id=\"content-table\" bgcolor=\"#ffffff\" align=\"center\">\r\n							<table class=\"w_full\" width=\"480\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" id=\"email-base-table\">\r\n								<tbody>\r\n									<tr>\r\n										<td class=\"w_padding\" width=\"40\"></td>\r\n										<td class=\"w_full_with_padding\" width=\"400\" height=\"30\"></td>\r\n										<td class=\"w_padding\" width=\"40\"></td>\r\n									</tr>\r\n									<tr>\r\n										<td class=\"w_padding\" width=\"40\"></td>\r\n										<td class=\"w_full_with_padding\" width=\"400\">\r\n											<table class=\"w_full_with_padding\" width=\"400\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" id=\"basic-table\">\r\n    <tr><td class=\"w_full_with_padding\" width=\"400\">\r\n        <table class=\"w_full_with_padding\" width=\"400\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n            <tbody>\r\n                <tr>\r\n                    <td class=\"w_message\" width=\"330\" valign=\"top\" style=\"font-family: \'Helvetica Neue\',\'Helvetica\',Arial,sans-serif;font-size: 15px;color: #333b40;margin: 0;padding: 0;border-collapse: collapse;line-height: 22px!important;\">\r\n                        \"<b>Bavovna MNDA_Mavrix_05192025</b>\" document has been completed by all participants.\r\n                    </td>\r\n                </tr>\r\n            </tbody>\r\n        </table>\r\n    </td></tr>\r\n    <tr><td class=\"w_full_with_padding\" width=\"400\">\r\n        <hr size=\"1\" noshade style=\"margin: 10px 0 20px 0; border: none; color: #eaeaea; background-color: #eaeaea; height: 1px;\" class=\"separator\"/>\r\n    </td></tr>\r\n    <tr><td class=\"w_full_with_padding\" width=\"400\" align=\"center\">\r\n        <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-top-left-radius: 3px;border-top-right-radius: 3px;border-bottom-right-radius: 3px;border-bottom-left-radius: 3px;background-color: #47B972;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\r\n            <tbody>\r\n                <tr>\r\n                    <td align=\"center\" valign=\"middle\" style=\"font-size: 16px;padding: 0px;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%; \">\r\n                        <a title=\"Open the document\" href=\"https://email.email.pandadoc.net/c/eJxMj89uEzEYxJ_Gvm1kf_b6z8GHhLCKAqpAQUBPyGt_bkyy9mrrBrRPj3oozW00mtH8JrpRiTEZGmt4mbC0Xzm6pcd4OOzNLu0f1pfWnqb241QoOq6ltj3rpaZnxwG94jEFhDGMgL012isGAH7k2hqaHTDoWQ8AXFqmN8GA5RawZ-AlJkYkw8nn62b2JfpYw6Zgo1d3bm1-JmJLYCAw-Hl-D4Q6ERjeYAkMNyBiaPWChYg9k2AVjpFxFEL3WnkjJGrJdOKRCeGTRBW8pqW2nHLwLdfy-lgmi0LE2GllsJM-YGeUlR2LhnHBpZcp0ro8-ZLX_6VP2_1uPX4bAm7H-nn9mna3D4cHurglhwuRbPK3Jf_d1IK0uTfkO9ndU9z7oU7zFRtGenNA_9Tl8jz7gK-b-igeh9-hfv-pH8-XLyf1UW1Px38BAAD__zmwkWM\" target=\"_blank\" style=\"line-height: 100%;text-align: center;text-decoration: none;color: #FFFFFF;word-wrap: break-word;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;text-transform: uppercase;display: inline-block;padding: 11px 25px;\">\r\n                            Open the document\r\n                        </a>\r\n                    </td>\r\n                </tr>\r\n            </tbody>\r\n        </table>\r\n    </td></tr>\r\n</table>\r\n										</td>\r\n										<td class=\"w_padding\" width=\"40\"></td>\r\n									</tr>\r\n									<tr>\r\n										<td class=\"w_padding\" width=\"40\"></td>\r\n										<td class=\"w_full_with_padding\" width=\"400\" height=\"30\"></td>\r\n										<td class=\"w_padding\" width=\"40\"></td>\r\n									</tr>\r\n								</tbody>\r\n							</table>\r\n						</td></tr>\r\n						<tr>\r\n							<td class=\"w_full\" width=\"480\" height=\"20\">\r\n								\r\n									<tr><td class=\"w_full\" width=\"480\" height=\"15\"></td></tr>\r\n								\r\n							</td>\r\n						</tr>\r\n						<tr><td class=\"w_full\" width=\"480\">\r\n							<table class=\"w_full\" width=\"480\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n								<tbody>\r\n									<tr>\r\n										<td class=\"w_padding\" width=\"51\"></td>\r\n										<td class=\"w_full_with_padding\" width=\"378\">\r\n											<p class=\"footer\" align=\"center\" style=\"color: #767676; font-size: 12px; line-height: 15px; text-align: center; padding-bottom:20px; font-family: \'Helvetica Neue\', \'Helvetica\', Arial, sans-serif;\">\r\n												\r\n													Use PandaDoc to create, send, track, and eSign documents — quickly and securely.\r\n												\r\n											</p>\r\n										</td>\r\n										<td class=\"w_padding\" width=\"51\"></td>\r\n									</tr>\r\n								</tbody>\r\n							</table>\r\n						</td></tr>\r\n					</tbody>\r\n				</table>\r\n			</td></tr>\r\n		</tbody>\r\n	</table>\r\n<img width=\"1\" height=\"1\" alt=\"\" src=\"https://email.email.pandadoc.net/o/eJxMj01PAjEYhH8Nve2m249te-gBRELQEA1G5WTK27dQYVuyFjT76w0Hzd4mk0zmebzdtXwXNPEZLh2m8hG97SX65XKuZ2G-Hi6l7LvytkkEbaOEMpJKocjBNsEYcAaDQQSFGr3TXEAbuAxaS02iZZRJKhljjTBU1aCZaQxDSZkTGOhEUOxcPNVnl7zzGeqEhaRcYojgSszpRiOCQc69r1SrsRIOsNKtERX1mja8EU4ET3K_dykO_6OH6Xw2rF4WgNNdfhyew-x6t1yT3vYRjhNBO3ft40-dE5Ji_9xHsRpTjHvI3fmEBT25Wka-c3_8OjvA26da8e3iE_Lru9oejk-b9r6dbla_AQAA__9ZhXPk\"></body>\r\n</html>','\"Bavovna MNDA_Mavrix_05192025\" document has been completed by all participants.\r\n\r\nOpen the document via https://email.email.pandadoc.net/c/eJxMj89uEzEYxJ_Gvm1kf_b6z8GHhLCKAqpAQUBPyGt_bkyy9mrrBrRPj3oozW00mtH8JrpRiTEZGmt4mbC0Xzm6pcd4OOzNLu0f1pfWnqb241QoOq6ltj3rpaZnxwG94jEFhDGMgL012isGAH7k2hqaHTDoWQ8AXFqmN8GA5RawZ-AlJkYkw8nn62b2JfpYw6Zgo1d3bm1-JmJLYCAw-Hl-D4Q6ERjeYAkMNyBiaPWChYg9k2AVjpFxFEL3WnkjJGrJdOKRCeGTRBW8pqW2nHLwLdfy-lgmi0LE2GllsJM-YGeUlR2LhnHBpZcp0ro8-ZLX_6VP2_1uPX4bAm7H-nn9mna3D4cHurglhwuRbPK3Jf_d1IK0uTfkO9ndU9z7oU7zFRtGenNA_9Tl8jz7gK-b-igeh9-hfv-pH8-XLyf1UW1Px38BAAD__zmwkWM\r\n\r\nPandaDoc is an application to send, track, annotate, and sign documents online in a fast, secure, and professional way.',0,0,0,0,0,0,'2025-05-22 21:49:07','2025-12-09 19:06:46','2025-12-09 19:06:46','2025-12-09 19:06:46',NULL,NULL,NULL),
(298,4,'<CAB=j4yVucPGaYvvuXm2KPb7eog7pGD445JZxxvf05kbkf=UVww@mail.gmail.com>',NULL,NULL,'=?UTF-8?Q?Re=3A_My_Wyoming_Co_stuff=E2=80=A6?=','gkb4521@rit.edu','\"Gustav Blom (RIT Student)\"','<div dir=\"auto\">Thank you! I’m looking through the agreements tonight. I was sitting next to Kyler when he was setting everything up, thank you for being so quick and helpful!</div><div dir=\"auto\"><br></div><div dir=\"auto\"><br></div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">tors 22 maj 2025 kl. 17:22 skrev Rick &lt;rick@mavrix.one&gt;:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;padding-left:1ex;border-left-color:rgb(204,204,204)\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">See attached…</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Just FYI…for reference…</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Also Kyler is all set up!</div><div style=\"font-family:Helvetica,Arial;font-size:13px\"><br></div><br><div class=\"gmail_signature\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div>\r\n\r\n\r\n</blockquote></div></div>','Thank you! I’m looking through the agreements tonight. I was sitting next\r\nto Kyler when he was setting everything up, thank you for being so quick\r\nand helpful!\r\n\r\n\r\n\r\ntors 22 maj 2025 kl. 17:22 skrev Rick <rick@mavrix.one>:\r\n\r\n> See attached…\r\n> Just FYI…for reference…\r\n> Also Kyler is all set up!\r\n>\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>',0,0,0,0,0,0,'2025-05-23 00:11:04','2025-12-09 19:06:46','2025-12-09 19:06:46','2025-12-09 19:06:46',NULL,NULL,NULL),
(299,4,' <BL3PR20MB492414A34B332F406FA76DB2AF98A@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: Next mtg?','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n</head>\r\n<body>\r\n<div>\r\n<div dir=\"ltr\">That works for me</div>\r\n</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"ms-outlook-mobile-signature\">Get <a href=\"https://aka.ms/o0ukef\">Outlook for iOS</a></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Thursday, May 22, 2025 10:34:18 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Next mtg?</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>How about noon on Wednesday your time. &nbsp;<br>\r\n<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height:11px\"></div>\r\n</div>\r\n<p class=\"x_gmail_quote\" style=\"color:#000\">On May 22, 2025 at 11:41:58 AM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_gmail_quote\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nOr actually anytime Wednesday except 1pm - 2pm would work, even the morning.</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Sent:</b> Thursday, May 22, 2025 8:40 AM<br>\r\n<b>To:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next mtg?</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div dir=\"ltr\">\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nYeah, anything past 12pm PST.</div>\r\n<div id=\"x_x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Thursday, May 22, 2025 8:38 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Next mtg?</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"\">Afternoon your time?</div>\r\n<br>\r\n<br>\r\n<div class=\"x_x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height:11px\"></div>\r\n</div>\r\n<p class=\"x_x_x_gmail_quote\" style=\"color:#000\">On May 22, 2025 at 11:37:24 AM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_x_gmail_quote\"></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','That works for me\r\n\r\nGet Outlook for iOS<https://aka.ms/o0ukef>\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Thursday, May 22, 2025 10:34:18 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Next mtg?\r\n\r\nHow about noon on Wednesday your time.\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\nOn May 22, 2025 at 11:41:58 AM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nOr actually anytime Wednesday except 1pm - 2pm would work, even the morning.\r\n________________________________\r\nFrom: Jason Blick <jason@corvexsystems.com>\r\nSent: Thursday, May 22, 2025 8:40 AM\r\nTo: Rick <rick@mavrix.one>\r\nSubject: Re: Next mtg?\r\n\r\nYeah, anything past 12pm PST.\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Thursday, May 22, 2025 8:38 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Next mtg?\r\n\r\nAfternoon your time?\r\n\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\nOn May 22, 2025 at 11:37:24 AM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n',0,0,0,0,0,0,'2025-05-23 01:25:07','2025-12-09 19:06:47','2025-12-09 19:06:47','2025-12-09 19:06:47',NULL,NULL,NULL),
(300,4,'<ud207_ZqSneUT_O8Qlgiag@geopod-ismtpd-canary-0>',NULL,NULL,'New Solicitation Posted on DIU.mil','info@diu.mil','Defense Innovation Unit','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html data-editor-version=\"2\" class=\"sg-campaigns\" xmlns=\"http://www.w3.org/1999/xhtml\">\r\n    <head>\r\n      <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n      <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1\">\r\n      <!--[if !mso]><!-->\r\n      <meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge\">\r\n      <!--<![endif]-->\r\n      <!--[if (gte mso 9)|(IE)]>\r\n      <xml>\r\n        <o:OfficeDocumentSettings>\r\n          <o:AllowPNG/>\r\n          <o:PixelsPerInch>96</o:PixelsPerInch>\r\n        </o:OfficeDocumentSettings>\r\n      </xml>\r\n      <![endif]-->\r\n      <!--[if (gte mso 9)|(IE)]>\r\n  <style type=\"text/css\">\r\n    body {width: 600px;margin: 0 auto;}\r\n    table {border-collapse: collapse;}\r\n    table, td {mso-table-lspace: 0pt;mso-table-rspace: 0pt;}\r\n    img {-ms-interpolation-mode: bicubic;}\r\n  </style>\r\n<![endif]-->\r\n      <style type=\"text/css\">\r\n    body, p, div {\r\n      font-family: arial,helvetica,sans-serif;\r\n      font-size: 14px;\r\n    }\r\n    body {\r\n      color: #000000;\r\n    }\r\n    body a {\r\n      color: #2483c5;\r\n      text-decoration: none;\r\n    }\r\n    p { margin: 0; padding: 0; }\r\n    table.wrapper {\r\n      width:100% !important;\r\n      table-layout: fixed;\r\n      -webkit-font-smoothing: antialiased;\r\n      -webkit-text-size-adjust: 100%;\r\n      -moz-text-size-adjust: 100%;\r\n      -ms-text-size-adjust: 100%;\r\n    }\r\n    img.max-width {\r\n      max-width: 100% !important;\r\n    }\r\n    .column.of-2 {\r\n      width: 50%;\r\n    }\r\n    .column.of-3 {\r\n      width: 33.333%;\r\n    }\r\n    .column.of-4 {\r\n      width: 25%;\r\n    }\r\n    ul ul ul ul  {\r\n      list-style-type: disc !important;\r\n    }\r\n    ol ol {\r\n      list-style-type: lower-roman !important;\r\n    }\r\n    ol ol ol {\r\n      list-style-type: lower-latin !important;\r\n    }\r\n    ol ol ol ol {\r\n      list-style-type: decimal !important;\r\n    }\r\n    @media screen and (max-width:480px) {\r\n      .preheader .rightColumnContent,\r\n      .footer .rightColumnContent {\r\n        text-align: left !important;\r\n      }\r\n      .preheader .rightColumnContent div,\r\n      .preheader .rightColumnContent span,\r\n      .footer .rightColumnContent div,\r\n      .footer .rightColumnContent span {\r\n        text-align: left !important;\r\n      }\r\n      .preheader .rightColumnContent,\r\n      .preheader .leftColumnContent {\r\n        font-size: 80% !important;\r\n        padding: 5px 0;\r\n      }\r\n      table.wrapper-mobile {\r\n        width: 100% !important;\r\n        table-layout: fixed;\r\n      }\r\n      img.max-width {\r\n        height: auto !important;\r\n        max-width: 100% !important;\r\n      }\r\n      a.bulletproof-button {\r\n        display: block !important;\r\n        width: auto !important;\r\n        font-size: 80%;\r\n        padding-left: 0 !important;\r\n        padding-right: 0 !important;\r\n      }\r\n      .columns {\r\n        width: 100% !important;\r\n      }\r\n      .column {\r\n        display: block !important;\r\n        width: 100% !important;\r\n        padding-left: 0 !important;\r\n        padding-right: 0 !important;\r\n        margin-left: 0 !important;\r\n        margin-right: 0 !important;\r\n      }\r\n      .social-icon-column {\r\n        display: inline-block !important;\r\n      }\r\n    }\r\n  </style>\r\n      <!--user entered Head Start--><!--End Head user entered-->\r\n    </head>\r\n    <body>\r\n      <center class=\"wrapper\" data-link-color=\"#2483c5\" data-body-style=\"font-size:14px; font-family:arial,helvetica,sans-serif; color:#000000; background-color:#ffffff;\">\r\n        <div class=\"webkit\">\r\n          <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"wrapper\" bgcolor=\"#ffffff\">\r\n            <tr>\r\n              <td valign=\"top\" bgcolor=\"#ffffff\" width=\"100%\">\r\n                <table width=\"100%\" role=\"content-container\" class=\"outer\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                  <tr>\r\n                    <td width=\"100%\">\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                        <tr>\r\n                          <td>\r\n                            <!--[if mso]>\r\n    <center>\r\n    <table><tr><td width=\"600\">\r\n  <![endif]-->\r\n                                    <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:100%; max-width:600px;\" align=\"center\">\r\n                                      <tr>\r\n                                        <td role=\"modules-container\" style=\"padding:10px 18px 10px 18px; color:#000000; text-align:left;\" bgcolor=\"#ecf7ff\" width=\"100%\" align=\"left\"><table class=\"module preheader preheader-hide\" role=\"module\" data-type=\"preheader\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"display: none !important; mso-hide: all; visibility: hidden; opacity: 0; color: transparent; height: 0; width: 0;\">\r\n    <tr>\r\n      <td role=\"module-content\">\r\n        <p>The Navy seeks commercial AI/ML applications to improve situational awareness for operators.</p>\r\n      </td>\r\n    </tr>\r\n  </table><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cfd0cb98-cae3-4099-bb9b-d518af9861a8\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:10px 18px 10px 18px;\" valign=\"top\" align=\"center\">\r\n          <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:25% !important; width:25%; height:auto !important;\" width=\"141\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/07c51c13-1be6-40d1-8dc7-789cd2686a09/1080x1080.png\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"divider\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"257cee2c-17b5-4325-a24f-cbc103c5619a.1.1.1.2.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 18px 0px 18px;\" role=\"module-content\" height=\"100%\" valign=\"top\" bgcolor=\"#d4eafb\">\r\n          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" height=\"3px\" style=\"line-height:3px; font-size:3px;\">\r\n            <tbody>\r\n              <tr>\r\n                <td style=\"padding:0px 0px 3px 0px;\" bgcolor=\"#2483C5\"></td>\r\n              </tr>\r\n            </tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"1b2e3e3f-7a4f-4ae9-858a-b364347e6b2b.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#FFFFFF\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"544\" style=\"width:544px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"12a76bcf-49d1-4289-8902-3dec45d9306a\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: center\"><span style=\"color: #454546; font-family: arial, helvetica, sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: center; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; background-color: rgb(255, 255, 255); font-size: 18px\">New Solicitation Announcement</span></div>\r\n<div style=\"font-family: inherit; text-align: center\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-alternates: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; background-color: rgb(255, 255, 255); color: #7c7e7f; font-family: arial, helvetica, sans-serif; font-size: 12px\">There is a new solicitation posted on our website. It is easy to respond with a 5-page paper or 15-slide slide deck. These limits are not requirements but are strongly recommended. Additional guidance about what we look for in a proposal is </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILh-2Bq1vMh5oO7-2Blz-2BUvdb0irmCIWB37BuouaFHZh9mjyapo40PS1xJmwqEWgArI7j9CRSrXpEexhWeQDXTY07pHfWNPHo7vlnb-2FhFx9HUTh4e9aYOlxqtqQGH9u1buGgAJ8BabEvBziVw-2FSowa6SMdLw-3DJOMf_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSfqtyijpzLjM4EpMN0wNi1pqHgiJXAnJ-2FS85AkFeEqvLl8YPrBUEUVqVPoGrmZ-2FJLlLQR4OzREcASVUmtaoIC-2BSb5EGEIuEZvL3awc-2BOKEMFEor4WZB1CqqwmTYTU62oSjd7VAZiB0WXhCh8NXbqnMAG4Nb33TNp6hj3pdGxnIFEExgTCH0rZMFyaoNnpPBB-2F8Xp3jhHLxytk60sBRBNXH3Pr1qwuxWa5obLEKxF0jdMDllFd6jMmN-2BgCWLnsu3iy47Wr9LCmhwXw0q54G2FB0nPiSa2xdKLQCsLzftvD9JMWdeHCGCBaTB8QgTO5FGJTAwSPtR8vASYOpLIo6SS-2B-2FsurRW44Pysus2OfDUlXJTsb9kLySp9zotCueDxtbAVs9fGIQC-2F3BMeKWhMoIXy2aS4KzzXZHNRylQdmB5atrw-2FtNUdr0pplquuYpiLDIKQdR2qL-2BV9a9r0a2PhS-2FsNOfl4pqmZmwzQmSjZC5Ea723e2RinoSuXIpX-2F-2Fzc8elSF7GZ9y6aJ8AUwUem-2FCdqqVegNLoG1f7bMBRYjGl5lhqI-2BNMwfu2Lr91-2FZaHaYoXRXc-2FtA3ahwPZz8gAETWa1PryDtW-2Fa-2FlXQqbiQ-2FQy3TLfXTglpduu1YmbpuGqo9AFSs4RAXbLNBxLfw78I5jdbPjFlcOrkhxzdmUGtuL9PEeyMt1-2F3T5M9Uq-2F3RdjiMLjrPjLHD8AO4-2FLOfy4MlkJlXGRFEBub0Ig7xElFL-2BUVyDe-2Fn4uQuPrUaNLAtsdjPrqbgdLhvl0q-2BFuvNcKJOEaQ3i2kcZ-2FZUiEzWprVxmI2aaMSt0O0YmZvJAYorTQ2jyPm1hg-3D-3D\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-alternates: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; background-color: rgb(255, 255, 255); color: #01a1f1; font-family: arial, helvetica, sans-serif; font-size: 12px\"><u>available </u></span><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: none; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); color: #01a1f1; font-family: arial, helvetica, sans-serif; font-size: 12px\"><u>here</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-alternates: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; background-color: rgb(255, 255, 255); color: #7c7e7f; font-family: arial, helvetica, sans-serif; font-size: 12px\">. Our goal is to award an initial contract within 60-90 days of solicitation closure. Solicitation details and a link to the submission page are available below.</span><span style=\"font-family: arial, helvetica, sans-serif; font-size: 12px\"><br>\r\n</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#FFFFFF\" data-distribution=\"2,1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"362\" style=\"width:362px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2bb08414-727d-4668-851a-a0e1e3708ed6\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 10px 18px 10px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: left\"><span style=\"color: #2483c5; font-family: arial, helvetica, sans-serif; font-size: 18px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline\">SAILS (Situational Awareness by Intelligent Learning Systems)</span></div>\r\n<div style=\"font-family: inherit; text-align: left\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"line-height: 1.2; margin-top: 0pt; margin-bottom: 0pt; background-color: rgb(255, 255, 255); font-weight: 400; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; font-variant-emoji: normal; text-decoration-line: none; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; vertical-align: baseline; white-space-collapse: preserve; text-wrap-mode: wrap; font-family: arial, helvetica, sans-serif; color: #7c7e7f; font-size: 12px\">U.S. Navy assets generate vast amounts of multi-source tactical data from various platforms, including space-based, shipboard, and airborne assets, as well as unstructured data (intelligence reports, watch logs, etc.) produced by sailors. Currently, Maritime Operations Centers (MOCs) must manage and analyze large volumes of multi-source data generated across the fleet to make critical resource allocation decisions for geographically dispersed fleet and national assets.</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"line-height: 1.2; margin-top: 0pt; margin-bottom: 0pt; background-color: rgb(255, 255, 255); font-weight: 400; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; font-variant-emoji: normal; text-decoration-line: none; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; vertical-align: baseline; white-space-collapse: preserve; text-wrap-mode: wrap; font-family: arial, helvetica, sans-serif; color: #7c7e7f; font-size: 12px\">The Navy seeks commercial AI/ML applications that accelerate the convergence of MOC-destined data inputs (e.g. intelligence reports, satellite-derived data, and existing common operational picture tools, etc.) to improve situational awareness for operators, and optimize existing decision support tools by offering track confidence scoring and real-time recommendations to assist commanders in allocating geographically dispersed resources (e.g. satellites, aircraft, vessels, etc). </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9k-2FheqMyPTOmrbRB9jiz-2FkkZPLRpJ-2Bk5QXf5sYZugYHHXhXnauBQNVmYwUHE5Z2RlXUcs2BGzbikB8m0TdgMZG9texs4q4r9bxsa6N-2FDYyUpnetQ_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSfqtyijpzLjM4EpMN0wNi1pqHgiJXAnJ-2FS85AkFeEqvLl8YPrBUEUVqVPoGrmZ-2FJLlLQR4OzREcASVUmtaoIC-2BSb5EGEIuEZvL3awc-2BOKEMFEor4WZB1CqqwmTYTU62oSjd7VAZiB0WXhCh8NXbqnMAG4Nb33TNp6hj3pdGxnIFEExgTCH0rZMFyaoNnpPBB-2F8Xp3jhHLxytk60sBRBNXH3Pr1qwuxWa5obLEKxF0jdMDllFd6jMmN-2BgCWLnsu3iy47Wr9LCmhwXw0q54G2FB0nPiSa2xdKLQCsLzftvD9JMWdeHCGCBaTB8QgTO5FGJTAwSPtR8vASYOpLIo6SS-2B-2FsurRW44Pysus2OfDUlXJTsb9kLySp9zotCueDxtbAVs9fGIQC-2F3BMeKWhMoIXy2aS4KzzXZHNRylQdmB5atrw-2FtNUdr0pplquuYpiLDIKQdR2qL-2BV9a9r0a2PhS-2FsNOfl4pqmZmwzQmSjZC5Ea723e2RinoSuXIpX-2F-2Fzc8elSF7GZ9y6aJ8AUwUem-2FCdqqVegNLoG1f7bMBRYjGl5lhqI-2BNMwfu2Lr91-2FZaHaYoXRXc-2FtA3ahwPZz8gAETWa1PryDtW-2Fa-2FlXQqbiQ-2FQy3TLfXTglpduu1YmbpuGqo9AFSs4RAXbLNBxLfw78I5jdbPjFmLV8dNwtL9UJA-2BMFsx-2BZjAXdU63Md6i1v3fA-2F92ZpLOmePIdLomAgQQCjQoW5mHrRGQwFZOC0zyIopZJvJTadxrMxhhT1YfyW0e3n9ic8JD-2FVZ3EwifPgJnracrWhh3Kofep2zk9-2Fpkixpqjp3adY4wbt6o4Z2-2BWD2-2BEatrMy9Xw-3D-3D\"><span style=\"font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; color: #2483c5; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>Learn more</strong></span></a><span style=\"font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; color: #2483c5; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>.</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"181\" style=\"width:181px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"4fa31850-56ff-4e7f-985c-2dd2d58a3cef\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>Submission Deadline:</strong></span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">06 June 2025</span><span style=\"font-family: arial, helvetica, sans-serif; font-size: 12px\"><br>\r\n</span><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">23:59:59 U.S. Eastern Time</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"module\" data-role=\"module-button\" data-type=\"button\" role=\"module\" style=\"table-layout:fixed;\" width=\"100%\" data-muid=\"621468ff-bdcc-4d55-8cd5-838691427b54\">\r\n      <tbody>\r\n        <tr>\r\n          <td align=\"left\" bgcolor=\"\" class=\"outer-td\" style=\"padding:0px 0px 0px 0px;\">\r\n            <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"wrapper-mobile\" style=\"text-align:center;\">\r\n              <tbody>\r\n                <tr>\r\n                <td align=\"center\" bgcolor=\"#2483C5\" class=\"inner-td\" style=\"border-radius:6px; font-size:16px; text-align:left; background-color:inherit;\">\r\n                  <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9k-2FheqMyPTOmrbRB9jiz-2FkkZPLRpJ-2Bk5QXf5sYZugYHHXhXnauBQNVmYwUHE5Z2RlXUcs2BGzbikB8m0TdgMZG9texs4q4r9bxsa6N-2FDYyUpdGfq_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSfqtyijpzLjM4EpMN0wNi1pqHgiJXAnJ-2FS85AkFeEqvLl8YPrBUEUVqVPoGrmZ-2FJLlLQR4OzREcASVUmtaoIC-2BSb5EGEIuEZvL3awc-2BOKEMFEor4WZB1CqqwmTYTU62oSjd7VAZiB0WXhCh8NXbqnMAG4Nb33TNp6hj3pdGxnIFEExgTCH0rZMFyaoNnpPBB-2F8Xp3jhHLxytk60sBRBNXH3Pr1qwuxWa5obLEKxF0jdMDllFd6jMmN-2BgCWLnsu3iy47Wr9LCmhwXw0q54G2FB0nPiSa2xdKLQCsLzftvD9JMWdeHCGCBaTB8QgTO5FGJTAwSPtR8vASYOpLIo6SS-2B-2FsurRW44Pysus2OfDUlXJTsb9kLySp9zotCueDxtbAVs9fGIQC-2F3BMeKWhMoIXy2aS4KzzXZHNRylQdmB5atrw-2FtNUdr0pplquuYpiLDIKQdR2qL-2BV9a9r0a2PhS-2FsNOfl4pqmZmwzQmSjZC5Ea723e2RinoSuXIpX-2F-2Fzc8elSF7GZ9y6aJ8AUwUem-2FCdqqVegNLoG1f7bMBRYjGl5lhqI-2BNMwfu2Lr91-2FZaHaYoXRXc-2FtA3ahwPZz8gAETWa1PryDtW-2Fa-2FlXQqbiQ-2FQy3TLfXTglpduu1YmbpuGqo9AFSs4RAXbLNBxLfw78I5jdbPjFkl161-2FBady8-2B3pcWuFFvDzvy7ZFxybDrzgLXQBEUP8qYo42kkIa72cdD0AGNHFbl1K0HAEaiZGD4OGuwsFES0IotHbGmH-2ByVSREK7pTAKllCb6vyO1H-2FwQXCOeL3y2Ct1cjLE8L-2FTrzzmagwOev11VCkCpE9Vrcq-2BkNq65UJq0qw-3D-3D\" style=\"background-color:#2483C5; border:1px solid #2483C5; border-color:#2483C5; border-radius:6px; border-width:1px; color:#ffffff; display:inline-block; font-size:12px; font-weight:bold; letter-spacing:0px; line-height:normal; padding:12px 18px 12px 18px; text-align:center; text-decoration:none; border-style:solid;\" target=\"_blank\">Learn more</a>\r\n                </td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n          </td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"1b2e3e3f-7a4f-4ae9-858a-b364347e6b2b\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#FFFFFF\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"544\" style=\"width:544px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"12a76bcf-49d1-4289-8902-3dec45d9306a.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: left\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: 700; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; text-align: start; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 14px; color: #7c7e7f\">Other open solicitations:</span></div>\r\n<div style=\"font-family: inherit; text-align: left\"><br>\r\n</div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9tST9sk2GZYgKHQ1-2F0wBoh3R4I1R05sC-2BCRkPI3E6P0KP0JYKG74i0US-2F-2FdqDEJzz9gjCnHCg9sw3e0Mi-2FzRaL9Rfu6lo59KfU7y30gvH8-2Bqr2rF_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSfqtyijpzLjM4EpMN0wNi1pqHgiJXAnJ-2FS85AkFeEqvLl8YPrBUEUVqVPoGrmZ-2FJLlLQR4OzREcASVUmtaoIC-2BSb5EGEIuEZvL3awc-2BOKEMFEor4WZB1CqqwmTYTU62oSjd7VAZiB0WXhCh8NXbqnMAG4Nb33TNp6hj3pdGxnIFEExgTCH0rZMFyaoNnpPBB-2F8Xp3jhHLxytk60sBRBNXH3Pr1qwuxWa5obLEKxF0jdMDllFd6jMmN-2BgCWLnsu3iy47Wr9LCmhwXw0q54G2FB0nPiSa2xdKLQCsLzftvD9JMWdeHCGCBaTB8QgTO5FGJTAwSPtR8vASYOpLIo6SS-2B-2FsurRW44Pysus2OfDUlXJTsb9kLySp9zotCueDxtbAVs9fGIQC-2F3BMeKWhMoIXy2aS4KzzXZHNRylQdmB5atrw-2FtNUdr0pplquuYpiLDIKQdR2qL-2BV9a9r0a2PhS-2FsNOfl4pqmZmwzQmSjZC5Ea723e2RinoSuXIpX-2F-2Fzc8elSF7GZ9y6aJ8AUwUem-2FCdqqVegNLoG1f7bMBRYjGl5lhqI-2BNMwfu2Lr91-2FZaHaYoXRXc-2FtA3ahwPZz8gAETWa1PryDtW-2Fa-2FlXQqbiQ-2FQy3TLfXTglpduu1YmbpuGqo9AFSs4RAXbLNBxLfw78I5jdbPjFlUCN9XivnKXAx8c90vwzVRkS0KPxjTwMIhzhe2fHg6rTmo44hDyddhJ0kxTjYZJB9jv-2FGAp6X7qsBqzF9uxd4tqH0WZNW7AtzIOwRX7kTB-2FiS8muUnrxDlh8kJ2C0h-2BUQeojlw1wLCp-2F9S6bHhsCSFGLOnaAb3EkcTzmzM8Za9tw-3D-3D\"><span style=\"font-size: 12px; color: #2483c5\"><strong>FORGE: Foundry for Operational Readiness and Global Effects</strong></span></a></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-size: 12px\">This solicitation closes on May 26, 2025 at 23:59:59 Eastern Time</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9v9Frb8CfXNFnM9xkwe1UB6t7hKC5ZK-2BORBaD0mikwl6IqSVHXcaM36vBk-2BYbuxOEhzNgMIprs-2FYqLw3sbS-2BJ1UMYSnMp8reQDag8mHq74Q-2BLRKv_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSfqtyijpzLjM4EpMN0wNi1pqHgiJXAnJ-2FS85AkFeEqvLl8YPrBUEUVqVPoGrmZ-2FJLlLQR4OzREcASVUmtaoIC-2BSb5EGEIuEZvL3awc-2BOKEMFEor4WZB1CqqwmTYTU62oSjd7VAZiB0WXhCh8NXbqnMAG4Nb33TNp6hj3pdGxnIFEExgTCH0rZMFyaoNnpPBB-2F8Xp3jhHLxytk60sBRBNXH3Pr1qwuxWa5obLEKxF0jdMDllFd6jMmN-2BgCWLnsu3iy47Wr9LCmhwXw0q54G2FB0nPiSa2xdKLQCsLzftvD9JMWdeHCGCBaTB8QgTO5FGJTAwSPtR8vASYOpLIo6SS-2B-2FsurRW44Pysus2OfDUlXJTsb9kLySp9zotCueDxtbAVs9fGIQC-2F3BMeKWhMoIXy2aS4KzzXZHNRylQdmB5atrw-2FtNUdr0pplquuYpiLDIKQdR2qL-2BV9a9r0a2PhS-2FsNOfl4pqmZmwzQmSjZC5Ea723e2RinoSuXIpX-2F-2Fzc8elSF7GZ9y6aJ8AUwUem-2FCdqqVegNLoG1f7bMBRYjGl5lhqI-2BNMwfu2Lr91-2FZaHaYoXRXc-2FtA3ahwPZz8gAETWa1PryDtW-2Fa-2FlXQqbiQ-2FQy3TLfXTglpduu1YmbpuGqo9AFSs4RAXbLNBxLfw78I5jdbPjFm-2B5iyYO92jYsyCq471I5FYl9rCWrieYaTiMR-2FE5nBrZkDvfwq5c2jMeiq11NwxhXZsGD187sCqsNE7dUzvkiXqQKLT-2BVqhroXutVDBKEHAOQKjy4WtSfI3GdlEHE3VfMSHZbUIj6-2BE0OHfUxcbHb8-2BFHLAKwWYknukOj5Z6jTU-2Bg-3D-3D\"><span style=\"font-size: 12px; color: #2483c5\"><strong>Advanced Marine Propulsion and Energy for Revolutionary Efficiency (AMPERE)</strong></span></a></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-size: 12px\">This solicitation closes on June 5, 2025 at 23:59:59 Eastern Time</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"01cfd941-691e-4504-af90-9ba914a69b55\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:10px 18px 10px 18px;\" valign=\"top\" align=\"center\">\r\n          <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:25% !important; width:25%; height:auto !important;\" width=\"141\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/07c51c13-1be6-40d1-8dc7-789cd2686a09/1080x1080.png\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"6cf433f1-53d9-4818-89de-d72eccb7d837\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 10px 18px 10px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"line-height: inherit; color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-line: inherit; text-decoration-thickness: inherit; text-decoration-style: inherit; text-decoration-color: inherit; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>About DIU:&nbsp;</strong></span><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">The Defense Innovation Unit (DIU) strengthens our national security by accelerating the adoption of commercial technology throughout the military and growing the national security innovation base. DIU partners with organizations across the Department of Defense (DoD) and with&nbsp;nontraditional companies to facilitate prototype projects and field advanced commercial solutions that address national security challenges. DIU leverages Other Transaction (OT) authority to award Prototype agreements, which, if successful, may result in the direct award of a follow-on Production agreement without the use of further competitive procedures. (DIU is not an OT consortium; DIU executes direct award OTs).&nbsp;</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; background-color: rgb(255, 255, 255); font-size: 12px\">You are receiving this email because you have a contact at DIU or you signed up to our mailing list. If you would like to be removed from our email list, please click the unsubscribe link below.</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"6ac32cba-50e8-406c-8061-dd0135aebb60\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 30px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"module\" data-role=\"module-button\" data-type=\"button\" role=\"module\" style=\"table-layout:fixed;\" width=\"100%\" data-muid=\"bf716dbe-018d-4f2d-bf15-b5b6db124e86\">\r\n      <tbody>\r\n        <tr>\r\n          <td align=\"center\" bgcolor=\"\" class=\"outer-td\" style=\"padding:0px 0px 0px 0px;\">\r\n            <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"wrapper-mobile\" style=\"text-align:center;\">\r\n              <tbody>\r\n                <tr>\r\n                <td align=\"center\" bgcolor=\"#2483C5\" class=\"inner-td\" style=\"border-radius:6px; font-size:16px; text-align:center; background-color:inherit;\">\r\n                  <a href=\"mailto:info@diu.mil\" style=\"background-color:#2483C5; border:1px solid #2483C5; border-color:#2483C5; border-radius:6px; border-width:1px; color:#ffffff; display:inline-block; font-size:12px; font-weight:bold; letter-spacing:0px; line-height:normal; padding:18px 18px 12px 18px; text-align:center; text-decoration:none; border-style:solid; font-family:arial,helvetica,sans-serif;\" target=\"_blank\">Contact Us</a>\r\n                </td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n          </td>\r\n        </tr>\r\n      </tbody>\r\n    </table><div data-role=\"module-unsubscribe\" class=\"module\" role=\"module\" data-type=\"unsubscribe\" style=\"color:#444444; font-size:12px; line-height:20px; padding:16px 16px 16px 16px; text-align:center;\" data-muid=\"037d4496-257f-4255-8897-cb3cce530456\"><div class=\"Unsubscribe--addressLine\"></div><p style=\"font-size:12px; line-height:20px;\"><a class=\"Unsubscribe--unsubscribeLink\" href=\"https://u18220755.ct.sendgrid.net/asm/unsubscribe/?user_id=18220755&amp;data=kI6dtSqJ-GQ3bI1A7jg1iHqEeUbTqfrgHEZqLZw-ke9oMDAwdTAwMO7Eb7XuvSs0W9se2F-M8ObbJhTG1f1DkJa5Da_lWJGgLgUMaF6Citn4s9zBCpS4g2v3TiSYf6LGw4zs3lEgpoGr4y4iS5YgnYD7CRj_QHMv1JC4jue-B7d-oXskhXNFvi6FWLiv9wMFXziGX4wDHO--AODRjYu-lPi8Bkx-sfGWlW_BqH-ehFso3nm3wwRhSvyETv62hciB4kMa45eW5WUb2roAXkbipQYZWdPO3f4HFkHg32JqxhxoEPdk9pxWSdyOdxfC_Twxo69EbGSlOcO0r86_tb_h1fUDQuu8GBtNkJqO4MjRi2wFVknDrvKrGEY6iJmS8vyFnJYcd7hQtbuRT6pgp-U3Ti8m7uXzVTG3C5HN4WyHlFaxJGqWQKucxBT9zdvLgYLfMEdchUPhK_uEAZNSqxB1LFVjakJTFiOYLWxrEoy0GW36efypJBjQYmfHZ3ScvCNiUWSmvsP0atenXWIp78DRUF1VLEyur1UJvUM_hqgDvDX45BfadTRZ_s6gQ1QQL7QImp0x4vMS8UCihw23CBK376syOmIe3hRHUEhj_1jCe1Gud_3oBVQt_Jl-eoCQyETShuMoAjFI41DXcCK1-kWYluKhtgY_UOZQTe3oSKOWlZjopBJ3zUB5os7EIMGjF5XcbqS91nYd54cImZVlxXU-76mwSwRAxEC7mBf34tiOnQl1fEStnUiP9nrbJOfMc67TKjtAu7SRMz14THgfg9O3KPoPTTS1Fgs_-P5oC3H00u98BBxnVd7HLARVO2TcfpSQ0Du0eCJ1dF1pby3K6jSQ-ifWdp7bBeQVPd34WHutxZGik2hzsqZ158wCWfSAHzVVnt7_XfeBuVBodMn8igiVlf5gQBWR3P0OBHcq7Rq7cyDahYG56rwnWEC0CcvlpGVOrmV3K7rQhf8Y_TfJSCpvyikLEuSUVchFbJ62_YbjvuyL1gn00nct6yaU4gusQepkip_hGILQBpdaMcZsPg-qO-PvAfLWOmkyWQYOyiO-0SN8hI27AInsLxtqxTBmwgMiTCBgivzttfTTtIbU-uJ7TXu1pqs5V3vx0opau-rd72y02524h9Et0Uo2_Czuf1RLb4iBjzNSegFqt9192iR1xGRypzgyA0jW\" target=\"_blank\" style=\"\">Unsubscribe</a> - <a href=\"https://u18220755.ct.sendgrid.net/asm/?user_id=18220755&amp;data=fxhnCTn1pUhLEG3uDU1aByhisG-CkpAP1rV7KA1AU2doMDAwdTAwMOCq4CGe-n9ibY2O40E1vpn3DAKBwB33NjdM0OSdNjZV8euhBCMqANKk4OO2W5IXMhaKXgJlnTRleyLKPwZZ27FqWTqoizW9VI92pH6W0jZ4IsEOZreGuIMo0oPo_ee3ZCKSn9z4qyHVgFNuEXIPY2MahsH3xWeRh-uvtmZACgM3ieI4-SZl-K8WydTTZb4hXscxnDfyKMLIqpPlLEJ2kE_TSl-MaBYwJeylwBnMBgvtfKGUEnJlxK7zhGPooLIqBBSaAXZ80i_sIbp4v4ug4ScGqVjMTkseD4aJagEEhIbcrStZpJtTwdSFM2YcA5eJjyqKgaoihIDLV3_RTV52u-6CGcxAMLFlo8ZpEMg7XvIl-yNJOAgq3KGGOhO7qf_Rs5n-6ZIxXKgoBHXHcLDvHI2MZo3oehrdcPGtq986Tk5_OEAP2x_xLAq3Ug1c7Fx19okucLicOouKci9e4l2GIMWL1QMMhbqqAjnccvaeC7hasxlfN6NSC5FezBr9SwuuH4BaebOe3StphQ4kvazUCWRje4Py9MNS6k2RvQtNl406ItUWWdQgtfiX7fQgcDmRrr3KKKrg-1mila1KhyBB6fw3YwUtHOxHb8tv6ZTa2U-SW1WdoO2U0V71pAt9DmzwM_vKQlxvk4OIhecgALC-2k-2KhllTQQ65Dne2oRJvuMJNDb8CzdOAup6ts7Pxk-S14Z5-7PqwzBNdjZsY875dFdDTmT1TnTBvO5ke81kg8ayghXbH0-KC5X4AKw0BFEwUijTJs8X37wbqlGknDeffI8Dgo_mY4dE7npkyHfC_h694PmrveNQ6tI5GqGxlAp9ZA-_lYfotvzQmWqj05BKo1_OPwGgpgFjvFTqwsk35oBwXiIEqtjcVKioxtat3htQ6V_m0wUGJrI8WJZl4WJBKA6GgYgWULP4scUTR8o0XUWIPQ--urvNVuQ6mf4cvlO-uqD7QalR-Ym-cQbtEm3kxAhUCJ2q2jT-JNjkOoqPNpD7-vWLjH-NKIKJhiN5ejvme6hO9aVloY5TOwU-qvYETMNQi2Lq52eFHWYXrHdsqu7t-C2dyCRUeFnuETCWbQC4_JcBalVZ_czsaQeUeq_rF_A=\" target=\"_blank\" class=\"Unsubscribe--unsubscribePreferences\" style=\"\">Unsubscribe Preferences</a></p></div></td>\r\n                                      </tr>\r\n                                    </table>\r\n                                    <!--[if mso]>\r\n                                  </td>\r\n                                </tr>\r\n                              </table>\r\n                            </center>\r\n                            <![endif]-->\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </div>\r\n      </center>\r\n    <img src=\"https://u18220755.ct.sendgrid.net/wf/open?upn=u001.D6mC8SG6iITw2GIzPjAtw7SLAuEgZhcE7OQx5Ie2paKW9TCJvoy3Eh7ani-2FmDfzWZ4Aty9oKYAg8U-2BpXv81mmaeCBsQtTAdxlXqbnsXBCjn-2FAW10qJfypmIUPoD1-2B38y4LSjEaiwyNZHtEyZD-2BNUDUZGYMbtIGUEKO0hEk-2FjRBA-2B5GiwjK6dDlDQSrIDez1ETkP-2Bv3InJ-2FlkaAS09hleK-2F72f-2FEozdlNRhz8L6fWQNVcDU4klAuqQobFvj-2FJnJragdAAK-2F3EmyGTBl1oWKN1dOJbHjqIVYEuqA-2B9OnKbMeRB-2F7BOZfdjyJJRS4j0IOqPljsH5moYaJIWVQiTWG1PtKlujLMPgDO8rsLLyM-2BF08RgdezbTE1Vs2JqE69TnkqUCCwBWnO6mTH9I8xvqDjJAKyAubsv5ocS9j018UuYohCtPsT9jb-2B-2FoN6M8N-2F58-2Bt7g4Ys9nXvCVJlLdfpXpyiLkdCuy7j4N0JHP95qbfMEP-2F3K5daQOti1u6QOpp79whNuCTo7n8J9zuAfM6nbbQiG8m62jU1n5ddryKv65oDat4K5lPBAt2Da8T0oo7bYKkIQog11fdMBZMj3ACwdrJUlglplHbp79iXJV7haovmfr7xEeO3K7EQ5XYfyFBnxDat6Jqxy-2B-2Bc-2FZ-2BqCUFsgYJ-2BshSRS-2FqmUR9YirFAr7kpa-2BXF2tn6CEs7BebrmXKVSKCPQojjhWNlkN5KoTmTbOPOoGJhJP9tnMxNjo4tMqhTiPR8iDclPs5fXO5HUe76XbbqcFZ8mU0xGu6ILbv4eI0ZISeKxl5JJMESJVJvHX3CPeyhN0vcVaEBVbMcKFZFsaH6p5El5hIdXQwb8V-2BSnvaYSRmMsb93SPM5sBLJgoRz-2Fz8FDxUh8S33fisZlXaoCN-2FnXB9iq9VikZI59sa3i2jnpzZvj73fElFcgNzAtDWaVkCP-2BYWo155zCM-2F3Kqo3-2F7YH0n3n-2FNIhQMm0V-2FPtbz13uQ-3D-3D\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/></body>\r\n  </html>','The Navy seeks commercial AI/ML applications to improve situational awareness for operators.\r\n\r\nNew Solicitation Announcement\r\n\r\nThere is a new solicitation posted on our website. It is easy to respond with a 5-page paper or 15-slide slide deck. These limits are not requirements but are strongly recommended. Additional guidance about what we look for in a proposal is available here ( https://www.diu.mil/solution-brief-guidance?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ). Our goal is to award an initial contract within 60-90 days of solicitation closure. Solicitation details and a link to the submission page are available below.\r\n\r\nSAILS (Situational Awareness by Intelligent Learning Systems)\r\n\r\nU.S. Navy assets generate vast amounts of multi-source tactical data from various platforms, including space-based, shipboard, and airborne assets, as well as unstructured data (intelligence reports, watch logs, etc.) produced by sailors. Currently, Maritime Operations Centers (MOCs) must manage and analyze large volumes of multi-source data generated across the fleet to make critical resource allocation decisions for geographically dispersed fleet and national assets.\r\n\r\nThe Navy seeks commercial AI/ML applications that accelerate the convergence of MOC-destined data inputs (e.g. intelligence reports, satellite-derived data, and existing common operational picture tools, etc.) to improve situational awareness for operators, and optimize existing decision support tools by offering track confidence scoring and real-time recommendations to assist commanders in allocating geographically dispersed resources (e.g. satellites, aircraft, vessels, etc). *Learn more* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00592?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) *.*\r\n\r\n*Submission Deadline:*\r\n06 June 2025\r\n23:59:59 U.S. Eastern Time\r\n\r\nLearn more ( https://www.diu.mil/work-with-us/submit-solution/PROJ00592?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\nOther open solicitations:\r\n\r\n*FORGE: Foundry for Operational Readiness and Global Effects* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00594?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\nThis solicitation closes on May 26, 2025 at 23:59:59 Eastern Time\r\n\r\n*Advanced Marine Propulsion and Energy for Revolutionary Efficiency (AMPERE)* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00591?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\nThis solicitation closes on June 5, 2025 at 23:59:59 Eastern Time\r\n\r\n*About DIU:* The Defense Innovation Unit (DIU) strengthens our national security by accelerating the adoption of commercial technology throughout the military and growing the national security innovation base. DIU partners with organizations across the Department of Defense (DoD) and with nontraditional companies to facilitate prototype projects and field advanced commercial solutions that address national security challenges. DIU leverages Other Transaction (OT) authority to award Prototype agreements, which, if successful, may result in the direct award of a follow-on Production agreement without the use of further competitive procedures. (DIU is not an OT consortium; DIU executes direct award OTs).\r\n\r\nYou are receiving this email because you have a contact at DIU or you signed up to our mailing list. If you would like to be removed from our email list, please click the unsubscribe link below.\r\n\r\nContact Us ( info@diu.mil )\r\n\r\nUnsubscribe ( https://u18220755.ct.sendgrid.net/asm/unsubscribe/?user_id=18220755&data=kI6dtSqJ-GQ3bI1A7jg1iHqEeUbTqfrgHEZqLZw-ke9oMDAwdTAwMO7Eb7XuvSs0W9se2F-M8ObbJhTG1f1DkJa5Da_lWJGgLgUMaF6Citn4s9zBCpS4g2v3TiSYf6LGw4zs3lEgpoGr4y4iS5YgnYD7CRj_QHMv1JC4jue-B7d-oXskhXNFvi6FWLiv9wMFXziGX4wDHO--AODRjYu-lPi8Bkx-sfGWlW_BqH-ehFso3nm3wwRhSvyETv62hciB4kMa45eW5WUb2roAXkbipQYZWdPO3f4HFkHg32JqxhxoEPdk9pxWSdyOdxfC_Twxo69EbGSlOcO0r86_tb_h1fUDQuu8GBtNkJqO4MjRi2wFVknDrvKrGEY6iJmS8vyFnJYcd7hQtbuRT6pgp-U3Ti8m7uXzVTG3C5HN4WyHlFaxJGqWQKucxBT9zdvLgYLfMEdchUPhK_uEAZNSqxB1LFVjakJTFiOYLWxrEoy0GW36efypJBjQYmfHZ3ScvCNiUWSmvsP0atenXWIp78DRUF1VLEyur1UJvUM_hqgDvDX45BfadTRZ_s6gQ1QQL7QImp0x4vMS8UCihw23CBK376syOmIe3hRHUEhj_1jCe1Gud_3oBVQt_Jl-eoCQyETShuMoAjFI41DXcCK1-kWYluKhtgY_UOZQTe3oSKOWlZjopBJ3zUB5os7EIMGjF5XcbqS91nYd54cImZVlxXU-76mwSwRAxEC7mBf34tiOnQl1fEStnUiP9nrbJOfMc67TKjtAu7SRMz14THgfg9O3KPoPTTS1Fgs_-P5oC3H00u98BBxnVd7HLARVO2TcfpSQ0Du0eCJ1dF1pby3K6jSQ-ifWdp7bBeQVPd34WHutxZGik2hzsqZ158wCWfSAHzVVnt7_XfeBuVBodMn8igiVlf5gQBWR3P0OBHcq7Rq7cyDahYG56rwnWEC0CcvlpGVOrmV3K7rQhf8Y_TfJSCpvyikLEuSUVchFbJ62_YbjvuyL1gn00nct6yaU4gusQepkip_hGILQBpdaMcZsPg-qO-PvAfLWOmkyWQYOyiO-0SN8hI27AInsLxtqxTBmwgMiTCBgivzttfTTtIbU-uJ7TXu1pqs5V3vx0opau-rd72y02524h9Et0Uo2_Czuf1RLb4iBjzNSegFqt9192iR1xGRypzgyA0jW ) - Unsubscribe Preferences ( https://u18220755.ct.sendgrid.net/asm/?user_id=18220755&data=fxhnCTn1pUhLEG3uDU1aByhisG-CkpAP1rV7KA1AU2doMDAwdTAwMOCq4CGe-n9ibY2O40E1vpn3DAKBwB33NjdM0OSdNjZV8euhBCMqANKk4OO2W5IXMhaKXgJlnTRleyLKPwZZ27FqWTqoizW9VI92pH6W0jZ4IsEOZreGuIMo0oPo_ee3ZCKSn9z4qyHVgFNuEXIPY2MahsH3xWeRh-uvtmZACgM3ieI4-SZl-K8WydTTZb4hXscxnDfyKMLIqpPlLEJ2kE_TSl-MaBYwJeylwBnMBgvtfKGUEnJlxK7zhGPooLIqBBSaAXZ80i_sIbp4v4ug4ScGqVjMTkseD4aJagEEhIbcrStZpJtTwdSFM2YcA5eJjyqKgaoihIDLV3_RTV52u-6CGcxAMLFlo8ZpEMg7XvIl-yNJOAgq3KGGOhO7qf_Rs5n-6ZIxXKgoBHXHcLDvHI2MZo3oehrdcPGtq986Tk5_OEAP2x_xLAq3Ug1c7Fx19okucLicOouKci9e4l2GIMWL1QMMhbqqAjnccvaeC7hasxlfN6NSC5FezBr9SwuuH4BaebOe3StphQ4kvazUCWRje4Py9MNS6k2RvQtNl406ItUWWdQgtfiX7fQgcDmRrr3KKKrg-1mila1KhyBB6fw3YwUtHOxHb8tv6ZTa2U-SW1WdoO2U0V71pAt9DmzwM_vKQlxvk4OIhecgALC-2k-2KhllTQQ65Dne2oRJvuMJNDb8CzdOAup6ts7Pxk-S14Z5-7PqwzBNdjZsY875dFdDTmT1TnTBvO5ke81kg8ayghXbH0-KC5X4AKw0BFEwUijTJs8X37wbqlGknDeffI8Dgo_mY4dE7npkyHfC_h694PmrveNQ6tI5GqGxlAp9ZA-_lYfotvzQmWqj05BKo1_OPwGgpgFjvFTqwsk35oBwXiIEqtjcVKioxtat3htQ6V_m0wUGJrI8WJZl4WJBKA6GgYgWULP4scUTR8o0XUWIPQ--urvNVuQ6mf4cvlO-uqD7QalR-Ym-cQbtEm3kxAhUCJ2q2jT-JNjkOoqPNpD7-vWLjH-NKIKJhiN5ejvme6hO9aVloY5TOwU-qvYETMNQi2Lq52eFHWYXrHdsqu7t-C2dyCRUeFnuETCWbQC4_JcBalVZ_czsaQeUeq_rF_A= )',0,0,0,0,0,0,'2025-05-23 12:17:18','2025-12-09 19:06:47','2025-12-09 19:06:47','2025-12-09 19:06:47',NULL,NULL,NULL),
(301,4,'<CALHF0x17Dudxv=u6s7LD4bXHHSBSzGBV=P_415NnAM+6b0trOw@mail.gmail.com>',NULL,NULL,'Re: Opp. for Ursa?','dkovar@ursasecure.com','David Kovar','<html><body><div dir=\"ltr\">Greetings,</div><div dir=\"ltr\"><br></div><div dir=\"ltr\">Excellent catch, and question.</div><div dir=\"ltr\"><br></div><div dir=\"ltr\">We’re doing country of origin hardware analysis for Orqa and some other firms already. This should put us in a good position for being one of those 4-6 firms that DIU approves.</div><div dir=\"ltr\"><br></div><div dir=\"ltr\">The lack of “what does it mean to be NDAA compliant?” Is both a challenge and an opportunity. I worked with Orqa on a definition that I could defend and that was acceptable to them. Hopefully DIU will develop something more specific.</div><div dir=\"ltr\"><br></div><div dir=\"ltr\">I did finish the first batch of NDAA reports for Orqa this week so may try to reengage with Bryan about cyber first aid for Group 1 UAVs again. He wanted me to finish the reports before taking on anything else.</div><div dir=\"ltr\"><br></div><div dir=\"ltr\">I think I sent you a copy of the NDA back by Docusign, but maybe not. Here it is ….</div><div dir=\"ltr\"><br></div><div dir=\"ltr\">Regards,</div><div dir=\"ltr\"><br></div><div dir=\"ltr\">-David</div><div dir=\"ltr\"><br></div><div dir=\"ltr\"><br clear=\"all\"><div><div class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><span style=\"font-family:Helvetica;font-size:12px;color:rgb(0,0,0)\">David Kovar</span><br style=\"font-family:Helvetica;font-size:12px;color:rgb(0,0,0)\"><span style=\"font-family:Helvetica;font-size:12px;color:rgb(0,0,0)\">CEO, Founder URSA Inc.</span><br style=\"font-family:Helvetica;font-size:12px;color:rgb(0,0,0)\"><span style=\"font-family:Helvetica;font-size:12px;color:rgb(0,0,0)\">Cell: 650-278-1774</span><br></div></div></div><br>\r\n</div>\r\n<br>\r\n<div class=\"gmail_quote\">\r\n    <div dir=\"ltr\" class=\"gmail_attr\">On May 23, 2025 at 6:51:15 AM, Rick &lt;rick@mavrix.one&gt; wrote:<br></div>\r\n    <blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\" type=\"cite\">\r\n        \r\n    <div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Good morning, David,</div><div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\"><br></div><div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Did you see this?</div><div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\"><a href=\"https://breakingdefense.com/2025/05/diu-to-enlist-third-party-vendors-for-uas-compliance-checks-shaking-up-blue-uas-process/\">https://breakingdefense.com/2025/05/diu-to-enlist-third-party-vendors-for-uas-compliance-checks-shaking-up-blue-uas-process/</a><br></div><div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Can Ursa serve in this? And why isn’t there a published forensic standard for this Blue List certification?</div><div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\"><br></div><div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Also, did I send you one of these…see attached.</div><div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Thanks,</div><div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Rick</div><br><div class=\"bloop_sign\" id=\"bloop_sign_1747997349947859968\">\r\n        <title></title>\r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div><div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height: 11px;\"></div>\r\n     \r\n</div>\r\n\r\n\r\n\r\n    </blockquote>\r\n</div></body></html>','Greetings,\r\n\r\nExcellent catch, and question.\r\n\r\nWe’re doing country of origin hardware analysis for Orqa and some other\r\nfirms already. This should put us in a good position for being one of those\r\n4-6 firms that DIU approves.\r\n\r\nThe lack of “what does it mean to be NDAA compliant?” Is both a challenge\r\nand an opportunity. I worked with Orqa on a definition that I could defend\r\nand that was acceptable to them. Hopefully DIU will develop something more\r\nspecific.\r\n\r\nI did finish the first batch of NDAA reports for Orqa this week so may try\r\nto reengage with Bryan about cyber first aid for Group 1 UAVs again. He\r\nwanted me to finish the reports before taking on anything else.\r\n\r\nI think I sent you a copy of the NDA back by Docusign, but maybe not. Here\r\nit is ….\r\n\r\nRegards,\r\n\r\n-David\r\n\r\n\r\nDavid Kovar\r\nCEO, Founder URSA Inc.\r\nCell: 650-278-1774\r\n\r\n\r\nOn May 23, 2025 at 6:51:15 AM, Rick <rick@mavrix.one> wrote:\r\n\r\n> Good morning, David,\r\n>\r\n> Did you see this?\r\n>\r\n> https://breakingdefense.com/2025/05/diu-to-enlist-third-party-vendors-for-uas-compliance-checks-shaking-up-blue-uas-process/\r\n> Can Ursa serve in this? And why isn’t there a published forensic standard\r\n> for this Blue List certification?\r\n>\r\n> Also, did I send you one of these…see attached.\r\n> Thanks,\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one <https://mavrix.one https://mavrix.one\r\n> https://mavrix.one>\r\n>',0,0,0,0,0,0,'2025-05-23 12:31:35','2025-12-09 19:06:47','2025-12-09 19:06:47','2025-12-09 19:06:47',NULL,NULL,NULL),
(302,4,'<CAGgBgfB268dP1WrJCO5c-axatHQBO-JJMaYs8kj_dCYfkdLwtw@mail.gmail.com>',NULL,NULL,'Re: Targetting this?','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">Rick:</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">The Jetson was projected out there on the 4th gen.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">The 6X flight controller was in the 2nd gen.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">The rest of these peripherals and sensors, yes absolutely.  </div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">This is very close, but the difference is your client would own the IP.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">We&#39;d also be integrating this into airframe platforms, and we&#39;d be looking domestically at trying to get props and airframes and motors.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">That&#39;s a very nice site to review and archive and take notes on.<br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">The amount of product they have on there would require more people.  The way I architected it to you was 2 variants of the ESC (small vs heavy loads), FCC will have only firmware differences so there&#39;s one board, then anywhere between 2-6 accessory boards at first.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">That site is the kind of level you jumped to, you could have your money guy look at it.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Remember, I have no idea if they have the underlying vision that needs to happen in 18-24 months to move to something very proprietary to distinguish the difference between us versus everybody else.  The more you become a commodity, the less your profit margins and the more competition you deal with.  If your competition doesn&#39;t have the same restrictions of domestic-only, it&#39;s not a fair fight.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">The act of saying the goal at the end of the day is to be strictly domestic has to have inherent value because that&#39;s a big pair of handcuffs.  I know that&#39;ll be tossed out the window at some point, but as of right now you&#39;ve told me that is the goal.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">-- Tom</div><div class=\"gmail_default\" style=\"font-size:small\"></div></div><br><div><br></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, May 23, 2025 at 9:41 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div id=\"m_3916775713591523168m_8419961121435246804bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">So simply speaking…</div><div id=\"m_3916775713591523168m_8419961121435246804bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><br></div>Is this what you’re projecting to build first:<div id=\"m_3916775713591523168m_8419961121435246804bloop_sign_1748007523508386048\"></div>\r\n\r\n\r\n<div><a href=\"https://arkelectron.com/product/ark-jetson-pab-carrier/\" target=\"_blank\">https://arkelectron.com/product/ark-jetson-pab-carrier/</a><br></div><div><br></div><div>Then the rest of these things…</div><div><a href=\"https://arkelectron.com\" target=\"_blank\">https://arkelectron.com</a><br></div><div><br></div><div>FC, ESC, etc…</div><div><br></div><div>Thanks,</div><div>Rick</div></blockquote></div>','Rick:\r\n\r\nThe Jetson was projected out there on the 4th gen.\r\n\r\nThe 6X flight controller was in the 2nd gen.\r\n\r\nThe rest of these peripherals and sensors, yes absolutely.\r\n\r\nThis is very close, but the difference is your client would own the IP.\r\n\r\nWe\'d also be integrating this into airframe platforms, and we\'d be looking\r\ndomestically at trying to get props and airframes and motors.\r\n\r\nThat\'s a very nice site to review and archive and take notes on.\r\n\r\nThe amount of product they have on there would require more people.  The\r\nway I architected it to you was 2 variants of the ESC (small vs heavy\r\nloads), FCC will have only firmware differences so there\'s one board, then\r\nanywhere between 2-6 accessory boards at first.\r\n\r\nThat site is the kind of level you jumped to, you could have your money guy\r\nlook at it.\r\n\r\n\r\n\r\nRemember, I have no idea if they have the underlying vision that needs to\r\nhappen in 18-24 months to move to something very proprietary to\r\ndistinguish the difference between us versus everybody else.  The more you\r\nbecome a commodity, the less your profit margins and the more competition\r\nyou deal with.  If your competition doesn\'t have the same restrictions of\r\ndomestic-only, it\'s not a fair fight.\r\n\r\nThe act of saying the goal at the end of the day is to be strictly domestic\r\nhas to have inherent value because that\'s a big pair of handcuffs.  I know\r\nthat\'ll be tossed out the window at some point, but as of right now you\'ve\r\ntold me that is the goal.\r\n\r\n-- Tom\r\n\r\n\r\n\r\nOn Fri, May 23, 2025 at 9:41 AM Rick <rick@mavrix.one> wrote:\r\n\r\n> So simply speaking…\r\n>\r\n> Is this what you’re projecting to build first:\r\n> https://arkelectron.com/product/ark-jetson-pab-carrier/\r\n>\r\n> Then the rest of these things…\r\n> https://arkelectron.com\r\n>\r\n> FC, ESC, etc…\r\n>\r\n> Thanks,\r\n> Rick\r\n>',0,0,0,0,0,0,'2025-05-23 14:39:53','2025-12-09 19:06:48','2025-12-09 19:06:48','2025-12-09 19:06:48',NULL,NULL,NULL),
(303,4,' <BL3PR20MB49244349D5FA21BBF3B43432AF98A@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: Next mtg?','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nMorning Rick,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHere\'s the signed MNDA.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nAlso are we good then for next Wednesday&nbsp;at noon?</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nThanks,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nJason</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, May 23, 2025 4:13 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Next mtg?</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nMorning, Jason,</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nFor our next steps, please complete the attached NDA?</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nFill in the top paragraph, initial each page, and sign the final page.</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nLet me know if you have any questions or need anything else.</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nTalk soon!</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick&nbsp;</div>\r\n<br>\r\n<div id=\"x_bloop_sign_1747998720551728896\" class=\"x_bloop_sign\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On May 22, 2025 at 9:25:54 PM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div>\r\n<div dir=\"ltr\">That works for me</div>\r\n</div>\r\n<div id=\"x_ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"x_ms-outlook-mobile-signature\">Get <a href=\"https://aka.ms/o0ukef\">Outlook for iOS</a></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Thursday, May 22, 2025 10:34:18 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Next mtg?</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>How about noon on Wednesday your time. &nbsp;<br>\r\n<br>\r\n<div class=\"x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<p class=\"x_x_gmail_quote\" style=\"color:#000\">On May 22, 2025 at 11:41:58 AM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_gmail_quote\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nOr actually anytime Wednesday except 1pm - 2pm would work, even the morning.</div>\r\n<div id=\"x_x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Sent:</b> Thursday, May 22, 2025 8:40 AM<br>\r\n<b>To:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next mtg?</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div dir=\"ltr\">\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nYeah, anything past 12pm PST.</div>\r\n<div id=\"x_x_x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Thursday, May 22, 2025 8:38 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Next mtg?</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"\">Afternoon your time?</div>\r\n<br>\r\n<br>\r\n<div class=\"x_x_x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<p class=\"x_x_x_x_gmail_quote\" style=\"color:#000\">On May 22, 2025 at 11:37:24 AM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_x_x_gmail_quote\"></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Morning Rick,\r\n\r\nHere\'s the signed MNDA.\r\n\r\nAlso are we good then for next Wednesday at noon?\r\n\r\nThanks,\r\nJason\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, May 23, 2025 4:13 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Next mtg?\r\n\r\nMorning, Jason,\r\nFor our next steps, please complete the attached NDA?\r\nFill in the top paragraph, initial each page, and sign the final page.\r\nLet me know if you have any questions or need anything else.\r\nTalk soon!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 22, 2025 at 9:25:54 PM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nThat works for me\r\n\r\nGet Outlook for iOS<https://aka.ms/o0ukef>\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Thursday, May 22, 2025 10:34:18 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Next mtg?\r\n\r\nHow about noon on Wednesday your time.\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\nOn May 22, 2025 at 11:41:58 AM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nOr actually anytime Wednesday except 1pm - 2pm would work, even the morning.\r\n________________________________\r\nFrom: Jason Blick <jason@corvexsystems.com>\r\nSent: Thursday, May 22, 2025 8:40 AM\r\nTo: Rick <rick@mavrix.one>\r\nSubject: Re: Next mtg?\r\n\r\nYeah, anything past 12pm PST.\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Thursday, May 22, 2025 8:38 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Next mtg?\r\n\r\nAfternoon your time?\r\n\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\nOn May 22, 2025 at 11:37:24 AM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n',0,0,0,0,0,0,'2025-05-23 15:22:18','2025-12-09 19:06:48','2025-12-09 19:06:48','2025-12-09 19:06:48',NULL,NULL,NULL),
(304,4,'<CAArCLoi_txMrTkenMLMsajUZYuO-3TrwJ-cS9WeLZovjzw7s4w@mail.gmail.com>',NULL,NULL,'Re: Mavrix <> Vector','tory@tfvector.com','Tory Roberts','<div dir=\"ltr\"><div>Hello Rick,</div><div><br></div><div>Below I have suggested times for a meeting next week:</div><div><ul><li>Tuesday, May 27th at 4:30pm EST</li><li>Wednesday, May 28th at 11am EST</li><li>Thursday, May 29th at 2pm EST</li></ul></div><div><br></div><div>Please let me know which day works best for you and I will be happy to send an invite!</div><div><br></div><div>Regards,</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><span><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;vertical-align:baseline\"><font color=\"#776b6c\">Tory Roberts</font></span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(0,0,0);background-color:transparent;font-weight:700;vertical-align:baseline\">, </span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(154,0,10);background-color:transparent;font-weight:700;vertical-align:baseline\">Executive Assistant</span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(20,20,20);background-color:transparent;vertical-align:baseline\"><a href=\"mailto:tory@tfvector.com\" target=\"_blank\">tory@tfvector.com</a></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:rgb(17,85,204);background-color:transparent;vertical-align:baseline\"><span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\"><img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXeTal6s0IkK0baMnx93qZXuKVLEl524EKd9lkDV6RX225u9cdtAnN3cqG4blT8dvTtp8fF16wmo64-INi88bfNYnoYkjJL9TwMP7uEp8S1CcAeB4Is1WVndfHfIphkEpvnWQ1m8tQ?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left:0px;margin-top:0px\"></span></span></a></p></span></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, May 21, 2025 at 9:24 PM Andy Yakulis &lt;<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Tory, can you find time for me and Rick next week? We prob need an hour.</div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><span><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(119,107,108);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">Andy Yakulis</span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">, </span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\"><font color=\"#9a000a\">CEO</font></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(20,20,20);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\"><a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" style=\"text-decoration:none\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:rgb(17,85,204);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;vertical-align:baseline;white-space:pre-wrap\"><span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\"><img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left: 0px; margin-top: 0px;\"></span></span></a></p><div><br></div></span><div></div><div><br></div></div></div></div></div>\r\n</blockquote></div>','Hello Rick,\r\n\r\nBelow I have suggested times for a meeting next week:\r\n\r\n   - Tuesday, May 27th at 4:30pm EST\r\n   - Wednesday, May 28th at 11am EST\r\n   - Thursday, May 29th at 2pm EST\r\n\r\n\r\nPlease let me know which day works best for you and I will be happy to send\r\nan invite!\r\n\r\nRegards,\r\n\r\nTory Roberts, Executive Assistant\r\n\r\ntory@tfvector.com\r\n\r\n<https://www.tfvector.com/>\r\n\r\n\r\nOn Wed, May 21, 2025 at 9:24 PM Andy Yakulis <andy@tfvector.com> wrote:\r\n\r\n> Tory, can you find time for me and Rick next week? We prob need an hour.\r\n>\r\n> Andy Yakulis, CEO\r\n>\r\n> andy@tfvector.com\r\n>\r\n> <https://www.tfvector.com/>\r\n>\r\n>\r\n>',0,0,0,0,0,0,'2025-05-23 15:54:36','2025-12-09 19:06:49','2025-12-09 19:06:49','2025-12-09 19:06:49',NULL,NULL,NULL),
(305,4,' <CH2PR16MB34318CEC48A38600B1356C95FE98A@CH2PR16MB3431.namprd16.prod.outlook.com>',NULL,NULL,'Re: Next steps!','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nSounds good Rick - next week we are generally free Wednesday-Friday from 1030-12am | 1-3pm est. Let me know if a time in that range works and we can get a calendar on the books. Have a great weekend</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"Signature\" class=\"elementToProof\">\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color: rgb(0, 36, 81); margin: 0px;\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color: rgb(0, 36, 81); margin: 0px;\">.com</a></u></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a href=\"https://lithiumbatterycompany.com/\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color: rgb(0, 36, 81); margin: 0px;\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, May 23, 2025 8:38 AM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks for this Jarrett.</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nLet’s schedule a call with your team and my guy for later next week…</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nLet me know what’s best.</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks again!</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div id=\"x_bloop_sign_1748003865719297792\" class=\"x_bloop_sign\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On May 21, 2025 at 3:34:57 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nRick,&nbsp;<br>\r\n<br>\r\nPlease find attached a high-level investment teaser with an overview of our recent transaction, equipment purchase, facility layout and letters of support for our manufacturing aspirations from Mayor Castor, who\'s support has been instrumental in our project,\r\n as well as from our clients (volume of around ~$14.8m) for your review. Please let me know if any questions and we look forward to hearing your interest level.&nbsp;</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nBest,&nbsp;</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_Signature\" class=\"x_elementToProof\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, May 20, 2025 4:00 PM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">NDAs in place, next steps…</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Let me know what\'s best for your team.&nbsp;</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_airmail_on\">On May 15, 2025 at 8:17:14 AM, Rick (<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_clean_bq\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Sounds good.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Hope we can help you sooner rather than later!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">All my best,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_airmail_on\">On May 14, 2025 at 1:53:19 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_clean_bq\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div>\r\n<div dir=\"ltr\">Rick, apologies for the delay - after our call yesterday we were engaged by the Shell Corporation and today we are receiving an award at the Florida SBDC event so have been in meetings nearly constantly and I fell behind on kicking over the MNDA.\r\n It’s first on my to-do list after this event!</div>\r\n</div>\r\n<div id=\"x_x_ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"x_x_ms-outlook-mobile-signature\">\r\n<div></div>\r\n</div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, May 13, 2025 9:02:50 AM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div id=\"x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nGot it! Will be there.. thanks!</div>\r\n<div id=\"x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div id=\"x_x_x_bloop_sign_1747141266137078016\" class=\"x_x_x_bloop_sign\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_x_airmail_on\">On May 13, 2025 at 8:59:30 AM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick,&nbsp;</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nYes, 10am this morning - I just resent the zoom invite. Look forward to speaking soon</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_x_Signature\" class=\"x_x_x_elementToProof\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWAa99fda94-e056-c619-a196-a33c2ff2877b\" class=\"x_x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA098259f9-2a26-ebbc-a687-62be0f9f5580\" class=\"x_x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" id=\"OWA6dd24376-6350-4d35-05a2-83112c570eec\" class=\"x_x_x_OWAAutoLink\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_x_appendonsend\"></div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block; width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Rick<br>\r\n<b>Sent:</b>&nbsp;Tuesday, May 13, 2025 7:28 AM<br>\r\n<b>To:</b>&nbsp;Jarrett Brownfield<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps! </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div>Not sure if I responded accurately.&nbsp;</div>\r\n<div>I’m open at 10a today if that works.&nbsp;</div>\r\n<div>Thanks!</div>\r\n<div>Rick</div>\r\n<div><br>\r\n</div>\r\n<div>Rick Mislan, PhD</div>\r\n<div>[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one</div>\r\n<div><img height=\"11\" style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n<p style=\"color:rgb(0,0,0)\">On May 12, 2025 at 2:26:32 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\" id=\"OWA6fe9a5f9-a715-dff3-4833-c48bb98fbcc5\" class=\"x_x_x_OWAAutoLink\" style=\"margin-top:0px; margin-bottom:0px\">jarrett@lithiumbatterycompany.com</a>)\r\n wrote:</p>\r\n<blockquote>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nWe enjoyed meeting with you as well and thanks for circling back - please find below availability and we look forward to speaking:<br>\r\n<br>\r\n(all times EST)<br>\r\nToday:&nbsp; 3-4:30pm<br>\r\nTuesday (5.13): 930-11am || 1130am-1pm<br>\r\nWednesday (5.14): 10am-1130<br>\r\nThursday (5.15): 12-3pm&nbsp;<br>\r\nFriday (5.16): 9am-3pm<br>\r\n<br>\r\n<br>\r\nBest,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_x_x_Signature\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner</span>\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">\r\nI Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA85b348c0-ceb1-fac7-e499-95d5a963cc38\" class=\"x_x_x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA9b7813f6-bff5-7b2b-9efa-d558ec60b684\" class=\"x_x_x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" id=\"OWA93baa47e-fc9a-556d-beba-278bafbdf824\" class=\"x_x_x_x_OWAAutoLink\" title=\"https://lithiumbatterycompany.com/\" data-auth=\"NotApplicable\" data-linkindex=\"10\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_x_x_appendonsend\"></div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_x_x_x_divRplyFwdMsg\" dir=\"ltr\"><span style=\"font-family:Calibri,sans-serif; font-size:11pt; color:rgb(0,0,0)\"><b>From:</b>&nbsp;Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b>&nbsp;Sunday, May 11, 2025 9:18 AM<br>\r\n<b>To:</b>&nbsp;nathan@lithiumbatterycompany.com &lt;nathan@lithiumbatterycompany.com&gt;; jordan@lithiumbatterycompany.com &lt;jordan@lithiumbatterycompany.com&gt;; ronald@lithiumbatterycompany.com &lt;ronald@lithiumbatterycompany.com&gt;; jarrett@lithiumbatterycompany.com &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps!</span>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Ok, following up again,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">this time for a request&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">to discuss next steps.</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Interested in money? :)</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Let’s set up a time to chat soon.</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Thanks,</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Rick Mislan, PhD</div>\r\n<div style=\"direction:ltr\"><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" id=\"OWA6f2250de-935b-77bd-ce88-2cfb3cbe652e\" class=\"x_x_x_OWAAutoLink\" data-auth=\"NotApplicable\">https://mavrix.one</a></div>\r\n<div style=\"direction:ltr\"><img height=\"11\" style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr\">On May 8, 2025 at 1:33:01 PM, Rick (<a href=\"mailto:rick@mavrix.one\" id=\"OWA44b57871-3029-0cf0-fc3a-86d620da512e\" class=\"x_x_x_OWAAutoLink\" style=\"margin-top:0px; margin-bottom:0px\">rick@mavrix.one</a>) wrote:</p>\r\n<blockquote>\r\n<div style=\"direction:ltr; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<span style=\"background-color:rgb(255,255,255)\">Gentlemen,</span></div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nA pleasure meeting you all!</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nJust wanted to let you know that</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nI am talking to my team <a href=\"http://airmail.calendar/2025-05-11%2019:00:00%20EDT\" id=\"OWA8867e85c-bf8e-41be-d815-e78244229e9c\" class=\"x_x_x_OWAAutoLink\" data-auth=\"NotApplicable\">\r\ntonight</a></div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nhere in Treasure Island.&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nMy goal for <a href=\"http://airmail.calendar/2025-05-11%2019:00:00%20EDT\" id=\"OWA7aced99c-5963-164f-8e4a-9d96675a373f\" class=\"x_x_x_OWAAutoLink\" data-auth=\"NotApplicable\">\r\ntonight</a>&nbsp;is to</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\ndiscuss the mavrix&nbsp;portfolio and</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nplan out a schedule of calls</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nwith you for next steps.&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nAgain, I truly enjoyed meeting&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nand chatting with you all!&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nI’ll be in touch next week!</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nAll my best,</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nRick</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Sounds good Rick - next week we are generally free Wednesday-Friday from 1030-12am | 1-3pm est. Let me know if a time in that range works and we can get a calendar on the books. Have a great weekend\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, May 23, 2025 8:38 AM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nThanks for this Jarrett.\r\nLet’s schedule a call with your team and my guy for later next week…\r\nLet me know what’s best.\r\nThanks again!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 21, 2025 at 3:34:57 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nRick,\r\n\r\nPlease find attached a high-level investment teaser with an overview of our recent transaction, equipment purchase, facility layout and letters of support for our manufacturing aspirations from Mayor Castor, who\'s support has been instrumental in our project, as well as from our clients (volume of around ~$14.8m) for your review. Please let me know if any questions and we look forward to hearing your interest level.\r\n\r\nBest,\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, May 20, 2025 4:00 PM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nNDAs in place, next steps…\r\nLet me know what\'s best for your team.\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 15, 2025 at 8:17:14 AM, Rick (rick@mavrix.one<mailto:rick@mavrix.one>) wrote:\r\n\r\nSounds good.\r\nHope we can help you sooner rather than later!\r\nAll my best,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 14, 2025 at 1:53:19 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nRick, apologies for the delay - after our call yesterday we were engaged by the Shell Corporation and today we are receiving an award at the Florida SBDC event so have been in meetings nearly constantly and I fell behind on kicking over the MNDA. It’s first on my to-do list after this event!\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, May 13, 2025 9:02:50 AM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nGot it! Will be there.. thanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 13, 2025 at 8:59:30 AM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nYes, 10am this morning - I just resent the zoom invite. Look forward to speaking soon\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n\r\n________________________________\r\nFrom: Rick\r\nSent: Tuesday, May 13, 2025 7:28 AM\r\nTo: Jarrett Brownfield\r\nSubject: Re: Next steps!\r\n\r\nNot sure if I responded accurately.\r\nI’m open at 10a today if that works.\r\nThanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\n[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one\r\n[X]\r\n\r\nOn May 12, 2025 at 2:26:32 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nWe enjoyed meeting with you as well and thanks for circling back - please find below availability and we look forward to speaking:\r\n\r\n(all times EST)\r\nToday:  3-4:30pm\r\nTuesday (5.13): 930-11am || 1130am-1pm\r\nWednesday (5.14): 10am-1130\r\nThursday (5.15): 12-3pm\r\nFriday (5.16): 9am-3pm\r\n\r\n\r\nBest,\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Sunday, May 11, 2025 9:18 AM\r\nTo: nathan@lithiumbatterycompany.com <nathan@lithiumbatterycompany.com>; jordan@lithiumbatterycompany.com <jordan@lithiumbatterycompany.com>; ronald@lithiumbatterycompany.com <ronald@lithiumbatterycompany.com>; jarrett@lithiumbatterycompany.com <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nOk, following up again,\r\nthis time for a request\r\nto discuss next steps.\r\n\r\nInterested in money? :)\r\nLet’s set up a time to chat soon.\r\n\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 8, 2025 at 1:33:01 PM, Rick (rick@mavrix.one<mailto:rick@mavrix.one>) wrote:\r\n\r\nGentlemen,\r\n\r\nA pleasure meeting you all!\r\n\r\nJust wanted to let you know that\r\nI am talking to my team tonight<http://airmail.calendar/2025-05-11%2019:00:00%20EDT>\r\nhere in Treasure Island.\r\n\r\nMy goal for tonight<http://airmail.calendar/2025-05-11%2019:00:00%20EDT> is to\r\ndiscuss the mavrix portfolio and\r\nplan out a schedule of calls\r\nwith you for next steps.\r\n\r\nAgain, I truly enjoyed meeting\r\nand chatting with you all!\r\n\r\nI’ll be in touch next week!\r\n\r\nAll my best,\r\nRick\r\n\r\n',0,0,0,0,0,0,'2025-05-23 16:27:14','2025-12-09 19:06:49','2025-12-09 19:06:49','2025-12-09 19:06:49',NULL,NULL,NULL),
(306,4,'<calendar-a0a56406-3a84-4732-8e11-5ee93e8ce98f@google.com>',NULL,NULL,'Invitation: Mavrix <> Vector @ Tue May 27, 2025 2:30pm - 3:30pm (MDT) (rick@mavrix.one)','andy@tfvector.com','Andy Yakulis','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v143/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v117/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation from Andy Yakulis\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"3tk9e835am8fseilaoes77fiq9\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Mavrix &lt;&gt; Vector</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M3RrOWU4MzVhbThmc2VpbGFvZXM3N2ZpcTkgcmlja0BtYXZyaXgub25l&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21iYjRiMjJjMmE0YjM2ZThlM2Q4MmNlNDllM2FiMmU3ZjNkYWNkOWJm&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250527T203000Z\"></time><time itemprop=\"endDate\" datetime=\"20250527T213000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">You have been invited by Andy Yakulis to attend an event named Mavrix &lt;&gt; Vector on Tuesday May 27, 2025 ⋅ 2:30pm – 3:30pm (Mountain Time - Denver).</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><a href=\"https://tfvector.zoom.us/j/91614316120?pwd=rbItv2UGVLy9pSrmbtJYRIUi6rgTIi.1&amp;jst=2\" style=\"color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">Join Zoom Meeting</a><br><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/JoinAction\"><span itemprop=\"name\" content=\"tfvector.zoom.us/j/91614316120?p...\"><span itemprop=\"target\" itemscope itemtype=\"http://schema.org/EntryPoint\"><span itemprop=\"url\" content=\"https://tfvector.zoom.us/j/91614316120?pwd=rbItv2UGVLy9pSrmbtJYRIUi6rgTIi.1&amp;jst=2\"><span itemprop=\"httpMethod\" content=\"GET\"><a href=\"https://tfvector.zoom.us/j/91614316120?pwd=rbItv2UGVLy9pSrmbtJYRIUi6rgTIi.1&amp;jst=2\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">tfvector.zoom.us/j/91614316120?p...</a></span></span></span></span></span> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">ID: 91614316120</span><br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">passcode: 333260</span><br><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Join by phone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(US) </span><a href=\"tel:+13092053325,,91614316120#\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+1 309-205-3325</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">passcode: 333260</span><br><br><a href=\"https://www.google.com/url?q=https://applications.zoom.us/addon/invitation/detail?meetingUuid%3DgQ9um9wtT8CgDGbmMzPW4g%253D%253D%26signature%3Da1d2f799e37eb7570a5233ea8b47a22a54d0daa24824dfc16fb5925c1b9426de%26v%3D1&amp;sa=D&amp;source=calendar&amp;usg=AOvVaw3c1T92BdOl1P5lVmCpvlCx\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">Joining instructions</a><br><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Joining notes</h2></td></tr></table>Meeting host: <a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a><br><br>Join Zoom Meeting: <br><a href=\"https://www.google.com/url?q=https%3A%2F%2Ftfvector.zoom.us%2Fj%2F91614316120%3Fpwd%3DrbItv2UGVLy9pSrmbtJYRIUi6rgTIi.1%26jst%3D2&amp;sa=D&amp;ust=1748461860000000&amp;usg=AOvVaw3Y8gZPeJHc36N8iMf3s0y0\" target=\"_blank\">https://tfvector.zoom.us/j/91614316120?pwd=rbItv2UGVLy9pSrmbtJYRIUi6rgTIi.1&amp;jst=2</a></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250527T203000Z\"></time><time itemprop=\"endDate\" datetime=\"20250527T213000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Tuesday May 27, 2025 ⋅ 2:30pm – 3:30pm (Mountain Time - Denver)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:andy@tfvector.com\">Andy Yakulis</a></span><meta itemprop=\"email\" content=\"andy@tfvector.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Andy Yakulis\"/><meta itemprop=\"email\" content=\"andy@tfvector.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M3RrOWU4MzVhbThmc2VpbGFvZXM3N2ZpcTkgcmlja0BtYXZyaXgub25l&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21iYjRiMjJjMmE0YjM2ZThlM2Q4MmNlNDllM2FiMmU3ZjNkYWNkOWJm&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3RrOWU4MzVhbThmc2VpbGFvZXM3N2ZpcTkgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21iYjRiMjJjMmE0YjM2ZThlM2Q4MmNlNDllM2FiMmU3ZjNkYWNkOWJm&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3RrOWU4MzVhbThmc2VpbGFvZXM3N2ZpcTkgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21iYjRiMjJjMmE0YjM2ZThlM2Q4MmNlNDllM2FiMmU3ZjNkYWNkOWJm&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3RrOWU4MzVhbThmc2VpbGFvZXM3N2ZpcTkgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21iYjRiMjJjMmE0YjM2ZThlM2Q4MmNlNDllM2FiMmU3ZjNkYWNkOWJm&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3RrOWU4MzVhbThmc2VpbGFvZXM3N2ZpcTkgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21iYjRiMjJjMmE0YjM2ZThlM2Q4MmNlNDllM2FiMmU3ZjNkYWNkOWJm&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3RrOWU4MzVhbThmc2VpbGFvZXM3N2ZpcTkgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21iYjRiMjJjMmE0YjM2ZThlM2Q4MmNlNDllM2FiMmU3ZjNkYWNkOWJm&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3RrOWU4MzVhbThmc2VpbGFvZXM3N2ZpcTkgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21iYjRiMjJjMmE0YjM2ZThlM2Q4MmNlNDllM2FiMmU3ZjNkYWNkOWJm&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M3RrOWU4MzVhbThmc2VpbGFvZXM3N2ZpcTkgcmlja0BtYXZyaXgub25l&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21iYjRiMjJjMmE0YjM2ZThlM2Q4MmNlNDllM2FiMmU3ZjNkYWNkOWJm&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M3RrOWU4MzVhbThmc2VpbGFvZXM3N2ZpcTkgcmlja0BtYXZyaXgub25l&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21iYjRiMjJjMmE0YjM2ZThlM2Q4MmNlNDllM2FiMmU3ZjNkYWNkOWJm&amp;ctz=America%2FDenver&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','Mavrix <> Vector\r\nTuesday May 27, 2025 ⋅ 2:30pm – 3:30pm\r\nMountain Time - Denver\r\n\r\n	\r\nJoin Zoom Meeting\r\nhttps://tfvector.zoom.us/j/91614316120?pwd=rbItv2UGVLy9pSrmbtJYRIUi6rgTIi.1&jst=2\r\n	\r\nJoin by phone\r\n(US) +1 309-205-3325\r\npasscode: 333260\r\n\r\nJoining instructions\r\nhttps://www.google.com/url?q=https://applications.zoom.us/addon/invitation/detail?meetingUuid%3DgQ9um9wtT8CgDGbmMzPW4g%253D%253D%26signature%3Da1d2f799e37eb7570a5233ea8b47a22a54d0daa24824dfc16fb5925c1b9426de%26v%3D1&sa=D&source=calendar&usg=AOvVaw3c1T92BdOl1P5lVmCpvlCx\r\n	\r\nJoining notes\r\nMeeting host: andy@tfvector.com\r\n\r\nJoin Zoom Meeting:\r\nhttps://tfvector.zoom.us/j/91614316120?pwd=rbItv2UGVLy9pSrmbtJYRIUi6rgTIi.1&jst=2\r\n\r\n\r\nOrganizer\r\nAndy Yakulis\r\nandy@tfvector.com\r\n\r\nGuests\r\nAndy Yakulis - organizer\r\nrick@mavrix.one\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=M3RrOWU4MzVhbThmc2VpbGFvZXM3N2ZpcTkgcmlja0BtYXZyaXgub25l&tok=MTcjYW5keUB0ZnZlY3Rvci5jb21iYjRiMjJjMmE0YjM2ZThlM2Q4MmNlNDllM2FiMmU3ZjNkYWNkOWJm&ctz=America%2FDenver&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=M3RrOWU4MzVhbThmc2VpbGFvZXM3N2ZpcTkgcmlja0BtYXZyaXgub25l&tok=MTcjYW5keUB0ZnZlY3Rvci5jb21iYjRiMjJjMmE0YjM2ZThlM2Q4MmNlNDllM2FiMmU3ZjNkYWNkOWJm&ctz=America%2FDenver&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-05-23 19:51:52','2025-12-09 19:06:49','2025-12-09 19:06:49','2025-12-09 19:06:49',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(307,4,'<calendar-f6550d07-f529-4f5b-bd6f-6f6b2e5ea041@google.com>',NULL,NULL,'Updated invitation: Mavrix <> Vector @ Tue May 27, 2025 4:30pm - 5:30pm (EDT) (rick@mavrix.one)','tory@tfvector.com','Tory Roberts','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v143/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v117/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventRescheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"3tk9e835am8fseilaoes77fiq9\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Mavrix &lt;&gt; Vector</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M3RrOWU4MzVhbThmc2VpbGFvZXM3N2ZpcTkgcmlja0BtYXZyaXgub25l&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21iYjRiMjJjMmE0YjM2ZThlM2Q4MmNlNDllM2FiMmU3ZjNkYWNkOWJm&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250527T203000Z\"></time><time itemprop=\"endDate\" datetime=\"20250527T213000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">You have been invited by Andy Yakulis to attend an event named Mavrix &lt;&gt; Vector on Tuesday May 27, 2025 ⋅ 4:30pm – 5:30pm (Eastern Time - New York).</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"background-color: #e6f4ea;color: #0d5327;padding: 12px 32px; border-radius: 8px;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px;text-align: left;\" class=\"info-bar-inner\"><span style=\"font-weight: 700;\">This event has been updated</span><br/><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Thing/Video\"><meta itemprop=\"description\" content=\"Video call link updated\"/></span><div style=\"\"><span style=\"font-weight: 700;\">Changed:</span> conferencing</div></td></tr></tbody></table><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"12\" style=\"height:12px;\"><![endif]--><div style=\"height:12px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><a href=\"https://tfvector.zoom.us/j/91614316120?pwd=rbItv2UGVLy9pSrmbtJYRIUi6rgTIi.1&amp;jst=2\" style=\"color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">Join Zoom Meeting</a><br><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/JoinAction\"><span itemprop=\"name\" content=\"tfvector.zoom.us/j/91614316120?p...\"><span itemprop=\"target\" itemscope itemtype=\"http://schema.org/EntryPoint\"><span itemprop=\"url\" content=\"https://tfvector.zoom.us/j/91614316120?pwd=rbItv2UGVLy9pSrmbtJYRIUi6rgTIi.1&amp;jst=2\"><span itemprop=\"httpMethod\" content=\"GET\"><a href=\"https://tfvector.zoom.us/j/91614316120?pwd=rbItv2UGVLy9pSrmbtJYRIUi6rgTIi.1&amp;jst=2\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">tfvector.zoom.us/j/91614316120?p...</a></span></span></span></span></span> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">ID: 91614316120</span><br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">passcode: 333260</span><br><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Join by phone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(US) </span><a href=\"tel:+13092053325,,91614316120#\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+1 309-205-3325</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">passcode: 333260</span><br><br><a href=\"https://www.google.com/url?q=https://applications.zoom.us/addon/invitation/detail?meetingUuid%3DgQ9um9wtT8CgDGbmMzPW4g%253D%253D%26signature%3Da1d2f799e37eb7570a5233ea8b47a22a54d0daa24824dfc16fb5925c1b9426de%26v%3D1&amp;sa=D&amp;source=calendar&amp;usg=AOvVaw3c1T92BdOl1P5lVmCpvlCx\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">Joining instructions</a><br><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Joining notes</h2></td></tr></table>Meeting host: <a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a><br><br>Join Zoom Meeting: <br><a href=\"https://www.google.com/url?q=https%3A%2F%2Ftfvector.zoom.us%2Fj%2F91614316120%3Fpwd%3DrbItv2UGVLy9pSrmbtJYRIUi6rgTIi.1%26jst%3D2&amp;sa=D&amp;ust=1748461920000000&amp;usg=AOvVaw0ymUt4ArRIepPNEmLLcZ0y\" target=\"_blank\">https://tfvector.zoom.us/j/91614316120?pwd=rbItv2UGVLy9pSrmbtJYRIUi6rgTIi.1&amp;jst=2</a></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250527T203000Z\"></time><time itemprop=\"endDate\" datetime=\"20250527T213000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Tuesday May 27, 2025 ⋅ 4:30pm – 5:30pm (Eastern Time - New York)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:andy@tfvector.com\">Andy Yakulis</a></span><meta itemprop=\"email\" content=\"andy@tfvector.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Andy Yakulis\"/><meta itemprop=\"email\" content=\"andy@tfvector.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M3RrOWU4MzVhbThmc2VpbGFvZXM3N2ZpcTkgcmlja0BtYXZyaXgub25l&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21iYjRiMjJjMmE0YjM2ZThlM2Q4MmNlNDllM2FiMmU3ZjNkYWNkOWJm&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3RrOWU4MzVhbThmc2VpbGFvZXM3N2ZpcTkgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21iYjRiMjJjMmE0YjM2ZThlM2Q4MmNlNDllM2FiMmU3ZjNkYWNkOWJm&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3RrOWU4MzVhbThmc2VpbGFvZXM3N2ZpcTkgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21iYjRiMjJjMmE0YjM2ZThlM2Q4MmNlNDllM2FiMmU3ZjNkYWNkOWJm&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3RrOWU4MzVhbThmc2VpbGFvZXM3N2ZpcTkgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21iYjRiMjJjMmE0YjM2ZThlM2Q4MmNlNDllM2FiMmU3ZjNkYWNkOWJm&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3RrOWU4MzVhbThmc2VpbGFvZXM3N2ZpcTkgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21iYjRiMjJjMmE0YjM2ZThlM2Q4MmNlNDllM2FiMmU3ZjNkYWNkOWJm&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3RrOWU4MzVhbThmc2VpbGFvZXM3N2ZpcTkgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21iYjRiMjJjMmE0YjM2ZThlM2Q4MmNlNDllM2FiMmU3ZjNkYWNkOWJm&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3RrOWU4MzVhbThmc2VpbGFvZXM3N2ZpcTkgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21iYjRiMjJjMmE0YjM2ZThlM2Q4MmNlNDllM2FiMmU3ZjNkYWNkOWJm&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M3RrOWU4MzVhbThmc2VpbGFvZXM3N2ZpcTkgcmlja0BtYXZyaXgub25l&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21iYjRiMjJjMmE0YjM2ZThlM2Q4MmNlNDllM2FiMmU3ZjNkYWNkOWJm&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M3RrOWU4MzVhbThmc2VpbGFvZXM3N2ZpcTkgcmlja0BtYXZyaXgub25l&amp;tok=MTcjYW5keUB0ZnZlY3Rvci5jb21iYjRiMjJjMmE0YjM2ZThlM2Q4MmNlNDllM2FiMmU3ZjNkYWNkOWJm&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','This event has been updated\r\nChanged: conferencing\r\n\r\n\r\nMavrix <> Vector\r\nTuesday May 27, 2025 ⋅ 4:30pm – 5:30pm\r\nEastern Time - New York\r\n\r\n	\r\nJoin Zoom Meeting\r\nhttps://tfvector.zoom.us/j/91614316120?pwd=rbItv2UGVLy9pSrmbtJYRIUi6rgTIi.1&jst=2\r\n	\r\nJoin by phone\r\n(US) +1 309-205-3325\r\npasscode: 333260\r\n\r\nJoining instructions\r\nhttps://www.google.com/url?q=https://applications.zoom.us/addon/invitation/detail?meetingUuid%3DgQ9um9wtT8CgDGbmMzPW4g%253D%253D%26signature%3Da1d2f799e37eb7570a5233ea8b47a22a54d0daa24824dfc16fb5925c1b9426de%26v%3D1&sa=D&source=calendar&usg=AOvVaw3c1T92BdOl1P5lVmCpvlCx\r\n	\r\nJoining notes\r\nMeeting host: andy@tfvector.com\r\n\r\nJoin Zoom Meeting:\r\nhttps://tfvector.zoom.us/j/91614316120?pwd=rbItv2UGVLy9pSrmbtJYRIUi6rgTIi.1&jst=2\r\n\r\n\r\nOrganizer\r\nAndy Yakulis\r\nandy@tfvector.com\r\n\r\nGuests\r\nAndy Yakulis - organizer\r\nrick@mavrix.one\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=M3RrOWU4MzVhbThmc2VpbGFvZXM3N2ZpcTkgcmlja0BtYXZyaXgub25l&tok=MTcjYW5keUB0ZnZlY3Rvci5jb21iYjRiMjJjMmE0YjM2ZThlM2Q4MmNlNDllM2FiMmU3ZjNkYWNkOWJm&ctz=America%2FNew_York&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=M3RrOWU4MzVhbThmc2VpbGFvZXM3N2ZpcTkgcmlja0BtYXZyaXgub25l&tok=MTcjYW5keUB0ZnZlY3Rvci5jb21iYjRiMjJjMmE0YjM2ZThlM2Q4MmNlNDllM2FiMmU3ZjNkYWNkOWJm&ctz=America%2FNew_York&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-05-23 19:52:06','2025-12-09 19:06:50','2025-12-09 19:06:50','2025-12-09 19:06:50',NULL,NULL,NULL),
(308,4,'<CAArCLoiyRRQGf2GKneyNOc6YL=1MvUZCtsnhOB9frBCrhR5VYg@mail.gmail.com>',NULL,NULL,'Re: Mavrix <> Vector','tory@tfvector.com','Tory Roberts','<div dir=\"ltr\"><div>Certainly! I have sent the calendar invite!<br></div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><span><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;vertical-align:baseline\"><font color=\"#776b6c\">Tory Roberts</font></span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(0,0,0);background-color:transparent;font-weight:700;vertical-align:baseline\">, </span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(154,0,10);background-color:transparent;font-weight:700;vertical-align:baseline\">Executive Assistant</span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(20,20,20);background-color:transparent;vertical-align:baseline\"><a href=\"mailto:tory@tfvector.com\" target=\"_blank\">tory@tfvector.com</a></span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:rgb(17,85,204);background-color:transparent;vertical-align:baseline\"><span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\"><img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXeTal6s0IkK0baMnx93qZXuKVLEl524EKd9lkDV6RX225u9cdtAnN3cqG4blT8dvTtp8fF16wmo64-INi88bfNYnoYkjJL9TwMP7uEp8S1CcAeB4Is1WVndfHfIphkEpvnWQ1m8tQ?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left:0px;margin-top:0px\"></span></span></a></p></span></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, May 23, 2025 at 3:24 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div><div>Tuesday, May 27th at 4:30pm EST works!<br>Thank you!<br>Rick</div> <br> <br><div class=\"gmail_signature\">\r\n        \r\n    \r\n    <div>Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div></div> <p class=\"gmail_quote\" style=\"color:rgb(0,0,0)\">On May 23, 2025 at 11:54:36 AM, Tory Roberts (<a href=\"mailto:tory@tfvector.com\" target=\"_blank\">tory@tfvector.com</a>) wrote:</p> <blockquote type=\"cite\" class=\"gmail_quote\"><span><div><div></div><div>\r\n\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div>Hello Rick,</div>\r\n<div><br></div>\r\n<div>Below I have suggested times for a meeting next week:</div>\r\n<div>\r\n<ul>\r\n<li>Tuesday, May 27th at 4:30pm EST</li>\r\n<li>Wednesday, May 28th at 11am EST</li>\r\n<li>Thursday, May 29th at 2pm EST</li>\r\n</ul>\r\n</div>\r\n<div><br></div>\r\n<div>Please let me know which day works best for you and I will be\r\nhappy to send an invite!</div>\r\n<div><br></div>\r\n<div>Regards,</div>\r\n<div>\r\n<div dir=\"ltr\" class=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\">\r\n<span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;vertical-align:baseline\">\r\n<font color=\"#776B6C\">Tory Roberts</font></span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(0,0,0);background-color:transparent;font-weight:700;vertical-align:baseline\">,</span>\r\n<span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(154,0,10);background-color:transparent;font-weight:700;vertical-align:baseline\">\r\nExecutive Assistant</span></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(20,20,20);background-color:transparent;vertical-align:baseline\">\r\n<a href=\"mailto:tory@tfvector.com\" target=\"_blank\">tory@tfvector.com</a></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:rgb(17,85,204);background-color:transparent;vertical-align:baseline\">\r\n<span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\">\r\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXeTal6s0IkK0baMnx93qZXuKVLEl524EKd9lkDV6RX225u9cdtAnN3cqG4blT8dvTtp8fF16wmo64-INi88bfNYnoYkjJL9TwMP7uEp8S1CcAeB4Is1WVndfHfIphkEpvnWQ1m8tQ?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left: 0px; margin-top: 0px;\"></span></span></a></p>\r\n</div>\r\n</div>\r\n</div>\r\n<br></div>\r\n<br>\r\n<div class=\"gmail_quote\">\r\n<div dir=\"ltr\" class=\"gmail_attr\">On Wed, May 21, 2025 at 9:24 PM\r\nAndy Yakulis &lt;<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a>&gt; wrote:<br></div>\r\n<blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div dir=\"ltr\">\r\n<div>Tory, can you find time for me and Rick next week? We prob\r\nneed an hour.</div>\r\n<div><br></div>\r\n<div>\r\n<div dir=\"ltr\" class=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\">\r\n<span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(119,107,108);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\nAndy Yakulis</span><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">,</span>\r\n<span style=\"font-size:11pt;font-family:Aldrich,sans-serif;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<font color=\"#9A000A\">CEO</font></span></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><span style=\"font-size:11pt;font-family:Aldrich,sans-serif;color:rgb(20,20,20);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">\r\n<a href=\"mailto:andy@tfvector.com\" target=\"_blank\">andy@tfvector.com</a></span></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"></p>\r\n<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:0pt\"><a href=\"https://www.tfvector.com/\" style=\"text-decoration:none\" target=\"_blank\"><span style=\"font-size:12pt;font-family:Aptos;color:rgb(17,85,204);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;vertical-align:baseline;white-space:pre-wrap\">\r\n<span style=\"border:none;display:inline-block;overflow:hidden;width:144px;height:40px\">\r\n<img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\" width=\"144\" height=\"40\" style=\"margin-left: 0px; margin-top: 0px;\"></span></span></a></p>\r\n<div><br></div>\r\n<div><br></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n\r\n\r\n</div></div></span></blockquote></div></blockquote></div>','Certainly! I have sent the calendar invite!\r\n\r\nTory Roberts, Executive Assistant\r\n\r\ntory@tfvector.com\r\n\r\n<https://www.tfvector.com/>\r\n\r\n\r\nOn Fri, May 23, 2025 at 3:24 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> Tuesday, May 27th at 4:30pm EST works!\r\n> Thank you!\r\n> Rick\r\n>\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On May 23, 2025 at 11:54:36 AM, Tory Roberts (tory@tfvector.com) wrote:\r\n>\r\n>> Hello Rick,\r\n>>\r\n>> Below I have suggested times for a meeting next week:\r\n>>\r\n>>    - Tuesday, May 27th at 4:30pm EST\r\n>>    - Wednesday, May 28th at 11am EST\r\n>>    - Thursday, May 29th at 2pm EST\r\n>>\r\n>>\r\n>> Please let me know which day works best for you and I will be happy to\r\n>> send an invite!\r\n>>\r\n>> Regards,\r\n>>\r\n>> Tory Roberts, Executive Assistant\r\n>>\r\n>> tory@tfvector.com\r\n>>\r\n>> <https://www.tfvector.com/>\r\n>>\r\n>>\r\n>> On Wed, May 21, 2025 at 9:24 PM Andy Yakulis <andy@tfvector.com> wrote:\r\n>>\r\n>>> Tory, can you find time for me and Rick next week? We prob need an hour.\r\n>>>\r\n>>> Andy Yakulis, CEO\r\n>>>\r\n>>> andy@tfvector.com\r\n>>>\r\n>>> <https://www.tfvector.com/>\r\n>>>\r\n>>>\r\n>>>',0,0,0,0,0,0,'2025-05-23 19:52:55','2025-12-09 19:06:50','2025-12-09 19:06:50','2025-12-09 19:06:50',NULL,NULL,NULL),
(309,4,'<calendar-e01da9e6-304e-4f57-aa12-8a416dae8c5a@google.com>',NULL,NULL,'Invitation: Mavrix <> Strategic Logix @ Wed May 28, 2025 9am - 10am (EDT) (rick@mavrix.one)','avalkenburg@strategic-logix.com','Andrew Valkenburg','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v143/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v117/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation from Andrew Valkenburg\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"2pc3dbqb7l0irv6m1ohtdujenh\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Mavrix &lt;&gt; Strategic Logix</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MnBjM2RicWI3bDBpcnY2bTFvaHRkdWplbmggcmlja0BtYXZyaXgub25l&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTg4OTlmOWFiNTUwMzg5MThjMmEyZjJhZWFlNTAzNjZmNDIzN2Y5MmM&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250528T130000Z\"></time><time itemprop=\"endDate\" datetime=\"20250528T140000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">Join with Google Meet – Please add guests or modify if at all necessary. Additional openings would be Wednesday 1200, Thursday 1000, Thursday 1200 or potentially Friday 0900</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:28px;\"><a href=\"https://meet.google.com/qjo-apft-gqc?hs=224\" class=\"primary-button-text\" style=\"display: inline-block;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"display: inline-block\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"background-color: #1a73e8; cursor: auto; padding: 10px 25px; border: none; border-radius: 4px; margin: 0;\" class=\"primary-button\"><!--[if mso]><a href=\"https://meet.google.com/qjo-apft-gqc?hs=224\" class=\"primary-button-text\" target=\"_blank\"><![endif]--><span class=\"primary-button-text\" style=\"font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\">Join with Google Meet</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Meeting link</h2></td></tr></table><!-- Use grey text for the Meet link--><div><a style=\"display: inline-block;;color: #70757a; text-decoration: none;\" class=\"secondary-text underline-on-hover\" href=\"https://meet.google.com/qjo-apft-gqc?hs=224\">meet.google.com/qjo-apft-gqc</a></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Join by phone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(US) </span><a href=\"tel:+1-786-540-4809%3B511888218%23\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+1 786-540-4809</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">PIN: 511888218</span><br><br><a href=\"https://tel.meet/qjo-apft-gqc?pin=4400090898728&amp;hs=0\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">More phone numbers</a><br></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span>Please add guests or modify if at all necessary. Additional openings would be Wednesday 1200, Thursday 1000, Thursday 1200 or potentially Friday 0900</span><meta itemprop=\"description\" content=\"Please add guests or modify if at all necessary. Additional openings would be Wednesday 1200, Thursday 1000, Thursday 1200 or potentially Friday 0900\"/></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250528T130000Z\"></time><time itemprop=\"endDate\" datetime=\"20250528T140000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Wednesday May 28, 2025 ⋅ 9am – 10am (Eastern Time - New York)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:avalkenburg@strategic-logix.com\">Andrew Valkenburg</a></span><meta itemprop=\"email\" content=\"avalkenburg@strategic-logix.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Andrew Valkenburg\"/><meta itemprop=\"email\" content=\"avalkenburg@strategic-logix.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jschnipke@strategic-logix.com\">Jeremy Schnipke</a></span><meta itemprop=\"email\" content=\"jschnipke@strategic-logix.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MnBjM2RicWI3bDBpcnY2bTFvaHRkdWplbmggcmlja0BtYXZyaXgub25l&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTg4OTlmOWFiNTUwMzg5MThjMmEyZjJhZWFlNTAzNjZmNDIzN2Y5MmM&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MnBjM2RicWI3bDBpcnY2bTFvaHRkdWplbmggcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTg4OTlmOWFiNTUwMzg5MThjMmEyZjJhZWFlNTAzNjZmNDIzN2Y5MmM&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MnBjM2RicWI3bDBpcnY2bTFvaHRkdWplbmggcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTg4OTlmOWFiNTUwMzg5MThjMmEyZjJhZWFlNTAzNjZmNDIzN2Y5MmM&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MnBjM2RicWI3bDBpcnY2bTFvaHRkdWplbmggcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTg4OTlmOWFiNTUwMzg5MThjMmEyZjJhZWFlNTAzNjZmNDIzN2Y5MmM&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MnBjM2RicWI3bDBpcnY2bTFvaHRkdWplbmggcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTg4OTlmOWFiNTUwMzg5MThjMmEyZjJhZWFlNTAzNjZmNDIzN2Y5MmM&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MnBjM2RicWI3bDBpcnY2bTFvaHRkdWplbmggcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTg4OTlmOWFiNTUwMzg5MThjMmEyZjJhZWFlNTAzNjZmNDIzN2Y5MmM&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MnBjM2RicWI3bDBpcnY2bTFvaHRkdWplbmggcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTg4OTlmOWFiNTUwMzg5MThjMmEyZjJhZWFlNTAzNjZmNDIzN2Y5MmM&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MnBjM2RicWI3bDBpcnY2bTFvaHRkdWplbmggcmlja0BtYXZyaXgub25l&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTg4OTlmOWFiNTUwMzg5MThjMmEyZjJhZWFlNTAzNjZmNDIzN2Y5MmM&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MnBjM2RicWI3bDBpcnY2bTFvaHRkdWplbmggcmlja0BtYXZyaXgub25l&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTg4OTlmOWFiNTUwMzg5MThjMmEyZjJhZWFlNTAzNjZmNDIzN2Y5MmM&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','Mavrix <> Strategic Logix\r\nWednesday May 28, 2025 ⋅ 9am – 10am\r\nEastern Time - New York\r\n\r\nJoin with Google Meet\r\nhttps://meet.google.com/qjo-apft-gqc?hs=224\r\n\r\n\r\n	\r\nJoin by phone\r\n(US) +1 786-540-4809\r\nPIN: 511888218\r\n\r\nMore phone numbers\r\nhttps://tel.meet/qjo-apft-gqc?pin=4400090898728&hs=0\r\n\r\n\r\nPlease add guests or modify if at all necessary. Additional openings would  \r\nbe Wednesday 1200, Thursday 1000, Thursday 1200 or potentially Friday 0900\r\n\r\nOrganizer\r\nAndrew Valkenburg\r\navalkenburg@strategic-logix.com\r\n\r\nGuests\r\nAndrew Valkenburg - organizer\r\nrick@mavrix.one\r\nJeremy Schnipke\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=MnBjM2RicWI3bDBpcnY2bTFvaHRkdWplbmggcmlja0BtYXZyaXgub25l&tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTg4OTlmOWFiNTUwMzg5MThjMmEyZjJhZWFlNTAzNjZmNDIzN2Y5MmM&ctz=America%2FNew_York&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=MnBjM2RicWI3bDBpcnY2bTFvaHRkdWplbmggcmlja0BtYXZyaXgub25l&tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTg4OTlmOWFiNTUwMzg5MThjMmEyZjJhZWFlNTAzNjZmNDIzN2Y5MmM&ctz=America%2FNew_York&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-05-23 21:39:28','2025-12-09 19:06:51','2025-12-09 19:06:51','2025-12-09 19:06:51',NULL,NULL,NULL),
(310,4,'<1208977124.506802.1748051033762@mail.yahoo.com>',NULL,NULL,'Technology CV and elevator pitch','kennerly.john@yahoo.com','John Kennerly','<html><head></head><body><div class=\"yahoo-style-wrap\" style=\"font-family:Helvetica Neue, Helvetica, Arial, sans-serif;font-size:16px;\"><div dir=\"ltr\" data-setdir=\"false\">Rick,</div><div dir=\"ltr\" data-setdir=\"false\"><br></div><div dir=\"ltr\" data-setdir=\"false\">As discussed - Attached are a technology focused CV (as opposed to tactical skill, etc.) and an AI\'s consolidated version of what the CV says into a succinct paragraph.</div><div dir=\"ltr\" data-setdir=\"false\"><br></div><div dir=\"ltr\" data-setdir=\"false\">I\'ll be available whenever. <br></div><div dir=\"ltr\" data-setdir=\"false\"><br></div><div dir=\"ltr\" data-setdir=\"false\">Also, different type of creds:&nbsp; <a href=\"https://tacflite.com/Media/Hf1ML.mp4\" rel=\"nofollow\" target=\"_blank\">https://tacflite.com/Media/Hf1ML.mp4</a> from a rudimentary website build, Footage from circa 2017.<br></div><div dir=\"ltr\" data-setdir=\"false\">The webpage is still work in progress, but if you wait for it to load the video gives some idea of my actual FPV abilities.</div><div dir=\"ltr\" data-setdir=\"false\"><br></div><div dir=\"ltr\" data-setdir=\"false\"><br></div><div dir=\"ltr\" data-setdir=\"false\">Thanks, <br></div><div dir=\"ltr\" data-setdir=\"false\"><br></div><div dir=\"ltr\" data-setdir=\"false\">John<br></div></div></body></html>','Rick,\r\nAs discussed - Attached are a technology focused CV (as opposed to tactical skill, etc.) and an AI\'s consolidated version of what the CV says into a succinct paragraph.\r\nI\'ll be available whenever. \r\n\r\nAlso, different type of creds:  https://tacflite.com/Media/Hf1ML.mp4 from a rudimentary website build, Footage from circa 2017.\r\nThe webpage is still work in progress, but if you wait for it to load the video gives some idea of my actual FPV abilities.\r\n\r\nThanks, \r\n\r\nJohn',0,0,0,0,0,0,'2025-05-24 01:43:53','2025-12-09 19:06:51','2025-12-09 19:06:51','2025-12-09 19:06:51',NULL,NULL,NULL),
(311,4,'<2FFCB498-65EE-45B9-A2A4-568B62FF5D58@impossible-objects.com>',NULL,NULL,'Re: Next steps?','shoover@impossible-objects.com','Steve Hoover','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\">Any progress getting a time locked down?<div><br></div><div>thx</div><div><br></div><div>Steve</div><div><br id=\"lineBreakAtBeginningOfMessage\"><div><br><blockquote type=\"cite\"><div>On May 22, 2025, at 3:53 PM, Rick &lt;rick@mavrix.one&gt; wrote:</div><br class=\"Apple-interchange-newline\"><div><meta charset=\"UTF-8\"><div id=\"bloop_customfont\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; margin: 0px;\">Thanks!</div><br style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><div id=\"bloop_sign_1747943612219172864\" class=\"bloop_sign\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div><div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height: 11px;\"></div></div><br style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><p class=\"airmail_on\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">On May 22, 2025 at 3:51:28 PM, Steve Hoover (<a href=\"mailto:shoover@impossible-objects.com\">shoover@impossible-objects.com</a>) wrote:</p><blockquote type=\"cite\" class=\"clean_bq\" style=\"font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><span><div><div style=\"caret-color: rgb(0, 0, 0); font-family: UICTFontTextStyleBody; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><a href=\"http://airmail.calendar/2025-05-27%2012:00:00%20EDT\" style=\"overflow-wrap: break-word; word-break: break-word; hyphens: auto;\"><br class=\"Apple-interchange-newline\">Tuesday - noon to 3 pm</a></div><div style=\"caret-color: rgb(0, 0, 0); font-family: UICTFontTextStyleBody; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><a href=\"http://airmail.calendar/2025-05-28%2009:00:00%20EDT\" style=\"overflow-wrap: break-word; word-break: break-word; hyphens: auto;\">Wednesday -9-noon</a><span class=\"Apple-converted-space\">&nbsp;</span>and 1-5</div><div style=\"caret-color: rgb(0, 0, 0); font-family: UICTFontTextStyleBody; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><a href=\"http://airmail.calendar/2025-05-29%2009:00:00%20EDT\" style=\"overflow-wrap: break-word; word-break: break-word; hyphens: auto;\">Thursday 9-3 pm</a></div><div style=\"caret-color: rgb(0, 0, 0); font-family: UICTFontTextStyleBody; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><a href=\"http://airmail.calendar/2025-05-23%2009:00:00%20EDT\" style=\"overflow-wrap: break-word; word-break: break-word; hyphens: auto;\">Friday 9-noon</a>, 1:30- pm</div><div style=\"caret-color: rgb(0, 0, 0); font-family: UICTFontTextStyleBody; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><br></div><div style=\"caret-color: rgb(0, 0, 0); font-family: UICTFontTextStyleBody; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">All times east coast time zone.</div></div></span></blockquote></div></blockquote></div><br></div></body></html>','Any progress getting a time locked down?\r\n\r\nthx\r\n\r\nSteve\r\n\r\n\r\n> On May 22, 2025, at 3:53 PM, Rick <rick@mavrix.one> wrote:\r\n> \r\n> Thanks!\r\n> \r\n> Rick Mislan, PhD\r\n> https://mavrix.one <https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n> \r\n> On May 22, 2025 at 3:51:28 PM, Steve Hoover (shoover@impossible-objects.com <mailto:shoover@impossible-objects.com>) wrote:\r\n> \r\n>> \r\n>> Tuesday - noon to 3 pm <http://airmail.calendar/2025-05-27%2012:00:00%20EDT>\r\n>> Wednesday -9-noon <http://airmail.calendar/2025-05-28%2009:00:00%20EDT> and 1-5\r\n>> Thursday 9-3 pm <http://airmail.calendar/2025-05-29%2009:00:00%20EDT>\r\n>> Friday 9-noon <http://airmail.calendar/2025-05-23%2009:00:00%20EDT>, 1:30- pm\r\n>> \r\n>> All times east coast time zone.',0,0,0,0,0,0,'2025-05-27 16:43:47','2025-12-09 19:06:52','2025-12-09 19:06:52','2025-12-09 19:06:52',NULL,NULL,NULL),
(312,4,'<calendar-c4840a7f-381d-4735-9b94-d6fe0253e2f0@google.com>',NULL,NULL,'Updated invitation: Mavrix <> Strategic Logix @ Thu May 29, 2025 3pm - 4pm (EDT) (rick@mavrix.one)','avalkenburg@strategic-logix.com','Andrew Valkenburg','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v143/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v117/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventRescheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"2pc3dbqb7l0irv6m1ohtdujenh\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Mavrix &lt;&gt; Strategic Logix</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MnBjM2RicWI3bDBpcnY2bTFvaHRkdWplbmggcmlja0BtYXZyaXgub25l&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTg4OTlmOWFiNTUwMzg5MThjMmEyZjJhZWFlNTAzNjZmNDIzN2Y5MmM&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250529T190000Z\"></time><time itemprop=\"endDate\" datetime=\"20250529T200000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">Join with Google Meet – Please add guests or modify if at all necessary. Additional openings would be Wednesday 1200, Thursday 1000, Thursday 1200 or potentially Friday 0900</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"background-color: #e6f4ea;color: #0d5327;padding: 12px 32px; border-radius: 8px;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px;text-align: left;\" class=\"info-bar-inner\"><span style=\"font-weight: 700;\">This event has been updated</span><br/><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Thing/Clock\"><meta itemprop=\"description\" content=\"Time updated\"/></span><div style=\"\"><span style=\"font-weight: 700;\">Changed:</span> time</div></td></tr></tbody></table><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"12\" style=\"height:12px;\"><![endif]--><div style=\"height:12px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:28px;\"><a href=\"https://meet.google.com/qjo-apft-gqc?hs=224\" class=\"primary-button-text\" style=\"display: inline-block;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"display: inline-block\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"background-color: #1a73e8; cursor: auto; padding: 10px 25px; border: none; border-radius: 4px; margin: 0;\" class=\"primary-button\"><!--[if mso]><a href=\"https://meet.google.com/qjo-apft-gqc?hs=224\" class=\"primary-button-text\" target=\"_blank\"><![endif]--><span class=\"primary-button-text\" style=\"font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\">Join with Google Meet</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Meeting link</h2></td></tr></table><!-- Use grey text for the Meet link--><div><a style=\"display: inline-block;;color: #70757a; text-decoration: none;\" class=\"secondary-text underline-on-hover\" href=\"https://meet.google.com/qjo-apft-gqc?hs=224\">meet.google.com/qjo-apft-gqc</a></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Join by phone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(US) </span><a href=\"tel:+1-786-540-4809%3B511888218%23\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+1 786-540-4809</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">PIN: 511888218</span><br><br><a href=\"https://tel.meet/qjo-apft-gqc?pin=4400090898728&amp;hs=0\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">More phone numbers</a><br></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span>Please add guests or modify if at all necessary. Additional openings would be Wednesday 1200, Thursday 1000, Thursday 1200 or potentially Friday 0900</span><meta itemprop=\"description\" content=\"Please add guests or modify if at all necessary. Additional openings would be Wednesday 1200, Thursday 1000, Thursday 1200 or potentially Friday 0900\"/></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250529T190000Z\"></time><time itemprop=\"endDate\" datetime=\"20250529T200000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td><td style=\"width: 8px;\"></td><td style=\"padding-top: 2px; padding-bottom: 3px;\"><div style=\"background-color: #1e8e3e; border-radius: 10px; padding: 1px 5px; line-height: 13px;\"><span style=\"color: white; font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; vertical-align: top;\">CHANGED</span></div></td></tr></table><span>Thursday May 29, 2025 ⋅ 3pm – 4pm (Eastern Time - New York)<br/><span style=\"text-decoration: line-through;\"><del><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;font-size: 0; display: block;\">Old: </span>Wednesday May 28, 2025 ⋅ 9am – 10am (Eastern Time - New York)</del></span></span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:avalkenburg@strategic-logix.com\">Andrew Valkenburg</a></span><meta itemprop=\"email\" content=\"avalkenburg@strategic-logix.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Andrew Valkenburg\"/><meta itemprop=\"email\" content=\"avalkenburg@strategic-logix.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jschnipke@strategic-logix.com\">Jeremy Schnipke</a></span><meta itemprop=\"email\" content=\"jschnipke@strategic-logix.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MnBjM2RicWI3bDBpcnY2bTFvaHRkdWplbmggcmlja0BtYXZyaXgub25l&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTg4OTlmOWFiNTUwMzg5MThjMmEyZjJhZWFlNTAzNjZmNDIzN2Y5MmM&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MnBjM2RicWI3bDBpcnY2bTFvaHRkdWplbmggcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTg4OTlmOWFiNTUwMzg5MThjMmEyZjJhZWFlNTAzNjZmNDIzN2Y5MmM&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MnBjM2RicWI3bDBpcnY2bTFvaHRkdWplbmggcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTg4OTlmOWFiNTUwMzg5MThjMmEyZjJhZWFlNTAzNjZmNDIzN2Y5MmM&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MnBjM2RicWI3bDBpcnY2bTFvaHRkdWplbmggcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTg4OTlmOWFiNTUwMzg5MThjMmEyZjJhZWFlNTAzNjZmNDIzN2Y5MmM&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MnBjM2RicWI3bDBpcnY2bTFvaHRkdWplbmggcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTg4OTlmOWFiNTUwMzg5MThjMmEyZjJhZWFlNTAzNjZmNDIzN2Y5MmM&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MnBjM2RicWI3bDBpcnY2bTFvaHRkdWplbmggcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTg4OTlmOWFiNTUwMzg5MThjMmEyZjJhZWFlNTAzNjZmNDIzN2Y5MmM&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MnBjM2RicWI3bDBpcnY2bTFvaHRkdWplbmggcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTg4OTlmOWFiNTUwMzg5MThjMmEyZjJhZWFlNTAzNjZmNDIzN2Y5MmM&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MnBjM2RicWI3bDBpcnY2bTFvaHRkdWplbmggcmlja0BtYXZyaXgub25l&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTg4OTlmOWFiNTUwMzg5MThjMmEyZjJhZWFlNTAzNjZmNDIzN2Y5MmM&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MnBjM2RicWI3bDBpcnY2bTFvaHRkdWplbmggcmlja0BtYXZyaXgub25l&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTg4OTlmOWFiNTUwMzg5MThjMmEyZjJhZWFlNTAzNjZmNDIzN2Y5MmM&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','This event has been updated\r\nChanged: time\r\n\r\n\r\nMavrix <> Strategic Logix\r\nThursday May 29, 2025 ⋅ 3pm – 4pm\r\nEastern Time - New York\r\n\r\nJoin with Google Meet\r\nhttps://meet.google.com/qjo-apft-gqc?hs=224\r\n\r\n\r\n	\r\nJoin by phone\r\n(US) +1 786-540-4809\r\nPIN: 511888218\r\n\r\nMore phone numbers\r\nhttps://tel.meet/qjo-apft-gqc?pin=4400090898728&hs=0\r\n\r\n\r\nPlease add guests or modify if at all necessary. Additional openings would  \r\nbe Wednesday 1200, Thursday 1000, Thursday 1200 or potentially Friday 0900\r\n\r\nOrganizer\r\nAndrew Valkenburg\r\navalkenburg@strategic-logix.com\r\n\r\nGuests\r\nAndrew Valkenburg - organizer\r\nrick@mavrix.one\r\nJeremy Schnipke\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=MnBjM2RicWI3bDBpcnY2bTFvaHRkdWplbmggcmlja0BtYXZyaXgub25l&tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTg4OTlmOWFiNTUwMzg5MThjMmEyZjJhZWFlNTAzNjZmNDIzN2Y5MmM&ctz=America%2FNew_York&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=MnBjM2RicWI3bDBpcnY2bTFvaHRkdWplbmggcmlja0BtYXZyaXgub25l&tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTg4OTlmOWFiNTUwMzg5MThjMmEyZjJhZWFlNTAzNjZmNDIzN2Y5MmM&ctz=America%2FNew_York&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-05-27 17:13:22','2025-12-09 19:06:52','2025-12-09 19:06:52','2025-12-09 19:06:52',NULL,NULL,NULL),
(313,4,' <BN2P110MB107395C8C1B7017B11FA1CF1B867A@BN2P110MB1073.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'RE: [EXTERNAL] Fwd: Technology CV and elevator pitch','andy.yakulis@tfvector-gcc.com','Andy Yakulis','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Segoe UI\";\r\n	panose-1:2 11 5 2 4 2 4 2 2 3;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle20\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Thanks Rick! <o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">My team will reach out to him and will let you know. Email for Brian yet?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#776B6C\">Andy Yakulis,\r\n</span></b><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#9A000A\">CEO</span></b><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#776B6C\"><o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\"><u><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:blue\"><a href=\"mailto:andy@tfvector.com\"><span style=\"color:#467886\">andy@tfvector.com</span></a></span></u><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><a href=\"https://www.tfvector.com/\" target=\"_blank\"><span style=\"color:#1155CC;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"146\" height=\"40\" style=\"width:1.5208in;height:.4166in\" id=\"_x0000_i1026\" src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXf182lfUiAGtgaXn5ngxbOMNf_n6J7f59sQHoPYtvAssPxqbAoHjVojrRZ4MuOAvPXJpc5Hrzz-j_5pVWH6pThhcGvhq2WwFdgOOz1on8K7lyUHW7-QMYp0ItCCKa5UnuzRh7jieQ?key=vPdQtPp2VQerhj_rzhzCgXlz\"></span></a><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Tuesday, May 27, 2025 6:15 PM<br>\r\n<b>To:</b> Andy Yakulis &lt;andy.yakulis@tfvector-gcc.com&gt;<br>\r\n<b>Subject:</b> [EXTERNAL] Fwd: Technology CV and elevator pitch<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\" width=\"100%\" style=\"width:100.0%\">\r\n<tbody>\r\n<tr>\r\n<td width=\"0\" style=\"width:.3pt;background:#A6A6A6;padding:5.25pt 1.5pt 5.25pt 1.5pt\">\r\n</td>\r\n<td width=\"100%\" style=\"width:100.0%;background:#EAEAEA;padding:5.25pt 3.75pt 5.25pt 11.25pt;aspect-ratio: revert !important;background:revert !important;block-size: revert !important;border:revert !important;bottom: revert !important;color:revert !important;color-scheme: revert !important;content-visibility: revert !important;cursor:revert !important;direction:revert !important;display:revert !important;font-size:revert !important;height:revert !important;hyphens: revert !important;letter-spacing:revert !important;line-height:revert !important;margin:revert !important;opacity: revert !important;order: revert !important;outline: revert !important;overflow:revert !important;padding:revert !important;position:revert !important;resize: revert !important;rotate: revert !important;scale: revert !important;tab-size: revert !important;table-layout:revert !important;text-align:revert !important;text-indent:revert !important;text-orientation: revert !important;text-overflow: revert !important;text-shadow:revert !important;text-transform:revert !important;text-wrap: revert !important;top:revert !important;transition: revert !important;user-select: revert !important;vertical-align:revert !important;visibility:revert !important;white-space:revert !important;width:revert !important;word-break:revert !important;word-spacing:revert !important;writing-mode:revert !important;zoom: revert !important\">\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-element:frame;mso-element-frame-hspace:2.25pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:column;mso-height-rule:exactly\">\r\n<span style=\"font-size:9.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#212121\">You don\'t often get email from\r\n<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>. <a href=\"https://aka.ms/LearnAboutSenderIdentification\">\r\nLearn why this is important</a> <o:p></o:p></span></p>\r\n</div>\r\n</td>\r\n<td width=\"75\" style=\"width:56.25pt;background:#EAEAEA;padding:5.25pt 3.75pt 5.25pt 3.75pt;aspect-ratio: revert !important;background:revert !important;block-size: revert !important;border:revert !important;bottom: revert !important;color:revert !important;color-scheme: revert !important;content-visibility: revert !important;cursor:revert !important;direction:revert !important;display:revert !important;font-size:revert !important;height:revert !important;hyphens: revert !important;letter-spacing:revert !important;line-height:revert !important;margin:revert !important;opacity: revert !important;order: revert !important;outline: revert !important;overflow:revert !important;padding:revert !important;position:revert !important;resize: revert !important;rotate: revert !important;scale: revert !important;tab-size: revert !important;table-layout:revert !important;text-align:revert !important;text-indent:revert !important;text-orientation: revert !important;text-overflow: revert !important;text-shadow:revert !important;text-transform:revert !important;text-wrap: revert !important;top:revert !important;transition: revert !important;user-select: revert !important;vertical-align:revert !important;visibility:revert !important;white-space:revert !important;width:revert !important;word-break:revert !important;word-spacing:revert !important;writing-mode:revert !important;zoom: revert !important;align: left !important\">\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<div>\r\n<div style=\"border:solid #9C6500 1.0pt;padding:2.0pt 2.0pt 2.0pt 2.0pt\" id=\"footer\">\r\n<p class=\"MsoNormal\" style=\"background:#FFEB9C\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender\r\n and know the content is safe.</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks again for today Andy!<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">See below for John K.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Please keep me in the loop on this…<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Talk soon,<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" id=\"_x0000_i1025\" src=\"file://Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"airmailon\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">On May 23, 2025 at 9:46:36 PM, John Kennerly (<a href=\"mailto:kennerly.john@yahoo.com\">kennerly.john@yahoo.com</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick,<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">As discussed - Attached are a technology focused CV (as opposed to tactical skill, etc.) and an AI\'s consolidated version of what the CV says into a succinct paragraph.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">I\'ll be available whenever.\r\n<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Also, different type of creds:&nbsp;\r\n<a href=\"https://tacflite.com/Media/Hf1ML.mp4\" target=\"_blank\">https://tacflite.com/Media/Hf1ML.mp4</a> from a rudimentary website build, Footage from circa 2017.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">The webpage is still work in progress, but if you wait for it to load the video gives some idea of my actual FPV abilities.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Thanks, <o:p>\r\n</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">John<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n</body>\r\n</html>\r\n','Thanks Rick!\r\n\r\nMy team will reach out to him and will let you know. Email for Brian yet?\r\n\r\nAndy Yakulis, CEO\r\nandy@tfvector.com<mailto:andy@tfvector.com>\r\n[https://lh7-rt.googleusercontent.com/docsz/AD_4nXf182lfUiAGtgaXn5ngxbOMNf_n6J7f59sQHoPYtvAssPxqbAoHjVojrRZ4MuOAvPXJpc5Hrzz-j_5pVWH6pThhcGvhq2WwFdgOOz1on8K7lyUHW7-QMYp0ItCCKa5UnuzRh7jieQ?key=vPdQtPp2VQerhj_rzhzCgXlz]<https://www.tfvector.com/>\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, May 27, 2025 6:15 PM\r\nTo: Andy Yakulis <andy.yakulis@tfvector-gcc.com>\r\nSubject: [EXTERNAL] Fwd: Technology CV and elevator pitch\r\n\r\nYou don\'t often get email from rick@mavrix.one<mailto:rick@mavrix.one>. Learn why this is important<https://aka.ms/LearnAboutSenderIdentification>\r\nCAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.\r\nThanks again for today Andy!\r\nSee below for John K.\r\nPlease keep me in the loop on this…\r\nTalk soon,\r\nRick\r\n\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 23, 2025 at 9:46:36 PM, John Kennerly (kennerly.john@yahoo.com<mailto:kennerly.john@yahoo.com>) wrote:\r\nRick,\r\n\r\nAs discussed - Attached are a technology focused CV (as opposed to tactical skill, etc.) and an AI\'s consolidated version of what the CV says into a succinct paragraph.\r\n\r\nI\'ll be available whenever.\r\n\r\nAlso, different type of creds:  https://tacflite.com/Media/Hf1ML.mp4 from a rudimentary website build, Footage from circa 2017.\r\nThe webpage is still work in progress, but if you wait for it to load the video gives some idea of my actual FPV abilities.\r\n\r\n\r\nThanks,\r\n\r\nJohn\r\n\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n',0,0,0,0,0,0,'2025-05-28 00:20:13','2025-12-09 19:06:53','2025-12-09 19:06:53','2025-12-09 19:06:53',NULL,NULL,NULL),
(314,4,' <BN2P110MB107345D6B3B91B2FCBA664DCB867A@BN2P110MB1073.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'RE: [EXTERNAL] Fwd: Technology CV and elevator pitch','andy.yakulis@tfvector-gcc.com','Andy Yakulis','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Segoe UI\";\r\n	panose-1:2 11 5 2 4 2 4 2 2 3;}\r\n@font-face\r\n	{font-family:wf_segoe-ui_normal;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.gmailquote, li.gmailquote, div.gmailquote\r\n	{mso-style-name:gmail_quote;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmailon;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle21\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">No joy… can you resend?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#776B6C\">Andy Yakulis,\r\n</span></b><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#9A000A\">CEO</span></b><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#776B6C\"><o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\"><u><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:blue\"><a href=\"mailto:andy@tfvector.com\"><span style=\"color:#467886\">andy@tfvector.com</span></a></span></u><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><a href=\"https://www.tfvector.com/\" target=\"_blank\"><span style=\"color:#1155CC;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"146\" height=\"40\" style=\"width:1.5208in;height:.4166in\" id=\"_x0000_i1028\" src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXf182lfUiAGtgaXn5ngxbOMNf_n6J7f59sQHoPYtvAssPxqbAoHjVojrRZ4MuOAvPXJpc5Hrzz-j_5pVWH6pThhcGvhq2WwFdgOOz1on8K7lyUHW7-QMYp0ItCCKa5UnuzRh7jieQ?key=vPdQtPp2VQerhj_rzhzCgXlz\"></span></a><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Tuesday, May 27, 2025 6:29 PM<br>\r\n<b>To:</b> Andy Yakulis &lt;andy.yakulis@tfvector-gcc.com&gt;<br>\r\n<b>Subject:</b> RE: [EXTERNAL] Fwd: Technology CV and elevator pitch<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\" width=\"100%\" style=\"width:100.0%\">\r\n<tbody>\r\n<tr>\r\n<td width=\"0\" style=\"width:.3pt;background:#A6A6A6;padding:5.25pt 1.5pt 5.25pt 1.5pt\">\r\n</td>\r\n<td width=\"100%\" style=\"width:100.0%;background:#EAEAEA;padding:5.25pt 3.75pt 5.25pt 11.25pt;aspect-ratio: revert !important;background:revert !important;block-size: revert !important;border:revert !important;bottom: revert !important;color:revert !important;color-scheme: revert !important;content-visibility: revert !important;cursor:revert !important;direction:revert !important;display:revert !important;font-size:revert !important;height:revert !important;hyphens: revert !important;letter-spacing:revert !important;line-height:revert !important;margin:revert !important;opacity: revert !important;order: revert !important;outline: revert !important;overflow:revert !important;padding:revert !important;position:revert !important;resize: revert !important;rotate: revert !important;scale: revert !important;tab-size: revert !important;table-layout:revert !important;text-align:revert !important;text-indent:revert !important;text-orientation: revert !important;text-overflow: revert !important;text-shadow:revert !important;text-transform:revert !important;text-wrap: revert !important;top:revert !important;transition: revert !important;user-select: revert !important;vertical-align:revert !important;visibility:revert !important;white-space:revert !important;width:revert !important;word-break:revert !important;word-spacing:revert !important;writing-mode:revert !important;zoom: revert !important\">\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-element:frame;mso-element-frame-hspace:2.25pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:column;mso-height-rule:exactly\">\r\n<span style=\"font-size:9.0pt;font-family:wf_segoe-ui_normal;color:#212121\">You don\'t often get email from\r\n<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>. <a href=\"https://aka.ms/LearnAboutSenderIdentification\">\r\nLearn why this is important</a> <o:p></o:p></span></p>\r\n</div>\r\n</td>\r\n<td width=\"75\" style=\"width:56.25pt;background:#EAEAEA;padding:5.25pt 3.75pt 5.25pt 3.75pt;aspect-ratio: revert !important;background:revert !important;block-size: revert !important;border:revert !important;bottom: revert !important;color:revert !important;color-scheme: revert !important;content-visibility: revert !important;cursor:revert !important;direction:revert !important;display:revert !important;font-size:revert !important;height:revert !important;hyphens: revert !important;letter-spacing:revert !important;line-height:revert !important;margin:revert !important;opacity: revert !important;order: revert !important;outline: revert !important;overflow:revert !important;padding:revert !important;position:revert !important;resize: revert !important;rotate: revert !important;scale: revert !important;tab-size: revert !important;table-layout:revert !important;text-align:revert !important;text-indent:revert !important;text-orientation: revert !important;text-overflow: revert !important;text-shadow:revert !important;text-transform:revert !important;text-wrap: revert !important;top:revert !important;transition: revert !important;user-select: revert !important;vertical-align:revert !important;visibility:revert !important;white-space:revert !important;width:revert !important;word-break:revert !important;word-spacing:revert !important;writing-mode:revert !important;zoom: revert !important;align: left !important\">\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">Sent in second email… confirm receipt. &nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\">Rick Mislan, PhD<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><img border=\"0\" id=\"_x0000_i1027\" src=\"file://Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"gmailquote\"><span style=\"color:black\">On May 27, 2025 at 8:20:13</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"color:black\">PM, Andy Yakulis (<a href=\"mailto:andy.yakulis@tfvector-gcc.com\">andy.yakulis@tfvector-gcc.com</a>)\r\n wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Thanks Rick!\r\n<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">My team will reach out to him and will let you know. Email for Brian yet?<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#776B6C\">Andy Yakulis,\r\n</span></b><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#9A000A\">CEO</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><u><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:blue\"><a href=\"mailto:andy@tfvector.com\"><span style=\"color:#467886\">andy@tfvector.com</span></a></span></u><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://www.tfvector.com/\" target=\"_blank\"><span style=\"color:#1155CC;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"146\" height=\"40\" style=\"width:1.5208in;height:.4166in\" id=\"_x0000_i1026\" src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXf182lfUiAGtgaXn5ngxbOMNf_n6J7f59sQHoPYtvAssPxqbAoHjVojrRZ4MuOAvPXJpc5Hrzz-j_5pVWH6pThhcGvhq2WwFdgOOz1on8K7lyUHW7-QMYp0ItCCKa5UnuzRh7jieQ?key=vPdQtPp2VQerhj_rzhzCgXlz\"></span></a><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Tuesday, May 27, 2025 6:15 PM<br>\r\n<b>To:</b> Andy Yakulis &lt;<a href=\"mailto:andy.yakulis@tfvector-gcc.com\">andy.yakulis@tfvector-gcc.com</a>&gt;<br>\r\n<b>Subject:</b> [EXTERNAL] Fwd: Technology CV and elevator pitch</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\" width=\"100%\" style=\"width:100.0%\">\r\n<tbody>\r\n<tr>\r\n<td width=\"0\" style=\"width:.3pt;background:#A6A6A6;padding:5.25pt 1.5pt 5.25pt 1.5pt\">\r\n</td>\r\n<td width=\"100%\" style=\"width:100.0%;background:#EAEAEA;padding:5.25pt 3.75pt 5.25pt 11.25pt;aspect-ratio: revert !important;background:revert !important;block-size: revert !important;border:revert !important;bottom: revert !important;color:revert !important;color-scheme: revert !important;content-visibility: revert !important;cursor:revert !important;direction:revert !important;display:revert !important;font-size:revert !important;height:revert !important;hyphens: revert !important;letter-spacing:revert !important;line-height:revert !important;margin:revert !important;opacity: revert !important;order: revert !important;outline: revert !important;overflow:revert !important;padding:revert !important;position:revert !important;resize: revert !important;rotate: revert !important;scale: revert !important;tab-size: revert !important;table-layout:revert !important;text-align:revert !important;text-indent:revert !important;text-orientation: revert !important;text-overflow: revert !important;text-shadow:revert !important;text-transform:revert !important;text-wrap: revert !important;top:revert !important;transition: revert !important;user-select: revert !important;vertical-align:revert !important;visibility:revert !important;white-space:revert !important;width:revert !important;word-break:revert !important;word-spacing:revert !important;writing-mode:revert !important;zoom: revert !important\">\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;mso-element:frame;mso-element-frame-hspace:2.25pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:column;mso-height-rule:exactly\">\r\n<span style=\"font-size:9.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#212121\">You don\'t often get email from\r\n<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>. <a href=\"https://aka.ms/LearnAboutSenderIdentification\">\r\nLearn why this is important</a> </span><o:p></o:p></p>\r\n</div>\r\n</td>\r\n<td width=\"75\" style=\"width:56.25pt;background:#EAEAEA;padding:5.25pt 3.75pt 5.25pt 3.75pt;aspect-ratio: revert !important;background:revert !important;block-size: revert !important;border:revert !important;bottom: revert !important;color:revert !important;color-scheme: revert !important;content-visibility: revert !important;cursor:revert !important;direction:revert !important;display:revert !important;font-size:revert !important;height:revert !important;hyphens: revert !important;letter-spacing:revert !important;line-height:revert !important;margin:revert !important;opacity: revert !important;order: revert !important;outline: revert !important;overflow:revert !important;padding:revert !important;position:revert !important;resize: revert !important;rotate: revert !important;scale: revert !important;tab-size: revert !important;table-layout:revert !important;text-align:revert !important;text-indent:revert !important;text-orientation: revert !important;text-overflow: revert !important;text-shadow:revert !important;text-transform:revert !important;text-wrap: revert !important;top:revert !important;transition: revert !important;user-select: revert !important;vertical-align:revert !important;visibility:revert !important;white-space:revert !important;width:revert !important;word-break:revert !important;word-spacing:revert !important;writing-mode:revert !important;zoom: revert !important;align: left !important\">\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<div>\r\n<div style=\"border:solid #9C6500 1.0pt;padding:2.0pt 2.0pt 2.0pt 2.0pt\" id=\"footer\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;background:#FFEB9C\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks again for today Andy!</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">See below for John K.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Please keep me in the loop on this…</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Talk soon,</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a></span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" id=\"_x0000_i1025\" src=\"file://Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"airmailon\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">On May 23, 2025 at 9:46:36 PM, John Kennerly (<a href=\"mailto:kennerly.john@yahoo.com\">kennerly.john@yahoo.com</a>) wrote:</span><o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick,</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">As discussed - Attached are a technology focused CV (as opposed to tactical skill, etc.) and an AI\'s consolidated version of what\r\n the CV says into a succinct paragraph.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">I\'ll be available whenever.\r\n</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Also, different type of creds:&nbsp;\r\n<a href=\"https://tacflite.com/Media/Hf1ML.mp4\" target=\"_blank\">https://tacflite.com/Media/Hf1ML.mp4</a> from a rudimentary website build, Footage from circa 2017.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">The webpage is still work in progress, but if you wait for it to load the video gives some idea of my actual FPV abilities.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Thanks,\r\n</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">John</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><br>\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n<br>\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n</body>\r\n</html>\r\n','No joy… can you resend?\r\n\r\nAndy Yakulis, CEO\r\nandy@tfvector.com<mailto:andy@tfvector.com>\r\n[https://lh7-rt.googleusercontent.com/docsz/AD_4nXf182lfUiAGtgaXn5ngxbOMNf_n6J7f59sQHoPYtvAssPxqbAoHjVojrRZ4MuOAvPXJpc5Hrzz-j_5pVWH6pThhcGvhq2WwFdgOOz1on8K7lyUHW7-QMYp0ItCCKa5UnuzRh7jieQ?key=vPdQtPp2VQerhj_rzhzCgXlz]<https://www.tfvector.com/>\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, May 27, 2025 6:29 PM\r\nTo: Andy Yakulis <andy.yakulis@tfvector-gcc.com>\r\nSubject: RE: [EXTERNAL] Fwd: Technology CV and elevator pitch\r\n\r\nYou don\'t often get email from rick@mavrix.one<mailto:rick@mavrix.one>. Learn why this is important<https://aka.ms/LearnAboutSenderIdentification>\r\nSent in second email… confirm receipt.\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\nOn May 27, 2025 at 8:20:13 PM, Andy Yakulis (andy.yakulis@tfvector-gcc.com<mailto:andy.yakulis@tfvector-gcc.com>) wrote:\r\nThanks Rick!\r\n\r\nMy team will reach out to him and will let you know. Email for Brian yet?\r\n\r\nAndy Yakulis, CEO\r\nandy@tfvector.com<mailto:andy@tfvector.com>\r\n[https://lh7-rt.googleusercontent.com/docsz/AD_4nXf182lfUiAGtgaXn5ngxbOMNf_n6J7f59sQHoPYtvAssPxqbAoHjVojrRZ4MuOAvPXJpc5Hrzz-j_5pVWH6pThhcGvhq2WwFdgOOz1on8K7lyUHW7-QMYp0ItCCKa5UnuzRh7jieQ?key=vPdQtPp2VQerhj_rzhzCgXlz]<https://www.tfvector.com/>\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Tuesday, May 27, 2025 6:15 PM\r\nTo: Andy Yakulis <andy.yakulis@tfvector-gcc.com<mailto:andy.yakulis@tfvector-gcc.com>>\r\nSubject: [EXTERNAL] Fwd: Technology CV and elevator pitch\r\n\r\nYou don\'t often get email from rick@mavrix.one<mailto:rick@mavrix.one>. Learn why this is important<https://aka.ms/LearnAboutSenderIdentification>\r\nCAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.\r\nThanks again for today Andy!\r\nSee below for John K.\r\nPlease keep me in the loop on this…\r\nTalk soon,\r\nRick\r\n\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 23, 2025 at 9:46:36 PM, John Kennerly (kennerly.john@yahoo.com<mailto:kennerly.john@yahoo.com>) wrote:\r\nRick,\r\n\r\nAs discussed - Attached are a technology focused CV (as opposed to tactical skill, etc.) and an AI\'s consolidated version of what the CV says into a succinct paragraph.\r\n\r\nI\'ll be available whenever.\r\n\r\nAlso, different type of creds:  https://tacflite.com/Media/Hf1ML.mp4 from a rudimentary website build, Footage from circa 2017.\r\nThe webpage is still work in progress, but if you wait for it to load the video gives some idea of my actual FPV abilities.\r\n\r\n\r\nThanks,\r\n\r\nJohn\r\n\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n',0,0,0,0,0,0,'2025-05-28 00:32:48','2025-12-09 19:06:53','2025-12-09 19:06:53','2025-12-09 19:06:53',NULL,NULL,NULL),
(315,4,' <BN2P110MB1073EF9714DA4FE9377F65A5B867A@BN2P110MB1073.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'RE: [EXTERNAL] Fwd: Technology CV and elevator pitch','andy.yakulis@tfvector-gcc.com','Andy Yakulis','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Segoe UI\";\r\n	panose-1:2 11 5 2 4 2 4 2 2 3;}\r\n@font-face\r\n	{font-family:wf_segoe-ui_normal;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.gmailquote, li.gmailquote, div.gmailquote\r\n	{mso-style-name:gmail_quote;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.gmailquote0, li.gmailquote0, div.gmailquote0\r\n	{mso-style-name:gmailquote;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmailon;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle21\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Great,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Thanks Rick.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Brain below is the deck and term sheet. Please let me know if there is any interest on your side in an investment:<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><a href=\"https://docsend.com/view/s/2pgdg2wtf9scvwr8\">Series A Deck</a><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><a href=\"mailto:brian@bayfrontcapitalllc.com\">Series A Term sheet</a><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#776B6C\">Andy Yakulis,\r\n</span></b><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#9A000A\">CEO</span></b><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#776B6C\"><o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\"><a href=\"mailto:andy@tfvector.com\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#467886\">andy@tfvector.com</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><a href=\"https://www.tfvector.com/\" target=\"_blank\"><span style=\"color:#1155CC;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"146\" height=\"40\" style=\"width:1.5208in;height:.4166in\" id=\"_x0000_i1030\" src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXf182lfUiAGtgaXn5ngxbOMNf_n6J7f59sQHoPYtvAssPxqbAoHjVojrRZ4MuOAvPXJpc5Hrzz-j_5pVWH6pThhcGvhq2WwFdgOOz1on8K7lyUHW7-QMYp0ItCCKa5UnuzRh7jieQ?key=vPdQtPp2VQerhj_rzhzCgXlz\"></span></a><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Tuesday, May 27, 2025 7:19 PM<br>\r\n<b>To:</b> Andy Yakulis &lt;andy.yakulis@tfvector-gcc.com&gt;; Brian Stufflebean &lt;brian@bayfrontcapitalllc.com&gt;<br>\r\n<b>Subject:</b> RE: [EXTERNAL] Fwd: Technology CV and elevator pitch<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">Address above.&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\">Rick Mislan, PhD<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><img border=\"0\" id=\"_x0000_i1029\" src=\"file://Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"gmailquote\"><span style=\"color:black\">On May 27, 2025 at 8:32:48</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"color:black\">PM, Andy Yakulis (</span><a href=\"mailto:andy.yakulis@tfvector-gcc.com\">andy.yakulis@tfvector-gcc.com</a><span style=\"color:black\">)\r\n wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">No joy… can you resend?<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#776B6C\">Andy Yakulis,\r\n</span></b><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#9A000A\">CEO</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"mailto:andy@tfvector.com\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#467886\">andy@tfvector.com</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://www.tfvector.com/\" target=\"_blank\"><span style=\"color:#1155CC;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"146\" height=\"40\" style=\"width:1.5208in;height:.4166in\" id=\"_x0000_i1028\" src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXf182lfUiAGtgaXn5ngxbOMNf_n6J7f59sQHoPYtvAssPxqbAoHjVojrRZ4MuOAvPXJpc5Hrzz-j_5pVWH6pThhcGvhq2WwFdgOOz1on8K7lyUHW7-QMYp0ItCCKa5UnuzRh7jieQ?key=vPdQtPp2VQerhj_rzhzCgXlz\"></span></a><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;</span><a href=\"mailto:rick@mavrix.one\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">rick@mavrix.one</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;\r\n<br>\r\n<b>Sent:</b> Tuesday, May 27, 2025 6:29 PM<br>\r\n<b>To:</b> Andy Yakulis &lt;</span><a href=\"mailto:andy.yakulis@tfvector-gcc.com\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">andy.yakulis@tfvector-gcc.com</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;<br>\r\n<b>Subject:</b> RE: [EXTERNAL] Fwd: Technology CV and elevator pitch</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\" width=\"100%\" style=\"width:100.0%\">\r\n<tbody>\r\n<tr>\r\n<td width=\"0\" style=\"width:.3pt;background:#A6A6A6;padding:5.25pt 1.5pt 5.25pt 1.5pt\">\r\n</td>\r\n<td width=\"100%\" style=\"width:100.0%;background:#EAEAEA;padding:5.25pt 3.75pt 5.25pt 11.25pt;aspect-ratio: revert !important;background:revert !important;block-size: revert !important;border:revert !important;bottom: revert !important;color:revert !important;color-scheme: revert !important;content-visibility: revert !important;cursor:revert !important;direction:revert !important;display:revert !important;font-size:revert !important;height:revert !important;hyphens: revert !important;letter-spacing:revert !important;line-height:revert !important;margin:revert !important;opacity: revert !important;order: revert !important;outline: revert !important;overflow:revert !important;padding:revert !important;position:revert !important;resize: revert !important;rotate: revert !important;scale: revert !important;tab-size: revert !important;table-layout:revert !important;text-align:revert !important;text-indent:revert !important;text-orientation: revert !important;text-overflow: revert !important;text-shadow:revert !important;text-transform:revert !important;text-wrap: revert !important;top:revert !important;transition: revert !important;user-select: revert !important;vertical-align:revert !important;visibility:revert !important;white-space:revert !important;width:revert !important;word-break:revert !important;word-spacing:revert !important;writing-mode:revert !important;zoom: revert !important\">\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;mso-element:frame;mso-element-frame-hspace:2.25pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:column;mso-height-rule:exactly\">\r\n<span style=\"font-size:9.0pt;font-family:wf_segoe-ui_normal;color:#212121\">You don\'t often get email from\r\n</span><span style=\"color:black\"><a href=\"mailto:rick@mavrix.one\"><span style=\"font-size:9.0pt;font-family:wf_segoe-ui_normal\">rick@mavrix.one</span></a></span><span style=\"font-size:9.0pt;font-family:wf_segoe-ui_normal;color:#212121\">.\r\n</span><span style=\"color:black\"><a href=\"https://aka.ms/LearnAboutSenderIdentification\"><span style=\"font-size:9.0pt;font-family:wf_segoe-ui_normal\">Learn why this is important</span></a></span><span style=\"font-size:9.0pt;font-family:wf_segoe-ui_normal;color:#212121\">\r\n</span><o:p></o:p></p>\r\n</div>\r\n</td>\r\n<td width=\"75\" style=\"width:56.25pt;background:#EAEAEA;padding:5.25pt 3.75pt 5.25pt 3.75pt;aspect-ratio: revert !important;background:revert !important;block-size: revert !important;border:revert !important;bottom: revert !important;color:revert !important;color-scheme: revert !important;content-visibility: revert !important;cursor:revert !important;direction:revert !important;display:revert !important;font-size:revert !important;height:revert !important;hyphens: revert !important;letter-spacing:revert !important;line-height:revert !important;margin:revert !important;opacity: revert !important;order: revert !important;outline: revert !important;overflow:revert !important;padding:revert !important;position:revert !important;resize: revert !important;rotate: revert !important;scale: revert !important;tab-size: revert !important;table-layout:revert !important;text-align:revert !important;text-indent:revert !important;text-orientation: revert !important;text-overflow: revert !important;text-shadow:revert !important;text-transform:revert !important;text-wrap: revert !important;top:revert !important;transition: revert !important;user-select: revert !important;vertical-align:revert !important;visibility:revert !important;white-space:revert !important;width:revert !important;word-break:revert !important;word-spacing:revert !important;writing-mode:revert !important;zoom: revert !important;align: left !important\">\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:12.0pt\">Sent in second email… confirm receipt. &nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Rick Mislan, PhD<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><img border=\"0\" id=\"_x0000_i1027\" src=\"file://Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"gmailquote0\"><span style=\"color:black\">On May 27, 2025 at 8:20:13</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"color:black\">PM, Andy Yakulis (</span><a href=\"mailto:andy.yakulis@tfvector-gcc.com\">andy.yakulis@tfvector-gcc.com</a><span style=\"color:black\">)\r\n wrote:</span><o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Thanks Rick!\r\n<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">My team will reach out to him and will let you know. Email for Brian yet?<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#776B6C\">Andy Yakulis,\r\n</span></b><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#9A000A\">CEO</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"mailto:andy@tfvector.com\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#467886\">andy@tfvector.com</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://www.tfvector.com/\" target=\"_blank\"><span style=\"color:#1155CC;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"146\" height=\"40\" style=\"width:1.5208in;height:.4166in\" id=\"_x0000_i1026\" src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXf182lfUiAGtgaXn5ngxbOMNf_n6J7f59sQHoPYtvAssPxqbAoHjVojrRZ4MuOAvPXJpc5Hrzz-j_5pVWH6pThhcGvhq2WwFdgOOz1on8K7lyUHW7-QMYp0ItCCKa5UnuzRh7jieQ?key=vPdQtPp2VQerhj_rzhzCgXlz\"></span></a><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;</span><a href=\"mailto:rick@mavrix.one\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">rick@mavrix.one</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;\r\n<br>\r\n<b>Sent:</b> Tuesday, May 27, 2025 6:15 PM<br>\r\n<b>To:</b> Andy Yakulis &lt;</span><a href=\"mailto:andy.yakulis@tfvector-gcc.com\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">andy.yakulis@tfvector-gcc.com</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;<br>\r\n<b>Subject:</b> [EXTERNAL] Fwd: Technology CV and elevator pitch</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\" width=\"100%\" style=\"width:100.0%\">\r\n<tbody>\r\n<tr>\r\n<td width=\"0\" style=\"width:.3pt;background:#A6A6A6;padding:5.25pt 1.5pt 5.25pt 1.5pt\">\r\n</td>\r\n<td width=\"100%\" style=\"width:100.0%;background:#EAEAEA;padding:5.25pt 3.75pt 5.25pt 11.25pt;aspect-ratio: revert !important;background:revert !important;block-size: revert !important;border:revert !important;bottom: revert !important;color:revert !important;color-scheme: revert !important;content-visibility: revert !important;cursor:revert !important;direction:revert !important;display:revert !important;font-size:revert !important;height:revert !important;hyphens: revert !important;letter-spacing:revert !important;line-height:revert !important;margin:revert !important;opacity: revert !important;order: revert !important;outline: revert !important;overflow:revert !important;padding:revert !important;position:revert !important;resize: revert !important;rotate: revert !important;scale: revert !important;tab-size: revert !important;table-layout:revert !important;text-align:revert !important;text-indent:revert !important;text-orientation: revert !important;text-overflow: revert !important;text-shadow:revert !important;text-transform:revert !important;text-wrap: revert !important;top:revert !important;transition: revert !important;user-select: revert !important;vertical-align:revert !important;visibility:revert !important;white-space:revert !important;width:revert !important;word-break:revert !important;word-spacing:revert !important;writing-mode:revert !important;zoom: revert !important\">\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;mso-element:frame;mso-element-frame-hspace:2.25pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:column;mso-height-rule:exactly\">\r\n<span style=\"font-size:9.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#212121\">You don\'t often get email from\r\n</span><span style=\"color:black\"><a href=\"mailto:rick@mavrix.one\"><span style=\"font-size:9.0pt;font-family:&quot;Segoe UI&quot;,sans-serif\">rick@mavrix.one</span></a></span><span style=\"font-size:9.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#212121\">.\r\n</span><span style=\"color:black\"><a href=\"https://aka.ms/LearnAboutSenderIdentification\"><span style=\"font-size:9.0pt;font-family:&quot;Segoe UI&quot;,sans-serif\">Learn why this is important</span></a></span><span style=\"font-size:9.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#212121\">\r\n</span><o:p></o:p></p>\r\n</div>\r\n</td>\r\n<td width=\"75\" style=\"width:56.25pt;background:#EAEAEA;padding:5.25pt 3.75pt 5.25pt 3.75pt;aspect-ratio: revert !important;background:revert !important;block-size: revert !important;border:revert !important;bottom: revert !important;color:revert !important;color-scheme: revert !important;content-visibility: revert !important;cursor:revert !important;direction:revert !important;display:revert !important;font-size:revert !important;height:revert !important;hyphens: revert !important;letter-spacing:revert !important;line-height:revert !important;margin:revert !important;opacity: revert !important;order: revert !important;outline: revert !important;overflow:revert !important;padding:revert !important;position:revert !important;resize: revert !important;rotate: revert !important;scale: revert !important;tab-size: revert !important;table-layout:revert !important;text-align:revert !important;text-indent:revert !important;text-orientation: revert !important;text-overflow: revert !important;text-shadow:revert !important;text-transform:revert !important;text-wrap: revert !important;top:revert !important;transition: revert !important;user-select: revert !important;vertical-align:revert !important;visibility:revert !important;white-space:revert !important;width:revert !important;word-break:revert !important;word-spacing:revert !important;writing-mode:revert !important;zoom: revert !important;align: left !important\">\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<div>\r\n<div style=\"border:solid #9C6500 1.0pt;padding:2.0pt 2.0pt 2.0pt 2.0pt\" id=\"footer\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;background:#FFEB9C\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks again for today Andy!</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">See below for John K.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Please keep me in the loop on this…</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Talk soon,</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">https://mavrix.one</span></a><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" id=\"_x0000_i1025\" src=\"file://Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"airmailon\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">On May 23, 2025 at 9:46:36 PM, John Kennerly (</span><a href=\"mailto:kennerly.john@yahoo.com\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">kennerly.john@yahoo.com</span></a><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">)\r\n wrote:</span><o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick,</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">As discussed - Attached are a technology focused CV (as opposed to tactical skill, etc.) and an AI\'s consolidated version of what\r\n the CV says into a succinct paragraph.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">I\'ll be available whenever.\r\n</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Also, different type of creds:&nbsp;\r\n</span><a href=\"https://tacflite.com/Media/Hf1ML.mp4\" target=\"_blank\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">https://tacflite.com/Media/Hf1ML.mp4</span></a><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"> from a rudimentary website build, Footage\r\n from circa 2017.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">The webpage is still work in progress, but if you wait for it to load the video gives some idea of my actual FPV abilities.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Thanks,\r\n</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">John</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><br>\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><br>\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n<br>\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n</body>\r\n</html>\r\n','Great,\r\n\r\nThanks Rick.\r\n\r\nBrain below is the deck and term sheet. Please let me know if there is any interest on your side in an investment:\r\n\r\nSeries A Deck<https://docsend.com/view/s/2pgdg2wtf9scvwr8>\r\nSeries A Term sheet<mailto:brian@bayfrontcapitalllc.com>\r\n\r\nAndy Yakulis, CEO\r\nandy@tfvector.com<mailto:andy@tfvector.com>\r\n[https://lh7-rt.googleusercontent.com/docsz/AD_4nXf182lfUiAGtgaXn5ngxbOMNf_n6J7f59sQHoPYtvAssPxqbAoHjVojrRZ4MuOAvPXJpc5Hrzz-j_5pVWH6pThhcGvhq2WwFdgOOz1on8K7lyUHW7-QMYp0ItCCKa5UnuzRh7jieQ?key=vPdQtPp2VQerhj_rzhzCgXlz]<https://www.tfvector.com/>\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, May 27, 2025 7:19 PM\r\nTo: Andy Yakulis <andy.yakulis@tfvector-gcc.com>; Brian Stufflebean <brian@bayfrontcapitalllc.com>\r\nSubject: RE: [EXTERNAL] Fwd: Technology CV and elevator pitch\r\n\r\nAddress above.\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\nOn May 27, 2025 at 8:32:48 PM, Andy Yakulis (andy.yakulis@tfvector-gcc.com<mailto:andy.yakulis@tfvector-gcc.com>) wrote:\r\nNo joy… can you resend?\r\n\r\nAndy Yakulis, CEO\r\nandy@tfvector.com<mailto:andy@tfvector.com>\r\n[https://lh7-rt.googleusercontent.com/docsz/AD_4nXf182lfUiAGtgaXn5ngxbOMNf_n6J7f59sQHoPYtvAssPxqbAoHjVojrRZ4MuOAvPXJpc5Hrzz-j_5pVWH6pThhcGvhq2WwFdgOOz1on8K7lyUHW7-QMYp0ItCCKa5UnuzRh7jieQ?key=vPdQtPp2VQerhj_rzhzCgXlz]<https://www.tfvector.com/>\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Tuesday, May 27, 2025 6:29 PM\r\nTo: Andy Yakulis <andy.yakulis@tfvector-gcc.com<mailto:andy.yakulis@tfvector-gcc.com>>\r\nSubject: RE: [EXTERNAL] Fwd: Technology CV and elevator pitch\r\n\r\nYou don\'t often get email from rick@mavrix.one<mailto:rick@mavrix.one>. Learn why this is important<https://aka.ms/LearnAboutSenderIdentification>\r\nSent in second email… confirm receipt.\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\nOn May 27, 2025 at 8:20:13 PM, Andy Yakulis (andy.yakulis@tfvector-gcc.com<mailto:andy.yakulis@tfvector-gcc.com>) wrote:\r\nThanks Rick!\r\n\r\nMy team will reach out to him and will let you know. Email for Brian yet?\r\n\r\nAndy Yakulis, CEO\r\nandy@tfvector.com<mailto:andy@tfvector.com>\r\n[https://lh7-rt.googleusercontent.com/docsz/AD_4nXf182lfUiAGtgaXn5ngxbOMNf_n6J7f59sQHoPYtvAssPxqbAoHjVojrRZ4MuOAvPXJpc5Hrzz-j_5pVWH6pThhcGvhq2WwFdgOOz1on8K7lyUHW7-QMYp0ItCCKa5UnuzRh7jieQ?key=vPdQtPp2VQerhj_rzhzCgXlz]<https://www.tfvector.com/>\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Tuesday, May 27, 2025 6:15 PM\r\nTo: Andy Yakulis <andy.yakulis@tfvector-gcc.com<mailto:andy.yakulis@tfvector-gcc.com>>\r\nSubject: [EXTERNAL] Fwd: Technology CV and elevator pitch\r\n\r\nYou don\'t often get email from rick@mavrix.one<mailto:rick@mavrix.one>. Learn why this is important<https://aka.ms/LearnAboutSenderIdentification>\r\nCAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.\r\nThanks again for today Andy!\r\nSee below for John K.\r\nPlease keep me in the loop on this…\r\nTalk soon,\r\nRick\r\n\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 23, 2025 at 9:46:36 PM, John Kennerly (kennerly.john@yahoo.com<mailto:kennerly.john@yahoo.com>) wrote:\r\nRick,\r\n\r\nAs discussed - Attached are a technology focused CV (as opposed to tactical skill, etc.) and an AI\'s consolidated version of what the CV says into a succinct paragraph.\r\n\r\nI\'ll be available whenever.\r\n\r\nAlso, different type of creds:  https://tacflite.com/Media/Hf1ML.mp4 from a rudimentary website build, Footage from circa 2017.\r\nThe webpage is still work in progress, but if you wait for it to load the video gives some idea of my actual FPV abilities.\r\n\r\n\r\nThanks,\r\n\r\nJohn\r\n\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n',0,0,0,0,0,0,'2025-05-28 01:23:48','2025-12-09 19:06:53','2025-12-09 19:06:53','2025-12-09 19:06:53',NULL,NULL,NULL),
(316,4,'<60EA54A5-CA5E-41C9-AFC2-33C94B4269AA@bayfrontcapitalllc.com>',NULL,NULL,'Re: Orqa call at 1130','brian@bayfrontcapitalllc.com','Brian Stufflebean','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body dir=\"auto\">Sorry Rick, going to be in a doctors appointment then. &nbsp;<br id=\"lineBreakAtBeginningOfSignature\"><div dir=\"ltr\"><div class=\"\"><span style=\"font-size: 17pt;\"><br></span></div><div class=\"\"><div class=\"\"><div><span class=\"\" style=\"background-color: rgba(255, 255, 255, 0);\">Best Regards,&nbsp;</span></div><div><span class=\"\" style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div><span class=\"\" style=\"background-color: rgba(255, 255, 255, 0);\">Brian C. Stufflebean, CEO<br class=\"\"><b class=\"\">Bayfront Capital, LLC</b><br class=\"\"><span class=\"\"><a href=\"tel:(941)545-4153\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"0/2\" style=\"text-decoration-color: rgba(128, 128, 128, 0.38);\">(941)545-4153</a>&nbsp;Cell</span></span></div><div><span style=\"background-color: rgba(255, 255, 255, 0);\"><span class=\"\"><a href=\"tel:(866)896-2423\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"0/3\" style=\"text-decoration-color: rgba(128, 128, 128, 0.38);\">(866)896-2423</a>&nbsp;Fax<br class=\"\"><a href=\"mailto:brian@bayfrontcapitalllc.com\" class=\"\">brian@bayfrontcapitalllc.com</a><br class=\"\"><a href=\"http://www.bayfrontcapitalllc.com/\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"link\" x-apple-data-detectors-result=\"0/5\" style=\"text-decoration-color: rgba(128, 128, 128, 0.38);\">www.bayfrontcapitalllc.com</a></span><br class=\"\">&nbsp; &nbsp; &nbsp;&nbsp;<br class=\"\"><br class=\"\"></span></div><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"Apple-interchange-newline\"><br></span><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"Apple-interchange-newline\"><br class=\"Apple-interchange-newline\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><b class=\"\">CONFIDENTIALITY NOTICE / NOTICE OF&nbsp;<u class=\"\">NOT A REGISTERED BROKER/DEALER:</u></b><span class=\"\">&nbsp;Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with&nbsp;FINRA. Nor does&nbsp;it provide tax or investment advice. &nbsp;Any references made to any transaction in any communication is being made as a business consultant. &nbsp; This is not a&nbsp;solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law.&nbsp;This communication&nbsp;is confidential and intended only for the intended&nbsp;recipient. &nbsp;If you are not the intended recipient, you&nbsp;may not copy, disclose, or distribute this message&nbsp;to anyone else; any such actions may be unlawful. If you have received this communication in error,&nbsp;please contact the sender of the message to inform him or her of the error.</span></span></div><div><span class=\"\"><br></span></div></div></div></div><div class=\"\"><span style=\"font-size: 17pt;\"><br></span></div><div class=\"\"><span style=\"font-size: 17pt;\">Sent from my iPhone</span></div></div><div dir=\"ltr\"><br><blockquote type=\"cite\">On May 27, 2025, at 9:57 PM, Rick &lt;rick@mavrix.one&gt; wrote:<br><br></blockquote></div><blockquote type=\"cite\"><div dir=\"ltr\">﻿I got the time wrong<div>Orqa is 1130a</div><div>If you can make it:&nbsp;</div><div><br>https://meet.google.com/mng-bynt-ocw</div><div><br></div><div>Thanks again!</div><div><div class=\"gmail_signature\">\r\n        <title></title>\r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div><div><img src=\"cid:Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height: 11px;\" data-unique-identifier=\"\"></div>\r\n     \r\n</div>\r\n\r\n</div></div></blockquote></body></html>','Sorry Rick, going to be in a doctors appointment then. &nbsp;Best Regards,&nbsp;Brian C. Stufflebean, CEOBayfront Capital, LLC(941)545-4153&nbsp;Cell(866)896-2423&nbsp;Faxbrian@bayfrontcapitalllc.comwww.bayfrontcapitalllc.com&nbsp; &nbsp; &nbsp;&nbsp;CONFIDENTIALITY NOTICE / NOTICE OF&nbsp;NOT A REGISTERED BROKER/DEALER:&nbsp;Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with&nbsp;FINRA. Nor does&nbsp;it provide tax or investment advice. &nbsp;Any references made to any transaction in any communication is being made as a business consultant. &nbsp; This is not a&nbsp;solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law.&nbsp;This communication&nbsp;is confidential and intended only for the intended&nbsp;recipient. &nbsp;If you are not the intended recipient, you&nbsp;may not copy, disclose, or distribute this message&nbsp;to anyone else; any such actions may be unlawful. If you have received this communication in error,&nbsp;please contact the sender of the message to inform him or her of the error.Sent from my iPhoneOn May 27, 2025, at 9:57 PM, Rick &lt;rick@mavrix.one&gt; wrote:﻿I got the time wrongOrqa is 1130aIf you can make it:&nbsp;https://meet.google.com/mng-bynt-ocwThanks again!\r\n        \r\n     \r\n    Rick Mislan, PhDhttps://mavrix.one\r\n     \r\n\r\n\r\n',0,0,0,0,0,0,'2025-05-28 02:18:05','2025-12-09 19:06:54','2025-12-09 19:06:54','2025-12-09 19:06:54',NULL,NULL,NULL),
(317,4,' <BN0P110MB151699A81B4C718DF9895226AD67A@BN0P110MB1516.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'Vector','seth.nason@tfvector-gcc.com','Seth Nason','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle17\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Hey Rick-<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Got your contact/resume from our CEO, Andy. Happy to set up a call, we&#8217;ve recently set up our HQ in SLC, is re-location an option?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">-seth<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#776B6C\">Seth Nason\r\n<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#9A000A\">Chief of Staff<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#776B6C\">(C) 808-927-5256<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\"><u><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:blue\"><a href=\"mailto:seth@tfvector.com\"><span style=\"color:blue\">seth@tfvector.com</span></a><o:p></o:p></span></u></p>\r\n<p class=\"MsoNormal\"><a href=\"https://www.tfvector.com/\" target=\"_blank\"><span style=\"color:#1155CC;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"146\" height=\"40\" style=\"width:1.525in;height:.4166in\" id=\"_x0000_i1025\" src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXf182lfUiAGtgaXn5ngxbOMNf_n6J7f59sQHoPYtvAssPxqbAoHjVojrRZ4MuOAvPXJpc5Hrzz-j_5pVWH6pThhcGvhq2WwFdgOOz1on8K7lyUHW7-QMYp0ItCCKa5UnuzRh7jieQ?key=vPdQtPp2VQerhj_rzhzCgXlz\"></span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<br>\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n</body>\r\n</html>','Hey Rick-\r\n\r\nGot your contact/resume from our CEO, Andy. Happy to set up a call, we\'ve recently set up our HQ in SLC, is re-location an option?\r\n\r\n-seth\r\n\r\nSeth Nason\r\nChief of Staff\r\n(C) 808-927-5256\r\nseth@tfvector.com<mailto:seth@tfvector.com>\r\n[https://lh7-rt.googleusercontent.com/docsz/AD_4nXf182lfUiAGtgaXn5ngxbOMNf_n6J7f59sQHoPYtvAssPxqbAoHjVojrRZ4MuOAvPXJpc5Hrzz-j_5pVWH6pThhcGvhq2WwFdgOOz1on8K7lyUHW7-QMYp0ItCCKa5UnuzRh7jieQ?key=vPdQtPp2VQerhj_rzhzCgXlz]<https://www.tfvector.com/>\r\n\r\n\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.',0,0,0,0,0,0,'2025-05-28 07:12:03','2025-12-09 19:06:54','2025-12-09 19:06:54','2025-12-09 19:06:54',NULL,NULL,NULL),
(318,4,'<E4405B34-21F8-44E7-A83B-8F70C2447788@impossible-objects.com>',NULL,NULL,'Re: Next steps?','shoover@impossible-objects.com','Steve Hoover','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body dir=\"auto\">Rick<div><br></div><div>Yes that works.</div><div><br></div><div>Please send a meeting incur with the call in details.</div><div><br></div><div>Steve<br id=\"lineBreakAtBeginningOfSignature\"><div dir=\"ltr\">Sent from my iPhone</div><div dir=\"ltr\"><br><blockquote type=\"cite\">On May 28, 2025, at 7:44 AM, Rick &lt;rick@mavrix.one&gt; wrote:<br><br></blockquote></div><blockquote type=\"cite\"><div dir=\"ltr\">﻿\r\n    <style>body { font-family: Helvetica, Arial; font-size: 13px; }</style><div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Hi Steve,</div><div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Thanks for you patience!</div><div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Does Friday at 130p still work?</div><div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\"><br></div><div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Rick</div> <br> <div id=\"bloop_sign_1748432650399962880\" class=\"bloop_sign\">\r\n        <title></title>\r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div><div><img src=\"cid:Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height: 11px;\" data-unique-identifier=\"\"></div>\r\n     \r\n</div> <br><p class=\"airmail_on\">On May 27, 2025 at 12:44:40 PM, Steve Hoover (<a href=\"mailto:shoover@impossible-objects.com\">shoover@impossible-objects.com</a>) wrote:</p> <blockquote type=\"cite\" class=\"clean_bq\"><span><div style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"><div></div><div>Any progress getting a time locked down?<div><br></div><div>thx</div><div><br></div><div>Steve</div><div><br id=\"lineBreakAtBeginningOfMessage\"><div><br><blockquote type=\"cite\"><div>On May 22, 2025, at 3:53 PM, Rick &lt;rick@mavrix.one&gt; wrote:</div><br class=\"Apple-interchange-newline\"><div><div id=\"bloop_customfont\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; margin: 0px;\">Thanks!</div><br style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><div id=\"bloop_sign_1747943612219172864\" class=\"bloop_sign\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div><div><img src=\"cid:Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height: 11px;\" data-unique-identifier=\"\"></div></div><br style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><p class=\"airmail_on\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">On May 22, 2025 at 3:51:28 PM, Steve Hoover (<a href=\"mailto:shoover@impossible-objects.com\">shoover@impossible-objects.com</a>) wrote:</p><blockquote type=\"cite\" class=\"clean_bq\" style=\"font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><span><div><div style=\"caret-color: rgb(0, 0, 0); font-family: UICTFontTextStyleBody; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><a href=\"http://airmail.calendar/2025-05-27%2012:00:00%20EDT\" style=\"overflow-wrap: break-word; word-break: break-word; hyphens: auto;\"><br class=\"Apple-interchange-newline\">Tuesday - noon to 3 pm</a></div><div style=\"caret-color: rgb(0, 0, 0); font-family: UICTFontTextStyleBody; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><a href=\"http://airmail.calendar/2025-05-28%2009:00:00%20EDT\" style=\"overflow-wrap: break-word; word-break: break-word; hyphens: auto;\">Wednesday -9-noon</a><span class=\"Apple-converted-space\">&nbsp;</span>and 1-5</div><div style=\"caret-color: rgb(0, 0, 0); font-family: UICTFontTextStyleBody; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><a href=\"http://airmail.calendar/2025-05-29%2009:00:00%20EDT\" style=\"overflow-wrap: break-word; word-break: break-word; hyphens: auto;\">Thursday 9-3 pm</a></div><div style=\"caret-color: rgb(0, 0, 0); font-family: UICTFontTextStyleBody; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><a href=\"http://airmail.calendar/2025-05-23%2009:00:00%20EDT\" style=\"overflow-wrap: break-word; word-break: break-word; hyphens: auto;\">Friday 9-noon</a>, 1:30- pm</div><div style=\"caret-color: rgb(0, 0, 0); font-family: UICTFontTextStyleBody; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><br></div><div style=\"caret-color: rgb(0, 0, 0); font-family: UICTFontTextStyleBody; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">All times east coast time zone.</div></div></span></blockquote></div></blockquote></div><br></div></div></div></span></blockquote>\r\n\r\n\r\n</div></blockquote></div></body></html>','RickYes that works.Please send a meeting incur with the call in details.SteveSent from my iPhoneOn May 28, 2025, at 7:44 AM, Rick &lt;rick@mavrix.one&gt; wrote:﻿\r\n    body { font-family: Helvetica, Arial; font-size: 13px; }Hi Steve,Thanks for you patience!Does Friday at 130p still work?Rick  \r\n        \r\n     \r\n    Rick Mislan, PhDhttps://mavrix.one\r\n     \r\n On May 27, 2025 at 12:44:40 PM, Steve Hoover (shoover@impossible-objects.com) wrote: Any progress getting a time locked down?thxSteveOn May 22, 2025, at 3:53 PM, Rick &lt;rick@mavrix.one&gt; wrote:Thanks!Rick Mislan, PhDhttps://mavrix.oneOn May 22, 2025 at 3:51:28 PM, Steve Hoover (shoover@impossible-objects.com) wrote:Tuesday - noon to 3 pmWednesday -9-noon&nbsp;and 1-5Thursday 9-3 pmFriday 9-noon, 1:30- pmAll times east coast time zone.\r\n\r\n\r\n',0,0,0,0,0,0,'2025-05-28 13:31:55','2025-12-09 19:06:54','2025-12-09 19:06:54','2025-12-09 19:06:54',NULL,NULL,NULL),
(319,4,'<CAP1B=sm1hmAFsQ5dVXZQPz6ZLG8B4PE6HH=YgDcN12TwvJwxmw@mail.gmail.com>',NULL,NULL,'Re: Thank You for Connecting at SOF Week','charles.phillips@orqafpv.com','Charles Phillips','<div dir=\"auto\">Rick,</div><div dir=\"auto\"><br></div><div dir=\"auto\">I&#39;m sorry but I couldn&#39;t get a cell signal where I was. Are you available later today?</div><div dir=\"auto\"><br></div><div dir=\"auto\">Regards,</div><div dir=\"auto\"><br></div><div dir=\"auto\">Charles </div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, May 28, 2025 at 8:51 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">Reschedule?<br></div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Please let me know what&#39;s best, this week or next.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Respectfully,</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Rick</div> <br> <div class=\"gmail_signature\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height:11px\"></div>\r\n     \r\n</div> <br><p>On May 21, 2025 at 9:34:30 AM, Charles Phillips (<a href=\"mailto:charles.phillips@orqafpv.com\" target=\"_blank\">charles.phillips@orqafpv.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"auto\">Rick,</div><div dir=\"auto\"><br></div><div dir=\"auto\">How about Wednesday at 11:30 am?</div><div dir=\"auto\"><br></div><div dir=\"auto\">Regards,</div><div dir=\"auto\"><br></div><div dir=\"auto\">Charles</div><div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, May 21, 2025 at 8:27 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\">\r\n    <div id=\"m_-7759038507464429905m_-6774134892025449968bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Yes, I’m in Rochester, NY.</div><div id=\"m_-7759038507464429905m_-6774134892025449968bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\"><br></div> <br> <div id=\"m_-7759038507464429905m_-6774134892025449968bloop_sign_1747833972160056064\">\r\n         \r\n      \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height:11px\"></div>\r\n      \r\n</div> <br><p>On May 21, 2025 at 9:15:07 AM, Charles Phillips (<a href=\"mailto:charles.phillips@orqafpv.com\" target=\"_blank\">charles.phillips@orqafpv.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"auto\">Rick,</div><div dir=\"auto\"><br></div><div dir=\"auto\">Are you referring to EST below?</div><div dir=\"auto\"><br></div><div dir=\"auto\">Regards,</div><div dir=\"auto\"><br></div><div dir=\"auto\">Charles</div><div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, May 20, 2025 at 7:57 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\">\r\n    <div id=\"m_-7759038507464429905m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Gentlemen,</div><div id=\"m_-7759038507464429905m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\"><div id=\"m_-7759038507464429905m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"margin:0px\"><br></div><div id=\"m_-7759038507464429905m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"margin:0px\"><a href=\"http://airmail.calendar/2025-05-27%2008:00:00%20EDT\" style=\"word-break:break-word\" target=\"_blank\">Tuesday 8-9</a>,1-3 are currently open.</div><div id=\"m_-7759038507464429905m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"margin:0px\">and Wednesday is wide open.</div><div id=\"m_-7759038507464429905m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"margin:0px\"><br></div><div id=\"m_-7759038507464429905m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"margin:0px\">Please let me know what works best for you.</div><div id=\"m_-7759038507464429905m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"margin:0px\"><br></div><div id=\"m_-7759038507464429905m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"margin:0px\">Looking forward to catching up!</div><div id=\"m_-7759038507464429905m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"margin:0px\">Thank you,<br></div></div> Rick<div><br> <div id=\"m_-7759038507464429905m_-6774134892025449968m_9205091688542381711bloop_sign_1747788949242577920\">\r\n          \r\n       \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height:11px\"></div>\r\n       \r\n</div> <br></div><div><p>On May 20, 2025 at 6:26:51 PM, Charles Phillips (<a href=\"mailto:charles.phillips@orqafpv.com\" target=\"_blank\">charles.phillips@orqafpv.com</a>) wrote:</p> </div><div><blockquote type=\"cite\"><span><div><div></div><div></div></div></span></blockquote></div><div><blockquote type=\"cite\"><span><div><div><div dir=\"auto\">Rick,</div><div dir=\"auto\"><br></div><div dir=\"auto\">I was waiting to hear back from you regarding open dates. What dates work for you next week?</div><div dir=\"auto\"><br></div><div dir=\"auto\">Regards,</div><div dir=\"auto\"><br></div><div dir=\"auto\">Charles Phillips </div><div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, May 20, 2025 at 3:00 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\">\r\n    <div id=\"m_-7759038507464429905m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Gentlemen,</div><div id=\"m_-7759038507464429905m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">I am reaching out to schedule a call with you for next week</div><div id=\"m_-7759038507464429905m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">to follow up on the conversation Charles and I had during SOF Week.</div><div id=\"m_-7759038507464429905m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\"><br></div><div id=\"m_-7759038507464429905m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Please let me know your interest and availability.</div><div id=\"m_-7759038507464429905m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\"><br></div><div id=\"m_-7759038507464429905m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Thank you,</div><div id=\"m_-7759038507464429905m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Rick</div><div id=\"m_-7759038507464429905m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\"><br></div> <div id=\"m_-7759038507464429905m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_sign_1747771088106214912\">\r\n           \r\n        \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height:11px\"></div>\r\n        \r\n</div> <br><p>On May 8, 2025 at 3:14:43 PM, Rick (<a href=\"mailto:rick@mavrix.one\" target=\"_blank\">rick@mavrix.one</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div>\r\n    <div id=\"m_-7759038507464429905m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Hi Charles,<br></div><div><br></div><div><div>Thank you again for your time yesterday on the yacht.</div><div>It was a pleasure meeting you in person. </div><div>I appreciated the opportunity to connect and </div><div>share more about MAVRIX and the work we&#39;re doing.<br></div><div><br></div><div>I&#39;ll be meeting with my team later today and </div><div>will follow up to schedule something for next week </div><div>so we can continue the conversation and </div><div>explore potential next steps.</div></div><div><div><br></div><div><div>Also, I want to take a moment to share </div><div>how impressed I was with Bryan Sardoch.</div><div>His ability to clearly articulate ORQA’s capabilities, </div><div>along with the TTPs he employs in theater, really stood out. </div><div>His depth of knowledge and firsthand experience brought </div><div>a level of authenticity that resonated with the soldiers who stopped by. </div><div>He’s a tremendous asset to ORQA </div><div>and a strong identity for the brand.</div><div><br></div></div><div><div>Looking forward to reconnecting soon. </div><div>I’ll send over some open dates shortly.</div><div><br></div></div><div>Respectfully,</div></div><div>Rick</div><div id=\"m_-7759038507464429905m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_sign_1746731112679679744\"></div>\r\n\r\n\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div></div>\r\n\r\n<br>\r\n</div></div></span></blockquote></div><div><blockquote type=\"cite\"><span><div><div><font size=\"1\">This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Orqa Holding Group liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted.</font><br></div></div></span></blockquote>\r\n\r\n\r\n</div></blockquote></div></div>\r\n\r\n<br>\r\n<font size=\"1\">This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Orqa Holding Group liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted.</font><br></div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div></div>\r\n\r\n<br>\r\n<font size=\"1\">This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Orqa Holding Group liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted.</font><br></div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div></div>\r\n\r\n<br>\r\n<font size=\"1\">This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Orqa Holding Group liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted.</font><br>','Rick,\r\n\r\nI\'m sorry but I couldn\'t get a cell signal where I was. Are you available\r\nlater today?\r\n\r\nRegards,\r\n\r\nCharles\r\n\r\nOn Wed, May 28, 2025 at 8:51 AM Rick <rick@mavrix.one> wrote:\r\n\r\n> Reschedule?\r\n> Please let me know what\'s best, this week or next.\r\n> Respectfully,\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On May 21, 2025 at 9:34:30 AM, Charles Phillips (\r\n> charles.phillips@orqafpv.com) wrote:\r\n>\r\n> Rick,\r\n>\r\n> How about Wednesday at 11:30 am?\r\n>\r\n> Regards,\r\n>\r\n> Charles\r\n>\r\n> On Wed, May 21, 2025 at 8:27 AM Rick <rick@mavrix.one> wrote:\r\n>\r\n>> Yes, I’m in Rochester, NY.\r\n>>\r\n>>\r\n>> Rick Mislan, PhD\r\n>> https://mavrix.one\r\n>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>\r\n>> On May 21, 2025 at 9:15:07 AM, Charles Phillips (\r\n>> charles.phillips@orqafpv.com) wrote:\r\n>>\r\n>> Rick,\r\n>>\r\n>> Are you referring to EST below?\r\n>>\r\n>> Regards,\r\n>>\r\n>> Charles\r\n>>\r\n>> On Tue, May 20, 2025 at 7:57 PM Rick <rick@mavrix.one> wrote:\r\n>>\r\n>>> Gentlemen,\r\n>>>\r\n>>> Tuesday 8-9 <http://airmail.calendar/2025-05-27%2008:00:00%20EDT>,1-3\r\n>>> are currently open.\r\n>>> and Wednesday is wide open.\r\n>>>\r\n>>> Please let me know what works best for you.\r\n>>>\r\n>>> Looking forward to catching up!\r\n>>> Thank you,\r\n>>> Rick\r\n>>>\r\n>>> Rick Mislan, PhD\r\n>>> https://mavrix.one\r\n>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>\r\n>>> On May 20, 2025 at 6:26:51 PM, Charles Phillips (\r\n>>> charles.phillips@orqafpv.com) wrote:\r\n>>>\r\n>>> Rick,\r\n>>>\r\n>>> I was waiting to hear back from you regarding open dates. What dates\r\n>>> work for you next week?\r\n>>>\r\n>>> Regards,\r\n>>>\r\n>>> Charles Phillips\r\n>>>\r\n>>> On Tue, May 20, 2025 at 3:00 PM Rick <rick@mavrix.one> wrote:\r\n>>>\r\n>>>> Gentlemen,\r\n>>>> I am reaching out to schedule a call with you for next week\r\n>>>> to follow up on the conversation Charles and I had during SOF Week.\r\n>>>>\r\n>>>> Please let me know your interest and availability.\r\n>>>>\r\n>>>> Thank you,\r\n>>>> Rick\r\n>>>>\r\n>>>> Rick Mislan, PhD\r\n>>>> https://mavrix.one\r\n>>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>>\r\n>>>> On May 8, 2025 at 3:14:43 PM, Rick (rick@mavrix.one) wrote:\r\n>>>>\r\n>>>> Hi Charles,\r\n>>>>\r\n>>>> Thank you again for your time yesterday on the yacht.\r\n>>>> It was a pleasure meeting you in person.\r\n>>>> I appreciated the opportunity to connect and\r\n>>>> share more about MAVRIX and the work we\'re doing.\r\n>>>>\r\n>>>> I\'ll be meeting with my team later today and\r\n>>>> will follow up to schedule something for next week\r\n>>>> so we can continue the conversation and\r\n>>>> explore potential next steps.\r\n>>>>\r\n>>>> Also, I want to take a moment to share\r\n>>>> how impressed I was with Bryan Sardoch.\r\n>>>> His ability to clearly articulate ORQA’s capabilities,\r\n>>>> along with the TTPs he employs in theater, really stood out.\r\n>>>> His depth of knowledge and firsthand experience brought\r\n>>>> a level of authenticity that resonated with the soldiers who stopped\r\n>>>> by.\r\n>>>> He’s a tremendous asset to ORQA\r\n>>>> and a strong identity for the brand.\r\n>>>>\r\n>>>> Looking forward to reconnecting soon.\r\n>>>> I’ll send over some open dates shortly.\r\n>>>>\r\n>>>> Respectfully,\r\n>>>> Rick\r\n>>>>\r\n>>>>\r\n>>> This e-mail and the documents attached are confidential and intended\r\n>>> solely for the addressee; it may also be privileged. If you receive this\r\n>>> e-mail in error, please notify the sender immediately and destroy it. As\r\n>>> its integrity cannot be secured on the Internet, the Orqa Holding Group\r\n>>> liability cannot be triggered for the message content. Although the sender\r\n>>> endeavours to maintain a computer virus-free network, the sender does not\r\n>>> warrant that this transmission is virus-free and will not be liable for any\r\n>>> damages resulting from any virus transmitted.\r\n>>>\r\n>>>\r\n>> This e-mail and the documents attached are confidential and intended\r\n>> solely for the addressee; it may also be privileged. If you receive this\r\n>> e-mail in error, please notify the sender immediately and destroy it. As\r\n>> its integrity cannot be secured on the Internet, the Orqa Holding Group\r\n>> liability cannot be triggered for the message content. Although the sender\r\n>> endeavours to maintain a computer virus-free network, the sender does not\r\n>> warrant that this transmission is virus-free and will not be liable for any\r\n>> damages resulting from any virus transmitted.\r\n>>\r\n>>\r\n> This e-mail and the documents attached are confidential and intended\r\n> solely for the addressee; it may also be privileged. If you receive this\r\n> e-mail in error, please notify the sender immediately and destroy it. As\r\n> its integrity cannot be secured on the Internet, the Orqa Holding Group\r\n> liability cannot be triggered for the message content. Although the sender\r\n> endeavours to maintain a computer virus-free network, the sender does not\r\n> warrant that this transmission is virus-free and will not be liable for any\r\n> damages resulting from any virus transmitted.\r\n>\r\n>\r\n\r\n-- \r\nThis e-mail and the documents attached are confidential and intended solely \r\nfor the addressee; it may also be privileged. If you receive this e-mail in \r\nerror, please notify the sender immediately and destroy it. As its \r\nintegrity cannot be secured on the Internet, the Orqa Holding Group \r\nliability cannot be triggered for the message content. Although the sender \r\nendeavours to maintain a computer virus-free network, the sender does not \r\nwarrant that this transmission is virus-free and will not be liable for any \r\ndamages resulting from any virus transmitted.',0,0,0,0,0,0,'2025-05-28 16:02:56','2025-12-09 19:06:55','2025-12-09 19:06:55','2025-12-09 19:06:55',NULL,NULL,NULL),
(320,4,' <PH1P110MB14908DBA495594E4B9995D60D867A@PH1P110MB1490.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'RE: [EXTERNAL] Re: Vector','chelsa.berthelson@tfvector-gcc.com','Chelsa Berthelson','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle19\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">I will reach out! <o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, May 28, 2025 5:22 AM<br>\r\n<b>To:</b> Seth Nason &lt;seth.nason@tfvector-gcc.com&gt;<br>\r\n<b>Cc:</b> Chelsa Berthelson &lt;chelsa.berthelson@tfvector-gcc.com&gt;<br>\r\n<b>Subject:</b> [EXTERNAL] Re: Vector<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div style=\"border:solid #9C6500 1.0pt;padding:2.0pt 2.0pt 2.0pt 2.0pt\" id=\"footer\">\r\n<p class=\"MsoNormal\" style=\"background:#FFEB9C\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender\r\n and know the content is safe.</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Seth/Chelsa,<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I sent John Kennerly’s resume (not mine).<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">He’s a great dude and would definitely fit right in!<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">That said, you should contact John at:<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"mailto:kennerly.john@yahoo.com\">kennerly.john@yahoo.com</a><o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks for what you do!<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">All my best,<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<div id=\"bloop_sign_1748431097337730816\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;border:solid windowtext 1.0pt;padding:0in\"><img border=\"0\" width=\"100\" height=\"100\" style=\"width:1.0416in;height:1.0416in\" id=\"Picture_x0020_2\" src=\"cid:~WRD0205.jpg\" alt=\"Image removed by sender.\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"airmailon\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">On May 28, 2025 at 3:12:47 AM, Seth Nason (<a href=\"mailto:seth.nason@tfvector-gcc.com\">seth.nason@tfvector-gcc.com</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hey Rick-<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Got your contact/resume from our CEO, Andy.<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Happy to set up a call, we’ve recently set up our HQ in SLC, is re-location an option?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">-seth<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#776B6C\">Seth Nason\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#9A000A\">Chief of Staff</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#776B6C\">(C) 808-927-5256</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><u><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:blue\"><a href=\"mailto:seth@tfvector.com\">seth@tfvector.com</a></span></u><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://www.tfvector.com/\" target=\"_blank\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:#1155CC;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"146\" height=\"40\" style=\"width:1.525in;height:.4166in\" id=\"Picture_x0020_1\" src=\"cid:~WRD0205.jpg\" alt=\"Image removed by sender.\"></span></a><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><br>\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n<br>\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n</body>\r\n</html>\r\n','I will reach out!\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Wednesday, May 28, 2025 5:22 AM\r\nTo: Seth Nason <seth.nason@tfvector-gcc.com>\r\nCc: Chelsa Berthelson <chelsa.berthelson@tfvector-gcc.com>\r\nSubject: [EXTERNAL] Re: Vector\r\n\r\nCAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.\r\nHi Seth/Chelsa,\r\n\r\nI sent John Kennerly’s resume (not mine).\r\nHe’s a great dude and would definitely fit right in!\r\n\r\nThat said, you should contact John at:\r\nkennerly.john@yahoo.com<mailto:kennerly.john@yahoo.com>\r\n\r\nThanks for what you do!\r\nAll my best,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n[Image removed by sender.]\r\n\r\n\r\nOn May 28, 2025 at 3:12:47 AM, Seth Nason (seth.nason@tfvector-gcc.com<mailto:seth.nason@tfvector-gcc.com>) wrote:\r\nHey Rick-\r\nGot your contact/resume from our CEO, Andy.\r\nHappy to set up a call, we’ve recently set up our HQ in SLC, is re-location an option?\r\n\r\n-seth\r\n\r\nSeth Nason\r\nChief of Staff\r\n(C) 808-927-5256\r\nseth@tfvector.com<mailto:seth@tfvector.com>\r\n[Image removed by sender.]<https://www.tfvector.com/>\r\n\r\n\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n',0,0,0,0,0,0,'2025-05-28 16:10:20','2025-12-09 19:06:55','2025-12-09 19:06:55','2025-12-09 19:06:55',NULL,NULL,NULL),
(321,4,'<98270203-3391-4C82-B521-26EAF90496B4@impossible-objects.com>',NULL,NULL,'Re: Next steps?','shoover@impossible-objects.com','Steve Hoover','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\">Thursday at 2 pm doesn’t work for me.<div><br></div><div>How about late today? &nbsp;5 pm?</div><div><br></div><div>Steve</div><div><br id=\"lineBreakAtBeginningOfMessage\"><div><br><blockquote type=\"cite\"><div>On May 28, 2025, at 11:54 AM, Rick &lt;rick@mavrix.one&gt; wrote:</div><br class=\"Apple-interchange-newline\"><div><meta charset=\"UTF-8\"><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Can you and I do a call before the Friday call?</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Thursday at 2?</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Want to ask some tech questions….</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Thanks!</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Rick</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><br></div><br style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><div class=\"gmail_signature\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div><div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height: 11px;\"></div></div><br style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><p class=\"airmail_on\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">On May 28, 2025 at 9:32:49 AM, Steve Hoover (<a href=\"mailto:shoover@impossible-objects.com\">shoover@impossible-objects.com</a>) wrote:</p><blockquote type=\"cite\" class=\"clean_bq\" style=\"font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><span><div dir=\"auto\"><div></div><div>Rick<div><br></div><div>Yes that works.</div><div><br></div><div>Please send a meeting incur with the call in details.</div><div><br></div><div>Steve<br id=\"lineBreakAtBeginningOfSignature\"><div dir=\"ltr\">Sent from my iPhone</div><div dir=\"ltr\"><br><blockquote type=\"cite\">On May 28, 2025, at 7:44 AM, Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; wrote:<br><br></blockquote></div><blockquote type=\"cite\"><div dir=\"ltr\">﻿<div style=\"font-family: Helvetica, Arial; font-size: 13px;\">Hi Steve,</div><div style=\"font-family: Helvetica, Arial; font-size: 13px;\">Thanks for you patience!</div><div style=\"font-family: Helvetica, Arial; font-size: 13px;\">Does Friday at 130p still work?</div><div style=\"font-family: Helvetica, Arial; font-size: 13px;\"><br></div><div style=\"font-family: Helvetica, Arial; font-size: 13px;\">Rick</div><br><div class=\"gmail_signature\">Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div><div><img src=\"cid:Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height: 11px;\"></div></div><br><p class=\"airmail_on\">On May 27, 2025 at 12:44:40 PM, Steve Hoover (<a href=\"mailto:shoover@impossible-objects.com\">shoover@impossible-objects.com</a>) wrote:</p><blockquote type=\"cite\" class=\"clean_bq\"><span><div style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"><div></div><div>Any progress getting a time locked down?<div><br></div><div>thx</div><div><br></div><div>Steve</div><div><br id=\"lineBreakAtBeginningOfMessage\"><div><br><blockquote type=\"cite\"><div>On May 22, 2025, at 3:53 PM, Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; wrote:</div><br class=\"Apple-interchange-newline\"><div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; margin: 0px;\">Thanks!</div><br style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><div class=\"gmail_signature\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div><div><img src=\"cid:Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height: 11px;\"></div></div><br style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><p class=\"airmail_on\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">On May 22, 2025 at 3:51:28 PM, Steve Hoover (<a href=\"mailto:shoover@impossible-objects.com\">shoover@impossible-objects.com</a>) wrote:</p><blockquote type=\"cite\" class=\"clean_bq\" style=\"font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><span><div><div style=\"caret-color: rgb(0, 0, 0); font-family: UICTFontTextStyleBody; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><a href=\"http://airmail.calendar/2025-05-27%2012:00:00%20EDT\" style=\"overflow-wrap: break-word; word-break: break-word; hyphens: auto;\"><br class=\"Apple-interchange-newline\">Tuesday - noon to 3 pm</a></div><div style=\"caret-color: rgb(0, 0, 0); font-family: UICTFontTextStyleBody; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><a href=\"http://airmail.calendar/2025-05-28%2009:00:00%20EDT\" style=\"overflow-wrap: break-word; word-break: break-word; hyphens: auto;\">Wednesday -9-noon</a><span class=\"Apple-converted-space\">&nbsp;</span>and 1-5</div><div style=\"caret-color: rgb(0, 0, 0); font-family: UICTFontTextStyleBody; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><a href=\"http://airmail.calendar/2025-05-29%2009:00:00%20EDT\" style=\"overflow-wrap: break-word; word-break: break-word; hyphens: auto;\">Thursday 9-3 pm</a></div><div style=\"caret-color: rgb(0, 0, 0); font-family: UICTFontTextStyleBody; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><a href=\"http://airmail.calendar/2025-05-23%2009:00:00%20EDT\" style=\"overflow-wrap: break-word; word-break: break-word; hyphens: auto;\">Friday 9-noon</a>, 1:30- pm</div><div style=\"caret-color: rgb(0, 0, 0); font-family: UICTFontTextStyleBody; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><br></div><div style=\"caret-color: rgb(0, 0, 0); font-family: UICTFontTextStyleBody; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">All times east coast time zone.</div></div></span></blockquote></div></blockquote></div></div></div></div></span></blockquote></div></blockquote></div></div></div></span></blockquote></div></blockquote></div><br></div></body></html>','Thursday at 2 pm doesn’t work for me.\r\n\r\nHow about late today?  5 pm?\r\n\r\nSteve\r\n\r\n\r\n> On May 28, 2025, at 11:54 AM, Rick <rick@mavrix.one> wrote:\r\n> \r\n> Can you and I do a call before the Friday call?\r\n> Thursday at 2?\r\n> Want to ask some tech questions….\r\n> Thanks!\r\n> Rick\r\n> \r\n> \r\n> Rick Mislan, PhD\r\n> https://mavrix.one <https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n> \r\n> On May 28, 2025 at 9:32:49 AM, Steve Hoover (shoover@impossible-objects.com <mailto:shoover@impossible-objects.com>) wrote:\r\n> \r\n>> Rick\r\n>> \r\n>> Yes that works.\r\n>> \r\n>> Please send a meeting incur with the call in details.\r\n>> \r\n>> Steve\r\n>> Sent from my iPhone\r\n>> \r\n>>> On May 28, 2025, at 7:44 AM, Rick <rick@mavrix.one <mailto:rick@mavrix.one>> wrote:\r\n>>> \r\n>>> ﻿\r\n>>> Hi Steve,\r\n>>> Thanks for you patience!\r\n>>> Does Friday at 130p still work?\r\n>>> \r\n>>> Rick\r\n>>> \r\n>>> Rick Mislan, PhD\r\n>>> https://mavrix.one <https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n>>> \r\n>>> On May 27, 2025 at 12:44:40 PM, Steve Hoover (shoover@impossible-objects.com <mailto:shoover@impossible-objects.com>) wrote:\r\n>>> \r\n>>>> Any progress getting a time locked down?\r\n>>>> \r\n>>>> thx\r\n>>>> \r\n>>>> Steve\r\n>>>> \r\n>>>> \r\n>>>>> On May 22, 2025, at 3:53 PM, Rick <rick@mavrix.one <mailto:rick@mavrix.one>> wrote:\r\n>>>>> \r\n>>>>> Thanks!\r\n>>>>> \r\n>>>>> Rick Mislan, PhD\r\n>>>>> https://mavrix.one <https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n>>>>> \r\n>>>>> On May 22, 2025 at 3:51:28 PM, Steve Hoover (shoover@impossible-objects.com <mailto:shoover@impossible-objects.com>) wrote:\r\n>>>>> \r\n>>>>>> \r\n>>>>>> Tuesday - noon to 3 pm <http://airmail.calendar/2025-05-27%2012:00:00%20EDT>\r\n>>>>>> Wednesday -9-noon <http://airmail.calendar/2025-05-28%2009:00:00%20EDT> and 1-5\r\n>>>>>> Thursday 9-3 pm <http://airmail.calendar/2025-05-29%2009:00:00%20EDT>\r\n>>>>>> Friday 9-noon <http://airmail.calendar/2025-05-23%2009:00:00%20EDT>, 1:30- pm\r\n>>>>>> \r\n>>>>>> All times east coast time zone.',0,0,0,0,0,0,'2025-05-28 18:01:33','2025-12-09 19:06:55','2025-12-09 19:06:55','2025-12-09 19:06:55',NULL,NULL,NULL),
(322,4,'<CAP1B=snH7V3xF67pjYCEwSk9afXghPn2GV67mjk_-1znoP3WcQ@mail.gmail.com>',NULL,NULL,'Re: Thank You for Connecting at SOF Week','charles.phillips@orqafpv.com','Charles Phillips','<div dir=\"auto\">Let’s do 4 pm EST. </div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, May 28, 2025 at 10:24 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;padding-left:1ex;border-left-color:rgb(204,204,204)\"><div><div>I am available later today. </div><div>After 4p est.  </div><div>Or we can punt to tomorrow am…</div><div>Let me know what works for you.  </div></div><div><div>Thank you,</div><div>Rick</div> <br><div class=\"gmail_signature\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div> <p class=\"gmail_quote\" style=\"color:rgb(0,0,0)\">On May 28, 2025 at 12:02:56 PM, Charles Phillips (<a href=\"mailto:charles.phillips@orqafpv.com\" target=\"_blank\">charles.phillips@orqafpv.com</a>) wrote:</p> <blockquote type=\"cite\" class=\"gmail_quote\"><span><div><div></div><div>\r\n\r\n\r\n\r\n\r\n\r\n<div dir=\"auto\">Rick,</div>\r\n<div dir=\"auto\"><br></div>\r\n<div dir=\"auto\">I&#39;m sorry but I couldn&#39;t get a cell signal where I\r\nwas. Are you available later today?</div>\r\n<div dir=\"auto\"><br></div>\r\n<div dir=\"auto\">Regards,</div>\r\n<div dir=\"auto\"><br></div>\r\n<div dir=\"auto\">Charles </div>\r\n<div><br>\r\n<div class=\"gmail_quote\">\r\n<div dir=\"ltr\" class=\"gmail_attr\">On Wed, May 28, 2025 at 8:51 AM\r\nRick &lt;rick@mavrix.one&gt; wrote:<br></div>\r\n<blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;padding-left:1ex;border-left-color:rgb(204,204,204)\">\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">\r\nReschedule?<br></div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Please let\r\nme know what&#39;s best, this week or next.</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">\r\nRespectfully,</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div><img style=\"height: 11px;\"></div>\r\n</div>\r\n<br>\r\n<p>On May 21, 2025 at 9:34:30 AM, Charles Phillips (<a href=\"mailto:charles.phillips@orqafpv.com\" target=\"_blank\">charles.phillips@orqafpv.com</a>) wrote:</p>\r\n<blockquote type=\"cite\">\r\n<div>\r\n<div>\r\n<div dir=\"auto\"><span>Rick,</span></div>\r\n<div dir=\"auto\"><span><br></span></div>\r\n<div dir=\"auto\"><span>How about Wednesday at 11:30 am?</span></div>\r\n<div dir=\"auto\"><span><br></span></div>\r\n<div dir=\"auto\"><span>Regards,</span></div>\r\n<div dir=\"auto\"><span><br></span></div>\r\n<div dir=\"auto\"><span>Charles</span></div>\r\n<div><span><br></span>\r\n<div class=\"gmail_quote\">\r\n<div dir=\"ltr\" class=\"gmail_attr\"><span>On Wed, May 21, 2025 at\r\n8:27 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></span></div>\r\n<blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;padding-left:1ex;border-left-color:rgb(204,204,204)\">\r\n<div id=\"m_-7030974068400641903m_-7759038507464429905m_-6774134892025449968bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\n<span style=\"font-family:Helvetica,Arial\">Yes, I’m in Rochester, NY.</span></div>\r\n<div id=\"m_-7030974068400641903m_-7759038507464429905m_-6774134892025449968bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\n<span style=\"font-family:Helvetica,Arial\"><br></span></div>\r\n<span><br></span>\r\n<div id=\"m_-7030974068400641903m_-7759038507464429905m_-6774134892025449968bloop_sign_1747833972160056064\">\r\n<span>Rick Mislan, PhD<br></span>\r\n<div><span><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></span></div>\r\n<div><span><img style=\"height: 11px;\"></span></div>\r\n</div>\r\n<span><br></span>\r\n<p><span>On May 21, 2025 at 9:15:07 AM, Charles Phillips (<a href=\"mailto:charles.phillips@orqafpv.com\" target=\"_blank\">charles.phillips@orqafpv.com</a>) wrote:</span></p>\r\n<blockquote type=\"cite\">\r\n<div>\r\n<div>\r\n<div dir=\"auto\"><span>Rick,</span></div>\r\n<div dir=\"auto\"><span><br></span></div>\r\n<div dir=\"auto\"><span>Are you referring to EST below?</span></div>\r\n<div dir=\"auto\"><span><br></span></div>\r\n<div dir=\"auto\"><span>Regards,</span></div>\r\n<div dir=\"auto\"><span><br></span></div>\r\n<div dir=\"auto\"><span>Charles</span></div>\r\n<div><span><br></span>\r\n<div class=\"gmail_quote\">\r\n<div dir=\"ltr\" class=\"gmail_attr\"><span>On Tue, May 20, 2025 at\r\n7:57 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></span></div>\r\n<blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;padding-left:1ex;border-left-color:rgb(204,204,204)\">\r\n<div id=\"m_-7030974068400641903m_-7759038507464429905m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\n<span style=\"font-family:Helvetica,Arial\">Gentlemen,</span></div>\r\n<div id=\"m_-7030974068400641903m_-7759038507464429905m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\n<div id=\"m_-7030974068400641903m_-7759038507464429905m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"margin:0px;font-family:Helvetica,Arial\"><span style=\"font-family:Helvetica,Arial\"><br></span></div>\r\n<div id=\"m_-7030974068400641903m_-7759038507464429905m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"margin:0px;font-family:Helvetica,Arial\"><span style=\"font-family:Helvetica,Arial\"><a href=\"http://airmail.calendar/2025-05-27%2008:00:00%20EDT\" style=\"word-break:break-word;font-family:Helvetica,Arial\" target=\"_blank\">Tuesday 8-9</a>,1-3 are\r\ncurrently open.</span></div>\r\n<div id=\"m_-7030974068400641903m_-7759038507464429905m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"margin:0px;font-family:Helvetica,Arial\"><span style=\"font-family:Helvetica,Arial\">and Wednesday is wide open.</span></div>\r\n<div id=\"m_-7030974068400641903m_-7759038507464429905m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"margin:0px;font-family:Helvetica,Arial\"><span style=\"font-family:Helvetica,Arial\"><br></span></div>\r\n<div id=\"m_-7030974068400641903m_-7759038507464429905m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"margin:0px;font-family:Helvetica,Arial\"><span style=\"font-family:Helvetica,Arial\">Please let me know what works best for\r\nyou.</span></div>\r\n<div id=\"m_-7030974068400641903m_-7759038507464429905m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"margin:0px;font-family:Helvetica,Arial\"><span style=\"font-family:Helvetica,Arial\"><br></span></div>\r\n<div id=\"m_-7030974068400641903m_-7759038507464429905m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"margin:0px;font-family:Helvetica,Arial\"><span style=\"font-family:Helvetica,Arial\">Looking forward to catching\r\nup!</span></div>\r\n<div id=\"m_-7030974068400641903m_-7759038507464429905m_-6774134892025449968m_9205091688542381711bloop_customfont\" style=\"margin:0px;font-family:Helvetica,Arial\"><span style=\"font-family:Helvetica,Arial\">Thank you,<br></span></div>\r\n</div>\r\n<span>Rick</span>\r\n<div><span><br></span>\r\n<div id=\"m_-7030974068400641903m_-7759038507464429905m_-6774134892025449968m_9205091688542381711bloop_sign_1747788949242577920\">\r\n<span>Rick Mislan, PhD<br></span>\r\n<div><span><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></span></div>\r\n<div><span><img style=\"height: 11px;\"></span></div>\r\n</div>\r\n<span><br></span></div>\r\n<div>\r\n<p><span>On May 20, 2025 at 6:26:51 PM, Charles Phillips (<a href=\"mailto:charles.phillips@orqafpv.com\" target=\"_blank\">charles.phillips@orqafpv.com</a>) wrote:</span></p>\r\n</div>\r\n<div>\r\n<blockquote type=\"cite\"></blockquote>\r\n</div>\r\n<div>\r\n<blockquote type=\"cite\">\r\n<div>\r\n<div>\r\n<div dir=\"auto\"><span>Rick,</span></div>\r\n<div dir=\"auto\"><span><br></span></div>\r\n<div dir=\"auto\"><span>I was waiting to hear back from you\r\nregarding open dates. What dates work for you next\r\nweek?</span></div>\r\n<div dir=\"auto\"><span><br></span></div>\r\n<div dir=\"auto\"><span>Regards,</span></div>\r\n<div dir=\"auto\"><span><br></span></div>\r\n<div dir=\"auto\"><span>Charles Phillips </span></div>\r\n<div><span><br></span>\r\n<div class=\"gmail_quote\">\r\n<div dir=\"ltr\" class=\"gmail_attr\"><span>On Tue, May 20, 2025 at\r\n3:00 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></span></div>\r\n<blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;padding-left:1ex;border-left-color:rgb(204,204,204)\">\r\n<div id=\"m_-7030974068400641903m_-7759038507464429905m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\n<span style=\"font-family:Helvetica,Arial\">Gentlemen,</span></div>\r\n<div id=\"m_-7030974068400641903m_-7759038507464429905m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\n<span style=\"font-family:Helvetica,Arial\">I am reaching out to schedule a call with you for next\r\nweek</span></div>\r\n<div id=\"m_-7030974068400641903m_-7759038507464429905m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\n<span style=\"font-family:Helvetica,Arial\">to follow up on the conversation Charles and I had during SOF\r\nWeek.</span></div>\r\n<div id=\"m_-7030974068400641903m_-7759038507464429905m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\n<span style=\"font-family:Helvetica,Arial\"><br></span></div>\r\n<div id=\"m_-7030974068400641903m_-7759038507464429905m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\n<span style=\"font-family:Helvetica,Arial\">Please let me know your interest and\r\navailability.</span></div>\r\n<div id=\"m_-7030974068400641903m_-7759038507464429905m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\n<span style=\"font-family:Helvetica,Arial\"><br></span></div>\r\n<div id=\"m_-7030974068400641903m_-7759038507464429905m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\n<span style=\"font-family:Helvetica,Arial\">Thank you,</span></div>\r\n<div id=\"m_-7030974068400641903m_-7759038507464429905m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\n<span style=\"font-family:Helvetica,Arial\">Rick</span></div>\r\n<div id=\"m_-7030974068400641903m_-7759038507464429905m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\n<span style=\"font-family:Helvetica,Arial\"><br></span></div>\r\n<div id=\"m_-7030974068400641903m_-7759038507464429905m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_sign_1747771088106214912\">\r\n<span>Rick Mislan, PhD<br></span>\r\n<div><span><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></span></div>\r\n<div><span><img style=\"height: 11px;\"></span></div>\r\n</div>\r\n<span><br></span>\r\n<p><span>On May 8, 2025 at 3:14:43 PM, Rick (<a href=\"mailto:rick@mavrix.one\" target=\"_blank\">rick@mavrix.one</a>)\r\nwrote:</span></p>\r\n<blockquote type=\"cite\">\r\n<div>\r\n<div>\r\n<div id=\"m_-7030974068400641903m_-7759038507464429905m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">\r\n<span style=\"font-family:Helvetica,Arial\">Hi Charles,<br></span></div>\r\n<div><span><br></span></div>\r\n<div>\r\n<div><span>Thank you again for your time yesterday on the\r\nyacht.</span></div>\r\n<div><span>It was a pleasure meeting you in\r\nperson. </span></div>\r\n<div><span>I appreciated the opportunity to connect\r\nand </span></div>\r\n<div><span>share more about MAVRIX and the work we&#39;re\r\ndoing.<br></span></div>\r\n<div><span><br></span></div>\r\n<div><span>I&#39;ll be meeting with my team later today\r\nand </span></div>\r\n<div><span>will follow up to schedule something for next\r\nweek </span></div>\r\n<div><span>so we can continue the conversation\r\nand </span></div>\r\n<div><span>explore potential next steps.</span></div>\r\n</div>\r\n<div>\r\n<div><span><br></span></div>\r\n<div>\r\n<div><span>Also, I want to take a moment to\r\nshare </span></div>\r\n<div><span>how impressed I was with Bryan Sardoch.</span></div>\r\n<div><span>His ability to clearly articulate ORQA’s\r\ncapabilities, </span></div>\r\n<div><span>along with the TTPs he employs in theater, really stood\r\nout. </span></div>\r\n<div><span>His depth of knowledge and firsthand experience\r\nbrought </span></div>\r\n<div><span>a level of authenticity that resonated with the soldiers\r\nwho stopped by. </span></div>\r\n<div><span>He’s a tremendous asset to ORQA </span></div>\r\n<div><span>and a strong identity for the brand.</span></div>\r\n<div><span><br></span></div>\r\n</div>\r\n<div>\r\n<div><span>Looking forward to reconnecting soon. </span></div>\r\n<div><span>I’ll send over some open dates shortly.</span></div>\r\n<div><span><br></span></div>\r\n</div>\r\n<div><span>Respectfully,</span></div>\r\n</div>\r\n<div><span>Rick</span></div>\r\n<div id=\"m_-7030974068400641903m_-7759038507464429905m_-6774134892025449968m_9205091688542381711m_7908639273750937061bloop_sign_1746731112679679744\">\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n<br></div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n<div>\r\n<blockquote type=\"cite\">\r\n<div>\r\n<div><span><font size=\"1\" style=\"color:rgb(0,0,0)\">This e-mail and the documents attached\r\nare confidential and intended solely for the addressee; it may also\r\nbe privileged. If you receive this e-mail in error, please notify\r\nthe sender immediately and destroy it. As its integrity cannot be\r\nsecured on the Internet, the Orqa Holding Group liability cannot be\r\ntriggered for the message content. Although the sender endeavours\r\nto maintain a computer virus-free network, the sender does not\r\nwarrant that this transmission is virus-free and will not be liable\r\nfor any damages resulting from any virus\r\ntransmitted.</font><br></span></div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n<br>\r\n<font size=\"1\" style=\"color:rgb(0,0,0)\">This e-mail and the documents attached are\r\nconfidential and intended solely for the addressee; it may also be\r\nprivileged. If you receive this e-mail in error, please notify the\r\nsender immediately and destroy it. As its integrity cannot be\r\nsecured on the Internet, the Orqa Holding Group liability cannot be\r\ntriggered for the message content. Although the sender endeavours\r\nto maintain a computer virus-free network, the sender does not\r\nwarrant that this transmission is virus-free and will not be liable\r\nfor any damages resulting from any virus\r\ntransmitted.</font><br></div>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n<br>\r\n<font size=\"1\" style=\"color:rgb(0,0,0)\">This e-mail and the documents attached are\r\nconfidential and intended solely for the addressee; it may also be\r\nprivileged. If you receive this e-mail in error, please notify the\r\nsender immediately and destroy it. As its integrity cannot be\r\nsecured on the Internet, the Orqa Holding Group liability cannot be\r\ntriggered for the message content. Although the sender endeavours\r\nto maintain a computer virus-free network, the sender does not\r\nwarrant that this transmission is virus-free and will not be liable\r\nfor any damages resulting from any virus\r\ntransmitted.</font><br></div>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n<br>\r\n<font size=\"1\" style=\"color:rgb(0,0,0)\">This e-mail and the documents attached are\r\nconfidential and intended solely for the addressee; it may also be\r\nprivileged. If you receive this e-mail in error, please notify the\r\nsender immediately and destroy it. As its integrity cannot be\r\nsecured on the Internet, the Orqa Holding Group liability cannot be\r\ntriggered for the message content. Although the sender endeavours\r\nto maintain a computer virus-free network, the sender does not\r\nwarrant that this transmission is virus-free and will not be liable\r\nfor any damages resulting from any virus transmitted.</font><br>\r\n\r\n\r\n</div></div></span></blockquote></div></blockquote></div></div>\r\n\r\n<br>\r\n<font size=\"1\">This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Orqa Holding Group liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted.</font><br>','Let’s do 4 pm EST.\r\n\r\nOn Wed, May 28, 2025 at 10:24 AM Rick <rick@mavrix.one> wrote:\r\n\r\n> I am available later today.\r\n> After 4p est.\r\n> Or we can punt to tomorrow am…\r\n> Let me know what works for you.\r\n> Thank you,\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On May 28, 2025 at 12:02:56 PM, Charles Phillips (\r\n> charles.phillips@orqafpv.com) wrote:\r\n>\r\n>> Rick,\r\n>>\r\n>> I\'m sorry but I couldn\'t get a cell signal where I was. Are you available\r\n>> later today?\r\n>>\r\n>> Regards,\r\n>>\r\n>> Charles\r\n>>\r\n>> On Wed, May 28, 2025 at 8:51 AM Rick <rick@mavrix.one> wrote:\r\n>>\r\n>>> Reschedule?\r\n>>> Please let me know what\'s best, this week or next.\r\n>>> Respectfully,\r\n>>> Rick\r\n>>>\r\n>>> Rick Mislan, PhD\r\n>>> https://mavrix.one\r\n>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>\r\n>>> On May 21, 2025 at 9:34:30 AM, Charles Phillips (\r\n>>> charles.phillips@orqafpv.com) wrote:\r\n>>>\r\n>>> Rick,\r\n>>>\r\n>>> How about Wednesday at 11:30 am?\r\n>>>\r\n>>> Regards,\r\n>>>\r\n>>> Charles\r\n>>>\r\n>>> On Wed, May 21, 2025 at 8:27 AM Rick <rick@mavrix.one> wrote:\r\n>>>\r\n>>>> Yes, I’m in Rochester, NY.\r\n>>>>\r\n>>>>\r\n>>>> Rick Mislan, PhD\r\n>>>> https://mavrix.one\r\n>>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>>\r\n>>>> On May 21, 2025 at 9:15:07 AM, Charles Phillips (\r\n>>>> charles.phillips@orqafpv.com) wrote:\r\n>>>>\r\n>>>> Rick,\r\n>>>>\r\n>>>> Are you referring to EST below?\r\n>>>>\r\n>>>> Regards,\r\n>>>>\r\n>>>> Charles\r\n>>>>\r\n>>>> On Tue, May 20, 2025 at 7:57 PM Rick <rick@mavrix.one> wrote:\r\n>>>>\r\n>>>>> Gentlemen,\r\n>>>>>\r\n>>>>> Tuesday 8-9 <http://airmail.calendar/2025-05-27%2008:00:00%20EDT>,1-3\r\n>>>>> are currently open.\r\n>>>>> and Wednesday is wide open.\r\n>>>>>\r\n>>>>> Please let me know what works best for you.\r\n>>>>>\r\n>>>>> Looking forward to catching up!\r\n>>>>> Thank you,\r\n>>>>> Rick\r\n>>>>>\r\n>>>>> Rick Mislan, PhD\r\n>>>>> https://mavrix.one\r\n>>>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>>>\r\n>>>>> On May 20, 2025 at 6:26:51 PM, Charles Phillips (\r\n>>>>> charles.phillips@orqafpv.com) wrote:\r\n>>>>>\r\n>>>>> Rick,\r\n>>>>>\r\n>>>>> I was waiting to hear back from you regarding open dates. What dates\r\n>>>>> work for you next week?\r\n>>>>>\r\n>>>>> Regards,\r\n>>>>>\r\n>>>>> Charles Phillips\r\n>>>>>\r\n>>>>> On Tue, May 20, 2025 at 3:00 PM Rick <rick@mavrix.one> wrote:\r\n>>>>>\r\n>>>>>> Gentlemen,\r\n>>>>>> I am reaching out to schedule a call with you for next week\r\n>>>>>> to follow up on the conversation Charles and I had during SOF Week.\r\n>>>>>>\r\n>>>>>> Please let me know your interest and availability.\r\n>>>>>>\r\n>>>>>> Thank you,\r\n>>>>>> Rick\r\n>>>>>>\r\n>>>>>> Rick Mislan, PhD\r\n>>>>>> https://mavrix.one\r\n>>>>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>>>>\r\n>>>>>> On May 8, 2025 at 3:14:43 PM, Rick (rick@mavrix.one) wrote:\r\n>>>>>>\r\n>>>>>> Hi Charles,\r\n>>>>>>\r\n>>>>>> Thank you again for your time yesterday on the yacht.\r\n>>>>>> It was a pleasure meeting you in person.\r\n>>>>>> I appreciated the opportunity to connect and\r\n>>>>>> share more about MAVRIX and the work we\'re doing.\r\n>>>>>>\r\n>>>>>> I\'ll be meeting with my team later today and\r\n>>>>>> will follow up to schedule something for next week\r\n>>>>>> so we can continue the conversation and\r\n>>>>>> explore potential next steps.\r\n>>>>>>\r\n>>>>>> Also, I want to take a moment to share\r\n>>>>>> how impressed I was with Bryan Sardoch.\r\n>>>>>> His ability to clearly articulate ORQA’s capabilities,\r\n>>>>>> along with the TTPs he employs in theater, really stood out.\r\n>>>>>> His depth of knowledge and firsthand experience brought\r\n>>>>>> a level of authenticity that resonated with the soldiers who stopped\r\n>>>>>> by.\r\n>>>>>> He’s a tremendous asset to ORQA\r\n>>>>>> and a strong identity for the brand.\r\n>>>>>>\r\n>>>>>> Looking forward to reconnecting soon.\r\n>>>>>> I’ll send over some open dates shortly.\r\n>>>>>>\r\n>>>>>> Respectfully,\r\n>>>>>> Rick\r\n>>>>>>\r\n>>>>>>\r\n>>>>> This e-mail and the documents attached are confidential and intended\r\n>>>>> solely for the addressee; it may also be privileged. If you receive this\r\n>>>>> e-mail in error, please notify the sender immediately and destroy it. As\r\n>>>>> its integrity cannot be secured on the Internet, the Orqa Holding Group\r\n>>>>> liability cannot be triggered for the message content. Although the sender\r\n>>>>> endeavours to maintain a computer virus-free network, the sender does not\r\n>>>>> warrant that this transmission is virus-free and will not be liable for any\r\n>>>>> damages resulting from any virus transmitted.\r\n>>>>>\r\n>>>>>\r\n>>>> This e-mail and the documents attached are confidential and intended\r\n>>>> solely for the addressee; it may also be privileged. If you receive this\r\n>>>> e-mail in error, please notify the sender immediately and destroy it. As\r\n>>>> its integrity cannot be secured on the Internet, the Orqa Holding Group\r\n>>>> liability cannot be triggered for the message content. Although the sender\r\n>>>> endeavours to maintain a computer virus-free network, the sender does not\r\n>>>> warrant that this transmission is virus-free and will not be liable for any\r\n>>>> damages resulting from any virus transmitted.\r\n>>>>\r\n>>>>\r\n>>> This e-mail and the documents attached are confidential and intended\r\n>>> solely for the addressee; it may also be privileged. If you receive this\r\n>>> e-mail in error, please notify the sender immediately and destroy it. As\r\n>>> its integrity cannot be secured on the Internet, the Orqa Holding Group\r\n>>> liability cannot be triggered for the message content. Although the sender\r\n>>> endeavours to maintain a computer virus-free network, the sender does not\r\n>>> warrant that this transmission is virus-free and will not be liable for any\r\n>>> damages resulting from any virus transmitted.\r\n>>>\r\n>>>\r\n>> This e-mail and the documents attached are confidential and intended\r\n>> solely for the addressee; it may also be privileged. If you receive this\r\n>> e-mail in error, please notify the sender immediately and destroy it. As\r\n>> its integrity cannot be secured on the Internet, the Orqa Holding Group\r\n>> liability cannot be triggered for the message content. Although the sender\r\n>> endeavours to maintain a computer virus-free network, the sender does not\r\n>> warrant that this transmission is virus-free and will not be liable for any\r\n>> damages resulting from any virus transmitted.\r\n>>\r\n>\r\n\r\n-- \r\nThis e-mail and the documents attached are confidential and intended solely \r\nfor the addressee; it may also be privileged. If you receive this e-mail in \r\nerror, please notify the sender immediately and destroy it. As its \r\nintegrity cannot be secured on the Internet, the Orqa Holding Group \r\nliability cannot be triggered for the message content. Although the sender \r\nendeavours to maintain a computer virus-free network, the sender does not \r\nwarrant that this transmission is virus-free and will not be liable for any \r\ndamages resulting from any virus transmitted.',0,0,0,0,0,0,'2025-05-28 18:07:58','2025-12-09 19:06:56','2025-12-09 19:06:56','2025-12-09 19:06:56',NULL,NULL,NULL),
(323,4,'<8ACCCBBE-EBFA-450C-B048-3166859F1DC7@impossible-objects.com>',NULL,NULL,'Re: Next steps?','shoover@impossible-objects.com','Steve Hoover','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\">5:30 works<div><br></div><div>Will send out invite</div><div><br id=\"lineBreakAtBeginningOfMessage\"><div><br><blockquote type=\"cite\"><div>On May 28, 2025, at 2:08 PM, Rick &lt;rick@mavrix.one&gt; wrote:</div><br class=\"Apple-interchange-newline\"><div><meta charset=\"UTF-8\"><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Or 530...</div><br style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><div class=\"gmail_signature\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div><div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height: 11px;\"></div></div><br style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><p class=\"airmail_on\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">On May 28, 2025 at 2:02:27 PM, Steve Hoover (<a href=\"mailto:shoover@impossible-objects.com\">shoover@impossible-objects.com</a>) wrote:</p><blockquote type=\"cite\" class=\"clean_bq\" style=\"font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><span><div style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"><div></div><div>Thursday at 2 pm doesn’t work for me.<div><br></div><div>How about late today? &nbsp;5 pm?</div><div><br></div><div>Steve</div><div><br id=\"lineBreakAtBeginningOfMessage\"><div><br><blockquote type=\"cite\"><div>On May 28, 2025, at 11:54 AM, Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; wrote:</div><br class=\"Apple-interchange-newline\"><div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Can you and I do a call before the Friday call?</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Thursday at 2?</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Want to ask some tech questions….</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Thanks!</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Rick</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><br></div><br style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><div class=\"gmail_signature\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div><div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height: 11px;\"></div></div><br style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><p class=\"airmail_on\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">On May 28, 2025 at 9:32:49 AM, Steve Hoover (<a href=\"mailto:shoover@impossible-objects.com\">shoover@impossible-objects.com</a>) wrote:</p><blockquote type=\"cite\" class=\"clean_bq\" style=\"font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><span><div dir=\"auto\"><div></div><div>Rick<div><br></div><div>Yes that works.</div><div><br></div><div>Please send a meeting incur with the call in details.</div><div><br></div><div>Steve<br id=\"lineBreakAtBeginningOfSignature\"><div dir=\"ltr\">Sent from my iPhone</div><div dir=\"ltr\"><br><blockquote type=\"cite\">On May 28, 2025, at 7:44 AM, Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; wrote:<br><br></blockquote></div><blockquote type=\"cite\"><div dir=\"ltr\">﻿<div style=\"font-family: Helvetica, Arial; font-size: 13px;\">Hi Steve,</div><div style=\"font-family: Helvetica, Arial; font-size: 13px;\">Thanks for you patience!</div><div style=\"font-family: Helvetica, Arial; font-size: 13px;\">Does Friday at 130p still work?</div><div style=\"font-family: Helvetica, Arial; font-size: 13px;\"><br></div><div style=\"font-family: Helvetica, Arial; font-size: 13px;\">Rick</div><br><div class=\"gmail_signature\">Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div><div><img src=\"cid:Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height: 11px;\"></div></div><br><p class=\"airmail_on\">On May 27, 2025 at 12:44:40 PM, Steve Hoover (<a href=\"mailto:shoover@impossible-objects.com\">shoover@impossible-objects.com</a>) wrote:</p><blockquote type=\"cite\" class=\"clean_bq\"><span><div style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"><div></div><div>Any progress getting a time locked down?<div><br></div><div>thx</div><div><br></div><div>Steve</div><div><br id=\"lineBreakAtBeginningOfMessage\"><div><br><blockquote type=\"cite\"><div>On May 22, 2025, at 3:53 PM, Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; wrote:</div><br class=\"Apple-interchange-newline\"><div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; margin: 0px;\">Thanks!</div><br style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><div class=\"gmail_signature\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div><div><img src=\"cid:Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height: 11px;\"></div></div><br style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><p class=\"airmail_on\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">On May 22, 2025 at 3:51:28 PM, Steve Hoover (<a href=\"mailto:shoover@impossible-objects.com\">shoover@impossible-objects.com</a>) wrote:</p><blockquote type=\"cite\" class=\"clean_bq\" style=\"font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><span><div><div style=\"caret-color: rgb(0, 0, 0); font-family: UICTFontTextStyleBody; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><a href=\"http://airmail.calendar/2025-05-27%2012:00:00%20EDT\" style=\"overflow-wrap: break-word; word-break: break-word; hyphens: auto;\"><br class=\"Apple-interchange-newline\">Tuesday - noon to 3 pm</a></div><div style=\"caret-color: rgb(0, 0, 0); font-family: UICTFontTextStyleBody; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><a href=\"http://airmail.calendar/2025-05-28%2009:00:00%20EDT\" style=\"overflow-wrap: break-word; word-break: break-word; hyphens: auto;\">Wednesday -9-noon</a><span class=\"Apple-converted-space\">&nbsp;</span>and 1-5</div><div style=\"caret-color: rgb(0, 0, 0); font-family: UICTFontTextStyleBody; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><a href=\"http://airmail.calendar/2025-05-29%2009:00:00%20EDT\" style=\"overflow-wrap: break-word; word-break: break-word; hyphens: auto;\">Thursday 9-3 pm</a></div><div style=\"caret-color: rgb(0, 0, 0); font-family: UICTFontTextStyleBody; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><a href=\"http://airmail.calendar/2025-05-23%2009:00:00%20EDT\" style=\"overflow-wrap: break-word; word-break: break-word; hyphens: auto;\">Friday 9-noon</a>, 1:30- pm</div><div style=\"caret-color: rgb(0, 0, 0); font-family: UICTFontTextStyleBody; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><br></div><div style=\"caret-color: rgb(0, 0, 0); font-family: UICTFontTextStyleBody; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">All times east coast time zone.</div></div></span></blockquote></div></blockquote></div></div></div></div></span></blockquote></div></blockquote></div></div></div></span></blockquote></div></blockquote></div></div></div></div></span></blockquote></div></blockquote></div><br></div></body></html>','5:30 works\r\n\r\nWill send out invite\r\n\r\n\r\n> On May 28, 2025, at 2:08 PM, Rick <rick@mavrix.one> wrote:\r\n> \r\n> Or 530...\r\n> \r\n> Rick Mislan, PhD\r\n> https://mavrix.one <https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n> \r\n> On May 28, 2025 at 2:02:27 PM, Steve Hoover (shoover@impossible-objects.com <mailto:shoover@impossible-objects.com>) wrote:\r\n> \r\n>> Thursday at 2 pm doesn’t work for me.\r\n>> \r\n>> How about late today?  5 pm?\r\n>> \r\n>> Steve\r\n>> \r\n>> \r\n>>> On May 28, 2025, at 11:54 AM, Rick <rick@mavrix.one <mailto:rick@mavrix.one>> wrote:\r\n>>> \r\n>>> Can you and I do a call before the Friday call?\r\n>>> Thursday at 2?\r\n>>> Want to ask some tech questions….\r\n>>> Thanks!\r\n>>> Rick\r\n>>> \r\n>>> \r\n>>> Rick Mislan, PhD\r\n>>> https://mavrix.one <https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n>>> \r\n>>> On May 28, 2025 at 9:32:49 AM, Steve Hoover (shoover@impossible-objects.com <mailto:shoover@impossible-objects.com>) wrote:\r\n>>> \r\n>>>> Rick\r\n>>>> \r\n>>>> Yes that works.\r\n>>>> \r\n>>>> Please send a meeting incur with the call in details.\r\n>>>> \r\n>>>> Steve\r\n>>>> Sent from my iPhone\r\n>>>> \r\n>>>>> On May 28, 2025, at 7:44 AM, Rick <rick@mavrix.one <mailto:rick@mavrix.one>> wrote:\r\n>>>>> \r\n>>>>> ﻿\r\n>>>>> Hi Steve,\r\n>>>>> Thanks for you patience!\r\n>>>>> Does Friday at 130p still work?\r\n>>>>> \r\n>>>>> Rick\r\n>>>>> \r\n>>>>> Rick Mislan, PhD\r\n>>>>> https://mavrix.one <https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n>>>>> \r\n>>>>> On May 27, 2025 at 12:44:40 PM, Steve Hoover (shoover@impossible-objects.com <mailto:shoover@impossible-objects.com>) wrote:\r\n>>>>> \r\n>>>>>> Any progress getting a time locked down?\r\n>>>>>> \r\n>>>>>> thx\r\n>>>>>> \r\n>>>>>> Steve\r\n>>>>>> \r\n>>>>>> \r\n>>>>>>> On May 22, 2025, at 3:53 PM, Rick <rick@mavrix.one <mailto:rick@mavrix.one>> wrote:\r\n>>>>>>> \r\n>>>>>>> Thanks!\r\n>>>>>>> \r\n>>>>>>> Rick Mislan, PhD\r\n>>>>>>> https://mavrix.one <https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n>>>>>>> \r\n>>>>>>> On May 22, 2025 at 3:51:28 PM, Steve Hoover (shoover@impossible-objects.com <mailto:shoover@impossible-objects.com>) wrote:\r\n>>>>>>> \r\n>>>>>>>> \r\n>>>>>>>> Tuesday - noon to 3 pm <http://airmail.calendar/2025-05-27%2012:00:00%20EDT>\r\n>>>>>>>> Wednesday -9-noon <http://airmail.calendar/2025-05-28%2009:00:00%20EDT> and 1-5\r\n>>>>>>>> Thursday 9-3 pm <http://airmail.calendar/2025-05-29%2009:00:00%20EDT>\r\n>>>>>>>> Friday 9-noon <http://airmail.calendar/2025-05-23%2009:00:00%20EDT>, 1:30- pm\r\n>>>>>>>> \r\n>>>>>>>> All times east coast time zone.',0,0,0,0,0,0,'2025-05-28 18:54:36','2025-12-09 19:06:56','2025-12-09 19:06:56','2025-12-09 19:06:56',NULL,NULL,NULL),
(324,4,' <BL3PR20MB49245753F144ABAF9A72A2AEAF67A@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: For later today (3EST)','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nPhase Alpha and Phase Bravo financial projections:</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<a href=\"https://docs.google.com/spreadsheets/d/1iYQenc9qPTA1SvDuX0lCjpk1P40sErsHZfvFKrzOlQQ/edit?usp=sharing\" id=\"OWAa4add334-aa1b-ac17-45d6-2657fc807ebb\" class=\"OWAAutoLink\">https://docs.google.com/spreadsheets/d/1iYQenc9qPTA1SvDuX0lCjpk1P40sErsHZfvFKrzOlQQ/edit?usp=sharing</a></div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<a href=\"https://docs.google.com/spreadsheets/d/1ALz4xijU0hHIXaRv2cMJ7u_dGNYHWPUOAAsolFKrnj0/edit?gid=1395266627#gid=1395266627\" id=\"OWA7200a1b3-6577-7e59-1f03-4275849ea4fa\" class=\"OWAAutoLink\">https://docs.google.com/spreadsheets/d/1ALz4xijU0hHIXaRv2cMJ7u_dGNYHWPUOAAsolFKrnj0/edit?gid=1395266627#gid=1395266627</a></div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Wednesday, May 28, 2025 4:46 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> For later today (3EST)</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\n<a href=\"https://meet.google.com/opj-rgro-bjn\">https://meet.google.com/opj-rgro-bjn</a><br>\r\n</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\n<br>\r\n</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks again,</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div id=\"x_bloop_sign_1748432792139713024\" class=\"x_bloop_sign\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','Phase Alpha and Phase Bravo financial projections:\r\n\r\nhttps://docs.google.com/spreadsheets/d/1iYQenc9qPTA1SvDuX0lCjpk1P40sErsHZfvFKrzOlQQ/edit?usp=sharing\r\n\r\nhttps://docs.google.com/spreadsheets/d/1ALz4xijU0hHIXaRv2cMJ7u_dGNYHWPUOAAsolFKrnj0/edit?gid=1395266627#gid=1395266627\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Wednesday, May 28, 2025 4:46 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: For later today (3EST)\r\n\r\nhttps://meet.google.com/opj-rgro-bjn\r\n\r\nThanks again,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]',0,0,0,0,0,0,'2025-05-28 19:17:46','2025-12-09 19:06:56','2025-12-09 19:06:56','2025-12-09 19:06:56',NULL,NULL,NULL),
(325,4,'<CANkMA8W1rtYVRD0AumPG_5AajTTbyviYbgNxap+OtaesC2+csg@mail.gmail.com>',NULL,NULL,'Meeting 3','avalkenburg@strategic-logix.com','Andrew Valkenburg','<div dir=\"auto\">Rick,</div><div dir=\"auto\"><br></div><div dir=\"auto\">Saw you hadn’t RSVPd or added anyone to the meeting for today so we are looking to reschedule for a time that works for you. </div><div dir=\"auto\"><br></div><div dir=\"auto\">We are available tomorrow afternoon and can be flexible next week.</div><div dir=\"auto\"><br></div><div dir=\"auto\">I’m traveling today back from Ft Riley as you heard anyways, so rescheduling works better for me too. <br clear=\"all\"><br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\">Sincerely,<br><br>Andrew J. Valkenburg<br>Chief Operations Officer | Partner,<br>Strategic Logix<br><br>484-225-9132<br><a href=\"mailto:Avalkenburg@strategic-logix.com\">Avalkenburg@strategic-logix.com</a></div></div></div>','Rick,\r\n\r\nSaw you hadn’t RSVPd or added anyone to the meeting for today so we are\r\nlooking to reschedule for a time that works for you.\r\n\r\nWe are available tomorrow afternoon and can be flexible next week.\r\n\r\nI’m traveling today back from Ft Riley as you heard anyways, so\r\nrescheduling works better for me too.\r\n\r\nSincerely,\r\n\r\nAndrew J. Valkenburg\r\nChief Operations Officer | Partner,\r\nStrategic Logix\r\n\r\n484-225-9132\r\nAvalkenburg@strategic-logix.com',0,0,0,0,0,0,'2025-05-29 14:53:48','2025-12-09 19:06:57','2025-12-09 19:06:57','2025-12-09 19:06:57',NULL,NULL,NULL),
(326,4,'<CAGgBgfCirR+yK0Xw8PBmzr2fWt1nsHsMjvOAo5nrQ4QW+WfNUw@mail.gmail.com>',NULL,NULL,'Today\'s 11am Meet','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div class=\"gmail_default\" style=\"font-size:small\"><a href=\"https://meet.google.com/ejb-drog-vex\">https://meet.google.com/ejb-drog-vex</a><br><br></div></div>','https://meet.google.com/ejb-drog-vex',0,0,0,0,0,0,'2025-05-29 14:56:59','2025-12-09 19:06:57','2025-12-09 19:06:57','2025-12-09 19:06:57',NULL,NULL,NULL),
(327,4,' <LV3PR22MB4438183506DD4EB70772C937A261A@LV3PR22MB4438.namprd22.prod.outlook.com>',NULL,NULL,'Follow-up reschedule','Chris@buildmo.com','Chris Sargent','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nRick,&nbsp;</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nI apologize for the late reschedule request. Tom is swamped getting things set for the SPSC AI+ conference. Can we shift this to the right any time after 12:30 today?</div>\r\n<div id=\"Signature\" class=\"elementToProof\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<p class=\"elementToProof\" style=\"margin-top: 0px; margin-bottom: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 8pt; color: rgb(0, 0, 0); line-height: 11.2px;\"><img width=\"331\" height=\"39\" style=\"width: 248.99pt; height: 29.99pt; max-width: 800px; min-width: auto; min-height: auto; margin: 0px;\" data-outlook-trace=\"F:1|T:1\" src=\"cid:578b9de3-170a-4006-89c3-06e3c350d4ef\"></span></p>\r\n<p class=\"elementToProof\" style=\"margin-top: 0px; margin-bottom: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 8pt; color: rgb(34, 34, 34); background-color: white; line-height: 11.2px;\"><i>A Service-Disabled Veteran-Owned&nbsp;Small Business</i></span></p>\r\n<p class=\"elementToProof\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 8pt; color: rgb(237, 125, 49); line-height: 11.2px;\"><b>________________________________________________________</b></span></p>\r\n<p class=\"elementToProof\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: black; background-color: white; line-height: 12.6px;\"><a href=\"mailto:chris@buildmo.com\" title=\"chris@buildmo.com\" style=\"text-decoration: none; margin-top: 0px; margin-bottom: 0px;\"><img id=\"imageSelected1\" width=\"107\" height=\"89\" style=\"width: 107px; height: 89px; margin-top: 0px; margin-bottom: 0px;\" data-outlook-trace=\"F:1|T:1\" src=\"cid:5d42871e-bde0-483a-81e6-708d5b1a63a0\"></a></span></p>\r\n<p class=\"elementToProof\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(253, 151, 31); line-height: 14px;\"><b>Chris Sargent&nbsp;</b></span></p>\r\n<p class=\"elementToProof\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(0, 0, 0); line-height: 14px;\">Email: Chris@buildmo.com&nbsp;</span></p>\r\n<p class=\"elementToProof\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(0, 0, 0); line-height: 14px;\">Mobile</span><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black; line-height: 14px;\">:\r\n 619 721 5080</span></p>\r\n<p class=\"elementToProof\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(5, 99, 193); line-height: 14px;\"><a href=\"https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764\" target=\"_blank\" rel=\"noopener noreferrer\" data-auth=\"NotApplicable\" data-linkindex=\"1\" data-event-added=\"1\" style=\"margin: 0px;\">5380\r\n Eisenhower Ave, Suite C</a></span></p>\r\n<p class=\"elementToProof\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(5, 99, 193); line-height: 14px;\"><u><a href=\"https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764\" target=\"_blank\" rel=\"noopener noreferrer\" data-auth=\"NotApplicable\" data-linkindex=\"2\" data-event-added=\"1\" style=\"margin: 0px;\">Alexandria,\r\n Virginia 22304</a></u></span></p>\r\n<p class=\"elementToProof\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(243, 144, 29); line-height: 14px;\">​</span></p>\r\n<p class=\"elementToProof\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: &quot;Segoe UI Web (West European)&quot;, &quot;Segoe UI&quot;, -apple-system, BlinkMacSystemFont, Roboto, &quot;Helvetica Neue&quot;, sans-serif; font-size: 10pt; color: rgb(243, 144, 29); background-color: rgb(255, 255, 255); line-height: 14px;\">Innovation\r\n Bootcamp by the seat: <a href=\"https://www.gsaadvantage.gov/advantage/ws/catalog/product_detail?gsin=11000095666640\" style=\"margin: 0px; background-color: rgb(255, 255, 255); text-align: left;\">\r\nProduct Detail (gsaadvantage.gov)</a></span></p>\r\n<p class=\"elementToProof\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(243, 144, 29); line-height: 14px;\">NDAA Compliant COTS sUAS by the seat:\r\n<a href=\"https://www.gsaadvantage.gov/advantage/ws/catalog/product_detail?gsin=11000095666641\" style=\"margin-top: 0px; margin-bottom: 0px;\">\r\nProduct Detail (gsaadvantage.gov)</a></span></p>\r\n<p class=\"elementToProof\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"color: rgb(0, 0, 0);\"><br>\r\n</span></p>\r\n<div class=\"elementToProof\" style=\"margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<span style=\"line-height: 12.6px;\"><br>\r\n</span><br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Rick,\r\n\r\nI apologize for the late reschedule request. Tom is swamped getting things set for the SPSC AI+ conference. Can we shift this to the right any time after 12:30 today?\r\n\r\n\r\n[cid:578b9de3-170a-4006-89c3-06e3c350d4ef]\r\n\r\nA Service-Disabled Veteran-Owned Small Business\r\n\r\n________________________________________________________\r\n\r\n[cid:5d42871e-bde0-483a-81e6-708d5b1a63a0]<mailto:chris@buildmo.com>\r\n\r\nChris Sargent\r\n\r\nEmail: Chris@buildmo.com\r\n\r\nMobile: 619 721 5080\r\n\r\n5380 Eisenhower Ave, Suite C<https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764>\r\n\r\nAlexandria, Virginia 22304<https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764>\r\n\r\n​\r\n\r\nInnovation Bootcamp by the seat: Product Detail (gsaadvantage.gov)<https://www.gsaadvantage.gov/advantage/ws/catalog/product_detail?gsin=11000095666640>\r\n\r\nNDAA Compliant COTS sUAS by the seat: Product Detail (gsaadvantage.gov)<https://www.gsaadvantage.gov/advantage/ws/catalog/product_detail?gsin=11000095666641>\r\n\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-05-30 13:23:01','2025-12-09 19:06:57','2025-12-09 19:06:57','2025-12-09 19:06:57',NULL,NULL,NULL),
(328,4,' <LV3PR22MB4438E84BEDD013D9F834E569A261A@LV3PR22MB4438.namprd22.prod.outlook.com>',NULL,NULL,'Re: [External] Re: Follow-up reschedule','Chris@buildmo.com','Chris Sargent','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nThank you for being flexible, I\'ll send the invite right now.</div>\r\n<div id=\"Signature\" class=\"elementToProof\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<p class=\"elementToProof\" style=\"margin-top: 0px; margin-bottom: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 8pt; color: rgb(0, 0, 0); line-height: 11.2px;\"><img width=\"331\" height=\"39\" style=\"width: 248.99pt; height: 29.99pt; max-width: 800px; min-width: auto; min-height: auto; margin: 0px;\" data-outlook-trace=\"F:1|T:1\" src=\"cid:ff55b059-c902-47b5-838c-d8aa3c5716c5\"></span></p>\r\n<p class=\"elementToProof\" style=\"margin-top: 0px; margin-bottom: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 8pt; color: rgb(34, 34, 34); background-color: white; line-height: 11.2px;\"><i>A Service-Disabled Veteran-Owned&nbsp;Small Business</i></span></p>\r\n<p class=\"elementToProof\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 8pt; color: rgb(237, 125, 49); line-height: 11.2px;\"><b>________________________________________________________</b></span></p>\r\n<p class=\"elementToProof\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: black; background-color: white; line-height: 12.6px;\"><a href=\"mailto:chris@buildmo.com\" title=\"chris@buildmo.com\" style=\"text-decoration: none; margin-top: 0px; margin-bottom: 0px;\"><img id=\"imageSelected1\" width=\"107\" height=\"89\" style=\"width: 107px; height: 89px; margin-top: 0px; margin-bottom: 0px;\" data-outlook-trace=\"F:1|T:1\" src=\"cid:e2d931b6-5df6-4443-b85e-55af848293b4\"></a></span></p>\r\n<p class=\"elementToProof\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(253, 151, 31); line-height: 14px;\"><b>Chris Sargent&nbsp;</b></span></p>\r\n<p class=\"elementToProof\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(0, 0, 0); line-height: 14px;\">Email: Chris@buildmo.com&nbsp;</span></p>\r\n<p class=\"elementToProof\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(0, 0, 0); line-height: 14px;\">Mobile</span><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black; line-height: 14px;\">:\r\n 619 721 5080</span></p>\r\n<p class=\"elementToProof\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(5, 99, 193); line-height: 14px;\"><a href=\"https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764\" target=\"_blank\" rel=\"noopener noreferrer\" data-auth=\"NotApplicable\" data-linkindex=\"1\" data-event-added=\"1\" style=\"margin: 0px;\">5380\r\n Eisenhower Ave, Suite C</a></span></p>\r\n<p class=\"elementToProof\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(5, 99, 193); line-height: 14px;\"><u><a href=\"https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764\" target=\"_blank\" rel=\"noopener noreferrer\" data-auth=\"NotApplicable\" data-linkindex=\"2\" data-event-added=\"1\" style=\"margin: 0px;\">Alexandria,\r\n Virginia 22304</a></u></span></p>\r\n<p class=\"elementToProof\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(243, 144, 29); line-height: 14px;\">​</span></p>\r\n<p class=\"elementToProof\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: &quot;Segoe UI Web (West European)&quot;, &quot;Segoe UI&quot;, -apple-system, BlinkMacSystemFont, Roboto, &quot;Helvetica Neue&quot;, sans-serif; font-size: 10pt; color: rgb(243, 144, 29); background-color: rgb(255, 255, 255); line-height: 14px;\">Innovation\r\n Bootcamp by the seat: <a href=\"https://www.gsaadvantage.gov/advantage/ws/catalog/product_detail?gsin=11000095666640\" style=\"margin: 0px; background-color: rgb(255, 255, 255); text-align: left;\">\r\nProduct Detail (gsaadvantage.gov)</a></span></p>\r\n<p class=\"elementToProof\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: rgb(243, 144, 29); line-height: 14px;\">NDAA Compliant COTS sUAS by the seat:\r\n<a href=\"https://www.gsaadvantage.gov/advantage/ws/catalog/product_detail?gsin=11000095666641\" style=\"margin-top: 0px; margin-bottom: 0px;\">\r\nProduct Detail (gsaadvantage.gov)</a></span></p>\r\n<p class=\"elementToProof\" style=\"line-height: 15.4px; margin: 0px 0px 3pt;\"><span style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); line-height: 12.6px;\"><br>\r\n</span></p>\r\n<div class=\"elementToProof\" style=\"margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, May 30, 2025 9:24 AM<br>\r\n<b>To:</b> Chris Sargent &lt;chris@buildmo.com&gt;<br>\r\n<b>Subject:</b> [External] Re: Follow-up reschedule</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>1230 works.&nbsp;<br>\r\n<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<p class=\"x_gmail_quote\" style=\"color:#000\">On May 30, 2025 at 9:23:01 AM, Chris Sargent (<a href=\"mailto:chris@buildmo.com\">chris@buildmo.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_gmail_quote\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nRick,&nbsp;</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nI apologize for the late reschedule request. Tom is swamped getting things set for the SPSC AI+ conference. Can we shift this to the right any time after 12:30 today?</div>\r\n<div id=\"x_Signature\" class=\"x_elementToProof\">\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<p class=\"x_elementToProof\" style=\"margin-top:0px; margin-bottom:0px\"><span style=\"font-family:Arial,sans-serif; font-size:8pt; color:rgb(0,0,0); line-height:11.2px\"><img width=\"331\" height=\"39\" style=\"width:248.99pt; height:29.99pt; max-width:800px; min-width:auto; min-height:auto; margin:0px\" data-outlook-trace=\"F:2|T:2\" src=\"cid:47BA54B0-871A-4215-909B-8DCCFBE35FB1\"></span></p>\r\n<p class=\"x_elementToProof\" style=\"margin-top:0px; margin-bottom:0px\"><span style=\"font-family:Arial,sans-serif; font-size:8pt; color:rgb(34,34,34); background-color:white; line-height:11.2px\"><i>A Service-Disabled Veteran-Owned&nbsp;Small Business</i></span></p>\r\n<p class=\"x_elementToProof\" style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:8pt; color:rgb(237,125,49); line-height:11.2px\"><b>________________________________________________________</b></span></p>\r\n<p class=\"x_elementToProof\" style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black; background-color:white; line-height:12.6px\"><a href=\"mailto:chris@buildmo.com\" title=\"chris@buildmo.com\" style=\"text-decoration:none; margin-top:0px; margin-bottom:0px\"><img id=\"x_imageSelected1\" width=\"107\" height=\"89\" style=\"width:107px; height:89px; margin-top:0px; margin-bottom:0px\" data-outlook-trace=\"F:2|T:2\" src=\"cid:4B26B33A-DC76-4A74-B4DB-30927AD3AF94\"></a></span></p>\r\n<p class=\"x_elementToProof\" style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:rgb(253,151,31); line-height:14px\"><b>Chris Sargent&nbsp;</b></span></p>\r\n<p class=\"x_elementToProof\" style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:rgb(0,0,0); line-height:14px\">Email: Chris@buildmo.com&nbsp;</span></p>\r\n<p class=\"x_elementToProof\" style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:rgb(0,0,0); line-height:14px\">Mobile</span><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black; line-height:14px\">:\r\n 619 721 5080</span></p>\r\n<p class=\"x_elementToProof\" style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:rgb(5,99,193); line-height:14px\"><a href=\"https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764\" target=\"_blank\" rel=\"noopener noreferrer\" data-auth=\"NotApplicable\" data-linkindex=\"1\" data-event-added=\"1\" style=\"margin:0px\">5380\r\n Eisenhower Ave, Suite C</a></span></p>\r\n<p class=\"x_elementToProof\" style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:rgb(5,99,193); line-height:14px\"><u><a href=\"https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764\" target=\"_blank\" rel=\"noopener noreferrer\" data-auth=\"NotApplicable\" data-linkindex=\"2\" data-event-added=\"1\" style=\"margin:0px\">Alexandria,\r\n Virginia 22304</a></u></span></p>\r\n<p class=\"x_elementToProof\" style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:rgb(243,144,29); line-height:14px\">​</span></p>\r\n<p class=\"x_elementToProof\" style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:&quot;Segoe UI Web (West European)&quot;,&quot;Segoe UI&quot;,-apple-system,BlinkMacSystemFont,Roboto,&quot;Helvetica Neue&quot;,sans-serif; font-size:10pt; color:rgb(243,144,29); background-color:rgb(255,255,255); line-height:14px\">Innovation\r\n Bootcamp by the seat: <a href=\"https://www.gsaadvantage.gov/advantage/ws/catalog/product_detail?gsin=11000095666640\" style=\"margin:0px; background-color:rgb(255,255,255); text-align:left\">\r\nProduct Detail (gsaadvantage.gov)</a></span></p>\r\n<p class=\"x_elementToProof\" style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:rgb(243,144,29); line-height:14px\">NDAA Compliant COTS sUAS by the seat:\r\n<a href=\"https://www.gsaadvantage.gov/advantage/ws/catalog/product_detail?gsin=11000095666641\" style=\"margin-top:0px; margin-bottom:0px\">\r\nProduct Detail (gsaadvantage.gov)</a></span></p>\r\n<p class=\"x_elementToProof\" style=\"line-height:15.4px; margin:0px 0px 3pt\"><span style=\"color:rgb(0,0,0)\"><br>\r\n</span></p>\r\n<div class=\"x_elementToProof\" style=\"margin:0px; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<span style=\"line-height:12.6px\"><br>\r\n</span><br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Thank you for being flexible, I\'ll send the invite right now.\r\n\r\n\r\n[cid:ff55b059-c902-47b5-838c-d8aa3c5716c5]\r\n\r\nA Service-Disabled Veteran-Owned Small Business\r\n\r\n________________________________________________________\r\n\r\n[cid:e2d931b6-5df6-4443-b85e-55af848293b4]<mailto:chris@buildmo.com>\r\n\r\nChris Sargent\r\n\r\nEmail: Chris@buildmo.com\r\n\r\nMobile: 619 721 5080\r\n\r\n5380 Eisenhower Ave, Suite C<https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764>\r\n\r\nAlexandria, Virginia 22304<https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764>\r\n\r\n​\r\n\r\nInnovation Bootcamp by the seat: Product Detail (gsaadvantage.gov)<https://www.gsaadvantage.gov/advantage/ws/catalog/product_detail?gsin=11000095666640>\r\n\r\nNDAA Compliant COTS sUAS by the seat: Product Detail (gsaadvantage.gov)<https://www.gsaadvantage.gov/advantage/ws/catalog/product_detail?gsin=11000095666641>\r\n\r\n\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, May 30, 2025 9:24 AM\r\nTo: Chris Sargent <chris@buildmo.com>\r\nSubject: [External] Re: Follow-up reschedule\r\n\r\n1230 works.\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\nOn May 30, 2025 at 9:23:01 AM, Chris Sargent (chris@buildmo.com<mailto:chris@buildmo.com>) wrote:\r\n\r\nRick,\r\n\r\nI apologize for the late reschedule request. Tom is swamped getting things set for the SPSC AI+ conference. Can we shift this to the right any time after 12:30 today?\r\n\r\n\r\n[cid:47BA54B0-871A-4215-909B-8DCCFBE35FB1]\r\n\r\nA Service-Disabled Veteran-Owned Small Business\r\n\r\n________________________________________________________\r\n\r\n[cid:4B26B33A-DC76-4A74-B4DB-30927AD3AF94]<mailto:chris@buildmo.com>\r\n\r\nChris Sargent\r\n\r\nEmail: Chris@buildmo.com\r\n\r\nMobile: 619 721 5080\r\n\r\n5380 Eisenhower Ave, Suite C<https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764>\r\n\r\nAlexandria, Virginia 22304<https://www.google.com/maps/place/The+Garden+Alexandria/@38.8045506,-77.1457656,15z/data=!4m8!1m2!2m1!1sthe+garden!3m4!1s0x89b7b3c2071ec49d:0x96ffec9ecbb3cfd1!8m2!3d38.8006095!4d-77.126764>\r\n\r\n​\r\n\r\nInnovation Bootcamp by the seat: Product Detail (gsaadvantage.gov)<https://www.gsaadvantage.gov/advantage/ws/catalog/product_detail?gsin=11000095666640>\r\n\r\nNDAA Compliant COTS sUAS by the seat: Product Detail (gsaadvantage.gov)<https://www.gsaadvantage.gov/advantage/ws/catalog/product_detail?gsin=11000095666641>\r\n\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-05-30 13:27:26','2025-12-09 19:06:58','2025-12-09 19:06:58','2025-12-09 19:06:58',NULL,NULL,NULL),
(329,4,' <LV3PR22MB4438380C46A00BA9CBD6E161A261A@LV3PR22MB4438.namprd22.prod.outlook.com>',NULL,NULL,'Mavrix Followup','Chris@buildmo.com','Chris Sargent','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n</head>\r\n<body>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nRick,&nbsp;</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nThank you for the initial brief on Mavrix. Here is the invite for the follow up on Friday. I scheduled for one hour, however, if that is in conflict with schedules we can cut it short.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nR/s,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nChris</div>\r\n<br>\r\n<div style=\"max-width: 600px; color: #242424; font-family:\'Segoe UI\',\'Helvetica Neue\',Helvetica,Arial,sans-serif\" class=\"me-email-text\">\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n<div style=\"margin-bottom: 12px;\"><span class=\"me-email-text\" style=\"font-size: 24px;font-weight: 700; margin-right:12px;\">Microsoft Teams</span>\r\n<a id=\"meet_invite_block.action.help\" class=\"me-email-link\" style=\"font-size:14px; text-decoration:underline; color: #5B5FC7;\" href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\">\r\nNeed help?</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><a id=\"meet_invite_block.action.join_link\" title=\"Meeting join link\" class=\"me-email-headline\" style=\"font-size: 20px; font-weight:600; text-decoration: underline; color: #5B5FC7;\" href=\"https://teams.microsoft.com/l/meetup-join/19%3ameeting_MjU0NTNmZjYtNDBhOC00MjQ2LThlYjUtNDU0YjQ2MGEwODU0%40thread.v2/0?context=%7b%22Tid%22%3a%22eb89ee6f-fe71-493b-ae11-557a65d1f2ac%22%2c%22Oid%22%3a%22af5fd021-7cab-412d-a676-9e48475091f7%22%7d\" target=\"_blank\" rel=\"noreferrer noopener\">Join\r\n the meeting now</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Meeting ID:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">242 204 498 565 6</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Passcode:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">y7jC92cv</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px; max-width: 532px;\">\r\n<hr style=\"border: 0; background: #D1D1D1; height: 1px;\">\r\n</div>\r\n<div>\r\n<div style=\"margin-bottom: 6px;\"><span class=\"me-email-text\" style=\"font-size: 16px; color: #242424; font-weight: 600; margin-right: 4px;\">Dial in by phone</span>\r\n</div>\r\n<div style=\"margin-bottom: 6px;\"><a id=\"meet_invite_block.action.join_phone_number1\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7; margin-right: 6px;\" href=\"tel:+12762432011,,46715418#\">+1 276-243-2011,,46715418#</a>\r\n<span class=\"me-email-text\" style=\"font-size: 14px; color: #616161;\">United States, Marion</span>\r\n</div>\r\n<div style=\"margin-bottom: 6px;\"><a id=\"meet_invite_block.action.join_phone_find_local_number\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7\" href=\"https://dialin.teams.microsoft.com/89b235b5-9b43-4da1-9737-2f6ee26e72d4?id=46715418\">Find\r\n a local number</a> </div>\r\n</div>\r\n<div style=\"margin-bottom: 24px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Phone conference ID:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">467 154 18#</span>\r\n</div>\r\n<div><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">For organizers:\r\n</span><a id=\"meet_invite_block.action.organizer_meet_options\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7;\" target=\"_blank\" href=\"https://teams.microsoft.com/meetingOptions/?organizerId=af5fd021-7cab-412d-a676-9e48475091f7&amp;tenantId=eb89ee6f-fe71-493b-ae11-557a65d1f2ac&amp;threadId=19_meeting_MjU0NTNmZjYtNDBhOC00MjQ2LThlYjUtNDU0YjQ2MGEwODU0@thread.v2&amp;messageId=0&amp;language=en-US\" rel=\"noreferrer noopener\">Meeting\r\n options</a> <span style=\"color: #D1D1D1\">|</span> <a id=\"meet_invite_block.action.organizer_reset_dialin_pin\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7;\" target=\"_blank\" href=\"https://dialin.teams.microsoft.com/usp/pstnconferencing\" rel=\"noreferrer noopener\">\r\nReset dial-in PIN</a> </div>\r\n<div style=\"margin-top: 24px; margin-bottom: 6px;\"></div>\r\n<div style=\"margin-bottom: 24px;\"></div>\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n</div>\r\n</body>\r\n</html>','Rick,\r\nThank you for the initial brief on Mavrix. Here is the invite for the follow up on Friday. I scheduled for one hour, however, if that is in conflict with schedules we can cut it short.\r\n\r\nR/s,\r\nChris\r\n\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://teams.microsoft.com/l/meetup-join/19%3ameeting_MjU0NTNmZjYtNDBhOC00MjQ2LThlYjUtNDU0YjQ2MGEwODU0%40thread.v2/0?context=%7b%22Tid%22%3a%22eb89ee6f-fe71-493b-ae11-557a65d1f2ac%22%2c%22Oid%22%3a%22af5fd021-7cab-412d-a676-9e48475091f7%22%7d>\r\nMeeting ID: 242 204 498 565 6\r\nPasscode: y7jC92cv\r\n________________________________\r\nDial in by phone\r\n+1 276-243-2011,,46715418#<tel:+12762432011,,46715418#> United States, Marion\r\nFind a local number<https://dialin.teams.microsoft.com/89b235b5-9b43-4da1-9737-2f6ee26e72d4?id=46715418>\r\nPhone conference ID: 467 154 18#\r\nFor organizers: Meeting options<https://teams.microsoft.com/meetingOptions/?organizerId=af5fd021-7cab-412d-a676-9e48475091f7&tenantId=eb89ee6f-fe71-493b-ae11-557a65d1f2ac&threadId=19_meeting_MjU0NTNmZjYtNDBhOC00MjQ2LThlYjUtNDU0YjQ2MGEwODU0@thread.v2&messageId=0&language=en-US> | Reset dial-in PIN<https://dialin.teams.microsoft.com/usp/pstnconferencing>\r\n________________________________________________________________________________',0,0,0,0,0,0,'2025-05-30 13:28:14','2025-12-09 19:06:58','2025-12-09 19:06:58','2025-12-09 19:06:58',NULL,NULL,NULL),
(330,4,'<3581EFBF-C2B7-4947-8186-05389C33C2A2@impossible-objects.com>',NULL,NULL,'Re: For todays mtg...','shoover@impossible-objects.com','Steve Hoover','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\">Got it. &nbsp;Talk to you then.<div><br></div><div>Steve</div><div><br id=\"lineBreakAtBeginningOfMessage\"><div><br><blockquote type=\"cite\"><div>On May 30, 2025, at 12:24 PM, Rick &lt;rick@mavrix.one&gt; wrote:</div><br class=\"Apple-interchange-newline\"><div><meta charset=\"UTF-8\"><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Hi Steve,</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Here’s the link for today’s call at 1:30p EST</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><a href=\"https://meet.google.com/ryv-whqk-izf\">https://meet.google.com/ryv-whqk-izf</a><br></div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Please confirm receipt.</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><br></div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Looking forward to the call!</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Thank you,</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Rick</div><br style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><div class=\"gmail_signature\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div><div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height: 11px;\"></div></div></div></blockquote></div><br></div></body></html>','Got it.  Talk to you then.\r\n\r\nSteve\r\n\r\n\r\n> On May 30, 2025, at 12:24 PM, Rick <rick@mavrix.one> wrote:\r\n> \r\n> Hi Steve,\r\n> Here’s the link for today’s call at 1:30p EST\r\n> https://meet.google.com/ryv-whqk-izf\r\n> Please confirm receipt.\r\n> \r\n> Looking forward to the call!\r\n> Thank you,\r\n> Rick\r\n> \r\n> Rick Mislan, PhD\r\n> https://mavrix.one <https://mavrix.onehttps//mavrix.onehttps://mavrix.one>',0,0,0,0,0,0,'2025-05-30 16:30:13','2025-12-09 19:06:58','2025-12-09 19:06:58','2025-12-09 19:06:58',NULL,NULL,NULL),
(331,4,' <DM6PR07MB58509882AF2551EB911D92E8AD61A@DM6PR07MB5850.namprd07.prod.outlook.com>',NULL,NULL,'=?utf-8?B?UmU6IE5leHTigKY=?=','rich@achramlabs.com','Richard Van Voorst','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;\r\n	panose-1:2 11 0 4 2 2 2 2 2 4;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:10.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\nspan.EmailStyle18\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Received! Thanks Rick<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Rich<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div id=\"mail-editor-reference-message-container\">\r\n<div>\r\n<div>\r\n<div style=\"border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\"><b><span style=\"font-size:12.0pt;color:black\">From:\r\n</span></b><span style=\"font-size:12.0pt;color:black\">Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Date: </b>Thursday, May 29, 2025 at 8:33</span><span style=\"font-size:12.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"font-size:12.0pt;color:black\">PM<br>\r\n<b>To: </b>Richard Van Voorst &lt;rich@achramlabs.com&gt;<br>\r\n<b>Subject: </b>Next…<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">i forgot to list the mobile lab….see image…&nbsp;<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">Very much on my list…&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">based on the supply chain purchases we’re&nbsp;doing…<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">#9 mobile production facilities.&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">Talk soon!<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">Rick<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">Rick Mislan, PhD<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\"><a href=\"https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one\">https://mavrix.one</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\"><img border=\"0\" id=\"_x0000_i1025\" src=\"file:////Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Received! Thanks Rick\r\n\r\nRich\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nDate: Thursday, May 29, 2025 at 8:33 PM\r\nTo: Richard Van Voorst <rich@achramlabs.com>\r\nSubject: Next…\r\ni forgot to list the mobile lab….see image…\r\nVery much on my list…\r\nbased on the supply chain purchases we’re doing…\r\n#9 mobile production facilities.\r\nTalk soon!\r\nRick\r\n\r\n\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one>\r\n[X]\r\n',0,0,0,0,0,0,'2025-05-30 17:10:08','2025-12-09 19:06:59','2025-12-09 19:06:59','2025-12-09 19:06:59',NULL,NULL,NULL),
(332,4,' <DM6PR07MB58504A9BF7F67417F7BFCC8AAD61A@DM6PR07MB5850.namprd07.prod.outlook.com>',NULL,NULL,'=?utf-8?B?UmU6IFRoaW5ncyB0aGF0IG1ha2UgeW91IGdvIGhtbW3igKY=?=','rich@achramlabs.com','Richard Van Voorst','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:0 0 0 0 0 0 0 0 0 0;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;\r\n	panose-1:2 11 0 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:inherit;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:10.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\nspan.EmailStyle18\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Received this as well!<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Rich<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div id=\"mail-editor-reference-message-container\">\r\n<div>\r\n<div>\r\n<div style=\"border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\"><b><span style=\"font-size:12.0pt;color:black\">From:\r\n</span></b><span style=\"font-size:12.0pt;color:black\">Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Date: </b>Thursday, May 29, 2025 at 10:02</span><span style=\"font-size:12.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"font-size:12.0pt;color:black\">AM<br>\r\n<b>To: </b>Richard Van Voorst &lt;rich@achramlabs.com&gt;<br>\r\n<b>Subject: </b>Things that make you go hmmm…<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">See attached. Please confirm receipt.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Please let me know when we can schedule a follow-up call.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">I prefer some (#2,4,5,8 (in any order)) more than others on this list:<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">But they’re all pretty sexy! Let’s get started!<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Thanks again,<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Rick<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<div id=\"bloop_sign_1714993284846351104\">\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"vertical-align:baseline\"><b><i><span style=\"font-size:10.5pt;font-family:&quot;inherit&quot;,serif;color:#201F1E\">Richard P. Mislan, PhD (COLA ’91) •&nbsp;</span></i></b><i><span style=\"font-family:Helvetica\"><a href=\"http://www.Mislan.com\">Mislan.com</a></span></i><i><span style=\"font-size:9.0pt;font-family:Helvetica\">&nbsp;•&nbsp;</span></i><i><span style=\"font-family:&quot;Arial&quot;,sans-serif\"><a href=\"https://www.linkedin.com/in/rmislan/\"><span style=\"font-family:Helvetica\">LinkedIn.com/in/rmislan/</span></a></span></i><span style=\"font-family:&quot;Arial&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<div id=\"Signature\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"vertical-align:baseline\"><b><span style=\"font-size:9.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#201F1E;border:none windowtext 1.0pt;padding:0in\">Rochester Institute of Technology</span></b><span style=\"font-family:Helvetica;color:#201F1E\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"vertical-align:baseline\"><span style=\"font-size:9.0pt;font-family:Helvetica;color:#201F1E;border:none windowtext 1.0pt;padding:0in\">Senior Lecturer, MIS, Marketing &amp; Analytics</span><span style=\"font-family:Helvetica;color:#201F1E;border:none windowtext 1.0pt;padding:0in\">,&nbsp;</span><span style=\"font-size:9.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#201F1E\">Saunders\r\n College of Business •&nbsp;</span><span style=\"font-family:Helvetica;color:#201F1E\"><a href=\"http://saunders.rit.edu/\"><i><span style=\"font-size:9.0pt;font-family:&quot;Arial&quot;,sans-serif\">Saunders.RIT.edu</span></i><span style=\"font-size:9.0pt;font-family:&quot;Arial&quot;,sans-serif\">\r\n</span></a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"vertical-align:baseline\"><span style=\"font-size:9.0pt;font-family:Helvetica;color:#201F1E;border:none windowtext 1.0pt;padding:0in\">Creative Director, Cyber Range &amp; Training Center</span><span style=\"font-family:Helvetica;color:#201F1E;border:none windowtext 1.0pt;padding:0in\">,&nbsp;</span><span style=\"font-size:9.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#201F1E\">ESL\r\n Global Cybersecurity Institute •&nbsp;<i><a href=\"http://cyber.rit.edu/\">cyber.RIT.edu</a> &nbsp;</i></span><span style=\"font-family:Helvetica;color:#201F1E\">\r\n<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"vertical-align:baseline\"><span style=\"font-size:9.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#201F1E;border:none windowtext 1.0pt;padding:0in\">World’s</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:#201F1E;border:none windowtext 1.0pt;padding:0in\">&nbsp;</span><span style=\"font-size:9.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#201F1E;border:none windowtext 1.0pt;padding:0in\">Largest\r\n KerPlunk&nbsp;</span><span style=\"font-size:9.0pt;font-family:&quot;Arial&quot;,sans-serif;border:none windowtext 1.0pt;padding:0in\">•&nbsp;</span><i><span style=\"font-family:Helvetica\"><a href=\"http://kerplunk.rit.edu/\">KerPlunk.RIT.edu</a></span></i><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"Signature\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"vertical-align:baseline\"><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:#201F1E;border:none windowtext 1.0pt;padding:0in\">Please help me find my stripes!\r\n<i>•&nbsp;</i></span><i><span style=\"font-family:&quot;inherit&quot;,serif;color:#201F1E;border:none windowtext 1.0pt;padding:0in\"><a href=\"http://ritchiefindshisstripes.com/\" target=\"_blank\">RITchieFindsHisStripes.com</a>\r\n</span></i><span style=\"font-family:&quot;inherit&quot;,serif;color:#201F1E\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"60\" style=\"width:45.0pt;border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:9.0pt .75pt .75pt .75pt\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica;color:#201F1E\">&nbsp;</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:#212529\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"line-height:9.0pt;vertical-align:baseline\"><i><span style=\"font-size:7.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#000001;border:none windowtext 1.0pt;padding:0in\">CONFIDENTIALITY NOTICE</span></i><i><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:#201F1E;border:none windowtext 1.0pt;padding:0in\">\r\n</span></i><i><span style=\"font-size:7.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#000001;border:none windowtext 1.0pt;padding:0in\">: The contents of this email message and any attachments are intended solely for the addressee(s) and may contain confidential\r\n and/or privileged information and may be legally protected from disclosure. If you are not the intended recipient of this message or their agent, or if this message has been addressed to you in error, please immediately alert the sender by reply email and\r\n then delete this message and any attachments. If you are not the intended recipient, you are hereby notified that any use, dissemination, copying, or storage of this message or its attachments is strictly prohibited.</span></i><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:#201F1E;border:none windowtext 1.0pt;padding:0in\">\r\n</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:#212529\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"bloop_sign_1748527111974655232\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Rick Mislan, PhD<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><a href=\"https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one\">https://mavrix.one</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><img border=\"0\" id=\"_x0000_i1025\" src=\"file:////Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Received this as well!\r\n\r\nRich\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nDate: Thursday, May 29, 2025 at 10:02 AM\r\nTo: Richard Van Voorst <rich@achramlabs.com>\r\nSubject: Things that make you go hmmm…\r\nSee attached. Please confirm receipt.\r\nPlease let me know when we can schedule a follow-up call.\r\n\r\nI prefer some (#2,4,5,8 (in any order)) more than others on this list:\r\nBut they’re all pretty sexy! Let’s get started!\r\n\r\nThanks again,\r\nRick\r\n\r\nRichard P. Mislan, PhD (COLA ’91) • Mislan.com<http://www.Mislan.com> • LinkedIn.com/in/rmislan/<https://www.linkedin.com/in/rmislan/>\r\nRochester Institute of Technology\r\nSenior Lecturer, MIS, Marketing & Analytics, Saunders College of Business • Saunders.RIT.edu <http://saunders.rit.edu/>\r\nCreative Director, Cyber Range & Training Center, ESL Global Cybersecurity Institute • cyber.RIT.edu<http://cyber.rit.edu/>\r\nWorld’s Largest KerPlunk • KerPlunk.RIT.edu<http://kerplunk.rit.edu/>\r\nPlease help me find my stripes! • RITchieFindsHisStripes.com<http://ritchiefindshisstripes.com/>\r\n\r\nCONFIDENTIALITY NOTICE : The contents of this email message and any attachments are intended solely for the addressee(s) and may contain confidential and/or privileged information and may be legally protected from disclosure. If you are not the intended recipient of this message or their agent, or if this message has been addressed to you in error, please immediately alert the sender by reply email and then delete this message and any attachments. If you are not the intended recipient, you are hereby notified that any use, dissemination, copying, or storage of this message or its attachments is strictly prohibited.\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one>\r\n[X]\r\n',0,0,0,0,0,0,'2025-05-30 17:10:32','2025-12-09 19:06:59','2025-12-09 19:06:59','2025-12-09 19:06:59',NULL,NULL,NULL),
(333,4,'<calendar-cf525519-5f1e-4aaf-a9a5-4f819300c0c8@google.com>',NULL,NULL,'Invitation: Mavrix <> Strategic Logix Pitch @ Wed Jun 4, 2025 12pm - 1pm (EDT) (rick@mavrix.one)','avalkenburg@strategic-logix.com','Andrew Valkenburg','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v143/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v117/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation from Andrew Valkenburg\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"21q7l8794hp6vrdfefa578avpo\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Mavrix &lt;&gt; Strategic Logix Pitch</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MjFxN2w4Nzk0aHA2dnJkZmVmYTU3OGF2cG8gcmlja0BtYXZyaXgub25l&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTI2OGQ1NzFhYzhlN2I0NTM4YjNiYzlhZWI0NjFmNjE0MWQzYzgxYzY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250604T160000Z\"></time><time itemprop=\"endDate\" datetime=\"20250604T170000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">Join with Google Meet – You have been invited by Andrew Valkenburg to attend an event named Mavrix &lt;&gt; Strategic Logix Pitch on Wednesday Jun 4, 2025 ⋅ 12pm – 1pm (Eastern Time - New York).</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:28px;\"><a href=\"https://meet.google.com/mvr-cfgx-aiu?hs=224\" class=\"primary-button-text\" style=\"display: inline-block;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"display: inline-block\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"background-color: #1a73e8; cursor: auto; padding: 10px 25px; border: none; border-radius: 4px; margin: 0;\" class=\"primary-button\"><!--[if mso]><a href=\"https://meet.google.com/mvr-cfgx-aiu?hs=224\" class=\"primary-button-text\" target=\"_blank\"><![endif]--><span class=\"primary-button-text\" style=\"font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\">Join with Google Meet</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Meeting link</h2></td></tr></table><!-- Use grey text for the Meet link--><div><a style=\"display: inline-block;;color: #70757a; text-decoration: none;\" class=\"secondary-text underline-on-hover\" href=\"https://meet.google.com/mvr-cfgx-aiu?hs=224\">meet.google.com/mvr-cfgx-aiu</a></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Join by phone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(US) </span><a href=\"tel:+1-786-681-1865%3B603620126%23\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+1 786-681-1865</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">PIN: 603620126</span><br><br><a href=\"https://tel.meet/mvr-cfgx-aiu?pin=6645775451767&amp;hs=0\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">More phone numbers</a><br></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250604T160000Z\"></time><time itemprop=\"endDate\" datetime=\"20250604T170000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Wednesday Jun 4, 2025 ⋅ 12pm – 1pm (Eastern Time - New York)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:avalkenburg@strategic-logix.com\">Andrew Valkenburg</a></span><meta itemprop=\"email\" content=\"avalkenburg@strategic-logix.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Andrew Valkenburg\"/><meta itemprop=\"email\" content=\"avalkenburg@strategic-logix.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jschnipke@strategic-logix.com\">Jeremy Schnipke</a></span><meta itemprop=\"email\" content=\"jschnipke@strategic-logix.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MjFxN2w4Nzk0aHA2dnJkZmVmYTU3OGF2cG8gcmlja0BtYXZyaXgub25l&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTI2OGQ1NzFhYzhlN2I0NTM4YjNiYzlhZWI0NjFmNjE0MWQzYzgxYzY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MjFxN2w4Nzk0aHA2dnJkZmVmYTU3OGF2cG8gcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTI2OGQ1NzFhYzhlN2I0NTM4YjNiYzlhZWI0NjFmNjE0MWQzYzgxYzY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MjFxN2w4Nzk0aHA2dnJkZmVmYTU3OGF2cG8gcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTI2OGQ1NzFhYzhlN2I0NTM4YjNiYzlhZWI0NjFmNjE0MWQzYzgxYzY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MjFxN2w4Nzk0aHA2dnJkZmVmYTU3OGF2cG8gcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTI2OGQ1NzFhYzhlN2I0NTM4YjNiYzlhZWI0NjFmNjE0MWQzYzgxYzY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MjFxN2w4Nzk0aHA2dnJkZmVmYTU3OGF2cG8gcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTI2OGQ1NzFhYzhlN2I0NTM4YjNiYzlhZWI0NjFmNjE0MWQzYzgxYzY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MjFxN2w4Nzk0aHA2dnJkZmVmYTU3OGF2cG8gcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTI2OGQ1NzFhYzhlN2I0NTM4YjNiYzlhZWI0NjFmNjE0MWQzYzgxYzY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MjFxN2w4Nzk0aHA2dnJkZmVmYTU3OGF2cG8gcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTI2OGQ1NzFhYzhlN2I0NTM4YjNiYzlhZWI0NjFmNjE0MWQzYzgxYzY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MjFxN2w4Nzk0aHA2dnJkZmVmYTU3OGF2cG8gcmlja0BtYXZyaXgub25l&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTI2OGQ1NzFhYzhlN2I0NTM4YjNiYzlhZWI0NjFmNjE0MWQzYzgxYzY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MjFxN2w4Nzk0aHA2dnJkZmVmYTU3OGF2cG8gcmlja0BtYXZyaXgub25l&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTI2OGQ1NzFhYzhlN2I0NTM4YjNiYzlhZWI0NjFmNjE0MWQzYzgxYzY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','Mavrix <> Strategic Logix Pitch\r\nWednesday Jun 4, 2025 ⋅ 12pm – 1pm\r\nEastern Time - New York\r\n\r\nJoin with Google Meet\r\nhttps://meet.google.com/mvr-cfgx-aiu?hs=224\r\n\r\n\r\n	\r\nJoin by phone\r\n(US) +1 786-681-1865\r\nPIN: 603620126\r\n\r\nMore phone numbers\r\nhttps://tel.meet/mvr-cfgx-aiu?pin=6645775451767&hs=0\r\n\r\n\r\nOrganizer\r\nAndrew Valkenburg\r\navalkenburg@strategic-logix.com\r\n\r\nGuests\r\nAndrew Valkenburg - organizer\r\nrick@mavrix.one\r\nJeremy Schnipke\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=MjFxN2w4Nzk0aHA2dnJkZmVmYTU3OGF2cG8gcmlja0BtYXZyaXgub25l&tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTI2OGQ1NzFhYzhlN2I0NTM4YjNiYzlhZWI0NjFmNjE0MWQzYzgxYzY&ctz=America%2FNew_York&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=MjFxN2w4Nzk0aHA2dnJkZmVmYTU3OGF2cG8gcmlja0BtYXZyaXgub25l&tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTI2OGQ1NzFhYzhlN2I0NTM4YjNiYzlhZWI0NjFmNjE0MWQzYzgxYzY&ctz=America%2FNew_York&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-05-30 23:23:53','2025-12-09 19:06:59','2025-12-09 19:06:59','2025-12-09 19:06:59',NULL,NULL,NULL),
(334,4,' <BL3PR20MB49242F238BE7398861BA75B5AF60A@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: Based on our last convo...','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n</head>\r\n<body>\r\n<div>\r\n<div dir=\"ltr\">Hi Rick,</div>\r\n<div dir=\"ltr\"><br>\r\n</div>\r\n<div dir=\"ltr\">Yes, very much so, would you like me to expand upon this and then get back to you? I had been working on my own, calling it the “automation roadmap” but this format is also very good and I could migrate it over.</div>\r\n<div dir=\"ltr\"><br>\r\n</div>\r\n<div dir=\"ltr\">Thanks,</div>\r\n<div dir=\"ltr\">Jason</div>\r\n</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"ms-outlook-mobile-signature\">Get <a href=\"https://aka.ms/o0ukef\">Outlook for iOS</a></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Saturday, May 31, 2025 9:53:26 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Based on our last convo...</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nWould this be useful?</div>\r\nSee attached. confirm receipt...\r\n<div>Thanks,</div>\r\n<div>Rick<br>\r\n<div class=\"x_bloop_sign\" id=\"x_bloop_sign_1748710343744053760\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height:11px\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','Hi Rick,\r\n\r\nYes, very much so, would you like me to expand upon this and then get back to you? I had been working on my own, calling it the “automation roadmap” but this format is also very good and I could migrate it over.\r\n\r\nThanks,\r\nJason\r\n\r\nGet Outlook for iOS<https://aka.ms/o0ukef>\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Saturday, May 31, 2025 9:53:26 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Based on our last convo...\r\n\r\nWould this be useful?\r\nSee attached. confirm receipt...\r\nThanks,\r\nRick\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]',0,0,0,0,0,0,'2025-05-31 17:32:13','2025-12-09 19:07:00','2025-12-09 19:07:00','2025-12-09 19:07:00',NULL,NULL,NULL),
(335,4,'<ED.28.08823.B924B386@i-074e2da66b9c2e9ec.mta1vrest.sd.prd.sparkpost>',NULL,NULL,'mavrix.one was deleted from account Rick@mavrix[.]one\'s Account','noreply@notify.cloudflare.com','\"Cloudflare\"','<!DOCTYPE html>\n<html\n  xmlns=\"“http://www.w3.org/1999/xhtml”\"\n  xmlns:v=\"“urn:schemas-microsoft-com:vml”\"\n  xmlns:o=\"“urn:schemas-microsoft-com:office:office”\"\n>\n  <head>\n    <meta charset=\"utf-8\" />\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" />\n    <!--[if gte mso 9\n      ]><xml>\n        <o:OfficeDocumentSettings>\n          <o:AllowPNG />\n          <o:PixelsPerInch>96</o:PixelsPerInch>\n        </o:OfficeDocumentSettings>\n      </xml><!\n    [endif]-->\n    <!--Variables-->\n    <title></title>\n    <link\n      href=\"https://fonts.googleapis.com/css?family=Inter:300,300i,400,400i,600,600i,700,700i,800,800i\"\n      rel=\"stylesheet\"\n    />\n    <style>\n      /* CLIENT-SPECIFIC STYLES */\n      img {\n        -ms-interpolation-mode: bicubic;\n      }\n      /* Force IE to smoothly render resized images. */\n      #outlook a {\n        padding: 0;\n      }\n      /* Force Outlook 2007 and up to provide a \"view in browser\" message. */\n      table {\n        mso-table-lspace: 0pt;\n        mso-table-rspace: 0pt;\n      }\n      /* Remove spacing between tables in Outlook 2007 and up. */\n      .ReadMsgBody {\n        width: 100%;\n      }\n      .ExternalClass {\n        width: 100%;\n      }\n      /* Force Outlook.com to display emails at full width. */\n      p,\n      a,\n      li,\n      td,\n      blockquote {\n        mso-line-height-rule: exactly;\n      }\n      /* Force Outlook to render line heights as they\'re originally set. */\n      a[href^=\"tel\"],\n      a[href^=\"sms\"] {\n        color: inherit;\n        cursor: default;\n        text-decoration: none;\n      }\n      /* Force mobile devices to inherit declared link styles. */\n      p,\n      a,\n      li,\n      td,\n      body,\n      table,\n      blockquote {\n        -ms-text-size-adjust: 100%;\n        -webkit-text-size-adjust: 100%;\n      }\n      /* Prevent Windows- and Webkit-based mobile platforms from changing declared text sizes. */\n      .ExternalClass,\n      .ExternalClass p,\n      .ExternalClass td,\n      .ExternalClass div,\n      .ExternalClass span,\n      .ExternalClass font {\n        line-height: 100%;\n      }\n      /* Force Outlook.com to display line heights normally. */\n      table {\n        border-collapse: collapse;\n      }\n\n      html {\n        -webkit-text-size-adjust: none;\n      }\n\n      #gmailModule,\n      .mobileOnly {\n        display: none !important;\n      }\n      /*Hide Full-Width Image on Desktop*/\n\n      a,\n      a:hover {\n        color: #ff6633 !important;\n        text-decoration: none !important;\n      }\n\n      .button a,\n      .button a:hover {\n        color: #000000 !important;\n        text-decoration: none !important;\n      }\n\n      .footer a,\n      .footer a:hover {\n        color: #8f8f8f !important;\n        text-decoration: none !important;\n      }\n\n      a[x-apple-data-detectors] {\n        color: inherit !important;\n        text-decoration: none !important;\n        font-size: inherit !important;\n        font-family: inherit !important;\n        font-weight: inherit !important;\n        line-height: inherit !important;\n      }\n\n      @media only screen and (max-width: 650px) {\n        #bodyTable {\n          width: 100% !important;\n        }\n        #logo-image {\n          max-width: 40% !important;\n        }\n\n        #headline {\n          font-size: 20px;\n          line-height: 24px;\n        }\n\n        img {\n          width: auto !important;\n          max-width: 100% !important;\n          height: auto !important;\n        }\n        .tableStack {\n          width: 100% !important;\n        }\n        table.buttonStack {\n          margin-top: 10px !important;\n        }\n        td.buttonStack {\n          padding-top: 16px !important;\n        }\n\n        td.mobImg {\n          width: 28% !important;\n          padding-right: 15px !important;\n        }\n        td.mobText {\n          width: 68% !important;\n        }\n\n        #fullTextContent{\n          font-size: 13px;\n          line-height: 17px;;\n        }\n\n        #fullTextContent strong{\n          font-size: 14px;\n          line-height:  18px;\n        }\n\n        table.mobileImageWidth {\n          width: 28% !important;\n        }\n        table.mobileTextWidth {\n          width: 68% !important;\n        }\n\n        .stack-img {\n          padding-top: 10px !important;\n          padding-right: 0% !important;\n          padding-bottom: 10px !important;\n          padding-left: 0% !important;\n          width: 90% !important;\n        }\n\n        .stack {\n          padding-top: 4px !important;\n          padding-right: 5% !important;\n          padding-bottom: 22px !important;\n          padding-left: 5% !important;\n          width: 90% !important;\n        }\n\n        .stack2 {\n          padding-top: 10px !important;\n          padding-right: 0px !important;\n          padding-bottom: 10px !important;\n          padding-left: 5% !important;\n          width: 90% !important;\n        }\n\n        td.mobileTopPad {\n          padding-top: 20px !important;\n        }\n        table.mobileTopPad {\n          margin-top: 20px !important;\n        }\n\n        .desktopPad,\n        #gmailModule {\n          display: none !important;\n        }\n        .left img {\n          margin-left: 0 !important;\n        }\n        .center img {\n          margin-left: auto !important;\n          margin-right: auto !important;\n        }\n        .center table {\n          margin-right: auto;\n          margin-left: auto;\n        }\n        .left {\n          text-align: left !important;\n        }\n        .center {\n          text-align: center !important;\n        }\n        .noPad {\n          padding-top: 0px !important;\n          padding-right: 0px !important;\n          padding-bottom: 0px !important;\n          padding-left: 0px !important;\n        }\n        .noSidePad {\n          padding-right: 0px !important;\n          padding-left: 0px !important;\n        }\n        .noBorder {\n          border: 0px !important;\n        }\n        hr {\n          margin-right: auto !important;\n          margin-left: auto !important;\n        }\n        .mobileOnly {\n          display: block !important;\n        }\n        .mobquote {\n          font-size: 20px !important;\n          line-height: 26px !important;\n          margin: 0px 15px !important;\n        }\n        .padding5p {\n          padding-right: 5% !important;\n        }\n        .mobwidth100 {\n          max-width: 100px !important;\n        }\n      }\n    </style>\n    <!--[if gte mso 9]>\n      <style type=\"text/css\">\n        td,\n        p,\n        ul,\n        ol,\n        li {\n          font-family: Arial, sans-serif !important;\n        }\n        ul,\n        ol {\n          margin: 0px 0px 0px 26px !important;\n          padding: 0px !important;\n          list-style-position: inside !important;\n        }\n        table.outlookPadColumn {\n          width: 34% !important;\n          padding-right: 2% !important;\n        }\n        td.outlookFloat {\n          margin-left: 40px;\n          padding-right: 0px !important;\n        }\n      </style>\n    <![endif]-->\n  </head>\n  <body\n    bgcolor=\"#f6f6f6\"\n    style=\"\n      background: #f6f6f6;\n      margin: 0;\n      padding: 0;\n      mso-padding-alt: 0px 0px 0px 0px;\n    \"\n  >\n  <div style=\"display:none;\">mavrix.one was deleted by Cloudflare on 2025-05-31T17:55:33.551928964Z (UTC)</div>\n\n  \n    <table\n      role=\"presentation\"\n      width=\"100%\"\n      border=\"0\"\n      cellspacing=\"0\"\n      cellpadding=\"0\"\n      style=\"background: #f6f6f6; mso-padding-alt: 0px 0px 0px 0px\"\n    >\n      <tbody>\n        <tr>\n          <td>\n            <!--Body Table-->\n            <table\n              role=\"presentation\"\n              id=\"bodyTable\"\n              width=\"650\"\n              border=\"0\"\n              cellspacing=\"0\"\n              cellpadding=\"0\"\n              align=\"center\"\n              style=\"margin-left: auto; margin-right: auto\"\n            >\n              <!--Preheader Container-->\n              <tbody>\n                <tr class=\"desktopPad\">\n                  <td\n                    class=\"footer\"\n                    style=\"\n                      white-space: normal;\n                      color: #8f8f8f;\n                      font-family: Inter, Helvetica, Arial, sans-serif;\n                      font-size: 11px;\n                      text-align: right;\n                      padding-top: 7px;\n                      padding-bottom: 7px;\n                      text-align: center;\n                    \"\n                  >\n                    <div class=\"mktoText\" id=\"preheaderText\"></div>\n                  </td>\n                </tr>\n                <!--/Preheader Container-->\n                <tr>\n                  <td>\n                    <table\n                      role=\"presentation\"\n                      id=\"container\"\n                      class=\"mktoContainer\"\n                      width=\"100%\"\n                      border=\"0\"\n                      cellpadding=\"0\"\n                      cellspacing=\"0\"\n                      style=\"border-collapse: collapse\"\n                    >\n                      <tr class=\"mktoModule\" id=\"header\">\n                        <td>\n                          <table\n                            role=\"presentation\"\n                            width=\"100%\"\n                            border=\"0\"\n                            cellpadding=\"0\"\n                            cellspacing=\"0\"\n                            style=\"min-width: 100%\"\n                          >\n                            <!--[if gte mso 9]>\n<tr>\n<td>\n<table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n<![endif]-->\n                            <tbody>\n                              <tr\n                                style=\"\n                                  white-space: nowrap;\n                                  background-color: #ffffff;\n                                \"\n                              >\n                                <td\n                                  class=\"stack\"\n                                  style=\"\n                                    border-top: 10px solid #f38020;\n                                    white-space: normal;\n                                    padding-top: 25px;\n                                    padding-left: 40px;\n                                    padding-bottom: 25px;\n                                    padding-right: 40px;\n                                    background-color: #ffffff;\n                                  \"\n                                >\n                                  <!--Left-->\n                                  <table\n                                    class=\"tableStack\"\n                                    role=\"presentation\"\n                                    width=\"48%\"\n                                    border=\"0\"\n                                    cellpadding=\"0\"\n                                    cellspacing=\"0\"\n                                    align=\"left\"\n                                  >\n                                    <tbody>\n                                      <tr>\n                                        <td class=\"stack-img\">\n                                          <div class=\"mktoSnippet\" id=\"logo\">\n                                            <table\n                                              role=\"presentation\"\n                                              width=\"100%\"\n                                              cellpadding=\"0\"\n                                              cellspacing=\"0\"\n                                              border=\"0\"\n                                            >\n                                              <tbody>\n                                                <tr>\n                                                  <td class=\"left\">\n                                                    <a\n                                                      href=\"https://www.cloudflare.com/\"\n                                                      target=\"_blank\"\n                                                      ><img\n                                                        id=\"logo-image\"\n                                                        src=\"https://info.cloudflare.com/rs/713-XSC-918/images/CF_logo_horizontal_blktype_1955x285.png?version=0\"\n                                                        alt=\"Cloudflare logo\"\n                                                        height=\"37\"\n                                                        width=\"260\"\n                                                        constrain=\"true\"\n                                                        imagepreview=\"false\"\n                                                    /></a>\n                                                  </td>\n                                                </tr>\n                                              </tbody>\n                                            </table>\n                                          </div>\n                                        </td>\n                                      </tr>\n                                    </tbody>\n                                  </table>\n                                  <!--/Left-->\n                                  <!--Right-->\n                                  <table\n                                    class=\"tableStack\"\n                                    role=\"presentation\"\n                                    width=\"48%\"\n                                    border=\"0\"\n                                    cellpadding=\"0\"\n                                    cellspacing=\"0\"\n                                    align=\"right\"\n                                  >\n                                    <tbody>\n                                      <tr>\n                                        <td\n                                          class=\"center\"\n                                          style=\"\n                                            text-align: right;\n                                            color: #000000;\n                                            font-family: Inter, Helvetica, Arial,\n                                              sans-serif;\n                                            font-size: 14px;\n                                            line-height: 21px;\n                                          \"\n                                        >\n                                          <div\n                                            class=\"mktoText\"\n                                            id=\"headerHeadline\"\n                                          ></div>\n                                        </td>\n                                      </tr>\n                                    </tbody>\n                                  </table>\n                                  <!--/Right-->\n                                </td>\n                              </tr>\n                              <!--[if gte mso 9]>\n</table>\n</td>\n</tr>\n<![endif]-->\n                            </tbody>\n                          </table>\n                        </td>\n                      </tr>\n\n\n\n\n\n\n                      <tr\n                        class=\"mktoModule desktopPad\"\n                        id=\"spacerModule\"\n                      >\n                        <td>\n                          <table\n                            role=\"presentation\"\n                            border=\"0\"\n                            cellpadding=\"0\"\n                            cellspacing=\"0\"\n                            style=\"min-width: 100%\"\n                          >\n                            <!--[if gte mso 9]>\n<tr>\n<td>\n<table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n<![endif]-->\n                            <tbody>\n                              <tr\n                                style=\"\n                                  white-space: nowrap;\n                                  background-color: #ffffff;\n                                \"\n                              >\n                                <td\n                                  class=\"desktopPad\"\n                                  height=\"25\"\n                                  style=\"\n                                    background-color: #ffffff;\n                                    line-height: 25px;\n                                    font-size: 25px;\n                                  \"\n                                >\n                                  &nbsp;\n                                </td>\n                              </tr>\n                              <!--[if gte mso 9]>\n</table>\n</td>\n</tr>\n<![endif]-->\n                            </tbody>\n                          </table>\n                        </td>\n                      </tr>\n\n\n\n\n                      <!-- HEADLINE -->\n\n                      <tr\n                        class=\"mktoModule\"\n                        id=\"headline\"\n                      >\n                        <td>\n                          <!--Title Text-->\n                          <table\n                            role=\"presentation\"\n                            width=\"100%\"\n                            border=\"0\"\n                            cellpadding=\"0\"\n                            cellspacing=\"0\"\n                            style=\"min-width: 100%\"\n                          >\n                            <!--[if gte mso 9]>\n<tr>\n<td>\n<table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n<![endif]-->\n                            <tbody>\n                              <tr\n                                style=\"\n                                  white-space: nowrap;\n                                  background-color: #ffffff;\n                                \"\n                              >\n                                <td\n                                  class=\"stack\"\n                                  style=\"\n                                    font-weight: 600;\n                                    color: #000000;\n                                    text-align: left;\n                                    white-space: normal;\n                                    font-family: Inter, Helvetica, Arial,\n                                      sans-serif;\n                                    font-size: 26px;\n                                    line-height: 32px;\n                                    padding-left: 40px;\n                                    padding-right: 40px;\n                                    background-color: #ffffff;\n                                  \"\n                                >\n                                  <div\n                                    class=\"mktoText\"\n                                    id=\"headline\"\n                                  >\n                                                                        mavrix.one has been deleted from the\n                                    account Rick@mavrix[.]one&#39;s Account\n                                    <br />\n                                  </div>\n                                </td>\n                              </tr>\n                              <!--[if gte mso 9]>\n</table>\n</td>\n</tr>\n<![endif]-->\n                            </tbody>\n                          </table>\n                          <!--/Title Text-->\n                        </td>\n                      </tr>\n                      <!-- END HEADLINE -->\n\n                   \n\n\n<!-- SUBHEADLINE -->\n<tr\nclass=\"mktoModule\"\nid=\"fullText\"\n>\n<td>\n  <!--Full Text-->\n  <table\n    role=\"presentation\"\n    width=\"100%\"\n    border=\"0\"\n    cellpadding=\"0\"\n    cellspacing=\"0\"\n    style=\"min-width: 100%\"\n  >\n    <!--[if gte mso 9]>\n<tr>\n<td>\n<table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n<![endif]-->\n    <tbody>\n      <tr\n        style=\"\n          white-space: nowrap;\n          background-color: #ffffff;\n        \"\n      >\n        <td\n          class=\"stack\"\n          style=\"\n            color: #000000;\n            text-align: left;\n            white-space: normal;\n            font-family: Inter, Helvetica, Arial,\n              sans-serif;\n            font-size: 14px;\n            line-height: 24px;\n            padding-left: 40px;\n            padding-right: 40px;\n            background-color: #ffffff;\n            font-weight: normal;\n          \"\n        >\n          <div\n            class=\"mktoText\"\n            id=\"fullTextContent\"\n          >\n            \n            <br />\n            It was deleted by Cloudflare on 2025-05-31T17:55:33.551928964Z (UTC).\n\n          </div>\n        </td>\n      </tr>\n      <!--[if gte mso 9]>\n</table>\n</td>\n</tr>\n<![endif]-->\n    </tbody>\n  </table>\n  <!--/Full Text-->\n</td>\n</tr>\n<!-- END OF SUBHEADLINE -->\n\n\n\n\n\n                      <!-- SPACING -->\n                      <tr\n                        class=\"mktoModule desktopPad\"\n                        id=\"spacerModule\"\n                      >\n                        <td>\n                          <table\n                            role=\"presentation\"\n                            border=\"0\"\n                            cellpadding=\"0\"\n                            cellspacing=\"0\"\n                            style=\"min-width: 100%\"\n                          >\n                            <!--[if gte mso 9]>\n<tr>\n<td>\n<table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n<![endif]-->\n                            <tbody>\n                              <tr\n                                style=\"\n                                  white-space: nowrap;\n                                  background-color: #ffffff;\n                                \"\n                              >\n                                <td\n                                  class=\"desktopPad\"\n                                  height=\"25\"\n                                  style=\"\n                                    background-color: #ffffff;\n                                    line-height: 25px;\n                                    font-size: 25px;\n                                  \"\n                                >\n                                  &nbsp;\n                                </td>\n                              </tr>\n                              <!--[if gte mso 9]>\n</table>\n</td>\n</tr>\n<![endif]-->\n                            </tbody>\n                          </table>\n                        </td>\n                      </tr>\n                      <!-- END SPACING -->\n\n                      <!-- SUBHEADLINE -->\n                      <tr\n                        class=\"mktoModule\"\n                        id=\"fullText\"\n                      >\n                        <td>\n                          <!--Full Text-->\n                          <table\n                            role=\"presentation\"\n                            width=\"100%\"\n                            border=\"0\"\n                            cellpadding=\"0\"\n                            cellspacing=\"0\"\n                            style=\"min-width: 100%\"\n                          >\n                            <!--[if gte mso 9]>\n<tr>\n<td>\n<table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n<![endif]-->\n                            <tbody>\n                              <tr\n                                style=\"\n                                  white-space: nowrap;\n                                  background-color: #ffffff;\n                                \"\n                              >\n                                <td\n                                  class=\"stack\"\n                                  style=\"\n                                    color: #000000;\n                                    text-align: left;\n                                    white-space: normal;\n                                    font-family: Inter, Helvetica, Arial,\n                                      sans-serif;\n                                    font-size: 14px;\n                                    line-height: 24px;\n                                    padding-left: 40px;\n                                    padding-right: 40px;\n                                    background-color: #ffffff;\n                                    font-weight: normal;\n                                  \"\n                                >\n                                  <div\n                                    class=\"mktoText\"\n                                    id=\"fullTextContent\"\n                                  >\n                                    <span style=\"font-size: 18px\"\n                                      ><strong\n                                        >Common reasons why domains are deleted</strong\n                                      ></span\n                                    >\n                                    <br />\n                                    <ul>\n                                      <li>For\n                                        domains on the free plan, the nameservers\n                                        weren’t updated with Cloudflare-provided\n                                        ones within 4 weeks</li>\n                                        <li>When monitoring domain\n                                          registration, we discovered that the DNS\n                                          servers / nameservers no longer point to\n                                          Cloudflare\n                                        </li>\n                                        <li>\n                                          Someone with access to the domain\n                                    removed it\n                                        </li>\n                                    </ul>\n                                  </div>\n                                </td>\n                              </tr>\n                              <!--[if gte mso 9]>\n</table>\n</td>\n</tr>\n<![endif]-->\n                            </tbody>\n                          </table>\n                          <!--/Full Text-->\n                        </td>\n                      </tr>\n                      <!-- END OF SUBHEADLINE -->\n\n                      <!-- SPACING -->\n                      <tr\n                        class=\"mktoModule desktopPad\"\n                        id=\"spacerModule\"\n                      >\n                        <td>\n                          <table\n                            role=\"presentation\"\n                            border=\"0\"\n                            cellpadding=\"0\"\n                            cellspacing=\"0\"\n                            style=\"min-width: 100%\"\n                          >\n                            <!--[if gte mso 9]>\n<tr>\n<td>\n<table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n<![endif]-->\n                            <tbody>\n                              <tr\n                                style=\"\n                                  white-space: nowrap;\n                                  background-color: #ffffff;\n                                \"\n                              >\n                                <td\n                                  class=\"desktopPad\"\n                                  height=\"25\"\n                                  style=\"\n                                    background-color: #ffffff;\n                                    line-height: 25px;\n                                    font-size: 25px;\n                                  \"\n                                >\n                                  &nbsp;\n                                </td>\n                              </tr>\n                              <!--[if gte mso 9]>\n</table>\n</td>\n</tr>\n<![endif]-->\n                            </tbody>\n                          </table>\n                        </td>\n                      </tr>\n                      <!-- END SPACING -->\n\n\n\n\n\n\n<!-- SUBHEADLINE -->\n<tr\nclass=\"mktoModule\"\nid=\"fullText\"\n>\n<td>\n  <!--Full Text-->\n  <table\n    role=\"presentation\"\n    width=\"100%\"\n    border=\"0\"\n    cellpadding=\"0\"\n    cellspacing=\"0\"\n    style=\"min-width: 100%\"\n  >\n    <!--[if gte mso 9]>\n<tr>\n<td>\n<table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n<![endif]-->\n    <tbody>\n      <tr\n        style=\"\n          white-space: nowrap;\n          background-color: #ffffff;\n        \"\n      >\n        <td\n          class=\"stack\"\n          style=\"\n            color: #000000;\n            text-align: left;\n            white-space: normal;\n            font-family: Inter, Helvetica, Arial,\n              sans-serif;\n            font-size: 14px;\n            line-height: 24px;\n            padding-left: 40px;\n            padding-right: 40px;\n            background-color: #ffffff;\n            font-weight: normal;\n          \"\n        >\n          <div\n            class=\"mktoText\"\n            id=\"fullTextContent\"\n          >\n            <span style=\"font-size: 18px\"\n              ><strong\n                >Was this domain deleted by mistake?</strong\n              ></span\n            >\n            <br />\n          Don’t worry, just add the domain back to <a href=\"https://dash.cloudflare.com/?to=/:account/add-site\">your account</a> and we’ll re-apply the configurations you had before. Learn more about <a href=\"https://developers.cloudflare.com/dns/zone-setups/reference/domain-status/\">domain status</a> and <a href=\"https://support.cloudflare.com/hc/en-us/articles/221327488-Why-was-my-domain-deleted-from-Cloudflare-\">deleted domains</a>.\n          </div>\n        </td>\n      </tr>\n      <!--[if gte mso 9]>\n</table>\n</td>\n</tr>\n<![endif]-->\n    </tbody>\n  </table>\n  <!--/Full Text-->\n</td>\n</tr>\n<!-- END OF SUBHEADLINE -->\n\n\n                    \n\n                      <!-- FOOTER -->\n                      <tr\n                        class=\"mktoModule desktopPad\"\n                        id=\"spacerModule\"\n                      >\n                        <td>\n                          <table\n                            role=\"presentation\"\n                            border=\"0\"\n                            cellpadding=\"0\"\n                            cellspacing=\"0\"\n                            style=\"min-width: 100%\"\n                          >\n                            <!--[if gte mso 9]>\n<tr>\n<td>\n<table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n<![endif]-->\n                            <tbody>\n                              <tr\n                                style=\"\n                                  white-space: nowrap;\n                                  background-color: #ffffff;\n                                \"\n                              >\n                                <td\n                                  class=\"desktopPad\"\n                                  height=\"25\"\n                                  style=\"\n                                    background-color: #ffffff;\n                                    line-height: 25px;\n                                    font-size: 25px;\n                                  \"\n                                >\n                                  &nbsp;\n                                </td>\n                              </tr>\n                              <!--[if gte mso 9]>\n</table>\n</td>\n</tr>\n<![endif]-->\n                            </tbody>\n                          </table>\n                        </td>\n                      </tr>\n                      <tr\n                        class=\"mktoModule\"\n                        id=\"persistentSpacerModule\"\n                      >\n                        <td>\n                          <!--Persistent Spacer-->\n                          <table\n                            role=\"presentation\"\n                            width=\"100%\"\n                            border=\"0\"\n                            cellpadding=\"0\"\n                            cellspacing=\"0\"\n                            style=\"min-width: 100%\"\n                          >\n                            <!--[if gte mso 9]>\n<tr>\n<td>\n<table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n<![endif]-->\n                            <tbody>\n                              <tr\n                                style=\"\n                                  white-space: nowrap;\n                                  background-color: #f6f6f6;\n                                \"\n                              >\n                                <td\n                                  height=\"25\"\n                                  style=\"\n                                    white-space: normal;\n                                    background-color: #f6f6f6;\n                                    line-height: 25px;\n                                    font-size: 25px;\n                                  \"\n                                >\n                                  &nbsp;\n                                </td>\n                              </tr>\n                              <!--[if gte mso 9]>\n</table>\n</td>\n</tr>\n<![endif]-->\n                            </tbody>\n                          </table>\n                          <!--/Persistent Spacer-->\n                        </td>\n                      </tr>\n                      <tr class=\"mktoModule\" id=\"footerModule\">\n                        <td>\n                          <!--Footer-->\n                          <table\n                            role=\"presentation\"\n                            width=\"100%\"\n                            border=\"0\"\n                            cellpadding=\"0\"\n                            cellspacing=\"0\"\n                            style=\"min-width: 100%\"\n                          >\n                            <!--[if gte mso 9]>\n<tr>\n<td>\n<table role=\"presentation\" width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:650px;\">\n<![endif]-->\n                            <tbody>\n                              <tr style=\"white-space: nowrap\">\n                                <td\n                                  class=\"stack\"\n                                  style=\"\n                                    white-space: normal;\n                                    padding-left: 40px;\n                                    padding-right: 40px;\n                                  \"\n                                >\n                                  <div class=\"mktoSnippet\" id=\"footer\">\n                                    <table\n                                      role=\"presentation\"\n                                      width=\"100%\"\n                                      border=\"0\"\n                                      cellpadding=\"0\"\n                                      cellspacing=\"0\"\n                                    >\n                                      <tbody>\n                                        <tr>\n                                          <td\n                                            class=\"footer\"\n                                            style=\"\n                                              font-family: Arial, Helvetica,\n                                                sans-serif;\n                                              color: #8f8f8f;\n                                              font-size: 13px;\n                                              text-align: center;\n                                            \"\n                                          >\n                                            Copyright ©&nbsp;2025 Cloudflare,\n                                            Inc.<br />\n                                            101 Townsend Street, San Francisco,\n                                            CA 94107<br /><br />\n                                            <a\n                                              href=\"https://www.cloudflare.com/\"\n                                              style=\"\n                                                color: #8f8f8f;\n                                                text-decoration: none;\n                                              \"\n                                              >www.cloudflare.com</a\n                                            >\n                                            &nbsp;|&nbsp;\n                                            <a\n                                              href=\"https://community.cloudflare.com/\"\n                                              style=\"\n                                                color: #8f8f8f;\n                                                text-decoration: none;\n                                              \"\n                                              target=\"_blank\"\n                                              >Community</a\n                                            >\n                                          </td>\n                                        </tr>\n                                        <tr>\n                                          <td\n                                            style=\"padding-top: 20px\"\n                                            align=\"center\"\n                                          >\n                                            <table\n                                              role=\"presentation\"\n                                              border=\"0\"\n                                              cellpadding=\"0\"\n                                              cellspacing=\"0\"\n                                              stlye=\"margin-right:auto;margin-left:auto;\"\n                                              align=\"center\"\n                                            >\n                                              <tbody>\n                                                <tr>\n                                                  <td\n                                                    width=\"40\"\n                                                    align=\"center\"\n                                                    style=\"\n                                                      padding-right: 2px;\n                                                      padding-left: 2px;\n                                                    \"\n                                                  >\n                                                    <a\n                                                      href=\"https://www.facebook.com/Cloudflare/\"\n                                                      title=\"Facebook\"\n                                                      ><img\n                                                        src=\"https://info.cloudflare.com/rs/713-XSC-918/images/social-icon-fb-email-108px.png\"\n                                                        width=\"36\"\n                                                        height=\"36\"\n                                                        alt=\"Facebook\"\n                                                        style=\"\n                                                          display: block;\n                                                          margin-right: auto;\n                                                          margin-left: auto;\n                                                          border-style: none;\n                                                        \"\n                                                        constrain=\"true\"\n                                                        imagepreview=\"false\"\n                                                    /></a>\n                                                  </td>\n                                                  <td\n                                                    width=\"40\"\n                                                    align=\"center\"\n                                                    style=\"\n                                                      padding-right: 2px;\n                                                      padding-left: 2px;\n                                                    \"\n                                                  >\n                                                    <a\n                                                      href=\"https://X.com/Cloudflare\"\n                                                      title=\"X\"\n                                                      ><img\n                                                        src=\"https://info.cloudflare.com/rs/713-XSC-918/images/social-icon-twitter-email-108px.png\"\n                                                        width=\"36\"\n                                                        height=\"36\"\n                                                        alt=\"X\"\n                                                        style=\"\n                                                          display: block;\n                                                          margin-right: auto;\n                                                          margin-left: auto;\n                                                          border-style: none;\n                                                        \"\n                                                        constrain=\"true\"\n                                                        imagepreview=\"false\"\n                                                    /></a>\n                                                  </td>\n                                                  <td\n                                                    width=\"40\"\n                                                    align=\"center\"\n                                                    style=\"\n                                                      padding-right: 2px;\n                                                      padding-left: 2px;\n                                                    \"\n                                                  >\n                                                    <a\n                                                      href=\"https://www.linkedin.com/company/cloudflare\"\n                                                      title=\"LinkedIn\"\n                                                      ><img\n                                                        src=\"https://info.cloudflare.com/rs/713-XSC-918/images/social-icon-linkedin-email-108px.png\"\n                                                        width=\"36\"\n                                                        height=\"36\"\n                                                        alt=\"LinkedIn\"\n                                                        style=\"\n                                                          display: block;\n                                                          margin-right: auto;\n                                                          margin-left: auto;\n                                                          border-style: none;\n                                                        \"\n                                                        constrain=\"true\"\n                                                        imagepreview=\"false\"\n                                                    /></a>\n                                                  </td>\n                                                </tr>\n                                              </tbody>\n                                            </table>\n                                            <br />\n                                          </td>\n                                        </tr>\n                                      </tbody>\n                                    </table>\n                                  </div>\n                                </td>\n                              </tr>\n                              <!--[if gte mso 9]>\n</table>\n</td>\n</tr>\n<![endif]-->\n                            </tbody>\n                          </table>\n                          <!--/Footer-->\n                        </td>\n                      </tr>\n                    </table>\n                  </td>\n                </tr>\n                <!-- END FOOTER -->\n\n                <!--/Container-->\n                <!--Full Width Image for Gmail to render desktop version on mobile-->\n                <tr>\n                  <td>\n                    <table\n                      role=\"presentation\"\n                      class=\"hide\"\n                      id=\"gmailModule\"\n                      width=\"100%\"\n                      border=\"0\"\n                      cellpadding=\"0\"\n                      cellspacing=\"0\"\n                      style=\"min-width: 100%\"\n                    >\n                      <tbody>\n                        <tr\n                          style=\"white-space: nowrap; background-color: #ffffff\"\n                        >\n                          <td\n                            height=\"1\"\n                            class=\"hide\"\n                            style=\"\n                              min-width: 650px;\n                              opacity: 0;\n                              font-size: 0px;\n                              line-height: 0px;\n                            \"\n                          >\n                            <img\n                              height=\"1\"\n                              src=\"#\"\n                              style=\"\n                                min-width: 650px;\n                                max-height: 0px;\n                                text-decoration: none;\n                                border: none;\n                                -ms-interpolation-mode: bicubic;\n                              \"\n                            />\n                          </td>\n                        </tr>\n                      </tbody>\n                    </table>\n                  </td>\n                </tr>\n                <!--/Full Width Image for Gmail to render desktop version on mobile-->\n              </tbody>\n            </table>\n            <!--End Body Table-->\n          </td>\n        </tr>\n      </tbody>\n    </table>\n    <script\n      defer\n      src=\"https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015\"\n      integrity=\"sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==\"\n      data-cf-beacon=\'{\"rayId\":\"921e05f29d13a948\",\"serverTiming\":{\"name\":{\"cfExtPri\":true,\"cfL4\":true,\"cfSpeedBrain\":true,\"cfCacheStatus\":true}},\"version\":\"2025.1.0\",\"token\":\"271854501d8743cfb7cc749ee8f2dde0\"}\'\n      crossorigin=\"anonymous\"\n    ></script>\n  </body>\n</html>\n','mavrix.one has been deleted from the account Rick@mavrix[.]one\'s Account.\n\nIt was deleted by Cloudflare on 2025-05-31T17:55:33.551928964Z (UTC).\n\n\nCommon reasons why domains are deleted\n\n- For domains on the free plan, the nameservers weren’t updated with Cloudflare-provided ones within 4 weeks\n- When monitoring domain registration, we discovered that the DNS servers / nameservers no longer point to Cloudflare\n- Someone with access to the domain removed it\n\nWas this domain deleted by mistake?\n\nDon’t worry, just add the domain back to your account and we’ll re-apply the configurations you had before.\n\nLearn more\n- Domain status: https://developers.cloudflare.com/dns/zone-setups/reference/domain-status/\n- Deleted domains: https://support.cloudflare.com/hc/en-us/articles/221327488-Why-was-my-domain-deleted-from-Cloudflare-\n',0,0,0,0,0,0,'2025-05-31 17:55:39','2025-12-09 19:07:00','2025-12-09 19:07:00','2025-12-09 19:07:00',NULL,NULL,NULL),
(336,4,' <BL3PR20MB49240AB289342F8A1013E9AAAF62A@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: Based on our last convo...','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHey Rick,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHere is a link to the automation roadmap document:</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<a href=\"https://docs.google.com/presentation/d/1545uu0LCEJ8ZGwEadOACk187lGBlS-96ScHG-ltWZz0/edit?usp=sharing\" id=\"LPlnkOWAf1820a46-856f-c466-67f8-68e174e384dd\" class=\"OWAAutoLink\">https://docs.google.com/presentation/d/1545uu0LCEJ8ZGwEadOACk187lGBlS-96ScHG-ltWZz0/edit?usp=sharing</a></div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nI was brainstorming your idea for the containerized production platform and I think it\'s actually totally doable.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nI\'ll probably make some slight modifications/additions to the document later today.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nLet me know if you need anything else from our side in the meantime.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nThanks,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nJason</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Saturday, May 31, 2025 11:36 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Based on our last convo...</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>You do your thing. &nbsp;Just trying to help…\r\n<div><br>\r\n<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<p class=\"x_gmail_quote\" style=\"color:#000\">On May 31, 2025 at 1:32:13 PM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_gmail_quote\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div>\r\n<div dir=\"ltr\">Hi Rick,</div>\r\n<div dir=\"ltr\"><br>\r\n</div>\r\n<div dir=\"ltr\">Yes, very much so, would you like me to expand upon this and then get back to you? I had been working on my own, calling it the “automation roadmap” but this format is also very good and I could migrate it over.</div>\r\n<div dir=\"ltr\"><br>\r\n</div>\r\n<div dir=\"ltr\">Thanks,</div>\r\n<div dir=\"ltr\">Jason</div>\r\n</div>\r\n<div id=\"x_ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"x_ms-outlook-mobile-signature\">Get <a href=\"https://aka.ms/o0ukef\">Outlook for iOS</a></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Saturday, May 31, 2025 9:53:26 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Based on our last convo...</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nWould this be useful?</div>\r\nSee attached. confirm receipt...\r\n<div>Thanks,</div>\r\n<div>Rick<br>\r\n<div class=\"x_x_bloop_sign\" id=\"x_x_bloop_sign_1748710343744053760\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Hey Rick,\r\n\r\nHere is a link to the automation roadmap document:\r\nhttps://docs.google.com/presentation/d/1545uu0LCEJ8ZGwEadOACk187lGBlS-96ScHG-ltWZz0/edit?usp=sharing\r\n\r\nI was brainstorming your idea for the containerized production platform and I think it\'s actually totally doable.\r\n\r\nI\'ll probably make some slight modifications/additions to the document later today.\r\n\r\nLet me know if you need anything else from our side in the meantime.\r\n\r\nThanks,\r\nJason\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Saturday, May 31, 2025 11:36 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Based on our last convo...\r\n\r\nYou do your thing.  Just trying to help…\r\n\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\nOn May 31, 2025 at 1:32:13 PM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nYes, very much so, would you like me to expand upon this and then get back to you? I had been working on my own, calling it the “automation roadmap” but this format is also very good and I could migrate it over.\r\n\r\nThanks,\r\nJason\r\n\r\nGet Outlook for iOS<https://aka.ms/o0ukef>\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Saturday, May 31, 2025 9:53:26 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Based on our last convo...\r\n\r\nWould this be useful?\r\nSee attached. confirm receipt...\r\nThanks,\r\nRick\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n',0,0,0,0,0,0,'2025-06-02 11:36:12','2025-12-09 19:07:00','2025-12-09 19:07:00','2025-12-09 19:07:00',NULL,NULL,NULL),
(337,4,'<25D7E603-5F48-4036-B3AB-54E6E14E6F1F@impossible-objects.com>',NULL,NULL,'Impossible Objects NDA & Overview Deck','shoover@impossible-objects.com','Steve Hoover','Brian,\r\n\r\nThanks for the productive call on Friday.\r\n\r\nAttached is our standard NDA for your review and signature.\r\n\r\nAlso attached is an overview deck that covers much of what we discussed on Friday and in earlier calls.\r\n\r\nLooking forward to hearing from you on the best path forward in the coming weeks.\r\n\r\nBest\r\n\r\nSteve','Brian,\r\n\r\nThanks for the productive call on Friday.\r\n\r\nAttached is our standard NDA for your review and signature.\r\n\r\nAlso attached is an overview deck that covers much of what we discussed on Friday and in earlier calls.\r\n\r\nLooking forward to hearing from you on the best path forward in the coming weeks.\r\n\r\nBest\r\n\r\nSteve',0,0,0,0,0,0,'2025-06-02 14:41:56','2025-12-09 19:07:02','2025-12-09 19:07:02','2025-12-09 19:07:02',NULL,NULL,NULL),
(338,4,'<8E53BF6A-40A2-4E7F-954E-D1425FC4B5F1@impossible-objects.com>',NULL,NULL,'Re: Email Connector','shoover@impossible-objects.com','Steve Hoover','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\">Just sent the stuff out. &nbsp;Let me know if I covered what you were looking for.<div><br></div><div>Thanks again for the help!</div><div><br></div><div>Steve</div><div><br id=\"lineBreakAtBeginningOfMessage\"><div><br><blockquote type=\"cite\"><div>On Jun 1, 2025, at 9:51 AM, Rick &lt;rick@mavrix.one&gt; wrote:</div><br class=\"Apple-interchange-newline\"><div><meta charset=\"UTF-8\"><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Hi Steve,</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Just making sure you got his email:</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><a href=\"mailto:brian@bayfrontcapitalllc.com\">brian@bayfrontcapitalllc.com</a><br></div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><br></div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Please copy me in on anything you send.</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">I already have a signed NDA with you...</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><br></div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Maybe share some of those contract details you mentioned</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">for printing parts so that Brian can see the value of having more printers…</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><br></div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">At some point, I’d love to talk to the design group,</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">some of the quadcopter models are pretty interesting.</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><br></div><span style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; float: none; display: inline !important;\">Let me know if you need anything else.</span><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Thanks,</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Rick</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><br></div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><br></div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><br><div class=\"gmail_signature\">Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div><div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height: 11px;\"></div></div><br><p class=\"airmail_on\">On May 30, 2025 at 2:56:27 PM, Rick (<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>) wrote:</p><blockquote type=\"cite\" class=\"clean_bq\"><span><div><div></div><div><div style=\"font-family: Helvetica, Arial; font-size: 13px;\">Thanks again for the call today, Steve!</div><div style=\"font-family: Helvetica, Arial; font-size: 13px;\">Here’s Brian’s email.</div><div style=\"font-family: Helvetica, Arial; font-size: 13px;\">All my best,</div><div style=\"font-family: Helvetica, Arial; font-size: 13px;\">Rick</div><br><div class=\"gmail_signature\">Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div></div></div></div></span></blockquote></div></div></blockquote></div><br></div></body></html>','Just sent the stuff out.  Let me know if I covered what you were looking for.\r\n\r\nThanks again for the help!\r\n\r\nSteve\r\n\r\n\r\n> On Jun 1, 2025, at 9:51 AM, Rick <rick@mavrix.one> wrote:\r\n> \r\n> Hi Steve,\r\n> Just making sure you got his email:\r\n> brian@bayfrontcapitalllc.com <mailto:brian@bayfrontcapitalllc.com>\r\n> \r\n> Please copy me in on anything you send.\r\n> I already have a signed NDA with you...\r\n> \r\n> Maybe share some of those contract details you mentioned\r\n> for printing parts so that Brian can see the value of having more printers…\r\n> \r\n> At some point, I’d love to talk to the design group,\r\n> some of the quadcopter models are pretty interesting.\r\n> \r\n> Let me know if you need anything else.\r\n> Thanks,\r\n> Rick\r\n> \r\n> \r\n> \r\n> Rick Mislan, PhD\r\n> https://mavrix.one <https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n> \r\n> On May 30, 2025 at 2:56:27 PM, Rick (rick@mavrix.one <mailto:rick@mavrix.one>) wrote:\r\n> \r\n>> Thanks again for the call today, Steve!\r\n>> Here’s Brian’s email.\r\n>> All my best,\r\n>> Rick\r\n>> \r\n>> Rick Mislan, PhD\r\n>> https://mavrix.one <https://mavrix.onehttps//mavrix.onehttps://mavrix.one>',0,0,0,0,0,0,'2025-06-02 14:44:58','2025-12-09 19:07:03','2025-12-09 19:07:03','2025-12-09 19:07:03',NULL,NULL,NULL),
(339,4,' <PH7PR19MB760825D035C645D25DC58E55F562A@PH7PR19MB7608.namprd19.prod.outlook.com>',NULL,NULL,'Mavrix One (Richard Mislan) In-Office Demo','gannon_tinsley@vuzix.com','Gannon Tinsley','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n</head>\r\n<body>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nMAVRIX is a national manufacturer of aerospace, defense, and robotics leaders committed to building a sovereign autonomous ecosystem — designed, sourced, and manufactured entirely in the USA.</div>\r\n<br>\r\n<div style=\"max-width: 600px; color: #242424; font-family:\'Segoe UI\',\'Helvetica Neue\',Helvetica,Arial,sans-serif\" class=\"me-email-text\">\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n<div style=\"margin-bottom: 12px;\"><span class=\"me-email-text\" style=\"font-size: 24px;font-weight: 700; margin-right:12px;\">Microsoft Teams</span>\r\n<a id=\"meet_invite_block.action.help\" class=\"me-email-link\" style=\"font-size:14px; text-decoration:underline; color: #5B5FC7;\" href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\">\r\nNeed help?</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><a id=\"meet_invite_block.action.join_link\" title=\"Meeting join link\" class=\"me-email-headline\" style=\"font-size: 20px; font-weight:600; text-decoration: underline; color: #5B5FC7;\" href=\"https://teams.microsoft.com/l/meetup-join/19%3ameeting_ZTIxOGNiZDctMjNiMC00OGJlLWE3MDYtMzZiMjMyODA3ZThi%40thread.v2/0?context=%7b%22Tid%22%3a%22ece9227b-67ef-4f9a-86a6-db5502178337%22%2c%22Oid%22%3a%220602f987-96ff-46da-b19e-bdff9b6206d5%22%7d\" target=\"_blank\" rel=\"noreferrer noopener\">Join\r\n the meeting now</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Meeting ID:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">210 336 371 872 0</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Passcode:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">Ae6Wr9D9</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px; max-width: 532px;\">\r\n<hr style=\"border: 0; background: #D1D1D1; height: 1px;\">\r\n</div>\r\n<div><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">For organizers:\r\n</span><a id=\"meet_invite_block.action.organizer_meet_options\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7;\" target=\"_blank\" href=\"https://teams.microsoft.com/meetingOptions/?organizerId=0602f987-96ff-46da-b19e-bdff9b6206d5&amp;tenantId=ece9227b-67ef-4f9a-86a6-db5502178337&amp;threadId=19_meeting_ZTIxOGNiZDctMjNiMC00OGJlLWE3MDYtMzZiMjMyODA3ZThi@thread.v2&amp;messageId=0&amp;language=en-US\" rel=\"noreferrer noopener\">Meeting\r\n options</a> </div>\r\n<div style=\"margin-top: 24px; margin-bottom: 6px;\"></div>\r\n<div style=\"margin-bottom: 24px;\"></div>\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n</div>\r\nThis message may contain confidential information belonging to the Vuzix Corporation and is intended only for the named recipients. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately\r\n by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. E-mail transmission cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, destroyed, arrive late or incomplete, or\r\n contain viruses. The sender therefore does not accept liability for any errors or omissions in the contents of this message, which arise as a result of e-mail transmission. If verification is required please request a hard-copy version.\r\n</body>\r\n</html>','MAVRIX is a national manufacturer of aerospace, defense, and robotics leaders committed to building a sovereign autonomous ecosystem — designed, sourced, and manufactured entirely in the USA.\r\n\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://teams.microsoft.com/l/meetup-join/19%3ameeting_ZTIxOGNiZDctMjNiMC00OGJlLWE3MDYtMzZiMjMyODA3ZThi%40thread.v2/0?context=%7b%22Tid%22%3a%22ece9227b-67ef-4f9a-86a6-db5502178337%22%2c%22Oid%22%3a%220602f987-96ff-46da-b19e-bdff9b6206d5%22%7d>\r\nMeeting ID: 210 336 371 872 0\r\nPasscode: Ae6Wr9D9\r\n________________________________\r\nFor organizers: Meeting options<https://teams.microsoft.com/meetingOptions/?organizerId=0602f987-96ff-46da-b19e-bdff9b6206d5&tenantId=ece9227b-67ef-4f9a-86a6-db5502178337&threadId=19_meeting_ZTIxOGNiZDctMjNiMC00OGJlLWE3MDYtMzZiMjMyODA3ZThi@thread.v2&messageId=0&language=en-US>\r\n________________________________________________________________________________\r\nThis message may contain confidential information belonging to the Vuzix Corporation and is intended only for the named recipients. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. E-mail transmission cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, destroyed, arrive late or incomplete, or contain viruses. The sender therefore does not accept liability for any errors or omissions in the contents of this message, which arise as a result of e-mail transmission. If verification is required please request a hard-copy version.',0,0,0,0,0,0,'2025-06-02 15:12:06','2025-12-09 19:07:03','2025-12-09 19:07:03','2025-12-09 19:07:03',NULL,NULL,NULL),
(340,4,'<E664A06A-7109-44FF-B1F9-BB028CC09142@bayfrontcapitalllc.com>',NULL,NULL,'Re: Impossible Objects NDA & Overview Deck','brian@bayfrontcapitalllc.com','Brian Stufflebean','\r\n--Apple-Mail=_1BB072B8-458F-4F43-A3E5-F7035481A6A1\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Type: text/html;\r\n	charset=utf-8\r\n\r\n<html><head><meta http-equiv=3D\"content-type\" content=3D\"text/html; =\r\ncharset=3Dutf-8\"></head><body style=3D\"overflow-wrap: break-word; =\r\n-webkit-nbsp-mode: space; line-break: after-white-space;\"><div><span =\r\nstyle=3D\"font-size: 14px;\">Good afternoon Steve,</span><div><span =\r\nstyle=3D\"font-size: 14px;\"><br></span></div><div><span style=3D\"font-size:=\r\n 14px;\">Thank you for the information sent, and it was good speaking =\r\nwith you and your investment partner. &nbsp;There is interest in going =\r\nfurther down the path in the commencement of further diligence into how =\r\nwe can potentially mutually benefit from a relationship with Impossible =\r\nObjects and your team.&nbsp;</span></div></div><div><span =\r\nstyle=3D\"font-size: 14px;\"><br></span></div><div><span style=3D\"font-size:=\r\n 14px;\">Regarding the Confidentiality Agreement, due to rapidly changing =\r\ntechnology and innovations that are ever evolving, when reviewing a =\r\ncompany=E2=80=99s information at this stage, the Term of the NDA is =\r\nusually not longer than 1 - Year. &nbsp;If steps are taken, to further a =\r\nrelationship, then new and more defining documents will be drafted. =\r\n&nbsp;If that Term change can be made, we can agree to move forward with =\r\nreviews.</span></div><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: 14px;\">If you =\r\nhave any questions, please let me know, and thank you for your time last =\r\nweek.&nbsp;</span></div><div><br></div><div><br></div><br =\r\nid=3D\"lineBreakAtBeginningOfMessage\"><div>\r\n<meta charset=3D\"UTF-8\"><div style=3D\"font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; letter-spacing: =\r\nnormal; text-align: start; text-indent: 0px; text-transform: none; =\r\nwhite-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\">Best Regards,&nbsp;<br><br><br>Brian C. Stufflebean, =\r\nCEO<br><b>Bayfront Capital, LLC</b><br>(941)545-4153 =\r\nDirect<br>(866)896-2423 =\r\nFax<br>brian@bayfrontcapitalllc.com<br>www.bayfrontcapitalllc.com<br>&nbsp=\r\n;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br><br></div><span style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"></span><br class=3D\"Apple-interchange-newline\" style=3D\"caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0); font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"><span style=3D\"caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); =\r\nfont-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"></span><span><img alt=3D\"PastedGraphic-3.tiff\" =\r\nsrc=3D\"cid:1316E71A-4E09-4379-B53C-D6EB7DA3C430\"></span><meta =\r\ncharset=3D\"UTF-8\"><div style=3D\"font-family: Helvetica; font-size: 12px; =\r\nfont-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br =\r\nclass=3D\"Apple-interchange-newline\"><br =\r\nclass=3D\"Apple-interchange-newline\"><br></span></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; letter-spacing: normal; text-align: start; =\r\ntext-indent: 0px; text-transform: none; white-space: normal; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><b>CONFIDENTIALITY NOTICE / NOTICE&nbsp;OF&nbsp;NOT A =\r\nREGISTERED&nbsp;BROKER/DEALER:</b><span style=3D\"font-weight: =\r\n400;\">&nbsp;Bayfront Capital&nbsp;LLC, nor its=E2=80=99 affiliates are =\r\nregistered as&nbsp;a Broker/Dealer, nor registered with&nbsp;FINRA. Nor =\r\ndoes&nbsp;it provide tax or&nbsp;investment advice.&nbsp;&nbsp;Any =\r\nreferences&nbsp;made to any transaction in any&nbsp;communication is =\r\nbeing made as a&nbsp;business consultant.&nbsp;&nbsp;&nbsp;This is not =\r\na&nbsp;solicitation nor offer of any type and any&nbsp;reference to any =\r\nproposed transaction&nbsp;of any type is void where prohibited =\r\nby&nbsp;law.&nbsp;This communication&nbsp;is confidential&nbsp;and =\r\nintended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not =\r\nthe intended&nbsp;recipient, you&nbsp;may not copy, disclose, =\r\nor&nbsp;distribute this message&nbsp;to anyone else;&nbsp;any such =\r\nactions may be unlawful. If&nbsp;you have received this =\r\ncommunication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the =\r\nmessage to&nbsp;inform him or her of the&nbsp;error.</span></div>\r\n</div>\r\n<div><br><blockquote type=3D\"cite\"><div>On Jun 2, 2025, at 10:41=E2=80=AFA=\r\nM, Steve Hoover &lt;shoover@impossible-objects.com&gt; wrote:</div><br =\r\nclass=3D\"Apple-interchange-newline\"><div><div>Brian,<br><br>Thanks for =\r\nthe productive call on Friday.<br><br>Attached is our standard NDA for =\r\nyour review and signature.<br><br>Also attached is an overview deck that =\r\ncovers much of what we discussed on Friday and in earlier =\r\ncalls.<br><br>Looking forward to hearing from you on the best path =\r\nforward in the coming weeks.<br><br>Best<br><br>Steve<br><span =\r\nid=3D\"cid:45E3DEA0-FFDF-4EB5-958A-F8C53A2D370D\">&lt;IO-Intro Deck DU =\r\n2025_04.pdf&gt;</span><span =\r\nid=3D\"cid:964DE0DD-0233-477D-A7B7-84954B122664\">&lt;Confidentiality =\r\nAgreement Investor - Impossible Objects - =\r\nV181109.pdf&gt;</span></div></div></blockquote></div><br></body></html>=\r\n\r\n--Apple-Mail=_1BB072B8-458F-4F43-A3E5-F7035481A6A1\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=PastedGraphic-3.tiff\r\nContent-Type: image/tiff;\r\n	name=\"PastedGraphic-3.tiff\"\r\nContent-Id: <1316E71A-4E09-4379-B53C-D6EB7DA3C430>\r\n\r\n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\r\nZmlGSQAAACgAAAR8cGxQTAAAACwAAASkcnVSVQAAACIAAATQYXJFRwAAACYAAATyZW5VUwAAACYA\r\nAAUYZGFESwAAAC4AAAU+AFYBYQBlAG8AYgBlAGMAbgD9ACAAUgBHAEIAIABwAHIAbwBmAGkAbABH\r\nAGUAbgBlAHIAaQENAGsAaQAgAFIARwBCACAAcAByAG8AZgBpAGwAUABlAHIAZgBpAGwAIABSAEcA\r\nQgAgAGcAZQBuAOgAcgBpAGMAUABlAHIAZgBpAGwAIABSAEcAQgAgAEcAZQBuAOkAcgBpAGMAbwQX\r\nBDAEMwQwBDsETAQ9BDgEOQAgBD8EQAQ+BEQEMAQ5BDsAIABSAEcAQgBQAHIAbwBmAGkAbAAgAGcA\r\n6QBuAOkAcgBpAHEAdQBlACAAUgBWAEKQGnUoACAAUgBHAEIAIIJyX2ljz4/wAFAAcgBvAGYAaQBs\r\nAG8AIABSAEcAQgAgAGcAZQBuAGUAcgBpAGMAbwBHAGUAbgBlAHIAaQBzAGsAIABSAEcAQgAtAHAA\r\ncgBvAGYAaQBsx3y8GAAgAFIARwBCACDVBLhc0wzHfABPAGIAZQBjAG4A/QAgAFIARwBCACAAcABy\r\nAG8AZgBpAGwF5AXoBdUF5AXZBdwAIABSAEcAQgAgBdsF3AXcBdkAQQBsAGwAZwBlAG0AZQBpAG4A\r\nZQBzACAAUgBHAEIALQBQAHIAbwBmAGkAbADBAGwAdABhAGwA4QBuAG8AcwAgAFIARwBCACAAcABy\r\nAG8AZgBpAGxmbpAaACAAUgBHAEIAIGPPj/Blh072TgCCLAAgAFIARwBCACAw1zDtMNUwoTCkMOsA\r\nUAByAG8AZgBpAGwAIABSAEcAQgAgAGcAZQBuAGUAcgBpAGMDkwO1A70DuQO6A8wAIAPAA8EDvwPG\r\nA68DuwAgAFIARwBCAFAAZQByAGYAaQBsACAAUgBHAEIAIABnAGUAbgDpAHIAaQBjAG8AQQBsAGcA\r\nZQBtAGUAZQBuACAAUgBHAEIALQBwAHIAbwBmAGkAZQBsDkIOGw4jDkQOHw4lDkwAIABSAEcAQgAg\r\nDhcOMQ5IDicORA4bAEcAZQBuAGUAbAAgAFIARwBCACAAUAByAG8AZgBpAGwAaQBZAGwAZQBpAG4A\r\nZQBuACAAUgBHAEIALQBwAHIAbwBmAGkAaQBsAGkAVQBuAGkAdwBlAHIAcwBhAGwAbgB5ACAAcABy\r\nAG8AZgBpAGwAIABSAEcAQgQeBDEESQQ4BDkAIAQ/BEAEPgREBDgEOwRMACAAUgBHAEIGRQZEBkEA\r\nIAYqBjkGMQZKBkEAIABSAEcAQgAgBicGRAY5BicGRQBHAGUAbgBlAHIAaQBjACAAUgBHAEIAIABQ\r\nAHIAbwBmAGkAbABlAEcAZQBuAGUAcgBlAGwAIABSAEcAQgAtAGIAZQBzAGsAcgBpAHYAZQBsAHMA\r\nZXRleHQAAAAAQ29weXJpZ2h0IDIwMDcgQXBwbGUgSW5jLiwgYWxsIHJpZ2h0cyByZXNlcnZlZC4A\r\nWFlaIAAAAAAAAPNSAAEAAAABFs9YWVogAAAAAAAAdE0AAD3uAAAD0FhZWiAAAAAAAABadQAArHMA\r\nABc0WFlaIAAAAAAAACgaAAAVnwAAuDZjdXJ2AAAAAAAAAAEBzQAAc2YzMgAAAAAAAQxCAAAF3v//\r\n8yYAAAeSAAD9kf//+6L///2jAAAD3AAAwGw=\r\n--Apple-Mail=_1BB072B8-458F-4F43-A3E5-F7035481A6A1--','Good afternoon Steve,\r\n\r\nThank you for the information sent, and it was good speaking with you and your investment partner.  There is interest in going further down the path in the commencement of further diligence into how we can potentially mutually benefit from a relationship with Impossible Objects and your team. \r\n\r\nRegarding the Confidentiality Agreement, due to rapidly changing technology and innovations that are ever evolving, when reviewing a company’s information at this stage, the Term of the NDA is usually not longer than 1 - Year.  If steps are taken, to further a relationship, then new and more defining documents will be drafted.  If that Term change can be made, we can agree to move forward with reviews.\r\n\r\nIf you have any questions, please let me know, and thank you for your time last week. \r\n\r\n\r\n\r\nBest Regards, \r\n\r\n\r\nBrian C. Stufflebean, CEO\r\nBayfront Capital, LLC\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\nbrian@bayfrontcapitalllc.com\r\nwww.bayfrontcapitalllc.com\r\n      \r\n\r\n\r\n￼\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER: Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.\r\n\r\n> On Jun 2, 2025, at 10:41 AM, Steve Hoover <shoover@impossible-objects.com> wrote:\r\n> \r\n> Brian,\r\n> \r\n> Thanks for the productive call on Friday.\r\n> \r\n> Attached is our standard NDA for your review and signature.\r\n> \r\n> Also attached is an overview deck that covers much of what we discussed on Friday and in earlier calls.\r\n> \r\n> Looking forward to hearing from you on the best path forward in the coming weeks.\r\n> \r\n> Best\r\n> \r\n> Steve\r\n> <IO-Intro Deck DU 2025_04.pdf><Confidentiality Agreement Investor - Impossible Objects - V181109.pdf>',0,0,0,0,0,0,'2025-06-02 16:47:31','2025-12-09 19:07:03','2025-12-09 19:07:03','2025-12-09 19:07:03',NULL,NULL,NULL),
(341,4,'<CANkMA8Who3k4A4FgDmLXh9SrfWJK7TnYMaDSpOTSF9_iMVzO1A@mail.gmail.com>',NULL,NULL,'Meeting this week','avalkenburg@strategic-logix.com','Andrew Valkenburg','<div dir=\"ltr\"><div>Rick,</div><div><br></div><div>Sent you an invite for 12EST Wednesday this week. Please let me know if that will work. We wanted to forward over the pitch deck so we can keep the ball rolling even though we hadn&#39;t had a chance to meet. As of today we have been offered a classified CRADA and we have several more orders of RRSL-X packages as well as demonstration at the highest level of government to solicit more drones. Sorry I can&#39;t say more than that, but all things I think you and your team will be interested in. </div><div><br></div><div>Andrew</div><div class=\"gmail_chip gmail_drive_chip\" style=\"width:386px;height:20px;max-height:20px;background-color:rgb(245,245,245);margin:6px 0px;padding:10px;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;font-size-adjust:none;font-kerning:auto;font-feature-settings:normal;font-stretch:normal;font-size:14px;line-height:20px;font-family:&quot;Google Sans&quot;,sans-serif;border:1px solid rgb(221,221,221)\"><a href=\"https://d5Fk0J04.na1.hs-sales-engage.com/Ctc/ZY+23284/d5Fk0J04/JlF2-6qcW8wLKSR6lZ3lgVkdPtG1RLl59W4wDBf57zVnvYW3mhcp_83gRHmVrlKyv7KYl83W9kv6f76dr_1VW7dMM3l5b3Q6ZW2tlqSn3td692W1G3jTt5RsF5WW6-Qs7x7vwwgnN50CRgyC83YdW40RT2_52gmRLN51z48yKXX-RN6_-_dy17pKbW79Zx4F6HHK4yW1B9WjG8J4Vn0W6zK7Fd4pHNRHW8N8jPN2STM1gW6lLfsn8rP-9XW2zl6g43pryR3MJ6dzJ4TR7zN4sWBtnvDXtYW8JDlSk8GnnlxN2pjqXVZmHX8N6WjDm9nqqRLN3hyjQkrjtVzW7LDT2N5Bmk3SW7cHmSD1mrS6WW3xjmdv89ZfTdf1mVCd004\" target=\"_blank\" style=\"color:rgb(32,33,36);display:inline-block;max-width:356px;overflow:hidden;text-overflow:ellipsis;text-decoration-line:none;border:none\" aria-label=\"Pitch Deck_Final (1).pdf\"><img style=\"vertical-align: text-bottom; border: none; padding-right: 10px; height: 20px;\" alt=\"\" src=\"https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png\"> <span dir=\"ltr\" style=\"vertical-align:bottom;text-decoration:none\">Pitch Deck_Final (1).pdf</span></a><img src=\"//ssl.gstatic.com/ui/v1/icons/mail/gm3/1x/close_baseline_nv700_20dp.png\" class=\"gmail_chip_remove\" aria-label=\"Remove attachment\" style=\"padding-left: 10px; cursor: pointer; width: 20px; height: 20px; float: right; display: none;\"></div><div class=\"gmail_chip gmail_drive_chip\" style=\"width:386px;height:20px;max-height:20px;background-color:rgb(245,245,245);margin:6px 0px;padding:10px;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;font-size-adjust:none;font-kerning:auto;font-feature-settings:normal;font-stretch:normal;font-size:14px;line-height:20px;font-family:&quot;Google Sans&quot;,sans-serif;border:1px solid rgb(221,221,221)\"><a href=\"https://d5Fk0J04.na1.hs-sales-engage.com/Ctc/ZY+23284/d5Fk0J04/JlF2-6qcW8wLKSR6lZ3mMW8CCzX72D7lPYW4jvVX62BjcYwW52jxG04sl41DW2Sn4J74FGzjtW5Vd0-g6ps44dV_bvvH3tYGwkW2FsMp_5n7M6WW9k5gyD1y2qGrW3Ht3cj24CjlsW1hgZ-W7vhgqkN1XXTb7JFR6wN64g2V_K0ZtwW2jHg3V1cRCWbW6wddQ24qPPlQW79tYtP19wr71W3XkXCh217jF8W6kBbDL6X4fkHN7kT8RZyT6jkW39GYG_3Kfk8sW6gfZ7895KfnHW8_bbRX5dBZ2bW7w99Fz27stnMW8dfxXC23T43nW56DbF76MxyWwW4cD9fB5CwQYKW7HbMzh5hpf0nW2VkF787VXsfQW2qWWwP3zx9Nbf5By0RW04\" target=\"_blank\" style=\"color:rgb(32,33,36);display:inline-block;max-width:356px;overflow:hidden;text-overflow:ellipsis;text-decoration-line:none;border:none\" aria-label=\"Pitch Deck_Final.mp4\"><img style=\"vertical-align: text-bottom; border: none; padding-right: 10px; height: 20px;\" alt=\"\" src=\"https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png\"> <span dir=\"ltr\" style=\"vertical-align:bottom;text-decoration:none\">Pitch Deck_Final.mp4</span></a><img src=\"//ssl.gstatic.com/ui/v1/icons/mail/gm3/1x/close_baseline_nv700_20dp.png\" class=\"gmail_chip_remove\" aria-label=\"Remove attachment\" style=\"padding-left: 10px; cursor: pointer; width: 20px; height: 20px; float: right; display: none;\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p><font color=\"#000000\"><b><a href=\"https://d5Fk0J04.na1.hs-sales-engage.com/Ctc/ZY+23284/d5Fk0J04/Jks2-6qcW69sMD-6lZ3lLW70D7fZ84xkJbW85XRTt1LMBn4W1DD93788vvXpW4nld-Y5bwdLdW6rm88g6tKls2W95LPWW95swWnW2JljHC1vy3Z0W3Wk9D49bMGK0W2h9g6_2lS31lW5Ydk5g2x5GVgW3-JXDy4ldvKMVYz1xh3JLyZwW5JDpwS6qlyLTW5q2p4m1N4hVsVZmgz92gR-_BW7jHG4y5clvcwW7dlxbF4MHzJCW6rSzVp7FxSQzW6XVkRw1p1K9yVCXx9p4kshLff1ZShcb04\" target=\"_blank\">VISIT OUR WEBSITE</a></b></font></p><p><strong><font color=\"#000000\"><br></font></strong></p><p><strong><font color=\"#000000\">Sincerely,</font></strong></p><p><font color=\"#000000\">Andrew Valkenburg<br>Chief Operations Officer, Strategic Logix LLC<br>484-225-9132<br><a rel=\"noopener\">avalkenburg@strategic-logix.com</a></font></p></div></div><img src=\"https://d5Fk0J04.na1.hs-sales-engage.com/Cto/ZY+23284/d5Fk0J04/R5R8b46GFN8DRvLG2fD9rW1W-ywB20WYn_W20WYXh1W-tKMW1Gdpt71N36p-W3yNVWy3yRQtmW3yM_l71T_YtRn1--v6q4W1\" alt=\"\" height=\"1\" width=\"1\" style=\"display: none !important;\"><div></div></div>','Rick,\r\n\r\nSent you an invite for 12EST Wednesday this week. Please let me know if\r\nthat will work. We wanted to forward over the pitch deck so we can keep the\r\nball rolling even though we hadn\'t had a chance to meet. As of today we\r\nhave been offered a classified CRADA and we have several more orders of\r\nRRSL-X packages as well as demonstration at the highest level of\r\ngovernment to solicit more drones. Sorry I can\'t say more than that, but\r\nall things I think you and your team will be interested in.\r\n\r\nAndrew\r\n Pitch Deck_Final (1).pdf\r\n<https://d5Fk0J04.na1.hs-sales-engage.com/Ctc/ZY+23284/d5Fk0J04/JlF2-6qcW8wLKSR6lZ3lgVkdPtG1RLl59W4wDBf57zVnvYW3mhcp_83gRHmVrlKyv7KYl83W9kv6f76dr_1VW7dMM3l5b3Q6ZW2tlqSn3td692W1G3jTt5RsF5WW6-Qs7x7vwwgnN50CRgyC83YdW40RT2_52gmRLN51z48yKXX-RN6_-_dy17pKbW79Zx4F6HHK4yW1B9WjG8J4Vn0W6zK7Fd4pHNRHW8N8jPN2STM1gW6lLfsn8rP-9XW2zl6g43pryR3MJ6dzJ4TR7zN4sWBtnvDXtYW8JDlSk8GnnlxN2pjqXVZmHX8N6WjDm9nqqRLN3hyjQkrjtVzW7LDT2N5Bmk3SW7cHmSD1mrS6WW3xjmdv89ZfTdf1mVCd004>\r\n Pitch Deck_Final.mp4\r\n<https://d5Fk0J04.na1.hs-sales-engage.com/Ctc/ZY+23284/d5Fk0J04/JlF2-6qcW8wLKSR6lZ3mMW8CCzX72D7lPYW4jvVX62BjcYwW52jxG04sl41DW2Sn4J74FGzjtW5Vd0-g6ps44dV_bvvH3tYGwkW2FsMp_5n7M6WW9k5gyD1y2qGrW3Ht3cj24CjlsW1hgZ-W7vhgqkN1XXTb7JFR6wN64g2V_K0ZtwW2jHg3V1cRCWbW6wddQ24qPPlQW79tYtP19wr71W3XkXCh217jF8W6kBbDL6X4fkHN7kT8RZyT6jkW39GYG_3Kfk8sW6gfZ7895KfnHW8_bbRX5dBZ2bW7w99Fz27stnMW8dfxXC23T43nW56DbF76MxyWwW4cD9fB5CwQYKW7HbMzh5hpf0nW2VkF787VXsfQW2qWWwP3zx9Nbf5By0RW04>\r\n\r\n-- \r\n\r\n*VISIT OUR WEBSITE\r\n<https://d5Fk0J04.na1.hs-sales-engage.com/Ctc/ZY+23284/d5Fk0J04/Jks2-6qcW69sMD-6lZ3lLW70D7fZ84xkJbW85XRTt1LMBn4W1DD93788vvXpW4nld-Y5bwdLdW6rm88g6tKls2W95LPWW95swWnW2JljHC1vy3Z0W3Wk9D49bMGK0W2h9g6_2lS31lW5Ydk5g2x5GVgW3-JXDy4ldvKMVYz1xh3JLyZwW5JDpwS6qlyLTW5q2p4m1N4hVsVZmgz92gR-_BW7jHG4y5clvcwW7dlxbF4MHzJCW6rSzVp7FxSQzW6XVkRw1p1K9yVCXx9p4kshLff1ZShcb04>*\r\n\r\n\r\n*Sincerely,*\r\n\r\nAndrew Valkenburg\r\nChief Operations Officer, Strategic Logix LLC\r\n484-225-9132\r\navalkenburg@strategic-logix.com',0,0,0,0,0,0,'2025-06-02 17:14:36','2025-12-09 19:07:04','2025-12-09 19:07:04','2025-12-09 19:07:04',NULL,NULL,NULL),
(342,4,' <BY3PR13MB4945D5090EB818087E16359FCC62A@BY3PR13MB4945.namprd13.prod.outlook.com>',NULL,NULL,'Concept 1 RF Tool','chris@odsafe.com','Chris','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nRick,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nThis is a very early draft. There are definite talking points and things to figure out.&nbsp; Power is always a hot button. I put some bs in the KSA (Key system attributes) about how long it will run off batteries, but I don\'t know if that is realistic. We just\r\n need to be honest about this aspect of it. The other is power vs range, especially on collect.&nbsp; I know I can grab credentials with something in my hand, however,&nbsp; something&nbsp; 15\' away will require a lot of power and a directional antenna most likely. This is\r\n not my space, but I know that I would have loved to have been able to snag a maid\'s credentials from 10\' away to clone a card, but in my tenure, the power it would take made it not feasible.&nbsp;</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nI think we need to figure out the business aspect too. If this is something that can be done without govt funding, then it is wholly ours to proliferate how we see fit (government only) and we need to figure out how to carve out everyone\'s slice. Even if they\r\n support the dev, we need to figure out how we shake things out once it is in the manufacturing phase.&nbsp; &nbsp;Just planting the seed on this because I feel like there are several opportunities for us to partner and I am not going to be charging a mint for hours\r\n or ideas, so the money has to come from somewhere (product).&nbsp; I know I can sell this to the groups I work with and probably get traction with ones I don\'t spend much time with.&nbsp; I am fairly certain this isn\'t the one that gets us yachts to sail off into the\r\n sunset with, but it could get us the funds to build the thing that gets the yachts!&nbsp; &nbsp;I just want to make sure we figure out how the model works to keep all involved happy and focused on what is in front of us as well as the next thing.&nbsp;</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nAgain, these are initial thoughts on paper but I wanted to get it over to you so you can start rolling it around in your head as well.&nbsp; With your knowledge, you could down select the platform you want to use. I was just throwing it in as considerations.&nbsp;</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nThank you,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nChris&nbsp;</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"Signature\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nChris Cassavoy&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nOrange Diamond Safe Co</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n(606) 222-0028</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nchris@odsafe.com</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<img id=\"image_0\" width=\"119\" height=\"124\" style=\"width: 119px; height: 124px; max-width: 780px;\" data-outlook-trace=\"F:1|T:1\" src=\"cid:1689c517-e448-415d-82aa-b84b78bbfaa1\"></div>\r\n</div>\r\n</body>\r\n</html>','Rick,\r\nThis is a very early draft. There are definite talking points and things to figure out.  Power is always a hot button. I put some bs in the KSA (Key system attributes) about how long it will run off batteries, but I don\'t know if that is realistic. We just need to be honest about this aspect of it. The other is power vs range, especially on collect.  I know I can grab credentials with something in my hand, however,  something  15\' away will require a lot of power and a directional antenna most likely. This is not my space, but I know that I would have loved to have been able to snag a maid\'s credentials from 10\' away to clone a card, but in my tenure, the power it would take made it not feasible.\r\n\r\nI think we need to figure out the business aspect too. If this is something that can be done without govt funding, then it is wholly ours to proliferate how we see fit (government only) and we need to figure out how to carve out everyone\'s slice. Even if they support the dev, we need to figure out how we shake things out once it is in the manufacturing phase.   Just planting the seed on this because I feel like there are several opportunities for us to partner and I am not going to be charging a mint for hours or ideas, so the money has to come from somewhere (product).  I know I can sell this to the groups I work with and probably get traction with ones I don\'t spend much time with.  I am fairly certain this isn\'t the one that gets us yachts to sail off into the sunset with, but it could get us the funds to build the thing that gets the yachts!   I just want to make sure we figure out how the model works to keep all involved happy and focused on what is in front of us as well as the next thing.\r\n\r\nAgain, these are initial thoughts on paper but I wanted to get it over to you so you can start rolling it around in your head as well.  With your knowledge, you could down select the platform you want to use. I was just throwing it in as considerations.\r\n\r\nThank you,\r\nChris\r\n\r\n\r\n\r\nChris Cassavoy\r\nOrange Diamond Safe Co\r\n(606) 222-0028\r\nchris@odsafe.com\r\n[cid:1689c517-e448-415d-82aa-b84b78bbfaa1]',0,0,0,0,0,0,'2025-06-02 18:10:03','2025-12-09 19:07:04','2025-12-09 19:07:04','2025-12-09 19:07:04',NULL,NULL,NULL),
(343,4,'<7FB78391-8993-4CBC-9945-17CB5A65389F@bayfrontcapitalllc.com>',NULL,NULL,'=?utf-8?B?UmU6IE5leHQgc3RlcHPigKY=?=','brian@bayfrontcapitalllc.com','Brian Stufflebean','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"><div><div><span></span><meta charset=\"UTF-8\"><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br class=\"Apple-interchange-newline\"><br class=\"Apple-interchange-newline\"><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><b>CONFIDENTIALITY NOTICE / NOTICE&nbsp;OF&nbsp;NOT A REGISTERED&nbsp;BROKER/DEALER:&nbsp;</b><span style=\"font-weight: 400;\">Bayfront Capital&nbsp;LLC, nor its’ affiliates are registered as&nbsp;a Broker/Dealer, nor registered with&nbsp;FINRA. Nor does&nbsp;it provide tax or&nbsp;investment advice.&nbsp;&nbsp;Any references&nbsp;made to any transaction in any&nbsp;communication is being made as a&nbsp;business consultant.&nbsp;&nbsp;&nbsp;This is not a&nbsp;solicitation nor offer of any type and any&nbsp;reference to any proposed transaction&nbsp;of any type is void where prohibited by&nbsp;law.&nbsp;This communication&nbsp;is confidential&nbsp;and intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient, you&nbsp;may not copy, disclose, or&nbsp;distribute this message&nbsp;to anyone else;&nbsp;any such actions may be unlawful. If&nbsp;you have received this communication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the message to&nbsp;inform him or her of the&nbsp;error.</span></div>\r\n</div>\r\n<div><br><blockquote type=\"cite\"><div>On Jun 1, 2025, at 9:47 AM, Rick &lt;rick@mavrix.one&gt; wrote:</div><br class=\"Apple-interchange-newline\"><div><meta charset=\"UTF-8\"><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Hi Brian,&nbsp;</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">I know you mentioned on the call to Steve you are 2.5 weeks out, so&nbsp;</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">I wanted to work out a schedule during that time for me…</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><br></div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Here’s what I’m tracking with you at this point:</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><br></div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><div style=\"margin: 0in; font-size: 10pt; font-family: Cambria, serif;\">Vector<o:p></o:p></div><div style=\"margin: 0in 0in 0in 0.5in; font-size: 10pt; font-family: Cambria, serif; text-indent: -0.25in;\">-<span style=\"font-style: normal; font-variant-caps: normal; font-width: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;; font-size-adjust: none; font-kerning: auto; font-variant-alternates: normal; font-variant-ligatures: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-position: normal; font-feature-settings: normal; font-optical-sizing: auto; font-variation-settings: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Schedule next call to Invest?<o:p></o:p></div><div style=\"margin: 0in 0in 0in 0.5in; font-size: 10pt; font-family: Cambria, serif; text-indent: -0.25in;\">-<span style=\"font-style: normal; font-variant-caps: normal; font-width: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;; font-size-adjust: none; font-kerning: auto; font-variant-alternates: normal; font-variant-ligatures: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-position: normal; font-feature-settings: normal; font-optical-sizing: auto; font-variation-settings: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>$8M for X<o:p></o:p></div><div style=\"margin: 0in 0in 0in 0.5in; font-size: 10pt; font-family: Cambria, serif; text-indent: -0.25in;\">-<span style=\"font-style: normal; font-variant-caps: normal; font-width: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;; font-size-adjust: none; font-kerning: auto; font-variant-alternates: normal; font-variant-ligatures: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-position: normal; font-feature-settings: normal; font-optical-sizing: auto; font-variation-settings: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Discuss the things we offer (Supply Chain, Swarm, products, partnership for RDT&amp;E etc.)<o:p></o:p></div><div style=\"margin: 0in; font-size: 10pt; font-family: Cambria, serif;\"><br></div><div style=\"margin: 0in; font-size: 10pt; font-family: Cambria, serif;\">Impossible Objects<o:p></o:p></div><div style=\"margin: 0in 0in 0in 0.5in; font-size: 10pt; font-family: Cambria, serif; text-indent: -0.25in;\">-<span style=\"font-style: normal; font-variant-caps: normal; font-width: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;; font-size-adjust: none; font-kerning: auto; font-variant-alternates: normal; font-variant-ligatures: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-position: normal; font-feature-settings: normal; font-optical-sizing: auto; font-variation-settings: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Review the information Steve sends over</div><div style=\"margin: 0in 0in 0in 0.5in; font-size: 10pt; font-family: Cambria, serif; text-indent: -0.25in;\">- &nbsp; &nbsp; &nbsp;Schedule next call for delivering an LoI<o:p></o:p></div><div style=\"margin: 0in 0in 0in 0.5in; font-size: 10pt; font-family: Cambria, serif; text-indent: -0.25in;\">-<span style=\"font-style: normal; font-variant-caps: normal; font-width: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;; font-size-adjust: none; font-kerning: auto; font-variant-alternates: normal; font-variant-ligatures: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-position: normal; font-feature-settings: normal; font-optical-sizing: auto; font-variation-settings: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>$5-10M or&nbsp;<o:p></o:p></div><div style=\"margin: 0in 0in 0in 0.5in; font-size: 10pt; font-family: Cambria, serif; text-indent: -0.25in;\">-<span style=\"font-style: normal; font-variant-caps: normal; font-width: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;; font-size-adjust: none; font-kerning: auto; font-variant-alternates: normal; font-variant-ligatures: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-position: normal; font-feature-settings: normal; font-optical-sizing: auto; font-variation-settings: normal;\">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span><span style=\"font-size: 13.333333px;\">more to&nbsp;</span><span style=\"font-size: 10pt; text-indent: -0.25in;\">purchase them for a service model?</span></div><div style=\"margin: 0in 0in 0in 0.5in; font-size: 10pt; font-family: Cambria, serif; text-indent: -0.25in;\"><o:p></o:p></div><div style=\"margin: 0in; font-size: 10pt; font-family: Cambria, serif;\"><br></div><div style=\"margin: 0in; font-size: 10pt; font-family: Cambria, serif;\">Corvex Systems<o:p></o:p></div><div style=\"margin: 0in 0in 0in 0.5in; font-size: 10pt; font-family: Cambria, serif; text-indent: -0.25in;\">-<span style=\"font-style: normal; font-variant-caps: normal; font-width: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;; font-size-adjust: none; font-kerning: auto; font-variant-alternates: normal; font-variant-ligatures: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-position: normal; font-feature-settings: normal; font-optical-sizing: auto; font-variation-settings: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Schedule a call to meet Justin&nbsp;<o:p></o:p></div><div style=\"margin: 0in 0in 0in 0.5in; font-size: 10pt; font-family: Cambria, serif; text-indent: -0.25in;\">-<span style=\"font-style: normal; font-variant-caps: normal; font-width: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;; font-size-adjust: none; font-kerning: auto; font-variant-alternates: normal; font-variant-ligatures: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-position: normal; font-feature-settings: normal; font-optical-sizing: auto; font-variation-settings: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>He is asking for $5M, but automation could make it more&nbsp;<o:p></o:p></div><div style=\"margin: 0in 0in 0in 0.5in; font-size: 10pt; font-family: Cambria, serif; text-indent: -0.25in;\">-<span style=\"font-style: normal; font-variant-caps: normal; font-width: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;; font-size-adjust: none; font-kerning: auto; font-variant-alternates: normal; font-variant-ligatures: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-position: normal; font-feature-settings: normal; font-optical-sizing: auto; font-variation-settings: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>How many facilities and how fast could he produce?<o:p></o:p></div><div style=\"margin: 0in; font-size: 10pt; font-family: Cambria, serif;\"><br></div><div style=\"margin: 0in; font-size: 10pt; font-family: Cambria, serif;\">Icarus Swarms<o:p></o:p></div><div style=\"margin: 0in 0in 0in 0.5in; font-size: 10pt; font-family: Cambria, serif; text-indent: -0.25in;\">-<span style=\"font-style: normal; font-variant-caps: normal; font-width: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;; font-size-adjust: none; font-kerning: auto; font-variant-alternates: normal; font-variant-ligatures: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-position: normal; font-feature-settings: normal; font-optical-sizing: auto; font-variation-settings: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Need to send a single document to explain MAVRIX and our Interest in them</div><p class=\"MsoListParagraphCxSpFirst\" style=\"margin: 0in 0in 0in 0.5in; font-size: 10pt; font-family: Cambria, serif; text-indent: -0.25in;\"><span style=\"font-size: 10pt; text-indent: -0.25in;\">&nbsp;</span></p></div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><br></div><span style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; float: none; display: inline !important;\">Please let me know if this tracks with what you have.</span><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><br></div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">I am also working on finding a facility to lease in the St. Pete area (through one of my SOF guys),</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">and I am building a budget for what we need to get started with Black Swan, and</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">for what we will need to build out MAVRIX and our lab, \"The Dark,\" for future work through Black Swan.</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><br></div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Additionally, we have a few more companies to reach out to (Lithium Battery Co, Bavovna, and more), and</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">I’m wondering if you want to look at next-generation battery efforts (graphene), or&nbsp;</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">even next-generation chip manufacturing?</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><br></div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">I know it\'s a lot, and you’re already very busy closing other deals.</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">I\'m just trying to get a read on the next steps over the next few weeks&nbsp;</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Are you available for calls throughout?</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><br></div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Please let me know if I\'ve missed anything or if you need anything from me.</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Getting geared up to kick a dent in the world and change the dynamics.</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><br></div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Thanks again,</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\">Rick</div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><br></div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><br></div><div style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><br><div class=\"gmail_signature\">Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div><div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height: 11px;\"></div></div></div></div></blockquote></div><br></div></body></html>','Rick,\r\n\r\nPlease see attached.\r\n\r\n\r\n\r\n￼\r\n\r\n\r\n\r\n\r\n\r\nBest Regards, \r\n\r\n\r\nBrian C. Stufflebean, CEO\r\nBayfront Capital, LLC\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\nbrian@bayfrontcapitalllc.com\r\nwww.bayfrontcapitalllc.com\r\n      \r\n\r\n\r\n￼\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER: Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.\r\n\r\n> On Jun 1, 2025, at 9:47 AM, Rick <rick@mavrix.one> wrote:\r\n> \r\n> Hi Brian, \r\n> I know you mentioned on the call to Steve you are 2.5 weeks out, so \r\n> I wanted to work out a schedule during that time for me…\r\n> \r\n> Here’s what I’m tracking with you at this point:\r\n> \r\n> Vector\r\n> -        Schedule next call to Invest?\r\n> -        $8M for X\r\n> -        Discuss the things we offer (Supply Chain, Swarm, products, partnership for RDT&E etc.)\r\n> \r\n> Impossible Objects\r\n> -        Review the information Steve sends over\r\n> -      Schedule next call for delivering an LoI\r\n> -        $5-10M or \r\n> -        more to purchase them for a service model?\r\n> \r\n> Corvex Systems\r\n> -        Schedule a call to meet Justin \r\n> -        He is asking for $5M, but automation could make it more \r\n> -        How many facilities and how fast could he produce?\r\n> \r\n> Icarus Swarms\r\n> -        Need to send a single document to explain MAVRIX and our Interest in them\r\n>  \r\n> \r\n> Please let me know if this tracks with what you have.\r\n> \r\n> I am also working on finding a facility to lease in the St. Pete area (through one of my SOF guys),\r\n> and I am building a budget for what we need to get started with Black Swan, and\r\n> for what we will need to build out MAVRIX and our lab, \"The Dark,\" for future work through Black Swan.\r\n> \r\n> Additionally, we have a few more companies to reach out to (Lithium Battery Co, Bavovna, and more), and\r\n> I’m wondering if you want to look at next-generation battery efforts (graphene), or \r\n> even next-generation chip manufacturing?\r\n> \r\n> I know it\'s a lot, and you’re already very busy closing other deals.\r\n> I\'m just trying to get a read on the next steps over the next few weeks \r\n> Are you available for calls throughout?\r\n> \r\n> Please let me know if I\'ve missed anything or if you need anything from me.\r\n> Getting geared up to kick a dent in the world and change the dynamics.\r\n> \r\n> Thanks again,\r\n> Rick\r\n> \r\n> \r\n> \r\n> Rick Mislan, PhD\r\n> https://mavrix.one <https://mavrix.onehttps//mavrix.onehttps://mavrix.one>',0,0,0,0,0,0,'2025-06-02 22:08:54','2025-12-09 19:07:05','2025-12-09 19:07:05','2025-12-09 19:07:05',NULL,NULL,NULL),
(344,4,'<calendar-75157661-58f2-4739-8b7e-e602e5305aa5@google.com>',NULL,NULL,'Invitation: Rick<>Arthur @ Tue Jun 3, 2025 3pm - 3:30pm (EDT) (rick@mavrix.one)','almccallum@gmail.com','Arthur McCallum','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v143/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v117/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation from Arthur McCallum\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"6pa0c8nb4pp07huk3lpvvsbgqh\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Rick&lt;&gt;Arthur</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NnBhMGM4bmI0cHAwN2h1azNscHZ2c2JncWggcmlja0BtYXZyaXgub25l&amp;tok=MjAjYWxtY2NhbGx1bUBnbWFpbC5jb202ZDRmZjZkNGQ5ZGJkMDc2NjJlYjM1NzNmNzc5MjNmNjhhZWM5OGI3&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250603T190000Z\"></time><time itemprop=\"endDate\" datetime=\"20250603T193000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">Join with Google Meet – You have been invited by Arthur McCallum to attend an event named Rick&lt;&gt;Arthur on Tuesday Jun 3, 2025 ⋅ 3pm – 3:30pm (Eastern Time - New York).</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:28px;\"><a href=\"https://meet.google.com/iyt-qkjc-wbz?hs=224\" class=\"primary-button-text\" style=\"display: inline-block;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"display: inline-block\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"background-color: #1a73e8; cursor: auto; padding: 10px 25px; border: none; border-radius: 4px; margin: 0;\" class=\"primary-button\"><!--[if mso]><a href=\"https://meet.google.com/iyt-qkjc-wbz?hs=224\" class=\"primary-button-text\" target=\"_blank\"><![endif]--><span class=\"primary-button-text\" style=\"font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\">Join with Google Meet</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Meeting link</h2></td></tr></table><!-- Use grey text for the Meet link--><div><a style=\"display: inline-block;;color: #70757a; text-decoration: none;\" class=\"secondary-text underline-on-hover\" href=\"https://meet.google.com/iyt-qkjc-wbz?hs=224\">meet.google.com/iyt-qkjc-wbz</a></div></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250603T190000Z\"></time><time itemprop=\"endDate\" datetime=\"20250603T193000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Tuesday Jun 3, 2025 ⋅ 3pm – 3:30pm (Eastern Time - New York)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:almccallum@gmail.com\">Arthur McCallum</a></span><meta itemprop=\"email\" content=\"almccallum@gmail.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Arthur McCallum\"/><meta itemprop=\"email\" content=\"almccallum@gmail.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NnBhMGM4bmI0cHAwN2h1azNscHZ2c2JncWggcmlja0BtYXZyaXgub25l&amp;tok=MjAjYWxtY2NhbGx1bUBnbWFpbC5jb202ZDRmZjZkNGQ5ZGJkMDc2NjJlYjM1NzNmNzc5MjNmNjhhZWM5OGI3&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NnBhMGM4bmI0cHAwN2h1azNscHZ2c2JncWggcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjAjYWxtY2NhbGx1bUBnbWFpbC5jb202ZDRmZjZkNGQ5ZGJkMDc2NjJlYjM1NzNmNzc5MjNmNjhhZWM5OGI3&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NnBhMGM4bmI0cHAwN2h1azNscHZ2c2JncWggcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjAjYWxtY2NhbGx1bUBnbWFpbC5jb202ZDRmZjZkNGQ5ZGJkMDc2NjJlYjM1NzNmNzc5MjNmNjhhZWM5OGI3&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NnBhMGM4bmI0cHAwN2h1azNscHZ2c2JncWggcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjAjYWxtY2NhbGx1bUBnbWFpbC5jb202ZDRmZjZkNGQ5ZGJkMDc2NjJlYjM1NzNmNzc5MjNmNjhhZWM5OGI3&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NnBhMGM4bmI0cHAwN2h1azNscHZ2c2JncWggcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjAjYWxtY2NhbGx1bUBnbWFpbC5jb202ZDRmZjZkNGQ5ZGJkMDc2NjJlYjM1NzNmNzc5MjNmNjhhZWM5OGI3&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NnBhMGM4bmI0cHAwN2h1azNscHZ2c2JncWggcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjAjYWxtY2NhbGx1bUBnbWFpbC5jb202ZDRmZjZkNGQ5ZGJkMDc2NjJlYjM1NzNmNzc5MjNmNjhhZWM5OGI3&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NnBhMGM4bmI0cHAwN2h1azNscHZ2c2JncWggcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjAjYWxtY2NhbGx1bUBnbWFpbC5jb202ZDRmZjZkNGQ5ZGJkMDc2NjJlYjM1NzNmNzc5MjNmNjhhZWM5OGI3&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NnBhMGM4bmI0cHAwN2h1azNscHZ2c2JncWggcmlja0BtYXZyaXgub25l&amp;tok=MjAjYWxtY2NhbGx1bUBnbWFpbC5jb202ZDRmZjZkNGQ5ZGJkMDc2NjJlYjM1NzNmNzc5MjNmNjhhZWM5OGI3&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NnBhMGM4bmI0cHAwN2h1azNscHZ2c2JncWggcmlja0BtYXZyaXgub25l&amp;tok=MjAjYWxtY2NhbGx1bUBnbWFpbC5jb202ZDRmZjZkNGQ5ZGJkMDc2NjJlYjM1NzNmNzc5MjNmNjhhZWM5OGI3&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','Rick<>Arthur\r\nTuesday Jun 3, 2025 ⋅ 3pm – 3:30pm\r\nEastern Time - New York\r\n\r\nJoin with Google Meet\r\nhttps://meet.google.com/iyt-qkjc-wbz?hs=224\r\n\r\n\r\n\r\n\r\nOrganizer\r\nArthur McCallum\r\nalmccallum@gmail.com\r\n\r\nGuests\r\nArthur McCallum - organizer\r\nrick@mavrix.one\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=NnBhMGM4bmI0cHAwN2h1azNscHZ2c2JncWggcmlja0BtYXZyaXgub25l&tok=MjAjYWxtY2NhbGx1bUBnbWFpbC5jb202ZDRmZjZkNGQ5ZGJkMDc2NjJlYjM1NzNmNzc5MjNmNjhhZWM5OGI3&ctz=America%2FNew_York&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=NnBhMGM4bmI0cHAwN2h1azNscHZ2c2JncWggcmlja0BtYXZyaXgub25l&tok=MjAjYWxtY2NhbGx1bUBnbWFpbC5jb202ZDRmZjZkNGQ5ZGJkMDc2NjJlYjM1NzNmNzc5MjNmNjhhZWM5OGI3&ctz=America%2FNew_York&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-06-03 13:57:00','2025-12-09 19:07:05','2025-12-09 19:07:05','2025-12-09 19:07:05',NULL,NULL,NULL),
(345,4,'<0F92C563-758E-488D-978D-987DB4DAC6BF@bavovna.ai>',NULL,NULL,'Fwd: The Manufacturing Challenge is Now Open! Register for Upcoming Webinars.','alm@bavovna.ai','Arthur McCallum','<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head><body style=\"word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\" class=\"\">FYI<br class=\"\"><div><br class=\"\"><blockquote type=\"cite\" class=\"\"><div class=\"\">Begin forwarded message:</div><br class=\"Apple-interchange-newline\"><div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;\" class=\"\"><span style=\"font-family: -webkit-system-font, Helvetica Neue, Helvetica, sans-serif; color:rgba(0, 0, 0, 1.0);\" class=\"\"><b class=\"\">From: </b></span><span style=\"font-family: -webkit-system-font, Helvetica Neue, Helvetica, sans-serif;\" class=\"\">AFWERX &lt;<a href=\"mailto:AFWERX@USAFAFWERX.dod.govdelivery.com\" class=\"\">AFWERX@USAFAFWERX.dod.govdelivery.com</a>&gt;<br class=\"\"></span></div><div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;\" class=\"\"><span style=\"font-family: -webkit-system-font, Helvetica Neue, Helvetica, sans-serif; color:rgba(0, 0, 0, 1.0);\" class=\"\"><b class=\"\">Subject: </b></span><span style=\"font-family: -webkit-system-font, Helvetica Neue, Helvetica, sans-serif;\" class=\"\"><b class=\"\">The Manufacturing Challenge is Now Open! Register for Upcoming Webinars.</b><br class=\"\"></span></div><div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;\" class=\"\"><span style=\"font-family: -webkit-system-font, Helvetica Neue, Helvetica, sans-serif; color:rgba(0, 0, 0, 1.0);\" class=\"\"><b class=\"\">Date: </b></span><span style=\"font-family: -webkit-system-font, Helvetica Neue, Helvetica, sans-serif;\" class=\"\">June 4, 2025 at 12:01:47 PM EDT<br class=\"\"></span></div><div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;\" class=\"\"><span style=\"font-family: -webkit-system-font, Helvetica Neue, Helvetica, sans-serif; color:rgba(0, 0, 0, 1.0);\" class=\"\"><b class=\"\">To: </b></span><span style=\"font-family: -webkit-system-font, Helvetica Neue, Helvetica, sans-serif;\" class=\"\"><a href=\"mailto:alm@bavovna.ai\" class=\"\">alm@bavovna.ai</a><br class=\"\"></span></div><br class=\"\"><div class=\"\"><meta charset=\"UTF-8\" class=\"\"><table bgcolor=\"#ffffff\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; width: 629px;\" class=\"\"><tbody class=\"\"><tr bgcolor=\"#ffffff\" class=\"\"><td align=\"center\" valign=\"top\" style=\"background-color: rgb(255, 255, 255); padding: 0px; font-size: 1px; font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; color: rgb(255, 255, 255);\" class=\"\">The Manufacturing Challenge is Now Open! Register for Upcoming Webinars.</td></tr></tbody></table><a name=\"gd_top\" id=\"gd_top\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\" class=\"\"></a><span style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; float: none; display: inline !important;\" class=\"\"></span><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" align=\"center\" class=\"gd_tbl_wrap\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><tbody class=\"\"><tr class=\"\"><td bgcolor=\"#F5F5F5\" style=\"background-color: rgb(245, 245, 245); margin: 0px; padding: 0px; width: 629px;\" class=\"\"><table id=\"flexible-abe-main-table\" width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing: 0px; padding-top: 20px; padding-bottom: 20px;\" class=\"\"><tbody class=\"\"><tr class=\"\"><td class=\"\"></td><td class=\"\"><div class=\"abe-section-block\" data-block-type=\"FancyBlockSection\" data-block-id=\"143014288\"><table class=\"abe-section-table\" width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"max-width: 600px; border-spacing: 0px;\"><tbody class=\"\"><tr id=\"abe-section-row-a9489245-9aea-4c9d-b270-a6b18919eefd\" class=\"abe-section-row\" bgcolor=\"#FFFFFF\" style=\"background-color: rgb(255, 255, 255);\"><td align=\"center\" valign=\"top\" style=\"text-align: center; vertical-align: top; font-size: 0px;\" class=\"\"><div id=\"abe-column-block-ca1ad543-03e5-4ca7-a709-39cef181f3a2\" class=\"abe-column-block\" data-block-type=\"FancyBlockColumn\" data-block-id=\"143014289\" style=\"min-height: 5px; width: 601px; box-sizing: border-box; display: inline-block; font-size: 16px; vertical-align: top;\"><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"table-layout: fixed; overflow-wrap: break-word; word-wrap: break-word; text-align: left; border-spacing: 0px;\" class=\"\"><tbody class=\"\"><tr class=\"\"><td class=\"abe-column-block-padding\" id=\"abe-column-block-ca1ad543-03e5-4ca7-a709-39cef181f3a2-padding\" style=\"padding: 15px;\"><p align=\"center\" style=\"text-align: center; line-height: 1.4; font-family: helvetica; font-size: 14px; margin: 0px 0px 10px;\" class=\"\"><sup class=\"\"><a href=\"https://links-2.govdelivery.com/CL0/https:%2F%2Fcontent.govdelivery.com%2Faccounts%2FUSAFAFWERX%2Fbulletins%2F3e25121/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/644Vb7LLcJqHp7Dk6kapj6ib5G2_c2u4EMIRkC5Xkdw=408\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(29, 87, 130);\" class=\"\">Share / View in your browser</a></sup></p></td></tr></tbody></table></div></td></tr></tbody></table></div><div class=\"abe-section-block\" data-block-type=\"FancyBlockSection\" data-block-id=\"143014291\"><table class=\"abe-section-table\" width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"max-width: 600px; border-spacing: 0px;\"><tbody class=\"\"><tr id=\"abe-section-row-84099c35-3d0e-4a7e-bac8-fdd52746f469\" class=\"abe-section-row\" bgcolor=\"#FFFFFF\" style=\"background-color: rgb(255, 255, 255);\"><td align=\"center\" valign=\"top\" style=\"text-align: center; vertical-align: top; font-size: 0px;\" class=\"\"><div id=\"abe-column-block-15693452-8ca4-42e0-b83e-0cfdcd68ca5d\" class=\"abe-column-block\" data-block-type=\"FancyBlockColumn\" data-block-id=\"143014292\" style=\"min-height: 5px; width: 601px; box-sizing: border-box; display: inline-block; font-size: 16px; vertical-align: top;\"><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"table-layout: fixed; overflow-wrap: break-word; word-wrap: break-word; text-align: left; border-spacing: 0px;\" class=\"\"><tbody class=\"\"><tr class=\"\"><td class=\"abe-column-block-padding\" id=\"abe-column-block-15693452-8ca4-42e0-b83e-0cfdcd68ca5d-padding\" style=\"padding: 0px;\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-spacing: 0px;\" class=\"\"><tbody class=\"\"><tr class=\"\"><td align=\"center\" class=\"\"><a href=\"https://links-2.govdelivery.com/CL0/https:%2F%2Fafwerx.com%2Fdivisions%2Fventures%2Foverview%2F%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/vT2hCPhk13sxDR8b3XVEdxQAv22R-uiCoBlXlDcsJHc=408\" target=\"_blank\" rel=\"noopener noreferrer\" class=\"\"><img class=\"govd_template_image\" src=\"https://content.govdelivery.com/attachments/fancy_images/USAFAFWERX/2025/01/10896287/202411-afwerxspacewerxventures-700x233-original_original.jpg\" alt=\"AFWERX &amp; SpaceWERX Ventures\" width=\"601\" height=\"200\" style=\"width: 601px; height: auto; line-height: 1; outline: none; text-decoration: none; max-width: 100%; border: none;\"></a></td></tr></tbody></table></td></tr></tbody></table></div></td></tr></tbody></table></div><div class=\"abe-section-block\" data-block-type=\"FancyBlockSection\" data-block-id=\"143014294\"><table class=\"abe-section-table\" width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"max-width: 600px; border-spacing: 0px;\"><tbody class=\"\"><tr id=\"abe-section-row-a57ed18e-1e2f-4a2f-af2c-c72a3996116a\" class=\"abe-section-row\" bgcolor=\"#FFFFFF\" style=\"background-color: rgb(255, 255, 255);\"><td align=\"center\" valign=\"top\" style=\"text-align: center; vertical-align: top; font-size: 0px;\" class=\"\"><div id=\"abe-column-block-b6144786-c4d8-4602-97de-fde8a62a55b4\" class=\"abe-column-block\" data-block-type=\"FancyBlockColumn\" data-block-id=\"143014295\" style=\"min-height: 5px; width: 601px; box-sizing: border-box; display: inline-block; font-size: 16px; vertical-align: top;\"><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"table-layout: fixed; overflow-wrap: break-word; word-wrap: break-word; text-align: left; border-spacing: 0px;\" class=\"\"><tbody class=\"\"><tr class=\"\"><td class=\"abe-column-block-padding\" id=\"abe-column-block-b6144786-c4d8-4602-97de-fde8a62a55b4-padding\" style=\"padding: 15px;\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-spacing: 0px;\" class=\"\"><tbody class=\"\"><tr class=\"\"><td align=\"center\" class=\"\"><a href=\"https://links-2.govdelivery.com/CL0/https:%2F%2Fafwerxchallenge.com%2Fmfgchallenge%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/Sg_kqJPPw9sljLprJwkV5E2U0yGnbY6Kva-_-n2IMFk=408\" target=\"_blank\" rel=\"noopener noreferrer\" class=\"\"><img class=\"govd_template_image\" src=\"https://content.govdelivery.com/attachments/fancy_images/USAFAFWERX/2025/05/11679142/6226185/afwerx-challenge-manufacturing-social-v3-fb-open_crop.jpg\" alt=\"The Manufacturing Challenge is Now Open! Register for Upcoming Webinars.\" width=\"571\" height=\"298\" style=\"width: 571px; height: auto; line-height: 1; outline: none; text-decoration: none; max-width: 100%; border: none;\"></a></td></tr></tbody></table><p style=\"line-height: 1.4; color: rgb(15, 24, 45); font-family: helvetica; font-size: 14px; margin: 1em 0px 10px;\" class=\"\"><br class=\"\">AFWERX and SpaceWERX have launched the<span class=\"Apple-converted-space\">&nbsp;</span><a href=\"https://links-2.govdelivery.com/CL0/https:%2F%2Fafwerxchallenge.com%2Fmfgchallenge%3Futm_medium=email%26utm_source=govdelivery/2/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/WaE_9OwsZ00fA5DvHJ9l5CEmTgbU3L0TW9g5G0-0HaI=408\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(29, 87, 130);\" class=\"\"><strong class=\"\">Manufacturing Challenge</strong></a>—a bold new initiative to strengthen domestic supply chains and revolutionize defense manufacturing!<br class=\"\"><br class=\"\"><em class=\"\">Open for submissions from June 4 to July 9</em>, the Challenge aims to accelerate the production of cost-effective, high-quality technologies and scale advanced manufacturing to strengthen national security. By uniting manufacturers, small businesses, academics, and government experts, it addresses critical gaps in the United States Air Force (USAF) and United States Space Forces’ (USSF) industrial base.<br class=\"\"><br class=\"\">Submissions will be managed through the<span class=\"Apple-converted-space\">&nbsp;</span><a href=\"https://links-2.govdelivery.com/CL0/https:%2F%2Fwww.dodsbirsttr.mil%2Ftopics-app%2F%3Fbaa=DOD_SBIR_2025_P1_C5%26release=9%26utm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/N8mRF-FDibSiMuqRmPmDj7SJAeLfzLPVl4NNyqjOeW8=408\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(29, 87, 130);\" class=\"\">Defense SBIR/STTR Innovation Portal (DSIP)</a>, with separate eligibility criteria for SBIR and STTR programs.<span class=\"Apple-converted-space\">&nbsp;</span><em class=\"\"><strong class=\"\">The submission window closes on Wednesday, July 9</strong></em>.</p><div style=\"line-height: 1.4; color: rgb(15, 24, 45); font-family: helvetica; font-size: 14px; margin: 0px 0px 10px;\" class=\"\">&nbsp;<br class=\"webkit-block-placeholder\"></div><table class=\"govd_button\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing: 0px;\"><tbody class=\"\"><tr class=\"\"><td style=\"padding-bottom: 15px;\" class=\"\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"border-spacing: 0px; margin: 0px auto;\" class=\"\"><tbody class=\"\"><tr class=\"\"><td class=\"govd_button\" align=\"center\" bgcolor=\"#0F182D\" style=\"background-color: rgb(15, 24, 45); border-radius: 0px; text-align: center; display: inline-block; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; padding: 15px; border: none;\"><a href=\"https://links-2.govdelivery.com/CL0/https:%2F%2Fafwerxchallenge.com%2Fmfgchallenge%3Futm_medium=email%26utm_source=govdelivery/3/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/u8DoVdrfW7w0ir_R3MaQxdguZ67CoA2xxGzRvhvpXpE=408\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"text-decoration: none !important;\" class=\"\"><strong style=\"font-family: helvetica; font-size: 15px; color: rgb(255, 255, 255); text-decoration: none;\" class=\"\">Get Involved &amp; Learn More!</strong></a></td></tr></tbody></table></td></tr></tbody></table><table class=\"govd_hr\" cellspacing=\"0\" border=\"0\" align=\"center\" width=\"100%\" cellpadding=\"0\" style=\"min-width: 100%; border-spacing: 0px;\"><tbody class=\"\"><tr class=\"govd_hr_inner\"><td width=\"100%\" class=\"\"><hr class=\"\"></td></tr></tbody></table></td></tr></tbody></table></div></td></tr></tbody></table></div><div class=\"abe-section-block\" data-block-type=\"FancyBlockSection\" data-block-id=\"143014661\"><table class=\"abe-section-table\" width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"max-width: 600px; border-spacing: 0px;\"><tbody class=\"\"><tr id=\"abe-section-row-89b847bb-3054-46c8-bdf3-ad4b757bffae\" class=\"abe-section-row\" bgcolor=\"#DDDDDD\" style=\"background-color: rgb(221, 221, 221);\"><td align=\"center\" valign=\"top\" style=\"text-align: center; vertical-align: top; font-size: 0px;\" class=\"\"><div id=\"abe-column-block-84011fc1-fe80-4262-9899-e64cda63e27a\" class=\"abe-column-block\" data-block-type=\"FancyBlockColumn\" data-block-id=\"143014662\" style=\"min-height: 5px; width: 601px; box-sizing: border-box; display: inline-block; font-size: 16px; vertical-align: top;\"><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"table-layout: fixed; overflow-wrap: break-word; word-wrap: break-word; text-align: left; border-spacing: 0px;\" class=\"\"><tbody class=\"\"><tr class=\"\"><td class=\"abe-column-block-padding\" id=\"abe-column-block-84011fc1-fe80-4262-9899-e64cda63e27a-padding\" style=\"padding: 15px;\"><h2 style=\"line-height: 1.2; font-family: helvetica; font-size: 22px; color: rgb(15, 24, 45); margin: 0px 0px 10px;\" class=\"\">Upcoming Ask Me Anything (AMA) Webinars</h2><p style=\"line-height: 1.4; font-family: helvetica; font-size: 14px; margin: 0px 0px 10px;\" class=\"\">To support your participation, the Challenge team is hosting four Ask Me Anything (AMA) webinars designed to help you understand the submission requirements, engage directly with the AFWERX and SpaceWERX team, and connect with potential collaborators to strengthen your submission.</p></td></tr></tbody></table></div></td></tr></tbody></table></div><div class=\"abe-section-block\" data-block-type=\"FancyBlockSection\" data-block-id=\"143014571\"><table class=\"abe-section-table\" width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"max-width: 600px; border-spacing: 0px;\"><tbody class=\"\"><tr id=\"abe-section-row-62110ce4-1a29-4059-a5fd-308f0fba1827\" class=\"abe-section-row\" bgcolor=\"#dddddd\" style=\"background-color: rgb(221, 221, 221);\"><td align=\"center\" valign=\"top\" style=\"text-align: center; vertical-align: top; font-size: 0px;\" class=\"\"><div id=\"abe-column-block-a4495914-902f-4167-a59f-566e31f5020b\" class=\"abe-column-block\" data-block-type=\"FancyBlockColumn\" data-block-id=\"143014572\" style=\"min-height: 5px; width: 300px; box-sizing: border-box; display: inline-block; font-size: 16px; vertical-align: top;\"><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"table-layout: fixed; overflow-wrap: break-word; word-wrap: break-word; text-align: left; border-spacing: 0px;\" class=\"\"><tbody class=\"\"><tr class=\"\"><td class=\"abe-column-block-padding\" id=\"abe-column-block-a4495914-902f-4167-a59f-566e31f5020b-padding\" style=\"padding: 15px;\"><h3 align=\"center\" style=\"text-align: center; line-height: 1.2; font-family: helvetica; font-size: 16px; margin: 0px 0px 10px;\" class=\"\">AMA #1</h3><p align=\"center\" style=\"text-align: center; line-height: 1.4; font-family: helvetica; font-size: 14px; margin: 0px 0px 10px;\" class=\"\">Thursday, June 12<br class=\"\">2 p.m. ET</p><table class=\"govd_button\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing: 0px;\"><tbody class=\"\"><tr class=\"\"><td style=\"padding-bottom: 15px;\" class=\"\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"border-spacing: 0px; margin: 0px auto;\" class=\"\"><tbody class=\"\"><tr class=\"\"><td class=\"govd_button\" align=\"center\" bgcolor=\"#0F182D\" style=\"background-color: rgb(15, 24, 45); border-radius: 0px; text-align: center; display: inline-block; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; padding: 15px; border: none;\"><a href=\"https://links-2.govdelivery.com/CL0/https:%2F%2Fevents.teams.microsoft.com%2Fevent%2Fb308ee1d-75fe-4dfd-9442-a8ac81c2adee@f7d4b2aa-8df7-45f9-a4de-67c528dd4981%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/3fgOIDHjv3ovJ06UDJA3m_W3auk-YYAOimPY80eWe8s=408\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"text-decoration: none !important;\" class=\"\"><strong style=\"font-family: helvetica; font-size: 15px; color: rgb(255, 255, 255); text-decoration: none;\" class=\"\">Register</strong></a></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></div><span class=\"Apple-converted-space\">&nbsp;</span><div id=\"abe-column-block-04e11479-b45b-488d-b9d1-be8efca4469a\" class=\"abe-column-block\" data-block-type=\"FancyBlockColumn\" data-block-id=\"143014576\" style=\"min-height: 5px; width: 300px; box-sizing: border-box; display: inline-block; font-size: 16px; vertical-align: top;\"><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"table-layout: fixed; overflow-wrap: break-word; word-wrap: break-word; text-align: left; border-spacing: 0px;\" class=\"\"><tbody class=\"\"><tr class=\"\"><td class=\"abe-column-block-padding\" id=\"abe-column-block-04e11479-b45b-488d-b9d1-be8efca4469a-padding\" style=\"padding: 15px;\"><h3 align=\"center\" style=\"text-align: center; line-height: 1.2; font-family: helvetica; font-size: 16px; margin: 0px 0px 10px;\" class=\"\">AMA #2</h3><p align=\"center\" style=\"text-align: center; line-height: 1.4; font-family: helvetica; font-size: 14px; margin: 0px 0px 10px;\" class=\"\">Tuesday, June 17<br class=\"\">1 p.m. ET</p><table class=\"govd_button\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing: 0px;\"><tbody class=\"\"><tr class=\"\"><td style=\"padding-bottom: 15px;\" class=\"\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"border-spacing: 0px; margin: 0px auto;\" class=\"\"><tbody class=\"\"><tr class=\"\"><td class=\"govd_button\" align=\"center\" bgcolor=\"#0F182D\" style=\"background-color: rgb(15, 24, 45); border-radius: 0px; text-align: center; display: inline-block; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; padding: 15px; border: none;\"><a href=\"https://links-2.govdelivery.com/CL0/https:%2F%2Fevents.teams.microsoft.com%2Fevent%2Fbbf0218b-f00b-4c36-87f9-7e324ae5ac85@f7d4b2aa-8df7-45f9-a4de-67c528dd4981%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/qWMoRyYGuw-1hDaq6yInySnjQ_f9s5jKxfhTVbc4qJ0=408\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"text-decoration: none !important;\" class=\"\"><strong style=\"font-family: helvetica; font-size: 15px; color: rgb(255, 255, 255); text-decoration: none;\" class=\"\">Register</strong></a></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></div></td></tr></tbody></table></div><div class=\"abe-section-block\" data-block-type=\"FancyBlockSection\" data-block-id=\"143014674\"><table class=\"abe-section-table\" width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"max-width: 600px; border-spacing: 0px;\"><tbody class=\"\"><tr id=\"abe-section-row-3e6ab195-5d75-463c-87be-4b8d4c635df9\" class=\"abe-section-row\" bgcolor=\"#DDDDDD\" style=\"background-color: rgb(221, 221, 221);\"><td align=\"center\" valign=\"top\" style=\"text-align: center; vertical-align: top; font-size: 0px;\" class=\"\"><div id=\"abe-column-block-87a4518e-145a-427d-9ea3-ef072d6034d1\" class=\"abe-column-block\" data-block-type=\"FancyBlockColumn\" data-block-id=\"143014675\" style=\"min-height: 5px; width: 300px; box-sizing: border-box; display: inline-block; font-size: 16px; vertical-align: top;\"><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"table-layout: fixed; overflow-wrap: break-word; word-wrap: break-word; text-align: left; border-spacing: 0px;\" class=\"\"><tbody class=\"\"><tr class=\"\"><td class=\"abe-column-block-padding\" id=\"abe-column-block-87a4518e-145a-427d-9ea3-ef072d6034d1-padding\" style=\"padding: 15px;\"><h3 align=\"center\" style=\"text-align: center; line-height: 1.2; font-family: helvetica; font-size: 16px; margin: 0px 0px 10px;\" class=\"\">AMA #3</h3><p align=\"center\" style=\"text-align: center; line-height: 1.4; font-family: helvetica; font-size: 14px; margin: 0px 0px 10px;\" class=\"\">Tuesday, June 17<br class=\"\">3 p.m. ET</p><table class=\"govd_button\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing: 0px;\"><tbody class=\"\"><tr class=\"\"><td style=\"padding-bottom: 15px;\" class=\"\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"border-spacing: 0px; margin: 0px auto;\" class=\"\"><tbody class=\"\"><tr class=\"\"><td class=\"govd_button\" align=\"center\" bgcolor=\"#0F182D\" style=\"background-color: rgb(15, 24, 45); border-radius: 0px; text-align: center; display: inline-block; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; padding: 15px; border: none;\"><a href=\"https://links-2.govdelivery.com/CL0/https:%2F%2Fevents.teams.microsoft.com%2Fevent%2F21fb3937-5a7d-496b-84f8-2f4e2982d71d@f7d4b2aa-8df7-45f9-a4de-67c528dd4981%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/ghjtIq7o5WCkkCIQI6oSzJdMvcOtf9jNE_QQkcT2xPs=408\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"text-decoration: none !important;\" class=\"\"><strong style=\"font-family: helvetica; font-size: 15px; color: rgb(255, 255, 255); text-decoration: none;\" class=\"\">Register</strong></a></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></div><span class=\"Apple-converted-space\">&nbsp;</span><div id=\"abe-column-block-96715486-7c85-46aa-a690-b8201598dafa\" class=\"abe-column-block\" data-block-type=\"FancyBlockColumn\" data-block-id=\"143014679\" style=\"min-height: 5px; width: 300px; box-sizing: border-box; display: inline-block; font-size: 16px; vertical-align: top;\"><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"table-layout: fixed; overflow-wrap: break-word; word-wrap: break-word; text-align: left; border-spacing: 0px;\" class=\"\"><tbody class=\"\"><tr class=\"\"><td class=\"abe-column-block-padding\" id=\"abe-column-block-96715486-7c85-46aa-a690-b8201598dafa-padding\" style=\"padding: 15px;\"><h3 align=\"center\" style=\"text-align: center; line-height: 1.2; font-family: helvetica; font-size: 16px; margin: 0px 0px 10px;\" class=\"\">Open Collaboration Session (Virtual)</h3><p align=\"center\" style=\"text-align: center; line-height: 1.4; font-family: helvetica; font-size: 14px; margin: 0px 0px 10px;\" class=\"\">Tuesday, June 24<br class=\"\">2 p.m. ET</p><table class=\"govd_button\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing: 0px;\"><tbody class=\"\"><tr class=\"\"><td style=\"padding-bottom: 15px;\" class=\"\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"border-spacing: 0px; margin: 0px auto;\" class=\"\"><tbody class=\"\"><tr class=\"\"><td class=\"govd_button\" align=\"center\" bgcolor=\"#0F182D\" style=\"background-color: rgb(15, 24, 45); border-radius: 0px; text-align: center; display: inline-block; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; padding: 15px; border: none;\"><a href=\"https://links-2.govdelivery.com/CL0/https:%2F%2Fafwerx.com%2Fevents%2Fmanufacturing-challenge-open-collaboration-session-virtual%2F%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/CrAyw0IA-xAEFfTZoIMD1uCnmKWH479u4DKpcO-zwfc=408\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"text-decoration: none !important;\" class=\"\"><strong style=\"font-family: helvetica; font-size: 15px; color: rgb(255, 255, 255); text-decoration: none;\" class=\"\">Register</strong></a></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></div></td></tr></tbody></table></div><div class=\"abe-section-block\" data-block-type=\"FancyBlockSection\" data-block-id=\"143014298\"><table class=\"abe-section-table\" width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"max-width: 600px; border-spacing: 0px;\"><tbody class=\"\"><tr id=\"abe-section-row-aabfbc5d-fe6c-4412-ad29-8d6e0f58b0d1\" class=\"abe-section-row\" bgcolor=\"#0F182D\" style=\"background-color: rgb(15, 24, 45);\"><td align=\"center\" valign=\"top\" style=\"text-align: center; vertical-align: top; font-size: 0px;\" class=\"\"><div id=\"abe-column-block-28fc1d9f-3fa3-4cec-9e17-0fad35b32097\" class=\"abe-column-block\" data-block-type=\"FancyBlockColumn\" data-block-id=\"143014299\" style=\"min-height: 5px; width: 601px; box-sizing: border-box; display: inline-block; font-size: 16px; vertical-align: top;\"><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"table-layout: fixed; overflow-wrap: break-word; word-wrap: break-word; text-align: left; border-spacing: 0px;\" class=\"\"><tbody class=\"\"><tr class=\"\"><td class=\"abe-column-block-padding\" id=\"abe-column-block-28fc1d9f-3fa3-4cec-9e17-0fad35b32097-padding\" style=\"padding: 15px;\"><table class=\"govd_hr\" cellspacing=\"0\" border=\"0\" align=\"center\" width=\"100%\" cellpadding=\"0\" style=\"min-width: 100%; border-spacing: 0px;\"><tbody class=\"\"><tr class=\"govd_hr_inner\"><td width=\"100%\" class=\"\"><hr class=\"\"></td></tr></tbody></table><h2 style=\"line-height: 1.2; color: rgb(255, 255, 255); font-family: helvetica; font-size: 22px; margin: 0.83em 0px 10px;\" class=\"\">NEW TO AFWERX CHALLENGES?</h2><p style=\"line-height: 1.4; color: rgb(255, 255, 255); font-family: helvetica; font-size: 14px; margin: 0px 0px 10px;\" class=\"\">The AFWERX Challenge<span class=\"Apple-converted-space\">&nbsp;</span><a href=\"https://links-2.govdelivery.com/CL0/https:%2F%2Fafwerxchallenge.com%2F%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/KoxUn_rycDgMwezPmKtaztv06PdLuANuPXM1Kc63Ras=408\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255);\" class=\"\">program</a><span class=\"Apple-converted-space\">&nbsp;</span>was developed to solve complex problems through innovation and collaboration among the nation’s top subject matter experts. Whereas the standard government contracting process can span multiple years, solutions vetted through the Challenge model move from selection to formal agreement in 12 weeks, on average.</p><p style=\"line-height: 1.4; color: rgb(255, 255, 255); font-family: helvetica; font-size: 14px; margin: 0px 0px 10px;\" class=\"\">To stay updated on AFWERX Challenge activities moving forward, sign up for<span class=\"Apple-converted-space\">&nbsp;</span><strong class=\"\"><a href=\"https://links-2.govdelivery.com/CL0/https:%2F%2Fafwerx.com%2Fafwerx-alerts%2F%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/cQ3W6USHLwiBDidsyRb4JfyRwYrP9cgn8f19iAKPXbE=408\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255);\" class=\"\">AFWERX Alerts</a></strong>.</p></td></tr></tbody></table></div></td></tr></tbody></table></div><div class=\"abe-section-block\" data-block-type=\"FancyBlockSection\" data-block-id=\"143014722\"><table class=\"abe-section-table\" width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"max-width: 600px; border-spacing: 0px;\"><tbody class=\"\"><tr id=\"abe-section-row-9fcfa905-2416-4a9e-8264-7c9e6ec96d04\" class=\"abe-section-row\" bgcolor=\"#FFFFFF\" style=\"background-color: rgb(255, 255, 255);\"><td align=\"center\" valign=\"top\" style=\"text-align: center; vertical-align: top; font-size: 0px;\" class=\"\"><div id=\"abe-column-block-eb91f521-0684-461b-9cd5-a23790d6f620\" class=\"abe-column-block\" data-block-type=\"FancyBlockColumn\" data-block-id=\"143014723\" style=\"min-height: 5px; width: 601px; box-sizing: border-box; display: inline-block; font-size: 16px; vertical-align: top;\"><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"table-layout: fixed; overflow-wrap: break-word; word-wrap: break-word; text-align: left; border-spacing: 0px;\" class=\"\"><tbody class=\"\"><tr class=\"\"><td class=\"abe-column-block-padding\" id=\"abe-column-block-eb91f521-0684-461b-9cd5-a23790d6f620-padding\" style=\"padding: 15px;\"><table class=\"govd_hr\" cellspacing=\"0\" border=\"0\" align=\"center\" width=\"100%\" cellpadding=\"0\" style=\"min-width: 100%; border-spacing: 0px;\"><tbody class=\"\"><tr class=\"govd_hr_inner\"><td width=\"100%\" class=\"\"><hr class=\"\"></td></tr></tbody></table><p style=\"line-height: 1.4; font-family: helvetica; font-size: 14px; margin: 1em 0px 10px;\" class=\"\"><strong class=\"\">About<span class=\"Apple-converted-space\">&nbsp;</span></strong><a href=\"https://links-2.govdelivery.com/CL0/https:%2F%2Fafwerx.com%2F%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/rqGGgLhxadx-QeFET-XBV3LfV3P7oYgTjV5jfnAcizo=408\" style=\"color: rgb(29, 87, 130);\" class=\"\"><strong class=\"\">AFWERX</strong></a></p><p style=\"line-height: 1.4; font-family: helvetica; font-size: 14px; margin: 0px 0px 10px;\" class=\"\">As the innovation arm of the DAF and a directorate within the Air Force Research Laboratory, AFWERX brings cutting-edge American ingenuity from small businesses and start-ups to address the most pressing challenges of the DAF. AFWERX employs approximately 370 military, civilian and contractor personnel at four hubs and sites executing an annual $1.4 billion budget. Since 2019, AFWERX has awarded over 10,400 contracts worth more than $7.24 billion to strengthen the U.S. defense industrial base and drive faster technology transition to operational capability. For more information, visit:<span class=\"Apple-converted-space\">&nbsp;</span><a href=\"https://links-2.govdelivery.com/CL0/https:%2F%2Fafwerx.com%2F%3Futm_medium=email%26utm_source=govdelivery/2/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/WNVCLcI77xJuOQXD-2204hiza1KY7xfRNXUifqtZYrw=408\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(29, 87, 130);\" class=\"\"><strong class=\"\">afwerx.com</strong></a>.</p><table class=\"govd_hr\" cellspacing=\"0\" border=\"0\" align=\"center\" width=\"100%\" cellpadding=\"0\" style=\"min-width: 100%; border-spacing: 0px;\"><tbody class=\"\"><tr class=\"govd_hr_inner\"><td width=\"100%\" class=\"\"><hr class=\"\"></td></tr></tbody></table><p style=\"line-height: 1.4; font-family: helvetica; font-size: 14px; margin: 1em 0px 10px;\" class=\"\"><strong class=\"\">About&nbsp;<a href=\"https://links-2.govdelivery.com/CL0/https:%2F%2Fspacewerx.us%2F%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/IzfUj0Pz6GXOF7m_TzCagfPMJJn-XCqWoVPL39LHlt8=408\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(29, 87, 130);\" class=\"\">SpaceWERX&nbsp;</a><br class=\"\"></strong><br class=\"\">As the innovation arm of the U.S. Space Force and a unique division within AFWERX, SpaceWERX inspires and empowers collaboration with innovators to accelerate capabilities and shape our future in space. Headquartered in Los Angeles, SpaceWERX employs 40 military, civilian and contractor personnel executing an annual $457 million budget. Additionally, SpaceWERX partners with Space Systems Command\'s Commercial Space Office (COMSO) as a collaborative program. Since it was aligned under AFRL in Aug. 2021, SpaceWERX has executed 1,106 contracts worth more than $897 million to strengthen the U.S. defense industrial base and drive faster technology transition to operational capability. For more information, visit:<span class=\"Apple-converted-space\">&nbsp;</span><strong class=\"\"><a href=\"https://links-2.govdelivery.com/CL0/http:%2F%2Fspacewerx.us%2F%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/3LQNWVjLQma5VPFQIrO-EGMZk26hZrIjAdpsXfR97pI=408\" target=\"_blank\" data-saferedirecturl=\"https://www.google.com/url?q=http://spacewerx.us&amp;source=gmail&amp;ust=1716556621375000&amp;usg=AOvVaw3LrPHeYv1Fc3iOBMktMzoG\" rel=\"noopener\" style=\"color: rgb(29, 87, 130);\" class=\"\">spacewerx.us</a></strong>.</p></td></tr></tbody></table></div></td></tr></tbody></table></div></td><td class=\"\"></td></tr></tbody></table></td></tr></tbody></table><div id=\"mail_footer\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\" class=\"\"><table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" class=\"\"><tbody class=\"\"><tr class=\"\"><td align=\"center\" width=\"100%\" class=\"\"><div style=\"margin: 0px auto; max-width: 600px; width: 600px;\" class=\"\"><table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"border-collapse: collapse;\" class=\"\"><tbody class=\"\"><tr class=\"\"><td align=\"center\" style=\"font-size: 13px; text-align: center; font-family: arial, helvetica, sans-serif !important; padding: 20px 20px 10px !important;\" class=\"\"><font face=\"arial,helvetica,sans-serif\" class=\"\">Stay Connected with United States Air Force, AFWERX:</font></td></tr><tr class=\"\"><td align=\"center\" style=\"padding: 10px 20px !important; text-align: center !important;\" class=\"\"><font face=\"arial,helvetica,sans-serif\" class=\"\"><a href=\"https://links-2.govdelivery.com/CL0/https:%2F%2Fwww.linkedin.com%2Fcompany%2Fafwerx-usaf%2F%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/d04EhNMs2vn4ldZE-H3UuX9jV3LG5SrdjMDa3bmvqTs=408\" target=\"_blank\" rel=\"noopener\" class=\"\"><img src=\"https://content.govdelivery.com/attachments/fancy_images/implementation/2016/02/754194/linkedin_original.png\" alt=\"LinkedIn\" width=\"32\" style=\"width: 32px; height: auto; float: none; display: inline-block;\" class=\"\"></a>&nbsp;&nbsp;<a href=\"https://links-2.govdelivery.com/CL0/https:%2F%2Fwww.facebook.com%2FAFWERX%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/KEMXwRo4jevKEuyFK1y8cKEN2JX56MVXMdDaGq0SrUY=408\" target=\"_blank\" rel=\"noopener\" class=\"\"><img src=\"https://content.govdelivery.com/attachments/fancy_images/implementation/2016/02/754187/facebook_original.png\" alt=\"Facebook\" width=\"32\" style=\"width: 32px; height: auto; float: none; display: inline-block;\" class=\"\"></a><span class=\"Apple-converted-space\">&nbsp;</span>&nbsp;<a href=\"https://links-2.govdelivery.com/CL0/https:%2F%2Fwww.instagram.com%2Fafwerx%2F%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/VW9_2qTPRfGKhSxK276-94JZ87ytt7IEN2w60kY92nU=408\" target=\"_blank\" rel=\"noopener\" class=\"\"><img src=\"https://content.govdelivery.com/attachments/fancy_images/IMPLEMENTATION/2021/08/4799132/instagram-grad_original.png\" alt=\"instagram\" width=\"32\" style=\"width: 32px; height: auto; float: none; display: inline-block;\" class=\"\"></a>&nbsp;&nbsp;<a href=\"https://links-2.govdelivery.com/CL0/https:%2F%2Ftwitter.com%2FAFWERX%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/TfW4UdjB23L5g0ve12n1Z67kVEJnFFQ_xiEmSFJPEhY=408\" target=\"_blank\" rel=\"noopener\" class=\"\"><img src=\"https://content.govdelivery.com/attachments/fancy_images/IMPLEMENTATION/2023/08/8025283/x_original.png\" alt=\"X\" width=\"32\" style=\"width: 32px; height: auto; float: none; display: inline-block;\" class=\"\"></a><span class=\"Apple-converted-space\">&nbsp;</span>&nbsp;<a href=\"https://links-2.govdelivery.com/CL0/https:%2F%2Fwww.youtube.com%2Fchannel%2FUC1B5dVYEgCDIjXVlEDiN0QQ%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/glig1mod-C9lMmVZHLtle17LeRA7NtnklRR-XFafYwQ=408\" target=\"_blank\" rel=\"noopener\" class=\"\"><img src=\"https://content.govdelivery.com/attachments/fancy_images/IMPLEMENTATION/2016/02/754192/youtube-2_original.png\" alt=\"you tube\" width=\"32\" style=\"width: 32px; height: auto; float: none; display: inline-block;\" class=\"\"></a><span class=\"Apple-converted-space\">&nbsp;</span>&nbsp;<a href=\"https://links-2.govdelivery.com/CL0/https:%2F%2Fafwerx.com%2Fabout-us%2Fcontact%2F%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/MAqt0FRB-YLdTWE_edz1NlJOityK05G8KzDsFf2vuHU=408\" target=\"_blank\" rel=\"noopener\" class=\"\"><img src=\"https://content.govdelivery.com/attachments/fancy_images/implementation/2016/02/754150/govdelivery_original.jpg\" alt=\"Govdelivery\" width=\"32\" style=\"width: 32px; height: auto; float: none; display: inline-block;\" class=\"\"></a></font></td></tr><tr class=\"\"><td style=\"text-align: center; font-family: arial, helvetica, sans-serif; font-size: 13px; padding: 10px 20px 20px !important;\" class=\"\"><font face=\"arial,helvetica,sans-serif\" class=\"\">SUBSCRIBER SERVICES:</font><br class=\"\"><font face=\"arial,helvetica,sans-serif\" class=\"\"><a href=\"https://links-2.govdelivery.com/CL0/https:%2F%2Fpublic.govdelivery.com%2Faccounts%2FUSAFAFWERX%2Fsubscriber%2Fedit%3Fpreferences=true%23tab1/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/dRvUtDg7R8nZVzFYoB1pwcwZb8AlsaemQ2eqNuqQieg=408\" title=\"Manage Subscriptions\" class=\"\">Manage Subscriptions</a><span class=\"Apple-converted-space\">&nbsp;</span>&nbsp;|&nbsp;<span class=\"Apple-converted-space\">&nbsp;</span><a href=\"https://links-2.govdelivery.com/CL0/https:%2F%2Fpublic.govdelivery.com%2Faccounts%2FUSAFAFWERX%2Fsubscriber%2Fone_click_unsubscribe%3Fverification=5.18c98a4be993e53e8c5ad13d08e9785a%26destination=alm%2540bavovna.ai/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/Q_plToDx5NSl8hoz0YxpmzgbpN98sDLRAmnS6nliQdI=408\" title=\"Unsubscribe from All Topics\" class=\"\">Unsubscribe All</a><span class=\"Apple-converted-space\">&nbsp;</span>&nbsp;|&nbsp;<span class=\"Apple-converted-space\">&nbsp;</span><a href=\"https://links-2.govdelivery.com/CL0/https:%2F%2Fsubscriberhelp.govdelivery.com%2F/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/jXR69Minjl9XcSkoXlpsGNX3bZ8lXcCsGNj2gkFKcm8=408\" class=\"\">Help</a></font></td></tr></tbody></table></div></td></tr></tbody></table></div><div id=\"tagline\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\" class=\"\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse: collapse; margin: 0px auto; width: 629px;\" class=\"\"><tbody class=\"\"><tr class=\"\"><td valign=\"top\" style=\"padding: 0px 10px;\" class=\"\"><table class=\"mobile-tagline\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"right\" style=\"border-collapse: collapse; margin: 0px auto; width: 609px;\"><tbody class=\"\"><tr class=\"\"><td colspan=\"2\" valign=\"top\" style=\"padding: 10px 0px 0px;\" class=\"\"><hr class=\"\"></td></tr><tr class=\"\"><td align=\"left\" valign=\"top\" style=\"padding: 10px 5px 10px 0px;\" class=\"\"><span style=\"color: rgb(117, 117, 117); font-size: 10px; font-family: arial, helvetica, sans-serif;\" class=\"\">This email was sent to<span class=\"Apple-converted-space\">&nbsp;</span><a href=\"mailto:alm@bavovna.ai\" class=\"\">alm@bavovna.ai</a><span class=\"Apple-converted-space\">&nbsp;</span>using govDelivery Communications Cloud on behalf of: United States Air Force, AFWERX · 2011 Crystal Drive · Arlington, VA 22202</span></td><td align=\"right\" valign=\"top\" width=\"95\" style=\"width: 95px; padding-top: 10px;\" class=\"\"><a href=\"https://links-2.govdelivery.com/CL0/https:%2F%2Fsubscriberhelp.granicus.com%2F%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/V0e0u9yOJG2lABfEcotbq8PepmeZpT9rQxD7244DLT8=408\" target=\"_blank\" rel=\"noopener\" class=\"\"><img src=\"https://content.govdelivery.com/images/govd-logo-dark.png\" border=\"0\" alt=\"GovDelivery logo\" width=\"95\" height=\"27\" align=\"right\" class=\"\"></a></td></tr></tbody></table></td></tr></tbody></table></div></div></blockquote></div><br class=\"\"></body></html>','FYI\r\n\r\n> Begin forwarded message:\r\n> \r\n> From: AFWERX <AFWERX@USAFAFWERX.dod.govdelivery.com>\r\n> Subject: The Manufacturing Challenge is Now Open! Register for Upcoming Webinars.\r\n> Date: June 4, 2025 at 12:01:47 PM EDT\r\n> To: alm@bavovna.ai\r\n> \r\n> The Manufacturing Challenge is Now Open! Register for Upcoming Webinars.\r\n>  <>\r\n> Share / View in your browser <https://links-2.govdelivery.com/CL0/https:%2F%2Fcontent.govdelivery.com%2Faccounts%2FUSAFAFWERX%2Fbulletins%2F3e25121/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/644Vb7LLcJqHp7Dk6kapj6ib5G2_c2u4EMIRkC5Xkdw=408>\r\n>  <https://links-2.govdelivery.com/CL0/https:%2F%2Fafwerx.com%2Fdivisions%2Fventures%2Foverview%2F%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/vT2hCPhk13sxDR8b3XVEdxQAv22R-uiCoBlXlDcsJHc=408>\r\n>  <https://links-2.govdelivery.com/CL0/https:%2F%2Fafwerxchallenge.com%2Fmfgchallenge%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/Sg_kqJPPw9sljLprJwkV5E2U0yGnbY6Kva-_-n2IMFk=408>\r\n> \r\n> AFWERX and SpaceWERX have launched the Manufacturing Challenge <https://links-2.govdelivery.com/CL0/https:%2F%2Fafwerxchallenge.com%2Fmfgchallenge%3Futm_medium=email%26utm_source=govdelivery/2/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/WaE_9OwsZ00fA5DvHJ9l5CEmTgbU3L0TW9g5G0-0HaI=408>—a bold new initiative to strengthen domestic supply chains and revolutionize defense manufacturing!\r\n> \r\n> Open for submissions from June 4 to July 9, the Challenge aims to accelerate the production of cost-effective, high-quality technologies and scale advanced manufacturing to strengthen national security. By uniting manufacturers, small businesses, academics, and government experts, it addresses critical gaps in the United States Air Force (USAF) and United States Space Forces’ (USSF) industrial base.\r\n> \r\n> Submissions will be managed through the Defense SBIR/STTR Innovation Portal (DSIP) <https://links-2.govdelivery.com/CL0/https:%2F%2Fwww.dodsbirsttr.mil%2Ftopics-app%2F%3Fbaa=DOD_SBIR_2025_P1_C5%26release=9%26utm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/N8mRF-FDibSiMuqRmPmDj7SJAeLfzLPVl4NNyqjOeW8=408>, with separate eligibility criteria for SBIR and STTR programs. The submission window closes on Wednesday, July 9.\r\n> \r\n>  \r\n> Get Involved & Learn More! <https://links-2.govdelivery.com/CL0/https:%2F%2Fafwerxchallenge.com%2Fmfgchallenge%3Futm_medium=email%26utm_source=govdelivery/3/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/u8DoVdrfW7w0ir_R3MaQxdguZ67CoA2xxGzRvhvpXpE=408>\r\n> Upcoming Ask Me Anything (AMA) Webinars\r\n> To support your participation, the Challenge team is hosting four Ask Me Anything (AMA) webinars designed to help you understand the submission requirements, engage directly with the AFWERX and SpaceWERX team, and connect with potential collaborators to strengthen your submission.\r\n> \r\n> AMA #1\r\n> \r\n> Thursday, June 12\r\n> 2 p.m. ET\r\n> \r\n> Register <https://links-2.govdelivery.com/CL0/https:%2F%2Fevents.teams.microsoft.com%2Fevent%2Fb308ee1d-75fe-4dfd-9442-a8ac81c2adee@f7d4b2aa-8df7-45f9-a4de-67c528dd4981%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/3fgOIDHjv3ovJ06UDJA3m_W3auk-YYAOimPY80eWe8s=408> \r\n> AMA #2\r\n> \r\n> Tuesday, June 17\r\n> 1 p.m. ET\r\n> \r\n> Register <https://links-2.govdelivery.com/CL0/https:%2F%2Fevents.teams.microsoft.com%2Fevent%2Fbbf0218b-f00b-4c36-87f9-7e324ae5ac85@f7d4b2aa-8df7-45f9-a4de-67c528dd4981%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/qWMoRyYGuw-1hDaq6yInySnjQ_f9s5jKxfhTVbc4qJ0=408>\r\n> AMA #3\r\n> \r\n> Tuesday, June 17\r\n> 3 p.m. ET\r\n> \r\n> Register <https://links-2.govdelivery.com/CL0/https:%2F%2Fevents.teams.microsoft.com%2Fevent%2F21fb3937-5a7d-496b-84f8-2f4e2982d71d@f7d4b2aa-8df7-45f9-a4de-67c528dd4981%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/ghjtIq7o5WCkkCIQI6oSzJdMvcOtf9jNE_QQkcT2xPs=408> \r\n> Open Collaboration Session (Virtual)\r\n> \r\n> Tuesday, June 24\r\n> 2 p.m. ET\r\n> \r\n> Register <https://links-2.govdelivery.com/CL0/https:%2F%2Fafwerx.com%2Fevents%2Fmanufacturing-challenge-open-collaboration-session-virtual%2F%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/CrAyw0IA-xAEFfTZoIMD1uCnmKWH479u4DKpcO-zwfc=408>\r\n> NEW TO AFWERX CHALLENGES?\r\n> The AFWERX Challenge program <https://links-2.govdelivery.com/CL0/https:%2F%2Fafwerxchallenge.com%2F%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/KoxUn_rycDgMwezPmKtaztv06PdLuANuPXM1Kc63Ras=408> was developed to solve complex problems through innovation and collaboration among the nation’s top subject matter experts. Whereas the standard government contracting process can span multiple years, solutions vetted through the Challenge model move from selection to formal agreement in 12 weeks, on average.\r\n> \r\n> To stay updated on AFWERX Challenge activities moving forward, sign up for AFWERX Alerts <https://links-2.govdelivery.com/CL0/https:%2F%2Fafwerx.com%2Fafwerx-alerts%2F%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/cQ3W6USHLwiBDidsyRb4JfyRwYrP9cgn8f19iAKPXbE=408>.\r\n> \r\n> About AFWERX <https://links-2.govdelivery.com/CL0/https:%2F%2Fafwerx.com%2F%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/rqGGgLhxadx-QeFET-XBV3LfV3P7oYgTjV5jfnAcizo=408>\r\n> As the innovation arm of the DAF and a directorate within the Air Force Research Laboratory, AFWERX brings cutting-edge American ingenuity from small businesses and start-ups to address the most pressing challenges of the DAF. AFWERX employs approximately 370 military, civilian and contractor personnel at four hubs and sites executing an annual $1.4 billion budget. Since 2019, AFWERX has awarded over 10,400 contracts worth more than $7.24 billion to strengthen the U.S. defense industrial base and drive faster technology transition to operational capability. For more information, visit: afwerx.com <https://links-2.govdelivery.com/CL0/https:%2F%2Fafwerx.com%2F%3Futm_medium=email%26utm_source=govdelivery/2/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/WNVCLcI77xJuOQXD-2204hiza1KY7xfRNXUifqtZYrw=408>.\r\n> \r\n> About SpaceWERX  <https://links-2.govdelivery.com/CL0/https:%2F%2Fspacewerx.us%2F%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/IzfUj0Pz6GXOF7m_TzCagfPMJJn-XCqWoVPL39LHlt8=408>\r\n> \r\n> As the innovation arm of the U.S. Space Force and a unique division within AFWERX, SpaceWERX inspires and empowers collaboration with innovators to accelerate capabilities and shape our future in space. Headquartered in Los Angeles, SpaceWERX employs 40 military, civilian and contractor personnel executing an annual $457 million budget. Additionally, SpaceWERX partners with Space Systems Command\'s Commercial Space Office (COMSO) as a collaborative program. Since it was aligned under AFRL in Aug. 2021, SpaceWERX has executed 1,106 contracts worth more than $897 million to strengthen the U.S. defense industrial base and drive faster technology transition to operational capability. For more information, visit: spacewerx.us <https://links-2.govdelivery.com/CL0/http:%2F%2Fspacewerx.us%2F%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/3LQNWVjLQma5VPFQIrO-EGMZk26hZrIjAdpsXfR97pI=408>.\r\n> \r\n> Stay Connected with United States Air Force, AFWERX:\r\n>  <https://links-2.govdelivery.com/CL0/https:%2F%2Fwww.linkedin.com%2Fcompany%2Fafwerx-usaf%2F%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/d04EhNMs2vn4ldZE-H3UuX9jV3LG5SrdjMDa3bmvqTs=408>   <https://links-2.govdelivery.com/CL0/https:%2F%2Fwww.facebook.com%2FAFWERX%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/KEMXwRo4jevKEuyFK1y8cKEN2JX56MVXMdDaGq0SrUY=408>   <https://links-2.govdelivery.com/CL0/https:%2F%2Fwww.instagram.com%2Fafwerx%2F%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/VW9_2qTPRfGKhSxK276-94JZ87ytt7IEN2w60kY92nU=408>   <https://links-2.govdelivery.com/CL0/https:%2F%2Ftwitter.com%2FAFWERX%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/TfW4UdjB23L5g0ve12n1Z67kVEJnFFQ_xiEmSFJPEhY=408>   <https://links-2.govdelivery.com/CL0/https:%2F%2Fwww.youtube.com%2Fchannel%2FUC1B5dVYEgCDIjXVlEDiN0QQ%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/glig1mod-C9lMmVZHLtle17LeRA7NtnklRR-XFafYwQ=408>   <https://links-2.govdelivery.com/CL0/https:%2F%2Fafwerx.com%2Fabout-us%2Fcontact%2F%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/MAqt0FRB-YLdTWE_edz1NlJOityK05G8KzDsFf2vuHU=408>\r\n> SUBSCRIBER SERVICES:\r\n> Manage Subscriptions <https://links-2.govdelivery.com/CL0/https:%2F%2Fpublic.govdelivery.com%2Faccounts%2FUSAFAFWERX%2Fsubscriber%2Fedit%3Fpreferences=true%23tab1/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/dRvUtDg7R8nZVzFYoB1pwcwZb8AlsaemQ2eqNuqQieg=408>  |  Unsubscribe All <https://links-2.govdelivery.com/CL0/https:%2F%2Fpublic.govdelivery.com%2Faccounts%2FUSAFAFWERX%2Fsubscriber%2Fone_click_unsubscribe%3Fverification=5.18c98a4be993e53e8c5ad13d08e9785a%26destination=alm%2540bavovna.ai/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/Q_plToDx5NSl8hoz0YxpmzgbpN98sDLRAmnS6nliQdI=408>  |  Help <https://links-2.govdelivery.com/CL0/https:%2F%2Fsubscriberhelp.govdelivery.com%2F/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/jXR69Minjl9XcSkoXlpsGNX3bZ8lXcCsGNj2gkFKcm8=408>\r\n> This email was sent to alm@bavovna.ai <mailto:alm@bavovna.ai> using govDelivery Communications Cloud on behalf of: United States Air Force, AFWERX · 2011 Crystal Drive · Arlington, VA 22202	 <https://links-2.govdelivery.com/CL0/https:%2F%2Fsubscriberhelp.granicus.com%2F%3Futm_medium=email%26utm_source=govdelivery/1/010101973bad5fb8-6f2888db-6398-48ab-a963-e936e3b22429-000000/V0e0u9yOJG2lABfEcotbq8PepmeZpT9rQxD7244DLT8=408>',0,0,0,0,0,0,'2025-06-04 16:05:38','2025-12-09 19:07:06','2025-12-09 19:07:06','2025-12-09 19:07:06',NULL,NULL,NULL),
(346,4,'<CANkMA8UzPKq4c6LQxw5ztk3exySyOfQaRukUSvu81zr6s9UCoQ@mail.gmail.com>',NULL,NULL,'Re: Meeting this week','avalkenburg@strategic-logix.com','Andrew Valkenburg','<div dir=\"ltr\">Rick,<div><br></div><div>Are you not available anymore today? Jeremy and I are in the meeting. If not, let me know when you can reschedule.</div><div><br></div><div>Andrew</div></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Jun 2, 2025 at 1:26 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">I accepted the invite for Wed.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Can you send those links to <a href=\"mailto:rickmerkuri1@gmail.com\" target=\"_blank\">rickmerkuri1@gmail.com</a></div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Thanks,</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Rick</div> <br> <div class=\"gmail_signature\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div> <br><p>On June 2, 2025 at 1:15:31 PM, Andrew Valkenburg (<a href=\"mailto:avalkenburg@strategic-logix.com\" target=\"_blank\">avalkenburg@strategic-logix.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div style=\"color:rgb(0,0,0);font-family:UICTFontTextStyleBody;font-size:14px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\">forward over the pitch deck so we can keep the ball rolling even though we hadn&#39;t had a chance to meet. As of<span> </span><a href=\"http://airmail.calendar/2025-06-02%2012:00:00%20EDT\" style=\"word-break:break-word\" target=\"_blank\">today</a><span> </span>we have been offered a classified CRADA and we have several more orders of RRSL-X packages as well as demonstration at the highest level of government to solicit more drones. Sorry I can&#39;t say more than that, but all things I think you and your team will be interested in. </div><br></div></span></blockquote>\r\n\r\n\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p><font color=\"#000000\"><b><a href=\"https://strategic-logix.com\" target=\"_blank\">VISIT OUR WEBSITE</a></b></font></p><p><strong><font color=\"#000000\"><br></font></strong></p><p><strong><font color=\"#000000\">Sincerely,</font></strong></p><p><font color=\"#000000\">Andrew Valkenburg<br>Chief Operations Officer, Strategic Logix LLC<br>484-225-9132<br><a rel=\"noopener\">avalkenburg@strategic-logix.com</a></font></p></div></div>','Rick,\r\n\r\nAre you not available anymore today? Jeremy and I are in the meeting. If\r\nnot, let me know when you can reschedule.\r\n\r\nAndrew\r\n\r\nOn Mon, Jun 2, 2025 at 1:26 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> I accepted the invite for Wed.\r\n> Can you send those links to rickmerkuri1@gmail.com\r\n> Thanks,\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On June 2, 2025 at 1:15:31 PM, Andrew Valkenburg (\r\n> avalkenburg@strategic-logix.com) wrote:\r\n>\r\n> forward over the pitch deck so we can keep the ball rolling even though we\r\n> hadn\'t had a chance to meet. As of today\r\n> <http://airmail.calendar/2025-06-02%2012:00:00%20EDT> we have been\r\n> offered a classified CRADA and we have several more orders of RRSL-X\r\n> packages as well as demonstration at the highest level of government to\r\n> solicit more drones. Sorry I can\'t say more than that, but all things I\r\n> think you and your team will be interested in.\r\n>\r\n>\r\n\r\n-- \r\n\r\n*VISIT OUR WEBSITE <https://strategic-logix.com>*\r\n\r\n\r\n*Sincerely,*\r\n\r\nAndrew Valkenburg\r\nChief Operations Officer, Strategic Logix LLC\r\n484-225-9132\r\navalkenburg@strategic-logix.com',0,0,0,0,0,0,'2025-06-04 16:09:05','2025-12-09 19:07:06','2025-12-09 19:07:06','2025-12-09 19:07:06',NULL,NULL,NULL),
(347,4,'<CANkMA8VnV2wB=0LMkiV-UF+LusDF_7nDeyTqaD_jebsiysE6cQ@mail.gmail.com>',NULL,NULL,'Re: Meeting this week','avalkenburg@strategic-logix.com','Andrew Valkenburg','<div dir=\"auto\">Definitely would like to try this week, we are hoping to keep momentum up. </div><div dir=\"auto\"><br></div><div dir=\"auto\">Tomorrow is booked up for me but Friday can work at 12EST. </div><div dir=\"auto\"><br></div><div dir=\"auto\">Is that good for you and your finance team?<br clear=\"all\"><br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\">Sincerely,<br><br>Andrew J. Valkenburg<br>Chief Operations Officer | Partner,<br>Strategic Logix<br><br>484-225-9132<br><a href=\"mailto:Avalkenburg@strategic-logix.com\">Avalkenburg@strategic-logix.com</a></div></div></div><div><br></div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Jun 4, 2025 at 1:33 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">So sorrrry I got strung up today with a University grant issue….tomorrow or Friday this week?</div> <br> <div class=\"gmail_signature\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height:11px\"></div>\r\n     \r\n</div> <br><p>On June 4, 2025 at 12:09:57 PM, Andrew Valkenburg (<a href=\"mailto:avalkenburg@strategic-logix.com\" target=\"_blank\">avalkenburg@strategic-logix.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\">Rick,<div><br></div><div>Are you not available anymore today? Jeremy and I are in the meeting. If not, let me know when you can reschedule.</div><div><br></div><div>Andrew</div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Jun 2, 2025 at 1:26 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">I accepted the invite for Wed.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Can you send those links to <a href=\"mailto:rickmerkuri1@gmail.com\" target=\"_blank\">rickmerkuri1@gmail.com</a></div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Thanks,</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Rick</div> <br> <div class=\"gmail_signature\">\r\n         \r\n      \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height:11px\"></div>\r\n      \r\n</div> <br><p>On June 2, 2025 at 1:15:31 PM, Andrew Valkenburg (<a href=\"mailto:avalkenburg@strategic-logix.com\" target=\"_blank\">avalkenburg@strategic-logix.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div style=\"color:rgb(0,0,0);font-family:UICTFontTextStyleBody;font-size:14px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\">forward over the pitch deck so we can keep the ball rolling even though we hadn&#39;t had a chance to meet. As of<span> </span><a href=\"http://airmail.calendar/2025-06-02%2012:00:00%20EDT\" style=\"word-break:break-word\" target=\"_blank\">today</a><span> </span>we have been offered a classified CRADA and we have several more orders of RRSL-X packages as well as demonstration at the highest level of government to solicit more drones. Sorry I can&#39;t say more than that, but all things I think you and your team will be interested in. </div><br></div></span></blockquote>\r\n\r\n\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p><font color=\"#000000\"><b><a href=\"https://strategic-logix.com\" target=\"_blank\">VISIT OUR WEBSITE</a></b></font></p><p><strong><font color=\"#000000\"><br></font></strong></p><p><strong><font color=\"#000000\">Sincerely,</font></strong></p><p><font color=\"#000000\">Andrew Valkenburg<br>Chief Operations Officer, Strategic Logix LLC<br>484-225-9132<br><a rel=\"noopener\">avalkenburg@strategic-logix.com</a></font></p></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div></div>','Definitely would like to try this week, we are hoping to keep momentum up.\r\n\r\nTomorrow is booked up for me but Friday can work at 12EST.\r\n\r\nIs that good for you and your finance team?\r\n\r\nSincerely,\r\n\r\nAndrew J. Valkenburg\r\nChief Operations Officer | Partner,\r\nStrategic Logix\r\n\r\n484-225-9132\r\nAvalkenburg@strategic-logix.com\r\n\r\n\r\nOn Wed, Jun 4, 2025 at 1:33 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> So sorrrry I got strung up today with a University grant issue….tomorrow\r\n> or Friday this week?\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On June 4, 2025 at 12:09:57 PM, Andrew Valkenburg (\r\n> avalkenburg@strategic-logix.com) wrote:\r\n>\r\n> Rick,\r\n>\r\n> Are you not available anymore today? Jeremy and I are in the meeting. If\r\n> not, let me know when you can reschedule.\r\n>\r\n> Andrew\r\n>\r\n> On Mon, Jun 2, 2025 at 1:26 PM Rick <rick@mavrix.one> wrote:\r\n>\r\n>> I accepted the invite for Wed.\r\n>> Can you send those links to rickmerkuri1@gmail.com\r\n>> Thanks,\r\n>> Rick\r\n>>\r\n>> Rick Mislan, PhD\r\n>> https://mavrix.one\r\n>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>\r\n>> On June 2, 2025 at 1:15:31 PM, Andrew Valkenburg (\r\n>> avalkenburg@strategic-logix.com) wrote:\r\n>>\r\n>> forward over the pitch deck so we can keep the ball rolling even though\r\n>> we hadn\'t had a chance to meet. As of today\r\n>> <http://airmail.calendar/2025-06-02%2012:00:00%20EDT> we have been\r\n>> offered a classified CRADA and we have several more orders of RRSL-X\r\n>> packages as well as demonstration at the highest level of government to\r\n>> solicit more drones. Sorry I can\'t say more than that, but all things I\r\n>> think you and your team will be interested in.\r\n>>\r\n>>\r\n>\r\n> --\r\n>\r\n> *VISIT OUR WEBSITE <https://strategic-logix.com>*\r\n>\r\n>\r\n> *Sincerely,*\r\n>\r\n> Andrew Valkenburg\r\n> Chief Operations Officer, Strategic Logix LLC\r\n> 484-225-9132\r\n> avalkenburg@strategic-logix.com\r\n>\r\n>',0,0,0,0,0,0,'2025-06-04 17:38:00','2025-12-09 19:07:06','2025-12-09 19:07:06','2025-12-09 19:07:06',NULL,NULL,NULL),
(348,4,' <CH2PR16MB34311FC8DC8784CADB6ED28BFE6FA@CH2PR16MB3431.namprd16.prod.outlook.com>',NULL,NULL,'Re: Next steps!','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHi Rick,&nbsp;<br>\r\n<br>\r\nI am generally flexible next week Mon-Wed any time after 130 if that works? Would be a good time to chat - we are meeting with our officials from the White House, SBA &amp; DOE this morning at 10am to review our teaser ahead of kicking-off our capital raise.<br>\r\n<br>\r\nBest,&nbsp;</div>\r\n<div id=\"Signature\" class=\"elementToProof\">\r\n<p class=\"elementToProof\" style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p class=\"elementToProof\" style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p class=\"elementToProof\" style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p class=\"elementToProof\" style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p class=\"elementToProof\" style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color: rgb(0, 36, 81); margin: 0px;\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color: rgb(0, 36, 81); margin: 0px;\">.com</a></u></span></p>\r\n<p class=\"elementToProof\" style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a href=\"https://lithiumbatterycompany.com/\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color: rgb(0, 36, 81); margin: 0px;\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, June 3, 2025 8:19 AM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Hey Jarrett! I missed this…sorry.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">What’s next week looking like?</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">I want to add Brian to our next call (my guy).</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On May 23, 2025 at 12:27:57 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nSounds good Rick - next week we are generally free Wednesday-Friday from 1030-12am | 1-3pm est. Let me know if a time in that range works and we can get a calendar on the books. Have a great weekend</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_Signature\" class=\"x_elementToProof\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, May 23, 2025 8:38 AM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks for this Jarrett.</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nLet’s schedule a call with your team and my guy for later next week…</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nLet me know what’s best.</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks again!</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div id=\"x_x_bloop_sign_1748003865719297792\" class=\"x_x_bloop_sign\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_airmail_on\">On May 21, 2025 at 3:34:57 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nRick,&nbsp;<br>\r\n<br>\r\nPlease find attached a high-level investment teaser with an overview of our recent transaction, equipment purchase, facility layout and letters of support for our manufacturing aspirations from Mayor Castor, who\'s support has been instrumental in our project,\r\n as well as from our clients (volume of around ~$14.8m) for your review. Please let me know if any questions and we look forward to hearing your interest level.&nbsp;</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nBest,&nbsp;</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_Signature\" class=\"x_x_elementToProof\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, May 20, 2025 4:00 PM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">NDAs in place, next steps…</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Let me know what\'s best for your team.&nbsp;</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_x_airmail_on\">On May 15, 2025 at 8:17:14 AM, Rick (<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_x_clean_bq\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Sounds good.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Hope we can help you sooner rather than later!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">All my best,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_x_airmail_on\">On May 14, 2025 at 1:53:19 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_x_clean_bq\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div>\r\n<div dir=\"ltr\">Rick, apologies for the delay - after our call yesterday we were engaged by the Shell Corporation and today we are receiving an award at the Florida SBDC event so have been in meetings nearly constantly and I fell behind on kicking over the MNDA.\r\n It’s first on my to-do list after this event!</div>\r\n</div>\r\n<div id=\"x_x_x_ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"x_x_x_ms-outlook-mobile-signature\">\r\n<div></div>\r\n</div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, May 13, 2025 9:02:50 AM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div id=\"x_x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nGot it! Will be there.. thanks!</div>\r\n<div id=\"x_x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div id=\"x_x_x_x_bloop_sign_1747141266137078016\" class=\"x_x_x_x_bloop_sign\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_x_x_airmail_on\">On May 13, 2025 at 8:59:30 AM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_x_x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick,&nbsp;</div>\r\n<div class=\"x_x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nYes, 10am this morning - I just resent the zoom invite. Look forward to speaking soon</div>\r\n<div class=\"x_x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_x_x_Signature\" class=\"x_x_x_x_elementToProof\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWAa99fda94-e056-c619-a196-a33c2ff2877b\" class=\"x_x_x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA098259f9-2a26-ebbc-a687-62be0f9f5580\" class=\"x_x_x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" id=\"OWA6dd24376-6350-4d35-05a2-83112c570eec\" class=\"x_x_x_x_OWAAutoLink\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_x_x_appendonsend\"></div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block; width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Rick<br>\r\n<b>Sent:</b>&nbsp;Tuesday, May 13, 2025 7:28 AM<br>\r\n<b>To:</b>&nbsp;Jarrett Brownfield<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps! </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div>Not sure if I responded accurately.&nbsp;</div>\r\n<div>I’m open at 10a today if that works.&nbsp;</div>\r\n<div>Thanks!</div>\r\n<div>Rick</div>\r\n<div><br>\r\n</div>\r\n<div>Rick Mislan, PhD</div>\r\n<div>[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one</div>\r\n<div><img height=\"11\" style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n<p style=\"color:rgb(0,0,0)\">On May 12, 2025 at 2:26:32 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\" id=\"OWA6fe9a5f9-a715-dff3-4833-c48bb98fbcc5\" class=\"x_x_x_x_OWAAutoLink\" style=\"margin-top:0px; margin-bottom:0px\">jarrett@lithiumbatterycompany.com</a>)\r\n wrote:</p>\r\n<blockquote>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nWe enjoyed meeting with you as well and thanks for circling back - please find below availability and we look forward to speaking:<br>\r\n<br>\r\n(all times EST)<br>\r\nToday:&nbsp; 3-4:30pm<br>\r\nTuesday (5.13): 930-11am || 1130am-1pm<br>\r\nWednesday (5.14): 10am-1130<br>\r\nThursday (5.15): 12-3pm&nbsp;<br>\r\nFriday (5.16): 9am-3pm<br>\r\n<br>\r\n<br>\r\nBest,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_x_x_x_Signature\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner</span>\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">\r\nI Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA85b348c0-ceb1-fac7-e499-95d5a963cc38\" class=\"x_x_x_x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA9b7813f6-bff5-7b2b-9efa-d558ec60b684\" class=\"x_x_x_x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" id=\"OWA93baa47e-fc9a-556d-beba-278bafbdf824\" class=\"x_x_x_x_x_OWAAutoLink\" title=\"https://lithiumbatterycompany.com/\" data-auth=\"NotApplicable\" data-linkindex=\"10\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_x_x_x_appendonsend\"></div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_x_x_x_x_divRplyFwdMsg\" dir=\"ltr\"><span style=\"font-family:Calibri,sans-serif; font-size:11pt; color:rgb(0,0,0)\"><b>From:</b>&nbsp;Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b>&nbsp;Sunday, May 11, 2025 9:18 AM<br>\r\n<b>To:</b>&nbsp;nathan@lithiumbatterycompany.com &lt;nathan@lithiumbatterycompany.com&gt;; jordan@lithiumbatterycompany.com &lt;jordan@lithiumbatterycompany.com&gt;; ronald@lithiumbatterycompany.com &lt;ronald@lithiumbatterycompany.com&gt;; jarrett@lithiumbatterycompany.com &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps!</span>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Ok, following up again,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">this time for a request&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">to discuss next steps.</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Interested in money? :)</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Let’s set up a time to chat soon.</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Thanks,</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Rick Mislan, PhD</div>\r\n<div style=\"direction:ltr\"><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" id=\"OWA6f2250de-935b-77bd-ce88-2cfb3cbe652e\" class=\"x_x_x_x_OWAAutoLink\" data-auth=\"NotApplicable\">https://mavrix.one</a></div>\r\n<div style=\"direction:ltr\"><img height=\"11\" style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr\">On May 8, 2025 at 1:33:01 PM, Rick (<a href=\"mailto:rick@mavrix.one\" id=\"OWA44b57871-3029-0cf0-fc3a-86d620da512e\" class=\"x_x_x_x_OWAAutoLink\" style=\"margin-top:0px; margin-bottom:0px\">rick@mavrix.one</a>) wrote:</p>\r\n<blockquote>\r\n<div style=\"direction:ltr; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<span style=\"background-color:rgb(255,255,255)\">Gentlemen,</span></div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nA pleasure meeting you all!</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nJust wanted to let you know that</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nI am talking to my team <a href=\"http://airmail.calendar/2025-05-11%2019:00:00%20EDT\" id=\"OWA8867e85c-bf8e-41be-d815-e78244229e9c\" class=\"x_x_x_x_OWAAutoLink\" data-auth=\"NotApplicable\">\r\ntonight</a></div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nhere in Treasure Island.&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nMy goal for <a href=\"http://airmail.calendar/2025-05-11%2019:00:00%20EDT\" id=\"OWA7aced99c-5963-164f-8e4a-9d96675a373f\" class=\"x_x_x_x_OWAAutoLink\" data-auth=\"NotApplicable\">\r\ntonight</a>&nbsp;is to</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\ndiscuss the mavrix&nbsp;portfolio and</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nplan out a schedule of calls</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nwith you for next steps.&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nAgain, I truly enjoyed meeting&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nand chatting with you all!&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nI’ll be in touch next week!</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nAll my best,</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nRick</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Hi Rick,\r\n\r\nI am generally flexible next week Mon-Wed any time after 130 if that works? Would be a good time to chat - we are meeting with our officials from the White House, SBA & DOE this morning at 10am to review our teaser ahead of kicking-off our capital raise.\r\n\r\nBest,\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, June 3, 2025 8:19 AM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nHey Jarrett! I missed this…sorry.\r\nWhat’s next week looking like?\r\nI want to add Brian to our next call (my guy).\r\nThanks!\r\nRick\r\n\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 23, 2025 at 12:27:57 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nSounds good Rick - next week we are generally free Wednesday-Friday from 1030-12am | 1-3pm est. Let me know if a time in that range works and we can get a calendar on the books. Have a great weekend\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, May 23, 2025 8:38 AM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nThanks for this Jarrett.\r\nLet’s schedule a call with your team and my guy for later next week…\r\nLet me know what’s best.\r\nThanks again!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 21, 2025 at 3:34:57 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nRick,\r\n\r\nPlease find attached a high-level investment teaser with an overview of our recent transaction, equipment purchase, facility layout and letters of support for our manufacturing aspirations from Mayor Castor, who\'s support has been instrumental in our project, as well as from our clients (volume of around ~$14.8m) for your review. Please let me know if any questions and we look forward to hearing your interest level.\r\n\r\nBest,\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, May 20, 2025 4:00 PM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nNDAs in place, next steps…\r\nLet me know what\'s best for your team.\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 15, 2025 at 8:17:14 AM, Rick (rick@mavrix.one<mailto:rick@mavrix.one>) wrote:\r\n\r\nSounds good.\r\nHope we can help you sooner rather than later!\r\nAll my best,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 14, 2025 at 1:53:19 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nRick, apologies for the delay - after our call yesterday we were engaged by the Shell Corporation and today we are receiving an award at the Florida SBDC event so have been in meetings nearly constantly and I fell behind on kicking over the MNDA. It’s first on my to-do list after this event!\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, May 13, 2025 9:02:50 AM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nGot it! Will be there.. thanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 13, 2025 at 8:59:30 AM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nYes, 10am this morning - I just resent the zoom invite. Look forward to speaking soon\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n\r\n________________________________\r\nFrom: Rick\r\nSent: Tuesday, May 13, 2025 7:28 AM\r\nTo: Jarrett Brownfield\r\nSubject: Re: Next steps!\r\n\r\nNot sure if I responded accurately.\r\nI’m open at 10a today if that works.\r\nThanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\n[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one\r\n[X]\r\n\r\nOn May 12, 2025 at 2:26:32 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nWe enjoyed meeting with you as well and thanks for circling back - please find below availability and we look forward to speaking:\r\n\r\n(all times EST)\r\nToday:  3-4:30pm\r\nTuesday (5.13): 930-11am || 1130am-1pm\r\nWednesday (5.14): 10am-1130\r\nThursday (5.15): 12-3pm\r\nFriday (5.16): 9am-3pm\r\n\r\n\r\nBest,\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Sunday, May 11, 2025 9:18 AM\r\nTo: nathan@lithiumbatterycompany.com <nathan@lithiumbatterycompany.com>; jordan@lithiumbatterycompany.com <jordan@lithiumbatterycompany.com>; ronald@lithiumbatterycompany.com <ronald@lithiumbatterycompany.com>; jarrett@lithiumbatterycompany.com <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nOk, following up again,\r\nthis time for a request\r\nto discuss next steps.\r\n\r\nInterested in money? :)\r\nLet’s set up a time to chat soon.\r\n\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 8, 2025 at 1:33:01 PM, Rick (rick@mavrix.one<mailto:rick@mavrix.one>) wrote:\r\n\r\nGentlemen,\r\n\r\nA pleasure meeting you all!\r\n\r\nJust wanted to let you know that\r\nI am talking to my team tonight<http://airmail.calendar/2025-05-11%2019:00:00%20EDT>\r\nhere in Treasure Island.\r\n\r\nMy goal for tonight<http://airmail.calendar/2025-05-11%2019:00:00%20EDT> is to\r\ndiscuss the mavrix portfolio and\r\nplan out a schedule of calls\r\nwith you for next steps.\r\n\r\nAgain, I truly enjoyed meeting\r\nand chatting with you all!\r\n\r\nI’ll be in touch next week!\r\n\r\nAll my best,\r\nRick\r\n\r\n',0,0,0,0,0,0,'2025-06-05 13:02:28','2025-12-09 19:07:08','2025-12-09 19:07:08','2025-12-09 19:07:08',NULL,NULL,NULL),
(349,4,' <PH7PR19MB760844D5F300FC4DEA213C60F56FA@PH7PR19MB7608.namprd19.prod.outlook.com>',NULL,NULL,'Mavrix One (Richard Mislan) In-Office Demo [In-person]','gannon_tinsley@vuzix.com','Gannon Tinsley','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n</head>\r\n<body>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nMAVRIX is a national manufacturer of aerospace, defense, and robotics leaders committed to building a sovereign autonomous ecosystem — designed, sourced, and manufactured entirely in the USA.</div>\r\n<br>\r\n<div style=\"max-width: 600px; color: #242424; font-family:\'Segoe UI\',\'Helvetica Neue\',Helvetica,Arial,sans-serif\" class=\"me-email-text\">\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n<div style=\"margin-bottom: 12px;\"><span class=\"me-email-text\" style=\"font-size: 24px;font-weight: 700; margin-right:12px;\">Microsoft Teams</span>\r\n<a id=\"meet_invite_block.action.help\" class=\"me-email-link\" style=\"font-size:14px; text-decoration:underline; color: #5B5FC7;\" href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\">\r\nNeed help?</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><a id=\"meet_invite_block.action.join_link\" title=\"Meeting join link\" class=\"me-email-headline\" style=\"font-size: 20px; font-weight:600; text-decoration: underline; color: #5B5FC7;\" href=\"https://teams.microsoft.com/l/meetup-join/19%3ameeting_ZTIxOGNiZDctMjNiMC00OGJlLWE3MDYtMzZiMjMyODA3ZThi%40thread.v2/0?context=%7b%22Tid%22%3a%22ece9227b-67ef-4f9a-86a6-db5502178337%22%2c%22Oid%22%3a%220602f987-96ff-46da-b19e-bdff9b6206d5%22%7d\" target=\"_blank\" rel=\"noreferrer noopener\">Join\r\n the meeting now</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Meeting ID:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">210 336 371 872 0</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Passcode:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">Ae6Wr9D9</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px; max-width: 532px;\">\r\n<hr style=\"border: 0; background: #D1D1D1; height: 1px;\">\r\n</div>\r\n<div><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">For organizers:\r\n</span><a id=\"meet_invite_block.action.organizer_meet_options\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7;\" target=\"_blank\" href=\"https://teams.microsoft.com/meetingOptions/?organizerId=0602f987-96ff-46da-b19e-bdff9b6206d5&amp;tenantId=ece9227b-67ef-4f9a-86a6-db5502178337&amp;threadId=19_meeting_ZTIxOGNiZDctMjNiMC00OGJlLWE3MDYtMzZiMjMyODA3ZThi@thread.v2&amp;messageId=0&amp;language=en-US\" rel=\"noreferrer noopener\">Meeting\r\n options</a> </div>\r\n<div style=\"margin-top: 24px; margin-bottom: 6px;\"></div>\r\n<div style=\"margin-bottom: 24px;\"></div>\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n</div>\r\nThis message may contain confidential information belonging to the Vuzix Corporation and is intended only for the named recipients. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately\r\n by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. E-mail transmission cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, destroyed, arrive late or incomplete, or\r\n contain viruses. The sender therefore does not accept liability for any errors or omissions in the contents of this message, which arise as a result of e-mail transmission. If verification is required please request a hard-copy version.\r\n</body>\r\n</html>','MAVRIX is a national manufacturer of aerospace, defense, and robotics leaders committed to building a sovereign autonomous ecosystem — designed, sourced, and manufactured entirely in the USA.\r\n\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://teams.microsoft.com/l/meetup-join/19%3ameeting_ZTIxOGNiZDctMjNiMC00OGJlLWE3MDYtMzZiMjMyODA3ZThi%40thread.v2/0?context=%7b%22Tid%22%3a%22ece9227b-67ef-4f9a-86a6-db5502178337%22%2c%22Oid%22%3a%220602f987-96ff-46da-b19e-bdff9b6206d5%22%7d>\r\nMeeting ID: 210 336 371 872 0\r\nPasscode: Ae6Wr9D9\r\n________________________________\r\nFor organizers: Meeting options<https://teams.microsoft.com/meetingOptions/?organizerId=0602f987-96ff-46da-b19e-bdff9b6206d5&tenantId=ece9227b-67ef-4f9a-86a6-db5502178337&threadId=19_meeting_ZTIxOGNiZDctMjNiMC00OGJlLWE3MDYtMzZiMjMyODA3ZThi@thread.v2&messageId=0&language=en-US>\r\n________________________________________________________________________________\r\nThis message may contain confidential information belonging to the Vuzix Corporation and is intended only for the named recipients. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. E-mail transmission cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, destroyed, arrive late or incomplete, or contain viruses. The sender therefore does not accept liability for any errors or omissions in the contents of this message, which arise as a result of e-mail transmission. If verification is required please request a hard-copy version.',0,0,0,0,0,0,'2025-06-05 13:51:34','2025-12-09 19:07:08','2025-12-09 19:07:08','2025-12-09 19:07:08',NULL,NULL,NULL),
(350,4,' <DM6PR07MB58505EFE307B4BE1524C7EE9AD6FA@DM6PR07MB5850.namprd07.prod.outlook.com>',NULL,NULL,'Rich | Rick','rich@achramlabs.com','Richard Van Voorst','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n</head>\r\n<body>\r\n<br>\r\n<div style=\"max-width: 600px; color: #242424; font-family:\'Segoe UI\',\'Helvetica Neue\',Helvetica,Arial,sans-serif\" class=\"me-email-text\">\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n<div style=\"margin-bottom: 12px;\"><span class=\"me-email-text\" style=\"font-size: 24px;font-weight: 700; margin-right:12px;\">Microsoft Teams</span>\r\n<a id=\"meet_invite_block.action.help\" class=\"me-email-link\" style=\"font-size:14px; text-decoration:underline; color: #5B5FC7;\" href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\">\r\nNeed help?</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><a id=\"meet_invite_block.action.join_link\" title=\"Meeting join link\" class=\"me-email-headline\" style=\"font-size: 20px; font-weight:600; text-decoration: underline; color: #5B5FC7;\" href=\"https://teams.microsoft.com/l/meetup-join/19%3ameeting_ZTUyOGQ0NmYtMDFmYy00ZTQyLTgyNjQtNjZiMTI3OWY0MzFj%40thread.v2/0?context=%7b%22Tid%22%3a%220930a80e-2157-43f6-aeeb-8cd66ff956b1%22%2c%22Oid%22%3a%22ed6fbfe0-0b33-4893-8efe-ef687ac31ad7%22%7d\" target=\"_blank\" rel=\"noreferrer noopener\">Join\r\n the meeting now</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Meeting ID:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">215 631 492 725 5</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Passcode:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">e4Gq7Ba7</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px; max-width: 532px;\">\r\n<hr style=\"border: 0; background: #D1D1D1; height: 1px;\">\r\n</div>\r\n<div><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">For organizers:\r\n</span><a id=\"meet_invite_block.action.organizer_meet_options\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7;\" target=\"_blank\" href=\"https://teams.microsoft.com/meetingOptions/?organizerId=ed6fbfe0-0b33-4893-8efe-ef687ac31ad7&amp;tenantId=0930a80e-2157-43f6-aeeb-8cd66ff956b1&amp;threadId=19_meeting_ZTUyOGQ0NmYtMDFmYy00ZTQyLTgyNjQtNjZiMTI3OWY0MzFj@thread.v2&amp;messageId=0&amp;language=en-US\" rel=\"noreferrer noopener\">Meeting\r\n options</a> </div>\r\n<div style=\"margin-top: 24px; margin-bottom: 6px;\"></div>\r\n<div style=\"margin-bottom: 24px;\"></div>\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n</div>\r\n</body>\r\n</html>','\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://teams.microsoft.com/l/meetup-join/19%3ameeting_ZTUyOGQ0NmYtMDFmYy00ZTQyLTgyNjQtNjZiMTI3OWY0MzFj%40thread.v2/0?context=%7b%22Tid%22%3a%220930a80e-2157-43f6-aeeb-8cd66ff956b1%22%2c%22Oid%22%3a%22ed6fbfe0-0b33-4893-8efe-ef687ac31ad7%22%7d>\r\nMeeting ID: 215 631 492 725 5\r\nPasscode: e4Gq7Ba7\r\n________________________________\r\nFor organizers: Meeting options<https://teams.microsoft.com/meetingOptions/?organizerId=ed6fbfe0-0b33-4893-8efe-ef687ac31ad7&tenantId=0930a80e-2157-43f6-aeeb-8cd66ff956b1&threadId=19_meeting_ZTUyOGQ0NmYtMDFmYy00ZTQyLTgyNjQtNjZiMTI3OWY0MzFj@thread.v2&messageId=0&language=en-US>\r\n________________________________________________________________________________',0,0,0,0,0,0,'2025-06-05 14:06:06','2025-12-09 19:07:08','2025-12-09 19:07:08','2025-12-09 19:07:08',NULL,NULL,NULL),
(351,4,' <DM6PR07MB58504B9DEFB1F644EFDC1683AD6FA@DM6PR07MB5850.namprd07.prod.outlook.com>',NULL,NULL,'Rich | Rick','rich@achramlabs.com','Richard Van Voorst','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n</head>\r\n<body>\r\n<br>\r\n<div style=\"max-width: 600px; color: #242424; font-family:\'Segoe UI\',\'Helvetica Neue\',Helvetica,Arial,sans-serif\" class=\"me-email-text\">\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n<div style=\"margin-bottom: 12px;\"><span class=\"me-email-text\" style=\"font-size: 24px;font-weight: 700; margin-right:12px;\">Microsoft Teams</span>\r\n<a id=\"meet_invite_block.action.help\" class=\"me-email-link\" style=\"font-size:14px; text-decoration:underline; color: #5B5FC7;\" href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\">\r\nNeed help?</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><a id=\"meet_invite_block.action.join_link\" title=\"Meeting join link\" class=\"me-email-headline\" style=\"font-size: 20px; font-weight:600; text-decoration: underline; color: #5B5FC7;\" href=\"https://teams.microsoft.com/l/meetup-join/19%3ameeting_ZTUyOGQ0NmYtMDFmYy00ZTQyLTgyNjQtNjZiMTI3OWY0MzFj%40thread.v2/0?context=%7b%22Tid%22%3a%220930a80e-2157-43f6-aeeb-8cd66ff956b1%22%2c%22Oid%22%3a%22ed6fbfe0-0b33-4893-8efe-ef687ac31ad7%22%7d\" target=\"_blank\" rel=\"noreferrer noopener\">Join\r\n the meeting now</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Meeting ID:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">215 631 492 725 5</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Passcode:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">e4Gq7Ba7</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px; max-width: 532px;\">\r\n<hr style=\"border: 0; background: #D1D1D1; height: 1px;\">\r\n</div>\r\n<div><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">For organizers:\r\n</span><a id=\"meet_invite_block.action.organizer_meet_options\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7;\" target=\"_blank\" href=\"https://teams.microsoft.com/meetingOptions/?organizerId=ed6fbfe0-0b33-4893-8efe-ef687ac31ad7&amp;tenantId=0930a80e-2157-43f6-aeeb-8cd66ff956b1&amp;threadId=19_meeting_ZTUyOGQ0NmYtMDFmYy00ZTQyLTgyNjQtNjZiMTI3OWY0MzFj@thread.v2&amp;messageId=0&amp;language=en-US\" rel=\"noreferrer noopener\">Meeting\r\n options</a> </div>\r\n<div style=\"margin-top: 24px; margin-bottom: 6px;\"></div>\r\n<div style=\"margin-bottom: 24px;\"></div>\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n</div>\r\n</body>\r\n</html>','\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://teams.microsoft.com/l/meetup-join/19%3ameeting_ZTUyOGQ0NmYtMDFmYy00ZTQyLTgyNjQtNjZiMTI3OWY0MzFj%40thread.v2/0?context=%7b%22Tid%22%3a%220930a80e-2157-43f6-aeeb-8cd66ff956b1%22%2c%22Oid%22%3a%22ed6fbfe0-0b33-4893-8efe-ef687ac31ad7%22%7d>\r\nMeeting ID: 215 631 492 725 5\r\nPasscode: e4Gq7Ba7\r\n________________________________\r\nFor organizers: Meeting options<https://teams.microsoft.com/meetingOptions/?organizerId=ed6fbfe0-0b33-4893-8efe-ef687ac31ad7&tenantId=0930a80e-2157-43f6-aeeb-8cd66ff956b1&threadId=19_meeting_ZTUyOGQ0NmYtMDFmYy00ZTQyLTgyNjQtNjZiMTI3OWY0MzFj@thread.v2&messageId=0&language=en-US>\r\n________________________________________________________________________________',0,0,0,0,0,0,'2025-06-05 15:32:17','2025-12-09 19:07:09','2025-12-09 19:07:09','2025-12-09 19:07:09',NULL,NULL,NULL),
(352,4,' <DM6PR07MB58507F71549EF50F7661159BAD6FA@DM6PR07MB5850.namprd07.prod.outlook.com>',NULL,NULL,'Rich | Rick','rich@achramlabs.com','Richard Van Voorst','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n</head>\r\n<body>\r\n<br>\r\n<div style=\"max-width: 600px; color: #242424; font-family:\'Segoe UI\',\'Helvetica Neue\',Helvetica,Arial,sans-serif\" class=\"me-email-text\">\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n<div style=\"margin-bottom: 12px;\"><span class=\"me-email-text\" style=\"font-size: 24px;font-weight: 700; margin-right:12px;\">Microsoft Teams</span>\r\n<a id=\"meet_invite_block.action.help\" class=\"me-email-link\" style=\"font-size:14px; text-decoration:underline; color: #5B5FC7;\" href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\">\r\nNeed help?</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><a id=\"meet_invite_block.action.join_link\" title=\"Meeting join link\" class=\"me-email-headline\" style=\"font-size: 20px; font-weight:600; text-decoration: underline; color: #5B5FC7;\" href=\"https://teams.microsoft.com/l/meetup-join/19%3ameeting_ZTUyOGQ0NmYtMDFmYy00ZTQyLTgyNjQtNjZiMTI3OWY0MzFj%40thread.v2/0?context=%7b%22Tid%22%3a%220930a80e-2157-43f6-aeeb-8cd66ff956b1%22%2c%22Oid%22%3a%22ed6fbfe0-0b33-4893-8efe-ef687ac31ad7%22%7d\" target=\"_blank\" rel=\"noreferrer noopener\">Join\r\n the meeting now</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Meeting ID:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">215 631 492 725 5</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Passcode:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">e4Gq7Ba7</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px; max-width: 532px;\">\r\n<hr style=\"border: 0; background: #D1D1D1; height: 1px;\">\r\n</div>\r\n<div><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">For organizers:\r\n</span><a id=\"meet_invite_block.action.organizer_meet_options\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7;\" target=\"_blank\" href=\"https://teams.microsoft.com/meetingOptions/?organizerId=ed6fbfe0-0b33-4893-8efe-ef687ac31ad7&amp;tenantId=0930a80e-2157-43f6-aeeb-8cd66ff956b1&amp;threadId=19_meeting_ZTUyOGQ0NmYtMDFmYy00ZTQyLTgyNjQtNjZiMTI3OWY0MzFj@thread.v2&amp;messageId=0&amp;language=en-US\" rel=\"noreferrer noopener\">Meeting\r\n options</a> </div>\r\n<div style=\"margin-top: 24px; margin-bottom: 6px;\"></div>\r\n<div style=\"margin-bottom: 24px;\"></div>\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n</div>\r\n</body>\r\n</html>','\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://teams.microsoft.com/l/meetup-join/19%3ameeting_ZTUyOGQ0NmYtMDFmYy00ZTQyLTgyNjQtNjZiMTI3OWY0MzFj%40thread.v2/0?context=%7b%22Tid%22%3a%220930a80e-2157-43f6-aeeb-8cd66ff956b1%22%2c%22Oid%22%3a%22ed6fbfe0-0b33-4893-8efe-ef687ac31ad7%22%7d>\r\nMeeting ID: 215 631 492 725 5\r\nPasscode: e4Gq7Ba7\r\n________________________________\r\nFor organizers: Meeting options<https://teams.microsoft.com/meetingOptions/?organizerId=ed6fbfe0-0b33-4893-8efe-ef687ac31ad7&tenantId=0930a80e-2157-43f6-aeeb-8cd66ff956b1&threadId=19_meeting_ZTUyOGQ0NmYtMDFmYy00ZTQyLTgyNjQtNjZiMTI3OWY0MzFj@thread.v2&messageId=0&language=en-US>\r\n________________________________________________________________________________',0,0,0,0,0,0,'2025-06-05 16:04:54','2025-12-09 19:07:09','2025-12-09 19:07:09','2025-12-09 19:07:09',NULL,NULL,NULL),
(353,4,'<calendar-a9a853d2-bbcc-4b73-8010-9660682bc7e1@google.com>',NULL,NULL,'Invitation: Mavrix <> SL @ Fri Jun 6, 2025 12pm - 1pm (EDT) (rick@mavrix.one)','avalkenburg@strategic-logix.com','Andrew Valkenburg','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v143/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v117/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation from Andrew Valkenburg\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"3c7m21u3h5c6u9l2370k9c3cm0\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Mavrix &lt;&gt; SL</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M2M3bTIxdTNoNWM2dTlsMjM3MGs5YzNjbTAgcmlja0BtYXZyaXgub25l&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTM3ZjBkYTEzY2Q4NDk4ZTE0NWExNzAwNGIzNDUxYzdhNDIyMmZmYTg&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250606T160000Z\"></time><time itemprop=\"endDate\" datetime=\"20250606T170000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">Join with Google Meet – You have been invited by Andrew Valkenburg to attend an event named Mavrix &lt;&gt; SL on Friday Jun 6, 2025 ⋅ 12pm – 1pm (Eastern Time - New York).</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:28px;\"><a href=\"https://meet.google.com/zux-csgq-umy?hs=224\" class=\"primary-button-text\" style=\"display: inline-block;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"display: inline-block\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"background-color: #1a73e8; cursor: auto; padding: 10px 25px; border: none; border-radius: 4px; margin: 0;\" class=\"primary-button\"><!--[if mso]><a href=\"https://meet.google.com/zux-csgq-umy?hs=224\" class=\"primary-button-text\" target=\"_blank\"><![endif]--><span class=\"primary-button-text\" style=\"font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\">Join with Google Meet</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Meeting link</h2></td></tr></table><!-- Use grey text for the Meet link--><div><a style=\"display: inline-block;;color: #70757a; text-decoration: none;\" class=\"secondary-text underline-on-hover\" href=\"https://meet.google.com/zux-csgq-umy?hs=224\">meet.google.com/zux-csgq-umy</a></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Join by phone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(US) </span><a href=\"tel:+1-321-866-6209%3B417765752%23\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+1 321-866-6209</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">PIN: 417765752</span><br><br><a href=\"https://tel.meet/zux-csgq-umy?pin=8595515712307&amp;hs=0\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">More phone numbers</a><br></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250606T160000Z\"></time><time itemprop=\"endDate\" datetime=\"20250606T170000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Friday Jun 6, 2025 ⋅ 12pm – 1pm (Eastern Time - New York)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:avalkenburg@strategic-logix.com\">Andrew Valkenburg</a></span><meta itemprop=\"email\" content=\"avalkenburg@strategic-logix.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Andrew Valkenburg\"/><meta itemprop=\"email\" content=\"avalkenburg@strategic-logix.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rickmerkuri1@gmail.com\">rickmerkuri1@gmail.com</a></span><meta itemprop=\"email\" content=\"rickmerkuri1@gmail.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jschnipke@strategic-logix.com\">Jeremy Schnipke</a></span><meta itemprop=\"email\" content=\"jschnipke@strategic-logix.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M2M3bTIxdTNoNWM2dTlsMjM3MGs5YzNjbTAgcmlja0BtYXZyaXgub25l&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTM3ZjBkYTEzY2Q4NDk4ZTE0NWExNzAwNGIzNDUxYzdhNDIyMmZmYTg&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M2M3bTIxdTNoNWM2dTlsMjM3MGs5YzNjbTAgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTM3ZjBkYTEzY2Q4NDk4ZTE0NWExNzAwNGIzNDUxYzdhNDIyMmZmYTg&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M2M3bTIxdTNoNWM2dTlsMjM3MGs5YzNjbTAgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTM3ZjBkYTEzY2Q4NDk4ZTE0NWExNzAwNGIzNDUxYzdhNDIyMmZmYTg&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M2M3bTIxdTNoNWM2dTlsMjM3MGs5YzNjbTAgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTM3ZjBkYTEzY2Q4NDk4ZTE0NWExNzAwNGIzNDUxYzdhNDIyMmZmYTg&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M2M3bTIxdTNoNWM2dTlsMjM3MGs5YzNjbTAgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTM3ZjBkYTEzY2Q4NDk4ZTE0NWExNzAwNGIzNDUxYzdhNDIyMmZmYTg&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M2M3bTIxdTNoNWM2dTlsMjM3MGs5YzNjbTAgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTM3ZjBkYTEzY2Q4NDk4ZTE0NWExNzAwNGIzNDUxYzdhNDIyMmZmYTg&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M2M3bTIxdTNoNWM2dTlsMjM3MGs5YzNjbTAgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTM3ZjBkYTEzY2Q4NDk4ZTE0NWExNzAwNGIzNDUxYzdhNDIyMmZmYTg&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M2M3bTIxdTNoNWM2dTlsMjM3MGs5YzNjbTAgcmlja0BtYXZyaXgub25l&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTM3ZjBkYTEzY2Q4NDk4ZTE0NWExNzAwNGIzNDUxYzdhNDIyMmZmYTg&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M2M3bTIxdTNoNWM2dTlsMjM3MGs5YzNjbTAgcmlja0BtYXZyaXgub25l&amp;tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTM3ZjBkYTEzY2Q4NDk4ZTE0NWExNzAwNGIzNDUxYzdhNDIyMmZmYTg&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','Mavrix <> SL\r\nFriday Jun 6, 2025 ⋅ 12pm – 1pm\r\nEastern Time - New York\r\n\r\nJoin with Google Meet\r\nhttps://meet.google.com/zux-csgq-umy?hs=224\r\n\r\n\r\n	\r\nJoin by phone\r\n(US) +1 321-866-6209\r\nPIN: 417765752\r\n\r\nMore phone numbers\r\nhttps://tel.meet/zux-csgq-umy?pin=8595515712307&hs=0\r\n\r\n\r\nOrganizer\r\nAndrew Valkenburg\r\navalkenburg@strategic-logix.com\r\n\r\nGuests\r\nAndrew Valkenburg - organizer\r\nrick@mavrix.one\r\nrickmerkuri1@gmail.com\r\nJeremy Schnipke\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=M2M3bTIxdTNoNWM2dTlsMjM3MGs5YzNjbTAgcmlja0BtYXZyaXgub25l&tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTM3ZjBkYTEzY2Q4NDk4ZTE0NWExNzAwNGIzNDUxYzdhNDIyMmZmYTg&ctz=America%2FNew_York&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=M2M3bTIxdTNoNWM2dTlsMjM3MGs5YzNjbTAgcmlja0BtYXZyaXgub25l&tok=MzEjYXZhbGtlbmJ1cmdAc3RyYXRlZ2ljLWxvZ2l4LmNvbTM3ZjBkYTEzY2Q4NDk4ZTE0NWExNzAwNGIzNDUxYzdhNDIyMmZmYTg&ctz=America%2FNew_York&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-06-04 17:48:37','2025-12-09 19:07:09','2025-12-09 19:07:09','2025-12-09 19:07:09',NULL,NULL,NULL),
(354,4,' <CH2PR16MB3431290BC2ACC5CBC5E39595FE6EA@CH2PR16MB3431.namprd16.prod.outlook.com>',NULL,NULL,'Re: Next steps!','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHi Rick, my week is filling up toward the end of the week but still available on Monday &amp; Tuesday.</div>\r\n<div id=\"Signature\" class=\"elementToProof\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<p class=\"elementToProof\" style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p class=\"elementToProof\" style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p class=\"elementToProof\" style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p class=\"elementToProof\" style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p class=\"elementToProof\" style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color: rgb(0, 36, 81); margin: 0px;\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color: rgb(0, 36, 81); margin: 0px;\">.com</a></u></span></p>\r\n<p class=\"elementToProof\" style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a href=\"https://lithiumbatterycompany.com/\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color: rgb(0, 36, 81); margin: 0px;\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b> Thursday, June 5, 2025 9:02 AM<br>\r\n<b>To:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style type=\"text/css\" style=\"display:none\">\r\n<!--\r\np\r\n	{margin-top:0;\r\n	margin-bottom:0}\r\n-->\r\n</style>\r\n<div dir=\"ltr\">\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick,&nbsp;<br>\r\n<br>\r\nI am generally flexible next week Mon-Wed any time after 130 if that works? Would be a good time to chat - we are meeting with our officials from the White House, SBA &amp; DOE this morning at 10am to review our teaser ahead of kicking-off our capital raise.<br>\r\n<br>\r\nBest,&nbsp;</div>\r\n<div id=\"x_Signature\" class=\"x_elementToProof\">\r\n<p class=\"x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p class=\"x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">I Chief Financial Officer</span></p>\r\n<p class=\"x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p class=\"x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p class=\"x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p class=\"x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, June 3, 2025 8:19 AM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Hey Jarrett! I missed this…sorry.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">What’s next week looking like?</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">I want to add Brian to our next call (my guy).</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<br>\r\n<div class=\"x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_airmail_on\">On May 23, 2025 at 12:27:57 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nSounds good Rick - next week we are generally free Wednesday-Friday from 1030-12am | 1-3pm est. Let me know if a time in that range works and we can get a calendar on the books. Have a great weekend</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_Signature\" class=\"x_x_elementToProof\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, May 23, 2025 8:38 AM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div id=\"x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks for this Jarrett.</div>\r\n<div id=\"x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nLet’s schedule a call with your team and my guy for later next week…</div>\r\n<div id=\"x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nLet me know what’s best.</div>\r\n<div id=\"x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks again!</div>\r\n<div id=\"x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div id=\"x_x_x_bloop_sign_1748003865719297792\" class=\"x_x_x_bloop_sign\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_x_airmail_on\">On May 21, 2025 at 3:34:57 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nRick,&nbsp;<br>\r\n<br>\r\nPlease find attached a high-level investment teaser with an overview of our recent transaction, equipment purchase, facility layout and letters of support for our manufacturing aspirations from Mayor Castor, who\'s support has been instrumental in our project,\r\n as well as from our clients (volume of around ~$14.8m) for your review. Please let me know if any questions and we look forward to hearing your interest level.&nbsp;</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nBest,&nbsp;</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_x_Signature\" class=\"x_x_x_elementToProof\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, May 20, 2025 4:00 PM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">NDAs in place, next steps…</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Let me know what\'s best for your team.&nbsp;</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_x_x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_x_x_airmail_on\">On May 15, 2025 at 8:17:14 AM, Rick (<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_x_x_clean_bq\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Sounds good.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Hope we can help you sooner rather than later!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">All my best,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_x_x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_x_x_airmail_on\">On May 14, 2025 at 1:53:19 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_x_x_clean_bq\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div>\r\n<div dir=\"ltr\">Rick, apologies for the delay - after our call yesterday we were engaged by the Shell Corporation and today we are receiving an award at the Florida SBDC event so have been in meetings nearly constantly and I fell behind on kicking over the MNDA.\r\n It’s first on my to-do list after this event!</div>\r\n</div>\r\n<div id=\"x_x_x_x_ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"x_x_x_x_ms-outlook-mobile-signature\">\r\n<div></div>\r\n</div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, May 13, 2025 9:02:50 AM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div id=\"x_x_x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nGot it! Will be there.. thanks!</div>\r\n<div id=\"x_x_x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div id=\"x_x_x_x_x_bloop_sign_1747141266137078016\" class=\"x_x_x_x_x_bloop_sign\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_x_x_x_airmail_on\">On May 13, 2025 at 8:59:30 AM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_x_x_x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick,&nbsp;</div>\r\n<div class=\"x_x_x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nYes, 10am this morning - I just resent the zoom invite. Look forward to speaking soon</div>\r\n<div class=\"x_x_x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_x_x_x_Signature\" class=\"x_x_x_x_x_elementToProof\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWAa99fda94-e056-c619-a196-a33c2ff2877b\" class=\"x_x_x_x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA098259f9-2a26-ebbc-a687-62be0f9f5580\" class=\"x_x_x_x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" id=\"OWA6dd24376-6350-4d35-05a2-83112c570eec\" class=\"x_x_x_x_x_OWAAutoLink\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_x_x_x_appendonsend\"></div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block; width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Rick<br>\r\n<b>Sent:</b>&nbsp;Tuesday, May 13, 2025 7:28 AM<br>\r\n<b>To:</b>&nbsp;Jarrett Brownfield<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps! </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div>Not sure if I responded accurately.&nbsp;</div>\r\n<div>I’m open at 10a today if that works.&nbsp;</div>\r\n<div>Thanks!</div>\r\n<div>Rick</div>\r\n<div><br>\r\n</div>\r\n<div>Rick Mislan, PhD</div>\r\n<div>[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one</div>\r\n<div><img height=\"11\" style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n<p style=\"color:rgb(0,0,0)\">On May 12, 2025 at 2:26:32 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\" id=\"OWA6fe9a5f9-a715-dff3-4833-c48bb98fbcc5\" class=\"x_x_x_x_x_OWAAutoLink\" style=\"margin-top:0px; margin-bottom:0px\">jarrett@lithiumbatterycompany.com</a>)\r\n wrote:</p>\r\n<blockquote>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nWe enjoyed meeting with you as well and thanks for circling back - please find below availability and we look forward to speaking:<br>\r\n<br>\r\n(all times EST)<br>\r\nToday:&nbsp; 3-4:30pm<br>\r\nTuesday (5.13): 930-11am || 1130am-1pm<br>\r\nWednesday (5.14): 10am-1130<br>\r\nThursday (5.15): 12-3pm&nbsp;<br>\r\nFriday (5.16): 9am-3pm<br>\r\n<br>\r\n<br>\r\nBest,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_x_x_x_x_Signature\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner</span>\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">\r\nI Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA85b348c0-ceb1-fac7-e499-95d5a963cc38\" class=\"x_x_x_x_x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA9b7813f6-bff5-7b2b-9efa-d558ec60b684\" class=\"x_x_x_x_x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" id=\"OWA93baa47e-fc9a-556d-beba-278bafbdf824\" class=\"x_x_x_x_x_x_OWAAutoLink\" title=\"https://lithiumbatterycompany.com/\" data-auth=\"NotApplicable\" data-linkindex=\"10\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_x_x_x_x_appendonsend\"></div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_x_x_x_x_x_divRplyFwdMsg\" dir=\"ltr\"><span style=\"font-family:Calibri,sans-serif; font-size:11pt; color:rgb(0,0,0)\"><b>From:</b>&nbsp;Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b>&nbsp;Sunday, May 11, 2025 9:18 AM<br>\r\n<b>To:</b>&nbsp;nathan@lithiumbatterycompany.com &lt;nathan@lithiumbatterycompany.com&gt;; jordan@lithiumbatterycompany.com &lt;jordan@lithiumbatterycompany.com&gt;; ronald@lithiumbatterycompany.com &lt;ronald@lithiumbatterycompany.com&gt;; jarrett@lithiumbatterycompany.com &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps!</span>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Ok, following up again,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">this time for a request&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">to discuss next steps.</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Interested in money? :)</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Let’s set up a time to chat soon.</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Thanks,</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Rick Mislan, PhD</div>\r\n<div style=\"direction:ltr\"><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" id=\"OWA6f2250de-935b-77bd-ce88-2cfb3cbe652e\" class=\"x_x_x_x_x_OWAAutoLink\" data-auth=\"NotApplicable\">https://mavrix.one</a></div>\r\n<div style=\"direction:ltr\"><img height=\"11\" style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr\">On May 8, 2025 at 1:33:01 PM, Rick (<a href=\"mailto:rick@mavrix.one\" id=\"OWA44b57871-3029-0cf0-fc3a-86d620da512e\" class=\"x_x_x_x_x_OWAAutoLink\" style=\"margin-top:0px; margin-bottom:0px\">rick@mavrix.one</a>) wrote:</p>\r\n<blockquote>\r\n<div style=\"direction:ltr; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<span style=\"background-color:rgb(255,255,255)\">Gentlemen,</span></div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nA pleasure meeting you all!</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nJust wanted to let you know that</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nI am talking to my team <a href=\"http://airmail.calendar/2025-05-11%2019:00:00%20EDT\" id=\"OWA8867e85c-bf8e-41be-d815-e78244229e9c\" class=\"x_x_x_x_x_OWAAutoLink\" data-auth=\"NotApplicable\">\r\ntonight</a></div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nhere in Treasure Island.&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nMy goal for <a href=\"http://airmail.calendar/2025-05-11%2019:00:00%20EDT\" id=\"OWA7aced99c-5963-164f-8e4a-9d96675a373f\" class=\"x_x_x_x_x_OWAAutoLink\" data-auth=\"NotApplicable\">\r\ntonight</a>&nbsp;is to</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\ndiscuss the mavrix&nbsp;portfolio and</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nplan out a schedule of calls</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nwith you for next steps.&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nAgain, I truly enjoyed meeting&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nand chatting with you all!&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nI’ll be in touch next week!</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nAll my best,</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nRick</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Hi Rick, my week is filling up toward the end of the week but still available on Monday & Tuesday.\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSent: Thursday, June 5, 2025 9:02 AM\r\nTo: Rick <rick@mavrix.one>\r\nSubject: Re: Next steps!\r\n\r\nHi Rick,\r\n\r\nI am generally flexible next week Mon-Wed any time after 130 if that works? Would be a good time to chat - we are meeting with our officials from the White House, SBA & DOE this morning at 10am to review our teaser ahead of kicking-off our capital raise.\r\n\r\nBest,\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, June 3, 2025 8:19 AM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nHey Jarrett! I missed this…sorry.\r\nWhat’s next week looking like?\r\nI want to add Brian to our next call (my guy).\r\nThanks!\r\nRick\r\n\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 23, 2025 at 12:27:57 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nSounds good Rick - next week we are generally free Wednesday-Friday from 1030-12am | 1-3pm est. Let me know if a time in that range works and we can get a calendar on the books. Have a great weekend\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, May 23, 2025 8:38 AM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nThanks for this Jarrett.\r\nLet’s schedule a call with your team and my guy for later next week…\r\nLet me know what’s best.\r\nThanks again!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 21, 2025 at 3:34:57 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nRick,\r\n\r\nPlease find attached a high-level investment teaser with an overview of our recent transaction, equipment purchase, facility layout and letters of support for our manufacturing aspirations from Mayor Castor, who\'s support has been instrumental in our project, as well as from our clients (volume of around ~$14.8m) for your review. Please let me know if any questions and we look forward to hearing your interest level.\r\n\r\nBest,\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, May 20, 2025 4:00 PM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nNDAs in place, next steps…\r\nLet me know what\'s best for your team.\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 15, 2025 at 8:17:14 AM, Rick (rick@mavrix.one<mailto:rick@mavrix.one>) wrote:\r\n\r\nSounds good.\r\nHope we can help you sooner rather than later!\r\nAll my best,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 14, 2025 at 1:53:19 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nRick, apologies for the delay - after our call yesterday we were engaged by the Shell Corporation and today we are receiving an award at the Florida SBDC event so have been in meetings nearly constantly and I fell behind on kicking over the MNDA. It’s first on my to-do list after this event!\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, May 13, 2025 9:02:50 AM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nGot it! Will be there.. thanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 13, 2025 at 8:59:30 AM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nYes, 10am this morning - I just resent the zoom invite. Look forward to speaking soon\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n\r\n________________________________\r\nFrom: Rick\r\nSent: Tuesday, May 13, 2025 7:28 AM\r\nTo: Jarrett Brownfield\r\nSubject: Re: Next steps!\r\n\r\nNot sure if I responded accurately.\r\nI’m open at 10a today if that works.\r\nThanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\n[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one\r\n[X]\r\n\r\nOn May 12, 2025 at 2:26:32 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nWe enjoyed meeting with you as well and thanks for circling back - please find below availability and we look forward to speaking:\r\n\r\n(all times EST)\r\nToday:  3-4:30pm\r\nTuesday (5.13): 930-11am || 1130am-1pm\r\nWednesday (5.14): 10am-1130\r\nThursday (5.15): 12-3pm\r\nFriday (5.16): 9am-3pm\r\n\r\n\r\nBest,\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Sunday, May 11, 2025 9:18 AM\r\nTo: nathan@lithiumbatterycompany.com <nathan@lithiumbatterycompany.com>; jordan@lithiumbatterycompany.com <jordan@lithiumbatterycompany.com>; ronald@lithiumbatterycompany.com <ronald@lithiumbatterycompany.com>; jarrett@lithiumbatterycompany.com <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nOk, following up again,\r\nthis time for a request\r\nto discuss next steps.\r\n\r\nInterested in money? :)\r\nLet’s set up a time to chat soon.\r\n\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 8, 2025 at 1:33:01 PM, Rick (rick@mavrix.one<mailto:rick@mavrix.one>) wrote:\r\n\r\nGentlemen,\r\n\r\nA pleasure meeting you all!\r\n\r\nJust wanted to let you know that\r\nI am talking to my team tonight<http://airmail.calendar/2025-05-11%2019:00:00%20EDT>\r\nhere in Treasure Island.\r\n\r\nMy goal for tonight<http://airmail.calendar/2025-05-11%2019:00:00%20EDT> is to\r\ndiscuss the mavrix portfolio and\r\nplan out a schedule of calls\r\nwith you for next steps.\r\n\r\nAgain, I truly enjoyed meeting\r\nand chatting with you all!\r\n\r\nI’ll be in touch next week!\r\n\r\nAll my best,\r\nRick\r\n\r\n',0,0,0,0,0,0,'2025-06-06 19:52:49','2025-12-09 19:12:32','2025-12-09 19:12:32','2025-12-09 19:12:32',NULL,NULL,NULL),
(355,4,' <CH2PR16MB343126F019860B5524B31F7FFE6EA@CH2PR16MB3431.namprd16.prod.outlook.com>',NULL,NULL,'Re: Next steps!','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nNot a problem &amp; sounds good - look forward to speaking and have a great weekend</div>\r\n<div id=\"Signature\" class=\"elementToProof\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<p class=\"elementToProof\" style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p class=\"elementToProof\" style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p class=\"elementToProof\" style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p class=\"elementToProof\" style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p class=\"elementToProof\" style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color: rgb(0, 36, 81); margin: 0px;\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color: rgb(0, 36, 81); margin: 0px;\">.com</a></u></span></p>\r\n<p class=\"elementToProof\" style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a href=\"https://lithiumbatterycompany.com/\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color: rgb(0, 36, 81); margin: 0px;\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, June 6, 2025 3:54 PM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks!</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nLet’s schedule Monday at 3.</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nWaiting on my guy to respond.&nbsp;</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks for the reminder!</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\n<br>\r\n</div>\r\n<div id=\"x_bloop_sign_1749239623809675008\" class=\"x_bloop_sign\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On June 6, 2025 at 3:53:33 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick, my week is filling up toward the end of the week but still available on Monday &amp; Tuesday.</div>\r\n<div id=\"x_Signature\" class=\"x_elementToProof\">\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<p class=\"x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p class=\"x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">I Chief Financial Officer</span></p>\r\n<p class=\"x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p class=\"x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p class=\"x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p class=\"x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b> Thursday, June 5, 2025 9:02 AM<br>\r\n<b>To:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div dir=\"ltr\">\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick,&nbsp;<br>\r\n<br>\r\nI am generally flexible next week Mon-Wed any time after 130 if that works? Would be a good time to chat - we are meeting with our officials from the White House, SBA &amp; DOE this morning at 10am to review our teaser ahead of kicking-off our capital raise.<br>\r\n<br>\r\nBest,&nbsp;</div>\r\n<div id=\"x_x_Signature\" class=\"x_x_elementToProof\">\r\n<p class=\"x_x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p class=\"x_x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">I Chief Financial Officer</span></p>\r\n<p class=\"x_x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p class=\"x_x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p class=\"x_x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p class=\"x_x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, June 3, 2025 8:19 AM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Hey Jarrett! I missed this…sorry.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">What’s next week looking like?</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">I want to add Brian to our next call (my guy).</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<br>\r\n<div class=\"x_x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_x_airmail_on\">On May 23, 2025 at 12:27:57 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nSounds good Rick - next week we are generally free Wednesday-Friday from 1030-12am | 1-3pm est. Let me know if a time in that range works and we can get a calendar on the books. Have a great weekend</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_x_Signature\" class=\"x_x_x_elementToProof\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, May 23, 2025 8:38 AM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div id=\"x_x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks for this Jarrett.</div>\r\n<div id=\"x_x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nLet’s schedule a call with your team and my guy for later next week…</div>\r\n<div id=\"x_x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nLet me know what’s best.</div>\r\n<div id=\"x_x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks again!</div>\r\n<div id=\"x_x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div id=\"x_x_x_x_bloop_sign_1748003865719297792\" class=\"x_x_x_x_bloop_sign\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_x_x_airmail_on\">On May 21, 2025 at 3:34:57 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_x_x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nRick,&nbsp;<br>\r\n<br>\r\nPlease find attached a high-level investment teaser with an overview of our recent transaction, equipment purchase, facility layout and letters of support for our manufacturing aspirations from Mayor Castor, who\'s support has been instrumental in our project,\r\n as well as from our clients (volume of around ~$14.8m) for your review. Please let me know if any questions and we look forward to hearing your interest level.&nbsp;</div>\r\n<div class=\"x_x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nBest,&nbsp;</div>\r\n<div class=\"x_x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_x_x_Signature\" class=\"x_x_x_x_elementToProof\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_x_x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, May 20, 2025 4:00 PM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">NDAs in place, next steps…</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Let me know what\'s best for your team.&nbsp;</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_x_x_x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_x_x_x_airmail_on\">On May 15, 2025 at 8:17:14 AM, Rick (<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_x_x_x_clean_bq\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Sounds good.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Hope we can help you sooner rather than later!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">All my best,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_x_x_x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_x_x_x_airmail_on\">On May 14, 2025 at 1:53:19 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_x_x_x_clean_bq\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div>\r\n<div dir=\"ltr\">Rick, apologies for the delay - after our call yesterday we were engaged by the Shell Corporation and today we are receiving an award at the Florida SBDC event so have been in meetings nearly constantly and I fell behind on kicking over the MNDA.\r\n It’s first on my to-do list after this event!</div>\r\n</div>\r\n<div id=\"x_x_x_x_x_ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"x_x_x_x_x_ms-outlook-mobile-signature\">\r\n<div></div>\r\n</div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_x_x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, May 13, 2025 9:02:50 AM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div id=\"x_x_x_x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nGot it! Will be there.. thanks!</div>\r\n<div id=\"x_x_x_x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div id=\"x_x_x_x_x_x_bloop_sign_1747141266137078016\" class=\"x_x_x_x_x_x_bloop_sign\">\r\nRick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_x_x_x_x_airmail_on\">On May 13, 2025 at 8:59:30 AM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_x_x_x_x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_x_x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick,&nbsp;</div>\r\n<div class=\"x_x_x_x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nYes, 10am this morning - I just resent the zoom invite. Look forward to speaking soon</div>\r\n<div class=\"x_x_x_x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_x_x_x_x_Signature\" class=\"x_x_x_x_x_x_elementToProof\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWAa99fda94-e056-c619-a196-a33c2ff2877b\" class=\"x_x_x_x_x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA098259f9-2a26-ebbc-a687-62be0f9f5580\" class=\"x_x_x_x_x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" id=\"OWA6dd24376-6350-4d35-05a2-83112c570eec\" class=\"x_x_x_x_x_x_OWAAutoLink\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_x_x_x_x_appendonsend\"></div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block; width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Rick<br>\r\n<b>Sent:</b>&nbsp;Tuesday, May 13, 2025 7:28 AM<br>\r\n<b>To:</b>&nbsp;Jarrett Brownfield<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps! </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div>Not sure if I responded accurately.&nbsp;</div>\r\n<div>I’m open at 10a today if that works.&nbsp;</div>\r\n<div>Thanks!</div>\r\n<div>Rick</div>\r\n<div><br>\r\n</div>\r\n<div>Rick Mislan, PhD</div>\r\n<div>[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one</div>\r\n<div><img height=\"11\" style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n<p style=\"color:rgb(0,0,0)\">On May 12, 2025 at 2:26:32 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\" id=\"OWA6fe9a5f9-a715-dff3-4833-c48bb98fbcc5\" class=\"x_x_x_x_x_x_OWAAutoLink\" style=\"margin-top:0px; margin-bottom:0px\">jarrett@lithiumbatterycompany.com</a>)\r\n wrote:</p>\r\n<blockquote>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nWe enjoyed meeting with you as well and thanks for circling back - please find below availability and we look forward to speaking:<br>\r\n<br>\r\n(all times EST)<br>\r\nToday:&nbsp; 3-4:30pm<br>\r\nTuesday (5.13): 930-11am || 1130am-1pm<br>\r\nWednesday (5.14): 10am-1130<br>\r\nThursday (5.15): 12-3pm&nbsp;<br>\r\nFriday (5.16): 9am-3pm<br>\r\n<br>\r\n<br>\r\nBest,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_x_x_x_x_x_Signature\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner</span>\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">\r\nI Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA85b348c0-ceb1-fac7-e499-95d5a963cc38\" class=\"x_x_x_x_x_x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA9b7813f6-bff5-7b2b-9efa-d558ec60b684\" class=\"x_x_x_x_x_x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" id=\"OWA93baa47e-fc9a-556d-beba-278bafbdf824\" class=\"x_x_x_x_x_x_x_OWAAutoLink\" title=\"https://lithiumbatterycompany.com/\" data-auth=\"NotApplicable\" data-linkindex=\"10\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_x_x_x_x_x_appendonsend\"></div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_x_x_x_x_x_x_divRplyFwdMsg\" dir=\"ltr\"><span style=\"font-family:Calibri,sans-serif; font-size:11pt; color:rgb(0,0,0)\"><b>From:</b>&nbsp;Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b>&nbsp;Sunday, May 11, 2025 9:18 AM<br>\r\n<b>To:</b>&nbsp;nathan@lithiumbatterycompany.com &lt;nathan@lithiumbatterycompany.com&gt;; jordan@lithiumbatterycompany.com &lt;jordan@lithiumbatterycompany.com&gt;; ronald@lithiumbatterycompany.com &lt;ronald@lithiumbatterycompany.com&gt;; jarrett@lithiumbatterycompany.com &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps!</span>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Ok, following up again,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">this time for a request&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">to discuss next steps.</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Interested in money? :)</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Let’s set up a time to chat soon.</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Thanks,</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Rick Mislan, PhD</div>\r\n<div style=\"direction:ltr\"><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" id=\"OWA6f2250de-935b-77bd-ce88-2cfb3cbe652e\" class=\"x_x_x_x_x_x_OWAAutoLink\" data-auth=\"NotApplicable\">https://mavrix.one</a></div>\r\n<div style=\"direction:ltr\"><img height=\"11\" style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr\">On May 8, 2025 at 1:33:01 PM, Rick (<a href=\"mailto:rick@mavrix.one\" id=\"OWA44b57871-3029-0cf0-fc3a-86d620da512e\" class=\"x_x_x_x_x_x_OWAAutoLink\" style=\"margin-top:0px; margin-bottom:0px\">rick@mavrix.one</a>) wrote:</p>\r\n<blockquote>\r\n<div style=\"direction:ltr; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<span style=\"background-color:rgb(255,255,255)\">Gentlemen,</span></div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nA pleasure meeting you all!</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nJust wanted to let you know that</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nI am talking to my team <a href=\"http://airmail.calendar/2025-05-11%2019:00:00%20EDT\" id=\"OWA8867e85c-bf8e-41be-d815-e78244229e9c\" class=\"x_x_x_x_x_x_OWAAutoLink\" data-auth=\"NotApplicable\">\r\ntonight</a></div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nhere in Treasure Island.&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nMy goal for <a href=\"http://airmail.calendar/2025-05-11%2019:00:00%20EDT\" id=\"OWA7aced99c-5963-164f-8e4a-9d96675a373f\" class=\"x_x_x_x_x_x_OWAAutoLink\" data-auth=\"NotApplicable\">\r\ntonight</a>&nbsp;is to</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\ndiscuss the mavrix&nbsp;portfolio and</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nplan out a schedule of calls</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nwith you for next steps.&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nAgain, I truly enjoyed meeting&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nand chatting with you all!&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nI’ll be in touch next week!</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nAll my best,</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nRick</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Not a problem & sounds good - look forward to speaking and have a great weekend\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, June 6, 2025 3:54 PM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nThanks!\r\nLet’s schedule Monday at 3.\r\nWaiting on my guy to respond.\r\nThanks for the reminder!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn June 6, 2025 at 3:53:33 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nHi Rick, my week is filling up toward the end of the week but still available on Monday & Tuesday.\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSent: Thursday, June 5, 2025 9:02 AM\r\nTo: Rick <rick@mavrix.one>\r\nSubject: Re: Next steps!\r\n\r\nHi Rick,\r\n\r\nI am generally flexible next week Mon-Wed any time after 130 if that works? Would be a good time to chat - we are meeting with our officials from the White House, SBA & DOE this morning at 10am to review our teaser ahead of kicking-off our capital raise.\r\n\r\nBest,\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, June 3, 2025 8:19 AM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nHey Jarrett! I missed this…sorry.\r\nWhat’s next week looking like?\r\nI want to add Brian to our next call (my guy).\r\nThanks!\r\nRick\r\n\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 23, 2025 at 12:27:57 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nSounds good Rick - next week we are generally free Wednesday-Friday from 1030-12am | 1-3pm est. Let me know if a time in that range works and we can get a calendar on the books. Have a great weekend\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, May 23, 2025 8:38 AM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nThanks for this Jarrett.\r\nLet’s schedule a call with your team and my guy for later next week…\r\nLet me know what’s best.\r\nThanks again!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 21, 2025 at 3:34:57 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nRick,\r\n\r\nPlease find attached a high-level investment teaser with an overview of our recent transaction, equipment purchase, facility layout and letters of support for our manufacturing aspirations from Mayor Castor, who\'s support has been instrumental in our project, as well as from our clients (volume of around ~$14.8m) for your review. Please let me know if any questions and we look forward to hearing your interest level.\r\n\r\nBest,\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, May 20, 2025 4:00 PM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nNDAs in place, next steps…\r\nLet me know what\'s best for your team.\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 15, 2025 at 8:17:14 AM, Rick (rick@mavrix.one<mailto:rick@mavrix.one>) wrote:\r\n\r\nSounds good.\r\nHope we can help you sooner rather than later!\r\nAll my best,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 14, 2025 at 1:53:19 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nRick, apologies for the delay - after our call yesterday we were engaged by the Shell Corporation and today we are receiving an award at the Florida SBDC event so have been in meetings nearly constantly and I fell behind on kicking over the MNDA. It’s first on my to-do list after this event!\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, May 13, 2025 9:02:50 AM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nGot it! Will be there.. thanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 13, 2025 at 8:59:30 AM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nYes, 10am this morning - I just resent the zoom invite. Look forward to speaking soon\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n\r\n________________________________\r\nFrom: Rick\r\nSent: Tuesday, May 13, 2025 7:28 AM\r\nTo: Jarrett Brownfield\r\nSubject: Re: Next steps!\r\n\r\nNot sure if I responded accurately.\r\nI’m open at 10a today if that works.\r\nThanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\n[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one\r\n[X]\r\n\r\nOn May 12, 2025 at 2:26:32 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nWe enjoyed meeting with you as well and thanks for circling back - please find below availability and we look forward to speaking:\r\n\r\n(all times EST)\r\nToday:  3-4:30pm\r\nTuesday (5.13): 930-11am || 1130am-1pm\r\nWednesday (5.14): 10am-1130\r\nThursday (5.15): 12-3pm\r\nFriday (5.16): 9am-3pm\r\n\r\n\r\nBest,\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Sunday, May 11, 2025 9:18 AM\r\nTo: nathan@lithiumbatterycompany.com <nathan@lithiumbatterycompany.com>; jordan@lithiumbatterycompany.com <jordan@lithiumbatterycompany.com>; ronald@lithiumbatterycompany.com <ronald@lithiumbatterycompany.com>; jarrett@lithiumbatterycompany.com <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nOk, following up again,\r\nthis time for a request\r\nto discuss next steps.\r\n\r\nInterested in money? :)\r\nLet’s set up a time to chat soon.\r\n\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 8, 2025 at 1:33:01 PM, Rick (rick@mavrix.one<mailto:rick@mavrix.one>) wrote:\r\n\r\nGentlemen,\r\n\r\nA pleasure meeting you all!\r\n\r\nJust wanted to let you know that\r\nI am talking to my team tonight<http://airmail.calendar/2025-05-11%2019:00:00%20EDT>\r\nhere in Treasure Island.\r\n\r\nMy goal for tonight<http://airmail.calendar/2025-05-11%2019:00:00%20EDT> is to\r\ndiscuss the mavrix portfolio and\r\nplan out a schedule of calls\r\nwith you for next steps.\r\n\r\nAgain, I truly enjoyed meeting\r\nand chatting with you all!\r\n\r\nI’ll be in touch next week!\r\n\r\nAll my best,\r\nRick\r\n\r\n',0,0,0,0,0,0,'2025-06-06 20:02:20','2025-12-09 19:12:32','2025-12-09 19:12:32','2025-12-09 19:12:32',NULL,NULL,NULL),
(356,4,' <PH7PR19MB7608340B318CF0C8E64C48CBF56EA@PH7PR19MB7608.namprd19.prod.outlook.com>',NULL,NULL,'Re: Mavrix One (Richard Mislan) In-Office Demo [In-person]','gannon_tinsley@vuzix.com','Gannon Tinsley','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nHey Rick,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nThat sounds great! I\'ve attached device information along with a few of our White Papers.&nbsp;&nbsp;</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nI don\'t have anything specific to Drone control, but Sam might.&nbsp; He is traveling this week so his responses may be delayed.&nbsp; I will get the list to our OEM director, and he can begin the process.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nLet me know if you need anything else in the meantime.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nLooking forward to working with you,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nGannon Tinsley</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nVuzix Sales Manager</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n585-217-6028</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Thursday, June 5, 2025 2:14 PM<br>\r\n<b>To:</b> Gannon Tinsley &lt;gannon_tinsley@vuzix.com&gt;; Shen-Fang Cheng &lt;shenfang_cheng@vuzix.com&gt;<br>\r\n<b>Subject:</b> Re: Mavrix One (Richard Mislan) In-Office Demo [In-person]</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<p></p>\r\n<div style=\"background-color:#FFEB9C; width:100%; border-style:solid; border-color:#9C6500; border-width:1pt; padding:2pt; font-size:10pt; line-height:12pt; font-family:\'Calibri\'; color:Black; text-align:left\">\r\n<span style=\"color:#9C6500\">CAUTION:</span> This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.</div>\r\n<br>\r\n<p></p>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Hi guys!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Just want to say thanks for your help and info today!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Really appreciate the demos and the answers.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">I think some next steps would be to talk OEM opportunities and&nbsp;</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">discuss the possibilities of the list below with some of my Operator feedback.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Let me know what works best…</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">My next visit will have to be on Teams</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">as I’m traveling for the next few months.&nbsp;</div>\r\n<div><br>\r\n</div>\r\n<div>Let me know what works best!</div>\r\n<div><br>\r\n</div>\r\n<div>Thanks again.</div>\r\n<div>Rick</div>\r\n<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://urldefense.proofpoint.com/v2/url?u=https-3A__mavrix.onehttps-3A__mavrix.onehttps-3A__mavrix.one&amp;d=DwMFaQ&amp;c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&amp;r=iXBv75Es72cz6XMv0rgcEpUhR-JFBogDUxGNBdBLXeo&amp;m=FDPgschrwD2rVOqDTQ97EnjXGcaF02E3Mb1LJoVmeUmkLoSx2kdsyoFYfg0WWsCJ&amp;s=JFVH2Jy_7niUu3OJTJbcsHRdDEI1d7eotpu7VKZ9QFk&amp;e=\">https://mavrix.one</a></div>\r\n<div><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div>\r\n<div>The technology areas of interest to the SOF Lethality are those that augment the vision of the user, known broadly as Visual Augmentation Systems (VAS). Technologies should be those that can be incorporated into a packaged size and weight fit for helmet-mounted\r\n (~8-24 oz), weapon-mounted (~8-48 oz), or handheld (~24-88 oz) form factors. The VAS program office is interested in technologies associated with the following electromagnetic spectrums: visible, near infrared (NIR), short-wave infrared (SWIR), mid-wave infrared\r\n (MWIR), and long-wave infrared (LWIR).</div>\r\n<div><br>\r\n</div>\r\n<div>1. Novel sensor and imaging technologies.&nbsp;</div>\r\n<div>2. Image signal processing software to improve performance of commercial sensors including but not limited</div>\r\n<div>to lower noise, higher dynamic range, super resolution, and lower perceived latency. Power-efficient</div>\r\n<div>hardware enabling this image signal processing while reducing latency is of equal interest.</div>\r\n<div>3. Novel, low-light, reflective band sensor technologies.&nbsp;</div>\r\n<div>4. Novel emissive band sensor technologies.&nbsp;</div>\r\n<div>5. Single-sensor technologies for imaging in both reflective and emissive bands.&nbsp;</div>\r\n<div>6. Low-cost SWIR sensor technologies.&nbsp;</div>\r\n<div>7. Passive range measurement technologies.&nbsp;</div>\r\n<div>8. Passive (without emitting laser energy) fire control and augmented aim point display.&nbsp;</div>\r\n<div>9. Novel display technologies to reduce size and weight of VAS devices.&nbsp;</div>\r\n<div>10. Medium Range and Long Range VAS for weapon-mounted applications to increase lethality at night. There is interest in single-sensor, multi-sensor, fused, or image-intensified solutions.</div>\r\n<div>11. Displays suitable for providing digital information to users wearing analog night vision goggles. There is</div>\r\n<div>interest in both external displays as well as displays capable of being incorporated into the housing of the</div>\r\n<div>night vision goggles in-line with the image intensifier.</div>\r\n<div>12. Modular night vision goggle concepts to decrease weight while also:</div>\r\n<div>• increasing field of view, increasing effective depth of field, increasing situational awareness,</div>\r\n<div>incorporating digital displays, expanding wavelength bands beyond traditional image intensifier</div>\r\n<div>tubes</div>\r\n<div>13. Low size, weight, power, and cost electronics to fuse multiple digital sensor streams &amp; display them to the user with minimal latency.</div>\r\n<div>14. Integration of digital solutions to enhance analog imaging systems.&nbsp;</div>\r\n<div>15. Small form factor, low-cost SWIR cameras for detection of common laser rangefinders and laser markers</div>\r\n<div>and designators.</div>\r\n<div>16. Handheld multi-sensor imaging and multi-domain sensing of the user’s environment with a focus on</div>\r\n<div>increasing lethality.</div>\r\n<div>17. Laser detection/warning technologies.</div>\r\n<div>18. Optical Augmentation Detection/Defeat/Enable devices</div>\r\n<div>19. &nbsp;Low-cost coolers for MWIR sensors.</div>\r\n<div>20 Event-based sensors and concepts of operation.</div>\r\n<div>21. Broadband enhancements to image intensifier tubes&nbsp;</div>\r\n<div>22. Low-cost, ruggedized, open-standard cables to connect weapon-mounted &amp; body-worn equipment on the SOCOM operator.</div>\r\n<div>23. Novel optical designs to reduce size, weight, and cost without compromising performance&nbsp;</div>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On June 5, 2025 at 9:52:49 AM, Gannon Tinsley (<a href=\"mailto:gannon_tinsley@vuzix.com\">gannon_tinsley@vuzix.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nMAVRIX is a national manufacturer of aerospace, defense, and robotics leaders committed to building a sovereign autonomous ecosystem — designed, sourced, and manufactured entirely in the USA.</div>\r\n<br>\r\n<div class=\"x_me-email-text\" style=\"max-width:600px; color:#242424; font-family:\'Segoe UI\',\'Helvetica Neue\',Helvetica,Arial,sans-serif\">\r\n<div style=\"margin-bottom:24px; overflow:hidden; white-space:nowrap\">________________________________________________________________________________</div>\r\n<div style=\"margin-bottom:12px\"><span class=\"x_me-email-text\" style=\"font-size:24px; font-weight:700; margin-right:12px\">Microsoft Teams</span>\r\n<a id=\"x_meet_invite_block.action.help\" class=\"x_me-email-link\" href=\"https://urldefense.proofpoint.com/v2/url?u=https-3A__aka.ms_JoinTeamsMeeting-3Fomkt-3Den-2DUS&amp;d=DwMFaQ&amp;c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&amp;r=iXBv75Es72cz6XMv0rgcEpUhR-JFBogDUxGNBdBLXeo&amp;m=FDPgschrwD2rVOqDTQ97EnjXGcaF02E3Mb1LJoVmeUmkLoSx2kdsyoFYfg0WWsCJ&amp;s=7QhrWOJA5G4OPZUMURQXL610QmY_u0fNYo2Q_PhLIow&amp;e=\" style=\"font-size:14px; text-decoration:underline; color:#5B5FC7\">\r\nNeed help?</a> </div>\r\n<div style=\"margin-bottom:6px\"><a id=\"x_meet_invite_block.action.join_link\" title=\"Meeting join link\" class=\"x_me-email-headline\" href=\"https://urldefense.proofpoint.com/v2/url?u=https-3A__teams.microsoft.com_l_meetup-2Djoin_19-253ameeting-5FZTIxOGNiZDctMjNiMC00OGJlLWE3MDYtMzZiMjMyODA3ZThi-2540thread.v2_0-3Fcontext-3D-257b-2522Tid-2522-253a-2522ece9227b-2D67ef-2D4f9a-2D86a6-2Ddb5502178337-2522-252c-2522Oid-2522-253a-25220602f987-2D96ff-2D46da-2Db19e-2Dbdff9b6206d5-2522-257d&amp;d=DwMFaQ&amp;c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&amp;r=iXBv75Es72cz6XMv0rgcEpUhR-JFBogDUxGNBdBLXeo&amp;m=FDPgschrwD2rVOqDTQ97EnjXGcaF02E3Mb1LJoVmeUmkLoSx2kdsyoFYfg0WWsCJ&amp;s=rCmlsPiKdwMgPqzMZydttTlm5IsMMQsRuxj3USk505M&amp;e=\" target=\"_blank\" rel=\"noreferrer noopener\" style=\"font-size:20px; font-weight:600; text-decoration:underline; color:#5B5FC7\">Join\r\n the meeting now</a> </div>\r\n<div style=\"margin-bottom:6px\"><span class=\"x_me-email-text-secondary\" style=\"font-size:14px; color:#616161\">Meeting ID:\r\n</span><span class=\"x_me-email-text\" style=\"font-size:14px; color:#242424\">210 336 371 872 0</span>\r\n</div>\r\n<div style=\"margin-bottom:24px\"><span class=\"x_me-email-text-secondary\" style=\"font-size:14px; color:#616161\">Passcode:\r\n</span><span class=\"x_me-email-text\" style=\"font-size:14px; color:#242424\">Ae6Wr9D9</span>\r\n</div>\r\n<div style=\"margin-bottom:24px; max-width:532px\">\r\n<hr style=\"border:0; background:#D1D1D1; height:1px\">\r\n</div>\r\n<div><span class=\"x_me-email-text-secondary\" style=\"font-size:14px; color:#616161\">For organizers:\r\n</span><a id=\"x_meet_invite_block.action.organizer_meet_options\" class=\"x_me-email-link\" target=\"_blank\" href=\"https://urldefense.proofpoint.com/v2/url?u=https-3A__teams.microsoft.com_meetingOptions_-3ForganizerId-3D0602f987-2D96ff-2D46da-2Db19e-2Dbdff9b6206d5-26tenantId-3Dece9227b-2D67ef-2D4f9a-2D86a6-2Ddb5502178337-26threadId-3D19-5Fmeeting-5FZTIxOGNiZDctMjNiMC00OGJlLWE3MDYtMzZiMjMyODA3ZThi-40thread.v2-26messageId-3D0-26language-3Den-2DUS&amp;d=DwMFaQ&amp;c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&amp;r=iXBv75Es72cz6XMv0rgcEpUhR-JFBogDUxGNBdBLXeo&amp;m=FDPgschrwD2rVOqDTQ97EnjXGcaF02E3Mb1LJoVmeUmkLoSx2kdsyoFYfg0WWsCJ&amp;s=mkkPDwgMHGvrnrOYytD0_vOLl81-N9OwjlcU6p7BABQ&amp;e=\" rel=\"noreferrer noopener\" style=\"font-size:14px; text-decoration:underline; color:#5B5FC7\">Meeting\r\n options</a> </div>\r\n<div style=\"margin-top:24px; margin-bottom:6px\"></div>\r\n<div style=\"margin-bottom:24px\"></div>\r\n<div style=\"margin-bottom:24px; overflow:hidden; white-space:nowrap\">________________________________________________________________________________</div>\r\n</div>\r\nThis message may contain confidential information belonging to the Vuzix Corporation and is intended only for the named recipients. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately\r\n by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. E-mail transmission cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, destroyed, arrive late or incomplete, or\r\n contain viruses. The sender therefore does not accept liability for any errors or omissions in the contents of this message, which arise as a result of e-mail transmission. If verification is required please request a hard-copy version.\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\nThis message may contain confidential information belonging to the Vuzix Corporation and is intended only for the named recipients. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately\r\n by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. E-mail transmission cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, destroyed, arrive late or incomplete, or\r\n contain viruses. The sender therefore does not accept liability for any errors or omissions in the contents of this message, which arise as a result of e-mail transmission. If verification is required please request a hard-copy version.\r\n</body>\r\n</html>\r\n','Hey Rick,\r\n\r\nThat sounds great! I\'ve attached device information along with a few of our White Papers.\r\n\r\nI don\'t have anything specific to Drone control, but Sam might.  He is traveling this week so his responses may be delayed.  I will get the list to our OEM director, and he can begin the process.\r\n\r\nLet me know if you need anything else in the meantime.\r\n\r\nLooking forward to working with you,\r\n\r\nGannon Tinsley\r\nVuzix Sales Manager\r\n585-217-6028\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Thursday, June 5, 2025 2:14 PM\r\nTo: Gannon Tinsley <gannon_tinsley@vuzix.com>; Shen-Fang Cheng <shenfang_cheng@vuzix.com>\r\nSubject: Re: Mavrix One (Richard Mislan) In-Office Demo [In-person]\r\n\r\n\r\nCAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.\r\n\r\n\r\nHi guys!\r\n\r\nJust want to say thanks for your help and info today!\r\nReally appreciate the demos and the answers.\r\nI think some next steps would be to talk OEM opportunities and\r\ndiscuss the possibilities of the list below with some of my Operator feedback.\r\n\r\nLet me know what works best…\r\nMy next visit will have to be on Teams\r\nas I’m traveling for the next few months.\r\n\r\nLet me know what works best!\r\n\r\nThanks again.\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://urldefense.proofpoint.com/v2/url?u=https-3A__mavrix.onehttps-3A__mavrix.onehttps-3A__mavrix.one&d=DwMFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=iXBv75Es72cz6XMv0rgcEpUhR-JFBogDUxGNBdBLXeo&m=FDPgschrwD2rVOqDTQ97EnjXGcaF02E3Mb1LJoVmeUmkLoSx2kdsyoFYfg0WWsCJ&s=JFVH2Jy_7niUu3OJTJbcsHRdDEI1d7eotpu7VKZ9QFk&e=>\r\n\r\n\r\n\r\nThe technology areas of interest to the SOF Lethality are those that augment the vision of the user, known broadly as Visual Augmentation Systems (VAS). Technologies should be those that can be incorporated into a packaged size and weight fit for helmet-mounted (~8-24 oz), weapon-mounted (~8-48 oz), or handheld (~24-88 oz) form factors. The VAS program office is interested in technologies associated with the following electromagnetic spectrums: visible, near infrared (NIR), short-wave infrared (SWIR), mid-wave infrared (MWIR), and long-wave infrared (LWIR).\r\n\r\n1. Novel sensor and imaging technologies.\r\n2. Image signal processing software to improve performance of commercial sensors including but not limited\r\nto lower noise, higher dynamic range, super resolution, and lower perceived latency. Power-efficient\r\nhardware enabling this image signal processing while reducing latency is of equal interest.\r\n3. Novel, low-light, reflective band sensor technologies.\r\n4. Novel emissive band sensor technologies.\r\n5. Single-sensor technologies for imaging in both reflective and emissive bands.\r\n6. Low-cost SWIR sensor technologies.\r\n7. Passive range measurement technologies.\r\n8. Passive (without emitting laser energy) fire control and augmented aim point display.\r\n9. Novel display technologies to reduce size and weight of VAS devices.\r\n10. Medium Range and Long Range VAS for weapon-mounted applications to increase lethality at night. There is interest in single-sensor, multi-sensor, fused, or image-intensified solutions.\r\n11. Displays suitable for providing digital information to users wearing analog night vision goggles. There is\r\ninterest in both external displays as well as displays capable of being incorporated into the housing of the\r\nnight vision goggles in-line with the image intensifier.\r\n12. Modular night vision goggle concepts to decrease weight while also:\r\n• increasing field of view, increasing effective depth of field, increasing situational awareness,\r\nincorporating digital displays, expanding wavelength bands beyond traditional image intensifier\r\ntubes\r\n13. Low size, weight, power, and cost electronics to fuse multiple digital sensor streams & display them to the user with minimal latency.\r\n14. Integration of digital solutions to enhance analog imaging systems.\r\n15. Small form factor, low-cost SWIR cameras for detection of common laser rangefinders and laser markers\r\nand designators.\r\n16. Handheld multi-sensor imaging and multi-domain sensing of the user’s environment with a focus on\r\nincreasing lethality.\r\n17. Laser detection/warning technologies.\r\n18. Optical Augmentation Detection/Defeat/Enable devices\r\n19.  Low-cost coolers for MWIR sensors.\r\n20 Event-based sensors and concepts of operation.\r\n21. Broadband enhancements to image intensifier tubes\r\n22. Low-cost, ruggedized, open-standard cables to connect weapon-mounted & body-worn equipment on the SOCOM operator.\r\n23. Novel optical designs to reduce size, weight, and cost without compromising performance\r\n\r\n[X]\r\n\r\n\r\nOn June 5, 2025 at 9:52:49 AM, Gannon Tinsley (gannon_tinsley@vuzix.com<mailto:gannon_tinsley@vuzix.com>) wrote:\r\n\r\nMAVRIX is a national manufacturer of aerospace, defense, and robotics leaders committed to building a sovereign autonomous ecosystem — designed, sourced, and manufactured entirely in the USA.\r\n\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://urldefense.proofpoint.com/v2/url?u=https-3A__aka.ms_JoinTeamsMeeting-3Fomkt-3Den-2DUS&d=DwMFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=iXBv75Es72cz6XMv0rgcEpUhR-JFBogDUxGNBdBLXeo&m=FDPgschrwD2rVOqDTQ97EnjXGcaF02E3Mb1LJoVmeUmkLoSx2kdsyoFYfg0WWsCJ&s=7QhrWOJA5G4OPZUMURQXL610QmY_u0fNYo2Q_PhLIow&e=>\r\nJoin the meeting now<https://urldefense.proofpoint.com/v2/url?u=https-3A__teams.microsoft.com_l_meetup-2Djoin_19-253ameeting-5FZTIxOGNiZDctMjNiMC00OGJlLWE3MDYtMzZiMjMyODA3ZThi-2540thread.v2_0-3Fcontext-3D-257b-2522Tid-2522-253a-2522ece9227b-2D67ef-2D4f9a-2D86a6-2Ddb5502178337-2522-252c-2522Oid-2522-253a-25220602f987-2D96ff-2D46da-2Db19e-2Dbdff9b6206d5-2522-257d&d=DwMFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=iXBv75Es72cz6XMv0rgcEpUhR-JFBogDUxGNBdBLXeo&m=FDPgschrwD2rVOqDTQ97EnjXGcaF02E3Mb1LJoVmeUmkLoSx2kdsyoFYfg0WWsCJ&s=rCmlsPiKdwMgPqzMZydttTlm5IsMMQsRuxj3USk505M&e=>\r\nMeeting ID: 210 336 371 872 0\r\nPasscode: Ae6Wr9D9\r\n________________________________\r\nFor organizers: Meeting options<https://urldefense.proofpoint.com/v2/url?u=https-3A__teams.microsoft.com_meetingOptions_-3ForganizerId-3D0602f987-2D96ff-2D46da-2Db19e-2Dbdff9b6206d5-26tenantId-3Dece9227b-2D67ef-2D4f9a-2D86a6-2Ddb5502178337-26threadId-3D19-5Fmeeting-5FZTIxOGNiZDctMjNiMC00OGJlLWE3MDYtMzZiMjMyODA3ZThi-40thread.v2-26messageId-3D0-26language-3Den-2DUS&d=DwMFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=iXBv75Es72cz6XMv0rgcEpUhR-JFBogDUxGNBdBLXeo&m=FDPgschrwD2rVOqDTQ97EnjXGcaF02E3Mb1LJoVmeUmkLoSx2kdsyoFYfg0WWsCJ&s=mkkPDwgMHGvrnrOYytD0_vOLl81-N9OwjlcU6p7BABQ&e=>\r\n________________________________________________________________________________\r\nThis message may contain confidential information belonging to the Vuzix Corporation and is intended only for the named recipients. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. E-mail transmission cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, destroyed, arrive late or incomplete, or contain viruses. The sender therefore does not accept liability for any errors or omissions in the contents of this message, which arise as a result of e-mail transmission. If verification is required please request a hard-copy version.\r\nThis message may contain confidential information belonging to the Vuzix Corporation and is intended only for the named recipients. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. E-mail transmission cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, destroyed, arrive late or incomplete, or contain viruses. The sender therefore does not accept liability for any errors or omissions in the contents of this message, which arise as a result of e-mail transmission. If verification is required please request a hard-copy version.\r\n',0,0,0,0,0,0,'2025-06-06 20:34:47','2025-12-09 19:12:41','2025-12-09 19:12:41','2025-12-09 19:12:41',NULL,NULL,NULL),
(357,4,'<CANkMA8USSj-EiPqf4oOpbJyLvwxmbYRbhSDwdu7tdMLWvr24eQ@mail.gmail.com>',NULL,NULL,'Follow Up','avalkenburg@strategic-logix.com','Andrew Valkenburg','<div dir=\"ltr\"><div>Rick,</div><div><br></div><div>Thanks for the time today. Let us know when you would need to meet again.</div><div class=\"gmail_chip gmail_drive_chip\" style=\"width:386px;height:20px;max-height:20px;background-color:rgb(245,245,245);margin:6px 0px;padding:10px;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;font-size-adjust:none;font-kerning:auto;font-feature-settings:normal;font-stretch:normal;font-size:14px;line-height:20px;font-family:&quot;Google Sans&quot;,sans-serif;border:1px solid rgb(221,221,221)\"><a href=\"https://drive.google.com/file/d/16H6poZpuTb63Sya7UXj_PMFc_s2c7BVU/view?usp=drive_web\" target=\"_blank\" style=\"color:rgb(32,33,36);display:inline-block;max-width:356px;overflow:hidden;text-overflow:ellipsis;text-decoration-line:none;border:none\" aria-label=\"Pitch Deck_Final (1) (1).pdf\"><img style=\"vertical-align: text-bottom; border: none; padding-right: 10px; height: 20px;\" alt=\"\" src=\"https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png\"> <span dir=\"ltr\" style=\"vertical-align:bottom\">Pitch Deck_Final (1) (1).pdf</span></a><img src=\"//ssl.gstatic.com/ui/v1/icons/mail/gm3/1x/close_baseline_nv700_20dp.png\" class=\"gmail_chip_remove\" aria-label=\"Remove attachment\" style=\"display:none; padding-left: 10px; cursor: pointer; width: 20px; height: 20px; float: right; \"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p><font color=\"#000000\"><b><a href=\"https://strategic-logix.com\" target=\"_blank\">VISIT OUR WEBSITE</a></b></font></p><p><strong><font color=\"#000000\"><br></font></strong></p><p><strong><font color=\"#000000\">Sincerely,</font></strong></p><p><font color=\"#000000\">Andrew Valkenburg<br>Chief Operations Officer, Strategic Logix LLC<br>484-225-9132<br><a rel=\"noopener\">avalkenburg@strategic-logix.com</a></font></p></div></div></div>','Rick,\r\n\r\nThanks for the time today. Let us know when you would need to meet again.\r\n Pitch Deck_Final (1) (1).pdf\r\n<https://drive.google.com/file/d/16H6poZpuTb63Sya7UXj_PMFc_s2c7BVU/view?usp=drive_web>\r\n\r\n-- \r\n\r\n*VISIT OUR WEBSITE <https://strategic-logix.com>*\r\n\r\n\r\n*Sincerely,*\r\n\r\nAndrew Valkenburg\r\nChief Operations Officer, Strategic Logix LLC\r\n484-225-9132\r\navalkenburg@strategic-logix.com',0,0,0,0,0,0,'2025-06-06 22:14:56','2025-12-09 19:12:41','2025-12-09 19:12:41','2025-12-09 19:12:41',NULL,NULL,NULL),
(358,4,'<6845df32ce9a0_115b0812402a@fathom-sidekiq-default-3-54bd94bc4-khbkj.mail>',NULL,NULL,'Jarrett Brownfield  wants to record your upcoming meeting','no-reply@fathom.video','Fathom','<html>\r\n  <head>\r\n    <title></title>\r\n    <style type=\"text/css\">\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n      table,\r\n      td {\r\n        border-collapse: collapse;\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <style type=\"text/css\">\r\n      @media only screen and (min-width: 480px) {\r\n        .mj-column-per-100 {\r\n          width: 100% !important;\r\n          max-width: 100%;\r\n        }\r\n      }\r\n    </style>\r\n    <style type=\"text/css\">\r\n      @media only screen and (max-width: 480px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .body {\r\n        background: #1d1e1f;\r\n      }\r\n      h1 {\r\n        margin: 0;\r\n        font-size: 24px;\r\n        font-weight: bold;\r\n      }\r\n      .header,\r\n      .footer {\r\n        padding: 10px 30px;\r\n      }\r\n      .padding-top {\r\n        background: #f5f5f5;\r\n        padding: 12px;\r\n      }\r\n    </style>\r\n  </head>\r\n  <body style=\"background-color: #1d1e1f\">\r\n    <div style=\"background-color: #1d1e1f\" class=\"c--email-body\">\r\n      <div style=\"margin: 0px auto; max-width: 580px\">\r\n        <table\r\n          style=\"width: 100%\"\r\n          role=\"presentation\"\r\n          cellspacing=\"0\"\r\n          cellpadding=\"0\"\r\n          border=\"0\"\r\n          align=\"center\">\r\n          <tbody>\r\n            <tr>\r\n              <td\r\n                style=\"\r\n                  direction: ltr;\r\n                  font-size: 0px;\r\n                  padding: 0px;\r\n                  text-align: center;\r\n                \">\r\n                <div style=\"margin: 0px auto; max-width: 580px\">\r\n                  <table\r\n                    style=\"width: 100%\"\r\n                    role=\"presentation\"\r\n                    cellspacing=\"0\"\r\n                    cellpadding=\"0\"\r\n                    border=\"0\"\r\n                    align=\"center\">\r\n                    <tbody>\r\n                      <tr>\r\n                        <td\r\n                          style=\"\r\n                            direction: ltr;\r\n                            font-size: 0px;\r\n                            padding: 0px;\r\n                            text-align: center;\r\n                          \">\r\n                          <div\r\n                            style=\"\r\n                              font-size: 0px;\r\n                              text-align: left;\r\n                              direction: ltr;\r\n                              display: inline-block;\r\n                              vertical-align: top;\r\n                              width: 100%;\r\n                            \"\r\n                            class=\"mj-column-per-100 outlook-group-fix\">\r\n                            <table\r\n                              width=\"100%\"\r\n                              role=\"presentation\"\r\n                              cellspacing=\"0\"\r\n                              cellpadding=\"0\"\r\n                              border=\"0\">\r\n                              <tbody>\r\n                                <tr>\r\n                                  <td style=\"vertical-align: top; padding: 0px\">\r\n                                    <table\r\n                                      width=\"100%\"\r\n                                      style=\"\"\r\n                                      role=\"presentation\"\r\n                                      cellspacing=\"0\"\r\n                                      cellpadding=\"0\"\r\n                                      border=\"0\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td\r\n                                            style=\"\r\n                                              font-size: 0px;\r\n                                              padding: 0px;\r\n                                              word-break: break-word;\r\n                                            \"\r\n                                            align=\"left\">\r\n                                            <div\r\n                                              style=\"\r\n                                                font-family: Helvetica, Arial,\r\n                                                  sans-serif;\r\n                                                font-size: 14px;\r\n                                                line-height: 1;\r\n                                                text-align: left;\r\n                                                color: #4c4c4c;\r\n                                              \"></div>\r\n                                          </td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                  </td>\r\n                                </tr>\r\n                              </tbody>\r\n                            </table>\r\n                          </div>\r\n                        </td>\r\n                      </tr>\r\n                    </tbody>\r\n                  </table>\r\n                </div>\r\n\r\n                <div\r\n                  style=\"margin: 0px auto; max-width: 580px\"\r\n                  class=\"c--block c--block-image\">\r\n                  <table\r\n                    style=\"width: 100%\"\r\n                    role=\"presentation\"\r\n                    cellspacing=\"0\"\r\n                    cellpadding=\"0\"\r\n                    border=\"0\"\r\n                    align=\"center\">\r\n                    <tbody>\r\n                      <tr>\r\n                        <td\r\n                          style=\"\r\n                            direction: ltr;\r\n                            font-size: 0px;\r\n                            padding: 8px 30px;\r\n                            text-align: center;\r\n                          \">\r\n                          <div\r\n                            style=\"\r\n                              font-size: 0px;\r\n                              text-align: left;\r\n                              direction: ltr;\r\n                              display: inline-block;\r\n                              vertical-align: top;\r\n                              width: 100%;\r\n                            \"\r\n                            class=\"mj-column-per-100 outlook-group-fix\">\r\n                            <table\r\n                              width=\"100%\"\r\n                              role=\"presentation\"\r\n                              cellspacing=\"0\"\r\n                              cellpadding=\"0\"\r\n                              border=\"0\">\r\n                              <tbody>\r\n                                <tr>\r\n                                  <td\r\n                                    style=\"\r\n                                      vertical-align: top;\r\n                                      padding: 10px 0px;\r\n                                    \">\r\n                                    <table\r\n                                      width=\"100%\"\r\n                                      style=\"\"\r\n                                      role=\"presentation\"\r\n                                      cellspacing=\"0\"\r\n                                      cellpadding=\"0\"\r\n                                      border=\"0\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td\r\n                                            style=\"\r\n                                              font-size: 0px;\r\n                                              padding: 0px;\r\n                                              word-break: break-word;\r\n                                            \"\r\n                                            align=\"center\">\r\n                                            <table\r\n                                              style=\"\r\n                                                border-collapse: collapse;\r\n                                                border-spacing: 0px;\r\n                                              \"\r\n                                              role=\"presentation\"\r\n                                              cellspacing=\"0\"\r\n                                              cellpadding=\"0\"\r\n                                              border=\"0\">\r\n                                              <tbody>\r\n                                                <tr>\r\n                                                  <td style=\"width: 200px\">\r\n                                                    <a\r\n                                                      href=\"https://fathom.video\">\r\n                                                      <img\r\n                                                        width=\"200\"\r\n                                                        style=\"\r\n                                                          border: 0;\r\n                                                          display: block;\r\n                                                          outline: none;\r\n                                                          text-decoration: none;\r\n                                                          height: auto;\r\n                                                          width: 100%;\r\n                                                          font-size: 13px;\r\n                                                        \"\r\n                                                        src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/request-recording-consent/fathom-logo.png\"\r\n                                                        height=\"auto\"\r\n                                                        alt=\"\">\r\n                                                    </a>\r\n                                                  </td>\r\n                                                </tr>\r\n                                              </tbody>\r\n                                            </table>\r\n                                          </td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                  </td>\r\n                                </tr>\r\n                              </tbody>\r\n                            </table>\r\n                          </div>\r\n                        </td>\r\n                      </tr>\r\n                    </tbody>\r\n                  </table>\r\n                </div>\r\n\r\n                <div\r\n                  style=\"margin: 0px auto; max-width: 580px\"\r\n                  class=\"c--block c--block-text\">\r\n                  <table\r\n                    style=\"width: 100%\"\r\n                    role=\"presentation\"\r\n                    cellspacing=\"0\"\r\n                    cellpadding=\"0\"\r\n                    border=\"0\"\r\n                    align=\"center\">\r\n                    <tbody>\r\n                      <tr>\r\n                        <td\r\n                          style=\"\r\n                            direction: ltr;\r\n                            font-size: 0px;\r\n                            padding: 8px 30px;\r\n                            text-align: center;\r\n                          \">\r\n                          <div\r\n                            style=\"\r\n                              font-size: 0px;\r\n                              text-align: left;\r\n                              direction: ltr;\r\n                              display: inline-block;\r\n                              vertical-align: top;\r\n                              width: 100%;\r\n                            \"\r\n                            class=\"mj-column-per-100 outlook-group-fix\">\r\n                            <table\r\n                              width=\"100%\"\r\n                              role=\"presentation\"\r\n                              cellspacing=\"0\"\r\n                              cellpadding=\"0\"\r\n                              border=\"0\">\r\n                              <tbody>\r\n                                <tr>\r\n                                  <td\r\n                                    style=\"\r\n                                      background-color: transparent;\r\n                                      vertical-align: top;\r\n                                      padding: 4px 0px;\r\n                                    \">\r\n                                    <table\r\n                                      width=\"100%\"\r\n                                      style=\"\"\r\n                                      role=\"presentation\"\r\n                                      cellspacing=\"0\"\r\n                                      cellpadding=\"0\"\r\n                                      border=\"0\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td\r\n                                            style=\"\r\n                                              font-size: 0px;\r\n                                              padding: 0px;\r\n                                              word-break: break-word;\r\n                                            \"\r\n                                            class=\"c--text-text\"\r\n                                            align=\"center\">\r\n                                            <div\r\n                                              style=\"\r\n                                                font-family: Helvetica, Arial,\r\n                                                  sans-serif;\r\n                                                font-size: 14px;\r\n                                                line-height: 18px;\r\n                                                text-align: center;\r\n                                                color: #4c4c4c;\r\n                                              \">\r\n                                              <span\r\n                                                style=\"color: #a4a5a5\"\r\n                                                class=\"text-color\">Jarrett</span><span\r\n                                                style=\"color: #a4a5a5\"\r\n                                                class=\"text-color\">\r\n                                                is using Fathom to record Zoom\r\n                                                meetings and<br>streamline the\r\n                                                note-taking process.</span>\r\n                                            </div>\r\n                                          </td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                  </td>\r\n                                </tr>\r\n                              </tbody>\r\n                            </table>\r\n                          </div>\r\n                        </td>\r\n                      </tr>\r\n                    </tbody>\r\n                  </table>\r\n                </div>\r\n\r\n                <div\r\n                  style=\"margin: 0px auto; max-width: 580px\"\r\n                  class=\"c--block c--block-text\">\r\n                  <table\r\n                    style=\"width: 100%\"\r\n                    role=\"presentation\"\r\n                    cellspacing=\"0\"\r\n                    cellpadding=\"0\"\r\n                    border=\"0\"\r\n                    align=\"center\">\r\n                    <tbody>\r\n                      <tr>\r\n                        <td\r\n                          style=\"\r\n                            direction: ltr;\r\n                            font-size: 0px;\r\n                            padding: 8px 30px;\r\n                            text-align: center;\r\n                          \">\r\n                          <div\r\n                            style=\"\r\n                              font-size: 0px;\r\n                              text-align: left;\r\n                              direction: ltr;\r\n                              display: inline-block;\r\n                              vertical-align: top;\r\n                              width: 100%;\r\n                            \"\r\n                            class=\"mj-column-per-100 outlook-group-fix\">\r\n                            <table\r\n                              width=\"100%\"\r\n                              role=\"presentation\"\r\n                              cellspacing=\"0\"\r\n                              cellpadding=\"0\"\r\n                              border=\"0\">\r\n                              <tbody>\r\n                                <tr>\r\n                                  <td\r\n                                    style=\"\r\n                                      background-color: transparent;\r\n                                      vertical-align: top;\r\n                                      padding: 4px 0px;\r\n                                    \">\r\n                                    <table\r\n                                      width=\"100%\"\r\n                                      style=\"\"\r\n                                      role=\"presentation\"\r\n                                      cellspacing=\"0\"\r\n                                      cellpadding=\"0\"\r\n                                      border=\"0\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td\r\n                                            style=\"\r\n                                              font-size: 0px;\r\n                                              padding: 0px;\r\n                                              word-break: break-word;\r\n                                            \"\r\n                                            class=\"c--text-text\"\r\n                                            align=\"center\">\r\n                                            <div\r\n                                              style=\"\r\n                                                font-family: Helvetica, Arial,\r\n                                                  sans-serif;\r\n                                                font-size: 14px;\r\n                                                line-height: 18px;\r\n                                                text-align: center;\r\n                                                color: #4c4c4c;\r\n                                              \">\r\n                                              <span\r\n                                                style=\"color: #ffffff\"\r\n                                                class=\"text-color\"><strong>Is it okay if\r\n                                                </strong></span><span\r\n                                                style=\"color: #ffffff\"\r\n                                                class=\"text-color\"><strong>Jarrett</strong></span><span\r\n                                                style=\"color: #ffffff\"\r\n                                                class=\"text-color\"><strong>\r\n                                                  records your meeting\r\n                                                  tomorrow?</strong></span>\r\n                                            </div>\r\n                                          </td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                  </td>\r\n                                </tr>\r\n                              </tbody>\r\n                            </table>\r\n                          </div>\r\n                        </td>\r\n                      </tr>\r\n                    </tbody>\r\n                  </table>\r\n                </div>\r\n\r\n                <div\r\n                  style=\"margin: 0px auto; max-width: 580px\"\r\n                  class=\"c--block c--block-action\">\r\n                  <table\r\n                    style=\"width: 100%\"\r\n                    role=\"presentation\"\r\n                    cellspacing=\"0\"\r\n                    cellpadding=\"0\"\r\n                    border=\"0\"\r\n                    align=\"center\">\r\n                    <tbody>\r\n                      <tr>\r\n                        <td\r\n                          style=\"\r\n                            direction: ltr;\r\n                            font-size: 0px;\r\n                            padding: 8px 30px;\r\n                            text-align: center;\r\n                          \">\r\n                          <div\r\n                            style=\"\r\n                              font-size: 0px;\r\n                              text-align: left;\r\n                              direction: ltr;\r\n                              display: inline-block;\r\n                              vertical-align: top;\r\n                              width: 100%;\r\n                            \"\r\n                            class=\"mj-column-per-100 outlook-group-fix\">\r\n                            <table\r\n                              width=\"100%\"\r\n                              role=\"presentation\"\r\n                              cellspacing=\"0\"\r\n                              cellpadding=\"0\"\r\n                              border=\"0\">\r\n                              <tbody>\r\n                                <tr>\r\n                                  <td style=\"vertical-align: top; padding: 0px\">\r\n                                    <table\r\n                                      width=\"100%\"\r\n                                      style=\"\"\r\n                                      role=\"presentation\"\r\n                                      cellspacing=\"0\"\r\n                                      cellpadding=\"0\"\r\n                                      border=\"0\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td\r\n                                            style=\"\r\n                                              font-size: 0px;\r\n                                              padding: 8px 0px;\r\n                                              word-break: break-word;\r\n                                            \"\r\n                                            class=\"primary\"\r\n                                            align=\"center\">\r\n                                            <table\r\n                                              style=\"\r\n                                                border-collapse: separate;\r\n                                                line-height: 100%;\r\n                                              \"\r\n                                              role=\"presentation\"\r\n                                              cellspacing=\"0\"\r\n                                              cellpadding=\"0\"\r\n                                              border=\"0\">\r\n                                              <tbody>\r\n                                                <tr>\r\n                                                  <td\r\n                                                    valign=\"middle\"\r\n                                                    style=\"\r\n                                                      border: none;\r\n                                                      border-radius: 4px;\r\n                                                      cursor: auto;\r\n                                                      mso-padding-alt: 10px 20px;\r\n                                                      background: #00beff;\r\n                                                    \"\r\n                                                    role=\"presentation\"\r\n                                                    bgcolor=\"#00beff\"\r\n                                                    align=\"center\">\r\n                                                    <a\r\n                                                      style=\"\r\n                                                        display: inline-block;\r\n                                                        background: #00beff;\r\n                                                        color: #ffffff;\r\n                                                        font-family: Helvetica,\r\n                                                          Arial, sans-serif;\r\n                                                        font-size: 14px;\r\n                                                        font-weight: normal;\r\n                                                        line-height: 120%;\r\n                                                        margin: 0;\r\n                                                        text-decoration: none;\r\n                                                        text-transform: none;\r\n                                                        padding: 10px 20px;\r\n                                                        mso-padding-alt: 0px;\r\n                                                        border-radius: 4px;\r\n                                                      \"\r\n                                                      href=\"https://fathom.video/attendees/consent/eyJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJmYXRob20udmlkZW8iLCJzdWIiOiJyZWNvcmRpbmctY29uc2VudCIsImV4cCI6MTc0OTU4MjM4NiwiYXR0ZW5kZWVfaWQiOjE1MjI4MDIxNzd9.5eh9SpM7jI8U3oN8AkkecFIzpXDTA3g7vjPN5l23L4M\">\r\n                                                      YES, I consent to being\r\n                                                      recorded\r\n                                                    </a>\r\n                                                  </td>\r\n                                                </tr>\r\n                                              </tbody>\r\n                                            </table>\r\n                                          </td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                  </td>\r\n                                </tr>\r\n                              </tbody>\r\n                            </table>\r\n                          </div>\r\n                        </td>\r\n                      </tr>\r\n                    </tbody>\r\n                  </table>\r\n                </div>\r\n\r\n                <div\r\n                  style=\"margin: 0px auto; max-width: 580px\"\r\n                  class=\"c--block c--block-text\">\r\n                  <table\r\n                    style=\"width: 100%\"\r\n                    role=\"presentation\"\r\n                    cellspacing=\"0\"\r\n                    cellpadding=\"0\"\r\n                    border=\"0\"\r\n                    align=\"center\">\r\n                    <tbody>\r\n                      <tr>\r\n                        <td\r\n                          style=\"\r\n                            direction: ltr;\r\n                            font-size: 0px;\r\n                            padding: 8px 30px;\r\n                            text-align: center;\r\n                          \">\r\n                          <div\r\n                            style=\"\r\n                              font-size: 0px;\r\n                              text-align: left;\r\n                              direction: ltr;\r\n                              display: inline-block;\r\n                              vertical-align: top;\r\n                              width: 100%;\r\n                            \"\r\n                            class=\"mj-column-per-100 outlook-group-fix\">\r\n                            <table\r\n                              width=\"100%\"\r\n                              role=\"presentation\"\r\n                              cellspacing=\"0\"\r\n                              cellpadding=\"0\"\r\n                              border=\"0\">\r\n                              <tbody>\r\n                                <tr>\r\n                                  <td\r\n                                    style=\"\r\n                                      background-color: transparent;\r\n                                      vertical-align: top;\r\n                                      padding: 4px 0px;\r\n                                    \">\r\n                                    <table\r\n                                      width=\"100%\"\r\n                                      style=\"\"\r\n                                      role=\"presentation\"\r\n                                      cellspacing=\"0\"\r\n                                      cellpadding=\"0\"\r\n                                      border=\"0\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td\r\n                                            style=\"\r\n                                              font-size: 0px;\r\n                                              padding: 0px;\r\n                                              word-break: break-word;\r\n                                            \"\r\n                                            class=\"c--text-text\"\r\n                                            align=\"center\">\r\n                                            <div\r\n                                              style=\"\r\n                                                font-family: Helvetica, Arial,\r\n                                                  sans-serif;\r\n                                                font-size: 14px;\r\n                                                line-height: 18px;\r\n                                                text-align: center;\r\n                                                color: #4c4c4c;\r\n                                              \">\r\n                                              <a\r\n                                                href=\"https://fathom.video/attendees/consent/eyJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJmYXRob20udmlkZW8iLCJzdWIiOiJyZWNvcmRpbmctY29uc2VudCIsImV4cCI6MTc0OTU4MjM4NiwiYXR0ZW5kZWVfaWQiOjE1MjI4MDIxNzd9.5eh9SpM7jI8U3oN8AkkecFIzpXDTA3g7vjPN5l23L4M?is_recording_requested=1\"\r\n                                                class=\"c--link\"><span\r\n                                                  style=\"color: #00beff\"\r\n                                                  class=\"text-color\"><u>I\'d also like access to the\r\n                                                    recording</u></span></a>\r\n                                            </div>\r\n                                          </td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                  </td>\r\n                                </tr>\r\n                              </tbody>\r\n                            </table>\r\n                          </div>\r\n                        </td>\r\n                      </tr>\r\n                    </tbody>\r\n                  </table>\r\n                </div>\r\n\r\n                <div\r\n                  style=\"margin: 0px auto; max-width: 580px\"\r\n                  class=\"c--block c--block-text\">\r\n                  <table\r\n                    style=\"width: 100%\"\r\n                    role=\"presentation\"\r\n                    cellspacing=\"0\"\r\n                    cellpadding=\"0\"\r\n                    border=\"0\"\r\n                    align=\"center\">\r\n                    <tbody>\r\n                      <tr>\r\n                        <td\r\n                          style=\"\r\n                            direction: ltr;\r\n                            font-size: 0px;\r\n                            padding: 8px 30px;\r\n                            text-align: center;\r\n                          \">\r\n                          <div\r\n                            style=\"\r\n                              font-size: 0px;\r\n                              text-align: left;\r\n                              direction: ltr;\r\n                              display: inline-block;\r\n                              vertical-align: top;\r\n                              width: 100%;\r\n                            \"\r\n                            class=\"mj-column-per-100 outlook-group-fix\">\r\n                            <table\r\n                              width=\"100%\"\r\n                              role=\"presentation\"\r\n                              cellspacing=\"0\"\r\n                              cellpadding=\"0\"\r\n                              border=\"0\">\r\n                              <tbody>\r\n                                <tr>\r\n                                  <td\r\n                                    style=\"\r\n                                      background-color: transparent;\r\n                                      vertical-align: top;\r\n                                      padding: 4px 0px;\r\n                                    \">\r\n                                    <table\r\n                                      width=\"100%\"\r\n                                      style=\"\"\r\n                                      role=\"presentation\"\r\n                                      cellspacing=\"0\"\r\n                                      cellpadding=\"0\"\r\n                                      border=\"0\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td\r\n                                            style=\"\r\n                                              font-size: 0px;\r\n                                              padding: 0px;\r\n                                              word-break: break-word;\r\n                                            \"\r\n                                            class=\"c--text-text\"\r\n                                            align=\"center\">\r\n                                            <div\r\n                                              style=\"\r\n                                                font-family: Helvetica, Arial,\r\n                                                  sans-serif;\r\n                                                font-size: 14px;\r\n                                                line-height: 18px;\r\n                                                text-align: center;\r\n                                                color: #4c4c4c;\r\n                                              \">\r\n                                              <a\r\n                                                href=\"https://fathom.video/attendees/decline_consent/eyJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJmYXRob20udmlkZW8iLCJzdWIiOiJyZWNvcmRpbmctY29uc2VudCIsImV4cCI6MTc0OTU4MjM4NiwiYXR0ZW5kZWVfaWQiOjE1MjI4MDIxNzd9.5eh9SpM7jI8U3oN8AkkecFIzpXDTA3g7vjPN5l23L4M\"\r\n                                                class=\"c--link\"><span\r\n                                                  style=\"color: #1cbfff\"\r\n                                                  class=\"text-color\"><u>No, I\'d prefer not to be\r\n                                                    recorded</u></span></a>\r\n                                            </div>\r\n                                          </td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                  </td>\r\n                                </tr>\r\n                              </tbody>\r\n                            </table>\r\n                          </div>\r\n                        </td>\r\n                      </tr>\r\n                    </tbody>\r\n                  </table>\r\n                </div>\r\n\r\n                <div\r\n                  style=\"margin: 0px auto; max-width: 580px\"\r\n                  class=\"c--block c--block-divider\">\r\n                  <table\r\n                    style=\"width: 100%\"\r\n                    role=\"presentation\"\r\n                    cellspacing=\"0\"\r\n                    cellpadding=\"0\"\r\n                    border=\"0\"\r\n                    align=\"center\">\r\n                    <tbody>\r\n                      <tr>\r\n                        <td\r\n                          style=\"\r\n                            direction: ltr;\r\n                            font-size: 0px;\r\n                            padding: 8px 30px;\r\n                            text-align: center;\r\n                          \">\r\n                          <div\r\n                            style=\"\r\n                              font-size: 0px;\r\n                              text-align: left;\r\n                              direction: ltr;\r\n                              display: inline-block;\r\n                              vertical-align: top;\r\n                              width: 100%;\r\n                            \"\r\n                            class=\"mj-column-per-100 outlook-group-fix\">\r\n                            <table\r\n                              width=\"100%\"\r\n                              role=\"presentation\"\r\n                              cellspacing=\"0\"\r\n                              cellpadding=\"0\"\r\n                              border=\"0\">\r\n                              <tbody>\r\n                                <tr>\r\n                                  <td\r\n                                    style=\"\r\n                                      vertical-align: top;\r\n                                      padding: 10px 0px;\r\n                                    \">\r\n                                    <table\r\n                                      width=\"100%\"\r\n                                      style=\"\"\r\n                                      role=\"presentation\"\r\n                                      cellspacing=\"0\"\r\n                                      cellpadding=\"0\"\r\n                                      border=\"0\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td\r\n                                            style=\"\r\n                                              background: #ffffff;\r\n                                              font-size: 0px;\r\n                                              padding: 0px;\r\n                                              word-break: break-word;\r\n                                            \">\r\n                                            <p\r\n                                              style=\"\r\n                                                border-top: solid 1px #cbd5e0;\r\n                                                font-size: 1;\r\n                                                margin: 0px auto;\r\n                                                width: 100%;\r\n                                              \"></p>\r\n                                          </td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                  </td>\r\n                                </tr>\r\n                              </tbody>\r\n                            </table>\r\n                          </div>\r\n                        </td>\r\n                      </tr>\r\n                    </tbody>\r\n                  </table>\r\n                </div>\r\n\r\n                <div\r\n                  style=\"margin: 0px auto; max-width: 580px\"\r\n                  class=\"c--block c--block-text\">\r\n                  <table\r\n                    style=\"width: 100%\"\r\n                    role=\"presentation\"\r\n                    cellspacing=\"0\"\r\n                    cellpadding=\"0\"\r\n                    border=\"0\"\r\n                    align=\"center\">\r\n                    <tbody>\r\n                      <tr>\r\n                        <td\r\n                          style=\"\r\n                            direction: ltr;\r\n                            font-size: 0px;\r\n                            padding: 8px 30px;\r\n                            text-align: center;\r\n                          \">\r\n                          <div\r\n                            style=\"\r\n                              font-size: 0px;\r\n                              text-align: left;\r\n                              direction: ltr;\r\n                              display: inline-block;\r\n                              vertical-align: top;\r\n                              width: 100%;\r\n                            \"\r\n                            class=\"mj-column-per-100 outlook-group-fix\">\r\n                            <table\r\n                              width=\"100%\"\r\n                              role=\"presentation\"\r\n                              cellspacing=\"0\"\r\n                              cellpadding=\"0\"\r\n                              border=\"0\">\r\n                              <tbody>\r\n                                <tr>\r\n                                  <td\r\n                                    style=\"\r\n                                      background-color: transparent;\r\n                                      vertical-align: top;\r\n                                      padding: 4px 0px;\r\n                                    \">\r\n                                    <table\r\n                                      width=\"100%\"\r\n                                      style=\"\"\r\n                                      role=\"presentation\"\r\n                                      cellspacing=\"0\"\r\n                                      cellpadding=\"0\"\r\n                                      border=\"0\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td\r\n                                            style=\"\r\n                                              font-size: 0px;\r\n                                              padding: 0px;\r\n                                              word-break: break-word;\r\n                                            \"\r\n                                            class=\"c--text-subtext\"\r\n                                            align=\"center\">\r\n                                            <div\r\n                                              style=\"\r\n                                                font-family: Helvetica, Arial,\r\n                                                  sans-serif;\r\n                                                font-size: 11px;\r\n                                                line-height: 15px;\r\n                                                text-align: center;\r\n                                                color: #8f8f8f;\r\n                                              \">\r\n                                              <a\r\n                                                href=\"https://fathom.video\"\r\n                                                class=\"c--link\"><span\r\n                                                  style=\"color: #00beff\"\r\n                                                  class=\"text-color\"><u>Fathom</u></span></a>\r\n                                              <span\r\n                                                style=\"color: #a4a5a5\"\r\n                                                class=\"text-color\">takes security &amp; privacy\r\n                                                seriously. In accordance with\r\n                                                our</span>\r\n                                              <a\r\n                                                href=\"https://fathom.video/privacy\"\r\n                                                class=\"c--link\"><span\r\n                                                  style=\"color: #00beff\"\r\n                                                  class=\"text-color\"><u>Privacy Policy</u></span></a>,\r\n                                              <span\r\n                                                style=\"color: #a4a5a5\"\r\n                                                class=\"text-color\">your<br>personal information\r\n                                                or recordings will never be sold\r\n                                                to 3rd parties.<br><br>If\r\n                                                you have any questions or\r\n                                                concerns, please reply to this\r\n                                                email.</span>\r\n                                            </div>\r\n                                          </td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                  </td>\r\n                                </tr>\r\n                              </tbody>\r\n                            </table>\r\n                          </div>\r\n                        </td>\r\n                      </tr>\r\n                    </tbody>\r\n                  </table>\r\n                </div>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </div>\r\n\r\n      <div style=\"margin: 0px auto; max-width: 580px\" class=\"c--email-footer\">\r\n        <table\r\n          style=\"width: 100%\"\r\n          role=\"presentation\"\r\n          cellspacing=\"0\"\r\n          cellpadding=\"0\"\r\n          border=\"0\"\r\n          align=\"center\">\r\n          <tbody>\r\n            <tr>\r\n              <td\r\n                style=\"\r\n                  direction: ltr;\r\n                  font-size: 0px;\r\n                  padding: 0px;\r\n                  text-align: center;\r\n                \">\r\n                <div style=\"margin: 0px auto; max-width: 580px\">\r\n                  <table\r\n                    style=\"width: 100%\"\r\n                    role=\"presentation\"\r\n                    cellspacing=\"0\"\r\n                    cellpadding=\"0\"\r\n                    border=\"0\"\r\n                    align=\"center\">\r\n                    <tbody>\r\n                      <tr>\r\n                        <td\r\n                          style=\"\r\n                            direction: ltr;\r\n                            font-size: 0px;\r\n                            padding: 0px;\r\n                            text-align: center;\r\n                          \">\r\n                          <div\r\n                            style=\"\r\n                              font-size: 0px;\r\n                              text-align: left;\r\n                              direction: ltr;\r\n                              display: inline-block;\r\n                              vertical-align: top;\r\n                              width: 100%;\r\n                            \"\r\n                            class=\"mj-column-per-100 outlook-group-fix\">\r\n                            <table\r\n                              width=\"100%\"\r\n                              role=\"presentation\"\r\n                              cellspacing=\"0\"\r\n                              cellpadding=\"0\"\r\n                              border=\"0\">\r\n                              <tbody>\r\n                                <tr>\r\n                                  <td style=\"vertical-align: top; padding: 0px\">\r\n                                    <table\r\n                                      width=\"100%\"\r\n                                      style=\"\"\r\n                                      role=\"presentation\"\r\n                                      cellspacing=\"0\"\r\n                                      cellpadding=\"0\"\r\n                                      border=\"0\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td\r\n                                            style=\"\r\n                                              font-size: 0px;\r\n                                              padding: 0px;\r\n                                              word-break: break-word;\r\n                                            \"\r\n                                            align=\"left\">\r\n                                            <div\r\n                                              style=\"\r\n                                                font-family: Helvetica, Arial,\r\n                                                  sans-serif;\r\n                                                font-size: 14px;\r\n                                                line-height: 1;\r\n                                                text-align: left;\r\n                                                color: #4c4c4c;\r\n                                              \"></div>\r\n                                          </td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                  </td>\r\n                                </tr>\r\n                              </tbody>\r\n                            </table>\r\n                          </div>\r\n                        </td>\r\n                      </tr>\r\n                    </tbody>\r\n                  </table>\r\n                </div>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </div>\r\n\r\n      <div class=\"frame-content\"></div>\r\n    </div>\r\n  </body>\r\n</html>\r\n','\r\n  \r\n    \r\n    \r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n      table,\r\n      td {\r\n        border-collapse: collapse;\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    \r\n    \r\n      @media only screen and (min-width: 480px) {\r\n        .mj-column-per-100 {\r\n          width: 100% !important;\r\n          max-width: 100%;\r\n        }\r\n      }\r\n    \r\n    \r\n      @media only screen and (max-width: 480px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    \r\n    \r\n      .body {\r\n        background: #1d1e1f;\r\n      }\r\n      h1 {\r\n        margin: 0;\r\n        font-size: 24px;\r\n        font-weight: bold;\r\n      }\r\n      .header,\r\n      .footer {\r\n        padding: 10px 30px;\r\n      }\r\n      .padding-top {\r\n        background: #f5f5f5;\r\n        padding: 12px;\r\n      }\r\n    \r\n  \r\n  \r\n    \r\n      \r\n        \r\n          \r\n            \r\n              \r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            \r\n                              \r\n                                \r\n                                  \r\n                                    \r\n                                      \r\n                                        \r\n                                          \r\n                                            \r\n                                          \r\n                                        \r\n                                      \r\n                                    \r\n                                  \r\n                                \r\n                              \r\n                            \r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n\r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            \r\n                              \r\n                                \r\n                                  \r\n                                    \r\n                                      \r\n                                        \r\n                                          \r\n                                            \r\n                                              \r\n                                                \r\n                                                  \r\n                                                    \r\n                                                      \r\n                                                    \r\n                                                  \r\n                                                \r\n                                              \r\n                                            \r\n                                          \r\n                                        \r\n                                      \r\n                                    \r\n                                  \r\n                                \r\n                              \r\n                            \r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n\r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            \r\n                              \r\n                                \r\n                                  \r\n                                    \r\n                                      \r\n                                        \r\n                                          \r\n                                            \r\n                                              Jarrett\r\n                                                is using Fathom to record Zoom\r\n                                                meetings andstreamline the\r\n                                                note-taking process.\r\n                                            \r\n                                          \r\n                                        \r\n                                      \r\n                                    \r\n                                  \r\n                                \r\n                              \r\n                            \r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n\r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            \r\n                              \r\n                                \r\n                                  \r\n                                    \r\n                                      \r\n                                        \r\n                                          \r\n                                            \r\n                                              Is it okay if\r\n                                                Jarrett\r\n                                                  records your meeting\r\n                                                  tomorrow?\r\n                                            \r\n                                          \r\n                                        \r\n                                      \r\n                                    \r\n                                  \r\n                                \r\n                              \r\n                            \r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n\r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            \r\n                              \r\n                                \r\n                                  \r\n                                    \r\n                                      \r\n                                        \r\n                                          \r\n                                            \r\n                                              \r\n                                                \r\n                                                  \r\n                                                    \r\n                                                      YES, I consent to being\r\n                                                      recorded\r\n                                                    \r\n                                                  \r\n                                                \r\n                                              \r\n                                            \r\n                                          \r\n                                        \r\n                                      \r\n                                    \r\n                                  \r\n                                \r\n                              \r\n                            \r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n\r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            \r\n                              \r\n                                \r\n                                  \r\n                                    \r\n                                      \r\n                                        \r\n                                          \r\n                                            \r\n                                              I\'d also like access to the\r\n                                                    recording\r\n                                            \r\n                                          \r\n                                        \r\n                                      \r\n                                    \r\n                                  \r\n                                \r\n                              \r\n                            \r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n\r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            \r\n                              \r\n                                \r\n                                  \r\n                                    \r\n                                      \r\n                                        \r\n                                          \r\n                                            \r\n                                              No, I\'d prefer not to be\r\n                                                    recorded\r\n                                            \r\n                                          \r\n                                        \r\n                                      \r\n                                    \r\n                                  \r\n                                \r\n                              \r\n                            \r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n\r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            \r\n                              \r\n                                \r\n                                  \r\n                                    \r\n                                      \r\n                                        \r\n                                          \r\n                                            \r\n                                          \r\n                                        \r\n                                      \r\n                                    \r\n                                  \r\n                                \r\n                              \r\n                            \r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n\r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            \r\n                              \r\n                                \r\n                                  \r\n                                    \r\n                                      \r\n                                        \r\n                                          \r\n                                            \r\n                                              Fathom\r\n                                              takes security &amp; privacy\r\n                                                seriously. In accordance with\r\n                                                our\r\n                                              Privacy Policy,\r\n                                              yourpersonal information\r\n                                                or recordings will never be sold\r\n                                                to 3rd parties.If\r\n                                                you have any questions or\r\n                                                concerns, please reply to this\r\n                                                email.\r\n                                            \r\n                                          \r\n                                        \r\n                                      \r\n                                    \r\n                                  \r\n                                \r\n                              \r\n                            \r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n              \r\n            \r\n          \r\n        \r\n      \r\n\r\n      \r\n        \r\n          \r\n            \r\n              \r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            \r\n                              \r\n                                \r\n                                  \r\n                                    \r\n                                      \r\n                                        \r\n                                          \r\n                                            \r\n                                          \r\n                                        \r\n                                      \r\n                                    \r\n                                  \r\n                                \r\n                              \r\n                            \r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n              \r\n            \r\n          \r\n        \r\n      \r\n\r\n      \r\n    \r\n  \r\n\r\n',0,0,0,0,0,0,'2025-06-08 19:06:27','2025-12-09 19:12:42','2025-12-09 19:12:42','2025-12-09 19:12:42',NULL,NULL,NULL),
(359,4,'<CqUrNAWVTKO2twM5Q6LgBQ@geopod-ismtpd-13>',NULL,NULL,'Join DIU For Upcoming Webinars','info@diu.mil','Defense Innovation Unit','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html data-editor-version=\"2\" class=\"sg-campaigns\" xmlns=\"http://www.w3.org/1999/xhtml\">\r\n    <head>\r\n      <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n      <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1\">\r\n      <!--[if !mso]><!-->\r\n      <meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge\">\r\n      <!--<![endif]-->\r\n      <!--[if (gte mso 9)|(IE)]>\r\n      <xml>\r\n        <o:OfficeDocumentSettings>\r\n          <o:AllowPNG/>\r\n          <o:PixelsPerInch>96</o:PixelsPerInch>\r\n        </o:OfficeDocumentSettings>\r\n      </xml>\r\n      <![endif]-->\r\n      <!--[if (gte mso 9)|(IE)]>\r\n  <style type=\"text/css\">\r\n    body {width: 600px;margin: 0 auto;}\r\n    table {border-collapse: collapse;}\r\n    table, td {mso-table-lspace: 0pt;mso-table-rspace: 0pt;}\r\n    img {-ms-interpolation-mode: bicubic;}\r\n  </style>\r\n<![endif]-->\r\n      <style type=\"text/css\">\r\n    body, p, div {\r\n      font-family: arial,helvetica,sans-serif;\r\n      font-size: 14px;\r\n    }\r\n    body {\r\n      color: #000000;\r\n    }\r\n    body a {\r\n      color: #2483c5;\r\n      text-decoration: none;\r\n    }\r\n    p { margin: 0; padding: 0; }\r\n    table.wrapper {\r\n      width:100% !important;\r\n      table-layout: fixed;\r\n      -webkit-font-smoothing: antialiased;\r\n      -webkit-text-size-adjust: 100%;\r\n      -moz-text-size-adjust: 100%;\r\n      -ms-text-size-adjust: 100%;\r\n    }\r\n    img.max-width {\r\n      max-width: 100% !important;\r\n    }\r\n    .column.of-2 {\r\n      width: 50%;\r\n    }\r\n    .column.of-3 {\r\n      width: 33.333%;\r\n    }\r\n    .column.of-4 {\r\n      width: 25%;\r\n    }\r\n    ul ul ul ul  {\r\n      list-style-type: disc !important;\r\n    }\r\n    ol ol {\r\n      list-style-type: lower-roman !important;\r\n    }\r\n    ol ol ol {\r\n      list-style-type: lower-latin !important;\r\n    }\r\n    ol ol ol ol {\r\n      list-style-type: decimal !important;\r\n    }\r\n    @media screen and (max-width:480px) {\r\n      .preheader .rightColumnContent,\r\n      .footer .rightColumnContent {\r\n        text-align: left !important;\r\n      }\r\n      .preheader .rightColumnContent div,\r\n      .preheader .rightColumnContent span,\r\n      .footer .rightColumnContent div,\r\n      .footer .rightColumnContent span {\r\n        text-align: left !important;\r\n      }\r\n      .preheader .rightColumnContent,\r\n      .preheader .leftColumnContent {\r\n        font-size: 80% !important;\r\n        padding: 5px 0;\r\n      }\r\n      table.wrapper-mobile {\r\n        width: 100% !important;\r\n        table-layout: fixed;\r\n      }\r\n      img.max-width {\r\n        height: auto !important;\r\n        max-width: 100% !important;\r\n      }\r\n      a.bulletproof-button {\r\n        display: block !important;\r\n        width: auto !important;\r\n        font-size: 80%;\r\n        padding-left: 0 !important;\r\n        padding-right: 0 !important;\r\n      }\r\n      .columns {\r\n        width: 100% !important;\r\n      }\r\n      .column {\r\n        display: block !important;\r\n        width: 100% !important;\r\n        padding-left: 0 !important;\r\n        padding-right: 0 !important;\r\n        margin-left: 0 !important;\r\n        margin-right: 0 !important;\r\n      }\r\n      .social-icon-column {\r\n        display: inline-block !important;\r\n      }\r\n    }\r\n  </style>\r\n      <!--user entered Head Start--><!--End Head user entered-->\r\n    </head>\r\n    <body>\r\n      <center class=\"wrapper\" data-link-color=\"#2483c5\" data-body-style=\"font-size:14px; font-family:arial,helvetica,sans-serif; color:#000000; background-color:#D6DBE0;\">\r\n        <div class=\"webkit\">\r\n          <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"wrapper\" bgcolor=\"#D6DBE0\">\r\n            <tr>\r\n              <td valign=\"top\" bgcolor=\"#D6DBE0\" width=\"100%\">\r\n                <table width=\"100%\" role=\"content-container\" class=\"outer\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                  <tr>\r\n                    <td width=\"100%\">\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                        <tr>\r\n                          <td>\r\n                            <!--[if mso]>\r\n    <center>\r\n    <table><tr><td width=\"600\">\r\n  <![endif]-->\r\n                                    <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:100%; max-width:600px;\" align=\"center\">\r\n                                      <tr>\r\n                                        <td role=\"modules-container\" style=\"padding:0px 0px 0px 0px; color:#000000; text-align:left;\" bgcolor=\"#FFFFFF\" width=\"100%\" align=\"left\"><table class=\"module preheader preheader-hide\" role=\"module\" data-type=\"preheader\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"display: none !important; mso-hide: all; visibility: hidden; opacity: 0; color: transparent; height: 0; width: 0;\">\r\n    <tr>\r\n      <td role=\"module-content\">\r\n        <p>Learn more about Blue UAS Recognized Assessors and U.S. Export Controls</p>\r\n      </td>\r\n    </tr>\r\n  </table><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"134f41b2-3bf4-480c-9937-79dde88d36ef\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:0px 0px 0px 0px;\" valign=\"top\" align=\"center\">\r\n          \r\n        <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"600\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/3c3e14b4-863b-44ea-a235-44a86550fd55/1920x553.png\"></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"1b08af92-2412-4c76-a0d8-6f27b430103a\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:5px 35px 5px 35px; line-height:40px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><h1 style=\"text-align: center; font-family: inherit\"><span style=\"font-size: 24px\"><strong>Virtual DIU Events Happening This Week</strong></span></h1><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"divider\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"257cee2c-17b5-4325-a24f-cbc103c5619a.1.1.1.2.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 18px 0px 18px;\" role=\"module-content\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\">\r\n          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" height=\"3px\" style=\"line-height:3px; font-size:3px;\">\r\n            <tbody>\r\n              <tr>\r\n                <td style=\"padding:0px 0px 3px 0px;\" bgcolor=\"#1d3d80\"></td>\r\n              </tr>\r\n            </tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#FFFFFF\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"580\" style=\"width:580px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"28568b69-a7b7-4bd3-8bd8-c2a10e194d09.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 0px 0px; line-height:30px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><h2 style=\"text-align: center\"><strong>AMA for Blue UAS Recognized Assessors</strong></h2><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2aa1419f-2625-4e4b-acd9-6d46159c5f1a.1.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 10px 18px 10px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: left\">As part of the <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOeqEy6xY8FKISbKUr2RJAMR5UthVp5T8oqU-2BdEQ9WMhXxB8WflE5J1FhCeC6nIC-2BNwo-2BsUmpm8YH5sP1eFgP12O1NNLh4a4E1rp-2B8I2qruti8wo7C-2FzEIf76LoVfKC6owL5-2BTjX7cfTyCYNqAFzl3k4491qvlBW-2B2LzAnWA6g3z9JNXJdq2KCC9KL049wL5Mw0-3DYNxy_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSXarDloq-2B66-2FxPZAMx27FfP1hIdj-2Ftf6bAHN6oXKHBDWe9nTuz87iYMDiJ549mk-2FM2PzVHFPMmoqJO3-2B-2Fuzpuqmrs4jzTRZtKhlS6IpzhqP6NGWpEmtdj4gZpnHLrvyKEZhK2e-2FuHKr4K-2BR8hp5DMywH0KuLC-2FlcQgyUGztfIHSSpMA3tNw1cIlkJ2ceNXuKfBzyjwOJbd-2B-2Bh-2FaPAxp-2Bf9Ft6pv-2FkG-2Bj8dXJ0vLfAgoffLX5aT2zfQc5ABN0O3PoWvUsUqIuqgPPS29aKiuxY0cDvthtWce-2FW7QGYUBaKjKbTti4JehOM8Sb8gG7S-2FrTTP-2BxeWKpbntSS6zQIl4W381M2FKpCWx2fwTEoOowYwphVPYQ9L9z1yqGQQXMt8QuUwSbPQoUtf5pdP7ySdC8J0sAaT8tKGJ6BFDeosV2YWWOaT4nMy0LmbuMuDWSXFLTK1CcPmigyQMV8UObe72Tv6tueGo5cTj6nAldXKbAHH-2F1AP-2BCYPdCAT5yv4xlvbUDX9XUy2c6gnelgribbagw7eB6f9FV21NR7DVa9-2BV6yv6AOJntFXAWRsQOwhbHUnHknwQxLSwPvzmo8u1NJSXxAbU3SQMfTLI4QhZ5volXjId7AhMgrQbTOIs-2F0avbzkYo-2BGxgmEtGklShfXj0KJC8kwuTD0fhjeOjSNGb9ygMt1lz50Yc-2BsuwCaD3N9n1g9TJr8yqJGmNEN3BPYMLfk6AHOed-2FzOqjwKGxLW-2BlXQFoY2ICmSa17eI-2B4rMU3o-2FgZ-2FzVw-3D-3D\"><u>evolution of Blue UAS announced on May 16, 2025,</u></a> the Defense Innovation Unit (DIU) will establish <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOeBDpbJ0b-2FvkXHeunX6mDGzoo5EsMQ3NyOAW9fJfjt5JEE19ZwMEpVh27NyzsOxptWZEdwB-2FFjU5Nqk6icSUvW4M3rvCuPs6wZgAXHYPvAqQIXdx-2Bp5uC1qixepBnS-2Bjf7wACtZKjlLD4XrCY4JRX4UGHp2Es4h9qeF6PCeq6Wxpj36IvH5XSFL0r0Df716OiuSwB1YUM4GOlNX8sTf-2FTrRmJA64L2TOVTyfBDnBBctiA-3D-3DxliC_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSXarDloq-2B66-2FxPZAMx27FfP1hIdj-2Ftf6bAHN6oXKHBDWe9nTuz87iYMDiJ549mk-2FM2PzVHFPMmoqJO3-2B-2Fuzpuqmrs4jzTRZtKhlS6IpzhqP6NGWpEmtdj4gZpnHLrvyKEZhK2e-2FuHKr4K-2BR8hp5DMywH0KuLC-2FlcQgyUGztfIHSSpMA3tNw1cIlkJ2ceNXuKfBzyjwOJbd-2B-2Bh-2FaPAxp-2Bf9Ft6pv-2FkG-2Bj8dXJ0vLfAgoffLX5aT2zfQc5ABN0O3PoWvUsUqIuqgPPS29aKiuxY0cDvthtWce-2FW7QGYUBaKjKbTti4JehOM8Sb8gG7S-2FrTTP-2BxeWKpbntSS6zQIl4W381M2FKpCWx2fwTEoOowYwphVPYQ9L9z1yqGQQXMt8QuUwSbPQoUtf5pdP7ySdC8J0sAaT8tKGJ6BFDeosV2YWWOaT4nMy0LmbuMuDWSXFLTK1CcPmigyQMV8UObe72Tv6tueGo5cTj6nAldXKbAHH-2F1AP-2BCYPdCAT5yv4xlvbUDX9XUy2c6gnelgribbagw7eB6f9FV21NR7DVa9-2BV6yv6AOJntFXAWRsQOwhbHUnHknwQxLSwPvzmo8u1NJSXxAbVVhfawSHNeGULepYGPWh-2FCBpicwP68kN1RT0PWiJYAcCg-2B0NAMfnZEIAmPmXmmpo4y-2BV1G53A-2BGhpTnAgI2TrWuTbEZ19ujv0zm2JFpOVAzgNP7yVddaPGF2DNOSiKHWIDJUWpdXogGZSxWwkl6T1-2B7BfzMSqhxY7OdaU5TW9Yrw-3D-3D\"><u>Recognized Assessors</u></a>, a group of third-party organizations, to evaluate drone platforms and related components for compliance with the National Defense Authorization Act (NDAA).</div>\r\n<div style=\"font-family: inherit; text-align: left\"><br></div>\r\n<div style=\"font-family: inherit; text-align: left\">Join DIU today, June 9, 2025, at 2pm ET / 11am PT for an<a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILigSPgoyRWe1jvwzlC4TXPd7TbeAMcZLQ1aBeU330d4MQHQIf3kxUGQhKucWRqQAcuRsUFZ08WuywMAVo2k4-2FXGrDi41gGMpeuOORLfJJYfQYZhvcQZQh2NVbqRgNJACZU-2F36Sju61TeNZAH1BugBaB7T4CXhncq5ymji90yTRVnBzCbPWxzad1DutmgQQRFEw-3D-3DOoQm_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSXarDloq-2B66-2FxPZAMx27FfP1hIdj-2Ftf6bAHN6oXKHBDWe9nTuz87iYMDiJ549mk-2FM2PzVHFPMmoqJO3-2B-2Fuzpuqmrs4jzTRZtKhlS6IpzhqP6NGWpEmtdj4gZpnHLrvyKEZhK2e-2FuHKr4K-2BR8hp5DMywH0KuLC-2FlcQgyUGztfIHSSpMA3tNw1cIlkJ2ceNXuKfBzyjwOJbd-2B-2Bh-2FaPAxp-2Bf9Ft6pv-2FkG-2Bj8dXJ0vLfAgoffLX5aT2zfQc5ABN0O3PoWvUsUqIuqgPPS29aKiuxY0cDvthtWce-2FW7QGYUBaKjKbTti4JehOM8Sb8gG7S-2FrTTP-2BxeWKpbntSS6zQIl4W381M2FKpCWx2fwTEoOowYwphVPYQ9L9z1yqGQQXMt8QuUwSbPQoUtf5pdP7ySdC8J0sAaT8tKGJ6BFDeosV2YWWOaT4nMy0LmbuMuDWSXFLTK1CcPmigyQMV8UObe72Tv6tueGo5cTj6nAldXKbAHH-2F1AP-2BCYPdCAT5yv4xlvbUDX9XUy2c6gnelgribbagw7eB6f9FV21NR7DVa9-2BV6yv6AOJntFXAWRsQOwhbHUnHknwQxLSwPvzmo8u1NJSXxAbU3LZPCpmjkcAX75D28OraPH-2BcVep2av29-2Fns2X5Xyd8fiZ2NTmKUmU16tJr57C667yGD1bldNNZG-2FYz91EEFEiqOusNgYdvalWW3aH-2BbtvmnkSqW-2BUR5UMSz7aDR6ePSNkiBjNOdw-2F8clgTi77MPlak2y-2FFfgMte7K-2Bn9Amm2rZA-3D-3D\"> <u>\'Ask Me Anything\' Webinar</u> </a>to learn more.</div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"module\" data-role=\"module-button\" data-type=\"button\" role=\"module\" style=\"table-layout:fixed;\" width=\"100%\" data-muid=\"a9429946-9c94-434e-b0be-7824ab9e211c\">\r\n      <tbody>\r\n        <tr>\r\n          <td align=\"center\" bgcolor=\"#ffffff\" class=\"outer-td\" style=\"padding:0px 0px 0px 0px; background-color:#ffffff;\">\r\n            <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"wrapper-mobile\" style=\"text-align:center;\">\r\n              <tbody>\r\n                <tr>\r\n                <td align=\"center\" bgcolor=\"#2483c5\" class=\"inner-td\" style=\"border-radius:6px; font-size:16px; text-align:center; background-color:inherit;\">\r\n                  <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILigSPgoyRWe1jvwzlC4TXPd7TbeAMcZLQ1aBeU330d4MQHQIf3kxUGQhKucWRqQAcuRsUFZ08WuywMAVo2k4-2FXGrDi41gGMpeuOORLfJJYfQYZhvcQZQh2NVbqRgNJACZU-2F36Sju61TeNZAH1BugBaB7T4CXhncq5ymji90yTRVnBzCbPWxzad1DutmgQQRFEw-3D-3DHNKJ_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSXarDloq-2B66-2FxPZAMx27FfP1hIdj-2Ftf6bAHN6oXKHBDWe9nTuz87iYMDiJ549mk-2FM2PzVHFPMmoqJO3-2B-2Fuzpuqmrs4jzTRZtKhlS6IpzhqP6NGWpEmtdj4gZpnHLrvyKEZhK2e-2FuHKr4K-2BR8hp5DMywH0KuLC-2FlcQgyUGztfIHSSpMA3tNw1cIlkJ2ceNXuKfBzyjwOJbd-2B-2Bh-2FaPAxp-2Bf9Ft6pv-2FkG-2Bj8dXJ0vLfAgoffLX5aT2zfQc5ABN0O3PoWvUsUqIuqgPPS29aKiuxY0cDvthtWce-2FW7QGYUBaKjKbTti4JehOM8Sb8gG7S-2FrTTP-2BxeWKpbntSS6zQIl4W381M2FKpCWx2fwTEoOowYwphVPYQ9L9z1yqGQQXMt8QuUwSbPQoUtf5pdP7ySdC8J0sAaT8tKGJ6BFDeosV2YWWOaT4nMy0LmbuMuDWSXFLTK1CcPmigyQMV8UObe72Tv6tueGo5cTj6nAldXKbAHH-2F1AP-2BCYPdCAT5yv4xlvbUDX9XUy2c6gnelgribbagw7eB6f9FV21NR7DVa9-2BV6yv6AOJntFXAWRsQOwhbHUnHknwQxLSwPvzmo8u1NJSXxAbVLhC6MmEchYu3LUwsCgGF3VncUbGi8RFszZVwCGpguzmaIk39HQ-2BnFh4gssDv7fMOAiGpIets4F8ayZjyLTR2mMg2avYoGvSfE6QRnqf5DQArrDHhHZvVPNapegF7v2uIqF2OP8wsTnHmMX7pAIDMGA-2BqhNkXJKaPO9WIls0-2B43A-3D-3D\" style=\"background-color:#2483c5; border:1px solid #2483c5; border-color:#2483c5; border-radius:6px; border-width:1px; color:#ffffff; display:inline-block; font-size:20px; font-weight:bold; letter-spacing:1px; line-height:normal; padding:12px 18px 12px 18px; text-align:center; text-decoration:none; border-style:solid; font-family:arial,helvetica,sans-serif;\" target=\"_blank\">Register Here</a>\r\n                </td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n          </td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#FFFFFF\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"580\" style=\"width:580px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"28568b69-a7b7-4bd3-8bd8-c2a10e194d09\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 0px 0px; line-height:30px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><h2 style=\"text-align: center\"><strong>U.S. Export Controls Webinar – UK Focused</strong></h2><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2aa1419f-2625-4e4b-acd9-6d46159c5f1a.1.1.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:10px 10px 10px 10px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: left\">Join DIU tomorrow, June 10, 2025, at 9am ET / 6am PT where we will be joined by experts from the U.S. Department of State’s Directorate of Defense Trade Controls (DDTC) and the U.S. Department of Commerce’s Bureau of Industry and Security (BIS). This webinar is for those interested in working with the U.S. Department of Defense, want to learn how to navigate and adhere to U.S. export controls, and learn more about DIU.&nbsp;</div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"module\" data-role=\"module-button\" data-type=\"button\" role=\"module\" style=\"table-layout:fixed;\" width=\"100%\" data-muid=\"a9429946-9c94-434e-b0be-7824ab9e211c.1\">\r\n      <tbody>\r\n        <tr>\r\n          <td align=\"center\" bgcolor=\"#ffffff\" class=\"outer-td\" style=\"padding:0px 0px 0px 0px; background-color:#ffffff;\">\r\n            <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"wrapper-mobile\" style=\"text-align:center;\">\r\n              <tbody>\r\n                <tr>\r\n                <td align=\"center\" bgcolor=\"#2483c5\" class=\"inner-td\" style=\"border-radius:6px; font-size:16px; text-align:center; background-color:inherit;\">\r\n                  <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILs1XNAkONq27Vy2eoL6dfunuZV2ouMkPE9B-2FNWdcY2xHVi7SnfkK1i2UNM1BB9AgjhGECCfSvugvOfRrW6mT2smYFDorEs2SHKqhd4CeMjabwxG1geFck383WvGQ3Orw999eYI6vBE816EOwT-2Bq9QHnicEeclPMy7HbILQf0JAw6YfwIWzdQ0BxzyxfVOKXpQUzA82XeIOC-2BuksfhUnbJXuHOo06K9cf6c6lOa0zy-2BaI5HX5tvym6PLkDLeb1EEIqE-2FROn-2Bp6ZdWAxKd3XDihfw-3DrNxF_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSXarDloq-2B66-2FxPZAMx27FfP1hIdj-2Ftf6bAHN6oXKHBDWe9nTuz87iYMDiJ549mk-2FM2PzVHFPMmoqJO3-2B-2Fuzpuqmrs4jzTRZtKhlS6IpzhqP6NGWpEmtdj4gZpnHLrvyKEZhK2e-2FuHKr4K-2BR8hp5DMywH0KuLC-2FlcQgyUGztfIHSSpMA3tNw1cIlkJ2ceNXuKfBzyjwOJbd-2B-2Bh-2FaPAxp-2Bf9Ft6pv-2FkG-2Bj8dXJ0vLfAgoffLX5aT2zfQc5ABN0O3PoWvUsUqIuqgPPS29aKiuxY0cDvthtWce-2FW7QGYUBaKjKbTti4JehOM8Sb8gG7S-2FrTTP-2BxeWKpbntSS6zQIl4W381M2FKpCWx2fwTEoOowYwphVPYQ9L9z1yqGQQXMt8QuUwSbPQoUtf5pdP7ySdC8J0sAaT8tKGJ6BFDeosV2YWWOaT4nMy0LmbuMuDWSXFLTK1CcPmigyQMV8UObe72Tv6tueGo5cTj6nAldXKbAHH-2F1AP-2BCYPdCAT5yv4xlvbUDX9XUy2c6gnelgribbagw7eB6f9FV21NR7DVa9-2BV6yv6AOJntFXAWRsQOwhbHUnHknwQxLSwPvzmo8u1NJSXxAbUu3maHNTyLlIWyaW-2BTFAJNMsVR2jIoAvkOFJBw3XTLhtpGlmCZWvf6NyXZTo4NTIClNPC849BZ1J3-2FF12IJ209MUYuLc0pq6ltb2NlzIwpRK70CGkW3TP9S0E1H9bHjQd7Zxank1YbSXxunlC-2BxSqGx45jLa-2FvDhvGPXPiC04n6g-3D-3D\" style=\"background-color:#2483c5; border:1px solid #2483c5; border-color:#2483c5; border-radius:6px; border-width:1px; color:#ffffff; display:inline-block; font-size:20px; font-weight:bold; letter-spacing:1px; line-height:normal; padding:12px 18px 12px 18px; text-align:center; text-decoration:none; border-style:solid; font-family:arial,helvetica,sans-serif;\" target=\"_blank\">Register Here</a>\r\n                </td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n          </td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"1aaef511-e162-4ab9-b3c7-913b58ca7be7\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 15px 0px;\" role=\"module-content\" bgcolor=\"#ffffff\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"divider\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"257cee2c-17b5-4325-a24f-cbc103c5619a.1.1.1.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 18px 0px 18px;\" role=\"module-content\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\">\r\n          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" height=\"3px\" style=\"line-height:3px; font-size:3px;\">\r\n            <tbody>\r\n              <tr>\r\n                <td style=\"padding:0px 0px 3px 0px;\" bgcolor=\"#1d3d80\"></td>\r\n              </tr>\r\n            </tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"social\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"ae44c1a0-bbaa-4400-9642-0f18c719b2c4\">\r\n    <tbody>\r\n      <tr>\r\n        <td valign=\"top\" style=\"padding:10px 35px 10px 35px; font-size:6px; line-height:10px; background-color:#ffffff;\" align=\"center\">\r\n          <table align=\"center\" style=\"-webkit-margin-start:auto;-webkit-margin-end:auto;\">\r\n            <tbody><tr align=\"center\"><td style=\"padding: 0px 5px;\" class=\"social-icon-column\">\r\n      <a role=\"social-icon-link\" href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILruprgLTFax-2FwdCEoDuowPmDdYLcPLgjKJpMElqpnBoW0MP6Ad2yOwbv2WdbHQWnxIOyw-2FWyjyvJ1lr47RoJdKMKUxewxY3Y6sUbbb26VI4uYn3hr5j-2Bxi0u4fyf-2FKo7sw-3D-3DTwJk_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSXarDloq-2B66-2FxPZAMx27FfP1hIdj-2Ftf6bAHN6oXKHBDWe9nTuz87iYMDiJ549mk-2FM2PzVHFPMmoqJO3-2B-2Fuzpuqmrs4jzTRZtKhlS6IpzhqP6NGWpEmtdj4gZpnHLrvyKEZhK2e-2FuHKr4K-2BR8hp5DMywH0KuLC-2FlcQgyUGztfIHSSpMA3tNw1cIlkJ2ceNXuKfBzyjwOJbd-2B-2Bh-2FaPAxp-2Bf9Ft6pv-2FkG-2Bj8dXJ0vLfAgoffLX5aT2zfQc5ABN0O3PoWvUsUqIuqgPPS29aKiuxY0cDvthtWce-2FW7QGYUBaKjKbTti4JehOM8Sb8gG7S-2FrTTP-2BxeWKpbntSS6zQIl4W381M2FKpCWx2fwTEoOowYwphVPYQ9L9z1yqGQQXMt8QuUwSbPQoUtf5pdP7ySdC8J0sAaT8tKGJ6BFDeosV2YWWOaT4nMy0LmbuMuDWSXFLTK1CcPmigyQMV8UObe72Tv6tueGo5cTj6nAldXKbAHH-2F1AP-2BCYPdCAT5yv4xlvbUDX9XUy2c6gnelgribbagw7eB6f9FV21NR7DVa9-2BV6yv6AOJntFXAWRsQOwhbHUnHknwQxLSwPvzmo8u1NJSXxAbUe4CeVIKcZ99kAKpCbc-2BYKcyZ5MSzD5g2j7hvxXY6hYpVFANVFvci-2BD-2FmjZBdRT8Qs8Ns7FDoWE8Eu2ZYLmcUI0JyPGFqUSqmuTLlrTuRS6zmEoqEtO-2BfdIRfMy0q-2Br2uSrvuih6DcaUTE2tSGVaxd-2F4W2U0Eb2oY37VoQqA55nw-3D-3D\" target=\"_blank\" alt=\"Facebook\" title=\"Facebook\" style=\"display:inline-block; background-color:#2483c5; height:21px; width:21px;\">\r\n        <img role=\"social-icon\" alt=\"Facebook\" title=\"Facebook\" src=\"https://mc.sendgrid.com/assets/social/white/facebook.png\" style=\"height:21px; width:21px;\" height=\"21\" width=\"21\">\r\n      </a>\r\n    </td><td style=\"padding: 0px 5px;\" class=\"social-icon-column\">\r\n      <a role=\"social-icon-link\" href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILiex1JG1NQq9IzsZr262RoLwzMHSeKChOwIVzrUh9JO8zxw6qugYJ0vDGTI48U14GL28-2FNhxfxmVEoS4KZHf9HYIVhN3nBs9EYdPWhp3qkYeh-2Bcvwn7YN4GcvUUj9gv9KQ-3D-3DbmcM_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSXarDloq-2B66-2FxPZAMx27FfP1hIdj-2Ftf6bAHN6oXKHBDWe9nTuz87iYMDiJ549mk-2FM2PzVHFPMmoqJO3-2B-2Fuzpuqmrs4jzTRZtKhlS6IpzhqP6NGWpEmtdj4gZpnHLrvyKEZhK2e-2FuHKr4K-2BR8hp5DMywH0KuLC-2FlcQgyUGztfIHSSpMA3tNw1cIlkJ2ceNXuKfBzyjwOJbd-2B-2Bh-2FaPAxp-2Bf9Ft6pv-2FkG-2Bj8dXJ0vLfAgoffLX5aT2zfQc5ABN0O3PoWvUsUqIuqgPPS29aKiuxY0cDvthtWce-2FW7QGYUBaKjKbTti4JehOM8Sb8gG7S-2FrTTP-2BxeWKpbntSS6zQIl4W381M2FKpCWx2fwTEoOowYwphVPYQ9L9z1yqGQQXMt8QuUwSbPQoUtf5pdP7ySdC8J0sAaT8tKGJ6BFDeosV2YWWOaT4nMy0LmbuMuDWSXFLTK1CcPmigyQMV8UObe72Tv6tueGo5cTj6nAldXKbAHH-2F1AP-2BCYPdCAT5yv4xlvbUDX9XUy2c6gnelgribbagw7eB6f9FV21NR7DVa9-2BV6yv6AOJntFXAWRsQOwhbHUnHknwQxLSwPvzmo8u1NJSXxAbXknKfXtMSZxQYTwXTFEdJ2EcgH7mJ-2Fl1ZfwXwVAFa2-2BwyRpDxY9PHSrMUcpnBggQWzS4NXIi0u9-2F5wxsJJBLSwqUdQGsP077aX5g9eTkTEufscNxR1ksofY38l82JQ-2Bme1yJeqHx9-2F9eCYSrZ9vVgnr7B2Dg6NjOIwH2dT72xaXQ-3D-3D\" target=\"_blank\" alt=\"Instagram\" title=\"Instagram\" style=\"display:inline-block; background-color:#2483c5; height:21px; width:21px;\">\r\n        <img role=\"social-icon\" alt=\"Instagram\" title=\"Instagram\" src=\"https://mc.sendgrid.com/assets/social/white/instagram.png\" style=\"height:21px; width:21px;\" height=\"21\" width=\"21\">\r\n      </a>\r\n    </td><td style=\"padding: 0px 5px;\" class=\"social-icon-column\">\r\n      <a role=\"social-icon-link\" href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILigSPgoyRWe1jvwzlC4TXPdQ4tdiUnPseFtO1XqXca987xbfK5qQK9ruudUGK1npcMMca0zxrrHNmgWCdBMb9iYmyrbrwz2zdEQgeDfy0acR6bpBHIvP1xNYOMWWLAzvCg-3D-3DUIQv_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSXarDloq-2B66-2FxPZAMx27FfP1hIdj-2Ftf6bAHN6oXKHBDWe9nTuz87iYMDiJ549mk-2FM2PzVHFPMmoqJO3-2B-2Fuzpuqmrs4jzTRZtKhlS6IpzhqP6NGWpEmtdj4gZpnHLrvyKEZhK2e-2FuHKr4K-2BR8hp5DMywH0KuLC-2FlcQgyUGztfIHSSpMA3tNw1cIlkJ2ceNXuKfBzyjwOJbd-2B-2Bh-2FaPAxp-2Bf9Ft6pv-2FkG-2Bj8dXJ0vLfAgoffLX5aT2zfQc5ABN0O3PoWvUsUqIuqgPPS29aKiuxY0cDvthtWce-2FW7QGYUBaKjKbTti4JehOM8Sb8gG7S-2FrTTP-2BxeWKpbntSS6zQIl4W381M2FKpCWx2fwTEoOowYwphVPYQ9L9z1yqGQQXMt8QuUwSbPQoUtf5pdP7ySdC8J0sAaT8tKGJ6BFDeosV2YWWOaT4nMy0LmbuMuDWSXFLTK1CcPmigyQMV8UObe72Tv6tueGo5cTj6nAldXKbAHH-2F1AP-2BCYPdCAT5yv4xlvbUDX9XUy2c6gnelgribbagw7eB6f9FV21NR7DVa9-2BV6yv6AOJntFXAWRsQOwhbHUnHknwQxLSwPvzmo8u1NJSXxAbU9QNjpXOypD4PjCBEsXTMhjQtYWh8Gib1x5XTM4qnprExbm3pzozhVZCQLmpnil29rHiPpMxwvC3sJP3I8muXe20Pt-2BTZMVLrECjrnHZOWBfg1xRgQ6AJkgujYhYnd83crmMC-2Fxhi5iRswJLLN-2Fpl5a8LaaIyjSonoxy771uYSiQ-3D-3D\" target=\"_blank\" alt=\"LinkedIn\" title=\"LinkedIn\" style=\"display:inline-block; background-color:#2483c5; height:21px; width:21px;\">\r\n        <img role=\"social-icon\" alt=\"LinkedIn\" title=\"LinkedIn\" src=\"https://mc.sendgrid.com/assets/social/white/linkedin.png\" style=\"height:21px; width:21px;\" height=\"21\" width=\"21\">\r\n      </a>\r\n    </td></tr></tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"74825449-1b50-4483-b7fc-b128a2632fbe\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 0px 0px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: center\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILv2IsChv6FkG-2FCV6hGAZSbe6lCbkT4m-2FuVoDxl-2BBdmwmHlwNl1NOwcneZuvL3WDrQaKBQVI-2Bcucu-2FXgWXZfrLLeKrrs766rRdJAAoxVlOsb6mXO8_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSXarDloq-2B66-2FxPZAMx27FfP1hIdj-2Ftf6bAHN6oXKHBDWe9nTuz87iYMDiJ549mk-2FM2PzVHFPMmoqJO3-2B-2Fuzpuqmrs4jzTRZtKhlS6IpzhqP6NGWpEmtdj4gZpnHLrvyKEZhK2e-2FuHKr4K-2BR8hp5DMywH0KuLC-2FlcQgyUGztfIHSSpMA3tNw1cIlkJ2ceNXuKfBzyjwOJbd-2B-2Bh-2FaPAxp-2Bf9Ft6pv-2FkG-2Bj8dXJ0vLfAgoffLX5aT2zfQc5ABN0O3PoWvUsUqIuqgPPS29aKiuxY0cDvthtWce-2FW7QGYUBaKjKbTti4JehOM8Sb8gG7S-2FrTTP-2BxeWKpbntSS6zQIl4W381M2FKpCWx2fwTEoOowYwphVPYQ9L9z1yqGQQXMt8QuUwSbPQoUtf5pdP7ySdC8J0sAaT8tKGJ6BFDeosV2YWWOaT4nMy0LmbuMuDWSXFLTK1CcPmigyQMV8UObe72Tv6tueGo5cTj6nAldXKbAHH-2F1AP-2BCYPdCAT5yv4xlvbUDX9XUy2c6gnelgribbagw7eB6f9FV21NR7DVa9-2BV6yv6AOJntFXAWRsQOwhbHUnHknwQxLSwPvzmo8u1NJSXxAbWwP0V1Cql5giasGDt8dN7lh98f80rqntuzbY-2F3KT02pkwQy3G7aXKupGJe27fKd7j3rPhpBGdjLCD8MHErGELtSVAiGwQYQ84RDdCSzRL-2B1-2Bf8aoTyJaG6qUcE9rSnX1rs4KVw9PV-2FscQtE1PRslSWdv-2FyYLRFSzODQGdTuVqqBA-3D-3D\"><span style=\"font-size: 12px; font-family: arial, helvetica, sans-serif; color: #2483c5\"><strong>D</strong></span></a><span style=\"font-size: 12px; font-family: arial, helvetica, sans-serif; color: #2483c5\"><strong>efense Innovation Unit</strong></span><span style=\"font-size: 12px; font-family: arial, helvetica, sans-serif\"> | </span><span style=\"color: #000000; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space-collapse: collapse; text-wrap-mode: wrap; text-wrap-style: initial; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-size: 12px; font-family: arial, helvetica, sans-serif\">2231 Crystal Drive, Suite 201, Arlington, VA 22202 | USA</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n                                      </tr>\r\n                                    </table>\r\n                                    <!--[if mso]>\r\n                                  </td>\r\n                                </tr>\r\n                              </table>\r\n                            </center>\r\n                            <![endif]-->\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </div>\r\n      </center>\r\n    <a href=\'https://u18220755.ct.sendgrid.net/asm/unsubscribe/?user_id=18220755&amp;data=CrLX_vPlOBd6k7DN7pW-zsq1Y5XRILMQ6IEfn-YkashoMDAwdTAwMDu3t9GwNGewKyJ_-aJp6wv7x-vIire6jG5HR9ZR7EGdQuNkz-lEsmyBgP8tKjCoviqjvYQVSzy0qhhoFkwumjT_JTH6in_9vThg-ulvhYOZg0vV8w8tN8NDZ6qZ1cOvx02waXQbvHV8w9UaxQwMvilqKIM55emr8Q1ggaUInUoDAk3SVpaVHRuvoeMNz-6c_gFPGGu-uW6zITslAK_v3VwjF2bck-qiKY1aTIyiNzO1n9O9IDF0IizGNPvvEQCL8mWhi6yZ0vfxwSmuDGHOFkek4pV-cpI4WZB2RExSv8wFreaYsJ9uc8GnONng_I00IGC9aiUgSE58gRR8FgEtwnhPz4BiFmFM7xMcmwhWLp5p3eFqrbjRTCnoN44I1Wu-e_jL8hTkYbW2u77OKBZuWi_xcHPLGZiqzlPj2S_Y3lepsVUvuVHR2PemJSdMTxLUgYtg-keZRNEQ2WyXIMtQav-S6agDRVURXir5-xSghCetjx1W-7a_WyeLL60Mvw4vhk2zgwjBgrcH52mesGshLd4JT4F_SnQbLnyuQn-I_p5Ohwc60XmBFX5lEizgqSpF5GkWXPJjsgg9hkX0xuwnHeKXSTEJiUb_e_zX239RC44REclD1BdhS3v5AeHiJTmRq2ymkQbayXTJlIunOtmzZeCniFlTZ9RoRV3WI9VyXwzTVWlGOJhM-IDdeAmWEmyJ45Mn22Df-wivOwkq5l40W2OXglM1coBG1mL_w0dSlfj43ryF3JDBwvBt2TwsHIDpkIpuPC6MFQVuNVKhYjiOmxdKOtfUuWNqpOU8ItDp163HYewX4Uf7Xpx5dUkqnyNH4Sewn61ykdyzDLt9Ttqw07HYrwcSNYim6gAkEymCrM07tJJUo89IXWXcFrT8poZki9R3w-DeXTXnRL3EbufcAbo7xZqDMfZm5n4ZeoPFQb5nXL0v-EjVb22XBbNcoumLmPD9O81Cq-0UdfyiEmzFxufy_rDbNIv7EsXq0WsVjfr6yLF7h8TzpCcybkivBDFR_I3pdbk7hwzslZUxPwUczUrDkPTWuBXMH727kBQNB6Lw\'>Unsubscribe From This List</a> | <a href=\'https://u18220755.ct.sendgrid.net/asm/?user_id=18220755&amp;data=HXomkRRbAC5UyU7tgyumD9iCjnjBa2wJt9EojGIvNVRoMDAwdTAwMNdlMkNGn-t5_a6w_6JwKjMstTf7pkzlaVBHyHrQWvDZ-jH7JXOjfA9xDVE6ahD5sYk0Ifv73acNfi4neq9KlgUJYGP6M3vAfr1-qIbQ8Yw_76GipZLYPlbqQxV0m47a-tMgNPTndlMisSf7HUUdQh296uIj7PzkypTPGodJ3XJy6u4M7_HjlT0vLvfBWWLGbS7dKHJeYHMTUjFGnAa1JAZQtX6kJoj-tfx7FOOCsQXXapZ2KRXwPT9GA3fnxb857LMYwJUZjT5zUbBY6GmDvMVRKPcGxVJL8tBqFGoYcZJisUCdeTmjTQf9GdIRr3AZJSpqgOrWsWWCn4zNx5RznYyqkpJdmex2TAN6PbIzhIpltb66AGxpiqHVRHjtvs2SV8w1rvDIq1o8C6B1muFRkPD9qdhJGkJGDoAo8fp-hujqw6Do3XVcZFF5jMRLw13fkTvKzrxV-wY32BMRKHKr0HXh1uQ2bwesMCvq0ehd7DR6wT6mZHUP44ftH3Pe6LE9qyXw1Drp4dgQnpnbgF2JNNjePifZmu0wqrDv55W5p20FoAnFwWgcHzesymrm5t3Q_gl5fkgcIYRqX0syUAaCsCDEPBFm7afHg0ETW_P8CqtwNjZFcXTBnwVwgIDYYF-zk4uVkHprUGgTneezmEgUWAdYe8WWm_M7TLfjYF-8cT7t5hb1WJXLGnQvyP1Ul5tg7aaOAdqoz7u_-kSdQkTlaFLR4jF_-2e0GJjvH6UBJEwXBiLaWQ54E_TwhLQXS310jp_cil4SRH0ocCO_6CuXnhrxy3sAdopcVCaX-zdg_Ga0DsNYOEa-79PiW6PC4iVnO2d1vbSfAqVX3JI4lHxaklS59yoNZbRmJHDAQr-4ksAKOYZ-PpU1jq5PN5M8XV_EiDkDoizfZSVx6_5bpTzpYPoJpIVjqG_KKcYWcfAYT9DeBhtu5cMhC6m6VCC77sF_1hwGn3IMc0q4fooyOJ8i6DbQeMW5wTRnb_CyxK5fbDHr4Hnm68O2hvtLSe1QmkogdAhxoz_oRfia-fWG3DsvuKddljuOaNkNu7U2j7AJBYQX\'>Manage Email Preferences</a><img src=\"https://u18220755.ct.sendgrid.net/wf/open?upn=u001.D6mC8SG6iITw2GIzPjAtw7SLAuEgZhcE7OQx5Ie2paKW9TCJvoy3Eh7ani-2FmDfzWZ4Aty9oKYAg8U-2BpXv81mmaeCBsQtTAdxlXqbnsXBCjn-2FAW10qJfypmIUPoD1-2B38y4LSjEaiwyNZHtEyZD-2BNUDcjAI2JLG7R4GrdpUBc8wcG1jPdsUwSZpWZblOqwkce4WjEe5U6u0UrGuWhn2VaYOk7GlHSoXv6JdzG-2BRmnUgEom8hfmGl2BCX-2FxZAaiifbbxGanpFaJ5kmLjHnyIUHNDJrNAx2leGPglmfhmX3d-2F8ThgtUoU8TP7LSFUm29yN4qmc785eBTUw45tW3GZCtZeffCGG292-2B-2Fj-2BPnAXhS71Phtld1XlV4lAeAwFZZjZ9EAECSUWmtyVSGPnI2Crcf6xAh1h6INJdRzcrRnyLEUR-2BYsz3w66NXiTsBqd50dFek-2BZ7ta91jgBI-2BI-2F87UPmDpqqrRMuPojd-2BN8HA3BWSgR4YoLHZgHURwU7zuUshPuXYE0xz-2FdAMF3nB9ULeR3ZISzupVsEp-2BHRAsrq5QNoQ5GM6jb4nAK-2BnFvfddTF8AAL-2Fy7W8-2FfoStfSGRD0L-2BQLzjimljGazAZLaTnJ8zvFvrQfRjzQq6PIcIAiGZYu0k2uii9iEpvuuWtQnNjB4lyadHyU1nXrpLLWb3z-2B5hWPUVA65FD4HFGcPj3YioYRyuG-2B3BFh1I7v9yXniyDxg6Xw4Twspvhhiz24kgu5-2BbYJC35a6jhVvc2K-2FFfPa1PzY6XUl7TRhex6YbtvJpFaJKnoUu-2BYAsC82tygPg-2BefcKy6QTdaQn44b3oYmOJ5h96MoD-2F4AXc3f-2BEhphG5G4dwqQhT-2FXBXzqKst2hawUElGmBtc422AhTHSqrEQYqnLFw-2BCzPTcDjOv6RjJRbtS7YIaAgznE-2BGyE28lPKwdU8AYkoMgN9Q-3D\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/></body>\r\n  </html>','Learn more about Blue UAS Recognized Assessors and U.S. Export Controls\r\n\r\n****************************************\r\n*Virtual DIU Events Happening This Week*\r\n****************************************\r\n\r\n---------------------------------------\r\n*AMA for Blue UAS Recognized Assessors*\r\n---------------------------------------\r\n\r\nAs part of the evolution of Blue UAS announced on May 16, 2025, ( https://www.diu.mil/latest/blue-uas-to-evolve-to-meet-broader-department-of-defense-needs?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) the Defense Innovation Unit (DIU) will establish Recognized Assessors ( https://www.diu.mil/latest/diu-seeking-recognized-assessors-to-support-blue-uas-ndaa-compliance?utm_source=LinkedIn&utm_medium=Social&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) , a group of third-party organizations, to evaluate drone platforms and related components for compliance with the National Defense Authorization Act (NDAA).\r\n\r\nJoin DIU today, June 9, 2025, at 2pm ET / 11am PT for an \'Ask Me Anything\' Webinar ( https://www.linkedin.com/events/ama-diurecognizedassessorsrole7336817256313606144/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) to learn more.\r\n\r\nRegister Here ( https://www.linkedin.com/events/ama-diurecognizedassessorsrole7336817256313606144/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n-------------------------------------------\r\n*U.S. Export Controls Webinar – UK Focused*\r\n-------------------------------------------\r\n\r\nJoin DIU tomorrow, June 10, 2025, at 9am ET / 6am PT where we will be joined by experts from the U.S. Department of State’s Directorate of Defense Trade Controls (DDTC) and the U.S. Department of Commerce’s Bureau of Industry and Security (BIS). This webinar is for those interested in working with the U.S. Department of Defense, want to learn how to navigate and adhere to U.S. export controls, and learn more about DIU.\r\n\r\nRegister Here ( https://www.zoomgov.com/webinar/register/WN_rANVklULTcC4E-ytB20e-A?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com#/registration )\r\n\r\n( https://www.facebook.com/nsinus/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) ( https://www.instagram.com/nsin.us/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) ( https://www.linkedin.com/company/nsinus?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*D* ( https://www.nsin.mil/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) *efense Innovation Unit* | 2231 Crystal Drive, Suite 201, Arlington, VA 22202 | USA\r\nUnsubscribe From This List https://u18220755.ct.sendgrid.net/asm/unsubscribe/?user_id=18220755&data=CrLX_vPlOBd6k7DN7pW-zsq1Y5XRILMQ6IEfn-YkashoMDAwdTAwMDu3t9GwNGewKyJ_-aJp6wv7x-vIire6jG5HR9ZR7EGdQuNkz-lEsmyBgP8tKjCoviqjvYQVSzy0qhhoFkwumjT_JTH6in_9vThg-ulvhYOZg0vV8w8tN8NDZ6qZ1cOvx02waXQbvHV8w9UaxQwMvilqKIM55emr8Q1ggaUInUoDAk3SVpaVHRuvoeMNz-6c_gFPGGu-uW6zITslAK_v3VwjF2bck-qiKY1aTIyiNzO1n9O9IDF0IizGNPvvEQCL8mWhi6yZ0vfxwSmuDGHOFkek4pV-cpI4WZB2RExSv8wFreaYsJ9uc8GnONng_I00IGC9aiUgSE58gRR8FgEtwnhPz4BiFmFM7xMcmwhWLp5p3eFqrbjRTCnoN44I1Wu-e_jL8hTkYbW2u77OKBZuWi_xcHPLGZiqzlPj2S_Y3lepsVUvuVHR2PemJSdMTxLUgYtg-keZRNEQ2WyXIMtQav-S6agDRVURXir5-xSghCetjx1W-7a_WyeLL60Mvw4vhk2zgwjBgrcH52mesGshLd4JT4F_SnQbLnyuQn-I_p5Ohwc60XmBFX5lEizgqSpF5GkWXPJjsgg9hkX0xuwnHeKXSTEJiUb_e_zX239RC44REclD1BdhS3v5AeHiJTmRq2ymkQbayXTJlIunOtmzZeCniFlTZ9RoRV3WI9VyXwzTVWlGOJhM-IDdeAmWEmyJ45Mn22Df-wivOwkq5l40W2OXglM1coBG1mL_w0dSlfj43ryF3JDBwvBt2TwsHIDpkIpuPC6MFQVuNVKhYjiOmxdKOtfUuWNqpOU8ItDp163HYewX4Uf7Xpx5dUkqnyNH4Sewn61ykdyzDLt9Ttqw07HYrwcSNYim6gAkEymCrM07tJJUo89IXWXcFrT8poZki9R3w-DeXTXnRL3EbufcAbo7xZqDMfZm5n4ZeoPFQb5nXL0v-EjVb22XBbNcoumLmPD9O81Cq-0UdfyiEmzFxufy_rDbNIv7EsXq0WsVjfr6yLF7h8TzpCcybkivBDFR_I3pdbk7hwzslZUxPwUczUrDkPTWuBXMH727kBQNB6Lw | Manage Email Preferences https://u18220755.ct.sendgrid.net/asm/?user_id=18220755&data=HXomkRRbAC5UyU7tgyumD9iCjnjBa2wJt9EojGIvNVRoMDAwdTAwMNdlMkNGn-t5_a6w_6JwKjMstTf7pkzlaVBHyHrQWvDZ-jH7JXOjfA9xDVE6ahD5sYk0Ifv73acNfi4neq9KlgUJYGP6M3vAfr1-qIbQ8Yw_76GipZLYPlbqQxV0m47a-tMgNPTndlMisSf7HUUdQh296uIj7PzkypTPGodJ3XJy6u4M7_HjlT0vLvfBWWLGbS7dKHJeYHMTUjFGnAa1JAZQtX6kJoj-tfx7FOOCsQXXapZ2KRXwPT9GA3fnxb857LMYwJUZjT5zUbBY6GmDvMVRKPcGxVJL8tBqFGoYcZJisUCdeTmjTQf9GdIRr3AZJSpqgOrWsWWCn4zNx5RznYyqkpJdmex2TAN6PbIzhIpltb66AGxpiqHVRHjtvs2SV8w1rvDIq1o8C6B1muFRkPD9qdhJGkJGDoAo8fp-hujqw6Do3XVcZFF5jMRLw13fkTvKzrxV-wY32BMRKHKr0HXh1uQ2bwesMCvq0ehd7DR6wT6mZHUP44ftH3Pe6LE9qyXw1Drp4dgQnpnbgF2JNNjePifZmu0wqrDv55W5p20FoAnFwWgcHzesymrm5t3Q_gl5fkgcIYRqX0syUAaCsCDEPBFm7afHg0ETW_P8CqtwNjZFcXTBnwVwgIDYYF-zk4uVkHprUGgTneezmEgUWAdYe8WWm_M7TLfjYF-8cT7t5hb1WJXLGnQvyP1Ul5tg7aaOAdqoz7u_-kSdQkTlaFLR4jF_-2e0GJjvH6UBJEwXBiLaWQ54E_TwhLQXS310jp_cil4SRH0ocCO_6CuXnhrxy3sAdopcVCaX-zdg_Ga0DsNYOEa-79PiW6PC4iVnO2d1vbSfAqVX3JI4lHxaklS59yoNZbRmJHDAQr-4ksAKOYZ-PpU1jq5PN5M8XV_EiDkDoizfZSVx6_5bpTzpYPoJpIVjqG_KKcYWcfAYT9DeBhtu5cMhC6m6VCC77sF_1hwGn3IMc0q4fooyOJ8i6DbQeMW5wTRnb_CyxK5fbDHr4Hnm68O2hvtLSe1QmkogdAhxoz_oRfia-fWG3DsvuKddljuOaNkNu7U2j7AJBYQX',0,0,0,0,0,0,'2025-06-09 16:11:16','2025-12-09 19:12:42','2025-12-09 19:12:42','2025-12-09 19:12:42',NULL,NULL,NULL),
(360,4,' <BL3PR20MB492411993D6B0A43C1705F54AF6AA@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: Based on our last convo...','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHey Rick,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nWas travelling back from SF earlier today and guess I somehow missed this.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n2pm PST on Wednesday, Thursday, or Friday would work great for me.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nSo as for Unusual Machines, I\'ve looked into them in the past and actually reached out to their CEO a few months ago.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nThey are actually a Puerto Rico based company, and a subsidiary they purchased (Rotor Riot, a small drone component marketplace) was hit very hard by the T-Motor and DJI Blacklisting, which is what I think inspired them to start looking at domestic manufacturing.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nThe only thing they\'ve done so far is &quot;sign a site lease&quot;, and something tells me they arrived at the 50,000 unit volume projection because they were threatened by what we had announced we were doing, also their CEO never responded back to me.&nbsp;</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nThey are also a publicly traded company, and to be honest, while I think they may have some intent on building out some capacity I think this is mainly a move to pump their stock price, which if you look at alot of their other announcements is something they\r\n periodically do.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nLastly, they mentioned that they would outsourcing stator fabrication, which means we would be at least 50% more vertically integrated (and hence, cost competitive) than they are.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nRegards,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nJason</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Monday, June 9, 2025 9:37 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Based on our last convo...</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Also, can you speak to this:</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><a href=\"https://www.unusualmachines.com/#b2iLibScrollTo\">https://www.unusualmachines.com/#b2iLibScrollTo</a><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">before we chat again...</div>\r\n<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On June 9, 2025 at 10:56:39 AM, Rick (<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Hi Justin,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">What’s good for you this week?</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">For a conf call re funding…</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On June 2, 2025 at 7:36:57 AM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHey Rick,</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHere is a link to the automation roadmap document:</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<a href=\"https://docs.google.com/presentation/d/1545uu0LCEJ8ZGwEadOACk187lGBlS-96ScHG-ltWZz0/edit?usp=sharing\" id=\"LPlnkOWAf1820a46-856f-c466-67f8-68e174e384dd\" class=\"x_OWAAutoLink\">https://docs.google.com/presentation/d/1545uu0LCEJ8ZGwEadOACk187lGBlS-96ScHG-ltWZz0/edit?usp=sharing</a></div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nI was brainstorming your idea for the containerized production platform and I think it\'s actually totally doable.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nI\'ll probably make some slight modifications/additions to the document later today.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nLet me know if you need anything else from our side in the meantime.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nThanks,</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nJason</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Saturday, May 31, 2025 11:36 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Based on our last convo...</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>You do your thing. &nbsp;Just trying to help…\r\n<div><br>\r\n<br>\r\n<div class=\"x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<p class=\"x_x_gmail_quote\" style=\"color:#000\">On May 31, 2025 at 1:32:13 PM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_gmail_quote\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div>\r\n<div dir=\"ltr\">Hi Rick,</div>\r\n<div dir=\"ltr\"><br>\r\n</div>\r\n<div dir=\"ltr\">Yes, very much so, would you like me to expand upon this and then get back to you? I had been working on my own, calling it the “automation roadmap” but this format is also very good and I could migrate it over.</div>\r\n<div dir=\"ltr\"><br>\r\n</div>\r\n<div dir=\"ltr\">Thanks,</div>\r\n<div dir=\"ltr\">Jason</div>\r\n</div>\r\n<div id=\"x_x_ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"x_x_ms-outlook-mobile-signature\">Get <a href=\"https://aka.ms/o0ukef\">Outlook for iOS</a></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Saturday, May 31, 2025 9:53:26 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Based on our last convo...</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div id=\"x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nWould this be useful?</div>\r\nSee attached. confirm receipt...\r\n<div>Thanks,</div>\r\n<div>Rick<br>\r\n<div class=\"x_x_x_bloop_sign\" id=\"x_x_x_bloop_sign_1748710343744053760\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Hey Rick,\r\n\r\nWas travelling back from SF earlier today and guess I somehow missed this.\r\n\r\n2pm PST on Wednesday, Thursday, or Friday would work great for me.\r\n\r\nSo as for Unusual Machines, I\'ve looked into them in the past and actually reached out to their CEO a few months ago.\r\n\r\nThey are actually a Puerto Rico based company, and a subsidiary they purchased (Rotor Riot, a small drone component marketplace) was hit very hard by the T-Motor and DJI Blacklisting, which is what I think inspired them to start looking at domestic manufacturing.\r\n\r\nThe only thing they\'ve done so far is \"sign a site lease\", and something tells me they arrived at the 50,000 unit volume projection because they were threatened by what we had announced we were doing, also their CEO never responded back to me.\r\n\r\nThey are also a publicly traded company, and to be honest, while I think they may have some intent on building out some capacity I think this is mainly a move to pump their stock price, which if you look at alot of their other announcements is something they periodically do.\r\n\r\nLastly, they mentioned that they would outsourcing stator fabrication, which means we would be at least 50% more vertically integrated (and hence, cost competitive) than they are.\r\n\r\nRegards,\r\nJason\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Monday, June 9, 2025 9:37 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Based on our last convo...\r\n\r\nAlso, can you speak to this:\r\nhttps://www.unusualmachines.com/#b2iLibScrollTo\r\nbefore we chat again...\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn June 9, 2025 at 10:56:39 AM, Rick (rick@mavrix.one<mailto:rick@mavrix.one>) wrote:\r\n\r\nHi Justin,\r\nWhat’s good for you this week?\r\nFor a conf call re funding…\r\nThanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn June 2, 2025 at 7:36:57 AM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nHey Rick,\r\n\r\nHere is a link to the automation roadmap document:\r\nhttps://docs.google.com/presentation/d/1545uu0LCEJ8ZGwEadOACk187lGBlS-96ScHG-ltWZz0/edit?usp=sharing\r\n\r\nI was brainstorming your idea for the containerized production platform and I think it\'s actually totally doable.\r\n\r\nI\'ll probably make some slight modifications/additions to the document later today.\r\n\r\nLet me know if you need anything else from our side in the meantime.\r\n\r\nThanks,\r\nJason\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Saturday, May 31, 2025 11:36 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Based on our last convo...\r\n\r\nYou do your thing.  Just trying to help…\r\n\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\nOn May 31, 2025 at 1:32:13 PM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nYes, very much so, would you like me to expand upon this and then get back to you? I had been working on my own, calling it the “automation roadmap” but this format is also very good and I could migrate it over.\r\n\r\nThanks,\r\nJason\r\n\r\nGet Outlook for iOS<https://aka.ms/o0ukef>\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Saturday, May 31, 2025 9:53:26 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Based on our last convo...\r\n\r\nWould this be useful?\r\nSee attached. confirm receipt...\r\nThanks,\r\nRick\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n',0,0,0,0,0,0,'2025-06-10 04:03:44','2025-12-09 19:12:43','2025-12-09 19:12:43','2025-12-09 19:12:43',NULL,NULL,NULL),
(361,4,'<f10e00b2-0ebd-4fc4-8da5-e7693abffa18@monday-mail.com>',NULL,NULL,'Touching Bases','Chris@buildmo.com','Chris Sargent','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n</head>\r\n<body>\r\n<div id=\"f10e00b2-0ebd-4fc4-8da5-e7693abffa18\"></div>\r\n<div>Rick,</div>\r\n<div>I wanted to touch bases with you and see how things were going. Tom L and I are currently on the way out the door on a trip but I wanted to make sure we were maintaining contact. Hope all is going well.</div>\r\n<div><br>\r\n</div>\r\n<div>R/s,</div>\r\n<div>Chris Sargent</div>\r\n<div>Building Momentum </div>\r\n<div><a rel=\"noopener noreferrer\" href=\"https://trackingservice.monday.com/tracker/link?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJvcmlnaW5hbFVybCI6Im1haWx0bzpDaHJpc0BidWlsZG1vLmNvbSIsImVtYWlsSWQiOiJmMTBlMDBiMi0wZWJkLTRmYzQtOGRhNS1lNzY5M2FiZmZhMTgiLCJpYXQiOjE3NDk1NjUzMTZ9.7wwu5QainwjWZ4BUwWzxThmbHmVtPhHsVdXzGqM8qKo&amp;r=use1\">Chris@buildmo.com</a></div>\r\n<div>Cell: 619.721.5080 June 10th 2025 </div>\r\n<div><br>\r\n</div>\r\n<div><a rel=\"noopener noreferrer\" href=\"https://monday.com/crm/?utm_source=Product&amp;utm_campaign=EmailApp\"><img style=\"height: 24px\" upload=\"false\" id=\"crm.png\" type=\"image/png\" src=\"https://dapulse-res.cloudinary.com/image/upload/monday-crm/assets/powered-by-monday/crm.png\"></a></div>\r\n<img width=\"0px\" height=\"0px\" alt=\"\" src=\"https://buildmo-company.monday.com/crm/ext/communication/email/open/f10e00b2-0ebd-4fc4-8da5-e7693abffa18.gif\">\r\n</body>\r\n</html>','Rick,\r\nI wanted to touch bases with you and see how things were going. Tom L and I are currently on the way out the door on a trip but I wanted to make sure we were maintaining contact. Hope all is going well.\r\n\r\nR/s,\r\nChris Sargent\r\nBuilding Momentum\r\nChris@buildmo.com<https://trackingservice.monday.com/tracker/link?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJvcmlnaW5hbFVybCI6Im1haWx0bzpDaHJpc0BidWlsZG1vLmNvbSIsImVtYWlsSWQiOiJmMTBlMDBiMi0wZWJkLTRmYzQtOGRhNS1lNzY5M2FiZmZhMTgiLCJpYXQiOjE3NDk1NjUzMTZ9.7wwu5QainwjWZ4BUwWzxThmbHmVtPhHsVdXzGqM8qKo&r=use1>\r\nCell: 619.721.5080 June 10th 2025\r\n\r\n[https://dapulse-res.cloudinary.com/image/upload/monday-crm/assets/powered-by-monday/crm.png]<https://monday.com/crm/?utm_source=Product&utm_campaign=EmailApp>',0,0,0,0,0,0,'2025-06-10 14:21:56','2025-12-09 19:12:43','2025-12-09 19:12:43','2025-12-09 19:12:43',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(362,4,' <BY5PR16MB3426D563589B7C47F9C253F5FE6AA@BY5PR16MB3426.namprd16.prod.outlook.com>',NULL,NULL,'Re: Next steps!','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHi Rick,&nbsp;</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nIt was great speaking with you and Brian yesterday. I really appreciate your help to facilitate an introduction and connect us. I wanted to circle back quickly regarding the prepayment/repayment features of our loan with CFB for clarification &amp; avoidance of\r\n doubt:</div>\r\n<ol start=\"1\" data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:false,&quot;orderedStyleType&quot;:3}\" style=\"margin-top: 0px; margin-bottom: 0px;\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); list-style-type: &quot;1) &quot;;\">\r\n<div class=\"elementToProof\" role=\"presentation\">Loan amount: $2,850,000</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); list-style-type: &quot;2) &quot;;\">\r\n<div class=\"elementToProof\" role=\"presentation\">Term: 14 years, 6 months&nbsp;</div>\r\n</li><ol start=\"1\" data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:true}\" style=\"margin-top: 0px; margin-bottom: 0px; list-style-type: lower-alpha;\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<div class=\"elementToProof\" role=\"presentation\">Based on the SBA\'s SOP 50 10; the SBA\'s prepayment penalty (&quot;Subsidy Recoupment Fee&quot;) only applies to loans\r\n<u>&gt;</u>&nbsp;15 years. We negotiated for a maturity date inside this 15 year threshold with CFB in order to prevent any prepayment penalties</div>\r\n</li></ol>\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); list-style-type: &quot;3) &quot;;\">\r\n<div class=\"elementToProof\" role=\"presentation\">Prepayment Requirements:</div>\r\n</li><ol start=\"1\" data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:true}\" style=\"margin-top: 0px; margin-bottom: 0px; list-style-type: lower-alpha;\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<div class=\"elementToProof\" role=\"presentation\">21-day written notice to CFB</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<div class=\"elementToProof\" role=\"presentation\">Payment of all accrued interest</div>\r\n<div class=\"elementToProof\" role=\"presentation\">  </div>\r\n</li></ol>\r\n</ol>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nJust wanted to follow up and reconfirm as I couldn\'t recall the exact regulations during our call yesterday. In any event, we would prefer to utilize a credit instrument for this financing given the majority of the proceeds will be used for PP&amp;E. Would Brian\r\n be interested in a simple refi of our existing CFB loan and upsize us to a larger TL?&nbsp;</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"Signature\" class=\"elementToProof\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nBest,&nbsp;</div>\r\n<p class=\"elementToProof\" style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p class=\"elementToProof\" style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p class=\"elementToProof\" style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p class=\"elementToProof\" style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p class=\"elementToProof\" style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA22dde70e-5d87-6609-f903-89558fd08312\" class=\"OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color: rgb(0, 36, 81); margin: 0px;\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWAcc9270a2-895f-3304-a9bc-8dbb73300174\" class=\"OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color: rgb(0, 36, 81); margin: 0px;\">.com</a></u></span></p>\r\n<p class=\"elementToProof\" style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a href=\"https://lithiumbatterycompany.com/\" id=\"OWA7ebaeb6e-d6a0-4423-2b32-6ce05d342482\" class=\"OWAAutoLink\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color: rgb(0, 36, 81); margin: 0px;\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, June 6, 2025 3:54 PM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks!</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nLet’s schedule Monday at 3.</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nWaiting on my guy to respond.&nbsp;</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks for the reminder!</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\n<br>\r\n</div>\r\n<div id=\"x_bloop_sign_1749239623809675008\" class=\"x_bloop_sign\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On June 6, 2025 at 3:53:33 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick, my week is filling up toward the end of the week but still available on Monday &amp; Tuesday.</div>\r\n<div id=\"x_Signature\" class=\"x_elementToProof\">\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<p class=\"x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p class=\"x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">I Chief Financial Officer</span></p>\r\n<p class=\"x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p class=\"x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p class=\"x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p class=\"x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b> Thursday, June 5, 2025 9:02 AM<br>\r\n<b>To:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div dir=\"ltr\">\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick,&nbsp;<br>\r\n<br>\r\nI am generally flexible next week Mon-Wed any time after 130 if that works? Would be a good time to chat - we are meeting with our officials from the White House, SBA &amp; DOE this morning at 10am to review our teaser ahead of kicking-off our capital raise.<br>\r\n<br>\r\nBest,&nbsp;</div>\r\n<div id=\"x_x_Signature\" class=\"x_x_elementToProof\">\r\n<p class=\"x_x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p class=\"x_x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">I Chief Financial Officer</span></p>\r\n<p class=\"x_x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p class=\"x_x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p class=\"x_x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p class=\"x_x_elementToProof\" style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, June 3, 2025 8:19 AM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Hey Jarrett! I missed this…sorry.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">What’s next week looking like?</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">I want to add Brian to our next call (my guy).</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<br>\r\n<div class=\"x_x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_x_airmail_on\">On May 23, 2025 at 12:27:57 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nSounds good Rick - next week we are generally free Wednesday-Friday from 1030-12am | 1-3pm est. Let me know if a time in that range works and we can get a calendar on the books. Have a great weekend</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_x_Signature\" class=\"x_x_x_elementToProof\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, May 23, 2025 8:38 AM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div id=\"x_x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks for this Jarrett.</div>\r\n<div id=\"x_x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nLet’s schedule a call with your team and my guy for later next week…</div>\r\n<div id=\"x_x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nLet me know what’s best.</div>\r\n<div id=\"x_x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks again!</div>\r\n<div id=\"x_x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div id=\"x_x_x_x_bloop_sign_1748003865719297792\" class=\"x_x_x_x_bloop_sign\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_x_x_airmail_on\">On May 21, 2025 at 3:34:57 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_x_x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nRick,&nbsp;<br>\r\n<br>\r\nPlease find attached a high-level investment teaser with an overview of our recent transaction, equipment purchase, facility layout and letters of support for our manufacturing aspirations from Mayor Castor, who\'s support has been instrumental in our project,\r\n as well as from our clients (volume of around ~$14.8m) for your review. Please let me know if any questions and we look forward to hearing your interest level.&nbsp;</div>\r\n<div class=\"x_x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nBest,&nbsp;</div>\r\n<div class=\"x_x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_x_x_Signature\" class=\"x_x_x_x_elementToProof\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_x_x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, May 20, 2025 4:00 PM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">NDAs in place, next steps…</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Let me know what\'s best for your team.&nbsp;</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_x_x_x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_x_x_x_airmail_on\">On May 15, 2025 at 8:17:14 AM, Rick (<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_x_x_x_clean_bq\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Sounds good.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Hope we can help you sooner rather than later!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">All my best,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_x_x_x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_x_x_x_airmail_on\">On May 14, 2025 at 1:53:19 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_x_x_x_clean_bq\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div>\r\n<div dir=\"ltr\">Rick, apologies for the delay - after our call yesterday we were engaged by the Shell Corporation and today we are receiving an award at the Florida SBDC event so have been in meetings nearly constantly and I fell behind on kicking over the MNDA.\r\n It’s first on my to-do list after this event!</div>\r\n</div>\r\n<div id=\"x_x_x_x_x_ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"x_x_x_x_x_ms-outlook-mobile-signature\">\r\n<div></div>\r\n</div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_x_x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, May 13, 2025 9:02:50 AM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Next steps!</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div id=\"x_x_x_x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nGot it! Will be there.. thanks!</div>\r\n<div id=\"x_x_x_x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div id=\"x_x_x_x_x_x_bloop_sign_1747141266137078016\" class=\"x_x_x_x_x_x_bloop_sign\">\r\nRick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_x_x_x_x_airmail_on\">On May 13, 2025 at 8:59:30 AM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_x_x_x_x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_x_x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick,&nbsp;</div>\r\n<div class=\"x_x_x_x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nYes, 10am this morning - I just resent the zoom invite. Look forward to speaking soon</div>\r\n<div class=\"x_x_x_x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_x_x_x_x_Signature\" class=\"x_x_x_x_x_x_elementToProof\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWAa99fda94-e056-c619-a196-a33c2ff2877b\" class=\"x_x_x_x_x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA098259f9-2a26-ebbc-a687-62be0f9f5580\" class=\"x_x_x_x_x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" id=\"OWA6dd24376-6350-4d35-05a2-83112c570eec\" class=\"x_x_x_x_x_x_OWAAutoLink\" title=\"https://lithiumbatterycompany.com/\" data-linkindex=\"10\" data-auth=\"NotApplicable\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_x_x_x_x_appendonsend\"></div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block; width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Rick<br>\r\n<b>Sent:</b>&nbsp;Tuesday, May 13, 2025 7:28 AM<br>\r\n<b>To:</b>&nbsp;Jarrett Brownfield<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps! </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div>Not sure if I responded accurately.&nbsp;</div>\r\n<div>I’m open at 10a today if that works.&nbsp;</div>\r\n<div>Thanks!</div>\r\n<div>Rick</div>\r\n<div><br>\r\n</div>\r\n<div>Rick Mislan, PhD</div>\r\n<div>[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one</div>\r\n<div><img height=\"11\" style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n<p style=\"color:rgb(0,0,0)\">On May 12, 2025 at 2:26:32 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\" id=\"OWA6fe9a5f9-a715-dff3-4833-c48bb98fbcc5\" class=\"x_x_x_x_x_x_OWAAutoLink\" style=\"margin-top:0px; margin-bottom:0px\">jarrett@lithiumbatterycompany.com</a>)\r\n wrote:</p>\r\n<blockquote>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nWe enjoyed meeting with you as well and thanks for circling back - please find below availability and we look forward to speaking:<br>\r\n<br>\r\n(all times EST)<br>\r\nToday:&nbsp; 3-4:30pm<br>\r\nTuesday (5.13): 930-11am || 1130am-1pm<br>\r\nWednesday (5.14): 10am-1130<br>\r\nThursday (5.15): 12-3pm&nbsp;<br>\r\nFriday (5.16): 9am-3pm<br>\r\n<br>\r\n<br>\r\nBest,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_x_x_x_x_x_Signature\">\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:11pt; color:black\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black; background-color:white\">Partner</span>\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">\r\nI Chief Financial Officer</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:10pt; color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA85b348c0-ceb1-fac7-e499-95d5a963cc38\" class=\"x_x_x_x_x_x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"8\" style=\"color:rgb(0,36,81); margin:0px\">Jarrett@</a>lithiumbatterycompany<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"OWA9b7813f6-bff5-7b2b-9efa-d558ec60b684\" class=\"x_x_x_x_x_x_x_OWAAutoLink\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" data-linkindex=\"9\" style=\"color:rgb(0,36,81); margin:0px\">.com</a></u></span></p>\r\n<p style=\"text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont; font-size:9pt; color:rgb(0,36,81)\"><u><a href=\"https://lithiumbatterycompany.com/\" id=\"OWA93baa47e-fc9a-556d-beba-278bafbdf824\" class=\"x_x_x_x_x_x_x_OWAAutoLink\" title=\"https://lithiumbatterycompany.com/\" data-auth=\"NotApplicable\" data-linkindex=\"10\" style=\"color:rgb(0,36,81); margin:0px\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_x_x_x_x_x_appendonsend\"></div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_x_x_x_x_x_x_divRplyFwdMsg\" dir=\"ltr\"><span style=\"font-family:Calibri,sans-serif; font-size:11pt; color:rgb(0,0,0)\"><b>From:</b>&nbsp;Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b>&nbsp;Sunday, May 11, 2025 9:18 AM<br>\r\n<b>To:</b>&nbsp;nathan@lithiumbatterycompany.com &lt;nathan@lithiumbatterycompany.com&gt;; jordan@lithiumbatterycompany.com &lt;jordan@lithiumbatterycompany.com&gt;; ronald@lithiumbatterycompany.com &lt;ronald@lithiumbatterycompany.com&gt;; jarrett@lithiumbatterycompany.com &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps!</span>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Ok, following up again,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">this time for a request&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">to discuss next steps.</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Interested in money? :)</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Let’s set up a time to chat soon.</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Thanks,</div>\r\n<div style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Rick Mislan, PhD</div>\r\n<div style=\"direction:ltr\"><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" id=\"OWA6f2250de-935b-77bd-ce88-2cfb3cbe652e\" class=\"x_x_x_x_x_x_OWAAutoLink\" data-auth=\"NotApplicable\">https://mavrix.one</a></div>\r\n<div style=\"direction:ltr\"><img height=\"11\" style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr\">On May 8, 2025 at 1:33:01 PM, Rick (<a href=\"mailto:rick@mavrix.one\" id=\"OWA44b57871-3029-0cf0-fc3a-86d620da512e\" class=\"x_x_x_x_x_x_OWAAutoLink\" style=\"margin-top:0px; margin-bottom:0px\">rick@mavrix.one</a>) wrote:</p>\r\n<blockquote>\r\n<div style=\"direction:ltr; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<span style=\"background-color:rgb(255,255,255)\">Gentlemen,</span></div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nA pleasure meeting you all!</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nJust wanted to let you know that</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nI am talking to my team <a href=\"http://airmail.calendar/2025-05-11%2019:00:00%20EDT\" id=\"OWA8867e85c-bf8e-41be-d815-e78244229e9c\" class=\"x_x_x_x_x_x_OWAAutoLink\" data-auth=\"NotApplicable\">\r\ntonight</a></div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nhere in Treasure Island.&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nMy goal for <a href=\"http://airmail.calendar/2025-05-11%2019:00:00%20EDT\" id=\"OWA7aced99c-5963-164f-8e4a-9d96675a373f\" class=\"x_x_x_x_x_x_OWAAutoLink\" data-auth=\"NotApplicable\">\r\ntonight</a>&nbsp;is to</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\ndiscuss the mavrix&nbsp;portfolio and</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nplan out a schedule of calls</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nwith you for next steps.&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nAgain, I truly enjoyed meeting&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nand chatting with you all!&nbsp;</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nI’ll be in touch next week!</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nAll my best,</div>\r\n<div style=\"direction:ltr; text-align:left; text-indent:0px; font-family:UICTFontTextStyleBody; font-size:14px; color:rgb(0,0,0)\">\r\nRick</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Hi Rick,\r\n\r\nIt was great speaking with you and Brian yesterday. I really appreciate your help to facilitate an introduction and connect us. I wanted to circle back quickly regarding the prepayment/repayment features of our loan with CFB for clarification & avoidance of doubt:\r\n\r\n  1.\r\nLoan amount: $2,850,000\r\n  2.\r\nTerm: 14 years, 6 months\r\n     *\r\nBased on the SBA\'s SOP 50 10; the SBA\'s prepayment penalty (\"Subsidy Recoupment Fee\") only applies to loans > 15 years. We negotiated for a maturity date inside this 15 year threshold with CFB in order to prevent any prepayment penalties\r\n  3.\r\nPrepayment Requirements:\r\n     *\r\n21-day written notice to CFB\r\n     *\r\nPayment of all accrued interest\r\n  \r\n\r\nJust wanted to follow up and reconfirm as I couldn\'t recall the exact regulations during our call yesterday. In any event, we would prefer to utilize a credit instrument for this financing given the majority of the proceeds will be used for PP&E. Would Brian be interested in a simple refi of our existing CFB loan and upsize us to a larger TL?\r\n\r\nBest,\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, June 6, 2025 3:54 PM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nThanks!\r\nLet’s schedule Monday at 3.\r\nWaiting on my guy to respond.\r\nThanks for the reminder!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn June 6, 2025 at 3:53:33 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nHi Rick, my week is filling up toward the end of the week but still available on Monday & Tuesday.\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSent: Thursday, June 5, 2025 9:02 AM\r\nTo: Rick <rick@mavrix.one>\r\nSubject: Re: Next steps!\r\n\r\nHi Rick,\r\n\r\nI am generally flexible next week Mon-Wed any time after 130 if that works? Would be a good time to chat - we are meeting with our officials from the White House, SBA & DOE this morning at 10am to review our teaser ahead of kicking-off our capital raise.\r\n\r\nBest,\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, June 3, 2025 8:19 AM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nHey Jarrett! I missed this…sorry.\r\nWhat’s next week looking like?\r\nI want to add Brian to our next call (my guy).\r\nThanks!\r\nRick\r\n\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 23, 2025 at 12:27:57 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nSounds good Rick - next week we are generally free Wednesday-Friday from 1030-12am | 1-3pm est. Let me know if a time in that range works and we can get a calendar on the books. Have a great weekend\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, May 23, 2025 8:38 AM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nThanks for this Jarrett.\r\nLet’s schedule a call with your team and my guy for later next week…\r\nLet me know what’s best.\r\nThanks again!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 21, 2025 at 3:34:57 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nRick,\r\n\r\nPlease find attached a high-level investment teaser with an overview of our recent transaction, equipment purchase, facility layout and letters of support for our manufacturing aspirations from Mayor Castor, who\'s support has been instrumental in our project, as well as from our clients (volume of around ~$14.8m) for your review. Please let me know if any questions and we look forward to hearing your interest level.\r\n\r\nBest,\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, May 20, 2025 4:00 PM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nNDAs in place, next steps…\r\nLet me know what\'s best for your team.\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 15, 2025 at 8:17:14 AM, Rick (rick@mavrix.one<mailto:rick@mavrix.one>) wrote:\r\n\r\nSounds good.\r\nHope we can help you sooner rather than later!\r\nAll my best,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 14, 2025 at 1:53:19 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nRick, apologies for the delay - after our call yesterday we were engaged by the Shell Corporation and today we are receiving an award at the Florida SBDC event so have been in meetings nearly constantly and I fell behind on kicking over the MNDA. It’s first on my to-do list after this event!\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, May 13, 2025 9:02:50 AM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nGot it! Will be there.. thanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 13, 2025 at 8:59:30 AM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nYes, 10am this morning - I just resent the zoom invite. Look forward to speaking soon\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n\r\n________________________________\r\nFrom: Rick\r\nSent: Tuesday, May 13, 2025 7:28 AM\r\nTo: Jarrett Brownfield\r\nSubject: Re: Next steps!\r\n\r\nNot sure if I responded accurately.\r\nI’m open at 10a today if that works.\r\nThanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\n[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one\r\n[X]\r\n\r\nOn May 12, 2025 at 2:26:32 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nWe enjoyed meeting with you as well and thanks for circling back - please find below availability and we look forward to speaking:\r\n\r\n(all times EST)\r\nToday:  3-4:30pm\r\nTuesday (5.13): 930-11am || 1130am-1pm\r\nWednesday (5.14): 10am-1130\r\nThursday (5.15): 12-3pm\r\nFriday (5.16): 9am-3pm\r\n\r\n\r\nBest,\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Sunday, May 11, 2025 9:18 AM\r\nTo: nathan@lithiumbatterycompany.com <nathan@lithiumbatterycompany.com>; jordan@lithiumbatterycompany.com <jordan@lithiumbatterycompany.com>; ronald@lithiumbatterycompany.com <ronald@lithiumbatterycompany.com>; jarrett@lithiumbatterycompany.com <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nOk, following up again,\r\nthis time for a request\r\nto discuss next steps.\r\n\r\nInterested in money? :)\r\nLet’s set up a time to chat soon.\r\n\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 8, 2025 at 1:33:01 PM, Rick (rick@mavrix.one<mailto:rick@mavrix.one>) wrote:\r\n\r\nGentlemen,\r\n\r\nA pleasure meeting you all!\r\n\r\nJust wanted to let you know that\r\nI am talking to my team tonight<http://airmail.calendar/2025-05-11%2019:00:00%20EDT>\r\nhere in Treasure Island.\r\n\r\nMy goal for tonight<http://airmail.calendar/2025-05-11%2019:00:00%20EDT> is to\r\ndiscuss the mavrix portfolio and\r\nplan out a schedule of calls\r\nwith you for next steps.\r\n\r\nAgain, I truly enjoyed meeting\r\nand chatting with you all!\r\n\r\nI’ll be in touch next week!\r\n\r\nAll my best,\r\nRick\r\n\r\n',0,0,0,0,0,0,'2025-06-10 14:28:55','2025-12-09 19:12:43','2025-12-09 19:12:43','2025-12-09 19:12:43',NULL,NULL,NULL),
(363,4,'<CANkMA8VCXgp7_QRoMU=ZUc8ZGhf+KwtPfXqrX5=3rs8FtWsBcQ@mail.gmail.com>',NULL,NULL,'Mavrix <> SL 3','avalkenburg@strategic-logix.com','Andrew Valkenburg','<div dir=\"ltr\"><div>Rick,</div><div><br></div><div>Looking to check in if/when you&#39;d like to meet again. Had a few trips added for next week, so wasn&#39;t sure if you wanted to get together this week at all. </div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p><font color=\"#000000\"><b><a href=\"https://d5Fk0J04.na1.hs-sales-engage.com/Ctc/ZY+23284/d5Fk0J04/Jks2-6qcW69sMD-6lZ3p3W4JBM684-zzGgW3R5Z7n4mSPNDW8bJ48z9bnX-yW4_HP487GBDWwW71rpr36Q63q_W1TlDPD95Cm_bW5KJP6448Q5ShN6MBxcgwG_QnW3Z3bhX7fDWQfW2xRyXk3-Bb8HW3zRsdZ1JQh6_W4dKLDY3hLL5rW6WFXrT315_CCW1dNSP14K69dHW8-l0_T99BSLZW260Zgw6TdmHfMFhkNlXdYs9VXJzvm7XFsVLN3TN0klwSz3CW47WTD13TngfCf7h43Jq04\" target=\"_blank\">VISIT OUR WEBSITE</a></b></font></p><p><strong><font color=\"#000000\"><br></font></strong></p><p><strong><font color=\"#000000\">Sincerely,</font></strong></p><p><font color=\"#000000\">Andrew Valkenburg<br>Chief Operations Officer, Strategic Logix LLC<br>484-225-9132<br><a rel=\"noopener\">avalkenburg@strategic-logix.com</a></font></p></div></div><img src=\"https://d5Fk0J04.na1.hs-sales-engage.com/Cto/ZY+23284/d5Fk0J04/R5R8b46GFN8DRvLG2fJtJW3M1SJx21hM7hW1-Ypq51XnY_PW1GyZgk3JD_VkW25d5521--yY3W3JHSfp1T_YtRn1--v6q4W1\" alt=\"\" height=\"1\" width=\"1\" style=\"display: none !important;\"><div></div></div>','Rick,\r\n\r\nLooking to check in if/when you\'d like to meet again. Had a few trips added\r\nfor next week, so wasn\'t sure if you wanted to get together this week at\r\nall.\r\n\r\n-- \r\n\r\n*VISIT OUR WEBSITE\r\n<https://d5Fk0J04.na1.hs-sales-engage.com/Ctc/ZY+23284/d5Fk0J04/Jks2-6qcW69sMD-6lZ3p3W4JBM684-zzGgW3R5Z7n4mSPNDW8bJ48z9bnX-yW4_HP487GBDWwW71rpr36Q63q_W1TlDPD95Cm_bW5KJP6448Q5ShN6MBxcgwG_QnW3Z3bhX7fDWQfW2xRyXk3-Bb8HW3zRsdZ1JQh6_W4dKLDY3hLL5rW6WFXrT315_CCW1dNSP14K69dHW8-l0_T99BSLZW260Zgw6TdmHfMFhkNlXdYs9VXJzvm7XFsVLN3TN0klwSz3CW47WTD13TngfCf7h43Jq04>*\r\n\r\n\r\n*Sincerely,*\r\n\r\nAndrew Valkenburg\r\nChief Operations Officer, Strategic Logix LLC\r\n484-225-9132\r\navalkenburg@strategic-logix.com',0,0,0,0,0,0,'2025-06-10 20:41:51','2025-12-09 19:12:43','2025-12-09 19:12:43','2025-12-09 19:12:43',NULL,NULL,NULL),
(364,4,' <BY5PR16MB342698ADC33A4272B8F0852AFE6AA@BY5PR16MB3426.namprd16.prod.outlook.com>',NULL,NULL,'Re: Next steps!','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nHi Rick,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<span style=\"font-size: 12pt;\">Please follow this link (</span><span style=\"font-size: 16px; background-color: rgb(255, 255, 255);\"><a style=\"margin: 0px; background-color: rgb(255, 255, 255); text-align: left;\" class=\"OWAAutoLink elementToProof\" id=\"LPlnkOWA556b405a-9e97-5066-f598-04f315597cc4\" href=\"https://kdsllc-my.sharepoint.com/:f:/g/personal/jarrett_brownfield_jdcapitaladvisors_com/Ehrlr0vqXwBCl4Wi89_Lv1UBff1whXyu81Og5KybXSIT8w\">LBC\r\n Video</a>)</span><span style=\"font-size: 12pt;\">&nbsp;to the shared drive to view LBC\'s advanced automated equipment in-the-making</span></div>\r\n<div class=\"elementToProof\" id=\"Signature\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"8\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWA1e7b3f29-01a4-4763-0a17-4a3f7a32aedd\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">Jarrett@</a>lithiumbatterycompany<a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"9\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWA2480a4cd-d07a-d401-1d50-7ad69ec976d6\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">.com</a></u></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-auth=\"NotApplicable\" data-linkindex=\"10\" title=\"https://lithiumbatterycompany.com/\" class=\"OWAAutoLink\" id=\"OWA80d9cc1c-04c9-fc13-5e78-c08adc551a75\" href=\"https://lithiumbatterycompany.com/\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<hr style=\"display: inline-block; width: 98%;\">\r\n<div id=\"divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b>&nbsp;Tuesday, June 10, 2025 10:28 AM<br>\r\n<b>To:</b>&nbsp;Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps!</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHi Rick,&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nIt was great speaking with you and Brian yesterday. I really appreciate your help to facilitate an introduction and connect us. I wanted to circle back quickly regarding the prepayment/repayment features of our loan with CFB for clarification &amp; avoidance of\r\n doubt:</div>\r\n<ol style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px;\" data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:false,&quot;orderedStyleType&quot;:3}\" start=\"1\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); list-style-type: &quot;1) &quot;;\">\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\" role=\"presentation\">\r\nLoan amount: $2,850,000</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); list-style-type: &quot;2) &quot;;\">\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\" role=\"presentation\">\r\nTerm: 14 years, 6 months&nbsp;</div>\r\n</li><ol style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px; list-style-type: lower-alpha;\" data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:true}\" start=\"1\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\" role=\"presentation\">\r\nBased on the SBA\'s SOP 50 10; the SBA\'s prepayment penalty (&quot;Subsidy Recoupment Fee&quot;) only applies to loans\r\n<u>&gt;</u>&nbsp;15 years. We negotiated for a maturity date inside this 15 year threshold with CFB in order to prevent any prepayment penalties</div>\r\n</li></ol>\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); list-style-type: &quot;3) &quot;;\">\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\" role=\"presentation\">\r\nPrepayment Requirements:</div>\r\n</li><ol style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px; list-style-type: lower-alpha;\" data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:true}\" start=\"1\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\" role=\"presentation\">\r\n21-day written notice to CFB</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\" role=\"presentation\">\r\nPayment of all accrued interest</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\" role=\"presentation\">\r\n  </div>\r\n</li></ol>\r\n</ol>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nJust wanted to follow up and reconfirm as I couldn\'t recall the exact regulations during our call yesterday. In any event, we would prefer to utilize a credit instrument for this financing given the majority of the proceeds will be used for PP&amp;E. Would Brian\r\n be interested in a simple refi of our existing CFB loan and upsize us to a larger TL?&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"x_Signature\">\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nBest,&nbsp;</div>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"8\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"x_OWAAutoLink\" id=\"OWA302833fd-14d5-dc13-0d73-fbf35d1f572e\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">Jarrett@</a>lithiumbatterycompany<a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"9\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"x_OWAAutoLink\" id=\"OWA67949898-9d4a-bed2-36a9-3994efa1d9d0\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">.com</a></u></span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-auth=\"NotApplicable\" data-linkindex=\"10\" title=\"https://lithiumbatterycompany.com/\" class=\"x_OWAAutoLink\" id=\"OWA57924615-55aa-24f4-f978-4cb0545cbb16\" href=\"https://lithiumbatterycompany.com/\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div id=\"x_divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b>&nbsp;Friday, June 6, 2025 3:54 PM<br>\r\n<b>To:</b>&nbsp;Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps!</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr; margin: 0px; font-family: Helvetica, Arial; font-size: 13px;\" id=\"x_x_bloop_customfont\">\r\nThanks!</div>\r\n<div style=\"direction: ltr; margin: 0px; font-family: Helvetica, Arial; font-size: 13px;\" id=\"x_x_bloop_customfont\">\r\nLet’s schedule Monday at 3.</div>\r\n<div style=\"direction: ltr; margin: 0px; font-family: Helvetica, Arial; font-size: 13px;\" id=\"x_x_bloop_customfont\">\r\nWaiting on my guy to respond.&nbsp;</div>\r\n<div style=\"direction: ltr; margin: 0px; font-family: Helvetica, Arial; font-size: 13px;\" id=\"x_x_bloop_customfont\">\r\nThanks for the reminder!</div>\r\n<div style=\"direction: ltr; margin: 0px; font-family: Helvetica, Arial; font-size: 13px;\" id=\"x_x_bloop_customfont\">\r\nRick</div>\r\n<div style=\"direction: ltr; margin: 0px; font-family: Helvetica, Arial; font-size: 13px;\" id=\"x_x_bloop_customfont\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_bloop_sign_1749239623809675008\">\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Rick Mislan, PhD</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><img style=\"height: 11px;\" height=\"11\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><br>\r\n</div>\r\n<p style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px;\"><span style=\"font-family: Helvetica, Arial; font-size: 13px;\">On June 6, 2025 at 3:53:33 PM, Jarrett Brownfield (<a style=\"margin-top: 0px; margin-bottom: 0px;\" class=\"OWAAutoLink\" id=\"OWA57e420ae-c49e-0fb0-fb98-e351da462c8a\" href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>)\r\n wrote:</span></p>\r\n<blockquote>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHi Rick, my week is filling up toward the end of the week but still available on Monday &amp; Tuesday.</div>\r\n<div id=\"x_x_Signature\">\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"8\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWA9d01784e-b5ec-a751-52cc-272da3c83f77\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">Jarrett@</a>lithiumbatterycompany<a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"9\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWA8363ab68-20fa-4e85-953e-70e297e4f536\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">.com</a></u></span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-auth=\"NotApplicable\" data-linkindex=\"10\" title=\"https://lithiumbatterycompany.com/\" class=\"OWAAutoLink\" id=\"OWA824c5e18-3d33-4d6a-02a6-b404ac8b9a47\" href=\"https://lithiumbatterycompany.com/\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_appendonsend\"></div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div id=\"x_x_divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b>&nbsp;Thursday, June 5, 2025 9:02 AM<br>\r\n<b>To:</b>&nbsp;Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps!</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHi Rick,&nbsp;<br>\r\n<br>\r\nI am generally flexible next week Mon-Wed any time after 130 if that works? Would be a good time to chat - we are meeting with our officials from the White House, SBA &amp; DOE this morning at 10am to review our teaser ahead of kicking-off our capital raise.<br>\r\n<br>\r\nBest,&nbsp;</div>\r\n<div id=\"x_x_x_Signature\">\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"8\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWA4c436b48-e86a-1c73-b098-781d5b84a609\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">Jarrett@</a>lithiumbatterycompany<a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"9\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWA2ed12189-897e-5d37-3a1a-9e3fce9b6b96\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">.com</a></u></span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-auth=\"NotApplicable\" data-linkindex=\"10\" title=\"https://lithiumbatterycompany.com/\" class=\"OWAAutoLink\" id=\"OWAef22f17c-363b-e88e-8ae2-21c9e31eeae3\" href=\"https://lithiumbatterycompany.com/\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_x_appendonsend\"></div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div id=\"x_x_x_divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b>&nbsp;Tuesday, June 3, 2025 8:19 AM<br>\r\n<b>To:</b>&nbsp;Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps!</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Hey Jarrett! I missed this…sorry.</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">What’s next week looking like?</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">I want to add Brian to our next call (my guy).</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Thanks!</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Rick</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Rick Mislan, PhD</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><img style=\"height: 11px;\" height=\"11\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><br>\r\n</div>\r\n<p style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px;\"><span style=\"font-family: Helvetica, Arial; font-size: 13px;\">On May 23, 2025 at 12:27:57 PM, Jarrett Brownfield (<a style=\"margin-top: 0px; margin-bottom: 0px;\" class=\"OWAAutoLink\" id=\"OWA5123bba9-a8ab-9c74-9c58-49b58188b789\" href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>)\r\n wrote:</span></p>\r\n<blockquote>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nSounds good Rick - next week we are generally free Wednesday-Friday from 1030-12am | 1-3pm est. Let me know if a time in that range works and we can get a calendar on the books. Have a great weekend</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_x_x_Signature\">\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"8\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWAafbc8b66-9512-b8d5-b9d4-a81ba6200b51\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">Jarrett@</a>lithiumbatterycompany<a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"9\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWA19afa2dd-b7b6-a5af-c621-5f20a31cc12b\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">.com</a></u></span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-auth=\"NotApplicable\" data-linkindex=\"10\" title=\"https://lithiumbatterycompany.com/\" class=\"OWAAutoLink\" id=\"OWAf735ef2e-dc9d-0a43-10d4-627dde058186\" href=\"https://lithiumbatterycompany.com/\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_x_x_appendonsend\"></div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div id=\"x_x_x_x_divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b>&nbsp;Friday, May 23, 2025 8:38 AM<br>\r\n<b>To:</b>&nbsp;Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps!</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr; margin: 0px; font-family: Helvetica, Arial; font-size: 13px;\" id=\"x_x_x_x_x_bloop_customfont\">\r\nThanks for this Jarrett.</div>\r\n<div style=\"direction: ltr; margin: 0px; font-family: Helvetica, Arial; font-size: 13px;\" id=\"x_x_x_x_x_bloop_customfont\">\r\nLet’s schedule a call with your team and my guy for later next week…</div>\r\n<div style=\"direction: ltr; margin: 0px; font-family: Helvetica, Arial; font-size: 13px;\" id=\"x_x_x_x_x_bloop_customfont\">\r\nLet me know what’s best.</div>\r\n<div style=\"direction: ltr; margin: 0px; font-family: Helvetica, Arial; font-size: 13px;\" id=\"x_x_x_x_x_bloop_customfont\">\r\nThanks again!</div>\r\n<div style=\"direction: ltr; margin: 0px; font-family: Helvetica, Arial; font-size: 13px;\" id=\"x_x_x_x_x_bloop_customfont\">\r\nRick</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><br>\r\n</div>\r\n<div id=\"x_x_x_x_x_bloop_sign_1748003865719297792\">\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Rick Mislan, PhD</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><img style=\"height: 11px;\" height=\"11\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><br>\r\n</div>\r\n<p style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px;\"><span style=\"font-family: Helvetica, Arial; font-size: 13px;\">On May 21, 2025 at 3:34:57 PM, Jarrett Brownfield (<a style=\"margin-top: 0px; margin-bottom: 0px;\" class=\"OWAAutoLink\" id=\"OWA42b7267d-294d-3541-e53d-050e88c97303\" href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>)\r\n wrote:</span></p>\r\n<blockquote>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nRick,&nbsp;<br>\r\n<br>\r\nPlease find attached a high-level investment teaser with an overview of our recent transaction, equipment purchase, facility layout and letters of support for our manufacturing aspirations from Mayor Castor, who\'s support has been instrumental in our project,\r\n as well as from our clients (volume of around ~$14.8m) for your review. Please let me know if any questions and we look forward to hearing your interest level.&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nBest,&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_x_x_x_Signature\">\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"8\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWA3c8a7919-b11e-f441-0683-86cc1eeaaaf7\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">Jarrett@</a>lithiumbatterycompany<a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"9\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWAc5bcdc4c-98a1-f4b9-10cc-b744896072fa\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">.com</a></u></span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-auth=\"NotApplicable\" data-linkindex=\"10\" title=\"https://lithiumbatterycompany.com/\" class=\"OWAAutoLink\" id=\"OWA109cd8a7-bc38-e5d5-72bb-5b416216fadf\" href=\"https://lithiumbatterycompany.com/\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_x_x_x_appendonsend\"></div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div id=\"x_x_x_x_x_divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b>&nbsp;Tuesday, May 20, 2025 4:00 PM<br>\r\n<b>To:</b>&nbsp;Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps!</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">NDAs in place, next steps…</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Let me know what\'s best for your team.&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Thanks,</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Rick</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Rick Mislan, PhD</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><img style=\"height: 11px;\" height=\"11\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><br>\r\n</div>\r\n<p style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px;\"><span style=\"font-family: Helvetica, Arial; font-size: 13px;\">On May 15, 2025 at 8:17:14 AM, Rick (<a style=\"margin-top: 0px; margin-bottom: 0px;\" class=\"OWAAutoLink\" id=\"OWA13097ca4-3110-bc76-fb81-00caa8c6ff33\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>)\r\n wrote:</span></p>\r\n<blockquote>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Sounds good.</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Hope we can help you sooner rather than later!</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">All my best,</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Rick</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Rick Mislan, PhD</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><img style=\"height: 11px;\" height=\"11\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><br>\r\n</div>\r\n<p style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px;\"><span style=\"font-family: Helvetica, Arial; font-size: 13px;\">On May 14, 2025 at 1:53:19 PM, Jarrett Brownfield (<a style=\"margin-top: 0px; margin-bottom: 0px;\" class=\"OWAAutoLink\" id=\"OWAd5d2aa1c-feb2-bf90-f8b5-fc5797b0db3c\" href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>)\r\n wrote:</span></p>\r\n<blockquote>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Rick, apologies for the delay - after our call yesterday we were engaged by the Shell Corporation and today we are receiving an award at the Florida SBDC event so have been in meetings\r\n nearly constantly and I fell behind on kicking over the MNDA. It’s first on my to-do list after this event!</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\" id=\"x_x_x_x_x_x_ms-outlook-mobile-body-separator-line\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_x_x_x_x_ms-outlook-mobile-signature\"></div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div id=\"x_x_x_x_x_x_divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b>&nbsp;Tuesday, May 13, 2025 9:02:50 AM<br>\r\n<b>To:</b>&nbsp;Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps!</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr; margin: 0px; font-family: Helvetica, Arial; font-size: 13px;\" id=\"x_x_x_x_x_x_x_bloop_customfont\">\r\nGot it! Will be there.. thanks!</div>\r\n<div style=\"direction: ltr; margin: 0px; font-family: Helvetica, Arial; font-size: 13px;\" id=\"x_x_x_x_x_x_x_bloop_customfont\">\r\nRick</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><br>\r\n</div>\r\n<div id=\"x_x_x_x_x_x_x_bloop_sign_1747141266137078016\">\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Rick Mislan, PhD</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><img style=\"height: 11px;\" height=\"11\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><br>\r\n</div>\r\n<p style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px;\"><span style=\"font-family: Helvetica, Arial; font-size: 13px;\">On May 13, 2025 at 8:59:30 AM, Jarrett Brownfield (<a style=\"margin-top: 0px; margin-bottom: 0px;\" class=\"OWAAutoLink\" id=\"OWA145db186-3d36-003a-d7aa-672c1671e724\" href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>)\r\n wrote:</span></p>\r\n<blockquote>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHi Rick,&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nYes, 10am this morning - I just resent the zoom invite. Look forward to speaking soon</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_x_x_x_x_x_Signature\">\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"8\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"x_x_x_x_x_x_x_OWAAutoLink\" id=\"OWA993183be-7728-a00e-3856-799f5c220aa2\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">Jarrett@</a>lithiumbatterycompany<a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"9\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"x_x_x_x_x_x_x_OWAAutoLink\" id=\"OWA71954012-d5c5-b924-7201-3e98750d231d\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">.com</a></u></span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-auth=\"NotApplicable\" data-linkindex=\"10\" title=\"https://lithiumbatterycompany.com/\" class=\"x_x_x_x_x_x_x_OWAAutoLink\" id=\"OWA607a4a7f-0d91-2360-d610-e1e1bdac940e\" href=\"https://lithiumbatterycompany.com/\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_x_x_x_x_x_appendonsend\"></div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div style=\"direction: ltr; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Rick<br>\r\n<b>Sent:</b>&nbsp;Tuesday, May 13, 2025 7:28 AM<br>\r\n<b>To:</b>&nbsp;Jarrett Brownfield<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps!</div>\r\n<div style=\"direction: ltr; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Not sure if I responded accurately.&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">I’m open at 10a today if that works.&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Thanks!</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Rick</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Rick Mislan, PhD</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><img style=\"height: 11px;\" height=\"11\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n<p style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px; color: rgb(0, 0, 0);\">\r\n<span style=\"font-family: Helvetica, Arial; font-size: 13px;\">On May 12, 2025 at 2:26:32 PM, Jarrett Brownfield (<a style=\"margin-top: 0px; margin-bottom: 0px;\" class=\"x_x_x_x_x_x_x_OWAAutoLink\" id=\"OWA730c0fa2-dcd3-ed84-ddd8-eb753fa72491\" href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>)\r\n wrote:</span></p>\r\n<blockquote>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHi Rick,&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nWe enjoyed meeting with you as well and thanks for circling back - please find below availability and we look forward to speaking:<br>\r\n<br>\r\n(all times EST)<br>\r\nToday:&nbsp; 3-4:30pm<br>\r\nTuesday (5.13): 930-11am || 1130am-1pm<br>\r\nWednesday (5.14): 10am-1130<br>\r\nThursday (5.15): 12-3pm&nbsp;<br>\r\nFriday (5.16): 9am-3pm<br>\r\n<br>\r\n<br>\r\nBest,&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_x_x_x_x_x_x_Signature\">\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner</span><span style=\"font-family: Helvetica, Arial; font-size: 13px;\">\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"8\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"x_x_x_x_x_x_x_x_OWAAutoLink\" id=\"OWA931b435b-26a8-e5e2-93b3-45cac15f45f1\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">Jarrett@</a>lithiumbatterycompany<a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"9\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"x_x_x_x_x_x_x_x_OWAAutoLink\" id=\"OWA08f26fa3-7a52-9a4a-6efa-e840144d5167\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">.com</a></u></span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-auth=\"NotApplicable\" data-linkindex=\"10\" title=\"https://lithiumbatterycompany.com/\" class=\"x_x_x_x_x_x_x_x_OWAAutoLink\" id=\"OWA1b0250e9-7ac5-e413-7410-be013c01c1ae\" href=\"https://lithiumbatterycompany.com/\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_x_x_x_x_x_x_x_appendonsend\"></div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div id=\"x_x_x_x_x_x_x_x_divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b>&nbsp;Sunday, May 11, 2025 9:18 AM<br>\r\n<b>To:</b>&nbsp;nathan@lithiumbatterycompany.com &lt;nathan@lithiumbatterycompany.com&gt;; jordan@lithiumbatterycompany.com &lt;jordan@lithiumbatterycompany.com&gt;; ronald@lithiumbatterycompany.com &lt;ronald@lithiumbatterycompany.com&gt;; jarrett@lithiumbatterycompany.com &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next steps!</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Ok, following up again,&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">this time for a request&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">to discuss next steps.</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Interested in money? :)</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Let’s set up a time to chat soon.</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Thanks,</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Rick</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\">Rick Mislan, PhD</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><a data-auth=\"NotApplicable\" class=\"x_x_x_x_x_x_x_OWAAutoLink\" id=\"OWA4a73b2a0-e284-9e8a-432a-29d0adcbeb2f\" href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><img style=\"height: 11px;\" height=\"11\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><br>\r\n</div>\r\n<p style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px;\"><span style=\"font-family: Helvetica, Arial; font-size: 13px;\">On May 8, 2025 at 1:33:01 PM, Rick (<a style=\"margin-top: 0px; margin-bottom: 0px;\" class=\"x_x_x_x_x_x_x_OWAAutoLink\" id=\"OWA2ea32da7-c3c0-ce95-2d69-044c11ce9b41\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>)\r\n wrote:</span></p>\r\n<blockquote>\r\n<div style=\"direction: ltr; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\n<span style=\"background-color: rgb(255, 255, 255);\">Gentlemen,</span></div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\nA pleasure meeting you all!</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\nJust wanted to let you know that</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\nI am talking to my team <a data-auth=\"NotApplicable\" class=\"x_x_x_x_x_x_x_OWAAutoLink\" id=\"OWAb2e2cbb9-b3cf-a07f-4bc9-a25e169d8048\" href=\"http://airmail.calendar/2025-05-11%2019:00:00%20EDT\">\r\ntonight</a></div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\nhere in Treasure Island.&nbsp;</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\nMy goal for <a data-auth=\"NotApplicable\" class=\"x_x_x_x_x_x_x_OWAAutoLink\" id=\"OWA627f3f7c-9962-61ec-4d9e-b3f7242fc876\" href=\"http://airmail.calendar/2025-05-11%2019:00:00%20EDT\">\r\ntonight</a>&nbsp;is to</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\ndiscuss the mavrix&nbsp;portfolio and</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\nplan out a schedule of calls</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\nwith you for next steps.&nbsp;</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\nAgain, I truly enjoyed meeting&nbsp;</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\nand chatting with you all!&nbsp;</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\nI’ll be in touch next week!</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\nAll my best,</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; font-family: UICTFontTextStyleBody; font-size: 14px; color: rgb(0, 0, 0);\">\r\nRick</div>\r\n<div style=\"direction: ltr; font-family: Helvetica, Arial; font-size: 13px;\"><br>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</body>\r\n</html>\r\n','Hi Rick,\r\n\r\nPlease follow this link (LBC Video<https://kdsllc-my.sharepoint.com/:f:/g/personal/jarrett_brownfield_jdcapitaladvisors_com/Ehrlr0vqXwBCl4Wi89_Lv1UBff1whXyu81Og5KybXSIT8w>) to the shared drive to view LBC\'s advanced automated equipment in-the-making\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSent: Tuesday, June 10, 2025 10:28 AM\r\nTo: Rick <rick@mavrix.one>\r\nSubject: Re: Next steps!\r\n\r\nHi Rick,\r\n\r\nIt was great speaking with you and Brian yesterday. I really appreciate your help to facilitate an introduction and connect us. I wanted to circle back quickly regarding the prepayment/repayment features of our loan with CFB for clarification & avoidance of doubt:\r\n\r\n  1.\r\nLoan amount: $2,850,000\r\n  2.\r\nTerm: 14 years, 6 months\r\n     *\r\nBased on the SBA\'s SOP 50 10; the SBA\'s prepayment penalty (\"Subsidy Recoupment Fee\") only applies to loans > 15 years. We negotiated for a maturity date inside this 15 year threshold with CFB in order to prevent any prepayment penalties\r\n  3.\r\nPrepayment Requirements:\r\n     *\r\n21-day written notice to CFB\r\n     *\r\nPayment of all accrued interest\r\n  \r\n\r\nJust wanted to follow up and reconfirm as I couldn\'t recall the exact regulations during our call yesterday. In any event, we would prefer to utilize a credit instrument for this financing given the majority of the proceeds will be used for PP&E. Would Brian be interested in a simple refi of our existing CFB loan and upsize us to a larger TL?\r\n\r\nBest,\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, June 6, 2025 3:54 PM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nThanks!\r\nLet’s schedule Monday at 3.\r\nWaiting on my guy to respond.\r\nThanks for the reminder!\r\nRick\r\n\r\nRick Mislan, PhD\r\n[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one\r\n[X]\r\n\r\n\r\nOn June 6, 2025 at 3:53:33 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nHi Rick, my week is filling up toward the end of the week but still available on Monday & Tuesday.\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSent: Thursday, June 5, 2025 9:02 AM\r\nTo: Rick <rick@mavrix.one>\r\nSubject: Re: Next steps!\r\n\r\nHi Rick,\r\n\r\nI am generally flexible next week Mon-Wed any time after 130 if that works? Would be a good time to chat - we are meeting with our officials from the White House, SBA & DOE this morning at 10am to review our teaser ahead of kicking-off our capital raise.\r\n\r\nBest,\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, June 3, 2025 8:19 AM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nHey Jarrett! I missed this…sorry.\r\nWhat’s next week looking like?\r\nI want to add Brian to our next call (my guy).\r\nThanks!\r\nRick\r\n\r\n\r\nRick Mislan, PhD\r\n[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one\r\n[X]\r\n\r\n\r\nOn May 23, 2025 at 12:27:57 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nSounds good Rick - next week we are generally free Wednesday-Friday from 1030-12am | 1-3pm est. Let me know if a time in that range works and we can get a calendar on the books. Have a great weekend\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, May 23, 2025 8:38 AM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nThanks for this Jarrett.\r\nLet’s schedule a call with your team and my guy for later next week…\r\nLet me know what’s best.\r\nThanks again!\r\nRick\r\n\r\nRick Mislan, PhD\r\n[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one\r\n[X]\r\n\r\n\r\nOn May 21, 2025 at 3:34:57 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nRick,\r\n\r\nPlease find attached a high-level investment teaser with an overview of our recent transaction, equipment purchase, facility layout and letters of support for our manufacturing aspirations from Mayor Castor, who\'s support has been instrumental in our project, as well as from our clients (volume of around ~$14.8m) for your review. Please let me know if any questions and we look forward to hearing your interest level.\r\n\r\nBest,\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, May 20, 2025 4:00 PM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nNDAs in place, next steps…\r\nLet me know what\'s best for your team.\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\n[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one\r\n[X]\r\n\r\n\r\nOn May 15, 2025 at 8:17:14 AM, Rick (rick@mavrix.one<mailto:rick@mavrix.one>) wrote:\r\n\r\nSounds good.\r\nHope we can help you sooner rather than later!\r\nAll my best,\r\nRick\r\n\r\nRick Mislan, PhD\r\n[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one\r\n[X]\r\n\r\n\r\nOn May 14, 2025 at 1:53:19 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nRick, apologies for the delay - after our call yesterday we were engaged by the Shell Corporation and today we are receiving an award at the Florida SBDC event so have been in meetings nearly constantly and I fell behind on kicking over the MNDA. It’s first on my to-do list after this event!\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, May 13, 2025 9:02:50 AM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nGot it! Will be there.. thanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\n[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one\r\n[X]\r\n\r\n\r\nOn May 13, 2025 at 8:59:30 AM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nYes, 10am this morning - I just resent the zoom invite. Look forward to speaking soon\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n\r\n________________________________\r\nFrom: Rick\r\nSent: Tuesday, May 13, 2025 7:28 AM\r\nTo: Jarrett Brownfield\r\nSubject: Re: Next steps!\r\n\r\nNot sure if I responded accurately.\r\nI’m open at 10a today if that works.\r\nThanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\n[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one\r\n[X]\r\n\r\nOn May 12, 2025 at 2:26:32 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nWe enjoyed meeting with you as well and thanks for circling back - please find below availability and we look forward to speaking:\r\n\r\n(all times EST)\r\nToday:  3-4:30pm\r\nTuesday (5.13): 930-11am || 1130am-1pm\r\nWednesday (5.14): 10am-1130\r\nThursday (5.15): 12-3pm\r\nFriday (5.16): 9am-3pm\r\n\r\n\r\nBest,\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Sunday, May 11, 2025 9:18 AM\r\nTo: nathan@lithiumbatterycompany.com <nathan@lithiumbatterycompany.com>; jordan@lithiumbatterycompany.com <jordan@lithiumbatterycompany.com>; ronald@lithiumbatterycompany.com <ronald@lithiumbatterycompany.com>; jarrett@lithiumbatterycompany.com <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Next steps!\r\n\r\nOk, following up again,\r\nthis time for a request\r\nto discuss next steps.\r\n\r\nInterested in money? :)\r\nLet’s set up a time to chat soon.\r\n\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn May 8, 2025 at 1:33:01 PM, Rick (rick@mavrix.one<mailto:rick@mavrix.one>) wrote:\r\n\r\nGentlemen,\r\n\r\nA pleasure meeting you all!\r\n\r\nJust wanted to let you know that\r\nI am talking to my team tonight<http://airmail.calendar/2025-05-11%2019:00:00%20EDT>\r\nhere in Treasure Island.\r\n\r\nMy goal for tonight<http://airmail.calendar/2025-05-11%2019:00:00%20EDT> is to\r\ndiscuss the mavrix portfolio and\r\nplan out a schedule of calls\r\nwith you for next steps.\r\n\r\nAgain, I truly enjoyed meeting\r\nand chatting with you all!\r\n\r\nI’ll be in touch next week!\r\n\r\nAll my best,\r\nRick\r\n\r\n',0,0,0,0,0,0,'2025-06-10 22:36:01','2025-12-09 19:12:44','2025-12-09 19:12:44','2025-12-09 19:12:44',NULL,NULL,NULL),
(365,4,' <BL3PR20MB49245341963D5CFC39470925AF75A@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: Based on our last convo...','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nRIck,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nTomorrow at 2pm PST would be great, and an invite would be convenient as well.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nThanks,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nJason</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Wednesday, June 11, 2025 11:50 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Based on our last convo...</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>Hi Justin,<br>\r\nCan we do today or tomorrow after 2pm PST?<br>\r\nIf so, do you want to send me an invite?<br>\r\nI’ll forward to Brian.<br>\r\nThanks!<br>\r\nRick&nbsp; <br>\r\n<br>\r\n<p class=\"x_airmail_on\">On June 10, 2025 at 12:04:32 AM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHey Rick,</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nWas travelling back from SF earlier today and guess I somehow missed this.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n2pm PST on Wednesday, Thursday, or Friday would work great for me.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nSo as for Unusual Machines, I\'ve looked into them in the past and actually reached out to their CEO a few months ago.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nThey are actually a Puerto Rico based company, and a subsidiary they purchased (Rotor Riot, a small drone component marketplace) was hit very hard by the T-Motor and DJI Blacklisting, which is what I think inspired them to start looking at domestic manufacturing.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nThe only thing they\'ve done so far is &quot;sign a site lease&quot;, and something tells me they arrived at the 50,000 unit volume projection because they were threatened by what we had announced we were doing, also their CEO never responded back to me.&nbsp;</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nThey are also a publicly traded company, and to be honest, while I think they may have some intent on building out some capacity I think this is mainly a move to pump their stock price, which if you look at alot of their other announcements is something they\r\n periodically do.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nLastly, they mentioned that they would outsourcing stator fabrication, which means we would be at least 50% more vertically integrated (and hence, cost competitive) than they are.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nRegards,</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nJason</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Monday, June 9, 2025 9:37 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Based on our last convo...</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Also, can you speak to this:</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><a href=\"https://www.unusualmachines.com/#b2iLibScrollTo\">https://www.unusualmachines.com/#b2iLibScrollTo</a><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">before we chat again...</div>\r\n<br>\r\n<div class=\"x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_airmail_on\">On June 9, 2025 at 10:56:39 AM, Rick (<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_clean_bq\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Hi Justin,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">What’s good for you this week?</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">For a conf call re funding…</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_airmail_on\">On June 2, 2025 at 7:36:57 AM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHey Rick,</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHere is a link to the automation roadmap document:</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<a href=\"https://docs.google.com/presentation/d/1545uu0LCEJ8ZGwEadOACk187lGBlS-96ScHG-ltWZz0/edit?usp=sharing\" id=\"LPlnkOWAf1820a46-856f-c466-67f8-68e174e384dd\" class=\"x_x_OWAAutoLink\">https://docs.google.com/presentation/d/1545uu0LCEJ8ZGwEadOACk187lGBlS-96ScHG-ltWZz0/edit?usp=sharing</a></div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nI was brainstorming your idea for the containerized production platform and I think it\'s actually totally doable.</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nI\'ll probably make some slight modifications/additions to the document later today.</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nLet me know if you need anything else from our side in the meantime.</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nThanks,</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nJason</div>\r\n<div id=\"x_x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Saturday, May 31, 2025 11:36 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Based on our last convo...</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>You do your thing. &nbsp;Just trying to help…\r\n<div><br>\r\n<br>\r\n<div class=\"x_x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<p class=\"x_x_x_gmail_quote\" style=\"color:#000\">On May 31, 2025 at 1:32:13 PM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_x_gmail_quote\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div>\r\n<div dir=\"ltr\">Hi Rick,</div>\r\n<div dir=\"ltr\"><br>\r\n</div>\r\n<div dir=\"ltr\">Yes, very much so, would you like me to expand upon this and then get back to you? I had been working on my own, calling it the “automation roadmap” but this format is also very good and I could migrate it over.</div>\r\n<div dir=\"ltr\"><br>\r\n</div>\r\n<div dir=\"ltr\">Thanks,</div>\r\n<div dir=\"ltr\">Jason</div>\r\n</div>\r\n<div id=\"x_x_x_ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"x_x_x_ms-outlook-mobile-signature\">Get <a href=\"https://aka.ms/o0ukef\">Outlook for iOS</a></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Saturday, May 31, 2025 9:53:26 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Based on our last convo...</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div id=\"x_x_x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nWould this be useful?</div>\r\nSee attached. confirm receipt...\r\n<div>Thanks,</div>\r\n<div>Rick<br>\r\n<div class=\"x_x_x_x_bloop_sign\" id=\"x_x_x_x_bloop_sign_1748710343744053760\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','RIck,\r\n\r\nTomorrow at 2pm PST would be great, and an invite would be convenient as well.\r\n\r\nThanks,\r\nJason\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Wednesday, June 11, 2025 11:50 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Based on our last convo...\r\n\r\nHi Justin,\r\nCan we do today or tomorrow after 2pm PST?\r\nIf so, do you want to send me an invite?\r\nI’ll forward to Brian.\r\nThanks!\r\nRick\r\n\r\n\r\nOn June 10, 2025 at 12:04:32 AM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nHey Rick,\r\n\r\nWas travelling back from SF earlier today and guess I somehow missed this.\r\n\r\n2pm PST on Wednesday, Thursday, or Friday would work great for me.\r\n\r\nSo as for Unusual Machines, I\'ve looked into them in the past and actually reached out to their CEO a few months ago.\r\n\r\nThey are actually a Puerto Rico based company, and a subsidiary they purchased (Rotor Riot, a small drone component marketplace) was hit very hard by the T-Motor and DJI Blacklisting, which is what I think inspired them to start looking at domestic manufacturing.\r\n\r\nThe only thing they\'ve done so far is \"sign a site lease\", and something tells me they arrived at the 50,000 unit volume projection because they were threatened by what we had announced we were doing, also their CEO never responded back to me.\r\n\r\nThey are also a publicly traded company, and to be honest, while I think they may have some intent on building out some capacity I think this is mainly a move to pump their stock price, which if you look at alot of their other announcements is something they periodically do.\r\n\r\nLastly, they mentioned that they would outsourcing stator fabrication, which means we would be at least 50% more vertically integrated (and hence, cost competitive) than they are.\r\n\r\nRegards,\r\nJason\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Monday, June 9, 2025 9:37 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Based on our last convo...\r\n\r\nAlso, can you speak to this:\r\nhttps://www.unusualmachines.com/#b2iLibScrollTo\r\nbefore we chat again...\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn June 9, 2025 at 10:56:39 AM, Rick (rick@mavrix.one<mailto:rick@mavrix.one>) wrote:\r\n\r\nHi Justin,\r\nWhat’s good for you this week?\r\nFor a conf call re funding…\r\nThanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn June 2, 2025 at 7:36:57 AM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nHey Rick,\r\n\r\nHere is a link to the automation roadmap document:\r\nhttps://docs.google.com/presentation/d/1545uu0LCEJ8ZGwEadOACk187lGBlS-96ScHG-ltWZz0/edit?usp=sharing\r\n\r\nI was brainstorming your idea for the containerized production platform and I think it\'s actually totally doable.\r\n\r\nI\'ll probably make some slight modifications/additions to the document later today.\r\n\r\nLet me know if you need anything else from our side in the meantime.\r\n\r\nThanks,\r\nJason\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Saturday, May 31, 2025 11:36 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Based on our last convo...\r\n\r\nYou do your thing.  Just trying to help…\r\n\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\nOn May 31, 2025 at 1:32:13 PM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nYes, very much so, would you like me to expand upon this and then get back to you? I had been working on my own, calling it the “automation roadmap” but this format is also very good and I could migrate it over.\r\n\r\nThanks,\r\nJason\r\n\r\nGet Outlook for iOS<https://aka.ms/o0ukef>\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Saturday, May 31, 2025 9:53:26 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Based on our last convo...\r\n\r\nWould this be useful?\r\nSee attached. confirm receipt...\r\nThanks,\r\nRick\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n',0,0,0,0,0,0,'2025-06-11 19:05:54','2025-12-09 19:12:44','2025-12-09 19:12:44','2025-12-09 19:12:44',NULL,NULL,NULL),
(366,4,'<5fd528ba-7bae-49b6-b133-cd6d22fc7926@deltawerx.net>',NULL,NULL,'Re: Deltawerx Zoom','tom@deltawerx.net','Dr Tom Chi','<!DOCTYPE html>\r\n<html>\r\n  <head>\r\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n  </head>\r\n  <body>\r\n    <p>Rick, enjoyed. <br>\r\n    </p>\r\n    <p>For future stakeholders on either side we’ve made one light\r\n      clarification in Section 4(d) regarding residual memory and\r\n      collaborative tech. It’s consistent with the rest of the NDA and\r\n      helps ensure alignment on expectations around proprietary\r\n      development. We see this as helpful for both parties.</p>\r\n    <p>Otherwise we\'re good to go. <br>\r\n    </p>\r\n    <p>V/R</p>\r\n    <p>tc</p>\r\n    <p><br>\r\n    </p>\r\n    <div class=\"moz-cite-prefix\">On 6/11/2025 1:50 PM, Rick wrote:<br>\r\n    </div>\r\n    <blockquote type=\"cite\"\r\n      cite=\"mid:etPan.6849d015.410fb592.13509@mavrix.one\">\r\n      <meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\">\r\n      <style>body{font-family:Helvetica,Arial;font-size:13px}</style>\r\n      <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Gentlemen,</div>\r\n      <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Thanks\r\n        for your time and discussion today!<br>\r\n      </div>\r\n      <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\"><br>\r\n      </div>\r\n      <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Attached\r\n        is the Mavrix NDA.</div>\r\n      <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Please\r\n        fill in your email and sign each page and the final page.</div>\r\n      <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">I\r\n        look forward to following up after executing the NDA.</div>\r\n      <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\"><br>\r\n      </div>\r\n      <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Thanks\r\n        much,</div>\r\n      <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Rick</div>\r\n      <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\"><br>\r\n      </div>\r\n      <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Rick\r\n        Mislan, PhD</div>\r\n      <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">MAVRIX\r\n        1, LLC</div>\r\n      <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\"><a class=\"moz-txt-link-freetext\" href=\"https://mavrix.one\">https://mavrix.one</a></div>\r\n    </blockquote>\r\n  </body>\r\n</html>','Rick, enjoyed.\r\n\r\nFor future stakeholders on either side we’ve made one light \r\nclarification in Section 4(d) regarding residual memory and \r\ncollaborative tech. It’s consistent with the rest of the NDA and helps \r\nensure alignment on expectations around proprietary development. We see \r\nthis as helpful for both parties.\r\n\r\nOtherwise we\'re good to go.\r\n\r\nV/R\r\n\r\ntc\r\n\r\n\r\nOn 6/11/2025 1:50 PM, Rick wrote:\r\n> Gentlemen,\r\n> Thanks for your time and discussion today!\r\n>\r\n> Attached is the Mavrix NDA.\r\n> Please fill in your email and sign each page and the final page.\r\n> I look forward to following up after executing the NDA.\r\n>\r\n> Thanks much,\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> MAVRIX 1, LLC\r\n> https://mavrix.one',0,0,0,0,0,0,'2025-06-11 20:14:31','2025-12-09 19:12:45','2025-12-09 19:12:45','2025-12-09 19:12:45',NULL,NULL,NULL),
(367,4,' <BN2P110MB1073833D025F873F7603C32EB875A@BN2P110MB1073.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,' =?utf-8?B?UkU6IFtFWFRFUk5BTF0gUmU6IHZpYSBOaWMgVmFuZHJlLSBPcGVuIFJvdW5k?= =?utf-8?B?4oCm?=','andy.yakulis@tfvector-gcc.com','Andy Yakulis','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:Aldrich;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.gmailquote, li.gmailquote, div.gmailquote\r\n	{mso-style-name:gmail_quote;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle22\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Hi Rick. Great thank you!<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">What do you mean about a memorandum of offering? With my other investors they usually provide me a requested financial allocation.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#776B6C;mso-ligatures:standardcontextual\">Andy Yakulis,\r\n</span></b><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#9A000A;mso-ligatures:standardcontextual\">CEO</span></b><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#776B6C;mso-ligatures:standardcontextual\"><o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;mso-ligatures:standardcontextual\"><a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a></span><u><span style=\"color:blue;mso-ligatures:standardcontextual\"><o:p></o:p></span></u></p>\r\n<p class=\"MsoNormal\"><a href=\"https://www.tfvector.com/\" target=\"_blank\"><span style=\"color:#1155CC;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"146\" height=\"40\" style=\"width:1.5208in;height:.4166in\" id=\"_x0000_i1029\" src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXf182lfUiAGtgaXn5ngxbOMNf_n6J7f59sQHoPYtvAssPxqbAoHjVojrRZ4MuOAvPXJpc5Hrzz-j_5pVWH6pThhcGvhq2WwFdgOOz1on8K7lyUHW7-QMYp0ItCCKa5UnuzRh7jieQ?key=vPdQtPp2VQerhj_rzhzCgXlz\"></span></a><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, June 11, 2025 12:51 PM<br>\r\n<b>To:</b> Andy Yakulis &lt;andy.yakulis@tfvector-gcc.com&gt;<br>\r\n<b>Subject:</b> [EXTERNAL] Re: via Nic Vandre- Open Round…<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div style=\"border:solid #9C6500 1.0pt;padding:2.0pt 2.0pt 2.0pt 2.0pt\" id=\"footer\">\r\n<p class=\"MsoNormal\" style=\"background:#FFEB9C\"><span style=\"color:black\">CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">Hi Andy,<br>\r\nHope all is well.<br>\r\nBrian and I are very interested in moving forward with you and Vector.<br>\r\nCan you please forward your Memorandum of Offering?<br>\r\nWe’d like to to set up a followup meeting to discuss.<br>\r\nThanks much!<br>\r\nRick <o:p></o:p></p>\r\n<p class=\"airmailon\">On May 21, 2025 at 9:44:03<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM, Andy Yakulis (<a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">oh haha. Was thinking that would be a big investment!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p style=\"margin:0in\"><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#776B6C\">Andy<o:p></o:p></span></b></p>\r\n<p style=\"margin:0in\"><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#776B6C\">Yakulis</span></b><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:black\">,<o:p></o:p></span></b></p>\r\n<p style=\"margin:0in\"><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#9A000A\">CEO</span></b><o:p></o:p></p>\r\n<p style=\"margin:0in\"><span style=\"font-size:11.0pt;font-family:Aldrich;color:#141414\"><a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a></span><o:p></o:p></p>\r\n<p style=\"margin:0in\"><a href=\"https://www.tfvector.com/\"><span style=\"color:#1155CC;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"144\" height=\"40\" style=\"width:1.5in;height:.4166in\" id=\"_x0000_i1028\" src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\"></span></a><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">On Wed, May 21, 2025 at 7:27<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; wrote:<o:p></o:p></p>\r\n</div>\r\n<blockquote style=\"border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-right:0in\">\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">Sorry. I was talking about 10 or 100 drones in the swarm ;) - didn’t matter to the dev guys.\r\n<br>\r\nBut if you need $10M or 100M… :)<br>\r\nAll good!<br>\r\nLet’s get to the next!<br>\r\nThanks!<br>\r\nRick <o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">Rick Mislan, PhD<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"gmailquote\"><span style=\"color:black\">On May 21, 2025 at 9:23:33</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"color:black\">PM, Andy Yakulis (<a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">Thanks Rick,<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">TO clarify... you meant 10 or 100m investment into the company? (at my 200m valuation)?<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">I\'ll bring my assistant on another&nbsp;thread to schedule time.<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p style=\"margin:0in\"><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#776B6C\">Andy Yakulis</span></b><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:black\">,</span></b>\r\n<b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#9A000A\">CEO</span></b><o:p></o:p></p>\r\n<p style=\"margin:0in\"><span style=\"font-size:11.0pt;font-family:Aldrich;color:#141414\"><a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a></span><o:p></o:p></p>\r\n<p style=\"margin:0in\"><a href=\"https://www.tfvector.com/\"><span style=\"color:#1155CC;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"144\" height=\"40\" style=\"width:1.5in;height:.4166in\" id=\"_x0000_i1027\" src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\"></span></a><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">On Wed, May 21, 2025 at 7:06<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; wrote:<o:p></o:p></p>\r\n</div>\r\n<blockquote style=\"border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-right:0in\">\r\n<div>\r\n<p class=\"MsoNormal\">Andy, <o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\">Thank you for your time and interest today!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">I enjoyed the conversation and appreciate your efforts!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Let me know what works best for your Wednesday-Friday next week.&nbsp; I’ll have Brian join us.&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Also, as a follow up, my guys says we could do 10 or 100…<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">We will work&nbsp;towards a demo asap!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">I look forward to talking again soon!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Thanks again,<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Rick<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\">Rick Mislan, PhD<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"gmailquote\"><span style=\"color:black\">On May 21, 2025 at 1:31:09</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"color:black\">PM, Tory Roberts (<a href=\"mailto:tory@tfvector.com\">tory@tfvector.com</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n<div>\r\n<blockquote style=\"border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-right:0in\">\r\n<div>\r\n<blockquote style=\"border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-right:0in\">\r\n<div>\r\n<div>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<p style=\"margin:0in\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">On Sat, May 17, 2025 at 7:02<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>AM Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; wrote:<o:p></o:p></p>\r\n</div>\r\n<blockquote style=\"border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-right:0in\">\r\n<div>\r\n<p class=\"MsoNormal\">Wednesday at 11 works as well.&nbsp; <o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\">Thanks!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">Rick<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\">Rick Mislan, PhD<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"gmailquote\"><span style=\"color:black\">On May 16, 2025 at 8:54:45</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"color:black\">PM, Andy Yakulis (<a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">Rick,<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Sorry, 4pm EST monday got filled up as we were coordinating. How\'s Wed morning? 11am EST?<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p style=\"margin:0in\"><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#776B6C\">Andy Yakulis</span></b><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:black\">,</span></b>\r\n<b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#9A000A\">CEO</span></b><o:p></o:p></p>\r\n<p style=\"margin:0in\"><span style=\"font-size:11.0pt;font-family:Aldrich;color:#141414\"><a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a></span><o:p></o:p></p>\r\n<p style=\"margin:0in\"><a href=\"https://www.tfvector.com/\"><span style=\"color:#1155CC;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"144\" height=\"40\" style=\"width:1.5in;height:.4166in\" id=\"_x0000_i1026\" src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\"></span></a><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">On Fri, May 16, 2025 at 5:49<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>AM Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; wrote:<o:p></o:p></p>\r\n</div>\r\n<blockquote style=\"border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-right:0in\">\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks, Andy!<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Let’s do your first time slot on Monday at 4p.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I’m in NY, so EST.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">You want a Zoom/Teams/Meet link?<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Appreciate the connect!<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_sign_1747396037540008960\">\r\n<p class=\"MsoNormal\">Rick Mislan, PhD<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p>On May 16, 2025 at 12:20:03<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>AM, Andy Yakulis (<a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">Rick<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Thank you for reaching out! Absolutely interested in speaking&nbsp;with you especially if you know Nick!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Not sure what time zone you are in, I\'m in MTN so I\'ll offer&nbsp;the following:<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Mon 19May:<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">4pm<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">5pm<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Tues, 20May<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">5pm<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Wed, 21May:<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">9am<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">10am<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">3pm<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">4pm<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p style=\"margin:0in\"><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#776B6C\">Andy Yakulis</span></b><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:black\">,</span></b>\r\n<b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#9A000A\">CEO</span></b><o:p></o:p></p>\r\n<p style=\"margin:0in\"><span style=\"font-size:11.0pt;font-family:Aldrich;color:#141414\"><a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a></span><o:p></o:p></p>\r\n<p style=\"margin:0in\"><a href=\"https://www.tfvector.com/\"><span style=\"color:#1155CC;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"144\" height=\"40\" style=\"width:1.5in;height:.4166in\" id=\"_x0000_i1025\" src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\"></span></a><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">On Thu, May 15, 2025 at 5:37<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>AM Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; wrote:<o:p></o:p></p>\r\n</div>\r\n<blockquote style=\"border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-right:0in\">\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Andy,<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Nic Vandre said to reach out.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I’ve followed your work a bit over time, but recently,&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I\'ve come into an opportunity where I think I can help make a difference.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I’d love to schedule a call sometime this week or next<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">to see how I might help with your open round of investment.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Please let me know what’s most convenient and then let’s jump on a call!<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\">Thank you for your time and consideration, <o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\">Rick<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\">Rick Mislan, PhD<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><a href=\"https://ww.mislan.com/\">https://mislan.com</a><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n<br>\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n</body>\r\n</html>\r\n','Hi Rick. Great thank you!\r\n\r\nWhat do you mean about a memorandum of offering? With my other investors they usually provide me a requested financial allocation.\r\n\r\n\r\nAndy Yakulis, CEO\r\nandy@tfvector.com<mailto:andy@tfvector.com>\r\n[https://lh7-rt.googleusercontent.com/docsz/AD_4nXf182lfUiAGtgaXn5ngxbOMNf_n6J7f59sQHoPYtvAssPxqbAoHjVojrRZ4MuOAvPXJpc5Hrzz-j_5pVWH6pThhcGvhq2WwFdgOOz1on8K7lyUHW7-QMYp0ItCCKa5UnuzRh7jieQ?key=vPdQtPp2VQerhj_rzhzCgXlz]<https://www.tfvector.com/>\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Wednesday, June 11, 2025 12:51 PM\r\nTo: Andy Yakulis <andy.yakulis@tfvector-gcc.com>\r\nSubject: [EXTERNAL] Re: via Nic Vandre- Open Round…\r\n\r\nCAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.\r\nHi Andy,\r\nHope all is well.\r\nBrian and I are very interested in moving forward with you and Vector.\r\nCan you please forward your Memorandum of Offering?\r\nWe’d like to to set up a followup meeting to discuss.\r\nThanks much!\r\nRick\r\n\r\nOn May 21, 2025 at 9:44:03 PM, Andy Yakulis (andy@tfvector.com<mailto:andy@tfvector.com>) wrote:\r\noh haha. Was thinking that would be a big investment!\r\n\r\n\r\nAndy\r\n\r\nYakulis,\r\n\r\nCEO\r\n\r\nandy@tfvector.com<mailto:andy@tfvector.com>\r\n\r\n[https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz]<https://www.tfvector.com/>\r\n\r\n\r\n\r\n\r\nOn Wed, May 21, 2025 at 7:27 PM Rick <rick@mavrix.one<mailto:rick@mavrix.one>> wrote:\r\nSorry. I was talking about 10 or 100 drones in the swarm ;) - didn’t matter to the dev guys.\r\nBut if you need $10M or 100M… :)\r\nAll good!\r\nLet’s get to the next!\r\nThanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n\r\nOn May 21, 2025 at 9:23:33 PM, Andy Yakulis (andy@tfvector.com<mailto:andy@tfvector.com>) wrote:\r\nThanks Rick,\r\n\r\nTO clarify... you meant 10 or 100m investment into the company? (at my 200m valuation)?\r\n\r\nI\'ll bring my assistant on another thread to schedule time.\r\n\r\n\r\nAndy Yakulis, CEO\r\n\r\nandy@tfvector.com<mailto:andy@tfvector.com>\r\n\r\n[https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz]<https://www.tfvector.com/>\r\n\r\n\r\n\r\n\r\nOn Wed, May 21, 2025 at 7:06 PM Rick <rick@mavrix.one<mailto:rick@mavrix.one>> wrote:\r\nAndy,\r\nThank you for your time and interest today!\r\nI enjoyed the conversation and appreciate your efforts!\r\nLet me know what works best for your Wednesday-Friday next week.  I’ll have Brian join us.\r\nAlso, as a follow up, my guys says we could do 10 or 100…\r\nWe will work towards a demo asap!\r\n\r\nI look forward to talking again soon!\r\n\r\nThanks again,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n\r\nOn May 21, 2025 at 1:31:09 PM, Tory Roberts (tory@tfvector.com<mailto:tory@tfvector.com>) wrote:\r\n\r\n\r\n\r\n\r\nOn Sat, May 17, 2025 at 7:02 AM Rick <rick@mavrix.one<mailto:rick@mavrix.one>> wrote:\r\nWednesday at 11 works as well.\r\nThanks!\r\nRick\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n\r\nOn May 16, 2025 at 8:54:45 PM, Andy Yakulis (andy@tfvector.com<mailto:andy@tfvector.com>) wrote:\r\nRick,\r\n\r\nSorry, 4pm EST monday got filled up as we were coordinating. How\'s Wed morning? 11am EST?\r\n\r\nAndy Yakulis, CEO\r\n\r\nandy@tfvector.com<mailto:andy@tfvector.com>\r\n\r\n[https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz]<https://www.tfvector.com/>\r\n\r\n\r\n\r\n\r\nOn Fri, May 16, 2025 at 5:49 AM Rick <rick@mavrix.one<mailto:rick@mavrix.one>> wrote:\r\nThanks, Andy!\r\nLet’s do your first time slot on Monday at 4p.\r\nI’m in NY, so EST.\r\nYou want a Zoom/Teams/Meet link?\r\nAppreciate the connect!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n\r\n\r\nOn May 16, 2025 at 12:20:03 AM, Andy Yakulis (andy@tfvector.com<mailto:andy@tfvector.com>) wrote:\r\nRick\r\n\r\nThank you for reaching out! Absolutely interested in speaking with you especially if you know Nick!\r\n\r\nNot sure what time zone you are in, I\'m in MTN so I\'ll offer the following:\r\n\r\nMon 19May:\r\n4pm\r\n5pm\r\n\r\nTues, 20May\r\n5pm\r\n\r\nWed, 21May:\r\n9am\r\n10am\r\n3pm\r\n4pm\r\n\r\nAndy Yakulis, CEO\r\n\r\nandy@tfvector.com<mailto:andy@tfvector.com>\r\n\r\n[https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz]<https://www.tfvector.com/>\r\n\r\n\r\n\r\n\r\nOn Thu, May 15, 2025 at 5:37 AM Rick <rick@mavrix.one<mailto:rick@mavrix.one>> wrote:\r\nAndy,\r\n\r\nNic Vandre said to reach out.\r\nI’ve followed your work a bit over time, but recently,\r\nI\'ve come into an opportunity where I think I can help make a difference.\r\n\r\nI’d love to schedule a call sometime this week or next\r\nto see how I might help with your open round of investment.\r\n\r\nPlease let me know what’s most convenient and then let’s jump on a call!\r\n\r\nThank you for your time and consideration,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\nhttps://mislan.com<https://ww.mislan.com/>\r\n\r\n\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n',0,0,0,0,0,0,'2025-06-11 20:58:45','2025-12-09 19:12:46','2025-12-09 19:12:46','2025-12-09 19:12:46',NULL,NULL,NULL),
(368,4,' <BN2P110MB1073DD9034D89D308C41D581B875A@BN2P110MB1073.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,' =?utf-8?B?UkU6IFtFWFRFUk5BTF0gUmU6IHZpYSBOaWMgVmFuZHJlLSBPcGVuIFJvdW5k?= =?utf-8?B?4oCm?=','andy.yakulis@tfvector-gcc.com','Andy Yakulis','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:Aldrich;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon0, li.airmailon0, div.airmailon0\r\n	{mso-style-name:airmailon;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.gmailquote, li.gmailquote, div.gmailquote\r\n	{mso-style-name:gmailquote;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle23\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Term sheet you mean?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">If so here you go!<br>\r\n<br>\r\n<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><a href=\"https://docsend.com/view/s/2pgdg2wtf9scvwr8\">Series A Deck</a><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><a href=\"mailto:brian@bayfrontcapitalllc.com\">Series A Term sheet</a><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#776B6C\">Andy Yakulis,\r\n</span></b><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#9A000A\">CEO</span></b><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#776B6C\"><o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\"><a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a></span><u><span style=\"color:blue\"><o:p></o:p></span></u></p>\r\n<p class=\"MsoNormal\"><a href=\"https://www.tfvector.com/\" target=\"_blank\"><span style=\"color:#1155CC;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"146\" height=\"40\" style=\"width:1.5208in;height:.4166in\" id=\"_x0000_i1030\" src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXf182lfUiAGtgaXn5ngxbOMNf_n6J7f59sQHoPYtvAssPxqbAoHjVojrRZ4MuOAvPXJpc5Hrzz-j_5pVWH6pThhcGvhq2WwFdgOOz1on8K7lyUHW7-QMYp0ItCCKa5UnuzRh7jieQ?key=vPdQtPp2VQerhj_rzhzCgXlz\"></span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, June 11, 2025 3:53 PM<br>\r\n<b>To:</b> Andy Yakulis &lt;andy.yakulis@tfvector-gcc.com&gt;<br>\r\n<b>Subject:</b> RE: [EXTERNAL] Re: via Nic Vandre- Open Round…<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">Brian had in his notes that you already had a memorandum that you prepared.\r\n<br>\r\nIs that was a mistake, or do you have an offering?<br>\r\n<br>\r\nThanks,<br>\r\nRick <o:p></o:p></p>\r\n<p class=\"airmailon\">On June 11, 2025 at 4:59:29<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM, Andy Yakulis (<a href=\"mailto:andy.yakulis@tfvector-gcc.com\">andy.yakulis@tfvector-gcc.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Hi Rick. Great thank you!<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">What do you mean about a memorandum of offering? With my other investors they usually provide me a requested financial allocation.<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#776B6C\">Andy Yakulis,\r\n</span></b><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#9A000A\">CEO</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\"><a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://www.tfvector.com/\" target=\"_blank\"><span style=\"color:#1155CC;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"146\" height=\"40\" style=\"width:1.5208in;height:.4166in\" id=\"_x0000_i1029\" src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXf182lfUiAGtgaXn5ngxbOMNf_n6J7f59sQHoPYtvAssPxqbAoHjVojrRZ4MuOAvPXJpc5Hrzz-j_5pVWH6pThhcGvhq2WwFdgOOz1on8K7lyUHW7-QMYp0ItCCKa5UnuzRh7jieQ?key=vPdQtPp2VQerhj_rzhzCgXlz\"></span></a><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, June 11, 2025 12:51 PM<br>\r\n<b>To:</b> Andy Yakulis &lt;<a href=\"mailto:andy.yakulis@tfvector-gcc.com\">andy.yakulis@tfvector-gcc.com</a>&gt;<br>\r\n<b>Subject:</b> [EXTERNAL] Re: via Nic Vandre- Open Round…</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div style=\"border:solid #9C6500 1.0pt;padding:2.0pt 2.0pt 2.0pt 2.0pt\" id=\"footer\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;background:#FFEB9C\">\r\n<span style=\"color:black\">CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:12.0pt\">Hi Andy,<br>\r\nHope all is well.<br>\r\nBrian and I are very interested in moving forward with you and Vector.<br>\r\nCan you please forward your Memorandum of Offering?<br>\r\nWe’d like to to set up a followup meeting to discuss.<br>\r\nThanks much!<br>\r\nRick <o:p></o:p></p>\r\n<p class=\"airmailon0\">On May 21, 2025 at 9:44:03<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM, Andy Yakulis (<a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">oh haha. Was thinking that would be a big investment!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p style=\"margin:0in\"><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#776B6C\">Andy</span></b><o:p></o:p></p>\r\n<p style=\"margin:0in\"><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#776B6C\">Yakulis</span></b><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:black\">,</span></b><o:p></o:p></p>\r\n<p style=\"margin:0in\"><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#9A000A\">CEO</span></b><o:p></o:p></p>\r\n<p style=\"margin:0in\"><span style=\"font-size:11.0pt;font-family:Aldrich;color:#141414\"><a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a></span><o:p></o:p></p>\r\n<p style=\"margin:0in\"><a href=\"https://www.tfvector.com/\"><span style=\"color:#1155CC;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"144\" height=\"40\" style=\"width:1.5in;height:.4166in\" id=\"_x0000_i1028\" src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\"></span></a><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">On Wed, May 21, 2025 at 7:27<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; wrote:<o:p></o:p></p>\r\n</div>\r\n<blockquote style=\"border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Sorry. I was talking about 10 or 100 drones in the swarm ;) - didn’t matter to the dev guys.\r\n<br>\r\nBut if you need $10M or 100M… :)<br>\r\nAll good!<br>\r\nLet’s get to the next!<br>\r\nThanks!<br>\r\nRick <o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:12.0pt\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Rick Mislan, PhD<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"gmailquote\"><span style=\"color:black\">On May 21, 2025 at 9:23:33</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"color:black\">PM, Andy Yakulis (<a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a>) wrote:</span><o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Thanks Rick,<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">TO clarify... you meant 10 or 100m investment into the company? (at my 200m valuation)?<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">I\'ll bring my assistant on another&nbsp;thread to schedule time.<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p style=\"margin:0in\"><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#776B6C\">Andy Yakulis</span></b><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:black\">,</span></b>\r\n<b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#9A000A\">CEO</span></b><o:p></o:p></p>\r\n<p style=\"margin:0in\"><span style=\"font-size:11.0pt;font-family:Aldrich;color:#141414\"><a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a></span><o:p></o:p></p>\r\n<p style=\"margin:0in\"><a href=\"https://www.tfvector.com/\"><span style=\"color:#1155CC;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"144\" height=\"40\" style=\"width:1.5in;height:.4166in\" id=\"_x0000_i1027\" src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\"></span></a><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">On Wed, May 21, 2025 at 7:06<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; wrote:<o:p></o:p></p>\r\n</div>\r\n<blockquote style=\"border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt\">\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Andy,\r\n<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Thank you for your time and interest today!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">I enjoyed the conversation and appreciate your efforts!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Let me know what works best for your Wednesday-Friday next week.&nbsp; I’ll have Brian join us.&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Also, as a follow up, my guys says we could do 10 or 100…<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">We will work&nbsp;towards a demo asap!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">I look forward to talking again soon!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Thanks again,<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Rick<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Rick Mislan, PhD<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"gmailquote\"><span style=\"color:black\">On May 21, 2025 at 1:31:09</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"color:black\">PM, Tory Roberts (<a href=\"mailto:tory@tfvector.com\">tory@tfvector.com</a>) wrote:</span><o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div>\r\n<blockquote style=\"border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt\">\r\n<div>\r\n<blockquote style=\"border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<p style=\"margin:0in\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">On Sat, May 17, 2025 at 7:02<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>AM Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; wrote:<o:p></o:p></p>\r\n</div>\r\n<blockquote style=\"border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt\">\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Wednesday at 11 works as well.&nbsp;\r\n<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Thanks!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:12.0pt\">Rick<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Rick Mislan, PhD<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"gmailquote\"><span style=\"color:black\">On May 16, 2025 at 8:54:45</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"color:black\">PM, Andy Yakulis (<a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a>) wrote:</span><o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Rick,<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Sorry, 4pm EST monday got filled up as we were coordinating. How\'s Wed morning? 11am EST?<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p style=\"margin:0in\"><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#776B6C\">Andy Yakulis</span></b><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:black\">,</span></b>\r\n<b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#9A000A\">CEO</span></b><o:p></o:p></p>\r\n<p style=\"margin:0in\"><span style=\"font-size:11.0pt;font-family:Aldrich;color:#141414\"><a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a></span><o:p></o:p></p>\r\n<p style=\"margin:0in\"><a href=\"https://www.tfvector.com/\"><span style=\"color:#1155CC;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"144\" height=\"40\" style=\"width:1.5in;height:.4166in\" id=\"_x0000_i1026\" src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\"></span></a><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">On Fri, May 16, 2025 at 5:49<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>AM Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; wrote:<o:p></o:p></p>\r\n</div>\r\n<blockquote style=\"border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt\">\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks, Andy!</span><o:p></o:p></p>\r\n</div>\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Let’s do your first time slot on Monday at 4p.</span><o:p></o:p></p>\r\n</div>\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I’m in NY, so EST.</span><o:p></o:p></p>\r\n</div>\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">You want a Zoom/Teams/Meet link?</span><o:p></o:p></p>\r\n</div>\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Appreciate the connect!</span><o:p></o:p></p>\r\n</div>\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_sign_1747396037540008960\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Rick Mislan, PhD<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p>On May 16, 2025 at 12:20:03<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>AM, Andy Yakulis (<a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Rick<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Thank you for reaching out! Absolutely interested in speaking&nbsp;with you especially if you know Nick!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Not sure what time zone you are in, I\'m in MTN so I\'ll offer&nbsp;the following:<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Mon 19May:<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">4pm<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">5pm<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Tues, 20May<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">5pm<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Wed, 21May:<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">9am<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">10am<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">3pm<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">4pm<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p style=\"margin:0in\"><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#776B6C\">Andy Yakulis</span></b><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:black\">,</span></b>\r\n<b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#9A000A\">CEO</span></b><o:p></o:p></p>\r\n<p style=\"margin:0in\"><span style=\"font-size:11.0pt;font-family:Aldrich;color:#141414\"><a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a></span><o:p></o:p></p>\r\n<p style=\"margin:0in\"><a href=\"https://www.tfvector.com/\"><span style=\"color:#1155CC;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"144\" height=\"40\" style=\"width:1.5in;height:.4166in\" id=\"_x0000_i1025\" src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\"></span></a><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">On Thu, May 15, 2025 at 5:37<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>AM Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; wrote:<o:p></o:p></p>\r\n</div>\r\n<blockquote style=\"border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt\">\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Andy,</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Nic Vandre said to reach out.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I’ve followed your work a bit over time, but recently,&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I\'ve come into an opportunity where I think I can help make a difference.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I’d love to schedule a call sometime this week or next</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">to see how I might help with your open round of investment.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Please let me know what’s most convenient and then let’s jump on a call!</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Thank you for your time and consideration,\r\n<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Rick<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Rick Mislan, PhD<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://ww.mislan.com/\">https://mislan.com</a><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><br>\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n<br>\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n</body>\r\n</html>\r\n','Term sheet you mean?\r\n\r\nIf so here you go!\r\n\r\nSeries A Deck<https://docsend.com/view/s/2pgdg2wtf9scvwr8>\r\nSeries A Term sheet<mailto:brian@bayfrontcapitalllc.com>\r\n\r\n\r\n\r\nAndy Yakulis, CEO\r\nandy@tfvector.com<mailto:andy@tfvector.com>\r\n[https://lh7-rt.googleusercontent.com/docsz/AD_4nXf182lfUiAGtgaXn5ngxbOMNf_n6J7f59sQHoPYtvAssPxqbAoHjVojrRZ4MuOAvPXJpc5Hrzz-j_5pVWH6pThhcGvhq2WwFdgOOz1on8K7lyUHW7-QMYp0ItCCKa5UnuzRh7jieQ?key=vPdQtPp2VQerhj_rzhzCgXlz]<https://www.tfvector.com/>\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Wednesday, June 11, 2025 3:53 PM\r\nTo: Andy Yakulis <andy.yakulis@tfvector-gcc.com>\r\nSubject: RE: [EXTERNAL] Re: via Nic Vandre- Open Round…\r\n\r\nBrian had in his notes that you already had a memorandum that you prepared.\r\nIs that was a mistake, or do you have an offering?\r\n\r\nThanks,\r\nRick\r\n\r\nOn June 11, 2025 at 4:59:29 PM, Andy Yakulis (andy.yakulis@tfvector-gcc.com<mailto:andy.yakulis@tfvector-gcc.com>) wrote:\r\nHi Rick. Great thank you!\r\n\r\nWhat do you mean about a memorandum of offering? With my other investors they usually provide me a requested financial allocation.\r\n\r\n\r\nAndy Yakulis, CEO\r\nandy@tfvector.com<mailto:andy@tfvector.com>\r\n[https://lh7-rt.googleusercontent.com/docsz/AD_4nXf182lfUiAGtgaXn5ngxbOMNf_n6J7f59sQHoPYtvAssPxqbAoHjVojrRZ4MuOAvPXJpc5Hrzz-j_5pVWH6pThhcGvhq2WwFdgOOz1on8K7lyUHW7-QMYp0ItCCKa5UnuzRh7jieQ?key=vPdQtPp2VQerhj_rzhzCgXlz]<https://www.tfvector.com/>\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Wednesday, June 11, 2025 12:51 PM\r\nTo: Andy Yakulis <andy.yakulis@tfvector-gcc.com<mailto:andy.yakulis@tfvector-gcc.com>>\r\nSubject: [EXTERNAL] Re: via Nic Vandre- Open Round…\r\n\r\nCAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.\r\nHi Andy,\r\nHope all is well.\r\nBrian and I are very interested in moving forward with you and Vector.\r\nCan you please forward your Memorandum of Offering?\r\nWe’d like to to set up a followup meeting to discuss.\r\nThanks much!\r\nRick\r\n\r\nOn May 21, 2025 at 9:44:03 PM, Andy Yakulis (andy@tfvector.com<mailto:andy@tfvector.com>) wrote:\r\noh haha. Was thinking that would be a big investment!\r\n\r\n\r\nAndy\r\n\r\nYakulis,\r\n\r\nCEO\r\n\r\nandy@tfvector.com<mailto:andy@tfvector.com>\r\n\r\n[https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz]<https://www.tfvector.com/>\r\n\r\n\r\n\r\n\r\nOn Wed, May 21, 2025 at 7:27 PM Rick <rick@mavrix.one<mailto:rick@mavrix.one>> wrote:\r\nSorry. I was talking about 10 or 100 drones in the swarm ;) - didn’t matter to the dev guys.\r\nBut if you need $10M or 100M… :)\r\nAll good!\r\nLet’s get to the next!\r\nThanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n\r\nOn May 21, 2025 at 9:23:33 PM, Andy Yakulis (andy@tfvector.com<mailto:andy@tfvector.com>) wrote:\r\nThanks Rick,\r\n\r\nTO clarify... you meant 10 or 100m investment into the company? (at my 200m valuation)?\r\n\r\nI\'ll bring my assistant on another thread to schedule time.\r\n\r\n\r\nAndy Yakulis, CEO\r\n\r\nandy@tfvector.com<mailto:andy@tfvector.com>\r\n\r\n[https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz]<https://www.tfvector.com/>\r\n\r\n\r\n\r\n\r\nOn Wed, May 21, 2025 at 7:06 PM Rick <rick@mavrix.one<mailto:rick@mavrix.one>> wrote:\r\nAndy,\r\nThank you for your time and interest today!\r\nI enjoyed the conversation and appreciate your efforts!\r\nLet me know what works best for your Wednesday-Friday next week.  I’ll have Brian join us.\r\nAlso, as a follow up, my guys says we could do 10 or 100…\r\nWe will work towards a demo asap!\r\n\r\nI look forward to talking again soon!\r\n\r\nThanks again,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n\r\nOn May 21, 2025 at 1:31:09 PM, Tory Roberts (tory@tfvector.com<mailto:tory@tfvector.com>) wrote:\r\n\r\n\r\n\r\n\r\nOn Sat, May 17, 2025 at 7:02 AM Rick <rick@mavrix.one<mailto:rick@mavrix.one>> wrote:\r\nWednesday at 11 works as well.\r\nThanks!\r\nRick\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n\r\nOn May 16, 2025 at 8:54:45 PM, Andy Yakulis (andy@tfvector.com<mailto:andy@tfvector.com>) wrote:\r\nRick,\r\n\r\nSorry, 4pm EST monday got filled up as we were coordinating. How\'s Wed morning? 11am EST?\r\n\r\nAndy Yakulis, CEO\r\n\r\nandy@tfvector.com<mailto:andy@tfvector.com>\r\n\r\n[https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz]<https://www.tfvector.com/>\r\n\r\n\r\n\r\n\r\nOn Fri, May 16, 2025 at 5:49 AM Rick <rick@mavrix.one<mailto:rick@mavrix.one>> wrote:\r\nThanks, Andy!\r\nLet’s do your first time slot on Monday at 4p.\r\nI’m in NY, so EST.\r\nYou want a Zoom/Teams/Meet link?\r\nAppreciate the connect!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n\r\n\r\nOn May 16, 2025 at 12:20:03 AM, Andy Yakulis (andy@tfvector.com<mailto:andy@tfvector.com>) wrote:\r\nRick\r\n\r\nThank you for reaching out! Absolutely interested in speaking with you especially if you know Nick!\r\n\r\nNot sure what time zone you are in, I\'m in MTN so I\'ll offer the following:\r\n\r\nMon 19May:\r\n4pm\r\n5pm\r\n\r\nTues, 20May\r\n5pm\r\n\r\nWed, 21May:\r\n9am\r\n10am\r\n3pm\r\n4pm\r\n\r\nAndy Yakulis, CEO\r\n\r\nandy@tfvector.com<mailto:andy@tfvector.com>\r\n\r\n[https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz]<https://www.tfvector.com/>\r\n\r\n\r\n\r\n\r\nOn Thu, May 15, 2025 at 5:37 AM Rick <rick@mavrix.one<mailto:rick@mavrix.one>> wrote:\r\nAndy,\r\n\r\nNic Vandre said to reach out.\r\nI’ve followed your work a bit over time, but recently,\r\nI\'ve come into an opportunity where I think I can help make a difference.\r\n\r\nI’d love to schedule a call sometime this week or next\r\nto see how I might help with your open round of investment.\r\n\r\nPlease let me know what’s most convenient and then let’s jump on a call!\r\n\r\nThank you for your time and consideration,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\nhttps://mislan.com<https://ww.mislan.com/>\r\n\r\n\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n',0,0,0,0,0,0,'2025-06-11 22:51:20','2025-12-09 19:12:46','2025-12-09 19:12:46','2025-12-09 19:12:46',NULL,NULL,NULL),
(369,4,'<684a0adda619f_2e66454050@28ae63c6-a086-4059-81ea-a852cc0b3028.mail>',NULL,NULL,'Andy Yakulis (andy@tfvector.com) has given you access to Vector Series A (Restricted)','no-reply@docsend.com','DocSend','<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\" \"http://www.w3.org/TR/REC-html40/loose.dtd\">\r\n<html style=\"--docsend-zindex-legacy-modal-background: 2147483016;\">\r\n<body>\r\n<table bgcolor=\"#f7f5f2\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; -premailer-cellpadding: 0; -premailer-cellspacing: 0; font-family: Open Sans,Lucida Grande,Segoe UI,Arial,Verdana,Lucida Sans Unicode,Tahoma,sans-serif; margin: 0; padding: 0; border-width: 0;\" width=\"100%\">\r\n<tr>\r\n<td align=\"center\" style=\"font-family: Open Sans,Lucida Grande,Segoe UI,Arial,Verdana,Lucida Sans Unicode,Tahoma,sans-serif; padding: 10px 0;\">\r\n<table bgcolor=\"#f7f5f2\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"620\" style=\"-premailer-cellpadding: 0; -premailer-cellspacing: 0; border-width: 0;\">\r\n<tr>\r\n<td align=\"center\" style=\"font-family: Open Sans,Lucida Grande,Segoe UI,Arial,Verdana,Lucida Sans Unicode,Tahoma,sans-serif; padding: 0;\">\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"-premailer-cellpadding: 0; -premailer-cellspacing: 0; border-width: 0;\">\r\n<tr>\r\n<td align=\"left\" bgcolor=\"#ffffff\" style=\"font-family: \'Open Sans\', \'Lucida Grande\', \'Segoe UI\', Arial, Verdana, \'Lucida Sans Unicode\', Tahoma, \'Sans Serif\'; border-radius: 0; box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.06); border: 1px solid #EDE9E3;\">\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"background-color: #ffffff; -premailer-cellpadding: 0; -premailer-cellspacing: 0; border-width: 0;\" width=\"100%\">\r\n<tr>\r\n<td align=\"center\" style=\"font-family: Open Sans,Lucida Grande,Segoe UI,Arial,Verdana,Lucida Sans Unicode,Tahoma,sans-serif;\">\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-bottom-color: #eeeeee; border-bottom-style: solid; -premailer-cellpadding: 0; -premailer-cellspacing: 0; padding: 40px 0 20px; border-width: 0 0 1px;\" width=\"500\">\r\n<tr>\r\n<td align=\"left\" style=\"font-size: 18px; font-family: \'Open Sans\', \'Lucida Grande\', \'Segoe UI\', Arial, Verdana, \'Lucida Sans Unicode\', Tahoma, \'Sans Serif\'; font-weight: 600;\">\r\n<a style=\"display: inline-block;\" href=\"https://docsend.com\"><img height=\"35\" alt=\"DocSend\" style=\"color: #0061fe; display: block; border-style: none;\" src=\"https://assets.docsend.com/public/email_images/ds-logos/dropbox-docsend-wordmark--color-on-white@2x.png\"></a>\r\n</td>\r\n</tr>\r\n</table>\r\n</td>\r\n</tr>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"-premailer-cellpadding: 0; -premailer-cellspacing: 0; border-width: 0;\">\r\n<tr>\r\n<td align=\"center\" style=\"font-family: \'Open Sans\', \'Lucida Grande\', \'Segoe UI\', Arial, Verdana, \'Lucida Sans Unicode\', Tahoma, \'Sans Serif\';\">\r\n\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"500\" style=\"-premailer-cellpadding: 0; -premailer-cellspacing: 0; border-width: 0;\">\r\n<tr>\r\n<td style=\"font-family: Open Sans,Lucida Grande,Segoe UI,Arial,Verdana,Lucida Sans Unicode,Tahoma,sans-serif;\">\r\n<div style=\"color: #1e1919; font-family: \'Open Sans\', \'Lucida Grande\', \'Segoe UI\', Arial, Verdana, \'Lucida Sans Unicode\', Tahoma, \'Sans Serif\'; font-size: 30px; font-weight: 300; line-height: 48px; margin-top: 40px;\">\r\nYou have been granted access\r\n</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-family: Open Sans,Lucida Grande,Segoe UI,Arial,Verdana,Lucida Sans Unicode,Tahoma,sans-serif;\">\r\n<div style=\"color: #1e1919; font-family: \'Open Sans\', \'Lucida Grande\', \'Segoe UI\', Arial, Verdana, \'Lucida Sans Unicode\', Tahoma, \'Sans Serif\'; font-size: 16px; font-weight: normal; line-height: 27px; margin-top: 35px;\">\r\n<b>Andy Yakulis (andy@tfvector.com)</b> has given you access to Vector Series A (Restricted).\r\n</div>\r\n</td>\r\n</tr>\r\n</table>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"500\" style=\"-premailer-cellpadding: 0; -premailer-cellspacing: 0; border-width: 0;\">\r\n<tr align=\"center\">\r\n<td style=\"font-family: Open Sans,Lucida Grande,Segoe UI,Arial,Verdana,Lucida Sans Unicode,Tahoma,sans-serif;\">\r\n<div style=\"margin: 30px 0;\">\r\n<table style=\"-premailer-cellpadding: 0; -premailer-cellspacing: 0; border-width: 0;\">\r\n<tr>\r\n<td style=\"font-family: Open Sans,Lucida Grande,Segoe UI,Arial,Verdana,Lucida Sans Unicode,Tahoma,sans-serif; text-align: center; width: 400px; height: 50px; background-color: #1a1918; border-radius: 8px;\">\r\n<a href=\"https://docsend.com/view/s/2pgdg2wtf9scvwr8?wldn=a9f6000e603eea30c698017a8c453eeca7e35a7dc1ca9afb58b0798275d8b391%24%24%2Ff0KE4WSsrPy26%2BlbpDYCHaf0j3zWk8Vrw%3D%3D--2Yq8WqdhUuJGcQD8--8HjMewVwcZs9Rl9B5%2FrCfQ%3D%3D\" style=\"display: block; text-decoration: none; font-size: 18px; color: #f7f5f2; font-weight: var(--dig-type__weight__base); line-height: 50px;\">\r\nView content\r\n</a>\r\n</td>\r\n</tr>\r\n</table>\r\n\r\n</div>\r\n</td>\r\n</tr>\r\n</table>\r\n\r\n</td>\r\n</tr>\r\n</table>\r\n<img style=\"width: 620px; height: 1px; display: block; max-height: 0px; min-height: 0px; min-width: 620px; max-width: 620px;\" src=\"https://assets.docsend.com/public/email_images/spacer.png\">\r\n<table bgcolor=\"#fbfbfb\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"-premailer-cellpadding: 0; -premailer-cellspacing: 0; padding: 20px 0; border-width: 0;\" width=\"100%\">\r\n<tr>\r\n<td align=\"center\" style=\"border-radius: 0; font-family: Open Sans,Lucida Grande,Segoe UI,Arial,Verdana,Lucida Sans Unicode,Tahoma,sans-serif;\">\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; max-width: 630px; -premailer-cellpadding: 0; -premailer-cellspacing: 0; border-width: 0;\">\r\n<tr>\r\n<td align=\"left\" style=\"font-size: 12px; font-family: \'Open Sans\', \'Lucida Grande\', \'Segoe UI\', Arial, Verdana, \'Lucida Sans Unicode\', Tahoma, \'Sans Serif\'; color: #999; font-weight: 600; padding: 0 0 0 20px;\">\r\n<img style=\"height: 20px;\" alt=\"DocSend\" height=\"20\" src=\"https://assets.docsend.com/public/email_images/ds-logos/dropbox-docsend-wordmark--color-on-white@2x.png\">\r\n</td>\r\n<td align=\"right\" style=\"font-family: \'Open Sans\', \'Lucida Grande\', \'Segoe UI\', Arial, Verdana, \'Lucida Sans Unicode\', Tahoma, \'Sans Serif\'; color: #9da0a6; font-size: 10px; padding: 0 20px 0 0;\">\r\nMade in San Francisco, CA © 2025 DocSend.\r\n</td>\r\n</tr>\r\n</table>\r\n</td>\r\n</tr>\r\n</table>\r\n\r\n</td>\r\n</tr>\r\n</table>\r\n</td>\r\n</tr>\r\n</table>\r\n</td>\r\n</tr>\r\n</table>\r\n<img src=\"https://ea.pstmrk.it/open?m=v3_1.j-U8psqPp02bsU1uaV2Uvw.2tlyuEUI5TsRtMuRv_Mc2Dbms2v8z2EJGnLP_56Hlyj94kGPkiBmAN0txrJ1tg-b4N3DJUeQPgHjSdiFNaPDN_Jjdum31S8hDdLPlLyuCXNkt2uFY4D1kv3BE-fqw0038lmLWRe4IvC6tyZlYzuCOHm9mnDrSolBHYIzxzlCfT4qJSaVosecL3DgJpc_TC9TGL_kwhPHKEfxHigdHl4wT80ApxketRpHOnoSeKGfXTMpaBzx5CaGNHWFC8DoLpXlW0getmbBcocPpDUys5h4Y2e4Qn5Ww-6YQnDYhP0v8YlY5-M-VjagHE4wSlhxKzzJDx6qVuUqWygvQYzJDA1--SPO9gJLoawUcqzUXATlmmvJeb6EE_u-d_KmfOb1Rkp2cr7llYxTjZL8k_vl2DSWRTwUPQDg9ec6GthEHY5inSKZLwVJ6BaBIa3vgr_IElI_-DPkWAFeNs6rFNmv5bBN7I0bx9uHo3UhJihMoqiJW4ZsId2oLolIT3pjG9UEVSteqGPaG2LYP3uMcngDQ7bBk_JcVieV_L_enkPDFaECdFa7Jq9mf4nrGPeVk5yFNAdjbRvRbpaaSsD44WJjTNEIkiNCzNsu9SNIwdWUNKkrLpOdG46TwSAItcueCKaPC8hFP2nfroi9nJfJaiiQjf1O9xPaYC1ionC40BzoB3BfxHI\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" /></body>\r\n</html>','\r\nYou have been granted access\r\n\r\n  Andy Yakulis (andy@tfvector.com) has given you access to Vector Series A (Restricted).\r\n\r\n  View the Space at https://docsend.com/view/s/2pgdg2wtf9scvwr8?wldn=a9f6000e603eea30c698017a8c453eeca7e35a7dc1ca9afb58b0798275d8b391%24%24%2Ff0KE4WSsrPy26%2BlbpDYCHaf0j3zWk8Vrw%3D%3D--2Yq8WqdhUuJGcQD8--8HjMewVwcZs9Rl9B5%2FrCfQ%3D%3D\r\n\r\n\r\n\r\n\r\nCopyright 2025, Dropbox DocSend',0,0,0,0,0,0,'2025-06-11 23:01:49','2025-12-09 19:12:46','2025-12-09 19:12:46','2025-12-09 19:12:46',NULL,NULL,NULL),
(370,4,' <BN2P110MB1073C9AA589F98EA5C4832BAB874A@BN2P110MB1073.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,' =?utf-8?B?UkU6IFtFWFRFUk5BTF0gUmU6IHZpYSBOaWMgVmFuZHJlLSBPcGVuIFJvdW5k?= =?utf-8?B?4oCm?=','andy.yakulis@tfvector-gcc.com','Andy Yakulis','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:Aldrich;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon0, li.airmailon0, div.airmailon0\r\n	{mso-style-name:airmailon;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon00, li.airmailon00, div.airmailon00\r\n	{mso-style-name:airmailon0;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.gmailquote, li.gmailquote, div.gmailquote\r\n	{mso-style-name:gmailquote;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle24\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Sorry about that!<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><a href=\"https://docsend.com/view/s/ajegm7u886wtfxqt\">https://docsend.com/view/s/ajegm7u886wtfxqt</a><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">That should work now.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#776B6C\">Andy Yakulis,\r\n</span></b><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#9A000A\">CEO</span></b><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#776B6C\"><o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\"><a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a></span><u><span style=\"color:blue\"><o:p></o:p></span></u></p>\r\n<p class=\"MsoNormal\"><a href=\"https://www.tfvector.com/\" target=\"_blank\"><span style=\"color:#1155CC;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"146\" height=\"40\" style=\"width:1.5208in;height:.4166in\" id=\"_x0000_i1031\" src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXf182lfUiAGtgaXn5ngxbOMNf_n6J7f59sQHoPYtvAssPxqbAoHjVojrRZ4MuOAvPXJpc5Hrzz-j_5pVWH6pThhcGvhq2WwFdgOOz1on8K7lyUHW7-QMYp0ItCCKa5UnuzRh7jieQ?key=vPdQtPp2VQerhj_rzhzCgXlz\"></span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, June 11, 2025 8:00 PM<br>\r\n<b>To:</b> Andy Yakulis &lt;andy.yakulis@tfvector-gcc.com&gt;<br>\r\n<b>Subject:</b> RE: [EXTERNAL] Re: via Nic Vandre- Open Round…<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">Thanks Andy.<br>\r\nThe first link gives me your slide deck, but <br>\r\nunfortunately the second link is a link to Brian’s email…<br>\r\nCan you check the second link and resend?<br>\r\nThanks again!/<br>\r\nRick&nbsp; <o:p></o:p></p>\r\n<p class=\"airmailon\">On June 11, 2025 at 6:52:04<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM, Andy Yakulis (<a href=\"mailto:andy.yakulis@tfvector-gcc.com\">andy.yakulis@tfvector-gcc.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Term sheet you mean?<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:12.0pt\">If so here you go!<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://docsend.com/view/s/2pgdg2wtf9scvwr8\">Series A Deck</a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"mailto:brian@bayfrontcapitalllc.com\">Series A Term sheet</a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#776B6C\">Andy Yakulis,\r\n</span></b><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#9A000A\">CEO</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\"><a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://www.tfvector.com/\" target=\"_blank\"><span style=\"color:#1155CC;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"146\" height=\"40\" style=\"width:1.5208in;height:.4166in\" id=\"_x0000_i1030\" src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXf182lfUiAGtgaXn5ngxbOMNf_n6J7f59sQHoPYtvAssPxqbAoHjVojrRZ4MuOAvPXJpc5Hrzz-j_5pVWH6pThhcGvhq2WwFdgOOz1on8K7lyUHW7-QMYp0ItCCKa5UnuzRh7jieQ?key=vPdQtPp2VQerhj_rzhzCgXlz\"></span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, June 11, 2025 3:53 PM<br>\r\n<b>To:</b> Andy Yakulis &lt;<a href=\"mailto:andy.yakulis@tfvector-gcc.com\">andy.yakulis@tfvector-gcc.com</a>&gt;<br>\r\n<b>Subject:</b> RE: [EXTERNAL] Re: via Nic Vandre- Open Round…</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:12.0pt\">Brian had in his notes that you already had a memorandum that you prepared.\r\n<br>\r\nIs that was a mistake, or do you have an offering?<br>\r\n<br>\r\nThanks,<br>\r\nRick <o:p></o:p></p>\r\n<p class=\"airmailon0\">On June 11, 2025 at 4:59:29<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM, Andy Yakulis (<a href=\"mailto:andy.yakulis@tfvector-gcc.com\">andy.yakulis@tfvector-gcc.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Hi Rick. Great thank you!<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">What do you mean about a memorandum of offering? With my other investors they usually provide me a requested financial allocation.<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#776B6C\">Andy Yakulis,\r\n</span></b><b><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#9A000A\">CEO</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\"><a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://www.tfvector.com/\" target=\"_blank\"><span style=\"color:#1155CC;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"146\" height=\"40\" style=\"width:1.5208in;height:.4166in\" id=\"_x0000_i1029\" src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXf182lfUiAGtgaXn5ngxbOMNf_n6J7f59sQHoPYtvAssPxqbAoHjVojrRZ4MuOAvPXJpc5Hrzz-j_5pVWH6pThhcGvhq2WwFdgOOz1on8K7lyUHW7-QMYp0ItCCKa5UnuzRh7jieQ?key=vPdQtPp2VQerhj_rzhzCgXlz\"></span></a><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, June 11, 2025 12:51 PM<br>\r\n<b>To:</b> Andy Yakulis &lt;<a href=\"mailto:andy.yakulis@tfvector-gcc.com\">andy.yakulis@tfvector-gcc.com</a>&gt;<br>\r\n<b>Subject:</b> [EXTERNAL] Re: via Nic Vandre- Open Round…</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div style=\"border:solid #9C6500 1.0pt;padding:2.0pt 2.0pt 2.0pt 2.0pt\" id=\"footer\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;background:#FFEB9C\">\r\n<span style=\"color:black\">CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:12.0pt\">Hi Andy,<br>\r\nHope all is well.<br>\r\nBrian and I are very interested in moving forward with you and Vector.<br>\r\nCan you please forward your Memorandum of Offering?<br>\r\nWe’d like to to set up a followup meeting to discuss.<br>\r\nThanks much!<br>\r\nRick <o:p></o:p></p>\r\n<p class=\"airmailon00\">On May 21, 2025 at 9:44:03<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM, Andy Yakulis (<a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">oh haha. Was thinking that would be a big investment!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p style=\"margin:0in\"><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#776B6C\">Andy</span></b><o:p></o:p></p>\r\n<p style=\"margin:0in\"><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#776B6C\">Yakulis</span></b><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:black\">,</span></b><o:p></o:p></p>\r\n<p style=\"margin:0in\"><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#9A000A\">CEO</span></b><o:p></o:p></p>\r\n<p style=\"margin:0in\"><span style=\"font-size:11.0pt;font-family:Aldrich;color:#141414\"><a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a></span><o:p></o:p></p>\r\n<p style=\"margin:0in\"><a href=\"https://www.tfvector.com/\"><span style=\"color:#1155CC;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"144\" height=\"40\" style=\"width:1.5in;height:.4166in\" id=\"_x0000_i1028\" src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\"></span></a><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">On Wed, May 21, 2025 at 7:27<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; wrote:<o:p></o:p></p>\r\n</div>\r\n<blockquote style=\"border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Sorry. I was talking about 10 or 100 drones in the swarm ;) - didn’t matter to the dev guys.\r\n<br>\r\nBut if you need $10M or 100M… :)<br>\r\nAll good!<br>\r\nLet’s get to the next!<br>\r\nThanks!<br>\r\nRick <o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:12.0pt\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Rick Mislan, PhD<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"gmailquote\"><span style=\"color:black\">On May 21, 2025 at 9:23:33</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"color:black\">PM, Andy Yakulis (<a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a>) wrote:</span><o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Thanks Rick,<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">TO clarify... you meant 10 or 100m investment into the company? (at my 200m valuation)?<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">I\'ll bring my assistant on another&nbsp;thread to schedule time.<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p style=\"margin:0in\"><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#776B6C\">Andy Yakulis</span></b><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:black\">,</span></b>\r\n<b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#9A000A\">CEO</span></b><o:p></o:p></p>\r\n<p style=\"margin:0in\"><span style=\"font-size:11.0pt;font-family:Aldrich;color:#141414\"><a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a></span><o:p></o:p></p>\r\n<p style=\"margin:0in\"><a href=\"https://www.tfvector.com/\"><span style=\"color:#1155CC;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"144\" height=\"40\" style=\"width:1.5in;height:.4166in\" id=\"_x0000_i1027\" src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\"></span></a><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">On Wed, May 21, 2025 at 7:06<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; wrote:<o:p></o:p></p>\r\n</div>\r\n<blockquote style=\"border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt\">\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Andy,\r\n<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Thank you for your time and interest today!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">I enjoyed the conversation and appreciate your efforts!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Let me know what works best for your Wednesday-Friday next week.&nbsp; I’ll have Brian join us.&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Also, as a follow up, my guys says we could do 10 or 100…<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">We will work&nbsp;towards a demo asap!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">I look forward to talking again soon!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Thanks again,<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Rick<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Rick Mislan, PhD<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"gmailquote\"><span style=\"color:black\">On May 21, 2025 at 1:31:09</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"color:black\">PM, Tory Roberts (<a href=\"mailto:tory@tfvector.com\">tory@tfvector.com</a>) wrote:</span><o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div>\r\n<blockquote style=\"border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt\">\r\n<div>\r\n<blockquote style=\"border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<p style=\"margin:0in\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">On Sat, May 17, 2025 at 7:02<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>AM Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; wrote:<o:p></o:p></p>\r\n</div>\r\n<blockquote style=\"border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt\">\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Wednesday at 11 works as well.&nbsp;\r\n<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Thanks!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:12.0pt\">Rick<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Rick Mislan, PhD<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"gmailquote\"><span style=\"color:black\">On May 16, 2025 at 8:54:45</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"color:black\">PM, Andy Yakulis (<a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a>) wrote:</span><o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Rick,<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Sorry, 4pm EST monday got filled up as we were coordinating. How\'s Wed morning? 11am EST?<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p style=\"margin:0in\"><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#776B6C\">Andy Yakulis</span></b><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:black\">,</span></b>\r\n<b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#9A000A\">CEO</span></b><o:p></o:p></p>\r\n<p style=\"margin:0in\"><span style=\"font-size:11.0pt;font-family:Aldrich;color:#141414\"><a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a></span><o:p></o:p></p>\r\n<p style=\"margin:0in\"><a href=\"https://www.tfvector.com/\"><span style=\"color:#1155CC;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"144\" height=\"40\" style=\"width:1.5in;height:.4166in\" id=\"_x0000_i1026\" src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\"></span></a><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">On Fri, May 16, 2025 at 5:49<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>AM Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; wrote:<o:p></o:p></p>\r\n</div>\r\n<blockquote style=\"border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt\">\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks, Andy!</span><o:p></o:p></p>\r\n</div>\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Let’s do your first time slot on Monday at 4p.</span><o:p></o:p></p>\r\n</div>\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I’m in NY, so EST.</span><o:p></o:p></p>\r\n</div>\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">You want a Zoom/Teams/Meet link?</span><o:p></o:p></p>\r\n</div>\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Appreciate the connect!</span><o:p></o:p></p>\r\n</div>\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div id=\"m_6478522137423560339m_-1881386465733571175m_7713507599557397576m_7351328678873190659m_-5266176066065057347m_1319968862344816610bloop_sign_1747396037540008960\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Rick Mislan, PhD<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p>On May 16, 2025 at 12:20:03<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>AM, Andy Yakulis (<a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Rick<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Thank you for reaching out! Absolutely interested in speaking&nbsp;with you especially if you know Nick!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Not sure what time zone you are in, I\'m in MTN so I\'ll offer&nbsp;the following:<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Mon 19May:<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">4pm<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">5pm<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Tues, 20May<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">5pm<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Wed, 21May:<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">9am<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">10am<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">3pm<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">4pm<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p style=\"margin:0in\"><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#776B6C\">Andy Yakulis</span></b><b><span style=\"font-size:11.0pt;font-family:Aldrich;color:black\">,</span></b>\r\n<b><span style=\"font-size:11.0pt;font-family:Aldrich;color:#9A000A\">CEO</span></b><o:p></o:p></p>\r\n<p style=\"margin:0in\"><span style=\"font-size:11.0pt;font-family:Aldrich;color:#141414\"><a href=\"mailto:andy@tfvector.com\">andy@tfvector.com</a></span><o:p></o:p></p>\r\n<p style=\"margin:0in\"><a href=\"https://www.tfvector.com/\"><span style=\"color:#1155CC;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"144\" height=\"40\" style=\"width:1.5in;height:.4166in\" id=\"_x0000_i1025\" src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz\"></span></a><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">On Thu, May 15, 2025 at 5:37<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>AM Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; wrote:<o:p></o:p></p>\r\n</div>\r\n<blockquote style=\"border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt\">\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Andy,</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Nic Vandre said to reach out.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I’ve followed your work a bit over time, but recently,&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I\'ve come into an opportunity where I think I can help make a difference.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I’d love to schedule a call sometime this week or next</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">to see how I might help with your open round of investment.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Please let me know what’s most convenient and then let’s jump on a call!</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Thank you for your time and consideration,\r\n<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Rick<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Rick Mislan, PhD<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://ww.mislan.com/\">https://mislan.com</a><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><br>\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n<p class=\"MsoNormal\"><br>\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n<br>\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n</body>\r\n</html>\r\n','Sorry about that!\r\n\r\nhttps://docsend.com/view/s/ajegm7u886wtfxqt\r\n\r\nThat should work now.\r\n\r\n\r\nAndy Yakulis, CEO\r\nandy@tfvector.com<mailto:andy@tfvector.com>\r\n[https://lh7-rt.googleusercontent.com/docsz/AD_4nXf182lfUiAGtgaXn5ngxbOMNf_n6J7f59sQHoPYtvAssPxqbAoHjVojrRZ4MuOAvPXJpc5Hrzz-j_5pVWH6pThhcGvhq2WwFdgOOz1on8K7lyUHW7-QMYp0ItCCKa5UnuzRh7jieQ?key=vPdQtPp2VQerhj_rzhzCgXlz]<https://www.tfvector.com/>\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Wednesday, June 11, 2025 8:00 PM\r\nTo: Andy Yakulis <andy.yakulis@tfvector-gcc.com>\r\nSubject: RE: [EXTERNAL] Re: via Nic Vandre- Open Round…\r\n\r\nThanks Andy.\r\nThe first link gives me your slide deck, but\r\nunfortunately the second link is a link to Brian’s email…\r\nCan you check the second link and resend?\r\nThanks again!/\r\nRick\r\n\r\nOn June 11, 2025 at 6:52:04 PM, Andy Yakulis (andy.yakulis@tfvector-gcc.com<mailto:andy.yakulis@tfvector-gcc.com>) wrote:\r\nTerm sheet you mean?\r\n\r\nIf so here you go!\r\nSeries A Deck<https://docsend.com/view/s/2pgdg2wtf9scvwr8>\r\nSeries A Term sheet<mailto:brian@bayfrontcapitalllc.com>\r\n\r\n\r\n\r\nAndy Yakulis, CEO\r\nandy@tfvector.com<mailto:andy@tfvector.com>\r\n[https://lh7-rt.googleusercontent.com/docsz/AD_4nXf182lfUiAGtgaXn5ngxbOMNf_n6J7f59sQHoPYtvAssPxqbAoHjVojrRZ4MuOAvPXJpc5Hrzz-j_5pVWH6pThhcGvhq2WwFdgOOz1on8K7lyUHW7-QMYp0ItCCKa5UnuzRh7jieQ?key=vPdQtPp2VQerhj_rzhzCgXlz]<https://www.tfvector.com/>\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Wednesday, June 11, 2025 3:53 PM\r\nTo: Andy Yakulis <andy.yakulis@tfvector-gcc.com<mailto:andy.yakulis@tfvector-gcc.com>>\r\nSubject: RE: [EXTERNAL] Re: via Nic Vandre- Open Round…\r\n\r\nBrian had in his notes that you already had a memorandum that you prepared.\r\nIs that was a mistake, or do you have an offering?\r\n\r\nThanks,\r\nRick\r\n\r\nOn June 11, 2025 at 4:59:29 PM, Andy Yakulis (andy.yakulis@tfvector-gcc.com<mailto:andy.yakulis@tfvector-gcc.com>) wrote:\r\nHi Rick. Great thank you!\r\n\r\nWhat do you mean about a memorandum of offering? With my other investors they usually provide me a requested financial allocation.\r\n\r\n\r\nAndy Yakulis, CEO\r\nandy@tfvector.com<mailto:andy@tfvector.com>\r\n[https://lh7-rt.googleusercontent.com/docsz/AD_4nXf182lfUiAGtgaXn5ngxbOMNf_n6J7f59sQHoPYtvAssPxqbAoHjVojrRZ4MuOAvPXJpc5Hrzz-j_5pVWH6pThhcGvhq2WwFdgOOz1on8K7lyUHW7-QMYp0ItCCKa5UnuzRh7jieQ?key=vPdQtPp2VQerhj_rzhzCgXlz]<https://www.tfvector.com/>\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Wednesday, June 11, 2025 12:51 PM\r\nTo: Andy Yakulis <andy.yakulis@tfvector-gcc.com<mailto:andy.yakulis@tfvector-gcc.com>>\r\nSubject: [EXTERNAL] Re: via Nic Vandre- Open Round…\r\n\r\nCAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.\r\nHi Andy,\r\nHope all is well.\r\nBrian and I are very interested in moving forward with you and Vector.\r\nCan you please forward your Memorandum of Offering?\r\nWe’d like to to set up a followup meeting to discuss.\r\nThanks much!\r\nRick\r\n\r\nOn May 21, 2025 at 9:44:03 PM, Andy Yakulis (andy@tfvector.com<mailto:andy@tfvector.com>) wrote:\r\noh haha. Was thinking that would be a big investment!\r\n\r\n\r\nAndy\r\n\r\nYakulis,\r\n\r\nCEO\r\n\r\nandy@tfvector.com<mailto:andy@tfvector.com>\r\n\r\n[https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz]<https://www.tfvector.com/>\r\n\r\n\r\n\r\n\r\nOn Wed, May 21, 2025 at 7:27 PM Rick <rick@mavrix.one<mailto:rick@mavrix.one>> wrote:\r\nSorry. I was talking about 10 or 100 drones in the swarm ;) - didn’t matter to the dev guys.\r\nBut if you need $10M or 100M… :)\r\nAll good!\r\nLet’s get to the next!\r\nThanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n\r\nOn May 21, 2025 at 9:23:33 PM, Andy Yakulis (andy@tfvector.com<mailto:andy@tfvector.com>) wrote:\r\nThanks Rick,\r\n\r\nTO clarify... you meant 10 or 100m investment into the company? (at my 200m valuation)?\r\n\r\nI\'ll bring my assistant on another thread to schedule time.\r\n\r\n\r\nAndy Yakulis, CEO\r\n\r\nandy@tfvector.com<mailto:andy@tfvector.com>\r\n\r\n[https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz]<https://www.tfvector.com/>\r\n\r\n\r\n\r\n\r\nOn Wed, May 21, 2025 at 7:06 PM Rick <rick@mavrix.one<mailto:rick@mavrix.one>> wrote:\r\nAndy,\r\nThank you for your time and interest today!\r\nI enjoyed the conversation and appreciate your efforts!\r\nLet me know what works best for your Wednesday-Friday next week.  I’ll have Brian join us.\r\nAlso, as a follow up, my guys says we could do 10 or 100…\r\nWe will work towards a demo asap!\r\n\r\nI look forward to talking again soon!\r\n\r\nThanks again,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n\r\nOn May 21, 2025 at 1:31:09 PM, Tory Roberts (tory@tfvector.com<mailto:tory@tfvector.com>) wrote:\r\n\r\n\r\n\r\n\r\nOn Sat, May 17, 2025 at 7:02 AM Rick <rick@mavrix.one<mailto:rick@mavrix.one>> wrote:\r\nWednesday at 11 works as well.\r\nThanks!\r\nRick\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n\r\nOn May 16, 2025 at 8:54:45 PM, Andy Yakulis (andy@tfvector.com<mailto:andy@tfvector.com>) wrote:\r\nRick,\r\n\r\nSorry, 4pm EST monday got filled up as we were coordinating. How\'s Wed morning? 11am EST?\r\n\r\nAndy Yakulis, CEO\r\n\r\nandy@tfvector.com<mailto:andy@tfvector.com>\r\n\r\n[https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz]<https://www.tfvector.com/>\r\n\r\n\r\n\r\n\r\nOn Fri, May 16, 2025 at 5:49 AM Rick <rick@mavrix.one<mailto:rick@mavrix.one>> wrote:\r\nThanks, Andy!\r\nLet’s do your first time slot on Monday at 4p.\r\nI’m in NY, so EST.\r\nYou want a Zoom/Teams/Meet link?\r\nAppreciate the connect!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n\r\n\r\nOn May 16, 2025 at 12:20:03 AM, Andy Yakulis (andy@tfvector.com<mailto:andy@tfvector.com>) wrote:\r\nRick\r\n\r\nThank you for reaching out! Absolutely interested in speaking with you especially if you know Nick!\r\n\r\nNot sure what time zone you are in, I\'m in MTN so I\'ll offer the following:\r\n\r\nMon 19May:\r\n4pm\r\n5pm\r\n\r\nTues, 20May\r\n5pm\r\n\r\nWed, 21May:\r\n9am\r\n10am\r\n3pm\r\n4pm\r\n\r\nAndy Yakulis, CEO\r\n\r\nandy@tfvector.com<mailto:andy@tfvector.com>\r\n\r\n[https://lh7-rt.googleusercontent.com/docsz/AD_4nXfPmVbO7P4qw_bc1CMXwq6HLFSXkTZ5JmAlUmlQuYLui4h7OOI8bGEYnp_ny1_Jc9spLj2Vdq-jFIbVQouQ-MW3yPnBk-guVI22OzxM2pMs1ZbAF_MqnuFcRteISiMGJ9my2DDUQA?key=vPdQtPp2VQerhj_rzhzCgXlz]<https://www.tfvector.com/>\r\n\r\n\r\n\r\n\r\nOn Thu, May 15, 2025 at 5:37 AM Rick <rick@mavrix.one<mailto:rick@mavrix.one>> wrote:\r\nAndy,\r\n\r\nNic Vandre said to reach out.\r\nI’ve followed your work a bit over time, but recently,\r\nI\'ve come into an opportunity where I think I can help make a difference.\r\n\r\nI’d love to schedule a call sometime this week or next\r\nto see how I might help with your open round of investment.\r\n\r\nPlease let me know what’s most convenient and then let’s jump on a call!\r\n\r\nThank you for your time and consideration,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\nhttps://mislan.com<https://ww.mislan.com/>\r\n\r\n\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n\r\nThis email address is approved for communication up to Federal Contract Information (FCI). For transfer of Controlled Unclassified Information (CUI) or higher, please contact me for secure file transmission methods.\r\n',0,0,0,0,0,0,'2025-06-12 03:40:09','2025-12-09 19:12:47','2025-12-09 19:12:47','2025-12-09 19:12:47',NULL,NULL,NULL),
(371,4,'<44C4057C-0D55-4C48-9C0A-DC32CAA37E22@bayfrontcapitalllc.com>',NULL,NULL,'Re: Vector Pitch and Term Sheeet','brian@bayfrontcapitalllc.com','Brian Stufflebean','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body dir=\"auto\">Rick,<div><br></div><div>No attachments?<br id=\"lineBreakAtBeginningOfSignature\"><div dir=\"ltr\"><div class=\"\"><span style=\"font-size: 17pt;\"><br></span></div><div class=\"\"><div class=\"\"><div><span class=\"\" style=\"background-color: rgba(255, 255, 255, 0);\">Best Regards,&nbsp;</span></div><div><span class=\"\" style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div><span class=\"\" style=\"background-color: rgba(255, 255, 255, 0);\">Brian C. Stufflebean, CEO<br class=\"\"><b class=\"\">Bayfront Capital, LLC</b><br class=\"\"><span class=\"\"><a href=\"tel:(941)545-4153\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"0/2\" style=\"text-decoration-color: rgba(128, 128, 128, 0.38);\">(941)545-4153</a>&nbsp;Cell</span></span></div><div><span style=\"background-color: rgba(255, 255, 255, 0);\"><span class=\"\"><a href=\"tel:(866)896-2423\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"0/3\" style=\"text-decoration-color: rgba(128, 128, 128, 0.38);\">(866)896-2423</a>&nbsp;Fax<br class=\"\"><a href=\"mailto:brian@bayfrontcapitalllc.com\" class=\"\">brian@bayfrontcapitalllc.com</a><br class=\"\"><a href=\"http://www.bayfrontcapitalllc.com/\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"link\" x-apple-data-detectors-result=\"0/5\" style=\"text-decoration-color: rgba(128, 128, 128, 0.38);\">www.bayfrontcapitalllc.com</a></span><br class=\"\">&nbsp; &nbsp; &nbsp;&nbsp;<br class=\"\"><br class=\"\"></span></div><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"Apple-interchange-newline\"><br></span><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"Apple-interchange-newline\"><br class=\"Apple-interchange-newline\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><b class=\"\">CONFIDENTIALITY NOTICE / NOTICE OF&nbsp;<u class=\"\">NOT A REGISTERED BROKER/DEALER:</u></b><span class=\"\">&nbsp;Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with&nbsp;FINRA. Nor does&nbsp;it provide tax or investment advice. &nbsp;Any references made to any transaction in any communication is being made as a business consultant. &nbsp; This is not a&nbsp;solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law.&nbsp;This communication&nbsp;is confidential and intended only for the intended&nbsp;recipient. &nbsp;If you are not the intended recipient, you&nbsp;may not copy, disclose, or distribute this message&nbsp;to anyone else; any such actions may be unlawful. If you have received this communication in error,&nbsp;please contact the sender of the message to inform him or her of the error.</span></span></div><div><span class=\"\"><br></span></div></div></div></div><div class=\"\"><span style=\"font-size: 17pt;\"><br></span></div><div class=\"\"><span style=\"font-size: 17pt;\">Sent from my iPhone</span></div></div><div dir=\"ltr\"><br><blockquote type=\"cite\">On Jun 12, 2025, at 9:31 AM, Rick &lt;rick@mavrix.one&gt; wrote:<br><br></blockquote></div><blockquote type=\"cite\"><div dir=\"ltr\">﻿\r\n    <style>body { font-family: Helvetica, Arial; font-size: 13px; }</style><div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\"><br></div>Brian,<div id=\"bloop_sign_1749734824159118080\" class=\"bloop_sign\"></div>\r\n\r\n\r\n<div>Morning.</div><div>Andy sent me 2 links last night&nbsp;</div><div>that I had to register for&nbsp;</div><div>to download their Deck and Term Sheet.</div><div><br></div><div>So, I downloaded the images and&nbsp;</div><div>combined the individual pages&nbsp;</div><div>into a Deck and a Term Sheet.</div><div><br></div><div>Figured it would be easier that way.</div><div>Anyway, let me know if you</div><div>need anything else from him.</div><div><br></div><div>Thanks,</div><div>Rick</div></div></blockquote></div></body></html>','Rick,No attachments?Best Regards,&nbsp;Brian C. Stufflebean, CEOBayfront Capital, LLC(941)545-4153&nbsp;Cell(866)896-2423&nbsp;Faxbrian@bayfrontcapitalllc.comwww.bayfrontcapitalllc.com&nbsp; &nbsp; &nbsp;&nbsp;CONFIDENTIALITY NOTICE / NOTICE OF&nbsp;NOT A REGISTERED BROKER/DEALER:&nbsp;Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with&nbsp;FINRA. Nor does&nbsp;it provide tax or investment advice. &nbsp;Any references made to any transaction in any communication is being made as a business consultant. &nbsp; This is not a&nbsp;solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law.&nbsp;This communication&nbsp;is confidential and intended only for the intended&nbsp;recipient. &nbsp;If you are not the intended recipient, you&nbsp;may not copy, disclose, or distribute this message&nbsp;to anyone else; any such actions may be unlawful. If you have received this communication in error,&nbsp;please contact the sender of the message to inform him or her of the error.Sent from my iPhoneOn Jun 12, 2025, at 9:31 AM, Rick &lt;rick@mavrix.one&gt; wrote:﻿\r\n    body { font-family: Helvetica, Arial; font-size: 13px; }Brian,\r\n\r\n\r\nMorning.Andy sent me 2 links last night&nbsp;that I had to register for&nbsp;to download their Deck and Term Sheet.So, I downloaded the images and&nbsp;combined the individual pages&nbsp;into a Deck and a Term Sheet.Figured it would be easier that way.Anyway, let me know if youneed anything else from him.Thanks,Rick',0,0,0,0,0,0,'2025-06-12 16:10:33','2025-12-09 19:12:47','2025-12-09 19:12:47','2025-12-09 19:12:47',NULL,NULL,NULL),
(372,4,' <BL3PR20MB4924C4F0D710BC774A9BCDE3AF74A@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: Meeting at 2PST (5EST)','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nGot it, thanks</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Thursday, June 12, 2025 6:32 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Meeting at 2PST (5EST)</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nJason,</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nHere is the link for the meeting with Brian today at 2PST:</div>\r\n<div id=\"x_bloop_customfont\" style=\"margin:0px\"><br>\r\n</div>\r\n<div id=\"x_bloop_customfont\" style=\"margin:0px\"><a href=\"https://meet.google.com/dzp-tpod-mjg\">https://meet.google.com/dzp-tpod-mjg</a><br>\r\n</div>\r\n<div id=\"x_bloop_customfont\" style=\"margin:0px\"><br>\r\n</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks again!</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div id=\"x_bloop_sign_1749735052706213120\" class=\"x_bloop_sign\"></div>\r\n</div>\r\n</body>\r\n</html>','Got it, thanks\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Thursday, June 12, 2025 6:32 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Meeting at 2PST (5EST)\r\n\r\nJason,\r\nHere is the link for the meeting with Brian today at 2PST:\r\n\r\nhttps://meet.google.com/dzp-tpod-mjg\r\n\r\nThanks again!\r\nRick',0,0,0,0,0,0,'2025-06-12 17:36:58','2025-12-09 19:12:48','2025-12-09 19:12:48','2025-12-09 19:12:48',NULL,NULL,NULL),
(373,4,' <BL3PR20MB49241BB963E2DD68E6DA7816AF74A@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: Meeting at 2PST (5EST)','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<a href=\"https://www.youtube.com/watch?v=TQ9eZPoWJkI&amp;ab_channel=StrangeParts\" id=\"LPlnk285603\">https://www.youtube.com/watch?v=TQ9eZPoWJkI&amp;ab_channel=StrangeParts</a></div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Sent:</b> Thursday, June 12, 2025 10:36 AM<br>\r\n<b>To:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Meeting at 2PST (5EST)</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style type=\"text/css\" style=\"display:none\">\r\n<!--\r\np\r\n	{margin-top:0;\r\n	margin-bottom:0}\r\n-->\r\n</style>\r\n<div dir=\"ltr\">\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nGot it, thanks</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Thursday, June 12, 2025 6:32 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Meeting at 2PST (5EST)</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nJason,</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nHere is the link for the meeting with Brian today at 2PST:</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"margin:0px\"><br>\r\n</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"margin:0px\"><a href=\"https://meet.google.com/dzp-tpod-mjg\">https://meet.google.com/dzp-tpod-mjg</a><br>\r\n</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"margin:0px\"><br>\r\n</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks again!</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div id=\"x_x_bloop_sign_1749735052706213120\" class=\"x_x_bloop_sign\"></div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','https://www.youtube.com/watch?v=TQ9eZPoWJkI&ab_channel=StrangeParts\r\n________________________________\r\nFrom: Jason Blick <jason@corvexsystems.com>\r\nSent: Thursday, June 12, 2025 10:36 AM\r\nTo: Rick <rick@mavrix.one>\r\nSubject: Re: Meeting at 2PST (5EST)\r\n\r\nGot it, thanks\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Thursday, June 12, 2025 6:32 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Meeting at 2PST (5EST)\r\n\r\nJason,\r\nHere is the link for the meeting with Brian today at 2PST:\r\n\r\nhttps://meet.google.com/dzp-tpod-mjg\r\n\r\nThanks again!\r\nRick',0,0,0,0,0,0,'2025-06-12 21:04:51','2025-12-09 19:12:48','2025-12-09 19:12:48','2025-12-09 19:12:48',NULL,NULL,NULL),
(374,4,' <BL3PR20MB4924B29A80DD19EB956CBECAAF77A@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: Meeting at 2PST (5EST)','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHi Rick,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHere is a link to a data room that I put together for you guys that has some of our key information inside of it, including financial reports, facility overviews, and product overviews.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<a href=\"https://drive.google.com/drive/folders/1b_i_2wQMqxn02ftwG4Gagk_3-sZnXsFo?usp=sharing\">https://drive.google.com/drive/folders/1b_i_2wQMqxn02ftwG4Gagk_3-sZnXsFo?usp=sharing</a></div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nGoogle sheets is known to occasionally mess up exports to Excel, so if that\'s an issue just let me know and I can port them over to an Excel native format for you.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nTalk soon,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nJason</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Thursday, June 12, 2025 6:32 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Meeting at 2PST (5EST)</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nJason,</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nHere is the link for the meeting with Brian today at 2PST:</div>\r\n<div id=\"x_bloop_customfont\" style=\"margin:0px\"><br>\r\n</div>\r\n<div id=\"x_bloop_customfont\" style=\"margin:0px\"><a href=\"https://meet.google.com/dzp-tpod-mjg\">https://meet.google.com/dzp-tpod-mjg</a><br>\r\n</div>\r\n<div id=\"x_bloop_customfont\" style=\"margin:0px\"><br>\r\n</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks again!</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div id=\"x_bloop_sign_1749735052706213120\" class=\"x_bloop_sign\"></div>\r\n</div>\r\n</body>\r\n</html>','Hi Rick,\r\n\r\nHere is a link to a data room that I put together for you guys that has some of our key information inside of it, including financial reports, facility overviews, and product overviews.\r\n\r\nhttps://drive.google.com/drive/folders/1b_i_2wQMqxn02ftwG4Gagk_3-sZnXsFo?usp=sharing\r\n\r\nGoogle sheets is known to occasionally mess up exports to Excel, so if that\'s an issue just let me know and I can port them over to an Excel native format for you.\r\n\r\nTalk soon,\r\nJason\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Thursday, June 12, 2025 6:32 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Meeting at 2PST (5EST)\r\n\r\nJason,\r\nHere is the link for the meeting with Brian today at 2PST:\r\n\r\nhttps://meet.google.com/dzp-tpod-mjg\r\n\r\nThanks again!\r\nRick',0,0,0,0,0,0,'2025-06-13 18:35:36','2025-12-09 19:12:48','2025-12-09 19:12:48','2025-12-09 19:12:48',NULL,NULL,NULL),
(375,4,' <BY3PR13MB494587E7C025BD03AB812619CC70A@BY3PR13MB4945.namprd13.prod.outlook.com>',NULL,NULL,'Red Team and Training','chris@odsafe.com','Chris','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nRick,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nAttached is mostly what I am doing right now.&nbsp; I have some other capabilities at hand, however I am not advertising some of the more complex stuff to most organizations. There are things that I will offer to only certain places and capabilities that I can only\r\n show to specific groups. I hope that makes sense.&nbsp;</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nLet me know if you have any questions.&nbsp;</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nThank you,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nChris&nbsp;</div>\r\n</body>\r\n</html>','Rick,\r\nAttached is mostly what I am doing right now.  I have some other capabilities at hand, however I am not advertising some of the more complex stuff to most organizations. There are things that I will offer to only certain places and capabilities that I can only show to specific groups. I hope that makes sense.\r\n\r\nLet me know if you have any questions.\r\n\r\nThank you,\r\nChris',0,0,0,0,0,0,'2025-06-16 14:18:50','2025-12-09 19:12:49','2025-12-09 19:12:49','2025-12-09 19:12:49',NULL,NULL,NULL),
(376,4,' <Share-d9b9a8a1-b0d7-0000-b2e2-2dbc390e9c5d,d9b9a8a1-b0d7-0000-b2e2-2dbc390e9c5d-94c9a932-a09b-41df-9391-7c116f5bb79a-r0-SendEmail@odspnotify>',NULL,NULL,'Jarrett Brownfield shared the folder \"LBC Video\" with you','jarrett.brownfield@jdcapitaladvisors.com','Jarrett Brownfield','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html dir=\"ltr\" xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en-us\" xmlns:o=\"urn:schemas-microsoft-com:office:office\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<style type=\"text/css\">\r\n    .headerBackgroundMsoTable {\r\n        border-spacing: 0px;\r\n        width: 100%;\r\n    }\r\n</style><style type=\"text/css\">\r\n    @font-face {\r\n        font-family: \"Segoe UI\";\r\n        src: local(\"Segoe UI Light\"), url(\"https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-light.woff2\") format(\"woff2\"), url(\"https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-light.woff\") format(\"woff\"), url(\"https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-light.ttf\") format(\"truetype\");\r\n        font-weight: 100;\r\n        font-style: normal;\r\n    }\r\n\r\n    @font-face {\r\n        font-family: \"Segoe UI\";\r\n        src: local(\"Segoe UI Semilight\"), url(\"https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semilight.woff2\") format(\"woff2\"), url(\"https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semilight.woff\") format(\"woff\"), url(\"https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semilight.ttf\") format(\"truetype\");\r\n        font-weight: 300;\r\n        font-style: normal;\r\n    }\r\n\r\n    @font-face {\r\n        font-family: \"Segoe UI\";\r\n        src: local(\"Segoe UI\"), url(\"https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-regular.woff2\") format(\"woff2\"), url(\"https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-regular.woff\") format(\"woff\"), url(\"https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-regular.ttf\") format(\"truetype\");\r\n        font-weight: 400;\r\n        font-style: normal;\r\n    }\r\n\r\n    @font-face {\r\n        font-family: \"Segoe UI\";\r\n        src: local(\"Segoe UI Semibold\"), url(\"https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semibold.woff2\") format(\"woff2\"), url(\"https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semibold.woff\") format(\"woff\"), url(\"https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semibold.ttf\") format(\"truetype\");\r\n        font-weight: 600;\r\n        font-style: normal;\r\n    }\r\n\r\n    @media only screen and (max-width: 640px) {\r\n        body {\r\n            background-color: #ffffff;\r\n        }\r\n\r\n        div.grey-bg-container {\r\n            background-color: #ffffff;\r\n        }\r\n    }\r\n\r\n    @media only screen and (min-width: 640px) {\r\n        .CommentMention-TextRow-rightColumn {\r\n            width: 52px !important;\r\n        }\r\n    }\r\n    /* Responsive visibility clases. */\r\n    .u-largeOnly {\r\n        display: none !important;\r\n    }\r\n\r\n    @media only screen and (min-width: 640px) {\r\n        .u-smallOnly {\r\n            display: none !important;\r\n        }\r\n\r\n        .u-largeOnly {\r\n            display: block !important;\r\n        }\r\n    }\r\n    /* Adjustments to the Sharing template. */\r\n    @media only screen and (min-width: 640px) {\r\n        .Sharing-main {\r\n            padding: 40px !important;\r\n        }\r\n    }\r\n\r\n    @media only screen and (max-width: 640px) {\r\n        .NotificationHeader-icon {\r\n            width: 36px !important;\r\n        }\r\n\r\n        .NotificationHeader-title {\r\n            padding-left: 28px !important;\r\n            padding-right: 28px !important;\r\n        }\r\n\r\n        .NotificationHeader-title-text {\r\n            font-size: 20px !important;\r\n            line-height: 28px !important;\r\n        }\r\n    }\r\n\r\n    .word-button:hover {\r\n        background-color: #124078 !important;\r\n        border-color: #124078 !important;\r\n    }\r\n\r\n    .word-button:active {\r\n        background-color: #002050 !important;\r\n        border-color: #002050 !important;\r\n    }\r\n\r\n    .powerpoint-button:hover {\r\n        background-color: #a92b1a !important;\r\n        border-color: #a92b1a !important;\r\n    }\r\n\r\n    .powerpoint-button:active {\r\n        background-color: #740912 !important;\r\n        border-color: #740912 !important;\r\n    }\r\n\r\n    .excel-button:hover {\r\n        background-color: #217346 !important;\r\n        border-color: #217346 !important;\r\n    }\r\n\r\n    .excel-button:active {\r\n        background-color: #004b1c !important;\r\n        border-color: #004b1c !important;\r\n    }\r\n</style><!--[if mso]>\r\n<style type=\"text/css\">\r\n   body, table, td { font-family: \'Segoe UI\', sans-serif !important; }\r\n   a { color: #0000EE; }\r\n</style>\r\n<![endif]-->\r\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\r\n<!--[if mso]>\r\n<xml>\r\n    <o:OfficeDocumentSettings>\r\n        <o:AllowPNG/>\r\n        <o:PixelsPerInch>96</o:PixelsPerInch>\r\n    </o:OfficeDocumentSettings>\r\n</xml>\r\n<![endif]-->\r\n</head>\r\n<body style=\"margin: 0px;padding-top: 32px;background-color: #f8f8f8\">\r\n<div stlye=\"\"><!--[if gte mso 9]>\r\n                <v:background xmlns:v=\"urn:schemas-microsoft-com:vml\" fill=\"t\">\r\n                <v:fill type=\"tile\" src=\"\" iconthumbnail=\"\" color=\"#f3f3f3\"/>\r\n                </v:background>\r\n                <![endif]-->\r\n<table height=\"100%\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border-spacing: 0px\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\" align=\"center\" style=\"background-image:url();background-color:#f3f3f3;\">\r\n<table align=\"center\" style=\"border-spacing: 0px;width: 600px;margin-right: auto;margin-left: auto\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"padding: 0px;margin: 0px\"><!-- Start Standard Header -->\r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border-spacing: 0px;width: 100%;padding-top: 15px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"center\" style=\"width: 100%;border: 1px solid #c8c8c8 !important;box-shadow: 0px 3px 0px rgba(0,0,0,0.05);border-top-left-radius: 8px;border-top-right-radius: 8px;overflow: hidden;border-bottom-width: 0px;background-color: #ffffff\">\r\n<!--[if !mso]>-->\r\n<div><!--<![endif]--><!--[if mso]>\r\n                <table class=\"headerBackgroundMsoTable\"  cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                    <tbody>\r\n                        <tr class=\"headerBackgroundMsoRow\">\r\n                            <td class=\"headerBackgroundMsoContainer\">\r\n                <![endif]-->\r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border-spacing: 0px;width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td align=\"center\" style=\"padding: 20px 0;text-decoration: none\"><img alt=\"Share image\" title=\"Share image\" width=\"40\" style=\"width: 40px;height: auto;\" data-outlook-trace=\"F:0|T:1\" src=\"cid:12710604-4b9d-46f0-8811-bdd2f19621b7\">\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"1\"></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" style=\"padding-top: 20px; padding-right: 36px; padding-left: 36px; padding-bottom: 36px;\" align=\"center\">\r\n<p style=\"color:#323130;font-size:24px;font-weight:600;line-height:32px;margin:0;max-width:400px;padding:0;text-align:center\">\r\nJarrett Brownfield shared a folder with you </p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!--[if mso]>\r\n                            </td>\r\n                        </tr>\r\n                    </tbody>\r\n                </table>\r\n                <![endif]--><!--[if !mso]>--></div>\r\n<!--<![endif]--></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- End Standard Header --></td>\r\n</tr>\r\n<tr>\r\n<td align=\"left\" style=\"padding: 0px;margin: 0px\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"background-color: #f8f8f8;text-align: center;border: 1px solid #c8c8c8 !important;border-top: 1px solid #dedede;box-shadow: 0px 3px 0px rgba(0,0,0,0.05);border-bottom-left-radius: 8px;border-bottom-right-radius: 8px;overflow: hidden\">\r\n<table style=\"width:100%;\" dir=\"ltr\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"3\">\r\n<p style=\"font-size:16px;color:#323130;margin:40px 20px 28px\"><a name=\"customMessage\" role=\"presentation\" style=\"cursor: default; text-decoration: none; text-align-last: center; text-align: justify; display: block;\">Here\'s the folder that Jarrett Brownfield\r\n shared with you.</a> </p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" style=\"background-color:#f8f8f8\" align=\"center\"><a href=\"https://kdsllc-my.sharepoint.com/:f:/g/personal/jarrett_brownfield_jdcapitaladvisors_com/Ehrlr0vqXwBCl4Wi89_Lv1UBF2EqWqpazv5heiloiV9i7Q?e=5%3aHaT318&amp;at=9\" aria-label=\"LBC Video\" style=\"display:inline-block;text-decoration:none;color:#323130\"><!--[if mso]>\r\n                    <table width=\"240\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:auto;text-align:center;background:#ffffff;\">\r\n                <![endif]--><!--[if !mso]><!---->\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%;text-align:center;background:#ffffff\" align=\"center\">\r\n<!--<![endif]-->\r\n<tbody>\r\n<tr>\r\n<td style=\"border-top:1px solid #d2d2d2;border-left:1px solid #d2d2d2;border-bottom:1px solid #d2d2d2;background:#ffffff;padding:20px 4px 20px 20px;\">\r\n<!--[if mso]>\r\n                                    <a href=\"https://kdsllc-my.sharepoint.com/:f:/g/personal/jarrett_brownfield_jdcapitaladvisors_com/Ehrlr0vqXwBCl4Wi89_Lv1UBF2EqWqpazv5heiloiV9i7Q?e=5%3aHaT318&at=9\" style=\"text-decoration:none\">\r\n                                <![endif]--><img alt=\"icon\" height=\"auto\" style=\"display:block;width:32px\" width=\"32\" data-outlook-trace=\"F:0|T:1\" src=\"cid:e5edb4e2-0763-456e-bd09-552a2b2cf973\"><!--[if mso]>\r\n                                    </a>\r\n                                <![endif]-->\r\n</td>\r\n<td style=\"border-top:1px solid #d2d2d2;border-bottom:1px solid #d2d2d2;border-right:1px solid #d2d2d2;background-color:#ffffff;font-size:16px;word-break:break-all;text-align:left;padding:20px 20px 20px 4px;\">\r\n<!--[if mso]>\r\n                                    <a href=\"https://kdsllc-my.sharepoint.com/:f:/g/personal/jarrett_brownfield_jdcapitaladvisors_com/Ehrlr0vqXwBCl4Wi89_Lv1UBF2EqWqpazv5heiloiV9i7Q?e=5%3aHaT318&at=9\" style=\"text-decoration:none; fontSize: 16px; color: #323130\">\r\n                                <![endif]-->LBC\r\n Video<!--[if mso]>\r\n                                    </a>\r\n                                <![endif]-->\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</a></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" style=\"text-align:center;background-color:#f8f8f8\" align=\"center\">\r\n<div style=\"display:inline-block\"><!--[if mso]>\r\n                <table  border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"height:20px; width: auto;\">\r\n                <![endif]--><!--[if !mso]><!---->\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:auto;height:20px\" align=\"center\">\r\n<!--<![endif]-->\r\n<tbody>\r\n<tr>\r\n<td style=\"height:20px;padding:24px 4px 20px 0px\" align=\"center\"><img width=\"20\" height=\"20\" alt=\"permission globe icon\" data-outlook-trace=\"F:0|T:1\" src=\"cid:0af8744a-eb1a-4dcf-a873-86c338030646\">\r\n</td>\r\n<td style=\"font-size:12px;padding:20px 0px 20px;color:#323130\">This link only works for the direct recipients of this message.\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" style=\"padding:0px 0px 32px 0px;height:40px;background-color:#f8f8f8; text-align:center;border-top:none;border-bottom:none\">\r\n<!--[if mso]>\r\n                <a href=\"https://kdsllc-my.sharepoint.com/:f:/g/personal/jarrett_brownfield_jdcapitaladvisors_com/Ehrlr0vqXwBCl4Wi89_Lv1UBF2EqWqpazv5heiloiV9i7Q?e=5%3aHaT318&at=9\">\r\n                            <v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://kdsllc-my.sharepoint.com/:f:/g/personal/jarrett_brownfield_jdcapitaladvisors_com/Ehrlr0vqXwBCl4Wi89_Lv1UBF2EqWqpazv5heiloiV9i7Q?e=5%3aHaT318&at=9\" style=\"height:40px;v-text-anchor:middle;width:168px\" arcsize=\"2%\" strokecolor=#005A9E fillcolor=#005A9E>\r\n                        <w:anchorlock/>\r\n                        <center style=\"color:#ffffff;font-family: \'Segoe UI\', sans-serif;font-size:16px\">Open</center>\r\n                    </v:roundrect>\r\n                </a>\r\n        <![endif]--><!--[if !mso]> <!----><a href=\"https://kdsllc-my.sharepoint.com/:f:/g/personal/jarrett_brownfield_jdcapitaladvisors_com/Ehrlr0vqXwBCl4Wi89_Lv1UBF2EqWqpazv5heiloiV9i7Q?e=5%3aHaT318&amp;at=9\" style=\"background-color:#005A9E;border-color:#005A9E;border-radius:2px;border-style:solid;color:#ffffff;display:inline-block;font-size:16px;text-decoration:none;text-align:center;line-height:40px;width:168px\" aria-label=\"Open LBC Video\">Open\r\n</a><!-- <![endif]--></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n</tr>\r\n<tr>\r\n<td align=\"left\" style=\"padding: 0px;margin: 0px\"><!-- Start Standard Footer -->\r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" align=\"center\" style=\"border-spacing: 0px;width: 100%;padding: 10px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"font-size: 12px;line-height: 16px;padding: 0 24px\">\r\n<div>\r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border-spacing: 0px;width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"padding-top: 5px;text-align: left\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border-spacing: 0px;width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\">\r\n<p style=\"margin: 0px\">This email is generated through KDS, LLC\'s use of Microsoft 365 and may contain content that is controlled by KDS, LLC.</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- End Footer --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<img aria-hidden=\"true\" role=\"presentation\" height=\"1\" width=\"1\" istrackingpixel=\"true\" src=\"https://southcentralusr-notifyp.svc.ms:443/api/v2/tracking/method/View?mi=cU1kbEbjqkmtb2i9z_EGLg\">\r\n</body>\r\n</html>','[Share image]\r\n\r\nJarrett Brownfield shared a folder with you\r\n\r\nHere\'s the folder that Jarrett Brownfield shared with you.\r\n\r\n<https://kdsllc-my.sharepoint.com/:f:/g/personal/jarrett_brownfield_jdcapitaladvisors_com/Ehrlr0vqXwBCl4Wi89_Lv1UBF2EqWqpazv5heiloiV9i7Q?e=5%3aHaT318&at=9>\r\n[icon]  LBC Video\r\n[permission globe icon]         This link only works for the direct recipients of this message.\r\nOpen <https://kdsllc-my.sharepoint.com/:f:/g/personal/jarrett_brownfield_jdcapitaladvisors_com/Ehrlr0vqXwBCl4Wi89_Lv1UBF2EqWqpazv5heiloiV9i7Q?e=5%3aHaT318&at=9>\r\n\r\nThis email is generated through KDS, LLC\'s use of Microsoft 365 and may contain content that is controlled by KDS, LLC.',0,0,0,0,0,0,'2025-06-16 15:52:04','2025-12-09 19:12:49','2025-12-09 19:12:49','2025-12-09 19:12:49',NULL,NULL,NULL),
(377,4,'<OneTimePasscode-09bba8a1-80e8-0000-b2e2-2cc34bc889a2,09bba8a1-80e8-0000-b2e2-2cc34bc889a2-3353e19f-bf3f-4e6e-b76c-9afd88666230-r0-SendEmail@odspnotify>',NULL,NULL,'08048038 is your Microsoft OneDrive verification code.','no-reply@notify.microsoft.com','Microsoft Notifications','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html dir=\"ltr\" xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en-us\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head> \r\n\r\n\r\n\r\n\r\n\r\n<style type=\"text/css\">\r\n    .headerBackgroundMsoTable {\r\n        border-spacing: 0px;\r\n        width: 100%;\r\n    }\r\n</style>    \r\n</head>\r\n<body style=\"margin: 0px;background-color: #f8f8f8\">\r\n    <div stlye=\"background-color:;\">\r\n          <table height=\"100%\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border-spacing: 0px\">\r\n            <tbody><tr>\r\n              <td valign=\"top\" align=\"center\">\r\n                <table align=\"center\" style=\"border-spacing: 0px;width: 600px;margin-right: auto;margin-left: auto\">\r\n                    <tbody><tr>\r\n                        <td align=\"left\" style=\"padding: 0px;margin: 0px\">\r\n\r\n<!-- Start Standard Header -->\r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border-spacing: 0px;width: 100%\">\r\n    <tbody><tr>\r\n        <td align=\"center\">\r\n            <!--[if !mso]>-->\r\n            <div>\r\n                <!--<![endif]-->\r\n                <!--[if mso]>\r\n                <table class=\"headerBackgroundMsoTable\"  cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                    <tbody>\r\n                        <tr class=\"headerBackgroundMsoRow\">\r\n                            <td class=\"headerBackgroundMsoContainer\">\r\n                <![endif]-->\r\n                <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border-spacing: 0px;width: 100%\">\r\n                        <tbody><tr>\r\n                                <td align=\"center\" style=\"padding: 20px 0;text-decoration: none\">\r\n                                    <img alt=\"OneDrive\" title=\"OneDrive\" width=\"80\" style=\"width: 80px;height: auto;\" src=\"cid:58676128-8ae8-4415-a93a-6fd5bdcccaee\">\r\n\r\n                                </td>\r\n                                                    </tr>\r\n                                    </tbody></table>\r\n                <!--[if mso]>\r\n                            </td>\r\n                        </tr>\r\n                    </tbody>\r\n                </table>\r\n                <![endif]-->\r\n                <!--[if !mso]>-->\r\n            </div>\r\n            <!--<![endif]-->\r\n        </td>\r\n    </tr>\r\n</tbody></table>\r\n<!-- End Standard Header -->                        </td>\r\n                    </tr>\r\n                    <tr>\r\n                        <td align=\"left\" style=\"padding: 0px;margin: 0px\">\r\n\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#FFFFFF\">\r\n    <tbody>\r\n        <tr>\r\n            <td width=\"32\">&#160;</td>\r\n            <td height=\"32\">&#160;</td>\r\n            <td width=\"32\">&#160;</td>\r\n        </tr>\r\n        <tr>\r\n            <td>&#160;</td>\r\n            <td style=\"color: #333333; font-family: \'Segoe UI\',Arial,sans-serif; font-size: 14px; padding: 0px 0px 0px 0px;\" bgcolor=\"#ffffff\">Hello,</td>\r\n        </tr>\r\n        <tr>\r\n            <td>&#160;</td>\r\n            <td style=\"color: #333333; font-family: \'Segoe UI\',Arial,sans-serif; font-size: 14px; padding: 12px 0px 14px 0px;\" bgcolor=\"#ffffff\">\r\nFor security purposes, you must enter the code below to verify your account to access LBC Video. The code will only work for 15 minutes and if you request a new code, this code will stop working.            </td>\r\n        </tr>\r\n        <tr>\r\n            <td>&#160;</td>\r\n            <td>\r\n                <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n                    <tbody>\r\n                        <tr>\r\n                            <td style=\"color: #333333; font-family: \'Segoe UI\',Arial,sans-serif; font-size: 14px; padding: 8px 16px 0px 16px;\" bgcolor=\"#FFF4CE\">Account verification code:</td>\r\n                        </tr>\r\n                        <tr>\r\n                            <td style=\"color: #333333; font-family: \'Segoe UI\',Arial,sans-serif; font-size: 18px; padding: 0px 16px 8px 16px;\" bgcolor=\"#FFF4CE\"><strong>08048038</strong></td>\r\n                        </tr>\r\n                    </tbody>\r\n                </table>\r\n            </td>\r\n        </tr>\r\n        <tr>\r\n            <td>&#160;</td>\r\n            <td style=\"padding: 24px 0px 0px; color: #333333; font-family: \'Segoe UI\',Arial,sans-serif; font-size: 14px;\" bgcolor=\"#ffffff\"><strong>Having problems with the code?</strong></td>\r\n        </tr>\r\n        <tr>\r\n            <td>&#160;</td>\r\n            <td style=\"padding: 0px 0px 48px; color: #333333; font-family: \'Segoe UI\',Arial,sans-serif; font-size: 14px;\">View the error and make sure that the email identifier is \"XZWY9RC\". If it\'s not, look for an updated email or try requesting a new code.</td>\r\n        </tr>\r\n    </tbody>\r\n</table>                        </td>\r\n                    </tr>\r\n                    <tr>\r\n                        <td align=\"left\" style=\"padding: 0px;margin: 0px\">\r\n\r\n<!-- Start Standard Footer -->\r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" align=\"center\" style=\"border-spacing: 0px;width: 100%\">\r\n    <tbody><tr>\r\n        <td align=\"left\" style=\"font-size: 12px;line-height: 16px;padding: 10px 20px\">\r\n            <div>\r\n                <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border-spacing: 0px;width: 100%\">\r\n                                            <tbody><tr>\r\n                            <td align=\"left\" style=\"padding-top: 5px;text-align: left\">\r\n                                <img src=\"cid:0c870a9d-da56-4f00-a30c-5bcef19ab5b0\" alt=\"\" title=\"\" height=\"22\" width=\"90\" style=\"margin: 0px;height: 22px;width: 90px\">\r\n\r\n                            </td>\r\n                        </tr>\r\n                                            <tr>\r\n                            <td align=\"left\" style=\"padding-top: 5px;text-align: left\">\r\n                                <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border-spacing: 0px;width: 100%\">\r\n                                    <tbody><tr>\r\n                                        <td align=\"left\" style=\"padding: 0 4px 0 0;white-space: nowrap\"> <p style=\"font-family: \'Segoe UI\', Tahoma, sans-serif;font-size: 10px;padding: 0px;margin: 0px;color: #072b60\">\r\n\r\n<a href=\"https://go.microsoft.com/fwlink/?LinkId=521839\" target=\"_blank\" title=\"\" style=\"font-family: \'Segoe UI\', Tahoma, sans-serif;font-size: 10px;padding: 0px;margin: 0px;color: #072b60\">Privacy&#160;Statement</a>\r\n\r\n</p>\r\n </td>\r\n                                    </tr>\r\n                                </tbody></table>\r\n                            </td>\r\n                        </tr>\r\n                    <tr>\r\n                        <td align=\"left\" style=\"padding-top: 5px;text-align: left\">\r\n                            <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border-spacing: 0px;width: 100%\">\r\n                                <tbody><tr>\r\n                                    <td align=\"left\">\r\n                                        <p style=\"font-family: \'Segoe UI\', Tahoma, sans-serif;font-size: 10px;margin: 0px;color: #000\">This email is generated through KDS, LLC\'s use of Microsoft 365.</p>\r\n                                    </td>\r\n                                </tr>\r\n                            </tbody></table>\r\n                        </td>\r\n                    </tr>\r\n                </tbody></table>\r\n            </div>\r\n        </td>\r\n    </tr>\r\n</tbody></table>\r\n<!-- End Footer -->                        </td>\r\n                    </tr>\r\n                </tbody></table>\r\n              </td>\r\n            </tr>\r\n        </tbody></table>\r\n    </div>\r\n\r\n<img src=\"https://southcentralusr-notifyp.svc.ms:443/api/v2/tracking/method/View?mi=HDPHvcmu9UeLdOHx6vtjBA\" aria-hidden=\"true\" role=\"presentation\" height=\"1\" width=\"1\" istrackingpixel=\"true\"></body></html>',' \r\n\r\n\r\n\r\n\r\n\r\n\r\n    .headerBackgroundMsoTable {\r\n        border-spacing: 0px;\r\n        width: 100%;\r\n    }\r\n    \r\n\r\n\r\n    \r\n          \r\n            \r\n              \r\n                \r\n                    \r\n                        \r\n\r\n\r\n\r\n    \r\n        \r\n            \r\n            \r\n                \r\n                \r\n                \r\n                        \r\n                                \r\n                                    \r\n\r\n                                \r\n                                                    \r\n                                    \r\n                \r\n                \r\n            \r\n            \r\n        \r\n    \r\n\r\n                        \r\n                    \r\n                    \r\n                        \r\n\r\n\r\n    \r\n        \r\n            &#160;\r\n            &#160;\r\n            &#160;\r\n        \r\n        \r\n            &#160;\r\n            Hello,\r\n        \r\n        \r\n            &#160;\r\n            \r\nFor security purposes, you must enter the code below to verify your account to access LBC Video. The code will only work for 15 minutes and if you request a new code, this code will stop working.            \r\n        \r\n        \r\n            &#160;\r\n            \r\n                \r\n                    \r\n                        \r\n                            Account verification code:\r\n                        \r\n                        \r\n                            08048038\r\n                        \r\n                    \r\n                \r\n            \r\n        \r\n        \r\n            &#160;\r\n            Having problems with the code?\r\n        \r\n        \r\n            &#160;\r\n            View the error and make sure that the email identifier is \"XZWY9RC\". If it\'s not, look for an updated email or try requesting a new code.\r\n        \r\n    \r\n                        \r\n                    \r\n                    \r\n                        \r\n\r\n\r\n\r\n    \r\n        \r\n            \r\n                \r\n                                            \r\n                            \r\n                                \r\n\r\n                            \r\n                        \r\n                                            \r\n                            \r\n                                \r\n                                    \r\n                                         \r\n\r\nPrivacy&#160;Statement\r\n\r\n\r\n \r\n                                    \r\n                                \r\n                            \r\n                        \r\n                    \r\n                        \r\n                            \r\n                                \r\n                                    \r\n                                        This email is generated through KDS, LLC\'s use of Microsoft 365.\r\n                                    \r\n                                \r\n                            \r\n                        \r\n                    \r\n                \r\n            \r\n        \r\n    \r\n\r\n                        \r\n                    \r\n                \r\n              \r\n            \r\n        \r\n    \r\n\r\n',0,0,0,0,0,0,'2025-06-16 16:12:49','2025-12-09 19:12:50','2025-12-09 19:12:50','2025-12-09 19:12:50',NULL,NULL,NULL),
(378,4,'<CAGgBgfCM15FoFPnD3u4XHFXaGHTE=pxU8SViTx_R7iFS9qnRGw@mail.gmail.com>',NULL,NULL,'Re: Theseus','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">Rick:</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">The first one uses a combination of satellite imagery, cameras to look at the landscape and compare it to the image, and accelerometers / gyro sensors to estimate travel.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">The second one just uses the sensor array to estimate travel in the absence of GPS.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">-- Tom</div><div class=\"gmail_default\" style=\"font-size:small\"></div></div><br><div><br></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Jun 17, 2025 at 11:03 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div id=\"m_833076347632650207m_-6825581094981562548bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Hi Tom,</div><div id=\"m_833076347632650207m_-6825581094981562548bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><br></div><div id=\"m_833076347632650207m_-6825581094981562548bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">How hard would this be to build:</div><div id=\"m_833076347632650207m_-6825581094981562548bloop_customfont\" style=\"margin:0px\"><a href=\"https://www.ycombinator.com/companies/theseus\" target=\"_blank\">https://www.ycombinator.com/companies/theseus</a><br></div><div id=\"m_833076347632650207m_-6825581094981562548bloop_customfont\" style=\"margin:0px\"><br></div><div id=\"m_833076347632650207m_-6825581094981562548bloop_customfont\" style=\"margin:0px\">They just got $4M and are the darlings for a bit now…</div><div id=\"m_833076347632650207m_-6825581094981562548bloop_customfont\" style=\"margin:0px\"><br></div><div id=\"m_833076347632650207m_-6825581094981562548bloop_customfont\" style=\"margin:0px\">And how would this be different than <a href=\"https://Bavovna.ai\" target=\"_blank\">https://bavovna.ai</a></div><div id=\"m_833076347632650207m_-6825581094981562548bloop_customfont\" style=\"margin:0px\"><br></div><div id=\"m_833076347632650207m_-6825581094981562548bloop_customfont\" style=\"margin:0px\">I look forward to working with you to solve these problems and build better ones at scale!</div><div id=\"m_833076347632650207m_-6825581094981562548bloop_customfont\" style=\"margin:0px\">Thanks!</div><div id=\"m_833076347632650207m_-6825581094981562548bloop_customfont\" style=\"margin:0px\">Rick</div><br><div id=\"m_833076347632650207m_-6825581094981562548bloop_sign_1750172441981613056\"></div>\r\n\r\n\r\n</blockquote></div>','Rick:\r\n\r\nThe first one uses a combination of satellite imagery, cameras to look at\r\nthe landscape and compare it to the image, and accelerometers / gyro\r\nsensors to estimate travel.\r\n\r\nThe second one just uses the sensor array to estimate travel in the absence\r\nof GPS.\r\n\r\n-- Tom\r\n\r\n\r\n\r\nOn Tue, Jun 17, 2025 at 11:03 AM Rick <rick@mavrix.one> wrote:\r\n\r\n> Hi Tom,\r\n>\r\n> How hard would this be to build:\r\n> https://www.ycombinator.com/companies/theseus\r\n>\r\n> They just got $4M and are the darlings for a bit now…\r\n>\r\n> And how would this be different than https://bavovna.ai\r\n> <https://Bavovna.ai>\r\n>\r\n> I look forward to working with you to solve these problems and build\r\n> better ones at scale!\r\n> Thanks!\r\n> Rick\r\n>\r\n>',0,0,0,0,0,0,'2025-06-17 22:31:05','2025-12-09 19:12:50','2025-12-09 19:12:50','2025-12-09 19:12:50',NULL,NULL,NULL),
(379,4,'<CAGgBgfAFOswZO1Ax7H-4aWy6dCq1uw=y5QXsDp1V+UJSypTAug@mail.gmail.com>',NULL,NULL,'Re: Theseus','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><br></div><div><br></div><div>Absolutely! <br clear=\"all\"></div><div><br></div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><div><font face=\"courier new, monospace\">Regards,</font></div><div><font face=\"courier new, monospace\">Thomas Pownall</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">CADX Services, Inc.</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Tel: 585-624-1491 X101</font></div><div><font face=\"courier new, monospace\">Fax: 585-582-1101</font></div><div><font face=\"courier new, monospace\">E-Mail: <a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a></font></div><div><font face=\"courier new, monospace\">Web: <a href=\"http://www.cadxservices.com\" target=\"_blank\">http://www.cadxservices.com</a></font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\">**************** Confidentiality Statement ****************</font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Privileged/Confidential Information may be contained in this</font></div><div><font face=\"courier new, monospace\">message. If you are not the addressee indicated in this message</font></div><div><font face=\"courier new, monospace\">(or responsible for delivery of the message to such person),</font></div><div><font face=\"courier new, monospace\">you may not copy or deliver this message to anyone. In such</font></div><div><font face=\"courier new, monospace\">case, you should destroy this message, and notify us</font></div><div><font face=\"courier new, monospace\">immediately. If you or your employer does not consent to</font></div><div><font face=\"courier new, monospace\">Internet email messages of this kind, please advise us</font></div><div><font face=\"courier new, monospace\">immediately. Opinions, conclusions and other information</font></div><div><font face=\"courier new, monospace\">expressed in this message are not given or endorsed by my firm</font></div><div><font face=\"courier new, monospace\">or employer unless otherwise indicated by an authorized</font></div><div><font face=\"courier new, monospace\">representative independent of this message.</font></div></div></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Jun 17, 2025 at 8:03 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"> Yes thanks for the review, but what do you think?<br>Can we build better mousetraps?<br>Talk soon.<br>Thanks!<br>Rick <br> <br><p>On June 17, 2025 at 6:32:23 PM, Thomas Pownall (<a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">Rick:</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">The first one uses a combination of satellite imagery, cameras to look at the landscape and compare it to the image, and accelerometers / gyro sensors to estimate travel.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">The second one just uses the sensor array to estimate travel in the absence of GPS.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">-- Tom</div><div class=\"gmail_default\" style=\"font-size:small\"></div></div><br><div><br></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Jun 17, 2025 at 11:03 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n\r\n    <div id=\"m_8880399020546709623m_833076347632650207m_-6825581094981562548bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Hi Tom,</div><div id=\"m_8880399020546709623m_833076347632650207m_-6825581094981562548bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><br></div><div id=\"m_8880399020546709623m_833076347632650207m_-6825581094981562548bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">How hard would this be to build:</div><div id=\"m_8880399020546709623m_833076347632650207m_-6825581094981562548bloop_customfont\" style=\"margin:0px\"><a href=\"https://www.ycombinator.com/companies/theseus\" target=\"_blank\">https://www.ycombinator.com/companies/theseus</a><br></div><div id=\"m_8880399020546709623m_833076347632650207m_-6825581094981562548bloop_customfont\" style=\"margin:0px\"><br></div><div id=\"m_8880399020546709623m_833076347632650207m_-6825581094981562548bloop_customfont\" style=\"margin:0px\">They just got $4M and are the darlings for a bit now…</div><div id=\"m_8880399020546709623m_833076347632650207m_-6825581094981562548bloop_customfont\" style=\"margin:0px\"><br></div><div id=\"m_8880399020546709623m_833076347632650207m_-6825581094981562548bloop_customfont\" style=\"margin:0px\">And how would this be different than <a href=\"https://Bavovna.ai\" target=\"_blank\">https://bavovna.ai</a></div><div id=\"m_8880399020546709623m_833076347632650207m_-6825581094981562548bloop_customfont\" style=\"margin:0px\"><br></div><div id=\"m_8880399020546709623m_833076347632650207m_-6825581094981562548bloop_customfont\" style=\"margin:0px\">I look forward to working with you to solve these problems and build better ones at scale!</div><div id=\"m_8880399020546709623m_833076347632650207m_-6825581094981562548bloop_customfont\" style=\"margin:0px\">Thanks!</div><div id=\"m_8880399020546709623m_833076347632650207m_-6825581094981562548bloop_customfont\" style=\"margin:0px\">Rick</div><br><div id=\"m_8880399020546709623m_833076347632650207m_-6825581094981562548bloop_sign_1750172441981613056\"></div>\r\n\r\n\r\n\r\n\r\n\r\n</blockquote></div>\r\n\r\n</div></div></span></blockquote></blockquote></div>','Absolutely!\r\n\r\n\r\nRegards,\r\nThomas Pownall\r\n\r\nCADX Services, Inc.\r\n\r\nTel: 585-624-1491 X101\r\nFax: 585-582-1101\r\nE-Mail: tpownall@cadxservices.com\r\nWeb: http://www.cadxservices.com\r\n\r\n***********************************************************\r\n**************** Confidentiality Statement ****************\r\n***********************************************************\r\n\r\nPrivileged/Confidential Information may be contained in this\r\nmessage. If you are not the addressee indicated in this message\r\n(or responsible for delivery of the message to such person),\r\nyou may not copy or deliver this message to anyone. In such\r\ncase, you should destroy this message, and notify us\r\nimmediately. If you or your employer does not consent to\r\nInternet email messages of this kind, please advise us\r\nimmediately. Opinions, conclusions and other information\r\nexpressed in this message are not given or endorsed by my firm\r\nor employer unless otherwise indicated by an authorized\r\nrepresentative independent of this message.\r\n\r\n\r\nOn Tue, Jun 17, 2025 at 8:03 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> Yes thanks for the review, but what do you think?\r\n> Can we build better mousetraps?\r\n> Talk soon.\r\n> Thanks!\r\n> Rick\r\n>\r\n> On June 17, 2025 at 6:32:23 PM, Thomas Pownall (tpownall@cadxservices.com)\r\n> wrote:\r\n>\r\n> Rick:\r\n>\r\n> The first one uses a combination of satellite imagery, cameras to look at\r\n> the landscape and compare it to the image, and accelerometers / gyro\r\n> sensors to estimate travel.\r\n>\r\n> The second one just uses the sensor array to estimate travel in the\r\n> absence of GPS.\r\n>\r\n> -- Tom\r\n>\r\n>\r\n>\r\n> On Tue, Jun 17, 2025 at 11:03 AM Rick <rick@mavrix.one> wrote:\r\n>\r\n>> Hi Tom,\r\n>>\r\n>> How hard would this be to build:\r\n>> https://www.ycombinator.com/companies/theseus\r\n>>\r\n>> They just got $4M and are the darlings for a bit now…\r\n>>\r\n>> And how would this be different than https://bavovna.ai\r\n>> <https://Bavovna.ai>\r\n>>\r\n>> I look forward to working with you to solve these problems and build\r\n>> better ones at scale!\r\n>> Thanks!\r\n>> Rick\r\n>>\r\n>>',0,0,0,0,0,0,'2025-06-18 01:21:35','2025-12-09 19:12:50','2025-12-09 19:12:50','2025-12-09 19:12:50',NULL,NULL,NULL),
(380,4,'<e4021d3f-8557-4d17-be99-27972a7954d0@deltawerx.net>',NULL,NULL,'Updated Independent Development Clause for Mutual Clarity','tom@deltawerx.net','Dr Tom Chi','<!DOCTYPE html>\r\n<html>\r\n  <head>\r\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n  </head>\r\n  <body>\r\n    <p data-start=\"164\" data-end=\"276\"><b>Thanks, Rick.</b> Sometimes\r\n      the delight is in the details, and we appreciate the thoughtful\r\n      clarity you’re positing.</p>\r\n    <p data-start=\"278\" data-end=\"511\">Perhaps just one final tweak as\r\n      we close this out. As you know, the field is evolving quickly, and\r\n      our mutual interest is in moving forward. We’re aligned in spirit\r\n      and substance—and we’re eager to explore potential synergy with\r\n      you.</p>\r\n    <p data-start=\"513\" data-end=\"546\">Looking forward to the next step.</p>\r\n    <p data-start=\"548\" data-end=\"567\">Best regards,<br data-start=\"561\"\r\n        data-end=\"564\">\r\n      TC</p>\r\n    <p data-start=\"237\" data-end=\"274\"></p>\r\n    <p data-start=\"237\" data-end=\"274\"><strong data-start=\"237\"\r\n        data-end=\"274\"><br>\r\n      </strong></p>\r\n    <p data-start=\"237\" data-end=\"274\"><strong data-start=\"237\"\r\n        data-end=\"274\">Proposed Clause for Section 4(d):</strong></p>\r\n    <p data-start=\"276\" data-end=\"1544\"><strong data-start=\"276\"\r\n        data-end=\"309\">4(d) Independent Development.</strong><br\r\n        data-start=\"309\" data-end=\"312\">\r\n      The parties acknowledge that each may independently develop, or\r\n      receive from third parties, information that is similar to the\r\n      other party’s Confidential Information. Nothing in this Agreement\r\n      shall restrict either party from developing, or having developed\r\n      on its behalf, products, concepts, or services that, without\r\n      violating this Agreement, resemble or compete with those\r\n      contemplated by the other party’s Confidential Information.\r\n      Neither party shall use or derive the other’s Confidential\r\n      Information—including specific technical methods, proprietary\r\n      product architectures, or trade secrets—in such development. Any\r\n      such independent development must be based solely on general\r\n      industry knowledge, publicly available information, or data\r\n      lawfully obtained from third parties not bound by confidentiality\r\n      to the disclosing party. Each party agrees to maintain reasonable\r\n      documentation of the independent sources used in any such\r\n      development. Further, use of information retained in the unaided\r\n      memory of personnel shall not constitute a breach, provided it\r\n      does not result in direct reproduction or adaptation of\r\n      Confidential Information. These obligations shall survive for one\r\n      (1) year following termination of this Agreement.</p>\r\n    <hr data-start=\"1546\" data-end=\"1549\">\r\n    <p data-start=\"1551\" data-end=\"1986\"><strong data-start=\"1551\"\r\n        data-end=\"1581\">Explanation for Inclusion:</strong><br\r\n        data-start=\"1581\" data-end=\"1584\">\r\n      This clause is intended to preserve both parties’ ability to\r\n      continue innovating and building independently, while affirming a\r\n      strong commitment to protecting each other’s proprietary IP. It\r\n      clearly prohibits the use or adaptation of the other party’s\r\n      Confidential Information, and requires reliance on public or\r\n      lawfully obtained sources for any development activity that may\r\n      resemble disclosed ideas.</p>\r\n    <p data-start=\"1988\" data-end=\"2136\">We believe this provides\r\n      clarity, transparency, and a balanced structure for parallel\r\n      innovation—particularly in a fast-moving, competitive space.</p>\r\n    <p data-start=\"2138\" data-end=\"2343\">We are aligned on the need for\r\n      mutual respect, speed, and shared diligence, and we believe this\r\n      clause enables us to swiftly finalize the NDA and move forward\r\n      into more substantive partnership discussions.</p>\r\n    <p></p>\r\n    <div class=\"moz-cite-prefix\"><br>\r\n    </div>\r\n    <div class=\"moz-cite-prefix\"><br>\r\n    </div>\r\n    <div class=\"moz-cite-prefix\"><br>\r\n    </div>\r\n    <div class=\"moz-cite-prefix\">On 6/17/2025 7:01 PM, Rick wrote:<br>\r\n    </div>\r\n    <blockquote type=\"cite\"\r\n      cite=\"mid:etPan.685201f9.5360bb4d.9693@mavrix.one\">\r\n      <meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\">\r\n      <style>body{font-family:Helvetica,Arial;font-size:13px}</style>\r\n      <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Gentlemen, <br>\r\n      </div>\r\n      <br>\r\n      <div>Thank you for your feedback on the Non-Disclosure Agreement\r\n        as we work to facilitate partnerships and sales channels for\r\n        Deltawerx. </div>\r\n      <div>We recognize your need to protect your Confidential\r\n        Information and prevent unintentional use, particularly given\r\n        the competitive nature of our industry. </div>\r\n      <div>To balance these interests with our need to continue\r\n        independent innovation, we propose the following Independent\r\n        Development clause:</div>\r\n      <div><br>\r\n      </div>\r\n      <blockquote\r\n        style=\"margin: 0 0 0 40px; border: none; padding: 0px;\">\r\n        <div>4 (d) Independent Development. </div>\r\n        <div>The Disclosing Party acknowledges that the Receiving Party,\r\n          while facilitating partnerships or sales channels for the\r\n          Disclosing Party, may currently or in the future develop\r\n          information internally or receive information from third\r\n          parties that is similar to the Disclosing Party’s Confidential\r\n          Information. Nothing in this Agreement shall be construed as\r\n          prohibiting the Receiving Party from developing, or having\r\n          developed for it, products, concepts, or services that,\r\n          without violating this Agreement, resemble or compete with\r\n          those contemplated by the Disclosing Party’s Confidential\r\n          Information. The Receiving Party agrees not to use or derive\r\n          any of the Disclosing Party’s Confidential Information,\r\n          including specific technical methods, proprietary product\r\n          architectures, or trade secrets disclosed under this\r\n          Agreement, in such development. Any independent development by\r\n          the Receiving Party shall rely solely on general industry\r\n          knowledge, publicly available information, or information\r\n          lawfully obtained from third parties not bound by\r\n          confidentiality obligations to the Disclosing Party. To ensure\r\n          transparency, the Receiving Party shall maintain reasonable\r\n          documentation of the independent sources used in such\r\n          development. The Receiving Party may use information retained\r\n          in the unaided memory of its personnel, provided it does not\r\n          directly reproduce or adapt the Disclosing Party’s\r\n          Confidential Information. These obligations shall survive for\r\n          one (1) year following the termination of this Agreement. </div>\r\n      </blockquote>\r\n      <div><br>\r\n      </div>\r\n      <div>\r\n        <div>This revision:</div>\r\n        <div>- Clarifies that we may develop similar products using\r\n          general knowledge or public information, supporting our mutual\r\n          goal of innovation.<br>\r\n        </div>\r\n        <div>- Commits us to avoiding use of your Confidential\r\n          Information and maintaining documentation to demonstrate\r\n          independent development, addressing your concerns about\r\n          potential misuse.</div>\r\n        <div>- Limits the post-termination obligation to one year,\r\n          aligning with industry norms and the fast-moving nature of our\r\n          sector.</div>\r\n        <div>- Narrows the scope to specific technical methods and trade\r\n          secrets, reducing ambiguity while allowing both parties to\r\n          operate effectively.</div>\r\n        <div><br>\r\n        </div>\r\n        <div>Please review this proposed language and share your\r\n          feedback or any adjustments you’d like to discuss. </div>\r\n        <div>We’re eager to finalize an agreement that supports our\r\n          shared goals. </div>\r\n        <div><br>\r\n        </div>\r\n        <div>If this updated section is satisfactory, I can send an\r\n          updated NDA incorporating this clause for your final review.</div>\r\n      </div>\r\n      <div><br>\r\n      </div>\r\n      Thanks again,<br>\r\n      Rick\r\n      <div>\r\n        <div><br>\r\n        </div>\r\n        <div>Rick Mislan, PhD</div>\r\n        <div>MAVRIX 1, LLC</div>\r\n        <div><a class=\"moz-txt-link-freetext\" href=\"https://mavrix.one\">https://mavrix.one</a></div>\r\n        <div>  <br>\r\n          <br>\r\n          <p class=\"airmail_on\">On June 11, 2025 at 4:15:19 PM, Dr Tom\r\n            Chi (<a href=\"mailto:tom@deltawerx.net\"\r\n              moz-do-not-send=\"true\" class=\"moz-txt-link-freetext\">tom@deltawerx.net</a>)\r\n            wrote:</p>\r\n          <blockquote type=\"cite\" class=\"clean_bq\"><span>\r\n              <div>\r\n                <div>\r\n                  <p>Rick, enjoyed. <br>\r\n                  </p>\r\n                  <p>For future stakeholders on either side we’ve made\r\n                    one light clarification in Section 4(d) regarding\r\n                    residual memory and collaborative tech. It’s\r\n                    consistent with the rest of the NDA and helps ensure\r\n                    alignment on expectations around proprietary\r\n                    development. We see this as helpful for both\r\n                    parties.</p>\r\n                  <p>Otherwise we\'re good to go. <br>\r\n                  </p>\r\n                  <p>V/R</p>\r\n                  <p>tc</p>\r\n                  <p><br>\r\n                  </p>\r\n                  <div class=\"moz-cite-prefix\">On 6/11/2025 1:50 PM,\r\n                    Rick wrote:<br>\r\n                  </div>\r\n                  <blockquote type=\"cite\"\r\n                    cite=\"mid:etPan.6849d015.410fb592.13509@mavrix.one\">\r\n                    <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Gentlemen,</div>\r\n                    <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Thanks\r\n                      for your time and discussion today!<br>\r\n                    </div>\r\n                    <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\"><br>\r\n                    </div>\r\n                    <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Attached\r\n                      is the Mavrix NDA.</div>\r\n                    <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Please\r\n                      fill in your email and sign each page and the\r\n                      final page.</div>\r\n                    <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">I\r\n                      look forward to following up after executing the\r\n                      NDA.</div>\r\n                    <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\"><br>\r\n                    </div>\r\n                    <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Thanks\r\n                      much,</div>\r\n                    <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Rick</div>\r\n                    <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\"><br>\r\n                    </div>\r\n                    <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Rick\r\n                      Mislan, PhD</div>\r\n                    <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">MAVRIX\r\n                      1, LLC</div>\r\n                    <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\"><a\r\n                        class=\"moz-txt-link-freetext\"\r\n                        href=\"https://mavrix.one\" moz-do-not-send=\"true\">https://mavrix.one</a></div>\r\n                  </blockquote>\r\n                </div>\r\n              </div>\r\n            </span></blockquote>\r\n        </div>\r\n      </div>\r\n    </blockquote>\r\n  </body>\r\n</html>','*Thanks, Rick.* Sometimes the delight is in the details, and we \r\nappreciate the thoughtful clarity you’re positing.\r\n\r\nPerhaps just one final tweak as we close this out. As you know, the \r\nfield is evolving quickly, and our mutual interest is in moving forward. \r\nWe’re aligned in spirit and substance—and we’re eager to explore \r\npotential synergy with you.\r\n\r\nLooking forward to the next step.\r\n\r\nBest regards,\r\nTC\r\n\r\n*\r\n*\r\n\r\n*Proposed Clause for Section 4(d):*\r\n\r\n*4(d) Independent Development.*\r\nThe parties acknowledge that each may independently develop, or receive \r\nfrom third parties, information that is similar to the other party’s \r\nConfidential Information. Nothing in this Agreement shall restrict \r\neither party from developing, or having developed on its behalf, \r\nproducts, concepts, or services that, without violating this Agreement, \r\nresemble or compete with those contemplated by the other party’s \r\nConfidential Information. Neither party shall use or derive the other’s \r\nConfidential Information—including specific technical methods, \r\nproprietary product architectures, or trade secrets—in such development. \r\nAny such independent development must be based solely on general \r\nindustry knowledge, publicly available information, or data lawfully \r\nobtained from third parties not bound by confidentiality to the \r\ndisclosing party. Each party agrees to maintain reasonable documentation \r\nof the independent sources used in any such development. Further, use of \r\ninformation retained in the unaided memory of personnel shall not \r\nconstitute a breach, provided it does not result in direct reproduction \r\nor adaptation of Confidential Information. These obligations shall \r\nsurvive for one (1) year following termination of this Agreement.\r\n\r\n------------------------------------------------------------------------\r\n\r\n*Explanation for Inclusion:*\r\nThis clause is intended to preserve both parties’ ability to continue \r\ninnovating and building independently, while affirming a strong \r\ncommitment to protecting each other’s proprietary IP. It clearly \r\nprohibits the use or adaptation of the other party’s Confidential \r\nInformation, and requires reliance on public or lawfully obtained \r\nsources for any development activity that may resemble disclosed ideas.\r\n\r\nWe believe this provides clarity, transparency, and a balanced structure \r\nfor parallel innovation—particularly in a fast-moving, competitive space.\r\n\r\nWe are aligned on the need for mutual respect, speed, and shared \r\ndiligence, and we believe this clause enables us to swiftly finalize the \r\nNDA and move forward into more substantive partnership discussions.\r\n\r\n\r\n\r\n\r\nOn 6/17/2025 7:01 PM, Rick wrote:\r\n> Gentlemen,\r\n>\r\n> Thank you for your feedback on the Non-Disclosure Agreement as we work \r\n> to facilitate partnerships and sales channels for Deltawerx.\r\n> We recognize your need to protect your Confidential Information and \r\n> prevent unintentional use, particularly given the competitive nature \r\n> of our industry.\r\n> To balance these interests with our need to continue independent \r\n> innovation, we propose the following Independent Development clause:\r\n>\r\n>     4 (d) Independent Development.\r\n>     The Disclosing Party acknowledges that the Receiving Party, while\r\n>     facilitating partnerships or sales channels for the Disclosing\r\n>     Party, may currently or in the future develop information\r\n>     internally or receive information from third parties that is\r\n>     similar to the Disclosing Party’s Confidential Information.\r\n>     Nothing in this Agreement shall be construed as prohibiting the\r\n>     Receiving Party from developing, or having developed for it,\r\n>     products, concepts, or services that, without violating this\r\n>     Agreement, resemble or compete with those contemplated by the\r\n>     Disclosing Party’s Confidential Information. The Receiving Party\r\n>     agrees not to use or derive any of the Disclosing Party’s\r\n>     Confidential Information, including specific technical methods,\r\n>     proprietary product architectures, or trade secrets disclosed\r\n>     under this Agreement, in such development. Any independent\r\n>     development by the Receiving Party shall rely solely on general\r\n>     industry knowledge, publicly available information, or information\r\n>     lawfully obtained from third parties not bound by confidentiality\r\n>     obligations to the Disclosing Party. To ensure transparency, the\r\n>     Receiving Party shall maintain reasonable documentation of the\r\n>     independent sources used in such development. The Receiving Party\r\n>     may use information retained in the unaided memory of its\r\n>     personnel, provided it does not directly reproduce or adapt the\r\n>     Disclosing Party’s Confidential Information. These obligations\r\n>     shall survive for one (1) year following the termination of this\r\n>     Agreement.\r\n>\r\n>\r\n> This revision:\r\n> - Clarifies that we may develop similar products using general \r\n> knowledge or public information, supporting our mutual goal of innovation.\r\n> - Commits us to avoiding use of your Confidential Information and \r\n> maintaining documentation to demonstrate independent development, \r\n> addressing your concerns about potential misuse.\r\n> - Limits the post-termination obligation to one year, aligning with \r\n> industry norms and the fast-moving nature of our sector.\r\n> - Narrows the scope to specific technical methods and trade secrets, \r\n> reducing ambiguity while allowing both parties to operate effectively.\r\n>\r\n> Please review this proposed language and share your feedback or any \r\n> adjustments you’d like to discuss.\r\n> We’re eager to finalize an agreement that supports our shared goals.\r\n>\r\n> If this updated section is satisfactory, I can send an updated NDA \r\n> incorporating this clause for your final review.\r\n>\r\n> Thanks again,\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> MAVRIX 1, LLC\r\n> https://mavrix.one\r\n>\r\n>\r\n> On June 11, 2025 at 4:15:19 PM, Dr Tom Chi (tom@deltawerx.net) wrote:\r\n>\r\n>> Rick, enjoyed.\r\n>>\r\n>> For future stakeholders on either side we’ve made one light \r\n>> clarification in Section 4(d) regarding residual memory and \r\n>> collaborative tech. It’s consistent with the rest of the NDA and \r\n>> helps ensure alignment on expectations around proprietary \r\n>> development. We see this as helpful for both parties.\r\n>>\r\n>> Otherwise we\'re good to go.\r\n>>\r\n>> V/R\r\n>>\r\n>> tc\r\n>>\r\n>>\r\n>> On 6/11/2025 1:50 PM, Rick wrote:\r\n>>> Gentlemen,\r\n>>> Thanks for your time and discussion today!\r\n>>>\r\n>>> Attached is the Mavrix NDA.\r\n>>> Please fill in your email and sign each page and the final page.\r\n>>> I look forward to following up after executing the NDA.\r\n>>>\r\n>>> Thanks much,\r\n>>> Rick\r\n>>>\r\n>>> Rick Mislan, PhD\r\n>>> MAVRIX 1, LLC\r\n>>> https://mavrix.one',0,0,0,0,0,0,'2025-06-18 02:13:09','2025-12-09 19:12:51','2025-12-09 19:12:51','2025-12-09 19:12:51',NULL,NULL,NULL),
(381,4,'<962266602.382607542.1750283564783@email.apple.com>',NULL,NULL,'=?UTF-8?Q?Richard_Mislan_invited_you_to_=E2=80=9CBavovna/Mavrix=E2=80=9D.?=','noreply@email.apple.com','Richard Mislan','<html xmlns=3D\"http://www.w3.org/1999/xhtml\" xmlns:o=3D\"urn:schemas-microso=\r\nft-com:office:office\">\r\n <!--[if gte mso 9]>\r\n<xml>\r\n    <o:OfficeDocumentSettings>\r\n        <o:AllowPNG/>\r\n        <o:PixelsPerInch>96</o:PixelsPerInch>\r\n    </o:OfficeDocumentSettings>\r\n</xml>\r\n<![endif]-->\r\n <head>=20\r\n  <meta name=3D\"x-apple-disable-message-reformatting\">=20\r\n  <meta charset=3D\"UTF-8\">=20\r\n  <meta name=3D\"viewport\" content=3D\"width=3Ddevice-width, initial-scale=3D=\r\n1.0\">=20\r\n  <style type=3D\"text/css\">\r\n            table.footer-table {\r\n                width: 100%;\r\n                font-size: inherit;\r\n                line-height: 18px;\r\n                text-align: center;\r\n            }\r\n            table.footer-table .footer-background {\r\n                width: 685px;\r\n                font-size: 11px;\r\n                line-height: 22px;\r\n                color: #888;\r\n                text-align: center;\r\n                background-repeat: no-repeat;\r\n                background-position: center top;\r\n                padding: 15px 0 7px;\r\n                background-image: url(https://statici.icloud.com/emailimage=\r\ns/v4/common/footer_gradient_web.png);\r\n            }\r\n           .grey-footer-background {\r\n                width: 685px;\r\n                font-size: 11px;\r\n                line-height: 22px;\r\n                color: #888;\r\n                text-align: center;\r\n                background-repeat: no-repeat;\r\n                background-position: center top;\r\n                padding: 29px 0 7px;\r\n                overflow: hidden;\r\n                background: #f5f5f5 no-repeat;\r\n            }\r\n            table.footer-table .icloud-logo {\r\n                display: inline-block;\r\n            }\r\n            table.footer-table .footer-cell {\r\n                font-family: system-ui, -apple-system, BlinkMacSystemFont, =\r\nSegoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;\r\n                font-size: 12px;\r\n                line-height: 15px;\r\n                color: #666;\r\n                text-align: center;\r\n                padding: 0 18px 18px 18px;\r\n            }\r\n            table.footer-table .nobr {\r\n                white-space: nowrap;\r\n            }\r\n            table.footer-table .footer-cell a {\r\n                color: #0070c9;\r\n                text-decoration: none;\r\n            }\r\n            table.footer-table .footer-cell a.apple-address {\r\n                color: #666;\r\n                white-space: nowrap;\r\n                text-decoration: none;\r\n            }\r\n        @media only screen and (max-width:628px) {\r\n        table.footer-table1 {\r\n                width: 358px !important;\r\n                font-size: inherit;\r\n                background-color: #f2f2f2;\r\n                margin-top: auto;\r\n                }\r\n            }\r\n            table.footer-table1 {\r\n                width: 682px;\r\n                font-size: inherit;\r\n                background-color: #f2f2f2;\r\n                margin-top: auto;\r\n            }\r\n            table.footer-table1 .nobr {\r\n                white-space: nowrap;\r\n            }\r\n            table.footer-table1 .footer-background1 {\r\n                font-size: 11px;\r\n                line-height: 22px;\r\n                color: #888;\r\n                background-image: url(https://statici.icloud.com/emailimage=\r\ns/v4/common/footer_gradient_web.png);\r\n            }\r\n            table.footer-table1 .footer-cell1 {\r\n                font-family: system-ui, -apple-system, BlinkMacSystemFont, =\r\nSegoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;\r\n                font-size: 12px;\r\n                line-height: 18px;\r\n                    padding: 20px 36px 1px 40px;\r\n                    margin-left:10px;\r\n\r\n            }\r\n            table.footer-table1 .footer-cell2 {\r\n                font-family: system-ui, -apple-system, BlinkMacSystemFont, =\r\nSegoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;\r\n                font-size: 12px;\r\n                line-height: 18px;\r\n                color: #666;\r\n                    padding: 1px 36px 20px 40px;\r\n                    margin-left:10px;\r\n\r\n            }\r\n            table.footer-table1 .footer-cell1 a {\r\n                color: #555;\r\n                text-decoration: none;\r\n            }\r\n            table.footer-table1 .footer-cell2 a.apple-address {\r\n                color: #666;\r\n                white-space: nowrap;\r\n                text-decoration: none;\r\n            }\r\n            table.footer-table .footer-link {\r\n                color: #555;\r\n                text-decoration: none;\r\n            }\r\n            table.footer-table .footer-text{\r\n                color: #888;\r\n                text-decoration: none;\r\n            }\r\n            table.footer-table .footer-text a{\r\n                color: #888;\r\n                text-decoration: none;\r\n            }\r\n        </style>=20\r\n  <style type=3D\"text/css\">\r\n            .update-time-text-margin {\r\n            margin-left: 12px !important;\r\n            }\r\n            .updated-invite-text-margin {\r\n                margin-left: 7px;\r\n                margin-top: -20px;\r\n            }\r\n\r\n            .update-padding-left {\r\n            padding-left: 12px !important;\r\n            }\r\n\r\n            .update_icon-margin-top {\r\n                margin-top: 15px;\r\n            }\r\n\r\n              .sharedcal_text {\r\n                font-size: 14px;\r\n                color: #86868b;\r\n              }\r\n\r\n             .invite-canceled-text {\r\n               font-size: 17px;\r\n               color: #E30000;\r\n              }\r\n\r\n              .inline {\r\n                display: inline-block;\r\n                position: relative;\r\n              }\r\n\r\n              .display-block {\r\n              display: block;\r\n              }\r\n\r\n             .central-width-full {\r\n              width: 682px;\r\n              }\r\n\r\n              @media only screen and (max-width:628px) {\r\n                .transform-button {\r\n                    transform: translate(0) !important;\r\n                }\r\n\r\n                .transform-margin-top {\r\n            margin-top: 0px !important;\r\n        }\r\n        .calendar-container .transform-margin-bottom {\r\n            margin-bottom: 16px !important;\r\n        }\r\n        .icon-margin-left {\r\n            margin-left:100px !important;\r\n        }\r\n                .button {\r\n                  margin-bottom: 10px !important;\r\n                  min-width: 310px !important;\r\n                  margin-left: 15px !important;\r\n                }\r\n                .button-margin-left {\r\n                  margin-left: 24px !important;\r\n                }\r\n                .margin-bottom-special {\r\n              margin-bottom: 16px !important;\r\n              }\r\n\r\n              .central-width {\r\n              width: 310px !important;\r\n              }\r\n\r\n             .update-time-left-margin {\r\n            margin-left: 12px !important;\r\n            }\r\n\r\n            .update-padding-left {\r\n            padding-left: 4px !important;\r\n            }\r\n\r\n            .update-time-text-margin {\r\n            margin-left: 10px !important;\r\n            }\r\n\r\n              .central-width-full {\r\n              width: 358px !important;\r\n              }\r\n\r\n              .calendar-title {\r\n                width: 310px !important;\r\n                margin-top: -15px;\r\n              }\r\n              .title-text {\r\n                font-size: 28pt !important;\r\n              }\r\n              td.notes-label {\r\n              width: 310px !important;\r\n              }\r\n              .location-label p {\r\n              width: 276px !important;\r\n              }\r\n                .calendar-container {\r\n                  width: 358px !important;\r\n                }\r\n                .common-margin-left,\r\n                .title-margin-left,\r\n                .cal-margin-left {\r\n                  margin-left: 24px !important;\r\n                }\r\n                .address-box {\r\n                  width: 276px !important;\r\n                }\r\n                .address-img-box {\r\n                  width: 308px !important;\r\n                }\r\n                .top {\r\n                    padding-left:10px !important;\r\n                }\r\n\r\n                .transform-padding-top {\r\n                  padding-bottom:10px !important;\r\n                }\r\n\r\n                .responsive-width {\r\n                  width: 12px;\r\n                }\r\n                .responsive-button-padding {\r\n                    padding-right:110px !important;\r\n                }\r\n              }\r\n\r\n              .tophalf {\r\n                height: auto;\r\n              }\r\n\r\n               .bottomhalf-opaque {\r\n                padding-top: 52px;\r\n                padding-bottom: 15px;\r\n                opacity: 0.5;\r\n              }\r\n\r\n             .cal-text-line-height {\r\n             line-height: 24px;\r\n             }\r\n\r\n              .cal {\r\n                border: 1px solid #e9e9e9;\r\n                background-color: #fff;\r\n                text-align: center;\r\n                border-radius: 15px;\r\n                height:55px;\r\n                padding: 8px 10px 10px 10px;\r\n              }\r\n              .cal .day {\r\n                font-size: 10px;\r\n                color: #eb5041;\r\n                line-height: 10px;\r\n                text-transform: uppercase;\r\n                padding-bottom: 2px;\r\n              }\r\n              .cal .date {\r\n                font-size: 20pt;\r\n                line-height: 28px;\r\n                font-weight: 300;\r\n              }\r\n              .calendar-container {\r\n                box-shadow: 0px 3px 30px #efefef;\r\n              }\r\n              .icloud-text {\r\n                font-weight: bold;\r\n              }\r\n              .calendar-text {\r\n                color: #6e6e73;\r\n                font-size:21px;\r\n                font-weight:500;\r\n              }\r\n\r\n              .title-text-striked {\r\n                font-size: 36px;\r\n                font-weight: 700;\r\n                letter-spacing: -0.030em;\r\n                color: #1d1d1f;\r\n                text-decoration: line-through;\r\n              }\r\n              .invite-text {\r\n                font-size: 17px;\r\n                font-weight: 400;\r\n                color: #6e6e73;\r\n                letter-spacing: -0.025em;\r\n              }\r\n\r\n                .invite-striked-text {\r\n                font-size: 17px;\r\n                font-weight: regular;\r\n                color: #6e6e73;\r\n                text-decoration:line-through;\r\n              }\r\n\r\n              .report-junk-text {\r\n                font-size: 11px;\r\n                color: #6E6E73;\r\n              }\r\n              .do-not-forward-text {\r\n                font-size: 11px;\r\n                color: #6E6E73;\r\n              }\r\n        a {\r\n            text-decoration: none;\r\n        }\r\n        .common-padding-bottom {\r\n            padding-bottom:15px;\r\n        }\r\n\r\n        .transform-margin-top{\r\n          margin-top: 15px;\r\n        }\r\n\r\n        .transform-button{\r\n          display: inline-block;\r\n        }\r\n    </style>=20\r\n </head>=20\r\n <body>=20\r\n  <table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" width=3D\"680\" ali=\r\ngn=3D\"center\" style=3D\"border:1px solid #ececec;border-radius:15px;box-shad=\r\now:0px 3px 30px #efefef;font-family:\'SF UI Text Regular\', \'SF Pro Text\', \'H=\r\nelvetica Neue\', Helvetica, Arial, sans-serif;margin-bottom:30px;border-coll=\r\napse:separate !important;\" class=3D\"calendar-container\">=20\r\n   <tbody>=20\r\n    <tr>=20\r\n     <td>=20\r\n      <table width=3D\"100%\" border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0=\r\n\" bgcolor=3D\"#f7f7fa\" style=3D\"border:1px solid #f7f7fa;border-radius:15px =\r\n15px 0px 0px;border-collapse:collapse;height:auto;\" class=3D\"tophalf\">=20\r\n       <tbody>=20\r\n        <tr>=20\r\n         <td>=20\r\n          <table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" style=3D\"=\r\nmargin-top: 36px;margin-bottom:24px; margin-left: 130px;border-collapse: co=\r\nllapse;\" class=3D\"common-margin-left\">=20\r\n           <tbody>=20\r\n            <tr>=20\r\n             <td style=3D\"padding-bottom:3px;\"> <img height=3D\"21\" src=3D\"h=\r\nttps://statici.icloud.com/emailimages/v4/calendar/redesignemail/icloud@3x.p=\r\nng\" style=3D\"display: block;\"> </td>=20\r\n             <td style=3D\"color: #6e6e73; font-size: 21px;font-weight: 500;=\r\n padding-left:5px;\">Calendar</td>=20\r\n            </tr>=20\r\n           </tbody>=20\r\n          </table> </td>=20\r\n        </tr>=20\r\n        <tr>=20\r\n         <td>=20\r\n          <!--[if gte mso 9]>\r\n                        <table border=3D\"0\" cellspacing=3D\"0\" cellpadding=\r\n=3D\"0\" style=3D\"width:100%;\">\r\n                            <tr><td style=3D\"padding-left:40px\">\r\n                                <v:roundrect xmlns:v=3D\"urn:schemas-microso=\r\nft-com:vml\" fill=3D\"true\" arcsize=3D\"25%\" strokecolor=3D\"#e9e9e9\" strokewei=\r\nght=3D\"1pt\" style=3D\"width:55px;height:55px;v-text-anchor:middle; backgroun=\r\nd:#ffffff; border: 1px solid #e9e9e9;\">\r\n                                    <v:stroke dashstyle=3D\"solid\" />\r\n                                    <v:textbox inset=3D\"0,0,0,0\">\r\n                                        <center>\r\n                                            <table border=3D\"0\" cellspacing=\r\n=3D\"0\" cellpadding=3D\"0\" style=3D\"width:75px;\" align=3D\"left\">\r\n                                                <tbody>\r\n                                                <tr>\r\n                                                    <td style=3D\"font-size:=\r\n 10pt; color: #eb5041; text-align: center; padding-bottom: 2px; line-height=\r\n: 10pt; mso-line-height-rule: exactly;padding-top:3px;\">THU</td>\r\n                                                </tr>\r\n                                                <tr>\r\n                                                    <td style=3D\"font-size:=\r\n 20pt; font-weight: 300; text-align: center;line-height: 20pt; mso-line-hei=\r\nght-rule: exactly;padding-bottom: 5px;\">19</td>\r\n                                                </tr>\r\n                                                </tbody>\r\n                                            </table>\r\n                                        </center>\r\n                                    </v:textbox>\r\n                                </v:roundrect>\r\n                            </td><td>\r\n                                <table border=3D\"0\" cellspacing=3D\"0\" cellp=\r\nadding=3D\"0\" align=3D\"left\" width=3D\"424\" style=3D\"border-collapse: collaps=\r\ne;overflow-wrap: break-word; padding-top: 12px; display: inline-block;  mar=\r\ngin-bottom: 16px;\">\r\n                                    <tbody>\r\n                                    <tr>\r\n                                        <td> <span style=3D\"font-size: 36px=\r\n; font-weight: 700; color: #1d1d1f;\" class=3D\"title-text\">Bavovna/Mavrix</s=\r\npan> </td>\r\n                                    </tr>\r\n                                    </tbody>\r\n                                </table>\r\n                            </td></tr>\r\n                        </table>\r\n                        <![endif]-->=20\r\n          <!--[if !mso]-->=20\r\n          <table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" align=3D\"=\r\nleft\" width=3D\"55\" height=3D\"55\" style=3D\"border: 1px solid #e9e9e9; backgr=\r\nound-color: #fff; border-radius: 15px; margin-left:40px;\" class=3D\"cal-marg=\r\nin-left margin-bottom-special\">=20\r\n           <tbody>=20\r\n            <tr>=20\r\n             <td style=3D\"font-size: 10px; color: #eb5041; text-align: cent=\r\ner; padding-top: 5px; line-height: 10px; padding-bottom: 2px;\"> THU </td>=\r\n=20\r\n            </tr>=20\r\n            <tr>=20\r\n             <td style=3D\"font-size: 20pt; font-weight: 300; text-align: ce=\r\nnter; line-height: 28px; padding-bottom: 5px;\"> 19 </td>=20\r\n            </tr>=20\r\n           </tbody>=20\r\n          </table>=20\r\n          <table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" align=3D\"=\r\nleft\" width=3D\"424\" style=3D\"border-collapse: collapse;overflow-wrap: break=\r\n-word; vertical-align: top;padding-top: 5px; display: inline-block; margin-=\r\nleft:32px; margin-bottom: 16px;\" class=3D\"calendar-title central-width titl=\r\ne-margin-left\">=20\r\n           <tbody>=20\r\n            <tr>=20\r\n             <td> <span style=3D\"font-size: 36px; font-weight: 700; color: =\r\n#1d1d1f;\" class=3D\"title-text\">Bavovna/Mavrix</span> </td>=20\r\n            </tr>=20\r\n           </tbody>=20\r\n          </table>=20\r\n          <!--[endif]--> </td>=20\r\n        </tr>=20\r\n        <tr>=20\r\n         <td>=20\r\n          <table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" width=3D\"=\r\n424\" style=3D\"margin-left:130px;border-collapse: collapse;\" class=3D\"centra=\r\nl-width common-margin-left\">=20\r\n           <tbody>=20\r\n            <tr>=20\r\n             <td> <p style=3D\"font-size: 17px; font-weight: 400; color: #6e=\r\n6e73; margin:0;\"> Thursday, June 19, 2025 </p> </td>=20\r\n            </tr>=20\r\n            <tr>=20\r\n             <td> <p style=3D\"font-size: 17px; font-weight: 400; color: #6e=\r\n6e73; margin:0;\"> 3:00 PM - 4:00 PM (EDT) </p> </td>=20\r\n            </tr>=20\r\n           </tbody>=20\r\n          </table> </td>=20\r\n        </tr>=20\r\n        <tr>=20\r\n         <td style=3D\"padding-top:32px;padding-bottom:32px;\" class=3D\"trans=\r\nform-padding-top\">=20\r\n          <!--[if gte mso 9]>\r\n                        <table border=3D\"0\" width=3D100% cellspacing=3D\"0\" =\r\ncellpadding=3D\"0\">\r\n                            <tr><td style=3D\"padding-left:130px\" width=3D13=\r\n0>\r\n                                <v:roundrect xmlns:v=3D\"urn:schemas-microso=\r\nft-com:vml\" fill=3D\"true\" arcsize=3D\"50%\" strokecolor=3D\"#e9e9e9\" strokewei=\r\nght=3D\"1pt\" style=3D\"width:130px;height:38px;v-text-anchor:middle; backgrou=\r\nnd:#ffffff;\">\r\n                                    <v:stroke dashstyle=3D\"solid\" />\r\n                                    <v:textbox inset=3D\"0,0,0,0\">\r\n                                        <table border=3D\"0\" cellspacing=3D\"=\r\n0\" cellpadding=3D\"0\" style=3D\"\" align=3D\"left\">\r\n                                            <tbody>\r\n                                            <tr>\r\n                                                <td style=3D\"padding-right:=\r\n15px;\"> <a target=3D\"_blank\" href=3D\"https://www.icloud.com/calendar/event/=\r\n#t=3D2_GI2DINJZGU2DOMRUGQ2TSNJUG6PTD7F6GQJ2TWJBYULKFF6EMJW23VQWCJWRZOXDPW3I=\r\nZUXFWCWLG&p=3Dp175&reply=3Daccept\" style=3D\"padding-top: 15px; padding-left=\r\n: 6px;padding-right:15px;\"><img height=3D\"25\" src=3D\"https://statici.icloud=\r\n.com/emailimages/v4/calendar/redesignemail/icon_accept@3x.png\" class=3D\"ico=\r\nn-margin-left\"></a></td>\r\n                                                <td style=3D\"font-size: 14p=\r\nx; font-weight: 600;\"><a target=3D\"_blank\" href=3D\"https://www.icloud.com/c=\r\nalendar/event/#t=3D2_GI2DINJZGU2DOMRUGQ2TSNJUG6PTD7F6GQJ2TWJBYULKFF6EMJW23V=\r\nQWCJWRZOXDPW3IZUXFWCWLG&p=3Dp175&reply=3Daccept\" style=3D\"color: #1d1d1f; p=\r\nadding-top: 15px; padding-bottom: 15px; padding-right: 30px;\"> Accept </a><=\r\n/td>\r\n                                            </tr>\r\n                                            </tbody>\r\n                                        </table>\r\n                                    </v:textbox>\r\n                                </v:roundrect>\r\n                            </td><td style=3D\"padding-left:10px; \" width=3D=\r\n130>\r\n                                <v:roundrect xmlns:v=3D\"urn:schemas-microso=\r\nft-com:vml\" fill=3D\"true\" arcsize=3D\"50%\" strokecolor=3D\"#e9e9e9\" strokewei=\r\nght=3D\"1pt\" style=3D\"width:130px;height:38px;v-text-anchor:middle;backgroun=\r\nd:#ffffff;\">\r\n                                    <v:stroke dashstyle=3D\"solid\" />\r\n                                    <v:textbox inset=3D\"0,0,0,0\">\r\n                                        <table border=3D\"0\" cellspacing=3D\"=\r\n0\" cellpadding=3D\"0\" style=3D\"\" align=3D\"left\">\r\n                                            <tbody>\r\n                                            <tr>\r\n                                                <td style=3D\"padding-right:=\r\n15px;\"> <a target=3D\"_blank\" href=3D\"https://www.icloud.com/calendar/event/=\r\n#t=3D2_GI2DINJZGU2DOMRUGQ2TSNJUG6PTD7F6GQJ2TWJBYULKFF6EMJW23VQWCJWRZOXDPW3I=\r\nZUXFWCWLG&p=3Dp175&reply=3Ddecline\" style=3D\"padding-top: 15px; padding-lef=\r\nt: 6px;padding-right:15px;\"><img height=3D\"25\" src=3D\"https://statici.iclou=\r\nd.com/emailimages/v4/calendar/redesignemail/icon_decline@3x.png\" class=3D\"i=\r\ncon-margin-left\"></a></td>\r\n                                                <td style=3D\"font-size: 14p=\r\nx; font-weight: 600;\"><a target=3D\"_blank\" href=3D\"https://www.icloud.com/c=\r\nalendar/event/#t=3D2_GI2DINJZGU2DOMRUGQ2TSNJUG6PTD7F6GQJ2TWJBYULKFF6EMJW23V=\r\nQWCJWRZOXDPW3IZUXFWCWLG&p=3Dp175&reply=3Ddecline\" style=3D\"color: #1d1d1f; =\r\npadding-top: 15px; padding-bottom: 15px; padding-right: 30px;\"> Decline </a=\r\n></td>\r\n                                            </tr>\r\n                                            </tbody>\r\n                                        </table>\r\n                                    </v:textbox>\r\n                                </v:roundrect>\r\n                            </td><td style=3D\"padding-left:10px;\">\r\n                                <v:roundrect xmlns:v=3D\"urn:schemas-microso=\r\nft-com:vml\" fill=3D\"true\" arcsize=3D\"50%\" strokecolor=3D\"#e9e9e9\" strokewei=\r\nght=3D\"1pt\" style=3D\"width:130px;height:38px;v-text-anchor:middle; backgrou=\r\nnd:#ffffff; \">\r\n                                    <v:stroke dashstyle=3D\"solid\" />\r\n                                    <v:textbox inset=3D\"0,0,0,0\">\r\n                                        <table border=3D\"0\" cellspacing=3D\"=\r\n0\" cellpadding=3D\"0\" style=3D\"\" align=3D\"left\">\r\n                                            <tbody>\r\n                                            <tr>\r\n                                                <td style=3D\"padding-right:=\r\n15px;\"> <a target=3D\"_blank\" href=3D\"https://www.icloud.com/calendar/event/=\r\n#t=3D2_GI2DINJZGU2DOMRUGQ2TSNJUG6PTD7F6GQJ2TWJBYULKFF6EMJW23VQWCJWRZOXDPW3I=\r\nZUXFWCWLG&p=3Dp175&reply=3Dtentative\" style=3D\"padding-top: 15px; padding-l=\r\neft: 6px;padding-right:15px;\"><img height=3D\"25\" src=3D\"https://statici.icl=\r\noud.com/emailimages/v4/calendar/redesignemail/icon_maybe@3x.png\" class=3D\"i=\r\ncon-margin-left\"></a></td>\r\n                                                <td style=3D\"font-size: 14p=\r\nx; font-weight: 600;\"><a target=3D\"_blank\" href=3D\"https://www.icloud.com/c=\r\nalendar/event/#t=3D2_GI2DINJZGU2DOMRUGQ2TSNJUG6PTD7F6GQJ2TWJBYULKFF6EMJW23V=\r\nQWCJWRZOXDPW3IZUXFWCWLG&p=3Dp175&reply=3Dtentative\" style=3D\"color: #1d1d1f=\r\n; padding-top: 15px; padding-bottom: 15px; padding-right: 30px;\"> Maybe </a=\r\n></td>\r\n                                            </tr>\r\n                                            </tbody>\r\n                                        </table>\r\n                                    </v:textbox>\r\n                                </v:roundrect>\r\n                            </td></tr>\r\n                        </table>\r\n                        <![endif]-->=20\r\n          <!--[if !mso]-->=20\r\n          <div style=3D\"margin-left:130px;border-radius:30px;cursor:pointer=\r\n;border:1px solid #e9e9e9;box-shadow:0px 1px 10px 0 rgba(0, 0, 0, 0.05);bac=\r\nkground:white;display:inline-block;min-width:123px;height:32px;\" class=3D\"b=\r\nutton transform-button common-margin-left\">=20\r\n           <a href=3D\"https://www.icloud.com/calendar/event/#t=3D2_GI2DINJZ=\r\nGU2DOMRUGQ2TSNJUG6PTD7F6GQJ2TWJBYULKFF6EMJW23VQWCJWRZOXDPW3IZUXFWCWLG&p=3Dp=\r\n175&reply=3Daccept\" target=3D\"_blank\" style=3D\"color:#1d1d1f !important;tex=\r\nt-decoration:none;display:block;width:100%;height:100%;\">=20\r\n            <div style=3D\"display: inline-block; vertical-align: top;\" clas=\r\ns=3D\"icon-margin-left\">=20\r\n             <img src=3D\"https://statici.icloud.com/emailimages/v4/calendar=\r\n/redesignemail/icon_accept@3x.png\" height=3D\"25\" style=3D\"margin-left:5px;m=\r\nargin-top: 4px;\">=20\r\n            </div>=20\r\n            <div style=3D\"display: inline-block; font-size: 14px; font-weig=\r\nht: 600; padding-top: 7.5px; padding-right: 15px;text-align:center; width: =\r\n75px;\">\r\n              Accept=20\r\n            </div></a>=20\r\n          </div>=20\r\n          <div style=3D\"margin-left:12px;border-radius:30px;cursor:pointer;=\r\nborder:1px solid #e9e9e9;box-shadow:0px 1px 10px 0 rgba(0, 0, 0, 0.05);back=\r\nground:white;display:inline-block;min-width:123px;height:35px;\" class=3D\"bu=\r\ntton transform-button button-margin-left\">=20\r\n           <a href=3D\"https://www.icloud.com/calendar/event/#t=3D2_GI2DINJZ=\r\nGU2DOMRUGQ2TSNJUG6PTD7F6GQJ2TWJBYULKFF6EMJW23VQWCJWRZOXDPW3IZUXFWCWLG&p=3Dp=\r\n175&reply=3Ddecline\" target=3D\"_blank\" style=3D\"color:#1d1d1f !important;te=\r\nxt-decoration:none;display:block;width:100%;height:100%;\">=20\r\n            <div style=3D\"display: inline-block; vertical-align: top;\" clas=\r\ns=3D\"icon-margin-left\">=20\r\n             <img src=3D\"https://statici.icloud.com/emailimages/v4/calendar=\r\n/redesignemail/icon_decline@3x.png\" height=3D\"25\" style=3D\"margin-left:5px;=\r\nmargin-top: 5px;\">=20\r\n            </div>=20\r\n            <div style=3D\"display: inline-block; font-size: 14px; font-weig=\r\nht: 600; padding-top: 7.5px; padding-right: 15px;text-align:center; width: =\r\n75px;\">\r\n              Decline=20\r\n            </div></a>=20\r\n          </div>=20\r\n          <div style=3D\"margin-left:12px;border-radius:30px;cursor:pointer;=\r\nborder:1px solid #e9e9e9;box-shadow:0px 1px 10px 0 rgba(0, 0, 0, 0.05);back=\r\nground:white;display:inline-block;min-width:123px;height:35px;\" class=3D\"bu=\r\ntton transform-button button-margin-left\">=20\r\n           <a href=3D\"https://www.icloud.com/calendar/event/#t=3D2_GI2DINJZ=\r\nGU2DOMRUGQ2TSNJUG6PTD7F6GQJ2TWJBYULKFF6EMJW23VQWCJWRZOXDPW3IZUXFWCWLG&p=3Dp=\r\n175&reply=3Dtentative\" target=3D\"_blank\" style=3D\"color:#1d1d1f !important;=\r\ntext-decoration:none;display:block;width:100%;height:100%;\">=20\r\n            <div style=3D\"display: inline-block; vertical-align: top;\" clas=\r\ns=3D\"icon-margin-left\">=20\r\n             <img src=3D\"https://statici.icloud.com/emailimages/v4/calendar=\r\n/redesignemail/icon_maybe@3x.png\" height=3D\"25\" style=3D\" margin-left:5px;m=\r\nargin-top: 5px;\">=20\r\n            </div>=20\r\n            <div style=3D\"display: inline-block; font-size: 14px; font-weig=\r\nht: 600; padding-top: 7.5px; padding-right: 15px;text-align:center; width: =\r\n75px;\">\r\n              Maybe=20\r\n            </div></a>=20\r\n          </div>=20\r\n          <!--[endif]--> </td>=20\r\n        </tr>=20\r\n       </tbody>=20\r\n      </table> </td>=20\r\n    </tr>=20\r\n    <tr>=20\r\n     <td>=20\r\n      <table width=3D\"100%\" border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0=\r\n\" style=3D\"margin-top:15px;border-collapse:collapse;\" class=3D\"transform-ma=\r\nrgin-top\">=20\r\n       <tbody>\r\n        <tr>\r\n         <td style=3D\"padding-bottom:36px\">=20\r\n          <table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" width=3D\"=\r\n424\" style=3D\"margin-left: 130px;border-collapse: collapse;\" class=3D\"centr=\r\nal-width common-margin-left\">=20\r\n           <tbody>=20\r\n            <tr>=20\r\n             <td style=3D\"padding-top: 16px;\"> <p style=3D\"font-size: 14px;=\r\n font-weight: 500; color: #86868B; margin:0;\">Notes </p> </td>=20\r\n            </tr>=20\r\n           </tbody>=20\r\n          </table>=20\r\n          <table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" width=3D\"=\r\n424\" style=3D\"margin-top: 4px; margin-left: 130px;border-collapse: collapse=\r\n;\" class=3D\"central-width common-margin-left\">=20\r\n           <tbody>=20\r\n            <tr>=20\r\n             <td> <p style=3D\"font-size: 14px;color: #1d1d1f;margin:0;\"> --=\r\n--( Video Call )----<br/>https://meet.jit.si/securemavrix1<br/>---=3D=3D=3D=\r\n--- </p> </td>=20\r\n            </tr>=20\r\n           </tbody>=20\r\n          </table>=20\r\n          <table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" width=3D\"=\r\n424\" style=3D\"margin-left: 130px;border-collapse: collapse;\" class=3D\"centr=\r\nal-width common-margin-left\">=20\r\n           <tbody>\r\n            <tr>\r\n             <td style=3D\"padding-top: 16px;\"> <p style=3D\"font-size: 14px;=\r\n font-weight: 500; color: #86868B; margin:0;\">Participants</p> </td>\r\n            </tr>=20\r\n           </tbody>\r\n          </table>=20\r\n          <table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" width=3D\"=\r\n424\" style=3D\"margin-top: 4px; margin-left: 130px;border-collapse: collapse=\r\n;\" class=3D\"central-width common-margin-left\">=20\r\n           <tbody>\r\n            <tr>\r\n             <td> <p style=3D\"font-size: 14px; color: #1d1d1f;margin:0;\">Ri=\r\nchard Mislan (Organizer)</p> </td>\r\n            </tr>=20\r\n            <tr>\r\n             <td> <p style=3D\"font-size: 14px; color: #1d1d1f;margin:0;\">ri=\r\nck@mavrix.one (You)</p> </td>\r\n            </tr>=20\r\n            <tr>\r\n             <td> <p style=3D\"font-size: 14px; color: #1d1d1f;margin:0;\">Ar=\r\nthur Mccallum</p> </td>\r\n            </tr>=20\r\n           </tbody>\r\n          </table>=20\r\n          <table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" width=3D\"=\r\n424\" style=3D\"margin-left:130px; border-collapse: collapse;\" class=3D\"centr=\r\nal-width common-margin-left common-margin-top\">=20\r\n           <tbody>\r\n            <tr>\r\n             <td style=3D\"padding-top: 16px;\"> <a style=3D\"color:#0066CC;te=\r\nxt-decoration:none;font-size:14px;\" href=3D\"https://www.icloud.com/calendar=\r\n/event/#t=3D2_GI2DINJZGU2DOMRUGQ2TSNJUG6PTD7F6GQJ2TWJBYULKFF6EMJW23VQWCJWRZ=\r\nOXDPW3IZUXFWCWLG&p=3Dp175\">View Details and Replies</a> </td>\r\n            </tr>=20\r\n           </tbody>\r\n          </table> </td>\r\n        </tr>=20\r\n       </tbody>\r\n      </table> </td>\r\n    </tr>=20\r\n   </tbody>\r\n  </table>=20\r\n  <table align=3D\"center\">=20\r\n   <tbody>\r\n    <tr>\r\n     <td class=3D\"do-not-forward-text common-padding-bottom central-width-f=\r\null\" style=3D\"color:rgb(110, 110, 115);width:682px;font-size:11px;padding-b=\r\nottom:15px;\"> This invitation is specific to you and should not be shared w=\r\nith other users. </td>\r\n    </tr>=20\r\n    <tr>\r\n     <td class=3D\"report-junk-text common-padding-bottom central-width-full=\r\n\" style=3D\"color:rgb(110, 110, 115);width:682px;font-size:11px;padding-bott=\r\nom:15px;\"> Don=E2=80=99t recognize this sender? <a href=3D\"https://www.iclo=\r\nud.com/report_junk/?type=3Devent-invite&blob=3DAfJUmKrOq483cioqL8JiGg0Qk8hW=\r\nyG67x6sQfuZdW%2BJg2OW2KsAD1d4KE7IEFXjJKR1VjzASI988xP00CjyZ8RiAph9qfDouY7aau=\r\nccmKVdoV5jBjSyDtS0tDknXMxdnqWFjPQ%3D%3D\" style=3D\"text-decoration:none;\">Re=\r\nport Junk.</a> </td>\r\n    </tr>=20\r\n   </tbody>\r\n  </table>=20\r\n  <table class=3D\"footer-table1\" align=3D\"center\" style=3D\"background-color=\r\n:rgb(242, 242, 242);width:682px;font-size:inherit;margin-top:auto;\">=20\r\n   <tbody>\r\n    <tr>=20\r\n     <td class=3D\"footer-cell1\" style=3D\"margin-left:10px;padding:20px 36px=\r\n 1px 40px;font-size:12px;font-family:system-ui, -apple-system, BlinkMacSyst=\r\nemFont, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;line-height:=\r\n18px;\"> <a class=3D\"nobr\" href=3D\"https://account.apple.com/#!&page=3Dsigni=\r\nn\" style=3D\"color:rgb(85, 85, 85);white-space:nowrap;text-decoration:none;\"=\r\n> Apple Account </a> | <a class=3D\"nobr\" href=3D\"https://support.apple.com\"=\r\n style=3D\"color:rgb(85, 85, 85);white-space:nowrap;text-decoration:none;\"> =\r\nSupport </a> | <a class=3D\"nobr\" href=3D\"https://www.apple.com/legal/privac=\r\ny\" style=3D\"color:rgb(85, 85, 85);white-space:nowrap;text-decoration:none;\"=\r\n> Privacy Policy </a> </td>=20\r\n    </tr>=20\r\n    <tr>=20\r\n     <td class=3D\"footer-cell2\" style=3D\"margin-left:10px;padding:1px 36px =\r\n20px 40px;color:rgb(102, 102, 102);font-size:12px;font-family:system-ui, -a=\r\npple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, Arial=\r\n, sans-serif;line-height:18px;\"> <span class=3D\"nobr\" style=3D\"white-space:=\r\nnowrap;\">Copyright =C2=A9 2025</span> Apple Inc. <a class=3D\"apple-address\"=\r\n href=3D\"#address\" style=3D\"color:rgb(102, 102, 102);white-space:nowrap;tex=\r\nt-decoration:none;\">One Apple Park Way, Cupertino, CA 95014 USA</a>. <span =\r\nclass=3D\"nobr\" style=3D\"white-space:nowrap;\">All rights reserved.</span> </=\r\ntd>=20\r\n    </tr>=20\r\n   </tbody>\r\n  </table> =20\r\n </body>\r\n</html>','\r\n \r\n =20\r\n  =20\r\n  =20\r\n  =20\r\n  \r\n            table.footer-table {\r\n                width: 100%;\r\n                font-size: inherit;\r\n                line-height: 18px;\r\n                text-align: center;\r\n            }\r\n            table.footer-table .footer-background {\r\n                width: 685px;\r\n                font-size: 11px;\r\n                line-height: 22px;\r\n                color: #888;\r\n                text-align: center;\r\n                background-repeat: no-repeat;\r\n                background-position: center top;\r\n                padding: 15px 0 7px;\r\n                background-image: url(https://statici.icloud.com/emailimage=\r\ns/v4/common/footer_gradient_web.png);\r\n            }\r\n           .grey-footer-background {\r\n                width: 685px;\r\n                font-size: 11px;\r\n                line-height: 22px;\r\n                color: #888;\r\n                text-align: center;\r\n                background-repeat: no-repeat;\r\n                background-position: center top;\r\n                padding: 29px 0 7px;\r\n                overflow: hidden;\r\n                background: #f5f5f5 no-repeat;\r\n            }\r\n            table.footer-table .icloud-logo {\r\n                display: inline-block;\r\n            }\r\n            table.footer-table .footer-cell {\r\n                font-family: system-ui, -apple-system, BlinkMacSystemFont, =\r\nSegoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;\r\n                font-size: 12px;\r\n                line-height: 15px;\r\n                color: #666;\r\n                text-align: center;\r\n                padding: 0 18px 18px 18px;\r\n            }\r\n            table.footer-table .nobr {\r\n                white-space: nowrap;\r\n            }\r\n            table.footer-table .footer-cell a {\r\n                color: #0070c9;\r\n                text-decoration: none;\r\n            }\r\n            table.footer-table .footer-cell a.apple-address {\r\n                color: #666;\r\n                white-space: nowrap;\r\n                text-decoration: none;\r\n            }\r\n        @media only screen and (max-width:628px) {\r\n        table.footer-table1 {\r\n                width: 358px !important;\r\n                font-size: inherit;\r\n                background-color: #f2f2f2;\r\n                margin-top: auto;\r\n                }\r\n            }\r\n            table.footer-table1 {\r\n                width: 682px;\r\n                font-size: inherit;\r\n                background-color: #f2f2f2;\r\n                margin-top: auto;\r\n            }\r\n            table.footer-table1 .nobr {\r\n                white-space: nowrap;\r\n            }\r\n            table.footer-table1 .footer-background1 {\r\n                font-size: 11px;\r\n                line-height: 22px;\r\n                color: #888;\r\n                background-image: url(https://statici.icloud.com/emailimage=\r\ns/v4/common/footer_gradient_web.png);\r\n            }\r\n            table.footer-table1 .footer-cell1 {\r\n                font-family: system-ui, -apple-system, BlinkMacSystemFont, =\r\nSegoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;\r\n                font-size: 12px;\r\n                line-height: 18px;\r\n                    padding: 20px 36px 1px 40px;\r\n                    margin-left:10px;\r\n\r\n            }\r\n            table.footer-table1 .footer-cell2 {\r\n                font-family: system-ui, -apple-system, BlinkMacSystemFont, =\r\nSegoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;\r\n                font-size: 12px;\r\n                line-height: 18px;\r\n                color: #666;\r\n                    padding: 1px 36px 20px 40px;\r\n                    margin-left:10px;\r\n\r\n            }\r\n            table.footer-table1 .footer-cell1 a {\r\n                color: #555;\r\n                text-decoration: none;\r\n            }\r\n            table.footer-table1 .footer-cell2 a.apple-address {\r\n                color: #666;\r\n                white-space: nowrap;\r\n                text-decoration: none;\r\n            }\r\n            table.footer-table .footer-link {\r\n                color: #555;\r\n                text-decoration: none;\r\n            }\r\n            table.footer-table .footer-text{\r\n                color: #888;\r\n                text-decoration: none;\r\n            }\r\n            table.footer-table .footer-text a{\r\n                color: #888;\r\n                text-decoration: none;\r\n            }\r\n        =20\r\n  \r\n            .update-time-text-margin {\r\n            margin-left: 12px !important;\r\n            }\r\n            .updated-invite-text-margin {\r\n                margin-left: 7px;\r\n                margin-top: -20px;\r\n            }\r\n\r\n            .update-padding-left {\r\n            padding-left: 12px !important;\r\n            }\r\n\r\n            .update_icon-margin-top {\r\n                margin-top: 15px;\r\n            }\r\n\r\n              .sharedcal_text {\r\n                font-size: 14px;\r\n                color: #86868b;\r\n              }\r\n\r\n             .invite-canceled-text {\r\n               font-size: 17px;\r\n               color: #E30000;\r\n              }\r\n\r\n              .inline {\r\n                display: inline-block;\r\n                position: relative;\r\n              }\r\n\r\n              .display-block {\r\n              display: block;\r\n              }\r\n\r\n             .central-width-full {\r\n              width: 682px;\r\n              }\r\n\r\n              @media only screen and (max-width:628px) {\r\n                .transform-button {\r\n                    transform: translate(0) !important;\r\n                }\r\n\r\n                .transform-margin-top {\r\n            margin-top: 0px !important;\r\n        }\r\n        .calendar-container .transform-margin-bottom {\r\n            margin-bottom: 16px !important;\r\n        }\r\n        .icon-margin-left {\r\n            margin-left:100px !important;\r\n        }\r\n                .button {\r\n                  margin-bottom: 10px !important;\r\n                  min-width: 310px !important;\r\n                  margin-left: 15px !important;\r\n                }\r\n                .button-margin-left {\r\n                  margin-left: 24px !important;\r\n                }\r\n                .margin-bottom-special {\r\n              margin-bottom: 16px !important;\r\n              }\r\n\r\n              .central-width {\r\n              width: 310px !important;\r\n              }\r\n\r\n             .update-time-left-margin {\r\n            margin-left: 12px !important;\r\n            }\r\n\r\n            .update-padding-left {\r\n            padding-left: 4px !important;\r\n            }\r\n\r\n            .update-time-text-margin {\r\n            margin-left: 10px !important;\r\n            }\r\n\r\n              .central-width-full {\r\n              width: 358px !important;\r\n              }\r\n\r\n              .calendar-title {\r\n                width: 310px !important;\r\n                margin-top: -15px;\r\n              }\r\n              .title-text {\r\n                font-size: 28pt !important;\r\n              }\r\n              td.notes-label {\r\n              width: 310px !important;\r\n              }\r\n              .location-label p {\r\n              width: 276px !important;\r\n              }\r\n                .calendar-container {\r\n                  width: 358px !important;\r\n                }\r\n                .common-margin-left,\r\n                .title-margin-left,\r\n                .cal-margin-left {\r\n                  margin-left: 24px !important;\r\n                }\r\n                .address-box {\r\n                  width: 276px !important;\r\n                }\r\n                .address-img-box {\r\n                  width: 308px !important;\r\n                }\r\n                .top {\r\n                    padding-left:10px !important;\r\n                }\r\n\r\n                .transform-padding-top {\r\n                  padding-bottom:10px !important;\r\n                }\r\n\r\n                .responsive-width {\r\n                  width: 12px;\r\n                }\r\n                .responsive-button-padding {\r\n                    padding-right:110px !important;\r\n                }\r\n              }\r\n\r\n              .tophalf {\r\n                height: auto;\r\n              }\r\n\r\n               .bottomhalf-opaque {\r\n                padding-top: 52px;\r\n                padding-bottom: 15px;\r\n                opacity: 0.5;\r\n              }\r\n\r\n             .cal-text-line-height {\r\n             line-height: 24px;\r\n             }\r\n\r\n              .cal {\r\n                border: 1px solid #e9e9e9;\r\n                background-color: #fff;\r\n                text-align: center;\r\n                border-radius: 15px;\r\n                height:55px;\r\n                padding: 8px 10px 10px 10px;\r\n              }\r\n              .cal .day {\r\n                font-size: 10px;\r\n                color: #eb5041;\r\n                line-height: 10px;\r\n                text-transform: uppercase;\r\n                padding-bottom: 2px;\r\n              }\r\n              .cal .date {\r\n                font-size: 20pt;\r\n                line-height: 28px;\r\n                font-weight: 300;\r\n              }\r\n              .calendar-container {\r\n                box-shadow: 0px 3px 30px #efefef;\r\n              }\r\n              .icloud-text {\r\n                font-weight: bold;\r\n              }\r\n              .calendar-text {\r\n                color: #6e6e73;\r\n                font-size:21px;\r\n                font-weight:500;\r\n              }\r\n\r\n              .title-text-striked {\r\n                font-size: 36px;\r\n                font-weight: 700;\r\n                letter-spacing: -0.030em;\r\n                color: #1d1d1f;\r\n                text-decoration: line-through;\r\n              }\r\n              .invite-text {\r\n                font-size: 17px;\r\n                font-weight: 400;\r\n                color: #6e6e73;\r\n                letter-spacing: -0.025em;\r\n              }\r\n\r\n                .invite-striked-text {\r\n                font-size: 17px;\r\n                font-weight: regular;\r\n                color: #6e6e73;\r\n                text-decoration:line-through;\r\n              }\r\n\r\n              .report-junk-text {\r\n                font-size: 11px;\r\n                color: #6E6E73;\r\n              }\r\n              .do-not-forward-text {\r\n                font-size: 11px;\r\n                color: #6E6E73;\r\n              }\r\n        a {\r\n            text-decoration: none;\r\n        }\r\n        .common-padding-bottom {\r\n            padding-bottom:15px;\r\n        }\r\n\r\n        .transform-margin-top{\r\n          margin-top: 15px;\r\n        }\r\n\r\n        .transform-button{\r\n          display: inline-block;\r\n        }\r\n    =20\r\n =20\r\n =20\r\n  =20\r\n   =20\r\n    =20\r\n     =20\r\n      =20\r\n       =20\r\n        =20\r\n         =20\r\n          =20\r\n           =20\r\n            =20\r\n               =20\r\n             Calendar=20\r\n            =20\r\n           =20\r\n           =20\r\n        =20\r\n        =20\r\n         =20\r\n          =20\r\n          =20\r\n          =20\r\n           =20\r\n            =20\r\n              THU =\r\n=20\r\n            =20\r\n            =20\r\n              19 =20\r\n            =20\r\n           =20\r\n          =20\r\n          =20\r\n           =20\r\n            =20\r\n              Bavovna/Mavrix =20\r\n            =20\r\n           =20\r\n          =20\r\n           =20\r\n        =20\r\n        =20\r\n         =20\r\n          =20\r\n           =20\r\n            =20\r\n               Thursday, June 19, 2025  =20\r\n            =20\r\n            =20\r\n               3:00 PM - 4:00 PM (EDT)  =20\r\n            =20\r\n           =20\r\n           =20\r\n        =20\r\n        =20\r\n         =20\r\n          =20\r\n          =20\r\n          =20\r\n           =20\r\n            =20\r\n             =20\r\n            =20\r\n            \r\n              Accept=20\r\n            =20\r\n          =20\r\n          =20\r\n           =20\r\n            =20\r\n             =20\r\n            =20\r\n            \r\n              Decline=20\r\n            =20\r\n          =20\r\n          =20\r\n           =20\r\n            =20\r\n             =20\r\n            =20\r\n            \r\n              Maybe=20\r\n            =20\r\n          =20\r\n           =20\r\n        =20\r\n       =20\r\n       =20\r\n    =20\r\n    =20\r\n     =20\r\n      =20\r\n       \r\n        \r\n         =20\r\n          =20\r\n           =20\r\n            =20\r\n              Notes  =20\r\n            =20\r\n           =20\r\n          =20\r\n          =20\r\n           =20\r\n            =20\r\n               --=\r\n--( Video Call )----https://meet.jit.si/securemavrix1---=3D=3D=3D=\r\n---  =20\r\n            =20\r\n           =20\r\n          =20\r\n          =20\r\n           \r\n            \r\n              Participants \r\n            =20\r\n           \r\n          =20\r\n          =20\r\n           \r\n            \r\n              Ri=\r\nchard Mislan (Organizer) \r\n            =20\r\n            \r\n              ri=\r\nck@mavrix.one (You) \r\n            =20\r\n            \r\n              Ar=\r\nthur Mccallum \r\n            =20\r\n           \r\n          =20\r\n          =20\r\n           \r\n            \r\n              View Details and Replies \r\n            =20\r\n           \r\n           \r\n        =20\r\n       \r\n       \r\n    =20\r\n   \r\n  =20\r\n  =20\r\n   \r\n    \r\n      This invitation is specific to you and should not be shared w=\r\nith other users. \r\n    =20\r\n    \r\n      Don=E2=80=99t recognize this sender? Re=\r\nport Junk. \r\n    =20\r\n   \r\n  =20\r\n  =20\r\n   \r\n    =20\r\n       Apple Account  |  =\r\nSupport  |  Privacy Policy  =20\r\n    =20\r\n    =20\r\n      Copyright =C2=A9 2025 Apple Inc. One Apple Park Way, Cupertino, CA 95014 USA. All rights reserved. =20\r\n    =20\r\n   \r\n   =20\r\n \r\n',0,0,0,0,0,0,'2025-06-18 21:52:44','2025-12-09 19:12:51','2025-12-09 19:12:51','2025-12-09 19:12:51',NULL,NULL,NULL),
(382,4,'<e55df333-ce5a-4521-834e-47c5c2eda679@deltawerx.net>',NULL,NULL,'Re-sending - Updated Independent Development Clause for Mutual Clarity','tom@deltawerx.net','Dr Tom Chi','<!DOCTYPE html>\r\n<html>\r\n  <head>\r\n\r\n    <meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\">\r\n  </head>\r\n  <body>\r\n    <div class=\"moz-forward-container\">\r\n      <p>Hi Rick, re-sending our response, please see below. <br>\r\n      </p>\r\n      <p>Modest final change, should serve the purpose.  <br>\r\n      </p>\r\n      <p>We\'re ready to move forward.</p>\r\n      <p>v/r</p>\r\n      <p>tc<br>\r\n      </p>\r\n      <div class=\"moz-forward-container\"><br>\r\n        <br>\r\n        -------- Forwarded Message --------\r\n        <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\"\r\n          class=\"moz-email-headers-table\">\r\n          <tbody>\r\n            <tr>\r\n              <th valign=\"BASELINE\" align=\"RIGHT\" nowrap=\"nowrap\">Subject:\r\n              </th>\r\n              <td>Updated Independent Development Clause for Mutual\r\n                Clarity</td>\r\n            </tr>\r\n            <tr>\r\n              <th valign=\"BASELINE\" align=\"RIGHT\" nowrap=\"nowrap\">Date:\r\n              </th>\r\n              <td>Tue, 17 Jun 2025 21:13:09 -0500</td>\r\n            </tr>\r\n            <tr>\r\n              <th valign=\"BASELINE\" align=\"RIGHT\" nowrap=\"nowrap\">From:\r\n              </th>\r\n              <td>Dr Tom Chi <a class=\"moz-txt-link-rfc2396E\"\r\n                  href=\"mailto:tom@deltawerx.net\" moz-do-not-send=\"true\">&lt;tom@deltawerx.net&gt;</a></td>\r\n            </tr>\r\n            <tr>\r\n              <th valign=\"BASELINE\" align=\"RIGHT\" nowrap=\"nowrap\">To: </th>\r\n              <td>Rick <a class=\"moz-txt-link-rfc2396E\"\r\n                  href=\"mailto:rick@mavrix.one\" moz-do-not-send=\"true\">&lt;rick@mavrix.one&gt;</a>,\r\n                Major General (Ret) Frank Muth <a\r\n                  class=\"moz-txt-link-rfc2396E\"\r\n                  href=\"mailto:president@deltawerx.net\"\r\n                  moz-do-not-send=\"true\">&lt;president@deltawerx.net&gt;</a></td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n        <br>\r\n        <br>\r\n        <meta http-equiv=\"Content-Type\"\r\n          content=\"text/html; charset=UTF-8\">\r\n        <p data-start=\"164\" data-end=\"276\"><b>Thanks, Rick.</b>\r\n          Sometimes the delight is in the details, and we appreciate the\r\n          thoughtful clarity you’re positing.</p>\r\n        <p data-start=\"278\" data-end=\"511\">Perhaps just one final tweak\r\n          as we close this out. As you know, the field is evolving\r\n          quickly, and our mutual interest is in moving forward. We’re\r\n          aligned in spirit and substance—and we’re eager to explore\r\n          potential synergy with you.</p>\r\n        <p data-start=\"513\" data-end=\"546\">Looking forward to the next\r\n          step.</p>\r\n        <p data-start=\"548\" data-end=\"567\">Best regards,<br\r\n            data-start=\"561\" data-end=\"564\">\r\n          TC</p>\r\n        <p data-start=\"237\" data-end=\"274\"><strong data-start=\"237\"\r\n            data-end=\"274\"><br>\r\n          </strong></p>\r\n        <p data-start=\"237\" data-end=\"274\"><strong data-start=\"237\"\r\n            data-end=\"274\">Proposed Clause for Section 4(d):</strong></p>\r\n        <p data-start=\"276\" data-end=\"1544\"><strong data-start=\"276\"\r\n            data-end=\"309\">4(d) Independent Development.</strong><br\r\n            data-start=\"309\" data-end=\"312\">\r\n          The parties acknowledge that each may independently develop,\r\n          or receive from third parties, information that is similar to\r\n          the other party’s Confidential Information. Nothing in this\r\n          Agreement shall restrict either party from developing, or\r\n          having developed on its behalf, products, concepts, or\r\n          services that, without violating this Agreement, resemble or\r\n          compete with those contemplated by the other party’s\r\n          Confidential Information. Neither party shall use or derive\r\n          the other’s Confidential Information—including specific\r\n          technical methods, proprietary product architectures, or trade\r\n          secrets—in such development. Any such independent development\r\n          must be based solely on general industry knowledge, publicly\r\n          available information, or data lawfully obtained from third\r\n          parties not bound by confidentiality to the disclosing party.\r\n          Each party agrees to maintain reasonable documentation of the\r\n          independent sources used in any such development. Further, use\r\n          of information retained in the unaided memory of personnel\r\n          shall not constitute a breach, provided it does not result in\r\n          direct reproduction or adaptation of Confidential Information.\r\n          These obligations shall survive for one (1) year following\r\n          termination of this Agreement.</p>\r\n        <hr data-start=\"1546\" data-end=\"1549\">\r\n        <p data-start=\"1551\" data-end=\"1986\"><strong data-start=\"1551\"\r\n            data-end=\"1581\">Explanation for Inclusion:</strong><br\r\n            data-start=\"1581\" data-end=\"1584\">\r\n          This clause is intended to preserve both parties’ ability to\r\n          continue innovating and building independently, while\r\n          affirming a strong commitment to protecting each other’s\r\n          proprietary IP. It clearly prohibits the use or adaptation of\r\n          the other party’s Confidential Information, and requires\r\n          reliance on public or lawfully obtained sources for any\r\n          development activity that may resemble disclosed ideas.</p>\r\n        <p data-start=\"1988\" data-end=\"2136\">We believe this provides\r\n          clarity, transparency, and a balanced structure for parallel\r\n          innovation—particularly in a fast-moving, competitive space.</p>\r\n        <p data-start=\"2138\" data-end=\"2343\">We are aligned on the need\r\n          for mutual respect, speed, and shared diligence, and we\r\n          believe this clause enables us to swiftly finalize the NDA and\r\n          move forward into more substantive partnership discussions.</p>\r\n        <div class=\"moz-cite-prefix\"><br>\r\n        </div>\r\n        <div class=\"moz-cite-prefix\"><br>\r\n        </div>\r\n        <div class=\"moz-cite-prefix\"><br>\r\n        </div>\r\n        <div class=\"moz-cite-prefix\">On 6/17/2025 7:01 PM, Rick wrote:<br>\r\n        </div>\r\n        <blockquote type=\"cite\"\r\n          cite=\"mid:etPan.685201f9.5360bb4d.9693@mavrix.one\">\r\n          <meta http-equiv=\"content-type\"\r\n            content=\"text/html; charset=UTF-8\">\r\n          <style>body{font-family:Helvetica,Arial;font-size:13px}</style>\r\n          <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Gentlemen, <br>\r\n          </div>\r\n          <br>\r\n          <div>Thank you for your feedback on the Non-Disclosure\r\n            Agreement as we work to facilitate partnerships and sales\r\n            channels for Deltawerx. </div>\r\n          <div>We recognize your need to protect your Confidential\r\n            Information and prevent unintentional use, particularly\r\n            given the competitive nature of our industry. </div>\r\n          <div>To balance these interests with our need to continue\r\n            independent innovation, we propose the following Independent\r\n            Development clause:</div>\r\n          <div><br>\r\n          </div>\r\n          <blockquote\r\n            style=\"margin: 0 0 0 40px; border: none; padding: 0px;\">\r\n            <div>4 (d) Independent Development. </div>\r\n            <div>The Disclosing Party acknowledges that the Receiving\r\n              Party, while facilitating partnerships or sales channels\r\n              for the Disclosing Party, may currently or in the future\r\n              develop information internally or receive information from\r\n              third parties that is similar to the Disclosing Party’s\r\n              Confidential Information. Nothing in this Agreement shall\r\n              be construed as prohibiting the Receiving Party from\r\n              developing, or having developed for it, products,\r\n              concepts, or services that, without violating this\r\n              Agreement, resemble or compete with those contemplated by\r\n              the Disclosing Party’s Confidential Information. The\r\n              Receiving Party agrees not to use or derive any of the\r\n              Disclosing Party’s Confidential Information, including\r\n              specific technical methods, proprietary product\r\n              architectures, or trade secrets disclosed under this\r\n              Agreement, in such development. Any independent\r\n              development by the Receiving Party shall rely solely on\r\n              general industry knowledge, publicly available\r\n              information, or information lawfully obtained from third\r\n              parties not bound by confidentiality obligations to the\r\n              Disclosing Party. To ensure transparency, the Receiving\r\n              Party shall maintain reasonable documentation of the\r\n              independent sources used in such development. The\r\n              Receiving Party may use information retained in the\r\n              unaided memory of its personnel, provided it does not\r\n              directly reproduce or adapt the Disclosing Party’s\r\n              Confidential Information. These obligations shall survive\r\n              for one (1) year following the termination of this\r\n              Agreement. </div>\r\n          </blockquote>\r\n          <div><br>\r\n          </div>\r\n          <div>\r\n            <div>This revision:</div>\r\n            <div>- Clarifies that we may develop similar products using\r\n              general knowledge or public information, supporting our\r\n              mutual goal of innovation.<br>\r\n            </div>\r\n            <div>- Commits us to avoiding use of your Confidential\r\n              Information and maintaining documentation to demonstrate\r\n              independent development, addressing your concerns about\r\n              potential misuse.</div>\r\n            <div>- Limits the post-termination obligation to one year,\r\n              aligning with industry norms and the fast-moving nature of\r\n              our sector.</div>\r\n            <div>- Narrows the scope to specific technical methods and\r\n              trade secrets, reducing ambiguity while allowing both\r\n              parties to operate effectively.</div>\r\n            <div><br>\r\n            </div>\r\n            <div>Please review this proposed language and share your\r\n              feedback or any adjustments you’d like to discuss. </div>\r\n            <div>We’re eager to finalize an agreement that supports our\r\n              shared goals. </div>\r\n            <div><br>\r\n            </div>\r\n            <div>If this updated section is satisfactory, I can send an\r\n              updated NDA incorporating this clause for your final\r\n              review.</div>\r\n          </div>\r\n          <div><br>\r\n          </div>\r\n          Thanks again,<br>\r\n          Rick\r\n          <div>\r\n            <div><br>\r\n            </div>\r\n            <div>Rick Mislan, PhD</div>\r\n            <div>MAVRIX 1, LLC</div>\r\n            <div><a class=\"moz-txt-link-freetext\"\r\n                href=\"https://mavrix.one\" moz-do-not-send=\"true\">https://mavrix.one</a></div>\r\n            <div>  <br>\r\n              <br>\r\n              <p class=\"airmail_on\">On June 11, 2025 at 4:15:19 PM, Dr\r\n                Tom Chi (<a href=\"mailto:tom@deltawerx.net\"\r\n                  moz-do-not-send=\"true\" class=\"moz-txt-link-freetext\">tom@deltawerx.net</a>)\r\n                wrote:</p>\r\n              <blockquote type=\"cite\" class=\"clean_bq\"><span>\r\n                  <div>\r\n                    <div>\r\n                      <p>Rick, enjoyed. <br>\r\n                      </p>\r\n                      <p>For future stakeholders on either side we’ve\r\n                        made one light clarification in Section 4(d)\r\n                        regarding residual memory and collaborative\r\n                        tech. It’s consistent with the rest of the NDA\r\n                        and helps ensure alignment on expectations\r\n                        around proprietary development. We see this as\r\n                        helpful for both parties.</p>\r\n                      <p>Otherwise we\'re good to go. <br>\r\n                      </p>\r\n                      <p>V/R</p>\r\n                      <p>tc</p>\r\n                      <p><br>\r\n                      </p>\r\n                      <div class=\"moz-cite-prefix\">On 6/11/2025 1:50 PM,\r\n                        Rick wrote:<br>\r\n                      </div>\r\n                      <blockquote type=\"cite\"\r\ncite=\"mid:etPan.6849d015.410fb592.13509@mavrix.one\">\r\n                        <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Gentlemen,</div>\r\n                        <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Thanks\r\n                          for your time and discussion today!<br>\r\n                        </div>\r\n                        <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\"><br>\r\n                        </div>\r\n                        <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Attached\r\n                          is the Mavrix NDA.</div>\r\n                        <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Please\r\n                          fill in your email and sign each page and the\r\n                          final page.</div>\r\n                        <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">I\r\n                          look forward to following up after executing\r\n                          the NDA.</div>\r\n                        <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\"><br>\r\n                        </div>\r\n                        <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Thanks\r\n                          much,</div>\r\n                        <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Rick</div>\r\n                        <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\"><br>\r\n                        </div>\r\n                        <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Rick\r\n                          Mislan, PhD</div>\r\n                        <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">MAVRIX\r\n                          1, LLC</div>\r\n                        <div id=\"bloop_customfont\"\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\"><a\r\n                            class=\"moz-txt-link-freetext\"\r\n                            href=\"https://mavrix.one\"\r\n                            moz-do-not-send=\"true\">https://mavrix.one</a></div>\r\n                      </blockquote>\r\n                    </div>\r\n                  </div>\r\n                </span></blockquote>\r\n            </div>\r\n          </div>\r\n        </blockquote>\r\n      </div>\r\n    </div>\r\n  </body>\r\n</html>','Hi Rick, re-sending our response, please see below.\r\n\r\nModest final change, should serve the purpose.\r\n\r\nWe\'re ready to move forward.\r\n\r\nv/r\r\n\r\ntc\r\n\r\n\r\n\r\n-------- Forwarded Message --------\r\nSubject: 	Updated Independent Development Clause for Mutual Clarity\r\nDate: 	Tue, 17 Jun 2025 21:13:09 -0500\r\nFrom: 	Dr Tom Chi <tom@deltawerx.net>\r\nTo: 	Rick <rick@mavrix.one>, Major General (Ret) Frank Muth \r\n<president@deltawerx.net>\r\n\r\n\r\n\r\n*Thanks, Rick.* Sometimes the delight is in the details, and we \r\nappreciate the thoughtful clarity you’re positing.\r\n\r\nPerhaps just one final tweak as we close this out. As you know, the \r\nfield is evolving quickly, and our mutual interest is in moving forward. \r\nWe’re aligned in spirit and substance—and we’re eager to explore \r\npotential synergy with you.\r\n\r\nLooking forward to the next step.\r\n\r\nBest regards,\r\nTC\r\n\r\n*\r\n*\r\n\r\n*Proposed Clause for Section 4(d):*\r\n\r\n*4(d) Independent Development.*\r\nThe parties acknowledge that each may independently develop, or receive \r\nfrom third parties, information that is similar to the other party’s \r\nConfidential Information. Nothing in this Agreement shall restrict \r\neither party from developing, or having developed on its behalf, \r\nproducts, concepts, or services that, without violating this Agreement, \r\nresemble or compete with those contemplated by the other party’s \r\nConfidential Information. Neither party shall use or derive the other’s \r\nConfidential Information—including specific technical methods, \r\nproprietary product architectures, or trade secrets—in such development. \r\nAny such independent development must be based solely on general \r\nindustry knowledge, publicly available information, or data lawfully \r\nobtained from third parties not bound by confidentiality to the \r\ndisclosing party. Each party agrees to maintain reasonable documentation \r\nof the independent sources used in any such development. Further, use of \r\ninformation retained in the unaided memory of personnel shall not \r\nconstitute a breach, provided it does not result in direct reproduction \r\nor adaptation of Confidential Information. These obligations shall \r\nsurvive for one (1) year following termination of this Agreement.\r\n\r\n------------------------------------------------------------------------\r\n\r\n*Explanation for Inclusion:*\r\nThis clause is intended to preserve both parties’ ability to continue \r\ninnovating and building independently, while affirming a strong \r\ncommitment to protecting each other’s proprietary IP. It clearly \r\nprohibits the use or adaptation of the other party’s Confidential \r\nInformation, and requires reliance on public or lawfully obtained \r\nsources for any development activity that may resemble disclosed ideas.\r\n\r\nWe believe this provides clarity, transparency, and a balanced structure \r\nfor parallel innovation—particularly in a fast-moving, competitive space.\r\n\r\nWe are aligned on the need for mutual respect, speed, and shared \r\ndiligence, and we believe this clause enables us to swiftly finalize the \r\nNDA and move forward into more substantive partnership discussions.\r\n\r\n\r\n\r\n\r\nOn 6/17/2025 7:01 PM, Rick wrote:\r\n> Gentlemen,\r\n>\r\n> Thank you for your feedback on the Non-Disclosure Agreement as we work \r\n> to facilitate partnerships and sales channels for Deltawerx.\r\n> We recognize your need to protect your Confidential Information and \r\n> prevent unintentional use, particularly given the competitive nature \r\n> of our industry.\r\n> To balance these interests with our need to continue independent \r\n> innovation, we propose the following Independent Development clause:\r\n>\r\n>     4 (d) Independent Development.\r\n>     The Disclosing Party acknowledges that the Receiving Party, while\r\n>     facilitating partnerships or sales channels for the Disclosing\r\n>     Party, may currently or in the future develop information\r\n>     internally or receive information from third parties that is\r\n>     similar to the Disclosing Party’s Confidential Information.\r\n>     Nothing in this Agreement shall be construed as prohibiting the\r\n>     Receiving Party from developing, or having developed for it,\r\n>     products, concepts, or services that, without violating this\r\n>     Agreement, resemble or compete with those contemplated by the\r\n>     Disclosing Party’s Confidential Information. The Receiving Party\r\n>     agrees not to use or derive any of the Disclosing Party’s\r\n>     Confidential Information, including specific technical methods,\r\n>     proprietary product architectures, or trade secrets disclosed\r\n>     under this Agreement, in such development. Any independent\r\n>     development by the Receiving Party shall rely solely on general\r\n>     industry knowledge, publicly available information, or information\r\n>     lawfully obtained from third parties not bound by confidentiality\r\n>     obligations to the Disclosing Party. To ensure transparency, the\r\n>     Receiving Party shall maintain reasonable documentation of the\r\n>     independent sources used in such development. The Receiving Party\r\n>     may use information retained in the unaided memory of its\r\n>     personnel, provided it does not directly reproduce or adapt the\r\n>     Disclosing Party’s Confidential Information. These obligations\r\n>     shall survive for one (1) year following the termination of this\r\n>     Agreement.\r\n>\r\n>\r\n> This revision:\r\n> - Clarifies that we may develop similar products using general \r\n> knowledge or public information, supporting our mutual goal of innovation.\r\n> - Commits us to avoiding use of your Confidential Information and \r\n> maintaining documentation to demonstrate independent development, \r\n> addressing your concerns about potential misuse.\r\n> - Limits the post-termination obligation to one year, aligning with \r\n> industry norms and the fast-moving nature of our sector.\r\n> - Narrows the scope to specific technical methods and trade secrets, \r\n> reducing ambiguity while allowing both parties to operate effectively.\r\n>\r\n> Please review this proposed language and share your feedback or any \r\n> adjustments you’d like to discuss.\r\n> We’re eager to finalize an agreement that supports our shared goals.\r\n>\r\n> If this updated section is satisfactory, I can send an updated NDA \r\n> incorporating this clause for your final review.\r\n>\r\n> Thanks again,\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> MAVRIX 1, LLC\r\n> https://mavrix.one\r\n>\r\n>\r\n> On June 11, 2025 at 4:15:19 PM, Dr Tom Chi (tom@deltawerx.net) wrote:\r\n>\r\n>> Rick, enjoyed.\r\n>>\r\n>> For future stakeholders on either side we’ve made one light \r\n>> clarification in Section 4(d) regarding residual memory and \r\n>> collaborative tech. It’s consistent with the rest of the NDA and \r\n>> helps ensure alignment on expectations around proprietary \r\n>> development. We see this as helpful for both parties.\r\n>>\r\n>> Otherwise we\'re good to go.\r\n>>\r\n>> V/R\r\n>>\r\n>> tc\r\n>>\r\n>>\r\n>> On 6/11/2025 1:50 PM, Rick wrote:\r\n>>> Gentlemen,\r\n>>> Thanks for your time and discussion today!\r\n>>>\r\n>>> Attached is the Mavrix NDA.\r\n>>> Please fill in your email and sign each page and the final page.\r\n>>> I look forward to following up after executing the NDA.\r\n>>>\r\n>>> Thanks much,\r\n>>> Rick\r\n>>>\r\n>>> Rick Mislan, PhD\r\n>>> MAVRIX 1, LLC\r\n>>> https://mavrix.one',0,0,0,0,0,0,'2025-06-19 01:49:56','2025-12-09 19:12:51','2025-12-09 19:12:51','2025-12-09 19:12:51',NULL,NULL,NULL),
(383,4,' <DM6PR07MB5850DF399F7732E80B6EA27DAD7DA@DM6PR07MB5850.namprd07.prod.outlook.com>',NULL,NULL,'Rick Touchpoint','rich@achramlabs.com','Richard Van Voorst','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n</head>\r\n<body>\r\n<br>\r\n<div style=\"max-width: 600px; color: #242424; font-family:\'Segoe UI\',\'Helvetica Neue\',Helvetica,Arial,sans-serif\" class=\"me-email-text\">\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n<div style=\"margin-bottom: 12px;\"><span class=\"me-email-text\" style=\"font-size: 24px;font-weight: 700; margin-right:12px;\">Microsoft Teams</span>\r\n<a id=\"meet_invite_block.action.help\" class=\"me-email-link\" style=\"font-size:14px; text-decoration:underline; color: #5B5FC7;\" href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\">\r\nNeed help?</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><a id=\"meet_invite_block.action.join_link\" title=\"Meeting join link\" class=\"me-email-headline\" style=\"font-size: 20px; font-weight:600; text-decoration: underline; color: #5B5FC7;\" href=\"https://teams.microsoft.com/l/meetup-join/19%3ameeting_NWZiMDc0NmYtMDQyZi00OWRjLWI3ODItMWY5NjYwZDhhMTNl%40thread.v2/0?context=%7b%22Tid%22%3a%220930a80e-2157-43f6-aeeb-8cd66ff956b1%22%2c%22Oid%22%3a%22ed6fbfe0-0b33-4893-8efe-ef687ac31ad7%22%7d\" target=\"_blank\" rel=\"noreferrer noopener\">Join\r\n the meeting now</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Meeting ID:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">272 301 516 892 5</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Passcode:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">Cu788is6</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px; max-width: 532px;\">\r\n<hr style=\"border: 0; background: #D1D1D1; height: 1px;\">\r\n</div>\r\n<div><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">For organizers:\r\n</span><a id=\"meet_invite_block.action.organizer_meet_options\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7;\" target=\"_blank\" href=\"https://teams.microsoft.com/meetingOptions/?organizerId=ed6fbfe0-0b33-4893-8efe-ef687ac31ad7&amp;tenantId=0930a80e-2157-43f6-aeeb-8cd66ff956b1&amp;threadId=19_meeting_NWZiMDc0NmYtMDQyZi00OWRjLWI3ODItMWY5NjYwZDhhMTNl@thread.v2&amp;messageId=0&amp;language=en-US\" rel=\"noreferrer noopener\">Meeting\r\n options</a> </div>\r\n<div style=\"margin-top: 24px; margin-bottom: 6px;\"></div>\r\n<div style=\"margin-bottom: 24px;\"></div>\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n</div>\r\n</body>\r\n</html>','\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://teams.microsoft.com/l/meetup-join/19%3ameeting_NWZiMDc0NmYtMDQyZi00OWRjLWI3ODItMWY5NjYwZDhhMTNl%40thread.v2/0?context=%7b%22Tid%22%3a%220930a80e-2157-43f6-aeeb-8cd66ff956b1%22%2c%22Oid%22%3a%22ed6fbfe0-0b33-4893-8efe-ef687ac31ad7%22%7d>\r\nMeeting ID: 272 301 516 892 5\r\nPasscode: Cu788is6\r\n________________________________\r\nFor organizers: Meeting options<https://teams.microsoft.com/meetingOptions/?organizerId=ed6fbfe0-0b33-4893-8efe-ef687ac31ad7&tenantId=0930a80e-2157-43f6-aeeb-8cd66ff956b1&threadId=19_meeting_NWZiMDc0NmYtMDQyZi00OWRjLWI3ODItMWY5NjYwZDhhMTNl@thread.v2&messageId=0&language=en-US>\r\n________________________________________________________________________________',0,0,0,0,0,0,'2025-06-19 17:40:06','2025-12-09 19:12:52','2025-12-09 19:12:52','2025-12-09 19:12:52',NULL,NULL,NULL),
(384,4,' <DM6PR07MB585038AB876EFB397B1B889AAD7CA@DM6PR07MB5850.namprd07.prod.outlook.com>',NULL,NULL,'Rick/Rich','rich@achramlabs.com','Richard Van Voorst','<!DOCTYPE html>\r\n<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n</head>\r\n<body>\r\n<br>\r\n<div style=\"max-width: 600px; color: #242424; font-family:\'Segoe UI\',\'Helvetica Neue\',Helvetica,Arial,sans-serif\" class=\"me-email-text\">\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n<div style=\"margin-bottom: 12px;\"><span class=\"me-email-text\" style=\"font-size: 24px;font-weight: 700; margin-right:12px;\">Microsoft Teams</span>\r\n<a id=\"meet_invite_block.action.help\" class=\"me-email-link\" style=\"font-size:14px; text-decoration:underline; color: #5B5FC7;\" href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\">\r\nNeed help?</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><a id=\"meet_invite_block.action.join_link\" title=\"Meeting join link\" class=\"me-email-headline\" style=\"font-size: 20px; font-weight:600; text-decoration: underline; color: #5B5FC7;\" href=\"https://teams.microsoft.com/l/meetup-join/19%3ameeting_YzZhYmNlNmUtOTgzMy00OTk2LThiODQtZDA1NzE2ZGJjZTVj%40thread.v2/0?context=%7b%22Tid%22%3a%220930a80e-2157-43f6-aeeb-8cd66ff956b1%22%2c%22Oid%22%3a%22ed6fbfe0-0b33-4893-8efe-ef687ac31ad7%22%7d\" target=\"_blank\" rel=\"noreferrer noopener\">Join\r\n the meeting now</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Meeting ID:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">237 942 396 203 5</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Passcode:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">Yv6mS6fV</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px; max-width: 532px;\">\r\n<hr style=\"border: 0; background: #D1D1D1; height: 1px;\">\r\n</div>\r\n<div><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">For organizers:\r\n</span><a id=\"meet_invite_block.action.organizer_meet_options\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7;\" target=\"_blank\" href=\"https://teams.microsoft.com/meetingOptions/?organizerId=ed6fbfe0-0b33-4893-8efe-ef687ac31ad7&amp;tenantId=0930a80e-2157-43f6-aeeb-8cd66ff956b1&amp;threadId=19_meeting_YzZhYmNlNmUtOTgzMy00OTk2LThiODQtZDA1NzE2ZGJjZTVj@thread.v2&amp;messageId=0&amp;language=en-US\" rel=\"noreferrer noopener\">Meeting\r\n options</a> </div>\r\n<div style=\"margin-top: 24px; margin-bottom: 6px;\"></div>\r\n<div style=\"margin-bottom: 24px;\"></div>\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n</div>\r\n</body>\r\n</html>','\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://teams.microsoft.com/l/meetup-join/19%3ameeting_YzZhYmNlNmUtOTgzMy00OTk2LThiODQtZDA1NzE2ZGJjZTVj%40thread.v2/0?context=%7b%22Tid%22%3a%220930a80e-2157-43f6-aeeb-8cd66ff956b1%22%2c%22Oid%22%3a%22ed6fbfe0-0b33-4893-8efe-ef687ac31ad7%22%7d>\r\nMeeting ID: 237 942 396 203 5\r\nPasscode: Yv6mS6fV\r\n________________________________\r\nFor organizers: Meeting options<https://teams.microsoft.com/meetingOptions/?organizerId=ed6fbfe0-0b33-4893-8efe-ef687ac31ad7&tenantId=0930a80e-2157-43f6-aeeb-8cd66ff956b1&threadId=19_meeting_YzZhYmNlNmUtOTgzMy00OTk2LThiODQtZDA1NzE2ZGJjZTVj@thread.v2&messageId=0&language=en-US>\r\n________________________________________________________________________________',0,0,0,0,0,0,'2025-06-20 13:46:38','2025-12-09 19:12:52','2025-12-09 19:12:52','2025-12-09 19:12:52',NULL,NULL,NULL),
(385,4,' <BL3PR20MB4924489872FC332142FFD1A8AF7CA@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: KDEDirect','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nKDE Direct is a company that we have had our eye on since day one, and who very much represents the old paradigm of UAV motor production in the states. As you can tell from their videos, they\'re very much a low volume operation which currently doesn\'t even\r\n offer any motors in the 1000 - 2000 KV range for direct sale (a large portion of the motors listed on their site are not actually available for purchase, they are just listed as references from past listings suggesting they have highly reduced their scope\r\n of focus), which essentially limits their market exposure to purely heavy lift use cases, and the majority of demand over the next 10 years will be driven by light lift/attritable use cases in that higher range. They also have a very low degree of vertical\r\n integration, I\'ve spoken with a former employee of theirs and an overseas stator manufacturer that is a supplier to them, and they rely heavily on foreign outsourcing for fabrication of all their subcomponents. You will also notice that even with the limited\r\n range of thrusts offered through their motor line, they are not competitive at all with the Chinese supply side on price, with an average premium of 3-4x, and this is primarily due to the low volume and low vertical integration that they operate with. They\r\n seem to be a company that is basically in stagnation at best, and terminal decline at worst, and I think this is because they spread themselves too thin trying to provide additional UAV components like ESCs and Propellors, instead of building out their motor\r\n production capacity in a manner that was conducive to scaling. They have these sections on their site which lay claim to robotics and manufacturing related use cases, but as we\'ve already seen they only offer product for a narrow range of UAV use cases. They\'ve\r\n basically just been slowly declining over the last ten years and don\'t seem to have the ambition, leadership, or vision to represent the new paradigm of motor production, and are too over built in this outsourced/low volume operating model to adapt to it even\r\n if they wanted to.</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, June 20, 2025 4:54 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> KDEDirect</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Talk to me about these guys and their products:</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><a href=\"https://www.youtube.com/watch?v=e1iUb-3vwwQ\">https://www.youtube.com/watch?v=e1iUb-3vwwQ</a><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','KDE Direct is a company that we have had our eye on since day one, and who very much represents the old paradigm of UAV motor production in the states. As you can tell from their videos, they\'re very much a low volume operation which currently doesn\'t even offer any motors in the 1000 - 2000 KV range for direct sale (a large portion of the motors listed on their site are not actually available for purchase, they are just listed as references from past listings suggesting they have highly reduced their scope of focus), which essentially limits their market exposure to purely heavy lift use cases, and the majority of demand over the next 10 years will be driven by light lift/attritable use cases in that higher range. They also have a very low degree of vertical integration, I\'ve spoken with a former employee of theirs and an overseas stator manufacturer that is a supplier to them, and they rely heavily on foreign outsourcing for fabrication of all their subcomponents. You will also notice that even with the limited range of thrusts offered through their motor line, they are not competitive at all with the Chinese supply side on price, with an average premium of 3-4x, and this is primarily due to the low volume and low vertical integration that they operate with. They seem to be a company that is basically in stagnation at best, and terminal decline at worst, and I think this is because they spread themselves too thin trying to provide additional UAV components like ESCs and Propellors, instead of building out their motor production capacity in a manner that was conducive to scaling. They have these sections on their site which lay claim to robotics and manufacturing related use cases, but as we\'ve already seen they only offer product for a narrow range of UAV use cases. They\'ve basically just been slowly declining over the last ten years and don\'t seem to have the ambition, leadership, or vision to represent the new paradigm of motor production, and are too over built in this outsourced/low volume operating model to adapt to it even if they wanted to.\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, June 20, 2025 4:54 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: KDEDirect\r\n\r\nTalk to me about these guys and their products:\r\nhttps://www.youtube.com/watch?v=e1iUb-3vwwQ\r\n\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]',0,0,0,0,0,0,'2025-06-20 14:02:43','2025-12-09 19:12:53','2025-12-09 19:12:53','2025-12-09 19:12:53',NULL,NULL,NULL),
(386,4,' <BL3PR20MB4924329119137C6E6B760866AF7CA@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: KDEDirect','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n</head>\r\n<body>\r\n<div>\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" dir=\"ltr\">\r\nI would say that their ESCs are definitely in the hobbyist/consumer range of builds, and don’t exactly offer any unique performance options compared to other cheaper off the shelf alternatives. The three biggest factors that go into the value/quality of an\r\n ESC are firmware architecture, current handling, and precision control, and then ideally optimizing for a low amount of vendor lock-in compatibility wise (for instance KDEs ESCs are designed to be used specifically with their motors). I would be interested\r\n in learning about which ESC producer(s) you\'re in talks with so I could provide feedback on them as well if you\'d like.&nbsp;</div>\r\n</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"ms-outlook-mobile-signature\">\r\n<div></div>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, June 20, 2025 7:21:45 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: KDEDirect</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"\">Ok. Thanks for this. Very helpful. I also feel they are too high in price or Gucci at best. Tell me about the ESC’s. Obviously we will be building our own thru another US company. Anything special about theirs or is that not your expertise?\r\n<br>\r\nThanks again! <br>\r\nRick</div>\r\n<br>\r\n<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height:11px\"></div>\r\n</div>\r\n<p class=\"x_gmail_quote\" style=\"color:#000\">On June 20, 2025 at 10:02:43 AM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_gmail_quote\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nKDE Direct is a company that we have had our eye on since day one, and who very much represents the old paradigm of UAV motor production in the states. As you can tell from their videos, they\'re very much a low volume operation which currently doesn\'t even\r\n offer any motors in the 1000 - 2000 KV range for direct sale (a large portion of the motors listed on their site are not actually available for purchase, they are just listed as references from past listings suggesting they have highly reduced their scope\r\n of focus), which essentially limits their market exposure to purely heavy lift use cases, and the majority of demand over the next 10 years will be driven by light lift/attritable use cases in that higher range. They also have a very low degree of vertical\r\n integration, I\'ve spoken with a former employee of theirs and an overseas stator manufacturer that is a supplier to them, and they rely heavily on foreign outsourcing for fabrication of all their subcomponents. You will also notice that even with the limited\r\n range of thrusts offered through their motor line, they are not competitive at all with the Chinese supply side on price, with an average premium of 3-4x, and this is primarily due to the low volume and low vertical integration that they operate with. They\r\n seem to be a company that is basically in stagnation at best, and terminal decline at worst, and I think this is because they spread themselves too thin trying to provide additional UAV components like ESCs and Propellors, instead of building out their motor\r\n production capacity in a manner that was conducive to scaling. They have these sections on their site which lay claim to robotics and manufacturing related use cases, but as we\'ve already seen they only offer product for a narrow range of UAV use cases. They\'ve\r\n basically just been slowly declining over the last ten years and don\'t seem to have the ambition, leadership, or vision to represent the new paradigm of motor production, and are too over built in this outsourced/low volume operating model to adapt to it even\r\n if they wanted to.</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, June 20, 2025 4:54 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> KDEDirect</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Talk to me about these guys and their products:</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><a href=\"https://www.youtube.com/watch?v=e1iUb-3vwwQ\">https://www.youtube.com/watch?v=e1iUb-3vwwQ</a><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height:11px\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','I would say that their ESCs are definitely in the hobbyist/consumer range of builds, and don’t exactly offer any unique performance options compared to other cheaper off the shelf alternatives. The three biggest factors that go into the value/quality of an ESC are firmware architecture, current handling, and precision control, and then ideally optimizing for a low amount of vendor lock-in compatibility wise (for instance KDEs ESCs are designed to be used specifically with their motors). I would be interested in learning about which ESC producer(s) you\'re in talks with so I could provide feedback on them as well if you\'d like.\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, June 20, 2025 7:21:45 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: KDEDirect\r\n\r\nOk. Thanks for this. Very helpful. I also feel they are too high in price or Gucci at best. Tell me about the ESC’s. Obviously we will be building our own thru another US company. Anything special about theirs or is that not your expertise?\r\nThanks again!\r\nRick\r\n\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\nOn June 20, 2025 at 10:02:43 AM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nKDE Direct is a company that we have had our eye on since day one, and who very much represents the old paradigm of UAV motor production in the states. As you can tell from their videos, they\'re very much a low volume operation which currently doesn\'t even offer any motors in the 1000 - 2000 KV range for direct sale (a large portion of the motors listed on their site are not actually available for purchase, they are just listed as references from past listings suggesting they have highly reduced their scope of focus), which essentially limits their market exposure to purely heavy lift use cases, and the majority of demand over the next 10 years will be driven by light lift/attritable use cases in that higher range. They also have a very low degree of vertical integration, I\'ve spoken with a former employee of theirs and an overseas stator manufacturer that is a supplier to them, and they rely heavily on foreign outsourcing for fabrication of all their subcomponents. You will also notice that even with the limited range of thrusts offered through their motor line, they are not competitive at all with the Chinese supply side on price, with an average premium of 3-4x, and this is primarily due to the low volume and low vertical integration that they operate with. They seem to be a company that is basically in stagnation at best, and terminal decline at worst, and I think this is because they spread themselves too thin trying to provide additional UAV components like ESCs and Propellors, instead of building out their motor production capacity in a manner that was conducive to scaling. They have these sections on their site which lay claim to robotics and manufacturing related use cases, but as we\'ve already seen they only offer product for a narrow range of UAV use cases. They\'ve basically just been slowly declining over the last ten years and don\'t seem to have the ambition, leadership, or vision to represent the new paradigm of motor production, and are too over built in this outsourced/low volume operating model to adapt to it even if they wanted to.\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, June 20, 2025 4:54 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: KDEDirect\r\n\r\nTalk to me about these guys and their products:\r\nhttps://www.youtube.com/watch?v=e1iUb-3vwwQ\r\n\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n',0,0,0,0,0,0,'2025-06-20 15:16:07','2025-12-09 19:12:53','2025-12-09 19:12:53','2025-12-09 19:12:53',NULL,NULL,NULL),
(387,4,' <BL3PR20MB49241B8A5B8C7F44E3C56A7BAF7CA@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: KDEDirect','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n</head>\r\n<body>\r\n<div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nI should also add that our Phase Charlie line extensions, which will enable the in-house fabrication of motor control boards, will also be able to support the production of ESCs, so that is an option that we intend to explore if it\'s not already sufficiently\r\n provided for by an umbrella company.</div>\r\n</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"ms-outlook-mobile-signature\">\r\n<div></div>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Sent:</b> Friday, June 20, 2025 8:16:07 AM<br>\r\n<b>To:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: KDEDirect</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\nI would say that their ESCs are definitely in the hobbyist/consumer range of builds, and don’t exactly offer any unique performance options compared to other cheaper off the shelf alternatives. The three biggest factors that go into the value/quality of an\r\n ESC are firmware architecture, current handling, and precision control, and then ideally optimizing for a low amount of vendor lock-in compatibility wise (for instance KDEs ESCs are designed to be used specifically with their motors). I would be interested\r\n in learning about which ESC producer(s) you\'re in talks with so I could provide feedback on them as well if you\'d like.&nbsp;</div>\r\n</div>\r\n<div id=\"x_ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"x_ms-outlook-mobile-signature\">\r\n<div></div>\r\n</div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, June 20, 2025 7:21:45 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: KDEDirect</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"\">Ok. Thanks for this. Very helpful. I also feel they are too high in price or Gucci at best. Tell me about the ESC’s. Obviously we will be building our own thru another US company. Anything special about theirs or is that not your expertise?\r\n<br>\r\nThanks again! <br>\r\nRick</div>\r\n<br>\r\n<br>\r\n<div class=\"x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height:11px\"></div>\r\n</div>\r\n<p class=\"x_x_gmail_quote\" style=\"color:#000\">On June 20, 2025 at 10:02:43 AM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_gmail_quote\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nKDE Direct is a company that we have had our eye on since day one, and who very much represents the old paradigm of UAV motor production in the states. As you can tell from their videos, they\'re very much a low volume operation which currently doesn\'t even\r\n offer any motors in the 1000 - 2000 KV range for direct sale (a large portion of the motors listed on their site are not actually available for purchase, they are just listed as references from past listings suggesting they have highly reduced their scope\r\n of focus), which essentially limits their market exposure to purely heavy lift use cases, and the majority of demand over the next 10 years will be driven by light lift/attritable use cases in that higher range. They also have a very low degree of vertical\r\n integration, I\'ve spoken with a former employee of theirs and an overseas stator manufacturer that is a supplier to them, and they rely heavily on foreign outsourcing for fabrication of all their subcomponents. You will also notice that even with the limited\r\n range of thrusts offered through their motor line, they are not competitive at all with the Chinese supply side on price, with an average premium of 3-4x, and this is primarily due to the low volume and low vertical integration that they operate with. They\r\n seem to be a company that is basically in stagnation at best, and terminal decline at worst, and I think this is because they spread themselves too thin trying to provide additional UAV components like ESCs and Propellors, instead of building out their motor\r\n production capacity in a manner that was conducive to scaling. They have these sections on their site which lay claim to robotics and manufacturing related use cases, but as we\'ve already seen they only offer product for a narrow range of UAV use cases. They\'ve\r\n basically just been slowly declining over the last ten years and don\'t seem to have the ambition, leadership, or vision to represent the new paradigm of motor production, and are too over built in this outsourced/low volume operating model to adapt to it even\r\n if they wanted to.</div>\r\n<div id=\"x_x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, June 20, 2025 4:54 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> KDEDirect</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Talk to me about these guys and their products:</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><a href=\"https://www.youtube.com/watch?v=e1iUb-3vwwQ\">https://www.youtube.com/watch?v=e1iUb-3vwwQ</a><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height:11px\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','I should also add that our Phase Charlie line extensions, which will enable the in-house fabrication of motor control boards, will also be able to support the production of ESCs, so that is an option that we intend to explore if it\'s not already sufficiently provided for by an umbrella company.\r\n\r\n________________________________\r\nFrom: Jason Blick <jason@corvexsystems.com>\r\nSent: Friday, June 20, 2025 8:16:07 AM\r\nTo: Rick <rick@mavrix.one>\r\nSubject: Re: KDEDirect\r\n\r\nI would say that their ESCs are definitely in the hobbyist/consumer range of builds, and don’t exactly offer any unique performance options compared to other cheaper off the shelf alternatives. The three biggest factors that go into the value/quality of an ESC are firmware architecture, current handling, and precision control, and then ideally optimizing for a low amount of vendor lock-in compatibility wise (for instance KDEs ESCs are designed to be used specifically with their motors). I would be interested in learning about which ESC producer(s) you\'re in talks with so I could provide feedback on them as well if you\'d like.\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, June 20, 2025 7:21:45 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: KDEDirect\r\n\r\nOk. Thanks for this. Very helpful. I also feel they are too high in price or Gucci at best. Tell me about the ESC’s. Obviously we will be building our own thru another US company. Anything special about theirs or is that not your expertise?\r\nThanks again!\r\nRick\r\n\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\nOn June 20, 2025 at 10:02:43 AM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nKDE Direct is a company that we have had our eye on since day one, and who very much represents the old paradigm of UAV motor production in the states. As you can tell from their videos, they\'re very much a low volume operation which currently doesn\'t even offer any motors in the 1000 - 2000 KV range for direct sale (a large portion of the motors listed on their site are not actually available for purchase, they are just listed as references from past listings suggesting they have highly reduced their scope of focus), which essentially limits their market exposure to purely heavy lift use cases, and the majority of demand over the next 10 years will be driven by light lift/attritable use cases in that higher range. They also have a very low degree of vertical integration, I\'ve spoken with a former employee of theirs and an overseas stator manufacturer that is a supplier to them, and they rely heavily on foreign outsourcing for fabrication of all their subcomponents. You will also notice that even with the limited range of thrusts offered through their motor line, they are not competitive at all with the Chinese supply side on price, with an average premium of 3-4x, and this is primarily due to the low volume and low vertical integration that they operate with. They seem to be a company that is basically in stagnation at best, and terminal decline at worst, and I think this is because they spread themselves too thin trying to provide additional UAV components like ESCs and Propellors, instead of building out their motor production capacity in a manner that was conducive to scaling. They have these sections on their site which lay claim to robotics and manufacturing related use cases, but as we\'ve already seen they only offer product for a narrow range of UAV use cases. They\'ve basically just been slowly declining over the last ten years and don\'t seem to have the ambition, leadership, or vision to represent the new paradigm of motor production, and are too over built in this outsourced/low volume operating model to adapt to it even if they wanted to.\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, June 20, 2025 4:54 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: KDEDirect\r\n\r\nTalk to me about these guys and their products:\r\nhttps://www.youtube.com/watch?v=e1iUb-3vwwQ\r\n\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n',0,0,0,0,0,0,'2025-06-20 15:19:05','2025-12-09 19:12:54','2025-12-09 19:12:54','2025-12-09 19:12:54',NULL,NULL,NULL),
(388,4,' <BL3PR20MB492431CAD2B6B424ACDBD8FAAF7FA@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'=?Windows-1252?Q?Re:_New_question=85_?=','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"margin-top: 1em; margin-bottom: 1em; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHi Rick,</div>\r\n<div class=\"elementToProof\" style=\"margin-top: 1em; margin-bottom: 1em; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nAppreciate the update and glad to hear we’re getting closer.</div>\r\n<div class=\"elementToProof\" style=\"margin-top: 1em; margin-bottom: 1em; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nSo it looks like Sakuu’s batteries, particularly their lithium-metal variants, are in fact rechargeable, despite being solid-state. They\'re offering significantly higher energy density than conventional lithium-ion cells, which means we could achieve the same\r\n runtime with less volume and weight, or extend runtime without increasing mass. Their higher discharge rates (up to 8C continuous and 10C pulse) align well with the power demands of drone motors like our Raven. Additionally, their 3D-printed form factors could\r\n allow us to integrate the batteries directly into the drone structure or enclosures, improving space utilization and thermal performance.</div>\r\n<div class=\"elementToProof\" style=\"margin-top: 1em; margin-bottom: 1em; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nWorking with these guys could definitely open up alot of possibilities for differentiation and optimization.</div>\r\n<div class=\"elementToProof\" style=\"margin-top: 1em; margin-bottom: 1em; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nBest,<br>\r\nJason</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Saturday, June 21, 2025 11:53 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> New question… </font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Hi Jason,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks again for all your help with KDE and the documents you’ve sent…</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">We are getting closer!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">In the meantime, if you wouldn\'t mind...</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">What could I do with these batteries and your motors:</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><a href=\"https://www.sakuu.com/batteries\">https://www.sakuu.com/batteries</a><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">I realize they can\'t be recharged…</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Would they be smaller, could they save in weight or provide longer run time?</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Interested in your thoughts.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick&nbsp;</div>\r\n<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','Hi Rick,\r\nAppreciate the update and glad to hear we’re getting closer.\r\nSo it looks like Sakuu’s batteries, particularly their lithium-metal variants, are in fact rechargeable, despite being solid-state. They\'re offering significantly higher energy density than conventional lithium-ion cells, which means we could achieve the same runtime with less volume and weight, or extend runtime without increasing mass. Their higher discharge rates (up to 8C continuous and 10C pulse) align well with the power demands of drone motors like our Raven. Additionally, their 3D-printed form factors could allow us to integrate the batteries directly into the drone structure or enclosures, improving space utilization and thermal performance.\r\nWorking with these guys could definitely open up alot of possibilities for differentiation and optimization.\r\nBest,\r\nJason\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Saturday, June 21, 2025 11:53 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: New question…\r\n\r\nHi Jason,\r\nThanks again for all your help with KDE and the documents you’ve sent…\r\nWe are getting closer!\r\n\r\nIn the meantime, if you wouldn\'t mind...\r\nWhat could I do with these batteries and your motors:\r\nhttps://www.sakuu.com/batteries\r\n\r\nI realize they can\'t be recharged…\r\nWould they be smaller, could they save in weight or provide longer run time?\r\n\r\nInterested in your thoughts.\r\nThanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]',0,0,0,0,0,0,'2025-06-21 19:46:59','2025-12-09 19:12:55','2025-12-09 19:12:55','2025-12-09 19:12:55',NULL,NULL,NULL),
(389,4,' <BL3PR20MB49242BD84AF628DC4387EED6AF7FA@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'=?utf-8?B?UmU6IE5ldyBxdWVzdGlvbuKApg==?=','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nExactly, and that\'s going to be the biggest tradeoff, to what degree does the cost premium provide performance advantage. They don\'t have prices listed on their site, but I\'m going to submit an RFQ to them and get more information about that, I\'ll let you know\r\n what I end up finding.&nbsp;</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Saturday, June 21, 2025 1:13 PM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: New question…</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>Thanks. &nbsp;I have to believe they’re more expensive though. &nbsp;<br>\r\n<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<p class=\"x_gmail_quote\" style=\"color:#000\">On June 21, 2025 at 3:46:59 PM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_gmail_quote\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"margin-top:1em; margin-bottom:1em; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick,</div>\r\n<div class=\"x_elementToProof\" style=\"margin-top:1em; margin-bottom:1em; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nAppreciate the update and glad to hear we’re getting closer.</div>\r\n<div class=\"x_elementToProof\" style=\"margin-top:1em; margin-bottom:1em; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nSo it looks like Sakuu’s batteries, particularly their lithium-metal variants, are in fact rechargeable, despite being solid-state. They\'re offering significantly higher energy density than conventional lithium-ion cells, which means we could achieve the same\r\n runtime with less volume and weight, or extend runtime without increasing mass. Their higher discharge rates (up to 8C continuous and 10C pulse) align well with the power demands of drone motors like our Raven. Additionally, their 3D-printed form factors could\r\n allow us to integrate the batteries directly into the drone structure or enclosures, improving space utilization and thermal performance.</div>\r\n<div class=\"x_elementToProof\" style=\"margin-top:1em; margin-bottom:1em; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nWorking with these guys could definitely open up alot of possibilities for differentiation and optimization.</div>\r\n<div class=\"x_elementToProof\" style=\"margin-top:1em; margin-bottom:1em; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nBest,<br>\r\nJason</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Saturday, June 21, 2025 11:53 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> New question…</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Hi Jason,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks again for all your help with KDE and the documents you’ve sent…</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">We are getting closer!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">In the meantime, if you wouldn\'t mind...</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">What could I do with these batteries and your motors:</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><a href=\"https://www.sakuu.com/batteries\">https://www.sakuu.com/batteries</a><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">I realize they can\'t be recharged…</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Would they be smaller, could they save in weight or provide longer run time?</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Interested in your thoughts.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick&nbsp;</div>\r\n<br>\r\n<div class=\"x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Exactly, and that\'s going to be the biggest tradeoff, to what degree does the cost premium provide performance advantage. They don\'t have prices listed on their site, but I\'m going to submit an RFQ to them and get more information about that, I\'ll let you know what I end up finding.\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Saturday, June 21, 2025 1:13 PM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: New question…\r\n\r\nThanks.  I have to believe they’re more expensive though.\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\nOn June 21, 2025 at 3:46:59 PM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nHi Rick,\r\nAppreciate the update and glad to hear we’re getting closer.\r\nSo it looks like Sakuu’s batteries, particularly their lithium-metal variants, are in fact rechargeable, despite being solid-state. They\'re offering significantly higher energy density than conventional lithium-ion cells, which means we could achieve the same runtime with less volume and weight, or extend runtime without increasing mass. Their higher discharge rates (up to 8C continuous and 10C pulse) align well with the power demands of drone motors like our Raven. Additionally, their 3D-printed form factors could allow us to integrate the batteries directly into the drone structure or enclosures, improving space utilization and thermal performance.\r\nWorking with these guys could definitely open up alot of possibilities for differentiation and optimization.\r\nBest,\r\nJason\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Saturday, June 21, 2025 11:53 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: New question…\r\n\r\nHi Jason,\r\nThanks again for all your help with KDE and the documents you’ve sent…\r\nWe are getting closer!\r\n\r\nIn the meantime, if you wouldn\'t mind...\r\nWhat could I do with these batteries and your motors:\r\nhttps://www.sakuu.com/batteries\r\n\r\nI realize they can\'t be recharged…\r\nWould they be smaller, could they save in weight or provide longer run time?\r\n\r\nInterested in your thoughts.\r\nThanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n',0,0,0,0,0,0,'2025-06-21 20:32:56','2025-12-09 19:12:55','2025-12-09 19:12:55','2025-12-09 19:12:55',NULL,NULL,NULL),
(390,4,'<CALgMgSRfAQDov2CHgzRxvZ9DN8Ahbk02ZOUjj=20g9nxHDSG1Q@mail.gmail.com>',NULL,NULL,'Re: Mavrix <> SL 3','jschnipke@strategic-logix.com','Jeremy Schnipke','<div dir=\"ltr\">Good morning Rick,<div><p>I wanted to follow up after our recent conversation regarding a potential investment from Mavrix into Strategic Logix. We really appreciated the opportunity to share what we’re building.</p><p>Things have moved quickly since we last spoke — we’ve been downselected for the SOFWERX Drone-in-a-Box solicitation, have meetings scheduled over the next couple of weeks with key members of Congress, FORSCOM, and SOCOM leadership, and are finalizing several new capabilities including a fiber optic conversion kit, a fixed-wing conversion kit, and a ground vehicle conversion kit — all on track for completion within the next three weeks. Our calendar is quickly filling with travel and briefings.</p><p>\r\n\r\nWe’ve had a few other investors reach out as momentum continues to build, and given our shared objectives, I wanted to see if you had any follow-up questions or would like to get a time on the calendar to continue the conversation.\r\n\r\n</p><p>\r\n\r\n\r\n</p><p>Looking forward to hearing from you.</p></div></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Jun 10, 2025 at 4:42 PM Andrew Valkenburg &lt;<a href=\"mailto:avalkenburg@strategic-logix.com\">avalkenburg@strategic-logix.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Rick,</div><div><br></div><div>Looking to check in if/when you&#39;d like to meet again. Had a few trips added for next week, so wasn&#39;t sure if you wanted to get together this week at all. </div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p><font color=\"#000000\"><b><a href=\"https://d5Fk0J04.na1.hs-sales-engage.com/Ctc/ZY+23284/d5Fk0J04/Jks2-6qcW69sMD-6lZ3p3W4JBM684-zzGgW3R5Z7n4mSPNDW8bJ48z9bnX-yW4_HP487GBDWwW71rpr36Q63q_W1TlDPD95Cm_bW5KJP6448Q5ShN6MBxcgwG_QnW3Z3bhX7fDWQfW2xRyXk3-Bb8HW3zRsdZ1JQh6_W4dKLDY3hLL5rW6WFXrT315_CCW1dNSP14K69dHW8-l0_T99BSLZW260Zgw6TdmHfMFhkNlXdYs9VXJzvm7XFsVLN3TN0klwSz3CW47WTD13TngfCf7h43Jq04\" target=\"_blank\">VISIT OUR WEBSITE</a></b></font></p><p><strong><font color=\"#000000\"><br></font></strong></p><p><strong><font color=\"#000000\">Sincerely,</font></strong></p><p><font color=\"#000000\">Andrew Valkenburg<br>Chief Operations Officer, Strategic Logix LLC<br>484-225-9132<br><a rel=\"noopener\">avalkenburg@strategic-logix.com</a></font></p></div></div><img src=\"https://d5Fk0J04.na1.hs-sales-engage.com/Cto/ZY+23284/d5Fk0J04/R5R8b46GFN8DRvLG2fJtJW3M1SJx21hM7hW1-Ypq51XnY_PW1GyZgk3JD_VkW25d5521--yY3W3JHSfp1T_YtRn1--v6q4W1\" alt=\"\" height=\"1\" width=\"1\" style=\"display: none;\"><div></div></div>\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p><strong>Sincerely,</strong></p><p>Jeremy Schnipke<br>Chief Executive Officer, Strategic Logix LLC<br>Mobile: 419-203-3215<br><a rel=\"noopener\">jschnipke@strategic-logix.com</a></p></div></div>','Good morning Rick,\r\n\r\nI wanted to follow up after our recent conversation regarding a potential\r\ninvestment from Mavrix into Strategic Logix. We really appreciated the\r\nopportunity to share what we’re building.\r\n\r\nThings have moved quickly since we last spoke — we’ve been downselected for\r\nthe SOFWERX Drone-in-a-Box solicitation, have meetings scheduled over the\r\nnext couple of weeks with key members of Congress, FORSCOM, and SOCOM\r\nleadership, and are finalizing several new capabilities including a fiber\r\noptic conversion kit, a fixed-wing conversion kit, and a ground vehicle\r\nconversion kit — all on track for completion within the next three weeks.\r\nOur calendar is quickly filling with travel and briefings.\r\n\r\nWe’ve had a few other investors reach out as momentum continues to build,\r\nand given our shared objectives, I wanted to see if you had any follow-up\r\nquestions or would like to get a time on the calendar to continue the\r\nconversation.\r\n\r\nLooking forward to hearing from you.\r\n\r\nOn Tue, Jun 10, 2025 at 4:42 PM Andrew Valkenburg <\r\navalkenburg@strategic-logix.com> wrote:\r\n\r\n> Rick,\r\n>\r\n> Looking to check in if/when you\'d like to meet again. Had a few trips\r\n> added for next week, so wasn\'t sure if you wanted to get together this week\r\n> at all.\r\n>\r\n> --\r\n>\r\n> *VISIT OUR WEBSITE\r\n> <https://d5Fk0J04.na1.hs-sales-engage.com/Ctc/ZY+23284/d5Fk0J04/Jks2-6qcW69sMD-6lZ3p3W4JBM684-zzGgW3R5Z7n4mSPNDW8bJ48z9bnX-yW4_HP487GBDWwW71rpr36Q63q_W1TlDPD95Cm_bW5KJP6448Q5ShN6MBxcgwG_QnW3Z3bhX7fDWQfW2xRyXk3-Bb8HW3zRsdZ1JQh6_W4dKLDY3hLL5rW6WFXrT315_CCW1dNSP14K69dHW8-l0_T99BSLZW260Zgw6TdmHfMFhkNlXdYs9VXJzvm7XFsVLN3TN0klwSz3CW47WTD13TngfCf7h43Jq04>*\r\n>\r\n>\r\n> *Sincerely,*\r\n>\r\n> Andrew Valkenburg\r\n> Chief Operations Officer, Strategic Logix LLC\r\n> 484-225-9132\r\n> avalkenburg@strategic-logix.com\r\n>\r\n\r\n\r\n-- \r\n\r\n*Sincerely,*\r\n\r\nJeremy Schnipke\r\nChief Executive Officer, Strategic Logix LLC\r\nMobile: 419-203-3215\r\njschnipke@strategic-logix.com',0,0,0,0,0,0,'2025-06-23 14:28:30','2025-12-09 19:12:55','2025-12-09 19:12:55','2025-12-09 19:12:55',NULL,NULL,NULL),
(391,4,'<CAGgBgfBq7bXBdOKEf5d0TcOVtmjuHSyMH8hCBEknWzdCYNYkEQ@mail.gmail.com>',NULL,NULL,'Meet link','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div class=\"gmail_default\" style=\"font-size:small\"><a href=\"https://meet.google.com/eth-qtni-ncq\">https://meet.google.com/eth-qtni-ncq</a><br></div></div>','https://meet.google.com/eth-qtni-ncq',0,0,0,0,0,0,'2025-06-23 14:35:14','2025-12-09 19:12:56','2025-12-09 19:12:56','2025-12-09 19:12:56',NULL,NULL,NULL),
(392,4,'<E1uTiuB-00FeAT-17@mx200.antispamcloud.com>',NULL,NULL,'Mail delivery failed: returning message to sender','Mailer-Daemon@mx200.antispamcloud.com','Mail Delivery System','(Message content could not be parsed)','(Message content could not be parsed)',0,0,0,0,0,0,'2025-06-23 15:16:19','2025-12-09 19:12:56','2025-12-09 19:12:56','2025-12-09 19:12:56',NULL,NULL,NULL),
(393,4,'<E1uTiyy-00000009nMD-45dU@nwpro5.fcomet.com>',NULL,NULL,'Mail delivery failed: returning message to sender','Mailer-Daemon@nwpro5.fcomet.com','Mail Delivery System','(Message content could not be parsed)','(Message content could not be parsed)',0,0,0,0,0,0,'2025-06-23 15:21:16','2025-12-09 19:12:56','2025-12-09 19:12:56','2025-12-09 19:12:56',NULL,NULL,NULL),
(394,4,' <IA0PR14MB68629E4860017B934ADA2A6BCD79A@IA0PR14MB6862.namprd14.prod.outlook.com>',NULL,NULL,'Linkup','joe@romeosix.com','Joe Fanelli','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n</head>\r\n<body>\r\n<div dir=\"auto\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nLinkup</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div style=\"font-family:Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif;font-size:12pt\" dir=\"auto\" id=\"ms-outlook-mobile-signature\">\r\n<div dir=\"auto\" style=\"font-family: sans-serif; color: rgb(0, 0, 0);\"><span style=\"background-color: rgb(255, 255, 255);\">Thanks,</span></div>\r\n<div dir=\"auto\" style=\"text-align: left; text-indent: 0px; font-family: sans-serif; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div dir=\"auto\" style=\"text-align: left; text-indent: 0px; font-family: sans-serif; color: rgb(0, 0, 0);\">\r\nJoe Fanelli</div>\r\n<div dir=\"auto\" style=\"text-align: left; text-indent: 0px; font-family: sans-serif; color: rgb(0, 0, 0);\">\r\nwww.romeosix.com</div>\r\n<div dir=\"auto\" style=\"text-align: left; text-indent: 0px; font-family: sans-serif; color: rgb(0, 0, 0);\">\r\nDirect: 919-867-5146</div>\r\n<div dir=\"auto\" style=\"text-align: left; text-indent: 0px; font-family: sans-serif; color: rgb(0, 0, 0);\">\r\nMain: 919-589-7150&nbsp;</div>\r\n<div dir=\"auto\"><br>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','Linkup\r\n\r\nThanks,\r\n\r\nJoe Fanelli\r\nwww.romeosix.com\r\nDirect: 919-867-5146\r\nMain: 919-589-7150',0,0,0,0,0,0,'2025-06-23 15:23:53','2025-12-09 19:12:57','2025-12-09 19:12:57','2025-12-09 19:12:57',NULL,NULL,NULL),
(395,4,' <IA0PR14MB6862EFCA168C27F90F79AF1ACD79A@IA0PR14MB6862.namprd14.prod.outlook.com>',NULL,NULL,'RE: Linkup','joe@romeosix.com','Joe Fanelli','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Segoe UI\";\r\n	panose-1:2 11 5 2 4 2 4 2 2 3;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle20\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Cell 717-608-3633<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Email coming from Clear Street shortly with the NDA.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Thanks,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;color:#538135\">Joe Fanelli</span></b><span style=\"font-size:11.0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;color:#00B0F0\"><a href=\"mailto:joe@romeosix.com\" target=\"_blank\"><span style=\"color:#00B0F0\">joe@romeosix.com</span></a></span></b><span style=\"font-size:11.0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt\">Main: +1 919-589-7150</span></b><span style=\"font-size:11.0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt\">Direct: +1 919-867-5146</span></b><span style=\"font-size:11.0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><img border=\"0\" width=\"203\" height=\"55\" style=\"width:2.1145in;height:.5729in\" id=\"Picture_x0020_885269331\" src=\"cid:image001.png@01DBE431.EBC29550\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><i><span style=\"font-size:8.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;background:white\">The content of this email may contain CONFIDENTIAL and/or PROPRIETARY information intended for the recipient specified in the message only.\r\n It is strictly forbidden to share any part of this message with any third party, without written consent of Romeo Six LLC. If you received this message by error, please reply to this message and follow with its deletion of all copies of the message and/or\r\n attachments.</span></i><span style=\"font-size:11.0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Monday, June 23, 2025 11:25 AM<br>\r\n<b>To:</b> Joe Fanelli &lt;joe@romeosix.com&gt;<br>\r\n<b>Subject:</b> Re: Linkup<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hey:<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"http://mislan.com\">mislan.com</a><o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div id=\"bloop_sign_1750692284187059968\">\r\n<p class=\"MsoNormal\">Rick Mislan, PhD<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><a href=\"https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one\">https://mavrix.one</a><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><img border=\"0\" id=\"_x0000_i1025\" src=\"file://Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"airmailon\">On June 23, 2025 at 11:24:38<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>AM, Joe Fanelli (<a href=\"mailto:joe@romeosix.com\">joe@romeosix.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">Linkup<o:p></o:p></p>\r\n</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\">\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div id=\"ms-outlook-mobile-signature\">\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black;background:white\">Thanks,</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\">Joe Fanelli<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\"><a href=\"http://www.romeosix.com\">www.romeosix.com</a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\">Direct: 919-867-5146<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\">Main: 919-589-7150&nbsp;<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Cell 717-608-3633\r\nEmail coming from Clear Street shortly with the NDA.\r\n\r\nThanks,\r\n\r\nJoe Fanelli\r\njoe@romeosix.com<mailto:joe@romeosix.com>\r\nMain: +1 919-589-7150\r\nDirect: +1 919-867-5146\r\n[cid:image001.png@01DBE431.EBC29550]\r\nThe content of this email may contain CONFIDENTIAL and/or PROPRIETARY information intended for the recipient specified in the message only. It is strictly forbidden to share any part of this message with any third party, without written consent of Romeo Six LLC. If you received this message by error, please reply to this message and follow with its deletion of all copies of the message and/or attachments.\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Monday, June 23, 2025 11:25 AM\r\nTo: Joe Fanelli <joe@romeosix.com>\r\nSubject: Re: Linkup\r\n\r\nHey:\r\nmislan.com<http://mislan.com>\r\n\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one>\r\n[X]\r\n\r\n\r\nOn June 23, 2025 at 11:24:38 AM, Joe Fanelli (joe@romeosix.com<mailto:joe@romeosix.com>) wrote:\r\nLinkup\r\n\r\nThanks,\r\n\r\nJoe Fanelli\r\nwww.romeosix.com<http://www.romeosix.com>\r\nDirect: 919-867-5146\r\nMain: 919-589-7150\r\n\r\n',0,0,0,0,0,0,'2025-06-23 15:28:21','2025-12-09 19:12:57','2025-12-09 19:12:57','2025-12-09 19:12:57',NULL,NULL,NULL),
(396,4,'<CALgMgSTBaa_b9YcUeZnGD+UhiOWCky6WYmk35hFOTkJOQ37X_w@mail.gmail.com>',NULL,NULL,'Re: Mavrix <> SL 3','jschnipke@strategic-logix.com','Jeremy Schnipke','<div dir=\"ltr\"><p>Rick,</p><p>Thanks again for the candid response — we always appreciate straightforward conversations.</p><p>Looking back, I can see how our reaction may have come off differently than intended. We’re first-time founders, and admittedly let some of our excitement about the company’s trajectory drive a more optimistic stance on valuation than was helpful in that moment.</p><p>That said, our hesitation wasn’t about the numbers themselves — it was about the nature of a full buyout and what that would mean for stepping away from something we’re still very much committed to building. We’re not looking to give up our upside, but we are absolutely open to a serious conversation around a partial (possibly majority) buyout and capital infusion. One that gives us room to de-risk a bit, inject the resources we need to scale, and stay fully engaged as operators.</p><p>If Mavrix is still interested, we’d be curious to hear where you stand on valuation, ownership targets, and deal structure. We’re open to finding something that makes sense for both sides.</p><p>\r\n\r\n\r\n\r\n\r\n</p><p>Appreciate your time as always,<br>\r\nJeremy</p></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Jun 23, 2025 at 11:00 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div id=\"m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">HI guys, thanks for the update. </div><div id=\"m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">All sounds promising!</div><div id=\"m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><br></div><div id=\"m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">To be honest (which I always am), </div><div id=\"m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">based on the end of our last conversation, </div><div id=\"m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">mavrix will not meet your financial expectations.</div><div id=\"m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><br></div><div id=\"m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">I believe you both scoffed at a $50M offer and </div><div id=\"m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">then again you hesitated and said no to $250M.</div><div id=\"m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><br></div><div id=\"m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">If I’m wrong in my assumption, please </div><div id=\"m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">let me know where you think mavrix can help.</div><div id=\"m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><br></div><div id=\"m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Respectfully,</div><div id=\"m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Rick</div> <br> <div id=\"m_6332035242497208014bloop_sign_1750690613825149184\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div> <br><p>On June 23, 2025 at 10:29:22 AM, Jeremy Schnipke (<a href=\"mailto:jschnipke@strategic-logix.com\" target=\"_blank\">jschnipke@strategic-logix.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\">Good morning Rick,<div><p>I wanted to follow up after our recent conversation regarding a potential investment from Mavrix into Strategic Logix. We really appreciated the opportunity to share what we’re building.</p><p>Things have moved quickly since we last spoke — we’ve been downselected for the SOFWERX Drone-in-a-Box solicitation, have meetings scheduled over the next couple of weeks with key members of Congress, FORSCOM, and SOCOM leadership, and are finalizing several new capabilities including a fiber optic conversion kit, a fixed-wing conversion kit, and a ground vehicle conversion kit — all on track for completion within the next three weeks. Our calendar is quickly filling with travel and briefings.</p><p>\r\n\r\nWe’ve had a few other investors reach out as momentum continues to build, and given our shared objectives, I wanted to see if you had any follow-up questions or would like to get a time on the calendar to continue the conversation.\r\n\r\n</p><p>\r\n\r\n\r\n</p><p>Looking forward to hearing from you.</p></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Jun 10, 2025 at 4:42 PM Andrew Valkenburg &lt;<a href=\"mailto:avalkenburg@strategic-logix.com\" target=\"_blank\">avalkenburg@strategic-logix.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Rick,</div><div><br></div><div>Looking to check in if/when you&#39;d like to meet again. Had a few trips added for next week, so wasn&#39;t sure if you wanted to get together this week at all. </div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p><font color=\"#000000\"><b><a href=\"https://d5Fk0J04.na1.hs-sales-engage.com/Ctc/ZY+23284/d5Fk0J04/Jks2-6qcW69sMD-6lZ3p3W4JBM684-zzGgW3R5Z7n4mSPNDW8bJ48z9bnX-yW4_HP487GBDWwW71rpr36Q63q_W1TlDPD95Cm_bW5KJP6448Q5ShN6MBxcgwG_QnW3Z3bhX7fDWQfW2xRyXk3-Bb8HW3zRsdZ1JQh6_W4dKLDY3hLL5rW6WFXrT315_CCW1dNSP14K69dHW8-l0_T99BSLZW260Zgw6TdmHfMFhkNlXdYs9VXJzvm7XFsVLN3TN0klwSz3CW47WTD13TngfCf7h43Jq04\" target=\"_blank\">VISIT OUR WEBSITE</a></b></font></p><p><strong><font color=\"#000000\"><br></font></strong></p><p><strong><font color=\"#000000\">Sincerely,</font></strong></p><p><font color=\"#000000\">Andrew Valkenburg<br>Chief Operations Officer, Strategic Logix LLC<br>484-225-9132<br><a rel=\"noopener\">avalkenburg@strategic-logix.com</a></font></p></div></div><img src=\"https://d5Fk0J04.na1.hs-sales-engage.com/Cto/ZY+23284/d5Fk0J04/R5R8b46GFN8DRvLG2fJtJW3M1SJx21hM7hW1-Ypq51XnY_PW1GyZgk3JD_VkW25d5521--yY3W3JHSfp1T_YtRn1--v6q4W1\" alt=\"\" height=\"1\" width=\"1\" style=\"display: none;\"><div></div></div>\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p><strong>Sincerely,</strong></p><p>Jeremy Schnipke<br>Chief Executive Officer, Strategic Logix LLC<br>Mobile: 419-203-3215<br><a rel=\"noopener\">jschnipke@strategic-logix.com</a></p></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p><strong>Sincerely,</strong></p><p>Jeremy Schnipke<br>Chief Executive Officer, Strategic Logix LLC<br>Mobile: 419-203-3215<br><a rel=\"noopener\">jschnipke@strategic-logix.com</a></p></div></div>','Rick,\r\n\r\nThanks again for the candid response — we always appreciate straightforward\r\nconversations.\r\n\r\nLooking back, I can see how our reaction may have come off differently than\r\nintended. We’re first-time founders, and admittedly let some of our\r\nexcitement about the company’s trajectory drive a more optimistic stance on\r\nvaluation than was helpful in that moment.\r\n\r\nThat said, our hesitation wasn’t about the numbers themselves — it was\r\nabout the nature of a full buyout and what that would mean for stepping\r\naway from something we’re still very much committed to building. We’re not\r\nlooking to give up our upside, but we are absolutely open to a serious\r\nconversation around a partial (possibly majority) buyout and capital\r\ninfusion. One that gives us room to de-risk a bit, inject the resources we\r\nneed to scale, and stay fully engaged as operators.\r\n\r\nIf Mavrix is still interested, we’d be curious to hear where you stand on\r\nvaluation, ownership targets, and deal structure. We’re open to finding\r\nsomething that makes sense for both sides.\r\n\r\nAppreciate your time as always,\r\nJeremy\r\n\r\nOn Mon, Jun 23, 2025 at 11:00 AM Rick <rick@mavrix.one> wrote:\r\n\r\n> HI guys, thanks for the update.\r\n> All sounds promising!\r\n>\r\n> To be honest (which I always am),\r\n> based on the end of our last conversation,\r\n> mavrix will not meet your financial expectations.\r\n>\r\n> I believe you both scoffed at a $50M offer and\r\n> then again you hesitated and said no to $250M.\r\n>\r\n> If I’m wrong in my assumption, please\r\n> let me know where you think mavrix can help.\r\n>\r\n> Respectfully,\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On June 23, 2025 at 10:29:22 AM, Jeremy Schnipke (\r\n> jschnipke@strategic-logix.com) wrote:\r\n>\r\n> Good morning Rick,\r\n>\r\n> I wanted to follow up after our recent conversation regarding a potential\r\n> investment from Mavrix into Strategic Logix. We really appreciated the\r\n> opportunity to share what we’re building.\r\n>\r\n> Things have moved quickly since we last spoke — we’ve been downselected\r\n> for the SOFWERX Drone-in-a-Box solicitation, have meetings scheduled over\r\n> the next couple of weeks with key members of Congress, FORSCOM, and SOCOM\r\n> leadership, and are finalizing several new capabilities including a fiber\r\n> optic conversion kit, a fixed-wing conversion kit, and a ground vehicle\r\n> conversion kit — all on track for completion within the next three weeks.\r\n> Our calendar is quickly filling with travel and briefings.\r\n>\r\n> We’ve had a few other investors reach out as momentum continues to build,\r\n> and given our shared objectives, I wanted to see if you had any follow-up\r\n> questions or would like to get a time on the calendar to continue the\r\n> conversation.\r\n>\r\n> Looking forward to hearing from you.\r\n>\r\n> On Tue, Jun 10, 2025 at 4:42 PM Andrew Valkenburg <\r\n> avalkenburg@strategic-logix.com> wrote:\r\n>\r\n>> Rick,\r\n>>\r\n>> Looking to check in if/when you\'d like to meet again. Had a few trips\r\n>> added for next week, so wasn\'t sure if you wanted to get together this week\r\n>> at all.\r\n>>\r\n>> --\r\n>>\r\n>> *VISIT OUR WEBSITE\r\n>> <https://d5Fk0J04.na1.hs-sales-engage.com/Ctc/ZY+23284/d5Fk0J04/Jks2-6qcW69sMD-6lZ3p3W4JBM684-zzGgW3R5Z7n4mSPNDW8bJ48z9bnX-yW4_HP487GBDWwW71rpr36Q63q_W1TlDPD95Cm_bW5KJP6448Q5ShN6MBxcgwG_QnW3Z3bhX7fDWQfW2xRyXk3-Bb8HW3zRsdZ1JQh6_W4dKLDY3hLL5rW6WFXrT315_CCW1dNSP14K69dHW8-l0_T99BSLZW260Zgw6TdmHfMFhkNlXdYs9VXJzvm7XFsVLN3TN0klwSz3CW47WTD13TngfCf7h43Jq04>*\r\n>>\r\n>>\r\n>> *Sincerely,*\r\n>>\r\n>> Andrew Valkenburg\r\n>> Chief Operations Officer, Strategic Logix LLC\r\n>> 484-225-9132\r\n>> avalkenburg@strategic-logix.com\r\n>>\r\n>\r\n>\r\n> --\r\n>\r\n> *Sincerely,*\r\n>\r\n> Jeremy Schnipke\r\n> Chief Executive Officer, Strategic Logix LLC\r\n> Mobile: 419-203-3215\r\n> jschnipke@strategic-logix.com\r\n>\r\n>\r\n\r\n-- \r\n\r\n*Sincerely,*\r\n\r\nJeremy Schnipke\r\nChief Executive Officer, Strategic Logix LLC\r\nMobile: 419-203-3215\r\njschnipke@strategic-logix.com',0,0,0,0,0,0,'2025-06-23 15:59:00','2025-12-09 19:12:58','2025-12-09 19:12:58','2025-12-09 19:12:58',NULL,NULL,NULL),
(397,4,' <BL3PR20MB4924DF26FC57792BCC98F1F0AF79A@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Fw: Your inquiry to Sakuu - Corvex','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHey Rick,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHere\'s an update on Sakuu.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nIf you want to tie me in a little closer on your research and diligence with some of these other companies you\'re vetting, I\'d be more than happy to assist. I have a pretty broad understanding of the UAV space and the engineering challenges related to optimizing\r\n the various subcomponents in drone architectures.&nbsp;&nbsp;</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nFree to hop on a call today as well.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nRegards,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nJason</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Arwed Niestroj &lt;arwed.niestroj@sakuu.com&gt;<br>\r\n<b>Sent:</b> Monday, June 23, 2025 10:49 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Cc:</b> Sukeerth Calastawad &lt;sukeerth.calastawad@sakuu.com&gt;<br>\r\n<b>Subject:</b> Your inquiry to Sakuu - Corvex</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\n@font-face\r\n	{font-family:Wingdings}\r\n@font-face\r\n	{font-family:\"Cambria Math\"}\r\n@font-face\r\n	{font-family:Aptos}\r\np.x_MsoNormal, li.x_MsoNormal, div.x_MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif}\r\na:link, span.x_MsoHyperlink\r\n	{color:blue;\r\n	text-decoration:underline}\r\nspan.x_EmailStyle27\r\n	{font-family:\"Aptos\",sans-serif;\r\n	color:windowtext}\r\n.x_MsoChpDefault\r\n	{font-size:10.0pt}\r\n@page WordSection1\r\n	{margin:1.0in 1.0in 1.0in 1.0in}\r\ndiv.x_WordSection1\r\n	{}\r\nol\r\n	{margin-bottom:0in}\r\nul\r\n	{margin-bottom:0in}\r\n-->\r\n</style>\r\n<div lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"background-color:#F5F8FA; word-wrap:break-word\">\r\n<div class=\"x_WordSection1\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">Hello Jason,</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">Thank you for reaching out.</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">Sakuu is not a battery cell manufacturer, but we are developing, manufacturing, and selling equipment and processes for high volume battery cell and electrode manufacturing. Currently we are selling equipment\r\n to our customers that enables them to dry print battery electrodes at lower cost and carbon footprint.\r\n</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">In the next generation our equipment will print complete batteries of arbitrary shape and form, of any chemistry incl. solid state.</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">Our inhouse developed Lithium metal chemistry (core performance data can be found here\r\n<a href=\"https://www.sakuu.com/batteries\">https://www.sakuu.com/batteries</a>) is available to cell manufacturers for licensing.</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">If that is interesting to you, we should talk together with your preferred cell manufacturer.</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">Best regards, Arwed</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">Arwed Niestroj</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">SVP E-mobility and Product</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\"><a href=\"mailto:arwed.niestroj@sakuu.com\"><span style=\"color:#467886\">arwed.niestroj@sakuu.com</span></a></span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\"><a href=\"http://www.sakuu.com/\"><span style=\"color:#467886\">www.sakuu.com</span></a></span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">5870 Hellyer Ave, Ste 50</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">95138 San Jose, CA</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<table class=\"x_MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\" style=\"padding:0in 0in 0in 0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"x_MsoNormal\"><span style=\"\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-family:&quot;Arial&quot;,sans-serif\">Hello looking for information on your battery product(s) that would/could be used as power source for drone motors, particularly in terms of pricing, performance, and form factor(s). Would\r\n like to talk soon to discuss, thank you.</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n</div>\r\n<p><span style=\"font-size:10pt\"><br>\r\n</span></p>\r\n<p><span style=\"font-size:10pt\"><br>\r\n</span></p>\r\n<p><span style=\"font-size:10pt\"></p>\r\n<hr>\r\n</span>\r\n<p></p>\r\n<p><span style=\"font-size:10pt\"><strong>CONFIDENTIAL:</strong> This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If received in error, do not disclose, disseminate,\r\n distribute, or copy this e-mail. Please notify the sender immediately by return e-mail and delete this e-mail from your system.</span></p>\r\n</div>\r\n</body>\r\n</html>','Hey Rick,\r\n\r\nHere\'s an update on Sakuu.\r\n\r\nIf you want to tie me in a little closer on your research and diligence with some of these other companies you\'re vetting, I\'d be more than happy to assist. I have a pretty broad understanding of the UAV space and the engineering challenges related to optimizing the various subcomponents in drone architectures.\r\n\r\nFree to hop on a call today as well.\r\n\r\nRegards,\r\nJason\r\n________________________________\r\nFrom: Arwed Niestroj <arwed.niestroj@sakuu.com>\r\nSent: Monday, June 23, 2025 10:49 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nCc: Sukeerth Calastawad <sukeerth.calastawad@sakuu.com>\r\nSubject: Your inquiry to Sakuu - Corvex\r\n\r\n\r\nHello Jason,\r\n\r\n\r\n\r\nThank you for reaching out.\r\n\r\n\r\n\r\nSakuu is not a battery cell manufacturer, but we are developing, manufacturing, and selling equipment and processes for high volume battery cell and electrode manufacturing. Currently we are selling equipment to our customers that enables them to dry print battery electrodes at lower cost and carbon footprint.\r\n\r\nIn the next generation our equipment will print complete batteries of arbitrary shape and form, of any chemistry incl. solid state.\r\n\r\n\r\n\r\nOur inhouse developed Lithium metal chemistry (core performance data can be found here https://www.sakuu.com/batteries) is available to cell manufacturers for licensing.\r\n\r\n\r\n\r\nIf that is interesting to you, we should talk together with your preferred cell manufacturer.\r\n\r\n\r\n\r\n\r\n\r\nBest regards, Arwed\r\n\r\n\r\n\r\n\r\n\r\nArwed Niestroj\r\n\r\nSVP E-mobility and Product\r\n\r\narwed.niestroj@sakuu.com<mailto:arwed.niestroj@sakuu.com>\r\n\r\nwww.sakuu.com<http://www.sakuu.com/>\r\n\r\n5870 Hellyer Ave, Ste 50\r\n\r\n95138 San Jose, CA\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nHello looking for information on your battery product(s) that would/could be used as power source for drone motors, particularly in terms of pricing, performance, and form factor(s). Would like to talk soon to discuss, thank you.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n________________________________\r\n\r\nCONFIDENTIAL: This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If received in error, do not disclose, disseminate, distribute, or copy this e-mail. Please notify the sender immediately by return e-mail and delete this e-mail from your system.',0,0,0,0,0,0,'2025-06-23 17:59:52','2025-12-09 19:12:58','2025-12-09 19:12:58','2025-12-09 19:12:58',NULL,NULL,NULL),
(398,4,' <BL3PR20MB4924EBD656C9902BE3F4BD40AF79A@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: Fw: Your inquiry to Sakuu - Corvex','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nAwesome, yeah Wednesday works for me.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nBots Unlimited is alot like KDE, low volume, much higher price points, and very narrow range of product motor wise. They aren\'t vertically integrated, and the only two motors that they do offer have been out of stock for months. They do however have a very\r\n good electronics product offering, which is much more straightforward to verticalize in the states. Every company making drone motors and robotic actuators in the United States right now is A) Heavily outsourcing subcomponent fabrication, B) Using foreign\r\n origin materials, and C) only addressing one niche of the demand gradient, we are the only ones on track to be the first fully vertically integrated, domestically sourced, and full service small electric motor manufacturer.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nAlso, just saw the updated Mavrix site, the aesthetic and mission statements are really nice.&nbsp;&nbsp;</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Monday, June 23, 2025 11:02 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Fw: Your inquiry to Sakuu - Corvex</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks for this.&nbsp;</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Interesting for sure.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">So today and tomorrow are family days…</div>\r\nWednesday or Thursday…\r\n<div>in the meantime, have you seen these guys…</div>\r\n<div><a href=\"https://botsunlimited.com/\">https://botsunlimited.com/</a><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div>Thanks again!<br>\r\n</div>\r\n<div>Rick</div>\r\n<div>&nbsp;<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On June 23, 2025 at 2:00:37 PM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHey Rick,</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHere\'s an update on Sakuu.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nIf you want to tie me in a little closer on your research and diligence with some of these other companies you\'re vetting, I\'d be more than happy to assist. I have a pretty broad understanding of the UAV space and the engineering challenges related to optimizing\r\n the various subcomponents in drone architectures.&nbsp;&nbsp;</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nFree to hop on a call today as well.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nRegards,</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nJason</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Arwed Niestroj &lt;arwed.niestroj@sakuu.com&gt;<br>\r\n<b>Sent:</b> Monday, June 23, 2025 10:49 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Cc:</b> Sukeerth Calastawad &lt;sukeerth.calastawad@sakuu.com&gt;<br>\r\n<b>Subject:</b> Your inquiry to Sakuu - Corvex</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div lang=\"EN-US\" style=\"background-color:#F5F8FA; word-wrap:break-word\">\r\n<div class=\"x_x_WordSection1\">\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:11.0pt\">Hello Jason,</span></p>\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:11.0pt\">Thank you for reaching out.</span></p>\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:11.0pt\">Sakuu is not a battery cell manufacturer, but we are developing, manufacturing, and selling equipment and processes for high volume battery cell and electrode manufacturing. Currently we are selling equipment\r\n to our customers that enables them to dry print battery electrodes at lower cost and carbon footprint.\r\n</span></p>\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:11.0pt\">In the next generation our equipment will print complete batteries of arbitrary shape and form, of any chemistry incl. solid state.</span></p>\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:11.0pt\">Our inhouse developed Lithium metal chemistry (core performance data can be found here\r\n<a href=\"https://www.sakuu.com/batteries\">https://www.sakuu.com/batteries</a>) is available to cell manufacturers for licensing.</span></p>\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:11.0pt\">If that is interesting to you, we should talk together with your preferred cell manufacturer.</span></p>\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:11.0pt\">Best regards, Arwed</span></p>\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:11.0pt\">Arwed Niestroj</span></p>\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:11.0pt\">SVP E-mobility and Product</span></p>\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:11.0pt\"><a href=\"mailto:arwed.niestroj@sakuu.com\"><span style=\"color:#467886\">arwed.niestroj@sakuu.com</span></a></span></p>\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:11.0pt\"><a href=\"http://www.sakuu.com/\"><span style=\"color:#467886\">www.sakuu.com</span></a></span></p>\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:11.0pt\">5870 Hellyer Ave, Ste 50</span></p>\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:11.0pt\">95138 San Jose, CA</span></p>\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<table class=\"x_x_MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\" style=\"padding:0in 0in 0in 0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"x_x_MsoNormal\"><span style=\"\">&nbsp;</span></p>\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-family:&quot;Arial&quot;,sans-serif\">Hello looking for information on your battery product(s) that would/could be used as power source for drone motors, particularly in terms of pricing, performance, and form factor(s). Would\r\n like to talk soon to discuss, thank you.</span></p>\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n</div>\r\n<p><span style=\"font-size:10pt\"><br>\r\n</span></p>\r\n<p><span style=\"font-size:10pt\"><br>\r\n</span></p>\r\n<p><span style=\"font-size:10pt\"></span></p>\r\n<hr>\r\n<p></p>\r\n<p><span style=\"font-size:10pt\"><strong>CONFIDENTIAL:</strong> This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If received in error, do not disclose, disseminate,\r\n distribute, or copy this e-mail. Please notify the sender immediately by return e-mail and delete this e-mail from your system.</span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Awesome, yeah Wednesday works for me.\r\n\r\nBots Unlimited is alot like KDE, low volume, much higher price points, and very narrow range of product motor wise. They aren\'t vertically integrated, and the only two motors that they do offer have been out of stock for months. They do however have a very good electronics product offering, which is much more straightforward to verticalize in the states. Every company making drone motors and robotic actuators in the United States right now is A) Heavily outsourcing subcomponent fabrication, B) Using foreign origin materials, and C) only addressing one niche of the demand gradient, we are the only ones on track to be the first fully vertically integrated, domestically sourced, and full service small electric motor manufacturer.\r\n\r\nAlso, just saw the updated Mavrix site, the aesthetic and mission statements are really nice.\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Monday, June 23, 2025 11:02 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Fw: Your inquiry to Sakuu - Corvex\r\n\r\nThanks for this.\r\nInteresting for sure.\r\nSo today and tomorrow are family days…\r\nWednesday or Thursday…\r\nin the meantime, have you seen these guys…\r\nhttps://botsunlimited.com/\r\n\r\nThanks again!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn June 23, 2025 at 2:00:37 PM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nHey Rick,\r\n\r\nHere\'s an update on Sakuu.\r\n\r\nIf you want to tie me in a little closer on your research and diligence with some of these other companies you\'re vetting, I\'d be more than happy to assist. I have a pretty broad understanding of the UAV space and the engineering challenges related to optimizing the various subcomponents in drone architectures.\r\n\r\nFree to hop on a call today as well.\r\n\r\nRegards,\r\nJason\r\n________________________________\r\nFrom: Arwed Niestroj <arwed.niestroj@sakuu.com>\r\nSent: Monday, June 23, 2025 10:49 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nCc: Sukeerth Calastawad <sukeerth.calastawad@sakuu.com>\r\nSubject: Your inquiry to Sakuu - Corvex\r\n\r\n\r\nHello Jason,\r\n\r\n\r\n\r\nThank you for reaching out.\r\n\r\n\r\n\r\nSakuu is not a battery cell manufacturer, but we are developing, manufacturing, and selling equipment and processes for high volume battery cell and electrode manufacturing. Currently we are selling equipment to our customers that enables them to dry print battery electrodes at lower cost and carbon footprint.\r\n\r\nIn the next generation our equipment will print complete batteries of arbitrary shape and form, of any chemistry incl. solid state.\r\n\r\n\r\n\r\nOur inhouse developed Lithium metal chemistry (core performance data can be found here https://www.sakuu.com/batteries) is available to cell manufacturers for licensing.\r\n\r\n\r\n\r\nIf that is interesting to you, we should talk together with your preferred cell manufacturer.\r\n\r\n\r\n\r\n\r\n\r\nBest regards, Arwed\r\n\r\n\r\n\r\n\r\n\r\nArwed Niestroj\r\n\r\nSVP E-mobility and Product\r\n\r\narwed.niestroj@sakuu.com<mailto:arwed.niestroj@sakuu.com>\r\n\r\nwww.sakuu.com<http://www.sakuu.com/>\r\n\r\n5870 Hellyer Ave, Ste 50\r\n\r\n95138 San Jose, CA\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nHello looking for information on your battery product(s) that would/could be used as power source for drone motors, particularly in terms of pricing, performance, and form factor(s). Would like to talk soon to discuss, thank you.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n________________________________\r\n\r\nCONFIDENTIAL: This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If received in error, do not disclose, disseminate, distribute, or copy this e-mail. Please notify the sender immediately by return e-mail and delete this e-mail from your system.\r\n',0,0,0,0,0,0,'2025-06-23 18:29:00','2025-12-09 19:12:58','2025-12-09 19:12:58','2025-12-09 19:12:58',NULL,NULL,NULL),
(399,4,'<7b3321a051b6f5c851378077c94c5e14@mail.gmail.com>',NULL,NULL,'Project Rambo NDA','apatel@clearstreet.io','Aashay Patel','<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\"><meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\"><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:Montserrat;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:11.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle17\r\n	{mso-style-type:personal-compose;\r\n	font-family:Montserrat;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:11.0pt;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style></head><body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\"><div class=\"WordSection1\"><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Hi Rick,</span></p><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\"> </span></p><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Nice to meet you via email.</span></p><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\"> </span></p><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Please find attached the NDA for Project Rambo and let me know if you have any questions.</span></p><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\"> </span></p><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Best,</span></p><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Aashay</span></p><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\"> </span></p><p class=\"MsoNormal\"><b><span style=\"font-size:9.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">Aashay Patel</span></b></p><p class=\"MsoNormal\"><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">Investment Banking </span><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#63c895\">|</span><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\"> Vice President</span></p><p class=\"MsoNormal\"><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">4 World Trade Center </span><span style=\"font-size:9.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#63c895\">|</span><span style=\"font-size:9.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#06c0de\"> </span><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">New York, NY</span></p><p class=\"MsoNormal\"><b><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">M: </span></b><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">562.458.4250 </span><span style=\"font-size:9.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#63c895\">|</span><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#06c0de\"> </span><a href=\"http://clearstreet.io/\"><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#0563c1\">clearstreet.io</span></a></p><p class=\"MsoNormal\"> </p><p class=\"MsoNormal\"><a href=\"https://clearstreet.io/\"><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:blue;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"179\" height=\"28\" style=\"width:1.868in;height:.2916in\" id=\"_x0000_i1025\" src=\"https://lh6.googleusercontent.com/52TlPNLeMQcy8ztCA44KLfWC5yXcgjWCCgWhR3uGL6Z2RbFb96-LRc6Q-rISAVyGkpaA6r3--bcNdcADREsUr45OwrtP_eVhUMUf1HcRsAVRJopWqaTBnvb2z-vNIi9JytQc2F0B19Nh6pkWb32XtC0\"></span></a></p><p class=\"MsoNormal\"> </p><p class=\"MsoNormal\"> </p></div></body></html>\r\n\r\n<br>\r\n\r\n\r\n\r\n<b style=\"font-weight:normal\"><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\">\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p></b><p><span><span style=\"font-size:7.5pt;line-height:115%;font-family:Arial,sans-serif;color:black\">The information in this\r\nmessage, including any attachment(s), is confidential and intended for use only\r\nby the designated recipient(s). The message is the property of Clear Street LLC\r\n(FINRA, NFA, CFTC, CME, SIPC) or its affiliates (“Clear Street”) and may be\r\nprivileged, confidential, or otherwise protected from disclosure. If you are\r\nnot the intended recipient, please advise the sender immediately and delete the\r\nmessage and any attachments. Clear Street and its affiliates do not provide\r\ninvestment, legal, regulatory, tax, or compliance guidance. Clear Street makes\r\nno representation or warranty that any data or information contained in a\r\nmessage is accurate, complete, fair, or correct. Clear Street does not make\r\nrecommendations of a particular security, and the information contained in this\r\nmessage should not be considered a recommendation, an offer, or a solicitation\r\nof an offer to buy and sell securities.</span></span><span style=\"font-size:7.5pt;line-height:115%;font-family:Arial,sans-serif;color:black\"></span> <span style=\"font-size:7.5pt;line-height:115%;font-family:Arial,sans-serif;color:black\">Clear Street UK\r\nLimited (‘’CSUK’’) is authorised and regulated in the United Kingdom by the\r\nFinancial Conduct Authority. For information on CSUK, including terms of\r\nconditions, risks of investments, order handling and execution, conflicts of\r\ninterest and privacy arrangements please see <a href=\"https://www.clearstreet.io/legal/regulatory-disclosures\" target=\"_blank\">https://www.clearstreet.<span></span>io<wbr>/legal/regulatory-<span></span>disclosures</a>.<span></span></span></p>\r\n\r\n\r\n\r\n\r\n\r\n<b style=\"font-weight:normal\"><font size=\"1\"><br></font><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"1\"><span style=\"font-family:Arial,sans-serif;color:rgb(0,0,0);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">Copyright © 2025 Clear Street LLC. All rights reserved. Clear Street and the Shield Logo are Registered Trademarks of Clear Street LLC.</span></font></p></b><br>\r\n\r\n<span><span><span><span><span><span><div><span border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"524\" style=\"border-collapse:collapse;width:393pt\">\r\n <span width=\"524\" style=\"width:393pt\"></span>\r\n <span height=\"38\" style=\"height:28.5pt\">\r\n\r\n  <span height=\"38\" width=\"524\" style=\"height:28.5pt;width:393pt\"><br> ​​ </span>\r\n\r\n </span>\r\n</span><br></div></span></span></span>\r\n\r\n</span></span></span>','Hi Rick,\r\n\r\n\r\n\r\nNice to meet you via email.\r\n\r\n\r\n\r\nPlease find attached the NDA for Project Rambo and let me know if you have\r\nany questions.\r\n\r\n\r\n\r\nBest,\r\n\r\nAashay\r\n\r\n\r\n\r\n*Aashay Patel*\r\n\r\nInvestment Banking | Vice President\r\n\r\n4 World Trade Center | New York, NY\r\n\r\n*M: *562.458.4250 | clearstreet.io\r\n\r\n\r\n\r\n<https://clearstreet.io/>\r\n\r\n-- \r\n\r\n\r\n\r\n*\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n*\r\n\r\nThe information in this\r\nmessage, including any \r\nattachment(s), is confidential and intended for use only\r\nby the designated \r\nrecipient(s). The message is the property of Clear Street LLC\r\n(FINRA, NFA, \r\nCFTC, CME, SIPC) or its affiliates (“Clear Street”) and may be\r\nprivileged, \r\nconfidential, or otherwise protected from disclosure. If you are\r\nnot the \r\nintended recipient, please advise the sender immediately and delete the\r\nmessage and any attachments. Clear Street and its affiliates do not provide\r\ninvestment, legal, regulatory, tax, or compliance guidance. Clear Street \r\nmakes\r\nno representation or warranty that any data or information contained \r\nin a\r\nmessage is accurate, complete, fair, or correct. Clear Street does not \r\nmake\r\nrecommendations of a particular security, and the information \r\ncontained in this\r\nmessage should not be considered a recommendation, an \r\noffer, or a solicitation\r\nof an offer to buy and sell securities. Clear \r\nStreet UK\r\nLimited (‘’CSUK’’) is authorised and regulated in the United \r\nKingdom by the\r\nFinancial Conduct Authority. For information on CSUK, \r\nincluding terms of\r\nconditions, risks of investments, order handling and \r\nexecution, conflicts of\r\ninterest and privacy arrangements please see \r\nhttps://www.clearstreet.io/legal/regulatory-disclosures \r\n<https://www.clearstreet.io/legal/regulatory-disclosures>.\r\n\r\n\r\n\r\n\r\n\r\n*\r\n\r\n\r\nCopyright © 2025 Clear Street LLC. All rights reserved. Clear Street and \r\nthe Shield Logo are Registered Trademarks of Clear Street LLC.*\r\n\r\n\r\n\r\n \r\n \r\n\r\n  \r\n \r\n​​ \r\n\r\n ',0,0,0,0,0,0,'2025-06-23 19:11:17','2025-12-09 19:12:59','2025-12-09 19:12:59','2025-12-09 19:12:59',NULL,NULL,NULL),
(400,4,' <BL3PR20MB4924330292EA98C9FB6B35F4AF78A@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: Fw: Your inquiry to Sakuu - Corvex','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nDoes 1pm PST work for you?</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nIf not, I have good availability at other times:</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<a href=\"https://calendly.com/jason-corvexsystems\" id=\"LPlnk795985\">https://calendly.com/jason-corvexsystems</a></div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, June 24, 2025 5:42 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Fw: Your inquiry to Sakuu - Corvex</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks for this. Interesting for sure.</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nLet me know what works best Wednesday.</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks!</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick&nbsp;</div>\r\n<br>\r\n<div id=\"x_bloop_sign_1750768931830523136\" class=\"x_bloop_sign\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On June 23, 2025 at 2:29:47 PM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nAwesome, yeah Wednesday works for me.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nBots Unlimited is alot like KDE, low volume, much higher price points, and very narrow range of product motor wise. They aren\'t vertically integrated, and the only two motors that they do offer have been out of stock for months. They do however have a very\r\n good electronics product offering, which is much more straightforward to verticalize in the states. Every company making drone motors and robotic actuators in the United States right now is A) Heavily outsourcing subcomponent fabrication, B) Using foreign\r\n origin materials, and C) only addressing one niche of the demand gradient, we are the only ones on track to be the first fully vertically integrated, domestically sourced, and full service small electric motor manufacturer.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nAlso, just saw the updated Mavrix site, the aesthetic and mission statements are really nice.&nbsp;&nbsp;</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Monday, June 23, 2025 11:02 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Fw: Your inquiry to Sakuu - Corvex</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks for this.&nbsp;</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Interesting for sure.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">So today and tomorrow are family days…</div>\r\nWednesday or Thursday…\r\n<div>in the meantime, have you seen these guys…</div>\r\n<div><a href=\"https://botsunlimited.com/\">https://botsunlimited.com/</a><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div>Thanks again!<br>\r\n</div>\r\n<div>Rick</div>\r\n<div>&nbsp;<br>\r\n<div class=\"x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_airmail_on\">On June 23, 2025 at 2:00:37 PM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHey Rick,</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHere\'s an update on Sakuu.</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nIf you want to tie me in a little closer on your research and diligence with some of these other companies you\'re vetting, I\'d be more than happy to assist. I have a pretty broad understanding of the UAV space and the engineering challenges related to optimizing\r\n the various subcomponents in drone architectures.&nbsp;&nbsp;</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nFree to hop on a call today as well.</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nRegards,</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nJason</div>\r\n<div id=\"x_x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Arwed Niestroj &lt;arwed.niestroj@sakuu.com&gt;<br>\r\n<b>Sent:</b> Monday, June 23, 2025 10:49 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Cc:</b> Sukeerth Calastawad &lt;sukeerth.calastawad@sakuu.com&gt;<br>\r\n<b>Subject:</b> Your inquiry to Sakuu - Corvex</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div lang=\"EN-US\" style=\"background-color:#F5F8FA; word-wrap:break-word\">\r\n<div class=\"x_x_x_WordSection1\">\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"font-size:11.0pt\">Hello Jason,</span></p>\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"font-size:11.0pt\">Thank you for reaching out.</span></p>\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"font-size:11.0pt\">Sakuu is not a battery cell manufacturer, but we are developing, manufacturing, and selling equipment and processes for high volume battery cell and electrode manufacturing. Currently we are selling\r\n equipment to our customers that enables them to dry print battery electrodes at lower cost and carbon footprint.\r\n</span></p>\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"font-size:11.0pt\">In the next generation our equipment will print complete batteries of arbitrary shape and form, of any chemistry incl. solid state.</span></p>\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"font-size:11.0pt\">Our inhouse developed Lithium metal chemistry (core performance data can be found here\r\n<a href=\"https://www.sakuu.com/batteries\">https://www.sakuu.com/batteries</a>) is available to cell manufacturers for licensing.</span></p>\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"font-size:11.0pt\">If that is interesting to you, we should talk together with your preferred cell manufacturer.</span></p>\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"font-size:11.0pt\">Best regards, Arwed</span></p>\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"font-size:11.0pt\">Arwed Niestroj</span></p>\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"font-size:11.0pt\">SVP E-mobility and Product</span></p>\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"font-size:11.0pt\"><a href=\"mailto:arwed.niestroj@sakuu.com\"><span style=\"color:#467886\">arwed.niestroj@sakuu.com</span></a></span></p>\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"font-size:11.0pt\"><a href=\"http://www.sakuu.com/\"><span style=\"color:#467886\">www.sakuu.com</span></a></span></p>\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"font-size:11.0pt\">5870 Hellyer Ave, Ste 50</span></p>\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"font-size:11.0pt\">95138 San Jose, CA</span></p>\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<table class=\"x_x_x_MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\" style=\"padding:0in 0in 0in 0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"\">&nbsp;</span></p>\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"font-family:&quot;Arial&quot;,sans-serif\">Hello looking for information on your battery product(s) that would/could be used as power source for drone motors, particularly in terms of pricing, performance, and form factor(s). Would\r\n like to talk soon to discuss, thank you.</span></p>\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_x_x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n</div>\r\n<p><span style=\"font-size:10pt\"><br>\r\n</span></p>\r\n<p><span style=\"font-size:10pt\"><br>\r\n</span></p>\r\n<p><span style=\"font-size:10pt\"></span></p>\r\n<hr>\r\n<p></p>\r\n<p><span style=\"font-size:10pt\"><strong>CONFIDENTIAL:</strong> This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If received in error, do not disclose, disseminate,\r\n distribute, or copy this e-mail. Please notify the sender immediately by return e-mail and delete this e-mail from your system.</span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Does 1pm PST work for you?\r\n\r\nIf not, I have good availability at other times:\r\nhttps://calendly.com/jason-corvexsystems\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, June 24, 2025 5:42 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Fw: Your inquiry to Sakuu - Corvex\r\n\r\nThanks for this. Interesting for sure.\r\nLet me know what works best Wednesday.\r\nThanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn June 23, 2025 at 2:29:47 PM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nAwesome, yeah Wednesday works for me.\r\n\r\nBots Unlimited is alot like KDE, low volume, much higher price points, and very narrow range of product motor wise. They aren\'t vertically integrated, and the only two motors that they do offer have been out of stock for months. They do however have a very good electronics product offering, which is much more straightforward to verticalize in the states. Every company making drone motors and robotic actuators in the United States right now is A) Heavily outsourcing subcomponent fabrication, B) Using foreign origin materials, and C) only addressing one niche of the demand gradient, we are the only ones on track to be the first fully vertically integrated, domestically sourced, and full service small electric motor manufacturer.\r\n\r\nAlso, just saw the updated Mavrix site, the aesthetic and mission statements are really nice.\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Monday, June 23, 2025 11:02 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Fw: Your inquiry to Sakuu - Corvex\r\n\r\nThanks for this.\r\nInteresting for sure.\r\nSo today and tomorrow are family days…\r\nWednesday or Thursday…\r\nin the meantime, have you seen these guys…\r\nhttps://botsunlimited.com/\r\n\r\nThanks again!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn June 23, 2025 at 2:00:37 PM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nHey Rick,\r\n\r\nHere\'s an update on Sakuu.\r\n\r\nIf you want to tie me in a little closer on your research and diligence with some of these other companies you\'re vetting, I\'d be more than happy to assist. I have a pretty broad understanding of the UAV space and the engineering challenges related to optimizing the various subcomponents in drone architectures.\r\n\r\nFree to hop on a call today as well.\r\n\r\nRegards,\r\nJason\r\n________________________________\r\nFrom: Arwed Niestroj <arwed.niestroj@sakuu.com>\r\nSent: Monday, June 23, 2025 10:49 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nCc: Sukeerth Calastawad <sukeerth.calastawad@sakuu.com>\r\nSubject: Your inquiry to Sakuu - Corvex\r\n\r\n\r\nHello Jason,\r\n\r\n\r\n\r\nThank you for reaching out.\r\n\r\n\r\n\r\nSakuu is not a battery cell manufacturer, but we are developing, manufacturing, and selling equipment and processes for high volume battery cell and electrode manufacturing. Currently we are selling equipment to our customers that enables them to dry print battery electrodes at lower cost and carbon footprint.\r\n\r\nIn the next generation our equipment will print complete batteries of arbitrary shape and form, of any chemistry incl. solid state.\r\n\r\n\r\n\r\nOur inhouse developed Lithium metal chemistry (core performance data can be found here https://www.sakuu.com/batteries) is available to cell manufacturers for licensing.\r\n\r\n\r\n\r\nIf that is interesting to you, we should talk together with your preferred cell manufacturer.\r\n\r\n\r\n\r\n\r\n\r\nBest regards, Arwed\r\n\r\n\r\n\r\n\r\n\r\nArwed Niestroj\r\n\r\nSVP E-mobility and Product\r\n\r\narwed.niestroj@sakuu.com<mailto:arwed.niestroj@sakuu.com>\r\n\r\nwww.sakuu.com<http://www.sakuu.com/>\r\n\r\n5870 Hellyer Ave, Ste 50\r\n\r\n95138 San Jose, CA\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nHello looking for information on your battery product(s) that would/could be used as power source for drone motors, particularly in terms of pricing, performance, and form factor(s). Would like to talk soon to discuss, thank you.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n________________________________\r\n\r\nCONFIDENTIAL: This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If received in error, do not disclose, disseminate, distribute, or copy this e-mail. Please notify the sender immediately by return e-mail and delete this e-mail from your system.\r\n',0,0,0,0,0,0,'2025-06-24 13:57:08','2025-12-09 19:12:59','2025-12-09 19:12:59','2025-12-09 19:12:59',NULL,NULL,NULL),
(401,4,'<91504d41b60c5fa286f77de4b1944495@mail.gmail.com>',NULL,NULL,'RE: [External] Re: Project Rambo NDA','apatel@clearstreet.io','Aashay Patel','<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"><meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\"><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:Montserrat;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle19\r\n	{mso-style-type:personal-reply;\r\n	font-family:Montserrat;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:11.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style></head><body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\"><div class=\"WordSection1\"><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Thank you, Rick.</span></p><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\"> </span></p><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\">We will come back to you with a countersigned copy.</span></p><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\"> </span></p><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Additionally, can you please share the individuals that will require data room access?</span></p><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\"> </span></p><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Best,</span></p><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Aashay</span></p><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\"> </span></p><p class=\"MsoNormal\"><b><span style=\"font-size:9.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">Aashay Patel</span></b><span style=\"font-size:11.0pt\"></span></p><p class=\"MsoNormal\"><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">Investment Banking </span><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#63c895\">|</span><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\"> Vice President</span><span style=\"font-size:11.0pt\"></span></p><p class=\"MsoNormal\"><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">4 World Trade Center </span><span style=\"font-size:9.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#63c895\">|</span><span style=\"font-size:9.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#06c0de\"> </span><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">New York, NY</span><span style=\"font-size:11.0pt\"></span></p><p class=\"MsoNormal\"><b><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">M: </span></b><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">562.458.4250 </span><span style=\"font-size:9.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#63c895\">|</span><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#06c0de\"> </span><a href=\"http://clearstreet.io/\"><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#0563c1\">clearstreet.io</span></a><span style=\"font-size:11.0pt\"></span></p><p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"> </span></p><p class=\"MsoNormal\"><a href=\"https://clearstreet.io/\"><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"179\" height=\"28\" style=\"width:1.868in;height:.2916in\" id=\"_x0000_i1027\" src=\"https://lh6.googleusercontent.com/52TlPNLeMQcy8ztCA44KLfWC5yXcgjWCCgWhR3uGL6Z2RbFb96-LRc6Q-rISAVyGkpaA6r3--bcNdcADREsUr45OwrtP_eVhUMUf1HcRsAVRJopWqaTBnvb2z-vNIi9JytQc2F0B19Nh6pkWb32XtC0\"></span></a><span style=\"font-size:11.0pt\"></span></p><p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"> </span></p><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\"> </span></p><div style=\"border:none;border-top:solid #e1e1e1 1.0pt;padding:3.0pt 0in 0in 0in\"><p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt; <br><b>Sent:</b> Tuesday, June 24, 2025 8:14 AM<br><b>To:</b> Aashay Patel &lt;<a href=\"mailto:apatel@clearstreet.io\">apatel@clearstreet.io</a>&gt;<br><b>Cc:</b> <a href=\"mailto:joe@romeosix.com\">joe@romeosix.com</a>; Nicholas Hemmerly &lt;<a href=\"mailto:nhemmerly@clearstreet.io\">nhemmerly@clearstreet.io</a>&gt;<br><b>Subject:</b> [External] Re: Project Rambo NDA</span></p></div><p class=\"MsoNormal\"> </p><div id=\"bloop_customfont\"><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Good morning, all. </span></p></div><div id=\"bloop_customfont\"><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Nice to meet you as well (virtually).</span></p></div><div id=\"bloop_customfont\"><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thank you for this.</span></p></div><div id=\"bloop_customfont\"><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">See attached signed NDA.</span></p></div><div id=\"bloop_customfont\"><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">All my best,</span></p></div><div id=\"bloop_customfont\"><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick</span></p></div><p class=\"MsoNormal\"> </p><div id=\"bloop_sign_1750766680314955008\"><p class=\"MsoNormal\">Rick Mislan, PhD</p><div><p class=\"MsoNormal\"><a href=\"https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one\">https://mavrix.one</a></p></div><div><p class=\"MsoNormal\"><img border=\"0\" id=\"_x0000_i1026\" src=\"file://Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></p></div></div><p class=\"MsoNormal\"> </p><p class=\"airmailon\">On June 23, 2025 at 3:12:05<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM, Aashay Patel (<a href=\"mailto:apatel@clearstreet.io\">apatel@clearstreet.io</a>) wrote:</p><blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\"><div><div><div><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Hi Rick,</span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\"> </span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Nice to meet you via email.</span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\"> </span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Please find attached the NDA for Project Rambo and let me know if you have any questions.</span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\"> </span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Best,</span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Aashay</span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\"> </span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:9.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">Aashay Patel</span></b></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">Investment Banking </span><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#63c895\">|</span><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\"> Vice President</span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">4 World Trade Center </span><span style=\"font-size:9.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#63c895\">|</span><span style=\"font-size:9.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#06c0de\"> </span><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">New York, NY</span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">M: </span></b><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">562.458.4250 </span><span style=\"font-size:9.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#63c895\">|</span><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#06c0de\"> </span><a href=\"http://clearstreet.io\"><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#0563c1\">clearstreet.io</span></a></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"> </p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://clearstreet.io\"><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"179\" height=\"28\" style=\"width:1.868in;height:.2916in\" id=\"_x0000_i1025\" src=\"https://lh6.googleusercontent.com/52TlPNLeMQcy8ztCA44KLfWC5yXcgjWCCgWhR3uGL6Z2RbFb96-LRc6Q-rISAVyGkpaA6r3--bcNdcADREsUr45OwrtP_eVhUMUf1HcRsAVRJopWqaTBnvb2z-vNIi9JytQc2F0B19Nh6pkWb32XtC0\"></span></a></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"> </p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"> </p></div><p class=\"MsoNormal\"> </p><p><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:black\">The information in this message, including any attachment(s), is confidential and intended for use only by the designated recipient(s). The message is the property of Clear Street LLC (FINRA, NFA, CFTC, CME, SIPC) or its affiliates (“Clear Street”) and may be privileged, confidential, or otherwise protected from disclosure. If you are not the intended recipient, please advise the sender immediately and delete the message and any attachments. Clear Street and its affiliates do not provide investment, legal, regulatory, tax, or compliance guidance. Clear Street makes no representation or warranty that any data or information contained in a message is accurate, complete, fair, or correct. Clear Street does not make recommendations of a particular security, and the information contained in this message should not be considered a recommendation, an offer, or a solicitation of an offer to buy and sell securities.</span> <span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:black\">Clear Street UK Limited (‘’CSUK’’) is authorised and regulated in the United Kingdom by the Financial Conduct Authority. For information on CSUK, including terms of conditions, risks of investments, order handling and execution, conflicts of interest and privacy arrangements please see </span><a href=\"https://www.clearstreet.io/legal/regulatory-disclosures\" target=\"_blank\"><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif\">https://www.clearstreet.io/legal/regulatory-disclosures</span></a><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:black\">.</span></p><p class=\"MsoNormal\"> </p><p style=\"margin:0in\"><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:black\">Copyright © 2025 Clear Street LLC. All rights reserved. Clear Street and the Shield Logo are Registered Trademarks of Clear Street LLC.</span></p><p class=\"MsoNormal\"> </p><div><p class=\"MsoNormal\"><br><span style=\"font-family:&quot;Arial&quot;,sans-serif\"> ​​ </span> </p></div></div></div></blockquote></div></body></html>\r\n\r\n<br>\r\n\r\n\r\n\r\n<b style=\"font-weight:normal\"><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\">\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p></b><p><span><span style=\"font-size:7.5pt;line-height:115%;font-family:Arial,sans-serif;color:black\">The information in this\r\nmessage, including any attachment(s), is confidential and intended for use only\r\nby the designated recipient(s). The message is the property of Clear Street LLC\r\n(FINRA, NFA, CFTC, CME, SIPC) or its affiliates (“Clear Street”) and may be\r\nprivileged, confidential, or otherwise protected from disclosure. If you are\r\nnot the intended recipient, please advise the sender immediately and delete the\r\nmessage and any attachments. Clear Street and its affiliates do not provide\r\ninvestment, legal, regulatory, tax, or compliance guidance. Clear Street makes\r\nno representation or warranty that any data or information contained in a\r\nmessage is accurate, complete, fair, or correct. Clear Street does not make\r\nrecommendations of a particular security, and the information contained in this\r\nmessage should not be considered a recommendation, an offer, or a solicitation\r\nof an offer to buy and sell securities.</span></span><span style=\"font-size:7.5pt;line-height:115%;font-family:Arial,sans-serif;color:black\"></span> <span style=\"font-size:7.5pt;line-height:115%;font-family:Arial,sans-serif;color:black\">Clear Street UK\r\nLimited (‘’CSUK’’) is authorised and regulated in the United Kingdom by the\r\nFinancial Conduct Authority. For information on CSUK, including terms of\r\nconditions, risks of investments, order handling and execution, conflicts of\r\ninterest and privacy arrangements please see <a href=\"https://www.clearstreet.io/legal/regulatory-disclosures\" target=\"_blank\">https://www.clearstreet.<span></span>io<wbr>/legal/regulatory-<span></span>disclosures</a>.<span></span></span></p>\r\n\r\n\r\n\r\n\r\n\r\n<b style=\"font-weight:normal\"><font size=\"1\"><br></font><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"1\"><span style=\"font-family:Arial,sans-serif;color:rgb(0,0,0);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">Copyright © 2025 Clear Street LLC. All rights reserved. Clear Street and the Shield Logo are Registered Trademarks of Clear Street LLC.</span></font></p></b><br>\r\n\r\n<span><span><span><span><span><span><div><span border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"524\" style=\"border-collapse:collapse;width:393pt\">\r\n <span width=\"524\" style=\"width:393pt\"></span>\r\n <span height=\"38\" style=\"height:28.5pt\">\r\n\r\n  <span height=\"38\" width=\"524\" style=\"height:28.5pt;width:393pt\"><br> ​​ </span>\r\n\r\n </span>\r\n</span><br></div></span></span></span>\r\n\r\n</span></span></span>','Thank you, Rick.\r\n\r\n\r\n\r\nWe will come back to you with a countersigned copy.\r\n\r\n\r\n\r\nAdditionally, can you please share the individuals that will require data\r\nroom access?\r\n\r\n\r\n\r\nBest,\r\n\r\nAashay\r\n\r\n\r\n\r\n*Aashay Patel*\r\n\r\nInvestment Banking | Vice President\r\n\r\n4 World Trade Center | New York, NY\r\n\r\n*M: *562.458.4250 | clearstreet.io\r\n\r\n\r\n\r\n<https://clearstreet.io/>\r\n\r\n\r\n\r\n\r\n\r\n*From:* Rick <rick@mavrix.one>\r\n*Sent:* Tuesday, June 24, 2025 8:14 AM\r\n*To:* Aashay Patel <apatel@clearstreet.io>\r\n*Cc:* joe@romeosix.com; Nicholas Hemmerly <nhemmerly@clearstreet.io>\r\n*Subject:* [External] Re: Project Rambo NDA\r\n\r\n\r\n\r\nGood morning, all.\r\n\r\nNice to meet you as well (virtually).\r\n\r\nThank you for this.\r\n\r\nSee attached signed NDA.\r\n\r\nAll my best,\r\n\r\nRick\r\n\r\n\r\n\r\nRick Mislan, PhD\r\n\r\nhttps://mavrix.one <https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one>\r\n\r\n\r\n\r\nOn June 23, 2025 at 3:12:05 PM, Aashay Patel (apatel@clearstreet.io) wrote:\r\n\r\nHi Rick,\r\n\r\n\r\n\r\nNice to meet you via email.\r\n\r\n\r\n\r\nPlease find attached the NDA for Project Rambo and let me know if you have\r\nany questions.\r\n\r\n\r\n\r\nBest,\r\n\r\nAashay\r\n\r\n\r\n\r\n*Aashay Patel*\r\n\r\nInvestment Banking | Vice President\r\n\r\n4 World Trade Center | New York, NY\r\n\r\n*M: *562.458.4250 | clearstreet.io\r\n<http://clearstreet.io>\r\n\r\n\r\n\r\n<https://clearstreet.io>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThe information in this message, including any attachment(s), is\r\nconfidential and intended for use only by the designated recipient(s). The\r\nmessage is the property of Clear Street LLC (FINRA, NFA, CFTC, CME, SIPC)\r\nor its affiliates (“Clear Street”) and may be privileged, confidential, or\r\notherwise protected from disclosure. If you are not the intended recipient,\r\nplease advise the sender immediately and delete the message and any\r\nattachments. Clear Street and its affiliates do not provide investment,\r\nlegal, regulatory, tax, or compliance guidance. Clear Street makes no\r\nrepresentation or warranty that any data or information contained in a\r\nmessage is accurate, complete, fair, or correct. Clear Street does not make\r\nrecommendations of a particular security, and the information contained in\r\nthis message should not be considered a recommendation, an offer, or a\r\nsolicitation of an offer to buy and sell securities. Clear Street UK\r\nLimited (‘’CSUK’’) is authorised and regulated in the United Kingdom by the\r\nFinancial Conduct Authority. For information on CSUK, including terms of\r\nconditions, risks of investments, order handling and execution, conflicts\r\nof interest and privacy arrangements please see\r\nhttps://www.clearstreet.io/legal/regulatory-disclosures\r\n<https://www.clearstreet.io/legal/regulatory-disclosures>\r\n.\r\n\r\n\r\n\r\nCopyright © 2025 Clear Street LLC. All rights reserved. Clear Street and\r\nthe Shield Logo are Registered Trademarks of Clear Street LLC.\r\n\r\n\r\n\r\n\r\n​​\r\n\r\n-- \r\n\r\n\r\n\r\n*\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n*\r\n\r\nThe information in this\r\nmessage, including any \r\nattachment(s), is confidential and intended for use only\r\nby the designated \r\nrecipient(s). The message is the property of Clear Street LLC\r\n(FINRA, NFA, \r\nCFTC, CME, SIPC) or its affiliates (“Clear Street”) and may be\r\nprivileged, \r\nconfidential, or otherwise protected from disclosure. If you are\r\nnot the \r\nintended recipient, please advise the sender immediately and delete the\r\nmessage and any attachments. Clear Street and its affiliates do not provide\r\ninvestment, legal, regulatory, tax, or compliance guidance. Clear Street \r\nmakes\r\nno representation or warranty that any data or information contained \r\nin a\r\nmessage is accurate, complete, fair, or correct. Clear Street does not \r\nmake\r\nrecommendations of a particular security, and the information \r\ncontained in this\r\nmessage should not be considered a recommendation, an \r\noffer, or a solicitation\r\nof an offer to buy and sell securities. Clear \r\nStreet UK\r\nLimited (‘’CSUK’’) is authorised and regulated in the United \r\nKingdom by the\r\nFinancial Conduct Authority. For information on CSUK, \r\nincluding terms of\r\nconditions, risks of investments, order handling and \r\nexecution, conflicts of\r\ninterest and privacy arrangements please see \r\nhttps://www.clearstreet.io/legal/regulatory-disclosures \r\n<https://www.clearstreet.io/legal/regulatory-disclosures>.\r\n\r\n\r\n\r\n\r\n\r\n*\r\n\r\n\r\nCopyright © 2025 Clear Street LLC. All rights reserved. Clear Street and \r\nthe Shield Logo are Registered Trademarks of Clear Street LLC.*\r\n\r\n\r\n\r\n \r\n \r\n\r\n  \r\n \r\n​​ \r\n\r\n ',0,0,0,0,0,0,'2025-06-24 16:16:15','2025-12-09 19:13:00','2025-12-09 19:13:00','2025-12-09 19:13:00',NULL,NULL,NULL),
(402,4,'<6IxcTX_5RXiRMZBN0pRMyQ@geopod-ismtpd-canary-0>',NULL,NULL,'Confirmed: 30 Minute Meeting with Jason Blick on Wednesday, June 25, 2025','notifications@calendly.com','\"Jason Blick (via Calendly)\"','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif\'>\r\n  <head style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif\'>\r\n  <meta name=\"viewport\" content=\"width=device-width\" style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif\'>\r\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif\'>\r\n  <title style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif\'>Calendly</title>\r\n\r\n  \r\n\r\n<style>a:visited{color:rgb(0, 105, 255)}\r\na:link{color:rgb(0, 105, 255)}\r\n@media only screen and (max-width: 600px) {\r\na[class=\"btn\"]{display:block !important;margin-bottom:10px !important;background-image:none !important;margin-right:0 !important}\r\ndiv[class=\"column\"]{width:auto !important;float:none !important}\r\ntable.social div[class=\"column\"]{width:auto !important}\r\n}</style></head>\r\n\r\n\r\n  <body bgcolor=\"#ffffff\" style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:none;height:100%;width:100% !important;background-color: #ffffff\'>\r\n    <div class=\"main-wrapper\" style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;padding: 20px 0; margin: 0 auto; max-width: 600px;\'>\r\n      <!-- BODY -->\r\n\r\n<table class=\"body-wrap\" style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;width:80%;margin:20px auto 0;margin: 0 auto 0; font-size: 16px;\'>\r\n  <tr style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif\'>\r\n    <td style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;color: rgb(26, 26, 26); line-height: 22px; padding-top: 30px;\'>\r\n      \r\n        <div class=\"user-customizable-area\" style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif\'>\r\n<p style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;font-size:16px;margin-top:12px\'>Hi Rick ,</p><p style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;font-size:16px;margin-top:12px\'>Your 30 Minute Meeting with Jason Blick at 04:00pm (Eastern Time - US &amp; Canada) on Wednesday, June 25, 2025 is scheduled.</p><p style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;font-size:16px;margin-top:12px\'></p><p style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;font-size:16px;margin-top:12px\'><strong style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif\'>Location:</strong>\r\n</p><p style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;font-size:16px;margin-top:12px;margin-bottom: 10px\'>This is a Zoom web conference.</p>\r\n<div style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;border-left: 4px solid #dadada; padding-left: 20px; padding-top: 5px; padding-bottom: 18px;\'>\r\n  <p style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;font-size:16px;margin-top:12px;font-size: 86%\'>\r\n    <strong style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif\'>You can join this meeting from your computer, tablet, or smartphone.</strong><br style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif\'>\r\n    <a href=\"https://us05web.zoom.us/j/85257580552?pwd=NaXweaFbGqMIjBGzxRtWVyrLDv9Q1S.1\" style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;color:rgb(0, 105, 255)\'>https://us05web.zoom.us/j/85257580552?pwd=NaXweaFbGqMIjBGzxRtWVyrLDv9Q1S.1</a><br style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif\'>\r\n    \r\n      <br style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif\'>\r\n        <strong style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif\'>Password:</strong> ktp09k\r\n      <br style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif\'>\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n  </p>\r\n</div><p style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;font-size:16px;margin-top:12px\'></p>\r\n</div>\r\n\r\n\r\n\r\n\r\n<div class=\"section\" style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;margin-top:15px;margin-bottom:40px;text-align:center\'>\r\n<div class=\"add_to_label\" style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;font-size:12px;font-weight:bold;line-height:14px;text-align:center\'>\r\nThis event should automatically show up on your calendar. If needed, you can still add it manually:\r\n</div>\r\n<a href=\"https://calendly.com/invitees/754ad8c1-cc82-4778-9954-3ebae8ee4b91/ics\" style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;color:rgb(0, 105, 255);text-align: center; display: inline-block; width: 220px; padding: 15px 0; margin: 20px 5px 0 5px; color: #fff; font-size: 14px; text-decoration: none; border-width: 1px; border-style: solid; mso-padding-alt: 0; mso-border-width-alt: 15px; border-color: #0069ff; background-color: #0069ff;\' target=\"_blank\">\r\nAdd to Calendar\r\n</a>\r\n</div>\r\n\r\n\r\n<div class=\"actions-block\" style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;font-size:12px;line-height:14px;text-align:center\'>\r\n<div class=\"title\" style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;font-weight:bold\'>\r\nMake changes to this event:\r\n</div>\r\n<a class=\"action\" href=\"https://calendly.com/reschedulings/754ad8c1-cc82-4778-9954-3ebae8ee4b91\" target=\"_blank\" style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;color:rgb(0, 105, 255);display:inline-block;min-width:140px;margin:10px 5px 0 5px;padding:8px;text-align:center;text-decoration:none;background-color:transparent;border:1px solid #d0d0d0;color:rgba(26, 26, 26, 0.6)\'>\r\nReschedule\r\n</a>\r\n<!--[if mso]>\r\n<span>\r\n&nbsp;\r\n</span>\r\n<![endif]-->\r\n<a class=\"action\" href=\"https://calendly.com/cancellations/754ad8c1-cc82-4778-9954-3ebae8ee4b91\" target=\"_blank\" style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;color:rgb(0, 105, 255);display:inline-block;min-width:140px;margin:10px 5px 0 5px;padding:8px;text-align:center;text-decoration:none;background-color:transparent;border:1px solid #d0d0d0;color:rgba(26, 26, 26, 0.6)\'>\r\nCancel\r\n</a>\r\n</div>\r\n\r\n\r\n\r\n    </td>\r\n  </tr>\r\n</table><!-- /BODY -->\r\n\r\n<!-- FOOTER -->\r\n  <table class=\"footer-wrap\" style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;width:80%;margin:0 auto;clear:both !important;margin: 30px auto 0; border-top: 1px dashed #dadada;\'>\r\n    <tr style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif\'>\r\n      <td style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;color: rgba(26, 26, 26, 0.6); padding-top: 15px;\'>\r\n\r\n        <!-- FOOTER CONTENT -->\r\n        <p style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;font-size: 12px; text-align: center;\'>\r\n          <img alt=\"Calendly\" src=\"http://assets.calendly.com/assets/emails/logo-email-3322ed484eb79b41f3d51a68172b8437ea542daace4e1211373108c52cc6abf7.png\" width=\"60\" height=\"60\" style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;max-width:100%\'>\r\n          <br style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif\'>\r\n              <a href=\"https://calendly.com/?utm_source=invitee&amp;utm_medium=email&amp;utm_campaign=sign_up\" style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;color:rgb(0, 105, 255)\'>Sign up for your own Calendly page</a>\r\n            </p><p style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;font-size: 12px; text-align: center; line-height: 22px\'>\r\n              <a style=\'font-family:\"Proxima Nova\", \"proxima-nova\", Helvetica, Arial sans-serif;color:rgb(0, 105, 255);color: rgba(26, 26, 26, 0.61)\' href=\"https://calendly.com/notification_subscriptions/754ad8c1-cc82-4778-9954-3ebae8ee4b91/opt_out?owner_uuid=0cdc3e57-1d28-479e-a39e-a093dcce8c12&amp;recipient_id=1320154985&amp;recipient_email=rick%40mavrix.one&amp;opt_out_method=button&amp;event_uuid=e8871169-f620-4bd6-950b-29e413315b22&amp;event_type_uuid=3e1794d0-5716-42e5-a006-029baba98a0c\">Unsubscribe from notifications about this event</a>\r\n            </p>\r\n        \r\n        <!-- /FOOTER CONTENT -->\r\n      </td>\r\n    </tr>\r\n  </table>\r\n<!-- /FOOTER -->    </div>\r\n  <img src=\"https://click.calendly.com/wf/open?upn=u001.D6mC8SG6iITw2GIzPjAtwwzTvs-2FRotwEN8HLI6Ao7S7clJWVJoamBpgeeB5-2BRfrCzvO6dh3Tbxy74iGXA4HUAVmFaIvrw-2BO4UK5bwlprPPPMF6uNi3AARSmxWzqMx4q9xt07WxvXRFdt7Xj5cZhBVPLKll9-2BQk5sZGe3-2FxR6IVpfU5qv3KioqplesZwPJaggR6m55bb3b5C-2FoRdZhaRukQ-3D-3D\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/></body>\r\n</html>','\r\n\r\n  \r\n  \r\n  \r\n  Calendly\r\n\r\n  \r\n\r\na:visited{color:rgb(0, 105, 255)}\r\na:link{color:rgb(0, 105, 255)}\r\n@media only screen and (max-width: 600px) {\r\na[class=\"btn\"]{display:block !important;margin-bottom:10px !important;background-image:none !important;margin-right:0 !important}\r\ndiv[class=\"column\"]{width:auto !important;float:none !important}\r\ntable.social div[class=\"column\"]{width:auto !important}\r\n}\r\n\r\n\r\n  \r\n    \r\n      \r\n\r\n\r\n  \r\n    \r\n      \r\n        \r\nHi Rick ,Your 30 Minute Meeting with Jason Blick at 04:00pm (Eastern Time - US &amp; Canada) on Wednesday, June 25, 2025 is scheduled.Location:\r\nThis is a Zoom web conference.\r\n\r\n  \r\n    You can join this meeting from your computer, tablet, or smartphone.\r\n    https://us05web.zoom.us/j/85257580552?pwd=NaXweaFbGqMIjBGzxRtWVyrLDv9Q1S.1\r\n    \r\n      \r\n        Password: ktp09k\r\n      \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n  \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis event should automatically show up on your calendar. If needed, you can still add it manually:\r\n\r\n\r\nAdd to Calendar\r\n\r\n\r\n\r\n\r\n\r\n\r\nMake changes to this event:\r\n\r\n\r\nReschedule\r\n\r\n\r\n\r\nCancel\r\n\r\n\r\n\r\n\r\n\r\n    \r\n  \r\n\r\n\r\n\r\n  \r\n    \r\n      \r\n\r\n        \r\n        \r\n          \r\n          \r\n              Sign up for your own Calendly page\r\n            \r\n              Unsubscribe from notifications about this event\r\n            \r\n        \r\n        \r\n      \r\n    \r\n  \r\n    \r\n  \r\n',0,0,0,0,0,0,'2025-06-24 17:33:28','2025-12-09 19:13:00','2025-12-09 19:13:00','2025-12-09 19:13:00',NULL,NULL,NULL),
(403,4,'<62b5e3c6af3ddca2c83016ab24f5ddcd@mail.gmail.com>',NULL,NULL,'RE: [External] Re: Project Rambo NDA','apatel@clearstreet.io','Aashay Patel','<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"><meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\"><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:Montserrat;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.gmailquote, li.gmailquote, div.gmailquote\r\n	{mso-style-name:gmail_quote;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmailon;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle23\r\n	{mso-style-type:personal-compose;\r\n	font-family:Montserrat;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style></head><body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\"><div class=\"WordSection1\"><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Thank you, Rick.</span></p><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\"> </span></p><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Please find attached the fully executed NDA and we will provide you with data room access by EOD.</span></p><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\"> </span></p><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Best,</span></p><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Aashay</span></p><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\"> </span></p><div><p class=\"MsoNormal\"><b><span style=\"font-size:9.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">Aashay Patel</span></b><span style=\"font-size:11.0pt\"></span></p><p class=\"MsoNormal\"><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">Investment Banking </span><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#63c895\">|</span><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\"> Vice President</span><span style=\"font-size:11.0pt\"></span></p><p class=\"MsoNormal\"><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">4 World Trade Center </span><span style=\"font-size:9.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#63c895\">|</span><span style=\"font-size:9.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#06c0de\"> </span><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">New York, NY</span><span style=\"font-size:11.0pt\"></span></p><p class=\"MsoNormal\"><b><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">M: </span></b><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">562.458.4250 </span><span style=\"font-size:9.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#63c895\">|</span><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#06c0de\"> </span><span style=\"font-size:11.0pt\"><a href=\"http://clearstreet.io/\"><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#0563c1\">clearstreet.io</span></a></span></p><p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"> </span></p><p class=\"MsoNormal\"><a href=\"https://clearstreet.io/\"><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"179\" height=\"28\" style=\"width:1.868in;height:.2916in\" id=\"_x0000_i1029\" src=\"https://lh6.googleusercontent.com/52TlPNLeMQcy8ztCA44KLfWC5yXcgjWCCgWhR3uGL6Z2RbFb96-LRc6Q-rISAVyGkpaA6r3--bcNdcADREsUr45OwrtP_eVhUMUf1HcRsAVRJopWqaTBnvb2z-vNIi9JytQc2F0B19Nh6pkWb32XtC0\"></span></a><span style=\"font-size:11.0pt\"></span></p><p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"> </span></p></div><p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Montserrat\"> </span></p><div><div style=\"border:none;border-top:solid #e1e1e1 1.0pt;padding:3.0pt 0in 0in 0in\"><p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt; <br><b>Sent:</b> Tuesday, June 24, 2025 1:25 PM<br><b>To:</b> Aashay Patel &lt;<a href=\"mailto:apatel@clearstreet.io\">apatel@clearstreet.io</a>&gt;<br><b>Subject:</b> RE: [External] Re: Project Rambo NDA</span></p></div></div><p class=\"MsoNormal\"> </p><p class=\"MsoNormal\">Great!</p><div><p class=\"MsoNormal\">At this point, just me.  </p><div><p class=\"MsoNormal\">Thank you!<br>Rick</p></div><div><p class=\"MsoNormal\"> </p><div><p class=\"MsoNormal\">Rick Mislan, PhD</p><div><p class=\"MsoNormal\"><a href=\"https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one\">https://mavrix.one</a></p></div><div><p class=\"MsoNormal\"><img border=\"0\" id=\"_x0000_i1028\" src=\"file://Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></p></div></div><p class=\"gmailquote\"><span style=\"color:black\">On June 24, 2025 at 12:16:15</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"color:black\">PM, Aashay Patel (<a href=\"mailto:apatel@clearstreet.io\">apatel@clearstreet.io</a>) wrote:</span></p><blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\"><div><div><div><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Thank you, Rick.</span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\"> </span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\">We will come back to you with a countersigned copy.</span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\"> </span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Additionally, can you please share the individuals that will require data room access?</span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\"> </span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Best,</span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Aashay</span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\"> </span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:9.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">Aashay Patel</span></b></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">Investment Banking </span><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#63c895\">|</span><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\"> Vice President</span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">4 World Trade Center </span><span style=\"font-size:9.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#63c895\">|</span><span style=\"font-size:9.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#06c0de\"> </span><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">New York, NY</span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">M: </span></b><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">562.458.4250 </span><span style=\"font-size:9.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#63c895\">|</span><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#06c0de\"> </span><a href=\"http://clearstreet.io/\"><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#0563c1\">clearstreet.io</span></a></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\"> </span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://clearstreet.io\"><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"179\" height=\"28\" style=\"width:1.868in;height:.2916in\" id=\"_x0000_i1027\" src=\"https://lh6.googleusercontent.com/52TlPNLeMQcy8ztCA44KLfWC5yXcgjWCCgWhR3uGL6Z2RbFb96-LRc6Q-rISAVyGkpaA6r3--bcNdcADREsUr45OwrtP_eVhUMUf1HcRsAVRJopWqaTBnvb2z-vNIi9JytQc2F0B19Nh6pkWb32XtC0\"></span></a></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\"> </span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\"> </span></p><div style=\"border:none;border-top:solid #e1e1e1 1.0pt;padding:3.0pt 0in 0in 0in\"><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; <br><b>Sent:</b> Tuesday, June 24, 2025 8:14 AM<br><b>To:</b> Aashay Patel &lt;<a href=\"mailto:apatel@clearstreet.io\">apatel@clearstreet.io</a>&gt;<br><b>Cc:</b> <a href=\"mailto:joe@romeosix.com\">joe@romeosix.com</a>; Nicholas Hemmerly &lt;<a href=\"mailto:nhemmerly@clearstreet.io\">nhemmerly@clearstreet.io</a>&gt;<br><b>Subject:</b> [External] Re: Project Rambo NDA</span></p></div><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"> </p><div><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Good morning, all. </span></p></div><div><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Nice to meet you as well (virtually).</span></p></div><div><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thank you for this.</span></p></div><div><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">See attached signed NDA.</span></p></div><div><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">All my best,</span></p></div><div><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick</span></p></div><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"> </p><div><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Rick Mislan, PhD</p><div><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one\">https://mavrix.one</a></p></div><div><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><img border=\"0\" id=\"_x0000_i1026\" src=\"file://Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></p></div></div><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"> </p><p class=\"airmailon\">On June 23, 2025 at 3:12:05<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM, Aashay Patel (<a href=\"mailto:apatel@clearstreet.io\">apatel@clearstreet.io</a>) wrote:</p><blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\"><div><div><div><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Hi Rick,</span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\"> </span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Nice to meet you via email.</span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\"> </span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Please find attached the NDA for Project Rambo and let me know if you have any questions.</span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\"> </span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Best,</span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\">Aashay</span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:Montserrat\"> </span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:9.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">Aashay Patel</span></b></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">Investment Banking </span><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#63c895\">|</span><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\"> Vice President</span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">4 World Trade Center </span><span style=\"font-size:9.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#63c895\">|</span><span style=\"font-size:9.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#06c0de\"> </span><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">New York, NY</span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">M: </span></b><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#323e48\">562.458.4250 </span><span style=\"font-size:9.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#63c895\">|</span><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#06c0de\"> </span><a href=\"http://clearstreet.io\"><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#0563c1\">clearstreet.io</span></a></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"> </p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://clearstreet.io\"><span style=\"font-size:8.5pt;font-family:&quot;Arial&quot;,sans-serif;border:none windowtext 1.0pt;padding:0in;text-decoration:none\"><img border=\"0\" width=\"179\" height=\"28\" style=\"width:1.868in;height:.2916in\" id=\"_x0000_i1025\" src=\"https://lh6.googleusercontent.com/52TlPNLeMQcy8ztCA44KLfWC5yXcgjWCCgWhR3uGL6Z2RbFb96-LRc6Q-rISAVyGkpaA6r3--bcNdcADREsUr45OwrtP_eVhUMUf1HcRsAVRJopWqaTBnvb2z-vNIi9JytQc2F0B19Nh6pkWb32XtC0\"></span></a></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"> </p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"> </p></div><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"> </p><p><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:black\">The information in this message, including any attachment(s), is confidential and intended for use only by the designated recipient(s). The message is the property of Clear Street LLC (FINRA, NFA, CFTC, CME, SIPC) or its affiliates (“Clear Street”) and may be privileged, confidential, or otherwise protected from disclosure. If you are not the intended recipient, please advise the sender immediately and delete the message and any attachments. Clear Street and its affiliates do not provide investment, legal, regulatory, tax, or compliance guidance. Clear Street makes no representation or warranty that any data or information contained in a message is accurate, complete, fair, or correct. Clear Street does not make recommendations of a particular security, and the information contained in this message should not be considered a recommendation, an offer, or a solicitation of an offer to buy and sell securities.</span> <span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:black\">Clear Street UK Limited (‘’CSUK’’) is authorised and regulated in the United Kingdom by the Financial Conduct Authority. For information on CSUK, including terms of conditions, risks of investments, order handling and execution, conflicts of interest and privacy arrangements please see </span><a href=\"https://www.clearstreet.io/legal/regulatory-disclosures\" target=\"_blank\"><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif\">https://www.clearstreet.io/legal/regulatory-disclosures</span></a><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:black\">.</span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"> </p><p style=\"margin:0in\"><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:black\">Copyright © 2025 Clear Street LLC. All rights reserved. Clear Street and the Shield Logo are Registered Trademarks of Clear Street LLC.</span></p><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"> </p><div><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><br><span style=\"font-family:&quot;Arial&quot;,sans-serif\"> ​​ </span> </p></div></div></div></blockquote></div><p class=\"MsoNormal\"> </p><p><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:black\">The information in this message, including any attachment(s), is confidential and intended for use only by the designated recipient(s). The message is the property of Clear Street LLC (FINRA, NFA, CFTC, CME, SIPC) or its affiliates (“Clear Street”) and may be privileged, confidential, or otherwise protected from disclosure. If you are not the intended recipient, please advise the sender immediately and delete the message and any attachments. Clear Street and its affiliates do not provide investment, legal, regulatory, tax, or compliance guidance. Clear Street makes no representation or warranty that any data or information contained in a message is accurate, complete, fair, or correct. Clear Street does not make recommendations of a particular security, and the information contained in this message should not be considered a recommendation, an offer, or a solicitation of an offer to buy and sell securities.</span> <span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:black\">Clear Street UK Limited (‘’CSUK’’) is authorised and regulated in the United Kingdom by the Financial Conduct Authority. For information on CSUK, including terms of conditions, risks of investments, order handling and execution, conflicts of interest and privacy arrangements please see <a href=\"https://www.clearstreet.io/legal/regulatory-disclosures\" target=\"_blank\">https://www.clearstreet.io/legal/regulatory-disclosures</a>.</span></p><p class=\"MsoNormal\"> </p><p style=\"margin:0in\"><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:black\">Copyright © 2025 Clear Street LLC. All rights reserved. Clear Street and the Shield Logo are Registered Trademarks of Clear Street LLC.</span></p><p class=\"MsoNormal\"> </p><div><p class=\"MsoNormal\"><br><span style=\"font-family:&quot;Arial&quot;,sans-serif\"> ​​ </span> </p></div></div></div></blockquote></div></div></div></body></html>\r\n\r\n<br>\r\n\r\n\r\n\r\n<b style=\"font-weight:normal\"><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\">\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p></b><p><span><span style=\"font-size:7.5pt;line-height:115%;font-family:Arial,sans-serif;color:black\">The information in this\r\nmessage, including any attachment(s), is confidential and intended for use only\r\nby the designated recipient(s). The message is the property of Clear Street LLC\r\n(FINRA, NFA, CFTC, CME, SIPC) or its affiliates (“Clear Street”) and may be\r\nprivileged, confidential, or otherwise protected from disclosure. If you are\r\nnot the intended recipient, please advise the sender immediately and delete the\r\nmessage and any attachments. Clear Street and its affiliates do not provide\r\ninvestment, legal, regulatory, tax, or compliance guidance. Clear Street makes\r\nno representation or warranty that any data or information contained in a\r\nmessage is accurate, complete, fair, or correct. Clear Street does not make\r\nrecommendations of a particular security, and the information contained in this\r\nmessage should not be considered a recommendation, an offer, or a solicitation\r\nof an offer to buy and sell securities.</span></span><span style=\"font-size:7.5pt;line-height:115%;font-family:Arial,sans-serif;color:black\"></span> <span style=\"font-size:7.5pt;line-height:115%;font-family:Arial,sans-serif;color:black\">Clear Street UK\r\nLimited (‘’CSUK’’) is authorised and regulated in the United Kingdom by the\r\nFinancial Conduct Authority. For information on CSUK, including terms of\r\nconditions, risks of investments, order handling and execution, conflicts of\r\ninterest and privacy arrangements please see <a href=\"https://www.clearstreet.io/legal/regulatory-disclosures\" target=\"_blank\">https://www.clearstreet.<span></span>io<wbr>/legal/regulatory-<span></span>disclosures</a>.<span></span></span></p>\r\n\r\n\r\n\r\n\r\n\r\n<b style=\"font-weight:normal\"><font size=\"1\"><br></font><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"1\"><span style=\"font-family:Arial,sans-serif;color:rgb(0,0,0);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">Copyright © 2025 Clear Street LLC. All rights reserved. Clear Street and the Shield Logo are Registered Trademarks of Clear Street LLC.</span></font></p></b><br>\r\n\r\n<span><span><span><span><span><span><div><span border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"524\" style=\"border-collapse:collapse;width:393pt\">\r\n <span width=\"524\" style=\"width:393pt\"></span>\r\n <span height=\"38\" style=\"height:28.5pt\">\r\n\r\n  <span height=\"38\" width=\"524\" style=\"height:28.5pt;width:393pt\"><br> ​​ </span>\r\n\r\n </span>\r\n</span><br></div></span></span></span>\r\n\r\n</span></span></span>','Thank you, Rick.\r\n\r\n\r\n\r\nPlease find attached the fully executed NDA and we will provide you with\r\ndata room access by EOD.\r\n\r\n\r\n\r\nBest,\r\n\r\nAashay\r\n\r\n\r\n\r\n*Aashay Patel*\r\n\r\nInvestment Banking | Vice President\r\n\r\n4 World Trade Center | New York, NY\r\n\r\n*M: *562.458.4250 | clearstreet.io\r\n\r\n\r\n\r\n<https://clearstreet.io/>\r\n\r\n\r\n\r\n\r\n\r\n*From:* Rick <rick@mavrix.one>\r\n*Sent:* Tuesday, June 24, 2025 1:25 PM\r\n*To:* Aashay Patel <apatel@clearstreet.io>\r\n*Subject:* RE: [External] Re: Project Rambo NDA\r\n\r\n\r\n\r\nGreat!\r\n\r\nAt this point, just me.\r\n\r\nThank you!\r\nRick\r\n\r\n\r\n\r\nRick Mislan, PhD\r\n\r\nhttps://mavrix.one <https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one>\r\n\r\nOn June 24, 2025 at 12:16:15 PM, Aashay Patel (apatel@clearstreet.io) wrote:\r\n\r\nThank you, Rick.\r\n\r\n\r\n\r\nWe will come back to you with a countersigned copy.\r\n\r\n\r\n\r\nAdditionally, can you please share the individuals that will require data\r\nroom access?\r\n\r\n\r\n\r\nBest,\r\n\r\nAashay\r\n\r\n\r\n\r\n*Aashay Patel*\r\n\r\nInvestment Banking | Vice President\r\n\r\n4 World Trade Center | New York, NY\r\n\r\n*M: *562.458.4250 | clearstreet.io\r\n<http://clearstreet.io/>\r\n\r\n\r\n\r\n<https://clearstreet.io>\r\n\r\n\r\n\r\n\r\n\r\n*From:* Rick <rick@mavrix.one>\r\n*Sent:* Tuesday, June 24, 2025 8:14 AM\r\n*To:* Aashay Patel <apatel@clearstreet.io>\r\n*Cc:* joe@romeosix.com; Nicholas Hemmerly <nhemmerly@clearstreet.io>\r\n*Subject:* [External] Re: Project Rambo NDA\r\n\r\n\r\n\r\nGood morning, all.\r\n\r\nNice to meet you as well (virtually).\r\n\r\nThank you for this.\r\n\r\nSee attached signed NDA.\r\n\r\nAll my best,\r\n\r\nRick\r\n\r\n\r\n\r\nRick Mislan, PhD\r\n\r\nhttps://mavrix.one <https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one>\r\n\r\n\r\n\r\nOn June 23, 2025 at 3:12:05 PM, Aashay Patel (apatel@clearstreet.io) wrote:\r\n\r\nHi Rick,\r\n\r\n\r\n\r\nNice to meet you via email.\r\n\r\n\r\n\r\nPlease find attached the NDA for Project Rambo and let me know if you have\r\nany questions.\r\n\r\n\r\n\r\nBest,\r\n\r\nAashay\r\n\r\n\r\n\r\n*Aashay Patel*\r\n\r\nInvestment Banking | Vice President\r\n\r\n4 World Trade Center | New York, NY\r\n\r\n*M: *562.458.4250 | clearstreet.io\r\n<http://clearstreet.io>\r\n\r\n\r\n\r\n<https://clearstreet.io>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThe information in this message, including any attachment(s), is\r\nconfidential and intended for use only by the designated recipient(s). The\r\nmessage is the property of Clear Street LLC (FINRA, NFA, CFTC, CME, SIPC)\r\nor its affiliates (“Clear Street”) and may be privileged, confidential, or\r\notherwise protected from disclosure. If you are not the intended recipient,\r\nplease advise the sender immediately and delete the message and any\r\nattachments. Clear Street and its affiliates do not provide investment,\r\nlegal, regulatory, tax, or compliance guidance. Clear Street makes no\r\nrepresentation or warranty that any data or information contained in a\r\nmessage is accurate, complete, fair, or correct. Clear Street does not make\r\nrecommendations of a particular security, and the information contained in\r\nthis message should not be considered a recommendation, an offer, or a\r\nsolicitation of an offer to buy and sell securities. Clear Street UK\r\nLimited (‘’CSUK’’) is authorised and regulated in the United Kingdom by the\r\nFinancial Conduct Authority. For information on CSUK, including terms of\r\nconditions, risks of investments, order handling and execution, conflicts\r\nof interest and privacy arrangements please see\r\nhttps://www.clearstreet.io/legal/regulatory-disclosures\r\n<https://www.clearstreet.io/legal/regulatory-disclosures>\r\n.\r\n\r\n\r\n\r\nCopyright © 2025 Clear Street LLC. All rights reserved. Clear Street and\r\nthe Shield Logo are Registered Trademarks of Clear Street LLC.\r\n\r\n\r\n\r\n\r\n​​\r\n\r\n\r\n\r\nThe information in this message, including any attachment(s), is\r\nconfidential and intended for use only by the designated recipient(s). The\r\nmessage is the property of Clear Street LLC (FINRA, NFA, CFTC, CME, SIPC)\r\nor its affiliates (“Clear Street”) and may be privileged, confidential, or\r\notherwise protected from disclosure. If you are not the intended recipient,\r\nplease advise the sender immediately and delete the message and any\r\nattachments. Clear Street and its affiliates do not provide investment,\r\nlegal, regulatory, tax, or compliance guidance. Clear Street makes no\r\nrepresentation or warranty that any data or information contained in a\r\nmessage is accurate, complete, fair, or correct. Clear Street does not make\r\nrecommendations of a particular security, and the information contained in\r\nthis message should not be considered a recommendation, an offer, or a\r\nsolicitation of an offer to buy and sell securities. Clear Street UK\r\nLimited (‘’CSUK’’) is authorised and regulated in the United Kingdom by the\r\nFinancial Conduct Authority. For information on CSUK, including terms of\r\nconditions, risks of investments, order handling and execution, conflicts\r\nof interest and privacy arrangements please see\r\nhttps://www.clearstreet.io/legal/regulatory-disclosures\r\n<https://www.clearstreet.io/legal/regulatory-disclosures>\r\n.\r\n\r\n\r\n\r\nCopyright © 2025 Clear Street LLC. All rights reserved. Clear Street and\r\nthe Shield Logo are Registered Trademarks of Clear Street LLC.\r\n\r\n\r\n\r\n\r\n​​\r\n\r\n-- \r\n\r\n\r\n\r\n*\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n*\r\n\r\nThe information in this\r\nmessage, including any \r\nattachment(s), is confidential and intended for use only\r\nby the designated \r\nrecipient(s). The message is the property of Clear Street LLC\r\n(FINRA, NFA, \r\nCFTC, CME, SIPC) or its affiliates (“Clear Street”) and may be\r\nprivileged, \r\nconfidential, or otherwise protected from disclosure. If you are\r\nnot the \r\nintended recipient, please advise the sender immediately and delete the\r\nmessage and any attachments. Clear Street and its affiliates do not provide\r\ninvestment, legal, regulatory, tax, or compliance guidance. Clear Street \r\nmakes\r\nno representation or warranty that any data or information contained \r\nin a\r\nmessage is accurate, complete, fair, or correct. Clear Street does not \r\nmake\r\nrecommendations of a particular security, and the information \r\ncontained in this\r\nmessage should not be considered a recommendation, an \r\noffer, or a solicitation\r\nof an offer to buy and sell securities. Clear \r\nStreet UK\r\nLimited (‘’CSUK’’) is authorised and regulated in the United \r\nKingdom by the\r\nFinancial Conduct Authority. For information on CSUK, \r\nincluding terms of\r\nconditions, risks of investments, order handling and \r\nexecution, conflicts of\r\ninterest and privacy arrangements please see \r\nhttps://www.clearstreet.io/legal/regulatory-disclosures \r\n<https://www.clearstreet.io/legal/regulatory-disclosures>.\r\n\r\n\r\n\r\n\r\n\r\n*\r\n\r\n\r\nCopyright © 2025 Clear Street LLC. All rights reserved. Clear Street and \r\nthe Shield Logo are Registered Trademarks of Clear Street LLC.*\r\n\r\n\r\n\r\n \r\n \r\n\r\n  \r\n \r\n​​ \r\n\r\n ',0,0,0,0,0,0,'2025-06-24 17:57:25','2025-12-09 19:13:02','2025-12-09 19:13:02','2025-12-09 19:13:02',NULL,NULL,NULL),
(404,4,'<CALgMgSQ6eUbJjFXs0bBdmPaT9x=ZZQHnGRw26+u0TKLwptzHFQ@mail.gmail.com>',NULL,NULL,'Re: Mavrix <> SL 3','jschnipke@strategic-logix.com','Jeremy Schnipke','<div dir=\"ltr\"><p>Rick,</p>\r\n<p>That’s great to hear, we’re excited about the opportunity to work together.</p><p>June 30th at noon works best for us, but we’re also available any time after that, or July 3rd after noon if that’s easier on your end.</p><p>We’ve put a lot of thought into structure and direction and are aligned internally on the major pieces. Ahead of the call, it would be helpful to get a sense of how you’re currently thinking about valuation and ownership, especially in the context of where we left off and how you&#39;re approaching market-based valuation ranges. If there’s anything specific you’d like us to prepare or have ready for the discussion, just let us know.</p><p>\r\n\r\n\r\n</p><p>Looking forward to discussing further.</p></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Jun 24, 2025 at 8:34 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\"><p dir=\"ltr\">Jeremy,</p><p dir=\"ltr\">Thank you for your thoughtful response and for sharing more about your perspective. As I said, it’s great to hear about Strategic Logix’s continued momentum, including the SOFWERX solicitation and your upcoming engagements with Congress, FORSCOM, and SOCOM. Your passion and commitment to building the company are evident.</p><p dir=\"ltr\">At Mavrix, we’re still very interested in exploring a relationship that aligns with your goals. Your idea of a partial or majority buyout with a capital infusion feels like a strong starting point, and we’re open to discussing a deal structure that supports your growth, allows you to stay engaged as operators, and de-risks for your team.</p><p dir=\"ltr\">To move forward, we’d love to have a more detailed conversation about valuation, ownership, and terms that feel realistic and mutually beneficial. Could we schedule a call next week to dive deeper? Please let me know what works for your schedule, and I’ll make it happen on our end.</p><p dir=\"ltr\">Looking forward to continuing the discussion.</p><p dir=\"ltr\">Best regards,</p></div> Rick<br> <div class=\"gmail_signature\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div> <br><p>On June 23, 2025 at 11:59:53 AM, Jeremy Schnipke (<a href=\"mailto:jschnipke@strategic-logix.com\" target=\"_blank\">jschnipke@strategic-logix.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><p>Rick,</p><p>Thanks again for the candid response — we always appreciate straightforward conversations.</p><p>Looking back, I can see how our reaction may have come off differently than intended. We’re first-time founders, and admittedly let some of our excitement about the company’s trajectory drive a more optimistic stance on valuation than was helpful in that moment.</p><p>That said, our hesitation wasn’t about the numbers themselves — it was about the nature of a full buyout and what that would mean for stepping away from something we’re still very much committed to building. We’re not looking to give up our upside, but we are absolutely open to a serious conversation around a partial (possibly majority) buyout and capital infusion. One that gives us room to de-risk a bit, inject the resources we need to scale, and stay fully engaged as operators.</p><p>If Mavrix is still interested, we’d be curious to hear where you stand on valuation, ownership targets, and deal structure. We’re open to finding something that makes sense for both sides.</p><p>\r\n\r\n\r\n\r\n\r\n</p><p>Appreciate your time as always,<br>\r\nJeremy</p></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Jun 23, 2025 at 11:00 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div id=\"m_-5627855832975132109m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">HI guys, thanks for the update. </div><div id=\"m_-5627855832975132109m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">All sounds promising!</div><div id=\"m_-5627855832975132109m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><br></div><div id=\"m_-5627855832975132109m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">To be honest (which I always am), </div><div id=\"m_-5627855832975132109m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">based on the end of our last conversation, </div><div id=\"m_-5627855832975132109m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">mavrix will not meet your financial expectations.</div><div id=\"m_-5627855832975132109m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><br></div><div id=\"m_-5627855832975132109m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">I believe you both scoffed at a $50M offer and </div><div id=\"m_-5627855832975132109m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">then again you hesitated and said no to $250M.</div><div id=\"m_-5627855832975132109m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><br></div><div id=\"m_-5627855832975132109m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">If I’m wrong in my assumption, please </div><div id=\"m_-5627855832975132109m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">let me know where you think mavrix can help.</div><div id=\"m_-5627855832975132109m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><br></div><div id=\"m_-5627855832975132109m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Respectfully,</div><div id=\"m_-5627855832975132109m_6332035242497208014bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Rick</div> <br> <div id=\"m_-5627855832975132109m_6332035242497208014bloop_sign_1750690613825149184\">\r\n         \r\n      \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n      \r\n</div> <br><p>On June 23, 2025 at 10:29:22 AM, Jeremy Schnipke (<a href=\"mailto:jschnipke@strategic-logix.com\" target=\"_blank\">jschnipke@strategic-logix.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\">Good morning Rick,<div><p>I wanted to follow up after our recent conversation regarding a potential investment from Mavrix into Strategic Logix. We really appreciated the opportunity to share what we’re building.</p><p>Things have moved quickly since we last spoke — we’ve been downselected for the SOFWERX Drone-in-a-Box solicitation, have meetings scheduled over the next couple of weeks with key members of Congress, FORSCOM, and SOCOM leadership, and are finalizing several new capabilities including a fiber optic conversion kit, a fixed-wing conversion kit, and a ground vehicle conversion kit — all on track for completion within the next three weeks. Our calendar is quickly filling with travel and briefings.</p><p>\r\n\r\nWe’ve had a few other investors reach out as momentum continues to build, and given our shared objectives, I wanted to see if you had any follow-up questions or would like to get a time on the calendar to continue the conversation.\r\n\r\n</p><p>\r\n\r\n\r\n</p><p>Looking forward to hearing from you.</p></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Jun 10, 2025 at 4:42 PM Andrew Valkenburg &lt;<a href=\"mailto:avalkenburg@strategic-logix.com\" target=\"_blank\">avalkenburg@strategic-logix.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Rick,</div><div><br></div><div>Looking to check in if/when you&#39;d like to meet again. Had a few trips added for next week, so wasn&#39;t sure if you wanted to get together this week at all. </div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p><font color=\"#000000\"><b><a href=\"https://d5Fk0J04.na1.hs-sales-engage.com/Ctc/ZY+23284/d5Fk0J04/Jks2-6qcW69sMD-6lZ3p3W4JBM684-zzGgW3R5Z7n4mSPNDW8bJ48z9bnX-yW4_HP487GBDWwW71rpr36Q63q_W1TlDPD95Cm_bW5KJP6448Q5ShN6MBxcgwG_QnW3Z3bhX7fDWQfW2xRyXk3-Bb8HW3zRsdZ1JQh6_W4dKLDY3hLL5rW6WFXrT315_CCW1dNSP14K69dHW8-l0_T99BSLZW260Zgw6TdmHfMFhkNlXdYs9VXJzvm7XFsVLN3TN0klwSz3CW47WTD13TngfCf7h43Jq04\" target=\"_blank\">VISIT OUR WEBSITE</a></b></font></p><p><strong><font color=\"#000000\"><br></font></strong></p><p><strong><font color=\"#000000\">Sincerely,</font></strong></p><p><font color=\"#000000\">Andrew Valkenburg<br>Chief Operations Officer, Strategic Logix LLC<br>484-225-9132<br><a rel=\"noopener\">avalkenburg@strategic-logix.com</a></font></p></div></div><img src=\"https://d5Fk0J04.na1.hs-sales-engage.com/Cto/ZY+23284/d5Fk0J04/R5R8b46GFN8DRvLG2fJtJW3M1SJx21hM7hW1-Ypq51XnY_PW1GyZgk3JD_VkW25d5521--yY3W3JHSfp1T_YtRn1--v6q4W1\" alt=\"\" height=\"1\" width=\"1\" style=\"display: none;\"><div></div></div>\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p><strong>Sincerely,</strong></p><p>Jeremy Schnipke<br>Chief Executive Officer, Strategic Logix LLC<br>Mobile: 419-203-3215<br><a rel=\"noopener\">jschnipke@strategic-logix.com</a></p></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p><strong>Sincerely,</strong></p><p>Jeremy Schnipke<br>Chief Executive Officer, Strategic Logix LLC<br>Mobile: 419-203-3215<br><a rel=\"noopener\">jschnipke@strategic-logix.com</a></p></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p><strong>Sincerely,</strong></p><p>Jeremy Schnipke<br>Chief Executive Officer, Strategic Logix LLC<br>Mobile: 419-203-3215<br><a rel=\"noopener\">jschnipke@strategic-logix.com</a></p></div></div>','Rick,\r\n\r\nThat’s great to hear, we’re excited about the opportunity to work together.\r\n\r\nJune 30th at noon works best for us, but we’re also available any time\r\nafter that, or July 3rd after noon if that’s easier on your end.\r\n\r\nWe’ve put a lot of thought into structure and direction and are aligned\r\ninternally on the major pieces. Ahead of the call, it would be helpful to\r\nget a sense of how you’re currently thinking about valuation and ownership,\r\nespecially in the context of where we left off and how you\'re approaching\r\nmarket-based valuation ranges. If there’s anything specific you’d like us\r\nto prepare or have ready for the discussion, just let us know.\r\n\r\nLooking forward to discussing further.\r\n\r\nOn Tue, Jun 24, 2025 at 8:34 AM Rick <rick@mavrix.one> wrote:\r\n\r\n> Jeremy,\r\n>\r\n> Thank you for your thoughtful response and for sharing more about your\r\n> perspective. As I said, it’s great to hear about Strategic Logix’s\r\n> continued momentum, including the SOFWERX solicitation and your upcoming\r\n> engagements with Congress, FORSCOM, and SOCOM. Your passion and commitment\r\n> to building the company are evident.\r\n>\r\n> At Mavrix, we’re still very interested in exploring a relationship that\r\n> aligns with your goals. Your idea of a partial or majority buyout with a\r\n> capital infusion feels like a strong starting point, and we’re open to\r\n> discussing a deal structure that supports your growth, allows you to stay\r\n> engaged as operators, and de-risks for your team.\r\n>\r\n> To move forward, we’d love to have a more detailed conversation about\r\n> valuation, ownership, and terms that feel realistic and mutually\r\n> beneficial. Could we schedule a call next week to dive deeper? Please let\r\n> me know what works for your schedule, and I’ll make it happen on our end.\r\n>\r\n> Looking forward to continuing the discussion.\r\n>\r\n> Best regards,\r\n> Rick\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On June 23, 2025 at 11:59:53 AM, Jeremy Schnipke (\r\n> jschnipke@strategic-logix.com) wrote:\r\n>\r\n> Rick,\r\n>\r\n> Thanks again for the candid response — we always appreciate\r\n> straightforward conversations.\r\n>\r\n> Looking back, I can see how our reaction may have come off differently\r\n> than intended. We’re first-time founders, and admittedly let some of our\r\n> excitement about the company’s trajectory drive a more optimistic stance on\r\n> valuation than was helpful in that moment.\r\n>\r\n> That said, our hesitation wasn’t about the numbers themselves — it was\r\n> about the nature of a full buyout and what that would mean for stepping\r\n> away from something we’re still very much committed to building. We’re not\r\n> looking to give up our upside, but we are absolutely open to a serious\r\n> conversation around a partial (possibly majority) buyout and capital\r\n> infusion. One that gives us room to de-risk a bit, inject the resources we\r\n> need to scale, and stay fully engaged as operators.\r\n>\r\n> If Mavrix is still interested, we’d be curious to hear where you stand on\r\n> valuation, ownership targets, and deal structure. We’re open to finding\r\n> something that makes sense for both sides.\r\n>\r\n> Appreciate your time as always,\r\n> Jeremy\r\n>\r\n> On Mon, Jun 23, 2025 at 11:00 AM Rick <rick@mavrix.one> wrote:\r\n>\r\n>> HI guys, thanks for the update.\r\n>> All sounds promising!\r\n>>\r\n>> To be honest (which I always am),\r\n>> based on the end of our last conversation,\r\n>> mavrix will not meet your financial expectations.\r\n>>\r\n>> I believe you both scoffed at a $50M offer and\r\n>> then again you hesitated and said no to $250M.\r\n>>\r\n>> If I’m wrong in my assumption, please\r\n>> let me know where you think mavrix can help.\r\n>>\r\n>> Respectfully,\r\n>> Rick\r\n>>\r\n>> Rick Mislan, PhD\r\n>> https://mavrix.one\r\n>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>\r\n>> On June 23, 2025 at 10:29:22 AM, Jeremy Schnipke (\r\n>> jschnipke@strategic-logix.com) wrote:\r\n>>\r\n>> Good morning Rick,\r\n>>\r\n>> I wanted to follow up after our recent conversation regarding a potential\r\n>> investment from Mavrix into Strategic Logix. We really appreciated the\r\n>> opportunity to share what we’re building.\r\n>>\r\n>> Things have moved quickly since we last spoke — we’ve been downselected\r\n>> for the SOFWERX Drone-in-a-Box solicitation, have meetings scheduled over\r\n>> the next couple of weeks with key members of Congress, FORSCOM, and SOCOM\r\n>> leadership, and are finalizing several new capabilities including a fiber\r\n>> optic conversion kit, a fixed-wing conversion kit, and a ground vehicle\r\n>> conversion kit — all on track for completion within the next three weeks.\r\n>> Our calendar is quickly filling with travel and briefings.\r\n>>\r\n>> We’ve had a few other investors reach out as momentum continues to build,\r\n>> and given our shared objectives, I wanted to see if you had any follow-up\r\n>> questions or would like to get a time on the calendar to continue the\r\n>> conversation.\r\n>>\r\n>> Looking forward to hearing from you.\r\n>>\r\n>> On Tue, Jun 10, 2025 at 4:42 PM Andrew Valkenburg <\r\n>> avalkenburg@strategic-logix.com> wrote:\r\n>>\r\n>>> Rick,\r\n>>>\r\n>>> Looking to check in if/when you\'d like to meet again. Had a few trips\r\n>>> added for next week, so wasn\'t sure if you wanted to get together this week\r\n>>> at all.\r\n>>>\r\n>>> --\r\n>>>\r\n>>> *VISIT OUR WEBSITE\r\n>>> <https://d5Fk0J04.na1.hs-sales-engage.com/Ctc/ZY+23284/d5Fk0J04/Jks2-6qcW69sMD-6lZ3p3W4JBM684-zzGgW3R5Z7n4mSPNDW8bJ48z9bnX-yW4_HP487GBDWwW71rpr36Q63q_W1TlDPD95Cm_bW5KJP6448Q5ShN6MBxcgwG_QnW3Z3bhX7fDWQfW2xRyXk3-Bb8HW3zRsdZ1JQh6_W4dKLDY3hLL5rW6WFXrT315_CCW1dNSP14K69dHW8-l0_T99BSLZW260Zgw6TdmHfMFhkNlXdYs9VXJzvm7XFsVLN3TN0klwSz3CW47WTD13TngfCf7h43Jq04>*\r\n>>>\r\n>>>\r\n>>> *Sincerely,*\r\n>>>\r\n>>> Andrew Valkenburg\r\n>>> Chief Operations Officer, Strategic Logix LLC\r\n>>> 484-225-9132\r\n>>> avalkenburg@strategic-logix.com\r\n>>>\r\n>>\r\n>>\r\n>> --\r\n>>\r\n>> *Sincerely,*\r\n>>\r\n>> Jeremy Schnipke\r\n>> Chief Executive Officer, Strategic Logix LLC\r\n>> Mobile: 419-203-3215\r\n>> jschnipke@strategic-logix.com\r\n>>\r\n>>\r\n>\r\n> --\r\n>\r\n> *Sincerely,*\r\n>\r\n> Jeremy Schnipke\r\n> Chief Executive Officer, Strategic Logix LLC\r\n> Mobile: 419-203-3215\r\n> jschnipke@strategic-logix.com\r\n>\r\n>\r\n\r\n-- \r\n\r\n*Sincerely,*\r\n\r\nJeremy Schnipke\r\nChief Executive Officer, Strategic Logix LLC\r\nMobile: 419-203-3215\r\njschnipke@strategic-logix.com',0,0,0,0,0,0,'2025-06-24 18:45:47','2025-12-09 19:13:02','2025-12-09 19:13:02','2025-12-09 19:13:02',NULL,NULL,NULL),
(405,4,'<calendar-6c68515a-be44-45f3-a81e-35bff63284f5@google.com>',NULL,NULL,'Invitation: (No Subject) @ Mon Jun 30, 2025 12pm - 1pm (EDT) (rick@mavrix.one)','jschnipke@strategic-logix.com','Jeremy Schnipke','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v143/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v117/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation from Jeremy Schnipke\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"7dl8f4u3orv5o0ja7h7eq7149g\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">(No Subject)</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250630T160000Z\"></time><time itemprop=\"endDate\" datetime=\"20250630T170000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">Join with Google Meet – Follow on meeting to discuss Mavrix/Strategic Logix cash infusion/buyout plan.</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:28px;\"><a href=\"https://meet.google.com/wzq-jfqn-wki?hs=224\" class=\"primary-button-text\" style=\"display: inline-block;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"display: inline-block\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"background-color: #1a73e8; cursor: auto; padding: 10px 25px; border: none; border-radius: 4px; margin: 0;\" class=\"primary-button\"><!--[if mso]><a href=\"https://meet.google.com/wzq-jfqn-wki?hs=224\" class=\"primary-button-text\" target=\"_blank\"><![endif]--><span class=\"primary-button-text\" style=\"font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\">Join with Google Meet</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Meeting link</h2></td></tr></table><!-- Use grey text for the Meet link--><div><a style=\"display: inline-block;;color: #70757a; text-decoration: none;\" class=\"secondary-text underline-on-hover\" href=\"https://meet.google.com/wzq-jfqn-wki?hs=224\">meet.google.com/wzq-jfqn-wki</a></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Join by phone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(US) </span><a href=\"tel:+1-260-782-6167%3B610624671%23\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+1 260-782-6167</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">PIN: 610624671</span><br><br><a href=\"https://tel.meet/wzq-jfqn-wki?pin=4460849442577&amp;hs=0\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">More phone numbers</a><br></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span>Follow on meeting to discuss Mavrix/Strategic Logix cash infusion/buyout plan.</span><meta itemprop=\"description\" content=\"Follow on meeting to discuss Mavrix/Strategic Logix cash infusion/buyout plan.\"/></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250630T160000Z\"></time><time itemprop=\"endDate\" datetime=\"20250630T170000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Monday Jun 30, 2025 ⋅ 12pm – 1pm (Eastern Time - New York)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jschnipke@strategic-logix.com\">Jeremy Schnipke</a></span><meta itemprop=\"email\" content=\"jschnipke@strategic-logix.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Jeremy Schnipke\"/><meta itemprop=\"email\" content=\"jschnipke@strategic-logix.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:avalkenburg@strategic-logix.com\">Andrew Valkenburg</a></span><meta itemprop=\"email\" content=\"avalkenburg@strategic-logix.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','(No Subject)\r\nMonday Jun 30, 2025 ⋅ 12pm – 1pm\r\nEastern Time - New York\r\n\r\nJoin with Google Meet\r\nhttps://meet.google.com/wzq-jfqn-wki?hs=224\r\n\r\n\r\n	\r\nJoin by phone\r\n(US) +1 260-782-6167\r\nPIN: 610624671\r\n\r\nMore phone numbers\r\nhttps://tel.meet/wzq-jfqn-wki?pin=4460849442577&hs=0\r\n\r\n\r\nFollow on meeting to discuss Mavrix/Strategic Logix cash infusion/buyout  \r\nplan.\r\n\r\nOrganizer\r\nJeremy Schnipke\r\njschnipke@strategic-logix.com\r\n\r\nGuests\r\nJeremy Schnipke - organizer\r\nrick@mavrix.one\r\nAndrew Valkenburg\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&ctz=America%2FNew_York&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&ctz=America%2FNew_York&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-06-26 12:35:33','2025-12-09 19:13:04','2025-12-09 19:13:04','2025-12-09 19:13:04',NULL,NULL,NULL),
(406,4,'<calendar-df2a37cf-9e37-4164-8be2-dfe97e244574@google.com>',NULL,NULL,'Updated invitation: Mavrix/Strategic Logix Follow up @ Mon Jun 30, 2025 12pm - 1pm (EDT) (rick@mavrix.one)','jschnipke@strategic-logix.com','Jeremy Schnipke','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v143/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v117/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventRescheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"7dl8f4u3orv5o0ja7h7eq7149g\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Mavrix/Strategic Logix Follow up</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250630T160000Z\"></time><time itemprop=\"endDate\" datetime=\"20250630T170000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">Join with Google Meet – Follow on meeting to discuss Mavrix/Strategic Logix cash infusion/buyout plan.</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"background-color: #e6f4ea;color: #0d5327;padding: 12px 32px; border-radius: 8px;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px;text-align: left;\" class=\"info-bar-inner\"><span style=\"font-weight: 700;\">This event has been updated</span><br/><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Thing/Paragraph\"><meta itemprop=\"description\" content=\"Title updated\"/></span><div style=\"\"><span style=\"font-weight: 700;\">Changed:</span> title</div></td></tr></tbody></table><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"12\" style=\"height:12px;\"><![endif]--><div style=\"height:12px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:28px;\"><a href=\"https://meet.google.com/wzq-jfqn-wki?hs=224\" class=\"primary-button-text\" style=\"display: inline-block;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"display: inline-block\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"background-color: #1a73e8; cursor: auto; padding: 10px 25px; border: none; border-radius: 4px; margin: 0;\" class=\"primary-button\"><!--[if mso]><a href=\"https://meet.google.com/wzq-jfqn-wki?hs=224\" class=\"primary-button-text\" target=\"_blank\"><![endif]--><span class=\"primary-button-text\" style=\"font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\">Join with Google Meet</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Meeting link</h2></td></tr></table><!-- Use grey text for the Meet link--><div><a style=\"display: inline-block;;color: #70757a; text-decoration: none;\" class=\"secondary-text underline-on-hover\" href=\"https://meet.google.com/wzq-jfqn-wki?hs=224\">meet.google.com/wzq-jfqn-wki</a></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Join by phone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(US) </span><a href=\"tel:+1-260-782-6167%3B610624671%23\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+1 260-782-6167</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">PIN: 610624671</span><br><br><a href=\"https://tel.meet/wzq-jfqn-wki?pin=4460849442577&amp;hs=0\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">More phone numbers</a><br></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span>Follow on meeting to discuss Mavrix/Strategic Logix cash infusion/buyout plan.</span><meta itemprop=\"description\" content=\"Follow on meeting to discuss Mavrix/Strategic Logix cash infusion/buyout plan.\"/></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250630T160000Z\"></time><time itemprop=\"endDate\" datetime=\"20250630T170000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Monday Jun 30, 2025 ⋅ 12pm – 1pm (Eastern Time - New York)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jschnipke@strategic-logix.com\">Jeremy Schnipke</a></span><meta itemprop=\"email\" content=\"jschnipke@strategic-logix.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Jeremy Schnipke\"/><meta itemprop=\"email\" content=\"jschnipke@strategic-logix.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:avalkenburg@strategic-logix.com\">Andrew Valkenburg</a></span><meta itemprop=\"email\" content=\"avalkenburg@strategic-logix.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','This event has been updated\r\nChanged: title\r\n\r\n\r\nMavrix/Strategic Logix Follow up\r\nMonday Jun 30, 2025 ⋅ 12pm – 1pm\r\nEastern Time - New York\r\n\r\nJoin with Google Meet\r\nhttps://meet.google.com/wzq-jfqn-wki?hs=224\r\n\r\n\r\n	\r\nJoin by phone\r\n(US) +1 260-782-6167\r\nPIN: 610624671\r\n\r\nMore phone numbers\r\nhttps://tel.meet/wzq-jfqn-wki?pin=4460849442577&hs=0\r\n\r\n\r\nFollow on meeting to discuss Mavrix/Strategic Logix cash infusion/buyout  \r\nplan.\r\n\r\nOrganizer\r\nJeremy Schnipke\r\njschnipke@strategic-logix.com\r\n\r\nGuests\r\nJeremy Schnipke - organizer\r\nrick@mavrix.one\r\nAndrew Valkenburg\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&ctz=America%2FNew_York&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&ctz=America%2FNew_York&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-06-26 12:36:04','2025-12-09 19:13:04','2025-12-09 19:13:04','2025-12-09 19:13:04',NULL,NULL,NULL),
(407,4,'<5b5aa2f3-7c61-4575-af8d-5bfd2d2ec751@deltawerx.net>',NULL,NULL,'Fwd: Thursday am?','tom@deltawerx.net','Dr Tom Chi','<!DOCTYPE html>\r\n<html>\r\n  <head>\r\n\r\n    <meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\">\r\n  </head>\r\n  <body>\r\n    <p>Please use this URL<br>\r\n    </p>\r\n    <p><a class=\"moz-txt-link-freetext\" href=\"https://us06web.zoom.us/j/4811000324?pwd=STd5ZGYzbEV4ZVc1ZDlxZElZb2RaQT09\">https://us06web.zoom.us/j/4811000324?pwd=STd5ZGYzbEV4ZVc1ZDlxZElZb2RaQT09</a></p>\r\n    <p><br>\r\n    </p>\r\n    <div class=\"moz-forward-container\"><br>\r\n      <br>\r\n      -------- Forwarded Message --------\r\n      <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\"\r\n        class=\"moz-email-headers-table\">\r\n        <tbody>\r\n          <tr>\r\n            <th valign=\"BASELINE\" align=\"RIGHT\" nowrap=\"nowrap\">Subject:\r\n            </th>\r\n            <td>Re: Thursday am?</td>\r\n          </tr>\r\n          <tr>\r\n            <th valign=\"BASELINE\" align=\"RIGHT\" nowrap=\"nowrap\">Date: </th>\r\n            <td>Thu, 26 Jun 2025 00:22:47 -0500</td>\r\n          </tr>\r\n          <tr>\r\n            <th valign=\"BASELINE\" align=\"RIGHT\" nowrap=\"nowrap\">From: </th>\r\n            <td>Dr Tom Chi <a class=\"moz-txt-link-rfc2396E\" href=\"mailto:Corporate@PolarityMedical.com\">&lt;Corporate@PolarityMedical.com&gt;</a></td>\r\n          </tr>\r\n          <tr>\r\n            <th valign=\"BASELINE\" align=\"RIGHT\" nowrap=\"nowrap\">To: </th>\r\n            <td>Rick Mislan , PhD <a class=\"moz-txt-link-rfc2396E\" href=\"mailto:rick@mislan.com\">&lt;rick@mislan.com&gt;</a>, Dr Tom Chi\r\n              <a class=\"moz-txt-link-rfc2396E\" href=\"mailto:tom@deltawerx.net\">&lt;tom@deltawerx.net&gt;</a>, <a class=\"moz-txt-link-abbreviated\" href=\"mailto:president@deltawerx.net\">president@deltawerx.net</a></td>\r\n          </tr>\r\n        </tbody>\r\n      </table>\r\n      <br>\r\n      <br>\r\n      <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n      <p>Rick, we\'ll look for your Zoom invite. <br>\r\n        <br>\r\n        Otherwise will be at <a class=\"moz-txt-link-freetext\"\r\n          href=\"https://www.tinyurl.com/deltawerx\"\r\n          moz-do-not-send=\"true\">https://www.tinyurl.com/deltawerx</a> <br>\r\n      </p>\r\n      <p><br>\r\n      </p>\r\n      <p><br>\r\n      </p>\r\n      <div class=\"moz-cite-prefix\">On 6/25/2025 9:20 AM, Rick Mislan ,\r\n        PhD wrote:<br>\r\n      </div>\r\n      <blockquote type=\"cite\"\r\n        cite=\"mid:etPan.685c05b1.70b2f092.62a4@mislan.com\">\r\n        <meta http-equiv=\"content-type\"\r\n          content=\"text/html; charset=UTF-8\">\r\n        <style>body{font-family:Helvetica,Arial;font-size:13px}</style>\r\n        <div style=\"font-family:Helvetica,Arial;font-size:13px; \">1030\r\n          it is.</div>\r\n        <div style=\"font-family:Helvetica,Arial;font-size:13px; \">I’ll\r\n          send an invite later today.</div>\r\n        <div style=\"font-family:Helvetica,Arial;font-size:13px; \">Thanks\r\n          again,</div>\r\n        <div style=\"font-family:Helvetica,Arial;font-size:13px; \">Rick</div>\r\n        <div class=\"gmail_signature\">\r\n          <div>\r\n            <div class=\"gmail_signature\"\r\nstyle=\"font-family: &quot;helvetica Neue&quot;, helvetica; font-size: 14px;\">Rick\r\n              Mislan, PhD\r\n              <div><a href=\"http://www.mislan.com/\"\r\nstyle=\"overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; -webkit-hyphens: auto;\"\r\n                  moz-do-not-send=\"true\">www.mislan.com</a></div>\r\n              <div><a href=\"tel://(585) 797-9473\"\r\nstyle=\"overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; -webkit-hyphens: auto;\"\r\n                  moz-do-not-send=\"true\">(585) 797-9473</a></div>\r\n            </div>\r\n          </div>\r\n        </div>\r\n        <br>\r\n        <p class=\"airmail_on\">On June 25, 2025 at 10:14:22 AM, Dr Tom\r\n          Chi (<a href=\"mailto:tom@deltawerx.net\" moz-do-not-send=\"true\"\r\n            class=\"moz-txt-link-freetext\">tom@deltawerx.net</a>) wrote:</p>\r\n        <blockquote type=\"cite\" class=\"clean_bq\"><span>\r\n            <div>\r\n              <div>\r\n                <div dir=\"auto\">We\'re clear between 10am -1pm EST.<br>\r\n                  <br>\r\n                  How is 10.30am EST?</div>\r\n                <br>\r\n                <br>\r\n                <div class=\"gmail_quote\">\r\n                  <div dir=\"auto\">On June 25, 2025 9:09:23 AM CDT, \"Rick\r\n                    Mislan , PhD\" <a class=\"moz-txt-link-rfc2396E\"\r\n                      href=\"mailto:rick@mislan.com\"\r\n                      moz-do-not-send=\"true\">&lt;rick@mislan.com&gt;</a>\r\n                    wrote:</div>\r\n                  <blockquote class=\"gmail_quote\"\r\nstyle=\"margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;\">\r\n                    <div\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; \">How does Thursday\r\n                      morning look for a follow up call?</div>\r\n                    <div\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; \">Please send me some\r\n                      times we could chat.</div>\r\n                    <div\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; \">Thanks!</div>\r\n                    <div\r\nstyle=\"font-family:Helvetica,Arial;font-size:13px; \"><br>\r\n                    </div>\r\n                    Rick<br>\r\n                    <div class=\"gmail_signature\">\r\n                      <div><br>\r\n                      </div>\r\n                      <div>\r\n                        <div class=\"gmail_signature\"\r\nstyle=\"font-family: &quot;helvetica Neue&quot;, helvetica; font-size: 14px;\">Rick\r\n                          Mislan, PhD\r\n                          <div><a href=\"http://www.mislan.com/\"\r\nstyle=\"overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; -webkit-hyphens: auto;\"\r\n                              moz-do-not-send=\"true\">www.mislan.com</a></div>\r\n                          <div><a href=\"tel://(585) 797-9473\"\r\nstyle=\"overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; -webkit-hyphens: auto;\"\r\n                              moz-do-not-send=\"true\">(585) 797-9473</a></div>\r\n                        </div>\r\n                      </div>\r\n                    </div>\r\n                  </blockquote>\r\n                </div>\r\n              </div>\r\n            </div>\r\n          </span></blockquote>\r\n      </blockquote>\r\n    </div>\r\n  </body>\r\n</html>','Please use this URL\r\n\r\nhttps://us06web.zoom.us/j/4811000324?pwd=STd5ZGYzbEV4ZVc1ZDlxZElZb2RaQT09\r\n\r\n\r\n\r\n\r\n-------- Forwarded Message --------\r\nSubject: 	Re: Thursday am?\r\nDate: 	Thu, 26 Jun 2025 00:22:47 -0500\r\nFrom: 	Dr Tom Chi <Corporate@PolarityMedical.com>\r\nTo: 	Rick Mislan , PhD <rick@mislan.com>, Dr Tom Chi \r\n<tom@deltawerx.net>, president@deltawerx.net\r\n\r\n\r\n\r\nRick, we\'ll look for your Zoom invite.\r\n\r\nOtherwise will be at https://www.tinyurl.com/deltawerx\r\n\r\n\r\n\r\nOn 6/25/2025 9:20 AM, Rick Mislan , PhD wrote:\r\n> 1030 it is.\r\n> I’ll send an invite later today.\r\n> Thanks again,\r\n> Rick\r\n> Rick Mislan, PhD\r\n> www.mislan.com <http://www.mislan.com/>\r\n> (585) 797-9473 <tel://(585) 797-9473>\r\n>\r\n> On June 25, 2025 at 10:14:22 AM, Dr Tom Chi (tom@deltawerx.net) wrote:\r\n>\r\n>> We\'re clear between 10am -1pm EST.\r\n>>\r\n>> How is 10.30am EST?\r\n>>\r\n>>\r\n>> On June 25, 2025 9:09:23 AM CDT, \"Rick Mislan , PhD\" \r\n>> <rick@mislan.com> wrote:\r\n>>\r\n>>     How does Thursday morning look for a follow up call?\r\n>>     Please send me some times we could chat.\r\n>>     Thanks!\r\n>>\r\n>>     Rick\r\n>>\r\n>>     Rick Mislan, PhD\r\n>>     www.mislan.com <http://www.mislan.com/>\r\n>>     (585) 797-9473 <tel://(585) 797-9473>\r\n>>',0,0,0,0,0,0,'2025-06-26 14:28:49','2025-12-09 19:13:04','2025-12-09 19:13:04','2025-12-09 19:13:04',NULL,NULL,NULL),
(408,4,'<calendar-265f7fb2-abef-4444-8745-ef6eaec47873@google.com>',NULL,NULL,'Updated invitation with note: Mavrix/Strategic Logix Follow up @ Mon Jun 30, 2025 1pm - 2pm (EDT) (rick@mavrix.one)','jschnipke@strategic-logix.com','Jeremy Schnipke','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v143/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v117/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventRescheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"7dl8f4u3orv5o0ja7h7eq7149g\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Mavrix/Strategic Logix Follow up</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250630T170000Z\"></time><time itemprop=\"endDate\" datetime=\"20250630T180000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">Join with Google Meet – Follow on meeting to discuss Mavrix/Strategic Logix cash infusion/buyout plan.</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"background-color: #e6f4ea;color: #0d5327;padding: 12px 32px; border-radius: 8px;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px;text-align: left;\" class=\"info-bar-inner\"><span style=\"font-weight: 700;\">This event has been updated with a note:</span><br/>\"Absolutely, here is an updated meeting time for 1 pm\"<span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Thing/Clock\"><meta itemprop=\"description\" content=\"Time updated\"/></span><div style=\"padding-top: 8px;\"><span style=\"font-weight: 700;\">Changed:</span> time</div></td></tr></tbody></table><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"12\" style=\"height:12px;\"><![endif]--><div style=\"height:12px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:28px;\"><a href=\"https://meet.google.com/wzq-jfqn-wki?hs=224\" class=\"primary-button-text\" style=\"display: inline-block;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"display: inline-block\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"background-color: #1a73e8; cursor: auto; padding: 10px 25px; border: none; border-radius: 4px; margin: 0;\" class=\"primary-button\"><!--[if mso]><a href=\"https://meet.google.com/wzq-jfqn-wki?hs=224\" class=\"primary-button-text\" target=\"_blank\"><![endif]--><span class=\"primary-button-text\" style=\"font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\">Join with Google Meet</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Meeting link</h2></td></tr></table><!-- Use grey text for the Meet link--><div><a style=\"display: inline-block;;color: #70757a; text-decoration: none;\" class=\"secondary-text underline-on-hover\" href=\"https://meet.google.com/wzq-jfqn-wki?hs=224\">meet.google.com/wzq-jfqn-wki</a></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Join by phone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(US) </span><a href=\"tel:+1-260-782-6167%3B610624671%23\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+1 260-782-6167</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">PIN: 610624671</span><br><br><a href=\"https://tel.meet/wzq-jfqn-wki?pin=4460849442577&amp;hs=0\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">More phone numbers</a><br></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span>Follow on meeting to discuss Mavrix/Strategic Logix cash infusion/buyout plan.</span><meta itemprop=\"description\" content=\"Follow on meeting to discuss Mavrix/Strategic Logix cash infusion/buyout plan.\"/></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250630T170000Z\"></time><time itemprop=\"endDate\" datetime=\"20250630T180000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td><td style=\"width: 8px;\"></td><td style=\"padding-top: 2px; padding-bottom: 3px;\"><div style=\"background-color: #1e8e3e; border-radius: 10px; padding: 1px 5px; line-height: 13px;\"><span style=\"color: white; font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; vertical-align: top;\">CHANGED</span></div></td></tr></table><span>Monday Jun 30, 2025 ⋅ 1pm – 2pm (Eastern Time - New York)<br/><span style=\"text-decoration: line-through;\"><del><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;font-size: 0; display: block;\">Old: </span>Monday Jun 30, 2025 ⋅ 12pm – 1pm (Eastern Time - New York)</del></span></span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jschnipke@strategic-logix.com\">Jeremy Schnipke</a></span><meta itemprop=\"email\" content=\"jschnipke@strategic-logix.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Jeremy Schnipke\"/><meta itemprop=\"email\" content=\"jschnipke@strategic-logix.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:avalkenburg@strategic-logix.com\">Andrew Valkenburg</a></span><meta itemprop=\"email\" content=\"avalkenburg@strategic-logix.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&amp;tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','This event has been updated with a note:\r\n\"Absolutely, here is an updated meeting time for 1 pm\"\r\nChanged: time\r\n\r\n\r\nMavrix/Strategic Logix Follow up\r\nMonday Jun 30, 2025 ⋅ 1pm – 2pm\r\nEastern Time - New York\r\n\r\nJoin with Google Meet\r\nhttps://meet.google.com/wzq-jfqn-wki?hs=224\r\n\r\n\r\n	\r\nJoin by phone\r\n(US) +1 260-782-6167\r\nPIN: 610624671\r\n\r\nMore phone numbers\r\nhttps://tel.meet/wzq-jfqn-wki?pin=4460849442577&hs=0\r\n\r\n\r\nFollow on meeting to discuss Mavrix/Strategic Logix cash infusion/buyout  \r\nplan.\r\n\r\nOrganizer\r\nJeremy Schnipke\r\njschnipke@strategic-logix.com\r\n\r\nGuests\r\nJeremy Schnipke - organizer\r\nrick@mavrix.one\r\nAndrew Valkenburg\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&ctz=America%2FNew_York&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=N2RsOGY0dTNvcnY1bzBqYTdoN2VxNzE0OWcgcmlja0BtYXZyaXgub25l&tok=MjkjanNjaG5pcGtlQHN0cmF0ZWdpYy1sb2dpeC5jb20xZDU4Y2Y0MDQwNWUzZWQzYjRkM2EwMTAzOTFmMDJkOWFkOTk2OWU0&ctz=America%2FNew_York&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-06-26 18:38:12','2025-12-09 19:13:05','2025-12-09 19:13:05','2025-12-09 19:13:05',NULL,NULL,NULL),
(409,4,'<etPan.685e901a.74d36050.62a4@mavrix.one>',NULL,NULL,'Strategic-Logix','rick@mavrix.one','Rick','(Message content could not be parsed)','(Message content could not be parsed)',0,0,0,0,0,0,'2025-06-27 12:34:40','2025-12-09 19:13:05','2025-12-09 19:13:05','2025-12-09 19:13:05',NULL,NULL,NULL),
(410,4,'<etPan.685e9027.7db6de1d.62a4@mavrix.one>',NULL,NULL,'Red Cat articles:','rick@mavrix.one','Rick','(Message content could not be parsed)','(Message content could not be parsed)',0,0,0,0,0,0,'2025-06-27 12:34:40','2025-12-09 19:13:05','2025-12-09 19:13:05','2025-12-09 19:13:05',NULL,NULL,NULL),
(411,4,' <DM6PR07MB5850F734FCB0925F7CE94EC6AD45A@DM6PR07MB5850.namprd07.prod.outlook.com>',NULL,NULL,'Re: White Papers','rich@achramlabs.com','Richard Van Voorst','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n</head>\r\n<body>\r\n<div>\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" dir=\"ltr\">\r\nReceiver Rick! Thank you. Will start planning a date.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" dir=\"ltr\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" dir=\"ltr\">\r\nRich</div>\r\n</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"ms-outlook-mobile-signature\">\r\n<p dir=\"ltr\" style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 11pt;\">\r\n<span style=\"font-size: 12pt; line-height: 1.5;\">V/R,<br>\r\n<br>\r\nRich Van Voorst<br>\r\n<br>\r\n--&nbsp;</span></p>\r\n<p dir=\"ltr\" style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 11pt;\">\r\n<span style=\"font-size: 12pt; line-height: 1.5;\">Achram Labs | CEO</span></p>\r\n<p dir=\"ltr\" style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 11pt;\">\r\n<span style=\"font-size: 12pt; line-height: 1.5;\">e. </span><span style=\"font-size: 12pt; color: rgb(150, 96, 125); line-height: 1.5;\"><u><a href=\"mailto:rich@achramlabs.com\" data-outlook-id=\"5bfcc088-04de-4d1c-8c62-13f688fea4a6\" data-linkindex=\"0\" style=\"color: rgb(150, 96, 125); margin-top: 0px; margin-bottom: 0px;\">rich@achramlabs.com</a></u></span></p>\r\n<p dir=\"ltr\" style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 11pt;\">\r\n<span style=\"font-size: 12pt; line-height: 1.5;\">m. </span><span style=\"font-size: 12pt; color: currentcolor; line-height: 1.5;\"><u>813.334.5104</u></span></p>\r\n<div dir=\"ltr\"><br>\r\n</div>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, June 27, 2025 8:45:44 AM<br>\r\n<b>To:</b> Richard Van Voorst &lt;rich@achramlabs.com&gt;<br>\r\n<b>Subject:</b> White Papers</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRich,</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nHere is a starter doc…2 basic white papers…please confirm receipt.</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nMore to share, but probably should talk about those on a boat in the ocean…</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nBrian and I are excited to meet with you and Brian off-shore.</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nI plan to be in your area after July 18th…</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nPlease set a date so we can plan on connecting.</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks again,</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div id=\"x_bloop_sign_1751028118375310848\" class=\"x_bloop_sign\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height:11px\"></div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','Receiver Rick! Thank you. Will start planning a date.\r\n\r\nRich\r\n\r\n\r\nV/R,\r\n\r\nRich Van Voorst\r\n\r\n--\r\n\r\nAchram Labs | CEO\r\n\r\ne. rich@achramlabs.com<mailto:rich@achramlabs.com>\r\n\r\nm. 813.334.5104\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, June 27, 2025 8:45:44 AM\r\nTo: Richard Van Voorst <rich@achramlabs.com>\r\nSubject: White Papers\r\n\r\nRich,\r\nHere is a starter doc…2 basic white papers…please confirm receipt.\r\nMore to share, but probably should talk about those on a boat in the ocean…\r\nBrian and I are excited to meet with you and Brian off-shore.\r\nI plan to be in your area after July 18th…\r\nPlease set a date so we can plan on connecting.\r\nThanks again,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]',0,0,0,0,0,0,'2025-06-27 12:47:42','2025-12-09 19:13:06','2025-12-09 19:13:06','2025-12-09 19:13:06',NULL,NULL,NULL),
(412,4,' <BYAPR04MB4038EBE23E8570B8E52851D8E147A@BYAPR04MB4038.namprd04.prod.outlook.com>',NULL,NULL,'Mavrix and Blackwire','outlook_572122AD20508077@outlook.com','Rick Mislan','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n</head>\r\n<body>\r\n<div><br>\r\n<br>\r\n<br>\r\n<div style=\"width:100%;\"><span style=\"white-space:nowrap;color:#5F5F5F;opacity:.36;\">________________________________________________________________________________</span>\r\n</div>\r\n<div class=\"me-email-text\" style=\"color:#252424;font-family:\'Segoe UI\',\'Helvetica Neue\',Helvetica,Arial,sans-serif;\" lang=\"\">\r\n<div style=\"margin-top: 24px; margin-bottom: 20px;\"><span style=\"font-size: 24px; color:#252424\">Microsoft Teams meeting</span>\r\n</div>\r\n<div style=\"margin-bottom: 20px;\">\r\n<div style=\"margin-top: 0px; margin-bottom: 0px; font-weight: bold\"><span style=\"font-size: 14px; color:#252424\">Join on your computer, mobile app or room device</span>\r\n</div>\r\n<a class=\"me-email-headline\" style=\"font-size: 14px;font-family:\'Segoe UI Semibold\',\'Segoe UI\',\'Helvetica Neue\',Helvetica,Arial,sans-serif;text-decoration: underline;color: #6264a7;\" href=\"https://teams.live.com/meet/9367978680662?p=lPCPHngY0XwyoBQWen\" target=\"_blank\" rel=\"noreferrer noopener\">Click\r\n here to join the meeting</a> </div>\r\n<div style=\"margin-bottom:20px; margin-top:20px\">\r\n<div style=\"margin-bottom:4px\"><span data-tid=\"meeting-code\" style=\"font-size: 14px; color:#252424;\">Meeting ID:\r\n<span style=\"font-size:16px; color:#252424;\">936 797 868 066 2</span> </span><br>\r\n<span style=\"font-size: 14px; color:#252424;\">Passcode: </span><span style=\"font-size: 16px; color:#252424;\">TN7YL2\r\n</span>\r\n<div style=\"font-size: 14px;\"><a class=\"me-email-link\" style=\"font-size: 14px;text-decoration: underline;color: #6264a7;font-family:\'Segoe UI\',\'Helvetica Neue\',Helvetica,Arial,sans-serif;\" target=\"_blank\" href=\"https://www.microsoft.com/en-us/microsoft-teams/download-app\" rel=\"noreferrer noopener\">Download\r\n Teams</a> | <a class=\"me-email-link\" style=\"font-size: 14px;text-decoration: underline;color: #6264a7;font-family:\'Segoe UI\',\'Helvetica Neue\',Helvetica,Arial,sans-serif;\" target=\"_blank\" href=\"https://www.microsoft.com/microsoft-teams/join-a-meeting\" rel=\"noreferrer noopener\">\r\nJoin on the web</a></div>\r\n</div>\r\n</div>\r\n<div style=\"margin-bottom: 24px;margin-top: 20px;\"><a class=\"me-email-link\" style=\"font-size: 14px;text-decoration: underline;color: #6264a7;font-family:\'Segoe UI\',\'Helvetica Neue\',Helvetica,Arial,sans-serif;\" target=\"_blank\" href=\"https://aka.ms/JoinTeamsMeeting\" rel=\"noreferrer noopener\">Learn\r\n More</a> | <a class=\"me-email-link\" style=\"font-size: 14px;text-decoration: underline;color: #6264a7;font-family:\'Segoe UI\',\'Helvetica Neue\',Helvetica,Arial,sans-serif;\" target=\"_blank\" href=\"https://teams.live.com/meetingOptions/meetings/9367978680662/view?localeCode=en-US\" rel=\"noreferrer noopener\">\r\nMeeting options</a> </div>\r\n</div>\r\n<div style=\"font-size: 14px; margin-bottom: 4px;font-family:\'Segoe UI\',\'Helvetica Neue\',Helvetica,Arial,sans-serif;\">\r\n</div>\r\n<div style=\"font-size: 12px;\"></div>\r\n</div>\r\n<div style=\"width:100%;\"><span style=\"white-space:nowrap;color:#5F5F5F;opacity:.36;\">________________________________________________________________________________</span>\r\n</div>\r\n<div></div>\r\n<div style=\"opacity:0.5\"><br>\r\nReplies and calendar responses will not be sent to the organizer</div>\r\n</body>\r\n</html>','\r\n\r\n\r\n________________________________________________________________________________\r\nMicrosoft Teams meeting\r\nJoin on your computer, mobile app or room device\r\nClick here to join the meeting<https://teams.live.com/meet/9367978680662?p=lPCPHngY0XwyoBQWen>\r\nMeeting ID: 936 797 868 066 2\r\nPasscode: TN7YL2\r\nDownload Teams<https://www.microsoft.com/en-us/microsoft-teams/download-app> | Join on the web<https://www.microsoft.com/microsoft-teams/join-a-meeting>\r\nLearn More<https://aka.ms/JoinTeamsMeeting> | Meeting options<https://teams.live.com/meetingOptions/meetings/9367978680662/view?localeCode=en-US>\r\n________________________________________________________________________________\r\n\r\nReplies and calendar responses will not be sent to the organizer',0,0,0,0,0,0,'2025-06-29 21:13:54','2025-12-09 19:13:06','2025-12-09 19:13:06','2025-12-09 19:13:06',NULL,NULL,NULL),
(413,4,'<7221CYMWJQU4.CNJ3A6U04P2G2@sn1pepf0003b6fe>',NULL,NULL,'Microsoft account security info was added','account-security-noreply@accountprotection.microsoft.com','Microsoft account team',' <!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" dir=\"ltr\"> \r\n<head>\r\n<style type=\"text/css\">\r\n .link:link, .link:active, .link:visited {\r\n       color:#2672ec !important;\r\n       text-decoration:none !important;\r\n }\r\n\r\n .link:hover {\r\n       color:#4284ee !important;\r\n       text-decoration:none !important;\r\n }\r\n</style>\r\n<title></title>\r\n</head>\r\n<body>\r\n<table dir=\"ltr\">\r\n      <tr><td id=\"i1\" style=\"padding:0; font-family:\'Segoe UI Semibold\', \'Segoe UI Bold\', \'Segoe UI\', \'Helvetica Neue Medium\', Arial, sans-serif; font-size:17px; color:#707070;\">Microsoft account</td></tr>\r\n      <tr><td id=\"i2\" style=\"padding:0; font-family:\'Segoe UI Light\', \'Segoe UI\', \'Helvetica Neue Medium\', Arial, sans-serif; font-size:41px; color:#2672ec;\">Security info was added</td></tr>\r\n      <tr><td id=\"i3\" style=\"padding:0; padding-top:25px; font-family:\'Segoe UI\', Tahoma, Verdana, Arial, sans-serif; font-size:14px; color:#2a2a2a;\">The following security info was recently added to the Microsoft account <a dir=\"ltr\" id=\"iAccount\" class=\"link\" style=\"color:#2672ec; text-decoration:none\" href=\"mailto:ri**k@mavrix.one\">ri**k@mavrix.one</a>:</td></tr>\r\n      <tr><td id=\"i4\" style=\"padding:0; padding-top:6px; font-family:\'Segoe UI\', Tahoma, Verdana, Arial, sans-serif; font-size:14px; color:#2a2a2a;\">\r\n         <ul>\r\n          <li>Passkey</li>\r\n         </ul>\r\n      </td></tr>\r\n      <tr><td id=\"i5\" style=\"padding:0; padding-top:6px; font-family:\'Segoe UI\', Tahoma, Verdana, Arial, sans-serif; font-size:14px; color:#2a2a2a;\">If this was you, then you can safely ignore this email.</td></tr>\r\n      <tr><td id=\"i6\" style=\"padding:0; padding-top:25px; font-family:\'Segoe UI\', Tahoma, Verdana, Arial, sans-serif; font-size:14px; color:#2a2a2a;\">If this wasn\'t you, a malicious user has access to your account. Please review your recent activity and we\'ll help you secure your account.</td></tr>\r\n      <tr><td style=\"padding:0; padding-top:25px; font-family:\'Segoe UI\', Tahoma, Verdana, Arial, sans-serif; font-size:14px; color:#2a2a2a;\">\r\n         <table border=\"0\" cellspacing=\"0\"><tr><td bgcolor=\"#2672ec\" style=\"background-color:#2672ec; padding-top: 5px; padding-right: 20px; padding-bottom: 5px; padding-left: 20px; min-width:50px;\"><a id=\"i7\" style=\"font-family: \'Segoe UI Semibold\', \'Segoe UI Bold\', \'Segoe UI\', \'Helvetica Neue Medium\', Arial, sans-serif; font-size:14px; text-align:center; text-decoration:none; font-weight:600; letter-spacing:0.02em; color:#fff;\" href=\"https://account.microsoft.com/activity\">Review recent activity</a></td></tr></table>\r\n      </td></tr>\r\n      <tr><td id=\"i8\" style=\"padding:0; padding-top:25px; font-family:\'Segoe UI\', Tahoma, Verdana, Arial, sans-serif; font-size:14px; color:#2a2a2a;\">To opt out or change where you receive security notifications, <a id=\"iLink2\" class=\"link\" style=\"color:#2672ec; text-decoration:none\" href=\"https://account.live.com/SecurityNotifications/Update\">click here</a>.</td></tr>      \r\n      <tr><td id=\"i9\" style=\"padding:0; padding-top:25px; font-family:\'Segoe UI\', Tahoma, Verdana, Arial, sans-serif; font-size:14px; color:#2a2a2a;\">Thanks,</td></tr>\r\n      <tr><td id=\"i10\" style=\"padding:0; font-family:\'Segoe UI\', Tahoma, Verdana, Arial, sans-serif; font-size:14px; color:#2a2a2a;\">The Microsoft account team</td></tr>\r\n</table>\r\n<div lang=\"en\" style=\"margin-top:20px;margin-bottom:10px;\"><a class=\"link\" href=\"https://go.microsoft.com/fwlink/?LinkId=521839\">Privacy Statement</a><div style=\"margin-top:10px;\">Microsoft Corporation, One Microsoft Way, Redmond, WA 98052</div></div></body>\r\n</html>','The following security info was recently added to the Microsoft account ri**k@mavrix.one:\r\n\r\nPasskey\r\n\r\nIf this was you, then you can safely ignore this email.\r\n\r\nIf this wasn\'t you, a malicious user has access to your account. Please review your recent activity and we\'ll help you secure your account.\r\n\r\nReview recent activity https://account.microsoft.com/activity.\r\n\r\nTo opt out or change where you receive security notifications, click here https://account.live.com/SecurityNotifications/Update.\r\n\r\nThanks,\r\nThe Microsoft account team \r\nPrivacy Statement: https://go.microsoft.com/fwlink/?LinkId=521839\r\nMicrosoft Corporation, One Microsoft Way, Redmond, WA 98052',0,0,0,0,0,0,'2025-06-29 21:16:55','2025-12-09 19:13:06','2025-12-09 19:13:06','2025-12-09 19:13:06',NULL,NULL,NULL),
(414,4,'<1F05X0NWJQU4.ELZOTNZ3P5ST@ph1pepf00017370>',NULL,NULL,'Your single-use code','account-security-noreply@accountprotection.microsoft.com','Microsoft account team','Hi rick@mavrix.one,\r\n\r\nWe received your request for a single-use code to use with your Microsoft account.\r\n\r\nYour single-use code is: 976785\r\n\r\nOnly enter this code on an official website or app. Don\'t share it with anyone. We\'ll never ask for it outside an official platform.\r\n\r\nThanks,\r\nThe Microsoft account team\r\nPrivacy Statement: https://go.microsoft.com/fwlink/?LinkId=521839\r\nMicrosoft Corporation, One Microsoft Way, Redmond, WA 98052','Hi rick@mavrix.one,\r\n\r\nWe received your request for a single-use code to use with your Microsoft account.\r\n\r\nYour single-use code is: 976785\r\n\r\nOnly enter this code on an official website or app. Don\'t share it with anyone. We\'ll never ask for it outside an official platform.\r\n\r\nThanks,\r\nThe Microsoft account team\r\nPrivacy Statement: https://go.microsoft.com/fwlink/?LinkId=521839\r\nMicrosoft Corporation, One Microsoft Way, Redmond, WA 98052',0,0,0,0,0,0,'2025-06-29 21:17:10','2025-12-09 19:13:07','2025-12-09 19:13:07','2025-12-09 19:13:07',NULL,NULL,NULL),
(415,4,'<etPan.6861afc7.643c9869.13a47@mavrix.one>',NULL,NULL,'Blackwire Mavrix Meeting','rick@mavrix.one','Rick','<html><head></head><body><div>You\'re invited to Blackwire / Mavrix</div><=\r\ndiv>Monday, June 30, 2025</div><div>12:00=E2=80=AFpm - 1:00=E2=80=AFpm (E=\r\nST)</div><div>https://teams.live.com/meet/9323613949411=3Fp=3DJilWryWauxk=\r\nIQlTZkz</div><div>Tap on the link or paste it in a browser to join.</div>=\r\n<div><br></div><br><div  class=3D=22gmail=5Fsignature=22>\r\n        <title></title>\r\n    =20\r\n    Rick Mislan, PhD<br><div><a href=3D=22https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one=22>https://mavrix.one</a></div><div><br></div>\r\n    =20\r\n</div></body></html>','You\'re invited to Blackwire / MavrixMonday, June 30, 202512:00=E2=80=AFpm - 1:00=E2=80=AFpm (E=\r\nST)https://teams.live.com/meet/9323613949411=3Fp=3DJilWryWauxk=\r\nIQlTZkzTap on the link or paste it in a browser to join.=\r\n\r\n        \r\n    =20\r\n    Rick Mislan, PhDhttps://mavrix.one\r\n    =20\r\n',0,0,0,0,0,0,'2025-06-29 21:26:13','2025-12-09 19:13:07','2025-12-09 19:13:07','2025-12-09 19:13:07',NULL,NULL,NULL),
(416,4,'<etPan.6861b01c.2ae8944a.13a47@mavrix.one>',NULL,NULL,'Fwd: Blackwire Mavrix Meeting','rick@mavrix.one','Rick','<html><head></head><body>Slides here:<div>https://pitch.com/v/blackwire-2=\r\n025-upbjhn<br></div><div><br></div><div>Password is Blackwire2025<br></di=\r\nv><div><br></div><div>Meeting link is below</div><div><br></div><div><br>=\r\n <br><div  class=3D=22gmail=5Fsignature=22>\r\n        <title></title>\r\n    =20\r\n    Rick Mislan, PhD<br><div><a href=3D=22https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one=22>https://mavrix.one</a></div><div><img src=3D=22file=\r\n:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Ap=\r\nplication%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment=\r\n/rick=40mavrix.one/CCE41B2=46-429E-4EC4-B7BB-A76A=46859D=4618/mavrix.png=22=\r\n style=3D=22height: 11px;=22></div>\r\n    =20\r\n</div> <p class=3D=22gmail=5Fquote=22 style=3D=22color:=23000;=22>On June=\r\n 29, 2025 at 5:26:13=E2=80=AFPM, Rick (<a href=3D=22mailto:rick=40mavrix.=\r\none=22>rick=40mavrix.one</a>) wrote:</p> <blockquote type=3D=22cite=22 cl=\r\nass=3D=22gmail=5Fquote=22><span><div><div></div><div>\r\n\r\n\r\n\r\n\r\n\r\n<div>You\'re invited to Blackwire / Mavrix</div>\r\n<div><a href=3D=22x-apple-data-detectors://4=22 dir=3D=22ltr=22 x-apple-d=\r\nata-detectors=3D=22true=22 x-apple-data-detectors-type=3D=22calendar-even=\r\nt=22 x-apple-data-detectors-result=3D=224=22 style=3D=22color: currentcol=\r\nor; text-decoration-color: rgba(0, 128, 255, 0.38);=22>Monday, June 30, 2=\r\n025</a></div>\r\n<div><a href=3D=22x-apple-data-detectors://5=22 dir=3D=22ltr=22 x-apple-d=\r\nata-detectors=3D=22true=22 x-apple-data-detectors-type=3D=22calendar-even=\r\nt=22 x-apple-data-detectors-result=3D=225=22 style=3D=22color: currentcol=\r\nor; text-decoration-color: rgba(0, 128, 255, 0.38);=22>12:00=E2=80=AFpm -=\r\n 1:00=E2=80=AFpm (EST)</a></div>\r\n<div>\r\n<a href=3D=22https://teams.live.com/meet/9323613949411=3Fp=3DJilWryWauxkI=\r\nQlTZkz=22 dir=3D=22ltr=22 x-apple-data-detectors=3D=22true=22 x-apple-dat=\r\na-detectors-type=3D=22link=22 x-apple-data-detectors-result=3D=226=22>htt=\r\nps://teams.live.com/meet/9323613949411=3Fp=3DJilWryWauxkIQlTZkz</a></div>=\r\n\r\n<div>Tap on the link or paste it in a browser to join.</div>\r\n<div><br></div>\r\n<br>\r\n<div class=3D=22gmail=5Fsignature=22>Rick Mislan, PhD<br>\r\n<div><a href=3D=22https://mavrix.onehttps://mavrix.onehttps://mavrix.one=22=\r\n>https://mavrix.one</a></div>\r\n<div><br></div>\r\n</div>\r\n\r\n\r\n</div></div></span></blockquote>\r\n\r\n</div></body></html>','Slides here:https://pitch.com/v/blackwire-2=\r\n025-upbjhnPassword is Blackwire2025Meeting link is below=\r\n \r\n        \r\n    =20\r\n    Rick Mislan, PhDhttps://mavrix.one\r\n    =20\r\n On June=\r\n 29, 2025 at 5:26:13=E2=80=AFPM, Rick (rick=40mavrix.one) wrote: \r\n\r\n\r\n\r\n\r\n\r\nYou\'re invited to Blackwire / Mavrix\r\nMonday, June 30, 2=\r\n025\r\n12:00=E2=80=AFpm -=\r\n 1:00=E2=80=AFpm (EST)\r\n\r\nhtt=\r\nps://teams.live.com/meet/9323613949411=3Fp=3DJilWryWauxkIQlTZkz=\r\n\r\nTap on the link or paste it in a browser to join.\r\n\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-06-29 21:27:49','2025-12-09 19:13:08','2025-12-09 19:13:08','2025-12-09 19:13:08',NULL,NULL,NULL),
(417,4,'<CALgMgSRrTYef4TkupZFNN-4+QOOq7hidHnE8yR9OW5_Ytxi6KA@mail.gmail.com>',NULL,NULL,'Re: Thanks guys!','jschnipke@strategic-logix.com','Jeremy Schnipke','<div dir=\"ltr\"><div>Rick,</div><div><br></div><div>I&#39;m glad to hear the positive feedback and thank you for your time and consideration!</div><div><br></div><div>I&#39;ve put together various documents and forecasts over the life of the company, I will compile and send them to you tonight. I&#39;ll also include a brief list of open deals in our pipeline to assist with your analysis.</div><div><br></div><div>Thanks,</div><div>Jeremy</div></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Jun 30, 2025 at 2:08 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">Just wanted to say thanks for your time and information today.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\"><br></div><div style=\"font-family:Helvetica,Arial;font-size:13px\">I know Brian lives in Excel, so if you did have anything that explains the $10M ask,  </div><div style=\"font-family:Helvetica,Arial;font-size:13px\">such as an Excel spreadsheet that looks like like a ProForma (that you’d be willing to share),</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">or some type of structured phase line plan of spending for the next 2-3 years...</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">that would be very helpful to the next part of our discussion.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\"><br></div><div style=\"font-family:Helvetica,Arial;font-size:13px\">I’ll get back to you after our discussion today for next steps.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\"><br></div><div style=\"font-family:Helvetica,Arial;font-size:13px\">That said, congratulations on all of your efforts paying off!</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Happy July 1st!</div><div style=\"font-family:Helvetica,Arial;font-size:13px\"><br></div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Talk soon,</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Rick<br></div><br><div class=\"gmail_signature\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div>\r\n\r\n\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p><strong>Sincerely,</strong></p><p>Jeremy Schnipke<br>Chief Executive Officer, Strategic Logix LLC<br>Mobile: 419-203-3215<br><a rel=\"noopener\">jschnipke@strategic-logix.com</a></p></div></div>','Rick,\r\n\r\nI\'m glad to hear the positive feedback and thank you for your time and\r\nconsideration!\r\n\r\nI\'ve put together various documents and forecasts over the life of the\r\ncompany, I will compile and send them to you tonight. I\'ll also include a\r\nbrief list of open deals in our pipeline to assist with your analysis.\r\n\r\nThanks,\r\nJeremy\r\n\r\nOn Mon, Jun 30, 2025 at 2:08 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> Just wanted to say thanks for your time and information today.\r\n>\r\n> I know Brian lives in Excel, so if you did have anything that explains the\r\n> $10M ask,\r\n> such as an Excel spreadsheet that looks like like a ProForma (that you’d\r\n> be willing to share),\r\n> or some type of structured phase line plan of spending for the next 2-3\r\n> years...\r\n> that would be very helpful to the next part of our discussion.\r\n>\r\n> I’ll get back to you after our discussion today for next steps.\r\n>\r\n> That said, congratulations on all of your efforts paying off!\r\n> Happy July 1st!\r\n>\r\n> Talk soon,\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n\r\n\r\n-- \r\n\r\n*Sincerely,*\r\n\r\nJeremy Schnipke\r\nChief Executive Officer, Strategic Logix LLC\r\nMobile: 419-203-3215\r\njschnipke@strategic-logix.com',0,0,0,0,0,0,'2025-06-30 21:00:02','2025-12-09 19:13:08','2025-12-09 19:13:08','2025-12-09 19:13:08',NULL,NULL,NULL),
(418,4,'<CAEDJ0kas1V+OVRW04adSW_HM9hPbK5EWes_AgMDHXJZ0WYSHTA@mail.gmail.com>',NULL,NULL,'Re: NDA for your company','matthewjganter@gmail.com','Matthew Ganter','<div dir=\"ltr\">Hi Rick,<div><br></div><div>I would like to introduce you to Cellec Technologies&#39; CEO Chris Schauerman. Chris will be getting the NDA setup with the company and I&#39;m happy to participate in conversations as part-owner and board member.</div><div><br></div><div>Thanks,</div><div><br></div><div>Matt</div></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Jun 30, 2025 at 9:40 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div id=\"m_6623649602882989259bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Hi Matt,</div><div id=\"m_6623649602882989259bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Here’s the NDA from my company MAVRIX. </div><div id=\"m_6623649602882989259bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Please confirm receipt.</div><div id=\"m_6623649602882989259bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><br></div><div id=\"m_6623649602882989259bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Then review it and let me know if there are any questions.</div><div id=\"m_6623649602882989259bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">If not, then fill in the blanks on page 1, initial each page, and sign the last page.</div><div id=\"m_6623649602882989259bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Once you send it back, I’ll execute it and then request a follow up meeting.</div><div id=\"m_6623649602882989259bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><br></div><div id=\"m_6623649602882989259bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thanks much!</div><div id=\"m_6623649602882989259bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Rick</div><br><div id=\"m_6623649602882989259bloop_sign_1751290607234999040\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div>\r\n\r\n\r\n</blockquote></div>','Hi Rick,\r\n\r\nI would like to introduce you to Cellec Technologies\' CEO Chris Schauerman.\r\nChris will be getting the NDA setup with the company and I\'m happy to\r\nparticipate in conversations as part-owner and board member.\r\n\r\nThanks,\r\n\r\nMatt\r\n\r\nOn Mon, Jun 30, 2025 at 9:40 AM Rick <rick@mavrix.one> wrote:\r\n\r\n> Hi Matt,\r\n> Here’s the NDA from my company MAVRIX.\r\n> Please confirm receipt.\r\n>\r\n> Then review it and let me know if there are any questions.\r\n> If not, then fill in the blanks on page 1, initial each page, and sign the\r\n> last page.\r\n> Once you send it back, I’ll execute it and then request a follow up\r\n> meeting.\r\n>\r\n> Thanks much!\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>',0,0,0,0,0,0,'2025-06-30 21:06:29','2025-12-09 19:13:08','2025-12-09 19:13:08','2025-12-09 19:13:08',NULL,NULL,NULL),
(419,4,'<CALgMgSSVLPtNcTL0j1W+g1gXjxk4sD_d9zXTujxO-zEZ1xydvg@mail.gmail.com>',NULL,NULL,'=?UTF-8?B?UmU6IE9uZSBtb3JlIHRoaW5n4oCm?=','jschnipke@strategic-logix.com','Jeremy Schnipke','<div dir=\"ltr\"><p>Rick,</p>\r\n<p>As promised, attached is a rough Pro Forma. We’ve included estimates for our expected hires as well as projections for converting our current pipeline.</p>\r\n<p>For clarity, we have modeled in drone orders that are currently logged, but have not included any reorders or speculative repeat orders at this point. While we expect reorders to become a significant revenue stream, there isn’t yet enough data to reliably estimate their timing or frequency, since most organizations are still working through their initial purchases.</p>\r\n<p>We did secure a couple of significant wins this afternoon, and we anticipate conversion of several major deals in the near term. This is supported by our collaboration with another company to help address sticking points with DLA and other primary procurement channels.</p>\r\n<p>The projected figures you see are mostly based on recurring small-unit purchases. These transactions tend to provide steady, consistent cash flow and form the backbone of our client relationships, even if they aren’t the largest deals.</p>\r\n<p>Please let me know if you have any questions or would like to talk through our assumptions in more detail — happy to walk through them anytime.</p><div></div></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Jun 30, 2025 at 2:36 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">There was mention of one drone order at $48M.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Can you verify that order or share a somewhat </div><div style=\"font-family:Helvetica,Arial;font-size:13px\">redacted version of that as a scanned image?</div><div><br></div>It helps build credibility.<div>Thanks,</div><div>Rick</div><div><br><div class=\"gmail_signature\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div>\r\n\r\n\r\n</div></blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p><strong>Sincerely,</strong></p><p>Jeremy Schnipke<br>Chief Executive Officer, Strategic Logix LLC<br>Mobile: 419-203-3215<br><a rel=\"noopener\">jschnipke@strategic-logix.com</a></p></div></div>','Rick,\r\n\r\nAs promised, attached is a rough Pro Forma. We’ve included estimates for\r\nour expected hires as well as projections for converting our current\r\npipeline.\r\n\r\nFor clarity, we have modeled in drone orders that are currently logged, but\r\nhave not included any reorders or speculative repeat orders at this point.\r\nWhile we expect reorders to become a significant revenue stream, there\r\nisn’t yet enough data to reliably estimate their timing or frequency, since\r\nmost organizations are still working through their initial purchases.\r\n\r\nWe did secure a couple of significant wins this afternoon, and we\r\nanticipate conversion of several major deals in the near term. This is\r\nsupported by our collaboration with another company to help address\r\nsticking points with DLA and other primary procurement channels.\r\n\r\nThe projected figures you see are mostly based on recurring small-unit\r\npurchases. These transactions tend to provide steady, consistent cash flow\r\nand form the backbone of our client relationships, even if they aren’t the\r\nlargest deals.\r\n\r\nPlease let me know if you have any questions or would like to talk through\r\nour assumptions in more detail — happy to walk through them anytime.\r\n\r\nOn Mon, Jun 30, 2025 at 2:36 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> There was mention of one drone order at $48M.\r\n> Can you verify that order or share a somewhat\r\n> redacted version of that as a scanned image?\r\n>\r\n> It helps build credibility.\r\n> Thanks,\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n\r\n\r\n-- \r\n\r\n*Sincerely,*\r\n\r\nJeremy Schnipke\r\nChief Executive Officer, Strategic Logix LLC\r\nMobile: 419-203-3215\r\njschnipke@strategic-logix.com',0,0,0,0,0,0,'2025-07-01 03:45:06','2025-12-09 19:13:09','2025-12-09 19:13:09','2025-12-09 19:13:09',NULL,NULL,NULL),
(420,4,' <BN0P110MB1161964AC3DFF24E64861CE8CC41A@BN0P110MB1161.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'RE: NDA for your company','chris@cellectech.com','Christopher Schauerman','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\nspan.EmailStyle18\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:11.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Hi Matt, <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Thanks for the introduction. <o:p>\r\n</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Hi Rick, <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">It’s nice to meet you. I look forward to having a discussion and hear more about your technology and how our batteries might be able to help. How is your schedule looking over the next few weeks? Matt mentioned\r\n an NDA, I’d be happy to take a look at yours if you want to send it over. Let me know.\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Best,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Chris<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">--<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Christopher Schauerman, PhD<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">President/CEO<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Cellec Technologies, Inc.&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">245 Summit Point Dr<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Henrietta, NY 14467<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Office:&nbsp;(585) 280-9434<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Business: (585) 454-9166<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Cell: (814) 392-3661<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Matthew Ganter &lt;matthewjganter@gmail.com&gt;\r\n<br>\r\n<b>Sent:</b> Monday, June 30, 2025 5:06 PM<br>\r\n<b>To:</b> Rick &lt;rick@mavrix.one&gt;; Christopher Schauerman &lt;chris@cellectech.com&gt;<br>\r\n<b>Subject:</b> Re: NDA for your company<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\">Hi Rick,<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">I would like to introduce you to Cellec Technologies\' CEO Chris Schauerman. Chris will&nbsp;be getting the NDA setup with the company and I\'m happy to participate in conversations as part-owner and board member.<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Thanks,<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Matt<o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">On Mon, Jun 30, 2025 at 9:40<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>AM Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; wrote:<o:p></o:p></p>\r\n</div>\r\n<blockquote style=\"border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt\">\r\n<div id=\"m_6623649602882989259bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Matt,<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"m_6623649602882989259bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Here’s the NDA from my company MAVRIX.&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"m_6623649602882989259bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Please confirm receipt.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"m_6623649602882989259bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div id=\"m_6623649602882989259bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Then review it and let me know if there are any questions.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"m_6623649602882989259bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">If not, then fill in the blanks on page 1, initial each page, and sign the last page.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"m_6623649602882989259bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Once you send it back, I’ll execute it and then request a follow up meeting.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"m_6623649602882989259bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div id=\"m_6623649602882989259bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks much!<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"m_6623649602882989259bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div id=\"m_6623649602882989259bloop_sign_1751290607234999040\">\r\n<p class=\"MsoNormal\">Rick Mislan, PhD<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><a href=\"https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one\" target=\"_blank\">https://mavrix.one</a><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Hi Matt,\r\n\r\nThanks for the introduction.\r\n\r\nHi Rick,\r\n\r\nIt’s nice to meet you. I look forward to having a discussion and hear more about your technology and how our batteries might be able to help. How is your schedule looking over the next few weeks? Matt mentioned an NDA, I’d be happy to take a look at yours if you want to send it over. Let me know.\r\n\r\n\r\n\r\nBest,\r\nChris\r\n--\r\n\r\nChristopher Schauerman, PhD\r\nPresident/CEO\r\n\r\nCellec Technologies, Inc.\r\n245 Summit Point Dr\r\nHenrietta, NY 14467\r\nOffice: (585) 280-9434\r\nBusiness: (585) 454-9166\r\nCell: (814) 392-3661\r\n\r\nFrom: Matthew Ganter <matthewjganter@gmail.com>\r\nSent: Monday, June 30, 2025 5:06 PM\r\nTo: Rick <rick@mavrix.one>; Christopher Schauerman <chris@cellectech.com>\r\nSubject: Re: NDA for your company\r\n\r\nHi Rick,\r\n\r\nI would like to introduce you to Cellec Technologies\' CEO Chris Schauerman. Chris will be getting the NDA setup with the company and I\'m happy to participate in conversations as part-owner and board member.\r\n\r\nThanks,\r\n\r\nMatt\r\n\r\nOn Mon, Jun 30, 2025 at 9:40 AM Rick <rick@mavrix.one<mailto:rick@mavrix.one>> wrote:\r\nHi Matt,\r\nHere’s the NDA from my company MAVRIX.\r\nPlease confirm receipt.\r\n\r\nThen review it and let me know if there are any questions.\r\nIf not, then fill in the blanks on page 1, initial each page, and sign the last page.\r\nOnce you send it back, I’ll execute it and then request a follow up meeting.\r\n\r\nThanks much!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one>\r\n\r\n',0,0,0,0,0,0,'2025-07-01 17:52:15','2025-12-09 19:13:09','2025-12-09 19:13:09','2025-12-09 19:13:09',NULL,NULL,NULL),
(421,4,'<CALgMgSTWPH4r_=3+aA_PiXa2txJyH=XerhTtOGpA-gNzRYD63A@mail.gmail.com>',NULL,NULL,'=?UTF-8?B?UmU6IE9uZSBtb3JlIHRoaW5n4oCm?=','jschnipke@strategic-logix.com','Jeremy Schnipke','<div dir=\"ltr\">Good evening Rick,<p>I think there may have been a miscommunication on our last call. We do not currently have $250M in contracted orders. That figure represents our weighted pipeline, reflecting projected conversion rates based on qualified opportunities to date.</p>\r\n<p>Our current capital situation is quite tight, which is why we’re exploring both a line of credit and a growth-focused cash infusion. As mentioned earlier, these projections were updated to show our anticipated trajectory heading into Q4, when significant government funding traditionally begins to flow.</p>\r\n<p>We’re looking for capital to provide runway for salaries and key growth expenditures ahead of these opportunities solidifying. There are also a few pinch points where funding could directly help us secure larger deals. For example, we began discussions today with DEVCOM regarding a potential 500,000-unit drone order, with the requirement that all manufacturing be US-based and completed within a year. While we can meet those production rates, the challenge is fulfilling the supplier prepayment requirements needed to hold our cost structure at scale.</p>\r\n<p>These figures are rough estimates, pulled together quickly based on our previous pipeline projections. We haven’t had the bandwidth yet to develop a more mature financial model, as our primary focus has been on closing sales profitably and innovating rapidly — which is exactly what has kept us competitive in a very fast-moving market.</p>\r\n<p>Some additional capital would also allow us to pay ourselves reasonable salaries so we can stay fully focused on scaling. Since the beginning, every dollar has gone straight back into growth and expansion, keeping us cash-flow positive but lean. We’re now hitting critical inflection points where meaningful capital could truly accelerate Strategic Logix, rather than staying on the slower organic path.</p>\r\n<p>If you’d like, I’d be happy to share more data on our past performance or talk through exactly how we arrived at the numbers in the pro forma. Just let me know, and I’d be glad to set up a call to walk through it together.</p></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Jul 1, 2025 at 7:54 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div id=\"m_4448751562683407384bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Jeremy,</div><div id=\"m_4448751562683407384bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thanks for these. Interesting for sure.</div><div id=\"m_4448751562683407384bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><br></div><div id=\"m_4448751562683407384bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">On our call, I believe you said that you have orders for approx. $250M?</div><div id=\"m_4448751562683407384bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">At a basic level and at the 25% profit margin you mentioned, that’s approx. $187.5M…</div><div id=\"m_4448751562683407384bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">So, I guess, I’m not sure why you need capital? Can you explain what I’m not seeing?</div><div><br></div><div>Thanks again,</div><div>Rick<br></div><div> <div id=\"m_4448751562683407384bloop_sign_1751413738034366976\"><br></div><div id=\"m_4448751562683407384bloop_sign_1751413738034366976\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div> <br><p>On June 30, 2025 at 11:45:59 PM, Jeremy Schnipke (<a href=\"mailto:jschnipke@strategic-logix.com\" target=\"_blank\">jschnipke@strategic-logix.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><p>Rick,</p>\r\n<p>As promised, attached is a rough Pro Forma. We’ve included estimates for our expected hires as well as projections for converting our current pipeline.</p>\r\n<p>For clarity, we have modeled in drone orders that are currently logged, but have not included any reorders or speculative repeat orders at this point. While we expect reorders to become a significant revenue stream, there isn’t yet enough data to reliably estimate their timing or frequency, since most organizations are still working through their initial purchases.</p>\r\n<p>We did secure a couple of significant wins this afternoon, and we anticipate conversion of several major deals in the near term. This is supported by our collaboration with another company to help address sticking points with DLA and other primary procurement channels.</p>\r\n<p>The projected figures you see are mostly based on recurring small-unit purchases. These transactions tend to provide steady, consistent cash flow and form the backbone of our client relationships, even if they aren’t the largest deals.</p>\r\n<p>Please let me know if you have any questions or would like to talk through our assumptions in more detail — happy to walk through them anytime.</p><div></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Jun 30, 2025 at 2:36 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">There was mention of one drone order at $48M.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Can you verify that order or share a somewhat </div><div style=\"font-family:Helvetica,Arial;font-size:13px\">redacted version of that as a scanned image?</div><div><br></div>It helps build credibility.<div>Thanks,</div><div>Rick</div><div><br><div class=\"gmail_signature\">\r\n         \r\n      \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n      \r\n</div>\r\n\r\n\r\n</div></blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p><strong>Sincerely,</strong></p><p>Jeremy Schnipke<br>Chief Executive Officer, Strategic Logix LLC<br>Mobile: 419-203-3215<br><a rel=\"noopener\">jschnipke@strategic-logix.com</a></p></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</div></blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p><strong>Sincerely,</strong></p><p>Jeremy Schnipke<br>Chief Executive Officer, Strategic Logix LLC<br>Mobile: 419-203-3215<br><a rel=\"noopener\">jschnipke@strategic-logix.com</a></p></div></div>','Good evening Rick,\r\n\r\nI think there may have been a miscommunication on our last call. We do not\r\ncurrently have $250M in contracted orders. That figure represents our\r\nweighted pipeline, reflecting projected conversion rates based on qualified\r\nopportunities to date.\r\n\r\nOur current capital situation is quite tight, which is why we’re exploring\r\nboth a line of credit and a growth-focused cash infusion. As mentioned\r\nearlier, these projections were updated to show our anticipated trajectory\r\nheading into Q4, when significant government funding traditionally begins\r\nto flow.\r\n\r\nWe’re looking for capital to provide runway for salaries and key growth\r\nexpenditures ahead of these opportunities solidifying. There are also a few\r\npinch points where funding could directly help us secure larger deals. For\r\nexample, we began discussions today with DEVCOM regarding a potential\r\n500,000-unit drone order, with the requirement that all manufacturing be\r\nUS-based and completed within a year. While we can meet those production\r\nrates, the challenge is fulfilling the supplier prepayment requirements\r\nneeded to hold our cost structure at scale.\r\n\r\nThese figures are rough estimates, pulled together quickly based on our\r\nprevious pipeline projections. We haven’t had the bandwidth yet to develop\r\na more mature financial model, as our primary focus has been on closing\r\nsales profitably and innovating rapidly — which is exactly what has kept us\r\ncompetitive in a very fast-moving market.\r\n\r\nSome additional capital would also allow us to pay ourselves reasonable\r\nsalaries so we can stay fully focused on scaling. Since the beginning,\r\nevery dollar has gone straight back into growth and expansion, keeping us\r\ncash-flow positive but lean. We’re now hitting critical inflection points\r\nwhere meaningful capital could truly accelerate Strategic Logix, rather\r\nthan staying on the slower organic path.\r\n\r\nIf you’d like, I’d be happy to share more data on our past performance or\r\ntalk through exactly how we arrived at the numbers in the pro forma. Just\r\nlet me know, and I’d be glad to set up a call to walk through it together.\r\n\r\nOn Tue, Jul 1, 2025 at 7:54 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> Jeremy,\r\n> Thanks for these. Interesting for sure.\r\n>\r\n> On our call, I believe you said that you have orders for approx. $250M?\r\n> At a basic level and at the 25% profit margin you mentioned, that’s\r\n> approx. $187.5M…\r\n> So, I guess, I’m not sure why you need capital? Can you explain what I’m\r\n> not seeing?\r\n>\r\n> Thanks again,\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On June 30, 2025 at 11:45:59 PM, Jeremy Schnipke (\r\n> jschnipke@strategic-logix.com) wrote:\r\n>\r\n> Rick,\r\n>\r\n> As promised, attached is a rough Pro Forma. We’ve included estimates for\r\n> our expected hires as well as projections for converting our current\r\n> pipeline.\r\n>\r\n> For clarity, we have modeled in drone orders that are currently logged,\r\n> but have not included any reorders or speculative repeat orders at this\r\n> point. While we expect reorders to become a significant revenue stream,\r\n> there isn’t yet enough data to reliably estimate their timing or frequency,\r\n> since most organizations are still working through their initial purchases.\r\n>\r\n> We did secure a couple of significant wins this afternoon, and we\r\n> anticipate conversion of several major deals in the near term. This is\r\n> supported by our collaboration with another company to help address\r\n> sticking points with DLA and other primary procurement channels.\r\n>\r\n> The projected figures you see are mostly based on recurring small-unit\r\n> purchases. These transactions tend to provide steady, consistent cash flow\r\n> and form the backbone of our client relationships, even if they aren’t the\r\n> largest deals.\r\n>\r\n> Please let me know if you have any questions or would like to talk through\r\n> our assumptions in more detail — happy to walk through them anytime.\r\n>\r\n> On Mon, Jun 30, 2025 at 2:36 PM Rick <rick@mavrix.one> wrote:\r\n>\r\n>> There was mention of one drone order at $48M.\r\n>> Can you verify that order or share a somewhat\r\n>> redacted version of that as a scanned image?\r\n>>\r\n>> It helps build credibility.\r\n>> Thanks,\r\n>> Rick\r\n>>\r\n>> Rick Mislan, PhD\r\n>> https://mavrix.one\r\n>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>\r\n>\r\n>\r\n> --\r\n>\r\n> *Sincerely,*\r\n>\r\n> Jeremy Schnipke\r\n> Chief Executive Officer, Strategic Logix LLC\r\n> Mobile: 419-203-3215\r\n> jschnipke@strategic-logix.com\r\n>\r\n>\r\n\r\n-- \r\n\r\n*Sincerely,*\r\n\r\nJeremy Schnipke\r\nChief Executive Officer, Strategic Logix LLC\r\nMobile: 419-203-3215\r\njschnipke@strategic-logix.com',0,0,0,0,0,0,'2025-07-02 00:39:30','2025-12-09 19:13:09','2025-12-09 19:13:09','2025-12-09 19:13:09',NULL,NULL,NULL),
(422,4,' <LV3PR19MB8345C042B4F3004074DE521CC440A@LV3PR19MB8345.namprd19.prod.outlook.com>',NULL,NULL,'VOTIX replying to your contact','esanchez@votix.com','Edwin Sanchez','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;\r\n	panose-1:2 11 0 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:Gotham;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle17\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\">Thank you for reaching out. We look forward to meeting you and exploring synergies. DO you want to suggest two dates, and we accommodate?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;color:#212121;mso-ligatures:none\">Regards,&nbsp;</span><span style=\"color:#212121;mso-ligatures:none\"><o:p></o:p></span></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"3\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"bottom\" style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"3\" cellpadding=\"0\" width=\"100%\" style=\"width:100.0%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:.75pt .75pt 7.5pt .75pt\">\r\n<p class=\"MsoNormal\" style=\"line-height:12.6pt\"><span style=\"font-size:11.0pt;mso-ligatures:none\"><img width=\"197\" height=\"75\" style=\"width:2.052in;height:.7812in\" id=\"Picture_x0020_5\" src=\"cid:image001.jpg@01DBEB3B.215BE530\" alt=\"Image\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center;line-height:12.6pt\">\r\n<span style=\"font-size:11.0pt;mso-ligatures:none\"><a href=\"http://www.votix.com/\" title=\"http://www.votix.com/\"><span style=\"color:#467886\">www.votix.com</span></a><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td valign=\"bottom\" style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center;mso-line-height-alt:12.6pt\">\r\n<span style=\"font-size:13.0pt;font-family:&quot;Gotham&quot;,serif;color:#212121;mso-ligatures:none\"><img border=\"0\" width=\"2\" height=\"115\" style=\"width:.0208in;height:1.1979in\" id=\"Picture_x0020_4\" src=\"cid:image002.png@01DBEB3B.215BE530\" alt=\"Image\"></span><span style=\"color:#212121;mso-ligatures:none\"><o:p></o:p></span></p>\r\n</td>\r\n<td valign=\"bottom\" style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"3\" cellpadding=\"0\" width=\"100%\" style=\"width:100.0%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"3\" cellpadding=\"0\" width=\"100%\" style=\"width:100.0%\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"bottom\" style=\"padding:.75pt 3.75pt .75pt .75pt\">\r\n<p class=\"MsoNormal\" style=\"line-height:12.0pt\"><b><span style=\"font-size:11.0pt;mso-ligatures:none\">Edwin Sanchez</span></b><span style=\"font-size:11.0pt;mso-ligatures:none\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"bottom\" style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;color:#FF9000;mso-ligatures:none\">Founder &amp; CEO</span><span style=\"font-size:11.0pt;mso-ligatures:none\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:.75pt .75pt 3.75pt .75pt\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"3\" cellpadding=\"0\" width=\"100%\" style=\"width:100.0%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<p class=\"MsoNormal\" style=\"line-height:12.0pt\"><span style=\"font-size:9.0pt;color:black;mso-ligatures:none\"><a href=\"mailto:esanchez@votix.com\" title=\"mailto:esanchez@votix.com\"><span style=\"color:#467886\">esanchez@votix.com</span></a></span><span style=\"mso-ligatures:none\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<p class=\"MsoNormal\" style=\"line-height:12.0pt\"><span style=\"font-size:9.0pt;color:black;mso-ligatures:none\">Phone: (305) 773-3090&nbsp;</span><span style=\"font-size:11.0pt;mso-ligatures:none\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"3\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"bottom\" style=\"padding:0in 3.75pt 0in 3.75pt\">\r\n<p class=\"MsoNormal\" style=\"line-height:12.6pt\"><span style=\"font-size:11.0pt;color:blue;mso-ligatures:none\"><img border=\"0\" width=\"20\" height=\"20\" style=\"width:.2083in;height:.2083in\" id=\"Picture_x0020_3\" src=\"cid:image003.png@01DBEB3B.215BE530\" alt=\"Image\"></span><span style=\"mso-ligatures:none\"><o:p></o:p></span></p>\r\n</td>\r\n<td valign=\"bottom\" style=\"padding:0in 3.75pt 0in 3.75pt\">\r\n<p class=\"MsoNormal\" style=\"line-height:12.6pt\"><span style=\"font-size:11.0pt;color:blue;mso-ligatures:none\"><img border=\"0\" width=\"20\" height=\"20\" style=\"width:.2083in;height:.2083in\" id=\"Picture_x0020_2\" src=\"cid:image004.png@01DBEB3B.215BE530\" alt=\"Image\"></span><span style=\"font-size:11.0pt;mso-ligatures:none\"><o:p></o:p></span></p>\r\n</td>\r\n<td valign=\"bottom\" style=\"padding:0in 0in 0in 3.75pt\">\r\n<p class=\"MsoNormal\" style=\"line-height:12.6pt\"><span style=\"font-size:11.0pt;color:blue;mso-ligatures:none\"><img border=\"0\" width=\"20\" height=\"14\" style=\"width:.2083in;height:.1458in\" id=\"Picture_x0020_1\" src=\"cid:image005.png@01DBEB3B.215BE530\" alt=\"Image\"></span><span style=\"font-size:11.0pt;mso-ligatures:none\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</body>\r\n</html>','Hello Rick,\r\nThank you for reaching out. We look forward to meeting you and exploring synergies. DO you want to suggest two dates, and we accommodate?\r\n\r\n\r\nRegards,\r\n[Image]\r\nwww.votix.com<http://www.votix.com/>\r\n\r\nEdwin Sanchez\r\nFounder & CEO\r\nesanchez@votix.com<mailto:esanchez@votix.com>\r\nPhone: (305) 773-3090\r\n[Image]\r\n[Image]\r\n[Image]',0,0,0,0,0,0,'2025-07-02 14:23:56','2025-12-09 19:13:10','2025-12-09 19:13:10','2025-12-09 19:13:10',NULL,NULL,NULL),
(423,4,' <BL3PR20MB4924F185A66829EA0FDB9AF6AF40A@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: Do you know this company?','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nMorning Rick,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nYes, I’m familiar with ECM. Their PCB stator motors are well engineered and do provide for some interesting niche use cases, exclusively on the light-lift end of the spectrum. These axial-flux designs are pretty compact and efficient, however they do have torque\r\n limitations in heavier load scenarios, which make them unable to be effectively utilized for large vehicles.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nWe’re actually planning to introduce our own PCB stator production capacity in the latter half of Phase Charlie. That’ll give us vertical control while avoiding overreliance on offshore PCB fabs, which are mostly China-based today. ECM is one of the few U.S.-based\r\n players doing this seriously, but there’s still very limited domestic volume production, due to bottlenecks in magnetics and the fact their material stock is very downstream of the consumer electronics industry.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nRegards,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nJason</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Wednesday, July 2, 2025 3:50 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Do you know this company?</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Morning Jason,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Found this company through some other resear</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><a href=\"https://pcbstator.com/\">https://pcbstator.com/</a><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Can they help you/us?</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Not just for drones, but autonomous vehicles...</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Are there others like it in the US?</div>\r\n<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','Morning Rick,\r\n\r\nYes, I’m familiar with ECM. Their PCB stator motors are well engineered and do provide for some interesting niche use cases, exclusively on the light-lift end of the spectrum. These axial-flux designs are pretty compact and efficient, however they do have torque limitations in heavier load scenarios, which make them unable to be effectively utilized for large vehicles.\r\n\r\nWe’re actually planning to introduce our own PCB stator production capacity in the latter half of Phase Charlie. That’ll give us vertical control while avoiding overreliance on offshore PCB fabs, which are mostly China-based today. ECM is one of the few U.S.-based players doing this seriously, but there’s still very limited domestic volume production, due to bottlenecks in magnetics and the fact their material stock is very downstream of the consumer electronics industry.\r\n\r\nRegards,\r\nJason\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Wednesday, July 2, 2025 3:50 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Do you know this company?\r\n\r\nMorning Jason,\r\nFound this company through some other resear\r\nhttps://pcbstator.com/\r\nCan they help you/us?\r\nNot just for drones, but autonomous vehicles...\r\nAre there others like it in the US?\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]',0,0,0,0,0,0,'2025-07-02 15:56:12','2025-12-09 19:13:10','2025-12-09 19:13:10','2025-12-09 19:13:10',NULL,NULL,NULL),
(424,4,' <BL3PR20MB49242DA71FC5E1A352833A05AF40A@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: Do you know this company?','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nSo the Baba Yaga drones typically use six BLDC motors in a hexacopter configuration, with KV ratings between 900 and 1,250 (Which Raven could support). This KV range allows for a good balance of torque and speed, optimized for lifting payloads in the 15–20 kg\r\n range. The motors are paired with larger propellers to maximize thrust efficiency, especially in loitering and low-speed bombing roles. It’s an architecture that\'s ideal for low-cost, high-impact strike missions. As for which brands in particular they are\r\n using in Ukraine to outfit their drones, I\'m not entirely certain, but I believe they are just using whatever they can get their hands on (particularly, of course, chinese motors).</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Wednesday, July 2, 2025 10:35 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Do you know this company?</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>Good info. &nbsp;\r\n<div>Thanks. &nbsp;</div>\r\n<div>What do you know about the motors on the Baba Yaga drones being flown in Ukraine?</div>\r\n<div><br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<p class=\"x_gmail_quote\" style=\"color:#000\">On July 2, 2025 at 11:56:12 AM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_gmail_quote\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nMorning Rick,</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nYes, I’m familiar with ECM. Their PCB stator motors are well engineered and do provide for some interesting niche use cases, exclusively on the light-lift end of the spectrum. These axial-flux designs are pretty compact and efficient, however they do have torque\r\n limitations in heavier load scenarios, which make them unable to be effectively utilized for large vehicles.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nWe’re actually planning to introduce our own PCB stator production capacity in the latter half of Phase Charlie. That’ll give us vertical control while avoiding overreliance on offshore PCB fabs, which are mostly China-based today. ECM is one of the few U.S.-based\r\n players doing this seriously, but there’s still very limited domestic volume production, due to bottlenecks in magnetics and the fact their material stock is very downstream of the consumer electronics industry.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nRegards,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nJason</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Wednesday, July 2, 2025 3:50 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Do you know this company?</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Morning Jason,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Found this company through some other resear</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><a href=\"https://pcbstator.com/\">https://pcbstator.com/</a><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Can they help you/us?</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Not just for drones, but autonomous vehicles...</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Are there others like it in the US?</div>\r\n<br>\r\n<div class=\"x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','So the Baba Yaga drones typically use six BLDC motors in a hexacopter configuration, with KV ratings between 900 and 1,250 (Which Raven could support). This KV range allows for a good balance of torque and speed, optimized for lifting payloads in the 15–20 kg range. The motors are paired with larger propellers to maximize thrust efficiency, especially in loitering and low-speed bombing roles. It’s an architecture that\'s ideal for low-cost, high-impact strike missions. As for which brands in particular they are using in Ukraine to outfit their drones, I\'m not entirely certain, but I believe they are just using whatever they can get their hands on (particularly, of course, chinese motors).\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Wednesday, July 2, 2025 10:35 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Do you know this company?\r\n\r\nGood info.\r\nThanks.\r\nWhat do you know about the motors on the Baba Yaga drones being flown in Ukraine?\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\nOn July 2, 2025 at 11:56:12 AM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nMorning Rick,\r\n\r\nYes, I’m familiar with ECM. Their PCB stator motors are well engineered and do provide for some interesting niche use cases, exclusively on the light-lift end of the spectrum. These axial-flux designs are pretty compact and efficient, however they do have torque limitations in heavier load scenarios, which make them unable to be effectively utilized for large vehicles.\r\n\r\nWe’re actually planning to introduce our own PCB stator production capacity in the latter half of Phase Charlie. That’ll give us vertical control while avoiding overreliance on offshore PCB fabs, which are mostly China-based today. ECM is one of the few U.S.-based players doing this seriously, but there’s still very limited domestic volume production, due to bottlenecks in magnetics and the fact their material stock is very downstream of the consumer electronics industry.\r\n\r\nRegards,\r\nJason\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Wednesday, July 2, 2025 3:50 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Do you know this company?\r\n\r\nMorning Jason,\r\nFound this company through some other resear\r\nhttps://pcbstator.com/\r\nCan they help you/us?\r\nNot just for drones, but autonomous vehicles...\r\nAre there others like it in the US?\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n',0,0,0,0,0,0,'2025-07-02 18:25:05','2025-12-09 19:13:10','2025-12-09 19:13:10','2025-12-09 19:13:10',NULL,NULL,NULL),
(425,4,'<pOay9g4PTU25WLfNveeWXQ@geopod-ismtpd-11>',NULL,NULL,'Verify your email address to finish setting up your MyD&B account','no-reply@mail.dnb.com','no-reply@mail.dnb.com','<!DOCTYPE html>\r\n<html lang=\"en\">\r\n\r\n<head>\r\n    <meta charset=\"UTF-8\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <title>DNB Customer Portal | Forgot Password</title>\r\n    <style>\r\n        @import url(\'https://fonts.googleapis.com/css2?family=Open+Sans&display=swap\');\r\n\r\n        @media screen {\r\n            @font-face {\r\n                font-family: \'Open Sans\';\r\n                font-style: italic;\r\n                font-weight: 400;\r\n                font-display: block;\r\n            }\r\n        }\r\n\r\n        body {\r\n            font-family: \'Open Sans\', sans-serif;\r\n        }\r\n\r\n        .freemium {\r\n            margin: 0;\r\n            padding: 0;\r\n            background-color: #F6F7F8;\r\n        }\r\n\r\n        .logo {\r\n            text-align: center;\r\n            padding: 15px;\r\n            background-color: #F6F7F8;\r\n\r\n        }\r\n\r\n        .content {\r\n            padding: 2.5em 1.5em;\r\n            color: #4d5254;\r\n            line-height: 1.6em;\r\n        }\r\n\r\n        @media all and (min-width: 992px) {\r\n            .content {\r\n                padding: 2.5em 4.5em;\r\n            }\r\n        }\r\n\r\n        .freemium-container {\r\n            width: 100%;\r\n            max-width: 435px;\r\n            background-color: white;\r\n            margin: 0 auto;\r\n        }\r\n\r\n        @media all and (min-width: 992px) {\r\n            .freemium-container {\r\n                width: 600px;\r\n                max-width: none;\r\n            }\r\n        }\r\n\r\n        .footer {\r\n            text-align: center;\r\n            color: #4d5254;\r\n            background-color: #F6F7F8;\r\n            font-size: 14px;\r\n            padding: 32px 0;\r\n        }\r\n\r\n        .footer a {\r\n            text-decoration: none;\r\n        }\r\n\r\n        p {\r\n            margin: 20px auto;\r\n            font-size: 18px;\r\n        }\r\n\r\n        button {\r\n            border-radius: 8px;\r\n            display: flex;\r\n            flex-direction: row;\r\n            justify-content: center;\r\n            align-items: center;\r\n            padding: 10px 16px;\r\n\r\n            position: static;\r\n            width: 119px;\r\n            height: 44px;\r\n\r\n            display: block;\r\n            margin: 20px 0 40px 0;\r\n            font-size: 16px;\r\n            font-weight: normal;\r\n            text-align: center;\r\n            font-family: \'Open Sans\', sans-serif;\r\n            touch-action: manipulation;\r\n            cursor: pointer;\r\n            background-image: none;\r\n            border: 1px solid transparent;\r\n            white-space: nowrap;\r\n            padding: 10px 16px;\r\n            line-height: 1;\r\n            -webkit-user-select: none;\r\n            -moz-user-select: none;\r\n            -ms-user-select: none;\r\n            user-select: none;\r\n            background-color: #0078A7;\r\n            border-radius: 8px;\r\n            color: white;\r\n        }\r\n\r\n        button:hover {\r\n            background-color: #0ac1b9;\r\n        }\r\n\r\n        button:focus {\r\n            outline: none;\r\n        }\r\n\r\n        .reset-button {\r\n            text-decoration: none;\r\n\r\n\r\n        }\r\n\r\n        .privacy-notice {\r\n            color: #a9a9a9;\r\n            font-size: 14px;\r\n        }\r\n    </style>\r\n</head>\r\n\r\n<body class=\'freemium\'>\r\n    <div class=\'freemium-container\'>\r\n        <div class=\'logo\'>\r\n            <a href=\"https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD86C2iRuBBEYPUQ8XGhPqpUM-3DSCvT_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYik2q-2F-2B0hfNS6gFdCl8XE-2ByzeZz7DlBFfULBp858necL-2B0-2By7ODne3iwpWszHJpaD-2Fqf1VBeqVHUoN4zIP3I9mH6Yzr2xMt1YVO6gxHQSifUmFumvmNfnTQll-2F9-2BZfaHTfK2vqjvLXtS-2BVCsi3m93FxxbaRCM1-2FdDS41c7RqJbLWUV-2BfB6upG3BS5PVfcwkrxkCjuqBjPzL5QLOi9tYPKaxKJrM9LdErICnFOo7QcxfRW6gkb-2FD-2F0dC1xWg-2BPiTRBQkTVx-2F9tY9j5ZvCv84dgQaBw-3D-3D\" target=\"_blank\" rel=\"noopener noreferrer\">\r\n                <img\r\n                    src=\"https://cdn.mcauto-images-production.sendgrid.net/757b9156107e6386/6c3df67c-0766-470e-ab03-81a94b284a7f/209x31.png\" />\r\n            </a>\r\n        </div>\r\n        <div class=\'content\'>\r\n            <div style=\"color: #222;font-size: 28px;line-height: 1.2em; text-align: center;\">\r\n                Verify Your Email\r\n            </div>\r\n            <div>\r\n                <p>Hi Rick,</p>\r\n                <p>Please click the button below to verify your email. This link will be active for 24 hours. If it\'s\r\n                    expired, <a class=\"resend-link \" href=https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD87Gi6Zb5fkFnZlLAWGgESIQPYF6Oe1qCg7zcWrVKM0fCqCVHhsLlj4trDaUNQIdKaA-3D-3D6lnw_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYik2q-2F-2B0hfNS6gFdCl8XE-2ByzeZz7DlBFfULBp858necL-2B0-2By7ODne3iwpWszHJpaD-2Fqf1VBeqVHUoN4zIP3I9mH6Yzr2xMt1YVO6gxHQSifUmFumvmNfnTQll-2F9-2BZfaHTfK-2Fpj10BxHnMnvUXQHmIAACJ9nQJJoBu-2BU9qfMIh3vis5kHYq7K-2FTfyHMNMiFEozwVJOjAyQVQukk0ra2TSCf8k4f0N0jgkYQoBhq-2FwDWDNnB9a-2BoFLAxLCebcseBVRNRTkNvObukzrBIlQkLZj7cSkw-3D-3D>request a new link.</a></p>\r\n                <div style=\"margin-left:33%; \">\r\n                    <a class=\"reset-button\" href=https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD8zDKz9tAYON7T8tn-2BpqS7mLZOiz2cWvLxF86XgyOWBS-2FJ7RvjWPalNUS7dYGMHGIDfOG0iX3ka-2BoQQz9MPa1bhOw0smqejwaTrJH-2Fx7PfrCaAvZrlgFo1tEUthYNm42iylrZpPQ5mBLzUSF0-2Bj1FAf4CxIEr-2FH-2B-2FTk9JHZ6OYzNbVV65_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYik2q-2F-2B0hfNS6gFdCl8XE-2ByzeZz7DlBFfULBp858necL-2B0-2By7ODne3iwpWszHJpaD-2Fqf1VBeqVHUoN4zIP3I9mH6Yzr2xMt1YVO6gxHQSifUmFumvmNfnTQll-2F9-2BZfaHTfKnYZLT8NHnGnc5bJOH9Hxu4tJTKdNTCKvSdYQze10M1VT8ITPPz5VKZrLjtHlZIvjx2QAzrUJOKXiA8L529sY-2FBixk9DdnSzff5IKc7WnzlqAjKmGCaUbi4mNL-2B2yeASxm0akoZMcDyO9ieMzD3BTLw-3D-3D target=\"_blank\" rel=\"noopener noreferrer\"><button>Verify Email</button></a>\r\n                    <p>Thank You</p>\r\n                    <p>Dun &amp; Bradstreet</p>\r\n                </div>\r\n            </div>\r\n\r\n        </div>\r\n        <div class=\'footer\'>\r\n            <table style=\"width:100%\">\r\n                <tbody>\r\n                    <tr>\r\n                        <td style=\"width:15%\"><img alt=\"Logo\" src=\"http://cdn.mcauto-images-production.sendgrid.net/757b9156107e6386/8807d7b6-d1a3-4264-b4cb-006100b97405/221x32.png\" style=\"display:block; float:left; height:30px; width:130px\" title=\"Logo\" /></td>\r\n                        <td>\r\n                        <p><span style=\"font-family:times new roman,times,serif\"><span style=\"font-size:13px\">Privacy Notice:This message was sent from Dun & Bradstreet to rick@mavrix.one.<br />\r\n                        You may receive customer service e-mails even if you have requested not to receive marketing e-mails from Dun &amp; Bradstreet. Please read our <a href=\"https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD84st-2BjNdutQpdvm5VD3R5SibLESYL3KMihPXYKcvMRoyA5o2lovC9G8mtdsVLbZyZA-3D-3DICks_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYik2q-2F-2B0hfNS6gFdCl8XE-2ByzeZz7DlBFfULBp858necL-2B0-2By7ODne3iwpWszHJpaD-2Fqf1VBeqVHUoN4zIP3I9mH6Yzr2xMt1YVO6gxHQSifUmFumvmNfnTQll-2F9-2BZfaHTfKerlGz1-2FLQXONdqXBT6YJBLJuhvfTbIf9Tj7PVMLVqGdP4zGPLT3R4sOLNxGE0ZJeGwmO4ae53n8qeDgeHtCEDWyucCQQLBITtW4DVlX-2B1spN3afRhplsBVaaxOf6QJxm4PSq-2FFCo-2BrGRJXjz2gBr7w-3D-3D\">Privacy Policy</a>.<br />\r\n                        </span></span></p>\r\n                        <p><span style=\"font-family:times new roman,times,serif\"><span style=\"font-size:13px\">&copy; Dun &amp; Bradstreet, Inc. 2000 - 2025 All rights reserved.| 101 JFK Parkway, Short Hills, NJ 07078, USA  </span></span></p>\r\n                        </td>\r\n                    </tr>\r\n                </tbody>\r\n            </table>\r\n        </div>\r\n    </div>\r\n<img src=\"https://u8340266.ct.sendgrid.net/wf/open?upn=u001.D6mC8SG6iITw2GIzPjAtw3VnKGws73w4Kg-2Fn2LF1yNLiYtaudU5mmnjfmXVdybYWcgjYaXmSjf3iMPEiE1zYe407EaV88VOYmN7Us9hcK2UGuPIHXAdSzjtY9-2BIo3R5ROWNRbBldzyzlp2mufoWXHoWBFgkf3RYdjRcwlr918HH6cIj9RZOl8KBZEDUOwi0nHTW7fJua6kvIO1DAl-2BR7QU1jENC0PPH3VEahdhgrQ73jdkxZUptZgT9WF57lad-2FYUrq9TJnu98UIUubhN1I42m0B5lJr1PXWWEPxNb-2FCfLWNGrxYNBnm6KjptcosgrIWrviP-2FmbaD3Ryxq7HHv3F-2Bw-3D-3D\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/></body>\r\n\r\n</html>','( https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD86C2iRuBBEYPUQ8XGhPqpUM-3D6_p2_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYik2q-2F-2B0hfNS6gFdCl8XE-2ByzeZz7DlBFfULBp858necL-2B0-2By7ODne3iwpWszHJpaD-2Fqf1VBeqVHUoN4zIP3I9mH6Yzr2xMt1YVO6gxHQSifUmFumvmNfnTQll-2F9-2BZfaHTfK2hIbJFiJvj89Hy1VafUZ7AGb-2BvHdzemlvAs0fNuRaBtd0F1QO9nzmBYN8PPlRHvDiHZ2xtvxpbu0as6B47gmQvL3qFQGYNJsuGNSokoWxkg8S2yLZms2OvfCa45coNZ96CLGw-2FXbyuCc1s5tnHsxiA-3D-3D )\r\nVerify Your Email\r\n\r\nHi Rick,\r\n\r\nPlease click the button below to verify your email. This link will be active for 24 hours. If it\'s expired, request a new link. ( https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD87Gi6Zb5fkFnZlLAWGgESIQPYF6Oe1qCg7zcWrVKM0fCqCVHhsLlj4trDaUNQIdKaA-3D-3DU-lG_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYik2q-2F-2B0hfNS6gFdCl8XE-2ByzeZz7DlBFfULBp858necL-2B0-2By7ODne3iwpWszHJpaD-2Fqf1VBeqVHUoN4zIP3I9mH6Yzr2xMt1YVO6gxHQSifUmFumvmNfnTQll-2F9-2BZfaHTfK1bfyfCgt1Blltxjm08-2FqeKPX49tcIdNCeVYHh6-2Fp7HqAvy-2BIUsT-2FTrKWqkwq-2FqTiFDspb3vjO-2F-2BeW0MG4XsYonfm6AepqwS2wZC3UaysHrsNj0Q1obTlt4Muxpm672IVNn-2FtY7VvGhEl7CScONAncQ-3D-3D ) \r\n\r\nVerify Email ( https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD8zDKz9tAYON7T8tn-2BpqS7mLZOiz2cWvLxF86XgyOWBS-2FJ7RvjWPalNUS7dYGMHGIDfOG0iX3ka-2BoQQz9MPa1bhPmRVtdinkitEpOlpNwY36PYjV4PK8q3ZJmPm4FaPAaldBSeKd9Q2lLH4Y-2FlU9zI2rdLWZasvDu92T1427cWNIiexs9GiMoekW9nSO5Y01fZw-3D-3D36sf_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYik2q-2F-2B0hfNS6gFdCl8XE-2ByzeZz7DlBFfULBp858necL-2B0-2By7ODne3iwpWszHJpaD-2Fqf1VBeqVHUoN4zIP3I9mH6Yzr2xMt1YVO6gxHQSifUmFumvmNfnTQll-2F9-2BZfaHTfKxibBYvtjs492t8HKVslFhkyPtjK5LMgrCkz-2BG8Vg23ERyTS12G7foGecTHJf-2FKmInWGHX5ficgL3BFCAIfhkUMckR8XP29RlX4ff8w8YAz6krqkC0PUKnT2SXi9DQPsLUxkjv0bJRZYA8dB4SAKvhg-3D-3D )\r\n\r\nThank You\r\n\r\nDun & Bradstreet\r\n\r\nPrivacy Notice:This message was sent from Dun & Bradstreet to rick@mavrix.one.\r\nYou may receive customer service e-mails even if you have requested not to receive marketing e-mails from Dun & Bradstreet. Please read our Privacy Policy ( https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD84st-2BjNdutQpdvm5VD3R5SibLESYL3KMihPXYKcvMRoyA5o2lovC9G8mtdsVLbZyZA-3D-3DO8Iz_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYik2q-2F-2B0hfNS6gFdCl8XE-2ByzeZz7DlBFfULBp858necL-2B0-2By7ODne3iwpWszHJpaD-2Fqf1VBeqVHUoN4zIP3I9mH6Yzr2xMt1YVO6gxHQSifUmFumvmNfnTQll-2F9-2BZfaHTfKwZ5ZB3lEfeDTy6038WiGgL8H-2BkxeSqeZ8IF5Ckj8Vz9yg2rjountkUHLxpJKT721dr8JEVYA7VPx-2FrrYeceSPdkC-2F9-2BBTSD-2BDN141v0UFUxXSWgJhKEsawNcqU5hS1l3U1iRawtZgFxuqpAH-2BnNk5w-3D-3D ).\r\n\r\n© Dun & Bradstreet, Inc. 2000 - 2025 All rights reserved.| 101 JFK Parkway, Short Hills, NJ 07078, USA',0,0,0,0,0,0,'2025-07-03 11:23:43','2025-12-09 19:13:11','2025-12-09 19:13:11','2025-12-09 19:13:11',NULL,NULL,NULL),
(426,4,' <LV3PR19MB8345B6E984F21EBC67CFEF01C442A@LV3PR19MB8345.namprd19.prod.outlook.com>',NULL,NULL,'Re: VOTIX replying to your contact','esanchez@votix.com','Edwin Sanchez','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n</head>\r\n<body>\r\n<div dir=\"ltr\">Hello Rick,</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nI have a spot open between 10-10:30qm on Monday.</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\" dir=\"ltr\"><br>\r\n</div>\r\n<div id=\"ms-outlook-mobile-signature\">\r\n<div dir=\"ltr\">Regards,</div>\r\n<div dir=\"ltr\">Edwin Sanchez</div>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, July 4, 2025 9:15:28 AM<br>\r\n<b>To:</b> Edwin Sanchez &lt;esanchez@votix.com&gt;<br>\r\n<b>Subject:</b> Re: VOTIX replying to your contact</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nHi Edwin,</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nCan we jump on a call Monday or Tuesday morning?</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nLet me know what works best.</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nI’ll send an invite.</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks,</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div id=\"x_bloop_sign_1751634872080907776\" class=\"x_bloop_sign\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height:11px\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On July 2, 2025 at 10:24:41 AM, Edwin Sanchez (<a href=\"mailto:esanchez@votix.com\">esanchez@votix.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div lang=\"EN-US\" style=\"word-wrap:break-word\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_WordSection1\">\r\n<p class=\"x_MsoNormal\">Hello Rick,</p>\r\n<p class=\"x_MsoNormal\">Thank you for reaching out. We look forward to meeting you and exploring synergies. DO you want to suggest two dates, and we accommodate?</p>\r\n<p class=\"x_MsoNormal\">&nbsp;</p>\r\n<p class=\"x_MsoNormal\">&nbsp;</p>\r\n<div>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt; color:#212121\">Regards,&nbsp;</span><span style=\"color:#212121\"></span></p>\r\n<table class=\"x_MsoNormalTable\" border=\"0\" cellspacing=\"3\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"bottom\" style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<table class=\"x_MsoNormalTable\" border=\"0\" cellspacing=\"3\" cellpadding=\"0\" width=\"100%\" style=\"width:100.0%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:.75pt .75pt 7.5pt .75pt\">\r\n<p class=\"x_MsoNormal\" style=\"line-height:12.6pt\"><span style=\"font-size:11.0pt\"><img width=\"197\" height=\"75\" id=\"x_Picture_x0020_5\" src=\"cid:D6FFE334-55CD-438B-83BE-1717D80C2446\" alt=\"Image\" style=\"width:2.052in; height:.7812in\"></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<p class=\"x_MsoNormal\" align=\"center\" style=\"text-align:center; line-height:12.6pt\">\r\n<span style=\"font-size:11.0pt\"><a href=\"http://www.votix.com/\" title=\"http://www.votix.com/\"><span style=\"color:#467886\">www.votix.com</span></a></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td valign=\"bottom\" style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<p class=\"x_MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"font-size:13.0pt; font-family:&quot;Gotham&quot;,serif; color:#212121\"><img border=\"0\" width=\"2\" height=\"115\" id=\"x_Picture_x0020_4\" src=\"cid:D613D6DB-387E-4B81-B183-A277FEAEF51D\" alt=\"Image\" style=\"width:.0208in; height:1.1979in\"></span><span style=\"color:#212121\"></span></p>\r\n</td>\r\n<td valign=\"bottom\" style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<table class=\"x_MsoNormalTable\" border=\"0\" cellspacing=\"3\" cellpadding=\"0\" width=\"100%\" style=\"width:100.0%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<table class=\"x_MsoNormalTable\" border=\"0\" cellspacing=\"3\" cellpadding=\"0\" width=\"100%\" style=\"width:100.0%\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"bottom\" style=\"padding:.75pt 3.75pt .75pt .75pt\">\r\n<p class=\"x_MsoNormal\" style=\"line-height:12.0pt\"><b><span style=\"font-size:11.0pt\">Edwin Sanchez</span></b><span style=\"font-size:11.0pt\"></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"bottom\" style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:9.0pt; color:#FF9000\">Founder &amp; CEO</span><span style=\"font-size:11.0pt\"></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:.75pt .75pt 3.75pt .75pt\">\r\n<table class=\"x_MsoNormalTable\" border=\"0\" cellspacing=\"3\" cellpadding=\"0\" width=\"100%\" style=\"width:100.0%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<p class=\"x_MsoNormal\" style=\"line-height:12.0pt\"><span style=\"font-size:9.0pt; color:black\"><a href=\"mailto:esanchez@votix.com\" title=\"mailto:esanchez@votix.com\"><span style=\"color:#467886\">esanchez@votix.com</span></a></span><span style=\"\"></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<p class=\"x_MsoNormal\" style=\"line-height:12.0pt\"><span style=\"font-size:9.0pt; color:black\">Phone: (305) 773-3090&nbsp;</span><span style=\"font-size:11.0pt\"></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<table class=\"x_MsoNormalTable\" border=\"0\" cellspacing=\"3\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"bottom\" style=\"padding:0in 3.75pt 0in 3.75pt\">\r\n<p class=\"x_MsoNormal\" style=\"line-height:12.6pt\"><span style=\"font-size:11.0pt; color:blue\"><img border=\"0\" width=\"20\" height=\"20\" id=\"x_Picture_x0020_3\" src=\"cid:7B5A37E7-E9D6-465A-ADBA-AAEAA5E2CB1C\" alt=\"Image\" style=\"width:.2083in; height:.2083in\"></span><span style=\"\"></span></p>\r\n</td>\r\n<td valign=\"bottom\" style=\"padding:0in 3.75pt 0in 3.75pt\">\r\n<p class=\"x_MsoNormal\" style=\"line-height:12.6pt\"><span style=\"font-size:11.0pt; color:blue\"><img border=\"0\" width=\"20\" height=\"20\" id=\"x_Picture_x0020_2\" src=\"cid:D76F5803-29EC-4306-B1D3-E55274AF5F0E\" alt=\"Image\" style=\"width:.2083in; height:.2083in\"></span><span style=\"font-size:11.0pt\"></span></p>\r\n</td>\r\n<td valign=\"bottom\" style=\"padding:0in 0in 0in 3.75pt\">\r\n<p class=\"x_MsoNormal\" style=\"line-height:12.6pt\"><span style=\"font-size:11.0pt; color:blue\"><img border=\"0\" width=\"20\" height=\"14\" id=\"x_Picture_x0020_1\" src=\"cid:7E094B5A-E3E5-41A9-8B75-19E41BD1B694\" alt=\"Image\" style=\"width:.2083in; height:.1458in\"></span><span style=\"font-size:11.0pt\"></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<p class=\"x_MsoNormal\">&nbsp;</p>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Hello Rick,\r\nI have a spot open between 10-10:30qm on Monday.\r\n\r\nRegards,\r\nEdwin Sanchez\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, July 4, 2025 9:15:28 AM\r\nTo: Edwin Sanchez <esanchez@votix.com>\r\nSubject: Re: VOTIX replying to your contact\r\n\r\nHi Edwin,\r\nCan we jump on a call Monday or Tuesday morning?\r\nLet me know what works best.\r\nI’ll send an invite.\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn July 2, 2025 at 10:24:41 AM, Edwin Sanchez (esanchez@votix.com<mailto:esanchez@votix.com>) wrote:\r\n\r\nHello Rick,\r\n\r\nThank you for reaching out. We look forward to meeting you and exploring synergies. DO you want to suggest two dates, and we accommodate?\r\n\r\n\r\n\r\n\r\n\r\nRegards,\r\n\r\n[Image]\r\n\r\nwww.votix.com<http://www.votix.com/>\r\n\r\n\r\n\r\nEdwin Sanchez\r\n\r\nFounder & CEO\r\n\r\nesanchez@votix.com<mailto:esanchez@votix.com>\r\n\r\nPhone: (305) 773-3090\r\n\r\n[Image]\r\n\r\n[Image]\r\n\r\n[Image]\r\n\r\n\r\n',0,0,0,0,0,0,'2025-07-04 14:16:21','2025-12-09 19:13:11','2025-12-09 19:13:11','2025-12-09 19:13:11',NULL,NULL,NULL),
(427,4,'<calendar-5c8bc22c-a4dd-42b2-a471-e1f632301c77@google.com>',NULL,NULL,'Meeting with Jason Blick, Rick Mislan','brian@bayfrontcapitalllc.com','Brian Stufflebean','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v144/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v118/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/EmailMessage\"><meta itemprop=\"description\" content=\"Brian Stufflebean: Rick, Do not have Jason&#39;s email address, so please forward invitation to him. Thank you, Brian\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"vh83ltmvig1cd6kh6j3rpfjjlo\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">My Meeting</span><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250707T200000Z\"></time><time itemprop=\"endDate\" datetime=\"20250707T210000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><span itemscope itemtype=\"http://schema.org/EmailMessage\"><p itemprop=\"description\">Rick, <p>Do not have Jason&#39;s email address, so please forward invitation to him. <p>Thank you,<p>Brian</p></span></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><div class=\"\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:2px;\"><div style=\"font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-weight: 400; font-size: 22px; line-height: 28px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span itemprop=\"name\">My Meeting</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250707T200000Z\"></time><time itemprop=\"endDate\" datetime=\"20250707T210000Z\"></time></span><span>Monday Jul 7, 2025 ⋅ 4pm – 5pm (Eastern Time - New York)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span>Brian Stufflebean is inviting you to a scheduled Zoom meeting.<br>Join Zoom Meeting<br><a href=\"https://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fj%2F86820793381%3Fpwd%3D6wrszM8gCDVU6ST24GcbduDGZiEWbp.1&amp;sa=D&amp;ust=1752079440000000&amp;usg=AOvVaw1SoQK09bZXPtKC5JpUKo3_\" target=\"_blank\">https://us06web.zoom.us/j/86820793381?pwd=6wrszM8gCDVU6ST24GcbduDGZiEWbp.1</a><p>Meeting ID: 868 2079 3381<br>Passcode: 717446</p><p>---</p><p>One tap mobile<br>+13052241968,,86820793381#,,,,*717446# US<br>+19294362866,,86820793381#,,,,*717446# US (New York)</p><p>---</p><p>Dial by your location<br>• +1 305 224 1968 US<br>• +1 929 436 2866 US (New York)<br>• +1 301 715 8592 US (Washington DC)<br>• +1 309 205 3325 US<br>• +1 312 626 6799 US (Chicago)<br>• +1 646 931 3860 US<br>• +1 669 900 6833 US (San Jose)<br>• +1 689 278 1000 US<br>• +1 719 359 4580 US<br>• +1 253 205 0468 US<br>• +1 253 215 8782 US (Tacoma)<br>• +1 346 248 7799 US (Houston)<br>• +1 360 209 5623 US<br>• +1 386 347 5053 US<br>• +1 507 473 4847 US<br>• +1 564 217 2000 US<br>• +1 669 444 9171 US</p><p>Meeting ID: 868 2079 3381<br>Passcode: 717446</p><p>Find your local number: <a href=\"https://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fu%2Fkel86fgxCL&amp;sa=D&amp;ust=1752079440000000&amp;usg=AOvVaw1J0JCueo7k1iT4LXqc-1x-\" target=\"_blank\">https://us06web.zoom.us/u/kel86fgxCL</a></p><p></p></span><meta itemprop=\"description\" content=\"Brian Stufflebean is inviting you to a scheduled Zoom meeting.\r\nJoin Zoom Meeting\r\nhttps://us06web.zoom.us/j/86820793381?pwd=6wrszM8gCDVU6ST24GcbduDGZiEWbp.1\r\n\r\nMeeting ID: 868 2079 3381\r\nPasscode: 717446\r\n\r\n---\r\n\r\nOne tap mobile\r\n+13052241968,,86820793381#,,,,*717446# US\r\n+19294362866,,86820793381#,,,,*717446# US (New York)\r\n\r\n---\r\n\r\nDial by your location\r\n• +1 305 224 1968 US\r\n• +1 929 436 2866 US (New York)\r\n• +1 301 715 8592 US (Washington DC)\r\n• +1 309 205 3325 US\r\n• +1 312 626 6799 US (Chicago)\r\n• +1 646 931 3860 US\r\n• +1 669 900 6833 US (San Jose)\r\n• +1 689 278 1000 US\r\n• +1 719 359 4580 US\r\n• +1 253 205 0468 US\r\n• +1 253 215 8782 US (Tacoma)\r\n• +1 346 248 7799 US (Houston)\r\n• +1 360 209 5623 US\r\n• +1 386 347 5053 US\r\n• +1 507 473 4847 US\r\n• +1 564 217 2000 US\r\n• +1 669 444 9171 US\r\n\r\nMeeting ID: 868 2079 3381\r\nPasscode: 717446\r\n\r\nFind your local number: https://us06web.zoom.us/u/kel86fgxCL\r\n\r\n\"/></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Location</h2></td></tr></table><span itemprop=\"location\" itemscope itemtype=\"http://schema.org/Place\"><span itemprop=\"name\" class=\"primary-text notranslate\" style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\">https://us06web.zoom.us/j/86820793381?pwd=6wrszM8gCDVU6ST24GcbduDGZiEWbp.1</span><br/><a href=\"https://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fj%2F86820793381%3Fpwd%3D6wrszM8gCDVU6ST24GcbduDGZiEWbp.1&amp;sa=D&amp;ust=1752079440000000&amp;usg=AOvVaw1SoQK09bZXPtKC5JpUKo3_\" class=\"accent-text underline-on-hover\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" itemprop=\"map\">View map</a></span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Organizer</h2></td></tr></table><div style=\"color: #3c4042;\"><span class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:brian@bayfrontcapitalllc.com\">Brian Stufflebean</a></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Brian Stufflebean\"/><meta itemprop=\"email\" content=\"brian@bayfrontcapitalllc.com\"/></span></div><div style=\"color: #707579;\"><a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:brian@bayfrontcapitalllc.com\">brian@bayfrontcapitalllc.com</a></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"></div></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','Rick, Do not have Jason\'s email address, so please forward invitation to  \r\nhim. Thank you, Brian\r\n\r\nMy Meeting\r\nMonday Jul 7, 2025 ⋅ 4pm – 5pm\r\nEastern Time - New York\r\n\r\nLocation\r\nhttps://us06web.zoom.us/j/86820793381?pwd=6wrszM8gCDVU6ST24GcbduDGZiEWbp.1	\r\nhttps://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fj%2F86820793381%3Fpwd%3D6wrszM8gCDVU6ST24GcbduDGZiEWbp.1&sa=D&ust=1752079440000000&usg=AOvVaw1SoQK09bZXPtKC5JpUKo3_\r\n\r\n\r\n\r\nBrian Stufflebean is inviting you to a scheduled Zoom meeting.\r\nJoin Zoom Meeting\r\nhttps://us06web.zoom.us/j/86820793381?pwd=6wrszM8gCDVU6ST24GcbduDGZiEWbp.1\r\n\r\nMeeting ID: 868 2079 3381\r\nPasscode: 717446\r\n\r\n---\r\n\r\nOne tap mobile\r\n+13052241968,,86820793381#,,,,*717446# US\r\n+19294362866,,86820793381#,,,,*717446# US (New York)\r\n\r\n---\r\n\r\nDial by your location\r\n• +1 305 224 1968 US\r\n• +1 929 436 2866 US (New York)\r\n• +1 301 715 8592 US (Washington DC)\r\n• +1 309 205 3325 US\r\n• +1 312 626 6799 US (Chicago)\r\n• +1 646 931 3860 US\r\n• +1 669 900 6833 US (San Jose)\r\n• +1 689 278 1000 US\r\n• +1 719 359 4580 US\r\n• +1 253 205 0468 US\r\n• +1 253 215 8782 US (Tacoma)\r\n• +1 346 248 7799 US (Houston)\r\n• +1 360 209 5623 US\r\n• +1 386 347 5053 US\r\n• +1 507 473 4847 US\r\n• +1 564 217 2000 US\r\n• +1 669 444 9171 US\r\n\r\nMeeting ID: 868 2079 3381\r\nPasscode: 717446\r\n\r\nFind your local number: https://us06web.zoom.us/u/kel86fgxCL\r\n\r\n\r\n\r\nOrganizer\r\nBrian Stufflebean\r\nbrian@bayfrontcapitalllc.com\r\n\r\n',0,0,0,0,0,0,'2025-07-04 16:44:57','2025-12-09 19:13:11','2025-12-09 19:13:11','2025-12-09 19:13:11',NULL,NULL,NULL),
(428,4,'<calendar-469796bc-71a4-41c4-9128-54acedfe14ab@google.com>',NULL,NULL,'Invitation: My Meeting @ Mon Jul 7, 2025 4pm - 5pm (EDT) (rick@mavrix.one)','brian@bayfrontcapitalllc.com','Brian Stufflebean','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v143/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v117/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation from Brian Stufflebean\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"vh83ltmvig1cd6kh6j3rpfjjlo\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">My Meeting</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=dmg4M2x0bXZpZzFjZDZraDZqM3JwZmpqbG8gcmlja0BtYXZyaXgub25l&amp;tok=MjgjYnJpYW5AYmF5ZnJvbnRjYXBpdGFsbGxjLmNvbTIxNjAwNGYxOWY2OTc5NzMwZGVlNTQ4MDYxZDhjNWEzMGE4ZmQ0YzY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250707T200000Z\"></time><time itemprop=\"endDate\" datetime=\"20250707T210000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">Brian Stufflebean is inviting you to a scheduled Zoom meeting.\r\nJoin Zoom Meeting\r\nhttps://us06web.zoom.us/j/86820793381?pwd=6wrszM8gCDVU6ST24GcbduDGZiEWbp.1\r\n\r\nMeeting ID: 868 2079 3381\r\nPasscode: 717446\r\n</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><div class=\"\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span>Brian Stufflebean is inviting you to a scheduled Zoom meeting.<br>Join Zoom Meeting<br><a href=\"https://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fj%2F86820793381%3Fpwd%3D6wrszM8gCDVU6ST24GcbduDGZiEWbp.1&amp;sa=D&amp;ust=1752079500000000&amp;usg=AOvVaw0YVlOnJBbFGgWMglKdvxzI\" target=\"_blank\">https://us06web.zoom.us/j/86820793381?pwd=6wrszM8gCDVU6ST24GcbduDGZiEWbp.1</a><p>Meeting ID: 868 2079 3381<br>Passcode: 717446</p><p>---</p><p>One tap mobile<br>+13052241968,,86820793381#,,,,*717446# US<br>+19294362866,,86820793381#,,,,*717446# US (New York)</p><p>---</p><p>Dial by your location<br>• +1 305 224 1968 US<br>• +1 929 436 2866 US (New York)<br>• +1 301 715 8592 US (Washington DC)<br>• +1 309 205 3325 US<br>• +1 312 626 6799 US (Chicago)<br>• +1 646 931 3860 US<br>• +1 669 900 6833 US (San Jose)<br>• +1 689 278 1000 US<br>• +1 719 359 4580 US<br>• +1 253 205 0468 US<br>• +1 253 215 8782 US (Tacoma)<br>• +1 346 248 7799 US (Houston)<br>• +1 360 209 5623 US<br>• +1 386 347 5053 US<br>• +1 507 473 4847 US<br>• +1 564 217 2000 US<br>• +1 669 444 9171 US</p><p>Meeting ID: 868 2079 3381<br>Passcode: 717446</p><p>Find your local number: <a href=\"https://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fu%2Fkel86fgxCL&amp;sa=D&amp;ust=1752079500000000&amp;usg=AOvVaw3SvNeZ2HJB1-P-fUt_qUy3\" target=\"_blank\">https://us06web.zoom.us/u/kel86fgxCL</a></p><p></p></span><meta itemprop=\"description\" content=\"Brian Stufflebean is inviting you to a scheduled Zoom meeting.\r\nJoin Zoom Meeting\r\nhttps://us06web.zoom.us/j/86820793381?pwd=6wrszM8gCDVU6ST24GcbduDGZiEWbp.1\r\n\r\nMeeting ID: 868 2079 3381\r\nPasscode: 717446\r\n\r\n---\r\n\r\nOne tap mobile\r\n+13052241968,,86820793381#,,,,*717446# US\r\n+19294362866,,86820793381#,,,,*717446# US (New York)\r\n\r\n---\r\n\r\nDial by your location\r\n• +1 305 224 1968 US\r\n• +1 929 436 2866 US (New York)\r\n• +1 301 715 8592 US (Washington DC)\r\n• +1 309 205 3325 US\r\n• +1 312 626 6799 US (Chicago)\r\n• +1 646 931 3860 US\r\n• +1 669 900 6833 US (San Jose)\r\n• +1 689 278 1000 US\r\n• +1 719 359 4580 US\r\n• +1 253 205 0468 US\r\n• +1 253 215 8782 US (Tacoma)\r\n• +1 346 248 7799 US (Houston)\r\n• +1 360 209 5623 US\r\n• +1 386 347 5053 US\r\n• +1 507 473 4847 US\r\n• +1 564 217 2000 US\r\n• +1 669 444 9171 US\r\n\r\nMeeting ID: 868 2079 3381\r\nPasscode: 717446\r\n\r\nFind your local number: https://us06web.zoom.us/u/kel86fgxCL\r\n\r\n\"/></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250707T200000Z\"></time><time itemprop=\"endDate\" datetime=\"20250707T210000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Monday Jul 7, 2025 ⋅ 4pm – 5pm (Eastern Time - New York)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Location</h2></td></tr></table><span itemprop=\"location\" itemscope itemtype=\"http://schema.org/Place\"><span itemprop=\"name\" class=\"primary-text notranslate\" style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\">https://us06web.zoom.us/j/86820793381?pwd=6wrszM8gCDVU6ST24GcbduDGZiEWbp.1</span><br/><a href=\"https://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fj%2F86820793381%3Fpwd%3D6wrszM8gCDVU6ST24GcbduDGZiEWbp.1&amp;sa=D&amp;ust=1752079500000000&amp;usg=AOvVaw0YVlOnJBbFGgWMglKdvxzI\" class=\"accent-text underline-on-hover\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" itemprop=\"map\">View map</a></span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:brian@bayfrontcapitalllc.com\">Brian Stufflebean</a></span><meta itemprop=\"email\" content=\"brian@bayfrontcapitalllc.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Brian Stufflebean\"/><meta itemprop=\"email\" content=\"brian@bayfrontcapitalllc.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=dmg4M2x0bXZpZzFjZDZraDZqM3JwZmpqbG8gcmlja0BtYXZyaXgub25l&amp;tok=MjgjYnJpYW5AYmF5ZnJvbnRjYXBpdGFsbGxjLmNvbTIxNjAwNGYxOWY2OTc5NzMwZGVlNTQ4MDYxZDhjNWEzMGE4ZmQ0YzY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=dmg4M2x0bXZpZzFjZDZraDZqM3JwZmpqbG8gcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjgjYnJpYW5AYmF5ZnJvbnRjYXBpdGFsbGxjLmNvbTIxNjAwNGYxOWY2OTc5NzMwZGVlNTQ4MDYxZDhjNWEzMGE4ZmQ0YzY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=dmg4M2x0bXZpZzFjZDZraDZqM3JwZmpqbG8gcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjgjYnJpYW5AYmF5ZnJvbnRjYXBpdGFsbGxjLmNvbTIxNjAwNGYxOWY2OTc5NzMwZGVlNTQ4MDYxZDhjNWEzMGE4ZmQ0YzY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=dmg4M2x0bXZpZzFjZDZraDZqM3JwZmpqbG8gcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjgjYnJpYW5AYmF5ZnJvbnRjYXBpdGFsbGxjLmNvbTIxNjAwNGYxOWY2OTc5NzMwZGVlNTQ4MDYxZDhjNWEzMGE4ZmQ0YzY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=dmg4M2x0bXZpZzFjZDZraDZqM3JwZmpqbG8gcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjgjYnJpYW5AYmF5ZnJvbnRjYXBpdGFsbGxjLmNvbTIxNjAwNGYxOWY2OTc5NzMwZGVlNTQ4MDYxZDhjNWEzMGE4ZmQ0YzY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=dmg4M2x0bXZpZzFjZDZraDZqM3JwZmpqbG8gcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjgjYnJpYW5AYmF5ZnJvbnRjYXBpdGFsbGxjLmNvbTIxNjAwNGYxOWY2OTc5NzMwZGVlNTQ4MDYxZDhjNWEzMGE4ZmQ0YzY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=dmg4M2x0bXZpZzFjZDZraDZqM3JwZmpqbG8gcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjgjYnJpYW5AYmF5ZnJvbnRjYXBpdGFsbGxjLmNvbTIxNjAwNGYxOWY2OTc5NzMwZGVlNTQ4MDYxZDhjNWEzMGE4ZmQ0YzY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=dmg4M2x0bXZpZzFjZDZraDZqM3JwZmpqbG8gcmlja0BtYXZyaXgub25l&amp;tok=MjgjYnJpYW5AYmF5ZnJvbnRjYXBpdGFsbGxjLmNvbTIxNjAwNGYxOWY2OTc5NzMwZGVlNTQ4MDYxZDhjNWEzMGE4ZmQ0YzY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=dmg4M2x0bXZpZzFjZDZraDZqM3JwZmpqbG8gcmlja0BtYXZyaXgub25l&amp;tok=MjgjYnJpYW5AYmF5ZnJvbnRjYXBpdGFsbGxjLmNvbTIxNjAwNGYxOWY2OTc5NzMwZGVlNTQ4MDYxZDhjNWEzMGE4ZmQ0YzY&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','My Meeting\r\nMonday Jul 7, 2025 ⋅ 4pm – 5pm\r\nEastern Time - New York\r\n\r\nLocation\r\nhttps://us06web.zoom.us/j/86820793381?pwd=6wrszM8gCDVU6ST24GcbduDGZiEWbp.1	\r\nhttps://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fj%2F86820793381%3Fpwd%3D6wrszM8gCDVU6ST24GcbduDGZiEWbp.1&sa=D&ust=1752079500000000&usg=AOvVaw0YVlOnJBbFGgWMglKdvxzI\r\n\r\n\r\n\r\nBrian Stufflebean is inviting you to a scheduled Zoom meeting.\r\nJoin Zoom Meeting\r\nhttps://us06web.zoom.us/j/86820793381?pwd=6wrszM8gCDVU6ST24GcbduDGZiEWbp.1\r\n\r\nMeeting ID: 868 2079 3381\r\nPasscode: 717446\r\n\r\n---\r\n\r\nOne tap mobile\r\n+13052241968,,86820793381#,,,,*717446# US\r\n+19294362866,,86820793381#,,,,*717446# US (New York)\r\n\r\n---\r\n\r\nDial by your location\r\n• +1 305 224 1968 US\r\n• +1 929 436 2866 US (New York)\r\n• +1 301 715 8592 US (Washington DC)\r\n• +1 309 205 3325 US\r\n• +1 312 626 6799 US (Chicago)\r\n• +1 646 931 3860 US\r\n• +1 669 900 6833 US (San Jose)\r\n• +1 689 278 1000 US\r\n• +1 719 359 4580 US\r\n• +1 253 205 0468 US\r\n• +1 253 215 8782 US (Tacoma)\r\n• +1 346 248 7799 US (Houston)\r\n• +1 360 209 5623 US\r\n• +1 386 347 5053 US\r\n• +1 507 473 4847 US\r\n• +1 564 217 2000 US\r\n• +1 669 444 9171 US\r\n\r\nMeeting ID: 868 2079 3381\r\nPasscode: 717446\r\n\r\nFind your local number: https://us06web.zoom.us/u/kel86fgxCL\r\n\r\n\r\n\r\nOrganizer\r\nBrian Stufflebean\r\nbrian@bayfrontcapitalllc.com\r\n\r\nGuests\r\nBrian Stufflebean - organizer\r\nrick@mavrix.one\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=dmg4M2x0bXZpZzFjZDZraDZqM3JwZmpqbG8gcmlja0BtYXZyaXgub25l&tok=MjgjYnJpYW5AYmF5ZnJvbnRjYXBpdGFsbGxjLmNvbTIxNjAwNGYxOWY2OTc5NzMwZGVlNTQ4MDYxZDhjNWEzMGE4ZmQ0YzY&ctz=America%2FNew_York&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=dmg4M2x0bXZpZzFjZDZraDZqM3JwZmpqbG8gcmlja0BtYXZyaXgub25l&tok=MjgjYnJpYW5AYmF5ZnJvbnRjYXBpdGFsbGxjLmNvbTIxNjAwNGYxOWY2OTc5NzMwZGVlNTQ4MDYxZDhjNWEzMGE4ZmQ0YzY&ctz=America%2FNew_York&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-07-04 16:45:13','2025-12-09 19:13:12','2025-12-09 19:13:12','2025-12-09 19:13:12',NULL,NULL,NULL),
(429,4,'<v63qtJhFQUYg2xPUNVSgUCzQ7mjpDugsv43rlv46guJQfB4lw-PKQ1IJYJXUhngTBpmegIl1UtUpGXUjSmuamhO6V_EzJZ_6Tjbifdh5zS8=@s3global.us>',NULL,NULL,'NDNCA','CT@s3global.us','CT','<div style=\"font-family: Arial, sans-serif; font-size: 14px;\">Rick, Here is our standard NDNCA. Will need company name and infromation / address, and name of signatory, i.e., CEO, etc.</div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\">Please let me know if you have any questions or suggestions.</div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\">Sincerely</div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div>\r\n<div style=\"font-family: Arial, sans-serif; font-size: 14px;\" class=\"protonmail_signature_block \">\r\n    <div class=\"protonmail_signature_block-user \"><div><span style=\"font-family:Arial, sans-serif\"><span style=\"font-family:Georgia, serif;font-size:12pt\">Carson J. Tucker, Esq., JD, MSEL</span></span><div style=\"font-family:Arial, sans-serif\"><div><div style=\"background-color: rgb(255, 255, 255);\"><span style=\"font-family:Georgia, serif;font-size:12pt\">General Counsel</span></div><div style=\"background-color: rgb(255, 255, 255);\"><span style=\"font-family:Georgia, serif;font-size:12pt\">S3 Global, LLC</span></div><div style=\"background-color: rgb(255, 255, 255);\"><span style=\"font-family:Georgia, serif;font-size:12pt\">US +17348879261</span></div><div style=\"background-color: rgb(255, 255, 255);\"><span style=\"font-family:Georgia, serif;font-size:12pt\">UK +447484678559</span></div><div style=\"background-color: rgb(255, 255, 255);\"><span style=\"font-family:Georgia, serif;font-size:12pt\">EU +33648505867</span></div><div style=\"background-color: rgb(255, 255, 255);\"><span style=\"font-family:Georgia, serif\"><br></span></div><span style=\"background-color: rgb(255, 255, 255);\"><span style=\"font-family:Georgia, serif\"><span style=\"font-size:12pt\">This message and any attachments may contain confidential information which is intended only for the use of the addressee(s).&nbsp; It may also contain information which is protected by attorney/client privilege or the work-product doctrine, among other confidentiality principles and legal privileges.&nbsp;Copying, forwarding, or distributing of this communication by or to persons other than the addressee(s) is prohibited.&nbsp;&nbsp;If you have received this communication in error, do not forward it or use it in any way. &nbsp;Please notify us immediately of the error and promptly delete and/or destroy all electronic and/or paper versions of this communication and any attachments.&nbsp; Thank you for your cooperation and we apologize for any inconvenience.</span><span style=\"font-size:12pt\">&nbsp;</span><span style=\"font-size:10.5pt\">&nbsp;</span></span></span></div></div><div style=\"font-family: Arial, sans-serif; background-color: rgb(255, 255, 255);\"><span style=\"font-family:Georgia, serif\"><br></span></div></div><span style=\"font-family:Arial, sans-serif\"></span></div>\r\n    <div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div>\r\n    <div class=\"protonmail_signature_block-proton\">\r\n        Sent with <a href=\"https://proton.me/mail/home\" target=\"_blank\">Proton Mail</a> secure email.\r\n    </div>\r\n</div>\r\n','Rick, Here is our standard NDNCA. Will need company name and infromation / address, and name of signatory, i.e., CEO, etc.\n\nPlease let me know if you have any questions or suggestions.\n\nSincerely\n\nCarson J. Tucker, Esq., JD, MSEL\nGeneral Counsel\nS3 Global, LLC\nUS +17348879261\nUK +447484678559\nEU +33648505867\n\nThis message and any attachments may contain confidential information which is intended only for the use of the addressee(s). It may also contain information which is protected by attorney/client privilege or the work-product doctrine, among other confidentiality principles and legal privileges. Copying, forwarding, or distributing of this communication by or to persons other than the addressee(s) is prohibited. If you have received this communication in error, do not forward it or use it in any way. Please notify us immediately of the error and promptly delete and/or destroy all electronic and/or paper versions of this communication and any attachments. Thank you for your cooperation and we apologize for any inconvenience.\n\nSent with [Proton Mail](https://proton.me/mail/home) secure email.',0,0,0,0,0,0,'2025-07-04 17:04:54','2025-12-09 19:13:13','2025-12-09 19:13:13','2025-12-09 19:13:13',NULL,NULL,NULL),
(430,4,' <LV3PR19MB83452282D187856E76BFF38CC44CA@LV3PR19MB8345.namprd19.prod.outlook.com>',NULL,NULL,'Mavrix - VOTIX','esanchez@votix.com','Edwin Sanchez','<!DOCTYPE html>\r\n<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n</head>\r\n<body>\r\n<br>\r\n<div style=\"max-width: 600px; color: #242424; font-family:\'Segoe UI\',\'Helvetica Neue\',Helvetica,Arial,sans-serif\" class=\"me-email-text\">\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n<div style=\"margin-bottom: 12px;\"><span class=\"me-email-text\" style=\"font-size: 24px;font-weight: 700; margin-right:12px;\">Microsoft Teams</span>\r\n<a id=\"meet_invite_block.action.help\" class=\"me-email-link\" style=\"font-size:14px; text-decoration:underline; color: #5B5FC7;\" href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\">\r\nNeed help?</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><a id=\"meet_invite_block.action.join_link\" title=\"Meeting join link\" class=\"me-email-headline\" style=\"font-size: 20px; font-weight:600; text-decoration: underline; color: #5B5FC7;\" href=\"https://teams.microsoft.com/l/meetup-join/19%3ameeting_YWMyZDM3M2EtYWM2Zi00YzIzLTk2YjUtMTVhZjIwYTgzMThl%40thread.v2/0?context=%7b%22Tid%22%3a%22be4de4ce-5677-4f1d-8929-60b5cf6bc3f3%22%2c%22Oid%22%3a%2287b2c480-6eda-4d88-a23f-b82ef1f5753c%22%7d\" target=\"_blank\" rel=\"noreferrer noopener\">Join\r\n the meeting now</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Meeting ID:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">235 343 687 958 4</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Passcode:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">Xf7aC7Mk</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px; max-width: 532px;\">\r\n<hr style=\"border: 0; background: #D1D1D1; height: 1px;\">\r\n</div>\r\n<div><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">For organizers:\r\n</span><a id=\"meet_invite_block.action.organizer_meet_options\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7;\" target=\"_blank\" href=\"https://teams.microsoft.com/meetingOptions/?organizerId=87b2c480-6eda-4d88-a23f-b82ef1f5753c&amp;tenantId=be4de4ce-5677-4f1d-8929-60b5cf6bc3f3&amp;threadId=19_meeting_YWMyZDM3M2EtYWM2Zi00YzIzLTk2YjUtMTVhZjIwYTgzMThl@thread.v2&amp;messageId=0&amp;language=en-US\" rel=\"noreferrer noopener\">Meeting\r\n options</a> </div>\r\n<div style=\"margin-top: 24px; margin-bottom: 6px;\"></div>\r\n<div style=\"margin-bottom: 24px;\"></div>\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n</div>\r\n</body>\r\n</html>','\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://teams.microsoft.com/l/meetup-join/19%3ameeting_YWMyZDM3M2EtYWM2Zi00YzIzLTk2YjUtMTVhZjIwYTgzMThl%40thread.v2/0?context=%7b%22Tid%22%3a%22be4de4ce-5677-4f1d-8929-60b5cf6bc3f3%22%2c%22Oid%22%3a%2287b2c480-6eda-4d88-a23f-b82ef1f5753c%22%7d>\r\nMeeting ID: 235 343 687 958 4\r\nPasscode: Xf7aC7Mk\r\n________________________________\r\nFor organizers: Meeting options<https://teams.microsoft.com/meetingOptions/?organizerId=87b2c480-6eda-4d88-a23f-b82ef1f5753c&tenantId=be4de4ce-5677-4f1d-8929-60b5cf6bc3f3&threadId=19_meeting_YWMyZDM3M2EtYWM2Zi00YzIzLTk2YjUtMTVhZjIwYTgzMThl@thread.v2&messageId=0&language=en-US>\r\n________________________________________________________________________________',0,0,0,0,0,0,'2025-07-06 14:00:23','2025-12-09 19:13:13','2025-12-09 19:13:13','2025-12-09 19:13:13',NULL,NULL,NULL),
(431,4,' <LV3PR19MB834595BC24E4AC3757D533D8C44CA@LV3PR19MB8345.namprd19.prod.outlook.com>',NULL,NULL,'Re: VOTIX replying to your contact','esanchez@votix.com','Edwin Sanchez','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n</head>\r\n<body>\r\n<div dir=\"ltr\">Hello Rick,</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nMy spot at 10am had been taken already for a demo. I booked a Teams session for 11:30am the same day. I hope it works.</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<br>\r\n</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nI invited Santiago to the call too.</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\" dir=\"ltr\"><br>\r\n</div>\r\n<div id=\"ms-outlook-mobile-signature\">\r\n<div dir=\"ltr\">Regards,</div>\r\n<div dir=\"ltr\">Edwin Sanchez</div>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Sunday, July 6, 2025 12:31:31 AM<br>\r\n<b>To:</b> Santiago Echeverri &lt;secheverri@votix.com&gt;; Edwin Sanchez &lt;esanchez@votix.com&gt;<br>\r\n<b>Subject:</b> Re: VOTIX replying to your contact</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\n<div id=\"x_bloop_customfont\" style=\"margin:0px\">10a it is.<br>\r\n</div>\r\n<div id=\"x_bloop_customfont\" style=\"margin:0px\">I’ll call your number below.</div>\r\n<div id=\"x_bloop_customfont\" style=\"margin:0px\">Thanks!</div>\r\n<div id=\"x_bloop_customfont\" style=\"margin:0px\">Rick</div>\r\n</div>\r\n<br>\r\n<div id=\"x_bloop_sign_1751776283655649024\" class=\"x_bloop_sign\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height:11px\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On July 4, 2025 at 10:17:07 AM, Edwin Sanchez (<a href=\"mailto:esanchez@votix.com\">esanchez@votix.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div dir=\"ltr\">Hello Rick,</div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\nI have a spot open between 10-10:30qm on Monday.</div>\r\n<div id=\"x_ms-outlook-mobile-body-separator-line\" dir=\"ltr\"><br>\r\n</div>\r\n<div id=\"x_ms-outlook-mobile-signature\">\r\n<div dir=\"ltr\">Regards,</div>\r\n<div dir=\"ltr\">Edwin Sanchez</div>\r\n</div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, July 4, 2025 9:15:28 AM<br>\r\n<b>To:</b> Edwin Sanchez &lt;esanchez@votix.com&gt;<br>\r\n<b>Subject:</b> Re: VOTIX replying to your contact</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nHi Edwin,</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nCan we jump on a call Monday or Tuesday morning?</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nLet me know what works best.</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nI’ll send an invite.</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks,</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div id=\"x_x_bloop_sign_1751634872080907776\" class=\"x_x_bloop_sign\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height:11px\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_airmail_on\">On July 2, 2025 at 10:24:41 AM, Edwin Sanchez (<a href=\"mailto:esanchez@votix.com\">esanchez@votix.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_clean_bq\"><span>\r\n<div lang=\"EN-US\" style=\"word-wrap:break-word\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_WordSection1\">\r\n<p class=\"x_x_MsoNormal\">Hello Rick,</p>\r\n<p class=\"x_x_MsoNormal\">Thank you for reaching out. We look forward to meeting you and exploring synergies. DO you want to suggest two dates, and we accommodate?</p>\r\n<p class=\"x_x_MsoNormal\">&nbsp;</p>\r\n<p class=\"x_x_MsoNormal\">&nbsp;</p>\r\n<div>\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:11.0pt; color:#212121\">Regards,&nbsp;</span><span style=\"color:#212121\"></span></p>\r\n<table class=\"x_x_MsoNormalTable\" border=\"0\" cellspacing=\"3\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"bottom\" style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<table class=\"x_x_MsoNormalTable\" border=\"0\" cellspacing=\"3\" cellpadding=\"0\" width=\"100%\" style=\"width:100.0%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:.75pt .75pt 7.5pt .75pt\">\r\n<p class=\"x_x_MsoNormal\" style=\"line-height:12.6pt\"><span style=\"font-size:11.0pt\"><img width=\"197\" height=\"75\" id=\"x_x_Picture_x0020_5\" src=\"cid:D6FFE334-55CD-438B-83BE-1717D80C2446\" alt=\"Image\" style=\"width:2.052in; height:.7812in\"></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<p class=\"x_x_MsoNormal\" align=\"center\" style=\"text-align:center; line-height:12.6pt\">\r\n<span style=\"font-size:11.0pt\"><a href=\"http://www.votix.com/\" title=\"http://www.votix.com/\"><span style=\"color:#467886\">www.votix.com</span></a></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td valign=\"bottom\" style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<p class=\"x_x_MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"font-size:13.0pt; font-family:&quot;Gotham&quot;,serif; color:#212121\"><img border=\"0\" width=\"2\" height=\"115\" id=\"x_x_Picture_x0020_4\" src=\"cid:D613D6DB-387E-4B81-B183-A277FEAEF51D\" alt=\"Image\" style=\"width:.0208in; height:1.1979in\"></span><span style=\"color:#212121\"></span></p>\r\n</td>\r\n<td valign=\"bottom\" style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<table class=\"x_x_MsoNormalTable\" border=\"0\" cellspacing=\"3\" cellpadding=\"0\" width=\"100%\" style=\"width:100.0%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<table class=\"x_x_MsoNormalTable\" border=\"0\" cellspacing=\"3\" cellpadding=\"0\" width=\"100%\" style=\"width:100.0%\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"bottom\" style=\"padding:.75pt 3.75pt .75pt .75pt\">\r\n<p class=\"x_x_MsoNormal\" style=\"line-height:12.0pt\"><b><span style=\"font-size:11.0pt\">Edwin Sanchez</span></b><span style=\"font-size:11.0pt\"></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"bottom\" style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<p class=\"x_x_MsoNormal\"><span style=\"font-size:9.0pt; color:#FF9000\">Founder &amp; CEO</span><span style=\"font-size:11.0pt\"></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:.75pt .75pt 3.75pt .75pt\">\r\n<table class=\"x_x_MsoNormalTable\" border=\"0\" cellspacing=\"3\" cellpadding=\"0\" width=\"100%\" style=\"width:100.0%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<p class=\"x_x_MsoNormal\" style=\"line-height:12.0pt\"><span style=\"font-size:9.0pt; color:black\"><a href=\"mailto:esanchez@votix.com\" title=\"mailto:esanchez@votix.com\"><span style=\"color:#467886\">esanchez@votix.com</span></a></span><span style=\"\"></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<p class=\"x_x_MsoNormal\" style=\"line-height:12.0pt\"><span style=\"font-size:9.0pt; color:black\">Phone: (305) 773-3090&nbsp;</span><span style=\"font-size:11.0pt\"></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:.75pt .75pt .75pt .75pt\">\r\n<table class=\"x_x_MsoNormalTable\" border=\"0\" cellspacing=\"3\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"bottom\" style=\"padding:0in 3.75pt 0in 3.75pt\">\r\n<p class=\"x_x_MsoNormal\" style=\"line-height:12.6pt\"><span style=\"font-size:11.0pt; color:blue\"><img border=\"0\" width=\"20\" height=\"20\" id=\"x_x_Picture_x0020_3\" src=\"cid:7B5A37E7-E9D6-465A-ADBA-AAEAA5E2CB1C\" alt=\"Image\" style=\"width:.2083in; height:.2083in\"></span><span style=\"\"></span></p>\r\n</td>\r\n<td valign=\"bottom\" style=\"padding:0in 3.75pt 0in 3.75pt\">\r\n<p class=\"x_x_MsoNormal\" style=\"line-height:12.6pt\"><span style=\"font-size:11.0pt; color:blue\"><img border=\"0\" width=\"20\" height=\"20\" id=\"x_x_Picture_x0020_2\" src=\"cid:D76F5803-29EC-4306-B1D3-E55274AF5F0E\" alt=\"Image\" style=\"width:.2083in; height:.2083in\"></span><span style=\"font-size:11.0pt\"></span></p>\r\n</td>\r\n<td valign=\"bottom\" style=\"padding:0in 0in 0in 3.75pt\">\r\n<p class=\"x_x_MsoNormal\" style=\"line-height:12.6pt\"><span style=\"font-size:11.0pt; color:blue\"><img border=\"0\" width=\"20\" height=\"14\" id=\"x_x_Picture_x0020_1\" src=\"cid:7E094B5A-E3E5-41A9-8B75-19E41BD1B694\" alt=\"Image\" style=\"width:.2083in; height:.1458in\"></span><span style=\"font-size:11.0pt\"></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<p class=\"x_x_MsoNormal\">&nbsp;</p>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Hello Rick,\r\nMy spot at 10am had been taken already for a demo. I booked a Teams session for 11:30am the same day. I hope it works.\r\n\r\nI invited Santiago to the call too.\r\n\r\nRegards,\r\nEdwin Sanchez\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Sunday, July 6, 2025 12:31:31 AM\r\nTo: Santiago Echeverri <secheverri@votix.com>; Edwin Sanchez <esanchez@votix.com>\r\nSubject: Re: VOTIX replying to your contact\r\n\r\n10a it is.\r\nI’ll call your number below.\r\nThanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn July 4, 2025 at 10:17:07 AM, Edwin Sanchez (esanchez@votix.com<mailto:esanchez@votix.com>) wrote:\r\n\r\nHello Rick,\r\nI have a spot open between 10-10:30qm on Monday.\r\n\r\nRegards,\r\nEdwin Sanchez\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, July 4, 2025 9:15:28 AM\r\nTo: Edwin Sanchez <esanchez@votix.com>\r\nSubject: Re: VOTIX replying to your contact\r\n\r\nHi Edwin,\r\nCan we jump on a call Monday or Tuesday morning?\r\nLet me know what works best.\r\nI’ll send an invite.\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn July 2, 2025 at 10:24:41 AM, Edwin Sanchez (esanchez@votix.com<mailto:esanchez@votix.com>) wrote:\r\n\r\nHello Rick,\r\n\r\nThank you for reaching out. We look forward to meeting you and exploring synergies. DO you want to suggest two dates, and we accommodate?\r\n\r\n\r\n\r\n\r\n\r\nRegards,\r\n\r\n[Image]\r\n\r\nwww.votix.com<http://www.votix.com/>\r\n\r\n\r\n\r\nEdwin Sanchez\r\n\r\nFounder & CEO\r\n\r\nesanchez@votix.com<mailto:esanchez@votix.com>\r\n\r\nPhone: (305) 773-3090\r\n\r\n[Image]\r\n\r\n[Image]\r\n\r\n[Image]\r\n\r\n\r\n',0,0,0,0,0,0,'2025-07-06 14:01:13','2025-12-09 19:13:13','2025-12-09 19:13:13','2025-12-09 19:13:13',NULL,NULL,NULL),
(432,4,' <LV3PR19MB8345C0A8A9D5FCE313767BF1C44FA@LV3PR19MB8345.namprd19.prod.outlook.com>',NULL,NULL,'Mavrix - VOTIX','esanchez@votix.com','Edwin Sanchez','<!DOCTYPE html>\r\n<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n</head>\r\n<body>\r\n<br>\r\n<div style=\"max-width: 600px; color: #242424; font-family:\'Segoe UI\',\'Helvetica Neue\',Helvetica,Arial,sans-serif\" class=\"me-email-text\">\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n<div style=\"margin-bottom: 12px;\"><span class=\"me-email-text\" style=\"font-size: 24px;font-weight: 700; margin-right:12px;\">Microsoft Teams</span>\r\n<a id=\"meet_invite_block.action.help\" class=\"me-email-link\" style=\"font-size:14px; text-decoration:underline; color: #5B5FC7;\" href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\">\r\nNeed help?</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><a id=\"meet_invite_block.action.join_link\" title=\"Meeting join link\" class=\"me-email-headline\" style=\"font-size: 20px; font-weight:600; text-decoration: underline; color: #5B5FC7;\" href=\"https://teams.microsoft.com/l/meetup-join/19%3ameeting_YWMyZDM3M2EtYWM2Zi00YzIzLTk2YjUtMTVhZjIwYTgzMThl%40thread.v2/0?context=%7b%22Tid%22%3a%22be4de4ce-5677-4f1d-8929-60b5cf6bc3f3%22%2c%22Oid%22%3a%2287b2c480-6eda-4d88-a23f-b82ef1f5753c%22%7d\" target=\"_blank\" rel=\"noreferrer noopener\">Join\r\n the meeting now</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Meeting ID:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">235 343 687 958 4</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Passcode:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">Xf7aC7Mk</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px; max-width: 532px;\">\r\n<hr style=\"border: 0; background: #D1D1D1; height: 1px;\">\r\n</div>\r\n<div><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">For organizers:\r\n</span><a id=\"meet_invite_block.action.organizer_meet_options\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7;\" target=\"_blank\" href=\"https://teams.microsoft.com/meetingOptions/?organizerId=87b2c480-6eda-4d88-a23f-b82ef1f5753c&amp;tenantId=be4de4ce-5677-4f1d-8929-60b5cf6bc3f3&amp;threadId=19_meeting_YWMyZDM3M2EtYWM2Zi00YzIzLTk2YjUtMTVhZjIwYTgzMThl@thread.v2&amp;messageId=0&amp;language=en-US\" rel=\"noreferrer noopener\">Meeting\r\n options</a> </div>\r\n<div style=\"margin-top: 24px; margin-bottom: 6px;\"></div>\r\n<div style=\"margin-bottom: 24px;\"></div>\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n</div>\r\n</body>\r\n</html>','\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://teams.microsoft.com/l/meetup-join/19%3ameeting_YWMyZDM3M2EtYWM2Zi00YzIzLTk2YjUtMTVhZjIwYTgzMThl%40thread.v2/0?context=%7b%22Tid%22%3a%22be4de4ce-5677-4f1d-8929-60b5cf6bc3f3%22%2c%22Oid%22%3a%2287b2c480-6eda-4d88-a23f-b82ef1f5753c%22%7d>\r\nMeeting ID: 235 343 687 958 4\r\nPasscode: Xf7aC7Mk\r\n________________________________\r\nFor organizers: Meeting options<https://teams.microsoft.com/meetingOptions/?organizerId=87b2c480-6eda-4d88-a23f-b82ef1f5753c&tenantId=be4de4ce-5677-4f1d-8929-60b5cf6bc3f3&threadId=19_meeting_YWMyZDM3M2EtYWM2Zi00YzIzLTk2YjUtMTVhZjIwYTgzMThl@thread.v2&messageId=0&language=en-US>\r\n________________________________________________________________________________',0,0,0,0,0,0,'2025-07-07 15:41:44','2025-12-09 19:13:14','2025-12-09 19:13:14','2025-12-09 19:13:14',NULL,NULL,NULL),
(433,4,' <BN8P111MB2127CD0875847552565C2381D34FA@BN8P111MB2127.NAMP111.PROD.OUTLOOK.COM>',NULL,NULL,'Fw: RRSL and other Innovations','paul.r.shorkey-chacon.mil@army.mil','\"Shorkey-Chacon, Paul R CPT USARMY 1 ID 2 ABCT (USA)\"','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n</head>\r\n<body>\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Andrew Valkenburg &lt;avalkenburg@strategic-logix.com&gt;<br>\r\n<b>Sent:</b> Monday, May 19, 2025 10:13:57 PM<br>\r\n<b>To:</b> Shorkey-Chacon, Paul R CPT USARMY 1 ID 2 ABCT (USA) &lt;Paul.r.shorkey-chacon.mil@army.mil&gt;; Aaron Smith &lt;asmith@strategic-logix.com&gt;<br>\r\n<b>Subject:</b> RRSL and other Innovations</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div>Paul,</div>\r\n<div><br>\r\n</div>\r\n<div>As promised (sorry I got dragged out to something as I got into the hotel).</div>\r\n<div><br>\r\n</div>\r\n<div>1. RRSL-X Flyer</div>\r\n<div>2. RRSL Cost-Benefit Analysis and Info Packet (this is from before the RRSL-X)</div>\r\n<div>3. TIC Intro Brief for 1CD (may be helpful)</div>\r\n<div>4. RRSL Build Manual and Video (cool to show off maybe?)</div>\r\n<div><br>\r\n</div>\r\n<div>The good innovations content is in the TIC brief. The RRSL is so popular right now all of our content coming out is on that lol.</div>\r\n<div><br>\r\n</div>\r\n<span class=\"x_gmail_signature_prefix\">-- </span><br>\r\n<div dir=\"ltr\" class=\"x_gmail_signature\" data-smartmail=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p><font color=\"#000000\"><b><a href=\"https://strategic-logix.com/\" target=\"_blank\">VISIT OUR WEBSITE</a></b></font></p>\r\n<p><strong><font color=\"#000000\"><br>\r\n</font></strong></p>\r\n<p><strong><font color=\"#000000\">Sincerely,</font></strong></p>\r\n<p><font color=\"#000000\">Andrew Valkenburg<br>\r\nChief Operations Officer, Strategic Logix LLC<br>\r\n484-225-9132<br>\r\n<a rel=\"noopener\">avalkenburg@strategic-logix.com</a></font></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','\r\n________________________________\r\nFrom: Andrew Valkenburg <avalkenburg@strategic-logix.com>\r\nSent: Monday, May 19, 2025 10:13:57 PM\r\nTo: Shorkey-Chacon, Paul R CPT USARMY 1 ID 2 ABCT (USA) <Paul.r.shorkey-chacon.mil@army.mil>; Aaron Smith <asmith@strategic-logix.com>\r\nSubject: RRSL and other Innovations\r\n\r\nPaul,\r\n\r\nAs promised (sorry I got dragged out to something as I got into the hotel).\r\n\r\n1. RRSL-X Flyer\r\n2. RRSL Cost-Benefit Analysis and Info Packet (this is from before the RRSL-X)\r\n3. TIC Intro Brief for 1CD (may be helpful)\r\n4. RRSL Build Manual and Video (cool to show off maybe?)\r\n\r\nThe good innovations content is in the TIC brief. The RRSL is so popular right now all of our content coming out is on that lol.\r\n\r\n--\r\n\r\nVISIT OUR WEBSITE<https://strategic-logix.com/>\r\n\r\n\r\nSincerely,\r\n\r\nAndrew Valkenburg\r\nChief Operations Officer, Strategic Logix LLC\r\n484-225-9132\r\navalkenburg@strategic-logix.com',0,0,0,0,0,0,'2025-07-07 22:47:25','2025-12-09 19:13:24','2025-12-09 19:13:24','2025-12-09 19:13:24',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(434,4,'<AC700000000FFA10A527E47E996mscom_mkt_prod79@emailnotifications.microsoft.com>',NULL,NULL,'Earn Rewards points with Microsoft','MicrosoftAccount@emailnotifications.microsoft.com','\"Microsoft Account\"','\r\n<!DOCTYPE HTML>\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:v=\"urn:schemas-microsoft-com:vml\" dir=\"ltr\" lang=\"en-us\">\r\n    <head>\r\n\r\n    <!--[if gte mso 9]>\r\n      <xml>\r\n         <o:OfficeDocumentSettings>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n         </o:OfficeDocumentSettings>\r\n      </xml>\r\n    <![endif]-->\r\n\r\n    <meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\"/>\r\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"/>\r\n    <meta name=\"HandheldFriendly\" content=\"true\"/>\r\n    <meta name=\"x-apple-disable-message-reformatting\"/>\r\n	<title>Earn Rewards points with Microsoft</title>\r\n	<link rel=\"canonical\" href=\"/content/campaigns/msa-consumer/en-us/cu868cqb7k4_cge_fy25rewwelcome-revamp/earn-rewards-points-with-microsoft-version-2.html\"/>\r\n	<link rel=\"shortcut icon\" href=\"/apps/settings/wcm/designs/default/favicon.ico\"/>\r\n	\r\n	<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"/>\r\n	\r\n\r\n	<meta name=\"format-detection\" content=\"telephone=no\"/>\r\n    <meta name=\"format-detection\" content=\"date=no\"/>\r\n    <meta name=\"format-detection\" content=\"address=no\"/>\r\n    <meta name=\"format-detection\" content=\"email=no\"/>\r\n\r\n    \r\n\r\n    \r\n    \r\n        \r\n    \r\n<link rel=\"stylesheet\" href=\"/etc.clientlibs/microsoft_email/clientlibs/clientlib-dependencies.min.css\" type=\"text/css\">\r\n<link rel=\"stylesheet\" href=\"/etc.clientlibs/microsoft_email/clientlibs/clientlib-site.min.css\" type=\"text/css\">\r\n<script src=\"/etc.clientlibs/microsoft_email/clientlibs/clientlib-dependencies.min.js\"></script>\r\n<script src=\"/etc.clientlibs/microsoft_email/clientlibs/clientlib-site.min.js\"></script>\r\n\r\n\r\n\r\n    \r\n    \r\n    \r\n    \r\n\r\n    \r\n    \r\n\r\n    \r\n    \r\n\r\n    \r\n    \r\n\r\n    \r\n    <style media=\"all\" type=\"text/css\">\r\n    	@-ms-viewport { width: device-width;}\r\n    </style>\r\n    <style type=\"text/css\">\r\n    	 sup{line-height: 0;}\r\n    	.xf-content-height { margin:0 !important; }\r\n		.xf-content-height .newpar { margin: 0; height: 100% !important; }\r\n		.desktop-block { display:block; }\r\n	    .rtl-template,  .rtl-template td { direction: rtl !important; text-align: right !important; }\r\n		.rtl-template .text-rtl-center td, .rtl-template .hero-text-center{text-align:center !important}\r\n		.rtl-template .btn-rtl th { direction: rtl !important; }\r\n        .rtl-template ul { margin: 0 !important; padding-right: 22px !important;text-align: right !important;direction: rtl !important; }\r\n        .rtl-template ol { margin-top: 0 !important;margin-bottom:0 !important; padding-right: 22px !important;text-align: right !important;}\r\n        .rtl-template .social-icons { padding-left: 12px !important; padding-right: 0 !important; }\r\n        .rtl-template .text-align-right th { text-align: right !important;padding-right:0px !important; padding-left:3px !important; }\r\n		.rtl-template .txt-align-right, .rtl-template .block-text-align-right {text-align: right !important;}\r\n		.rtl-template li { padding: 0 12px 8px 0 !important; }\r\n		.rtl-template .rating-thumbs-up { padding-left: 30px; padding-right: 0; }\r\n		.rtl-template .reward-tile-card {padding-left: 20px; padding-right: 0; }\r\n        .rtl-template .ribbon-cta .block-max-width {text-align: left !important;}\r\n		.rtl-template .block-max-width, .rtl-template .btn-block-right {text-align: right !important;}\r\n		.rtl-template .block-max-width-center {text-align: center !important;}\r\n		u+.rtl-template a { color:#0067B8 !important; }\r\n		.rtl-template .table-ruler td, .rtl-template .table-ruler th, .rtl-template .table-zebra td, .rtl-template .table-zebra th,\r\n		.rtl-template .table-hr-icon td, .rtl-template .table-zebra-icon td { padding: 20px 20px 20px 0 !important;	text-align: right !important; }\r\n		.rtl-template .table-ruler-mobile th, .rtl-template .table-zebra-mobile th { text-align: right !important; 	}\r\n		.rtl-template .text-rtl-center td {text-align: center !important;}\r\n    	.rtl-template .text-rtl-center {display:block; margin:0 auto;}\r\n		.email-table .text-center p,.email-table .text-center td {text-align:center !important;}\r\n        .email-table .text-center img {Margin:0 auto;margin:0 auto;}\r\n        .email-table .text-left p,.email-table .text-left td {text-align:left !important;}\r\n        .email-table .text-right p,.email-table .text-right td {text-align:right !important;}\r\n        .rtl-template .email-table .text-center p,.rtl-template .email-table .text-center td {direction: rtl !important;text-align: center !important;}\r\n		.rtl-template .btn-rtl th {direction: rtl !important;}\r\n		.rtl-template .tile-headline, .rtl-template .tile-paragraph { padding: 0 20px 0 20px;}\r\n		.rtl-template .small-tile-image { padding: 20px 20px 0px 20px;}\r\n		.rtl-template .tile-button { padding: 0 20px 20px 20px; }\r\n		.rtl-template .padd-left-right-40 { padding: 0 40px 0 40px !important;}\r\n		.rtl-template .padd-left-20 { padding-left: 20px !important; padding-right: 0 !important;}\r\n		.rtl-template .intro-tile-image {padding:10px 10px 10px 20px}\r\n		.rtl-template .intro-tile-text {padding:0 0 0 10px}\r\n        .rtl-template .image-tile-10 { padding:10px 10px 0px 0px !important;}\r\n        .rtl-template .image-tile-20 {padding: 20px 20px 0px 0px !important;}\r\n        .footer-address-center td,.footer-address-center td p,.footer-address-center td p a{text-align:center !important;direction:ltr !important;}\r\n		 table.groupthree a {text-decoration: underline !important;}\r\n		.txt-center ul li, .txt-center ol li{text-align: center !important; list-style-position: inside;}\r\n         body {margin:0;padding:0;}\r\n         table td {border-collapse:collapse;margin:0;padding:0;}\r\n         table td p {margin:0;padding:0;}\r\n		 table td p a {color:#0067B8;text-decoration:underline;font-weight: normal;}\r\n		 table th {font-weight: normal !important;}\r\n         .desktopHidden, .desktop-hidden, .table-ruler-mobile, .table-zebra-mobile {display: none !important;}\r\n         .gutter {padding:0 30px;}\r\n		 .tile-pad-large-4 {padding-left: 50px !important; padding-right: 50px !important;}\r\n         .tile-pad-large {padding-left: 30px !important; padding-right: 30px !important;}\r\n         .tile-pad-small-v1 {padding-left: 50px !important; padding-right: 50px !important;}\r\n         .tile-pad-small-v2 {padding-left: 84px !important; padding-right: 84px !important;}\r\n         .tile-pad-small-v3 {padding-left: 119px !important; padding-right: 119px !important;}\r\n         .tile-pad-small-v5 {padding-left: 154px !important; padding-right: 154px !important;}\r\n		 .padd-left-right-40 { padding:0 40px 0 40px !important;}\r\n		 .padd-left-right-20 { padding:0 20px 0 20px !important;}\r\n		 .padd-left-right-10 { padding:0 10px 0 10px !important;}\r\n		 .padd-left-right-28 { padding:0 28px 0 28px !important;}\r\n		 .padd-right-26 { padding:0 26px 0 0 !important;}\r\n		 .padd-left-26 { padding:0 0 0 26px !important;}\r\n		 .tile-small-box .btn-block {vertical-align:top}\r\n		 .tile-image {padding: 10px 20px 10px 10px;}\r\n		 .reward-tile-card {padding-right: 20px;}\r\n         .lg-tile-image, .lg-tile-headline, .lg-tile-paragraph, .lg-tile-button {padding: 0 40px 0 40px;}\r\n         .tile-headline, .tile-paragraph { padding: 0 20px 0 20px;}\r\n         .small-tile-image { padding: 20px 20px 0px 20px;}\r\n         .tile-button { padding: 0 20px 20px 20px;}\r\n         .tile-txt-small {font-family: \'Segoe UI\', Helvetica, Arial, sans-serif; font-size: 12px; font-style: normal; color: #505050; line-height: 16px; letter-spacing: -0.01em; text-align: center; padding-left: 5px; padding-right: 5px; word-wrap: break-word; word-break: break-all;}\r\n         .tile-txt-large {font-family: \'Segoe UI\', Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; color: #505050; line-height: 20px; letter-spacing: -0.01em; text-align: center; padding-left: 10px; padding-right: 10px; word-wrap: break-word; word-break: break-all;}\r\n         .boxed-list-wrapper {padding: 20px 30px 0;}\r\n		 .block-padd-top-30 {padding-top: 0px;}\r\n		 .rating-thumbs-up {padding-right: 30px;}\r\n		 .text-card-padding {padding: 0 80px 0px 80px;}\r\n         .rte-spacer-20 p,.rte-spacer-20 ul,.rte-spacer-20 ol {padding-bottom: 20px !important;}\r\n		 .rte-spacer-10 p,.rte-spacer-10 ul,.rte-spacer-10 ol {padding-bottom: 10px !important;}\r\n         .rte-footerspacer-10 p,.rte-footerspacer-10 ul,.rte-footerspacer-10 ol {padding-top: 10px !important;}\r\n		 .semibold{font-weight:600;}\r\n		 .strikethrough { text-decoration: line-through;}\r\n		 .spacer-ln-ht-0 {line-height: 0px;font-size: 0px;}\r\n		 .table-ruler-mobile td, .table-ruler-mobile th, .table-zebra-mobile td, .table-zebra-mobile th, .table-hr-icon td, .table-zebra-icon td {\r\n      		height: 30px !important; padding: 20px 0 20px 20px !important; text-align: left !important;	word-wrap: break-word !important;	overflow-wrap: break-word !important; }\r\n		 .table-ruler th, .table-ruler td { height: 30px !important;	padding: 20px 0 20px 20px !important; text-align: left !important; word-wrap: break-word !important; overflow-wrap: break-word !important; }\r\n		 .table-zebra th, .table-zebra td { height: 30px !important;	padding: 20px 0 20px 20px !important; text-align: left !important; word-wrap: break-word !important; overflow-wrap: break-word !important; }\r\n         .table-ruler th, .table-ruler td, .table-ruler-mobile th, .table-ruler-mobile td, .table-hr-icon td {\r\n         border-bottom: 1px solid #E0E0E0 !important;}\r\n         .table-zebra-mobile th, .table-zebra-mobile td {border-bottom : 1px solid #ffffff !important;}\r\n         .table-ruler-mobile, .table-hr-icon {border-top: 1px solid #E0E0E0;}\r\n         .table-ruler-mobile th, .table-zebra-mobile th {font-weight: 600 !important;}\r\n         .table-zebra-icon .odd-row td, .table-zebra .odd-row td, .table-zebra-mobile .odd-row td {background-color: #F6F6F6;}\r\n         .table-zebra th, .table-zebra-mobile th {background-color: #e7e7e7;}\r\n		 .hero-text-center {text-align: center !important;padding: 0 30px !important;}\r\n		 .intro-tile-image { padding:10px 20px 10px 10px !important;}\r\n		 .intro-tile-text  {padding:0 10px 0 0}\r\n		 .intro-tile-text-20 {padding: 0 20px 0 0;}\r\n         .intro-tile-image-20 {padding: 20px 20px 20px 20px !important;}\r\n         .image-tile-10 { padding:10px 0px 0px 10px !important;}\r\n         .image-tile-20 {padding: 20px 0px 0px 20px !important;}\r\n         .email-table th table td { font-weight:600 !important;}\r\n         @media only screen and (max-width: 640px) {\r\n         .mobileHide {display:none;line-height:0; mso-hide: all;max-height: 0; max-width: 0; width:0;}\r\n         }\r\n         @media only screen and (max-width: 480px) {\r\n		 .wrapper, .table-hr-icon, .table-zebra-icon, .email-table {width: 100%!important;}\r\n		 .text-card-padding {padding: 0px 40px 0px 40px !important;}\r\n         .block, .block-text-align-right, .desktopHidden {width:100% !important; display:block !important;}\r\n		 .app-download-block th, .btn-block, .btn-block-right {display: block !important; width: auto !important;}\r\n		 .block-max-width, .block-max-width-center{ max-width: none !important; display: block !important; width: auto !important;}\r\n         .addressText {font-size:10px !important;}\r\n		 .mobileHidden, .table-ruler, .table-zebra {display: none !important;}\r\n         .mobileBodyPadding {padding:10px 20px 35px 20px !important; width:288px !important;}\r\n         .mobileNoPadding {padding:0 !important;}\r\n		 .mobile-block-padd-top-30 {display: block !important;padding-top: 30px;width: 100%;}\r\n         .mobileTopPad5 { padding-top: 5px !important; }\r\n         .mobileTopPad10 { padding-top: 10px !important; }\r\n         .hide{display:none;}\r\n         .show{display:none;}\r\n         .desktophide{display:block!important;}\r\n         .w-100p{width:100%!important;}\r\n         .p-0{padding:0!important;}\r\n         .flex{display:block!important;width:100%!important;box-sizing:border-box!important;}\r\n         .thold{display:table!important;width:100%!important;}\r\n         .thead{display:table-header-group!important;width:100%!important;}\r\n         .tfoot{display:table-footer-group!important;width:100%!important;}\r\n         .mobile-padding-20{padding-left:20px!important; padding-right:20px!important;}\r\n         .mobile-padding-rght-20{padding-left:0px!important; padding-right:20px!important;}\r\n         .mobile-social-table{text-align:center!important;}\r\n         .mobile-social-padd-btm{padding-bottom:35px!important;}\r\n		 .mobile-social-padd-btm-top{padding-bottom:35px!important;}\r\n         .mobile-social-marg-btm{margin-top:20px!important;}\r\n		 .mobile-social-inline{display:inline-block!important; padding-right:2px!important;}\r\n		 .logo-mobile-img{width:85px!important;height:18px!important;}\r\n		 .mobile-monthly-padd-left{padding-left:20px!important;}\r\n		 .secondary-logo-padd-left{ padding-left:0px!important;}\r\n         .secondary-logo-padd-left-20{ padding-left:20px!important;}\r\n         .mobile-txt-center {text-align: center!important;}\r\n         .social-text-pad-rght{padding-right:20px!important;padding-bottom:0px!important;}\r\n		 .followus-pad-top{padding-top:20px!important;}\r\n		.card-padding {padding-left: 20px!important; padding-right: 20px!important; padding-top: 40px!important; padding-bottom: 40px!important;}\r\n		.thead {display: table-header-group!important; width: 100%!important;}\r\n		.mobile-txt-center {text-align: center!important;}\r\n		.tfoot {display: table-footer-group!important; width: 100%!important;}\r\n		.tile-pad-large-4 {padding-left: 20px !important; padding-right: 20px !important;}\r\n		.tile-pad-large {padding-left: 60px !important; padding-right: 60px !important;}\r\n		.tile-pad-small-v1 {padding-left: 20px !important; padding-right: 20px !important;}\r\n		.tile-pad-small-v2 {padding-left: 20px !important; padding-right: 20px !important;}\r\n		.tile-pad-small-v3 {padding-left: 20px !important; padding-right: 20px !important;}\r\n		.tile-pad-small-v5 {padding-left: 55px !important; padding-right: 55px !important;}\r\n		.mob-padd-top-zero {padding-top: 0px !important;}\r\n        .boxed-list-wrapper {padding: 20px 20px 0 !important;}\r\n        .gutter {padding:0 20px!important;}\r\n		.block-padd-top-30 { display: block !important; padding-top: 30px; }\r\n		.mobile-bottom-padding-20 { padding: 0 0 20px 0 !important;}\r\n		.hero-mobile { width: 100% !important; max-width: 100% !important; height: auto !important;}\r\n        .hero-text-center {padding: 0 20px !important;}\r\n         .spacer-mob-30 {height: 30px !important;}\r\n         .spacer-mob-20 {height: 20px !important;}\r\n         .table-zebra-mobile, .table-ruler-mobile {display: table !important;}\r\n         .table-ruler-mobile td, .table-zebra-mobile td, .table-ruler-mobile th, .table-zebra-mobile th {padding: 20px !important;}\r\n         .table-hr-icon td, .table-zebra-icon td {min-width: 16px !important; max-width: 150px !important;}\r\n		.rtl-template .block-text-align-right { text-align: right !important;}\r\n        .thold { display: table !important; width: 100% !important; }\r\n		.thead { display: table-header-group !important; width: 100% !important; }\r\n		.tfoot { display: table-footer-group !important; width: 100% !important; }\r\n        .email-banner-padding { padding-left:20px !important; padding-right:20px !important; }\r\n    .social-link{display: inline-block;padding-right:20px;}\r\n		.rtl-template .social-link{display: inline-block;padding-left:20px !important;padding-right:0 !important;}\r\n		.social-link:last-child { padding-right: 0;}\r\n		.rtl-template .social-link:last-child{padding-left: 0;}\r\n         }\r\n         ul { margin:0 !important;padding-left:22px !important;text-align: left !important;}\r\n         ol { margin-top:0 !important;margin-bottom:0 !important;padding-left:22px !important;text-align: left !important;}\r\n		 li{padding: 0 0 8px 12px !important;margin: 0 !important;}\r\n		 li a {text-decoration: underline; color: #0067B8;}\r\n         *[class].gmailfix {display:none; display:none!important;}\r\n      </style>\r\n     <!--[if gte mso 16]>\r\n		<style type=\"text/css\">\r\n		p { mso-hyphenate: none;}\r\n        .rtl-template,\r\n        .rtl-template td{\r\n        direction: ltr !important;\r\n        text-align: right !important;\r\n        }\r\n        .rtl-template p {\r\n        direction: rtl !important;\r\n        text-align: right !important;\r\n        }\r\n        .text-rtl-center .list-item-right p {\r\n		text-align: right !important;\r\n		direction: rtl !important;\r\n		}\r\n        .rtl-template .email-header p {\r\n        direction: rtl !important;\r\n        text-align: left !important;\r\n        }\r\n        .email-table th table td {\r\n		font-weight:600 !important;\r\n		}\r\n		.text-rtl-center p,\r\n        .rtl-template .email-table .text-center p,\r\n        .rtl-template .email-table .text-center td {\r\n			direction: rtl !important;\r\n			text-align: center !important;\r\n		}\r\n		.email-table .text-center p,\r\n		.email-table .text-center td {\r\n			text-align:center !important;\r\n		}\r\n        .email-table .text-left p,\r\n        .email-table .text-left td {\r\n         text-align:left !important;\r\n        }\r\n        .footer-address-center td,\r\n		.footer-address-center td p,\r\n		.footer-address-center td p a{\r\n				text-align:center !important;\r\n				direction:ltr !important;\r\n		}\r\n 		.cta-button{\r\n		font-weight:normal !important;\r\n		}\r\n		li\r\n         {\r\n         margin: 0 0 8px 0 !important;\r\n         text-align: left !important;\r\n         }\r\n         div.list ul li {\r\n         mso-special-format: bullet;\r\n         }\r\n         div.list {\r\n         margin: 0 0 0 -20px;\r\n         }\r\n         div li.list-bottom{\r\n            margin-bottom: 28px !important;\r\n         }\r\n         .rtl-template li\r\n         {\r\n         margin: 0 0 8px 0 !important;\r\n         text-align: right !important;\r\n         direction : rtl !important;\r\n         }\r\n        .rtl-template div.list\r\n         {\r\n         Margin: 0 -20px 0 0;\r\n         }\r\n		 .rtl-template .footeraddressrtl p,\r\n         .rtl-template .footeraddressrtl  {\r\n         direction: ltr !important;\r\n         text-align:right !important;\r\n         }\r\n         .footeraddressrtl {\r\n         mso-padding-alt: 0 30px !important;\r\n         }\r\n         .text-rtl-center .footeraddressrtl p,\r\n         .rtl-template .footeraddressrtl  {\r\n         direction: ltr !important;\r\n         text-align:center !important;\r\n         }\r\n         .text-rtl-center .txt-align-right td {\r\n		  text-align:right !important;\r\n			}\r\n		 .txt-center ul li,\r\n         .txt-center ol li\r\n         {\r\n            text-align:center !important;\r\n         }\r\n		 .rte-spacer-20 p\r\n		 {\r\n			mso-margin-bottom-alt: 20px;\r\n		 }\r\n		 .rte-spacer-10 p\r\n		 {\r\n	        mso-margin-bottom-alt: 10px;\r\n         }\r\n         .rte-footerspacer-10 p {\r\n	        mso-margin-top-alt: 10px;\r\n         }\r\n         .rtl-template th.tileimage {\r\n         	direction: ltr !important;\r\n         }\r\n		 .table-hr-icon td,\r\n         .table-zebra-icon td,\r\n         .table-zebra td,\r\n         .table-zebra th,\r\n         .table-zebra-mobile td,\r\n         .table-zebra-mobile th,\r\n         .table-ruler td,\r\n         .table-ruler th,\r\n         .table-ruler-mobile td,\r\n         .table-ruler-mobile th\r\n         {\r\n			mso-padding-alt: 20px 0 20px 20px !important;\r\n         }\r\n		 .rtl-template .table-ruler th,\r\n		 .rtl-template .table-zebra th {\r\n			direction: rtl !important;\r\n		 }\r\n		 .rtl-template .rating-thumbs-down {\r\n			padding-left:1px;\r\n		 }\r\n		 table {\r\n			border-spacing: 0;\r\n			mso-margin-bottom-alt: 0;\r\n			mso-margin-top-alt: 0;\r\n			mso-table-lspace: 0pt;\r\n			mso-table-rspace: 0pt;\r\n		}\r\n		td ,th {\r\n		mso-table-lspace: 0pt !important;\r\n		mso-table-rspace: 0pt !important;\r\n		}\r\n		.mso-line-ht-rule {\r\n		  mso-line-height-rule: exactly;\r\n		}\r\n        .hero-text-center p{\r\n            text-align: center !important;\r\n        }\r\n        </style>\r\n	<![endif]-->\r\n\r\n    \r\n   </head>\r\n    \r\n  <body dir=\"ltr\" style=\"font-family:Segoe UI, Helvetica, Arial, sans-serif; font-size:12px; color:#4d4d4d; background-color:#D4E3EF; line-height:20px; -webkit-text-size-adjust: none;\">\r\n\r\n\r\n<div class=\"root container responsivegrid\">\r\n      <div style=\"display:none;font-size:1px;color:#ffffff;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;mso-hide:all;\">Sign in and start earning Rewards points today</div>\r\n			<div style=\"display:none;font-size:1px;color:#ffffff;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;mso-hide:all;\">\r\n				&#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp;&#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp;&#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp;&#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp;&#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp;\r\n			</div>\r\n      <!--Gmail App Scaling Fix Don\'t Remove these &nbsp; s its required for gmail apps -->\r\n      <div class=\"gmailfix\" style=\"white-space:nowrap; font:15px courier; line-height:0;\">\r\n         &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \r\n         &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \r\n         &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\r\n      </div>\r\n      <!--PARENT TABLE Starts Here -->\r\n	  \r\n	  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" align=\"center\" class=\"wrapper\" style=\"background-color:#D4E3EF; margin:0 auto;\" role=\"presentation\">\r\n	  \r\n	  \r\n         <tbody>\r\n      		<tr>\r\n               <td>\r\n                  <!--SECONDARY TABLE FOR OTHER COMPONENT Starts here -->\r\n				  <!--[if gte mso 16]>\r\n                  <table cellspacing=\"0\" cellpadding=\"0\" class=\"\" align=\"center\" style=\"width:660px; margin:0 auto; margin-top:2px;\">\r\n				  <![endif]-->\r\n				  <!--[if !mso]><!-->\r\n				  <table cellspacing=\"0\" cellpadding=\"0\" class=\" wrapper\" align=\"center\" style=\"width:660px; margin:0 auto; margin-top:2px;\" role=\"presentation\">\r\n				  <!--<![endif]-->\r\n                     <tbody>\r\n					    <!-- Eyebrow component starts-->\r\n						<tr>\r\n						   <td>\r\n								\r\n    \r\n    \r\n    \r\n        <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" style=\"background-color: #EAF0F6;\" role=\"presentation\">\r\n            <tbody>\r\n                <tr>\r\n                    <td>\r\n                        \r\n                        \r\n                            <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"background-color: #EAF0F6;\" role=\"presentation\">\r\n                                <tbody>\r\n                                    <tr>\r\n                                        <td class=\"mobile-padding-20\" align=\"left\" style=\"color:#000000; font-family:Segoe UI, Helvetica, Arial, sans-serif; font-size:10px; line-height:14px;letter-spacing: -0.02em;padding:10px 30px 10px 30px;\">\r\n                                            <p style=\"color:#000000; font-family:Segoe UI, Helvetica, Arial, sans-serif; font-size:10px; line-height:14px;margin:0;padding:0;letter-spacing: -0.02em;\">\r\n                                                \r\n                                                <a href=\"https://t.emailnotifications.microsoft.com/r/?id=hffa10a52,7e47e996,7e47e998&e=cDE9QGpQN2xxQkYxZ19udlBnR3VmY0EzZmVCLTFJVkRDVkNxLUpVTTVBUjB6b1cwWDQ0VDlHY2J1OFNDcnhBNGpia0pIMlBVV1Vtc3lFUHE4WTZCVjJwcnhsWlE1aDk3dzNfZWliTG9wb3IzUmh5OTM1eWw&s=-IwMCmWAcHVxc4C3CKtADoET0O-Of-QH1E8rTsKb0FQ\" style=\"white-space: nowrap;font-weight:400;color:#000000;\" >                                                    View as a webpage\r\n                                                </a>\r\n                                            </p>\r\n                                        </td>\r\n                                    </tr>\r\n                                </tbody>\r\n                            </table>\r\n                        \r\n                    </td>\r\n                </tr>\r\n            </tbody>\r\n        </table>\r\n    \r\n\r\n							</td>\r\n						</tr>\r\n						<!-- Eyebrow component ends-->\r\n					\r\n                     	<!-- HEADER SECTION STARTS HERE-->\r\n                     	<tr>\r\n                     		<td>\r\n                     			\r\n	\r\n	\r\n		\r\n	\r\n	\r\n	\r\n		<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#FFFFFF\" role=\"presentation\">\r\n			<tbody>\r\n			\r\n				\r\n   <tr>\r\n       <td height=\"20px\">&#xA0;</td>\r\n   </tr>\r\n\r\n				<tr>\r\n					<td class=\"gutter\">\r\n						\r\n							<a target=\"_blank\" href=\"https://t.emailnotifications.microsoft.com/r/?id=hffa10a52,7e47e996,7e47e9d5\" ><img src=\"https://cdn-dynmedia-1.microsoft.com/is/image/microsoftcorp/Microsoft@2x%20Light%20Theme?scl=1&fmt=png-alpha\" alt=\"Microsoft Logo\" style=\"display:block; height:20px;\" height=\"20\"/>\r\n	\r\n	\r\n\r\n							</a>\r\n						\r\n						\r\n					</td>\r\n				</tr>\r\n				\r\n   <tr>\r\n       <td height=\"20px\">&#xA0;</td>\r\n   </tr>\r\n\r\n			\r\n			</tbody>\r\n		</table>\r\n	\r\n\r\n		\r\n		\r\n		\r\n		\r\n		\r\n	\r\n\r\n\r\n                     		</td>\r\n                     	</tr>\r\n                     	<!-- HEADER SECTION ENDS HERE-->\r\n						<tr>\r\n                     		<td>\r\n                                \r\n\r\n    \r\n	\r\n	\r\n	\r\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"background-color: #F9FBFF\" role=\"presentation\">\r\n			<tbody>\r\n			\r\n			\r\n    \r\n    \r\n        <tr>\r\n            <td height=\"40\">&#xA0;</td>\r\n        </tr>\r\n    \r\n\r\n			\r\n			\r\n			\r\n			<tr>\r\n				<td>\r\n					<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\">\r\n						\r\n							\r\n    \r\n        \r\n        \r\n    \r\n    \r\n\r\n						\r\n						\r\n						<tr>\r\n							<td class=\"gutter\">\r\n								\r\n									<a target=\"_blank\" href=\"https://t.emailnotifications.microsoft.com/r/?id=hffa10a52,7e47e996,7e47e9d6\" style=\"text-decoration: none;\" ><p style=\"color:#000000;\r\n         font-family:Segoe UI, Helvetica, Arial, sans-serif;font-style: normal;font-weight:600; font-size:42px;line-height:56px;letter-spacing:-0.02em;margin:0; padding:0;\" role=\"heading\" aria-level=\"1\"> Welcome to <span style=\"color: rgb(33,105,235);\">Microsoft Rewards</span> </p>\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n	    \r\n        \r\n\r\n        \r\n\r\n        \r\n		\r\n		\r\n	  \r\n    \r\n\r\n									</a>\r\n								\r\n								\r\n							</td>\r\n						</tr>\r\n						\r\n							\r\n    \r\n    \r\n        <tr>\r\n            <td height=\"20\">&#xA0;</td>\r\n        </tr>\r\n    \r\n\r\n							<tr>\r\n								<td class=\"gutter\">\r\n									\r\n    \r\n\r\n    \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n            <p style=\"color:#000000;\r\n         font-family:Segoe UI, Helvetica, Arial, sans-serif;font-style: normal;font-weight:600; font-size:32px;line-height:40px;letter-spacing:-0.02em;margin:0; padding:0;\" role=\"heading\" aria-level=\"3\"> Your Microsoft account comes with perks </p>\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n	    \r\n        \r\n\r\n        \r\n\r\n        \r\n		\r\n		\r\n	  \r\n    \r\n\r\n								</td>\r\n							</tr>\r\n						\r\n						\r\n							\r\n							<tr>\r\n								<td align=\"left\" class=\"txt-align-right\" style=\"padding-top:20px; padding-bottom:0px;\">\r\n									<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"rte-spacer-20\" role=\"presentation\">\r\n										\r\n										<tr>\r\n											\r\n											\r\n												<td class=\"gutter\" style=\"color:#000000;font-family:Segoe UI, Helvetica, Arial, sans-serif; font-size:16px; font-style:normal;line-height:24px;letter-spacing: -0.02em;\">\r\n													<!--[if mso]>\r\n													<div class=\"list\">\r\n													<![endif]-->\r\n													<p>Microsoft Rewards is a free feature of your new Microsoft account where you earn points for searching on Bing, playing on Xbox*, or completing fun activities on your Rewards dashboard.&nbsp;</p>\r\n													<!--[if mso]>\r\n													</div>\r\n													<![endif]-->\r\n												</td>\r\n											\r\n										</tr>\r\n										\r\n									</table>\r\n								</td>\r\n							</tr>\r\n						\r\n						\r\n							\r\n							<tr>\r\n								<td>\r\n									\r\n   \r\n   \r\n   \r\n   \r\n   \r\n   \r\n   \r\n   <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"background-color: #F9FBFF;\" role=\"presentation\">\r\n      <tbody>\r\n         <tr>\r\n            <td class=\"gutter\">\r\n               <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align role=\"presentation\">\r\n			    <tr>\r\n                    <td>\r\n                        <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align role=\"presentation\">\r\n                  <tbody>\r\n                     <tr>\r\n                        \r\n                           \r\n                           \r\n                              \r\n                                 \r\n                                 \r\n                                 <!--[if mso]>\r\n                                 <td class=\"btn-block\" >\r\n                                 <![endif]-->	\r\n                                 \r\n                                 <!-- hide from outlook -->\r\n                                 <!--[if !mso]><\\!-->\r\n                                 <td class=\"btn-block\">\r\n                                    <!-- <![endif]-->\r\n                                    <table class=\"btn-rtl\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align role=\"presentation\">\r\n                                       <tbody>\r\n                                          <tr>\r\n                                             <td>\r\n                                                <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" dir=\"ltr\" role=\"presentation\">\r\n                                                   \r\n    \r\n    \r\n	\r\n        \r\n        \r\n            <th class=\"block-max-width-center\" align=\"center\" style=\"border-radius:2px; font-family:Segoe UI, Helvetica, Arial, sans-serif; font-style: normal; font-weight:600 !important; font-size:18px; line-height:24px; mso-line-height-rule: exactly; padding:8px 20px; min-width:100px; border: 1px solid #2169EB;\" bgcolor=\"#2169EB\">\r\n                <a href=\"https://t.emailnotifications.microsoft.com/r/?id=hffa10a52,7e47e996,7e47e9d7\" title=\"Sign in to get started\" style=\"text-decoration:none; ; color : #FFFFFF;\" aria-label=\"Sign in to get started, opens a new window\" target=\"_blank\" ><strong class=\"cta-button\" style=\"color : #FFFFFF; font-weight:600;\">Sign in to get started</strong>\r\n                </a>\r\n            </th>\r\n        \r\n	\r\n	\r\n    \r\n\r\n                                                </table>\r\n                                             </td>\r\n                                          </tr>\r\n                                       </tbody>\r\n                                    </table>\r\n                                 </td>\r\n                              \r\n                              \r\n                           \r\n                        \r\n                     </tr>\r\n                  </tbody>\r\n				 </table>\r\n                </td>\r\n               </tr>\r\n               </table>\r\n            </td>\r\n         </tr>\r\n      </tbody>\r\n   </table>\r\n\r\n								</td>\r\n							</tr>\r\n							\r\n						\r\n						\r\n					</table>\r\n				</td>\r\n			</tr>\r\n			\r\n			\r\n			\r\n			\r\n			\r\n			\r\n				\r\n				\r\n			\r\n			\r\n    \r\n    \r\n        <tr>\r\n            <td height=\"40\">&#xA0;</td>\r\n        </tr>\r\n    \r\n\r\n			\r\n			</tbody>\r\n		</table>\r\n	\r\n\r\n\r\n    \r\n   \r\n   \r\n      \r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"background-color: #F9FBFF;\" role=\"presentation\">\r\n   <tr>\r\n       <td class=\"gutter\">\r\n           \r\n               <a target=\"_blank\" href=\"https://t.emailnotifications.microsoft.com/r/?id=hffa10a52,7e47e996,7e47e9d8\" ><img src=\"https://cdn-dynmedia-1.microsoft.com/is/image/microsoftcorp/868cqb7k4_Image%20container_HERO?scl=1&fmt=png-alpha\" alt=\"Several Microsoft product icons including Xbox, Rewards, Edge, and more floating in a wave in front of a pastel gradient\" style=\"width: 100%;vertical-align:bottom;max-height:1200px;\" border=\"0\" class=\"hero-mobile\" height=\"auto\" width=\"600\"/>\r\n	\r\n	\r\n\r\n               </a>\r\n           \r\n           \r\n       </td>\r\n   </tr>\r\n</table>\r\n\r\n		 	\r\n      \r\n      \r\n      \r\n      \r\n      \r\n		 	\r\n      \r\n   \r\n\r\n\r\n    \r\n	\r\n	\r\n	\r\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"background-color: #F9FBFF\" role=\"presentation\">\r\n			<tbody>\r\n			\r\n			\r\n    \r\n    \r\n        <tr>\r\n            <td height=\"20\">&#xA0;</td>\r\n        </tr>\r\n    \r\n\r\n			\r\n			\r\n			\r\n			\r\n			\r\n			<tr>\r\n				<td>\r\n					<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\">\r\n						\r\n							\r\n\r\n							\r\n								\r\n    \r\n    \r\n        <tr>\r\n            <td height=\"20\">&#xA0;</td>\r\n        </tr>\r\n    \r\n\r\n							\r\n\r\n							\r\n						\r\n						\r\n						\r\n							<tr>\r\n								<td class=\"gutter\" align=\"left\">\r\n									\r\n									\r\n										\r\n    \r\n\r\n    \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n            <p style=\"color:#000000;\r\n         font-family:Segoe UI, Helvetica, Arial, sans-serif;font-style: normal;font-weight:600; font-size:32px;line-height:40px;letter-spacing:-0.02em;margin:0; padding:0;\" role=\"heading\" aria-level=\"3\"> Here’s what’s in it for you </p>\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n	    \r\n        \r\n\r\n        \r\n\r\n        \r\n		\r\n		\r\n	  \r\n    \r\n\r\n									\r\n								</td>\r\n							</tr>\r\n						\r\n						\r\n						\r\n						\r\n						\r\n						\r\n							\r\n								\r\n    \r\n        \r\n        \r\n            <tr>\r\n                \r\n                <td height=\"10\" style=\"font-size:0px;line-height:0px\" class=\"spacer-ln-ht-0\">&#xA0;</td>\r\n            </tr>\r\n        \r\n    \r\n    \r\n\r\n							\r\n							\r\n							\r\n							\r\n						\r\n					</table>\r\n				</td>\r\n			</tr>\r\n			\r\n			\r\n			\r\n			\r\n			\r\n			\r\n			\r\n			</tbody>\r\n		</table>\r\n	\r\n\r\n\r\n    \r\n   \r\n   \r\n   \r\n      <table class=\"tile-small-box\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"background-color: #F9FBFF;\" role=\"presentation\">\r\n         <tbody>\r\n            \r\n               \r\n               \r\n                  \r\n    \r\n    \r\n        <tr>\r\n            <td height=\"20\">&#xA0;</td>\r\n        </tr>\r\n    \r\n\r\n               \r\n            \r\n            \r\n            \r\n            <!-- Multifield Starts -->\r\n            \r\n               \r\n                  <tr>\r\n                     <td class=\"gutter\">\r\n                        <table class=\"btn-rtl\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" role=\"presentation\">\r\n                           <tr>\r\n                              <td>\r\n                                 <table class=\"btn-rtl\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" role=\"presentation\">\r\n                                    <tbody>\r\n                                       <tr>\r\n                                          \r\n                         \r\n                                             <th width=\"290\" class=\"btn-block\" align=\"center\" bgcolor=\"#F9FBFF\" style=\" #000000; word-break:break-word; word-wrap:break-word; overflow-wrap:break-word;\">\r\n                                                \r\n                                                   \r\n\r\n   \r\n\r\n   \r\n\r\n   \r\n\r\n	   \r\n      \r\n      \r\n	<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"background-color: #F9FBFF; text-align:left;\" role=\"presentation\">\r\n		<tbody>\r\n		\r\n		\r\n			\r\n				\r\n				\r\n					\r\n    \r\n        \r\n        \r\n    \r\n    \r\n\r\n				\r\n				<tr>\r\n					<td style=\"padding-bottom:20px !important;mso-padding-bottom-alt:20px\">\r\n						\r\n							<a target=\"_blank\" href=\"https://t.emailnotifications.microsoft.com/r/?id=hffa10a52,7e47e996,7e47e9d9\" ><img src=\"https://cdn-dynmedia-1.microsoft.com/is/image/microsoftcorp/868cqb7k4_badge?scl=1&fmt=png-alpha\" alt=\"An icon of a green present with a gold bow\" style=\"vertical-align: bottom;\" border=\"0\" height=\"48\" width=\"48\"/>\r\n	\r\n	\r\n\r\n							</a>\r\n						\r\n						\r\n					</td>\r\n				</tr>\r\n			\r\n			\r\n				\r\n				<tr>\r\n					<td>\r\n						\r\n    \r\n\r\n    \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n            \r\n                <p style=\"color:#000000;\r\n                        font-family:Segoe UI, Helvetica, Arial, sans-serif;font-style: normal;font-weight:600; font-size:24px;line-height:30px;letter-spacing:-0.02em; margin:0; padding:0;\" role=\"heading\" aria-level=\"3\">\r\n                    <a target=\"_blank\" href=\"https://t.emailnotifications.microsoft.com/r/?id=hffa10a52,7e47e996,7e47e9da\" style=\"color:#000000;font-weight:600;text-decoration:none\" >                        Earn popular gift cards\r\n                    </a>\r\n                </p>\r\n            \r\n            \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n    \r\n\r\n					</td>\r\n				</tr>\r\n			\r\n		\r\n		\r\n		\r\n			\r\n			<tr>\r\n				\r\n				\r\n					<td style=\"color:#000000;font-family:Segoe UI, Helvetica, Arial, sans-serif; font-style: normal; font-weight: 400; font-size: 16px; line-height: 24px; letter-spacing: -0.02em; margin:0;padding-top:20px !important; padding-bottom:0px !important;mso-padding-top-alt:20px;mso-padding-bottom-alt:0px\">\r\n						<!--[if mso]>\r\n						<div class=\"list\">\r\n						<![endif]-->\r\n						<p>Earn gift cards to use for shopping at favorite retailers and eateries, or buying games and devices on the Microsoft Digital Store, and more</p>\r\n						<!--[if mso]>\r\n						</div>\r\n						<![endif]-->\r\n					</td>\r\n				\r\n			</tr>\r\n		\r\n		\r\n		<!-- FIRST ADDITIONAL ELEMENT STARTS -->\r\n		\r\n			\r\n			\r\n				\r\n    \r\n    \r\n        <tr>\r\n            <td height=\"20\">&#xA0;</td>\r\n        </tr>\r\n    \r\n\r\n				<tr>\r\n					<td>\r\n						<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" role=\"presentation\">\r\n							<tbody>\r\n							<tr>\r\n								<td>\r\n									\r\n   \r\n   \r\n   \r\n   \r\n   \r\n   \r\n   \r\n   <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"background-color: ;\" role=\"presentation\">\r\n      <tbody>\r\n         <tr>\r\n            <td class=\"btn-rtl\">\r\n               <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align role=\"presentation\">\r\n			    <tr>\r\n                    <td>\r\n                        <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align role=\"presentation\">\r\n                  <tbody>\r\n                     <tr>\r\n                        \r\n                           \r\n                           \r\n                              \r\n                              \r\n                                 \r\n                                 \r\n                                 <!--[if mso]>\r\n                                 <td class=\"btn-block\">\r\n                                 <![endif]-->\r\n                                 \r\n                                 <!--[if !mso]><\\!-->\r\n                                 <td class=\"btn-block\">\r\n                                    <!-- <![endif]-->\r\n                                    <table class=\"btn-rtl\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align role=\"presentation\">\r\n                                       <tbody>\r\n                                          <tr>\r\n                                             <td>\r\n                                                <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" dir=\"ltr\" role=\"presentation\">\r\n                                                   \r\n    \r\n        \r\n        \r\n            <th class=\"block-max-width\" align=\"left\" style=\"font-family:Segoe UI, Helvetica, Arial, sans-serif; font-style: normal; font-weight:600 !important; font-size:16px; line-height:24px;  max-width:280px; padding:8px 0; letter-spacing: -0.02em;\">\r\n                <a href=\"https://t.emailnotifications.microsoft.com/r/?id=hffa10a52,7e47e996,7e47e9db\" title=\"Start earning\" style=\"text-decoration:none;; color:#0067B8;\" aria-label=\"Start earning, opens a new window\" target=\"_blank\" ><strong class=\"cta-button\" style=\"color:#0067B8; text-decoration:underline;font-weight:600;\">Start earning</strong><strong style=\"color:#0067B8; text-decoration:none; font-weight:600;\">&#160;❯</strong>\r\n                </a>\r\n            </th>\r\n        \r\n    \r\n    \r\n\r\n                                                </table>\r\n                                             </td>\r\n                                          </tr>\r\n                                       </tbody>\r\n                                    </table>\r\n                                 </td>\r\n                              \r\n                           \r\n                        \r\n                     </tr>\r\n                  </tbody>\r\n				 </table>\r\n                </td>\r\n               </tr>\r\n               </table>\r\n            </td>\r\n         </tr>\r\n      </tbody>\r\n   </table>\r\n\r\n								</td>\r\n							</tr>\r\n							\r\n							</tbody>\r\n						</table>\r\n					</td>\r\n				</tr>\r\n			\r\n			\r\n			\r\n			\r\n		\r\n		<!-- FIRST   ADDITIONAL ELEMENT ENDS -->\r\n		<!-- SECOND ADDITIONAL ELEMENT STARTS -->\r\n		\r\n		<!-- SECOND ADDITIONAL ELEMENT ENDS -->\r\n		<!-- THIRD ADDITIONAL ELEMENT STARTS -->\r\n		\r\n		<!-- THIRD ADDITIONAL ELEMENT ENDS -->\r\n		\r\n		\r\n			<td style=\"font-size:0; line-height:0px\" height=\"0\">&#xa0;</td>\r\n		\r\n		</tbody>\r\n	</table>\r\n\r\n      \r\n      \r\n      \r\n      \r\n      \r\n      \r\n      \r\n\r\n   \r\n\r\n\r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                             </th>\r\n                                             \r\n                                                \r\n                                                \r\n                                                   <th class=\"mobileHidden\" style=\"padding-right: 20px;\"></th>\r\n                                                \r\n                                                <th class=\"desktopHidden\" height=\"20\">&#xA0;</th>\r\n                                             \r\n                                          \r\n                         \r\n                                             <th width=\"290\" class=\"btn-block\" align=\"center\" bgcolor=\"#F9FBFF\" style=\" #000000; word-break:break-word; word-wrap:break-word; overflow-wrap:break-word;\">\r\n                                                \r\n                                                \r\n                                                   \r\n\r\n   \r\n\r\n   \r\n\r\n   \r\n\r\n	   \r\n      \r\n      \r\n	<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"background-color: #F9FBFF; text-align:left;\" role=\"presentation\">\r\n		<tbody>\r\n		\r\n		\r\n			\r\n				\r\n				\r\n					\r\n    \r\n        \r\n        \r\n    \r\n    \r\n\r\n				\r\n				<tr>\r\n					<td style=\"padding-bottom:20px !important;mso-padding-bottom-alt:20px\">\r\n						\r\n							<a target=\"_blank\" href=\"https://t.emailnotifications.microsoft.com/r/?id=hffa10a52,7e47e996,7e47e9dc\" ><img src=\"https://cdn-dynmedia-1.microsoft.com/is/image/microsoftcorp/868cqb7k4_badge1?scl=1&fmt=png-alpha\" alt=\"An icon of a pink piggy bank with a gold coin in its slot\" style=\"vertical-align: bottom;\" border=\"0\" height=\"48\" width=\"48\"/>\r\n	\r\n	\r\n\r\n							</a>\r\n						\r\n						\r\n					</td>\r\n				</tr>\r\n			\r\n			\r\n				\r\n				<tr>\r\n					<td>\r\n						\r\n    \r\n\r\n    \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n            \r\n                <p style=\"color:#000000;\r\n                        font-family:Segoe UI, Helvetica, Arial, sans-serif;font-style: normal;font-weight:600; font-size:24px;line-height:30px;letter-spacing:-0.02em; margin:0; padding:0;\" role=\"heading\" aria-level=\"3\">\r\n                    <a target=\"_blank\" href=\"https://t.emailnotifications.microsoft.com/r/?id=hffa10a52,7e47e996,7e47e9dd\" style=\"color:#000000;font-weight:600;text-decoration:none\" >                        Get other amazing prizes \r\n                    </a>\r\n                </p>\r\n            \r\n            \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n    \r\n\r\n					</td>\r\n				</tr>\r\n			\r\n		\r\n		\r\n		\r\n			\r\n			<tr>\r\n				\r\n				\r\n					<td style=\"color:#000000;font-family:Segoe UI, Helvetica, Arial, sans-serif; font-style: normal; font-weight: 400; font-size: 16px; line-height: 24px; letter-spacing: -0.02em; margin:0;padding-top:20px !important; padding-bottom:0px !important;mso-padding-top-alt:20px;mso-padding-bottom-alt:0px\">\r\n						<!--[if mso]>\r\n						<div class=\"list\">\r\n						<![endif]-->\r\n						<p>Use points for free subscriptions, or to enter sweepstakes for a chance to win all sorts of prizes—like cash, a laptop, Xbox, or even vacation packages</p>\r\n						<!--[if mso]>\r\n						</div>\r\n						<![endif]-->\r\n					</td>\r\n				\r\n			</tr>\r\n		\r\n		\r\n		<!-- FIRST ADDITIONAL ELEMENT STARTS -->\r\n		\r\n			\r\n			\r\n				\r\n    \r\n    \r\n        <tr>\r\n            <td height=\"20\">&#xA0;</td>\r\n        </tr>\r\n    \r\n\r\n				<tr>\r\n					<td>\r\n						<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" role=\"presentation\">\r\n							<tbody>\r\n							<tr>\r\n								<td>\r\n									\r\n   \r\n   \r\n   \r\n   \r\n   \r\n   \r\n   \r\n   <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"background-color: ;\" role=\"presentation\">\r\n      <tbody>\r\n         <tr>\r\n            <td class=\"btn-rtl\">\r\n               <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align role=\"presentation\">\r\n			    <tr>\r\n                    <td>\r\n                        <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align role=\"presentation\">\r\n                  <tbody>\r\n                     <tr>\r\n                        \r\n                           \r\n                           \r\n                              \r\n                              \r\n                                 \r\n                                 \r\n                                 <!--[if mso]>\r\n                                 <td class=\"btn-block\">\r\n                                 <![endif]-->\r\n                                 \r\n                                 <!--[if !mso]><\\!-->\r\n                                 <td class=\"btn-block\">\r\n                                    <!-- <![endif]-->\r\n                                    <table class=\"btn-rtl\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align role=\"presentation\">\r\n                                       <tbody>\r\n                                          <tr>\r\n                                             <td>\r\n                                                <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" dir=\"ltr\" role=\"presentation\">\r\n                                                   \r\n    \r\n        \r\n        \r\n            <th class=\"block-max-width\" align=\"left\" style=\"font-family:Segoe UI, Helvetica, Arial, sans-serif; font-style: normal; font-weight:600 !important; font-size:16px; line-height:24px;  max-width:280px; padding:8px 0; letter-spacing: -0.02em;\">\r\n                <a href=\"https://t.emailnotifications.microsoft.com/r/?id=hffa10a52,7e47e996,7e47e9de\" title=\"See what’s new today\" style=\"text-decoration:none;; color:#0067B8;\" aria-label=\"See what’s new today, opens a new window\" target=\"_blank\" ><strong class=\"cta-button\" style=\"color:#0067B8; text-decoration:underline;font-weight:600;\">See what’s new today</strong><strong style=\"color:#0067B8; text-decoration:none; font-weight:600;\">&#160;❯</strong>\r\n                </a>\r\n            </th>\r\n        \r\n    \r\n    \r\n\r\n                                                </table>\r\n                                             </td>\r\n                                          </tr>\r\n                                       </tbody>\r\n                                    </table>\r\n                                 </td>\r\n                              \r\n                           \r\n                        \r\n                     </tr>\r\n                  </tbody>\r\n				 </table>\r\n                </td>\r\n               </tr>\r\n               </table>\r\n            </td>\r\n         </tr>\r\n      </tbody>\r\n   </table>\r\n\r\n								</td>\r\n							</tr>\r\n							\r\n							</tbody>\r\n						</table>\r\n					</td>\r\n				</tr>\r\n			\r\n			\r\n			\r\n			\r\n		\r\n		<!-- FIRST   ADDITIONAL ELEMENT ENDS -->\r\n		<!-- SECOND ADDITIONAL ELEMENT STARTS -->\r\n		\r\n		<!-- SECOND ADDITIONAL ELEMENT ENDS -->\r\n		<!-- THIRD ADDITIONAL ELEMENT STARTS -->\r\n		\r\n		<!-- THIRD ADDITIONAL ELEMENT ENDS -->\r\n		\r\n		\r\n			<td style=\"font-size:0; line-height:0px\" height=\"0\">&#xa0;</td>\r\n		\r\n		</tbody>\r\n	</table>\r\n\r\n      \r\n      \r\n      \r\n      \r\n      \r\n      \r\n      \r\n\r\n   \r\n\r\n\r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                             </th>\r\n                                             \r\n                                          \r\n                                       </tr>\r\n                                    </tbody>\r\n                                 </table>\r\n                              </td>\r\n                           </tr>\r\n                        </table>\r\n                     </td>\r\n                  </tr>\r\n                  \r\n               \r\n            \r\n            <!-- Multifield Ends -->\r\n            \r\n               \r\n                  \r\n    \r\n    \r\n        <tr>\r\n            <td height=\"40\">&#xA0;</td>\r\n        </tr>\r\n    \r\n\r\n               \r\n               \r\n            \r\n         </tbody>\r\n      </table>\r\n   \r\n\r\n\r\n    \r\n	\r\n	\r\n	\r\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"background-color: #FFFFFF\" role=\"presentation\">\r\n			<tbody>\r\n			\r\n			\r\n    \r\n    \r\n        <tr>\r\n            <td height=\"20\">&#xA0;</td>\r\n        </tr>\r\n    \r\n\r\n			\r\n			\r\n			\r\n			\r\n			\r\n			<tr>\r\n				<td>\r\n					<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\">\r\n						\r\n							\r\n\r\n							\r\n								\r\n    \r\n    \r\n        <tr>\r\n            <td height=\"20\">&#xA0;</td>\r\n        </tr>\r\n    \r\n\r\n							\r\n\r\n							\r\n						\r\n						\r\n						\r\n							<tr>\r\n								<td class=\"gutter\" align=\"left\">\r\n									\r\n									\r\n										\r\n    \r\n\r\n    \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n            <p style=\"color:#000000;\r\n         font-family:Segoe UI, Helvetica, Arial, sans-serif;font-style: normal;font-weight:600; font-size:32px;line-height:40px;letter-spacing:-0.02em;margin:0; padding:0;\" role=\"heading\" aria-level=\"3\"> Here’s how it works </p>\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n	    \r\n        \r\n\r\n        \r\n\r\n        \r\n		\r\n		\r\n	  \r\n    \r\n\r\n									\r\n								</td>\r\n							</tr>\r\n						\r\n						\r\n						\r\n							\r\n								<tr>\r\n									<td class=\"txt-align-right\" style=\"padding-top:10px; padding-bottom:0px;\" align=\"left\">\r\n										<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"rte-spacer-20\" role=\"presentation\">\r\n										\r\n											<tr>\r\n												\r\n												\r\n													<td class=\"gutter\" style=\"color:#000000;font-family:Segoe UI, Helvetica, Arial, sans-serif; font-size:16px; font-style:normal;line-height:24px;letter-spacing: -0.02em;\">\r\n														<!--[if mso]>\r\n														<div class=\"list\">\r\n														<![endif]-->\r\n														<p>There are so many ways to earn points. Just choose what works for you.</p>\r\n														<!--[if mso]>\r\n														</div>\r\n														<![endif]-->\r\n													</td>\r\n												\r\n											</tr>\r\n										\r\n										</table>\r\n									</td>\r\n								</tr>\r\n						\r\n						\r\n						\r\n						\r\n							\r\n								\r\n    \r\n        \r\n        \r\n    \r\n    \r\n\r\n							\r\n							\r\n							\r\n							\r\n						\r\n					</table>\r\n				</td>\r\n			</tr>\r\n			\r\n			\r\n			\r\n			\r\n			\r\n			\r\n			\r\n			</tbody>\r\n		</table>\r\n	\r\n\r\n\r\n    \r\n   \r\n   \r\n   \r\n      <table class=\"tile-small-box\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"background-color: #FFFFFF;\" role=\"presentation\">\r\n         <tbody>\r\n            \r\n            \r\n            \r\n            <!-- Multifield Starts -->\r\n            \r\n               \r\n                  <tr>\r\n                     <td class=\"gutter\">\r\n                        <table class=\"btn-rtl\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" role=\"presentation\">\r\n                           <tr>\r\n                              <td>\r\n                                 <table class=\"btn-rtl\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" role=\"presentation\">\r\n                                    <tbody>\r\n                                       <tr>\r\n                                          \r\n                         \r\n                                             <th width=\"100%\" class=\"btn-block\" align=\"center\" bgcolor=\"#FFFFFF\" style=\" #000000; word-break:break-word; word-wrap:break-word; overflow-wrap:break-word;\">\r\n                                                \r\n                                                   \r\n\r\n   \r\n\r\n   \r\n\r\n   \r\n\r\n	   \r\n      \r\n      \r\n      \r\n      \r\n	<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"background-color: #FFFFFF\" role=\"presentation\">\r\n		<tbody>\r\n		\r\n		<tr>\r\n			<th dir=\"ltr\" class=\"tileimage btn-block\" align=\"center\" style=\"word-break:break-word; word-wrap:break-word; overflow-wrap:break-word;\">\r\n				<table dir=\"ltr\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" role=\"presentation\">\r\n					<tbody>\r\n					<tr style=\"display:table; width:100%;\">\r\n						\r\n							<th width=\"290\" class=\"btn-block\" align=\"center\" style=\"word-break:break-word; word-wrap:break-word;\">\r\n								<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" role=\"presentation\">\r\n									<tbody>\r\n									<tr>\r\n										<td>\r\n											\r\n												<a target=\"_blank\" href=\"https://t.emailnotifications.microsoft.com/r/?id=hffa10a52,7e47e996,7e47e9df\" ><img src=\"https://cdn-dynmedia-1.microsoft.com/is/image/microsoftcorp/868cqb7k4_Image%20container?scl=1&fmt=png-alpha\" alt=\"A Surface laptop framed in a white circle on a pale green background\" style=\"vertical-align: bottom;\" border=\"0\" class=\"hero-mobile\" height=\"290\" width=\"290\"/>\r\n	\r\n	\r\n\r\n												</a>\r\n											\r\n											\r\n										</td>\r\n									</tr>\r\n									</tbody>\r\n								</table>\r\n							</th>\r\n							\r\n								<th class=\"mobileHidden\" style=\"padding-right: 20px;\"></th>\r\n							\r\n							<th class=\"desktopHidden\" height=\"20\">&nbsp;</th>\r\n						\r\n						<th width=\"290\" class=\"tfoot\" align=\"center\" style=\"; word-break:break-word; word-wrap:break-word;\">\r\n							<table dir=\"ltr\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" role=\"presentation\">\r\n								<tbody>\r\n								\r\n								\r\n									\r\n    \r\n        \r\n        \r\n            <tr>\r\n                \r\n                <td height=\"10\" style=\"font-size:0px;line-height:0px\" class=\"spacer-ln-ht-0\">&#xA0;</td>\r\n            </tr>\r\n        \r\n    \r\n    \r\n\r\n									<tr>\r\n										<td>\r\n											\r\n    \r\n\r\n    \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n            \r\n                <p style=\"color:#000000;\r\n                        font-family:Segoe UI, Helvetica, Arial, sans-serif;font-style: normal;font-weight:600; font-size:24px;line-height:30px;letter-spacing:-0.02em; margin:0; padding:0;\" role=\"heading\" aria-level=\"3\">\r\n                    <a target=\"_blank\" href=\"https://t.emailnotifications.microsoft.com/r/?id=hffa10a52,7e47e996,7e47e9e0\" style=\"color:#000000;font-weight:600;text-decoration:none\" >                        Start at your dashboard\r\n                    </a>\r\n                </p>\r\n            \r\n            \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n    \r\n\r\n										</td>\r\n									</tr>\r\n								\r\n								\r\n									\r\n    \r\n    \r\n        <tr>\r\n            <td height=\"20\">&#xA0;</td>\r\n        </tr>\r\n    \r\n\r\n									<tr>\r\n										<td>\r\n											\r\n    \r\n\r\n    \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n            \r\n            \r\n                <p style=\"color:#000000;\r\n                        font-family:Segoe UI, Helvetica, Arial, sans-serif;font-style: normal; font-weight:600;font-size: 18px;line-height:24px;letter-spacing: -0.02em; margin:0; padding:0;\" role=\"heading\" aria-level=\"3\"> Rewards just made for you </p>\r\n            \r\n        \r\n\r\n        \r\n    \r\n\r\n										</td>\r\n									</tr>\r\n								\r\n								\r\n									\r\n									<tr>\r\n										\r\n										\r\n											<td style=\"color:#000000;font-family:Segoe UI, Helvetica, Arial, sans-serif;font-style: normal;font-weight: 400;font-size: 16px;line-height: 24px;letter-spacing: -0.02em;margin:0;padding-top:10px !important; padding-bottom:0px !important;mso-padding-top-alt:10px;mso-padding-bottom-alt:0px\">\r\n												<!--[if mso]>\r\n												<div class=\"list\">\r\n												<![endif]-->\r\n												<p>Earn points right on your personalized dashboard with fun daily quizzes, trivia, and more</p>\r\n												<!--[if mso]>\r\n												</div>\r\n												<![endif]-->\r\n											</td>\r\n										\r\n									</tr>\r\n								\r\n								\r\n								<!-- FIRST ADDITIONAL ELEMENT STARTS -->\r\n								\r\n									\r\n									\r\n										\r\n    \r\n    \r\n        <tr>\r\n            <td height=\"20\">&#xA0;</td>\r\n        </tr>\r\n    \r\n\r\n										<tr>\r\n											<td>\r\n												<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" role=\"presentation\">\r\n													<tbody>\r\n													<tr>\r\n														<td>\r\n															\r\n   \r\n   \r\n   \r\n   \r\n   \r\n   \r\n   \r\n   <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"background-color: ;\" role=\"presentation\">\r\n      <tbody>\r\n         <tr>\r\n            <td class=\"btn-rtl\">\r\n               <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align role=\"presentation\">\r\n			    <tr>\r\n                    <td>\r\n                        <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align role=\"presentation\">\r\n                  <tbody>\r\n                     <tr>\r\n                        \r\n                           \r\n                           \r\n                              \r\n                              \r\n                                 \r\n                                 \r\n                                 <!--[if mso]>\r\n                                 <td class=\"btn-block\">\r\n                                 <![endif]-->\r\n                                 \r\n                                 <!--[if !mso]><\\!-->\r\n                                 <td class=\"btn-block\">\r\n                                    <!-- <![endif]-->\r\n                                    <table class=\"btn-rtl\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align role=\"presentation\">\r\n                                       <tbody>\r\n                                          <tr>\r\n                                             <td>\r\n                                                <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" dir=\"ltr\" role=\"presentation\">\r\n                                                   \r\n    \r\n        \r\n        \r\n            <th class=\"block-max-width\" align=\"left\" style=\"font-family:Segoe UI, Helvetica, Arial, sans-serif; font-style: normal; font-weight:600 !important; font-size:16px; line-height:24px;  max-width:280px; padding:8px 0; letter-spacing: -0.02em;\">\r\n                <a href=\"https://t.emailnotifications.microsoft.com/r/?id=hffa10a52,7e47e996,7e47e9e1\" title=\"Go to your dashboard\" style=\"text-decoration:none;; color:#0067B8;\" aria-label=\"Go to your dashboard, opens a new window\" target=\"_blank\" ><strong class=\"cta-button\" style=\"color:#0067B8; text-decoration:underline;font-weight:600;\">Go to your dashboard</strong><strong style=\"color:#0067B8; text-decoration:none; font-weight:600;\">&#160;❯</strong>\r\n                </a>\r\n            </th>\r\n        \r\n    \r\n    \r\n\r\n                                                </table>\r\n                                             </td>\r\n                                          </tr>\r\n                                       </tbody>\r\n                                    </table>\r\n                                 </td>\r\n                              \r\n                           \r\n                        \r\n                     </tr>\r\n                  </tbody>\r\n				 </table>\r\n                </td>\r\n               </tr>\r\n               </table>\r\n            </td>\r\n         </tr>\r\n      </tbody>\r\n   </table>\r\n\r\n														</td>\r\n													</tr>\r\n													\r\n													</tbody>\r\n												</table>\r\n											</td>\r\n										</tr>\r\n									\r\n									\r\n									\r\n									\r\n								\r\n								<!-- FIRST   ADDITIONAL ELEMENT ENDS -->\r\n								<!-- SECOND ADDITIONAL ELEMENT STARTS -->\r\n								\r\n								<!-- SECOND ADDITIONAL ELEMENT ENDS -->\r\n								<!-- THIRD ADDITIONAL ELEMENT STARTS -->\r\n								\r\n								<!-- THIRD ADDITIONAL ELEMENT ENDS -->\r\n								\r\n    \r\n    \r\n        <tr>\r\n            <td height=\"20\">&#xA0;</td>\r\n        </tr>\r\n    \r\n\r\n								</tbody>\r\n							</table>\r\n						</th>\r\n						\r\n					</tr>\r\n					</tbody>\r\n				</table>\r\n			</th>\r\n		</tr>\r\n		</tbody>\r\n	</table>\r\n\r\n      \r\n      \r\n      \r\n      \r\n      \r\n\r\n   \r\n\r\n\r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                             </th>\r\n                                             \r\n                                          \r\n                                       </tr>\r\n                                    </tbody>\r\n                                 </table>\r\n                              </td>\r\n                           </tr>\r\n                        </table>\r\n                     </td>\r\n                  </tr>\r\n                  \r\n               \r\n            \r\n            <!-- Multifield Ends -->\r\n            \r\n         </tbody>\r\n      </table>\r\n   \r\n\r\n\r\n    \r\n   \r\n   \r\n   \r\n      <table class=\"tile-small-box\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"background-color: #FFFFFF;\" role=\"presentation\">\r\n         <tbody>\r\n            \r\n               \r\n               \r\n                  \r\n    \r\n    \r\n        <tr>\r\n            <td height=\"20\">&#xA0;</td>\r\n        </tr>\r\n    \r\n\r\n               \r\n            \r\n            \r\n            \r\n            <!-- Multifield Starts -->\r\n            \r\n               \r\n                  <tr>\r\n                     <td class=\"gutter\">\r\n                        <table class=\"btn-rtl\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" role=\"presentation\">\r\n                           <tr>\r\n                              <td>\r\n                                 <table class=\"btn-rtl\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" role=\"presentation\">\r\n                                    <tbody>\r\n                                       <tr>\r\n                                          \r\n                         \r\n                                             <th width=\"100%\" class=\"btn-block\" align=\"center\" bgcolor=\"#FFFFFF\" style=\" #000000; word-break:break-word; word-wrap:break-word; overflow-wrap:break-word;\">\r\n                                                \r\n                                                   \r\n\r\n   \r\n\r\n   \r\n\r\n   \r\n\r\n	   \r\n      \r\n      \r\n      \r\n	<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"background-color: #FFFFFF\" role=\"presentation\">\r\n		<tbody>\r\n		\r\n			<tr>\r\n				<td>\r\n					<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" role=\"presentation\">\r\n						<tr>\r\n							<td height=\"1\" style=\"background: #d9d9d6; border: none; color: #d9d9d6; font-size:1px;mso-line-height-rule:exactly;line-height:1px;\">&#xA0;</td>\r\n						</tr>\r\n					</table>\r\n				</td>\r\n			</tr>\r\n			\r\n    \r\n    \r\n        <tr>\r\n            <td height=\"20\">&#xA0;</td>\r\n        </tr>\r\n    \r\n\r\n		\r\n		<tr>\r\n			<th dir=\"ltr\" class=\"tileimage btn-block\" align=\"center\" style=\"word-break:break-word; word-wrap:break-word; overflow-wrap:break-word;\">\r\n				<table dir=\"ltr\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" role=\"presentation\">\r\n					<tbody>\r\n					<tr style=\"display:table; width:100%;\">\r\n						<th width=\"290\" class=\"tfoot\" align=\"center\" style=\"; word-break:break-word; word-wrap:break-word;\">\r\n							<table dir=\"ltr\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" role=\"presentation\">\r\n								<tbody>\r\n								<tr class=\"desktopHidden\">\r\n									<td height=\"20\">&nbsp;</td>\r\n								</tr>\r\n								\r\n								\r\n									\r\n    \r\n        \r\n        \r\n            <tr>\r\n                \r\n                <td height=\"10\" style=\"font-size:0px;line-height:0px\" class=\"spacer-ln-ht-0\">&#xA0;</td>\r\n            </tr>\r\n        \r\n    \r\n    \r\n\r\n									<tr>\r\n										<td>\r\n											\r\n    \r\n\r\n    \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n            \r\n                <p style=\"color:#000000;\r\n                        font-family:Segoe UI, Helvetica, Arial, sans-serif;font-style: normal;font-weight:600; font-size:24px;line-height:30px;letter-spacing:-0.02em; margin:0; padding:0;\" role=\"heading\" aria-level=\"3\">\r\n                    <a target=\"_blank\" href=\"https://t.emailnotifications.microsoft.com/r/?id=hffa10a52,7e47e996,7e47e9e2\" style=\"color:#000000;font-weight:600;text-decoration:none\" >                        Search on Bing\r\n                    </a>\r\n                </p>\r\n            \r\n            \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n    \r\n\r\n										</td>\r\n									</tr>\r\n								\r\n								\r\n									\r\n    \r\n    \r\n        <tr>\r\n            <td height=\"20\">&#xA0;</td>\r\n        </tr>\r\n    \r\n\r\n									<tr>\r\n										<td>\r\n											\r\n    \r\n\r\n    \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n            \r\n            \r\n                <p style=\"color:#000000;\r\n                        font-family:Segoe UI, Helvetica, Arial, sans-serif;font-style: normal; font-weight:600;font-size: 18px;line-height:24px;letter-spacing: -0.02em; margin:0; padding:0;\" role=\"heading\" aria-level=\"3\"> With your PC and mobile </p>\r\n            \r\n        \r\n\r\n        \r\n    \r\n\r\n										</td>\r\n									</tr>\r\n								\r\n								\r\n									\r\n									<tr>\r\n										\r\n										\r\n											<td style=\"color:#000000;font-family:Segoe UI, Helvetica, Arial, sans-serif;font-style: normal;font-weight: 400;font-size: 16px;line-height: 24px;letter-spacing: -0.02em;margin:0;padding-top:10px; padding-top:10px !important; padding-bottom:0px !important;mso-padding-top-alt:10px;mso-padding-bottom-alt:0px\">\r\n												<!--[if mso]>\r\n												<div class=\"list\">\r\n												<![endif]-->\r\n												<p>To earn points, make Bing your default search engine. You can also use the Windows search box to keep earning more*.</p>\r\n												<!--[if mso]>\r\n												</div>\r\n												<![endif]-->\r\n											</td>\r\n										\r\n									</tr>\r\n								\r\n								\r\n								<!-- FIRST ADDITIONAL ELEMENT STARTS -->\r\n								\r\n									\r\n									\r\n										\r\n    \r\n    \r\n        <tr>\r\n            <td height=\"20\">&#xA0;</td>\r\n        </tr>\r\n    \r\n\r\n										<tr>\r\n											<td>\r\n												<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" role=\"presentation\">\r\n													<tbody>\r\n													<tr>\r\n														<td>\r\n															\r\n   \r\n   \r\n   \r\n   \r\n   \r\n   \r\n   \r\n   <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"background-color: ;\" role=\"presentation\">\r\n      <tbody>\r\n         <tr>\r\n            <td class=\"btn-rtl\">\r\n               <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align role=\"presentation\">\r\n			    <tr>\r\n                    <td>\r\n                        <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align role=\"presentation\">\r\n                  <tbody>\r\n                     <tr>\r\n                        \r\n                           \r\n                           \r\n                              \r\n                              \r\n                                 \r\n                                 \r\n                                 <!--[if mso]>\r\n                                 <td class=\"btn-block\">\r\n                                 <![endif]-->\r\n                                 \r\n                                 <!--[if !mso]><\\!-->\r\n                                 <td class=\"btn-block\">\r\n                                    <!-- <![endif]-->\r\n                                    <table class=\"btn-rtl\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align role=\"presentation\">\r\n                                       <tbody>\r\n                                          <tr>\r\n                                             <td>\r\n                                                <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" dir=\"ltr\" role=\"presentation\">\r\n                                                   \r\n    \r\n        \r\n        \r\n            <th class=\"block-max-width\" align=\"left\" style=\"font-family:Segoe UI, Helvetica, Arial, sans-serif; font-style: normal; font-weight:600 !important; font-size:16px; line-height:24px;  max-width:280px; padding:8px 0; letter-spacing: -0.02em;\">\r\n                <a href=\"https://t.emailnotifications.microsoft.com/r/?id=hffa10a52,7e47e996,7e47e9e3\" title=\"Start searching\" style=\"text-decoration:none;; color:#0067B8;\" aria-label=\"Start searching, opens a new window\" target=\"_blank\" ><strong class=\"cta-button\" style=\"color:#0067B8; text-decoration:underline;font-weight:600;\">Start searching</strong><strong style=\"color:#0067B8; text-decoration:none; font-weight:600;\">&#160;❯</strong>\r\n                </a>\r\n            </th>\r\n        \r\n    \r\n    \r\n\r\n                                                </table>\r\n                                             </td>\r\n                                          </tr>\r\n                                       </tbody>\r\n                                    </table>\r\n                                 </td>\r\n                              \r\n                           \r\n                        \r\n                     </tr>\r\n                  </tbody>\r\n				 </table>\r\n                </td>\r\n               </tr>\r\n               </table>\r\n            </td>\r\n         </tr>\r\n      </tbody>\r\n   </table>\r\n\r\n														</td>\r\n													</tr>\r\n													\r\n													</tbody>\r\n												</table>\r\n											</td>\r\n										</tr>\r\n									\r\n									\r\n									\r\n									\r\n								\r\n								<!-- FIRST   ADDITIONAL ELEMENT ENDS -->\r\n								<!-- SECOND ADDITIONAL ELEMENT STARTS -->\r\n								\r\n								<!-- SECOND ADDITIONAL ELEMENT ENDS -->\r\n								<!-- THIRD ADDITIONAL ELEMENT STARTS -->\r\n								\r\n								<!-- THIRD ADDITIONAL ELEMENT ENDS -->\r\n								\r\n    \r\n    \r\n        <tr>\r\n            <td height=\"20\">&#xA0;</td>\r\n        </tr>\r\n    \r\n\r\n								</tbody>\r\n							</table>\r\n						</th>\r\n						\r\n							<th class=\"mobileHidden\" style=\"padding-right: 20px;\"></th>\r\n							<th width=\"290\" class=\"btn-block thead\" align=\"center\" style=\"word-break:break-word; word-wrap:break-word;\">\r\n								<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" role=\"presentation\">\r\n									<tbody>\r\n									<tr>\r\n										<td>\r\n											\r\n												<a target=\"_blank\" href=\"https://t.emailnotifications.microsoft.com/r/?id=hffa10a52,7e47e996,7e47e9e4\" ><img src=\"https://cdn-dynmedia-1.microsoft.com/is/image/microsoftcorp/868cqb7k4_Image%20container1?scl=1&fmt=png-alpha\" alt=\"A browser screen of an idyllic mountain setting with a Bing search field centered in front of it\" style=\"vertical-align: bottom;\" border=\"0\" class=\"hero-mobile\" height=\"290\" width=\"290\"/>\r\n	\r\n	\r\n\r\n												</a>\r\n											\r\n											\r\n										</td>\r\n									</tr>\r\n									</tbody>\r\n								</table>\r\n							</th>\r\n						\r\n					</tr>\r\n					</tbody>\r\n				</table>\r\n			</th>\r\n		</tr>\r\n		</tbody>\r\n	</table>\r\n\r\n      \r\n      \r\n      \r\n      \r\n      \r\n      \r\n\r\n   \r\n\r\n\r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                             </th>\r\n                                             \r\n                                          \r\n                                       </tr>\r\n                                    </tbody>\r\n                                 </table>\r\n                              </td>\r\n                           </tr>\r\n                        </table>\r\n                     </td>\r\n                  </tr>\r\n                  \r\n               \r\n            \r\n            <!-- Multifield Ends -->\r\n            \r\n         </tbody>\r\n      </table>\r\n   \r\n\r\n\r\n    \r\n\r\n    \r\n\r\n    \r\n		\r\n    \r\n\r\n\r\n\r\n    \r\n\r\n    \r\n\r\n    \r\n		\r\n    \r\n\r\n\r\n\r\n    \r\n\r\n    \r\n\r\n    \r\n		\r\n    \r\n\r\n\r\n\r\n    \r\n\r\n    \r\n\r\n    \r\n		\r\n    \r\n\r\n\r\n\r\n    \r\n\r\n    \r\n\r\n    \r\n		\r\n    \r\n\r\n\r\n\r\n    \r\n\r\n    \r\n\r\n    \r\n		\r\n    \r\n\r\n\r\n\r\n    \r\n   \r\n   \r\n\r\n    \r\n        \r\n		\r\n	\r\n	\r\n	\r\n	\r\n	\r\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"background-color: #FFFFFF;\" role=\"presentation\">\r\n			<tbody>\r\n			<tr>\r\n				<td style=\"line-height:20px\" height=\"20\">&#xA0;</td>\r\n			</tr>\r\n			<tr>\r\n				<td class=\"gutter\">\r\n					<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\">\r\n						<tr>\r\n							<td>\r\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\">\r\n									<tbody>\r\n									<tr>\r\n										\r\n											<td width=\"50%\" class=\"block\" style=\"color:#000000;font-family:Segoe UI, Helvetica, Arial, sans-serif; font-size:16px;line-height:24px;word-break:break-word;word-wrap:break-word;overflow-wrap:break-word;\">\r\n												<p>Discover more about Microsoft Rewards</p>\r\n											</td>\r\n										\r\n										\r\n											<td class=\"mobileHidden\" width=\"50%\" align=\"right\">\r\n												<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"right\" role=\"presentation\">\r\n													<tbody>\r\n													<tr>\r\n														<td>\r\n															<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"background-color: #FFFFFF;\" role=\"presentation\">\r\n																<tbody>\r\n																<tr>\r\n																	<td class=\"btn-rtl\">\r\n																		<table width=\"100%\" class=\"ribbon-cta\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" role=\"presentation\">\r\n																			<tbody>\r\n																			<tr>\r\n																				<!--[if mso]>\r\n																				<td class=\"btn-block\">\r\n																				<![endif]-->\r\n																				<!--[if !mso]><\\!-->\r\n																				<td class=\"btn-block\">\r\n																				<!-- <![endif]-->\r\n																					<table width=\"100%\" class=\"btn-rtl\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" role=\"presentation\">\r\n																						<tbody>\r\n																						<tr>\r\n																							\r\n    \r\n        \r\n        \r\n            <th class=\"block-max-width\" align=\"left\" style=\"font-family:Segoe UI, Helvetica, Arial, sans-serif; font-style: normal; font-weight:600 !important; font-size:16px; line-height:24px;  max-width:280px; padding:8px 0; letter-spacing: -0.02em; text-align:right\">\r\n                <a href=\"https://t.emailnotifications.microsoft.com/r/?id=hffa10a52,7e47e996,7e47e9f7\" title=\"Let’s go\" style=\"color:#0067B8; text-decoration:none;; color:#0067B8;\" aria-label=\"Let’s go, opens a new window\" target=\"_blank\" ><strong class=\"cta-button\" style=\"color:#0067B8; text-decoration:underline;font-weight:600;\">Let’s go</strong><strong style=\"color:#0067B8; text-decoration:none; font-weight:600;\">&#160;❯</strong>\r\n                </a>\r\n            </th>\r\n        \r\n    \r\n    \r\n\r\n																						</tr>\r\n																						</tbody>\r\n																					</table>\r\n																				</td>\r\n																			</tr>\r\n																			</tbody>\r\n																		</table>\r\n																	</td>\r\n																</tr>\r\n																</tbody>\r\n															</table>\r\n														</td>\r\n													</tr>\r\n													</tbody>\r\n												</table>\r\n											</td>\r\n										\r\n									</tr>\r\n									\r\n										<!--[if!mso]><\\!-->\r\n										<tr>\r\n											<td class=\"desktopHidden\" height=\"16\">&#xA0;</td>\r\n										</tr>\r\n										<tr>\r\n											<td class=\"desktopHidden\">\r\n												<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" role=\"presentation\">\r\n													<tbody>\r\n													<tr>\r\n														<td>\r\n															<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"background-color: #FFFFFF;\" role=\"presentation\">\r\n																<tbody>\r\n																<tr>\r\n																	<td class=\"btn-rtl\">\r\n																		<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" role=\"presentation\">\r\n																			<tbody>\r\n																			<tr>\r\n																				<!--[if mso]>\r\n																				<td class=\"btn-block\">\r\n																				<![endif]-->\r\n																				<!--[if !mso]><\\!-->\r\n																				<td class=\"btn-block\">\r\n																				<!-- <![endif]-->\r\n																					<table class=\"btn-rtl\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" role=\"presentation\">\r\n																						<tbody>\r\n																						<tr>\r\n																							\r\n    \r\n        \r\n        \r\n            <th class=\"block-max-width\" align=\"left\" style=\"font-family:Segoe UI, Helvetica, Arial, sans-serif; font-style: normal; font-weight:600 !important; font-size:16px; line-height:24px;  max-width:280px; padding:8px 0; letter-spacing: -0.02em;\">\r\n                <a href=\"https://t.emailnotifications.microsoft.com/r/?id=hffa10a52,7e47e996,7e47e9f8\" title=\"Let’s go\" style=\"color:#0067B8; text-decoration:none;; color:#0067B8;\" aria-label=\"Let’s go, opens a new window\" target=\"_blank\" ><strong class=\"cta-button\" style=\"color:#0067B8; text-decoration:underline;font-weight:600;\">Let’s go</strong><strong style=\"color:#0067B8; text-decoration:none; font-weight:600;\">&#160;❯</strong>\r\n                </a>\r\n            </th>\r\n        \r\n    \r\n    \r\n\r\n																						</tr>\r\n																						</tbody>\r\n																					</table>\r\n																				</td>\r\n																			</tr>\r\n																			</tbody>\r\n																		</table>\r\n																	</td>\r\n																</tr>\r\n																</tbody>\r\n															</table>\r\n														</td>\r\n													</tr>\r\n													</tbody>\r\n												</table>\r\n											</td>\r\n										</tr>\r\n									\r\n									<!-- <![endif]-->\r\n									</tbody>\r\n								</table>\r\n							</td>\r\n						</tr>\r\n					</table>\r\n				</td>\r\n			</tr>\r\n			<tr>\r\n				<td style=\"line-height:20px\" height=\"20\">&#xA0;</td>\r\n			</tr>\r\n			</tbody>\r\n		</table>\r\n	\r\n\r\n    \r\n\r\n\r\n    \r\n   \r\n   \r\n   \r\n      <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"background: #FFFFFF;\" role=\"presentation\">\r\n         <tbody>\r\n         \r\n            \r\n    \r\n        \r\n        \r\n            <tr>\r\n                \r\n                <td height=\"10\" style=\"font-size:0px;line-height:0px\" class=\"spacer-ln-ht-0\">&#xA0;</td>\r\n            </tr>\r\n        \r\n    \r\n    \r\n\r\n         \r\n            <tr>\r\n               <td>\r\n                  <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" role=\"presentation\">\r\n                     <tr>\r\n                        <td height=\"1\" style=\"background: #FFFFFF; border: none; color: #FFFFFF;font-size:1px;mso-line-height-rule:exactly;line-height:1px;\">&#xA0;</td>\r\n                     </tr>\r\n                  </table>\r\n               </td>\r\n            </tr>\r\n         \r\n            \r\n    \r\n        \r\n        \r\n    \r\n    \r\n\r\n         \r\n         </tbody>\r\n      </table>\r\n   \r\n\r\n\r\n\r\n    \r\n   \r\n   \r\n   \r\n      <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #EAF0F6;\" role=\"presentation\">\r\n         <tbody>\r\n			<tr>\r\n               <td height=\"10\" class=\"spacer-ln-ht-0\">&#xA0;</td>\r\n            </tr>\r\n            <tr>\r\n               <td class=\"txt-align-right\" align=\"left\">\r\n                  <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"rte-footerspacer-10\" role=\"presentation\">\r\n                     <tr>\r\n                        <td class=\"gutter\" style=\"color:#000000;font-family:Segoe UI, Helvetica, Arial, sans-serif;font-size:10px;line-height:14px;letter-spacing:-0.02em;font-style:normal;\">\r\n                           <body>\r\n <p>*Microsoft Rewards&nbsp;<a href=\"https://t.emailnotifications.microsoft.com/r/?id=hffa10a52,7e47e996,7e47e9f9\" _rte_href=\"https://go.microsoft.com/fwlink/?linkid=2308800\" target=\"_blank\" class=\"ms-rte-link\" style=\"color:#000000\" >Terms and Conditions</a>. Point earning limits apply; not all earning opportunities are available in each market. Must be logged in with your Microsoft account to accumulate Rewards points. Microsoft Rewards is available&nbsp;<u><a href=\"https://t.emailnotifications.microsoft.com/r/?id=hffa10a52,7e47e996,7e47e9fa\" _rte_href=\"https://go.microsoft.com/fwlink/?linkid=2306194\" target=\"_blank\" class=\"ms-rte-link\" style=\"color:#000000\" >in these markets</a></u>. Learn more in the&nbsp;<u><a href=\"https://t.emailnotifications.microsoft.com/r/?id=hffa10a52,7e47e996,7e47e9fb\" _rte_href=\"https://go.microsoft.com/fwlink/?linkid=2307157\" class=\"ms-rte-link\" style=\"color:#000000\" >frequently asked questions&nbsp;page</a></u>.&nbsp;Rewards with Xbox through gameplay (including Game Pass Quests) are available to users age 18+ with a Microsoft account in select markets. Minimum playtime required.<br></p>\r\n</body>\r\n                        </td>\r\n                     </tr>\r\n                  </table>\r\n               </td>\r\n            </tr>\r\n            <tr>\r\n               <td height=\"0\" class=\"spacer-ln-ht-0\">&#xA0;</td>\r\n            </tr>\r\n         </tbody>\r\n      </table>\r\n   \r\n\r\n\r\n    \r\n\r\n    \r\n\r\n    \r\n		\r\n    \r\n\r\n\r\n\r\n    \r\n\r\n    \r\n\r\n    \r\n		\r\n    \r\n\r\n\r\n\r\n    \r\n\r\n    \r\n\r\n    \r\n		\r\n    \r\n\r\n\r\n\r\n    \r\n\r\n    \r\n\r\n    \r\n		\r\n    \r\n\r\n\r\n\r\n    \r\n\r\n    \r\n\r\n    \r\n		\r\n    \r\n\r\n\r\n\r\n    \r\n\r\n    \r\n\r\n    \r\n		\r\n    \r\n\r\n\r\n\r\n\r\n\r\n\r\n                            </td>\r\n                     	</tr>\r\n\r\n                        <!-- FOOTER SECTION STARTS HERE -->\r\n\r\n                        <tr>\r\n                     		<td>\r\n                                \r\n\r\n\r\n\r\n\r\n                            </td>\r\n                     	</tr>\r\n\r\n                        <tr>\r\n                     		<td>\r\n                 				\r\n   \r\n\r\n   \r\n   \r\n      <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"background-color:#EAF0F6;\" role=\"presentation\">\r\n         <tbody>\r\n            \r\n               \r\n    \r\n    \r\n        <tr>\r\n            <td height=\"20\">&#xA0;</td>\r\n        </tr>\r\n    \r\n\r\n            \r\n			<tr>\r\n			  <td class=\"gutter\" style=\"color:#000000;font-family:Segoe UI, Helvetica, Arial, sans-serif;font-size:10px;line-height:14px;letter-spacing:-0.02em;font-style:normal;\">\r\n				 <p>You are receiving this message because you are subscribed to\r\nMicrosoft Transactional</p>\r\n			  </td>\r\n		   </tr>\r\n            <tr>\r\n               <td height=\"5\" style=\"font-size:0px;line-height:5px\">&#xA0;</td>\r\n            </tr>\r\n            <tr>\r\n               <td class=\"gutter\" style=\"color:#000000;font-family:Segoe UI, Helvetica, Arial, sans-serif;font-size:10px;line-height:14px;letter-spacing:-0.02em;font-style:normal;\">\r\n                  <p>This email was sent from an unmonitored inbox.\r\n</p>\r\n               </td>\r\n            </tr>\r\n            <tr>\r\n               <td height=\"5\" style=\"font-size:0px;line-height:5px\">&#xA0;</td>\r\n            </tr>\r\n            <tr>\r\n               <td class=\"gutter\" style=\"color:#000000;font-family:Segoe UI, Helvetica, Arial, sans-serif;font-size:10px;line-height:14px;letter-spacing:-0.02em;font-style:normal;\">\r\n                  <p>Copyright 2025 Microsoft Corporation.</p>\r\n               </td>\r\n            </tr>\r\n            <tr>\r\n               <td>\r\n                  \r\n                  \r\n                  \r\n                  \r\n                  \r\n	\r\n\r\n\r\n\r\n\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\">\r\n   <tr>\r\n   	<td height=\"20\">&#xA0;</td>\r\n   </tr>\r\n   <!--Privacy text-->\r\n   \r\n     \r\n    \r\n   <tr>\r\n      <td class=\"gutter\" style=\"font-family:Segoe UI,Helvetica,Arial,sans-serif;font-size:10px;line-height:14px;color:#000000;\">\r\n         <a title=\"Privacy Statement\" href=\"https://t.emailnotifications.microsoft.com/r/?id=hffa10a52,7e47e996,7e47ea1a\" _label=\"Privacy Link\" _type=\"Email click\" ><strong style=\"color:#000000;text-decoration:underline;font-weight: normal;\">Privacy Statement</strong></a>\r\n      </td>\r\n   </tr>\r\n   \r\n   <tr>\r\n      <td height=\"5\" style=\"font-size:0px;line-height:5px\">&#xA0;</td>\r\n   </tr>\r\n   <tr>\r\n      <!--[if gte mso 9]>\r\n				<td class=\"footeraddressrtl\" style=\"color:#000000;font-family:Segoe UI,Helvetica,Arial,sans-serif;font-size:10px;line-height:14px;letter-spacing:-0.02em;font-style:normal;\">     \r\n			<![endif]-->\r\n			<!--[if !gte mso 9]><!-- -->\r\n				<td class=\"gutter\" style=\"color:#000000;font-family:Segoe UI,Helvetica,Arial,sans-serif;font-size:10px;line-height:14px;letter-spacing:-0.02em;font-style:normal;\">\r\n			<!--<![endif]-->\r\n         <p>Microsoft Corporation,&#xA0;One Microsoft Way,&#xA0;Redmond, WA 98052\r\n         </p>\r\n      </td>\r\n   </tr>\r\n   \r\n   <tr>\r\n     <td style=\"line-height:1px; mso-line-height-rule:exactly;\">\r\n       <img border=\"0\" src=\"https://cam-pixel-tracker-prod.azure-api.net/api/p79/track.png\" height=\"1\" width=\"1\" style=\"display:block;height:1px;\">\r\n     </td>\r\n</tr>\r\n</table>\r\n\r\n	\r\n\r\n               </td>\r\n            </tr>            \r\n            <tr>\r\n               \r\n    \r\n    \r\n        <tr>\r\n            <td height=\"20\">&#xA0;</td>\r\n        </tr>\r\n    \r\n\r\n               <td>\r\n                  <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" role=\"presentation\">\r\n                     <tr>\r\n                          <td class=\"gutter\" width=\"100\" style=\"line-height:14px;\">\r\n                                \r\n                                       <a target=\"_blank\" href=\"https://t.emailnotifications.microsoft.com/r/?id=hffa10a52,7e47e996,7e47ea74\" ><img src=\"https://cdn-dynmedia-1.microsoft.com/is/image/microsoftcorp/microsoft%20logo-1?scl=1&fmt=png-alpha\" alt=\"Microsoft Logo\" style=\"display:block; height:20px;\" height=\"20\"/>\r\n	\r\n	\r\n\r\n                                         </a>\r\n                                 \r\n                                  \r\n							</td>\r\n                       </tr>\r\n                  </table>\r\n               </td>\r\n            </tr>\r\n            \r\n    \r\n    \r\n        <tr>\r\n            <td height=\"30\">&#xA0;</td>\r\n        </tr>\r\n    \r\n\r\n         </tbody>\r\n      </table>\r\n   \r\n\r\n                 			</td>\r\n                 		</tr>\r\n                  		<!-- FOOTER SECTION ENDS HERE -->\r\n\r\n                     </tbody>\r\n                  </table>\r\n                </td>\r\n              </tr>\r\n      		\r\n      	 </tbody>\r\n      </table>\r\n      <!--PARENT TABLE Ends Here -->\r\n      <p style=\"line-height:1px;\">&nbsp;</p>\r\n	</div>\r\n\r\n<img height=\'0\' width=\'0\' alt=\'\' src=\'https://t.emailnotifications.microsoft.com/r/?id=hffa10a52,7e47e996,1\'/>\r\n</body>\r\n</html>\r\n\r\n','\r\n\r\n\r\n    \r\n\r\n    \r\n\r\n    \r\n    \r\n    \r\n    \r\n	Earn Rewards points with Microsoft\r\n	\r\n	\r\n	\r\n	\r\n	\r\n\r\n	\r\n    \r\n    \r\n    \r\n\r\n    \r\n\r\n    \r\n    \r\n        \r\n    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n    \r\n    \r\n    \r\n    \r\n\r\n    \r\n    \r\n\r\n    \r\n    \r\n\r\n    \r\n    \r\n\r\n    \r\n    \r\n    	@-ms-viewport { width: device-width;}\r\n    \r\n    \r\n    	 sup{line-height: 0;}\r\n    	.xf-content-height { margin:0 !important; }\r\n		.xf-content-height .newpar { margin: 0; height: 100% !important; }\r\n		.desktop-block { display:block; }\r\n	    .rtl-template,  .rtl-template td { direction: rtl !important; text-align: right !important; }\r\n		.rtl-template .text-rtl-center td, .rtl-template .hero-text-center{text-align:center !important}\r\n		.rtl-template .btn-rtl th { direction: rtl !important; }\r\n        .rtl-template ul { margin: 0 !important; padding-right: 22px !important;text-align: right !important;direction: rtl !important; }\r\n        .rtl-template ol { margin-top: 0 !important;margin-bottom:0 !important; padding-right: 22px !important;text-align: right !important;}\r\n        .rtl-template .social-icons { padding-left: 12px !important; padding-right: 0 !important; }\r\n        .rtl-template .text-align-right th { text-align: right !important;padding-right:0px !important; padding-left:3px !important; }\r\n		.rtl-template .txt-align-right, .rtl-template .block-text-align-right {text-align: right !important;}\r\n		.rtl-template li { padding: 0 12px 8px 0 !important; }\r\n		.rtl-template .rating-thumbs-up { padding-left: 30px; padding-right: 0; }\r\n		.rtl-template .reward-tile-card {padding-left: 20px; padding-right: 0; }\r\n        .rtl-template .ribbon-cta .block-max-width {text-align: left !important;}\r\n		.rtl-template .block-max-width, .rtl-template .btn-block-right {text-align: right !important;}\r\n		.rtl-template .block-max-width-center {text-align: center !important;}\r\n		u+.rtl-template a { color:#0067B8 !important; }\r\n		.rtl-template .table-ruler td, .rtl-template .table-ruler th, .rtl-template .table-zebra td, .rtl-template .table-zebra th,\r\n		.rtl-template .table-hr-icon td, .rtl-template .table-zebra-icon td { padding: 20px 20px 20px 0 !important;	text-align: right !important; }\r\n		.rtl-template .table-ruler-mobile th, .rtl-template .table-zebra-mobile th { text-align: right !important; 	}\r\n		.rtl-template .text-rtl-center td {text-align: center !important;}\r\n    	.rtl-template .text-rtl-center {display:block; margin:0 auto;}\r\n		.email-table .text-center p,.email-table .text-center td {text-align:center !important;}\r\n        .email-table .text-center img {Margin:0 auto;margin:0 auto;}\r\n        .email-table .text-left p,.email-table .text-left td {text-align:left !important;}\r\n        .email-table .text-right p,.email-table .text-right td {text-align:right !important;}\r\n        .rtl-template .email-table .text-center p,.rtl-template .email-table .text-center td {direction: rtl !important;text-align: center !important;}\r\n		.rtl-template .btn-rtl th {direction: rtl !important;}\r\n		.rtl-template .tile-headline, .rtl-template .tile-paragraph { padding: 0 20px 0 20px;}\r\n		.rtl-template .small-tile-image { padding: 20px 20px 0px 20px;}\r\n		.rtl-template .tile-button { padding: 0 20px 20px 20px; }\r\n		.rtl-template .padd-left-right-40 { padding: 0 40px 0 40px !important;}\r\n		.rtl-template .padd-left-20 { padding-left: 20px !important; padding-right: 0 !important;}\r\n		.rtl-template .intro-tile-image {padding:10px 10px 10px 20px}\r\n		.rtl-template .intro-tile-text {padding:0 0 0 10px}\r\n        .rtl-template .image-tile-10 { padding:10px 10px 0px 0px !important;}\r\n        .rtl-template .image-tile-20 {padding: 20px 20px 0px 0px !important;}\r\n        .footer-address-center td,.footer-address-center td p,.footer-address-center td p a{text-align:center !important;direction:ltr !important;}\r\n		 table.groupthree a {text-decoration: underline !important;}\r\n		.txt-center ul li, .txt-center ol li{text-align: center !important; list-style-position: inside;}\r\n         body {margin:0;padding:0;}\r\n         table td {border-collapse:collapse;margin:0;padding:0;}\r\n         table td p {margin:0;padding:0;}\r\n		 table td p a {color:#0067B8;text-decoration:underline;font-weight: normal;}\r\n		 table th {font-weight: normal !important;}\r\n         .desktopHidden, .desktop-hidden, .table-ruler-mobile, .table-zebra-mobile {display: none !important;}\r\n         .gutter {padding:0 30px;}\r\n		 .tile-pad-large-4 {padding-left: 50px !important; padding-right: 50px !important;}\r\n         .tile-pad-large {padding-left: 30px !important; padding-right: 30px !important;}\r\n         .tile-pad-small-v1 {padding-left: 50px !important; padding-right: 50px !important;}\r\n         .tile-pad-small-v2 {padding-left: 84px !important; padding-right: 84px !important;}\r\n         .tile-pad-small-v3 {padding-left: 119px !important; padding-right: 119px !important;}\r\n         .tile-pad-small-v5 {padding-left: 154px !important; padding-right: 154px !important;}\r\n		 .padd-left-right-40 { padding:0 40px 0 40px !important;}\r\n		 .padd-left-right-20 { padding:0 20px 0 20px !important;}\r\n		 .padd-left-right-10 { padding:0 10px 0 10px !important;}\r\n		 .padd-left-right-28 { padding:0 28px 0 28px !important;}\r\n		 .padd-right-26 { padding:0 26px 0 0 !important;}\r\n		 .padd-left-26 { padding:0 0 0 26px !important;}\r\n		 .tile-small-box .btn-block {vertical-align:top}\r\n		 .tile-image {padding: 10px 20px 10px 10px;}\r\n		 .reward-tile-card {padding-right: 20px;}\r\n         .lg-tile-image, .lg-tile-headline, .lg-tile-paragraph, .lg-tile-button {padding: 0 40px 0 40px;}\r\n         .tile-headline, .tile-paragraph { padding: 0 20px 0 20px;}\r\n         .small-tile-image { padding: 20px 20px 0px 20px;}\r\n         .tile-button { padding: 0 20px 20px 20px;}\r\n         .tile-txt-small {font-family: \'Segoe UI\', Helvetica, Arial, sans-serif; font-size: 12px; font-style: normal; color: #505050; line-height: 16px; letter-spacing: -0.01em; text-align: center; padding-left: 5px; padding-right: 5px; word-wrap: break-word; word-break: break-all;}\r\n         .tile-txt-large {font-family: \'Segoe UI\', Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; color: #505050; line-height: 20px; letter-spacing: -0.01em; text-align: center; padding-left: 10px; padding-right: 10px; word-wrap: break-word; word-break: break-all;}\r\n         .boxed-list-wrapper {padding: 20px 30px 0;}\r\n		 .block-padd-top-30 {padding-top: 0px;}\r\n		 .rating-thumbs-up {padding-right: 30px;}\r\n		 .text-card-padding {padding: 0 80px 0px 80px;}\r\n         .rte-spacer-20 p,.rte-spacer-20 ul,.rte-spacer-20 ol {padding-bottom: 20px !important;}\r\n		 .rte-spacer-10 p,.rte-spacer-10 ul,.rte-spacer-10 ol {padding-bottom: 10px !important;}\r\n         .rte-footerspacer-10 p,.rte-footerspacer-10 ul,.rte-footerspacer-10 ol {padding-top: 10px !important;}\r\n		 .semibold{font-weight:600;}\r\n		 .strikethrough { text-decoration: line-through;}\r\n		 .spacer-ln-ht-0 {line-height: 0px;font-size: 0px;}\r\n		 .table-ruler-mobile td, .table-ruler-mobile th, .table-zebra-mobile td, .table-zebra-mobile th, .table-hr-icon td, .table-zebra-icon td {\r\n      		height: 30px !important; padding: 20px 0 20px 20px !important; text-align: left !important;	word-wrap: break-word !important;	overflow-wrap: break-word !important; }\r\n		 .table-ruler th, .table-ruler td { height: 30px !important;	padding: 20px 0 20px 20px !important; text-align: left !important; word-wrap: break-word !important; overflow-wrap: break-word !important; }\r\n		 .table-zebra th, .table-zebra td { height: 30px !important;	padding: 20px 0 20px 20px !important; text-align: left !important; word-wrap: break-word !important; overflow-wrap: break-word !important; }\r\n         .table-ruler th, .table-ruler td, .table-ruler-mobile th, .table-ruler-mobile td, .table-hr-icon td {\r\n         border-bottom: 1px solid #E0E0E0 !important;}\r\n         .table-zebra-mobile th, .table-zebra-mobile td {border-bottom : 1px solid #ffffff !important;}\r\n         .table-ruler-mobile, .table-hr-icon {border-top: 1px solid #E0E0E0;}\r\n         .table-ruler-mobile th, .table-zebra-mobile th {font-weight: 600 !important;}\r\n         .table-zebra-icon .odd-row td, .table-zebra .odd-row td, .table-zebra-mobile .odd-row td {background-color: #F6F6F6;}\r\n         .table-zebra th, .table-zebra-mobile th {background-color: #e7e7e7;}\r\n		 .hero-text-center {text-align: center !important;padding: 0 30px !important;}\r\n		 .intro-tile-image { padding:10px 20px 10px 10px !important;}\r\n		 .intro-tile-text  {padding:0 10px 0 0}\r\n		 .intro-tile-text-20 {padding: 0 20px 0 0;}\r\n         .intro-tile-image-20 {padding: 20px 20px 20px 20px !important;}\r\n         .image-tile-10 { padding:10px 0px 0px 10px !important;}\r\n         .image-tile-20 {padding: 20px 0px 0px 20px !important;}\r\n         .email-table th table td { font-weight:600 !important;}\r\n         @media only screen and (max-width: 640px) {\r\n         .mobileHide {display:none;line-height:0; mso-hide: all;max-height: 0; max-width: 0; width:0;}\r\n         }\r\n         @media only screen and (max-width: 480px) {\r\n		 .wrapper, .table-hr-icon, .table-zebra-icon, .email-table {width: 100%!important;}\r\n		 .text-card-padding {padding: 0px 40px 0px 40px !important;}\r\n         .block, .block-text-align-right, .desktopHidden {width:100% !important; display:block !important;}\r\n		 .app-download-block th, .btn-block, .btn-block-right {display: block !important; width: auto !important;}\r\n		 .block-max-width, .block-max-width-center{ max-width: none !important; display: block !important; width: auto !important;}\r\n         .addressText {font-size:10px !important;}\r\n		 .mobileHidden, .table-ruler, .table-zebra {display: none !important;}\r\n         .mobileBodyPadding {padding:10px 20px 35px 20px !important; width:288px !important;}\r\n         .mobileNoPadding {padding:0 !important;}\r\n		 .mobile-block-padd-top-30 {display: block !important;padding-top: 30px;width: 100%;}\r\n         .mobileTopPad5 { padding-top: 5px !important; }\r\n         .mobileTopPad10 { padding-top: 10px !important; }\r\n         .hide{display:none;}\r\n         .show{display:none;}\r\n         .desktophide{display:block!important;}\r\n         .w-100p{width:100%!important;}\r\n         .p-0{padding:0!important;}\r\n         .flex{display:block!important;width:100%!important;box-sizing:border-box!important;}\r\n         .thold{display:table!important;width:100%!important;}\r\n         .thead{display:table-header-group!important;width:100%!important;}\r\n         .tfoot{display:table-footer-group!important;width:100%!important;}\r\n         .mobile-padding-20{padding-left:20px!important; padding-right:20px!important;}\r\n         .mobile-padding-rght-20{padding-left:0px!important; padding-right:20px!important;}\r\n         .mobile-social-table{text-align:center!important;}\r\n         .mobile-social-padd-btm{padding-bottom:35px!important;}\r\n		 .mobile-social-padd-btm-top{padding-bottom:35px!important;}\r\n         .mobile-social-marg-btm{margin-top:20px!important;}\r\n		 .mobile-social-inline{display:inline-block!important; padding-right:2px!important;}\r\n		 .logo-mobile-img{width:85px!important;height:18px!important;}\r\n		 .mobile-monthly-padd-left{padding-left:20px!important;}\r\n		 .secondary-logo-padd-left{ padding-left:0px!important;}\r\n         .secondary-logo-padd-left-20{ padding-left:20px!important;}\r\n         .mobile-txt-center {text-align: center!important;}\r\n         .social-text-pad-rght{padding-right:20px!important;padding-bottom:0px!important;}\r\n		 .followus-pad-top{padding-top:20px!important;}\r\n		.card-padding {padding-left: 20px!important; padding-right: 20px!important; padding-top: 40px!important; padding-bottom: 40px!important;}\r\n		.thead {display: table-header-group!important; width: 100%!important;}\r\n		.mobile-txt-center {text-align: center!important;}\r\n		.tfoot {display: table-footer-group!important; width: 100%!important;}\r\n		.tile-pad-large-4 {padding-left: 20px !important; padding-right: 20px !important;}\r\n		.tile-pad-large {padding-left: 60px !important; padding-right: 60px !important;}\r\n		.tile-pad-small-v1 {padding-left: 20px !important; padding-right: 20px !important;}\r\n		.tile-pad-small-v2 {padding-left: 20px !important; padding-right: 20px !important;}\r\n		.tile-pad-small-v3 {padding-left: 20px !important; padding-right: 20px !important;}\r\n		.tile-pad-small-v5 {padding-left: 55px !important; padding-right: 55px !important;}\r\n		.mob-padd-top-zero {padding-top: 0px !important;}\r\n        .boxed-list-wrapper {padding: 20px 20px 0 !important;}\r\n        .gutter {padding:0 20px!important;}\r\n		.block-padd-top-30 { display: block !important; padding-top: 30px; }\r\n		.mobile-bottom-padding-20 { padding: 0 0 20px 0 !important;}\r\n		.hero-mobile { width: 100% !important; max-width: 100% !important; height: auto !important;}\r\n        .hero-text-center {padding: 0 20px !important;}\r\n         .spacer-mob-30 {height: 30px !important;}\r\n         .spacer-mob-20 {height: 20px !important;}\r\n         .table-zebra-mobile, .table-ruler-mobile {display: table !important;}\r\n         .table-ruler-mobile td, .table-zebra-mobile td, .table-ruler-mobile th, .table-zebra-mobile th {padding: 20px !important;}\r\n         .table-hr-icon td, .table-zebra-icon td {min-width: 16px !important; max-width: 150px !important;}\r\n		.rtl-template .block-text-align-right { text-align: right !important;}\r\n        .thold { display: table !important; width: 100% !important; }\r\n		.thead { display: table-header-group !important; width: 100% !important; }\r\n		.tfoot { display: table-footer-group !important; width: 100% !important; }\r\n        .email-banner-padding { padding-left:20px !important; padding-right:20px !important; }\r\n    .social-link{display: inline-block;padding-right:20px;}\r\n		.rtl-template .social-link{display: inline-block;padding-left:20px !important;padding-right:0 !important;}\r\n		.social-link:last-child { padding-right: 0;}\r\n		.rtl-template .social-link:last-child{padding-left: 0;}\r\n         }\r\n         ul { margin:0 !important;padding-left:22px !important;text-align: left !important;}\r\n         ol { margin-top:0 !important;margin-bottom:0 !important;padding-left:22px !important;text-align: left !important;}\r\n		 li{padding: 0 0 8px 12px !important;margin: 0 !important;}\r\n		 li a {text-decoration: underline; color: #0067B8;}\r\n         *[class].gmailfix {display:none; display:none!important;}\r\n      \r\n     \r\n\r\n    \r\n   \r\n    \r\n  \r\n\r\n\r\n\r\n      Sign in and start earning Rewards points today\r\n			\r\n				&#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp;&#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp;&#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp;&#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp;&#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp; &#847; &zwnj; &nbsp;\r\n			\r\n      \r\n      \r\n         &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \r\n         &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \r\n         &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\r\n      \r\n      \r\n	  \r\n	  \r\n	  \r\n	  \r\n         \r\n      		\r\n               \r\n                  \r\n				  \r\n				  \r\n				  \r\n				  \r\n                     \r\n					    \r\n						\r\n						   \r\n								\r\n    \r\n    \r\n    \r\n        \r\n            \r\n                \r\n                    \r\n                        \r\n                        \r\n                            \r\n                                \r\n                                    \r\n                                        \r\n                                            \r\n                                                \r\n                                                                                                    View as a webpage\r\n                                                \r\n                                            \r\n                                        \r\n                                    \r\n                                \r\n                            \r\n                        \r\n                    \r\n                \r\n            \r\n        \r\n    \r\n\r\n							\r\n						\r\n						\r\n					\r\n                     	\r\n                     	\r\n                     		\r\n                     			\r\n	\r\n	\r\n		\r\n	\r\n	\r\n	\r\n		\r\n			\r\n			\r\n				\r\n   \r\n       &#xA0;\r\n   \r\n\r\n				\r\n					\r\n						\r\n							\r\n	\r\n	\r\n\r\n							\r\n						\r\n						\r\n					\r\n				\r\n				\r\n   \r\n       &#xA0;\r\n   \r\n\r\n			\r\n			\r\n		\r\n	\r\n\r\n		\r\n		\r\n		\r\n		\r\n		\r\n	\r\n\r\n\r\n                     		\r\n                     	\r\n                     	\r\n						\r\n                     		\r\n                                \r\n\r\n    \r\n	\r\n	\r\n	\r\n		\r\n			\r\n			\r\n			\r\n    \r\n    \r\n        \r\n            &#xA0;\r\n        \r\n    \r\n\r\n			\r\n			\r\n			\r\n			\r\n				\r\n					\r\n						\r\n							\r\n    \r\n        \r\n        \r\n    \r\n    \r\n\r\n						\r\n						\r\n						\r\n							\r\n								\r\n									 Welcome to Microsoft Rewards \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n	    \r\n        \r\n\r\n        \r\n\r\n        \r\n		\r\n		\r\n	  \r\n    \r\n\r\n									\r\n								\r\n								\r\n							\r\n						\r\n						\r\n							\r\n    \r\n    \r\n        \r\n            &#xA0;\r\n        \r\n    \r\n\r\n							\r\n								\r\n									\r\n    \r\n\r\n    \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n             Your Microsoft account comes with perks \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n	    \r\n        \r\n\r\n        \r\n\r\n        \r\n		\r\n		\r\n	  \r\n    \r\n\r\n								\r\n							\r\n						\r\n						\r\n							\r\n							\r\n								\r\n									\r\n										\r\n										\r\n											\r\n											\r\n												\r\n													\r\n													Microsoft Rewards is a free feature of your new Microsoft account where you earn points for searching on Bing, playing on Xbox*, or completing fun activities on your Rewards dashboard.&nbsp;\r\n													\r\n												\r\n											\r\n										\r\n										\r\n									\r\n								\r\n							\r\n						\r\n						\r\n							\r\n							\r\n								\r\n									\r\n   \r\n   \r\n   \r\n   \r\n   \r\n   \r\n   \r\n   \r\n      \r\n         \r\n            \r\n               \r\n			    \r\n                    \r\n                        \r\n                  \r\n                     \r\n                        \r\n                           \r\n                           \r\n                              \r\n                                 \r\n                                 \r\n                                 	\r\n                                 \r\n                                 \r\n                                 \r\n                                 \r\n                                    \r\n                                    \r\n                                       \r\n                                          \r\n                                             \r\n                                                \r\n                                                   \r\n    \r\n    \r\n	\r\n        \r\n        \r\n            \r\n                Sign in to get started\r\n                \r\n            \r\n        \r\n	\r\n	\r\n    \r\n\r\n                                                \r\n                                             \r\n                                          \r\n                                       \r\n                                    \r\n                                 \r\n                              \r\n                              \r\n                           \r\n                        \r\n                     \r\n                  \r\n				 \r\n                \r\n               \r\n               \r\n            \r\n         \r\n      \r\n   \r\n\r\n								\r\n							\r\n							\r\n						\r\n						\r\n					\r\n				\r\n			\r\n			\r\n			\r\n			\r\n			\r\n			\r\n			\r\n				\r\n				\r\n			\r\n			\r\n    \r\n    \r\n        \r\n            &#xA0;\r\n        \r\n    \r\n\r\n			\r\n			\r\n		\r\n	\r\n\r\n\r\n    \r\n   \r\n   \r\n      \r\n\r\n   \r\n       \r\n           \r\n               \r\n	\r\n	\r\n\r\n               \r\n           \r\n           \r\n       \r\n   \r\n\r\n\r\n		 	\r\n      \r\n      \r\n      \r\n      \r\n      \r\n		 	\r\n      \r\n   \r\n\r\n\r\n    \r\n	\r\n	\r\n	\r\n		\r\n			\r\n			\r\n			\r\n    \r\n    \r\n        \r\n            &#xA0;\r\n        \r\n    \r\n\r\n			\r\n			\r\n			\r\n			\r\n			\r\n			\r\n				\r\n					\r\n						\r\n							\r\n\r\n							\r\n								\r\n    \r\n    \r\n        \r\n            &#xA0;\r\n        \r\n    \r\n\r\n							\r\n\r\n							\r\n						\r\n						\r\n						\r\n							\r\n								\r\n									\r\n									\r\n										\r\n    \r\n\r\n    \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n             Here’s what’s in it for you \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n	    \r\n        \r\n\r\n        \r\n\r\n        \r\n		\r\n		\r\n	  \r\n    \r\n\r\n									\r\n								\r\n							\r\n						\r\n						\r\n						\r\n						\r\n						\r\n						\r\n							\r\n								\r\n    \r\n        \r\n        \r\n            \r\n                \r\n                &#xA0;\r\n            \r\n        \r\n    \r\n    \r\n\r\n							\r\n							\r\n							\r\n							\r\n						\r\n					\r\n				\r\n			\r\n			\r\n			\r\n			\r\n			\r\n			\r\n			\r\n			\r\n			\r\n		\r\n	\r\n\r\n\r\n    \r\n   \r\n   \r\n   \r\n      \r\n         \r\n            \r\n               \r\n               \r\n                  \r\n    \r\n    \r\n        \r\n            &#xA0;\r\n        \r\n    \r\n\r\n               \r\n            \r\n            \r\n            \r\n            \r\n            \r\n               \r\n                  \r\n                     \r\n                        \r\n                           \r\n                              \r\n                                 \r\n                                    \r\n                                       \r\n                                          \r\n                         \r\n                                             \r\n                                                \r\n                                                   \r\n\r\n   \r\n\r\n   \r\n\r\n   \r\n\r\n	   \r\n      \r\n      \r\n	\r\n		\r\n		\r\n		\r\n			\r\n				\r\n				\r\n					\r\n    \r\n        \r\n        \r\n    \r\n    \r\n\r\n				\r\n				\r\n					\r\n						\r\n							\r\n	\r\n	\r\n\r\n							\r\n						\r\n						\r\n					\r\n				\r\n			\r\n			\r\n				\r\n				\r\n					\r\n						\r\n    \r\n\r\n    \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n            \r\n                \r\n                                            Earn popular gift cards\r\n                    \r\n                \r\n            \r\n            \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n    \r\n\r\n					\r\n				\r\n			\r\n		\r\n		\r\n		\r\n			\r\n			\r\n				\r\n				\r\n					\r\n						\r\n						Earn gift cards to use for shopping at favorite retailers and eateries, or buying games and devices on the Microsoft Digital Store, and more\r\n						\r\n					\r\n				\r\n			\r\n		\r\n		\r\n		\r\n		\r\n			\r\n			\r\n				\r\n    \r\n    \r\n        \r\n            &#xA0;\r\n        \r\n    \r\n\r\n				\r\n					\r\n						\r\n							\r\n							\r\n								\r\n									\r\n   \r\n   \r\n   \r\n   \r\n   \r\n   \r\n   \r\n   \r\n      \r\n         \r\n            \r\n               \r\n			    \r\n                    \r\n                        \r\n                  \r\n                     \r\n                        \r\n                           \r\n                           \r\n                              \r\n                              \r\n                                 \r\n                                 \r\n                                 \r\n                                 \r\n                                 \r\n                                 \r\n                                    \r\n                                    \r\n                                       \r\n                                          \r\n                                             \r\n                                                \r\n                                                   \r\n    \r\n        \r\n        \r\n            \r\n                Start earning&#160;❯\r\n                \r\n            \r\n        \r\n    \r\n    \r\n\r\n                                                \r\n                                             \r\n                                          \r\n                                       \r\n                                    \r\n                                 \r\n                              \r\n                           \r\n                        \r\n                     \r\n                  \r\n				 \r\n                \r\n               \r\n               \r\n            \r\n         \r\n      \r\n   \r\n\r\n								\r\n							\r\n							\r\n							\r\n						\r\n					\r\n				\r\n			\r\n			\r\n			\r\n			\r\n		\r\n		\r\n		\r\n		\r\n		\r\n		\r\n		\r\n		\r\n		\r\n		\r\n			&#xa0;\r\n		\r\n		\r\n	\r\n\r\n      \r\n      \r\n      \r\n      \r\n      \r\n      \r\n      \r\n\r\n   \r\n\r\n\r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                             \r\n                                             \r\n                                                \r\n                                                \r\n                                                   \r\n                                                \r\n                                                &#xA0;\r\n                                             \r\n                                          \r\n                         \r\n                                             \r\n                                                \r\n                                                \r\n                                                   \r\n\r\n   \r\n\r\n   \r\n\r\n   \r\n\r\n	   \r\n      \r\n      \r\n	\r\n		\r\n		\r\n		\r\n			\r\n				\r\n				\r\n					\r\n    \r\n        \r\n        \r\n    \r\n    \r\n\r\n				\r\n				\r\n					\r\n						\r\n							\r\n	\r\n	\r\n\r\n							\r\n						\r\n						\r\n					\r\n				\r\n			\r\n			\r\n				\r\n				\r\n					\r\n						\r\n    \r\n\r\n    \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n            \r\n                \r\n                                            Get other amazing prizes \r\n                    \r\n                \r\n            \r\n            \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n    \r\n\r\n					\r\n				\r\n			\r\n		\r\n		\r\n		\r\n			\r\n			\r\n				\r\n				\r\n					\r\n						\r\n						Use points for free subscriptions, or to enter sweepstakes for a chance to win all sorts of prizes—like cash, a laptop, Xbox, or even vacation packages\r\n						\r\n					\r\n				\r\n			\r\n		\r\n		\r\n		\r\n		\r\n			\r\n			\r\n				\r\n    \r\n    \r\n        \r\n            &#xA0;\r\n        \r\n    \r\n\r\n				\r\n					\r\n						\r\n							\r\n							\r\n								\r\n									\r\n   \r\n   \r\n   \r\n   \r\n   \r\n   \r\n   \r\n   \r\n      \r\n         \r\n            \r\n               \r\n			    \r\n                    \r\n                        \r\n                  \r\n                     \r\n                        \r\n                           \r\n                           \r\n                              \r\n                              \r\n                                 \r\n                                 \r\n                                 \r\n                                 \r\n                                 \r\n                                 \r\n                                    \r\n                                    \r\n                                       \r\n                                          \r\n                                             \r\n                                                \r\n                                                   \r\n    \r\n        \r\n        \r\n            \r\n                See what’s new today&#160;❯\r\n                \r\n            \r\n        \r\n    \r\n    \r\n\r\n                                                \r\n                                             \r\n                                          \r\n                                       \r\n                                    \r\n                                 \r\n                              \r\n                           \r\n                        \r\n                     \r\n                  \r\n				 \r\n                \r\n               \r\n               \r\n            \r\n         \r\n      \r\n   \r\n\r\n								\r\n							\r\n							\r\n							\r\n						\r\n					\r\n				\r\n			\r\n			\r\n			\r\n			\r\n		\r\n		\r\n		\r\n		\r\n		\r\n		\r\n		\r\n		\r\n		\r\n		\r\n			&#xa0;\r\n		\r\n		\r\n	\r\n\r\n      \r\n      \r\n      \r\n      \r\n      \r\n      \r\n      \r\n\r\n   \r\n\r\n\r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                             \r\n                                             \r\n                                          \r\n                                       \r\n                                    \r\n                                 \r\n                              \r\n                           \r\n                        \r\n                     \r\n                  \r\n                  \r\n               \r\n            \r\n            \r\n            \r\n               \r\n                  \r\n    \r\n    \r\n        \r\n            &#xA0;\r\n        \r\n    \r\n\r\n               \r\n               \r\n            \r\n         \r\n      \r\n   \r\n\r\n\r\n    \r\n	\r\n	\r\n	\r\n		\r\n			\r\n			\r\n			\r\n    \r\n    \r\n        \r\n            &#xA0;\r\n        \r\n    \r\n\r\n			\r\n			\r\n			\r\n			\r\n			\r\n			\r\n				\r\n					\r\n						\r\n							\r\n\r\n							\r\n								\r\n    \r\n    \r\n        \r\n            &#xA0;\r\n        \r\n    \r\n\r\n							\r\n\r\n							\r\n						\r\n						\r\n						\r\n							\r\n								\r\n									\r\n									\r\n										\r\n    \r\n\r\n    \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n             Here’s how it works \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n	    \r\n        \r\n\r\n        \r\n\r\n        \r\n		\r\n		\r\n	  \r\n    \r\n\r\n									\r\n								\r\n							\r\n						\r\n						\r\n						\r\n							\r\n								\r\n									\r\n										\r\n										\r\n											\r\n												\r\n												\r\n													\r\n														\r\n														There are so many ways to earn points. Just choose what works for you.\r\n														\r\n													\r\n												\r\n											\r\n										\r\n										\r\n									\r\n								\r\n						\r\n						\r\n						\r\n						\r\n							\r\n								\r\n    \r\n        \r\n        \r\n    \r\n    \r\n\r\n							\r\n							\r\n							\r\n							\r\n						\r\n					\r\n				\r\n			\r\n			\r\n			\r\n			\r\n			\r\n			\r\n			\r\n			\r\n			\r\n		\r\n	\r\n\r\n\r\n    \r\n   \r\n   \r\n   \r\n      \r\n         \r\n            \r\n            \r\n            \r\n            \r\n            \r\n               \r\n                  \r\n                     \r\n                        \r\n                           \r\n                              \r\n                                 \r\n                                    \r\n                                       \r\n                                          \r\n                         \r\n                                             \r\n                                                \r\n                                                   \r\n\r\n   \r\n\r\n   \r\n\r\n   \r\n\r\n	   \r\n      \r\n      \r\n      \r\n      \r\n	\r\n		\r\n		\r\n		\r\n			\r\n				\r\n					\r\n					\r\n						\r\n							\r\n								\r\n									\r\n									\r\n										\r\n											\r\n												\r\n	\r\n	\r\n\r\n												\r\n											\r\n											\r\n										\r\n									\r\n									\r\n								\r\n							\r\n							\r\n								\r\n							\r\n							&nbsp;\r\n						\r\n						\r\n							\r\n								\r\n								\r\n								\r\n									\r\n    \r\n        \r\n        \r\n            \r\n                \r\n                &#xA0;\r\n            \r\n        \r\n    \r\n    \r\n\r\n									\r\n										\r\n											\r\n    \r\n\r\n    \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n            \r\n                \r\n                                            Start at your dashboard\r\n                    \r\n                \r\n            \r\n            \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n    \r\n\r\n										\r\n									\r\n								\r\n								\r\n									\r\n    \r\n    \r\n        \r\n            &#xA0;\r\n        \r\n    \r\n\r\n									\r\n										\r\n											\r\n    \r\n\r\n    \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n            \r\n            \r\n                 Rewards just made for you \r\n            \r\n        \r\n\r\n        \r\n    \r\n\r\n										\r\n									\r\n								\r\n								\r\n									\r\n									\r\n										\r\n										\r\n											\r\n												\r\n												Earn points right on your personalized dashboard with fun daily quizzes, trivia, and more\r\n												\r\n											\r\n										\r\n									\r\n								\r\n								\r\n								\r\n								\r\n									\r\n									\r\n										\r\n    \r\n    \r\n        \r\n            &#xA0;\r\n        \r\n    \r\n\r\n										\r\n											\r\n												\r\n													\r\n													\r\n														\r\n															\r\n   \r\n   \r\n   \r\n   \r\n   \r\n   \r\n   \r\n   \r\n      \r\n         \r\n            \r\n               \r\n			    \r\n                    \r\n                        \r\n                  \r\n                     \r\n                        \r\n                           \r\n                           \r\n                              \r\n                              \r\n                                 \r\n                                 \r\n                                 \r\n                                 \r\n                                 \r\n                                 \r\n                                    \r\n                                    \r\n                                       \r\n                                          \r\n                                             \r\n                                                \r\n                                                   \r\n    \r\n        \r\n        \r\n            \r\n                Go to your dashboard&#160;❯\r\n                \r\n            \r\n        \r\n    \r\n    \r\n\r\n                                                \r\n                                             \r\n                                          \r\n                                       \r\n                                    \r\n                                 \r\n                              \r\n                           \r\n                        \r\n                     \r\n                  \r\n				 \r\n                \r\n               \r\n               \r\n            \r\n         \r\n      \r\n   \r\n\r\n														\r\n													\r\n													\r\n													\r\n												\r\n											\r\n										\r\n									\r\n									\r\n									\r\n									\r\n								\r\n								\r\n								\r\n								\r\n								\r\n								\r\n								\r\n								\r\n								\r\n    \r\n    \r\n        \r\n            &#xA0;\r\n        \r\n    \r\n\r\n								\r\n							\r\n						\r\n						\r\n					\r\n					\r\n				\r\n			\r\n		\r\n		\r\n	\r\n\r\n      \r\n      \r\n      \r\n      \r\n      \r\n\r\n   \r\n\r\n\r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                             \r\n                                             \r\n                                          \r\n                                       \r\n                                    \r\n                                 \r\n                              \r\n                           \r\n                        \r\n                     \r\n                  \r\n                  \r\n               \r\n            \r\n            \r\n            \r\n         \r\n      \r\n   \r\n\r\n\r\n    \r\n   \r\n   \r\n   \r\n      \r\n         \r\n            \r\n               \r\n               \r\n                  \r\n    \r\n    \r\n        \r\n            &#xA0;\r\n        \r\n    \r\n\r\n               \r\n            \r\n            \r\n            \r\n            \r\n            \r\n               \r\n                  \r\n                     \r\n                        \r\n                           \r\n                              \r\n                                 \r\n                                    \r\n                                       \r\n                                          \r\n                         \r\n                                             \r\n                                                \r\n                                                   \r\n\r\n   \r\n\r\n   \r\n\r\n   \r\n\r\n	   \r\n      \r\n      \r\n      \r\n	\r\n		\r\n		\r\n			\r\n				\r\n					\r\n						\r\n							&#xA0;\r\n						\r\n					\r\n				\r\n			\r\n			\r\n    \r\n    \r\n        \r\n            &#xA0;\r\n        \r\n    \r\n\r\n		\r\n		\r\n			\r\n				\r\n					\r\n					\r\n						\r\n							\r\n								\r\n								\r\n									&nbsp;\r\n								\r\n								\r\n								\r\n									\r\n    \r\n        \r\n        \r\n            \r\n                \r\n                &#xA0;\r\n            \r\n        \r\n    \r\n    \r\n\r\n									\r\n										\r\n											\r\n    \r\n\r\n    \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n            \r\n                \r\n                                            Search on Bing\r\n                    \r\n                \r\n            \r\n            \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n    \r\n\r\n										\r\n									\r\n								\r\n								\r\n									\r\n    \r\n    \r\n        \r\n            &#xA0;\r\n        \r\n    \r\n\r\n									\r\n										\r\n											\r\n    \r\n\r\n    \r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n\r\n        \r\n            \r\n            \r\n                 With your PC and mobile \r\n            \r\n        \r\n\r\n        \r\n    \r\n\r\n										\r\n									\r\n								\r\n								\r\n									\r\n									\r\n										\r\n										\r\n											\r\n												\r\n												To earn points, make Bing your default search engine. You can also use the Windows search box to keep earning more*.\r\n												\r\n											\r\n										\r\n									\r\n								\r\n								\r\n								\r\n								\r\n									\r\n									\r\n										\r\n    \r\n    \r\n        \r\n            &#xA0;\r\n        \r\n    \r\n\r\n										\r\n											\r\n												\r\n													\r\n													\r\n														\r\n															\r\n   \r\n   \r\n   \r\n   \r\n   \r\n   \r\n   \r\n   \r\n      \r\n         \r\n            \r\n               \r\n			    \r\n                    \r\n                        \r\n                  \r\n                     \r\n                        \r\n                           \r\n                           \r\n                              \r\n                              \r\n                                 \r\n                                 \r\n                                 \r\n                                 \r\n                                 \r\n                                 \r\n                                    \r\n                                    \r\n                                       \r\n                                          \r\n                                             \r\n                                                \r\n                                                   \r\n    \r\n        \r\n        \r\n            \r\n                Start searching&#160;❯\r\n                \r\n            \r\n        \r\n    \r\n    \r\n\r\n                                                \r\n                                             \r\n                                          \r\n                                       \r\n                                    \r\n                                 \r\n                              \r\n                           \r\n                        \r\n                     \r\n                  \r\n				 \r\n                \r\n               \r\n               \r\n            \r\n         \r\n      \r\n   \r\n\r\n														\r\n													\r\n													\r\n													\r\n												\r\n											\r\n										\r\n									\r\n									\r\n									\r\n									\r\n								\r\n								\r\n								\r\n								\r\n								\r\n								\r\n								\r\n								\r\n								\r\n    \r\n    \r\n        \r\n            &#xA0;\r\n        \r\n    \r\n\r\n								\r\n							\r\n						\r\n						\r\n							\r\n							\r\n								\r\n									\r\n									\r\n										\r\n											\r\n												\r\n	\r\n	\r\n\r\n												\r\n											\r\n											\r\n										\r\n									\r\n									\r\n								\r\n							\r\n						\r\n					\r\n					\r\n				\r\n			\r\n		\r\n		\r\n	\r\n\r\n      \r\n      \r\n      \r\n      \r\n      \r\n      \r\n\r\n   \r\n\r\n\r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                                \r\n                                             \r\n                                             \r\n                                          \r\n                                       \r\n                                    \r\n                                 \r\n                              \r\n                           \r\n                        \r\n                     \r\n                  \r\n                  \r\n               \r\n            \r\n            \r\n            \r\n         \r\n      \r\n   \r\n\r\n\r\n    \r\n\r\n    \r\n\r\n    \r\n		\r\n    \r\n\r\n\r\n\r\n    \r\n\r\n    \r\n\r\n    \r\n		\r\n    \r\n\r\n\r\n\r\n    \r\n\r\n    \r\n\r\n    \r\n		\r\n    \r\n\r\n\r\n\r\n    \r\n\r\n    \r\n\r\n    \r\n		\r\n    \r\n\r\n\r\n\r\n    \r\n\r\n    \r\n\r\n    \r\n		\r\n    \r\n\r\n\r\n\r\n    \r\n\r\n    \r\n\r\n    \r\n		\r\n    \r\n\r\n\r\n\r\n    \r\n   \r\n   \r\n\r\n    \r\n        \r\n		\r\n	\r\n	\r\n	\r\n	\r\n	\r\n		\r\n			\r\n			\r\n				&#xA0;\r\n			\r\n			\r\n				\r\n					\r\n						\r\n							\r\n								\r\n									\r\n									\r\n										\r\n											\r\n												Discover more about Microsoft Rewards\r\n											\r\n										\r\n										\r\n											\r\n												\r\n													\r\n													\r\n														\r\n															\r\n																\r\n																\r\n																	\r\n																		\r\n																			\r\n																			\r\n																				\r\n																				\r\n																				\r\n																				\r\n																					\r\n																						\r\n																						\r\n																							\r\n    \r\n        \r\n        \r\n            \r\n                Let’s go&#160;❯\r\n                \r\n            \r\n        \r\n    \r\n    \r\n\r\n																						\r\n																						\r\n																					\r\n																				\r\n																			\r\n																			\r\n																		\r\n																	\r\n																\r\n																\r\n															\r\n														\r\n													\r\n													\r\n												\r\n											\r\n										\r\n									\r\n									\r\n										\r\n										\r\n											&#xA0;\r\n										\r\n										\r\n											\r\n												\r\n													\r\n													\r\n														\r\n															\r\n																\r\n																\r\n																	\r\n																		\r\n																			\r\n																			\r\n																				\r\n																				\r\n																				\r\n																				\r\n																					\r\n																						\r\n																						\r\n																							\r\n    \r\n        \r\n        \r\n            \r\n                Let’s go&#160;❯\r\n                \r\n            \r\n        \r\n    \r\n    \r\n\r\n																						\r\n																						\r\n																					\r\n																				\r\n																			\r\n																			\r\n																		\r\n																	\r\n																\r\n																\r\n															\r\n														\r\n													\r\n													\r\n												\r\n											\r\n										\r\n									\r\n									\r\n									\r\n								\r\n							\r\n						\r\n					\r\n				\r\n			\r\n			\r\n				&#xA0;\r\n			\r\n			\r\n		\r\n	\r\n\r\n    \r\n\r\n\r\n    \r\n   \r\n   \r\n   \r\n      \r\n         \r\n         \r\n            \r\n    \r\n        \r\n        \r\n            \r\n                \r\n                &#xA0;\r\n            \r\n        \r\n    \r\n    \r\n\r\n         \r\n            \r\n               \r\n                  \r\n                     \r\n                        &#xA0;\r\n                     \r\n                  \r\n               \r\n            \r\n         \r\n            \r\n    \r\n        \r\n        \r\n    \r\n    \r\n\r\n         \r\n         \r\n      \r\n   \r\n\r\n\r\n\r\n    \r\n   \r\n   \r\n   \r\n      \r\n         \r\n			\r\n               &#xA0;\r\n            \r\n            \r\n               \r\n                  \r\n                     \r\n                        \r\n                           \r\n *Microsoft Rewards&nbsp;Terms and Conditions. Point earning limits apply; not all earning opportunities are available in each market. Must be logged in with your Microsoft account to accumulate Rewards points. Microsoft Rewards is available&nbsp;in these markets. Learn more in the&nbsp;frequently asked questions&nbsp;page.&nbsp;Rewards with Xbox through gameplay (including Game Pass Quests) are available to users age 18+ with a Microsoft account in select markets. Minimum playtime required.\r\n\r\n                        \r\n                     \r\n                  \r\n               \r\n            \r\n            \r\n               &#xA0;\r\n            \r\n         \r\n      \r\n   \r\n\r\n\r\n    \r\n\r\n    \r\n\r\n    \r\n		\r\n    \r\n\r\n\r\n\r\n    \r\n\r\n    \r\n\r\n    \r\n		\r\n    \r\n\r\n\r\n\r\n    \r\n\r\n    \r\n\r\n    \r\n		\r\n    \r\n\r\n\r\n\r\n    \r\n\r\n    \r\n\r\n    \r\n		\r\n    \r\n\r\n\r\n\r\n    \r\n\r\n    \r\n\r\n    \r\n		\r\n    \r\n\r\n\r\n\r\n    \r\n\r\n    \r\n\r\n    \r\n		\r\n    \r\n\r\n\r\n\r\n\r\n\r\n\r\n                            \r\n                     	\r\n\r\n                        \r\n\r\n                        \r\n                     		\r\n                                \r\n\r\n\r\n\r\n\r\n                            \r\n                     	\r\n\r\n                        \r\n                     		\r\n                 				\r\n   \r\n\r\n   \r\n   \r\n      \r\n         \r\n            \r\n               \r\n    \r\n    \r\n        \r\n            &#xA0;\r\n        \r\n    \r\n\r\n            \r\n			\r\n			  \r\n				 You are receiving this message because you are subscribed to\r\nMicrosoft Transactional\r\n			  \r\n		   \r\n            \r\n               &#xA0;\r\n            \r\n            \r\n               \r\n                  This email was sent from an unmonitored inbox.\r\n\r\n               \r\n            \r\n            \r\n               &#xA0;\r\n            \r\n            \r\n               \r\n                  Copyright 2025 Microsoft Corporation.\r\n               \r\n            \r\n            \r\n               \r\n                  \r\n                  \r\n                  \r\n                  \r\n                  \r\n	\r\n\r\n\r\n\r\n\r\n\r\n   \r\n   	&#xA0;\r\n   \r\n   \r\n   \r\n     \r\n    \r\n   \r\n      \r\n         Privacy Statement\r\n      \r\n   \r\n   \r\n   \r\n      &#xA0;\r\n   \r\n   \r\n      \r\n			\r\n				\r\n			\r\n         Microsoft Corporation,&#xA0;One Microsoft Way,&#xA0;Redmond, WA 98052\r\n         \r\n      \r\n   \r\n   \r\n   \r\n     \r\n       \r\n     \r\n\r\n\r\n\r\n	\r\n\r\n               \r\n                        \r\n            \r\n               \r\n    \r\n    \r\n        \r\n            &#xA0;\r\n        \r\n    \r\n\r\n               \r\n                  \r\n                     \r\n                          \r\n                                \r\n                                       \r\n	\r\n	\r\n\r\n                                         \r\n                                 \r\n                                  \r\n							\r\n                       \r\n                  \r\n               \r\n            \r\n            \r\n    \r\n    \r\n        \r\n            &#xA0;\r\n        \r\n    \r\n\r\n         \r\n      \r\n   \r\n\r\n                 			\r\n                 		\r\n                  		\r\n\r\n                     \r\n                  \r\n                \r\n              \r\n      		\r\n      	 \r\n      \r\n      \r\n      &nbsp;\r\n	\r\n\r\n\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-07-08 00:32:51','2025-12-09 19:13:24','2025-12-09 19:13:24','2025-12-09 19:13:24',NULL,NULL,NULL),
(435,4,'<673F4FC6-BF87-4CB9-BE76-3D0674DE0F6D@bayfrontcapitalllc.com>',NULL,NULL,'Re: RRSL and other Innovations','brian@bayfrontcapitalllc.com','Brian Stufflebean','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body dir=\"auto\">Sounds good.<br id=\"lineBreakAtBeginningOfSignature\"><div dir=\"ltr\"><div class=\"\"><span style=\"font-size: 17pt;\"><br></span></div><div class=\"\"><div class=\"\"><div><span class=\"\" style=\"background-color: rgba(255, 255, 255, 0);\">Best Regards,&nbsp;</span></div><div><span class=\"\" style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div><span class=\"\" style=\"background-color: rgba(255, 255, 255, 0);\">Brian C. Stufflebean, CEO<br class=\"\"><b class=\"\">Bayfront Capital, LLC</b><br class=\"\"><span class=\"\"><a href=\"tel:(941)545-4153\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"0/2\" style=\"text-decoration-color: rgba(128, 128, 128, 0.38);\">(941)545-4153</a>&nbsp;Cell</span></span></div><div><span style=\"background-color: rgba(255, 255, 255, 0);\"><span class=\"\"><a href=\"tel:(866)896-2423\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"0/3\" style=\"text-decoration-color: rgba(128, 128, 128, 0.38);\">(866)896-2423</a>&nbsp;Fax<br class=\"\"><a href=\"mailto:brian@bayfrontcapitalllc.com\" class=\"\">brian@bayfrontcapitalllc.com</a><br class=\"\"><a href=\"http://www.bayfrontcapitalllc.com/\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"link\" x-apple-data-detectors-result=\"0/5\" style=\"text-decoration-color: rgba(128, 128, 128, 0.38);\">www.bayfrontcapitalllc.com</a></span><br class=\"\">&nbsp; &nbsp; &nbsp;&nbsp;<br class=\"\"><br class=\"\"></span></div><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"Apple-interchange-newline\"><br></span><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"Apple-interchange-newline\"><br class=\"Apple-interchange-newline\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><b class=\"\">CONFIDENTIALITY NOTICE / NOTICE OF&nbsp;<u class=\"\">NOT A REGISTERED BROKER/DEALER:</u></b><span class=\"\">&nbsp;Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with&nbsp;FINRA. Nor does&nbsp;it provide tax or investment advice. &nbsp;Any references made to any transaction in any communication is being made as a business consultant. &nbsp; This is not a&nbsp;solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law.&nbsp;This communication&nbsp;is confidential and intended only for the intended&nbsp;recipient. &nbsp;If you are not the intended recipient, you&nbsp;may not copy, disclose, or distribute this message&nbsp;to anyone else; any such actions may be unlawful. If you have received this communication in error,&nbsp;please contact the sender of the message to inform him or her of the error.</span></span></div><div><span class=\"\"><br></span></div></div></div></div><div class=\"\"><span style=\"font-size: 17pt;\"><br></span></div><div class=\"\"><span style=\"font-size: 17pt;\">Sent from my iPhone</span></div></div><div dir=\"ltr\"><br><blockquote type=\"cite\">On Jul 7, 2025, at 7:43 PM, Rick &lt;rick@mavrix.one&gt; wrote:<br><br></blockquote></div><blockquote type=\"cite\"><div dir=\"ltr\">﻿This list of docs came from the Captain who wants 1000 $750 drones. &nbsp; He got these from Strategic Logix. &nbsp;<div>I am talking to my boys back at RIT and they said they could do them closer to $500 or so thru GetFPV… so I’ll have them work on that and I should have a proposal&nbsp;together Wednesday or Thursday.&nbsp;</div><div><br></div><div>Talk soon,</div><div>Rick<br> <br><div class=\"gmail_signature\">\r\n        <title></title>\r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div><div><img src=\"cid:Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height: 11px;\" data-unique-identifier=\"\"></div>\r\n     \r\n</div> <p class=\"gmail_quote\" style=\"color:#000;\">On July 7, 2025 at 6:47:25 PM, Shorkey-Chacon, Paul R CPT USARMY 1 ID 2 ABCT (USA) (<a href=\"mailto:paul.r.shorkey-chacon.mil@army.mil\">paul.r.shorkey-chacon.mil@army.mil</a>) wrote:</p> <blockquote type=\"cite\" class=\"gmail_quote\"><span><div><div></div><div>\r\n\r\n\r\n\r\n\r\n\r\n\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<br></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Andrew\r\nValkenburg &lt;<a href=\"mailto:avalkenburg@strategic-logix.com\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"link\" x-apple-data-detectors-result=\"5\">avalkenburg@strategic-logix.com</a>&gt;<br>\r\n<b>Sent:</b> Monday, May 19, 2025 10:13:57 PM<br>\r\n<b>To:</b> Shorkey-Chacon, Paul R CPT USARMY 1 ID 2 ABCT (USA)\r\n&lt;<a href=\"mailto:Paul.r.shorkey-chacon.mil@army.mil\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"link\" x-apple-data-detectors-result=\"7\">Paul.r.shorkey-chacon.mil@army.mil</a>&gt;; Aaron Smith\r\n&lt;<a href=\"mailto:asmith@strategic-logix.com\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"link\" x-apple-data-detectors-result=\"9\">asmith@strategic-logix.com</a>&gt;<br>\r\n<b>Subject:</b> RRSL and other Innovations</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div>Paul,</div>\r\n<div><br></div>\r\n<div>As promised (sorry I got dragged out to something as I got\r\ninto the hotel).</div>\r\n<div><br></div>\r\n<div>1. RRSL-X Flyer</div>\r\n<div>2. RRSL Cost-Benefit Analysis and Info Packet (this is from\r\nbefore the RRSL-X)</div>\r\n<div>3. TIC Intro Brief for 1CD (may be helpful)</div>\r\n<div>4. RRSL Build Manual and Video (cool to show off maybe?)</div>\r\n<div><br></div>\r\n<div>The good innovations content is in the TIC brief. The RRSL is\r\nso popular right now all of our content coming out is on that\r\nlol.</div>\r\n<div><br></div>\r\n<span class=\"x_gmail_signature_prefix\">--</span><br>\r\n<div dir=\"ltr\" class=\"x_gmail_signature\" data-smartmail=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p><font color=\"#000000\"><b><a href=\"https://strategic-logix.com/\" target=\"_blank\">VISIT OUR WEBSITE</a></b></font></p>\r\n<p><strong><font color=\"#000000\"><br></font></strong></p>\r\n<p><strong><font color=\"#000000\">Sincerely,</font></strong></p>\r\n<p><font color=\"#000000\">Andrew Valkenburg<br>\r\nChief Operations Officer, Strategic Logix LLC<br>\r\n<a href=\"tel:484-225-9132\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"10/1\" style=\"color: currentcolor; text-decoration-color: rgba(128, 128, 128, 0.38);\">484-225-9132</a><br>\r\n<a rel=\"noopener\">avalkenburg@strategic-logix.com</a></font></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n\r\n<hr></div></div></span></blockquote>\r\n\r\n</div><div>&lt;RRSL X Flyer.pdf&gt;</div><div>&lt;RRSL Series Strategic Logix.pdf&gt;</div><div>&lt;Tic Brief v3.pdf&gt;</div><div>&lt;RRSL-XR 7_ Build Manual (3).pdf&gt;</div></div></blockquote></body></html>','Sounds good.Best Regards,&nbsp;Brian C. Stufflebean, CEOBayfront Capital, LLC(941)545-4153&nbsp;Cell(866)896-2423&nbsp;Faxbrian@bayfrontcapitalllc.comwww.bayfrontcapitalllc.com&nbsp; &nbsp; &nbsp;&nbsp;CONFIDENTIALITY NOTICE / NOTICE OF&nbsp;NOT A REGISTERED BROKER/DEALER:&nbsp;Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with&nbsp;FINRA. Nor does&nbsp;it provide tax or investment advice. &nbsp;Any references made to any transaction in any communication is being made as a business consultant. &nbsp; This is not a&nbsp;solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law.&nbsp;This communication&nbsp;is confidential and intended only for the intended&nbsp;recipient. &nbsp;If you are not the intended recipient, you&nbsp;may not copy, disclose, or distribute this message&nbsp;to anyone else; any such actions may be unlawful. If you have received this communication in error,&nbsp;please contact the sender of the message to inform him or her of the error.Sent from my iPhoneOn Jul 7, 2025, at 7:43 PM, Rick &lt;rick@mavrix.one&gt; wrote:﻿This list of docs came from the Captain who wants 1000 $750 drones. &nbsp; He got these from Strategic Logix. &nbsp;I am talking to my boys back at RIT and they said they could do them closer to $500 or so thru GetFPV… so I’ll have them work on that and I should have a proposal&nbsp;together Wednesday or Thursday.&nbsp;Talk soon,Rick \r\n        \r\n     \r\n    Rick Mislan, PhDhttps://mavrix.one\r\n     \r\n On July 7, 2025 at 6:47:25 PM, Shorkey-Chacon, Paul R CPT USARMY 1 ID 2 ABCT (USA) (paul.r.shorkey-chacon.mil@army.mil) wrote: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFrom: Andrew\r\nValkenburg &lt;avalkenburg@strategic-logix.com&gt;\r\nSent: Monday, May 19, 2025 10:13:57 PM\r\nTo: Shorkey-Chacon, Paul R CPT USARMY 1 ID 2 ABCT (USA)\r\n&lt;Paul.r.shorkey-chacon.mil@army.mil&gt;; Aaron Smith\r\n&lt;asmith@strategic-logix.com&gt;\r\nSubject: RRSL and other Innovations\r\n&nbsp;\r\n\r\n\r\n\r\nPaul,\r\n\r\nAs promised (sorry I got dragged out to something as I got\r\ninto the hotel).\r\n\r\n1. RRSL-X Flyer\r\n2. RRSL Cost-Benefit Analysis and Info Packet (this is from\r\nbefore the RRSL-X)\r\n3. TIC Intro Brief for 1CD (may be helpful)\r\n4. RRSL Build Manual and Video (cool to show off maybe?)\r\n\r\nThe good innovations content is in the TIC brief. The RRSL is\r\nso popular right now all of our content coming out is on that\r\nlol.\r\n\r\n--\r\n\r\n\r\nVISIT OUR WEBSITE\r\n\r\nSincerely,\r\nAndrew Valkenburg\r\nChief Operations Officer, Strategic Logix LLC\r\n484-225-9132\r\navalkenburg@strategic-logix.com\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&lt;RRSL X Flyer.pdf&gt;&lt;RRSL Series Strategic Logix.pdf&gt;&lt;Tic Brief v3.pdf&gt;&lt;RRSL-XR 7_ Build Manual (3).pdf&gt;',0,0,0,0,0,0,'2025-07-08 14:47:54','2025-12-09 19:13:24','2025-12-09 19:13:24','2025-12-09 19:13:24',NULL,NULL,NULL),
(436,4,'<AA41DCA6-4E23-476C-BD10-E0B0BAD6DD16@bayfrontcapitalllc.com>',NULL,NULL,'Follow Up - Due Diligence Checklist','brian@bayfrontcapitalllc.com','Brian Stufflebean','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"><div><div><span></span><meta charset=\"UTF-8\"><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br class=\"Apple-interchange-newline\"><br class=\"Apple-interchange-newline\"><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><b>CONFIDENTIALITY NOTICE / NOTICE&nbsp;OF&nbsp;NOT A REGISTERED&nbsp;BROKER/DEALER:</b><span style=\"font-weight: 400;\">&nbsp;Bayfront Capital&nbsp;LLC, nor its’ affiliates are registered as&nbsp;a Broker/Dealer, nor registered with&nbsp;FINRA. Nor does&nbsp;it provide tax or&nbsp;investment advice.&nbsp;&nbsp;Any references&nbsp;made to any transaction in any&nbsp;communication is being made as a&nbsp;business consultant.&nbsp;&nbsp;&nbsp;This is not a&nbsp;solicitation nor offer of any type and any&nbsp;reference to any proposed transaction&nbsp;of any type is void where prohibited by&nbsp;law.&nbsp;This communication&nbsp;is confidential&nbsp;and intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient, you&nbsp;may not copy, disclose, or&nbsp;distribute this message&nbsp;to anyone else;&nbsp;any such actions may be unlawful. If&nbsp;you have received this communication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the message to&nbsp;inform him or her of the&nbsp;error.</span></div>\r\n</div>\r\n<br></div></body></html>','\r\nGood afternoon Jason, \r\n\r\nWe appreciated your time on the Zoom call yesterday.  Per our conversation, attached you will find a diligence checklist that is a typical starting point for start of out review. It may or may not be fully comprehensive and there may be other items requested along the way.  \r\n\r\nWe look forward to hearing back and if it is easier for you to create a folder in your Google Drive account, that is fine as well. Please include a signed copy of the Due Diligence document as well. \r\n\r\nPlease confirm receipt of this email and also, please provide me with your Direct cell phone number.  My cell number is listed below and you can feel free to call or text Rick or me with any questions you may have.  \r\n\r\n\r\n\r\n￼\r\n \r\nBest Regards, \r\n\r\n\r\nBrian C. Stufflebean, CEO\r\nBayfront Capital, LLC\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\nbrian@bayfrontcapitalllc.com\r\nwww.bayfrontcapitalllc.com\r\n      \r\n\r\n\r\n￼\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER: Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-07-08 21:27:41','2025-12-09 19:13:25','2025-12-09 19:13:25','2025-12-09 19:13:25',NULL,NULL,NULL),
(437,4,' <BL3PR20MB492441CF6DA00C8DD64255C2AF4EA@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: Follow Up - Due Diligence Checklist','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n</head>\r\n<body>\r\n<div>\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" dir=\"ltr\">\r\nHello Brian,</div>\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" dir=\"ltr\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" dir=\"ltr\">\r\nThank you for sending this over, I will have this package completed and sent over to you guys shortly. My direct cell phone number is (925) 787-0387 as well. Looking forward to speaking again soon.</div>\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" dir=\"ltr\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" dir=\"ltr\">\r\nRegards,</div>\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" dir=\"ltr\">\r\nJason Blick</div>\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" dir=\"ltr\">\r\nFounder/CEO</div>\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" dir=\"ltr\">\r\nCorvex Systems</div>\r\n</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"ms-outlook-mobile-signature\">\r\n<div></div>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Brian Stufflebean &lt;brian@bayfrontcapitalllc.com&gt;<br>\r\n<b>Sent:</b> Tuesday, July 8, 2025 2:27:41 PM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Cc:</b> Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Follow Up - Due Diligence Checklist</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"line-break:after-white-space\">\r\n<div><span style=\"font-size:14px\"><br>\r\n</span></div>\r\n<span style=\"font-size:14px\">Good afternoon Jason,&nbsp;</span><br>\r\n<div><span style=\"font-size:14px\"><br>\r\n</span></div>\r\n<div><span style=\"font-size:14px\">We appreciated your time on the Zoom call yesterday. &nbsp;Per our conversation, attached you will find a diligence checklist that is a typical starting point for start of out review. It may or may not be fully comprehensive and\r\n there may be other items requested along the way. &nbsp;</span></div>\r\n<div><span style=\"font-size:14px\"><br>\r\n</span></div>\r\n<div><span style=\"font-size:14px\">We look forward to hearing back and if it is easier for you to create a folder in your Google Drive account, that is fine as well. Please include a signed copy of the Due Diligence document as well.&nbsp;</span></div>\r\n<div><span style=\"font-size:14px\"><br>\r\n</span></div>\r\n<div><span style=\"font-size:14px\"><i><b>Please confirm receipt of this email and also, please provide me with your Direct cell phone number. &nbsp;My cell number is listed below and you can feel free to call or text Rick or me with any questions you may have.\r\n</b></i>&nbsp;</span></div>\r\n<div><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div></div>\r\n</div>\r\n<div style=\"line-break:after-white-space\">\r\n<div></div>\r\n<div>&nbsp;<br>\r\n<div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\nBest Regards,&nbsp;<br>\r\n<br>\r\n<br>\r\nBrian C. Stufflebean, CEO<br>\r\n<b>Bayfront Capital, LLC</b><br>\r\n(941)545-4153 Direct<br>\r\n(866)896-2423 Fax<br>\r\nbrian@bayfrontcapitalllc.com<br>\r\nwww.bayfrontcapitalllc.com<br>\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>\r\n<br>\r\n</div>\r\n<span style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\"></span><br class=\"x_x_Apple-interchange-newline\" style=\"color:rgb(0,0,0); font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none\">\r\n<span style=\"color:rgb(0,0,0); font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none\"></span><span></span></div>\r\n</div>\r\n</div>\r\n<div style=\"line-break:after-white-space\">\r\n<div>\r\n<div><span></span>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<span><br class=\"x_x_Apple-interchange-newline\">\r\n<br class=\"x_x_Apple-interchange-newline\">\r\n<br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<b>CONFIDENTIALITY NOTICE / NOTICE&nbsp;OF&nbsp;NOT A REGISTERED&nbsp;BROKER/DEALER:</b><span style=\"font-weight:400\">&nbsp;Bayfront Capital&nbsp;LLC, nor its’ affiliates are registered as&nbsp;a Broker/Dealer, nor registered with&nbsp;FINRA. Nor does&nbsp;it provide tax or&nbsp;investment advice.&nbsp;&nbsp;Any\r\n references&nbsp;made to any transaction in any&nbsp;communication is being made as a&nbsp;business consultant.&nbsp;&nbsp;&nbsp;This is not a&nbsp;solicitation nor offer of any type and any&nbsp;reference to any proposed transaction&nbsp;of any type is void where prohibited by&nbsp;law.&nbsp;This communication&nbsp;is\r\n confidential&nbsp;and intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient, you&nbsp;may not copy, disclose, or&nbsp;distribute this message&nbsp;to anyone else;&nbsp;any such actions may be unlawful. If&nbsp;you have received this communication&nbsp;in error,&nbsp;please\r\n contact the sender of&nbsp;the message to&nbsp;inform him or her of the&nbsp;error.</span></div>\r\n</div>\r\n<br>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','Hello Brian,\r\n\r\nThank you for sending this over, I will have this package completed and sent over to you guys shortly. My direct cell phone number is (925) 787-0387 as well. Looking forward to speaking again soon.\r\n\r\nRegards,\r\nJason Blick\r\nFounder/CEO\r\nCorvex Systems\r\n\r\n________________________________\r\nFrom: Brian Stufflebean <brian@bayfrontcapitalllc.com>\r\nSent: Tuesday, July 8, 2025 2:27:41 PM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nCc: Rick Mislan <rick@mavrix.one>\r\nSubject: Follow Up - Due Diligence Checklist\r\n\r\n\r\nGood afternoon Jason,\r\n\r\nWe appreciated your time on the Zoom call yesterday.  Per our conversation, attached you will find a diligence checklist that is a typical starting point for start of out review. It may or may not be fully comprehensive and there may be other items requested along the way.\r\n\r\nWe look forward to hearing back and if it is easier for you to create a folder in your Google Drive account, that is fine as well. Please include a signed copy of the Due Diligence document as well.\r\n\r\nPlease confirm receipt of this email and also, please provide me with your Direct cell phone number.  My cell number is listed below and you can feel free to call or text Rick or me with any questions you may have.\r\n\r\n\r\n\r\n\r\nBest Regards,\r\n\r\n\r\nBrian C. Stufflebean, CEO\r\nBayfront Capital, LLC\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\nbrian@bayfrontcapitalllc.com\r\nwww.bayfrontcapitalllc.com\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER: Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-07-08 22:03:52','2025-12-09 19:13:25','2025-12-09 19:13:25','2025-12-09 19:13:25',NULL,NULL,NULL),
(438,4,' <BN8P111MB21270DC6E46F19D25205D935D349A@BN8P111MB2127.NAMP111.PROD.OUTLOOK.COM>',NULL,NULL,'Fw: CARB Packet - [UNCLASSIFIED]','paul.r.shorkey-chacon.mil@army.mil','\"Shorkey-Chacon, Paul R CPT USARMY 1 ID 2 ABCT (USA)\"','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div id=\"x_oct-marking-header-unclassified\" style=\"border-bottom: 1em; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<b>UNCLASSIFIED</b></div>\r\n<div id=\"x_ms-marking-body\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHere is everything for the 1000 order.</div>\r\n<div id=\"x_Signature\">\r\n<div style=\"background-color: rgb(255, 255, 255); font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nVery Respectfully,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nPaul Shorkey-Chacon</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nCPT, FA</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nDeputy Innovation Officer</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;\">\r\n<span style=\"font-size: 14pt; color: rgb(237, 92, 87);\">1</span><span style=\"font-size: 12pt; color: rgb(0, 0, 0);\"><sup>st</sup>&nbsp;Infantry Division</span></div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n✉ NIPR: paul.r.shorkey-chacon.mil@army.mil</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n📱 Cell: (443) 889-6741</div>\r\n<div style=\"font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"x_oct-marking-footer-unclassified\" style=\"border-top: 1em;\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<b>UNCLASSIFIED</b></div>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<hr style=\"display: inline-block; width: 98%;\">\r\n<div id=\"divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Shorkey-Chacon, Paul R CPT USARMY 1 ID 2 ABCT (USA) &lt;paul.r.shorkey-chacon.mil@army.mil&gt;<br>\r\n<b>Sent:</b>&nbsp;Tuesday, May 20, 2025 10:05 AM<br>\r\n<b>To:</b>&nbsp;Hardman, Matthew J BG USARMY 1 ID (USA) &lt;matthew.j.hardman.mil@army.mil&gt;<br>\r\n<b>Cc:</b>&nbsp;Clark, Duane W LTC USARMY 1 ID (USA) &lt;duane.w.clark.mil@army.mil&gt;; Peterson, Jared F MAJ USARMY 1 ID (USA) &lt;jared.f.peterson.mil@army.mil&gt;; Abarr, Austin P MAJ USARMY 1 ID (USA) &lt;austin.p.abarr.mil@army.mil&gt;; Gianino, Joseph R (Joe) CPT USARMY ORDNANCE\r\n SCHL (USA) &lt;joseph.r.gianino.mil@army.mil&gt;; Ford, Daniel W CIV USARMY 1 ID (USA) &lt;daniel.w.ford22.civ@army.mil&gt;<br>\r\n<b>Subject:</b>&nbsp;CARB Packet - [UNCLASSIFIED]</div>\r\n<div style=\"direction: ltr;\">&nbsp;</div>\r\n</div>\r\n<div id=\"x_x_oct-marking-header-unclassified\" style=\"direction: ltr; border-bottom: 1em;\">\r\n<b>UNCLASSIFIED</b></div>\r\n<div id=\"x_x_ms-marking-body\">\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nSir,</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nAs requested, attached is the CARB packet.&nbsp; Almost done finalizing it for submission.<br>\r\n<br>\r\nMr. Ford can you please let me know if this is on the right track, I think we can definitely include it in next weeks CARB.</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<b>Requirements Title:</b>&nbsp;Strategic Logix RRSL-X</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<b>Requestors&nbsp;Name:</b>&nbsp;CPT Shorkey-Chacon, Paul</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<b>Today\'s Date:</b>&nbsp;5/20/2025</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<b>Section/Unit:</b>&nbsp;1st Infantry Division</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<b>Type of Requirement:</b></div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<b>Category of Requirement:</b></div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<b>Problem Statement: </b>1ID currently&nbsp;lacks a low-cost, NDAA-compliant, and rapidly deployable sUAS platform suitable for short-range reconnaissance, training, and one-way attack missions. Current systems are expensive, slow to field, and not scalable to\r\n meet urgent tactical demands.</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<b>Need Statement: </b>Adversaries are leveraging expendable drone capabilities at scale, creating a critical capability gap for U.S. forces. The RRSL-X addresses this gap with a modular, field-expedient, and mission-adaptable design that enables rapid deployment\r\n and sustainment across multiple echelons, while remaining fully compliant with Blue UAS standards and U.S. manufacturing requirements.<b>&nbsp;</b></div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-size: 12pt;\"><span style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; color: rgb(0, 0, 0);\"><b>Impact if your requirement is not funded:</b></span><span style=\"font-family: arial, sans-serif; color: rgb(0, 0, 0);\">&nbsp;</span><span style=\"font-family: arial, sans-serif; color: black;\">It\r\n is our goal to influence 1ID’s TTPs in preparation for NTC, EUCOM, and operational deployments through the integration of emerging UAS technologies such as the RRSL drone from Strategic Logix. If we are to modernize effectively as a force, we must embrace\r\n the tools that allow us to observe, assess, and adapt in real time. The RRSL platform provides commanders with organic ISR capability at the tactical edge—bridging the gap between unit-level intelligence requirements and traditional aviation assets. The drone’s\r\n affordability, modularity, and ease of use enable integration at scale, allowing small units to self-generate actionable intelligence without relying on higher echelons. The adoption of the RRSL system across 1ID and other formations would mark a critical\r\n step in decentralizing sensor-to-shooter timelines and validating our formations’ ability to fight in multi-domain environments.&nbsp;</span></div>\r\n<div style=\"direction: ltr; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_Signature\">\r\n<div style=\"direction: ltr;\">Very Respectfully,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Paul Shorkey-Chacon</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nCPT, FA</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nDeputy Innovation Officer</div>\r\n<div style=\"direction: ltr;\"><span style=\"font-size: 14pt; color: rgb(237, 92, 87);\">1</span><sup>st</sup>&nbsp;Infantry Division</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">✉ NIPR: paul.r.shorkey-chacon.mil@army.mil</div>\r\n<div style=\"direction: ltr;\">📱 Cell: (443) 889-6741</div>\r\n<div style=\"direction: ltr; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"x_x_oct-marking-footer-unclassified\" style=\"border-top: 1em;\">\r\n<div id=\"x_x_ms-marking-details-block\" style=\"margin-top: 0.5em; margin-bottom: 0.5em;\">\r\n</div>\r\n<div style=\"direction: ltr;\"><b>UNCLASSIFIED</b></div>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n</body>\r\n</html>\r\n','UNCLASSIFIED\r\nHere is everything for the 1000 order.\r\n\r\nVery Respectfully,\r\n\r\nPaul Shorkey-Chacon\r\nCPT, FA\r\nDeputy Innovation Officer\r\n1st Infantry Division\r\n\r\n\r\n✉ NIPR: paul.r.shorkey-chacon.mil@army.mil\r\n📱 Cell: (443) 889-6741\r\n\r\nUNCLASSIFIED\r\n\r\n\r\n________________________________\r\nFrom: Shorkey-Chacon, Paul R CPT USARMY 1 ID 2 ABCT (USA) <paul.r.shorkey-chacon.mil@army.mil>\r\nSent: Tuesday, May 20, 2025 10:05 AM\r\nTo: Hardman, Matthew J BG USARMY 1 ID (USA) <matthew.j.hardman.mil@army.mil>\r\nCc: Clark, Duane W LTC USARMY 1 ID (USA) <duane.w.clark.mil@army.mil>; Peterson, Jared F MAJ USARMY 1 ID (USA) <jared.f.peterson.mil@army.mil>; Abarr, Austin P MAJ USARMY 1 ID (USA) <austin.p.abarr.mil@army.mil>; Gianino, Joseph R (Joe) CPT USARMY ORDNANCE SCHL (USA) <joseph.r.gianino.mil@army.mil>; Ford, Daniel W CIV USARMY 1 ID (USA) <daniel.w.ford22.civ@army.mil>\r\nSubject: CARB Packet - [UNCLASSIFIED]\r\n\r\nUNCLASSIFIED\r\nSir,\r\n\r\nAs requested, attached is the CARB packet.  Almost done finalizing it for submission.\r\n\r\nMr. Ford can you please let me know if this is on the right track, I think we can definitely include it in next weeks CARB.\r\n\r\nRequirements Title: Strategic Logix RRSL-X\r\n\r\nRequestors Name: CPT Shorkey-Chacon, Paul\r\n\r\nToday\'s Date: 5/20/2025\r\n\r\nSection/Unit: 1st Infantry Division\r\n\r\nType of Requirement:\r\n\r\nCategory of Requirement:\r\n\r\nProblem Statement: 1ID currently lacks a low-cost, NDAA-compliant, and rapidly deployable sUAS platform suitable for short-range reconnaissance, training, and one-way attack missions. Current systems are expensive, slow to field, and not scalable to meet urgent tactical demands.\r\n\r\nNeed Statement: Adversaries are leveraging expendable drone capabilities at scale, creating a critical capability gap for U.S. forces. The RRSL-X addresses this gap with a modular, field-expedient, and mission-adaptable design that enables rapid deployment and sustainment across multiple echelons, while remaining fully compliant with Blue UAS standards and U.S. manufacturing requirements.\r\n\r\nImpact if your requirement is not funded: It is our goal to influence 1ID’s TTPs in preparation for NTC, EUCOM, and operational deployments through the integration of emerging UAS technologies such as the RRSL drone from Strategic Logix. If we are to modernize effectively as a force, we must embrace the tools that allow us to observe, assess, and adapt in real time. The RRSL platform provides commanders with organic ISR capability at the tactical edge—bridging the gap between unit-level intelligence requirements and traditional aviation assets. The drone’s affordability, modularity, and ease of use enable integration at scale, allowing small units to self-generate actionable intelligence without relying on higher echelons. The adoption of the RRSL system across 1ID and other formations would mark a critical step in decentralizing sensor-to-shooter timelines and validating our formations’ ability to fight in multi-domain environments.\r\n\r\nVery Respectfully,\r\n\r\nPaul Shorkey-Chacon\r\nCPT, FA\r\nDeputy Innovation Officer\r\n1st Infantry Division\r\n\r\n\r\n✉ NIPR: paul.r.shorkey-chacon.mil@army.mil\r\n📱 Cell: (443) 889-6741\r\n\r\nUNCLASSIFIED\r\n\r\n',0,0,0,0,0,0,'2025-07-09 14:37:40','2025-12-09 19:13:26','2025-12-09 19:13:26','2025-12-09 19:13:26',NULL,NULL,NULL),
(439,4,'<OGI0vHvFQaSHmd3WySM9tw@geopod-ismtpd-33>',NULL,NULL,'New DIU Solicitation: Low Cost Undersea Effectors','info@diu.mil','Defense Innovation Unit','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html data-editor-version=\"2\" class=\"sg-campaigns\" xmlns=\"http://www.w3.org/1999/xhtml\">\r\n    <head>\r\n      <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n      <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1\">\r\n      <!--[if !mso]><!-->\r\n      <meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge\">\r\n      <!--<![endif]-->\r\n      <!--[if (gte mso 9)|(IE)]>\r\n      <xml>\r\n        <o:OfficeDocumentSettings>\r\n          <o:AllowPNG/>\r\n          <o:PixelsPerInch>96</o:PixelsPerInch>\r\n        </o:OfficeDocumentSettings>\r\n      </xml>\r\n      <![endif]-->\r\n      <!--[if (gte mso 9)|(IE)]>\r\n  <style type=\"text/css\">\r\n    body {width: 600px;margin: 0 auto;}\r\n    table {border-collapse: collapse;}\r\n    table, td {mso-table-lspace: 0pt;mso-table-rspace: 0pt;}\r\n    img {-ms-interpolation-mode: bicubic;}\r\n  </style>\r\n<![endif]-->\r\n      <style type=\"text/css\">\r\n    body, p, div {\r\n      font-family: arial,helvetica,sans-serif;\r\n      font-size: 14px;\r\n    }\r\n    body {\r\n      color: #000000;\r\n    }\r\n    body a {\r\n      color: #2483c5;\r\n      text-decoration: none;\r\n    }\r\n    p { margin: 0; padding: 0; }\r\n    table.wrapper {\r\n      width:100% !important;\r\n      table-layout: fixed;\r\n      -webkit-font-smoothing: antialiased;\r\n      -webkit-text-size-adjust: 100%;\r\n      -moz-text-size-adjust: 100%;\r\n      -ms-text-size-adjust: 100%;\r\n    }\r\n    img.max-width {\r\n      max-width: 100% !important;\r\n    }\r\n    .column.of-2 {\r\n      width: 50%;\r\n    }\r\n    .column.of-3 {\r\n      width: 33.333%;\r\n    }\r\n    .column.of-4 {\r\n      width: 25%;\r\n    }\r\n    ul ul ul ul  {\r\n      list-style-type: disc !important;\r\n    }\r\n    ol ol {\r\n      list-style-type: lower-roman !important;\r\n    }\r\n    ol ol ol {\r\n      list-style-type: lower-latin !important;\r\n    }\r\n    ol ol ol ol {\r\n      list-style-type: decimal !important;\r\n    }\r\n    @media screen and (max-width:480px) {\r\n      .preheader .rightColumnContent,\r\n      .footer .rightColumnContent {\r\n        text-align: left !important;\r\n      }\r\n      .preheader .rightColumnContent div,\r\n      .preheader .rightColumnContent span,\r\n      .footer .rightColumnContent div,\r\n      .footer .rightColumnContent span {\r\n        text-align: left !important;\r\n      }\r\n      .preheader .rightColumnContent,\r\n      .preheader .leftColumnContent {\r\n        font-size: 80% !important;\r\n        padding: 5px 0;\r\n      }\r\n      table.wrapper-mobile {\r\n        width: 100% !important;\r\n        table-layout: fixed;\r\n      }\r\n      img.max-width {\r\n        height: auto !important;\r\n        max-width: 100% !important;\r\n      }\r\n      a.bulletproof-button {\r\n        display: block !important;\r\n        width: auto !important;\r\n        font-size: 80%;\r\n        padding-left: 0 !important;\r\n        padding-right: 0 !important;\r\n      }\r\n      .columns {\r\n        width: 100% !important;\r\n      }\r\n      .column {\r\n        display: block !important;\r\n        width: 100% !important;\r\n        padding-left: 0 !important;\r\n        padding-right: 0 !important;\r\n        margin-left: 0 !important;\r\n        margin-right: 0 !important;\r\n      }\r\n      .social-icon-column {\r\n        display: inline-block !important;\r\n      }\r\n    }\r\n  </style>\r\n      <!--user entered Head Start--><!--End Head user entered-->\r\n    </head>\r\n    <body>\r\n      <center class=\"wrapper\" data-link-color=\"#2483c5\" data-body-style=\"font-size:14px; font-family:arial,helvetica,sans-serif; color:#000000; background-color:#ffffff;\">\r\n        <div class=\"webkit\">\r\n          <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"wrapper\" bgcolor=\"#ffffff\">\r\n            <tr>\r\n              <td valign=\"top\" bgcolor=\"#ffffff\" width=\"100%\">\r\n                <table width=\"100%\" role=\"content-container\" class=\"outer\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                  <tr>\r\n                    <td width=\"100%\">\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                        <tr>\r\n                          <td>\r\n                            <!--[if mso]>\r\n    <center>\r\n    <table><tr><td width=\"600\">\r\n  <![endif]-->\r\n                                    <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:100%; max-width:600px;\" align=\"center\">\r\n                                      <tr>\r\n                                        <td role=\"modules-container\" style=\"padding:10px 18px 10px 18px; color:#000000; text-align:left;\" bgcolor=\"#ecf7ff\" width=\"100%\" align=\"left\"><table class=\"module preheader preheader-hide\" role=\"module\" data-type=\"preheader\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"display: none !important; mso-hide: all; visibility: hidden; opacity: 0; color: transparent; height: 0; width: 0;\">\r\n    <tr>\r\n      <td role=\"module-content\">\r\n        <p>The DoD is seeking the next generation of small and medium UUVs.</p>\r\n      </td>\r\n    </tr>\r\n  </table><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cfd0cb98-cae3-4099-bb9b-d518af9861a8\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:10px 18px 10px 18px;\" valign=\"top\" align=\"center\">\r\n          <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:25% !important; width:25%; height:auto !important;\" width=\"141\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/07c51c13-1be6-40d1-8dc7-789cd2686a09/1080x1080.png\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"divider\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"257cee2c-17b5-4325-a24f-cbc103c5619a.1.1.1.2.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 18px 0px 18px;\" role=\"module-content\" height=\"100%\" valign=\"top\" bgcolor=\"#d4eafb\">\r\n          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" height=\"3px\" style=\"line-height:3px; font-size:3px;\">\r\n            <tbody>\r\n              <tr>\r\n                <td style=\"padding:0px 0px 3px 0px;\" bgcolor=\"#2483C5\"></td>\r\n              </tr>\r\n            </tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"1b2e3e3f-7a4f-4ae9-858a-b364347e6b2b.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#FFFFFF\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"544\" style=\"width:544px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"12a76bcf-49d1-4289-8902-3dec45d9306a\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: center\"><span style=\"color: #454546; font-family: arial, helvetica, sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: center; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; background-color: rgb(255, 255, 255); font-size: 18px\">New Solicitation Announcement</span></div>\r\n<div style=\"font-family: inherit; text-align: center\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-alternates: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; background-color: rgb(255, 255, 255); color: #7c7e7f; font-family: arial, helvetica, sans-serif; font-size: 12px\">There is a new solicitation posted on our website. It is easy to respond with a 5-page paper or 15-slide slide deck. These limits are not requirements but are strongly recommended. Additional guidance about what we look for in a proposal is </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILh-2Bq1vMh5oO7-2Blz-2BUvdb0irmCIWB37BuouaFHZh9mjyapo40PS1xJmwqEWgArI7j9CRSrXpEexhWeQDXTY07pHfWNPHo7vlnb-2FhFx9HUTh4e9aYOlxqtqQGH9u1buGgAJ8BabEvBziVw-2FSowa6SMdLw-3D-tIZ_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSf13DbK5KBms-2FEAYEkfgsCKfYaCCi3q-2BOGnqSMSHQ5HqBy3GND5-2BwNvfvD-2Fmz0yR9T9qv1f4BYW39iW1pkjYJkV4pbOQcJpfwjNIP7P-2BZjxc9aG2xMPUpb5-2FBW6Th4fpFAd2dZVIJoxgzugBxMizVPF8zSuDDfpa3WjslHh-2F1x9ytSwFecQa9NDQl-2FWkF9dpEG-2FvYnaZOkMKGF7h07D6mlaCH1U5gQ2NjxSHFsjM5toHzK4tyKlpyWDqWarE9ir2YhybCalJl4eK8kp9yLhYocuK35WMDKM7Z5raDputiv3hNPiW0ZKZZ0k-2BTs2dPJayXcnQv5kHhUI8ydP9RodG00xKcfzaOeNq-2BAngcH5is5VfR9-2BibPjWU0FUhcucHjN-2Bg0YacDhhVOzancR2X-2BCyFESLvWXx2z31xcUkF99yTSe3a0SK4EWjJjRVz9SGhfFGPOnkMMdBtKb9rIYptfk73P7c6wIzmAqzD6zyxdltDS0L7mP6jOzgai9bs4bPuE4-2FwcRLWDCRAxqeJAGC5c-2FXSXY5u5rqksMcTSI4YCeoEHt4jS1p3IgVa96HwzTQEukLUzwMFAz8NdckkXJaY-2BSLozm9dYf1cQN0InRGeM4qoBW5die9oUrOu6L-2BqSY3q89JMs7V0rmMlXPwqMClWjMBYZq-2FWjv2d5JnlgQMmri6mmGddXFrN2U-2BDTZKjQwBBKGDQX-2B3Nc5jwSFAWxi9F-2FCys9-2BnboE2AgqI1bQdHEw8mIWPAC9wWwlxd-2BlSyVlAtMAnhKzfQuP9yiyMqAioHn-2BZCzPF6ymbbN1FZ0gKm0SPkLoGTDEzIgj6AB0OHa-2FgEgIekGCnPOPEFeT3qggI8WXFvIE-3D\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-alternates: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; background-color: rgb(255, 255, 255); color: #01a1f1; font-family: arial, helvetica, sans-serif; font-size: 12px\"><u>available </u></span><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: none; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); color: #01a1f1; font-family: arial, helvetica, sans-serif; font-size: 12px\"><u>here</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-alternates: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; background-color: rgb(255, 255, 255); color: #7c7e7f; font-family: arial, helvetica, sans-serif; font-size: 12px\">. Our goal is to award an initial contract within 60-90 days of solicitation closure. Solicitation details and a link to the submission page are available below.</span><span style=\"font-family: arial, helvetica, sans-serif; font-size: 12px\"><br>\r\n</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#FFFFFF\" data-distribution=\"2,1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"362\" style=\"width:362px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2bb08414-727d-4668-851a-a0e1e3708ed6\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 10px 18px 10px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"color: #2483c5; font-family: arial, helvetica, sans-serif; font-size: 18px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline\">Low Cost Undersea Effectors</span></div>\r\n<div style=\"font-family: inherit; text-align: start\"><br></div>\r\n<div style=\"font-family: inherit; text-align: start\"><span style=\"font-optical-sizing: auto; font-weight: 300; font-style: normal; font-variation-settings: &quot;slnt&quot; 0; white-space-collapse: collapse; text-wrap-mode: wrap; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; line-height: 1.4; margin-bottom: 1.8rem; margin-top: 0.5rem; max-width: 58rem; list-style-position: inherit; background-color: transparent; font-family: arial,helvetica,sans-serif; font-size: 12px; color: #7c7e7f\">The United States Military faces a critical need for affordable small and medium Unmanned Underwater Vehicles (UUVs) to enhance its operational capabilities in subsea and seabed warfare, intelligence, surveillance, and reconnaissance (ISR), and expeditionary warfare domains. Current and legacy systems are designed to be multi-mission, exquisite systems requiring long production timelines, significant training, reconfiguration prior to mission, and technical experts to process data. However, there are situations where a single use, mission specific UUV can be more desirable to the end user in the kinetic, ISR, and expeditionary domains.&nbsp;</span></div>\r\n<div style=\"font-family: inherit; text-align: start\"><br></div>\r\n<div style=\"font-family: inherit; text-align: start\"><span style=\"font-optical-sizing: auto; font-weight: 300; font-style: normal; font-variation-settings: &quot;slnt&quot; 0; white-space-collapse: collapse; text-wrap-mode: wrap; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; line-height: 1.4; margin-bottom: 1.8rem; margin-top: 0.5rem; max-width: 58rem; list-style-position: inherit; background-color: transparent; font-family: arial,helvetica,sans-serif; font-size: 12px; color: #7c7e7f\">The DoD is seeking the next generation of small and medium UUVs. Proposed UUVs addressing any of these problem sets should be low cost, mission specific assets. Desired mission sets include but are not limited to delivering kinetic effects, ISR, and expeditionary. </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9tvMXoVh5TvEDiavrc1Am-2FQjHxFjeLVfuCXwtJhpIPCTR2KlMmi57lJqnyRC6eEe3wPprCW-2FfEO17TRffHx2KNBXmvFoKVp-2F8kyi-2FscpjPZ2ELsu_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSf13DbK5KBms-2FEAYEkfgsCKfYaCCi3q-2BOGnqSMSHQ5HqBy3GND5-2BwNvfvD-2Fmz0yR9T9qv1f4BYW39iW1pkjYJkV4pbOQcJpfwjNIP7P-2BZjxc9aG2xMPUpb5-2FBW6Th4fpFAd2dZVIJoxgzugBxMizVPF8zSuDDfpa3WjslHh-2F1x9ytSwFecQa9NDQl-2FWkF9dpEG-2FvYnaZOkMKGF7h07D6mlaCH1U5gQ2NjxSHFsjM5toHzK4tyKlpyWDqWarE9ir2YhybCalJl4eK8kp9yLhYocuK35WMDKM7Z5raDputiv3hNPiW0ZKZZ0k-2BTs2dPJayXcnQv5kHhUI8ydP9RodG00xKcfzaOeNq-2BAngcH5is5VfR9-2BibPjWU0FUhcucHjN-2Bg0YacDhhVOzancR2X-2BCyFESLvWXx2z31xcUkF99yTSe3a0SK4EWjJjRVz9SGhfFGPOnkMMdBtKb9rIYptfk73P7c6wIzmAqzD6zyxdltDS0L7mP6jOzgai9bs4bPuE4-2FwcRLWDCRAxqeJAGC5c-2FXSXY5u5rqksMcTSI4YCeoEHt4jS1p3IgVa96HwzTQEukLUzwMFAz8NdckkXJaY-2BSLozm9dYf1cQN0InRGeM4qoBW5die9oUrOu6L-2BqSY3q89JMs7V0rmMlXPwqMClWjMBYZq-2FWjv2d5JnlgQMmri6mmGdetTyqLR5QjNlahIplaJec-2F8sRMbhzeAmNw9IHE1M0Q19x5ifj0pAyfXzAlxRgx-2BmIGxL03E2r-2Blr4rYzste0PJTrgN3grNb1h1VCzgRJlcFQY0uwcfQYfhBduJ2kpVUMMihcs2xDEikUatulySPi-2FejaEFzwznlwQdnpNxSgn9o-3D\"><span style=\"font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; color: #2483c5; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>Learn more</strong></span></a><span style=\"font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; color: #2483c5; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>.</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"181\" style=\"width:181px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"4fa31850-56ff-4e7f-985c-2dd2d58a3cef\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>Submission Deadline:</strong></span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">24 July 2025</span><span style=\"font-family: arial, helvetica, sans-serif; font-size: 12px\"><br>\r\n</span><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">23:59:59 U.S. Eastern Time</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"module\" data-role=\"module-button\" data-type=\"button\" role=\"module\" style=\"table-layout:fixed;\" width=\"100%\" data-muid=\"621468ff-bdcc-4d55-8cd5-838691427b54\">\r\n      <tbody>\r\n        <tr>\r\n          <td align=\"left\" bgcolor=\"\" class=\"outer-td\" style=\"padding:0px 0px 0px 0px;\">\r\n            <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"wrapper-mobile\" style=\"text-align:center;\">\r\n              <tbody>\r\n                <tr>\r\n                <td align=\"center\" bgcolor=\"#2483C5\" class=\"inner-td\" style=\"border-radius:6px; font-size:16px; text-align:left; background-color:inherit;\">\r\n                  <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9tvMXoVh5TvEDiavrc1Am-2FQjHxFjeLVfuCXwtJhpIPCTR2KlMmi57lJqnyRC6eEe3wPprCW-2FfEO17TRffHx2KNBXmvFoKVp-2F8kyi-2FscpjPZ2UaVg_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSf13DbK5KBms-2FEAYEkfgsCKfYaCCi3q-2BOGnqSMSHQ5HqBy3GND5-2BwNvfvD-2Fmz0yR9T9qv1f4BYW39iW1pkjYJkV4pbOQcJpfwjNIP7P-2BZjxc9aG2xMPUpb5-2FBW6Th4fpFAd2dZVIJoxgzugBxMizVPF8zSuDDfpa3WjslHh-2F1x9ytSwFecQa9NDQl-2FWkF9dpEG-2FvYnaZOkMKGF7h07D6mlaCH1U5gQ2NjxSHFsjM5toHzK4tyKlpyWDqWarE9ir2YhybCalJl4eK8kp9yLhYocuK35WMDKM7Z5raDputiv3hNPiW0ZKZZ0k-2BTs2dPJayXcnQv5kHhUI8ydP9RodG00xKcfzaOeNq-2BAngcH5is5VfR9-2BibPjWU0FUhcucHjN-2Bg0YacDhhVOzancR2X-2BCyFESLvWXx2z31xcUkF99yTSe3a0SK4EWjJjRVz9SGhfFGPOnkMMdBtKb9rIYptfk73P7c6wIzmAqzD6zyxdltDS0L7mP6jOzgai9bs4bPuE4-2FwcRLWDCRAxqeJAGC5c-2FXSXY5u5rqksMcTSI4YCeoEHt4jS1p3IgVa96HwzTQEukLUzwMFAz8NdckkXJaY-2BSLozm9dYf1cQN0InRGeM4qoBW5die9oUrOu6L-2BqSY3q89JMs7V0rmMlXPwqMClWjMBYZq-2FWjv2d5JnlgQMmri6mmGdW-2FxfjRe3h6BMpPEzifWFEBO0A-2F5wMnJWJ5P5vmeCjDqr-2FwiVgGb2a2pUF9C-2BI0B7m49bUiVxihyqjFK0rcQ67cAyuc-2BqrDiJfVlLhFtX6lN8XwKZTfYMX-2BkRTMQhq4RytQhkBOJWfxhszvwZz-2BOCC-2B-2FB-2B16IwLjpTV0PnXwf7Ig-3D\" style=\"background-color:#2483C5; border:1px solid #2483C5; border-color:#2483C5; border-radius:6px; border-width:1px; color:#ffffff; display:inline-block; font-size:12px; font-weight:bold; letter-spacing:0px; line-height:normal; padding:12px 18px 12px 18px; text-align:center; text-decoration:none; border-style:solid;\" target=\"_blank\">Learn more</a>\r\n                </td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n          </td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"1b2e3e3f-7a4f-4ae9-858a-b364347e6b2b\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#FFFFFF\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"544\" style=\"width:544px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"12a76bcf-49d1-4289-8902-3dec45d9306a.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: left\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: 700; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; text-align: start; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 14px; color: #7c7e7f\">Other open solicitations:</span></div>\r\n<div style=\"font-family: inherit; text-align: left\"><br>\r\n</div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9kGc-2Fi654EjxfC7gcUneG-2FZ8t5AyHoUl6ZdeO-2FYuJPcUTJiRYNwzKE1XObChGB-2B-2BCaCoIghdLCzaLv4F8SC8T4411K7i5hbARk9-2FKFN-2B71yA2QWh_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSf13DbK5KBms-2FEAYEkfgsCKfYaCCi3q-2BOGnqSMSHQ5HqBy3GND5-2BwNvfvD-2Fmz0yR9T9qv1f4BYW39iW1pkjYJkV4pbOQcJpfwjNIP7P-2BZjxc9aG2xMPUpb5-2FBW6Th4fpFAd2dZVIJoxgzugBxMizVPF8zSuDDfpa3WjslHh-2F1x9ytSwFecQa9NDQl-2FWkF9dpEG-2FvYnaZOkMKGF7h07D6mlaCH1U5gQ2NjxSHFsjM5toHzK4tyKlpyWDqWarE9ir2YhybCalJl4eK8kp9yLhYocuK35WMDKM7Z5raDputiv3hNPiW0ZKZZ0k-2BTs2dPJayXcnQv5kHhUI8ydP9RodG00xKcfzaOeNq-2BAngcH5is5VfR9-2BibPjWU0FUhcucHjN-2Bg0YacDhhVOzancR2X-2BCyFESLvWXx2z31xcUkF99yTSe3a0SK4EWjJjRVz9SGhfFGPOnkMMdBtKb9rIYptfk73P7c6wIzmAqzD6zyxdltDS0L7mP6jOzgai9bs4bPuE4-2FwcRLWDCRAxqeJAGC5c-2FXSXY5u5rqksMcTSI4YCeoEHt4jS1p3IgVa96HwzTQEukLUzwMFAz8NdckkXJaY-2BSLozm9dYf1cQN0InRGeM4qoBW5die9oUrOu6L-2BqSY3q89JMs7V0rmMlXPwqMClWjMBYZq-2FWjv2d5JnlgQMmri6mmGdZcoD9T8HCiJrplQq9PC9ii7hVk8VE2VEYtDkmdCUVplVMxBPTuy8BrPF7m10OfqrHfW9cRR91Bx53i4jHCDrOBrJicW8R-2FS-2F09nO0vcNzCTaRbTZ9QY5fb6-2FYzu2e3Y9n4-2BTW0NHbKIEHin-2F9eHt96mthDFPr06DrvH-2BrwORoes-3D\"><span style=\"font-size: 12px; color: #2483c5\"><strong>Project G.I. Prize Challenge</strong></span></a></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-size: 12px\">This solicitation closes on December 31, 2025 at 23:59:59 Eastern Time</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><br></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"01cfd941-691e-4504-af90-9ba914a69b55\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:10px 18px 10px 18px;\" valign=\"top\" align=\"center\">\r\n          <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:25% !important; width:25%; height:auto !important;\" width=\"141\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/07c51c13-1be6-40d1-8dc7-789cd2686a09/1080x1080.png\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"6cf433f1-53d9-4818-89de-d72eccb7d837\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 10px 18px 10px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"line-height: inherit; color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-line: inherit; text-decoration-thickness: inherit; text-decoration-style: inherit; text-decoration-color: inherit; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>About DIU:&nbsp;</strong></span><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">The Defense Innovation Unit (DIU) strengthens our national security by accelerating the adoption of commercial technology throughout the military and growing the national security innovation base. DIU partners with organizations across the Department of Defense (DoD) and with&nbsp;nontraditional companies to facilitate prototype projects and field advanced commercial solutions that address national security challenges. DIU leverages Other Transaction (OT) authority to award Prototype agreements, which, if successful, may result in the direct award of a follow-on Production agreement without the use of further competitive procedures. (DIU is not an OT consortium; DIU executes direct award OTs).&nbsp;</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; background-color: rgb(255, 255, 255); font-size: 12px\">You are receiving this email because you have a contact at DIU or you signed up to our mailing list. If you would like to be removed from our email list, please click the unsubscribe link below.</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"6ac32cba-50e8-406c-8061-dd0135aebb60\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 30px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"module\" data-role=\"module-button\" data-type=\"button\" role=\"module\" style=\"table-layout:fixed;\" width=\"100%\" data-muid=\"bf716dbe-018d-4f2d-bf15-b5b6db124e86\">\r\n      <tbody>\r\n        <tr>\r\n          <td align=\"center\" bgcolor=\"\" class=\"outer-td\" style=\"padding:0px 0px 0px 0px;\">\r\n            <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"wrapper-mobile\" style=\"text-align:center;\">\r\n              <tbody>\r\n                <tr>\r\n                <td align=\"center\" bgcolor=\"#2483C5\" class=\"inner-td\" style=\"border-radius:6px; font-size:16px; text-align:center; background-color:inherit;\">\r\n                  <a href=\"mailto:info@diu.mil\" style=\"background-color:#2483C5; border:1px solid #2483C5; border-color:#2483C5; border-radius:6px; border-width:1px; color:#ffffff; display:inline-block; font-size:12px; font-weight:bold; letter-spacing:0px; line-height:normal; padding:18px 18px 12px 18px; text-align:center; text-decoration:none; border-style:solid; font-family:arial,helvetica,sans-serif;\" target=\"_blank\">Contact Us</a>\r\n                </td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n          </td>\r\n        </tr>\r\n      </tbody>\r\n    </table><div data-role=\"module-unsubscribe\" class=\"module\" role=\"module\" data-type=\"unsubscribe\" style=\"color:#444444; font-size:12px; line-height:20px; padding:16px 16px 16px 16px; text-align:center;\" data-muid=\"037d4496-257f-4255-8897-cb3cce530456\"><div class=\"Unsubscribe--addressLine\"></div><p style=\"font-size:12px; line-height:20px;\"><a class=\"Unsubscribe--unsubscribeLink\" href=\"https://u18220755.ct.sendgrid.net/asm/unsubscribe/?user_id=18220755&amp;data=Z1pdv681VUBU6H8Ske_D8ksWmrrRU4gUvKBebmK3asJoMDAwdTAwMJsfr16Iq3vboPQJYZxYpRQG-UCxgKejfay22-ZrUCadRoCpzWsUhymWJCzp5kdmHZXiQRPLIw0812r9RBUbDxoAczqrgma_CCufZXX1aZ6SGVZjdC_x8-w9qwlx8btD1cFb67uduf02x56QMx8XzunAoPGBIMEKLxpXkhbCyf9CXOapqKSRzW3ohBQp5gtZlMxdPRxF_xW4L9rrDOJnLZe4EIK0SLTEzmD-90T1W0sFcvTttV6EP3lWmFrRu8KPJB_bE9_jmlqn-qI8uK5_iCTUsmBZoCwg_yOFiF2eadAbkTAZIhKO5Ct1V5tdx11z1lAcdY4yJvrGD-uWzopz1BmPeLzTU8_jLqIJSKAiEVcrK2e3hRyMp63pyyYmLnwOu2G9JRwseZVVS8rAJZYlvwbaMDIz6zDaJCD8r-EFFZPVbffzGeK41VcpWx0n9tnwzbAQlxgagFTigcC5kPkt6K0UyJx5SJTnyrBgOxBtNyWrgzRbO2-qKO9cfQO0pfckm1fiZgL20oE42JcAVoFsy3PXscF_ddndIrMq24NjUbWx9EpyrZIF_c1fNARFnIJ05q8XEi9_7JRqXQxPqf5tus3jQDv2ObvsL3R3R71PQqdCpQEHBBZualt54QSO8eBv7OKJR8xVtkGyvXkv-9BtrpvPhQ48LDUImbiPGycXRcxtqCueYYKtvy5e5kpWu3hb7uFd_SzEhQbjLrYbSTYM26Opcn0x_gxL9tSmSu0V_M-ywWb9mtwmc5VH3NiHQLvdJ0E0e8lb4o6Q89EBa6M12kFkA0tO-i4en9ZplbiBCFPfQBriCnXF7I9F-pa22AM2KFMLFn0uMIaH0uFunkIWzWCcLpPPIwCUgBngkYCrPKO1i6qws53r0sAI-TB--GEUFqRJrSyDrww1Zq96n4mHtS_EEVfK2ZvB0XKfp9lZDOHhrzzAGyK29kT-8pqg4fEI7cv7fqgYMDRJLdvKPjHsle_trpnvJAl0-JLFu9G08Arkl_THVGyESQ_6PXBYZzz7jfeP9X9iXA9GrK2ajSzuhkWQIphkfCtwnnBqj0jynt8JMEIwdrtfM827nmdFbWKZxSZd286OR3bQoVxAiZhwnQcUsmjI2KKfE87XTN_Mc-8U4MTHGClcxReyO7i7u6GatA==\" target=\"_blank\" style=\"\">Unsubscribe</a> - <a href=\"https://u18220755.ct.sendgrid.net/asm/?user_id=18220755&amp;data=fA4SiGIrvA93k0plqBnbVKsxJ5fbUBwwVFy2NZ775ONoMDAwdTAwMMrm3A5ePUwvD0ynLbqb4DS6yd57lpj9WI-N8d_21RP5ZAVJT40vbswqNX_Uto06WHIjWKSlrlJLucOpituUaPJI1wC2gBlN7RMD89a4rRxBrEMCB3UltoeVXL6KfvgbaC6hwqy1t6bh99JSaEiFKn6zNKM_1BUkgxdjeIp0g4_iNeJoTT77AQHHwLYVFiJjtX2-6k4QLEmQfhQ76CaJqspQu49XuO0XD3GA3_SWOaPTQBBLzTd_7DkmlT7Nm1hQdaHnJJXbAjwM-6Gm15oUmDgc2AkUdP1CvDjnoUdNoU-lK2PRQRbzijhSyqNMWOU9iiU3-swyHmw-ErVsP6AuHqxlg8cwRwZWuxrKok80zVk2Yh-YhdgwmBEB5_fyHe9G8d5ZKm07n3CUnrnpvVbbHjya49tRoRCDGixb0x_UOJV88gbPcfBrO_XV1jQNnQna68d-lsA57qAfDA4TkV_yHlMm-3jaoXl49SDw7zLKUFPA4qkrhTQ3NUosrcgQHITiK3HqpUoLk17d7VtAxGUmaJDjo-XsCZmUkLlRG6T_ocgFDh2XFLuc_ISoNpG2dsz3grf_MsHi61GY7DF59gShK7XAcc98ju52oX11EQI9LJkDyzzn9uCJKJmUyn4jOnua1VJqqbdj7mb5ph7TimS3uh2gIRpj2hfGvXfEUtH0rHOLiKgjmP6SS_8ZgKTEiAp-Vckhn96oMXaC7fIUhse3Xy7N1Git8NApIDMX9VxXBpiviO4tqKcp63AMEehlLn3E0ZbPBTIyjvJbRdhTvTRTdNGZSqPNffVu-ZlAKD0EM5uMzzs36W1gNcGWEkv1IXEOBigoqLAyAd_kPVOrSE32q1PmZyrZcytytjLzJcILetpHXdnNTm4Vn_c1u57UfjuHwKFRfOwPCCuVmWxLukHWUe9kQlk0TI2-OEkDsN8I53XQFbAvmksb-0L-dKEH4JGRbygh6JlrsOWFJILRck3YQxhzDh6V9aneayuhG5SKvpmBqLF5sZ0NGB8tQc4O9rQ66NMP2_CJnHdh7syQ2Fz_rF-lumELE_FsMgvF6o1TbwUu1DoPxJAQLkAX3-hVCZ81FKkrTTZGhxDjK890ACO_xcBpt5ip_fIyTc9tC32qx_pP-G1IbfWAFylVJLszKBNpWA==\" target=\"_blank\" class=\"Unsubscribe--unsubscribePreferences\" style=\"\">Unsubscribe Preferences</a></p></div></td>\r\n                                      </tr>\r\n                                    </table>\r\n                                    <!--[if mso]>\r\n                                  </td>\r\n                                </tr>\r\n                              </table>\r\n                            </center>\r\n                            <![endif]-->\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </div>\r\n      </center>\r\n    <img src=\"https://u18220755.ct.sendgrid.net/wf/open?upn=u001.D6mC8SG6iITw2GIzPjAtw7SLAuEgZhcE7OQx5Ie2paKW9TCJvoy3Eh7ani-2FmDfzWZ4Aty9oKYAg8U-2BpXv81mmaeCBsQtTAdxlXqbnsXBCjn-2FAW10qJfypmIUPoD1-2B38y4LSjEaiwyNZHtEyZD-2BNUDV-2BpHK2JlJJuxRb5EJDQ1F5um94c7In0rrwTYPq7Pg-2FKcZXouiy2WVY-2F7lmC5ef8Ytu3drsfLx1N7qyQzN-2FxwJGfLih1l1XO48wfkP2QxvxtQ9v1Xe-2BwjmMh-2FDhOiU2q4JJt64SrVGs31ckDLHvkxw999FTNQgA7zm1wFCs-2BwSHUGfoXSP-2FQksSNNvZikXzxm-2BjOaZ7p0eJVMhlbBuZMheQ94EbapS5qDw-2FdY2yJAMCLc-2Bm7H4HRw47EUtZZOrAy0HuiLUsSwVlCoRW-2BbrPKs75Vy17viwDYIUqB5CPAXD6bFM1l3S3KrhhotCyN1Lz85rCJfHTVWz17yXXfbP9lx9DZaMIDYlA5h0pfGXLKd8BoZ0YNdMzgy1pMW6pSktQ-2Fdxa3Jb-2BENcQCFrYEO-2Bn-2BxsbAkWX2o51cms-2FgeRXrjfbVjQw1fOO9GDbEeWIE-2FUriQcEq-2BzZ8OwTBCHWLnnl0xYhgu9PT74eGnNhDtYeduKgQ4x-2Fg1tDoasFjVVYvtDTZn0-2Fdw0FDbHuXYKNpe0zsGZUXpGj2t2Cb0A5nWMbvLvJBLL2u-2BymaK4sBXFxILJ-2BQC1TFI-2FBIbxK9gdjot6FIs4tStoy9h9WJbpxWn8JTk7-2FA6paSGYEo8H-2Brx-2B2FCkDYIb0431eaai2IhOXGKqkkEkBhtyPYry6kHmHWbjtq-2FCm2Co-2B0gXCbql8Ru4MDgGyan6ENKyxDJDSV1h45PY7RWfJ-2FtQg32Qxat-2FVv-2FdD0t7F1WOYr6HPfoVtsVa50Q9Z8ylrtfotqVGyWDKWp-2FXS4KtRfnSBS9VW4imA6y3MevtaJTNKZOQy8etKEBbGzfpnAgK2OLNATos6h9tkV2R4ucDK-2FbKwyRVTp2bZxj1vlZkgc\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/></body>\r\n  </html>','The DoD is seeking the next generation of small and medium UUVs.\r\n\r\nNew Solicitation Announcement\r\n\r\nThere is a new solicitation posted on our website. It is easy to respond with a 5-page paper or 15-slide slide deck. These limits are not requirements but are strongly recommended. Additional guidance about what we look for in a proposal is available here ( https://www.diu.mil/solution-brief-guidance?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ). Our goal is to award an initial contract within 60-90 days of solicitation closure. Solicitation details and a link to the submission page are available below.\r\n\r\nLow Cost Undersea Effectors\r\n\r\nThe United States Military faces a critical need for affordable small and medium Unmanned Underwater Vehicles (UUVs) to enhance its operational capabilities in subsea and seabed warfare, intelligence, surveillance, and reconnaissance (ISR), and expeditionary warfare domains. Current and legacy systems are designed to be multi-mission, exquisite systems requiring long production timelines, significant training, reconfiguration prior to mission, and technical experts to process data. However, there are situations where a single use, mission specific UUV can be more desirable to the end user in the kinetic, ISR, and expeditionary domains.\r\n\r\nThe DoD is seeking the next generation of small and medium UUVs. Proposed UUVs addressing any of these problem sets should be low cost, mission specific assets. Desired mission sets include but are not limited to delivering kinetic effects, ISR, and expeditionary. *Learn more* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00595?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) *.*\r\n\r\n*Submission Deadline:*\r\n24 July 2025\r\n23:59:59 U.S. Eastern Time\r\n\r\nLearn more ( https://www.diu.mil/work-with-us/submit-solution/PROJ00595?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\nOther open solicitations:\r\n\r\n*Project G.I. Prize Challenge* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00598?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\nThis solicitation closes on December 31, 2025 at 23:59:59 Eastern Time\r\n\r\n*About DIU:* The Defense Innovation Unit (DIU) strengthens our national security by accelerating the adoption of commercial technology throughout the military and growing the national security innovation base. DIU partners with organizations across the Department of Defense (DoD) and with nontraditional companies to facilitate prototype projects and field advanced commercial solutions that address national security challenges. DIU leverages Other Transaction (OT) authority to award Prototype agreements, which, if successful, may result in the direct award of a follow-on Production agreement without the use of further competitive procedures. (DIU is not an OT consortium; DIU executes direct award OTs).\r\n\r\nYou are receiving this email because you have a contact at DIU or you signed up to our mailing list. If you would like to be removed from our email list, please click the unsubscribe link below.\r\n\r\nContact Us ( info@diu.mil )\r\n\r\nUnsubscribe ( https://u18220755.ct.sendgrid.net/asm/unsubscribe/?user_id=18220755&data=Z1pdv681VUBU6H8Ske_D8ksWmrrRU4gUvKBebmK3asJoMDAwdTAwMJsfr16Iq3vboPQJYZxYpRQG-UCxgKejfay22-ZrUCadRoCpzWsUhymWJCzp5kdmHZXiQRPLIw0812r9RBUbDxoAczqrgma_CCufZXX1aZ6SGVZjdC_x8-w9qwlx8btD1cFb67uduf02x56QMx8XzunAoPGBIMEKLxpXkhbCyf9CXOapqKSRzW3ohBQp5gtZlMxdPRxF_xW4L9rrDOJnLZe4EIK0SLTEzmD-90T1W0sFcvTttV6EP3lWmFrRu8KPJB_bE9_jmlqn-qI8uK5_iCTUsmBZoCwg_yOFiF2eadAbkTAZIhKO5Ct1V5tdx11z1lAcdY4yJvrGD-uWzopz1BmPeLzTU8_jLqIJSKAiEVcrK2e3hRyMp63pyyYmLnwOu2G9JRwseZVVS8rAJZYlvwbaMDIz6zDaJCD8r-EFFZPVbffzGeK41VcpWx0n9tnwzbAQlxgagFTigcC5kPkt6K0UyJx5SJTnyrBgOxBtNyWrgzRbO2-qKO9cfQO0pfckm1fiZgL20oE42JcAVoFsy3PXscF_ddndIrMq24NjUbWx9EpyrZIF_c1fNARFnIJ05q8XEi9_7JRqXQxPqf5tus3jQDv2ObvsL3R3R71PQqdCpQEHBBZualt54QSO8eBv7OKJR8xVtkGyvXkv-9BtrpvPhQ48LDUImbiPGycXRcxtqCueYYKtvy5e5kpWu3hb7uFd_SzEhQbjLrYbSTYM26Opcn0x_gxL9tSmSu0V_M-ywWb9mtwmc5VH3NiHQLvdJ0E0e8lb4o6Q89EBa6M12kFkA0tO-i4en9ZplbiBCFPfQBriCnXF7I9F-pa22AM2KFMLFn0uMIaH0uFunkIWzWCcLpPPIwCUgBngkYCrPKO1i6qws53r0sAI-TB--GEUFqRJrSyDrww1Zq96n4mHtS_EEVfK2ZvB0XKfp9lZDOHhrzzAGyK29kT-8pqg4fEI7cv7fqgYMDRJLdvKPjHsle_trpnvJAl0-JLFu9G08Arkl_THVGyESQ_6PXBYZzz7jfeP9X9iXA9GrK2ajSzuhkWQIphkfCtwnnBqj0jynt8JMEIwdrtfM827nmdFbWKZxSZd286OR3bQoVxAiZhwnQcUsmjI2KKfE87XTN_Mc-8U4MTHGClcxReyO7i7u6GatA== ) - Unsubscribe Preferences ( https://u18220755.ct.sendgrid.net/asm/?user_id=18220755&data=fA4SiGIrvA93k0plqBnbVKsxJ5fbUBwwVFy2NZ775ONoMDAwdTAwMMrm3A5ePUwvD0ynLbqb4DS6yd57lpj9WI-N8d_21RP5ZAVJT40vbswqNX_Uto06WHIjWKSlrlJLucOpituUaPJI1wC2gBlN7RMD89a4rRxBrEMCB3UltoeVXL6KfvgbaC6hwqy1t6bh99JSaEiFKn6zNKM_1BUkgxdjeIp0g4_iNeJoTT77AQHHwLYVFiJjtX2-6k4QLEmQfhQ76CaJqspQu49XuO0XD3GA3_SWOaPTQBBLzTd_7DkmlT7Nm1hQdaHnJJXbAjwM-6Gm15oUmDgc2AkUdP1CvDjnoUdNoU-lK2PRQRbzijhSyqNMWOU9iiU3-swyHmw-ErVsP6AuHqxlg8cwRwZWuxrKok80zVk2Yh-YhdgwmBEB5_fyHe9G8d5ZKm07n3CUnrnpvVbbHjya49tRoRCDGixb0x_UOJV88gbPcfBrO_XV1jQNnQna68d-lsA57qAfDA4TkV_yHlMm-3jaoXl49SDw7zLKUFPA4qkrhTQ3NUosrcgQHITiK3HqpUoLk17d7VtAxGUmaJDjo-XsCZmUkLlRG6T_ocgFDh2XFLuc_ISoNpG2dsz3grf_MsHi61GY7DF59gShK7XAcc98ju52oX11EQI9LJkDyzzn9uCJKJmUyn4jOnua1VJqqbdj7mb5ph7TimS3uh2gIRpj2hfGvXfEUtH0rHOLiKgjmP6SS_8ZgKTEiAp-Vckhn96oMXaC7fIUhse3Xy7N1Git8NApIDMX9VxXBpiviO4tqKcp63AMEehlLn3E0ZbPBTIyjvJbRdhTvTRTdNGZSqPNffVu-ZlAKD0EM5uMzzs36W1gNcGWEkv1IXEOBigoqLAyAd_kPVOrSE32q1PmZyrZcytytjLzJcILetpHXdnNTm4Vn_c1u57UfjuHwKFRfOwPCCuVmWxLukHWUe9kQlk0TI2-OEkDsN8I53XQFbAvmksb-0L-dKEH4JGRbygh6JlrsOWFJILRck3YQxhzDh6V9aneayuhG5SKvpmBqLF5sZ0NGB8tQc4O9rQ66NMP2_CJnHdh7syQ2Fz_rF-lumELE_FsMgvF6o1TbwUu1DoPxJAQLkAX3-hVCZ81FKkrTTZGhxDjK890ACO_xcBpt5ip_fIyTc9tC32qx_pP-G1IbfWAFylVJLszKBNpWA== )',0,0,0,0,0,0,'2025-07-09 17:30:24','2025-12-09 19:13:27','2025-12-09 19:13:27','2025-12-09 19:13:27',NULL,NULL,NULL),
(440,4,' <BL3PR20MB4924A93BD08067FACCB3080DAF49A@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: Follow Up - Due Diligence Checklist','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHello Brian,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nBelow I have placed a link to the due diligence folder for you and Rick to review, and also attached to this email is a copy of the signed checklist.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nhttps://drive.google.com/drive/folders/1ZdbIjsJXpQky8Oo_exoopnmNrF-e7wmw?usp=sharing</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nI was also thinking about it further, and given the business climate of Florida, if you wanted to make an offer contingent on standing up FAB1 in your area of Florida, as opposed to Reno, that is something I would strongly consider. This would also probably\r\n allow us to collaborate and grow even more effectively with Mavrix.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nLastly, I have confirmed with Varvara about formally coming on to the team as a business development manager, to really help get the sales funnel and our commercial outreach bolstered, which is our next biggest initiative now that product development and facilities\r\n design have been squared away.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nLet me know if you guys need anything else in the meantime.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0px; font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(36, 36, 36);\">\r\nRegards,</div>\r\n<div class=\"elementToProof\" style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0px; font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(36, 36, 36);\">\r\nJason Blick</div>\r\n<div class=\"elementToProof\" style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0px; font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(36, 36, 36);\">\r\nFounder/CEO</div>\r\n<div class=\"elementToProof\" style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0px; font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(36, 36, 36);\">\r\nCorvex Systems</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Brian Stufflebean &lt;brian@bayfrontcapitalllc.com&gt;<br>\r\n<b>Sent:</b> Tuesday, July 8, 2025 2:27 PM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Cc:</b> Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Follow Up - Due Diligence Checklist</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"line-break:after-white-space\">\r\n<div><span style=\"font-size:14px\"><br>\r\n</span></div>\r\n<span style=\"font-size:14px\">Good afternoon Jason,&nbsp;</span><br>\r\n<div><span style=\"font-size:14px\"><br>\r\n</span></div>\r\n<div><span style=\"font-size:14px\">We appreciated your time on the Zoom call yesterday. &nbsp;Per our conversation, attached you will find a diligence checklist that is a typical starting point for start of out review. It may or may not be fully comprehensive and\r\n there may be other items requested along the way. &nbsp;</span></div>\r\n<div><span style=\"font-size:14px\"><br>\r\n</span></div>\r\n<div><span style=\"font-size:14px\">We look forward to hearing back and if it is easier for you to create a folder in your Google Drive account, that is fine as well. Please include a signed copy of the Due Diligence document as well.&nbsp;</span></div>\r\n<div><span style=\"font-size:14px\"><br>\r\n</span></div>\r\n<div><span style=\"font-size:14px\"><i><b>Please confirm receipt of this email and also, please provide me with your Direct cell phone number. &nbsp;My cell number is listed below and you can feel free to call or text Rick or me with any questions you may have.\r\n</b></i>&nbsp;</span></div>\r\n<div><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div></div>\r\n</div>\r\n<div style=\"line-break:after-white-space\">\r\n<div></div>\r\n<div>&nbsp;<br>\r\n<div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\nBest Regards,&nbsp;<br>\r\n<br>\r\n<br>\r\nBrian C. Stufflebean, CEO<br>\r\n<b>Bayfront Capital, LLC</b><br>\r\n(941)545-4153 Direct<br>\r\n(866)896-2423 Fax<br>\r\nbrian@bayfrontcapitalllc.com<br>\r\nwww.bayfrontcapitalllc.com<br>\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>\r\n<br>\r\n</div>\r\n<span style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\"></span><br class=\"x_x_Apple-interchange-newline\" style=\"color:rgb(0,0,0); font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none\">\r\n<span style=\"color:rgb(0,0,0); font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none\"></span><span></span></div>\r\n</div>\r\n</div>\r\n<div style=\"line-break:after-white-space\">\r\n<div>\r\n<div><span></span>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<span><br class=\"x_x_Apple-interchange-newline\">\r\n<br class=\"x_x_Apple-interchange-newline\">\r\n<br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<b>CONFIDENTIALITY NOTICE / NOTICE&nbsp;OF&nbsp;NOT A REGISTERED&nbsp;BROKER/DEALER:</b><span style=\"font-weight:400\">&nbsp;Bayfront Capital&nbsp;LLC, nor its’ affiliates are registered as&nbsp;a Broker/Dealer, nor registered with&nbsp;FINRA. Nor does&nbsp;it provide tax or&nbsp;investment advice.&nbsp;&nbsp;Any\r\n references&nbsp;made to any transaction in any&nbsp;communication is being made as a&nbsp;business consultant.&nbsp;&nbsp;&nbsp;This is not a&nbsp;solicitation nor offer of any type and any&nbsp;reference to any proposed transaction&nbsp;of any type is void where prohibited by&nbsp;law.&nbsp;This communication&nbsp;is\r\n confidential&nbsp;and intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient, you&nbsp;may not copy, disclose, or&nbsp;distribute this message&nbsp;to anyone else;&nbsp;any such actions may be unlawful. If&nbsp;you have received this communication&nbsp;in error,&nbsp;please\r\n contact the sender of&nbsp;the message to&nbsp;inform him or her of the&nbsp;error.</span></div>\r\n</div>\r\n<br>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','Hello Brian,\r\n\r\nBelow I have placed a link to the due diligence folder for you and Rick to review, and also attached to this email is a copy of the signed checklist.\r\n\r\nhttps://drive.google.com/drive/folders/1ZdbIjsJXpQky8Oo_exoopnmNrF-e7wmw?usp=sharing\r\n\r\nI was also thinking about it further, and given the business climate of Florida, if you wanted to make an offer contingent on standing up FAB1 in your area of Florida, as opposed to Reno, that is something I would strongly consider. This would also probably allow us to collaborate and grow even more effectively with Mavrix.\r\n\r\nLastly, I have confirmed with Varvara about formally coming on to the team as a business development manager, to really help get the sales funnel and our commercial outreach bolstered, which is our next biggest initiative now that product development and facilities design have been squared away.\r\n\r\nLet me know if you guys need anything else in the meantime.\r\n\r\nRegards,\r\nJason Blick\r\nFounder/CEO\r\nCorvex Systems\r\n________________________________\r\nFrom: Brian Stufflebean <brian@bayfrontcapitalllc.com>\r\nSent: Tuesday, July 8, 2025 2:27 PM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nCc: Rick Mislan <rick@mavrix.one>\r\nSubject: Follow Up - Due Diligence Checklist\r\n\r\n\r\nGood afternoon Jason,\r\n\r\nWe appreciated your time on the Zoom call yesterday.  Per our conversation, attached you will find a diligence checklist that is a typical starting point for start of out review. It may or may not be fully comprehensive and there may be other items requested along the way.\r\n\r\nWe look forward to hearing back and if it is easier for you to create a folder in your Google Drive account, that is fine as well. Please include a signed copy of the Due Diligence document as well.\r\n\r\nPlease confirm receipt of this email and also, please provide me with your Direct cell phone number.  My cell number is listed below and you can feel free to call or text Rick or me with any questions you may have.\r\n\r\n\r\n\r\n\r\nBest Regards,\r\n\r\n\r\nBrian C. Stufflebean, CEO\r\nBayfront Capital, LLC\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\nbrian@bayfrontcapitalllc.com\r\nwww.bayfrontcapitalllc.com\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER: Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-07-09 21:44:52','2025-12-09 19:13:28','2025-12-09 19:13:28','2025-12-09 19:13:28',NULL,NULL,NULL),
(441,4,'<E550267E-AC85-4F61-850D-76F2DEFE1601@mislan.com>',NULL,NULL,'US Army Seeks Suppliers for up to 10,000 Low-Cost Drones per Month | Soldier Systems Daily Soldier Systems Daily','rick@mislan.com','Rick Mislan','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body dir=\"auto\"><div dir=\"ltr\"><br>https://soldiersystems.net/2025/07/09/us-army-seeks-suppliers-for-up-to-10000-purpose-built-attritable-systems-fov-drones-per-month/</div><br id=\"lineBreakAtBeginningOfSignature\"><div dir=\"ltr\"><br><div><font face=\"HelveticaNeue\" style=\"caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); font-size: 13px; -webkit-text-size-adjust: auto;\"><span style=\"font-size: 12px;\"><br></span></font><div class=\"gmail_signature\" style=\"caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); font-family: helvetica, Arial; font-size: 13px; -webkit-text-size-adjust: auto;\"><font face=\"HelveticaNeue\"><span style=\"font-size: 12px;\">Rick Mislan, PhD</span></font><div><a href=\"http://www.mislan.com/\" style=\"overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; -webkit-hyphens: auto; font-size: 12px;\"><font face=\"HelveticaNeue\">www.mislan.com</font></a></div><div><a href=\"tel://(585) 797-9473\" style=\"overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; -webkit-hyphens: auto; font-size: 12px;\"><font face=\"HelveticaNeue\">(585) 797-9473</font></a></div></div></div></div></body></html>','https://soldiersystems.net/2025/07/09/us-army-seeks-suppliers-for-up-to-10000-purpose-built-attritable-systems-fov-drones-per-month/Rick Mislan, PhDwww.mislan.com(585) 797-9473',0,0,0,0,0,0,'2025-07-10 00:06:33','2025-12-09 19:13:28','2025-12-09 19:13:28','2025-12-09 19:13:28',NULL,NULL,NULL),
(442,4,'<1752113355578.2409f9ba-7836-41fe-bcc3-359d5c517075@43785732t.epiloglaser.com>',NULL,NULL,'Thank you for your interest in Epilog Laser!','sales@epiloglaser.com','Epilog Laser','<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office.office\"><head><meta name=\"generator\" content=\"HubSpot\"><meta property=\"og:url\" content=\"http://43785732.hs-sites.com/-temporary-slug-6e3f738f-5a22-4a99-b75e-a39fc3dd9765\"><meta name=\"robots\" content=\"noindex,follow\"></head><body class=\"clean-body u_body\" style=\"margin: 0;padding: 0;-webkit-text-size-adjust: 100%;background-color: #333333;color: #333333\"><div data-global-resource-path=\"Global_Shared-Content/Global_Headers/Global_Epilog-Header_ENG.html\">\r\n<!--[if gte mso 9]>\r\n<xml>\r\n  <o:OfficeDocumentSettings>\r\n    <o:AllowPNG/>\r\n    <o:PixelsPerInch>96</o:PixelsPerInch>\r\n  </o:OfficeDocumentSettings>\r\n</xml>\r\n<![endif]-->\r\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n  <meta name=\"x-apple-disable-message-reformatting\">\r\n  <!--[if !mso]><!--><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><!--<![endif]-->\r\n  <title>Thank you for your interest in Epilog Laser!</title>\r\n<link rel=\"apple-touch-icon\" sizes=\"180x180\" href=\"https://www.epiloglaser.com/assets/icons/apple-touch-icon.png?v=eEGJYdwYW8\">\r\n	<link rel=\"icon\" type=\"image/png\" sizes=\"32x32\" href=\"https://www.epiloglaser.com/assets/icons/favicon-32x32.png?v=eEGJYdwYW8\">\r\n	<link rel=\"icon\" type=\"image/png\" sizes=\"16x16\" href=\"https://www.epiloglaser.com/assets/icons/favicon-16x16.png?v=eEGJYdwYW8\">\r\n	<link rel=\"manifest\" href=\"https://www.epiloglaser.com/assets/icons/site.webmanifest?v=eEGJYdwYW8\">\r\n	<link rel=\"mask-icon\" href=\"https://www.epiloglaser.com/assets/icons/safari-pinned-tab.svg?v=eEGJYdwYW8\" color=\"#00578a\">\r\n	<link rel=\"shortcut icon\" href=\"https://www.epiloglaser.com/assets/icons/favicon.ico?v=eEGJYdwYW8\">\r\n	<meta name=\"apple-mobile-web-app-title\" content=\"Epilog Laser\">\r\n	<meta name=\"application-name\" content=\"Epilog Laser\">\r\n  \r\n    <style type=\"text/css\">\r\n      table, td { color: #333333; } a { color: #00578a; text-decoration: none; } @media (max-width: 480px) { #u_content_image_7 .v-text-align { text-align: left !important; } #u_content_image_13 .v-container-padding-padding { padding: 0px 15px !important; } #u_content_heading_18 .v-container-padding-padding { padding: 20px 10px 0px 30px !important; } #u_content_text_20 .v-container-padding-padding { padding: 10px 30px !important; } #u_content_button_2 .v-container-padding-padding { padding: 10px 30px 30px !important; } #u_content_button_2 .v-padding { padding: 10px 20px !important; } #u_content_heading_12 .v-container-padding-padding { padding: 60px 15px 10px 30px !important; } #u_content_text_19 .v-container-padding-padding { padding: 0px 30px 50px !important; } #u_content_heading_17 .v-container-padding-padding { padding: 40px 10px 0px 30px !important; } #u_content_text_18 .v-container-padding-padding { padding: 10px 30px !important; } #u_content_button_5 .v-container-padding-padding { padding: 10px 10px 10px 30px !important; } #u_content_button_5 .v-padding { padding: 10px 20px !important; } #u_content_text_16 .v-container-padding-padding { padding: 10px 30px !important; } #u_content_button_4 .v-container-padding-padding { padding: 10px 30px 30px !important; } #u_content_button_4 .v-text-align { text-align: left !important; } #u_content_heading_13 .v-container-padding-padding { padding: 40px 10px 0px 30px !important; } #u_content_text_15 .v-container-padding-padding { padding: 10px 30px !important; } #u_content_button_3 .v-container-padding-padding { padding: 10px 10px 30px 30px !important; } #u_content_heading_8 .v-container-padding-padding { padding: 15px !important; } }\r\n@media only screen and (min-width: 820px) {\r\n  .u-row {\r\n    width: 800px !important;\r\n  }\r\n  .u-row .u-col {\r\n    vertical-align: top;\r\n  }\r\n  .u-row .u-col-33p33 {\r\n    width: 266.64px !important;\r\n  }\r\n  .u-row .u-col-50 {\r\n    width: 400px !important;\r\n  }\r\n  .u-row .u-col-66p67 {\r\n    width: 533.36px !important;\r\n  }\r\n  .u-row .u-col-100 {\r\n    width: 800px !important;\r\n  }\r\n}\r\n@media (max-width: 820px) {\r\n  .u-row-container {\r\n    max-width: 100% !important;\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n  }\r\n  .u-row .u-col {\r\n    min-width: 320px !important;\r\n    max-width: 100% !important;\r\n    display: block !important;\r\n  }\r\n  .u-row {\r\n    width: calc(100% - 40px) !important;\r\n  }\r\n  .u-col {\r\n    width: 100% !important;\r\n  }\r\n  .u-col > div {\r\n    margin: 0 auto;\r\n  }\r\n}\r\nbody {\r\n  margin: 0;\r\n  padding: 0;\r\n}\r\ntable,\r\ntr,\r\ntd {\r\n  vertical-align: top;\r\n  border-collapse: collapse;\r\n}\r\np {\r\n  margin: 0;\r\n}\r\n.ie-container table,\r\n.mso-container table {\r\n  table-layout: fixed;\r\n}\r\n* {\r\n  line-height: inherit;\r\n}\r\na[x-apple-data-detectors=\'true\'] {\r\n  color: inherit !important;\r\n  text-decoration: none !important;\r\n}\r\n</style>\r\n  \r\n  \r\n<!--[if !mso]><!--><link href=\"https://fonts.googleapis.com/css?family=Montserrat:400,700\" rel=\"stylesheet\" type=\"text/css\"><!--<![endif]-->\r\n  <!--[if IE]><div class=\"ie-container\"><![endif]-->\r\n  <!--[if mso]><div class=\"mso-container\"><![endif]-->\r\n  <table style=\"border-collapse: collapse;table-layout: fixed;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;vertical-align: top;min-width: 320px;Margin: 0 auto;background-color: #333333;width:100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n  <tr style=\"vertical-align: top\">\r\n    <td style=\"word-break: break-word;border-collapse: collapse !important;vertical-align: top\">\r\n    <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td align=\"center\" style=\"background-color: #333333;\"><![endif]-->\r\n<div id=\"preview_text\" style=\"display:none;font-size:1px;color:#333333;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;\">A brochure and sample kit is on its way to you. In the meantime, we\'d like to introduce you to your local distributor.</div>\r\n    \r\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: transparent;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: transparent;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"800\" style=\"width: 800px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px;min-width: 800px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <div class=\"v-text-align\" style=\"color: #ffffff; line-height: 170%; text-align: center; word-wrap: break-word;\">\r\n    \r\n  </div>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div>\r\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: #ffffff;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: #ffffff;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"800\" style=\"width: 800px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px;min-width: 800px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:20px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n  <tbody><tr>\r\n    <td class=\"v-text-align\" style=\"padding-right: 0px;padding-left: 0px;\" align=\"left\">\r\n      \r\n      <img align=\"left\" border=\"0\" src=\"https://www.epiloglaser.com/assets/img/dist-site/email/epilog-logo-h.png\" alt=\"Epilog Laser\" title=\"Epilog Laser\" style=\"outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;clear: both;display: inline-block !important;border: none;height: auto;float: none;width: 40%;max-width: 304px;\" width=\"304\">\r\n      \r\n    </td>\r\n  </tr>\r\n</tbody></table>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div>\r\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: #ffffff;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: #ffffff;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"800\" style=\"width: 800px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px;min-width: 800px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:0px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n  <tbody><tr>\r\n    <td class=\"v-text-align\" style=\"padding-right: 0px;padding-left: 0px;\" align=\"center\">\r\n      \r\n      <img align=\"center\" border=\"0\" src=\"https://www.epiloglaser.com/assets/img/dist-site/email/hero.jpg\" alt=\"Laser Engraving / Cutting / Marking Systems\" title=\"Laser Engraving / Cutting / Marking Systems\" style=\"outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;clear: both;display: inline-block !important;border: none;height: auto;float: none;width: 100%;max-width: 800px;\" width=\"800\">\r\n      \r\n    </td>\r\n  </tr>\r\n</tbody></table>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div>\r\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: #ffffff;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: #ffffff;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"800\" style=\"width: 800px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px;min-width: 800px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <table height=\"0px\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;table-layout: fixed;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;vertical-align: top;border-top: 0px solid #BBBBBB;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%\">\r\n    <tbody>\r\n      <tr style=\"vertical-align: top\">\r\n        <td style=\"word-break: break-word;border-collapse: collapse !important;vertical-align: top;font-size: 0px;line-height: 0px;mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%\">\r\n          <span>&nbsp;</span>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div>\r\n      \r\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: #ffffff;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: #ffffff;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"785\" style=\"width: 785px;padding: 0px;border-top: 0px solid transparent;border-left: 15px solid #00578a;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px;min-width: 800px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 15px solid #00578a;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n  </tbody><tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:15px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <h1 class=\"v-text-align\" style=\"margin: 0px; line-height: 140%; text-align: left; word-wrap: break-word; font-weight: normal; font-family: \'Montserrat\',sans-serif; font-size: 22px;\">\r\n    Thank you for your interest in Epilog Laser!\r\n  </h1>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div>\r\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: #ffffff;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: #ffffff;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"800\" style=\"width: 800px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px;min-width: 800px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:20px 30px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <div class=\"v-text-align\" style=\"line-height: 160%; text-align: center; word-wrap: break-word;\">\r\n	  <p style=\"margin-bottom: 1em; font-size: 14px; line-height: 160%; text-align: left;\">A brochure and sample kit is on its way to you. In the meantime, we\'d like to introduce you to <span style=\"color: #00578a; font-size: 14px; line-height: 22.4px;\"><strong><a rel=\"noopener\" href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60q3m2nnW7lCdLW6lZ3q7N1STttN8VPNMW5r_qnq4ftzHPN6TL89MrKGYYW1lzJy380zF5vW4_hQ-_6-dpSxVk3pys4P9cFNW2QCHWX1MsDbjW3TJ5D76hYcBsW9k85VC6BxkqMN6wV2_qq97CqW6rdzZC1PNlBNW6ZGRyQ6_gnxmW2qs_sJ7LdPVqW20HYLx5N-k9MW6ct0nM28sWcpW7LsfKD5FgtXxW3ccJyc3V9MyJW3m3zPG65fTt0N8hJy7V4W1Z-W3PQdps73B3kjW7rn-q98z2dkBW27cCQ76kp5fxW8vDDM46fzKYYW4kMqMf3P425Nf81V7wv04\" target=\"_blank\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"PbsSbk/g\">Keystone Prototyping Solutions</a></strong></span> as the exclusive distributor in your area.</p>\r\n	  <p style=\"margin-bottom: 1em; font-size: 14px; line-height: 160%; text-align: left;\"><span style=\"color: #00578a; font-size: 14px; line-height: 22.4px;\"><strong><a rel=\"noopener\" href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60q3m2nnW7lCdLW6lZ3pTW5Qjl_k3zYJF5W3jR-1X5kbQrBW7yQsQ68fwRX6W4yLtNH8gr1l3W3v3XJS1kcwrpW36vBQy6qglpmW258yQV3JtXdTVrmBrw97-TzQW2_tG918G7whzW5bgSx98lybZ4N4WrxRbj3J99W2cdlxG4Pf1scW2ZzHwy3QTbQ9W3Ldm7D8KZNcVW7c961L1cXdmLW8c5zqV5B31sYW36sRM-2g8dvyW5hJHTJ9l9DtPW7Nfkx45grTkvW4lvr-k22ybWzN3Q8j-bx-BrhW4KbqTf1qKBcDW3Jm50G6j2X-3VFngqJ8_r8W-f1jGz2-04\" target=\"_blank\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"gciWr5aa\">Keystone Prototyping Solutions</a></strong></span> provides you with over 30 years of experience in the engraving industry to help find the laser system that best meets your needs. They are looking forward to speaking with you regarding Epilog\'s equipment features, current sales pricing, and support. Contact them today at<span style=\"color: #00578a; font-size: 14px; line-height: 22.4px;\"><strong> <a rel=\"noopener\" href=\"mailto:info@keystoneprototypingsolutions.com\" target=\"_blank\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"q+XATh/5\">info@keystoneprototypingsolutions.com</a></strong></span> or call <span style=\"color: #00578a; font-size: 14px; line-height: 22.4px;\"><strong><a href=\"tel:+1-844-959-0100\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"KMd2be8L\" target=\"_blank\">(844) 959-0100</a></strong></span> to find out more and to set up a demonstration.</p>\r\n  </div>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div>\r\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: #ffffff;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: #ffffff;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"400\" style=\"width: 400px;padding: 0px 0px 10px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-50\" style=\"max-width: 320px;min-width: 400px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px 0px 10px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table id=\"u_content_image_7\" style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:15px 30px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n  <tbody><tr>\r\n    <td class=\"v-text-align\" style=\"padding-right: 0px;padding-left: 0px;\" align=\"left\">      \r\n      <img align=\"left\" border=\"0\" src=\"https://www.epiloglaser.com/assets/img/dist-site/email/na/na-pa_keystone-prototyping-solutions-map.png\" alt=\"Keystone Prototyping Solutions\" title=\"Keystone Prototyping Solutions\" style=\"outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;clear: both;display: inline-block !important;border: none;height: auto;float: none;width: 100%;\">      \r\n    </td>\r\n  </tr>\r\n</tbody></table>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"400\" style=\"width: 400px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-50\" style=\"max-width: 320px;min-width: 400px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:20px 30px 0px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <h3 class=\"v-text-align\" style=\"margin: 0px; color: #00578a; line-height: 140%; text-align: left; word-wrap: break-word; font-weight: normal; font-family: \'Montserrat\',sans-serif; font-size: 18px;\">\r\n    Keystone Prototyping Solutions\r\n  </h3>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:0px 30px 5px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <h4 class=\"v-text-align\" style=\"margin: 0px; color: #888888; line-height: 140%; text-align: left; word-wrap: break-word; font-weight: normal; font-family: arial,helvetica,sans-serif; font-size: 16px;\">\r\n    Pennsylvania\r\n  </h4>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:10px 10px 10px 30px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <div class=\"v-text-align\" style=\"line-height: 140%; text-align: left; word-wrap: break-word;\">\r\n    <p style=\"margin-bottom: 1em; font-size: 14px; line-height: 140%;\"><strong>Contact: Ned Sheerin</strong>\r\n		<br>414 Corbet Street\r\n		<br>Tarentum, PA 15084\r\n		<br>Phone: <a href=\"tel:+1-724-224-0100\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"c09PV3Qe\" target=\"_blank\">(724) 224-0100</a>\r\n		<br>Toll Free: <a href=\"tel:+1-844-959-0100\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"PvjbXTM+\" target=\"_blank\">(844) 959-0100</a>\r\n		<br><a rel=\"noopener\" href=\"mailto:info@keystoneprototypingsolutions.com\" target=\"_blank\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"c0ByTiN5\">info@keystoneprototypingsolutions.com</a>\r\n		<br><a rel=\"noopener\" href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60q3m2nnW7lCdLW6lZ3nwW85dhRg8vgdVWW2dDVtJ6z0LgMW7wkFL55HCqffW2lb1zg3c3SkLW725YxN3nFsp7W3X3_gK1S-sqCW8HqysN4GqzK6W3vq1tY8_Sw5ZW5Yml0617xJYbW709W1q3jK81JW4KJ9Ls4208xRW99vV9y6C6tH9W2H493J8NQ8-2W3xSTGr75SkBZN25Ykh0k2kbJN5Wmw9sx6PN8W2LvQJh3LM58YN3jXXDL4clVVN4sYqvyw9sQkV8RdTy4lT4w3W7N_1G13X_z4sW7-LTnd8kxtQ5W44ZxlF1RKK7gW1g-twL70lngWf2v3MNl04\" target=\"_blank\" data-hs-link-id=\"2\" data-hs-link-id-v2=\"D3EJQrQp\">www.keystoneprototypingsolutions.com</a></p>	  \r\n  </div>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div>\r\n<div data-global-resource-path=\"Global_Shared-Content/Global_Features/Global_Features_ENG.html\"><div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent; display:none;\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: #ffffff;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: #ffffff;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"800\" style=\"width: 800px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px;min-width: 800px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:20px 10px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <table height=\"0px\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;table-layout: fixed;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;vertical-align: top;border-top: 1px solid #e5e5e5;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%\">\r\n    <tbody>\r\n      <tr style=\"vertical-align: top\">\r\n        <td style=\"word-break: break-word;border-collapse: collapse !important;vertical-align: top;font-size: 0px;line-height: 0px;mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%\">\r\n          <span>&nbsp;</span>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div>\r\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: #ffffff;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: #ffffff;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"400\" style=\"width: 400px;padding: 0px 0px 20px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-50\" style=\"max-width: 320px;min-width: 400px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px 0px 20px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table id=\"u_content_image_13\" style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n  <tbody><tr>\r\n    <td class=\"v-text-align\" style=\"padding-right: 0px;padding-left: 0px;\" align=\"right\">\r\n      <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60q3m2nnW7lCdLW6lZ3kYW8tmj-L4sfnZRW1Fc4pm1QJrzcW78kDVM81cYr0W62dCzk8vrY9zVyBZ6r74PCCvW4z56j32lGD7RW1-l6KY2G3Q8dW990chR2_3txwN7tW4LmVrb4XW6yk0FZ2vyChKV8VC1_3NczMnW6-zSRS1f8QGnW4N94m15BY1rVN4g3TvXp4m24W7bRYTB2jJnzFW5VP1Fb21nxw2W2G3j4x7Wh-mdW9jd7Js45fqVMW1S4p72480cyGW1sNdD574QZh8W4zR7GK5_xKjVW8yM5018xb4Z2W8LXqLB238mr3W8MkhsY5RBP8xf212CXP04\" target=\"_blank\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"0/iU5RFv\">\r\n      <img align=\"right\" border=\"0\" src=\"https://www.epiloglaser.com/assets/img/dist-site/email/building.jpg\" alt=\"Epilog Building\" title=\"Epilog Building\" style=\"outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;clear: both;display: inline-block !important;border: none;height: auto;float: none;width: 100%;max-width: 290px;\" width=\"290\">\r\n      </a>\r\n    </td>\r\n  </tr>\r\n</tbody></table>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"400\" style=\"width: 400px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-50\" style=\"max-width: 320px;min-width: 400px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table id=\"u_content_heading_18\" style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:20px 10px 0px 30px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <h1 class=\"v-text-align\" style=\"margin: 0px; line-height: 140%; text-align: left; word-wrap: break-word; font-weight: normal; font-family: \'Montserrat\',sans-serif; font-size: 20px;\">\r\n    An American Company\r\n  </h1>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n<table id=\"u_content_text_20\" style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:10px 30px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <div class=\"v-text-align\" style=\"line-height: 140%; text-align: left; word-wrap: break-word;\">\r\n    <p style=\"margin-bottom: 1em; font-size: 14px; line-height: 140%;\"><span style=\"font-family: \'Montserrat\', sans-serif; font-size: 14px; line-height: 19.6px;\">Epilog Laser was created in 1988 with the concept of bringing CO2 laser technology to commercial manufacturers and business owners. After 30+ years of designing and engineering the highest-quality laser machines, our equipment can now be found in all types of settings from sign shops to schools to industrial manufacturing facilities and well beyond.</span></p>\r\n  </div>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n<table id=\"u_content_button_2\" style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:10px 10px 30px 30px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n<div class=\"v-text-align\" align=\"left\">\r\n  <!--[if mso]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border-spacing: 0; border-collapse: collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;font-family:\'Montserrat\',sans-serif;\"><tr><td class=\"v-text-align\" style=\"font-family:\'Montserrat\',sans-serif;\" align=\"left\"><v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office.word\" href=\"https://www.epiloglaser.com/company/made-in-usa/\" style=\"height:37px; v-text-anchor:middle; width:119px;\" arcsize=\"67.5%\" stroke=\"f\" fillcolor=\"#00578a\"><w:anchorlock/><center style=\"color:#FFFFFF;font-family:\'Montserrat\',sans-serif;\"><![endif]-->\r\n    <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60q3m2nnW7lCdLW6lZ3l1W204D4t8jfkp7W7x05hq1PY5v9N82VfrPhWgJ-W3dPF6857m6JWVxzkwY4stKdKW8brZxM8_9k6SW4dQVMT5HrR9BW9cs4dT8RVDR-W732MVf3l9tKRW3sqVGb863RvMN7Xlsqc__Rn3W6hT7mZ3JQDxCW2l-6qD3W4CcwN8B-4Cn-Sy_NW1mmz6F3RTZFJW6SgCF01fGLdwW85Vjfz8Sx9sbV18J5b51dYm_W5LDH4w16yp26W2GFm079fDBYYW8_jzt-1Vd584W5HG5zw4nGb8wW4pq1f36l9xgfW8JjhG-336jtkf8t-31T04\" target=\"_blank\" style=\"box-sizing: border-box;display: inline-block;font-family:\'Montserrat\',sans-serif;text-decoration: none;-webkit-text-size-adjust: none;text-align: center;color: #FFFFFF; background-color: #00578a; border-radius: 25px;-webkit-border-radius: 25px; -moz-border-radius: 25px; width:auto; max-width:100%; overflow-wrap: break-word; word-break: break-word; word-wrap:break-word; mso-border-alt: none;\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"w+dE1qW5\">\r\n      <span class=\"v-padding\" style=\"display:block;padding:10px 20px;line-height:120%;\"><span style=\"font-size: 14px; line-height: 16.8px;\">Learn More</span></span>\r\n    </a>\r\n  <!--[if mso]></center></v:roundrect></td></tr></table><![endif]-->\r\n</div>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div>\r\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: #00578a;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: #00578a;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"267\" style=\"width: 267px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n		&nbsp;\r\n		\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"533\" style=\"width: 533px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div>\r\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: #ffffff;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: #ffffff;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"400\" style=\"width: 400px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-50\" style=\"max-width: 320px;min-width: 400px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:0px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n  <tbody><tr>\r\n    <td class=\"v-text-align\" style=\"padding-right: 0px;padding-left: 0px;\" align=\"center\">\r\n      \r\n      <img align=\"center\" border=\"0\" src=\"https://www.epiloglaser.com/assets/img/dist-site/email/iris-camera.jpg\" alt=\"Iris Camera\" title=\"Iris Camera\" style=\"outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;clear: both;display: inline-block !important;border: none;height: auto;float: none;width: 100%;max-width: 400px;\" width=\"400\">\r\n      \r\n    </td>\r\n  </tr>\r\n</tbody></table>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"400\" style=\"width: 400px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-50\" style=\"max-width: 320px;min-width: 400px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n    \r\n<table id=\"u_content_heading_17\" style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:40px 10px 0px 30px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <h3 class=\"v-text-align\" style=\"margin: 0px; line-height: 140%; text-align: left; word-wrap: break-word; font-weight: normal; font-family: \'Montserrat\',sans-serif; font-size: 18px;\">\r\n    IRIS™ Camera Positioning\r\n  </h3>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:0px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n  <tbody><tr>\r\n    <td class=\"v-text-align\" style=\"padding-right: 0px;padding-left: 0px;\" align=\"center\">\r\n      \r\n      <img align=\"center\" border=\"0\" src=\"https://www.epiloglaser.com/assets/img/dist-site/email/gradient-line.jpg\" alt=\"epilog gradient\" title=\"epilog gradient\" style=\"outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;clear: both;display: inline-block !important;border: none;height: auto;float: none;width: 100%;max-width: 400px;\" width=\"400\">\r\n      \r\n    </td>\r\n  </tr>\r\n</tbody></table>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n<table id=\"u_content_text_18\" style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:10px 30px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <div class=\"v-text-align\" style=\"line-height: 140%; text-align: left; word-wrap: break-word;\">\r\n    <p style=\"margin-bottom: 1em; font-size: 14px; line-height: 140%;\"><span style=\"font-family: \'Montserrat\', sans-serif; font-size: 14px; line-height: 19.6px;\">Overhead cameras provide an accurate picture of the working area for accurate artwork placement. Drag and drop your artwork on screen for the fastest work processing. </span></p>\r\n  </div>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n<table id=\"u_content_button_5\" style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:10px 10px 10px 30px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n<div class=\"v-text-align\" align=\"left\">\r\n  <!--[if mso]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border-spacing: 0; border-collapse: collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;font-family:\'Montserrat\',sans-serif;\"><tr><td class=\"v-text-align\" style=\"font-family:\'Montserrat\',sans-serif;\" align=\"left\"><v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office.word\" href=\"https://www.epiloglaser.com/laser-machines/fusion-pro-laser-series/\" style=\"height:37px; v-text-anchor:middle; width:119px;\" arcsize=\"67.5%\" stroke=\"f\" fillcolor=\"#00578a\"><w:anchorlock/><center style=\"color:#FFFFFF;font-family:\'Montserrat\',sans-serif;\"><![endif]-->\r\n    <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3m2nnW7Y8-PT6lZ3nhW93qfJT2pd-xLW49D-1d5tmDgRW6z_9Xp5slM_zW4nhLK86SZVZtW7Y4QqK6QG6rnW25mVjZ4czyRdW6cZ8nb8hmMdzW56Cp8S5P62CvW6DfynS3dfmJBW7D6z6H1r55h0W5LgbqR8g1g9JN1WkRP1MRm7BW1d16sN8FPf51N5BFfSS-3zMNW7vw98d1zsjCKVdgK759hVwGJW3_4DzK2563zgW98xxrC5QT29jW6sNwdL4Z2bC0N46648GS8g4vW4TX5l74t52knW90jLZc7NK0KdW5-CFvp6drd34N2x6-j_wGTR_W3NB0jS28DznsW5vL1gT2mZ92Qf4s6wrb04\" target=\"_blank\" style=\"box-sizing: border-box;display: inline-block;font-family:\'Montserrat\',sans-serif;text-decoration: none;-webkit-text-size-adjust: none;text-align: center;color: #FFFFFF; background-color: #00578a; border-radius: 25px;-webkit-border-radius: 25px; -moz-border-radius: 25px; width:auto; max-width:100%; overflow-wrap: break-word; word-break: break-word; word-wrap:break-word; mso-border-alt: none;\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"jOCVTQ1d\">\r\n      <span class=\"v-padding\" style=\"display:block;padding:10px 20px;line-height:120%;\"><span style=\"font-size: 14px; line-height: 16.8px;\">Learn More</span></span>\r\n    </a>\r\n  <!--[if mso]></center></v:roundrect></td></tr></table><![endif]-->\r\n</div>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div>\r\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: #ffffff;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: #ffffff;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"400\" style=\"width: 400px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-50\" style=\"max-width: 320px;min-width: 400px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:40px 10px 0px 30px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <h3 class=\"v-text-align\" style=\"margin: 0px; line-height: 140%; text-align: left; word-wrap: break-word; font-weight: normal; font-family: \'Montserrat\',sans-serif; font-size: 18px;\">\r\n    Touch Screen\r\n  </h3>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:0px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n  <tbody><tr>\r\n    <td class=\"v-text-align\" style=\"padding-right: 0px;padding-left: 0px;\" align=\"center\">\r\n      \r\n      <img align=\"center\" border=\"0\" src=\"https://www.epiloglaser.com/assets/img/dist-site/email/gradient-line.jpg\" alt=\"epilog gradient\" title=\"epilog gradient\" style=\"outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;clear: both;display: inline-block !important;border: none;height: auto;float: none;width: 100%;max-width: 400px;\" width=\"400\">\r\n      \r\n    </td>\r\n  </tr>\r\n</tbody></table>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n<table id=\"u_content_text_16\" style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:10px 30px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <div class=\"v-text-align\" style=\"line-height: 140%; text-align: left; word-wrap: break-word;\">\r\n    <p style=\"margin-bottom: 1em; font-size: 14px; line-height: 140%;\"><span style=\"font-family: \'Montserrat\', sans-serif; font-size: 14px; line-height: 19.6px;\">Select between jobs, auto focus the laser, and rerun jobs at the touch of a button from the easy-to-use touch screen interface right at the laser.</span></p>\r\n  </div>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n<table id=\"u_content_button_4\" style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:10px 30px 10px 10px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n<div class=\"v-text-align\" align=\"right\">\r\n  <!--[if mso]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border-spacing: 0; border-collapse: collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;font-family:\'Montserrat\',sans-serif;\"><tr><td class=\"v-text-align\" style=\"font-family:\'Montserrat\',sans-serif;\" align=\"right\"><v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office.word\" href=\"https://www.epiloglaser.com/laser-machines/fusion-pro-laser-series/\" style=\"height:37px; v-text-anchor:middle; width:119px;\" arcsize=\"67.5%\" stroke=\"f\" fillcolor=\"#00578a\"><w:anchorlock/><center style=\"color:#FFFFFF;font-family:\'Montserrat\',sans-serif;\"><![endif]-->\r\n    <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3m2nnW7Y8-PT6lZ3lHV1XRLs5qbnnYW6psJFB1KjwG6N8wtY5z8gC-9W35Bq4R8QBxcrW1dcXnp2Mh_R3W6VpTkJ2PmkprW1Rb3CF3Nb5bGW7PkBgs3mKzg8W6-_z-B1nqKZ5W2tGS1J5V_TLHW23nz8q5DbxZjW6K6fxF7n2_4_W5BqW_-8gPVQlW6jmJw31jsvpXW3_Kjgw55FxdxW2rqSzm8X8x3GW2bXcDR3Y1c9kW8SQ6V_1zc4WcW65wRJt1c9WMyW2BZ3TT8MXssfW3GwC1C9kRRpGW8Sy-8Z8LHFXrW4pPcnj2zNpS3W2FxkSb7G6wJrN7Ltzzg9b_M7W5XvNbD7fLFCZf734qWs04\" target=\"_blank\" style=\"box-sizing: border-box;display: inline-block;font-family:\'Montserrat\',sans-serif;text-decoration: none;-webkit-text-size-adjust: none;text-align: center;color: #FFFFFF; background-color: #00578a; border-radius: 25px;-webkit-border-radius: 25px; -moz-border-radius: 25px; width:auto; max-width:100%; overflow-wrap: break-word; word-break: break-word; word-wrap:break-word; mso-border-alt: none;\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"0WVQa/W2\">\r\n      <span class=\"v-padding\" style=\"display:block;padding:10px 20px;line-height:120%;\"><span style=\"font-size: 14px; line-height: 16.8px;\">Learn More</span></span>\r\n    </a>\r\n  <!--[if mso]></center></v:roundrect></td></tr></table><![endif]-->\r\n</div>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"400\" style=\"width: 400px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-50\" style=\"max-width: 320px;min-width: 400px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:0px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n  <tbody><tr>\r\n    <td class=\"v-text-align\" style=\"padding-right: 0px;padding-left: 0px;\" align=\"center\">\r\n      \r\n      <img align=\"center\" border=\"0\" src=\"https://www.epiloglaser.com/assets/img/dist-site/email/touch-screen.jpg\" alt=\"touch screen\" title=\"touch screen\" style=\"outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;clear: both;display: inline-block !important;border: none;height: auto;float: none;width: 100%;max-width: 400px;\" width=\"400\">\r\n      \r\n    </td>\r\n  </tr>\r\n</tbody></table>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div>\r\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: #ffffff;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: #ffffff;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"400\" style=\"width: 400px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-50\" style=\"max-width: 320px;min-width: 400px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:0px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n  <tbody><tr>\r\n    <td class=\"v-text-align\" style=\"padding-right: 0px;padding-left: 0px;\" align=\"center\">\r\n      \r\n      <img align=\"center\" border=\"0\" src=\"https://www.epiloglaser.com/assets/img/dist-site/email/safeguard.jpg\" alt=\"Safe Guard Feature\" title=\"Safe Guard Feature\" style=\"outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;clear: both;display: inline-block !important;border: none;height: auto;float: none;width: 100%;max-width: 400px;\" width=\"400\">\r\n      \r\n    </td>\r\n  </tr>\r\n</tbody></table>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"400\" style=\"width: 400px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-50\" style=\"max-width: 320px;min-width: 400px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table id=\"u_content_heading_13\" style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:40px 10px 0px 30px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <h3 class=\"v-text-align\" style=\"margin: 0px; line-height: 140%; text-align: left; word-wrap: break-word; font-weight: normal; font-family: \'Montserrat\',sans-serif; font-size: 18px;\">\r\n    SAFEGUARD™ Features\r\n  </h3>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:0px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n  <tbody><tr>\r\n    <td class=\"v-text-align\" style=\"padding-right: 0px;padding-left: 0px;\" align=\"center\">\r\n      \r\n      <img align=\"center\" border=\"0\" src=\"https://www.epiloglaser.com/assets/img/dist-site/email/gradient-line.jpg\" alt=\"epilog gradient\" title=\"epilog gradient\" style=\"outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;clear: both;display: inline-block !important;border: none;height: auto;float: none;width: 100%;max-width: 400px;\" width=\"400\">\r\n      \r\n    </td>\r\n  </tr>\r\n</tbody></table>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n<table id=\"u_content_text_15\" style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:10px 30px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <div class=\"v-text-align\" style=\"line-height: 140%; text-align: left; word-wrap: break-word;\">\r\n    <p style=\"margin-bottom: 1em; font-size: 14px; line-height: 140%;\"><span style=\"font-family: \'Montserrat\', sans-serif; font-size: 14px; line-height: 19.6px;\">Keep the mechanics of your laser machine cleaner than ever before with side enclosures, a fully covered x-axis assembly, and covered lens assembly. </span></p>\r\n  </div>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n<table id=\"u_content_button_3\" style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:10px 10px 10px 30px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n<div class=\"v-text-align\" align=\"left\">\r\n  <!--[if mso]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border-spacing: 0; border-collapse: collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;font-family:\'Montserrat\',sans-serif;\"><tr><td class=\"v-text-align\" style=\"font-family:\'Montserrat\',sans-serif;\" align=\"left\"><v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office.word\" href=\"https://www.epiloglaser.com/laser-machines/fusion-pro-laser-series/\" style=\"height:37px; v-text-anchor:middle; width:119px;\" arcsize=\"67.5%\" stroke=\"f\" fillcolor=\"#00578a\"><w:anchorlock/><center style=\"color:#FFFFFF;font-family:\'Montserrat\',sans-serif;\"><![endif]-->\r\n    <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3m2nnW7Y8-PT6lZ3lvW4mDrtK5F_w2BW8QkQ9X74GF_HVC2R_q958w_tW4xPjPP88cYyPW4m9l5S5njMz1N4xfrvlsfZ_KW6DwB8r85W1BZW7j6-Dw3JGQGVW12nG823s34XQW2Cwjnf3bbDMMW4RjBhC22MY_gW5jqbZ7137F6DN8jVM94vqwD9W7Pj2sn2lPjg4W5RQ5CJ642NKQW5KwlDZ9gvczmW4zwKbq4Qv_H_W296pFV5cHxfKN2w0r1_j2V5RW8tRCjV1RGsk1W7HX6SQ7YGvsNW4K8nC447LwyYW6g-xW06yJYd1W36GKFy5dtqX_W4j3L4t31XJWhW2BhlS41Sjlzmf5TZss804\" target=\"_blank\" style=\"box-sizing: border-box;display: inline-block;font-family:\'Montserrat\',sans-serif;text-decoration: none;-webkit-text-size-adjust: none;text-align: center;color: #FFFFFF; background-color: #00578a; border-radius: 25px;-webkit-border-radius: 25px; -moz-border-radius: 25px; width:auto; max-width:100%; overflow-wrap: break-word; word-break: break-word; word-wrap:break-word; mso-border-alt: none;\" data-hs-link-id=\"2\" data-hs-link-id-v2=\"8EX8kk5E\">\r\n      <span class=\"v-padding\" style=\"display:block;padding:10px 20px;line-height:120%;\"><span style=\"font-size: 14px; line-height: 16.8px;\">Learn More</span></span>\r\n    </a>\r\n  <!--[if mso]></center></v:roundrect></td></tr></table><![endif]-->\r\n</div>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div></div>\r\n<div data-global-resource-path=\"Global_Shared-Content/Global_Product-Lineup/Global_Product-Lineup_ENG.html\"><!-- Begin partial -->\r\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: #ffffff;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: #ffffff;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"800\" style=\"background-color: #00578a;width: 800px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px;min-width: 800px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"background-color: #00578a;width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:10px 10px 10px 30px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <h2 class=\"v-text-align\" style=\"margin: 0px; color: #ffffff; line-height: 140%; text-align: left; word-wrap: break-word; font-weight: normal; font-family: \'Montserrat\',sans-serif; font-size: 20px;\">\r\n    CO2 Laser Systems\r\n  </h2>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div>\r\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: #ffffff;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: #ffffff;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"800\" style=\"width: 800px;padding: 0px 0px 10px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px;min-width: 800px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px 0px 10px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:15px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <div>\r\n    <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;color:#787878;font-family:\'Mont\',Helvetica,Arial,sans-serif;font-size:12px\">\r\n  <tbody>    \r\n<!-- Fusion Maker 12-->\r\n<tr valign=\"middle\" style=\"padding:0; border-right: 1px solid #EBEBEB; border-left: 1px solid #EBEBEB;\">\r\n<td width=\"120\" height=\"40\" align=\"left\" style=\"border-collapse: collapse; color: #1B6BB4; line-height: 20px; padding: 5px 10px; border-right: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; border-top: 1px solid #EBEBEB; text-align: left\"><span><a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s6103m2nnW8wLKSR6lZ3kXW1hp0B28_LVnsN154B_ysp8QfW45Q_d01PrBQDN6lFbbJ3Kn-7W5wdrHd8LNgp2W8G50v94GwVB7W4FKxz894CYZWW77KFwJ76WFcjW2xqsm57PFlwKW2HrrTn7ccZYRW2627Yf3FH8B3N38SR4cJx1WyW7cjlCP952JdrW7V9qmW3S8hyQW84qMdv6SbszZW1wq5x97TNkhwW1qK1b25xGCQZW2f-zZ34kxkS1N8ld4hwgYDrpW6V4GFy8cV9GdW8Lqy1p2HhPp9W1GYmXD16S5CKW867C8N2NNcMPW70kb5p8TwwJNW51_4Wv7Kr932W2PJhFx1pBnQNW2YCY-B4wR-HDW9k0vrH639XRrf4K3KJY04\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"DbNXc+OE\" target=\"_blank\">Fusion Maker 12</a></span></td>\r\n<td style=\"border-collapse:collapse;color:#787878;line-height:20px;padding: 5px 10px;border-right:0px solid #EBEBEB;border-bottom:1px solid #EBEBEB;border-top: 1px solid #EBEBEB;text-align:left\"><span>Available in 30 and 40 watt configurations, the new Fusion Maker is Epilog’s starter system that delivers top-notch results. This compact system features a 24” x 12” (610 x 305 mm) work area, the revolutionary IRIS™ camera system for easy/accurate artwork placement, and 60 IPS engraving speeds.</span></td>\r\n</tr>\r\n<!--/Fusion Maker--> \r\n<!-- Fusion Maker 24 (CO2)-->\r\n<tr valign=\"middle\" style=\"padding:0; background: #F8F8F8; border-right: 1px solid #EBEBEB; border-left: 1px solid #EBEBEB;\">\r\n<td width=\"120\" height=\"40\" align=\"left\" style=\"border-collapse: collapse; color: #1B6BB4; line-height: 20px; padding: 5px 10px; border-right: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; text-align: left\"><span><a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s6103m2nnW8wLKSR6lZ3pNW1YTpf92wpFb-VN3sPq86XkF5W6nK2mP1XsDR6W8t0HH75mXtryW3cPwRt3R-ckZW4DhQz_5XXCQSW2sJhqM7dcn8xW7pWRzv8kM5_YW86nkzz55DCd_W5jjX1Q8KBjCvW6Mk6nw5mRJ1kW1ClXMT2rpsdVW2WDVBc5CV2dJVB0dr990BY0JW6BsxHX96QxBJVS_Lb66_dZ3gW8N4mWn6FQD9_W5QpTSY3qCkrsW6cg0P46rP8XTW6GLbwH4P1v_vW2wq9-878k2FrW37dptZ93T-_KW43JHcT3y_FvhW2DGSFF3WGsmdW7Ygknh8YKLMWW4zLvTd81D-1YW5MNpFD1nbzJ1W1tfXV48HXC06f1Dnk4-04\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"DC8TzhCW\" target=\"_blank\">Fusion Maker 24</a></span></td>\r\n<td style=\"border-collapse:collapse;color:#787878;line-height:20px;padding: 5px 10px;border-right:0px solid #EBEBEB;border-bottom:1px solid #EBEBEB; text-align:left\"><span>The mid-size system in the Fusion Maker Series, this machine features a 24”x 24” (610 x 610 mm) engraving table and is available in a 40 watt configuration. It also includes our IRIS™ camera system and features engraving speeds of up to 60 inches per second.</span></td>\r\n</tr>\r\n<!--/Fusion Maker-->\r\n<!-- Fusion Maker 36-->\r\n<tr valign=\"middle\" style=\"padding:0; border-right: 1px solid #EBEBEB; border-left: 1px solid #EBEBEB;\">\r\n<td width=\"120\" height=\"40\" align=\"left\" style=\"border-collapse: collapse; color: #1B6BB4; line-height: 20px; padding: 5px 10px; border-right: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; border-top: 1px solid #EBEBEB; text-align: left\"><span><a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s6103m2nnW8wLKSR6lZ3lBW7Dfl541Tmc3SN6KZGByRVTzyW2L6yVD1ZpsvtW6RgbNY45zHV2W7jcM-33NMPNSW66wdZt2gKJgmW7SVktM5_M36RW41fqVH8km3Z2F80FBPCNsHgW5z5tDN5R3L2cW1q3hlV4NPHp0MdBs7lzdrKFW14DdMp2N4Dy5VqyzFl1n7sK9W6GdQDK3KvST6N1yxRDVZ0JlXW13TpCT50ss3qW6gX7jq7yT-HTW25WYqc827ghpW2WVB8y6fFdMlW6PQkxM1Ty2GLW2Md_B22SyncMW5KWYzd5YPPkfW1XVr0R2LmhGwW6sPB624g8yBPW6bMW157hgC1KW32j5Z93PSpP3W4-dqKB3FW-ZFf66K_Ks04\" data-hs-link-id=\"2\" data-hs-link-id-v2=\"Lgh5poPZ\" target=\"_blank\">Fusion Maker 36</a></span></td>\r\n<td style=\"border-collapse:collapse;color:#787878;line-height:20px;padding: 5px 10px;border-right:0px solid #EBEBEB;border-bottom:1px solid #EBEBEB;border-top: 1px solid #EBEBEB;text-align:left\"><span>This is the largest system in the Fusion Maker Series, featuring a generous 36” x 24” (914 x 610 mm) engraving table and is available in 40 and 50-watt configurations. Like all Fusion systems, the Maker 36 has the revolutionary IRIS™ camera system for precise artwork placement.</span></td>\r\n</tr>\r\n<!--/Fusion Maker--> \r\n<!-- Fusion Edge 12 (CO2)-->\r\n<tr valign=\"middle\" style=\"padding:0; background: #F8F8F8; border-right: 1px solid #EBEBEB; border-left: 1px solid #EBEBEB;\">\r\n<td width=\"120\" height=\"40\" align=\"left\" style=\"border-collapse: collapse; color: #1B6BB4; line-height: 20px; padding: 5px 10px; border-right: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; text-align: left\"><span><a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s6103m2nnW8wLKSR6lZ3l9W2C2wdq3pFrZ-W3Q1-YG7lq5z_VpDxbq4-FzPhW5Q_lJn6xNWZRW6d3Ffs24bsd9W6GK3vk1xt4NVW41Mj3d85MHd2W1vFDzM6rzg50W1h2RML6PrZ69W5HLXBp3v9J2VW4dwPB-99C8Q_VfvwKM7flKwwV-V6TX1Y31CMW1XtvzB4lg7-YW8SVRTq95lg0xW6FtwKH2LPMg5W6GyGYb2gJ3yHVvBcL58j6_-dN87Lz0SK2wVsW629Mxq69qxfYW6P_cjP4sg4K4W6HKv7h26xzbjW1L4F4p4gjd8LW7LcfcV500ckpW8vDdqg2n9FHqN49Zbg-qRlZCW8YQcgC3BmG4ZW68Kpqg7FFJkGf1KbrhP04\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"uQaZ9GvG\" target=\"_blank\">Fusion Edge 12</a></span></td>\r\n<td style=\"border-collapse:collapse;color:#787878;line-height:20px;padding: 5px 10px;border-right:0px solid #EBEBEB;border-bottom:1px solid #EBEBEB; text-align:left\"><span>The Fusion Edge 12 incorporates our highest-quality engraving technology into a small-format desktop system, with a 24\" x 12\" (610 x 305 mm) work area and 120 inches/second engraving speed. 50 or 60 watt CO2 laser options.</span></td>\r\n</tr>\r\n<!--/Fusion Edge 12 (CO2)-->	  \r\n			\r\n<!-- Fusion Edge 24-->\r\n<tr valign=\"middle\" style=\"padding:0; border-right: 1px solid #EBEBEB; border-left: 1px solid #EBEBEB;\">\r\n<td width=\"120\" height=\"40\" align=\"left\" style=\"border-collapse: collapse; color: #1B6BB4; line-height: 20px; padding: 5px 10px; border-right: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; text-align: left\"><span><a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s6103m2nnW8wLKSR6lZ3q7VDWwT-1GYW7yW1Lc07r2ZWhNSW605_B_1VQjz-VqVlsY6w6NHsW2ZKvdg7C3_KdW6N6k9G1bxP8lW9k10FS8QbgdzW1pS6C99m10bNW7f-_vG7wMgHnW3sPRFn6lJqrlW3wdhrG3Dszn5W6QBfBH2zTCd5W8m1cwv2GxhwKVvhjfz932BbYN4jf54K6ck1VW9kctg21JS5V2W463XwS2LPjLmW3wg2kx4xmPHcW5RyXM61gzPLGW25B50j8BthpbW54_Xgc39-xNfVRbm5v8PphlHN7cmQ1_YVkZGW30x41899C2Q0W1k9hcj66YVJNVmJlzp2pQb9QW2sfNSL8NsNqwW5KBd4q7FnRQCf3Cmywl04\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"7nFnjbHm\" target=\"_blank\">Fusion Edge 24</a></span></td>\r\n<td style=\"border-collapse:collapse;color:#787878;line-height:20px;padding: 5px 10px;border-right:0px solid #EBEBEB;border-bottom:1px solid #EBEBEB;text-align:left\"><span>The Fusion Edge 24 is the second system in the Fusion Edge Series. It features a 24” x 24” (610 x 610 mm) work area and is available in 50 or 60 watt CO2 configurations. As with all Fusion Edge systems, the Edge 24 features a touchscreen display panel, on-screen artwork positioning with our IRIS™ camera system, and 120 IPS/3.05 m/s engraving speeds.</span></td>\r\n</tr>\r\n<!--/Fusion Edge 24-->\r\n			\r\n<!-- Fusion Edge 36-->\r\n<tr valign=\"middle\" style=\"padding:0; background: #F8F8F8; border-right: 1px solid #EBEBEB; border-left: 1px solid #EBEBEB;\">\r\n<td width=\"120\" height=\"40\" align=\"left\" style=\"border-collapse: collapse; color: #1B6BB4; line-height: 20px; padding: 5px 10px; border-right: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; text-align: left\"><span><a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s6103m2nnW8wLKSR6lZ3lDW63PnrC3D4DNyW3LJsYB8F3c83W1dMJwL5fgGvxW4jZq-v6cN6ZzW3zNFHN3csjNhW41wkQ13TZw3MW8Ys1st52JtvsW2C6MPP54dK_3W54D-yp15_KfTW6pFwgS97zxlSVF-Ldz3dms00W3h4qlh5B-G0sW3SVqKK5NcWN3W4XKDK07t-llGW704jG94c2xQXW4BGWl2454VlCW3t3FSP6SVp8gVn2h7q20q8GrW4pFt1h8vC2qrVKzHFB10H2_wW3xkZHp4hb2zjW84sSwx99qs8BW2t2WVZ1y7FbCW9ghMhY5jz8SRVQhZLJ4GnRlpW6mFprZ74YL2HW6Lj4-g5MMt8yN3TFZ20Qgp-nf6hPrwY04\" data-hs-link-id=\"2\" data-hs-link-id-v2=\"AXAWjIu1\" target=\"_blank\">Fusion Edge 36</a></span></td>\r\n<td style=\"border-collapse:collapse;color:#787878;line-height:20px;padding: 5px 10px;border-right:0px solid #EBEBEB;border-bottom:1px solid #EBEBEB;text-align:left\"><span>The largest system in the Fusion Edge Series, the Edge 36 offers a 36” x 24” (914 x 610 mm) engraving table and comes in a 60 watt CO2 configuration. The Edge 36 features 120 IPS/3.05 m/s engraving speeds, and features built-in Ethernet, USB, and Wireless options for networking your laser.</span></td>\r\n</tr>\r\n<!--/Fusion Edge 36-->			\r\n<!--Fusion Pro 24 (CO2) -->\r\n<tr valign=\"middle\" style=\"padding:0; border-right: 1px solid #EBEBEB; border-left: 1px solid #EBEBEB;\">\r\n<td width=\"120\" height=\"40\" align=\"left\" style=\"border-collapse: collapse; color: #1B6BB4; line-height: 20px; padding: 5px 10px; border-right: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; text-align: left\"><span><a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3m2nnW7Y8-PT6lZ3mvW3m7QdC19_q0QV8DqjF30qT_9W46jK5G7sSyZmW8n6g7F4qChVLN1rJtQRsQGg-W38nMT71583YbW6RnYWQ79JZlwW1PJPXM5YnmmtW7HvsgC3tbjyDW4GWPJ02J_5gcW8GDF3Q3NlfwVW4h7-mX4qnVy5W2YB-2y9c79-sW4vzC_V2yBc_3W250MkF5Wp8YRN5MKnvS3W5rJW8Xhy3J3VRlR5W7K6NXh8BZr5BVT-dv499QcCmW8tddcz2B0TWsW6j2jxM2pT8HDN1G4gNcgDDsnW6P81-D2kJR7dW41ph1r1hxRzKW2cxK5-47HQ0KV-gGMJ6V0HMQf7wfKMW04\" data-hs-link-id=\"3\" data-hs-link-id-v2=\"s98hMjIH\" target=\"_blank\">Fusion Pro 24</a></span></td>\r\n<td style=\"border-collapse:collapse;color:#787878;line-height:20px;padding: 5px 10px;border-right:0px solid #EBEBEB;border-bottom:1px solid #EBEBEB;text-align:left\"><span>The Fusion Pro 24 features a 24” x 24” (610 x 610 mm) engraving area, Epilog’s revolutionary IRIS™ Camera Positioning system, additional SAFEGUARD™ features, and more. This system is available with CO2, Fiber, or Dual-Source configurations and a variety of wattage options.</span></td>\r\n</tr>\r\n<!--/Fusion Pro 24 (CO2) -->			\r\n			\r\n<!--Fusion Pro 36 (CO2)-->\r\n<tr valign=\"middle\" style=\"padding:0; background: #F8F8F8; border-right: 1px solid #EBEBEB; border-left: 1px solid #EBEBEB;\">\r\n<td width=\"120\" height=\"40\" align=\"left\" style=\"border-collapse: collapse; color: #1B6BB4; line-height: 20px; padding: 5px 10px; border-right: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; text-align: left\"><span><a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3m2nnW7Y8-PT6lZ3nNW6LVq2n1V7Qp5W281-_z75w3v2W6R5C2k8StMMTW56Zgby35PhVhMTmwF97-TnRW5TZ6lK9gzFzPV12H_560Dr8kW8nh3Yl4zNr15W7GNlyC2cq_bcW2ljjrp9j292lW4tjJ9m2fhFSvW95FlY28mST4YW6PwRWP23y0_XN1-RXwjD5BKvW1wrS3J8rDb6sN9hHWBYglhFKVDkq0z1mtcMZW5NyFkn72r60hW1C7J-C4Y-qFMW73kRC55pM8KrW1bsbps41mL7DW3HWCb35M1BlyW8vfmG55XBn5wW1gTPgT3Rvgh_W6FQx387-kyrvW9dXjcH5SWBJhd7v97F04\" data-hs-link-id=\"4\" data-hs-link-id-v2=\"MC93Wom3\" target=\"_blank\">Fusion Pro 36</a></span></td>\r\n<td style=\"border-collapse:collapse;color:#787878;line-height:20px;padding: 5px 10px;border-right:0px solid #EBEBEB;border-bottom:1px solid #EBEBEB;text-align:left\"><span>Featuring a generous 36” x 24” (914 x 610 mm) worktable, the Fusion Pro 36 boasts 165 inches per second engraving speeds and is available with a CO2 laser source or CO2 and fiber laser source combination. Also included is the IRIS™ Camera Positioning system and up to 165 IPS/ 4.2 m/s engraving speeds.</span></td>\r\n</tr>\r\n<!--/Fusion Pro 36 (CO2)-->\r\n<!-- Fusion Pro 48 (CO2)-->\r\n<tr valign=\"middle\" style=\"padding:0; border-right: 1px solid #EBEBEB; border-left: 1px solid #EBEBEB;\">\r\n<td width=\"120\" height=\"40\" align=\"left\" style=\"border-collapse: collapse; color: #1B6BB4; line-height: 20px; padding: 5px 10px; border-right: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; text-align: left\"><span><a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3m2nnW7Y8-PT6lZ3q7W53tvP06dFTKrW2y1gMw811Xh6W24TXgf13dJ_fW27YrP_4VWk6FW3DHFxN5jb_g0VC5lXV2Q4RGGW4tqSHD25-XdxW2Q9qD_84ZlW6W1sqpHQ4T4JVJW7gdThv9bsVGgW7npKS-586mpdW9j_FXL6TkD05W1lcNf62R6W4dW3jRn5Y66s1yKW3lCv6y3CDpFkW1FmHyb5cgds9W139KGr84FCrCVJ8Sy-4gLjVdW7NvHpn3r0F3MVVWYHB79JhXPW6p3xP93gGt-KW4_JVvq8rH_S-W92dphX25BhRbW3cRldG1Gl9FPW8rG8BF8j7L_NW2_strt5sWZ2_f4YtbKx04\" data-hs-link-id=\"5\" data-hs-link-id-v2=\"K5a0QT6+\" target=\"_blank\">Fusion Pro 48</a></span></td>\r\n<td style=\"border-collapse:collapse;color:#787878;line-height:20px;padding: 5px 10px;border-right:0px solid #EBEBEB;border-bottom:1px solid #EBEBEB;text-align:left\"><span>The largest system in the Fusion Pro Series includes a 48” x 36” (1219 x 914 mm) engraving space and a variety of wattage and laser source configurations. The Fusion Pro 48 comes equipped with a built-in air compressor and Ethernet, USB, and Wireless options for networking your laser.</span></td>\r\n</tr>\r\n<!-- /Fusion Pro 48 (CO2)-->\r\n  </tbody>\r\n</table>\r\n  </div>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div>\r\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: #ffffff;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: #ffffff;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"800\" style=\"background-color: #00578a;width: 800px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px;min-width: 800px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"background-color: #00578a;width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:10px 10px 10px 30px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <h2 class=\"v-text-align\" style=\"margin: 0px; color: #ffffff; line-height: 140%; text-align: left; word-wrap: break-word; font-weight: normal; font-family: \'Montserrat\',sans-serif; font-size: 20px;\">\r\n    Fiber Laser Systems\r\n  </h2>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div>\r\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: #ffffff;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: #ffffff;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"800\" style=\"width: 800px;padding: 0px 0px 10px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px;min-width: 800px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px 0px 10px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:15px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <div>\r\n    <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;color:#787878;font-family:\'Mont\',Helvetica,Arial,sans-serif;font-size:12px\">\r\n  <tbody>    \r\n<!-- Fusion Edge 12 (Fiber) -->\r\n<tr valign=\"middle\" style=\"padding:0; background: #F8F8F8; border-right: 1px solid #EBEBEB; border-left: 1px solid #EBEBEB;border-top:1px solid #EBEBEB;\">\r\n<td width=\"120\" height=\"40\" align=\"left\" style=\"border-collapse: collapse; color: #1B6BB4; line-height: 20px; padding: 5px 10px; border-right: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; text-align: left\"><span><a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s6103m2nnW8wLKSR6lZ3n3W18gSJ77YFPJ1VGyPf37zryyXW7jV8Sd63p0-YVf_RsK3748JKW7R08xY80n8QjW3fwTLX4g8rysW1bWCPT6bQbMLW7wKslN6k9m_4W5C5txZ7-fC1FW5BtS9Y5w1vk-W476DvQ8fWHd8VF7bNm5YpMg5W6dsLKm5-njV2W7xcCxv35S6_TW7NR1yv6MZKHFN5QtLP99Kh8_VbFr-t5DlXK2W9353m44dqDrjVFx3tL29XW7jW7FqqqX5qmF0jW1FSWQw7pPRQdW3Lg_Zt1YwN4xW2nKyyF4CWTdlW2MzxGx6gvXWbW2khNWj5ShMVnVvV-Tm1z02rKN6vSk7bHvYsNW5rzMKF5cV6t6f3szqVg04\" data-hs-link-id=\"3\" data-hs-link-id-v2=\"I4JNOe47\" target=\"_blank\">Fusion Edge 12</a></span></td>\r\n<td style=\"border-collapse:collapse;color:#787878;line-height:20px;padding: 5px 10px;border-right:0px solid #EBEBEB;border-bottom:1px solid #EBEBEB;text-align:left\"><span>The fiber Fusion Edge 12 is equipped with a 30 watt fiber laser, combining our highest-quality engraving technology into a 24\" x 12\" (610 x 305 mm) system for directly marking metals and engineered plastics.</span></td>\r\n</tr>\r\n<!--/Fusion Edge 12 (Fiber) -->\r\n<!--Fusion Pro 24 Fiber -->\r\n<tr valign=\"middle\" style=\"padding:0; border-right: 1px solid #EBEBEB; border-left: 1px solid #EBEBEB;\">\r\n<td width=\"120\" height=\"40\" align=\"left\" style=\"border-collapse: collapse; color: #1B6BB4; line-height: 20px; padding: 5px 10px; border-right: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; text-align: left\"><span><a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3m2nnW7Y8-PT6lZ3pdW1bTkYT3y8NQ5W737WHj38Ns39W4PrH4g3zbrgqW8d5NSR2dDzc0Vh10RK6tyQWfW86xKXn129D7zW8Lcx4j6Sdh43W22TBV07mSRDrW6RYrk85gTvrzW9hC_Tt4xYx7VW1kZ4Yr4pBhLMN7rKXnxtF-xHN7r24Jr68rYKW30qGXC3rM_dfW30k1Yb99ktNcW5DQp4s7T2_XHW7fBWlH5jjfckVw3xH82rP8gZW64-0mn2Kp-QpW8rznJF74D55-W8l2V2X5Bf0NPW4v6Sp14m1_vLW3z-1v35xgV6TW1GPj4p1l7mn6W2j3lB25JPzf8W3tJ8yM3rwlwFf3BFGxR04\" data-hs-link-id=\"6\" data-hs-link-id-v2=\"ssibxk2B\" target=\"_blank\">Fusion Pro 24</a></span></td>\r\n<td style=\"border-collapse:collapse;color:#787878;line-height:20px;padding: 5px 10px;border-right:0px solid #EBEBEB;border-bottom:1px solid #EBEBEB;text-align:left\"><span>Ideal for direct metal and engineered plastic marking, the Fusion Pro 24 with a fiber laser features a 24\" x 24\" (610 x 610 mm) workspace, IRIS™ Camera Positioning, SAFEGUARD™ features, and more.</span></td>\r\n</tr>\r\n<!--/Fusion Pro 24 Fiber -->\r\n<!--Galvo -->\r\n<tr valign=\"middle\" style=\"padding:0; background: #F8F8F8; border-right: 1px solid #EBEBEB; border-left: 1px solid #EBEBEB;\">\r\n<td width=\"120\" height=\"40\" align=\"left\" style=\"border-collapse: collapse; color: #1B6BB4; line-height: 20px; padding: 5px 10px; border-right: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; text-align: left\"><span><a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3m2nnW7Y8-PT6lZ3ljW1DMF5l3-6j15W2lvDhc6NltwSW8pkH288HnYZjN8SywTWRf4_8W4vwcw82vkGKRW3-_RsB57xRy1W888Lbd74tG7QW3LDC8l3WmZBWW6tFxLG5X8PcFN35ckr0SJdMWW7rdLM-3bKJfjW34V4Jc2_TWxQW1-D0q-73ZdtVW65HFG278G8H8W7ssd4r48PZ9wW6Jjr8t6XkV50W89XLBj7Z7_RnN6GvTCK8Rp-SW8xQxbC4Qgf9FW8Kh-xC3TttF5W6nNmlW3Kz1RWVx9T4h7b3KhgW3hN2m68vfpxnW83cJY_87yHQkW8qXRr88hj7WwW44gMMv6R-7-Qf4qMcml04\" data-hs-link-id=\"7\" data-hs-link-id-v2=\"T+5SXpj0\" target=\"_blank\">Fusion Galvo G100</a></span></td>\r\n<td style=\"border-collapse:collapse;color:#787878;line-height:20px;padding: 5px 10px;border-right:0px solid #EBEBEB;border-bottom:1px solid #EBEBEB;text-align:left\"><span>This high-speed metal marking system includes both F163 and F254 lenses to move seamlessly between a 4” x 4” (101.6 x 101.6 mm) and 6” x 6” (152.4 x 152.4 mm) engraving area.</span></td>\r\n</tr>\r\n<!--/Galvo -->\r\n  </tbody>\r\n</table>\r\n  </div>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div>\r\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: #ffffff;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: #ffffff;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"800\" style=\"background-color: #00578a;width: 800px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px;min-width: 800px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"background-color: #00578a;width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:10px 10px 10px 30px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <h2 class=\"v-text-align\" style=\"margin: 0px; color: #ffffff; line-height: 140%; text-align: left; word-wrap: break-word; font-weight: normal; font-family: \'Montserrat\',sans-serif; font-size: 20px;\">\r\n    Dual Laser Systems\r\n  </h2>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div>\r\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: #ffffff;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: #ffffff;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"800\" style=\"width: 800px;padding: 0px 0px 10px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px;min-width: 800px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px 0px 10px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:15px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <div>\r\n    <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;color:#787878;font-family:\'Mont\',Helvetica,Arial,sans-serif;font-size:12px\">\r\n  <tbody>    \r\n    <!--Fusion Pro 24 Dual -->\r\n<tr valign=\"middle\" style=\"padding:0; background: #F8F8F8; border-right: 1px solid #EBEBEB; border-left: 1px solid #EBEBEB;border-top:1px solid #EBEBEB;\">\r\n<td width=\"120\" height=\"40\" align=\"left\" style=\"border-collapse: collapse; color: #1B6BB4; line-height: 20px; padding: 5px 10px; border-right: 1px solid #EBEBEB; border-top:1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; text-align: left\"><span><a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3m2nnW7Y8-PT6lZ3pNVhXRTm77YcM2N7q1TDVfK8JrVYLGr85hx6J0W4bqVLr2XvsrHW5MWn0M6kkKQzW42dnDJ1HdBjPW4MmcgV4JlR9zW3Mj3c11CtQM1W7q5xfC5qF6MYN5dBwBP2s2HrW3z2CK-2Cv7SCVYt0p82_p0JGW3PGNxt1xk5nGW7C808_11Bdv9W4PQrHP2-5PSsW3nh65r2WxDthW5x_YLl68kZjzW7dgVtw8T-cLGW6p4LM328m7cZW9g6JFJ2hdldVW5Fs_X82R6vKRW21d2968mmpvmW8QGLnn6P5yr5N6Pw7fBpTHT8W6m5c4t7w6-m6V76Yrb3r6L4mf2Fp5hb04\" data-hs-link-id=\"8\" data-hs-link-id-v2=\"uAOK6Y3T\" target=\"_blank\">Fusion Pro 24</a></span></td>\r\n<td style=\"border-collapse:collapse;color:#787878;line-height:20px;padding: 5px 10px;border-right:0px solid #EBEBEB;border-bottom:1px solid #EBEBEB;text-align:left\"><span>Features a 24” x 24” (610 x 610 mm) workspace and includes both a CO2 for cutting/engraving organic materials and a fiber laser source suited for bare metal marking. Choose from a 60 watt CO2 and 30 watt Fiber source or 100 watt CO2 and 50 watt Fiber source.</span></td>\r\n</tr>\r\n<!--/Fusion Pro 24 Dual -->\r\n			\r\n<!--Fusion Pro 36 Dual -->\r\n<tr valign=\"middle\" style=\"padding:0; border-right: 1px solid #EBEBEB; border-left: 1px solid #EBEBEB;\">\r\n<td width=\"120\" height=\"40\" align=\"left\" style=\"border-collapse: collapse; color: #1B6BB4; line-height: 20px; padding: 5px 10px; border-right: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; text-align: left\"><span><a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3m2nnW7Y8-PT6lZ3mqW2hqfTK327V1qVdNb2B3QJsXpW9bb24S92bVQ9W1lxd2d1hT6f2W16JB-_65z2TQW7kDxVh1gTdS5W74g8Gc72PyQhW6FXPFc1KBRz6W5BDtXk3X4D20W8P-nwv4vYvfvW3nJ3M-3pmt1CW3tvFN38-MpnGN3zxTZHC9WQhW3dwM0l8xWTlLW581w8F5fWvmKW8sGztV97hCWMW2Glw7W2_gXWtN4BBbG-CGFYLW3QsrxK6zw_r7W8_xvwY2HSPxdW9bgnnj3rhJxtW1LFjXv1zBcLGW25ndmK1xFcTTW5T9-B15fhtR3W8b1PCD6lJ17JW2VlhCj1WnwZTf8Q29Yj04\" data-hs-link-id=\"9\" data-hs-link-id-v2=\"VLQQ4lKk\" target=\"_blank\">Fusion Pro 36</a></span></td>\r\n<td style=\"border-collapse:collapse;color:#787878;line-height:20px;padding: 5px 10px;border-right:0px solid #EBEBEB;border-bottom:1px solid #EBEBEB;text-align:left\"><span>This system includes a 36” x 24” (914 x 610 mm) engraving area and up to 165 IPS/ 4.2 m/s engraving speeds. Choose from a 80 watt CO2 and 30 watt Fiber source or 100 watt CO2 and 50 watt Fiber source.</span></td>\r\n</tr>\r\n<!--/Fusion Pro 36 Dual -->			\r\n<!--Fusion Pro 48 Dual -->\r\n<tr valign=\"middle\" style=\"padding:0; background: #F8F8F8; border-right: 1px solid #EBEBEB; border-left: 1px solid #EBEBEB;\">\r\n<td width=\"120\" height=\"40\" align=\"left\" style=\"border-collapse: collapse; color: #1B6BB4; line-height: 20px; padding: 5px 10px; border-right: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; text-align: left\"><span><a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3m2nnW7Y8-PT6lZ3kLW51dr3C64JgwqW289szc2Q6Bh7W3lH8pk2Kf7yxW8JBZ_r94sjMCW48NG725YH-SCW3Bv5x44NRJ0LW6S-d8-3xr8j8W9kh8-p8pG6mLW5BG7lV4JsZMWW2VHmyr1bTVbvW17Lm-S993wQnW1tGk0J30xJzzW6cS9l_5077t5W4SJwyF1sfzJPW2g859R4yDxzlW7-xCXf7T1hX5W6LsngY2FNj40W55JdQp3phqbLW1P0Q_d191XXHN8rvGmzlbXmTW51msnp7v3JPdW60S89x3qYmTQW2cZR0Z9cV7QkW7FSnqb6shYY8W5G7yNj1t0p0yW35Hw456NxDJ2f6B6tv004\" data-hs-link-id=\"10\" data-hs-link-id-v2=\"/7CO7YcQ\" target=\"_blank\">Fusion Pro 48</a></span></td>\r\n<td style=\"border-collapse:collapse;color:#787878;line-height:20px;padding: 5px 10px;border-right:0px solid #EBEBEB;border-bottom:1px solid #EBEBEB;text-align:left\"><span>The largest of our dual-source systems, the Pro 48 dual source features a 48” x 36” (1219 x 914 mm) work area and 120 watt CO2 tube, coupled with a 50 watt fiber laser source.</span></td>\r\n</tr>\r\n  </tbody>\r\n</table>\r\n  </div>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div>\r\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: #ffffff;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: #ffffff;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"800\" style=\"background-color: #00578a;width: 800px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px;min-width: 800px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"background-color: #00578a;width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:10px 10px 10px 30px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <h2 class=\"v-text-align\" style=\"margin: 0px; color: #ffffff; line-height: 140%; text-align: left; word-wrap: break-word; font-weight: normal; font-family: \'Montserrat\',sans-serif; font-size: 20px;\">\r\n    Optional Accessories\r\n  </h2>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div>\r\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: #ffffff;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: #ffffff;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"800\" style=\"width: 800px;padding: 0px 0px 10px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px;min-width: 800px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px 0px 10px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:15px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <div>\r\n    <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;color:#787878;font-family:\'Mont\',Helvetica,Arial,sans-serif;font-size:12px\">\r\n  <tbody>    \r\n    <!--Rim Drive Rotary-->\r\n    <tr style=\"padding:0; background: #F8F8F8;\" valign=\"middle\">\r\n      <td height=\"20\" style=\"border-collapse: collapse; color: #787878; line-height: 20px; padding: 5px 10px; border-right: 1px solid #EBEBEB; border-left: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; border-top: 1px solid #EBEBEB; text-align: left\"><span>Rim Drive Rotary (Fusion Maker, Fusion Edge &amp; Fusion Pro)</span></td>\r\n      <td height=\"20\" style=\"border-collapse: collapse; color: #787878; line-height: 20px; padding: 5px 10px; border-right: 1px solid #EBEBEB; border-left: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; text-align: left;\"><span>PhotoLaser Plus Software</span></td>\r\n    </tr>\r\n    <!--/Rim Drive Rotary-->\r\n    <!--Rim Drive Rotary-->\r\n    <tr style=\"padding:0\" valign=\"middle\">\r\n      <td height=\"20\" style=\"border-collapse: collapse; color: #787878; line-height: 20px; padding: 5px 10px; border-right: 1px solid #EBEBEB; border-left: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; text-align: left\"><span>3-Jaw Chuck Rotary (All Systems)</span></td>\r\n      <td height=\"20\" style=\"border-collapse: collapse; color: #787878; line-height: 20px; padding: 5px 10px; border-right: 1px solid #EBEBEB; border-left: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; text-align: left;\"><span>Vector Grid, Slats, or Task Plate (Fusion Pro 24/36/48)</span></td>\r\n    </tr>\r\n    <!--/Rim Drive Rotary-->\r\n    <!--Rim Drive Rotary-->\r\n    <tr style=\"padding:0; background: #F8F8F8;\" valign=\"middle\">\r\n      	<td height=\"20\" style=\"border-collapse: collapse; color: #787878; line-height: 20px; padding: 5px 10px; border-right: 1px solid #EBEBEB; border-left: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; text-align: left;\"><span>Lens - 1.5\" (Fusion Maker, Fusion Edge 12/24, Fusion Pro 24/36) </span></td>		\r\n    	<td height=\"20\" style=\"border-collapse: collapse; border-left: 1px solid #EBEBEB; color: #787878; line-height: 20px; padding: 5px 10px; border-right: 1px solid #EBEBEB; border-left: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; text-align: left\"><span>Floor Stand (Fusion Maker 12, Fusion Edge 12)</span></td>		\r\n    </tr>\r\n    <!--/Rim Drive Rotary-->\r\n       <!--Lens Fusion Pro CO2-->\r\n    <tr style=\"padding:0;\" valign=\"middle\">\r\n      <td height=\"20\" style=\"border-collapse: collapse; color: #787878; line-height: 20px; padding: 5px 10px; border-right: 1px solid #EBEBEB; border-left: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; text-align: left;\"><span>Lens - 4\" (Fusion Maker, Fusion Edge &amp; Fusion Pro)</span></td>		\r\n	  <td height=\"20\" style=\"border-collapse: collapse; color: #787878; line-height: 20px; padding: 5px 10px; border-right: 1px solid #EBEBEB; border-left: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; text-align: left;\"><span>Ferromagnetic Table (Fusion Galvo)</span></td>\r\n    </tr>\r\n    <!--/Lens Fusion Pro CO2-->\r\n    <!--Air Assist Pump-->\r\n    <tr style=\"padding:0; background: #F8F8F8;\" valign=\"middle\">\r\n		<td height=\"20\" style=\"border-collapse: collapse; color: #787878; line-height: 20px; padding: 5px 10px; border-right: 1px solid #EBEBEB; border-left: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; text-align: left;\"><span>Air Assist Pump (Standard on Fusion Pro 48)</span></td>\r\n		<td height=\"20\" style=\"border-collapse: collapse; color: #787878; line-height: 20px; padding: 5px 10px; border-right: 1px solid #EBEBEB; border-left: 1px solid #EBEBEB; border-bottom: 1px solid #EBEBEB; text-align: left;\"></td>	\r\n    </tr>\r\n    <!--/Air Assist Pump-->										\r\n  </tbody>\r\n</table>\r\n  </div>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div>\r\n<!-- End partial --></div>\r\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: #ffffff;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: #ffffff;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"785\" style=\"width: 785px;padding: 0px;border-top: 0px solid transparent;border-left: 15px solid #00578a;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px;min-width: 800px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 15px solid #00578a;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table id=\"u_content_heading_8\" style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:15px 15px 15px 30px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <h2 class=\"v-text-align\" style=\"margin: 0px; line-height: 140%; text-align: left; word-wrap: break-word; font-weight: normal; font-family: \'Montserrat\',sans-serif; font-size: 20px;\">\r\n    Would you like a system quote?\r\n  </h2>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div>\r\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: #ffffff;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: #ffffff;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"400\" style=\"width: 400px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-50\" style=\"max-width: 320px;min-width: 400px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:15px 30px 30px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <div class=\"v-text-align\" style=\"line-height: 140%; text-align: left; word-wrap: break-word;\">\r\n    <p style=\"margin-bottom: 1em; font-size: 14px; line-height: 140%;\"><span style=\"font-family: \'Montserrat\', sans-serif; font-size: 14px; line-height: 19.6px;\">For a full quotation on any system, including the new <a rel=\"noopener\" href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s6103m2nnW8wLKSR6lZ3kqW2Q_9sW70f4CLW7t5Rv86ddszZW23fD3v16PHCWW50DT1P7K1BtsW8h_8Kt93FJ5TW3vwW0t7sBbfJN2R86MTVRHR7W7SVbh-8xdrSSW1nptpP43bZ3XVsJBwf656qrtW8VqtRC6_wFpSW8sStZb91JM7MW5Yd8vv2TwrbRV2nzrD8wV0qxW5Yxj1m6LvyhMW8rVKNr5fVz5vW8VsPVz4MyR-MW5BVxl7800BM-W2N-s193PV2ykW432pgN696gBXW5R5qD47Hl3W2W3KrmnT4sDMRPW59jJnz13X0gJV5tSwF4YczvLVJD17h3SxcpnW8DLQ4t18XYcHW9gL6xL5pVW8rW7_lX5X21DMJ3f8yKq9F04\" target=\"_blank\" data-hs-link-id=\"3\" data-hs-link-id-v2=\"qhc3Psfs\"><strong>Fusion Maker</strong></a> with IRIS™ Camera Positioning and SAFEGUARD™ features, please call Keystone Prototyping    at <a href=\"tel:+1-844-959-0100\" data-hs-link-id=\"2\" data-hs-link-id-v2=\"y0GNrl7l\" target=\"_blank\">(844) 959-0100</a>. </span></p>\r\n  </div>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"398\" style=\"background-color: #f8f8f8;width: 398px;padding: 0px;border-top: 1px solid #ebebeb;border-left: 1px solid #ebebeb;border-right: 1px solid #ebebeb;border-bottom: 1px solid #ebebeb;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-50\" style=\"max-width: 320px;min-width: 400px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"background-color: #f8f8f8;width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 1px solid #ebebeb;border-left: 1px solid #ebebeb;border-right: 1px solid #ebebeb;border-bottom: 1px solid #ebebeb;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:25px 30px 0px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <h3 class=\"v-text-align\" style=\"margin: 0px; color: #00578a; line-height: 140%; text-align: center; word-wrap: break-word; font-weight: normal; font-family: \'Montserrat\',sans-serif; font-size: 20px;\">\r\n    <strong>Keystone Prototyping Solutions</strong>\r\n  </h3>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:5px 30px 30px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <div class=\"v-text-align\" style=\"color: #333333; line-height: 160%; text-align: center; word-wrap: break-word;\">\r\n    <p style=\"margin-bottom: 1em; font-size: 14px; line-height: 160%;\"><span style=\"font-size: 16px; line-height: 25.6px; color: #333333; font-family: \'Montserrat\', sans-serif;\"><a href=\"tel:+1-844-959-0100\" data-hs-link-id=\"3\" data-hs-link-id-v2=\"b4tPefE2\" target=\"_blank\">(844) 959-0100</a></span></p>\r\n	  <p style=\"margin-bottom: 1em; font-size: 14px; line-height: 160%;\"><span style=\"font-size: 14px; line-height: 22.4px; color: #333333; font-family: \'Montserrat\', sans-serif;\"><a rel=\"noopener\" href=\"mailto:info@keystoneprototypingsolutions.com\" target=\"_blank\" data-hs-link-id=\"2\" data-hs-link-id-v2=\"WvodbpSg\">info@keystoneprototypingsolutions.com</a><br><a rel=\"noopener\" href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60q3m2nnW7lCdLW6lZ3mCW1HnTnd2gqy23N1xM4Pq7DxmPN5Z8hy33npWHW5yVhSp4v_Y8PW5LmsfW1dFcptW13hfnv7H0CzkW67r6Zx3ZtFlwW3Y_FlT64rMHsW8ZC-Y414VQYXW5p-5xn2w_xyFVdk_932J6q3gW2mFBxQ1qjV4wW3ZXs5x74BDtGW1ynlXD7mVq4RW754L5V8xc7FRW3xlRWc4FCJYDW97pqhb4cr2GgW801DM97Jh8wwW20Xs8K9fG0KFW3CNJ3k7hyhTpW342m8Y8SHf-lW5C0d2y18rSfcW1L4SPQ2llMj6W17LQ7L98dhXZf2MS1-R04\" target=\"_blank\" data-hs-link-id=\"3\" data-hs-link-id-v2=\"bM1w2UIg\">www.keystoneprototypingsolutions.com</a></span></p>\r\n  </div>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div>\r\n<div data-global-resource-path=\"Global_Shared-Content/Global_Footers/Global_Epilog-Footer_ENG.html\"><div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: #ffffff;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: #ffffff;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"800\" style=\"width: 800px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px;min-width: 800px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:20px 10px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <table height=\"0px\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;table-layout: fixed;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;vertical-align: top;border-top: 1px solid #e5e5e5;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%\">\r\n    <tbody>\r\n      <tr style=\"vertical-align: top\">\r\n        <td style=\"word-break: break-word;border-collapse: collapse !important;vertical-align: top;font-size: 0px;line-height: 0px;mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%\">\r\n          <span>&nbsp;</span>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div>\r\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: #ffffff;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: #ffffff;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"267\" style=\"background-color: #ffffff;width: 267px;padding: 0px 0px 10px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-33p33\" style=\"max-width: 320px;min-width: 267px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"background-color: #ffffff;width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px 0px 10px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:15px 15px 30px 20px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n  <tbody><tr>\r\n    <td class=\"v-text-align\" style=\"padding-right: 0px;padding-left: 0px;\" align=\"center\">\r\n      \r\n      <img align=\"center\" border=\"0\" src=\"https://www.epiloglaser.com/assets/img/dist-site/email/epilog-logo-h.png\" alt=\"Epilog Laser Logo\" title=\"Epilog Laser Logo\" style=\"outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;clear: both;display: inline-block !important;border: none;height: auto;float: none;width: 100%;max-width: 232px;\" width=\"232\">\r\n      \r\n    </td>\r\n  </tr>\r\n</tbody></table>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"533\" style=\"background-color: #ffffff;width: 533px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-66p67\" style=\"max-width: 320px;min-width: 533px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"background-color: #ffffff;width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:18px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n  <div class=\"v-text-align\" style=\"line-height: 100%; text-align: center; word-wrap: break-word;\">\r\n    <p style=\"margin-bottom: 1em; font-size: 14px; line-height: 100%;\"><span style=\"font-size: 8px; line-height: 8px; font-family: \'Montserrat\', sans-serif;\">YOU HAVE RECEIVED THIS EMAIL BECAUSE YOU ASKED TO RECEIVE MORE INFORMATION FROM EPILOG LASER AT <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s6063m2nnW6N1vHY6lZ3nhVt_Ck-6vKn7_V3PjhW4C_L2KW7sHHc52S1YtPW3HVmFg2Np67HW6MMkF97CQqp6W7s6m2K6qBsbvW8Ytn9V1QPkxJW5lvxM819fYzYV4G0Fw52L9LJW8RzbTG2SdzflW129cr91Lh6ZPW7GM6JC3Pm178W6N7k171bcSWvV9F-dq4BNp-RW3kmnPv2b8YJyW2n6tvK3vRZLwW8PzHd05_P7ttW3s7vl_1DqK_hW72wLsp7PK84TW8-srCG8Tm6jTW2JXbXt4pZYVxVhrCLR3khZKDf4f9w6804\" target=\"_blank\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"qz5kgZbc\"><strong>WWW.EPILOGLASER.COM</strong></a> OR ANOTHER EPILOG LASER WEBSITE.</span></p>\r\n  </div>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div>\r\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: #00578a;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: #00578a;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"800\" style=\"width: 800px;padding: 5px 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px;min-width: 800px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 5px 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:0px;font-family:\'Montserrat\',sans-serif;\">\r\n        <div style=\"padding: 10px;\">\r\n		  <div class=\"v-text-align\" style=\"color: #ffffff; line-height: 125%;font-size: 12px; text-align: center; word-wrap: break-word;\">\r\n			© Epilog Laser&nbsp; |&nbsp; All Rights Reserved.&nbsp; |&nbsp; 16371 Table Mountain Parkway, Golden, Colorado, 80403, USA&nbsp; |&nbsp; +1 303 277 1188</div>\r\n		\r\n		  </div>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div>\r\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\r\n  <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 800px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: transparent;\">\r\n    <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\r\n      <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:800px;\"><tr style=\"background-color: transparent;\"><![endif]-->\r\n      \r\n<!--[if (mso)|(IE)]><td align=\"center\" width=\"800\" style=\"width: 800px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px;min-width: 800px;display: table-cell;vertical-align: top;\">\r\n  <div style=\"width: 100% !important;\">\r\n  <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\r\n  \r\n<table style=\"font-family:\'Montserrat\',sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"v-container-padding-padding\" style=\"overflow-wrap:break-word;word-break:break-word;padding:0px;font-family:\'Montserrat\',sans-serif;\" align=\"left\">\r\n        \r\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n  <tbody><tr>\r\n    <td class=\"v-text-align\" style=\"padding-right: 0px;padding-left: 0px;\" align=\"center\">\r\n      \r\n      <img align=\"center\" border=\"0\" src=\"https://www.epiloglaser.com/assets/img/dist-site/email/drop-shadow.png\" alt=\"Drop Shadow\" title=\"Drop Shadow\" style=\"outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;clear: both;display: inline-block !important;border: none;height: auto;float: none;width: 100%;max-width: 600px;\" width=\"600\">\r\n      \r\n    </td>\r\n  </tr>\r\n</tbody></table>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n  <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\r\n  </div>\r\n</div>\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n      <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\r\n    </div>\r\n  </div>\r\n</div>\r\n    <!--[if (mso)|(IE)]></td></tr></table><![endif]-->\r\n    </div></td>\r\n  </tr>\r\n  </tbody>\r\n  </table>\r\n  <!--[if mso]></div><![endif]-->\r\n  <!--[if IE]></div><![endif]-->\r\n</div><img src=\"https://d583HW04.na1.hubspotlinks.com/Cto/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DW26s5Nd8fYxnn31Sg1\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"display:none!important;min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important\"></body></html>','Thank you for your interest in Epilog Laser!\r\n\r\nA brochure and sample kit is on its way to you. In the meantime, we\'d like to introduce you to your local distributor.\r\n\r\nThank you for your interest in Epilog Laser!\r\n\r\nA brochure and sample kit is on its way to you. In the meantime, we\'d like to introduce you to Keystone Prototyping Solutions (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s6063lcq-W6N1vHY6lZ3l-W5zDdGt58brHnN5JL_pzhDjBJW36HR-97J8QxkW4XQQy28xPwVZN1nvrnPhpZ-nW76k4wf2bf2k0VKj0fZ2YWV_VN5C7H0lpsyZwW66lXQq7xQlfFW8Dwg5T16lTRSN7847hlGzS8FVPs_Kc52pgz3W2SWcsG2zM2cHW6jQYQm25czG9W16tq5037FSXMW5Q9jGt8BcGJKW6hjSc43_0tXCW6K3d_q2ZNkKtW4dSbwW4-m6bSW3R7ygL20-80xW5PRnpk4JgrL_N2LL-XwwR7PTf1Fqgrz04 ) as the exclusive distributor in your area.\r\n\r\nKeystone Prototyping Solutions (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s6063lcq-W6N1vHY6lZ3l-W5zDdGt58brHnN5JL_pzhDjBJW36HR-97J8QxkW4XQQy28xPwVZN1nvrnPhpZ-nW76k4wf2bf2k0VKj0fZ2YWV_VN5C7H0lpsyZwW66lXQq7xQlfFW8Dwg5T16lTRSN7847hlGzS8FVPs_Kc52pgz3W2SWcsG2zM2cHW6jQYQm25czG9W16tq5037FSXMW5Q9jGt8BcGJKW6hjSc43_0tXCW6K3d_q2ZNkKtW4dSbwW4-m6bSW3R7ygL20-80xW5PRnpk4JgrL_N2LL-XwwR7PTf1Fqgrz04 ) provides you with over 30 years of experience in the engraving industry to help find the laser system that best meets your needs. They are looking forward to speaking with you regarding Epilog\'s equipment features, current sales pricing, and support. Contact them today at info@keystoneprototypingsolutions.com (mailto:info@keystoneprototypingsolutions.com) or call (844) 959-0100 (tel:+1-844-959-0100) to find out more and to set up a demonstration.\r\n\r\nKeystone Prototyping Solutions\r\n\r\nPennsylvania\r\n\r\nContact: Ned Sheerin\r\n\r\n414 Corbet Street\r\n\r\nTarentum, PA 15084\r\n\r\nPhone: (724) 224-0100 (tel:+1-724-224-0100)\r\n\r\nToll Free: (844) 959-0100 (tel:+1-844-959-0100)\r\n\r\ninfo@keystoneprototypingsolutions.com (mailto:info@keystoneprototypingsolutions.com)\r\n\r\nwww.keystoneprototypingsolutions.com (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s6063lcq-W6N1vHY6lZ3l-W5zDdGt58brHnN5JL_pzhDjBJW36HR-97J8QxkW4XQQy28xPwVZN1nvrnPhpZ-nW76k4wf2bf2k0VKj0fZ2YWV_VN5C7H0lpsyZwW66lXQq7xQlfFW8Dwg5T16lTRSN7847hlGzS8FVPs_Kc52pgz3W2SWcsG2zM2cHW6jQYQm25czG9W16tq5037FSXMW5Q9jGt8BcGJKW6hjSc43_0tXCW6K3d_q2ZNkKtW4dSbwW4-m6bSW3R7ygL20-80xW5PRnpk4JgrL_N2LL-XwwR7PTf1Fqgrz04 )\r\n\r\nEpilog Building (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60q3lcq-W7lCdLW6lZ3mcVC3d4h7zbQx_VbtDG84W9qhXW6JWGgh88plFRW5KrnXf9k_mjbW4Zn4T25wPjXgN4lSMGxr1BHVW94n_pz8wwS6YW98NJvh9b-70qW538YBm83hcWMW6G3xJC1LmBHdW3YCtGJ27SB9hW2hGkjS3RLkl3N7rcRXDY7ZP5N5_cVR9VrgsDW7K8tLk36v-vlW7JwQYM3rBw9BW36c_NP3QSTzwW65rwgM8ZKpNtW71JzKK5PYz6hW6jdvSM7-HmHpW8fklY76tFKWTW3zpcdL31pMXtW5RjKkx70GJrCW2clYTc934FtDf91MJLF04 )\r\n\r\nAn American Company\r\n\r\nEpilog Laser was created in 1988 with the concept of bringing CO2 laser technology to commercial manufacturers and business owners. After 30+ years of designing and engineering the highest-quality laser machines, our equipment can now be found in all types of settings from sign shops to schools to industrial manufacturing facilities and well beyond.\r\n\r\nLearn More\r\n(https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60q3lcq-W7lCdLW6lZ3mcVC3d4h7zbQx_VbtDG84W9qhXW6JWGgh88plFRW5KrnXf9k_mjbW4Zn4T25wPjXgN4lSMGxr1BHVW94n_pz8wwS6YW98NJvh9b-70qW538YBm83hcWMW6G3xJC1LmBHdW3YCtGJ27SB9hW2hGkjS3RLkl3N7rcRXDY7ZP5N5_cVR9VrgsDW7K8tLk36v-vlW7JwQYM3rBw9BW36c_NP3QSTzwW65rwgM8ZKpNtW71JzKK5PYz6hW6jdvSM7-HmHpW8fklY76tFKWTW3zpcdL31pMXtW5RjKkx70GJrCW2clYTc934FtDf91MJLF04 )\r\n\r\nIRIS™ Camera Positioning\r\n\r\nOverhead cameras provide an accurate picture of the working area for accurate artwork placement. Drag and drop your artwork on screen for the fastest work processing.\r\n\r\nLearn More\r\n(https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3lcq-W7Y8-PT6lZ3mrW3HvD7V2FZM0YVpJ3cz4K7V4nW2T33-K41-HPpN6GQCm990531W4JHrpF8vHPh5W8VT8GX7-zBhqW7NC8HV3bp3DFW627SrH7_Hzn8W2rhzPc8v-nplW8Msqtg5mCqCYW7R9Sgj88Rvy9W6wwkSt4dJm8lW7-gsXK2g73V4W29B0Xj4g803_W3wpfTX7cj7wGW1_NMyv6HB7n5W5LBff41r4S8QW2YYdS11XjJyPW3RgVJQ1fw303VVG6l-1qmV0sW85YWzD6x4tdkW10wnjF4ZWyJrVb-74p3YCJFxW1ZfTVs70D_z1W8kMXs12MH82fW10gnvQ9j56Wff7M-B8-04 )\r\n\r\nTouch Screen\r\n\r\nSelect between jobs, auto focus the laser, and rerun jobs at the touch of a button from the easy-to-use touch screen interface right at the laser.\r\n\r\nLearn More\r\n(https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3lcq-W7Y8-PT6lZ3mrW3HvD7V2FZM0YVpJ3cz4K7V4nW2T33-K41-HPpN6GQCm990531W4JHrpF8vHPh5W8VT8GX7-zBhqW7NC8HV3bp3DFW627SrH7_Hzn8W2rhzPc8v-nplW8Msqtg5mCqCYW7R9Sgj88Rvy9W6wwkSt4dJm8lW7-gsXK2g73V4W29B0Xj4g803_W3wpfTX7cj7wGW1_NMyv6HB7n5W5LBff41r4S8QW2YYdS11XjJyPW3RgVJQ1fw303VVG6l-1qmV0sW85YWzD6x4tdkW10wnjF4ZWyJrVb-74p3YCJFxW1ZfTVs70D_z1W8kMXs12MH82fW10gnvQ9j56Wff7M-B8-04 )\r\n\r\nSAFEGUARD™ Features\r\n\r\nKeep the mechanics of your laser machine cleaner than ever before with side enclosures, a fully covered x-axis assembly, and covered lens assembly.\r\n\r\nLearn More\r\n(https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3lcq-W7Y8-PT6lZ3mrW3HvD7V2FZM0YVpJ3cz4K7V4nW2T33-K41-HPpN6GQCm990531W4JHrpF8vHPh5W8VT8GX7-zBhqW7NC8HV3bp3DFW627SrH7_Hzn8W2rhzPc8v-nplW8Msqtg5mCqCYW7R9Sgj88Rvy9W6wwkSt4dJm8lW7-gsXK2g73V4W29B0Xj4g803_W3wpfTX7cj7wGW1_NMyv6HB7n5W5LBff41r4S8QW2YYdS11XjJyPW3RgVJQ1fw303VVG6l-1qmV0sW85YWzD6x4tdkW10wnjF4ZWyJrVb-74p3YCJFxW1ZfTVs70D_z1W8kMXs12MH82fW10gnvQ9j56Wff7M-B8-04 )\r\n\r\nCO2 Laser Systems\r\n\r\nFusion Maker 12 (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3lcq-W7Y8-PT6lZ3lnW4FFcF-9fjwg0Vf2RJh6Tt8yZN5xhNxg8CwbWW7c3lTW8_BDSnVq0wzF3b8HN4W38pPR095vq_NW5v6cGF21VknwW36bGnb8rDwd1W2LnW4t5JHmYXW91589B46X1hLVVxYxG74G4s9W1Ftt7Y8CjThCW87kLZk2mMScJW756c9z24YV1sW4JBMr_2My1nTW37SjH16Frpk3N8-frtjRqcFPW2MWhMZ2VwhyvVDkcps15ZP84W3Nc0Q-2RthTRW4JBrRX980S8BW6PdT3R41CtJ8W1qvsLw8ybwdJVKG2Rl8m4T8dV7K88p7dW4JFW2947sc64RRPsf1g0XYj04 )\r\nAvailable in 30 and 40 watt configurations, the new Fusion Maker is Epilog’s starter system that delivers top-notch results. This compact system features a 24” x 12” (610 x 305 mm) work area, the revolutionary IRIS™ camera system for easy/accurate artwork placement, and 60 IPS engraving speeds.\r\n\r\nFusion Maker 24 (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3lcq-W7Y8-PT6lZ3lnW4FFcF-9fjwg0Vf2RJh6Tt8yZN5xhNxg8CwbWW7c3lTW8_BDSnVq0wzF3b8HN4W38pPR095vq_NW5v6cGF21VknwW36bGnb8rDwd1W2LnW4t5JHmYXW91589B46X1hLVVxYxG74G4s9W1Ftt7Y8CjThCW87kLZk2mMScJW756c9z24YV1sW4JBMr_2My1nTW37SjH16Frpk3N8-frtjRqcFPW2MWhMZ2VwhyvVDkcps15ZP84W3Nc0Q-2RthTRW4JBrRX980S8BW6PdT3R41CtJ8W1qvsLw8ybwdJVKG2Rl8m4T8dV7K88p7dW4JFW2947sc64RRPsf1g0XYj04 )\r\nThe mid-size system in the Fusion Maker Series, this machine features a 24”x 24” (610 x 610 mm) engraving table and is available in a 40 watt configuration. It also includes our IRIS™ camera system and features engraving speeds of up to 60 inches per second.\r\n\r\nFusion Maker 36 (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3lcq-W7Y8-PT6lZ3lnW4FFcF-9fjwg0Vf2RJh6Tt8yZN5xhNxg8CwbWW7c3lTW8_BDSnVq0wzF3b8HN4W38pPR095vq_NW5v6cGF21VknwW36bGnb8rDwd1W2LnW4t5JHmYXW91589B46X1hLVVxYxG74G4s9W1Ftt7Y8CjThCW87kLZk2mMScJW756c9z24YV1sW4JBMr_2My1nTW37SjH16Frpk3N8-frtjRqcFPW2MWhMZ2VwhyvVDkcps15ZP84W3Nc0Q-2RthTRW4JBrRX980S8BW6PdT3R41CtJ8W1qvsLw8ybwdJVKG2Rl8m4T8dV7K88p7dW4JFW2947sc64RRPsf1g0XYj04 )\r\nThis is the largest system in the Fusion Maker Series, featuring a generous 36” x 24” (914 x 610 mm) engraving table and is available in 40 and 50-watt configurations. Like all Fusion systems, the Maker 36 has the revolutionary IRIS™ camera system for precise artwork placement.\r\n\r\nFusion Edge 12 (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3lcq-W7Y8-PT6lZ3lkW7F3Jg46LFXBtW83gC3L22W6w3W8217dQ2fljYnW8YQD8j1xJFphW87R-sc88tk1ZW2NSVv78b8bnCW6zK2Y-7Smz4VW1B5QZ994hsvlW1HcN2C4vM6vjW7pqD5Y3ZR7qHW4tbKfg3dTxFyW4STvrJ1RZp4pW6Jzgh5293BpfVmZHfZ3-ykMsW8QcV628rH0WgW4w0_WB7plnq-N82m7YkqWWT6V9qB2n7tc_rmW1hrSxn6vRrvlW1QkLxR7GGpQWW537Bt58-WffKF3nTt7jjjsfVJJcnz6vF3gdW8L8M0D1V9P_zN5rpb9bXBrdQW3QJJ9l2QNDwdf54mYGT04 )\r\nThe Fusion Edge 12 incorporates our highest-quality engraving technology into a small-format desktop system, with a 24\" x 12\" (610 x 305 mm) work area and 120 inches/second engraving speed. 50 or 60 watt CO2 laser options.\r\n\r\nFusion Edge 24 (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3lcq-W7Y8-PT6lZ3lkW7F3Jg46LFXBtW83gC3L22W6w3W8217dQ2fljYnW8YQD8j1xJFphW87R-sc88tk1ZW2NSVv78b8bnCW6zK2Y-7Smz4VW1B5QZ994hsvlW1HcN2C4vM6vjW7pqD5Y3ZR7qHW4tbKfg3dTxFyW4STvrJ1RZp4pW6Jzgh5293BpfVmZHfZ3-ykMsW8QcV628rH0WgW4w0_WB7plnq-N82m7YkqWWT6V9qB2n7tc_rmW1hrSxn6vRrvlW1QkLxR7GGpQWW537Bt58-WffKF3nTt7jjjsfVJJcnz6vF3gdW8L8M0D1V9P_zN5rpb9bXBrdQW3QJJ9l2QNDwdf54mYGT04 )\r\nThe Fusion Edge 24 is the second system in the Fusion Edge Series. It features a 24” x 24” (610 x 610 mm) work area and is available in 50 or 60 watt CO2 configurations. As with all Fusion Edge systems, the Edge 24 features a touchscreen display panel, on-screen artwork positioning with our IRIS™ camera system, and 120 IPS/3.05 m/s engraving speeds.\r\n\r\nFusion Edge 36 (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3lcq-W7Y8-PT6lZ3lkW7F3Jg46LFXBtW83gC3L22W6w3W8217dQ2fljYnW8YQD8j1xJFphW87R-sc88tk1ZW2NSVv78b8bnCW6zK2Y-7Smz4VW1B5QZ994hsvlW1HcN2C4vM6vjW7pqD5Y3ZR7qHW4tbKfg3dTxFyW4STvrJ1RZp4pW6Jzgh5293BpfVmZHfZ3-ykMsW8QcV628rH0WgW4w0_WB7plnq-N82m7YkqWWT6V9qB2n7tc_rmW1hrSxn6vRrvlW1QkLxR7GGpQWW537Bt58-WffKF3nTt7jjjsfVJJcnz6vF3gdW8L8M0D1V9P_zN5rpb9bXBrdQW3QJJ9l2QNDwdf54mYGT04 )\r\nThe largest system in the Fusion Edge Series, the Edge 36 offers a 36” x 24” (914 x 610 mm) engraving table and comes in a 60 watt CO2 configuration. The Edge 36 features 120 IPS/3.05 m/s engraving speeds, and features built-in Ethernet, USB, and Wireless options for networking your laser.\r\n\r\nFusion Pro 24 (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3lcq-W7Y8-PT6lZ3mrW3HvD7V2FZM0YVpJ3cz4K7V4nW2T33-K41-HPpN6GQCm990531W4JHrpF8vHPh5W8VT8GX7-zBhqW7NC8HV3bp3DFW627SrH7_Hzn8W2rhzPc8v-nplW8Msqtg5mCqCYW7R9Sgj88Rvy9W6wwkSt4dJm8lW7-gsXK2g73V4W29B0Xj4g803_W3wpfTX7cj7wGW1_NMyv6HB7n5W5LBff41r4S8QW2YYdS11XjJyPW3RgVJQ1fw303VVG6l-1qmV0sW85YWzD6x4tdkW10wnjF4ZWyJrVb-74p3YCJFxW1ZfTVs70D_z1W8kMXs12MH82fW10gnvQ9j56Wff7M-B8-04 )\r\nThe Fusion Pro 24 features a 24” x 24” (610 x 610 mm) engraving area, Epilog’s revolutionary IRIS™ Camera Positioning system, additional SAFEGUARD™ features, and more. This system is available with CO2, Fiber, or Dual-Source configurations and a variety of wattage options.\r\n\r\nFusion Pro 36 (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3lcq-W7Y8-PT6lZ3mrW3HvD7V2FZM0YVpJ3cz4K7V4nW2T33-K41-HPpN6GQCm990531W4JHrpF8vHPh5W8VT8GX7-zBhqW7NC8HV3bp3DFW627SrH7_Hzn8W2rhzPc8v-nplW8Msqtg5mCqCYW7R9Sgj88Rvy9W6wwkSt4dJm8lW7-gsXK2g73V4W29B0Xj4g803_W3wpfTX7cj7wGW1_NMyv6HB7n5W5LBff41r4S8QW2YYdS11XjJyPW3RgVJQ1fw303VVG6l-1qmV0sW85YWzD6x4tdkW10wnjF4ZWyJrVb-74p3YCJFxW1ZfTVs70D_z1W8kMXs12MH82fW10gnvQ9j56Wff7M-B8-04 )\r\nFeaturing a generous 36” x 24” (914 x 610 mm) worktable, the Fusion Pro 36 boasts 165 inches per second engraving speeds and is available with a CO2 laser source or CO2 and fiber laser source combination. Also included is the IRIS™ Camera Positioning system and up to 165 IPS/ 4.2 m/s engraving speeds.\r\n\r\nFusion Pro 48 (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3lcq-W7Y8-PT6lZ3mrW3HvD7V2FZM0YVpJ3cz4K7V4nW2T33-K41-HPpN6GQCm990531W4JHrpF8vHPh5W8VT8GX7-zBhqW7NC8HV3bp3DFW627SrH7_Hzn8W2rhzPc8v-nplW8Msqtg5mCqCYW7R9Sgj88Rvy9W6wwkSt4dJm8lW7-gsXK2g73V4W29B0Xj4g803_W3wpfTX7cj7wGW1_NMyv6HB7n5W5LBff41r4S8QW2YYdS11XjJyPW3RgVJQ1fw303VVG6l-1qmV0sW85YWzD6x4tdkW10wnjF4ZWyJrVb-74p3YCJFxW1ZfTVs70D_z1W8kMXs12MH82fW10gnvQ9j56Wff7M-B8-04 )\r\nThe largest system in the Fusion Pro Series includes a 48” x 36” (1219 x 914 mm) engraving space and a variety of wattage and laser source configurations. The Fusion Pro 48 comes equipped with a built-in air compressor and Ethernet, USB, and Wireless options for networking your laser.\r\n\r\nFiber Laser Systems\r\n\r\nFusion Edge 12 (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3lcq-W7Y8-PT6lZ3lkW7F3Jg46LFXBtW83gC3L22W6w3W8217dQ2fljYnW8YQD8j1xJFphW87R-sc88tk1ZW2NSVv78b8bnCW6zK2Y-7Smz4VW1B5QZ994hsvlW1HcN2C4vM6vjW7pqD5Y3ZR7qHW4tbKfg3dTxFyW4STvrJ1RZp4pW6Jzgh5293BpfVmZHfZ3-ykMsW8QcV628rH0WgW4w0_WB7plnq-N82m7YkqWWT6V9qB2n7tc_rmW1hrSxn6vRrvlW1QkLxR7GGpQWW537Bt58-WffKF3nTt7jjjsfVJJcnz6vF3gdW8L8M0D1V9P_zN5rpb9bXBrdQW3QJJ9l2QNDwdf54mYGT04 )\r\nThe fiber Fusion Edge 12 is equipped with a 30 watt fiber laser, combining our highest-quality engraving technology into a 24\" x 12\" (610 x 305 mm) system for directly marking metals and engineered plastics.\r\n\r\nFusion Pro 24 (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3lcq-W7Y8-PT6lZ3mrW3HvD7V2FZM0YVpJ3cz4K7V4nW2T33-K41-HPpN6GQCm990531W4JHrpF8vHPh5W8VT8GX7-zBhqW7NC8HV3bp3DFW627SrH7_Hzn8W2rhzPc8v-nplW8Msqtg5mCqCYW7R9Sgj88Rvy9W6wwkSt4dJm8lW7-gsXK2g73V4W29B0Xj4g803_W3wpfTX7cj7wGW1_NMyv6HB7n5W5LBff41r4S8QW2YYdS11XjJyPW3RgVJQ1fw303VVG6l-1qmV0sW85YWzD6x4tdkW10wnjF4ZWyJrVb-74p3YCJFxW1ZfTVs70D_z1W8kMXs12MH82fW10gnvQ9j56Wff7M-B8-04 )\r\nIdeal for direct metal and engineered plastic marking, the Fusion Pro 24 with a fiber laser features a 24\" x 24\" (610 x 610 mm) workspace, IRIS™ Camera Positioning, SAFEGUARD™ features, and more.\r\n\r\nFusion Galvo G100 (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3lcq-W7Y8-PT6lZ3mrW3HvD7V2FZM0YVpJ3cz4K7V4nW2T33-K41-HPpN6GQCm990531W4JHrpF8vHPh5W8VT8GX7-zBhqW7NC8HV3bp3DFW627SrH7_Hzn8W2rhzPc8v-nplW8Msqtg5mCqCYW7R9Sgj88Rvy9W6wwkSt4dJm8lW7-gsXK2g73V4W29B0Xj4g803_W3wpfTX7cj7wGW1_NMyv6HB7n5W5LBff41r4S8QW2YYdS11XjJyPW3RgVJQ1fw303VVG6l-1qmV0sW85YWzD6x4tdkW10wnjF4ZWyJrVb-74p3YCJFxW1ZfTVs70D_z1W8kMXs12MH82fW10gnvQ9j56Wff7M-B8-04 )\r\nThis high-speed metal marking system includes both F163 and F254 lenses to move seamlessly between a 4” x 4” (101.6 x 101.6 mm) and 6” x 6” (152.4 x 152.4 mm) engraving area.\r\n\r\nDual Laser Systems\r\n\r\nFusion Pro 24 (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3lcq-W7Y8-PT6lZ3mrW3HvD7V2FZM0YVpJ3cz4K7V4nW2T33-K41-HPpN6GQCm990531W4JHrpF8vHPh5W8VT8GX7-zBhqW7NC8HV3bp3DFW627SrH7_Hzn8W2rhzPc8v-nplW8Msqtg5mCqCYW7R9Sgj88Rvy9W6wwkSt4dJm8lW7-gsXK2g73V4W29B0Xj4g803_W3wpfTX7cj7wGW1_NMyv6HB7n5W5LBff41r4S8QW2YYdS11XjJyPW3RgVJQ1fw303VVG6l-1qmV0sW85YWzD6x4tdkW10wnjF4ZWyJrVb-74p3YCJFxW1ZfTVs70D_z1W8kMXs12MH82fW10gnvQ9j56Wff7M-B8-04 )\r\nFeatures a 24” x 24” (610 x 610 mm) workspace and includes both a CO2 for cutting/engraving organic materials and a fiber laser source suited for bare metal marking. Choose from a 60 watt CO2 and 30 watt Fiber source or 100 watt CO2 and 50 watt Fiber source.\r\n\r\nFusion Pro 36 (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3lcq-W7Y8-PT6lZ3mrW3HvD7V2FZM0YVpJ3cz4K7V4nW2T33-K41-HPpN6GQCm990531W4JHrpF8vHPh5W8VT8GX7-zBhqW7NC8HV3bp3DFW627SrH7_Hzn8W2rhzPc8v-nplW8Msqtg5mCqCYW7R9Sgj88Rvy9W6wwkSt4dJm8lW7-gsXK2g73V4W29B0Xj4g803_W3wpfTX7cj7wGW1_NMyv6HB7n5W5LBff41r4S8QW2YYdS11XjJyPW3RgVJQ1fw303VVG6l-1qmV0sW85YWzD6x4tdkW10wnjF4ZWyJrVb-74p3YCJFxW1ZfTVs70D_z1W8kMXs12MH82fW10gnvQ9j56Wff7M-B8-04 )\r\nThis system includes a 36” x 24” (914 x 610 mm) engraving area and up to 165 IPS/ 4.2 m/s engraving speeds. Choose from a 80 watt CO2 and 30 watt Fiber source or 100 watt CO2 and 50 watt Fiber source.\r\n\r\nFusion Pro 48 (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3lcq-W7Y8-PT6lZ3mrW3HvD7V2FZM0YVpJ3cz4K7V4nW2T33-K41-HPpN6GQCm990531W4JHrpF8vHPh5W8VT8GX7-zBhqW7NC8HV3bp3DFW627SrH7_Hzn8W2rhzPc8v-nplW8Msqtg5mCqCYW7R9Sgj88Rvy9W6wwkSt4dJm8lW7-gsXK2g73V4W29B0Xj4g803_W3wpfTX7cj7wGW1_NMyv6HB7n5W5LBff41r4S8QW2YYdS11XjJyPW3RgVJQ1fw303VVG6l-1qmV0sW85YWzD6x4tdkW10wnjF4ZWyJrVb-74p3YCJFxW1ZfTVs70D_z1W8kMXs12MH82fW10gnvQ9j56Wff7M-B8-04 )\r\nThe largest of our dual-source systems, the Pro 48 dual source features a 48” x 36” (1219 x 914 mm) work area and 120 watt CO2 tube, coupled with a 50 watt fiber laser source.\r\n\r\nOptional Accessories\r\n\r\nRim Drive Rotary (Fusion Maker, Fusion Edge & Fusion Pro)\r\nPhotoLaser Plus Software\r\n\r\n3-Jaw Chuck Rotary (All Systems)\r\nVector Grid, Slats, or Task Plate (Fusion Pro 24/36/48)\r\n\r\nLens - 1.5\" (Fusion Maker, Fusion Edge 12/24, Fusion Pro 24/36)\r\nFloor Stand (Fusion Maker 12, Fusion Edge 12)\r\n\r\nLens - 4\" (Fusion Maker, Fusion Edge & Fusion Pro)\r\nFerromagnetic Table (Fusion Galvo)\r\n\r\nAir Assist Pump (Standard on Fusion Pro 48)\r\n\r\nWould you like a system quote?\r\n\r\nFor a full quotation on any system, including the new Fusion Maker (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s60K3lcq-W7Y8-PT6lZ3lnW4FFcF-9fjwg0Vf2RJh6Tt8yZN5xhNxg8CwbWW7c3lTW8_BDSnVq0wzF3b8HN4W38pPR095vq_NW5v6cGF21VknwW36bGnb8rDwd1W2LnW4t5JHmYXW91589B46X1hLVVxYxG74G4s9W1Ftt7Y8CjThCW87kLZk2mMScJW756c9z24YV1sW4JBMr_2My1nTW37SjH16Frpk3N8-frtjRqcFPW2MWhMZ2VwhyvVDkcps15ZP84W3Nc0Q-2RthTRW4JBrRX980S8BW6PdT3R41CtJ8W1qvsLw8ybwdJVKG2Rl8m4T8dV7K88p7dW4JFW2947sc64RRPsf1g0XYj04 ) with IRIS™ Camera Positioning and SAFEGUARD™ features, please call Keystone Prototyping    at (844) 959-0100 (tel:+1-844-959-0100) .\r\n\r\nKeystone Prototyping Solutions\r\n\r\n(844) 959-0100 (tel:+1-844-959-0100)\r\n\r\ninfo@keystoneprototypingsolutions.com (mailto:info@keystoneprototypingsolutions.com)\r\n\r\nwww.keystoneprototypingsolutions.com (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s6063lcq-W6N1vHY6lZ3l-W5zDdGt58brHnN5JL_pzhDjBJW36HR-97J8QxkW4XQQy28xPwVZN1nvrnPhpZ-nW76k4wf2bf2k0VKj0fZ2YWV_VN5C7H0lpsyZwW66lXQq7xQlfFW8Dwg5T16lTRSN7847hlGzS8FVPs_Kc52pgz3W2SWcsG2zM2cHW6jQYQm25czG9W16tq5037FSXMW5Q9jGt8BcGJKW6hjSc43_0tXCW6K3d_q2ZNkKtW4dSbwW4-m6bSW3R7ygL20-80xW5PRnpk4JgrL_N2LL-XwwR7PTf1Fqgrz04 )\r\n\r\nYOU HAVE RECEIVED THIS EMAIL BECAUSE YOU ASKED TO RECEIVE MORE INFORMATION FROM EPILOG LASER AT WWW.EPILOGLASER.COM (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VVF62p6QXGmcW9jDldS5MvbT4W4gSXWJ5yQf_DN26s5_R3lcq-W69sMD-6lZ3m_W7gKT5D6CK0_9W5FS_Wj2K_7B5W57mGc37clTmzW5Q-gt67jzgbfN7jksfPf3cwXW3wyQWY4XdHB2N2TVnlct3b0rW9gcR6f52RBpLW6jy02B197Mr9V5kJqk67skvBW2_hLRV1KTwPbVwXxxj85k-ygW8tK1Wf4jJd58W1LWmBK4qLVBpW7YPhmD1V94tQVMbjSp1_b5RnW4TMDRs2LWQfCW3MldZk3Zk8fxW471-pX1rZCmHW39dQpH1zFSwJf8MMTHW04 ) OR ANOTHER EPILOG LASER WEBSITE.\r\n\r\n© Epilog Laser  |  All Rights Reserved.  |  16371 Table Mountain Parkway, Golden, Colorado, 80403, USA  |  +1 303 277 1188',0,0,0,0,0,0,'2025-07-10 02:09:16','2025-12-09 19:13:28','2025-12-09 19:13:28','2025-12-09 19:13:28',NULL,NULL,NULL),
(443,4,'<IqKjzzxbJbQVK9iBoPT7p0Q2HWmOmbkdqiohM19jVG8LfTgo5pkAIGiy4-W3z6tCRpxvH84pV4AXku2iho2je_wLQYMhYnS0o8twaRH68gE=@s3global.us>',NULL,NULL,'Re: NDNCA','CT@s3global.us','CT','<div style=\"font-family: Arial, sans-serif; font-size: 14px;\">Rick,&nbsp;</div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\">Please see attached. I\'ve put it into .pdf format and signed as well if there is no further changes, please sign and return to me for our records.&nbsp;</div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\">Thanks very much.</div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\">Carson</div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div>\r\n<div style=\"font-family: Arial, sans-serif; font-size: 14px;\" class=\"protonmail_signature_block\">\r\n    <div class=\"protonmail_signature_block-user\">\r\n        <div><span style=\"font-family:Arial, sans-serif\"><span style=\"font-family:Georgia, serif;font-size:12pt\">Carson J. Tucker, Esq., JD, MSEL</span></span><div style=\"font-family:Arial, sans-serif\"><div><div style=\"background-color: rgb(255, 255, 255);\"><span style=\"font-family:Georgia, serif;font-size:12pt\">General Counsel</span></div><div style=\"background-color: rgb(255, 255, 255);\"><span style=\"font-family:Georgia, serif;font-size:12pt\">S3 Global, LLC</span></div><div style=\"background-color: rgb(255, 255, 255);\"><span style=\"font-family:Georgia, serif;font-size:12pt\">US +17348879261</span></div><div style=\"background-color: rgb(255, 255, 255);\"><span style=\"font-family:Georgia, serif;font-size:12pt\">UK +447484678559</span></div><div style=\"background-color: rgb(255, 255, 255);\"><span style=\"font-family:Georgia, serif;font-size:12pt\">EU +33648505867</span></div><div style=\"background-color: rgb(255, 255, 255);\"><span style=\"font-family:Georgia, serif\"><br></span></div><span style=\"background-color: rgb(255, 255, 255);\"><span style=\"font-family:Georgia, serif\"><span style=\"font-size:12pt\">This message and any attachments may contain confidential information which is intended only for the use of the addressee(s).&nbsp; It may also contain information which is protected by attorney/client privilege or the work-product doctrine, among other confidentiality principles and legal privileges.&nbsp;Copying, forwarding, or distributing of this communication by or to persons other than the addressee(s) is prohibited.&nbsp;&nbsp;If you have received this communication in error, do not forward it or use it in any way. &nbsp;Please notify us immediately of the error and promptly delete and/or destroy all electronic and/or paper versions of this communication and any attachments.&nbsp; Thank you for your cooperation and we apologize for any inconvenience.</span><span style=\"font-size:12pt\">&nbsp;</span><span style=\"font-size:10.5pt\">&nbsp;</span></span></span></div></div><div style=\"font-family: Arial, sans-serif; background-color: rgb(255, 255, 255);\"><span style=\"font-family:Georgia, serif\"><br></span></div></div><span style=\"font-family:Arial, sans-serif\"></span>\r\n    </div>\r\n    <div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div>\r\n    <div class=\"protonmail_signature_block-proton\">\r\n        Sent with <a href=\"https://proton.me/mail/home\" target=\"_blank\">Proton Mail</a> secure email.\r\n    </div>\r\n</div>\r\n<div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div><div class=\"protonmail_quote\">\r\n        On Sunday, July 6th, 2025 at 3:06 PM, Rick &lt;rick@mavrix.one&gt; wrote:<br>\r\n        <blockquote class=\"protonmail_quote\" type=\"cite\">\r\n            \r\n    <div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">I’ve made some edits that should be considered</div> See attached. confirm receipt and let me know.<div>Thanks,</div><div>Rick<br> <div id=\"bloop_sign_1751807066320165120\" class=\"bloop_sign\">\r\n        \r\n\r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\" target=\"_blank\" rel=\"noreferrer nofollow noopener\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n\r\n</div> <br><p class=\"airmail_on\">On July 4, 2025 at 1:05:46 PM, CT (<a href=\"mailto:ct@s3global.us\" rel=\"noreferrer nofollow noopener\">ct@s3global.us</a>) wrote:</p> <blockquote type=\"cite\" class=\"clean_bq\"><span><div><div></div><div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\">Rick, Here is our standard NDNCA. Will need company name and infromation / address, and name of signatory, i.e., CEO, etc.</div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\">Please let me know if you have any questions or suggestions.</div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\">Sincerely</div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div>\r\n<div style=\"font-family: Arial, sans-serif; font-size: 14px;\" class=\"protonmail_signature_block\">\r\n    <div class=\"protonmail_signature_block-user\"><div><span style=\"font-family:Arial, sans-serif\"><span style=\"font-family:Georgia, serif;font-size:12pt\">Carson J. Tucker, Esq., JD, MSEL</span></span><div style=\"font-family:Arial, sans-serif\"><div><div style=\"background-color: rgb(255, 255, 255);\"><span style=\"font-family:Georgia, serif;font-size:12pt\">General Counsel</span></div><div style=\"background-color: rgb(255, 255, 255);\"><span style=\"font-family:Georgia, serif;font-size:12pt\">S3 Global, LLC</span></div><div style=\"background-color: rgb(255, 255, 255);\"><span style=\"font-family:Georgia, serif;font-size:12pt\">US +17348879261</span></div><div style=\"background-color: rgb(255, 255, 255);\"><span style=\"font-family:Georgia, serif;font-size:12pt\">UK +447484678559</span></div><div style=\"background-color: rgb(255, 255, 255);\"><span style=\"font-family:Georgia, serif;font-size:12pt\">EU +33648505867</span></div><div style=\"background-color: rgb(255, 255, 255);\"><span style=\"font-family:Georgia, serif\"><br></span></div><span style=\"background-color: rgb(255, 255, 255);\"><span style=\"font-family:Georgia, serif\"><span style=\"font-size:12pt\">This message and any attachments may contain confidential information which is intended only for the use of the addressee(s).&nbsp; It may also contain information which is protected by attorney/client privilege or the work-product doctrine, among other confidentiality principles and legal privileges.&nbsp;Copying, forwarding, or distributing of this communication by or to persons other than the addressee(s) is prohibited.&nbsp;&nbsp;If you have received this communication in error, do not forward it or use it in any way. &nbsp;Please notify us immediately of the error and promptly delete and/or destroy all electronic and/or paper versions of this communication and any attachments.&nbsp; Thank you for your cooperation and we apologize for any inconvenience.</span><span style=\"font-size:12pt\">&nbsp;</span><span style=\"font-size:10.5pt\">&nbsp;</span></span></span></div></div><div style=\"font-family: Arial, sans-serif; background-color: rgb(255, 255, 255);\"><span style=\"font-family:Georgia, serif\"><br></span></div></div><span style=\"font-family:Arial, sans-serif\"></span></div>\r\n    <div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div>\r\n    <div class=\"protonmail_signature_block-proton\">\r\n        Sent with <a href=\"https://proton.me/mail/home\" target=\"_blank\" rel=\"noreferrer nofollow noopener\">Proton Mail</a> secure email.\r\n    </div>\r\n</div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</div>\r\n        </blockquote><br>\r\n    </div>','Rick,\n\nPlease see attached. I\'ve put it into .pdf format and signed as well if there is no further changes, please sign and return to me for our records.\n\nThanks very much.\n\nCarson\n\nCarson J. Tucker, Esq., JD, MSEL\nGeneral Counsel\nS3 Global, LLC\nUS +17348879261\nUK +447484678559\nEU +33648505867\n\nThis message and any attachments may contain confidential information which is intended only for the use of the addressee(s). It may also contain information which is protected by attorney/client privilege or the work-product doctrine, among other confidentiality principles and legal privileges. Copying, forwarding, or distributing of this communication by or to persons other than the addressee(s) is prohibited. If you have received this communication in error, do not forward it or use it in any way. Please notify us immediately of the error and promptly delete and/or destroy all electronic and/or paper versions of this communication and any attachments. Thank you for your cooperation and we apologize for any inconvenience.\n\nSent with [Proton Mail](https://proton.me/mail/home) secure email.\n\nOn Sunday, July 6th, 2025 at 3:06 PM, Rick <rick@mavrix.one> wrote:\n\n> I’ve made some edits that should be considered\n> See attached. confirm receipt and let me know.\n> Thanks,\n> Rick\n>\n> Rick Mislan, PhD\n>\n> [https://mavrix.one](https://mavrix.one\n> https://mavrix.one\n> https://mavrix.one)\n>\n> On July 4, 2025 at 1:05:46 PM, CT (ct@s3global.us) wrote:\n>\n>> Rick, Here is our standard NDNCA. Will need company name and infromation / address, and name of signatory, i.e., CEO, etc.\n>>\n>> Please let me know if you have any questions or suggestions.\n>>\n>> Sincerely\n>>\n>> Carson J. Tucker, Esq., JD, MSEL\n>> General Counsel\n>> S3 Global, LLC\n>> US +17348879261\n>> UK +447484678559\n>> EU +33648505867\n>>\n>> This message and any attachments may contain confidential information which is intended only for the use of the addressee(s). It may also contain information which is protected by attorney/client privilege or the work-product doctrine, among other confidentiality principles and legal privileges. Copying, forwarding, or distributing of this communication by or to persons other than the addressee(s) is prohibited. If you have received this communication in error, do not forward it or use it in any way. Please notify us immediately of the error and promptly delete and/or destroy all electronic and/or paper versions of this communication and any attachments. Thank you for your cooperation and we apologize for any inconvenience.\n>>\n>> Sent with [Proton Mail](https://proton.me/mail/home) secure email.',0,0,0,0,0,0,'2025-07-10 11:28:46','2025-12-09 19:13:29','2025-12-09 19:13:29','2025-12-09 19:13:29',NULL,NULL,NULL),
(444,4,' <BN8P111MB212742FF2C9EA220B5E96931D348A@BN8P111MB2127.NAMP111.PROD.OUTLOOK.COM>',NULL,NULL,'Fw: UPDATE: SECDEF UAS Guidance - [UNCLASSIFIED]','paul.r.shorkey-chacon.mil@army.mil','\"Shorkey-Chacon, Paul R CPT USARMY 1 ID 2 ABCT (USA)\"','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div id=\"x_oct-marking-header-unclassified\" style=\"border-bottom: 1em; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<b>UNCLASSIFIED</b></div>\r\n<div id=\"x_ms-marking-body\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"x_Signature\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"background-color: rgb(255, 255, 255); font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nVery Respectfully,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nPaul Shorkey-Chacon</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nCPT, FA</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nDeputy Innovation Officer</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;\">\r\n<span style=\"font-size: 14pt; color: rgb(237, 92, 87);\">1</span><span style=\"font-size: 12pt; color: rgb(0, 0, 0);\"><sup>st</sup>&nbsp;Infantry Division</span></div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n✉ NIPR: paul.r.shorkey-chacon.mil@army.mil</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n📱 Cell: (443) 889-6741</div>\r\n<div style=\"font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"x_oct-marking-footer-unclassified\" style=\"border-top: 1em;\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<b>UNCLASSIFIED</b></div>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<hr style=\"display: inline-block; width: 98%;\">\r\n<div id=\"divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Huntsman, Andrew B MAJ USARMY 25 ID (USA) &lt;andrew.b.huntsman2.mil@army.mil&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, July 9, 2025 9:29 PM<br>\r\n<b>To:</b>&nbsp;Shorkey-Chacon, Paul R CPT USARMY 1 ID 2 ABCT (USA) &lt;paul.r.shorkey-chacon.mil@army.mil&gt;<br>\r\n<b>Subject:</b>&nbsp;Fw: UPDATE: SECDEF UAS Guidance</div>\r\n<div style=\"direction: ltr;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nFor SA; my analysis on the updated distro</div>\r\n<div id=\"x_ms-outlook-mobile-body-separator-line\" style=\"direction: ltr;\"><br>\r\n</div>\r\n<div id=\"x_ms-outlook-mobile-signature\">\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt; color: rgb(33, 33, 33);\">v/r</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt; color: rgb(33, 33, 33);\">&nbsp;</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt; color: rgb(33, 33, 33);\">Andrew B. Huntsman</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt; color: rgb(33, 33, 33);\">MAJ, CM</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt; color: rgb(33, 33, 33);\">25ID, Headquarters and Headquarters Battalion, Operations Officer</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt; color: currentcolor;\"><u>Schofield Barracks, HI 96857</u></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; margin: 0in;\"><span style=\"font-family: &quot;Segoe UI Emoji&quot;, sans-serif; font-size: 11pt; color: rgb(33, 33, 33);\">☎</span><span style=\"font-family: Arial, sans-serif; font-size: 11pt; color: rgb(33, 33, 33);\">&nbsp;Cell\r\n (</span><span style=\"font-family: Arial, sans-serif; font-size: 11pt; color: currentcolor;\"><u>860-573-3783</u></span><span style=\"font-family: Arial, sans-serif; font-size: 11pt; color: rgb(33, 33, 33);\">)</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; margin: 0in;\"><span style=\"font-family: &quot;Segoe UI Symbol&quot;, sans-serif; font-size: 11pt; color: rgb(33, 33, 33);\">✉</span><span style=\"font-family: Arial, sans-serif; font-size: 11pt; color: rgb(33, 33, 33);\">&nbsp;NIPR\r\n</span><span style=\"font-family: Arial, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:Andrew.b.huntsman2.mil@army.mil\" id=\"OWA27116f44-aa48-5e08-ba85-2dd2eb62cd04\" class=\"OWAAutoLink\" data-linkindex=\"15\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">Andrew.b.huntsman2.mil@army.mil</a></u></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; margin: 0in;\"><span style=\"font-family: &quot;Segoe UI Symbol&quot;, sans-serif; font-size: 11pt; color: rgb(33, 33, 33);\">✉</span><span style=\"font-family: Arial, sans-serif; font-size: 11pt; color: rgb(33, 33, 33);\">&nbsp;SIPR\r\n</span><span style=\"font-family: Arial, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:Andrew.b.huntsman2.mil@mail.smil.mil\" id=\"OWAf969a1d1-966c-8bc4-f7d0-0936bbe73cf6\" class=\"OWAAutoLink\" data-linkindex=\"16\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">Andrew.b.huntsman2.mil@mail.smil.mil</a></u></span></p>\r\n<div style=\"direction: ltr; color: rgb(0, 0, 0);\"><br>\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n</div>\r\n<hr style=\"display: inline-block; width: 98%;\">\r\n<div id=\"x_divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Huntsman, Andrew B MAJ USARMY 25 ID (USA) &lt;andrew.b.huntsman2.mil@army.mil&gt;<br>\r\n<b>Sent:</b>&nbsp;Thursday, July 3, 2025 6:02:47 PM<br>\r\n<b>To:</b>&nbsp;Brunais, David A COL USARMY AWC (USA) &lt;david.a.brunais.mil@army.mil&gt;; McCombs, Adam F LTC USARMY 25 ID 2 IBCT (USA) &lt;adam.f.mccombs.mil@army.mil&gt;<br>\r\n<b>Cc:</b>&nbsp;Durling, Taylor J MAJ USARMY 25 ID (USA) &lt;taylor.j.durling.mil@army.mil&gt;; Whitney, Nathan H LTC USARMY 25 ID (USA) &lt;nathan.h.whitney.mil@army.mil&gt;; Owens, John P CPT USARMY (USA) &lt;john.p.owens45.mil@army.mil&gt;; Hinds, Jason F MAJ USARMY 25 ID (USA)\r\n &lt;jason.f.hinds.mil@army.mil&gt;; Scuremanstoops, Harmen A 1LT USARMY 25 ID 3 BCT (USA) &lt;harmen.a.scuremanstoops.mil@army.mil&gt;; Love, William C 1SG USARMY 25 ID (USA) &lt;william.c.love.mil@army.mil&gt;; Mazzanti, Luca C CPT USARMY 25 ID DIVARTY (USA) &lt;luca.c.mazzanti.mil@army.mil&gt;;\r\n Manning, Grant N CPT USARMY 25 ID DIVARTY (USA) &lt;grant.n.manning.mil@army.mil&gt;; Huggins, Ian M CPT USARMY 25 ID (USA) &lt;ian.m.huggins.mil@army.mil&gt;; Moss, Daniel D CIV USARMY 25 ID (USA) &lt;daniel.d.moss.civ@army.mil&gt;; Siegmund, Raymond T Jr 1SG USARMY 25 ID\r\n DIVARTY (USA) &lt;raymond.t.siegmund.mil@army.mil&gt;; Perez, Matthew G (Matt) CPT USARMY 25 ID (USA) &lt;matthew.g.perez2.mil@army.mil&gt;; Moats, Danny G CIV USARMY USARPAC (USA) &lt;danny.g.moats.civ@army.mil&gt;; Fernando, Noel N MAJ USARMY 25 ID (USA) &lt;noel.n.fernando.mil@army.mil&gt;;\r\n Lopez, Eric S CW4 USARMY 25 ID (USA) &lt;eric.s.lopez10.mil@army.mil&gt;; LeMay, Matthew B CW2 USARMY 25 ID 2 IBCT (USA) &lt;matthew.b.lemay2.mil@army.mil&gt;; Anninos, Nikolas G MAJ USARMY 25 ID 2 IBCT (USA) &lt;nikolas.g.anninos.mil@army.mil&gt;; Maldonado, Anthony T MAJ\r\n USARMY 25 ID (USA) &lt;anthony.t.maldonado1.mil@army.mil&gt;; Armstrong, Robert M CW2 USARMY 25 ID 3 BCT (USA) &lt;robert.m.armstrong52.mil@army.mil&gt;; Arakawa, Christopher M CIV USARMY 25 ID (USA) &lt;christopher.m.arakawa.civ@army.mil&gt;; Herrera, Rafael MAJ USARMY 25\r\n ID 3 BCT (USA) &lt;rafael.herrera2.mil@army.mil&gt;; Killian, Howard John CIV USARMY USARPAC (USA) &lt;howard.j.killian2.civ@army.mil&gt;; Lukefahr, Benjamin David CIV USARMY USARPAC (USA) &lt;benjamin.d.lukefahr.civ@army.mil&gt;; Robinson, Wandlyn D LTC USARMY 25 ID (USA)\r\n &lt;wandlyn.d.robinson.mil@army.mil&gt;; Fowler, David P MAJ USARMY 25 ID (USA) &lt;david.p.fowler6.mil@army.mil&gt;; Chickering, James C CIV USARMY 25 ID (USA) &lt;james.c.chickering.civ@army.mil&gt;; Rollins, Hana A COL USARMY 25 ID (USA) &lt;hana.a.rollins.mil@army.mil&gt;; Perone,\r\n Amanda G CPT USARMY 25 ID (USA) &lt;amanda.g.perone.mil@army.mil&gt;; Mass, Joshua M SSG USARMY 25 ID DIVARTY (USA) &lt;joshua.m.mass.mil@army.mil&gt;; Donahoe, Sean W LTC USARMY 25 ID (USA) &lt;sean.w.donahoe.mil@army.mil&gt;; Mclachlan, Sean Kelly (Mac) MAJ USARMY 25 ID (USA)\r\n &lt;sean.k.mclachlan.mil@army.mil&gt;; Hall, Courtney N LTC USARMY 25 ID (USA) &lt;courtney.n.hall.mil@army.mil&gt;; Mcgowan, Jeffrey M MAJ USARMY 25 ID (USA) &lt;jeffrey.m.mcgowan2.mil@army.mil&gt;; Kline, Anne C MAJ USARMY 25 ID (USA) &lt;anne.c.kline.mil@army.mil&gt;; VonBenken,\r\n Daniel John COL USARMY 25 ID DIVARTY (USA) &lt;daniel.j.vonbenken.mil@army.mil&gt;; Swint, Sean E CSM USARMY 25 ID DIVARTY (USA) &lt;sean.e.swint.mil@army.mil&gt;; Spracklen, Christopher M MAJ USARMY 25 ID DIVARTY (USA) &lt;christopher.m.spracklen.mil@army.mil&gt;; Blake, Rance\r\n T MAJ USARMY 25 ID (USA) &lt;rance.t.blake.mil@army.mil&gt;; Staab, Charles A LTC USARMY 25 ID (USA) &lt;charles.a.staab.mil@army.mil&gt;; Pratt, Michael B MAJ USARMY 25 ID (USA) &lt;michael.b.pratt1.mil@army.mil&gt;; Montgomery, Varian T CSM USARMY 25 ID (USA) &lt;varian.t.montgomery.mil@army.mil&gt;;\r\n Lee, Norreal P MAJ USARMY 25 ID (USA) &lt;norreal.p.lee.mil@army.mil&gt;; Eaton, Richard MAJ USARMY 25 ID (USA) &lt;richard.eaton1.mil@army.mil&gt;; Fisk, David A MSG USARMY 25 ID (USA) &lt;david.a.fisk4.mil@army.mil&gt;; Grieco, Michael C LTC USARMY 25 ID DIVARTY (USA) &lt;michael.c.grieco2.mil@army.mil&gt;<br>\r\n<b>Subject:</b>&nbsp;FW: UPDATE: SECDEF UAS Guidance</div>\r\n<div style=\"direction: ltr;\">&nbsp;</div>\r\n</div>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\">Gentleman,</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\">&nbsp;</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\"><b>BLUF:</b>&nbsp;The SECDEF Memorandum implementing the President’s Executive Order 14307, “Unleashing American Drone Dominance,”\r\n June 6, 2025, is expected to be formally signed/published 8JUL25. My thanks to the Lightning Academy team who leveraged through contacts on MCCoE to get an advance copy. There is limited change to the policy block of the one slider or the executive summary\r\n that will be displayed during the 17JUL LOAI; this slide is pasted below the initial memo analysis. I’ve highlighted a few critical components for the wider enterprise as this policy is codified in EXORDs, as identified by the COL Ryan ACAM-UAS Director or\r\n my own notes in </span><span style=\"font-family: Arial, sans-serif; font-size: 11pt; color: red;\">RED</span><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\">.</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\">&nbsp;</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\"><b><u>Key highlights from the final draft memorandum, with Army impacts:</u></b></span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\">&nbsp;</span></p>\r\n<ul style=\"margin-top: 0in; margin-bottom: 0in;\">\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; color: black; line-height: 102%; margin: 0in;\">\r\nOur ground units are not armed with first-person view (FPV) attack drones, a necessity in modern combat. &nbsp;Executive Order 14307 (reference (a)) requires the Department to procure low-cost domestic drones, supporting our warfighters and our Nation’s nascent\r\n industry. &nbsp;The DoD must go above and beyond this Executive Order to achieve battlefield superiority.&nbsp;\r\n<span style=\"letter-spacing: -0.15pt; background-color: yellow;\" role=\"presentation\">\r\n<u>By the end of 2026, every squad will be armed with dozens of low-cost, mission-tailored drones, including lethal FPVs</u>.</span></li><ul style=\"margin-top: 0in; margin-bottom: 0in;\">\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; color: red; line-height: 102%; margin: 0in;\">\r\n<span style=\"letter-spacing: -0.15pt; background-color: yellow;\" role=\"presentation\"><b>MAJ Huntsman – Critical to our spend plan/build plan through Lightning Labs and eventually Forge.</b></span></li></ul>\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\" role=\"presentation\">Immediately rescinds the\r\n<b>2021 DoD Memorandum, “<i>Guidance for Procedures for the Operation and Procurement of UAS to Implement Section 848 of the NDAA for FY 2020</i>,”</b>&nbsp;and the\r\n<b>2022 DoD memorandum “<i>Exception to Policy Requirement for Blue Small Unmanned Aircraft Systems</i>.”</b></span></li><ul style=\"margin-top: 0in; margin-bottom: 0in;\">\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; color: red; margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif; font-size: 11pt; background-color: yellow;\" role=\"presentation\">ACAM: These restrictive policies hindered drone production and limited troop access to vital battlefield technologies.</span></li><li style=\"font-family: Aptos, sans-serif; font-size: 12pt; color: red; margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif; font-size: 11pt; background-color: yellow;\" role=\"presentation\"><i>ACAM - The new guidance delegates authority to our training commands and operational forces, in some cases down to O6 and first GO level commanders.</i></span></li></ul>\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\" role=\"presentation\">Grants authority to O-6 commanders or equivalents for authority to operate (ATO) to test and train with\r\n NDAA-compliant UAS, from lab prototypes to commercial products to molds fabricated by U.S. troops using compliant critical components.</span></li><ul style=\"margin-top: 0in; margin-bottom: 0in;\">\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; color: red; margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif; font-size: 11pt; background-color: yellow;\" role=\"presentation\"><i>ACAM - These UAS must remain in closed loop cyber networks, cordoned from DoD networks.</i></span></li></ul>\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\" role=\"presentation\">Commanders are encouraged to engage in local innovation through three-dimensional printing, key component\r\n purchasing, and other mission-specific opportunities. &nbsp;O-6 commanders and equivalents may nominate critical components and systems for priority Blue List review.</span></li><ul style=\"margin-top: 0in; margin-bottom: 0in;\">\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; color: red; margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif; font-size: 11pt; background-color: yellow;\" role=\"presentation\">MAJ Huntsman – Ability for our parts purchases that currently go through ETP process to get priority to add to blue list; SECDEF memo prefers US companies,\r\n however.</span></li></ul>\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\" role=\"presentation\">Following testing, the\r\n</span><span style=\"font-family: Arial, sans-serif; font-size: 11pt; background-color: yellow;\" role=\"presentation\">first general officer in the chain-of-command may approve large purchases of NDAA-compliant UAS or components with the ability to connect to\r\n DoD networks.</span></li><ul style=\"margin-top: 0in; margin-bottom: 0in;\">\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\" role=\"presentation\">MAJ Huntsman – This line is critical to the</span></li></ul>\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\" role=\"presentation\">Military services shall\r\n<b>install funding at the Military Department level for Group 1 and Group 2</b>, or “small,” UAS testing and training to avoid depleting operational dollars.</span></li><ul style=\"margin-top: 0in; margin-bottom: 0in;\">\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; color: red; margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif; font-size: 11pt; background-color: yellow;\" role=\"presentation\">MAJ Huntsman – Similar to TiC Funding; unsure if additional funds will be made available in addition to TiC/PMTEC already allocated.</span></li></ul>\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\" role=\"presentation\">Military services will determine\r\n<b>airworthiness and material release requirements for UAS</b>, exempting Group 1 and Group 2 with few exceptions.</span></li><ul style=\"margin-top: 0in; margin-bottom: 0in;\">\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; color: red; margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif; font-size: 11pt; background-color: yellow;\" role=\"presentation\">ACAM - Small UAS\r\n<b>do not require the same material release processes</b>&nbsp;as manned aircraft such as a jet aircraft nor helicopters and\r\n<b>shall be exempted</b>.</span></li><li style=\"font-family: Aptos, sans-serif; font-size: 12pt; color: red; margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif; font-size: 11pt; background-color: yellow;\" role=\"presentation\"><i>ACAM - This removes UAS from old AWR and MR processes that treated them like manned aircraft (airplanes and helicopters); will significantly expedite\r\n their fielding</i></span><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\" role=\"presentation\"><i>.</i></span></li></ul>\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\" role=\"presentation\">Directs Revision of<b>&nbsp;CJCSI 3255.01\r\n<i>Joint Unmanned Aircraft System Minimum Training Standards</i></b>&nbsp;(attached).</span></li><ul style=\"margin-top: 0in; margin-bottom: 0in;\">\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; color: red; margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif; font-size: 11pt; background-color: yellow;\" role=\"presentation\">ACAM - UAS operator training and qualifications depend on mission requirements and are hereby\r\n<b>delegated to the military services</b>, which shall <b>mandate minimal medical standards to operate Group 1 and Group 2 UAS</b>.</span></li><li style=\"font-family: Aptos, sans-serif; font-size: 12pt; color: red; margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif; font-size: 11pt; background-color: yellow;\" role=\"presentation\"><b>ACAM - Non-military entities</b>&nbsp;shall adhere to\r\n<b>standards set by the Army</b>.</span></li><ul style=\"margin-top: 0in; margin-bottom: 0in;\">\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; color: red; margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif; font-size: 11pt; background-color: yellow;\" role=\"presentation\"><i>The SECDEF guidance notes that the Army is ahead on most UAS standards, so it directs the Army to take lead on UAS standards for all non-military\r\n entities.</i></span></li></ul>\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; color: red; margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif; font-size: 11pt; background-color: yellow;\" role=\"presentation\"><b><i>ACAM - DAMO-AV and AVCOE have a draft EXORD to publish as soon as the SECDEF memorandum comes out to ensure there is no lapse in UAS training\r\n standards that previously relied on CJCSI 3255.01.</i></b></span></li></ul>\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\" role=\"presentation\">O-6 commanders and equivalents are\r\n<b>authorized to test autonomous systems in controlled environments</b>&nbsp;in coordination with installation commanders.</span></li><li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\" role=\"presentation\">O-6 commanders and equivalents may\r\n<b>use my delegated NDAA authority to use covered foreign country UAS</b>&nbsp;for the sole purposes of research, evaluation, training, testing, or analysis for electronic warfare, information warfare operations, cybersecurity, or development of unmanned aircraft\r\n system or counter-unmanned aircraft system technology, as permitted by section 1823 (b)(1) of the NDAA for FY2024.</span></li><ul style=\"margin-top: 0in; margin-bottom: 0in;\">\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; color: red; margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif; font-size: 11pt; background-color: yellow;\" role=\"presentation\"><i>ACAM - This allows an O-6 commander to buy Chinese DJI drones without requiring an Exception to Policy.</i></span></li></ul>\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\" role=\"presentation\">Service chiefs will\r\n<b>modify or delete all internal policies overregulating UAS</b>.</span></li><ul style=\"margin-top: 0in; margin-bottom: 0in;\">\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; color: red; margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif; font-size: 11pt; background-color: yellow;\" role=\"presentation\"><i>ACAM - This will require an Army-wide review, including installation and local range policies, that overregulate UAS operations and training.</i></span></li></ul>\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\" role=\"presentation\">UAS used as one-way attack munitions are included and will be reviewed for appropriate safety concerns\r\n in less than 30 days after submission.</span></li><ul style=\"margin-top: 0in; margin-bottom: 0in;\">\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; color: red; margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif; font-size: 11pt; background-color: yellow;\" role=\"presentation\">MAJ Huntsman – This should assist with our DEVCOM munition integration by SQD LFX with 2MBDE in SEP</span><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\" role=\"presentation\">.</span></li></ul>\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\" role=\"presentation\">Group1 and Group 2 UAS are\r\n<b>accounted as consumable commodities, not durable property</b>.</span></li><li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\" role=\"presentation\"><b>Installation commanders will be judged on integration of drones</b>&nbsp;against their unique installation\r\n restrictions from geography to FAA-governed airspace. They <b>will remove inappropriate range restrictions</b>, fast-track and expand spectrum approval, and\r\n<b>establish a variety of UAS training areas that include live fire, combined arms and swarm testing</b>.\r\n<b>By 2027, ground unit training must integrate drones</b>; the Under Secretary of Defense for Personnel and Readiness will ensure the Defense Readiness Reporting System is modernized accordingly. All DoD Restricted Airspace owners will synchronize to reduce\r\n airspace congestion to allow the proliferation of UAS. This will include reducing Statement of Work charges to the maximum extent possible for the co-use of airspace, ranges, and training facilities to maximize opportunities for all services to train on all\r\n groups of UAS. The military departments, in consultation with the Under Secretary for Research and Evaluation and the Joint Staff, will designate at least three national drone ranges with diverse terrain for deep battle drone training, with low/no inter-service\r\n cost transfer. <b>Units operating UAS will access DoD grounds with abundant airspace and spectrum allocation</b>.</span></li><ul style=\"margin-top: 0in; margin-bottom: 0in;\">\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; color: red; margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif; font-size: 11pt; background-color: yellow;\" role=\"presentation\"><i>ACAM - This paragraph is critical for TRADOC, FORSCOM, Training &amp; Range Management, our CTC’s, and all Installation Commanders.</i></span></li></ul>\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\" role=\"presentation\">UAS are such critical force enablers that they\r\n<b>must be prioritized at the same level of major weapons systems</b>.</span></li><li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\" role=\"presentation\">NLT than 1 Sept 2025, the Army, USMC, Navy, and Air Force will stand-up deliberately screened, active-duty\r\n<b>experimental formations purpose-built to enable rapid scaling of UAS</b>&nbsp;across the Joint Force by 2026, prioritizing initial fielding to U.S Indo-Pacific Command units. &nbsp;</span></li><ul style=\"margin-top: 0in; margin-bottom: 0in;\">\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; color: red; margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif; font-size: 11pt; background-color: yellow;\" role=\"presentation\"><i>ACAM - Based on COL Ryan’s discussion with the DOGE Team Lead, Army TiC unit’s meet the intent of the “</i><b><i>experimental formation</i></b><i>”\r\n requirement.</i></span></li></ul>\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\" role=\"presentation\"><b>Program budgets will reflect these urgent priorities when submitted within the next 30 days</b>.</span></li><ul style=\"margin-top: 0in; margin-bottom: 0in;\">\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\" role=\"presentation\">Within thirty days, the office of strategic capital and DOGE will present capitalization options that\r\n accelerate the growth of the U.S. drone industry and the outfitting of our combat units with cheap autonomous systems.</span></li></ul>\r\n</ul>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\">&nbsp;</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\">Initial policy slide for LOAI.</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><img id=\"x_x_Graphic_x0020_1\" width=\"960\" height=\"720\" size=\"505637\" contenttype=\"image/png\" style=\"width: 10in; height: 7.5in; margin-top: 0px; margin-bottom: 0px;\" data-outlook-trace=\"F:1|T:1\" src=\"cid:image001.png@01DBEC40.F058DFE0\"></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\">&nbsp;</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\">v/r</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\">&nbsp;</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\">Andrew B. Huntsman</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\">MAJ, CM</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\">25ID, Headquarters and Headquarters Battalion, Operations Officer</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\">Schofield Barracks, HI 96857</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: &quot;Segoe UI Emoji&quot;, sans-serif; font-size: 11pt;\">☎</span><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\">&nbsp;Cell (860-573-3783)</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: &quot;Segoe UI Symbol&quot;, sans-serif; font-size: 11pt;\">✉</span><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\">&nbsp;NIPR\r\n</span><span style=\"font-family: Arial, sans-serif; font-size: 11pt; color: rgb(70, 120, 134);\"><u><a href=\"mailto:Andrew.b.huntsman2.mil@army.mil\" id=\"OWAba0954e7-3c5a-c83f-a1e2-e58a8af9ab75\" class=\"OWAAutoLink\" style=\"color: rgb(70, 120, 134); margin-top: 0px; margin-bottom: 0px;\">Andrew.b.huntsman2.mil@army.mil</a></u></span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: &quot;Segoe UI Symbol&quot;, sans-serif; font-size: 11pt;\">✉</span><span style=\"font-family: Arial, sans-serif; font-size: 11pt;\">&nbsp;SIPR\r\n</span><span style=\"font-family: Arial, sans-serif; font-size: 11pt; color: rgb(70, 120, 134);\"><u><a href=\"mailto:Andrew.b.huntsman2.mil@mail.smil.mil\" id=\"OWAce599a75-202a-79c3-7712-dc4f83899387\" class=\"OWAAutoLink\" style=\"color: rgb(70, 120, 134); margin-top: 0px; margin-bottom: 0px;\">Andrew.b.huntsman2.mil@mail.smil.mil</a></u></span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\">&nbsp;</p>\r\n<blockquote style=\"margin-top: 5pt; margin-bottom: 5pt;\">\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\">&nbsp;</p>\r\n<div style=\"padding: 3pt 0in 0in; border-top: 1pt solid rgb(225, 225, 225);\">\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\"><b>From:</b>&nbsp;Tuley, Colin P MG USARMY MCOE (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:colin.p.tuley.mil@army.mil\" id=\"OWA2760c7f2-2c4a-980e-67a0-ed9da5f1690b\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">colin.p.tuley.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, July 2, 2025 4:49 PM<br>\r\n<b>To:</b>&nbsp;Chalfont, Chad Christopher BG USARMY ARMOR SCHL (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:chad.c.chalfont.mil@army.mil\" id=\"OWAf277fa79-c12a-242d-23ec-16fbffd1d2c9\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">chad.c.chalfont.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Kiniery, Phillip J III BG USARMY INFANTRY SCHL (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:phillip.j.kiniery.mil@army.mil\" id=\"OWA336c8788-142d-54f4-a6c1-b82b5f60aec6\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">phillip.j.kiniery.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Enslen, Daniel C COL USARMY MCOE (USA)</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\"><b>Subject:</b>&nbsp;FW: UPDATE: SECDEF UAS Guidance</span></p>\r\n</div>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\">&nbsp;</p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif;\"><b>SA as we move forward with our sUAS training strategy</b></span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif;\"><b>&nbsp;</b></span></p>\r\n<p style=\"text-indent: 0.5in; margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\">\r\n<span style=\"letter-spacing: -0.15pt; background-color: yellow;\">This memorandum rescinds reference (e), the 2021 memorandum “<i>Guidance for Procedures for the Operation and Procurement of UAS to Implement Section 848 of the NDAA for Fiscal Year 2020</i>,”\r\n and reference (f), the 2022 memorandum “<i>Exception to Policy Requirement for Blue Small Unmanned Aircraft System</i>.”&nbsp; These restrictive policies, which hindered drone production and limited warfighter access to vital battlefield technologies, end now.&nbsp;\r\n</span><span style=\"background-color: yellow;\">This new guidance delegates authority to our training commands and operational forces and requires a new procurement strategy to facilitate 24-hour modifications by frontline personnel assuming the greatest risk.\r\n &nbsp;My intent is rapid proliferation of diverse Group 1 and 2, or “small,” unmanned aircraft systems (UAS) across every unit that can wield this capability to defeat the enemy in combat.&nbsp; We will prioritize the integration of UAS manufactured in the United States\r\n over those made abroad.</span></p>\r\n<p style=\"text-indent: 0.5in; margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\">\r\n<span style=\"letter-spacing: -0.1pt; background-color: yellow;\">&nbsp;</span></p>\r\n<p style=\"text-indent: 0.5in; margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\">\r\n<span style=\"letter-spacing: -0.1pt; background-color: yellow;\">O-6 commanders or equivalents may grant authority to operate (ATO) and may procure, test, and train with small UAS that are compliant with statutory limitations, from laboratory prototypes to commercial\r\n products to molds fabricated by members of the U.S. Armed Forces using compliant critical components. This authority may not be further delegated.&nbsp;\r\n</span><span style=\"background-color: yellow;\">Such</span><span style=\"letter-spacing: -0.1pt; background-color: yellow;\">&nbsp;UAS must remain in closed loop cyber networks, cordoned from DoD networks.&nbsp;\r\n</span><span style=\"background-color: yellow;\">O-6 commanders and equivalents are also authorized to test autonomous systems in controlled environments in coordination with installation commanders.</span></p>\r\n<p style=\"text-indent: 0.5in; margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\">\r\n<span style=\"background-color: yellow;\">&nbsp;</span></p>\r\n<p style=\"text-indent: 0.5in; margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\">\r\n<span style=\"background-color: yellow;\">&nbsp;</span><span style=\"letter-spacing: -0.1pt; background-color: yellow;\">Commanders are encouraged to engage in local innovation through\r\n</span><span style=\"background-color: yellow;\">three-dimensional</span><span style=\"letter-spacing: -0.1pt; background-color: yellow;\">&nbsp;printing, key component purchas</span><span style=\"background-color: yellow;\">ing</span><span style=\"letter-spacing: -0.1pt; background-color: yellow;\">,\r\n and other mission-specific opportunities. </span><span style=\"background-color: yellow;\">&nbsp;</span><span style=\"letter-spacing: -0.1pt; background-color: yellow;\">O-6 commanders and equivalents may nominate critical components and systems for priority Blue List\r\n review.&nbsp; Multiple nominations will be ranked at the </span><span style=\"background-color: yellow;\">Military S</span><span style=\"letter-spacing: -0.1pt; background-color: yellow;\">ervice level.\r\n</span><span style=\"background-color: yellow;\">&nbsp;The </span><span style=\"letter-spacing: -0.1pt; background-color: yellow;\">Secretaries of the Military\r\n</span><span style=\"background-color: yellow;\">Departments</span><span style=\"letter-spacing: -0.1pt; background-color: yellow;\">&nbsp;shall\r\n</span><span style=\"background-color: yellow;\">program, plan, and budget for funding</span><span style=\"letter-spacing: -0.1pt; background-color: yellow;\">\r\n</span><span style=\"background-color: yellow;\">necessary for testing of and training with\r\n</span><span style=\"letter-spacing: -0.1pt; background-color: yellow;\">small UAS</span><span style=\"background-color: yellow;\">&nbsp;at the Military Department level to avoid depleting operational funding, while taking reasonable actions to make such funds available\r\n for use in Fiscal Year (FY) 2025 and FY 2026. Purchases will favor U.S. companies with documented supply chains for critical components to the maximum extent practicable.</span></p>\r\n<p style=\"text-indent: 0.5in; margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\">\r\n<span style=\"letter-spacing: -0.1pt; background-color: yellow;\">&nbsp;</span></p>\r\n<p style=\"text-indent: 0.5in; margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\">\r\n<span style=\"letter-spacing: -0.1pt; background-color: yellow;\">The Secretaries of the Military Departments shall determine airworthiness and material release requirements for UAS, exempting Group 1 and Group 2 UAS, with few exceptions.</span><span style=\"background-color: yellow;\">\r\n</span><span style=\"letter-spacing: -0.1pt; background-color: yellow;\">&nbsp;</span><span style=\"background-color: yellow;\">Accordingly, I direct the Chairman</span><span style=\"letter-spacing: -0.1pt; background-color: yellow;\">&nbsp;of the Joint Chiefs of Staff to\r\n immediately revise reference (g), </span><span style=\"background-color: yellow;\">Chairman</span><span style=\"letter-spacing: -0.1pt; background-color: yellow;\">&nbsp;of the Joint Chiefs of Staff Instruction (CJCSI) 3255.01, “<i>Joint\r\n</i></span><span style=\"background-color: yellow;\"><i>Unmanned Aircraft Systems </i>\r\n</span><span style=\"letter-spacing: -0.1pt; background-color: yellow;\"><i>Minimum Training Standards</i>,” to exclude Group 1 and Group 2 UAS.\r\n</span><span style=\"background-color: yellow;\">&nbsp;</span><span style=\"letter-spacing: -0.1pt; background-color: yellow;\">Group 1-2 UAS operator training and qualifications depend on mission requirements and are hereby delegated to the Military Departments, with\r\n minimal additional medical standards applied to small UAS operators.<i> </i></span><span style=\"background-color: yellow;\"><i>&nbsp;</i>DoD</span><span style=\"letter-spacing: -0.1pt; background-color: yellow;\">&nbsp;entities\r\n</span><span style=\"background-color: yellow;\">outside of the Military Departments\r\n</span><span style=\"letter-spacing: -0.1pt; background-color: yellow;\">shall adhere to standards prescribed by the Secretary of the Army.</span></p>\r\n<p style=\"text-indent: 0.5in; margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\">\r\n<span style=\"background-color: yellow;\">&nbsp;</span></p>\r\n<p style=\"text-indent: 0.5in; margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\">\r\n<span style=\"background-color: yellow;\">Following testing, the first General, Flag officer or Senior Executive Service equivalent in the chain-of-command may approve large purchases of UAS and critical components manufactured by U.S. companies that are compliant\r\n with statutory requirements and certify them for the Blue List using the checklist developed by the Deputy Secretary of Defense in consultation with the Defense Innovation Unit (DIU).&nbsp; The Blue List, currently maintained by the DIU, is a list of DoD-approved\r\n UAS, components, and software. Items on the Blue List have ATOs and are available for purchase and operation by all U.S. military units. UAS built by members of the U.S. Armed Forces with Blue List critical components do not need Blue List certification.</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif;\"><b>&nbsp;</b></span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif;\"><b>&nbsp;</b></span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif;\"><b>Colin</b></span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif;\"><b>&nbsp;</b></span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif;\"><b>MG Colin Tuley</b></span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif;\"><b>Commanding General</b></span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif;\"><b>Maneuver Center of Excellence and Fort Benning, GA</b></span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif;\"><b>Office:&nbsp;706-545-5111</b></span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif;\"><b>Cell:&nbsp;706-604-5806</b></span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif;\"><b>NIPR:\r\n</b></span><span style=\"font-family: Arial, sans-serif; color: blue;\"><b><u><a href=\"mailto:colin.p.tuley.mil@army.mil\" id=\"OWA84d1f11e-bb76-4b41-139f-6a642bd14a39\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">colin.p.tuley.mil@army.mil</a></u></b></span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif;\"><b>SIPR:\r\n</b></span><span style=\"font-family: Arial, sans-serif; color: blue;\"><b><u><a href=\"mailto:colin.p.tuley.mil@mail.smil.mil\" id=\"OWA958ba30e-f9de-021a-d45c-51555708fc9d\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">colin.p.tuley.mil@mail.smil.mil</a></u></b></span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Arial, sans-serif;\"><b>&nbsp;</b></span></p>\r\n<div style=\"padding: 3pt 0in 0in; border-top: 1pt solid rgb(225, 225, 225);\">\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\"><b>From:</b>&nbsp;Ryan, Nicholas D COL USARMY CDID AV (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:nicholas.d.ryan.mil@army.mil\" id=\"OWA454a1cac-02f7-6cd1-f8bc-77d43044fe5a\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">nicholas.d.ryan.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, July 2, 2025 3:01 PM<br>\r\n<b>To:</b>&nbsp;Hodne, David M LTG USARMY AFC-FCC (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:david.m.hodne.mil@army.mil\" id=\"OWA3d73cb2c-7789-e7a6-2928-7df9f840bc17\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">david.m.hodne.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n McCurry, Michael C (Mac) MG USARMY HQ AFC (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:michael.c.mccurry2.mil@army.mil\" id=\"OWAccc3174c-bdf3-68d3-b6b0-34e932add756\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">michael.c.mccurry2.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Welch, Joseph D SES USARMY HQ AFC (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:joseph.d.welch16.civ@army.mil\" id=\"OWAb1b363ac-99e0-0db6-81d0-dffa9b72d5e4\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">joseph.d.welch16.civ@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Brown, Edmond Miles (Miles) LTG USARMY HQ AFC (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:edmond.m.brown.mil@army.mil\" id=\"OWA9abe1800-77f8-94aa-032b-545fc2042018\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">edmond.m.brown.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Baker, Phillip C BG USARMY CFT FVL (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:phillip.c.baker.mil@army.mil\" id=\"OWAb21aff92-b5ef-8dbc-00b4-e81e2b292e3e\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">phillip.c.baker.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Kirsch, James C SES USARMY DEVCOM AVMC (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:james.c.kirsch2.civ@army.mil\" id=\"OWA7e4df4fb-55ac-f9c5-de79-5d0ef7c8b2e0\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">james.c.kirsch2.civ@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Justice, William A CSM USARMY AFC-FCC (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:william.a.justice.mil@army.mil\" id=\"OWA83c34c94-2652-9e0a-6c71-6940079e5456\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">william.a.justice.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Clarke, Kendall J BG USARMY FCC HQ (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:kendall.j.clarke.mil@army.mil\" id=\"OWA246b47b4-5188-534d-22e5-579280d5c63c\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">kendall.j.clarke.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Gill, Clair A MG USARMY AVNCOE (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:clair.a.gill.mil@army.mil\" id=\"OWA990f5882-d430-71cd-3f8c-37fb223bec7b\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">clair.a.gill.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Baker, Phillip C BG USARMY CFT FVL (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:phillip.c.baker.mil@army.mil\" id=\"OWAf856a4e5-763c-5d15-00f7-0cad850a4732\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">phillip.c.baker.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Phillips, David C BG USARMY PEO AVN (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:david.c.phillips12.mil@army.mil\" id=\"OWAd8668b48-f570-0dda-a918-ce8ae658ad40\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">david.c.phillips12.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Robinson, Lori L MG USARMY AMCOM (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:lori.l.robinson2.mil@army.mil\" id=\"OWA5993a558-909a-60e7-5420-09363c3beba6\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">lori.l.robinson2.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Minear, Matthew R COL USARMY HQDA DCS G-8 (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:matthew.r.minear2.mil@army.mil\" id=\"OWA9becabad-b241-ae6d-ebb6-c8a2fb28dfa0\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">matthew.r.minear2.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Braman, Matthew W (Matt) BG USARMY HQDA DCS G-3-5-7 (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:matthew.w.braman.mil@army.mil\" id=\"OWAd80d95ed-aad8-6a2b-84b5-553ed1c75e1d\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">matthew.w.braman.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Waleski, Roger P Jr COL USARMY ARSOAC (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:roger.p.waleski.mil@army.mil\" id=\"OWA19c08774-fb88-916e-187d-72ce14ce9093\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">roger.p.waleski.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Miller, Alexander T (Alex) SES USARMY HQDA CSA (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:alexander.t.miller2.civ@army.mil\" id=\"OWA54c4fe63-6c07-f202-0219-cd81b15816e7\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">alexander.t.miller2.civ@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Ryan, Joseph A LTG USARMY HQDA DCS G-3-5-7 (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:joseph.a.ryan4.mil@army.mil\" id=\"OWAc293b753-d374-4e6f-1053-7786ac1a5940\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">joseph.a.ryan4.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Braman, Matthew W (Matt) BG USARMY HQDA DCS G-3-5-7 (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:matthew.w.braman.mil@army.mil\" id=\"OWA38a59282-aa66-7775-743c-80bdc63b3774\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">matthew.w.braman.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Bechtel, Peter B SES USARMY HQDA DCS G-3-5-7 (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:peter.b.bechtel.civ@army.mil\" id=\"OWA0b26ded4-e277-e5d3-cbf3-c0dea0563dd7\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">peter.b.bechtel.civ@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Isenhower, James P III MG USARMY HQDA (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:james.p.isenhower.mil@army.mil\" id=\"OWAabb2e598-b8f1-a4d0-8c4a-4283e0f6a56c\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">james.p.isenhower.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Born, Robert G BG USARMY DEVCOM (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:robert.g.born.mil@army.mil\" id=\"OWAb189c3b3-bbd7-519d-1a8e-bd81016435d4\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">robert.g.born.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Tuley, Colin P MG USARMY MCOE (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:colin.p.tuley.mil@army.mil\" id=\"OWA419fb725-3668-0fe8-7f2c-15c1128b239c\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">colin.p.tuley.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;<br>\r\n<b>Cc:</b>&nbsp;Padalino, Anthony R MAJ USARMY HQDA CSA (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:anthony.r.padalino.mil@army.mil\" id=\"OWA43563940-5608-4aca-1968-2abf7ba8a309\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">anthony.r.padalino.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Gilliam, John B COL USARMY HQDA DAS (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:john.b.gilliam3.mil@army.mil\" id=\"OWA90f68387-d861-93b1-f7cb-27ad38637eba\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">john.b.gilliam3.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Easter, Kevin M COL USARMY HQDA DCS G-3-5-7 (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:kevin.m.easter.mil@army.mil\" id=\"OWAbf385242-ecb0-2636-e0e0-04ce2b571d01\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">kevin.m.easter.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Koziol, Jonathan P CIV (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:jonathan.p.koziol.civ@army.mil\" id=\"OWAfbeeb608-1b13-0ba6-4f32-280f1e467eeb\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">jonathan.p.koziol.civ@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Merkl, Brian M COL USARMY HQDA DCS G-3-5-7 (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:brian.m.merkl.mil@army.mil\" id=\"OWA48c0432c-49af-cb4d-5af7-94500440d99e\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">brian.m.merkl.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Ruisanchez, Joshua R COL USARMY CDID AV (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:joshua.r.ruisanchez.mil@army.mil\" id=\"OWAc9bde6c0-135e-d34c-54ce-1d382d0d95ce\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">joshua.r.ruisanchez.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Hewko, Brian W LTC USARMY HQ AFC (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:brian.w.hewko.mil@army.mil\" id=\"OWA319d6d6c-a3f1-ae1a-305d-c27b810c6f19\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">brian.w.hewko.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Keirsey, Jim Dan COL USARMY HQDA (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:jim.d.keirsey.mil@army.mil\" id=\"OWAcc066713-d983-7fbb-0e8d-a0bb334cc7b7\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">jim.d.keirsey.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Schuck, G Patrick COL USARMY HQDA (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:gerald.p.schuck.mil@army.mil\" id=\"OWAbb043e93-d653-4461-2539-aa364011b1ed\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">gerald.p.schuck.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Freude, Anthony E COL USARMY HQDA DCS G-8 (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:anthony.e.freude.mil@army.mil\" id=\"OWAe66375cc-d064-7c57-251d-cd325106f372\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">anthony.e.freude.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Anderson, Aaron H CW5 USARMY HQDA CSA (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:aaron.h.anderson.mil@army.mil\" id=\"OWA663f21a0-03a3-ba19-6887-16b3b0b39fc8\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">aaron.h.anderson.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Solsbury, Melissa A (Molly) COL USARMY HQDA CSA (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:melissa.a.solsbury.mil@army.mil\" id=\"OWA5a21187a-c77f-d88c-d842-32dc5af8a1c2\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">melissa.a.solsbury.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Solsbury, Melissa A (Molly) COL USARMY HQDA CSA (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:melissa.a.solsbury.mil@army.mil\" id=\"OWA4d3238c4-9611-b54d-7d5d-22a5523662fb\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">melissa.a.solsbury.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Swinney, Joseph D (JD) COL USARMY CFT FVL (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:joseph.d.swinney.mil@army.mil\" id=\"OWA06bb2049-9a1b-3fb4-ed4c-9f425b289463\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">joseph.d.swinney.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Shaw, Scott A COL USARMY CDID MNVR (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:scott.a.shaw12.mil@army.mil\" id=\"OWAf95a2e70-7555-5187-5111-6d7a3820b65b\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">scott.a.shaw12.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Conlin, Shaun S Jr COL USARMY CDID MNVR (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:shaun.s.conlin2.mil@army.mil\" id=\"OWAbef6a2ec-3aec-cb84-95d5-4086537ecabe\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">shaun.s.conlin2.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Edwards, Dominick Lawrence (Dom) CIV USARMY CDID MNVR (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:dominick.l.edwards.civ@army.mil\" id=\"OWA72e1f042-91c9-6df5-83a0-24b4263fc6f7\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">dominick.l.edwards.civ@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;;\r\n Medaglia, Danielle R COL USARMY PEO AVN (USA) &lt;</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: blue;\"><u><a href=\"mailto:danielle.r.medaglia.mil@army.mil\" id=\"OWAa15702c6-283d-9de1-36dc-30a86e297366\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">danielle.r.medaglia.mil@army.mil</a></u></span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">&gt;<br>\r\n<b>Subject:</b>&nbsp;UPDATE: SECDEF UAS Guidance</span></p>\r\n</div>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\">&nbsp;</p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-size: 11pt;\">Ladies and Gentlemen,</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-size: 11pt;\">&nbsp;</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-size: 11pt;\">Attached is the final draft of the SECDEF’s UAS Guidance\r\n<b><i>“Unleashing U.S. Military Drone Dominance”.</i></b></span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-size: 11pt;\">&nbsp;</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-size: 11pt;\">SECDEF reviewed and approved the document this morning. Expect signature with a press release and SECDEF video by Tuesday next week (O/A 8JUL25).</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-size: 11pt;\">&nbsp;</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-size: 11pt;\">There\r\n<b><u>may</u></b>&nbsp;be a final coordination meeting with all service leaders prior to the release.</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-size: 11pt;\">&nbsp;</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-size: 11pt; background-color: yellow;\">The major change from what I have previously shared is that\r\n<b>CJCSI 3255.01 <i>Joint Unmanned Aircraft Systems Minimum Training Standards</i></b>&nbsp;is no longer “</span><span style=\"font-size: 11pt; color: red; background-color: yellow;\"><b><i>rescinded</i></b></span><span style=\"font-size: 11pt; background-color: yellow;\">”.\r\n Instead, the CJCS has been directed to “</span><span style=\"font-size: 11pt; color: red; background-color: yellow;\"><b><i>revise</i></b></span><span style=\"font-size: 11pt; background-color: yellow;\">” CJCSI 3255.01 to\r\n</span><span style=\"font-size: 11pt; color: red; background-color: yellow;\">exclude Group 1 &amp; 2 SUAS</span><span style=\"font-size: 11pt; background-color: yellow;\">.</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-size: 11pt;\">&nbsp;</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-size: 11pt;\">All other proposals which I have shared remain the same.</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-size: 11pt;\">&nbsp;</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-size: 11pt;\">&nbsp;</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-size: 11pt;\">Respectfully,</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-size: 11pt;\">&nbsp;</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-size: 11pt;\">COL Nick Ryan</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\">Director, Army Capability Manager-Unmanned Aircraft Systems (ACM-UAS)</p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\">Aviation CDID, FCC, AFC</p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-size: 11pt;\">Fort Rucker, AL 36362</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-size: 11pt;\">O: 334-255-3638 (DSN 588)</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-size: 11pt;\">C: 334-733-9114</span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-size: 11pt;\">N:\r\n</span><span style=\"font-size: 11pt; color: blue;\"><u><a href=\"mailto:nicholas.d.ryan.mil@army.mil\" id=\"OWA10245fa0-b8c4-5d7c-dfcd-2851b25357d9\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">nicholas.d.ryan.mil@army.mil</a></u></span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\"><span style=\"font-size: 11pt;\">S:\r\n</span><span style=\"font-size: 11pt; color: blue;\"><u><a href=\"mailto:nicholas.d.ryan.mil@mail.smil.mil\" id=\"OWA685a4819-fd8d-03d2-c712-9086793ec094\" class=\"OWAAutoLink\" style=\"color: blue; margin-top: 0px; margin-bottom: 0px;\">nicholas.d.ryan.mil@mail.smil.mil</a></u></span></p>\r\n<p style=\"margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;\">&nbsp;</p>\r\n</blockquote>\r\n</body>\r\n</html>\r\n','UNCLASSIFIED\r\n\r\n\r\n\r\nVery Respectfully,\r\n\r\nPaul Shorkey-Chacon\r\nCPT, FA\r\nDeputy Innovation Officer\r\n1st Infantry Division\r\n\r\n\r\n✉ NIPR: paul.r.shorkey-chacon.mil@army.mil\r\n📱 Cell: (443) 889-6741\r\n\r\nUNCLASSIFIED\r\n\r\n\r\n________________________________\r\nFrom: Huntsman, Andrew B MAJ USARMY 25 ID (USA) <andrew.b.huntsman2.mil@army.mil>\r\nSent: Wednesday, July 9, 2025 9:29 PM\r\nTo: Shorkey-Chacon, Paul R CPT USARMY 1 ID 2 ABCT (USA) <paul.r.shorkey-chacon.mil@army.mil>\r\nSubject: Fw: UPDATE: SECDEF UAS Guidance\r\n\r\nFor SA; my analysis on the updated distro\r\n\r\n\r\nv/r\r\n\r\n\r\n\r\nAndrew B. Huntsman\r\n\r\nMAJ, CM\r\n\r\n25ID, Headquarters and Headquarters Battalion, Operations Officer\r\n\r\nSchofield Barracks, HI 96857\r\n\r\n☎ Cell (860-573-3783)\r\n\r\n✉ NIPR Andrew.b.huntsman2.mil@army.mil<mailto:Andrew.b.huntsman2.mil@army.mil>\r\n\r\n✉ SIPR Andrew.b.huntsman2.mil@mail.smil.mil<mailto:Andrew.b.huntsman2.mil@mail.smil.mil>\r\n\r\n\r\n\r\n________________________________\r\nFrom: Huntsman, Andrew B MAJ USARMY 25 ID (USA) <andrew.b.huntsman2.mil@army.mil>\r\nSent: Thursday, July 3, 2025 6:02:47 PM\r\nTo: Brunais, David A COL USARMY AWC (USA) <david.a.brunais.mil@army.mil>; McCombs, Adam F LTC USARMY 25 ID 2 IBCT (USA) <adam.f.mccombs.mil@army.mil>\r\nCc: Durling, Taylor J MAJ USARMY 25 ID (USA) <taylor.j.durling.mil@army.mil>; Whitney, Nathan H LTC USARMY 25 ID (USA) <nathan.h.whitney.mil@army.mil>; Owens, John P CPT USARMY (USA) <john.p.owens45.mil@army.mil>; Hinds, Jason F MAJ USARMY 25 ID (USA) <jason.f.hinds.mil@army.mil>; Scuremanstoops, Harmen A 1LT USARMY 25 ID 3 BCT (USA) <harmen.a.scuremanstoops.mil@army.mil>; Love, William C 1SG USARMY 25 ID (USA) <william.c.love.mil@army.mil>; Mazzanti, Luca C CPT USARMY 25 ID DIVARTY (USA) <luca.c.mazzanti.mil@army.mil>; Manning, Grant N CPT USARMY 25 ID DIVARTY (USA) <grant.n.manning.mil@army.mil>; Huggins, Ian M CPT USARMY 25 ID (USA) <ian.m.huggins.mil@army.mil>; Moss, Daniel D CIV USARMY 25 ID (USA) <daniel.d.moss.civ@army.mil>; Siegmund, Raymond T Jr 1SG USARMY 25 ID DIVARTY (USA) <raymond.t.siegmund.mil@army.mil>; Perez, Matthew G (Matt) CPT USARMY 25 ID (USA) <matthew.g.perez2.mil@army.mil>; Moats, Danny G CIV USARMY USARPAC (USA) <danny.g.moats.civ@army.mil>; Fernando, Noel N MAJ USARMY 25 ID (USA) <noel.n.fernando.mil@army.mil>; Lopez, Eric S CW4 USARMY 25 ID (USA) <eric.s.lopez10.mil@army.mil>; LeMay, Matthew B CW2 USARMY 25 ID 2 IBCT (USA) <matthew.b.lemay2.mil@army.mil>; Anninos, Nikolas G MAJ USARMY 25 ID 2 IBCT (USA) <nikolas.g.anninos.mil@army.mil>; Maldonado, Anthony T MAJ USARMY 25 ID (USA) <anthony.t.maldonado1.mil@army.mil>; Armstrong, Robert M CW2 USARMY 25 ID 3 BCT (USA) <robert.m.armstrong52.mil@army.mil>; Arakawa, Christopher M CIV USARMY 25 ID (USA) <christopher.m.arakawa.civ@army.mil>; Herrera, Rafael MAJ USARMY 25 ID 3 BCT (USA) <rafael.herrera2.mil@army.mil>; Killian, Howard John CIV USARMY USARPAC (USA) <howard.j.killian2.civ@army.mil>; Lukefahr, Benjamin David CIV USARMY USARPAC (USA) <benjamin.d.lukefahr.civ@army.mil>; Robinson, Wandlyn D LTC USARMY 25 ID (USA) <wandlyn.d.robinson.mil@army.mil>; Fowler, David P MAJ USARMY 25 ID (USA) <david.p.fowler6.mil@army.mil>; Chickering, James C CIV USARMY 25 ID (USA) <james.c.chickering.civ@army.mil>; Rollins, Hana A COL USARMY 25 ID (USA) <hana.a.rollins.mil@army.mil>; Perone, Amanda G CPT USARMY 25 ID (USA) <amanda.g.perone.mil@army.mil>; Mass, Joshua M SSG USARMY 25 ID DIVARTY (USA) <joshua.m.mass.mil@army.mil>; Donahoe, Sean W LTC USARMY 25 ID (USA) <sean.w.donahoe.mil@army.mil>; Mclachlan, Sean Kelly (Mac) MAJ USARMY 25 ID (USA) <sean.k.mclachlan.mil@army.mil>; Hall, Courtney N LTC USARMY 25 ID (USA) <courtney.n.hall.mil@army.mil>; Mcgowan, Jeffrey M MAJ USARMY 25 ID (USA) <jeffrey.m.mcgowan2.mil@army.mil>; Kline, Anne C MAJ USARMY 25 ID (USA) <anne.c.kline.mil@army.mil>; VonBenken, Daniel John COL USARMY 25 ID DIVARTY (USA) <daniel.j.vonbenken.mil@army.mil>; Swint, Sean E CSM USARMY 25 ID DIVARTY (USA) <sean.e.swint.mil@army.mil>; Spracklen, Christopher M MAJ USARMY 25 ID DIVARTY (USA) <christopher.m.spracklen.mil@army.mil>; Blake, Rance T MAJ USARMY 25 ID (USA) <rance.t.blake.mil@army.mil>; Staab, Charles A LTC USARMY 25 ID (USA) <charles.a.staab.mil@army.mil>; Pratt, Michael B MAJ USARMY 25 ID (USA) <michael.b.pratt1.mil@army.mil>; Montgomery, Varian T CSM USARMY 25 ID (USA) <varian.t.montgomery.mil@army.mil>; Lee, Norreal P MAJ USARMY 25 ID (USA) <norreal.p.lee.mil@army.mil>; Eaton, Richard MAJ USARMY 25 ID (USA) <richard.eaton1.mil@army.mil>; Fisk, David A MSG USARMY 25 ID (USA) <david.a.fisk4.mil@army.mil>; Grieco, Michael C LTC USARMY 25 ID DIVARTY (USA) <michael.c.grieco2.mil@army.mil>\r\nSubject: FW: UPDATE: SECDEF UAS Guidance\r\n\r\n\r\nGentleman,\r\n\r\n\r\n\r\nBLUF: The SECDEF Memorandum implementing the President’s Executive Order 14307, “Unleashing American Drone Dominance,” June 6, 2025, is expected to be formally signed/published 8JUL25. My thanks to the Lightning Academy team who leveraged through contacts on MCCoE to get an advance copy. There is limited change to the policy block of the one slider or the executive summary that will be displayed during the 17JUL LOAI; this slide is pasted below the initial memo analysis. I’ve highlighted a few critical components for the wider enterprise as this policy is codified in EXORDs, as identified by the COL Ryan ACAM-UAS Director or my own notes in RED.\r\n\r\n\r\n\r\nKey highlights from the final draft memorandum, with Army impacts:\r\n\r\n\r\n\r\n  *   Our ground units are not armed with first-person view (FPV) attack drones, a necessity in modern combat.  Executive Order 14307 (reference (a)) requires the Department to procure low-cost domestic drones, supporting our warfighters and our Nation’s nascent industry.  The DoD must go above and beyond this Executive Order to achieve battlefield superiority.  By the end of 2026, every squad will be armed with dozens of low-cost, mission-tailored drones, including lethal FPVs.\r\n     *   MAJ Huntsman – Critical to our spend plan/build plan through Lightning Labs and eventually Forge.\r\n  *   Immediately rescinds the 2021 DoD Memorandum, “Guidance for Procedures for the Operation and Procurement of UAS to Implement Section 848 of the NDAA for FY 2020,” and the 2022 DoD memorandum “Exception to Policy Requirement for Blue Small Unmanned Aircraft Systems.”\r\n     *   ACAM: These restrictive policies hindered drone production and limited troop access to vital battlefield technologies.\r\n     *   ACAM - The new guidance delegates authority to our training commands and operational forces, in some cases down to O6 and first GO level commanders.\r\n  *   Grants authority to O-6 commanders or equivalents for authority to operate (ATO) to test and train with NDAA-compliant UAS, from lab prototypes to commercial products to molds fabricated by U.S. troops using compliant critical components.\r\n     *   ACAM - These UAS must remain in closed loop cyber networks, cordoned from DoD networks.\r\n  *   Commanders are encouraged to engage in local innovation through three-dimensional printing, key component purchasing, and other mission-specific opportunities.  O-6 commanders and equivalents may nominate critical components and systems for priority Blue List review.\r\n     *   MAJ Huntsman – Ability for our parts purchases that currently go through ETP process to get priority to add to blue list; SECDEF memo prefers US companies, however.\r\n  *   Following testing, the first general officer in the chain-of-command may approve large purchases of NDAA-compliant UAS or components with the ability to connect to DoD networks.\r\n     *   MAJ Huntsman – This line is critical to the\r\n  *   Military services shall install funding at the Military Department level for Group 1 and Group 2, or “small,” UAS testing and training to avoid depleting operational dollars.\r\n     *   MAJ Huntsman – Similar to TiC Funding; unsure if additional funds will be made available in addition to TiC/PMTEC already allocated.\r\n  *   Military services will determine airworthiness and material release requirements for UAS, exempting Group 1 and Group 2 with few exceptions.\r\n     *   ACAM - Small UAS do not require the same material release processes as manned aircraft such as a jet aircraft nor helicopters and shall be exempted.\r\n     *   ACAM - This removes UAS from old AWR and MR processes that treated them like manned aircraft (airplanes and helicopters); will significantly expedite their fielding.\r\n  *   Directs Revision of CJCSI 3255.01 Joint Unmanned Aircraft System Minimum Training Standards (attached).\r\n     *   ACAM - UAS operator training and qualifications depend on mission requirements and are hereby delegated to the military services, which shall mandate minimal medical standards to operate Group 1 and Group 2 UAS.\r\n     *   ACAM - Non-military entities shall adhere to standards set by the Army.\r\n        *   The SECDEF guidance notes that the Army is ahead on most UAS standards, so it directs the Army to take lead on UAS standards for all non-military entities.\r\n     *   ACAM - DAMO-AV and AVCOE have a draft EXORD to publish as soon as the SECDEF memorandum comes out to ensure there is no lapse in UAS training standards that previously relied on CJCSI 3255.01.\r\n  *   O-6 commanders and equivalents are authorized to test autonomous systems in controlled environments in coordination with installation commanders.\r\n  *   O-6 commanders and equivalents may use my delegated NDAA authority to use covered foreign country UAS for the sole purposes of research, evaluation, training, testing, or analysis for electronic warfare, information warfare operations, cybersecurity, or development of unmanned aircraft system or counter-unmanned aircraft system technology, as permitted by section 1823 (b)(1) of the NDAA for FY2024.\r\n     *   ACAM - This allows an O-6 commander to buy Chinese DJI drones without requiring an Exception to Policy.\r\n  *   Service chiefs will modify or delete all internal policies overregulating UAS.\r\n     *   ACAM - This will require an Army-wide review, including installation and local range policies, that overregulate UAS operations and training.\r\n  *   UAS used as one-way attack munitions are included and will be reviewed for appropriate safety concerns in less than 30 days after submission.\r\n     *   MAJ Huntsman – This should assist with our DEVCOM munition integration by SQD LFX with 2MBDE in SEP.\r\n  *   Group1 and Group 2 UAS are accounted as consumable commodities, not durable property.\r\n  *   Installation commanders will be judged on integration of drones against their unique installation restrictions from geography to FAA-governed airspace. They will remove inappropriate range restrictions, fast-track and expand spectrum approval, and establish a variety of UAS training areas that include live fire, combined arms and swarm testing. By 2027, ground unit training must integrate drones; the Under Secretary of Defense for Personnel and Readiness will ensure the Defense Readiness Reporting System is modernized accordingly. All DoD Restricted Airspace owners will synchronize to reduce airspace congestion to allow the proliferation of UAS. This will include reducing Statement of Work charges to the maximum extent possible for the co-use of airspace, ranges, and training facilities to maximize opportunities for all services to train on all groups of UAS. The military departments, in consultation with the Under Secretary for Research and Evaluation and the Joint Staff, will designate at least three national drone ranges with diverse terrain for deep battle drone training, with low/no inter-service cost transfer. Units operating UAS will access DoD grounds with abundant airspace and spectrum allocation.\r\n     *   ACAM - This paragraph is critical for TRADOC, FORSCOM, Training & Range Management, our CTC’s, and all Installation Commanders.\r\n  *   UAS are such critical force enablers that they must be prioritized at the same level of major weapons systems.\r\n  *   NLT than 1 Sept 2025, the Army, USMC, Navy, and Air Force will stand-up deliberately screened, active-duty experimental formations purpose-built to enable rapid scaling of UAS across the Joint Force by 2026, prioritizing initial fielding to U.S Indo-Pacific Command units.\r\n     *   ACAM - Based on COL Ryan’s discussion with the DOGE Team Lead, Army TiC unit’s meet the intent of the “experimental formation” requirement.\r\n  *   Program budgets will reflect these urgent priorities when submitted within the next 30 days.\r\n     *   Within thirty days, the office of strategic capital and DOGE will present capitalization options that accelerate the growth of the U.S. drone industry and the outfitting of our combat units with cheap autonomous systems.\r\n\r\n\r\n\r\nInitial policy slide for LOAI.\r\n\r\n[cid:image001.png@01DBEC40.F058DFE0]\r\n\r\n\r\n\r\nv/r\r\n\r\n\r\n\r\nAndrew B. Huntsman\r\n\r\nMAJ, CM\r\n\r\n25ID, Headquarters and Headquarters Battalion, Operations Officer\r\n\r\nSchofield Barracks, HI 96857\r\n\r\n☎ Cell (860-573-3783)\r\n\r\n✉ NIPR Andrew.b.huntsman2.mil@army.mil<mailto:Andrew.b.huntsman2.mil@army.mil>\r\n\r\n✉ SIPR Andrew.b.huntsman2.mil@mail.smil.mil<mailto:Andrew.b.huntsman2.mil@mail.smil.mil>\r\n\r\n\r\n\r\n\r\n\r\nFrom: Tuley, Colin P MG USARMY MCOE (USA) <colin.p.tuley.mil@army.mil<mailto:colin.p.tuley.mil@army.mil>>\r\nSent: Wednesday, July 2, 2025 4:49 PM\r\nTo: Chalfont, Chad Christopher BG USARMY ARMOR SCHL (USA) <chad.c.chalfont.mil@army.mil<mailto:chad.c.chalfont.mil@army.mil>>; Kiniery, Phillip J III BG USARMY INFANTRY SCHL (USA) <phillip.j.kiniery.mil@army.mil<mailto:phillip.j.kiniery.mil@army.mil>>; Enslen, Daniel C COL USARMY MCOE (USA)\r\n\r\nSubject: FW: UPDATE: SECDEF UAS Guidance\r\n\r\n\r\n\r\nSA as we move forward with our sUAS training strategy\r\n\r\n\r\n\r\nThis memorandum rescinds reference (e), the 2021 memorandum “Guidance for Procedures for the Operation and Procurement of UAS to Implement Section 848 of the NDAA for Fiscal Year 2020,” and reference (f), the 2022 memorandum “Exception to Policy Requirement for Blue Small Unmanned Aircraft System.”  These restrictive policies, which hindered drone production and limited warfighter access to vital battlefield technologies, end now.  This new guidance delegates authority to our training commands and operational forces and requires a new procurement strategy to facilitate 24-hour modifications by frontline personnel assuming the greatest risk.  My intent is rapid proliferation of diverse Group 1 and 2, or “small,” unmanned aircraft systems (UAS) across every unit that can wield this capability to defeat the enemy in combat.  We will prioritize the integration of UAS manufactured in the United States over those made abroad.\r\n\r\n\r\n\r\nO-6 commanders or equivalents may grant authority to operate (ATO) and may procure, test, and train with small UAS that are compliant with statutory limitations, from laboratory prototypes to commercial products to molds fabricated by members of the U.S. Armed Forces using compliant critical components. This authority may not be further delegated.  Such UAS must remain in closed loop cyber networks, cordoned from DoD networks.  O-6 commanders and equivalents are also authorized to test autonomous systems in controlled environments in coordination with installation commanders.\r\n\r\n\r\n\r\n Commanders are encouraged to engage in local innovation through three-dimensional printing, key component purchasing, and other mission-specific opportunities.  O-6 commanders and equivalents may nominate critical components and systems for priority Blue List review.  Multiple nominations will be ranked at the Military Service level.  The Secretaries of the Military Departments shall program, plan, and budget for funding necessary for testing of and training with small UAS at the Military Department level to avoid depleting operational funding, while taking reasonable actions to make such funds available for use in Fiscal Year (FY) 2025 and FY 2026. Purchases will favor U.S. companies with documented supply chains for critical components to the maximum extent practicable.\r\n\r\n\r\n\r\nThe Secretaries of the Military Departments shall determine airworthiness and material release requirements for UAS, exempting Group 1 and Group 2 UAS, with few exceptions.  Accordingly, I direct the Chairman of the Joint Chiefs of Staff to immediately revise reference (g), Chairman of the Joint Chiefs of Staff Instruction (CJCSI) 3255.01, “Joint Unmanned Aircraft Systems Minimum Training Standards,” to exclude Group 1 and Group 2 UAS.  Group 1-2 UAS operator training and qualifications depend on mission requirements and are hereby delegated to the Military Departments, with minimal additional medical standards applied to small UAS operators.  DoD entities outside of the Military Departments shall adhere to standards prescribed by the Secretary of the Army.\r\n\r\n\r\n\r\nFollowing testing, the first General, Flag officer or Senior Executive Service equivalent in the chain-of-command may approve large purchases of UAS and critical components manufactured by U.S. companies that are compliant with statutory requirements and certify them for the Blue List using the checklist developed by the Deputy Secretary of Defense in consultation with the Defense Innovation Unit (DIU).  The Blue List, currently maintained by the DIU, is a list of DoD-approved UAS, components, and software. Items on the Blue List have ATOs and are available for purchase and operation by all U.S. military units. UAS built by members of the U.S. Armed Forces with Blue List critical components do not need Blue List certification.\r\n\r\n\r\n\r\n\r\n\r\nColin\r\n\r\n\r\n\r\nMG Colin Tuley\r\n\r\nCommanding General\r\n\r\nManeuver Center of Excellence and Fort Benning, GA\r\n\r\nOffice: 706-545-5111\r\n\r\nCell: 706-604-5806\r\n\r\nNIPR: colin.p.tuley.mil@army.mil<mailto:colin.p.tuley.mil@army.mil>\r\n\r\nSIPR: colin.p.tuley.mil@mail.smil.mil<mailto:colin.p.tuley.mil@mail.smil.mil>\r\n\r\n\r\n\r\nFrom: Ryan, Nicholas D COL USARMY CDID AV (USA) <nicholas.d.ryan.mil@army.mil<mailto:nicholas.d.ryan.mil@army.mil>>\r\nSent: Wednesday, July 2, 2025 3:01 PM\r\nTo: Hodne, David M LTG USARMY AFC-FCC (USA) <david.m.hodne.mil@army.mil<mailto:david.m.hodne.mil@army.mil>>; McCurry, Michael C (Mac) MG USARMY HQ AFC (USA) <michael.c.mccurry2.mil@army.mil<mailto:michael.c.mccurry2.mil@army.mil>>; Welch, Joseph D SES USARMY HQ AFC (USA) <joseph.d.welch16.civ@army.mil<mailto:joseph.d.welch16.civ@army.mil>>; Brown, Edmond Miles (Miles) LTG USARMY HQ AFC (USA) <edmond.m.brown.mil@army.mil<mailto:edmond.m.brown.mil@army.mil>>; Baker, Phillip C BG USARMY CFT FVL (USA) <phillip.c.baker.mil@army.mil<mailto:phillip.c.baker.mil@army.mil>>; Kirsch, James C SES USARMY DEVCOM AVMC (USA) <james.c.kirsch2.civ@army.mil<mailto:james.c.kirsch2.civ@army.mil>>; Justice, William A CSM USARMY AFC-FCC (USA) <william.a.justice.mil@army.mil<mailto:william.a.justice.mil@army.mil>>; Clarke, Kendall J BG USARMY FCC HQ (USA) <kendall.j.clarke.mil@army.mil<mailto:kendall.j.clarke.mil@army.mil>>; Gill, Clair A MG USARMY AVNCOE (USA) <clair.a.gill.mil@army.mil<mailto:clair.a.gill.mil@army.mil>>; Baker, Phillip C BG USARMY CFT FVL (USA) <phillip.c.baker.mil@army.mil<mailto:phillip.c.baker.mil@army.mil>>; Phillips, David C BG USARMY PEO AVN (USA) <david.c.phillips12.mil@army.mil<mailto:david.c.phillips12.mil@army.mil>>; Robinson, Lori L MG USARMY AMCOM (USA) <lori.l.robinson2.mil@army.mil<mailto:lori.l.robinson2.mil@army.mil>>; Minear, Matthew R COL USARMY HQDA DCS G-8 (USA) <matthew.r.minear2.mil@army.mil<mailto:matthew.r.minear2.mil@army.mil>>; Braman, Matthew W (Matt) BG USARMY HQDA DCS G-3-5-7 (USA) <matthew.w.braman.mil@army.mil<mailto:matthew.w.braman.mil@army.mil>>; Waleski, Roger P Jr COL USARMY ARSOAC (USA) <roger.p.waleski.mil@army.mil<mailto:roger.p.waleski.mil@army.mil>>; Miller, Alexander T (Alex) SES USARMY HQDA CSA (USA) <alexander.t.miller2.civ@army.mil<mailto:alexander.t.miller2.civ@army.mil>>; Ryan, Joseph A LTG USARMY HQDA DCS G-3-5-7 (USA) <joseph.a.ryan4.mil@army.mil<mailto:joseph.a.ryan4.mil@army.mil>>; Braman, Matthew W (Matt) BG USARMY HQDA DCS G-3-5-7 (USA) <matthew.w.braman.mil@army.mil<mailto:matthew.w.braman.mil@army.mil>>; Bechtel, Peter B SES USARMY HQDA DCS G-3-5-7 (USA) <peter.b.bechtel.civ@army.mil<mailto:peter.b.bechtel.civ@army.mil>>; Isenhower, James P III MG USARMY HQDA (USA) <james.p.isenhower.mil@army.mil<mailto:james.p.isenhower.mil@army.mil>>; Born, Robert G BG USARMY DEVCOM (USA) <robert.g.born.mil@army.mil<mailto:robert.g.born.mil@army.mil>>; Tuley, Colin P MG USARMY MCOE (USA) <colin.p.tuley.mil@army.mil<mailto:colin.p.tuley.mil@army.mil>>\r\nCc: Padalino, Anthony R MAJ USARMY HQDA CSA (USA) <anthony.r.padalino.mil@army.mil<mailto:anthony.r.padalino.mil@army.mil>>; Gilliam, John B COL USARMY HQDA DAS (USA) <john.b.gilliam3.mil@army.mil<mailto:john.b.gilliam3.mil@army.mil>>; Easter, Kevin M COL USARMY HQDA DCS G-3-5-7 (USA) <kevin.m.easter.mil@army.mil<mailto:kevin.m.easter.mil@army.mil>>; Koziol, Jonathan P CIV (USA) <jonathan.p.koziol.civ@army.mil<mailto:jonathan.p.koziol.civ@army.mil>>; Merkl, Brian M COL USARMY HQDA DCS G-3-5-7 (USA) <brian.m.merkl.mil@army.mil<mailto:brian.m.merkl.mil@army.mil>>; Ruisanchez, Joshua R COL USARMY CDID AV (USA) <joshua.r.ruisanchez.mil@army.mil<mailto:joshua.r.ruisanchez.mil@army.mil>>; Hewko, Brian W LTC USARMY HQ AFC (USA) <brian.w.hewko.mil@army.mil<mailto:brian.w.hewko.mil@army.mil>>; Keirsey, Jim Dan COL USARMY HQDA (USA) <jim.d.keirsey.mil@army.mil<mailto:jim.d.keirsey.mil@army.mil>>; Schuck, G Patrick COL USARMY HQDA (USA) <gerald.p.schuck.mil@army.mil<mailto:gerald.p.schuck.mil@army.mil>>; Freude, Anthony E COL USARMY HQDA DCS G-8 (USA) <anthony.e.freude.mil@army.mil<mailto:anthony.e.freude.mil@army.mil>>; Anderson, Aaron H CW5 USARMY HQDA CSA (USA) <aaron.h.anderson.mil@army.mil<mailto:aaron.h.anderson.mil@army.mil>>; Solsbury, Melissa A (Molly) COL USARMY HQDA CSA (USA) <melissa.a.solsbury.mil@army.mil<mailto:melissa.a.solsbury.mil@army.mil>>; Solsbury, Melissa A (Molly) COL USARMY HQDA CSA (USA) <melissa.a.solsbury.mil@army.mil<mailto:melissa.a.solsbury.mil@army.mil>>; Swinney, Joseph D (JD) COL USARMY CFT FVL (USA) <joseph.d.swinney.mil@army.mil<mailto:joseph.d.swinney.mil@army.mil>>; Shaw, Scott A COL USARMY CDID MNVR (USA) <scott.a.shaw12.mil@army.mil<mailto:scott.a.shaw12.mil@army.mil>>; Conlin, Shaun S Jr COL USARMY CDID MNVR (USA) <shaun.s.conlin2.mil@army.mil<mailto:shaun.s.conlin2.mil@army.mil>>; Edwards, Dominick Lawrence (Dom) CIV USARMY CDID MNVR (USA) <dominick.l.edwards.civ@army.mil<mailto:dominick.l.edwards.civ@army.mil>>; Medaglia, Danielle R COL USARMY PEO AVN (USA) <danielle.r.medaglia.mil@army.mil<mailto:danielle.r.medaglia.mil@army.mil>>\r\nSubject: UPDATE: SECDEF UAS Guidance\r\n\r\n\r\n\r\nLadies and Gentlemen,\r\n\r\n\r\n\r\nAttached is the final draft of the SECDEF’s UAS Guidance “Unleashing U.S. Military Drone Dominance”.\r\n\r\n\r\n\r\nSECDEF reviewed and approved the document this morning. Expect signature with a press release and SECDEF video by Tuesday next week (O/A 8JUL25).\r\n\r\n\r\n\r\nThere may be a final coordination meeting with all service leaders prior to the release.\r\n\r\n\r\n\r\nThe major change from what I have previously shared is that CJCSI 3255.01 Joint Unmanned Aircraft Systems Minimum Training Standards is no longer “rescinded”. Instead, the CJCS has been directed to “revise” CJCSI 3255.01 to exclude Group 1 & 2 SUAS.\r\n\r\n\r\n\r\nAll other proposals which I have shared remain the same.\r\n\r\n\r\n\r\n\r\n\r\nRespectfully,\r\n\r\n\r\n\r\nCOL Nick Ryan\r\n\r\nDirector, Army Capability Manager-Unmanned Aircraft Systems (ACM-UAS)\r\n\r\nAviation CDID, FCC, AFC\r\n\r\nFort Rucker, AL 36362\r\n\r\nO: 334-255-3638 (DSN 588)\r\n\r\nC: 334-733-9114\r\n\r\nN: nicholas.d.ryan.mil@army.mil<mailto:nicholas.d.ryan.mil@army.mil>\r\n\r\nS: nicholas.d.ryan.mil@mail.smil.mil<mailto:nicholas.d.ryan.mil@mail.smil.mil>\r\n\r\n\r\n',0,0,0,0,0,0,'2025-07-10 16:21:54','2025-12-09 19:13:30','2025-12-09 19:13:30','2025-12-09 19:13:30',NULL,NULL,NULL),
(445,4,' <SA1PR19MB8072B51E9A4087C38B8F0A17AC48A@SA1PR19MB8072.namprd19.prod.outlook.com>',NULL,NULL,'Epilog Laser + Geneva Capital','rsnaza@gogc.com','Rebecca Snaza - Geneva Capital','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Segoe UI Emoji\";\r\n	panose-1:2 11 5 2 4 2 4 2 2 3;}\r\n@font-face\r\n	{font-family:\"Century Gothic\";\r\n	panose-1:2 11 5 2 2 2 2 2 2 4;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	line-height:15.0pt;\r\n	font-size:11.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle17\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Century Gothic\",sans-serif;\r\n	color:#3A3A3A;\r\n	font-weight:normal;\r\n	font-style:normal;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:11.0pt;}\r\n.MsoPapDefault\r\n	{mso-style-type:export-only;\r\n	line-height:15.0pt;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;line-height:normal\">\r\n<span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A\">Rick,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;line-height:normal\">\r\n<span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A\">Thank you for taking the time to complete the Epilog request form online. I am following up today to see if you had a chance to connect with your local Epilog distributor,\r\n Keystone Prototyping Solutions. <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A\">Geneva Capital has worked with Epilog for quite some time and we have multiple, flexible leasing/financing options available.\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:115%\"><span style=\"font-size:10.5pt;line-height:115%;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A\">Our lease or financing programs are\r\n</span><span style=\"font-size:10.5pt;line-height:115%;font-family:&quot;Century Gothic&quot;,sans-serif;color:#2F5597\">completely customizable\r\n</span><span style=\"font-size:10.5pt;line-height:115%;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A\">and range from\r\n</span><span style=\"font-size:10.5pt;line-height:115%;font-family:&quot;Century Gothic&quot;,sans-serif;color:#2F5597\">1-5 year terms\r\n</span><span style=\"font-size:10.5pt;line-height:115%;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A\">depending on your needs. When you submit an application<span style=\"mso-ligatures:none\">, there is no cost or obligation and only takes minutes to apply.\r\n The approval will be valid for 90 days and it’s the best way to get hard numbers for a purchasing decision!<o:p></o:p></span></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:115%\"><span style=\"font-size:10.5pt;line-height:115%;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:normal\"><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A\">If you\'re not interested at this time, no worries! But if you’d like to learn more of what we have to offer, please let me know.\r\n</span><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI Emoji&quot;,sans-serif;color:#3A3A3A\">😊</span><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A\">\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:normal\"><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:normal\"><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A\">Thanks!\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:normal\"><span style=\"color:#3A3A3A;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:normal\"><span style=\"font-size:12.0pt;color:#3A3A3A\"><img width=\"124\" height=\"100\" style=\"width:1.2916in;height:1.0416in\" id=\"_x0000_i1029\" src=\"https://www.gogc.com/images/Pillars-EDGE.png\" alt=\"Geneva Capital\"></span><span style=\"font-size:12.0pt;color:#3A3A3A;mso-ligatures:none\"><br>\r\n<br>\r\n</span><b><span style=\"font-size:14.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#16355D;letter-spacing:.4pt;mso-ligatures:none\">Rebecca Snaza</span></b><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;letter-spacing:.4pt;mso-ligatures:none\"><br>\r\n</span><b><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#7F7F7F;letter-spacing:.4pt;mso-ligatures:none\">Business Development</span></b><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#7F7F7F;letter-spacing:.4pt;mso-ligatures:none\"><br>\r\nDirect: 320.759.3544<br>\r\nMain: 320.762.8400<br>\r\n</span><span style=\"font-size:12.0pt;color:#3A3A3A\"><a href=\"mailto:rsnaza@gogc.com\"><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#7F7F7F;letter-spacing:.4pt;mso-ligatures:none;text-decoration:none\">rsnaza@gogc.com</span></a></span><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;letter-spacing:.4pt;mso-ligatures:none\"><br>\r\n<br>\r\n</span><b><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#BE1E2D;letter-spacing:.4pt;mso-ligatures:none\">Geneva Capital LLC</span></b><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;letter-spacing:.4pt;mso-ligatures:none\"><br>\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#16355D;letter-spacing:.4pt;mso-ligatures:none\">Your equipment finance\r\n<i>solution.</i></span><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;letter-spacing:.4pt;mso-ligatures:none\"><br>\r\n</span><span style=\"font-size:12.0pt;color:#3A3A3A\"><a href=\"http://www.gogc.com/\"><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#7F7F7F;letter-spacing:.4pt;mso-ligatures:none;text-decoration:none\">www.gogc.com</span></a></span><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;letter-spacing:.4pt;mso-ligatures:none\"><br>\r\n<br>\r\n</span><a href=\"https://www.facebook.com/GenevaCapitalLLC/\"><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:blue;letter-spacing:.4pt;text-decoration:none\"><img border=\"0\" width=\"38\" height=\"38\" style=\"width:.3958in;height:.3958in\" id=\"_x0000_i1028\" src=\"https://www.gogc.com/images/fb.png\" alt=\"fb\"></span></a><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:gray;letter-spacing:.4pt;mso-ligatures:none\">&nbsp;&nbsp;</span><a href=\"https://www.instagram.com/geneva_capital/?hl=en\"><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:blue;letter-spacing:.4pt;text-decoration:none\"><img border=\"0\" width=\"38\" height=\"38\" style=\"width:.3958in;height:.3958in\" id=\"_x0000_i1027\" src=\"https://www.gogc.com/images/IG.png\" alt=\"IG\"></span></a><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:gray;letter-spacing:.4pt;mso-ligatures:none\">&nbsp;&nbsp;</span><a href=\"https://www.linkedin.com/company/geneva-capital-llc/\"><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:blue;letter-spacing:.4pt;text-decoration:none\"><img border=\"0\" width=\"38\" height=\"38\" style=\"width:.3958in;height:.3958in\" id=\"_x0000_i1026\" src=\"https://www.gogc.com/images/LI.png\" alt=\"LI\"></span></a><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:gray;letter-spacing:.4pt;mso-ligatures:none\">&nbsp;&nbsp;</span><a href=\"https://twitter.com/Geneva_Capital\"><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:blue;letter-spacing:.4pt;text-decoration:none\"><img border=\"0\" width=\"38\" height=\"38\" style=\"width:.3958in;height:.3958in\" id=\"_x0000_i1025\" src=\"https://www.gogc.com/images/TW.png\" alt=\"IG\"></span></a><span style=\"font-size:12.0pt;color:#3A3A3A\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</body>\r\n</html>\r\n','Rick,\r\nThank you for taking the time to complete the Epilog request form online. I am following up today to see if you had a chance to connect with your local Epilog distributor, Keystone Prototyping Solutions.\r\nGeneva Capital has worked with Epilog for quite some time and we have multiple, flexible leasing/financing options available.\r\n\r\nOur lease or financing programs are completely customizable and range from 1-5 year terms depending on your needs. When you submit an application, there is no cost or obligation and only takes minutes to apply. The approval will be valid for 90 days and it’s the best way to get hard numbers for a purchasing decision!\r\n\r\nIf you\'re not interested at this time, no worries! But if you’d like to learn more of what we have to offer, please let me know. 😊\r\n\r\nThanks!\r\n\r\n\r\n\r\n[Geneva Capital]\r\n\r\nRebecca Snaza\r\nBusiness Development\r\nDirect: 320.759.3544\r\nMain: 320.762.8400\r\nrsnaza@gogc.com<mailto:rsnaza@gogc.com>\r\n\r\nGeneva Capital LLC\r\nYour equipment finance solution.\r\nwww.gogc.com<http://www.gogc.com/>\r\n\r\n[fb]<https://www.facebook.com/GenevaCapitalLLC/>  [IG] <https://www.instagram.com/geneva_capital/?hl=en>   [LI] <https://www.linkedin.com/company/geneva-capital-llc/>   [IG] <https://twitter.com/Geneva_Capital>\r\n\r\n',0,0,0,0,0,0,'2025-07-10 17:32:49','2025-12-09 19:13:31','2025-12-09 19:13:31','2025-12-09 19:13:31',NULL,NULL,NULL),
(446,4,'<50605054-37A5-40E5-9059-26737789BB18@mislan.com>',NULL,NULL,'US Air Force Awards Wright Electric to Develop 3D Printed Batteries for Drones - 3DPrint.com | The Voice of 3D Printing / Additive Manufacturing','rick@mislan.com','Rick Mislan','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body dir=\"auto\"><div dir=\"ltr\"><br>https://3dprint.com/312003/us-air-force-taps-wright-electric-to-develop-3d-printed-batteries-for-drones/</div><br id=\"lineBreakAtBeginningOfSignature\"><div dir=\"ltr\"><br><div><font face=\"HelveticaNeue\" style=\"caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); font-size: 13px; -webkit-text-size-adjust: auto;\"><span style=\"font-size: 12px;\"><br></span></font><div class=\"gmail_signature\" style=\"caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); font-family: helvetica, Arial; font-size: 13px; -webkit-text-size-adjust: auto;\"><font face=\"HelveticaNeue\"><span style=\"font-size: 12px;\">Rick Mislan, PhD</span></font><div><a href=\"http://www.mislan.com/\" style=\"overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; -webkit-hyphens: auto; font-size: 12px;\"><font face=\"HelveticaNeue\">www.mislan.com</font></a></div><div><a href=\"tel://(585) 797-9473\" style=\"overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; -webkit-hyphens: auto; font-size: 12px;\"><font face=\"HelveticaNeue\">(585) 797-9473</font></a></div></div></div></div></body></html>','https://3dprint.com/312003/us-air-force-taps-wright-electric-to-develop-3d-printed-batteries-for-drones/Rick Mislan, PhDwww.mislan.com(585) 797-9473',0,0,0,0,0,0,'2025-07-11 13:28:08','2025-12-09 19:13:31','2025-12-09 19:13:31','2025-12-09 19:13:31',NULL,NULL,NULL),
(447,4,'<28.98.02852.BC711786@x.com>',NULL,NULL,'001647 is your X verification code','info@x.com','X','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional //EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/\r\nhtml; charset=utf-8\" />\r\n<meta name=\"viewport\" content=\"width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0\" />\r\n<meta name=\"apple-mobile-web-app-capable\" content=\"yes\" />\r\n<!--[if gte mso 9]><xml>\r\n<o:OfficeDocumentSettings>\r\n<o:AllowPNG/>\r\n<o:PixelsPerInch>96</o:PixelsPerInch>\r\n</o:OfficeDocumentSettings>\r\n</xml><![endif]-->\r\n<style type=\"text/css\">\r\n/* Windows 10 Mail Fix */\r\na { text-decoration: none; }\r\n/* a:visited { color: #8899A6; text-decoration:none; } */\r\n.addressLink a { color: #8899A6 !important; text-decoration: none !important; }\r\n/* Windows 10 Mail Fix End */\r\n@media only screen and (max-width: 500px) {\r\n.width_full {\r\nwidth: 100% !important;\r\n}\r\n.width_20 {\r\nwidth: 20px !important;\r\n}\r\n.width_24 {\r\nwidth: 24px !important;\r\n}\r\n#hide {\r\ndisplay: none !important;\r\n}\r\n.hide {\r\ndisplay: none !important;\r\n}\r\n.width_full {\r\nwidth: 100% !important;\r\nmin-width: 360px !important;\r\n}\r\n.height_30 {\r\nheight: 30px !important;\r\n}\r\n}\r\n</style>\r\n<style type=\"text/css\">\r\nu + #new-gmail-hack {\r\ndisplay: block !important;\r\n}\r\n</style>\r\n</head>\r\n<body style=\"margin:0px auto;padding:0px;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;\">\r\n<img width=\"1\" height=\"1\" src=\"https://twitter.com/scribe/ibis?t=1&amp;cn=b25ib2FyZGluZ192ZXJpZnlfZW1haWw%3D&amp;iid=955554a44e8a4f6a99fb5dd4ce90304d&amp;uid=1044315199879229441&amp;nid=296+20\" style=\"margin:0px;padding:0px;display:inline-block;-ms-interpolation-mode:bicubic;border:none;outline:none;\" />\r\n<style>\r\n.ios_blue a {\r\ncolor: #1DA1F2 !important;\r\ntext-decoration: none;\r\n}\r\n</style>\r\n<!--[if (gte mso 9)|(IE)]>\r\n<style inline=\"false\">\r\n.ie_hide {\r\ndisplay: none !important;\r\n}\r\n</style>\r\n<![endif]-->\r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" bgcolor=\"#ffffff\" class=\"wrapper\" style=\"padding:0px;line-height:1px;font-size:1px;margin:0px auto;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"empty\" width=\"100%\" align=\"center\" style=\"padding:0px;margin:0px auto;font-size:0px;line-height:1px;padding:0px;\">\r\n<!-- BODY START -->\r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" align=\"center\" bgcolor=\"#F5F8FA\" width=\"100%\" class=\"width_full\" dir=\"ltr\" style=\"padding:0px;line-height:1px;font-size:1px;margin:0px auto;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"empty\" style=\"padding:0px;margin:0px auto;font-size:0px;line-height:1px;padding:0px;\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" align=\"center\" bgcolor=\"#ffffff\" width=\"450\" class=\"width_full\" style=\"padding:0px;line-height:1px;font-size:1px;margin:0px auto;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"empty width_20\" width=\"24\" style=\"padding:0px;margin:0px auto;font-size:0px;line-height:1px;padding:0px;\"> &nbsp; </td>\r\n<td class=\"empty\" style=\"padding:0px;margin:0px auto;font-size:0px;line-height:1px;padding:0px;\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" align=\"center\" dir=\"ltr\" style=\"padding:0px;line-height:1px;font-size:1px;margin:0px auto;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"empty\" height=\"24\" style=\"padding:0px;margin:0px auto;font-size:0px;line-height:1px;padding:0px;\"> &nbsp; </td>\r\n</tr>\r\n<tr>\r\n<td class=\"image empty\" align=\"right\" style=\"padding:0px;margin:0px auto;font-size:0px;line-height:1px;padding:0px;font-size:0px;line-height:100%;padding:0px;mso-line-height-rule:exactly;\"> <a href=\"https://t.co/redirect?url=https%3A%2F%2Fx.com&amp;t=1&amp;cn=b25ib2FyZGluZ192ZXJpZnlfZW1haWw%3D&amp;sig=16e931d181ca58b51af9043e701793bf68f457b4&amp;iid=955554a44e8a4f6a99fb5dd4ce90304d&amp;uid=1044315199879229441&amp;nid=296+1\" style=\"text-decoration:none;border-style:none;border:0px;padding:0px;margin:0px;color:#1DA1F2;text-decoration:none;\"> <img src=\"https://ton.twitter.com/twitter_blue_for_business/verified-programs/x_logo.png\" width=\"32\" alt=\"X\" title=\"X\" style=\"margin:0px;padding:0px;display:inline-block;-ms-interpolation-mode:bicubic;border:none;outline:none;\" /> </a> </td>\r\n</tr>\r\n<tr>\r\n<td class=\"empty\" height=\"24\" style=\"padding:0px;margin:0px auto;font-size:0px;line-height:1px;padding:0px;\"> &nbsp; </td>\r\n</tr>\r\n<tr>\r\n<td class=\"h2 black\" align=\"left\" dir=\"ltr\" style=\"padding:0px;margin:0px auto;font-family:\'Helvetica Neue\', Helvetica, Arial, sans-serif;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:none;font-size:24px;padding:0px;margin:0px;font-weight:bold;line-height:32px;\"> Confirm your email address </td>\r\n</tr>\r\n<tr>\r\n<td class=\"empty\" height=\"24\" style=\"padding:0px;margin:0px auto;font-size:0px;line-height:1px;padding:0px;\"> &nbsp; </td>\r\n</tr>\r\n<tr>\r\n<td class=\"body black\" align=\"left\" dir=\"ltr\" style=\"padding:0px;margin:0px auto;font-family:\'Helvetica Neue Light\', Helvetica, Arial, sans-serif;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:none;font-size:16px;padding:0px;margin:0px;font-weight:normal;line-height:20px;font-family:\'Helvetica Neue Light\', Helvetica, Arial, sans-serif;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:none;font-size:16px;padding:0px;margin:0px;font-weight:normal;line-height:22px;\"> There’s one quick step you need to complete before creating your X account. Let’s make sure this is the right email address for you — please confirm this is the right address to use for your new account. </td>\r\n</tr>\r\n<tr>\r\n<td class=\"empty\" height=\"24\" style=\"padding:0px;margin:0px auto;font-size:0px;line-height:1px;padding:0px;\"> &nbsp; </td>\r\n</tr>\r\n<tr>\r\n<td class=\"body black\" align=\"left\" dir=\"ltr\" style=\"padding:0px;margin:0px auto;font-family:\'Helvetica Neue Light\', Helvetica, Arial, sans-serif;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:none;font-size:16px;padding:0px;margin:0px;font-weight:normal;line-height:20px;font-family:\'Helvetica Neue Light\', Helvetica, Arial, sans-serif;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:none;font-size:16px;padding:0px;margin:0px;font-weight:normal;line-height:22px;\"> Please enter this verification code to get started on X: </td>\r\n</tr>\r\n<tr>\r\n<td class=\"empty\" style=\"padding:0px;margin:0px auto;font-size:0px;line-height:1px;padding:0px;\"> &nbsp; </td>\r\n</tr>\r\n<tr>\r\n<td class=\"h1 black\" align=\"left\" dir=\"ltr\" style=\"padding:0px;margin:0px auto;font-family:\'Helvetica Neue\', Helvetica, Arial, sans-serif;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:none;font-size:32px;padding:0px;margin:0px;font-weight:bold;line-height:36px;\"> 001647 </td>\r\n</tr>\r\n<tr>\r\n<td class=\"empty\" height=\"6\" style=\"padding:0px;margin:0px auto;font-size:0px;line-height:1px;padding:0px;\"> &nbsp; </td>\r\n</tr>\r\n<tr>\r\n<td class=\"body_2 black\" align=\"left\" dir=\"ltr\" style=\"padding:0px;margin:0px auto;font-family:\'Helvetica Neue Light\', Helvetica, Arial, sans-serif;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:none;font-size:14px;padding:0px;margin:0px;font-weight:normal;line-height:18px;\"> Verification codes expire after two hours. </td>\r\n</tr>\r\n<tr>\r\n<td class=\"empty\" height=\"24\" style=\"padding:0px;margin:0px auto;font-size:0px;line-height:1px;padding:0px;\"> &nbsp; </td>\r\n</tr>\r\n<tr>\r\n<td class=\"body black\" align=\"left\" dir=\"ltr\" style=\"padding:0px;margin:0px auto;font-family:\'Helvetica Neue Light\', Helvetica, Arial, sans-serif;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:none;font-size:16px;padding:0px;margin:0px;font-weight:normal;line-height:20px;font-family:\'Helvetica Neue Light\', Helvetica, Arial, sans-serif;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:none;font-size:16px;padding:0px;margin:0px;font-weight:normal;line-height:22px;\"> Thanks,<br /> X </td>\r\n</tr>\r\n<tr>\r\n<td class=\"empty\" height=\"32\" style=\"padding:0px;margin:0px auto;font-size:0px;line-height:1px;padding:0px;\"> &nbsp; </td>\r\n</tr>\r\n</tbody>\r\n</table> </td>\r\n<td class=\"empty width_20\" width=\"24\" style=\"padding:0px;margin:0px auto;font-size:0px;line-height:1px;padding:0px;\"> &nbsp; </td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" align=\"center\" width=\"450\" class=\"width_full\" bgcolor=\"#ffffff\" style=\"padding:0px;line-height:1px;font-size:1px;margin:0px auto;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"empty width_20\" width=\"24\" style=\"padding:0px;margin:0px auto;font-size:0px;line-height:1px;padding:0px;\"> &nbsp; </td>\r\n<td class=\"empty\" style=\"padding:0px;margin:0px auto;font-size:0px;line-height:1px;padding:0px;\">\r\n<table align=\"center\" dir=\"ltr\" style=\"padding:0px;line-height:1px;font-size:1px;margin:0px auto;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"empty\" height=\"48\" style=\"padding:0px;margin:0px auto;font-size:0px;line-height:1px;padding:0px;\"> &nbsp; </td>\r\n</tr>\r\n<tr>\r\n<td class=\"footer strong deep_grey center\" align=\"center\" dir=\"ltr\" style=\"padding:0px;margin:0px auto;color:#657786;font-family:\'Helvetica Neue Light\', Helvetica, Arial, sans-serif;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:none;font-size:12px;padding:0px;margin:0px;font-weight:normal;line-height:16px;font-weight:bold;text-align:center;margin:auto;\"> <a href=\"https://t.co/redirect?url=https%3A%2F%2Fsupport.x.com%2F&amp;t=1&amp;cn=b25ib2FyZGluZ192ZXJpZnlfZW1haWw%3D&amp;sig=274c5bd6800b4fb05356996c92c949d834ad413a&amp;iid=955554a44e8a4f6a99fb5dd4ce90304d&amp;uid=1044315199879229441&amp;nid=296+3\" class=\"footer_grey\" style=\"text-decoration:none;border-style:none;border:0px;padding:0px;margin:0px;color:#1DA1F2;text-decoration:none;color:#8899a6;\"> Help </a> &nbsp;|&nbsp; <a href=\"https://t.co/redirect?url=https%3A%2F%2Fsupport.x.com%2Farticles%2F204820-fake-twitter-emails&amp;t=1&amp;cn=b25ib2FyZGluZ192ZXJpZnlfZW1haWw%3D&amp;sig=cf7a9e3f1c8deecd8c5869f23e5ecc86447f265f&amp;iid=955554a44e8a4f6a99fb5dd4ce90304d&amp;uid=1044315199879229441&amp;nid=296+4\" class=\"footer_grey nowrap\" style=\"text-decoration:none;border-style:none;border:0px;padding:0px;margin:0px;white-space:nowrap;color:#1DA1F2;text-decoration:none;color:#8899a6;\"> Email security tips </a> </td>\r\n</tr>\r\n<tr>\r\n<td class=\"empty\" height=\"12\" style=\"padding:0px;margin:0px auto;font-size:0px;line-height:1px;padding:0px;\"> &nbsp; </td>\r\n</tr>\r\n<tr>\r\n<td class=\"footer footer_grey center\" align=\"center\" style=\"padding:0px;margin:0px auto;font-family:\'Helvetica Neue Light\', Helvetica, Arial, sans-serif;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:none;font-size:12px;padding:0px;margin:0px;font-weight:normal;line-height:16px;text-align:center;margin:auto;color:#8899a6;\"> <span class=\"addressLink\">X Corp. ﻿1355 ﻿Market ﻿Street, ﻿Suite ﻿900 ﻿San&nbsp;Francisco,&nbsp;CA&nbsp;94103</span> </td>\r\n</tr>\r\n<tr>\r\n<td class=\"empty\" height=\"50\" style=\"padding:0px;margin:0px auto;font-size:0px;line-height:1px;padding:0px;\"> &nbsp; </td>\r\n</tr>\r\n</tbody>\r\n</table> </td>\r\n<td class=\"empty width_20\" width=\"24\" style=\"padding:0px;margin:0px auto;font-size:0px;line-height:1px;padding:0px;\"> &nbsp; </td>\r\n</tr>\r\n</tbody>\r\n</table> </td>\r\n</tr>\r\n<tr class=\"hide\">\r\n<td class=\"empty hide\" height=\"32\" style=\"padding:0px;margin:0px auto;font-size:0px;line-height:1px;padding:0px;\"> &nbsp; </td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- BODY END --> </td>\r\n</tr>\r\n<tr>\r\n<td class=\"fix_gmail_ios\" id=\"hide\" align=\"center\" style=\"padding:0px;margin:0px auto;color:#ffffff;font-family:Arial, sans-serif;font-size:14px;\"> ———————————————————————————— </td>\r\n</tr>\r\n<tr>\r\n<td class=\"fix_gmail_android\" id=\"hide\" align=\"center\" style=\"padding:0px;margin:0px auto;\">\r\n<table align=\"center\" style=\"padding:0px;line-height:1px;font-size:1px;margin:0px auto;\">\r\n<tbody>\r\n<tr>\r\n<td width=\"135\" height=\"1\" style=\"padding:0px;margin:0px auto;\"> <img src=\"https://ea.twimg.com/email/self_serve/media/spacer-1476918453497.png\" height=\"1\" width=\"130\" style=\"margin:0px;padding:0px;display:inline-block;-ms-interpolation-mode:bicubic;border:none;outline:none;\" /> </td>\r\n<td width=\"135\" height=\"1\" style=\"padding:0px;margin:0px auto;\"> <img src=\"https://ea.twimg.com/email/self_serve/media/spacer-1476918453497.png\" height=\"1\" width=\"130\" style=\"margin:0px;padding:0px;display:inline-block;-ms-interpolation-mode:bicubic;border:none;outline:none;\" /> </td>\r\n<td width=\"135\" height=\"1\" style=\"padding:0px;margin:0px auto;\"> <img src=\"https://ea.twimg.com/email/self_serve/media/spacer-1476918453497.png\" height=\"1\" width=\"130\" style=\"margin:0px;padding:0px;display:inline-block;-ms-interpolation-mode:bicubic;border:none;outline:none;\" /> </td>\r\n<td width=\"135\" height=\"1\" style=\"padding:0px;margin:0px auto;\"> <img src=\"https://ea.twimg.com/email/self_serve/media/spacer-1476918453497.png\" height=\"1\" width=\"130\" style=\"margin:0px;padding:0px;display:inline-block;-ms-interpolation-mode:bicubic;border:none;outline:none;\" /> </td>\r\n<td width=\"135\" height=\"1\" style=\"padding:0px;margin:0px auto;\"> <img src=\"https://ea.twimg.com/email/self_serve/media/spacer-1476918453497.png\" height=\"1\" width=\"130\" style=\"margin:0px;padding:0px;display:inline-block;-ms-interpolation-mode:bicubic;border:none;outline:none;\" /> </td>\r\n</tr>\r\n</tbody>\r\n</table> </td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<section>\r\n<div id=\"new-gmail-hack\" style=\"white-space: nowrap; font: 15px courier; line-height: 0; display: none;\">\r\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\r\n</div>\r\n</section>\r\n</body>\r\n</html>','X\r\n\r\nConfirm your email address\r\n\r\nThere’s one quick step you need to complete before creating your X account. Let’s make sure this is the right email address for you — please confirm this is the right address to use for your new account.\r\n\r\nPlease enter this verification code to get started on X:\r\n\r\n001647\r\n\r\nVerification codes expire after two hours.\r\n\r\nThanks,\r\nX',0,0,0,0,0,0,'2025-07-11 13:55:23','2025-12-09 19:13:31','2025-12-09 19:13:31','2025-12-09 19:13:31',NULL,NULL,NULL),
(448,4,'<836654081.173279.1752242881527@ltx1-app53776.prod.linkedin.com>',NULL,NULL,'Mavrix, your pin is 350695. Please confirm your email address.','security-noreply@linkedin.com','LinkedIn','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n              @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n            </style> <style>\r\n            @media (max-width: 480px) { .inline-button, .inline-button table { display: none !important; }\r\n            .full-width-button, .full-width-button table { display: table !important; } }\r\n          </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n            \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n            \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">Mavrix, your pin is 350695. Please confirm your email address.</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-top: 0px; margin-bottom: 0px; margin-left: auto; margin-right: auto; width: 512px; max-width: 512px; padding: 0px;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"bg-color-background-container \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_confirm_your_email_with_pin_single_01%3B4JT6Q3HWQfGaw3GtNpbNYA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3z4cAhHgRgDHQ1&amp;trk=eml-email_confirm_your_email_with_pin_single_01-header-0-home_glimmer&amp;trkEmail=eml-email_confirm_your_email_with_pin_single_01-header-0-home_glimmer-null-poh2nf~mcyw63qq~kf-null-null&amp;eid=poh2nf-mcyw63qq-kf\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img alt=\"LinkedIn\" src=\"https://static.licdn.com/aero-v1/sc/h/9ehe6n39fa07dc5edzv0rla4e\" class=\"h-[21px] w-[84px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 21px; width: 84px;\" width=\"84\" height=\"21\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-header-profile style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/in/mavrix-one-ba3024374?lipi=urn%3Ali%3Apage%3Aemail_email_confirm_your_email_with_pin_single_01%3B4JT6Q3HWQfGaw3GtNpbNYA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3z4cAhHgRgDHQ1&amp;trk=eml-email_confirm_your_email_with_pin_single_01-header-0-profile_glimmer&amp;trkEmail=eml-email_confirm_your_email_with_pin_single_01-header-0-profile_glimmer-null-poh2nf~mcyw63qq~kf-null-null&amp;eid=poh2nf-mcyw63qq-kf\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <span class=\"no-underline text-system-gray-90\" style=\"color: #282828; text-decoration-line: none;\">Mavrix One</span> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"px-3 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px; padding-bottom: 24px;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <h1 class=\"text-xl\" style=\"margin: 0; font-weight: 500; font-size: 24px;\">Thank you for signing up</h1> </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-black-a90 pt-1\" style=\"margin: 0; font-weight: 400; padding-top: 8px; color: rgba(0, 0, 0, 0.9);\">Enter this code or click the button below to confirm your email.</p> </td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"py-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px; padding-bottom: 24px;\"> <p class=\"text-color-brand-accent-3 text-display-lg font-bold\" style=\"margin: 0; font-size: 48px; font-weight: 600; color: #5a6b51;\"> 350695 </p> </td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-solid border-1 border-color-border-faint rounded-sm p-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 4px; border-width: 1px; border-style: solid; border-color: rgba(0, 0, 0, 0.08); padding: 16px;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <td valign=\"middle\" class=\"w-2 pr-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 16px; padding-right: 8px;\" width=\"16\"> <img alt=\"shield icon\" class=\"h-2.5 w-2\" src=\"https://static.licdn.com/aero-v1/sc/h/3guws4f8gr7rrglmz6899ci2r\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 16px;\" width=\"16\"> </td> <td valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"font-medium\" style=\"margin: 0; font-weight: 500;\">Your privacy is important</p> </td> </tbody> </table> </td> </tr> <tr> <td valign=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-black-a90 text-sm pt-1\" style=\"margin: 0; font-weight: 400; padding-top: 8px; font-size: 14px; color: rgba(0, 0, 0, 0.9);\"> We may send you member updates, recruiter messages, job suggestions, reminders and promotional messages from us and our partners. You can <a href=\"https://www.linkedin.com/comm/psettings/email-controls?lipi=urn%3Ali%3Apage%3Aemail_email_confirm_your_email_with_pin_single_01%3B4JT6Q3HWQfGaw3GtNpbNYA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3z4cAhHgRgDHQ1&amp;trk=eml-email_confirm_your_email_with_pin_single_01-update~email~preferences-0-glimmer&amp;trkEmail=eml-email_confirm_your_email_with_pin_single_01-update~email~preferences-0-glimmer-null-poh2nf~mcyw63qq~kf-null-null&amp;eid=poh2nf-mcyw63qq-kf\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\">change your preferences</a> anytime. </p> </td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pt-4\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 32px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/psettings/email/confirm?id=7349439323135438849&amp;ct=1752242880625&amp;sig=3viHaknzVgDHQ1&amp;crua=neptune%2Fonboarding%2Estart&amp;lipi=urn%3Ali%3Apage%3Aemail_email_confirm_your_email_with_pin_single_01%3B4JT6Q3HWQfGaw3GtNpbNYA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3z4cAhHgRgDHQ1&amp;trk=eml-email_confirm_your_email_with_pin_single_01-confirm~pin~email-0-glimmer&amp;trkEmail=eml-email_confirm_your_email_with_pin_single_01-confirm~pin~email-0-glimmer-null-poh2nf~mcyw63qq~kf-null-null&amp;eid=poh2nf-mcyw63qq-kf\" target=\"_blank\" aria-label=\"Confirm your email\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; display: inline-block; color: #ffffff; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/psettings/email/confirm?id=7349439323135438849&amp;ct=1752242880625&amp;sig=3viHaknzVgDHQ1&amp;crua=neptune%2Fonboarding%2Estart&amp;lipi=urn%3Ali%3Apage%3Aemail_email_confirm_your_email_with_pin_single_01%3B4JT6Q3HWQfGaw3GtNpbNYA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3z4cAhHgRgDHQ1&amp;trk=eml-email_confirm_your_email_with_pin_single_01-confirm~pin~email-0-glimmer&amp;trkEmail=eml-email_confirm_your_email_with_pin_single_01-confirm~pin~email-0-glimmer-null-poh2nf~mcyw63qq~kf-null-null&amp;eid=poh2nf-mcyw63qq-kf\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> Confirm your email </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" data-test-id=\"email-footer__intended\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (--) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_confirm_your_email_with_pin_single_01%3B4JT6Q3HWQfGaw3GtNpbNYA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3z4cAhHgRgDHQ1&amp;trk=eml-email_confirm_your_email_with_pin_single_01-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_confirm_your_email_with_pin_single_01-SecurityHelp-0-footerglimmer-null-poh2nf~mcyw63qq~kf-null-null&amp;eid=poh2nf-mcyw63qq-kf\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving LinkedIn notification emails.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_confirm_your_email_with_pin_single_01%3B4JT6Q3HWQfGaw3GtNpbNYA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3z4cAhHgRgDHQ1&amp;trk=eml-email_confirm_your_email_with_pin_single_01-help-0-footerglimmer&amp;trkEmail=eml-email_confirm_your_email_with_pin_single_01-help-0-footerglimmer-null-poh2nf~mcyw63qq~kf-null-null&amp;eid=poh2nf-mcyw63qq-kf\" target=\"_blank\" data-test-help-link class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_confirm_your_email_with_pin_single_01%3B4JT6Q3HWQfGaw3GtNpbNYA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3z4cAhHgRgDHQ1&amp;trk=eml-email_confirm_your_email_with_pin_single_01-footer-0-logoGlimmer&amp;trkEmail=eml-email_confirm_your_email_with_pin_single_01-footer-0-logoGlimmer-null-poh2nf~mcyw63qq~kf-null-null&amp;eid=poh2nf-mcyw63qq-kf\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/aero-v1/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFqZVhjMk0zRnhMV3RtOlpXMWhhV3hmWTI5dVptbHliVjk1YjNWeVgyVnRZV2xzWDNkcGRHaGZjR2x1WDNOcGJtZHNaVjh3TVE9PTo=.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','Mavrix, your pin is 350695. Please confirm your email address\r\n\r\nThank you for signing up\r\nEnter this code or click the button below to confirm your email.\r\n\r\n350695\r\n\r\n\r\nYour privacy is important\r\n\r\nWe may send you member updates, recruiter messages, job suggestions, reminders and promotional messages from us and our partners. You can change your preferences anytime.\r\nhttps://www.linkedin.com/comm/psettings/email-controls?lipi=urn%3Ali%3Apage%3Aemail_email_confirm_your_email_with_pin_single_01%3B4JT6Q3HWQfGaw3GtNpbNYA%3D%3D&midToken=AQE-iPshthTClw&midSig=3z4cAhHgRgDHQ1&trk=eml-email_confirm_your_email_with_pin_single_01-update~email~preferences-0-glimmer&trkEmail=eml-email_confirm_your_email_with_pin_single_01-update~email~preferences-0-glimmer-null-poh2nf~mcyw63qq~kf-null-null&eid=poh2nf-mcyw63qq-kf\r\n\r\n\r\nConfirm your email\r\nhttps://www.linkedin.com/comm/psettings/email/confirm?id=7349439323135438849&ct=1752242880625&sig=3viHaknzVgDHQ1&crua=neptune%2Fonboarding%2Estart&lipi=urn%3Ali%3Apage%3Aemail_email_confirm_your_email_with_pin_single_01%3B4JT6Q3HWQfGaw3GtNpbNYA%3D%3D&midToken=AQE-iPshthTClw&midSig=3z4cAhHgRgDHQ1&trk=eml-email_confirm_your_email_with_pin_single_01-confirm~pin~email-0-glimmer&trkEmail=eml-email_confirm_your_email_with_pin_single_01-confirm~pin~email-0-glimmer-null-poh2nf~mcyw63qq~kf-null-null&eid=poh2nf-mcyw63qq-kf\r\n\r\n      \r\n\r\n----------------------------------------\r\n\r\nThis email was intended for Mavrix One (--)\r\nLearn why we included this: https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_confirm_your_email_with_pin_single_01%3B4JT6Q3HWQfGaw3GtNpbNYA%3D%3D&midToken=AQE-iPshthTClw&midSig=3z4cAhHgRgDHQ1&trk=eml-email_confirm_your_email_with_pin_single_01-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_confirm_your_email_with_pin_single_01-SecurityHelp-0-textfooterglimmer-null-poh2nf~mcyw63qq~kf-null-null&eid=poh2nf-mcyw63qq-kf\r\nYou are receiving LinkedIn notification emails.\r\n\r\nHelp: https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_confirm_your_email_with_pin_single_01%3B4JT6Q3HWQfGaw3GtNpbNYA%3D%3D&midToken=AQE-iPshthTClw&midSig=3z4cAhHgRgDHQ1&trk=eml-email_confirm_your_email_with_pin_single_01-help-0-textfooterglimmer&trkEmail=eml-email_confirm_your_email_with_pin_single_01-help-0-textfooterglimmer-null-poh2nf~mcyw63qq~kf-null-null&eid=poh2nf-mcyw63qq-kf\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.\r\nLinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',0,0,0,0,0,0,'2025-07-11 14:08:01','2025-12-09 19:13:32','2025-12-09 19:13:32','2025-12-09 19:13:32',NULL,NULL,NULL),
(449,4,'<T9NWudLS09TxPK3xaLh9KhMVv7BzlzW9wFBFvh0k@mavrix.one>',NULL,NULL,'New MAVRIX Mission Signup','rick@mavrix.one','MAVRIX Website','A new user has joined the MAVRIX mission!\r\n\r\nEmail: rick@mislan.com\r\n\r\n','A new user has joined the MAVRIX mission!\r\n\r\nEmail: rick@mislan.com\r\n\r\n',0,0,0,0,0,0,'2025-07-11 15:06:13','2025-12-09 19:13:32','2025-12-09 19:13:32','2025-12-09 19:13:32',NULL,NULL,NULL),
(450,4,'<PH3PPFCA48BBAFBDCEDA7C85C3D27A759EECA4BA@PH3PPFCA48BBAFB.namprd22.prod.outlook.com>',NULL,NULL,'DragonPlate Contact','bdorsch@allredcorp.com','Billy Dorsch','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:x=\"urn:schemas-microsoft-com:office:excel\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle17\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;\r\n	font-weight:normal;\r\n	font-style:normal;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Hi Rick, <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">I\'m sorry for not getting this email out sooner. I just wanted to update you on the status of your request. I pinged the team yesterday, and today I see that a few of the folks I wanted to talk to aren&#8217;t in\r\n the office today. I have emailed our founder/president, JB Allred, to see his schedule for next week so we can arrange a call to discuss. I will let you know as soon as I hear from JB, who oversees our Engineering team. I don&#8217;t want too much time to pass,\r\n so I hope we can schedule something for early next week. <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">There is a chance I may not hear from JB until Monday morning, as he is currently out of the office today. Let me know if you have any open availability early next week, and I can bounce those off JB so we\r\n can sync up. <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Thanks again, Rick. I look forward to your feedback and connecting with you next week!<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Best,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt\">Billy Dorsch <o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Sales, Allred &amp; Associates<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>&nbsp;&nbsp; &nbsp;(315) 612-3876&nbsp; &nbsp;<a href=\"http://www.allredcorp.com/\">www.allredcorp.com</a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">321 NY Rt. 5 Elbridge, NY 13060, USA<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><img border=\"0\" width=\"103\" height=\"78\" style=\"width:1.0729in;height:.8125in\" id=\"Picture_x0020_1\" src=\"cid:image001.jpg@01DBF255.2A8087D0\"> &nbsp;<img border=\"0\" width=\"82\" height=\"79\" style=\"width:.8541in;height:.8229in\" id=\"Picture_x0020_2\" src=\"cid:image002.jpg@01DBF255.2A8087D0\"><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><br>\r\n<br>\r\n<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</body>\r\n</html>','Hi Rick,\r\n\r\nI\'m sorry for not getting this email out sooner. I just wanted to update you on the status of your request. I pinged the team yesterday, and today I see that a few of the folks I wanted to talk to aren\'t in the office today. I have emailed our founder/president, JB Allred, to see his schedule for next week so we can arrange a call to discuss. I will let you know as soon as I hear from JB, who oversees our Engineering team. I don\'t want too much time to pass, so I hope we can schedule something for early next week.\r\n\r\nThere is a chance I may not hear from JB until Monday morning, as he is currently out of the office today. Let me know if you have any open availability early next week, and I can bounce those off JB so we can sync up.\r\n\r\nThanks again, Rick. I look forward to your feedback and connecting with you next week!\r\n\r\nBest,\r\n\r\nBilly Dorsch\r\nSales, Allred & Associates\r\nbdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>    (315) 612-3876   www.allredcorp.com<http://www.allredcorp.com/>\r\n321 NY Rt. 5 Elbridge, NY 13060, USA\r\n[cid:image001.jpg@01DBF255.2A8087D0]  [cid:image002.jpg@01DBF255.2A8087D0]',0,0,0,0,0,0,'2025-07-11 15:15:55','2025-12-09 19:13:32','2025-12-09 19:13:32','2025-12-09 19:13:32',NULL,NULL,NULL),
(451,4,'<QPViQJA6my3QkjPCS534fkRXp2TDEnguUV09rAHoK8@mavrix.one>',NULL,NULL,'New MAVRIX Mission Signup','rick@mavrix.one','MAVRIX Website','A new user has joined the MAVRIX mission!\r\n\r\nEmail: drsjmislan@gmail.com\r\n\r\n','A new user has joined the MAVRIX mission!\r\n\r\nEmail: drsjmislan@gmail.com\r\n\r\n',0,0,0,0,0,0,'2025-07-11 15:49:38','2025-12-09 19:13:33','2025-12-09 19:13:33','2025-12-09 19:13:33',NULL,NULL,NULL),
(452,4,'<CAGgBgfCNLAqJyX2n6JwXqfziEjT+LFRA4J9vAnUpgFzrCzjM9g@mail.gmail.com>',NULL,NULL,'Other drone graphics','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div class=\"gmail_default\" style=\"font-size:small\"><img src=\"cid:ii_mcz0ak6s0\" alt=\"usa usa usa usa usa.png\" style=\"margin-right: 25px;\"><br><br></div><div class=\"gmail_default\" style=\"font-size:small\"><img src=\"cid:ii_mcz0c3tn1\" alt=\"fighting tiger.png\" style=\"margin-right: 25px;\"><br><br></div></div>','[image: usa usa usa usa usa.png]\r\n\r\n[image: fighting tiger.png]',0,0,0,0,0,0,'2025-07-11 16:04:57','2025-12-09 19:13:36','2025-12-09 19:13:36','2025-12-09 19:13:36',NULL,NULL,NULL),
(453,4,'<CAGgBgfA5Ax-ErY=+=Leqt05L+o2TzcmmTi29Bt9neUpMQQz8_A@mail.gmail.com>',NULL,NULL,'Re: Other drone graphics','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\"><a href=\"https://www.dropbox.com/scl/fo/x5wfjjq11cybod42qz3jv/AIBUMg-PkxM48e3gufQljoA?rlkey=j3p0qjnvm34wj00kbpuh13vyd&amp;st=2lv039mv&amp;dl=0\">https://www.dropbox.com/scl/fo/x5wfjjq11cybod42qz3jv/AIBUMg-PkxM48e3gufQljoA?rlkey=j3p0qjnvm34wj00kbpuh13vyd&amp;st=2lv039mv&amp;dl=0</a></div></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Jul 11, 2025 at 12:09 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div id=\"m_-6045344841436660117bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><img src=\"cid:ii_197fa411e2a720f840f3\"><br></div> <br> <div id=\"m_-6045344841436660117bloop_sign_1752250136949152000\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div> <br><p>On July 11, 2025 at 12:06:30 PM, Thomas Pownall (<a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div class=\"gmail_default\" style=\"font-size:small\"><img src=\"cid:ii_197fa411e2ae82c27ca1\" alt=\"usa usa usa usa usa.png\" style=\"margin-right: 25px;\"><br><br></div><div class=\"gmail_default\" style=\"font-size:small\"><img src=\"cid:ii_197fa411e2a5c19cfac2\" alt=\"fighting tiger.png\" style=\"margin-right: 25px;\"><br><br></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div>','https://www.dropbox.com/scl/fo/x5wfjjq11cybod42qz3jv/AIBUMg-PkxM48e3gufQljoA?rlkey=j3p0qjnvm34wj00kbpuh13vyd&st=2lv039mv&dl=0\r\n\r\n\r\n\r\n\r\nOn Fri, Jul 11, 2025 at 12:09 PM Rick <rick@mavrix.one> wrote:\r\n\r\n>\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On July 11, 2025 at 12:06:30 PM, Thomas Pownall (tpownall@cadxservices.com)\r\n> wrote:\r\n>\r\n> [image: usa usa usa usa usa.png]\r\n>\r\n> [image: fighting tiger.png]\r\n>\r\n>',0,0,0,0,0,0,'2025-07-11 16:11:05','2025-12-09 19:13:39','2025-12-09 19:13:39','2025-12-09 19:13:39',NULL,NULL,NULL),
(454,4,'<CAGgBgfB0qw4MY+CseB_+R19Jho+1XMLw=9nDTJHJEmWvudHdrg@mail.gmail.com>',NULL,NULL,'Re: Other drone graphics','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><img src=\"cid:ii_mcz190214\" alt=\"PCB ESC original 3.png\" style=\"margin-right: 0px;\"><br></div><div><br></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Jul 11, 2025 at 12:17 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><img src=\"cid:ii_197fa528da61a8212c44\"><div><br>\r\n    <div id=\"m_5559084295238255972bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><br></div> <br> <div id=\"m_5559084295238255972bloop_sign_1752250537799645952\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div> <br><p>On July 11, 2025 at 12:12:21 PM, Thomas Pownall (<a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\"><a href=\"https://www.dropbox.com/scl/fo/x5wfjjq11cybod42qz3jv/AIBUMg-PkxM48e3gufQljoA?rlkey=j3p0qjnvm34wj00kbpuh13vyd&amp;st=2lv039mv&amp;dl=0\" target=\"_blank\">https://www.dropbox.com/scl/fo/x5wfjjq11cybod42qz3jv/AIBUMg-PkxM48e3gufQljoA?rlkey=j3p0qjnvm34wj00kbpuh13vyd&amp;st=2lv039mv&amp;dl=0</a></div></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Jul 11, 2025 at 12:09 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div id=\"m_5559084295238255972m_-6045344841436660117bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\"><img src=\"cid:ii_197fa528da6720f840f3\"><br></div> <br> <div id=\"m_5559084295238255972m_-6045344841436660117bloop_sign_1752250136949152000\">\r\n         \r\n      \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n      \r\n</div> <br><p>On July 11, 2025 at 12:06:30 PM, Thomas Pownall (<a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div class=\"gmail_default\" style=\"font-size:small\"><img src=\"cid:ii_197fa528da6e82c27ca1\" alt=\"usa usa usa usa usa.png\" style=\"margin-right: 25px;\"><br><br></div><div class=\"gmail_default\" style=\"font-size:small\"><img src=\"cid:ii_197fa528da65c19cfac2\" alt=\"fighting tiger.png\" style=\"margin-right: 25px;\"><br><br></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</div></blockquote></div>','[image: PCB ESC original 3.png]\r\n\r\n\r\n\r\nOn Fri, Jul 11, 2025 at 12:17 PM Rick <rick@mavrix.one> wrote:\r\n\r\n>\r\n>\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On July 11, 2025 at 12:12:21 PM, Thomas Pownall (tpownall@cadxservices.com)\r\n> wrote:\r\n>\r\n>\r\n> https://www.dropbox.com/scl/fo/x5wfjjq11cybod42qz3jv/AIBUMg-PkxM48e3gufQljoA?rlkey=j3p0qjnvm34wj00kbpuh13vyd&st=2lv039mv&dl=0\r\n>\r\n>\r\n>\r\n>\r\n> On Fri, Jul 11, 2025 at 12:09 PM Rick <rick@mavrix.one> wrote:\r\n>\r\n>>\r\n>>\r\n>> Rick Mislan, PhD\r\n>> https://mavrix.one\r\n>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>\r\n>> On July 11, 2025 at 12:06:30 PM, Thomas Pownall (\r\n>> tpownall@cadxservices.com) wrote:\r\n>>\r\n>> [image: usa usa usa usa usa.png]\r\n>>\r\n>> [image: fighting tiger.png]\r\n>>\r\n>>',0,0,0,0,0,0,'2025-07-11 16:30:23','2025-12-09 19:13:43','2025-12-09 19:13:43','2025-12-09 19:13:43',NULL,NULL,NULL),
(455,4,' <BY5PR14MB38319DB36CE8EADA35678ED6EE4BA@BY5PR14MB3831.namprd14.prod.outlook.com>',NULL,NULL,'=?utf-8?B?UmU6IE9uZSBtb3JlIHRoaW5n4oCm?=','JSchnipke@strategic-logix.com','Jeremy Schnipke','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nGood Afternoon Rick,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nI haven\'t heard much, so I wanted to reach out and check if there was additional information needed or questions you had.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nLooking forward to hearing your thoughts.</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n-Jeremy</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"Signature\" class=\"elementToProof\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<table id=\"table_0\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: white; box-sizing: border-box; border-collapse: collapse; border-spacing: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td rowspan=\"5\" style=\"padding: 0.75pt; width: 88.5pt; height: 16.5pt;\">\r\n<div class=\"elementToProof\" style=\"text-align: center; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<a href=\"https://strategic-logix.com/\" title=\"https://strategic-logix.com/\" style=\"text-decoration: none;\"><img id=\"image_1\" width=\"98\" height=\"113\" style=\"width: 98.0579px; height: 113px; max-width: 767px;\" data-outlook-trace=\"F:1|T:1\" src=\"cid:a642b8ce-bf48-4fd1-8975-71d757f0d8d7\"></a></div>\r\n</td>\r\n<td style=\"padding: 0.75pt; width: 219pt; height: 16.5pt;\">\r\n<p class=\"elementToProof\" style=\"line-height: normal; margin: 0in; font-family: Calibri, sans-serif; font-size: 11pt;\">\r\n<span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: black; background-color: white;\"><b>Jeremy Schnipke</b></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0.75pt; width: 88.5pt; height: 16.5pt;\">\r\n<p class=\"elementToProof\" style=\"line-height: normal; margin: 0in; font-family: Calibri, sans-serif; font-size: 11pt;\">\r\n<span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: black; background-color: white;\">Chief Executive Officer</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0.75pt; width: 88.5pt; height: 16.5pt;\">\r\n<p class=\"elementToProof\" style=\"line-height: normal; margin: 0in; font-family: Calibri, sans-serif; font-size: 11pt;\">\r\n<span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: black; background-color: white;\">Strategic Logix LLC</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0.75pt; width: 88.5pt; height: 16.5pt;\">\r\n<p class=\"elementToProof\" style=\"line-height: normal; margin: 0in; font-family: Calibri, sans-serif; font-size: 11pt;\">\r\n<span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: black; background-color: white;\">Mobile: 419-203-3215</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0.75pt; width: 88.5pt; height: 16.5pt;\">\r\n<p class=\"elementToProof\" style=\"line-height: normal; margin: 0in; font-family: Calibri, sans-serif; font-size: 11pt;\">\r\n<span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: black; background-color: white;\">jschnipke@strategic-logix.com</span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<div class=\"elementToProof\" style=\"line-height: 18pt; margin: 0in; font-family: Arial, sans-serif; font-size: 10pt; color: rgb(34, 34, 34);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"background-color: white; margin: 0in 0in 6pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Jeremy Schnipke &lt;jschnipke@strategic-logix.com&gt;<br>\r\n<b>Sent:</b> Tuesday, July 1, 2025 8:39 PM<br>\r\n<b>To:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: One more thing…</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div dir=\"ltr\">Good evening Rick,\r\n<p>I think there may have been a miscommunication on our last call. We do not currently have $250M in contracted orders. That figure represents our weighted pipeline, reflecting projected conversion rates based on qualified opportunities to date.</p>\r\n<p>Our current capital situation is quite tight, which is why we’re exploring both a line of credit and a growth-focused cash infusion. As mentioned earlier, these projections were updated to show our anticipated trajectory heading into Q4, when significant\r\n government funding traditionally begins to flow.</p>\r\n<p>We’re looking for capital to provide runway for salaries and key growth expenditures ahead of these opportunities solidifying. There are also a few pinch points where funding could directly help us secure larger deals. For example, we began discussions today\r\n with DEVCOM regarding a potential 500,000-unit drone order, with the requirement that all manufacturing be US-based and completed within a year. While we can meet those production rates, the challenge is fulfilling the supplier prepayment requirements needed\r\n to hold our cost structure at scale.</p>\r\n<p>These figures are rough estimates, pulled together quickly based on our previous pipeline projections. We haven’t had the bandwidth yet to develop a more mature financial model, as our primary focus has been on closing sales profitably and innovating rapidly\r\n — which is exactly what has kept us competitive in a very fast-moving market.</p>\r\n<p>Some additional capital would also allow us to pay ourselves reasonable salaries so we can stay fully focused on scaling. Since the beginning, every dollar has gone straight back into growth and expansion, keeping us cash-flow positive but lean. We’re now\r\n hitting critical inflection points where meaningful capital could truly accelerate Strategic Logix, rather than staying on the slower organic path.</p>\r\n<p>If you’d like, I’d be happy to share more data on our past performance or talk through exactly how we arrived at the numbers in the pro forma. Just let me know, and I’d be glad to set up a call to walk through it together.</p>\r\n</div>\r\n<br>\r\n<div class=\"x_gmail_quote x_gmail_quote_container\">\r\n<div dir=\"ltr\" class=\"x_gmail_attr\">On Tue, Jul 1, 2025 at 7:54 PM Rick &lt;rick@mavrix.one&gt; wrote:<br>\r\n</div>\r\n<blockquote class=\"x_gmail_quote\" style=\"margin:0px 0px 0px 0.8ex; border-left:1px solid rgb(204,204,204); padding-left:1ex\">\r\n<div id=\"x_m_4448751562683407384bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px\">\r\nJeremy,</div>\r\n<div id=\"x_m_4448751562683407384bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px\">\r\nThanks for these. Interesting for sure.</div>\r\n<div id=\"x_m_4448751562683407384bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px\">\r\n<br>\r\n</div>\r\n<div id=\"x_m_4448751562683407384bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px\">\r\nOn our call, I believe you said that you have orders for approx. $250M?</div>\r\n<div id=\"x_m_4448751562683407384bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px\">\r\nAt a basic level and at the 25% profit margin you mentioned, that’s approx. $187.5M…</div>\r\n<div id=\"x_m_4448751562683407384bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px\">\r\nSo, I guess, I’m not sure why you need capital? Can you explain what I’m not seeing?</div>\r\n<div><br>\r\n</div>\r\n<div>Thanks again,</div>\r\n<div>Rick<br>\r\n</div>\r\n<div>\r\n<div id=\"x_m_4448751562683407384bloop_sign_1751413738034366976\"><br>\r\n</div>\r\n<div id=\"x_m_4448751562683407384bloop_sign_1751413738034366976\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\"></div>\r\n</div>\r\n<br>\r\n<p>On June 30, 2025 at 11:45:59 PM, Jeremy Schnipke (<a href=\"mailto:jschnipke@strategic-logix.com\" target=\"_blank\">jschnipke@strategic-logix.com</a>) wrote:</p>\r\n<blockquote type=\"cite\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<p>Rick,</p>\r\n<p>As promised, attached is a rough Pro Forma. We’ve included estimates for our expected hires as well as projections for converting our current pipeline.</p>\r\n<p>For clarity, we have modeled in drone orders that are currently logged, but have not included any reorders or speculative repeat orders at this point. While we expect reorders to become a significant revenue stream, there isn’t yet enough data to reliably\r\n estimate their timing or frequency, since most organizations are still working through their initial purchases.</p>\r\n<p>We did secure a couple of significant wins this afternoon, and we anticipate conversion of several major deals in the near term. This is supported by our collaboration with another company to help address sticking points with DLA and other primary procurement\r\n channels.</p>\r\n<p>The projected figures you see are mostly based on recurring small-unit purchases. These transactions tend to provide steady, consistent cash flow and form the backbone of our client relationships, even if they aren’t the largest deals.</p>\r\n<p>Please let me know if you have any questions or would like to talk through our assumptions in more detail — happy to walk through them anytime.</p>\r\n<div></div>\r\n</div>\r\n<br>\r\n<div class=\"x_gmail_quote\">\r\n<div dir=\"ltr\" class=\"x_gmail_attr\">On Mon, Jun 30, 2025 at 2:36 PM Rick &lt;rick@mavrix.one&gt; wrote:<br>\r\n</div>\r\n<blockquote class=\"x_gmail_quote\" style=\"margin:0px 0px 0px 0.8ex; border-left:1px solid rgb(204,204,204); padding-left:1ex\">\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">There was mention of one drone order at $48M.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Can you verify that order or share a somewhat&nbsp;</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">redacted version of that as a scanned image?</div>\r\n<div><br>\r\n</div>\r\nIt helps build credibility.\r\n<div>Thanks,</div>\r\n<div>Rick</div>\r\n<div><br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\"></div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n<div><br clear=\"all\">\r\n</div>\r\n<div><br>\r\n</div>\r\n<span class=\"x_gmail_signature_prefix\">-- </span><br>\r\n<div dir=\"ltr\" class=\"x_gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p><strong>Sincerely,</strong></p>\r\n<p>Jeremy Schnipke<br>\r\nChief Executive Officer, Strategic Logix LLC<br>\r\nMobile: 419-203-3215<br>\r\n<a rel=\"noopener\">jschnipke@strategic-logix.com</a></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</blockquote>\r\n</div>\r\n<div><br clear=\"all\">\r\n</div>\r\n<div><br>\r\n</div>\r\n<span class=\"x_gmail_signature_prefix\">-- </span><br>\r\n<div dir=\"ltr\" class=\"x_gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p><strong>Sincerely,</strong></p>\r\n<p>Jeremy Schnipke<br>\r\nChief Executive Officer, Strategic Logix LLC<br>\r\nMobile: 419-203-3215<br>\r\n<a rel=\"noopener\">jschnipke@strategic-logix.com</a></p>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Good Afternoon Rick,\r\n\r\nI haven\'t heard much, so I wanted to reach out and check if there was additional information needed or questions you had.\r\n\r\nLooking forward to hearing your thoughts.\r\n\r\n-Jeremy\r\n\r\n\r\n[cid:a642b8ce-bf48-4fd1-8975-71d757f0d8d7]<https://strategic-logix.com/>\r\n\r\nJeremy Schnipke\r\n\r\nChief Executive Officer\r\n\r\nStrategic Logix LLC\r\n\r\nMobile: 419-203-3215\r\n\r\njschnipke@strategic-logix.com\r\n\r\n\r\n\r\n________________________________\r\nFrom: Jeremy Schnipke <jschnipke@strategic-logix.com>\r\nSent: Tuesday, July 1, 2025 8:39 PM\r\nTo: Rick <rick@mavrix.one>\r\nSubject: Re: One more thing…\r\n\r\nGood evening Rick,\r\n\r\nI think there may have been a miscommunication on our last call. We do not currently have $250M in contracted orders. That figure represents our weighted pipeline, reflecting projected conversion rates based on qualified opportunities to date.\r\n\r\nOur current capital situation is quite tight, which is why we’re exploring both a line of credit and a growth-focused cash infusion. As mentioned earlier, these projections were updated to show our anticipated trajectory heading into Q4, when significant government funding traditionally begins to flow.\r\n\r\nWe’re looking for capital to provide runway for salaries and key growth expenditures ahead of these opportunities solidifying. There are also a few pinch points where funding could directly help us secure larger deals. For example, we began discussions today with DEVCOM regarding a potential 500,000-unit drone order, with the requirement that all manufacturing be US-based and completed within a year. While we can meet those production rates, the challenge is fulfilling the supplier prepayment requirements needed to hold our cost structure at scale.\r\n\r\nThese figures are rough estimates, pulled together quickly based on our previous pipeline projections. We haven’t had the bandwidth yet to develop a more mature financial model, as our primary focus has been on closing sales profitably and innovating rapidly — which is exactly what has kept us competitive in a very fast-moving market.\r\n\r\nSome additional capital would also allow us to pay ourselves reasonable salaries so we can stay fully focused on scaling. Since the beginning, every dollar has gone straight back into growth and expansion, keeping us cash-flow positive but lean. We’re now hitting critical inflection points where meaningful capital could truly accelerate Strategic Logix, rather than staying on the slower organic path.\r\n\r\nIf you’d like, I’d be happy to share more data on our past performance or talk through exactly how we arrived at the numbers in the pro forma. Just let me know, and I’d be glad to set up a call to walk through it together.\r\n\r\nOn Tue, Jul 1, 2025 at 7:54 PM Rick <rick@mavrix.one> wrote:\r\nJeremy,\r\nThanks for these. Interesting for sure.\r\n\r\nOn our call, I believe you said that you have orders for approx. $250M?\r\nAt a basic level and at the 25% profit margin you mentioned, that’s approx. $187.5M…\r\nSo, I guess, I’m not sure why you need capital? Can you explain what I’m not seeing?\r\n\r\nThanks again,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn June 30, 2025 at 11:45:59 PM, Jeremy Schnipke (jschnipke@strategic-logix.com<mailto:jschnipke@strategic-logix.com>) wrote:\r\n\r\nRick,\r\n\r\nAs promised, attached is a rough Pro Forma. We’ve included estimates for our expected hires as well as projections for converting our current pipeline.\r\n\r\nFor clarity, we have modeled in drone orders that are currently logged, but have not included any reorders or speculative repeat orders at this point. While we expect reorders to become a significant revenue stream, there isn’t yet enough data to reliably estimate their timing or frequency, since most organizations are still working through their initial purchases.\r\n\r\nWe did secure a couple of significant wins this afternoon, and we anticipate conversion of several major deals in the near term. This is supported by our collaboration with another company to help address sticking points with DLA and other primary procurement channels.\r\n\r\nThe projected figures you see are mostly based on recurring small-unit purchases. These transactions tend to provide steady, consistent cash flow and form the backbone of our client relationships, even if they aren’t the largest deals.\r\n\r\nPlease let me know if you have any questions or would like to talk through our assumptions in more detail — happy to walk through them anytime.\r\n\r\nOn Mon, Jun 30, 2025 at 2:36 PM Rick <rick@mavrix.one> wrote:\r\nThere was mention of one drone order at $48M.\r\nCan you verify that order or share a somewhat\r\nredacted version of that as a scanned image?\r\n\r\nIt helps build credibility.\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\n--\r\n\r\nSincerely,\r\n\r\nJeremy Schnipke\r\nChief Executive Officer, Strategic Logix LLC\r\nMobile: 419-203-3215\r\njschnipke@strategic-logix.com\r\n\r\n\r\n--\r\n\r\nSincerely,\r\n\r\nJeremy Schnipke\r\nChief Executive Officer, Strategic Logix LLC\r\nMobile: 419-203-3215\r\njschnipke@strategic-logix.com\r\n',0,0,0,0,0,0,'2025-07-11 16:42:36','2025-12-09 19:13:44','2025-12-09 19:13:44','2025-12-09 19:13:44',NULL,NULL,NULL),
(456,4,'<E102008F-185140E07559DEE7-7859970C@shopify.com>',NULL,NULL,'Verify your email address','mailer@shopify.com','Shopify','<!DOCTYPE html><html lang=\"en\" dir=\"ltr\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\r\n  <!-- Yahoo will strip this. Fixes yahoo app not being mobile responsive -->\r\n<style>@font-face {\r\nfont-family: \"ShopifySans\"; src: url(\'https://cdn.shopify.com/shopify-marketing_assets/static/ShopifySans--light.woff2\') format(\"woff2\"); font-style: normal; font-weight: 300;\r\n}\r\n@font-face {\r\nfont-family: \"ShopifySans\"; src: url(\'https://cdn.shopify.com/shopify-marketing_assets/static/ShopifySans--regular.woff2\') format(\"woff2\"); font-style: normal; font-weight: 400;\r\n}\r\n@font-face {\r\nfont-family: \"ShopifySans\"; src: url(\'https://cdn.shopify.com/shopify-marketing_assets/static/ShopifySans--medium.woff2\') format(\"woff2\"); font-style: normal; font-weight: 500;\r\n}\r\n@font-face {\r\nfont-family: \"ShopifySans\"; src: url(\'https://cdn.shopify.com/shopify-marketing_assets/static/ShopifySans--bold.woff2\') format(\"woff2\"); font-style: normal; font-weight: 700;\r\n}\r\n@font-face {\r\nfont-family: \"ShopifySans\"; src: url(\'https://cdn.shopify.com/shopify-marketing_assets/static/ShopifySans--black.woff2\') format(\"woff2\"); font-style: normal; font-weight: 900;\r\n}\r\n</style>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/><meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"/><meta name=\"x-apple-disable-message-reformatting\"/><meta name=\"color-scheme\" content=\"light dark\"/><meta name=\"supported-color-schemes\" content=\"light dark\"/><meta name=\"format-detection\" content=\"telephone=no, date=no, address=no, email=no, url=no\"/><title>Shopify</title><style data-premailer=\"ignore\">\r\n    :root {\r\n      color-scheme: light dark;\r\n    }\r\n  </style><style type=\"text/css\" data-premailer=\"ignore\">\r\n    @font-face {\r\n      font-family: \'Inter\';\r\n      font-weight: 100 900;\r\n      font-display: swap;\r\n      font-style: normal;\r\n      font-named-instance: \'Regular\';\r\n      src: url(\"https://cdn.shopify.com/static/fonts/inter/Inter-roman.var.woff2\") format(\"woff2\");\r\n    }\r\n\r\n    html,\r\n    body {\r\n      margin: 0 auto !important;\r\n      padding: 0 !important;\r\n      height: 100% !important;\r\n      width: 100% !important;\r\n    }\r\n\r\n    /* Paragraph reset */\r\n    p {\r\n      margin: 0;\r\n      padding: 0;\r\n    }\r\n\r\n    /* Header reset */\r\n    h1,\r\n    h2,\r\n    h3,\r\n    h4,\r\n    h5,\r\n    h6 {\r\n      display: block;\r\n      margin: 0;\r\n      padding: 0;\r\n    }\r\n\r\n    /* Image reset */\r\n    img,\r\n    a img {\r\n      border: 0;\r\n      height: auto;\r\n      outline: none;\r\n      text-decoration: none;\r\n    }\r\n\r\n    /* Better superscript */\r\n    sup {\r\n      font-size: 66%;\r\n      line-height: 1;\r\n      vertical-align: top;\r\n      mso-text-raise: 30%;\r\n    }\r\n\r\n    /* Default web font \'ShopifySans\' and fallback sequency */\r\n    *,\r\n    body,\r\n    td,\r\n    h1,\r\n    h2,\r\n    h3,\r\n    h4,\r\n    p,\r\n    span {\r\n      font-family: \'ShopifySans\', Helvetica, Arial, sans-serif !important;\r\n    }\r\n\r\n    /* Force correct font size */\r\n    * {\r\n      -ms-text-size-adjust: 100%;\r\n      -webkit-text-size-adjust: 100%;\r\n      text-rendering: optimizeLegibility;\r\n      -webkit-font-smoothing: antialiased;\r\n    }\r\n\r\n    /* Prevent Outlook extra spacing */\r\n    table,\r\n    td {\r\n      mso-table-lspace: 0pt !important;\r\n      mso-table-rspace: 0pt !important;\r\n      mso-line-height-rule: exactly;\r\n      border-collapse: collapse !important;\r\n    }\r\n\r\n    /* Fix webkit padding */\r\n    table {\r\n      border-spacing: 0 !important;\r\n      border-collapse: collapse !important;\r\n      table-layout: fixed !important;\r\n    }\r\n\r\n    /* What it does:Prevents Windows 10 Mail from underlining links despite inline CSS. Styles for underlined links should be inline. */\r\n    a {\r\n      text-decoration: none;\r\n      color: #0A0B0D;\r\n    }\r\n\r\n    /* Fix image rendering in IE */\r\n    img {\r\n      -ms-interpolation-mode: bicubic;\r\n    }\r\n\r\n    /* What it does:A work-around for email clients meddling in triggered links. */\r\n    a[x-apple-data-detectors],\r\n    /* iOS */\r\n    .unstyle-auto-detected-links a,\r\n    .aBn {\r\n      border-bottom: 0 !important;\r\n      cursor: default !important;\r\n      color: inherit !important;\r\n      text-decoration: none !important;\r\n      font-size: inherit !important;\r\n      font-family: inherit !important;\r\n      font-weight: inherit !important;\r\n      line-height: inherit !important;\r\n    }\r\n\r\n    /* What it does:Prevents Gmail from changing the text color in conversation threads. */\r\n    .im {\r\n      color: inherit !important;\r\n    }\r\n\r\n    /* What it does:Prevents Gmail from displaying a download button on large, non-linked images. */\r\n    u+img+div {\r\n      display: none !important;\r\n      opacity: 0.01 !important;\r\n    }\r\n\r\n    /* Center your email in Outlook.com */\r\n    .ExternalClass {\r\n      width: 100%;\r\n    }\r\n\r\n    .ExternalClass,\r\n    .ExternalClass p,\r\n    .ExternalClass span,\r\n    .ExternalClass font,\r\n    .ExternalClass td,\r\n    .ExternalClass div {\r\n      line-height: 100%;\r\n    }\r\n\r\n    img {\r\n      -ms-interpolation-mode: bicubic;\r\n    }\r\n\r\n    .yshortcuts a {\r\n      border-bottom: none !important;\r\n    }\r\n\r\n    .hide {\r\n      visibility: hidden;\r\n      display: none;\r\n      mso-hide: all;\r\n    }\r\n\r\n    .mbl-show {\r\n      display: none;\r\n      mso-hide: all;\r\n    }\r\n\r\n    #outlook a {\r\n      padding: 0;\r\n    }\r\n\r\n    /* Gmail link fix. Doesn\'t work for users who have images blocked by default */\r\n    u+#body a {\r\n      color: inherit;\r\n      text-decoration: none;\r\n      font-size: inherit;\r\n      font-family: inherit;\r\n      font-weight: inherit;\r\n      line-height: inherit;\r\n    }\r\n\r\n    /* Gmail Android fix to add proper spacing */\r\n    div>u+.body .gm-spacing {\r\n      line-height: 100% !important;\r\n      height: 100% !important;\r\n    }\r\n\r\n    u+.compliance a,\r\n    p {\r\n      color: inherit;\r\n      text-decoration: none;\r\n      font-size: inherit;\r\n      font-family: inherit;\r\n      font-weight: inherit;\r\n      line-height: inherit;\r\n    }\r\n\r\n    /* Gmail dark mode - prevents text color to be changed */\r\n    u+#body .gmail-blend-screen {\r\n      background: #000 !important;\r\n      mix-blend-mode: screen;\r\n    }\r\n\r\n    u+#body .gmail-blend-difference {\r\n      background: #000 !important;\r\n      mix-blend-mode: difference;\r\n    }\r\n\r\n    @media (prefers-color-scheme: dark) {\r\n\r\n      /* Shows Dark Mode-Only Content, Like Images */\r\n      .dark-img {\r\n        display: block !important;\r\n        width: auto !important;\r\n        overflow: visible !important;\r\n        float: none !important;\r\n        max-height: inherit !important;\r\n        max-width: inherit !important;\r\n        line-height: auto !important;\r\n        margin-top: 0px !important;\r\n        visibility: inherit !important;\r\n      }\r\n\r\n      /* Hides Light Mode-Only Content, Like Images */\r\n      .light-img {\r\n        display: none;\r\n        display: none !important;\r\n      }\r\n\r\n      /* Custom Dark Mode Background Color */\r\n      .darkmode {\r\n        background-color: #000000 !important;\r\n        background: #000000 !important;\r\n      }\r\n\r\n      .bgDarkmode {\r\n        background-color: #363836 !important;\r\n      }\r\n\r\n      .darkmode-white-border {\r\n        border-color: #ffffff !important;\r\n      }\r\n\r\n      /* Custom Dark Mode Font Colors */\r\n      h1,\r\n      h2,\r\n      h3,\r\n      h4,\r\n      p,\r\n      span,\r\n      li,\r\n      a,\r\n      b {\r\n        color: #ffffff !important;\r\n      }\r\n\r\n      .ForceDark {\r\n        color: #000000 !important;\r\n      }\r\n    }\r\n  </style><style data-premailer=\"ignore\">\r\n    /* MEDIA QUERIES */\r\n    @media screen and (max-width: 619px) {\r\n\r\n      .force-row,\r\n      .container {\r\n        width: 100% !important;\r\n        max-width: 100% !important;\r\n      }\r\n\r\n      /* What it does: Forces table cells into full-width rows. */\r\n      .mob-stack {\r\n        width: 100% !important;\r\n        display: block !important;\r\n        max-width: 100% !important;\r\n      }\r\n\r\n      .mbl-hide {\r\n        display: none !important;\r\n        font-size: 0;\r\n        max-height: 0;\r\n        line-height: 0;\r\n        padding: 0;\r\n        mso-hide: all;\r\n      }\r\n\r\n      .mbl-show {\r\n        display: inline-block !important;\r\n        max-height: none !important;\r\n      }\r\n\r\n      .mbl-center {\r\n        text-align: center !important;\r\n        margin: 0 auto !important;\r\n      }\r\n\r\n      .mbl-left {\r\n        text-align: left !important;\r\n      }\r\n\r\n      .mbl-right {\r\n        text-align: right !important;\r\n      }\r\n\r\n      .gmail-fix a {\r\n        color: #004C3F !important;\r\n        text-decoration: none !important;\r\n      }\r\n\r\n      .emailButton {\r\n        max-width: 600px !important;\r\n        width: 100% !important;\r\n      }\r\n\r\n      .emailButton a {\r\n        display: block !important;\r\n        font-size: 18px !important;\r\n      }\r\n\r\n      /* Similar setup to Bootstrap spacing classes m - for classes that set margin p - for classes that set padding t - for classes that set margin-top or padding-top b - for classes that set margin-bottom or padding-bottom l - for classes that set margin-left or padding-left r - for classes that set margin-right or padding-right x - for classes that set both *-left and *-right y - for classes that set both *-top and *-bottom blank - for classes that set a margin or padding on all 4 sides of the element */\r\n      .mx-2 {\r\n        margin-left: 24px !important;\r\n        margin-right: 24px !important;\r\n      }\r\n\r\n      .px-0 {\r\n        padding-right: 0 !important;\r\n        padding-left: 0 !important\r\n      }\r\n\r\n      .px-1 {\r\n        padding-right: 16px !important;\r\n        padding-left: 16px !important\r\n      }\r\n\r\n      .px-2 {\r\n        padding-right: 24px !important;\r\n        padding-left: 24px !important\r\n      }\r\n\r\n      .px-3 {\r\n        padding-right: 30px !important;\r\n        padding-left: 30px !important\r\n      }\r\n\r\n      .px-4 {\r\n        padding-right: 40px !important;\r\n        padding-left: 40px !important\r\n      }\r\n\r\n      .px-5 {\r\n        padding-right: 50px !important;\r\n        padding-left: 50px !important\r\n      }\r\n\r\n      .px-6 {\r\n        padding-right: 64px !important;\r\n        padding-left: 64px !important\r\n      }\r\n\r\n      .py-0 {\r\n        padding-top: 0 !important;\r\n        padding-bottom: 0 !important\r\n      }\r\n\r\n      .py-1 {\r\n        padding-top: 10px !important;\r\n        padding-bottom: 10px !important\r\n      }\r\n\r\n      .py-2 {\r\n        padding-top: 24px !important;\r\n        padding-bottom: 24px !important\r\n      }\r\n\r\n      .py-3 {\r\n        padding-top: 30px !important;\r\n        padding-bottom: 30px !important\r\n      }\r\n\r\n      .py-4 {\r\n        padding-top: 40px !important;\r\n        padding-bottom: 40px !important\r\n      }\r\n\r\n      .py-5 {\r\n        padding-top: 50px !important;\r\n        padding-bottom: 50px !important\r\n      }\r\n\r\n      .py-6 {\r\n        padding-top: 64px !important;\r\n        padding-bottom: 64px !important\r\n      }\r\n\r\n      .pt-0 {\r\n        padding-top: 0 !important\r\n      }\r\n\r\n      .pt-1 {\r\n        padding-top: 10px !important\r\n      }\r\n\r\n      .pt-2 {\r\n        padding-top: 24px !important\r\n      }\r\n\r\n      .pt-3 {\r\n        padding-top: 30px !important\r\n      }\r\n\r\n      .pt-4 {\r\n        padding-top: 40px !important\r\n      }\r\n\r\n      .pt-5 {\r\n        padding-top: 50px !important\r\n      }\r\n\r\n      .pt-6 {\r\n        padding-top: 64px !important;\r\n      }\r\n\r\n      .pb-0 {\r\n        padding-bottom: 0 !important\r\n      }\r\n\r\n      .pb-1 {\r\n        padding-bottom: 10px !important\r\n      }\r\n\r\n      .pb-2 {\r\n        padding-bottom: 24px !important\r\n      }\r\n\r\n      .pb-3 {\r\n        padding-bottom: 30px !important\r\n      }\r\n\r\n      .pb-4 {\r\n        padding-bottom: 40px !important\r\n      }\r\n\r\n      .pb-5 {\r\n        padding-bottom: 50px !important\r\n      }\r\n\r\n      .pb-6 {\r\n        padding-bottom: 64px !important;\r\n      }\r\n\r\n      .pr-0 {\r\n        padding-right: 0 !important\r\n      }\r\n\r\n      .pr-1 {\r\n        padding-right: 10px !important\r\n      }\r\n\r\n      .pr-2 {\r\n        padding-right: 24px !important\r\n      }\r\n\r\n      .pr-3 {\r\n        padding-right: 30px !important\r\n      }\r\n\r\n      .pr-4 {\r\n        padding-right: 40px !important\r\n      }\r\n\r\n      .pr-5 {\r\n        padding-right: 50px !important\r\n      }\r\n\r\n      .pr-6 {\r\n        padding-right: 64px !important;\r\n      }\r\n\r\n      .pl-0 {\r\n        padding-left: 0 !important\r\n      }\r\n\r\n      .pl-1 {\r\n        padding-left: 10px !important\r\n      }\r\n\r\n      .pl-2 {\r\n        padding-left: 24px !important\r\n      }\r\n\r\n      .pl-3 {\r\n        padding-left: 30px !important\r\n      }\r\n\r\n      .pl-4 {\r\n        padding-left: 40px !important\r\n      }\r\n\r\n      .pl-5 {\r\n        padding-left: 50px !important\r\n      }\r\n\r\n      .pl-6 {\r\n        padding-left: 64px !important;\r\n      }\r\n\r\n      .pl-8 {\r\n        padding-left: 80px !important;\r\n      }\r\n    }\r\n\r\n    @media only screen and (max-width: 480px) {\r\n      .FluidImage {\r\n        height: auto !important;\r\n        max-width: 231px !important;\r\n        width: 100% !important;\r\n      }\r\n    }\r\n  </style></head>\r\n\r\n\r\n  \r\n  \r\n  <!-- So that mobile will display zoomed in -->\r\n  \r\n  <!-- enable media queries for windows phone 8 -->\r\n  \r\n  <!-- fixes email not full width ios gmail -->\r\n  \r\n  \r\n  <!-- Enables Dark Mode in email client user agents -->\r\n  \r\n  <!-- Prevent email clients automatically detecting and generating links out of phone numbers, dates, addresses, email addresses and url\'s -->\r\n  <!-- [if (gte mso 9)|(IE)]><! -->\r\n  \r\n  <!-- <![endif] -->\r\n  <!-- External style sheet for Shopify Sans typography || mso is to prevent Outlook to fallback to Times New Roman -->\r\n  \r\n  \r\n  \r\n  \r\n  \r\n  <!--[if gte mso 9]>\r\n      <xml>\r\n        <o:OfficeDocumentSettings>\r\n          <o:AllowPNG />\r\n          <o:PixelsPerInch>96</o:PixelsPerInch>\r\n        </o:OfficeDocumentSettings>\r\n      </xml>\r\n      <style type=\"text/css\">\r\n        body,table,td,div,p,span,a,strong,h1,h2,h3,h4,h5,h6 {\r\n          font-family: Arial, sans-serif !important;\r\n        }\r\n        table {\r\n          border-collapse: collapse !important;\r\n        }\r\n        sup {\r\n          font-size: 100% !important;\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n\r\n\r\n<body id=\"body\" class=\"body\" style=\"margin: 0; padding: 0;\" bgcolor=\"#ffffff\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">\r\n  \r\n\r\n  <div style=\"display: none;\" id=\"preheader-text-container\">\r\n    <div id=\"preheader-text\"></div>\r\n    <div id=\"preheader-text-spacer\">\r\n       ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n       ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n       ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n       ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n       ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n       ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n       ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n       ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n       ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n       ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n       ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n       ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n       ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n       ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n       ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n    </div>\r\n  </div>\r\n\r\n  <table role=\"Newsletter\" aria-roledescription=\"email\" aria-label=\"Shopify\" lang=\"en\" dir=\"ltr\" border=\"0\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" bgcolor=\"#ffffff\" id=\"ix5jf\" class=\"editorContainer\" style=\"font-size: max(16px, 1rem);\">\r\n    <tbody>\r\n      <tr>\r\n        <td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" id=\"ihqf2\" style=\"\">\r\n          <div id=\"ibqt1\" style=\"max-width: 620px; margin: 0 auto;\">\r\n            <!--[if (gte mso 9)|(IE)]>\r\n                <table role=\"presentation\" width=\"620\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                <tr>\r\n                  <td valign=\"top\">\r\n              <![endif]-->\r\n            <table role=\"presentation\" border=\"0\" width=\"620\" cellpadding=\"0\" cellspacing=\"0\" id=\"imbfw\" class=\"container editorContainer\" style=\"width: 620px; max-width: 620px;\">\r\n              <tbody>\r\n                <tr>\r\n                  <!-- START CONTENT -->\r\n                  <!-- ADD YOUR MODULES IN THE TD BELOW -->\r\n                  <td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" background=\"https://cdn.shopify.com/b/shopify-mozart-production-messages/byuc8ihjwlv25vflx3tvv3gzmsf5.png\" id=\"irlmt\" class=\"contentContainer\" style=\"\">\r\n                    <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" id=\"i3dga\" style=\"background: no-repeat top / cover;\" background=\"https://cdn.shopify.com/b/shopify-mozart-production-messages/byuc8ihjwlv25vflx3tvv3gzmsf5.png\">\r\n                      <tbody>\r\n                        <tr>\r\n                          <td>\r\n                            <!-- Header section -->\r\n                            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" id=\"ik89x\" class=\"header\" style=\"width: 100%;\">\r\n                              <tbody>\r\n                                <tr>\r\n                                  <td align=\"center\" id=\"ilngn\" class=\"px-2 darkmode\" style=\"padding: 0px 40px;\">\r\n                                    <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td align=\"center\" height=\"16\" id=\"ifdt7n\" style=\"max-height: 16px; font-size: 0px; line-height: 16px;\"></td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                    <a alt=\"Shopify\" href=\"https://www.shopify.com?utm_source=mozart&amp;utm_medium=email\" target=\"_blank\" style=\"text-decoration: none !important; color: #005BD3 !important;\"><img alt=\"Shopify Logo\" src=\"https://cdn.shopify.com/static/email-modules-library/img/LogoPrimary_light.png\" width=\"140\" id=\"ieiovy\" class=\"light-img\" style=\"width: 140px; height: auto; display: block; outline: none; border-style: none; border-width: 0;\"/>\r\n                                      <!--\r\n                                          The following Dark Mode logo image is hidden with MSO conditional code and inline CSS, but will be revealed once Dark Mode is triggered\r\n                                        -->\r\n                                      <!-- [if !mso]><! -->\r\n                                      <div id=\"i0v0br\" class=\"dark-img\" style=\"display: none; overflow: hidden; width: 0px; max-height: 0px; max-width: 0px; line-height: 0px; visibility: hidden;\">\r\n                                        <img alt=\"Shopify Logo\" src=\"https://cdn.shopify.com/static/email-modules-library/img/ShopifyLogo_Primary_Trans.png\" width=\"140\" id=\"ifs2ew\" style=\"width: 140px; height: auto; display: block; outline: none; border-style: none; border-width: 0;\"/>\r\n                                      </div>\r\n                                      <!-- <![endif] -->\r\n                                    </a>\r\n                                    <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td align=\"center\" height=\"16\" id=\"i5fhhe\" style=\"max-height: 16px; font-size: 0px; line-height: 16px;\"></td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                  </td>\r\n                                </tr>\r\n                              </tbody>\r\n                            </table>\r\n                            <!-- Rest of the content remains the same -->\r\n                            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" id=\"ibied\" class=\"hero\" style=\"width: 100%;\">\r\n                              <!-- START HC204 -->\r\n                              <tbody>\r\n                                <tr>\r\n                                  <td id=\"igbsf\" class=\"px-2 darkmode\" style=\"padding: 0px 40px;\" align=\"center\">\r\n                                    <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td align=\"center\" height=\"32\" id=\"i0kwjq\" style=\"max-height: 32px; font-size: 0px; line-height: 32px;\"></td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                    <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td align=\"center\" height=\"8\" id=\"i5nprk\" style=\"max-height: 8px; font-size: 0px; line-height: 8px;\"></td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                    <h1 id=\"ib3ilf\" style=\"color: #0A0B0D; font-feature-settings: &#39;ss03&#39; on; font-family: &#39;Inter Variable&#39;, &#39;ShopifySans&#39;, Helvetica, Arial, sans-serif; font-size: 36px; font-style: normal; font-weight: 330; line-height: 40px; letter-spacing: 0px;\" align=\"center\">\r\n                                      Welcome to Shopify\r\n                                    </h1>\r\n                                    <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td align=\"center\" height=\"16\" id=\"irkajk\" style=\"max-height: 16px; font-size: 0px; line-height: 16px;\"></td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                    <p id=\"igse3e\" style=\"font-size: 16px; font-style: normal; font-weight: 400; line-height: 24px; color: #1F2124; font-family: &#39;ShopifySans&#39;, Helvetica, Arial, sans-serif;\">\r\n                                      You’re receiving this message because you recently signed up for a Shopify account.\r\n                                    </p>\r\n                                  </td>\r\n                                </tr>\r\n                                <tr>\r\n                                  <td id=\"igbsf-2\" class=\"px-2 darkmode\" style=\"padding: 0px 40px;\" align=\"center\">\r\n                                    <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td align=\"center\" height=\"32\" id=\"i0kwjq-2\" style=\"max-height: 32px; font-size: 0px; line-height: 32px;\"></td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                    <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td align=\"center\" height=\"8\" id=\"i5nprk-2\" style=\"max-height: 8px; font-size: 0px; line-height: 8px;\"></td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                    <h2 id=\"b3ilf\" style=\"font-size: 22px; line-height: 26px; color: #0A0B0D; font-family: &#39;ShopifySans&#39;, ShopifySans, Helvetica, Arial, sans-serif; font-weight: 400;\">\r\n                                      Confirm your email by clicking the button below. \r\n                                    </h2>\r\n                                    <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td align=\"center\" height=\"16\" id=\"irkak\" style=\"max-height: 16px; font-size: 0px; line-height: 16px;\"></td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                    <p id=\"igsee\" style=\"font-size: 16px; font-style: normal; font-weight: 400; line-height: 24px; color: #1F2124; font-family: &#39;ShopifySans&#39;, Helvetica, Arial, sans-serif;\">\r\n                                      This step adds extra security to your account by verifying you own this email.\r\n                                    </p>\r\n                                  </td>\r\n                                </tr>\r\n                                <tr>\r\n                                  <td id=\"ip0ueb\" class=\"darkmode px-2\">\r\n                                    <!-- This wrapper is needed for every CTA element in a component -->\r\n                                    <table align=\"center\" class=\"cta force-row\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td align=\"center\">\r\n                                            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n                                              <tbody>\r\n                                                <tr>\r\n                                                  <td align=\"center\" height=\"24\" id=\"ir5rqh\" style=\"max-height: 24px; font-size: 0px; line-height: 24px;\"></td>\r\n                                                </tr>\r\n                                              </tbody>\r\n                                            </table>\r\n                                            <!--[if mso]>\r\n                                                <table class=\"force-row\" role=\"presentation\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"border: 0; border-collapse: collapse; border-spacing: 0; mso-table-lspace: 0; mso-table-rspace: 0;\"><tr><td style=\"background-color: #000000; height: 52px; text-align: center;\">\r\n                                              <![endif]-->\r\n                                            <table role=\"presentation\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" id=\"idxexz\" align=\"center\" class=\"force-row\" style=\"border-collapse: collapse; border-spacing: 0; mso-table-lspace: 0; mso-table-rspace: 0; border-width: 0;\">\r\n                                              <tbody>\r\n                                                <tr>\r\n                                                  <td align=\"center\" id=\"ikgbrb\" style=\"height: 52px;\">\r\n                                                    <a href=\"https://accounts.shopify.com/email-verifications/UVOyRofvi8rk4e7zwNalOaNODoX2byY793HYYkIaXSfXq3omX7i5egqCRVf-e4s5Zqw\" target=\"_blank\" id=\"ip0le7\" class=\"darkmode-white-border\" style=\"text-align: center; white-space: normal; border-radius: 30px; display: block; background-color: #000000; text-decoration: none !important; color: #ffffff !important; mso-color-alt: #ffffff; font-size: 18px; line-height: 28px; font-family: &#39;ShopifySans&#39;, Helvetica, Arial, sans-serif; font-weight: 700; margin: 0px; padding: 12px 24px; border: 2px solid #000000;\">Confirm email</a>\r\n                                                  </td>\r\n                                                </tr>\r\n                                              </tbody>\r\n                                            </table>\r\n                                            <!--[if mso]> </td></tr></table> <![endif]-->\r\n                                            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n                                              <tbody>\r\n                                                <tr>\r\n                                                  <td align=\"center\" height=\"24\" id=\"iwaj3r\" style=\"max-height: 24px; font-size: 0px; line-height: 24px;\"></td>\r\n                                                </tr>\r\n                                              </tbody>\r\n                                            </table>\r\n                                          </td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n\r\n                                    <table class=\"utility\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width: 100%;\" width=\"100%\">\r\n                                      <!-- START UT1021 -->\r\n                                      <tbody><tr>\r\n                                        <td class=\"px-0 darkmode\" style=\"padding: 0px 40px;\" align=\"center\">\r\n                                          <p id=\"post-cta-text\" style=\"font-size: 16px; font-style: normal; font-weight: 400; line-height: 24px; color: #1F2124; font-family: &#39;ShopifySans&#39;, Helvetica, Arial, sans-serif;\">\r\n                                            or copy and paste this URL into your browser:<br/> <b style=\"color: #000000; word-break: break-all;\"> https://accounts.shopify.com/email-verifications/UVOyRofvi8rk4e7zwNalOaNODoX2byY793HYYkIaXSfXq3omX7i5egqCRVf-e4s5Zqw </b>\r\n                                          </p>\r\n                                          <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n                                            <tbody>\r\n                                              <tr>\r\n                                                <td align=\"center\" height=\"24\" id=\"i2z6s8\" style=\"max-height: 24px; font-size: 0px; line-height: 24px;\"></td>\r\n                                              </tr>\r\n                                            </tbody>\r\n                                          </table>\r\n                                        </td>\r\n                                      </tr>\r\n                                      <!-- END UT1021 -->\r\n                                    </tbody></table>\r\n\r\n\r\n\r\n                                  </td>\r\n                                </tr>\r\n                                <!-- END HC204 -->\r\n                              </tbody>\r\n                            </table>\r\n                            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" id=\"i15le6\" class=\"utility\" style=\"width: 100%;\">\r\n                              <!-- START UT1007 -->\r\n                              <tbody>\r\n                                <tr>\r\n                                  <td align=\"center\" id=\"ih23fx\" class=\"px-2 darkmode\" style=\"padding: 0px 40px;\">\r\n                                    <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td align=\"center\" height=\"12\" id=\"i9vi4s\" style=\"max-height: 12px; font-size: 0px; line-height: 12px;\"></td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                    <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td align=\"center\" height=\"12\" id=\"i0mvhk\" style=\"max-height: 12px; font-size: 0px; line-height: 12px;\"></td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                  </td>\r\n                                </tr>\r\n                                <!-- END UT1007 -->\r\n                              </tbody>\r\n                            </table>\r\n                            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" id=\"iber7f\" class=\"utility\" style=\"width: 100%;\">\r\n                              <!-- START UT1009 -->\r\n                              <tbody>\r\n                                <tr>\r\n                                  <td align=\"center\" id=\"i7fmwk\" class=\"px-2 darkmode\" style=\"padding: 0px 40px;\">\r\n                                    <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td align=\"center\" height=\"20\" id=\"ibq0q7\" style=\"max-height: 20px; font-size: 0px; line-height: 20px;\"></td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                    <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td align=\"center\" height=\"0\" id=\"irltai\" class=\"darkmode-white-border\" style=\"max-height: 0px; border-top-width: 1px; border-top-color: #E4E4E7; border-top-style: solid; font-size: 0px; line-height: 0px;\"></td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                    <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td align=\"center\" height=\"20\" id=\"i5xvt1\" style=\"max-height: 20px; font-size: 0px; line-height: 20px;\"></td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                  </td>\r\n                                </tr>\r\n                                <!-- END UT1009 -->\r\n                              </tbody>\r\n                            </table>\r\n                            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" id=\"iuk3vi\" class=\"utility\" style=\"width: 100%;\">\r\n                              <!-- START UT1022 -->\r\n                              <tbody>\r\n                                <tr>\r\n                                  <td id=\"iec12\" class=\"px-2 darkmode\" style=\"padding: 0px 40px;\" align=\"left\">\r\n                                    <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td align=\"center\" height=\"8\" id=\"i7yvlk\" style=\"max-height: 8px; font-size: 0px; line-height: 8px;\"></td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                    <p id=\"i82nyh\" style=\"font-size: 16px; font-style: normal; font-weight: 400; line-height: 24px; color: #1F2124; font-family: &#39;ShopifySans&#39;, Helvetica, Arial, sans-serif;\" align=\"center\">\r\n                                      This link will expire in 24 hours. If you have questions, <a href=\"https://help.shopify.com/en/\" style=\"text-decoration: none !important; color: #005BD3 !important;\" target=\"_blank\">we&#39;re here to help</a>.\r\n                                    </p>\r\n                                    <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td align=\"center\" height=\"16\" id=\"iamt55\" style=\"max-height: 16px; font-size: 0px; line-height: 16px;\"></td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                  </td>\r\n                                </tr>\r\n                                <!-- END UT1022 -->\r\n                              </tbody>\r\n                            </table>\r\n                            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" id=\"iber7f-2\" class=\"utility\" style=\"width: 100%;\">\r\n                              <!-- START UT1009 -->\r\n                              <tbody>\r\n                                <tr>\r\n                                  <td align=\"center\" id=\"i7fmw\" class=\"px-2 darkmode\" style=\"padding: 0px 40px;\">\r\n                                    <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td align=\"center\" height=\"20\" id=\"ibq0q7-2\" style=\"max-height: 20px; font-size: 0px; line-height: 20px;\"></td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                    <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td align=\"center\" height=\"0\" id=\"irltai-2\" class=\"darkmode-white-border\" style=\"max-height: 0px; border-top-width: 1px; border-top-color: #E4E4E7; border-top-style: solid; font-size: 0px; line-height: 0px;\"></td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                    <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td align=\"center\" height=\"20\" id=\"i5xvt1-2\" style=\"max-height: 20px; font-size: 0px; line-height: 20px;\"></td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                  </td>\r\n                                </tr>\r\n                                <!-- END UT1009 -->\r\n                              </tbody>\r\n                            </table>\r\n                            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" id=\"iuk3vi-2\" class=\"utility\" style=\"width: 100%;\">\r\n                              <!-- START UT1022 -->\r\n                              <tbody>\r\n                                <tr>\r\n                                  <td id=\"iec12-2\" class=\"px-2 darkmode\" style=\"padding: 0px 40px;\" align=\"left\">\r\n                                    <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td align=\"center\" height=\"16\" id=\"iamt55-2\" style=\"max-height: 16px; font-size: 0px; line-height: 16px;\"></td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                  </td>\r\n                                </tr>\r\n                                <!-- END UT1022 -->\r\n                              </tbody>\r\n                            </table>\r\n                            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" id=\"ibr78\" class=\"compliance\" style=\"width: 100%;\">\r\n                              <!-- START CM901 -->\r\n                              <tbody>\r\n                                <tr>\r\n                                  <td id=\"ingmb\" class=\"px-2 darkmode\" style=\"padding: 0px 40px;\" align=\"center\">\r\n                                    <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td align=\"center\" height=\"20\" id=\"i3ggj\" style=\"max-height: 20px; font-size: 0px; line-height: 20px;\"></td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                    <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td align=\"center\" height=\"20\" id=\"i9l56\" style=\"max-height: 20px; font-size: 0px; line-height: 20px;\"></td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                    <p id=\"i1q7e\" style=\"color: rgba(0,0,0,0.60); font-family: &#39;ShopifySans&#39;, Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: 400; line-height: 21px;\" align=\"center\">\r\n                                      © Shopify, 15‍1 O&#39;Con‍nor Str‍eet, Gro‍und fl‍oor,\r\n                                      <br/>\r\n                                      Ot‍tawa ON, K2P 2L8\r\n                                    </p>\r\n                                    <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td align=\"center\" height=\"20\" id=\"in69y\" style=\"max-height: 20px; font-size: 0px; line-height: 20px;\"></td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                    <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n                                      <tbody>\r\n                                        <tr>\r\n                                          <td align=\"center\" height=\"20\" id=\"i6wbc\" style=\"max-height: 20px; font-size: 0px; line-height: 20px;\"></td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                  </td>\r\n                                </tr>\r\n                                <!-- END CM901 -->\r\n                              </tbody>\r\n                            </table>\r\n                          </td>\r\n                        </tr>\r\n                      </tbody>\r\n                    </table>\r\n                  </td>\r\n                  <!-- END CONTENT -->\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n            <!--[if (gte mso 9)|(IE)]>\r\n                </td>\r\n                  </tr>\r\n                </table>\r\n              <![endif]-->\r\n          </div>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n\r\n\r\n</body></html>',' ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n\r\nShopify Logo\r\n\r\nShopify Logo\r\n\r\n\r\n( https://www.shopify.com?utm_source=mozart&utm_medium=email )\r\n\r\n******************\r\nWelcome to Shopify\r\n******************\r\n\r\nYou’re receiving this\r\nmessage because you recently signed up for a Shopify account.\r\n\r\n------------------------------------------------\r\nConfirm your email by clicking the button below.\r\n------------------------------------------------\r\n\r\nThis step adds extra\r\nsecurity to your account by verifying you own this email.\r\n\r\nConfirm email\r\n\r\n( https://accounts.shopify.com/email-verifications/UVOyRofvi8rk4e7zwNalOaNODoX2byY793HYYkIaXSfXq3omX7i5egqCRVf-e4s5Zqw )\r\n\r\n\r\nor copy and paste\r\nthis URL into your browser:\r\nhttps://accounts.shopify.com/email-verifications/UVOyRofvi8rk4e7zwNalOaNODoX2byY793HYYkIaXSfXq3omX7i5egqCRVf-e4s5Zqw\r\n\r\nThis link will expire in 24\r\nhours. If you have questions, we\'re here to help \r\n( https://help.shopify.com/en/ ).\r\n\r\n© Shopify, 15‍1\r\nO\'Con‍nor Str‍eet, Gro‍und fl‍oor,\r\n\r\nOt‍tawa ON, K2P 2L8',0,0,0,0,0,0,'2025-07-11 16:57:42','2025-12-09 19:13:44','2025-12-09 19:13:44','2025-12-09 19:13:44',NULL,NULL,NULL),
(457,4,'<E102008F-185141C575FDE41C-09FEBA1F@shopify.com>',NULL,NULL,'=?UTF-8?B?TGV04oCZcw==?= set up your new store','email@email.shopify.com','Shopify','<!DOCTYPE html><html lang=\"en\" dir=\"ltr\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><!-- Yahoo will strip this. Fixes yahoo app not being mobile responsive -->\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/><meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"/><meta name=\"x-apple-disable-message-reformatting\"/><meta name=\"color-scheme\" content=\"light dark\"/><meta name=\"supported-color-schemes\" content=\"light dark\"/><meta name=\"format-detection\" content=\"telephone=no, date=no, address=no, email=no, url=no\"/><link href=\"https://rsms.me/inter/inter.css\" rel=\"stylesheet\" type=\"text/css\"/><link href=\"https://cdn.shopify.com/static/fonts/ShopifySans-all.css\" rel=\"stylesheet\" type=\"text/css\"/><title>Shopify</title><style>:root{color-scheme:light dark;}\r\n</style><style type=\"text/css\">\r\nhtml,body{margin:0 auto!important;padding:0!important;height:100%!important;width:100%!important;}p{margin:0;padding:0;}h1,h2,h3,h4,h5,h6{display:block;margin:0;padding:0;}img,a img{border:0;height:auto;outline:none;text-decoration:none;}sup{font-size:66%;line-height:1;vertical-align:top;mso-text-raise:30%;}*,body,td,h1,h2,h3,h4,p,span{font-family:\'InterVariable\',\'Inter\',\'ShopifySans\',ShopifySans,Helvetica,Arial,sans-serif!important;}*{-ms-text-size-adjust:100%;\r\n-webkit-text-size-adjust:100%;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;}table,td{mso-table-lspace:0pt!important;mso-table-rspace:0pt!important;mso-line-height-rule:exactly;border-collapse:collapse!important;}table{border-spacing:0!important;border-collapse:collapse!important;table-layout:fixed!important;}a{text-decoration:none;color:#0A0B0D;}img{-ms-interpolation-mode:bicubic;}a[x-apple-data-detectors],.unstyle-auto-detected-links a,.aBn{border-bottom:0!important;\r\ncursor:default!important;color:inherit!important;text-decoration:none!important;font-size:inherit!important;font-family:inherit!important;font-weight:inherit!important;line-height:inherit!important;}.im{color:inherit!important;}u+img+div{display:none!important;opacity:0.01!important;}.ExternalClass{width:100%;}.ExternalClass,.ExternalClass p,.ExternalClass span,.ExternalClass font,.ExternalClass td,.ExternalClass div{line-height:100%;}img{-ms-interpolation-mode:bicubic;}.yshortcuts a{\r\nborder-bottom:none!important;}.hide{visibility:hidden;display:none;mso-hide:all;}.mbl-show{display:none;mso-hide:all;}#outlook a{padding:0;}u+#body a{color:inherit;text-decoration:none;font-size:inherit;font-family:inherit;font-weight:inherit;line-height:inherit;}div>u+.body .gm-spacing{line-height:100%!important;height:100%!important;}u+.compliance a,p{color:inherit;text-decoration:none;font-size:inherit;font-family:inherit;font-weight:inherit;line-height:inherit;}u+#body .gmail-blend-screen{\r\nbackground:#000!important;mix-blend-mode:screen;}u+#body .gmail-blend-difference{background:#000!important;mix-blend-mode:difference;}\r\n@media (prefers-color-scheme:dark){.dark-img{display:block!important;width:auto!important;overflow:visible!important;float:none!important;max-height:inherit!important;max-width:inherit!important;line-height:auto!important;margin-top:0px!important;visibility:inherit!important;}.light-img{display:none;display:none!important;}.darkmode{background-color:#000000!important;background:#000000!important;}.bgDarkmode{background-color:#363836!important;}.darkmode-white-border{border-color:#ffffff\r\n!important;}.darkmode_background{background-color:#000000!important;}h1,h2,h3,h4,p,span,li,a,b{color:#ffffff!important;}.ForceDark{color:#000000!important;} }\r\n</style><style>@media screen and (max-width:619px){.force-row,.container{width:100%!important;max-width:100%!important;}.mob-stack{width:100%!important;display:block!important;max-width:100%!important;}.mbl-hide{display:none!important;font-size:0;max-height:0;line-height:0;padding:0;mso-hide:all;}.mbl-show{display:inline-block!important;max-height:none!important;}.mbl-center{text-align:center!important;margin:0 auto!important;}.mbl-left{text-align:left!important;}.mbl-right{text-align:right!important;}\r\n.gmail-fix a{color:#004C3F!important;text-decoration:none!important;}.emailButton{max-width:600px!important;width:100%!important;}.emailButton a{display:block!important;font-size:18px!important;}.mx-2{margin-left:24px!important;margin-right:24px!important;}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:16px!important;padding-left:16px!important}.px-2{padding-right:24px!important;padding-left:24px!important}.px-3{padding-right:30px!important;padding-left:30px\r\n!important}.px-4{padding-right:40px!important;padding-left:40px!important}.px-5{padding-right:50px!important;padding-left:50px!important}.px-6{padding-right:64px!important;padding-left:64px!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:10px!important;padding-bottom:10px!important}.py-2{padding-top:24px!important;padding-bottom:24px!important}.py-3{padding-top:30px!important;padding-bottom:30px!important}.py-4{padding-top:40px!important;padding-bottom:40px\r\n!important}.py-5{padding-top:50px!important;padding-bottom:50px!important}.py-6{padding-top:64px!important;padding-bottom:64px!important}.pt-0{padding-top:0!important}.pt-1{padding-top:10px!important}.pt-2{padding-top:24px!important}.pt-3{padding-top:30px!important}.pt-4{padding-top:40px!important}.pt-5{padding-top:50px!important}.pt-6{padding-top:64px!important;}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:10px!important}.pb-2{padding-bottom:24px!important}.pb-3{padding-bottom:30px\r\n!important}.pb-4{padding-bottom:40px!important}.pb-5{padding-bottom:50px!important}.pb-6{padding-bottom:64px!important;}.pr-0{padding-right:0!important}.pr-1{padding-right:10px!important}.pr-2{padding-right:24px!important}.pr-3{padding-right:30px!important}.pr-4{padding-right:40px!important}.pr-5{padding-right:50px!important}.pr-6{padding-right:64px!important;}.pl-0{padding-left:0!important}.pl-1{padding-left:10px!important}.pl-2{padding-left:24px!important}.pl-3{padding-left:30px!important}\r\n.pl-4{padding-left:40px!important}.pl-5{padding-left:50px!important}.pl-6{padding-left:64px!important;}.pl-8{padding-left:80px!important;} }\r\n@media only screen and (max-width:480px){.FluidImage{height:auto!important;max-width:231px!important;width:100%!important;} }\r\n</style></head>\r\n\r\n\r\n<!-- So that mobile will display zoomed in -->\r\n<!-- enable media queries for windows phone 8 -->\r\n<!-- fixes email not full width ios gmail -->\r\n\r\n<!-- Enables Dark Mode in email client user agents -->\r\n<!-- Prevent email clients automatically detecting and generating links out of phone numbers, dates, addresses, email addresses and url\'s --><!-- [if (gte mso 9)|(IE)]><! -->\r\n\r\n<!--\r\n<![endif] --><!-- External style sheet for Shopify Sans typography || mso is to prevent Outlook to fallback to Times New Roman -->\r\n\r\n\r\n\r\n\r\n<!--[if gte mso 9]><xml><o:OfficeDocumentSettings><o:AllowPNG/><o:PixelsPerInch>96</o:PixelsPerInch></o:OfficeDocumentSettings></xml>\r\n<style type=\"text/css\">\r\nbody,table,td,div,p,span,a,strong,h1,h2,h3,h4,h5,h6{font-family:\'InterVariable\',\'Inter\',\'ShopifySans\',ShopifySans,Helvetica,Arial,sans-serif !important;}table{border-collapse:collapse !important;}sup{font-size:100% !important;}\r\n</style>\r\n<![endif]-->\r\n\r\n<body id=\"body\" class=\"body\" style=\"margin:0;padding:0;\" bgcolor=\"#ffffff\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\"><!-- 100% background wrapper (grey background) --><!-- 100% background wrapper (grey background) -->\r\n  <div id=\"iunyg\" style=\"display: none;\">\r\n    <!-- LOCALIZATION -->\r\n    \r\n\r\n    <!-- END LOCALIZATION -->\r\n    <!-- GA PARAMATERS -->\r\n    \r\n    <!-- END GA PARAMATERS -->\r\n    <!-- CONTENT -->\r\n    \r\n    \r\n    \r\n    \r\n\r\n    \r\n    <!-- END CONTENT -->\r\n  </div>  \r\n  <div style=\"display:none\" id=\"preheader-text-container\">\r\n    <div id=\"preheader-text\">Your free trial has started</div>\r\n    <div id=\"preheader-text-spacer\">  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n ﻿͏ </div></div>\r\n<table role=\"Newsletter\" aria-roledescription=\"email\" aria-label=\"Shopify\" lang=\"en\" dir=\"ltr\" border=\"0\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" bgcolor=\"#EFF1F4\" id=\"i83pg\" class=\"editorContainer\" style=\"font-size:medium;font-size:max(16px,1rem);\"><tbody><tr><td align=\"center\" valign=\"top\" bgcolor=\"#EFF1F4\" id=\"iytai\" style=\"background-color:#EFF1F4;\"><div id=\"ih7lw\" style=\"max-width:620px;margin-top:0;margin-bottom:0;margin-right:auto;margin-left:auto;\">\r\n<!--[if (gte mso 9)|(IE)]>\r\n<table role=\"presentation\" width=\"620\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td valign=\"top\">\r\n<![endif]-->\r\n<table role=\"presentation\" border=\"0\" width=\"620\" cellpadding=\"0\" cellspacing=\"0\" id=\"ikjwv\" class=\"container editorContainer\" style=\"width:620px;max-width:620px;\"><tbody><tr><!-- START CONTENT --><!-- ADD YOUR MODULES IN THE TD BELOW --><td align=\"center\" valign=\"top\" bgcolor=\"#EFF1F4\" id=\"iyu52\" class=\"contentContainer\" style=\"background-color:#EFF1F4;\">\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" id=\"i1evz\" class=\"header\" style=\"width:100%;\"><!-- START HD166 --><tbody><tr><td align=\"left\" width=\"50%\" id=\"ic04q\" class=\"pl-2 pr-0 darkmode\" style=\"padding:0px 40px;background-color:#ffffff;\">\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"16\" id=\"ibqtc\" style=\"max-height:16px;font-size:0px;line-height:16px;\">\r\n</td></tr></tbody></table> <a alt=\"Shopify\" href=\"https://mail.shopifysvc.com/_t/c/v3/AAAEywPPK35JDPqN3XnYYw9wYFvf3QrShiRrU_10yUgvQId7EeZK6CT6iQwmwi5SVC42NgG6btBoIbObBDRR3GvE9cGjbbF-NS9fuoqGVlb8uW6IQ7xxHDWtiVwuGWhVLwnX1NlULADJjtvzdq5xSSbGBF1nGcqjsEWDT9Fz_6P7roGh4btzy-4jWEGukJeDuBmAoDQHvT35VAus2JIoU44iH1ce0cksv9MzCVURro4AqVGr7J_2_YzHdTj7Rx9ILE5hhzDYQNN3TQf1fMC_84WhLEO29RWJtlg5tlJR3cz0-zuy4Qrkho1iu8laqYITt6RSyOnotfUPCEnhslIjUm6hK8M-OTQxvRIn3EDytYiBCUAmUWnoom9mMBdGegz6yMmIARLJxsqMtjmth311tHDJ3ruHFh_BMyljjk5B4lXN7pXnHeHNPtAeN3DfYZqM7wRRSNwMiIsZMZPFfZ8W9bzoNUpQcigR9rAOh3zgSfLTDA==\" target=\"_blank\"><img alt=\"Shopify Logo\" src=\"https://cdn.shopify.com/static/email-modules-library/img/LogoPrimary_light.png\" width=\"140\" id=\"izfl3\" class=\"light-img\" style=\"border-width:0;width:140px;height:auto;display:block;outline:none;border:none;\"/><!-- The following Dark Mode logo image is hidden with MSO conditional code and inline CSS, but will be revealed once Dark Mode is triggered\r\n--><!-- [if !mso]><! --><div id=\"ic8cz\" class=\"dark-img\" style=\"display:none;overflow:hidden;width:0px;max-height:0px;max-width:0px;line-height:0px;visibility:hidden;\"> <img alt=\"Shopify Logo\" src=\"https://cdn.shopify.com/static/email-modules-library/img/ShopifyLogo_Primary_Trans.png\" width=\"140\" id=\"iczb8\" style=\"border-width:0;width:140px;height:auto;display:block;outline:none;border:none;\"/></div><!--\r\n<![endif] --></a>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"16\" id=\"iob3n\" style=\"max-height:16px;font-size:0px;line-height:16px;\">\r\n</td></tr></tbody></table>\r\n</td><td width=\"1\" id=\"ilqot\" class=\"darkmode\" style=\"font-size:1px;min-width:1px;background-color:#ffffff;\"> \r\n</td><td align=\"right\" valign=\"middle\" width=\"50%\" id=\"ibqxi\" class=\"pl-0 pr-2 darkmode\" style=\"padding:0px 40px;background-color:#ffffff;vertical-align:middle;\">\r\n<!--[if mso]>\r\n<table class=\"force-row\" role=\"presentation\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:0;border-collapse:collapse;border-spacing:0;mso-table-lspace:0;mso-table-rspace:0;background-color:#E8EFF9\"><tr><td>\r\n<![endif]-->\r\n<table role=\"presentation\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" id=\"ik8xh\" style=\"border:0;border-collapse:collapse;border-spacing:0;mso-table-lspace:0;mso-table-rspace:0;\"><tbody><tr><td> <a href=\"https://mail.shopifysvc.com/_t/c/v3/AADuqU9_oWGEBzFzQF4G0E7dSyO4EbFm42xyijDYZwW4JSWseI7R4UDxoIH3eAt3IWFxisedJpEIovuZzWGJ2gCCmbg4mzdAJTX9ublnLOD7Xp_j33tiQGelyFPVsZhsrme8Nf0zOn0E_kxDJBYOphyvsd7aLPSoXwgtADwPMmQOjZK8vCT02y6o3Uyx69HiC3r9GgPBvQq29MVPp0mpkN42PFyU_sRZlF5qinr11KxGs5-N3b4-Z6W5GNrEftvKY1OKi_Xpdm_CuEFWhI7cqvXRzBdRcGk1DoqvEmdoe0r0wsVkjS7RgOlGYxttNzrPcsa7fy2z4W0hqAwOEa97f9RjTwzXTrVpQdOTUVHHAQfLGVfFoLpokO4xC0VeJ_zHLUhVPD_GnkYdMIIpuSnMZ-NAdNmCtI_SnaN_Q7Mvf_k6DBMjXBEvA-KgzDNy40rQK17uiS1wlMC85jW7lA_Lv_05dq0GU3LMkpRIZhzxY9YGb5Cw8Ptz6oBQEKCVbg==\" target=\"_blank\" id=\"i6znk\" class=\"darkmode-white-border darkmode\" style=\"text-align:center;white-space:nowrap;border-radius:30px;border:2px solid #E8EFF9;display:block;padding:12px 24px;background-color:#E8EFF9;margin:0px;text-decoration:\r\nnone;color:#000000;font-size:16px;line-height:24px;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:700;\"> Log in </a>\r\n</td></tr></tbody></table>\r\n<!--[if mso]>\r\n</td></tr></table>\r\n<![endif]-->\r\n</td></tr><!-- END HD166 --></tbody></table>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" id=\"id2eog\" class=\"hero\" style=\"width:100%;\"><!-- START HC204 --><tbody><tr><td id=\"igwaxq\" class=\"px-2 darkmode\" style=\"padding:0px 40px;background-color:#ffffff;text-align:center;\">\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"32\" id=\"iz7olc\" style=\"max-height:32px;font-size:0px;line-height:32px;\">\r\n</td></tr></tbody></table><h1 id=\"iblybf\" style=\"font-size:44px;line-height:48px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:400;letter-spacing:-2px;text-align:center;\"> Whatever you’re selling, we make it easier </h1>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"16\" id=\"ivnc5h\" style=\"max-height:16px;font-size:0px;line-height:16px;\">\r\n</td></tr></tbody></table>\r\n</td></tr><tr><td id=\"i8oyiz\" align=\"center\" class=\"darkmode\" style=\"background-color:#ffffff;\"> <a href=\"https://mail.shopifysvc.com/_t/c/v3/AABtLrNizMxox--z8EBcyMkjr2T_K04QNYLNcVkDIn9ymKUgnfJkFqRR5uAQXVm6w71_xNTedpCnZqt9rxoqotr5ztLG5mS6PZKiOxOr1Ukf522Y95NOVLTBgkuOlMWNmC7NS-nwoWg40kMMymai6eYOtipgZtiwd120qZzCmj4DHgMzyEmBMJCROkE7xlj2R_3w-MP96wLkSNZWQWlsSeXMIhY_QwuJXUeFASj3p8qUPNozzZGI2fK86tvyogmK6XAGlntv7t4llxInYY5S_3-O588QzRhXr3nn_dil4mERCAaeCenOMzhDQp1adB0NvqoPS8GJXvaUWYrO7j7I-MF_RYXSrFA8u-l67M3spwvjK6Bew0nFSkW5KCsNnhEdUpQBsP7BTs5Ih2N8rU4O8ycvtE8c5BrWgLFqje0TIe1dK1RXOAxmXCIR4IFCUQKQ5O3akNg6un-mmZuMqueoZngAHKrfQbmvTV2P4fWqjLlt095TIs6Z5Bd9HdMq8Q7irw==\" target=\"_blank\"><img src=\"https://cdn.shopify.com/b/shopify-mozart-production-messages/lirvlptmf1cz0slf889r81wwfq3p.png\" width=\"620\" alt=\"\" border=\"0\" id=\"ixtw1k\" style=\"max-width:620px;width:100%;border:0px;height:auto;vertical-align:middle;\"/></a>\r\n</td></tr>\r\n<tr>\r\n  <td id=\"igwaxq-2\" class=\"px-2 darkmode\" style=\"padding:0px 40px;background-color:#ffffff;text-align:center;\">\r\n    <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n      <tbody>\r\n        <tr>\r\n          <td align=\"center\" height=\"32\" id=\"iz7olc-2\" style=\"max-height:32px;font-size:0px;line-height:32px;\"></td>\r\n        </tr>\r\n      </tbody>\r\n    </table>\r\n    <p id=\"iv2qx5\" style=\"font-size:16px;line-height:22px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:400;\"> Millions of the world’s most successful brands choose Shopify, and like you, they all started with a new store. </p>\r\n    \r\n  </td>\r\n</tr>\r\n<tr>\r\n  <td id=\"imwt33\" class=\"darkmode\" style=\"padding:0px 40px;background-color:#ffffff;\">\r\n    <!-- This wrapper is needed for every CTA element in a component -->\r\n     <table align=\"center\" class=\"cta force-row\">\r\n      <tbody>\r\n        <tr>\r\n          <td align=\"center\">\r\n            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n              <tbody>\r\n                <tr>\r\n                  <td align=\"center\" height=\"16\" id=\"itg6hl\" style=\"max-height:16px;font-size:0px;line-height:16px;\"></td>\r\n                </tr>\r\n              </tbody>\r\n            </table>            \r\n            \r\n            <!--[if mso]>\r\n            <table class=\"force-row\" role=\"presentation\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:0;border-collapse:collapse;border-spacing:0;mso-table-lspace:0;mso-table-rspace:0;background-color:#000000\"><tr><td>\r\n            <![endif]-->\r\n            <table role=\"presentation\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" id=\"i41dm6\" class=\"force-row\" style=\"border:0;border-collapse:collapse;border-spacing:0;mso-table-lspace:0;mso-table-rspace:0;\">\r\n              <tbody>\r\n                <tr>\r\n                  <td>\r\n                    <a href=\"https://mail.shopifysvc.com/_t/c/v3/AAAlajQDe2n12t2MPMbE7WS_9rguCyGsuiKwzQlciErjMeLYt1rob67YlyVz67BUfZ7fvRxaMxT_9_2s6v30kkRt4r9MP2HTeuV1kpdnZQne_XDkpj-zHdOavp0MKCEDGfYPgGG9oo2PPXt6AjkI4RSJZS1pVSVdLtBmrTRdHY-bRw-ghTvF49I4Ekg5aVcf0JIRHpjd6wPM1pmGl2bIUOSFjYX-Zv5nX7I2Ak_SKrlmXCHp9RIc478Ts8AW7eQJ5vEHvD-NbVVgi26wISHt7RWDAjSfOQuXi9G4eZ0ZPnXrFmo2P8WpDQEZeDvSkcvCUak1ncGS63daxXjF8t5uuJhkHnChaYWjWaxYciaWZ5Gsj-07kZOR1S_d4wXbS4RKUzeRh3kBmSHw8XIva88sxEunwqYabhnS7JPHeHY7M5jZLoITA7pylhgszp6YTyZJD0c0rklgPfj84OmmppLIJXwNBz0i9UZ1u8dJWSvt0-aioCMFxQAn4TrrlDbvb7s=\" target=\"_blank\" id=\"i7wt2g\" class=\"darkmode-white-border\" style=\"text-align:center;white-space:normal;border-radius:30px;border:2px solid #000000;display:block;padding:12px 24px;background-color:#000000;margin:0px;text-decoration:none;color:#ffffff;font-size:18px;line-height:28px;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:700;\"> Go to your store \r\n                    </a>\r\n                  </td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n            <!--[if mso]>\r\n            </td></tr></table>\r\n            <![endif]-->\r\n            \r\n          </td>\r\n        </tr>\r\n      </tbody>\r\n    </table>\r\n    <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\">\r\n      <tbody>\r\n        <tr>\r\n          <td align=\"center\" height=\"48\" id=\"i3v4ei\" style=\"max-height:48px;font-size:0px;line-height:48px;\"></td>\r\n        </tr>\r\n      </tbody>\r\n    </table>\r\n  </td>\r\n</tr><!-- END HC204 --></tbody></table>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" id=\"ixm61l\" class=\"list\" style=\"width:100%;\"><!-- START LC502 --><tbody><tr><td align=\"center\" bgcolor=\"#FFFFFF\" background=\"https://cdn.shopify.com/b/shopify-mozart-production-messages/zdiwxcv7un7ifqxeo7xfc2z0c915.png\" id=\"iw8ofc\" class=\"px-4 darkmode_background\" style=\"padding:0px 100px;background-size:620px;background-position:top;background-repeat:no-repeat;text-align:left;\">\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"16\" id=\"iuuzyb\" style=\"max-height:16px;font-size:0px;line-height:16px;\">\r\n</td></tr></tbody></table>\r\n<table><tbody><tr><td id=\"igwaxq-2-2\" class=\"px-2\" style=\"padding:0px 40px;text-align:center;\">\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"32\" id=\"iz7olc-2-2\" style=\"max-height:32px;font-size:0px;line-height:32px;\">\r\n</td></tr></tbody></table><h2 id=\"iv2qx5-2\" style=\"font-size:36px;line-height:40px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:400;text-align:center;letter-spacing:-1.5px;\"> We make selling easier </h2>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"16\" id=\"iz7olc-2-3\" style=\"max-height:16px;font-size:0px;line-height:16px;\">\r\n</td></tr></tbody></table><p id=\"iv2qx5-3\" style=\"font-size:16px;line-height:22px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:400;text-align:center;\"> Shopify gives you everything you need to start selling from day one. </p>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"32\" id=\"iz7olc-2-4\" style=\"max-height:32px;font-size:0px;line-height:32px;\">\r\n</td></tr></tbody></table>\r\n</td></tr></tbody></table>\r\n<table><tbody><tr><td align=\"top\" valign=\"top\" width=\"64\" id=\"ixalie\" style=\"max-width:64px;\"> <img src=\"https://cdn.shopify.com/b/shopify-mozart-production-messages/4u8ven22wvhtdjs1l3wj5l5o8wf1.png\" width=\"64\" alt=\"alt_text\" border=\"0\" id=\"i9suwk\" style=\"max-width:64px;border:0px;height:auto;vertical-align:middle;\"/>\r\n</td><td width=\"22\" id=\"iv0wh1\" style=\"max-width:22px;\"> \r\n</td><td>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"8\" id=\"islfjt\" style=\"max-height:8px;font-size:0px;line-height:8px;\">\r\n</td></tr></tbody></table><h3 id=\"i90wkg\" style=\"font-size:22px;line-height:26px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:400;\"> Set up shop fast </h3>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"8\" id=\"i0ybxl\" style=\"max-height:8px;font-size:0px;line-height:8px;\">\r\n</td></tr></tbody></table><p id=\"ifbqki\" style=\"font-size:16px;line-height:22px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:400;\"> Choose from 100+ easy-to-use themes <strong>designed to sell.</strong> </p>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"16\" id=\"iwu79a\" style=\"max-height:16px;font-size:0px;line-height:16px;\">\r\n</td></tr></tbody></table>\r\n</td></tr></tbody></table>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"top\" valign=\"top\" width=\"64\" id=\"ixalie-2\" style=\"max-width:64px;\"> <img src=\"https://cdn.shopify.com/b/shopify-mozart-production-messages/4jusedp6wso0ijsi4852nb3jmtae.png\" width=\"64\" alt=\"alt_text\" border=\"0\" id=\"i9suwk-2\" style=\"max-width:64px;border:0px;height:auto;vertical-align:middle;\"/>\r\n</td><td width=\"22\" id=\"iv0wh1-2\" style=\"max-width:22px;\"> \r\n</td><td>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"8\" id=\"islfjt-2\" style=\"max-height:8px;font-size:0px;line-height:8px;\">\r\n</td></tr></tbody></table><h3 id=\"i90wkg-2\" style=\"font-size:22px;line-height:26px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:400;\"> Built in payments </h3>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"8\" id=\"i0ybxl-2\" style=\"max-height:8px;font-size:0px;line-height:8px;\">\r\n</td></tr></tbody></table><p id=\"ifbqki-2\" style=\"font-size:16px;line-height:22px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:400;\"> <strong>Accept payments</strong> securely with multiple built-in payment providers. </p>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"16\" id=\"iwu79a-2\" style=\"max-height:16px;font-size:0px;line-height:16px;\">\r\n</td></tr></tbody></table>\r\n</td></tr></tbody></table>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"top\" valign=\"top\" width=\"64\" id=\"ixalie-3\" style=\"max-width:64px;\"> <img src=\"https://cdn.shopify.com/b/shopify-mozart-production-messages/o35q4i77duerosy8sbiqt1lrtma3.png\" width=\"64\" alt=\"alt_text\" border=\"0\" id=\"i9suwk-3\" style=\"max-width:64px;border:0px;height:auto;vertical-align:middle;\"/>\r\n</td><td width=\"22\" id=\"iv0wh1-3\" style=\"max-width:22px;\"> \r\n</td><td>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"8\" id=\"islfjt-3\" style=\"max-height:8px;font-size:0px;line-height:8px;\">\r\n</td></tr></tbody></table><h3 id=\"i90wkg-3\" style=\"font-size:22px;line-height:26px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:400;\"> Make more sales </h3>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"8\" id=\"i0ybxl-3\" style=\"max-height:8px;font-size:0px;line-height:8px;\">\r\n</td></tr></tbody></table><p id=\"ifbqki-3\" style=\"font-size:16px;line-height:22px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:400;\"> Turn browsers into buyers with the <strong>world’s best-converting checkout</strong>.* </p>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"48\" id=\"iwu79a-3\" style=\"max-height:48px;font-size:0px;line-height:48px;\">\r\n</td></tr></tbody></table>\r\n</td></tr></tbody></table>\r\n</td></tr><!-- END LC502 --></tbody></table>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" id=\"iy7lz2\" class=\"content\" style=\"width:100%;\"><!-- START CC301 --><tbody><tr><td id=\"ij1nbo\" class=\"px-2 darkmode\" style=\"padding:0px 40px;background-color:#ffffff;text-align:left;\">\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"32\" id=\"iqpw5b\" style=\"max-height:32px;font-size:0px;line-height:32px;\">\r\n</td></tr></tbody></table><h2 id=\"ifl5ko\" style=\"font-size:36px;line-height:40px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:400;text-align:center;letter-spacing:-1.5px;\"> Start building in minutes </h2>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"16\" id=\"iqjg4w\" style=\"max-height:16px;font-size:0px;line-height:16px;\">\r\n</td></tr></tbody></table><p id=\"ibe2yb\" style=\"font-size:16px;line-height:22px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:400;text-align:center;\"> Not sure where to begin? Check out our top resources to help you go live. </p>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"16\" id=\"iott69\" style=\"max-height:16px;font-size:0px;line-height:16px;\">\r\n</td></tr></tbody></table>\r\n</td></tr><tr><td id=\"io3cyn\" class=\"px-2 darkmode\" style=\"padding:0px 100px;background-color:#ffffff;text-align:left;\"> <img src=\"https://cdn.shopify.com/b/shopify-mozart-production-messages/4hp669t2ojeh4gzzaxup4pjya79h.png\" width=\"540\" alt=\"alt_text\" border=\"0\" id=\"iab2ui\" style=\"max-width:540px;width:100%;border:0px;height:auto;vertical-align:middle;\"/>\r\n</td></tr><!-- END CC301 --></tbody></table>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"article\" id=\"i15756\" style=\"width:100%;\"><!-- START AT403 --><tbody><tr><td dir=\"ltr\" width=\"100%\" class=\"darkmode px-2\" id=\"i8labw\" style=\"padding:0px 40px 40px 40px;background-color:#ffffff;\">\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tbody><tr><th width=\"50%\" valign=\"top\" class=\"mob-stack\">\r\n<table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"><tbody><tr><td class=\"px-0\" id=\"i4u40g\" style=\"padding-right:12px;\">\r\n</td></tr><tr><td dir=\"ltr\" class=\"px-0\" id=\"iqhnj8\" style=\"text-align:left;padding-right:12px;\">\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"24\" id=\"i8luhm\" style=\"max-height:24px;font-size:0px;line-height:24px;\">\r\n</td></tr></tbody></table><h3 id=\"ie3vul\" style=\"font-size:22px;line-height:26px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:400;\"> How To Start an Ecommerce Business </h3>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"8\" id=\"idyjwi\" style=\"max-height:8px;font-size:0px;line-height:8px;\">\r\n</td></tr></tbody></table><p id=\"ilmdsw\" style=\"font-size:16px;line-height:22px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:400;\"> Learn how to launch your store with this comprehensive blueprint. </p>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"16\" id=\"igg3nf\" style=\"max-height:16px;font-size:0px;line-height:16px;\">\r\n</td></tr></tbody></table><p id=\"in6nl1\" style=\"font-size:18px;line-height:26px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:700;\"> <a href=\"https://mail.shopifysvc.com/_t/c/v3/AADqWLBJAXxjnfoDAbcck8zk3vqUwGm5UtmxftYqiGS77Jdi0qqEAwSh-BqjPJbVCj6YCkmqBDlaPCxttOk73pxiMRY065FcUL_Ut27Vgo46bCqViSFfdsYmIG5ROSqoPjAjQloY7IB2KZmY0KyyOsdgWRIUn6y3DEVhrzKZSrS9O0kAjCF3dKJRkmCqXtm35lo_vOQps3UyTjL2bxa7VcVUVX3Sy2KOW7ZBrazTN6mqRAxaL4xHGJ7WjMY55y79XW1EK0RM9rcMJYMiD5DzjBCQoxvQLYBTySgYvpSPRN5nCueg_qoD7bhsUg0Cn2IkKJfCSjAnhN5kwm2MNAlBA6d5lY-4f5kpqi2ZNySNYwEfgsuF1Ud8yhrNCKzv5cG6iKnUjqrLNSw6T1vH-U16BiS8CduVLNaONDvThqFrrYdAe8nR_Xy0cRb9AffWGIpJeTL4fvpS3GOLzdnGUaM_XGn0lua6KLJIMpBKdS3Q65r22i-DGvDl8x1DxDFOBEAyGEdTlC_3lvsL7hnSh_1-X5zz\" target=\"_blank\" id=\"ir0fpi\" style=\"text-decoration:underline;color:#000000;\">Get the guide</a></p>\r\n</td></tr></tbody></table></th> <th width=\"50%\" valign=\"top\" class=\"mob-stack pt-4\">\r\n<table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"><tbody><tr><td class=\"px-0\" id=\"iwkjq4\" style=\"padding-left:12px;\">\r\n</td></tr><tr><td dir=\"ltr\" class=\"px-0\" id=\"ibek02\" style=\"text-align:left;padding-left:12px;\">\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"24\" id=\"i2crib\" style=\"max-height:24px;font-size:0px;line-height:24px;\">\r\n</td></tr></tbody></table><h3 id=\"iuw7t4\" style=\"font-size:22px;line-height:26px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:400;\"> Get Started with Shopify </h3>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"8\" id=\"iptubg\" style=\"max-height:8px;font-size:0px;line-height:8px;\">\r\n</td></tr></tbody></table><p id=\"ij8td4\" style=\"font-size:16px;line-height:22px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:400;\"> Learn how to build your store from scratch with the official Shopify tutorial. </p>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"16\" id=\"iste2p\" style=\"max-height:16px;font-size:0px;line-height:16px;\">\r\n</td></tr></tbody></table><p id=\"i8tom3\" style=\"font-size:18px;line-height:26px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:700;\"> <a href=\"https://mail.shopifysvc.com/_t/c/v3/AABueOBVF5r511AJN0BH2GSbcbWQdp-E7ZeR07mOiFg-F1PDccF1BIuYGIQa_CWODYEfq77oG6caS19Q1ChGTbjQgWJo3hSgqyn-GrnRoRJ-bMoE-zRytmH1IjDGveXBvbvFm9BDgbibxNA6YmJJL34KsJhZizoOucS9y_YWMIznaoA1QKI7DhCTqkL8d6tSz8iqKvgInVIHdfp14VnS1ZGuhjSwB9zszxVAiDoLj4pefnH0xfMpmNLUnsnd4T-5mzNZEAFi4deQqoFHVJF_nqRHXE_LbJQeJYJ3znczbZY8ZjS4MpT0rG3PdK7gRRzfhBfv-1Vo4ZGseMRI3nQtb5d5YWkgNDxq2BJqsUJrqO80w3FjuPlP70RnnG2peTGNgxZdEBVL463U7oKeVXjjWMdRaVUKgLB-eTqRkU9N3-oS9825X_g2PDQWAsyOY3mGHJPe9M5mQiVqJjZJXcMF-WRQ62U9od0p-qvxXkf1LkNYFXyQxpkA71RzlSVk5JwK9nf18Q==\" target=\"_blank\" id=\"i6k6qu\" style=\"text-decoration:underline;color:#000000;\">Play the video</a></p>\r\n</td></tr></tbody></table></th> </tr></tbody></table>\r\n</td></tr><!-- END AT403 --></tbody></table>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" id=\"ifpmgg\" class=\"utility\" style=\"width:100%;\"><!-- START UT1009 --><tbody><tr><td align=\"center\" id=\"ipab1k\" class=\"px-2 darkmode\" style=\"padding:0px 40px;background-color:#ffffff;\">\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"8\" id=\"iqbmbk\" style=\"max-height:8px;font-size:0px;line-height:8px;\">\r\n</td></tr></tbody></table>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"0\" id=\"izoqx6\" class=\"darkmode-white-border\" style=\"max-height:0px;border-top:1px solid #76B2B3;font-size:0px;line-height:0px;\">\r\n</td></tr></tbody></table>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"8\" id=\"iqbmbk-2\" style=\"max-height:8px;font-size:0px;line-height:8px;\">\r\n</td></tr></tbody></table>\r\n</td></tr><!-- END UT1009 --></tbody></table>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" id=\"ilahg4\" class=\"article\" style=\"width:100%;\"><!-- START AT404 --><tbody><tr><td dir=\"ltr\" width=\"100%\" id=\"ipauli\" class=\"darkmode px-6\" style=\"padding:0px 40px 40px 40px;background-color:#ffffff;\">\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"32\" id=\"iesza2-2\" style=\"max-height:32px;font-size:0px;line-height:32px;\">\r\n</td></tr></tbody></table><h2 id=\"ih7gmu-2\" style=\"font-size:36px;line-height:40px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:400;text-align:center;\"> Here to support you, 24/7 </h2>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"48\" id=\"iesza2-3\" style=\"max-height:48px;font-size:0px;line-height:48px;\">\r\n</td></tr></tbody></table>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tbody><tr><th width=\"33%\" valign=\"top\" class=\"mob-stack\">\r\n<table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"><tbody><tr><td id=\"ihj06o\" class=\"px-0\" style=\"text-align:center;padding-right:12px;\"> <img src=\"https://cdn.shopify.com/b/shopify-mozart-production-messages/w21mp4bq8vrispuy22n95b4dnfeu.png\" width=\"64\" alt=\"alt_text\" border=\"0\" id=\"ixfcwr\" style=\"max-width:64px;border:0px;height:auto;vertical-align:middle;\"/>\r\n</td></tr><tr><td dir=\"ltr\" id=\"i7enh7\" class=\"px-0\" style=\"text-align:center;padding-right:12px;\">\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"24\" id=\"i6iclo\" style=\"max-height:24px;font-size:0px;line-height:24px;\">\r\n</td></tr></tbody></table><p id=\"ikugbd\" style=\"font-size:18px;line-height:26px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:700;\"> <a href=\"https://mail.shopifysvc.com/_t/c/v3/AACqkr6uiQgFX6XmPunMLGKX2xXNZge_eNOtbdWtf5tTrzvispbbWRAa4VEju42Cpp14MQA4un1M6ovbbH1WCTcsmJPsm6w7JlnizSA1Yv7vMGRZnnfwA-yvEXYLZhibXBgZxS5VA62JEVoVrkJmcmeHyzeO47-O6X0ngMeI8B_A2Pwce2-pUGTq304gMHgH2vCWvrBNjv2QsXpVQTqzjv_KrBBBrvGdN2_eperfIs6rYgehExfwl_nOYYKtwBe0oDFrYQSbICC4WxsleOj_co5Vko6rgyoKykXHLnPx4fP7eq4xNpt5Pz48fm8DePIroECvKgVg1hPM2hah-1mZjizaF6-xsKfVMs6L8W3HkYEtI8r7ZH-4LHV203mSI1ajTwDJhvzXbZlrsPozXxezmZHQ0qIkWUzchFsrL5VdMPIPof1FGADoUrqQDrrCyTPLK8U1f6ocPdYgI8w-kQxN7EDSd6aKUy8T7wQWAlotMy0boYEEORMGAdSmZnW4-ZV2CydZx5MuQKf7\" target=\"_blank\" id=\"iiffe2\" style=\"text-decoration:underline;color:#000000;\"> Help and support </a></p>\r\n</td></tr></tbody></table></th>  <th width=\"33%\" valign=\"top\" class=\"mob-stack\">\r\n<table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"><tbody><tr><td id=\"i0k3qi\" class=\"pt-4 px-0\" style=\"text-align:center;padding-right:12px;\"> <img src=\"https://cdn.shopify.com/b/shopify-mozart-production-messages/liz1jx98mc9vtutsmq3022jop27g.png\" width=\"64\" alt=\"alt_text\" border=\"0\" id=\"itoscb\" style=\"max-width:64px;border:0px;height:auto;vertical-align:middle;\"/>\r\n</td></tr><tr><td dir=\"ltr\" id=\"idb4mr\" class=\"px-0\" style=\"text-align:center;padding-right:12px;\">\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"24\" id=\"izjh9i\" style=\"max-height:24px;font-size:0px;line-height:24px;\">\r\n</td></tr></tbody></table><p id=\"is2x68\" style=\"font-size:18px;line-height:26px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:700;\"> <a href=\"https://mail.shopifysvc.com/_t/c/v3/AABSbiuLLNmN9wpuT-jGTT4UxoS1z0Q2XtNvZzlLV3W7VlENq98B4t34PWDwAZFM4KnAyBTsWWS-3diN0z80g8bJBk-nuEYC850dPx9vU856nw2LfWM5WTEKfIRXt-HUejFmmUrqeW8b-fX_Ejf8fC5eZYQKatmBd0nk8GnMHBInqftQhbSO8pMNSAf07loHEmO7UWGmfvqnGD5qFkyEJ2QBQyjXvxDhYW9UVn-qDBrAFnVxPGivRdm-vqHhLMYAX7dMaDxrR5VKP6LayDqfdgodCROyWglxZPK27olRsq6yUkaip7ab-kyj10Ap5LVErbzkMgpU-oBBNPHIikxv60qjSbLHuPX05-AJBf6dSBi1y7SuZSisk9E6jQcKgv97YZzMkv_OCVI9gokFB87Ryc2JBJlfiTiFaIA4vC7s-GmjV2OdbPn_q4IbGfJfx_l2ibcDMvtZSOPxVPyW5mGCqLz9er5Ebwhzx8KN5G7H94X5XRLZvtNBo8D8MEIBh9fNRgMqmdPGiCyEFaGCIH0f\" target=\"_blank\" id=\"id9kv5\" style=\"text-decoration:underline;color:#000000;\"> Online courses </a></p>\r\n</td></tr></tbody></table></th>  <th width=\"33%\" valign=\"top\" class=\"mob-stack\">\r\n<table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"><tbody><tr><td id=\"i1pkyy\" class=\"pt-4 px-0\" style=\"text-align:center;padding-right:12px;\"> <img src=\"https://cdn.shopify.com/b/shopify-mozart-production-messages/5q4vkzloj43ti2mfh8tv0rx33t0l.png\" width=\"64\" alt=\"alt_text\" border=\"0\" id=\"iggy1z\" style=\"max-width:64px;border:0px;height:auto;vertical-align:middle;\"/>\r\n</td></tr><tr><td dir=\"ltr\" id=\"imvt5b\" class=\"px-0\" style=\"text-align:center;padding-right:12px;\">\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"24\" id=\"i61p3g\" style=\"max-height:24px;font-size:0px;line-height:24px;\">\r\n</td></tr></tbody></table><p id=\"iv4iul\" style=\"font-size:18px;line-height:26px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:700;\"> <a href=\"https://mail.shopifysvc.com/_t/c/v3/AACq4Zv8cIn4YfYYzS2paWWtsRECwFQA8_CZyjAYhRB50OsDJQmQsOYOhe8cBEXgZbM_UCHZadU3xwCjuNHl7uz2Jzqzd_CcGxTjCJts_-e1_XCvFyje4V-ruAKZKsfjO7wP0JkDpMMV_EONP0gZjZI9BOY_JSXy5QQIRvEDDMqQ1kkVUgSHd1qeysqeiVb-Oo1uCNLhVjvhdRiCsvEoR9wzkbaD23UJq2aBCNaQTW-N_i5v85IHqqZVxtOmtxy7kXV7JMmwupIvCuB004VSd0fZ42Ihj50TjfHo837PPX2UzbZtQ6V5c-pG7ONJnG_zUc3sNzJxVQToiQzBvVKYiGKa8-p_B6qvp5dR5_5GJY1rJLj7jNhywX2SrrI6qOV2iS58I2mZy-qkv4eXuRv1GYhUuwWGrQ_pPBjJX2xcrEycCvdhXwexaWUHnEDGerWa25CigBd9xOkvLKti662K6fBlDZMaarkF6eapxMN0C17Ivn_0f4M=\" target=\"_blank\" id=\"iyvlc4\" style=\"text-decoration:underline;color:#000000;\"> Intro to Shopify </a></p>\r\n</td></tr></tbody></table></th></tr></tbody></table>\r\n</td></tr><!-- END AT404 --></tbody></table>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" id=\"i81hnk\" class=\"banner\" style=\"width:100%;\"><!-- START BC603 --><tbody><tr><td align=\"center\" bgcolor=\"#FFFFFF\" background=\"https://cdn.shopify.com/b/shopify-mozart-production-messages/o3lhma3m2ms503ph27ssx0xomqe9.png\" id=\"iki3rx\" class=\"px-1 darkmode_background\" style=\"padding:0px 40px;background-size:620px;background-position:top;background-repeat:no-repeat;\">\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer mbl-hide\"><tbody><tr><td align=\"center\" height=\"64\" id=\"inrokj\" style=\"max-height:64px;font-size:0px;line-height:64px;\">\r\n</td></tr></tbody></table>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer mbl-show\"><tbody><tr><td align=\"center\" height=\"24\" id=\"iumlp6-2\" style=\"max-height:24px;font-size:0px;line-height:24px;\">\r\n</td></tr></tbody></table>\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" id=\"iqzpy3\" style=\"width:100%;\"><tbody><tr><td id=\"iliaoj\" style=\"text-align:center;\"><h2 id=\"i774kf\" style=\"font-size:36px;line-height:40px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:400;\"> Extend your trial for $1 </h2>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"16\" id=\"i8pndi\" style=\"max-height:16px;font-size:0px;line-height:16px;\">\r\n</td></tr></tbody></table><p id=\"i21fpd\" style=\"font-size:16px;line-height:22px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:400;\"> \r\n                                          There’s so much more for you to explore on Shopify. For just $1 a month, you can keep building your store without slowing down.\r\n                                         </p>\r\n</td></tr><tr><td><!-- This wrapper is needed for every CTA element in a component -->\r\n<table align=\"center\" class=\"cta force-row\"><tbody><tr><td align=\"center\">\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"24\" id=\"ip2tbx\" style=\"max-height:24px;font-size:0px;line-height:24px;\">\r\n</td></tr></tbody></table>\r\n<!--[if mso]>\r\n<table class=\"force-row\" role=\"presentation\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:0;border-collapse:collapse;border-spacing:0;mso-table-lspace:0;mso-table-rspace:0;background-color:#000000\"><tr><td>\r\n<![endif]-->\r\n<table role=\"presentation\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" id=\"ib2l2k\" class=\"force-row\" style=\"border:0;border-collapse:collapse;border-spacing:0;mso-table-lspace:0;mso-table-rspace:0;\"><tbody><tr><td> <a href=\"https://mail.shopifysvc.com/_t/c/v3/AAA36J9qomAJpCWPz-iurHj7xJmN9slX-nTqA6G0KCAAWDO2Kf9cPx9NM4uxNdmy_HIgOQsOX3wlS9I-3Zw-OjKEJX8X2Cqdq6JcYs6b50pNHR_yKY3-Zk1je-sd5f1Ti9QEbWt6wT4hl7aKXfLdoICpCdSO_OQGnN1WpmoLUk4q0OeKl4iF_6Ub_ZEJolN1DL-ogNvUs_1X3hom4zy6JnrB-MR4feBG95h1QjztVugeCrLHm-CD1ZhFwc4eSJmcJyHJCKS-7ivG-plL3X1TzbtELhaI9tqwpUUeuAiqDEJN-X1knoPpzlqwwRAuoIK8EyCadM3Y5HU0Tatm81_hH6ey70CMlHs6ypC-V6x4Mj83uHrgC7w7ZuDle5daIXooMlD5_px8ddLVl4yuL0SHturlRhe_nKFchzMEP8158ItrJSPj96OIwfIN4jW7ekYitoVUIHCiQrs3ypPBr1At2nDk0hIEAzUdNCajrV6uzEGpG9GbSI7A7tw0YwXLpKiNxRO5LJWm2U_5l2wsioWeGrMkjupxM8A-Pmmu8bgC_2o=\" target=\"_blank\" id=\"iww7ef\" class=\"darkmode-white-border\" style=\"text-align:center;white-space:normal;border-radius:30px;border:2px solid #000000;display:block;padding:12px 24px;background-color:#000000;margin:0px;\r\ntext-decoration:none;color:#ffffff;font-size:18px;line-height:28px;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:700;\"> \r\n                                                          Get 3 months for $1/month\r\n                                                         </a>\r\n</td></tr></tbody></table>\r\n<!--[if mso]>\r\n</td></tr></table>\r\n<![endif]-->\r\n</td></tr></tbody></table>\r\n</td></tr></tbody></table>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer mbl-hide\"><tbody><tr><td align=\"center\" height=\"50\" id=\"iiafzz\" style=\"max-height:20px;font-size:0px;line-height:50px;\">\r\n</td></tr></tbody></table>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"125\" id=\"isjoj4\" style=\"max-height:125px;font-size:0px;line-height:125px;\">\r\n</td></tr></tbody></table>\r\n</td></tr><!-- END BC603 --></tbody></table><!-- CUSTOM COMPONENT START -->\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" id=\"i1nkmr\" style=\"width:100%;\"><tbody><tr><td dir=\"ltr\" width=\"100%\" id=\"i4vnzo\" class=\"darkmode px-4 pt-4 pb-1\" style=\"padding:40px 40px 40px 40px;background-color:#FFFFFF;\">\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tbody><tr><th width=\"31.33%\" valign=\"top\" class=\"mob-stack\">\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tbody><tr><td dir=\"ltr\" valign=\"top\" align=\"center\"> <img src=\"https://cdn.shopify.com/static/replatformers/staying_connected_woman_smiling_while_using_phone.png\" width=\"170\" alt=\"staying_connected_woman_smiling_while_using_phone\" border=\"0\" id=\"imyj3\" style=\"max-width:170px;border:0px;height:auto;vertical-align:middle;\"/><!-- This non-breaking space is required for proper rendering in Outlook, do not delete: -->\r\n<!-- Don\'t delete this -->\r\n</td></tr></tbody></table></th><th width=\"68.66%\" valign=\"top\" class=\"mob-stack pt-2 pb-3\">\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tbody><tr><td dir=\"ltr\" id=\"iutd8g\" class=\"px-1 pt-0\" style=\"padding:40px 40px 0px 40px;text-align:left;\"><h3 id=\"ipkkj9\" style=\"font-size:30px;line-height:34px;letter-spacing:-2px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:400;\"> Take your business wherever you go </h3>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"16\" id=\"iv1lqn\" style=\"max-height:16px;font-size:0px;line-height:16px;\">\r\n</td></tr></tbody></table>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" id=\"iqc4ag\" class=\"darkmode\"><tbody><tr><td align=\"left\"> <a alias=\"Apple app Store logo\" href=\"https://mail.shopifysvc.com/_t/c/v3/AAAXcTCY2VdW4BR2KuFpJy9kMOjcRvEZizTzUH7MIoitdnLmFipcv7rxatx3vsL-Bws4_Ymi5i0geiKkL2Vv-Td5eb-LBFKRaI7J6LOQOLnIzdOOxKiiUyLZ_LnmZXHXHIgeG7TeZm9BBDlD3GFKUn-S2cwBr0GkkxbMiyr2pXd6MRRS5fQk-50-F7DGKUkUDd_5nT8Jbm41-oVYt7U_6uTQNrsqCdac17yB4t4z6lT86Yx8qlJ1LDBq1bdEqa1zbhDIRBgVFrnyZk07WTKGZHJgrOlMFWCnPjWjuioH58DPJ4lKlx6DVinrh53dNG0A7Sff-ZH6DMqIqDe8J_R4enxRcOHbqoybqcS8F0uGNVWI3Eq-mWoUF7UnZrOOYUAkGoJe_nBDEQvYrCOePdWO4n-cparGYAc-4oNlTlTRyAUo5VwrZ-aCkLocgF9KP7W0edthj2GzNwA2_jHkstdU3VFqvqD0aACAjKBTnNEcmTuttg8taQMgmhjbZbla2KOutr_I950R\" target=\"_blank\" id=\"io0dix\" style=\"text-decoration:none;\"><img alt=\"Apple app Store logo\" src=\"https://cdn.shopify.com/static/email-modules-library/img/apple_store_badge_white.png\" height=\"40\" id=\"i22i5l\" style=\"width:auto;display:block;margin:0px;max-height:40px;\"/></a>\r\n</td><td align=\"right\"> <a alias=\"Google Play logo\" href=\"https://mail.shopifysvc.com/_t/c/v3/AACg-o1ZnCy7xKBVifrypgYo7PTP5AYqW6Ifd1kD_FvjIVnNET4Gep7synUJp2m5mZpUWexXxH6cjmWp43Q3bP7j9cgMKrbVSZ9KqX3LbxgRmG5T_IGVZ1pPcDBMrVxQ48dTvzb0tx9x8pTe9FiFmU5palVdH6CFioaflrLvjjuivQ12kEszr6nUQ2v9nCQSMPqFygKOF0Bdgsd89cXKGNN64KIO4vl1CbGzxe4rbQpcp8wLmJ6TujZeMrqaN4l3HVMu_cLGr5ufjW06g0os6nKlWYQHViNVK_In_e79Qsz4-pGMWz7LZ9YxuP9nFVkSPbA6zF-cTf8FZb6YPCdQ34tY4H99lYjIh8y8O1PB_gyfxR5JZoRQ_TSNYAQDzilajemlnsnmRcMIB7UUQI2_B3obAC99O-fvpUC4m3M7cUKuhScoLpO6rVZ8XfpjcL__qf0HLrljm0Gc9uGUugRNgyDBwvZOc17TmKUF9eksDKeTT9LpPVyXYA3MImkZnUiTIe0SeTXD\" target=\"_blank\" id=\"ibof1q\" style=\"text-decoration:none;\"><img alt=\"Google Play logo\" src=\"https://cdn.shopify.com/static/email-modules-library/img/google-play-badge-US.png\" height=\"40\" id=\"i0wcli\" style=\"width:auto;display:block;margin:0px;max-height:40px;\"/></a>\r\n</td></tr></tbody></table>\r\n</td></tr></tbody></table></th></tr></tbody></table>\r\n</td></tr></tbody></table><!-- CUSTOM COMPONENT END -->\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" id=\"ifpmgg-2\" class=\"utility\" style=\"width:100%;\"><!-- START UT1009 --><tbody><tr><td align=\"center\" id=\"ipab1k-2\" class=\"px-2 darkmode\" style=\"padding:0px 40px;background-color:#ffffff;\">\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"8\" id=\"iqbmbk-3\" style=\"max-height:8px;font-size:0px;line-height:8px;\">\r\n</td></tr></tbody></table>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"0\" id=\"izoqx6-2\" class=\"darkmode-white-border\" style=\"max-height:0px;border-top:1px solid #76B2B3;font-size:0px;line-height:0px;\">\r\n</td></tr></tbody></table>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"8\" id=\"iqbmbk-2-2\" style=\"max-height:8px;font-size:0px;line-height:8px;\">\r\n</td></tr></tbody></table>\r\n</td></tr><!-- END UT1009 --></tbody></table><!-- DISCLAIMER -->\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" id=\"iyyqqx\" class=\"utility\" style=\"width:100%;\"><!-- START UT1024 --><tbody><tr><td id=\"i1mx49\" class=\"px-2 darkmode\" style=\"padding:0px 40px;background-color:#ffffff;text-align:left;\">\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"8\" id=\"is5zj9\" style=\"max-height:8px;font-size:0px;line-height:8px;\">\r\n</td></tr></tbody></table><p id=\"i15nrp\" style=\"font-size:14px;line-height:21px;color:#555;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:400;\"> *Based on a 2023 study with a Big Three global management consulting company </p>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"16\" id=\"ia8hrm\" style=\"max-height:16px;font-size:0px;line-height:16px;\">\r\n</td></tr></tbody></table>\r\n</td></tr><!-- END UT1024 --></tbody></table><!-- END DISCLAIMER -->\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"footer\" id=\"irjuxi\" style=\"width:100%;\"><!-- START FT701 --><tbody><tr><td align=\"center\" class=\"px-5 darkmode\" id=\"ixr1xf\" style=\"padding:0px 70px;background-color:#ffffff;\">\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"16\" id=\"i82nuk\" style=\"max-height:16px;font-size:0px;line-height:16px;\">\r\n</td></tr></tbody></table><div id=\"i6rf55\" style=\"display:none;max-height:0px;overflow:hidden;\"> \r\n     \r\n</div>\r\n<table align=\"center\" role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"><tbody><tr><td align=\"center\"> <a href=\"https://mail.shopifysvc.com/_t/c/v3/AAAHp0F00mb6QFZi7qEh6q2Ae6rvd2xgzTiG_BiwYYPtySk4z4v5CInm3bMqOo1Ojby8MPD251ACswfEaNMA76_XihCpgaXuN-gdRCBR-SlaIDcsgEgicPQbbl72BXfkkShk_rugayvQBzo6ds9o4zmZEgqpvj5Pa-F3wWiB1BewKPc0Y9oVPjHvniwMOHh-HaNefw66bcNdxlMJwQJYtjs-pQarF0_kT5Di3KlQQGSYYwfWjrAXSgKnUv481BtSmzkygF6lHtDtudXyea99Zq6SQwl9f7PXlciQmfptrDgYL8XS-8kdH36TwmmxX8mVTHhT\" id=\"idlb1h\" style=\"display:inline-block;\"><img border=\"0\" src=\"https://cdn.shopify.com/static/email-modules-library/img/Dark_Social_Icon_Facebook_padding.png\" alt=\"Facebook\" width=\"48\" height=\"48\" id=\"i1s5mg\" style=\"width:48px;vertical-align:middle;\"/></a><a href=\"https://mail.shopifysvc.com/_t/c/v3/AAAcIPWEiwxVlpsw2j6nQbcEZx3D9gMJGjZ6Nilv7MHEp9QticGSGWnhI00zW3fMdxq3Rm_Pk-RDCzQXHyQILTAzfJ0hEqKZVMRmo1JvDKCC9WT8gebWhpuuWS6rhrwG7jY_Xi7tU5QGDgibT-CEwteSk1IJNV26G5hqN1wGzC_b6eTDnMLXfOHLspp-GVCjoLqRdmtfNGt4__P3jT_rgMYNPYecYYNO4yXmQnGRvehRdHD9khFwqpsPvsnkbtmGIWqg4ql2w7COcK5Jxd3qIIjbAmDSxGRWB1tllGKn1ag5ez03yHKXkHGbrq9XgctIkJ0=\" id=\"ibu55e\" style=\"display:inline-block;\"><img border=\"0\" src=\"https://cdn.shopify.com/static/email-modules-library/img/logo-twitter-x.png\" alt=\"Twitter\" width=\"48\" height=\"48\" id=\"i8hnjj\" style=\"width:48px;vertical-align:middle;\"/></a><a href=\"https://mail.shopifysvc.com/_t/c/v3/AADmHHfAkGwBR1UzP47eMLe9nDzEe0goc87n_-kMqI-SkXfv9oeAEJI3cAdTddoMJO45r727pnWqM_BUOU98_h91ydf0DfrG8pn2_Y9PR2xyIbvfg3Jvq9Jy0oog8n-Gdxl2VBEHuH-qI4hNcQxYpgrWQt7SYc76qums0ZoAnrlzY6Kp1C4nuOEUJyidxYD5mdKKcuBtdCy1g5Wi4bJU6uKquGi9h1ibPgxDoyQqkCI9vnjZkEuxMOVJ1vtvKOmD9KHz-Cte063gc1e3tw6PDtL5KM_ucPeaN3Mj0PpFHgTNIQMpcX7uLM4PBlCek21osfMPxg==\" id=\"irzreb\" style=\"display:inline-block;\"><img border=\"0\" src=\"https://cdn.shopify.com/static/email-modules-library/img/Dark_Social_Icon_Instagram_padding.png\" alt=\"Instagram\" width=\"48\" height=\"48\" id=\"ixlqrs\" style=\"width:48px;\r\nvertical-align:middle;\"/></a><a href=\"https://mail.shopifysvc.com/_t/c/v3/AAAWMzZKqQVrQ95L07gKzcJreVN6R1K8fJwd5z-Db5h6oXKgqcJsF0JVGW-ms1KeALukZYhckH4OdOg5ppbJdAPCixqwIFST6e4nh2k0BrQtfz2TqM_dSnqmczS3AasQ3Lu-XFqr6NZQs8mcVzrrO85tUahSmdhdXN5N2jr8Z15Oi10ZbGuURAeNEV8I9NtZkAIxMzpesXIqvDdlPVL27M9NH-oBiXUVOSmlhkKB-XulOgkQO7Cj5E2jmrGJdfhZuAmPDCCbTplGpJFH2ksw2xUCnrTnPVWEED3VlNXX0JxJGb2xtkgmaJA3vkIhq_JWdcVK0PE_Gsesp7w=\" id=\"i3lodj\" style=\"display:inline-block;\"><img border=\"0\" src=\"https://cdn.shopify.com/static/email-modules-library/img/Dark_Social_Icon_LinkedIn_padding.png\" alt=\"LinkedIn\" width=\"48\" height=\"48\" id=\"i3thfi\" style=\"width:48px;vertical-align:middle;\"/></a><a href=\"https://mail.shopifysvc.com/_t/c/v3/AAA_9PSWKBZeD33m1eyZGpeZ_0KY1G5hCoJ2HuMn7LvmfvJmWboaMngwvcvaKopz1JBUOD0h6nzr8Ogm8Lug8BF9GSeNHdIJ0VnKFez4zBwxP00nlF0CJYhZrUXwGFdIM7vdCLJVOZ8Dx70P9RmyzctowFfioisbgPygaYmx-KmpUVQ8enJZGdCpps-nn3_zUWusVreugYBeTtB6FW2CeovZGoKEaNirmAqwpWyq3y9zUwU_o1vE7PX1GsLgNc9DUcrKxtqwH8OCq_3fC9z1uoK5hInwzZhsc9O8rwxeponuRKILhnA0pFqoNaXoB46cO4J9DQ==\" id=\"i0wb2a\" style=\"display:inline-block;\"><img border=\"0\" src=\"https://cdn.shopify.com/static/email-modules-library/img/Dark_Social_Icon_YouTube_padding.png\" alt=\"YouTube\" width=\"48\" height=\"48\" id=\"ie3ubc\" style=\"width:48px;vertical-align:middle;\"/></a><a href=\"https://mail.shopifysvc.com/_t/c/v3/AADsFv_NnsUCa7-x6dXoaGrKB-0MuLqYuxmT6J2JbDNXlS0Q2kIeQf-_2yw8pVO-X8G-o4pim61X1lD7RERFExS4xXlkzfyvQClXxP_xqppc5plWNORk6wS3Ur4CWXUhbv2HxKox4oIIChS-dU28ZnvQRKd849phoGLmzN1LQijIjkFDOT5BjMX57J0ZQw4KzIwikH7BF800_dE7lAgIo3O--eJej-BiHDhrAU365ekEdrjfmty71kz6QyLgPTDbakCrGDFSUrH3sbA_L5dyhZS-VE8DoiwFGi9_5dPAbC7jaqpNR5-4ZtPqKBJFaELxpbc=\" id=\"idc1l7\" style=\"display:inline-block;\"><img border=\"0\" src=\"https://cdn.shopify.com/static/email-modules-library/img/Dark_Social_Icon_TikTok_padding.png\" alt=\"TikTok\" width=\"48\" height=\"48\" id=\"ijnrl2\" style=\"width:48px;vertical-align:middle;\"/></a><a href=\"https://mail.shopifysvc.com/_t/c/v3/AADpFW_izZhqrbIqME-Z-5pNDfq-A7px5zAZlcTLs2191ybx8E-JdUV8xBmU2ZWB7T5wKy_Pj_NEPWXnY-9Sn8kBQQQgxVuF0nHBP0ZAsYewYBpJf7WdWa4Dzc6Znc0DO429Bq-BwERxABSxIFHRD_SLaGWdSh1BbHbzmJcp9nbGjgPydy9H1z2mZuuU4HJ0FdzrOjVHaz5Lt1nTaKLnkjZQwhYlqzDh3ACnCwxE5hSBxs-AJLLo-2GOsyqtrwgdffirPYh_681bZv8s7cLaipHcPG_Je5JaiXD0_83q21CLejNSt-TeNgRES_e2rNCVBPSfRA==\" id=\"ihkked\" style=\"display:inline-block;\"><img border=\"0\" src=\"https://cdn.shopify.com/static/email-modules-library/img/Dark_Social_Icon_Pinterest_padding.png\" alt=\"Pinterest\" width=\"48\" height=\"48\" id=\"ix8522\" style=\"width:48px;vertical-align:middle;\"/></a>\r\n</td></tr></tbody></table>\r\n</td></tr><!-- END FT701 --></tbody></table>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" id=\"idqtx\" class=\"compliance\" style=\"width:100%;\"><!-- START CM901 --><tbody><tr><td id=\"iue8j\" class=\"px-2 darkmode\" style=\"padding:0px 40px;background-color:#ffffff;text-align:center;\">\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"20\" id=\"iaw2e\" style=\"max-height:20px;font-size:0px;line-height:20px;\">\r\n</td></tr></tbody></table>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"20\" id=\"ir1cd\" style=\"max-height:20px;font-size:0px;line-height:20px;\">\r\n</td></tr></tbody></table><p id=\"ir8uh\" style=\"font-size:14px;line-height:21px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:400;\"> © Shopify, 15‍1 O&#39;Con‍nor Str‍eet, Gro‍und fl‍oor, <br/> Ot‍tawa ON, K2P 2L8 </p>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"16\" id=\"iz9fi\" style=\"max-height:16px;font-size:0px;line-height:16px;\">\r\n</td></tr></tbody></table><p id=\"im8vn\" style=\"font-size:14px;line-height:21px;color:#000000;font-family:&#39;Inter&#39;,&#39;ShopifySans&#39;,ShopifySans,Helvetica,Arial,sans-serif;font-weight:700;\"> <a href=\"https://mail.shopifysvc.com/_t/c/v3/AAC60VHD6SgRpTx8IlT5it41ih1YJRXzyzdyqLYKtlKmQ3zeT47go2gPbK1xR1UpuI80-Iae8wpNnf3_MHy3wLv-Nt567N3RkD4noCJdQ4oRvWZZW9tv7r6GF53CVqCBOVJ1IcNa3vLnwGAYsPbaXwyXcJEv0HTqTNP3m2xr1LYmZxsmTmn9diosQlQcT9x44MHzBJlZdSSgxKBDTujn-xV9IM5SaEF036U4Ohe2R6Fx4JIwjGRFZ1bwblzxSRKHoVKkPMzykrVpSzwJaMyIbGR3IeaalZ3udCKbrSmuSw4JRcI_EGV8v6MeeRLe1T6bR56p3bR9JHbnx4i5uMEFKhXPuQLR2YypxOtUlNrwmuGwpxNllyWeGdgeXzOsK5Ek6vCotKhMKPPnn0m9ie2dJS4S6zDphYJN1FGcBOKiPWSiG5fDg4pj98bYEMGcnAjjOS3i17ZBRwaaDJmS7YdNPCi8hn8edHpYCFgkdAraCY8xPhMvqJ4eO_GQoa8fmo2GXAEEdyC5lRwEWkUrPE-g5sV7_RU8QJT-4eLOvCyTPIRgehjQQFJZ0OtB1pxngwGx6OiLP5NInIJlCtVd7mRaJwu0ikCzdbHy7CkKbnbeAOzkqcriHqoFWmr1t8ESBc77lSayzov4Tp9d--6-HYXBPj3_zeb8n-KLlS-sE5LuKBYjnqyZaZmV15IDEwftVUqksK_0HAxUKXMPlpchvWkQshrksNj7j3wRo-Ar7DMYyUIumNOcvvblCUiRTOXM22cO2IZKcmwTLJZiBYvSB3tf7V068pdNr8RrWBNsyA==\" id=\"iekmb\" style=\"color:#000000;text-decoration:underline;\">Unsubscribe</a><span>   </span><a href=\"https://mail.shopifysvc.com/_t/c/v3/AAAg4mWGCpnNmbDwTbNC7cC6iPVwoZQrnwT0PwE36iF0hWnmg5AbaY615DSjjFUQp6stc51Lv8Bvj5ceF1M4EiR4mHKQzzRAGiGNv4Cr2kpdFVgyXU4FB3OrlpfV_rxqubyqiCFh1RyvPBOE_cSNOkD0ilalZ8tDQAbz6KN2iSpuHqvUsnx0L8ljSb1mC66J5rbyPwfKJPDtKINQdV9F26itoWmhtgVR93fDjb4f8O0U3ofo2jVo9jknV_dwHkhXF5QPhxXlLtT-EpX_l8JmaiS0yffQS0qzZLrVYwreo09kJqnz9qZs5Rf-0E-2UO__00fYafuwfeWA7xwQP_0qXuTnLfP2iTpFfvQbgh39vY9d-wFReuGPKnhEbbPbYysSIvQwy4e7ZT87M4vC4LgdiQvcHWLllQ0GCV2qMh1zkQHN3oyksLSl-_DrnSlgGgYhR1EpQYAlTdf9xlZ-GVlkv_XECrQ88b5oUIKvI85uEoufrhUzSL1fq2xT9Rs1H8nb_ergVwguKZJxGYwOE6QgkelafvVEHkl5oa6yzO6TQUPuD-bErc7zFvHAbDT5eymb_ekBKjo-fXRKOVuiShh0uBppKdGMc0KFK8eyEZjXSUImtyabQKMmIKdvs5Qp-f9IWbI5DS37Rf5tz9jjJEkkzfUTGQNre12katkLdQrZ99-inpmOTOMuUhRZRH6WMHbCL1nQX87862lwFD8dbR9qCjnfiHd2i4NoiJlwzCRCNBn1-fsIhXcZumVr_AAHZ2y0O-ULISa0bF8wMCCfiFf68-iycYVnmNI=\" id=\"ifsu3\" style=\"color:#000000;text-decoration:underline;white-space:nowrap;\">Manage your preferences</a></p>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"20\" id=\"i565i\" style=\"max-height:20px;font-size:0px;line-height:20px;\">\r\n</td></tr></tbody></table>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"spacer\"><tbody><tr><td align=\"center\" height=\"20\" id=\"iu4m6\" style=\"max-height:20px;font-size:0px;line-height:20px;\">\r\n</td></tr></tbody></table>\r\n</td></tr><!-- END CM901 --></tbody></table>\r\n</td><!-- END CONTENT --></tr></tbody></table>\r\n<!--[if (gte mso 9)|(IE)]>\r\n</td></tr></table>\r\n<![endif]--></div>\r\n</td></tr></tbody></table>\r\n\r\n\r\n<img src=\"https://mail.shopifysvc.com/_t/open/A102008F-185141C575FDEEBC-24401BE5?en=AADjpmvEM2McHm%2F8LNHVPNbB%2Buxc12gUZqGteIZCiG0vwZb%2BvFZu%2BVS%2Bd7WxBlgjrJzrtxnU8LxlY5dL2FXzbzyjJnJ7yJN5fm9Miz4qeQRVy8Q1xh78FBcc8g9j9QESNpEUPQI5FKc5iXmEsB5Uys1kpo6QX2wfzxLBSLlF9rk%2FkTutK8PfRNONv5HKzOcbKMyL%2FXHCSmil0DLJkevGLk%2FGSumRyyiIzuAa1WsTBF0jk%2FwjR5vO1VpSggKFJYBGkpdwiZBRQ8SNdStCI2QRr%2FWf2agqt4C%2FvwmclasjY4Ia0vnXFrMrhvTYSghsq%2FMp5lJzCyFXtTR1fyTyJUyvtIzsLwKg7zf7hP9UvRXPgiJNbxcqT5UDgnSNhGbwL7ljuic2zw1E5XSKy2J4EUZV7KgtAKA%2FhBfswKYh3n72ddV0FVxDSJ3fn7s%2Bv980B6fGTp7oMVu6tzXG53x%2B08Q1uH5rlBaa34YcnRso67qcXXp8evRkAISdt6ffeckRGO8BVTUXjuvSZgSHBPQPFIyMGqcWxRLnf4efYD%2BntfuuM7z1sSLqiXUjZMJ7F20vr13PDUqOKGaVAEHbSAyrl3ZxGx9T3%2BqkTtKNs1SSMXm%2B59IYV2g%2B42HgKT2AVdTyTjWop82pO79bH6R%2F9bSR%2B4%2FaYm0eimK4npyMGCqmNWO8Z4uVz%2FuUfYKjM9QWEG6tBRoRy6pHDv2RABmpuod%2FQDdLS3c4AAMwYhQXjOoKMzhgkIIubaRToW8ehFXNfoH1TiGvXK4QshldaUGD%2B3PhCsnErzn3IopDZu0YG4TNvaVAy8N2ax4oinYlM8gd0NaTfHYc7nuolJAbPwZYD3J4JV07QMiopauGEgJKQWSLzcxrowKSGgReWj%2FOlDOAJ9atVZwLX2%2FCZtEQvMgCGFzZOIVukylCVrJseub1m8unuaOjx2UrKBuRprBAsyPY0yOtu0RLmoXc2HDlATR%2BipJYEhQoendpD6uJ6HYCstscU7Wu%2Bl4b6XM3i%2B1xpv2DxxE0giyEueETpfJ%2FI91hS%2F%2F2GTmotIdI1TInHSrqEJ%2FO0fXFU8R9cj7TDwpT6PW2RovG2bxpdwM77t1yXAJLRZxMkYPtsHJEDYlVQdCCok46bMEuBlHOP2C8etuU3dLRkrMwth%2BN1All3QgRKxcGkYMHaKzG0CTQWbktEDpLDFAsDXaX\" style=\"display:none\"/></body></html>\r\n','\r\nShopify:root{color-scheme:light dark;}\r\n\r\nhtml,body{margin:0 auto!important;padding:0!important;height:100%!important;width:100%!important;}p{margin:0;padding:0;}h1,h2,h3,h4,h5,h6{display:block;margin:0;padding:0;}img,a img{border:0;height:auto;outline:none;text-decoration:none;}sup{font-size:66%;line-height:1;vertical-align:top;mso-text-raise:30%;}*,body,td,h1,h2,h3,h4,p,span{font-family:\'InterVariable\',\'Inter\',\'ShopifySans\',ShopifySans,Helvetica,Arial,sans-serif!important;}*{-ms-text-size-adjust:100%;\r\n-webkit-text-size-adjust:100%;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;}table,td{mso-table-lspace:0pt!important;mso-table-rspace:0pt!important;mso-line-height-rule:exactly;border-collapse:collapse!important;}table{border-spacing:0!important;border-collapse:collapse!important;table-layout:fixed!important;}a{text-decoration:none;color:#0A0B0D;}img{-ms-interpolation-mode:bicubic;}a[x-apple-data-detectors],.unstyle-auto-detected-links a,.aBn{border-bottom:0!important;\r\ncursor:default!important;color:inherit!important;text-decoration:none!important;font-size:inherit!important;font-family:inherit!important;font-weight:inherit!important;line-height:inherit!important;}.im{color:inherit!important;}u+img+div{display:none!important;opacity:0.01!important;}.ExternalClass{width:100%;}.ExternalClass,.ExternalClass p,.ExternalClass span,.ExternalClass font,.ExternalClass td,.ExternalClass div{line-height:100%;}img{-ms-interpolation-mode:bicubic;}.yshortcuts a{\r\nborder-bottom:none!important;}.hide{visibility:hidden;display:none;mso-hide:all;}.mbl-show{display:none;mso-hide:all;}#outlook a{padding:0;}u+#body a{color:inherit;text-decoration:none;font-size:inherit;font-family:inherit;font-weight:inherit;line-height:inherit;}div>u+.body .gm-spacing{line-height:100%!important;height:100%!important;}u+.compliance a,p{color:inherit;text-decoration:none;font-size:inherit;font-family:inherit;font-weight:inherit;line-height:inherit;}u+#body .gmail-blend-screen{\r\nbackground:#000!important;mix-blend-mode:screen;}u+#body .gmail-blend-difference{background:#000!important;mix-blend-mode:difference;}\r\n@media (prefers-color-scheme:dark){.dark-img{display:block!important;width:auto!important;overflow:visible!important;float:none!important;max-height:inherit!important;max-width:inherit!important;line-height:auto!important;margin-top:0px!important;visibility:inherit!important;}.light-img{display:none;display:none!important;}.darkmode{background-color:#000000!important;background:#000000!important;}.bgDarkmode{background-color:#363836!important;}.darkmode-white-border{border-color:#ffffff\r\n!important;}.darkmode_background{background-color:#000000!important;}h1,h2,h3,h4,p,span,li,a,b{color:#ffffff!important;}.ForceDark{color:#000000!important;} }\r\n@media screen and (max-width:619px){.force-row,.container{width:100%!important;max-width:100%!important;}.mob-stack{width:100%!important;display:block!important;max-width:100%!important;}.mbl-hide{display:none!important;font-size:0;max-height:0;line-height:0;padding:0;mso-hide:all;}.mbl-show{display:inline-block!important;max-height:none!important;}.mbl-center{text-align:center!important;margin:0 auto!important;}.mbl-left{text-align:left!important;}.mbl-right{text-align:right!important;}\r\n.gmail-fix a{color:#004C3F!important;text-decoration:none!important;}.emailButton{max-width:600px!important;width:100%!important;}.emailButton a{display:block!important;font-size:18px!important;}.mx-2{margin-left:24px!important;margin-right:24px!important;}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:16px!important;padding-left:16px!important}.px-2{padding-right:24px!important;padding-left:24px!important}.px-3{padding-right:30px!important;padding-left:30px\r\n!important}.px-4{padding-right:40px!important;padding-left:40px!important}.px-5{padding-right:50px!important;padding-left:50px!important}.px-6{padding-right:64px!important;padding-left:64px!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:10px!important;padding-bottom:10px!important}.py-2{padding-top:24px!important;padding-bottom:24px!important}.py-3{padding-top:30px!important;padding-bottom:30px!important}.py-4{padding-top:40px!important;padding-bottom:40px\r\n!important}.py-5{padding-top:50px!important;padding-bottom:50px!important}.py-6{padding-top:64px!important;padding-bottom:64px!important}.pt-0{padding-top:0!important}.pt-1{padding-top:10px!important}.pt-2{padding-top:24px!important}.pt-3{padding-top:30px!important}.pt-4{padding-top:40px!important}.pt-5{padding-top:50px!important}.pt-6{padding-top:64px!important;}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:10px!important}.pb-2{padding-bottom:24px!important}.pb-3{padding-bottom:30px\r\n!important}.pb-4{padding-bottom:40px!important}.pb-5{padding-bottom:50px!important}.pb-6{padding-bottom:64px!important;}.pr-0{padding-right:0!important}.pr-1{padding-right:10px!important}.pr-2{padding-right:24px!important}.pr-3{padding-right:30px!important}.pr-4{padding-right:40px!important}.pr-5{padding-right:50px!important}.pr-6{padding-right:64px!important;}.pl-0{padding-left:0!important}.pl-1{padding-left:10px!important}.pl-2{padding-left:24px!important}.pl-3{padding-left:30px!important}\r\n.pl-4{padding-left:40px!important}.pl-5{padding-left:50px!important}.pl-6{padding-left:64px!important;}.pl-8{padding-left:80px!important;} }\r\n@media only screen and (max-width:480px){.FluidImage{height:auto!important;max-width:231px!important;width:100%!important;} }\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n  \r\n    \r\n    \r\n\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n\r\n    \r\n    \r\n    \r\n  \r\n    Your free trial has started\r\n      ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏  ﻿͏\r\n ﻿͏ \r\n\r\n\r\n\r\n\r\n\r\n  \r\n\r\n\r\n \r\n\r\n\r\n  Log in \r\n\r\n\r\n\r\n\r\n\r\n Whatever you’re selling, we make it easier \r\n\r\n\r\n \r\n\r\n\r\n  \r\n    \r\n      \r\n        \r\n          \r\n        \r\n      \r\n    \r\n     Millions of the world’s most successful brands choose Shopify, and like you, they all started with a new store. \r\n    \r\n  \r\n\r\n\r\n  \r\n    \r\n     \r\n      \r\n        \r\n          \r\n            \r\n              \r\n                \r\n                  \r\n                \r\n              \r\n                        \r\n            \r\n            \r\n            \r\n              \r\n                \r\n                  \r\n                     Go to your store \r\n                    \r\n                  \r\n                \r\n              \r\n            \r\n            \r\n            \r\n          \r\n        \r\n      \r\n    \r\n    \r\n      \r\n        \r\n          \r\n        \r\n      \r\n    \r\n  \r\n\r\n\r\n\r\n\r\n\r\n\r\n We make selling easier \r\n\r\n Shopify gives you everything you need to start selling from day one. \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n Set up shop fast \r\n\r\n Choose from 100+ easy-to-use themes designed to sell. \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n Built in payments \r\n\r\n Accept payments securely with multiple built-in payment providers. \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n Make more sales \r\n\r\n Turn browsers into buyers with the world’s best-converting checkout.* \r\n\r\n\r\n\r\n\r\n\r\n\r\n Start building in minutes \r\n\r\n Not sure where to begin? Check out our top resources to help you go live. \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n How To Start an Ecommerce Business \r\n\r\n Learn how to launch your store with this comprehensive blueprint. \r\n\r\n Get the guide\r\n \r\n\r\n\r\n\r\n Get Started with Shopify \r\n\r\n Learn how to build your store from scratch with the official Shopify tutorial. \r\n\r\n Play the video\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n Here to support you, 24/7 \r\n\r\n\r\n\r\n \r\n\r\n\r\n  Help and support \r\n  \r\n \r\n\r\n\r\n  Online courses \r\n  \r\n \r\n\r\n\r\n  Intro to Shopify \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n Extend your trial for $1 \r\n\r\n \r\n                                          There’s so much more for you to explore on Shopify. For just $1 a month, you can keep building your store without slowing down.\r\n                                         \r\n\r\n\r\n\r\n\r\n\r\n  \r\n                                                          Get 3 months for $1/month\r\n                                                         \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n Take your business wherever you go \r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n *Based on a 2023 study with a Big Three global management consulting company \r\n\r\n\r\n\r\n\r\n\r\n \r\n     \r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n © Shopify, 15‍1 O&#39;Con‍nor Str‍eet, Gro‍und fl‍oor,  Ot‍tawa ON, K2P 2L8 \r\n\r\n Unsubscribe   Manage your preferences\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-07-11 17:14:06','2025-12-09 19:13:44','2025-12-09 19:13:44','2025-12-09 19:13:44',NULL,NULL,NULL),
(458,4,'<E102008F-18514F35D447B751-3C761921@shopify.com>',NULL,NULL,'Settings have been changed for wqwdkv-g7.myshopify.com','mailer@shopify.com','Shopify','<!DOCTYPE html><html lang=\"en\" dir=\"ltr\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\r\n    <!-- Yahoo will strip this. Fixes yahoo app not being mobile responsive -->\r\n  <style>@font-face {\r\nfont-family: \'Inter Variable\'; font-weight: 100 900; font-display: swap; font-style: normal; font-named-instance: \'Regular\'; src: url(\"https://cdn.jsdelivr.net/fontsource/fonts/inter:vf@latest/latin-wght-normal.woff2\") format(\"woff2\");\r\n}\r\n</style>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/><meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"/><meta name=\"x-apple-disable-message-reformatting\"/><meta name=\"color-scheme\" content=\"light dark\"/><meta name=\"supported-color-schemes\" content=\"light dark\"/><meta name=\"format-detection\" content=\"telephone=no, date=no, address=no, email=no, url=no\"/><title>Shopify</title><style data-premailer=\"ignore\">\r\n      :root {\r\n        color-scheme: light dark;\r\n      }\r\n    </style><style data-premailer=\"ignore\" type=\"text/css\">\r\n      html, body {\r\n        margin: 0 auto !important;\r\n        padding: 0 !important;\r\n        height: 100% !important;\r\n        width: 100% !important;\r\n      }\r\n\r\n      /* Paragraph reset */\r\n      p {\r\n        margin: 0;\r\n        padding: 0;\r\n      }\r\n\r\n      /* Header reset */\r\n      h1,h2,h3,h4,h5,h6 {\r\n        display: block;\r\n        margin: 0;\r\n        padding: 0;\r\n      }\r\n\r\n      /* Image reset */\r\n      img, a img {\r\n        border: 0;\r\n        height: auto;\r\n        outline: none;\r\n        text-decoration: none;\r\n      }\r\n\r\n      /* Better superscript */\r\n      sup {\r\n        font-size: 66%;\r\n        line-height: 1;\r\n        vertical-align: top;\r\n        mso-text-raise: 30%;\r\n      }\r\n\r\n      /* Default web font \'ShopifySans\' and fallback sequency */\r\n      *, body, td, h1, h2, h3, h4, p, span {\r\n        font-family: \'Inter Variable\',-apple-system, BlinkMacSystemFont, \'San Francisco\', \'Segoe UI\', Roboto, \'Helvetica Neue\', sans-serif !important;\r\n      }\r\n\r\n      /* Force correct font size */\r\n      * {\r\n        -ms-text-size-adjust: 100%;\r\n        -webkit-text-size-adjust: 100%;\r\n        text-rendering: optimizeLegibility;\r\n        -webkit-font-smoothing: antialiased;\r\n      }\r\n\r\n      /* Prevent Outlook extra spacing */\r\n      table, td {\r\n        mso-table-lspace: 0pt !important;\r\n        mso-table-rspace: 0pt !important;\r\n        mso-line-height-rule: exactly;\r\n        border-collapse: collapse !important;\r\n      }\r\n\r\n      /* Fix webkit padding */\r\n      table {\r\n        border-spacing: 0 !important;\r\n        border-collapse: collapse !important;\r\n        table-layout: fixed !important;\r\n      }\r\n\r\n      /* What it does:Prevents Windows 10 Mail from underlining links despite inline CSS. Styles for underlined links should be inline. */\r\n      a {\r\n        text-decoration: none;\r\n        color: #0A0B0D;\r\n      }\r\n\r\n      /* Fix image rendering in IE */\r\n      img {\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      /* What it does:A work-around for email clients meddling in triggered links. */\r\n      a[x-apple-data-detectors],\r\n      /* iOS */\r\n      .unstyle-auto-detected-links a, .aBn {\r\n        border-bottom: 0 !important;\r\n        cursor: default !important;\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n\r\n      /* What it does:Prevents Gmail from changing the text color in conversation threads. */\r\n      .im {\r\n        color: inherit !important;\r\n      }\r\n\r\n      /* What it does:Prevents Gmail from displaying a download button on large, non-linked images. */\r\n      u + img + div {\r\n        display: none !important;\r\n        opacity: 0.01 !important;\r\n      }\r\n\r\n      /* Center your email in Outlook.com */\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass,.ExternalClass p,.ExternalClass span,.ExternalClass font,.ExternalClass td,.ExternalClass div {\r\n        line-height: 100%;\r\n      }\r\n\r\n      img {\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      .yshortcuts a {\r\n        border-bottom: none !important;\r\n      }\r\n\r\n      .hide {\r\n        visibility: hidden;\r\n        display: none;\r\n        mso-hide: all;\r\n      }\r\n\r\n      .mbl-show {\r\n        display: none;\r\n        mso-hide: all;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      /* Gmail link fix. Doesn\'t work for users who have images blocked by default */\r\n      u + #body a {\r\n        color: inherit;\r\n        text-decoration: none;\r\n        font-size: inherit;\r\n        font-family: inherit;\r\n        font-weight: inherit;\r\n        line-height: inherit;\r\n      }\r\n\r\n      /* Gmail Android fix to add proper spacing */\r\n      div > u + .body .gm-spacing {\r\n        line-height: 100% !important;\r\n        height: 100% !important;\r\n      }\r\n\r\n      u + .compliance a, p {\r\n        color: inherit;\r\n        text-decoration: none;\r\n        font-size: inherit;\r\n        font-family: inherit;\r\n        font-weight: inherit;\r\n        line-height: inherit;\r\n      }\r\n\r\n      /* Gmail dark mode - prevents text color to be changed */\r\n      u+#body .gmail-blend-screen {\r\n        background: #000 !important;\r\n        mix-blend-mode: screen;\r\n      }\r\n\r\n      u+#body .gmail-blend-difference {\r\n        background: #000 !important;\r\n        mix-blend-mode: difference;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n\r\n      /* Shows Dark Mode-Only Content, Like Images */\r\n      .dark-img {\r\n        display: block !important;\r\n        width: auto !important;\r\n        overflow: visible !important;\r\n        float: none !important;\r\n        max-height: inherit !important;\r\n        max-width: inherit !important;\r\n        line-height: auto !important;\r\n        margin-top: 0px !important;\r\n        visibility: inherit !important;\r\n      }\r\n\r\n      .dark-icon {\r\n        display: inline !important;\r\n        width: auto !important;\r\n        overflow: visible !important;\r\n        float: none !important;\r\n        max-height: inherit !important;\r\n        visibility: inherit !important;\r\n      }\r\n\r\n      /* Hides Light Mode-Only Content, Like Images */\r\n      .light-img {\r\n        display: none;\r\n        display: none !important;\r\n      }\r\n\r\n      /* Custom Dark Mode Background Color */\r\n      .darkmode {\r\n        background-color: #202124 !important;\r\n        background: #202124 !important;\r\n      }\r\n\r\n      .darkmode-white-background {\r\n        /* Uses fefefe because iOS darkmode doesn\'t respect the color set up by the class when is ffffff */\r\n        background-color: #fefefe !important;\r\n        background: #fefefe !important;\r\n      }\r\n\r\n      .darkmode-red-background {\r\n        background-color: #C70A24 !important;\r\n        background: #C70A24 !important;\r\n      }\r\n\r\n      .darkmode-gold-background {\r\n        background-color: #FFB800 !important;\r\n        background: #FFB800 !important;\r\n      }\r\n\r\n      .darkmode-green-background {\r\n        background-color: #008060 !important;\r\n      }\r\n\r\n      .darkmode-footer-help-background {\r\n        background-color: #27282A !important;\r\n        background: #27282A !important;\r\n      }\r\n\r\n      .darkmode-gray-cta-border {\r\n        border-color: #B5B5B5 !important;\r\n      }\r\n\r\n      .darkmode-red-cta-border {\r\n        border-color: #db6071 !important;\r\n      }\r\n\r\n      .darkmode-white-border {\r\n        border-color: #ffffff !important;\r\n      }\r\n\r\n      .darkmode-gray-border {\r\n        border-color: #37393B !important;\r\n      }\r\n\r\n      .darkmode-green-border {\r\n        border-color: #008060 !important;\r\n      }\r\n\r\n      /* Custom Dark Mode Font Colors */\r\n      h1,h2,h3,h4,p,span,li,a,b {\r\n      color: #EBEBEB !important;\r\n      }\r\n\r\n      .darkmode-black-text {\r\n        color: #000000 !important;\r\n      }\r\n\r\n      .darkmode-white-text {\r\n        color: #ffffff !important;\r\n      }\r\n    }\r\n    </style><style data-premailer=\"ignore\">\r\n      /* MEDIA QUERIES */\r\n      @media screen and (max-width: 619px) {\r\n\r\n        .force-row, .container {\r\n          width: 100% !important;\r\n          max-width: 100% !important;\r\n        }\r\n\r\n        /* What it does: Forces table cells into full-width rows. */\r\n        .mob-stack {\r\n          width: 100% !important;\r\n          display: block !important;\r\n          max-width: 100% !important;\r\n        }\r\n\r\n        .mbl-hide {\r\n          display: none !important;\r\n          font-size: 0;\r\n          max-height: 0;\r\n          line-height: 0;\r\n          padding: 0;\r\n          mso-hide: all;\r\n        }\r\n\r\n        .mbl-show {\r\n          display: inline-block !important;\r\n          max-height: none !important;\r\n        }\r\n\r\n        .mbl-center {\r\n          text-align: center !important;\r\n          margin: 0 auto !important;\r\n        }\r\n\r\n        .mbl-left {\r\n          text-align: left !important;\r\n        }\r\n\r\n        .mbl-right {\r\n          text-align: right !important;\r\n        }\r\n\r\n        /*\r\n        Similar setup to Bootstrap spacing classes\r\n        m - for classes that set margin\r\n        p - for classes that set padding\r\n\r\n        t - for classes that set margin-top or padding-top\r\n        b - for classes that set margin-bottom or padding-bottom\r\n        l - for classes that set margin-left or padding-left\r\n        r - for classes that set margin-right or padding-right\r\n        x - for classes that set both *-left and *-right\r\n        y - for classes that set both *-top and *-bottom\r\n        blank - for classes that set a margin or padding on all 4 sides of the element\r\n        */\r\n       .mx-2 {\r\n        margin-left: 20px !important;\r\n        margin-right: 20px !important;\r\n       }\r\n        .px-0 {\r\n          padding-right: 0 !important;\r\n          padding-left: 0 !important\r\n        }\r\n\r\n        .px-1 {\r\n          padding-right: 16px !important;\r\n          padding-left: 16px !important\r\n        }\r\n\r\n        .px-2 {\r\n          padding-right: 20px !important;\r\n          padding-left: 20px !important\r\n        }\r\n\r\n        .px-3 {\r\n          padding-right: 30px !important;\r\n          padding-left: 30px !important\r\n        }\r\n\r\n        .px-4 {\r\n          padding-right: 40px !important;\r\n          padding-left: 40px !important\r\n        }\r\n\r\n        .px-5 {\r\n          padding-right: 50px !important;\r\n          padding-left: 50px !important\r\n        }\r\n\r\n        .px-6 {\r\n          padding-right: 60px !important;\r\n          padding-left: 60px !important\r\n        }\r\n\r\n        .py-0 {\r\n          padding-top: 0 !important;\r\n          padding-bottom: 0 !important\r\n        }\r\n\r\n        .py-1 {\r\n          padding-top: 10px !important;\r\n          padding-bottom: 10px !important\r\n        }\r\n\r\n        .py-2 {\r\n          padding-top: 20px !important;\r\n          padding-bottom: 20px !important\r\n        }\r\n\r\n        .py-3 {\r\n          padding-top: 30px !important;\r\n          padding-bottom: 30px !important\r\n        }\r\n\r\n        .py-4 {\r\n          padding-top: 40px !important;\r\n          padding-bottom: 40px !important\r\n        }\r\n\r\n        .py-5 {\r\n          padding-top: 50px !important;\r\n          padding-bottom: 50px !important\r\n        }\r\n\r\n        .py-6 {\r\n          padding-top: 60px !important;\r\n          padding-bottom: 60px !important\r\n        }\r\n\r\n        .pt-0 {\r\n          padding-top: 0 !important\r\n        }\r\n\r\n        .pt-1 {\r\n          padding-top: 10px !important\r\n        }\r\n\r\n        .pt-2 {\r\n          padding-top: 20px !important\r\n        }\r\n\r\n        .pt-3 {\r\n          padding-top: 30px !important\r\n        }\r\n\r\n        .pt-4 {\r\n          padding-top: 40px !important\r\n        }\r\n\r\n        .pt-5 {\r\n          padding-top: 50px !important\r\n        }\r\n\r\n        .pt-6 {\r\n          padding-top: 60px !important;\r\n        }\r\n\r\n        .pb-0 {\r\n          padding-bottom: 0 !important\r\n        }\r\n\r\n        .pb-1 {\r\n          padding-bottom: 10px !important\r\n        }\r\n\r\n        .pb-2 {\r\n          padding-bottom: 20px !important\r\n        }\r\n\r\n        .pb-3 {\r\n          padding-bottom: 30px !important\r\n        }\r\n\r\n        .pb-4 {\r\n          padding-bottom: 40px !important\r\n        }\r\n\r\n        .pb-5 {\r\n          padding-bottom: 50px !important\r\n        }\r\n\r\n        .pb-6 {\r\n          padding-bottom: 60px !important;\r\n        }\r\n\r\n        .pr-0 {\r\n          padding-right: 0 !important\r\n        }\r\n\r\n        .pr-1 {\r\n          padding-right: 10px !important\r\n        }\r\n\r\n        .pr-2 {\r\n          padding-right: 20px !important\r\n        }\r\n\r\n        .pr-3 {\r\n          padding-right: 30px !important\r\n        }\r\n\r\n        .pr-4 {\r\n          padding-right: 40px !important\r\n        }\r\n\r\n        .pr-5 {\r\n          padding-right: 50px !important\r\n        }\r\n\r\n        .pr-6 {\r\n          padding-right: 60px !important;\r\n        }\r\n\r\n        .pl-0 {\r\n          padding-left: 0 !important\r\n        }\r\n\r\n        .pl-1 {\r\n          padding-left: 10px !important\r\n        }\r\n\r\n        .pl-2 {\r\n          padding-left: 20px !important\r\n        }\r\n\r\n        .pl-3 {\r\n          padding-left: 30px !important\r\n        }\r\n\r\n        .pl-4 {\r\n          padding-left: 40px !important\r\n        }\r\n\r\n        .pl-5 {\r\n          padding-left: 50px !important\r\n        }\r\n\r\n        .pl-6 {\r\n          padding-left: 60px !important;\r\n        }\r\n\r\n        .pl-8 {\r\n          padding-left: 80px !important;\r\n        }\r\n      }\r\n      @media only screen and (max-width: 480px){\r\n        .mbl-no-side-border {\r\n          border-radius: 0px !important;\r\n          border-left: none !important;\r\n          border-right: none !important;\r\n        }\r\n      }\r\n    </style></head>\r\n  \r\n    \r\n    <!-- So that mobile will display zoomed in -->\r\n    \r\n    <!-- enable media queries for windows phone 8 -->\r\n    \r\n    <!-- fixes email not full width ios gmail -->\r\n    \r\n    <!-- Enables Dark Mode in email client user agents -->\r\n    \r\n    \r\n    <!-- Prevent email clients automatically detecting and generating links out of phone numbers, dates, addresses, email addresses and url\'s -->\r\n    \r\n    \r\n    <!-- Premailer styles automatically inline - for transactional emails -->\r\n    \r\n    <!--[if !mso]><!-->\r\n    \r\n    <!--<![endif]-->\r\n    \r\n    \r\n    <!--[if gte mso 9]>\r\n      <xml>\r\n        <o:OfficeDocumentSettings>\r\n          <o:AllowPNG />\r\n          <o:PixelsPerInch>96</o:PixelsPerInch>\r\n        </o:OfficeDocumentSettings>\r\n      </xml>\r\n      <style data-premailer=\"ignore\" type=\"text/css\">\r\n      body,table,td,div,p,span,a,strong,h1,h2,h3,h4,h5,h6 {\r\n        font-family: Arial, sans-serif !important;\r\n      }\r\n\r\n      table {\r\n        border-collapse: collapse !important;\r\n      }\r\n\r\n      sup {\r\n        font-size: 100% !important;\r\n      }\r\n      </style>\r\n      <![endif]-->\r\n  \r\n  <body id=\"body\" class=\"body\" style=\"margin: 0; padding: 0;\" bgcolor=\"#ffffff\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">\r\n    <!-- 100% background wrapper (grey background) -->\r\n    <table class=\"editorContainer\" role=\"Newsletter\" aria-roledescription=\"email\" aria-label=\"Shopify\" lang=\"en\" dir=\"ltr\" border=\"0\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-size: max(14px, 1rem);\">\r\n      <tbody><tr>\r\n        <td class=\"darkmode\" align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"\">\r\n          <table class=\"container editorContainer\" role=\"presentation\" border=\"0\" width=\"470\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 470px; max-width: 470px;\">\r\n            <tbody><tr>\r\n              <!-- START CONTENT -->\r\n              <!-- ADD YOUR MODULES IN THE TD BELOW -->\r\n              <td class=\"contentContainer darkmode\" align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"\">\r\n                <div style=\"max-width: 470px; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif; font-weight: 400; font-size: 14px; line-height: 22px; margin: 0 auto;\">\r\n                  <!--[if (mso 16)]>\r\n                  <table role=\"presentation\" width=\"470\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                  <tr>\r\n                  <td valign=\"top\">\r\n                  <![endif]-->\r\n\r\n                  <div class=\"mbl-hide\" style=\"font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif; font-weight: 400; font-size: 14px; line-height: 22px;\">\r\n                    \r\n\r\n<table class=\"spacer darkmode\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n    <tbody><tr>\r\n        <td align=\"center\" height=\"20\" style=\"max-height: 20px; font-size: 0px; line-height: 20px;\"> </td>\r\n    </tr>\r\n</tbody></table>\r\n\r\n                  </div>\r\n\r\n                  <!-- ROUNDED BORDER WRAPPER -->\r\n                  <table class=\"mbl-no-side-border darkmode-gray-border\" role=\"presentation\" border=\"0\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; max-width: 470px; border-radius: 8px; border-collapse: separate !important; overflow: hidden; border: 1px solid #E3E3E3;\">\r\n                    <tbody><tr>\r\n                      <td class=\"transactionalContainer darkmode\" align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"\">\r\n                        <!--[if (gte mso 9)|(IE)]>\r\n                        <table role=\"presentation\" width=\"470\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                        <tr>\r\n                        <td valign=\"top\">\r\n                        <![endif]-->\r\n                        <!-- PRIORITY BAR -->\r\n                        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                          <tbody><tr>\r\n                            \r\n                          </tr>\r\n                        </tbody></table>\r\n                        <!-- END PRIORITY BAR -->\r\n                        <!-- TRANSACTIONAL CONTENT -->\r\n                        \r\n\r\n<table class=\"spacer darkmode\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n    <tbody><tr>\r\n        <td align=\"center\" height=\"20\" style=\"max-height: 20px; font-size: 0px; line-height: 20px;\"> </td>\r\n    </tr>\r\n</tbody></table>\r\n\r\n                        \r\n        \r\n\r\n        \r\n\r\n\r\n\r\n\r\n\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width: 100%;\" width=\"100%\">\r\n  <tbody><tr>\r\n    <td class=\"px-2 darkmode\" style=\"padding: 0px 20px;\" align=\"left\" bgcolor=\"#ffffff\">\r\n      <p style=\"font-size: 14px; line-height: 22px; color: #000000; font-weight: 400; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif;\">\r\n        \r\n                \r\n                \r\n                The following change was recently made for your store <a href=\"https://wqwdkv-g7.myshopify.com/admin\" style=\"text-decoration: none !important; color: #005BD3 !important; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif;\" target=\"_blank\">https://wqwdkv-g7.myshopify.com/admin</a> :\r\n            \r\n      </p>\r\n    </td>\r\n  </tr>\r\n</tbody></table>\r\n\r\n\r\n<table class=\"spacer darkmode\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n    <tbody><tr>\r\n        <td align=\"center\" height=\"16\" style=\"max-height: 16px; font-size: 0px; line-height: 16px;\"> </td>\r\n    </tr>\r\n</tbody></table>\r\n\r\n\r\n\r\n        \r\n        \r\n\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width: 100%;\" width=\"100%\">\r\n  <tbody><tr>\r\n    <td class=\"px-2 pl-4 darkmode\" style=\"padding: 0px 40px 0px 45px;\" align=\"left\" bgcolor=\"#ffffff\">\r\n      <!--[if mso]><table role=\"presentation\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td width=\"470\" align=\"left\"><![endif]-->\r\n      <ul class=\"glist\" style=\"margin-top: 0px; margin-bottom: 0px; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif; padding: 0px;\" align=\"left\" type=\"disc\">\r\n        <li style=\"margin-bottom: 0px; color: #000000; font-size: 14px; line-height: 20px;\">\r\n          <span style=\"color: #000000; font-size: 14px; line-height: 20px; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif;\">\r\n            \r\n                    My Store Admin changed primary domain from wqwdkv-g7.myshopify.com to shop.mavrix.one\r\n                \r\n          </span>\r\n        </li>\r\n      </ul>\r\n      <!--[if mso]></td></tr></table><![endif]-->\r\n    </td>\r\n  </tr>\r\n</tbody></table>\r\n\r\n\r\n        \r\n\r\n<table class=\"spacer darkmode\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n    <tbody><tr>\r\n        <td align=\"center\" height=\"16\" style=\"max-height: 16px; font-size: 0px; line-height: 16px;\"> </td>\r\n    </tr>\r\n</tbody></table>\r\n\r\n\r\n        \r\n        \r\n\r\n\r\n\r\n\r\n\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width: 100%;\" width=\"100%\">\r\n  <tbody><tr>\r\n    <td class=\"px-2 darkmode\" style=\"padding: 0px 20px;\" align=\"left\" bgcolor=\"#ffffff\">\r\n      <p style=\"font-size: 14px; line-height: 22px; color: #000000; font-weight: 400; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif;\">\r\n        \r\n                \r\n                \r\n                If this is an expected change, then all is well! If you did not authorize this change, please contact Shopify Support at <a href=\"https://help.shopify.com/en/support\" style=\"text-decoration: none !important; color: #005BD3 !important; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif;\" target=\"_blank\">https://help.shopify.com/en/support</a> and we&#39;ll be happy to help sort it out.\r\n            \r\n      </p>\r\n    </td>\r\n  </tr>\r\n</tbody></table>\r\n\r\n\r\n<table class=\"spacer darkmode\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n    <tbody><tr>\r\n        <td align=\"center\" height=\"16\" style=\"max-height: 16px; font-size: 0px; line-height: 16px;\"> </td>\r\n    </tr>\r\n</tbody></table>\r\n\r\n\r\n\r\n        \r\n\r\n<table class=\"spacer darkmode\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n    <tbody><tr>\r\n        <td align=\"center\" height=\"20\" style=\"max-height: 20px; font-size: 0px; line-height: 20px;\"> </td>\r\n    </tr>\r\n</tbody></table>\r\n\r\n    \r\n                        <!-- END TRANSACTIONAL CONTENT -->\r\n                        <!--[if (gte mso 9)|(IE)]>\r\n                        </td>\r\n                        </tr>\r\n                        </table>\r\n                        <![endif]-->\r\n                      </td>\r\n                    </tr>\r\n                  </tbody></table>\r\n                  <!-- END ROUNDED BORDER WRAPPER -->\r\n                  <!-- TRANSACTIONAL FOOTER -->\r\n                  <table class=\"header\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width: 100%;\" width=\"100%\">\r\n                    <!-- START HD102 -->\r\n                    <tbody><tr>\r\n                      <td align=\"center\" class=\"px-2 darkmode\" style=\"padding: 0px 40px;\" bgcolor=\"#ffffff\">\r\n                        \r\n\r\n<table class=\"spacer darkmode\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n    <tbody><tr>\r\n        <td align=\"center\" height=\"16\" style=\"max-height: 16px; font-size: 0px; line-height: 16px;\"> </td>\r\n    </tr>\r\n</tbody></table>\r\n\r\n\r\n                        <a alt=\"Shopify\" href=\"https://www.shopify.com?utm_source=mozart&amp;utm_medium=email\" target=\"_blank\" style=\"text-decoration: none !important; color: #005BD3 !important; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif;\">\r\n                          <img class=\"light-img\" alt=\"Shopify Logo\" src=\"https://cdn.shopify.com/static/email-modules-library/img/LogoPrimary_light.png\" style=\"width: 110px; height: auto; display: block; outline: none; border-style: none; border-width: 0;\" width=\"110\" height=\"auto\"/>\r\n                          <!-- The following Dark Mode logo image is hidden with MSO conditional code and inline CSS, but will be revealed once Dark Mode is triggered -->\r\n                          <!--[if !mso]><! -->\r\n                          <div class=\"dark-img\" style=\"display: none; overflow: hidden; width: 0px; max-height: 0px; max-width: 0px; line-height: 0px; visibility: hidden; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif; font-weight: 400; font-size: 14px;\">\r\n                            <img alt=\"Shopify Logo\" src=\"https://cdn.shopify.com/static/email-modules-library/img/ShopifyLogo_Primary_Trans.png\" style=\"width: 110px; height: auto; display: block; outline: none; border-style: none; border-width: 0;\" width=\"110\" height=\"auto\"/>\r\n                          </div>\r\n                          <!--<![endif]-->\r\n                        </a>\r\n\r\n                      </td>\r\n                    </tr>\r\n                    <!-- END HD102 -->\r\n                  </tbody></table>\r\n                  <table class=\"compliance\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width: 100%;\" width=\"100%\">\r\n                    <!-- START CM901 -->\r\n                      <tbody><tr>\r\n                        <td class=\"px-2 darkmode\" style=\"padding: 0px;\" align=\"center\" bgcolor=\"#ffffff\">\r\n                          \r\n\r\n<table class=\"spacer darkmode\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n    <tbody><tr>\r\n        <td align=\"center\" height=\"8\" style=\"max-height: 8px; font-size: 0px; line-height: 8px;\"> </td>\r\n    </tr>\r\n</tbody></table>\r\n\r\n                          <p style=\"font-size: 13px; line-height: 20px; color: #616161; font-weight: 400; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif;\">\r\n                            15‍1 O&#39;Con‍nor Str‍eet, Gro‍und fl‍oor, Ot‍tawa ON, K2P 2L8\r\n                          </p>\r\n                        </td>\r\n                      </tr>\r\n                      \r\n                      <!-- END CM901 -->\r\n                  </tbody></table>\r\n                  <!-- END TRANSACTIONAL FOOTER -->\r\n                  <!--[if (mso 16)]>\r\n                  </td>\r\n                  </tr>\r\n                  </table>\r\n                  <![endif]-->\r\n                </div>\r\n              </td>\r\n              <!-- END CONTENT -->\r\n            </tr>\r\n          </tbody></table>\r\n        </td>\r\n      </tr>\r\n    </tbody></table>\r\n    <!--100% background wrapper (grey background) -->\r\n  \r\n\r\n</body></html>','The following change was recently made for your\r\nstore https://wqwdkv-g7.myshopify.com/admin :\r\n\r\n*\r\n\r\nMy Store Admin changed primary domain from\r\nwqwdkv-g7.myshopify.com to shop.mavrix.one\r\n\r\nIf this is an expected change, then all is well!\r\nIf you did not authorize this change, please contact Shopify\r\nSupport at https://help.shopify.com/en/support and we\'ll be happy\r\nto help sort it out.\r\n\r\nShopify Logo\r\n\r\nShopify Logo\r\n\r\n\r\n( https://www.shopify.com?utm_source=mozart&utm_medium=email )\r\n\r\n15‍1 O\'Con‍nor Str‍eet,\r\nGro‍und fl‍oor, Ot‍tawa ON, K2P 2L8',0,0,0,0,0,0,'2025-07-11 21:20:22','2025-12-09 19:13:45','2025-12-09 19:13:45','2025-12-09 19:13:45',NULL,NULL,NULL),
(459,4,'<E102008F-18514FE453E81B26-A143D2A7@shopify.com>',NULL,NULL,'Settings have been changed for wqwdkv-g7.myshopify.com','mailer@shopify.com','Shopify','<!DOCTYPE html><html lang=\"en\" dir=\"ltr\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\r\n    <!-- Yahoo will strip this. Fixes yahoo app not being mobile responsive -->\r\n  <style>@font-face {\r\nfont-family: \'Inter Variable\'; font-weight: 100 900; font-display: swap; font-style: normal; font-named-instance: \'Regular\'; src: url(\"https://cdn.jsdelivr.net/fontsource/fonts/inter:vf@latest/latin-wght-normal.woff2\") format(\"woff2\");\r\n}\r\n</style>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/><meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"/><meta name=\"x-apple-disable-message-reformatting\"/><meta name=\"color-scheme\" content=\"light dark\"/><meta name=\"supported-color-schemes\" content=\"light dark\"/><meta name=\"format-detection\" content=\"telephone=no, date=no, address=no, email=no, url=no\"/><title>Shopify</title><style data-premailer=\"ignore\">\r\n      :root {\r\n        color-scheme: light dark;\r\n      }\r\n    </style><style data-premailer=\"ignore\" type=\"text/css\">\r\n      html, body {\r\n        margin: 0 auto !important;\r\n        padding: 0 !important;\r\n        height: 100% !important;\r\n        width: 100% !important;\r\n      }\r\n\r\n      /* Paragraph reset */\r\n      p {\r\n        margin: 0;\r\n        padding: 0;\r\n      }\r\n\r\n      /* Header reset */\r\n      h1,h2,h3,h4,h5,h6 {\r\n        display: block;\r\n        margin: 0;\r\n        padding: 0;\r\n      }\r\n\r\n      /* Image reset */\r\n      img, a img {\r\n        border: 0;\r\n        height: auto;\r\n        outline: none;\r\n        text-decoration: none;\r\n      }\r\n\r\n      /* Better superscript */\r\n      sup {\r\n        font-size: 66%;\r\n        line-height: 1;\r\n        vertical-align: top;\r\n        mso-text-raise: 30%;\r\n      }\r\n\r\n      /* Default web font \'ShopifySans\' and fallback sequency */\r\n      *, body, td, h1, h2, h3, h4, p, span {\r\n        font-family: \'Inter Variable\',-apple-system, BlinkMacSystemFont, \'San Francisco\', \'Segoe UI\', Roboto, \'Helvetica Neue\', sans-serif !important;\r\n      }\r\n\r\n      /* Force correct font size */\r\n      * {\r\n        -ms-text-size-adjust: 100%;\r\n        -webkit-text-size-adjust: 100%;\r\n        text-rendering: optimizeLegibility;\r\n        -webkit-font-smoothing: antialiased;\r\n      }\r\n\r\n      /* Prevent Outlook extra spacing */\r\n      table, td {\r\n        mso-table-lspace: 0pt !important;\r\n        mso-table-rspace: 0pt !important;\r\n        mso-line-height-rule: exactly;\r\n        border-collapse: collapse !important;\r\n      }\r\n\r\n      /* Fix webkit padding */\r\n      table {\r\n        border-spacing: 0 !important;\r\n        border-collapse: collapse !important;\r\n        table-layout: fixed !important;\r\n      }\r\n\r\n      /* What it does:Prevents Windows 10 Mail from underlining links despite inline CSS. Styles for underlined links should be inline. */\r\n      a {\r\n        text-decoration: none;\r\n        color: #0A0B0D;\r\n      }\r\n\r\n      /* Fix image rendering in IE */\r\n      img {\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      /* What it does:A work-around for email clients meddling in triggered links. */\r\n      a[x-apple-data-detectors],\r\n      /* iOS */\r\n      .unstyle-auto-detected-links a, .aBn {\r\n        border-bottom: 0 !important;\r\n        cursor: default !important;\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n\r\n      /* What it does:Prevents Gmail from changing the text color in conversation threads. */\r\n      .im {\r\n        color: inherit !important;\r\n      }\r\n\r\n      /* What it does:Prevents Gmail from displaying a download button on large, non-linked images. */\r\n      u + img + div {\r\n        display: none !important;\r\n        opacity: 0.01 !important;\r\n      }\r\n\r\n      /* Center your email in Outlook.com */\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass,.ExternalClass p,.ExternalClass span,.ExternalClass font,.ExternalClass td,.ExternalClass div {\r\n        line-height: 100%;\r\n      }\r\n\r\n      img {\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      .yshortcuts a {\r\n        border-bottom: none !important;\r\n      }\r\n\r\n      .hide {\r\n        visibility: hidden;\r\n        display: none;\r\n        mso-hide: all;\r\n      }\r\n\r\n      .mbl-show {\r\n        display: none;\r\n        mso-hide: all;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      /* Gmail link fix. Doesn\'t work for users who have images blocked by default */\r\n      u + #body a {\r\n        color: inherit;\r\n        text-decoration: none;\r\n        font-size: inherit;\r\n        font-family: inherit;\r\n        font-weight: inherit;\r\n        line-height: inherit;\r\n      }\r\n\r\n      /* Gmail Android fix to add proper spacing */\r\n      div > u + .body .gm-spacing {\r\n        line-height: 100% !important;\r\n        height: 100% !important;\r\n      }\r\n\r\n      u + .compliance a, p {\r\n        color: inherit;\r\n        text-decoration: none;\r\n        font-size: inherit;\r\n        font-family: inherit;\r\n        font-weight: inherit;\r\n        line-height: inherit;\r\n      }\r\n\r\n      /* Gmail dark mode - prevents text color to be changed */\r\n      u+#body .gmail-blend-screen {\r\n        background: #000 !important;\r\n        mix-blend-mode: screen;\r\n      }\r\n\r\n      u+#body .gmail-blend-difference {\r\n        background: #000 !important;\r\n        mix-blend-mode: difference;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n\r\n      /* Shows Dark Mode-Only Content, Like Images */\r\n      .dark-img {\r\n        display: block !important;\r\n        width: auto !important;\r\n        overflow: visible !important;\r\n        float: none !important;\r\n        max-height: inherit !important;\r\n        max-width: inherit !important;\r\n        line-height: auto !important;\r\n        margin-top: 0px !important;\r\n        visibility: inherit !important;\r\n      }\r\n\r\n      .dark-icon {\r\n        display: inline !important;\r\n        width: auto !important;\r\n        overflow: visible !important;\r\n        float: none !important;\r\n        max-height: inherit !important;\r\n        visibility: inherit !important;\r\n      }\r\n\r\n      /* Hides Light Mode-Only Content, Like Images */\r\n      .light-img {\r\n        display: none;\r\n        display: none !important;\r\n      }\r\n\r\n      /* Custom Dark Mode Background Color */\r\n      .darkmode {\r\n        background-color: #202124 !important;\r\n        background: #202124 !important;\r\n      }\r\n\r\n      .darkmode-white-background {\r\n        /* Uses fefefe because iOS darkmode doesn\'t respect the color set up by the class when is ffffff */\r\n        background-color: #fefefe !important;\r\n        background: #fefefe !important;\r\n      }\r\n\r\n      .darkmode-red-background {\r\n        background-color: #C70A24 !important;\r\n        background: #C70A24 !important;\r\n      }\r\n\r\n      .darkmode-gold-background {\r\n        background-color: #FFB800 !important;\r\n        background: #FFB800 !important;\r\n      }\r\n\r\n      .darkmode-green-background {\r\n        background-color: #008060 !important;\r\n      }\r\n\r\n      .darkmode-footer-help-background {\r\n        background-color: #27282A !important;\r\n        background: #27282A !important;\r\n      }\r\n\r\n      .darkmode-gray-cta-border {\r\n        border-color: #B5B5B5 !important;\r\n      }\r\n\r\n      .darkmode-red-cta-border {\r\n        border-color: #db6071 !important;\r\n      }\r\n\r\n      .darkmode-white-border {\r\n        border-color: #ffffff !important;\r\n      }\r\n\r\n      .darkmode-gray-border {\r\n        border-color: #37393B !important;\r\n      }\r\n\r\n      .darkmode-green-border {\r\n        border-color: #008060 !important;\r\n      }\r\n\r\n      /* Custom Dark Mode Font Colors */\r\n      h1,h2,h3,h4,p,span,li,a,b {\r\n      color: #EBEBEB !important;\r\n      }\r\n\r\n      .darkmode-black-text {\r\n        color: #000000 !important;\r\n      }\r\n\r\n      .darkmode-white-text {\r\n        color: #ffffff !important;\r\n      }\r\n    }\r\n    </style><style data-premailer=\"ignore\">\r\n      /* MEDIA QUERIES */\r\n      @media screen and (max-width: 619px) {\r\n\r\n        .force-row, .container {\r\n          width: 100% !important;\r\n          max-width: 100% !important;\r\n        }\r\n\r\n        /* What it does: Forces table cells into full-width rows. */\r\n        .mob-stack {\r\n          width: 100% !important;\r\n          display: block !important;\r\n          max-width: 100% !important;\r\n        }\r\n\r\n        .mbl-hide {\r\n          display: none !important;\r\n          font-size: 0;\r\n          max-height: 0;\r\n          line-height: 0;\r\n          padding: 0;\r\n          mso-hide: all;\r\n        }\r\n\r\n        .mbl-show {\r\n          display: inline-block !important;\r\n          max-height: none !important;\r\n        }\r\n\r\n        .mbl-center {\r\n          text-align: center !important;\r\n          margin: 0 auto !important;\r\n        }\r\n\r\n        .mbl-left {\r\n          text-align: left !important;\r\n        }\r\n\r\n        .mbl-right {\r\n          text-align: right !important;\r\n        }\r\n\r\n        /*\r\n        Similar setup to Bootstrap spacing classes\r\n        m - for classes that set margin\r\n        p - for classes that set padding\r\n\r\n        t - for classes that set margin-top or padding-top\r\n        b - for classes that set margin-bottom or padding-bottom\r\n        l - for classes that set margin-left or padding-left\r\n        r - for classes that set margin-right or padding-right\r\n        x - for classes that set both *-left and *-right\r\n        y - for classes that set both *-top and *-bottom\r\n        blank - for classes that set a margin or padding on all 4 sides of the element\r\n        */\r\n       .mx-2 {\r\n        margin-left: 20px !important;\r\n        margin-right: 20px !important;\r\n       }\r\n        .px-0 {\r\n          padding-right: 0 !important;\r\n          padding-left: 0 !important\r\n        }\r\n\r\n        .px-1 {\r\n          padding-right: 16px !important;\r\n          padding-left: 16px !important\r\n        }\r\n\r\n        .px-2 {\r\n          padding-right: 20px !important;\r\n          padding-left: 20px !important\r\n        }\r\n\r\n        .px-3 {\r\n          padding-right: 30px !important;\r\n          padding-left: 30px !important\r\n        }\r\n\r\n        .px-4 {\r\n          padding-right: 40px !important;\r\n          padding-left: 40px !important\r\n        }\r\n\r\n        .px-5 {\r\n          padding-right: 50px !important;\r\n          padding-left: 50px !important\r\n        }\r\n\r\n        .px-6 {\r\n          padding-right: 60px !important;\r\n          padding-left: 60px !important\r\n        }\r\n\r\n        .py-0 {\r\n          padding-top: 0 !important;\r\n          padding-bottom: 0 !important\r\n        }\r\n\r\n        .py-1 {\r\n          padding-top: 10px !important;\r\n          padding-bottom: 10px !important\r\n        }\r\n\r\n        .py-2 {\r\n          padding-top: 20px !important;\r\n          padding-bottom: 20px !important\r\n        }\r\n\r\n        .py-3 {\r\n          padding-top: 30px !important;\r\n          padding-bottom: 30px !important\r\n        }\r\n\r\n        .py-4 {\r\n          padding-top: 40px !important;\r\n          padding-bottom: 40px !important\r\n        }\r\n\r\n        .py-5 {\r\n          padding-top: 50px !important;\r\n          padding-bottom: 50px !important\r\n        }\r\n\r\n        .py-6 {\r\n          padding-top: 60px !important;\r\n          padding-bottom: 60px !important\r\n        }\r\n\r\n        .pt-0 {\r\n          padding-top: 0 !important\r\n        }\r\n\r\n        .pt-1 {\r\n          padding-top: 10px !important\r\n        }\r\n\r\n        .pt-2 {\r\n          padding-top: 20px !important\r\n        }\r\n\r\n        .pt-3 {\r\n          padding-top: 30px !important\r\n        }\r\n\r\n        .pt-4 {\r\n          padding-top: 40px !important\r\n        }\r\n\r\n        .pt-5 {\r\n          padding-top: 50px !important\r\n        }\r\n\r\n        .pt-6 {\r\n          padding-top: 60px !important;\r\n        }\r\n\r\n        .pb-0 {\r\n          padding-bottom: 0 !important\r\n        }\r\n\r\n        .pb-1 {\r\n          padding-bottom: 10px !important\r\n        }\r\n\r\n        .pb-2 {\r\n          padding-bottom: 20px !important\r\n        }\r\n\r\n        .pb-3 {\r\n          padding-bottom: 30px !important\r\n        }\r\n\r\n        .pb-4 {\r\n          padding-bottom: 40px !important\r\n        }\r\n\r\n        .pb-5 {\r\n          padding-bottom: 50px !important\r\n        }\r\n\r\n        .pb-6 {\r\n          padding-bottom: 60px !important;\r\n        }\r\n\r\n        .pr-0 {\r\n          padding-right: 0 !important\r\n        }\r\n\r\n        .pr-1 {\r\n          padding-right: 10px !important\r\n        }\r\n\r\n        .pr-2 {\r\n          padding-right: 20px !important\r\n        }\r\n\r\n        .pr-3 {\r\n          padding-right: 30px !important\r\n        }\r\n\r\n        .pr-4 {\r\n          padding-right: 40px !important\r\n        }\r\n\r\n        .pr-5 {\r\n          padding-right: 50px !important\r\n        }\r\n\r\n        .pr-6 {\r\n          padding-right: 60px !important;\r\n        }\r\n\r\n        .pl-0 {\r\n          padding-left: 0 !important\r\n        }\r\n\r\n        .pl-1 {\r\n          padding-left: 10px !important\r\n        }\r\n\r\n        .pl-2 {\r\n          padding-left: 20px !important\r\n        }\r\n\r\n        .pl-3 {\r\n          padding-left: 30px !important\r\n        }\r\n\r\n        .pl-4 {\r\n          padding-left: 40px !important\r\n        }\r\n\r\n        .pl-5 {\r\n          padding-left: 50px !important\r\n        }\r\n\r\n        .pl-6 {\r\n          padding-left: 60px !important;\r\n        }\r\n\r\n        .pl-8 {\r\n          padding-left: 80px !important;\r\n        }\r\n      }\r\n      @media only screen and (max-width: 480px){\r\n        .mbl-no-side-border {\r\n          border-radius: 0px !important;\r\n          border-left: none !important;\r\n          border-right: none !important;\r\n        }\r\n      }\r\n    </style></head>\r\n  \r\n    \r\n    <!-- So that mobile will display zoomed in -->\r\n    \r\n    <!-- enable media queries for windows phone 8 -->\r\n    \r\n    <!-- fixes email not full width ios gmail -->\r\n    \r\n    <!-- Enables Dark Mode in email client user agents -->\r\n    \r\n    \r\n    <!-- Prevent email clients automatically detecting and generating links out of phone numbers, dates, addresses, email addresses and url\'s -->\r\n    \r\n    \r\n    <!-- Premailer styles automatically inline - for transactional emails -->\r\n    \r\n    <!--[if !mso]><!-->\r\n    \r\n    <!--<![endif]-->\r\n    \r\n    \r\n    <!--[if gte mso 9]>\r\n      <xml>\r\n        <o:OfficeDocumentSettings>\r\n          <o:AllowPNG />\r\n          <o:PixelsPerInch>96</o:PixelsPerInch>\r\n        </o:OfficeDocumentSettings>\r\n      </xml>\r\n      <style data-premailer=\"ignore\" type=\"text/css\">\r\n      body,table,td,div,p,span,a,strong,h1,h2,h3,h4,h5,h6 {\r\n        font-family: Arial, sans-serif !important;\r\n      }\r\n\r\n      table {\r\n        border-collapse: collapse !important;\r\n      }\r\n\r\n      sup {\r\n        font-size: 100% !important;\r\n      }\r\n      </style>\r\n      <![endif]-->\r\n  \r\n  <body id=\"body\" class=\"body\" style=\"margin: 0; padding: 0;\" bgcolor=\"#ffffff\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">\r\n    <!-- 100% background wrapper (grey background) -->\r\n    <table class=\"editorContainer\" role=\"Newsletter\" aria-roledescription=\"email\" aria-label=\"Shopify\" lang=\"en\" dir=\"ltr\" border=\"0\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-size: max(14px, 1rem);\">\r\n      <tbody><tr>\r\n        <td class=\"darkmode\" align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"\">\r\n          <table class=\"container editorContainer\" role=\"presentation\" border=\"0\" width=\"470\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 470px; max-width: 470px;\">\r\n            <tbody><tr>\r\n              <!-- START CONTENT -->\r\n              <!-- ADD YOUR MODULES IN THE TD BELOW -->\r\n              <td class=\"contentContainer darkmode\" align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"\">\r\n                <div style=\"max-width: 470px; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif; font-weight: 400; font-size: 14px; line-height: 22px; margin: 0 auto;\">\r\n                  <!--[if (mso 16)]>\r\n                  <table role=\"presentation\" width=\"470\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                  <tr>\r\n                  <td valign=\"top\">\r\n                  <![endif]-->\r\n\r\n                  <div class=\"mbl-hide\" style=\"font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif; font-weight: 400; font-size: 14px; line-height: 22px;\">\r\n                    \r\n\r\n<table class=\"spacer darkmode\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n    <tbody><tr>\r\n        <td align=\"center\" height=\"20\" style=\"max-height: 20px; font-size: 0px; line-height: 20px;\"> </td>\r\n    </tr>\r\n</tbody></table>\r\n\r\n                  </div>\r\n\r\n                  <!-- ROUNDED BORDER WRAPPER -->\r\n                  <table class=\"mbl-no-side-border darkmode-gray-border\" role=\"presentation\" border=\"0\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; max-width: 470px; border-radius: 8px; border-collapse: separate !important; overflow: hidden; border: 1px solid #E3E3E3;\">\r\n                    <tbody><tr>\r\n                      <td class=\"transactionalContainer darkmode\" align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"\">\r\n                        <!--[if (gte mso 9)|(IE)]>\r\n                        <table role=\"presentation\" width=\"470\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                        <tr>\r\n                        <td valign=\"top\">\r\n                        <![endif]-->\r\n                        <!-- PRIORITY BAR -->\r\n                        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                          <tbody><tr>\r\n                            \r\n                          </tr>\r\n                        </tbody></table>\r\n                        <!-- END PRIORITY BAR -->\r\n                        <!-- TRANSACTIONAL CONTENT -->\r\n                        \r\n\r\n<table class=\"spacer darkmode\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n    <tbody><tr>\r\n        <td align=\"center\" height=\"20\" style=\"max-height: 20px; font-size: 0px; line-height: 20px;\"> </td>\r\n    </tr>\r\n</tbody></table>\r\n\r\n                        \r\n        \r\n\r\n        \r\n\r\n\r\n\r\n\r\n\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width: 100%;\" width=\"100%\">\r\n  <tbody><tr>\r\n    <td class=\"px-2 darkmode\" style=\"padding: 0px 20px;\" align=\"left\" bgcolor=\"#ffffff\">\r\n      <p style=\"font-size: 14px; line-height: 22px; color: #000000; font-weight: 400; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif;\">\r\n        \r\n                \r\n                \r\n                The following change was recently made for your store <a href=\"https://wqwdkv-g7.myshopify.com/admin\" style=\"text-decoration: none !important; color: #005BD3 !important; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif;\" target=\"_blank\">https://wqwdkv-g7.myshopify.com/admin</a> :\r\n            \r\n      </p>\r\n    </td>\r\n  </tr>\r\n</tbody></table>\r\n\r\n\r\n<table class=\"spacer darkmode\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n    <tbody><tr>\r\n        <td align=\"center\" height=\"16\" style=\"max-height: 16px; font-size: 0px; line-height: 16px;\"> </td>\r\n    </tr>\r\n</tbody></table>\r\n\r\n\r\n\r\n        \r\n        \r\n\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width: 100%;\" width=\"100%\">\r\n  <tbody><tr>\r\n    <td class=\"px-2 pl-4 darkmode\" style=\"padding: 0px 40px 0px 45px;\" align=\"left\" bgcolor=\"#ffffff\">\r\n      <!--[if mso]><table role=\"presentation\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td width=\"470\" align=\"left\"><![endif]-->\r\n      <ul class=\"glist\" style=\"margin-top: 0px; margin-bottom: 0px; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif; padding: 0px;\" align=\"left\" type=\"disc\">\r\n        <li style=\"margin-bottom: 0px; color: #000000; font-size: 14px; line-height: 20px;\">\r\n          <span style=\"color: #000000; font-size: 14px; line-height: 20px; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif;\">\r\n            \r\n                    My Store Admin disabled storefront password\r\n                \r\n          </span>\r\n        </li>\r\n      </ul>\r\n      <!--[if mso]></td></tr></table><![endif]-->\r\n    </td>\r\n  </tr>\r\n</tbody></table>\r\n\r\n\r\n        \r\n\r\n<table class=\"spacer darkmode\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n    <tbody><tr>\r\n        <td align=\"center\" height=\"16\" style=\"max-height: 16px; font-size: 0px; line-height: 16px;\"> </td>\r\n    </tr>\r\n</tbody></table>\r\n\r\n\r\n        \r\n        \r\n\r\n\r\n\r\n\r\n\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width: 100%;\" width=\"100%\">\r\n  <tbody><tr>\r\n    <td class=\"px-2 darkmode\" style=\"padding: 0px 20px;\" align=\"left\" bgcolor=\"#ffffff\">\r\n      <p style=\"font-size: 14px; line-height: 22px; color: #000000; font-weight: 400; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif;\">\r\n        \r\n                \r\n                \r\n                If this is an expected change, then all is well! If you did not authorize this change, please contact Shopify Support at <a href=\"https://help.shopify.com/en/support\" style=\"text-decoration: none !important; color: #005BD3 !important; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif;\" target=\"_blank\">https://help.shopify.com/en/support</a> and we&#39;ll be happy to help sort it out.\r\n            \r\n      </p>\r\n    </td>\r\n  </tr>\r\n</tbody></table>\r\n\r\n\r\n<table class=\"spacer darkmode\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n    <tbody><tr>\r\n        <td align=\"center\" height=\"16\" style=\"max-height: 16px; font-size: 0px; line-height: 16px;\"> </td>\r\n    </tr>\r\n</tbody></table>\r\n\r\n\r\n\r\n        \r\n\r\n<table class=\"spacer darkmode\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n    <tbody><tr>\r\n        <td align=\"center\" height=\"20\" style=\"max-height: 20px; font-size: 0px; line-height: 20px;\"> </td>\r\n    </tr>\r\n</tbody></table>\r\n\r\n    \r\n                        <!-- END TRANSACTIONAL CONTENT -->\r\n                        <!--[if (gte mso 9)|(IE)]>\r\n                        </td>\r\n                        </tr>\r\n                        </table>\r\n                        <![endif]-->\r\n                      </td>\r\n                    </tr>\r\n                  </tbody></table>\r\n                  <!-- END ROUNDED BORDER WRAPPER -->\r\n                  <!-- TRANSACTIONAL FOOTER -->\r\n                  <table class=\"header\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width: 100%;\" width=\"100%\">\r\n                    <!-- START HD102 -->\r\n                    <tbody><tr>\r\n                      <td align=\"center\" class=\"px-2 darkmode\" style=\"padding: 0px 40px;\" bgcolor=\"#ffffff\">\r\n                        \r\n\r\n<table class=\"spacer darkmode\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n    <tbody><tr>\r\n        <td align=\"center\" height=\"16\" style=\"max-height: 16px; font-size: 0px; line-height: 16px;\"> </td>\r\n    </tr>\r\n</tbody></table>\r\n\r\n\r\n                        <a alt=\"Shopify\" href=\"https://www.shopify.com?utm_source=mozart&amp;utm_medium=email\" target=\"_blank\" style=\"text-decoration: none !important; color: #005BD3 !important; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif;\">\r\n                          <img class=\"light-img\" alt=\"Shopify Logo\" src=\"https://cdn.shopify.com/static/email-modules-library/img/LogoPrimary_light.png\" style=\"width: 110px; height: auto; display: block; outline: none; border-style: none; border-width: 0;\" width=\"110\" height=\"auto\"/>\r\n                          <!-- The following Dark Mode logo image is hidden with MSO conditional code and inline CSS, but will be revealed once Dark Mode is triggered -->\r\n                          <!--[if !mso]><! -->\r\n                          <div class=\"dark-img\" style=\"display: none; overflow: hidden; width: 0px; max-height: 0px; max-width: 0px; line-height: 0px; visibility: hidden; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif; font-weight: 400; font-size: 14px;\">\r\n                            <img alt=\"Shopify Logo\" src=\"https://cdn.shopify.com/static/email-modules-library/img/ShopifyLogo_Primary_Trans.png\" style=\"width: 110px; height: auto; display: block; outline: none; border-style: none; border-width: 0;\" width=\"110\" height=\"auto\"/>\r\n                          </div>\r\n                          <!--<![endif]-->\r\n                        </a>\r\n\r\n                      </td>\r\n                    </tr>\r\n                    <!-- END HD102 -->\r\n                  </tbody></table>\r\n                  <table class=\"compliance\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width: 100%;\" width=\"100%\">\r\n                    <!-- START CM901 -->\r\n                      <tbody><tr>\r\n                        <td class=\"px-2 darkmode\" style=\"padding: 0px;\" align=\"center\" bgcolor=\"#ffffff\">\r\n                          \r\n\r\n<table class=\"spacer darkmode\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n    <tbody><tr>\r\n        <td align=\"center\" height=\"8\" style=\"max-height: 8px; font-size: 0px; line-height: 8px;\"> </td>\r\n    </tr>\r\n</tbody></table>\r\n\r\n                          <p style=\"font-size: 13px; line-height: 20px; color: #616161; font-weight: 400; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif;\">\r\n                            15‍1 O&#39;Con‍nor Str‍eet, Gro‍und fl‍oor, Ot‍tawa ON, K2P 2L8\r\n                          </p>\r\n                        </td>\r\n                      </tr>\r\n                      \r\n                      <!-- END CM901 -->\r\n                  </tbody></table>\r\n                  <!-- END TRANSACTIONAL FOOTER -->\r\n                  <!--[if (mso 16)]>\r\n                  </td>\r\n                  </tr>\r\n                  </table>\r\n                  <![endif]-->\r\n                </div>\r\n              </td>\r\n              <!-- END CONTENT -->\r\n            </tr>\r\n          </tbody></table>\r\n        </td>\r\n      </tr>\r\n    </tbody></table>\r\n    <!--100% background wrapper (grey background) -->\r\n  \r\n\r\n</body></html>','The following change was recently made for your\r\nstore https://wqwdkv-g7.myshopify.com/admin :\r\n\r\n*\r\n\r\nMy Store Admin disabled storefront password\r\n\r\nIf this is an expected change, then all is well!\r\nIf you did not authorize this change, please contact Shopify\r\nSupport at https://help.shopify.com/en/support and we\'ll be happy\r\nto help sort it out.\r\n\r\nShopify Logo\r\n\r\nShopify Logo\r\n\r\n\r\n( https://www.shopify.com?utm_source=mozart&utm_medium=email )\r\n\r\n15‍1 O\'Con‍nor Str‍eet,\r\nGro‍und fl‍oor, Ot‍tawa ON, K2P 2L8',0,0,0,0,0,0,'2025-07-11 21:32:52','2025-12-09 19:13:45','2025-12-09 19:13:45','2025-12-09 19:13:45',NULL,NULL,NULL),
(460,4,'<1013418605.8309775.1752446914036@lor1-app103569.prod.linkedin.com>',NULL,NULL,'Next, add Bill to your network','messages-noreply@linkedin.com','LinkedIn','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n              @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n            </style> <style>\r\n            @media (max-width: 480px) { .inline-button, .inline-button table { display: none !important; }\r\n            .full-width-button, .full-width-button table { display: table !important; } }\r\n          </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n            \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n            \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">Next steps to grow in your career</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-top: 0px; margin-bottom: 0px; margin-left: auto; margin-right: auto; width: 512px; max-width: 512px; padding: 0px;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"bg-color-background-container \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1d4kSmEBCoGXQ1&amp;trk=eml-email_welcome_series_01-header-0-home_glimmer_static_badging_with_count&amp;trkEmail=eml-email_welcome_series_01-header-0-home_glimmer_static_badging_with_count-null-poh2nf~md29n7tg~h5-null-null&amp;eid=poh2nf-md29n7tg-h5&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjA4YmM4ZDk0MDliYTY4YTZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmNGViZmQwZTg3ZjM5ZTYwMjMzMjJiOTU1MjI2NDQ4NDI5Y2RjMTYzM2YzZTgxZjcsMSwx\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img class=\"h-[37px] w-[101px]\" alt=\"LinkedIn\" src=\"https://static.licdn.com/sc/h/2fp5x7ci191mxbdy1eynscn59\" data-test-header-static-badging-img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 37px; width: 101px;\" width=\"101\" height=\"37\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" data-test-header-notification-badges style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/messaging/?lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1d4kSmEBCoGXQ1&amp;trk=eml-email_welcome_series_01-header-0-messaging_glimmer&amp;trkEmail=eml-email_welcome_series_01-header-0-messaging_glimmer-null-poh2nf~md29n7tg~h5-null-null&amp;eid=poh2nf-md29n7tg-h5&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjA4YmM4ZDk0MDliYTY4YTZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmNGViZmQwZTg3ZjM5ZTYwMjMzMjJiOTU1MjI2NDQ4NDI5Y2RjMTYzM2YzZTgxZjcsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Messaging icon\" src=\"https://static.licdn.com/sc/h/544ehko5v555ey4s5ddccly28\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/?lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1d4kSmEBCoGXQ1&amp;trk=eml-email_welcome_series_01-header-0-my_network_glimmer&amp;trkEmail=eml-email_welcome_series_01-header-0-my_network_glimmer-null-poh2nf~md29n7tg~h5-null-null&amp;eid=poh2nf-md29n7tg-h5&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjA4YmM4ZDk0MDliYTY4YTZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmNGViZmQwZTg3ZjM5ZTYwMjMzMjJiOTU1MjI2NDQ4NDI5Y2RjMTYzM2YzZTgxZjcsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Mynetwork icon\" src=\"https://static.licdn.com/sc/h/4yxfb6j5ycpjfjgehfqgmdx9w\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/notifications/?lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1d4kSmEBCoGXQ1&amp;trk=eml-email_welcome_series_01-header-0-notifications_glimmer&amp;trkEmail=eml-email_welcome_series_01-header-0-notifications_glimmer-null-poh2nf~md29n7tg~h5-null-null&amp;eid=poh2nf-md29n7tg-h5&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjA4YmM4ZDk0MDliYTY4YTZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmNGViZmQwZTg3ZjM5ZTYwMjMzMjJiOTU1MjI2NDQ4NDI5Y2RjMTYzM2YzZTgxZjcsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Notifications icon\" src=\"https://static.licdn.com/sc/h/pv3xgjgk9l4acqb1ukwqiuee\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"px-3 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px; padding-bottom: 24px;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <h2 class=\"text-xl text-color-text font-bold leading-regular\" style=\"margin: 0; font-size: 24px; font-weight: 600; line-height: 1.25; color: rgba(0, 0, 0, 0.9);\">Now, take these next steps for more success</h2> </td> </tr> <tr> <td class=\"pt-4\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 32px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <h2 class=\"text-lg text-color-text font-semibold leading-regular\" style=\"margin: 0; font-size: 20px; font-weight: 600; line-height: 1.25; color: rgba(0, 0, 0, 0.9);\">Grow your network for career support</h2> </td> </tr> <tr> <td class=\"text-sm text-black-a60 leading-regular pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px; font-size: 14px; line-height: 1.25; color: rgba(0, 0, 0, 0.6);\"> Because you viewed Pakistan Republic’s post </td> </tr> <tr data-test-id=\"pymk-card-section\"> <td align=\"center\" class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"w-1/2 pr-1 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-right: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/williamdiaz?lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1d4kSmEBCoGXQ1&amp;trk=eml-email_welcome_series_01-pymk~cohort-0-profile_link&amp;trkEmail=eml-email_welcome_series_01-pymk~cohort-0-profile_link-null-poh2nf~md29n7tg~h5-null-null&amp;eid=poh2nf-md29n7tg-h5&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjA4YmM4ZDk0MDliYTY4YTZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmNGViZmQwZTg3ZjM5ZTYwMjMzMjJiOTU1MjI2NDQ4NDI5Y2RjMTYzM2YzZTgxZjcsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/C4E03AQENE1C2-yPr9Q/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1517712822159?e=2147483647&amp;v=beta&amp;t=0apP4SiSxF7bJx3nF9HL01HjF6jtpKwUUolBxyOo3V4\" alt=\"Bill Diaz’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 88px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"88\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Bill Diaz </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer, Archer </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/williamdiaz/?lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&amp;midSig=1d4kSmEBCoGXQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_welcome_series_01-pymk%7Ecohort-0-connect%7Ecta-null-poh2nf%7Emd29n7tg%7Eh5-null-null&amp;trk=eml-email_welcome_series_01-pymk%7Ecohort-0-connect%7Ecta&amp;_sig=3_AVAgdz-oGXQ1\" target=\"_blank\" aria-label=\"Connect with Bill Diaz\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/williamdiaz/?lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&amp;midSig=1d4kSmEBCoGXQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_welcome_series_01-pymk%7Ecohort-0-connect%7Ecta-null-poh2nf%7Emd29n7tg%7Eh5-null-null&amp;trk=eml-email_welcome_series_01-pymk%7Ecohort-0-connect%7Ecta&amp;_sig=3_AVAgdz-oGXQ1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"w-1/2 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/scott-perry-5989a120?lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1d4kSmEBCoGXQ1&amp;trk=eml-email_welcome_series_01-pymk~cohort-0-profile_link&amp;trkEmail=eml-email_welcome_series_01-pymk~cohort-0-profile_link-null-poh2nf~md29n7tg~h5-null-null&amp;eid=poh2nf-md29n7tg-h5&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjA4YmM4ZDk0MDliYTY4YTZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmNGViZmQwZTg3ZjM5ZTYwMjMzMjJiOTU1MjI2NDQ4NDI5Y2RjMTYzM2YzZTgxZjcsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://static.licdn.com/sc/h/4eby4moebno1i6r34if7lud8o\" alt=\"Scott Perry’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 88px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"88\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Scott Perry </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/scott-perry-5989a120/?lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&amp;midSig=1d4kSmEBCoGXQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_welcome_series_01-pymk%7Ecohort-0-connect%7Ecta-null-poh2nf%7Emd29n7tg%7Eh5-null-null&amp;trk=eml-email_welcome_series_01-pymk%7Ecohort-0-connect%7Ecta&amp;_sig=3_AVAgdz-oGXQ1\" target=\"_blank\" aria-label=\"Connect with Scott Perry\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/scott-perry-5989a120/?lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&amp;midSig=1d4kSmEBCoGXQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_welcome_series_01-pymk%7Ecohort-0-connect%7Ecta-null-poh2nf%7Emd29n7tg%7Eh5-null-null&amp;trk=eml-email_welcome_series_01-pymk%7Ecohort-0-connect%7Ecta&amp;_sig=3_AVAgdz-oGXQ1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/mynetwork/\" target=\"_blank\" aria-label=\"See more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/mynetwork/\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> See more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-4\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 32px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <h2 class=\"text-lg text-color-text font-semibold leading-regular\" style=\"margin: 0; font-size: 20px; font-weight: 600; line-height: 1.25; color: rgba(0, 0, 0, 0.9);\">Follow people who can inspire you at work</h2> </td> </tr> <tr> <td class=\"text-sm text-black-a60 leading-regular pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px; font-size: 14px; line-height: 1.25; color: rgba(0, 0, 0, 0.6);\"> Based on your recent searches </td> </tr> <tr data-test-id=\"people-follow-card-section\"> <td align=\"center\" class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"w-1/2 pr-1 \" data-test-id=\"people-follow-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-right: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md pt-1.5 px-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding-left: 8px; padding-right: 8px; padding-top: 12px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/sundarpichai?lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1d4kSmEBCoGXQ1&amp;trk=eml-email_welcome_series_01-people~follow~cohort-0-profile_link&amp;trkEmail=eml-email_welcome_series_01-people~follow~cohort-0-profile_link-null-poh2nf~md29n7tg~h5-null-null&amp;eid=poh2nf-md29n7tg-h5&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjA4YmM4ZDk0MDliYTY4YTZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmNGViZmQwZTg3ZjM5ZTYwMjMzMjJiOTU1MjI2NDQ4NDI5Y2RjMTYzM2YzZTgxZjcsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQFrmDuWUxQoMg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1715645354619?e=2147483647&amp;v=beta&amp;t=1RrasjAAg13gmwoW6krW4hhqj4r8n93XSghp6u90KtE\" alt=\"Sundar Pichai’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 88px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"88\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Sundar Pichai </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> CEO at Google </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1 pt-0.25\" align=\"center\" valign=\"bottom\" data-test-id=\"number-followers-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px; padding-top: 2px;\"> <p class=\"text-xs text-system-gray-60 leading-[20px]\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 20px; color: #8c8c8c;\"> 1,291,317 Followers </p> </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=sundarpichai&amp;entityUrn=ADoAAE6FVtYBLCrRjLsIylvs2ylmnGGrWaIBOsg&amp;lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&amp;midSig=1d4kSmEBCoGXQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_welcome_series_01-people%7Efollow%7Ecohort-0-one%7Eclick%7Efollow%7Ecta-null-poh2nf%7Emd29n7tg%7Eh5-null-null&amp;trk=eml-email_welcome_series_01-people%7Efollow%7Ecohort-0-one%7Eclick%7Efollow%7Ecta\" target=\"_blank\" aria-label=\"Follow Sundar Pichai\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=sundarpichai&amp;entityUrn=ADoAAE6FVtYBLCrRjLsIylvs2ylmnGGrWaIBOsg&amp;lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&amp;midSig=1d4kSmEBCoGXQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_welcome_series_01-people%7Efollow%7Ecohort-0-one%7Eclick%7Efollow%7Ecta-null-poh2nf%7Emd29n7tg%7Eh5-null-null&amp;trk=eml-email_welcome_series_01-people%7Efollow%7Ecohort-0-one%7Eclick%7Efollow%7Ecta\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"w-1/2 \" data-test-id=\"people-follow-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md pt-1.5 px-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding-left: 8px; padding-right: 8px; padding-top: 12px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://in.linkedin.com/comm/in/shradha-khapra?lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1d4kSmEBCoGXQ1&amp;trk=eml-email_welcome_series_01-people~follow~cohort-0-profile_link&amp;trkEmail=eml-email_welcome_series_01-people~follow~cohort-0-profile_link-null-poh2nf~md29n7tg~h5-null-null&amp;eid=poh2nf-md29n7tg-h5&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjA4YmM4ZDk0MDliYTY4YTZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmNGViZmQwZTg3ZjM5ZTYwMjMzMjJiOTU1MjI2NDQ4NDI5Y2RjMTYzM2YzZTgxZjcsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://static.licdn.com/sc/h/4eby4moebno1i6r34if7lud8o\" alt=\"Shradha Khapra’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 88px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"88\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Shradha Khapra </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Co-Founder, Apna College | 6Million+ YT… </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1 pt-0.25\" align=\"center\" valign=\"bottom\" data-test-id=\"number-followers-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px; padding-top: 2px;\"> <p class=\"text-xs text-system-gray-60 leading-[20px]\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 20px; color: #8c8c8c;\"> 1,645,767 Followers </p> </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=shradha-khapra&amp;entityUrn=ADoAACe8kMYBJDAB6VKQ7wLOZntAHNUMiG5L6KI&amp;lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&amp;midSig=1d4kSmEBCoGXQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_welcome_series_01-people%7Efollow%7Ecohort-0-one%7Eclick%7Efollow%7Ecta-null-poh2nf%7Emd29n7tg%7Eh5-null-null&amp;trk=eml-email_welcome_series_01-people%7Efollow%7Ecohort-0-one%7Eclick%7Efollow%7Ecta\" target=\"_blank\" aria-label=\"Follow Shradha Khapra\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=shradha-khapra&amp;entityUrn=ADoAACe8kMYBJDAB6VKQ7wLOZntAHNUMiG5L6KI&amp;lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&amp;midSig=1d4kSmEBCoGXQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_welcome_series_01-people%7Efollow%7Ecohort-0-one%7Eclick%7Efollow%7Ecta-null-poh2nf%7Emd29n7tg%7Eh5-null-null&amp;trk=eml-email_welcome_series_01-people%7Efollow%7Ecohort-0-one%7Eclick%7Efollow%7Ecta\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/mynetwork/\" target=\"_blank\" aria-label=\"See more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/mynetwork/\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> See more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-lg text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 20px; color: #114951;\"> Get the new LinkedIn desktop app </h2> </td> </tr> <tr> <td class=\"text-center pb-2\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <a href=\"https://apps.microsoft.com/store/detail/9WZDNCRFJ4Q7?launch=true&amp;cid=linkedin_email_upsell&amp;mode=full\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it from Microsoft\" src=\"https://static.licdn.com/sc/h/ejpkkpwvqks31a3cjqokb7fbm\" class=\"h-[40px] w-[112px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 112px;\" width=\"112\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-md text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 16px; color: #114951;\"> Also available on mobile </h2> </td> </tr> <tr> <td class=\"text-center\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <a href=\"https://itunes.apple.com/us/app/linkedin/id288429040?pt=10746&amp;ct=st_appsite_flagship&amp;mt=8\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Download on the App Store\" src=\"https://static.licdn.com/sc/h/76yzkd0h5kiv27lrd4yaenylk\" class=\"h-[40px] w-[120px] pr-1\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 120px; padding-right: 8px;\" width=\"120\" height=\"40\"> </a> <a href=\"https://play.google.com/store/apps/details?id=com.linkedin.android&amp;referrer=st_appsite_flagship\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it on Google Play\" src=\"https://static.licdn.com/sc/h/142qudwblp58zwmc9vkqfplug\" class=\"h-[40px] w-[134px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 134px;\" width=\"134\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px;\"><hr class=\"border-none bg-[#e0dfdd] h-[1px]\" style=\"height: 1px; border-style: none; background-color: #e0dfdd;\"></td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" data-test-id=\"email-footer__intended\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1d4kSmEBCoGXQ1&amp;trk=eml-email_welcome_series_01-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_welcome_series_01-SecurityHelp-0-footerglimmer-null-poh2nf~md29n7tg~h5-null-null&amp;eid=poh2nf-md29n7tg-h5&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjA4YmM4ZDk0MDliYTY4YTZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmNGViZmQwZTg3ZjM5ZTYwMjMzMjJiOTU1MjI2NDQ4NDI5Y2RjMTYzM2YzZTgxZjcsMSwx\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving LinkedIn notification emails.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1d4kSmEBCoGXQ1&amp;trk=eml-email_welcome_series_01-unsubscribe-0-footerGlimmer&amp;trkEmail=eml-email_welcome_series_01-unsubscribe-0-footerGlimmer-null-poh2nf~md29n7tg~h5-null-null&amp;eid=poh2nf-md29n7tg-h5&amp;loid=AQEW1Ab7o9WnkQAAAZgF-ck7TkjK8aqy-jsZhpqkQeHWaixUUhD8UStstHybUuSbQitdccwrSzBUNTQvhsucLgAat0uaKYb5QbSimURf8P7qBkUsPEmB5G-FDMj9\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Unsubscribe</a>   ·   <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1d4kSmEBCoGXQ1&amp;trk=eml-email_welcome_series_01-help-0-footerglimmer&amp;trkEmail=eml-email_welcome_series_01-help-0-footerglimmer-null-poh2nf~md29n7tg~h5-null-null&amp;eid=poh2nf-md29n7tg-h5&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjA4YmM4ZDk0MDliYTY4YTZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmNGViZmQwZTg3ZjM5ZTYwMjMzMjJiOTU1MjI2NDQ4NDI5Y2RjMTYzM2YzZTgxZjcsMSwx\" target=\"_blank\" data-test-help-link class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1d4kSmEBCoGXQ1&amp;trk=eml-email_welcome_series_01-footer-0-logoGlimmer&amp;trkEmail=eml-email_welcome_series_01-footer-0-logoGlimmer-null-poh2nf~md29n7tg~h5-null-null&amp;eid=poh2nf-md29n7tg-h5&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjA4YmM4ZDk0MDliYTY4YTZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmNGViZmQwZTg3ZjM5ZTYwMjMzMjJiOTU1MjI2NDQ4NDI5Y2RjMTYzM2YzZTgxZjcsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFrTWpsdU4zUm5MV2cxOlpXMWhhV3hmZDJWc1kyOXRaVjl6WlhKcFpYTmZNREU9Og==.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','Now, take these next steps for more success\r\n\r\nGrow your network for career support\r\nBecause you viewed Pakistan Republic’s post\r\n\r\n    Bill Diaz\r\nChief Executive Officer, Archer\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/williamdiaz/?lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&midSig=1d4kSmEBCoGXQ1&midToken=AQE-iPshthTClw&trkEmail=eml-email_welcome_series_01-pymk%7Ecohort-0-connect%7Ecta-null-poh2nf%7Emd29n7tg%7Eh5-null-null&trk=eml-email_welcome_series_01-pymk%7Ecohort-0-connect%7Ecta&_sig=3_AVAgdz-oGXQ1\r\n\r\n    Scott Perry\r\nChief Executive Officer\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/scott-perry-5989a120/?lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&midSig=1d4kSmEBCoGXQ1&midToken=AQE-iPshthTClw&trkEmail=eml-email_welcome_series_01-pymk%7Ecohort-0-connect%7Ecta-null-poh2nf%7Emd29n7tg%7Eh5-null-null&trk=eml-email_welcome_series_01-pymk%7Ecohort-0-connect%7Ecta&_sig=3_AVAgdz-oGXQ1\r\nSee more people you may know:https://www.linkedin.com/comm/mynetwork/?lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&midToken=AQE-iPshthTClw&midSig=1d4kSmEBCoGXQ1&trk=eml-email_welcome_series_01-pymk~cohort-0-see~more~cta&trkEmail=eml-email_welcome_series_01-pymk~cohort-0-see~more~cta-null-poh2nf~md29n7tg~h5-null-null&eid=poh2nf-md29n7tg-h5&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjA4YmM4ZDk0MDliYTY4YTZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmNGViZmQwZTg3ZjM5ZTYwMjMzMjJiOTU1MjI2NDQ4NDI5Y2RjMTYzM2YzZTgxZjcsMSwx\r\n\r\n\r\n\r\nFollow people who can inspire you at work\r\nBased on your recent searches\r\n\r\n    Sundar Pichai\r\nCEO at Google\r\nhttps://www.linkedin.com/comm/build-relation/people-follow/?entityName=sundarpichai&entityUrn=ADoAAE6FVtYBLCrRjLsIylvs2ylmnGGrWaIBOsg&lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&midSig=1d4kSmEBCoGXQ1&midToken=AQE-iPshthTClw&trkEmail=eml-email_welcome_series_01-people%7Efollow%7Ecohort-0-one%7Eclick%7Efollow%7Ecta-null-poh2nf%7Emd29n7tg%7Eh5-null-null&trk=eml-email_welcome_series_01-people%7Efollow%7Ecohort-0-one%7Eclick%7Efollow%7Ecta\r\n1291317 Followers\r\n\r\n    Shradha Khapra\r\nCo-Founder, Apna College | 6Million+ YT | Ex-SDE Microsoft | Google SPS’20\r\nhttps://www.linkedin.com/comm/build-relation/people-follow/?entityName=shradha-khapra&entityUrn=ADoAACe8kMYBJDAB6VKQ7wLOZntAHNUMiG5L6KI&lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&midSig=1d4kSmEBCoGXQ1&midToken=AQE-iPshthTClw&trkEmail=eml-email_welcome_series_01-people%7Efollow%7Ecohort-0-one%7Eclick%7Efollow%7Ecta-null-poh2nf%7Emd29n7tg%7Eh5-null-null&trk=eml-email_welcome_series_01-people%7Efollow%7Ecohort-0-one%7Eclick%7Efollow%7Ecta\r\n1645767 Followers\r\nSee more people you may want to follow:https://www.linkedin.com/comm/mynetwork/?lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&midToken=AQE-iPshthTClw&midSig=1d4kSmEBCoGXQ1&trk=eml-email_welcome_series_01-people~follow~cohort-0-see~more~cta&trkEmail=eml-email_welcome_series_01-people~follow~cohort-0-see~more~cta-null-poh2nf~md29n7tg~h5-null-null&eid=poh2nf-md29n7tg-h5&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjA4YmM4ZDk0MDliYTY4YTZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmNGViZmQwZTg3ZjM5ZTYwMjMzMjJiOTU1MjI2NDQ4NDI5Y2RjMTYzM2YzZTgxZjcsMSwx\r\n\r\n\r\n\r\n----------------------------------------\r\n\r\nThis email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\nLearn why we included this: https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&midToken=AQE-iPshthTClw&midSig=1d4kSmEBCoGXQ1&trk=eml-email_welcome_series_01-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_welcome_series_01-SecurityHelp-0-textfooterglimmer-null-poh2nf~md29n7tg~h5-null-null&eid=poh2nf-md29n7tg-h5&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjA4YmM4ZDk0MDliYTY4YTZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmNGViZmQwZTg3ZjM5ZTYwMjMzMjJiOTU1MjI2NDQ4NDI5Y2RjMTYzM2YzZTgxZjcsMSwx\r\nYou are receiving LinkedIn notification emails.\r\n\r\nUnsubscribe: https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&midToken=AQE-iPshthTClw&midSig=1d4kSmEBCoGXQ1&trk=eml-email_welcome_series_01-unsubscribe-0-textfooterglimmer&trkEmail=eml-email_welcome_series_01-unsubscribe-0-textfooterglimmer-null-poh2nf~md29n7tg~h5-null-null&eid=poh2nf-md29n7tg-h5&loid=AQEW1Ab7o9WnkQAAAZgF-ck7TkjK8aqy-jsZhpqkQeHWaixUUhD8UStstHybUuSbQitdccwrSzBUNTQvhsucLgAat0uaKYb5QbSimURf8P7qBkUsPEmB5G-FDMj9\r\nHelp: https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_welcome_series_01%3B8NhzKFpgSn2Y69XAHQEzLw%3D%3D&midToken=AQE-iPshthTClw&midSig=1d4kSmEBCoGXQ1&trk=eml-email_welcome_series_01-help-0-textfooterglimmer&trkEmail=eml-email_welcome_series_01-help-0-textfooterglimmer-null-poh2nf~md29n7tg~h5-null-null&eid=poh2nf-md29n7tg-h5&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjA4YmM4ZDk0MDliYTY4YTZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThmNGViZmQwZTg3ZjM5ZTYwMjMzMjJiOTU1MjI2NDQ4NDI5Y2RjMTYzM2YzZTgxZjcsMSwx\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.\r\nLinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',0,0,0,0,0,0,'2025-07-13 22:48:34','2025-12-09 19:13:46','2025-12-09 19:13:46','2025-12-09 19:13:46',NULL,NULL,NULL),
(461,4,'<CD32782C-E3F5-49D8-866F-FD5260763D95@mislan.com>',NULL,NULL,'(No Subject)','rick@mislan.com','Rick Mislan','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body dir=\"auto\"><div dir=\"ltr\">https://breakingdefense.com/2025/07/trying-to-enter-the-defense-industrial-base-heres-four-steps-to-follow/</div><br id=\"lineBreakAtBeginningOfSignature\"><div dir=\"ltr\"><br><div><font face=\"HelveticaNeue\" style=\"caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); font-size: 13px; -webkit-text-size-adjust: auto;\"><span style=\"font-size: 12px;\"><br></span></font><div class=\"gmail_signature\" style=\"caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); font-family: helvetica, Arial; font-size: 13px; -webkit-text-size-adjust: auto;\"><font face=\"HelveticaNeue\"><span style=\"font-size: 12px;\">Rick Mislan, PhD</span></font><div><a href=\"http://www.mislan.com/\" style=\"overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; -webkit-hyphens: auto; font-size: 12px;\"><font face=\"HelveticaNeue\">www.mislan.com</font></a></div><div><a href=\"tel://(585) 797-9473\" style=\"overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; -webkit-hyphens: auto; font-size: 12px;\"><font face=\"HelveticaNeue\">(585) 797-9473</font></a></div></div></div></div></body></html>','https://breakingdefense.com/2025/07/trying-to-enter-the-defense-industrial-base-heres-four-steps-to-follow/Rick Mislan, PhDwww.mislan.com(585) 797-9473',0,0,0,0,0,0,'2025-07-14 02:36:46','2025-12-09 19:13:46','2025-12-09 19:13:46','2025-12-09 19:13:46',NULL,NULL,NULL),
(462,4,'<1907307352.16274531.1752509329978@lor1-app94692.prod.linkedin.com>',NULL,NULL,'Mavrix, improve your profile by adding skills','notifications-noreply@linkedin.com','LinkedIn','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n          @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n        </style> <style>\r\n          .full-width-button, .full-width-button table { display: none; } @media (max-width: 320px) { .inline-button,\r\n          .inline-button table { display: none !important; } .full-width-button, .full-width-button table { display:\r\n          table !important; } }\r\n        </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n          \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n          \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">50% of hirers on LinkedIn use skills data to fill their roles</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 bg-color-background-container\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-left: auto; margin-right: auto; margin-top: 0px; margin-bottom: 0px; width: 512px; max-width: 512px; background-color: #ffffff; padding: 0px;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_profile_qp_welcome_01%3BENv47tloSH2DlgEDH%2FHJAw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=070fTWNGaEHXQ1&amp;trk=eml-email_profile_qp_welcome_01-header-0-home_glimmer&amp;trkEmail=eml-email_profile_qp_welcome_01-header-0-home_glimmer-null-poh2nf~md3asp8n~3r-null-null&amp;eid=poh2nf-md3asp8n-3r\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img alt=\"LinkedIn\" src=\"https://static.licdn.com/aero-v1/sc/h/9ehe6n39fa07dc5edzv0rla4e\" class=\"h-[21px] w-[84px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 21px; width: 84px;\" width=\"84\" height=\"21\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-header-profile style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" class=\"w-[32px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 32px;\" width=\"32\"> <a href=\"https://www.linkedin.com/comm/in/mavrix-one-ba3024374?lipi=urn%3Ali%3Apage%3Aemail_email_profile_qp_welcome_01%3BENv47tloSH2DlgEDH%2FHJAw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=070fTWNGaEHXQ1&amp;trk=eml-email_profile_qp_welcome_01-header-0-profile_glimmer&amp;trkEmail=eml-email_profile_qp_welcome_01-header-0-profile_glimmer-null-poh2nf~md3asp8n~3r-null-null&amp;eid=poh2nf-md3asp8n-3r\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Mavrix One\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQH7FhVwiiJ44g/profile-displayphoto-scale_200_200/B4EZf50lYcH0AY-/0/1752243001533?e=2147483647&amp;v=beta&amp;t=Bup8mnb1d2TsGleMbZ8CDZE7-ny4WAQ5Meqmu6kHzHo\" class=\"rounded-[100%] w-[32px] h-[32px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 32px; width: 32px; border-radius: 100%;\" width=\"32\" height=\"32\"> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"px-3 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px; padding-bottom: 24px;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <h2 class=\"heading-large text-color-text text-center\" style=\"margin: 0; text-align: center; color: rgba(0, 0, 0, 0.9); font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif; font-size: 20px; font-weight: 500; line-height: 1.25;\">50% of hirers on LinkedIn use skills data to fill their roles</h2> </tr> <tr> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"quality-profile-status-widget\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr valign=\"top\" align=\"center\"> <td align=\"center\" class=\"pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[96px] h-[96px] align-top\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQH7FhVwiiJ44g/profile-displayphoto-scale_200_200/B4EZf50lYcH0AY-/0/1752243001533?e=2147483647&amp;v=beta&amp;t=Bup8mnb1d2TsGleMbZ8CDZE7-ny4WAQ5Meqmu6kHzHo\" alt=\"Mavrix One’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"heading-large\" style=\"margin: 0; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif; font-size: 20px; font-weight: 500; line-height: 1.25;\"> Mavrix One </p> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"body-small leading-regular\" style=\"margin: 0; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif; font-size: 14px; font-weight: 400; line-height: 1.25;\"> Tampa, Florida, United States </p> </td> </tr> <tr> <td align=\"center\" class=\"pt-1.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 12px;\"> <img align=\"center\" class=\"w-2 h-2\" src=\"https://static.licdn.com/aero-v1/sc/h/cru1rpi9y9n0u3kyh0jrzmz79\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> <span class=\"body-small leading-regular\" style=\"font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif; font-size: 14px; font-weight: 400; line-height: 1.25;\"> Chief Executive Officer at MAVRIX 1 </span> </td> </tr> <tr> <td align=\"center\" class=\"pt-1.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 12px;\"> <img align=\"center\" class=\"w-2 h-2\" src=\"https://static.licdn.com/aero-v1/sc/h/e9zmtqgsycc9ldook8nx1vcq1\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> <span class=\"body-small leading-regular text-color-text-secondary\" style=\"color: rgba(0, 0, 0, 0.6); font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif; font-size: 14px; font-weight: 400; line-height: 1.25;\"> Missing skills </span> </td> </tr> <tr> <td align=\"center\" class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/in/me/add-edit/SKILL_AND_ASSOCIATION?lipi=urn%3Ali%3Apage%3Aemail_email_profile_qp_welcome_01%3BENv47tloSH2DlgEDH%2FHJAw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=070fTWNGaEHXQ1&amp;trk=eml-email_profile_qp_welcome_01-quality~profile~status~widget-0-add_skills_button&amp;trkEmail=eml-email_profile_qp_welcome_01-quality~profile~status~widget-0-add_skills_button-null-poh2nf~md3asp8n~3r-null-null&amp;eid=poh2nf-md3asp8n-3r\" target=\"_blank\" aria-label=\"Add a skill\" class=\"align-top\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/in/me/add-edit/SKILL_AND_ASSOCIATION?lipi=urn%3Ali%3Apage%3Aemail_email_profile_qp_welcome_01%3BENv47tloSH2DlgEDH%2FHJAw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=070fTWNGaEHXQ1&amp;trk=eml-email_profile_qp_welcome_01-quality~profile~status~widget-0-add_skills_button&amp;trkEmail=eml-email_profile_qp_welcome_01-quality~profile~status~widget-0-add_skills_button-null-poh2nf~md3asp8n~3r-null-null&amp;eid=poh2nf-md3asp8n-3r\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> Add a skill </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_profile_qp_welcome_01%3BENv47tloSH2DlgEDH%2FHJAw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=070fTWNGaEHXQ1&amp;trk=eml-email_profile_qp_welcome_01-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_profile_qp_welcome_01-SecurityHelp-0-footerglimmer-null-poh2nf~md3asp8n~3r-null-null&amp;eid=poh2nf-md3asp8n-3r\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving LinkedIn notification emails.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_profile_qp_welcome_01%3BENv47tloSH2DlgEDH%2FHJAw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=070fTWNGaEHXQ1&amp;trk=eml-email_profile_qp_welcome_01-unsubscribe-0-footerGlimmer&amp;trkEmail=eml-email_profile_qp_welcome_01-unsubscribe-0-footerGlimmer-null-poh2nf~md3asp8n~3r-null-null&amp;eid=poh2nf-md3asp8n-3r&amp;loid=AQEE3rDVw5HHBQAAAZgJsjCAVNLEdwHtfUGzKbKxfU4RQLmFIbrDKTJ-x-QEEeqhevGGigDZDWZutbe8mywpH2KBaGLrzQmqu39xZzN3WoA\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\">Unsubscribe</a>   ·   <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_profile_qp_welcome_01%3BENv47tloSH2DlgEDH%2FHJAw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=070fTWNGaEHXQ1&amp;trk=eml-email_profile_qp_welcome_01-help-0-footerglimmer&amp;trkEmail=eml-email_profile_qp_welcome_01-help-0-footerglimmer-null-poh2nf~md3asp8n~3r-null-null&amp;eid=poh2nf-md3asp8n-3r\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_profile_qp_welcome_01%3BENv47tloSH2DlgEDH%2FHJAw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=070fTWNGaEHXQ1&amp;trk=eml-email_profile_qp_welcome_01-footer-0-logoGlimmer&amp;trkEmail=eml-email_profile_qp_welcome_01-footer-0-logoGlimmer-null-poh2nf~md3asp8n~3r-null-null&amp;eid=poh2nf-md3asp8n-3r\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/aero-v1/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFrTTJGemNEaHVMVE55OlpXMWhhV3hmY0hKdlptbHNaVjl4Y0Y5M1pXeGpiMjFsWHpBeDo=.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','50% of hirers on LinkedIn use skills data to fill their roles\r\n\r\n-----------------------------------------\r\n\r\n\r\n    \r\n    Mavrix One\r\n\r\nTampa, Florida, United States\r\n\r\nChief Executive Officer at MAVRIX 1\r\n\r\nMissing skills\r\n\r\nAdd a skill\r\n\r\n      https://www.linkedin.com/comm/in/me/add-edit/SKILL_AND_ASSOCIATION?lipi=urn%3Ali%3Apage%3Aemail_email_profile_qp_welcome_01%3BENv47tloSH2DlgEDH%2FHJAw%3D%3D&midToken=AQE-iPshthTClw&midSig=070fTWNGaEHXQ1&trk=eml-email_profile_qp_welcome_01-quality~profile~status~widget-0-add_skills_button&trkEmail=eml-email_profile_qp_welcome_01-quality~profile~status~widget-0-add_skills_button-null-poh2nf~md3asp8n~3r-null-null&eid=poh2nf-md3asp8n-3r\r\n  \r\n      \r\n          \r\n      \r\n\r\n----------------\r\n\r\nThis email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\nLearn why we included this:\r\n      https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_profile_qp_welcome_01%3BENv47tloSH2DlgEDH%2FHJAw%3D%3D&midToken=AQE-iPshthTClw&midSig=070fTWNGaEHXQ1&trk=eml-email_profile_qp_welcome_01-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_profile_qp_welcome_01-SecurityHelp-0-textfooterglimmer-null-poh2nf~md3asp8n~3r-null-null&eid=poh2nf-md3asp8n-3r\r\nYou are receiving LinkedIn notification emails.\r\n\r\n          \r\n            \r\n          \r\n        \r\nUnsubscribe:\r\n      https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_profile_qp_welcome_01%3BENv47tloSH2DlgEDH%2FHJAw%3D%3D&midToken=AQE-iPshthTClw&midSig=070fTWNGaEHXQ1&trk=eml-email_profile_qp_welcome_01-unsubscribe-0-textfooterglimmer&trkEmail=eml-email_profile_qp_welcome_01-unsubscribe-0-textfooterglimmer-null-poh2nf~md3asp8n~3r-null-null&eid=poh2nf-md3asp8n-3r&loid=AQEE3rDVw5HHBQAAAZgJsjCAVNLEdwHtfUGzKbKxfU4RQLmFIbrDKTJ-x-QEEeqhevGGigDZDWZutbe8mywpH2KBaGLrzQmqu39xZzN3WoA\r\nHelp:\r\n      https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_profile_qp_welcome_01%3BENv47tloSH2DlgEDH%2FHJAw%3D%3D&midToken=AQE-iPshthTClw&midSig=070fTWNGaEHXQ1&trk=eml-email_profile_qp_welcome_01-help-0-textfooterglimmer&trkEmail=eml-email_profile_qp_welcome_01-help-0-textfooterglimmer-null-poh2nf~md3asp8n~3r-null-null&eid=poh2nf-md3asp8n-3r\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',0,0,0,0,0,0,'2025-07-14 16:08:49','2025-12-09 19:13:46','2025-12-09 19:13:46','2025-12-09 19:13:46',NULL,NULL,NULL),
(463,4,'<m6p-cV-DSAa-XcDhpzsblA@geopod-ismtpd-10>',NULL,NULL,'Your Company\'s Dun & Bradstreet =?UTF-8?B?RC1VLU4tU8Ku?= Number Was Successfully Created','no-reply@mail.dnb.com','no-reply@mail.dnb.com','<!-- DFC - all templates ME-2254 -->\r\n\r\n\r\n\r\n\r\n\r\n  \r\n  <!DOCTYPE html\r\n    PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n\r\n<head>\r\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\r\n    <meta name=\"viewport\" content=\"initial-scale=1.0\" /> <!-- So that mobile webkit will display zoomed in -->\r\n    <meta name=\"format-detection\" content=\"telephone=no\" /> <!-- disable auto telephone linking in iOS -->\r\n    <title>Dun &amp; Bradstreet</title>\r\n    <style type=\"text/css\">\r\n        body {\r\n            background-color: #e1e1e1;\r\n            font-family: \'Open Sans\', sans-serif;\r\n            -webkit-text-size-adjust: none;\r\n            -ms-text-size-adjust: none;\r\n            font-style: normal;\r\n        }\r\n\r\n        a {\r\n            color: #0078a7;\r\n        }\r\n\r\n        .outer-container {\r\n            background-color: #FFFFFF;\r\n            width: 620px;\r\n            margin: auto;\r\n        }\r\n\r\n        .image-container {\r\n            text-align: center;\r\n            padding: 35px 0 25px 0;\r\n            border-bottom: 1px solid #6B6D6F;\r\n            margin: 0 40px;\r\n        }\r\n\r\n        .main-content {\r\n            margin: 40px;\r\n            font-weight: 400;\r\n            font-size: 16px;\r\n            line-height: 24px;\r\n            letter-spacing: 0.1px;\r\n            color: #161919;\r\n        }\r\n\r\n        .title {\r\n            font-style: normal;\r\n            font-weight: 550;\r\n            font-size: 32px;\r\n            line-height: 44px;\r\n            color: #005172;\r\n        }\r\n\r\n        .sub-content {\r\n            font-weight: 400;\r\n            font-size: 14px;\r\n            line-height: 20px;\r\n            letter-spacing: 0.1px;\r\n            color: #6B6D6F;\r\n            margin: 40px;\r\n        }\r\n\r\n        .footer {\r\n            margin: 40px;\r\n            line-height: 24px;\r\n        }\r\n\r\n        .copyright {\r\n            color: #161919;\r\n            padding-bottom: 40px;\r\n        }\r\n\r\n        .footer-link {\r\n            text-align: center;\r\n            padding: 40px;\r\n        }\r\n\r\n        .footer-link,\r\n        .copyright,\r\n        .disclaimer {\r\n            font-weight: 400;\r\n            font-size: 14px;\r\n            line-height: 20px;\r\n            letter-spacing: 0.1px;\r\n        }\r\n\r\n        .question {\r\n            font-weight: 550;\r\n            font-size: 24px;\r\n            line-height: 36px;\r\n            color: #161919;\r\n        }\r\n\r\n        .notification {\r\n            background: rgba(0, 120, 167, 0.1);\r\n            border-radius: 8px;\r\n            padding: 24px;\r\n            font-size: 20px;\r\n            line-height: 32px;\r\n            margin: 40px 0;\r\n            font-weight: 550;\r\n        }\r\n\r\n        @media screen and (max-width: 600px) {\r\n            .outer-container {\r\n                width: 100% !important;\r\n            }\r\n\r\n            .image-container {\r\n                margin: 0 24px;\r\n                padding: 22px 0 16px 0;\r\n            }\r\n\r\n            .main-content,\r\n            .sub-content,\r\n            .footer {\r\n                margin: 24px !important;\r\n            }\r\n\r\n            .footer-link {\r\n                padding: 24px;\r\n            }\r\n        }\r\n    </style>\r\n</head>\r\n\r\n<body>\r\n    <div class=\"outer-container\">\r\n        <div class=\'image-container\'>\r\n            <img src=\"https://brxcdn.com/dnb-app-storage/faae5396-48ae-11ec-b7e8-26d23021b1b2/media/original/7a3a4e2c-1952-11f0-b67a-523efb8f8606\"\r\n                width=\"279\" height=\"70\" alt=\"Dun and Bradstreet\" />\r\n        </div>\r\n        <div class=\"main-content\">\r\n            <div class=\'title\'>\r\n                Good News: Your Dun & Bradstreet D-U-N-S<sup>&#174;</sup> Number has been assigned.\r\n            </div>\r\n            <div class=\'notification\'>\r\n                Your company’s Dun & Bradstreet D-U-N-S<sup>&#174;</sup> Number is:<strong> 139245193</strong>\r\n            </div>\r\n            <div>\r\n                <div class=\'question\'>\r\n                    What to Do Now\r\n                </div>\r\n                <p class=\"answer\">\r\n                    The D-U-N-S Number is created by Dun & Bradstreet as a unique identifier assigned to businesses\r\n                    worldwide. It can be used by federal and state government agencies, suppliers, banks, and potential\r\n                    customers looking to do business with your company. It also enables you to establish your company\'s\r\n                    Live Business Identity, which represents all the information Dun & Bradstreet collects on your\r\n                    company, now and in the future.\r\n                </p>\r\n            </div>\r\n            <div>\r\n                <div class=\'question\'>\r\n                    Your D-U-N-S Number Is Important to Your Business Credit File\r\n                </div>\r\n                <p class=\"answer\">\r\n                    Getting a D-U-N-S Number is an important first step toward actively establishing and managing your\r\n                    Dun & Bradstreet business credit file. It’s important to make sure the information in your business\r\n                    credit file is up to date, since businesses may use it to help them make decisions about doing\r\n                    business with you. Having a well-managed business credit file may help you:\r\n                    <ul>\r\n                        <li>\r\n                            Improve your cash flow by negotiating better payment terms and insurance premiums\r\n                        </li>\r\n                        <li>\r\n                            More easily secure loans, mortgages, equipment leases, and supplier terms\r\n                        </li>\r\n                        <li>\r\n                            Demonstrate your credibility when submitting bids and competing for contracts\r\n                        </li>\r\n                        <li>\r\n                            Attract new customers who are looking for credible suppliers\r\n                        </li>\r\n                    </ul>\r\n                </p>\r\n            </div>\r\n            <div>\r\n                <div class=\"question\">\r\n                    Next Steps</div>\r\n                <div>\r\n                    <div class=\'answer\'>\r\n                        <ol>\r\n                            <li>\r\n                                <a href=\"https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD82CQicaGoME-2FtiSZj1SF39XH-2F7-2FmiQXmN-2BFCyNylJn32k8Kp_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYikl8666vf03ilY4-2BZUpoaKEXEEwemYzkrDgdWOE3LMudBS9ke8WgGEPMOclYyxALHglLz-2BAxXyj9ZAAE6KMkDMOzaNuXnRoav7Frskk7aLetwD-2Bn2wBpGT0OrSOTosSyZX9gsXZFQL9ssVuVQya9tZCrmi6IP022k2WLr0DHkSXPRoY7Bpvw-2FP53-2BmnzZXNJsfZKR-2BaZMyLrSd42J7VUHMmxX2dtJIBVBcqcwtYOB2kuujgdYRcMHUyDFfUen5sfiUGtp9qn5qmkoNVOnJIJW4nx7EYy4HyNrxZIDAHVJBBoY-3D\" target=\"_blank\" rel=\"noopener noreferrer\">Log in</a>\r\n                                to\r\n                                your account. <strong>Username: rick@mavrix.one</strong>\r\n                            </li>\r\n                            <li>\r\n                                <strong>Make sure your company information is up to date,</strong> including your\r\n                                financial\r\n                                statements, as\r\n                                these are used in calculating certain scores for your business.\r\n                            </li>\r\n                            <li>\r\n                                At this point, your file may not have enough information to generate scores and ratings.\r\n                                A\r\n                                Dun & Bradstreet Credit Advisor can help you complete your file. <strong>Call\r\n                                    1-800-700-2733\r\n                                    to\r\n                                    learn more.</strong>\r\n                            </li>\r\n                        </ol>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n            <div class=\'disclaimer\' style=\"margin-top: 30px;\">\r\n                The information provided by Dun & Bradstreet and its Account Managers during business credit\r\n                counseling sessions is provided \"as-is.\" Dun & Bradstreet makes no representations or warranties,\r\n                express or implied, with respect to such information and the results of the use of such information,\r\n                including but not limited to implied warranty of merchantability and fitness for a particular\r\n                purpose. Neither Dun & Bradstreet nor any of its parents, subsidiaries, affiliates or their\r\n                respective partners, officers, directors, employees or agents shall be held liable for any damages,\r\n                whether direct, indirect, incidental, special or consequential, including but not limited to lost\r\n                revenues or lost profits, arising from or in connection with a business\'s use of or reliance on the\r\n                information given during any counseling session.\r\n            </div>\r\n        </div>\r\n        <div class=\"sub-content\">\r\n            Please add <a href=\"mailto:no-reply@dnb.com\">no-reply@dnb.com</a> to ensure delivery of our emails to your\r\n            inbox.\r\n            This is a notification regarding your service with Dun &amp; Bradstreet.\r\n        </div>\r\n        <div class=\'footer\'>\r\n            <p><strong>Privacy and Terms of Service Notice: </strong> </p>\r\n      \r\n            <p>Your privacy is important to us; please see our <a href=\"https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD84st-2BjNdutQpdvm5VD3R5SibLESYL3KMihPXYKcvMRoyA5o2lovC9G8mtdsVLbZyZA-3D-3DsNOa_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYikl8666vf03ilY4-2BZUpoaKEXEEwemYzkrDgdWOE3LMudBS9ke8WgGEPMOclYyxALHglLz-2BAxXyj9ZAAE6KMkDMOzaNuXnRoav7Frskk7aLetwD-2Bn2wBpGT0OrSOTosSyZXK0k8OD9mVwUi7b1DWhgIXBHp-2BGUclio5dWBbxtI-2BNNM4SekCnRUMPahUyDIYrdmhZWWevlhN-2Fq2RU4x8szlIx66d2mdf-2FY3yCi9gvFz5ntN2BtR9D6YQ1CzLaUkmGbTP3fg3g9F5ITUdM2-2FNzjsV4NLvAFfXLcWfyOK3Pvd7rkQ-3D\"\r\n                target=\"_blank\" rel=\"noopener noreferrer\">Privacy Policy </a> and <a\r\n                href=\"https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD84st-2BjNdutQpdvm5VD3R5SiguMNzH0RU59Jq49RiV5SaV-2FX4VizeB9BTMrOX7Q2QZw-3D-3DkRuR_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYikl8666vf03ilY4-2BZUpoaKEXEEwemYzkrDgdWOE3LMudBS9ke8WgGEPMOclYyxALHglLz-2BAxXyj9ZAAE6KMkDMOzaNuXnRoav7Frskk7aLetwD-2Bn2wBpGT0OrSOTosSyZX7bXIwZYVxveYvpqluFWfjZHuI3FcDw5b2tpaE-2BiX17TqZWYHN5nWjCcouyuqnmAVVs1M4mlKcG-2FMTKak-2BEJ7GiPvtGr-2BgdKAZvjJCA7RYIu7jFMufKobUUNMaUp5Zt-2B-2BnU0MlOXVCUDXtd9M6crTEOczyxApmWVxpylEv-2BwGHW0-3D\" target=\"_blank\" rel=\"noopener noreferrer\"> Terms\r\n                of\r\n                Use.</a> To unsubscribe from future emails <a\r\n                href=\"https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD84st-2BjNdutQpdvm5VD3R5Sh2QiWFUgFkV-2FCqgLcKj2mdGIJO9lMBQ4u1ldJOiLmi-2B3r9P2shgXeDCG6NCG6VLrQ-3D5cv1_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYikl8666vf03ilY4-2BZUpoaKEXEEwemYzkrDgdWOE3LMudBS9ke8WgGEPMOclYyxALHglLz-2BAxXyj9ZAAE6KMkDMOzaNuXnRoav7Frskk7aLetwD-2Bn2wBpGT0OrSOTosSyZXfwll0mUR-2FY3pRW5QU3G2ht-2BzBpPDS-2B7PHB9FwK7Gvn549q7Oque68BxXlTVJ2R9sjrkbrBOBPM7SRUUjjmE3wuJ413Mevv-2BPGlwGHJetHO1aTG-2FX4nq8PYfBqIpvpxtv3ZNFLJ2cSpV-2F3cadtbcOknqJw8GsC24Yafjcs4U7QVk-3D\" target=\"_blank\"\r\n                rel=\"noopener noreferrer\"> click here</a>, or to update your email preferences, please <a\r\n                href=\"https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD84st-2BjNdutQpdvm5VD3R5Sh2QiWFUgFkV-2FCqgLcKj2mdGIJO9lMBQ4u1ldJOiLmi-2B3r9P2shgXeDCG6NCG6VLrQ-3DcRNB_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYikl8666vf03ilY4-2BZUpoaKEXEEwemYzkrDgdWOE3LMudBS9ke8WgGEPMOclYyxALHglLz-2BAxXyj9ZAAE6KMkDMOzaNuXnRoav7Frskk7aLetwD-2Bn2wBpGT0OrSOTosSyZXSRQqYzl3LKQSl9m0ddLEFwCdjb6EDBZj9xFTH2al6RgQpgJN8hQgJPRXhHamVMPei8FmLJt6aSxpDzZh2GtU6FYdWOAiw-2FMw8vtJtoSXKZ8YKU2dltVKPY1Z-2BTa1y9A4H2-2B3GGNgGO9lSCi5vrzeUkxw-2FW2zsRhiJ4GRR3JrAB0-3D\" target=\"_blank\"\r\n                rel=\"noopener noreferrer\"> click here </a>\r\n            </p>\r\n      \r\n            <div class=\"copyright\">&copy; Dun &amp; Bradstreet, Inc. 2000 - 2025. All rights reserved. | 5335 Gate Pkwy, Jacksonville,\r\n                FL 32256, USA\r\n              </div>\r\n          </div>\r\n    </div>\r\n<img src=\"https://u8340266.ct.sendgrid.net/wf/open?upn=u001.D6mC8SG6iITw2GIzPjAtw3VnKGws73w4Kg-2Fn2LF1yNLiYtaudU5mmnjfmXVdybYWQD0BmxV-2BTb2HxuKN6EYyFklk0xNIauLy8KmbavjPKzeN6yVTj4tmUOlMUdJvHGwWogCc51u6R1PtOdRh9JEG-2FEj791kcgTmQUuUBIeiQs42HliPOKavlO-2B1Bb3xg2fGZjobuxkGA8rDzp9E2zC8DMc9y01fcBzBzQ8NZX-2BTu-2FamgCK-2FatROKWYYCIVBHpTeTmE4OEMtrkmQvLtFJGBRJ6Ge8QsPFynpahyoSCaCIaqvBTQPGZLd4IvRIV7JenyqvHut5NRbaPn24NsdbFnySXPad4t-2FbCAh2eaaGys7z160-3D\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/></body>\r\n\r\n</html>',' Dun & Bradstreet\r\n\r\nGood News: Your Dun & Bradstreet D-U-N-S ® Number has been assigned.\r\nYour company’s Dun & Bradstreet D-U-N-S ® Number is: *139245193*\r\nWhat to Do Now\r\n\r\nThe D-U-N-S Number is created by Dun & Bradstreet as a unique identifier assigned to businesses worldwide. It can be used by federal and state government agencies, suppliers, banks, and potential customers looking to do business with your company. It also enables you to establish your company\'s Live Business Identity, which represents all the information Dun & Bradstreet collects on your company, now and in the future.\r\n\r\nYour D-U-N-S Number Is Important to Your Business Credit File\r\n\r\nGetting a D-U-N-S Number is an important first step toward actively establishing and managing your Dun & Bradstreet business credit file. It’s important to make sure the information in your business credit file is up to date, since businesses may use it to help them make decisions about doing business with you. Having a well-managed business credit file may help you:\r\n\r\n* Improve your cash flow by negotiating better payment terms and insurance premiums\r\n* More easily secure loans, mortgages, equipment leases, and supplier terms\r\n* Demonstrate your credibility when submitting bids and competing for contracts\r\n* Attract new customers who are looking for credible suppliers\r\n\r\nNext Steps\r\n* Log in ( https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD82CQicaGoME-2FtiSZj1SF39XH-2F7-2FmiQXmN-2BFCyNylJn32NtyN_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYikl8666vf03ilY4-2BZUpoaKEXEEwemYzkrDgdWOE3LMudBS9ke8WgGEPMOclYyxALHglLz-2BAxXyj9ZAAE6KMkDMOzaNuXnRoav7Frskk7aLetwD-2Bn2wBpGT0OrSOTosSyZXrqlUXxT7ywNDfrUN9Rz1gEj6nFRupX5kmbwLFK1TZBHBSlgcyGDRiTgImw6MyvP355W6f5XAbomw9jUB-2FWD7jbWf219EwDpWESQnNnqhiPj3ctofe6VDU7XialajObNOtgBgk5eAc3Cojvx1l3ySiPpBu4btzX-2B8RFNWyt-2F1OuI-3D ) to your account. *Username: rick@mavrix.one*\r\n* *Make sure your company information is up to date,* including your financial statements, as these are used in calculating certain scores for your business.\r\n* At this point, your file may not have enough information to generate scores and ratings. A Dun & Bradstreet Credit Advisor can help you complete your file. *Call 1-800-700-2733 to learn more.*\r\n\r\nThe information provided by Dun & Bradstreet and its Account Managers during business credit counseling sessions is provided \"as-is.\" Dun & Bradstreet makes no representations or warranties, express or implied, with respect to such information and the results of the use of such information, including but not limited to implied warranty of merchantability and fitness for a particular purpose. Neither Dun & Bradstreet nor any of its parents, subsidiaries, affiliates or their respective partners, officers, directors, employees or agents shall be held liable for any damages, whether direct, indirect, incidental, special or consequential, including but not limited to lost revenues or lost profits, arising from or in connection with a business\'s use of or reliance on the information given during any counseling session.\r\nPlease add no-reply@dnb.com to ensure delivery of our emails to your inbox. This is a notification regarding your service with Dun & Bradstreet.\r\n\r\n*Privacy and Terms of Service Notice:*\r\n\r\nYour privacy is important to us; please see our Privacy Policy ( https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD84st-2BjNdutQpdvm5VD3R5SibLESYL3KMihPXYKcvMRoyA5o2lovC9G8mtdsVLbZyZA-3D-3DsBKA_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYikl8666vf03ilY4-2BZUpoaKEXEEwemYzkrDgdWOE3LMudBS9ke8WgGEPMOclYyxALHglLz-2BAxXyj9ZAAE6KMkDMOzaNuXnRoav7Frskk7aLetwD-2Bn2wBpGT0OrSOTosSyZXl1SwyezZ3Pu005w-2BmxMWVBRq1wNCLOwXzxPyxqxt6jJFOD9f6FAiaBBgEWP-2FP2N-2F-2Fv5BPe2rjhRgGACG7t8ViqNLQBzZS1dpgObYz2cgVSS3fFvvJ-2ByGUHy6rPP45xjBrAQ-2BfadMI4PPn26XJU6tNH8G8ct-2FMvgG7SHZlNqTp-2F0-3D ) and Terms of Use. ( https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD84st-2BjNdutQpdvm5VD3R5SiguMNzH0RU59Jq49RiV5SaV-2FX4VizeB9BTMrOX7Q2QZw-3D-3DnPeL_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYikl8666vf03ilY4-2BZUpoaKEXEEwemYzkrDgdWOE3LMudBS9ke8WgGEPMOclYyxALHglLz-2BAxXyj9ZAAE6KMkDMOzaNuXnRoav7Frskk7aLetwD-2Bn2wBpGT0OrSOTosSyZXu1DMzal3wnNlD5eF31rPh43I7JweOSkvjRmjOYrrGEkaBS3hTFP9twmxvFCXm-2B0aLnVTQywunVeU4Z5dWY-2BlmJly0BzV6DDYBX4YLzkmmjnwxvblMubjyO7WDeWXmB2uBIZzzfGKI-2BwE07Y3HpcA-2FWjrWtaTbYfOviyjV-2FWzqdk-3D ) To unsubscribe from future emails click here ( https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD84st-2BjNdutQpdvm5VD3R5Sh2QiWFUgFkV-2FCqgLcKj2mdGIJO9lMBQ4u1ldJOiLmi-2B3r9P2shgXeDCG6NCG6VLrQ-3DIWgh_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYikl8666vf03ilY4-2BZUpoaKEXEEwemYzkrDgdWOE3LMudBS9ke8WgGEPMOclYyxALHglLz-2BAxXyj9ZAAE6KMkDMOzaNuXnRoav7Frskk7aLetwD-2Bn2wBpGT0OrSOTosSyZXYO178-2Ff8ULjVFW7XLzzp0NGZdp-2BiL40pwPytsbMVHKV9ANl7EnNRs3slWVlXdGBTMxedPzbMj9wDKOOQbpXLS5RmFGd8CuPUNJQRW8BWCz1aXhO2Q34cCcGWqd7oq3GZTErOkkqsp-2FU6I-2FLjoG9z0zSKjftnlgkv-2BzWcAUb0Rzs-3D ) , or to update your email preferences, please click here ( https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD84st-2BjNdutQpdvm5VD3R5Sh2QiWFUgFkV-2FCqgLcKj2mdGIJO9lMBQ4u1ldJOiLmi-2B3r9P2shgXeDCG6NCG6VLrQ-3DX-r-_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYikl8666vf03ilY4-2BZUpoaKEXEEwemYzkrDgdWOE3LMudBS9ke8WgGEPMOclYyxALHglLz-2BAxXyj9ZAAE6KMkDMOzaNuXnRoav7Frskk7aLetwD-2Bn2wBpGT0OrSOTosSyZXt0vkkhqa-2Fw-2F-2BJtKxvBC2wPFcGAl7rD806dc8zHwKev03McW3NZ53Ro3RsQfBa3h2WzzRjZse3mVpwe99FcBAI6GYbKmPLVJkWNIl7n8Y2APWLOCifA0HoFEvKuVPioF9taIP4WSUi0v90X-2FhMOvlOPAhVIt-2FL2h-2B8zSL-2FmKdq2s-3D )\r\n\r\n© Dun & Bradstreet, Inc. 2000 - 2025. All rights reserved. | 5335 Gate Pkwy, Jacksonville, FL 32256, USA',0,0,0,0,0,0,'2025-07-15 06:01:25','2025-12-09 19:13:47','2025-12-09 19:13:47','2025-12-09 19:13:47',NULL,NULL,NULL),
(464,4,' <LV3PR19MB834596789CA840874B083E76C457A@LV3PR19MB8345.namprd19.prod.outlook.com>',NULL,NULL,'Re: NDA...','esanchez@votix.com','Edwin Sanchez','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:0 0 0 0 0 0 0 0 0 0;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;\r\n	panose-1:2 11 0 4 2 2 2 2 2 4;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:10.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle19\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">Hello Rick,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">It was a great conversation last week! I hope you are doing well!<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">We made some revisions to your NDA.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">I am attaching the document with track changes to see what we reviewed.\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">Please let me know if you’re okay with the adjustments, and we can proceed with signatures.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\"><br>\r\nRegards,<br>\r\nEdwin<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div id=\"mail-editor-reference-message-container\">\r\n<div>\r\n<div>\r\n<div style=\"border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\"><b><span style=\"font-size:12.0pt;color:black\">From:\r\n</span></b><span style=\"font-size:12.0pt;color:black\">Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Date: </b>Monday, July 14, 2025 at 8:29</span><span style=\"font-size:12.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"font-size:12.0pt;color:black\">PM<br>\r\n<b>To: </b>Edwin Sanchez &lt;esanchez@votix.com&gt;<br>\r\n<b>Subject: </b>Re: NDA...<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">This time with the NDA.<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n<div id=\"bloop_sign_1752542864911840000\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Rick Mislan, PhD<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><a href=\"https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one\">https://mavrix.one</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica;border:solid windowtext 1.0pt;padding:0in\"><img border=\"0\" width=\"32\" height=\"32\" style=\"width:.3333in;height:.3333in\" id=\"_x0000_i1026\" src=\"cid:~WRD0004.jpg\" alt=\"Image removed by sender.\"></span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"airmailon\"><span style=\"font-size:10.0pt;font-family:Helvetica\">On July 14, 2025 at 9:27:33 PM, Rick (<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Edwin,<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Please see attached NDA, fill in your info, initial each page, and sign the final page.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Let me know if you have any questions.&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Thanks!<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Rick<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n<div id=\"bloop_sign_1752542798127183872\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Rick Mislan, PhD<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><a href=\"https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one\">https://mavrix.one</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica;border:solid windowtext 1.0pt;padding:0in\"><img border=\"0\" width=\"32\" height=\"32\" style=\"width:.3333in;height:.3333in\" id=\"_x0000_i1025\" src=\"cid:~WRD0004.jpg\" alt=\"Image removed by sender.\"></span><span style=\"font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Hello Rick,\r\nIt was a great conversation last week! I hope you are doing well!\r\n\r\nWe made some revisions to your NDA.\r\nI am attaching the document with track changes to see what we reviewed.\r\n\r\nPlease let me know if you’re okay with the adjustments, and we can proceed with signatures.\r\n\r\nRegards,\r\nEdwin\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nDate: Monday, July 14, 2025 at 8:29 PM\r\nTo: Edwin Sanchez <esanchez@votix.com>\r\nSubject: Re: NDA...\r\nThis time with the NDA.\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one>\r\n[Image removed by sender.]\r\n\r\n\r\nOn July 14, 2025 at 9:27:33 PM, Rick (rick@mavrix.one<mailto:rick@mavrix.one>) wrote:\r\nEdwin,\r\nPlease see attached NDA, fill in your info, initial each page, and sign the final page.\r\nLet me know if you have any questions.\r\nThanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps:/mavrix.onehttps:/mavrix.one>\r\n[Image removed by sender.]\r\n',0,0,0,0,0,0,'2025-07-15 15:06:34','2025-12-09 19:13:47','2025-12-09 19:13:47','2025-12-09 19:13:47',NULL,NULL,NULL),
(465,4,' <BL3PR20MB492408937D987919328BCC05AF57A@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: Update','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n</head>\r\n<body>\r\n<div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nRick,</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<br>\r\n</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nThat’s great to hear, thanks for the update. Looking forward to it!</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<br>\r\n</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nRegards,</div>\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" dir=\"ltr\">\r\nJason</div>\r\n</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"ms-outlook-mobile-signature\">\r\n<div></div>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, July 15, 2025 1:53:37 PM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Update</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Jason,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Wanted to get back to you in regards to our process.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">We are currently doing reviews and creating our overall budget.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">That said, we would plan to bring&nbsp;</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Corvex Systems inside of Mavrix1 and&nbsp;</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">completely build out our manufacturing facility&nbsp;</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">in the CENTCOM/SOCOM neighborhood.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">I think you’ll be impressed by what we have planned and</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">we look forward to including you and your team.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">That said, let me know if you have any questions.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">We’ll be in touch soon!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thank you,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height:11px\"></div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','Rick,\r\n\r\nThat’s great to hear, thanks for the update. Looking forward to it!\r\n\r\nRegards,\r\nJason\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, July 15, 2025 1:53:37 PM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Update\r\n\r\nJason,\r\n\r\nWanted to get back to you in regards to our process.\r\nWe are currently doing reviews and creating our overall budget.\r\nThat said, we would plan to bring\r\nCorvex Systems inside of Mavrix1 and\r\ncompletely build out our manufacturing facility\r\nin the CENTCOM/SOCOM neighborhood.\r\n\r\nI think you’ll be impressed by what we have planned and\r\nwe look forward to including you and your team.\r\n\r\nThat said, let me know if you have any questions.\r\nWe’ll be in touch soon!\r\nThank you,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]',0,0,0,0,0,0,'2025-07-15 21:25:07','2025-12-09 19:13:47','2025-12-09 19:13:47','2025-12-09 19:13:47',NULL,NULL,NULL),
(466,4,'<2032775915.1370619.1752627014922@lor1-app104832.prod.linkedin.com>',NULL,NULL,'Summa Foundation just shared','updates-noreply@linkedin.com','LinkedIn','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n              @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n            </style> <style>\r\n            @media (max-width: 480px) { .inline-button, .inline-button table { display: none !important; }\r\n            .full-width-button, .full-width-button table { display: table !important; } }\r\n          </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n            \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n            \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">The exceptional dedication of Roxia and Stanley Boykin to healthcare for all…</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-top: 0px; margin-bottom: 0px; margin-left: auto; margin-right: auto; width: 512px; max-width: 512px; padding: 0px;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"bg-color-background-container \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BHlr4PXHgSmSRslp%2B7WEYlQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2i4T5pVRdiJXQ1&amp;trk=eml-email_network_conversations_01-header-0-home_glimmer_static_badging_with_count&amp;trkEmail=eml-email_network_conversations_01-header-0-home_glimmer_static_badging_with_count-null-poh2nf~md58t8pw~uh-null-null&amp;eid=poh2nf-md58t8pw-uh&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4ZGM5ZDA0MDlkYTg4ZjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOWU3ZDM0MzkwY2FiMjAwMzJkMmY4MTliZjcyYjgxMmVjM2FlZmRkYWIzZDQxZjcsMSwx\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img class=\"h-[37px] w-[101px]\" alt=\"LinkedIn\" src=\"https://static.licdn.com/sc/h/2fp5x7ci191mxbdy1eynscn59\" data-test-header-static-badging-img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 37px; width: 101px;\" width=\"101\" height=\"37\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" data-test-header-notification-badges style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/messaging/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BHlr4PXHgSmSRslp%2B7WEYlQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2i4T5pVRdiJXQ1&amp;trk=eml-email_network_conversations_01-header-0-messaging_glimmer&amp;trkEmail=eml-email_network_conversations_01-header-0-messaging_glimmer-null-poh2nf~md58t8pw~uh-null-null&amp;eid=poh2nf-md58t8pw-uh&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4ZGM5ZDA0MDlkYTg4ZjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOWU3ZDM0MzkwY2FiMjAwMzJkMmY4MTliZjcyYjgxMmVjM2FlZmRkYWIzZDQxZjcsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Messaging icon\" src=\"https://static.licdn.com/sc/h/544ehko5v555ey4s5ddccly28\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BHlr4PXHgSmSRslp%2B7WEYlQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2i4T5pVRdiJXQ1&amp;trk=eml-email_network_conversations_01-header-0-my_network_glimmer&amp;trkEmail=eml-email_network_conversations_01-header-0-my_network_glimmer-null-poh2nf~md58t8pw~uh-null-null&amp;eid=poh2nf-md58t8pw-uh&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4ZGM5ZDA0MDlkYTg4ZjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOWU3ZDM0MzkwY2FiMjAwMzJkMmY4MTliZjcyYjgxMmVjM2FlZmRkYWIzZDQxZjcsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Mynetwork icon\" src=\"https://static.licdn.com/sc/h/4yxfb6j5ycpjfjgehfqgmdx9w\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/notifications/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BHlr4PXHgSmSRslp%2B7WEYlQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2i4T5pVRdiJXQ1&amp;trk=eml-email_network_conversations_01-header-0-notifications_glimmer&amp;trkEmail=eml-email_network_conversations_01-header-0-notifications_glimmer-null-poh2nf~md58t8pw~uh-null-null&amp;eid=poh2nf-md58t8pw-uh&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4ZGM5ZDA0MDlkYTg4ZjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOWU3ZDM0MzkwY2FiMjAwMzJkMmY4MTliZjcyYjgxMmVjM2FlZmRkYWIzZDQxZjcsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Notifications icon\" src=\"https://static.licdn.com/sc/h/6yk5naibkkhrdsfk3j5u8cj89\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"p-0 !pb-0 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0px; padding-bottom: 0px !important;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7338533721328799745?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BHlr4PXHgSmSRslp%2B7WEYlQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2i4T5pVRdiJXQ1&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~md58t8pw~uh-null-null&amp;eid=poh2nf-md58t8pw-uh&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4ZGM5ZDA0MDlkYTg4ZjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOWU3ZDM0MzkwY2FiMjAwMzJkMmY4MTliZjcyYjgxMmVjM2FlZmRkYWIzZDQxZjcsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"post-highlight\"> <td class=\"pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-color-text-solid-secondary text-sm leading-[16px] align-middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: middle; font-size: 14px; line-height: 16px; color: #666666;\"> Suggested for you </td> </tr> </tbody> </table> </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7338533721328799745?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BHlr4PXHgSmSRslp%2B7WEYlQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2i4T5pVRdiJXQ1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~md58t8pw~uh-null-null&amp;eid=poh2nf-md58t8pw-uh&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4ZGM5ZDA0MDlkYTg4ZjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOWU3ZDM0MzkwY2FiMjAwMzJkMmY4MTliZjcyYjgxMmVjM2FlZmRkYWIzZDQxZjcsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"v2style-disable\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://media.licdn.com/dms/image/v2/D560BAQHvB5X8xlpzhA/company-logo_100_100/company-logo_100_100/0/1667850011108/summa_foundation_logo?e=2147483647&amp;v=beta&amp;t=0UdJN-pjpMISZjPPhcI9eS7_6cx06dDPqB7D_qSxOdY\" alt=\"Summa Foundation\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; background-color: #eae6df; display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Summa Foundation </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> 720 followers </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"pt-2 text-md leading-regular text-system-gray-90\" colspan=\"1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> The exceptional dedication of Roxia and Stanley Boykin to healthcare for all those in need is reflected in… </span> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7338533721328799745?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BHlr4PXHgSmSRslp%2B7WEYlQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2i4T5pVRdiJXQ1&amp;trk=eml-email_network_conversations_01-truncated~share~message-0-see~more&amp;trkEmail=eml-email_network_conversations_01-truncated~share~message-0-see~more-null-poh2nf~md58t8pw~uh-null-null&amp;eid=poh2nf-md58t8pw-uh&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4ZGM5ZDA0MDlkYTg4ZjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOWU3ZDM0MzkwY2FiMjAwMzJkMmY4MTliZjcyYjgxMmVjM2FlZmRkYWIzZDQxZjcsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <span data-test-id=\"truncated-message-see-more\" class=\"text-color-link font-bold\" style=\"font-weight: 600; color: #0a66c2;\"> see more </span> </a> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"w-auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: auto;\"> <tbody> <tr> <td class=\"pr-0.5\" data-test-reaction=\"LIKE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/91tdscn0h1aaoefui9crf11j6\" alt=\"LIKE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"PRAISE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/adig5urqxi03qzuy6iyjfm1b5\" alt=\"PRAISE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"EMPATHY\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/evs2x5zfnz5g0xrc6u22treq2\" alt=\"EMPATHY\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"reactions-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 53 </td> <td class=\"px-0.5\" data-test-id=\"separator\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\">·</td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"comments-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 2 Comments </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button w-full koshin__button-with-full-width\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7338533721328799745?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BHlr4PXHgSmSRslp%2B7WEYlQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2i4T5pVRdiJXQ1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~md58t8pw~uh-null-null&amp;eid=poh2nf-md58t8pw-uh&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4ZGM5ZDA0MDlkYTg4ZjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOWU3ZDM0MzkwY2FiMjAwMzJkMmY4MTliZjcyYjgxMmVjM2FlZmRkYWIzZDQxZjcsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; width: 100% !important; display: block !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7338533721328799745?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BHlr4PXHgSmSRslp%2B7WEYlQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2i4T5pVRdiJXQ1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~md58t8pw~uh-null-null&amp;eid=poh2nf-md58t8pw-uh&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4ZGM5ZDA0MDlkYTg4ZjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOWU3ZDM0MzkwY2FiMjAwMzJkMmY4MTliZjcyYjgxMmVjM2FlZmRkYWIzZDQxZjcsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; width: 100% !important; display: block !important;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr><td class=\"h-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 16px;\" height=\"16\"></td></tr> <tr> <td class=\"rounded-md\" data-test-id=\"network-post-update-card\" colspan=\"1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7338533721328799745?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BHlr4PXHgSmSRslp%2B7WEYlQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2i4T5pVRdiJXQ1&amp;trk=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image&amp;trkEmail=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image-null-poh2nf~md58t8pw~uh-null-null&amp;eid=poh2nf-md58t8pw-uh&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4ZGM5ZDA0MDlkYTg4ZjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOWU3ZDM0MzkwY2FiMjAwMzJkMmY4MTliZjcyYjgxMmVjM2FlZmRkYWIzZDQxZjcsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"block w-full h-full\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block; height: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-cool-gray-20 rounded-md\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; background-color: #edf3f8;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-center bg-no-repeat h-[252px] bg-system-gray-40\" align=\"center\" data-test-id=\"update-card-container\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 252px; background-color: #cfcfcf; background-position: center; background-repeat: no-repeat; background-size: cover; background-image: url(&quot;https://media.licdn.com/dms/image/v2/D5610AQFb7aBNePXLNw/image-shrink_800/B56Zde1iFHHoAg-/0/1749642781618?e=1753232400&amp;v=beta&amp;t=IYdtrZueVdrEAxSN-vRDUJBUWzv88ajjczforYYRcCk&quot;);\" height=\"252\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"h-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 100%;\" height=\"100%\"> <tbody> <tr> <td align=\"center\" class=\"overflow-hidden\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; overflow: hidden;\"> <img class=\"w-[448px] h-[252px] hidden hidden\" src=\"https://media.licdn.com/dms/image/v2/D5610AQFb7aBNePXLNw/image-shrink_800/B56Zde1iFHHoAg-/0/1749642781618?e=1753232400&amp;v=beta&amp;t=IYdtrZueVdrEAxSN-vRDUJBUWzv88ajjczforYYRcCk\" alt=\"View image\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: none; height: 252px; width: 448px;\" width=\"448\" height=\"252\"> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"pt-4 pb-2 px-3 bg-color-background-canvas\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding-left: 24px; padding-right: 24px; padding-bottom: 16px; padding-top: 32px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BHlr4PXHgSmSRslp%2B7WEYlQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2i4T5pVRdiJXQ1&amp;trk=eml-email_network_conversations_01-footer_promo-0-footer_see_all&amp;trkEmail=eml-email_network_conversations_01-footer_promo-0-footer_see_all-null-poh2nf~md58t8pw~uh-null-null&amp;eid=poh2nf-md58t8pw-uh&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4ZGM5ZDA0MDlkYTg4ZjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOWU3ZDM0MzkwY2FiMjAwMzJkMmY4MTliZjcyYjgxMmVjM2FlZmRkYWIzZDQxZjcsMSwx\" target=\"_blank\" aria-label=\"See more on LinkedIn\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BHlr4PXHgSmSRslp%2B7WEYlQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2i4T5pVRdiJXQ1&amp;trk=eml-email_network_conversations_01-footer_promo-0-footer_see_all&amp;trkEmail=eml-email_network_conversations_01-footer_promo-0-footer_see_all-null-poh2nf~md58t8pw~uh-null-null&amp;eid=poh2nf-md58t8pw-uh&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4ZGM5ZDA0MDlkYTg4ZjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOWU3ZDM0MzkwY2FiMjAwMzJkMmY4MTliZjcyYjgxMmVjM2FlZmRkYWIzZDQxZjcsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> See more on LinkedIn </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-lg text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 20px; color: #114951;\"> Get the new LinkedIn desktop app </h2> </td> </tr> <tr> <td class=\"text-center pb-2\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <a href=\"https://apps.microsoft.com/store/detail/9WZDNCRFJ4Q7?launch=true&amp;cid=linkedin_email_upsell&amp;mode=full\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it from Microsoft\" src=\"https://static.licdn.com/sc/h/ejpkkpwvqks31a3cjqokb7fbm\" class=\"h-[40px] w-[112px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 112px;\" width=\"112\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-md text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 16px; color: #114951;\"> Also available on mobile </h2> </td> </tr> <tr> <td class=\"text-center\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <a href=\"https://itunes.apple.com/us/app/linkedin/id288429040?pt=10746&amp;ct=st_appsite_flagship&amp;mt=8\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Download on the App Store\" src=\"https://static.licdn.com/sc/h/76yzkd0h5kiv27lrd4yaenylk\" class=\"h-[40px] w-[120px] pr-1\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 120px; padding-right: 8px;\" width=\"120\" height=\"40\"> </a> <a href=\"https://play.google.com/store/apps/details?id=com.linkedin.android&amp;referrer=st_appsite_flagship\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it on Google Play\" src=\"https://static.licdn.com/sc/h/142qudwblp58zwmc9vkqfplug\" class=\"h-[40px] w-[134px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 134px;\" width=\"134\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px;\"><hr class=\"border-none bg-[#e0dfdd] h-[1px]\" style=\"height: 1px; border-style: none; background-color: #e0dfdd;\"></td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" data-test-id=\"email-footer__intended\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BHlr4PXHgSmSRslp%2B7WEYlQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2i4T5pVRdiJXQ1&amp;trk=eml-email_network_conversations_01-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_network_conversations_01-SecurityHelp-0-footerglimmer-null-poh2nf~md58t8pw~uh-null-null&amp;eid=poh2nf-md58t8pw-uh&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4ZGM5ZDA0MDlkYTg4ZjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOWU3ZDM0MzkwY2FiMjAwMzJkMmY4MTliZjcyYjgxMmVjM2FlZmRkYWIzZDQxZjcsMSwx\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving Network Conversations emails. Some content may be automatically translated based on <a href=\"https://www.linkedin.com/mypreferences/d/language-for-translation\" target=\"_blank\" class=\"link-no-visited-state\" data-tracking-will-navigate data-tracking-control-name=\"email_network_conversations_content_settings_link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-weight: 600; color: #0a66c2;\">your settings</a>.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BHlr4PXHgSmSRslp%2B7WEYlQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2i4T5pVRdiJXQ1&amp;trk=eml-email_network_conversations_01-unsubscribe-0-footerGlimmer&amp;trkEmail=eml-email_network_conversations_01-unsubscribe-0-footerGlimmer-null-poh2nf~md58t8pw~uh-null-null&amp;eid=poh2nf-md58t8pw-uh&amp;loid=AQEc1iqN5t74vAAAAZgQteu0nuVHITQ27-oB7j9Rsd_Ph3mhqdPHpNVxWNxfWMz8yqXlZ83NKzaq6ZLpWmPpBaVMEVFAzb0-53Aamdo_LG0tONF9N85t\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Unsubscribe</a>   ·   <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BHlr4PXHgSmSRslp%2B7WEYlQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2i4T5pVRdiJXQ1&amp;trk=eml-email_network_conversations_01-help-0-footerglimmer&amp;trkEmail=eml-email_network_conversations_01-help-0-footerglimmer-null-poh2nf~md58t8pw~uh-null-null&amp;eid=poh2nf-md58t8pw-uh&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4ZGM5ZDA0MDlkYTg4ZjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOWU3ZDM0MzkwY2FiMjAwMzJkMmY4MTliZjcyYjgxMmVjM2FlZmRkYWIzZDQxZjcsMSwx\" target=\"_blank\" data-test-help-link class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BHlr4PXHgSmSRslp%2B7WEYlQ%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2i4T5pVRdiJXQ1&amp;trk=eml-email_network_conversations_01-footer-0-logoGlimmer&amp;trkEmail=eml-email_network_conversations_01-footer-0-logoGlimmer-null-poh2nf~md58t8pw~uh-null-null&amp;eid=poh2nf-md58t8pw-uh&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4ZGM5ZDA0MDlkYTg4ZjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOWU3ZDM0MzkwY2FiMjAwMzJkMmY4MTliZjcyYjgxMmVjM2FlZmRkYWIzZDQxZjcsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFrTlRoME9IQjNMWFZvOlpXMWhhV3hmYm1WMGQyOXlhMTlqYjI1MlpYSnpZWFJwYjI1elh6QXg6.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','Suggested for you\r\n        \r\n\r\n          Summa Foundation shared a post: The exceptional dedication of Roxia and Stanley Boykin to healthcare for all those in need is reflected in their unwavering support of the…\r\nLIKE PRAISE EMPATHY 53, 2 Comments\r\n\r\n\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7338533721328799745?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BHlr4PXHgSmSRslp%2B7WEYlQ%3D%3D&midToken=AQE-iPshthTClw&midSig=2i4T5pVRdiJXQ1&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~md58t8pw~uh-null-null&eid=poh2nf-md58t8pw-uh&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4ZGM5ZDA0MDlkYTg4ZjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOWU3ZDM0MzkwY2FiMjAwMzJkMmY4MTliZjcyYjgxMmVjM2FlZmRkYWIzZDQxZjcsMSwx\r\n        \r\n\r\n\r\nSee more on LinkedIn: https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BHlr4PXHgSmSRslp%2B7WEYlQ%3D%3D&midToken=AQE-iPshthTClw&midSig=2i4T5pVRdiJXQ1&trk=eml-email_network_conversations_01-footer_promo-0-footer_see_all&trkEmail=eml-email_network_conversations_01-footer_promo-0-footer_see_all-null-poh2nf~md58t8pw~uh-null-null&eid=poh2nf-md58t8pw-uh&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4ZGM5ZDA0MDlkYTg4ZjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOWU3ZDM0MzkwY2FiMjAwMzJkMmY4MTliZjcyYjgxMmVjM2FlZmRkYWIzZDQxZjcsMSwx\r\n\r\n----------------------------------------\r\n\r\nThis email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\nLearn why we included this: https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BHlr4PXHgSmSRslp%2B7WEYlQ%3D%3D&midToken=AQE-iPshthTClw&midSig=2i4T5pVRdiJXQ1&trk=eml-email_network_conversations_01-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_network_conversations_01-SecurityHelp-0-textfooterglimmer-null-poh2nf~md58t8pw~uh-null-null&eid=poh2nf-md58t8pw-uh&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4ZGM5ZDA0MDlkYTg4ZjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOWU3ZDM0MzkwY2FiMjAwMzJkMmY4MTliZjcyYjgxMmVjM2FlZmRkYWIzZDQxZjcsMSwx\r\nYou are receiving Network Conversations emails. Some content may be automatically translated based on\r\n      <a href=\"https://www.linkedin.com/mypreferences/d/language-for-translation\" target=\"_blank\" class=\"link-no-visited-state\" data-tracking-will-navigate data-tracking-control-name=\"email_network_conversations_content_settings_link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-weight: 600; color: #0a66c2;\">your settings</a>.\r\n\r\nUnsubscribe: https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BHlr4PXHgSmSRslp%2B7WEYlQ%3D%3D&midToken=AQE-iPshthTClw&midSig=2i4T5pVRdiJXQ1&trk=eml-email_network_conversations_01-unsubscribe-0-textfooterglimmer&trkEmail=eml-email_network_conversations_01-unsubscribe-0-textfooterglimmer-null-poh2nf~md58t8pw~uh-null-null&eid=poh2nf-md58t8pw-uh&loid=AQEc1iqN5t74vAAAAZgQteu0nuVHITQ27-oB7j9Rsd_Ph3mhqdPHpNVxWNxfWMz8yqXlZ83NKzaq6ZLpWmPpBaVMEVFAzb0-53Aamdo_LG0tONF9N85t\r\nHelp: https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BHlr4PXHgSmSRslp%2B7WEYlQ%3D%3D&midToken=AQE-iPshthTClw&midSig=2i4T5pVRdiJXQ1&trk=eml-email_network_conversations_01-help-0-textfooterglimmer&trkEmail=eml-email_network_conversations_01-help-0-textfooterglimmer-null-poh2nf~md58t8pw~uh-null-null&eid=poh2nf-md58t8pw-uh&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4ZGM5ZDA0MDlkYTg4ZjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOWU3ZDM0MzkwY2FiMjAwMzJkMmY4MTliZjcyYjgxMmVjM2FlZmRkYWIzZDQxZjcsMSwx\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.\r\nLinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',0,0,0,0,0,0,'2025-07-16 00:50:14','2025-12-09 19:13:48','2025-12-09 19:13:48','2025-12-09 19:13:48',NULL,NULL,NULL),
(467,4,'<46b6921e1f1442d6118a075fc1ba4b2244ca01a8-20066699-110896733@google.com>',NULL,NULL,'Set up Google Workspace for mavrix.one','workspace-noreply@google.com','The Google Workspace Team','<div>\r\n  <html xmlns:v=urn:schemas-microsoft-com:vml dir=ltr lang=en style=\"margin:0; padding:0\">\r\n    <meta http-equiv=Content-Type content=\"text/html; charset=utf-8\">\r\n    <meta name=viewport content=width=device-width>\r\n    <style>@media only screen{html{min-height:100%;background:#fafafa}}@media only screen and (max-width:640px){.small-float-center{margin:0 auto!important;float:none!important;text-align:center!important}}@media only screen and (max-width:640px){table.body img{width:auto;height:auto}table.body center{min-width:0!important}table.body .container{width:344px!important}table.body .columns{height:auto!important;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:40px!important;padding-right:40px!important}table.body .columns .columns{padding-left:0!important;padding-right:0!important}table.body .collapse .columns{padding-left:0!important;padding-right:0!important}th.small-1{display:inline-block!important;width:8.33333%!important}th.small-3{display:inline-block!important;width:25%!important}th.small-4{display:inline-block!important;width:33.33333%!important}th.small-6{display:inline-block!important;width:50%!important}th.small-8{display:inline-block!important;width:66.66667%!important}th.small-9{display:inline-block!important;width:75%!important}th.small-12{display:inline-block!important;width:100%!important}.columns th.small-12{display:block!important;width:100%!important}table.menu{width:100%!important}table.menu td,table.menu th{width:auto!important;display:inline-block!important}table.menu.vertical td,table.menu.vertical th{display:block!important}table.menu[align=center]{width:auto!important}}</style>\r\n    <span class=preheader style=color:#fafafa;display:none!important;font-size:1px;line-height:1px;max-height:0;max-width:0;mso-hide:all!important;opacity:0;overflow:hidden;visibility:hidden></span>\r\n    <table class=body style=Margin:0;background:#F8F9FA!important;border-collapse:collapse;border-spacing:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;height:100%;line-height:inherit;margin:0;padding:0;vertical-align:top;width:100%;text-align:left>\r\n      <tr style=padding:0;vertical-align:top>\r\n        <td class=center align=center valign=top style=-moz-hyphens:none;-webkit-hyphens:none;Margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all>\r\n          <center data-parsed=\"\" style=min-width:600px;width:100%>\r\n\r\n            <table align=center class=\"container float-center\" style=\"Margin:0 auto;background:#fafafa;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:left;vertical-align:top;width:600px\"><tbody><tr style=padding:0;vertical-align:top><td style=-moz-hyphens:none;-webkit-hyphens:none;Margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all>\r\n              <table class=\"row header\" style=background:#F8F9FA;border-collapse:collapse;border-spacing:0;display:table;font-size:12px;padding:0;position:relative;vertical-align:top;width:100%><tbody><tr style=padding:0;vertical-align:top>\r\n                <th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0 auto;padding:0;padding-bottom:24px;padding-left:40px;padding-right:40px;padding-top:12px;width:560px\"><table style=border-collapse:collapse;border-spacing:0;margin-bottom:0;padding:0;vertical-align:top;width:100%><tr style=padding:0;vertical-align:top><th style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0;text-align:left>\r\n\r\n                  <img src=https://storage.googleapis.com/support-kms-prod/GaOvClLdIVxiDUB6sr9FETwxw9I7ykkXR856 alt=\"Google Workspace\" height=30 style=-ms-interpolation-mode:bicubic;clear:both;display:block;margin-top:24px;max-height:30px;max-width:100%;outline:0;text-decoration:none;width:auto>\r\n\r\n                </th>\r\n<th class=expander style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0!important;visibility:hidden;width:0></th></tr></table></th>\r\n              </tr></tbody></table>\r\n\r\n              <table class=\"row info\" style=align-items:center;background:#fff;border-collapse:collapse;border-color:#E8EAED;border-spacing:0;border-style:solid;border-width:1px;display:table;padding:0;position:relative;vertical-align:top;width:100%><tbody><tr style=padding:0;vertical-align:top>\r\n                <th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0 auto;padding:0;padding-bottom:0;padding-left:40px;padding-right:40px;width:560px\"><table style=border-collapse:collapse;border-spacing:0;padding:0;vertical-align:top;width:100%><tr style=padding:0;vertical-align:top><th style=\"Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0 0 24px;text-align:left\">\r\n\r\n<div><title>Reminder to setup your account</title></div>\r\n<h2 style=\"margin:0;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:24px;font-weight:700;line-height:30px!important;margin-bottom:24px;margin-top:24px;padding:0;word-wrap:normal\">Google Workspace is ready for you</h2>\r\n\r\n<p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;padding:0>Set up your Google Workspace account to start using business email, video conferencing, cloud storage, file sharing, and more.</p>\r\n\r\n<h3 style=\"margin:0;margin-bottom:8px;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;line-height:24px!important;margin:15px 0 5px 0;margin-bottom:10px;padding:0;word-wrap:normal\">Get started</h3>\r\n\r\n<p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;margin:0;margin-bottom:16px;padding:0>Before using Google Workspace Business Plus, verify that you own <a class=noclick style=margin:0;color:#1f1f1f;font-family:inherit;font-weight:inherit;margin:0;padding:0;text-decoration:none>mavrix.one</a>. Sign in to your Google Admin console and follow the setup steps.</p>\r\n\r\n<table class=accountinfo role=presentation style=align:center;background:#f3f3f3;border-collapse:collapse;border-spacing:0;margin-bottom:12px;padding:0;vertical-align:top;width:100%>\r\n  <tbody>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <th class=accountinfo style=\"margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:inherit;line-height:inherit;margin:0;padding:16px 32px 0 32px\">\r\n      <h3 class=accountinfo style=\"margin:0;margin-bottom:8px;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;line-height:26px!important;margin:0;margin-bottom:12px;margin-top:none!important;padding:0;text-align:center;word-wrap:normal\">Your Google Workspace account</h3>\r\n      </th>\r\n    </tr>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <td class=accountinfo style=\"-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0 32px 0 32px;vertical-align:top;word-wrap:keep-all\">\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:0;padding:0><strong>Username: </strong></p>\r\n\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:16px;padding:0><a class=noclick style=margin:0;color:#1f1f1f;font-family:inherit;font-weight:inherit;margin:0;padding:0;text-decoration:none>rick@mavrix.one</a></p>\r\n      </td>\r\n    </tr>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <td class=accountinfo style=\"-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0 32px 0 32px;vertical-align:top;word-wrap:keep-all\">\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:0;padding:0><strong>Domain: </strong></p>\r\n\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:16px;padding:0><a class=noclick style=margin:0;color:#1f1f1f;font-family:inherit;font-weight:inherit;margin:0;padding:0;text-decoration:none>mavrix.one</a></p>\r\n      </td>\r\n    </tr>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <td class=accountinfo style=\"-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0 32px 0 32px;vertical-align:top;word-wrap:keep-all\">\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:16px;padding:0>You&#39;re the administrator. You manage all your Google Workspace services, settings, and users.</p>\r\n      </td>\r\n    </tr>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <td class=accountinfo style=\"-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0 32px 0 32px;vertical-align:top;word-wrap:keep-all\">\r\n      <table class=\"button radius thumbnail\" role=presentation style=\"margin:9px 0 24px 0;border:none;border-collapse:collapse;border-radius:3px;border-spacing:0;box-shadow:0 0 0 1px rgba(10,10,10,.2);display:inline-block;line-height:0;margin:9px 0 24px 0;margin-bottom:inherit;max-width:100%;padding:0;transition:box-shadow .2s ease-out;vertical-align:top;width:auto\">\r\n        <tbody>\r\n          <tr style=padding:0;vertical-align:top>\r\n            <td style=-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all>\r\n            <table style=border-collapse:collapse;border-spacing:0;padding:0;vertical-align:top;width:100%>\r\n              <tbody>\r\n                <tr style=padding:0;vertical-align:top>\r\n                  <td style=-moz-hyphens:none;-webkit-hyphens:none;margin:0;background:#1A73E8;border:none;border-collapse:collapse!important;border-radius:3px;color:#fff;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all><a href=https://c.gle/ANiao5pzNWBoIa6QlbikqUfif5G48Fny0ll1DhXhOgFR0DTXsATL86CfSqqx3VxTSYx-kXlRCYjbDXdeCttF7x3CDZFOs-xvsMbRNJmgvp3gb74aeP39aOc style=\"margin:0;border:0 solid #1A73E8;border-radius:3px;color:#fff;display:inline-block;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:500;line-height:24px;margin:0;padding:8px 16px 8px 16px;text-decoration:none\">Sign in</a></td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n            </td>\r\n          </tr>\r\n        </tbody>\r\n      </table>\r\n\r\n      <p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;margin:0;margin-bottom:16px;padding:0><em>https://admin.google.com</em></p>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<h3 style=\"margin:0;margin-bottom:8px;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;line-height:26px!important;margin:0;margin-bottom:12px;margin-top:20px;padding:0;word-wrap:normal\">We&#39;re here to help</h3>\r\n\r\n<p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;margin:0;margin-bottom:16px;padding:0>24/7 support is included with Google Workspace. <a href=https://c.gle/ANiao5rS89s92Sp0EFEhZ1ShHEkjaLsjLX84oRVghY9dTmqyVXYc5xfFtEtTyVkDrhPjzlV3IQXWUH2kCxuSiVGd9aHWsVItfnUc9a8q8SOzi3pVGjyaQvV3s2M_j7qAyWK1TxW4l8jnxTB0WoGkaEnFy3j7C6HmuTI_sAqxqjgZWnjZJxxnZ2FaYTiG1yi6 style=margin:0;color:#1A73E8;font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400;line-height:24px;margin:0;padding:0;text-decoration:none>Contact the Google Workspace support team</a> for help setting up your account, or <a href=https://c.gle/ANiao5qSZoCcyECxM0Sihn0ruZswZvasy10dXfO2GqLSIgDdLFnxTWnqrwUNOo82ZPVt9O3owBJQsVlRQFvhGz5LGwDzfIUS6Vts59IMBOekWZPEOMMNZo2VjgWS5s7LUL0u0t8Y1c73R8t8tSajttmTTftpr_HCNBpZUZg7p-9QT9I0XpefxLutsnZuUQ style=color:#1A73E8;text-decoration:none>learn more about verifying your domain</a>.</p>\r\n\r\n<p class=regards style=\"color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;line-height:24px;margin:0;margin-bottom:0!important;margin-top:8px;padding:0\">Sincerely,</p>\r\n\r\n<p class=signoff style=\"margin:0;margin-bottom:16px;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;line-height:24px;margin:0;margin-bottom:0px!important;padding:0\">The Google Workspace Team</p>\r\n            </th></tr></table></th>\r\n            </tr></tbody></table>\r\n\r\n            <table class=\"row footer\" role=presentation style=background:#F8F9FA;border-collapse:collapse;border-spacing:0;display:table;margin-top:0;padding:0;position:relative;vertical-align:top;width:100%><tbody><tr style=padding:0;vertical-align:top>\r\n              <th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0 auto;padding:0;padding-bottom:0;padding-left:40px;padding-right:40px;width:560px\"><table style=border-collapse:collapse;border-spacing:0;padding:0;vertical-align:top;width:100%><tr style=padding:0;vertical-align:top><th style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:24px;text-align:left>\r\n\r\n                <img src=https://storage.googleapis.com/support-kms-prod/GaOvClLdIVxiDUB6sr9FETwxw9I7ykkXR856 alt=\"Google Workspace\" height=30 style=-ms-interpolation-mode:bicubic;clear:both;display:block;margin-bottom:14px;max-width:100%;max-height:30px;outline:0;text-decoration:none;width:auto>\r\n                <p style=Margin:0;Margin-bottom:16px;color:#6C737F;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:14px;padding:0>\r\n            © 2025  Google LLC 1600 Amphitheatre Parkway, Mountain View, CA 94043\r\n                </p>\r\n                <p style=Margin:0;Margin-bottom:16px;color:#6C737F;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:14px;padding:0>\r\n            <em>You’re receiving this mandatory email service announcement to update you about important changes to your Google Workspace product or account.</em>\r\n            </p>\r\n            </th>\r\n<th class=expander style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0!important;visibility:hidden;width:0></th></tr></table></th>\r\n            </tr></tbody></table>\r\n            </td></tr></tbody></table>\r\n\r\n          </center>\r\n        </td>\r\n      </tr>\r\n    </table>\r\n    <!-- prevent Gmail on iOS font size manipulation -->\r\n   <div style=\"display:none;white-space:nowrap;font:15px courier;line-height:0\">                                                             </div>\r\n\r\n</html>\r\n</div>','From: \"The Google Workspace Team\" [workspace-noreply@google.com]\r\nSubject:  Set up Google Workspace for mavrix.one\r\n\r\nReminder to setup your account\r\n\r\n## Google Workspace is ready for you\r\n\r\nSet up your Google Workspace account to start using business email, video  \r\nconferencing, cloud storage, file sharing, and more.\r\n\r\n### Get started\r\n\r\nBefore using Google Workspace Business Plus, verify that you own  \r\nmavrix.one. Sign in to your Google Admin console and follow the setup steps.\r\n\r\n### Your Google Workspace account\r\n\r\n**Username: **\r\n\r\nrick@mavrix.one\r\n\r\n**Domain: **\r\n\r\nmavrix.one\r\n\r\nYou\'re the administrator. You manage all your Google Workspace services,  \r\nsettings, and users.\r\n\r\nSign in (https://admin.google.com)\r\n\r\nhttps://admin.google.com\r\n\r\n### We\'re here to help\r\n\r\n24/7 support is included with Google Workspace. Contact the Google  \r\nWorkspace support team  \r\n(https://support.google.com/a/answer/1047213?utm_source=9050854&utm_medium=email)  \r\nfor help setting up your account, or learn more about verifying your domain  \r\n(https://support.google.com/a/answer/60216?utm_source=9050854&utm_medium=email).\r\n\r\nSincerely,\r\n\r\nThe Google Workspace Team\r\n\r\n\r\n(C) 2025  Google LLC 1600 Amphitheatre Parkway, Mountain View, CA 94043 *   \r\nGoogle Asia Pacific Pte. Ltd., 8 Marina View, #30-01, Asia Square 1,  \r\nSingapore 018960  *  Google Ireland Ltd, Gordon House, Barrow Street,  \r\nDublin 4, Ireland.\r\n\r\nYou\'re receiving this mandatory email service announcement to update you  \r\nabout important changes to your Google Workspace product or account.',0,0,0,0,0,0,'2025-07-16 01:35:18','2025-12-09 19:13:48','2025-12-09 19:13:48','2025-12-09 19:13:48',NULL,NULL,NULL),
(468,4,'<f39855575f7f3439a02a8043a3d94594b04a0455-20066699-110896733@google.com>',NULL,NULL,'Set up Google Workspace for mavrix.one','workspace-noreply@google.com','The Google Workspace Team','<div>\r\n  <html xmlns:v=urn:schemas-microsoft-com:vml dir=ltr lang=en style=\"margin:0; padding:0\">\r\n    <meta http-equiv=Content-Type content=\"text/html; charset=utf-8\">\r\n    <meta name=viewport content=width=device-width>\r\n    <style>@media only screen{html{min-height:100%;background:#fafafa}}@media only screen and (max-width:640px){.small-float-center{margin:0 auto!important;float:none!important;text-align:center!important}}@media only screen and (max-width:640px){table.body img{width:auto;height:auto}table.body center{min-width:0!important}table.body .container{width:344px!important}table.body .columns{height:auto!important;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:40px!important;padding-right:40px!important}table.body .columns .columns{padding-left:0!important;padding-right:0!important}table.body .collapse .columns{padding-left:0!important;padding-right:0!important}th.small-1{display:inline-block!important;width:8.33333%!important}th.small-3{display:inline-block!important;width:25%!important}th.small-4{display:inline-block!important;width:33.33333%!important}th.small-6{display:inline-block!important;width:50%!important}th.small-8{display:inline-block!important;width:66.66667%!important}th.small-9{display:inline-block!important;width:75%!important}th.small-12{display:inline-block!important;width:100%!important}.columns th.small-12{display:block!important;width:100%!important}table.menu{width:100%!important}table.menu td,table.menu th{width:auto!important;display:inline-block!important}table.menu.vertical td,table.menu.vertical th{display:block!important}table.menu[align=center]{width:auto!important}}</style>\r\n    <span class=preheader style=color:#fafafa;display:none!important;font-size:1px;line-height:1px;max-height:0;max-width:0;mso-hide:all!important;opacity:0;overflow:hidden;visibility:hidden></span>\r\n    <table class=body style=Margin:0;background:#F8F9FA!important;border-collapse:collapse;border-spacing:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;height:100%;line-height:inherit;margin:0;padding:0;vertical-align:top;width:100%;text-align:left>\r\n      <tr style=padding:0;vertical-align:top>\r\n        <td class=center align=center valign=top style=-moz-hyphens:none;-webkit-hyphens:none;Margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all>\r\n          <center data-parsed=\"\" style=min-width:600px;width:100%>\r\n\r\n            <table align=center class=\"container float-center\" style=\"Margin:0 auto;background:#fafafa;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:left;vertical-align:top;width:600px\"><tbody><tr style=padding:0;vertical-align:top><td style=-moz-hyphens:none;-webkit-hyphens:none;Margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all>\r\n              <table class=\"row header\" style=background:#F8F9FA;border-collapse:collapse;border-spacing:0;display:table;font-size:12px;padding:0;position:relative;vertical-align:top;width:100%><tbody><tr style=padding:0;vertical-align:top>\r\n                <th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0 auto;padding:0;padding-bottom:24px;padding-left:40px;padding-right:40px;padding-top:12px;width:560px\"><table style=border-collapse:collapse;border-spacing:0;margin-bottom:0;padding:0;vertical-align:top;width:100%><tr style=padding:0;vertical-align:top><th style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0;text-align:left>\r\n\r\n                  <img src=https://storage.googleapis.com/support-kms-prod/GaOvClLdIVxiDUB6sr9FETwxw9I7ykkXR856 alt=\"Google Workspace\" height=30 style=-ms-interpolation-mode:bicubic;clear:both;display:block;margin-top:24px;max-height:30px;max-width:100%;outline:0;text-decoration:none;width:auto>\r\n\r\n                </th>\r\n<th class=expander style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0!important;visibility:hidden;width:0></th></tr></table></th>\r\n              </tr></tbody></table>\r\n\r\n              <table class=\"row info\" style=align-items:center;background:#fff;border-collapse:collapse;border-color:#E8EAED;border-spacing:0;border-style:solid;border-width:1px;display:table;padding:0;position:relative;vertical-align:top;width:100%><tbody><tr style=padding:0;vertical-align:top>\r\n                <th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0 auto;padding:0;padding-bottom:0;padding-left:40px;padding-right:40px;width:560px\"><table style=border-collapse:collapse;border-spacing:0;padding:0;vertical-align:top;width:100%><tr style=padding:0;vertical-align:top><th style=\"Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0 0 24px;text-align:left\">\r\n\r\n<div><title>Reminder to setup your account</title></div>\r\n<h2 style=\"margin:0;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:24px;font-weight:700;line-height:30px!important;margin-bottom:24px;margin-top:24px;padding:0;word-wrap:normal\">Google Workspace is ready for you</h2>\r\n\r\n<p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;padding:0>Set up your Google Workspace account to start using business email, video conferencing, cloud storage, file sharing, and more.</p>\r\n\r\n<h3 style=\"margin:0;margin-bottom:8px;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;line-height:24px!important;margin:15px 0 5px 0;margin-bottom:10px;padding:0;word-wrap:normal\">Get started</h3>\r\n\r\n<p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;margin:0;margin-bottom:16px;padding:0>Before using Google Workspace Business Plus, verify that you own <a class=noclick style=margin:0;color:#1f1f1f;font-family:inherit;font-weight:inherit;margin:0;padding:0;text-decoration:none>mavrix.one</a>. Sign in to your Google Admin console and follow the setup steps.</p>\r\n\r\n<table class=accountinfo role=presentation style=align:center;background:#f3f3f3;border-collapse:collapse;border-spacing:0;margin-bottom:12px;padding:0;vertical-align:top;width:100%>\r\n  <tbody>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <th class=accountinfo style=\"margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:inherit;line-height:inherit;margin:0;padding:16px 32px 0 32px\">\r\n      <h3 class=accountinfo style=\"margin:0;margin-bottom:8px;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;line-height:26px!important;margin:0;margin-bottom:12px;margin-top:none!important;padding:0;text-align:center;word-wrap:normal\">Your Google Workspace account</h3>\r\n      </th>\r\n    </tr>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <td class=accountinfo style=\"-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0 32px 0 32px;vertical-align:top;word-wrap:keep-all\">\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:0;padding:0><strong>Username: </strong></p>\r\n\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:16px;padding:0><a class=noclick style=margin:0;color:#1f1f1f;font-family:inherit;font-weight:inherit;margin:0;padding:0;text-decoration:none>rick@mavrix.one</a></p>\r\n      </td>\r\n    </tr>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <td class=accountinfo style=\"-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0 32px 0 32px;vertical-align:top;word-wrap:keep-all\">\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:0;padding:0><strong>Domain: </strong></p>\r\n\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:16px;padding:0><a class=noclick style=margin:0;color:#1f1f1f;font-family:inherit;font-weight:inherit;margin:0;padding:0;text-decoration:none>mavrix.one</a></p>\r\n      </td>\r\n    </tr>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <td class=accountinfo style=\"-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0 32px 0 32px;vertical-align:top;word-wrap:keep-all\">\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:16px;padding:0>You&#39;re the administrator. You manage all your Google Workspace services, settings, and users.</p>\r\n      </td>\r\n    </tr>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <td class=accountinfo style=\"-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0 32px 0 32px;vertical-align:top;word-wrap:keep-all\">\r\n      <table class=\"button radius thumbnail\" role=presentation style=\"margin:9px 0 24px 0;border:none;border-collapse:collapse;border-radius:3px;border-spacing:0;box-shadow:0 0 0 1px rgba(10,10,10,.2);display:inline-block;line-height:0;margin:9px 0 24px 0;margin-bottom:inherit;max-width:100%;padding:0;transition:box-shadow .2s ease-out;vertical-align:top;width:auto\">\r\n        <tbody>\r\n          <tr style=padding:0;vertical-align:top>\r\n            <td style=-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all>\r\n            <table style=border-collapse:collapse;border-spacing:0;padding:0;vertical-align:top;width:100%>\r\n              <tbody>\r\n                <tr style=padding:0;vertical-align:top>\r\n                  <td style=-moz-hyphens:none;-webkit-hyphens:none;margin:0;background:#1A73E8;border:none;border-collapse:collapse!important;border-radius:3px;color:#fff;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all><a href=https://c.gle/ANiao5pmHf1_3aTP4TJQyAd6Qg0qDHOH23dzFbsXGC7UH1W0eEvXV9oAxG-L-DpBNxB5z5t8wKQ_o0e2Fzqv-nyH7l5vmZ7aWs940VqkhrJh8Q2T8vFXisA style=\"margin:0;border:0 solid #1A73E8;border-radius:3px;color:#fff;display:inline-block;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:500;line-height:24px;margin:0;padding:8px 16px 8px 16px;text-decoration:none\">Sign in</a></td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n            </td>\r\n          </tr>\r\n        </tbody>\r\n      </table>\r\n\r\n      <p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;margin:0;margin-bottom:16px;padding:0><em>https://admin.google.com</em></p>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<h3 style=\"margin:0;margin-bottom:8px;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;line-height:26px!important;margin:0;margin-bottom:12px;margin-top:20px;padding:0;word-wrap:normal\">We&#39;re here to help</h3>\r\n\r\n<p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;margin:0;margin-bottom:16px;padding:0>24/7 support is included with Google Workspace. <a href=https://c.gle/ANiao5r6aEQXsubE6iElcHSFIMqVryb00o8alV-lMHAmzFX1xBNe5MMlCBSlsFrkbauSE9FCdU7IJ4aMMfaUgTbBQD6v8IljP9Vchu6rOBb9XMcXDMfS0sgYcPkVfQJvblZ8BD4d6S4EWVZchdx0-NF_gSX9ueRylaPz9Vd-J09p3fut7ndg7l_-8HIYE_KA style=margin:0;color:#1A73E8;font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400;line-height:24px;margin:0;padding:0;text-decoration:none>Contact the Google Workspace support team</a> for help setting up your account, or <a href=https://c.gle/ANiao5o7PaRlaJLwkzIqQVxvVung_ZNgfT6Rslvx0WcaJHJYIDhKBN6-uX18V2EBmSKV5G9gKkzXndXglqJQgLTWeEHaEj_UQEsUAgEUCALGyQE0K452Mb56vAEXGTWE2kiH9EITgL1duukkBN7SaxenuvDKyWFdQQQ8oFN2Rh5K_vnLa8mSXKUqkYOyiA style=color:#1A73E8;text-decoration:none>learn more about verifying your domain</a>.</p>\r\n\r\n<p class=regards style=\"color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;line-height:24px;margin:0;margin-bottom:0!important;margin-top:8px;padding:0\">Sincerely,</p>\r\n\r\n<p class=signoff style=\"margin:0;margin-bottom:16px;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;line-height:24px;margin:0;margin-bottom:0px!important;padding:0\">The Google Workspace Team</p>\r\n            </th></tr></table></th>\r\n            </tr></tbody></table>\r\n\r\n            <table class=\"row footer\" role=presentation style=background:#F8F9FA;border-collapse:collapse;border-spacing:0;display:table;margin-top:0;padding:0;position:relative;vertical-align:top;width:100%><tbody><tr style=padding:0;vertical-align:top>\r\n              <th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0 auto;padding:0;padding-bottom:0;padding-left:40px;padding-right:40px;width:560px\"><table style=border-collapse:collapse;border-spacing:0;padding:0;vertical-align:top;width:100%><tr style=padding:0;vertical-align:top><th style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:24px;text-align:left>\r\n\r\n                <img src=https://storage.googleapis.com/support-kms-prod/GaOvClLdIVxiDUB6sr9FETwxw9I7ykkXR856 alt=\"Google Workspace\" height=30 style=-ms-interpolation-mode:bicubic;clear:both;display:block;margin-bottom:14px;max-width:100%;max-height:30px;outline:0;text-decoration:none;width:auto>\r\n                <p style=Margin:0;Margin-bottom:16px;color:#6C737F;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:14px;padding:0>\r\n            © 2025  Google LLC 1600 Amphitheatre Parkway, Mountain View, CA 94043\r\n                </p>\r\n                <p style=Margin:0;Margin-bottom:16px;color:#6C737F;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:14px;padding:0>\r\n            <em>You’re receiving this mandatory email service announcement to update you about important changes to your Google Workspace product or account.</em>\r\n            </p>\r\n            </th>\r\n<th class=expander style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0!important;visibility:hidden;width:0></th></tr></table></th>\r\n            </tr></tbody></table>\r\n            </td></tr></tbody></table>\r\n\r\n          </center>\r\n        </td>\r\n      </tr>\r\n    </table>\r\n    <!-- prevent Gmail on iOS font size manipulation -->\r\n   <div style=\"display:none;white-space:nowrap;font:15px courier;line-height:0\">                                                             </div>\r\n\r\n</html>\r\n</div>','From: \"The Google Workspace Team\" [workspace-noreply@google.com]\r\nSubject:  Set up Google Workspace for mavrix.one\r\n\r\nReminder to setup your account\r\n\r\n## Google Workspace is ready for you\r\n\r\nSet up your Google Workspace account to start using business email, video  \r\nconferencing, cloud storage, file sharing, and more.\r\n\r\n### Get started\r\n\r\nBefore using Google Workspace Business Plus, verify that you own  \r\nmavrix.one. Sign in to your Google Admin console and follow the setup steps.\r\n\r\n### Your Google Workspace account\r\n\r\n**Username: **\r\n\r\nrick@mavrix.one\r\n\r\n**Domain: **\r\n\r\nmavrix.one\r\n\r\nYou\'re the administrator. You manage all your Google Workspace services,  \r\nsettings, and users.\r\n\r\nSign in (https://admin.google.com)\r\n\r\nhttps://admin.google.com\r\n\r\n### We\'re here to help\r\n\r\n24/7 support is included with Google Workspace. Contact the Google  \r\nWorkspace support team  \r\n(https://support.google.com/a/answer/1047213?utm_source=9050854&utm_medium=email)  \r\nfor help setting up your account, or learn more about verifying your domain  \r\n(https://support.google.com/a/answer/60216?utm_source=9050854&utm_medium=email).\r\n\r\nSincerely,\r\n\r\nThe Google Workspace Team\r\n\r\n\r\n(C) 2025  Google LLC 1600 Amphitheatre Parkway, Mountain View, CA 94043 *   \r\nGoogle Asia Pacific Pte. Ltd., 8 Marina View, #30-01, Asia Square 1,  \r\nSingapore 018960  *  Google Ireland Ltd, Gordon House, Barrow Street,  \r\nDublin 4, Ireland.\r\n\r\nYou\'re receiving this mandatory email service announcement to update you  \r\nabout important changes to your Google Workspace product or account.',0,0,0,0,0,0,'2025-07-16 01:35:21','2025-12-09 19:13:48','2025-12-09 19:13:48','2025-12-09 19:13:48',NULL,NULL,NULL),
(469,4,'<CAGgBgfBryywxKX1aHhLAcQOaiF5o8RbxAewFJVX8nXfOAYbz2g@mail.gmail.com>',NULL,NULL,'Camera Analog (07/16/25 1040)','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">Rick:</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Here&#39;s the answer to your first question, can we make an analog camera (yes), my take on it, and some knowledge regarding what it takes to make one.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">This should be enough to make you guys dangerous!</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><div><font face=\"courier new, monospace\">Regards,</font></div><div><font face=\"courier new, monospace\">Thomas Pownall</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">CADX Services, Inc.</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Tel: 585-624-1491 X101</font></div><div><font face=\"courier new, monospace\">Fax: 585-582-1101</font></div><div><font face=\"courier new, monospace\">E-Mail: <a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a></font></div><div><font face=\"courier new, monospace\">Web: <a href=\"http://www.cadxservices.com\" target=\"_blank\">http://www.cadxservices.com</a></font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\">**************** Confidentiality Statement ****************</font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Privileged/Confidential Information may be contained in this</font></div><div><font face=\"courier new, monospace\">message. If you are not the addressee indicated in this message</font></div><div><font face=\"courier new, monospace\">(or responsible for delivery of the message to such person),</font></div><div><font face=\"courier new, monospace\">you may not copy or deliver this message to anyone. In such</font></div><div><font face=\"courier new, monospace\">case, you should destroy this message, and notify us</font></div><div><font face=\"courier new, monospace\">immediately. If you or your employer does not consent to</font></div><div><font face=\"courier new, monospace\">Internet email messages of this kind, please advise us</font></div><div><font face=\"courier new, monospace\">immediately. Opinions, conclusions and other information</font></div><div><font face=\"courier new, monospace\">expressed in this message are not given or endorsed by my firm</font></div><div><font face=\"courier new, monospace\">or employer unless otherwise indicated by an authorized</font></div><div><font face=\"courier new, monospace\">representative independent of this message.</font></div></div></div></div></div></div></div>','Rick:\r\n\r\nHere\'s the answer to your first question, can we make an analog camera\r\n(yes), my take on it, and some knowledge regarding what it takes to make\r\none.\r\n\r\nThis should be enough to make you guys dangerous!\r\n\r\nRegards,\r\nThomas Pownall\r\n\r\nCADX Services, Inc.\r\n\r\nTel: 585-624-1491 X101\r\nFax: 585-582-1101\r\nE-Mail: tpownall@cadxservices.com\r\nWeb: http://www.cadxservices.com\r\n\r\n***********************************************************\r\n**************** Confidentiality Statement ****************\r\n***********************************************************\r\n\r\nPrivileged/Confidential Information may be contained in this\r\nmessage. If you are not the addressee indicated in this message\r\n(or responsible for delivery of the message to such person),\r\nyou may not copy or deliver this message to anyone. In such\r\ncase, you should destroy this message, and notify us\r\nimmediately. If you or your employer does not consent to\r\nInternet email messages of this kind, please advise us\r\nimmediately. Opinions, conclusions and other information\r\nexpressed in this message are not given or endorsed by my firm\r\nor employer unless otherwise indicated by an authorized\r\nrepresentative independent of this message.',0,0,0,0,0,0,'2025-07-16 14:38:43','2025-12-09 19:13:50','2025-12-09 19:13:50','2025-12-09 19:13:50',NULL,NULL,NULL),
(470,4,'<PH3PPFCA48BBAFBED146259B192FAAC89E7CA56A@PH3PPFCA48BBAFB.namprd22.prod.outlook.com>',NULL,NULL,'RE: DragonPlate Contact','bdorsch@allredcorp.com','Billy Dorsch','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle19\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;\r\n	font-weight:normal;\r\n	font-style:normal;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Hi Rick, <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">You are very welcome. I am meeting with JB this afternoon to discuss&nbsp;this; he’s had a lot of things to catch up on Monday and Tuesday. I will reach out after he and I connect on the&nbsp;next steps.\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><br>\r\nEnjoy Miami! Safe travels, and I will be in touch later today. <br>\r\n<br>\r\nThanks, <br>\r\nBilly <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, July 16, 2025 7:41 AM<br>\r\n<b>To:</b> Billy Dorsch &lt;bdorsch@allredcorp.com&gt;<br>\r\n<b>Subject:</b> Re: DragonPlate Contact<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"background:#FFCCDD\"><b><span style=\"font-family:&quot;Helvetica&quot;,sans-serif;color:black\">EXTERNAL EMAIL:</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Be cautious with links and attachments.</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Billy - thanks for the update.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I was traveling a bit this week (in Miami today).<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Could you please provide an update on this?<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks!<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick<o:p></o:p></span></p>\r\n<div id=\"bloop_sign_1752666009672701952\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" id=\"_x0000_i1027\" src=\"file://Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"airmailon\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">On July 11, 2025 at 11:16:54 AM, Billy Dorsch (<a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Rick,\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I\'m sorry for not getting this email out sooner. I just wanted to update you on the status of your request. I pinged\r\n the team yesterday, and today I see that a few of the folks I wanted to talk to aren’t in the office today. I have emailed our founder/president, JB Allred, to see his schedule for next week so we can arrange a call to discuss. I will let you know as soon\r\n as I hear from JB, who oversees our Engineering team. I don’t want too much time to pass, so I hope we can schedule something for early next week.\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">There is a chance I may not hear from JB until Monday morning, as he is currently out of the office today. Let\r\n me know if you have any open availability early next week, and I can bounce those off JB so we can sync up.\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks again, Rick. I look forward to your feedback and connecting with you next week!</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Best,</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Billy Dorsch\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Sales, Allred &amp; Associates</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>&nbsp;&nbsp; &nbsp;(315) 612-3876&nbsp; &nbsp;<a href=\"http://www.allredcorp.com/\">www.allredcorp.com</a></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">321 NY Rt. 5 Elbridge, NY 13060, USA</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"103\" height=\"78\" style=\"width:1.0729in;height:.8125in\" id=\"Picture_x0020_1\" src=\"cid:image001.jpg@01DBF645.BA861F90\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<img border=\"0\" width=\"82\" height=\"79\" style=\"width:.8541in;height:.8229in\" id=\"Picture_x0020_2\" src=\"cid:image002.jpg@01DBF645.BA861F90\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><br>\r\n<br>\r\n<br>\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Hi Rick,\r\n\r\nYou are very welcome. I am meeting with JB this afternoon to discuss this; he’s had a lot of things to catch up on Monday and Tuesday. I will reach out after he and I connect on the next steps.\r\n\r\nEnjoy Miami! Safe travels, and I will be in touch later today.\r\n\r\nThanks,\r\nBilly\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Wednesday, July 16, 2025 7:41 AM\r\nTo: Billy Dorsch <bdorsch@allredcorp.com>\r\nSubject: Re: DragonPlate Contact\r\n\r\nEXTERNAL EMAIL:Be cautious with links and attachments.\r\n\r\nHi Billy - thanks for the update.\r\nI was traveling a bit this week (in Miami today).\r\nCould you please provide an update on this?\r\nThanks!\r\nRick\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn July 11, 2025 at 11:16:54 AM, Billy Dorsch (bdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>) wrote:\r\nHi Rick,\r\n\r\nI\'m sorry for not getting this email out sooner. I just wanted to update you on the status of your request. I pinged the team yesterday, and today I see that a few of the folks I wanted to talk to aren’t in the office today. I have emailed our founder/president, JB Allred, to see his schedule for next week so we can arrange a call to discuss. I will let you know as soon as I hear from JB, who oversees our Engineering team. I don’t want too much time to pass, so I hope we can schedule something for early next week.\r\n\r\nThere is a chance I may not hear from JB until Monday morning, as he is currently out of the office today. Let me know if you have any open availability early next week, and I can bounce those off JB so we can sync up.\r\n\r\nThanks again, Rick. I look forward to your feedback and connecting with you next week!\r\n\r\nBest,\r\n\r\nBilly Dorsch\r\nSales, Allred & Associates\r\nbdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>    (315) 612-3876   www.allredcorp.com<http://www.allredcorp.com/>\r\n321 NY Rt. 5 Elbridge, NY 13060, USA\r\n[cid:image001.jpg@01DBF645.BA861F90] [cid:image002.jpg@01DBF645.BA861F90]\r\n\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-07-16 15:35:29','2025-12-09 19:13:50','2025-12-09 19:13:50','2025-12-09 19:13:50',NULL,NULL,NULL),
(471,4,'<CAGgBgfD_W1sGzjaAjEuKv-AJCHxiraxzjvoPMVzGgX-aP5Pv-A@mail.gmail.com>',NULL,NULL,'Confidential Pictures: Rechargable Field Radio (07/16/25 1140)','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\"><img src=\"cid:ii_md64dz8t0\" alt=\"20220625_130119.jpg\" width=\"723\" height=\"399\" style=\"margin-right: 0px;\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"\">This is a unit I designed for use by boots on the ground in Lima Peru,Columbia, and  Kazakhstan.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">It provides a radio-to-Internet link back to their base.  </div></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">This is entirely my IP and handiwork.  Not only did we design the circuit board itself, we wrote the software, designed the enclosure, designed the wire harnesses, and manufactured all units.  In other words, starting with a problem we created a concept and took it all the way to finished product that was deployed in the field.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><img src=\"cid:ii_md64ha7j1\" alt=\"image.png\" width=\"726\" height=\"373\" style=\"margin-right: 0px;\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><img src=\"cid:ii_md64nkdw2\" alt=\"20220117_181656.jpg\" width=\"443\" height=\"773\" style=\"margin-right: 0px;\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><div><font face=\"courier new, monospace\">Regards,</font></div><div><font face=\"courier new, monospace\">Thomas Pownall</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">CADX Services, Inc.</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Tel: 585-624-1491 X101</font></div><div><font face=\"courier new, monospace\">Fax: 585-582-1101</font></div><div><font face=\"courier new, monospace\">E-Mail: <a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a></font></div><div><font face=\"courier new, monospace\">Web: <a href=\"http://www.cadxservices.com\" target=\"_blank\">http://www.cadxservices.com</a></font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\">**************** Confidentiality Statement ****************</font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Privileged/Confidential Information may be contained in this</font></div><div><font face=\"courier new, monospace\">message. If you are not the addressee indicated in this message</font></div><div><font face=\"courier new, monospace\">(or responsible for delivery of the message to such person),</font></div><div><font face=\"courier new, monospace\">you may not copy or deliver this message to anyone. In such</font></div><div><font face=\"courier new, monospace\">case, you should destroy this message, and notify us</font></div><div><font face=\"courier new, monospace\">immediately. If you or your employer does not consent to</font></div><div><font face=\"courier new, monospace\">Internet email messages of this kind, please advise us</font></div><div><font face=\"courier new, monospace\">immediately. Opinions, conclusions and other information</font></div><div><font face=\"courier new, monospace\">expressed in this message are not given or endorsed by my firm</font></div><div><font face=\"courier new, monospace\">or employer unless otherwise indicated by an authorized</font></div><div><font face=\"courier new, monospace\">representative independent of this message.</font></div></div></div></div></div></div></div>','[image: 20220625_130119.jpg]\r\n\r\nThis is a unit I designed for use by boots on the ground in Lima\r\nPeru,Columbia, and  Kazakhstan.\r\n\r\nIt provides a radio-to-Internet link back to their base.\r\n\r\nThis is entirely my IP and handiwork.  Not only did we design the circuit\r\nboard itself, we wrote the software, designed the enclosure, designed the\r\nwire harnesses, and manufactured all units.  In other words, starting with\r\na problem we created a concept and took it all the way to finished product\r\nthat was deployed in the field.\r\n\r\n[image: image.png]\r\n\r\n[image: 20220117_181656.jpg]\r\n\r\nRegards,\r\nThomas Pownall\r\n\r\nCADX Services, Inc.\r\n\r\nTel: 585-624-1491 X101\r\nFax: 585-582-1101\r\nE-Mail: tpownall@cadxservices.com\r\nWeb: http://www.cadxservices.com\r\n\r\n***********************************************************\r\n**************** Confidentiality Statement ****************\r\n***********************************************************\r\n\r\nPrivileged/Confidential Information may be contained in this\r\nmessage. If you are not the addressee indicated in this message\r\n(or responsible for delivery of the message to such person),\r\nyou may not copy or deliver this message to anyone. In such\r\ncase, you should destroy this message, and notify us\r\nimmediately. If you or your employer does not consent to\r\nInternet email messages of this kind, please advise us\r\nimmediately. Opinions, conclusions and other information\r\nexpressed in this message are not given or endorsed by my firm\r\nor employer unless otherwise indicated by an authorized\r\nrepresentative independent of this message.',0,0,0,0,0,0,'2025-07-16 15:40:51','2025-12-09 19:13:53','2025-12-09 19:13:53','2025-12-09 19:13:53',NULL,NULL,NULL),
(472,4,'<CAGgBgfDUfT0UtVsC6Rgr=j28A9DiWz=cahg_PEBBY0=ivFrr2A@mail.gmail.com>',NULL,NULL,'Confidential Pictures: EMIRS (07/16/25 1140)','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><img src=\"cid:ii_md612qie0\" alt=\"CADX_DSC_0042.JPG\" width=\"764\" height=\"709\" style=\"margin-right: 0px;\"><br><br clear=\"all\"></div><div><div class=\"gmail_default\" style=\"font-size:small\">This is a job I did for the DoD, the entire thing.  It was a retrofit to the Advanced Hawkeye, revision C do revision D, the radar planes that sit on our carriers.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">It deploys a 250-foot cable antenna during flight, and it&#39;s stuffed full of all sorts of fancy features.  One of these goes in the cockpit with the pilot, and the other goes with a CIC officer in the back.  Their toilet was removed in order to fit a 4000W electric winch (and maybe a small hole they could pee through).</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Both the control unit (seen above) and the motor drive unit and the interconnect between the two were entirely my work.  They were designed to last 20 years minimum.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">I was 3rd tier down, which is where I learned 3rd tier does all the work, whereas 1st and 2nd tier hand all the actual work to 3rd tier!</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">For example, see the black and yellow switch lock over the CABLE SEVER switch?  It cost me $40K to determine that those stripes were going to be black and yellow!</div></div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><div><font face=\"courier new, monospace\">Regards,</font></div><div><font face=\"courier new, monospace\">Thomas Pownall</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">CADX Services, Inc.</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Tel: 585-624-1491 X101</font></div><div><font face=\"courier new, monospace\">Fax: 585-582-1101</font></div><div><font face=\"courier new, monospace\">E-Mail: <a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a></font></div><div><font face=\"courier new, monospace\">Web: <a href=\"http://www.cadxservices.com\" target=\"_blank\">http://www.cadxservices.com</a></font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\">**************** Confidentiality Statement ****************</font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Privileged/Confidential Information may be contained in this</font></div><div><font face=\"courier new, monospace\">message. If you are not the addressee indicated in this message</font></div><div><font face=\"courier new, monospace\">(or responsible for delivery of the message to such person),</font></div><div><font face=\"courier new, monospace\">you may not copy or deliver this message to anyone. In such</font></div><div><font face=\"courier new, monospace\">case, you should destroy this message, and notify us</font></div><div><font face=\"courier new, monospace\">immediately. If you or your employer does not consent to</font></div><div><font face=\"courier new, monospace\">Internet email messages of this kind, please advise us</font></div><div><font face=\"courier new, monospace\">immediately. Opinions, conclusions and other information</font></div><div><font face=\"courier new, monospace\">expressed in this message are not given or endorsed by my firm</font></div><div><font face=\"courier new, monospace\">or employer unless otherwise indicated by an authorized</font></div><div><font face=\"courier new, monospace\">representative independent of this message.</font></div></div></div></div></div></div></div>','[image: CADX_DSC_0042.JPG]\r\n\r\nThis is a job I did for the DoD, the entire thing.  It was a retrofit to\r\nthe Advanced Hawkeye, revision C do revision D, the radar planes that sit\r\non our carriers.\r\n\r\nIt deploys a 250-foot cable antenna during flight, and it\'s stuffed full of\r\nall sorts of fancy features.  One of these goes in the cockpit with the\r\npilot, and the other goes with a CIC officer in the back.  Their toilet was\r\nremoved in order to fit a 4000W electric winch (and maybe a small hole they\r\ncould pee through).\r\n\r\nBoth the control unit (seen above) and the motor drive unit and the\r\ninterconnect between the two were entirely my work.  They were designed to\r\nlast 20 years minimum.\r\n\r\nI was 3rd tier down, which is where I learned 3rd tier does all the work,\r\nwhereas 1st and 2nd tier hand all the actual work to 3rd tier!\r\n\r\nFor example, see the black and yellow switch lock over the CABLE SEVER\r\nswitch?  It cost me $40K to determine that those stripes were going to be\r\nblack and yellow!\r\n\r\nRegards,\r\nThomas Pownall\r\n\r\nCADX Services, Inc.\r\n\r\nTel: 585-624-1491 X101\r\nFax: 585-582-1101\r\nE-Mail: tpownall@cadxservices.com\r\nWeb: http://www.cadxservices.com\r\n\r\n***********************************************************\r\n**************** Confidentiality Statement ****************\r\n***********************************************************\r\n\r\nPrivileged/Confidential Information may be contained in this\r\nmessage. If you are not the addressee indicated in this message\r\n(or responsible for delivery of the message to such person),\r\nyou may not copy or deliver this message to anyone. In such\r\ncase, you should destroy this message, and notify us\r\nimmediately. If you or your employer does not consent to\r\nInternet email messages of this kind, please advise us\r\nimmediately. Opinions, conclusions and other information\r\nexpressed in this message are not given or endorsed by my firm\r\nor employer unless otherwise indicated by an authorized\r\nrepresentative independent of this message.',0,0,0,0,0,0,'2025-07-16 15:41:17','2025-12-09 19:13:54','2025-12-09 19:13:54','2025-12-09 19:13:54',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(473,4,'<CAGgBgfBRAU=2oKQbBujHN4vQB72-y0OLFfS7rN-wjSMhkhSBPA@mail.gmail.com>',NULL,NULL,'Confidential Pictures: LINK-X1R (07/16/25 1140)','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><img src=\"cid:ii_md63ytaa1\" alt=\"20250711_110655.jpg\" width=\"765\" height=\"470\" style=\"margin-right: 0px;\"></div><div><br></div><div class=\"gmail_default\" style=\"font-size:small\">This is a carrier board that mates a Jetson Orin Nano along with an advanced software-defined radio (SDR).</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">I&#39;m sure we&#39;ll see more of these in 4 years, but not yet.  Typically the things I work on don&#39;t exist anywhere else, and this is no exception.  This is the second of these boards that have ever been built and it does something very unique.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><img src=\"cid:ii_md641ixd2\" alt=\"carrier.png\" width=\"760\" height=\"423\" style=\"margin-right: 0px;\"></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">That&#39;s some of the layout in my CAD software.  Some of the signals on this board are so fast (10 gigbits per second) we have to calculate how long it&#39;ll take the electrons to go from one end of the board to the other and use that information to adjust the exact lengths of the signal traces, to within a few pico-seconds (i.e. trillionths of a second).  It takes about 165 pico-seconds per inch, depending on what material you use and what&#39;s above and below your signal traces.<br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">We don&#39;t start off with the rules that govern these things, there&#39;s nothing off the shelf here.  We have to do the research, do the math, then define the rules ourselves and make sure we stay within them and hope we didn&#39;t miss anything.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><div><font face=\"courier new, monospace\">Regards,</font></div><div><font face=\"courier new, monospace\">Thomas Pownall</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">CADX Services, Inc.</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Tel: 585-624-1491 X101</font></div><div><font face=\"courier new, monospace\">Fax: 585-582-1101</font></div><div><font face=\"courier new, monospace\">E-Mail: <a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a></font></div><div><font face=\"courier new, monospace\">Web: <a href=\"http://www.cadxservices.com\" target=\"_blank\">http://www.cadxservices.com</a></font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\">**************** Confidentiality Statement ****************</font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Privileged/Confidential Information may be contained in this</font></div><div><font face=\"courier new, monospace\">message. If you are not the addressee indicated in this message</font></div><div><font face=\"courier new, monospace\">(or responsible for delivery of the message to such person),</font></div><div><font face=\"courier new, monospace\">you may not copy or deliver this message to anyone. In such</font></div><div><font face=\"courier new, monospace\">case, you should destroy this message, and notify us</font></div><div><font face=\"courier new, monospace\">immediately. If you or your employer does not consent to</font></div><div><font face=\"courier new, monospace\">Internet email messages of this kind, please advise us</font></div><div><font face=\"courier new, monospace\">immediately. Opinions, conclusions and other information</font></div><div><font face=\"courier new, monospace\">expressed in this message are not given or endorsed by my firm</font></div><div><font face=\"courier new, monospace\">or employer unless otherwise indicated by an authorized</font></div><div><font face=\"courier new, monospace\">representative independent of this message.</font></div></div></div></div></div></div></div>','[image: 20250711_110655.jpg]\r\n\r\nThis is a carrier board that mates a Jetson Orin Nano along with an\r\nadvanced software-defined radio (SDR).\r\n\r\nI\'m sure we\'ll see more of these in 4 years, but not yet.  Typically the\r\nthings I work on don\'t exist anywhere else, and this is no exception.  This\r\nis the second of these boards that have ever been built and it does\r\nsomething very unique.\r\n\r\n[image: carrier.png]\r\n\r\nThat\'s some of the layout in my CAD software.  Some of the signals on this\r\nboard are so fast (10 gigbits per second) we have to calculate how long\r\nit\'ll take the electrons to go from one end of the board to the other and\r\nuse that information to adjust the exact lengths of the signal traces, to\r\nwithin a few pico-seconds (i.e. trillionths of a second).  It takes about\r\n165 pico-seconds per inch, depending on what material you use and what\'s\r\nabove and below your signal traces.\r\n\r\nWe don\'t start off with the rules that govern these things, there\'s nothing\r\noff the shelf here.  We have to do the research, do the math, then define\r\nthe rules ourselves and make sure we stay within them and hope we didn\'t\r\nmiss anything.\r\n\r\nRegards,\r\nThomas Pownall\r\n\r\nCADX Services, Inc.\r\n\r\nTel: 585-624-1491 X101\r\nFax: 585-582-1101\r\nE-Mail: tpownall@cadxservices.com\r\nWeb: http://www.cadxservices.com\r\n\r\n***********************************************************\r\n**************** Confidentiality Statement ****************\r\n***********************************************************\r\n\r\nPrivileged/Confidential Information may be contained in this\r\nmessage. If you are not the addressee indicated in this message\r\n(or responsible for delivery of the message to such person),\r\nyou may not copy or deliver this message to anyone. In such\r\ncase, you should destroy this message, and notify us\r\nimmediately. If you or your employer does not consent to\r\nInternet email messages of this kind, please advise us\r\nimmediately. Opinions, conclusions and other information\r\nexpressed in this message are not given or endorsed by my firm\r\nor employer unless otherwise indicated by an authorized\r\nrepresentative independent of this message.',0,0,0,0,0,0,'2025-07-16 15:41:34','2025-12-09 19:13:55','2025-12-09 19:13:55','2025-12-09 19:13:55',NULL,NULL,NULL),
(474,4,'<CAGgBgfCst9BW1CAhk6dsSt38p_fsMDUY=bYnCJc4r7-R7gxB3g@mail.gmail.com>',NULL,NULL,'Question about Modal AI (07/16/25 1140)','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\"><div class=\"gmail_default\">What you&#39;ve asked me is, with the best interest of the United States in mind, try to formulate a plan that lets us own or control the ingredients needed to make each one of these sub-assemblies.  It&#39;s a pretty straightforward request and I gave you my plan -- figure out how to build what&#39;s in the market now, then augment and maybe lose features in exchange for using design elements that are more controlled or inside the United States.</div><div><br></div></div><div class=\"gmail_default\" style=\"font-size:small\">Some of those boards, the chips they use are not made in the United States.  For example, the Microhard modem is made in Canada.  What interested me the most about that one is they spent a lot of money figuring out how to avoid it from being jammed, but then they put it in a socket and brought all the little wires out -- that whole board still needs to be wrapped in metal!</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Then there&#39;s the Qualcomm chips some of these modules use.  They&#39;re made exclusively in Taiwan and South Korea.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">If you want, buy some of the modules you&#39;re curious about and send them to me, I&#39;ll take them apart and see what&#39;s under the hood.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">As to the 4-in-1 ESC, yes I&#39;ll try to tackle that too.  There are 3 parts on that board that are tough to source either domestically or from an ally:</div><div class=\"gmail_default\" style=\"font-size:small\"><ul><li>FET</li><li>FET driver</li><li>Microprocessor</li></ul></div><div class=\"gmail_default\" style=\"font-size:small\">I believe I&#39;ve found manufacturers that aren&#39;t Chinese.  They might be in the Philippines, Indonesia, and some of them might be in the US.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">What you&#39;re asking me about is what you&#39;d be paying me for on the 2nd or 3rd stage -- it has nothing to do with the first stage, where we&#39;re figuring out how to crawl so that we can figure out how to walk.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">The fact that I can answer this question means I&#39;ve already been working on it for a while.</div></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">I didn&#39;t see anything on that website that we can&#39;t do, it&#39;s just time and money and making sure we&#39;re comparing apples to apples -- they use some slippery words.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">I&#39;ve been making stuff like this for the past 30 years.  Either someone hands over their IP for me to lay out, or they come to me asking me to put my IP in.  I&#39;ve worked on things far more complicated that I can&#39;t even talk about, I&#39;ve worked on proof-of-concept things where money didn&#39;t matter so long as it worked.  I&#39;ve been in space, in planes, in submarines, in missiles, nuclear power plants, spy balloons, refrigerators, elevators, furnaces, cash registers -- I could keep going.<br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Trying to figure out how to help you without spinning my wheels.  I thought I laid out a detailed plan.  You said you wanted to build a facility to assemble stuff, I told you I could have stuff for the facility to assemble.  I&#39;m familiar with the entire process of how to fabricate a circuit board, put components on, and everything in between.  I&#39;m familiar with manufacturing floors and every aspect of software and documentation you&#39;ll need in order to build a product -- which unfortunately includes ISO and AS9100 and MRP systems.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">I hope this answers all your questions.  If you have any specific board you want me to look at, buy it and send it to me.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><div class=\"gmail_default\">I&#39;m a little lost as to what you guys want -- I thought you wanted to be able to build the electronics and have a drone that is US-based, or at least have a plan to get the ingredients, and I seem to be all over the place at this point.</div><div class=\"gmail_default\"><br></div><div class=\"gmail_default\">I&#39;ve been working on this with you for months.  A few weeks back you said we&#39;d be moving in a few weeks.  I stopped pulling in work and finished what was on my docket so I wouldn&#39;t be double-booked.  Here we are, almost a month later, and I don&#39;t know what we&#39;re doing.</div></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><span style=\"font-family:&quot;courier new&quot;,monospace\">Regards,</span><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div dir=\"ltr\"><div><font face=\"courier new, monospace\">Thomas Pownall</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">CADX Services, Inc.</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Tel: 585-624-1491 X101</font></div><div><font face=\"courier new, monospace\">Fax: 585-582-1101</font></div><div><font face=\"courier new, monospace\">E-Mail: <a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a></font></div><div><font face=\"courier new, monospace\">Web: <a href=\"http://www.cadxservices.com\" target=\"_blank\">http://www.cadxservices.com</a></font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\">**************** Confidentiality Statement ****************</font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Privileged/Confidential Information may be contained in this</font></div><div><font face=\"courier new, monospace\">message. If you are not the addressee indicated in this message</font></div><div><font face=\"courier new, monospace\">(or responsible for delivery of the message to such person),</font></div><div><font face=\"courier new, monospace\">you may not copy or deliver this message to anyone. In such</font></div><div><font face=\"courier new, monospace\">case, you should destroy this message, and notify us</font></div><div><font face=\"courier new, monospace\">immediately. If you or your employer does not consent to</font></div><div><font face=\"courier new, monospace\">Internet email messages of this kind, please advise us</font></div><div><font face=\"courier new, monospace\">immediately. Opinions, conclusions and other information</font></div><div><font face=\"courier new, monospace\">expressed in this message are not given or endorsed by my firm</font></div><div><font face=\"courier new, monospace\">or employer unless otherwise indicated by an authorized</font></div><div><font face=\"courier new, monospace\">representative independent of this message.</font></div></div></div></div></div></div>','What you\'ve asked me is, with the best interest of the United States in\r\nmind, try to formulate a plan that lets us own or control the ingredients\r\nneeded to make each one of these sub-assemblies.  It\'s a pretty\r\nstraightforward request and I gave you my plan -- figure out how to build\r\nwhat\'s in the market now, then augment and maybe lose features in exchange\r\nfor using design elements that are more controlled or inside the United\r\nStates.\r\n\r\nSome of those boards, the chips they use are not made in the United\r\nStates.  For example, the Microhard modem is made in Canada.  What\r\ninterested me the most about that one is they spent a lot of money figuring\r\nout how to avoid it from being jammed, but then they put it in a socket and\r\nbrought all the little wires out -- that whole board still needs to be\r\nwrapped in metal!\r\n\r\nThen there\'s the Qualcomm chips some of these modules use.  They\'re made\r\nexclusively in Taiwan and South Korea.\r\n\r\nIf you want, buy some of the modules you\'re curious about and send them to\r\nme, I\'ll take them apart and see what\'s under the hood.\r\n\r\nAs to the 4-in-1 ESC, yes I\'ll try to tackle that too.  There are 3 parts\r\non that board that are tough to source either domestically or from an ally:\r\n\r\n   - FET\r\n   - FET driver\r\n   - Microprocessor\r\n\r\nI believe I\'ve found manufacturers that aren\'t Chinese.  They might be in\r\nthe Philippines, Indonesia, and some of them might be in the US.\r\n\r\nWhat you\'re asking me about is what you\'d be paying me for on the 2nd or\r\n3rd stage -- it has nothing to do with the first stage, where we\'re\r\nfiguring out how to crawl so that we can figure out how to walk.\r\n\r\nThe fact that I can answer this question means I\'ve already been working on\r\nit for a while.\r\n\r\nI didn\'t see anything on that website that we can\'t do, it\'s just time and\r\nmoney and making sure we\'re comparing apples to apples -- they use some\r\nslippery words.\r\n\r\nI\'ve been making stuff like this for the past 30 years.  Either someone\r\nhands over their IP for me to lay out, or they come to me asking me to put\r\nmy IP in.  I\'ve worked on things far more complicated that I can\'t even\r\ntalk about, I\'ve worked on proof-of-concept things where money didn\'t\r\nmatter so long as it worked.  I\'ve been in space, in planes, in submarines,\r\nin missiles, nuclear power plants, spy balloons, refrigerators, elevators,\r\nfurnaces, cash registers -- I could keep going.\r\n\r\nTrying to figure out how to help you without spinning my wheels.  I thought\r\nI laid out a detailed plan.  You said you wanted to build a facility to\r\nassemble stuff, I told you I could have stuff for the facility to\r\nassemble.  I\'m familiar with the entire process of how to fabricate a\r\ncircuit board, put components on, and everything in between.  I\'m familiar\r\nwith manufacturing floors and every aspect of software and documentation\r\nyou\'ll need in order to build a product -- which unfortunately includes ISO\r\nand AS9100 and MRP systems.\r\n\r\nI hope this answers all your questions.  If you have any specific board you\r\nwant me to look at, buy it and send it to me.\r\n\r\n\r\nI\'m a little lost as to what you guys want -- I thought you wanted to be\r\nable to build the electronics and have a drone that is US-based, or at\r\nleast have a plan to get the ingredients, and I seem to be all over the\r\nplace at this point.\r\n\r\nI\'ve been working on this with you for months.  A few weeks back you said\r\nwe\'d be moving in a few weeks.  I stopped pulling in work and finished what\r\nwas on my docket so I wouldn\'t be double-booked.  Here we are, almost a\r\nmonth later, and I don\'t know what we\'re doing.\r\n\r\nRegards,\r\nThomas Pownall\r\n\r\nCADX Services, Inc.\r\n\r\nTel: 585-624-1491 X101\r\nFax: 585-582-1101\r\nE-Mail: tpownall@cadxservices.com\r\nWeb: http://www.cadxservices.com\r\n\r\n***********************************************************\r\n**************** Confidentiality Statement ****************\r\n***********************************************************\r\n\r\nPrivileged/Confidential Information may be contained in this\r\nmessage. If you are not the addressee indicated in this message\r\n(or responsible for delivery of the message to such person),\r\nyou may not copy or deliver this message to anyone. In such\r\ncase, you should destroy this message, and notify us\r\nimmediately. If you or your employer does not consent to\r\nInternet email messages of this kind, please advise us\r\nimmediately. Opinions, conclusions and other information\r\nexpressed in this message are not given or endorsed by my firm\r\nor employer unless otherwise indicated by an authorized\r\nrepresentative independent of this message.',0,0,0,0,0,0,'2025-07-16 15:41:59','2025-12-09 19:13:55','2025-12-09 19:13:55','2025-12-09 19:13:55',NULL,NULL,NULL),
(475,4,'<656526783.4342999.1752680703538@lor1-app99063.prod.linkedin.com>',NULL,NULL,'The LinkedIn just messaged you','messaging-digest-noreply@linkedin.com','The LinkedIn Team via LinkedIn','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n            @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n          </style> <style>\r\n            @media (max-width: 480px) { .inline-button, .inline-button table { display: none !important; }\r\n            .full-width-button, .full-width-button table { display: table !important; } }\r\n          </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n            \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n            \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">1 new message awaits your response</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-left: auto; margin-right: auto; margin-top: 0px; margin-bottom: 0px; width: 512px; max-width: 512px; padding: 0px;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"bg-color-background-container \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_member_message_v2%3B4EHmnXUlQzSo5utD%2Fxs1Xw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0gM-rJ847hKHQ1&amp;trk=eml-email_member_message_v2-header-0-home_glimmer_static_badging_with_count&amp;trkEmail=eml-email_member_message_v2-header-0-home_glimmer_static_badging_with_count-null-poh2nf~md64sw6d~6r-null-null&amp;eid=poh2nf-md64sw6d-6r&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4N2NlZDc0MTliYTk4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjN2I5ODA3M2ZlYzI5YTAwZDVmZDJmMTU2OTc4YThjNDVmYzFkMTAzZTg3MGZjZjIsMSwx\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img class=\"h-[37px] w-[101px]\" alt=\"LinkedIn\" src=\"https://static.licdn.com/aero-v1/sc/h/c8r2ouzvg6owfan3cy5bpt1rw\" data-test-header-static-badging-img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 37px; width: 101px;\" width=\"101\" height=\"37\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-header-profile style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" class=\"w-[32px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 32px;\" width=\"32\"> <a href=\"https://www.linkedin.com/comm/in/mavrix-one-ba3024374?lipi=urn%3Ali%3Apage%3Aemail_email_member_message_v2%3B4EHmnXUlQzSo5utD%2Fxs1Xw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0gM-rJ847hKHQ1&amp;trk=eml-email_member_message_v2-header-0-profile_glimmer&amp;trkEmail=eml-email_member_message_v2-header-0-profile_glimmer-null-poh2nf~md64sw6d~6r-null-null&amp;eid=poh2nf-md64sw6d-6r&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4N2NlZDc0MTliYTk4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjN2I5ODA3M2ZlYzI5YTAwZDVmZDJmMTU2OTc4YThjNDVmYzFkMTAzZTg3MGZjZjIsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Mavrix One\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQH7FhVwiiJ44g/profile-displayphoto-scale_200_200/B4EZf50lYcH0AY-/0/1752243001533?e=2147483647&amp;v=beta&amp;t=Bup8mnb1d2TsGleMbZ8CDZE7-ny4WAQ5Meqmu6kHzHo\" class=\"rounded-[100%] w-[32px] h-[32px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 32px; width: 32px; border-radius: 100%;\" width=\"32\" height=\"32\"> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"px-3 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px; padding-bottom: 24px;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <h2 class=\"font-semibold leading-regular text-center\" data-test-id=\"threads-summary\" style=\"margin: 0; text-align: center; font-weight: 600; line-height: 1.25;\"> 1 new message awaits your response </h2> </td> </tr> <tr data-test-id=\"threads-content\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"messaging-thread\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"one-to-one-single-thread\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <a href=\"https://www.linkedin.com/comm/in/the-linkedin-team-513634264?lipi=urn%3Ali%3Apage%3Aemail_email_member_message_v2%3B4EHmnXUlQzSo5utD%2Fxs1Xw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0gM-rJ847hKHQ1&amp;trk=eml-email_member_message_v2-one_to_one_single_thread-0-null&amp;trkEmail=eml-email_member_message_v2-one_to_one_single_thread-0-null-null-poh2nf~md64sw6d~6r-null-null&amp;eid=poh2nf-md64sw6d-6r&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4N2NlZDc0MTliYTk4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjN2I5ODA3M2ZlYzI5YTAwZDVmZDJmMTU2OTc4YThjNDVmYzFkMTAzZTg3MGZjZjIsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 align-top !w-[80px] !h-[80px]\" src=\"https://static.licdn.com/aero-v1/sc/h/aitf0bskhomjf2fp6zz6jfms6\" alt=\"The LinkedIn Team’s profile image\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%); height: 80px !important; width: 80px !important;\" width=\"80\" height=\"80\"> </a> </td> </tr> <tr class=\"text-center\" style=\"text-align: center;\"> <td class=\"pt-1 text-center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; text-align: center;\"> <a href=\"https://www.linkedin.com/comm/in/the-linkedin-team-513634264?lipi=urn%3Ali%3Apage%3Aemail_email_member_message_v2%3B4EHmnXUlQzSo5utD%2Fxs1Xw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0gM-rJ847hKHQ1&amp;trk=eml-email_member_message_v2-one_to_one_single_thread-0-null&amp;trkEmail=eml-email_member_message_v2-one_to_one_single_thread-0-null-null-poh2nf~md64sw6d~6r-null-null&amp;eid=poh2nf-md64sw6d-6r&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4N2NlZDc0MTliYTk4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjN2I5ODA3M2ZlYzI5YTAwZDVmZDJmMTU2OTc4YThjNDVmYzFkMTAzZTg3MGZjZjIsMSwx\" target=\"_blank\" title=\"The LinkedIn Team\" class=\"text-md font-semibold leading-regular tracking-tight no-underline text-system-gray-90 line-clamp-1 text-ellipsis\" style=\"cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-overflow: ellipsis; font-size: 16px; font-weight: 600; line-height: 1.25; letter-spacing: -0.025em; color: #282828; text-decoration-line: none; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1;\"> The LinkedIn Team </a> </td> </tr> <tr data-test-id=\"sender-headline\"> <td class=\"pt-0.5 text-center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px; text-align: center;\"> <p class=\"text-sm leading-regular text-system-gray-90 line-clamp-2 text-ellipsis\" style=\"margin: 0; font-weight: 400; text-overflow: ellipsis; font-size: 14px; line-height: 1.25; color: #282828; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;\">Product Team at LinkedIn</p> </td> </tr> <tr> <td class=\"pt-1.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/messaging/thread/2-MTgxYzBmMzUtMzk5Ni00YmY4LWIyMzctMDVhMzcwMmRmNmRmXzEwMA==?lipi=urn%3Ali%3Apage%3Aemail_email_member_message_v2%3B4EHmnXUlQzSo5utD%2Fxs1Xw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0gM-rJ847hKHQ1&amp;trk=eml-email_member_message_v2-one_to_one_single_thread-0-view_message_button&amp;trkEmail=eml-email_member_message_v2-one_to_one_single_thread-0-view_message_button-null-poh2nf~md64sw6d~6r-null-null&amp;eid=poh2nf-md64sw6d-6r&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4N2NlZDc0MTliYTk4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjN2I5ODA3M2ZlYzI5YTAwZDVmZDJmMTU2OTc4YThjNDVmYzFkMTAzZTg3MGZjZjIsMSwx\" target=\"_blank\" aria-label=\"View message from The LinkedIn\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/messaging/thread/2-MTgxYzBmMzUtMzk5Ni00YmY4LWIyMzctMDVhMzcwMmRmNmRmXzEwMA==?lipi=urn%3Ali%3Apage%3Aemail_email_member_message_v2%3B4EHmnXUlQzSo5utD%2Fxs1Xw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0gM-rJ847hKHQ1&amp;trk=eml-email_member_message_v2-one_to_one_single_thread-0-view_message_button&amp;trkEmail=eml-email_member_message_v2-one_to_one_single_thread-0-view_message_button-null-poh2nf~md64sw6d~6r-null-null&amp;eid=poh2nf-md64sw6d-6r&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4N2NlZDc0MTliYTk4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjN2I5ODA3M2ZlYzI5YTAwZDVmZDJmMTU2OTc4YThjNDVmYzFkMTAzZTg3MGZjZjIsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> View message </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-lg text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 20px; color: #114951;\"> Get the new LinkedIn desktop app </h2> </td> </tr> <tr> <td class=\"text-center pb-2\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <a href=\"https://apps.microsoft.com/store/detail/9WZDNCRFJ4Q7?launch=true&amp;cid=linkedin_email_upsell&amp;mode=full\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it from Microsoft\" src=\"https://static.licdn.com/aero-v1/sc/h/ejpkkpwvqks31a3cjqokb7fbm\" class=\"h-[40px] w-[112px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 112px;\" width=\"112\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-md text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 16px; color: #114951;\"> Also available on mobile </h2> </td> </tr> <tr> <td class=\"text-center\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <a href=\"https://itunes.apple.com/us/app/linkedin/id288429040?pt=10746&amp;ct=st_appsite_flagship&amp;mt=8\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Download on the App Store\" src=\"https://static.licdn.com/aero-v1/sc/h/76yzkd0h5kiv27lrd4yaenylk\" class=\"h-[40px] w-[120px] pr-1\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 120px; padding-right: 8px;\" width=\"120\" height=\"40\"> </a> <a href=\"https://play.google.com/store/apps/details?id=com.linkedin.android&amp;referrer=st_appsite_flagship\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it on Google Play\" src=\"https://static.licdn.com/aero-v1/sc/h/142qudwblp58zwmc9vkqfplug\" class=\"h-[40px] w-[134px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 134px;\" width=\"134\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px;\"><hr class=\"border-none bg-[#e0dfdd] h-[1px]\" style=\"height: 1px; border-style: none; background-color: #e0dfdd;\"></td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" data-test-id=\"email-footer__intended\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_member_message_v2%3B4EHmnXUlQzSo5utD%2Fxs1Xw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0gM-rJ847hKHQ1&amp;trk=eml-email_member_message_v2-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_member_message_v2-SecurityHelp-0-footerglimmer-null-poh2nf~md64sw6d~6r-null-null&amp;eid=poh2nf-md64sw6d-6r&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4N2NlZDc0MTliYTk4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjN2I5ODA3M2ZlYzI5YTAwZDVmZDJmMTU2OTc4YThjNDVmYzFkMTAzZTg3MGZjZjIsMSwx\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving Messages digest emails.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_member_message_v2%3B4EHmnXUlQzSo5utD%2Fxs1Xw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0gM-rJ847hKHQ1&amp;trk=eml-email_member_message_v2-unsubscribe-0-footerGlimmer&amp;trkEmail=eml-email_member_message_v2-unsubscribe-0-footerGlimmer-null-poh2nf~md64sw6d~6r-null-null&amp;eid=poh2nf-md64sw6d-6r&amp;loid=AQGjS96wfb9fkgAAAZgT6SLjIgcrkCKt84FO8Kq0mA3F4VmCiAacZeZ9Oohj3nLdC1G2psRdKlrpkKm5lkhH7rv9Jg\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Unsubscribe</a>   ·   <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_member_message_v2%3B4EHmnXUlQzSo5utD%2Fxs1Xw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0gM-rJ847hKHQ1&amp;trk=eml-email_member_message_v2-help-0-footerglimmer&amp;trkEmail=eml-email_member_message_v2-help-0-footerglimmer-null-poh2nf~md64sw6d~6r-null-null&amp;eid=poh2nf-md64sw6d-6r&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4N2NlZDc0MTliYTk4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjN2I5ODA3M2ZlYzI5YTAwZDVmZDJmMTU2OTc4YThjNDVmYzFkMTAzZTg3MGZjZjIsMSwx\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_member_message_v2%3B4EHmnXUlQzSo5utD%2Fxs1Xw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0gM-rJ847hKHQ1&amp;trk=eml-email_member_message_v2-footer-0-logoGlimmer&amp;trkEmail=eml-email_member_message_v2-footer-0-logoGlimmer-null-poh2nf~md64sw6d~6r-null-null&amp;eid=poh2nf-md64sw6d-6r&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4N2NlZDc0MTliYTk4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjN2I5ODA3M2ZlYzI5YTAwZDVmZDJmMTU2OTc4YThjNDVmYzFkMTAzZTg3MGZjZjIsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/aero-v1/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFrTmpSemR6WmtMVFp5OlpXMWhhV3hmYldWdFltVnlYMjFsYzNOaFoyVmZkakk9Og==.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','You have 1 new message\r\n\r\n.....................................\r\n\r\nThe LinkedIn Team (Product Team at LinkedIn)\r\n(https://www.linkedin.com/in/the-linkedin-team-513634264)\r\n\r\nView message: https://www.linkedin.com/comm/messaging/thread/2-MTgxYzBmMzUtMzk5Ni00YmY4LWIyMzctMDVhMzcwMmRmNmRmXzEwMA==?lipi=urn%3Ali%3Apage%3Aemail_email_member_message_v2%3B4EHmnXUlQzSo5utD%2Fxs1Xw%3D%3D&midToken=AQE-iPshthTClw&midSig=0gM-rJ847hKHQ1&trk=eml-email_member_message_v2-one_to_one_single_thread_text-0-reply_to_sender&trkEmail=eml-email_member_message_v2-one_to_one_single_thread_text-0-reply_to_sender-null-poh2nf~md64sw6d~6r-null-null&eid=poh2nf-md64sw6d-6r&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4N2NlZDc0MTliYTk4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjN2I5ODA3M2ZlYzI5YTAwZDVmZDJmMTU2OTc4YThjNDVmYzFkMTAzZTg3MGZjZjIsMSwx\r\n  \r\n  \r\n\r\n.....................................\r\n}\r\n      \r\n\r\n----------------------------------------\r\n\r\nThis email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\nLearn why we included this: https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_member_message_v2%3B4EHmnXUlQzSo5utD%2Fxs1Xw%3D%3D&midToken=AQE-iPshthTClw&midSig=0gM-rJ847hKHQ1&trk=eml-email_member_message_v2-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_member_message_v2-SecurityHelp-0-textfooterglimmer-null-poh2nf~md64sw6d~6r-null-null&eid=poh2nf-md64sw6d-6r&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4N2NlZDc0MTliYTk4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjN2I5ODA3M2ZlYzI5YTAwZDVmZDJmMTU2OTc4YThjNDVmYzFkMTAzZTg3MGZjZjIsMSwx\r\nYou are receiving Messages digest emails.\r\n\r\nUnsubscribe: https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_member_message_v2%3B4EHmnXUlQzSo5utD%2Fxs1Xw%3D%3D&midToken=AQE-iPshthTClw&midSig=0gM-rJ847hKHQ1&trk=eml-email_member_message_v2-unsubscribe-0-textfooterglimmer&trkEmail=eml-email_member_message_v2-unsubscribe-0-textfooterglimmer-null-poh2nf~md64sw6d~6r-null-null&eid=poh2nf-md64sw6d-6r&loid=AQGjS96wfb9fkgAAAZgT6SLjIgcrkCKt84FO8Kq0mA3F4VmCiAacZeZ9Oohj3nLdC1G2psRdKlrpkKm5lkhH7rv9Jg\r\nHelp: https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_member_message_v2%3B4EHmnXUlQzSo5utD%2Fxs1Xw%3D%3D&midToken=AQE-iPshthTClw&midSig=0gM-rJ847hKHQ1&trk=eml-email_member_message_v2-help-0-textfooterglimmer&trkEmail=eml-email_member_message_v2-help-0-textfooterglimmer-null-poh2nf~md64sw6d~6r-null-null&eid=poh2nf-md64sw6d-6r&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YjI4N2NlZDc0MTliYTk4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjN2I5ODA3M2ZlYzI5YTAwZDVmZDJmMTU2OTc4YThjNDVmYzFkMTAzZTg3MGZjZjIsMSwx\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.\r\nLinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',0,0,0,0,0,0,'2025-07-16 15:45:03','2025-12-09 19:13:56','2025-12-09 19:13:56','2025-12-09 19:13:56',NULL,NULL,NULL),
(476,4,'<CAGgBgfDQgdKveU6gZHHpMTivBHevfmS6NtY8zvC-SZ0iDy3gwQ@mail.gmail.com>',NULL,NULL,'Confidential Pictures: Hood Ventilator Controller (07/16/25 1145)','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\"><img src=\"cid:ii_md64wfbb0\" alt=\"20250715_185728.jpg\" width=\"422\" height=\"563\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">This is part of a 500-piece order that we&#39;re trouble-shooting -- 10 pieces, or 2%.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">We usually do QC functions using a test fixture, and these are the units that didn&#39;t pass our tests.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">We&#39;ve made our own test fixtures, which is how we caught that these units needed work.  We can usually take that 2% down to 0.5% pretty quickly just be looking at the board itself with some magnification.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">It&#39;ll be something like someone mishandled the board and broke a cap, maybe a LED was installed backwards.  Sometimes it&#39;s something as dumb as a dented corner from the board being dropped -- in other words, the inconsistencies introduced by humans.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">We&#39;re good at diagnostics and repair.  It&#39;s not the best use of our time, but doing it keeps us sharp.  CMs usually call this &quot;the bone pile.&quot;</div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><div><font face=\"courier new, monospace\">Regards,</font></div><div><font face=\"courier new, monospace\">Thomas Pownall</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">CADX Services, Inc.</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Tel: 585-624-1491 X101</font></div><div><font face=\"courier new, monospace\">Fax: 585-582-1101</font></div><div><font face=\"courier new, monospace\">E-Mail: <a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a></font></div><div><font face=\"courier new, monospace\">Web: <a href=\"http://www.cadxservices.com\" target=\"_blank\">http://www.cadxservices.com</a></font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\">**************** Confidentiality Statement ****************</font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Privileged/Confidential Information may be contained in this</font></div><div><font face=\"courier new, monospace\">message. If you are not the addressee indicated in this message</font></div><div><font face=\"courier new, monospace\">(or responsible for delivery of the message to such person),</font></div><div><font face=\"courier new, monospace\">you may not copy or deliver this message to anyone. In such</font></div><div><font face=\"courier new, monospace\">case, you should destroy this message, and notify us</font></div><div><font face=\"courier new, monospace\">immediately. If you or your employer does not consent to</font></div><div><font face=\"courier new, monospace\">Internet email messages of this kind, please advise us</font></div><div><font face=\"courier new, monospace\">immediately. Opinions, conclusions and other information</font></div><div><font face=\"courier new, monospace\">expressed in this message are not given or endorsed by my firm</font></div><div><font face=\"courier new, monospace\">or employer unless otherwise indicated by an authorized</font></div><div><font face=\"courier new, monospace\">representative independent of this message.</font></div></div></div></div></div></div></div>','[image: 20250715_185728.jpg]\r\n\r\nThis is part of a 500-piece order that we\'re trouble-shooting -- 10 pieces,\r\nor 2%.\r\n\r\nWe usually do QC functions using a test fixture, and these are the units\r\nthat didn\'t pass our tests.\r\n\r\nWe\'ve made our own test fixtures, which is how we caught that these units\r\nneeded work.  We can usually take that 2% down to 0.5% pretty quickly just\r\nbe looking at the board itself with some magnification.\r\n\r\nIt\'ll be something like someone mishandled the board and broke a cap, maybe\r\na LED was installed backwards.  Sometimes it\'s something as dumb as a\r\ndented corner from the board being dropped -- in other words, the\r\ninconsistencies introduced by humans.\r\n\r\nWe\'re good at diagnostics and repair.  It\'s not the best use of our time,\r\nbut doing it keeps us sharp.  CMs usually call this \"the bone pile.\"\r\n\r\nRegards,\r\nThomas Pownall\r\n\r\nCADX Services, Inc.\r\n\r\nTel: 585-624-1491 X101\r\nFax: 585-582-1101\r\nE-Mail: tpownall@cadxservices.com\r\nWeb: http://www.cadxservices.com\r\n\r\n***********************************************************\r\n**************** Confidentiality Statement ****************\r\n***********************************************************\r\n\r\nPrivileged/Confidential Information may be contained in this\r\nmessage. If you are not the addressee indicated in this message\r\n(or responsible for delivery of the message to such person),\r\nyou may not copy or deliver this message to anyone. In such\r\ncase, you should destroy this message, and notify us\r\nimmediately. If you or your employer does not consent to\r\nInternet email messages of this kind, please advise us\r\nimmediately. Opinions, conclusions and other information\r\nexpressed in this message are not given or endorsed by my firm\r\nor employer unless otherwise indicated by an authorized\r\nrepresentative independent of this message.',0,0,0,0,0,0,'2025-07-16 15:47:04','2025-12-09 19:13:57','2025-12-09 19:13:57','2025-12-09 19:13:57',NULL,NULL,NULL),
(477,4,' <BL3PR20MB4924AA4DE65682F684E6AF0AAF56A@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: Update','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nCertainly, here are some still images of one of the Raven motors from our last production batch. This Friday I will also provide video footage of an operating unit from our current/next production batch, machine shop fulfillment rates have been highly variable\r\n recently.</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, July 15, 2025 3:30 PM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Update</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">In the meantime, can you send me pics or videos of the prototypes you’ve built through the other mfg groups…</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">We need to show proof of concept for your work specifically…</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">So anything you have to show you can build or have built these motors will help!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On July 15, 2025 at 5:25:53 PM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div>\r\n<div></div>\r\n<div>\r\n<div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\nRick,</div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\n<br>\r\n</div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\nThat’s great to hear, thanks for the update. Looking forward to it!</div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\n<br>\r\n</div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\nRegards,</div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\nJason</div>\r\n</div>\r\n<div id=\"x_ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"x_ms-outlook-mobile-signature\">\r\n<div></div>\r\n</div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, July 15, 2025 1:53:37 PM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Update</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Jason,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Wanted to get back to you in regards to our process.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">We are currently doing reviews and creating our overall budget.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">That said, we would plan to bring&nbsp;</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Corvex Systems inside of Mavrix1 and&nbsp;</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">completely build out our manufacturing facility&nbsp;</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">in the CENTCOM/SOCOM neighborhood.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">I think you’ll be impressed by what we have planned and</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">we look forward to including you and your team.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">That said, let me know if you have any questions.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">We’ll be in touch soon!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thank you,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><br>\r\n</div>\r\n<div class=\"x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Certainly, here are some still images of one of the Raven motors from our last production batch. This Friday I will also provide video footage of an operating unit from our current/next production batch, machine shop fulfillment rates have been highly variable recently.\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, July 15, 2025 3:30 PM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Update\r\n\r\nIn the meantime, can you send me pics or videos of the prototypes you’ve built through the other mfg groups…\r\nWe need to show proof of concept for your work specifically…\r\nSo anything you have to show you can build or have built these motors will help!\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn July 15, 2025 at 5:25:53 PM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nRick,\r\n\r\nThat’s great to hear, thanks for the update. Looking forward to it!\r\n\r\nRegards,\r\nJason\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, July 15, 2025 1:53:37 PM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Update\r\n\r\nJason,\r\n\r\nWanted to get back to you in regards to our process.\r\nWe are currently doing reviews and creating our overall budget.\r\nThat said, we would plan to bring\r\nCorvex Systems inside of Mavrix1 and\r\ncompletely build out our manufacturing facility\r\nin the CENTCOM/SOCOM neighborhood.\r\n\r\nI think you’ll be impressed by what we have planned and\r\nwe look forward to including you and your team.\r\n\r\nThat said, let me know if you have any questions.\r\nWe’ll be in touch soon!\r\nThank you,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n',0,0,0,0,0,0,'2025-07-16 16:09:01','2025-12-09 19:14:00','2025-12-09 19:14:00','2025-12-09 19:14:00',NULL,NULL,NULL),
(478,4,'<4A.BF.36324.E6388786@i-09b57cac9f5f04417.mta1vrest.sd.prd.sparkpost>',NULL,NULL,'Build your credit profile. Grow with confidence','business@us.lili.co','\"Lili\"','<!DOCTYPE html>\n<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\">\n<head>\n<title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n<meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n<!--[if mso]>\n<xml><w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\"><w:DontUseAdvancedTypographyReadingMail/></w:WordDocument>\n<o:OfficeDocumentSettings><o:PixelsPerInch>96</o:PixelsPerInch><o:AllowPNG/></o:OfficeDocumentSettings></xml>\n<![endif]--><!--[if !mso]><!--><link href=\"https://fonts.googleapis.com/css?family=Open+Sans\" rel=\"stylesheet\" type=\"text/css\">\n<!--<![endif]--><style>\n*{box-sizing:border-box}body{margin:0;padding:0}a[x-apple-data-detectors]{color:inherit!important;text-decoration:inherit!important}#MessageViewBody a{color:inherit;text-decoration:none}p{line-height:inherit}.desktop_hide,.desktop_hide table{mso-hide:all;display:none;max-height:0;overflow:hidden}.image_block img+div{display:none}sub,sup{font-size:75%;line-height:0}.row-10 .column-1 .block-5 .button:hover,.row-3 .column-1 .block-4 .button:hover{background-color:#134ee0!important;border-bottom:0 solid transparent!important;border-left:0 solid transparent!important;border-right:0 solid transparent!important;border-top:0 solid transparent!important;color:#fff!important} @media (max-width:620px){.image_block div.fullWidth{max-width:100%!important}.mobile_hide{display:none}.row-content{width:100%!important}.stack .column{width:100%;display:block}.mobile_hide{min-height:0;max-height:0;max-width:0;overflow:hidden;font-size:0}.desktop_hide,.desktop_hide table{display:table!important;max-height:none!important}.row-3 .column-1 .block-1.paragraph_block td.pad>div,.row-4 .column-1 .block-1.paragraph_block td.pad>div{font-size:20px!important}.row-2 .column-1 .block-2.image_block .alignment div{margin:0 auto!important}.row-3 .column-1 .block-3.spacer_block{height:40px!important}.row-3 .row-content,.row-4 .column-1 .block-1.paragraph_block td.pad{padding:0 10px!important}.row-10 .column-1 .block-5.button_block span,.row-3 .column-1 .block-4.button_block span{font-size:15px!important;line-height:18px!important}.row-5 .column-1 .block-3.spacer_block,.row-6 .column-1 .block-3.spacer_block,.row-7 .column-1 .block-3.spacer_block{height:20px!important}.row-9 .column-1 .block-1.paragraph_block td.pad>div{text-align:left!important;font-size:17px!important}.row-10 .row-content,.row-15 .row-content,.row-4 .row-content,.row-5 .row-content,.row-6 .row-content,.row-7 .row-content,.row-8 .row-content,.row-9 .column-1 .block-1.paragraph_block td.pad,.row-9 .row-content{padding:0!important}.row-9 .column-2 .block-1.paragraph_block td.pad>div{font-size:12px!important}.row-8 .column-1 .block-1.paragraph_block td.pad>div{font-size:28px!important}.row-8 .column-1 .block-1.paragraph_block td.pad{padding:30px 0 15px!important}.row-10 .column-1 .block-1.heading_block h3{font-size:18px!important}.row-10 .column-1 .block-2.heading_block h3{font-size:16px!important}.row-11 .column-2 .block-1.paragraph_block td.pad>div,.row-11 .column-3 .block-1.paragraph_block td.pad>div,.row-12 .column-2 .block-1.paragraph_block td.pad>div,.row-12 .column-3 .block-1.paragraph_block td.pad>div{font-size:11px!important}.row-15 .column-1 .block-1.spacer_block,.row-15 .column-1 .block-3.spacer_block{height:30px!important}.row-15 .column-1 .block-2.paragraph_block td.pad{padding:0 20px!important}.row-14 .row-content{padding:0 0 0 10px!important}.row-3 .column-1{padding:40px 5px 40px 15px!important}.row-4 .column-1{padding:45px 10px!important}.row-5 .column-1,.row-6 .column-1,.row-7 .column-1{padding:0 20px 45px!important}.row-8 .column-1{padding:0 20px 25px!important}.row-10 .column-1{padding:5px 20px 40px!important}.row-11 .column-4,.row-12 .column-4{padding:30px 0 40px!important}}\n</style>\n<!--[if mso ]><style>sup, sub { font-size: 100% !important; } sup { mso-text-raise:10% } sub { mso-text-raise:-10% }</style> <![endif]-->\n</head>\n<body class=\"body\" style=\"background-color:#dae0ec;margin:0;padding:0;-webkit-text-size-adjust:none;text-size-adjust:none\">\n<div style=\"display:none !important;visibility:hidden;mso-hide:all;font-size:1px;color:#ffffff;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;\">Lili BusinessBuild, in collaboration with Dun &amp; Bradstreet</div>\n<div style=\"display:none !important;visibility:hidden;mso-hide:all;font-size:1px;color:#ffffff;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;\">͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ ͏ ‌     ﻿ </div>\n<table class=\"nl-container\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#dae0ec\"><tbody><tr><td>\n<table class=\"row row-1\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\">\n<tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\">\n<table class=\"html_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div style=\"font-family:\'Open Sans\',Arial,Verdana,Sans-serif;text-align:center\" align=\"center\">\n<table class=\"nl-container\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff\"><tbody><tr><td><table class=\"row row-1\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\">\n<tbody><tr><td><table class=\"row-content\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr>\n<td class=\"column column-1\" width=\"16.666666666666668%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:10px;padding-top:10px;vertical-align:middle;border-top:0;border-right:0;border-bottom:0;border-left:0\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%;padding-right:0;padding-left:0\"><div class=\"alignment\" align=\"center\" style=\"line-height:10px\"><div style=\"max-width:50px\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/65e04974e5fe8a004dcef1a2/original.png?1709197684\" style=\"display:block;height:auto;border:0;width:100%\" width=\"50\" alt title height=\"auto\"></div></div></td></tr></table></td>\n<td class=\"column column-2\" width=\"41.666666666666664%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:10px;padding-left:10px;padding-right:30px;padding-top:10px;vertical-align:middle;border-top:0;border-right:0;border-bottom:0;border-left:0\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%;padding-right:0;padding-left:0\"><div class=\"alignment\" align=\"left\" style=\"line-height:10px\"><div style=\"max-width:157.5px\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/668f797b24630c005abea79e/original.png?1720678779\" style=\"display:block;height:auto;border:0;width:100%\" width=\"157.5\" alt title height=\"auto\"></div></div></td></tr></table></td>\n<td class=\"column column-3\" width=\"41.666666666666664%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:middle;border-top:0;border-right:0;border-bottom:0;border-left:0\"><table class=\"paragraph_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:5px;padding-left:5px;padding-right:25px;padding-top:20px\"><div style=\"color:#0e5cf4;direction:ltr;font-family:\'Open Sans\',Arial,Verdana,Sans-serif;font-size:13px;font-weight:400;letter-spacing:0;line-height:120%;text-align:right;mso-line-height-alt:15.6px\">\n<p style=\"margin:0;margin-bottom:0\">Rick Mislan</p>\n<p style=\"margin:0;margin-bottom:0\">MAVRIX 1 LLC</p>\n<p style=\"margin:0\">&nbsp;</p>\n</div></td></tr></table></td>\n</tr></tbody></table></td></tr></tbody>\n</table></td></tr></tbody></table>\n<!-- End -->\n</div></td></tr></table>\n<table class=\"image_block block-2 mobile_hide\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:600px\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/6866b3d885144f0075560aeb/original.png?1751561175\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt title height=\"auto\"></div></div></td></tr></table>\n<table class=\"image_block block-3 mobile_hide\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:600px\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/6866b3e6c0c7ad00661a7b12/original.png?1751561189\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt title height=\"auto\"></div></div></td></tr></table>\n</td></tr></tbody>\n</table></td></tr></tbody></table>\n<table class=\"row row-2 desktop_hide\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\">\n<table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div class=\"fullWidth\" style=\"max-width:600px\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/6866b41b23fc4500656a7027/original.png?1751561243\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt title height=\"auto\"></div></div></td></tr></table>\n<table class=\"image_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div class=\"fullWidth\" style=\"max-width:600px\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/6866b42d1628e30064fbc51b/original.png?1751561260\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt title height=\"auto\"></div></div></td></tr></table>\n</td></tr></tbody></table></td></tr></tbody></table>\n<table class=\"row row-3\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;background-size:auto;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;padding-bottom:60px;padding-left:30px;padding-right:30px;padding-top:40px;vertical-align:top\">\n<table class=\"paragraph_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:30px;padding-top:20px\"><div style=\"color:#20242e;direction:ltr;font-family:\'Open Sans\',Arial,Verdana,Sans-serif;font-size:24px;font-weight:400;letter-spacing:0;line-height:1.5;text-align:left;mso-line-height-alt:36px\"><p style=\"margin:0\">Your simple path to a stronger credit profile</p></div></td></tr></table>\n<table class=\"paragraph_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\"><div style=\"color:#20242e;direction:ltr;font-family:\'Open Sans\',Arial,Verdana,Sans-serif;font-size:16px;font-weight:400;letter-spacing:0;line-height:1.5;text-align:left;mso-line-height-alt:24px\"><p style=\"margin:0\">\nMonitor and build your business credit profile right from your bank account with BusinessBuild, Lili\'s credit-building program created in collaboration with Dun &amp; Bradstreet. Get real-time tracking and automatic reporting to Dun &amp; Bradstreet, helping you strengthen your profile from day one.&nbsp;</p></div></td></tr></table>\n<div class=\"spacer_block block-3\" style=\"height:60px;line-height:60px;font-size:1px\"> </div>\n<table class=\"button_block block-4\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"text-align:center\"><div class=\"alignment\" align=\"center\"><a href=\"https://clicks.lili.co/f/a/GfvPICPXM7l-mWxHIf5WGw~~/AAQRxRA~/Ybu3HUmx5hh0BNIsqs3Ak7Hd5A9hPPxnwz8UjkXkv5sNMQ8ZYApwdPpF3GkkWd1c9qchPkFFlLqutWStUU56gKgWF2KnGidj8Ougp89Oe7-9n5Yx_s5oPkg0f7q_n8Uc4868JCqtDvuRBypCqJt_h8IedtIyttSUajL7VYCg0VzqkwQFysZsbKXubq8puPL0GqyEtitDcII75foOh-uwbFUQrjt6Ni6J9TarWGk6yd1bb8P6w7-eEXT4BRN2KChTWoHSqrUXkjADSiwtnqvZBfi8-7LvAK22m60unjqnWyuKM4Bn2tZhQzFFsdlu-zAh5KAVRl-kBK-p1JaCdGDQJa9Ouf-61E4zvMV5YtJDPh6ceNiQQ8LVsaXziuZ95pl1AhPgCn7HJgMsPYD0oQcreEpJ5HJwnGTpuucBLT--xPtW4Gf6-rYQui-PGtu7pez-KsGEQzV8HLq7rE4cBweyk3e8j9qO7LNlWYTve8k1NhSaJ1UCeHAexc1_cKh6hF5lzw0sm7wVMZMvN1SPGcyXZ5Uw-J-U7rAuely94z8xn2Xm_QACn4GWFTJL-jZyW2uC8QLUS9N0WkrDtoJQ7B0fuZkh3_JazGCSQL4cO0iD56_aG1Rt2ErrNMUdMtQcDlMED0AXoSWbpSXkN-b19qw_sSB3Os8KJusRxn2rguR083jpufd9GDO0hJGkaqjc9DBKjpRt19rwXbM7u9h6O3-eUdG-aRUwEgmKCwCMJ0wFHs0~\" target=\"_blank\" style=\"color:#FFFFFF;text-decoration:none;\"><!--[if mso]>\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://clicks.lili.co/f/a/GfvPICPXM7l-mWxHIf5WGw~~/AAQRxRA~/Ybu3HUmx5hh0BNIsqs3Ak7Hd5A9hPPxnwz8UjkXkv5sNMQ8ZYApwdPpF3GkkWd1c9qchPkFFlLqutWStUU56gKgWF2KnGidj8Ougp89Oe7-9n5Yx_s5oPkg0f7q_n8Uc4868JCqtDvuRBypCqJt_h8IedtIyttSUajL7VYCg0VzqkwQFysZsbKXubq8puPL0GqyEtitDcII75foOh-uwbFUQrjt6Ni6J9TarWGk6yd1bb8P6w7-eEXT4BRN2KChTWoHSqrUXkjADSiwtnqvZBfi8-7LvAK22m60unjqnWyuKM4Bn2tZhQzFFsdlu-zAh5KAVRl-kBK-p1JaCdGDQJa9Ouf-61E4zvMV5YtJDPh6ceNiQQ8LVsaXziuZ95pl1AhPgCn7HJgMsPYD0oQcreEpJ5HJwnGTpuucBLT--xPtW4Gf6-rYQui-PGtu7pez-KsGEQzV8HLq7rE4cBweyk3e8j9qO7LNlWYTve8k1NhSaJ1UCeHAexc1_cKh6hF5lzw0sm7wVMZMvN1SPGcyXZ5Uw-J-U7rAuely94z8xn2Xm_QACn4GWFTJL-jZyW2uC8QLUS9N0WkrDtoJQ7B0fuZkh3_JazGCSQL4cO0iD56_aG1Rt2ErrNMUdMtQcDlMED0AXoSWbpSXkN-b19qw_sSB3Os8KJusRxn2rguR083jpufd9GDO0hJGkaqjc9DBKjpRt19rwXbM7u9h6O3-eUdG-aRUwEgmKCwCMJ0wFHs0~\"  style=\"height:59px;width:540px;v-text-anchor:middle;\" arcsize=\"14%\" fillcolor=\"#0e5cf4\">\n<v:stroke dashstyle=\"Solid\" weight=\"0px\" color=\"#0e5cf4\"/>\n<w:anchorlock/>\n<v:textbox inset=\"0px,0px,0px,0px\">\n<center dir=\"false\" style=\"color:#FFFFFF;font-family:sans-serif;font-size:16px\">\n<![endif]-->\n<span class=\"button\" style=\"background-color: #0e5cf4; border-bottom: 0px solid transparent; border-left: 0px solid transparent; border-radius: 8px; border-right: 0px solid transparent; border-top: 0px solid transparent; color: #FFFFFF; display: inline-block; font-family: \'Open Sans\', \'Arial\', \'Verdana\', Sans-serif; font-size: 16px; font-weight: 700; mso-border-alt: none; padding-bottom: 20px; padding-top: 20px; padding-left: 0px; padding-right: 0px; text-align: center; width: 100%; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 19.2px;\">Start Your Free Trial</span></span>\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table>\n</td></tr></tbody></table></td></tr></tbody></table>\n<table class=\"row row-4\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;background-size:auto;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;border-top:2px solid #dae0ec;padding-bottom:45px;padding-left:30px;padding-right:30px;padding-top:45px;vertical-align:top\"><table class=\"paragraph_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\"><div style=\"color:#20242e;direction:ltr;font-family:\'Open Sans\',Arial,Verdana,Sans-serif;font-size:24px;font-weight:400;letter-spacing:0;line-height:NaN;text-align:left;mso-line-height-alt:NaNpx\"><p style=\"margin:0\">What happens when you enroll today?</p></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table>\n<table class=\"row row-5\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;background-size:auto;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;padding-bottom:55px;padding-left:30px;padding-right:30px;vertical-align:top\">\n<table class=\"image_block block-1 desktop_hide\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:540px\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/6866b49379a1cf0066c9a471/original.png?1751561363\" style=\"display:block;height:auto;border:0;width:100%\" width=\"540\" alt title height=\"auto\"></div></div></td></tr></table>\n<table class=\"image_block block-2 mobile_hide\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:540px\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/6866b43e4b8cff0065122461/original.png?1751561277\" style=\"display:block;height:auto;border:0;width:100%\" width=\"540\" alt title height=\"auto\"></div></div></td></tr></table>\n<div class=\"spacer_block block-3\" style=\"height:30px;line-height:30px;font-size:1px\"> </div>\n<table class=\"heading_block block-4\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"text-align:center;width:100%\"><h3 style=\"margin:0;color:#20242e;direction:ltr;font-family:\'Open Sans\',Arial,Verdana,Sans-serif;font-size:20px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:left;margin-top:0;margin-bottom:0;mso-line-height-alt:24px\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">Build</span></h3></td></tr></table>\n<div class=\"spacer_block block-5\" style=\"height:5px;line-height:5px;font-size:1px\"> </div>\n<table class=\"paragraph_block block-6\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\"><div style=\"color:#20242e;direction:ltr;font-family:\'Open Sans\',Arial,Verdana,Sans-serif;font-size:16px;font-weight:400;letter-spacing:0;line-height:1.5;text-align:left;mso-line-height-alt:24px\"><p style=\"margin:0\">Grow business credit through everyday spend — no personal credit check, no interest.</p></div></td></tr></table>\n</td></tr></tbody></table></td></tr></tbody></table>\n<table class=\"row row-6\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;background-size:auto;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;padding-bottom:55px;padding-left:30px;padding-right:30px;vertical-align:top\">\n<table class=\"image_block block-1 desktop_hide\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:540px\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/6866b4a24d496e0065de3d70/original.png?1751561377\" style=\"display:block;height:auto;border:0;width:100%\" width=\"540\" alt title height=\"auto\"></div></div></td></tr></table>\n<table class=\"image_block block-2 mobile_hide\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\">\n<div style=\"max-width:540px\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/6866b44df966290065c43a65/original.png?1751561293\" style=\"display:block;height:auto;border:0;width:100%\" width=\"540\" alt title height=\"auto\"></div>\n</div></td></tr></table>\n<div class=\"spacer_block block-3\" style=\"height:30px;line-height:30px;font-size:1px\"> </div>\n<table class=\"heading_block block-4\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"text-align:center;width:100%\"><h3 style=\"margin:0;color:#20242e;direction:ltr;font-family:\'Open Sans\',Arial,Verdana,Sans-serif;font-size:20px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:left;margin-top:0;margin-bottom:0;mso-line-height-alt:24px\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">Monitor</span></h3></td></tr></table>\n<div class=\"spacer_block block-5\" style=\"height:5px;line-height:5px;font-size:1px\"> </div>\n<table class=\"paragraph_block block-6\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr>\n<td class=\"pad\"><div style=\"color:#20242e;direction:ltr;font-family:\'Open Sans\',Arial,Verdana,Sans-serif;font-size:16px;font-weight:400;letter-spacing:0;line-height:1.5;text-align:left;mso-line-height-alt:24px\"><p style=\"margin:0\">Track PAYDEX and 5 more Dun &amp; Bradstreet scores with instant alerts and live dashboards accessible 24/7 from your Lili account.</p></div></td>\n</tr></table>\n</td></tr></tbody></table></td></tr></tbody></table>\n<table class=\"row row-7\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;background-size:auto;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;padding-bottom:55px;padding-left:30px;padding-right:30px;vertical-align:top\">\n<table class=\"image_block block-1 desktop_hide\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:540px\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/6866b4adcd915f006778f158/original.png?1751561388\" style=\"display:block;height:auto;border:0;width:100%\" width=\"540\" alt title height=\"auto\"></div></div></td></tr></table>\n<table class=\"image_block block-2 mobile_hide\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\">\n<div style=\"max-width:540px\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/6866b459209c880065cd934a/original.png?1751561304\" style=\"display:block;height:auto;border:0;width:100%\" width=\"540\" alt title height=\"auto\"></div>\n</div></td></tr></table>\n<div class=\"spacer_block block-3\" style=\"height:30px;line-height:30px;font-size:1px\"> </div>\n<table class=\"heading_block block-4\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"text-align:center;width:100%\"><h3 style=\"margin:0;color:#20242e;direction:ltr;font-family:\'Open Sans\',Arial,Verdana,Sans-serif;font-size:20px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:left;margin-top:0;margin-bottom:0;mso-line-height-alt:24px\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">Optimize</span></h3></td></tr></table>\n<div class=\"spacer_block block-5\" style=\"height:5px;line-height:5px;font-size:1px\"> </div>\n<table class=\"paragraph_block block-6\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr>\n<td class=\"pad\"><div style=\"color:#20242e;direction:ltr;font-family:\'Open Sans\',Arial,Verdana,Sans-serif;font-size:16px;font-weight:400;letter-spacing:0;line-height:1.5;text-align:left;mso-line-height-alt:24px\"><p style=\"margin:0\">Make positive impact on your score with credit-expert training, quick expert videos, credit-building eBook, webinars, and more.</p></div></td>\n</tr></table>\n</td></tr></tbody></table></td></tr></tbody></table>\n<table class=\"row row-8\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;background-size:auto;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#031231;padding-bottom:30px;padding-left:30px;padding-right:30px;vertical-align:top\">\n<table class=\"paragraph_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:15px;padding-top:40px\"><div style=\"color:#fff;direction:ltr;font-family:\'Open Sans\',Arial,Verdana,Sans-serif;font-size:32px;font-weight:400;letter-spacing:0;line-height:1.5;text-align:center;mso-line-height-alt:48px\"><p style=\"margin:0\">Expand your business.<br>Grow your credit profile.</p></div></td></tr></table>\n<table class=\"image_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:530px\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/6866b4cbe38c800077ba1fdf/original.png?1751561419\" style=\"display:block;height:auto;border:0;width:100%\" width=\"530\" alt title height=\"auto\"></div></div></td></tr></table>\n</td></tr></tbody></table></td></tr></tbody></table>\n<table class=\"row row-9 mobile_hide\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr>\n<td class=\"column column-1\" width=\"50%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#031231;padding-left:30px;padding-right:20px;padding-top:5px;vertical-align:bottom\"><table class=\"paragraph_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\"><div style=\"color:#fff;direction:ltr;font-family:\'Open Sans\',Arial,Verdana,Sans-serif;font-size:20px;font-weight:700;letter-spacing:0;line-height:1.2;text-align:right;mso-line-height-alt:24px\"><p style=\"margin:0\">Free for 1 month</p></div></td></tr></table></td>\n<td class=\"column column-2\" width=\"50%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#031231;padding-right:30px;padding-top:5px;vertical-align:bottom\"><table class=\"paragraph_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\"><div style=\"color:#fff;direction:ltr;font-family:\'Open Sans\',Arial,Verdana,Sans-serif;font-size:14px;font-weight:400;letter-spacing:0;line-height:NaN;text-align:left;mso-line-height-alt:NaNpx\"><p style=\"margin:0\">Then $18/month for 3 months</p></div></td></tr></table></td>\n</tr></tbody></table></td></tr></tbody></table>\n<table class=\"row row-10\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;background-size:auto;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#031231;padding-bottom:40px;padding-left:30px;padding-right:30px;padding-top:8px;vertical-align:top\">\n<table class=\"heading_block block-1 desktop_hide\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tr><td class=\"pad\" style=\"text-align:center;width:100%\"><h3 style=\"margin:0;color:#fff;direction:ltr;font-family:\'Open Sans\',Arial,Verdana,Sans-serif;font-size:14px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:17px\">Free for 1 month</h3></td></tr></table>\n<table class=\"heading_block block-2 desktop_hide\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\">\n<tr><td class=\"pad\" style=\"text-align:center;width:100%\"><h3 style=\"margin:0;color:#fff;direction:ltr;font-family:\'Open Sans\',Arial,Verdana,Sans-serif;font-size:14px;font-weight:400;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:17px\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">Then $18/mo for 3 months</span></h3></td></tr>\n</table>\n<table class=\"heading_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"text-align:center;width:100%\"><h3 style=\"margin:0;color:#fff;direction:ltr;font-family:\'Open Sans\',Arial,Verdana,Sans-serif;font-size:14px;font-weight:400;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:17px\">\n<span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">$30/mo thereafter. Available in every plan. Cancel anytime</span>\n</h3></td></tr></table>\n<div class=\"spacer_block block-4\" style=\"height:30px;line-height:30px;font-size:1px\"> </div>\n<table class=\"button_block block-5\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"text-align:center\"><div class=\"alignment\" align=\"center\">\n<a href=\"https://clicks.lili.co/f/a/0hu_hxwe9oHO5sCQpCb8uw~~/AAQRxRA~/Ybu3HUmx5hh0BNIsqs3Ak7Hd5A9hPPxnwz8UjkXkv5uxvjBJM5dMndL9Aofsbt3xNOwl0zMS6rW447GIJXGd9ZYmQuhPVTtMspxmrG6h4Cn6Db9SJNi-_qDE3qv7AK-0aR6Rcj1IPTksw3W14nuZEb-jwA2Dwhz5Pvmxc87NZ0invoGCUZmuhExLZhhfkP5xfb08twYmXNxnbPMlCzQ5TOjWiNVnlS-lJDQP5ymR4N_f1QqQ0FRbmYFudIpt2b2AATUzp8N17g5Rgj1KSKmRAw2zMlsR05eS16LW0PMU1MVv9C84jGJgUrLsYjV_J1emFmLRq1xqcfwJkjOI33200qVbS-XrN1e_XXA_Yhaw8EepJkl8efOPfB9seWlBcigkJRKJAn9tdLQ1g6MtApazOgmBDCnHYPQ4aaM4yhegmU_t9auk3kKdKIj4elIvjZg-qd5o4pSTrxZQGBxCtKaSK4n6ZbWEljzWqnMLGrOkJ6Wg-8deoaILaGL_mvsMAVFLfdOqZ2LyHHKZ-DRBqeZUUCKO77Qp8Idw-JBx_7Hl3_y7C7zn2bIp5t8SM2R4NVxS1oOiW_8NPU9l3c2FHGdl4p7WTOwJV1RBIYTazi4ujC5rtxEyGiEb0fnseQx1ssStDZtlShlouaYzk5Jg-rHj3ujj37x_JQ5hN8cMHnJxhtz8d0M3l1wjTFzBo-vO4huIounU8hVJSBxeUYtN3Ozx9RBwsK18R_EQYzQk7LxJXXQ~\" target=\"_blank\" style=\"color:#FFFFFF;text-decoration:none;\"><!--[if mso]>\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://clicks.lili.co/f/a/0hu_hxwe9oHO5sCQpCb8uw~~/AAQRxRA~/Ybu3HUmx5hh0BNIsqs3Ak7Hd5A9hPPxnwz8UjkXkv5uxvjBJM5dMndL9Aofsbt3xNOwl0zMS6rW447GIJXGd9ZYmQuhPVTtMspxmrG6h4Cn6Db9SJNi-_qDE3qv7AK-0aR6Rcj1IPTksw3W14nuZEb-jwA2Dwhz5Pvmxc87NZ0invoGCUZmuhExLZhhfkP5xfb08twYmXNxnbPMlCzQ5TOjWiNVnlS-lJDQP5ymR4N_f1QqQ0FRbmYFudIpt2b2AATUzp8N17g5Rgj1KSKmRAw2zMlsR05eS16LW0PMU1MVv9C84jGJgUrLsYjV_J1emFmLRq1xqcfwJkjOI33200qVbS-XrN1e_XXA_Yhaw8EepJkl8efOPfB9seWlBcigkJRKJAn9tdLQ1g6MtApazOgmBDCnHYPQ4aaM4yhegmU_t9auk3kKdKIj4elIvjZg-qd5o4pSTrxZQGBxCtKaSK4n6ZbWEljzWqnMLGrOkJ6Wg-8deoaILaGL_mvsMAVFLfdOqZ2LyHHKZ-DRBqeZUUCKO77Qp8Idw-JBx_7Hl3_y7C7zn2bIp5t8SM2R4NVxS1oOiW_8NPU9l3c2FHGdl4p7WTOwJV1RBIYTazi4ujC5rtxEyGiEb0fnseQx1ssStDZtlShlouaYzk5Jg-rHj3ujj37x_JQ5hN8cMHnJxhtz8d0M3l1wjTFzBo-vO4huIounU8hVJSBxeUYtN3Ozx9RBwsK18R_EQYzQk7LxJXXQ~\"  style=\"height:59px;width:540px;v-text-anchor:middle;\" arcsize=\"14%\" fillcolor=\"#0e5cf4\">\n<v:stroke dashstyle=\"Solid\" weight=\"0px\" color=\"#0e5cf4\"/>\n<w:anchorlock/>\n<v:textbox inset=\"0px,0px,0px,0px\">\n<center dir=\"false\" style=\"color:#FFFFFF;font-family:sans-serif;font-size:16px\">\n<![endif]-->\n<span class=\"button\" style=\"background-color: #0e5cf4; border-bottom: 0px solid transparent; border-left: 0px solid transparent; border-radius: 8px; border-right: 0px solid transparent; border-top: 0px solid transparent; color: #FFFFFF; display: inline-block; font-family: \'Open Sans\', \'Arial\', \'Verdana\', Sans-serif; font-size: 16px; font-weight: 700; mso-border-alt: none; padding-bottom: 20px; padding-top: 20px; padding-left: 0px; padding-right: 0px; text-align: center; width: 100%; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 19.2px;\">Start Your Free Trial</span></span>\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a>\n</div></td></tr></table>\n<div class=\"spacer_block block-6\" style=\"height:15px;line-height:15px;font-size:1px\"> </div>\n<table class=\"heading_block block-7 mobile_hide\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"text-align:center;width:100%\"><h3 style=\"margin:0;color:#fff;direction:ltr;font-family:\'Open Sans\',Arial,Verdana,Sans-serif;font-size:14px;font-weight:400;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:17px\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">Access to the BusinessBuild Program is currently available only on the Lili web app.</span></h3></td></tr></table>\n</td></tr></tbody></table></td></tr></tbody></table>\n<table class=\"row row-11 mobile_hide\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;background-size:auto;border-radius:0;border-top:2px solid #031231;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody>\n<tr>\n<td class=\"column column-1\" width=\"16.666666666666668%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;padding-bottom:40px;padding-top:30px;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:36px\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/68651ee1e98e6b0065a5800a/original.png?1751457505\" style=\"display:block;height:auto;border:0;width:100%\" width=\"36\" alt title height=\"auto\"></div></div></td></tr></table></td>\n<td class=\"column column-2\" width=\"8.333333333333334%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;padding-bottom:40px;padding-top:32px;vertical-align:top\"><table class=\"paragraph_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\"><div style=\"color:#868ea0;direction:ltr;font-family:\'Open Sans\',Arial,Verdana,Sans-serif;font-size:16px;font-weight:400;letter-spacing:0;line-height:1.2;text-align:left;mso-line-height-alt:19px\"><p style=\"margin:0\">\n<a href=\"https://clicks.lili.co/f/a/Id8eDKJNvoG8F6M4Dh4o0w~~/AAQRxRA~/d5C9gq5-cH3VwrCFV5rqjBWqUp1OL2rN1ekWBZtdecoDt7Mh-1gplo6gcFuP5Et4XTSVy0SGbniOQysMPCprbDqvYG-RcbhQEhmulU24wZ8qmgBRXjdcqCYD7NVyLE1u\" target=\"_blank\" style=\"text-decoration: underline; color: #868ea0;\" rel=\"noopener\">lili.co</a></p></div></td></tr></table></td>\n<td class=\"column column-3\" width=\"16.666666666666668%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;padding-bottom:40px;padding-left:10px;padding-top:32px;vertical-align:top\"><table class=\"paragraph_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\"><div style=\"color:#868ea0;direction:ltr;font-family:\'Open Sans\',Arial,Verdana,Sans-serif;font-size:16px;font-weight:400;letter-spacing:0;line-height:1.2;text-align:left;mso-line-height-alt:19px\"><p style=\"margin:0\">\n<a href=\"mailto:support@lilibanking.com\" target=\"_blank\" title=\"support@lilibanking.com\" style=\"text-decoration: underline; color: #868ea0;\" data-mce-attribute-name-1 data-mce-attribute-value-1 rel=\"noopener\">Contact us</a></p></div></td></tr></table></td>\n<td class=\"column column-4\" width=\"58.333333333333336%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;padding-bottom:5px;padding-top:30px;vertical-align:top\"><table class=\"empty_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div></div></td></tr></table></td>\n</tr>\n</tbody></table></td></tr></tbody></table>\n<table class=\"row row-12 desktop_hide\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden;background-size:auto\"><tbody><tr><td><table class=\"row-content\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden;background-color:#fff;background-size:auto;border-radius:0;border-top:2px solid #031231;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr>\n<td class=\"column column-1\" width=\"16.666666666666668%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;padding-bottom:40px;padding-top:30px;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\">\n<div style=\"max-width:36px\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/68651ee1e98e6b0065a5800a/original.png?1751457505\" style=\"display:block;height:auto;border:0;width:100%\" width=\"36\" alt title height=\"auto\"></div>\n</div></td></tr></table></td>\n<td class=\"column column-2\" width=\"8.333333333333334%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;padding-bottom:40px;padding-top:32px;vertical-align:top\">\n<table class=\"paragraph_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tr><td class=\"pad\"><div style=\"color:#868ea0;direction:ltr;font-family:\'Open Sans\',Arial,Verdana,Sans-serif;font-size:16px;font-weight:400;letter-spacing:0;line-height:2;text-align:left;mso-line-height-alt:32px\"><p style=\"margin:0\">\n<a href=\"https://clicks.lili.co/f/a/sDmCsJ-hyQQ7qgU6cR9h7g~~/AAQRxRA~/d5C9gq5-cH3VwrCFV5rqjGCFf5mUzi7DdeJC5nLj6K9HK29YNFCqsik8fcDYZeDLEr2qoIgjSw-Wfpem7A_1wg82gNyBj6uuOf0723bArDqmovqY5fVK-PapyopuUOZO\" target=\"_blank\" style=\"text-decoration: underline; color: #868ea0;\" rel=\"noopener\">lili.co</a></p></div></td></tr></table>\n</td>\n<td class=\"column column-3\" width=\"25%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;padding-bottom:40px;padding-left:10px;padding-top:32px;vertical-align:top\"><table class=\"paragraph_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tr><td class=\"pad\"><div style=\"color:#868ea0;direction:ltr;font-family:\'Open Sans\',Arial,Verdana,Sans-serif;font-size:16px;font-weight:400;letter-spacing:0;line-height:2;text-align:left;mso-line-height-alt:32px\"><p style=\"margin:0\">\n<a href=\"mailto:support@lilibanking.com\" target=\"_blank\" title=\"support@lilibanking.com\" style=\"text-decoration: underline; color: #868ea0;\" data-mce-attribute-name-1 data-mce-attribute-value-1 rel=\"noopener\">Contact us</a></p></div></td></tr></table></td>\n<td class=\"column column-4\" width=\"50%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;padding-bottom:5px;padding-top:30px;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:110px\"><a href=\"https://clicks.lili.co/f/a/NZtZ4CJX4yaGppxxEjWPdg~~/AAQRxRA~/j_uAmylhSqFeQciDKjsnCmeXNhPGtWhDia21AHocHOnb9UfImUWf5RAmOb1psrFDOvSQBPtIC4kDfQoedGJSn8gcfLCqrCe4F8fXZ7F1E7LtA4XCCM2OzmV899YSujvsn7xt4OIzYs4Xr-zcCThijw~~\" target=\"_blank\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/68651fe7fa567800652cc276/original.png?1751457766\" style=\"display:block;height:auto;border:0;width:100%\" width=\"110\" alt title height=\"auto\"></a></div></div></td></tr></table></td>\n</tr></tbody></table></td></tr></tbody></table>\n<table class=\"row row-13 mobile_hide\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\">\n<tbody><tr><td><table class=\"row-content\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;background-size:auto;border-radius:0;color:#000;padding-left:30px;width:600px;margin:0 auto\" width=\"600\"><tbody><tr>\n<td class=\"column column-1\" width=\"8.333333333333334%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;padding-bottom:40px;vertical-align:top\">\n<table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"left\"><div style=\"max-width:22px\"><a href=\"https://clicks.lili.co/f/a/Yf7oPd0gB6lRgsk22KxJRA~~/AAQRxRA~/jCxr6LaqhgGLht2EnBaE7aKgXgYmuWDO4GXtrt92oBiEkUCixV05syxU91LcrhQg_P1HoZSSqhsjoH1QbXNXmAHsfqmMW9oSzgRrrkPUImYRPKhuww0kUmh2vEsshCuRhDt-BkdgB80s8plzWx-PQX_NJ3OiO4i30gApNTaXw9Y~\" target=\"_blank\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/686515f83d76230066743145/original.png?1751455223\" style=\"display:block;height:auto;border:0;width:100%\" width=\"22\" alt title height=\"auto\"></a></div></div></td></tr></table>\n</td>\n<td class=\"column column-2\" width=\"8.333333333333334%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;padding-bottom:45px;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"left\"><div style=\"max-width:23px\"><a href=\"www.youtube.com/@hellofromlili?lid=nybpsz51845j\" target=\"_blank\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/686516000939720065d0a148/original.png?1751455232\" style=\"display:block;height:auto;border:0;width:100%\" width=\"23\" alt title height=\"auto\"></a></div></div></td></tr></table></td>\n<td class=\"column column-3\" width=\"8.333333333333334%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"left\"><div style=\"max-width:23px\"><a href=\"facebook.com/hellofromLili?lid=k7ov914njo2j\" target=\"_blank\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/6865160c3c1ea400663647aa/original.png?1751455243\" style=\"display:block;height:auto;border:0;width:100%\" width=\"23\" alt title height=\"auto\"></a></div></div></td></tr></table></td>\n<td class=\"column column-4\" width=\"8.333333333333334%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"left\"><div style=\"max-width:23px\"><a href=\"instagram.com/hellofromlili?lid=y8fx0b96ir6p\" target=\"_blank\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/68651612dd62e600636878f9/original.png?1751455250\" style=\"display:block;height:auto;border:0;width:100%\" width=\"23\" alt title height=\"auto\"></a></div></div></td></tr></table></td>\n<td class=\"column column-5\" width=\"25%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;vertical-align:top\"><table class=\"empty_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div></div></td></tr></table></td>\n<td class=\"column column-6\" width=\"25%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;padding-top:5px;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:110px\"><a href=\"https://clicks.lili.co/f/a/lSOyazdejQMJYB5wk6P0LA~~/AAQRxRA~/j_uAmylhSqFeQciDKjsnCmeXNhPGtWhDia21AHocHOnb9UfImUWf5RAmOb1psrFDSWm-P-9r8OtbIzLeBkEZXBwdchuauUWLBi6M1_GPlzB5qULrVRB5z9DVol6idD3KwEd2jXC7zuPStLm7ejexFw~~\" target=\"_blank\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/68651fe7fa567800652cc276/original.png?1751457766\" style=\"display:block;height:auto;border:0;width:100%\" width=\"110\" alt title height=\"auto\"></a></div></div></td></tr></table></td>\n<td class=\"column column-7\" width=\"16.666666666666668%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"left\"><div style=\"max-width:72px\"><a href=\"https://clicks.lili.co/f/a/OuBkKN3Ih7G1sHB230tFaA~~/AAQRxRA~/1A-lBMwldJpr_OhvrQ-UmZS0REKH6UPo8Yz7xPD9j_FHyjYYoNxHosgKzDvun254QDtfGPJL9TCnNcfFoq3eBABkPchE5CKYC2N2wyB8MaJJw2ZhsAKdyVKC9hT5l2B1cwtXOGgamwNL-rjit1Im1s6V0fJnkOKlRVWoPUT7y4NwG1A300LGUekiBLWJ9e5jwPGZFIGPT1Vmt0rlvWGJlg~~\" target=\"_blank\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/6865157f76ea6f0067123060/original.png?1751455103\" style=\"display:block;height:auto;border:0;width:100%\" width=\"72\" alt title height=\"auto\"></a></div></div></td></tr></table></td>\n</tr></tbody></table></td></tr></tbody>\n</table>\n<table class=\"row row-14 desktop_hide\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden;background-size:auto\"><tbody><tr><td><table class=\"row-content\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden;background-color:#fff;background-size:auto;border-radius:0;color:#000;padding-left:30px;width:600px;margin:0 auto\" width=\"600\"><tbody><tr>\n<td class=\"column column-1\" width=\"16.666666666666668%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;padding-bottom:40px;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"left\"><div style=\"max-width:22px\"><a href=\"https://clicks.lili.co/f/a/-XRm492nCsGaN3wGKQgXmg~~/AAQRxRA~/jCxr6LaqhgGLht2EnBaE7aKgXgYmuWDO4GXtrt92oBiEkUCixV05syxU91LcrhQgDXBoqa4QVGR05Wj1a9YWigtSSAiSQ5zohAJjNmvwGDywLXDWsPMIjnHw3O3NkiowO7bPI4iwgYDCMEd5EXg4fbbQTVJ2iRKfO4YKmpt7m68~\" target=\"_blank\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/686515f83d76230066743145/original.png?1751455223\" style=\"display:block;height:auto;border:0;width:100%\" width=\"22\" alt title height=\"auto\"></a></div></div></td></tr></table></td>\n<td class=\"column column-2\" width=\"16.666666666666668%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;padding-bottom:45px;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"left\"><div style=\"max-width:23px\"><a href=\"www.youtube.com/@hellofromlili?lid=u5hj53firv41\" target=\"_blank\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/686516000939720065d0a148/original.png?1751455232\" style=\"display:block;height:auto;border:0;width:100%\" width=\"23\" alt title height=\"auto\"></a></div></div></td></tr></table></td>\n<td class=\"column column-3\" width=\"16.666666666666668%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"left\"><div style=\"max-width:23px\"><a href=\"facebook.com/hellofromLili?lid=dad4m61aiql6\" target=\"_blank\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/6865160c3c1ea400663647aa/original.png?1751455243\" style=\"display:block;height:auto;border:0;width:100%\" width=\"23\" alt title height=\"auto\"></a></div></div></td></tr></table></td>\n<td class=\"column column-4\" width=\"16.666666666666668%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"left\"><div style=\"max-width:23px\">\n<a href=\"instagram.com/hellofromlili?lid=s6slyqe9gb9f\" target=\"_blank\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/68651612dd62e600636878f9/original.png?1751455250\" style=\"display:block;height:auto;border:0;width:100%\" width=\"23\" alt title height=\"auto\"></a>\n</div></div></td></tr></table></td>\n<td class=\"column column-5\" width=\"8.333333333333334%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;vertical-align:top\"><table class=\"empty_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tr><td class=\"pad\"><div></div></td></tr></table></td>\n<td class=\"column column-6\" width=\"25%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"left\"><div style=\"max-width:72px\">\n<a href=\"https://clicks.lili.co/f/a/2JZzB5SJ2htXYYdrxTp8pQ~~/AAQRxRA~/1A-lBMwldJpr_OhvrQ-UmZS0REKH6UPo8Yz7xPD9j_FHyjYYoNxHosgKzDvun254QDtfGPJL9TCnNcfFoq3eBABkPchE5CKYC2N2wyB8MaJJw2ZhsAKdyVKC9hT5l2B1wQfr4m4t4NIekOPOMUieAyQ75kQ7a6d7hc58HexHhrDQZb8T8Y6mITQGLiWDM4h1isHK4bgKCLlgOhbAFe3MeA~~\" target=\"_blank\"><img src=\"https://braze-images.com/appboy/communication/assets/image_assets/images/6865157f76ea6f0067123060/original.png?1751455103\" style=\"display:block;height:auto;border:0;width:100%\" width=\"72\" alt title height=\"auto\"></a>\n</div></div></td></tr></table></td>\n</tr></tbody></table></td></tr></tbody></table>\n<table class=\"row row-15\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;background-size:auto;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#dae0ec;vertical-align:top\">\n<div class=\"spacer_block block-1\" style=\"height:30px;line-height:30px;font-size:1px\"> </div>\n<table class=\"paragraph_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\"><div style=\"color:#656b78;direction:ltr;font-family:\'Open Sans\',Arial,Verdana,Sans-serif;font-size:12px;font-weight:400;letter-spacing:0;line-height:1.5;text-align:center;mso-line-height-alt:18px\">\n<p style=\"margin:0;margin-bottom:0\">\nLili is a financial technology company, not a bank. Banking services are provided by Sunrise Banks, N.A., Member FDIC. The Lili Visa® Debit Card is issued by Sunrise Banks, N.A., Member FDIC, pursuant to a license from Visa U.S.A. Wire Transfer service provided by Column Bank N.A., Member FDIC.<br><br>\nBusinessBuild is an add-on feature available to all Lili Accounts, except sole proprietorships. After a one-month free trial, BusinessBuild is $18/month for the next three months, then $30/month thereafter. By integrating your Lili Account through the D&amp;B Credit Insights banking integration feature, there may be potential for you to positively impact your Delinquency and Failure Scores. Dun &amp; Bradstreet requires a minimum of six months of business banking transaction history to be able to potentially impact these scores.   \n</p>\n<p style=\"margin:0;margin-bottom:0\">&nbsp;</p>\n<p style=\"margin:0;margin-bottom:0\">\nCustomers must be enrolled in the BusinessBuild feature to access the Lili BusinessBuild Card (Card). Lili App Inc. (Lili) partners with CapitalOS and First Internet Bank of Indiana, Member FDIC, for the Card. Lili is a financial technology company, not a bank or lender. CapitalOS is a financial technology company and lender, not a bank. CapitalOS or one of its affiliates is the lender, and Cards are issued by First Internet Bank of Indiana, pursuant to a license from Visa U.S.A. Inc.</p>\n<p style=\"margin:0;margin-bottom:0\">&nbsp;</p>\n<p style=\"margin:0;margin-bottom:0\">© 2025 Lili App Inc, all rights reserved. PO Box 1809, New York, NY 10156</p>\n<p style=\"margin:0;margin-bottom:0\">&nbsp;</p>\n<p style=\"margin:0\">\nIf you wish to be removed from our email list, <a href=\"https://clicks.lili.co/f/a/1vbMvgepO43nduqD5J96Eg~~/AAQRxRA~/lRmEiEZ7amUKjYSuz3Tzn1K21yUy7S2X9gMuCAcF-NviTOqSEnbdG_80fOKR2upA3vlewTZGNsHwxiAh4XqdQv0iD2p04uDveI0-mSEmQV6Y1xucRO0618vq2uxgjLIcRKKE6syErEKfR90LvrXtSMvqVhWNTEyf8fXaNjnzbsZls5lQfztE97oiJ-yzoxl1gp4aiTieKSPXKyMu6_pzlIALBafCCSqyhTZa2PEGx00NtkWRT-3zsfHoembW9ybxpTsKOq397xWK3MUcNjcWS9Xkx9zAtE9L_wFmwayg_OkAdwoKjLvWr0uRVjr18Pm15SD5afnfc_5ycD35HKyPPNB7VB6cXmZ1_DYkVqhRBnoNylX6xqFIs7QciZAoZFtHk_2SUvMreJIv0XSxqiOU7XQxzY_aq-eWNvQR9zTgsCe8wP-wEaeZ42qcL8d55iodqX6HYjK2oT98Lj4WLw0PRFh6XmvO7k3EUWHGnhWyy64jZwXNgDkSzZVtz7M72DQGrZT4rB-m_cOTb7EY2JygHu5fFgUQtbhjjkU0BceakFgS1Nq86oaAm1G-4EB4jR4u8j8FcNpTizIM-WvwGGu7R3C7RH_Gpr9u3fqSQBT6IhL7U9nQpkqAFmxEic2-aj4ASZnGJvMteSTEjWZf5GUIBw~~\" target=\"_blank\" style=\"text-decoration: underline; color: #656b78;\" data-mce-attribute-name-1 data-mce-attribute-value-1 rel=\"noopener\">unsubscribe</a>.</p>\n</div></td></tr></table>\n<div class=\"spacer_block block-3\" style=\"height:30px;line-height:30px;font-size:1px\"> </div>\n</td></tr></tbody></table></td></tr></tbody></table>\n</td></tr></tbody></table>\n<!-- End -->\n\r\n<img border=\"0\" width=\"1\" height=\"1\" alt=\"\" src=\"https://clicks.lili.co/q/XTKzm8cxb4i21nizBmWd3w~~/AAQRxRA~/w-xk7jZFu-_gYLq-47OHYA9DYnc5K-ri-6DRgZ6L6kIW6977vPD8NDRMY9l0oyA5\">\r\n</body>\n</html>','Lili BusinessBuild, in collaboration with Dun & Bradstreet\nRick\nMislan\n\nMAVRIX 1 LLC\n\nYour simple path to a stronger credit profile\n\nMonitor and build your business credit profile right from your\nbank account with BusinessBuild, Lili\'s credit-building program\ncreated in collaboration with Dun & Bradstreet. Get real-time\ntracking and automatic reporting to Dun & Bradstreet, helping you\nstrengthen your profile from day one.\n\nStart Your Free Trial  \n( https://clicks.lili.co/f/a/GfvPICPXM7l-mWxHIf5WGw~~/AAQRxRA~/Ybu3HUmx5hh0BNIsqs3Ak7Hd5A9hPPxnwz8UjkXkv5sNMQ8ZYApwdPpF3GkkWd1c9qchPkFFlLqutWStUU56gKgWF2KnGidj8Ougp89Oe7-9n5Yx_s5oPkg0f7q_n8Uc4868JCqtDvuRBypCqJt_h8IedtIyttSUajL7VYCg0VzqkwQFysZsbKXubq8puPL0GqyEtitDcII75foOh-uwbFUQrjt6Ni6J9TarWGk6yd1bb8P6w7-eEXT4BRN2KChTWoHSqrUXkjADSiwtnqvZBfi8-7LvAK22m60unjqnWyuKM4Bn2tZhQzFFsdlu-zAh5KAVRl-kBK-p1JaCdGDQJa9Ouf-61E4zvMV5YtJDPh6ceNiQQ8LVsaXziuZ95pl1AhPgCn7HJgMsPYD0oQcreEpJ5HJwnGTpuucBLT--xPtW4Gf6-rYQui-PGtu7pez-KsGEQzV8HLq7rE4cBweyk3e8j9qO7LNlWYTve8k1NhSaJ1UCeHAexc1_cKh6hF5lzw0sm7wVMZMvN1SPGcyXZ5Uw-J-U7rAuely94z8xn2Xm_QACn4GWFTJL-jZyW2uC8QLUS9N0WkrDtoJQ7B0fuZkh3_JazGCSQL4cO0iD56_aG1Rt2ErrNMUdMtQcDlMED0AXoSWbpSXkN-b19qw_sSB3Os8KJusRxn2rguR083jpufd9GDO0hJGkaqjc9DBKjpRt19rwXbM7u9h6O3-eUdG-aRUwEgmKCwCMJ0wFHs0~ )\n  What happens when you enroll today?\n\nBuild\n-----\n\nGrow business credit through everyday spend — no personal\ncredit check, no interest.\n\nMonitor\n-------\n\nTrack PAYDEX and 5 more Dun & Bradstreet scores with instant\nalerts and live dashboards accessible 24/7 from your Lili\naccount.\n\nOptimize\n--------\n\nMake positive impact on your score with credit-expert\ntraining, quick expert videos, credit-building eBook, webinars,\nand more.\n\nExpand your business.\nGrow your credit profile.\n\nFree for 1 month\n\nThen $18/month for 3 months\n\nFree for 1 month\n----------------\n\nThen $18/mo for 3 months\n------------------------\n\n$30/mo thereafter. Available in every plan. Cancel anytime\n----------------------------------------------------------\n\nStart Your Free Trial  \n( https://clicks.lili.co/f/a/0hu_hxwe9oHO5sCQpCb8uw~~/AAQRxRA~/Ybu3HUmx5hh0BNIsqs3Ak7Hd5A9hPPxnwz8UjkXkv5uxvjBJM5dMndL9Aofsbt3xNOwl0zMS6rW447GIJXGd9ZYmQuhPVTtMspxmrG6h4Cn6Db9SJNi-_qDE3qv7AK-0aR6Rcj1IPTksw3W14nuZEb-jwA2Dwhz5Pvmxc87NZ0invoGCUZmuhExLZhhfkP5xfb08twYmXNxnbPMlCzQ5TOjWiNVnlS-lJDQP5ymR4N_f1QqQ0FRbmYFudIpt2b2AATUzp8N17g5Rgj1KSKmRAw2zMlsR05eS16LW0PMU1MVv9C84jGJgUrLsYjV_J1emFmLRq1xqcfwJkjOI33200qVbS-XrN1e_XXA_Yhaw8EepJkl8efOPfB9seWlBcigkJRKJAn9tdLQ1g6MtApazOgmBDCnHYPQ4aaM4yhegmU_t9auk3kKdKIj4elIvjZg-qd5o4pSTrxZQGBxCtKaSK4n6ZbWEljzWqnMLGrOkJ6Wg-8deoaILaGL_mvsMAVFLfdOqZ2LyHHKZ-DRBqeZUUCKO77Qp8Idw-JBx_7Hl3_y7C7zn2bIp5t8SM2R4NVxS1oOiW_8NPU9l3c2FHGdl4p7WTOwJV1RBIYTazi4ujC5rtxEyGiEb0fnseQx1ssStDZtlShlouaYzk5Jg-rHj3ujj37x_JQ5hN8cMHnJxhtz8d0M3l1wjTFzBo-vO4huIounU8hVJSBxeUYtN3Ozx9RBwsK18R_EQYzQk7LxJXXQ~ )\n\n\nAccess to the BusinessBuild Program is currently available only\non the Lili web app.\n-----------------------------------------------------------------\n\nlili.co ( https://clicks.lili.co/f/a/Id8eDKJNvoG8F6M4Dh4o0w~~/AAQRxRA~/d5C9gq5-cH3VwrCFV5rqjBWqUp1OL2rN1ekWBZtdecoDt7Mh-1gplo6gcFuP5Et4XTSVy0SGbniOQysMPCprbDqvYG-RcbhQEhmulU24wZ8qmgBRXjdcqCYD7NVyLE1u )\n\nContact us ( support@lilibanking.com )\n\nlili.co ( https://clicks.lili.co/f/a/sDmCsJ-hyQQ7qgU6cR9h7g~~/AAQRxRA~/d5C9gq5-cH3VwrCFV5rqjGCFf5mUzi7DdeJC5nLj6K9HK29YNFCqsik8fcDYZeDLEr2qoIgjSw-Wfpem7A_1wg82gNyBj6uuOf0723bArDqmovqY5fVK-PapyopuUOZO )\n\nContact us ( support@lilibanking.com )\n\n( https://clicks.lili.co/f/a/NZtZ4CJX4yaGppxxEjWPdg~~/AAQRxRA~/j_uAmylhSqFeQciDKjsnCmeXNhPGtWhDia21AHocHOnb9UfImUWf5RAmOb1psrFDOvSQBPtIC4kDfQoedGJSn8gcfLCqrCe4F8fXZ7F1E7LtA4XCCM2OzmV899YSujvsn7xt4OIzYs4Xr-zcCThijw~~ )\n\n( https://clicks.lili.co/f/a/Yf7oPd0gB6lRgsk22KxJRA~~/AAQRxRA~/jCxr6LaqhgGLht2EnBaE7aKgXgYmuWDO4GXtrt92oBiEkUCixV05syxU91LcrhQg_P1HoZSSqhsjoH1QbXNXmAHsfqmMW9oSzgRrrkPUImYRPKhuww0kUmh2vEsshCuRhDt-BkdgB80s8plzWx-PQX_NJ3OiO4i30gApNTaXw9Y~ )\n   ( www.youtube.com/@hellofromlili?lid=nybpsz51845j )  (\nfacebook.com/hellofromLili?lid=k7ov914njo2j )  (\ninstagram.com/hellofromlili?lid=y8fx0b96ir6p )   \n( https://clicks.lili.co/f/a/lSOyazdejQMJYB5wk6P0LA~~/AAQRxRA~/j_uAmylhSqFeQciDKjsnCmeXNhPGtWhDia21AHocHOnb9UfImUWf5RAmOb1psrFDSWm-P-9r8OtbIzLeBkEZXBwdchuauUWLBi6M1_GPlzB5qULrVRB5z9DVol6idD3KwEd2jXC7zuPStLm7ejexFw~~ )  \n( https://clicks.lili.co/f/a/OuBkKN3Ih7G1sHB230tFaA~~/AAQRxRA~/1A-lBMwldJpr_OhvrQ-UmZS0REKH6UPo8Yz7xPD9j_FHyjYYoNxHosgKzDvun254QDtfGPJL9TCnNcfFoq3eBABkPchE5CKYC2N2wyB8MaJJw2ZhsAKdyVKC9hT5l2B1cwtXOGgamwNL-rjit1Im1s6V0fJnkOKlRVWoPUT7y4NwG1A300LGUekiBLWJ9e5jwPGZFIGPT1Vmt0rlvWGJlg~~ )\n     \n( https://clicks.lili.co/f/a/-XRm492nCsGaN3wGKQgXmg~~/AAQRxRA~/jCxr6LaqhgGLht2EnBaE7aKgXgYmuWDO4GXtrt92oBiEkUCixV05syxU91LcrhQgDXBoqa4QVGR05Wj1a9YWigtSSAiSQ5zohAJjNmvwGDywLXDWsPMIjnHw3O3NkiowO7bPI4iwgYDCMEd5EXg4fbbQTVJ2iRKfO4YKmpt7m68~ )\n  ( www.youtube.com/@hellofromlili?lid=u5hj53firv41 )  (\nfacebook.com/hellofromLili?lid=dad4m61aiql6 )   (\ninstagram.com/hellofromlili?lid=s6slyqe9gb9f )     \n( https://clicks.lili.co/f/a/2JZzB5SJ2htXYYdrxTp8pQ~~/AAQRxRA~/1A-lBMwldJpr_OhvrQ-UmZS0REKH6UPo8Yz7xPD9j_FHyjYYoNxHosgKzDvun254QDtfGPJL9TCnNcfFoq3eBABkPchE5CKYC2N2wyB8MaJJw2ZhsAKdyVKC9hT5l2B1wQfr4m4t4NIekOPOMUieAyQ75kQ7a6d7hc58HexHhrDQZb8T8Y6mITQGLiWDM4h1isHK4bgKCLlgOhbAFe3MeA~~ )\n        Lili is a financial technology company, not a bank.\nBanking services are provided by Sunrise Banks, N.A., Member\nFDIC. The Lili Visa® Debit Card is issued by Sunrise Banks, N.A.,\nMember FDIC, pursuant to a license from Visa U.S.A. Wire Transfer\nservice provided by Column Bank N.A., Member FDIC.\n\nBusinessBuild is an add-on feature available to all Lili\nAccounts, except sole proprietorships. After a one-month free\ntrial, BusinessBuild is $18/month for the next three months, then\n$30/month thereafter. By integrating your Lili Account through\nthe D&B Credit Insights banking integration feature, there may be\npotential for you to positively impact your Delinquency and\nFailure Scores. Dun & Bradstreet requires a minimum of six months\nof business banking transaction history to be able to potentially\nimpact these scores.\n\nCustomers must be enrolled in the BusinessBuild feature to\naccess the Lili BusinessBuild Card (Card). Lili App Inc. (Lili)\npartners with CapitalOS and First Internet Bank of Indiana,\nMember FDIC, for the Card. Lili is a financial technology\ncompany, not a bank or lender. CapitalOS is a financial\ntechnology company and lender, not a bank. CapitalOS or one of\nits affiliates is the lender, and Cards are issued by First\nInternet Bank of Indiana, pursuant to a license from Visa U.S.A.\nInc.\n\n© 2025 Lili App Inc, all rights\nreserved. PO Box 1809, New York, NY 10156\n\nIf you wish to be removed from our email list, unsubscribe (\nhttps://clicks.lili.co/f/a/1vbMvgepO43nduqD5J96Eg~~/AAQRxRA~/lRmEiEZ7amUKjYSuz3Tzn1K21yUy7S2X9gMuCAcF-NviTOqSEnbdG_80fOKR2upA3vlewTZGNsHwxiAh4XqdQv0iD2p04uDveI0-mSEmQV6Y1xucRO0618vq2uxgjLIcRKKE6syErEKfR90LvrXtSMvqVhWNTEyf8fXaNjnzbsZls5lQfztE97oiJ-yzoxl1gp4aiTieKSPXKyMu6_pzlIALBafCCSqyhTZa2PEGx00NtkWRT-3zsfHoembW9ybxpTsKOq397xWK3MUcNjcWS9Xkx9zAtE9L_wFmwayg_OkAdwoKjLvWr0uRVjr18Pm15SD5afnfc_5ycD35HKyPPNB7VB6cXmZ1_DYkVqhRBnoNylX6xqFIs7QciZAoZFtHk_2SUvMreJIv0XSxqiOU7XQxzY_aq-eWNvQR9zTgsCe8wP-wEaeZ42qcL8d55iodqX6HYjK2oT98Lj4WLw0PRFh6XmvO7k3EUWHGnhWyy64jZwXNgDkSzZVtz7M72DQGrZT4rB-m_cOTb7EY2JygHu5fFgUQtbhjjkU0BceakFgS1Nq86oaAm1G-4EB4jR4u8j8FcNpTizIM-WvwGGu7R3C7RH_Gpr9u3fqSQBT6IhL7U9nQpkqAFmxEic2-aj4ASZnGJvMteSTEjWZf5GUIBw~~ ).',0,0,0,0,0,0,'2025-07-17 05:00:30','2025-12-09 19:14:01','2025-12-09 19:14:01','2025-12-09 19:14:01',NULL,NULL,NULL),
(479,4,' <SA1PR19MB80721B47AA48419A071DCB51AC51A@SA1PR19MB8072.namprd19.prod.outlook.com>',NULL,NULL,'RE: Epilog Laser + Geneva Capital','rsnaza@gogc.com','Rebecca Snaza - Geneva Capital','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Segoe UI Emoji\";\r\n	panose-1:2 11 5 2 4 2 4 2 2 3;}\r\n@font-face\r\n	{font-family:\"Century Gothic\";\r\n	panose-1:2 11 5 2 2 2 2 2 2 4;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	line-height:15.0pt;\r\n	font-size:11.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:#467886;\r\n	text-decoration:underline;}\r\nspan.EmailStyle20\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Century Gothic\",sans-serif;\r\n	color:#3A3A3A;\r\n	font-weight:normal;\r\n	font-style:normal;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<div>\r\n<p class=\"MsoNormal\" style=\"line-height:normal\"><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;letter-spacing:.3pt\">Rick,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:normal\"><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;letter-spacing:.3pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:normal\"><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;letter-spacing:.3pt\">This equipment purchase was on your mind recently. If that is still the case, I would love to chat and discuss\r\n any financing. Any hold ups or concerns on your end?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:normal\"><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;letter-spacing:.3pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:normal\"><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;letter-spacing:.3pt\">Please let me know if you have any questions or an update.\r\n</span><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3B3838;letter-spacing:.3pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:normal\"><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;letter-spacing:.3pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:normal\"><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;letter-spacing:.3pt\">Thanks!\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:normal\"><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;letter-spacing:.3pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:normal\"><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;letter-spacing:.3pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:normal\"><span style=\"color:#3A3A3A;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:normal\"><span style=\"font-size:12.0pt;color:#3A3A3A;mso-ligatures:none\"><img width=\"124\" height=\"100\" style=\"width:1.2916in;height:1.0416in\" id=\"_x0000_i1034\" src=\"https://www.gogc.com/images/Pillars-EDGE.png\" alt=\"Geneva Capital\"></span><span style=\"font-size:12.0pt;color:#3A3A3A;mso-ligatures:none\"><br>\r\n<br>\r\n</span><b><span style=\"font-size:14.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#16355D;letter-spacing:.4pt;mso-ligatures:none\">Rebecca Snaza</span></b><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;letter-spacing:.4pt;mso-ligatures:none\"><br>\r\n</span><b><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#7F7F7F;letter-spacing:.4pt;mso-ligatures:none\">Business Development</span></b><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#7F7F7F;letter-spacing:.4pt;mso-ligatures:none\"><br>\r\nDirect: 320.759.3544<br>\r\nMain: 320.762.8400<br>\r\n</span><span style=\"font-size:12.0pt;color:#3A3A3A\"><a href=\"mailto:rsnaza@gogc.com\"><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#7F7F7F;letter-spacing:.4pt;mso-ligatures:none;text-decoration:none\">rsnaza@gogc.com</span></a></span><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;letter-spacing:.4pt;mso-ligatures:none\"><br>\r\n<br>\r\n</span><b><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#BE1E2D;letter-spacing:.4pt;mso-ligatures:none\">Geneva Capital LLC</span></b><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;letter-spacing:.4pt;mso-ligatures:none\"><br>\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#16355D;letter-spacing:.4pt;mso-ligatures:none\">Your equipment finance\r\n<i>solution.</i></span><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;letter-spacing:.4pt;mso-ligatures:none\"><br>\r\n</span><span style=\"font-size:12.0pt;color:#3A3A3A\"><a href=\"http://www.gogc.com/\"><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#7F7F7F;letter-spacing:.4pt;mso-ligatures:none;text-decoration:none\">www.gogc.com</span></a></span><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;letter-spacing:.4pt;mso-ligatures:none\"><br>\r\n<br>\r\n</span><a href=\"https://www.facebook.com/GenevaCapitalLLC/\"><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:blue;letter-spacing:.4pt;mso-ligatures:none;text-decoration:none\"><img border=\"0\" width=\"38\" height=\"38\" style=\"width:.3958in;height:.3958in\" id=\"_x0000_i1033\" src=\"https://www.gogc.com/images/fb.png\" alt=\"fb\"></span></a><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:gray;letter-spacing:.4pt;mso-ligatures:none\">&nbsp;&nbsp;</span><a href=\"https://www.instagram.com/geneva_capital/?hl=en\"><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:blue;letter-spacing:.4pt;mso-ligatures:none;text-decoration:none\"><img border=\"0\" width=\"38\" height=\"38\" style=\"width:.3958in;height:.3958in\" id=\"_x0000_i1032\" src=\"https://www.gogc.com/images/IG.png\" alt=\"IG\"></span></a><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:gray;letter-spacing:.4pt;mso-ligatures:none\">&nbsp;&nbsp;</span><a href=\"https://www.linkedin.com/company/geneva-capital-llc/\"><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:blue;letter-spacing:.4pt;mso-ligatures:none;text-decoration:none\"><img border=\"0\" width=\"38\" height=\"38\" style=\"width:.3958in;height:.3958in\" id=\"_x0000_i1031\" src=\"https://www.gogc.com/images/LI.png\" alt=\"LI\"></span></a><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:gray;letter-spacing:.4pt;mso-ligatures:none\">&nbsp;&nbsp;</span><a href=\"https://twitter.com/Geneva_Capital\"><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:blue;letter-spacing:.4pt;mso-ligatures:none;text-decoration:none\"><img border=\"0\" width=\"38\" height=\"38\" style=\"width:.3958in;height:.3958in\" id=\"_x0000_i1030\" src=\"https://www.gogc.com/images/TW.png\" alt=\"IG\"></span></a><span style=\"font-size:12.0pt;color:#3A3A3A\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;letter-spacing:.3pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"line-height:normal\"><b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\">From:</span></b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\"> Rebecca Snaza - Geneva Capital\r\n<br>\r\n<b>Sent:</b> Thursday, July 10, 2025 12:33 PM<br>\r\n<b>To:</b> rick@mavrix.one<br>\r\n<b>Subject:</b> Epilog Laser + Geneva Capital<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;line-height:normal\">\r\n<span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A\">Rick,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;line-height:normal\">\r\n<span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A\">Thank you for taking the time to complete the Epilog request form online. I am following up today to see if you had a chance to connect with your local Epilog distributor,\r\n Keystone Prototyping Solutions. <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A\">Geneva Capital has worked with Epilog for quite some time and we have multiple, flexible leasing/financing options available.\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:115%\"><span style=\"font-size:10.5pt;line-height:115%;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A\">Our lease or financing programs are\r\n</span><span style=\"font-size:10.5pt;line-height:115%;font-family:&quot;Century Gothic&quot;,sans-serif;color:#2F5597\">completely customizable\r\n</span><span style=\"font-size:10.5pt;line-height:115%;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A\">and range from\r\n</span><span style=\"font-size:10.5pt;line-height:115%;font-family:&quot;Century Gothic&quot;,sans-serif;color:#2F5597\">1-5 year terms\r\n</span><span style=\"font-size:10.5pt;line-height:115%;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A\">depending on your needs. When you submit an application</span><span style=\"font-size:10.5pt;line-height:115%;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;mso-ligatures:none\">,\r\n there is no cost or obligation and only takes minutes to apply. The approval will be valid for 90 days and it’s the best way to get hard numbers for a purchasing decision!<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:115%\"><span style=\"font-size:10.5pt;line-height:115%;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:normal\"><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A\">If you\'re not interested at this time, no worries! But if you’d like to learn more of what we have to offer, please let me know.\r\n</span><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI Emoji&quot;,sans-serif;color:#3A3A3A\">&#128522;</span><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A\">\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:normal\"><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:normal\"><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A\">Thanks!\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:normal\"><span style=\"color:#3A3A3A;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:normal\"><span style=\"font-size:12.0pt;color:#3A3A3A;mso-ligatures:none\"><img border=\"0\" width=\"124\" height=\"100\" style=\"width:1.2916in;height:1.0416in\" id=\"_x0000_i1029\" src=\"https://www.gogc.com/images/Pillars-EDGE.png\" alt=\"Geneva Capital\"></span><span style=\"font-size:12.0pt;color:#3A3A3A;mso-ligatures:none\"><br>\r\n<br>\r\n</span><b><span style=\"font-size:14.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#16355D;letter-spacing:.4pt;mso-ligatures:none\">Rebecca Snaza</span></b><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;letter-spacing:.4pt;mso-ligatures:none\"><br>\r\n</span><b><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#7F7F7F;letter-spacing:.4pt;mso-ligatures:none\">Business Development</span></b><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#7F7F7F;letter-spacing:.4pt;mso-ligatures:none\"><br>\r\nDirect: 320.759.3544<br>\r\nMain: 320.762.8400<br>\r\n</span><span style=\"font-size:12.0pt;color:#3A3A3A\"><a href=\"mailto:rsnaza@gogc.com\"><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#7F7F7F;letter-spacing:.4pt;mso-ligatures:none;text-decoration:none\">rsnaza@gogc.com</span></a></span><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;letter-spacing:.4pt;mso-ligatures:none\"><br>\r\n<br>\r\n</span><b><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#BE1E2D;letter-spacing:.4pt;mso-ligatures:none\">Geneva Capital LLC</span></b><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;letter-spacing:.4pt;mso-ligatures:none\"><br>\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#16355D;letter-spacing:.4pt;mso-ligatures:none\">Your equipment finance\r\n<i>solution.</i></span><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;letter-spacing:.4pt;mso-ligatures:none\"><br>\r\n</span><span style=\"font-size:12.0pt;color:#3A3A3A\"><a href=\"http://www.gogc.com/\"><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#7F7F7F;letter-spacing:.4pt;mso-ligatures:none;text-decoration:none\">www.gogc.com</span></a></span><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:#3A3A3A;letter-spacing:.4pt;mso-ligatures:none\"><br>\r\n<br>\r\n</span><a href=\"https://www.facebook.com/GenevaCapitalLLC/\"><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:blue;letter-spacing:.4pt;mso-ligatures:none;text-decoration:none\"><img border=\"0\" width=\"38\" height=\"38\" style=\"width:.3958in;height:.3958in\" id=\"_x0000_i1028\" src=\"https://www.gogc.com/images/fb.png\" alt=\"fb\"></span></a><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:gray;letter-spacing:.4pt;mso-ligatures:none\">&nbsp;&nbsp;</span><a href=\"https://www.instagram.com/geneva_capital/?hl=en\"><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:blue;letter-spacing:.4pt;mso-ligatures:none;text-decoration:none\"><img border=\"0\" width=\"38\" height=\"38\" style=\"width:.3958in;height:.3958in\" id=\"_x0000_i1027\" src=\"https://www.gogc.com/images/IG.png\" alt=\"IG\"></span></a><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:gray;letter-spacing:.4pt;mso-ligatures:none\">&nbsp;&nbsp;</span><a href=\"https://www.linkedin.com/company/geneva-capital-llc/\"><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:blue;letter-spacing:.4pt;mso-ligatures:none;text-decoration:none\"><img border=\"0\" width=\"38\" height=\"38\" style=\"width:.3958in;height:.3958in\" id=\"_x0000_i1026\" src=\"https://www.gogc.com/images/LI.png\" alt=\"LI\"></span></a><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:gray;letter-spacing:.4pt;mso-ligatures:none\">&nbsp;&nbsp;</span><a href=\"https://twitter.com/Geneva_Capital\"><span style=\"font-size:10.0pt;font-family:&quot;Century Gothic&quot;,sans-serif;color:blue;letter-spacing:.4pt;mso-ligatures:none;text-decoration:none\"><img border=\"0\" width=\"38\" height=\"38\" style=\"width:.3958in;height:.3958in\" id=\"_x0000_i1025\" src=\"https://www.gogc.com/images/TW.png\" alt=\"IG\"></span></a><span style=\"font-size:12.0pt;color:#3A3A3A\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</body>\r\n</html>\r\n','Rick,\r\n\r\nThis equipment purchase was on your mind recently. If that is still the case, I would love to chat and discuss any financing. Any hold ups or concerns on your end?\r\n\r\nPlease let me know if you have any questions or an update.\r\n\r\nThanks!\r\n\r\n\r\n\r\n[Geneva Capital]\r\n\r\nRebecca Snaza\r\nBusiness Development\r\nDirect: 320.759.3544\r\nMain: 320.762.8400\r\nrsnaza@gogc.com<mailto:rsnaza@gogc.com>\r\n\r\nGeneva Capital LLC\r\nYour equipment finance solution.\r\nwww.gogc.com<http://www.gogc.com/>\r\n\r\n[fb]<https://www.facebook.com/GenevaCapitalLLC/>  [IG] <https://www.instagram.com/geneva_capital/?hl=en>   [LI] <https://www.linkedin.com/company/geneva-capital-llc/>   [IG] <https://twitter.com/Geneva_Capital>\r\n\r\nFrom: Rebecca Snaza - Geneva Capital\r\nSent: Thursday, July 10, 2025 12:33 PM\r\nTo: rick@mavrix.one\r\nSubject: Epilog Laser + Geneva Capital\r\n\r\nRick,\r\nThank you for taking the time to complete the Epilog request form online. I am following up today to see if you had a chance to connect with your local Epilog distributor, Keystone Prototyping Solutions.\r\nGeneva Capital has worked with Epilog for quite some time and we have multiple, flexible leasing/financing options available.\r\n\r\nOur lease or financing programs are completely customizable and range from 1-5 year terms depending on your needs. When you submit an application, there is no cost or obligation and only takes minutes to apply. The approval will be valid for 90 days and it’s the best way to get hard numbers for a purchasing decision!\r\n\r\nIf you\'re not interested at this time, no worries! But if you’d like to learn more of what we have to offer, please let me know. 😊\r\n\r\nThanks!\r\n\r\n\r\n\r\n[Geneva Capital]\r\n\r\nRebecca Snaza\r\nBusiness Development\r\nDirect: 320.759.3544\r\nMain: 320.762.8400\r\nrsnaza@gogc.com<mailto:rsnaza@gogc.com>\r\n\r\nGeneva Capital LLC\r\nYour equipment finance solution.\r\nwww.gogc.com<http://www.gogc.com/>\r\n\r\n[fb]<https://www.facebook.com/GenevaCapitalLLC/>  [IG] <https://www.instagram.com/geneva_capital/?hl=en>   [LI] <https://www.linkedin.com/company/geneva-capital-llc/>   [IG] <https://twitter.com/Geneva_Capital>\r\n\r\n',0,0,0,0,0,0,'2025-07-17 15:07:14','2025-12-09 19:14:01','2025-12-09 19:14:01','2025-12-09 19:14:01',NULL,NULL,NULL),
(480,4,'<fa51c07a187bbfe209569a1d3fb166075ab3c252-20314777-111496330@google.com>',NULL,NULL,'Your recommendations: Get more from Google Workspace','workspace-noreply@google.com','The Google Workspace Team','<!doctype html><html lang=en xmlns=http://www.w3.org/1999/xhtml xmlns:v=urn:schemas-microsoft-com:vml xmlns:o=urn:schemas-microsoft-com:office:office><head><title>Discover Google Workspace</title><!--[if !mso]><!-- --><meta http-equiv=X-UA-Compatible content=IE=edge><!--<![endif]--><meta http-equiv=Content-Type content=\"text/html; charset=UTF-8\"><meta name=viewport content=width=device-width,initial-scale=1><style type=text/css>#outlook a { padding:0; } body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; } table { border-spacing:0;} img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; } p { display:block;margin:13px 0; }</style><!--[if mso]> <xml> <o:OfficeDocumentSettings> <o:AllowPNG/> <o:PixelsPerInch>96</o:PixelsPerInch> </o:OfficeDocumentSettings> </xml> <style type=\"text/css\"> table { border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt; } .mj-outlook-group-fix { width:100% !important; } .mso-button-dark-mode a {background: transparent !important;} </style> <![endif]--><!--[if !mso]><!--><link href=https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,700 rel=stylesheet type=text/css><link href=https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700|Google+Sans:400,500,700|Google+Sans+Display:400,500,700|Open+Sans:400,500,700 rel=stylesheet type=text/css><link href=https://client-data.knak.io/production/company_data/608c388d87e9e/custom-fonts/62b086f5c0cbf/fonts.css rel=stylesheet type=text/css><style type=text/css>@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,700); @import url(https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700|Google+Sans:400,500,700|Google+Sans+Display:400,500,700|Open+Sans:400,500,700); @import url(https://client-data.knak.io/production/company_data/608c388d87e9e/custom-fonts/62b086f5c0cbf/fonts.css);</style><!--<![endif]--><style type=text/css>@media only screen and (min-width:950px) { .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } }</style><style type=text/css>u ~ div .img-container img + div { display: none } .links-1A73E8-bold a { color: #1A73E8; text-decoration: none; font-weight: bold; } #body #main [x-apple-data-detectors-type] { color: inherit !important; -webkit-text-decoration-color: inherit !important; text-decoration: inherit !important; font-weight: inherit !important; } .links-0068A5-underline a { color: #0068A5; text-decoration: underline; } .links-0068A5 a { color: #0068A5; text-decoration: none; } .links-1A73E8 a { color: #1A73E8; text-decoration: none; } @media only screen and (min-width:950px) { .max-width-214px { max-width: 214px !important} .font-size-32px { font-size: 32px !important} .font-size-16px { font-size: 16px !important} .font-size-14px { font-size: 14px !important} .img-full-width { max-width: 100% !important} }</style><style type=text/css>p{margin: 0 0;}ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #0B57D0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}.button-highlight{transition: 0.3s;}.button-highlight:hover{filter: brightness(1.5);}@media only screen and (min-width: 950px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}</style><!--[if mso]> <style> .hide-on-mobile {display:block !important} </style> <![endif]--><!--[if mso]> <style> .mso-font-size-32px { font-size: 32px !important; } .mso-font-size-16px { font-size: 16px !important; } .font-size-14px { font-size: 14px !important} </style> <![endif]--><!--[if gte mso 16]> <style> .mso-text-white a { mso-style-textfill-type: gradient; mso-style-textfill-fill-gradientfill-stoplist: \"0 \\#FFFFFF 0 100000\\,100000 \\#FFFFFF 0 100000\"; color: #000000 !important; } </style> <![endif]--><style>[class~=\"x_body\"] { width: 99.9% }</style></head><body style=word-spacing:normal;background-color:#F0F4F9; class=body id=body><!--[if !mso 9]><!--><div id=emailPreHeader style=\"display: none;\">We think you’ll love these tips.</div><div style=\"display: none;\">&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &nbsp;</div><!--<![endif]--><div style=\"background-color:#F0F4F9;background-position:center center;background-size:auto;background-repeat:repeat;\" id=main><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:transparent;width:100%; class=section><tr><td align=center><div role=presentation><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"background:transparent;background-color:transparent;Margin:0px auto;border-radius:0px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:transparent;width:100%;border-radius:0px;><tr><td style=border-radius:0px;font-size:0px;padding:0;text-align:center;vertical-align:top; class=block-grid><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:600px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=\"background-color:transparent;border-radius:0px;vertical-align:top;padding:5px 0px 5px 0px;\"><table border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:20px;height:20px;mso-line-height-alt:20px;>&nbsp;</div></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></div></td></tr></table><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:transparent;width:100%; class=section><tr><td align=center><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"background:transparent;background-color:transparent;Margin:0px auto;border-radius:24px 24px 0px 0px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=\"background-color:transparent;width:100%;border-radius:24px 24px 0px 0px;\"><tr><td style=\"border-radius:24px 24px 0px 0px;font-size:0px;padding:0px 8px 2px 8px;text-align:center;vertical-align:top;\" class=block-grid><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=background-color:transparent;line-height:0;font-size:0;direction:ltr;><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:584px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=\"background-color:#FFFFFF;border-radius:24px 24px 0px 0px;vertical-align:top;padding:24px 24px 24px 24px;\"><table border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td class=img-container style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><div style=\"margin:0 auto;max-width:214.4px;\" class=max-width-214px><a href=https://c.gle/ANiao5qGlcZKcRvOR6Pivra4pRMb28JPIQbf9N3WgWkzh4rD8owRGJpk3ablgLCwjzTghemIr0r_sDCUKxEemd95aeg6MLDoQ9lqF9AT2jjLRGAPWPYW-rK7zaIoCkVMoitKk6rcBazFFmdCgErrboUTh2nUNzk target=_blank style=\"text-decoration: none; color: #0B57D0;\"><img alt=\"Google Workspace\" height=auto width=214 src=https://gstatic.com/growthlab/api/qKZRzO3MC3UgATELdQY9rmtE6niVyqlNrezhCPIs.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></a></div></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:transparent;width:100%; class=section><tr><td align=center><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"background:transparent;background-color:transparent;Margin:0px auto;border-radius:24px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:transparent;width:100%;border-radius:24px;><tr><td style=\"border-radius:24px;font-size:0px;padding:2px 8px 2px 8px;text-align:center;vertical-align:top;\" class=block-grid><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=background-color:transparent;line-height:0;font-size:0;direction:ltr;><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:584px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=\"background-color:#FFFFFF;border-radius:2px;vertical-align:top;padding:24px 24px 24px 24px;\"><table border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td class=img-container style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><div style=\"margin:0 auto;max-width:200px;\"><a href=https://c.gle/ANiao5rAmrldTeaQRt2MYbI6DkhU3YqVb0MDl3xVKcrS2focBpQb9fqznx9ihWvRL1Us76-QNyujyn2xbG9W-SkNdgqS5wxr2DMIKuG7FUOpoXIxEMQCmsWymkZGbBioy4Upl091kt1Ko6OdivRaDV6RtQJiow target=_blank style=\"text-decoration: none;\"><img alt=\"GWS Icon Cluster\" height=auto width=200 src=https://gstatic.com/growthlab/api/mtPtjXZpLNbmuRae04ZkwdUqXvZB1JK4lHsv0jrz.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></a></div></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:8px;height:8px;mso-line-height-alt:8px;>&nbsp;</div></td></tr><tr><td class=text-container style=\"font-size:0px;padding:8px 8px 8px 8px;word-break:break-word;text-align:center;\"><div class=links-1A73E8-bold><div style=\"font-family:\'Google Sans\', \'Open Sans\', Arial, sans-serif;font-size:24px;font-weight:700;letter-spacing:none;line-height:1.2;text-align:center;mso-line-height-alt:2.375em;color:#1F1F1F;\" class=\"mso-font-size-32px font-size-32px\"><p style=\"margin: 0 0;\">Achieve more together</p></div></div></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:8px;height:8px;mso-line-height-alt:8px;>&nbsp;</div></td></tr><tr><td class=text-container style=\"font-size:0px;padding:10px 8px 10px 8px;word-break:break-word;text-align:center;\"><div class=links-0068A5-underline><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:14px;letter-spacing:none;line-height:1.50;text-align:center;mso-line-height-alt:1.5em;color:#1F1F1F;\" class=\"mso-font-size-16px font-size-16px\"><p style=\"margin: 0 0;\">Google Workspace offers intuitive tools to streamline communication, simplify project management, and increase overall efficiency for teams of any size.</p></div></div></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:8px;height:8px;mso-line-height-alt:8px;>&nbsp;</div></td></tr><tr><td valign=middle class=\"button-highlight button-container\" style=\"transition: 0.3s; font-size: 0px; padding: 9px 9px 9px 8px; word-break: break-word; text-align: center;\" align=center><div><!--[if mso]><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\" class=\"font-size-14px\"><tr><td align=\"center\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://c.gle/ANiao5q18w2cFssVtT4j9BgailWI8ZcQ-SBKSKRoFOdaeop1U6oCh6aU0S1OlQzKGyBPUUbyuRx9kz09MyBLDiZPYbRbnp9zrpNk8672A-vbx9Fmh8pPC5CnMAQ3amiAoQsxA228d1_4e6hdZHrdK4fqVwBNVTe_g85O1X55BA\" fillcolor=\"#0B57D0\" arcsize=\"109%\" style=\"v-text-anchor:middle;width:179.25pt;height:34.5pt;\" stroke=\"f\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\" class=\"mso-text-white\"><![endif]--> <a href=https://c.gle/ANiao5q18w2cFssVtT4j9BgailWI8ZcQ-SBKSKRoFOdaeop1U6oCh6aU0S1OlQzKGyBPUUbyuRx9kz09MyBLDiZPYbRbnp9zrpNk8672A-vbx9Fmh8pPC5CnMAQ3amiAoQsxA228d1_4e6hdZHrdK4fqVwBNVTe_g85O1X55BA style=\"display: inline-block; background: #0B57D0; color: #ffffff; font-family: \'Google Sans Text\', Arial, sans-serif; font-size: 14px; font-weight: 500; line-height: 1.00; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 17px 24px 17px 24px; mso-padding-alt: 0px; border-radius: 50px; mso-border-alt: none; box-sizing: border-box;\" target=_blank width=239 class=font-size-14px><strong>Discover Google Workspace</strong> </a><!--[if mso]></center></a:textbox></a:roundrect></td></tr></table><![endif]--></div></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:24px;height:24px;mso-line-height-alt:24px;>&nbsp;</div></td></tr><tr><td class=img-container style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><div style=\"margin:0 auto;max-width:536px;\" class=img-full-width><img alt height=auto width=536 src=https://gstatic.com/growthlab/api/dwVmOYBf8dO1AVC2sUZ7CQlhGFk2hUqVuHiZpVgE.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></div></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:24px;height:24px;mso-line-height-alt:24px;>&nbsp;</div></td></tr><tr><td class=text-container style=\"font-size:0px;padding:10px 8px 10px 8px;word-break:break-word;text-align:left;\"><div class=links-0068A5-underline><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:14px;letter-spacing:none;line-height:1.50;text-align:left;mso-line-height-alt:1.313em;color:#1F1F1F;\"><p style=\"margin: 0 0;\">Hi Rick,</p><p style=\"margin: 0 0;\">&nbsp;</p><p style=\"margin: 0 0;\">Want to eliminate communication bottlenecks, share information seamlessly, and reach milestones with more speed? Here are some tips to make this kind of transformative collaboration a reality.</p></div></div></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%; class=section><tr><td align=center><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"Margin:0px auto;border-radius:0px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%;border-radius:0px;><tr><td style=\"border-radius:0px;font-size:0px;padding:2px 8px 2px 8px;text-align:center;vertical-align:top;\" class=block-grid><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:584px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:top; width=100%><tr><td><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:#FFFFFF;width:100%;border-radius:2px; class=section><tr><td align=center style=\"border-radius:2px;font-size:0px;text-align:center;vertical-align:top;padding:24px 8px 24px 24px;word-break:break-word;\"><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:middle;width:276px;\" ><![endif]--><div class=\"mj-column-per-50 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:middle; width=100%><tr><td class=text-container style=\"font-size:0px;padding:8px 0px 8px 8px;word-break:break-word;text-align:left;\"><div class=links-0068A5><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:14px;letter-spacing:none;line-height:1.50;text-align:left;mso-line-height-alt:1.313em;color:#1F1F1F;\"><p style=\"margin: 0 0;\"><strong>Organize team files in a shared space</strong></p><p style=\"margin: 0 0;\">Use shared drives to store your team’s work in secure, easy-to-manage shared spaces.</p></div></div></td></tr><tr><td valign=middle class=button-container style=\"font-size:0px;padding:8px 8px 8px 8px;word-break:break-word;text-align:left;\"><div><!--[if mso]><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\" class=\"font-size-14px\"><tr><td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://c.gle/ANiao5q-_eHaLt2IMtM6xyaXe08EacMDQ2Z4UlG0PTNwUqUQJ8dqJVvc5VsA2biiNs6UMhdhtPL9xBr3iQxd59UZ6FE3SV3xfPunRmK1qlfUqQ8HS65IStdbtV-nIjmmdXQT9-3XJHvv4VCExk9eSaImQiEc_FJxRZMJFrrhW-AR4GwqjkkOnio2dvME1geyiASvaTKB8hMMHg8KoAlWst-J\" fillcolor=\"#FFFFFF\" arcsize=\"116%\" style=\"v-text-anchor:middle;width:150.25pt;height:32.25pt;\" strokecolor=\"#747775\" strokeweight=\"0.75pt\" ><w:anchorlock/><a:textbox inset=\"24px,0,24px,0\"><span style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=https://c.gle/ANiao5q-_eHaLt2IMtM6xyaXe08EacMDQ2Z4UlG0PTNwUqUQJ8dqJVvc5VsA2biiNs6UMhdhtPL9xBr3iQxd59UZ6FE3SV3xfPunRmK1qlfUqQ8HS65IStdbtV-nIjmmdXQT9-3XJHvv4VCExk9eSaImQiEc_FJxRZMJFrrhW-AR4GwqjkkOnio2dvME1geyiASvaTKB8hMMHg8KoAlWst-J style=\"display: inline-block; background: #FFFFFF; color: #0B57D0; font-family: \'Google Sans Text\', Arial, sans-serif; font-size: 14px; font-weight: normal; line-height: 1.2; margin: 0; text-align: left; text-decoration: none; text-transform: none; padding: 15px 24px 15px 24px; mso-padding-alt: 0px; border-radius: 50px; border-left: 1px solid #747775; border-right: 1px solid #747775; border-top: 1px solid #747775; border-bottom: 1px solid #747775; mso-border-alt: none; box-sizing: border-box;\" target=_blank width=187 class=font-size-14px>Create a shared drive </a><!--[if mso]></span></a:textbox></a:roundrect></td></tr></table><![endif]--></div></td></tr></table></div><!--[if mso | IE]></td><td style=\"vertical-align:middle;width:276px;\" ><![endif]--><div class=\"mj-column-per-50 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:middle; width=100%><tr><td class=\"hide-on-mobile img-container\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=center><div style=\"margin:0 auto;max-width:248px;\"><a href=https://c.gle/ANiao5ruaE1mHlyq9BHEL2KPRI-6u36lNn73uq5A7Wu0h8ffYlUo6UNXDTvmhiqrgmgBp-ni7TGt7eXb8xf5kOs9DIr4YnSB7hE5QJnK2CoqXtxV4zvzvFCYvBzBbKiQYcPJ0NTaG3sGJ1zeGSX9rZuOCAQzhBJdcgmD8SfrLtpVhJcw7uc4TLtV-4rumdxQkGcdwz1WEXWGkQ target=_blank style=\"text-decoration: none; color: #0B57D0;\"><img alt=\"An illustration of a team working in a shared space.\" height=auto width=248 src=https://gstatic.com/growthlab/api/nUXJ7fhGcNgb5qjijiP1cmA7JIhfY2ExjcseAMRe.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></a></div></td></tr></table></div><!--[if mso | IE]></td></tr></table></td></tr></table><![endif]--></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%; class=section><tr><td align=center><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"Margin:0px auto;border-radius:0px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%;border-radius:0px;><tr><td style=\"border-radius:0px;font-size:0px;padding:2px 8px 2px 8px;text-align:center;vertical-align:top;\" class=block-grid><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:584px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:top; width=100%><tr><td><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:#FFFFFF;width:100%;border-radius:2px; class=section><tr><td align=center style=\"border-radius:2px;font-size:0px;text-align:center;vertical-align:top;padding:24px 8px 24px 24px;word-break:break-word;\"><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:middle;width:276px;\" ><![endif]--><div class=\"mj-column-per-50 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:middle; width=100%><tr><td class=text-container style=\"font-size:0px;padding:8px 0px 8px 8px;word-break:break-word;text-align:left;\"><div class=links-0068A5><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:14px;letter-spacing:none;line-height:1.50;text-align:left;mso-line-height-alt:1.313em;color:#1F1F1F;\"><p style=\"margin: 0 0;\"><strong>See real-time edits</strong></p><p style=\"margin: 0 0;\">With real-time presence, you can see who’s editing office files stored in Drive.</p></div></div></td></tr><tr><td valign=middle class=button-container style=\"font-size:0px;padding:8px 8px 8px 8px;word-break:break-word;text-align:left;\"><div><!--[if mso]><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\" class=\"font-size-14px\"><tr><td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://c.gle/ANiao5q-AOWlzYhK_-FHmUrRioJ2B2gHlVoe_Hc67-nJemZG2BWa0aYNx-Fapokgqolv123aDy8E5ZABUSBSpnMVVRfnaZoWmAVEKnOgqlfEgHEXp4Flqbd6iA1SswadIn9cu8IwhMAI99r-Dw8RG7TkFxLYAc3klFsFVQ8J34MsZOrTAXgbZOfyT43NdLbiU9eS2nKLXwgWIwYlyZrmc6GPaaA9Ly-I7ymZXc7hwVQDYLOOezU9Y1ZcpfQ0ELmgaNYIx7hczqLuDq7kdMq38xi2MkfoilYjOs4sYA8\" fillcolor=\"#FFFFFF\" arcsize=\"116%\" style=\"v-text-anchor:middle;width:88pt;height:32.25pt;\" strokecolor=\"#747775\" strokeweight=\"0.75pt\" ><w:anchorlock/><a:textbox inset=\"24px,0,24px,0\"><span style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=https://c.gle/ANiao5q-AOWlzYhK_-FHmUrRioJ2B2gHlVoe_Hc67-nJemZG2BWa0aYNx-Fapokgqolv123aDy8E5ZABUSBSpnMVVRfnaZoWmAVEKnOgqlfEgHEXp4Flqbd6iA1SswadIn9cu8IwhMAI99r-Dw8RG7TkFxLYAc3klFsFVQ8J34MsZOrTAXgbZOfyT43NdLbiU9eS2nKLXwgWIwYlyZrmc6GPaaA9Ly-I7ymZXc7hwVQDYLOOezU9Y1ZcpfQ0ELmgaNYIx7hczqLuDq7kdMq38xi2MkfoilYjOs4sYA8 style=\"display: inline-block; background: #FFFFFF; color: #0B57D0; font-family: \'Google Sans Text\', Arial, sans-serif; font-size: 14px; font-weight: normal; line-height: 1.2; margin: 0; text-align: left; text-decoration: none; text-transform: none; padding: 15px 24px 15px 24px; mso-padding-alt: 0px; border-radius: 50px; border-left: 1px solid #747775; border-right: 1px solid #747775; border-top: 1px solid #747775; border-bottom: 1px solid #747775; mso-border-alt: none; box-sizing: border-box;\" target=_blank width=104 class=font-size-14px>Learn more </a><!--[if mso]></span></a:textbox></a:roundrect></td></tr></table><![endif]--></div></td></tr></table></div><!--[if mso | IE]></td><td style=\"vertical-align:middle;width:276px;\" ><![endif]--><div class=\"mj-column-per-50 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:middle; width=100%><tr><td class=\"hide-on-mobile img-container\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=center><div style=\"margin:0 auto;max-width:220px;\"><a href=https://c.gle/ANiao5ovZHYYjYkjsEWxfbi23Crf24s3wiRlrUgpRwozNgL4FimU-tzScWmBqudauJdVZS63yi2L33InK1sx_Zq7qsIcA4sJ-z89B_T28XQxIRDFhf7pfwQ117Y2FVlEPMJusgCV3uuutbScw0Jm1b9j2WgPDqZKee2a35IjW6IOXLVuuOP4rOGDENvWJIoAFrK6mpSNuVVmvxgztOt7tLekilAplrKDE5q1RFKIycqVtDATuE6JJ_OxrHVedTAXLsxYxjSdh4lhAHxegC8cLTwyBXJ_ArCJ6NXc64U target=_blank style=\"text-decoration: none; color: #0B57D0;\"><img alt=\"An illustration of someone observing edits in real time.\" height=auto width=220 src=https://gstatic.com/growthlab/api/G1iVdXyjoObsIga9993VoA8pf5PZkJ3o6m3feRp7.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></a></div></td></tr></table></div><!--[if mso | IE]></td></tr></table></td></tr></table><![endif]--></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%; class=section><tr><td align=center><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"Margin:0px auto;border-radius:0px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%;border-radius:0px;><tr><td style=\"border-radius:0px;font-size:0px;padding:2px 8px 2px 8px;text-align:center;vertical-align:top;\" class=block-grid><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:584px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:top; width=100%><tr><td><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=\"background-color:#FFFFFF;width:100%;border-radius:2px 2px 24px 24px;\" class=section><tr><td align=center style=\"border-radius:2px 2px 24px 24px;font-size:0px;text-align:center;vertical-align:top;padding:24px 8px 24px 24px;word-break:break-word;\"><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:middle;width:276px;\" ><![endif]--><div class=\"mj-column-per-50 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:middle; width=100%><tr><td class=text-container style=\"font-size:0px;padding:8px 0px 8px 8px;word-break:break-word;text-align:left;\"><div class=links-0068A5><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:14px;letter-spacing:none;line-height:1.50;text-align:left;mso-line-height-alt:1.313em;color:#1F1F1F;\"><p style=\"margin: 0 0;\"><strong>Comment on any file</strong></p><p style=\"margin: 0 0;\">Add comments and assign tasks to your collaborators directly in a Google Doc.</p></div></div></td></tr><tr><td valign=middle class=button-container style=\"font-size:0px;padding:8px 8px 8px 8px;word-break:break-word;text-align:left;\"><div><!--[if mso]><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\" class=\"font-size-14px\"><tr><td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://c.gle/ANiao5p5BSW471_BNn19DVwqEcvNfjTHhd4uQGKxo5S5Hqfd3dfh-yKmFVUEavNjGu4p4uNICmTrN14ZUzGUeuDooLUSmFbA08NiBZMhwiIyobJjpKP1BaLc921iQTXurJa3GWgSX4V5QA8VT2fDibCnTnqimciTpomM0MmwlEtWPt1WSb7ptNUmDxpSMZAxNOrOHQsQGT2_C45c7JHPuX39n4RUvIAH7XMAZgxKQStO0Q\" fillcolor=\"#FFFFFF\" arcsize=\"116%\" style=\"v-text-anchor:middle;width:88pt;height:32.25pt;\" strokecolor=\"#747775\" strokeweight=\"0.75pt\" ><w:anchorlock/><a:textbox inset=\"24px,0,24px,0\"><span style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=https://c.gle/ANiao5p5BSW471_BNn19DVwqEcvNfjTHhd4uQGKxo5S5Hqfd3dfh-yKmFVUEavNjGu4p4uNICmTrN14ZUzGUeuDooLUSmFbA08NiBZMhwiIyobJjpKP1BaLc921iQTXurJa3GWgSX4V5QA8VT2fDibCnTnqimciTpomM0MmwlEtWPt1WSb7ptNUmDxpSMZAxNOrOHQsQGT2_C45c7JHPuX39n4RUvIAH7XMAZgxKQStO0Q style=\"display: inline-block; background: #FFFFFF; color: #0B57D0; font-family: \'Google Sans Text\', Arial, sans-serif; font-size: 14px; font-weight: normal; line-height: 1.2; margin: 0; text-align: left; text-decoration: none; text-transform: none; padding: 15px 24px 15px 24px; mso-padding-alt: 0px; border-radius: 50px; border-left: 1px solid #747775; border-right: 1px solid #747775; border-top: 1px solid #747775; border-bottom: 1px solid #747775; mso-border-alt: none; box-sizing: border-box;\" target=_blank width=104 class=font-size-14px>Learn more </a><!--[if mso]></span></a:textbox></a:roundrect></td></tr></table><![endif]--></div></td></tr></table></div><!--[if mso | IE]></td><td style=\"vertical-align:middle;width:276px;\" ><![endif]--><div class=\"mj-column-per-50 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:middle; width=100%><tr><td class=\"hide-on-mobile img-container\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=center><div style=\"margin:0 auto;max-width:220px;\"><a href=https://c.gle/ANiao5p9gs9jOo4eCynVQL_mikHSyQ5LjDc4CiP61qM533XCgVAmurWWOC_VIHn-r2n_cQ97FyN5VMLRH3Wv1vXhpcmAkZpqG6hNbzLs2GfmMK7SpBeweN7N-GMHTCQ643EVMg1cifd85NUyFMOpLqVJHwHiGlCYGf9wG0WtVZ6rKwR27bCmxLiu3euHsO8ywxBtQRZ_CFDm5fpPltpNlys2RuHyTJPTniU2eEIGa9e73w target=_blank style=\"text-decoration: none; color: #0B57D0;\"><img alt=\"An illustration of two collaborators making comments and assigning tasks.\" height=auto width=220 src=https://gstatic.com/growthlab/api/1kmah3cWuqgy62FvUi8yKafxcSNLI98XF7DEXWM8.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></a></div></td></tr></table></div><!--[if mso | IE]></td></tr></table></td></tr></table><![endif]--></td></tr></table></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:16px;height:16px;mso-line-height-alt:16px;>&nbsp;</div></td></tr><tr><td valign=middle class=\"button-highlight button-container\" style=\"transition: 0.3s; font-size: 0px; padding: 9px 9px 9px 8px; word-break: break-word; text-align: center;\" align=center><div><!--[if mso]><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\" class=\"font-size-14px\"><tr><td align=\"center\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://c.gle/ANiao5qXUin8yuGKWewC66o38dFy0_vtqhymUlowAJWahzNaQnRNUPlLKdYfyAaBiX2kL0QlDibQVb8v3Expctjku_IhvSr3kEuCJ3pB9uw4l8WpiBcsvvZj7-baOURPitVYun8Q4uCo3CAKPfC5mfgaUdl03fdB_3rjGNCe\" fillcolor=\"#C2E7FF\" arcsize=\"109%\" style=\"v-text-anchor:middle;width:170.25pt;height:34.5pt;\" stroke=\"f\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=https://c.gle/ANiao5qXUin8yuGKWewC66o38dFy0_vtqhymUlowAJWahzNaQnRNUPlLKdYfyAaBiX2kL0QlDibQVb8v3Expctjku_IhvSr3kEuCJ3pB9uw4l8WpiBcsvvZj7-baOURPitVYun8Q4uCo3CAKPfC5mfgaUdl03fdB_3rjGNCe style=\"display: inline-block; background: #C2E7FF; color: #001D35; font-family: \'Google Sans Text\', Arial, sans-serif; font-size: 14px; font-weight: 500; line-height: 1.00; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 17px 24px 17px 24px; mso-padding-alt: 0px; border-radius: 50px; mso-border-alt: none; box-sizing: border-box;\" target=_blank width=227 class=font-size-14px><strong>View all recommendations</strong> </a><!--[if mso]></center></a:textbox></a:roundrect></td></tr></table><![endif]--></div></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%; class=section><tr><td align=center><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"background:transparent;background-color:transparent;Margin:0px auto;border-radius:0px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:transparent;width:100%;border-radius:0px;><tr><td style=\"border-radius:0px;font-size:0px;padding:16px 0px 36px 0px;text-align:center;vertical-align:top;\" class=block-grid><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=background-color:transparent;line-height:0;font-size:0;direction:ltr;><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:600px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:top; width=100%><tr><td class=text-container style=\"font-size:0px;padding:4px 8px 4px 8px;word-break:break-word;text-align:center;\"><div class=links-0068A5-underline><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:14px;letter-spacing:none;line-height:1.5;text-align:center;mso-line-height-alt:1.188em;color:#1F1F1F;\" class=\"mso-font-size-16px font-size-16px\"><p style=\"margin: 0 0;\">See you online,&nbsp;<br><br>The Google Workspace Team&nbsp;</p></div></div></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:24px;height:24px;mso-line-height-alt:24px;>&nbsp;</div></td></tr><tr><td class=img-container style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><div style=\"margin:0 auto;\"><img alt height=auto width=600 src=https://gstatic.com/growthlab/api/dwVmOYBf8dO1AVC2sUZ7CQlhGFk2hUqVuHiZpVgE.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></div></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:24px;height:24px;mso-line-height-alt:24px;>&nbsp;</div></td></tr><tr><td class=img-container style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:center;\"><div style=\"margin:0 auto;max-width:180px;\"><img alt=\"\" height=auto width=180 src=https://gstatic.com/growthlab/api/qKZRzO3MC3UgATELdQY9rmtE6niVyqlNrezhCPIs.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></div></td></tr><tr><td class=text-container style=\"font-size:0px;padding:10px 25px 10px 25px;word-break:break-word;text-align:center;\"><div class=links-1A73E8><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:12px;letter-spacing:0px;line-height:1.50;text-align:center;mso-line-height-alt:1.125em;color:#5F6368;\"><p style=\"margin: 0 0;\">© 2025 <a style=pointer-events:none;cursor:text;text-decoration:none;color:#5F6368;font-size:12px;>Google LLC 1600 Amphitheatre Parkway, Mountain View, CA 94043</a></p><p style=\"margin: 0 0;\">&nbsp;</p><p style=\"margin: 0 0;\">This email was sent to rick@mavrix.one because you indicated that you’d like to receive updates and tips about your Google Workspace account. If you don’t want to receive such emails in the future, please <a href=https://myaccount.google.com/communication-preferences/unsubscribe/gt/ANiao5oxry1L3bmbAdf2Nbr7MZyVyNteYo4WhCMWWL6c8ranTRgQwgaRvZUa1B9grNZIIG3GZdJNpmhqFRCXq9ERL4mGcPRAZPmm1Vcktiv3i7B8iA8bmfURYXNj_aK2aNg1KjTJK7ltCTnLVmHcrArsJmf4tfaRRDqrEdtdd92AO4GiN26aioTrIotK1S7zKVbZdpy9bfoLWNgUGgI8fLwz29L0xLcRzLdrLF8?utm_source=gm&amp;utm_medium=email&amp;auto=true target=_blank rel=noopener style=\"color: #1967D2; text-decoration: underline;\">unsubscribe here</a>. You can also change your preferences on your account’s profile page by logging in at <a href=https://c.gle/ANiao5rpuxvahMjHvGDyWMK2GJeBsH_iVmvCr-w1cU16kNWHMSP7I4ydoBKSclg8ADHpjWI9l40EhTBoIXldVWpzH7MDdIdj5OpTfB5GLwMX2wwHzDkqwKvDLorXDh410Q target=_blank rel=noopener data-k-tracking-label=Admin style=\"color: rgb(25, 103, 210); text-decoration: underline;\">admin.google.com</a>.</p></div></div></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></div> <!--[if mso ]> <table id=\"email-container\" style=\"width:600px;line-height:0;font-size:0;height:0;overflow:hidden;border-collapse:collapse\" width=\"600\"><img alt=\"\" height=\"1\" src=\"https://notifications.google.com/g/img/ANiao5r8ECVD2OI0LXM6muLeVk3_znw5EkjJjzNNoMoz9Ox8IK6Erx2j6Dk5ET5yJa7ejs_A-C5JRmJldZDYJrMK8xmJJK5IAzS6ncbH9LnYZhcawNK0Dv2s4jWKLhD67hptBPDbAg.gif\" width=\"3\"></table><![endif]--> <!--[if !mso]><!--> <div style=width:auto;line-height:0;font-size:0;height:0;overflow:hidden;border-collapse:collapse><img alt=\"\" height=1 src=https://notifications.google.com/g/img/ANiao5r8ECVD2OI0LXM6muLeVk3_znw5EkjJjzNNoMoz9Ox8IK6Erx2j6Dk5ET5yJa7ejs_A-C5JRmJldZDYJrMK8xmJJK5IAzS6ncbH9LnYZhcawNK0Dv2s4jWKLhD67hptBPDbAg.gif width=3></div> <!--<![endif]--> </div> </body></html>','  Google Workspace  \r\n<https://c.gle/ANiao5o1oe0VewfwxlgN6G-dMy4qaoE2RDgMzfBe5nX-gTXS0-P8OKabpa5u0pcZkEOBd09-d77lltB_aGE8nhcbDxkibZKJBPOZJaxRt89AHVBp_Wgvfhl_QScQKzwrB6OmRK4zyYf-X40kPCzBV6CB3DyZ>\r\n\r\nGWS Icon Cluster  \r\n<https://c.gle/ANiao5oDxLYcdjYKRptl1BSbkTcYpIa3Tji5YMwVLTJDGLnJ2J5ixga0Vk-twcrdnRteqK5HryJEIGu56ale5ZZcAtbV2y_c8eadp7GIedQYaN154hFDEN7iHU6hFenw9guGV0oFUGPufO0alsLwOpJjw2E>\r\n\r\nAchieve more together\r\n\r\nGoogle Workspace offers intuitive tools to streamline communication,  \r\nsimplify project management, and increase overall efficiency for teams of  \r\nany size.\r\n\r\nDiscover Google Workspace  \r\n<https://c.gle/ANiao5oXAep8y4VIHqfXeyGFL0U_ZyE3RZ7ZGqhEaFrD5c91ZIiidS9sgj90uhm0HAC8g2GEdJJv6z6Qtxk8-bLV0ACdYyU2NLxpUIVI66PKGMd3Yvi6cW6r2nosemWmIUigv_wqMcwopPAO0oFTqIsO0hfa7_kQcCcga_g>\r\n\r\nHi Rick,\r\n\r\nWant to eliminate communication bottlenecks, share information seamlessly,  \r\nand reach milestones with more speed? Here are some tips to make this kind  \r\nof transformative collaboration a reality.\r\n\r\nOrganize team files in a shared space\r\n\r\nUse shared drives to store your team’s work in secure, easy-to-manage  \r\nshared spaces.\r\n\r\nCreate a shared drive  \r\n<https://c.gle/ANiao5qbZkitskKM_axt7fNAPiNUms6SQlPJPbX_c964AQCu2vVgmv5cMgb5deq51xmJMhluPL_IAH4EzNBRYeYvjWxoMUS12sV-s9Jf0l-yVxqbLuJ5v7SALUiT9FU2sGXujoF57IvcTYP3QFilV8_AdyevyQE68_Jxo6fmPTsFTwo8jo2GdvPlgwAAWFgPMiwRSFoBUz8NgRgAMKLqEQ>\r\n\r\nAn illustration of a team working in a shared space.  \r\n<https://c.gle/ANiao5qb1VRkouob7SXjjvHlpBiZ-ilHYTLFcE16oxHcOwRIC_h0Y3XyIWM0-U7MCHz3-MJ3Wgk06HYP1-NAiIhNste-K-c6wWuIpaFlNd85kJ-F1evNU9cQPVksW7_TeZslMGYakVjG7K-ii-QxzZzSkui95vaRlkCLyYgH7QqmjqCkgj0bkrO3sISg2F_ZXAShT6WCeuU>\r\n\r\nSee real-time edits\r\n\r\nWith real-time presence, you can see who’s editing office files stored in  \r\nDrive.\r\n\r\nLearn more  \r\n<https://c.gle/ANiao5rViufkte7AfQgqGh0c3-79rg1ReOnS-ev0EyFPQmGvJqk1yV5XEMwUYyDXbMAFH1XWSYHPmj3HiiSb_HqR7L8rF67d0GXfLbxz265WopTyLYC-3P8P0P4yFhft627ULxjmLhcmeQMEuDv8HGZXnbGmmqCsp39RHp_cDA8VSD8kI7ykie-YzgzpTat3M1ZLbTGTiH0jhJA0KZMopWeY4mluVCsu59WI9MzEP-fztA8TVsF9xlZxx-kLCmMSNqgS8LrM-XAejeUfxRu8Nq8eXnfppG5foVAI>\r\n\r\nAn illustration of someone observing edits in real time.  \r\n<https://c.gle/ANiao5rOhH3WHL15qaWbGPjT60L5VrPhzMk3INQGc8N_VbL34CG2DrLLi4CfGmJ_VIVjfzGVAew7AmZlsy1QsXK9_yaNVMwDko4axS8jdqniqsTKc0LNAp9b6XLoRHG-V6pnzAYiluJ0JxVduraKRSI5K99-CtW8zachxnbaTb-HqH-k1V3FqpqYrt57FohpbOUuN88djSWA78YIJHI9U7dfOfP-idsFoai9e7aLTZ0lF7RTspwbWc1DKVYYGNxW9QbUUISFGYm4JrwZb60kLIwS2VVnu9-i2jpB>\r\n\r\nComment on any file\r\n\r\nAdd comments and assign tasks to your collaborators directly in a Google  \r\nDoc.\r\n\r\nLearn more  \r\n<https://c.gle/ANiao5phBp3wJFJZD6y-oFh74wqPlzvomBxatficnsu1Qe6Lmzy1uHs28fMvUUCdwdhGec5MzunRHKGEe2p-juagzB8ZqybiBe7-qAGislITJ8fDWTbnvp_yiRaV_3-PeCqhXCDD36nzyD10JafKnNy926WMIRdO0GljHPlsInMRF0FlGSK-pmt-Ob3fzscL4vn7yth7GV18krep5zycjgmF-SctPPVafYTlj6OGQsg>\r\n\r\nAn illustration of two collaborators making comments and assigning tasks.  \r\n<https://c.gle/ANiao5o5ZM8x-QMwQXDcVJ2IN_LU1oA12FN8z1o2vHtrNs-J_mEOY_2KDB-vWtsSNJRNOnhxDXKXyCUrL-2ZputdmDKdBCdBZbJyXQ3FL73ItZHfSFEjfWuiA6-kihONYB1trcs_Pvz_dDX3EkQysPGXogYhIu_aNhgIezPdWH5ij-GuwBr7HLTUyXKib0RnEhzzvYPGKp5UKHd5oqG7SyFJjOFICT3aAjxap7p-uzE>\r\n\r\nView all recommendations  \r\n<https://c.gle/ANiao5pSFaPNqMx-K1iT8k7H0l7odm4BHSPrXdCimlEXAE-swuZ18aNpa-0wzl9NGyReyuV1IV_z99gEDU2CfAbQo5pf8XSiH9eRgWq0vjTtw0FHLdlTx6q5SVl1bq-Yb-gfK5Rn7HMxLNWPsqEQjNCfVr2aY1a8lBfKyg>\r\n\r\nSee you online,\r\n\r\nThe Google Workspace Team\r\n\r\n© 2025 Google LLC 1600 Amphitheatre Parkway, Mountain View, CA 94043\r\n\r\nThis email was sent to rick@mavrix.one because you indicated that you’d  \r\nlike to receive updates and tips about your Google Workspace account. If  \r\nyou don’t want to receive such emails in the future, please unsubscribe  \r\nhere  \r\n<https://myaccount.google.com/communication-preferences/unsubscribe/gt/ANiao5qJ82NAT42VeVLXxh60F2eIgyosGLYSVS1f9TkljY5m_EJBQYFHMusFrraCS-9XVjijYo2AWOY7obH8Mm6SmcyBE3EhmUmbdUZN2_I7s0I75xJFOBVR85VwRW3IjcLka8kvoi7zdf6e1S0tvz8tyLdxGeX4LHaPpe4icnistDckPPsx-ozpTfHeTXlMAzhzKUcTl8vxizRzCnoClXZp529LXJwZVD-j?utm_source=gm&utm_medium=email&auto=true>.  \r\nYou can also change your preferences on your account’s profile page by  \r\nlogging in at admin.google.com  \r\n<https://c.gle/ANiao5rQwLB3qoxz_cXdTe09ESLyztaQCU6QDBh2MXKz8aREaYBTJ310fIk9MaRMtV6Un2SzkwNEB58yBTP4cgC0EtNlrtC5lO38p1LilYbuD7ADRB4vzDnQO2z_BgA>.\r\n',0,0,0,0,0,0,'2025-07-17 17:27:26','2025-12-09 19:14:01','2025-12-09 19:14:01','2025-12-09 19:14:01',NULL,NULL,NULL),
(481,4,'<a35fa53aa579e76bb7518873604a6b71fe57a52b-20312606-111497052@google.com>',NULL,NULL,'Your recommendations: Easily stay in sync with your team','workspace-noreply@google.com','The Google Workspace Team','<!doctype html><html lang=en xmlns=http://www.w3.org/1999/xhtml xmlns:v=urn:schemas-microsoft-com:vml xmlns:o=urn:schemas-microsoft-com:office:office><head><title>Discover Google Workspace</title><!--[if !mso]><!-- --><meta http-equiv=X-UA-Compatible content=IE=edge><!--<![endif]--><meta http-equiv=Content-Type content=\"text/html; charset=UTF-8\"><meta name=viewport content=width=device-width,initial-scale=1><style type=text/css>#outlook a { padding:0; } body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; } table { border-spacing:0;} img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; } p { display:block;margin:13px 0; }</style><!--[if mso]> <xml> <o:OfficeDocumentSettings> <o:AllowPNG/> <o:PixelsPerInch>96</o:PixelsPerInch> </o:OfficeDocumentSettings> </xml> <style type=\"text/css\"> table { border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt; } .mj-outlook-group-fix { width:100% !important; } .mso-button-dark-mode a {background: transparent !important;} </style> <![endif]--><!--[if !mso]><!--><link href=https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,700 rel=stylesheet type=text/css><link href=https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700|Google+Sans:400,500,700|Google+Sans+Display:400,500,700|Open+Sans:400,500,700 rel=stylesheet type=text/css><link href=https://client-data.knak.io/production/company_data/608c388d87e9e/custom-fonts/62b086f5c0cbf/fonts.css rel=stylesheet type=text/css><style type=text/css>@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,700); @import url(https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700|Google+Sans:400,500,700|Google+Sans+Display:400,500,700|Open+Sans:400,500,700); @import url(https://client-data.knak.io/production/company_data/608c388d87e9e/custom-fonts/62b086f5c0cbf/fonts.css);</style><!--<![endif]--><style type=text/css>@media only screen and (min-width:950px) { .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } }</style><style type=text/css>u ~ div .img-container img + div { display: none } .links-1A73E8-bold a { color: #1A73E8; text-decoration: none; font-weight: bold; } #body #main [x-apple-data-detectors-type] { color: inherit !important; -webkit-text-decoration-color: inherit !important; text-decoration: inherit !important; font-weight: inherit !important; } .links-0068A5-underline a { color: #0068A5; text-decoration: underline; } .links-0068A5 a { color: #0068A5; text-decoration: none; } .links-1A73E8 a { color: #1A73E8; text-decoration: none; } @media only screen and (min-width:950px) { .max-width-214px { max-width: 214px !important} .font-size-32px { font-size: 32px !important} .font-size-16px { font-size: 16px !important} .font-size-14px { font-size: 14px !important} .img-full-width { max-width: 100% !important} }</style><style type=text/css>p{margin: 0 0;}ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #0B57D0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}.button-highlight{transition: 0.3s;}.button-highlight:hover{filter: brightness(1.5);}@media only screen and (min-width: 950px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}</style><!--[if mso]> <style> .hide-on-mobile {display:block !important} </style> <![endif]--><!--[if mso]> <style> .mso-font-size-32px { font-size: 32px !important; } .mso-font-size-16px { font-size: 16px !important; } .font-size-14px { font-size: 14px !important} </style> <![endif]--><!--[if gte mso 16]> <style> .mso-text-white a { mso-style-textfill-type: gradient; mso-style-textfill-fill-gradientfill-stoplist: \"0 \\#FFFFFF 0 100000\\,100000 \\#FFFFFF 0 100000\"; color: #000000 !important; } </style> <![endif]--><style>[class~=\"x_body\"] { width: 99.9% }</style></head><body style=word-spacing:normal;background-color:#F0F4F9; class=body id=body><!--[if !mso 9]><!--><div id=emailPreHeader style=\"display: none;\">Save time with streamlined connections.</div><div style=\"display: none;\">&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &nbsp;</div><!--<![endif]--><div style=\"background-color:#F0F4F9;background-position:center center;background-size:auto;background-repeat:repeat;\" id=main><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:transparent;width:100%; class=section><tr><td align=center><div role=presentation><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"background:transparent;background-color:transparent;Margin:0px auto;border-radius:0px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:transparent;width:100%;border-radius:0px;><tr><td style=border-radius:0px;font-size:0px;padding:0;text-align:center;vertical-align:top; class=block-grid><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:600px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=\"background-color:transparent;border-radius:0px;vertical-align:top;padding:5px 0px 5px 0px;\"><table border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:20px;height:20px;mso-line-height-alt:20px;>&nbsp;</div></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></div></td></tr></table><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:transparent;width:100%; class=section><tr><td align=center><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"background:transparent;background-color:transparent;Margin:0px auto;border-radius:24px 24px 0px 0px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=\"background-color:transparent;width:100%;border-radius:24px 24px 0px 0px;\"><tr><td style=\"border-radius:24px 24px 0px 0px;font-size:0px;padding:0px 8px 2px 8px;text-align:center;vertical-align:top;\" class=block-grid><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=background-color:transparent;line-height:0;font-size:0;direction:ltr;><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:584px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=\"background-color:#FFFFFF;border-radius:24px 24px 0px 0px;vertical-align:top;padding:24px 24px 24px 24px;\"><table border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td class=img-container style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><div style=\"margin:0 auto;max-width:214.4px;\" class=max-width-214px><a href=https://c.gle/ANiao5of1ACpdf_hZ0ja9uhAPp3fUpTxP6OhRLVJa78S4X6jAWqYcKn2mNkXG7vM1YUjdwgmFniZfaF9fK2iq-23vbisGbQCkamF9QX0yzWunc0mFm6RBmKqkQ_DjNWzF-tVNhJBa-mSsr8md8rkCsjPw4bNBDg target=_blank style=\"text-decoration: none; color: #0B57D0;\"><img alt=\"Google Workspace\" height=auto width=214 src=https://gstatic.com/growthlab/api/qKZRzO3MC3UgATELdQY9rmtE6niVyqlNrezhCPIs.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></a></div></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:transparent;width:100%; class=section><tr><td align=center><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"background:transparent;background-color:transparent;Margin:0px auto;border-radius:24px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:transparent;width:100%;border-radius:24px;><tr><td style=\"border-radius:24px;font-size:0px;padding:2px 8px 2px 8px;text-align:center;vertical-align:top;\" class=block-grid><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=background-color:transparent;line-height:0;font-size:0;direction:ltr;><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:584px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=\"background-color:#FFFFFF;border-radius:2px;vertical-align:top;padding:24px 24px 24px 24px;\"><table border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td class=img-container style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><div style=\"margin:0 auto;max-width:200px;\"><a href=https://c.gle/ANiao5pcjPumOwxhXSxA3RhfCBIQbsvEhsgBsH-dkQaIUz5la1bbeELdRUVhiipeZDoZDY5dYTDOARGZZYgUGnOo7lOPARu_bLDrQJ7Zc8DWLmp6BH0oIkWdm2L3M7_RAybvPcBCaS8t5CZbwI6ea1I-mFjTlQ target=_blank style=\"text-decoration: none;\"><img alt=\"GWS Icon Cluster\" height=auto width=200 src=https://gstatic.com/growthlab/api/mtPtjXZpLNbmuRae04ZkwdUqXvZB1JK4lHsv0jrz.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></a></div></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:8px;height:8px;mso-line-height-alt:8px;>&nbsp;</div></td></tr><tr><td class=text-container style=\"font-size:0px;padding:8px 8px 8px 8px;word-break:break-word;text-align:center;\"><div class=links-1A73E8-bold><div style=\"font-family:\'Google Sans\', \'Open Sans\', Arial, sans-serif;font-size:24px;font-weight:700;letter-spacing:none;line-height:1.2;text-align:center;mso-line-height-alt:2.375em;color:#1F1F1F;\" class=\"mso-font-size-32px font-size-32px\"><p style=\"margin: 0 0;\">More connected than ever before</p></div></div></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:8px;height:8px;mso-line-height-alt:8px;>&nbsp;</div></td></tr><tr><td class=text-container style=\"font-size:0px;padding:10px 8px 10px 8px;word-break:break-word;text-align:center;\"><div class=links-0068A5-underline><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:14px;letter-spacing:none;line-height:1.50;text-align:center;mso-line-height-alt:1.5em;color:#1F1F1F;\" class=\"mso-font-size-16px font-size-16px\"><p style=\"margin: 0 0;\">Google Workspace breaks down barriers, bringing teams together seamlessly across the globe for real-time collaboration and connection.</p></div></div></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:8px;height:8px;mso-line-height-alt:8px;>&nbsp;</div></td></tr><tr><td valign=middle class=\"button-highlight button-container\" style=\"transition: 0.3s; font-size: 0px; padding: 9px 9px 9px 8px; word-break: break-word; text-align: center;\" align=center><div><!--[if mso]><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\" class=\"font-size-14px\"><tr><td align=\"center\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://c.gle/ANiao5oNaYyvjBXQ4RV0-a4HuvVS4OjAnnVxHv3nfiIRN1kfSozyUicZszuLY06WDJf_sL5cXIMn-TgnPWlXamvJi5rd7MjpwBxrw3xai9mhMoNI-Vztr1wpVuK7Zlu0BjtjGshSfSX-KFQv8m_57GQHaT-F2EsFYRmtBqzNJA\" fillcolor=\"#0B57D0\" arcsize=\"109%\" style=\"v-text-anchor:middle;width:179.25pt;height:34.5pt;\" stroke=\"f\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\" class=\"mso-text-white\"><![endif]--> <a href=https://c.gle/ANiao5oNaYyvjBXQ4RV0-a4HuvVS4OjAnnVxHv3nfiIRN1kfSozyUicZszuLY06WDJf_sL5cXIMn-TgnPWlXamvJi5rd7MjpwBxrw3xai9mhMoNI-Vztr1wpVuK7Zlu0BjtjGshSfSX-KFQv8m_57GQHaT-F2EsFYRmtBqzNJA style=\"display: inline-block; background: #0B57D0; color: #ffffff; font-family: \'Google Sans Text\', Arial, sans-serif; font-size: 14px; font-weight: 500; line-height: 1.00; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 17px 24px 17px 24px; mso-padding-alt: 0px; border-radius: 50px; mso-border-alt: none; box-sizing: border-box;\" target=_blank width=239 class=font-size-14px><strong>Discover Google Workspace</strong> </a><!--[if mso]></center></a:textbox></a:roundrect></td></tr></table><![endif]--></div></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:24px;height:24px;mso-line-height-alt:24px;>&nbsp;</div></td></tr><tr><td class=img-container style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><div style=\"margin:0 auto;max-width:536px;\" class=img-full-width><img alt height=auto width=536 src=https://gstatic.com/growthlab/api/dwVmOYBf8dO1AVC2sUZ7CQlhGFk2hUqVuHiZpVgE.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></div></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:24px;height:24px;mso-line-height-alt:24px;>&nbsp;</div></td></tr><tr><td class=text-container style=\"font-size:0px;padding:10px 8px 10px 8px;word-break:break-word;text-align:left;\"><div class=links-0068A5-underline><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:14px;letter-spacing:none;line-height:1.50;text-align:left;mso-line-height-alt:1.313em;color:#1F1F1F;\"><p style=\"margin: 0 0;\">Hi Rick,</p><p style=\"margin: 0 0;\">&nbsp;</p><p style=\"margin: 0 0;\">In a world of remote and hybrid work, staying connected is key. Google Workspace provides cloud-based solutions that enable you to access essential information and be more efficient.&nbsp;</p></div></div></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%; class=section><tr><td align=center><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"Margin:0px auto;border-radius:0px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%;border-radius:0px;><tr><td style=\"border-radius:0px;font-size:0px;padding:2px 8px 2px 8px;text-align:center;vertical-align:top;\" class=block-grid><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:584px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:top; width=100%><tr><td><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:#FFFFFF;width:100%;border-radius:2px; class=section><tr><td align=center style=\"border-radius:2px;font-size:0px;text-align:center;vertical-align:top;padding:24px 8px 24px 24px;word-break:break-word;\"><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:middle;width:276px;\" ><![endif]--><div class=\"mj-column-per-50 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:middle; width=100%><tr><td class=text-container style=\"font-size:0px;padding:8px 0px 8px 8px;word-break:break-word;text-align:left;\"><div class=links-0068A5><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:14px;letter-spacing:none;line-height:1.50;text-align:left;mso-line-height-alt:1.313em;color:#1F1F1F;\"><p style=\"margin: 0 0;\"><strong>Schedule an event</strong></p><p style=\"margin: 0 0;\">Spend less time planning and more time doing with seamlessly integrated calendars.</p></div></div></td></tr><tr><td valign=middle class=button-container style=\"font-size:0px;padding:8px 8px 8px 8px;word-break:break-word;text-align:left;\"><div><!--[if mso]><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\" class=\"font-size-14px\"><tr><td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://c.gle/ANiao5q6L-OD5wk_Mk5nH06RslvKY6Cmed2jfNkcymk_yijSFGf4wVDlyJQZVuFIsSUYn7bxfTiF4MAwxO9hpbyov3AueLBGn-N498ndn0L1hAytfy2qaaa78PWbSELvvxLnJeI7bwwAkWM\" fillcolor=\"#FFFFFF\" arcsize=\"116%\" style=\"v-text-anchor:middle;width:118pt;height:34.5pt;\" strokecolor=\"#747775\" strokeweight=\"0.75pt\" ><w:anchorlock/><a:textbox inset=\"24px,0,24px,0\"><span style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=https://c.gle/ANiao5q6L-OD5wk_Mk5nH06RslvKY6Cmed2jfNkcymk_yijSFGf4wVDlyJQZVuFIsSUYn7bxfTiF4MAwxO9hpbyov3AueLBGn-N498ndn0L1hAytfy2qaaa78PWbSELvvxLnJeI7bwwAkWM style=\"display: inline-block; background: #FFFFFF; color: #0B57D0; font-family: \'Google Sans Text\', Arial, sans-serif; font-size: 14px; font-weight: normal; line-height: 1.2; margin: 0; text-align: left; text-decoration: none; text-transform: none; padding: 15px 24px 15px 24px; mso-padding-alt: 0px; border-radius: 50px; border-left: 1px solid #747775; border-right: 1px solid #747775; border-top: 1px solid #747775; border-bottom: 1px solid #747775; mso-border-alt: none; box-sizing: border-box;\" target=_blank width=146 class=font-size-14px><span style=\"font-size: 14px; font-weight: 400;\">Open Calendar</span> </a><!--[if mso]></span></a:textbox></a:roundrect></td></tr></table><![endif]--></div></td></tr></table></div><!--[if mso | IE]></td><td style=\"vertical-align:top;width:276px;\" ><![endif]--><div class=\"mj-column-per-50 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:top; width=100%><tr><td class=\"hide-on-mobile img-container\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=center><div style=\"margin:0 auto;max-width:220px;\"><a href=https://c.gle/ANiao5qUF0tz--az9UkTnqF7BcemE9cj0NPT4ObeUGd9h-MLuSKvfgfn4RJb90JfpkP93hGEzxssvfR469ALXbd4UVCABhl3wInDeNmQX4_Qu2xmbDDf5PeBLleVrwdNW_hLQZkku5Vi target=_blank style=\"text-decoration: none; color: #0B57D0;\"><img alt=\"An illustration of two integrated calendars.\" height=auto width=220 src=https://gstatic.com/growthlab/api/bqbU6sDxP1hx4v6f3WLjzFqixZLvlprWw1O2vpic.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></a></div></td></tr></table></div><!--[if mso | IE]></td></tr></table></td></tr></table><![endif]--></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%; class=section><tr><td align=center><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"Margin:0px auto;border-radius:0px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%;border-radius:0px;><tr><td style=\"border-radius:0px;font-size:0px;padding:2px 8px 2px 8px;text-align:center;vertical-align:top;\" class=block-grid><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:584px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:top; width=100%><tr><td><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:#FFFFFF;width:100%;border-radius:2px; class=section><tr><td align=center style=\"border-radius:2px;font-size:0px;text-align:center;vertical-align:top;padding:24px 8px 24px 24px;word-break:break-word;\"><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:middle;width:276px;\" ><![endif]--><div class=\"mj-column-per-50 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:middle; width=100%><tr><td class=text-container style=\"font-size:0px;padding:8px 0px 8px 8px;word-break:break-word;text-align:left;\"><div class=links-0068A5><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:14px;letter-spacing:none;line-height:1.50;text-align:left;mso-line-height-alt:1.313em;color:#1F1F1F;\"><p style=\"margin: 0 0;\"><strong>Start a meeting</strong></p><p style=\"margin: 0 0;\">Your Google Workspace plan unlocks larger meetings with noise cancellation, breakout rooms, polls, and meeting recordings.</p></div></div></td></tr><tr><td valign=middle class=button-container style=\"font-size:0px;padding:8px 8px 8px 8px;word-break:break-word;text-align:left;\"><div><!--[if mso]><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\" class=\"font-size-14px\"><tr><td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://c.gle/ANiao5pFeXljM1ZfwXeDJBrPZJYmStGkL_r6-S4Yq3XCOsu02zy1gNftrTtXDuz88VGR5IjF1gur7teN72J4VjOLrrAQYaxC-Si9cJy6d0YS9lRyXcG_ndy2EuLxJL2SAZbSo4g\" fillcolor=\"#FFFFFF\" arcsize=\"116%\" style=\"v-text-anchor:middle;width:108pt;height:34.5pt;\" strokecolor=\"#747775\" strokeweight=\"0.75pt\" ><w:anchorlock/><a:textbox inset=\"24px,0,24px,0\"><span style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=https://c.gle/ANiao5pFeXljM1ZfwXeDJBrPZJYmStGkL_r6-S4Yq3XCOsu02zy1gNftrTtXDuz88VGR5IjF1gur7teN72J4VjOLrrAQYaxC-Si9cJy6d0YS9lRyXcG_ndy2EuLxJL2SAZbSo4g style=\"display: inline-block; background: #FFFFFF; color: #0B57D0; font-family: \'Google Sans Text\', Arial, sans-serif; font-size: 14px; font-weight: normal; line-height: 1.2; margin: 0; text-align: left; text-decoration: none; text-transform: none; padding: 15px 24px 15px 24px; mso-padding-alt: 0px; border-radius: 50px; border-left: 1px solid #747775; border-right: 1px solid #747775; border-top: 1px solid #747775; border-bottom: 1px solid #747775; mso-border-alt: none; box-sizing: border-box;\" target=_blank width=133 class=font-size-14px><span style=\"font-size: 14px; font-weight: 400;\">New meeting</span> </a><!--[if mso]></span></a:textbox></a:roundrect></td></tr></table><![endif]--></div></td></tr></table></div><!--[if mso | IE]></td><td style=\"vertical-align:top;width:276px;\" ><![endif]--><div class=\"mj-column-per-50 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:top; width=100%><tr><td class=\"hide-on-mobile img-container\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=center><div style=\"margin:0 auto;max-width:248px;\"><a href=https://c.gle/ANiao5rgIZrA9w46PGeOdCvIJUKjPq5uQ5YNFGG4IjwctQhVkjNU2j7WEUjmZ4KNXA1M9TQFVRYDehFVZdtFOXgx6Tu0PHp238_n9GBTGfW8Xyxo5dmOAB7sFP9ilme-USVgckE target=_blank style=\"text-decoration: none; color: #0B57D0;\"><img alt=\"An illustration of two colleagues interacting in a Google Meet meeting.\" height=auto width=248 src=https://gstatic.com/growthlab/api/TKELQJEg5wpusPJnFpzXz84y2g3qoPM9M3C99x4q.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></a></div></td></tr></table></div><!--[if mso | IE]></td></tr></table></td></tr></table><![endif]--></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%; class=section><tr><td align=center><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"Margin:0px auto;border-radius:0px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%;border-radius:0px;><tr><td style=\"border-radius:0px;font-size:0px;padding:2px 8px 2px 8px;text-align:center;vertical-align:top;\" class=block-grid><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:584px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:top; width=100%><tr><td><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=\"background-color:#FFFFFF;width:100%;border-radius:2px 2px 24px 24px;\" class=section><tr><td align=center style=\"border-radius:2px 2px 24px 24px;font-size:0px;text-align:center;vertical-align:top;padding:24px 8px 24px 24px;word-break:break-word;\"><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:middle;width:276px;\" ><![endif]--><div class=\"mj-column-per-50 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:middle; width=100%><tr><td class=text-container style=\"font-size:0px;padding:8px 0px 8px 8px;word-break:break-word;text-align:left;\"><div class=links-0068A5><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:14px;letter-spacing:none;line-height:1.50;text-align:left;mso-line-height-alt:1.313em;color:#1F1F1F;\"><p style=\"margin: 0 0;\"><strong>Make meetings more collaborative</strong></p><p style=\"margin: 0 0;\">Polls, Q&amp;A and breakout rooms support participation and raise engagement.</p></div></div></td></tr><tr><td valign=middle class=button-container style=\"font-size:0px;padding:8px 8px 8px 8px;word-break:break-word;text-align:left;\"><div><!--[if mso]><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\" class=\"font-size-14px\"><tr><td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://c.gle/ANiao5o_nj_GLR2tNWJfR-4i7akQt8RxL0N3JP3SaaAHjdUE5xzSW0X2pFocv2m8p7C0vh2S-Anp45gPpOCR-jBCT3zWGpekAoBvvLGvlXfUd7r8_X5eR88RLkPczVm0hIGs7K037zKWGAT5Iz2lKHUazb_CHzms4z0HrmQ9w2NB7lJmNj0BtTlTAuYTzmk4NcmPPJXAVvEOC_NcASd9ui395wWxuIffYw\" fillcolor=\"#FFFFFF\" arcsize=\"116%\" style=\"v-text-anchor:middle;width:101pt;height:34.5pt;\" strokecolor=\"#747775\" strokeweight=\"0.75pt\" ><w:anchorlock/><a:textbox inset=\"24px,0,24px,0\"><span style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=https://c.gle/ANiao5o_nj_GLR2tNWJfR-4i7akQt8RxL0N3JP3SaaAHjdUE5xzSW0X2pFocv2m8p7C0vh2S-Anp45gPpOCR-jBCT3zWGpekAoBvvLGvlXfUd7r8_X5eR88RLkPczVm0hIGs7K037zKWGAT5Iz2lKHUazb_CHzms4z0HrmQ9w2NB7lJmNj0BtTlTAuYTzmk4NcmPPJXAVvEOC_NcASd9ui395wWxuIffYw style=\"display: inline-block; background: #FFFFFF; color: #0B57D0; font-family: \'Google Sans Text\', Arial, sans-serif; font-size: 14px; font-weight: normal; line-height: 1.2; margin: 0; text-align: left; text-decoration: none; text-transform: none; padding: 15px 24px 15px 24px; mso-padding-alt: 0px; border-radius: 50px; border-left: 1px solid #747775; border-right: 1px solid #747775; border-top: 1px solid #747775; border-bottom: 1px solid #747775; mso-border-alt: none; box-sizing: border-box;\" target=_blank width=123 class=font-size-14px><span style=\"font-size: 14px; font-weight: 400;\">Learn more</span> </a><!--[if mso]></span></a:textbox></a:roundrect></td></tr></table><![endif]--></div></td></tr></table></div><!--[if mso | IE]></td><td style=\"vertical-align:middle;width:276px;\" ><![endif]--><div class=\"mj-column-per-50 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:middle; width=100%><tr><td class=\"hide-on-mobile img-container\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=center><div style=\"margin:0 auto;max-width:248px;\"><a href=https://c.gle/ANiao5r1FISMfeae8JZYn-n3u2ZBv4pvQnlS9A1YyThGoWG0h7A3Ft1plaRLlteJzoF79iwym3DjfgT8B-y1p--6ahAj5G-oXY_NGNQzSa1fVsGshv8HDjrQPTOERAwnOIbX9hQoCKRYvGeYip4IXumCR_vAkrq97Gi5qU6YC8gdXnfY6Z5CRoqALmHKkrDKk3uZwxPeCx2iF18O2m30bhEF2ScDYec-OOA target=_blank style=\"text-decoration: none; color: #0B57D0;\"><img alt=\"An illustration of two colleagues engaging in an interactive poll.\" height=auto width=248 src=https://gstatic.com/growthlab/api/U13CQB8DoNsUhocMdBI9zerRiVjjxs4IuwhJJ5uX.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></a></div></td></tr></table></div><!--[if mso | IE]></td></tr></table></td></tr></table><![endif]--></td></tr></table></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:16px;height:16px;mso-line-height-alt:16px;>&nbsp;</div></td></tr><tr><td valign=middle class=\"button-highlight button-container\" style=\"transition: 0.3s; font-size: 0px; padding: 9px 9px 9px 8px; word-break: break-word; text-align: center;\" align=center><div><!--[if mso]><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\" class=\"font-size-14px\"><tr><td align=\"center\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://c.gle/ANiao5qmPJhcgmSssPhL1Pro5kr15L01clUH4Gj4vVwvR6bextX5Hx5OWk8Xk6qNjTfL-Kp_9vPKxFM9mFR-mXk43VRcQZfGb1veFzDZJkBDwLQKiEO3Va0vhqmsdIyAeFognpTpELNLwoEiMQ06MQ2RAnm2GdWgz7ORfXbh\" fillcolor=\"#C2E7FF\" arcsize=\"109%\" style=\"v-text-anchor:middle;width:170.25pt;height:34.5pt;\" stroke=\"f\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=https://c.gle/ANiao5qmPJhcgmSssPhL1Pro5kr15L01clUH4Gj4vVwvR6bextX5Hx5OWk8Xk6qNjTfL-Kp_9vPKxFM9mFR-mXk43VRcQZfGb1veFzDZJkBDwLQKiEO3Va0vhqmsdIyAeFognpTpELNLwoEiMQ06MQ2RAnm2GdWgz7ORfXbh style=\"display: inline-block; background: #C2E7FF; color: #001D35; font-family: \'Google Sans Text\', Arial, sans-serif; font-size: 14px; font-weight: 500; line-height: 1.00; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 17px 24px 17px 24px; mso-padding-alt: 0px; border-radius: 50px; mso-border-alt: none; box-sizing: border-box;\" target=_blank width=227 class=font-size-14px><strong>View all recommendations</strong> </a><!--[if mso]></center></a:textbox></a:roundrect></td></tr></table><![endif]--></div></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%; class=section><tr><td align=center><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"background:transparent;background-color:transparent;Margin:0px auto;border-radius:0px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:transparent;width:100%;border-radius:0px;><tr><td style=\"border-radius:0px;font-size:0px;padding:16px 0px 36px 0px;text-align:center;vertical-align:top;\" class=block-grid><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=background-color:transparent;line-height:0;font-size:0;direction:ltr;><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:600px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:top; width=100%><tr><td class=text-container style=\"font-size:0px;padding:4px 8px 4px 8px;word-break:break-word;text-align:center;\"><div class=links-0068A5-underline><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:14px;letter-spacing:none;line-height:1.5;text-align:center;mso-line-height-alt:1.188em;color:#1F1F1F;\" class=\"mso-font-size-16px font-size-16px\"><p style=\"margin: 0 0;\">See you online,&nbsp;<br><br>The Google Workspace Team&nbsp;</p></div></div></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:24px;height:24px;mso-line-height-alt:24px;>&nbsp;</div></td></tr><tr><td class=img-container style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><div style=\"margin:0 auto;\"><img alt height=auto width=600 src=https://gstatic.com/growthlab/api/dwVmOYBf8dO1AVC2sUZ7CQlhGFk2hUqVuHiZpVgE.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></div></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:24px;height:24px;mso-line-height-alt:24px;>&nbsp;</div></td></tr><tr><td class=img-container style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:center;\"><div style=\"margin:0 auto;max-width:180px;\"><img alt height=auto width=180 src=https://gstatic.com/growthlab/api/qKZRzO3MC3UgATELdQY9rmtE6niVyqlNrezhCPIs.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></div></td></tr><tr><td class=text-container style=\"font-size:0px;padding:10px 25px 10px 25px;word-break:break-word;text-align:center;\"><div class=links-1A73E8><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:12px;letter-spacing:0px;line-height:1.50;text-align:center;mso-line-height-alt:1.125em;color:#5F6368;\"><p style=\"margin: 0 0;\">© 2025 <a style=pointer-events:none;cursor:text;text-decoration:none;color:#5F6368;font-size:12px;>Google LLC 1600 Amphitheatre Parkway, Mountain View, CA 94043</a></p><p style=\"margin: 0 0;\">&nbsp;</p><p style=\"margin: 0 0;\">This email was sent to rick@mavrix.one because you indicated that you’d like to receive updates and tips about your Google Workspace account. If you don’t want to receive such emails in the future, please <a href=https://myaccount.google.com/communication-preferences/unsubscribe/gt/ANiao5qd6v9xuoZyTT_1rSTQSqgrpdg48kL5Z2az_XHt5kxhD_n4wrogCaJNAHegLKmxDq2SY6IPi03Gf8fL4p8b0jM3so7ukz2e24Nc1Y_v0cvZVm65h9AxwOv4RIVm7TcbcqcDvi-qA5s6aQLeLWzDOZ17SWQbnB-GbREcsxiXfWz3CCpyy0YHWgbvwzArTKVMbiV9EPDuDx_7OEyw-Psmm-GrKcsfc9jlFoc?utm_source=gm&amp;utm_medium=email&amp;auto=true target=_blank rel=noopener style=\"color: #1967D2; text-decoration: underline;\">unsubscribe here</a>. You can also change your preferences on your account’s profile page by logging in at <a href=https://c.gle/ANiao5oH1cidnGNHoLG2g42rxUgn5ZeM7E1IdR_2kRNnwvqHZPfN261b7qtMfmMUAI2ZC03FnPRWtK44zX74nWOjpUZxRmTWfscbJemQJ0geIWVnChe6HYaTAwnxRIxZNA target=_blank rel=noopener data-k-tracking-label=Admin style=\"color: rgb(25, 103, 210); text-decoration: underline;\">admin.google.com</a>.</p></div></div></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></div> <!--[if mso ]> <table id=\"email-container\" style=\"width:600px;line-height:0;font-size:0;height:0;overflow:hidden;border-collapse:collapse\" width=\"600\"><img alt=\"\" height=\"1\" src=\"https://notifications.google.com/g/img/ANiao5pKAKoLqxyAa9cU2rnBPi8bFfmUr3MmNfR6bq9tcouDFnDAcd9pSzWRKXeVaQsXclkZTJXzrDfWrk2_Z5LGIlUH0tT1PvfxA0G2ZMjZGvlBRmL1VT4lo7mL-7B-ZtvUuFJTRQ.gif\" width=\"3\"></table><![endif]--> <!--[if !mso]><!--> <div style=width:auto;line-height:0;font-size:0;height:0;overflow:hidden;border-collapse:collapse><img alt=\"\" height=1 src=https://notifications.google.com/g/img/ANiao5pKAKoLqxyAa9cU2rnBPi8bFfmUr3MmNfR6bq9tcouDFnDAcd9pSzWRKXeVaQsXclkZTJXzrDfWrk2_Z5LGIlUH0tT1PvfxA0G2ZMjZGvlBRmL1VT4lo7mL-7B-ZtvUuFJTRQ.gif width=3></div> <!--<![endif]--> </div> </body></html>','Google Workspace  \r\n<https://c.gle/ANiao5qE5N6bk5XI7wviSiFEeeKYp3zVr3YNGFJJncMLvV5GXsLvXfaoCjLnQ8jrrvk5ZDmMISXy2HwDZFWm0AASH0vcPWB9lbYjqPUR7BEkXoNXIYM3JI-O7V0oZMr6OFDXWVmJEg2kAQkFi37XuDHdLw6G>\r\n\r\nGWS Icon Cluster  \r\n<https://c.gle/ANiao5pWdeFXLAFEPeufmzu-aJDElhPxBd-jKA5iHxKdzupopY2ThNccdjB4r2xkuap2zXivlIbYMacVsexfmWtrcc3Byc-U6BRdBXrcx89VqyQeAWUSSmOSS0Zwxb3Z67BqxZcBMsRpkCrjrOWfmWLenCw>\r\n\r\nMore connected than ever before\r\n\r\nGoogle Workspace breaks down barriers, bringing teams together seamlessly  \r\nacross the globe for real-time collaboration and connection.\r\n\r\nDiscover Google Workspace  \r\n<https://c.gle/ANiao5pcutq7C5veLbEce5r0sQ6Z1ut0nW5D0fMLbjHY0XtOm0kkuOZu5F7aUQKvmj0XbGI315Bmiwc623PbO8iuodfyCREswtNnxk9si1IJkL2Ja9MeKRMLBtMiLZN4DflJe92BZ5wvfmySbBzxoWR81sLxxSh8Za3R9cU>\r\n\r\nHi Rick,\r\n\r\nIn a world of remote and hybrid work, staying connected is key. Google  \r\nWorkspace provides cloud-based solutions that enable you to access  \r\nessential information and be more efficient.\r\n\r\nSchedule an event\r\n\r\nSpend less time planning and more time doing with seamlessly integrated  \r\ncalendars.\r\n\r\nOpen Calendar  \r\n<https://c.gle/ANiao5o0mBnfCqCZ1PmAaD87SOILncRu4mk8uxfIozztB8aSRVDjONij8qgDiCValdKSIzv6Ga7gLbajVRGTg6DqGLvBCkMNEv_1NdiT9ky4myu9lIg6nLyXOuZPnwB_lZWb8AUXDSMN>\r\n\r\nAn illustration of two integrated calendars.  \r\n<https://c.gle/ANiao5olEfOa0bqR8PnZ37Y8f0UuCsImMYpw3a_BHjlJ6OJYnGzROTPlsxefHXb4_qBEjFQyaeXDleUWgJyOfusqjrcOoyx4PKtEoRgmTbgyPJXnbl9neR_cKIz1P-g1yeAULOzFDg>\r\n\r\nStart a meeting\r\n\r\nYour Google Workspace plan unlocks larger meetings with noise cancellation,  \r\nbreakout rooms, polls, and meeting recordings.\r\n\r\nNew meeting  \r\n<https://c.gle/ANiao5rGto1ekeZ_ZWlre9uDc72vYPivcCKICH5J1FEfQ9iicXraGozPV0E73AqE2uog7gzRoeJLz2HR6VduxCASNtR8tpPiT66Vj2M6Jrfiu3nV0JZ5IZHbvZ9LL_y07FoT>\r\n\r\nAn illustration of two colleagues interacting in a Google Meet meeting.  \r\n<https://c.gle/ANiao5rC-RgCsIWMcrrXUvdnw_Qmy7XOw3K2oYGb7crPQYDFiiHyL4vsXPhiZ5N8C1T0xFVDVqC0kh-abhMSpmIWHayTs4a7w5p_U2GLHCaxYnCznwkxLeiCDtEl4zhmRiRd>\r\n\r\nMake meetings more collaborative\r\n\r\nPolls, Q&A and breakout rooms support participation and raise engagement.\r\n\r\nLearn more  \r\n<https://c.gle/ANiao5r-5dYhxnQ-ppWD6xdmnHRt_uqrDQuhOQkjO7UHgPQU7NcUGgIslv8Ph6jeuKhwJ1H5dpmvzBSL_aJdUvYChGpahZjq4ROLGfoG2obWZYk-yhfqzMzI0KIB_mBkpx7G5aVypR_tMYOp_0f63gVR_KupRzV5mLalpMRzEFidiQr7m8lEL9onkJ73UPupIovUOiBhl07rjYQ0OU2YSs0U6EdEUzQ>\r\n\r\nAn illustration of two colleagues engaging in an interactive poll.  \r\n<https://c.gle/ANiao5pCLEtBS5Qr-JwRIlqvyLcMVo-6sY5gn2pgRqhku9KU2v1qsTHmJxquktoFUvmZYqpXSvbXLUOA3zBM-PEuaOUTh9TrWdNyhQyyJcjV8enjFChXpmQlD7uXRQsve7HJ7z7u0lCcOSHtlTq-CDYjJ0P1OhxU8h4eoJO0VBnRwxuc8Na4kUWc2mEcg4uyEfcR--8EFzXqXHq3QC7m8cH_o3o497Gc>\r\n\r\nView all recommendations  \r\n<https://c.gle/ANiao5pyDAbrvKOk_h-Vwe32I7gkJ45_KLIR-dZsTdNOwuu5jxvB_Wor0DHDg_4EMIGEH-VopwqNmeYCef6Xw-xOvYbrI5oe5qDipLm5iRJxqVj_i96xPIEzzY8DL0F03FeycgezNl-6zs8ofMW-3HgfXAYwZYSkSxtqWA>\r\n\r\nSee you online,\r\n\r\nThe Google Workspace Team\r\n\r\n© 2025 Google LLC 1600 Amphitheatre Parkway, Mountain View, CA 94043\r\n\r\nThis email was sent to rick@mavrix.one because you indicated that you’d  \r\nlike to receive updates and tips about your Google Workspace account. If  \r\nyou don’t want to receive such emails in the future, please unsubscribe  \r\nhere  \r\n<https://myaccount.google.com/communication-preferences/unsubscribe/gt/ANiao5oj9KXjqBdbIsZ07IV3lovCyoRDLiRzgI9BK05Z5liWQsHKBR74YdwyyYdM-1gEmyZZIoYkCHdduVaqWiU4cLtVm19czqDHMj-bNyCo_0dYYWfiA9WrP8pmfXk8c4kwxnrw6kwTbra74QSOujthUWIEP75s-xmM60H7ZSaZruLn4N5B9C3qzITJ0h90tOOJDF9xHp63lFtT-aVtS3dZOhxT6fQq0geX?utm_source=gm&utm_medium=email&auto=true>.  \r\nYou can also change your preferences on your account’s profile page by  \r\nlogging in at admin.google.com  \r\n<https://c.gle/ANiao5prqn6JrPpam9woLDpjrvLTM3yNrzz5gX4aavLGFwjmGNMbQWPkIdtXm2Bwmvs0V_9DrZtSk0KDlVr4LTsI_CnFpijpbMGNTSJy4lfcX_7AHIn4pRiwE1tYAuo>.\r\n',0,0,0,0,0,0,'2025-07-17 17:49:05','2025-12-09 19:14:02','2025-12-09 19:14:02','2025-12-09 19:14:02',NULL,NULL,NULL),
(482,4,'<e2409ea6ae05e9b03ce57010f48977c0106528f2-20070550-110897062@google.com>',NULL,NULL,'Get help setting up Google Workspace for mavrix.one','workspace-noreply@google.com','The Google Workspace Team','<div>\r\n  <html xmlns:v=urn:schemas-microsoft-com:vml dir=ltr lang=en style=\"margin:0; padding:0\">\r\n    <meta http-equiv=Content-Type content=\"text/html; charset=utf-8\">\r\n    <meta name=viewport content=width=device-width>\r\n    <style>@media only screen{html{min-height:100%;background:#fafafa}}@media only screen and (max-width:640px){.small-float-center{margin:0 auto!important;float:none!important;text-align:center!important}}@media only screen and (max-width:640px){table.body img{width:auto;height:auto}table.body center{min-width:0!important}table.body .container{width:344px!important}table.body .columns{height:auto!important;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:40px!important;padding-right:40px!important}table.body .columns .columns{padding-left:0!important;padding-right:0!important}table.body .collapse .columns{padding-left:0!important;padding-right:0!important}th.small-1{display:inline-block!important;width:8.33333%!important}th.small-3{display:inline-block!important;width:25%!important}th.small-4{display:inline-block!important;width:33.33333%!important}th.small-6{display:inline-block!important;width:50%!important}th.small-8{display:inline-block!important;width:66.66667%!important}th.small-9{display:inline-block!important;width:75%!important}th.small-12{display:inline-block!important;width:100%!important}.columns th.small-12{display:block!important;width:100%!important}table.menu{width:100%!important}table.menu td,table.menu th{width:auto!important;display:inline-block!important}table.menu.vertical td,table.menu.vertical th{display:block!important}table.menu[align=center]{width:auto!important}}</style>\r\n    <span class=preheader style=color:#fafafa;display:none!important;font-size:1px;line-height:1px;max-height:0;max-width:0;mso-hide:all!important;opacity:0;overflow:hidden;visibility:hidden></span>\r\n    <table class=body style=Margin:0;background:#F8F9FA!important;border-collapse:collapse;border-spacing:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;height:100%;line-height:inherit;margin:0;padding:0;vertical-align:top;width:100%;text-align:left>\r\n      <tr style=padding:0;vertical-align:top>\r\n        <td class=center align=center valign=top style=-moz-hyphens:none;-webkit-hyphens:none;Margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all>\r\n          <center data-parsed=\"\" style=min-width:600px;width:100%>\r\n\r\n            <table align=center class=\"container float-center\" style=\"Margin:0 auto;background:#fafafa;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:left;vertical-align:top;width:600px\"><tbody><tr style=padding:0;vertical-align:top><td style=-moz-hyphens:none;-webkit-hyphens:none;Margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all>\r\n              <table class=\"row header\" style=background:#F8F9FA;border-collapse:collapse;border-spacing:0;display:table;font-size:12px;padding:0;position:relative;vertical-align:top;width:100%><tbody><tr style=padding:0;vertical-align:top>\r\n                <th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0 auto;padding:0;padding-bottom:24px;padding-left:40px;padding-right:40px;padding-top:12px;width:560px\"><table style=border-collapse:collapse;border-spacing:0;margin-bottom:0;padding:0;vertical-align:top;width:100%><tr style=padding:0;vertical-align:top><th style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0;text-align:left>\r\n\r\n                  <img src=https://storage.googleapis.com/support-kms-prod/GaOvClLdIVxiDUB6sr9FETwxw9I7ykkXR856 alt=\"Google Workspace\" height=30 style=-ms-interpolation-mode:bicubic;clear:both;display:block;margin-top:24px;max-height:30px;max-width:100%;outline:0;text-decoration:none;width:auto>\r\n\r\n                </th>\r\n<th class=expander style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0!important;visibility:hidden;width:0></th></tr></table></th>\r\n              </tr></tbody></table>\r\n\r\n              <table class=\"row info\" style=align-items:center;background:#fff;border-collapse:collapse;border-color:#E8EAED;border-spacing:0;border-style:solid;border-width:1px;display:table;padding:0;position:relative;vertical-align:top;width:100%><tbody><tr style=padding:0;vertical-align:top>\r\n                <th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0 auto;padding:0;padding-bottom:0;padding-left:40px;padding-right:40px;width:560px\"><table style=border-collapse:collapse;border-spacing:0;padding:0;vertical-align:top;width:100%><tr style=padding:0;vertical-align:top><th style=\"Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0 0 24px;text-align:left\">\r\n\r\n<div><title>Reminder to set up Google Workspace</title></div>\r\n<h2 style=\"margin:0;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:24px;font-weight:700;line-height:30px!important;margin-bottom:24px;margin-top:24px;padding:0;word-wrap:normal\">We&#39;ll help you set up Google Workspace</h2>\r\n\r\n<p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;padding:0>To start using Gmail, video conferencing, collaboration tools, and more, you first verify that you own the domain, <a class=noclick style=margin:0;color:#1f1f1f;font-family:inherit;font-weight:inherit;margin:0;padding:0;text-decoration:none>mavrix.one</a>.</p>\r\n\r\n<h3 style=\"margin:0;margin-bottom:8px;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;line-height:24px!important;margin:15px 0 5px 0;margin-bottom:10px;padding:0;word-wrap:normal\">Get live help</h3>\r\n\r\n<p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;margin:0;margin-bottom:16px;padding:0>The Google Workspace support team can walk you through verifying your domain and setting up your business email. 24/7 support is included with your Google Workspace account.</p>\r\n\r\n<table class=accountinfo role=presentation style=align:center;background:#f3f3f3;border-collapse:collapse;border-spacing:0;margin-bottom:12px;padding:0;vertical-align:top;width:100%>\r\n  <tbody>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <th class=accountinfo style=\"margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:inherit;line-height:inherit;margin:0;padding:16px 32px 0 32px\">\r\n      <h3 class=accountinfo style=\"margin:0;margin-bottom:8px;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;line-height:26px!important;margin:0;margin-bottom:12px;margin-top:none!important;padding:0;text-align:center;word-wrap:normal\">Your Google Workspace account</h3>\r\n      </th>\r\n    </tr>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <td class=accountinfo style=\"-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0 32px 0 32px;vertical-align:top;word-wrap:keep-all\">\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:0;padding:0><strong>Username: </strong></p>\r\n\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:16px;padding:0><a class=noclick style=margin:0;color:#1f1f1f;font-family:inherit;font-weight:inherit;margin:0;padding:0;text-decoration:none>rick@mavrix.one</a></p>\r\n      </td>\r\n    </tr>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <td class=accountinfo style=\"-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0 32px 0 32px;vertical-align:top;word-wrap:keep-all\">\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:0;padding:0><strong>Domain: </strong></p>\r\n\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:16px;padding:0><a class=noclick style=margin:0;color:#1f1f1f;font-family:inherit;font-weight:inherit;margin:0;padding:0;text-decoration:none>mavrix.one</a></p>\r\n      </td>\r\n    </tr>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <td class=accountinfo style=\"-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0 32px 0 32px;vertical-align:top;word-wrap:keep-all\">\r\n      <table class=\"button radius thumbnail\" role=presentation style=\"margin:9px 0 24px 0;border:none;border-collapse:collapse;border-radius:3px;border-spacing:0;box-shadow:0 0 0 1px rgba(10,10,10,.2);display:inline-block;line-height:0;margin:9px 0 24px 0;max-width:100%;padding:0;transition:box-shadow .2s ease-out;vertical-align:top;width:auto\">\r\n        <tbody>\r\n          <tr style=padding:0;vertical-align:top>\r\n            <td style=-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all>\r\n            <table style=border-collapse:collapse;border-spacing:0;padding:0;vertical-align:top;width:100%>\r\n              <tbody>\r\n                <tr style=padding:0;vertical-align:top>\r\n                  <td style=-moz-hyphens:none;-webkit-hyphens:none;margin:0;background:#1A73E8;border:none;border-collapse:collapse!important;border-radius:3px;color:#fff;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all><a href=https://c.gle/ANiao5osH7xYAoV-p6YLiSWHoxZM-QrmSTa_hUYvsMC4bSK6ERJg3gYus7r5jSf63AS2jORMWgq4snp2x4srli2EZO9wGLLiplnv36E7lXyUMRjGui7x4qq6MaCnNST1cePyXo65u5J_kfpW6DMGiYvl1OlBjlrvHavqdHaIItXwOAKcNxqk-K5POQkBMClb style=\"margin:0;border:0 solid #1A73E8;border-radius:3px;color:#fff;display:inline-block;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:500;line-height:24px;margin:0;padding:8px 16px 8px 16px;text-decoration:none\">Contact us</a></td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n            </td>\r\n          </tr>\r\n        </tbody>\r\n      </table>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;margin:0;margin-bottom:16px;padding:0>If you prefer to verify on your own, <a href=https://c.gle/ANiao5omKfHw4RUUhLrcbuN-jb4m43p6_jicPeNAwC6EOyF9NX-4dPt-2HqmYNFGEIL5pF9K4L_VG4bKZZXmhkLpvsII5i7kpOXFttQt1SjFpWI1h6tUTn4 style=margin:0;color:#1A73E8;font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400;line-height:1.3;margin:0;padding:0;text-decoration:none>sign in to your Google Admin console</a> and follow the setup steps. Learn more about <a href=https://c.gle/ANiao5pL4EtO9VhZ5gfi7CXrDAkCloq2rIuU1u7z-5VTE_RRMdL769d019ag4BN-qI3PhHXRV__A9LV-uA6itvr8dbYslmrUvUMBd98aDZTXR3b5l8heIsVSrw4fxAIMoP0aJqVOZyNlRwL0ZuxW3F4-ATYxn8kkukayXq4cKlniLqS6MOqZ-3_yr73b1A style=margin:0;color:#1A73E8;font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400;line-height:1.3;margin:0;padding:0;text-decoration:none>domain verification</a>.</p>\r\n\r\n<p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;margin:0;margin-bottom:16px;padding:0>If you don&#39;t verify your domain within a few days, your Google Workspace trial account is automatically deleted.</p>\r\n\r\n<p class=regards style=\"color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;line-height:24px;margin:0;margin-bottom:0!important;margin-top:8px;padding:0\">Sincerely,</p>\r\n\r\n<p class=signoff style=\"margin:0;margin-bottom:16px;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;line-height:24px;margin:0;margin-bottom:0px!important;padding:0\">The Google Workspace Team</p>\r\n            </th></tr></table></th>\r\n            </tr></tbody></table>\r\n\r\n            <table class=\"row footer\" role=presentation style=background:#F8F9FA;border-collapse:collapse;border-spacing:0;display:table;margin-top:0;padding:0;position:relative;vertical-align:top;width:100%><tbody><tr style=padding:0;vertical-align:top>\r\n              <th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0 auto;padding:0;padding-bottom:0;padding-left:40px;padding-right:40px;width:560px\"><table style=border-collapse:collapse;border-spacing:0;padding:0;vertical-align:top;width:100%><tr style=padding:0;vertical-align:top><th style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:24px;text-align:left>\r\n\r\n                <img src=https://storage.googleapis.com/support-kms-prod/GaOvClLdIVxiDUB6sr9FETwxw9I7ykkXR856 alt=\"Google Workspace\" height=30 style=-ms-interpolation-mode:bicubic;clear:both;display:block;margin-bottom:14px;max-width:100%;max-height:30px;outline:0;text-decoration:none;width:auto>\r\n                <p style=Margin:0;Margin-bottom:16px;color:#6C737F;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:14px;padding:0>\r\n            © 2025  Google LLC 1600 Amphitheatre Parkway, Mountain View, CA 94043\r\n                </p>\r\n                <p style=Margin:0;Margin-bottom:16px;color:#6C737F;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:14px;padding:0>\r\n            <em>You’re receiving this mandatory email service announcement to update you about important changes to your Google Workspace product or account.</em>\r\n            </p>\r\n            </th>\r\n<th class=expander style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0!important;visibility:hidden;width:0></th></tr></table></th>\r\n            </tr></tbody></table>\r\n            </td></tr></tbody></table>\r\n\r\n          </center>\r\n        </td>\r\n      </tr>\r\n    </table>\r\n    <!-- prevent Gmail on iOS font size manipulation -->\r\n   <div style=\"display:none;white-space:nowrap;font:15px courier;line-height:0\">                                                             </div>\r\n\r\n</html>\r\n</div>','From: \"The Google Workspace Team\" [workspace-noreply@google.com]\r\nSubject:  Get help setting up Google Workspace for mavrix.one\r\n\r\nReminder to set up Google Workspace\r\n\r\n## We\'ll help you set up Google Workspace\r\n\r\nTo start using Gmail, video conferencing, collaboration tools, and more,  \r\nyou first verify that you own the domain, mavrix.one.\r\n\r\n### Get live help\r\n\r\nThe Google Workspace support team can walk you through verifying your  \r\ndomain and setting up your business email. 24/7 support is included with  \r\nyour Google Workspace account.\r\n\r\n### Your Google Workspace account\r\n\r\n**Username: **\r\n\r\nrick@mavrix.one\r\n\r\n**Domain: **\r\n\r\nmavrix.one\r\n\r\nContact us  \r\n(https://support.google.com/a/answer/1047213?utm_source=9052702&utm_medium=email)\r\n\r\nIf you prefer to verify on your own, sign in to your Google Admin console  \r\n(https://admin.google.com) and follow the setup steps. Learn more about  \r\ndomain verification  \r\n(https://support.google.com/a/answer/60216?utm_source=9052702&utm_medium=email).\r\n\r\nIf you don\'t verify your domain within a few days, your Google Workspace  \r\ntrial account is automatically deleted.\r\n\r\nSincerely,\r\n\r\nThe Google Workspace Team\r\n\r\n\r\n(C) 2025  Google LLC 1600 Amphitheatre Parkway, Mountain View, CA 94043 *   \r\nGoogle Asia Pacific Pte. Ltd., 8 Marina View, #30-01, Asia Square 1,  \r\nSingapore 018960  *  Google Ireland Ltd, Gordon House, Barrow Street,  \r\nDublin 4, Ireland.\r\n\r\nYou\'re receiving this mandatory email service announcement to update you  \r\nabout important changes to your Google Workspace product or account.',0,0,0,0,0,0,'2025-07-18 01:35:17','2025-12-09 19:14:02','2025-12-09 19:14:02','2025-12-09 19:14:02',NULL,NULL,NULL),
(483,4,'<2084057480.14718803.1752850176577@lor1-app76374.prod.linkedin.com>',NULL,NULL,'Mavrix, follow Rajiv Khanna - Managing Attorney at Immigration.com - Law Offices of Rajiv S. Khanna, PC','messages-noreply@linkedin.com','LinkedIn','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n              @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n            </style> <style>\r\n            @media (max-width: 480px) { .inline-button, .inline-button table { display: none !important; }\r\n            .full-width-button, .full-width-button table { display: table !important; } }\r\n          </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n            \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n            \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">See your recommendations</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-left: auto; margin-right: auto; margin-top: 0px; margin-bottom: 0px; width: 512px; max-width: 512px; padding: 0px;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"bg-color-background-container \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2F7dg5nFjpNrQ1&amp;trk=eml-email_edge_discover_01-header-0-home_glimmer_static_badging_with_count&amp;trkEmail=eml-email_edge_discover_01-header-0-home_glimmer_static_badging_with_count-null-poh2nf~md8xp71k~jx-null-null&amp;eid=poh2nf-md8xp71k-jx&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4YWNlZDE0NjlmYWY4YTZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGUxZGI1OTljZmU5ZDM1N2UzOWE3ZWYxNzViNzU4ZTY1N2UyNzhiOGQ0Yzg4ZDUsMSwx\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img class=\"h-[37px] w-[101px]\" alt=\"LinkedIn\" src=\"https://static.licdn.com/aero-v1/sc/h/avcvxnlctzgeydxeowdsp043s\" data-test-header-static-badging-img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 37px; width: 101px;\" width=\"101\" height=\"37\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-header-profile style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" class=\"w-[32px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 32px;\" width=\"32\"> <a href=\"https://www.linkedin.com/comm/in/mavrix-one-ba3024374?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2F7dg5nFjpNrQ1&amp;trk=eml-email_edge_discover_01-header-0-profile_glimmer&amp;trkEmail=eml-email_edge_discover_01-header-0-profile_glimmer-null-poh2nf~md8xp71k~jx-null-null&amp;eid=poh2nf-md8xp71k-jx&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4YWNlZDE0NjlmYWY4YTZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGUxZGI1OTljZmU5ZDM1N2UzOWE3ZWYxNzViNzU4ZTY1N2UyNzhiOGQ0Yzg4ZDUsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Mavrix One\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQH7FhVwiiJ44g/profile-displayphoto-scale_200_200/B4EZf50lYcH0AY-/0/1752243001533?e=2147483647&amp;v=beta&amp;t=Bup8mnb1d2TsGleMbZ8CDZE7-ny4WAQ5Meqmu6kHzHo\" class=\"rounded-[100%] w-[32px] h-[32px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 32px; width: 32px; border-radius: 100%;\" width=\"32\" height=\"32\"> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"px-3 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px; padding-bottom: 24px;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <h2 class=\"text-lg leading-regular\" data-test-id=\"follow-recommendation-header\" style=\"margin: 0; font-weight: 500; font-size: 20px; line-height: 1.25;\"> Mavrix, add interesting content to your feed. Here are a few recommendations to get started. </h2> </td> </tr> <tr data-test-id=\"follow-recommendation-section\"> <td align=\"center\" class=\"pt-1.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" class=\"pr-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/rajivskhanna?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2F7dg5nFjpNrQ1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A3074886&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A3074886-null-poh2nf~md8xp71k~jx-null-null&amp;eid=poh2nf-md8xp71k-jx&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4YWNlZDE0NjlmYWY4YTZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGUxZGI1OTljZmU5ZDM1N2UzOWE3ZWYxNzViNzU4ZTY1N2UyNzhiOGQ0Yzg4ZDUsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/C4D03AQHeUanMIaoDhQ/profile-displayphoto-shrink_200_200/profile-displayphoto-shrink_200_200/0/1516278578386?e=2147483647&amp;v=beta&amp;t=qLcMF6UL9KaqL0b92L03LvaTKCzs1UJVkBubc6ne03c\" alt=\"Rajiv Khanna’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/rajivskhanna?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2F7dg5nFjpNrQ1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A3074886&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A3074886-null-poh2nf~md8xp71k~jx-null-null&amp;eid=poh2nf-md8xp71k-jx&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4YWNlZDE0NjlmYWY4YTZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGUxZGI1OTljZmU5ZDM1N2UzOWE3ZWYxNzViNzU4ZTY1N2UyNzhiOGQ0Yzg4ZDUsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Rajiv Khanna </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> Managing Attorney @ Immigration.com | Member of Virginia and DC Bars </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 49,017 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=rajivskhanna&amp;entityUrn=ADoAAAAu60YB5Ay7AtN3GV2ZKnKe4wB1wfXXj3w&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midSig=2F7dg5nFjpNrQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A3074886-null-poh2nf%7Emd8xp71k%7Ejx-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A3074886\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=rajivskhanna&amp;entityUrn=ADoAAAAu60YB5Ay7AtN3GV2ZKnKe4wB1wfXXj3w&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midSig=2F7dg5nFjpNrQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A3074886-null-poh2nf%7Emd8xp71k%7Ejx-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A3074886\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=rajivskhanna&amp;entityUrn=ADoAAAAu60YB5Ay7AtN3GV2ZKnKe4wB1wfXXj3w&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midSig=2F7dg5nFjpNrQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A3074886-null-poh2nf%7Emd8xp71k%7Ejx-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A3074886\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=rajivskhanna&amp;entityUrn=ADoAAAAu60YB5Ay7AtN3GV2ZKnKe4wB1wfXXj3w&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midSig=2F7dg5nFjpNrQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A3074886-null-poh2nf%7Emd8xp71k%7Ejx-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A3074886\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/amran-muhammad-010207189?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2F7dg5nFjpNrQ1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A744019788&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A744019788-null-poh2nf~md8xp71k~jx-null-null&amp;eid=poh2nf-md8xp71k-jx&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4YWNlZDE0NjlmYWY4YTZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGUxZGI1OTljZmU5ZDM1N2UzOWE3ZWYxNzViNzU4ZTY1N2UyNzhiOGQ0Yzg4ZDUsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/C5603AQEuj5oIthTTcQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1645611468131?e=2147483647&amp;v=beta&amp;t=RES_AFciFTk9NH3EgGCpvCSJOIlNjog3T2b03jspPas\" alt=\"Amran Muhammad’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/amran-muhammad-010207189?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2F7dg5nFjpNrQ1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A744019788&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A744019788-null-poh2nf~md8xp71k~jx-null-null&amp;eid=poh2nf-md8xp71k-jx&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4YWNlZDE0NjlmYWY4YTZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGUxZGI1OTljZmU5ZDM1N2UzOWE3ZWYxNzViNzU4ZTY1N2UyNzhiOGQ0Yzg4ZDUsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Amran Muhammad </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> HR recruitmen di PT. Halmahera Jaya Feronikel </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 249,329 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=amran-muhammad-010207189&amp;entityUrn=ADoAACxY10wB-tq77QHtgAHj8nswhnPKGGnFD5k&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midSig=2F7dg5nFjpNrQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A744019788-null-poh2nf%7Emd8xp71k%7Ejx-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A744019788\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=amran-muhammad-010207189&amp;entityUrn=ADoAACxY10wB-tq77QHtgAHj8nswhnPKGGnFD5k&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midSig=2F7dg5nFjpNrQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A744019788-null-poh2nf%7Emd8xp71k%7Ejx-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A744019788\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=amran-muhammad-010207189&amp;entityUrn=ADoAACxY10wB-tq77QHtgAHj8nswhnPKGGnFD5k&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midSig=2F7dg5nFjpNrQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A744019788-null-poh2nf%7Emd8xp71k%7Ejx-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A744019788\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=amran-muhammad-010207189&amp;entityUrn=ADoAACxY10wB-tq77QHtgAHj8nswhnPKGGnFD5k&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midSig=2F7dg5nFjpNrQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A744019788-null-poh2nf%7Emd8xp71k%7Ejx-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A744019788\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/shorouk-alaa-a40407227?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2F7dg5nFjpNrQ1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A953537808&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A953537808-null-poh2nf~md8xp71k~jx-null-null&amp;eid=poh2nf-md8xp71k-jx&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4YWNlZDE0NjlmYWY4YTZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGUxZGI1OTljZmU5ZDM1N2UzOWE3ZWYxNzViNzU4ZTY1N2UyNzhiOGQ0Yzg4ZDUsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/D4D03AQGFeF7qRnVz7A/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1725480092662?e=2147483647&amp;v=beta&amp;t=nrifmLvh5JtJOk-ZmhOZbj30DYuujIoo8MnpTdG-6HU\" alt=\"Shorouk Alaa’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/shorouk-alaa-a40407227?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2F7dg5nFjpNrQ1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A953537808&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A953537808-null-poh2nf~md8xp71k~jx-null-null&amp;eid=poh2nf-md8xp71k-jx&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4YWNlZDE0NjlmYWY4YTZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGUxZGI1OTljZmU5ZDM1N2UzOWE3ZWYxNzViNzU4ZTY1N2UyNzhiOGQ0Yzg4ZDUsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Shorouk Alaa </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> HR Generalist, HR, Online Advertising </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 34,652 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=shorouk-alaa-a40407227&amp;entityUrn=ADoAADjV1RABXC_hzrA4xojGA8J-k8QSs6rEYuo&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midSig=2F7dg5nFjpNrQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A953537808-null-poh2nf%7Emd8xp71k%7Ejx-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A953537808\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=shorouk-alaa-a40407227&amp;entityUrn=ADoAADjV1RABXC_hzrA4xojGA8J-k8QSs6rEYuo&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midSig=2F7dg5nFjpNrQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A953537808-null-poh2nf%7Emd8xp71k%7Ejx-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A953537808\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=shorouk-alaa-a40407227&amp;entityUrn=ADoAADjV1RABXC_hzrA4xojGA8J-k8QSs6rEYuo&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midSig=2F7dg5nFjpNrQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A953537808-null-poh2nf%7Emd8xp71k%7Ejx-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A953537808\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=shorouk-alaa-a40407227&amp;entityUrn=ADoAADjV1RABXC_hzrA4xojGA8J-k8QSs6rEYuo&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midSig=2F7dg5nFjpNrQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A953537808-null-poh2nf%7Emd8xp71k%7Ejx-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A953537808\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/ahmed-shawky-81255822b?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2F7dg5nFjpNrQ1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A965835662&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A965835662-null-poh2nf~md8xp71k~jx-null-null&amp;eid=poh2nf-md8xp71k-jx&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4YWNlZDE0NjlmYWY4YTZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGUxZGI1OTljZmU5ZDM1N2UzOWE3ZWYxNzViNzU4ZTY1N2UyNzhiOGQ0Yzg4ZDUsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/D4D03AQHkTGBAzVrI7g/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1697216735007?e=2147483647&amp;v=beta&amp;t=OpdSTiXBhlpGUBo67aYJEzSl3S0XEkd6LkEZ6TNCp24\" alt=\"Ahmed Shawky’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/ahmed-shawky-81255822b?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2F7dg5nFjpNrQ1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A965835662&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A965835662-null-poh2nf~md8xp71k~jx-null-null&amp;eid=poh2nf-md8xp71k-jx&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4YWNlZDE0NjlmYWY4YTZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGUxZGI1OTljZmU5ZDM1N2UzOWE3ZWYxNzViNzU4ZTY1N2UyNzhiOGQ0Yzg4ZDUsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Ahmed Shawky </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> Hr personnel team leader at Dar al-alamia , HR Diploma </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 18,793 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=ahmed-shawky-81255822b&amp;entityUrn=ADoAADmRe44BjRB3TtuqC_PtPs4wsRHF0ZooVTQ&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midSig=2F7dg5nFjpNrQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A965835662-null-poh2nf%7Emd8xp71k%7Ejx-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A965835662\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=ahmed-shawky-81255822b&amp;entityUrn=ADoAADmRe44BjRB3TtuqC_PtPs4wsRHF0ZooVTQ&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midSig=2F7dg5nFjpNrQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A965835662-null-poh2nf%7Emd8xp71k%7Ejx-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A965835662\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=ahmed-shawky-81255822b&amp;entityUrn=ADoAADmRe44BjRB3TtuqC_PtPs4wsRHF0ZooVTQ&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midSig=2F7dg5nFjpNrQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A965835662-null-poh2nf%7Emd8xp71k%7Ejx-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A965835662\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=ahmed-shawky-81255822b&amp;entityUrn=ADoAADmRe44BjRB3TtuqC_PtPs4wsRHF0ZooVTQ&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midSig=2F7dg5nFjpNrQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A965835662-null-poh2nf%7Emd8xp71k%7Ejx-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A965835662\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/mohamed-ahmed-0427?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2F7dg5nFjpNrQ1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A574353669&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A574353669-null-poh2nf~md8xp71k~jx-null-null&amp;eid=poh2nf-md8xp71k-jx&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4YWNlZDE0NjlmYWY4YTZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGUxZGI1OTljZmU5ZDM1N2UzOWE3ZWYxNzViNzU4ZTY1N2UyNzhiOGQ0Yzg4ZDUsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/C4D03AQEN2xU-qvzSWg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1575240144914?e=2147483647&amp;v=beta&amp;t=XvjxPRQQCTf5uf7oPlQil8CNfkUtLqCCyswI6vlQels\" alt=\"Mohamed Ahmed’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/mohamed-ahmed-0427?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2F7dg5nFjpNrQ1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A574353669&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A574353669-null-poh2nf~md8xp71k~jx-null-null&amp;eid=poh2nf-md8xp71k-jx&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4YWNlZDE0NjlmYWY4YTZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGUxZGI1OTljZmU5ZDM1N2UzOWE3ZWYxNzViNzU4ZTY1N2UyNzhiOGQ0Yzg4ZDUsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Mohamed Ahmed </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> +130,000 Followers || Credit Admin at National Bank of Egypt (North Egypt Unit) </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 132,764 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=mohamed-ahmed-0427&amp;entityUrn=ADoAACI78QUBCl3N0Za-sDxstJXpXKiV_ccpKpM&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midSig=2F7dg5nFjpNrQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A574353669-null-poh2nf%7Emd8xp71k%7Ejx-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A574353669\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=mohamed-ahmed-0427&amp;entityUrn=ADoAACI78QUBCl3N0Za-sDxstJXpXKiV_ccpKpM&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midSig=2F7dg5nFjpNrQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A574353669-null-poh2nf%7Emd8xp71k%7Ejx-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A574353669\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=mohamed-ahmed-0427&amp;entityUrn=ADoAACI78QUBCl3N0Za-sDxstJXpXKiV_ccpKpM&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midSig=2F7dg5nFjpNrQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A574353669-null-poh2nf%7Emd8xp71k%7Ejx-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A574353669\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=mohamed-ahmed-0427&amp;entityUrn=ADoAACI78QUBCl3N0Za-sDxstJXpXKiV_ccpKpM&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midSig=2F7dg5nFjpNrQ1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A574353669-null-poh2nf%7Emd8xp71k%7Ejx-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A574353669\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/discovery-see-all/?usecase=EMAIL_MIXED_RECOMMENDATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2F7dg5nFjpNrQ1&amp;trk=eml-email_edge_discover_01-see_more-0-cta~text&amp;trkEmail=eml-email_edge_discover_01-see_more-0-cta~text-null-poh2nf~md8xp71k~jx-null-null&amp;eid=poh2nf-md8xp71k-jx&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4YWNlZDE0NjlmYWY4YTZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGUxZGI1OTljZmU5ZDM1N2UzOWE3ZWYxNzViNzU4ZTY1N2UyNzhiOGQ0Yzg4ZDUsMSwx\" target=\"_blank\" aria-label=\"See all\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/discovery-see-all/?usecase=EMAIL_MIXED_RECOMMENDATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2F7dg5nFjpNrQ1&amp;trk=eml-email_edge_discover_01-see_more-0-cta~text&amp;trkEmail=eml-email_edge_discover_01-see_more-0-cta~text-null-poh2nf~md8xp71k~jx-null-null&amp;eid=poh2nf-md8xp71k-jx&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4YWNlZDE0NjlmYWY4YTZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGUxZGI1OTljZmU5ZDM1N2UzOWE3ZWYxNzViNzU4ZTY1N2UyNzhiOGQ0Yzg4ZDUsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> See all </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-lg text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 20px; color: #114951;\"> Get the new LinkedIn desktop app </h2> </td> </tr> <tr> <td class=\"text-center pb-2\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <a href=\"https://apps.microsoft.com/store/detail/9WZDNCRFJ4Q7?launch=true&amp;cid=linkedin_email_upsell&amp;mode=full\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it from Microsoft\" src=\"https://static.licdn.com/aero-v1/sc/h/ejpkkpwvqks31a3cjqokb7fbm\" class=\"h-[40px] w-[112px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 112px;\" width=\"112\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-md text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 16px; color: #114951;\"> Also available on mobile </h2> </td> </tr> <tr> <td class=\"text-center\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <a href=\"https://itunes.apple.com/us/app/linkedin/id288429040?pt=10746&amp;ct=st_appsite_flagship&amp;mt=8\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Download on the App Store\" src=\"https://static.licdn.com/aero-v1/sc/h/76yzkd0h5kiv27lrd4yaenylk\" class=\"h-[40px] w-[120px] pr-1\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 120px; padding-right: 8px;\" width=\"120\" height=\"40\"> </a> <a href=\"https://play.google.com/store/apps/details?id=com.linkedin.android&amp;referrer=st_appsite_flagship\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it on Google Play\" src=\"https://static.licdn.com/aero-v1/sc/h/142qudwblp58zwmc9vkqfplug\" class=\"h-[40px] w-[134px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 134px;\" width=\"134\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px;\"><hr class=\"border-none bg-[#e0dfdd] h-[1px]\" style=\"height: 1px; border-style: none; background-color: #e0dfdd;\"></td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" data-test-id=\"email-footer__intended\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2F7dg5nFjpNrQ1&amp;trk=eml-email_edge_discover_01-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_edge_discover_01-SecurityHelp-0-footerglimmer-null-poh2nf~md8xp71k~jx-null-null&amp;eid=poh2nf-md8xp71k-jx&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4YWNlZDE0NjlmYWY4YTZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGUxZGI1OTljZmU5ZDM1N2UzOWE3ZWYxNzViNzU4ZTY1N2UyNzhiOGQ0Yzg4ZDUsMSwx\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving People You May Know notification emails.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2F7dg5nFjpNrQ1&amp;trk=eml-email_edge_discover_01-unsubscribe-0-footerGlimmer&amp;trkEmail=eml-email_edge_discover_01-unsubscribe-0-footerGlimmer-null-poh2nf~md8xp71k~jx-null-null&amp;eid=poh2nf-md8xp71k-jx&amp;loid=AQH0_RzMzUWTTgAAAZgeAxiKYl2-WXjyuBr7DaGC2jq6lsAeRxuQQYAK3fK3LwZw3LbDpIr38qJBiDtC5RtUrcP5fSCbRSM2TiIO\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Unsubscribe</a>   ·   <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2F7dg5nFjpNrQ1&amp;trk=eml-email_edge_discover_01-help-0-footerglimmer&amp;trkEmail=eml-email_edge_discover_01-help-0-footerglimmer-null-poh2nf~md8xp71k~jx-null-null&amp;eid=poh2nf-md8xp71k-jx&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4YWNlZDE0NjlmYWY4YTZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGUxZGI1OTljZmU5ZDM1N2UzOWE3ZWYxNzViNzU4ZTY1N2UyNzhiOGQ0Yzg4ZDUsMSwx\" target=\"_blank\" data-test-help-link class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2F7dg5nFjpNrQ1&amp;trk=eml-email_edge_discover_01-footer-0-logoGlimmer&amp;trkEmail=eml-email_edge_discover_01-footer-0-logoGlimmer-null-poh2nf~md8xp71k~jx-null-null&amp;eid=poh2nf-md8xp71k-jx&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4YWNlZDE0NjlmYWY4YTZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGUxZGI1OTljZmU5ZDM1N2UzOWE3ZWYxNzViNzU4ZTY1N2UyNzhiOGQ0Yzg4ZDUsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/aero-v1/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFrT0hod056RnJMV3A0OlpXMWhhV3hmWldSblpWOWthWE5qYjNabGNsOHdNUT09Og==.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','Mavrix, add interesting content to your feed. Here are a few recommendations to get started.\r\n\r\n\r\nhttps://www.linkedin.com/comm/mynetwork/discovery-see-all/?usecase=EMAIL_MIXED_RECOMMENDATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&midToken=AQE-iPshthTClw&midSig=2F7dg5nFjpNrQ1&trk=eml-email_edge_discover_01-see_all-0-cta~text&trkEmail=eml-email_edge_discover_01-see_all-0-cta~text-null-poh2nf~md8xp71k~jx-null-null&eid=poh2nf-md8xp71k-jx&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4YWNlZDE0NjlmYWY4YTZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGUxZGI1OTljZmU5ZDM1N2UzOWE3ZWYxNzViNzU4ZTY1N2UyNzhiOGQ0Yzg4ZDUsMSwx\r\n      \r\n\r\n----------------------------------------\r\n\r\nThis email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\nLearn why we included this: https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&midToken=AQE-iPshthTClw&midSig=2F7dg5nFjpNrQ1&trk=eml-email_edge_discover_01-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_edge_discover_01-SecurityHelp-0-textfooterglimmer-null-poh2nf~md8xp71k~jx-null-null&eid=poh2nf-md8xp71k-jx&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4YWNlZDE0NjlmYWY4YTZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGUxZGI1OTljZmU5ZDM1N2UzOWE3ZWYxNzViNzU4ZTY1N2UyNzhiOGQ0Yzg4ZDUsMSwx\r\nYou are receiving People You May Know notification emails.\r\n\r\nUnsubscribe: https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&midToken=AQE-iPshthTClw&midSig=2F7dg5nFjpNrQ1&trk=eml-email_edge_discover_01-unsubscribe-0-textfooterglimmer&trkEmail=eml-email_edge_discover_01-unsubscribe-0-textfooterglimmer-null-poh2nf~md8xp71k~jx-null-null&eid=poh2nf-md8xp71k-jx&loid=AQH0_RzMzUWTTgAAAZgeAxiKYl2-WXjyuBr7DaGC2jq6lsAeRxuQQYAK3fK3LwZw3LbDpIr38qJBiDtC5RtUrcP5fSCbRSM2TiIO\r\nHelp: https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BcS95e%2BpZTIWe3tHYUHJ5EA%3D%3D&midToken=AQE-iPshthTClw&midSig=2F7dg5nFjpNrQ1&trk=eml-email_edge_discover_01-help-0-textfooterglimmer&trkEmail=eml-email_edge_discover_01-help-0-textfooterglimmer-null-poh2nf~md8xp71k~jx-null-null&eid=poh2nf-md8xp71k-jx&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4YWNlZDE0NjlmYWY4YTZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiOGUxZGI1OTljZmU5ZDM1N2UzOWE3ZWYxNzViNzU4ZTY1N2UyNzhiOGQ0Yzg4ZDUsMSwx\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.\r\nLinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',0,0,0,0,0,0,'2025-07-18 14:49:36','2025-12-09 19:14:02','2025-12-09 19:14:02','2025-12-09 19:14:02',NULL,NULL,NULL),
(484,4,'<034f01dbf80d$9a4618b0$ced24a10$@blackwire-ts.com>',NULL,NULL,'Blackwire Follow-Up','asheppard@blackwire-ts.com','','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\"><head><META HTTP-EQUIV=\"Content-Type\" CONTENT=\"text/html; charset=us-ascii\"><meta name=Generator content=\"Microsoft Word 15 (filtered medium)\"><!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle17\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]--></head><body lang=EN-US link=\"#467886\" vlink=\"#96607D\" style=\'word-wrap:break-word\'><div class=WordSection1><p class=MsoNormal><span style=\'font-size:11.0pt\'>Brian/Rick:<o:p></o:p></span></p><p class=MsoNormal><span style=\'font-size:11.0pt\'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style=\'font-size:11.0pt\'>I&#8217;ve just returned back from extended travel and wanted to follow-up on the discussions we had earlier in the month. We&#8217;ve made progress and had a number of developments with customers that we think will be of interest to you.<o:p></o:p></span></p><p class=MsoNormal><span style=\'font-size:11.0pt\'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style=\'font-size:11.0pt\'>Please let us know when you would be free for a call.<o:p></o:p></span></p><p class=MsoNormal><span style=\'font-size:11.0pt\'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style=\'font-size:11.0pt\'>Best Regards<o:p></o:p></span></p><p class=MsoNormal><span style=\'font-size:11.0pt\'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style=\'font-size:11.0pt\'>Andy<o:p></o:p></span></p><p class=MsoNormal><span style=\'font-size:11.0pt\'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><b>Andy Sheppard</b><o:p></o:p></p><p class=MsoNormal>Mobile: +1 (585) 635-8888<o:p></o:p></p><p class=MsoNormal><o:p>&nbsp;</o:p></p><p class=MsoNormal><img width=200 height=40 style=\'width:2.0833in;height:.4166in\' id=\"Picture_x0020_1035398608\" src=\"cid:image001.png@01DBF7EC.12A1FCB0\"><o:p></o:p></p><p class=MsoNormal><o:p>&nbsp;</o:p></p></div></body></html>','Brian/Rick:\r\n\r\n \r\n\r\nI\'ve just returned back from extended travel and wanted to follow-up on the\r\ndiscussions we had earlier in the month. We\'ve made progress and had a\r\nnumber of developments with customers that we think will be of interest to\r\nyou.\r\n\r\n \r\n\r\nPlease let us know when you would be free for a call.\r\n\r\n \r\n\r\nBest Regards\r\n\r\n \r\n\r\nAndy\r\n\r\n \r\n\r\nAndy Sheppard\r\n\r\nMobile: +1 (585) 635-8888',0,0,0,0,0,0,'2025-07-18 17:58:43','2025-12-09 19:14:03','2025-12-09 19:14:03','2025-12-09 19:14:03',NULL,NULL,NULL),
(485,4,'<1880826026.1618532.1752893318010@lor1-app52450.prod.linkedin.com>',NULL,NULL,'Shaadi.com Founder recently posted','updates-noreply@linkedin.com','LinkedIn','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n              @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n            </style> <style>\r\n            @media (max-width: 480px) { .inline-button, .inline-button table { display: none !important; }\r\n            .full-width-button, .full-width-button table { display: table !important; } }\r\n          </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n            \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n            \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">Saw this woman the other day, and thought maybe she should learn Python 🤷‍♀️…</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-top: 0px; margin-bottom: 0px; margin-left: auto; margin-right: auto; width: 512px; max-width: 512px; padding: 0px;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"bg-color-background-container \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-header-0-home_glimmer_static_badging_with_count&amp;trkEmail=eml-email_network_conversations_01-header-0-home_glimmer_static_badging_with_count-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img class=\"h-[37px] w-[101px]\" alt=\"LinkedIn\" src=\"https://static.licdn.com/sc/h/2fp5x7ci191mxbdy1eynscn59\" data-test-header-static-badging-img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 37px; width: 101px;\" width=\"101\" height=\"37\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" data-test-header-notification-badges style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/messaging/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-header-0-messaging_glimmer&amp;trkEmail=eml-email_network_conversations_01-header-0-messaging_glimmer-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Messaging icon\" src=\"https://static.licdn.com/sc/h/544ehko5v555ey4s5ddccly28\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-header-0-my_network_glimmer&amp;trkEmail=eml-email_network_conversations_01-header-0-my_network_glimmer-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Mynetwork icon\" src=\"https://static.licdn.com/sc/h/4yxfb6j5ycpjfjgehfqgmdx9w\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/notifications/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-header-0-notifications_glimmer&amp;trkEmail=eml-email_network_conversations_01-header-0-notifications_glimmer-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Notifications icon\" src=\"https://static.licdn.com/sc/h/ao95mlvytqw5j2syi3uezfhbz\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"p-0 !pb-0 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0px; padding-bottom: 0px !important;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349781656452460544?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349781656452460544?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"v2style-disable\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://media.licdn.com/dms/image/v2/D4D03AQH-UEtOFzyzKQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1684481062551?e=2147483647&amp;v=beta&amp;t=Pbokah_EdK5nRsGTmWeya-P1OrPhqb5ab81RwdbahUQ\" alt=\"Anupam Mittal\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%); display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Anupam Mittal </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> Founder &amp; CEO @ People Group | Tech &amp; D2C Builder &amp;… </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> <td class=\"!w-[80px]\" data-test-id=\"network-post-follow-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 80px !important;\" width=\"80\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=anupammittal007&amp;entityUrn=ADoAAAMCzYcBsnclq1gtI4uAeedhgLiXaso63Wk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" aria-label=\"Follow\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-tertiary-emphasis border-none button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: none; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=anupammittal007&amp;entityUrn=ADoAAAMCzYcBsnclq1gtI4uAeedhgLiXaso63Wk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline \" style=\"text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 text-md leading-regular text-system-gray-90\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> Saw this woman the other day, and thought maybe she should learn Python 🤷♀️ Perhaps she can fine-tune an… </span> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349781656452460544?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-truncated~share~message-0-see~more&amp;trkEmail=eml-email_network_conversations_01-truncated~share~message-0-see~more-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <span data-test-id=\"truncated-message-see-more\" class=\"text-color-link font-bold\" style=\"font-weight: 600; color: #0a66c2;\"> see more </span> </a> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"w-auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: auto;\"> <tbody> <tr> <td class=\"pr-0.5\" data-test-reaction=\"LIKE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/91tdscn0h1aaoefui9crf11j6\" alt=\"LIKE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"PRAISE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/adig5urqxi03qzuy6iyjfm1b5\" alt=\"PRAISE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"EMPATHY\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/evs2x5zfnz5g0xrc6u22treq2\" alt=\"EMPATHY\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"reactions-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 7,712 </td> <td class=\"px-0.5\" data-test-id=\"separator\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\">·</td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"comments-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 767 Comments </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button w-full koshin__button-with-full-width\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349781656452460544?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; width: 100% !important; display: block !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349781656452460544?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; width: 100% !important; display: block !important;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr><td class=\"h-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 16px;\" height=\"16\"></td></tr> <tr> <td class=\"rounded-md\" data-test-id=\"network-post-update-card\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349781656452460544?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image&amp;trkEmail=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"block w-full h-full\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block; height: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-cool-gray-20 rounded-md\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; background-color: #edf3f8;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-center bg-no-repeat auto pt-[71%] pb-[71%] bg-system-gray-40\" align=\"center\" data-test-id=\"update-card-container\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #cfcfcf; background-position: center; background-repeat: no-repeat; padding-top: 71%; padding-bottom: 71%; background-size: cover; background-image: url(&quot;https://media.licdn.com/dms/image/v2/D4D22AQHDemiOTqRgrw/feedshare-shrink_2048_1536/B4DZf.rETUGsAs-/0/1752324497899?e=1755734400&amp;v=beta&amp;t=I26pf09jy8SqPvjQ6wz9Mzf_1JnmqtT8WzNwjORYVMA&quot;);\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"h-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 100%;\" height=\"100%\"> <tbody> <tr> <td align=\"center\" class=\"overflow-hidden\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; overflow: hidden;\"> <img class=\"w-[448px] h-[252px] hidden hidden\" src=\"https://media.licdn.com/dms/image/v2/D4D22AQHDemiOTqRgrw/feedshare-shrink_2048_1536/B4DZf.rETUGsAs-/0/1752324497899?e=1755734400&amp;v=beta&amp;t=I26pf09jy8SqPvjQ6wz9Mzf_1JnmqtT8WzNwjORYVMA\" alt=\"View image\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: none; height: 252px; width: 448px;\" width=\"448\" height=\"252\"> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349384715184820224?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349384715184820224?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"v2style-disable\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://media.licdn.com/dms/image/v2/D5603AQEOiFky8A67Yw/profile-displayphoto-shrink_400_400/B56ZbayBM5HgAg-/0/1747427268080?e=2147483647&amp;v=beta&amp;t=sob00yzf9LgzmEvowLXuzbmpbhizR88N5lZ4wQ9M2ck\" alt=\"Riya Thukral\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%); display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Riya Thukral </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> I help women transform from \"I have nothing to wear\"… </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> <td class=\"!w-[80px]\" data-test-id=\"network-post-follow-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 80px !important;\" width=\"80\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=riyathukral-ic&amp;entityUrn=ADoAAC3FQ6sBCDqHWNRvmRRUSdGFJBrMjFSgfhQ&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" aria-label=\"Follow\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-tertiary-emphasis border-none button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: none; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=riyathukral-ic&amp;entityUrn=ADoAAC3FQ6sBCDqHWNRvmRRUSdGFJBrMjFSgfhQ&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline \" style=\"text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 text-md leading-regular text-system-gray-90\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> Here’s what I did when the clients STOPPED coming 👇 I used to think being an image consultant meant one… </span> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349384715184820224?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-truncated~share~message-0-see~more&amp;trkEmail=eml-email_network_conversations_01-truncated~share~message-0-see~more-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <span data-test-id=\"truncated-message-see-more\" class=\"text-color-link font-bold\" style=\"font-weight: 600; color: #0a66c2;\"> see more </span> </a> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"w-auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: auto;\"> <tbody> <tr> <td class=\"pr-0.5\" data-test-reaction=\"LIKE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/91tdscn0h1aaoefui9crf11j6\" alt=\"LIKE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"PRAISE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/adig5urqxi03qzuy6iyjfm1b5\" alt=\"PRAISE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"EMPATHY\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/evs2x5zfnz5g0xrc6u22treq2\" alt=\"EMPATHY\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"reactions-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 4,830 </td> <td class=\"px-0.5\" data-test-id=\"separator\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\">·</td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"comments-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 741 Comments </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button w-full koshin__button-with-full-width\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349384715184820224?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; width: 100% !important; display: block !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349384715184820224?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; width: 100% !important; display: block !important;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr><td class=\"h-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 16px;\" height=\"16\"></td></tr> <tr> <td class=\"rounded-md\" data-test-id=\"network-post-update-card\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349384715184820224?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image&amp;trkEmail=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"block w-full h-full\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block; height: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-cool-gray-20 rounded-md\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; background-color: #edf3f8;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-center bg-no-repeat auto pt-[71%] pb-[71%] bg-system-gray-40\" align=\"center\" data-test-id=\"update-card-container\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #cfcfcf; background-position: center; background-repeat: no-repeat; padding-top: 71%; padding-bottom: 71%; background-size: cover; background-image: url(&quot;https://media.licdn.com/dms/image/v2/D5622AQF9kC01ALEmbQ/feedshare-shrink_2048_1536/B56Zf5AW_dHcA0-/0/1752229313715?e=1755734400&amp;v=beta&amp;t=w5te4CsiM0_kH11dAvxkSTbSK9NsAmT4AGViDkilzF0&quot;);\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"h-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 100%;\" height=\"100%\"> <tbody> <tr> <td align=\"center\" class=\"overflow-hidden\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; overflow: hidden;\"> <img class=\"w-[448px] h-[252px] hidden hidden\" src=\"https://media.licdn.com/dms/image/v2/D5622AQF9kC01ALEmbQ/feedshare-shrink_2048_1536/B56Zf5AW_dHcA0-/0/1752229313715?e=1755734400&amp;v=beta&amp;t=w5te4CsiM0_kH11dAvxkSTbSK9NsAmT4AGViDkilzF0\" alt=\"View image\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: none; height: 252px; width: 448px;\" width=\"448\" height=\"252\"> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349646637910110208?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349646637910110208?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"v2style-disable\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://media.licdn.com/dms/image/v2/D4D03AQHfsFFgVLJI8w/profile-displayphoto-shrink_400_400/B4DZcfhX2iGkAg-/0/1748580536836?e=2147483647&amp;v=beta&amp;t=xqcjdBQ0f8EBJ4_i1VA4NHSRKF15Tz6RVtNUmY1qJ80\" alt=\"Shikhar Agrawal\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%); display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Shikhar Agrawal </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> Co-Founder &amp; CEO @Anahad | IIT Bombay | YC W20 |… </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> <td class=\"!w-[80px]\" data-test-id=\"network-post-follow-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 80px !important;\" width=\"80\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=shikhar-agrawal-367969157&amp;entityUrn=ADoAACWyAL8BObIv2ZjzJmQlBeVnoPmFVhRUiJc&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" aria-label=\"Follow\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-tertiary-emphasis border-none button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: none; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=shikhar-agrawal-367969157&amp;entityUrn=ADoAACWyAL8BObIv2ZjzJmQlBeVnoPmFVhRUiJc&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline \" style=\"text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 text-md leading-regular text-system-gray-90\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> at Indian Institute of Technology, Bombay, we were allowed to “CHEAT” during exams [legally] 😳 well... sort… </span> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349646637910110208?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-truncated~share~message-0-see~more&amp;trkEmail=eml-email_network_conversations_01-truncated~share~message-0-see~more-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <span data-test-id=\"truncated-message-see-more\" class=\"text-color-link font-bold\" style=\"font-weight: 600; color: #0a66c2;\"> see more </span> </a> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"w-auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: auto;\"> <tbody> <tr> <td class=\"pr-0.5\" data-test-reaction=\"LIKE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/91tdscn0h1aaoefui9crf11j6\" alt=\"LIKE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"PRAISE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/adig5urqxi03qzuy6iyjfm1b5\" alt=\"PRAISE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"EMPATHY\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/evs2x5zfnz5g0xrc6u22treq2\" alt=\"EMPATHY\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"reactions-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 15,377 </td> <td class=\"px-0.5\" data-test-id=\"separator\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\">·</td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"comments-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 767 Comments </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button w-full koshin__button-with-full-width\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349646637910110208?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; width: 100% !important; display: block !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349646637910110208?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; width: 100% !important; display: block !important;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr><td class=\"h-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 16px;\" height=\"16\"></td></tr> <tr> <td class=\"rounded-md\" data-test-id=\"network-post-update-card\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349646637910110208?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image&amp;trkEmail=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"block w-full h-full\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block; height: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-cool-gray-20 rounded-md\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; background-color: #edf3f8;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-center bg-no-repeat auto pt-[71%] pb-[71%] bg-system-gray-40\" align=\"center\" data-test-id=\"update-card-container\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #cfcfcf; background-position: center; background-repeat: no-repeat; padding-top: 71%; padding-bottom: 71%; background-size: cover; background-image: url(&quot;https://media.licdn.com/dms/image/v2/D4D22AQEb0XB7uGLQhg/feedshare-shrink_2048_1536/B4DZf8wqqMHkAs-/0/1752292307055?e=1755734400&amp;v=beta&amp;t=Wu_OLaLHN_jwthfUp7IjwzIiLZ_b-v4VI7QXTRRuYEo&quot;);\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"h-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 100%;\" height=\"100%\"> <tbody> <tr> <td align=\"center\" class=\"overflow-hidden\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; overflow: hidden;\"> <img class=\"w-[448px] h-[252px] hidden hidden\" src=\"https://media.licdn.com/dms/image/v2/D4D22AQEb0XB7uGLQhg/feedshare-shrink_2048_1536/B4DZf8wqqMHkAs-/0/1752292307055?e=1755734400&amp;v=beta&amp;t=Wu_OLaLHN_jwthfUp7IjwzIiLZ_b-v4VI7QXTRRuYEo\" alt=\"View image\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: none; height: 252px; width: 448px;\" width=\"448\" height=\"252\"> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349411400068341760?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349411400068341760?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"v2style-disable\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://media.licdn.com/dms/image/v2/D5603AQHavAhaiQz-GA/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1695091018737?e=2147483647&amp;v=beta&amp;t=-PTvIoTLZEfsxcK-1LdVBOdbomgc9ONwPsX3dZg8FhA\" alt=\"Joshua Sherman\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%); display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Joshua Sherman </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> Driver Manager </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> <td class=\"!w-[80px]\" data-test-id=\"network-post-follow-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 80px !important;\" width=\"80\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=jdsherman42&amp;entityUrn=ADoAAC4t5d4BIKOLieDfFvUSEQHKTH6SD4gOLno&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" aria-label=\"Follow\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-tertiary-emphasis border-none button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: none; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=jdsherman42&amp;entityUrn=ADoAAC4t5d4BIKOLieDfFvUSEQHKTH6SD4gOLno&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline \" style=\"text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 text-md leading-regular text-system-gray-90\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> 🚫 Interview Ghosting Needs to Stop I’m seeing this way too often… and honestly, it’s beyond… </span> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349411400068341760?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-truncated~share~message-0-see~more&amp;trkEmail=eml-email_network_conversations_01-truncated~share~message-0-see~more-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <span data-test-id=\"truncated-message-see-more\" class=\"text-color-link font-bold\" style=\"font-weight: 600; color: #0a66c2;\"> see more </span> </a> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"w-auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: auto;\"> <tbody> <tr> <td class=\"pr-0.5\" data-test-reaction=\"LIKE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/91tdscn0h1aaoefui9crf11j6\" alt=\"LIKE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"PRAISE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/adig5urqxi03qzuy6iyjfm1b5\" alt=\"PRAISE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"EMPATHY\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/evs2x5zfnz5g0xrc6u22treq2\" alt=\"EMPATHY\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"reactions-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 8,953 </td> <td class=\"px-0.5\" data-test-id=\"separator\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\">·</td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"comments-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 1,541 Comments </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button w-full koshin__button-with-full-width\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349411400068341760?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; width: 100% !important; display: block !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349411400068341760?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; width: 100% !important; display: block !important;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349893574521491456?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349893574521491456?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"v2style-disable\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://static.licdn.com/sc/h/4eby4moebno1i6r34if7lud8o\" alt=\"Ugomma Etoama\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%); display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Ugomma Etoama </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> Physicist (B.Sc. MSc. Distinction) Finance (DCP… </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> <td class=\"!w-[80px]\" data-test-id=\"network-post-follow-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 80px !important;\" width=\"80\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=quincy-etoama&amp;entityUrn=ADoAACYRBWsBKdMWmkDuUYop__anBCo6v6wMYRU&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" aria-label=\"Follow\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-tertiary-emphasis border-none button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: none; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=quincy-etoama&amp;entityUrn=ADoAACYRBWsBKdMWmkDuUYop__anBCo6v6wMYRU&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline \" style=\"text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 text-md leading-regular text-system-gray-90\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> Education in Nigeria just got one of its hardest slaps — Not from a policy or government decision, but from… </span> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349893574521491456?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-truncated~share~message-0-see~more&amp;trkEmail=eml-email_network_conversations_01-truncated~share~message-0-see~more-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <span data-test-id=\"truncated-message-see-more\" class=\"text-color-link font-bold\" style=\"font-weight: 600; color: #0a66c2;\"> see more </span> </a> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"w-auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: auto;\"> <tbody> <tr> <td class=\"pr-0.5\" data-test-reaction=\"LIKE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/91tdscn0h1aaoefui9crf11j6\" alt=\"LIKE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"PRAISE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/adig5urqxi03qzuy6iyjfm1b5\" alt=\"PRAISE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"EMPATHY\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/evs2x5zfnz5g0xrc6u22treq2\" alt=\"EMPATHY\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"reactions-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 1,810 </td> <td class=\"px-0.5\" data-test-id=\"separator\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\">·</td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"comments-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 488 Comments </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button w-full koshin__button-with-full-width\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349893574521491456?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; width: 100% !important; display: block !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349893574521491456?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; width: 100% !important; display: block !important;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr><td class=\"h-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 16px;\" height=\"16\"></td></tr> <tr> <td class=\"rounded-md\" data-test-id=\"network-post-update-card\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7349893574521491456?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image&amp;trkEmail=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"block w-full h-full\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block; height: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-cool-gray-20 rounded-md\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; background-color: #edf3f8;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-center bg-no-repeat auto pt-[71%] pb-[71%] bg-system-gray-40\" align=\"center\" data-test-id=\"update-card-container\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #cfcfcf; background-position: center; background-repeat: no-repeat; padding-top: 71%; padding-bottom: 71%; background-size: cover; background-image: url(&quot;https://media.licdn.com/dms/image/v2/D4D22AQHa4T_V9D3f9A/feedshare-shrink_800/B4DZgARPLfGkAg-/0/1752351180145?e=1755734400&amp;v=beta&amp;t=ap7ouyRACQY5kXijCO0eCCL80wushb0vtC-eH8cohwI&quot;);\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"h-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 100%;\" height=\"100%\"> <tbody> <tr> <td align=\"center\" class=\"overflow-hidden\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; overflow: hidden;\"> <img class=\"w-[448px] h-[252px] hidden hidden\" src=\"https://media.licdn.com/dms/image/v2/D4D22AQHa4T_V9D3f9A/feedshare-shrink_800/B4DZgARPLfGkAg-/0/1752351180145?e=1755734400&amp;v=beta&amp;t=ap7ouyRACQY5kXijCO0eCCL80wushb0vtC-eH8cohwI\" alt=\"View image\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: none; height: 252px; width: 448px;\" width=\"448\" height=\"252\"> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"pt-4 pb-2 px-3 bg-color-background-canvas\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding-left: 24px; padding-right: 24px; padding-bottom: 16px; padding-top: 32px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-footer_promo-0-footer_see_all&amp;trkEmail=eml-email_network_conversations_01-footer_promo-0-footer_see_all-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" aria-label=\"See more on LinkedIn\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-footer_promo-0-footer_see_all&amp;trkEmail=eml-email_network_conversations_01-footer_promo-0-footer_see_all-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> See more on LinkedIn </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-lg text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 20px; color: #114951;\"> Get the new LinkedIn desktop app </h2> </td> </tr> <tr> <td class=\"text-center pb-2\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <a href=\"https://apps.microsoft.com/store/detail/9WZDNCRFJ4Q7?launch=true&amp;cid=linkedin_email_upsell&amp;mode=full\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it from Microsoft\" src=\"https://static.licdn.com/sc/h/ejpkkpwvqks31a3cjqokb7fbm\" class=\"h-[40px] w-[112px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 112px;\" width=\"112\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-md text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 16px; color: #114951;\"> Also available on mobile </h2> </td> </tr> <tr> <td class=\"text-center\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <a href=\"https://itunes.apple.com/us/app/linkedin/id288429040?pt=10746&amp;ct=st_appsite_flagship&amp;mt=8\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Download on the App Store\" src=\"https://static.licdn.com/sc/h/76yzkd0h5kiv27lrd4yaenylk\" class=\"h-[40px] w-[120px] pr-1\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 120px; padding-right: 8px;\" width=\"120\" height=\"40\"> </a> <a href=\"https://play.google.com/store/apps/details?id=com.linkedin.android&amp;referrer=st_appsite_flagship\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it on Google Play\" src=\"https://static.licdn.com/sc/h/142qudwblp58zwmc9vkqfplug\" class=\"h-[40px] w-[134px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 134px;\" width=\"134\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px;\"><hr class=\"border-none bg-[#e0dfdd] h-[1px]\" style=\"height: 1px; border-style: none; background-color: #e0dfdd;\"></td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" data-test-id=\"email-footer__intended\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_network_conversations_01-SecurityHelp-0-footerglimmer-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving Network Conversations emails. Some content may be automatically translated based on <a href=\"https://www.linkedin.com/mypreferences/d/language-for-translation\" target=\"_blank\" class=\"link-no-visited-state\" data-tracking-will-navigate data-tracking-control-name=\"email_network_conversations_content_settings_link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-weight: 600; color: #0a66c2;\">your settings</a>.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-unsubscribe-0-footerGlimmer&amp;trkEmail=eml-email_network_conversations_01-unsubscribe-0-footerGlimmer-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;loid=AQGUGyvR4Jn2CQAAAZgglWEFwUjTGkfIpllsy9gFJSsYPfB0b7UtzstXxBuqku3BcDYNry5F53C9iT-h-8G1r_0GFMPSiPYFFCHqDAL3qvvPwOPJCF_Q\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Unsubscribe</a>   ·   <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-help-0-footerglimmer&amp;trkEmail=eml-email_network_conversations_01-help-0-footerglimmer-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" data-test-help-link class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1ARyambDmEObQ1&amp;trk=eml-email_network_conversations_01-footer-0-logoGlimmer&amp;trkEmail=eml-email_network_conversations_01-footer-0-logoGlimmer-null-poh2nf~md9nf47a~ak-null-null&amp;eid=poh2nf-md9nf47a-ak&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFrT1c1bU5EZGhMV0ZyOlpXMWhhV3hmYm1WMGQyOXlhMTlqYjI1MlpYSnpZWFJwYjI1elh6QXg6.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','Anupam Mittal shared a post: Saw this woman the other day, and thought maybe she should learn Python 🤷‍♀️\r\n\r\nPerhaps she can fine-tune an LLM too, while delivering your groceries…\r\nLIKE PRAISE EMPATHY 7,712, 767 Comments\r\n\r\n\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7349781656452460544?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&midToken=AQE-iPshthTClw&midSig=1ARyambDmEObQ1&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~md9nf47a~ak-null-null&eid=poh2nf-md9nf47a-ak&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\r\n        \r\n\r\n\r\n\r\n          \r\n        \r\n\r\n          Riya Thukral shared a post: Here’s what I did when the clients STOPPED coming 👇\r\n\r\n\r\nI used to think being an image consultant meant one thing - styling.\r\n\r\nPick outfits. Match…\r\nLIKE PRAISE EMPATHY 4,830, 741 Comments\r\n\r\n\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7349384715184820224?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&midToken=AQE-iPshthTClw&midSig=1ARyambDmEObQ1&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~md9nf47a~ak-null-null&eid=poh2nf-md9nf47a-ak&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\r\n        \r\n\r\n\r\n\r\n          \r\n        \r\n\r\n          Shikhar Agrawal shared a post: at Indian Institute of Technology, Bombay, we were allowed to “CHEAT” during exams [legally] 😳\r\n\r\nwell... sort of.\r\n\r\nso in 2017.. each student was…\r\nLIKE PRAISE EMPATHY 15,377, 767 Comments\r\n\r\n\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7349646637910110208?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&midToken=AQE-iPshthTClw&midSig=1ARyambDmEObQ1&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~md9nf47a~ak-null-null&eid=poh2nf-md9nf47a-ak&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\r\n        \r\n\r\n\r\n\r\n          \r\n        \r\n\r\n          Joshua Sherman shared a post: 🚫 Interview Ghosting Needs to Stop\r\n\r\nI’m seeing this way too often… and honestly, it’s beyond frustrating.\r\nYou go through the interview. You’re told,…\r\nLIKE PRAISE EMPATHY 8,953, 1,541 Comments\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7349411400068341760?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&midToken=AQE-iPshthTClw&midSig=1ARyambDmEObQ1&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~md9nf47a~ak-null-null&eid=poh2nf-md9nf47a-ak&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\r\n        \r\n\r\n\r\n\r\n          \r\n        \r\n\r\n          Ugomma Etoama shared a post: Education in Nigeria just got one of its hardest slaps —\r\n\r\nNot from a policy or government decision, but from a job interview organized by a popular…\r\nLIKE PRAISE EMPATHY 1,810, 488 Comments\r\n\r\n\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7349893574521491456?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&midToken=AQE-iPshthTClw&midSig=1ARyambDmEObQ1&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~md9nf47a~ak-null-null&eid=poh2nf-md9nf47a-ak&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\r\n        \r\n\r\n\r\nSee more on LinkedIn: https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&midToken=AQE-iPshthTClw&midSig=1ARyambDmEObQ1&trk=eml-email_network_conversations_01-footer_promo-0-footer_see_all&trkEmail=eml-email_network_conversations_01-footer_promo-0-footer_see_all-null-poh2nf~md9nf47a~ak-null-null&eid=poh2nf-md9nf47a-ak&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\r\n\r\n----------------------------------------\r\n\r\nThis email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\nLearn why we included this: https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&midToken=AQE-iPshthTClw&midSig=1ARyambDmEObQ1&trk=eml-email_network_conversations_01-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_network_conversations_01-SecurityHelp-0-textfooterglimmer-null-poh2nf~md9nf47a~ak-null-null&eid=poh2nf-md9nf47a-ak&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\r\nYou are receiving Network Conversations emails. Some content may be automatically translated based on\r\n      <a href=\"https://www.linkedin.com/mypreferences/d/language-for-translation\" target=\"_blank\" class=\"link-no-visited-state\" data-tracking-will-navigate data-tracking-control-name=\"email_network_conversations_content_settings_link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-weight: 600; color: #0a66c2;\">your settings</a>.\r\n\r\nUnsubscribe: https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&midToken=AQE-iPshthTClw&midSig=1ARyambDmEObQ1&trk=eml-email_network_conversations_01-unsubscribe-0-textfooterglimmer&trkEmail=eml-email_network_conversations_01-unsubscribe-0-textfooterglimmer-null-poh2nf~md9nf47a~ak-null-null&eid=poh2nf-md9nf47a-ak&loid=AQGUGyvR4Jn2CQAAAZgglWEFwUjTGkfIpllsy9gFJSsYPfB0b7UtzstXxBuqku3BcDYNry5F53C9iT-h-8G1r_0GFMPSiPYFFCHqDAL3qvvPwOPJCF_Q\r\nHelp: https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bes01BwslSs2ZR1oTQ50L9g%3D%3D&midToken=AQE-iPshthTClw&midSig=1ARyambDmEObQ1&trk=eml-email_network_conversations_01-help-0-textfooterglimmer&trkEmail=eml-email_network_conversations_01-help-0-textfooterglimmer-null-poh2nf~md9nf47a~ak-null-null&eid=poh2nf-md9nf47a-ak&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU1YmM4NmNkZDM0MDllYWE4ZjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjNmUzZmU3YmE1Y2Q5OTEwZDdhYWZlOTY1YmJiZTJiOTdiZmNiMDYxNDdkNWI1Y2YsMSwx\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.\r\nLinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',0,0,0,0,0,0,'2025-07-19 02:48:38','2025-12-09 19:17:21','2025-12-09 19:17:21','2025-12-09 19:17:21',NULL,NULL,NULL),
(486,4,' <BL3PR20MB4924FE78C0FB64711FD35EAAAF53A@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: Update','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nMorning Rick,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nThe validation units for our next production batch came in late afternoon yesterday, and I\'ve compiled some images, data, and footage for you here:</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nhttps://drive.google.com/drive/folders/10QwL2p_oPPVqzDcAw_dr9K4i4d-OaBxl?usp=sharing</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nWith this batch we have implemented optimizations to the magnetic tolerances and thermal dissipation rates. The data entailed will show that we are at performance parity with the prevailing Chinese product offering, with a clear path to actually exceed them\r\n in the near future on key measurements.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nWe are also going to be working with a media professional to get high quality digital materials for marketing and promotion when Jose gets back in town next Sunday.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nRegards,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nJason</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Wednesday, July 16, 2025 12:15 PM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Update</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>Thanks for these. &nbsp;\r\n<div>Looking forward to the video. &nbsp;\r\n<div>Rick<br>\r\n<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<p class=\"x_gmail_quote\" style=\"color:#000\">On July 16, 2025 at 12:09:01 PM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_gmail_quote\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nCertainly, here are some still images of one of the Raven motors from our last production batch. This Friday I will also provide video footage of an operating unit from our current/next production batch, machine shop fulfillment rates have been highly variable\r\n recently.</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, July 15, 2025 3:30 PM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Update</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">In the meantime, can you send me pics or videos of the prototypes you’ve built through the other mfg groups…</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">We need to show proof of concept for your work specifically…</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">So anything you have to show you can build or have built these motors will help!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_airmail_on\">On July 15, 2025 at 5:25:53 PM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_clean_bq\">\r\n<div>\r\n<div>\r\n<div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\n<span>Rick,</span></div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\n<span><br>\r\n</span></div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\n<span>That’s great to hear, thanks for the update. Looking forward to it!</span></div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\n<span><br>\r\n</span></div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\n<span>Regards,</span></div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\n<span>Jason</span></div>\r\n</div>\r\n<div id=\"x_x_ms-outlook-mobile-body-separator-line\" dir=\"auto\"><span><br>\r\n</span></div>\r\n<div id=\"x_x_ms-outlook-mobile-signature\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_divRplyFwdMsg\" dir=\"ltr\"><span><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, July 15, 2025 1:53:37 PM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Update</font></span>\r\n<div><span>&nbsp;</span></div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>Jason,</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>Wanted to get back to you in regards to our process.</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>We are currently doing reviews and creating our overall budget.</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>That said, we would plan to bring&nbsp;</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>Corvex Systems inside of Mavrix1 and&nbsp;</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>completely build out our manufacturing facility&nbsp;</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>in the CENTCOM/SOCOM neighborhood.</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>I think you’ll be impressed by what we have planned and</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>we look forward to including you and your team.</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>That said, let me know if you have any questions.</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>We’ll be in touch soon!</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>Thank you,</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>Rick</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span><br>\r\n</span></div>\r\n<div class=\"x_x_x_gmail_signature\"><span>Rick Mislan, PhD<br>\r\n</span>\r\n<div><span><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\">https://mavrix.one</a></span></div>\r\n<div><span><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></span></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n<hr>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Morning Rick,\r\n\r\nThe validation units for our next production batch came in late afternoon yesterday, and I\'ve compiled some images, data, and footage for you here:\r\n\r\nhttps://drive.google.com/drive/folders/10QwL2p_oPPVqzDcAw_dr9K4i4d-OaBxl?usp=sharing\r\n\r\nWith this batch we have implemented optimizations to the magnetic tolerances and thermal dissipation rates. The data entailed will show that we are at performance parity with the prevailing Chinese product offering, with a clear path to actually exceed them in the near future on key measurements.\r\n\r\nWe are also going to be working with a media professional to get high quality digital materials for marketing and promotion when Jose gets back in town next Sunday.\r\n\r\nRegards,\r\nJason\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Wednesday, July 16, 2025 12:15 PM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Update\r\n\r\nThanks for these.\r\nLooking forward to the video.\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\nOn July 16, 2025 at 12:09:01 PM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nCertainly, here are some still images of one of the Raven motors from our last production batch. This Friday I will also provide video footage of an operating unit from our current/next production batch, machine shop fulfillment rates have been highly variable recently.\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, July 15, 2025 3:30 PM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Update\r\n\r\nIn the meantime, can you send me pics or videos of the prototypes you’ve built through the other mfg groups…\r\nWe need to show proof of concept for your work specifically…\r\nSo anything you have to show you can build or have built these motors will help!\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn July 15, 2025 at 5:25:53 PM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nRick,\r\n\r\nThat’s great to hear, thanks for the update. Looking forward to it!\r\n\r\nRegards,\r\nJason\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, July 15, 2025 1:53:37 PM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Update\r\n\r\nJason,\r\n\r\nWanted to get back to you in regards to our process.\r\nWe are currently doing reviews and creating our overall budget.\r\nThat said, we would plan to bring\r\nCorvex Systems inside of Mavrix1 and\r\ncompletely build out our manufacturing facility\r\nin the CENTCOM/SOCOM neighborhood.\r\n\r\nI think you’ll be impressed by what we have planned and\r\nwe look forward to including you and your team.\r\n\r\nThat said, let me know if you have any questions.\r\nWe’ll be in touch soon!\r\nThank you,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n________________________________\r\n',0,0,0,0,0,0,'2025-07-19 12:32:48','2025-12-09 19:17:21','2025-12-09 19:17:21','2025-12-09 19:17:21',NULL,NULL,NULL),
(487,4,' <BL3PR20MB4924F23D4D0FC87F1E75AA48AF53A@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: Update','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n</head>\r\n<body>\r\n<div>\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" dir=\"ltr\">\r\nSounds great, let me know if you need anything else in the meantime.</div>\r\n</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"ms-outlook-mobile-signature\">\r\n<div></div>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Saturday, July 19, 2025 5:54:05 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Update</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Morning, Jason!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thank you for these.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Lot of meetings on our end next week.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">I’ll be in touch.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks again!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height:11px\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On July 19, 2025 at 8:33:32 AM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nMorning Rick,</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nThe validation units for our next production batch came in late afternoon yesterday, and I\'ve compiled some images, data, and footage for you here:</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nhttps://drive.google.com/drive/folders/10QwL2p_oPPVqzDcAw_dr9K4i4d-OaBxl?usp=sharing</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nWith this batch we have implemented optimizations to the magnetic tolerances and thermal dissipation rates. The data entailed will show that we are at performance parity with the prevailing Chinese product offering, with a clear path to actually exceed them\r\n in the near future on key measurements.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nWe are also going to be working with a media professional to get high quality digital materials for marketing and promotion when Jose gets back in town next Sunday.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nRegards,</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nJason</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Wednesday, July 16, 2025 12:15 PM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Update</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>Thanks for these. &nbsp;\r\n<div>Looking forward to the video. &nbsp;\r\n<div>Rick<br>\r\n<br>\r\n<div class=\"x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height:11px\"></div>\r\n</div>\r\n<p class=\"x_x_gmail_quote\" style=\"color:#000\">On July 16, 2025 at 12:09:01 PM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_gmail_quote\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nCertainly, here are some still images of one of the Raven motors from our last production batch. This Friday I will also provide video footage of an operating unit from our current/next production batch, machine shop fulfillment rates have been highly variable\r\n recently.</div>\r\n<div id=\"x_x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, July 15, 2025 3:30 PM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Update</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">In the meantime, can you send me pics or videos of the prototypes you’ve built through the other mfg groups…</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">We need to show proof of concept for your work specifically…</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">So anything you have to show you can build or have built these motors will help!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height:11px\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_x_airmail_on\">On July 15, 2025 at 5:25:53 PM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_x_clean_bq\">\r\n<div>\r\n<div>\r\n<div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\n<span>Rick,</span></div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\n<span><br>\r\n</span></div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\n<span>That’s great to hear, thanks for the update. Looking forward to it!</span></div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\n<span><br>\r\n</span></div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\n<span>Regards,</span></div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\n<span>Jason</span></div>\r\n</div>\r\n<div id=\"x_x_x_ms-outlook-mobile-body-separator-line\" dir=\"auto\"><span><br>\r\n</span></div>\r\n<div id=\"x_x_x_ms-outlook-mobile-signature\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_x_divRplyFwdMsg\" dir=\"ltr\"><span><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, July 15, 2025 1:53:37 PM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Update</font></span>\r\n<div><span>&nbsp;</span></div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>Jason,</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>Wanted to get back to you in regards to our process.</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>We are currently doing reviews and creating our overall budget.</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>That said, we would plan to bring&nbsp;</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>Corvex Systems inside of Mavrix1 and&nbsp;</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>completely build out our manufacturing facility&nbsp;</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>in the CENTCOM/SOCOM neighborhood.</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>I think you’ll be impressed by what we have planned and</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>we look forward to including you and your team.</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>That said, let me know if you have any questions.</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>We’ll be in touch soon!</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>Thank you,</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>Rick</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span><br>\r\n</span></div>\r\n<div class=\"x_x_x_x_gmail_signature\"><span>Rick Mislan, PhD<br>\r\n</span>\r\n<div><span><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\">https://mavrix.one</a></span></div>\r\n<div><span><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height:11px\"></span></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n<hr>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Sounds great, let me know if you need anything else in the meantime.\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Saturday, July 19, 2025 5:54:05 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Update\r\n\r\nMorning, Jason!\r\nThank you for these.\r\nLot of meetings on our end next week.\r\nI’ll be in touch.\r\nThanks again!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn July 19, 2025 at 8:33:32 AM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nMorning Rick,\r\n\r\nThe validation units for our next production batch came in late afternoon yesterday, and I\'ve compiled some images, data, and footage for you here:\r\n\r\nhttps://drive.google.com/drive/folders/10QwL2p_oPPVqzDcAw_dr9K4i4d-OaBxl?usp=sharing\r\n\r\nWith this batch we have implemented optimizations to the magnetic tolerances and thermal dissipation rates. The data entailed will show that we are at performance parity with the prevailing Chinese product offering, with a clear path to actually exceed them in the near future on key measurements.\r\n\r\nWe are also going to be working with a media professional to get high quality digital materials for marketing and promotion when Jose gets back in town next Sunday.\r\n\r\nRegards,\r\nJason\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Wednesday, July 16, 2025 12:15 PM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Update\r\n\r\nThanks for these.\r\nLooking forward to the video.\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\nOn July 16, 2025 at 12:09:01 PM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nCertainly, here are some still images of one of the Raven motors from our last production batch. This Friday I will also provide video footage of an operating unit from our current/next production batch, machine shop fulfillment rates have been highly variable recently.\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, July 15, 2025 3:30 PM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Update\r\n\r\nIn the meantime, can you send me pics or videos of the prototypes you’ve built through the other mfg groups…\r\nWe need to show proof of concept for your work specifically…\r\nSo anything you have to show you can build or have built these motors will help!\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn July 15, 2025 at 5:25:53 PM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nRick,\r\n\r\nThat’s great to hear, thanks for the update. Looking forward to it!\r\n\r\nRegards,\r\nJason\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, July 15, 2025 1:53:37 PM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Update\r\n\r\nJason,\r\n\r\nWanted to get back to you in regards to our process.\r\nWe are currently doing reviews and creating our overall budget.\r\nThat said, we would plan to bring\r\nCorvex Systems inside of Mavrix1 and\r\ncompletely build out our manufacturing facility\r\nin the CENTCOM/SOCOM neighborhood.\r\n\r\nI think you’ll be impressed by what we have planned and\r\nwe look forward to including you and your team.\r\n\r\nThat said, let me know if you have any questions.\r\nWe’ll be in touch soon!\r\nThank you,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n________________________________\r\n',0,0,0,0,0,0,'2025-07-19 14:05:12','2025-12-09 19:17:22','2025-12-09 19:17:22','2025-12-09 19:17:22',NULL,NULL,NULL),
(488,4,'<NjEQP7ATpp6EI8jAXKshcJnu8AW7cBhKlnDYJXcz0@mavrix.one>',NULL,NULL,'New MAVRIX Mission Signup','rick@mavrix.one','MAVRIX Website','A new user has joined the MAVRIX mission!\r\n\r\nEmail: lukehollis@gmail.com\r\n\r\n','A new user has joined the MAVRIX mission!\r\n\r\nEmail: lukehollis@gmail.com\r\n\r\n',0,0,0,0,0,0,'2025-07-19 14:47:30','2025-12-09 19:17:22','2025-12-09 19:17:22','2025-12-09 19:17:22',NULL,NULL,NULL),
(489,4,'<AFDF9E95-C3FF-4C0E-BA54-39C485897503@bayfrontcapitalllc.com>',NULL,NULL,'Re: Agreement','brian@bayfrontcapitalllc.com','Brian Stufflebean','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body dir=\"auto\">Rick,<div><br></div><div>Mixing some apples and oranges in this, let’s see if we can walk through it on Monday, if not, in person on Tuesday.</div><div><br></div><div>Example: there is NO vesting period on either your or Bayfront allocation of shares - considered as Founder Share Allocation.</div><div><br></div><div>If I break free this afternoon, might have some time then.<br id=\"lineBreakAtBeginningOfSignature\"><div dir=\"ltr\"><div class=\"\"><span style=\"font-size: 17pt;\"><br></span></div><div class=\"\"><div class=\"\"><div><span class=\"\" style=\"background-color: rgba(255, 255, 255, 0);\">Best Regards,&nbsp;</span></div><div><span class=\"\" style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div><span class=\"\" style=\"background-color: rgba(255, 255, 255, 0);\">Brian C. Stufflebean, CEO<br class=\"\"><b class=\"\">Bayfront Capital, LLC</b><br class=\"\"><span class=\"\"><a href=\"tel:(941)545-4153\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"0/2\" style=\"text-decoration-color: rgba(128, 128, 128, 0.38);\">(941)545-4153</a>&nbsp;Cell</span></span></div><div><span style=\"background-color: rgba(255, 255, 255, 0);\"><span class=\"\"><a href=\"tel:(866)896-2423\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"0/3\" style=\"text-decoration-color: rgba(128, 128, 128, 0.38);\">(866)896-2423</a>&nbsp;Fax<br class=\"\"><a href=\"mailto:brian@bayfrontcapitalllc.com\" class=\"\">brian@bayfrontcapitalllc.com</a><br class=\"\"><a href=\"http://www.bayfrontcapitalllc.com/\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"link\" x-apple-data-detectors-result=\"0/5\" style=\"text-decoration-color: rgba(128, 128, 128, 0.38);\">www.bayfrontcapitalllc.com</a></span><br class=\"\">&nbsp; &nbsp; &nbsp;&nbsp;<br class=\"\"><br class=\"\"></span></div><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"Apple-interchange-newline\"><br></span><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"Apple-interchange-newline\"><br class=\"Apple-interchange-newline\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><b class=\"\">CONFIDENTIALITY NOTICE / NOTICE OF&nbsp;<u class=\"\">NOT A REGISTERED BROKER/DEALER:</u></b><span class=\"\">&nbsp;Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with&nbsp;FINRA. Nor does&nbsp;it provide tax or investment advice. &nbsp;Any references made to any transaction in any communication is being made as a business consultant. &nbsp; This is not a&nbsp;solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law.&nbsp;This communication&nbsp;is confidential and intended only for the intended&nbsp;recipient. &nbsp;If you are not the intended recipient, you&nbsp;may not copy, disclose, or distribute this message&nbsp;to anyone else; any such actions may be unlawful. If you have received this communication in error,&nbsp;please contact the sender of the message to inform him or her of the error.</span></span></div><div><span class=\"\"><br></span></div></div></div></div><div class=\"\"><span style=\"font-size: 17pt;\"><br></span></div><div class=\"\"><span style=\"font-size: 17pt;\">Sent from my iPhone</span></div></div><div dir=\"ltr\"><br><blockquote type=\"cite\">On Jul 18, 2025, at 9:54 PM, Rick &lt;rick@mavrix.one&gt; wrote:<br><br></blockquote></div><blockquote type=\"cite\"><div dir=\"ltr\">﻿\r\n    <style>body { font-family: Helvetica, Arial; font-size: 13px; }</style><div style=\"font-family:Helvetica,Arial;font-size:13px; \"><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">Hi Brian,<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">I\'ve reviewed the attached engagement agreement, made some typo corrections, but still need clarification on several key terms before I can move forward. Let me break down my questions. I apologize in advance for not being smarter about some of these things:<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\"><b><i>Warrant Structure (Section 2.a):</i></b>&nbsp;</p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">Based on our discussions, I understood the 70% warrant allocation would be:<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">- Rick Mislan (Founder): 30%. non-dilutable?<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">- Bayfront Capital LLC: 30%.&nbsp;<o:p></o:p>non-dilutable?</p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">- Capital Reserve Pool: 40% for future investors. non-dilatable?&nbsp;</p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\"><o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">However, the agreement shows Bayfront receiving the full 70%.&nbsp;</p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">Don’t we need to correct this to reflect the actual arrangement.<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">Additionally, the warrant terms need specification:<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">-&nbsp;<b>Type</b>: Common or Preferred stock?<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">-&nbsp;<b>Anti-dilution</b>: Which positions are protected?<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">-&nbsp;<b>Exercise Price</b>: What\'s the strike price?<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">-&nbsp;<b>Expiration</b>: Standard 10-year term?<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">-&nbsp;<b>Vesting</b>: I propose my 30% fully vested, your 30% over 24 months<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">-&nbsp;<b>Special Rights</b>: Any board seats or liquidation preferences?<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\"><b><i>Time Commitments and Exclusivity:</i></b></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">1.&nbsp;<b>Project Contact Definition</b>: The 365-day period references \"latest project contact\" - please define when this starts/ends.</p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">2.&nbsp;<b>Exclusivity Period</b>: The auto-renewing 365-day exclusive is concerning. I propose a fixed 180-day period.</p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">3.&nbsp;<b>ROFR Duration</b>: 180 months (15 years) is excessive. Industry standard is 12-24 months.<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\"><b><i>Financial Terms and Access:</i></b></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">1.&nbsp;<b>3% Fee Structure</b>:&nbsp;<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">&nbsp;&nbsp;&nbsp;- Who pays this - me or the investors?<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">&nbsp;&nbsp;&nbsp;- Is this per tranche or total commitment?<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">&nbsp;&nbsp;&nbsp;- How is this split between you, me, and Vijay?<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">2.&nbsp;<b>Financial Reporting</b>: Monthly reports with bank access seems excessive. I propose quarterly statements. Also, please clarify which entity this applies to - Mavrix1, me personally, or Bayfront?<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\"><b><i>Entity Structure Clarification:</i></b></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">I need clarity on the corporate structure and other related deal specific items:<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">- Is Mavrix1 the operating company (which I own 100%)?<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">- Is Bayfront Capital a separate entity where I\'d own 30%?<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">- Are Mavrix1 and Rick Mislan treated as the same party in this agreement?<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">- Do I owe fees if Bayfront doesn’t get funded?</p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">- What compensation do I receive for bringing Mavrix1 to Bayfront?<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">- Should that be addressed in this agreement, or should you and I have a separate agreement to represent this arrangement?<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">- Do I get a percentage of each and every deal you bring in?&nbsp;</p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">- Travel, who is paying for that, is that encumbered in each deal?</p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\"><b><i>Next Steps:</i></b></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">Let\'s schedule a call to work through these items. I\'m ready to move forward once I have a clear understanding of the terms that reflect our actual business arrangement.<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\"><o:p>&nbsp;</o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">Thank you,<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin: 0in; font-size: medium; font-family: &quot;Times New Roman&quot;, serif;\">Rick<o:p></o:p></p></div><br><div class=\"gmail_signature\">\r\n        <title></title>\r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div><div><img src=\"cid:Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height: 11px;\" data-unique-identifier=\"\"></div>\r\n     \r\n</div>\r\n\r\n\r\n<div>&lt;BAYFRONT CAPITAL LLC- MAVRIX 1 - Engagement Agreement 07 01 2025 (DRAFT).docx&gt;</div></div></blockquote></div></body></html>','Rick,Mixing some apples and oranges in this, let’s see if we can walk through it on Monday, if not, in person on Tuesday.Example: there is NO vesting period on either your or Bayfront allocation of shares - considered as Founder Share Allocation.If I break free this afternoon, might have some time then.Best Regards,&nbsp;Brian C. Stufflebean, CEOBayfront Capital, LLC(941)545-4153&nbsp;Cell(866)896-2423&nbsp;Faxbrian@bayfrontcapitalllc.comwww.bayfrontcapitalllc.com&nbsp; &nbsp; &nbsp;&nbsp;CONFIDENTIALITY NOTICE / NOTICE OF&nbsp;NOT A REGISTERED BROKER/DEALER:&nbsp;Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with&nbsp;FINRA. Nor does&nbsp;it provide tax or investment advice. &nbsp;Any references made to any transaction in any communication is being made as a business consultant. &nbsp; This is not a&nbsp;solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law.&nbsp;This communication&nbsp;is confidential and intended only for the intended&nbsp;recipient. &nbsp;If you are not the intended recipient, you&nbsp;may not copy, disclose, or distribute this message&nbsp;to anyone else; any such actions may be unlawful. If you have received this communication in error,&nbsp;please contact the sender of the message to inform him or her of the error.Sent from my iPhoneOn Jul 18, 2025, at 9:54 PM, Rick &lt;rick@mavrix.one&gt; wrote:﻿\r\n    body { font-family: Helvetica, Arial; font-size: 13px; }Hi Brian,&nbsp;I\'ve reviewed the attached engagement agreement, made some typo corrections, but still need clarification on several key terms before I can move forward. Let me break down my questions. I apologize in advance for not being smarter about some of these things:&nbsp;Warrant Structure (Section 2.a):&nbsp;Based on our discussions, I understood the 70% warrant allocation would be:- Rick Mislan (Founder): 30%. non-dilutable?- Bayfront Capital LLC: 30%.&nbsp;non-dilutable?- Capital Reserve Pool: 40% for future investors. non-dilatable?&nbsp;&nbsp;However, the agreement shows Bayfront receiving the full 70%.&nbsp;Don’t we need to correct this to reflect the actual arrangement.&nbsp;Additionally, the warrant terms need specification:-&nbsp;Type: Common or Preferred stock?-&nbsp;Anti-dilution: Which positions are protected?-&nbsp;Exercise Price: What\'s the strike price?-&nbsp;Expiration: Standard 10-year term?-&nbsp;Vesting: I propose my 30% fully vested, your 30% over 24 months-&nbsp;Special Rights: Any board seats or liquidation preferences?&nbsp;Time Commitments and Exclusivity:1.&nbsp;Project Contact Definition: The 365-day period references \"latest project contact\" - please define when this starts/ends.2.&nbsp;Exclusivity Period: The auto-renewing 365-day exclusive is concerning. I propose a fixed 180-day period.3.&nbsp;ROFR Duration: 180 months (15 years) is excessive. Industry standard is 12-24 months.&nbsp;Financial Terms and Access:1.&nbsp;3% Fee Structure:&nbsp;&nbsp;&nbsp;&nbsp;- Who pays this - me or the investors?&nbsp;&nbsp;&nbsp;- Is this per tranche or total commitment?&nbsp;&nbsp;&nbsp;- How is this split between you, me, and Vijay?&nbsp;2.&nbsp;Financial Reporting: Monthly reports with bank access seems excessive. I propose quarterly statements. Also, please clarify which entity this applies to - Mavrix1, me personally, or Bayfront?&nbsp;Entity Structure Clarification:I need clarity on the corporate structure and other related deal specific items:- Is Mavrix1 the operating company (which I own 100%)?- Is Bayfront Capital a separate entity where I\'d own 30%?- Are Mavrix1 and Rick Mislan treated as the same party in this agreement?- Do I owe fees if Bayfront doesn’t get funded?- What compensation do I receive for bringing Mavrix1 to Bayfront?- Should that be addressed in this agreement, or should you and I have a separate agreement to represent this arrangement?- Do I get a percentage of each and every deal you bring in?&nbsp;- Travel, who is paying for that, is that encumbered in each deal?&nbsp;Next Steps:Let\'s schedule a call to work through these items. I\'m ready to move forward once I have a clear understanding of the terms that reflect our actual business arrangement.&nbsp;Thank you,Rick\r\n        \r\n     \r\n    Rick Mislan, PhDhttps://mavrix.one\r\n     \r\n\r\n\r\n\r\n&lt;BAYFRONT CAPITAL LLC- MAVRIX 1 - Engagement Agreement 07 01 2025 (DRAFT).docx&gt;',0,0,0,0,0,0,'2025-07-19 15:26:59','2025-12-09 19:17:22','2025-12-09 19:17:22','2025-12-09 19:17:22',NULL,NULL,NULL),
(490,4,'<baf8d79011bcac56d1bc9fb9e3081a5e5271befc-20342746-111610225@google.com>',NULL,NULL,'Your recommendations: Save time with AI in Google Workspace','workspace-noreply@google.com','The Google Workspace Team','<!doctype html><html lang=en xmlns=http://www.w3.org/1999/xhtml xmlns:v=urn:schemas-microsoft-com:vml xmlns:o=urn:schemas-microsoft-com:office:office><head><title>Discover Google Workspace</title><!--[if !mso]><!-- --><meta http-equiv=X-UA-Compatible content=IE=edge><!--<![endif]--><meta http-equiv=Content-Type content=\"text/html; charset=UTF-8\"><meta name=viewport content=width=device-width,initial-scale=1><style type=text/css>#outlook a { padding:0; } body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; } table { border-spacing:0;} img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; } p { display:block;margin:13px 0; }</style><!--[if mso]> <xml> <o:OfficeDocumentSettings xmlns:o=\"urn:schemas-microsoft-com:office:office\"> <o:AllowPNG/> <o:PixelsPerInch>96</o:PixelsPerInch> </o:OfficeDocumentSettings> <w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\"> <w:DontUseAdvancedTypographyReadingMail/> </w:WordDocument> </xml> <style type=\"text/css\"> table { border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt; } .mj-outlook-group-fix { width:100% !important; } .mso-button-dark-mode a {background: transparent !important;} </style> <![endif]--><!--[if !mso]><!--><link href=https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,700 rel=stylesheet type=text/css><link href=https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700|Google+Sans:400,500,700|Google+Sans+Display:400,500,700|Open+Sans:400,500,700 rel=stylesheet type=text/css><link href=https://client-data.knak.io/production/company_data/608c388d87e9e/custom-fonts/62b086f5c0cbf/fonts.css rel=stylesheet type=text/css><style type=text/css>@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,700); @import url(https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700|Google+Sans:400,500,700|Google+Sans+Display:400,500,700|Open+Sans:400,500,700); @import url(https://client-data.knak.io/production/company_data/608c388d87e9e/custom-fonts/62b086f5c0cbf/fonts.css);</style><!--<![endif]--><style type=text/css>@media only screen and (min-width:950px) { .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } }</style><style type=text/css>.links-1A73E8-bold a { color: #1A73E8; text-decoration: none; font-weight: bold; } #body #main [x-apple-data-detectors-type] { color: inherit !important; -webkit-text-decoration-color: inherit !important; text-decoration: inherit !important; font-weight: inherit !important; } .links-0B57D0-underline a { color: #0B57D0; text-decoration: underline; } .background-color--hover-0d68fa a:hover{ background-color: #0d68fa !important; } .color--hover-ffffff a:hover{ color: #ffffff !important; } u ~ div .img-container img + div { display: none } .links-0B57D0 a { color: #0B57D0; text-decoration: none; } .background-color--hover-e9ffff a:hover{ background-color: #e9ffff !important; } .color--hover-0f2340 a:hover{ color: #0f2340 !important; } .links-1967D2-underline a { color: #1967D2; text-decoration: underline; } @media only screen and (min-width:950px) { .max-width-214px { max-width: 214px !important} .font-size-32px { font-size: 32px !important} .font-size-16px { font-size: 16px !important} .img-full-width { max-width: 100% !important} }</style><style type=text/css>p{margin: 0 0;}ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #0B57D0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 950px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}</style><!--[if mso]> <style> .hide-on-mobile {display:block !important} </style> <![endif]--><!--[if mso]> <style> .mso-font-size-32px { font-size: 32px !important; } .mso-font-size-16px { font-size: 16px !important; } </style> <![endif]--><!--[if gte mso 16]> <style> .mso-text-white a { mso-style-textfill-type: gradient; mso-style-textfill-fill-gradientfill-stoplist: \"0 \\#FFFFFF 0 100000\\,100000 \\#FFFFFF 0 100000\"; color: #000000 !important; } </style> <![endif]--><style>[class~=\"x_body\"] { width: 99.9% }</style></head><body style=word-spacing:normal;background-color:#F0F4F9; class=body id=body><!--[if !mso 9]><!--><div id=emailPreHeader style=\"display: none;\">Boost your team’s productivity</div><div style=\"display: none;\">&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &#847;&zwnj; &shy; &shy; &shy; &shy; &nbsp;</div><!--<![endif]--><div style=\"background-color:#F0F4F9;background-position:center center;background-size:auto;background-repeat:repeat;\" id=main><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:transparent;width:100%; class=section><tr><td align=center><div role=presentation><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"background:transparent;background-color:transparent;Margin:0px auto;border-radius:0px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:transparent;width:100%;border-radius:0px;><tr><td style=border-radius:0px;font-size:0px;padding:0;text-align:center;vertical-align:top; class=block-grid><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:600px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=\"background-color:transparent;border-radius:0px;vertical-align:top;padding:5px 0px 5px 0px;\"><table border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:20px;height:20px;mso-line-height-alt:20px;>&nbsp;</div></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></div></td></tr></table><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:transparent;width:100%; class=section><tr><td align=center><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"background:transparent;background-color:transparent;Margin:0px auto;border-radius:24px 24px 0px 0px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=\"background-color:transparent;width:100%;border-radius:24px 24px 0px 0px;\"><tr><td style=\"border-radius:24px 24px 0px 0px;font-size:0px;padding:0px 8px 2px 8px;text-align:center;vertical-align:top;\" class=block-grid><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=background-color:transparent;line-height:0;font-size:0;direction:ltr;><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:584px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=\"background-color:#FFFFFF;border-radius:24px 24px 0px 0px;vertical-align:top;padding:24px 24px 24px 24px;\"><table border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td class=img-container style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><div style=\"margin:0 auto;max-width:214.4px;\" class=max-width-214px><a href=https://c.gle/ANiao5rKKZ_ZkT6-ONjQZCvh4E7zWHPXnmetMP2V8rShfbmzrHdRwxU0OLgj1WC7Cv3xFalE8lNcJbNvKKn22kW8-cAHUkajibHWmcmIDKj-D9PlXAnuAR35HGKJ0MIYPWf1CGyPeUp8iVg1wD0MbUm5-O73W-DwS0OUOVk target=_blank style=\"text-decoration: none; color: #0B57D0;\"><img alt=\"Google Workspace\" height=auto width=214 src=https://gstatic.com/growthlab/api/qKZRzO3MC3UgATELdQY9rmtE6niVyqlNrezhCPIs.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></a></div></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:transparent;width:100%; class=section><tr><td align=center><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"background:transparent;background-color:transparent;Margin:0px auto;border-radius:24px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:transparent;width:100%;border-radius:24px;><tr><td style=\"border-radius:24px;font-size:0px;padding:2px 8px 2px 8px;text-align:center;vertical-align:top;\" class=block-grid><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=background-color:transparent;line-height:0;font-size:0;direction:ltr;><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:584px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=\"background-color:#FFFFFF;border-radius:2px;vertical-align:top;padding:24px 24px 24px 24px;\"><table border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td class=img-container style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><div style=\"margin:0 auto;max-width:200px;\"><a href=https://c.gle/ANiao5qJXGvi7slb2qnHiTTmEG4Eo36CjPxhpqRPN47N3TvCQEG3H8Fp2IxifCvyUyJ9RyLqwAj2VdP0hvOKeQ_5ivOWw86UKSOowFJ2GibRr_nzASOaSeiC6qe_kuWWyOiUwjbfMj7USIqDIwrp2kF-ot20sw target=_blank style=\"text-decoration: none; color: #0B57D0;\"><img alt=\"Discover Google Workspace\" height=auto width=200 src=https://gstatic.com/growthlab/api/mtPtjXZpLNbmuRae04ZkwdUqXvZB1JK4lHsv0jrz.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></a></div></td></tr><tr><td class=text-container style=\"font-size:0px;padding:16px 8px 8px 8px;word-break:break-word;text-align:center;\"><div class=links-1A73E8-bold><div style=\"font-family:\'Google Sans\', \'Open Sans\', Arial, sans-serif;font-size:32px;font-weight:700;letter-spacing:none;line-height:1.2;text-align:center;mso-line-height-alt:2.375em;color:#1F1F1F;\" class=\"mso-font-size-32px font-size-32px\"><p style=\"margin: 0 0;\">Transform your work with AI in Google Workspace</p></div></div></td></tr><tr><td class=text-container style=\"font-size:0px;padding:18px 8px 10px 8px;word-break:break-word;text-align:center;\"><div class=links-0B57D0-underline><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:16px;letter-spacing:none;line-height:1.50;text-align:center;mso-line-height-alt:1.5em;color:#1F1F1F;\" class=\"mso-font-size-16px font-size-16px\"><p style=\"margin: 0 0;\">Premium AI is included in your Workspace plan. Use these AI tools to help save time and boost productivity.</p></div></div></td></tr><tr><td valign=middle class=button-container style=\"font-size:0px;padding:17px 9px 9px 8px;word-break:break-word;text-align:center;\"><div><!--[if mso]><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\"><tr><td align=\"center\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://c.gle/ANiao5o70Z02EivfsozSZolbvHTK1A4F19zt8CZYfFCG_4hhlxYXi9NvZU8csaQqc5UjFte9RUiRNTlhgFZwFYvmL-GHwgL20e_u_t6lffPkf2qhNBj0Del-JNWjtn4r8RpuYd2Ia19rr6lpNXmZfPfUR47g-f2CuNSxpp2qMg\" fillcolor=\"#0B57D0\" arcsize=\"102%\" style=\"v-text-anchor:middle;width:179.25pt;height:36.75pt;\" stroke=\"f\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\" class=\"mso-text-white\"><![endif]--><div class=\"background-color--hover-0d68fa color--hover-ffffff\"><a href=https://c.gle/ANiao5o70Z02EivfsozSZolbvHTK1A4F19zt8CZYfFCG_4hhlxYXi9NvZU8csaQqc5UjFte9RUiRNTlhgFZwFYvmL-GHwgL20e_u_t6lffPkf2qhNBj0Del-JNWjtn4r8RpuYd2Ia19rr6lpNXmZfPfUR47g-f2CuNSxpp2qMg style=\"display: inline-block; background: #0B57D0; color: #ffffff; font-family: \'Google Sans Text\', Arial, sans-serif; font-size: 14px; font-weight: 500; line-height: 1.50; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 14px 24px 14px 24px; mso-padding-alt: 0px; border-radius: 50px; mso-border-alt: none; box-sizing: border-box; transition: 0.2s;\" target=_blank width=239><strong>Discover Google Workspace</strong></a></div><!--[if mso]></center></a:textbox></a:roundrect></td></tr></table><![endif]--></div></td></tr><tr><td class=img-container style=\"font-size:0px;padding:24px 0px 0px 0px;word-break:break-word;text-align:center;\"><div style=\"margin:0 auto;max-width:536px;\" class=img-full-width><img alt height=auto width=536 src=https://gstatic.com/growthlab/api/dwVmOYBf8dO1AVC2sUZ7CQlhGFk2hUqVuHiZpVgE.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></div></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:24px;height:24px;mso-line-height-alt:24px;>&nbsp;</div></td></tr><tr><td class=text-container style=\"font-size:0px;padding:10px 8px 10px 8px;word-break:break-word;text-align:left;\"><div class=links-0B57D0-underline><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:14px;letter-spacing:none;line-height:1.50;text-align:left;mso-line-height-alt:1.313em;color:#1F1F1F;\"><p style=\"margin: 0 0;\">Hi Rick,</p><p style=\"margin: 0 0;\">&nbsp;</p><p style=\"margin: 0 0;\">AI can help you and your team boost efficiency and save time. Google Workspace integrates AI into the products you know and love and includes new products like NotebookLM.</p></div></div></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%; class=section><tr><td align=center><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"Margin:0px auto;border-radius:0px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%;border-radius:0px;><tr><td style=\"border-radius:0px;font-size:0px;padding:2px 8px 2px 8px;text-align:center;vertical-align:top;\" class=block-grid><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:584px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:top; width=100%><tr><td><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:#FFFFFF;width:100%;border-radius:2px; class=section><tr><td align=center style=\"border-radius:2px;font-size:0px;text-align:center;vertical-align:top;padding:24px 24px 24px 24px;word-break:break-word;\"><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:middle;width:268px;\" ><![endif]--><div class=\"mj-column-per-50 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:middle; width=100%><tr><td class=text-container style=\"font-size:0px;padding:8px 0px 8px 8px;word-break:break-word;text-align:left;\"><div class=links-0B57D0><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:14px;letter-spacing:none;line-height:1.50;text-align:left;mso-line-height-alt:1.313em;color:#1F1F1F;\"><p style=\"margin: 0 0;\"><strong>Help me write in Gmail and Docs</strong></p><p style=\"margin: 0 0;\">Gemini can help you refine the tone and style of your emails and documents. Use it to refine what you have, or start from scratch by having Gemini create a first draft.</p></div></div></td></tr><tr><td valign=middle class=button-container style=\"font-size:0px;padding:8px 8px 8px 8px;word-break:break-word;text-align:left;\"><div><!--[if mso]><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\"><tr><td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://c.gle/ANiao5onxdT7FpZzjjYiwt-hZeJB5-AfcWqibkyZtq2i8BPRujlo1bK8DSwutWTiGfj59dceadd1BmTCTXOYKfsnSZutL-ESUypWTqaMsroZeSojvgN7mXAIPO_hKnUL2Cg76wh8DvbnHJqWG8mPWhHm2bvv8oLLGOj1W_a6sKQ\" fillcolor=\"#FFFFFF\" arcsize=\"102%\" style=\"v-text-anchor:middle;width:130.75pt;height:36.75pt;\" strokecolor=\"#747775\" strokeweight=\"0.75pt\" ><w:anchorlock/><a:textbox inset=\"24px,0,24px,0\"><span style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=https://c.gle/ANiao5onxdT7FpZzjjYiwt-hZeJB5-AfcWqibkyZtq2i8BPRujlo1bK8DSwutWTiGfj59dceadd1BmTCTXOYKfsnSZutL-ESUypWTqaMsroZeSojvgN7mXAIPO_hKnUL2Cg76wh8DvbnHJqWG8mPWhHm2bvv8oLLGOj1W_a6sKQ style=\"display: inline-block; background: #FFFFFF; color: #0B57D0; font-family: \'Google Sans Text\', Arial, sans-serif; font-size: 14px; font-weight: normal; line-height: 1.50; margin: 0; text-align: left; text-decoration: none; text-transform: none; padding: 13px 24px 13px 24px; mso-padding-alt: 0px; border-radius: 50px; border-left: 1px solid #747775; border-right: 1px solid #747775; border-top: 1px solid #747775; border-bottom: 1px solid #747775; mso-border-alt: none; box-sizing: border-box;\" target=_blank width=161><span style=\"font-size: 14px; font-weight: 400;\">Try Help me write</span> </a><!--[if mso]></span></a:textbox></a:roundrect></td></tr></table><![endif]--></div></td></tr></table></div><!--[if mso | IE]></td><td style=\"vertical-align:top;width:268px;\" ><![endif]--><div class=\"mj-column-per-50 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:top; width=100%><tr><td class=\"hide-on-mobile img-container\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: right;\" align=right><div style=\"margin:0 0 0 auto;max-width:214px;\"><a href=https://c.gle/ANiao5p9pocomUkoFuS9d_lkpqG9gSrNjHVds6MSmH4HEU8rG_4PtSpJs9fku_2uTY4EmJe5rR9aJnWCTbpVgQYGagH14ltCgBVobK8hGKQSi6glXJdGxDlbAMgmFlK0h1HeQtwC4AZ4i2hM6B-8e_pJmVX_Q9GkPFlyTA target=_blank style=\"text-decoration: none; color: #0B57D0;\"><img alt=\"Image of Help me write in Gmail\" height=auto width=214 src=https://gstatic.com/growthlab/api/xgxWO5AXJvHdSodLDvQzWJyhNO6KXp8RiFiQgxFT.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></a></div></td></tr></table></div><!--[if mso | IE]></td></tr></table></td></tr></table><![endif]--></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%; class=section><tr><td align=center><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"Margin:0px auto;border-radius:0px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%;border-radius:0px;><tr><td style=\"border-radius:0px;font-size:0px;padding:2px 8px 2px 8px;text-align:center;vertical-align:top;\" class=block-grid><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:584px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:top; width=100%><tr><td><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:#FFFFFF;width:100%;border-radius:2px; class=section><tr><td align=center style=\"border-radius:2px;font-size:0px;text-align:center;vertical-align:top;padding:24px 24px 24px 24px;word-break:break-word;\"><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:middle;width:268px;\" ><![endif]--><div class=\"mj-column-per-50 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:middle; width=100%><tr><td class=text-container style=\"font-size:0px;padding:8px 0px 8px 8px;word-break:break-word;text-align:left;\"><div class=links-0B57D0><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:14px;letter-spacing:none;line-height:1.50;text-align:left;mso-line-height-alt:1.313em;color:#1F1F1F;\"><p style=\"margin: 0 0;\"><strong>AI assistance in Gmail, Docs, Sheets, and more</strong></p><p style=\"margin: 0 0;\">Do your best work faster with AI embedded in the tools you use every day. Get help summarizing, analyzing, and generating content with insights from your emails, documents, and more.</p></div></div></td></tr><tr><td valign=middle class=button-container style=\"font-size:0px;padding:8px 8px 8px 8px;word-break:break-word;text-align:left;\"><div><!--[if mso]><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\"><tr><td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://c.gle/ANiao5r2YsX1sXLZkzcQhIa0gswgSyZPioZVUR1bsGuEslfYt2MzNzwuVryi4Oy7ISnVlrtOsnAKtSDL628ta_Jh9rkwpiY3bgJz5GnOMZtTqd06UCkuSSIWNHlqKzd8MRYjCiD4VnOIkp0toqlrTfT-4whd7bDRyP4w9OS5DVYUfn80Y49akVaF7-v-PUL1aQRvoFfRmKUvy-ueiA\" fillcolor=\"#FFFFFF\" arcsize=\"102%\" style=\"v-text-anchor:middle;width:115.5pt;height:36.75pt;\" strokecolor=\"#747775\" strokeweight=\"0.75pt\" ><w:anchorlock/><a:textbox inset=\"24px,0,24px,0\"><span style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=https://c.gle/ANiao5r2YsX1sXLZkzcQhIa0gswgSyZPioZVUR1bsGuEslfYt2MzNzwuVryi4Oy7ISnVlrtOsnAKtSDL628ta_Jh9rkwpiY3bgJz5GnOMZtTqd06UCkuSSIWNHlqKzd8MRYjCiD4VnOIkp0toqlrTfT-4whd7bDRyP4w9OS5DVYUfn80Y49akVaF7-v-PUL1aQRvoFfRmKUvy-ueiA style=\"display: inline-block; background: #FFFFFF; color: #0B57D0; font-family: \'Google Sans Text\', Arial, sans-serif; font-size: 14px; font-weight: normal; line-height: 1.50; margin: 0; text-align: left; text-decoration: none; text-transform: none; padding: 13px 24px 13px 24px; mso-padding-alt: 0px; border-radius: 50px; border-left: 1px solid #747775; border-right: 1px solid #747775; border-top: 1px solid #747775; border-bottom: 1px solid #747775; mso-border-alt: none; box-sizing: border-box;\" target=_blank width=138><span style=\"font-size: 14px; font-weight: 400;\">Try side panel</span> </a><!--[if mso]></span></a:textbox></a:roundrect></td></tr></table><![endif]--></div></td></tr></table></div><!--[if mso | IE]></td><td style=\"vertical-align:top;width:268px;\" ><![endif]--><div class=\"mj-column-per-50 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:top; width=100%><tr><td class=\"hide-on-mobile img-container\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: right;\" align=right><div style=\"margin:0 0 0 auto;max-width:241px;\"><a href=https://c.gle/ANiao5pQWpag0aKMTZ5tdnHyGRGuSq_n8oaG46-ssT95dA4XpyclDqWu_--nlxxAAJ-jvJcLtDxVZecvxAIQS7w3SzjQ-CBwOaUFQD_Ltu3YKHqEJ0qcpZJCDXs2IoOulE1dI5uuuB5FD8vdMtF6MyXWSRASmsXdSTBPY3BY3wd7oKpmmvdyVZ-UjfbRZ2NSSdU83Eca0Z5Ise4 target=_blank style=\"text-decoration: none; color: #0B57D0;\"><img alt=\"Image of Side panel in Docs\" height=auto width=241 src=https://gstatic.com/growthlab/api/StybtzMQaMMlgZsRPom9FzhVcACuR0cj7K2jbSf7.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></a></div></td></tr></table></div><!--[if mso | IE]></td></tr></table></td></tr></table><![endif]--></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%; class=section><tr><td align=center><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"Margin:0px auto;border-radius:0px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%;border-radius:0px;><tr><td style=\"border-radius:0px;font-size:0px;padding:2px 8px 2px 8px;text-align:center;vertical-align:top;\" class=block-grid><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:584px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:top; width=100%><tr><td><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:#FFFFFF;width:100%;border-radius:2px; class=section><tr><td align=center style=\"border-radius:2px;font-size:0px;text-align:center;vertical-align:top;padding:24px 24px 24px 24px;word-break:break-word;\"><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:middle;width:268px;\" ><![endif]--><div class=\"mj-column-per-50 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:middle; width=100%><tr><td class=text-container style=\"font-size:0px;padding:8px 0px 8px 8px;word-break:break-word;text-align:left;\"><div class=links-0B57D0><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:14px;letter-spacing:none;line-height:1.50;text-align:left;mso-line-height-alt:1.313em;color:#1F1F1F;\"><p style=\"margin: 0 0;\"><strong>Take notes for me in Meet</strong></p><p style=\"margin: 0 0;\">Focus on the conversation and let Gemini take meeting notes – including meeting summaries and action items – and send them straight to your Gmail inbox.</p></div></div></td></tr><tr><td valign=middle class=button-container style=\"font-size:0px;padding:8px 8px 8px 8px;word-break:break-word;text-align:left;\"><div><!--[if mso]><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\"><tr><td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://c.gle/ANiao5r-_nOFDG4OafVB121K3nUoceD_cdOZbFSTZGh0exffiFdGE_pky10Xl8rls4OV-l_oUKWmqHTyP5yTwaNiTNjsrADYVM50b9A0gcziRCHESnkZPXx6p1r_rIvezpKHRdrVe6IUwmamp21M4KrOZssroFakDqNZKpDLFw5bTTY\" fillcolor=\"#FFFFFF\" arcsize=\"102%\" style=\"v-text-anchor:middle;width:152.5pt;height:36.75pt;\" strokecolor=\"#747775\" strokeweight=\"0.75pt\" ><w:anchorlock/><a:textbox inset=\"24px,0,24px,0\"><span style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=https://c.gle/ANiao5r-_nOFDG4OafVB121K3nUoceD_cdOZbFSTZGh0exffiFdGE_pky10Xl8rls4OV-l_oUKWmqHTyP5yTwaNiTNjsrADYVM50b9A0gcziRCHESnkZPXx6p1r_rIvezpKHRdrVe6IUwmamp21M4KrOZssroFakDqNZKpDLFw5bTTY style=\"display: inline-block; background: #FFFFFF; color: #0B57D0; font-family: \'Google Sans Text\', Arial, sans-serif; font-size: 14px; font-weight: normal; line-height: 1.50; margin: 0; text-align: left; text-decoration: none; text-transform: none; padding: 13px 24px 13px 24px; mso-padding-alt: 0px; border-radius: 50px; border-left: 1px solid #747775; border-right: 1px solid #747775; border-top: 1px solid #747775; border-bottom: 1px solid #747775; mso-border-alt: none; box-sizing: border-box;\" target=_blank width=186><span style=\"font-size: 14px; font-weight: 400;\">Try take notes for me</span> </a><!--[if mso]></span></a:textbox></a:roundrect></td></tr></table><![endif]--></div></td></tr></table></div><!--[if mso | IE]></td><td style=\"vertical-align:middle;width:268px;\" ><![endif]--><div class=\"mj-column-per-50 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:middle; width=100%><tr><td class=\"hide-on-mobile img-container\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: right;\" align=right><div style=\"margin:0 0 0 auto;max-width:187px;\"><a href=https://c.gle/ANiao5oce141MucY7CEkEeOlTeOWPdx8Mx7rSRAweo2wHKKl1j6gmVM3fGEYw6dfRluk1iE1p7Lzw5tTa6BqRm3slKXEVB71NpS_4vg0EAwgyCAEnGnGZvvK-erRq-JjzMxL1PnA1Em6jUpOhJfZS-arv5emB6o9FSeqmA target=_blank style=\"text-decoration: none; color: #0B57D0;\"><img alt=\"Image of Take notes for me in Meet\" height=auto width=187 src=https://gstatic.com/growthlab/api/2Nv2IOI89jNwrOYdfCjLuSzdaD6YtsqUy3U1ySgr.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></a></div></td></tr></table></div><!--[if mso | IE]></td></tr></table></td></tr></table><![endif]--></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%; class=section><tr><td align=center><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"Margin:0px auto;border-radius:0px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%;border-radius:0px;><tr><td style=\"border-radius:0px;font-size:0px;padding:2px 8px 2px 8px;text-align:center;vertical-align:top;\" class=block-grid><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:584px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:top; width=100%><tr><td><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=\"background-color:#FFFFFF;width:100%;border-radius:2px 2px 24px 24px;\" class=section><tr><td align=center style=\"border-radius:2px 2px 24px 24px;font-size:0px;text-align:center;vertical-align:top;padding:24px 24px 24px 24px;word-break:break-word;\"><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:middle;width:268px;\" ><![endif]--><div class=\"mj-column-per-50 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:middle; width=100%><tr><td class=text-container style=\"font-size:0px;padding:8px 0px 8px 8px;word-break:break-word;text-align:left;\"><div class=links-0B57D0><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:14px;letter-spacing:none;line-height:1.50;text-align:left;mso-line-height-alt:1.313em;color:#1F1F1F;\"><p style=\"margin: 0 0;\"><strong>NotebookLM</strong></p><p style=\"margin: 0 0;\">NotebookLM is an AI-powered research tool that can help you get instant insights. Upload files from your organization and customize knowledge sharing – plus get Audio Overviews to listen to engaging summaries on the go.</p></div></div></td></tr><tr><td valign=middle class=button-container style=\"font-size:0px;padding:8px 8px 8px 8px;word-break:break-word;text-align:left;\"><div><!--[if mso]><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\"><tr><td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://c.gle/ANiao5qYADFDZNSKm3hN3GF4RYXKp2170p18CqjtEm5kvVCkeScHjeuNrIn87spiIOynIHsSXXFwOtxPxPLnAK_Qa3hME0e12JqwyHLlY146CuhNhse9-GX3Wz-ZK4QauX_98WkT3see-RWT7g\" fillcolor=\"#FFFFFF\" arcsize=\"102%\" style=\"v-text-anchor:middle;width:152.75pt;height:36.75pt;\" strokecolor=\"#747775\" strokeweight=\"0.75pt\" ><w:anchorlock/><a:textbox inset=\"24px,0,24px,0\"><span style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=https://c.gle/ANiao5qYADFDZNSKm3hN3GF4RYXKp2170p18CqjtEm5kvVCkeScHjeuNrIn87spiIOynIHsSXXFwOtxPxPLnAK_Qa3hME0e12JqwyHLlY146CuhNhse9-GX3Wz-ZK4QauX_98WkT3see-RWT7g style=\"display: inline-block; background: #FFFFFF; color: #0B57D0; font-family: \'Google Sans Text\', Arial, sans-serif; font-size: 14px; font-weight: normal; line-height: 1.50; margin: 0; text-align: left; text-decoration: none; text-transform: none; padding: 13px 24px 13px 24px; mso-padding-alt: 0px; border-radius: 50px; border-left: 1px solid #747775; border-right: 1px solid #747775; border-top: 1px solid #747775; border-bottom: 1px solid #747775; mso-border-alt: none; box-sizing: border-box;\" target=_blank width=185><span style=\"font-size: 14px; font-weight: 400;\">Try NotebookLM</span> </a><!--[if mso]></span></a:textbox></a:roundrect></td></tr></table><![endif]--></div></td></tr></table></div><!--[if mso | IE]></td><td style=\"vertical-align:top;width:268px;\" ><![endif]--><div class=\"mj-column-per-50 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:top; width=100%><tr><td class=\"hide-on-mobile img-container\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: right;\" align=right><div style=\"margin:0 0 0 auto;max-width:241px;\"><a href=https://c.gle/ANiao5o4GCedKwlaWsxyr5wim0hL6mQqqpz56rIeVWNeOgfrCmDV6Muf0-h6807-80_nBjQRmy689QqaZBpuFPemYV964ZHcK5Nq0NnDf-2vwtGzE8p0rnaugvRhgS-XhdwtiIIG3ZcJKnc target=_blank style=\"text-decoration: none; color: #0B57D0;\"><img alt=\"Image of NotebookLM\" height=auto width=241 src=https://gstatic.com/growthlab/api/snrclpn3iUnlTFOJbNhec648Va0pwttVQyPbRd1r.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></a></div></td></tr></table></div><!--[if mso | IE]></td></tr></table></td></tr></table><![endif]--></td></tr></table></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:16px;height:16px;mso-line-height-alt:16px;>&nbsp;</div></td></tr><tr><td valign=middle class=button-container style=\"font-size:0px;padding:9px 9px 9px 8px;word-break:break-word;text-align:center;\"><div><!--[if mso]><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\"><tr><td align=\"center\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://c.gle/ANiao5okSOgelToXQGo9g9f6R2vJvNEzcMdfr3z4lRES146IvlKHGHzfC-rrg7tI4D8DY0SUZG64jso9ipgEVHn5xflOgkqalJdS-13_gHIusM0ScTE3qCIrEyu1451zVM0fY20p0QDq4oTUpQBGdL_Egc-E_zoz6509ag13\" fillcolor=\"#C2E7FF\" arcsize=\"102%\" style=\"v-text-anchor:middle;width:170.25pt;height:36.75pt;\" stroke=\"f\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--><div class=\"background-color--hover-e9ffff color--hover-0f2340\"><a href=https://c.gle/ANiao5okSOgelToXQGo9g9f6R2vJvNEzcMdfr3z4lRES146IvlKHGHzfC-rrg7tI4D8DY0SUZG64jso9ipgEVHn5xflOgkqalJdS-13_gHIusM0ScTE3qCIrEyu1451zVM0fY20p0QDq4oTUpQBGdL_Egc-E_zoz6509ag13 style=\"display: inline-block; background: #C2E7FF; color: #001D35; font-family: \'Google Sans Text\', Arial, sans-serif; font-size: 14px; font-weight: 500; line-height: 1.50; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 14px 24px 14px 24px; mso-padding-alt: 0px; border-radius: 50px; mso-border-alt: none; box-sizing: border-box; transition: 0.2s;\" target=_blank width=227><strong>View all recommendations</strong></a></div><!--[if mso]></center></a:textbox></a:roundrect></td></tr></table><![endif]--></div></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%; class=section><tr><td align=center><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"background:transparent;background-color:transparent;Margin:0px auto;border-radius:0px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:transparent;width:100%;border-radius:0px;><tr><td style=\"border-radius:0px;font-size:0px;padding:16px 0px 36px 0px;text-align:center;vertical-align:top;\" class=block-grid><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=background-color:transparent;line-height:0;font-size:0;direction:ltr;><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:600px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:top; width=100%><tr><td class=text-container style=\"font-size:0px;padding:4px 8px 4px 8px;word-break:break-word;text-align:center;\"><div class=links-0B57D0-underline><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:16px;letter-spacing:none;line-height:1.50;text-align:center;mso-line-height-alt:1.5em;color:#1F1F1F;\" class=\"mso-font-size-16px font-size-16px\"><p style=\"margin: 0 0;\">See you online,&nbsp;<br><br>The Google Workspace Team&nbsp;</p></div></div></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:24px;height:24px;mso-line-height-alt:24px;>&nbsp;</div></td></tr><tr><td class=img-container style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><div style=\"margin:0 auto;\"><img alt height=auto width=600 src=https://gstatic.com/growthlab/api/dwVmOYBf8dO1AVC2sUZ7CQlhGFk2hUqVuHiZpVgE.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></div></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:24px;height:24px;mso-line-height-alt:24px;>&nbsp;</div></td></tr><tr><td class=img-container style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:center;\"><div style=\"margin:0 auto;max-width:180px;\"><img alt height=auto width=180 src=https://gstatic.com/growthlab/api/qKZRzO3MC3UgATELdQY9rmtE6niVyqlNrezhCPIs.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></div></td></tr><tr><td class=text-container style=\"font-size:0px;padding:10px 25px 10px 25px;word-break:break-word;text-align:center;\"><div class=links-1967D2-underline><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:12px;letter-spacing:0px;line-height:1.50;text-align:center;mso-line-height-alt:1.125em;color:#5F6368;\"><p style=\"margin: 0 0;\">© 2025 <a style=pointer-events:none;cursor:text;text-decoration:none;color:#5F6368;font-size:12px;>Google LLC 1600 Amphitheatre Parkway, Mountain View, CA 94043</a></p><p style=\"margin: 0 0;\">&nbsp;</p><p style=\"margin: 0 0;\">This email was sent to rick@mavrix.one because you indicated that you’d like to receive updates and tips about your Google Workspace account. If you don’t want to receive such emails in the future, please <a href=https://myaccount.google.com/communication-preferences/unsubscribe/gt/ANiao5omQtZxS1Gy0rAU7rL8pISlCtKSg5M9KQgBlLHJRKQKFZu88xMVSNT6NDrX548JpauUjAJ9iK4BK7s0SeoPqFx-3zxodiOLN6d5vpxUT66WDX4URn6diArGezM9-YixzZMtCDxkRO76xcVwEFV_24-a8ValTg51njjIGy4qgfQBNePmVRQXtwqdPXmA8MOkQ6YXAeyaxn0FdUp7LRmmtXrxyJ5MF686158?utm_source=gm&amp;utm_medium=email&amp;auto=true target=_blank rel=noopener style=\"color: rgb(25, 103, 210); text-decoration: underline;\">unsubscribe here</a>. You can also change your preferences on your account’s profile page by logging in at <a href=https://c.gle/ANiao5qGB95Xh6nCzTw--okuBVqIEaCV89zrn4KYrKA6kiSPI5BSV8IFsKxwk1r_yW57HTr1taxb0Aek34eJx2ZQKNUsB-UrrPwMIQwHOCfRwFP45vQZieBTnT3JR2HIKw target=_blank rel=noopener data-k-tracking-label=Admin style=\"color: rgb(25, 103, 210); text-decoration: underline;\">admin.google.com</a>.</p></div></div></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></div> <!--[if mso ]> <table id=\"email-container\" style=\"width:600px;line-height:0;font-size:0;height:0;overflow:hidden;border-collapse:collapse\" width=\"600\"><img alt=\"\" height=\"1\" src=\"https://notifications.google.com/g/img/ANiao5o_Pj5BQ2YNhSmXmaT8bMFpxL7p_joopyy1z2Z8kULOTwWlpk61Hgj251AbGe3WZ6BIHjxJOqSy4pp6g9qOstPgcssEZk2sPFjDX0RwBumX3V4RkUr57YrMviH6p-5dy9swwQ.gif\" width=\"3\"></table><![endif]--> <!--[if !mso]><!--> <div style=width:auto;line-height:0;font-size:0;height:0;overflow:hidden;border-collapse:collapse><img alt=\"\" height=1 src=https://notifications.google.com/g/img/ANiao5o_Pj5BQ2YNhSmXmaT8bMFpxL7p_joopyy1z2Z8kULOTwWlpk61Hgj251AbGe3WZ6BIHjxJOqSy4pp6g9qOstPgcssEZk2sPFjDX0RwBumX3V4RkUr57YrMviH6p-5dy9swwQ.gif width=3></div> <!--<![endif]--> </div> </body></html>','Google Workspace  \r\n<https://c.gle/ANiao5qJYDnywCsEiQRQKtPFQt73_TyrthRiBKwkq_20oVoOaDBhk349tZIOPfAgeNr3R8T0jL90R5WqIkRqA6xynMcriYmHpjDY5VVBByNFUu9HHbCEpLW6xXFIo6YiykXLgc4J6NXz0aV_fzrSxE0kkr6ikWxLkeKh>\r\n\r\nDiscover Google Workspace  \r\n<https://c.gle/ANiao5q9FYfbhjQRq19IKrqYlS-7P-E0Vo6OZeGQbNvYJaY_DTd_Yr1lmYcSUoeumevKLP5JJUW4WVYABXCnML3U0NKzZNktRi2EWqxoafP8_JyPSbrx6U2ck8a42Ust6-6Np36otiYgU0m5eUgF89p0ICE>\r\n\r\nTransform your work with AI in Google Workspace\r\n\r\nPremium AI is included in your Workspace plan. Use these AI tools to help  \r\nsave time and boost productivity.\r\n\r\nDiscover Google Workspace  \r\n<https://c.gle/ANiao5o8RdXHA_9z2rbq29swObdcK1ss33OTuTCCXYh7silAmFmmGIpNjdfAbfRGLBa0BD5qQVmbEOBjFsHiNFvsOH3lBf6mK4ESf1V6NVubG2Ysql5NECGY8rpgxwjzSfYbunWZbEBuOOBFJ-JlsGBsbAstdlHiHGHI7UE>\r\n\r\nHi Rick,\r\n\r\nAI can help you and your team boost efficiency and save time. Google  \r\nWorkspace integrates AI into the products you know and love and includes  \r\nnew products like NotebookLM.\r\n\r\nHelp me write in Gmail and Docs\r\n\r\nGemini can help you refine the tone and style of your emails and documents.  \r\nUse it to refine what you have, or start from scratch by having Gemini  \r\ncreate a first draft.\r\n\r\nTry Help me write  \r\n<https://c.gle/ANiao5rQf9TcYdGxFsGa185txKk-jlO-oaviEa6QAuN6rlAdFCSCbYwgTC67aZSA6IMwnyEyEPGmwWkcHZGF7JrwEeP_YtNwfvGwfgg7H5Bky7aHsRHD5gJcBJ49iclwDX6WPxfEZHmnuF4RU1Zw7mN6bcde7vdVq8wIYg76>\r\n\r\nImage of Help me write in Gmail  \r\n<https://c.gle/ANiao5rykwJH-Z8WRig4IVBv6_iTIIC9yRLI3WYr66pyDfea_pZGwrCgIBmjrZGmQFSYQqg0wRI_7J5g6C8_9HhyPr4zynV1mw9BXG24v0yXWXbIvO4kc2bTUyu81ShRPtAtyY3iNkk3ZCfVFZ47wvIUTokCTFgPypg>\r\n\r\nAI assistance in Gmail, Docs, Sheets, and more\r\n\r\nDo your best work faster with AI embedded in the tools you use every day.  \r\nGet help summarizing, analyzing, and generating content with insights from  \r\nyour emails, documents, and more.\r\n\r\nTry side panel  \r\n<https://c.gle/ANiao5q4FjgvIFtb4XO80XhF2RzwqN5Q_-NpQ1mnrP14CwNl-fZeqwqdRym8PNzuWpp5qtNxhKfuHPsB9i93gzp5wb1S7RAJFAWBOk_C5oPu4LMU-NQPqkWB4MrCqjfU9t5gfqQABFAo391RtvgvcJnnJDSHaXLn-EbKAnape4JcX4X-H8XypcEmPPdekDcMe5WA8LaxM2H0gBE>\r\n\r\nImage of Side panel in Docs  \r\n<https://c.gle/ANiao5pUBE1veFHyPi1B1CeqnSiID-cUFP1tqQa3cCarNWBJYdxUVwQ5RoQtF6VI87niugmdJ6YUE52yZCQues0yc6fKNoQSC0NLQvQCm3Jj4B5t5wpp5EY_tHA44SVbuLKtohiII5tSwIOJwVJyFp6V7Zw9LTCTUlMBDltKST-NUD5KOm_1hIWv-1A45sdOC5r6LlvUgSau>\r\n\r\nTake notes for me in Meet\r\n\r\nFocus on the conversation and let Gemini take meeting notes – including  \r\nmeeting summaries and action items – and send them straight to your Gmail  \r\ninbox.\r\n\r\nTry take notes for me  \r\n<https://c.gle/ANiao5qSICfIKcVZvYgCMA8MHKc6vSH9EvHSR_0Kbo42aWibC4MjWPKzYI8HQF-KmPmnzy9W1gz4tPXCqYncT82WXj_lK0p_GKmB3grqHDB2NXCcHtftKFb7QVb5R6ao0l0WgKelXtLNfhqLcggNDOoSkiZqG7QxLu1UOh_BgY-c>\r\n\r\nImage of Take notes for me in Meet  \r\n<https://c.gle/ANiao5rgaiSimnl38duORtq50A_FUAVpeigbouDGl8wvUj33XCs3EMjyksL944jFUzDJxAqJMlZB7mGagLAIOSBC2cKgzlgtiGeeohXoNo3Fwfxjj1qcHwxk2uZfvPKXLLPekblNI2X58AwmzeivQNPlD-oVaPb4ASI>\r\n\r\nNotebookLM\r\n\r\nNotebookLM is an AI-powered research tool that can help you get instant  \r\ninsights. Upload files from your organization and customize knowledge  \r\nsharing – plus get Audio Overviews to listen to engaging summaries on the  \r\ngo.\r\n\r\nTry NotebookLM  \r\n<https://c.gle/ANiao5oylTzY10x7F8KLaG-FAsv3cYZxW1Dd8aKbRVxhbc1i8UHfwmJ8I-nydtdLL04peqqQmDi11P2uzsIRaxh2oVNZPiRUG98qyOKNoo9AnnIsLDia4jrkUGHSHgD3VRHxFcl-dTF5N6Y>\r\n\r\nImage of NotebookLM  \r\n<https://c.gle/ANiao5oZdFD9wl13seN7ivUgACaWnmmw9kFEthx2AcjJJUfQwV9fjrCHg86egdwBn_Qx4pBg-8Oiu70pola5wvktx95qoI6p-vqkq2JazqALxcWtGSwxA4FWpljTS_fI6Uq-TlPcClMO>\r\n\r\nView all recommendations  \r\n<https://c.gle/ANiao5oknhWcAZS2mNSVVqH-sBrvb0INdmJYJE_ubPennlvy3utlRkO0ZVDOCgOnqr514li8k4DrwTVGZeoHN3KCPxRgxtdG2i0VGI5qfBPkHtPnI-aHxWssrmVBqnB7MfhBdTuAC8J_tHSJaPG1gVBiCtdEcjd6gJuNPQ>\r\n\r\nSee you online,\r\n\r\nThe Google Workspace Team\r\n\r\n© 2025 Google LLC 1600 Amphitheatre Parkway, Mountain View, CA 94043\r\n\r\nThis email was sent to rick@mavrix.one because you indicated that you’d  \r\nlike to receive updates and tips about your Google Workspace account. If  \r\nyou don’t want to receive such emails in the future, please unsubscribe  \r\nhere  \r\n<https://myaccount.google.com/communication-preferences/unsubscribe/gt/ANiao5qKazqaPoMXpxeeQlC4WdeNU1gTxqGj2lRUSsS1IhgEs9S4nKcthkZGJ-fQxEgtn7lHVL5w5PJFj6_rBDzR93yXDz4cr00dWueihYKlGnHqLQukrsjGk3R92E5_HLArG7K1asM67puHDVjn4bLynT7Sf48T7mZ5aHcm5HLIQB1BOd9p-csNQqD_5-O3ao2iOI_4nnlT0w3leOhGPDLXsK1llslOaNWO?utm_source=gm&utm_medium=email&auto=true>.  \r\nYou can also change your preferences on your account’s profile page by  \r\nlogging in at admin.google.com  \r\n<https://c.gle/ANiao5rlW0sY3P1OkrbLNCNtzAAkstysSmiwjvn0kR39JKZD_BsTfcz0fdQrqxSQbFJzlajW4ms795o8Z1-HJizPC2N1NTeGFNaClH-0usjxoGrPVUQy0yjD0E_uwhU>.\r\n',0,0,0,0,0,0,'2025-07-19 17:45:20','2025-12-09 19:17:23','2025-12-09 19:17:23','2025-12-09 19:17:23',NULL,NULL,NULL),
(491,4,' <DM6PR07MB5850E0D22D856A20D65B3BCEAD52A@DM6PR07MB5850.namprd07.prod.outlook.com>',NULL,NULL,'Canceled: Rick Touchpoint','rich@achramlabs.com','Richard Van Voorst','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n</head>\r\n<body>\r\n<br>\r\n<div style=\"max-width: 600px; color: #242424; font-family:\'Segoe UI\',\'Helvetica Neue\',Helvetica,Arial,sans-serif\" class=\"me-email-text\">\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n<div style=\"margin-bottom: 12px;\"><span class=\"me-email-text\" style=\"font-size: 24px;font-weight: 700; margin-right:12px;\">Microsoft Teams</span>\r\n<a id=\"meet_invite_block.action.help\" class=\"me-email-link\" style=\"font-size:14px; text-decoration:underline; color: #5B5FC7;\" href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\">\r\nNeed help?</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><a id=\"meet_invite_block.action.join_link\" title=\"Meeting join link\" class=\"me-email-headline\" style=\"font-size: 20px; font-weight:600; text-decoration: underline; color: #5B5FC7;\" href=\"https://teams.microsoft.com/l/meetup-join/19%3ameeting_NWZiMDc0NmYtMDQyZi00OWRjLWI3ODItMWY5NjYwZDhhMTNl%40thread.v2/0?context=%7b%22Tid%22%3a%220930a80e-2157-43f6-aeeb-8cd66ff956b1%22%2c%22Oid%22%3a%22ed6fbfe0-0b33-4893-8efe-ef687ac31ad7%22%7d\" target=\"_blank\" rel=\"noreferrer noopener\">Join\r\n the meeting now</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Meeting ID:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">272 301 516 892 5</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Passcode:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">Cu788is6</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px; max-width: 532px;\">\r\n<hr style=\"border: 0; background: #D1D1D1; height: 1px;\">\r\n</div>\r\n<div><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">For organizers:\r\n</span><a id=\"meet_invite_block.action.organizer_meet_options\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7;\" target=\"_blank\" href=\"https://teams.microsoft.com/meetingOptions/?organizerId=ed6fbfe0-0b33-4893-8efe-ef687ac31ad7&amp;tenantId=0930a80e-2157-43f6-aeeb-8cd66ff956b1&amp;threadId=19_meeting_NWZiMDc0NmYtMDQyZi00OWRjLWI3ODItMWY5NjYwZDhhMTNl@thread.v2&amp;messageId=0&amp;language=en-US\" rel=\"noreferrer noopener\">Meeting\r\n options</a> </div>\r\n<div style=\"margin-top: 24px; margin-bottom: 6px;\"></div>\r\n<div style=\"margin-bottom: 24px;\"></div>\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\">________________________________________________________________________________</div>\r\n</div>\r\n</body>\r\n</html>','\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://teams.microsoft.com/l/meetup-join/19%3ameeting_NWZiMDc0NmYtMDQyZi00OWRjLWI3ODItMWY5NjYwZDhhMTNl%40thread.v2/0?context=%7b%22Tid%22%3a%220930a80e-2157-43f6-aeeb-8cd66ff956b1%22%2c%22Oid%22%3a%22ed6fbfe0-0b33-4893-8efe-ef687ac31ad7%22%7d>\r\nMeeting ID: 272 301 516 892 5\r\nPasscode: Cu788is6\r\n________________________________\r\nFor organizers: Meeting options<https://teams.microsoft.com/meetingOptions/?organizerId=ed6fbfe0-0b33-4893-8efe-ef687ac31ad7&tenantId=0930a80e-2157-43f6-aeeb-8cd66ff956b1&threadId=19_meeting_NWZiMDc0NmYtMDQyZi00OWRjLWI3ODItMWY5NjYwZDhhMTNl@thread.v2&messageId=0&language=en-US>\r\n________________________________________________________________________________',0,0,0,0,0,0,'2025-07-20 17:01:01','2025-12-09 19:17:23','2025-12-09 19:17:23','2025-12-09 19:17:23',NULL,NULL,NULL),
(492,4,'<88d9d88e668970182d3c21da9325ac8de39a2f83-20069609-110897131@google.com>',NULL,NULL,'You have 3 days to set up Google Workspace for mavrix.one','workspace-noreply@google.com','The Google Workspace Team','<div>\r\n  <html xmlns:v=urn:schemas-microsoft-com:vml dir=ltr lang=en style=\"margin:0; padding:0\">\r\n    <meta http-equiv=Content-Type content=\"text/html; charset=utf-8\">\r\n    <meta name=viewport content=width=device-width>\r\n    <style>@media only screen{html{min-height:100%;background:#fafafa}}@media only screen and (max-width:640px){.small-float-center{margin:0 auto!important;float:none!important;text-align:center!important}}@media only screen and (max-width:640px){table.body img{width:auto;height:auto}table.body center{min-width:0!important}table.body .container{width:344px!important}table.body .columns{height:auto!important;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:40px!important;padding-right:40px!important}table.body .columns .columns{padding-left:0!important;padding-right:0!important}table.body .collapse .columns{padding-left:0!important;padding-right:0!important}th.small-1{display:inline-block!important;width:8.33333%!important}th.small-3{display:inline-block!important;width:25%!important}th.small-4{display:inline-block!important;width:33.33333%!important}th.small-6{display:inline-block!important;width:50%!important}th.small-8{display:inline-block!important;width:66.66667%!important}th.small-9{display:inline-block!important;width:75%!important}th.small-12{display:inline-block!important;width:100%!important}.columns th.small-12{display:block!important;width:100%!important}table.menu{width:100%!important}table.menu td,table.menu th{width:auto!important;display:inline-block!important}table.menu.vertical td,table.menu.vertical th{display:block!important}table.menu[align=center]{width:auto!important}}</style>\r\n    <span class=preheader style=color:#fafafa;display:none!important;font-size:1px;line-height:1px;max-height:0;max-width:0;mso-hide:all!important;opacity:0;overflow:hidden;visibility:hidden></span>\r\n    <table class=body style=Margin:0;background:#F8F9FA!important;border-collapse:collapse;border-spacing:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;height:100%;line-height:inherit;margin:0;padding:0;vertical-align:top;width:100%;text-align:left>\r\n      <tr style=padding:0;vertical-align:top>\r\n        <td class=center align=center valign=top style=-moz-hyphens:none;-webkit-hyphens:none;Margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all>\r\n          <center data-parsed=\"\" style=min-width:600px;width:100%>\r\n\r\n            <table align=center class=\"container float-center\" style=\"Margin:0 auto;background:#fafafa;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:left;vertical-align:top;width:600px\"><tbody><tr style=padding:0;vertical-align:top><td style=-moz-hyphens:none;-webkit-hyphens:none;Margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all>\r\n              <table class=\"row header\" style=background:#F8F9FA;border-collapse:collapse;border-spacing:0;display:table;font-size:12px;padding:0;position:relative;vertical-align:top;width:100%><tbody><tr style=padding:0;vertical-align:top>\r\n                <th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0 auto;padding:0;padding-bottom:24px;padding-left:40px;padding-right:40px;padding-top:12px;width:560px\"><table style=border-collapse:collapse;border-spacing:0;margin-bottom:0;padding:0;vertical-align:top;width:100%><tr style=padding:0;vertical-align:top><th style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0;text-align:left>\r\n\r\n                  <img src=https://storage.googleapis.com/support-kms-prod/GaOvClLdIVxiDUB6sr9FETwxw9I7ykkXR856 alt=\"Google Workspace\" height=30 style=-ms-interpolation-mode:bicubic;clear:both;display:block;margin-top:24px;max-height:30px;max-width:100%;outline:0;text-decoration:none;width:auto>\r\n\r\n                </th>\r\n<th class=expander style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0!important;visibility:hidden;width:0></th></tr></table></th>\r\n              </tr></tbody></table>\r\n\r\n              <table class=\"row info\" style=align-items:center;background:#fff;border-collapse:collapse;border-color:#E8EAED;border-spacing:0;border-style:solid;border-width:1px;display:table;padding:0;position:relative;vertical-align:top;width:100%><tbody><tr style=padding:0;vertical-align:top>\r\n                <th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0 auto;padding:0;padding-bottom:0;padding-left:40px;padding-right:40px;width:560px\"><table style=border-collapse:collapse;border-spacing:0;padding:0;vertical-align:top;width:100%><tr style=padding:0;vertical-align:top><th style=\"Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0 0 24px;text-align:left\">\r\n\r\n<div><title>Verify domain ownership</title></div>\r\n<h2 style=\"margin:0;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:24px;font-weight:700;line-height:30px!important;margin-bottom:24px;margin-top:24px;padding:0;word-wrap:normal\">Don’t miss out on Google Workspace</h2>\r\n\r\n<p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;margin:0;margin-bottom:16px;padding:0>Your Google Workspace trial account will be automatically deleted in 3 days unless you verify that you own the domain, <a class=noclick style=Margin:0;color:inherit;font-family:inherit;font-weight:inherit;line-height:inherit;margin:0;margin-bottom:inherit;margin-top:inherit;padding:0;text-decoration:none>mavrix.one</a>. Set up now to start using business email, cloud storage, video conferencing, and more.</p>\r\n\r\n<h3 style=\"margin:0;margin-bottom:8px;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;line-height:24px!important;margin:15px 0 5px 0;margin-bottom:10px;padding:0;word-wrap:normal\">Get help setting up your account</h3>\r\n\r\n<p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;margin:0;margin-bottom:16px;padding:0>Setting up doesn’t take long and the Google Workspace support team can walk you through the process. 24/7 support is included with Google Workspace.</p>\r\n\r\n<table class=accountinfo role=presentation style=align:center;background:#f3f3f3;border-collapse:collapse;border-spacing:0;margin-bottom:12px;padding:0;vertical-align:top;width:100%>\r\n  <tbody>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <th class=accountinfo style=\"margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:inherit;line-height:inherit;margin:0;padding:16px 32px 0 32px\">\r\n      <h3 class=accountinfo style=\"margin:0;margin-bottom:8px;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;line-height:26px!important;margin:0;margin-bottom:12px;margin-top:none!important;padding:0;text-align:center;word-wrap:normal\">Your Google Workspace account</h3>\r\n      </th>\r\n    </tr>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <td class=accountinfo style=\"-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0 32px 0 32px;vertical-align:top;word-wrap:keep-all\">\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:0;padding:0><strong>Username: </strong></p>\r\n\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:16px;padding:0><a class=noclick style=margin:0;color:#1f1f1f;font-family:inherit;font-weight:inherit;margin:0;padding:0;text-decoration:none>rick@mavrix.one</a></p>\r\n      </td>\r\n    </tr>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <td class=accountinfo style=\"-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0 32px 0 32px;vertical-align:top;word-wrap:keep-all\">\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:0;padding:0><strong>Domain: </strong></p>\r\n\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:16px;padding:0><a class=noclick style=margin:0;color:#1f1f1f;font-family:inherit;font-weight:inherit;margin:0;padding:0;text-decoration:none>mavrix.one</a></p>\r\n      </td>\r\n    </tr>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <td class=accountinfo style=\"-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0 32px 0 32px;vertical-align:top;word-wrap:keep-all\">\r\n      <table class=\"button radius thumbnail\" role=presentation style=\"margin:9px 0 24px 0;border:none;border-collapse:collapse;border-radius:3px;border-spacing:0;box-shadow:0 0 0 1px rgba(10,10,10,.2);display:inline-block;line-height:0;max-width:100%;padding:0;transition:box-shadow .2s ease-out;vertical-align:top;width:auto\">\r\n        <tbody>\r\n          <tr style=padding:0;vertical-align:top>\r\n            <td style=-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all>\r\n            <table style=border-collapse:collapse;border-spacing:0;padding:0;vertical-align:top;width:100%>\r\n              <tbody>\r\n                <tr style=padding:0;vertical-align:top>\r\n                  <td style=-moz-hyphens:none;-webkit-hyphens:none;margin:0;background:#1A73E8;border:none;border-collapse:collapse!important;border-radius:3px;color:#fff;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all><a href=https://c.gle/ANiao5o6NwtX98eDRhw83HYTHZu_AuGYURXP66gnoeakRJeAUM5k8P16jAyN_eJVbe1R1ffYQXHLhBOg0o51wBRt2fN32E3iQrjO7VIpHDqSRXvQU1pvjEVpPT1crp57b-Pq4N1J8YmU4Q_F8ocn8VjQ0hhvBVimVX3c-7l358U-EnvzRVdzETHIpo0Ii107 style=\"margin:0;border:0 solid #1A73E8;border-radius:3px;color:#fff;display:inline-block;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:500;line-height:24px;margin:0;padding:8px 16px 8px 16px;text-decoration:none\">Contact us</a></td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n            </td>\r\n          </tr>\r\n        </tbody>\r\n      </table>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;margin:0;margin-bottom:16px;padding:0>If you prefer to set up on your own, <a href=https://c.gle/ANiao5qG9McU0q-yagt1AiUYCGYQ806C4wfdQ5IP9jY3rEqNRMNtLi-IzN6S9ifyihJTRJLlcRQ44NjK8UkxKVmu8ePw2aKh7h8ESmaTPLZ0HuMKeGdmpxM style=margin:0;color:#1A73E8;font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400;line-height:1.3;margin:0;padding:0;text-decoration:none>sign in to your Google Admin console</a> and follow the setup steps. Visit the Google Workspace Administrator Help Center to <a href=https://c.gle/ANiao5qlUTEdeLbZAkrx1bIoqhVk_6Xf0NinPJj8wrdyxNA9os_66kA1Fz554FVXsvtSR7YsmVdPXvNEcenFwKgOQ6JJIeoSH7uPdK7LfPxCNrmkxWos09zDPF48l9ak0pfRdN2TFp1JYA8HaUPi57WmiYoeUoGvXt6380IIgM1rrRefbvZT6Wii0JagNA style=margin:0;color:#1A73E8;font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400;line-height:1.3;margin:0;padding:0;text-decoration:none>learn more about domain verification</a>.</p>\r\n\r\n<p class=regards style=\"color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;line-height:24px;margin:0;margin-bottom:0!important;margin-top:8px;padding:0\">Sincerely,</p>\r\n\r\n<p class=signoff style=\"margin:0;margin-bottom:16px;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;line-height:24px;margin:0;margin-bottom:24px!important;padding:0\">The Google Workspace Team</p>\r\n\r\n<p style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;margin:0;margin-bottom:0;padding:0><em><strong>NOTE:</strong> When your Google Workspace trial account is deleted, it can take up to 48 hours before you can use the domain, <a class=noclick style=Margin:0;color:inherit;font-family:inherit;font-weight:inherit;line-height:inherit;margin:0;margin-bottom:inherit;margin-top:inherit;padding:0;text-decoration:none>mavrix.one</a>, with another Google Workspace account.</em></p>\r\n            </th></tr></table></th>\r\n            </tr></tbody></table>\r\n\r\n            <table class=\"row footer\" role=presentation style=background:#F8F9FA;border-collapse:collapse;border-spacing:0;display:table;margin-top:0;padding:0;position:relative;vertical-align:top;width:100%><tbody><tr style=padding:0;vertical-align:top>\r\n              <th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0 auto;padding:0;padding-bottom:0;padding-left:40px;padding-right:40px;width:560px\"><table style=border-collapse:collapse;border-spacing:0;padding:0;vertical-align:top;width:100%><tr style=padding:0;vertical-align:top><th style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:24px;text-align:left>\r\n\r\n                <img src=https://storage.googleapis.com/support-kms-prod/GaOvClLdIVxiDUB6sr9FETwxw9I7ykkXR856 alt=\"Google Workspace\" height=30 style=-ms-interpolation-mode:bicubic;clear:both;display:block;margin-bottom:14px;max-width:100%;max-height:30px;outline:0;text-decoration:none;width:auto>\r\n                <p style=Margin:0;Margin-bottom:16px;color:#6C737F;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:14px;padding:0>\r\n            © 2025  Google LLC 1600 Amphitheatre Parkway, Mountain View, CA 94043\r\n                </p>\r\n                <p style=Margin:0;Margin-bottom:16px;color:#6C737F;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:14px;padding:0>\r\n            <em>You’re receiving this mandatory email service announcement to update you about important changes to your Google Workspace product or account.</em>\r\n            </p>\r\n            </th>\r\n<th class=expander style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0!important;visibility:hidden;width:0></th></tr></table></th>\r\n            </tr></tbody></table>\r\n            </td></tr></tbody></table>\r\n\r\n          </center>\r\n        </td>\r\n      </tr>\r\n    </table>\r\n    <!-- prevent Gmail on iOS font size manipulation -->\r\n   <div style=\"display:none;white-space:nowrap;font:15px courier;line-height:0\">                                                             </div>\r\n\r\n</html>\r\n</div>','From: \"The Google Workspace Team\" [workspace-noreply@google.com]\r\nSubject:  You have 3 days to set up Google Workspace for mavrix.one\r\n\r\nVerify domain ownership\r\n\r\n## Don\'t miss out on Google Workspace\r\n\r\nYour Google Workspace trial account will be automatically deleted in 3 days  \r\nunless you verify that you own the domain, mavrix.one. Set up now to start  \r\nusing business email, cloud storage, video conferencing, and more.\r\n\r\n### Get help setting up your account\r\n\r\nSetting up doesn\'t take long and the Google Workspace support team can walk  \r\nyou through the process. 24/7 support is included with Google Workspace.\r\n\r\n### Your Google Workspace account\r\n\r\n**Username: **\r\n\r\nrick@mavrix.one\r\n\r\n**Domain: **\r\n\r\nmavrix.one\r\n\r\nContact us  \r\n(https://support.google.com/a/answer/1047213?utm_source=9051640&utm_medium=email)\r\n\r\nIf you prefer to set up on your own, sign in to your Google Admin console  \r\n(https://admin.google.com) and follow the setup steps. Visit the Google  \r\nWorkspace Administrator Help Center to learn more about domain verification  \r\n(https://support.google.com/a/answer/60216?utm_source=9051640&utm_medium=email).\r\n\r\nSincerely,\r\n\r\nThe Google Workspace Team\r\n\r\n**NOTE:** When your Google Workspace trial account is deleted, it can take  \r\nup to 48 hours before you can use the domain, mavrix.one, with another  \r\nGoogle Workspace account.\r\n\r\n\r\n(C) 2025  Google LLC 1600 Amphitheatre Parkway, Mountain View, CA 94043 *   \r\nGoogle Asia Pacific Pte. Ltd., 8 Marina View, #30-01, Asia Square 1,  \r\nSingapore 018960  *  Google Ireland Ltd, Gordon House, Barrow Street,  \r\nDublin 4, Ireland.\r\n\r\nYou\'re receiving this mandatory email service announcement to update you  \r\nabout important changes to your Google Workspace product or account.',0,0,0,0,0,0,'2025-07-21 01:35:17','2025-12-09 19:17:23','2025-12-09 19:17:23','2025-12-09 19:17:23',NULL,NULL,NULL),
(493,4,'<CevcgIs2XqDQ1PoHU6FPfFXQipwaElMUG1hP49ows@mavrix.one>',NULL,NULL,'New MAVRIX Mission Signup','rick@mavrix.one','MAVRIX Website','A new user has joined the MAVRIX mission!\r\n\r\nEmail: dastoll@earthlink.net\r\n\r\n','A new user has joined the MAVRIX mission!\r\n\r\nEmail: dastoll@earthlink.net\r\n\r\n',0,0,0,0,0,0,'2025-07-21 02:23:11','2025-12-09 19:17:24','2025-12-09 19:17:24','2025-12-09 19:17:24',NULL,NULL,NULL),
(494,4,'<1842329841.11024126.1753114148693@lor1-app75586.prod.linkedin.com>',NULL,NULL,'Mavrix, improve your profile by adding skills','notifications-noreply@linkedin.com','LinkedIn','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n          @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n        </style> <style>\r\n          .full-width-button, .full-width-button table { display: none; } @media (max-width: 320px) { .inline-button,\r\n          .inline-button table { display: none !important; } .full-width-button, .full-width-button table { display:\r\n          table !important; } }\r\n        </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n          \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n          \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">50% of hirers on LinkedIn use skills data to fill their roles</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 bg-color-background-container\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-left: auto; margin-right: auto; margin-top: 0px; margin-bottom: 0px; width: 512px; max-width: 512px; background-color: #ffffff; padding: 0px;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_profile_qp_welcome_01%3Bk6qJoBBeQQichN6BxalG6A%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0s8s3BdDM9RXQ1&amp;trk=eml-email_profile_qp_welcome_01-header-0-home_glimmer&amp;trkEmail=eml-email_profile_qp_welcome_01-header-0-home_glimmer-null-poh2nf~mddavliz~xg-null-null&amp;eid=poh2nf-mddavliz-xg\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img alt=\"LinkedIn\" src=\"https://static.licdn.com/aero-v1/sc/h/9ehe6n39fa07dc5edzv0rla4e\" class=\"h-[21px] w-[84px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 21px; width: 84px;\" width=\"84\" height=\"21\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-header-profile style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" class=\"w-[32px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 32px;\" width=\"32\"> <a href=\"https://www.linkedin.com/comm/in/mavrix-one-ba3024374?lipi=urn%3Ali%3Apage%3Aemail_email_profile_qp_welcome_01%3Bk6qJoBBeQQichN6BxalG6A%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0s8s3BdDM9RXQ1&amp;trk=eml-email_profile_qp_welcome_01-header-0-profile_glimmer&amp;trkEmail=eml-email_profile_qp_welcome_01-header-0-profile_glimmer-null-poh2nf~mddavliz~xg-null-null&amp;eid=poh2nf-mddavliz-xg\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Mavrix One\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQH7FhVwiiJ44g/profile-displayphoto-scale_200_200/B4EZf50lYcH0AY-/0/1752243001533?e=2147483647&amp;v=beta&amp;t=Bup8mnb1d2TsGleMbZ8CDZE7-ny4WAQ5Meqmu6kHzHo\" class=\"rounded-[100%] w-[32px] h-[32px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 32px; width: 32px; border-radius: 100%;\" width=\"32\" height=\"32\"> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"px-3 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px; padding-bottom: 24px;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <h2 class=\"heading-large text-color-text text-center\" style=\"margin: 0; text-align: center; color: rgba(0, 0, 0, 0.9); font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif; font-size: 20px; font-weight: 500; line-height: 1.25;\">50% of hirers on LinkedIn use skills data to fill their roles</h2> </tr> <tr> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"quality-profile-status-widget\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr valign=\"top\" align=\"center\"> <td align=\"center\" class=\"pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[96px] h-[96px] align-top\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQH7FhVwiiJ44g/profile-displayphoto-scale_200_200/B4EZf50lYcH0AY-/0/1752243001533?e=2147483647&amp;v=beta&amp;t=Bup8mnb1d2TsGleMbZ8CDZE7-ny4WAQ5Meqmu6kHzHo\" alt=\"Mavrix One’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"heading-large\" style=\"margin: 0; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif; font-size: 20px; font-weight: 500; line-height: 1.25;\"> Mavrix One </p> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"body-small leading-regular\" style=\"margin: 0; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif; font-size: 14px; font-weight: 400; line-height: 1.25;\"> Tampa, Florida, United States </p> </td> </tr> <tr> <td align=\"center\" class=\"pt-1.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 12px;\"> <img align=\"center\" class=\"w-2 h-2\" src=\"https://static.licdn.com/aero-v1/sc/h/cru1rpi9y9n0u3kyh0jrzmz79\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> <span class=\"body-small leading-regular\" style=\"font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif; font-size: 14px; font-weight: 400; line-height: 1.25;\"> Chief Executive Officer at MAVRIX 1 </span> </td> </tr> <tr> <td align=\"center\" class=\"pt-1.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 12px;\"> <img align=\"center\" class=\"w-2 h-2\" src=\"https://static.licdn.com/aero-v1/sc/h/e9zmtqgsycc9ldook8nx1vcq1\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> <span class=\"body-small leading-regular text-color-text-secondary\" style=\"color: rgba(0, 0, 0, 0.6); font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif; font-size: 14px; font-weight: 400; line-height: 1.25;\"> Missing skills </span> </td> </tr> <tr> <td align=\"center\" class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/in/me/add-edit/SKILL_AND_ASSOCIATION?lipi=urn%3Ali%3Apage%3Aemail_email_profile_qp_welcome_01%3Bk6qJoBBeQQichN6BxalG6A%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0s8s3BdDM9RXQ1&amp;trk=eml-email_profile_qp_welcome_01-quality~profile~status~widget-0-add_skills_button&amp;trkEmail=eml-email_profile_qp_welcome_01-quality~profile~status~widget-0-add_skills_button-null-poh2nf~mddavliz~xg-null-null&amp;eid=poh2nf-mddavliz-xg\" target=\"_blank\" aria-label=\"Add a skill\" class=\"align-top\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/in/me/add-edit/SKILL_AND_ASSOCIATION?lipi=urn%3Ali%3Apage%3Aemail_email_profile_qp_welcome_01%3Bk6qJoBBeQQichN6BxalG6A%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0s8s3BdDM9RXQ1&amp;trk=eml-email_profile_qp_welcome_01-quality~profile~status~widget-0-add_skills_button&amp;trkEmail=eml-email_profile_qp_welcome_01-quality~profile~status~widget-0-add_skills_button-null-poh2nf~mddavliz~xg-null-null&amp;eid=poh2nf-mddavliz-xg\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> Add a skill </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_profile_qp_welcome_01%3Bk6qJoBBeQQichN6BxalG6A%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0s8s3BdDM9RXQ1&amp;trk=eml-email_profile_qp_welcome_01-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_profile_qp_welcome_01-SecurityHelp-0-footerglimmer-null-poh2nf~mddavliz~xg-null-null&amp;eid=poh2nf-mddavliz-xg\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving LinkedIn notification emails.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_profile_qp_welcome_01%3Bk6qJoBBeQQichN6BxalG6A%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0s8s3BdDM9RXQ1&amp;trk=eml-email_profile_qp_welcome_01-unsubscribe-0-footerGlimmer&amp;trkEmail=eml-email_profile_qp_welcome_01-unsubscribe-0-footerGlimmer-null-poh2nf~mddavliz~xg-null-null&amp;eid=poh2nf-mddavliz-xg&amp;loid=AQG6B7rY_XGq7AAAAZgtvvy_3Rd0kkV2Jl5hDv-YQ1Cmb-5TQ5uT6qqyN4GWuY4hlxTP4HJvsa46kePi9Girg3jA2iRXFx_doBXerqKyu9c\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\">Unsubscribe</a>   ·   <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_profile_qp_welcome_01%3Bk6qJoBBeQQichN6BxalG6A%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0s8s3BdDM9RXQ1&amp;trk=eml-email_profile_qp_welcome_01-help-0-footerglimmer&amp;trkEmail=eml-email_profile_qp_welcome_01-help-0-footerglimmer-null-poh2nf~mddavliz~xg-null-null&amp;eid=poh2nf-mddavliz-xg\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_profile_qp_welcome_01%3Bk6qJoBBeQQichN6BxalG6A%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0s8s3BdDM9RXQ1&amp;trk=eml-email_profile_qp_welcome_01-footer-0-logoGlimmer&amp;trkEmail=eml-email_profile_qp_welcome_01-footer-0-logoGlimmer-null-poh2nf~mddavliz~xg-null-null&amp;eid=poh2nf-mddavliz-xg\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/aero-v1/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFrWkdGMmJHbDZMWGhuOlpXMWhhV3hmY0hKdlptbHNaVjl4Y0Y5M1pXeGpiMjFsWHpBeDo=.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','50% of hirers on LinkedIn use skills data to fill their roles\r\n\r\n-----------------------------------------\r\n\r\n\r\n    \r\n    Mavrix One\r\n\r\nTampa, Florida, United States\r\n\r\nChief Executive Officer at MAVRIX 1\r\n\r\nMissing skills\r\n\r\nAdd a skill\r\n\r\n      https://www.linkedin.com/comm/in/me/add-edit/SKILL_AND_ASSOCIATION?lipi=urn%3Ali%3Apage%3Aemail_email_profile_qp_welcome_01%3Bk6qJoBBeQQichN6BxalG6A%3D%3D&midToken=AQE-iPshthTClw&midSig=0s8s3BdDM9RXQ1&trk=eml-email_profile_qp_welcome_01-quality~profile~status~widget-0-add_skills_button&trkEmail=eml-email_profile_qp_welcome_01-quality~profile~status~widget-0-add_skills_button-null-poh2nf~mddavliz~xg-null-null&eid=poh2nf-mddavliz-xg\r\n  \r\n      \r\n          \r\n      \r\n\r\n----------------\r\n\r\nThis email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\nLearn why we included this:\r\n      https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_profile_qp_welcome_01%3Bk6qJoBBeQQichN6BxalG6A%3D%3D&midToken=AQE-iPshthTClw&midSig=0s8s3BdDM9RXQ1&trk=eml-email_profile_qp_welcome_01-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_profile_qp_welcome_01-SecurityHelp-0-textfooterglimmer-null-poh2nf~mddavliz~xg-null-null&eid=poh2nf-mddavliz-xg\r\nYou are receiving LinkedIn notification emails.\r\n\r\n          \r\n            \r\n          \r\n        \r\nUnsubscribe:\r\n      https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_profile_qp_welcome_01%3Bk6qJoBBeQQichN6BxalG6A%3D%3D&midToken=AQE-iPshthTClw&midSig=0s8s3BdDM9RXQ1&trk=eml-email_profile_qp_welcome_01-unsubscribe-0-textfooterglimmer&trkEmail=eml-email_profile_qp_welcome_01-unsubscribe-0-textfooterglimmer-null-poh2nf~mddavliz~xg-null-null&eid=poh2nf-mddavliz-xg&loid=AQG6B7rY_XGq7AAAAZgtvvy_3Rd0kkV2Jl5hDv-YQ1Cmb-5TQ5uT6qqyN4GWuY4hlxTP4HJvsa46kePi9Girg3jA2iRXFx_doBXerqKyu9c\r\nHelp:\r\n      https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_profile_qp_welcome_01%3Bk6qJoBBeQQichN6BxalG6A%3D%3D&midToken=AQE-iPshthTClw&midSig=0s8s3BdDM9RXQ1&trk=eml-email_profile_qp_welcome_01-help-0-textfooterglimmer&trkEmail=eml-email_profile_qp_welcome_01-help-0-textfooterglimmer-null-poh2nf~mddavliz~xg-null-null&eid=poh2nf-mddavliz-xg\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',0,0,0,0,0,0,'2025-07-21 16:09:08','2025-12-09 19:17:24','2025-12-09 19:17:24','2025-12-09 19:17:24',NULL,NULL,NULL),
(495,4,'<0f6ff6fb1186e34707273ba1ac28ff9b4a41a39d-20314780-111501887@google.com>',NULL,NULL,'Your recommendations: Tools designed to keep you in the flow','workspace-noreply@google.com','The Google Workspace Team','<!doctype html><html lang=en xmlns=http://www.w3.org/1999/xhtml xmlns:v=urn:schemas-microsoft-com:vml xmlns:o=urn:schemas-microsoft-com:office:office><head><title>Discover Google Workspace</title><!--[if !mso]><!-- --><meta http-equiv=X-UA-Compatible content=IE=edge><!--<![endif]--><meta http-equiv=Content-Type content=\"text/html; charset=UTF-8\"><meta name=viewport content=width=device-width,initial-scale=1><style type=text/css>#outlook a { padding:0; } body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; } table { border-spacing:0;} img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; } p { display:block;margin:13px 0; }</style><!--[if mso]> <xml> <o:OfficeDocumentSettings> <o:AllowPNG/> <o:PixelsPerInch>96</o:PixelsPerInch> </o:OfficeDocumentSettings> </xml> <style type=\"text/css\"> table { border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt; } .mj-outlook-group-fix { width:100% !important; } .mso-button-dark-mode a {background: transparent !important;} </style> <![endif]--><!--[if !mso]><!--><link href=https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,700 rel=stylesheet type=text/css><link href=https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700|Google+Sans:400,500,700|Google+Sans+Display:400,500,700|Open+Sans:400,500,700 rel=stylesheet type=text/css><link href=https://client-data.knak.io/production/company_data/608c388d87e9e/custom-fonts/62b086f5c0cbf/fonts.css rel=stylesheet type=text/css><style type=text/css>@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,700); @import url(https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700|Google+Sans:400,500,700|Google+Sans+Display:400,500,700|Open+Sans:400,500,700); @import url(https://client-data.knak.io/production/company_data/608c388d87e9e/custom-fonts/62b086f5c0cbf/fonts.css);</style><!--<![endif]--><style type=text/css>@media only screen and (min-width:950px) { .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } }</style><style type=text/css>u ~ div .img-container img + div { display: none } .links-1A73E8-bold a { color: #1A73E8; text-decoration: none; font-weight: bold; } #body #main [x-apple-data-detectors-type] { color: inherit !important; -webkit-text-decoration-color: inherit !important; text-decoration: inherit !important; font-weight: inherit !important; } .links-0068A5-underline a { color: #0068A5; text-decoration: underline; } .links-0068A5 a { color: #0068A5; text-decoration: none; } .links-1A73E8 a { color: #1A73E8; text-decoration: none; } @media only screen and (min-width:950px) { .max-width-214px { max-width: 214px !important} .font-size-32px { font-size: 32px !important} .font-size-16px { font-size: 16px !important} .font-size-14px { font-size: 14px !important} .img-full-width { max-width: 100% !important} }</style><style type=text/css>p{margin: 0 0;}ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #0B57D0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}.button-highlight{transition: 0.3s;}.button-highlight:hover{filter: brightness(1.5);}@media only screen and (min-width: 950px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}</style><!--[if mso]> <style> .hide-on-mobile {display:block !important} </style> <![endif]--><!--[if mso]> <style> .mso-font-size-32px { font-size: 32px !important; } .mso-font-size-16px { font-size: 16px !important; } .font-size-14px { font-size: 14px !important} </style> <![endif]--><!--[if gte mso 16]> <style> .mso-text-white a { mso-style-textfill-type: gradient; mso-style-textfill-fill-gradientfill-stoplist: \"0 \\#FFFFFF 0 100000\\,100000 \\#FFFFFF 0 100000\"; color: #000000 !important; } </style> <![endif]--><style>[class~=\"x_body\"] { width: 99.9% }</style></head><body style=word-spacing:normal;background-color:#F0F4F9; class=body id=body><!--[if !mso 9]><!--><div id=emailPreHeader style=\"display: none;\">Teamwork on the go is simple.</div><div style=\"display: none;\">&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199;&#8199; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &#8199;&#8205;&#847; &#8199;&#847; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &nbsp;</div><!--<![endif]--><div style=\"background-color:#F0F4F9;background-position:center center;background-size:auto;background-repeat:repeat;\" id=main><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:transparent;width:100%; class=section><tr><td align=center><div role=presentation><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"background:transparent;background-color:transparent;Margin:0px auto;border-radius:0px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:transparent;width:100%;border-radius:0px;><tr><td style=border-radius:0px;font-size:0px;padding:0;text-align:center;vertical-align:top; class=block-grid><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:600px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=\"background-color:transparent;border-radius:0px;vertical-align:top;padding:5px 0px 5px 0px;\"><table border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:20px;height:20px;mso-line-height-alt:20px;>&nbsp;</div></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></div></td></tr></table><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:transparent;width:100%; class=section><tr><td align=center><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"background:transparent;background-color:transparent;Margin:0px auto;border-radius:24px 24px 0px 0px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=\"background-color:transparent;width:100%;border-radius:24px 24px 0px 0px;\"><tr><td style=\"border-radius:24px 24px 0px 0px;font-size:0px;padding:0px 8px 2px 8px;text-align:center;vertical-align:top;\" class=block-grid><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=background-color:transparent;line-height:0;font-size:0;direction:ltr;><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:584px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=\"background-color:#FFFFFF;border-radius:24px 24px 0px 0px;vertical-align:top;padding:24px 24px 24px 24px;\"><table border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td class=img-container style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><div style=\"margin:0 auto;max-width:214.4px;\" class=max-width-214px><a href=https://c.gle/ANiao5qFOed0z7nAGFRXhPZSWLY9Uxh3-ElHylS7Iv5zEHuecaHZn5oKkfRcGuqWXDFjxptMd8awqmsGtgpoY1gnsI7NJAu_JaLq8AeyTKJ3Fka3Jg5wY_2gYZM1QoMq-f4bF45QGxwBH6TaHklM2buBQ78iQMA target=_blank style=\"text-decoration: none; color: #0B57D0;\"><img alt=\"Google Workspace\" height=auto width=214 src=https://gstatic.com/growthlab/api/qKZRzO3MC3UgATELdQY9rmtE6niVyqlNrezhCPIs.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></a></div></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:transparent;width:100%; class=section><tr><td align=center><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"background:transparent;background-color:transparent;Margin:0px auto;border-radius:24px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:transparent;width:100%;border-radius:24px;><tr><td style=\"border-radius:24px;font-size:0px;padding:2px 8px 2px 8px;text-align:center;vertical-align:top;\" class=block-grid><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=background-color:transparent;line-height:0;font-size:0;direction:ltr;><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:584px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=\"background-color:#FFFFFF;border-radius:2px;vertical-align:top;padding:24px 24px 24px 24px;\"><table border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td class=img-container style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><div style=\"margin:0 auto;max-width:200px;\"><a href=https://c.gle/ANiao5pHnc7vu1PzWqSH7I3WCWbbPkHpIX5hVGuglRKR8EesBpI7mMsPlJvZqHZDgGXZUYaHZ5PzuCww9dysS807WLGq_DXEkvg2D71VPNBkZqlIBBYOZ8wixNIWDXbWG8hfIY9B5050cD593bbbqoD2NvKvlQ target=_blank style=\"text-decoration: none;\"><img alt=\"GWS Icon Cluster\" height=auto width=200 src=https://gstatic.com/growthlab/api/mtPtjXZpLNbmuRae04ZkwdUqXvZB1JK4lHsv0jrz.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></a></div></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:8px;height:8px;mso-line-height-alt:8px;>&nbsp;</div></td></tr><tr><td class=text-container style=\"font-size:0px;padding:8px 8px 8px 8px;word-break:break-word;text-align:center;\"><div class=links-1A73E8-bold><div style=\"font-family:\'Google Sans\', \'Open Sans\', Arial, sans-serif;font-size:24px;font-weight:700;letter-spacing:none;line-height:1.2;text-align:center;mso-line-height-alt:2.375em;color:#1F1F1F;\" class=\"mso-font-size-32px font-size-32px\"><p style=\"margin: 0 0;\">How businesses of all stages move faster</p></div></div></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:8px;height:8px;mso-line-height-alt:8px;>&nbsp;</div></td></tr><tr><td class=text-container style=\"font-size:0px;padding:10px 8px 10px 8px;word-break:break-word;text-align:center;\"><div class=links-0068A5-underline><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:14px;letter-spacing:none;line-height:1.50;text-align:center;mso-line-height-alt:1.5em;color:#1F1F1F;\" class=\"mso-font-size-16px font-size-16px\"><p style=\"margin: 0 0;\">Google Workspace helps you connect, create, and collaborate at the speed you need to grow.</p></div></div></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:8px;height:8px;mso-line-height-alt:8px;>&nbsp;</div></td></tr><tr><td valign=middle class=\"button-highlight button-container\" style=\"transition: 0.3s; font-size: 0px; padding: 9px 9px 9px 8px; word-break: break-word; text-align: center;\" align=center><div><!--[if mso]><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\" class=\"font-size-14px\"><tr><td align=\"center\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://c.gle/ANiao5oMrx-w3o10Jkg1oGCNsJQPhZbD-JYsi72_RgFmzIrzUG1goSUMEIzBKJ-ETr7pNxPLJhK9XcQ1ntaPh1hyGZYeR3hkvpQ1tpNHMADscGK22wN2QMJD8GysOnFfmcoP03hWlKSUiLKMzeKHHOCTirWUwZ3HZeqr7-KEWQ\" fillcolor=\"#0B57D0\" arcsize=\"109%\" style=\"v-text-anchor:middle;width:179.25pt;height:34.5pt;\" stroke=\"f\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\" class=\"mso-text-white\"><![endif]--> <a href=https://c.gle/ANiao5oMrx-w3o10Jkg1oGCNsJQPhZbD-JYsi72_RgFmzIrzUG1goSUMEIzBKJ-ETr7pNxPLJhK9XcQ1ntaPh1hyGZYeR3hkvpQ1tpNHMADscGK22wN2QMJD8GysOnFfmcoP03hWlKSUiLKMzeKHHOCTirWUwZ3HZeqr7-KEWQ style=\"display: inline-block; background: #0B57D0; color: #ffffff; font-family: \'Google Sans Text\', Arial, sans-serif; font-size: 14px; font-weight: 500; line-height: 1.00; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 17px 24px 17px 24px; mso-padding-alt: 0px; border-radius: 50px; mso-border-alt: none; box-sizing: border-box;\" target=_blank width=239 class=font-size-14px><strong>Discover Google Workspace</strong> </a><!--[if mso]></center></a:textbox></a:roundrect></td></tr></table><![endif]--></div></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:24px;height:24px;mso-line-height-alt:24px;>&nbsp;</div></td></tr><tr><td class=img-container style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><div style=\"margin:0 auto;max-width:536px;\" class=img-full-width><img alt height=auto width=536 src=https://gstatic.com/growthlab/api/dwVmOYBf8dO1AVC2sUZ7CQlhGFk2hUqVuHiZpVgE.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></div></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:24px;height:24px;mso-line-height-alt:24px;>&nbsp;</div></td></tr><tr><td class=text-container style=\"font-size:0px;padding:10px 8px 10px 8px;word-break:break-word;text-align:left;\"><div class=links-0068A5-underline><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:14px;letter-spacing:none;line-height:1.50;text-align:left;mso-line-height-alt:1.313em;color:#1F1F1F;\"><p style=\"margin: 0 0;\">Hi Rick,</p><p style=\"margin: 0 0;\">&nbsp;</p><p style=\"margin: 0 0;\">Discover how Google Workspace can boost productivity, centralize files, and automate tasks, giving you back valuable time to focus on what matters most.</p></div></div></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%; class=section><tr><td align=center><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"Margin:0px auto;border-radius:0px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%;border-radius:0px;><tr><td style=\"border-radius:0px;font-size:0px;padding:2px 8px 2px 8px;text-align:center;vertical-align:top;\" class=block-grid><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:584px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:top; width=100%><tr><td><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:#FFFFFF;width:100%;border-radius:2px; class=section><tr><td align=center style=\"border-radius:2px;font-size:0px;text-align:center;vertical-align:top;padding:24px 8px 24px 24px;word-break:break-word;\"><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:middle;width:276px;\" ><![endif]--><div class=\"mj-column-per-50 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:middle; width=100%><tr><td class=text-container style=\"font-size:0px;padding:8px 0px 8px 8px;word-break:break-word;text-align:left;\"><div class=links-0068A5><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:14px;letter-spacing:none;line-height:1.50;text-align:left;mso-line-height-alt:1.313em;color:#1F1F1F;\"><p style=\"margin: 0 0;\"><strong>Use Gemini, your AI-powered assistant</strong></p><p style=\"margin: 0 0;\">The <a href=https://c.gle/ANiao5oGIP-qPT8uNR_jcK3xAiRfZ__qwm14nHeqvOq17NOeLWnhATKym-yKDySXBzmTVFjB3yO6nInrLbZvMPJuJB0OQbLJiKN0XDPb1nTLfIzvA38_yMEZCNugZxfD9GGpXLo target=_blank rel=noopener data-k-tracking-label=Geminiapp style=\"color: rgb(26, 115, 232); text-decoration: underline;\">Gemini app</a> is included in your Google Workspace plan to help you research, brainstorm, write, and more – safely and securely.</p></div></div></td></tr><tr><td valign=middle class=button-container style=\"font-size:0px;padding:8px 8px 8px 8px;word-break:break-word;text-align:left;\"><div><!--[if mso]><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\" class=\"font-size-14px\"><tr><td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://c.gle/ANiao5q44Ml9wpvWiKUQfPQFXitNsmTxHw2Ez3guTyvQJof3dgz5aW9dvoKjvly1rNxAtSQCfVJPHb4hVH189nMfrHdn3Q115cmwQOz_o_h43QXsorSL9OR2XBf4msf5InfIrpKAbp6Jhx5gFSPt\" fillcolor=\"#FFFFFF\" arcsize=\"116%\" style=\"v-text-anchor:middle;width:160pt;height:32.25pt;\" strokecolor=\"#747775\" strokeweight=\"0.75pt\" ><w:anchorlock/><a:textbox inset=\"24px,0,24px,0\"><span style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=https://c.gle/ANiao5q44Ml9wpvWiKUQfPQFXitNsmTxHw2Ez3guTyvQJof3dgz5aW9dvoKjvly1rNxAtSQCfVJPHb4hVH189nMfrHdn3Q115cmwQOz_o_h43QXsorSL9OR2XBf4msf5InfIrpKAbp6Jhx5gFSPt style=\"display: inline-block; background: #FFFFFF; color: #0B57D0; font-family: \'Google Sans Text\', Arial, sans-serif; font-size: 12px; font-weight: normal; line-height: 1.2; margin: 0; text-align: left; text-decoration: none; text-transform: none; padding: 15px 24px 15px 24px; mso-padding-alt: 0px; border-radius: 50px; border-left: 1px solid #747775; border-right: 1px solid #747775; border-top: 1px solid #747775; border-bottom: 1px solid #747775; mso-border-alt: none; box-sizing: border-box;\" target=_blank width=124 class=font-size-14px><span style=\"font-size: 14px; font-weight: 400;\">Access the Gemini app</span> </a><!--[if mso]></span></a:textbox></a:roundrect></td></tr></table><![endif]--></div></td></tr></table></div><!--[if mso | IE]></td><td style=\"vertical-align:top;width:276px;\" ><![endif]--><div class=\"mj-column-per-50 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:top; width=100%><tr><td class=\"hide-on-mobile img-container\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=center><div style=\"margin:0 auto;max-width:220px;\"><a href=https://c.gle/ANiao5qX2Pyed9vm6qINSXHP0t2sOBTEK_5arxin7jjqUTvJwpgKtVHW5n0p_4vbPJZ6lAEf9J2wWJHGeH-yMLkRhYhd2L7wiD-qRsOR58R8tBAiEvacBMCSomv89h3YulxpjxURKQ target=_blank style=\"text-decoration: none; color: #0B57D0;\"><img alt=\"An illustration of a group of friends using the Gemini app from their mobile device.\" height=auto width=220 src=https://services.google.com/fh/files/misc/discover_digest_email2_img1.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></a></div></td></tr></table></div><!--[if mso | IE]></td></tr></table></td></tr></table><![endif]--></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%; class=section><tr><td align=center><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"Margin:0px auto;border-radius:0px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%;border-radius:0px;><tr><td style=\"border-radius:0px;font-size:0px;padding:2px 8px 2px 8px;text-align:center;vertical-align:top;\" class=block-grid><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:584px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:top; width=100%><tr><td><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:#FFFFFF;width:100%;border-radius:2px; class=section><tr><td align=center style=\"border-radius:2px;font-size:0px;text-align:center;vertical-align:top;padding:24px 8px 24px 24px;word-break:break-word;\"><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:middle;width:276px;\" ><![endif]--><div class=\"mj-column-per-50 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:middle; width=100%><tr><td class=text-container style=\"font-size:0px;padding:8px 0px 8px 8px;word-break:break-word;text-align:left;\"><div class=links-0068A5><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:14px;letter-spacing:none;line-height:1.50;text-align:left;mso-line-height-alt:1.313em;color:#1F1F1F;\"><p style=\"margin: 0 0;\"><strong>Download the apps</strong></p><p style=\"margin: 0 0;\">Update and securely access all your files, from anywhere, with the Workspace mobile apps.</p></div></div></td></tr><tr><td valign=middle class=button-container style=\"font-size:0px;padding:8px 8px 8px 8px;word-break:break-word;text-align:left;\"><div><!--[if mso]><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\" class=\"font-size-14px\"><tr><td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://c.gle/ANiao5pPdWEihlCzs5SbN9DqaiSLevPpvvRzECkD_CBbQsHRJlO7qqj3w25dYaZAgeK4Q3AImnXclyrlAbeSDU9dd8pEqsNw10dmzMIuSfWuzKpzw-jxbj_Gdby-cOaDmuBwmW-6863OMvW6TMVqCg-mxrpHDt1LCLHwiw\" fillcolor=\"#FFFFFF\" arcsize=\"116%\" style=\"v-text-anchor:middle;width:94.75pt;height:32.25pt;\" strokecolor=\"#747775\" strokeweight=\"0.75pt\" ><w:anchorlock/><a:textbox inset=\"24px,0,24px,0\"><span style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=https://c.gle/ANiao5pPdWEihlCzs5SbN9DqaiSLevPpvvRzECkD_CBbQsHRJlO7qqj3w25dYaZAgeK4Q3AImnXclyrlAbeSDU9dd8pEqsNw10dmzMIuSfWuzKpzw-jxbj_Gdby-cOaDmuBwmW-6863OMvW6TMVqCg-mxrpHDt1LCLHwiw style=\"display: inline-block; background: #FFFFFF; color: #0B57D0; font-family: \'Google Sans Text\', Arial, sans-serif; font-size: 12px; font-weight: normal; line-height: 1.2; margin: 0; text-align: left; text-decoration: none; text-transform: none; padding: 15px 24px 15px 24px; mso-padding-alt: 0px; border-radius: 50px; border-left: 1px solid #747775; border-right: 1px solid #747775; border-top: 1px solid #747775; border-bottom: 1px solid #747775; mso-border-alt: none; box-sizing: border-box;\" target=_blank width=113 class=font-size-14px><span style=\"font-size: 14px; font-weight: 400;\">Download</span> </a><!--[if mso]></span></a:textbox></a:roundrect></td></tr></table><![endif]--></div></td></tr></table></div><!--[if mso | IE]></td><td style=\"vertical-align:top;width:276px;\" ><![endif]--><div class=\"mj-column-per-50 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:top; width=100%><tr><td class=\"hide-on-mobile img-container\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=center><div style=\"margin:0 auto;max-width:220px;\"><a href=https://c.gle/ANiao5pDGLCuVJUScacMb7xwxnRdBMwxo8CicqP-en0F3yexqxmuDeg5KWB9RVbxJ86iFLVAuUgjCWZIRxcRIvX7mwZ7-aSFlZz0GPrslgkEgS2D4dFXNuJsUn0D0Jl_2nJnhb4vHH4DvFH0WVXhZWdiv0_q_2KVUMEnI7Il target=_blank style=\"text-decoration: none; color: #0B57D0;\"><img alt=\"An illustration of a collection of Google Workspace apps.\" height=auto width=220 src=https://gstatic.com/growthlab/api/lPExS2NmvWnS8IBbXMto3f4hQ9XMx1b4VrxDKOwK.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></a></div></td></tr></table></div><!--[if mso | IE]></td></tr></table></td></tr></table><![endif]--></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%; class=section><tr><td align=center><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"Margin:0px auto;border-radius:0px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%;border-radius:0px;><tr><td style=\"border-radius:0px;font-size:0px;padding:2px 8px 2px 8px;text-align:center;vertical-align:top;\" class=block-grid><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:584px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:top; width=100%><tr><td><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=\"background-color:#FFFFFF;width:100%;border-radius:2px 2px 24px 24px;\" class=section><tr><td align=center style=\"border-radius:2px 2px 24px 24px;font-size:0px;text-align:center;vertical-align:top;padding:24px 8px 24px 24px;word-break:break-word;\"><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:middle;width:276px;\" ><![endif]--><div class=\"mj-column-per-50 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:middle; width=100%><tr><td class=text-container style=\"font-size:0px;padding:8px 0px 8px 8px;word-break:break-word;text-align:left;\"><div class=links-0068A5><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:14px;letter-spacing:none;line-height:1.50;text-align:left;mso-line-height-alt:1.313em;color:#1F1F1F;\"><p style=\"margin: 0 0;\"><strong>Use tasks to stay organized</strong></p><p style=\"margin: 0 0;\">Manage your own to-do lists and keep everything synced across your devices.</p></div></div></td></tr><tr><td valign=middle class=button-container style=\"font-size:0px;padding:8px 8px 8px 8px;word-break:break-word;text-align:left;\"><div><!--[if mso]><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\" class=\"font-size-14px\"><tr><td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://c.gle/ANiao5qUEUnVg5auzR9ErYzcfNssudv4fhSToUIFx8YOgQVtSHNBFHiW5TOyE1bPkVe4I7TqJEzwf2zRWYxWzvRZXgtfCFny3pyQUdYXvbwSkZxJtPRt3ptQXLsa0lD79fGgRy_4iA\" fillcolor=\"#FFFFFF\" arcsize=\"116%\" style=\"v-text-anchor:middle;width:110.5pt;height:32.25pt;\" strokecolor=\"#747775\" strokeweight=\"0.75pt\" ><w:anchorlock/><a:textbox inset=\"24px,0,24px,0\"><span style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=https://c.gle/ANiao5qUEUnVg5auzR9ErYzcfNssudv4fhSToUIFx8YOgQVtSHNBFHiW5TOyE1bPkVe4I7TqJEzwf2zRWYxWzvRZXgtfCFny3pyQUdYXvbwSkZxJtPRt3ptQXLsa0lD79fGgRy_4iA style=\"display: inline-block; background: #FFFFFF; color: #0B57D0; font-family: \'Google Sans Text\', Arial, sans-serif; font-size: 12px; font-weight: normal; line-height: 1.2; margin: 0; text-align: left; text-decoration: none; text-transform: none; padding: 15px 24px 15px 24px; mso-padding-alt: 0px; border-radius: 50px; border-left: 1px solid #747775; border-right: 1px solid #747775; border-top: 1px solid #747775; border-bottom: 1px solid #747775; mso-border-alt: none; box-sizing: border-box;\" target=_blank width=134 class=font-size-14px><span style=\"font-size: 14px; font-weight: 400;\">Create a task</span> </a><!--[if mso]></span></a:textbox></a:roundrect></td></tr></table><![endif]--></div></td></tr></table></div><!--[if mso | IE]></td><td style=\"vertical-align:middle;width:276px;\" ><![endif]--><div class=\"mj-column-per-50 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:middle; width=100%><tr><td class=\"hide-on-mobile img-container\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=center><div style=\"margin:0 auto;max-width:220px;\"><a href=https://c.gle/ANiao5oUC3Eg8ape3GI13FxFAPmpzgCsSPS1iHYBuhEWIHqJ_hsMJ7raF0qpTDIJyoD9tOrTDSXU8aIieJdG6jOhuOEH3SOHbetl_FisbFphL1Df95iqC1em1lnzVdWf1oLtlzqx target=_blank style=\"text-decoration: none; color: #0B57D0;\"><img alt=\"An illustration that shows a to-do list across multiple apps.\" height=auto width=220 src=https://gstatic.com/growthlab/api/IkgTrPPmUPmMYoWYyaqt3MWhViQQR2t9E7HPlXF0.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></a></div></td></tr></table></div><!--[if mso | IE]></td></tr></table></td></tr></table><![endif]--></td></tr></table></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:16px;height:16px;mso-line-height-alt:16px;>&nbsp;</div></td></tr><tr><td valign=middle class=\"button-highlight button-container\" style=\"transition: 0.3s; font-size: 0px; padding: 9px 9px 9px 8px; word-break: break-word; text-align: center;\" align=center><div><!--[if mso]><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\" class=\"font-size-14px\"><tr><td align=\"center\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://c.gle/ANiao5pq5JCZ_LYRMgJ7oc8Gf53Dvlx40Dv577OAWW0drxxzWhdrS1vEuWJOKKdobLwygJqhsPvZEOoPEpjMpSsjgjDFC5VBWsxYvWAbNd3I6ShKkAHA9M9olc1nBlZhsN8BpmATpTTLREb4bLlIj0ldQ5BYX7Urhg1Z8pql\" fillcolor=\"#C2E7FF\" arcsize=\"109%\" style=\"v-text-anchor:middle;width:170.25pt;height:34.5pt;\" stroke=\"f\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=https://c.gle/ANiao5pq5JCZ_LYRMgJ7oc8Gf53Dvlx40Dv577OAWW0drxxzWhdrS1vEuWJOKKdobLwygJqhsPvZEOoPEpjMpSsjgjDFC5VBWsxYvWAbNd3I6ShKkAHA9M9olc1nBlZhsN8BpmATpTTLREb4bLlIj0ldQ5BYX7Urhg1Z8pql style=\"display: inline-block; background: #C2E7FF; color: #001D35; font-family: \'Google Sans Text\', Arial, sans-serif; font-size: 14px; font-weight: 500; line-height: 1.00; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 17px 24px 17px 24px; mso-padding-alt: 0px; border-radius: 50px; mso-border-alt: none; box-sizing: border-box;\" target=_blank width=227 class=font-size-14px><strong>View all recommendations</strong> </a><!--[if mso]></center></a:textbox></a:roundrect></td></tr></table><![endif]--></div></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=width:100%; class=section><tr><td align=center><!--[if mso | IE]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]--><div style=\"background:transparent;background-color:transparent;Margin:0px auto;border-radius:0px;max-width:600px;\"><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation style=background-color:transparent;width:100%;border-radius:0px;><tr><td style=\"border-radius:0px;font-size:0px;padding:16px 0px 36px 0px;text-align:center;vertical-align:top;\" class=block-grid><table align=center border=0 cellpadding=0 cellspacing=0 role=presentation width=100%><tr><td style=background-color:transparent;line-height:0;font-size:0;direction:ltr;><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"vertical-align:top;width:600px;\" ><![endif]--><div class=\"mj-column-per-100 mj-outlook-group-fix\" style=font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;><table border=0 cellpadding=0 cellspacing=0 role=presentation style=border-radius:0px;vertical-align:top; width=100%><tr><td class=text-container style=\"font-size:0px;padding:4px 8px 4px 8px;word-break:break-word;text-align:center;\"><div class=links-0068A5-underline><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:14px;letter-spacing:none;line-height:1.5;text-align:center;mso-line-height-alt:1.188em;color:#1F1F1F;\" class=\"mso-font-size-16px font-size-16px\"><p style=\"margin: 0 0;\">See you online,&nbsp;<br><br>The Google Workspace Team&nbsp;</p></div></div></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:24px;height:24px;mso-line-height-alt:24px;>&nbsp;</div></td></tr><tr><td class=img-container style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><div style=\"margin:0 auto;\"><img alt height=auto width=600 src=https://gstatic.com/growthlab/api/dwVmOYBf8dO1AVC2sUZ7CQlhGFk2hUqVuHiZpVgE.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></div></td></tr><tr><td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\"><div style=line-height:24px;height:24px;mso-line-height-alt:24px;>&nbsp;</div></td></tr><tr><td class=img-container style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:center;\"><div style=\"margin:0 auto;max-width:180px;\"><img alt=\"\" height=auto width=180 src=https://gstatic.com/growthlab/api/qKZRzO3MC3UgATELdQY9rmtE6niVyqlNrezhCPIs.png style=border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;></div></td></tr><tr><td class=text-container style=\"font-size:0px;padding:10px 25px 10px 25px;word-break:break-word;text-align:center;\"><div class=links-1A73E8><div style=\"font-family:\'Google Sans Text\', Arial, sans-serif;font-size:12px;letter-spacing:0px;line-height:1.50;text-align:center;mso-line-height-alt:1.125em;color:#5F6368;\"><p style=\"margin: 0 0;\">© 2025 <a style=pointer-events:none;cursor:text;text-decoration:none;color:#5F6368;font-size:12px;>Google LLC 1600 Amphitheatre Parkway, Mountain View, CA 94043</a></p><p style=\"margin: 0 0;\">&nbsp;</p><p style=\"margin: 0 0;\">This email was sent to rick@mavrix.one because you indicated that you’d like to receive updates and tips about your Google Workspace account. If you don’t want to receive such emails in the future, please <a href=https://myaccount.google.com/communication-preferences/unsubscribe/gt/ANiao5p_TomIoAqhFTmj2kkIHTzxIHfSiOjI0nZvRSMoYiJJRtEY7GedUcCqdMkgxEX0raM3OIqwyJYgpvocJbaO7hgdIgSXyqPqoOC457oAMPTTe9u3OBRApNRn3NzQawQw6uAv6byzfkxbQV9BF-Ghppn4rfVX9_fEgbnblpdWhuCKAkUQ5CYuPhgC2HZnqyweJ__b_6kJT4Jzk0S-3Yo0Ox_seFj5voW1dhY?utm_source=gm&amp;utm_medium=email&amp;auto=true target=_blank rel=noopener style=\"color: #1967D2; text-decoration: underline;\">unsubscribe here</a>. You can also change your preferences on your account’s profile page by logging in at <a href=https://c.gle/ANiao5o4mf9S0FllhtUoeNQQOt7IX7k40Q26L3XH4nte-bf6vQ0CDj70FArutWNzglK1_IAIABA0A9dx8S8H4FbxD8Y1eEVot43Xs8GdKDGqTiuVW0-8Lh6uG2NKW3TMTA target=_blank rel=noopener data-k-tracking-label=Admin style=\"color: rgb(25, 103, 210); text-decoration: underline;\">admin.google.com</a>.</p></div></div></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></td></tr></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></table></div> <!--[if mso ]> <table id=\"email-container\" style=\"width:600px;line-height:0;font-size:0;height:0;overflow:hidden;border-collapse:collapse\" width=\"600\"><img alt=\"\" height=\"1\" src=\"https://notifications.google.com/g/img/ANiao5qPUU9qmGW3-QNwFDKf8skTsrjtIn8FqiAnUMGyk408ZN4lhfAHR-p9-e7wDpA2gXbkM0c444OEjzGAvl_90yDMT1chs91cvgwriIMrqhEDNdwSx9lxQJPPKD4j2ktzN2SEHA.gif\" width=\"3\"></table><![endif]--> <!--[if !mso]><!--> <div style=width:auto;line-height:0;font-size:0;height:0;overflow:hidden;border-collapse:collapse><img alt=\"\" height=1 src=https://notifications.google.com/g/img/ANiao5qPUU9qmGW3-QNwFDKf8skTsrjtIn8FqiAnUMGyk408ZN4lhfAHR-p9-e7wDpA2gXbkM0c444OEjzGAvl_90yDMT1chs91cvgwriIMrqhEDNdwSx9lxQJPPKD4j2ktzN2SEHA.gif width=3></div> <!--<![endif]--> </div> </body></html>','Google Workspace  \r\n<https://c.gle/ANiao5o_EjWbwQc5CveyrZNi1FHiwIX_qgx5lCUvMvVjwIG0Dn77aXjH2KgQlKQ7d4-iKZ5c8r8-kp6HQcU0AdNwK4cduCI6LHO45sPSgEzvNCKeJLtyPc01oUATrzn17k7HzgCIJsl2DBJgF1LzxeSeG1Ko>\r\n\r\nGWS Icon Cluster  \r\n<https://c.gle/ANiao5o2SaRFewGjfD1J9OXW0wq-LO2vABFhAIZUCf3WG3nOA0lva9pmJ7aYNtV29ka61QLU1spfioiGgWxrHPvRnPsfPOS9afYq5kg_oQGoZw1NBG4SkbIy_KIZtGQuHJDB3mjzgjIVPkkFmdVb7DMr03Y>\r\n\r\nHow businesses of all stages move faster\r\n\r\nGoogle Workspace helps you connect, create, and collaborate at the speed  \r\nyou need to grow.\r\n\r\nDiscover Google Workspace  \r\n<https://c.gle/ANiao5qwxlnQurkCpRPBpadjQfZURE5z9H-iXvqhql8VM3fSBVXoqnjNRIkH4iV4o2gSNQ9EeqjfBPvSxI5lyZLWcQI56l06SUGiz9DpidLP8Be4IJ5FVv1V0iL73gbgdkQl1yEhPemYMSwniB7363Zzgbf7s_emacutgLI>\r\n\r\nHi Rick,\r\n\r\nDiscover how Google Workspace can boost productivity, centralize files, and  \r\nautomate tasks, giving you back valuable time to focus on what matters most.\r\n\r\nUse Gemini, your AI-powered assistant\r\n\r\nThe Gemini app  \r\n<https://c.gle/ANiao5pUJDgFyoFOY_eW49sGQxjIg_rCdl00FxEdcge-JYCMUKGnVoawdals-h-ZhQo41GO9NmlGVdNKjcVgD8QgQwvTV_ygVDpXXuNz6IH7iIbTgOsS5TvHZ9dZQzLHz3Tw>  \r\nis included in your Google Workspace plan to help you research, brainstorm,  \r\nwrite, and more – safely and securely.\r\n\r\nAccess the Gemini app  \r\n<https://c.gle/ANiao5opDGiduJ3WgtZN0KGt00JihI4-_j3W4hzyHaAm-SltFN6Vv9yu2yXrlXYEOKGVGJquYnZ7Pd7B_RHc-wnUkmWeFc34OS9k_N1JLH5gtm3wjD74vkbasY88YTW_PvOw_LeiHPt9xhyIhA>\r\n\r\nAn illustration of a group of friends using the Gemini app from their  \r\nmobile device.  \r\n<https://c.gle/ANiao5rcURIVTsgPuQAsrF9eYFqWSiMinqA8tCJ1T3PReOu1mOyPB3esozgwwAS3m3f3cladCrDDjgcewsKwE6ts_l7oEANYKIn5sSLUQ3e0ufrdeuWR0zgMu8YudC5fljW6_34>\r\n\r\nDownload the apps\r\n\r\nUpdate and securely access all your files, from anywhere, with the  \r\nWorkspace mobile apps.\r\n\r\nDownload  \r\n<https://c.gle/ANiao5qn-OrHbDYi6YwSTvlgJEwyR0TJvyk-DFjy__wm4XT2gKdV6XB7GjUB1gH-BjH3u8AitiMVUET8X7ufEU_J65irzOVrbOL6sg36g2YZq-8IuP6_ne6g6ZGsWDU4MqwJcN6fVGlDJVjPaZ9S8XLisz5NNp_yyPA>\r\n\r\nAn illustration of a collection of Google Workspace apps.  \r\n<https://c.gle/ANiao5pISAi8ZRjJgMYNBNXoL2_aTMfUu2IIgMsCVyC9FrQ9ST0ZAJe_SLibMveVLap4W3YScPcWIyK5ncT8HPLNeNlRDbRpk3h_4Nx2Lpvifkoxw_iUKzjY_2zQavOYgOUAIU8UNiBMGIb3YE4mlzlXurumUYawDn7-Qg>\r\n\r\nUse tasks to stay organized\r\n\r\nManage your own to-do lists and keep everything synced across your devices.\r\n\r\nCreate a task  \r\n<https://c.gle/ANiao5pusRorxLECrP7-j9AUf702KfEaXKvM2ehHAafSiMpaNkDMyNryPkzd3mZ0phx9XOxHsBDkCI3i_Kdk5NG42nDqMQmDiK0o9XnSjqF09LPoDZh2nqymQNTw7b4yPbLzUwU>\r\n\r\nAn illustration that shows a to-do list across multiple apps.  \r\n<https://c.gle/ANiao5qn6VAxq8wdvnLfmCSNgolJyfUKRC_6ZHoI6N8QkoVwvgSy0BhIRGd-b7nkHY408V6PW6afXR--I18vlBqP9Y2gRdjkiC6l4XS6uPQJWP56Jtx_cgZCC4H0F8TDPB0HYQ>\r\n\r\nView all recommendations  \r\n<https://c.gle/ANiao5oPN4jEr7OTLbmlzKajJzPyKaLVFak_maif3cXL4h9KHuEJODAjNdBtl2AqekXEHjN4wIzUMTTNL9fatV-uxK8a_zWS9wZRtqX2Z3DC2gxtzWwLjpJiP0xH4X_hb7l0ANTzrv6IMOGsczwKlZ7Nvv-LmMBHcWq7aQ>\r\n\r\nSee you online,\r\n\r\nThe Google Workspace Team\r\n\r\n© 2025 Google LLC 1600 Amphitheatre Parkway, Mountain View, CA 94043\r\n\r\nThis email was sent to rick@mavrix.one because you indicated that you’d  \r\nlike to receive updates and tips about your Google Workspace account. If  \r\nyou don’t want to receive such emails in the future, please unsubscribe  \r\nhere  \r\n<https://myaccount.google.com/communication-preferences/unsubscribe/gt/ANiao5r5dizCYrrAd25co-2t5d24wq0AIATm-jiN7--TLhn6AlSY02pjb6MJTFkvJ-zJDrqw4KHzBet2Zo8fkxMFpbh28J_abJT5zQXMgOr_siFD01e5zEfbaQAmTQA6wtDNuBDVn0lBbcFB1dq5QVpAJJfW8LyYg9vOROfTJvEYPi0_OxfmNCxAhc-cv_1IdRZ0zZ0Y1072O5gtptski83hERL566Em-YWr?utm_source=gm&utm_medium=email&auto=true>.  \r\nYou can also change your preferences on your account’s profile page by  \r\nlogging in at admin.google.com  \r\n<https://c.gle/ANiao5piqm6DOzvAxwjeTT9wtv2S9V93gxhTMnePBgpU8cfQ7C_IQCrhSKGK1InxtVKUEHcTjyGwBb8fDpi8T2DMe8AL6ENKps3zzT-vitTgU_Jxwuer4oIH97fU2Mw>.\r\n',0,0,0,0,0,0,'2025-07-21 17:47:29','2025-12-09 19:17:24','2025-12-09 19:17:24','2025-12-09 19:17:24',NULL,NULL,NULL),
(496,4,'<756252067.11815763.1753152645756@lva1-app86018.prod.linkedin.com>',NULL,NULL,'=?UTF-8?Q?Tell_them_what_you_did_and_how_you_did=E2=80=A6?=','notifications-noreply@linkedin.com','LinkedIn','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n              @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n            </style> <style>\r\n            @media (max-width: 480px) { .inline-button, .inline-button table { display: none !important; }\r\n            .full-width-button, .full-width-button table { display: table !important; } }\r\n          </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n            \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n            \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">Here’s what’s happened since you were last on LinkedIn</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-left: auto; margin-right: auto; margin-top: 0px; margin-bottom: 0px; width: 512px; max-width: 512px; padding: 0px;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"bg-color-background-container \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_notification_digest_01%3Bp5b%2BFloaRriE9Yn0WG6%2F3w%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0j5zZ8jb2aSrQ1&amp;trk=eml-email_notification_digest_01-header-0-home_glimmer_static_badging_with_count&amp;trkEmail=eml-email_notification_digest_01-header-0-home_glimmer_static_badging_with_count-null-poh2nf~mddxt98y~vj-null-null&amp;eid=poh2nf-mddxt98y-vj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU0YjU4YWNjZDY0NTljYWY4YzZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjOGZjYzg1ODgzZWZhYTM0YTM0YTQ0NjYyMDU2MWFmMzIxMGQzNmE5ODg2NmIxMmMsMSwx\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img class=\"h-[37px] w-[101px]\" alt=\"LinkedIn\" src=\"https://static.licdn.com/aero-v1/sc/h/6pplqc0yoaz5jqt2uozvxdcge\" data-test-header-static-badging-img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 37px; width: 101px;\" width=\"101\" height=\"37\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-header-profile style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" class=\"w-[32px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 32px;\" width=\"32\"> <a href=\"https://www.linkedin.com/comm/in/mavrix-one-ba3024374?lipi=urn%3Ali%3Apage%3Aemail_email_notification_digest_01%3Bp5b%2BFloaRriE9Yn0WG6%2F3w%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0j5zZ8jb2aSrQ1&amp;trk=eml-email_notification_digest_01-header-0-profile_glimmer&amp;trkEmail=eml-email_notification_digest_01-header-0-profile_glimmer-null-poh2nf~mddxt98y~vj-null-null&amp;eid=poh2nf-mddxt98y-vj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU0YjU4YWNjZDY0NTljYWY4YzZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjOGZjYzg1ODgzZWZhYTM0YTM0YTQ0NjYyMDU2MWFmMzIxMGQzNmE5ODg2NmIxMmMsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Mavrix One\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQH7FhVwiiJ44g/profile-displayphoto-scale_200_200/B4EZf50lYcH0AY-/0/1752243001533?e=2147483647&amp;v=beta&amp;t=Bup8mnb1d2TsGleMbZ8CDZE7-ny4WAQ5Meqmu6kHzHo\" class=\"rounded-[100%] w-[32px] h-[32px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 32px; width: 32px; border-radius: 100%;\" width=\"32\" height=\"32\"> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"px-3 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px; padding-bottom: 24px;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"px-1 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px; padding-right: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-2 text-center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"inline-block w-8 h-8\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; display: inline-block; height: 64px; width: 64px;\" width=\"64\" height=\"64\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7350947758188466177?lipi=urn%3Ali%3Apage%3Aemail_email_notification_digest_01%3Bp5b%2BFloaRriE9Yn0WG6%2F3w%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0j5zZ8jb2aSrQ1&amp;trk=eml-email_notification_digest_01-entity_pile-0-EDITORIAL_BLAZE_INAPP_0&amp;trkEmail=eml-email_notification_digest_01-entity_pile-0-EDITORIAL_BLAZE_INAPP_0-null-poh2nf~mddxt98y~vj-null-null&amp;eid=poh2nf-mddxt98y-vj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU0YjU4YWNjZDY0NTljYWY4YzZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjOGZjYzg1ODgzZWZhYTM0YTM0YTQ0NjYyMDU2MWFmMzIxMGQzNmE5ODg2NmIxMmMsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background w-8 h-8 !block\" src=\"https://static.licdn.com/aero-v1/sc/h/87uu7x5mwmatsn7v6f28s26o5\" alt=\"Get Hired Logo\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; height: 64px; width: 64px; background-color: #eae6df; display: block !important;\" width=\"64\" height=\"64\"> </a> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pb-2 text-center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> Tell them what you did and how you did it. See how to prep for job interviews. </td> </tr> <tr> <td class=\"text-center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7350947758188466177?lipi=urn%3Ali%3Apage%3Aemail_email_notification_digest_01%3Bp5b%2BFloaRriE9Yn0WG6%2F3w%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0j5zZ8jb2aSrQ1&amp;trk=eml-email_notification_digest_01-hero_notification_cta-0-EDITORIAL_BLAZE_INAPP&amp;trkEmail=eml-email_notification_digest_01-hero_notification_cta-0-EDITORIAL_BLAZE_INAPP-null-poh2nf~mddxt98y~vj-null-null&amp;eid=poh2nf-mddxt98y-vj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU0YjU4YWNjZDY0NTljYWY4YzZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjOGZjYzg1ODgzZWZhYTM0YTM0YTQ0NjYyMDU2MWFmMzIxMGQzNmE5ODg2NmIxMmMsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid w-[390px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; width: 390px; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\" width=\"390\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7350947758188466177?lipi=urn%3Ali%3Apage%3Aemail_email_notification_digest_01%3Bp5b%2BFloaRriE9Yn0WG6%2F3w%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0j5zZ8jb2aSrQ1&amp;trk=eml-email_notification_digest_01-hero_notification_cta-0-EDITORIAL_BLAZE_INAPP&amp;trkEmail=eml-email_notification_digest_01-hero_notification_cta-0-EDITORIAL_BLAZE_INAPP-null-poh2nf~mddxt98y~vj-null-null&amp;eid=poh2nf-mddxt98y-vj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU0YjU4YWNjZDY0NTljYWY4YzZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjOGZjYzg1ODgzZWZhYTM0YTM0YTQ0NjYyMDU2MWFmMzIxMGQzNmE5ODg2NmIxMmMsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"px-1 pt-4\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px; padding-right: 8px; padding-top: 32px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"w-6\" valign=\"top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/company/walmart-marketplace?lipi=urn%3Ali%3Apage%3Aemail_email_notification_digest_01%3Bp5b%2BFloaRriE9Yn0WG6%2F3w%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0j5zZ8jb2aSrQ1&amp;trk=eml-email_notification_digest_01-notification_card_FOLLOW_PAGE_HERO_entity-0-FOLLOW_PAGE_HERO&amp;trkEmail=eml-email_notification_digest_01-notification_card_FOLLOW_PAGE_HERO_entity-0-FOLLOW_PAGE_HERO-null-poh2nf~mddxt98y~vj-null-null&amp;eid=poh2nf-mddxt98y-vj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU0YjU4YWNjZDY0NTljYWY4YzZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjOGZjYzg1ODgzZWZhYTM0YTM0YTQ0NjYyMDU2MWFmMzIxMGQzNmE5ODg2NmIxMmMsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background w-6 h-6 !block\" src=\"https://media.licdn.com/dms/image/v2/D4D0BAQHSAlf0kDskYQ/company-logo_100_100/B4DZZu5TtQHwAU-/0/1745617239242/walmart_marketplace_logo?e=1756339200&amp;v=beta&amp;t=fy-foXlHA8Ie7rHozGc6sfggAo9uu4gETOIk6X0UuL4\" alt=\"Walmart Marketplace’s picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; height: 48px; width: 48px; background-color: #eae6df; display: block !important;\" width=\"48\" height=\"48\"> </a> </td> <td valign=\"top\" class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #282828;\"> Learn more about Walmart Marketplace and discover other Pages you might be interested in following. </td> </tr> <tr> <td class=\"pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/suggested-for-you/follow-page/?vanityName=undefined&amp;lipi=urn%3Ali%3Apage%3Aemail_email_notification_digest_01%3Bp5b%2BFloaRriE9Yn0WG6%2F3w%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0j5zZ8jb2aSrQ1&amp;trk=eml-email_notification_digest_01-notification_card_FOLLOW_PAGE_HERO_cta-0-FOLLOW_PAGE_HERO&amp;trkEmail=eml-email_notification_digest_01-notification_card_FOLLOW_PAGE_HERO_cta-0-FOLLOW_PAGE_HERO-null-poh2nf~mddxt98y~vj-null-null&amp;eid=poh2nf-mddxt98y-vj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU0YjU4YWNjZDY0NTljYWY4YzZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjOGZjYzg1ODgzZWZhYTM0YTM0YTQ0NjYyMDU2MWFmMzIxMGQzNmE5ODg2NmIxMmMsMSwx\" target=\"_blank\" aria-label=\"See details for Walmart Marketplace\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary !border-[#424242] button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: rgba(0, 0, 0, 0.75); border-width: 1px; border-style: solid; line-height: 1.25; min-height: auto !important; border-color: #424242 !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/suggested-for-you/follow-page/?vanityName=undefined&amp;lipi=urn%3Ali%3Apage%3Aemail_email_notification_digest_01%3Bp5b%2BFloaRriE9Yn0WG6%2F3w%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0j5zZ8jb2aSrQ1&amp;trk=eml-email_notification_digest_01-notification_card_FOLLOW_PAGE_HERO_cta-0-FOLLOW_PAGE_HERO&amp;trkEmail=eml-email_notification_digest_01-notification_card_FOLLOW_PAGE_HERO_cta-0-FOLLOW_PAGE_HERO-null-poh2nf~mddxt98y~vj-null-null&amp;eid=poh2nf-mddxt98y-vj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU0YjU4YWNjZDY0NTljYWY4YzZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjOGZjYzg1ODgzZWZhYTM0YTM0YTQ0NjYyMDU2MWFmMzIxMGQzNmE5ODg2NmIxMmMsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline !text-[#424242]\" style=\"text-decoration-line: none; color: #424242 !important;\"> See page details </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"px-1 pt-4\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px; padding-right: 8px; padding-top: 32px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"w-6\" valign=\"top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/news/daily-rundown/7352073307803791364?lipi=urn%3Ali%3Apage%3Aemail_email_notification_digest_01%3Bp5b%2BFloaRriE9Yn0WG6%2F3w%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0j5zZ8jb2aSrQ1&amp;trk=eml-email_notification_digest_01-notification_card_DAILY_DIGEST_entity-0-daily_rundown_logo&amp;trkEmail=eml-email_notification_digest_01-notification_card_DAILY_DIGEST_entity-0-daily_rundown_logo-null-poh2nf~mddxt98y~vj-null-null&amp;eid=poh2nf-mddxt98y-vj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU0YjU4YWNjZDY0NTljYWY4YzZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjOGZjYzg1ODgzZWZhYTM0YTM0YTQ0NjYyMDU2MWFmMzIxMGQzNmE5ODg2NmIxMmMsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background w-6 h-6 !block\" src=\"https://static.licdn.com/aero-v1/sc/h/6swkubnat0uuzsfcn80ns07d8\" alt=\"Daily Rundown Logo\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; height: 48px; width: 48px; background-color: #eae6df; display: block !important;\" width=\"48\" height=\"48\"> </a> </td> <td valign=\"top\" class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #282828;\"> <b>Daily Rundown</b>: Tariff face-off; Apple&#39;s gamble; and other top news for you </td> </tr> <tr> <td class=\"pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/news/daily-rundown/7352073307803791364?lipi=urn%3Ali%3Apage%3Aemail_email_notification_digest_01%3Bp5b%2BFloaRriE9Yn0WG6%2F3w%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0j5zZ8jb2aSrQ1&amp;trk=eml-email_notification_digest_01-notification_card_DAILY_DIGEST_cta-0-DAILY_DIGEST&amp;trkEmail=eml-email_notification_digest_01-notification_card_DAILY_DIGEST_cta-0-DAILY_DIGEST-null-poh2nf~mddxt98y~vj-null-null&amp;eid=poh2nf-mddxt98y-vj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU0YjU4YWNjZDY0NTljYWY4YzZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjOGZjYzg1ODgzZWZhYTM0YTM0YTQ0NjYyMDU2MWFmMzIxMGQzNmE5ODg2NmIxMmMsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary !border-[#424242] button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: rgba(0, 0, 0, 0.75); border-width: 1px; border-style: solid; line-height: 1.25; min-height: auto !important; border-color: #424242 !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/news/daily-rundown/7352073307803791364?lipi=urn%3Ali%3Apage%3Aemail_email_notification_digest_01%3Bp5b%2BFloaRriE9Yn0WG6%2F3w%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0j5zZ8jb2aSrQ1&amp;trk=eml-email_notification_digest_01-notification_card_DAILY_DIGEST_cta-0-DAILY_DIGEST&amp;trkEmail=eml-email_notification_digest_01-notification_card_DAILY_DIGEST_cta-0-DAILY_DIGEST-null-poh2nf~mddxt98y~vj-null-null&amp;eid=poh2nf-mddxt98y-vj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU0YjU4YWNjZDY0NTljYWY4YzZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjOGZjYzg1ODgzZWZhYTM0YTM0YTQ0NjYyMDU2MWFmMzIxMGQzNmE5ODg2NmIxMmMsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline !text-[#424242]\" style=\"text-decoration-line: none; color: #424242 !important;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-lg text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 20px; color: #114951;\"> Get the new LinkedIn desktop app </h2> </td> </tr> <tr> <td class=\"text-center pb-2\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <a href=\"https://apps.microsoft.com/store/detail/9WZDNCRFJ4Q7?launch=true&amp;cid=linkedin_email_upsell&amp;mode=full\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it from Microsoft\" src=\"https://static.licdn.com/aero-v1/sc/h/ejpkkpwvqks31a3cjqokb7fbm\" class=\"h-[40px] w-[112px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 112px;\" width=\"112\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-md text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 16px; color: #114951;\"> Also available on mobile </h2> </td> </tr> <tr> <td class=\"text-center\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <a href=\"https://itunes.apple.com/us/app/linkedin/id288429040?pt=10746&amp;ct=st_appsite_flagship&amp;mt=8\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Download on the App Store\" src=\"https://static.licdn.com/aero-v1/sc/h/76yzkd0h5kiv27lrd4yaenylk\" class=\"h-[40px] w-[120px] pr-1\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 120px; padding-right: 8px;\" width=\"120\" height=\"40\"> </a> <a href=\"https://play.google.com/store/apps/details?id=com.linkedin.android&amp;referrer=st_appsite_flagship\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it on Google Play\" src=\"https://static.licdn.com/aero-v1/sc/h/142qudwblp58zwmc9vkqfplug\" class=\"h-[40px] w-[134px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 134px;\" width=\"134\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px;\"><hr class=\"border-none bg-[#e0dfdd] h-[1px]\" style=\"height: 1px; border-style: none; background-color: #e0dfdd;\"></td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" data-test-id=\"email-footer__intended\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_notification_digest_01%3Bp5b%2BFloaRriE9Yn0WG6%2F3w%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0j5zZ8jb2aSrQ1&amp;trk=eml-email_notification_digest_01-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_notification_digest_01-SecurityHelp-0-footerglimmer-null-poh2nf~mddxt98y~vj-null-null&amp;eid=poh2nf-mddxt98y-vj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU0YjU4YWNjZDY0NTljYWY4YzZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjOGZjYzg1ODgzZWZhYTM0YTM0YTQ0NjYyMDU2MWFmMzIxMGQzNmE5ODg2NmIxMmMsMSwx\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving LinkedIn notification emails.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_notification_digest_01%3Bp5b%2BFloaRriE9Yn0WG6%2F3w%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0j5zZ8jb2aSrQ1&amp;trk=eml-email_notification_digest_01-unsubscribe-0-footerGlimmer&amp;trkEmail=eml-email_notification_digest_01-unsubscribe-0-footerGlimmer-null-poh2nf~mddxt98y~vj-null-null&amp;eid=poh2nf-mddxt98y-vj&amp;loid=AQEGN0KHS2yhIgAAAZgwCmf4Ma2yN93ZwrGYHRSUJnhBMs2zVIfx-ZUT5saImOyUz8ZI_4dpxEWbRvI5SyBfSuwhlTdvH3O0rw\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Unsubscribe</a>   ·   <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_notification_digest_01%3Bp5b%2BFloaRriE9Yn0WG6%2F3w%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0j5zZ8jb2aSrQ1&amp;trk=eml-email_notification_digest_01-help-0-footerglimmer&amp;trkEmail=eml-email_notification_digest_01-help-0-footerglimmer-null-poh2nf~mddxt98y~vj-null-null&amp;eid=poh2nf-mddxt98y-vj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU0YjU4YWNjZDY0NTljYWY4YzZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjOGZjYzg1ODgzZWZhYTM0YTM0YTQ0NjYyMDU2MWFmMzIxMGQzNmE5ODg2NmIxMmMsMSwx\" target=\"_blank\" data-test-help-link class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_notification_digest_01%3Bp5b%2BFloaRriE9Yn0WG6%2F3w%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0j5zZ8jb2aSrQ1&amp;trk=eml-email_notification_digest_01-footer-0-logoGlimmer&amp;trkEmail=eml-email_notification_digest_01-footer-0-logoGlimmer-null-poh2nf~mddxt98y~vj-null-null&amp;eid=poh2nf-mddxt98y-vj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU0YjU4YWNjZDY0NTljYWY4YzZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjOGZjYzg1ODgzZWZhYTM0YTM0YTQ0NjYyMDU2MWFmMzIxMGQzNmE5ODg2NmIxMmMsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/aero-v1/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFrWkhoME9UaDVMWFpxOlpXMWhhV3hmYm05MGFXWnBZMkYwYVc5dVgyUnBaMlZ6ZEY4d01RPT06.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','Tell them what you did and how you did it. See how to prep for job interviews.\r\nSee newsletter:https://www.linkedin.com/comm/feed/update/urn:li:activity:7350947758188466177?lipi=urn%3Ali%3Apage%3Aemail_email_notification_digest_01%3Bp5b%2BFloaRriE9Yn0WG6%2F3w%3D%3D&midToken=AQE-iPshthTClw&midSig=0j5zZ8jb2aSrQ1&trk=eml-email_notification_digest_01-notification_digest-0-EDITORIAL_BLAZE_INAPP&trkEmail=eml-email_notification_digest_01-notification_digest-0-EDITORIAL_BLAZE_INAPP-null-poh2nf~mddxt98y~vj-null-null&eid=poh2nf-mddxt98y-vj&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU0YjU4YWNjZDY0NTljYWY4YzZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjOGZjYzg1ODgzZWZhYTM0YTM0YTQ0NjYyMDU2MWFmMzIxMGQzNmE5ODg2NmIxMmMsMSwx\r\n\r\nLearn more about Walmart Marketplace and discover other Pages you might be interested in following.\r\nSee page detailshttps://www.linkedin.com/comm/suggested-for-you/follow-page/?vanityName=undefined&lipi=urn%3Ali%3Apage%3Aemail_email_notification_digest_01%3Bp5b%2BFloaRriE9Yn0WG6%2F3w%3D%3D&midToken=AQE-iPshthTClw&midSig=0j5zZ8jb2aSrQ1&trk=eml-email_notification_digest_01-notification_digest-0-FOLLOW_PAGE_HERO&trkEmail=eml-email_notification_digest_01-notification_digest-0-FOLLOW_PAGE_HERO-null-poh2nf~mddxt98y~vj-null-null&eid=poh2nf-mddxt98y-vj&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU0YjU4YWNjZDY0NTljYWY4YzZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjOGZjYzg1ODgzZWZhYTM0YTM0YTQ0NjYyMDU2MWFmMzIxMGQzNmE5ODg2NmIxMmMsMSwx\r\n\r\nDaily Rundown: Tariff face-off; Apple\'s gamble; and other top news for you\r\nRead morehttps://www.linkedin.com/comm/news/daily-rundown/7352073307803791364?lipi=urn%3Ali%3Apage%3Aemail_email_notification_digest_01%3Bp5b%2BFloaRriE9Yn0WG6%2F3w%3D%3D&midToken=AQE-iPshthTClw&midSig=0j5zZ8jb2aSrQ1&trk=eml-email_notification_digest_01-notification_digest-0-DAILY_DIGEST&trkEmail=eml-email_notification_digest_01-notification_digest-0-DAILY_DIGEST-null-poh2nf~mddxt98y~vj-null-null&eid=poh2nf-mddxt98y-vj&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU0YjU4YWNjZDY0NTljYWY4YzZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjOGZjYzg1ODgzZWZhYTM0YTM0YTQ0NjYyMDU2MWFmMzIxMGQzNmE5ODg2NmIxMmMsMSwx\r\n\r\n\r\n----------------------------------------\r\n\r\nThis email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\nLearn why we included this: https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_notification_digest_01%3Bp5b%2BFloaRriE9Yn0WG6%2F3w%3D%3D&midToken=AQE-iPshthTClw&midSig=0j5zZ8jb2aSrQ1&trk=eml-email_notification_digest_01-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_notification_digest_01-SecurityHelp-0-textfooterglimmer-null-poh2nf~mddxt98y~vj-null-null&eid=poh2nf-mddxt98y-vj&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU0YjU4YWNjZDY0NTljYWY4YzZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjOGZjYzg1ODgzZWZhYTM0YTM0YTQ0NjYyMDU2MWFmMzIxMGQzNmE5ODg2NmIxMmMsMSwx\r\nYou are receiving LinkedIn notification emails.\r\n\r\nUnsubscribe: https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_notification_digest_01%3Bp5b%2BFloaRriE9Yn0WG6%2F3w%3D%3D&midToken=AQE-iPshthTClw&midSig=0j5zZ8jb2aSrQ1&trk=eml-email_notification_digest_01-unsubscribe-0-textfooterglimmer&trkEmail=eml-email_notification_digest_01-unsubscribe-0-textfooterglimmer-null-poh2nf~mddxt98y~vj-null-null&eid=poh2nf-mddxt98y-vj&loid=AQEGN0KHS2yhIgAAAZgwCmf4Ma2yN93ZwrGYHRSUJnhBMs2zVIfx-ZUT5saImOyUz8ZI_4dpxEWbRvI5SyBfSuwhlTdvH3O0rw\r\nHelp: https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_notification_digest_01%3Bp5b%2BFloaRriE9Yn0WG6%2F3w%3D%3D&midToken=AQE-iPshthTClw&midSig=0j5zZ8jb2aSrQ1&trk=eml-email_notification_digest_01-help-0-textfooterglimmer&trkEmail=eml-email_notification_digest_01-help-0-textfooterglimmer-null-poh2nf~mddxt98y~vj-null-null&eid=poh2nf-mddxt98y-vj&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmU0YjU4YWNjZDY0NTljYWY4YzZkN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjOGZjYzg1ODgzZWZhYTM0YTM0YTQ0NjYyMDU2MWFmMzIxMGQzNmE5ODg2NmIxMmMsMSwx\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.\r\nLinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',0,0,0,0,0,0,'2025-07-22 02:50:45','2025-12-09 19:17:25','2025-12-09 19:17:25','2025-12-09 19:17:25',NULL,NULL,NULL),
(497,4,'<CADXf4LOKXBgaVM6pMw8-iGxTTqFkymWYU_+Eu8J+p1tSjMOF=Q@mail.gmail.com>',NULL,NULL,'https://shop.mavrix.one/','nexaeliot@gmail.com','Eliot Nexa','<div dir=\"ltr\">Hello, Is this store still active? Can I speak to the store owner directly?<img width=\"0\" height=\"0\" class=\"mailtrack-img\" alt=\"\" style=\"display:flex\" src=\"https://mailtrack.io/trace/mail/75a24916e6655ed717f0e5aad71d4cfb2923d9b7.png?u=12733396\"></div>','Hello, Is this store still active? Can I speak to the store owner directly?',0,0,0,0,0,0,'2025-07-22 03:39:46','2025-12-09 19:17:25','2025-12-09 19:17:25','2025-12-09 19:17:25',NULL,NULL,NULL),
(498,4,' <BN8P111MB212735AE79D9754363A25698D35CA@BN8P111MB2127.NAMP111.PROD.OUTLOOK.COM>',NULL,NULL,'Fw: Skyfront Perimeter - [UNCLASSIFIED]','paul.r.shorkey-chacon.mil@army.mil','\"Shorkey-Chacon, Paul R CPT USARMY 1 ID 2 ABCT (USA)\"','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div id=\"x_oct-marking-header-unclassified\" style=\"border-bottom: 1em; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<b>UNCLASSIFIED</b></div>\r\n<div id=\"x_ms-marking-body\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"x_Signature\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"background-color: rgb(255, 255, 255); font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nVery Respectfully,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nPaul Shorkey-Chacon</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nCPT, FA</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nDeputy Innovation Officer</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;\">\r\n<span style=\"font-size: 14pt; color: rgb(237, 92, 87);\">1</span><span style=\"font-size: 12pt; color: rgb(0, 0, 0);\"><sup>st</sup>&nbsp;Infantry Division</span></div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n✉ NIPR: paul.r.shorkey-chacon.mil@army.mil</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n📱 Cell: (443) 889-6741</div>\r\n<div style=\"font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n</div>\r\n<div id=\"x_appendonsend\"></div>\r\n</div>\r\n<div id=\"x_oct-marking-footer-unclassified\" style=\"border-top: 1em;\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<b>UNCLASSIFIED</b></div>\r\n</div>\r\n<div id=\"x_ms-marking-previous-body\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<hr style=\"display: inline-block; width: 98%;\">\r\n<div id=\"x_divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Aaron Smith &lt;asmith@strategic-logix.com&gt;<br>\r\n<b>Sent:</b>&nbsp;Monday, July 21, 2025 2:13 PM<br>\r\n<b>To:</b>&nbsp;Shorkey-Chacon, Paul R CPT USARMY 1 ID 2 ABCT (USA) &lt;paul.r.shorkey-chacon.mil@army.mil&gt;<br>\r\n<b>Cc:</b>&nbsp;Andrew Valkenburg &lt;AValkenburg@strategic-logix.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Skyfront Perimeter</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nPaul,</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nPlease see the attached quote for 25x Skyfront Perimeters. This is an initial quote with multiple options. I am going to call you to walk you&nbsp;through it.&nbsp;</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nThere are four systems quoted. They are summarized here:</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nP8 AE MRS -- Battery-only, 1.25 - 1.5 hour flight time with camera, 10 km video/control range.</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nP8 AE LRS -- Battery-only, 1.25 - 1.5 hour flight time with camera, 50 km video/control range.</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nP8+ MRS -- Hybrid-electric, 4-4.5 hour flight time with camera, 10 km video/control range.</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nP8+ MRS -- Hybrid-electric, 4-4.5 hour flight time with camera, 50 km video/control range.</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nThis quote includes 4 airframes (pick 1), Dropper, Ruggedized Ground Control Station, 2 Cameras (pick 1), and Onsite training.&nbsp;</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0px; font-family: Aptos; font-size: 16px; color: black;\">\r\nThanks,</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; margin: 0px; font-family: Aptos; font-size: 16px; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; margin: 0px; font-family: Aptos; font-size: 16px; color: black;\">\r\nAaron Smith</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; margin: 0px; font-family: Aptos; font-size: 16px; color: black;\">\r\nSales Representative, US South</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; margin: 0px; font-family: Aptos; font-size: 16px; color: black;\">\r\nStrategic Logix</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; margin: 0px; font-family: Aptos; font-size: 16px; color: black;\">\r\n(352)-208-2355</div>\r\n<div style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0px; font-family: Aptos; font-size: 16px; color: rgb(66, 133, 244);\">\r\n<a href=\"mailto:Asmith@strategic-logix.com\" id=\"OWAbec2ffa9-0b3f-a30d-547e-502594aaf133\" class=\"x_x_OWAAutoLink\" title=\"mailto:Asmith@strategic-logix.com\" style=\"color: rgb(66, 133, 244); margin: 0px;\">Asmith@strategic-logix.com</a></div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n</body>\r\n</html>\r\n','UNCLASSIFIED\r\n\r\n\r\n\r\nVery Respectfully,\r\n\r\nPaul Shorkey-Chacon\r\nCPT, FA\r\nDeputy Innovation Officer\r\n1st Infantry Division\r\n\r\n\r\n✉ NIPR: paul.r.shorkey-chacon.mil@army.mil\r\n📱 Cell: (443) 889-6741\r\n\r\nUNCLASSIFIED\r\n\r\n________________________________\r\nFrom: Aaron Smith <asmith@strategic-logix.com>\r\nSent: Monday, July 21, 2025 2:13 PM\r\nTo: Shorkey-Chacon, Paul R CPT USARMY 1 ID 2 ABCT (USA) <paul.r.shorkey-chacon.mil@army.mil>\r\nCc: Andrew Valkenburg <AValkenburg@strategic-logix.com>\r\nSubject: Skyfront Perimeter\r\n\r\nPaul,\r\n\r\nPlease see the attached quote for 25x Skyfront Perimeters. This is an initial quote with multiple options. I am going to call you to walk you through it.\r\n\r\nThere are four systems quoted. They are summarized here:\r\nP8 AE MRS -- Battery-only, 1.25 - 1.5 hour flight time with camera, 10 km video/control range.\r\nP8 AE LRS -- Battery-only, 1.25 - 1.5 hour flight time with camera, 50 km video/control range.\r\nP8+ MRS -- Hybrid-electric, 4-4.5 hour flight time with camera, 10 km video/control range.\r\nP8+ MRS -- Hybrid-electric, 4-4.5 hour flight time with camera, 50 km video/control range.\r\n\r\nThis quote includes 4 airframes (pick 1), Dropper, Ruggedized Ground Control Station, 2 Cameras (pick 1), and Onsite training.\r\n\r\nThanks,\r\n\r\nAaron Smith\r\nSales Representative, US South\r\nStrategic Logix\r\n(352)-208-2355\r\nAsmith@strategic-logix.com<mailto:Asmith@strategic-logix.com>\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-07-22 17:38:19','2025-12-09 19:17:27','2025-12-09 19:17:27','2025-12-09 19:17:27',NULL,NULL,NULL),
(499,4,'<492c59d63b814f33aa2dec28450c700e@docusign.net>',NULL,NULL,'Complete with Docusign: BAYFRONT CAPITAL LLC- MAVRIX 1 - Engagement Agreement 07 01 2025 (FINAL...','dse_NA3@docusign.net','\"Brian C. Stufflebean via Docusign\"','<html lang=3D\"en\"><head><meta http-equiv=3D\"Content-Type\" content=3D\"te=\r\nxt/html; charset=3DUTF-8\"/><meta name=3D\"viewport\" content=3D\"initial-s=\r\ncale=3D1=2E0\"/><meta name=3D\"format-detection\" content=3D\"telephone=3Dn=\r\no\"/><title>EnvelopeActivation</title></head><body style=3D\"background-c=\r\nolor:#EAEAEA;padding:2%;font-family:Helvetica,Arial,Sans Serif;\"><table=\r\n role=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\'=\r\n align=3D\'center\' width=3D\"100%\" dir=3D\"\"><tr><td></td><td width=3D\"640=\r\n\"><table role=3D\"presentation\" style=3D\"mso-table-lspace:0pt;mso-table-=\r\nrspace:0pt;border-collapse:collapse;background-color:#ffffff;max-width:=\r\n640px;\"><tr><td style=3D\"padding:10px 24px;\"><img style=3D\"border:none;=\r\n\" width=3D\"116\" src=3D\"https://docucdn-a=2Eakamaihd=2Enet/olive/images/=\r\n2=2E62=2E0/global-assets/email-templates/email-logo=2Epng\" alt=3D\"DocuS=\r\nign\"/></td></tr><tr><td style=3D\"padding:0px 24px 30px 24px;\"><table ro=\r\nle=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\' wi=\r\ndth=3D\'100%\' align=3D\'center\' style=3D\'background-color:#260559;color:#=\r\nFFFFFF;\'><tr><td style=3D\"padding:28px 36px 36px 36px;border-radius:2px=\r\n;background-color:#260559;color:#FFFFFF;font-size:16px;font-family:Helv=\r\netica,Arial,Sans Serif;width:100%;text-align:center;\" align=3D\"center\">=\r\n<img width=3D\"75\" height=3D\"75\" src=3D\"https://docucdn-a=2Eakamaihd=2En=\r\net/olive/images/2=2E76=2E0/email/iconSignWhite=2Epng\" style=3D\"width:75=\r\npx;height:75px;\" alt=3D\"\" /><table role=3D\'presentation\' border=3D\'0\' c=\r\nellspacing=3D\'0\' cellpadding=3D\'0\' width=3D\'100%\'><tr><td style=3D\"padd=\r\ning-top:24px;font-size:16px;font-family:Helvetica,Arial,Sans Serif;bord=\r\ner:none;text-align:center;color:#FFFFFF\" align=3D\"center\"> Brian C=2E S=\r\ntufflebean sent you a document to review and sign=2E </td></tr></table>=\r\n<table role=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=\r\n=3D\'0\' width=3D\'100%\'><tr><td align=3D\"center\" style=3D\"padding-top:30p=\r\nx;\"><div><table cellspacing=3D\"0\" cellpadding=3D\"0\"><tr><td align=3D\"ce=\r\nnter\" height=3D\"44\" style=3D\"font-size:15px;color:#FFFFFF;background-co=\r\nlor:#735AFF;font-family:Helvetica,Arial,Sans Serif;font-weight:bold;tex=\r\nt-align:center;text-decoration:none;;border-radius:2px;background-color=\r\n:#735AFF;;display: block;\"><a href=3D\"https://na3=2Edocusign=2Enet/Sign=\r\ning/EmailStart=2Easpx?a=3D6e0baa53-ef9e-4258-8b1a-1fe81df67176&etti=3D2=\r\n4&acct=3Dc1a08d76-d00c-420b-b9ae-9336551d2b39&er=3D65dcf501-e57c-4f86-a=\r\n0f0-3b5db0122881\" style=3D\"font-size:15px;color:#FFFFFF;background-colo=\r\nr:#735AFF;font-family:Helvetica,Arial,Sans Serif;font-weight:bold;text-=\r\nalign:center;text-decoration:none;;border-radius:2px;background-color:#=\r\n735AFF;;display:inline-block\"><span style=3D\"padding:0px 24px;;line-hei=\r\nght:44px;\"><!--[if mso]>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<![endif]--=\r\n> REVIEW DOCUMENT <!--[if mso]>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<![e=\r\nndif]--></span></a></td></tr></table></div></td></tr></table></td></tr>=\r\n</table></td></tr><tr><td style=3D\"padding:0px 24px 24px 24px;color:#00=\r\n0000;font-size:16px;font-family:Helvetica,Arial,Sans Serif;background-c=\r\nolor:white;\"><table role=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0=\r\n\' cellpadding=3D\'0\'><tr><td style=3D\"padding-bottom:20px;\"><div style=3D=\r\n\"font-family:Helvetica,Arial,Sans Serif;font-weight:bold;line-height:18=\r\npx;font-size:15px;color:#333333;\"> Brian C=2E Stufflebean </div><div st=\r\nyle=3D\"font-family:Helvetica,Arial,Sans Serif;line-height:18px;font-siz=\r\ne:15px;color:#666666;\">brian@bayfrontcapitalllc=2Ecom</div></td></tr></=\r\ntable><span style=3D\"font-size:15px;color:#333333;font-family:Helvetica=\r\n,Arial,Sans Serif;line-height:20px;\">Rick Mislan,<br /><br /> Complete =\r\nwith Docusign: BAYFRONT CAPITAL LLC- MAVRIX 1 - Engagement Agreement 07=\r\n 01 2025 (FINAL)=2Epdf<br /><br /> Thank You, Brian C=2E Stufflebean</s=\r\npan><br /></td></tr><tr><td style=3D\"padding:0px 24px 12px 24px;backgro=\r\nund-color:#ffffff;font-family:Helvetica,Arial,Sans Serif;font-size:11px=\r\n;color:#666666;\"></td></tr><tr><td style=3D\"padding:30px 24px 45px 24px=\r\n;background-color:#EAEAEA;\"><p style=3D\"margin-bottom:1em;font-family:H=\r\nelvetica,Arial,Sans Serif;font-size:13px;color:#666666;line-height:18px=\r\n;\"><b aria-level=3D\"3\" role=3D\"heading\">Do Not Share This Email</b><br/=\r\n> This email contains a secure link to Docusign=2E Please do not share =\r\nthis email, link, or access code with others=2E<br/></p><p style=3D\"mar=\r\ngin-bottom:1em;font-family:Helvetica,Arial,Sans Serif;font-size:13px;co=\r\nlor:#666666;line-height:18px;\"><b aria-level=3D\"3\" role=3D\"heading\">Alt=\r\nernate Signing Method</b><br/> Visit Docusign=2Ecom, click \'Access Docu=\r\nments\', and enter the security code:<br /> 6E0BAA53EF9E42588B1A1FE81DF6=\r\n71763 </p><p style=3D\"margin-bottom:1em;font-family:Helvetica,Arial,San=\r\ns Serif;font-size:13px;color:#666666;line-height:18px;\"><b aria-level=3D=\r\n\"3\" role=3D\"heading\">About Docusign</b><br/> Sign documents electronica=\r\nlly in just minutes=2E It\'s safe, secure, and legally binding=2E Whethe=\r\nr you\'re in an office, at home, on-the-go -- or even across the globe -=\r\n- Docusign provides a professional trusted solution for Digital Transac=\r\ntion Management=E2=84=A2=2E </p><p style=3D\"margin-bottom:1em;font-fami=\r\nly:Helvetica,Arial,Sans Serif;font-size:13px;color:#666666;line-height:=\r\n18px;\"><b aria-level=3D\"3\" role=3D\"heading\">Questions about the Documen=\r\nt?</b><br /> If you need to modify the document or have questions about=\r\n the details in the document, please reach out to the sender by emailin=\r\ng them directly=2E<br /><br /><b aria-level=3D\"3\" role=3D\"heading\">Stop=\r\n receiving this email</b><br /><a href=3D\'https://protect=2Edocusign=2E=\r\nnet/report-abuse?e=3DAUtomjpFak9GlbPL0zFFi12lepX2hMo0n02cJSstmjAYivDvsT=\r\nfSMwwd12itIjchwz8C-nd1UBD9GXL0Lk8gk3Vfn5XJf3SR1iFESs_FqNOWtT09uWIfv7WCE=\r\nkuXlgXk1kgHW2SSYJKPy8xrlMrXchhvkYwuK1eDFWIaGLwAkOQVMccSYDf1A8ZChprOmshb=\r\nht2heW-p2es8Ibsbuku4QDL2BliHqYymzKtGrx6wiTLrj0bvWaAL7EwcXBfDLbsDUdxptY8=\r\nbegtml05GbLlCsKyF5ZFNpuYgdpk6GwVhCrwzejCPAPOY8tzLvWVn2am1z9W_FDGXuMB_hn=\r\nz7pptKK1q3ILcwSuG1DRAAVZADCq6bsv7cKkZbhOt0dNJYWJojoFXrh0fCnFIpfwUFORkRP=\r\nmcKaqlEhTDF9rbYZO5DSTc2DePFQjC4ol0JpzhAzR-Blw&lang=3Den\' style=3D\'color=\r\n:#2463d1;\' >Report this email</a> or read more about <a href=3D\'https:/=\r\n/support=2Edocusign=2Ecom/en/guides/Declining-to-sign-DocuSign-Signer-G=\r\nuide\' style=3D\'color:#2463d1;\' >Declining to sign</a> and <a href=3D\'ht=\r\ntps://support=2Edocusign=2Ecom/en/articles/How-do-I-manage-my-email-not=\r\nifications\' style=3D\'color:#2463d1;\' >Managing notifications</a>=2E<br =\r\n/><br /> If you have trouble signing, visit \"<a href=3D\'https://support=\r\n=2Edocusign=2Ecom/s/articles/How-do-I-sign-a-DocuSign-document-Basic-Si=\r\ngning?language=3Den_US&#38;utm_campaign=3DGBL_XX_DBU_UPS_2211_SignNotif=\r\nicationEmailFooter&#38;utm_medium=3Dproduct&#38;utm_source=3Dpostsend\' =\r\nstyle=3D\'color:#2463d1;\' >How to Sign a Document</a>\" on our <a href=3D=\r\n\'https://support=2Edocusign=2Ecom/\' style=3D\'color:#2463d1;\' >Docusign =\r\nSupport Center</a>, or become part of the <a href=3D\'https://community=2E=\r\ndocusign=2Ecom/new-member-guide-142?utm_campaign=3DGBL_US_PRD_AWA_2405_=\r\nCommunityCTA&#38;utm_medium=3Demail&#38;utm_source=3Dpostsend\' style=3D=\r\n\'color:#2463d1;\' >Docusign Community</a> to access tips and guidance fr=\r\nom peers=2E<br /><br /></p><p style=3D\"margin-bottom:1em;font-family:He=\r\nlvetica,Arial,Sans Serif;font-size:13px;color:#666666;line-height:18px;=\r\n\"><a href=3D\"https://www=2Edocusign=2Ecom/features-and-benefits/mobile?=\r\nutm_campaign=3DGBL_XX_DBU_UPS_2211_SignNotificationEmailFooter&#38;utm_=\r\nmedium=3Dproduct&#38;utm_source=3Dpostsend\" style=3D\"color:#2463d1;\" ><=\r\nimg style=3D\"margin-right:7px;border:none;vertical-align:middle;\" width=\r\n=3D\"18\" height=3D\"18\" src=3D\"https://docucdn-a=2Eakamaihd=2Enet/olive/i=\r\nmages/2=2E62=2E0/global-assets/email-templates/icon-download-app=2Epng\"=\r\n alt=3D\"\" />Download the Docusign App </a></p><p style=3D\"margin-bottom=\r\n:1em;font-family:Helvetica,Arial,Sans Serif;font-size:13px;color:#66666=\r\n6;line-height:18px;font-size:10px;line-height:14px;\">This message was s=\r\nent to you by Brian C=2E Stufflebean who is using the Docusign Electron=\r\nic Signature Service=2E If you would rather not receive email from this=\r\n sender you may contact the sender with your request=2E</p></td></tr></=\r\ntable></td><td></td></tr></table><span itemscope=3D\"\" itemtype=3D\"http:=\r\n//schema=2Eorg/EmailMessage\"><meta itemprop=3D\"text\" content=3D\"Brian C=\r\n=2E Stufflebean sent you a document to review and sign=2E\"/><span items=\r\ncope=3D\"\" itemprop=3D\"about\" itemtype=3D\"http://schema=2Eorg/CreativeWo=\r\nrk\"><span itemscope=3D\"\" itemprop=3D\"action\" itemtype=3D\"http://schema=2E=\r\norg/ViewAction\"><meta itemprop=3D\"url\" content=3D\"https://na3=2Edocusig=\r\nn=2Enet/Signing/EmailStart=2Easpx?a=3D6e0baa53-ef9e-4258-8b1a-1fe81df67=\r\n176&etti=3D24&acct=3Dc1a08d76-d00c-420b-b9ae-9336551d2b39&er=3D65dcf501=\r\n-e57c-4f86-a0f0-3b5db0122881\"/><meta itemprop=3D\"name\" content=3D\"View =\r\nDocuments\"/></span></span></span></body></html>','EnvelopeActivation=\r\n Brian C=2E S=\r\ntufflebean sent you a document to review and sign=2E =\r\n=\r\n Brian C=2E Stufflebean brian@bayfrontcapitalllc=2EcomRick Mislan, Complete =\r\nwith Docusign: BAYFRONT CAPITAL LLC- MAVRIX 1 - Engagement Agreement 07=\r\n 01 2025 (FINAL)=2Epdf Thank You, Brian C=2E StufflebeanDo Not Share This Email This email contains a secure link to Docusign=2E Please do not share =\r\nthis email, link, or access code with others=2EAlt=\r\nernate Signing Method Visit Docusign=2Ecom, click \'Access Docu=\r\nments\', and enter the security code: 6E0BAA53EF9E42588B1A1FE81DF6=\r\n71763 About Docusign Sign documents electronica=\r\nlly in just minutes=2E It\'s safe, secure, and legally binding=2E Whethe=\r\nr you\'re in an office, at home, on-the-go -- or even across the globe -=\r\n- Docusign provides a professional trusted solution for Digital Transac=\r\ntion Management=E2=84=A2=2E Questions about the Documen=\r\nt? If you need to modify the document or have questions about=\r\n the details in the document, please reach out to the sender by emailin=\r\ng them directly=2EStop=\r\n receiving this emailReport this email or read more about Declining to sign and Managing notifications=2E If you have trouble signing, visit \"How to Sign a Document\" on our Docusign =\r\nSupport Center, or become part of the Docusign Community to access tips and guidance fr=\r\nom peers=2EDownload the Docusign App This message was s=\r\nent to you by Brian C=2E Stufflebean who is using the Docusign Electron=\r\nic Signature Service=2E If you would rather not receive email from this=\r\n sender you may contact the sender with your request=2E',0,0,0,0,0,0,'2025-07-23 02:07:03','2025-12-09 19:17:27','2025-12-09 19:17:27','2025-12-09 19:17:27',NULL,NULL,NULL),
(500,4,'<0cd2fecd8bfb4201b22cc1f74babff99@docusign.net>',NULL,NULL,'Reminder: Complete with Docusign: BAYFRONT CAPITAL LLC- MAVRIX 1 - Engagement Agreement 07 01 2025 (FINAL...','dse_NA3@docusign.net','\"Brian C. Stufflebean via Docusign\"','<html lang=3D\"en\"><head><meta http-equiv=3D\"Content-Type\" content=3D\"te=\r\nxt/html; charset=3DUTF-8\"/><meta name=3D\"viewport\" content=3D\"initial-s=\r\ncale=3D1=2E0\"/><meta name=3D\"format-detection\" content=3D\"telephone=3Dn=\r\no\"/><title>EnvelopeActivation</title></head><body style=3D\"background-c=\r\nolor:#EAEAEA;padding:2%;font-family:Helvetica,Arial,Sans Serif;\"><table=\r\n role=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\'=\r\n align=3D\'center\' width=3D\"100%\" dir=3D\"\"><tr><td></td><td width=3D\"640=\r\n\"><table role=3D\"presentation\" style=3D\"mso-table-lspace:0pt;mso-table-=\r\nrspace:0pt;border-collapse:collapse;background-color:#ffffff;max-width:=\r\n640px;\"><tr><td style=3D\"padding:10px 24px;\"><img style=3D\"border:none;=\r\n\" width=3D\"116\" src=3D\"https://docucdn-a=2Eakamaihd=2Enet/olive/images/=\r\n2=2E62=2E0/global-assets/email-templates/email-logo=2Epng\" alt=3D\"DocuS=\r\nign\"/></td></tr><tr><td style=3D\"padding:0px 24px 30px 24px;\"><table ro=\r\nle=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\' wi=\r\ndth=3D\'100%\' align=3D\'center\' style=3D\'background-color:#260559;color:#=\r\nFFFFFF;\'><tr><td style=3D\"padding:28px 36px 36px 36px;border-radius:2px=\r\n;background-color:#260559;color:#FFFFFF;font-size:16px;font-family:Helv=\r\netica,Arial,Sans Serif;width:100%;text-align:center;\" align=3D\"center\">=\r\n<img width=3D\"75\" height=3D\"75\" src=3D\"https://docucdn-a=2Eakamaihd=2En=\r\net/olive/images/2=2E76=2E0/email/iconSignWhite=2Epng\" style=3D\"width:75=\r\npx;height:75px;\" alt=3D\"\" /><table role=3D\'presentation\' border=3D\'0\' c=\r\nellspacing=3D\'0\' cellpadding=3D\'0\' width=3D\'100%\'><tr><td style=3D\"padd=\r\ning-top:24px;font-size:16px;font-family:Helvetica,Arial,Sans Serif;bord=\r\ner:none;text-align:center;color:#FFFFFF\" align=3D\"center\"> Brian C=2E S=\r\ntufflebean sent you a document to review and sign=2E </td></tr></table>=\r\n<table role=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=\r\n=3D\'0\' width=3D\'100%\'><tr><td align=3D\"center\" style=3D\"padding-top:30p=\r\nx;\"><div><table cellspacing=3D\"0\" cellpadding=3D\"0\"><tr><td align=3D\"ce=\r\nnter\" height=3D\"44\" style=3D\"font-size:15px;color:#FFFFFF;background-co=\r\nlor:#735AFF;font-family:Helvetica,Arial,Sans Serif;font-weight:bold;tex=\r\nt-align:center;text-decoration:none;;border-radius:2px;background-color=\r\n:#735AFF;;display: block;\"><a href=3D\"https://na3=2Edocusign=2Enet/Sign=\r\ning/EmailStart=2Easpx?a=3D6e0baa53-ef9e-4258-8b1a-1fe81df67176&etti=3D2=\r\n4&acct=3Dc1a08d76-d00c-420b-b9ae-9336551d2b39&er=3D65dcf501-e57c-4f86-a=\r\n0f0-3b5db0122881&ensd=3DOlmiHSbJ0eI9ZkG%252fXULDaoS2b9D%252fQ3lV1ZmuXau=\r\nRgzP3PPKUd5%252fAdu5NEVVQ9GkNdEUzJJ1Iabcvw1p9NOlIn7C2rMZ6lDKhD01C6UH5Vj=\r\nUgiaYmFXR4nOUi1H6vwB2qdLZuBVTGFnBqqefQ0VtMjCmSA2sHiNxd%252fVLkhA0px7DhY=\r\ncBuQGFRwXNoqjWS1Ctn\" style=3D\"font-size:15px;color:#FFFFFF;background-c=\r\nolor:#735AFF;font-family:Helvetica,Arial,Sans Serif;font-weight:bold;te=\r\nxt-align:center;text-decoration:none;;border-radius:2px;background-colo=\r\nr:#735AFF;;display:inline-block\"><span style=3D\"padding:0px 24px;;line-=\r\nheight:44px;\"><!--[if mso]>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<![endif=\r\n]--> REVIEW DOCUMENT <!--[if mso]>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<=\r\n![endif]--></span></a></td></tr></table></div></td></tr></table></td></=\r\ntr></table></td></tr><tr><td style=3D\"padding:0px 24px 24px 24px;color:=\r\n#000000;font-size:16px;font-family:Helvetica,Arial,Sans Serif;backgroun=\r\nd-color:white;\"><table role=3D\'presentation\' border=3D\'0\' cellspacing=3D=\r\n\'0\' cellpadding=3D\'0\'><tr><td style=3D\"padding-bottom:20px;\"><div style=\r\n=3D\"font-family:Helvetica,Arial,Sans Serif;font-weight:bold;line-height=\r\n:18px;font-size:15px;color:#333333;\"> Brian C=2E Stufflebean </div><div=\r\n style=3D\"font-family:Helvetica,Arial,Sans Serif;line-height:18px;font-=\r\nsize:15px;color:#666666;\">brian@bayfrontcapitalllc=2Ecom</div></td></tr=\r\n></table><span style=3D\"font-size:15px;color:#333333;font-family:Helvet=\r\nica,Arial,Sans Serif;line-height:20px;\">Rick Mislan,<br /><br /> Comple=\r\nte with Docusign: BAYFRONT CAPITAL LLC- MAVRIX 1 - Engagement Agreement=\r\n 07 01 2025 (FINAL)=2Epdf<br /><br /> Thank You, Brian C=2E Stufflebean=\r\n</span><br /></td></tr><tr><td style=3D\"padding:0px 24px 12px 24px;back=\r\nground-color:#ffffff;font-family:Helvetica,Arial,Sans Serif;font-size:1=\r\n1px;color:#666666;\"></td></tr><tr><td style=3D\"padding:30px 24px 45px 2=\r\n4px;background-color:#EAEAEA;\"><p style=3D\"margin-bottom:1em;font-famil=\r\ny:Helvetica,Arial,Sans Serif;font-size:13px;color:#666666;line-height:1=\r\n8px;\"><b aria-level=3D\"3\" role=3D\"heading\">Do Not Share This Email</b><=\r\nbr/> This email contains a secure link to Docusign=2E Please do not sha=\r\nre this email, link, or access code with others=2E<br/></p><p style=3D\"=\r\nmargin-bottom:1em;font-family:Helvetica,Arial,Sans Serif;font-size:13px=\r\n;color:#666666;line-height:18px;\"><b aria-level=3D\"3\" role=3D\"heading\">=\r\nAlternate Signing Method</b><br/> Visit Docusign=2Ecom, click \'Access D=\r\nocuments\', and enter the security code:<br /> 6E0BAA53EF9E42588B1A1FE81=\r\nDF671763 </p><p style=3D\"margin-bottom:1em;font-family:Helvetica,Arial,=\r\nSans Serif;font-size:13px;color:#666666;line-height:18px;\"><b aria-leve=\r\nl=3D\"3\" role=3D\"heading\">About Docusign</b><br/> Sign documents electro=\r\nnically in just minutes=2E It\'s safe, secure, and legally binding=2E Wh=\r\nether you\'re in an office, at home, on-the-go -- or even across the glo=\r\nbe -- Docusign provides a professional trusted solution for Digital Tra=\r\nnsaction Management=E2=84=A2=2E </p><p style=3D\"margin-bottom:1em;font-=\r\nfamily:Helvetica,Arial,Sans Serif;font-size:13px;color:#666666;line-hei=\r\nght:18px;\"><b aria-level=3D\"3\" role=3D\"heading\">Questions about the Doc=\r\nument?</b><br /> If you need to modify the document or have questions a=\r\nbout the details in the document, please reach out to the sender by ema=\r\niling them directly=2E<br /><br /><b aria-level=3D\"3\" role=3D\"heading\">=\r\nStop receiving this email</b><br /><a href=3D\'https://protect=2Edocusig=\r\nn=2Enet/report-abuse?e=3DAUtomjpFak9GlbPL0zFFi12AUEg6bP5m7RgogVkRHdIZOy=\r\nM-3m9HlVIkPhl4pdbVOuYs46OPA_GdJo-X0lnRLsmQ4sVnpUAYiDkGPSOF4mKzFwTtTX1cj=\r\nf3s-beHlrV6PcYbmAIGinHxJTwswqqEJW6ij8_W7VrYEQrk9jAoXuZfUNZdv-zIkdmZmM9J=\r\nfV5EM1vll45MwsQlg-FSWqCqV-fsJT_lIqbzSp-j-BFQAzG-wcaavd0_4k4_31cmBqCcNH3=\r\naE4uP1Z_cDm8k0vX-wbXrUlsWc6sVEVgqp4iHPOc0LpAcmjSmD0WdrTmlSNhHM9LkqSVHoW=\r\ncd9ZmlIZttK6XsefBPuv20e1sCMdL8I3Ny6lZGxELnrOaZXZWlnS_Aq4Qu-j5ROR9GNExJj=\r\nXSudOnCI-vxUNjTFNF2jwndkxaXuZfxDKhagDpADl4qgyPx3Q&lang=3Den\' style=3D\'c=\r\nolor:#2463d1;\' >Report this email</a> or read more about <a href=3D\'htt=\r\nps://support=2Edocusign=2Ecom/en/guides/Declining-to-sign-DocuSign-Sign=\r\ner-Guide\' style=3D\'color:#2463d1;\' >Declining to sign</a> and <a href=3D=\r\n\'https://support=2Edocusign=2Ecom/en/articles/How-do-I-manage-my-email-=\r\nnotifications\' style=3D\'color:#2463d1;\' >Managing notifications</a>=2E<=\r\nbr /><br /> If you have trouble signing, visit \"<a href=3D\'https://supp=\r\nort=2Edocusign=2Ecom/s/articles/How-do-I-sign-a-DocuSign-document-Basic=\r\n-Signing?language=3Den_US&#38;utm_campaign=3DGBL_XX_DBU_UPS_2211_SignNo=\r\ntificationEmailFooter&#38;utm_medium=3Dproduct&#38;utm_source=3Dpostsen=\r\nd\' style=3D\'color:#2463d1;\' >How to Sign a Document</a>\" on our <a href=\r\n=3D\'https://support=2Edocusign=2Ecom/\' style=3D\'color:#2463d1;\' >Docusi=\r\ngn Support Center</a>, or become part of the <a href=3D\'https://communi=\r\nty=2Edocusign=2Ecom/new-member-guide-142?utm_campaign=3DGBL_US_PRD_AWA_=\r\n2405_CommunityCTA&#38;utm_medium=3Demail&#38;utm_source=3Dpostsend\' sty=\r\nle=3D\'color:#2463d1;\' >Docusign Community</a> to access tips and guidan=\r\nce from peers=2E<br /><br /></p><p style=3D\"margin-bottom:1em;font-fami=\r\nly:Helvetica,Arial,Sans Serif;font-size:13px;color:#666666;line-height:=\r\n18px;\"><a href=3D\"https://www=2Edocusign=2Ecom/features-and-benefits/mo=\r\nbile?utm_campaign=3DGBL_XX_DBU_UPS_2211_SignNotificationEmailFooter&#38=\r\n;utm_medium=3Dproduct&#38;utm_source=3Dpostsend\" style=3D\"color:#2463d1=\r\n;\" ><img style=3D\"margin-right:7px;border:none;vertical-align:middle;\" =\r\nwidth=3D\"18\" height=3D\"18\" src=3D\"https://docucdn-a=2Eakamaihd=2Enet/ol=\r\nive/images/2=2E62=2E0/global-assets/email-templates/icon-download-app=2E=\r\npng\" alt=3D\"\" />Download the Docusign App </a></p><p style=3D\"margin-bo=\r\nttom:1em;font-family:Helvetica,Arial,Sans Serif;font-size:13px;color:#6=\r\n66666;line-height:18px;font-size:10px;line-height:14px;\">This message w=\r\nas sent to you by Brian C=2E Stufflebean who is using the Docusign Elec=\r\ntronic Signature Service=2E If you would rather not receive email from =\r\nthis sender you may contact the sender with your request=2E</p></td></t=\r\nr></table></td><td></td></tr></table><span itemscope=3D\"\" itemtype=3D\"h=\r\nttp://schema=2Eorg/EmailMessage\"><meta itemprop=3D\"text\" content=3D\"Bri=\r\nan C=2E Stufflebean sent you a document to review and sign=2E\"/><span i=\r\ntemscope=3D\"\" itemprop=3D\"about\" itemtype=3D\"http://schema=2Eorg/Creati=\r\nveWork\"><span itemscope=3D\"\" itemprop=3D\"action\" itemtype=3D\"http://sch=\r\nema=2Eorg/ViewAction\"><meta itemprop=3D\"url\" content=3D\"https://na3=2Ed=\r\nocusign=2Enet/Signing/EmailStart=2Easpx?a=3D6e0baa53-ef9e-4258-8b1a-1fe=\r\n81df67176&etti=3D24&acct=3Dc1a08d76-d00c-420b-b9ae-9336551d2b39&er=3D65=\r\ndcf501-e57c-4f86-a0f0-3b5db0122881&ensd=3DOlmiHSbJ0eI9ZkG%252fXULDaoS2b=\r\n9D%252fQ3lV1ZmuXauRgzP3PPKUd5%252fAdu5NEVVQ9GkNdEUzJJ1Iabcvw1p9NOlIn7C2=\r\nrMZ6lDKhD01C6UH5VjUgiaYmFXR4nOUi1H6vwB2qdLZuBVTGFnBqqefQ0VtMjCmSA2sHiNx=\r\nd%252fVLkhA0px7DhYcBuQGFRwXNoqjWS1Ctn\"/><meta itemprop=3D\"name\" content=\r\n=3D\"View Documents\"/></span></span></span></body></html>','EnvelopeActivation=\r\n Brian C=2E S=\r\ntufflebean sent you a document to review and sign=2E =\r\n REVIEW DOCUMENT  Brian C=2E Stufflebean brian@bayfrontcapitalllc=2EcomRick Mislan, Comple=\r\nte with Docusign: BAYFRONT CAPITAL LLC- MAVRIX 1 - Engagement Agreement=\r\n 07 01 2025 (FINAL)=2Epdf Thank You, Brian C=2E Stufflebean=\r\nDo Not Share This Email This email contains a secure link to Docusign=2E Please do not sha=\r\nre this email, link, or access code with others=2E=\r\nAlternate Signing Method Visit Docusign=2Ecom, click \'Access D=\r\nocuments\', and enter the security code: 6E0BAA53EF9E42588B1A1FE81=\r\nDF671763 About Docusign Sign documents electro=\r\nnically in just minutes=2E It\'s safe, secure, and legally binding=2E Wh=\r\nether you\'re in an office, at home, on-the-go -- or even across the glo=\r\nbe -- Docusign provides a professional trusted solution for Digital Tra=\r\nnsaction Management=E2=84=A2=2E Questions about the Doc=\r\nument? If you need to modify the document or have questions a=\r\nbout the details in the document, please reach out to the sender by ema=\r\niling them directly=2E=\r\nStop receiving this emailReport this email or read more about Declining to sign and Managing notifications=2E If you have trouble signing, visit \"How to Sign a Document\" on our Docusi=\r\ngn Support Center, or become part of the Docusign Community to access tips and guidan=\r\nce from peers=2EDownload the Docusign App This message w=\r\nas sent to you by Brian C=2E Stufflebean who is using the Docusign Elec=\r\ntronic Signature Service=2E If you would rather not receive email from =\r\nthis sender you may contact the sender with your request=2E',0,0,0,0,0,0,'2025-07-23 09:10:53','2025-12-09 19:17:27','2025-12-09 19:17:27','2025-12-09 19:17:27',NULL,NULL,NULL),
(501,4,'<4ef98b23b3c242278f3d86be54f8458b@docusign.net>',NULL,NULL,'Completed: Complete with Docusign: BAYFRONT CAPITAL LLC- MAVRIX 1 - Engagement Agreement 07 01 2025 (FINAL...','dse_NA3@docusign.net','\"Brian C. Stufflebean via Docusign\"','<html lang=3D\"en\"><head><meta http-equiv=3D\"Content-Type\" content=3D\"te=\r\nxt/html; charset=3DUTF-8\"/><meta name=3D\"viewport\" content=3D\"initial-s=\r\ncale=3D1=2E0\"/><meta name=3D\"format-detection\" content=3D\"telephone=3Dn=\r\no\"/><title>RecipientEnvelopeComplete</title></head><body style=3D\"backg=\r\nround-color:#EAEAEA;padding:2%;font-family:Helvetica,Arial,Sans Serif;\"=\r\n><table role=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpaddin=\r\ng=3D\'0\' align=3D\'center\' width=3D\"100%\" dir=3D\"\"><tr><td></td><td width=\r\n=3D\"640\"><table role=3D\"presentation\" style=3D\"mso-table-lspace:0pt;mso=\r\n-table-rspace:0pt;border-collapse:collapse;background-color:#ffffff;max=\r\n-width:640px;\"><tr><td style=3D\"padding:10px 24px;\"><img style=3D\"borde=\r\nr:none;\" width=3D\"116\" src=3D\"https://docucdn-a=2Eakamaihd=2Enet/olive/=\r\nimages/2=2E62=2E0/global-assets/email-templates/email-logo=2Epng\" alt=3D=\r\n\"DocuSign\"/></td></tr><tr><td style=3D\"padding:0px 24px 30px 24px;\"><ta=\r\nble role=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D=\r\n\'0\' width=3D\'100%\' align=3D\'center\' style=3D\'background-color:#260559;c=\r\nolor:#FFFFFF;\'><tr><td style=3D\"padding:28px 10px 36px 10px;border-radi=\r\nus:2px;background-color:#260559;color:#FFFFFF;font-size:16px;font-famil=\r\ny:Helvetica,Arial,Sans Serif;width:100%;text-align:center;\" align=3D\"ce=\r\nnter\"><img width=3D\"75\" height=3D\"75\" src=3D\"https://docucdn-a=2Eakamai=\r\nhd=2Enet/olive/images/2=2E76=2E0/email/iconFileWithCheckWhite=2Epng\" st=\r\nyle=3D\"width:75px;height:75px;\" alt=3D\"\" /><table role=3D\'presentation\'=\r\n border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\' width=3D\'100%\'><tr><t=\r\nd style=3D\"padding-top:24px;font-size:16px;font-family:Helvetica,Arial,=\r\nSans Serif;border:none;text-align:center;color:#FFFFFF\" align=3D\"center=\r\n\"> Your document has been completed </td></tr></table><table role=3D\'pr=\r\nesentation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\' width=3D\'1=\r\n00%\'><tr><td align=3D\"center\" style=3D\"padding-top:30px;\"><div><table c=\r\nellspacing=3D\"0\" cellpadding=3D\"0\"><tr><td align=3D\"center\" height=3D\"4=\r\n4\" style=3D\"font-size:14px;color:#FFFFFF;background-color:#260559;font-=\r\nfamily:Helvetica,Arial,Sans Serif;font-weight:bold;text-align:center;te=\r\nxt-decoration:none;;border-radius:2px;border: 1px solid #FFFFFF;backgro=\r\nund-color:#260559;height:100%;display:block;\"><a href=3D\"https://na3=2E=\r\ndocusign=2Enet/Signing/EmailStart=2Easpx?a=3D4bbfc6ef-87f8-4b80-bd2b-f8=\r\n0310ccd1c9&etti=3D43&r=3D65dcf501-e57c-4f86-a0f0-3b5db0122881\" style=3D=\r\n\"padding:0px 12px;;font-size:14px;color:#FFFFFF;background-color:#26055=\r\n9;font-family:Helvetica,Arial,Sans Serif;font-weight:bold;text-align:ce=\r\nnter;text-decoration:none;;display:inline-block\"><span style=3D\"line-he=\r\night:44px;\"><!--[if mso]>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<![endif]-=\r\n-> VIEW COMPLETED DOCUMENT <!--[if mso]>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=\r\nnbsp;<![endif]--></span></a></td></tr></table></div></td></tr></table><=\r\n/td></tr></table></td></tr><tr><td style=3D\"padding:0px 24px 24px 24px;=\r\ncolor:#000000;font-size:16px;font-family:Helvetica,Arial,Sans Serif;bac=\r\nkground-color:white;\"><table role=3D\'presentation\' border=3D\'0\' cellspa=\r\ncing=3D\'0\' cellpadding=3D\'0\'><tr><td style=3D\"padding-bottom:20px;\"><di=\r\nv style=3D\"font-family:Helvetica,Arial,Sans Serif;font-weight:bold;line=\r\n-height:18px;font-size:15px;color:#333333;\"> Brian C=2E Stufflebean </d=\r\niv><div style=3D\"font-family:Helvetica,Arial,Sans Serif;line-height:18p=\r\nx;font-size:15px;color:#666666;\">brian@bayfrontcapitalllc=2Ecom</div></=\r\ntd></tr></table><p style=3D\"font-size:15px;color:#333333;font-family:He=\r\nlvetica,Arial,Sans Serif;line-height:20px;\">All parties have completed =\r\nComplete with Docusign: BAYFRONT CAPITAL LLC- MAVRIX 1 - Engagement Agr=\r\neement 07 01 2025 (FINAL=2E=2E=2E=2E</p></td></tr><tr><td style=3D\"padd=\r\ning:0px 24px 12px 24px;background-color:#ffffff;font-family:Helvetica,A=\r\nrial,Sans Serif;font-size:11px;color:#666666;\"></td></tr><tr><td style=3D=\r\n\"padding:30px 24px 45px 24px;background-color:#EAEAEA;\"><p style=3D\"mar=\r\ngin-bottom:1em;font-family:Helvetica,Arial,Sans Serif;font-size:13px;co=\r\nlor:#666666;line-height:18px;\"><b aria-level=3D\"3\" role=3D\"heading\">Do =\r\nNot Share This Email</b><br/> This email contains a secure link to Docu=\r\nsign=2E Please do not share this email, link, or access code with other=\r\ns=2E<br/></p><p style=3D\"margin-bottom:1em;font-family:Helvetica,Arial,=\r\nSans Serif;font-size:13px;color:#666666;line-height:18px;\"><b aria-leve=\r\nl=3D\"3\" role=3D\"heading\">Alternate Signing Method</b><br/> Visit Docusi=\r\ngn=2Ecom, click \'Access Documents\', and enter the security code:<br /> =\r\n4BBFC6EF87F84B80BD2BF80310CCD1C93 </p><p style=3D\"margin-bottom:1em;fon=\r\nt-family:Helvetica,Arial,Sans Serif;font-size:13px;color:#666666;line-h=\r\neight:18px;\"><b aria-level=3D\"3\" role=3D\"heading\">About Docusign</b><br=\r\n/> Sign documents electronically in just minutes=2E It\'s safe, secure, =\r\nand legally binding=2E Whether you\'re in an office, at home, on-the-go =\r\n-- or even across the globe -- Docusign provides a professional trusted=\r\n solution for Digital Transaction Management=E2=84=A2=2E </p><p style=3D=\r\n\"margin-bottom:1em;font-family:Helvetica,Arial,Sans Serif;font-size:13p=\r\nx;color:#666666;line-height:18px;\"><b aria-level=3D\"3\" role=3D\"heading\"=\r\n>Questions about the Document?</b><br /> If you need to modify the docu=\r\nment or have questions about the details in the document, please reach =\r\nout to the sender by emailing them directly=2E<br /><br /><b aria-level=\r\n=3D\"3\" role=3D\"heading\">Stop receiving this email</b><br /><a href=3D\'h=\r\nttps://protect=2Edocusign=2Enet/report-abuse?e=3DAUtomjpFak9GlbPL0zFFi1=\r\n0YL3FbqY346EY6LL-uD0EQzTgDkdWiqRGYdFkqn9n-709mXgJNHyccxkBaKXVjQDkmEUahQ=\r\nHcbvtCzQ3_ZPkF44mlrkO9CXeOfA1N5PwycbUBF4eusjEzmqd_fjRCcSWJ4FLOtbZUxhkYU=\r\nove6WeIXattwWODbaCCqKieGsgWyneW56APRmcGCd97HeB_QFZZBdcieKqs_4Vgj2OwGHID=\r\nlMnRhwR8xh6cjB-vNSav1DnZgc8QusRZvdc0D08roLtAULPFATo0zRISdDP3qzY3Jlj0KYq=\r\nj6aXyYiEU0jmoIK-AtKAhS6WDw1oduUo4qM9p8dzfY2dWT-JSeXo-sm9d7OADPM1ST_w25x=\r\n78tKKTUoIOJYJXZTOrSbItDdeU0n1bK1vt-O68EHFJdnIP6nzR1EYZ9ODpc5aWVLqGclWGU=\r\nEA&lang=3Den\' style=3D\'color:#2463d1;\' >Report this email</a> or read m=\r\nore about <a href=3D\'https://support=2Edocusign=2Ecom/en/guides/Declini=\r\nng-to-sign-DocuSign-Signer-Guide\' style=3D\'color:#2463d1;\' >Declining t=\r\no sign</a> and <a href=3D\'https://support=2Edocusign=2Ecom/en/articles/=\r\nHow-do-I-manage-my-email-notifications\' style=3D\'color:#2463d1;\' >Manag=\r\ning notifications</a>=2E<br /><br /> If you have trouble signing, visit=\r\n \"<a href=3D\'https://support=2Edocusign=2Ecom/s/articles/How-do-I-sign-=\r\na-DocuSign-document-Basic-Signing?language=3Den_US&#38;utm_campaign=3DG=\r\nBL_XX_DBU_UPS_2211_SignNotificationEmailFooter&#38;utm_medium=3Dproduct=\r\n&#38;utm_source=3Dpostsend\' style=3D\'color:#2463d1;\' >How to Sign a Doc=\r\nument</a>\" on our <a href=3D\'https://support=2Edocusign=2Ecom/\' style=3D=\r\n\'color:#2463d1;\' >Docusign Support Center</a>, or become part of the <a=\r\n href=3D\'https://community=2Edocusign=2Ecom/new-member-guide-142?utm_ca=\r\nmpaign=3DGBL_US_PRD_AWA_2405_CommunityCTA&#38;utm_medium=3Demail&#38;ut=\r\nm_source=3Dpostsend\' style=3D\'color:#2463d1;\' >Docusign Community</a> t=\r\no access tips and guidance from peers=2E<br /><br /></p><p style=3D\"mar=\r\ngin-bottom:1em;font-family:Helvetica,Arial,Sans Serif;font-size:13px;co=\r\nlor:#666666;line-height:18px;\"><a href=3D\"https://www=2Edocusign=2Ecom/=\r\nfeatures-and-benefits/mobile?utm_campaign=3DGBL_XX_DBU_UPS_2211_SignNot=\r\nificationEmailFooter&#38;utm_medium=3Dproduct&#38;utm_source=3Dpostsend=\r\n\" style=3D\"color:#2463d1;\" ><img style=3D\"margin-right:7px;border:none;=\r\nvertical-align:middle;\" width=3D\"18\" height=3D\"18\" src=3D\"https://docuc=\r\ndn-a=2Eakamaihd=2Enet/olive/images/2=2E62=2E0/global-assets/email-templ=\r\nates/icon-download-app=2Epng\" alt=3D\"\" />Download the Docusign App </a>=\r\n</p><p style=3D\"margin-bottom:1em;font-family:Helvetica,Arial,Sans Seri=\r\nf;font-size:13px;color:#666666;line-height:18px;font-size:10px;line-hei=\r\nght:14px;\">This message was sent to you by Brian C=2E Stufflebean who i=\r\ns using the Docusign Electronic Signature Service=2E If you would rathe=\r\nr not receive email from this sender you may contact the sender with yo=\r\nur request=2E</p></td></tr></table></td><td></td></tr></table><span ite=\r\nmscope=3D\"\" itemtype=3D\"http://schema=2Eorg/EmailMessage\"><meta itempro=\r\np=3D\"text\" content=3D\"Brian C=2E Stufflebean sent you a document to rev=\r\niew and sign=2E\"/><span itemscope=3D\"\" itemprop=3D\"about\" itemtype=3D\"h=\r\nttp://schema=2Eorg/CreativeWork\"><span itemscope=3D\"\" itemprop=3D\"actio=\r\nn\" itemtype=3D\"http://schema=2Eorg/ViewAction\"><meta itemprop=3D\"url\" c=\r\nontent=3D\"https://na3=2Edocusign=2Enet/Signing/EmailStart=2Easpx?a=3D4b=\r\nbfc6ef-87f8-4b80-bd2b-f80310ccd1c9&etti=3D43&r=3D65dcf501-e57c-4f86-a0f=\r\n0-3b5db0122881\"/><meta itemprop=3D\"name\" content=3D\"View Documents\"/></=\r\nspan></span></span></body></html>','RecipientEnvelopeComplete Your document has been completed  Brian C=2E Stufflebean brian@bayfrontcapitalllc=2EcomAll parties have completed =\r\nComplete with Docusign: BAYFRONT CAPITAL LLC- MAVRIX 1 - Engagement Agr=\r\neement 07 01 2025 (FINAL=2E=2E=2E=2EDo =\r\nNot Share This Email This email contains a secure link to Docu=\r\nsign=2E Please do not share this email, link, or access code with other=\r\ns=2EAlternate Signing Method Visit Docusi=\r\ngn=2Ecom, click \'Access Documents\', and enter the security code: =\r\n4BBFC6EF87F84B80BD2BF80310CCD1C93 About Docusign Sign documents electronically in just minutes=2E It\'s safe, secure, =\r\nand legally binding=2E Whether you\'re in an office, at home, on-the-go =\r\n-- or even across the globe -- Docusign provides a professional trusted=\r\n solution for Digital Transaction Management=E2=84=A2=2E Questions about the Document? If you need to modify the docu=\r\nment or have questions about the details in the document, please reach =\r\nout to the sender by emailing them directly=2EStop receiving this emailReport this email or read m=\r\nore about Declining t=\r\no sign and Manag=\r\ning notifications=2E If you have trouble signing, visit=\r\n \"How to Sign a Doc=\r\nument\" on our Docusign Support Center, or become part of the Docusign Community t=\r\no access tips and guidance from peers=2EDownload the Docusign App =\r\nThis message was sent to you by Brian C=2E Stufflebean who i=\r\ns using the Docusign Electronic Signature Service=2E If you would rathe=\r\nr not receive email from this sender you may contact the sender with yo=\r\nur request=2E',0,0,0,0,0,0,'2025-07-23 12:01:34','2025-12-09 19:17:28','2025-12-09 19:17:28','2025-12-09 19:17:28',NULL,NULL,NULL),
(502,4,' <CH2PR16MB3431D2EF0970DC9C9FB83BD4FE5FA@CH2PR16MB3431.namprd16.prod.outlook.com>',NULL,NULL,'U.S. Battery Manufacturing Investment Opportunity | Lithium Battery Company - Confidential Investor Presentation Attached','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nHi Rick,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nApologies for the delay in responding and thank you for your patience. We wanted to progress negotiations with several anchor clients on pre-orders so that we could provide more accurate and transparent estimates for our forecasted sales pipeline.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nAttached is LBC’s confidential investor presentation, highlighting:</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<ul style=\"margin-top: 0px; margin-bottom: 0px; list-style-type: disc;\" data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:true}\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\" class=\"elementToProof\">Transaction Structure:</div>\r\n</li><ul style=\"margin-top: 0px; margin-bottom: 0px; list-style-type: circle;\" data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:true}\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\" class=\"elementToProof\">$12.575M scalable SPV-ready financing package, with 44% ($5.53M) underwritten by federal/government guarantees, offering significant downside protection. The structure is well-suited for platform or club participation\r\n and designed for U.S. tax pass-through</div>\r\n</li></ul>\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\" class=\"elementToProof\">Use of Proceeds:</div>\r\n</li><ul style=\"margin-top: 0px; margin-bottom: 0px; list-style-type: circle;\" data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:true}\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\" class=\"elementToProof\">Details on capital deployment and purchase of additional equipment required to meet unexpectedly strong demand for U.S. manufacturing and pre-order pipeline at our gigafactory, leveraging our modular automated\r\n lines for battery module assembly &amp; pack integration</div>\r\n</li></ul>\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\" class=\"elementToProof\">Projected Financials:</div>\r\n</li><ul style=\"margin-top: 0px; margin-bottom: 0px; list-style-type: circle;\" data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:true}\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\" class=\"elementToProof\">Overview of pricing model, extensive pipeline under LOI, and tax credit monetization strategies intended to optimize net returns for our shareholders</div>\r\n</li></ul>\r\n</ul>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nPlease let us know if you have any questions, require additional materials or would like to schedule a call for further discussion at your earliest convenience.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nYour prompt review would be greatly appreciated, and we welcome any feedback regarding partnership or co-investment interest. We plan to move forward with select partners for this specific round of financing and would value your perspective before August 1st.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nRespectfully,&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" id=\"Signature\">\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"8\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWA7f7e5ab1-3370-ee7c-3ca8-0d87b967e8a9\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">Jarrett@</a>lithiumbatterycompany<a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"9\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWAb0164608-e838-4c2d-486e-2238428ab30a\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">.com</a></u></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-auth=\"NotApplicable\" data-linkindex=\"10\" title=\"https://lithiumbatterycompany.com/\" class=\"OWAAutoLink\" id=\"OWAe09a2ac9-58d9-b3de-31fb-fcd5123e684f\" href=\"https://lithiumbatterycompany.com/\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n</body>\r\n</html>','Hi Rick,\r\n\r\nApologies for the delay in responding and thank you for your patience. We wanted to progress negotiations with several anchor clients on pre-orders so that we could provide more accurate and transparent estimates for our forecasted sales pipeline.\r\n\r\nAttached is LBC’s confidential investor presentation, highlighting:\r\n\r\n\r\n  *\r\nTransaction Structure:\r\n     *\r\n$12.575M scalable SPV-ready financing package, with 44% ($5.53M) underwritten by federal/government guarantees, offering significant downside protection. The structure is well-suited for platform or club participation and designed for U.S. tax pass-through\r\n  *\r\nUse of Proceeds:\r\n     *\r\nDetails on capital deployment and purchase of additional equipment required to meet unexpectedly strong demand for U.S. manufacturing and pre-order pipeline at our gigafactory, leveraging our modular automated lines for battery module assembly & pack integration\r\n  *\r\nProjected Financials:\r\n     *\r\nOverview of pricing model, extensive pipeline under LOI, and tax credit monetization strategies intended to optimize net returns for our shareholders\r\n\r\nPlease let us know if you have any questions, require additional materials or would like to schedule a call for further discussion at your earliest convenience.\r\nYour prompt review would be greatly appreciated, and we welcome any feedback regarding partnership or co-investment interest. We plan to move forward with select partners for this specific round of financing and would value your perspective before August 1st.\r\n\r\nRespectfully,\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>',0,0,0,0,0,0,'2025-07-23 13:37:29','2025-12-09 19:17:31','2025-12-09 19:17:31','2025-12-09 19:17:31',NULL,NULL,NULL),
(503,4,'<calendar-cd67422e-a329-494e-b15e-4bea6cde455c@google.com>',NULL,NULL,'Invitation: Rick & Jake | Ashby Meeting @ Thu Jul 24, 2025 9am - 9:30am (EDT) (rick@mavrix.one)','jake@ashbyhq.com','Jake McLinden','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v144/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v118/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation from Jake McLinden\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"1s9f2fqg6o75jfk5jn5lql1ri0\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Rick &amp; Jake | Ashby Meeting</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MXM5ZjJmcWc2bzc1amZrNWpuNWxxbDFyaTAgcmlja0BtYXZyaXgub25l&amp;tok=MTYjamFrZUBhc2hieWhxLmNvbWU5N2E5N2EyNDJhYmY0ZWQ3MzU0NWMyZTAzYmE2ZDllMTA3Mzg2Mzk&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=1\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250724T130000Z\"></time><time itemprop=\"endDate\" datetime=\"20250724T133000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">https://ashbyhq.zoom.us/j/82623642495\r\n\r\nIf you need to reschedule please use the link below:\r\nhttps://ashbyhq.chilipiper.com/reschedule/acbd1125-b12e-4c51-8ed5-f20df0c681f6</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><div class=\"\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span><a href=\"https://www.google.com/url?q=https%3A%2F%2Fashbyhq.zoom.us%2Fj%2F82623642495&amp;sa=D&amp;ust=1753711800000000&amp;usg=AOvVaw1cisTxLRWqIQ1MXsrNB4xd\" target=\"_blank\">https://ashbyhq.zoom.us/j/82623642495</a><p>If you need to reschedule please use the link below:<br><a href=\"https://www.google.com/url?q=https%3A%2F%2Fashbyhq.chilipiper.com%2Freschedule%2Facbd1125-b12e-4c51-8ed5-f20df0c681f6&amp;sa=D&amp;ust=1753711800000000&amp;usg=AOvVaw36_V5ZYyJFEjPn1dRfNEcv\" target=\"_blank\">https://ashbyhq.chilipiper.com/reschedule/acbd1125-b12e-4c51-8ed5-f20df0c681f6</a></p></span><meta itemprop=\"description\" content=\"https://ashbyhq.zoom.us/j/82623642495\r\n\r\nIf you need to reschedule please use the link below:\r\nhttps://ashbyhq.chilipiper.com/reschedule/acbd1125-b12e-4c51-8ed5-f20df0c681f6\"/></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250724T130000Z\"></time><time itemprop=\"endDate\" datetime=\"20250724T133000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Thursday Jul 24, 2025 ⋅ 9am – 9:30am (Eastern Time - New York)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Location</h2></td></tr></table><span itemprop=\"location\" itemscope itemtype=\"http://schema.org/Place\"><span itemprop=\"name\" class=\"primary-text notranslate\" style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\">https://ashbyhq.zoom.us/j/82623642495</span><br/><a href=\"https://www.google.com/url?q=https%3A%2F%2Fashbyhq.zoom.us%2Fj%2F82623642495&amp;sa=D&amp;ust=1753711800000000&amp;usg=AOvVaw1cisTxLRWqIQ1MXsrNB4xd\" class=\"accent-text underline-on-hover\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" itemprop=\"map\">View map</a></span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jake@ashbyhq.com\">Jake McLinden</a></span><meta itemprop=\"email\" content=\"jake@ashbyhq.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Jake McLinden\"/><meta itemprop=\"email\" content=\"jake@ashbyhq.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MXM5ZjJmcWc2bzc1amZrNWpuNWxxbDFyaTAgcmlja0BtYXZyaXgub25l&amp;tok=MTYjamFrZUBhc2hieWhxLmNvbWU5N2E5N2EyNDJhYmY0ZWQ3MzU0NWMyZTAzYmE2ZDllMTA3Mzg2Mzk&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=1\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MXM5ZjJmcWc2bzc1amZrNWpuNWxxbDFyaTAgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MTYjamFrZUBhc2hieWhxLmNvbWU5N2E5N2EyNDJhYmY0ZWQ3MzU0NWMyZTAzYmE2ZDllMTA3Mzg2Mzk&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=1\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MXM5ZjJmcWc2bzc1amZrNWpuNWxxbDFyaTAgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MTYjamFrZUBhc2hieWhxLmNvbWU5N2E5N2EyNDJhYmY0ZWQ3MzU0NWMyZTAzYmE2ZDllMTA3Mzg2Mzk&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=1\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MXM5ZjJmcWc2bzc1amZrNWpuNWxxbDFyaTAgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MTYjamFrZUBhc2hieWhxLmNvbWU5N2E5N2EyNDJhYmY0ZWQ3MzU0NWMyZTAzYmE2ZDllMTA3Mzg2Mzk&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=1\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MXM5ZjJmcWc2bzc1amZrNWpuNWxxbDFyaTAgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MTYjamFrZUBhc2hieWhxLmNvbWU5N2E5N2EyNDJhYmY0ZWQ3MzU0NWMyZTAzYmE2ZDllMTA3Mzg2Mzk&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=1\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MXM5ZjJmcWc2bzc1amZrNWpuNWxxbDFyaTAgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MTYjamFrZUBhc2hieWhxLmNvbWU5N2E5N2EyNDJhYmY0ZWQ3MzU0NWMyZTAzYmE2ZDllMTA3Mzg2Mzk&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=1\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MXM5ZjJmcWc2bzc1amZrNWpuNWxxbDFyaTAgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MTYjamFrZUBhc2hieWhxLmNvbWU5N2E5N2EyNDJhYmY0ZWQ3MzU0NWMyZTAzYmE2ZDllMTA3Mzg2Mzk&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=1\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MXM5ZjJmcWc2bzc1amZrNWpuNWxxbDFyaTAgcmlja0BtYXZyaXgub25l&amp;tok=MTYjamFrZUBhc2hieWhxLmNvbWU5N2E5N2EyNDJhYmY0ZWQ3MzU0NWMyZTAzYmE2ZDllMTA3Mzg2Mzk&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=1\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MXM5ZjJmcWc2bzc1amZrNWpuNWxxbDFyaTAgcmlja0BtYXZyaXgub25l&amp;tok=MTYjamFrZUBhc2hieWhxLmNvbWU5N2E5N2EyNDJhYmY0ZWQ3MzU0NWMyZTAzYmE2ZDllMTA3Mzg2Mzk&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=1\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are subscribed to calendar notifications. To stop receiving these emails, go to <a href=\"https://calendar.google.com/calendar/r/settings\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Calendar settings</a>, select this calendar, and change \"Other notifications\".</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','Rick & Jake | Ashby Meeting\r\nThursday Jul 24, 2025 ⋅ 9am – 9:30am\r\nEastern Time - New York\r\n\r\nLocation\r\nhttps://ashbyhq.zoom.us/j/82623642495	\r\nhttps://www.google.com/url?q=https%3A%2F%2Fashbyhq.zoom.us%2Fj%2F82623642495&sa=D&ust=1753711800000000&usg=AOvVaw1cisTxLRWqIQ1MXsrNB4xd\r\n\r\n\r\n\r\nhttps://ashbyhq.zoom.us/j/82623642495\r\n\r\nIf you need to reschedule please use the link below:\r\nhttps://ashbyhq.chilipiper.com/reschedule/acbd1125-b12e-4c51-8ed5-f20df0c681f6\r\n\r\nOrganizer\r\nJake McLinden\r\njake@ashbyhq.com\r\n\r\nGuests\r\nJake McLinden - organizer\r\nrick@mavrix.one\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=MXM5ZjJmcWc2bzc1amZrNWpuNWxxbDFyaTAgcmlja0BtYXZyaXgub25l&tok=MTYjamFrZUBhc2hieWhxLmNvbWU5N2E5N2EyNDJhYmY0ZWQ3MzU0NWMyZTAzYmE2ZDllMTA3Mzg2Mzk&ctz=America%2FNew_York&hl=en&es=1\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=MXM5ZjJmcWc2bzc1amZrNWpuNWxxbDFyaTAgcmlja0BtYXZyaXgub25l&tok=MTYjamFrZUBhc2hieWhxLmNvbWU5N2E5N2EyNDJhYmY0ZWQ3MzU0NWMyZTAzYmE2ZDllMTA3Mzg2Mzk&ctz=America%2FNew_York&hl=en&es=1\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are subscribed to calendar  \r\nnotifications. To stop receiving these emails, go to  \r\nhttps://calendar.google.com/calendar/r/settings, select this calendar, and  \r\nchange \"Other notifications\".\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-07-23 14:10:45','2025-12-09 19:17:31','2025-12-09 19:17:31','2025-12-09 19:17:31',NULL,NULL,NULL),
(504,4,'<-UPUh2CwSxqHTv_08RPJNA@geopod-ismtpd-8>',NULL,NULL,'New DIU Solicitation: Transparent Ocean','info@diu.mil','Defense Innovation Unit','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html data-editor-version=\"2\" class=\"sg-campaigns\" xmlns=\"http://www.w3.org/1999/xhtml\">\r\n    <head>\r\n      <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n      <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1\">\r\n      <!--[if !mso]><!-->\r\n      <meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge\">\r\n      <!--<![endif]-->\r\n      <!--[if (gte mso 9)|(IE)]>\r\n      <xml>\r\n        <o:OfficeDocumentSettings>\r\n          <o:AllowPNG/>\r\n          <o:PixelsPerInch>96</o:PixelsPerInch>\r\n        </o:OfficeDocumentSettings>\r\n      </xml>\r\n      <![endif]-->\r\n      <!--[if (gte mso 9)|(IE)]>\r\n  <style type=\"text/css\">\r\n    body {width: 600px;margin: 0 auto;}\r\n    table {border-collapse: collapse;}\r\n    table, td {mso-table-lspace: 0pt;mso-table-rspace: 0pt;}\r\n    img {-ms-interpolation-mode: bicubic;}\r\n  </style>\r\n<![endif]-->\r\n      <style type=\"text/css\">\r\n    body, p, div {\r\n      font-family: arial,helvetica,sans-serif;\r\n      font-size: 14px;\r\n    }\r\n    body {\r\n      color: #000000;\r\n    }\r\n    body a {\r\n      color: #2483c5;\r\n      text-decoration: none;\r\n    }\r\n    p { margin: 0; padding: 0; }\r\n    table.wrapper {\r\n      width:100% !important;\r\n      table-layout: fixed;\r\n      -webkit-font-smoothing: antialiased;\r\n      -webkit-text-size-adjust: 100%;\r\n      -moz-text-size-adjust: 100%;\r\n      -ms-text-size-adjust: 100%;\r\n    }\r\n    img.max-width {\r\n      max-width: 100% !important;\r\n    }\r\n    .column.of-2 {\r\n      width: 50%;\r\n    }\r\n    .column.of-3 {\r\n      width: 33.333%;\r\n    }\r\n    .column.of-4 {\r\n      width: 25%;\r\n    }\r\n    ul ul ul ul  {\r\n      list-style-type: disc !important;\r\n    }\r\n    ol ol {\r\n      list-style-type: lower-roman !important;\r\n    }\r\n    ol ol ol {\r\n      list-style-type: lower-latin !important;\r\n    }\r\n    ol ol ol ol {\r\n      list-style-type: decimal !important;\r\n    }\r\n    @media screen and (max-width:480px) {\r\n      .preheader .rightColumnContent,\r\n      .footer .rightColumnContent {\r\n        text-align: left !important;\r\n      }\r\n      .preheader .rightColumnContent div,\r\n      .preheader .rightColumnContent span,\r\n      .footer .rightColumnContent div,\r\n      .footer .rightColumnContent span {\r\n        text-align: left !important;\r\n      }\r\n      .preheader .rightColumnContent,\r\n      .preheader .leftColumnContent {\r\n        font-size: 80% !important;\r\n        padding: 5px 0;\r\n      }\r\n      table.wrapper-mobile {\r\n        width: 100% !important;\r\n        table-layout: fixed;\r\n      }\r\n      img.max-width {\r\n        height: auto !important;\r\n        max-width: 100% !important;\r\n      }\r\n      a.bulletproof-button {\r\n        display: block !important;\r\n        width: auto !important;\r\n        font-size: 80%;\r\n        padding-left: 0 !important;\r\n        padding-right: 0 !important;\r\n      }\r\n      .columns {\r\n        width: 100% !important;\r\n      }\r\n      .column {\r\n        display: block !important;\r\n        width: 100% !important;\r\n        padding-left: 0 !important;\r\n        padding-right: 0 !important;\r\n        margin-left: 0 !important;\r\n        margin-right: 0 !important;\r\n      }\r\n      .social-icon-column {\r\n        display: inline-block !important;\r\n      }\r\n    }\r\n  </style>\r\n      <!--user entered Head Start--><!--End Head user entered-->\r\n    </head>\r\n    <body>\r\n      <center class=\"wrapper\" data-link-color=\"#2483c5\" data-body-style=\"font-size:14px; font-family:arial,helvetica,sans-serif; color:#000000; background-color:#ffffff;\">\r\n        <div class=\"webkit\">\r\n          <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"wrapper\" bgcolor=\"#ffffff\">\r\n            <tr>\r\n              <td valign=\"top\" bgcolor=\"#ffffff\" width=\"100%\">\r\n                <table width=\"100%\" role=\"content-container\" class=\"outer\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                  <tr>\r\n                    <td width=\"100%\">\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                        <tr>\r\n                          <td>\r\n                            <!--[if mso]>\r\n    <center>\r\n    <table><tr><td width=\"600\">\r\n  <![endif]-->\r\n                                    <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:100%; max-width:600px;\" align=\"center\">\r\n                                      <tr>\r\n                                        <td role=\"modules-container\" style=\"padding:10px 18px 10px 18px; color:#000000; text-align:left;\" bgcolor=\"#ecf7ff\" width=\"100%\" align=\"left\"><table class=\"module preheader preheader-hide\" role=\"module\" data-type=\"preheader\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"display: none !important; mso-hide: all; visibility: hidden; opacity: 0; color: transparent; height: 0; width: 0;\">\r\n    <tr>\r\n      <td role=\"module-content\">\r\n        <p>The DOD is seeking to fill knowledge gaps on a wide range of illegal marine-based activities.</p>\r\n      </td>\r\n    </tr>\r\n  </table><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cfd0cb98-cae3-4099-bb9b-d518af9861a8\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:10px 18px 10px 18px;\" valign=\"top\" align=\"center\">\r\n          <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:25% !important; width:25%; height:auto !important;\" width=\"141\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/07c51c13-1be6-40d1-8dc7-789cd2686a09/1080x1080.png\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"divider\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"257cee2c-17b5-4325-a24f-cbc103c5619a.1.1.1.2.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 18px 0px 18px;\" role=\"module-content\" height=\"100%\" valign=\"top\" bgcolor=\"#d4eafb\">\r\n          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" height=\"3px\" style=\"line-height:3px; font-size:3px;\">\r\n            <tbody>\r\n              <tr>\r\n                <td style=\"padding:0px 0px 3px 0px;\" bgcolor=\"#2483C5\"></td>\r\n              </tr>\r\n            </tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"1b2e3e3f-7a4f-4ae9-858a-b364347e6b2b.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#FFFFFF\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"544\" style=\"width:544px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"12a76bcf-49d1-4289-8902-3dec45d9306a\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: center\"><span style=\"color: #454546; font-family: arial, helvetica, sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: center; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; background-color: rgb(255, 255, 255); font-size: 18px\">New Solicitation Announcement</span></div>\r\n<div style=\"font-family: inherit; text-align: center\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-alternates: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; background-color: rgb(255, 255, 255); color: #7c7e7f; font-family: arial, helvetica, sans-serif; font-size: 12px\">There is a new solicitation posted on our website. It is easy to respond with a 5-page paper or 15-slide slide deck. These limits are not requirements but are strongly recommended. Additional guidance about what we look for in a proposal is </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILh-2Bq1vMh5oO7-2Blz-2BUvdb0irmCIWB37BuouaFHZh9mjyapo40PS1xJmwqEWgArI7j9CRSrXpEexhWeQDXTY07pHfWNPHo7vlnb-2FhFx9HUTh4e9aYOlxqtqQGH9u1buGgAJ8BabEvBziVw-2FSowa6SMdLw-3DQh05_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSRnLAhX25DE6ozMFq0Lj9I8nF5xCD7nEqC7jHMIv0nFi-2BOtdDIdIMYrlNk54gwrT7JDa5kEoFYLVorra5q1rNJJ8m-2BBKK53bT7P8U-2BzpJaWJakVJHca-2FaB7ZhvfySElI9FzDAMOgjjU8nTJsTE6yoxHFkI-2Bwd2KPa1N-2F9vAOx9liKNg-2B4flq4TuBOZ5gulOB5wTuUjxNC9Jwl5mL53T15-2FdDAoPFFBecMND32zvjlYzlluNZVfuPcqmAOyzjqRQ7cfHlJspNzYHnX8sxvO6RAeY6xNcXPLX5QMHmEVO1IM0bqoX14SttqwSK07cv-2F6m9p1g4b1mHtZLdz4Qr4HQNGMrI2s7LCYVSlDgviRO-2BLFqivetvkHG8qAHavEN0ubtWzeQTCHjQzqlpqgki05SiD8NSX4a2ddvlz0tYnJtf7zKyOXC9OBzb75740lYuNp4nv7shlvZYK2olbZqMxEU47upGQGtLEAjMKHvXSmWO-2BbngT18JutxmYpQpC4I4qegzKPuj7Ybuh3K6LxTBjPxXUEmV-2F6D0ruasJ0dZVF6Gdn3dLydlATFfw159dXwn0kB0RnGCFLs-2FCVEelLkgCFnV63lQ1ZMdte2uGUzj1h-2BfM3fWT9unIGgEGHvJ-2FY3gHk3O0UTXrL7lyTw7a0VuE6704Nh-2BRtsAUvg7WM0imFC7wO3yp-2BMlk1zK0169mdOGfvGhFyJXei8rdGEMosTAmzVHEbwb-2FzwIKFp-2F0a0q0t1Db9LHniwneX3eoJ62C5zCTdU0M9VMQ6ldKMJgi7VzJVNGfJJFNgigPHbkud3XmfmFUCZfuTmvOc-2FrboFo-2BoAeqv653IMzcEnQAsYTdNmd7ylKRJc-3D\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-alternates: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; background-color: rgb(255, 255, 255); color: #01a1f1; font-family: arial, helvetica, sans-serif; font-size: 12px\"><u>available </u></span><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: none; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); color: #01a1f1; font-family: arial, helvetica, sans-serif; font-size: 12px\"><u>here</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-alternates: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; background-color: rgb(255, 255, 255); color: #7c7e7f; font-family: arial, helvetica, sans-serif; font-size: 12px\">. Our goal is to award an initial contract within 60-90 days of solicitation closure. Solicitation details and a link to the submission page are available below.</span><span style=\"font-family: arial, helvetica, sans-serif; font-size: 12px\"><br>\r\n</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#FFFFFF\" data-distribution=\"2,1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"362\" style=\"width:362px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2bb08414-727d-4668-851a-a0e1e3708ed6\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 10px 18px 10px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"color: #2483c5; font-family: arial, helvetica, sans-serif; font-size: 18px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline\">Transparent Ocean&nbsp;</span></div>\r\n<div style=\"font-family: inherit; text-align: start\"><br></div>\r\n<div style=\"font-family: inherit; text-align: start\"><span style=\"font-optical-sizing: auto; font-weight: 300; font-style: normal; font-variation-settings: &quot;slnt&quot; 0; white-space-collapse: collapse; text-wrap-mode: wrap; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; line-height: 1.4; margin-bottom: 1.8rem; margin-top: 0.5rem; max-width: 58rem; list-style-position: inherit; font-family: arial,helvetica,sans-serif; font-size: 12px; color: #7c7e7f\">More is known about the surface of the Moon and Mars than we know about our seafloor.&nbsp;The ocean represents 71% of the earth’s surface, yet 80% of the ocean has never been mapped, explored, or even seen by humans. Over half of the planet we know almost nothing about, and yet it plays a crucial, central role in the Earth’s economy, ecosystem, and well being.&nbsp;</span></div>\r\n<div style=\"font-family: inherit; text-align: start\"><br></div>\r\n<div style=\"font-family: inherit; text-align: start\"><span style=\"font-optical-sizing: auto; font-weight: 300; font-style: normal; font-variation-settings: &quot;slnt&quot; 0; white-space-collapse: collapse; text-wrap-mode: wrap; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; line-height: 1.4; margin-bottom: 1.8rem; margin-top: 0.5rem; max-width: 58rem; list-style-position: inherit; font-family: arial,helvetica,sans-serif; font-size: 12px; color: #7c7e7f\">The Department of Defense (DOD) is seeking to fill knowledge gaps on a wide range of illegal activities, to include: Illegal, Unreported, and Unregulated (IUU) fishing;&nbsp;illicit drug trafficking; piracy; human trafficking; shipment of counterfeit contraband goods; and related activities. The DoD is also seeking improved understanding and awareness on the protection of critical and supporting infrastructure in this domain and implications for force protection. We aspire to make one of the most opaque and least understood parts of the earth, the Ocean, more transparent and comprehensible.&nbsp;</span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9u1zqrSMBDhtQdPv7msVflVH-2BkbZImTZAha8dtfywZiDvxCcRtQbuQDOvQzjl-2FfrRvV6bD55vMG1K7qs5WDETm5O8865X9fMbPZAT7hg8jeAHqCZ_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSRnLAhX25DE6ozMFq0Lj9I8nF5xCD7nEqC7jHMIv0nFi-2BOtdDIdIMYrlNk54gwrT7JDa5kEoFYLVorra5q1rNJJ8m-2BBKK53bT7P8U-2BzpJaWJakVJHca-2FaB7ZhvfySElI9FzDAMOgjjU8nTJsTE6yoxHFkI-2Bwd2KPa1N-2F9vAOx9liKNg-2B4flq4TuBOZ5gulOB5wTuUjxNC9Jwl5mL53T15-2FdDAoPFFBecMND32zvjlYzlluNZVfuPcqmAOyzjqRQ7cfHlJspNzYHnX8sxvO6RAeY6xNcXPLX5QMHmEVO1IM0bqoX14SttqwSK07cv-2F6m9p1g4b1mHtZLdz4Qr4HQNGMrI2s7LCYVSlDgviRO-2BLFqivetvkHG8qAHavEN0ubtWzeQTCHjQzqlpqgki05SiD8NSX4a2ddvlz0tYnJtf7zKyOXC9OBzb75740lYuNp4nv7shlvZYK2olbZqMxEU47upGQGtLEAjMKHvXSmWO-2BbngT18JutxmYpQpC4I4qegzKPuj7Ybuh3K6LxTBjPxXUEmV-2F6D0ruasJ0dZVF6Gdn3dLydlATFfw159dXwn0kB0RnGCFLs-2FCVEelLkgCFnV63lQ1ZMdte2uGUzj1h-2BfM3fWT9unIGgEGHvJ-2FY3gHk3O0UTXrL7lyTw7a0VuE6704Nh-2BRtsAUvg7WM0imFC7wO3ywE6hDNN1wyD3DTlgYJ7wUml4EEJi4Ngw3HrsTEpVCSL1HyneoAoDDGrUX-2FAOmWITeBmgVKMBqVPX0RDj6GhUBuatjZaMx3X463J4DrcEHdD8WZ8TllFsd5i-2Fb8vS2Gk7FHFeCu7WFnAT4uQo0rUMTzseBhq4W-2BmqfQ-2BxhFQyGH0-3D\"><span style=\"font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; color: #2483c5; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>Learn more</strong></span></a><span style=\"font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; color: #2483c5; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>.</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"181\" style=\"width:181px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"4fa31850-56ff-4e7f-985c-2dd2d58a3cef\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>Submission Deadline:</strong></span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">03 August 2025</span><span style=\"font-family: arial, helvetica, sans-serif; font-size: 12px\"><br>\r\n</span><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">23:59:59 U.S. Eastern Time</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"module\" data-role=\"module-button\" data-type=\"button\" role=\"module\" style=\"table-layout:fixed;\" width=\"100%\" data-muid=\"621468ff-bdcc-4d55-8cd5-838691427b54\">\r\n      <tbody>\r\n        <tr>\r\n          <td align=\"left\" bgcolor=\"\" class=\"outer-td\" style=\"padding:0px 0px 0px 0px;\">\r\n            <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"wrapper-mobile\" style=\"text-align:center;\">\r\n              <tbody>\r\n                <tr>\r\n                <td align=\"center\" bgcolor=\"#2483C5\" class=\"inner-td\" style=\"border-radius:6px; font-size:16px; text-align:left; background-color:inherit;\">\r\n                  <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9u1zqrSMBDhtQdPv7msVflVH-2BkbZImTZAha8dtfywZiDvxCcRtQbuQDOvQzjl-2FfrRvV6bD55vMG1K7qs5WDETm5O8865X9fMbPZAT7hg8jeAIOPE_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSRnLAhX25DE6ozMFq0Lj9I8nF5xCD7nEqC7jHMIv0nFi-2BOtdDIdIMYrlNk54gwrT7JDa5kEoFYLVorra5q1rNJJ8m-2BBKK53bT7P8U-2BzpJaWJakVJHca-2FaB7ZhvfySElI9FzDAMOgjjU8nTJsTE6yoxHFkI-2Bwd2KPa1N-2F9vAOx9liKNg-2B4flq4TuBOZ5gulOB5wTuUjxNC9Jwl5mL53T15-2FdDAoPFFBecMND32zvjlYzlluNZVfuPcqmAOyzjqRQ7cfHlJspNzYHnX8sxvO6RAeY6xNcXPLX5QMHmEVO1IM0bqoX14SttqwSK07cv-2F6m9p1g4b1mHtZLdz4Qr4HQNGMrI2s7LCYVSlDgviRO-2BLFqivetvkHG8qAHavEN0ubtWzeQTCHjQzqlpqgki05SiD8NSX4a2ddvlz0tYnJtf7zKyOXC9OBzb75740lYuNp4nv7shlvZYK2olbZqMxEU47upGQGtLEAjMKHvXSmWO-2BbngT18JutxmYpQpC4I4qegzKPuj7Ybuh3K6LxTBjPxXUEmV-2F6D0ruasJ0dZVF6Gdn3dLydlATFfw159dXwn0kB0RnGCFLs-2FCVEelLkgCFnV63lQ1ZMdte2uGUzj1h-2BfM3fWT9unIGgEGHvJ-2FY3gHk3O0UTXrL7lyTw7a0VuE6704Nh-2BRtsAUvg7WM0imFC7wO3yXt5EPhYLbNwY3jxGXCrc7P4QRFoJW-2Bq1SjA13NvFekVgrP4-2FTX30JcGy12-2BLn7dRv7iJje1f1VLL5o7Ce-2FWKrm3LkYd5K3JXVh6Q5wXTNHo9rh0ziZQf-2FA6sbsZmLv2lqsFJ-2FfVr2kOd2NnduWoNqmrFmt52HW-2BQK7fW-2Bml-2FK-2FM-3D\" style=\"background-color:#2483C5; border:1px solid #2483C5; border-color:#2483C5; border-radius:6px; border-width:1px; color:#ffffff; display:inline-block; font-size:12px; font-weight:bold; letter-spacing:0px; line-height:normal; padding:12px 18px 12px 18px; text-align:center; text-decoration:none; border-style:solid;\" target=\"_blank\">Learn more</a>\r\n                </td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n          </td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"1b2e3e3f-7a4f-4ae9-858a-b364347e6b2b\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#FFFFFF\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"544\" style=\"width:544px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"12a76bcf-49d1-4289-8902-3dec45d9306a.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: left\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: 700; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; text-align: start; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 14px; color: #7c7e7f\">Other open solicitations:</span></div>\r\n<div style=\"font-family: inherit; text-align: start\"><br></div>\r\n<div style=\"font-family: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9tvMXoVh5TvEDiavrc1Am-2FQjHxFjeLVfuCXwtJhpIPCTR2KlMmi57lJqnyRC6eEe3wPprCW-2FfEO17TRffHx2KNBXmvFoKVp-2F8kyi-2FscpjPZ229Ux_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSRnLAhX25DE6ozMFq0Lj9I8nF5xCD7nEqC7jHMIv0nFi-2BOtdDIdIMYrlNk54gwrT7JDa5kEoFYLVorra5q1rNJJ8m-2BBKK53bT7P8U-2BzpJaWJakVJHca-2FaB7ZhvfySElI9FzDAMOgjjU8nTJsTE6yoxHFkI-2Bwd2KPa1N-2F9vAOx9liKNg-2B4flq4TuBOZ5gulOB5wTuUjxNC9Jwl5mL53T15-2FdDAoPFFBecMND32zvjlYzlluNZVfuPcqmAOyzjqRQ7cfHlJspNzYHnX8sxvO6RAeY6xNcXPLX5QMHmEVO1IM0bqoX14SttqwSK07cv-2F6m9p1g4b1mHtZLdz4Qr4HQNGMrI2s7LCYVSlDgviRO-2BLFqivetvkHG8qAHavEN0ubtWzeQTCHjQzqlpqgki05SiD8NSX4a2ddvlz0tYnJtf7zKyOXC9OBzb75740lYuNp4nv7shlvZYK2olbZqMxEU47upGQGtLEAjMKHvXSmWO-2BbngT18JutxmYpQpC4I4qegzKPuj7Ybuh3K6LxTBjPxXUEmV-2F6D0ruasJ0dZVF6Gdn3dLydlATFfw159dXwn0kB0RnGCFLs-2FCVEelLkgCFnV63lQ1ZMdte2uGUzj1h-2BfM3fWT9unIGgEGHvJ-2FY3gHk3O0UTXrL7lyTw7a0VuE6704Nh-2BRtsAUvg7WM0imFC7wO3yhUQcTqemqsa-2Fxwgi5ri0kY1VyuRAZz0P8EECji5VISjkCcPTVtiHvFyMAcEmBMZb45sRzimGxnUbiQXi-2FK11asQZkAH-2Fk1uKIJV04jVlyyQ24-2Fx7om-2B15G3wBMz0uB9WL4M05oQC23zDY-2BwIcj-2Bg33knbB-2ByLVkepEqql3jrPwg-3D\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 12px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #2483c5; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: none; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color\">Low Cost Undersea Effectors</span></a></div>\r\n<div style=\"font-family: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 12px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #7c7e7f; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">This solicitation closes on July 24, 2025 at 23:59:59 Eastern Time</span></div>\r\n<div style=\"font-family: inherit; margin-left: 0px\"><br>\r\n</div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9kGc-2Fi654EjxfC7gcUneG-2FZ8t5AyHoUl6ZdeO-2FYuJPcUTJiRYNwzKE1XObChGB-2B-2BCaCoIghdLCzaLv4F8SC8T4411K7i5hbARk9-2FKFN-2B71yA1l-D_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSRnLAhX25DE6ozMFq0Lj9I8nF5xCD7nEqC7jHMIv0nFi-2BOtdDIdIMYrlNk54gwrT7JDa5kEoFYLVorra5q1rNJJ8m-2BBKK53bT7P8U-2BzpJaWJakVJHca-2FaB7ZhvfySElI9FzDAMOgjjU8nTJsTE6yoxHFkI-2Bwd2KPa1N-2F9vAOx9liKNg-2B4flq4TuBOZ5gulOB5wTuUjxNC9Jwl5mL53T15-2FdDAoPFFBecMND32zvjlYzlluNZVfuPcqmAOyzjqRQ7cfHlJspNzYHnX8sxvO6RAeY6xNcXPLX5QMHmEVO1IM0bqoX14SttqwSK07cv-2F6m9p1g4b1mHtZLdz4Qr4HQNGMrI2s7LCYVSlDgviRO-2BLFqivetvkHG8qAHavEN0ubtWzeQTCHjQzqlpqgki05SiD8NSX4a2ddvlz0tYnJtf7zKyOXC9OBzb75740lYuNp4nv7shlvZYK2olbZqMxEU47upGQGtLEAjMKHvXSmWO-2BbngT18JutxmYpQpC4I4qegzKPuj7Ybuh3K6LxTBjPxXUEmV-2F6D0ruasJ0dZVF6Gdn3dLydlATFfw159dXwn0kB0RnGCFLs-2FCVEelLkgCFnV63lQ1ZMdte2uGUzj1h-2BfM3fWT9unIGgEGHvJ-2FY3gHk3O0UTXrL7lyTw7a0VuE6704Nh-2BRtsAUvg7WM0imFC7wO3yo8wjCxnbCKmfOk1wh1qWqRXh3ozQi8c2-2F-2BaOu1f1mBDOzGpld-2FWzmXRY3ehv9uDPzX0cxYMEXHXo3Aa1jKqO1-2FY939YS7me8eyMItcy-2FTt0-2BRJtyFY22G7L3lApAGX3PeIlhC2J9jaxeQnh2lDBd2gLVj9uflXVsyWONKWyo0DM-3D\"><span style=\"font-size: 12px; color: #2483c5\"><strong>Project G.I. Prize Challenge</strong></span></a></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-size: 12px\">This solicitation closes on December 31, 2025 at 23:59:59 Eastern Time</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><br></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"01cfd941-691e-4504-af90-9ba914a69b55\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:10px 18px 10px 18px;\" valign=\"top\" align=\"center\">\r\n          <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:25% !important; width:25%; height:auto !important;\" width=\"141\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/07c51c13-1be6-40d1-8dc7-789cd2686a09/1080x1080.png\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"6cf433f1-53d9-4818-89de-d72eccb7d837\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 10px 18px 10px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"line-height: inherit; color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-line: inherit; text-decoration-thickness: inherit; text-decoration-style: inherit; text-decoration-color: inherit; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>About DIU:&nbsp;</strong></span><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">The Defense Innovation Unit (DIU) strengthens our national security by accelerating the adoption of commercial technology throughout the military and growing the national security innovation base. DIU partners with organizations across the Department of Defense (DoD) and with&nbsp;nontraditional companies to facilitate prototype projects and field advanced commercial solutions that address national security challenges. DIU leverages Other Transaction (OT) authority to award Prototype agreements, which, if successful, may result in the direct award of a follow-on Production agreement without the use of further competitive procedures. (DIU is not an OT consortium; DIU executes direct award OTs).&nbsp;</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; background-color: rgb(255, 255, 255); font-size: 12px\">You are receiving this email because you have a contact at DIU or you signed up to our mailing list. If you would like to be removed from our email list, please click the unsubscribe link below.</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"6ac32cba-50e8-406c-8061-dd0135aebb60\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 30px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"module\" data-role=\"module-button\" data-type=\"button\" role=\"module\" style=\"table-layout:fixed;\" width=\"100%\" data-muid=\"bf716dbe-018d-4f2d-bf15-b5b6db124e86\">\r\n      <tbody>\r\n        <tr>\r\n          <td align=\"center\" bgcolor=\"\" class=\"outer-td\" style=\"padding:0px 0px 0px 0px;\">\r\n            <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"wrapper-mobile\" style=\"text-align:center;\">\r\n              <tbody>\r\n                <tr>\r\n                <td align=\"center\" bgcolor=\"#2483C5\" class=\"inner-td\" style=\"border-radius:6px; font-size:16px; text-align:center; background-color:inherit;\">\r\n                  <a href=\"mailto:info@diu.mil\" style=\"background-color:#2483C5; border:1px solid #2483C5; border-color:#2483C5; border-radius:6px; border-width:1px; color:#ffffff; display:inline-block; font-size:12px; font-weight:bold; letter-spacing:0px; line-height:normal; padding:18px 18px 12px 18px; text-align:center; text-decoration:none; border-style:solid; font-family:arial,helvetica,sans-serif;\" target=\"_blank\">Contact Us</a>\r\n                </td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n          </td>\r\n        </tr>\r\n      </tbody>\r\n    </table><div data-role=\"module-unsubscribe\" class=\"module\" role=\"module\" data-type=\"unsubscribe\" style=\"color:#444444; font-size:12px; line-height:20px; padding:16px 16px 16px 16px; text-align:center;\" data-muid=\"037d4496-257f-4255-8897-cb3cce530456\"><div class=\"Unsubscribe--addressLine\"></div><p style=\"font-size:12px; line-height:20px;\"><a class=\"Unsubscribe--unsubscribeLink\" href=\"https://u18220755.ct.sendgrid.net/asm/unsubscribe/?user_id=18220755&amp;data=BFeoUqkuboW1CyEWkPnlxxgDKdWjlWK4QbEt4aVWOFxoMDAwdTAwMH8mP2wK3LU-Xo6_gf7WpvJiNrrKs7R9VKNe-86Xah_U7T8Bpk3ECroam-zDMhntITuTEt8UYb9RrFZBzdSbV5IWuQDC-mlZw-Th4z0TWZAnRqQAJ0Hm9ywFNu8sU0mfn7EYgxLulkg8-GhqshFwddBouEPTyUzFswxt6WC7Ple2C4ANeO24dBoHW_8GLckqlGZYUzWhD8fechBGIbw7p0qKzBredAmZUXDYU-Bg-PvT2hRHCblesfpUnrjLavX0O6pOeKnBO9FhxF4So4jzJc6dQpm2A9EO3ds1_5P6HyLZj0pXWLgiSV0NeoTXaLV3ykrgtbp52m2xrIJvxyfPnHLYMcNfy8NvU8_Z6RYjSXIH-ZLcrjs6dCI78zU1hKIfMQ_8lqZ80ci6sx5ZOI8OrnfoD_2_VZ38KG705l6ek22n5wEzEKODkRGzPvUXBMkc26GupanoAvDO78zlAtlqy9kziqzFWtXnHYff9qwX_gsY_l8GahYo7IeSzL21xSGWkjgSd8gDVPTKU_2tVhtC6nY_mFs4eoqZtNQcbqNysHPMwteTmyKuU4O4I-3WevMqCE4PlB5_kie9zjKCfHsMoxv5XwCIecj6Q0bCEBLk5mqFUR3QSxAM1X7PB7l06eBPy9hPDNWFs-fxIACtft_1RwL2XtunYy_I69LKalnNUwpz_dlDPd0NHPeszceYiES--RdfgmtACTlrLcX2zOsAzlOU2cSp_phNBr5-LNhmMyeGFD23oYVpHBwIEFW-biw7y1c0gbi3-KBXYBaJU8aMrx4QkKDUoHtOSQgSedXTPrSr21rGtZ9AI8hAqJjM5xOvAcEj1ZpAoaITiIOq-GnjfxcdcrgsZuoKlaIugwQ22a5uVDBzCkFSlK519TwDqWJtfiH2aI9NCy0PXM83ndtFqDw82ASAc8EWvLs8PJoyVdirOXjCctfHi4aRVjPU79mdhSA2lI2cs45i_1ckcdhiN7-NeQRatQMew2xOB4weIUDjeVQK0C7fILYXmIXCKEqDnDjftNUesyCH2e_C3p1-xHGzGqNIN30goLNgx0Ltajs-NKReCM1rHPeFDcp0fhkYHFXV3jHPPwfSsNFjTd1GOjIFBorTh232-BTifmOhGEobc2Eh2Ipde0VC2WEwS1UD3A==\" target=\"_blank\" style=\"\">Unsubscribe</a> - <a href=\"https://u18220755.ct.sendgrid.net/asm/?user_id=18220755&amp;data=2Qkta9J3zEv6DYBH48ACpdABdaZrTMp7FnvRbC4Jy0VoMDAwdTAwMDMg-c_H4Qk_vnUzD78lGtw1y7LnSOv7q3-PxrmTPet8PsaUy7aytdGiuH2Hl-ZbNPXO6hnPxzunx4DtYmM6uheP4rPkigjs87aCuNQeLWu8tT1ILniHKvFRyfajDcOYk-bQlZWfP1rn5IA__CkS3qnyqafZ4lneVIv44bNjpcls_QsLUoANG4gKtT4qBKE9rokf-CUarDc7sVyr8Kq7tFGKR4Onpl8P_bLyeet1zNxm307sg7_n80Fb0tMWyelUX31TwOHmCTGRXkwKh_zbiNPL4ZuABeDzMZc6fV-7VRZD_0Ig4EIDWz6ahOWz8JUUZZBcDfaCaZM4XiVQ-BR1E8LkhoBqywEBuS3oOGy8SbINdMN72lRszsYCR4A1Cj4FM-PuZ5ncJJ4KRn4z5Bv3yzT-M0sHKh5zm_fETb9YXB7A8uB2G7xqMHTYhR9ZfWCTCSXgi6bTFrPb8vbaCwiHKRD_zZ6PUzFFFthFMXLNIXRv_KF6k7mHYPX50Vo0aInZxO6Av582wnC1L9suqmTClzUQKSHRtrJs2McbL9dyge80Z_mok5Sgzk-jlqR2W9DRp4t9WJe4YYjh2CEFKXQw8WAQLt1H1CEF6bmQARFxuhooS6oOXzU1dAozpwNzGJve67oWPc1J-REvYJfZwuu1CEMqhazSE4hEjCGFjZSfmMLA-5hdPhlx56T2njj1_UDFpTbsbdtGUiD32Nqm3q_8TwctI4D4z3VJZT0NRiOwfTLGi5qF8aBRg6csz4fliY6z9FWOKAOLYuT6SOk1a5axevEQKUmf3W2EgyTstGc3q2uJUi65ubpwS7-pP0oMCzn06kcmTW6ZUhOJ3QPlQMJ5lsJW6pFiy3ruLP9uAVeDsWGcmUdkctj10LeKpwkT_UeXURwv9De-RhoDi-zJgARx1viyn5Q1otm_09jZhhdqppaTDHut2_jy4fgBMsdazn3sE0brWC6aB6KhxtH9x8V9u0Iz0A2Hvz8LxEvokiqE6aFVIkwpcegluaYt1f6gyNHjufQwb9F6PPMBPG3L58sKUbnuUGmOMUuknSrvL6x-nP530_E1vtIzMBYo6EzcE2s2Zfo0GRyGVG7F86Q83WxhFnYImJUBfjL0xmQmbvhEqzAt\" target=\"_blank\" class=\"Unsubscribe--unsubscribePreferences\" style=\"\">Unsubscribe Preferences</a></p></div></td>\r\n                                      </tr>\r\n                                    </table>\r\n                                    <!--[if mso]>\r\n                                  </td>\r\n                                </tr>\r\n                              </table>\r\n                            </center>\r\n                            <![endif]-->\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </div>\r\n      </center>\r\n    <img src=\"https://u18220755.ct.sendgrid.net/wf/open?upn=u001.D6mC8SG6iITw2GIzPjAtw7SLAuEgZhcE7OQx5Ie2paKW9TCJvoy3Eh7ani-2FmDfzWZ4Aty9oKYAg8U-2BpXv81mmaeCBsQtTAdxlXqbnsXBCjn-2FAW10qJfypmIUPoD1-2B38y4LSjEaiwyNZHtEyZD-2BNUDav70uP7YqDf9a4TkSs9szEQE4zwcwpMBkuTUR7tnn9j9O6eIuGET3so8w2wpfSIHvC3-2B36Rao-2FCLE0u7CbsmqSZC6zsdIg-2FQcJOhkyMLVxeuu5R4tKSfdtyhwTAwaq4cnaJryMpS5iyPy95AUCqyQa0ApuuX-2BliZOps4F0vS4l6lk6rSG24DFUjPhp1AwgnipUuQI8ARYH9RWaoXOqSrPdfNZpQZRtGFXFeSTdl1QPJ1LAuEzILT-2F190oZ-2FWL2L4aadDUrdpSONs38Zi3egz3JceVyY4fhBMTvcJ4iYVgY6UMb46nePzu3Rm-2BJmfEOz7PpnthjhCdgwTERiqqtBhkftYUZLGm6huGTtSD1Vk0r82D7OVI3mBfmIEz-2BOonptW8mf5DJQy6AB7EekM6CrYp-2BcAvteYIMdNjhz9RJc6tASSQf-2FgLI18DKCUUW4DpP-2BvOiHwycCLdv8pqZYAXIV-2BYZgXMI5f7w1aDpHHMhXQC21jsMS88k0dLMed5Csbyc5M3eBqY-2BqvHKrihNaM0RhGQ7R-2FnA8PyzbAF2TZz9Sx6Szdj0kRauMyRyAWtLJEQnITCBXnyOWVwkPjfRunsxuITtn-2BjZZGkPAtDUfyhi1nx4tZcmcAajcK7-2FcY5Q8ocCCHi9b3ciuNnBetzFhyjS3ln-2FOJgS9ET0N-2BQ285R1PS32NbXpSJwFieQseuH-2B-2FKENBzO4PHHPuZ-2BSjF-2BRyjBz4UHLLrTTH-2FR3fpc5YN2mk8QiibIG45yxbgHcShNoND-2Bs-2FPL-2FdmGR4f2TtuFSHOFraBNaPrhZi89lNpQW8oLN6VeQjjSHvUnMBN-2FCAUBohX1mes4oKKmpAkc-2FAyqSgzn-2BwnF4-3D\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/></body>\r\n  </html>','The DOD is seeking to fill knowledge gaps on a wide range of illegal marine-based activities.\r\n\r\nNew Solicitation Announcement\r\n\r\nThere is a new solicitation posted on our website. It is easy to respond with a 5-page paper or 15-slide slide deck. These limits are not requirements but are strongly recommended. Additional guidance about what we look for in a proposal is available here ( https://www.diu.mil/solution-brief-guidance?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ). Our goal is to award an initial contract within 60-90 days of solicitation closure. Solicitation details and a link to the submission page are available below.\r\n\r\nTransparent Ocean\r\n\r\nMore is known about the surface of the Moon and Mars than we know about our seafloor. The ocean represents 71% of the earth’s surface, yet 80% of the ocean has never been mapped, explored, or even seen by humans. Over half of the planet we know almost nothing about, and yet it plays a crucial, central role in the Earth’s economy, ecosystem, and well being.\r\n\r\nThe Department of Defense (DOD) is seeking to fill knowledge gaps on a wide range of illegal activities, to include: Illegal, Unreported, and Unregulated (IUU) fishing; illicit drug trafficking; piracy; human trafficking; shipment of counterfeit contraband goods; and related activities. The DoD is also seeking improved understanding and awareness on the protection of critical and supporting infrastructure in this domain and implications for force protection. We aspire to make one of the most opaque and least understood parts of the earth, the Ocean, more transparent and comprehensible. *Learn more* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00623?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) *.*\r\n\r\n*Submission Deadline:*\r\n03 August 2025\r\n23:59:59 U.S. Eastern Time\r\n\r\nLearn more ( https://www.diu.mil/work-with-us/submit-solution/PROJ00623?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\nOther open solicitations:\r\n\r\nLow Cost Undersea Effectors ( https://www.diu.mil/work-with-us/submit-solution/PROJ00595?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\nThis solicitation closes on July 24, 2025 at 23:59:59 Eastern Time\r\n\r\n*Project G.I. Prize Challenge* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00598?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\nThis solicitation closes on December 31, 2025 at 23:59:59 Eastern Time\r\n\r\n*About DIU:* The Defense Innovation Unit (DIU) strengthens our national security by accelerating the adoption of commercial technology throughout the military and growing the national security innovation base. DIU partners with organizations across the Department of Defense (DoD) and with nontraditional companies to facilitate prototype projects and field advanced commercial solutions that address national security challenges. DIU leverages Other Transaction (OT) authority to award Prototype agreements, which, if successful, may result in the direct award of a follow-on Production agreement without the use of further competitive procedures. (DIU is not an OT consortium; DIU executes direct award OTs).\r\n\r\nYou are receiving this email because you have a contact at DIU or you signed up to our mailing list. If you would like to be removed from our email list, please click the unsubscribe link below.\r\n\r\nContact Us ( info@diu.mil )\r\n\r\nUnsubscribe ( https://u18220755.ct.sendgrid.net/asm/unsubscribe/?user_id=18220755&data=BFeoUqkuboW1CyEWkPnlxxgDKdWjlWK4QbEt4aVWOFxoMDAwdTAwMH8mP2wK3LU-Xo6_gf7WpvJiNrrKs7R9VKNe-86Xah_U7T8Bpk3ECroam-zDMhntITuTEt8UYb9RrFZBzdSbV5IWuQDC-mlZw-Th4z0TWZAnRqQAJ0Hm9ywFNu8sU0mfn7EYgxLulkg8-GhqshFwddBouEPTyUzFswxt6WC7Ple2C4ANeO24dBoHW_8GLckqlGZYUzWhD8fechBGIbw7p0qKzBredAmZUXDYU-Bg-PvT2hRHCblesfpUnrjLavX0O6pOeKnBO9FhxF4So4jzJc6dQpm2A9EO3ds1_5P6HyLZj0pXWLgiSV0NeoTXaLV3ykrgtbp52m2xrIJvxyfPnHLYMcNfy8NvU8_Z6RYjSXIH-ZLcrjs6dCI78zU1hKIfMQ_8lqZ80ci6sx5ZOI8OrnfoD_2_VZ38KG705l6ek22n5wEzEKODkRGzPvUXBMkc26GupanoAvDO78zlAtlqy9kziqzFWtXnHYff9qwX_gsY_l8GahYo7IeSzL21xSGWkjgSd8gDVPTKU_2tVhtC6nY_mFs4eoqZtNQcbqNysHPMwteTmyKuU4O4I-3WevMqCE4PlB5_kie9zjKCfHsMoxv5XwCIecj6Q0bCEBLk5mqFUR3QSxAM1X7PB7l06eBPy9hPDNWFs-fxIACtft_1RwL2XtunYy_I69LKalnNUwpz_dlDPd0NHPeszceYiES--RdfgmtACTlrLcX2zOsAzlOU2cSp_phNBr5-LNhmMyeGFD23oYVpHBwIEFW-biw7y1c0gbi3-KBXYBaJU8aMrx4QkKDUoHtOSQgSedXTPrSr21rGtZ9AI8hAqJjM5xOvAcEj1ZpAoaITiIOq-GnjfxcdcrgsZuoKlaIugwQ22a5uVDBzCkFSlK519TwDqWJtfiH2aI9NCy0PXM83ndtFqDw82ASAc8EWvLs8PJoyVdirOXjCctfHi4aRVjPU79mdhSA2lI2cs45i_1ckcdhiN7-NeQRatQMew2xOB4weIUDjeVQK0C7fILYXmIXCKEqDnDjftNUesyCH2e_C3p1-xHGzGqNIN30goLNgx0Ltajs-NKReCM1rHPeFDcp0fhkYHFXV3jHPPwfSsNFjTd1GOjIFBorTh232-BTifmOhGEobc2Eh2Ipde0VC2WEwS1UD3A== ) - Unsubscribe Preferences ( https://u18220755.ct.sendgrid.net/asm/?user_id=18220755&data=2Qkta9J3zEv6DYBH48ACpdABdaZrTMp7FnvRbC4Jy0VoMDAwdTAwMDMg-c_H4Qk_vnUzD78lGtw1y7LnSOv7q3-PxrmTPet8PsaUy7aytdGiuH2Hl-ZbNPXO6hnPxzunx4DtYmM6uheP4rPkigjs87aCuNQeLWu8tT1ILniHKvFRyfajDcOYk-bQlZWfP1rn5IA__CkS3qnyqafZ4lneVIv44bNjpcls_QsLUoANG4gKtT4qBKE9rokf-CUarDc7sVyr8Kq7tFGKR4Onpl8P_bLyeet1zNxm307sg7_n80Fb0tMWyelUX31TwOHmCTGRXkwKh_zbiNPL4ZuABeDzMZc6fV-7VRZD_0Ig4EIDWz6ahOWz8JUUZZBcDfaCaZM4XiVQ-BR1E8LkhoBqywEBuS3oOGy8SbINdMN72lRszsYCR4A1Cj4FM-PuZ5ncJJ4KRn4z5Bv3yzT-M0sHKh5zm_fETb9YXB7A8uB2G7xqMHTYhR9ZfWCTCSXgi6bTFrPb8vbaCwiHKRD_zZ6PUzFFFthFMXLNIXRv_KF6k7mHYPX50Vo0aInZxO6Av582wnC1L9suqmTClzUQKSHRtrJs2McbL9dyge80Z_mok5Sgzk-jlqR2W9DRp4t9WJe4YYjh2CEFKXQw8WAQLt1H1CEF6bmQARFxuhooS6oOXzU1dAozpwNzGJve67oWPc1J-REvYJfZwuu1CEMqhazSE4hEjCGFjZSfmMLA-5hdPhlx56T2njj1_UDFpTbsbdtGUiD32Nqm3q_8TwctI4D4z3VJZT0NRiOwfTLGi5qF8aBRg6csz4fliY6z9FWOKAOLYuT6SOk1a5axevEQKUmf3W2EgyTstGc3q2uJUi65ubpwS7-pP0oMCzn06kcmTW6ZUhOJ3QPlQMJ5lsJW6pFiy3ruLP9uAVeDsWGcmUdkctj10LeKpwkT_UeXURwv9De-RhoDi-zJgARx1viyn5Q1otm_09jZhhdqppaTDHut2_jy4fgBMsdazn3sE0brWC6aB6KhxtH9x8V9u0Iz0A2Hvz8LxEvokiqE6aFVIkwpcegluaYt1f6gyNHjufQwb9F6PPMBPG3L58sKUbnuUGmOMUuknSrvL6x-nP530_E1vtIzMBYo6EzcE2s2Zfo0GRyGVG7F86Q83WxhFnYImJUBfjL0xmQmbvhEqzAt )',0,0,0,0,0,0,'2025-07-23 20:45:17','2025-12-09 19:17:31','2025-12-09 19:17:31','2025-12-09 19:17:31',NULL,NULL,NULL),
(505,4,'<010001983c4e1255-61bb8300-62d7-4ceb-8d6c-13588a247a84-000000@email.amazonses.com>',NULL,NULL,'Meeting with Ashby [Bridge Details]','reminder@chilipiper.com','Reminder','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html dir=\"ltr\" lang=\"en\">\r\n\r\n  <head>\r\n    <meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\" />\r\n    <style>\r\n      @font-face {\r\n        font-family: \'-apple-system, BlinkMacSystemFont, \' Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \' Apple Color Emoji\', \' Segoe UI Emoji\', \' Segoe UI Symbol\'\';\r\n        font-style: normal;\r\n        font-weight: 400;\r\n        mso-font-alt: \'Helvetica\';\r\n\r\n      }\r\n\r\n      * {\r\n        font-family: \'-apple-system, BlinkMacSystemFont, \' Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \' Apple Color Emoji\', \' Segoe UI Emoji\', \' Segoe UI Symbol\'\', Helvetica;\r\n      }\r\n    </style>\r\n  </head>\r\n\r\n  <body style=\"font-family:-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\'\">\r\n    <p color=\"textcolor/body-major\" style=\"font-size:14px;line-height:22px;margin:16px 0;color:rgb(21,29,35);font-weight:500\">\r\n    <pre style=\"font-family:inherit;margin:0;white-space:pre-wrap\">Hi Rick,\r\n\r\nLooking forward to connecting shortly! \r\nHere’s the meeting bridge: https://ashbyhq.zoom.us/j/82623642495\r\n\r\nIn this call, I typically like to cover:\r\n- Intros\r\n- Your Priorities\r\n- Ashby Overview &amp; Demo\r\n\r\nAnything else that we should add to the agenda today?\r\n\r\nSpeak soon, 👋\r\nJake\r\n\r\nif you need to reschedule, no problem, you can do that here: https://ashbyhq.chilipiper.com/reschedule/acbd1125-b12e-4c51-8ed5-f20df0c681f6</pre></p>\r\n  </body>\r\n\r\n</html>\r\n','\r\n\r\n\r\n  \r\n    \r\n    \r\n      @font-face {\r\n        font-family: \'-apple-system, BlinkMacSystemFont, \' Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \' Apple Color Emoji\', \' Segoe UI Emoji\', \' Segoe UI Symbol\'\';\r\n        font-style: normal;\r\n        font-weight: 400;\r\n        mso-font-alt: \'Helvetica\';\r\n\r\n      }\r\n\r\n      * {\r\n        font-family: \'-apple-system, BlinkMacSystemFont, \' Segoe UI\', Roboto, Helvetica, Arial, sans-serif, \' Apple Color Emoji\', \' Segoe UI Emoji\', \' Segoe UI Symbol\'\', Helvetica;\r\n      }\r\n    \r\n  \r\n\r\n  \r\n    \r\n    Hi Rick,\r\n\r\nLooking forward to connecting shortly! \r\nHere’s the meeting bridge: https://ashbyhq.zoom.us/j/82623642495\r\n\r\nIn this call, I typically like to cover:\r\n- Intros\r\n- Your Priorities\r\n- Ashby Overview &amp; Demo\r\n\r\nAnything else that we should add to the agenda today?\r\n\r\nSpeak soon, 👋\r\nJake\r\n\r\nif you need to reschedule, no problem, you can do that here: https://ashbyhq.chilipiper.com/reschedule/acbd1125-b12e-4c51-8ed5-f20df0c681f6\r\n  \r\n\r\n\r\n',0,0,0,0,0,0,'2025-07-24 12:00:06','2025-12-09 19:17:32','2025-12-09 19:17:32','2025-12-09 19:17:32',NULL,NULL,NULL),
(506,4,'<CANZ1scupkuCAS4BMLoNERRi7kCENEgSRwKFPWRU74JQwawGuNw@mail.gmail.com>',NULL,NULL,'Today\'s Ashby Meeting','jake@ashbyhq.com','Jake McLinden','<div dir=\"ltr\"><div id=\"689597f9-e2ea-41ba-fb10-2a37b7c7c85b\"><div id=\"hubspot-template-container\"><div>Hi Rick,</div><br><div>Hope this finds you well! I&#39;m on the Zoom link for our call today: <a href=\"https://ashbyhq.zoom.us/j/82623642495\">https://ashbyhq.zoom.us/j/82623642495</a></div><br><div>Are you still able to join? I&#39;ll hang out here for another 5 minutes or so in case you&#39;re still able to make it. </div><br><div>If you need to reschedule, feel free to let me know a time that works best for you, or you&#39;re welcome to find a new time on <a href=\"https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JlF2-6qcW8wLKSR6lZ3n6N2RnhprWQSxfW8qH1xx3dLdnCW2BDnjY9bYYd8V2QTdl5PJYDyW5JJfKj2RvhVpN69y63tjMHFjW85cKQr7JzZY3W6jMFyG9jYsrjW5qcqM86ghKTQW6ZVK5P8WdT6SW5mVbDK4RJ-2WW6js3pr7LbtbgVCKwft9cW3bRW1tFlkW98GLGQW6lSLbK3V05xWW5fsz2_4KvyC7W3YJhFm5zn-tBW2D51rY7v3XXbW3cnXYS23HbjZW8491n38m-c5ZW48x8ZT5SrGt-W6DmZkL4qtDBqW4jpN597Q7LRFW8xwGj651YJ5KW4VnjZf5hyr0QW6NG4JW8RB4_2W1q8CJ48rK3SgW23S_Lw2zrG9fdKXmpT04\">my calendar link here </a>at your convenience. </div><br><div>Best,</div><div>Jake</div></div></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><table style=\"font-size:13px;color:rgb(136,136,136);font-family:sans-serif;border:none;border-collapse:collapse\"><tbody><tr style=\"height:48pt\"><td style=\"border-right:0.75pt solid rgb(213,213,213);vertical-align:middle;padding:0pt 15pt 0pt 0pt\"><p dir=\"ltr\" style=\"text-align:center;line-height:1.38;margin-top:0pt;margin-bottom:0pt\"><font color=\"#000000\"><img alt=\"\"><img width=\"96\" height=\"31\" src=\"https://ci3.googleusercontent.com/mail-sig/AIorK4w8QGAbCRhtnIvIvK-dljfu1OmMjy86NGExCmelZoSt9IBLQv_7GvAIopij2C-hDYXlkPW2RDA\"><br></font></p></td><td style=\"border-left:0.75pt solid rgb(213,213,213);vertical-align:top;padding:0pt 0pt 0pt 15pt\"><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">Jake McLinden</font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">Account Executive</font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">774.277.1507 | <a href=\"https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/Jl22-6qcW7lCdLW6lZ3kTN7-l03RFtrJjW3JMWnd44Cd57W3-TJ874_vt--W82455n8HHlsKW2kjK3y6dR85YN2WSR5l3BwKLW84cBfz2fN-5FW7WCSXM28y4lCMVGptk3r60-W2B9pq36cJ8z5W2V_Gxq1K7BZNN2R2hs7WYjtxW5W2kY18RN-1LW1c6Zpx7ht9smW16njyC6ysnxxW3kbwWK3v6nr8W71d9WT3jl90qW5pcl0x3WRYDpW8ryGPh1gl-vMW2zywL43SbV2WW4STpnS43w9rpW81DJkf4-RjhGW1Ml3ty1BlyrdW9jl48396-kjqf8TRLZ204\" target=\"_blank\">LinkedIn</a></font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\"><a href=\"mailto:jake@ashby.com\" target=\"_blank\">jake@ashbyhq.com</a></font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\"><a href=\"http://www.ashbyhq.com/\" target=\"_blank\">www.ashbyhq.com</a></font></p></td></tr></tbody></table><div><br></div></div></div><img src=\"https://cBJBm04.na1.hs-sales-engage.com/Cto/ZS+23284/cBJBm04/R5X8b4bTZN6rhp1Z2fD5vW1N5xDm1N4gXtW3DMGjX1W_KPLW1GzhJN3DHWDyW1S4K4G1S2cYRW22V0991W-W13N22XzNXhPQ-pf5pBb-804\" alt=\"\" height=\"1\" width=\"1\" style=\"display: none !important;\"><div></div></div>','Hi Rick,\r\n\r\nHope this finds you well! I\'m on the Zoom link for our call today:\r\nhttps://ashbyhq.zoom.us/j/82623642495\r\n\r\nAre you still able to join? I\'ll hang out here for another 5 minutes or so\r\nin case you\'re still able to make it.\r\n\r\nIf you need to reschedule, feel free to let me know a time that works best\r\nfor you, or you\'re welcome to find a new time on my calendar link here\r\n<https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JlF2-6qcW8wLKSR6lZ3n6N2RnhprWQSxfW8qH1xx3dLdnCW2BDnjY9bYYd8V2QTdl5PJYDyW5JJfKj2RvhVpN69y63tjMHFjW85cKQr7JzZY3W6jMFyG9jYsrjW5qcqM86ghKTQW6ZVK5P8WdT6SW5mVbDK4RJ-2WW6js3pr7LbtbgVCKwft9cW3bRW1tFlkW98GLGQW6lSLbK3V05xWW5fsz2_4KvyC7W3YJhFm5zn-tBW2D51rY7v3XXbW3cnXYS23HbjZW8491n38m-c5ZW48x8ZT5SrGt-W6DmZkL4qtDBqW4jpN597Q7LRFW8xwGj651YJ5KW4VnjZf5hyr0QW6NG4JW8RB4_2W1q8CJ48rK3SgW23S_Lw2zrG9fdKXmpT04>at\r\nyour convenience.\r\n\r\nBest,\r\nJake\r\n\r\n\r\n-- \r\n\r\n\r\nJake McLinden\r\n\r\nAccount Executive\r\n\r\n774.277.1507 | LinkedIn\r\n<https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/Jl22-6qcW7lCdLW6lZ3kTN7-l03RFtrJjW3JMWnd44Cd57W3-TJ874_vt--W82455n8HHlsKW2kjK3y6dR85YN2WSR5l3BwKLW84cBfz2fN-5FW7WCSXM28y4lCMVGptk3r60-W2B9pq36cJ8z5W2V_Gxq1K7BZNN2R2hs7WYjtxW5W2kY18RN-1LW1c6Zpx7ht9smW16njyC6ysnxxW3kbwWK3v6nr8W71d9WT3jl90qW5pcl0x3WRYDpW8ryGPh1gl-vMW2zywL43SbV2WW4STpnS43w9rpW81DJkf4-RjhGW1Ml3ty1BlyrdW9jl48396-kjqf8TRLZ204>\r\n\r\njake@ashbyhq.com <jake@ashby.com>\r\n\r\nwww.ashbyhq.com',0,0,0,0,0,0,'2025-07-24 13:04:55','2025-12-09 19:17:32','2025-12-09 19:17:32','2025-12-09 19:17:32',NULL,NULL,NULL),
(507,4,'<CANZ1scvVmcUhJFwp0wjjSGc4KjK33M1EvPJnk952FeQ=wWLyQA@mail.gmail.com>',NULL,NULL,'Re: Today\'s Ashby Meeting','jake@ashbyhq.com','Jake McLinden','<div dir=\"ltr\"><div dir=\"ltr\">No worries, Rick! Here&#39;s my calendar link if you&#39;d like to grab a new time: <a href=\"https://ashbyhq.chilipiper.com/reschedule/acbd1125-b12e-4c51-8ed5-f20df0c681f6\">https://ashbyhq.chilipiper.com/reschedule/acbd1125-b12e-4c51-8ed5-f20df0c681f6</a><div><br></div><div>I&#39;m OOO Mon-Weds next week but could meet tomorrow or towards the end of the week as well. </div><div></div></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Jul 24, 2025 at 9:43 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"msg-7811995203812677800\"><u></u>\r\n<div>\r\n\r\n\r\n<div style=\"display:block;opacity:1\">\r\n\r\n<!--removed inky banner-->\r\n</div>\r\n\r\n\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Sorry the day got away from me…I’ll reschedule soon.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Rick</div> <br> <div class=\"gmail_signature\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div> <br><p>On July 24, 2025 at 9:06:14 AM, Jake McLinden (<a href=\"mailto:jake@ashbyhq.com\" target=\"_blank\">jake@ashbyhq.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div id=\"m_-7811995203812677800689597f9-e2ea-41ba-fb10-2a37b7c7c85b\"><div id=\"m_-7811995203812677800hubspot-template-container\"><div>Hi Rick,</div><br><div>Hope this finds you well! I&#39;m on the Zoom link for our call today: <a href=\"https://ashbyhq.zoom.us/j/82623642495\" target=\"_blank\">https://ashbyhq.zoom.us/j/82623642495</a></div><br><div>Are you still able to join? I&#39;ll hang out here for another 5 minutes or so in case you&#39;re still able to make it. </div><br><div>If you need to reschedule, feel free to let me know a time that works best for you, or you&#39;re welcome to find a new time on <a href=\"https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JlF2-6qcW8wLKSR6lZ3n6N2RnhprWQSxfW8qH1xx3dLdnCW2BDnjY9bYYd8V2QTdl5PJYDyW5JJfKj2RvhVpN69y63tjMHFjW85cKQr7JzZY3W6jMFyG9jYsrjW5qcqM86ghKTQW6ZVK5P8WdT6SW5mVbDK4RJ-2WW6js3pr7LbtbgVCKwft9cW3bRW1tFlkW98GLGQW6lSLbK3V05xWW5fsz2_4KvyC7W3YJhFm5zn-tBW2D51rY7v3XXbW3cnXYS23HbjZW8491n38m-c5ZW48x8ZT5SrGt-W6DmZkL4qtDBqW4jpN597Q7LRFW8xwGj651YJ5KW4VnjZf5hyr0QW6NG4JW8RB4_2W1q8CJ48rK3SgW23S_Lw2zrG9fdKXmpT04\" target=\"_blank\">my calendar link here </a>at your convenience. </div><br><div>Best,</div><div>Jake</div></div></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><table style=\"font-size:13px;color:rgb(136,136,136);font-family:sans-serif;border:none;border-collapse:collapse\"><tbody><tr style=\"height:48pt\"><td style=\"border-right:0.75pt solid rgb(213,213,213);vertical-align:middle;padding:0pt 15pt 0pt 0pt\"><p dir=\"ltr\" style=\"text-align:center;line-height:1.38;margin-top:0pt;margin-bottom:0pt\"><font color=\"#000000\"><img alt=\"\"><img width=\"96\" height=\"31\" src=\"https://ci3.googleusercontent.com/mail-sig/AIorK4w8QGAbCRhtnIvIvK-dljfu1OmMjy86NGExCmelZoSt9IBLQv_7GvAIopij2C-hDYXlkPW2RDA\"><br></font></p></td><td style=\"border-left:0.75pt solid rgb(213,213,213);vertical-align:top;padding:0pt 0pt 0pt 15pt\"><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">Jake McLinden</font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">Account Executive</font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">774.277.1507 | <a href=\"https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/Jl22-6qcW7lCdLW6lZ3kTN7-l03RFtrJjW3JMWnd44Cd57W3-TJ874_vt--W82455n8HHlsKW2kjK3y6dR85YN2WSR5l3BwKLW84cBfz2fN-5FW7WCSXM28y4lCMVGptk3r60-W2B9pq36cJ8z5W2V_Gxq1K7BZNN2R2hs7WYjtxW5W2kY18RN-1LW1c6Zpx7ht9smW16njyC6ysnxxW3kbwWK3v6nr8W71d9WT3jl90qW5pcl0x3WRYDpW8ryGPh1gl-vMW2zywL43SbV2WW4STpnS43w9rpW81DJkf4-RjhGW1Ml3ty1BlyrdW9jl48396-kjqf8TRLZ204\" target=\"_blank\">LinkedIn</a></font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\"><a href=\"mailto:jake@ashby.com\" target=\"_blank\">jake@ashbyhq.com</a></font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\"><a href=\"http://www.ashbyhq.com/\" target=\"_blank\">www.ashbyhq.com</a></font></p></td></tr></tbody></table><div><br></div></div></div><div></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</div></div></blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><table style=\"font-size:13px;color:rgb(136,136,136);font-family:sans-serif;border:none;border-collapse:collapse\"><tbody><tr style=\"height:48pt\"><td style=\"border-right:0.75pt solid rgb(213,213,213);vertical-align:middle;padding:0pt 15pt 0pt 0pt\"><p dir=\"ltr\" style=\"text-align:center;line-height:1.38;margin-top:0pt;margin-bottom:0pt\"><font color=\"#000000\"><img alt=\"\"><img width=\"96\" height=\"31\" src=\"https://ci3.googleusercontent.com/mail-sig/AIorK4w8QGAbCRhtnIvIvK-dljfu1OmMjy86NGExCmelZoSt9IBLQv_7GvAIopij2C-hDYXlkPW2RDA\"><br></font></p></td><td style=\"border-left:0.75pt solid rgb(213,213,213);vertical-align:top;padding:0pt 0pt 0pt 15pt\"><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">Jake McLinden</font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">Account Executive</font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">774.277.1507 | <a href=\"https://www.linkedin.com/in/jacobmclinden/\" target=\"_blank\">LinkedIn</a></font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\"><a href=\"mailto:jake@ashby.com\" target=\"_blank\">jake@ashbyhq.com</a></font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\"><a href=\"http://www.ashbyhq.com/\" target=\"_blank\">www.ashbyhq.com</a></font></p></td></tr></tbody></table><div><br></div></div></div><img src=\"https://cBJBm04.na1.hs-sales-engage.com/Cto/ZS+23284/cBJBm04/R5R8b4bTZN6rhp1Z2fJvwW1Q3frB3GHJ55W1Sr16S1XmJGPW1GzJ_W3JF49FW3BPB_x1X1nK7W1N4F7J1W-W13n22XzNR4W1\" alt=\"\" height=\"1\" width=\"1\" style=\"display: none !important;\"><div></div></div>','No worries, Rick! Here\'s my calendar link if you\'d like to grab a new time:\r\nhttps://ashbyhq.chilipiper.com/reschedule/acbd1125-b12e-4c51-8ed5-f20df0c681f6\r\n\r\nI\'m OOO Mon-Weds next week but could meet tomorrow or towards the end of\r\nthe week as well.\r\n\r\nOn Thu, Jul 24, 2025 at 9:43 AM Rick <rick@mavrix.one> wrote:\r\n\r\n> Sorry the day got away from me…I’ll reschedule soon. Rick Rick Mislan, PhD\r\n> https://mavrix.one On July 24, 2025 at 9:06:14 AM, Jake McLinden (\r\n> jake@ashbyhq.com) wrote:  ‌  ‌  ‌  ‌  ‌  ‌  ‌  ‌  ‌  ‌  ‌  ‌  ‌  ‌  ‌  ‌\r\n>  ‌\r\n> External (rick@mavrix.one)\r\n>   Report This Email\r\n> <https://protection.inkyphishfence.com/report?id=YXNoYnlocS9qYWtlQGFzaGJ5aHEuY29tLzZmMzcwZDY4ZTY2MWE2NWE3NGQ4NzIwODIxZGVhZGRlLzE3NTMzNjQ1OTAuMjEzMDgyOA==#key=bef97a392ab15b7e518d4e458d299b24>\r\n>  FAQ <https://ashby.slab.com/posts/inky-email-security-3fs2m9ug>\r\n>\r\n> Sorry the day got away from me…I’ll reschedule soon.\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On July 24, 2025 at 9:06:14 AM, Jake McLinden (jake@ashbyhq.com) wrote:\r\n>\r\n> Hi Rick,\r\n>\r\n> Hope this finds you well! I\'m on the Zoom link for our call today:\r\n> https://ashbyhq.zoom.us/j/82623642495\r\n>\r\n> Are you still able to join? I\'ll hang out here for another 5 minutes or so\r\n> in case you\'re still able to make it.\r\n>\r\n> If you need to reschedule, feel free to let me know a time that works best\r\n> for you, or you\'re welcome to find a new time on my calendar link here\r\n> <https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JlF2-6qcW8wLKSR6lZ3n6N2RnhprWQSxfW8qH1xx3dLdnCW2BDnjY9bYYd8V2QTdl5PJYDyW5JJfKj2RvhVpN69y63tjMHFjW85cKQr7JzZY3W6jMFyG9jYsrjW5qcqM86ghKTQW6ZVK5P8WdT6SW5mVbDK4RJ-2WW6js3pr7LbtbgVCKwft9cW3bRW1tFlkW98GLGQW6lSLbK3V05xWW5fsz2_4KvyC7W3YJhFm5zn-tBW2D51rY7v3XXbW3cnXYS23HbjZW8491n38m-c5ZW48x8ZT5SrGt-W6DmZkL4qtDBqW4jpN597Q7LRFW8xwGj651YJ5KW4VnjZf5hyr0QW6NG4JW8RB4_2W1q8CJ48rK3SgW23S_Lw2zrG9fdKXmpT04>at\r\n> your convenience.\r\n>\r\n> Best,\r\n> Jake\r\n>\r\n>\r\n> --\r\n>\r\n>\r\n> Jake McLinden\r\n>\r\n> Account Executive\r\n>\r\n> 774.277.1507 | LinkedIn\r\n> <https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/Jl22-6qcW7lCdLW6lZ3kTN7-l03RFtrJjW3JMWnd44Cd57W3-TJ874_vt--W82455n8HHlsKW2kjK3y6dR85YN2WSR5l3BwKLW84cBfz2fN-5FW7WCSXM28y4lCMVGptk3r60-W2B9pq36cJ8z5W2V_Gxq1K7BZNN2R2hs7WYjtxW5W2kY18RN-1LW1c6Zpx7ht9smW16njyC6ysnxxW3kbwWK3v6nr8W71d9WT3jl90qW5pcl0x3WRYDpW8ryGPh1gl-vMW2zywL43SbV2WW4STpnS43w9rpW81DJkf4-RjhGW1Ml3ty1BlyrdW9jl48396-kjqf8TRLZ204>\r\n>\r\n> jake@ashbyhq.com <jake@ashby.com>\r\n>\r\n> www.ashbyhq.com\r\n>\r\n>\r\n\r\n-- \r\n\r\n\r\nJake McLinden\r\n\r\nAccount Executive\r\n\r\n774.277.1507 | LinkedIn <https://www.linkedin.com/in/jacobmclinden/>\r\n\r\njake@ashbyhq.com <jake@ashby.com>\r\n\r\nwww.ashbyhq.com',0,0,0,0,0,0,'2025-07-24 13:51:20','2025-12-09 19:17:32','2025-12-09 19:17:32','2025-12-09 19:17:32',NULL,NULL,NULL),
(508,4,'<CANZ1scsGtKnFHHt=mYqXt9QOwtC4j-ktNw0cLQC=TfoAnudzPQ@mail.gmail.com>',NULL,NULL,'Rescheduling your Ashby meeting','jake@ashbyhq.com','Jake McLinden','<html><head></head><body><div>\r\n   Hey Rick​,\r\n  </div>\r\n  <br>\r\n  <div>\r\n   It looks like we missed each other! No worries, I understand schedules can get hectic and things can come up.\r\n  </div>\r\n  <br>\r\n  <div>\r\n   If you&#39;re still interested, please grab a time on \r\n   <a href=\"https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3n_W58Vxqz1Yd48wN6cZ1TGKgyq5W1zK1-z99LfS3W1my8T_979xJ9W1X-B9y7YbKhNW4bmP2C2cvfJpW1r1v_L6JZCPCW8-z6734L6rhHW5nKzT344-Xn-W4H2_xJ3sFPh3W3tmSLg8fpcKnW2ZqwND6Rn5VWW98pllR7Fp4gtW664Zth1SXSVxW64d5jd621cpgW27yKlX3fwPllW2Px6Jq1zFh1kW8Pnt083y5R_fV52R6c4fhPmnW190RZk4BYc_SN99stcwnDcs2W42RPYc8xBJP8f81p-Yx04\">my calendar here</a> or let me know a time or two that would work well for you.\r\n  </div>\r\n  <br>\r\n  <div>\r\n   Looking forward to connecting!\r\n  </div>\r\n  <div>\r\n   Jake​\r\n  </div>\r\n  <div>\r\n   <div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\">\r\n    <div dir=\"ltr\">\r\n     <table style=\"font-size:13px;color:rgb(136,136,136);font-family:sans-serif;border:none;border-collapse:collapse\">\r\n      <tbody>\r\n       <tr style=\"height:48pt\">\r\n        <td style=\"border-right:0.75pt solid rgb(213,213,213);vertical-align:middle;padding:0pt 15pt 0pt 0pt\"><p dir=\"ltr\" style=\"text-align:center;line-height:1.38;margin-top:0pt;margin-bottom:0pt\"><font color=\"#000000\"><img alt=\"\"><img width=\"96\" height=\"31\" src=\"cid:6c38d966cbcebfbe09553b99d74f75be\"><br></font></p></td>\r\n        <td style=\"border-left:0.75pt solid rgb(213,213,213);vertical-align:top;padding:0pt 0pt 0pt 15pt\"><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">Jake McLinden</font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">Account Executive</font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">774.277.1507 | <a href=\"https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3mlW9g7Dfl2lC0RCVTZ4VB9jHRqKW3Bj0-959lLKyW6Rtl4Y3lkx3xVVWgXn5lXtg3W9hG4DG6kzTXxW41xsxX1ybzxjW5Jxz672-5vtCW7DF9S25p62n9W1C3rKb8T22cHW6WZzZG1Sq33WW1kSTHV3xV5xgW49qFqJ2bYpHbW7gXYqk1sCzPwF85CRT8vLTPW7-jhK02vB0BtW4fdhBT4VSr2FVxkddc37dRSXVqx4x22B8Xp3W8JXTTY9gCNrrN7Hsc6Nvq3DQW4m8LNb222jTzf70nRR804\" target=\"_blank\">LinkedIn</a></font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\"><a href=\"https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JlY2-6qcW95jsWP6lZ3nSW7wVxGQ7m556bW23RqPx2YHnXvN2QWSvZTksZ4W5J4yqB6dnsYFW7FsP8V7Hv4G8W8zTWJn8zrz2dW4jnXrs8XZWlcN1ByDb1c7xN3W4ymkdC1NC1RzW6sQwdF1QWnp7W8lSsnb14C7GSN5C7rMNbjMxnW4fwwkJ2XxR_ZV4Jrfd4FPV-mW8W1Lwg4gw5p6W1Nnqn25ln2dQV5K28r82tcBrW4DW53L4rkXhHW970DD58mkkfnW8slXmS8nQkYyW6H_SFV7p0T_PW4HZ9th6CPx3lVp_2_M3cy1xLW37M88m5ZrND6N4Ppw-d9LGFqW7ClXz63vSBLDW3_8ffB518PngW1G4hP28Tc5VvVzwC-73TJ0fNW2Rgkdz1C_rGyd28VkT04\" target=\"_blank\">Book a Meeting</a></font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\"><a href=\"http://www.ashbyhq.com/\" target=\"_blank\">www.ashbyhq.com</a></font></p></td>\r\n       </tr>\r\n      </tbody>\r\n     </table>\r\n    </div>\r\n   </div>\r\n  </div>\r\n \r\n<img width=\"1\" height=\"1\" style=\"display:none\" alt=\"\" src=\"https://cBJBm04.na1.hs-sales-engage.com/Cto/ZS+23284/cBJBm04/R5S8b4bTZN6rhp1Z2d1pJW1-ZGc01Y_9QPW3yQFb91ZlfJkW1S57fg1Q44ynW1N6mLb1XnVjQW1W-W1322XzNXVhPQ_r7Xpnvd0\"></body></html>',' Hey Rick​,\r\n\r\nIt looks like we missed each other! No worries, I understand schedules can\r\nget hectic and things can come up.\r\n\r\nIf you\'re still interested, please grab a time on my calendar here\r\n<https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3n_W58Vxqz1Yd48wN6cZ1TGKgyq5W1zK1-z99LfS3W1my8T_979xJ9W1X-B9y7YbKhNW4bmP2C2cvfJpW1r1v_L6JZCPCW8-z6734L6rhHW5nKzT344-Xn-W4H2_xJ3sFPh3W3tmSLg8fpcKnW2ZqwND6Rn5VWW98pllR7Fp4gtW664Zth1SXSVxW64d5jd621cpgW27yKlX3fwPllW2Px6Jq1zFh1kW8Pnt083y5R_fV52R6c4fhPmnW190RZk4BYc_SN99stcwnDcs2W42RPYc8xBJP8f81p-Yx04>\r\nor let me know a time or two that would work well for you.\r\n\r\nLooking forward to connecting!\r\nJake​\r\n\r\n\r\nJake McLinden\r\n\r\nAccount Executive\r\n\r\n774.277.1507 | LinkedIn\r\n<https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3mlW9g7Dfl2lC0RCVTZ4VB9jHRqKW3Bj0-959lLKyW6Rtl4Y3lkx3xVVWgXn5lXtg3W9hG4DG6kzTXxW41xsxX1ybzxjW5Jxz672-5vtCW7DF9S25p62n9W1C3rKb8T22cHW6WZzZG1Sq33WW1kSTHV3xV5xgW49qFqJ2bYpHbW7gXYqk1sCzPwF85CRT8vLTPW7-jhK02vB0BtW4fdhBT4VSr2FVxkddc37dRSXVqx4x22B8Xp3W8JXTTY9gCNrrN7Hsc6Nvq3DQW4m8LNb222jTzf70nRR804>\r\n\r\nBook a Meeting\r\n<https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JlY2-6qcW95jsWP6lZ3nSW7wVxGQ7m556bW23RqPx2YHnXvN2QWSvZTksZ4W5J4yqB6dnsYFW7FsP8V7Hv4G8W8zTWJn8zrz2dW4jnXrs8XZWlcN1ByDb1c7xN3W4ymkdC1NC1RzW6sQwdF1QWnp7W8lSsnb14C7GSN5C7rMNbjMxnW4fwwkJ2XxR_ZV4Jrfd4FPV-mW8W1Lwg4gw5p6W1Nnqn25ln2dQV5K28r82tcBrW4DW53L4rkXhHW970DD58mkkfnW8slXmS8nQkYyW6H_SFV7p0T_PW4HZ9th6CPx3lVp_2_M3cy1xLW37M88m5ZrND6N4Ppw-d9LGFqW7ClXz63vSBLDW3_8ffB518PngW1G4hP28Tc5VvVzwC-73TJ0fNW2Rgkdz1C_rGyd28VkT04>\r\n\r\nwww.ashbyhq.com',0,0,0,0,0,0,'2025-07-24 14:10:53','2025-12-09 19:17:33','2025-12-09 19:17:33','2025-12-09 19:17:33',NULL,NULL,NULL),
(509,4,' <PH3PPFCA48BBAFBC11C1C332BA3D3C97924CA5EA@PH3PPFCA48BBAFB.namprd22.prod.outlook.com>',NULL,NULL,'RE: DragonPlate Contact','bdorsch@allredcorp.com','Billy Dorsch','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon0, li.airmailon0, div.airmailon0\r\n	{mso-style-name:airmailon;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle21\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;\r\n	font-weight:normal;\r\n	font-style:normal;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Good morning Rick, <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><br>\r\nMy apologies for the communication delay. We had a very large project that is wrapping up this week, which became an all-hands-on-deck situation at&nbsp;the beginning of the week. JB and I are meeting this afternoon to discuss my notes from your original call&nbsp;to\r\n me. <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">From the chart below with the thicknesses and sizes, are you looking for high-volume pricing?\r\n<br>\r\n<br>\r\nIf there is anything else outside of what we talked about that you would like me to discuss in my meeting, let me know, and I will be happy to do so. I will be sure to follow up with you once I am done meeting with JB.\r\n<br>\r\n<br>\r\nAll the best, <br>\r\nBilly <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Thursday, July 24, 2025 7:05 AM<br>\r\n<b>To:</b> Billy Dorsch &lt;bdorsch@allredcorp.com&gt;<br>\r\n<b>Subject:</b> RE: DragonPlate Contact<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"background:#FFCCDD\"><b><span style=\"font-family:&quot;Helvetica&quot;,sans-serif;color:black\">EXTERNAL EMAIL:</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Be cautious with links and attachments.</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Here’s what I’ve pulled from your website…<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Can you help with these prices?<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img width=\"1120\" height=\"272\" style=\"width:11.6666in;height:2.8333in\" id=\"_x0000_i1029\" src=\"cid:image001.png@01DBFC90.F3106630\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<div id=\"bloop_sign_1753355068585249792\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" id=\"_x0000_i1028\" src=\"file://Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"airmailon\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">On July 16, 2025 at 11:36:45 AM, Billy Dorsch (<a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Rick,\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">You are very welcome. I am meeting with JB this afternoon to discuss&nbsp;this; he’s had a lot of things to catch up\r\n on Monday and Tuesday. I will reach out after he and I connect on the&nbsp;next steps.\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><br>\r\nEnjoy Miami! Safe travels, and I will be in touch later today. <br>\r\n<br>\r\nThanks, <br>\r\nBilly </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, July 16, 2025 7:41 AM<br>\r\n<b>To:</b> Billy Dorsch &lt;<a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>&gt;<br>\r\n<b>Subject:</b> Re: DragonPlate Contact</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;background:#FFCCDD\">\r\n<b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">EXTERNAL EMAIL:</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Be cautious with links and attachments.</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Billy - thanks for the update.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I was traveling a bit this week (in Miami today).<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Could you please provide an update on this?<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks!<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick<o:p></o:p></span></p>\r\n<div id=\"bloop_sign_1752666009672701952\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" id=\"_x0000_i1027\" src=\"file://Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"airmailon0\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">On July 11, 2025 at 11:16:54 AM, Billy Dorsch (<a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Rick,\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I\'m sorry for not getting this email out sooner. I just wanted to update you on the status of your request. I pinged\r\n the team yesterday, and today I see that a few of the folks I wanted to talk to aren’t in the office today. I have emailed our founder/president, JB Allred, to see his schedule for next week so we can arrange a call to discuss. I will let you know as soon\r\n as I hear from JB, who oversees our Engineering team. I don’t want too much time to pass, so I hope we can schedule something for early next week.\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">There is a chance I may not hear from JB until Monday morning, as he is currently out of the office today. Let\r\n me know if you have any open availability early next week, and I can bounce those off JB so we can sync up.\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks again, Rick. I look forward to your feedback and connecting with you next week!</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Best,</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Billy Dorsch\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Sales, Allred &amp; Associates</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>&nbsp;&nbsp; &nbsp;(315) 612-3876&nbsp; &nbsp;<a href=\"http://www.allredcorp.com/\">www.allredcorp.com</a></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">321 NY Rt. 5 Elbridge, NY 13060, USA</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"103\" height=\"78\" style=\"width:1.0729in;height:.8125in\" id=\"Picture_x0020_1\" src=\"cid:image002.jpg@01DBFC90.F3106630\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<img border=\"0\" width=\"82\" height=\"79\" style=\"width:.8541in;height:.8229in\" id=\"Picture_x0020_2\" src=\"cid:image003.jpg@01DBFC90.F3106630\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><br>\r\n<br>\r\n<br>\r\n<br>\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Good morning Rick,\r\n\r\nMy apologies for the communication delay. We had a very large project that is wrapping up this week, which became an all-hands-on-deck situation at the beginning of the week. JB and I are meeting this afternoon to discuss my notes from your original call to me.\r\n\r\nFrom the chart below with the thicknesses and sizes, are you looking for high-volume pricing?\r\n\r\nIf there is anything else outside of what we talked about that you would like me to discuss in my meeting, let me know, and I will be happy to do so. I will be sure to follow up with you once I am done meeting with JB.\r\n\r\nAll the best,\r\nBilly\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Thursday, July 24, 2025 7:05 AM\r\nTo: Billy Dorsch <bdorsch@allredcorp.com>\r\nSubject: RE: DragonPlate Contact\r\n\r\nEXTERNAL EMAIL:Be cautious with links and attachments.\r\n\r\nHere’s what I’ve pulled from your website…\r\nCan you help with these prices?\r\n\r\n[cid:image001.png@01DBFC90.F3106630]\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn July 16, 2025 at 11:36:45 AM, Billy Dorsch (bdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>) wrote:\r\nHi Rick,\r\n\r\nYou are very welcome. I am meeting with JB this afternoon to discuss this; he’s had a lot of things to catch up on Monday and Tuesday. I will reach out after he and I connect on the next steps.\r\n\r\nEnjoy Miami! Safe travels, and I will be in touch later today.\r\n\r\nThanks,\r\nBilly\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Wednesday, July 16, 2025 7:41 AM\r\nTo: Billy Dorsch <bdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>>\r\nSubject: Re: DragonPlate Contact\r\n\r\nEXTERNAL EMAIL:Be cautious with links and attachments.\r\n\r\nHi Billy - thanks for the update.\r\nI was traveling a bit this week (in Miami today).\r\nCould you please provide an update on this?\r\nThanks!\r\nRick\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn July 11, 2025 at 11:16:54 AM, Billy Dorsch (bdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>) wrote:\r\nHi Rick,\r\n\r\nI\'m sorry for not getting this email out sooner. I just wanted to update you on the status of your request. I pinged the team yesterday, and today I see that a few of the folks I wanted to talk to aren’t in the office today. I have emailed our founder/president, JB Allred, to see his schedule for next week so we can arrange a call to discuss. I will let you know as soon as I hear from JB, who oversees our Engineering team. I don’t want too much time to pass, so I hope we can schedule something for early next week.\r\n\r\nThere is a chance I may not hear from JB until Monday morning, as he is currently out of the office today. Let me know if you have any open availability early next week, and I can bounce those off JB so we can sync up.\r\n\r\nThanks again, Rick. I look forward to your feedback and connecting with you next week!\r\n\r\nBest,\r\n\r\nBilly Dorsch\r\nSales, Allred & Associates\r\nbdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>    (315) 612-3876   www.allredcorp.com<http://www.allredcorp.com/>\r\n321 NY Rt. 5 Elbridge, NY 13060, USA\r\n[cid:image002.jpg@01DBFC90.F3106630] [cid:image003.jpg@01DBFC90.F3106630]\r\n\r\n\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-07-24 15:51:50','2025-12-09 19:17:33','2025-12-09 19:17:33','2025-12-09 19:17:33',NULL,NULL,NULL),
(510,4,'<CAGgBgfAN5T-D_ssLxFqtN_w9S4GRWVym8LHOq7ssx6EHg87n+w@mail.gmail.com>',NULL,NULL,'Status Update (07/24/25 1540)','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">Rick:</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">I&#39;m out of room for connectors on that little board, but I have 2 other features I&#39;m trying to squeeze in -- GPS lock and RSSI (analog).</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">We currently have 6 pages of schematics sketched out for the board:</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><img src=\"cid:ii_mdhsq2003\" alt=\"KS-FCC-F722-0A_072425_1522.png\" width=\"925\" height=\"597\" style=\"margin-right: 0px;\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">We also have a layout in progress:</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><img src=\"cid:ii_mdhsc87p1\" alt=\"image.png\" width=\"924\" height=\"726\" style=\"margin-right: 0px;\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">I just have to figure out how to fit the rest of that stuff around the board, or figure out how to live without some of it.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div></div><div class=\"gmail_default\" style=\"font-size:small\">How soon before your assembly house is set up?</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">I&#39;m learning a lot about the industry, especially about where certain parts are made and what hurdles we&#39;ll encounter.  I found an approach we can take with some American parts, but there are certain areas where China just kicks our ass.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Call, send money, send a carrier pigeon, anything...  By which I mean I&#39;m curious as to how you made out with the investors.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">I both do and don&#39;t want to know who is providing the money.  I&#39;m only curious because that would tell us a lot about who we&#39;d be selling to.  A national military, NATO, residential, commercial, the cartel...</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><span style=\"font-family:&quot;courier new&quot;,monospace\">Regards,</span><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div dir=\"ltr\"><div><font face=\"courier new, monospace\">Thomas Pownall</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">CADX Services, Inc.</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Tel: 585-624-1491 X101</font></div><div><font face=\"courier new, monospace\">Fax: 585-582-1101</font></div><div><font face=\"courier new, monospace\">E-Mail: <a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a></font></div><div><font face=\"courier new, monospace\">Web: <a href=\"http://www.cadxservices.com\" target=\"_blank\">http://www.cadxservices.com</a></font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\">**************** Confidentiality Statement ****************</font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Privileged/Confidential Information may be contained in this</font></div><div><font face=\"courier new, monospace\">message. If you are not the addressee indicated in this message</font></div><div><font face=\"courier new, monospace\">(or responsible for delivery of the message to such person),</font></div><div><font face=\"courier new, monospace\">you may not copy or deliver this message to anyone. In such</font></div><div><font face=\"courier new, monospace\">case, you should destroy this message, and notify us</font></div><div><font face=\"courier new, monospace\">immediately. If you or your employer does not consent to</font></div><div><font face=\"courier new, monospace\">Internet email messages of this kind, please advise us</font></div><div><font face=\"courier new, monospace\">immediately. Opinions, conclusions and other information</font></div><div><font face=\"courier new, monospace\">expressed in this message are not given or endorsed by my firm</font></div><div><font face=\"courier new, monospace\">or employer unless otherwise indicated by an authorized</font></div><div><font face=\"courier new, monospace\">representative independent of this message.</font></div></div></div></div></div></div>','Rick:\r\n\r\nI\'m out of room for connectors on that little board, but I have 2 other\r\nfeatures I\'m trying to squeeze in -- GPS lock and RSSI (analog).\r\n\r\nWe currently have 6 pages of schematics sketched out for the board:\r\n\r\n[image: KS-FCC-F722-0A_072425_1522.png]\r\n\r\nWe also have a layout in progress:\r\n\r\n[image: image.png]\r\n\r\nI just have to figure out how to fit the rest of that stuff around the\r\nboard, or figure out how to live without some of it.\r\n\r\nHow soon before your assembly house is set up?\r\n\r\nI\'m learning a lot about the industry, especially about where certain parts\r\nare made and what hurdles we\'ll encounter.  I found an approach we can take\r\nwith some American parts, but there are certain areas where China just\r\nkicks our ass.\r\n\r\nCall, send money, send a carrier pigeon, anything...  By which I mean I\'m\r\ncurious as to how you made out with the investors.\r\n\r\nI both do and don\'t want to know who is providing the money.  I\'m only\r\ncurious because that would tell us a lot about who we\'d be selling to.  A\r\nnational military, NATO, residential, commercial, the cartel...\r\n\r\nRegards,\r\nThomas Pownall\r\n\r\nCADX Services, Inc.\r\n\r\nTel: 585-624-1491 X101\r\nFax: 585-582-1101\r\nE-Mail: tpownall@cadxservices.com\r\nWeb: http://www.cadxservices.com\r\n\r\n***********************************************************\r\n**************** Confidentiality Statement ****************\r\n***********************************************************\r\n\r\nPrivileged/Confidential Information may be contained in this\r\nmessage. If you are not the addressee indicated in this message\r\n(or responsible for delivery of the message to such person),\r\nyou may not copy or deliver this message to anyone. In such\r\ncase, you should destroy this message, and notify us\r\nimmediately. If you or your employer does not consent to\r\nInternet email messages of this kind, please advise us\r\nimmediately. Opinions, conclusions and other information\r\nexpressed in this message are not given or endorsed by my firm\r\nor employer unless otherwise indicated by an authorized\r\nrepresentative independent of this message.',0,0,0,0,0,0,'2025-07-24 19:40:42','2025-12-09 19:17:34','2025-12-09 19:17:34','2025-12-09 19:17:34',NULL,NULL,NULL),
(511,4,'<PH3PPFCA48BBAFBE1894675597DA70FD39CCA5EA@PH3PPFCA48BBAFB.namprd22.prod.outlook.com>',NULL,NULL,'RE: DragonPlate Contact','bdorsch@allredcorp.com','Billy Dorsch','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon0, li.airmailon0, div.airmailon0\r\n	{mso-style-name:airmailon;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle21\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;\r\n	font-weight:normal;\r\n	font-style:normal;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Hi Rick, <br>\r\n<br>\r\nThis is a quick update to keep you in the loop. I will be meeting with JB in the EOD meeting today. I got bumped from an earlier time slot for a pressing matter. I will still be following up; I just didn’t want to go too long without updating you.\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><br>\r\nThank you, <br>\r\nBilly <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Thursday, July 24, 2025 7:05 AM<br>\r\n<b>To:</b> Billy Dorsch &lt;bdorsch@allredcorp.com&gt;<br>\r\n<b>Subject:</b> RE: DragonPlate Contact<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"background:#FFCCDD\"><b><span style=\"font-family:&quot;Helvetica&quot;,sans-serif;color:black\">EXTERNAL EMAIL:</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Be cautious with links and attachments.</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Here’s what I’ve pulled from your website…<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Can you help with these prices?<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img width=\"1120\" height=\"272\" style=\"width:11.6666in;height:2.8333in\" id=\"_x0000_i1029\" src=\"cid:image001.png@01DBFCB4.3EE6AF60\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<div id=\"bloop_sign_1753355068585249792\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" id=\"_x0000_i1028\" src=\"file://Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"airmailon\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">On July 16, 2025 at 11:36:45 AM, Billy Dorsch (<a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Rick,\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">You are very welcome. I am meeting with JB this afternoon to discuss&nbsp;this; he’s had a lot of things to catch up\r\n on Monday and Tuesday. I will reach out after he and I connect on the&nbsp;next steps.\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><br>\r\nEnjoy Miami! Safe travels, and I will be in touch later today. <br>\r\n<br>\r\nThanks, <br>\r\nBilly </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, July 16, 2025 7:41 AM<br>\r\n<b>To:</b> Billy Dorsch &lt;<a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>&gt;<br>\r\n<b>Subject:</b> Re: DragonPlate Contact</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;background:#FFCCDD\">\r\n<b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">EXTERNAL EMAIL:</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Be cautious with links and attachments.</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Billy - thanks for the update.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I was traveling a bit this week (in Miami today).<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Could you please provide an update on this?<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks!<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick<o:p></o:p></span></p>\r\n<div id=\"bloop_sign_1752666009672701952\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" id=\"_x0000_i1027\" src=\"file://Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"airmailon0\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">On July 11, 2025 at 11:16:54 AM, Billy Dorsch (<a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Rick,\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I\'m sorry for not getting this email out sooner. I just wanted to update you on the status of your request. I pinged\r\n the team yesterday, and today I see that a few of the folks I wanted to talk to aren’t in the office today. I have emailed our founder/president, JB Allred, to see his schedule for next week so we can arrange a call to discuss. I will let you know as soon\r\n as I hear from JB, who oversees our Engineering team. I don’t want too much time to pass, so I hope we can schedule something for early next week.\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">There is a chance I may not hear from JB until Monday morning, as he is currently out of the office today. Let\r\n me know if you have any open availability early next week, and I can bounce those off JB so we can sync up.\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks again, Rick. I look forward to your feedback and connecting with you next week!</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Best,</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Billy Dorsch\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Sales, Allred &amp; Associates</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>&nbsp;&nbsp; &nbsp;(315) 612-3876&nbsp; &nbsp;<a href=\"http://www.allredcorp.com/\">www.allredcorp.com</a></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">321 NY Rt. 5 Elbridge, NY 13060, USA</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"103\" height=\"78\" style=\"width:1.0729in;height:.8125in\" id=\"Picture_x0020_1\" src=\"cid:image002.jpg@01DBFCB4.3EE6AF60\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<img border=\"0\" width=\"82\" height=\"79\" style=\"width:.8541in;height:.8229in\" id=\"Picture_x0020_2\" src=\"cid:image003.jpg@01DBFCB4.3EE6AF60\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><br>\r\n<br>\r\n<br>\r\n<br>\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Hi Rick,\r\n\r\nThis is a quick update to keep you in the loop. I will be meeting with JB in the EOD meeting today. I got bumped from an earlier time slot for a pressing matter. I will still be following up; I just didn’t want to go too long without updating you.\r\n\r\nThank you,\r\nBilly\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Thursday, July 24, 2025 7:05 AM\r\nTo: Billy Dorsch <bdorsch@allredcorp.com>\r\nSubject: RE: DragonPlate Contact\r\n\r\nEXTERNAL EMAIL:Be cautious with links and attachments.\r\n\r\nHere’s what I’ve pulled from your website…\r\nCan you help with these prices?\r\n\r\n[cid:image001.png@01DBFCB4.3EE6AF60]\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn July 16, 2025 at 11:36:45 AM, Billy Dorsch (bdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>) wrote:\r\nHi Rick,\r\n\r\nYou are very welcome. I am meeting with JB this afternoon to discuss this; he’s had a lot of things to catch up on Monday and Tuesday. I will reach out after he and I connect on the next steps.\r\n\r\nEnjoy Miami! Safe travels, and I will be in touch later today.\r\n\r\nThanks,\r\nBilly\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Wednesday, July 16, 2025 7:41 AM\r\nTo: Billy Dorsch <bdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>>\r\nSubject: Re: DragonPlate Contact\r\n\r\nEXTERNAL EMAIL:Be cautious with links and attachments.\r\n\r\nHi Billy - thanks for the update.\r\nI was traveling a bit this week (in Miami today).\r\nCould you please provide an update on this?\r\nThanks!\r\nRick\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn July 11, 2025 at 11:16:54 AM, Billy Dorsch (bdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>) wrote:\r\nHi Rick,\r\n\r\nI\'m sorry for not getting this email out sooner. I just wanted to update you on the status of your request. I pinged the team yesterday, and today I see that a few of the folks I wanted to talk to aren’t in the office today. I have emailed our founder/president, JB Allred, to see his schedule for next week so we can arrange a call to discuss. I will let you know as soon as I hear from JB, who oversees our Engineering team. I don’t want too much time to pass, so I hope we can schedule something for early next week.\r\n\r\nThere is a chance I may not hear from JB until Monday morning, as he is currently out of the office today. Let me know if you have any open availability early next week, and I can bounce those off JB so we can sync up.\r\n\r\nThanks again, Rick. I look forward to your feedback and connecting with you next week!\r\n\r\nBest,\r\n\r\nBilly Dorsch\r\nSales, Allred & Associates\r\nbdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>    (315) 612-3876   www.allredcorp.com<http://www.allredcorp.com/>\r\n321 NY Rt. 5 Elbridge, NY 13060, USA\r\n[cid:image002.jpg@01DBFCB4.3EE6AF60] [cid:image003.jpg@01DBFCB4.3EE6AF60]\r\n\r\n\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-07-24 20:01:43','2025-12-09 19:17:34','2025-12-09 19:17:34','2025-12-09 19:17:34',NULL,NULL,NULL),
(512,4,' <CYYPR22MB4364062304E50BFA17024592A059A@CYYPR22MB4364.namprd22.prod.outlook.com>',NULL,NULL,'Follow-up on Contractor for Facility Construction','andrew@achramlabs.com','\"andrew@achramlabs.com\"','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nHey Rick,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nGreat meeting with you and the Mavrix team yesterday — Rich and I are both excited about what you\'re building and what Achram could do to help you exceed expectations as things move forward.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nAt the end of our conversation, you mentioned the frustration of finding a contractor able to align with your timeline constraints. I reached out to a connection of mine (seasoned general contractor, owner of concrete construction company). He has worked large-scale\r\n projects at Tampa International Airport, various hotels, and multi-story condominiums, etc., and has the network and resources to manage and coordinate all aspects of the project as well (site prep to finish-out).</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nAlthough he has other jobs on the books, he told me he could be willing to shift or even cancel some of them in order to prioritize your project and help move things forward quickly.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nIf you are interested, I can put you in touch directly or you can send over your construction plans so he can review the scope and provide preliminary pricing and potential timeline.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nLet me know how you\'d like to move forward.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nBest,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nAndrew Reynolds</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nAchram Labs, LLC</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n(813) 748-1414</div>\r\n</body>\r\n</html>','Hey Rick,\r\n\r\nGreat meeting with you and the Mavrix team yesterday — Rich and I are both excited about what you\'re building and what Achram could do to help you exceed expectations as things move forward.\r\n\r\nAt the end of our conversation, you mentioned the frustration of finding a contractor able to align with your timeline constraints. I reached out to a connection of mine (seasoned general contractor, owner of concrete construction company). He has worked large-scale projects at Tampa International Airport, various hotels, and multi-story condominiums, etc., and has the network and resources to manage and coordinate all aspects of the project as well (site prep to finish-out).\r\n\r\nAlthough he has other jobs on the books, he told me he could be willing to shift or even cancel some of them in order to prioritize your project and help move things forward quickly.\r\n\r\nIf you are interested, I can put you in touch directly or you can send over your construction plans so he can review the scope and provide preliminary pricing and potential timeline.\r\n\r\nLet me know how you\'d like to move forward.\r\n\r\nBest,\r\n\r\nAndrew Reynolds\r\nAchram Labs, LLC\r\n(813) 748-1414',0,0,0,0,0,0,'2025-07-25 13:58:50','2025-12-09 19:17:35','2025-12-09 19:17:35','2025-12-09 19:17:35',NULL,NULL,NULL),
(513,4,'<317qp153KLeuI1aovZJAu-9eYVqZVofd6VoT456Dpl_baeIxA20cehKeZ6neidRqtYRPskQ7iexB_IktEHv_ui-oTwYmMwubj5RPouUHcAI=@protonmail.com>',NULL,NULL,'=?utf-8?Q?Re:_Some_NDAs=E2=80=A6?=','kdlaponte@protonmail.com','KDL Aponte','--b2=_CCS8Eq0C2Mo9WKIaTDw6OqqW8cExX8XicT8CMC5mOo\r\nContent-Type: text/html; charset=utf-8\r\nContent-Transfer-Encoding: base64\r\n\r\nPGRpdiBzdHlsZT0iZm9udC1mYW1pbHk6IEFyaWFsLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE0\r\ncHg7Ij5IaSBSaWNrLDwvZGl2PjxkaXYgc3R5bGU9ImZvbnQtZmFtaWx5OiBBcmlhbCwgc2Fucy1z\r\nZXJpZjsgZm9udC1zaXplOiAxNHB4OyI+PGJyPjwvZGl2PjxkaXYgc3R5bGU9ImZvbnQtZmFtaWx5\r\nOiBBcmlhbCwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNHB4OyI+VGhhbmtzIGFnYWluIGZvciBz\r\nZW5kaW5nIHRoZXNlIG92ZXIuIERvIHlvdSBoYXBwZW4gdG8gaGF2ZSBhIFdvcmQgdmVyc2lvbiBz\r\nbyBJIGNhbiBzZW5kIGl0IHRvIGFsbCB0aGUgb3RoZXIgcGFydGllcyBpbnZvbHZlZD8gUGxlYXNl\r\nIGxldCBtZSBrbm93LCB0aGFua3MhPC9kaXY+PGRpdiBzdHlsZT0iZm9udC1mYW1pbHk6IEFyaWFs\r\nLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE0cHg7Ij48YnI+PC9kaXY+PGRpdiBzdHlsZT0iZm9u\r\ndC1mYW1pbHk6IEFyaWFsLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE0cHg7Ij5CZXN0IHJlZ2Fy\r\nZHMsPC9kaXY+PGRpdiBzdHlsZT0iZm9udC1mYW1pbHk6IEFyaWFsLCBzYW5zLXNlcmlmOyBmb250\r\nLXNpemU6IDE0cHg7Ij5LYXR5PC9kaXY+PGRpdiBzdHlsZT0iZm9udC1mYW1pbHk6IEFyaWFsLCBz\r\nYW5zLXNlcmlmOyBmb250LXNpemU6IDE0cHg7Ij48YnI+PC9kaXY+PGRpdiBzdHlsZT0iZm9udC1m\r\nYW1pbHk6IEFyaWFsLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE0cHg7Ij5QUyAtIFRoYW5rcyBm\r\nb3IgdGhlIGluc2lnaHQgYW5kIHRoZSBvcHBvcnR1bml0eS4gVGhpcyBpcyBnb2luZyB0byBiZSBh\r\nIGZ1biBvbmUhPC9kaXY+PGRpdiBzdHlsZT0iZm9udC1mYW1pbHk6IEFyaWFsLCBzYW5zLXNlcmlm\r\nOyBmb250LXNpemU6IDE0cHg7Ij48YnI+PC9kaXY+DQo8ZGl2IHN0eWxlPSJmb250LWZhbWlseTog\r\nQXJpYWwsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTRweDsiIGNsYXNzPSJwcm90b25tYWlsX3Np\r\nZ25hdHVyZV9ibG9jayI+DQogICAgPGRpdiBjbGFzcz0icHJvdG9ubWFpbF9zaWduYXR1cmVfYmxv\r\nY2stdXNlciBwcm90b25tYWlsX3NpZ25hdHVyZV9ibG9jay1lbXB0eSI+DQogICAgICAgIA0KICAg\r\nICAgICAgICAgPC9kaXY+DQogICAgDQogICAgICAgICAgICA8ZGl2IGNsYXNzPSJwcm90b25tYWls\r\nX3NpZ25hdHVyZV9ibG9jay1wcm90b24iPg0KICAgICAgICBTZW50IHdpdGggPGEgaHJlZj0iaHR0\r\ncHM6Ly9wcm90b24ubWUvbWFpbC9ob21lIiB0YXJnZXQ9Il9ibGFuayI+UHJvdG9uIE1haWw8L2E+\r\nIHNlY3VyZSBlbWFpbC4NCiAgICA8L2Rpdj4NCjwvZGl2Pg0KPGRpdiBzdHlsZT0iZm9udC1mYW1p\r\nbHk6IEFyaWFsLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE0cHg7Ij48YnI+PC9kaXY+PGRpdiBj\r\nbGFzcz0icHJvdG9ubWFpbF9xdW90ZSI+DQogICAgICAgIE9uIEZyaWRheSwgSnVseSAyNXRoLCAy\r\nMDI1IGF0IDE6MDggUE0sIFJpY2sgJmx0O3JpY2tAbWF2cml4Lm9uZSZndDsgd3JvdGU6PGJyPg0K\r\nICAgICAgICA8YmxvY2txdW90ZSBjbGFzcz0icHJvdG9ubWFpbF9xdW90ZSIgdHlwZT0iY2l0ZSI+\r\nDQogICAgICAgICAgICANCiAgICA8ZGl2IGlkPSJibG9vcF9jdXN0b21mb250IiBzdHlsZT0iZm9u\r\ndC1mYW1pbHk6SGVsdmV0aWNhLEFyaWFsO2ZvbnQtc2l6ZToxM3B4OyBtYXJnaW46IDBweDsgbGlu\r\nZS1oZWlnaHQ6IGF1dG87Ij5IaSBLYXR5LDwvZGl2PjxkaXYgaWQ9ImJsb29wX2N1c3RvbWZvbnQi\r\nIHN0eWxlPSJmb250LWZhbWlseTpIZWx2ZXRpY2EsQXJpYWw7Zm9udC1zaXplOjEzcHg7IG1hcmdp\r\nbjogMHB4OyBsaW5lLWhlaWdodDogYXV0bzsiPlRoYW5rcyBhZ2FpbiBmb3IgY29taW5nIG91dCB0\r\naGlzIHdlZWshPC9kaXY+PGRpdiBpZD0iYmxvb3BfY3VzdG9tZm9udCIgc3R5bGU9ImZvbnQtZmFt\r\naWx5OkhlbHZldGljYSxBcmlhbDtmb250LXNpemU6MTNweDsgbWFyZ2luOiAwcHg7IGxpbmUtaGVp\r\nZ2h0OiBhdXRvOyI+U29ycnkgSSBkaWRudCBnZXQgdG8gc2F5IGdvb2RieWUgYW5kIHRoYW5rIHlv\r\ndSBwcm9wZXJseS48L2Rpdj48ZGl2IGlkPSJibG9vcF9jdXN0b21mb250IiBzdHlsZT0iZm9udC1m\r\nYW1pbHk6SGVsdmV0aWNhLEFyaWFsO2ZvbnQtc2l6ZToxM3B4OyBtYXJnaW46IDBweDsgbGluZS1o\r\nZWlnaHQ6IGF1dG87Ij5JIHRydWx5IGNhbnQgd2FpdCB0byBnZXQgYWxsIG9mIHRoaXMgbGl0IHVw\r\ncy48L2Rpdj48ZGl2IGlkPSJibG9vcF9jdXN0b21mb250IiBzdHlsZT0iZm9udC1mYW1pbHk6SGVs\r\ndmV0aWNhLEFyaWFsO2ZvbnQtc2l6ZToxM3B4OyBtYXJnaW46IDBweDsgbGluZS1oZWlnaHQ6IGF1\r\ndG87Ij5Ub255IHNhaWQgeW91IHdhbnRlZCB0byBnZXQgTkRBcyBnb2luZywgYW5kIEkgdGhpbmsg\r\nQnJpYW4gZGlkIHRvb+KApjwvZGl2PjxkaXYgaWQ9ImJsb29wX2N1c3RvbWZvbnQiIHN0eWxlPSJm\r\nb250LWZhbWlseTpIZWx2ZXRpY2EsQXJpYWw7Zm9udC1zaXplOjEzcHg7IG1hcmdpbjogMHB4OyBs\r\naW5lLWhlaWdodDogYXV0bzsiPlNvLCBJIGhhZCB0aGVzZSBlYXJseSBvbiBmcm9tIHRoZSBib3lz\r\n4oCmc2VlIGF0dGFjaGVkPC9kaXY+PGRpdiBpZD0iYmxvb3BfY3VzdG9tZm9udCIgc3R5bGU9ImZv\r\nbnQtZmFtaWx5OkhlbHZldGljYSxBcmlhbDtmb250LXNpemU6MTNweDsgbWFyZ2luOiAwcHg7IGxp\r\nbmUtaGVpZ2h0OiBhdXRvOyI+SSdsbCBnZXQgd2l0aCBCcmlhbiB0byBnZXQgYSBmaW5hbCBNYXZy\r\naXgxIGluc3RpdHV0ZWQgYW5kIHRoZW4gd2UgY2FuIGdldCBzdGFydGVkLjwvZGl2PjxkaXYgaWQ9\r\nImJsb29wX2N1c3RvbWZvbnQiIHN0eWxlPSJmb250LWZhbWlseTpIZWx2ZXRpY2EsQXJpYWw7Zm9u\r\ndC1zaXplOjEzcHg7IG1hcmdpbjogMHB4OyBsaW5lLWhlaWdodDogYXV0bzsiPjxicj48L2Rpdj48\r\nZGl2IGlkPSJibG9vcF9jdXN0b21mb250IiBzdHlsZT0iZm9udC1mYW1pbHk6SGVsdmV0aWNhLEFy\r\naWFsO2ZvbnQtc2l6ZToxM3B4OyBtYXJnaW46IDBweDsgbGluZS1oZWlnaHQ6IGF1dG87Ij5UaGFu\r\na3MgYWdhaW4hPC9kaXY+Umljazxicj48ZGl2IGlkPSJibG9vcF9zaWduXzE3NTM0NjMwOTE4ODAy\r\nNTYyNTYiIGNsYXNzPSJibG9vcF9zaWduIj4NCiAgICAgICAgDQoNCiAgICA8YnI+DQoNCjxkaXY+\r\nPHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBIZWx2ZXRpY2EsIEFyaWFsOyI+UmljayBNaXNsYW4s\r\nIFBoRCwmbmJzcDs8L3NwYW4+PGRpdiBzdHlsZT0iZm9udC1mYW1pbHk6IEhlbHZldGljYSwgQXJp\r\nYWw7Ij5Gb3VuZGVyPC9kaXY+PGRpdiBzdHlsZT0iZm9udC1mYW1pbHk6IEhlbHZldGljYSwgQXJp\r\nYWw7Ij48aW1nIGNsYXNzPSJjb21wb3Nlcl9pbnRlcm5hbF9hdHRhY2ggcHJvdG9uLWVtYmVkZGVk\r\nIiBzdHlsZT0ibWF4LXdpZHRoOiA5OSU7IiBzcmM9ImNpZDo3QjM4NDkzNC1FMzlCLTREODUtOTFD\r\nNC1FMTZERTg2REE2MUUiPjxicj48L2Rpdj48ZGl2IHN0eWxlPSJmb250LWZhbWlseTogSGVsdmV0\r\naWNhLCBBcmlhbDsiPjxhIGhyZWY9Imh0dHA6Ly9tYXZyaXgxLmNvbS8iIHRhcmdldD0iX2JsYW5r\r\nIiByZWw9Im5vcmVmZXJyZXIgbm9mb2xsb3cgbm9vcGVuZXIiPm1hdnJpeDEuY29tPC9hPjwvZGl2\r\nPjwvZGl2PjxkaXY+PGJyPjwvZGl2PjwvZGl2Pg0KDQoNCg0KICAgICAgICA8L2Jsb2NrcXVvdGU+\r\nPGJyPg0KICAgIDwvZGl2Pg==\r\n\r\n--b2=_CCS8Eq0C2Mo9WKIaTDw6OqqW8cExX8XicT8CMC5mOo\r\nContent-Type: application/octet-stream; name=A32DEC58-A19A-4D8C-93E1-48974D7F1BC1.bin\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <7B384934-E39B-4D85-91C4-E16DE86DA61E>\r\nContent-Disposition: inline; filename=A32DEC58-A19A-4D8C-93E1-48974D7F1BC1.bin\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAFQAAAAPCAYAAAB6Iuj1AAAAAXNSR0IArs4c6QAAAIRlWElmTU0A\r\nKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdp\r\nAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAFSg\r\nAwAEAAAAAQAAAA8AAAAAC5FemQAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5h\r\nZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9\r\nIlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9y\r\nZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6\r\nYWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZm\r\nLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgog\r\nICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAA\r\nBFdJREFUWAntl0uIl1UYh7+y0szIyMoU6aKUBYGLSMoWCi5E7EoXMGrhokVIiRCBkFhRQW2Cwpa1\r\nMKQbgSK2qdWESEQEFV3U0aao6GJkF7VsfJ5vzk8+Dv+Z8d+4a37weG7vey7vec/3H5tmUhOJwFnF\r\n+VrKb+DfiUz2f/Y9jcOfUQJwC+VRGIa/St9k0UcETu/YrqduIOVvMLCT6iMCZqaaAlsgwTSwg6Xd\r\naGTU/ytZhClanex8Xb/4dPsy32jlaD7p754nfZnfsdSdP7bdvnpdx8Sn/hIchN1wHaghMMCnRPme\r\n9DtZLz8PN5562Zg1vfrHm6sed55add+0yuBs2gdg2AOdD27kH/BXqr6lHPpYNe5taPsb6Gvdvhkw\r\n1sG0cfx3iN9s6n5/7DsCHsD1esl13Od54MG0/xVify71+gxZ0x8N6/q6tn6ebw4cgj/B+exzPm3P\r\nBL+PaiacA/opz6GNc53QIDWDopODNTr/Ah6iHrPvc7gTlAf8Gmq7Xu1vsdsA6knQ5kuYC6rOCvs8\r\nnHoYXPt7uAbUjeAT7HWOBEe/xeBaH8NUUC+Cfd/BzaC8lPxZNI/6AGizC7wAlcTxAvbDsE4GzBt7\r\nCz6E6aCjG7sI1oJ6FT4D01t5ky70AGh/CfwAj8AFoH+dKXS1gTDwHs4NL4d34T1YBh/A9aDcsIFT\r\nyZQV1He2PU1zN+UbYPC/gPnwNjiH54ivpdn1Cvga3oEhuBIOg3Lfz7a1ptlE+Xipr6R8DXx5xug+\r\nMNO7ezOge+BSaINgQLzhWh7CgDt+VT1I28AdBTe8EPrRJxg77+ri5FP6tPRtKX3JUjesFoBPUz8D\r\noLw0ffMyllIfS7czqP9emFoMk2k30fY1Ov46bCx12+sgyr6SMO5vP7Tf0Ezmt1SZPQbIQF0McTZ4\r\nKpswQ2eBkzlxviNvUp8D+mnrZmppf3npNJPVH+Bz+wjuBYP7DLgfs8hyO5gpL8Nz4Nqu636zTvcc\r\n2RPDbYabWdqqBMO6vibPAPjqdsBdhZ8oV4Cv1/WOFShOSP923gTTEQ2Vm8ghU6Y/Zfq7G3ZMLYUb\r\nwKfleHeN7iEYapU+PyX74I6R7uZpytsgT9KMWQgeeg2oBGekNfJv9xyuH7LnrNf16dZNolyK/dNh\r\nrhXkeuP5Nz9iZIS9BeUtJAgGJU9ssYPIzMv4Auouov98UF+B7SU2xpDfY+3yg+a6Zol6EBzzFVwB\r\nT5T2EGUO6z5yOC/jQLHxv4LK+bpK+1Y6nXsQ8tqcSznmhTj+PNxf6rafgihzZX3990H75GM00TKb\r\nSoY8yoS7wO+bQY/cnLYXlo5cjk2zyM1uhqthLewGPy1qFRwEA69tDkT1pBUf95G6e34MvDj1ELzQ\r\n1kZ+7LZR3wCLwATw0+EZclbnklanKkN9jspf6AHIIqOVbsaxe0DVt27fToh/Mtm/DKIEpJ8M9TPi\r\nnIOQDN1a+n6mXA7KgGXcy38f9NsDl4FKMljuheHjdv8rjtREefcAAAAASUVORK5CYII=\r\n\r\n--b2=_CCS8Eq0C2Mo9WKIaTDw6OqqW8cExX8XicT8CMC5mOo--','Hi Rick,\n\nThanks again for sending these over. Do you happen to have a Word version so I can send it to all the other parties involved? Please let me know, thanks!\n\nBest regards,\nKaty\n\nPS - Thanks for the insight and the opportunity. This is going to be a fun one!\n\nSent with [Proton Mail](https://proton.me/mail/home) secure email.\n\nOn Friday, July 25th, 2025 at 1:08 PM, Rick <rick@mavrix.one> wrote:\n\n> Hi Katy,\n> Thanks again for coming out this week!\n> Sorry I didnt get to say goodbye and thank you properly.\n> I truly cant wait to get all of this lit ups.\n> Tony said you wanted to get NDAs going, and I think Brian did too…\n> So, I had these early on from the boys…see attached\n> I\'ll get with Brian to get a final Mavrix1 instituted and then we can get started.\n>\n> Thanks again!\n> Rick\n>\n> Rick Mislan, PhD,\n> Founder\n>\n> [mavrix1.com](http://mavrix1.com/)',0,0,0,0,0,0,'2025-07-25 18:08:08','2025-12-09 19:17:35','2025-12-09 19:17:35','2025-12-09 19:17:35',NULL,NULL,NULL),
(514,4,'<CANZ1scvuwiiYnUhb+svuK=r0jUKwfq+Vw1CavYQBFL1KG-D47w@mail.gmail.com>',NULL,NULL,'Rescheduling your Ashby meeting','jake@ashbyhq.com','Jake McLinden','<html><head></head><body><div class=\"hs_reply_wrap\"> \r\n   <div>\r\n     Hey Rick​, \r\n   </div> \r\n   <br> \r\n   <div>\r\n     Did you have any questions about Ashby that you were hoping to get answers to before hopping on a call? \r\n   </div> \r\n   <br> \r\n   <div>\r\n     When you&#39;re ready, you can grab a time on \r\n    <a href=\"https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3nVW6G32P_4V99WgVWcMjk1XGRSLW3MSp5Y4vfY1fW7QmQx48jwYW3W5srJ4b3t3mcZW3-QCB03xPhrvW9gPWDf5xPc2-W3ZF1m837GqBkTfFsR58xpjGW9jf9r55YQx5rW4sr7KX2k_LVTW3TVQP925CB_fVkpRMR4hstZ8W7p3J8p4Kb94HW4xPYCw79GzYhV1-M2N3KqC75W1m9rLp6MsBR1VFdnmG3GR9JMV64cNf8G4bZXW3JLSVr3275vLW2w5-194cTCGWW9963jz2j3LDsf1sTWVK04\">my calendar here</a>, or let me know a time that works best for you. \r\n   </div> \r\n   <br> \r\n   <div>\r\n     If other priorities have come up, and you&#39;d like me to stay out of your inbox, just let me know! \r\n   </div> \r\n   <br> \r\n   <div>\r\n     Thanks! \r\n   </div> \r\n   <div>\r\n     Jake​ \r\n   </div> \r\n   <div> \r\n    <div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"> \r\n     <div dir=\"ltr\"> \r\n      <table style=\"font-size:13px;color:rgb(136,136,136);font-family:sans-serif;border:none;border-collapse:collapse\"> \r\n       <tbody> \r\n        <tr style=\"height:48pt\"> \r\n         <td style=\"border-right:0.75pt solid rgb(213,213,213);vertical-align:middle;padding:0pt 15pt 0pt 0pt\"><p dir=\"ltr\" style=\"text-align:center;line-height:1.38;margin-top:0pt;margin-bottom:0pt\"><font color=\"#000000\"><img alt=\"\"><img width=\"96\" height=\"31\" src=\"cid:6c38d966cbcebfbe09553b99d74f75be\"><br></font></p></td> \r\n         <td style=\"border-left:0.75pt solid rgb(213,213,213);vertical-align:top;padding:0pt 0pt 0pt 15pt\"><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">Jake McLinden</font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">Account Executive</font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">774.277.1507 | <a href=\"https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3mzW8qGYsf54KZlQW4bQC4S2hgk_cW3lfRD182wJJ2W2wx0hg83n4z0W5JQLcl2sTyFkV_V8Rc5j4zVvW3zhh4P3ntl58W1HdlVs26-JnsW6Gd4mQ7zv_91W7QKJ064jJ_bgW1x0RTV4zGSxBW3HsPtt4W2chcW2S46tH1SLlRmVrj8RD3r8cgHW5R8rGW7VhwLxW8ldfwq8RkYNDV_P_f62VnzSZW1KNrw_1-9S7ZW5znZ3g93phjnW6XPWZG8JXvs_N7PbLW9Dcs6KW2j41RQ1WgRkBdZSwPW04\" target=\"_blank\">LinkedIn</a></font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\"><a href=\"https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JlY2-6qcW95jsWP6lZ3nPW3585cd4dpr9-W1HDyVM56GF_fW1vklLv3XnbnwW9bDVS15WbDLxW4Q0w6D5X5Vh1W2q-wzz2PsbvBW5RdBBv3RrlKZW4xSXSf3SD7xGMcX1FSCLrSyW8j7LxC1L9K5vW2GP2JT93XttyW4Lmbk_6dPBKgW1QXh2L96tF97W14ctTs6_Jmm1W3jnsgf5SY-GBW19Pwmx4_GFwyN5mV0rNVmhV0W3Sm4-96Qf6TXW2XLr4r11wRXpW4qFr_D36144pW23cDL65_zhhRW4qKnvz1hfmm9VFMcLR4dH82PW44G1pz5M0YjxW8c7sB65vgZtfN19sHFJ-Vh-0W91rn-Q8YBSfmW2qrckN8tWJLkN8dm_FGP6G_sMzV7CPrdhrvf47w1y604\" target=\"_blank\">Book a Meeting</a></font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\"><a href=\"http://www.ashbyhq.com/\" target=\"_blank\">www.ashbyhq.com</a></font></p></td> \r\n        </tr> \r\n       </tbody> \r\n      </table> \r\n     </div> \r\n    </div> \r\n   </div> \r\n   <div class=\"hs_reply\"> \r\n    <br> \r\n    <div>\r\n      On Thu, Jul 24, 2025 at 7:10 AM, Jake McLinden \r\n     <span dir=\"ltr\">&lt;<a href=\"mailto:jake@ashbyhq.com\" target=\"_blank\">jake@ashbyhq.com</a>&gt;</span> wrote: \r\n     <br> \r\n     <blockquote class=\"hs_reply_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"> \r\n      <div>\r\n        Hey Rick​, \r\n      </div> \r\n      <br> \r\n      <div>\r\n        It looks like we missed each other! No worries, I understand schedules can get hectic and things can come up. \r\n      </div> \r\n      <br> \r\n      <div>\r\n        If you&#39;re still interested, please grab a time on \r\n       <a href=\"https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3m0W54J5jp99Y56dN3N5_FQ6HVYWW8jTzvd3NpxfVW6GwNHM67wxB1W86qqt_8TN_SDN6YyjjfrQL_3W2sBP8R7xJVwbW4s3TLM6HpJs1W3TJdVl7HJ32yW1Fs7GT7RdjvCW7PGxWg3SzMZ9N2PNmsY8GPG6W8ZfHM06_qnfmW3m4RBx8H4wQ-W2BjvV028WckfW3dkjcc9j6sfGW2bR5Wv92P8tPW2bXkvT7Wppb3W8rJnP97LXQSMW8YnfKn20ll8QW8Pt_qv8Vr9KLN2y1GbhM-Pjjf5-v3yK04\">my calendar here</a> or let me know a time or two that would work well for you. \r\n      </div> \r\n      <br> \r\n      <div>\r\n        Looking forward to connecting! \r\n      </div> \r\n      <div>\r\n        Jake​ \r\n      </div> \r\n      <div> \r\n       <div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"> \r\n        <div dir=\"ltr\"> \r\n         <table style=\"font-size:13px;color:rgb(136,136,136);font-family:sans-serif;border:none;border-collapse:collapse\"> \r\n          <tbody> \r\n           <tr style=\"height:48pt\"> \r\n            <td style=\"border-right:0.75pt solid rgb(213,213,213);vertical-align:middle;padding:0pt 15pt 0pt 0pt\"><p dir=\"ltr\" style=\"text-align:center;line-height:1.38;margin-top:0pt;margin-bottom:0pt\"><font color=\"#000000\"><img alt=\"\"><img width=\"96\" height=\"31\" src=\"cid:6c38d966cbcebfbe09553b99d74f75be\"><br></font></p></td> \r\n            <td style=\"border-left:0.75pt solid rgb(213,213,213);vertical-align:top;padding:0pt 0pt 0pt 15pt\"><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">Jake McLinden</font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">Account Executive</font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">774.277.1507 | <a href=\"https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3l-N5C7dXGgC7ZvW7BXgJj9dwN2WW6zQlV54fSgHkW8mFRxX3fbt_gW29SD6b8wVmY0W5BP_JS51QZhqW32rsBl6dtzzGW4yTnsq5r-1z_W4C1hDb8BXJ5qW1Z7nj22kT_zZVrZgNy7jDGTPW17-HcN5QSHXGW2K157G8rk5MmW1pVgLJ2nvw62W2l02wz8ZnWjhW1DY4PZ4SNGlyW6M3bpR6J6z3QW896D7H5lbcCwW16gzT62yVhFHW3B1_Dz66JVzhW3W3_vr7dZYJjW7k1Bcf6W0fLQf85lm7v04\" target=\"_blank\">LinkedIn</a></font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\"><a href=\"https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JlY2-6qcW95jsWP6lZ3lLW6VRz162287LyW49byH55dny_gW3kfyrt26ldRvW8B2y874BdpF_W3tyR_G1SV9F6N8khTJFVPD90W7tNtSS8Ks2pJV9vxyl3gc0VfVhZpsM3kyHDrW7QQLX_6njhHjVqcCps122qXLW8f3C444z-xZwW3ss5l48_sGWSW36lCBZ3ffCtdW8mn2ns2tVJQmV-c-KT6sxr2NN37GsNj3TpT8W3K67Th8yjbQJW8Y1NjJ3ZTC0NV7WP-D4P56lpW7gSjP559c9xZW7sBc0F1Gk4PjW4pGrfR5YskxHW1hmGGr4Tx26jW602qzY739FXbW83yQyN2rlVk6W127DF914mhCYW3_Z4tR9jY9JyN8gq3SYsVVKjW50DbQ1113hrFf27DKCC04\" target=\"_blank\">Book a Meeting</a></font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\"><a href=\"http://www.ashbyhq.com/\" target=\"_blank\">www.ashbyhq.com</a></font></p></td> \r\n           </tr> \r\n          </tbody> \r\n         </table> \r\n        </div> \r\n       </div> \r\n      </div> \r\n     </blockquote> \r\n    </div> \r\n   </div> \r\n  </div>\r\n \r\n<img width=\"1\" height=\"1\" style=\"display:none\" alt=\"\" src=\"https://cBJBm04.na1.hs-sales-engage.com/Cto/ZS+23284/cBJBm04/R5S8b4bTZN6rhp1Z2cZt8W1ZlGng1--v7pW3DLW8w1X07rZW1Vqq1b25fMLjW1_j21_23h3kyW1W-W1322XzNXVhPQ_C7Xpnvd0\"></body></html>',' Hey Rick​,\r\n\r\nDid you have any questions about Ashby that you were hoping to get answers\r\nto before hopping on a call?\r\n\r\nWhen you\'re ready, you can grab a time on my calendar here\r\n<https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3nVW6G32P_4V99WgVWcMjk1XGRSLW3MSp5Y4vfY1fW7QmQx48jwYW3W5srJ4b3t3mcZW3-QCB03xPhrvW9gPWDf5xPc2-W3ZF1m837GqBkTfFsR58xpjGW9jf9r55YQx5rW4sr7KX2k_LVTW3TVQP925CB_fVkpRMR4hstZ8W7p3J8p4Kb94HW4xPYCw79GzYhV1-M2N3KqC75W1m9rLp6MsBR1VFdnmG3GR9JMV64cNf8G4bZXW3JLSVr3275vLW2w5-194cTCGWW9963jz2j3LDsf1sTWVK04>,\r\nor let me know a time that works best for you.\r\n\r\nIf other priorities have come up, and you\'d like me to stay out of your\r\ninbox, just let me know!\r\n\r\nThanks!\r\nJake​\r\n\r\n\r\nJake McLinden\r\n\r\nAccount Executive\r\n\r\n774.277.1507 | LinkedIn\r\n<https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3mzW8qGYsf54KZlQW4bQC4S2hgk_cW3lfRD182wJJ2W2wx0hg83n4z0W5JQLcl2sTyFkV_V8Rc5j4zVvW3zhh4P3ntl58W1HdlVs26-JnsW6Gd4mQ7zv_91W7QKJ064jJ_bgW1x0RTV4zGSxBW3HsPtt4W2chcW2S46tH1SLlRmVrj8RD3r8cgHW5R8rGW7VhwLxW8ldfwq8RkYNDV_P_f62VnzSZW1KNrw_1-9S7ZW5znZ3g93phjnW6XPWZG8JXvs_N7PbLW9Dcs6KW2j41RQ1WgRkBdZSwPW04>\r\n\r\nBook a Meeting\r\n<https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JlY2-6qcW95jsWP6lZ3nPW3585cd4dpr9-W1HDyVM56GF_fW1vklLv3XnbnwW9bDVS15WbDLxW4Q0w6D5X5Vh1W2q-wzz2PsbvBW5RdBBv3RrlKZW4xSXSf3SD7xGMcX1FSCLrSyW8j7LxC1L9K5vW2GP2JT93XttyW4Lmbk_6dPBKgW1QXh2L96tF97W14ctTs6_Jmm1W3jnsgf5SY-GBW19Pwmx4_GFwyN5mV0rNVmhV0W3Sm4-96Qf6TXW2XLr4r11wRXpW4qFr_D36144pW23cDL65_zhhRW4qKnvz1hfmm9VFMcLR4dH82PW44G1pz5M0YjxW8c7sB65vgZtfN19sHFJ-Vh-0W91rn-Q8YBSfmW2qrckN8tWJLkN8dm_FGP6G_sMzV7CPrdhrvf47w1y604>\r\n\r\nwww.ashbyhq.com\r\n\r\nOn Thu, Jul 24, 2025 at 7:10 AM, Jake McLinden <jake@ashbyhq.com> wrote:\r\n\r\nHey Rick​,\r\n\r\nIt looks like we missed each other! No worries, I understand schedules can\r\nget hectic and things can come up.\r\n\r\nIf you\'re still interested, please grab a time on my calendar here\r\n<https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3m0W54J5jp99Y56dN3N5_FQ6HVYWW8jTzvd3NpxfVW6GwNHM67wxB1W86qqt_8TN_SDN6YyjjfrQL_3W2sBP8R7xJVwbW4s3TLM6HpJs1W3TJdVl7HJ32yW1Fs7GT7RdjvCW7PGxWg3SzMZ9N2PNmsY8GPG6W8ZfHM06_qnfmW3m4RBx8H4wQ-W2BjvV028WckfW3dkjcc9j6sfGW2bR5Wv92P8tPW2bXkvT7Wppb3W8rJnP97LXQSMW8YnfKn20ll8QW8Pt_qv8Vr9KLN2y1GbhM-Pjjf5-v3yK04>\r\nor let me know a time or two that would work well for you.\r\n\r\nLooking forward to connecting!\r\nJake​\r\n\r\n\r\nJake McLinden\r\n\r\nAccount Executive\r\n\r\n774.277.1507 | LinkedIn\r\n<https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3l-N5C7dXGgC7ZvW7BXgJj9dwN2WW6zQlV54fSgHkW8mFRxX3fbt_gW29SD6b8wVmY0W5BP_JS51QZhqW32rsBl6dtzzGW4yTnsq5r-1z_W4C1hDb8BXJ5qW1Z7nj22kT_zZVrZgNy7jDGTPW17-HcN5QSHXGW2K157G8rk5MmW1pVgLJ2nvw62W2l02wz8ZnWjhW1DY4PZ4SNGlyW6M3bpR6J6z3QW896D7H5lbcCwW16gzT62yVhFHW3B1_Dz66JVzhW3W3_vr7dZYJjW7k1Bcf6W0fLQf85lm7v04>\r\n\r\nBook a Meeting\r\n<https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JlY2-6qcW95jsWP6lZ3lLW6VRz162287LyW49byH55dny_gW3kfyrt26ldRvW8B2y874BdpF_W3tyR_G1SV9F6N8khTJFVPD90W7tNtSS8Ks2pJV9vxyl3gc0VfVhZpsM3kyHDrW7QQLX_6njhHjVqcCps122qXLW8f3C444z-xZwW3ss5l48_sGWSW36lCBZ3ffCtdW8mn2ns2tVJQmV-c-KT6sxr2NN37GsNj3TpT8W3K67Th8yjbQJW8Y1NjJ3ZTC0NV7WP-D4P56lpW7gSjP559c9xZW7sBc0F1Gk4PjW4pGrfR5YskxHW1hmGGr4Tx26jW602qzY739FXbW83yQyN2rlVk6W127DF914mhCYW3_Z4tR9jY9JyN8gq3SYsVVKjW50DbQ1113hrFf27DKCC04>\r\n\r\nwww.ashbyhq.com',0,0,0,0,0,0,'2025-07-25 19:26:07','2025-12-09 19:17:35','2025-12-09 19:17:35','2025-12-09 19:17:35',NULL,NULL,NULL),
(515,4,' <BL3PR20MB492472F2EF1E275871A6560DAF59A@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: Update','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nHey Rick,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nHere\'s a high level table on the core financials for a 4 million unit operation which we can refer to as Phase Echo. This is based mainly on an extrapolation of the detailed data from the Phase Delta spreadsheet in the data room, and also adjusted for production\r\n of exclusively drone motors (minus robotic actuators/additional motor types). If you\'d like more granular data I can start working on a more sophisticated model like the previous phases are based on.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nhttps://docs.google.com/spreadsheets/d/1Yku5IcGT89giC6GzRouyf8mHOHur4wZAgbnDdTzFh9M/edit?usp=sharing</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nRegards,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nJason</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Saturday, July 19, 2025 5:54 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Update</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Morning, Jason!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thank you for these.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Lot of meetings on our end next week.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">I’ll be in touch.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks again!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On July 19, 2025 at 8:33:32 AM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nMorning Rick,</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nThe validation units for our next production batch came in late afternoon yesterday, and I\'ve compiled some images, data, and footage for you here:</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nhttps://drive.google.com/drive/folders/10QwL2p_oPPVqzDcAw_dr9K4i4d-OaBxl?usp=sharing</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nWith this batch we have implemented optimizations to the magnetic tolerances and thermal dissipation rates. The data entailed will show that we are at performance parity with the prevailing Chinese product offering, with a clear path to actually exceed them\r\n in the near future on key measurements.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nWe are also going to be working with a media professional to get high quality digital materials for marketing and promotion when Jose gets back in town next Sunday.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nRegards,</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nJason</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Wednesday, July 16, 2025 12:15 PM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Update</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>Thanks for these. &nbsp;\r\n<div>Looking forward to the video. &nbsp;\r\n<div>Rick<br>\r\n<br>\r\n<div class=\"x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<p class=\"x_x_gmail_quote\" style=\"color:#000\">On July 16, 2025 at 12:09:01 PM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_gmail_quote\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nCertainly, here are some still images of one of the Raven motors from our last production batch. This Friday I will also provide video footage of an operating unit from our current/next production batch, machine shop fulfillment rates have been highly variable\r\n recently.</div>\r\n<div id=\"x_x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, July 15, 2025 3:30 PM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Update</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">In the meantime, can you send me pics or videos of the prototypes you’ve built through the other mfg groups…</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">We need to show proof of concept for your work specifically…</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">So anything you have to show you can build or have built these motors will help!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_x_airmail_on\">On July 15, 2025 at 5:25:53 PM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_x_clean_bq\">\r\n<div>\r\n<div>\r\n<div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\n<span>Rick,</span></div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\n<span><br>\r\n</span></div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\n<span>That’s great to hear, thanks for the update. Looking forward to it!</span></div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\n<span><br>\r\n</span></div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\n<span>Regards,</span></div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\n<span>Jason</span></div>\r\n</div>\r\n<div id=\"x_x_x_ms-outlook-mobile-body-separator-line\" dir=\"auto\"><span><br>\r\n</span></div>\r\n<div id=\"x_x_x_ms-outlook-mobile-signature\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_x_divRplyFwdMsg\" dir=\"ltr\"><span><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, July 15, 2025 1:53:37 PM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Update</font></span>\r\n<div><span>&nbsp;</span></div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>Jason,</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>Wanted to get back to you in regards to our process.</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>We are currently doing reviews and creating our overall budget.</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>That said, we would plan to bring&nbsp;</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>Corvex Systems inside of Mavrix1 and&nbsp;</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>completely build out our manufacturing facility&nbsp;</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>in the CENTCOM/SOCOM neighborhood.</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>I think you’ll be impressed by what we have planned and</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>we look forward to including you and your team.</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>That said, let me know if you have any questions.</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>We’ll be in touch soon!</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>Thank you,</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>Rick</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span><br>\r\n</span></div>\r\n<div class=\"x_x_x_x_gmail_signature\"><span>Rick Mislan, PhD<br>\r\n</span>\r\n<div><span><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\">https://mavrix.one</a></span></div>\r\n<div><span><img style=\"height:11px\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></span></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n<hr>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Hey Rick,\r\n\r\nHere\'s a high level table on the core financials for a 4 million unit operation which we can refer to as Phase Echo. This is based mainly on an extrapolation of the detailed data from the Phase Delta spreadsheet in the data room, and also adjusted for production of exclusively drone motors (minus robotic actuators/additional motor types). If you\'d like more granular data I can start working on a more sophisticated model like the previous phases are based on.\r\n\r\nhttps://docs.google.com/spreadsheets/d/1Yku5IcGT89giC6GzRouyf8mHOHur4wZAgbnDdTzFh9M/edit?usp=sharing\r\n\r\nRegards,\r\nJason\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Saturday, July 19, 2025 5:54 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Update\r\n\r\nMorning, Jason!\r\nThank you for these.\r\nLot of meetings on our end next week.\r\nI’ll be in touch.\r\nThanks again!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn July 19, 2025 at 8:33:32 AM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nMorning Rick,\r\n\r\nThe validation units for our next production batch came in late afternoon yesterday, and I\'ve compiled some images, data, and footage for you here:\r\n\r\nhttps://drive.google.com/drive/folders/10QwL2p_oPPVqzDcAw_dr9K4i4d-OaBxl?usp=sharing\r\n\r\nWith this batch we have implemented optimizations to the magnetic tolerances and thermal dissipation rates. The data entailed will show that we are at performance parity with the prevailing Chinese product offering, with a clear path to actually exceed them in the near future on key measurements.\r\n\r\nWe are also going to be working with a media professional to get high quality digital materials for marketing and promotion when Jose gets back in town next Sunday.\r\n\r\nRegards,\r\nJason\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Wednesday, July 16, 2025 12:15 PM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Update\r\n\r\nThanks for these.\r\nLooking forward to the video.\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\nOn July 16, 2025 at 12:09:01 PM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nCertainly, here are some still images of one of the Raven motors from our last production batch. This Friday I will also provide video footage of an operating unit from our current/next production batch, machine shop fulfillment rates have been highly variable recently.\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, July 15, 2025 3:30 PM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Update\r\n\r\nIn the meantime, can you send me pics or videos of the prototypes you’ve built through the other mfg groups…\r\nWe need to show proof of concept for your work specifically…\r\nSo anything you have to show you can build or have built these motors will help!\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn July 15, 2025 at 5:25:53 PM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nRick,\r\n\r\nThat’s great to hear, thanks for the update. Looking forward to it!\r\n\r\nRegards,\r\nJason\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, July 15, 2025 1:53:37 PM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Update\r\n\r\nJason,\r\n\r\nWanted to get back to you in regards to our process.\r\nWe are currently doing reviews and creating our overall budget.\r\nThat said, we would plan to bring\r\nCorvex Systems inside of Mavrix1 and\r\ncompletely build out our manufacturing facility\r\nin the CENTCOM/SOCOM neighborhood.\r\n\r\nI think you’ll be impressed by what we have planned and\r\nwe look forward to including you and your team.\r\n\r\nThat said, let me know if you have any questions.\r\nWe’ll be in touch soon!\r\nThank you,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n________________________________\r\n',0,0,0,0,0,0,'2025-07-25 22:56:07','2025-12-09 19:17:36','2025-12-09 19:17:36','2025-12-09 19:17:36',NULL,NULL,NULL),
(516,4,'<67D84BA3-2F92-468B-B58F-8B71404B3611@bayfrontcapitalllc.com>',NULL,NULL,'Fwd: Manatee County Farmland and 20 Additional Acres','brian@bayfrontcapitalllc.com','Brian Stufflebean','\r\n--Apple-Mail=_FE8E6AEC-A6D5-4FD2-A7CD-11DB8ADC8692\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Type: text/html;\r\n	charset=utf-8\r\n\r\n<html><head><meta http-equiv=3D\"content-type\" content=3D\"text/html; =\r\ncharset=3Dutf-8\"></head><body style=3D\"overflow-wrap: break-word; =\r\n-webkit-nbsp-mode: space; line-break: =\r\nafter-white-space;\">Rick,<div><br></div><div>Please distribute to the =\r\nTeam. &nbsp;Thank you.&nbsp;</div><div><br></div><div><br =\r\nid=3D\"lineBreakAtBeginningOfMessage\"><div>\r\n<meta charset=3D\"UTF-8\"><div style=3D\"font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; letter-spacing: =\r\nnormal; text-align: start; text-indent: 0px; text-transform: none; =\r\nwhite-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\">Best Regards,&nbsp;<br><br><br>Brian C. Stufflebean, =\r\nCEO<br><b>Bayfront Capital, LLC</b><br>(941)545-4153 =\r\nDirect<br>(866)896-2423 =\r\nFax<br>brian@bayfrontcapitalllc.com<br>www.bayfrontcapitalllc.com<br>&nbsp=\r\n;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br><br></div><span style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"></span><br class=3D\"Apple-interchange-newline\" style=3D\"caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0); font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"><span style=3D\"caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); =\r\nfont-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"></span><span><img alt=3D\"PastedGraphic-3.tiff\" =\r\nsrc=3D\"cid:1316E71A-4E09-4379-B53C-D6EB7DA3C430\"></span><meta =\r\ncharset=3D\"UTF-8\"><div style=3D\"font-family: Helvetica; font-size: 12px; =\r\nfont-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br =\r\nclass=3D\"Apple-interchange-newline\"><br =\r\nclass=3D\"Apple-interchange-newline\"><br></span></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; letter-spacing: normal; text-align: start; =\r\ntext-indent: 0px; text-transform: none; white-space: normal; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><b>CONFIDENTIALITY NOTICE / NOTICE&nbsp;OF&nbsp;NOT A =\r\nREGISTERED&nbsp;BROKER/DEALER:</b><span style=3D\"font-weight: =\r\n400;\">&nbsp;Bayfront Capital&nbsp;LLC, nor its=E2=80=99 affiliates are =\r\nregistered as&nbsp;a Broker/Dealer, nor registered with&nbsp;FINRA. Nor =\r\ndoes&nbsp;it provide tax or&nbsp;investment advice.&nbsp;&nbsp;Any =\r\nreferences&nbsp;made to any transaction in any&nbsp;communication is =\r\nbeing made as a&nbsp;business consultant.&nbsp;&nbsp;&nbsp;This is not =\r\na&nbsp;solicitation nor offer of any type and any&nbsp;reference to any =\r\nproposed transaction&nbsp;of any type is void where prohibited =\r\nby&nbsp;law.&nbsp;This communication&nbsp;is confidential&nbsp;and =\r\nintended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not =\r\nthe intended&nbsp;recipient, you&nbsp;may not copy, disclose, =\r\nor&nbsp;distribute this message&nbsp;to anyone else;&nbsp;any such =\r\nactions may be unlawful. If&nbsp;you have received this =\r\ncommunication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the =\r\nmessage to&nbsp;inform him or her of the&nbsp;error.</span></div>\r\n</div>\r\n\r\n<div><br><blockquote type=3D\"cite\"><div>Begin forwarded =\r\nmessage:</div><br class=3D\"Apple-interchange-newline\"><div =\r\nstyle=3D\"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =\r\nmargin-left: 0px;\"><span style=3D\"font-family: -webkit-system-font, =\r\nHelvetica Neue, Helvetica, sans-serif; color:rgba(0, 0, 0, =\r\n1.0);\"><b>From: </b></span><span style=3D\"font-family: =\r\n-webkit-system-font, Helvetica Neue, Helvetica, sans-serif;\">\"Clay =\r\nTaylor, ALC\" &lt;clay@saundersrealestate.com&gt;<br></span></div><div =\r\nstyle=3D\"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =\r\nmargin-left: 0px;\"><span style=3D\"font-family: -webkit-system-font, =\r\nHelvetica Neue, Helvetica, sans-serif; color:rgba(0, 0, 0, =\r\n1.0);\"><b>Subject: </b></span><span style=3D\"font-family: =\r\n-webkit-system-font, Helvetica Neue, Helvetica, sans-serif;\"><b>Manatee =\r\nCounty Farmland and 20 Additional Acres</b><br></span></div><div =\r\nstyle=3D\"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =\r\nmargin-left: 0px;\"><span style=3D\"font-family: -webkit-system-font, =\r\nHelvetica Neue, Helvetica, sans-serif; color:rgba(0, 0, 0, =\r\n1.0);\"><b>Date: </b></span><span style=3D\"font-family: =\r\n-webkit-system-font, Helvetica Neue, Helvetica, sans-serif;\">July 25, =\r\n2025 at 2:24:11=E2=80=AFPM EDT<br></span></div><div style=3D\"margin-top: =\r\n0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;\"><span =\r\nstyle=3D\"font-family: -webkit-system-font, Helvetica Neue, Helvetica, =\r\nsans-serif; color:rgba(0, 0, 0, 1.0);\"><b>To: </b></span><span =\r\nstyle=3D\"font-family: -webkit-system-font, Helvetica Neue, Helvetica, =\r\nsans-serif;\">\"brian@bayfrontcapitalllc.com\" =\r\n&lt;brian@bayfrontcapitalllc.com&gt;<br></span></div><div =\r\nstyle=3D\"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =\r\nmargin-left: 0px;\"><span style=3D\"font-family: -webkit-system-font, =\r\nHelvetica Neue, Helvetica, sans-serif; color:rgba(0, 0, 0, 1.0);\"><b>Cc: =\r\n</b></span><span style=3D\"font-family: -webkit-system-font, Helvetica =\r\nNeue, Helvetica, sans-serif;\">Shea Booster =\r\n&lt;shea@saundersrealestate.com&gt;, Clayton Taylor =\r\n&lt;clayton@saundersrealestate.com&gt;<br></span></div><br><div><object =\r\ntype=3D\"application/x-apple-msg-attachment\" data=3D\"cid:f_mdj4e0oq0\" =\r\nstyle=3D\"caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; text-align: start; text-indent: 0px; =\r\ntext-transform: none; white-space: normal; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"></object></div></blockquote></div><br></div></body></html>=\r\n\r\n--Apple-Mail=_FE8E6AEC-A6D5-4FD2-A7CD-11DB8ADC8692\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=PastedGraphic-3.tiff\r\nContent-Type: image/tiff;\r\n	name=\"PastedGraphic-3.tiff\"\r\nContent-Id: <1316E71A-4E09-4379-B53C-D6EB7DA3C430>\r\n\r\n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\r\nZmlGSQAAACgAAAR8cGxQTAAAACwAAASkcnVSVQAAACIAAATQYXJFRwAAACYAAATyZW5VUwAAACYA\r\nAAUYZGFESwAAAC4AAAU+AFYBYQBlAG8AYgBlAGMAbgD9ACAAUgBHAEIAIABwAHIAbwBmAGkAbABH\r\nAGUAbgBlAHIAaQENAGsAaQAgAFIARwBCACAAcAByAG8AZgBpAGwAUABlAHIAZgBpAGwAIABSAEcA\r\nQgAgAGcAZQBuAOgAcgBpAGMAUABlAHIAZgBpAGwAIABSAEcAQgAgAEcAZQBuAOkAcgBpAGMAbwQX\r\nBDAEMwQwBDsETAQ9BDgEOQAgBD8EQAQ+BEQEMAQ5BDsAIABSAEcAQgBQAHIAbwBmAGkAbAAgAGcA\r\n6QBuAOkAcgBpAHEAdQBlACAAUgBWAEKQGnUoACAAUgBHAEIAIIJyX2ljz4/wAFAAcgBvAGYAaQBs\r\nAG8AIABSAEcAQgAgAGcAZQBuAGUAcgBpAGMAbwBHAGUAbgBlAHIAaQBzAGsAIABSAEcAQgAtAHAA\r\ncgBvAGYAaQBsx3y8GAAgAFIARwBCACDVBLhc0wzHfABPAGIAZQBjAG4A/QAgAFIARwBCACAAcABy\r\nAG8AZgBpAGwF5AXoBdUF5AXZBdwAIABSAEcAQgAgBdsF3AXcBdkAQQBsAGwAZwBlAG0AZQBpAG4A\r\nZQBzACAAUgBHAEIALQBQAHIAbwBmAGkAbADBAGwAdABhAGwA4QBuAG8AcwAgAFIARwBCACAAcABy\r\nAG8AZgBpAGxmbpAaACAAUgBHAEIAIGPPj/Blh072TgCCLAAgAFIARwBCACAw1zDtMNUwoTCkMOsA\r\nUAByAG8AZgBpAGwAIABSAEcAQgAgAGcAZQBuAGUAcgBpAGMDkwO1A70DuQO6A8wAIAPAA8EDvwPG\r\nA68DuwAgAFIARwBCAFAAZQByAGYAaQBsACAAUgBHAEIAIABnAGUAbgDpAHIAaQBjAG8AQQBsAGcA\r\nZQBtAGUAZQBuACAAUgBHAEIALQBwAHIAbwBmAGkAZQBsDkIOGw4jDkQOHw4lDkwAIABSAEcAQgAg\r\nDhcOMQ5IDicORA4bAEcAZQBuAGUAbAAgAFIARwBCACAAUAByAG8AZgBpAGwAaQBZAGwAZQBpAG4A\r\nZQBuACAAUgBHAEIALQBwAHIAbwBmAGkAaQBsAGkAVQBuAGkAdwBlAHIAcwBhAGwAbgB5ACAAcABy\r\nAG8AZgBpAGwAIABSAEcAQgQeBDEESQQ4BDkAIAQ/BEAEPgREBDgEOwRMACAAUgBHAEIGRQZEBkEA\r\nIAYqBjkGMQZKBkEAIABSAEcAQgAgBicGRAY5BicGRQBHAGUAbgBlAHIAaQBjACAAUgBHAEIAIABQ\r\nAHIAbwBmAGkAbABlAEcAZQBuAGUAcgBlAGwAIABSAEcAQgAtAGIAZQBzAGsAcgBpAHYAZQBsAHMA\r\nZXRleHQAAAAAQ29weXJpZ2h0IDIwMDcgQXBwbGUgSW5jLiwgYWxsIHJpZ2h0cyByZXNlcnZlZC4A\r\nWFlaIAAAAAAAAPNSAAEAAAABFs9YWVogAAAAAAAAdE0AAD3uAAAD0FhZWiAAAAAAAABadQAArHMA\r\nABc0WFlaIAAAAAAAACgaAAAVnwAAuDZjdXJ2AAAAAAAAAAEBzQAAc2YzMgAAAAAAAQxCAAAF3v//\r\n8yYAAAeSAAD9kf//+6L///2jAAAD3AAAwGw=\r\n--Apple-Mail=_FE8E6AEC-A6D5-4FD2-A7CD-11DB8ADC8692--','Rick,\r\n\r\nPlease distribute to the Team.  Thank you. \r\n\r\n\r\nBest Regards, \r\n\r\n\r\nBrian C. Stufflebean, CEO\r\nBayfront Capital, LLC\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\nbrian@bayfrontcapitalllc.com\r\nwww.bayfrontcapitalllc.com\r\n      \r\n\r\n\r\n￼\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER: Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.\r\n\r\n> Begin forwarded message:\r\n> \r\n> From: \"Clay Taylor, ALC\" <clay@saundersrealestate.com>\r\n> Subject: Manatee County Farmland and 20 Additional Acres\r\n> Date: July 25, 2025 at 2:24:11 PM EDT\r\n> To: \"brian@bayfrontcapitalllc.com\" <brian@bayfrontcapitalllc.com>\r\n> Cc: Shea Booster <shea@saundersrealestate.com>, Clayton Taylor <clayton@saundersrealestate.com>\r\n> \r\n> ',0,0,0,0,0,0,'2025-07-26 14:45:06','2025-12-09 19:17:36','2025-12-09 19:17:36','2025-12-09 19:17:36',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(517,4,' <BL3PR20MB4924D89C92D62053B3223C39AF58A@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: Update','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n</head>\r\n<body>\r\n<div><span style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">Glad I could assist.<br>\r\nEnjoy your weekend too!</span></div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\" dir=\"auto\"><br>\r\n</div>\r\n<div id=\"ms-outlook-mobile-signature\">\r\n<div></div>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, July 25, 2025 7:30:17 PM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Update</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks for doing this on such short notice.<br>\r\n</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nTrying to speed this up for all of us.</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nTalk soon.</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nEnjoy your weekend!</div>\r\nRick<br>\r\n<div id=\"x_bloop_sign_1753496990934808064\" class=\"x_bloop_sign\"><br>\r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD,&nbsp;</span>\r\n<div style=\"font-family:Helvetica,Arial\">Founder, CTO</div>\r\n<div style=\"font-family:Helvetica,Arial\"><img class=\"x_composer_internal_attach\" src=\"cid:F126CB24-806D-4964-B86E-0D272B0042D9\" style=\"max-width:99%\"><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial\"><a href=\"http://mavrix1.com/\">mavrix1.com</a></div>\r\n</div>\r\n<div><br>\r\n</div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On July 25, 2025 at 6:56:55 PM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHey Rick,</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHere\'s a high level table on the core financials for a 4 million unit operation which we can refer to as Phase Echo. This is based mainly on an extrapolation of the detailed data from the Phase Delta spreadsheet in the data room, and also adjusted for production\r\n of exclusively drone motors (minus robotic actuators/additional motor types). If you\'d like more granular data I can start working on a more sophisticated model like the previous phases are based on.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nhttps://docs.google.com/spreadsheets/d/1Yku5IcGT89giC6GzRouyf8mHOHur4wZAgbnDdTzFh9M/edit?usp=sharing</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nRegards,</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nJason</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Saturday, July 19, 2025 5:54 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Update</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Morning, Jason!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thank you for these.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Lot of meetings on our end next week.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">I’ll be in touch.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks again!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height:11px\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_airmail_on\">On July 19, 2025 at 8:33:32 AM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nMorning Rick,</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nThe validation units for our next production batch came in late afternoon yesterday, and I\'ve compiled some images, data, and footage for you here:</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nhttps://drive.google.com/drive/folders/10QwL2p_oPPVqzDcAw_dr9K4i4d-OaBxl?usp=sharing</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nWith this batch we have implemented optimizations to the magnetic tolerances and thermal dissipation rates. The data entailed will show that we are at performance parity with the prevailing Chinese product offering, with a clear path to actually exceed them\r\n in the near future on key measurements.</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nWe are also going to be working with a media professional to get high quality digital materials for marketing and promotion when Jose gets back in town next Sunday.</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nRegards,</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nJason</div>\r\n<div id=\"x_x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Wednesday, July 16, 2025 12:15 PM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Update</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>Thanks for these. &nbsp;\r\n<div>Looking forward to the video. &nbsp;\r\n<div>Rick<br>\r\n<br>\r\n<div class=\"x_x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height:11px\"></div>\r\n</div>\r\n<p class=\"x_x_x_gmail_quote\" style=\"color:#000\">On July 16, 2025 at 12:09:01 PM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_x_gmail_quote\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nCertainly, here are some still images of one of the Raven motors from our last production batch. This Friday I will also provide video footage of an operating unit from our current/next production batch, machine shop fulfillment rates have been highly variable\r\n recently.</div>\r\n<div id=\"x_x_x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, July 15, 2025 3:30 PM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Update</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">In the meantime, can you send me pics or videos of the prototypes you’ve built through the other mfg groups…</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">We need to show proof of concept for your work specifically…</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">So anything you have to show you can build or have built these motors will help!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_x_x_x_gmail_signature\">Rick Mislan, PhD<br>\r\n<div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\">https://mavrix.one</a></div>\r\n<div><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height:11px\"></div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_x_x_airmail_on\">On July 15, 2025 at 5:25:53 PM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_x_x_clean_bq\">\r\n<div>\r\n<div>\r\n<div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\n<span>Rick,</span></div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\n<span><br>\r\n</span></div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\n<span>That’s great to hear, thanks for the update. Looking forward to it!</span></div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\n<span><br>\r\n</span></div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\n<span>Regards,</span></div>\r\n<div dir=\"ltr\" style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt\">\r\n<span>Jason</span></div>\r\n</div>\r\n<div id=\"x_x_x_x_ms-outlook-mobile-body-separator-line\" dir=\"auto\"><span><br>\r\n</span></div>\r\n<div id=\"x_x_x_x_ms-outlook-mobile-signature\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_x_x_divRplyFwdMsg\" dir=\"ltr\"><span><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, July 15, 2025 1:53:37 PM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Update</font></span>\r\n<div><span>&nbsp;</span></div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>Jason,</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>Wanted to get back to you in regards to our process.</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>We are currently doing reviews and creating our overall budget.</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>That said, we would plan to bring&nbsp;</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>Corvex Systems inside of Mavrix1 and&nbsp;</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>completely build out our manufacturing facility&nbsp;</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>in the CENTCOM/SOCOM neighborhood.</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>I think you’ll be impressed by what we have planned and</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>we look forward to including you and your team.</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>That said, let me know if you have any questions.</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>We’ll be in touch soon!</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>Thank you,</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span>Rick</span></div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><span><br>\r\n</span></div>\r\n<div class=\"x_x_x_x_x_gmail_signature\"><span>Rick Mislan, PhD<br>\r\n</span>\r\n<div><span><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\">https://mavrix.one</a></span></div>\r\n<div><span><img src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\" style=\"height:11px\"></span></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n<hr>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Glad I could assist.\r\nEnjoy your weekend too!\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, July 25, 2025 7:30:17 PM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Update\r\n\r\nThanks for doing this on such short notice.\r\nTrying to speed this up for all of us.\r\nTalk soon.\r\nEnjoy your weekend!\r\nRick\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:F126CB24-806D-4964-B86E-0D272B0042D9]\r\nmavrix1.com<http://mavrix1.com/>\r\n\r\n\r\n\r\nOn July 25, 2025 at 6:56:55 PM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nHey Rick,\r\n\r\nHere\'s a high level table on the core financials for a 4 million unit operation which we can refer to as Phase Echo. This is based mainly on an extrapolation of the detailed data from the Phase Delta spreadsheet in the data room, and also adjusted for production of exclusively drone motors (minus robotic actuators/additional motor types). If you\'d like more granular data I can start working on a more sophisticated model like the previous phases are based on.\r\n\r\nhttps://docs.google.com/spreadsheets/d/1Yku5IcGT89giC6GzRouyf8mHOHur4wZAgbnDdTzFh9M/edit?usp=sharing\r\n\r\nRegards,\r\nJason\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Saturday, July 19, 2025 5:54 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Update\r\n\r\nMorning, Jason!\r\nThank you for these.\r\nLot of meetings on our end next week.\r\nI’ll be in touch.\r\nThanks again!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn July 19, 2025 at 8:33:32 AM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nMorning Rick,\r\n\r\nThe validation units for our next production batch came in late afternoon yesterday, and I\'ve compiled some images, data, and footage for you here:\r\n\r\nhttps://drive.google.com/drive/folders/10QwL2p_oPPVqzDcAw_dr9K4i4d-OaBxl?usp=sharing\r\n\r\nWith this batch we have implemented optimizations to the magnetic tolerances and thermal dissipation rates. The data entailed will show that we are at performance parity with the prevailing Chinese product offering, with a clear path to actually exceed them in the near future on key measurements.\r\n\r\nWe are also going to be working with a media professional to get high quality digital materials for marketing and promotion when Jose gets back in town next Sunday.\r\n\r\nRegards,\r\nJason\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Wednesday, July 16, 2025 12:15 PM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Update\r\n\r\nThanks for these.\r\nLooking forward to the video.\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.one\r\nhttps://mavrix.one\r\nhttps://mavrix.one>\r\n[X]\r\n\r\nOn July 16, 2025 at 12:09:01 PM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nCertainly, here are some still images of one of the Raven motors from our last production batch. This Friday I will also provide video footage of an operating unit from our current/next production batch, machine shop fulfillment rates have been highly variable recently.\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, July 15, 2025 3:30 PM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Update\r\n\r\nIn the meantime, can you send me pics or videos of the prototypes you’ve built through the other mfg groups…\r\nWe need to show proof of concept for your work specifically…\r\nSo anything you have to show you can build or have built these motors will help!\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn July 15, 2025 at 5:25:53 PM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nRick,\r\n\r\nThat’s great to hear, thanks for the update. Looking forward to it!\r\n\r\nRegards,\r\nJason\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, July 15, 2025 1:53:37 PM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Update\r\n\r\nJason,\r\n\r\nWanted to get back to you in regards to our process.\r\nWe are currently doing reviews and creating our overall budget.\r\nThat said, we would plan to bring\r\nCorvex Systems inside of Mavrix1 and\r\ncompletely build out our manufacturing facility\r\nin the CENTCOM/SOCOM neighborhood.\r\n\r\nI think you’ll be impressed by what we have planned and\r\nwe look forward to including you and your team.\r\n\r\nThat said, let me know if you have any questions.\r\nWe’ll be in touch soon!\r\nThank you,\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n[X]\r\n________________________________\r\n',0,0,0,0,0,0,'2025-07-26 16:20:35','2025-12-09 19:17:37','2025-12-09 19:17:37','2025-12-09 19:17:37',NULL,NULL,NULL),
(518,4,'<ED4E2EE1-9D87-4E0C-BB33-7B680DAEF358@bayfrontcapitalllc.com>',NULL,NULL,'Property Information Received from Realtor','brian@bayfrontcapitalllc.com','Brian Stufflebean','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"><div><span></span><meta charset=\"UTF-8\"><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br class=\"Apple-interchange-newline\"><br class=\"Apple-interchange-newline\"><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\">CONFIDENTIALITY NOTICE / NOTICE&nbsp;OF&nbsp;NOT A REGISTERED&nbsp;BROKER/DEALER:&nbsp;Bayfront Capital&nbsp;LLC, nor its’ affiliates are registered as&nbsp;a Broker/Dealer, nor registered with&nbsp;FINRA. Nor does&nbsp;it provide tax or&nbsp;investment advice.&nbsp;&nbsp;Any references&nbsp;made to any transaction in any&nbsp;communication is being made as a&nbsp;business consultant.&nbsp;&nbsp;&nbsp;This is not a&nbsp;solicitation nor offer of any type and any&nbsp;reference to any proposed transaction&nbsp;of any type is void where prohibited by&nbsp;law.&nbsp;This communication&nbsp;is confidential&nbsp;and intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient, you&nbsp;may not copy, disclose, or&nbsp;distribute this message&nbsp;to anyone else;&nbsp;any such actions may be unlawful. If&nbsp;you have received this communication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the message to&nbsp;inform him or her of the&nbsp;error.</div>\r\n</div>\r\n\r\n<br></body></html>','Rick, \r\n\r\nThe following is form the realtor, Clay Taylor.  Please share with the Team.\r\n\r\n\r\nBrian,\r\nNice seeing you again yesterday.  I have attached the Aerial and the FEMA Flood Zone.  The treeline to the south of both properties is within the 100 year flood zone.  Below is some information on the questions you had.  Let me know if you have any more questions. Contact me anytime.   \r\n\r\nThe internet provider for both properties is Spectrum.\r\nAs far as the owners know neither property has ever had a cattle dipping vat on the property.  The farm was a tree farm before it became a vegetable farm.  \r\nThe lease on the mobile home is $1,500 per month.  There is no written agreement signed, it\'s just month to month.  The owner is about to raise the rent to $2,000 per month.\r\nThe owner of the 15 acres to the north of the 20 acres wants to give his children first shot at his property but other than that he will give you a First Right of Refusal.  He doesn\'t think his children will have any interest.\r\nThe $700,000 asking price on the 20 acres is probably a little negotiable.  \r\n\r\nThe sellers\'s names for the farm is:\r\n\r\nChung Shuen Farm Inc \r\nparcel ID number: 130100001\r\n\r\nAnd the seller\'s name for the so acres is:\r\n\r\nStephanie Raucci and Stephanie Raucci Rev Living Trust DTD\r\nparcel ID: 130010002 \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n￼\r\n\r\n\r\n\r\n\r\nClay Taylor  ALC - Accredited Land Consultant \r\nSenior Advisor\r\nSaunders Real Estate\r\nclay@saundersrealestate.com <mailto:clay@saundersrealestate.com>\r\nC  863-224-0835 \r\n1723 Bartow Rd , Lakeland, FL 33813\r\nSaundersLand.com <http://saundersland.com/>\r\n\r\n\"The major fortunes in America have been made in land\"   \r\n                                                              John D. Rockefeller\r\n\r\n\r\n\r\n￼￼\r\n\r\n\r\nBest Regards, \r\n\r\n\r\nBrian C. Stufflebean, CEO\r\nBayfront Capital, LLC\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\nbrian@bayfrontcapitalllc.com\r\nwww.bayfrontcapitalllc.com\r\n      \r\n\r\n\r\n￼\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER: Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-07-26 16:23:45','2025-12-09 19:17:42','2025-12-09 19:17:42','2025-12-09 19:17:42',NULL,NULL,NULL),
(519,4,'<f27edfdbe9d95fbcca6ca75d55c1587ecfca8124-20070249-110391335@google.com>',NULL,NULL,'Set up billing for Google Workspace Business Plus for mavrix.one','workspace-noreply@google.com','The Google Workspace Team','<div>\r\n  <html xmlns:v=urn:schemas-microsoft-com:vml dir=ltr lang=en style=\"margin:0; padding:0\">\r\n    <meta http-equiv=Content-Type content=\"text/html; charset=utf-8\">\r\n    <meta name=viewport content=width=device-width>\r\n    <style>@media only screen{html{min-height:100%;background:#fafafa}}@media only screen and (max-width:640px){.small-float-center{margin:0 auto!important;float:none!important;text-align:center!important}}@media only screen and (max-width:640px){table.body img{width:auto;height:auto}table.body center{min-width:0!important}table.body .container{width:344px!important}table.body .columns{height:auto!important;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:40px!important;padding-right:40px!important}table.body .columns .columns{padding-left:0!important;padding-right:0!important}table.body .collapse .columns{padding-left:0!important;padding-right:0!important}th.small-1{display:inline-block!important;width:8.33333%!important}th.small-3{display:inline-block!important;width:25%!important}th.small-4{display:inline-block!important;width:33.33333%!important}th.small-6{display:inline-block!important;width:50%!important}th.small-8{display:inline-block!important;width:66.66667%!important}th.small-9{display:inline-block!important;width:75%!important}th.small-12{display:inline-block!important;width:100%!important}.columns th.small-12{display:block!important;width:100%!important}table.menu{width:100%!important}table.menu td,table.menu th{width:auto!important;display:inline-block!important}table.menu.vertical td,table.menu.vertical th{display:block!important}table.menu[align=center]{width:auto!important}}</style>\r\n    <span class=preheader style=color:#fafafa;display:none!important;font-size:1px;line-height:1px;max-height:0;max-width:0;mso-hide:all!important;opacity:0;overflow:hidden;visibility:hidden></span>\r\n    <table class=body style=Margin:0;background:#F8F9FA!important;border-collapse:collapse;border-spacing:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;height:100%;line-height:inherit;margin:0;padding:0;vertical-align:top;width:100%;text-align:left>\r\n      <tr style=padding:0;vertical-align:top>\r\n        <td class=center align=center valign=top style=-moz-hyphens:none;-webkit-hyphens:none;Margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all>\r\n          <center data-parsed=\"\" style=min-width:600px;width:100%>\r\n\r\n            <table align=center class=\"container float-center\" style=\"Margin:0 auto;background:#fafafa;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:left;vertical-align:top;width:600px\"><tbody><tr style=padding:0;vertical-align:top><td style=-moz-hyphens:none;-webkit-hyphens:none;Margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all>\r\n              <table class=\"row header\" style=background:#F8F9FA;border-collapse:collapse;border-spacing:0;display:table;font-size:12px;padding:0;position:relative;vertical-align:top;width:100%><tbody><tr style=padding:0;vertical-align:top>\r\n                <th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0 auto;padding:0;padding-bottom:24px;padding-left:40px;padding-right:40px;padding-top:12px;width:560px\"><table style=border-collapse:collapse;border-spacing:0;margin-bottom:0;padding:0;vertical-align:top;width:100%><tr style=padding:0;vertical-align:top><th style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0;text-align:left>\r\n\r\n                  <img src=https://storage.googleapis.com/support-kms-prod/GaOvClLdIVxiDUB6sr9FETwxw9I7ykkXR856 alt=\"Google Workspace\" height=30 style=-ms-interpolation-mode:bicubic;clear:both;display:block;margin-top:24px;max-height:30px;max-width:100%;outline:0;text-decoration:none;width:auto>\r\n\r\n                </th>\r\n<th class=expander style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0!important;visibility:hidden;width:0></th></tr></table></th>\r\n              </tr></tbody></table>\r\n\r\n              <table class=\"row info\" style=align-items:center;background:#fff;border-collapse:collapse;border-color:#E8EAED;border-spacing:0;border-style:solid;border-width:1px;display:table;padding:0;position:relative;vertical-align:top;width:100%><tbody><tr style=padding:0;vertical-align:top>\r\n                <th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0 auto;padding:0;padding-bottom:0;padding-left:40px;padding-right:40px;width:560px\"><table style=border-collapse:collapse;border-spacing:0;padding:0;vertical-align:top;width:100%><tr style=padding:0;vertical-align:top><th style=\"Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0 0 24px;text-align:left\">\r\n\r\n<div><title>Set up billing for Google Workspace</title></div>\r\n<h2 style=\"margin:0;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:24px;font-weight:700;line-height:30px!important;margin-bottom:24px;margin-top:24px;padding:0;word-wrap:normal\">You have until July 28, 2025 to finish setting up your Google Workspace Business Plus</h2>\r\n\r\n<p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;margin:0;margin-bottom:16px;padding:0>Add a form of payment to retain access to Google Workspace. You’re receiving this email because you created an account but didn’t complete the setup.</p>\r\n\r\n<table class=accountinfo role=presentation style=align:center;background:#f3f3f3;border-collapse:collapse;border-spacing:0;margin-bottom:12px;padding:0;vertical-align:top;width:100%>\r\n  <tbody>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <th class=accountinfo style=\"margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:inherit;line-height:inherit;margin:0;padding:16px 32px 0 32px\">\r\n      <h3 class=accountinfo style=\"margin:0;margin-bottom:8px;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;line-height:26px!important;margin:0;margin-bottom:12px;margin-top:none!important;padding:0;text-align:center;word-wrap:normal\">Your Google Workspace account</h3>\r\n      </th>\r\n    </tr>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <td class=accountinfo style=\"-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0 32px 0 32px;vertical-align:top;word-wrap:keep-all\">\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:0;padding:0><strong>Username:&nbsp;</strong></p>\r\n\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:16px;padding:0><a class=noclick style=margin:0;color:#1f1f1f;font-family:inherit;font-weight:inherit;margin:0;padding:0;text-decoration:none>rick@mavrix.one</a></p>\r\n      </td>\r\n    </tr>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <td class=accountinfo style=\"-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0 32px 0 32px;vertical-align:top;word-wrap:keep-all\">\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:0;padding:0><strong>Domain:&nbsp;</strong></p>\r\n\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:16px;padding:0><a class=noclick style=margin:0;color:#1f1f1f;font-family:inherit;font-weight:inherit;margin:0;padding:0;text-decoration:none>mavrix.one</a></p>\r\n      </td>\r\n    </tr>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <td class=accountinfo style=\"-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0 32px 0 32px;vertical-align:top;word-wrap:keep-all\">\r\n      <table class=\"button radius thumbnail\" role=presentation style=\"margin:9px 0 24px 0;border:none;border-collapse:collapse;border-radius:3px;border-spacing:0;box-shadow:0 0 0 1px rgba(10,10,10,.2);display:inline-block;line-height:0;margin:9px 0 24px 0;margin-bottom:inherit;max-width:100%;padding:0;transition:box-shadow .2s ease-out;vertical-align:top;width:auto\">\r\n        <tbody>\r\n          <tr style=padding:0;vertical-align:top>\r\n            <td style=-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all>\r\n            <table style=border-collapse:collapse;border-spacing:0;padding:0;vertical-align:top;width:100%>\r\n              <tbody>\r\n                <tr style=padding:0;vertical-align:top>\r\n                  <td style=-moz-hyphens:none;-webkit-hyphens:none;margin:0;background:#1A73E8;border:none;border-collapse:collapse!important;border-radius:3px;color:#fff;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all><a href=https://admin.google.com style=\"margin:0;border:0 solid #1A73E8;border-radius:3px;color:#fff;display:inline-block;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:500;line-height:24px;margin:0;padding:8px 16px 8px 16px;text-decoration:none\">Add a form of payment</a></td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n            </td>\r\n          </tr>\r\n        </tbody>\r\n      </table>\r\n\r\n      <p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;margin:0;margin-bottom:16px;padding:0><em>https://admin.google.com</em></p>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<h3 style=\"margin:0;margin-bottom:8px;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;line-height:26px!important;margin:0;margin-bottom:12px;margin-top:20px;padding:0;word-wrap:normal\">Questions?</h3>\r\n\r\n<p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;margin:0;margin-bottom:16px;padding:0>The Google Workspace support team is available by phone, chat, and email. <a href=https://support.google.com/a/answer/1047213?utm_source=9055487&amp;utm_medium=email style=Margin:0;color:#1A73E8;font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400;line-height:1.3;margin:0;padding:0;text-decoration:none>Contact us</a>, or learn more about <a href=https://support.google.com/a/answer/2633430?utm_source=9055487&amp;utm_medium=email style=Margin:0;color:#1A73E8;font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400;line-height:1.3;margin:0;padding:0;text-decoration:none>setting up payments and billing</a>.</p>\r\n\r\n<p class=regards style=\"color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;line-height:24px;margin:0;margin-bottom:0!important;margin-top:8px;padding:0\">Sincerely,</p>\r\n\r\n<p class=signoff style=\"margin:0;margin-bottom:16px;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;line-height:24px;margin:0;margin-bottom:0px!important;padding:0\">The Google Workspace Team</p>\r\n            </th></tr></table></th>\r\n            </tr></tbody></table>\r\n\r\n            <table class=\"row footer\" role=presentation style=background:#F8F9FA;border-collapse:collapse;border-spacing:0;display:table;margin-top:0;padding:0;position:relative;vertical-align:top;width:100%><tbody><tr style=padding:0;vertical-align:top>\r\n              <th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0 auto;padding:0;padding-bottom:0;padding-left:40px;padding-right:40px;width:560px\"><table style=border-collapse:collapse;border-spacing:0;padding:0;vertical-align:top;width:100%><tr style=padding:0;vertical-align:top><th style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:24px;text-align:left>\r\n\r\n                <img src=https://storage.googleapis.com/support-kms-prod/GaOvClLdIVxiDUB6sr9FETwxw9I7ykkXR856 alt=\"Google Workspace\" height=30 style=-ms-interpolation-mode:bicubic;clear:both;display:block;margin-bottom:14px;max-width:100%;max-height:30px;outline:0;text-decoration:none;width:auto>\r\n                <p style=Margin:0;Margin-bottom:16px;color:#6C737F;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:14px;padding:0>\r\n            © 2025  Google LLC&nbsp;1600 Amphitheatre Parkway, Mountain View, CA 94043\r\n                </p>\r\n                <p style=Margin:0;Margin-bottom:16px;color:#6C737F;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:14px;padding:0>\r\n            <em>You’re receiving this mandatory email service announcement to update you about important changes to your Google Workspace product or account.</em>\r\n            </p>\r\n            </th>\r\n<th class=expander style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0!important;visibility:hidden;width:0></th></tr></table></th>\r\n            </tr></tbody></table>\r\n            </td></tr></tbody></table>\r\n\r\n          </center>\r\n        </td>\r\n      </tr>\r\n    </table>\r\n    <!-- prevent Gmail on iOS font size manipulation -->\r\n   <div style=\"display:none;white-space:nowrap;font:15px courier;line-height:0\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </div>\r\n\r\n</html>\r\n</div>','From: \"The Google Workspace Team\" [workspace-noreply@google.com]\r\nSubject:  Set up billing for Google Workspace Business Plus for mavrix.one\r\n\r\nSet up billing for Google Workspace\r\n\r\n## You have until July 28, 2025 to finish setting up your Google Workspace  \r\nBusiness Plus\r\n\r\nAdd a form of payment to retain access to Google Workspace. You\'re  \r\nreceiving this email because you created an account but didn\'t complete the  \r\nsetup.\r\n\r\n### Your Google Workspace account\r\n\r\n**Username: **\r\n\r\nrick@mavrix.one\r\n\r\n**Domain: **\r\n\r\nmavrix.one\r\n\r\nAdd a form of payment (https://admin.google.com)\r\n\r\nhttps://admin.google.com\r\n\r\n### Questions?\r\n\r\nThe Google Workspace support team is available by phone, chat, and email.  \r\nContact us  \r\n(https://support.google.com/a/answer/1047213?utm_source=9055487&utm_medium=email),  \r\nor learn more about setting up payments and billing  \r\n(https://support.google.com/a/answer/2633430?utm_source=9055487&utm_medium=email).\r\n\r\nSincerely,\r\n\r\nThe Google Workspace Team\r\n\r\n\r\n(C) 2025  Google LLC 1600 Amphitheatre Parkway, Mountain View, CA 94043 *   \r\nGoogle Asia Pacific Pte. Ltd., 8 Marina View, #30-01, Asia Square 1,  \r\nSingapore 018960  *  Google Cloud EMEA Ltd., 70 Sir John Rogersons Quay,  \r\nDublin 2, Ireland.\r\n\r\nYou\'re receiving this mandatory email service announcement to update you  \r\nabout important changes to your Google Workspace product or account.',0,0,0,0,0,0,'2025-07-27 01:35:17','2025-12-09 19:17:42','2025-12-09 19:17:42','2025-12-09 19:17:42',NULL,NULL,NULL),
(520,4,'<GoUYf4ozQW6o46kwUMNCgw@geopod-ismtpd-16>',NULL,NULL,'Project Rambo - Data Room Access','service@datasite.com','Datasite','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\"> <html> <head> <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"> <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"> <style type=\"text/css\">h1{font-weight:500;font-size:20px;line-height:24px;color:#212121}h2{font-weight:400;font-size:18px;line-height:22px;color:#212121}p{font-size:14px;font-weight:300;line-height:18px;color:#212121}span{font-size:14px;font-weight:300;line-height:18px;color:#212121}ul,ol{padding-top:5px;font-size:14px;font-weight:300;line-height:20px;color:#212121}.ds-container{font-family:Arial,Helvetica,sans-serif;font-size:14px;font-weight:300;line-height:18px;color:#212121;width:600px}.ds-section{padding:10px 20px 10px 20px}.ds-link__text{font-size:14px;font-weight:300;line-height:18px;color:#4a65ff;text-decoration:underline}.ds-goTo{margin:10px}.ds-goTo__link{text-decoration:none;color:#d45c29}.ds-goTo__text{font-size:14px;font-weight:300;line-height:18px;color:#d45c29}.ds-button-container{cellpadding:0;cellspacing:0}.ds-button-fullwidth{width:550px}.ds-button-default{width:250px}.ds-button-primary{background:#ff9f27;border:1px solid #ff9f27;border-radius:2px;text-align:center}.ds-button-secondary{background:#f2f1f4;border-radius:2px;border:1px solid #4a65ff;color:#4a65ff;text-align:center}.ds-button__link{display:block;padding:10px;color:#fff;text-decoration:none;height:100%;width:100%;box-sizing:border-box}.ds-button-text{font-size:14px;font-weight:400;line-height:18px;letter-spacing:.4px;text-transform:capitalize !important}.ds-button-text-primary{color:#000}.ds-button-text-secondary{color:#4a65ff}.ds-card__container{min-width:268px;max-width:100%;padding:10px}.ds-card__container+.ds-card__container{padding-left:0}.ds-card{height:110px;min-height:110px;border-radius:5px}.ds-card__image{display:block;justify-self:center;min-width:70px;max-width:70px}.ds-card__text{padding:0 4px 0 4px}#ds-marketing__card1-and{margin-left:4px}.ds-card__text>*{margin:0}.ds-footer-link-wrapper{margin-bottom:10px;text-align:center}.ds-footer-link{text-decoration:none}.ds-footer-link__text{font-size:12px;font-weight:400;line-height:14px}@media only screen and (max-width:768px){.ds-container{width:100% !important}.ds-responsive-table td{display:block;width:100%;vertical-align:middle}.ds-responsive-td{display:block;width:100%;vertical-align:middle}.ds-responsive-margin{margin-top:10px}.ds-card__container{display:block}.ds-card__container+.ds-card__container{padding-left:10px}.ds-footer-link-wrapper{margin-bottom:16px}.ds-footer-vertical-divider{display:none}}</style> </head> <body style=\"background-color: #F2F1F4; padding-top: 15px; padding-bottom: 15px;\"> <table align=\"center\" cellspacing=\"0\" cellpadding=\"0\" style=\"border: 1px solid #e8e8e8; background: #fff;\" class=\"ds-container\"> <tbody> <tr> <td class=\"ds-section\" style=\"padding-top: 20px; padding-bottom: 0;\"><img decoding=\"async\" src=\"https://app.global.datasite.com/notification-settings-mfe/images/DSlogo.png\" alt=\"Datasite Logo\" id=\"ds-header__default-logo\" width=\"139\" height=\"38\"></td> </tr> <tr> <td id=\"ds-main\" class=\"ds-section\" style=\"padding-bottom: 20px\"> <p><b>Project:</b> Rambo</p> <p><strong>You\'ve&nbsp;been&nbsp;invited&nbsp;to&nbsp;a&nbsp;Datasite&nbsp;project!</strong></p> <p>Your&nbsp;access&nbsp;to&nbsp;project&nbsp;Rambo&nbsp;has&nbsp;been&nbsp;activated.&nbsp;If&nbsp;you&nbsp;already&nbsp;have&nbsp;a&nbsp;Datasite&nbsp;account,&nbsp;the&nbsp;project&nbsp;will&nbsp;appear&nbsp;on&nbsp;your&nbsp;Datasite&nbsp;launchpad&nbsp;when&nbsp;you&nbsp;log&nbsp;in.&nbsp;If&nbsp;you&nbsp;do&nbsp;not&nbsp;already&nbsp;have&nbsp;an&nbsp;account,&nbsp;please&nbsp;register&nbsp;for&nbsp;access.&nbsp;This&nbsp;link&nbsp;will&nbsp;be&nbsp;active&nbsp;for&nbsp;30&nbsp;days.</p> <table class=\"ds-button-container\"> <tbody> <tr> <td class=\"ds-button-primary ds-button-default\"><a class=\"ds-button__link\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioX29qGlWqdpOskGa5k2RFn33AQGVH9zUcevkZL-2BOWZPRBDaBQalQ-2FtI4xfzbOtajYfODrg-2B7-2B77liF7kyPrjt5W6E3LiXn1-2FK9AhHmPKB1yrxVEexRAZiPCXBF9oXbxColugQ4hRu8mCbxq-2B9ECDQP-2ByC4tKuCLV-2BRj3-2BMen3DQxQJYO91E-2BX2Tzjr-2BhxVbGVCMeXwLGv-2B9wfZxvFJhTmp1kueX79PNlPYlAnSXtf3ckyNrf6uq2wjPSnetHDfB-2FIe12pkz2fYK10aNAolSt8lAqqkYvUulIhg7AyBE5poM6EM3d3hEpDJrgosyl7puF-2B0-3DE33l_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f5AGrH4zfnx-2ByEauB4Q9yjx7wAkG3eR2UoFOvfkGcAyeXY-2F5wbPE-2FYj0fLlJnJmMYsBfVDNuORdFho-2F2tsQiLimYCt7SJ-2FGPk0dNan-2Bc3W8jlR345OUwbTe-2BzMpQBmI3K084oMWf7zbtw-2BOZSaQ3cRDTU1FFAffqBt47QSCx0kUrQ-3D-3D\" target=\"_blank\"> <span class=\"ds-button-text ds-button-text-primary\">I AGREE / REGISTER NOW *</span> </a></td> </tr> </tbody> </table> <p>* By clicking \"I Agree\", I acknowledge that I have read and accept <a class=\"ds-link\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioUlEsBLx05bl6bdle0c5YHVoRQKCRgrRSxGUTT8cVz-2FmW8W6039VZHCamVsJ7V-2B4SOqaFQk-2BZ4RfsI5HyA3VT6Sf-2FqjThwbCfrwKKaMbFZd1Q9NxejByaVfJP5WY6WgYHBOY-2FQiE6cTWyJDaj-2Fci2FJZvJ-2FQ6aXczSfIR6EB5RaSoq82dOARlFTynZPexqrw-2FWsgn3ZHhXQbOhy5PHvsykHNQip_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f5AGrH4zfnx-2ByEauB4Q9yjxHAsZlsSCpUP4ixSIivA1Sq2zaHJgn3gfCzq6tHZUUPT8yPaX7JoCBTGkVogh-2BmYr87R9U6W4PvWbJowA5wusEKIGDZpt9-2BzRGP2-2Fst6FoW3IcwHupkS1Obe9J6OZky-2BO7exLIj5bwbO-2BP9AacX3G4Q-3D-3D\" target=\"_blank\"> <span class=\"ds-link__text\">Datasite\'s Terms of Use</span> </a> and <a class=\"ds-link\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioUlEsBLx05bl6bdle0c5YHV32AReeBByqdTGC41P9vHVjuZ3FEkc-2BtNL8n-2BIE2a3X3mOoq3n2YVIGeFir5wnYszoLEroUgBMH-2BPrccxhLQx-2Ba15iHAnBkyy5Vbi0Xg1hmoR4BfvXUxjlsdfxZMqQxjPOpEXixnKmc9WP5-2FK1jyelWfsVJUYZuOulGryrFkq9-2FHrrYH04HVn2xIWqvm222-2FnyfRz_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f5AGrH4zfnx-2ByEauB4Q9yjxHcNZmu-2BaCXYevppBy9H2kIU0nRJryot366V8Az9CU3QShBTTj0BMUCDH7dKkuYTKi4YRkjEr49Tu9IXo9MoWqTxVYPQAWwcjEIO570wfz8BB1oTW925tdl6GqkdlK0kd1AMX8N9V9lI8LnnF9zBcPw-3D-3D\" target=\"_blank\"> <span class=\"ds-link__text\">Privacy Notice.</span> </a></p> </td> </tr> <tr> <td style=\"border-top: 1px solid #f2f1f4; padding-bottom: 10px\"></td> </tr> <tr> <td class=\"ds-section\"> <table style=\"background: #f2f1f4;\" width=\"100%\"> <tbody> <tr> <td class=\"ds-card__container\"> <table id=\"ds-marketing__card1\" width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#ffffff\" class=\"ds-card\"> <tbody> <tr> <td style=\"width: 80px; padding-left: 10px\"><img decoding=\"async\" src=\"https://app.global.datasite.com/notification-settings-mfe/images/marketingV2.png\" alt=\"A group of office workers collaboratively gathered around a computer, actively engaging in providing assistance to an online user.\" height=\"70\" class=\"ds-card__image\"></td> <td> <div class=\"ds-card__text\"> <div style=\"margin-bottom: 4px;\"> <b id=\"ds-marketing__card1-titleV2\">New to Datasite?</b> </div> <a id=\"ds-marketing__card1-link\" class=\"ds-link__text\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioVdt6QVTVY2AhyfToC-2Bkl09L3j-2F7BVR8Q94vNECStu-2B10BfHXIORGBZkyijCT6HDJiO5sWhEP6-2Fcyzqw3ejvJAwyQ6ST6KKKk05tjZSgct3oji7SMishzAcFKYqqJEWhIt9DC9nKwWg4AIJEPPuof0HYy0pshRwypDInx3gSAH5BsshO7ah7osxh7dYBMSXdrC4Td5Teuk7T9zoUq1aqvTBI3wS-2B1yiZl9W5cQgbXMzWM7pm3BrVpqnJLqRNhQhGcoChTaywdpJrmK3eJEYPfdsWeQ5_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f5AGrH4zfnx-2ByEauB4Q9yjxbhq0yEz6KomcU7B6gKJ5r5cY0APDsU06pg1LMZLPJ7rqphVUTk33wn2T-2FIi8a-2B29P6lwom-2FWAL6goXCeL0HQbBN2FKjUz3xFRydpAaioQ1gIh9TkhZhS-2FtnA3Pw6gYniiSJ2tEiiRZA2MU-2F3o237kw-3D-3D\" target=\"_blank\">Get Assistance</a><span id=\"ds-marketing__card1-and\">&</span> <a id=\"ds-marketing__card1-link2\" class=\"ds-link__text\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioVdt6QVTVY2AhyfToC-2Bkl09L3j-2F7BVR8Q94vNECStu-2B10BfHXIORGBZkyijCT6HDJgfvUUsaD5jZdXBhCFEY-2Bnc3CnJUDNaOcRgIvFngYnoNMKIbTYukS3IrLB7e-2FB-2FClBolbCFaqgufUDjuHU4Ljd3jCsv1lBzTcJx4AkzcA5oSg6g39Ljmr88JHBZdg0nPpPqYzS5t5t2rmZ-2FVeNA1Fipmu2MdTTlnLBm3ytAZxAPA2bSHl-2BHaGumhPSjxOCwGDzrA01WygOu5GpkOxTWniebU5FToWySE5uC4L-2Bxx-2BNwTA-3D-3Dq6v6_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f5AGrH4zfnx-2ByEauB4Q9yjxg-2FGN3htcwCz8nNeiVu3dxokfj1y68loBY3p04b6MYgzH72gGrBU5LL8Xc-2Bm2zZzd8UJsAGed2utcFv9sekLjs5i3K-2BPWO66PigDdGGQGcRIyeHFJ2MjLgNDMQOO1csugeNcVy43OR19ObshBu4R-2FVg-3D-3D\" target=\"_blank\">Training</a> </div> </td> </tr> </tbody> </table> </td> <td class=\"ds-card__container\"> <table id=\"ds-marketing__card2\" width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#ffffff\" class=\"ds-card\"> <tbody> <tr> <td style=\"width: 80px; padding-left: 10px\"><img decoding=\"async\" src=\"https://app.global.datasite.com/notification-settings-mfe/images/datasite_email_project_invite_qr_code.png\" alt=\"A group of office workers collaboratively gathered around a computer, actively engaging in providing assistance to an online user.\" height=\"70\" class=\"ds-card__image\"></td> <td> <div class=\"ds-card__text\"> <div style=\"margin-bottom: 4px;\"> <b id=\"ds-marketing__card2-title\">Datasite Mobile App</b> </div> <div style=\"margin-bottom: 4px;\"> <span id=\"ds-marketing__card2-subtitle\">Manage deals anywhere</span> </div> <a id=\"ds-marketing__card2-link2\" class=\"ds-link__text\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioW0LL0DX047ZCG3fiDnJlDLyz3fDlgEp92HdbUC57-2FX81Rkje0-2BkXyvTR3kmgkOwmwK-2B6cldQxde9nDp1If9MVU0Sy-2Bm0vO160ue-2FsN6nw6MBHtBaDSZfCNSrJcza3sJsTRxQyEKNUBqXcznTND1jPjSs5tUbl0B8HEgqbvd1SvQDd1BJWjImqc5j9nNevDQMLoU4tnis5-2BK8L-2Fxx5qtKBZX55D_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f5AGrH4zfnx-2ByEauB4Q9yjxPM0veYSMaXGlWCJtRlPDs3XdAESTzxnanVAarP6-2BLRieVqL6sntalIkuT14smzZVE605WxPchiyBeJ6rlwuh-2BAicp5Qppn2spcWUC5bItReLo5p8w4lAiJFRMie1-2BZbaYGYg-2FJ1-2B8Y9BzG-2BJ729zTw-3D-3D\" target=\"_blank\">Learn More</a> </div> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"ds-section\"> <p id=\"ds-legal\" style=\"margin: 0\">This email communication may contain CONFIDENTIAL or LEGALLY PRIVILEGED information. If you are not the intended recipient, please contact <a class=\"ds-link__text\" href=\"mailto:service@datasite.com\" target=\"_blank\">Datasite</a> by email, available 24 hours a day, 7 days a week. Also, delete this communication and any copy immediately. Thank you. <br></p> </td> </tr> <tr> <td class=\"ds-section\"> <p style=\"margin: 0\"><span>Manage the frequency of alerts in your Datasite</span> <a class=\"ds-link__text\" id=\"ds-notifications-settings__link\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioUt9543XPJZjjegwlekitMOmGmTMgN2gurI4z3RF0PdSFaj0qJ39yzoYp1Avpmw3Yb-2Byp6A5h20T5b-2BGHhJvhidfB2czQL9sh0pjqDg96UrR2auDKPOQtZkfIHJjZQI-2BrOUvStO0JOrlyQp9lhkS8cRv-2FYfYSxJCuiu3z04gjBtgH5qC-2BynVYNdh-2FoPbAmEivVkm576BfJSW6k088MXDfUfJvAh8yXJ-2Blc70aTxo4ImxsCKyOObg3i-2Bqo3PXr3GMiSpSCMtzvGZ-2FxawxzmySZ12HqxD_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f5AGrH4zfnx-2ByEauB4Q9yjxyNw6kSz3tv-2BQ-2B4Hmoj8bDkeLsVhZU4Z-2BsM-2B5hVz5MThZzL90zzTduw6Yf0xwU8g4wXA33KbmmCRmGlRVnn9Z6dYYET8AV0UWY1OYWG1dm3kE7nRQCgIfPyaRl4DANlsQcaR7Id6QSHBQI4JMm5EF1g-3D-3D\" target=\"_blank\">Notification Settings</a></p> </td> </tr> <tr> <td class=\"ds-section\"> <table class=\"ds-responsive-table\" align=\"center\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"> <tbody> <tr> <td class=\"ds-footer-link-wrapper\" style=\"padding-right: 4px;\"><a class=\"ds-footer-link\" id=\"ds-footer__terms-of-use\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioUlEsBLx05bl6bdle0c5YHVoRQKCRgrRSxGUTT8cVz-2FmW8W6039VZHCamVsJ7V-2B4SOPTNuHtDU8Ft3HTTwA18-2BdGtm-2FsAYqUmzLl3OHzHN4yxEUp-2F-2FN0o3ugXqqhnFnduugR7odyeKAWIqVzwe1aptw-2B-2FKUxEVZhJo9FO7Oam2qQ9T1FdSQS64-2BKrtQx4XVSvE7cOozX2ge1N49my4w6yBVj2BJ_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f5AGrH4zfnx-2ByEauB4Q9yjxyKsFxEqPzD-2B7B8Qu3zJq75kn8VzKZlA35GLQzeY-2FZdUW6gxRPvwvy6k3UacrGdqYtQ1gESPFYeXpbyBWDLKz-2B-2Bh8FDP-2BXAxZkr67Te413BRsac3YLKrC9yWp8WhE0vk1SMddWKTm30AcLaU5-2FfLhxQ-3D-3D\" target=\"_blank\"> <span class=\"ds-footer-link__text\">Terms of Use</span> <span class=\"ds-footer-vertical-divider\">|</span> </a></td> <td class=\"ds-footer-link-wrapper\" style=\"padding-right: 4px;\"><a class=\"ds-footer-link\" id=\"ds-footer__privacy-notice\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioUlEsBLx05bl6bdle0c5YHV32AReeBByqdTGC41P9vHVjuZ3FEkc-2BtNL8n-2BIE2a3X14JG9sTo8Ku7-2FnRBdaFeaTtV8m3yfzLHsjHtaBF-2BG1ZWE9nQb-2BjlxE8LoVhhfJuNayt-2FJacBX5-2BoZaDtmzyyGGjmtH7aMS-2B8gEDkeKE-2FTmS-2FaPxMIBFiJ5nb8Dz6nvwAmr0v0ynfmP1x6-2Bbrh-2Fd8sNvyyp_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f5AGrH4zfnx-2ByEauB4Q9yjx4Rk5V3Iv7cyRrrz0C5e9xmiyXLCfkAzjG5n1EGtE9lnn1VXq9Kpv0MRCvT7T-2F2OwHuZV3MN7mHtq3wFpX7Js7pC2zC30EetrXuvxiDOk1dhwd-2Fb-2FgAhRCjgpbRpPLxmLOko-2Fs-2BtanaB4gcx5T4FY9A-3D-3D\" target=\"_blank\"> <span class=\"ds-footer-link__text\">Privacy Notice</span> <span class=\"ds-footer-vertical-divider\">|</span> </a></td> <td class=\"ds-footer-link-wrapper\" style=\"padding-right: 4px;\"><a class=\"ds-footer-link\" id=\"ds-footer__trademark-information\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioUlEsBLx05bl6bdle0c5YHVD1fOpg61QCxdoGlqfk0wt82POd5k-2Bti7xGaUX0Xy8wwDjMAyJiECUunoDHX58-2F08Lcq1abcdpll-2BMeh8PSpKV5Sc9BuujOpisEc4kWA5I1moIY94w6HHBWDz3g1eUX8Jwo8GVrbS445dMtMhIVrXixfXRftXd5bqTz-2Fow-2BJwSZYIInYHK49UfuOUT-2F-2FW5BnURAaNE4hloMZmIauiGYSflw-3D-3DvjXe_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f5AGrH4zfnx-2ByEauB4Q9yjxhEe086laj4wNBXZI8iclLgpLv-2F0SfjBzkWRjCxY2yRL0wA6uKNuWPuPAArbL-2BMYiJZWp2LgfYYo8UtBaA4-2B0LOJ2k-2FoNhGjl1r8-2BYM5PmcGNDW4BB2PXmPWio1mFN-2BfJ9y3aG-2B5C4xVzSfyFz7lSPg-3D-3D\" target=\"_blank\"> <span class=\"ds-footer-link__text\">Trademark Information</span> <span class=\"ds-footer-vertical-divider\">|</span> </a></td> <td class=\"ds-footer-link-wrapper\" style=\"padding-right: 4px;\"><a class=\"ds-footer-link\" id=\"ds-footer__contact-us\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioUlEsBLx05bl6bdle0c5YHVwFGEPP9yVxr3vghnZZA-2FZxS0sRyO57Fa-2BvjQRQ7vw7ngwrg0T3-2BF2OTqyxmwdxLp6dQtjJjDBFUgDzlPdZf-2Fz4Tj6LGIvI3Gj3wLZPI9QJOIAN-2F8nJZ8NfQ94QjXZYGtJkLx2Mwpd8ZtUmHt5zgTwyxoPqX08OwSX1SXXkiRHaXtIMMGTIE8JyNok7JmmkkL9fi-2FYFOfn5gS9cgSEfAF1g-3D-3DiYeA_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f5AGrH4zfnx-2ByEauB4Q9yjxUg5RBRcToa2b8WBhFfHVuTozblyegP97lOi5a38GKSqRFHZ1ikQ5Cw8nBJBARquo5Kbg1LAc4RG9InM6yEry8eoc1BZ3pHnNfEug9ztHUxGjYOT2rFlAPLsF-2Fi0OXBNIV2jjUuIa8niP-2F3iGhloEJw-3D-3D\" target=\"_blank\"> <span class=\"ds-footer-link__text\">Contact Us</span> <span class=\"ds-footer-vertical-divider\">|</span> </a></td> <td class=\"ds-footer-link-wrapper\"><a class=\"ds-footer-link\" id=\"ds-footer__merrill-corp\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioUlEsBLx05bl6bdle0c5YHVb5iKvdKeBbxAytzN79z-2Br-2FUr5-2FQSulkWHNnHQyQl-2BiDRhhoRaj-2Ffz6T0wMtBNj8FnzCHV7-2FWbIms8RWglj2acunjdro7W-2Bz74sC61QTQilT8OuAealJOKWYlt8aZB-2F1t5rp8PGRCdb6H4XvexQ-2BliOFBylaaQ4oZiphhvEScjdk-3DaZai_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f5AGrH4zfnx-2ByEauB4Q9yjxUqlj-2F2pmVTdrMBHq6A02UE46-2FdiXh6qtxn2xiU0Q6f6DsvRLB6gHewfZJoHTH3PV0vLIAotb6RIve2df3aoJ7A3-2Bei4RzEQCfsMmb6AbcPg7dEvTUZ5Mow5c-2B-2FW0GLEd1TvKZHTiE-2F5uQ8rzUNlK1Q-3D-3D\" target=\"_blank\"> <span class=\"ds-footer-link__text\">Datasite.com</span> </a></td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"ds-section\"> <table align=\"center\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"> <tbody> <tr> <td style=\"padding-right: 30px;\"><a id=\"ds-social-media__linkedin\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioWZabQ1xn8zEotOfdiU-2B3kmG39vT5vSZBeS42FE2uDWZymQOcUJyRVfyaeRkHwGdGtUDUaZmqxhXP-2BiZL1QKCdtIqKqqFmrAQCXu1rG74q3qfrJTrh9Lp57wP6PiBMQnb5b660e43mLEFal8oX27fEHCCdbOeiksP-2BTtnRD1jD4pW-2FxQ31tFGRGNot0eGSyJS18JHbFZ1V91djNX8qklaBxaCIqjp-2Fw7vwxrybtLMbuNw-3D-3Db5QO_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f5AGrH4zfnx-2ByEauB4Q9yjx50ToH8JkeAFQ6XczrO08w5dF2DEimc1ie0LpdbuqxlDQfGGqsRO9nXCjIcUCjci0PTJa7Gcmu7yz8UDHjUQIPX9CrXC57n62AIoMgLnNgPbYbcXboMhNo7oFFAO5iyysfX9iArMJgDYo9BVtAJgy5w-3D-3D\" target=\"_blank\"> <img decoding=\"async\" width=\"32\" height=\"32\" src=\"https://app.global.datasite.com/notification-settings-mfe/images/linkedInGrey.png\" alt=\"LinkedIn Logo\"> </a></td> <td style=\"padding-right: 30px;\"><a id=\"ds-social-media__instagram\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioX7tjIuUuSLS6Hg5rXRnzd9sv4k2hIqaQsRjpMKLG4wdTEfO0qa47sWRbfM-2BdUtnhc314iSaN5HdrByXTwlGeFR5DTSW8arvK7EXWMJMuqHFjKIhqpARipe0kWJmVXts7lGQfIY0xS9q2ZDeu5SLjmaUH6US9W2tv0iMNPSdqXA-2BVAK3fIaylO4c-2B91OBlh-2FQ5ajkhdD95rXcVCvIasev8n4L8WQOHNjNzK0QIKahSqPw-3D-3DX0Z3_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f5AGrH4zfnx-2ByEauB4Q9yjx0zuj8CFtgyv8RvshvHovmkePkjdx-2FSdG6jGoPdk2WMPfW3xKwUDKzBVtbpaWZmOUsLrrEsRHyNmNbw5IDJQP9LtT3LwTzVJdB6O1uiZEMqql49WH72dNVvxxaFvmT96SHBKGhBpxFEK597y9lg3tbQ-3D-3D\" target=\"_blank\"> <img decoding=\"async\" width=\"32\" height=\"32\" src=\"https://app.global.datasite.com/notification-settings-mfe/images/instagramGrey.png\" alt=\"Instagram Logo\"> </a></td> <td style=\"padding-right: 30px;\"><a style=\"color: #000000\" id=\"ds-social-media__youtube\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioXCbqZpqpBz3vOjD7EbAv8p3yNQg-2F2Wkqrhx5xhje2b-2F4DiRO6h3GENHir-2Fa2sbCUklOiZIQxhee1GNAYwWaxtK-2B-2F4c1DrNQC2tbDs-2BPq2AOyr46yTC47V9ur4KcPvwkJxRMRjXzeJmQcr4YfgyiWIg-2Fz48Dk6qupp3xIUIl7gRiQwOdQMWcXNn1rhUqOEd1Ybdd1yf6KlSIltCjz1A0hJDLbkb_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f5AGrH4zfnx-2ByEauB4Q9yjx-2BbOhVF9zJXo-2Fyci5ZwG1ayZcKpGK-2FHdzeUJtPBg3DXMGX-2FhE9ctM77Q1uiVlBajX-2FpC-2FGQpmZWblCkQgHZOYTg70w76ht7RHEQmCaVBqvA-2F1UNGC7ti-2FWEGNszBvySv-2BDjvbkz3zRzDp5aqB-2FGj7kw-3D-3D\" target=\"_blank\"> <img decoding=\"async\" width=\"32\" height=\"22\" src=\"https://app.global.datasite.com/notification-settings-mfe/images/youTubeGrey.png\" alt=\"YouTube Logo\"> </a></td> <td><a style=\"color: #ffffff\" id=\"ds-social-media__x\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioWk-2BSyhZF47MVUO4Vx8oTS8BSowz5IHQkk0E807-2BpV5m1-2BZNaVD5zP0-2B0ffC0AaSd2EdimVtsAJgRvO0RgshPNXxmv6Qttckue-2BlFepXEOS4fyymeJk1gfmyRw6oY8xdpuHUv8WuzIamDKvPrWk2aBKcFR-2BCJnZlFToOSNBjfzSSJWFiG8VvrIRq-2FiywvPbVZ7HKsbqBU8B3k1I7l4yrUF30MIY_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f5AGrH4zfnx-2ByEauB4Q9yjxsrMliXbvm8SsNXOw6XhMkDMtXXxTsm3NiwVJMx7YHL7VN14Bt3ZLGiOou5n93sl7p9GBx96-2B59bDYlGsBVcU6Tgm909TdlQLq8GjLBmaziErUuPhodxOybMLTvv5YXDXOIDVpXpzMbei6rWi2qAFrw-3D-3D\" target=\"_blank\"> <img decoding=\"async\" width=\"31\" height=\"32\" src=\"https://app.global.datasite.com/notification-settings-mfe/images/twitterGrey.png\" alt=\"Twitter Logo\"> </a></td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"ds-section\"> <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\"> <tbody> <tr> <td class=\"ds-responsive-td\" style=\"padding-bottom: 8px; vertical-align: bottom\"><span>? 2025 Datasite all rights reserved</span></td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img src=\"https://url1892.mail.datasite.com/wf/open?upn=u001.D6mC8SG6iITw2GIzPjAtwwzTvs-2FRotwEN8HLI6Ao7S4Z9C7Osi2ZjRbEl3cPxXHvYoRfvqaIx7Tt4SIchYydXcp-2F59nNMiKGvnelbZzXj4-2BJ-2FMQGgoCdBrdfhzulPM8CAKB10ZsL-2B9HFtyOcxR0dDUyjXWtEc1-2FcQjPmq7q5GBf1izv9EpQntKW2Co2DqboxNBe6lNKVz17Ta-2FYi6lh64A-3D-3D\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/></body> </html>\r\n','     h1{font-weight:500;font-size:20px;line-height:24px;color:#212121}h2{font-weight:400;font-size:18px;line-height:22px;color:#212121}p{font-size:14px;font-weight:300;line-height:18px;color:#212121}span{font-size:14px;font-weight:300;line-height:18px;color:#212121}ul,ol{padding-top:5px;font-size:14px;font-weight:300;line-height:20px;color:#212121}.ds-container{font-family:Arial,Helvetica,sans-serif;font-size:14px;font-weight:300;line-height:18px;color:#212121;width:600px}.ds-section{padding:10px 20px 10px 20px}.ds-link__text{font-size:14px;font-weight:300;line-height:18px;color:#4a65ff;text-decoration:underline}.ds-goTo{margin:10px}.ds-goTo__link{text-decoration:none;color:#d45c29}.ds-goTo__text{font-size:14px;font-weight:300;line-height:18px;color:#d45c29}.ds-button-container{cellpadding:0;cellspacing:0}.ds-button-fullwidth{width:550px}.ds-button-default{width:250px}.ds-button-primary{background:#ff9f27;border:1px solid #ff9f27;border-radius:2px;text-align:center}.ds-button-secondary{background:#f2f1f4;border-radius:2px;border:1px solid #4a65ff;color:#4a65ff;text-align:center}.ds-button__link{display:block;padding:10px;color:#fff;text-decoration:none;height:100%;width:100%;box-sizing:border-box}.ds-button-text{font-size:14px;font-weight:400;line-height:18px;letter-spacing:.4px;text-transform:capitalize !important}.ds-button-text-primary{color:#000}.ds-button-text-secondary{color:#4a65ff}.ds-card__container{min-width:268px;max-width:100%;padding:10px}.ds-card__container+.ds-card__container{padding-left:0}.ds-card{height:110px;min-height:110px;border-radius:5px}.ds-card__image{display:block;justify-self:center;min-width:70px;max-width:70px}.ds-card__text{padding:0 4px 0 4px}#ds-marketing__card1-and{margin-left:4px}.ds-card__text>*{margin:0}.ds-footer-link-wrapper{margin-bottom:10px;text-align:center}.ds-footer-link{text-decoration:none}.ds-footer-link__text{font-size:12px;font-weight:400;line-height:14px}@media only screen and (max-width:768px){.ds-container{width:100% !important}.ds-responsive-table td{display:block;width:100%;vertical-align:middle}.ds-responsive-td{display:block;width:100%;vertical-align:middle}.ds-responsive-margin{margin-top:10px}.ds-card__container{display:block}.ds-card__container+.ds-card__container{padding-left:10px}.ds-footer-link-wrapper{margin-bottom:16px}.ds-footer-vertical-divider{display:none}}          Project: Rambo You\'ve&nbsp;been&nbsp;invited&nbsp;to&nbsp;a&nbsp;Datasite&nbsp;project! Your&nbsp;access&nbsp;to&nbsp;project&nbsp;Rambo&nbsp;has&nbsp;been&nbsp;activated.&nbsp;If&nbsp;you&nbsp;already&nbsp;have&nbsp;a&nbsp;Datasite&nbsp;account,&nbsp;the&nbsp;project&nbsp;will&nbsp;appear&nbsp;on&nbsp;your&nbsp;Datasite&nbsp;launchpad&nbsp;when&nbsp;you&nbsp;log&nbsp;in.&nbsp;If&nbsp;you&nbsp;do&nbsp;not&nbsp;already&nbsp;have&nbsp;an&nbsp;account,&nbsp;please&nbsp;register&nbsp;for&nbsp;access.&nbsp;This&nbsp;link&nbsp;will&nbsp;be&nbsp;active&nbsp;for&nbsp;30&nbsp;days.     I AGREE / REGISTER NOW *     * By clicking \"I Agree\", I acknowledge that I have read and accept  Datasite\'s Terms of Use  and  Privacy Notice.                    New to Datasite?  Get Assistance& Training               Datasite Mobile App   Manage deals anywhere  Learn More              This email communication may contain CONFIDENTIAL or LEGALLY PRIVILEGED information. If you are not the intended recipient, please contact Datasite by email, available 24 hours a day, 7 days a week. Also, delete this communication and any copy immediately. Thank you.      Manage the frequency of alerts in your Datasite Notification Settings         Terms of Use |   Privacy Notice |   Trademark Information |   Contact Us |   Datasite.com                                  ? 2025 Datasite all rights reserved         \r\n',0,0,0,0,0,0,'2025-06-25 00:14:41','2025-12-09 19:25:45','2025-12-09 19:25:45','2025-12-09 19:25:45',NULL,NULL,NULL),
(521,4,'<jKl1drIuTLa7d-fmj0hL3g@geopod-ismtpd-15>',NULL,NULL,'Thank You For Registering','service@datasite.com','Datasite','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\"> <html> <head> <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"> <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"> <style type=\"text/css\">h1{font-weight:500;font-size:20px;line-height:24px;color:#212121}h2{font-weight:400;font-size:18px;line-height:22px;color:#212121}p{font-size:14px;font-weight:300;line-height:18px;color:#212121}span{font-size:14px;font-weight:300;line-height:18px;color:#212121}ul,ol{padding-top:5px;font-size:14px;font-weight:300;line-height:20px;color:#212121}.ds-container{font-family:Arial,Helvetica,sans-serif;font-size:14px;font-weight:300;line-height:18px;color:#212121;width:600px}.ds-section{padding:10px 20px 10px 20px}.ds-link__text{font-size:14px;font-weight:300;line-height:18px;color:#4a65ff;text-decoration:underline}.ds-goTo{margin:10px}.ds-goTo__link{text-decoration:none;color:#d45c29}.ds-goTo__text{font-size:14px;font-weight:300;line-height:18px;color:#d45c29}.ds-button-container{cellpadding:0;cellspacing:0}.ds-button-fullwidth{width:550px}.ds-button-default{width:250px}.ds-button-primary{background:#ff9f27;border:1px solid #ff9f27;border-radius:2px;text-align:center}.ds-button-secondary{background:#f2f1f4;border-radius:2px;border:1px solid #4a65ff;color:#4a65ff;text-align:center}.ds-button__link{display:block;padding:10px;color:#fff;text-decoration:none;height:100%;width:100%;box-sizing:border-box}.ds-button-text{font-size:14px;font-weight:400;line-height:18px;letter-spacing:.4px;text-transform:capitalize !important}.ds-button-text-primary{color:#000}.ds-button-text-secondary{color:#4a65ff}.ds-card__container{min-width:268px;max-width:100%;padding:10px}.ds-card__container+.ds-card__container{padding-left:0}.ds-card{height:110px;min-height:110px;border-radius:5px}.ds-card__image{display:block;justify-self:center;min-width:70px;max-width:70px}.ds-card__text{padding:0 4px 0 4px}#ds-marketing__card1-and{margin-left:4px}.ds-card__text>*{margin:0}.ds-footer-link-wrapper{margin-bottom:10px;text-align:center}.ds-footer-link{text-decoration:none}.ds-footer-link__text{font-size:12px;font-weight:400;line-height:14px}@media only screen and (max-width:768px){.ds-container{width:100% !important}.ds-responsive-table td{display:block;width:100%;vertical-align:middle}.ds-responsive-td{display:block;width:100%;vertical-align:middle}.ds-responsive-margin{margin-top:10px}.ds-card__container{display:block}.ds-card__container+.ds-card__container{padding-left:10px}.ds-footer-link-wrapper{margin-bottom:16px}.ds-footer-vertical-divider{display:none}}</style> </head> <body style=\"background-color: #F2F1F4; padding-top: 15px; padding-bottom: 15px;\"> <table align=\"center\" cellspacing=\"0\" cellpadding=\"0\" style=\"border: 1px solid #e8e8e8; background: #fff;\" class=\"ds-container\"> <tbody> <tr> <td class=\"ds-section\" style=\"padding-top: 20px; padding-bottom: 0;\"><img decoding=\"async\" src=\"https://app.global.datasite.com/notification-settings-mfe/images/DSlogo.png\" alt=\"Datasite Logo\" id=\"ds-header__default-logo\" width=\"139\" height=\"38\"></td> </tr> <tr> <td id=\"ds-main\" class=\"ds-section\" style=\"padding-bottom: 20px\"> <h1>Welcome to Datasite</h1> <p><b>Project:</b> Rambo</p> <p>Thank you for registering. Please follow the link below to log in to your project. Use the same password you created during registration. Once logged in, the project will be present on your Datasite Projects page. If you do not access the project within 30 days your invitation will expire.</p> <table class=\"ds-button-container\"> <tbody> <tr> <td class=\"ds-button-primary ds-button-default\"><a class=\"ds-button__link\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioX29qGlWqdpOskGa5k2RFn3H8rBnOt7pI9WR6cA24E-2FrB6m5-2BHyjDfAJFswK5MIYtTi4hKBZv5CvYYq9Fgs5DsEJjESjzSH3GnUHeUnyBrlP7SpQ9BtLiaS6L-2FEsU7LGShh8EHk-2B0SPMaFMuGF0efMLkH9iUm6qifHPgViF0YUTqyT8rj6N0xgN5pey1emwNL-2FAd3ZgJbmN1B2Upkz3fxOuSfCN_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f52CJQPqEXDLhZDuWl1gSrj2MExnL60os65gJ8nmQIsVndfkzcwOU-2B7npkVJEifpUKvJRbMlK6UlMF8pM4E8ZGAJYi4kkGkbDBO9UYmuRGMP04ixPsOBsqx0WdTnxGNhGPbGt3jO3NC8tHl8k9bWsujYkkrUMs4VyB7L-2B7aCvz4Zg-3D-3D\" target=\"_blank\"> <span class=\"ds-button-text ds-button-text-primary\">LOGIN NOW</span> </a></td> </tr> </tbody> </table> </td> </tr> <tr> <td style=\"border-top: 1px solid #f2f1f4; padding-bottom: 10px\"></td> </tr> <tr> <td class=\"ds-section\"> <table style=\"background: #f2f1f4;\" width=\"100%\"> <tbody> <tr> <td class=\"ds-card__container\"> <table id=\"ds-marketing__card1\" width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#ffffff\" class=\"ds-card\"> <tbody> <tr> <td style=\"width: 80px; padding-left: 10px\"><img decoding=\"async\" src=\"https://app.global.datasite.com/notification-settings-mfe/images/marketingV2.png\" alt=\"A group of office workers collaboratively gathered around a computer, actively engaging in providing assistance to an online user.\" height=\"70\" class=\"ds-card__image\"></td> <td> <div class=\"ds-card__text\"> <div style=\"margin-bottom: 4px;\"> <b id=\"ds-marketing__card1-titleV2\">New to Datasite?</b> </div> <a id=\"ds-marketing__card1-link\" class=\"ds-link__text\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioVdt6QVTVY2AhyfToC-2Bkl09L3j-2F7BVR8Q94vNECStu-2B10BfHXIORGBZkyijCT6HDJiO5sWhEP6-2Fcyzqw3ejvJAwyQ6ST6KKKk05tjZSgct3oji7SMishzAcFKYqqJEWhIt9DC9nKwWg4AIJEPPuof0HwkZDd-2BHxzp6sK73CCe4Jb7moxSSPPOQLTJIFPPS8iBFQUYyYcp3Gui3yf8YK7Wx-2FW2oHBSJyR7UZqxkVRUS6Uoa8m064Ij-2FPH6dZeAnBl8s84j6xDdOzYX-2F2me-2BDad7IRApe_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f52CJQPqEXDLhZDuWl1gSrj74pHg9oTJRprd-2Fr8umhgzXR0p3-2FGvF8RIWgCO60VFdiuMv8PM9ENyQoKMjVtA1WF1uYEW30ICa2P9MqOJjWTMJfyBD4erXdTkcDy1u7QXlkm5cGbFOIfxZMV-2BpYx2FEtTdustrZ5-2FHcGgrV-2BC2MBUg-3D-3D\" target=\"_blank\">Get Assistance</a><span id=\"ds-marketing__card1-and\">&</span> <a id=\"ds-marketing__card1-link2\" class=\"ds-link__text\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioVdt6QVTVY2AhyfToC-2Bkl09L3j-2F7BVR8Q94vNECStu-2B10BfHXIORGBZkyijCT6HDJgfvUUsaD5jZdXBhCFEY-2Bnc3CnJUDNaOcRgIvFngYnoNMKIbTYukS3IrLB7e-2FB-2FClBolbCFaqgufUDjuHU4Ljd3jCsv1lBzTcJx4AkzcA5oSoeGExzuCeeCwAiSh7epPyDPkkfphrlztpqAdMiHXc9J57EkxsJW9b-2FZGAMlVn-2F5RnH12XqkBJuoi2TmjPbxArBi05HE-2FYPTpODsM2j5GR5DKMNU0WPQ7XqVmss-2BTaknvg-3D-3DppQI_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f52CJQPqEXDLhZDuWl1gSrj39Wn00zcsLN-2FWtUts-2B3kBnSkEtgss-2BFwLJkcT5Tw2XQ6T-2FUWZi73it4Mzs8XVBCKBV6oQuLgTw0i0sAZzplNI4xtgTG0GZXoiGrzvAL1hVRy-2F0z2bDbJsVQ-2FH06mky-2BrBlN0M-2FyHtkVQg1x14w0rPw-3D-3D\" target=\"_blank\">Training</a> </div> </td> </tr> </tbody> </table> </td> <td class=\"ds-card__container\"> <table id=\"ds-marketing__card2\" width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#ffffff\" class=\"ds-card\"> <tbody> <tr> <td style=\"width: 80px; padding-left: 10px\"><img decoding=\"async\" src=\"https://app.global.datasite.com/notification-settings-mfe/images/datasite_email_welcome_new_user_qr_code.png\" alt=\"A group of office workers collaboratively gathered around a computer, actively engaging in providing assistance to an online user.\" height=\"70\" class=\"ds-card__image\"></td> <td> <div class=\"ds-card__text\"> <div style=\"margin-bottom: 4px;\"> <b id=\"ds-marketing__card2-title\">Datasite Mobile App</b> </div> <div style=\"margin-bottom: 4px;\"> <span id=\"ds-marketing__card2-subtitle\">Manage deals anywhere</span> </div> <a id=\"ds-marketing__card2-link2\" class=\"ds-link__text\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioW0LL0DX047ZCG3fiDnJlDLyz3fDlgEp92HdbUC57-2FX81Rkje0-2BkXyvTR3kmgkOwmwK-2B6cldQxde9nDp1If9MVU4Ffi7SGDTKgW9TPkW-2FH4Y7oqmmPJ4SmvGhM3BhHhdZLiGJECdne-2B8rnruYW-2FPdTASunLfZ9vgTCxXRoE3PfSJWxGBcfw-2Fzdn5cYDl1gzC7ELXetJPF62EBF-2B4th-2Bwu08SmDcFCYebwtzzz0nvROXdg-3D-3DFDZb_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f52CJQPqEXDLhZDuWl1gSrj6Fc4b9q7vSXAqqFcgQCVe3W4ZwAyNt1KvZ6fWaQ6iwbANGpPphw-2BeGN6bYpbfhgct8lUBSLkWLANcEeREKhW0ZoNoGHKPPYOfmwWTVS4uMjUHKRyrlHpPMtlSGoQrUGLIs7erHrn7JL1L7aQPIslyA-3D-3D\" target=\"_blank\">Learn More</a> </div> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"ds-section\"> <p id=\"ds-legal\" style=\"margin: 0\">This email communication may contain CONFIDENTIAL or LEGALLY PRIVILEGED information. If you are not the intended recipient, please contact <a class=\"ds-link__text\" href=\"mailto:service@datasite.com\" target=\"_blank\">Datasite</a> by email, available 24 hours a day, 7 days a week. Also, delete this communication and any copy immediately. Thank you. <br></p> </td> </tr> <tr> <td class=\"ds-section\"> <p style=\"margin: 0\"><span>Manage the frequency of alerts in your Datasite</span> <a class=\"ds-link__text\" id=\"ds-notifications-settings__link\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioUt9543XPJZjjegwlekitMOmGmTMgN2gurI4z3RF0PdSFaj0qJ39yzoYp1Avpmw3Yb-2Byp6A5h20T5b-2BGHhJvhidfB2czQL9sh0pjqDg96UrR2auDKPOQtZkfIHJjZQI-2BrOUvStO0JOrlyQp9lhkS8cRGhfvav0Hrj6Cn6uaO1KwAe2vyFQGAxcckO5BGVvpAmNW9Gbcw4yEK-2FSU4aoQhI8v0OGQ21TaqrgcT5Er5OIe2C4l4eIwGvD-2FbIa7eCP0ST8PhceUAQeN4xPFYXZzaRNX4sVS_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f52CJQPqEXDLhZDuWl1gSrjDbMWMtI57UJMM85uA3XG3Bhsnrne2aoMqMpx5x-2FOOlmJpuITngmqhgxzlbDyuqelkKztLe2DVJ33paPB9LAcSPV98wEenY8Ato0U2E2KuFpQRCiHoYY2JOTSn2-2FA87mWKYISwIAOCu-2BAymlUi6UvNg-3D-3D\" target=\"_blank\">Notification Settings</a></p> </td> </tr> <tr> <td class=\"ds-section\"> <table class=\"ds-responsive-table\" align=\"center\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"> <tbody> <tr> <td class=\"ds-footer-link-wrapper\" style=\"padding-right: 4px;\"><a class=\"ds-footer-link\" id=\"ds-footer__terms-of-use\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioUlEsBLx05bl6bdle0c5YHVoRQKCRgrRSxGUTT8cVz-2FmW8W6039VZHCamVsJ7V-2B4SOPTNuHtDU8Ft3HTTwA18-2BdAtQtypKcuHAfONB5Pl-2FTDEtTNeyHmbGBs5gjjhRQHJ2D3grLqsn9NZ5rt0-2BOaxPLreulX6i7GGxXabl-2FHdhPYUwAckdKRdpPXLWbh7ZUpA0C4ep-2FV60OBCNerBgVuqxxF0-2FhPAng-2BzZ7-2BghFUtj4lQ-3D-3DhQiL_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f52CJQPqEXDLhZDuWl1gSrjzhP3Nn-2BovjX1qaPX56I4r-2Bp3hT8K7s8Oo-2FcQSlpxi4ixOq0Ldxu2c7CzZXBGxX3Se3J5G7Aul4v8nBdz0fWzF8MA8x1zl68kSrD7U3TJ-2BFUSns52-2F0ekNK1KdlaizZKsmClIBO4w7y3nqyOi5f1KNQ-3D-3D\" target=\"_blank\"> <span class=\"ds-footer-link__text\">Terms of Use</span> <span class=\"ds-footer-vertical-divider\">|</span> </a></td> <td class=\"ds-footer-link-wrapper\" style=\"padding-right: 4px;\"><a class=\"ds-footer-link\" id=\"ds-footer__privacy-notice\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioUlEsBLx05bl6bdle0c5YHV32AReeBByqdTGC41P9vHVjuZ3FEkc-2BtNL8n-2BIE2a3X14JG9sTo8Ku7-2FnRBdaFeaTNPeH4dr0Wq3ZSPdntmfSkz2fVEGgWUIHBjUYFW1g-2FXLFk2KDBH27Z8nf4k64yDY4kdZKfcioz5WqTvMdWIvlf6azS1ljtxhETVAUg-2FCYQ7xmkMZT06G8jexypoYw4lAkJEWuvkcXwpCoAVHrNZa6xw-3D-3DDKVR_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f52CJQPqEXDLhZDuWl1gSrj8nFCptN8rUBQIhE7A-2F-2BSMqwrUgJbFoV0Y-2FhXJGyEddafpyBWtpA9ND-2BvYMjjssT6KGnxREJnhENJUUmgvmDJZEdBqyg0ranBhBl8hwsFQEYfRY0SyomUZH2gkowMlKRODduhno7dS4Uifs0UbnArGA-3D-3D\" target=\"_blank\"> <span class=\"ds-footer-link__text\">Privacy Notice</span> <span class=\"ds-footer-vertical-divider\">|</span> </a></td> <td class=\"ds-footer-link-wrapper\" style=\"padding-right: 4px;\"><a class=\"ds-footer-link\" id=\"ds-footer__trademark-information\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioUlEsBLx05bl6bdle0c5YHVD1fOpg61QCxdoGlqfk0wt82POd5k-2Bti7xGaUX0Xy8wwDjMAyJiECUunoDHX58-2F08Lcq1abcdpll-2BMeh8PSpKV0SUy8-2B7269ol-2BwQAMiGZRiLIvv737ytsMQe8bHFPvcKh6PmyDGJ59DfszT4V-2Fw9soySFeY-2FHQ8oHqTs7Ss4DcLqaTVMHm4bwkHmTXEXmwjfuYXc6W4OT2NKlK5X3rYkuA-3D-3D7g42_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f52CJQPqEXDLhZDuWl1gSrj8kvzi8MyxP80l-2FL-2FNyawy0iVs6KROnc-2BY6vgZ80-2FIh-2BVak-2BZZgWT-2FvmkWNeA1ySk7daP77Z7wsVtzTXKN2syso5jGTT45Red3d854p9B-2B5ZAbBuS7azQyQke-2FUH1fNL4ZfN2pCK3PV4lYxR7VKl4xQ-3D-3D\" target=\"_blank\"> <span class=\"ds-footer-link__text\">Trademark Information</span> <span class=\"ds-footer-vertical-divider\">|</span> </a></td> <td class=\"ds-footer-link-wrapper\" style=\"padding-right: 4px;\"><a class=\"ds-footer-link\" id=\"ds-footer__contact-us\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioUlEsBLx05bl6bdle0c5YHVwFGEPP9yVxr3vghnZZA-2FZxS0sRyO57Fa-2BvjQRQ7vw7ngwrg0T3-2BF2OTqyxmwdxLp6dQtjJjDBFUgDzlPdZf-2Fz3wWfpbuKoueXqAb4wLKms6ZJb-2FsxRsHdvR-2BTJBbmTfDU7k6h3WJoVOVcG2Wn16GachriRkYA6JFhbjw7QuaSrC38kuqnopHQy9heT39bKov363iqPXCn7nT7ZaKuaZT-2FQ-3D-3DBLhY_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f52CJQPqEXDLhZDuWl1gSrjlI-2BQw7N1f-2BDTEewu8vwQDMFm7U4iSimAyHVYe7FLL1MSzUPJ4opjGWnkCFnrfOeQr2EQlVl58R-2FI81mEEIX2FIEmGhntFVUt02OqELj3eNKsHa3yaknJJWv7-2BroJ-2BviTNPctoG-2Be-2Bno3EGN0Uym92Q-3D-3D\" target=\"_blank\"> <span class=\"ds-footer-link__text\">Contact Us</span> <span class=\"ds-footer-vertical-divider\">|</span> </a></td> <td class=\"ds-footer-link-wrapper\"><a class=\"ds-footer-link\" id=\"ds-footer__merrill-corp\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioUlEsBLx05bl6bdle0c5YHVb5iKvdKeBbxAytzN79z-2Br-2FUr5-2FQSulkWHNnHQyQl-2BiATpB8I0t17EZd05UoMYki5rJZBZVFNm3W6BDTbooLob9zJP67mm36pFilqB7GslMIqhkMLKM33RI1Ay3z4V4zI-2F8-2FvmjFeCnttzRj1R2XZ9rQBMNhLhPGdiqK-2FtB760CM-3Dnrcn_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f52CJQPqEXDLhZDuWl1gSrjsafXEO3fV-2Bai2gTB0wMmBtsWrFju-2B-2BTm17MGXlSjel2QH8u0QL2eQLfXoeMAi4iDD-2BPpA08zGAySEHLvwYH098G76-2BFCUEM9r2xJ4-2F90NPgLeKRkW2rg4JYO00vS5VHWu1C5Fo8zmv5E5mkPcIK-2Fdw-3D-3D\" target=\"_blank\"> <span class=\"ds-footer-link__text\">Datasite.com</span> </a></td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"ds-section\"> <table align=\"center\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"> <tbody> <tr> <td style=\"padding-right: 30px;\"><a id=\"ds-social-media__linkedin\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioWZabQ1xn8zEotOfdiU-2B3kmG39vT5vSZBeS42FE2uDWZymQOcUJyRVfyaeRkHwGdGtUDUaZmqxhXP-2BiZL1QKCdtIqKqqFmrAQCXu1rG74q3qZLGM5UOrTlrluOeKhjkj6HN3uVJlx7oIE2mTR3be2XhcIxtkyFNyeHM6Xf68jZ8Anz-2FL8cdJl908GPKcb2l9jpbLySOlJKAxRIQONjfZW7Cjfqhi7ynSKNRzXVzqHTAEONDv3caU-2BuAXdS7GPi89EA-3DwG2r_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f52CJQPqEXDLhZDuWl1gSrjpRbBZnDbCRsFui4CDkKm3ImT3pHgKjSAUhyeGW7ANswrE4Z7Q3wuuUhF2nOBBCT9H4LslUgKEAzFtnYKyhOazzxKEFgBruh7MmsJWeirDRZvTPOikqtgMrwaQoIY3hDgvdhxZH8YvXeagy12dVUUNw-3D-3D\" target=\"_blank\"> <img decoding=\"async\" width=\"32\" height=\"32\" src=\"https://app.global.datasite.com/notification-settings-mfe/images/linkedInGrey.png\" alt=\"LinkedIn Logo\"> </a></td> <td style=\"padding-right: 30px;\"><a id=\"ds-social-media__instagram\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioX7tjIuUuSLS6Hg5rXRnzd9sv4k2hIqaQsRjpMKLG4wdTEfO0qa47sWRbfM-2BdUtnhc314iSaN5HdrByXTwlGeFR5DTSW8arvK7EXWMJMuqHFqjqDC-2BDB-2FQLw56p-2BeC85hogj7Wsg-2FcMoUlAKhtG3oRqm-2F0US0O2LIu04NGzrZSNJDzBuroR1hqhs8lMC1DJ2zRc4qUKm8yCe9vlmIo1MF4RYHvhV3x1Tf9Kk3omHD4FDg-3D-3DFSqu_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f52CJQPqEXDLhZDuWl1gSrjV6RDZQcqX0rnx7go6QPNHX1yuZY2zHa1HNJsuyzV8vCrgr8FRmyqwNdzDFAOYUbrXgrdf2wt5YPXS-2Bitxr8ZwPPDGWYlE5800DAX2oxZUqcATpMzVnC2eyRBKd9pUcGdVExAJ3dr6DgdgeOa-2BHtz4A-3D-3D\" target=\"_blank\"> <img decoding=\"async\" width=\"32\" height=\"32\" src=\"https://app.global.datasite.com/notification-settings-mfe/images/instagramGrey.png\" alt=\"Instagram Logo\"> </a></td> <td style=\"padding-right: 30px;\"><a style=\"color: #000000\" id=\"ds-social-media__youtube\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioXCbqZpqpBz3vOjD7EbAv8p3yNQg-2F2Wkqrhx5xhje2b-2F4DiRO6h3GENHir-2Fa2sbCUklOiZIQxhee1GNAYwWaxtK76ER-2FSKmnwiv3YfLLSa-2FebnMY9i0esHf0U-2BI3k8AFvhIEUdEHZSE3YIxi5n5T3yWocJxwf0PBbkW5FwcZaLMCy3a3L2ijyLSgcfPEv7WiV9t-2BE0Z6SpdyOaAlZzAmWQ9ajQg42AR213R8gIb4ryJ6g-3D-3D8neh_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f52CJQPqEXDLhZDuWl1gSrjLA3QRo-2FQW-2F0lxf0UhslUpz-2FNoyTmkBBuzk1I8A7eBX7SHHYpPd2naXKGh6mZCe-2B10zPoaajwDbCWPjZHD4LEzgkEygxKYx9LrNHtcXHWEK9EkVWJxZAP2lLgp-2FZ0JAL1OOwED-2FISJ0Ge9A-2BTn1UaMw-3D-3D\" target=\"_blank\"> <img decoding=\"async\" width=\"32\" height=\"22\" src=\"https://app.global.datasite.com/notification-settings-mfe/images/youTubeGrey.png\" alt=\"YouTube Logo\"> </a></td> <td><a style=\"color: #ffffff\" id=\"ds-social-media__x\" href=\"https://url1892.mail.datasite.com/ls/click?upn=u001.Of8AHBN9fuYSR2EtP6zjWnLY6gSFytRCAulsCDZnFNHti-2Fo6IPYR5ZNKtkcFgLoC-2F1Y4Ibc4XDLh60LCMBY8yGNyLvBrXPHJY86MqqBwioWk-2BSyhZF47MVUO4Vx8oTS8BSowz5IHQkk0E807-2BpV5m1-2BZNaVD5zP0-2B0ffC0AaSd2EdimVtsAJgRvO0RgshPNX1IsHrKilwnoOBO9EsaNnj2hAwxOj8HdMhCe9vJe-2BuyiSZZ56U-2FPmt3B0bMv7azjrAz-2FikL4PEh7BG22UXRBGXOxRUqimwZrHGg0q1bUI7ecvOi1LAVH4hoipK6yr-2BlEOmBDN_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPulbl5cOUIwcCv1iEgnfD8f52CJQPqEXDLhZDuWl1gSrjRaTxs5NBeaz5OQE-2FbHFR22c8a-2BJzeegHzoV-2FxxnMy28RD6Jngyp-2BLzO2dyyCo3Kowv7uW5zbtCY7J9YhuoP-2Fydn41wxDY98-2FVKo9dC-2FlE1vOUJvWKJ-2FF0HA7q9lU482Y9ixVa6kX7ZaFoArwxBO2uA-3D-3D\" target=\"_blank\"> <img decoding=\"async\" width=\"31\" height=\"32\" src=\"https://app.global.datasite.com/notification-settings-mfe/images/twitterGrey.png\" alt=\"Twitter Logo\"> </a></td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"ds-section\"> <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\"> <tbody> <tr> <td class=\"ds-responsive-td\" style=\"padding-bottom: 8px; vertical-align: bottom\"><span>? 2025 Datasite all rights reserved</span></td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img src=\"https://url1892.mail.datasite.com/wf/open?upn=u001.D6mC8SG6iITw2GIzPjAtwwzTvs-2FRotwEN8HLI6Ao7S472NA-2BISY0er-2Fej169u4qw5SQ4twNNO90zVAssRzp-2BWjcTtqiJBysX-2FqL1BRPgUq49CAbsfPkzRuJxfRWgE5WXzjn6TBB-2BxivJmnHTXwfWEyNvBKVc-2F2C95rVS7Zb3CtZ3QxC79I9G-2FDYCsPE66mOEeASH-2F9mVLYzaweIuhGyKiQ-3D-3D\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/></body> </html>\r\n','     h1{font-weight:500;font-size:20px;line-height:24px;color:#212121}h2{font-weight:400;font-size:18px;line-height:22px;color:#212121}p{font-size:14px;font-weight:300;line-height:18px;color:#212121}span{font-size:14px;font-weight:300;line-height:18px;color:#212121}ul,ol{padding-top:5px;font-size:14px;font-weight:300;line-height:20px;color:#212121}.ds-container{font-family:Arial,Helvetica,sans-serif;font-size:14px;font-weight:300;line-height:18px;color:#212121;width:600px}.ds-section{padding:10px 20px 10px 20px}.ds-link__text{font-size:14px;font-weight:300;line-height:18px;color:#4a65ff;text-decoration:underline}.ds-goTo{margin:10px}.ds-goTo__link{text-decoration:none;color:#d45c29}.ds-goTo__text{font-size:14px;font-weight:300;line-height:18px;color:#d45c29}.ds-button-container{cellpadding:0;cellspacing:0}.ds-button-fullwidth{width:550px}.ds-button-default{width:250px}.ds-button-primary{background:#ff9f27;border:1px solid #ff9f27;border-radius:2px;text-align:center}.ds-button-secondary{background:#f2f1f4;border-radius:2px;border:1px solid #4a65ff;color:#4a65ff;text-align:center}.ds-button__link{display:block;padding:10px;color:#fff;text-decoration:none;height:100%;width:100%;box-sizing:border-box}.ds-button-text{font-size:14px;font-weight:400;line-height:18px;letter-spacing:.4px;text-transform:capitalize !important}.ds-button-text-primary{color:#000}.ds-button-text-secondary{color:#4a65ff}.ds-card__container{min-width:268px;max-width:100%;padding:10px}.ds-card__container+.ds-card__container{padding-left:0}.ds-card{height:110px;min-height:110px;border-radius:5px}.ds-card__image{display:block;justify-self:center;min-width:70px;max-width:70px}.ds-card__text{padding:0 4px 0 4px}#ds-marketing__card1-and{margin-left:4px}.ds-card__text>*{margin:0}.ds-footer-link-wrapper{margin-bottom:10px;text-align:center}.ds-footer-link{text-decoration:none}.ds-footer-link__text{font-size:12px;font-weight:400;line-height:14px}@media only screen and (max-width:768px){.ds-container{width:100% !important}.ds-responsive-table td{display:block;width:100%;vertical-align:middle}.ds-responsive-td{display:block;width:100%;vertical-align:middle}.ds-responsive-margin{margin-top:10px}.ds-card__container{display:block}.ds-card__container+.ds-card__container{padding-left:10px}.ds-footer-link-wrapper{margin-bottom:16px}.ds-footer-vertical-divider{display:none}}          Welcome to Datasite Project: Rambo Thank you for registering. Please follow the link below to log in to your project. Use the same password you created during registration. Once logged in, the project will be present on your Datasite Projects page. If you do not access the project within 30 days your invitation will expire.     LOGIN NOW                       New to Datasite?  Get Assistance& Training               Datasite Mobile App   Manage deals anywhere  Learn More              This email communication may contain CONFIDENTIAL or LEGALLY PRIVILEGED information. If you are not the intended recipient, please contact Datasite by email, available 24 hours a day, 7 days a week. Also, delete this communication and any copy immediately. Thank you.      Manage the frequency of alerts in your Datasite Notification Settings         Terms of Use |   Privacy Notice |   Trademark Information |   Contact Us |   Datasite.com                                  ? 2025 Datasite all rights reserved         \r\n',0,0,0,0,0,0,'2025-06-25 12:35:55','2025-12-09 19:25:45','2025-12-09 19:25:45','2025-12-09 19:25:45',NULL,NULL,NULL),
(522,4,'<D480DEE5-906B-4712-9772-80247E4F5D28@bayfrontcapitalllc.com>',NULL,NULL,'Fwd: Interested in Space off of LWR Blvd.','brian@bayfrontcapitalllc.com','Brian Stufflebean','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=us-ascii\"></head><body style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"><div><div><blockquote type=\"cite\"><div></div></blockquote></div><br></div></body></html>','Rick,\r\n\r\nPlease see forwarded email.\r\n\r\n\r\nBest Regards, \r\n\r\n\r\nBrian C. Stufflebean, CEO\r\nBayfront Capital, LLC\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\nbrian@bayfrontcapitalllc.com\r\nwww.bayfrontcapitalllc.com\r\n      \r\n\r\n\r\n￼\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER: Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.\r\n\r\n> Begin forwarded message:\r\n> \r\n> From: Trey Carswell/USA <Trey.Carswell@cushwake.com>\r\n> Subject: RE: Interested in Space off of LWR Blvd.\r\n> Date: July 28, 2025 at 11:03:06 AM EDT\r\n> To: Brian Stufflebean <brian@bayfrontcapitalllc.com>\r\n> Cc: Nick DeVito <nick@ian-black.com>, Lisa Ross/USA <Lisa.Ross@cushwake.com>, Sam Korolos/USA <Sam.Korolos@cushwake.com>, Brie Tulp <brie@ian-black.com>, Melissa Watterworth/USA <Melissa.Watterworth@cushwake.com>\r\n> \r\n> \r\n> \r\n> Brian, it was good speaking with you this morning about Gates Creek.  Please see the attached brochure along with the office plan we have permitted. \r\n>  \r\n> From the time we had a lease signed it would take about 90 days to build out the space.  We are exploring ways to get you in quicker. \r\n>  \r\n> Nick/Brie, do you have around 10,000 SF of space that could be used short term while we build out a permanent space? \r\n>  \r\n> Best,\r\n>  \r\n> Trey Carswell, SIOR\r\n> Managing Director, Industrial Services\r\n>  \r\n> Direct:  +1 813 204 5314\r\n> Mobile: +1 813 230 6131\r\n> Trey.carswell@cushwake.com <mailto:Trey.carswell@cushwake.com>\r\n>  \r\n>  \r\n￼\r\n>  \r\n> One Tampa City Center\r\n> #3300\r\n> Tampa, FL 33602 | USA\r\n> cushmanwakefield.com <http://www.cushmanwakefield.com/>\r\n>  \r\n> LinkedIn <https://www.linkedin.com/company/cushman-&-wakefield> | Facebook <https://www.facebook.com/CushmanWakefield> | Twitter <https://twitter.com/cushwake> | YouTube <https://www.youtube.com/user/theCushmanWakefield> | Google <https://plus.google.com/117696679233125464118/posts>+ | Instagram <https://instagram.com/cushwake>\r\n>  \r\n>  \r\n> From: Brian Stufflebean <brian@bayfrontcapitalllc.com <mailto:brian@bayfrontcapitalllc.com>>\r\n> Sent: Saturday, July 26, 2025 5:51 PM\r\n> To: Trey Carswell/USA <Trey.Carswell@cushwake.com <mailto:Trey.Carswell@cushwake.com>>\r\n> Subject: Interested in Space off of LWR Blvd.\r\n>  \r\n￼\r\n>  \r\n> \r\n>  \r\n> Trey,\r\n>  \r\n> Please contact me at your earliest convenience, looking at space in Lakewood Ranch.\r\n>  \r\n> Feel free to call or text the number listed below.\r\n>  \r\n> Thank you.\r\n>  \r\n>  \r\n> Best Regards, \r\n> \r\n> \r\n> Brian C. Stufflebean, CEO\r\n> Bayfront Capital, LLC\r\n> (941)545-4153 <tel:(941)545-4153> Cell\r\n> (866)896-2423 <tel:(866)896-2423> Fax\r\n> brian@bayfrontcapitalllc.com <mailto:brian@bayfrontcapitalllc.com>\r\n> www.bayfrontcapitalllc.com <http://www.bayfrontcapitalllc.com/>\r\n>       \r\n> \r\n> \r\n> \r\n> \r\n> \r\n> \r\n> \r\n> \r\n> \r\n> \r\n> \r\n> \r\n> \r\n> \r\n> \r\n> \r\n> \r\n> \r\n> \r\n> \r\n> \r\n> CONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER: Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.\r\n>  \r\n>  \r\n> Sent from my iPhone\r\n> \r\n> \r\n> \r\n> \r\n> The information contained in this email (including any attachments) is confidential, may be subject to legal or other professional privilege and contain copyright material,\r\n> and is intended for use by the named recipient(s) only.\r\n> \r\n> Access to or use of this email or its attachments by anyone else is strictly prohibited and may be unlawful. If you are not the intended recipient(s), you may not use, disclose, \r\n> copy or distribute this email or its attachments (or any part thereof), nor take or omit to take any action in reliance on it. If you have received this email in error, please notify\r\n> the sender immediately by telephone or email and delete it, and all copies thereof, including all attachments, from your system. Any confidentiality or privilege is not waived \r\n> or lost because this email has been sent to you by mistake. \r\n> \r\n> Although we have taken reasonable precautions to reduce the risk of transmitting software viruses, we accept no liability for any loss or damage caused by this email or its \r\n> attachments due to viruses, interference, interception, corruption or unapproved access.\r\n> \r\n> For information on how your personal information is processed, including information on how to\r\n> exercise state or country specific Privacy Rights please view our privacy notice here:\r\n> https://www.cushmanwakefield.com/en/privacy-and-cookies\r\n￼',0,0,0,0,0,0,'2025-07-28 15:36:05','2025-12-09 19:26:24','2025-12-09 19:26:24','2025-12-09 19:26:24',NULL,NULL,NULL),
(523,4,' <CH2PR16MB3431887C5CB21EF5F68A797CFE5AA@CH2PR16MB3431.namprd16.prod.outlook.com>',NULL,NULL,'Re: U.S. Battery Manufacturing Investment Opportunity | Lithium Battery Company - Confidential Investor Presentation Attached','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" id=\"Signature\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"8\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWA270f347a-8422-ebc2-7771-18d1ef2e69d1\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">Jarrett@</a>lithiumbatterycompany<a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"9\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWA0b2e1bbd-b23a-069b-f655-d35860f21955\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">.com</a></u></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-auth=\"NotApplicable\" data-linkindex=\"10\" title=\"https://lithiumbatterycompany.com/\" class=\"OWAAutoLink\" id=\"OWA801bbe2b-bb45-ff66-f0b8-d86691893fd9\" href=\"https://lithiumbatterycompany.com/\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<hr style=\"display: inline-block; width: 98%;\">\r\n<div id=\"divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b>&nbsp;Sunday, July 27, 2025 3:16 PM<br>\r\n<b>To:</b>&nbsp;Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: U.S. Battery Manufacturing Investment Opportunity | Lithium Battery Company - Confidential Investor Presentation Attached</div>\r\n<div style=\"direction: ltr;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nRick,&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nThanks for your reply and continued interest—it would be great to touch base again. We are more than happy to coordinate for a call as well as host a visit.</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nOur upcoming week is generally flexible with availability for the team provided below:</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<i>[all times EST]</i></div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nMonday (7.28): 10-12 | after 1:30pm</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nTuesday (7.29): after 12pm</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nWednesday (7.30): all day</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nThursday (7.31): after 12pm</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nFriday (8.1): after 11am&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nLet us know what day/time works best for you to connect &amp; stop by for an on-site to see the facility this week</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nBest,&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"x_Signature\">\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"8\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"x_OWAAutoLink\" id=\"OWA7b2c0f67-5a04-8ccb-9032-54457011db50\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">Jarrett@</a>lithiumbatterycompany<a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"9\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"x_OWAAutoLink\" id=\"OWA5e7b7628-1b35-05b5-b340-1ebd7f346323\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">.com</a></u></span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-auth=\"NotApplicable\" data-linkindex=\"10\" title=\"https://lithiumbatterycompany.com/\" class=\"x_OWAAutoLink\" id=\"OWAaafac06d-d255-e04e-8b3c-816c836ea305\" href=\"https://lithiumbatterycompany.com/\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div id=\"x_divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b>&nbsp;Saturday, July 26, 2025 11:25 AM<br>\r\n<b>To:</b>&nbsp;Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: U.S. Battery Manufacturing Investment Opportunity | Lithium Battery Company - Confidential Investor Presentation Attached</div>\r\n<div style=\"direction: ltr;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr;\">Hey Jarrett!</div>\r\n<div style=\"direction: ltr;\">Can we schedule a call this coming week?</div>\r\n<div style=\"direction: ltr;\">Maybe even a visit?</div>\r\n<div style=\"direction: ltr;\">Let me know.&nbsp;</div>\r\n<div style=\"direction: ltr;\">Thanks!</div>\r\n<div style=\"direction: ltr;\">Rick<br>\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr;\">Rick Mislan, PhD</div>\r\n<div style=\"direction: ltr;\">[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one</div>\r\n<div style=\"direction: ltr;\"><img style=\"height: 11px;\" height=\"11\" src=\"file:///Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></div>\r\n<p style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px; color: rgb(0, 0, 0);\">\r\nOn July 23, 2025 at 9:37:29 AM, Jarrett Brownfield (<a style=\"margin-top: 0px; margin-bottom: 0px;\" class=\"x_OWAAutoLink\" id=\"OWAdeb81be9-d774-2dfa-bd18-dbb7961f1151\" href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>) wrote:</p>\r\n<blockquote>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHi Rick,</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nApologies for the delay in responding and thank you for your patience. We wanted to progress negotiations with several anchor clients on pre-orders so that we could provide more accurate and transparent estimates for our forecasted sales pipeline.</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nAttached is LBC’s confidential investor presentation, highlighting:</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<ul style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px; list-style-type: disc;\" data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:true}\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">Transaction Structure:</div>\r\n</li><ul style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px; list-style-type: circle;\" data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:true}\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">$12.575M scalable SPV-ready financing package, with 44% ($5.53M) underwritten by federal/government guarantees, offering significant downside protection. The structure is well-suited for platform or club participation\r\n and designed for U.S. tax pass-through</div>\r\n</li></ul>\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">Use of Proceeds:</div>\r\n</li><ul style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px; list-style-type: circle;\" data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:true}\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">Details on capital deployment and purchase of additional equipment required to meet unexpectedly strong demand for U.S. manufacturing and pre-order pipeline at our gigafactory, leveraging our modular automated\r\n lines for battery module assembly &amp; pack integration</div>\r\n</li></ul>\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">Projected Financials:</div>\r\n</li><ul style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px; list-style-type: circle;\" data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:true}\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">Overview of pricing model, extensive pipeline under LOI, and tax credit monetization strategies intended to optimize net returns for our shareholders</div>\r\n</li></ul>\r\n</ul>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nPlease let us know if you have any questions, require additional materials or would like to schedule a call for further discussion at your earliest convenience.</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nYour prompt review would be greatly appreciated, and we welcome any feedback regarding partnership or co-investment interest. We plan to move forward with select partners for this specific round of financing and would value your perspective before August 1st.</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nRespectfully,&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"x_x_Signature\">\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner</span>\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">\r\nI Chief Financial Officer</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"8\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"x_x_OWAAutoLink\" id=\"OWAb4f80094-f8ad-d596-a1fb-8fdffc2017f0\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">Jarrett@</a>lithiumbatterycompany<a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"9\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"x_x_OWAAutoLink\" id=\"OWA8be70bc4-baf9-2127-0897-a06838793d68\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">.com</a></u></span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-auth=\"NotApplicable\" data-linkindex=\"10\" title=\"https://lithiumbatterycompany.com/\" class=\"x_x_OWAAutoLink\" id=\"OWAf0d55c2a-75d5-819d-fa9c-05f6ed0a13a8\" href=\"https://lithiumbatterycompany.com/\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<hr style=\"direction: ltr;\">\r\n</blockquote>\r\n</body>\r\n</html>\r\n','\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSent: Sunday, July 27, 2025 3:16 PM\r\nTo: Rick <rick@mavrix.one>\r\nSubject: Re: U.S. Battery Manufacturing Investment Opportunity | Lithium Battery Company - Confidential Investor Presentation Attached\r\n\r\nRick,\r\n\r\nThanks for your reply and continued interest—it would be great to touch base again. We are more than happy to coordinate for a call as well as host a visit.\r\n\r\nOur upcoming week is generally flexible with availability for the team provided below:\r\n[all times EST]\r\nMonday (7.28): 10-12 | after 1:30pm\r\nTuesday (7.29): after 12pm\r\nWednesday (7.30): all day\r\nThursday (7.31): after 12pm\r\nFriday (8.1): after 11am\r\n\r\nLet us know what day/time works best for you to connect & stop by for an on-site to see the facility this week\r\n\r\nBest,\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Saturday, July 26, 2025 11:25 AM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: U.S. Battery Manufacturing Investment Opportunity | Lithium Battery Company - Confidential Investor Presentation Attached\r\n\r\nHey Jarrett!\r\nCan we schedule a call this coming week?\r\nMaybe even a visit?\r\nLet me know.\r\nThanks!\r\nRick\r\n\r\nRick Mislan, PhD\r\n[https://mavrix.one https://mavrix.one https://mavrix.one]https://mavrix.one\r\n[X]\r\n\r\nOn July 23, 2025 at 9:37:29 AM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nApologies for the delay in responding and thank you for your patience. We wanted to progress negotiations with several anchor clients on pre-orders so that we could provide more accurate and transparent estimates for our forecasted sales pipeline.\r\n\r\nAttached is LBC’s confidential investor presentation, highlighting:\r\n\r\n\r\n  *\r\nTransaction Structure:\r\n     *\r\n$12.575M scalable SPV-ready financing package, with 44% ($5.53M) underwritten by federal/government guarantees, offering significant downside protection. The structure is well-suited for platform or club participation and designed for U.S. tax pass-through\r\n  *\r\nUse of Proceeds:\r\n     *\r\nDetails on capital deployment and purchase of additional equipment required to meet unexpectedly strong demand for U.S. manufacturing and pre-order pipeline at our gigafactory, leveraging our modular automated lines for battery module assembly & pack integration\r\n  *\r\nProjected Financials:\r\n     *\r\nOverview of pricing model, extensive pipeline under LOI, and tax credit monetization strategies intended to optimize net returns for our shareholders\r\n\r\nPlease let us know if you have any questions, require additional materials or would like to schedule a call for further discussion at your earliest convenience.\r\nYour prompt review would be greatly appreciated, and we welcome any feedback regarding partnership or co-investment interest. We plan to move forward with select partners for this specific round of financing and would value your perspective before August 1st.\r\n\r\nRespectfully,\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\n',0,0,0,0,0,0,'2025-07-28 19:31:52','2025-12-09 19:26:25','2025-12-09 19:26:25','2025-12-09 19:26:25',NULL,NULL,NULL),
(524,4,'<PH3PPFCA48BBAFB7EF8D6CFAD3ED8C9ED7BCA5AA@PH3PPFCA48BBAFB.namprd22.prod.outlook.com>',NULL,NULL,'RE: DragonPlate Contact','bdorsch@allredcorp.com','Billy Dorsch','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon0, li.airmailon0, div.airmailon0\r\n	{mso-style-name:airmailon;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon00, li.airmailon00, div.airmailon00\r\n	{mso-style-name:airmailon0;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle22\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;\r\n	font-weight:normal;\r\n	font-style:normal;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Hi Rick, <br>\r\n<br>\r\nI hope you had a nice weekend. This afternoon, I tried calling you twice at the number you gave me, (585) 797-9473, but I got a busy signal both times. I was calling from our conference room, so I don’t know if that had anything to do with things. Either way,\r\n I was sitting with JB (our founder), and we wanted to see if we could get you on the line while we were talking through our opportunity.\r\n<br>\r\n<br>\r\nWould you have any time in the afternoon in the next few days to talk with us on a call? Let me know if there is a day and time that works best for you.\r\n<br>\r\n<br>\r\nBest, <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Billy <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Friday, July 25, 2025 6:40 AM<br>\r\n<b>To:</b> Billy Dorsch &lt;bdorsch@allredcorp.com&gt;<br>\r\n<b>Subject:</b> RE: DragonPlate Contact<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"background:#FFCCDD\"><b><span style=\"font-family:&quot;Helvetica&quot;,sans-serif;color:black\">EXTERNAL EMAIL:</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Be cautious with links and attachments.</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks for the update. Looking forward to hearing from you soon!<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick\r\n<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" id=\"_x0000_i1030\" src=\"file://Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"airmailon\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">On July 24, 2025 at 4:02:57 PM, Billy Dorsch (<a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Rick,\r\n<br>\r\n<br>\r\nThis is a quick update to keep you in the loop. I will be meeting with JB in the EOD meeting today. I got bumped from an earlier time slot for a pressing matter. I will still be following up; I just didn’t want to go too long without updating you.\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><br>\r\nThank you, <br>\r\nBilly </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Thursday, July 24, 2025 7:05 AM<br>\r\n<b>To:</b> Billy Dorsch &lt;<a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>&gt;<br>\r\n<b>Subject:</b> RE: DragonPlate Contact</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;background:#FFCCDD\">\r\n<b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">EXTERNAL EMAIL:</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Be cautious with links and attachments.</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Here’s what I’ve pulled from your website…<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Can you help with these prices?<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"1120\" height=\"272\" style=\"width:11.6666in;height:2.8333in\" id=\"Picture_x0020_3\" src=\"cid:image001.png@01DBFFDC.2DE10050\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" id=\"_x0000_i1028\" src=\"file://Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"airmailon0\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">On July 16, 2025 at 11:36:45 AM, Billy Dorsch (<a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Rick,\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">You are very welcome. I am meeting with JB this afternoon to discuss&nbsp;this; he’s had a lot of things to catch up\r\n on Monday and Tuesday. I will reach out after he and I connect on the&nbsp;next steps.\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><br>\r\nEnjoy Miami! Safe travels, and I will be in touch later today. <br>\r\n<br>\r\nThanks, <br>\r\nBilly </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, July 16, 2025 7:41 AM<br>\r\n<b>To:</b> Billy Dorsch &lt;<a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>&gt;<br>\r\n<b>Subject:</b> Re: DragonPlate Contact</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;background:#FFCCDD\">\r\n<b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">EXTERNAL EMAIL:</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Be cautious with links and attachments.</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Billy - thanks for the update.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I was traveling a bit this week (in Miami today).<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Could you please provide an update on this?<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks!<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" id=\"_x0000_i1027\" src=\"file://Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"airmailon00\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">On July 11, 2025 at 11:16:54 AM, Billy Dorsch (<a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Rick,\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I\'m sorry for not getting this email out sooner. I just wanted to update you on the status of your request. I pinged\r\n the team yesterday, and today I see that a few of the folks I wanted to talk to aren’t in the office today. I have emailed our founder/president, JB Allred, to see his schedule for next week so we can arrange a call to discuss. I will let you know as soon\r\n as I hear from JB, who oversees our Engineering team. I don’t want too much time to pass, so I hope we can schedule something for early next week.\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">There is a chance I may not hear from JB until Monday morning, as he is currently out of the office today. Let\r\n me know if you have any open availability early next week, and I can bounce those off JB so we can sync up.\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks again, Rick. I look forward to your feedback and connecting with you next week!</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Best,</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Billy Dorsch\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Sales, Allred &amp; Associates</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>&nbsp;&nbsp; &nbsp;(315) 612-3876&nbsp; &nbsp;<a href=\"http://www.allredcorp.com/\">www.allredcorp.com</a></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">321 NY Rt. 5 Elbridge, NY 13060, USA</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"103\" height=\"78\" style=\"width:1.0729in;height:.8125in\" id=\"Picture_x0020_1\" src=\"cid:image002.jpg@01DBFFDC.2DE10050\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<img border=\"0\" width=\"82\" height=\"79\" style=\"width:.8541in;height:.8229in\" id=\"Picture_x0020_2\" src=\"cid:image003.jpg@01DBFFDC.2DE10050\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Hi Rick,\r\n\r\nI hope you had a nice weekend. This afternoon, I tried calling you twice at the number you gave me, (585) 797-9473, but I got a busy signal both times. I was calling from our conference room, so I don’t know if that had anything to do with things. Either way, I was sitting with JB (our founder), and we wanted to see if we could get you on the line while we were talking through our opportunity.\r\n\r\nWould you have any time in the afternoon in the next few days to talk with us on a call? Let me know if there is a day and time that works best for you.\r\n\r\nBest,\r\nBilly\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, July 25, 2025 6:40 AM\r\nTo: Billy Dorsch <bdorsch@allredcorp.com>\r\nSubject: RE: DragonPlate Contact\r\n\r\nEXTERNAL EMAIL:Be cautious with links and attachments.\r\n\r\nThanks for the update. Looking forward to hearing from you soon!\r\nRick\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn July 24, 2025 at 4:02:57 PM, Billy Dorsch (bdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>) wrote:\r\nHi Rick,\r\n\r\nThis is a quick update to keep you in the loop. I will be meeting with JB in the EOD meeting today. I got bumped from an earlier time slot for a pressing matter. I will still be following up; I just didn’t want to go too long without updating you.\r\n\r\nThank you,\r\nBilly\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Thursday, July 24, 2025 7:05 AM\r\nTo: Billy Dorsch <bdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>>\r\nSubject: RE: DragonPlate Contact\r\n\r\nEXTERNAL EMAIL:Be cautious with links and attachments.\r\n\r\nHere’s what I’ve pulled from your website…\r\nCan you help with these prices?\r\n\r\n[cid:image001.png@01DBFFDC.2DE10050]\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn July 16, 2025 at 11:36:45 AM, Billy Dorsch (bdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>) wrote:\r\nHi Rick,\r\n\r\nYou are very welcome. I am meeting with JB this afternoon to discuss this; he’s had a lot of things to catch up on Monday and Tuesday. I will reach out after he and I connect on the next steps.\r\n\r\nEnjoy Miami! Safe travels, and I will be in touch later today.\r\n\r\nThanks,\r\nBilly\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Wednesday, July 16, 2025 7:41 AM\r\nTo: Billy Dorsch <bdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>>\r\nSubject: Re: DragonPlate Contact\r\n\r\nEXTERNAL EMAIL:Be cautious with links and attachments.\r\n\r\nHi Billy - thanks for the update.\r\nI was traveling a bit this week (in Miami today).\r\nCould you please provide an update on this?\r\nThanks!\r\nRick\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn July 11, 2025 at 11:16:54 AM, Billy Dorsch (bdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>) wrote:\r\nHi Rick,\r\n\r\nI\'m sorry for not getting this email out sooner. I just wanted to update you on the status of your request. I pinged the team yesterday, and today I see that a few of the folks I wanted to talk to aren’t in the office today. I have emailed our founder/president, JB Allred, to see his schedule for next week so we can arrange a call to discuss. I will let you know as soon as I hear from JB, who oversees our Engineering team. I don’t want too much time to pass, so I hope we can schedule something for early next week.\r\n\r\nThere is a chance I may not hear from JB until Monday morning, as he is currently out of the office today. Let me know if you have any open availability early next week, and I can bounce those off JB so we can sync up.\r\n\r\nThanks again, Rick. I look forward to your feedback and connecting with you next week!\r\n\r\nBest,\r\n\r\nBilly Dorsch\r\nSales, Allred & Associates\r\nbdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>    (315) 612-3876   www.allredcorp.com<http://www.allredcorp.com/>\r\n321 NY Rt. 5 Elbridge, NY 13060, USA\r\n[cid:image002.jpg@01DBFFDC.2DE10050] [cid:image003.jpg@01DBFFDC.2DE10050]\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-07-28 20:29:57','2025-12-09 19:26:25','2025-12-09 19:26:25','2025-12-09 19:26:25',NULL,NULL,NULL),
(525,4,'<be996467da09ebecf4815c6c5e8693c3d67dbcf6-20069627-110394750@google.com>',NULL,NULL,'Google Workspace Business Plus trial for mavrix.one has ended','workspace-noreply@google.com','=?UTF-8?Q?The_Google_Workspace_Team=C2=A0?=','<div>\r\n  <html xmlns:v=urn:schemas-microsoft-com:vml dir=ltr lang=en style=\"margin:0; padding:0\">\r\n    <meta http-equiv=Content-Type content=\"text/html; charset=utf-8\">\r\n    <meta name=viewport content=width=device-width>\r\n    <style>@media only screen{html{min-height:100%;background:#fafafa}}@media only screen and (max-width:640px){.small-float-center{margin:0 auto!important;float:none!important;text-align:center!important}}@media only screen and (max-width:640px){table.body img{width:auto;height:auto}table.body center{min-width:0!important}table.body .container{width:344px!important}table.body .columns{height:auto!important;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:40px!important;padding-right:40px!important}table.body .columns .columns{padding-left:0!important;padding-right:0!important}table.body .collapse .columns{padding-left:0!important;padding-right:0!important}th.small-1{display:inline-block!important;width:8.33333%!important}th.small-3{display:inline-block!important;width:25%!important}th.small-4{display:inline-block!important;width:33.33333%!important}th.small-6{display:inline-block!important;width:50%!important}th.small-8{display:inline-block!important;width:66.66667%!important}th.small-9{display:inline-block!important;width:75%!important}th.small-12{display:inline-block!important;width:100%!important}.columns th.small-12{display:block!important;width:100%!important}table.menu{width:100%!important}table.menu td,table.menu th{width:auto!important;display:inline-block!important}table.menu.vertical td,table.menu.vertical th{display:block!important}table.menu[align=center]{width:auto!important}}</style>\r\n    <span class=preheader style=color:#fafafa;display:none!important;font-size:1px;line-height:1px;max-height:0;max-width:0;mso-hide:all!important;opacity:0;overflow:hidden;visibility:hidden></span>\r\n    <table class=body style=Margin:0;background:#F8F9FA!important;border-collapse:collapse;border-spacing:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;height:100%;line-height:inherit;margin:0;padding:0;vertical-align:top;width:100%;text-align:left>\r\n      <tr style=padding:0;vertical-align:top>\r\n        <td class=center align=center valign=top style=-moz-hyphens:none;-webkit-hyphens:none;Margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all>\r\n          <center data-parsed=\"\" style=min-width:600px;width:100%>\r\n\r\n            <table align=center class=\"container float-center\" style=\"Margin:0 auto;background:#fafafa;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:left;vertical-align:top;width:600px\"><tbody><tr style=padding:0;vertical-align:top><td style=-moz-hyphens:none;-webkit-hyphens:none;Margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all>\r\n              <table class=\"row header\" style=background:#F8F9FA;border-collapse:collapse;border-spacing:0;display:table;font-size:12px;padding:0;position:relative;vertical-align:top;width:100%><tbody><tr style=padding:0;vertical-align:top>\r\n                <th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0 auto;padding:0;padding-bottom:24px;padding-left:40px;padding-right:40px;padding-top:12px;width:560px\"><table style=border-collapse:collapse;border-spacing:0;margin-bottom:0;padding:0;vertical-align:top;width:100%><tr style=padding:0;vertical-align:top><th style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0;text-align:left>\r\n\r\n                  <img src=https://storage.googleapis.com/support-kms-prod/GaOvClLdIVxiDUB6sr9FETwxw9I7ykkXR856 alt=\"Google Workspace\" height=30 style=-ms-interpolation-mode:bicubic;clear:both;display:block;margin-top:24px;max-height:30px;max-width:100%;outline:0;text-decoration:none;width:auto>\r\n\r\n                </th>\r\n<th class=expander style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0!important;visibility:hidden;width:0></th></tr></table></th>\r\n              </tr></tbody></table>\r\n\r\n              <table class=\"row info\" style=align-items:center;background:#fff;border-collapse:collapse;border-color:#E8EAED;border-spacing:0;border-style:solid;border-width:1px;display:table;padding:0;position:relative;vertical-align:top;width:100%><tbody><tr style=padding:0;vertical-align:top>\r\n                <th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0 auto;padding:0;padding-bottom:0;padding-left:40px;padding-right:40px;width:560px\"><table style=border-collapse:collapse;border-spacing:0;padding:0;vertical-align:top;width:100%><tr style=padding:0;vertical-align:top><th style=\"Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0 0 24px;text-align:left\">\r\n\r\n<title>End of free trial notification</title>\r\n<h2 style=\"margin:0;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:24px;font-weight:700;line-height:30px!important;margin-bottom:24px;margin-top:24px;padding:0;word-wrap:normal\">Your Google Workspace account has been suspended</h2>\r\n\r\n<p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;padding:0>Your free trial has ended, but you can continue using Google Workspace by adding your billing information.</p>\r\n\r\n<p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;margin:0;margin-bottom:16px;padding:0>Sign in to your Google Admin console and click <strong>Set up billing</strong>. Follow the steps to reactivate your account.</p>\r\n\r\n<table class=accountinfo style=align:center;background:#f3f3f3;border-collapse:collapse;border-spacing:0;margin-bottom:12px;padding:0;vertical-align:top;width:100% role=presentation>\r\n  <tbody>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <th class=accountinfo style=\"margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:inherit;line-height:inherit;margin:0;padding:16px 32px 0 32px\">\r\n      <h3 class=accountinfo style=\"margin:0;margin-bottom:8px;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;line-height:26px!important;margin:0;margin-bottom:12px;margin-top:none!important;padding:0;text-align:center;word-wrap:normal\">Your Google Workspace account</h3>\r\n      </th>\r\n    </tr>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <td class=accountinfo style=\"-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0 32px 0 32px;vertical-align:top;word-wrap:keep-all\">\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:0;padding:0><strong>Username:&nbsp;</strong></p>\r\n\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:16px;padding:0><a class=noclick style=margin:0;color:#1f1f1f;font-family:inherit;font-weight:inherit;margin:0;padding:0;text-decoration:none>rick@mavrix.one</a></p>\r\n      </td>\r\n    </tr>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <td class=accountinfo style=\"-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0 32px 0 32px;vertical-align:top;word-wrap:keep-all\">\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:0;padding:0><strong>Domain:&nbsp;</strong></p>\r\n\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:16px;padding:0><a class=noclick style=margin:0;color:#1f1f1f;font-family:inherit;font-weight:inherit;margin:0;padding:0;text-decoration:none>mavrix.one</a></p>\r\n      </td>\r\n    </tr>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <td class=accountinfo style=\"-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0 32px 0 32px;vertical-align:top;word-wrap:keep-all\">\r\n      <table class=\"button radius thumbnail\" role=presentation style=\"margin:9px 0 24px 0;border:none;border-collapse:collapse;border-radius:3px;border-spacing:0;box-shadow:0 0 0 1px rgba(10,10,10,.2);display:inline-block;line-height:0;margin:9px 0 24px 0;margin-bottom:inherit;max-width:100%;padding:0;transition:box-shadow .2s ease-out;vertical-align:top;width:auto\">\r\n        <tbody>\r\n          <tr style=padding:0;vertical-align:top>\r\n            <td style=-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all>\r\n            <table style=border-collapse:collapse;border-spacing:0;padding:0;vertical-align:top;width:100% role=presentation>\r\n              <tbody>\r\n                <tr style=padding:0;vertical-align:top>\r\n                  <td style=-moz-hyphens:none;-webkit-hyphens:none;margin:0;background:#1A73E8;border:none;border-collapse:collapse!important;border-radius:3px;color:#fff;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all><a href=https://admin.google.com style=\"margin:0;border:0 solid #1A73E8;border-radius:3px;color:#fff;display:inline-block;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:500;line-height:24px;margin:0;padding:8px 16px 8px 16px;text-decoration:none\">Sign in</a></td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n            </td>\r\n          </tr>\r\n        </tbody>\r\n      </table>\r\n\r\n      <p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;margin:0;margin-bottom:16px;padding:0><em>https://admin.google.com</em></p>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<h3 style=\"margin:0;margin-bottom:8px;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;line-height:26px!important;margin:0;margin-bottom:12px;margin-top:20px;padding:0;word-wrap:normal\">Get help</h3>\r\n\r\n<p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;margin:0;margin-bottom:16px;padding:0>If you have questions about your Google Workspace account, <a href=https://support.google.com/a/answer/1047213?utm_source=9053999&amp;utm_medium=email style=margin:0;color:#1A73E8;font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400;line-height:1.3;margin:0;padding:0;text-decoration:none>contact us</a> or <a href=https://support.google.com/a/answer/2633430?utm_source=9053999&amp;utm_medium=email style=margin:0;color:#1A73E8;font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400;line-height:1.3;margin:0;padding:0;text-decoration:none>learn more about billing</a>.</p>\r\n\r\n<p class=regards style=\"color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;line-height:24px;margin:0;margin-bottom:0!important;margin-top:8px;padding:0\">Sincerely,</p>\r\n\r\n<p class=signoff style=\"margin:0;margin-bottom:16px;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;line-height:24px;margin:0;margin-bottom:0px!important;padding:0\">The Google Workspace Team</p>\r\n            </th></tr></table></th>\r\n            </tr></tbody></table>\r\n\r\n            <table class=\"row footer\" role=presentation style=background:#F8F9FA;border-collapse:collapse;border-spacing:0;display:table;margin-top:0;padding:0;position:relative;vertical-align:top;width:100%><tbody><tr style=padding:0;vertical-align:top>\r\n              <th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0 auto;padding:0;padding-bottom:0;padding-left:40px;padding-right:40px;width:560px\"><table style=border-collapse:collapse;border-spacing:0;padding:0;vertical-align:top;width:100%><tr style=padding:0;vertical-align:top><th style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:24px;text-align:left>\r\n\r\n                <img src=https://storage.googleapis.com/support-kms-prod/GaOvClLdIVxiDUB6sr9FETwxw9I7ykkXR856 alt=\"Google Workspace\" height=30 style=-ms-interpolation-mode:bicubic;clear:both;display:block;margin-bottom:14px;max-width:100%;max-height:30px;outline:0;text-decoration:none;width:auto>\r\n                <p style=Margin:0;Margin-bottom:16px;color:#6C737F;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:14px;padding:0>\r\n            © 2025  Google LLC&nbsp;1600 Amphitheatre Parkway, Mountain View, CA 94043\r\n                </p>\r\n                <p style=Margin:0;Margin-bottom:16px;color:#6C737F;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:14px;padding:0>\r\n            <em>You’re receiving this mandatory email service announcement to update you about important changes to your Google Workspace product or account.</em>\r\n            </p>\r\n            </th>\r\n<th class=expander style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0!important;visibility:hidden;width:0></th></tr></table></th>\r\n            </tr></tbody></table>\r\n            </td></tr></tbody></table>\r\n\r\n          </center>\r\n        </td>\r\n      </tr>\r\n    </table>\r\n    <!-- prevent Gmail on iOS font size manipulation -->\r\n   <div style=\"display:none;white-space:nowrap;font:15px courier;line-height:0\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </div>\r\n\r\n</html>\r\n</div>','From: \"The Google Workspace Team\" [workspace-noreply@google.com]\r\nSubject:  Google Workspace Business Plus trial for mavrix.one has ended\r\n\r\nEnd of free trial notification\r\n\r\n## Your Google Workspace account has been suspended\r\n\r\nYour free trial has ended, but you can continue using Google Workspace by  \r\nadding your billing information.\r\n\r\nSign in to your Google Admin console and click **Set up billing**. Follow  \r\nthe steps to reactivate your account.\r\n\r\n### Your Google Workspace account\r\n\r\n**Username: **\r\n\r\nrick@mavrix.one\r\n\r\n**Domain: **\r\n\r\nmavrix.one\r\n\r\nSign in (https://admin.google.com)\r\n\r\nhttps://admin.google.com\r\n\r\n### Get help\r\n\r\nIf you have questions about your Google Workspace account, contact us  \r\n(https://support.google.com/a/answer/1047213?utm_source=9053999&utm_medium=email)  \r\nor learn more about billing  \r\n(https://support.google.com/a/answer/2633430?utm_source=9053999&utm_medium=email).\r\n\r\nSincerely,\r\n\r\nThe Google Workspace Team\r\n\r\n\r\n(C) 2025  Google LLC 1600 Amphitheatre Parkway, Mountain View, CA 94043 *   \r\nGoogle Asia Pacific Pte. Ltd., 8 Marina View, #30-01, Asia Square 1,  \r\nSingapore 018960  *  Google Ireland Ltd, Gordon House, Barrow Street,  \r\nDublin 4, Ireland.\r\n\r\nYou\'re receiving this mandatory email service announcement to update you  \r\nabout important changes to your Google Workspace product or account.',0,0,0,0,0,0,'2025-07-29 01:36:18','2025-12-09 19:26:25','2025-12-09 19:26:25','2025-12-09 19:26:25',NULL,NULL,NULL),
(526,4,'<5af44bcb919556b2c12dedc82a04b8611026a6b1-20069627-110394750@google.com>',NULL,NULL,'Google Workspace Business Plus trial for mavrix.one has ended','workspace-noreply@google.com','=?UTF-8?Q?The_Google_Workspace_Team=C2=A0?=','<div>\r\n  <html xmlns:v=urn:schemas-microsoft-com:vml dir=ltr lang=en style=\"margin:0; padding:0\">\r\n    <meta http-equiv=Content-Type content=\"text/html; charset=utf-8\">\r\n    <meta name=viewport content=width=device-width>\r\n    <style>@media only screen{html{min-height:100%;background:#fafafa}}@media only screen and (max-width:640px){.small-float-center{margin:0 auto!important;float:none!important;text-align:center!important}}@media only screen and (max-width:640px){table.body img{width:auto;height:auto}table.body center{min-width:0!important}table.body .container{width:344px!important}table.body .columns{height:auto!important;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:40px!important;padding-right:40px!important}table.body .columns .columns{padding-left:0!important;padding-right:0!important}table.body .collapse .columns{padding-left:0!important;padding-right:0!important}th.small-1{display:inline-block!important;width:8.33333%!important}th.small-3{display:inline-block!important;width:25%!important}th.small-4{display:inline-block!important;width:33.33333%!important}th.small-6{display:inline-block!important;width:50%!important}th.small-8{display:inline-block!important;width:66.66667%!important}th.small-9{display:inline-block!important;width:75%!important}th.small-12{display:inline-block!important;width:100%!important}.columns th.small-12{display:block!important;width:100%!important}table.menu{width:100%!important}table.menu td,table.menu th{width:auto!important;display:inline-block!important}table.menu.vertical td,table.menu.vertical th{display:block!important}table.menu[align=center]{width:auto!important}}</style>\r\n    <span class=preheader style=color:#fafafa;display:none!important;font-size:1px;line-height:1px;max-height:0;max-width:0;mso-hide:all!important;opacity:0;overflow:hidden;visibility:hidden></span>\r\n    <table class=body style=Margin:0;background:#F8F9FA!important;border-collapse:collapse;border-spacing:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;height:100%;line-height:inherit;margin:0;padding:0;vertical-align:top;width:100%;text-align:left>\r\n      <tr style=padding:0;vertical-align:top>\r\n        <td class=center align=center valign=top style=-moz-hyphens:none;-webkit-hyphens:none;Margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all>\r\n          <center data-parsed=\"\" style=min-width:600px;width:100%>\r\n\r\n            <table align=center class=\"container float-center\" style=\"Margin:0 auto;background:#fafafa;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:left;vertical-align:top;width:600px\"><tbody><tr style=padding:0;vertical-align:top><td style=-moz-hyphens:none;-webkit-hyphens:none;Margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all>\r\n              <table class=\"row header\" style=background:#F8F9FA;border-collapse:collapse;border-spacing:0;display:table;font-size:12px;padding:0;position:relative;vertical-align:top;width:100%><tbody><tr style=padding:0;vertical-align:top>\r\n                <th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0 auto;padding:0;padding-bottom:24px;padding-left:40px;padding-right:40px;padding-top:12px;width:560px\"><table style=border-collapse:collapse;border-spacing:0;margin-bottom:0;padding:0;vertical-align:top;width:100%><tr style=padding:0;vertical-align:top><th style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0;text-align:left>\r\n\r\n                  <img src=https://storage.googleapis.com/support-kms-prod/GaOvClLdIVxiDUB6sr9FETwxw9I7ykkXR856 alt=\"Google Workspace\" height=30 style=-ms-interpolation-mode:bicubic;clear:both;display:block;margin-top:24px;max-height:30px;max-width:100%;outline:0;text-decoration:none;width:auto>\r\n\r\n                </th>\r\n<th class=expander style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0!important;visibility:hidden;width:0></th></tr></table></th>\r\n              </tr></tbody></table>\r\n\r\n              <table class=\"row info\" style=align-items:center;background:#fff;border-collapse:collapse;border-color:#E8EAED;border-spacing:0;border-style:solid;border-width:1px;display:table;padding:0;position:relative;vertical-align:top;width:100%><tbody><tr style=padding:0;vertical-align:top>\r\n                <th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0 auto;padding:0;padding-bottom:0;padding-left:40px;padding-right:40px;width:560px\"><table style=border-collapse:collapse;border-spacing:0;padding:0;vertical-align:top;width:100%><tr style=padding:0;vertical-align:top><th style=\"Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0 0 24px;text-align:left\">\r\n\r\n<title>End of free trial notification</title>\r\n<h2 style=\"margin:0;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:24px;font-weight:700;line-height:30px!important;margin-bottom:24px;margin-top:24px;padding:0;word-wrap:normal\">Your Google Workspace account has been suspended</h2>\r\n\r\n<p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;padding:0>Your free trial has ended, but you can continue using Google Workspace by adding your billing information.</p>\r\n\r\n<p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;margin:0;margin-bottom:16px;padding:0>Sign in to your Google Admin console and click <strong>Set up billing</strong>. Follow the steps to reactivate your account.</p>\r\n\r\n<table class=accountinfo style=align:center;background:#f3f3f3;border-collapse:collapse;border-spacing:0;margin-bottom:12px;padding:0;vertical-align:top;width:100% role=presentation>\r\n  <tbody>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <th class=accountinfo style=\"margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:inherit;line-height:inherit;margin:0;padding:16px 32px 0 32px\">\r\n      <h3 class=accountinfo style=\"margin:0;margin-bottom:8px;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;line-height:26px!important;margin:0;margin-bottom:12px;margin-top:none!important;padding:0;text-align:center;word-wrap:normal\">Your Google Workspace account</h3>\r\n      </th>\r\n    </tr>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <td class=accountinfo style=\"-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0 32px 0 32px;vertical-align:top;word-wrap:keep-all\">\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:0;padding:0><strong>Username:&nbsp;</strong></p>\r\n\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:16px;padding:0><a class=noclick style=margin:0;color:#1f1f1f;font-family:inherit;font-weight:inherit;margin:0;padding:0;text-decoration:none>rick@mavrix.one</a></p>\r\n      </td>\r\n    </tr>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <td class=accountinfo style=\"-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0 32px 0 32px;vertical-align:top;word-wrap:keep-all\">\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:0;padding:0><strong>Domain:&nbsp;</strong></p>\r\n\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:16px;padding:0><a class=noclick style=margin:0;color:#1f1f1f;font-family:inherit;font-weight:inherit;margin:0;padding:0;text-decoration:none>mavrix.one</a></p>\r\n      </td>\r\n    </tr>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <td class=accountinfo style=\"-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0 32px 0 32px;vertical-align:top;word-wrap:keep-all\">\r\n      <table class=\"button radius thumbnail\" role=presentation style=\"margin:9px 0 24px 0;border:none;border-collapse:collapse;border-radius:3px;border-spacing:0;box-shadow:0 0 0 1px rgba(10,10,10,.2);display:inline-block;line-height:0;margin:9px 0 24px 0;margin-bottom:inherit;max-width:100%;padding:0;transition:box-shadow .2s ease-out;vertical-align:top;width:auto\">\r\n        <tbody>\r\n          <tr style=padding:0;vertical-align:top>\r\n            <td style=-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all>\r\n            <table style=border-collapse:collapse;border-spacing:0;padding:0;vertical-align:top;width:100% role=presentation>\r\n              <tbody>\r\n                <tr style=padding:0;vertical-align:top>\r\n                  <td style=-moz-hyphens:none;-webkit-hyphens:none;margin:0;background:#1A73E8;border:none;border-collapse:collapse!important;border-radius:3px;color:#fff;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all><a href=https://admin.google.com style=\"margin:0;border:0 solid #1A73E8;border-radius:3px;color:#fff;display:inline-block;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:500;line-height:24px;margin:0;padding:8px 16px 8px 16px;text-decoration:none\">Sign in</a></td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n            </td>\r\n          </tr>\r\n        </tbody>\r\n      </table>\r\n\r\n      <p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;margin:0;margin-bottom:16px;padding:0><em>https://admin.google.com</em></p>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<h3 style=\"margin:0;margin-bottom:8px;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;line-height:26px!important;margin:0;margin-bottom:12px;margin-top:20px;padding:0;word-wrap:normal\">Get help</h3>\r\n\r\n<p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;margin:0;margin-bottom:16px;padding:0>If you have questions about your Google Workspace account, <a href=https://support.google.com/a/answer/1047213?utm_source=9053999&amp;utm_medium=email style=margin:0;color:#1A73E8;font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400;line-height:1.3;margin:0;padding:0;text-decoration:none>contact us</a> or <a href=https://support.google.com/a/answer/2633430?utm_source=9053999&amp;utm_medium=email style=margin:0;color:#1A73E8;font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400;line-height:1.3;margin:0;padding:0;text-decoration:none>learn more about billing</a>.</p>\r\n\r\n<p class=regards style=\"color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;line-height:24px;margin:0;margin-bottom:0!important;margin-top:8px;padding:0\">Sincerely,</p>\r\n\r\n<p class=signoff style=\"margin:0;margin-bottom:16px;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;line-height:24px;margin:0;margin-bottom:0px!important;padding:0\">The Google Workspace Team</p>\r\n            </th></tr></table></th>\r\n            </tr></tbody></table>\r\n\r\n            <table class=\"row footer\" role=presentation style=background:#F8F9FA;border-collapse:collapse;border-spacing:0;display:table;margin-top:0;padding:0;position:relative;vertical-align:top;width:100%><tbody><tr style=padding:0;vertical-align:top>\r\n              <th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0 auto;padding:0;padding-bottom:0;padding-left:40px;padding-right:40px;width:560px\"><table style=border-collapse:collapse;border-spacing:0;padding:0;vertical-align:top;width:100%><tr style=padding:0;vertical-align:top><th style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:24px;text-align:left>\r\n\r\n                <img src=https://storage.googleapis.com/support-kms-prod/GaOvClLdIVxiDUB6sr9FETwxw9I7ykkXR856 alt=\"Google Workspace\" height=30 style=-ms-interpolation-mode:bicubic;clear:both;display:block;margin-bottom:14px;max-width:100%;max-height:30px;outline:0;text-decoration:none;width:auto>\r\n                <p style=Margin:0;Margin-bottom:16px;color:#6C737F;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:14px;padding:0>\r\n            © 2025  Google LLC&nbsp;1600 Amphitheatre Parkway, Mountain View, CA 94043\r\n                </p>\r\n                <p style=Margin:0;Margin-bottom:16px;color:#6C737F;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:14px;padding:0>\r\n            <em>You’re receiving this mandatory email service announcement to update you about important changes to your Google Workspace product or account.</em>\r\n            </p>\r\n            </th>\r\n<th class=expander style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0!important;visibility:hidden;width:0></th></tr></table></th>\r\n            </tr></tbody></table>\r\n            </td></tr></tbody></table>\r\n\r\n          </center>\r\n        </td>\r\n      </tr>\r\n    </table>\r\n    <!-- prevent Gmail on iOS font size manipulation -->\r\n   <div style=\"display:none;white-space:nowrap;font:15px courier;line-height:0\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </div>\r\n\r\n</html>\r\n</div>','From: \"The Google Workspace Team\" [workspace-noreply@google.com]\r\nSubject:  Google Workspace Business Plus trial for mavrix.one has ended\r\n\r\nEnd of free trial notification\r\n\r\n## Your Google Workspace account has been suspended\r\n\r\nYour free trial has ended, but you can continue using Google Workspace by  \r\nadding your billing information.\r\n\r\nSign in to your Google Admin console and click **Set up billing**. Follow  \r\nthe steps to reactivate your account.\r\n\r\n### Your Google Workspace account\r\n\r\n**Username: **\r\n\r\nrick@mavrix.one\r\n\r\n**Domain: **\r\n\r\nmavrix.one\r\n\r\nSign in (https://admin.google.com)\r\n\r\nhttps://admin.google.com\r\n\r\n### Get help\r\n\r\nIf you have questions about your Google Workspace account, contact us  \r\n(https://support.google.com/a/answer/1047213?utm_source=9053999&utm_medium=email)  \r\nor learn more about billing  \r\n(https://support.google.com/a/answer/2633430?utm_source=9053999&utm_medium=email).\r\n\r\nSincerely,\r\n\r\nThe Google Workspace Team\r\n\r\n\r\n(C) 2025  Google LLC 1600 Amphitheatre Parkway, Mountain View, CA 94043 *   \r\nGoogle Asia Pacific Pte. Ltd., 8 Marina View, #30-01, Asia Square 1,  \r\nSingapore 018960  *  Google Ireland Ltd, Gordon House, Barrow Street,  \r\nDublin 4, Ireland.\r\n\r\nYou\'re receiving this mandatory email service announcement to update you  \r\nabout important changes to your Google Workspace product or account.',0,0,0,0,0,0,'2025-07-29 01:36:21','2025-12-09 19:26:26','2025-12-09 19:26:26','2025-12-09 19:26:26',NULL,NULL,NULL),
(527,4,' <DM6PR07MB5850BCD0F8D640CA07DBA9A6AD25A@DM6PR07MB5850.namprd07.prod.outlook.com>',NULL,NULL,'Commercial Real Estate Connection','rich@achramlabs.com','Richard Van Voorst','<html xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;\r\n	panose-1:2 11 0 4 2 2 2 2 2 4;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle17\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Rick and Tony,<br>\r\n<br>\r\nIt was great being with you all last week. Lots of great work to be done on the horizon. Meet Casey Crane! He is my commercial real-estate financing guy who specializes in projects like this! Hoping that he can simplify&nbsp; this project as much as possible! Let\r\n me know if I can assist in any further ways!<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:none\">Talk soon,<br>\r\n<br>\r\nRich<br>\r\n<br>\r\n--&nbsp;</span><span style=\"font-size:11.0pt;mso-ligatures:none\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;mso-ligatures:none\">Rich Van Voorst\r\n<br>\r\nAchram Labs | CEO<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;mso-ligatures:none\"><a href=\"http://www.achramlabs.com\"><span style=\"color:#467886\">www.achramlabs.com</span></a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;mso-ligatures:none\">e: <a href=\"mailto:rich@achramlabs.com\">\r\n<span style=\"color:#467886\">rich@achramlabs.com</span></a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;mso-ligatures:none\">m: 813-334-5104<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><br>\r\n<br>\r\n<o:p></o:p></span></p>\r\n</div>\r\n</body>\r\n</html>','Rick and Tony,\r\n\r\nIt was great being with you all last week. Lots of great work to be done on the horizon. Meet Casey Crane! He is my commercial real-estate financing guy who specializes in projects like this! Hoping that he can simplify  this project as much as possible! Let me know if I can assist in any further ways!\r\n\r\n\r\nTalk soon,\r\n\r\nRich\r\n\r\n--\r\nRich Van Voorst\r\nAchram Labs | CEO\r\nwww.achramlabs.com<http://www.achramlabs.com>\r\ne: rich@achramlabs.com<mailto:rich@achramlabs.com>\r\nm: 813-334-5104',0,0,0,0,0,0,'2025-07-29 15:10:42','2025-12-09 19:26:26','2025-12-09 19:26:26','2025-12-09 19:26:26',NULL,NULL,NULL),
(528,4,'<42b70e0954a1247a5336e6118de841ee@mavrix.one>',NULL,NULL,'delivery test','carson@mavrix.one','carson@mavrix.one','test, message me when you get this\r\n','test, message me when you get this\r\n',0,0,0,0,0,0,'2025-07-29 15:43:46','2025-12-09 19:26:26','2025-12-09 19:26:26','2025-12-09 19:26:26',NULL,NULL,NULL),
(529,4,'<CACQnrv5SoPz=f7xr-QSeGr1VtAe7TuAC4_CoiuKRJ0K34ab20Q@mail.gmail.com>',NULL,NULL,'delivery test','cowlett@blackmirage.com','Carson Owlett','<div dir=\"ltr\"><div>testing message when you get this one too</div><br><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><div><div dir=\"ltr\">\r\n<table style=\"width:400px;font-size:9pt;font-family:Arial,sans-serif;line-height:normal\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n <tr>\r\n  <td style=\"font-size:12pt;font-family:Arial,sans-serif;color:rgb(23,147,206);padding-bottom:6px;width:259px\">\r\n  <span style=\"font-family:Arial,sans-serif;color:rgb(138,15,15);font-weight:bold\">Carson Owlett</span>\r\n  <span style=\"font-family:Arial,sans-serif;color:rgb(135,135,135);font-size:10pt\"><span style=\"font-family:Arial,sans-serif;color:rgb(135,135,135)\"><br>Chief Executive Officer</span></span>\r\n  </td>\r\n  <td style=\"width:141px;padding-bottom:6px;text-align:right\">\r\n   <img src=\"https://ci3.googleusercontent.com/mail-sig/AIorK4yer5mAoznEQM96HTM1PjIIJaepkfqtgsJKS53Jt8Pjv6nBI2bAUvOOnvu0XD2OkLTPtks0spfXDhMK\">\r\n   \r\n  <br></td>\r\n  \r\n </tr>\r\n <tr><td style=\"width:400px;border-top:1px solid rgb(138,15,15)\" colspan=\"2\" width=\"400\"> </td></tr>\r\n <tr>\r\n  <td style=\"font-size:10pt;font-family:Arial,sans-serif;font-weight:bold;color:rgb(44,44,44);width:400px\" colspan=\"2\" width=\"400\">\r\n  <span style=\"font-family:Arial,sans-serif;color:rgb(44,44,44)\">Black Mirage</span>\r\n  </td>\r\n </tr>\r\n \r\n \r\n \r\n \r\n <tr>\r\n  <td style=\"font-size:10pt;font-family:Arial,sans-serif;color:rgb(44,44,44);width:400px\" colspan=\"2\" width=\"400\">\r\n  <span style=\"font-family:Arial,sans-serif;color:rgb(44,44,44)\"><br>m: 570-439-8121<br>e:  </span><a href=\"mailto:cowlett@blackmirage.com\" target=\"_blank\"><span style=\"color:rgb(153,0,0)\">cowlett@blackmirage.com</span></a><span style=\"font-family:Arial,sans-serif;color:rgb(44,44,44)\"><br><span style=\"background-color:rgb(255,255,255)\"><br></span></span><a href=\"https://calendly.com/blackmirage/sc\" target=\"_blank\"><b><span style=\"color:rgb(153,0,0)\">Book a meeting!</span></b></a></td>\r\n </tr>\r\n <tr><td style=\"width:400px\" colspan=\"2\" width=\"400\"> </td></tr>\r\n <tr>\r\n  <td style=\"font-size:10pt;font-family:Arial,sans-serif;font-weight:bold;color:rgb(23,147,206);width:200px;height:15px\" width=\"200\">\r\n  <span style=\"display:inline-block;height:15px;font-family:Arial,sans-serif;font-size:9pt\"><a href=\"https://www.blackmirage.com\" style=\"text-decoration:none\" target=\"_blank\"><span style=\"font-family:Arial,sans-serif;color:rgb(138,15,15)\">www.blackmirage.com</span></a></span>\r\n  </td>\r\n  <td style=\"width:200px;text-align:right\" width=\"200\"><span style=\"display:inline-block;height:15px\"></span>\r\n  <br></td>\r\n </tr>\r\n\r\n \r\n <tr><td style=\"width:400px\" colspan=\"2\" width=\"400\"> </td></tr>\r\n <tr>\r\n  <td style=\"font-size:8pt;font-family:Arial,sans-serif;color:rgb(135,135,135);width:400px;text-align:justify\" colspan=\"2\" width=\"400\">\r\n  <span style=\"font-family:Arial,sans-serif;color:rgb(135,135,135)\">The\r\n content of this email is confidential and intended for the recipient \r\nspecified in message only. It is strictly forbidden to share any part of\r\n this message with any third party, without a written consent of the \r\nsender. If you received this message by mistake, please reply to this \r\nmessage and follow with its deletion, so that we can ensure such a \r\nmistake does not occur in the future.</span>\r\n  </td>\r\n </tr>	\r\n</tbody>\r\n</table>\r\n</div></div></div></div></div></div></div>','testing message when you get this one too\r\n\r\n-- \r\nCarson Owlett\r\nChief Executive Officer\r\n\r\nBlack Mirage\r\n\r\nm: 570-439-8121\r\ne:  cowlett@blackmirage.com\r\n\r\n*Book a meeting!* <https://calendly.com/blackmirage/sc>\r\n\r\nwww.blackmirage.com\r\n\r\nThe content of this email is confidential and intended for the recipient\r\nspecified in message only. It is strictly forbidden to share any part of\r\nthis message with any third party, without a written consent of the sender.\r\nIf you received this message by mistake, please reply to this message and\r\nfollow with its deletion, so that we can ensure such a mistake does not\r\noccur in the future.',0,0,0,0,0,0,'2025-07-29 15:45:35','2025-12-09 19:26:27','2025-12-09 19:26:27','2025-12-09 19:26:27',NULL,NULL,NULL),
(530,4,'<2a0vbF_iXofKQmuw1_PSwlP5njv0pWFHXqTnWVOWl1o2vR1M20I4EnCGn_OmwJLxJi7lDzz1r8CnlcrV9OsGFJtiBjJ8KMyEmqg01upO1eQ=@protonmail.com>',NULL,NULL,'Re: Commercial Real Estate Connection','TonyAponte@protonmail.com','Tony Aponte','<div style=\"font-family: Arial, sans-serif; font-size: 14px;\">Rich,</div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\">Thank you for the virtual link up.</div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\">Casey,</div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\">Thanks for taking the time to help us. We\'ve attached an example of what we are looking for. Specific requirements are at least 10k Square feet, Phase 3 power w/ 480w, office space, warehouse space, allows for fabrication. Also, it must be towards the edge of or directly outside of Class D airspace. I have attached a photo of the class D airspace bubbles to help give an idea. Ideally we are looking for west of the bay, with Tampa a secondary. Let us know if you require more information. Thank you again for the help.</div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><ul data-editing-info=\"{&quot;orderedStyleType&quot;:1,&quot;unorderedStyleType&quot;:2}\" style=\"margin-top: 0px; margin-bottom: 0px;\"><li style=\"list-style-type: &quot;- &quot;;\"><span>TA</span></li></ul></div>\r\n<div style=\"font-family: Arial, sans-serif; font-size: 14px;\" class=\"protonmail_signature_block protonmail_signature_block-empty\">\r\n    <div class=\"protonmail_signature_block-user protonmail_signature_block-empty\">\r\n        \r\n            </div>\r\n    \r\n            <div class=\"protonmail_signature_block-proton protonmail_signature_block-empty\">\r\n        \r\n            </div>\r\n</div>\r\n<div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div><div class=\"protonmail_quote\">\r\n        On Tuesday, July 29th, 2025 at 11:10, Richard Van Voorst &lt;rich@achramlabs.com&gt; wrote:<br>\r\n        <blockquote class=\"protonmail_quote\" type=\"cite\">\r\n            \r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Rick and Tony,<br>\r\n<br>\r\nIt was great being with you all last week. Lots of great work to be done on the horizon. Meet Casey Crane! He is my commercial real-estate financing guy who specializes in projects like this! Hoping that he can simplify&nbsp; this project as much as possible! Let\r\n me know if I can assist in any further ways!</span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:none\">Talk soon,<br>\r\n<br>\r\nRich<br>\r\n<br>\r\n--&nbsp;</span><span style=\"font-size:11.0pt;mso-ligatures:none\"></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;mso-ligatures:none\">Rich Van Voorst\r\n<br>\r\nAchram Labs | CEO</span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;mso-ligatures:none\"><a href=\"http://www.achramlabs.com\" target=\"_blank\" rel=\"noreferrer nofollow noopener\"><span style=\"color:#467886\">www.achramlabs.com</span></a></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;mso-ligatures:none\">e: <a href=\"mailto:rich@achramlabs.com\" rel=\"noreferrer nofollow noopener\">\r\n<span style=\"color:#467886\">rich@achramlabs.com</span></a></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;mso-ligatures:none\">m: 813-334-5104</span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><br>\r\n<br>\r\n</span></p>\r\n</div>\r\n\r\n\r\n\r\n        </blockquote><br>\r\n    </div>','Rich,\n\nThank you for the virtual link up.\n\nCasey,\n\nThanks for taking the time to help us. We\'ve attached an example of what we are looking for. Specific requirements are at least 10k Square feet, Phase 3 power w/ 480w, office space, warehouse space, allows for fabrication. Also, it must be towards the edge of or directly outside of Class D airspace. I have attached a photo of the class D airspace bubbles to help give an idea. Ideally we are looking for west of the bay, with Tampa a secondary. Let us know if you require more information. Thank you again for the help.\n\n- TA\n\nOn Tuesday, July 29th, 2025 at 11:10, Richard Van Voorst <rich@achramlabs.com> wrote:\n\n> Rick and Tony,\n>\n> It was great being with you all last week. Lots of great work to be done on the horizon. Meet Casey Crane! He is my commercial real-estate financing guy who specializes in projects like this! Hoping that he can simplify this project as much as possible! Let me know if I can assist in any further ways!\n>\n> Talk soon,\n>\n> Rich\n>\n> --\n>\n> Rich Van Voorst\n> Achram Labs | CEO\n>\n> www.achramlabs.com\n>\n> e: rich@achramlabs.com\n>\n> m: 813-334-5104',0,0,0,0,0,0,'2025-07-29 16:15:15','2025-12-09 19:26:33','2025-12-09 19:26:33','2025-12-09 19:26:33',NULL,NULL,NULL),
(531,4,'<etPan.6888f6fb.11912dfd.1c62@mavrix.one>',NULL,NULL,'Fwd: Mach 500 quote.','rick@mavrix.one','Rick','(No content)','(No content)',0,0,0,0,0,0,'2025-07-29 16:29:40','2025-12-09 19:26:36','2025-12-09 19:26:36','2025-12-09 19:26:36',NULL,NULL,NULL),
(532,4,' <BL3PR20MB4924981F72D61D7726548827AF25A@BL3PR20MB4924.namprd20.prod.outlook.com>',NULL,NULL,'Re: Follow Up - Due Diligence Checklist','jason@corvexsystems.com','Jason Blick','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nHi Rick,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nYes, those are basically the core machine-wise capital expenditures for Phase Alpha.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nLet me know if you need anything else in the meantime, or if you would like me to assist on any other fronts.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nRegards,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nJason</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, July 29, 2025 10:59 AM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Subject:</b> Re: Follow Up - Due Diligence Checklist</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Based on your Alpha phase does this look approx.:</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\"><img class=\"x_composer_internal_attach\" data-outlook-trace=\"F:1|T:1\" src=\"cid:94D2AC88-3E4E-4593-907E-043964D8A05A\"><br>\r\n</div>\r\nI’m tracking for other things as well…\r\n<div>Update me if you have today’s numbers.</div>\r\n<div>Thanks!</div>\r\n<div>Rick<br>\r\n<div class=\"x_gmail_signature\"><br>\r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD,&nbsp;</span>\r\n<div style=\"font-family:Helvetica,Arial\">Founder, CTO</div>\r\n<div style=\"font-family:Helvetica,Arial\"><img class=\"x_composer_internal_attach\" style=\"max-width:99%\" data-outlook-trace=\"F:1|T:1\" src=\"cid:47707815-79F6-4401-BF4D-0F1A9A99102D\"><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial\"><a href=\"http://mavrix1.com/\">mavrix1.com</a></div>\r\n</div>\r\n<div><br>\r\n</div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On July 9, 2025 at 5:45:36 PM, Jason Blick (<a href=\"mailto:jason@corvexsystems.com\">jason@corvexsystems.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHello Brian,</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nBelow I have placed a link to the due diligence folder for you and Rick to review, and also attached to this email is a copy of the signed checklist.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nhttps://drive.google.com/drive/folders/1ZdbIjsJXpQky8Oo_exoopnmNrF-e7wmw?usp=sharing</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nI was also thinking about it further, and given the business climate of Florida, if you wanted to make an offer contingent on standing up FAB1 in your area of Florida, as opposed to Reno, that is something I would strongly consider. This would also probably\r\n allow us to collaborate and grow even more effectively with Mavrix.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nLastly, I have confirmed with Varvara about formally coming on to the team as a business development manager, to really help get the sales funnel and our commercial outreach bolstered, which is our next biggest initiative now that product development and facilities\r\n design have been squared away.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nLet me know if you guys need anything else in the meantime.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"direction:ltr; text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0px; font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(36,36,36)\">\r\nRegards,</div>\r\n<div class=\"x_elementToProof\" style=\"direction:ltr; text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0px; font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(36,36,36)\">\r\nJason Blick</div>\r\n<div class=\"x_elementToProof\" style=\"direction:ltr; text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0px; font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(36,36,36)\">\r\nFounder/CEO</div>\r\n<div class=\"x_elementToProof\" style=\"direction:ltr; text-align:left; text-indent:0px; background-color:rgb(255,255,255); margin:0px; font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(36,36,36)\">\r\nCorvex Systems</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Brian Stufflebean &lt;brian@bayfrontcapitalllc.com&gt;<br>\r\n<b>Sent:</b> Tuesday, July 8, 2025 2:27 PM<br>\r\n<b>To:</b> Jason Blick &lt;jason@corvexsystems.com&gt;<br>\r\n<b>Cc:</b> Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Follow Up - Due Diligence Checklist</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"line-break:after-white-space\">\r\n<div><span style=\"font-size:14px\"><br>\r\n</span></div>\r\n<span style=\"font-size:14px\">Good afternoon Jason,&nbsp;</span><br>\r\n<div><span style=\"font-size:14px\"><br>\r\n</span></div>\r\n<div><span style=\"font-size:14px\">We appreciated your time on the Zoom call yesterday. &nbsp;Per our conversation, attached you will find a diligence checklist that is a typical starting point for start of out review. It may or may not be fully comprehensive and\r\n there may be other items requested along the way. &nbsp;</span></div>\r\n<div><span style=\"font-size:14px\"><br>\r\n</span></div>\r\n<div><span style=\"font-size:14px\">We look forward to hearing back and if it is easier for you to create a folder in your Google Drive account, that is fine as well. Please include a signed copy of the Due Diligence document as well.&nbsp;</span></div>\r\n<div><span style=\"font-size:14px\"><br>\r\n</span></div>\r\n<div><span style=\"font-size:14px\"><i><b>Please confirm receipt of this email and also, please provide me with your Direct cell phone number. &nbsp;My cell number is listed below and you can feel free to call or text Rick or me with any questions you may have.\r\n</b></i>&nbsp;</span></div>\r\n<div><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div></div>\r\n</div>\r\n<div style=\"line-break:after-white-space\">\r\n<div></div>\r\n<div>&nbsp;<br>\r\n<div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\nBest Regards,&nbsp;<br>\r\n<br>\r\n<br>\r\nBrian C. Stufflebean, CEO<br>\r\n<b>Bayfront Capital, LLC</b><br>\r\n(941)545-4153 Direct<br>\r\n(866)896-2423 Fax<br>\r\nbrian@bayfrontcapitalllc.com<br>\r\nwww.bayfrontcapitalllc.com<br>\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>\r\n<br>\r\n</div>\r\n<span style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\"></span><br class=\"x_x_x_Apple-interchange-newline\" style=\"color:rgb(0,0,0); font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none\">\r\n<span style=\"color:rgb(0,0,0); font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none\"></span><span></span></div>\r\n</div>\r\n</div>\r\n<div style=\"line-break:after-white-space\">\r\n<div>\r\n<div><span></span>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<span><br class=\"x_x_x_Apple-interchange-newline\">\r\n<br class=\"x_x_x_Apple-interchange-newline\">\r\n<br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; orphans:auto; text-align:start; text-indent:0px; text-transform:none; white-space:normal; widows:auto; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<b>CONFIDENTIALITY NOTICE / NOTICE&nbsp;OF&nbsp;NOT A REGISTERED&nbsp;BROKER/DEALER:</b><span style=\"font-weight:400\">&nbsp;Bayfront Capital&nbsp;LLC, nor its’ affiliates are registered as&nbsp;a Broker/Dealer, nor registered with&nbsp;FINRA. Nor does&nbsp;it provide tax or&nbsp;investment advice.&nbsp;&nbsp;Any\r\n references&nbsp;made to any transaction in any&nbsp;communication is being made as a&nbsp;business consultant.&nbsp;&nbsp;&nbsp;This is not a&nbsp;solicitation nor offer of any type and any&nbsp;reference to any proposed transaction&nbsp;of any type is void where prohibited by&nbsp;law.&nbsp;This communication&nbsp;is\r\n confidential&nbsp;and intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient, you&nbsp;may not copy, disclose, or&nbsp;distribute this message&nbsp;to anyone else;&nbsp;any such actions may be unlawful. If&nbsp;you have received this communication&nbsp;in error,&nbsp;please\r\n contact the sender of&nbsp;the message to&nbsp;inform him or her of the&nbsp;error.</span></div>\r\n</div>\r\n<br>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Hi Rick,\r\n\r\nYes, those are basically the core machine-wise capital expenditures for Phase Alpha.\r\n\r\nLet me know if you need anything else in the meantime, or if you would like me to assist on any other fronts.\r\n\r\nRegards,\r\nJason\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, July 29, 2025 10:59 AM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nSubject: Re: Follow Up - Due Diligence Checklist\r\n\r\nBased on your Alpha phase does this look approx.:\r\n[cid:94D2AC88-3E4E-4593-907E-043964D8A05A]\r\nI’m tracking for other things as well…\r\nUpdate me if you have today’s numbers.\r\nThanks!\r\nRick\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:47707815-79F6-4401-BF4D-0F1A9A99102D]\r\nmavrix1.com<http://mavrix1.com/>\r\n\r\n\r\n\r\nOn July 9, 2025 at 5:45:36 PM, Jason Blick (jason@corvexsystems.com<mailto:jason@corvexsystems.com>) wrote:\r\n\r\nHello Brian,\r\n\r\nBelow I have placed a link to the due diligence folder for you and Rick to review, and also attached to this email is a copy of the signed checklist.\r\n\r\nhttps://drive.google.com/drive/folders/1ZdbIjsJXpQky8Oo_exoopnmNrF-e7wmw?usp=sharing\r\n\r\nI was also thinking about it further, and given the business climate of Florida, if you wanted to make an offer contingent on standing up FAB1 in your area of Florida, as opposed to Reno, that is something I would strongly consider. This would also probably allow us to collaborate and grow even more effectively with Mavrix.\r\n\r\nLastly, I have confirmed with Varvara about formally coming on to the team as a business development manager, to really help get the sales funnel and our commercial outreach bolstered, which is our next biggest initiative now that product development and facilities design have been squared away.\r\n\r\nLet me know if you guys need anything else in the meantime.\r\n\r\nRegards,\r\nJason Blick\r\nFounder/CEO\r\nCorvex Systems\r\n________________________________\r\nFrom: Brian Stufflebean <brian@bayfrontcapitalllc.com>\r\nSent: Tuesday, July 8, 2025 2:27 PM\r\nTo: Jason Blick <jason@corvexsystems.com>\r\nCc: Rick Mislan <rick@mavrix.one>\r\nSubject: Follow Up - Due Diligence Checklist\r\n\r\n\r\nGood afternoon Jason,\r\n\r\nWe appreciated your time on the Zoom call yesterday.  Per our conversation, attached you will find a diligence checklist that is a typical starting point for start of out review. It may or may not be fully comprehensive and there may be other items requested along the way.\r\n\r\nWe look forward to hearing back and if it is easier for you to create a folder in your Google Drive account, that is fine as well. Please include a signed copy of the Due Diligence document as well.\r\n\r\nPlease confirm receipt of this email and also, please provide me with your Direct cell phone number.  My cell number is listed below and you can feel free to call or text Rick or me with any questions you may have.\r\n\r\n\r\n\r\n\r\nBest Regards,\r\n\r\n\r\nBrian C. Stufflebean, CEO\r\nBayfront Capital, LLC\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\nbrian@bayfrontcapitalllc.com\r\nwww.bayfrontcapitalllc.com\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER: Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.\r\n\r\n',0,0,0,0,0,0,'2025-07-29 18:28:35','2025-12-09 19:26:36','2025-12-09 19:26:36','2025-12-09 19:26:36',NULL,NULL,NULL),
(533,4,'<95a69a017de15d2803dcc545e4a58bb1@mavrix.one>',NULL,NULL,'Fwd: source/dest','carson@mavrix.one','carson@mavrix.one','\r\n\r\n-------- Original Message --------\r\nSubject: FW: source/dest\r\nDate: 2025-07-29 15:26\r\n From: \"Stults, Benjamin M CIV DISA J6 (USA)\" \r\n<benjamin.m.stults.civ@mail.mil>\r\nTo: \"carson@mavrix.one\" <carson@mavrix.one>\r\n\r\n From: Stults, Benjamin M CIV DISA J6 (USA)\r\nSent: Tuesday, July 29, 2025 2:26 PM\r\nTo: \'carson@mavrix.1\' <carson@mavrix.1>\r\nSubject: FW: source/dest\r\n\r\n From: Stults, Benjamin M CIV DISA J6 (USA)\r\nSent: Tuesday, July 29, 2025 2:25 PM\r\nTo: carson@mavrix.com\r\nSubject: source/dest\r\n\r\nHello Sir or Ma\'am,\r\n\r\nPlease fill out the below Source / Destination template and return to:\r\ndisa.global.servicedesk.mbx.infrastructure-ticket-request@mail.mil\r\n\r\nSOURCE IP:\r\n\r\nSOURCE LOCATION:\r\n\r\nSOURCE PATH (.COM/.MIL):\r\n\r\nDESTINATION IP:\r\n\r\nDESTINATION LOCATION:\r\n\r\nDESTINATON PATH (.COM/.MIL):\r\n\r\nDESTINATION PORT:\r\n\r\nDESTINATION URL:\r\n\r\nWERE YOU SUCCESSFULLY ABLE TO ACCESS THIS SITE PREVIOUSLY? (Y/N):\r\n\r\nNote:\r\n\r\n-To obtain your source IP, type CMD in the search bar and hit \"enter\"\r\n\r\n-Command Prompt should open a new window, in the window type ipconfig\r\nand hit \"enter\"\r\n\r\n-Look for the IPv4 Address, this is your Source IP.\r\n\r\nAGENCY: ex. (DoD, Army, WHMO)\r\n\r\nSERVICES: NIPR or SIPR ?\r\n\r\nALTERNATE CONNECTIVITY:\r\n\r\nOPERATIONS:\r\n\r\nMISSION IMPACT:\r\n\r\nTECHNICAL POC:\r\n\r\nPHONE NUMBER:\r\n\r\nLOCATION:\r\n\r\nHOURS OF OPERATION:\r\n\r\nDOWN TIME:\r\n\r\nINTERNAL TICKET NUMBER:\r\n\r\nThankyou,\r\n\r\nDISA Global Service Desk- Infrastructure- Ben\r\n\r\nDSN: (312) 850 0032 / Toll Free: (844) 347 2457 Option 2 / Comm: (614)\r\n692 0032 Option 2\r\n\r\ndisa.global.servicedesk.mbx.infrastructure-ticket-request@mail.mil\r\n\r\ndisa.global.servicedesk.mbx.infrastructure-ticket-request@mail.smil.mil','\r\n\r\n-------- Original Message --------\r\nSubject: FW: source/dest\r\nDate: 2025-07-29 15:26\r\n From: \"Stults, Benjamin M CIV DISA J6 (USA)\" \r\n<benjamin.m.stults.civ@mail.mil>\r\nTo: \"carson@mavrix.one\" <carson@mavrix.one>\r\n\r\n From: Stults, Benjamin M CIV DISA J6 (USA)\r\nSent: Tuesday, July 29, 2025 2:26 PM\r\nTo: \'carson@mavrix.1\' <carson@mavrix.1>\r\nSubject: FW: source/dest\r\n\r\n From: Stults, Benjamin M CIV DISA J6 (USA)\r\nSent: Tuesday, July 29, 2025 2:25 PM\r\nTo: carson@mavrix.com\r\nSubject: source/dest\r\n\r\nHello Sir or Ma\'am,\r\n\r\nPlease fill out the below Source / Destination template and return to:\r\ndisa.global.servicedesk.mbx.infrastructure-ticket-request@mail.mil\r\n\r\nSOURCE IP:\r\n\r\nSOURCE LOCATION:\r\n\r\nSOURCE PATH (.COM/.MIL):\r\n\r\nDESTINATION IP:\r\n\r\nDESTINATION LOCATION:\r\n\r\nDESTINATON PATH (.COM/.MIL):\r\n\r\nDESTINATION PORT:\r\n\r\nDESTINATION URL:\r\n\r\nWERE YOU SUCCESSFULLY ABLE TO ACCESS THIS SITE PREVIOUSLY? (Y/N):\r\n\r\nNote:\r\n\r\n-To obtain your source IP, type CMD in the search bar and hit \"enter\"\r\n\r\n-Command Prompt should open a new window, in the window type ipconfig\r\nand hit \"enter\"\r\n\r\n-Look for the IPv4 Address, this is your Source IP.\r\n\r\nAGENCY: ex. (DoD, Army, WHMO)\r\n\r\nSERVICES: NIPR or SIPR ?\r\n\r\nALTERNATE CONNECTIVITY:\r\n\r\nOPERATIONS:\r\n\r\nMISSION IMPACT:\r\n\r\nTECHNICAL POC:\r\n\r\nPHONE NUMBER:\r\n\r\nLOCATION:\r\n\r\nHOURS OF OPERATION:\r\n\r\nDOWN TIME:\r\n\r\nINTERNAL TICKET NUMBER:\r\n\r\nThankyou,\r\n\r\nDISA Global Service Desk- Infrastructure- Ben\r\n\r\nDSN: (312) 850 0032 / Toll Free: (844) 347 2457 Option 2 / Comm: (614)\r\n692 0032 Option 2\r\n\r\ndisa.global.servicedesk.mbx.infrastructure-ticket-request@mail.mil\r\n\r\ndisa.global.servicedesk.mbx.infrastructure-ticket-request@mail.smil.mil',0,0,0,0,0,0,'2025-07-29 19:29:45','2025-12-09 19:26:37','2025-12-09 19:26:37','2025-12-09 19:26:37',NULL,NULL,NULL),
(534,4,' <DM6PR07MB5850C4AA231BC3BF77F78ED1AD25A@DM6PR07MB5850.namprd07.prod.outlook.com>',NULL,NULL,'Mavrix/Achram Business Development Rom','rich@achramlabs.com','Richard Van Voorst','<html xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;\r\n	panose-1:2 11 0 4 2 2 2 2 2 4;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle17\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Hey Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">It’s been a very busy week so thanks for your patience my friend! It sure is exciting times for Mavrix!<br>\r\n<br>\r\nAttached is the simple ROM so that you can get an idea for prices. You’ll see the much of the creative work is project based on what you want the video or the comic book, animation to do. Everything is based on scope of work. 3D Animation is pricey, video is\r\n less, 2D After Effects illustration is less in that order. For reference, the high end of video is for films around 10 minutes an/or when travel is involved and shooting in multiple places, virtual filming, etc. We have many ways forward in this win AI generation\r\n of video as well. <br>\r\n<br>\r\nOnce you have a sense of where you’d like to take this, I’d love to hear your thoughts and begin shaping the path ahead. If you have any questions, don’t hesitate to give me a call—I’m always happy to talk things through. When the time is right, I’ll gladly\r\n pull together a proposal. I truly believe we can craft a powerful story together and build something remarkable in the years ahead.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:none\">V/R,<br>\r\n<br>\r\nRich Van Voorst<br>\r\n<br>\r\n--&nbsp;</span><span style=\"font-size:11.0pt;mso-ligatures:none\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:none\">Rich Van Voorst <br>\r\nAchram Labs | CEO<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:none\"><a href=\"http://www.achramlabs.com\"><span style=\"color:#467886\">www.achramlabs.com</span></a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:none\">e: <a href=\"mailto:rich@achramlabs.com\">\r\n<span style=\"color:#467886\">rich@achramlabs.com</span></a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:none\">m: 813-334-5104</span><span style=\"font-size:11.0pt;mso-ligatures:none\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><br>\r\n<br>\r\n<o:p></o:p></p>\r\n</div>\r\n</body>\r\n</html>','Hey Rick,\r\n\r\nIt’s been a very busy week so thanks for your patience my friend! It sure is exciting times for Mavrix!\r\n\r\nAttached is the simple ROM so that you can get an idea for prices. You’ll see the much of the creative work is project based on what you want the video or the comic book, animation to do. Everything is based on scope of work. 3D Animation is pricey, video is less, 2D After Effects illustration is less in that order. For reference, the high end of video is for films around 10 minutes an/or when travel is involved and shooting in multiple places, virtual filming, etc. We have many ways forward in this win AI generation of video as well.\r\n\r\nOnce you have a sense of where you’d like to take this, I’d love to hear your thoughts and begin shaping the path ahead. If you have any questions, don’t hesitate to give me a call—I’m always happy to talk things through. When the time is right, I’ll gladly pull together a proposal. I truly believe we can craft a powerful story together and build something remarkable in the years ahead.\r\n\r\n\r\nV/R,\r\n\r\nRich Van Voorst\r\n\r\n--\r\nRich Van Voorst\r\nAchram Labs | CEO\r\nwww.achramlabs.com<http://www.achramlabs.com>\r\ne: rich@achramlabs.com<mailto:rich@achramlabs.com>\r\nm: 813-334-5104',0,0,0,0,0,0,'2025-07-29 22:57:50','2025-12-09 19:26:37','2025-12-09 19:26:37','2025-12-09 19:26:37',NULL,NULL,NULL),
(535,4,' <PH7PR02MB9027B9FF13B13D1E515B81BBD324A@PH7PR02MB9027.namprd02.prod.outlook.com>',NULL,NULL,'RE: Commercial Real Estate Connection','cranecre@outlook.com','Casey Crane','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Wingdings;\r\n	panose-1:5 0 0 0 0 0 0 0 0 0;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\nspan.EmailStyle20\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n/* List Definitions */\r\n@list l0\r\n	{mso-list-id:1603369222;\r\n	mso-list-template-ids:1601085012;}\r\n@list l0:level1\r\n	{mso-level-number-format:bullet;\r\n	mso-level-text:\\F0B7;\r\n	mso-level-tab-stop:.5in;\r\n	mso-level-number-position:left;\r\n	text-indent:-.25in;\r\n	mso-ansi-font-size:10.0pt;\r\n	font-family:Symbol;}\r\n@list l0:level2\r\n	{mso-level-number-format:bullet;\r\n	mso-level-text:o;\r\n	mso-level-tab-stop:1.0in;\r\n	mso-level-number-position:left;\r\n	text-indent:-.25in;\r\n	mso-ansi-font-size:10.0pt;\r\n	font-family:\"Courier New\";\r\n	mso-bidi-font-family:\"Times New Roman\";}\r\n@list l0:level3\r\n	{mso-level-number-format:bullet;\r\n	mso-level-text:\\F0A7;\r\n	mso-level-tab-stop:1.5in;\r\n	mso-level-number-position:left;\r\n	text-indent:-.25in;\r\n	mso-ansi-font-size:10.0pt;\r\n	font-family:Wingdings;}\r\n@list l0:level4\r\n	{mso-level-number-format:bullet;\r\n	mso-level-text:\\F0A7;\r\n	mso-level-tab-stop:2.0in;\r\n	mso-level-number-position:left;\r\n	text-indent:-.25in;\r\n	mso-ansi-font-size:10.0pt;\r\n	font-family:Wingdings;}\r\n@list l0:level5\r\n	{mso-level-number-format:bullet;\r\n	mso-level-text:\\F0A7;\r\n	mso-level-tab-stop:2.5in;\r\n	mso-level-number-position:left;\r\n	text-indent:-.25in;\r\n	mso-ansi-font-size:10.0pt;\r\n	font-family:Wingdings;}\r\n@list l0:level6\r\n	{mso-level-number-format:bullet;\r\n	mso-level-text:\\F0A7;\r\n	mso-level-tab-stop:3.0in;\r\n	mso-level-number-position:left;\r\n	text-indent:-.25in;\r\n	mso-ansi-font-size:10.0pt;\r\n	font-family:Wingdings;}\r\n@list l0:level7\r\n	{mso-level-number-format:bullet;\r\n	mso-level-text:\\F0A7;\r\n	mso-level-tab-stop:3.5in;\r\n	mso-level-number-position:left;\r\n	text-indent:-.25in;\r\n	mso-ansi-font-size:10.0pt;\r\n	font-family:Wingdings;}\r\n@list l0:level8\r\n	{mso-level-number-format:bullet;\r\n	mso-level-text:\\F0A7;\r\n	mso-level-tab-stop:4.0in;\r\n	mso-level-number-position:left;\r\n	text-indent:-.25in;\r\n	mso-ansi-font-size:10.0pt;\r\n	font-family:Wingdings;}\r\n@list l0:level9\r\n	{mso-level-number-format:bullet;\r\n	mso-level-text:\\F0A7;\r\n	mso-level-tab-stop:4.5in;\r\n	mso-level-number-position:left;\r\n	text-indent:-.25in;\r\n	mso-ansi-font-size:10.0pt;\r\n	font-family:Wingdings;}\r\nol\r\n	{margin-bottom:0in;}\r\nul\r\n	{margin-bottom:0in;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Hi Tony,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Great to meet you, and thanks for the info. My focus is on arranging financing for commercial properties and projects. It sounded like you guys might be working on building a manufacturing facility in Myakka\r\n and could use help putting the capital pieces together. If that&#8217;s the case, or if you need help securing loans for other acquisitions (such as the attached Warehouse in Largo), let me know.\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Finding particular properties that fit your requirements is another ballgame. I have several friends who specialize in brokering industrial warehouse properties and they could be helpful to you guys. I will\r\n reach out to them and see about making some introductions, if that would be helpful.\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Anything else I can do to help?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Best,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Casey<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Casey Crane, CFA<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><a href=\"mailto:CraneCRE@outlook.com\"><span style=\"color:#467886\">CraneCRE@outlook.com</span></a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">813.451.8411<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Tampa, FL<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Tony Aponte &lt;TonyAponte@protonmail.com&gt;\r\n<br>\r\n<b>Sent:</b> Tuesday, July 29, 2025 12:15 PM<br>\r\n<b>To:</b> Richard Van Voorst &lt;rich@achramlabs.com&gt;<br>\r\n<b>Cc:</b> Rick Mislan &lt;rick@mavrix.one&gt;; Casey Crane &lt;cranecre@outlook.com&gt;; Brian@bayfrontcapitalllc.com<br>\r\n<b>Subject:</b> Re: Commercial Real Estate Connection<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt;font-family:&quot;Arial&quot;,sans-serif\">Rich,<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt;font-family:&quot;Arial&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt;font-family:&quot;Arial&quot;,sans-serif\">Thank you for the virtual link up.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt;font-family:&quot;Arial&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt;font-family:&quot;Arial&quot;,sans-serif\">Casey,<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt;font-family:&quot;Arial&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt;font-family:&quot;Arial&quot;,sans-serif\">Thanks for taking the time to help us. We\'ve attached an example of what we are looking for. Specific requirements are at least 10k Square feet, Phase 3 power w/ 480w, office\r\n space, warehouse space, allows for fabrication. Also, it must be towards the edge of or directly outside of Class D airspace. I have attached a photo of the class D airspace bubbles to help give an idea. Ideally we are looking for west of the bay, with Tampa\r\n a secondary. Let us know if you require more information. Thank you again for the help.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt;font-family:&quot;Arial&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<ul type=\"disc\">\r\n<li class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;mso-list:l0 level1 lfo1;list-style-type:&quot;- &quot;\">\r\n<span style=\"font-size:10.5pt;font-family:&quot;Arial&quot;,sans-serif\">TA<o:p></o:p></span></li></ul>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt;font-family:&quot;Arial&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">On Tuesday, July 29th, 2025 at 11:10, Richard Van Voorst &lt;<a href=\"mailto:rich@achramlabs.com\">rich@achramlabs.com</a>&gt; wrote:<br>\r\n<br>\r\n<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Rick and Tony,<br>\r\n<br>\r\nIt was great being with you all last week. Lots of great work to be done on the horizon. Meet Casey Crane! He is my commercial real-estate financing guy who specializes in projects like this! Hoping that he can simplify&nbsp; this project as much as possible! Let\r\n me know if I can assist in any further ways!</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Talk soon,<br>\r\n<br>\r\nRich<br>\r\n<br>\r\n--&nbsp;<o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Rich Van Voorst\r\n<br>\r\nAchram Labs | CEO</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\"><a href=\"http://www.achramlabs.com/\" target=\"_blank\"><span style=\"color:#467886\">www.achramlabs.com</span></a></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">e:\r\n<a href=\"mailto:rich@achramlabs.com\"><span style=\"color:#467886\">rich@achramlabs.com</span></a></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">m: 813-334-5104</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:12.0pt\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</blockquote>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','Hi Tony,\r\n\r\nGreat to meet you, and thanks for the info. My focus is on arranging financing for commercial properties and projects. It sounded like you guys might be working on building a manufacturing facility in Myakka and could use help putting the capital pieces together. If that\'s the case, or if you need help securing loans for other acquisitions (such as the attached Warehouse in Largo), let me know.\r\n\r\nFinding particular properties that fit your requirements is another ballgame. I have several friends who specialize in brokering industrial warehouse properties and they could be helpful to you guys. I will reach out to them and see about making some introductions, if that would be helpful.\r\n\r\nAnything else I can do to help?\r\n\r\nBest,\r\nCasey\r\n\r\nCasey Crane, CFA\r\nCraneCRE@outlook.com<mailto:CraneCRE@outlook.com>\r\n813.451.8411\r\nTampa, FL\r\n\r\nFrom: Tony Aponte <TonyAponte@protonmail.com>\r\nSent: Tuesday, July 29, 2025 12:15 PM\r\nTo: Richard Van Voorst <rich@achramlabs.com>\r\nCc: Rick Mislan <rick@mavrix.one>; Casey Crane <cranecre@outlook.com>; Brian@bayfrontcapitalllc.com\r\nSubject: Re: Commercial Real Estate Connection\r\n\r\nRich,\r\n\r\nThank you for the virtual link up.\r\n\r\nCasey,\r\n\r\nThanks for taking the time to help us. We\'ve attached an example of what we are looking for. Specific requirements are at least 10k Square feet, Phase 3 power w/ 480w, office space, warehouse space, allows for fabrication. Also, it must be towards the edge of or directly outside of Class D airspace. I have attached a photo of the class D airspace bubbles to help give an idea. Ideally we are looking for west of the bay, with Tampa a secondary. Let us know if you require more information. Thank you again for the help.\r\n\r\n\r\n  *   TA\r\n\r\nOn Tuesday, July 29th, 2025 at 11:10, Richard Van Voorst <rich@achramlabs.com<mailto:rich@achramlabs.com>> wrote:\r\n\r\nRick and Tony,\r\n\r\nIt was great being with you all last week. Lots of great work to be done on the horizon. Meet Casey Crane! He is my commercial real-estate financing guy who specializes in projects like this! Hoping that he can simplify  this project as much as possible! Let me know if I can assist in any further ways!\r\n\r\n\r\nTalk soon,\r\n\r\nRich\r\n\r\n--\r\nRich Van Voorst\r\nAchram Labs | CEO\r\nwww.achramlabs.com<http://www.achramlabs.com/>\r\ne: rich@achramlabs.com<mailto:rich@achramlabs.com>\r\nm: 813-334-5104',0,0,0,0,0,0,'2025-07-30 13:40:20','2025-12-09 19:26:37','2025-12-09 19:26:37','2025-12-09 19:26:37',NULL,NULL,NULL),
(536,4,'<CANZ1scsoO87b3QR08aKnmPWMgTLkbNoKgAgPk0=RbmRnu03+iA@mail.gmail.com>',NULL,NULL,'Rescheduling your Ashby meeting','jake@ashbyhq.com','Jake McLinden','<html><head></head><body><div class=\"hs_reply_wrap\"> \r\n   <div>\r\n     Hey Rick​, \r\n   </div> \r\n   <br> \r\n   <div> \r\n    <span style=\"font-size:14.6667px;line-height:17.60004px\">Since I haven’t heard back from you yet, I’ll take the hint and assume that this project has been reprioritized for the time being. If you&#39;re still interested in seeing a demo, we&#39;re running no-commitment Live Demo Webinars every other Thursday (<span style=\"color:#0091ae\"><a href=\"https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/Jks2-6qcW69sMD-6lZ3p1W2X6nL73wh159W6k6-2-4FflWnW14KHK78WzWvKW4NfgkH5l-pFtW4BtVTt4hfrBnW5lF0Pc8mp60nW6-lN1c7LpsjRW13PbP52t2hP4M11_lvhMprxW3R964H6Wxjf_W5M3c913KG0kxW5v8gst4PXyMcW5KKbW54mYlD8VWRjXd4gJdYNW4dbQ_L7VJ2gjW5HpH3p6kBdDjW3Txh3Z1Ph7gPW7tkGrW65ktQbVx9tNW97HvjCW4HfvWX3Wdfbmf4ybJ1q04\" target=\"_blank\">you can register here</a></span>).</span> \r\n   </div> \r\n   <br> \r\n   <div> \r\n    <span style=\"font-size:14.6667px;line-height:17.60004px\">If anything changes, feel free to reach out.</span> \r\n   </div> \r\n   <br> \r\n   <div>\r\n     Thanks, \r\n   </div> \r\n   <div>\r\n     Jake​ \r\n   </div> \r\n   <div> \r\n    <div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"> \r\n     <div dir=\"ltr\"> \r\n      <table style=\"font-size:13px;color:rgb(136,136,136);font-family:sans-serif;border:none;border-collapse:collapse\"> \r\n       <tbody> \r\n        <tr style=\"height:48pt\"> \r\n         <td style=\"border-right:0.75pt solid rgb(213,213,213);vertical-align:middle;padding:0pt 15pt 0pt 0pt\"><p dir=\"ltr\" style=\"text-align:center;line-height:1.38;margin-top:0pt;margin-bottom:0pt\"><font color=\"#000000\"><img alt=\"\"><img width=\"96\" height=\"31\" src=\"cid:6c38d966cbcebfbe09553b99d74f75be\"><br></font></p></td> \r\n         <td style=\"border-left:0.75pt solid rgb(213,213,213);vertical-align:top;padding:0pt 0pt 0pt 15pt\"><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">Jake McLinden</font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">Account Executive</font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">774.277.1507 | <a href=\"https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3kWW9lFx7v6ZW_rrDwgy29q8wXN7Zdm1FSS568VgxD2T95Zp8CW4_d9177N8ZtsW769Ddv3zjGgXVqPm-M2bm3NxW2hVfnW2krqN0W9lc2BK4ZDx-VVYVy8R71TFfHVYQHST8PT_W5W38CkpK57zPkYW69g3lK3-HnHhMBF9ZckxsswN7l6rB6sT4FCW8ynt0z8KhmPKW11_QGn6N8s-lW65ZSlH1D3MTrW3VtGll85XKqBW1L3tx95cq-xrW3LvNc_5CtLrsW2K7Kxb3lKHMHdb3rDK04\" target=\"_blank\">LinkedIn</a></font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\"><a href=\"https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JlY2-6qcW95jsWP6lZ3m-W2VZ8cr5wjFncW4ph0854njV8wMpT0ZZbLPTlN6BzqDWgjtBTW4qtvkq7ldb9JVWp1736GJt-GW2BsHX04FnzKFV8Zmds8wlCfRN37Prvk90wlMW3hjK443mcsT3W98cLqR4wl4hWV48Vsv8w7ZrpW3l9pdr7fzmr4W5Y99lh4dbVYKW6WZtKn744CQ5W2n4VrL2QYD34W58ZbTl95-RGzW4vhgJL3FQsc8W5mfPmL24yF0qW3bgvpY8J5qWSW3WvYFr5VHBG4N47fDWDWbcM3W9kbjmW1SP_dXW2XS0nd1csl-wW1zTdgr5z5KNzW4WkHzm4VWC2lW6VHbbJ5-qcmcW8rg3yb99R6x9N6DnT6Cks98NW3tTjVv39QsSvf4-lFFx04\" target=\"_blank\">Book a Meeting</a></font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\"><a href=\"http://www.ashbyhq.com/\" target=\"_blank\">www.ashbyhq.com</a></font></p></td> \r\n        </tr> \r\n       </tbody> \r\n      </table> \r\n     </div> \r\n    </div> \r\n   </div> \r\n   <div class=\"hs_reply\"> \r\n    <br> \r\n    <div>\r\n      On Fri, Jul 25, 2025 at 12:26 PM, Jake McLinden \r\n     <span dir=\"ltr\">&lt;<a href=\"mailto:jake@ashbyhq.com\" target=\"_blank\">jake@ashbyhq.com</a>&gt;</span> wrote: \r\n     <br> \r\n     <blockquote class=\"hs_reply_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"> \r\n      <div class=\"hs_reply_wrap\"> \r\n       <div>\r\n         Hey Rick​, \r\n       </div> \r\n       <br> \r\n       <div>\r\n         Did you have any questions about Ashby that you were hoping to get answers to before hopping on a call? \r\n       </div> \r\n       <br> \r\n       <div>\r\n         When you&#39;re ready, you can grab a time on \r\n        <a href=\"https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3mLW3nNH8c5PFZXmN4WgJLDJNG5LW1Rm_SQ86BznsVR426084X8LcW6HpK176y9fX3VblnqF6nzlSYN581h1Ww6g4rW6cs0Hs2Wqd3rW8Dmz1w2hbntLW7qgm8z6G_hckW6-Nr0q1VyXMbW6-X98D82NQTDW2XXBYl2R-nV0W2ZGX-h2GNl7YW5sVNnz8F5RN9W1cMRlG18QBZjVKdF1p5XTGwSW4B8l8P4ttMKyW5ZghRq3GsPZ1W4QVMM61hcZthW4ybG-q8FwsLZVrnn908R1ghSf410_Nq04\">my calendar here</a>, or let me know a time that works best for you. \r\n       </div> \r\n       <br> \r\n       <div>\r\n         If other priorities have come up, and you&#39;d like me to stay out of your inbox, just let me know! \r\n       </div> \r\n       <br> \r\n       <div>\r\n         Thanks! \r\n       </div> \r\n       <div>\r\n         Jake​ \r\n       </div> \r\n       <div> \r\n        <div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"> \r\n         <div dir=\"ltr\"> \r\n          <table style=\"font-size:13px;color:rgb(136,136,136);font-family:sans-serif;border:none;border-collapse:collapse\"> \r\n           <tbody> \r\n            <tr style=\"height:48pt\"> \r\n             <td style=\"border-right:0.75pt solid rgb(213,213,213);vertical-align:middle;padding:0pt 15pt 0pt 0pt\"><p dir=\"ltr\" style=\"text-align:center;line-height:1.38;margin-top:0pt;margin-bottom:0pt\"><font color=\"#000000\"><img alt=\"\"><img width=\"96\" height=\"31\" src=\"cid:6c38d966cbcebfbe09553b99d74f75be\"><br></font></p></td> \r\n             <td style=\"border-left:0.75pt solid rgb(213,213,213);vertical-align:top;padding:0pt 0pt 0pt 15pt\"><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">Jake McLinden</font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">Account Executive</font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">774.277.1507 | <a href=\"https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3lRW8LW6rL60Ds5zN4LcpBgZcfqbN3s1l6KG_TzcW5Xq-KM3pJD4pVNVYsm927RyKW3qWzCv25tpbPF7PdN5-j105W8zlYmS32dBC9W6qJMxp7TsMVrW6qL_G-8dKql7W39H6S01dY4hwW3dRGrk3qht3gW32z3LH1BzNqBW8C6W7d4g0KVwW6mxTfM2Bj8nvW9lg_pT57TZ6zN9hHB1f1CgSXW5cPy-t7Cmp2KW12NzQc4JzHMWW4Hdc9V8n4z-1W6k-2c23TT84hW601XQ-6rF630f99t_9z04\" target=\"_blank\">LinkedIn</a></font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\"><a href=\"https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JlY2-6qcW95jsWP6lZ3krVX_HMH9l6B97W6_K23f6w74sGW5N1DXs644gx0W85Pvg_6yTjl0W6pT1P58y5tpSW7kdbrG2sQsqpW3QDFWg8dLNGGW6HNySk35Nj4GVXlKbc6YPGF9N89LbctDTfwqW3F7q8Z8RpGCyVysSpW5KytLnN99sp1RtJ_bDW1mXJky32lbggW8Kc7nN1p4J7GW2NR6_n7rjmmdW1RZF5K827tqKW47r2425MZmMRW13yWl131y6ylVql91p2gtYGCW2Jzhzw3jW8QxW6fhbTG45QJ7rW35Qzcs9llG4HN8vgbp_yZ-fJN97p4cB12Q96W7Lt7vw2Tj0VPW5gTCCQ8f1JLCW7dXxhk24yf3SW2kVHNr24XKP4W5YZChG23xF3zd49Rw604\" target=\"_blank\">Book a Meeting</a></font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\"><a href=\"http://www.ashbyhq.com/\" target=\"_blank\">www.ashbyhq.com</a></font></p></td> \r\n            </tr> \r\n           </tbody> \r\n          </table> \r\n         </div> \r\n        </div> \r\n       </div> \r\n       <div class=\"hs_reply\"> \r\n        <br> \r\n        <div>\r\n          On Thu, Jul 24, 2025 at 7:10 AM, Jake McLinden \r\n         <span dir=\"ltr\">&lt;<a href=\"mailto:jake@ashbyhq.com\" target=\"_blank\">jake@ashbyhq.com</a>&gt;</span> wrote: \r\n         <br> \r\n         <blockquote class=\"hs_reply_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"> \r\n          <div>\r\n            Hey Rick​, \r\n          </div> \r\n          <br> \r\n          <div>\r\n            It looks like we missed each other! No worries, I understand schedules can get hectic and things can come up. \r\n          </div> \r\n          <br> \r\n          <div>\r\n            If you&#39;re still interested, please grab a time on \r\n           <a href=\"https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3mgW2WBlGp4w_ZkhW5gKJ8R4wvS9VN4JVm6kvyT6rN1PGtgVNT0qSW79GkYq7HzGtkW3h47Tx616s1mW7sgQ3s6GQZTGMjzKHx2V7jJW86FXBS4cc423W8rKL9G8QX4c0W2MKbr08ppbL0W2zbF0c3W8fxQW7n-qNB4Wqf8NW6GTP8W2jTX_qW2q9RwV3RL--sW8P3vbK8BcDg2W6sbbRp1vCNXMN8whg56Fm1ShW6cwwsP7SHZ9bW79LgwQ9b3HVlW8k2pb49fqlp0W8pB3_S1yTPf5dlLlbn04\">my calendar here</a> or let me know a time or two that would work well for you. \r\n          </div> \r\n          <br> \r\n          <div>\r\n            Looking forward to connecting! \r\n          </div> \r\n          <div>\r\n            Jake​ \r\n          </div> \r\n          <div> \r\n           <div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"> \r\n            <div dir=\"ltr\"> \r\n             <table style=\"font-size:13px;color:rgb(136,136,136);font-family:sans-serif;border:none;border-collapse:collapse\"> \r\n              <tbody> \r\n               <tr style=\"height:48pt\"> \r\n                <td style=\"border-right:0.75pt solid rgb(213,213,213);vertical-align:middle;padding:0pt 15pt 0pt 0pt\"><p dir=\"ltr\" style=\"text-align:center;line-height:1.38;margin-top:0pt;margin-bottom:0pt\"><font color=\"#000000\"><img alt=\"\"><img width=\"96\" height=\"31\" src=\"cid:6c38d966cbcebfbe09553b99d74f75be\"><br></font></p></td> \r\n                <td style=\"border-left:0.75pt solid rgb(213,213,213);vertical-align:top;padding:0pt 0pt 0pt 15pt\"><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">Jake McLinden</font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">Account Executive</font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">774.277.1507 | <a href=\"https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3kvW6RjcW651yfdtN6dGbPVK60G0W5yJw1g3W26hFVYvDgv3W0vYBW8Bkh133DYRqMW4kxGk38PRGYZW5j3PSr3cWHNVW88Rktq88CDDcN7W_nRTDH8_LVMzg3Y7f3nMPW7TskbL11yxpGW86xlX73QZ1CNW9d_YNG1cfLhyW2ShYtQ8JVZP7VMCKHP5LdNgMW3zX-Cv98KC0RMR8d-W6f3YCW79ZZLS2n_cBbW4vzPxm8ns77KVsCJKz8g__q_VyCqKC31SW_CW358cyl97myp0f1TS0z-04\" target=\"_blank\">LinkedIn</a></font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\"><a href=\"https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JlY2-6qcW95jsWP6lZ3l5W1Cv4kn4cXTnfW6fZwKb8YS3BQW1wL7yB1T82zRVGl6GR4JSFFfW1NpKrB3_Dng6W4dPqtZ90ScSfW1yZ4JJ7LcxVzW1cSYrQ51d1-VW4BZ4wC9dVl50VSgFfy3r5N6JW8cFJMC64Ln6WW7k4S7r92MRHfW5ZlJCl55G1B6W1wxwdZ5011ybN70V9rqwtLMbW68Mz027VwrwyV96L8p2VN5q9W68Qcrx1n9xKPW3VXQB_7lQL04W6V8YXH7y9ddbW3475WY66fqspV4vS8s9b2dQYW6_Nt8K3qy6HhW6G-GbS7VkWHGW65WVgz7ydxx1W3zd0gM4K4T-yW4yqLf32M4SmpW8jVYG28h-15xTbT6j6yTwgWN1wcMQWl3r3bdPK1RH04\" target=\"_blank\">Book a Meeting</a></font></p><p dir=\"ltr\" style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\"><a href=\"http://www.ashbyhq.com/\" target=\"_blank\">www.ashbyhq.com</a></font></p></td> \r\n               </tr> \r\n              </tbody> \r\n             </table> \r\n            </div> \r\n           </div> \r\n          </div> \r\n         </blockquote> \r\n        </div> \r\n       </div> \r\n      </div> \r\n     </blockquote> \r\n    </div> \r\n   </div> \r\n  </div>\r\n \r\n<img width=\"1\" height=\"1\" style=\"display:none\" alt=\"\" src=\"https://cBJBm04.na1.hs-sales-engage.com/Cto/ZS+23284/cBJBm04/R5S8b4bTZN6rhp1Z2cZFGW1Zmvqj1S1sMxW3DK8GG3F5nBHW1_jTPZ3z8mFbW3JJpLg1Q6wrXW1W-W1322XzNXVhPQZq7ZmX_q0\"></body></html>',' Hey Rick​,\r\n\r\nSince I haven’t heard back from you yet, I’ll take the hint and assume that\r\nthis project has been reprioritized for the time being. If you\'re still\r\ninterested in seeing a demo, we\'re running no-commitment Live Demo Webinars\r\nevery other Thursday (you can register here\r\n<https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/Jks2-6qcW69sMD-6lZ3p1W2X6nL73wh159W6k6-2-4FflWnW14KHK78WzWvKW4NfgkH5l-pFtW4BtVTt4hfrBnW5lF0Pc8mp60nW6-lN1c7LpsjRW13PbP52t2hP4M11_lvhMprxW3R964H6Wxjf_W5M3c913KG0kxW5v8gst4PXyMcW5KKbW54mYlD8VWRjXd4gJdYNW4dbQ_L7VJ2gjW5HpH3p6kBdDjW3Txh3Z1Ph7gPW7tkGrW65ktQbVx9tNW97HvjCW4HfvWX3Wdfbmf4ybJ1q04>\r\n).\r\n\r\nIf anything changes, feel free to reach out.\r\n\r\nThanks,\r\nJake​\r\n\r\n\r\nJake McLinden\r\n\r\nAccount Executive\r\n\r\n774.277.1507 | LinkedIn\r\n<https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3kWW9lFx7v6ZW_rrDwgy29q8wXN7Zdm1FSS568VgxD2T95Zp8CW4_d9177N8ZtsW769Ddv3zjGgXVqPm-M2bm3NxW2hVfnW2krqN0W9lc2BK4ZDx-VVYVy8R71TFfHVYQHST8PT_W5W38CkpK57zPkYW69g3lK3-HnHhMBF9ZckxsswN7l6rB6sT4FCW8ynt0z8KhmPKW11_QGn6N8s-lW65ZSlH1D3MTrW3VtGll85XKqBW1L3tx95cq-xrW3LvNc_5CtLrsW2K7Kxb3lKHMHdb3rDK04>\r\n\r\nBook a Meeting\r\n<https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JlY2-6qcW95jsWP6lZ3m-W2VZ8cr5wjFncW4ph0854njV8wMpT0ZZbLPTlN6BzqDWgjtBTW4qtvkq7ldb9JVWp1736GJt-GW2BsHX04FnzKFV8Zmds8wlCfRN37Prvk90wlMW3hjK443mcsT3W98cLqR4wl4hWV48Vsv8w7ZrpW3l9pdr7fzmr4W5Y99lh4dbVYKW6WZtKn744CQ5W2n4VrL2QYD34W58ZbTl95-RGzW4vhgJL3FQsc8W5mfPmL24yF0qW3bgvpY8J5qWSW3WvYFr5VHBG4N47fDWDWbcM3W9kbjmW1SP_dXW2XS0nd1csl-wW1zTdgr5z5KNzW4WkHzm4VWC2lW6VHbbJ5-qcmcW8rg3yb99R6x9N6DnT6Cks98NW3tTjVv39QsSvf4-lFFx04>\r\n\r\nwww.ashbyhq.com\r\n\r\nOn Fri, Jul 25, 2025 at 12:26 PM, Jake McLinden <jake@ashbyhq.com> wrote:\r\n\r\nHey Rick​,\r\n\r\nDid you have any questions about Ashby that you were hoping to get answers\r\nto before hopping on a call?\r\n\r\nWhen you\'re ready, you can grab a time on my calendar here\r\n<https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3mLW3nNH8c5PFZXmN4WgJLDJNG5LW1Rm_SQ86BznsVR426084X8LcW6HpK176y9fX3VblnqF6nzlSYN581h1Ww6g4rW6cs0Hs2Wqd3rW8Dmz1w2hbntLW7qgm8z6G_hckW6-Nr0q1VyXMbW6-X98D82NQTDW2XXBYl2R-nV0W2ZGX-h2GNl7YW5sVNnz8F5RN9W1cMRlG18QBZjVKdF1p5XTGwSW4B8l8P4ttMKyW5ZghRq3GsPZ1W4QVMM61hcZthW4ybG-q8FwsLZVrnn908R1ghSf410_Nq04>,\r\nor let me know a time that works best for you.\r\n\r\nIf other priorities have come up, and you\'d like me to stay out of your\r\ninbox, just let me know!\r\n\r\nThanks!\r\nJake​\r\n\r\n\r\nJake McLinden\r\n\r\nAccount Executive\r\n\r\n774.277.1507 | LinkedIn\r\n<https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3lRW8LW6rL60Ds5zN4LcpBgZcfqbN3s1l6KG_TzcW5Xq-KM3pJD4pVNVYsm927RyKW3qWzCv25tpbPF7PdN5-j105W8zlYmS32dBC9W6qJMxp7TsMVrW6qL_G-8dKql7W39H6S01dY4hwW3dRGrk3qht3gW32z3LH1BzNqBW8C6W7d4g0KVwW6mxTfM2Bj8nvW9lg_pT57TZ6zN9hHB1f1CgSXW5cPy-t7Cmp2KW12NzQc4JzHMWW4Hdc9V8n4z-1W6k-2c23TT84hW601XQ-6rF630f99t_9z04>\r\n\r\nBook a Meeting\r\n<https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JlY2-6qcW95jsWP6lZ3krVX_HMH9l6B97W6_K23f6w74sGW5N1DXs644gx0W85Pvg_6yTjl0W6pT1P58y5tpSW7kdbrG2sQsqpW3QDFWg8dLNGGW6HNySk35Nj4GVXlKbc6YPGF9N89LbctDTfwqW3F7q8Z8RpGCyVysSpW5KytLnN99sp1RtJ_bDW1mXJky32lbggW8Kc7nN1p4J7GW2NR6_n7rjmmdW1RZF5K827tqKW47r2425MZmMRW13yWl131y6ylVql91p2gtYGCW2Jzhzw3jW8QxW6fhbTG45QJ7rW35Qzcs9llG4HN8vgbp_yZ-fJN97p4cB12Q96W7Lt7vw2Tj0VPW5gTCCQ8f1JLCW7dXxhk24yf3SW2kVHNr24XKP4W5YZChG23xF3zd49Rw604>\r\n\r\nwww.ashbyhq.com\r\n\r\nOn Thu, Jul 24, 2025 at 7:10 AM, Jake McLinden <jake@ashbyhq.com> wrote:\r\n\r\nHey Rick​,\r\n\r\nIt looks like we missed each other! No worries, I understand schedules can\r\nget hectic and things can come up.\r\n\r\nIf you\'re still interested, please grab a time on my calendar here\r\n<https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3mgW2WBlGp4w_ZkhW5gKJ8R4wvS9VN4JVm6kvyT6rN1PGtgVNT0qSW79GkYq7HzGtkW3h47Tx616s1mW7sgQ3s6GQZTGMjzKHx2V7jJW86FXBS4cc423W8rKL9G8QX4c0W2MKbr08ppbL0W2zbF0c3W8fxQW7n-qNB4Wqf8NW6GTP8W2jTX_qW2q9RwV3RL--sW8P3vbK8BcDg2W6sbbRp1vCNXMN8whg56Fm1ShW6cwwsP7SHZ9bW79LgwQ9b3HVlW8k2pb49fqlp0W8pB3_S1yTPf5dlLlbn04>\r\nor let me know a time or two that would work well for you.\r\n\r\nLooking forward to connecting!\r\nJake​\r\n\r\n\r\nJake McLinden\r\n\r\nAccount Executive\r\n\r\n774.277.1507 | LinkedIn\r\n<https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3kvW6RjcW651yfdtN6dGbPVK60G0W5yJw1g3W26hFVYvDgv3W0vYBW8Bkh133DYRqMW4kxGk38PRGYZW5j3PSr3cWHNVW88Rktq88CDDcN7W_nRTDH8_LVMzg3Y7f3nMPW7TskbL11yxpGW86xlX73QZ1CNW9d_YNG1cfLhyW2ShYtQ8JVZP7VMCKHP5LdNgMW3zX-Cv98KC0RMR8d-W6f3YCW79ZZLS2n_cBbW4vzPxm8ns77KVsCJKz8g__q_VyCqKC31SW_CW358cyl97myp0f1TS0z-04>\r\n\r\nBook a Meeting\r\n<https://cBJBm04.na1.hs-sales-engage.com/Ctc/ZS+23284/cBJBm04/JlY2-6qcW95jsWP6lZ3l5W1Cv4kn4cXTnfW6fZwKb8YS3BQW1wL7yB1T82zRVGl6GR4JSFFfW1NpKrB3_Dng6W4dPqtZ90ScSfW1yZ4JJ7LcxVzW1cSYrQ51d1-VW4BZ4wC9dVl50VSgFfy3r5N6JW8cFJMC64Ln6WW7k4S7r92MRHfW5ZlJCl55G1B6W1wxwdZ5011ybN70V9rqwtLMbW68Mz027VwrwyV96L8p2VN5q9W68Qcrx1n9xKPW3VXQB_7lQL04W6V8YXH7y9ddbW3475WY66fqspV4vS8s9b2dQYW6_Nt8K3qy6HhW6G-GbS7VkWHGW65WVgz7ydxx1W3zd0gM4K4T-yW4yqLf32M4SmpW8jVYG28h-15xTbT6j6yTwgWN1wcMQWl3r3bdPK1RH04>\r\n\r\nwww.ashbyhq.com',0,0,0,0,0,0,'2025-07-30 16:53:06','2025-12-09 19:26:38','2025-12-09 19:26:38','2025-12-09 19:26:38',NULL,NULL,NULL),
(537,4,' <DM6PR07MB5850E1D8B93901E597B30B59AD24A@DM6PR07MB5850.namprd07.prod.outlook.com>',NULL,NULL,'Achram-Mavrix Sync @ COHatch West Tampa','rich@achramlabs.com','Richard Van Voorst','<html xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;\r\n	panose-1:2 11 0 4 2 2 2 2 2 4;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle17\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">All, <br>\r\n<br>\r\nGlad that we will have the change to meet again tomorrow and continue to work through some great options forward. Looking forward to it. We will be in the same room that we were last time!<br>\r\n<br>\r\n<o:p></o:p></span></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:none\">V/R,<br>\r\n<br>\r\nRich<br>\r\n<br>\r\n--&nbsp;</span><span style=\"font-size:11.0pt;mso-ligatures:none\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:none\">Rich Van Voorst <br>\r\nAchram Labs | CEO<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:none\"><a href=\"http://www.achramlabs.com\"><span style=\"color:#467886\">www.achramlabs.com</span></a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:none\">e: <a href=\"mailto:rich@achramlabs.com\">\r\n<span style=\"color:#467886\">rich@achramlabs.com</span></a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:none\">m: 813-334-5104</span><span style=\"font-size:11.0pt;mso-ligatures:none\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<br>\r\n<div style=\"max-width: 600px; color: #242424; font-family:\'Segoe UI\',\'Helvetica Neue\',Helvetica,Arial,sans-serif\" class=\"me-email-text\" lang=\"en-US\">\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\" aria-hidden=\"true\">\r\n________________________________________________________________________________</div>\r\n<div style=\"margin-bottom: 12px;\"><span class=\"me-email-text\" style=\"font-size: 24px;font-weight: 700; margin-right:12px;\">Microsoft Teams</span>\r\n<a id=\"meet_invite_block.action.help\" class=\"me-email-link\" style=\"font-size:14px; text-decoration:underline; color: #5B5FC7;\" href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\">\r\nNeed help?</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><a id=\"meet_invite_block.action.join_link\" title=\"Meeting join link\" class=\"me-email-headline\" style=\"font-size: 20px; font-weight:600; text-decoration: underline; color: #5B5FC7;\" href=\"https://teams.microsoft.com/l/meetup-join/19%3ameeting_NDFlZjJmODEtMGM5Ny00ZTcyLWJhNzYtNjIzMDczNDc4Y2Uz%40thread.v2/0?context=%7b%22Tid%22%3a%220930a80e-2157-43f6-aeeb-8cd66ff956b1%22%2c%22Oid%22%3a%22ed6fbfe0-0b33-4893-8efe-ef687ac31ad7%22%7d\" target=\"_blank\" rel=\"noreferrer noopener\">Join\r\n the meeting now</a> </div>\r\n<div style=\"margin-bottom: 6px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Meeting ID:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">294 696 956 457 1</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px;\"><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">Passcode:\r\n</span><span class=\"me-email-text\" style=\"font-size: 14px; color: #242424;\">9wz2uq3X</span>\r\n</div>\r\n<div style=\"margin-bottom: 24px; max-width: 532px;\">\r\n<hr style=\"border: 0; background: #D1D1D1; height: 1px;\">\r\n</div>\r\n<div><span class=\"me-email-text-secondary\" style=\"font-size: 14px; color: #616161;\">For organizers:\r\n</span><a id=\"meet_invite_block.action.organizer_meet_options\" class=\"me-email-link\" style=\"font-size: 14px; text-decoration: underline; color: #5B5FC7;\" target=\"_blank\" href=\"https://teams.microsoft.com/meetingOptions/?organizerId=ed6fbfe0-0b33-4893-8efe-ef687ac31ad7&amp;tenantId=0930a80e-2157-43f6-aeeb-8cd66ff956b1&amp;threadId=19_meeting_NDFlZjJmODEtMGM5Ny00ZTcyLWJhNzYtNjIzMDczNDc4Y2Uz@thread.v2&amp;messageId=0&amp;language=en-US\" rel=\"noreferrer noopener\">Meeting\r\n options</a> </div>\r\n<div style=\"margin-top: 24px; margin-bottom: 6px;\"></div>\r\n<div style=\"margin-bottom: 24px;\"></div>\r\n<div style=\"margin-bottom:24px;overflow:hidden;white-space:nowrap;\" aria-hidden=\"true\">\r\n________________________________________________________________________________</div>\r\n</div>\r\n</body>\r\n</html>','All,\r\n\r\nGlad that we will have the change to meet again tomorrow and continue to work through some great options forward. Looking forward to it. We will be in the same room that we were last time!\r\n\r\nV/R,\r\n\r\nRich\r\n\r\n--\r\nRich Van Voorst\r\nAchram Labs | CEO\r\nwww.achramlabs.com<http://www.achramlabs.com>\r\ne: rich@achramlabs.com<mailto:rich@achramlabs.com>\r\nm: 813-334-5104\r\n\r\n\r\n\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://teams.microsoft.com/l/meetup-join/19%3ameeting_NDFlZjJmODEtMGM5Ny00ZTcyLWJhNzYtNjIzMDczNDc4Y2Uz%40thread.v2/0?context=%7b%22Tid%22%3a%220930a80e-2157-43f6-aeeb-8cd66ff956b1%22%2c%22Oid%22%3a%22ed6fbfe0-0b33-4893-8efe-ef687ac31ad7%22%7d>\r\nMeeting ID: 294 696 956 457 1\r\nPasscode: 9wz2uq3X\r\n________________________________\r\nFor organizers: Meeting options<https://teams.microsoft.com/meetingOptions/?organizerId=ed6fbfe0-0b33-4893-8efe-ef687ac31ad7&tenantId=0930a80e-2157-43f6-aeeb-8cd66ff956b1&threadId=19_meeting_NDFlZjJmODEtMGM5Ny00ZTcyLWJhNzYtNjIzMDczNDc4Y2Uz@thread.v2&messageId=0&language=en-US>\r\n________________________________________________________________________________',0,0,0,0,0,0,'2025-07-30 18:44:51','2025-12-09 19:26:38','2025-12-09 19:26:38','2025-12-09 19:26:38',NULL,NULL,NULL),
(538,4,'<5D7A65B5-0011-4C77-9E29-5C88BB9D1266@mislan.com>',NULL,NULL,'List of drones','rick@mislan.com','Rick Mislan','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body dir=\"auto\"><br id=\"lineBreakAtBeginningOfSignature\"><div dir=\"ltr\"><br><div><font face=\"HelveticaNeue\" style=\"caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); font-size: 13px; -webkit-text-size-adjust: auto;\"><span style=\"font-size: 12px;\"><br></span></font><div class=\"gmail_signature\" style=\"caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); font-family: helvetica, Arial; font-size: 13px; -webkit-text-size-adjust: auto;\"><font face=\"HelveticaNeue\"><span style=\"font-size: 12px;\">Rick Mislan, PhD</span></font><div><a href=\"http://www.mislan.com/\" style=\"overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; -webkit-hyphens: auto; font-size: 12px;\"><font face=\"HelveticaNeue\">www.mislan.com</font></a></div><div><a href=\"tel://(585) 797-9473\" style=\"overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; -webkit-hyphens: auto; font-size: 12px;\"><font face=\"HelveticaNeue\">(585) 797-9473</font></a></div></div></div></div></body></html>','Rick Mislan, PhDwww.mislan.com(585) 797-9473',0,0,0,0,0,0,'2025-07-30 20:22:09','2025-12-09 19:26:38','2025-12-09 19:26:38','2025-12-09 19:26:38',NULL,NULL,NULL),
(539,4,'<21MHARIMTQU4.0CNR9LNL9ENS3@ph1pepf0001735b>',NULL,NULL,'Your single-use code','account-security-noreply@accountprotection.microsoft.com','Microsoft account team','Hi rick@mavrix.one,\r\n\r\nWe received your request for a single-use code to use with your Microsoft account.\r\n\r\nYour single-use code is: 726916\r\n\r\nOnly enter this code on an official website or app. Don\'t share it with anyone. We\'ll never ask for it outside an official platform.\r\n\r\nThanks,\r\nThe Microsoft account team\r\nPrivacy Statement: https://go.microsoft.com/fwlink/?LinkId=521839\r\nMicrosoft Corporation, One Microsoft Way, Redmond, WA 98052','Hi rick@mavrix.one,\r\n\r\nWe received your request for a single-use code to use with your Microsoft account.\r\n\r\nYour single-use code is: 726916\r\n\r\nOnly enter this code on an official website or app. Don\'t share it with anyone. We\'ll never ask for it outside an official platform.\r\n\r\nThanks,\r\nThe Microsoft account team\r\nPrivacy Statement: https://go.microsoft.com/fwlink/?LinkId=521839\r\nMicrosoft Corporation, One Microsoft Way, Redmond, WA 98052',0,0,0,0,0,0,'2025-07-31 14:54:07','2025-12-09 19:26:38','2025-12-09 19:26:38','2025-12-09 19:26:38',NULL,NULL,NULL),
(540,4,'<072f0b21-267d-431d-ab9a-34893ac8c92c@mavrix.one>',NULL,NULL,'Email Tie In','tony@mavrix.one','Tony Aponte','Rich,\r\n\r\n\r\nHere\'s everyone\'s Mavrix1 email accounts.\r\n\r\n\r\n- TA\r\n\r\n','Rich,\r\n\r\n\r\nHere\'s everyone\'s Mavrix1 email accounts.\r\n\r\n\r\n- TA\r\n\r\n',0,0,0,0,0,0,'2025-07-31 15:09:46','2025-12-09 19:26:39','2025-12-09 19:26:39','2025-12-09 19:26:39',NULL,NULL,NULL),
(541,4,'<786ecf59-12e0-43eb-9ed9-c9926a2a6238@mavrix.one>',NULL,NULL,'Email Link Up','tony@mavrix.one','Tony Aponte','Rich/Andrew,\r\n\r\n\r\nHere is everyone\'s email.\r\n\r\n\r\nTony Aponte\r\n\r\nCOO, Mavrix1\r\n\r\nwww.mavrix.one\r\n\r\n','Rich/Andrew,\r\n\r\n\r\nHere is everyone\'s email.\r\n\r\n\r\nTony Aponte\r\n\r\nCOO, Mavrix1\r\n\r\nwww.mavrix.one\r\n\r\n',0,0,0,0,0,0,'2025-07-31 16:59:43','2025-12-09 19:26:39','2025-12-09 19:26:39','2025-12-09 19:26:39',NULL,NULL,NULL),
(542,4,'<CAGgBgfBvFnzCazFjESyW=wcZDVgh6+PTrHpVxpHT6o2nYSW2NQ@mail.gmail.com>',NULL,NULL,'Design vs Infrastructure (07/31/25 1540)','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">I need to figure out how to get Joel off my payroll and onto yours, depending on how long this is going to take to get squared away.  It&#39;s been more than 3 months, and I freed time up in my schedule.  I&#39;m using my money to fund things at my end right now.  As such, I need to know where this is going.</div><br>I have a lot of options at the moment, and not enough information to make a choice.  I have enough effort and money invested that I&#39;m definitely going to do something with this, the only question is what and with who.<br><br>I would appreciate it if, as a starter, if you could find something that you need done that I could have Joel do, since it seems like you&#39;re not ready to commit to firmware that doesn&#39;t exist yet.  He has a background in manufacturing environments which are highly controlled; he worked at Intel, so he&#39;s used to some pretty onerous procedures.  As someone who has worked on transportation systems where human safety is at risk, he&#39;s familiar<span class=\"gmail_default\" style=\"font-size:small\"></span> with strict regulations.  <br><br>It sounds like you guys are getting away from making a product and moving towards a manufacturing floor (electronics and mechanical), or at least that&#39;s what I took away from our last discussion.  It also sounds like you&#39;re at the point of wanting to establish a business, which means establishing the underlying infrastructure.  That&#39;s going to require some oversight documentation.  I could have Joel prepare the outline (not necessarily the exact procedures) of a company -- it&#39;s a lot of block diagrams and charts, and is the kind of documentation you need for both ISO and AS9100.  <br><br>If you&#39;re going after military business, you&#39;re going to need this kind of process / documentation control.  It takes a while to build the skeleton and then even longer to fill it in.  Right now, it sounds like you have some people with skills and an opportunity, now you need the structure to support both if you&#39;re going to try to sell this.<br><br>My original quote included setting up a MRP system that understood the structure; I don&#39;t have a clue if you have any able bodies who could do that or if you&#39;re going to just buy some horrendous MRP system which takes forever to configure and set up.<br><br>If you&#39;re truly saying you need to have that all in place before we start doing design work, that&#39;s 100% backwards of what you&#39;ve been telling me for months -- but we can help you with that side of it.  It&#39;s not our favorite kind of work, but we do know how to do it.<br><br>What this all boils down to is that we&#39;ve been feeling your sense of urgency for months, but there&#39;s been no official start and I can&#39;t figure out how to help you.</div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><div><font face=\"courier new, monospace\">Regards,</font></div><div><font face=\"courier new, monospace\">Thomas Pownall</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">CADX Services, Inc.</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Tel: 585-624-1491 X101</font></div><div><font face=\"courier new, monospace\">Fax: 585-582-1101</font></div><div><font face=\"courier new, monospace\">E-Mail: <a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a></font></div><div><font face=\"courier new, monospace\">Web: <a href=\"http://www.cadxservices.com\" target=\"_blank\">http://www.cadxservices.com</a></font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\">**************** Confidentiality Statement ****************</font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Privileged/Confidential Information may be contained in this</font></div><div><font face=\"courier new, monospace\">message. If you are not the addressee indicated in this message</font></div><div><font face=\"courier new, monospace\">(or responsible for delivery of the message to such person),</font></div><div><font face=\"courier new, monospace\">you may not copy or deliver this message to anyone. In such</font></div><div><font face=\"courier new, monospace\">case, you should destroy this message, and notify us</font></div><div><font face=\"courier new, monospace\">immediately. If you or your employer does not consent to</font></div><div><font face=\"courier new, monospace\">Internet email messages of this kind, please advise us</font></div><div><font face=\"courier new, monospace\">immediately. Opinions, conclusions and other information</font></div><div><font face=\"courier new, monospace\">expressed in this message are not given or endorsed by my firm</font></div><div><font face=\"courier new, monospace\">or employer unless otherwise indicated by an authorized</font></div><div><font face=\"courier new, monospace\">representative independent of this message.</font></div></div></div></div></div></div></div>','I need to figure out how to get Joel off my payroll and onto yours,\r\ndepending on how long this is going to take to get squared away.  It\'s been\r\nmore than 3 months, and I freed time up in my schedule.  I\'m using my money\r\nto fund things at my end right now.  As such, I need to know where this is\r\ngoing.\r\n\r\nI have a lot of options at the moment, and not enough information to make a\r\nchoice.  I have enough effort and money invested that I\'m definitely going\r\nto do something with this, the only question is what and with who.\r\n\r\nI would appreciate it if, as a starter, if you could find something that\r\nyou need done that I could have Joel do, since it seems like you\'re not\r\nready to commit to firmware that doesn\'t exist yet.  He has a background in\r\nmanufacturing environments which are highly controlled; he worked at Intel,\r\nso he\'s used to some pretty onerous procedures.  As someone who has worked\r\non transportation systems where human safety is at risk, he\'s familiar with\r\nstrict regulations.\r\n\r\nIt sounds like you guys are getting away from making a product and moving\r\ntowards a manufacturing floor (electronics and mechanical), or at least\r\nthat\'s what I took away from our last discussion.  It also sounds like\r\nyou\'re at the point of wanting to establish a business, which means\r\nestablishing the underlying infrastructure.  That\'s going to require some\r\noversight documentation.  I could have Joel prepare the outline (not\r\nnecessarily the exact procedures) of a company -- it\'s a lot of block\r\ndiagrams and charts, and is the kind of documentation you need for both ISO\r\nand AS9100.\r\n\r\nIf you\'re going after military business, you\'re going to need this kind of\r\nprocess / documentation control.  It takes a while to build the skeleton\r\nand then even longer to fill it in.  Right now, it sounds like you have\r\nsome people with skills and an opportunity, now you need the structure to\r\nsupport both if you\'re going to try to sell this.\r\n\r\nMy original quote included setting up a MRP system that understood the\r\nstructure; I don\'t have a clue if you have any able bodies who could do\r\nthat or if you\'re going to just buy some horrendous MRP system which takes\r\nforever to configure and set up.\r\n\r\nIf you\'re truly saying you need to have that all in place before we start\r\ndoing design work, that\'s 100% backwards of what you\'ve been telling me for\r\nmonths -- but we can help you with that side of it.  It\'s not our favorite\r\nkind of work, but we do know how to do it.\r\n\r\nWhat this all boils down to is that we\'ve been feeling your sense of\r\nurgency for months, but there\'s been no official start and I can\'t figure\r\nout how to help you.\r\n\r\nRegards,\r\nThomas Pownall\r\n\r\nCADX Services, Inc.\r\n\r\nTel: 585-624-1491 X101\r\nFax: 585-582-1101\r\nE-Mail: tpownall@cadxservices.com\r\nWeb: http://www.cadxservices.com\r\n\r\n***********************************************************\r\n**************** Confidentiality Statement ****************\r\n***********************************************************\r\n\r\nPrivileged/Confidential Information may be contained in this\r\nmessage. If you are not the addressee indicated in this message\r\n(or responsible for delivery of the message to such person),\r\nyou may not copy or deliver this message to anyone. In such\r\ncase, you should destroy this message, and notify us\r\nimmediately. If you or your employer does not consent to\r\nInternet email messages of this kind, please advise us\r\nimmediately. Opinions, conclusions and other information\r\nexpressed in this message are not given or endorsed by my firm\r\nor employer unless otherwise indicated by an authorized\r\nrepresentative independent of this message.',0,0,0,0,0,0,'2025-07-31 19:40:18','2025-12-09 19:26:39','2025-12-09 19:26:39','2025-12-09 19:26:39',NULL,NULL,NULL),
(543,4,' <BN8P111MB2127833ABF11843D6950760CD327A@BN8P111MB2127.NAMP111.PROD.OUTLOOK.COM>',NULL,NULL,'Signed Vampire Memo - [UNCLASSIFIED]','paul.r.shorkey-chacon.mil@army.mil','\"Shorkey-Chacon, Paul R CPT USARMY 1 ID 2 ABCT (USA)\"','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"border-bottom: 1em; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" id=\"x_oct-marking-header-unclassified\">\r\n<b>UNCLASSIFIED</b></div>\r\n<div id=\"x_ms-marking-body\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nSir,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nPlease see attached.</div>\r\n<div id=\"x_Signature\">\r\n<div style=\"background-color: rgb(255, 255, 255); font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nVery Respectfully,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nPaul Shorkey-Chacon</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nCPT, FA</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nDeputy Innovation Officer</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;\">\r\n<span style=\"font-size: 14pt; color: rgb(237, 92, 87);\">1</span><span style=\"font-size: 12pt; color: rgb(0, 0, 0);\"><sup>st</sup>&nbsp;Infantry Division</span></div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n✉ NIPR: paul.r.shorkey-chacon.mil@army.mil</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n📱 Cell: (443) 889-6741</div>\r\n<div style=\"font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n</div>\r\n</div>\r\n<div style=\"border-top: 1em;\" id=\"x_oct-marking-footer-unclassified\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<b>UNCLASSIFIED</b></div>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n</body>\r\n</html>\r\n','UNCLASSIFIED\r\nSir,\r\n\r\nPlease see attached.\r\n\r\nVery Respectfully,\r\n\r\nPaul Shorkey-Chacon\r\nCPT, FA\r\nDeputy Innovation Officer\r\n1st Infantry Division\r\n\r\n\r\n✉ NIPR: paul.r.shorkey-chacon.mil@army.mil\r\n📱 Cell: (443) 889-6741\r\n\r\nUNCLASSIFIED\r\n\r\n',0,0,0,0,0,0,'2025-07-31 21:12:50','2025-12-09 19:26:40','2025-12-09 19:26:40','2025-12-09 19:26:40',NULL,NULL,NULL),
(544,4,' <BN8P111MB21273ADB68308AAF704D1629D327A@BN8P111MB2127.NAMP111.PROD.OUTLOOK.COM>',NULL,NULL,'Re: Signed Vampire Memo - [UNCLASSIFIED]','paul.r.shorkey-chacon.mil@army.mil','\"Shorkey-Chacon, Paul R CPT USARMY 1 ID 2 ABCT (USA)\"','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"border-bottom: 1em; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" id=\"x_oct-marking-header-unclassified\">\r\n<b>UNCLASSIFIED</b></div>\r\n<div id=\"x_ms-marking-body\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nShoot,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nForgot to attach the report, here is is.</div>\r\n<div id=\"x_Signature\">\r\n<div style=\"background-color: rgb(255, 255, 255); font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nVery Respectfully,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nPaul Shorkey-Chacon</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nCPT, FA</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nDeputy Innovation Officer</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;\">\r\n<span style=\"font-size: 14pt; color: rgb(237, 92, 87);\">1</span><span style=\"font-size: 12pt; color: rgb(0, 0, 0);\"><sup>st</sup>&nbsp;Infantry Division</span></div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n✉ NIPR: paul.r.shorkey-chacon.mil@army.mil</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n📱 Cell: (443) 889-6741</div>\r\n<div style=\"font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n</div>\r\n</div>\r\n<div style=\"border-top: 1em;\" id=\"x_oct-marking-footer-unclassified\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<b>UNCLASSIFIED</b></div>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Shorkey-Chacon, Paul R CPT USARMY 1 ID 2 ABCT (USA) &lt;paul.r.shorkey-chacon.mil@army.mil&gt;<br>\r\n<b>Sent:</b> Thursday, July 31, 2025 4:12 PM<br>\r\n<b>To:</b> rick@mavrix.one &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Signed Vampire Memo - [UNCLASSIFIED]</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style type=\"text/css\" style=\"display:none\">\r\n<!--\r\np\r\n	{margin-top:0;\r\n	margin-bottom:0}\r\n-->\r\n</style>\r\n<div dir=\"ltr\">\r\n<div id=\"x_x_oct-marking-header-unclassified\" style=\"border-bottom:1em; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>UNCLASSIFIED</b></div>\r\n<div id=\"x_x_ms-marking-body\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nSir,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nPlease see attached.</div>\r\n<div id=\"x_x_Signature\">\r\n<div style=\"background-color:rgb(255,255,255); font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nVery Respectfully,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nPaul Shorkey-Chacon</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nCPT, FA</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nDeputy Innovation Officer</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif\">\r\n<span style=\"font-size:14pt; color:rgb(237,92,87)\">1</span><span style=\"font-size:12pt; color:rgb(0,0,0)\"><sup>st</sup>&nbsp;Infantry Division</span></div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n✉ NIPR: paul.r.shorkey-chacon.mil@army.mil</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n📱 Cell: (443) 889-6741</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"x_x_oct-marking-footer-unclassified\" style=\"border-top:1em\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>UNCLASSIFIED</b></div>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','UNCLASSIFIED\r\nShoot,\r\n\r\nForgot to attach the report, here is is.\r\n\r\nVery Respectfully,\r\n\r\nPaul Shorkey-Chacon\r\nCPT, FA\r\nDeputy Innovation Officer\r\n1st Infantry Division\r\n\r\n\r\n✉ NIPR: paul.r.shorkey-chacon.mil@army.mil\r\n📱 Cell: (443) 889-6741\r\n\r\nUNCLASSIFIED\r\n\r\n________________________________\r\nFrom: Shorkey-Chacon, Paul R CPT USARMY 1 ID 2 ABCT (USA) <paul.r.shorkey-chacon.mil@army.mil>\r\nSent: Thursday, July 31, 2025 4:12 PM\r\nTo: rick@mavrix.one <rick@mavrix.one>\r\nSubject: Signed Vampire Memo - [UNCLASSIFIED]\r\n\r\nUNCLASSIFIED\r\nSir,\r\n\r\nPlease see attached.\r\n\r\nVery Respectfully,\r\n\r\nPaul Shorkey-Chacon\r\nCPT, FA\r\nDeputy Innovation Officer\r\n1st Infantry Division\r\n\r\n\r\n✉ NIPR: paul.r.shorkey-chacon.mil@army.mil\r\n📱 Cell: (443) 889-6741\r\n\r\nUNCLASSIFIED\r\n\r\n',0,0,0,0,0,0,'2025-07-31 21:35:45','2025-12-09 19:26:49','2025-12-09 19:26:49','2025-12-09 19:26:49',NULL,NULL,NULL),
(545,4,'<8ef26ea405f0adffe94e7c44bfb9a0e0@mavrix.one>',NULL,NULL,'You\'ve been invited to \"Team Meetin\"','tony@mavrix.one','tony@mavrix.one','*Team Meetin*\r\n\r\nWhen: 2025-08-01 15:00 - 15:30 (America/New York)\r\n\r\nInvitees: tony@mavrix.one,\r\n  Brian@mavrix.one,\r\n  Rick@mavrix.one,\r\n  katherine@mavrix.one,\r\n  John <john@mavrix.one>,\r\n  Charles <charles@mavrix.one>,\r\n  Dan <dan@mavrix.one>,\r\n  elias@mavrix.one,\r\n  marion@mavrix.one,\r\n  carson@mavrix.one\r\n\r\nWeekly Updates\r\n\r\nPlease find attached an iCalendar file with all the event details which you \r\ncan import to your calendar application.','*Team Meetin*\r\n\r\nWhen: 2025-08-01 15:00 - 15:30 (America/New York)\r\n\r\nInvitees: tony@mavrix.one,\r\n  Brian@mavrix.one,\r\n  Rick@mavrix.one,\r\n  katherine@mavrix.one,\r\n  John <john@mavrix.one>,\r\n  Charles <charles@mavrix.one>,\r\n  Dan <dan@mavrix.one>,\r\n  elias@mavrix.one,\r\n  marion@mavrix.one,\r\n  carson@mavrix.one\r\n\r\nWeekly Updates\r\n\r\nPlease find attached an iCalendar file with all the event details which you \r\ncan import to your calendar application.',0,0,0,0,0,0,'2025-08-01 00:42:03','2025-12-09 19:26:49','2025-12-09 19:26:49','2025-12-09 19:26:49',NULL,NULL,NULL),
(546,4,'<99410204.7286621.1754043040406@sjmktmail-trigger1g.marketo.org>',NULL,NULL,'Thank you for contacting Palantir','info@explore.palantir.com','Palantir Technologies','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html lang=\"en\">\r\n<head> \r\n<meta charset=\"UTF-8\" /> \r\n<meta http-equiv=\"Content-type\" content=\"text/html; charset=utf-8\" /> \r\n<title></title> \r\n<meta name=\"viewport\" content=\"width=device-width,initial-scale=1\" />          \r\n<style>\r\n    @font-face {\r\n      font-family: \'Alliance No.1\';\r\n      font-style: normal;\r\n      font-weight: 300;\r\n      mso-font-alt: ‘Arial’;\r\n      src: local(\'Alliance No.1\'), url(\'https://fonts.cdnfonts.com/s/19563/Degarism Studio - Alliance No.1 Light.woff\') format(\'woff\');\r\n    }\r\n    @font-face {\r\n      font-family: \'Alliance No.2\';\r\n      font-style: normal;\r\n      font-weight: 300;\r\n      mso-font-alt: ‘Arial’;\r\n      src: local(\'Alliance No.2\'), url(\'https://fonts.cdnfonts.com/s/19563/Degarism Studio - Alliance No.2 Light.woff\') format(\'woff\');\r\n    }\r\n    p {\r\n      margin-top: 15px !important;\r\n    }\r\n    p:last-of-type {\r\n      margin-bottom: 0px !important;\r\n    }\r\n  </style> \r\n<!--[if mso]>\r\n    <style>\r\n      span, td, table, div {\r\n        font-family: \'Alliance No.1\', \'Helvetica Neue\', Helvetica, Arial, sans-serif !important\r\n      }\r\n    </style>\r\n  <![endif]--> \r\n</head> \r\n<body style=\"background: #dbdbdb; color: #1E2124; margin: 0 !important;\"> \r\n<table bgcolor=\"#dbdbdb\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" align=\"center\" style=\"margin 0 auto !important; background-color: #dbdbdb !important;\"> \r\n<tbody> \r\n<tr> \r\n<td> \r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" align=\"center\" bgcolor=\"#F6F6F6\" style=\"background-color: #F6F6F6 !important; margin: 0 auto; padding: 0 !important;\"> \r\n<tbody> \r\n<tr> \r\n<td class=\"mktoContainer\" id=\"email-1\" cellpadding=\"0\" style=\"margin: 0; padding: 0 !important;\">\r\n<table class=\"mktoModule\" id=\"Header_Industry_Name2c93ca87-0741-4cf6-a1f5-d0481281b81e\" cellpadding=\"30\" width=\"100%\" height=\"80\" style=\"width: 100 !important%; height: 80px !important; border-collapse: collapse;\" align=\"center\"> \r\n<tbody> \r\n<tr id=\"header\" style=\"overflow: auto;\"> \r\n<td cellpadding=\"30\" align=\"left\" style=\"margin: 0; padding: 30px !important;\"> <img src=\"https://go.palantir.com/rs/120-GKJ-051/images/mark_word.png\" id=\"mark_icon\" height=\"20\" width=\"81\" style=\"float: left !important; max-height: 20px !important; height: 20px !important; width: auto !important;\" /> </td> \r\n</tr> \r\n</tbody> \r\n</table>\r\n<table class=\"mktoModule\" id=\"Headline_2_01\" cellpadding=\"30\" width=\"100%\" style=\"width: 100%; border-collapse: collapse;\" align=\"center\"> \r\n<tbody> \r\n<tr style=\"overflow: auto;\"> \r\n<td style=\"margin: 0; padding: 30px !important;\"> \r\n<div style=\"color: #1E2124; \"> \r\n<div style=\"width: auto;\"> \r\n<div class=\"mktoText\" id=\"Headline_2_01_Paragraph_Body\" style=\"margin: 0 !important; padding: 0px !important; color: #1E2124; font-family: \'Alliance No.1\', \'Helvetica Neue\', Helvetica, Arial, sans-serif !important;\">\r\n<p style=\"color: #1e2124; font-family: \'Alliance No.1\', \'Helvetica Neue\', Helvetica, Arial, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;\">Hello&nbsp;Rick,</p> \r\n<p style=\"color: #1e2124; font-family: \'Alliance No.1\', \'Helvetica Neue\', Helvetica, Arial, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;\">Thank you for contacting Palantir.&nbsp; We will review your message, and be in touch shortly to address your inquiry.</p> \r\n<p style=\"color: #1e2124; font-family: \'Alliance No.1\', \'Helvetica Neue\', Helvetica, Arial, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;\"><span style=\"color: #1e2124;\">To learn more about our products and services, please consult the</span><span>&nbsp;</span><span style=\"color: #0000ff;\"><a href=\r\n\"http://info.palantir.com/MTIwLUdLSi0wNTEAAAGcBBVyhCdgI41nwv_ubDVq1yYBthRvB_Ag8UDxOraYS8rGpbZVsHNjNX1bUUUivAqar9x8P3Y=\" target=\"_blank\" style=\"color: #0000ff;\"\r\n>Palantir Resources Library</a></span>.</p>\r\n</div> \r\n</div> \r\n</div> </td> \r\n</tr> \r\n</tbody> \r\n</table>\r\n<table class=\"mktoModule\" id=\"Button_01_Textf554bf95-6845-4186-9ac2-c6fac65548b9\" cellpadding=\"30\" width=\"100%\" style=\"width: 100%; border-collapse: collapse;\" align=\"center\"> \r\n<tbody> \r\n<tr style=\"overflow: auto;\"> \r\n<td cellpadding=\"30\" style=\"margin: 30px; padding: 30px;\"> \r\n<div id=\"cta_single\" class=\"center\" style=\"padding: 0px; text-align: center; color: #1E2124; font-family: \'Alliance No.1\', \'Helvetica Neue\', Helvetica, Arial, sans-serif !important; font-weight: 400;\"> \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"50%\" height=\"45\" style=\"margin: 0px auto !important; width: 50% !important; min-width: 300px !important; height: 45px !important; border: 0px solid #1E2124;\"> \r\n<tbody> \r\n<tr> \r\n<td align=\"center\" bgcolor=\"#1E2124\" height=\"43\" style=\"padding: 0px; height: 43px;\" valign=\"middle\"> <a href=\r\n\"http://info.palantir.com/MTIwLUdLSi0wNTEAAAGcBBVyhLRrg1nD7C1VbmQRvIZZZmuyQ-sqRA5BK1Pb8Z5tNGntX9TWxXfjpf5UaeVjbruf5VQ=\" target=\"_blank\" style=\"padding: 0px !important; width: 50% !important; min-width: 300px !important; background-color: #1E2124; color: #ffffff; display: inline-block; font-family: \'Alliance No.1\', \'Helvetica Neue\', Helvetica, Arial, sans-serif !important; font-size: 15px; line-height: 43px; text-align: center; text-decoration: none !important; font-weight: 400;\"\r\n> Learn More → </a> </td> \r\n</tr> \r\n</tbody> \r\n</table> \r\n</div> </td> \r\n</tr> \r\n</tbody> \r\n</table>\r\n<table class=\"mktoModule\" id=\"Signature_1\" cellpadding=\"0\" width=\"100%\" style=\"width: 100%; border-collapse: collapse;\" align=\"left\"> \r\n<tbody> \r\n<tr style=\"overflow: auto;\"> \r\n<td style=\"margin: 0; padding: 30px !important;\"> \r\n<div style=\"color: #1E2124; \"> \r\n<div style=\"width: auto;\"> \r\n<div class=\"mktoText\" id=\"Signature_1_text\" style=\"margin: 0 !important; padding: 0px !important; color: #1E2124; font-family: \'Alliance No.1\', \'Helvetica Neue\', Helvetica, Arial, sans-serif !important;\">\r\n<p style=\"color: #1e2124; font-family: \'Alliance No.1\', \'Helvetica Neue\', Helvetica, Arial, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;\">Regards,<br />Palantir Team </p>\r\n</div> \r\n</div> \r\n</div> </td> \r\n</tr> \r\n</tbody> \r\n</table>\r\n<table class=\"mktoModule\" id=\"Footer_Industry_Name\" width=\"100%\" height=\"80\" bgcolor=\"#1E2124\" style=\"background-color: #1E2124; width: 100% !important; height: 100% !important; border-collapse: collapse; margin: 0; padding: 0;\" align=\"center\"> \r\n<tbody> \r\n<tr id=\"footer\" \"=\"\" style=\"overflow: auto;\"> \r\n<td cellpadding=\"30\" style=\"margin: 0; padding: 30px !important;\"> <img src=\"https://go.palantir.com/rs/120-GKJ-051/images/mark_icon_white.png\" id=\"mark_icon\" height=\"20\" width=\"20\" style=\"float: left; max-height: 20px !important; height: 20px !important; width: auto !important;\" /> </td> \r\n</tr> \r\n</tbody> \r\n</table>\r\n<table class=\"mktoModule\" id=\"Email_Compliance\" width=\"100%\" bgcolor=\"#dbdbdb\" style=\"width: 100% !important; background-color: #dbdbdb; border-collapse: collapse; margin: 0; padding: 0 30px;\" align=\"center\"> \r\n<tbody> \r\n<tr id=\"compliance-info\" style=\"overflow: auto\"> \r\n<td cellpadding=\"30\" style=\"margin: 0; padding: 30px !important;\"> \r\n<div class=\"industry_name\"> \r\n<span style=\"padding: 15px; font-family: \'Alliance No.1\', \'Helvetica Neue\', Helvetica, Arial, sans-serif !important; font-weight: 400;\"> \r\n<div class=\"mktoText\" id=\"compliance-address\" style=\"color: #848484 !important; font-size: 12px; text-align: center;\">\r\n1555 Blake St., Ste 250, Denver, CO, 80202\r\n</div> \r\n<div class=\"mktoText\" id=\"compliance-copyright\" style=\"color: #848484; font-size: 12px; text-align: center;\">\r\n© 2022 Palantir Technologies | \r\n<a href=\r\n\"http://info.palantir.com/MTIwLUdLSi0wNTEAAAGcBBVyhOg7acOB8_69rrH6Xp_0vjgt15AB60WRMUuxzIRhzuZlMlVI5t0iMLZL3fes7ovUvks=\" style=\"color: #1E2124 !important; font-size: 12px; text-decoration: none !important;\"\r\n>Terms of Use</a>\r\n</div> \r\n<div class=\"mktoText\" id=\"compliance-unsubscribe\" style=\"color: #848484; font-size: 12px; text-align: center;\">\r\nNo longer want to recieve these emails? \r\n<a href=\r\n\"https://www.palantir.com/subscriptions/\" target=\"_blank\" class=\"mktNoTrack\" style=\"color: #1E2124 !important; font-size: 12px; text-decoration: none !important;\"\r\n>Unsubscribe</a>\r\n</div> </span> \r\n</div> </td> \r\n</tr> \r\n</tbody> \r\n</table></td> \r\n</tr> \r\n</tbody> \r\n</table> </td> \r\n</tr> \r\n</tbody> \r\n</table>  \r\n<a href=\r\n\"http://info.palantir.com/MTIwLUdLSi0wNTEAAAGcBBVyhMZEg7Hw9EcrJGYgS9sV0kJfXOHFyuB1Gi2gbxVezBruUBkuZbVcacNCwPYkKUV9o-Y=\"\r\n></a>\r\n<img src=\"http://info.palantir.com/trk?t=1&mid=MTIwLUdLSi0wNTEAAAGcBBVyhPcvrdybOwpkRdnbjXwYR-kbDqkP0d1_YKvq3dVaC1HL93E0z8o0dfJif4gGDM9iQBMhx7yqhYTc-iozfzIsb5Oq_GKnPDNVQ8_n5bjAWmJ0\" width=\"1\" height=\"1\" style=\"display:none !important;\" alt=\"\" />\r\n\r\n<!— Comment —>\r\n</body>\r\n</html>','Hello Rick, \r\nThank you for contacting Palantir.  We will review your message, and be in touch shortly to address your inquiry. \r\nTo learn more about our products and services, please consult the Palantir Resources Library <http://info.palantir.com/MTIwLUdLSi0wNTEAAAGcBBVyhCdgI41nwv_ubDVq1yYBthRvB_Ag8UDxOraYS8rGpbZVsHNjNX1bUUUivAqar9x8P3Y=>.\r\nRegards,\r\nPalantir Team\r\n1555 Blake St., Ste 250, Denver, CO, 80202\r\n© 2022 Palantir Technologies | \r\nTerms of Use <http://info.palantir.com/MTIwLUdLSi0wNTEAAAGcBBVyhOg7acOB8_69rrH6Xp_0vjgt15AB60WRMUuxzIRhzuZlMlVI5t0iMLZL3fes7ovUvks=>\r\nNo longer want to recieve these emails? \r\nUnsubscribe <https://www.palantir.com/subscriptions/>\r\n\r\n.',0,0,0,0,0,0,'2025-08-01 10:10:40','2025-12-09 19:26:50','2025-12-09 19:26:50','2025-12-09 19:26:50',NULL,NULL,NULL),
(547,4,'<20250801120921.a5caf77569f749c2@mgeu.radionor.no>',NULL,NULL,'Thank you for contacting us!','noreply@radionor.no','radionor.no','<html>\r\n	<head>\r\n		<title>Thank you for contacting us!</title>\r\n	</head>\r\n	<body>\r\n		Hi Rick,<br />\r\n<br />\r\nThank you for contacting us! We will be in touch with you shortly.<br />\r\n<br />\r\nBest regards<br />\r\nRadionor Communications AS<br />\r\n<br />\r\nWe have registered the following information:<br />\r\n<table width=\"99%\" border=\"0\" cellpadding=\"1\" cellspacing=\"0\" bgcolor=\"#EAEAEA\"><tr><td>\r\n                            <table width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" bgcolor=\"#FFFFFF\">\r\n                            <tr bgcolor=\"#EAF2FA\">\r\n		                                    <td colspan=\"2\">\r\n		                                        <font style=\"font-family: sans-serif; font-size:12px;\"><strong>Name</strong></font>\r\n		                                    </td>\r\n		                               </tr>\r\n		                               <tr bgcolor=\"#FFFFFF\">\r\n		                                    <td width=\"20\">&nbsp;</td>\r\n		                                    <td>\r\n		                                        <font style=\"font-family: sans-serif; font-size:12px;\">Rick Mislan</font>\r\n		                                    </td>\r\n		                               </tr>\r\n		                               <tr bgcolor=\"#EAF2FA\">\r\n		                                    <td colspan=\"2\">\r\n		                                        <font style=\"font-family: sans-serif; font-size:12px;\"><strong>E-mail</strong></font>\r\n		                                    </td>\r\n		                               </tr>\r\n		                               <tr bgcolor=\"#FFFFFF\">\r\n		                                    <td width=\"20\">&nbsp;</td>\r\n		                                    <td>\r\n		                                        <font style=\"font-family: sans-serif; font-size:12px;\"><a href=\'mailto:rick@mavrix.one\'>rick@mavrix.one</a></font>\r\n		                                    </td>\r\n		                               </tr>\r\n		                               <tr bgcolor=\"#EAF2FA\">\r\n		                                    <td colspan=\"2\">\r\n		                                        <font style=\"font-family: sans-serif; font-size:12px;\"><strong>Phone number</strong></font>\r\n		                                    </td>\r\n		                               </tr>\r\n		                               <tr bgcolor=\"#FFFFFF\">\r\n		                                    <td width=\"20\">&nbsp;</td>\r\n		                                    <td>\r\n		                                        <font style=\"font-family: sans-serif; font-size:12px;\">58579473</font>\r\n		                                    </td>\r\n		                               </tr>\r\n		                               <tr bgcolor=\"#EAF2FA\">\r\n		                                    <td colspan=\"2\">\r\n		                                        <font style=\"font-family: sans-serif; font-size:12px;\"><strong>Message</strong></font>\r\n		                                    </td>\r\n		                               </tr>\r\n		                               <tr bgcolor=\"#FFFFFF\">\r\n		                                    <td width=\"20\">&nbsp;</td>\r\n		                                    <td>\r\n		                                        <font style=\"font-family: sans-serif; font-size:12px;\">Interested in your radios for our drones.</font>\r\n		                                    </td>\r\n		                               </tr>\r\n		                               <tr bgcolor=\"#EAF2FA\">\r\n		                                    <td colspan=\"2\">\r\n		                                        <font style=\"font-family: sans-serif; font-size:12px;\"><strong>Bekreftelse, personvernerklæring</strong></font>\r\n		                                    </td>\r\n		                               </tr>\r\n		                               <tr bgcolor=\"#FFFFFF\">\r\n		                                    <td width=\"20\">&nbsp;</td>\r\n		                                    <td>\r\n		                                        <font style=\"font-family: sans-serif; font-size:12px;\"><ul class=\'bulleted\'><li>Yes</li></ul></font>\r\n		                                    </td>\r\n		                               </tr>\r\n		                               </table>\r\n                        </td>\r\n                   </tr>\r\n               </table>\r\n	</body>\r\n</html>\r\n','\r\n	\r\n		Thank you for contacting us!\r\n	\r\n	\r\n		Hi Rick,\r\n\r\nThank you for contacting us! We will be in touch with you shortly.\r\n\r\nBest regards\r\nRadionor Communications AS\r\n\r\nWe have registered the following information:\r\n\r\n                            \r\n                            \r\n		                                    \r\n		                                        Name\r\n		                                    \r\n		                               \r\n		                               \r\n		                                    &nbsp;\r\n		                                    \r\n		                                        Rick Mislan\r\n		                                    \r\n		                               \r\n		                               \r\n		                                    \r\n		                                        E-mail\r\n		                                    \r\n		                               \r\n		                               \r\n		                                    &nbsp;\r\n		                                    \r\n		                                        rick@mavrix.one\r\n		                                    \r\n		                               \r\n		                               \r\n		                                    \r\n		                                        Phone number\r\n		                                    \r\n		                               \r\n		                               \r\n		                                    &nbsp;\r\n		                                    \r\n		                                        58579473\r\n		                                    \r\n		                               \r\n		                               \r\n		                                    \r\n		                                        Message\r\n		                                    \r\n		                               \r\n		                               \r\n		                                    &nbsp;\r\n		                                    \r\n		                                        Interested in your radios for our drones.\r\n		                                    \r\n		                               \r\n		                               \r\n		                                    \r\n		                                        Bekreftelse, personvernerklæring\r\n		                                    \r\n		                               \r\n		                               \r\n		                                    &nbsp;\r\n		                                    \r\n		                                        Yes\r\n		                                    \r\n		                               \r\n		                               \r\n                        \r\n                   \r\n               \r\n	\r\n\r\n',0,0,0,0,0,0,'2025-08-01 12:09:21','2025-12-09 19:26:50','2025-12-09 19:26:50','2025-12-09 19:26:50',NULL,NULL,NULL),
(548,4,' <BY3PR13MB4945D87EC9E6D4B8827C049ECC26A@BY3PR13MB4945.namprd13.prod.outlook.com>',NULL,NULL,'WiFI Stuff','chris@odsafe.com','Chris','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nRick,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nAs I mentioned, I will try to tease out the actual requirement from one of the end user groups.&nbsp; These are products coming from a company I am in touch with over in the U.K. I have not seen a demo but that may change based on if the user group wants to set\r\n one up. These are non-descript slick sheets, but it shows what they are attempting to accomplish.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nLet me know if you have any questions you think I can answer.&nbsp; More to follow as I get more information.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nThank you,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nChris&nbsp;</div>\r\n</body>\r\n</html>','Rick,\r\nAs I mentioned, I will try to tease out the actual requirement from one of the end user groups.  These are products coming from a company I am in touch with over in the U.K. I have not seen a demo but that may change based on if the user group wants to set one up. These are non-descript slick sheets, but it shows what they are attempting to accomplish.\r\n\r\nLet me know if you have any questions you think I can answer.  More to follow as I get more information.\r\n\r\nThank you,\r\nChris',0,0,0,0,0,0,'2025-08-01 13:19:54','2025-12-09 19:26:57','2025-12-09 19:26:57','2025-12-09 19:26:57',NULL,NULL,NULL),
(549,4,'<2681dba6-91a4-457c-bce6-23d051b632e4@mavrix.one>',NULL,NULL,'Fwd: Training and Service Offerings','tony@mavrix.one','Tony Aponte','Forwarded from John. Let me know if you want to get on a call with him \r\nto clarify anything.\r\n\r\n\r\n- T\r\n\r\n\r\nSee attached slide deck:\r\n\r\n- 1 slide on foreseeable training for our in-house personnel. This is \r\neventually, down the road stuff obviously. Not saying we need this all \r\nright out the gate.\r\n- 1 Slide on things our organization could market to end-users. Both our \r\nequipment and training/services that would work no matter what equipment \r\nis used.\r\n\r\nModify/adjust as needed. The Format, layout, design are just there to \r\nkeep this from being words on blank slides.\r\n\r\nPing me on signal if you get this with attachment','Forwarded from John. Let me know if you want to get on a call with him \r\nto clarify anything.\r\n\r\n\r\n- T\r\n\r\n\r\nSee attached slide deck:\r\n\r\n- 1 slide on foreseeable training for our in-house personnel. This is \r\neventually, down the road stuff obviously. Not saying we need this all \r\nright out the gate.\r\n- 1 Slide on things our organization could market to end-users. Both our \r\nequipment and training/services that would work no matter what equipment \r\nis used.\r\n\r\nModify/adjust as needed. The Format, layout, design are just there to \r\nkeep this from being words on blank slides.\r\n\r\nPing me on signal if you get this with attachment',0,0,0,0,0,0,'2025-08-02 13:09:03','2025-12-09 19:26:57','2025-12-09 19:26:57','2025-12-09 19:26:57',NULL,NULL,NULL),
(550,4,'<896DDBE2-7797-49B5-B71C-5903054E9AC4@bayfrontcapitalllc.com>',NULL,NULL,'Site Meeting of 07/30/2025 Follow Up - NDA','brian@bayfrontcapitalllc.com','Brian Stufflebean','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"><div><div><span></span><meta charset=\"UTF-8\"><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br class=\"Apple-interchange-newline\"><br class=\"Apple-interchange-newline\"><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><b>CONFIDENTIALITY NOTICE / NOTICE&nbsp;OF&nbsp;NOT A REGISTERED&nbsp;BROKER/DEALER:</b><span style=\"font-weight: 400;\">&nbsp;Bayfront Capital&nbsp;LLC, nor its’ affiliates are registered as&nbsp;a Broker/Dealer, nor registered with&nbsp;FINRA. Nor does&nbsp;it provide tax or&nbsp;investment advice.&nbsp;&nbsp;Any references&nbsp;made to any transaction in any&nbsp;communication is being made as a&nbsp;business consultant.&nbsp;&nbsp;&nbsp;This is not a&nbsp;solicitation nor offer of any type and any&nbsp;reference to any proposed transaction&nbsp;of any type is void where prohibited by&nbsp;law.&nbsp;This communication&nbsp;is confidential&nbsp;and intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient, you&nbsp;may not copy, disclose, or&nbsp;distribute this message&nbsp;to anyone else;&nbsp;any such actions may be unlawful. If&nbsp;you have received this communication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the message to&nbsp;inform him or her of the&nbsp;error.</span></div>\r\n</div>\r\n<br></div></body></html>','Jarrett, Nathan and Jordan,\r\n\r\n\r\nIt was a pleasure to have the opportunity to meet all three of you at your new site this past week.  In following up from our meeting I have attached an NDA from Mavrix 1 LLC for your review and execution. Each of you should execute a copy as Senior Officers of the Company. \r\n\r\nI will also be setting up a diligence folder on Proton for you to be able to upload diligence files for our review.  Recognizing your very tight deadlines, we will attempt to move diligently along with reviews.  Please don’t hesitate to text or contact me if you have any difficulties in getting into the Proton folder.  \r\n\r\nFYI - you will each receive an email invitation to join/accept the folder prior to being to gaining access. \r\n\r\n\r\n￼\r\n\r\nBest Regards, \r\n\r\n\r\nBrian C. Stufflebean, CEO\r\nBayfront Capital, LLC\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\nbrian@bayfrontcapitalllc.com\r\nwww.bayfrontcapitalllc.com\r\n      \r\n\r\n\r\n￼\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER: Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-08-02 15:42:03','2025-12-09 19:26:58','2025-12-09 19:26:58','2025-12-09 19:26:58',NULL,NULL,NULL),
(551,4,'<BF4H7NSF7TF6XBTHWA90FW5VK8@drive.proton.me>',NULL,NULL,'Brian Stufflebean shared an item with you','no-reply@drive.proton.me','\"Brian Stufflebean (via Proton Drive)\"','--b2=_Omt5byDVLCqFDckxiuL0mSG2lSP8eTUHqKkcIJj6hA\r\nContent-Type: text/html; charset=utf-8\r\nContent-Transfer-Encoding: base64\r\n\r\nPCFET0NUWVBFIGh0bWw+DQo8P3htbCBlbmNvZGluZz0idXRmLTgiID8+PGh0bWwgeG1sbnM9Imh0\r\ndHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWwiIHhtbG5zOnY9InVybjpzY2hlbWFzLW1pY3Jvc29m\r\ndC1jb206dm1sIiB4bWxuczpvPSJ1cm46c2NoZW1hcy1taWNyb3NvZnQtY29tOm9mZmljZTpvZmZp\r\nY2UiPg0KDQo8aGVhZD48bWV0YSBodHRwLWVxdWl2PSJDb250ZW50LVR5cGUiIGNvbnRlbnQ9InRl\r\neHQvaHRtbDsgY2hhcnNldD11dGYtOCI+DQogICAgPCEtLSBOQU1FOiAxIENPTFVNTiAtLT4NCiAg\r\nICA8IS0tW2lmIGd0ZSBtc28gMTVdPg0KICAgIDx4bWw+DQogICAgICAgIDxvOk9mZmljZURvY3Vt\r\nZW50U2V0dGluZ3M+DQogICAgICAgIDxvOkFsbG93UE5HLz4NCiAgICAgICAgPG86UGl4ZWxzUGVy\r\nSW5jaD45NjwvbzpQaXhlbHNQZXJJbmNoPg0KICAgICAgICA8L286T2ZmaWNlRG9jdW1lbnRTZXR0\r\naW5ncz4NCiAgICA8L3htbD4NCiAgICA8IVtlbmRpZl0tLT4NCiAgICA8bWV0YSBjaGFyc2V0PSJV\r\nVEYtOCI+DQogICAgPG1ldGEgbmFtZT0ieC1hcHBsZS1kaXNhYmxlLW1lc3NhZ2UtcmVmb3JtYXR0\r\naW5nIj4NCiAgICA8bWV0YSBuYW1lPSJmb3JtYXQtZGV0ZWN0aW9uIiBjb250ZW50PSJ0ZWxlcGhv\r\nbmU9bm8sIGRhdGU9bm8sIGFkZHJlc3M9bm8sIGVtYWlsPW5vLCB1cmw9bm8iPg0KICAgIDxtZXRh\r\nIGh0dHAtZXF1aXY9IlgtVUEtQ29tcGF0aWJsZSIgY29udGVudD0iSUU9ZWRnZSI+DQogICAgPG1l\r\ndGEgbmFtZT0idmlld3BvcnQiIGNvbnRlbnQ9IndpZHRoPWRldmljZS13aWR0aCwgaW5pdGlhbC1z\r\nY2FsZT0xIj4NCiAgICA8bWV0YSBuYW1lPSJhdXRob3IiIGNvbnRlbnQ9IlByb3RvbiAmbHQ7bm8t\r\ncmVwbHlAZHJpdmUucHJvdG9uLm1lJmd0OyI+DQogICAgPG1ldGEgbmFtZT0iZGVzY3JpcHRpb24i\r\nIGNvbnRlbnQ9Ik5ldyBpdGVtIHNoYXJlZCB3aXRoIHlvdSI+DQogICAgPHRpdGxlPkJyaWFuIFN0\r\ndWZmbGViZWFuIHNoYXJlZCBhbiBpdGVtIHdpdGggeW91PC90aXRsZT4NCg0KDQo8c3R5bGUgdHlw\r\nZT0idGV4dC9jc3MiPkBtZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1pbi13aWR0aDo3NjhweCl7LnRl\r\nbXBsYXRlQ29udGFpbmVye3dpZHRoOiA2MDBweCAhaW1wb3J0YW50O319QG1lZGlhIG9ubHkgc2Ny\r\nZWVuIGFuZCAobWF4LXdpZHRoOiA1MjBweCl7Ym9keSx0YWJsZSx0ZCxwLGF7LXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiBub25lICFpbXBvcnRhbnQ7fWJvZHl7d2lkdGg6IDEwMCUgIWltcG9ydGFu\r\ndDsgbWluLXdpZHRoOiAxMDAlICFpbXBvcnRhbnQ7fS5tY25SZXRpbmFJbWFnZXttYXgtd2lkdGg6\r\nIDEwMCUgIWltcG9ydGFudDt9Lm1jbkltYWdle3dpZHRoOiAxMDAlICFpbXBvcnRhbnQ7fS5tY25C\r\ndXR0b25Db250ZW50Q29udGFpbmVyLC5tY25UZXh0Q29udGVudENvbnRhaW5lcnttYXgtd2lkdGg6\r\nIDEwMCUgIWltcG9ydGFudDsgd2lkdGg6IDEwMCUgIWltcG9ydGFudDt9Lm1jblRleHRDb250ZW50\r\ne3BhZGRpbmctcmlnaHQ6IDMycHggIWltcG9ydGFudDsgcGFkZGluZy1sZWZ0OiAzMnB4ICFpbXBv\r\ncnRhbnQ7fWgye2ZvbnQtc2l6ZTogMjBweCAhaW1wb3J0YW50OyBsaW5lLWhlaWdodDogMS4yNWVt\r\nICFpbXBvcnRhbnQ7fSN0ZW1wbGF0ZUJvZHkgLm1jblRleHRDb250ZW50LCN0ZW1wbGF0ZUJvZHkg\r\nLm1jblRleHRDb250ZW50IHB7Zm9udC1zaXplOiAxNnB4ICFpbXBvcnRhbnQ7IGxpbmUtaGVpZ2h0\r\nOiAxLjVlbSAhaW1wb3J0YW50O30jdGVtcGxhdGVGb290ZXIgLm1jblRleHRDb250ZW50LCN0ZW1w\r\nbGF0ZUZvb3RlciAubWNuVGV4dENvbnRlbnQgcHtmb250LXNpemU6IDE0cHggIWltcG9ydGFudDsg\r\nbGluZS1oZWlnaHQ6IDEuNWVtICFpbXBvcnRhbnQ7fX08L3N0eWxlPjwvaGVhZD4NCg0KPGJvZHkg\r\nc3R5bGU9ImhlaWdodDogMTAwJTsgbWFyZ2luOiAwOyBwYWRkaW5nOiAwOyB3aWR0aDogMTAwJTsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgYmFja2dyb3VuZC1jb2xvcjogI2Y1ZjRmMjsiPg0KICAgIDwhLS1baWYgIWd0ZSBtc28gOV0+\r\nPCEtLS0tPjxzcGFuIGNsYXNzPSJtY25QcmV2aWV3VGV4dCIgc3R5bGU9ImZvbnQtc2l6ZTogMHB4\r\nOyBsaW5lLWhlaWdodDogMHB4OyBtYXgtaGVpZ2h0OiAwcHg7IG1heC13aWR0aDogMHB4OyBvcGFj\r\naXR5OiAwOyBvdmVyZmxvdzogaGlkZGVuOyB2aXNpYmlsaXR5OiBoaWRkZW47IG1zby1oaWRlOiBh\r\nbGw7IGRpc3BsYXk6IG5vbmU7Ij5OZXcgaXRlbSBzaGFyZWQgd2l0aCB5b3U8L3NwYW4+PCEtLTwh\r\nW2VuZGlmXS0tPg0KICAgIDxjZW50ZXI+DQogICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBi\r\nb3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgaGVpZ2h0PSIxMDAlIiB3\r\naWR0aD0iMTAwJSIgaWQ9ImJvZHlUYWJsZSIgc3R5bGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFw\r\nc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBoZWln\r\naHQ6IDEwMCU7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgd2lkdGg6IDEwMCU7IGJhY2tncm91bmQt\r\nY29sb3I6ICNmNWY0ZjI7Ij4NCiAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICA8dGQg\r\nYWxpZ249ImNlbnRlciIgdmFsaWduPSJ0b3AiIGlkPSJib2R5Q2VsbCIgc3R5bGU9Im1zby1saW5l\r\nLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtp\r\ndC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBoZWlnaHQ6IDEwMCU7IG1hcmdpbjogMDsgcGFkZGlu\r\nZzogOHB4OyB3aWR0aDogMTAwJTsgYm9yZGVyLXRvcDogMDsiPg0KICAgICAgICAgICAgICAgICAg\r\nICA8IS0tIEJFR0lOIFRFTVBMQVRFIC8vIC0tPg0KICAgICAgICAgICAgICAgICAgICA8IS0tW2lm\r\nIChndGUgbXNvIDkpfChJRSldPg0KICAgICAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImNl\r\nbnRlciIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAiIHdpZHRoPSI2\r\nMDAiIHN0eWxlPSJ3aWR0aDo2MDBweDsiPjx0cj48dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJ0\r\nb3AiIHdpZHRoPSI2MDAiIHN0eWxlPSJ3aWR0aDo2MDBweDsiPg0KICAgICAgICAgICAgICAgICAg\r\nICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAgICAgICAgICAgPHRhYmxlIGJvcmRlcj0iMCIgY2Vs\r\nbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9InRlbXBsYXRl\r\nQ29udGFpbmVyIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxz\r\ncGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGJvcmRlcjogMDsgYm9yZGVyLXJh\r\nZGl1czogMTZweDsgbWF4LXdpZHRoOiA2MDBweDsiPg0KPHRyPg0KICAgIDx0ZCB2YWxpZ249InRv\r\ncCIgaWQ9InRlbXBsYXRlSGVhZGVyIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0\r\nbHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IGJhY2tncm91bmQtY29sb3I6ICNmZmZmZmY7IGJhY2tncm91bmQtaW1hZ2U6IG5vbmU7\r\nIGJhY2tncm91bmQtcmVwZWF0OiBuby1yZXBlYXQ7IGJhY2tncm91bmQtcG9zaXRpb246IGNlbnRl\r\ncjsgYmFja2dyb3VuZC1zaXplOiBjb3ZlcjsgYm9yZGVyLXRvcDogMDsgYm9yZGVyLWJvdHRvbTog\r\nMDsgcGFkZGluZy10b3A6IDBweDsgcGFkZGluZy1ib3R0b206IDBweDsgYm9yZGVyLXJhZGl1czog\r\nMTZweCAxNnB4IDAgMDsiPg0KICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0i\r\nMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuSW1hZ2VCbG9jayIgc3R5\r\nbGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxl\r\nLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgIDx0\r\nYm9keSBjbGFzcz0ibWNuSW1hZ2VCbG9ja091dGVyIj4NCiAgICAgICAgICAgICAgICA8dHI+DQog\r\nICAgICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jbkltYWdlQmxvY2tJ\r\nbm5lciIgc3R5bGU9InBhZGRpbmc6IDE2cHggMTZweCAwcHggMTZweDsgbXNvLWxpbmUtaGVpZ2h0\r\nLXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0YWJsZSBhbGln\r\nbj0ibGVmdCIgd2lkdGg9IjEwMCUiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFj\r\naW5nPSIwIiBjbGFzcz0ibWNuSW1hZ2VDb250ZW50Q29udGFpbmVyIiBzdHlsZT0ibWluLXdpZHRo\r\nOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7\r\nIG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJr\r\naXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJtY25JbWFnZUNvbnRlbnQiIHZh\r\nbGlnbj0idG9wIiBzdHlsZT0icGFkZGluZzogMTZweCAxNnB4IDBweCAxNnB4OyBtc28tbGluZS1o\r\nZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgIDxhIGhyZWY9Imh0dHBzOi8vZHJpdmUucHJvdG9uLm1lLyIgdGFyZ2V0PSJfYmxh\r\nbmsiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgbGluZS1oZWlnaHQ6\r\nIGluaGVyaXQ7IGNvbG9yOiAjNmQ0YWZmOyBmb250LXdlaWdodDogbm9ybWFsOyB0ZXh0LWRlY29y\r\nYXRpb246IHVuZGVybGluZTsiPjxpbWcgYWxpZ249ImNlbnRlciIgYWx0PSJQcm90b24gRHJpdmUi\r\nIHNyYz0iY2lkOmI5NjRkZmYzNzdjNDcxMWUwOTM4QGRyaXZlLnByb3Rvbi5tZSIgd2lkdGg9IjE1\r\nMCIgc3R5bGU9IndpZHRoOiAzNS40NDc3JTsgbWF4LXdpZHRoOiAzMDBweDsgcGFkZGluZy1ib3R0\r\nb206IDA7IHZlcnRpY2FsLWFsaWduOiBib3R0b207IGJvcmRlcjogMDsgaGVpZ2h0OiBhdXRvOyBv\r\ndXRsaW5lOiBub25lOyB0ZXh0LWRlY29yYXRpb246IG5vbmU7IC1tcy1pbnRlcnBvbGF0aW9uLW1v\r\nZGU6IGJpY3ViaWM7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBm\r\nb250LXNpemU6IDE2cHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgY29sb3I6ICM2ZDRhZmY7IGRpc3Bs\r\nYXk6IGlubGluZTsiPjwvYT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwv\r\ndGQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdGFibGU+\r\nDQogICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgPC90cj4NCiAgICAg\r\nICAgICAgIDwvdGJvZHk+DQogICAgICAgIDwvdGFibGU+DQogICAgPC90ZD4NCjwvdHI+DQo8dHI+\r\nDQogICAgPHRkIHZhbGlnbj0idG9wIiBpZD0idGVtcGxhdGVCb2R5IiBzdHlsZT0ibXNvLWxpbmUt\r\naGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGJhY2tncm91bmQtY29sb3I6ICNmZmZmZmY7IGJhY2tn\r\ncm91bmQtaW1hZ2U6IG5vbmU7IGJhY2tncm91bmQtcmVwZWF0OiBuby1yZXBlYXQ7IGJhY2tncm91\r\nbmQtcG9zaXRpb246IGNlbnRlcjsgYmFja2dyb3VuZC1zaXplOiBjb3ZlcjsgYm9yZGVyLXRvcDog\r\nMDsgYm9yZGVyLWJvdHRvbTogMDsgcGFkZGluZy10b3A6IDhweDsgcGFkZGluZy1ib3R0b206IDhw\r\neDsiPjx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lk\r\ndGg9IjEwMCUiIGNsYXNzPSJtY25UZXh0QmxvY2siIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJv\r\ncmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxl\r\nLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyI+DQogICAgPHRib2R5IGNsYXNzPSJtY25UZXh0QmxvY2tPdXRlciI+\r\nDQogICAgICAgIDx0cj4NCiAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jblRl\r\neHRCbG9ja0lubmVyIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4N\r\nCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAgICAgPHRhYmxlIGFs\r\naWduPSJsZWZ0IiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIwIiBjZWxscGFkZGluZz0iMCIgd2lk\r\ndGg9IjEwMCUiIHN0eWxlPSJ3aWR0aDoxMDAlOyI+PHRyPg0KICAgICAgICAgICAgICAgIDwhW2Vu\r\nZGlmXS0tPg0KDQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgICAg\r\nIDx0ZCB2YWxpZ249InRvcCIgd2lkdGg9IjYwMCIgc3R5bGU9IndpZHRoOjYwMHB4OyI+DQogICAg\r\nICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJs\r\nZWZ0IiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEw\r\nMCUiIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIgc3R5bGU9Im1heC13aWR0aDogMTAw\r\nJTsgbWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUt\r\nbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAg\r\nICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dENvbnRlbnQiIHN0\r\neWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgd29yZC1icmVhazogYnJlYWst\r\nd29yZDsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5z\r\nLXNlcmlmOyBmb250LXNpemU6IDE2cHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgdGV4dC1hbGlnbjog\r\nbGVmdDsgcGFkZGluZy10b3A6IDhweDsgcGFkZGluZy1ib3R0b206IDEycHg7IHBhZGRpbmctcmln\r\naHQ6IDMycHg7IHBhZGRpbmctbGVmdDogMzJweDsiPg0KICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICA8cCBjbGFzcz0ibWNuVGV4dENvbnRlbnRDb250YWluZXIiIHN0eWxlPSJwYWRkaW5n\r\nOiAwcHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBjb2xvcjogIzBjMGMxNDsg\r\nZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZw\r\neDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBsZWZ0OyBtYXJnaW46IDBweCAwcHg7\r\nIj48c21hbGwgc3R5bGU9ImNvbG9yOiAjNzA2ZDZiOyBmb250LXNpemU6IDE0cHg7IGxpbmUtaGVp\r\nZ2h0OiAxLjRlbTsiPjxhIHRhcmdldD0iX2JsYW5rIiBocmVmPSJodHRwczovL2FjY291bnQucHJv\r\ndG9uLm1lL2RyaXZlL3NpZ251cD9yZWY9ZHJzaWducCZtb2RlPXNwcyZwbGFuPWZyZWUmY3VycmVu\r\nY3k9Q0hGJmV4dGVybmFsSW52aXRhdGlvbklEPVdMVlZKMGk3ak9hMlpsV2lVRWszWGcmZW1haWw9\r\ncmljayU0MG1hdnJpeC5vbmUmcHJlVmVyaWZpZWRBZGRyZXNzVG9rZW49ZXlKMGVYQWlPaUpLVjFR\r\naUxDSmhiR2NpT2lKSVV6STFOaUo5LmV5SnBZWFFpT2pFM05UUXhOVEUyTmpJdU5ERXlPVE0wTVN3\r\naVpYaHdJam94TnpVMk56UXpOall5TENKRmJXRnBiQ0k2SW5vMFZWTjZPVGRVZFdwMGFEQjNNbU5P\r\nZG5ZMWJqTlFiMDFCVFhjck5GVlpSbWgwYVZWV2QwVnVWV005SWl3aVUyTnZjR1VpT2pBc0ltbHpj\r\neUk2SW5CeWIzUnZiaTV0WlNJc0ltRjFaQ0k2SW5CeWIzUnZiaTV0WlNJc0lsUjVjR1VpT2paOS5R\r\nZndlWVlIel9TckVtT2Eta0tyei1uODNJTVNVX0Z4QklnR3dLUXlQeWo0IiBzdHlsZT0ibXNvLWxp\r\nbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Vi\r\na2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGxpbmUtaGVpZ2h0OiBpbmhlcml0OyBjb2xvcjog\r\nIzZkNGFmZjsgZm9udC13ZWlnaHQ6IGluaGVyaXQ7IHRleHQtZGVjb3JhdGlvbjogdW5kZXJsaW5l\r\nOyBkaXNwbGF5OiBpbmxpbmUtYmxvY2s7IG1hcmdpbi1yaWdodDogNXB4OyI+PGltZyBhbGlnbj0i\r\nY2VudGVyIiBhbHQ9IiIgc3JjPSJjaWQ6ZDA3MWIxNzIwMDg4MDk2NWNkODlAZHJpdmUucHJvdG9u\r\nLm1lIiB3aWR0aD0iMTQiIGNsYXNzPSJtY25JbWFnZSIgc3R5bGU9Im1heC13aWR0aDogMjhweDsg\r\ncGFkZGluZy1ib3R0b206IDA7IHZlcnRpY2FsLWFsaWduOiB0b3A7IGJvcmRlcjogMDsgb3V0bGlu\r\nZTogbm9uZTsgdGV4dC1kZWNvcmF0aW9uOiBub25lOyAtbXMtaW50ZXJwb2xhdGlvbi1tb2RlOiBi\r\naWN1YmljOyBib3JkZXItcmFkaXVzOiAwcHg7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNh\r\nLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE2cHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgY29sb3I6\r\nICM2NTY1NjU7IGhlaWdodDogYXV0bzsgZGlzcGxheTogaW5saW5lOyI+PC9hPlByaXZhdGUgRW5k\r\nLXRvLWVuZCBlbmNyeXB0ZWQgY2xvdWQgc3RvcmFnZTwvc21hbGw+PC9wPiAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAg\r\nICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAg\r\nICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAg\r\nICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAg\r\nICAgICAgICAgICAgIDwvdHI+PC90YWJsZT4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4N\r\nCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwvdGFibGU+\r\nDQo8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRo\r\nPSIxMDAlIiBjbGFzcz0ibWNuVGV4dEJsb2NrIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3Jk\r\nZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1y\r\nc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNuVGV4dEJsb2NrT3V0ZXIiPg0K\r\nICAgICAgICA8dHI+DQogICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJtY25UZXh0\r\nQmxvY2tJbm5lciIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQog\r\nICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgICAgIDx0YWJsZSBhbGln\r\nbj0ibGVmdCIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAiIHdpZHRo\r\nPSIxMDAlIiBzdHlsZT0id2lkdGg6MTAwJTsiPjx0cj4NCiAgICAgICAgICAgICAgICA8IVtlbmRp\r\nZl0tLT4NCg0KICAgICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8\r\ndGQgdmFsaWduPSJ0b3AiIHdpZHRoPSI2MDAiIHN0eWxlPSJ3aWR0aDo2MDBweDsiPg0KICAgICAg\r\nICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0ibGVm\r\ndCIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAl\r\nIiBjbGFzcz0ibWNuVGV4dENvbnRlbnRDb250YWluZXIiIHN0eWxlPSJtYXgtd2lkdGg6IDEwMCU7\r\nIG1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxz\r\ncGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAg\r\nICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jblRleHRDb250ZW50IiBzdHls\r\nZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHdvcmQtYnJlYWs6IGJyZWFrLXdv\r\ncmQ7IGNvbG9yOiAjMGMwYzE0OyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1z\r\nZXJpZjsgZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGxl\r\nZnQ7IHBhZGRpbmctdG9wOiA4cHg7IHBhZGRpbmctYm90dG9tOiAxMnB4OyBwYWRkaW5nLXJpZ2h0\r\nOiAzMnB4OyBwYWRkaW5nLWxlZnQ6IDMycHg7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgPGgyIHN0eWxlPSJkaXNwbGF5OiBibG9jazsgbWFyZ2luOiAwOyBwYWRkaW5nOiAwOyBj\r\nb2xvcjogIzBjMGMxNDsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7\r\nIGZvbnQtc2l6ZTogMjBweDsgZm9udC1zdHlsZTogbm9ybWFsOyBmb250LXdlaWdodDogYm9sZDsg\r\nbGluZS1oZWlnaHQ6IDEuNWVtOyBsZXR0ZXItc3BhY2luZzogbm9ybWFsOyB0ZXh0LWFsaWduOiBs\r\nZWZ0OyI+TmV3IGl0ZW0gc2hhcmVkIHdpdGggeW91PC9oMj48cCBjbGFzcz0ibWNuVGV4dENvbnRl\r\nbnRDb250YWluZXIiIHN0eWxlPSJwYWRkaW5nOiAwcHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBl\r\neGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyBjb2xvcjogIzBjMGMxNDsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2Es\r\nIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFs\r\naWduOiBsZWZ0OyBtYXJnaW46IDEycHggMHB4OyI+PHN0cm9uZz5CcmlhbiBTdHVmZmxlYmVhbjwv\r\nc3Ryb25nPiAoYnJpYW5AYmF5ZnJvbnRjYXBpdGFsbGxjLmNvbSkgc2hhcmVkIGFuIGl0ZW0gd2l0\r\naCB5b3U6PC9wPjxwIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIgc3R5bGU9InBhZGRp\r\nbmc6IDBweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGNvbG9yOiAjMGMwYzE0\r\nOyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAx\r\nNnB4OyBsaW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGxlZnQ7IG1hcmdpbjogMTJweCAw\r\ncHg7Ij48c3BhbiBzdHlsZT0iY29sb3I6ICM2NjY7Ij5QbGVhc2UgY29uZmlybSB5b3VyIGFjY2Vw\r\ndGFuY2UgdG8gdGhlIGZvbGRlci4gIFlvdSB3aWxsIHRoZW4gYmUgYWJsZSB0byB1cGxvYWQgYW5k\r\nIGFjY2VzcyBmaWxlcyBpbiB0aGUgZm9sZGVyLg0KDQpUaGFuayB5b3UsDQoNCkJyaWFuPC9zcGFu\r\nPjwvcD48cCBzdHlsZT0ibWFyZ2luOiAxMnB4IDA7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFj\r\ndGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyBib3JkZXI6IDFweCBzb2xpZCAjRUFFN0U0OyBib3JkZXItcmFkaXVzOiA0cHg7IHBh\r\nZGRpbmc6IDZweCAxNnB4OyI+PGltZyBhbGlnbj0ibWlkZGxlIiBhbHQ9IiIgc3JjPSJjaWQ6Zm9s\r\nZGVyLWljb24tZm9yLXNoYXJpbmctZW1haWxAZHJpdmUucHJvdG9uLm1lIiB3aWR0aD0iMjAiIGhl\r\naWdodD0iMjAiIHN0eWxlPSJtYXgtd2lkdGg6IDQwcHg7cGFkZGluZy1ib3R0b206IDA7ZGlzcGxh\r\neTogaW5saW5lLWJsb2NrICFpbXBvcnRhbnQ7dmVydGljYWwtYWxpZ246IHRleHQtYm90dG9tO2Jv\r\ncmRlcjogMDt3aWR0aDogMjBweDtoZWlnaHQ6IDIwcHg7bWFyZ2luLXJpZ2h0OiA1cHg7Ij4gPGI+\r\nTGl0aGl1bSBCYXR0ZXJ5IENvbXBhbnkgRGlsaWdlbmNlPC9iPjwvcD4gICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAg\r\nICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAg\r\nICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAg\r\nICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAg\r\nICAgICAgICAgICA8L3RyPjwvdGFibGU+DQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQog\r\nICAgICAgICAgICA8L3RkPg0KICAgICAgICA8L3RyPg0KICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0K\r\nPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0i\r\nMTAwJSIgY2xhc3M9Im1jbkJ1dHRvbkJsb2NrIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3Jk\r\nZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1y\r\nc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNuQnV0dG9uQmxvY2tPdXRlciI+\r\nDQogICAgICAgIDx0cj4NCiAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgYWxpZ249ImxlZnQi\r\nIGNsYXNzPSJtY25CdXR0b25CbG9ja0lubmVyIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6\r\nIGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IHRleHQtYWxpZ246IGNlbnRlcjsgcGFkZGluZy1sZWZ0OiAzMnB4OyBwYWRk\r\naW5nLXJpZ2h0OiAzMnB4OyBwYWRkaW5nLXRvcDogMHB4OyBwYWRkaW5nLWJvdHRvbTogMzJweDsi\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBjZWxs\r\ncGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIGNsYXNzPSJtY25CdXR0b25Db250ZW50Q29udGFp\r\nbmVyIiBzdHlsZT0ibXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7\r\nIC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7IGJvcmRlci1jb2xsYXBzZTogc2VwYXJhdGU7Ij4NCiAgICAgICAgICAgICAgICAgICAgPHRi\r\nb2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgIDx0ZCB2YWxpZ249Im1pZGRsZSIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBl\r\neGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxhIGNsYXNzPSJt\r\nY25CdXR0b24gbWFpbGluZy1idXR0b24iIHRpdGxlPSJPcGVuIGluIFByb3RvbiBEcml2ZSIgaHJl\r\nZj0iaHR0cHM6Ly9hY2NvdW50LnByb3Rvbi5tZS9kcml2ZS9zaWdudXA/cmVmPWRyc2lnbnAmbW9k\r\nZT1zcHMmcGxhbj1mcmVlJmN1cnJlbmN5PUNIRiZleHRlcm5hbEludml0YXRpb25JRD1XTFZWSjBp\r\nN2pPYTJabFdpVUVrM1hnJmVtYWlsPXJpY2slNDBtYXZyaXgub25lJnByZVZlcmlmaWVkQWRkcmVz\r\nc1Rva2VuPWV5SjBlWEFpT2lKS1YxUWlMQ0poYkdjaU9pSklVekkxTmlKOS5leUpwWVhRaU9qRTNO\r\nVFF4TlRFMk5qSXVOREV5T1RNME1Td2laWGh3SWpveE56VTJOelF6TmpZeUxDSkZiV0ZwYkNJNklu\r\nbzBWVk42T1RkVWRXcDBhREIzTW1OT2RuWTFiak5RYjAxQlRYY3JORlZaUm1oMGFWVldkMFZ1VldN\r\nOUlpd2lVMk52Y0dVaU9qQXNJbWx6Y3lJNkluQnliM1J2Ymk1dFpTSXNJbUYxWkNJNkluQnliM1J2\r\nYmk1dFpTSXNJbFI1Y0dVaU9qWjkuUWZ3ZVlZSHpfU3JFbU9hLWtLcnotbjgzSU1TVV9GeEJJZ0d3\r\nS1F5UHlqNCIgdGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhh\r\nY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQt\r\nc2l6ZTogMTZweDsgcGFkZGluZy1sZWZ0OiAzMnB4OyBwYWRkaW5nLXJpZ2h0OiAzMnB4OyBwYWRk\r\naW5nLXRvcDogMTJweDsgcGFkZGluZy1ib3R0b206IDEycHg7IGRpc3BsYXk6IGJsb2NrOyBmb250\r\nLXdlaWdodDogbm9ybWFsOyBsZXR0ZXItc3BhY2luZzogMXB4OyBsaW5lLWhlaWdodDogMS41ZW07\r\nIHRleHQtYWxpZ246IGNlbnRlcjsgdGV4dC1kZWNvcmF0aW9uOiBub25lOyBjb2xvcjogI0ZGRkZG\r\nRjsgYm9yZGVyLXJhZGl1czogOHB4OyBiYWNrZ3JvdW5kLWNvbG9yOiAjNmQ0YWZmOyI+DQogICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGkgc3R5bGU9ImZvbnQtZmFtaWx5OiBBcmlh\r\nbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmO2ZvbnQtc2l6ZTogMTZweDtwYWRkaW5nLWxlZnQ6IDMy\r\ncHg7cGFkZGluZy1yaWdodDogMzJweDtwYWRkaW5nLXRvcDogMTJweDtwYWRkaW5nLWJvdHRvbTog\r\nMTJweDtkaXNwbGF5OiBibG9jaztmb250LXdlaWdodDogbm9ybWFsO2xldHRlci1zcGFjaW5nOiAx\r\ncHg7bGluZS1oZWlnaHQ6IDEuNWVtO3RleHQtYWxpZ246IGNlbnRlcjt0ZXh0LWRlY29yYXRpb246\r\nIG5vbmU7Y29sb3I6ICNGRkZGRkY7Ij4mbmJzcDs8L2k+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgIDxzcGFuIHN0eWxlPSIiPk9wZW4gaW4gUHJvdG9uIERyaXZlPC9zcGFuPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICA8L2E+DQogICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAg\r\nICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICA8L3RkPg0KICAgICAgICA8L3RyPg0KICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0K\r\nICAgIDwvdGQ+DQo8L3RyPjx0cj4NCiAgICA8dGQgdmFsaWduPSJ0b3AiIGlkPSJ0ZW1wbGF0ZUZv\r\nb3RlciIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBiYWNrZ3JvdW5k\r\nLWNvbG9yOiAjZmZmZmZmOyBiYWNrZ3JvdW5kLWltYWdlOiBub25lOyBiYWNrZ3JvdW5kLXJlcGVh\r\ndDogbm8tcmVwZWF0OyBiYWNrZ3JvdW5kLXBvc2l0aW9uOiBjZW50ZXI7IGJhY2tncm91bmQtc2l6\r\nZTogY292ZXI7IGJvcmRlci10b3A6IDA7IGJvcmRlci1ib3R0b206IDA7IHBhZGRpbmctdG9wOiAx\r\nNnB4OyBwYWRkaW5nLWJvdHRvbTogMTZweDsgYm9yZGVyLXJhZGl1czogMCAwIDE2cHggMTZweDsi\r\nPg0KICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9\r\nIjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuRGl2aWRlckJsb2NrIiBzdHlsZT0ibWluLXdpZHRo\r\nOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7\r\nIG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJr\r\naXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgdGFibGUtbGF5b3V0OiBmaXhlZDsiPg0KICAgIDx0\r\nYm9keSBjbGFzcz0ibWNuRGl2aWRlckJsb2NrT3V0ZXIiPg0KICAgICAgICA8dHI+DQogICAgICAg\r\nICAgICA8dGQgY2xhc3M9Im1jbkRpdmlkZXJCbG9ja0lubmVyIiBzdHlsZT0ibWluLXdpZHRoOiAx\r\nMDAlOyBwYWRkaW5nOiAwIDMycHggMTZweCAzMnB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhh\r\nY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsiPg0KICAgICAgICAgICAgICAgIDx0YWJsZSBjbGFzcz0ibWNuRGl2aWRlckNvbnRl\r\nbnQiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAw\r\nJSIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLXRvcDogMXB4IHNvbGlkICNGNUY0RjI7\r\nIGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRh\r\nYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAg\r\nICAgICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQg\r\nc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgIDxzcGFuPjwvc3Bhbj4NCiAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAg\r\nICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAg\r\nIDwhLS0NCiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9Im1jbkRpdmlkZXJCbG9ja0lubmVyIiBz\r\ndHlsZT0icGFkZGluZzogMzJweDsiPg0KICAgICAgICAgICAgICAgIDxociBjbGFzcz0ibWNuRGl2\r\naWRlckNvbnRlbnQiIHN0eWxlPSJib3JkZXItYm90dG9tLWNvbG9yOm5vbmU7IGJvcmRlci1sZWZ0\r\nLWNvbG9yOm5vbmU7IGJvcmRlci1yaWdodC1jb2xvcjpub25lOyBib3JkZXItYm90dG9tLXdpZHRo\r\nOjA7IGJvcmRlci1sZWZ0LXdpZHRoOjA7IGJvcmRlci1yaWdodC13aWR0aDowOyBtYXJnaW4tdG9w\r\nOjA7IG1hcmdpbi1yaWdodDowOyBtYXJnaW4tYm90dG9tOjA7IG1hcmdpbi1sZWZ0OjA7IiAvPg0K\r\nICAgICAgICAgICAgICAgIC0tPg0KICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgPC90cj4NCiAg\r\nICA8L3Rib2R5Pg0KPC90YWJsZT4NCjx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBj\r\nZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25UZXh0QmxvY2siIHN0eWxlPSJt\r\naW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3Bh\r\nY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgPHRib2R5IGNsYXNzPSJt\r\nY25UZXh0QmxvY2tPdXRlciI+DQogICAgPHRyPg0KICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNs\r\nYXNzPSJtY25UZXh0QmxvY2tJbm5lciIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFj\r\ndGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyI+DQogICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICA8dGFibGUg\r\nYWxpZ249ImNlbnRlciIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAi\r\nIHdpZHRoPSIxMDAlIiBzdHlsZT0id2lkdGg6MTAwJTsiPg0KICAgICAgICAgICAgICAgIDx0cj4N\r\nCiAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgICAgICA8IS0tW2lmIG1zb10+DQog\r\nICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIHdpZHRoPSI2MDAiIHN0eWxlPSJ3aWR0aDo2MDBw\r\neDsiPg0KICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICA8dGFibGUgYWxpZ249\r\nImNlbnRlciIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRo\r\nPSIxMDAlIiBjbGFzcz0ibWNuVGV4dENvbnRlbnRDb250YWluZXIiIHN0eWxlPSJtYXgtd2lkdGg6\r\nIDEwMCU7IG1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRh\r\nYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAg\r\nICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICA8\r\ndGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJtY25UZXh0Q29udGVudCIgc3R5bGU9InBhZGRpbmctdG9w\r\nOiAxNnB4OyBwYWRkaW5nLXJpZ2h0OiAzMnB4OyBwYWRkaW5nLWJvdHRvbTogMDsgcGFkZGluZy1s\r\nZWZ0OiAzMnB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgd29yZC1icmVhazog\r\nYnJlYWstd29yZDsgY29sb3I6ICM3MDZkNmI7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNh\r\nLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE0cHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgdGV4dC1h\r\nbGlnbjogY2VudGVyOyI+DQogICAgICAgICAgICAgICAgICAgICAgICA8cCBzdHlsZT0ibWFyZ2lu\r\nOiAxMnB4IDA7IHBhZGRpbmc6IDA7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+\r\nwqkgMjAyNCBQcm90b24gQUcgU3dpdHplcmxhbmQ8YnI+Um91dGUgZGUgbGEgR2FsYWlzZSZuYnNw\r\nOzMyLCAxMjI4Jm5ic3A7UGxhbi1sZXMtT3VhdGVzLCBHZW5ldmEsJm5ic3A7U3dpdHplcmxhbmQ8\r\nL3A+DQogICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgPC90cj4NCiAg\r\nICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAg\r\nIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICA8IVtlbmRpZl0t\r\nLT4NCg0KICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPC90cj4NCiAgICAg\r\nICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgPC90ZD4N\r\nCiAgICA8L3RyPg0KICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0KPHRhYmxlIGJvcmRlcj0iMCIgY2Vs\r\nbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jbkltYWdl\r\nQmxvY2siIHN0eWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNl\r\nOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgbWluLXdpZHRoOiAxMDAlOyI+DQogICAg\r\nPHRib2R5IGNsYXNzPSJtY25JbWFnZUJsb2NrT3V0ZXIiPg0KICAgIDx0cj4NCiAgICAgICAgPHRk\r\nIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuSW1hZ2VCbG9ja0lubmVyIiBzdHlsZT0ibXNvLWxpbmUt\r\naGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHBhZGRpbmc6IDE2cHg7Ij4NCiAgICAgICAgICAgIDx0\r\nYWJsZSBhbGlnbj0iY2VudGVyIiB3aWR0aD0iMTAwJSIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0i\r\nMCIgY2VsbHNwYWNpbmc9IjAiIGNsYXNzPSJtY25JbWFnZUNvbnRlbnRDb250YWluZXIiIHN0eWxl\r\nPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10\r\nYWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsgbWluLXdpZHRoOiAxMDAlOyI+DQogICAgICAgICAgICAgICAg\r\nPHRib2R5Pg0KICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgPHRkIGNs\r\nYXNzPSJtY25JbWFnZUNvbnRlbnQiIHZhbGlnbj0idG9wIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0\r\nLXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7IHBhZGRpbmctcmlnaHQ6IDE2cHg7IHBhZGRpbmctbGVmdDogMTZw\r\neDsgcGFkZGluZy10b3A6IDA7IHBhZGRpbmctYm90dG9tOiAwOyB0ZXh0LWFsaWduOiBjZW50ZXI7\r\nIj4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxpbWcgYWxpZ249ImNlbnRlciIgYWx0PSIiIHNy\r\nYz0iY2lkOjcwMWRlYmQwODIzMzg4ODZjMDFkQGRyaXZlLnByb3Rvbi5tZSIgd2lkdGg9IjI3NiIg\r\nY2xhc3M9Im1jblJldGluYUltYWdlIiBzdHlsZT0iYm9yZGVyOiAwOyBoZWlnaHQ6IGF1dG87IG91\r\ndGxpbmU6IG5vbmU7IHRleHQtZGVjb3JhdGlvbjogbm9uZTsgLW1zLWludGVycG9sYXRpb24tbW9k\r\nZTogYmljdWJpYzsgbWF4LXdpZHRoOiA1NTJweDsgcGFkZGluZy1ib3R0b206IDA7IHZlcnRpY2Fs\r\nLWFsaWduOiBib3R0b207IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlm\r\nOyBmb250LXNpemU6IDEycHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgZGlzcGxheTogaW5saW5lOyI+\r\nDQogICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgPC90cj4NCiAgICAg\r\nICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgPC90ZD4N\r\nCiAgICA8L3RyPg0KICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0KICAgIDwvdGQ+DQo8L3RyPiAgICAg\r\nICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgICAgICAgICA8IS0t\r\nW2lmIChndGUgbXNvIDkpfChJRSldPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAg\r\nICAgICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3Rh\r\nYmxlPg0KICAgICAgICAgICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICAg\r\nICAgICAgICAgICA8IS0tIC8vIEVORCBURU1QTEFURSAtLT4NCiAgICAgICAgICAgICAgICAgICAg\r\nPC90ZD4NCiAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgPC90YWJsZT4NCiAgICAg\r\nICAgPC9jZW50ZXI+DQogICAgPC9ib2R5Pg0KPC9odG1sPg0K\r\n\r\n--b2=_Omt5byDVLCqFDckxiuL0mSG2lSP8eTUHqKkcIJj6hA\r\nContent-Type: image/png; name=logos-footer.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <701debd082338886c01d@drive.proton.me>\r\nContent-Disposition: inline; filename=logos-footer.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAigAAABwCAMAAAADkXsEAAAABGdBTUEAALGPC/xhBQAAAAFzUkdC\r\nAK7OHOkAAAAJcEhZcwAAFiUAABYlAUlSJPAAAALfUExURUdwTIpy/YZp/rfc/KOc6Ydn+76K3WxJ\r\n/97I0ZBp//CJWbx+0b6l+o1v/ubH3y7ZzdVqlo5p/fO7m29P/sXM8qiO/vi7tL7O++l3e5Z3/4tp\r\n/8mz9eSr2LXu9bae/3df/pV3//jZ0L2q/te/+XaA/bXo9+GpufnSzjKj8NrC/+SGjNLE/9Roo6Rp\r\n5KGK/cRiqNxujzq619ep3Itk/Cyo8PnBycWIy2vZ4fJgxltp+O9/e0ed4rbt9cWHyuRyhDHO0DjA\r\n1CrgyrVau+tfyJt4/8GI/3BN/21K/3BN/3hN+rCS/3VS/55+/3JL/H9O+JZ1/5p5/7KZ/ref/oVR\r\n9UZ0/4tP8pFx/+C3/1Jm/6uM/7yl/6KC/4lp/6dT5qaH/0xt/1hg/z97/7ZW4HpZ/4Nl/39g/9ix\r\n/11a/8G//59S6bbs9TiC/65U4zKJ/7zj+GhQ/4JM7Ytw/5JQ7x2f/5lS2L1X3JhR7MCr/9Kr/7jX\r\n/762/4pO5mNV/8ym/5JP345Z8fK9zcVY2SuQ/3tL9O66z+a00/+7k7H28r/e/WFl9iWX/8Wg/+q3\r\n0biU/5df681Z1l1s87d612Re+L+a/8au8cKDzsbR/RWo/7yn9qWT/rdcuceJycnJ/5eA/86QxLF0\r\n3OGw1rFZwNZb0s27/6tu4L5fspF6//a/y8LY+/B8ctSXvtqr2ta76M617eevqMKa5p9T0tKm3qCM\r\n/qVp471+06xXxZ5k5/jb0t9cztHB/8Ww/02R5lGJ6eGnrrat/2dX+7/U/0mZ40Wj4Mqg4sViqqRV\r\nzVSB7Fd67sm2/6OC9Vp08ECu3L/K/6uJ8uh1f97B5PHU2NbH//GEY8tlopuH/+TH4LqU6qmc/zu6\r\n2O24oIhf/+rN3NFom9icubKP79lsktyhtK+k/+peyeFxiN7S//rCyadWyjXI0/GNVN1vjJDG+fHN\r\nynqu9abL//20h/ife5bk7NVyobFiylqj/52w+HnLP+kAAABGdFJOUwBnRH8QICD+IP+AMd6f3v7+\r\n397dON6AWYTPvpdj3n+Fi9e/yv2m05d63k1/hd+7pNlD3PW/65P32brk5MfX58+IiN6/v4D1Cm7r\r\n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\r\n\r\n--b2=_Omt5byDVLCqFDckxiuL0mSG2lSP8eTUHqKkcIJj6hA\r\nContent-Type: image/png; name=ic-lock-filled.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <d071b17200880965cd89@drive.proton.me>\r\nContent-Disposition: inline; filename=ic-lock-filled.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAAwAAAAOCAYAAAAbvf3sAAAACXBIWXMAAAsTAAALEwEAmpwYAAAA\r\nAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAADkSURBVHgBjVLbbcJAEJxdLjifTgemAzqI0kE6\r\nyEcURf6kA6gg/rOQwqMEWqACiw5cAp+AYIcFyQjQCTzS3p12Zm50D8EVZmWZMcgMYB+QlMRid+Ag\r\nz/O60eitGBXBpYTXnoTkDSLLJGhVOtfoQrOwjv75NPr++S2uQovJuEyTcyo+bhJE+KmhO8cdtLvx\r\nDaR/0U3/x1+gnZopHkFQ+zBUGIdPxScQmVeh7szQGkw11t7u2ROvGBc1PEKINZMXfTczkbYGMVnt\r\n0XHS2hkoVkUJnM/ANdrC30L9gw38fuvnaq5pHB0BPflKn76VrE8AAAAASUVORK5CYII=\r\n\r\n--b2=_Omt5byDVLCqFDckxiuL0mSG2lSP8eTUHqKkcIJj6hA\r\nContent-Type: image/png; name=logo-proton-drive-purple.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <b964dff377c4711e0938@drive.proton.me>\r\nContent-Disposition: inline; filename=logo-proton-drive-purple.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAgAAAACECAYAAADmxpMdAAAABGdBTUEAALGPC/xhBQAAACBjSFJN\r\nAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAhGVYSWZNTQAqAAAACAAFARIA\r\nAwAAAAEAAQAAARoABQAAAAEAAABKARsABQAAAAEAAABSASgAAwAAAAEAAgAAh2kABAAAAAEAAABa\r\nAAAAAAAAAEgAAAABAAAASAAAAAEAA6ABAAMAAAABAAEAAKACAAQAAAABAAACAKADAAQAAAABAAAA\r\nhAAAAADxbG/fAAAACXBIWXMAAAsTAAALEwEAmpwYAAABWWlUWHRYTUw6Y29tLmFkb2JlLnhtcAAA\r\nAAAAPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUg\r\nNi4wLjAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIv\r\nMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgog\r\nICAgICAgICAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyI+CiAg\r\nICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgIDwvcmRm\r\nOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgoZXuEHAABAAElEQVR4Aey9\r\nB6BtR1XwP/uW15IQkhAgtERAERGlBkXQRxFIhYAJAvp9FImYQkIR/LDkRBH0A0xIA/LJXwVR4Ekx\r\nlc4DQREIWAhNWiCEkkbKyyu37P/vt2bm3HPPPee+kvfIe2TPe/fsKWvWrFkzs9aasmen1LmOAx0H\r\nOg50HOg40HGg40DHgY4DHQc6DnQc6DjQcaDjQMeBjgMdBzoOdBzoONBxoONAx4GOAx0HOg50HOg4\r\n0HGg40DHgY4DHQc6DnQc6DjQcaDjQMeBjgMdBzoOdBzoONBxoONAx4GOAx0HOg50HOg40HGg40DH\r\ngY4DHQc6DnQc6DjQcaDjQMeBjgMdBzoOdBzoONBxoONAx4GOAx0HOg50HOg40HGg40DHgY4DHQc6\r\n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\r\n\r\n--b2=_Omt5byDVLCqFDckxiuL0mSG2lSP8eTUHqKkcIJj6hA\r\nContent-Type: image/png; name=folder.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <folder-icon-for-sharing-email@drive.proton.me>\r\nContent-Disposition: inline; filename=folder.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAA\r\nAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACHSURBVHgB7dSxDcIwEIXh9w5RuGMGWIQ1vAVM\r\nAFkGWkbIGBQIeYQ0afOSSCmiSIkc6Up/rU+/bBcHOGP7Pj/U8UbitDw06hniv8IObF8XbQ4YPtTx\r\nHuI3wSM4SRKqgzFtDYX4q3ODWYZvqw2OhldcXYOjEizBEswLCg0cmchdC3TVeDE5teZ6jgMkv+hJ\r\n4UEAAAAASUVORK5CYII=\r\n\r\n--b2=_Omt5byDVLCqFDckxiuL0mSG2lSP8eTUHqKkcIJj6hA--','New item shared with you\n\n[Proton Drive](https://drive.proton.me/)\n\nhttps://account.proton.me/drive/signup?ref=drsignp&mode=sps&plan=free&currency=CHF&externalInvitationID=WLVVJ0i7jOa2ZlWiUEk3Xg&email=rick%40mavrix.one&preVerifiedAddressToken=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3NTQxNTE2NjIuNDEyOTM0MSwiZXhwIjoxNzU2NzQzNjYyLCJFbWFpbCI6Ino0VVN6OTdUdWp0aDB3MmNOdnY1bjNQb01BTXcrNFVZRmh0aVVWd0VuVWM9IiwiU2NvcGUiOjAsImlzcyI6InByb3Rvbi5tZSIsImF1ZCI6InByb3Rvbi5tZSIsIlR5cGUiOjZ9.QfweYYHz_SrEmOa-kKrz-n83IMSU_FxBIgGwKQyPyj4Private End-to-end encrypted cloud storage\n\nNew item shared with you\n\nBrian Stufflebean (brian@bayfrontcapitalllc.com) shared an item with you:\n\nPlease confirm your acceptance to the folder. You will then be able to upload and access files in the folder. Thank you, Brian\n\nLithium Battery Company Diligence\n\n[Open in Proton Drive](https://account.proton.me/drive/signup?ref=drsignp&mode=sps&plan=free&currency=CHF&externalInvitationID=WLVVJ0i7jOa2ZlWiUEk3Xg&email=rick%40mavrix.one&preVerifiedAddressToken=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3NTQxNTE2NjIuNDEyOTM0MSwiZXhwIjoxNzU2NzQzNjYyLCJFbWFpbCI6Ino0VVN6OTdUdWp0aDB3MmNOdnY1bjNQb01BTXcrNFVZRmh0aVVWd0VuVWM9IiwiU2NvcGUiOjAsImlzcyI6InByb3Rvbi5tZSIsImF1ZCI6InByb3Rvbi5tZSIsIlR5cGUiOjZ9.QfweYYHz_SrEmOa-kKrz-n83IMSU_FxBIgGwKQyPyj4)\n\n© 2024 Proton AG Switzerland\nRoute de la Galaise 32, 1228 Plan-les-Ouates, Geneva, Switzerland',0,0,0,0,0,0,'2025-08-02 16:21:02','2025-12-09 19:26:58','2025-12-09 19:26:58','2025-12-09 19:26:58',NULL,NULL,NULL),
(552,4,'<CAGOCFXi7oRxhK7aOATXc0fmEmXcHFtzxf-tVJsB5amPY2s39xg@mail.gmail.com>',NULL,NULL,'Re: Site Meeting of 07/30/2025 Follow Up - NDA','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Hi Brian,  </div><div><br></div><div>I have initialed and signed the NDA from our side and attached it to this email. Please send the executed copy when you can.  Thanks again!</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Sat, Aug 2, 2025 at 11:42 AM Brian Stufflebean &lt;<a href=\"mailto:brian@bayfrontcapitalllc.com\">brian@bayfrontcapitalllc.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div><span style=\"font-size:14px\">Jarrett, Nathan and Jordan,</span><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">It was a pleasure to have the opportunity to meet all three of you at your new site this past week.  In following up from our meeting I have attached an NDA from Mavrix 1 LLC for your review and execution. Each of you should execute a copy as Senior Officers of the Company. </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">I will also be setting up a diligence folder on Proton for you to be able to upload diligence files for our review.  Recognizing your very tight deadlines, we will attempt to move diligently along with reviews.  Please don’t hesitate to text or contact me if you have any difficulties in getting into the Proton folder.  </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\"><b>FYI </b>- you will each receive an email invitation to join/accept the folder prior to being to gaining access. </span></div><div><br></div><div><br></div><div></div></div><div><div></div><div><br><div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\">Best Regards, <br><br><br>Brian C. Stufflebean, CEO<br><b>Bayfront Capital, LLC</b><br>(941)545-4153 Direct<br>(866)896-2423 Fax<br><a href=\"mailto:brian@bayfrontcapitalllc.com\" target=\"_blank\">brian@bayfrontcapitalllc.com</a><br><a href=\"http://www.bayfrontcapitalllc.com\" target=\"_blank\">www.bayfrontcapitalllc.com</a><br>      <br><br></div><span style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"></span><br style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><span style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"></span><span></span></div></div></div><div><div><div><span></span><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span><br><br><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><b>CONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER:</b><span style=\"font-weight:400\"> Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.</span></div>\r\n</div>\r\n<br></div></div></blockquote></div>','Hi Brian,\r\n\r\nI have initialed and signed the NDA from our side and attached it to this\r\nemail. Please send the executed copy when you can.  Thanks again!\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Sat, Aug 2, 2025 at 11:42 AM Brian Stufflebean <\r\nbrian@bayfrontcapitalllc.com> wrote:\r\n\r\n> Jarrett, Nathan and Jordan,\r\n>\r\n>\r\n> It was a pleasure to have the opportunity to meet all three of you at your\r\n> new site this past week.  In following up from our meeting I have attached\r\n> an NDA from Mavrix 1 LLC for your review and execution. Each of you should\r\n> execute a copy as Senior Officers of the Company.\r\n>\r\n> I will also be setting up a diligence folder on Proton for you to be able\r\n> to upload diligence files for our review.  Recognizing your very tight\r\n> deadlines, we will attempt to move diligently along with reviews.  Please\r\n> don’t hesitate to text or contact me if you have any difficulties in\r\n> getting into the Proton folder.\r\n>\r\n> *FYI *- you will each receive an email invitation to join/accept the\r\n> folder prior to being to gaining access.\r\n>\r\n>\r\n>\r\n> Best Regards,\r\n>\r\n>\r\n> Brian C. Stufflebean, CEO\r\n> *Bayfront Capital, LLC*\r\n> (941)545-4153 Direct\r\n> (866)896-2423 Fax\r\n> brian@bayfrontcapitalllc.com\r\n> www.bayfrontcapitalllc.com\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n> *CONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER:* Bayfront\r\n> Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor\r\n> registered with FINRA. Nor does it provide tax or investment advice.  Any\r\n> references made to any transaction in any communication is being made as\r\n> a business consultant.   This is not a solicitation nor offer of any type\r\n> and any reference to any proposed transaction of any type is void where\r\n> prohibited by law. This communication is confidential and intended only for\r\n> the intended recipient.  If you are not the intended recipient, you may not\r\n> copy, disclose, or distribute this message to anyone else; any such actions\r\n> may be unlawful. If you have received this communication in error, please\r\n> contact the sender of the message to inform him or her of the error.\r\n>\r\n>',0,0,0,0,0,0,'2025-08-02 17:47:05','2025-12-09 19:26:59','2025-12-09 19:26:59','2025-12-09 19:26:59',NULL,NULL,NULL),
(553,4,'<33527780-4C46-4F39-8004-0D652149785F@bayfrontcapitalllc.com>',NULL,NULL,'Fwd: Site Meeting of 07/30/2025 Follow Up - NDA','brian@bayfrontcapitalllc.com','Brian Stufflebean','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=us-ascii\"></head><body style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"><div><div><blockquote type=\"cite\"><div></div></blockquote></div><br></div></body></html>','Rick,\r\n\r\nPlease countersign and return copy back to me when completed.   Thank you.\r\n\r\n\r\nBest Regards, \r\n\r\n\r\nBrian C. Stufflebean, CEO\r\nBayfront Capital, LLC\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\nbrian@bayfrontcapitalllc.com\r\nwww.bayfrontcapitalllc.com\r\n      \r\n\r\n\r\n￼\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER: Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.\r\n\r\n> Begin forwarded message:\r\n> \r\n> From: Nathan Staron <Nathan@lithiumbatterycompany.com>\r\n> Subject: Re: Site Meeting of 07/30/2025 Follow Up - NDA\r\n> Date: August 2, 2025 at 1:47:05 PM EDT\r\n> To: Brian Stufflebean <brian@bayfrontcapitalllc.com>\r\n> Cc: Jordan Wroblewski <Jordan@lithiumbatterycompany.com>, Jarrett Brownfield <jarrett@lithiumbatterycompany.com>, Rick Mislan <rick@mavrix.one>\r\n> \r\n> Hi Brian,  \r\n> \r\n> I have initialed and signed the NDA from our side and attached it to this email. Please send the executed copy when you can.  Thanks again!\r\n> \r\n> \r\n>  <https://lithiumbatterycompany.com/>\r\n>  <https://www.instagram.com/lithiumbatteryco/>\r\n>  <https://www.linkedin.com/company/the-lithium-battery-company>\r\n>  <https://www.facebook.com/LithiumBatteryCompany/>\r\n>  <https://www.youtube.com/c/LithiumBatteryCompany>	 	\r\n>  <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON	\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074 <tel:813-504-0074>\r\n> Phone 844-GET-LITHIUM <tel:844-GET-LITHIUM>\r\n> Nathan@lithiumbatterycompany.com <mailto:Nathan@lithiumbatterycompany.com>\r\n> Schedule A Zoom\r\n>  <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n> \r\n> \r\n> \r\n> On Sat, Aug 2, 2025 at 11:42 AM Brian Stufflebean <brian@bayfrontcapitalllc.com <mailto:brian@bayfrontcapitalllc.com>> wrote:\r\n>> Jarrett, Nathan and Jordan,\r\n>> \r\n>> \r\n>> It was a pleasure to have the opportunity to meet all three of you at your new site this past week.  In following up from our meeting I have attached an NDA from Mavrix 1 LLC for your review and execution. Each of you should execute a copy as Senior Officers of the Company. \r\n>> \r\n>> I will also be setting up a diligence folder on Proton for you to be able to upload diligence files for our review.  Recognizing your very tight deadlines, we will attempt to move diligently along with reviews.  Please don’t hesitate to text or contact me if you have any difficulties in getting into the Proton folder.  \r\n>> \r\n>> FYI - you will each receive an email invitation to join/accept the folder prior to being to gaining access. \r\n>> \r\n>> \r\n>> \r\n>> Best Regards, \r\n>> \r\n>> \r\n>> Brian C. Stufflebean, CEO\r\n>> Bayfront Capital, LLC\r\n>> (941)545-4153 Direct\r\n>> (866)896-2423 Fax\r\n>> brian@bayfrontcapitalllc.com <mailto:brian@bayfrontcapitalllc.com>\r\n>> www.bayfrontcapitalllc.com <http://www.bayfrontcapitalllc.com/>\r\n>>       \r\n>> \r\n>> \r\n>> \r\n>> \r\n>> \r\n>> \r\n>> \r\n>> \r\n>> \r\n>> \r\n>> CONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER: Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.\r\n>> \r\n￼',0,0,0,0,0,0,'2025-08-02 17:57:55','2025-12-09 19:26:59','2025-12-09 19:26:59','2025-12-09 19:26:59',NULL,NULL,NULL),
(554,4,'<CAGOCFXhHkGMBaubLOF55pGh6BaeVKG2DwtJnZxDKzHBMn+y_7g@mail.gmail.com>',NULL,NULL,'Re: Site Meeting of 07/30/2025 Follow Up - NDA','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Good Afternoon, Brian,</div><div><br></div><div>I have started to upload documentation, photos, videos, and letters of support to the Proton Drive folder.   I have a few other documents that I will upload shortly when I am on the desktop computer.  Let us know if you have any questions.</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Sat, Aug 2, 2025 at 1:47 PM Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Hi Brian,  </div><div><br></div><div>I have initialed and signed the NDA from our side and attached it to this email. Please send the executed copy when you can.  Thanks again!</div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_-4687747311364330153_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Sat, Aug 2, 2025 at 11:42 AM Brian Stufflebean &lt;<a href=\"mailto:brian@bayfrontcapitalllc.com\" target=\"_blank\">brian@bayfrontcapitalllc.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div><span style=\"font-size:14px\">Jarrett, Nathan and Jordan,</span><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">It was a pleasure to have the opportunity to meet all three of you at your new site this past week.  In following up from our meeting I have attached an NDA from Mavrix 1 LLC for your review and execution. Each of you should execute a copy as Senior Officers of the Company. </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">I will also be setting up a diligence folder on Proton for you to be able to upload diligence files for our review.  Recognizing your very tight deadlines, we will attempt to move diligently along with reviews.  Please don’t hesitate to text or contact me if you have any difficulties in getting into the Proton folder.  </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\"><b>FYI </b>- you will each receive an email invitation to join/accept the folder prior to being to gaining access. </span></div><div><br></div><div><br></div><div></div></div><div><div></div><div><br><div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\">Best Regards, <br><br><br>Brian C. Stufflebean, CEO<br><b>Bayfront Capital, LLC</b><br>(941)545-4153 Direct<br>(866)896-2423 Fax<br><a href=\"mailto:brian@bayfrontcapitalllc.com\" target=\"_blank\">brian@bayfrontcapitalllc.com</a><br><a href=\"http://www.bayfrontcapitalllc.com\" target=\"_blank\">www.bayfrontcapitalllc.com</a><br>      <br><br></div><span style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"></span><br style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><span style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"></span><span></span></div></div></div><div><div><div><span></span><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span><br><br><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><b>CONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER:</b><span style=\"font-weight:400\"> Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.</span></div>\r\n</div>\r\n<br></div></div></blockquote></div>\r\n</blockquote></div>','Good Afternoon, Brian,\r\n\r\nI have started to upload documentation, photos, videos, and letters of\r\nsupport to the Proton Drive folder.   I have a few other documents that I\r\nwill upload shortly when I am on the desktop computer.  Let us know if you\r\nhave any questions.\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Sat, Aug 2, 2025 at 1:47 PM Nathan Staron <\r\nNathan@lithiumbatterycompany.com> wrote:\r\n\r\n> Hi Brian,\r\n>\r\n> I have initialed and signed the NDA from our side and attached it to this\r\n> email. Please send the executed copy when you can.  Thanks again!\r\n>\r\n>\r\n> <https://lithiumbatterycompany.com/>\r\n> <https://www.instagram.com/lithiumbatteryco/>\r\n> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n> <https://www.facebook.com/LithiumBatteryCompany/>\r\n> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n> <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074\r\n> Phone 844-GET-LITHIUM\r\n> Nathan@lithiumbatterycompany.com\r\n> Schedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>\r\n>\r\n>\r\n> On Sat, Aug 2, 2025 at 11:42 AM Brian Stufflebean <\r\n> brian@bayfrontcapitalllc.com> wrote:\r\n>\r\n>> Jarrett, Nathan and Jordan,\r\n>>\r\n>>\r\n>> It was a pleasure to have the opportunity to meet all three of you at\r\n>> your new site this past week.  In following up from our meeting I have\r\n>> attached an NDA from Mavrix 1 LLC for your review and execution. Each of\r\n>> you should execute a copy as Senior Officers of the Company.\r\n>>\r\n>> I will also be setting up a diligence folder on Proton for you to be able\r\n>> to upload diligence files for our review.  Recognizing your very tight\r\n>> deadlines, we will attempt to move diligently along with reviews.  Please\r\n>> don’t hesitate to text or contact me if you have any difficulties in\r\n>> getting into the Proton folder.\r\n>>\r\n>> *FYI *- you will each receive an email invitation to join/accept the\r\n>> folder prior to being to gaining access.\r\n>>\r\n>>\r\n>>\r\n>> Best Regards,\r\n>>\r\n>>\r\n>> Brian C. Stufflebean, CEO\r\n>> *Bayfront Capital, LLC*\r\n>> (941)545-4153 Direct\r\n>> (866)896-2423 Fax\r\n>> brian@bayfrontcapitalllc.com\r\n>> www.bayfrontcapitalllc.com\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>> *CONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER:* Bayfront\r\n>> Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor\r\n>> registered with FINRA. Nor does it provide tax or investment advice.  Any\r\n>> references made to any transaction in any communication is being made as\r\n>> a business consultant.   This is not a solicitation nor offer of any type\r\n>> and any reference to any proposed transaction of any type is void where\r\n>> prohibited by law. This communication is confidential and intended only for\r\n>> the intended recipient.  If you are not the intended recipient, you may not\r\n>> copy, disclose, or distribute this message to anyone else; any such actions\r\n>> may be unlawful. If you have received this communication in error, please\r\n>> contact the sender of the message to inform him or her of the error.\r\n>>\r\n>>',0,0,0,0,0,0,'2025-08-02 19:58:00','2025-12-09 19:26:59','2025-12-09 19:26:59','2025-12-09 19:26:59',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(555,4,'<TTAVQAC3C1S0M97CRTK4GH3CYG@news.proton.me>',NULL,NULL,'Start protecting your files with Proton Drive','no-reply@notify.proton.me','Proton','--b2=_qt8P2C12rTLOH5SWDmCVrhMvSSJx92a5TqTsu3Ai5c\r\nContent-Type: text/html; charset=utf-8\r\nContent-Transfer-Encoding: base64\r\n\r\nPCFET0NUWVBFIGh0bWw+DQo8P3htbCBlbmNvZGluZz0idXRmLTgiID8+PGh0bWwgeG1sbnM9Imh0\r\ndHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWwiIHhtbG5zOnY9InVybjpzY2hlbWFzLW1pY3Jvc29m\r\ndC1jb206dm1sIiB4bWxuczpvPSJ1cm46c2NoZW1hcy1taWNyb3NvZnQtY29tOm9mZmljZTpvZmZp\r\nY2UiPg0KDQo8aGVhZD48bWV0YSBodHRwLWVxdWl2PSJDb250ZW50LVR5cGUiIGNvbnRlbnQ9InRl\r\neHQvaHRtbDsgY2hhcnNldD11dGYtOCI+DQogICAgPCEtLSBOQU1FOiAxIENPTFVNTiAtLT4NCiAg\r\nICA8IS0tW2lmIGd0ZSBtc28gMTVdPg0KICAgIDx4bWw+DQogICAgICAgIDxvOk9mZmljZURvY3Vt\r\nZW50U2V0dGluZ3M+DQogICAgICAgIDxvOkFsbG93UE5HLz4NCiAgICAgICAgPG86UGl4ZWxzUGVy\r\nSW5jaD45NjwvbzpQaXhlbHNQZXJJbmNoPg0KICAgICAgICA8L286T2ZmaWNlRG9jdW1lbnRTZXR0\r\naW5ncz4NCiAgICA8L3htbD4NCiAgICA8IVtlbmRpZl0tLT4NCiAgICA8bWV0YSBjaGFyc2V0PSJV\r\nVEYtOCI+DQogICAgPG1ldGEgbmFtZT0ieC1hcHBsZS1kaXNhYmxlLW1lc3NhZ2UtcmVmb3JtYXR0\r\naW5nIj4NCiAgICA8bWV0YSBuYW1lPSJmb3JtYXQtZGV0ZWN0aW9uIiBjb250ZW50PSJ0ZWxlcGhv\r\nbmU9bm8sIGRhdGU9bm8sIGFkZHJlc3M9bm8sIGVtYWlsPW5vLCB1cmw9bm8iPg0KICAgIDxtZXRh\r\nIGh0dHAtZXF1aXY9IlgtVUEtQ29tcGF0aWJsZSIgY29udGVudD0iSUU9ZWRnZSI+DQogICAgPG1l\r\ndGEgbmFtZT0idmlld3BvcnQiIGNvbnRlbnQ9IndpZHRoPWRldmljZS13aWR0aCwgaW5pdGlhbC1z\r\nY2FsZT0xIj4NCiAgICA8bWV0YSBuYW1lPSJhdXRob3IiIGNvbnRlbnQ9IlByb3RvbiAmbHQ7bm8t\r\ncmVwbHlAbmV3cy5wcm90b24ubWUmZ3Q7Ij4NCiAgICA8bWV0YSBuYW1lPSJkZXNjcmlwdGlvbiIg\r\nY29udGVudD0iRW5qb3kgdHJ1ZSBwcml2YWN5IHdpdGggc2VjdXJlLCBlbmQtdG8tZW5kIGVuY3J5\r\ncHRlZCBzdG9yYWdlIj4NCiAgICA8dGl0bGU+U3RhcnQgcHJvdGVjdGluZyB5b3VyIGZpbGVzIHdp\r\ndGggUHJvdG9uIERyaXZlPC90aXRsZT4NCg0KDQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPkBtZWRp\r\nYSBvbmx5IHNjcmVlbiBhbmQgKG1pbi13aWR0aDo3NjhweCl7LnRlbXBsYXRlQ29udGFpbmVye3dp\r\nZHRoOiA2MDBweCAhaW1wb3J0YW50O319QG1lZGlhIG9ubHkgc2NyZWVuIGFuZCAobWF4LXdpZHRo\r\nOiA1MjBweCl7Ym9keSx0YWJsZSx0ZCxwLGF7LXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiBub25l\r\nICFpbXBvcnRhbnQ7fWJvZHl7d2lkdGg6IDEwMCUgIWltcG9ydGFudDsgbWluLXdpZHRoOiAxMDAl\r\nICFpbXBvcnRhbnQ7fS5tY25SZXRpbmFJbWFnZXttYXgtd2lkdGg6IDEwMCUgIWltcG9ydGFudDt9\r\nLm1jbkltYWdle3dpZHRoOiAxMDAlICFpbXBvcnRhbnQ7fS5tY25CdXR0b25Db250ZW50Q29udGFp\r\nbmVyLC5tY25UZXh0Q29udGVudENvbnRhaW5lcnttYXgtd2lkdGg6IDEwMCUgIWltcG9ydGFudDsg\r\nd2lkdGg6IDEwMCUgIWltcG9ydGFudDt9Lm1jblRleHRDb250ZW50e3BhZGRpbmctcmlnaHQ6IDMy\r\ncHggIWltcG9ydGFudDsgcGFkZGluZy1sZWZ0OiAzMnB4ICFpbXBvcnRhbnQ7fWgxe2ZvbnQtc2l6\r\nZTogMjJweCAhaW1wb3J0YW50OyBsaW5lLWhlaWdodDogMS4yNWVtICFpbXBvcnRhbnQ7fSN0ZW1w\r\nbGF0ZUJvZHkgLm1jblRleHRDb250ZW50LCN0ZW1wbGF0ZUJvZHkgLm1jblRleHRDb250ZW50IHB7\r\nZm9udC1zaXplOiAxNnB4ICFpbXBvcnRhbnQ7IGxpbmUtaGVpZ2h0OiAxLjVlbSAhaW1wb3J0YW50\r\nO30jdGVtcGxhdGVGb290ZXIgLm1jblRleHRDb250ZW50LCN0ZW1wbGF0ZUZvb3RlciAubWNuVGV4\r\ndENvbnRlbnQgcHtmb250LXNpemU6IDE0cHggIWltcG9ydGFudDsgbGluZS1oZWlnaHQ6IDEuNWVt\r\nICFpbXBvcnRhbnQ7fSN0ZW1wbGF0ZUZvb3RlciAubWNuRm9sbG93Q29udGVudEl0ZW1Db250YWlu\r\nZXJ7cGFkZGluZy1sZWZ0OiAycHggIWltcG9ydGFudDsgcGFkZGluZy1yaWdodDogMnB4ICFpbXBv\r\ncnRhbnQ7fX1AbWVkaWEgb25seSBzY3JlZW4gYW5kIChtYXgtd2lkdGg6IDM1MnB4KXsubWNuRm9s\r\nbG93SWNvbkNvbnRlbnQsLm1jbkZvbGxvd0ljb25Db250ZW50IGltZy5zb2NpYWwtaWNvbnt3aWR0\r\naDogMzhweCAhaW1wb3J0YW50OyBoZWlnaHQ6IDM4cHggIWltcG9ydGFudDt9I3RlbXBsYXRlRm9v\r\ndGVyIC5tY25Gb2xsb3dDb250ZW50SXRlbUNvbnRhaW5lcntwYWRkaW5nLWxlZnQ6IDAgIWltcG9y\r\ndGFudDsgcGFkZGluZy1yaWdodDogMCAhaW1wb3J0YW50O319PC9zdHlsZT48L2hlYWQ+DQoNCjxi\r\nb2R5IHN0eWxlPSJoZWlnaHQ6IDEwMCU7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgd2lkdGg6IDEw\r\nMCU7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IGJhY2tncm91bmQtY29sb3I6ICNmNWY0ZjI7Ij4NCiAgICA8IS0tW2lmICFndGUgbXNv\r\nIDldPjwhLS0tLT48c3BhbiBjbGFzcz0ibWNuUHJldmlld1RleHQiIHN0eWxlPSJmb250LXNpemU6\r\nIDBweDsgbGluZS1oZWlnaHQ6IDBweDsgbWF4LWhlaWdodDogMHB4OyBtYXgtd2lkdGg6IDBweDsg\r\nb3BhY2l0eTogMDsgb3ZlcmZsb3c6IGhpZGRlbjsgdmlzaWJpbGl0eTogaGlkZGVuOyBtc28taGlk\r\nZTogYWxsOyBkaXNwbGF5OiBub25lOyI+RW5qb3kgdHJ1ZSBwcml2YWN5IHdpdGggc2VjdXJlLCBl\r\nbmQtdG8tZW5kIGVuY3J5cHRlZCBzdG9yYWdlPC9zcGFuPjwhLS08IVtlbmRpZl0tLT4NCiAgICA8\r\nY2VudGVyPg0KICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIwIiBjZWxscGFk\r\nZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIGhlaWdodD0iMTAwJSIgd2lkdGg9IjEwMCUiIGlkPSJi\r\nb2R5VGFibGUiIHN0eWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNw\r\nYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgaGVpZ2h0OiAxMDAlOyBtYXJnaW46\r\nIDA7IHBhZGRpbmc6IDA7IHdpZHRoOiAxMDAlOyBiYWNrZ3JvdW5kLWNvbG9yOiAjZjVmNGYyOyI+\r\nDQogICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIHZh\r\nbGlnbj0idG9wIiBpZD0iYm9keUNlbGwiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhh\r\nY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgaGVpZ2h0OiAxMDAlOyBtYXJnaW46IDA7IHBhZGRpbmc6IDhweDsgd2lkdGg6IDEw\r\nMCU7IGJvcmRlci10b3A6IDA7Ij4NCiAgICAgICAgICAgICAgICAgICAgPCEtLSBCRUdJTiBURU1Q\r\nTEFURSAvLyAtLT4NCiAgICAgICAgICAgICAgICAgICAgPCEtLVtpZiAoZ3RlIG1zbyA5KXwoSUUp\r\nXT4NCiAgICAgICAgICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIg\r\nY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIiB3aWR0aD0iNjAwIiBzdHlsZT0id2lkdGg6\r\nNjAwcHg7Ij48dHI+PHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0idG9wIiB3aWR0aD0iNjAwIiBz\r\ndHlsZT0id2lkdGg6NjAwcHg7Ij4NCiAgICAgICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQog\r\nICAgICAgICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxs\r\nc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJ0ZW1wbGF0ZUNvbnRhaW5lciIgc3R5bGU9\r\nImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRh\r\nYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyBib3JkZXI6IDA7IGJvcmRlci1yYWRpdXM6IDE2cHg7IG1heC13\r\naWR0aDogNjAwcHg7Ij4NCjx0cj4NCiAgICA8dGQgdmFsaWduPSJ0b3AiIGlkPSJ0ZW1wbGF0ZUhl\r\nYWRlciIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBiYWNrZ3JvdW5k\r\nLWNvbG9yOiAjZmZmZmZmOyBiYWNrZ3JvdW5kLWltYWdlOiBub25lOyBiYWNrZ3JvdW5kLXJlcGVh\r\ndDogbm8tcmVwZWF0OyBiYWNrZ3JvdW5kLXBvc2l0aW9uOiBjZW50ZXI7IGJhY2tncm91bmQtc2l6\r\nZTogY292ZXI7IGJvcmRlci10b3A6IDA7IGJvcmRlci1ib3R0b206IDA7IHBhZGRpbmctdG9wOiAw\r\ncHg7IHBhZGRpbmctYm90dG9tOiAwcHg7IGJvcmRlci1yYWRpdXM6IDE2cHggMTZweCAwIDA7Ij4N\r\nCiAgICAgICAgPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIw\r\nIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jbkltYWdlQmxvY2siIHN0eWxlPSJtaW4td2lkdGg6IDEw\r\nMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNv\r\nLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICA8dGJvZHkgY2xhc3M9Im1jbklt\r\nYWdlQmxvY2tPdXRlciI+DQogICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAg\r\nICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJtY25JbWFnZUJsb2NrSW5uZXIiIHN0eWxlPSJwYWRk\r\naW5nOiAwcHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImxlZnQiIHdpZHRoPSIxMDAlIiBib3JkZXI9IjAi\r\nIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgY2xhc3M9Im1jbkltYWdlQ29udGVudENv\r\nbnRhaW5lciIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBz\r\nZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBj\r\nbGFzcz0ibWNuSW1hZ2VDb250ZW50IiB2YWxpZ249InRvcCIgc3R5bGU9InBhZGRpbmc6IDBweDsg\r\nbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHRleHQtYWxpZ246IGNlbnRlcjsiPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Imh0dHBzOi8v\r\nZHJpdmUucHJvdG9uLm1lLyIgdGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQt\r\ncnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgbGluZS1oZWlnaHQ6IGluaGVyaXQ7IGNvbG9yOiAjNmQ0YWZmOyBm\r\nb250LXdlaWdodDogbm9ybWFsOyB0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTsiPjxpbWcgYWxp\r\nZ249ImNlbnRlciIgYWx0PSJQcm90b24gRHJpdmUiIHNyYz0iY2lkOjFlYjVhYzY3M2MyZjNhMjdh\r\nZjk0QG5ld3MucHJvdG9uLm1lIiBzdHlsZT0id2lkdGg6IDEwMCU7IGJvcmRlci1yYWRpdXM6IDE2\r\ncHg7IHBhZGRpbmctYm90dG9tOiAwOyB2ZXJ0aWNhbC1hbGlnbjogYm90dG9tOyBib3JkZXI6IDA7\r\nIGhlaWdodDogYXV0bzsgb3V0bGluZTogbm9uZTsgdGV4dC1kZWNvcmF0aW9uOiBub25lOyAtbXMt\r\naW50ZXJwb2xhdGlvbi1tb2RlOiBiaWN1YmljOyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGlj\r\nYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdodDogMS41ZW07IGNvbG9y\r\nOiAjNmQ0YWZmOyBkaXNwbGF5OiBpbmxpbmU7Ij48L2E+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Ry\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAg\r\nICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAg\r\nICAgIDwvdHI+DQogICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICA8L3RhYmxlPg0KICAgIDwv\r\ndGQ+DQo8L3RyPg0KPHRyPg0KICAgIDx0ZCB2YWxpZ249InRvcCIgaWQ9InRlbXBsYXRlQm9keSIg\r\nc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBiYWNrZ3JvdW5kLWNvbG9y\r\nOiAjZmZmZmZmOyBiYWNrZ3JvdW5kLWltYWdlOiBub25lOyBiYWNrZ3JvdW5kLXJlcGVhdDogbm8t\r\ncmVwZWF0OyBiYWNrZ3JvdW5kLXBvc2l0aW9uOiBjZW50ZXI7IGJhY2tncm91bmQtc2l6ZTogY292\r\nZXI7IGJvcmRlci10b3A6IDA7IGJvcmRlci1ib3R0b206IDA7IHBhZGRpbmctdG9wOiA4cHg7IHBh\r\nZGRpbmctYm90dG9tOiA4cHg7Ij4NCjx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBj\r\nZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25UZXh0QmxvY2siIHN0eWxlPSJt\r\naW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3Bh\r\nY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgPHRib2R5IGNsYXNzPSJt\r\nY25UZXh0QmxvY2tPdXRlciI+DQogICAgICAgIDx0cj4NCiAgICAgICAgICAgIDx0ZCB2YWxpZ249\r\nInRvcCIgY2xhc3M9Im1jblRleHRCbG9ja0lubmVyIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1\r\nbGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAg\r\nICAgICAgICAgPHRhYmxlIGFsaWduPSJsZWZ0IiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIwIiBj\r\nZWxscGFkZGluZz0iMCIgd2lkdGg9IjEwMCUiIHN0eWxlPSJ3aWR0aDoxMDAlOyI+PHRyPg0KICAg\r\nICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29d\r\nPg0KICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgd2lkdGg9IjYwMCIgc3R5bGU9Indp\r\nZHRoOjYwMHB4OyI+DQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICAg\r\nICAgPHRhYmxlIGFsaWduPSJsZWZ0IiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3Bh\r\nY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIgc3R5\r\nbGU9Im1heC13aWR0aDogMTAwJTsgbWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNv\r\nbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1z\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsi\r\nPg0KICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICA8\r\ndHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGln\r\nbj0idG9wIiBjbGFzcz0ibWNuVGV4dENvbnRlbnQiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVs\r\nZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgd29yZC1icmVhazogYnJlYWstd29yZDsgY29sb3I6ICMwYzBjMTQ7IGZv\r\nbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE2cHg7\r\nIGxpbmUtaGVpZ2h0OiAxLjVlbTsgdGV4dC1hbGlnbjogLW1vei1jZW50ZXI7IHBhZGRpbmctdG9w\r\nOiAzMnB4OyBwYWRkaW5nLWJvdHRvbTogMTZweDsgcGFkZGluZy1yaWdodDogMzJweDsgcGFkZGlu\r\nZy1sZWZ0OiAzMnB4OyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxoMSBjbGFz\r\ncz0ibWNuVGV4dENvbnRlbnRDb250YWluZXIiIHN0eWxlPSJkaXNwbGF5OiBibG9jazsgbWFyZ2lu\r\nOiAwOyBwYWRkaW5nOiAwOyBjb2xvcjogIzBjMGMxNDsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2\r\nZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMjRweDsgZm9udC1zdHlsZTogbm9ybWFsOyBm\r\nb250LXdlaWdodDogYm9sZDsgbGluZS1oZWlnaHQ6IDEuMjVlbTsgbGV0dGVyLXNwYWNpbmc6IDBw\r\neDsgdGV4dC1hbGlnbjogY2VudGVyOyI+V2VsY29tZTxicj50byBQcm90b24gRHJpdmU8L2gxPiAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAg\r\nPC90cj4NCiAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICA8L3Rh\r\nYmxlPg0KICAgICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8L3Rk\r\nPg0KICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgICAgICAgICAgPCEtLVtp\r\nZiBtc29dPg0KICAgICAgICAgICAgICAgIDwvdHI+PC90YWJsZT4NCiAgICAgICAgICAgICAgICA8\r\nIVtlbmRpZl0tLT4NCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgIDwvdHI+DQogICAgPC90Ym9k\r\neT4NCjwvdGFibGU+DQo8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNp\r\nbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dEJsb2NrIiBzdHlsZT0ibWluLXdpZHRo\r\nOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7\r\nIG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJr\r\naXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNuVGV4dEJs\r\nb2NrT3V0ZXIiPg0KICAgICAgICA8dHI+DQogICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNs\r\nYXNzPSJtY25UZXh0QmxvY2tJbm5lciIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFj\r\ndGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgICAg\r\nIDx0YWJsZSBhbGlnbj0ibGVmdCIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRp\r\nbmc9IjAiIHdpZHRoPSIxMDAlIiBzdHlsZT0id2lkdGg6MTAwJTsiPjx0cj4NCiAgICAgICAgICAg\r\nICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAg\r\nICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIHdpZHRoPSI2MDAiIHN0eWxlPSJ3aWR0aDo2MDBw\r\neDsiPg0KICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgICAgIDx0YWJs\r\nZSBhbGlnbj0ibGVmdCIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAi\r\nIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dENvbnRlbnRDb250YWluZXIiIHN0eWxlPSJtYXgt\r\nd2lkdGg6IDEwMCU7IG1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsg\r\nbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAg\r\nICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jblRleHRD\r\nb250ZW50IiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHdvcmQtYnJl\r\nYWs6IGJyZWFrLXdvcmQ7IGNvbG9yOiAjMGMwYzE0OyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZl\r\ndGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdodDogMS41ZW07IHRl\r\neHQtYWxpZ246IC1tb3otY2VudGVyOyBwYWRkaW5nLXRvcDogOHB4OyBwYWRkaW5nLWJvdHRvbTog\r\nMTJweDsgcGFkZGluZy1yaWdodDogMzJweDsgcGFkZGluZy1sZWZ0OiAzMnB4OyI+DQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5l\r\nciIgc3R5bGU9InBhZGRpbmc6IDBweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1t\r\ncy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIGNvbG9yOiAjMGMwYzE0OyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJp\r\nZjsgZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGNlbnRl\r\ncjsgbWFyZ2luOiAxMnB4IDBweDsiPkNvbmdyYXR1bGF0aW9ucyBvbiBjaG9vc2luZyBwcml2YXRl\r\nIGFuZDxicj5zZWN1cmUgY2xvdWQgc3RvcmFnZSBmb3IgeW91ciBmaWxlcyw8YnI+cGhvdG9zLCBh\r\nbmQgZG9jdW1lbnRzITwvcD4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAg\r\nICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQog\r\nICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQog\r\nICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAg\r\nICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8L3RyPjwvdGFibGU+\r\nDQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICA8L3RkPg0KICAgICAg\r\nICA8L3RyPg0KICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0KPHRhYmxlIGNsYXNzPSJtY25Cb3hCbG9j\r\nayIgd2lkdGg9IjEwMCUiIGNlbGxzcGFjaW5nPSIwIiBjZWxscGFkZGluZz0iMCIgYm9yZGVyPSIw\r\nIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28t\r\ndGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgIDx0Ym9k\r\neSBjbGFzcz0ibWNuQm94QmxvY2tPdXRlciI+DQogICAgICAgIDx0cj4NCiAgICAgICAgICAgIDx0\r\nZCBjbGFzcz0ibWNuQm94QmxvY2tJbm5lciIgdmFsaWduPSJ0b3AiIHN0eWxlPSJtc28tbGluZS1o\r\nZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgIDx0YWJsZSB3aWR0aD0i\r\nMTAwJSIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIiBib3JkZXI9IjAiIGFsaWduPSJs\r\nZWZ0IiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBt\r\nc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAg\r\nICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJtY25UZXh0Q29udGVudCIgYWxpZ249\r\nImNlbnRlciIgc3R5bGU9IndvcmQtYnJlYWs6IGJyZWFrLXdvcmQ7IHBhZGRpbmc6IDEycHggMzJw\r\neCAzMnB4IDMycHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgIDx0YWJsZSBjbGFzcz0ibWNuVGV4dENvbnRlbnRDb250\r\nYWluZXIgbWNuQm94Q29udGVudENvbnRhaW5lciIgY2VsbHNwYWNpbmc9IjAiIGJvcmRlcj0iMCIg\r\nc3R5bGU9ImJvcmRlci1yYWRpdXM6IDEycHg7IGJhY2tncm91bmQ6ICNGQkZBRkY7IGJvcmRlci1j\r\nb2xsYXBzZTogc2VwYXJhdGU7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFj\r\nZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+\r\nDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgY2xhc3M9Im1jbkJveENvbnRl\r\nbnQiIHZhbGlnbj0idG9wIiBhbGlnbj0iY2VudGVyIiBzdHlsZT0icGFkZGluZzogMjRweCAzMnB4\r\nOyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgd29yZC1icmVhazogYnJlYWstd29y\r\nZDsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNl\r\ncmlmOyBmb250LXNpemU6IDE2cHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgdGV4dC1hbGlnbjogbGVm\r\ndDsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRh\r\nYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAw\r\nJSIgY2xhc3M9Im1jblRleHRCbG9jayIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNv\r\nbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNl\r\nOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7Ij4NCiAgICA8dGJvZHkgY2xhc3M9Im1jblRleHRCbG9ja091dGVyIj4NCiAgICAg\r\nICAgPHRyPg0KICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dEJsb2Nr\r\nSW5uZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAg\r\nICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249Imxl\r\nZnQiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIiB3aWR0aD0iMTAw\r\nJSIgc3R5bGU9IndpZHRoOjEwMCU7Ij48dHI+DQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+\r\nDQoNCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAgICAgPHRkIHZh\r\nbGlnbj0idG9wIiB3aWR0aD0iNjAwIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij4NCiAgICAgICAgICAg\r\nICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImxlZnQiIGJv\r\ncmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xh\r\nc3M9Im1jblRleHRDb250ZW50Q29udGFpbmVyIiBzdHlsZT0ibWF4LXdpZHRoOiAxMDAlOyBtaW4t\r\nd2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6\r\nIDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgIDx0\r\nYm9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJtY25UZXh0Q29udGVudCIgc3R5bGU9Im1z\r\nby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyB3b3JkLWJyZWFrOiBicmVhay13b3JkOyBj\r\nb2xvcjogIzBjMGMxNDsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7\r\nIGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiAtbW96LWNl\r\nbnRlcjsgcGFkZGluZy10b3A6IDhweDsgcGFkZGluZy1ib3R0b206IDEycHg7IHBhZGRpbmctcmln\r\naHQ6IDMycHg7IHBhZGRpbmctbGVmdDogMzJweDsiPg0KICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICA8cCBjbGFzcz0ibWNuVGV4dENvbnRlbnRDb250YWluZXIiIHN0eWxlPSJwYWRkaW5n\r\nOiAwcHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBjb2xvcjogIzBjMGMxNDsg\r\nZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZw\r\neDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBjZW50ZXI7IG1hcmdpbjogMTJweCAw\r\ncHg7Ij48YiBzdHlsZT0ibGluZS1oZWlnaHQ6IGluaGVyaXQ7Ij5VcGxvYWQgeW91ciBmaXJzdCBm\r\naWxlPC9iPjwvcD4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAg\r\nICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAg\r\nICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAg\r\nICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8L3RyPjwvdGFibGU+DQogICAg\r\nICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICA8L3RkPg0KICAgICAgICA8L3Ry\r\nPg0KICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0KICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRk\r\naW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25JbWFnZUJsb2Nr\r\nIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28t\r\ndGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICA8\r\ndGJvZHkgY2xhc3M9Im1jbkltYWdlQmxvY2tPdXRlciI+DQogICAgICAgICAgICA8dHI+DQogICAg\r\nICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuSW1hZ2VCbG9ja0lubmVyIiBz\r\ndHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAg\r\nICAgICAgPHRhYmxlIGFsaWduPSJsZWZ0IiB3aWR0aD0iMTAwJSIgYm9yZGVyPSIwIiBjZWxscGFk\r\nZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIGNsYXNzPSJtY25JbWFnZUNvbnRlbnRDb250YWluZXIi\r\nIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10\r\nYWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgY2xhc3M9Im1jbkltYWdlQ29udGVu\r\ndCIgdmFsaWduPSJ0b3AiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1z\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\ndGV4dC1hbGlnbjogY2VudGVyOyBwYWRkaW5nLXRvcDogOHB4OyBwYWRkaW5nLWJvdHRvbTogOHB4\r\nOyBwYWRkaW5nLXJpZ2h0OiAzMnB4OyBwYWRkaW5nLWxlZnQ6IDMycHg7Ij4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgIDxpbWcgYWxpZ249ImNlbnRlciIgYWx0PSJQcm90b24g\r\nRHJpdmUgcHVycGxlIGZvbGRlciBpbWFnZSIgc3JjPSJjaWQ6NzA5NmNiODM5NGY2ZTEzNTcyNTZA\r\nbmV3cy5wcm90b24ubWUiIHdpZHRoPSIzMDAiIGNsYXNzPSJtY25JbWFnZSIgc3R5bGU9Im1heC13\r\naWR0aDogNjAwcHg7IHBhZGRpbmctYm90dG9tOiAwOyB2ZXJ0aWNhbC1hbGlnbjogYm90dG9tOyBi\r\nb3JkZXI6IDA7IG91dGxpbmU6IG5vbmU7IHRleHQtZGVjb3JhdGlvbjogbm9uZTsgLW1zLWludGVy\r\ncG9sYXRpb24tbW9kZTogYmljdWJpYzsgYm9yZGVyLXJhZGl1czogMTJweDsgZm9udC1mYW1pbHk6\r\nIEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWln\r\naHQ6IDEuNWVtOyBjb2xvcjogIzY1NjU2NTsgaGVpZ2h0OiBhdXRvOyBkaXNwbGF5OiBpbmxpbmU7\r\nIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgPC90\r\nYWJsZT4NCiAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgPC90cj4NCiAgICAgICAg\r\nPC90Ym9keT4NCiAgICA8L3RhYmxlPg0KICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5n\r\nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25CdXR0b25CbG9jayIg\r\nc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRh\r\nYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICA8dGJvZHkg\r\nY2xhc3M9Im1jbkJ1dHRvbkJsb2NrT3V0ZXIiPg0KICAgICAgICA8dHI+DQogICAgICAgICAgICA8\r\ndGQgdmFsaWduPSJ0b3AiIGFsaWduPSJsZWZ0IiBjbGFzcz0ibWNuQnV0dG9uQmxvY2tJbm5lciIg\r\nc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyB0ZXh0LWFsaWduOiBjZW50\r\nZXI7IHBhZGRpbmctbGVmdDogMzJweDsgcGFkZGluZy1yaWdodDogMzJweDsgcGFkZGluZy10b3A6\r\nIDBweDsgcGFkZGluZy1ib3R0b206IDMycHg7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBj\r\nbGFzcz0ibWNuQnV0dG9uQ29udGVudENvbnRhaW5lciIgc3R5bGU9Im1zby10YWJsZS1sc3BhY2U6\r\nIDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBtYXJnaW4tbGVmdDogYXV0bzsgbWFyZ2lu\r\nLXJpZ2h0OiBhdXRvOyBib3JkZXItY29sbGFwc2U6IHNlcGFyYXRlOyI+DQogICAgICAgICAgICAg\r\nICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJtaWRkbGUiIHN0eWxlPSJtc28tbGluZS1oZWln\r\naHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\nYSBjbGFzcz0ibWNuQnV0dG9uIG1haWxpbmctYnV0dG9uIiB0aXRsZT0iIiBocmVmPSJodHRwczov\r\nL2RyaXZlLnByb3Rvbi5tZS8iIHRhcmdldD0iX2JsYW5rIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0\r\nLXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNl\r\ncmlmOyBmb250LXNpemU6IDE2cHg7IHBhZGRpbmctbGVmdDogMzJweDsgcGFkZGluZy1yaWdodDog\r\nMzJweDsgcGFkZGluZy10b3A6IDEycHg7IHBhZGRpbmctYm90dG9tOiAxMnB4OyBkaXNwbGF5OiBi\r\nbG9jazsgZm9udC13ZWlnaHQ6IG5vcm1hbDsgbGV0dGVyLXNwYWNpbmc6IDFweDsgbGluZS1oZWln\r\naHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBjZW50ZXI7IHRleHQtZGVjb3JhdGlvbjogbm9uZTsgY29s\r\nb3I6ICNGRkZGRkY7IGJvcmRlci1yYWRpdXM6IDk5OTlweDsgYmFja2dyb3VuZC1jb2xvcjogIzZk\r\nNGFmZjsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPCEtLVtpZiBtc29d\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpIHN0eWxlPSJmb250\r\nLWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjtmb250LXNpemU6IDE2cHg7cGFk\r\nZGluZy1sZWZ0OiAzMnB4O3BhZGRpbmctcmlnaHQ6IDMycHg7cGFkZGluZy10b3A6IDEycHg7cGFk\r\nZGluZy1ib3R0b206IDEycHg7ZGlzcGxheTogYmxvY2s7Zm9udC13ZWlnaHQ6IG5vcm1hbDtsZXR0\r\nZXItc3BhY2luZzogMXB4O2xpbmUtaGVpZ2h0OiAxLjVlbTt0ZXh0LWFsaWduOiBjZW50ZXI7dGV4\r\ndC1kZWNvcmF0aW9uOiBub25lO2NvbG9yOiAjRkZGRkZGOyI+Jm5ic3A7PC9pPg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICA8c3BhbiBzdHlsZT0iIj5VcGxvYWQgeW91ciBmaXJzdCBmaWxl\r\nPC9zcGFuPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2E+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+DQog\r\nICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgPC90YWJsZT4NCiAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICA8L3RyPg0KICAgIDwvdGJv\r\nZHk+DQo8L3RhYmxlPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAg\r\nICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICA8L3RkPg0K\r\nICAgICAgICA8L3RyPg0KICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0KPHRhYmxlIGJvcmRlcj0iMCIg\r\nY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRl\r\neHRCbG9jayIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBz\r\nZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAg\r\nICA8dGJvZHkgY2xhc3M9Im1jblRleHRCbG9ja091dGVyIj4NCiAgICAgICAgPHRyPg0KICAgICAg\r\nICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dEJsb2NrSW5uZXIiIHN0eWxlPSJt\r\nc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgIDwhLS1b\r\naWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImxlZnQiIGJvcmRlcj0iMCIg\r\nY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIiB3aWR0aD0iMTAwJSIgc3R5bGU9IndpZHRo\r\nOjEwMCU7Ij48dHI+DQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgICAg\r\nICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiB3aWR0\r\naD0iNjAwIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0t\r\nLT4NCiAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImxlZnQiIGJvcmRlcj0iMCIgY2VsbHBh\r\nZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRDb250\r\nZW50Q29udGFpbmVyIiBzdHlsZT0ibWF4LXdpZHRoOiAxMDAlOyBtaW4td2lkdGg6IDEwMCU7IGJv\r\ncmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxl\r\nLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAg\r\nICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgdmFs\r\naWduPSJ0b3AiIGNsYXNzPSJtY25UZXh0Q29udGVudCIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1y\r\ndWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyB3b3JkLWJyZWFrOiBicmVhay13b3JkOyBjb2xvcjogIzBjMGMxNDsg\r\nZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZw\r\neDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBsZWZ0OyBwYWRkaW5nLXRvcDogOHB4\r\nOyBwYWRkaW5nLWJvdHRvbTogMTJweDsgcGFkZGluZy1yaWdodDogMzJweDsgcGFkZGluZy1sZWZ0\r\nOiAzMnB4OyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJtY25U\r\nZXh0Q29udGVudENvbnRhaW5lciIgc3R5bGU9InBhZGRpbmc6IDBweDsgbXNvLWxpbmUtaGVpZ2h0\r\nLXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7IGNvbG9yOiAjMGMwYzE0OyBmb250LWZhbWlseTogQXJpYWwsIEhl\r\nbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdodDogMS41ZW07\r\nIHRleHQtYWxpZ246IGxlZnQ7IG1hcmdpbjogMTJweCAwcHg7Ij5XaXRoIFByb3RvbiBEcml2ZeKA\r\nmXMgZW5kLXRvLWVuZCBlbmNyeXB0aW9uLCB5b3VyIGZpbGVzIGFyZSBlbnRpcmVseSB1bmRlciB5\r\nb3VyIGNvbnRyb2wgYW5kIG5ldmVyIHVzZWQgZm9yIHByb2ZpbGluZy4gJm5ic3A7PGEgdGFyZ2V0\r\nPSJfYmxhbmsiIGhyZWY9Imh0dHBzOi8vcHJvdG9uLm1lL3NlY3VyaXR5L2VuZC10by1lbmQtZW5j\r\ncnlwdGlvbiIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBsaW5lLWhl\r\naWdodDogaW5oZXJpdDsgY29sb3I6ICM2ZDRhZmY7IGZvbnQtd2VpZ2h0OiBpbmhlcml0OyB0ZXh0\r\nLWRlY29yYXRpb246IHVuZGVybGluZTsiPkxlYXJuIG1vcmUgJmd0OzwvYT48L3A+ICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0K\r\nICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgIDwvdGFibGU+DQog\r\nICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgICAgIDwvdGQ+DQogICAg\r\nICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+\r\nDQogICAgICAgICAgICAgICAgPC90cj48L3RhYmxlPg0KICAgICAgICAgICAgICAgIDwhW2VuZGlm\r\nXS0tPg0KICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgPC90cj4NCiAgICA8L3Rib2R5Pg0KPC90\r\nYWJsZT4NCjx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIg\r\nd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25UZXh0QmxvY2siIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7\r\nIGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRh\r\nYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgPHRib2R5IGNsYXNzPSJtY25UZXh0QmxvY2tPdXRl\r\nciI+DQogICAgICAgIDx0cj4NCiAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1j\r\nblRleHRCbG9ja0lubmVyIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1t\r\ncy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIj4NCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAgICAgPHRhYmxl\r\nIGFsaWduPSJsZWZ0IiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIwIiBjZWxscGFkZGluZz0iMCIg\r\nd2lkdGg9IjEwMCUiIHN0eWxlPSJ3aWR0aDoxMDAlOyI+PHRyPg0KICAgICAgICAgICAgICAgIDwh\r\nW2VuZGlmXS0tPg0KDQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAg\r\nICAgIDx0ZCB2YWxpZ249InRvcCIgd2lkdGg9IjYwMCIgc3R5bGU9IndpZHRoOjYwMHB4OyI+DQog\r\nICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICAgICAgPHRhYmxlIGFsaWdu\r\nPSJsZWZ0IiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9\r\nIjEwMCUiIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIgc3R5bGU9Im1heC13aWR0aDog\r\nMTAwJTsgbWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFi\r\nbGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAg\r\nICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dENvbnRlbnQi\r\nIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgd29yZC1icmVhazogYnJl\r\nYWstd29yZDsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBz\r\nYW5zLXNlcmlmOyBmb250LXNpemU6IDE2cHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgdGV4dC1hbGln\r\nbjogbGVmdDsgcGFkZGluZy10b3A6IDhweDsgcGFkZGluZy1ib3R0b206IDEycHg7IHBhZGRpbmct\r\ncmlnaHQ6IDMycHg7IHBhZGRpbmctbGVmdDogMzJweDsiPg0KICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICA8cCBjbGFzcz0ibWNuVGV4dENvbnRlbnRDb250YWluZXIiIHN0eWxlPSJwYWRk\r\naW5nOiAwcHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBjb2xvcjogIzBjMGMx\r\nNDsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTog\r\nMTZweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBsZWZ0OyBtYXJnaW46IDEycHgg\r\nMHB4OyI+VGhhbmtzIGZvciBzdXBwb3J0aW5nIGEgYmV0dGVyIGludGVybmV0IHdoZXJlIHByaXZh\r\nY3kgaXMgdGhlIGRlZmF1bHQsPC9wPjxwIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIg\r\nc3R5bGU9InBhZGRpbmc6IDBweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGNv\r\nbG9yOiAjMGMwYzE0OyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsg\r\nZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGxlZnQ7IG1h\r\ncmdpbjogMTJweCAwcHg7Ij5TdGF5IHNlY3VyZSw8YnI+VGhlIFByb3RvbiBEcml2ZSB0ZWFtPC9w\r\nPiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAg\r\nICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICA8\r\nL3RhYmxlPg0KICAgICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8\r\nL3RkPg0KICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgICAgICAgICAgPCEt\r\nLVtpZiBtc29dPg0KICAgICAgICAgICAgICAgIDwvdHI+PC90YWJsZT4NCiAgICAgICAgICAgICAg\r\nICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgIDwvdHI+DQogICAgPC90\r\nYm9keT4NCjwvdGFibGU+DQogICAgPC90ZD4NCjwvdHI+PHRyPg0KICAgIDx0ZCB2YWxpZ249InRv\r\ncCIgaWQ9InRlbXBsYXRlRm9vdGVyIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0\r\nbHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IGJhY2tncm91bmQtY29sb3I6ICNmZmZmZmY7IGJhY2tncm91bmQtaW1hZ2U6IG5vbmU7\r\nIGJhY2tncm91bmQtcmVwZWF0OiBuby1yZXBlYXQ7IGJhY2tncm91bmQtcG9zaXRpb246IGNlbnRl\r\ncjsgYmFja2dyb3VuZC1zaXplOiBjb3ZlcjsgYm9yZGVyLXRvcDogMDsgYm9yZGVyLWJvdHRvbTog\r\nMDsgcGFkZGluZy10b3A6IDE2cHg7IHBhZGRpbmctYm90dG9tOiAxNnB4OyBib3JkZXItcmFkaXVz\r\nOiAwIDAgMTZweCAxNnB4OyI+DQogICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5n\r\nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25EaXZpZGVyQmxvY2si\r\nIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10\r\nYWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyB0YWJsZS1sYXlvdXQ6\r\nIGZpeGVkOyI+DQogICAgPHRib2R5IGNsYXNzPSJtY25EaXZpZGVyQmxvY2tPdXRlciI+DQogICAg\r\nICAgIDx0cj4NCiAgICAgICAgICAgIDx0ZCBjbGFzcz0ibWNuRGl2aWRlckJsb2NrSW5uZXIiIHN0\r\neWxlPSJtaW4td2lkdGg6IDEwMCU7IHBhZGRpbmc6IDAgMzJweCAxNnB4IDMycHg7IG1zby1saW5l\r\nLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtp\r\ndC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPHRhYmxlIGNsYXNz\r\nPSJtY25EaXZpZGVyQ29udGVudCIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNp\r\nbmc9IjAiIHdpZHRoPSIxMDAlIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItdG9wOiAx\r\ncHggc29saWQgI0Y1RjRGMjsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxz\r\ncGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAg\r\nICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgIDx0ZCBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1t\r\ncy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4+PC9zcGFuPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3Ry\r\nPg0KICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgIDwvdGFibGU+\r\nDQogICAgICAgICAgICAgICAgPCEtLQ0KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0ibWNuRGl2\r\naWRlckJsb2NrSW5uZXIiIHN0eWxlPSJwYWRkaW5nOiAzMnB4OyI+DQogICAgICAgICAgICAgICAg\r\nPGhyIGNsYXNzPSJtY25EaXZpZGVyQ29udGVudCIgc3R5bGU9ImJvcmRlci1ib3R0b20tY29sb3I6\r\nbm9uZTsgYm9yZGVyLWxlZnQtY29sb3I6bm9uZTsgYm9yZGVyLXJpZ2h0LWNvbG9yOm5vbmU7IGJv\r\ncmRlci1ib3R0b20td2lkdGg6MDsgYm9yZGVyLWxlZnQtd2lkdGg6MDsgYm9yZGVyLXJpZ2h0LXdp\r\nZHRoOjA7IG1hcmdpbi10b3A6MDsgbWFyZ2luLXJpZ2h0OjA7IG1hcmdpbi1ib3R0b206MDsgbWFy\r\nZ2luLWxlZnQ6MDsiIC8+DQogICAgICAgICAgICAgICAgLS0+DQogICAgICAgICAgICA8L3RkPg0K\r\nICAgICAgICA8L3RyPg0KICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0KPHRhYmxlIGJvcmRlcj0iMCIg\r\nY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRl\r\neHRCbG9jayIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBz\r\nZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAg\r\nICA8dGJvZHkgY2xhc3M9Im1jblRleHRCbG9ja091dGVyIj4NCiAgICA8dHI+DQogICAgICAgIDx0\r\nZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jblRleHRCbG9ja0lubmVyIiBzdHlsZT0ibXNvLWxpbmUt\r\naGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAg\r\nICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIw\r\nIiBjZWxscGFkZGluZz0iMCIgd2lkdGg9IjEwMCUiIHN0eWxlPSJ3aWR0aDoxMDAlOyI+DQogICAg\r\nICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgICAg\r\nIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgd2lkdGg9IjYwMCIg\r\nc3R5bGU9IndpZHRoOjYwMHB4OyI+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAg\r\nICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxs\r\nc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIg\r\nc3R5bGU9Im1heC13aWR0aDogMTAwJTsgbWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6\r\nIGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsiPg0KICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICA8dHI+DQogICAg\r\nICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jblRleHRDb250ZW50IiBz\r\ndHlsZT0icGFkZGluZy10b3A6IDI0cHg7IHBhZGRpbmctcmlnaHQ6IDMycHg7IHBhZGRpbmctYm90\r\ndG9tOiAwOyBwYWRkaW5nLWxlZnQ6IDMycHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5\r\nOyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyB3b3JkLWJyZWFrOiBicmVhay13b3JkOyBjb2xvcjogIzcwNmQ2YjsgZm9udC1mYW1pbHk6\r\nIEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTRweDsgbGluZS1oZWln\r\naHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBjZW50ZXI7Ij5Db25uZWN0IHdpdGggdGhlIFByb3RvbiZu\r\nYnNwO2NvbW11bml0eTwvdGQ+DQogICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAg\r\nICA8L3Rib2R5Pg0KICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgIDwhLS1baWYgbXNv\r\nXT4NCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAg\r\nICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgIDwvdGFi\r\nbGU+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgPC90ZD4NCiAgICA8L3RyPg0K\r\nICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0KDQogICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxw\r\nYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25Gb2xsb3dC\r\nbG9jayIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsg\r\nbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAg\r\nICAgICAgIDx0Ym9keSBjbGFzcz0ibWNuRm9sbG93QmxvY2tPdXRlciI+DQogICAgICAgICAgICAg\r\nICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJ0\r\nb3AiIGNsYXNzPSJtY25Gb2xsb3dCbG9ja0lubmVyIiBzdHlsZT0icGFkZGluZzogMTZweCAxNnB4\r\nIDA7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAg\r\nICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAi\r\nIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuRm9sbG93Q29udGVudENvbnRhaW5lciIgc3R5bGU9Im1p\r\nbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFj\r\nZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiBzdHls\r\nZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIg\r\nY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuRm9sbG93Q29udGVudCIgc3R5\r\nbGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxl\r\nLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249\r\nInRvcCIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0YWJsZSBh\r\nbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIg\r\nc3R5bGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsg\r\nbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtp\r\ndC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJ0b3AiIHN0eWxlPSJtc28tbGluZS1o\r\nZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHNwYWNp\r\nbmc9IjAiIGNlbGxwYWRkaW5nPSIwIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgIDwhW2VuZGlmXS0tPg0KDQoNCiAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICA8dGQg\r\nYWxpZ249ImNlbnRlciIgdmFsaWduPSJ0b3AiPg0KICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAg\r\nICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxz\r\ncGFjaW5nPSIwIiBzdHlsZT0iZGlzcGxheTogaW5saW5lOyBib3JkZXItY29sbGFwc2U6IGNvbGxh\r\ncHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRl\r\neHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0K\r\nICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgIDx0\r\nZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jbkZvbGxvd0NvbnRlbnRJdGVtQ29udGFpbmVyIiBzdHls\r\nZT0icGFkZGluZy10b3A6IDhweDsgcGFkZGluZy1yaWdodDogNHB4OyBwYWRkaW5nLWJvdHRvbTog\r\nOHB4OyBwYWRkaW5nLWxlZnQ6IDRweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1t\r\ncy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIj4NCiAgICAgICAgICAgICAgICAgICAgPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAi\r\nIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jbkZvbGxvd0NvbnRlbnRJdGVt\r\nIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0\r\nOyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Vi\r\na2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0\r\nYm9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJtaWRkbGUiIHN0eWxlPSJtc28tbGlu\r\nZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJr\r\naXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2Vs\r\nbHNwYWNpbmc9IjAiIHdpZHRoPSIiIHN0eWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBt\r\nc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249Im1pZGRsZSIgd2lkdGg9IjM1IiBjbGFz\r\ncz0ibWNuRm9sbG93SWNvbkNvbnRlbnQiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhh\r\nY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsiPg0KDQogICAgICAgIDxhIGhyZWY9Imh0dHBzOi8vdHdpdHRlci5jb20vUHJvdG9u\r\nUHJpdmFjeSIgdGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhh\r\nY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgbGluZS1oZWlnaHQ6IGluaGVyaXQ7Ij48aW1nIHNyYz0iY2lkOmIwMDY3OTllYzkz\r\nOWU2YjEzMmExQG5ld3MucHJvdG9uLm1lIiBhbHQ9IlR3aXR0ZXIiIGhlaWdodD0iMzUiIHdpZHRo\r\nPSIzNSIgY2xhc3M9InNvY2lhbC1pY29uIiBzdHlsZT0iZGlzcGxheTogYmxvY2s7IGJvcmRlcjog\r\nMDsgaGVpZ2h0OiBhdXRvOyBvdXRsaW5lOiBub25lOyB0ZXh0LWRlY29yYXRpb246IHVuZGVybGlu\r\nZTsgLW1zLWludGVycG9sYXRpb24tbW9kZTogYmljdWJpYzsgZm9udC1mYW1pbHk6IEFyaWFsLCBI\r\nZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTJweDsgbGluZS1oZWlnaHQ6IDEuNWVt\r\nOyBjb2xvcjogIzcwNmQ2YjsgZm9udC13ZWlnaHQ6IG5vcm1hbDsiPjwvYT4NCg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90YWJsZT4NCiAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAg\r\nPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAg\r\nICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgIDwvdHI+DQog\r\nICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICA8L3RhYmxlPg0KICAgICAgICA8IS0tW2lmIG1z\r\nb10+DQogICAgICAgIDwvdGQ+DQogICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgIDwhLS1b\r\naWYgbXNvXT4NCiAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0idG9wIj4NCiAgICAg\r\nICAgPCFbZW5kaWZdLS0+DQogICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAi\r\nIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgc3R5bGU9ImRpc3BsYXk6IGlubGluZTsg\r\nYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFi\r\nbGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgIDx0\r\ncj4NCiAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJtY25Gb2xsb3dDb250\r\nZW50SXRlbUNvbnRhaW5lciIgc3R5bGU9InBhZGRpbmctdG9wOiA4cHg7IHBhZGRpbmctcmlnaHQ6\r\nIDRweDsgcGFkZGluZy1ib3R0b206IDhweDsgcGFkZGluZy1sZWZ0OiA0cHg7IG1zby1saW5lLWhl\r\naWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgIDx0YWJsZSBib3Jk\r\nZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNz\r\nPSJtY25Gb2xsb3dDb250ZW50SXRlbSIgc3R5bGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7\r\nIG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAg\r\nICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICA8dHI+\r\nDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0i\r\nbWlkZGxlIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0i\r\nMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iIiBzdHlsZT0iYm9yZGVy\r\nLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNw\r\nYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0Ym9k\r\neT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJt\r\naWRkbGUiIHdpZHRoPSIzNSIgY2xhc3M9Im1jbkZvbGxvd0ljb25Db250ZW50IiBzdHlsZT0ibXNv\r\nLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAt\r\nd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCg0KICAgICAgICA8YSBocmVmPSJodHRw\r\nczovL3JlZGRpdC5jb20vci9Qcm90b25NYWlsIiB0YXJnZXQ9Il9ibGFuayIgc3R5bGU9Im1zby1s\r\naW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdl\r\nYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBsaW5lLWhlaWdodDogaW5oZXJpdDsiPjxpbWcg\r\nc3JjPSJjaWQ6YjViZTYzMTNhMTk3NmQ0MDdjZDdAbmV3cy5wcm90b24ubWUiIGFsdD0iUmVkZGl0\r\nIiBoZWlnaHQ9IjM1IiB3aWR0aD0iMzUiIGNsYXNzPSJzb2NpYWwtaWNvbiIgc3R5bGU9ImRpc3Bs\r\nYXk6IGJsb2NrOyBib3JkZXI6IDA7IGhlaWdodDogYXV0bzsgb3V0bGluZTogbm9uZTsgdGV4dC1k\r\nZWNvcmF0aW9uOiB1bmRlcmxpbmU7IC1tcy1pbnRlcnBvbGF0aW9uLW1vZGU6IGJpY3ViaWM7IGZv\r\nbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDEycHg7\r\nIGxpbmUtaGVpZ2h0OiAxLjVlbTsgY29sb3I6ICM3MDZkNmI7IGZvbnQtd2VpZ2h0OiBub3JtYWw7\r\nIj48L2E+DQoNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAg\r\nICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3Rib2R5\r\nPg0KICAgICAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgIDwvdGQ+DQog\r\nICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgPC90YWJsZT4N\r\nCiAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICA8L3RkPg0KICAgICAgICA8IVtlbmRpZl0t\r\nLT4NCg0KICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2\r\nYWxpZ249InRvcCI+DQogICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICA8dGFibGUgYWxpZ249\r\nImNlbnRlciIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHN0eWxl\r\nPSJkaXNwbGF5OiBpbmxpbmU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1s\r\nc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICA8dGJv\r\nZHk+DQogICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBj\r\nbGFzcz0ibWNuRm9sbG93Q29udGVudEl0ZW1Db250YWluZXIiIHN0eWxlPSJwYWRkaW5nLXRvcDog\r\nOHB4OyBwYWRkaW5nLXJpZ2h0OiA0cHg7IHBhZGRpbmctYm90dG9tOiA4cHg7IHBhZGRpbmctbGVm\r\ndDogNHB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAg\r\nICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAi\r\nIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuRm9sbG93Q29udGVudEl0ZW0iIHN0eWxlPSJib3JkZXIt\r\nY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3Bh\r\nY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBhbGln\r\nbj0iY2VudGVyIiB2YWxpZ249Im1pZGRsZSIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBl\r\neGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0YWJsZSBhbGln\r\nbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lk\r\ndGg9IiIgc3R5bGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6\r\nIDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGFsaWdu\r\nPSJjZW50ZXIiIHZhbGlnbj0ibWlkZGxlIiB3aWR0aD0iMzUiIGNsYXNzPSJtY25Gb2xsb3dJY29u\r\nQ29udGVudCIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQoNCiAg\r\nICAgICAgPGEgaHJlZj0iaHR0cHM6Ly93d3cubGlua2VkaW4uY29tL2NvbXBhbnkvcHJvdG9ucHJp\r\ndmFjeS8iIHRhcmdldD0iX2JsYW5rIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0\r\nbHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IGxpbmUtaGVpZ2h0OiBpbmhlcml0OyI+PGltZyBzcmM9ImNpZDphNDAyZDhkYzU4NmYw\r\nOGNlYzIxYUBuZXdzLnByb3Rvbi5tZSIgYWx0PSJMaW5rZWRJbiIgaGVpZ2h0PSIzNSIgd2lkdGg9\r\nIjM1IiBjbGFzcz0ic29jaWFsLWljb24iIHN0eWxlPSJkaXNwbGF5OiBibG9jazsgYm9yZGVyOiAw\r\nOyBoZWlnaHQ6IGF1dG87IG91dGxpbmU6IG5vbmU7IHRleHQtZGVjb3JhdGlvbjogdW5kZXJsaW5l\r\nOyAtbXMtaW50ZXJwb2xhdGlvbi1tb2RlOiBiaWN1YmljOyBmb250LWZhbWlseTogQXJpYWwsIEhl\r\nbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxMnB4OyBsaW5lLWhlaWdodDogMS41ZW07\r\nIGNvbG9yOiAjNzA2ZDZiOyBmb250LXdlaWdodDogbm9ybWFsOyI+PC9hPg0KDQogICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICA8\r\nL3RyPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICAg\r\nICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgPC90cj4NCiAg\r\nICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgIDwvdGFibGU+DQogICAgICAgIDwhLS1baWYgbXNv\r\nXT4NCiAgICAgICAgPC90ZD4NCiAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgPCEtLVtp\r\nZiBtc29dPg0KICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJ0b3AiPg0KICAgICAg\r\nICA8IVtlbmRpZl0tLT4NCiAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIg\r\nY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBzdHlsZT0iZGlzcGxheTogaW5saW5lOyBi\r\nb3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJs\r\nZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgPHRy\r\nPg0KICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jbkZvbGxvd0NvbnRl\r\nbnRJdGVtQ29udGFpbmVyIiBzdHlsZT0icGFkZGluZy10b3A6IDhweDsgcGFkZGluZy1yaWdodDog\r\nNHB4OyBwYWRkaW5nLWJvdHRvbTogOHB4OyBwYWRkaW5nLWxlZnQ6IDRweDsgbXNvLWxpbmUtaGVp\r\nZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRl\r\neHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgPHRhYmxlIGJvcmRl\r\ncj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9\r\nIm1jbkZvbGxvd0NvbnRlbnRJdGVtIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsg\r\nbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAg\r\nICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4N\r\nCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJt\r\naWRkbGUiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIw\r\nIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIiIHN0eWxlPSJib3JkZXIt\r\nY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3Bh\r\nY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRib2R5\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249Im1p\r\nZGRsZSIgd2lkdGg9IjM1IiBjbGFzcz0ibWNuRm9sbG93SWNvbkNvbnRlbnQiIHN0eWxlPSJtc28t\r\nbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13\r\nZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KDQogICAgICAgIDxhIGhyZWY9Imh0dHBz\r\nOi8vZmFjZWJvb2suY29tL1Byb3RvbiIgdGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJtc28tbGluZS1o\r\nZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsgbGluZS1oZWlnaHQ6IGluaGVyaXQ7Ij48aW1nIHNyYz0i\r\nY2lkOmEyN2I3ZTJjNzliOGQwMmRiMWYyQG5ld3MucHJvdG9uLm1lIiBhbHQ9IkZhY2Vib29rIiBo\r\nZWlnaHQ9IjM1IiB3aWR0aD0iMzUiIGNsYXNzPSJzb2NpYWwtaWNvbiIgc3R5bGU9ImRpc3BsYXk6\r\nIGJsb2NrOyBib3JkZXI6IDA7IGhlaWdodDogYXV0bzsgb3V0bGluZTogbm9uZTsgdGV4dC1kZWNv\r\ncmF0aW9uOiB1bmRlcmxpbmU7IC1tcy1pbnRlcnBvbGF0aW9uLW1vZGU6IGJpY3ViaWM7IGZvbnQt\r\nZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDEycHg7IGxp\r\nbmUtaGVpZ2h0OiAxLjVlbTsgY29sb3I6ICM3MDZkNmI7IGZvbnQtd2VpZ2h0OiBub3JtYWw7Ij48\r\nL2E+DQoNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAg\r\nICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0K\r\nICAgICAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgIDwvdGQ+DQogICAg\r\nICAgICAgICA8L3RyPg0KICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgPC90YWJsZT4NCiAg\r\nICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICA8L3RkPg0KICAgICAgICA8IVtlbmRpZl0tLT4N\r\nCg0KICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxp\r\nZ249InRvcCI+DQogICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICA8dGFibGUgYWxpZ249ImNl\r\nbnRlciIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHN0eWxlPSJk\r\naXNwbGF5OiBpbmxpbmU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3Bh\r\nY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICA8dGJvZHk+\r\nDQogICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFz\r\ncz0ibWNuRm9sbG93Q29udGVudEl0ZW1Db250YWluZXIiIHN0eWxlPSJwYWRkaW5nLXRvcDogOHB4\r\nOyBwYWRkaW5nLXJpZ2h0OiA0cHg7IHBhZGRpbmctYm90dG9tOiA4cHg7IHBhZGRpbmctbGVmdDog\r\nNHB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAg\r\nICAgICA8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdp\r\nZHRoPSIxMDAlIiBjbGFzcz0ibWNuRm9sbG93Q29udGVudEl0ZW0iIHN0eWxlPSJib3JkZXItY29s\r\nbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6\r\nIDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAg\r\nICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0i\r\nY2VudGVyIiB2YWxpZ249Im1pZGRsZSIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFj\r\ndGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0i\r\nY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9\r\nIiIgc3R5bGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBw\r\ndDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdl\r\nYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\ndHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGFsaWduPSJj\r\nZW50ZXIiIHZhbGlnbj0ibWlkZGxlIiB3aWR0aD0iMzUiIGNsYXNzPSJtY25Gb2xsb3dJY29uQ29u\r\ndGVudCIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQoNCiAgICAg\r\nICAgPGEgaHJlZj0iaHR0cHM6Ly9pbnN0YWdyYW0uY29tL3Byb3RvbnByaXZhY3kiIHRhcmdldD0i\r\nX2JsYW5rIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGxpbmUtaGVp\r\nZ2h0OiBpbmhlcml0OyI+PGltZyBzcmM9ImNpZDpmMTY4NTIyYzQ0ODE4YjhjNzljYkBuZXdzLnBy\r\nb3Rvbi5tZSIgYWx0PSJJbnN0YWdyYW0iIGhlaWdodD0iMzUiIHdpZHRoPSIzNSIgY2xhc3M9InNv\r\nY2lhbC1pY29uIiBzdHlsZT0iZGlzcGxheTogYmxvY2s7IGJvcmRlcjogMDsgaGVpZ2h0OiBhdXRv\r\nOyBvdXRsaW5lOiBub25lOyB0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTsgLW1zLWludGVycG9s\r\nYXRpb24tbW9kZTogYmljdWJpYzsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMt\r\nc2VyaWY7IGZvbnQtc2l6ZTogMTJweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyBjb2xvcjogIzcwNmQ2\r\nYjsgZm9udC13ZWlnaHQ6IG5vcm1hbDsiPjwvYT4NCg0KICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAg\r\nICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQog\r\nICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICA8L3Ri\r\nb2R5Pg0KICAgICAgICA8L3RhYmxlPg0KICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgIDwv\r\ndGQ+DQogICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAg\r\nICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0idG9wIj4NCiAgICAgICAgPCFbZW5kaWZdLS0+\r\nDQogICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIw\r\nIiBjZWxsc3BhY2luZz0iMCIgc3R5bGU9ImRpc3BsYXk6IGlubGluZTsgYm9yZGVyLWNvbGxhcHNl\r\nOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7\r\nIC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7Ij4NCiAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAg\r\nICAgICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50SXRlbUNvbnRhaW5l\r\nciIgc3R5bGU9InBhZGRpbmctdG9wOiA4cHg7IHBhZGRpbmctcmlnaHQ6IDRweDsgcGFkZGluZy1i\r\nb3R0b206IDhweDsgcGFkZGluZy1sZWZ0OiA0cHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFj\r\ndGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRk\r\naW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25Gb2xsb3dDb250\r\nZW50SXRlbSIgc3R5bGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3Bh\r\nY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAg\r\nICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0ibWlkZGxlIiBzdHlsZT0i\r\nbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9\r\nIjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xs\r\nYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4N\r\nCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJtaWRkbGUiIHdpZHRoPSIz\r\nNSIgY2xhc3M9Im1jbkZvbGxvd0ljb25Db250ZW50IiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1\r\nbGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7Ij4NCg0KICAgICAgICA8YSBocmVmPSJodHRwczovL3Byb3Rvbi5tZS9i\r\nbG9nIiB0YXJnZXQ9Il9ibGFuayIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5\r\nOyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyBsaW5lLWhlaWdodDogaW5oZXJpdDsiPjxpbWcgc3JjPSJjaWQ6ODRiOThkZDMyMDZiNGZi\r\nYmYzYzBAbmV3cy5wcm90b24ubWUiIGFsdD0iQmxvZyIgaGVpZ2h0PSIzNSIgd2lkdGg9IjM1IiBj\r\nbGFzcz0ic29jaWFsLWljb24iIHN0eWxlPSJkaXNwbGF5OiBibG9jazsgYm9yZGVyOiAwOyBoZWln\r\naHQ6IGF1dG87IG91dGxpbmU6IG5vbmU7IHRleHQtZGVjb3JhdGlvbjogdW5kZXJsaW5lOyAtbXMt\r\naW50ZXJwb2xhdGlvbi1tb2RlOiBiaWN1YmljOyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGlj\r\nYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxMnB4OyBsaW5lLWhlaWdodDogMS41ZW07IGNvbG9y\r\nOiAjNzA2ZDZiOyBmb250LXdlaWdodDogbm9ybWFsOyI+PC9hPg0KDQogICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Ri\r\nb2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgPC90\r\nYWJsZT4NCiAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgPC90cj4NCiAgICAgICAg\r\nICAgIDwvdGJvZHk+DQogICAgICAgIDwvdGFibGU+DQogICAgICAgIDwhLS1baWYgbXNvXT4NCiAg\r\nICAgICAgPC90ZD4NCiAgICAgICAgPCFbZW5kaWZdLS0+DQoNCg0KICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPCEt\r\nLVtpZiBtc29dPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGFibGU+\r\nDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\nL3RyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90\r\nZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90YWJsZT4N\r\nCiAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAg\r\nICAgICAgPC90Ym9keT4NCiAgICAgICAgPC90YWJsZT4NCg0KPHRhYmxlIGJvcmRlcj0iMCIgY2Vs\r\nbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRC\r\nbG9jayIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsg\r\nbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICA8\r\ndGJvZHkgY2xhc3M9Im1jblRleHRCbG9ja091dGVyIj4NCiAgICA8dHI+DQogICAgICAgIDx0ZCB2\r\nYWxpZ249InRvcCIgY2xhc3M9Im1jblRleHRCbG9ja0lubmVyIiBzdHlsZT0ibXNvLWxpbmUtaGVp\r\nZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRl\r\neHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAg\r\nICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIwIiBj\r\nZWxscGFkZGluZz0iMCIgd2lkdGg9IjEwMCUiIHN0eWxlPSJ3aWR0aDoxMDAlOyI+DQogICAgICAg\r\nICAgICAgICAgPHRyPg0KICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgICAgIDwh\r\nLS1baWYgbXNvXT4NCiAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgd2lkdGg9IjYwMCIgc3R5\r\nbGU9IndpZHRoOjYwMHB4OyI+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAg\r\nIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3Bh\r\nY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIgc3R5\r\nbGU9Im1heC13aWR0aDogMTAwJTsgbWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNv\r\nbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1z\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsi\r\nPg0KICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICA8dHI+DQogICAgICAg\r\nICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jblRleHRDb250ZW50IiBzdHls\r\nZT0icGFkZGluZy10b3A6IDE2cHg7IHBhZGRpbmctcmlnaHQ6IDMycHg7IHBhZGRpbmctYm90dG9t\r\nOiAwOyBwYWRkaW5nLWxlZnQ6IDMycHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAt\r\nbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyB3b3JkLWJyZWFrOiBicmVhay13b3JkOyBjb2xvcjogIzcwNmQ2YjsgZm9udC1mYW1pbHk6IEFy\r\naWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTRweDsgbGluZS1oZWlnaHQ6\r\nIDEuNWVtOyB0ZXh0LWFsaWduOiBjZW50ZXI7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxh\r\nIGRhdGEtdW5zdWJzY3JpYmUtbGluaz0icHJvdG9uLm1lIiByZWw9Im5vb3BlbmVyIG5vcmVmZXJy\r\nZXIiIGhyZWY9Imh0dHBzOi8vYWNjb3VudC5wcm90b24ubWUvbWFpbC9kYXNoYm9hcmQjZW1haWwt\r\nc3Vic2NyaXB0aW9uIiB0YXJnZXQ9Il9ibGFuayIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxl\r\nOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyBsaW5lLWhlaWdodDogaW5oZXJpdDsgY29sb3I6ICM3MDZkNmI7IGZvbnQt\r\nd2VpZ2h0OiBub3JtYWw7IHRleHQtZGVjb3JhdGlvbjogdW5kZXJsaW5lOyI+VXBkYXRlIHlvdXIg\r\nZW1haWwgcHJlZmVyZW5jZXMgb3IgdW5zdWJzY3JpYmU8L2E+DQogICAgICAgICAgICAgICAgICAg\r\nIDwvdGQ+DQogICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICA8L3Rib2R5Pg0K\r\nICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAg\r\nICAgIDwvdGQ+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgPCEtLVtp\r\nZiBtc29dPg0KICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAg\r\nICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgPC90ZD4NCiAgICA8L3RyPg0KICAgIDwvdGJvZHk+\r\nDQo8L3RhYmxlPg0KPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5n\r\nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRCbG9jayIgc3R5bGU9Im1pbi13aWR0aDog\r\nMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBt\r\nc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICA8dGJvZHkgY2xhc3M9Im1jblRleHRCbG9j\r\na091dGVyIj4NCiAgICA8dHI+DQogICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jblRl\r\neHRCbG9ja0lubmVyIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4N\r\nCiAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2Vu\r\ndGVyIiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIwIiBjZWxscGFkZGluZz0iMCIgd2lkdGg9IjEw\r\nMCUiIHN0eWxlPSJ3aWR0aDoxMDAlOyI+DQogICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAg\r\nICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAg\r\nIDx0ZCB2YWxpZ249InRvcCIgd2lkdGg9IjYwMCIgc3R5bGU9IndpZHRoOjYwMHB4OyI+DQogICAg\r\nICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBi\r\nb3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNs\r\nYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIgc3R5bGU9Im1heC13aWR0aDogMTAwJTsgbWlu\r\nLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNl\r\nOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgIDx0Ym9k\r\neT4NCiAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249\r\nInRvcCIgY2xhc3M9Im1jblRleHRDb250ZW50IiBzdHlsZT0icGFkZGluZy10b3A6IDE2cHg7IHBh\r\nZGRpbmctcmlnaHQ6IDMycHg7IHBhZGRpbmctYm90dG9tOiAwOyBwYWRkaW5nLWxlZnQ6IDMycHg7\r\nIG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyB3b3JkLWJyZWFrOiBicmVhay13b3Jk\r\nOyBjb2xvcjogIzcwNmQ2YjsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2Vy\r\naWY7IGZvbnQtc2l6ZTogMTRweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBjZW50\r\nZXI7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIHN0eWxlPSJtYXJnaW46IDEycHggMDsg\r\ncGFkZGluZzogMDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij7CqSAyMDI1IFBy\r\nb3RvbiBBRyBTd2l0emVybGFuZDxicj5Sb3V0ZSBkZSBsYSBHYWxhaXNlJm5ic3A7MzIsIDEyMjgm\r\nbmJzcDtQbGFuLWxlcy1PdWF0ZXMsIEdlbmV2YSwmbmJzcDtTd2l0emVybGFuZDwvcD4NCiAgICAg\r\nICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAg\r\nICAgIDwvdGJvZHk+DQogICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgPCEtLVtpZiBt\r\nc29dPg0KICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAg\r\nICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgPC90\r\nYWJsZT4NCiAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICA8L3RkPg0KICAgIDwvdHI+\r\nDQogICAgPC90Ym9keT4NCjwvdGFibGU+DQo8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0i\r\nMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuSW1hZ2VCbG9jayIgc3R5\r\nbGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNv\r\nLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBtaW4td2lkdGg6IDEwMCU7Ij4NCiAgICA8dGJvZHkgY2xh\r\nc3M9Im1jbkltYWdlQmxvY2tPdXRlciI+DQogICAgPHRyPg0KICAgICAgICA8dGQgdmFsaWduPSJ0\r\nb3AiIGNsYXNzPSJtY25JbWFnZUJsb2NrSW5uZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVs\r\nZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgcGFkZGluZzogMTZweDsiPg0KICAgICAgICAgICAgPHRhYmxlIGFsaWdu\r\nPSJjZW50ZXIiIHdpZHRoPSIxMDAlIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3Bh\r\nY2luZz0iMCIgY2xhc3M9Im1jbkltYWdlQ29udGVudENvbnRhaW5lciIgc3R5bGU9ImJvcmRlci1j\r\nb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFj\r\nZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyBtaW4td2lkdGg6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICA8dGJvZHk+DQog\r\nICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICA8dGQgY2xhc3M9Im1jbklt\r\nYWdlQ29udGVudCIgdmFsaWduPSJ0b3AiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhh\r\nY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgcGFkZGluZy1yaWdodDogMTZweDsgcGFkZGluZy1sZWZ0OiAxNnB4OyBwYWRkaW5n\r\nLXRvcDogMDsgcGFkZGluZy1ib3R0b206IDA7IHRleHQtYWxpZ246IGNlbnRlcjsiPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgPGltZyBhbGlnbj0iY2VudGVyIiBhbHQ9IiIgc3JjPSJjaWQ6MjYx\r\nYjhkNjFiMjBiNTg1NmNiNjZAbmV3cy5wcm90b24ubWUiIHdpZHRoPSIyNzYiIGNsYXNzPSJtY25S\r\nZXRpbmFJbWFnZSIgc3R5bGU9ImJvcmRlcjogMDsgaGVpZ2h0OiBhdXRvOyBvdXRsaW5lOiBub25l\r\nOyB0ZXh0LWRlY29yYXRpb246IG5vbmU7IC1tcy1pbnRlcnBvbGF0aW9uLW1vZGU6IGJpY3ViaWM7\r\nIG1heC13aWR0aDogNTUycHg7IHBhZGRpbmctYm90dG9tOiAwOyB2ZXJ0aWNhbC1hbGlnbjogYm90\r\ndG9tOyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXpl\r\nOiAxMnB4OyBsaW5lLWhlaWdodDogMS41ZW07IGRpc3BsYXk6IGlubGluZTsiPg0KICAgICAgICAg\r\nICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAg\r\nPC90Ym9keT4NCiAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgIDwvdGQ+DQogICAgPC90cj4N\r\nCiAgICA8L3Rib2R5Pg0KPC90YWJsZT4NCiAgICA8L3RkPg0KPC90cj4NCiAgICAgICAgICAgICAg\r\nICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgICAgICAgICA8IS0tW2lmIChndGUg\r\nbXNvIDkpfChJRSldPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICA8IS0tIC8vIEVORCBURU1QTEFURSAtLT4NCiAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAg\r\nICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgPC9jZW50\r\nZXI+DQogICAgPC9ib2R5Pg0KPC9odG1sPg0K\r\n\r\n--b2=_qt8P2C12rTLOH5SWDmCVrhMvSSJx92a5TqTsu3Ai5c\r\nContent-Type: image/png; name=logos-footer.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <261b8d61b20b5856cb66@news.proton.me>\r\nContent-Disposition: inline; filename=logos-footer.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAigAAABwCAMAAAADkXsEAAAABGdBTUEAALGPC/xhBQAAAAFzUkdC\r\nAK7OHOkAAAAJcEhZcwAAFiUAABYlAUlSJPAAAALfUExURUdwTIpy/YZp/rfc/KOc6Ydn+76K3WxJ\r\n/97I0ZBp//CJWbx+0b6l+o1v/ubH3y7ZzdVqlo5p/fO7m29P/sXM8qiO/vi7tL7O++l3e5Z3/4tp\r\n/8mz9eSr2LXu9bae/3df/pV3//jZ0L2q/te/+XaA/bXo9+GpufnSzjKj8NrC/+SGjNLE/9Roo6Rp\r\n5KGK/cRiqNxujzq619ep3Itk/Cyo8PnBycWIy2vZ4fJgxltp+O9/e0ed4rbt9cWHyuRyhDHO0DjA\r\n1CrgyrVau+tfyJt4/8GI/3BN/21K/3BN/3hN+rCS/3VS/55+/3JL/H9O+JZ1/5p5/7KZ/ref/oVR\r\n9UZ0/4tP8pFx/+C3/1Jm/6uM/7yl/6KC/4lp/6dT5qaH/0xt/1hg/z97/7ZW4HpZ/4Nl/39g/9ix\r\n/11a/8G//59S6bbs9TiC/65U4zKJ/7zj+GhQ/4JM7Ytw/5JQ7x2f/5lS2L1X3JhR7MCr/9Kr/7jX\r\n/762/4pO5mNV/8ym/5JP345Z8fK9zcVY2SuQ/3tL9O66z+a00/+7k7H28r/e/WFl9iWX/8Wg/+q3\r\n0biU/5df681Z1l1s87d612Re+L+a/8au8cKDzsbR/RWo/7yn9qWT/rdcuceJycnJ/5eA/86QxLF0\r\n3OGw1rFZwNZb0s27/6tu4L5fspF6//a/y8LY+/B8ctSXvtqr2ta76M617eevqMKa5p9T0tKm3qCM\r\n/qVp471+06xXxZ5k5/jb0t9cztHB/8Ww/02R5lGJ6eGnrrat/2dX+7/U/0mZ40Wj4Mqg4sViqqRV\r\nzVSB7Fd67sm2/6OC9Vp08ECu3L/K/6uJ8uh1f97B5PHU2NbH//GEY8tlopuH/+TH4LqU6qmc/zu6\r\n2O24oIhf/+rN3NFom9icubKP79lsktyhtK+k/+peyeFxiN7S//rCyadWyjXI0/GNVN1vjJDG+fHN\r\nynqu9abL//20h/ife5bk7NVyobFiylqj/52w+HnLP+kAAABGdFJOUwBnRH8QICD+IP+AMd6f3v7+\r\n397dON6AWYTPvpdj3n+Fi9e/yv2m05d63k1/hd+7pNlD3PW/65P32brk5MfX58+IiN6/v4D1Cm7r\r\n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\r\n\r\n--b2=_qt8P2C12rTLOH5SWDmCVrhMvSSJx92a5TqTsu3Ai5c\r\nContent-Type: image/png; name=link.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <84b98dd3206b4fbbf3c0@news.proton.me>\r\nContent-Disposition: inline; filename=link.png\r\n\r\n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\r\nHx/rAPwHlmSLrKlhoigAAAAASUVORK5CYII=\r\n\r\n--b2=_qt8P2C12rTLOH5SWDmCVrhMvSSJx92a5TqTsu3Ai5c\r\nContent-Type: image/png; name=instagram.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <f168522c44818b8c79cb@news.proton.me>\r\nContent-Disposition: inline; filename=instagram.png\r\n\r\n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\r\n\r\n--b2=_qt8P2C12rTLOH5SWDmCVrhMvSSJx92a5TqTsu3Ai5c\r\nContent-Type: image/png; name=facebook.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <a27b7e2c79b8d02db1f2@news.proton.me>\r\nContent-Disposition: inline; filename=facebook.png\r\n\r\n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\r\ncG0LAAAAAElFTkSuQmCC\r\n\r\n--b2=_qt8P2C12rTLOH5SWDmCVrhMvSSJx92a5TqTsu3Ai5c\r\nContent-Type: image/png; name=linkedin.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <a402d8dc586f08cec21a@news.proton.me>\r\nContent-Disposition: inline; filename=linkedin.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAFQAAABUCAYAAAAcaxDBAAAAAXNSR0IArs4c6QAAAARnQU1BAACx\r\njwv8YQUAAAAJcEhZcwAACxMAAAsTAQCanBgAAAbnSURBVHhe7Zx/aJVVGMef8ypy0eXudOai1Bmx\r\nDRo4/xHpB00UHAqlBIVBpkExSJhRJCn5oz80o2iDBZJ/6Ao0+8f5R6VgOEGt/MeJRq6IrtqPDZy7\r\ns4mb0D09z3ufwbzd933PeX/d987zgfGec+64932/9znP85xfFwwGg8FgMBgMBoPBUIDga8lJ1zTU\r\n4qXZkv82SbAWAMhaECKNbdQ+kQxImcVbz0ghL0IOesGyerP9VzL8ekkpqaAoIgm4RgrrOawWCqdL\r\nRoDsyYHVheL2cFvsxC5oOl2btlLT2qQUm/HTyQKjICNB7gSwTsdtubEJGpOQ9yIhiw94MCdER1zC\r\nTuFrpKTn1reJqVO70Se2oJgpbo4e+iwBS1HUNamK2dnRkcGL/EpkRGqhFGjQrx3AYnO+peSgKxDL\r\norTWyCzUtkqAL/Era+CmJJAWEjakKqrHRm8P/sBtoRKJoLPm1n+CQu60u1zSwHsSAlqmV8yGOyOD\r\np7k1NEIXdFZN3QEpRCtXE4xoRlFrUdRj3BAKofrQqrl1FzDwNHG1PJCyd2jgl8VcC4zF18CQZZad\r\nmATes33vIRFKl0/X1O3AO9vM1aJUznwAVix7GuoeexTGxu7C8K1/+JUkIJqmz6hO37k9eIIbfBO4\r\ny9vRXEA7V4uy5a1N0Pr6K7ao4xw6chS2bd+dKGGlhDezA32uz+JFIEHtPFNK9JvOIx8Sc8vbm7h2\r\nL2fOnYdnn1/PtQSAIysMqIuD5KmBfCgm7afcxJw/72FHMYmnnlgCT+JfYsBn4YGIb3wLita5AS+u\r\nM0SrWpZzyZnVK73/J2aa0Y25xgM3fAnKQ0oMRMGprJzJpeSAfnAHTeZwVQtfglpStuHFc/7y0k9X\r\nuOQM+dHEgV3fSk3zZaXagpJ1SgDq7p6cRbEuXXYW9dr1P+Hs9wkUFJFStPmxUj8W2uwWiAp5+dU3\r\nbOEKoXTJ6bVE4NNKtdOmqpr63/GitVxB0Z6i+UsvrEUhb9muYN9nXQlL7ouAadTQQF8V15TQEhS7\r\ne7OdKt1H8Pyp8hqVVpe3IKfkOycTtIjIRSW0LNRPd48DGtLSIGE8BRsevoW++S90LT/b9YBkhvr7\r\nFnLZE2VBOfckQbXobN9j+1Anig09vzjQiSIVz08PHzkKh786apdJxHdwaEvXYpCP/vrbk/Dhx52B\r\ngp+EsYXZ/ozScFRd0Afr1ghL5J9Eg97z37kKOuuh/6+Q3PzbOdXa+1En7EWB3OYIirF1+27Yt/9z\r\nrukhIbcx2//rQa66ou5DLUjMXKeumMTu97cqDYWLYUn1Z1cWVEhYxMWSsu7FtdpijvNpx557phBV\r\nyYGlHDd0onwigpGb+/CC/DJ9IbqgX1zARU/UBc1v3Cp7VrWs4JIGGiPDsrPQiVzHyL1vf5cdqOiq\r\nEsnt9Eq/20fS5RMFRfpFS5Zj9N5jl+nahPVDnFK5MX/eI1wKn7IUlHJRsspibHvPe52q8fHoNrOU\r\npaBu+SSJeebcj1yLHx1BY91n6UR+tsp9SHnZZQ6WqKzU9qHKz64uqL0Nu/QMD3tP+V37wz04OQ1r\r\nHZGg/OxlZ6EU2eNGAlzloifKgkoQym866RCyl0ueqFuoEMpvOumQ4gKXPNHp8iU7WVFyhFDeSq4s\r\nKG9PSYQfjZmMztYcHQulzVShbk4tByRIrZ6pJSiafjeX7iOsLi4ooSWovfqnkZNFwUz9pDwI1N0j\r\ntFBECtnBxZKgnZQHIH8aTw9tQWH0bnuprTQW7Ge0tE+JaAuazWaypbbSOBAAdAhXO6vRt1Bi8ltp\r\nJieEr63hvgS1rRRgF1cnHeQ7/VgnobVzpJB0Tf0pfAPXc5ytr613DCQ0FVdsbpOWiZ2gZY7xjQ5O\r\nNDY2wOqVzmtH35w46bbNUmunSCEBBfU+tFBWoBsLemgh0Dml0ZEbWTqISmcnuamsQTf2bnag7zhX\r\nfRH44Bed6k3NqK5CUZdyU1kiQOwaGuj7gKu+CeUkHYp6fHrFHPI75Xc0EUExu272X/F98mMigXxo\r\nIebwrN881AG6Mfq2uZp46F7DFJMI/bz8nZEb3amKOehSE/OzGEUREjpuDvSFfq4/dEEJjP49GKiG\r\nUdSlaAbJ+lUHSo0wmmMA0p74UCFUH1oI73qmQw6J2BeFQvbgI28Mkmd6Eamg46CwG/goY2mEzVvl\r\nrqBHt1WIpMsXgi6gF/3qMXww8q0NsbmB/MhnL4yNrcsO/hbLImMsFjoRcgN4ofNO0VlsXsgOGB1t\r\np4kcbo2F2AWdCIqLmUAO3YF4BqtBxc1ImTsGYkq37rJFmJRU0InYlpvLNWFm3ARSLEIzqxUOP3cp\r\n+ecu8cu4igLSBoyeKAONwWAwGAwGg8FgMBj8A/AfmStY4cXjMFAAAAAASUVORK5CYII=\r\n\r\n--b2=_qt8P2C12rTLOH5SWDmCVrhMvSSJx92a5TqTsu3Ai5c\r\nContent-Type: image/png; name=reddit.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <b5be6313a1976d407cd7@news.proton.me>\r\nContent-Disposition: inline; filename=reddit.png\r\n\r\n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\r\n\r\n--b2=_qt8P2C12rTLOH5SWDmCVrhMvSSJx92a5TqTsu3Ai5c\r\nContent-Type: image/png; name=twitter.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <b006799ec939e6b132a1@news.proton.me>\r\nContent-Disposition: inline; filename=twitter.png\r\n\r\n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\r\nTkSuQmCC\r\n\r\n--b2=_qt8P2C12rTLOH5SWDmCVrhMvSSJx92a5TqTsu3Ai5c\r\nContent-Type: image/png; name=drive-purple-folder.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <7096cb8394f6e1357256@news.proton.me>\r\nContent-Disposition: inline; filename=drive-purple-folder.png\r\n\r\n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\r\nXnHaRpWTAAAAAElFTkSuQmCC\r\n\r\n--b2=_qt8P2C12rTLOH5SWDmCVrhMvSSJx92a5TqTsu3Ai5c\r\nContent-Type: image/png; name=confetti-header.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <1eb5ac673c2f3a27af94@news.proton.me>\r\nContent-Disposition: inline; filename=confetti-header.png\r\n\r\n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\r\n\r\n--b2=_qt8P2C12rTLOH5SWDmCVrhMvSSJx92a5TqTsu3Ai5c--','Enjoy true privacy with secure, end-to-end encrypted storage\n\n[Proton Drive](https://drive.proton.me/)\n\nWelcome\nto Proton Drive\n\nCongratulations on choosing private and\nsecure cloud storage for your files,\nphotos, and documents!\n\nUpload your first file\n\n[Proton Drive purple folder image]\n\n[Upload your first file](https://drive.proton.me/)\n\nWith Proton Drive’s end-to-end encryption, your files are entirely under your control and never used for profiling. [Learn more >](https://proton.me/security/end-to-end-encryption)\n\nThanks for supporting a better internet where privacy is the default,\n\nStay secure,\nThe Proton Drive team\n\nConnect with the Proton community\n\n[Twitter](https://twitter.com/ProtonPrivacy)\n\n[Reddit](https://reddit.com/r/ProtonMail)\n\n[LinkedIn](https://www.linkedin.com/company/protonprivacy/)\n\n[Facebook](https://facebook.com/Proton)\n\n[Instagram](https://instagram.com/protonprivacy)\n\n[Blog](https://proton.me/blog)\n\n[Update your email preferences or unsubscribe](https://account.proton.me/mail/dashboard#email-subscription)\n\n© 2025 Proton AG Switzerland\nRoute de la Galaise 32, 1228 Plan-les-Ouates, Geneva, Switzerland',0,0,0,0,0,0,'2025-08-02 22:20:53','2025-12-09 19:27:00','2025-12-09 19:27:00','2025-12-09 19:27:00',NULL,NULL,NULL),
(556,4,'<CAJO9__Yt6NicUHxV4Bezg+jRNC6mv=vrp_uX0apT4C_940qRBQ@mail.gmail.com>',NULL,NULL,'Re: Site Meeting of 07/30/2025 Follow Up - NDA','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Hello Brian,</div><div><br></div><div>Please see attached my signed NDA. </div><div><br></div><div>Best Regards, </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Sat, Aug 2, 2025 at 11:42 AM Brian Stufflebean &lt;<a href=\"mailto:brian@bayfrontcapitalllc.com\">brian@bayfrontcapitalllc.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div><span style=\"font-size:14px\">Jarrett, Nathan and Jordan,</span><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">It was a pleasure to have the opportunity to meet all three of you at your new site this past week.  In following up from our meeting I have attached an NDA from Mavrix 1 LLC for your review and execution. Each of you should execute a copy as Senior Officers of the Company. </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">I will also be setting up a diligence folder on Proton for you to be able to upload diligence files for our review.  Recognizing your very tight deadlines, we will attempt to move diligently along with reviews.  Please don’t hesitate to text or contact me if you have any difficulties in getting into the Proton folder.  </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\"><b>FYI </b>- you will each receive an email invitation to join/accept the folder prior to being to gaining access. </span></div><div><br></div><div><br></div><div></div></div><div><div></div><div><br><div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\">Best Regards, <br><br><br>Brian C. Stufflebean, CEO<br><b>Bayfront Capital, LLC</b><br>(941)545-4153 Direct<br>(866)896-2423 Fax<br><a href=\"mailto:brian@bayfrontcapitalllc.com\" target=\"_blank\">brian@bayfrontcapitalllc.com</a><br><a href=\"http://www.bayfrontcapitalllc.com\" target=\"_blank\">www.bayfrontcapitalllc.com</a><br>      <br><br></div><span style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"></span><br style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><span style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"></span><span></span></div></div></div><div><div><div><span></span><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span><br><br><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><b>CONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER:</b><span style=\"font-weight:400\"> Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.</span></div>\r\n</div>\r\n<br></div></div></blockquote></div>','Hello Brian,\r\n\r\nPlease see attached my signed NDA.\r\n\r\nBest Regards,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Sat, Aug 2, 2025 at 11:42 AM Brian Stufflebean <\r\nbrian@bayfrontcapitalllc.com> wrote:\r\n\r\n> Jarrett, Nathan and Jordan,\r\n>\r\n>\r\n> It was a pleasure to have the opportunity to meet all three of you at your\r\n> new site this past week.  In following up from our meeting I have attached\r\n> an NDA from Mavrix 1 LLC for your review and execution. Each of you should\r\n> execute a copy as Senior Officers of the Company.\r\n>\r\n> I will also be setting up a diligence folder on Proton for you to be able\r\n> to upload diligence files for our review.  Recognizing your very tight\r\n> deadlines, we will attempt to move diligently along with reviews.  Please\r\n> don’t hesitate to text or contact me if you have any difficulties in\r\n> getting into the Proton folder.\r\n>\r\n> *FYI *- you will each receive an email invitation to join/accept the\r\n> folder prior to being to gaining access.\r\n>\r\n>\r\n>\r\n> Best Regards,\r\n>\r\n>\r\n> Brian C. Stufflebean, CEO\r\n> *Bayfront Capital, LLC*\r\n> (941)545-4153 Direct\r\n> (866)896-2423 Fax\r\n> brian@bayfrontcapitalllc.com\r\n> www.bayfrontcapitalllc.com\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n> *CONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER:* Bayfront\r\n> Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor\r\n> registered with FINRA. Nor does it provide tax or investment advice.  Any\r\n> references made to any transaction in any communication is being made as\r\n> a business consultant.   This is not a solicitation nor offer of any type\r\n> and any reference to any proposed transaction of any type is void where\r\n> prohibited by law. This communication is confidential and intended only for\r\n> the intended recipient.  If you are not the intended recipient, you may not\r\n> copy, disclose, or distribute this message to anyone else; any such actions\r\n> may be unlawful. If you have received this communication in error, please\r\n> contact the sender of the message to inform him or her of the error.\r\n>\r\n>',0,0,0,0,0,0,'2025-08-02 22:26:24','2025-12-09 19:27:00','2025-12-09 19:27:00','2025-12-09 19:27:00',NULL,NULL,NULL),
(557,4,'<730f05f8-1568-4c89-bbb4-0165b0b9a9da@mavrix.one>',NULL,NULL,'=?UTF-8?Q?Re=3A_Brian_Stufflebean_invites_you_to_read_the_WSJ_artic?= =?UTF-8?Q?le=3A_Hegseth=E2=80=99s_Latest_Battle=3A_Infighting_Inside_the_Pe?= =?UTF-8?Q?ntagon?=','tony@mavrix.one','Tony Aponte','<!DOCTYPE html>\r\n<html>\r\n  <head>\r\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n  </head>\r\n  <body>\r\n    <p>Interesting article. Seems like we need to keep an eye on that\r\n      situation. If he is let go, it could make waves in the drone\r\n      initiative they are pushing.</p>\r\n    <p><br>\r\n    </p>\r\n    <p>- T</p>\r\n    <p><br>\r\n    </p>\r\n    <div class=\"moz-cite-prefix\">On 8/2/25 12:48, Brian Stufflebean\r\n      wrote:<br>\r\n    </div>\r\n    <blockquote type=\"cite\"\r\ncite=\"mid:cm.0248551114737.pjrhjlk.l.d.9389e4836fc011f09881e5c8ef36366e@cmail20.com\">\r\n      <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n      <!--[if !mso]><!-->\r\n      <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\r\n      <!--<![endif]-->\r\n      <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\r\n      <style type=\"text/css\" data-embed=\"\">.cs-button-block{top:25px!important}.apple-link a{color:#333!important;text-decoration:none!important}.hide-p p{display:none!important;width:0!important;max-height:0!important;overflow:hidden!important}.email-body a,.email-body a .yshortcuts,.email-body a:visited,.header__webversion a,body a{color:#0080c3;font-weight:400;text-decoration:underline}.email-body a:hover,body a:hover{color:#333!important}ul{margin:0 0 14px 0;padding-left:18px}.email-body li{padding-left:10px;margin:0}.ext-src a{color:#999!important;font-size:12px;line-height:18px}.h1__timestamp .apple-link a{color:#999!important}.sans{font-family:\'Helvetica Neue\',Helvetica,Arial,sans-serif!important}.email-body__article p,.email-body__box p,.sub-after-h1 p{margin:0 0 18px 0}.email-body__article--no-pad p,.wp .email-body__article p:last-child{margin:0!important}.email-body__small-link,.email-body__small-link a{text-decoration:none!important;white-space:nowrap}.footer a,.footer a:link,.footer a:visited{color:#0080c3;text-decoration:none!important}.note a{font-family:Georgia,Times,\"Times New Roman\",serif!important}.btn .btn__link:hover{background-color:#0276b4!important;color:#fff!important}.btn .btn__link{color:#fff!important;font-weight:700;text-transform:uppercase;font-size:12px;text-decoration:none!important;background-color:#2d81c3;text-align:center;display:inline-block;mso-hide:all}</style>\r\n      <style type=\"text/css\"></style>\r\n      <!--[if mso]>\r\n    <v:rect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"#nothing\"  stroke=\"f\" fillcolor=\"#FFFFFF\" style=\"display:none;height:0px;width:0;\" >\r\n    <w:anchorlock/>\r\n<![endif]-->\r\n      <div class=\"preheader hide-p\"\r\nstyle=\"color:#fff;font-family:\'Helvetica Neue\',Helvetica,Arial,sans-serif!important;line-height:0!important;\">\r\n      </div>\r\n      <div class=\"hide\"\r\nstyle=\"display:none!important;max-height:0!important;overflow:hidden!important;width:0!important;\">\r\n ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌\r\n ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌\r\n      </div>\r\n      <!--[if mso]>\r\n    </v:rect>\r\n<![endif]-->\r\n      <div style=\"background-color:#fff;\">\r\n        <table class=\"header\" width=\"100%\" align=\"center\"\r\n          bgcolor=\"#FFFFFF\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"\r\n          style=\"border-collapse:collapse!important;\">\r\n          <tbody>\r\n            <tr>\r\n              <td class=\"header__webversion\" align=\"center\" valign=\"top\"\r\nstyle=\"border-bottom-width:1px !important;border-bottom-style:solid !important;border-bottom-color:#d8d8d8 !important;color:#999!important;font-family:\'Helvetica Neue\',Helvetica,Arial,sans-serif!important;font-size:12px;line-height:18px;padding-top:8px;padding-bottom:8px;padding-right:0;padding-left:0;\">\r\n                <p>Trouble viewing this email?  <a\r\nhref=\"https://emailshare.cmail20.com/t/n/d-e-9389e4836fc011f09881e5c8ef36366e-l-n-l-l/\"\r\nstyle=\"color:#0080c3;font-weight:400;text-decoration:underline;\"\r\n                    moz-do-not-send=\"true\"><span\r\n                      style=\"white-space:nowrap;\">View in web browser ›</span></a></p>\r\n              </td>\r\n            </tr>\r\n            <tr>\r\n              <td class=\"header__img\" align=\"center\" height=\"100\"\r\n                valign=\"top\" bgcolor=\"#FFFFFF\"\r\nstyle=\"display:block;margin-top:0;margin-bottom:0;margin-right:auto;margin-left:auto;padding-bottom:1px;\">\r\n                <img\r\nsrc=\"https://i5.cmail20.com/ti/d/7D/940/FB6/012925///csimport/header-logo-wsj_0.jpg\"\r\n                  alt=\"The Wall Street Journal. \" width=\"300\"\r\nstyle=\"border-width:0;height:auto;line-height:100%;outline-color:0;text-decoration:none;\"\r\n                  moz-do-not-send=\"true\">\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </div>\r\n      <table width=\"100%\" bgcolor=\"#F4F4F4\" border=\"0\" cellpadding=\"0\"\r\n        cellspacing=\"0\" style=\"border-collapse:collapse!important;\">\r\n        <tbody>\r\n          <tr>\r\n            <td class=\"stage-out\" style=\"padding-top:30px;\">\r\n              <table class=\"email-body\" width=\"600\" align=\"center\"\r\n                bgcolor=\"#FFFFFF\" border=\"0\" cellpadding=\"0\"\r\n                cellspacing=\"0\"\r\nstyle=\"border-collapse:collapse!important;color:#333;font-family:Georgia,Times,\'Times New Roman\',serif!important;font-size:16px;line-height:24px;margin-top:0 !important;margin-bottom:0 !important;margin-right:auto !important;margin-left:auto !important;table-layout:fixed;\">\r\n                <tbody>\r\n                  <tr>\r\n                    <td class=\"stage-in\"\r\nstyle=\"padding-top:26px;padding-bottom:10px;padding-right:30px;padding-left:30px;\">\r\n                      <table class=\"email-body\" width=\"100%\" border=\"0\"\r\n                        cellpadding=\"0\" cellspacing=\"0\"\r\nstyle=\"border-collapse:collapse!important;color:#333;font-family:Georgia,Times,\'Times New Roman\',serif!important;font-size:16px;line-height:24px;margin-top:0 !important;margin-bottom:0 !important;margin-right:auto !important;margin-left:auto !important;table-layout:fixed;\">\r\n                        <tbody>\r\n                          <tr>\r\n                            <td valign=\"top\">\r\n                              <table width=\"100%\" border=\"0\"\r\n                                cellpadding=\"0\" cellspacing=\"0\"\r\nstyle=\"border-collapse:collapse!important;\">\r\n                                <tbody>\r\n                                  <tr>\r\n                                    <td class=\"note--pad\"\r\nstyle=\"padding-top:0;padding-bottom:20px;padding-right:0;padding-left:0;\">\r\n                                      <table class=\"note\" width=\"100%\"\r\n                                        align=\"center\" bgcolor=\"#F4F4F4\"\r\n                                        border=\"0\" cellpadding=\"0\"\r\n                                        cellspacing=\"0\"\r\nstyle=\"border-collapse:collapse!important;\">\r\n                                        <tbody>\r\n                                          <tr>\r\n                                            <td class=\"note--txt sans\"\r\n                                              align=\"center\"\r\n                                              valign=\"middle\"\r\nstyle=\"color:#333;font-family:\'Helvetica Neue\',Helvetica,Arial,sans-serif!important;letter-spacing:0;line-height:26px;padding-top:14px;padding-bottom:14px;padding-right:14px;padding-left:14px;\">\r\n                                              <p> </p>\r\n                                              <br>\r\n                                            </td>\r\n                                          </tr>\r\n                                        </tbody>\r\n                                      </table>\r\n                                    </td>\r\n                                  </tr>\r\n                                </tbody>\r\n                              </table>\r\n                            </td>\r\n                          </tr>\r\n                          <tr>\r\n                            <td valign=\"top\">\r\n                              <table width=\"100%\" border=\"0\"\r\n                                cellpadding=\"0\" cellspacing=\"0\"\r\nstyle=\"border-collapse:collapse!important;\">\r\n                                <tbody>\r\n                                  <tr>\r\n                                    <td valign=\"top\"\r\n                                      class=\"email-body__img\"\r\nstyle=\"padding-top:4px;padding-bottom:20px;padding-right:0;padding-left:0;\">\r\n                                      <table width=\"100%\" align=\"center\"\r\n                                        bgcolor=\"#FFFFFF\" border=\"0\"\r\n                                        cellpadding=\"0\" cellspacing=\"0\"\r\nstyle=\"border-collapse:collapse!important;\">\r\n                                        <tbody>\r\n                                          <tr>\r\n                                            <td>\r\n                                              <p\r\nstyle=\"margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;\"> <a\r\nhref=\"https://emailshare.cmail20.com/t/n/d-l-9389e4836fc011f09881e5c8ef36366e-l-t-r-l/\"\r\nstyle=\"color:#0080c3;font-weight:400;text-decoration:underline;\"\r\n                                                  moz-do-not-send=\"true\"><img\r\nclass=\"responsive-img\" src=\"https://images.wsj.net/im-58407228\"\r\n                                                    width=\"540\"\r\nstyle=\"border-width:0;display:block;height:auto;line-height:100%;outline-color:0;text-decoration:none;\"\r\nmoz-do-not-send=\"true\"></a></p>\r\n                                            </td>\r\n                                          </tr>\r\n                                          <tr>\r\n                                            <td\r\nclass=\"responsive-img__caption\"\r\nstyle=\"color:#999!important;font-family:\'Helvetica Neue\',Helvetica,Arial,sans-serif!important;font-size:12px;line-height:18px;padding-top:8px;\">\r\n                                              <p> </p>\r\n                                              <br>\r\n                                            </td>\r\n                                          </tr>\r\n                                        </tbody>\r\n                                      </table>\r\n                                    </td>\r\n                                  </tr>\r\n                                </tbody>\r\n                              </table>\r\n                            </td>\r\n                          </tr>\r\n                          <tr>\r\n                            <td valign=\"top\">\r\n                              <table width=\"100%\" border=\"0\"\r\n                                cellpadding=\"0\" cellspacing=\"0\"\r\nstyle=\"border-collapse:collapse!important;\">\r\n                                <tbody>\r\n                                  <tr>\r\n                                    <td valign=\"top\">\r\n                                      <table width=\"100%\" border=\"0\"\r\n                                        cellpadding=\"0\" cellspacing=\"0\"\r\nstyle=\"border-collapse:collapse!important;\">\r\n                                        <tbody>\r\n                                          <tr>\r\n                                            <td valign=\"top\">\r\n                                              <h1\r\nstyle=\"color:#333!important;font-family:\'Helvetica Neue\',Helvetica,Arial,sans-serif!important;font-size:24px;font-weight:400;letter-spacing:0;line-height:32px;margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;\"><a\r\nhref=\"https://emailshare.cmail20.com/t/n/d-l-9389e4836fc011f09881e5c8ef36366e-l-i-r-l/\"\r\nstyle=\"text-decoration:none;color:#333;font-weight:400;\"\r\n                                                  moz-do-not-send=\"true\">Hegseth’s\r\n                                                  Latest Battle:\r\n                                                  Infighting Inside the\r\n                                                  Pentagon</a></h1>\r\n                                            </td>\r\n                                          </tr>\r\n                                        </tbody>\r\n                                      </table>\r\n                                      <table width=\"100%\" border=\"0\"\r\n                                        cellpadding=\"0\" cellspacing=\"0\"\r\nstyle=\"border-collapse:collapse!important;\">\r\n                                        <tbody>\r\n                                          <tr>\r\n                                            <td class=\"sub-after-h1\"\r\n                                              valign=\"top\"\r\nstyle=\"color:#666!important;font-family:\'Helvetica Neue\',Helvetica,Arial,sans-serif!important;font-size:16px;font-weight:400;line-height:22px;\">\r\n                                              <p\r\nstyle=\"margin-top:0;margin-bottom:18px;margin-right:0;margin-left:0;\">\r\n                                                By Lara Seligman,\r\n                                                Alexander Ward, Lindsay\r\n                                                Wise</p>\r\n                                            </td>\r\n                                          </tr>\r\n                                        </tbody>\r\n                                      </table>\r\n                                    </td>\r\n                                  </tr>\r\n                                </tbody>\r\n                              </table>\r\n                            </td>\r\n                          </tr>\r\n                          <tr>\r\n                            <td valign=\"top\">\r\n                              <table width=\"100%\" border=\"0\"\r\n                                cellpadding=\"0\" cellspacing=\"0\"\r\nstyle=\"border-collapse:collapse!important;\">\r\n                                <tbody>\r\n                                  <tr>\r\n                                    <td class=\"email-body__article\"\r\n                                      valign=\"top\"\r\nstyle=\"color:#333;font-family:Georgia,Times,\'Times New Roman\',serif!important;font-size:16px;line-height:24px;\">\r\n                                      <p\r\nstyle=\"margin-top:0;margin-bottom:18px;margin-right:0;margin-left:0;\">\r\n                                        Defense secretary has made a\r\n                                        series of missteps and feuded\r\n                                        with top generals</p>\r\n                                      <p\r\nstyle=\"margin-top:0;margin-bottom:18px;margin-right:0;margin-left:0;\"> <a\r\nhref=\"https://emailshare.cmail20.com/t/n/d-l-9389e4836fc011f09881e5c8ef36366e-l-d-r-l/\"\r\nstyle=\"color:#0080c3;font-weight:400;text-decoration:underline;\"\r\n                                          moz-do-not-send=\"true\">Read\r\n                                          the Article ›</a></p>\r\n                                      <p\r\nstyle=\"margin-top:0;margin-bottom:18px;margin-right:0;margin-left:0;\">  </p>\r\n                                    </td>\r\n                                  </tr>\r\n                                </tbody>\r\n                              </table>\r\n                            </td>\r\n                          </tr>\r\n                          <tr>\r\n                            <td valign=\"top\">\r\n                              <table width=\"100%\" border=\"0\"\r\n                                cellpadding=\"0\" cellspacing=\"0\"\r\nstyle=\"border-collapse:collapse!important;\">\r\n                                <tbody>\r\n                                  <tr>\r\n                                    <td class=\"hr hr--md\" valign=\"top\"\r\nstyle=\"padding-top:8px;padding-bottom:24px;padding-right:0;padding-left:0;\">\r\n                                      <table width=\"100%\" border=\"0\"\r\n                                        cellpadding=\"0\" cellspacing=\"0\"\r\nstyle=\"border-collapse:collapse!important;\">\r\n                                        <tbody>\r\n                                          <tr>\r\n                                            <td class=\"td\" width=\"100%\"\r\nstyle=\"border-top-width:1px;border-top-style:solid;border-top-color:#ccc;line-height:0!important;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;\">\r\n                                               <span class=\"hide\"\r\nstyle=\"display:none!important;max-height:0!important;overflow:hidden!important;width:0!important;\"><span\r\n                                                  class=\"hide\"\r\nstyle=\"display:none!important;max-height:0!important;overflow:hidden!important;width:0!important;\"></span></span>\r\n                                            </td>\r\n                                          </tr>\r\n                                        </tbody>\r\n                                      </table>\r\n                                    </td>\r\n                                  </tr>\r\n                                </tbody>\r\n                              </table>\r\n                            </td>\r\n                          </tr>\r\n                          <tr>\r\n                            <td valign=\"top\">\r\n                              <table width=\"100%\" border=\"0\"\r\n                                cellpadding=\"0\" cellspacing=\"0\"\r\nstyle=\"border-collapse:collapse!important;\">\r\n                                <tbody>\r\n                                  <tr>\r\n                                    <td class=\"email-body__space\"\r\n                                      valign=\"top\"\r\nstyle=\"padding-top:0;padding-bottom:16px;padding-right:0;padding-left:0;\">\r\n                                      <h2 class=\"h2\"\r\nstyle=\"color:#333!important;font-family:\'Helvetica Neue\',Helvetica,Arial,sans-serif!important;font-size:16px;font-weight:700;line-height:24px;margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;\">Related\r\n                                        Articles</h2>\r\n                                    </td>\r\n                                  </tr>\r\n                                </tbody>\r\n                              </table>\r\n                            </td>\r\n                          </tr>\r\n                          <tr>\r\n                            <td valign=\"top\">\r\n                              <table width=\"100%\" border=\"0\"\r\n                                cellpadding=\"0\" cellspacing=\"0\"\r\nstyle=\"border-collapse:collapse!important;\">\r\n                                <tbody>\r\n                                  <tr>\r\n                                    <td\r\nclass=\"email-body__box email-body__columns\" valign=\"top\"\r\nstyle=\"padding-top:4px;padding-bottom:2px;padding-right:0;padding-left:0;\">\r\n                                      <table class=\"responsive\"\r\n                                        width=\"255\" align=\"left\"\r\n                                        border=\"0\" cellpadding=\"0\"\r\n                                        cellspacing=\"0\"\r\nstyle=\"border-collapse:collapse!important;\">\r\n                                        <tbody>\r\n                                          <tr>\r\n                                            <td\r\nclass=\"td column--one-half\" valign=\"top\" width=\"255\"\r\nstyle=\"color:#333;font-family:Georgia,Times,\'Times New Roman\',serif!important;font-size:16px;line-height:24px;padding-bottom:18px;\">\r\n                                              <p\r\nstyle=\"margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;\"> <a\r\nhref=\"https://emailshare.cmail20.com/t/n/d-l-9389e4836fc011f09881e5c8ef36366e-l-h-r-l/\"\r\nstyle=\"color:#0080c3;font-weight:400;text-decoration:underline;\"\r\n                                                  moz-do-not-send=\"true\"><img\r\nclass=\"responsive-img\" src=\"https://images.wsj.net/im-97876005/social\"\r\n                                                    width=\"255\"\r\nstyle=\"border-width:0;display:block;height:auto;line-height:100%;outline-color:0;text-decoration:none;\"\r\nmoz-do-not-send=\"true\"></a></p>\r\n                                            </td>\r\n                                          </tr>\r\n                                          <tr>\r\n                                            <td\r\nclass=\"td column--one-half\" valign=\"top\" width=\"255\"\r\nstyle=\"color:#333;font-family:Georgia,Times,\'Times New Roman\',serif!important;font-size:16px;line-height:24px;padding-bottom:18px;\">\r\n                                              <a\r\nhref=\"https://emailshare.cmail20.com/t/n/d-l-9389e4836fc011f09881e5c8ef36366e-l-k-r-l/\"\r\nstyle=\"color:#0080c3;font-weight:400;text-decoration:underline;\"\r\n                                                moz-do-not-send=\"true\">Inside\r\n                                                Kim Jong Un’s New Beach\r\n                                                Resort, Where the Only\r\n                                                Foreigners Are Russian</a>\r\n                                            </td>\r\n                                          </tr>\r\n                                        </tbody>\r\n                                      </table>\r\n                                      <table class=\"responsive\"\r\n                                        width=\"255\" align=\"right\"\r\n                                        border=\"0\" cellpadding=\"0\"\r\n                                        cellspacing=\"0\"\r\nstyle=\"border-collapse:collapse!important;\">\r\n                                        <tbody>\r\n                                          <tr>\r\n                                            <td\r\nclass=\"td column--one-half\" valign=\"top\" width=\"255\"\r\nstyle=\"color:#333;font-family:Georgia,Times,\'Times New Roman\',serif!important;font-size:16px;line-height:24px;padding-bottom:18px;\">\r\n                                              <p\r\nstyle=\"margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;\"> <a\r\nhref=\"https://emailshare.cmail20.com/t/n/d-l-9389e4836fc011f09881e5c8ef36366e-l-u-r-l/\"\r\nstyle=\"color:#0080c3;font-weight:400;text-decoration:underline;\"\r\n                                                  moz-do-not-send=\"true\"><img\r\nclass=\"responsive-img\"\r\nsrc=\"https://opinion-images.wsj.net/im-92221933/social\" width=\"255\"\r\nstyle=\"border-width:0;display:block;height:auto;line-height:100%;outline-color:0;text-decoration:none;\"\r\nmoz-do-not-send=\"true\"></a></p>\r\n                                            </td>\r\n                                          </tr>\r\n                                          <tr>\r\n                                            <td\r\nclass=\"td column--one-half\" valign=\"top\" width=\"255\"\r\nstyle=\"color:#333;font-family:Georgia,Times,\'Times New Roman\',serif!important;font-size:16px;line-height:24px;padding-bottom:18px;\">\r\n                                              <a\r\nhref=\"https://emailshare.cmail20.com/t/n/d-l-9389e4836fc011f09881e5c8ef36366e-l-o-r-l/\"\r\nstyle=\"color:#0080c3;font-weight:400;text-decoration:underline;\"\r\n                                                moz-do-not-send=\"true\">Opinion\r\n                                                | The Trump Economy\r\n                                                Stumbles</a>\r\n                                            </td>\r\n                                          </tr>\r\n                                        </tbody>\r\n                                      </table>\r\n                                    </td>\r\n                                  </tr>\r\n                                </tbody>\r\n                              </table>\r\n                            </td>\r\n                          </tr>\r\n                          <tr>\r\n                            <td class=\"pre-footer\" valign=\"top\"\r\n                              style=\"font-size:14px;\">\r\n                              <table width=\"100%\" border=\"0\"\r\n                                cellpadding=\"0\" cellspacing=\"0\"\r\nstyle=\"border-collapse:collapse!important;\">\r\n                                <tbody>\r\n                                  <tr>\r\n                                    <td class=\"hr\" valign=\"top\"\r\nstyle=\"padding-top:36px;padding-bottom:20px;padding-right:0;padding-left:0;\">\r\n                                      <table width=\"100%\" border=\"0\"\r\n                                        cellpadding=\"0\" cellspacing=\"0\"\r\nstyle=\"border-collapse:collapse!important;\">\r\n                                        <tbody>\r\n                                          <tr>\r\n                                            <td class=\"td\" width=\"100%\"\r\nstyle=\"border-top-width:1px;border-top-style:solid;border-top-color:#ccc;color:#333!important;font-family:\'Helvetica Neue\',Helvetica,Arial,sans-serif!important;font-size:12px;line-height:0!important;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;\">\r\n                                               \r\n                                            </td>\r\n                                          </tr>\r\n                                        </tbody>\r\n                                      </table>\r\n                                    </td>\r\n                                  </tr>\r\n                                  <tr>\r\n                                    <td class=\"td pre-footer__content\"\r\n                                      valign=\"top\" align=\"center\"\r\nstyle=\"color:#333!important;font-family:\'Helvetica Neue\',Helvetica,Arial,sans-serif!important;font-size:12px;line-height:18px;padding-bottom:20px;padding-top:7px;\">\r\n                                      <img class=\"pre-footer__icon\"\r\nsrc=\"https://i4.cmail20.com/ti/d/7D/940/FB6/012925///csimport/pre-footer-devices_1.png\"\r\n                                        width=\"42\" alt=\"Devices icon. \"\r\nstyle=\"border-width:0;display:inline-block;height:auto;line-height:100%;margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;outline-color:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;text-decoration:none;vertical-align:middle;\"\r\n                                        moz-do-not-send=\"true\">\r\n                                      <div class=\"pre-footer__text\"\r\nstyle=\"display:inline-block;font-size:14px;margin-left:10px;vertical-align:middle;\">\r\n                                        Access WSJ‌.com and our mobile\r\n                                        apps.\r\n                                        <a\r\nhref=\"https://emailshare.cmail20.com/t/n/d-l-9389e4836fc011f09881e5c8ef36366e-l-b-r-l/\"\r\nstyle=\"color:#0080c3;font-weight:400;text-decoration:underline;\"\r\n                                          moz-do-not-send=\"true\">Subscribe</a>\r\n                                      </div>\r\n                                    </td>\r\n                                  </tr>\r\n                                </tbody>\r\n                              </table>\r\n                            </td>\r\n                          </tr>\r\n                        </tbody>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </tbody>\r\n              </table>\r\n            </td>\r\n          </tr>\r\n        </tbody>\r\n      </table>\r\n      <table class=\"footer\" width=\"100%\" align=\"center\"\r\n        bgcolor=\"#F4F4F4\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"\r\n        style=\"border-collapse:collapse!important;\">\r\n        <tbody>\r\n          <tr>\r\n            <td class=\"footer__body\" align=\"center\" valign=\"top\"\r\nstyle=\"padding-top:30px;padding-bottom:20px;padding-right:20px;padding-left:20px;\">\r\n              <table class=\"email-body\" width=\"500\" align=\"center\"\r\n                border=\"0\" cellpadding=\"0\" cellspacing=\"0\"\r\nstyle=\"border-collapse:collapse!important;color:#333;font-family:Georgia,Times,\'Times New Roman\',serif!important;font-size:16px;line-height:24px;margin-top:0 !important;margin-bottom:0 !important;margin-right:auto !important;margin-left:auto !important;table-layout:fixed;\">\r\n                <tbody>\r\n                  <tr>\r\n                    <td class=\"footer__article sans\" align=\"center\"\r\n                      valign=\"top\"\r\nstyle=\"font-family:\'Helvetica Neue\',Helvetica,Arial,sans-serif!important;font-size:12px;font-style:normal;line-height:18px;padding-bottom:12px;\">\r\n                      <img\r\nsrc=\"https://i6.cmail20.com/ti/d/7D/940/FB6/012925///csimport/powered-by-dow-jones-trans_2.png\"\r\n                        alt=\"Powered by Dow Jones\" width=\"187\"\r\nstyle=\"border-width:0;height:auto;line-height:100%;outline-color:0;text-decoration:none;\"\r\n                        moz-do-not-send=\"true\">\r\n                    </td>\r\n                  </tr>\r\n                  <tr>\r\n                    <td class=\"footer__article sans\" align=\"center\"\r\n                      valign=\"top\"\r\nstyle=\"font-family:\'Helvetica Neue\',Helvetica,Arial,sans-serif!important;font-size:12px;font-style:normal;line-height:18px;padding-bottom:12px;\">\r\n                      Dow Jones &amp; Company, Inc. 4300 U.S. Ro‌ute 1\r\n                      No‌rth Monm‌outh Junc‌tion, N‌J 088‌52<br>\r\n                      Copyright 2025 Dow Jones &amp; Company, Inc. <span\r\n                        class=\"mobile-hide\">  |  </span> <span\r\n                        style=\"white-space:nowrap;\">All Rights Reserved.</span>\r\n                    </td>\r\n                  </tr>\r\n                  <tr>\r\n                    <td>\r\n                      <!--[if mso]>\r\n                            <v:rect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"#nothing\"  stroke=\"f\" fillcolor=\"#FFFFFF\" style=\"display:none;height:0px;width:0;\" >\r\n                            <w:anchorlock/>\r\n                        <![endif]-->\r\n                      <span class=\"hide\"\r\nstyle=\"display:none!important;max-height:0!important;overflow:hidden!important;width:0!important;\"></span> <!--[if mso]>\r\n                            </v:rect>\r\n                        <![endif]--><br>\r\n                    </td>\r\n                  </tr>\r\n                </tbody>\r\n              </table>\r\n            </td>\r\n          </tr>\r\n        </tbody>\r\n      </table>\r\n      <img\r\nsrc=\"https://emailshare.cmail20.com/t/n/d-o-9389e4836fc011f09881e5c8ef36366e-l-l/o.gif\"\r\n        width=\"1\" height=\"1\" border=\"0\" alt=\"\"\r\nstyle=\"visibility:hidden !important;display:block !important;height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"\r\n        moz-do-not-send=\"true\">\r\n    </blockquote>\r\n  </body>\r\n</html>','Interesting article. Seems like we need to keep an eye on that \r\nsituation. If he is let go, it could make waves in the drone initiative \r\nthey are pushing.\r\n\r\n\r\n- T\r\n\r\n\r\nOn 8/2/25 12:48, Brian Stufflebean wrote:\r\n>  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ \r\n>  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ \r\n>\r\n>\r\n> Trouble viewing this email? View in web browser › \r\n> <https://emailshare.cmail20.com/t/n/d-e-9389e4836fc011f09881e5c8ef36366e-l-n-l-l/>\r\n>\r\n> The Wall Street Journal.\r\n>\r\n>\r\n> <https://emailshare.cmail20.com/t/n/d-l-9389e4836fc011f09881e5c8ef36366e-l-t-r-l/>\r\n>\r\n>\r\n>   Hegseth’s Latest Battle: Infighting Inside the Pentagon\r\n>   <https://emailshare.cmail20.com/t/n/d-l-9389e4836fc011f09881e5c8ef36366e-l-i-r-l/>\r\n>\r\n> By Lara Seligman, Alexander Ward, Lindsay Wise\r\n>\r\n> Defense secretary has made a series of missteps and feuded with top \r\n> generals\r\n>\r\n> Read the Article › \r\n> <https://emailshare.cmail20.com/t/n/d-l-9389e4836fc011f09881e5c8ef36366e-l-d-r-l/>\r\n>\r\n>\r\n>     Related Articles\r\n>\r\n> <https://emailshare.cmail20.com/t/n/d-l-9389e4836fc011f09881e5c8ef36366e-l-h-r-l/>\r\n>\r\n> Inside Kim Jong Un’s New Beach Resort, Where the Only Foreigners Are \r\n> Russian \r\n> <https://emailshare.cmail20.com/t/n/d-l-9389e4836fc011f09881e5c8ef36366e-l-k-r-l/> \r\n>\r\n>\r\n> <https://emailshare.cmail20.com/t/n/d-l-9389e4836fc011f09881e5c8ef36366e-l-u-r-l/>\r\n>\r\n> Opinion | The Trump Economy Stumbles \r\n> <https://emailshare.cmail20.com/t/n/d-l-9389e4836fc011f09881e5c8ef36366e-l-o-r-l/> \r\n>\r\n>\r\n> Devices icon.\r\n> Access WSJ‌.com and our mobile apps. Subscribe \r\n> <https://emailshare.cmail20.com/t/n/d-l-9389e4836fc011f09881e5c8ef36366e-l-b-r-l/> \r\n>\r\n>\r\n> Powered by Dow Jones\r\n> Dow Jones & Company, Inc. 4300 U.S. Ro‌ute 1 No‌rth Monm‌outh \r\n> Junc‌tion, N‌J 088‌52\r\n> Copyright 2025 Dow Jones & Company, Inc.   | All Rights Reserved.\r\n>',0,0,0,0,0,0,'2025-08-02 22:39:07','2025-12-09 19:27:01','2025-12-09 19:27:01','2025-12-09 19:27:01',NULL,NULL,NULL),
(558,4,'<33b2c28d84bea3d55f45d0a96fe0d063337ef88e-20069627-110394750@google.com>',NULL,NULL,'Google Workspace Business Plus trial for mavrix.one has ended','workspace-noreply@google.com','=?UTF-8?Q?The_Google_Workspace_Team=C2=A0?=','<div>\r\n  <html xmlns:v=urn:schemas-microsoft-com:vml dir=ltr lang=en style=\"margin:0; padding:0\">\r\n    <meta http-equiv=Content-Type content=\"text/html; charset=utf-8\">\r\n    <meta name=viewport content=width=device-width>\r\n    <style>@media only screen{html{min-height:100%;background:#fafafa}}@media only screen and (max-width:640px){.small-float-center{margin:0 auto!important;float:none!important;text-align:center!important}}@media only screen and (max-width:640px){table.body img{width:auto;height:auto}table.body center{min-width:0!important}table.body .container{width:344px!important}table.body .columns{height:auto!important;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:40px!important;padding-right:40px!important}table.body .columns .columns{padding-left:0!important;padding-right:0!important}table.body .collapse .columns{padding-left:0!important;padding-right:0!important}th.small-1{display:inline-block!important;width:8.33333%!important}th.small-3{display:inline-block!important;width:25%!important}th.small-4{display:inline-block!important;width:33.33333%!important}th.small-6{display:inline-block!important;width:50%!important}th.small-8{display:inline-block!important;width:66.66667%!important}th.small-9{display:inline-block!important;width:75%!important}th.small-12{display:inline-block!important;width:100%!important}.columns th.small-12{display:block!important;width:100%!important}table.menu{width:100%!important}table.menu td,table.menu th{width:auto!important;display:inline-block!important}table.menu.vertical td,table.menu.vertical th{display:block!important}table.menu[align=center]{width:auto!important}}</style>\r\n    <span class=preheader style=color:#fafafa;display:none!important;font-size:1px;line-height:1px;max-height:0;max-width:0;mso-hide:all!important;opacity:0;overflow:hidden;visibility:hidden></span>\r\n    <table class=body style=Margin:0;background:#F8F9FA!important;border-collapse:collapse;border-spacing:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;height:100%;line-height:inherit;margin:0;padding:0;vertical-align:top;width:100%;text-align:left>\r\n      <tr style=padding:0;vertical-align:top>\r\n        <td class=center align=center valign=top style=-moz-hyphens:none;-webkit-hyphens:none;Margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all>\r\n          <center data-parsed=\"\" style=min-width:600px;width:100%>\r\n\r\n            <table align=center class=\"container float-center\" style=\"Margin:0 auto;background:#fafafa;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:left;vertical-align:top;width:600px\"><tbody><tr style=padding:0;vertical-align:top><td style=-moz-hyphens:none;-webkit-hyphens:none;Margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all>\r\n              <table class=\"row header\" style=background:#F8F9FA;border-collapse:collapse;border-spacing:0;display:table;font-size:12px;padding:0;position:relative;vertical-align:top;width:100%><tbody><tr style=padding:0;vertical-align:top>\r\n                <th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0 auto;padding:0;padding-bottom:24px;padding-left:40px;padding-right:40px;padding-top:12px;width:560px\"><table style=border-collapse:collapse;border-spacing:0;margin-bottom:0;padding:0;vertical-align:top;width:100%><tr style=padding:0;vertical-align:top><th style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0;text-align:left>\r\n\r\n                  <img src=https://storage.googleapis.com/support-kms-prod/GaOvClLdIVxiDUB6sr9FETwxw9I7ykkXR856 alt=\"Google Workspace\" height=30 style=-ms-interpolation-mode:bicubic;clear:both;display:block;margin-top:24px;max-height:30px;max-width:100%;outline:0;text-decoration:none;width:auto>\r\n\r\n                </th>\r\n<th class=expander style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0!important;visibility:hidden;width:0></th></tr></table></th>\r\n              </tr></tbody></table>\r\n\r\n              <table class=\"row info\" style=align-items:center;background:#fff;border-collapse:collapse;border-color:#E8EAED;border-spacing:0;border-style:solid;border-width:1px;display:table;padding:0;position:relative;vertical-align:top;width:100%><tbody><tr style=padding:0;vertical-align:top>\r\n                <th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0 auto;padding:0;padding-bottom:0;padding-left:40px;padding-right:40px;width:560px\"><table style=border-collapse:collapse;border-spacing:0;padding:0;vertical-align:top;width:100%><tr style=padding:0;vertical-align:top><th style=\"Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0 0 24px;text-align:left\">\r\n\r\n<title>End of free trial notification</title>\r\n<h2 style=\"margin:0;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:24px;font-weight:700;line-height:30px!important;margin-bottom:24px;margin-top:24px;padding:0;word-wrap:normal\">Your Google Workspace account has been suspended</h2>\r\n\r\n<p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;padding:0>Your free trial has ended, but you can continue using Google Workspace by adding your billing information.</p>\r\n\r\n<p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;margin:0;margin-bottom:16px;padding:0>Sign in to your Google Admin console and click <strong>Set up billing</strong>. Follow the steps to reactivate your account.</p>\r\n\r\n<table class=accountinfo style=align:center;background:#f3f3f3;border-collapse:collapse;border-spacing:0;margin-bottom:12px;padding:0;vertical-align:top;width:100% role=presentation>\r\n  <tbody>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <th class=accountinfo style=\"margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:inherit;line-height:inherit;margin:0;padding:16px 32px 0 32px\">\r\n      <h3 class=accountinfo style=\"margin:0;margin-bottom:8px;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;line-height:26px!important;margin:0;margin-bottom:12px;margin-top:none!important;padding:0;text-align:center;word-wrap:normal\">Your Google Workspace account</h3>\r\n      </th>\r\n    </tr>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <td class=accountinfo style=\"-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0 32px 0 32px;vertical-align:top;word-wrap:keep-all\">\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:0;padding:0><strong>Username:&nbsp;</strong></p>\r\n\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:16px;padding:0><a class=noclick style=margin:0;color:#1f1f1f;font-family:inherit;font-weight:inherit;margin:0;padding:0;text-decoration:none>rick@mavrix.one</a></p>\r\n      </td>\r\n    </tr>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <td class=accountinfo style=\"-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0 32px 0 32px;vertical-align:top;word-wrap:keep-all\">\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:0;padding:0><strong>Domain:&nbsp;</strong></p>\r\n\r\n      <p class=accountinfo style=margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px;margin:0;margin-bottom:16px;padding:0><a class=noclick style=margin:0;color:#1f1f1f;font-family:inherit;font-weight:inherit;margin:0;padding:0;text-decoration:none>mavrix.one</a></p>\r\n      </td>\r\n    </tr>\r\n    <tr style=padding:0;vertical-align:top>\r\n      <td class=accountinfo style=\"-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0 32px 0 32px;vertical-align:top;word-wrap:keep-all\">\r\n      <table class=\"button radius thumbnail\" role=presentation style=\"margin:9px 0 24px 0;border:none;border-collapse:collapse;border-radius:3px;border-spacing:0;box-shadow:0 0 0 1px rgba(10,10,10,.2);display:inline-block;line-height:0;margin:9px 0 24px 0;margin-bottom:inherit;max-width:100%;padding:0;transition:box-shadow .2s ease-out;vertical-align:top;width:auto\">\r\n        <tbody>\r\n          <tr style=padding:0;vertical-align:top>\r\n            <td style=-moz-hyphens:none;-webkit-hyphens:none;margin:0;border-collapse:collapse!important;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all>\r\n            <table style=border-collapse:collapse;border-spacing:0;padding:0;vertical-align:top;width:100% role=presentation>\r\n              <tbody>\r\n                <tr style=padding:0;vertical-align:top>\r\n                  <td style=-moz-hyphens:none;-webkit-hyphens:none;margin:0;background:#1A73E8;border:none;border-collapse:collapse!important;border-radius:3px;color:#fff;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;hyphens:none;line-height:inherit;margin:0;padding:0;vertical-align:top;word-wrap:keep-all><a href=https://admin.google.com style=\"margin:0;border:0 solid #1A73E8;border-radius:3px;color:#fff;display:inline-block;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:500;line-height:24px;margin:0;padding:8px 16px 8px 16px;text-decoration:none\">Sign in</a></td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n            </td>\r\n          </tr>\r\n        </tbody>\r\n      </table>\r\n\r\n      <p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;margin:0;margin-bottom:16px;padding:0><em>https://admin.google.com</em></p>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<h3 style=\"margin:0;margin-bottom:8px;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;line-height:26px!important;margin:0;margin-bottom:12px;margin-top:20px;padding:0;word-wrap:normal\">Get help</h3>\r\n\r\n<p style=margin:0;margin-bottom:16px;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;margin:0;margin-bottom:16px;padding:0>If you have questions about your Google Workspace account, <a href=https://support.google.com/a/answer/1047213?utm_source=9053999&amp;utm_medium=email style=margin:0;color:#1A73E8;font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400;line-height:1.3;margin:0;padding:0;text-decoration:none>contact us</a> or <a href=https://support.google.com/a/answer/2633430?utm_source=9053999&amp;utm_medium=email style=margin:0;color:#1A73E8;font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400;line-height:1.3;margin:0;padding:0;text-decoration:none>learn more about billing</a>.</p>\r\n\r\n<p class=regards style=\"color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;line-height:24px;margin:0;margin-bottom:0!important;margin-top:8px;padding:0\">Sincerely,</p>\r\n\r\n<p class=signoff style=\"margin:0;margin-bottom:16px;color:#3C4043;font-family:Google Sans,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;line-height:24px;margin:0;margin-bottom:0px!important;padding:0\">The Google Workspace Team</p>\r\n            </th></tr></table></th>\r\n            </tr></tbody></table>\r\n\r\n            <table class=\"row footer\" role=presentation style=background:#F8F9FA;border-collapse:collapse;border-spacing:0;display:table;margin-top:0;padding:0;position:relative;vertical-align:top;width:100%><tbody><tr style=padding:0;vertical-align:top>\r\n              <th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0 auto;padding:0;padding-bottom:0;padding-left:40px;padding-right:40px;width:560px\"><table style=border-collapse:collapse;border-spacing:0;padding:0;vertical-align:top;width:100%><tr style=padding:0;vertical-align:top><th style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:24px;text-align:left>\r\n\r\n                <img src=https://storage.googleapis.com/support-kms-prod/GaOvClLdIVxiDUB6sr9FETwxw9I7ykkXR856 alt=\"Google Workspace\" height=30 style=-ms-interpolation-mode:bicubic;clear:both;display:block;margin-bottom:14px;max-width:100%;max-height:30px;outline:0;text-decoration:none;width:auto>\r\n                <p style=Margin:0;Margin-bottom:16px;color:#6C737F;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:14px;padding:0>\r\n            © 2025  Google LLC&nbsp;1600 Amphitheatre Parkway, Mountain View, CA 94043\r\n                </p>\r\n                <p style=Margin:0;Margin-bottom:16px;color:#6C737F;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:14px;padding:0>\r\n            <em>You’re receiving this mandatory email service announcement to update you about important changes to your Google Workspace product or account.</em>\r\n            </p>\r\n            </th>\r\n<th class=expander style=Margin:0;color:#3C4043;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:inherit;margin:0;padding:0!important;visibility:hidden;width:0></th></tr></table></th>\r\n            </tr></tbody></table>\r\n            </td></tr></tbody></table>\r\n\r\n          </center>\r\n        </td>\r\n      </tr>\r\n    </table>\r\n    <!-- prevent Gmail on iOS font size manipulation -->\r\n   <div style=\"display:none;white-space:nowrap;font:15px courier;line-height:0\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </div>\r\n\r\n</html>\r\n</div>','From: \"The Google Workspace Team\" [workspace-noreply@google.com]\r\nSubject:  Google Workspace Business Plus trial for mavrix.one has ended\r\n\r\nEnd of free trial notification\r\n\r\n## Your Google Workspace account has been suspended\r\n\r\nYour free trial has ended, but you can continue using Google Workspace by  \r\nadding your billing information.\r\n\r\nSign in to your Google Admin console and click **Set up billing**. Follow  \r\nthe steps to reactivate your account.\r\n\r\n### Your Google Workspace account\r\n\r\n**Username: **\r\n\r\nrick@mavrix.one\r\n\r\n**Domain: **\r\n\r\nmavrix.one\r\n\r\nSign in (https://admin.google.com)\r\n\r\nhttps://admin.google.com\r\n\r\n### Get help\r\n\r\nIf you have questions about your Google Workspace account, contact us  \r\n(https://support.google.com/a/answer/1047213?utm_source=9053999&utm_medium=email)  \r\nor learn more about billing  \r\n(https://support.google.com/a/answer/2633430?utm_source=9053999&utm_medium=email).\r\n\r\nSincerely,\r\n\r\nThe Google Workspace Team\r\n\r\n\r\n(C) 2025  Google LLC 1600 Amphitheatre Parkway, Mountain View, CA 94043 *   \r\nGoogle Asia Pacific Pte. Ltd., 8 Marina View, #30-01, Asia Square 1,  \r\nSingapore 018960  *  Google Ireland Ltd, Gordon House, Barrow Street,  \r\nDublin 4, Ireland.\r\n\r\nYou\'re receiving this mandatory email service announcement to update you  \r\nabout important changes to your Google Workspace product or account.',0,0,0,0,0,0,'2025-08-03 01:36:18','2025-12-09 19:27:01','2025-12-09 19:27:01','2025-12-09 19:27:01',NULL,NULL,NULL),
(559,4,'<V7B875D334PAKX5XAMRB21YD1W@drive.proton.me>',NULL,NULL,'Brian Stufflebean shared an item with you','no-reply@drive.proton.me','\"Brian Stufflebean (via Proton Drive)\"','--b2=_zaqkaAohPbH0qLdRS7t5p963OKAShQEBAdvmO5tik\r\nContent-Type: text/html; charset=utf-8\r\nContent-Transfer-Encoding: base64\r\n\r\nPCFET0NUWVBFIGh0bWw+DQo8P3htbCBlbmNvZGluZz0idXRmLTgiID8+PGh0bWwgeG1sbnM9Imh0\r\ndHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWwiIHhtbG5zOnY9InVybjpzY2hlbWFzLW1pY3Jvc29m\r\ndC1jb206dm1sIiB4bWxuczpvPSJ1cm46c2NoZW1hcy1taWNyb3NvZnQtY29tOm9mZmljZTpvZmZp\r\nY2UiPg0KDQo8aGVhZD48bWV0YSBodHRwLWVxdWl2PSJDb250ZW50LVR5cGUiIGNvbnRlbnQ9InRl\r\neHQvaHRtbDsgY2hhcnNldD11dGYtOCI+DQogICAgPCEtLSBOQU1FOiAxIENPTFVNTiAtLT4NCiAg\r\nICA8IS0tW2lmIGd0ZSBtc28gMTVdPg0KICAgIDx4bWw+DQogICAgICAgIDxvOk9mZmljZURvY3Vt\r\nZW50U2V0dGluZ3M+DQogICAgICAgIDxvOkFsbG93UE5HLz4NCiAgICAgICAgPG86UGl4ZWxzUGVy\r\nSW5jaD45NjwvbzpQaXhlbHNQZXJJbmNoPg0KICAgICAgICA8L286T2ZmaWNlRG9jdW1lbnRTZXR0\r\naW5ncz4NCiAgICA8L3htbD4NCiAgICA8IVtlbmRpZl0tLT4NCiAgICA8bWV0YSBjaGFyc2V0PSJV\r\nVEYtOCI+DQogICAgPG1ldGEgbmFtZT0ieC1hcHBsZS1kaXNhYmxlLW1lc3NhZ2UtcmVmb3JtYXR0\r\naW5nIj4NCiAgICA8bWV0YSBuYW1lPSJmb3JtYXQtZGV0ZWN0aW9uIiBjb250ZW50PSJ0ZWxlcGhv\r\nbmU9bm8sIGRhdGU9bm8sIGFkZHJlc3M9bm8sIGVtYWlsPW5vLCB1cmw9bm8iPg0KICAgIDxtZXRh\r\nIGh0dHAtZXF1aXY9IlgtVUEtQ29tcGF0aWJsZSIgY29udGVudD0iSUU9ZWRnZSI+DQogICAgPG1l\r\ndGEgbmFtZT0idmlld3BvcnQiIGNvbnRlbnQ9IndpZHRoPWRldmljZS13aWR0aCwgaW5pdGlhbC1z\r\nY2FsZT0xIj4NCiAgICA8bWV0YSBuYW1lPSJhdXRob3IiIGNvbnRlbnQ9IlByb3RvbiAmbHQ7bm8t\r\ncmVwbHlAZHJpdmUucHJvdG9uLm1lJmd0OyI+DQogICAgPG1ldGEgbmFtZT0iZGVzY3JpcHRpb24i\r\nIGNvbnRlbnQ9Ik5ldyBpdGVtIHNoYXJlZCB3aXRoIHlvdSI+DQogICAgPHRpdGxlPkJyaWFuIFN0\r\ndWZmbGViZWFuIHNoYXJlZCBhbiBpdGVtIHdpdGggeW91PC90aXRsZT4NCg0KDQo8c3R5bGUgdHlw\r\nZT0idGV4dC9jc3MiPkBtZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1pbi13aWR0aDo3NjhweCl7LnRl\r\nbXBsYXRlQ29udGFpbmVye3dpZHRoOiA2MDBweCAhaW1wb3J0YW50O319QG1lZGlhIG9ubHkgc2Ny\r\nZWVuIGFuZCAobWF4LXdpZHRoOiA1MjBweCl7Ym9keSx0YWJsZSx0ZCxwLGF7LXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiBub25lICFpbXBvcnRhbnQ7fWJvZHl7d2lkdGg6IDEwMCUgIWltcG9ydGFu\r\ndDsgbWluLXdpZHRoOiAxMDAlICFpbXBvcnRhbnQ7fS5tY25SZXRpbmFJbWFnZXttYXgtd2lkdGg6\r\nIDEwMCUgIWltcG9ydGFudDt9Lm1jbkJ1dHRvbkNvbnRlbnRDb250YWluZXIsLm1jblRleHRDb250\r\nZW50Q29udGFpbmVye21heC13aWR0aDogMTAwJSAhaW1wb3J0YW50OyB3aWR0aDogMTAwJSAhaW1w\r\nb3J0YW50O30ubWNuVGV4dENvbnRlbnR7cGFkZGluZy1yaWdodDogMzJweCAhaW1wb3J0YW50OyBw\r\nYWRkaW5nLWxlZnQ6IDMycHggIWltcG9ydGFudDt9aDF7Zm9udC1zaXplOiAyMnB4ICFpbXBvcnRh\r\nbnQ7IGxpbmUtaGVpZ2h0OiAxLjI1ZW0gIWltcG9ydGFudDt9I3RlbXBsYXRlQm9keSAubWNuVGV4\r\ndENvbnRlbnQsI3RlbXBsYXRlQm9keSAubWNuVGV4dENvbnRlbnQgcHtmb250LXNpemU6IDE2cHgg\r\nIWltcG9ydGFudDsgbGluZS1oZWlnaHQ6IDEuNWVtICFpbXBvcnRhbnQ7fSN0ZW1wbGF0ZUZvb3Rl\r\nciAubWNuVGV4dENvbnRlbnQsI3RlbXBsYXRlRm9vdGVyIC5tY25UZXh0Q29udGVudCBwe2ZvbnQt\r\nc2l6ZTogMTRweCAhaW1wb3J0YW50OyBsaW5lLWhlaWdodDogMS41ZW0gIWltcG9ydGFudDt9fTwv\r\nc3R5bGU+PC9oZWFkPg0KDQo8Ym9keSBzdHlsZT0iaGVpZ2h0OiAxMDAlOyBtYXJnaW46IDA7IHBh\r\nZGRpbmc6IDA7IHdpZHRoOiAxMDAlOyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtp\r\ndC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBiYWNrZ3JvdW5kLWNvbG9yOiAjZjVmNGYyOyI+DQog\r\nICAgPCEtLVtpZiAhZ3RlIG1zbyA5XT48IS0tLS0+PHNwYW4gY2xhc3M9Im1jblByZXZpZXdUZXh0\r\nIiBzdHlsZT0iZm9udC1zaXplOiAwcHg7IGxpbmUtaGVpZ2h0OiAwcHg7IG1heC1oZWlnaHQ6IDBw\r\neDsgbWF4LXdpZHRoOiAwcHg7IG9wYWNpdHk6IDA7IG92ZXJmbG93OiBoaWRkZW47IHZpc2liaWxp\r\ndHk6IGhpZGRlbjsgbXNvLWhpZGU6IGFsbDsgZGlzcGxheTogbm9uZTsiPk5ldyBpdGVtIHNoYXJl\r\nZCB3aXRoIHlvdTwvc3Bhbj48IS0tPCFbZW5kaWZdLS0+DQogICAgPGNlbnRlcj4NCiAgICAgICAg\r\nPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFj\r\naW5nPSIwIiBoZWlnaHQ9IjEwMCUiIHdpZHRoPSIxMDAlIiBpZD0iYm9keVRhYmxlIiBzdHlsZT0i\r\nYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFi\r\nbGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7IGhlaWdodDogMTAwJTsgbWFyZ2luOiAwOyBwYWRkaW5nOiAwOyB3\r\naWR0aDogMTAwJTsgYmFja2dyb3VuZC1jb2xvcjogI2Y1ZjRmMjsiPg0KICAgICAgICAgICAgPHRy\r\nPg0KICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249InRvcCIgaWQ9ImJv\r\nZHlDZWxsIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGhlaWdodDog\r\nMTAwJTsgbWFyZ2luOiAwOyBwYWRkaW5nOiA4cHg7IHdpZHRoOiAxMDAlOyBib3JkZXItdG9wOiAw\r\nOyI+DQogICAgICAgICAgICAgICAgICAgIDwhLS0gQkVHSU4gVEVNUExBVEUgLy8gLS0+DQogICAg\r\nICAgICAgICAgICAgICAgIDwhLS1baWYgKGd0ZSBtc28gOSl8KElFKV0+DQogICAgICAgICAgICAg\r\nICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIwIiBj\r\nZWxscGFkZGluZz0iMCIgd2lkdGg9IjYwMCIgc3R5bGU9IndpZHRoOjYwMHB4OyI+PHRyPjx0ZCBh\r\nbGlnbj0iY2VudGVyIiB2YWxpZ249InRvcCIgd2lkdGg9IjYwMCIgc3R5bGU9IndpZHRoOjYwMHB4\r\nOyI+DQogICAgICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgICAgICAg\r\nICA8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRo\r\nPSIxMDAlIiBjbGFzcz0idGVtcGxhdGVDb250YWluZXIiIHN0eWxlPSJib3JkZXItY29sbGFwc2U6\r\nIGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgYm9yZGVyOiAwOyBib3JkZXItcmFkaXVzOiAxNnB4OyBtYXgtd2lkdGg6IDYwMHB4OyI+DQo8\r\ndHI+DQogICAgPHRkIHZhbGlnbj0idG9wIiBpZD0idGVtcGxhdGVIZWFkZXIiIHN0eWxlPSJtc28t\r\nbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13\r\nZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgYmFja2dyb3VuZC1jb2xvcjogI2ZmZmZmZjsg\r\nYmFja2dyb3VuZC1pbWFnZTogbm9uZTsgYmFja2dyb3VuZC1yZXBlYXQ6IG5vLXJlcGVhdDsgYmFj\r\na2dyb3VuZC1wb3NpdGlvbjogY2VudGVyOyBiYWNrZ3JvdW5kLXNpemU6IGNvdmVyOyBib3JkZXIt\r\ndG9wOiAwOyBib3JkZXItYm90dG9tOiAwOyBwYWRkaW5nLXRvcDogMHB4OyBwYWRkaW5nLWJvdHRv\r\nbTogMHB4OyBib3JkZXItcmFkaXVzOiAxNnB4IDE2cHggMCAwOyI+DQogICAgICAgIDx0YWJsZSBi\r\nb3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNs\r\nYXNzPSJtY25JbWFnZUJsb2NrIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFw\r\nc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBw\r\ndDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsiPg0KICAgICAgICAgICAgPHRib2R5IGNsYXNzPSJtY25JbWFnZUJsb2NrT3V0ZXIiPg0K\r\nICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9w\r\nIiBjbGFzcz0ibWNuSW1hZ2VCbG9ja0lubmVyIiBzdHlsZT0icGFkZGluZzogMTZweCAxNnB4IDBw\r\neCAxNnB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAg\r\nICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJsZWZ0IiB3aWR0aD0iMTAwJSIgYm9yZGVyPSIwIiBj\r\nZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIGNsYXNzPSJtY25JbWFnZUNvbnRlbnRDb250\r\nYWluZXIiIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7\r\nIG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgY2xh\r\nc3M9Im1jbkltYWdlQ29udGVudCIgdmFsaWduPSJ0b3AiIHN0eWxlPSJwYWRkaW5nOiAxNnB4IDE2\r\ncHggMHB4IDE2cHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iaHR0cHM6Ly9kcml2ZS5w\r\ncm90b24ubWUvIiB0YXJnZXQ9Il9ibGFuayIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBl\r\neGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyBsaW5lLWhlaWdodDogaW5oZXJpdDsgY29sb3I6ICM2ZDRhZmY7IGZvbnQtd2Vp\r\nZ2h0OiBub3JtYWw7IHRleHQtZGVjb3JhdGlvbjogdW5kZXJsaW5lOyI+PGltZyBhbGlnbj0iY2Vu\r\ndGVyIiBhbHQ9IlByb3RvbiBEcml2ZSIgc3JjPSJjaWQ6NzBmODkwZDE3OGVhZmI5MjczNzZAZHJp\r\ndmUucHJvdG9uLm1lIiB3aWR0aD0iMTUwIiBzdHlsZT0id2lkdGg6IDM1LjQ0NzclOyBtYXgtd2lk\r\ndGg6IDMwMHB4OyBwYWRkaW5nLWJvdHRvbTogMDsgdmVydGljYWwtYWxpZ246IGJvdHRvbTsgYm9y\r\nZGVyOiAwOyBoZWlnaHQ6IGF1dG87IG91dGxpbmU6IG5vbmU7IHRleHQtZGVjb3JhdGlvbjogbm9u\r\nZTsgLW1zLWludGVycG9sYXRpb24tbW9kZTogYmljdWJpYzsgZm9udC1mYW1pbHk6IEFyaWFsLCBI\r\nZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWlnaHQ6IDEuNWVt\r\nOyBjb2xvcjogIzZkNGFmZjsgZGlzcGxheTogaW5saW5lOyI+PC9hPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAg\r\nICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgPC90YWJsZT4N\r\nCiAgICA8L3RkPg0KPC90cj4NCjx0cj4NCiAgICA8dGQgdmFsaWduPSJ0b3AiIGlkPSJ0ZW1wbGF0\r\nZUJvZHkiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgYmFja2dyb3Vu\r\nZC1jb2xvcjogI2ZmZmZmZjsgYmFja2dyb3VuZC1pbWFnZTogbm9uZTsgYmFja2dyb3VuZC1yZXBl\r\nYXQ6IG5vLXJlcGVhdDsgYmFja2dyb3VuZC1wb3NpdGlvbjogY2VudGVyOyBiYWNrZ3JvdW5kLXNp\r\nemU6IGNvdmVyOyBib3JkZXItdG9wOiAwOyBib3JkZXItYm90dG9tOiAwOyBwYWRkaW5nLXRvcDog\r\nOHB4OyBwYWRkaW5nLWJvdHRvbTogOHB4OyI+PHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9\r\nIjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRCbG9jayIgc3R5\r\nbGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxl\r\nLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICA8dGJvZHkgY2xh\r\nc3M9Im1jblRleHRCbG9ja091dGVyIj4NCiAgICAgICAgPHRyPg0KICAgICAgICAgICAgPHRkIHZh\r\nbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dEJsb2NrSW5uZXIiIHN0eWxlPSJtc28tbGluZS1oZWln\r\naHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAg\r\nICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImxlZnQiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9\r\nIjAiIGNlbGxwYWRkaW5nPSIwIiB3aWR0aD0iMTAwJSIgc3R5bGU9IndpZHRoOjEwMCU7Ij48dHI+\r\nDQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgICAgICAgICA8IS0tW2lm\r\nIG1zb10+DQogICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiB3aWR0aD0iNjAwIiBzdHls\r\nZT0id2lkdGg6NjAwcHg7Ij4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAg\r\nICAgICAgICA8dGFibGUgYWxpZ249ImxlZnQiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNl\r\nbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRDb250ZW50Q29udGFpbmVy\r\nIiBzdHlsZT0ibWF4LXdpZHRoOiAxMDAlOyBtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBz\r\nZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0\r\nOyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyI+DQogICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNs\r\nYXNzPSJtY25UZXh0Q29udGVudCIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5\r\nOyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyB3b3JkLWJyZWFrOiBicmVhay13b3JkOyBjb2xvcjogIzBjMGMxNDsgZm9udC1mYW1pbHk6\r\nIEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWln\r\naHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBsZWZ0OyBwYWRkaW5nLXRvcDogOHB4OyBwYWRkaW5nLWJv\r\ndHRvbTogMTJweDsgcGFkZGluZy1yaWdodDogMzJweDsgcGFkZGluZy1sZWZ0OiAzMnB4OyI+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxoMSBzdHlsZT0iZGlzcGxheTogYmxvY2s7\r\nIG1hcmdpbjogMDsgcGFkZGluZzogMDsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBBcmlh\r\nbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDI0cHg7IGZvbnQtc3R5bGU6IG5v\r\ncm1hbDsgZm9udC13ZWlnaHQ6IGJvbGQ7IGxpbmUtaGVpZ2h0OiAxLjI1ZW07IGxldHRlci1zcGFj\r\naW5nOiAwcHg7IHRleHQtYWxpZ246IGxlZnQ7Ij5OZXcgaXRlbSBzaGFyZWQgd2l0aCB5b3U8L2gx\r\nPjxwIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIgc3R5bGU9InBhZGRpbmc6IDBweDsg\r\nbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGNvbG9yOiAjMGMwYzE0OyBmb250LWZh\r\nbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBsaW5l\r\nLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGxlZnQ7IG1hcmdpbjogMTJweCAwcHg7Ij48c3Ry\r\nb25nPkJyaWFuIFN0dWZmbGViZWFuPC9zdHJvbmc+IChicmlhbkBiYXlmcm9udGNhcGl0YWxsbGMu\r\nY29tKSBzaGFyZWQgYW4gaXRlbSB3aXRoIHlvdTo8L3A+PHAgY2xhc3M9Im1jblRleHRDb250ZW50\r\nQ29udGFpbmVyIiBzdHlsZT0icGFkZGluZzogMHB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhh\r\nY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBz\r\nYW5zLXNlcmlmOyBmb250LXNpemU6IDE2cHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgdGV4dC1hbGln\r\nbjogbGVmdDsgbWFyZ2luOiAxMnB4IDBweDsiPjxzcGFuIHN0eWxlPSJjb2xvcjogIzY2NjsiPjwv\r\nc3Bhbj48L3A+PHAgc3R5bGU9Im1hcmdpbjogMTJweCAwOyBtc28tbGluZS1oZWlnaHQtcnVsZTog\r\nZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsgYm9yZGVyOiAxcHggc29saWQgI0VBRTdFNDsgYm9yZGVyLXJhZGl1czogNHB4\r\nOyBwYWRkaW5nOiA2cHggMTZweDsiPjxpbWcgYWxpZ249Im1pZGRsZSIgYWx0PSIiIHNyYz0iY2lk\r\nOmZvbGRlci1pY29uLWZvci1zaGFyaW5nLWVtYWlsQGRyaXZlLnByb3Rvbi5tZSIgd2lkdGg9IjIw\r\nIiBoZWlnaHQ9IjIwIiBzdHlsZT0ibWF4LXdpZHRoOiA0MHB4O3BhZGRpbmctYm90dG9tOiAwO2Rp\r\nc3BsYXk6IGlubGluZS1ibG9jayAhaW1wb3J0YW50O3ZlcnRpY2FsLWFsaWduOiB0ZXh0LWJvdHRv\r\nbTtib3JkZXI6IDA7d2lkdGg6IDIwcHg7aGVpZ2h0OiAyMHB4O21hcmdpbi1yaWdodDogNXB4OyI+\r\nIDxiPkZvbGRlcjwvYj48L3A+ICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAg\r\nICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0K\r\nICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0K\r\nICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAg\r\nICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAgICAgPC90cj48L3RhYmxl\r\nPg0KICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgPC90ZD4NCiAgICAg\r\nICAgPC90cj4NCiAgICA8L3Rib2R5Pg0KPC90YWJsZT4NCjx0YWJsZSBib3JkZXI9IjAiIGNlbGxw\r\nYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25CdXR0b25C\r\nbG9jayIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsg\r\nbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICA8\r\ndGJvZHkgY2xhc3M9Im1jbkJ1dHRvbkJsb2NrT3V0ZXIiPg0KICAgICAgICA8dHI+DQogICAgICAg\r\nICAgICA8dGQgdmFsaWduPSJ0b3AiIGFsaWduPSJsZWZ0IiBjbGFzcz0ibWNuQnV0dG9uQmxvY2tJ\r\nbm5lciIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyB0ZXh0LWFsaWdu\r\nOiBjZW50ZXI7IHBhZGRpbmctbGVmdDogMzJweDsgcGFkZGluZy1yaWdodDogMzJweDsgcGFkZGlu\r\nZy10b3A6IDBweDsgcGFkZGluZy1ib3R0b206IDMycHg7Ij4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5n\r\nPSIwIiBjbGFzcz0ibWNuQnV0dG9uQ29udGVudENvbnRhaW5lciIgc3R5bGU9Im1zby10YWJsZS1s\r\nc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBib3JkZXItY29sbGFwc2U6IHNl\r\ncGFyYXRlOyI+DQogICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJtaWRk\r\nbGUiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICA8YSBjbGFzcz0ibWNuQnV0dG9uIG1haWxpbmctYnV0dG9u\r\nIiB0aXRsZT0iQWNjZXB0IGl0ZW0gaW4gUHJvdG9uIERyaXZlIiBocmVmPSJodHRwczovL2RyaXZl\r\nLnByb3Rvbi5tZS84VlRfNFM4dngzZldrNkZaTFpWMW5hOFdmcnB0T0h3NXNrUGxfX2RSVXVTSGt6\r\nUHZjNmZTTXhCVWJ0QndWeXhpZ1Q0XzducER6QmRJNFdETHBMcjkxQT09L21wVW1rdkd6Nm12Mzky\r\nSHQzSlhkeGhpY0FPOEF1NVp5VmlXWnJ2d2JnY2E5WXBRWHZaVC1vdEJJc2o2dVZqU0g3ekt1d1dV\r\nekZiYUEtTGNDLU8wRG1BPT0/aW52aXRhdGlvbj0zbkhvb1JYTHExcWd2OFRVbXBQdVdBJmVtYWls\r\nPXJpY2slNDBtYXZyaXgub25lIiB0YXJnZXQ9Il9ibGFuayIgc3R5bGU9Im1zby1saW5lLWhlaWdo\r\ndC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1z\r\nZXJpZjsgZm9udC1zaXplOiAxNnB4OyBwYWRkaW5nLWxlZnQ6IDMycHg7IHBhZGRpbmctcmlnaHQ6\r\nIDMycHg7IHBhZGRpbmctdG9wOiAxMnB4OyBwYWRkaW5nLWJvdHRvbTogMTJweDsgZGlzcGxheTog\r\nYmxvY2s7IGZvbnQtd2VpZ2h0OiBub3JtYWw7IGxldHRlci1zcGFjaW5nOiAxcHg7IGxpbmUtaGVp\r\nZ2h0OiAxLjVlbTsgdGV4dC1hbGlnbjogY2VudGVyOyB0ZXh0LWRlY29yYXRpb246IG5vbmU7IGNv\r\nbG9yOiAjRkZGRkZGOyBib3JkZXItcmFkaXVzOiA4cHg7IGJhY2tncm91bmQtY29sb3I6ICM2ZDRh\r\nZmY7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4N\r\nCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aSBzdHlsZT0iZm9udC1m\r\nYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7Zm9udC1zaXplOiAxNnB4O3BhZGRp\r\nbmctbGVmdDogMzJweDtwYWRkaW5nLXJpZ2h0OiAzMnB4O3BhZGRpbmctdG9wOiAxMnB4O3BhZGRp\r\nbmctYm90dG9tOiAxMnB4O2Rpc3BsYXk6IGJsb2NrO2ZvbnQtd2VpZ2h0OiBub3JtYWw7bGV0dGVy\r\nLXNwYWNpbmc6IDFweDtsaW5lLWhlaWdodDogMS41ZW07dGV4dC1hbGlnbjogY2VudGVyO3RleHQt\r\nZGVjb3JhdGlvbjogbm9uZTtjb2xvcjogI0ZGRkZGRjsiPiZuYnNwOzwvaT4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgPHNwYW4gc3R5bGU9IiI+QWNjZXB0IGl0ZW08L3NwYW4+DQogICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvYT4NCiAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAg\r\nICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwvdGFibGU+\r\nDQogICAgPC90ZD4NCjwvdHI+PHRyPg0KICAgIDx0ZCB2YWxpZ249InRvcCIgaWQ9InRlbXBsYXRl\r\nRm9vdGVyIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGJhY2tncm91\r\nbmQtY29sb3I6ICNmZmZmZmY7IGJhY2tncm91bmQtaW1hZ2U6IG5vbmU7IGJhY2tncm91bmQtcmVw\r\nZWF0OiBuby1yZXBlYXQ7IGJhY2tncm91bmQtcG9zaXRpb246IGNlbnRlcjsgYmFja2dyb3VuZC1z\r\naXplOiBjb3ZlcjsgYm9yZGVyLXRvcDogMDsgYm9yZGVyLWJvdHRvbTogMDsgcGFkZGluZy10b3A6\r\nIDE2cHg7IHBhZGRpbmctYm90dG9tOiAxNnB4OyBib3JkZXItcmFkaXVzOiAwIDAgMTZweCAxNnB4\r\nOyI+DQogICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2lu\r\nZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25EaXZpZGVyQmxvY2siIHN0eWxlPSJtaW4td2lk\r\ndGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBw\r\ndDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdl\r\nYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyB0YWJsZS1sYXlvdXQ6IGZpeGVkOyI+DQogICAg\r\nPHRib2R5IGNsYXNzPSJtY25EaXZpZGVyQmxvY2tPdXRlciI+DQogICAgICAgIDx0cj4NCiAgICAg\r\nICAgICAgIDx0ZCBjbGFzcz0ibWNuRGl2aWRlckJsb2NrSW5uZXIiIHN0eWxlPSJtaW4td2lkdGg6\r\nIDEwMCU7IHBhZGRpbmc6IDAgMzJweCAxNnB4IDMycHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBl\r\neGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPHRhYmxlIGNsYXNzPSJtY25EaXZpZGVyQ29u\r\ndGVudCIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIx\r\nMDAlIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItdG9wOiAxcHggc29saWQgI0Y1RjRG\r\nMjsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28t\r\ndGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRl\r\neHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0\r\nZCBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgPHNwYW4+PC9zcGFuPg0KICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAg\r\nICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAg\r\nICAgPCEtLQ0KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0ibWNuRGl2aWRlckJsb2NrSW5uZXIi\r\nIHN0eWxlPSJwYWRkaW5nOiAzMnB4OyI+DQogICAgICAgICAgICAgICAgPGhyIGNsYXNzPSJtY25E\r\naXZpZGVyQ29udGVudCIgc3R5bGU9ImJvcmRlci1ib3R0b20tY29sb3I6bm9uZTsgYm9yZGVyLWxl\r\nZnQtY29sb3I6bm9uZTsgYm9yZGVyLXJpZ2h0LWNvbG9yOm5vbmU7IGJvcmRlci1ib3R0b20td2lk\r\ndGg6MDsgYm9yZGVyLWxlZnQtd2lkdGg6MDsgYm9yZGVyLXJpZ2h0LXdpZHRoOjA7IG1hcmdpbi10\r\nb3A6MDsgbWFyZ2luLXJpZ2h0OjA7IG1hcmdpbi1ib3R0b206MDsgbWFyZ2luLWxlZnQ6MDsiIC8+\r\nDQogICAgICAgICAgICAgICAgLS0+DQogICAgICAgICAgICA8L3RkPg0KICAgICAgICA8L3RyPg0K\r\nICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0KPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAi\r\nIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRCbG9jayIgc3R5bGU9\r\nIm1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxz\r\ncGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICA8dGJvZHkgY2xhc3M9\r\nIm1jblRleHRCbG9ja091dGVyIj4NCiAgICA8dHI+DQogICAgICAgIDx0ZCB2YWxpZ249InRvcCIg\r\nY2xhc3M9Im1jblRleHRCbG9ja0lubmVyIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4\r\nYWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgIDx0YWJs\r\nZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIwIiBjZWxscGFkZGluZz0i\r\nMCIgd2lkdGg9IjEwMCUiIHN0eWxlPSJ3aWR0aDoxMDAlOyI+DQogICAgICAgICAgICAgICAgPHRy\r\nPg0KICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgICAgIDwhLS1baWYgbXNvXT4N\r\nCiAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgd2lkdGg9IjYwMCIgc3R5bGU9IndpZHRoOjYw\r\nMHB4OyI+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAgIDx0YWJsZSBhbGln\r\nbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lk\r\ndGg9IjEwMCUiIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIgc3R5bGU9Im1heC13aWR0\r\naDogMTAwJTsgbWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28t\r\ndGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAg\r\nICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAg\r\nIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jblRleHRDb250ZW50IiBzdHlsZT0icGFkZGluZy10\r\nb3A6IDE2cHg7IHBhZGRpbmctcmlnaHQ6IDMycHg7IHBhZGRpbmctYm90dG9tOiAwOyBwYWRkaW5n\r\nLWxlZnQ6IDMycHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyB3b3JkLWJyZWFr\r\nOiBicmVhay13b3JkOyBjb2xvcjogIzcwNmQ2YjsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRp\r\nY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTRweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0\r\nLWFsaWduOiBjZW50ZXI7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIHN0eWxlPSJtYXJn\r\naW46IDEycHggMDsgcGFkZGluZzogMDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1t\r\ncy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIj7CqSAyMDI0IFByb3RvbiBBRyBTd2l0emVybGFuZDxicj5Sb3V0ZSBkZSBsYSBHYWxhaXNlJm5i\r\nc3A7MzIsIDEyMjgmbmJzcDtQbGFuLWxlcy1PdWF0ZXMsIEdlbmV2YSwmbmJzcDtTd2l0emVybGFu\r\nZDwvcD4NCiAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICA8L3RyPg0K\r\nICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAg\r\nICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgIDwhW2VuZGlm\r\nXS0tPg0KDQogICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICA8L3RyPg0KICAg\r\nICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICA8L3Rk\r\nPg0KICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwvdGFibGU+DQo8dGFibGUgYm9yZGVyPSIwIiBj\r\nZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuSW1h\r\nZ2VCbG9jayIgc3R5bGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3Bh\r\nY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBtaW4td2lkdGg6IDEwMCU7Ij4NCiAg\r\nICA8dGJvZHkgY2xhc3M9Im1jbkltYWdlQmxvY2tPdXRlciI+DQogICAgPHRyPg0KICAgICAgICA8\r\ndGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJtY25JbWFnZUJsb2NrSW5uZXIiIHN0eWxlPSJtc28tbGlu\r\nZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJr\r\naXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgcGFkZGluZzogMTZweDsiPg0KICAgICAgICAgICAg\r\nPHRhYmxlIGFsaWduPSJjZW50ZXIiIHdpZHRoPSIxMDAlIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5n\r\nPSIwIiBjZWxsc3BhY2luZz0iMCIgY2xhc3M9Im1jbkltYWdlQ29udGVudENvbnRhaW5lciIgc3R5\r\nbGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNv\r\nLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBtaW4td2lkdGg6IDEwMCU7Ij4NCiAgICAgICAgICAgICAg\r\nICA8dGJvZHk+DQogICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICA8dGQg\r\nY2xhc3M9Im1jbkltYWdlQ29udGVudCIgdmFsaWduPSJ0b3AiIHN0eWxlPSJtc28tbGluZS1oZWln\r\naHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsgcGFkZGluZy1yaWdodDogMTZweDsgcGFkZGluZy1sZWZ0OiAx\r\nNnB4OyBwYWRkaW5nLXRvcDogMDsgcGFkZGluZy1ib3R0b206IDA7IHRleHQtYWxpZ246IGNlbnRl\r\ncjsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPGltZyBhbGlnbj0iY2VudGVyIiBhbHQ9IiIg\r\nc3JjPSJjaWQ6ZmZiMjJiZTI4YmMyYjEyMmE1OThAZHJpdmUucHJvdG9uLm1lIiB3aWR0aD0iMjc2\r\nIiBjbGFzcz0ibWNuUmV0aW5hSW1hZ2UiIHN0eWxlPSJib3JkZXI6IDA7IGhlaWdodDogYXV0bzsg\r\nb3V0bGluZTogbm9uZTsgdGV4dC1kZWNvcmF0aW9uOiBub25lOyAtbXMtaW50ZXJwb2xhdGlvbi1t\r\nb2RlOiBiaWN1YmljOyBtYXgtd2lkdGg6IDU1MnB4OyBwYWRkaW5nLWJvdHRvbTogMDsgdmVydGlj\r\nYWwtYWxpZ246IGJvdHRvbTsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2Vy\r\naWY7IGZvbnQtc2l6ZTogMTJweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyBkaXNwbGF5OiBpbmxpbmU7\r\nIj4NCiAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICA8L3RyPg0KICAg\r\nICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICA8L3Rk\r\nPg0KICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwvdGFibGU+DQogICAgPC90ZD4NCjwvdHI+ICAg\r\nICAgICAgICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwh\r\nLS1baWYgKGd0ZSBtc28gOSl8KElFKV0+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwv\r\ndGFibGU+DQogICAgICAgICAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgIDwhLS0gLy8gRU5EIFRFTVBMQVRFIC0tPg0KICAgICAgICAgICAgICAgICAg\r\nICA8L3RkPg0KICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICA8L3RhYmxlPg0KICAg\r\nICAgICA8L2NlbnRlcj4NCiAgICA8L2JvZHk+DQo8L2h0bWw+DQo=\r\n\r\n--b2=_zaqkaAohPbH0qLdRS7t5p963OKAShQEBAdvmO5tik\r\nContent-Type: image/png; name=logos-footer.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <ffb22be28bc2b122a598@drive.proton.me>\r\nContent-Disposition: inline; filename=logos-footer.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAigAAABwCAMAAAADkXsEAAAABGdBTUEAALGPC/xhBQAAAAFzUkdC\r\nAK7OHOkAAAAJcEhZcwAAFiUAABYlAUlSJPAAAALfUExURUdwTIpy/YZp/rfc/KOc6Ydn+76K3WxJ\r\n/97I0ZBp//CJWbx+0b6l+o1v/ubH3y7ZzdVqlo5p/fO7m29P/sXM8qiO/vi7tL7O++l3e5Z3/4tp\r\n/8mz9eSr2LXu9bae/3df/pV3//jZ0L2q/te/+XaA/bXo9+GpufnSzjKj8NrC/+SGjNLE/9Roo6Rp\r\n5KGK/cRiqNxujzq619ep3Itk/Cyo8PnBycWIy2vZ4fJgxltp+O9/e0ed4rbt9cWHyuRyhDHO0DjA\r\n1CrgyrVau+tfyJt4/8GI/3BN/21K/3BN/3hN+rCS/3VS/55+/3JL/H9O+JZ1/5p5/7KZ/ref/oVR\r\n9UZ0/4tP8pFx/+C3/1Jm/6uM/7yl/6KC/4lp/6dT5qaH/0xt/1hg/z97/7ZW4HpZ/4Nl/39g/9ix\r\n/11a/8G//59S6bbs9TiC/65U4zKJ/7zj+GhQ/4JM7Ytw/5JQ7x2f/5lS2L1X3JhR7MCr/9Kr/7jX\r\n/762/4pO5mNV/8ym/5JP345Z8fK9zcVY2SuQ/3tL9O66z+a00/+7k7H28r/e/WFl9iWX/8Wg/+q3\r\n0biU/5df681Z1l1s87d612Re+L+a/8au8cKDzsbR/RWo/7yn9qWT/rdcuceJycnJ/5eA/86QxLF0\r\n3OGw1rFZwNZb0s27/6tu4L5fspF6//a/y8LY+/B8ctSXvtqr2ta76M617eevqMKa5p9T0tKm3qCM\r\n/qVp471+06xXxZ5k5/jb0t9cztHB/8Ww/02R5lGJ6eGnrrat/2dX+7/U/0mZ40Wj4Mqg4sViqqRV\r\nzVSB7Fd67sm2/6OC9Vp08ECu3L/K/6uJ8uh1f97B5PHU2NbH//GEY8tlopuH/+TH4LqU6qmc/zu6\r\n2O24oIhf/+rN3NFom9icubKP79lsktyhtK+k/+peyeFxiN7S//rCyadWyjXI0/GNVN1vjJDG+fHN\r\nynqu9abL//20h/ife5bk7NVyobFiylqj/52w+HnLP+kAAABGdFJOUwBnRH8QICD+IP+AMd6f3v7+\r\n397dON6AWYTPvpdj3n+Fi9e/yv2m05d63k1/hd+7pNlD3PW/65P32brk5MfX58+IiN6/v4D1Cm7r\r\n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\r\n\r\n--b2=_zaqkaAohPbH0qLdRS7t5p963OKAShQEBAdvmO5tik\r\nContent-Type: image/png; name=logo-proton-drive-purple.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <70f890d178eafb927376@drive.proton.me>\r\nContent-Disposition: inline; filename=logo-proton-drive-purple.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAgAAAACECAYAAADmxpMdAAAABGdBTUEAALGPC/xhBQAAACBjSFJN\r\nAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAhGVYSWZNTQAqAAAACAAFARIA\r\nAwAAAAEAAQAAARoABQAAAAEAAABKARsABQAAAAEAAABSASgAAwAAAAEAAgAAh2kABAAAAAEAAABa\r\nAAAAAAAAAEgAAAABAAAASAAAAAEAA6ABAAMAAAABAAEAAKACAAQAAAABAAACAKADAAQAAAABAAAA\r\nhAAAAADxbG/fAAAACXBIWXMAAAsTAAALEwEAmpwYAAABWWlUWHRYTUw6Y29tLmFkb2JlLnhtcAAA\r\nAAAAPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUg\r\nNi4wLjAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIv\r\nMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgog\r\nICAgICAgICAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyI+CiAg\r\nICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgIDwvcmRm\r\nOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgoZXuEHAABAAElEQVR4Aey9\r\nB6BtR1XwP/uW15IQkhAgtERAERGlBkXQRxFIhYAJAvp9FImYQkIR/LDkRBH0A0xIA/LJXwVR4Ekx\r\nlc4DQREIWAhNWiCEkkbKyyu37P/vt2bm3HPPPee+kvfIe2TPe/fsKWvWrFkzs9aasmen1LmOAx0H\r\nOg50HOg40HGg40DHgY4DHQc6DnQc6DjQcaDjQMeBjgMdBzoOdBzoONBxoONAx4GOAx0HOg50HOg4\r\n0HGg40DHgY4DHQc6DnQc6DjQcaDjQMeBjgMdBzoOdBzoONBxoONAx4GOAx0HOg50HOg40HGg40DH\r\ngY4DHQc6DnQc6DjQcaDjQMeBjgMdBzoOdBzoONBxoONAx4GOAx0HOg50HOg40HGg40DHgY4DHQc6\r\n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\r\n\r\n--b2=_zaqkaAohPbH0qLdRS7t5p963OKAShQEBAdvmO5tik\r\nContent-Type: image/png; name=folder.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <folder-icon-for-sharing-email@drive.proton.me>\r\nContent-Disposition: inline; filename=folder.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAA\r\nAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACHSURBVHgB7dSxDcIwEIXh9w5RuGMGWIQ1vAVM\r\nAFkGWkbIGBQIeYQ0afOSSCmiSIkc6Up/rU+/bBcHOGP7Pj/U8UbitDw06hniv8IObF8XbQ4YPtTx\r\nHuI3wSM4SRKqgzFtDYX4q3ODWYZvqw2OhldcXYOjEizBEswLCg0cmchdC3TVeDE5teZ6jgMkv+hJ\r\n4UEAAAAASUVORK5CYII=\r\n\r\n--b2=_zaqkaAohPbH0qLdRS7t5p963OKAShQEBAdvmO5tik--','New item shared with you\n\n[Proton Drive](https://drive.proton.me/)\n\nNew item shared with you\n\nBrian Stufflebean (brian@bayfrontcapitalllc.com) shared an item with you:\n\nFolder\n\n[Accept item](https://drive.proton.me/8VT_4S8vx3fWk6FZLZV1na8WfrptOHw5skPl__dRUuSHkzPvc6fSMxBUbtBwVyxigT4_7npDzBdI4WDLpLr91A==/mpUmkvGz6mv392Ht3JXdxhicAO8Au5ZyViWZrvwbgca9YpQXvZT-otBIsj6uVjSH7zKuwWUzFbaA-LcC-O0DmA==?invitation=3nHooRXLq1qgv8TUmpPuWA&email=rick%40mavrix.one)\n\n© 2024 Proton AG Switzerland\nRoute de la Galaise 32, 1228 Plan-les-Ouates, Geneva, Switzerland',0,0,0,0,0,0,'2025-08-03 02:48:33','2025-12-09 19:27:01','2025-12-09 19:27:01','2025-12-09 19:27:01',NULL,NULL,NULL),
(560,4,'<E102008F-18585EE6B3B4AE47-546496D6@shopify.com>',NULL,NULL,'Settings have been changed for wqwdkv-g7.myshopify.com','mailer@shopify.com','Shopify','<!DOCTYPE html><html lang=\"en\" dir=\"ltr\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>\r\n    <!-- Yahoo will strip this. Fixes yahoo app not being mobile responsive -->\r\n  <style>@font-face {\r\nfont-family: \'Inter Variable\'; font-weight: 100 900; font-display: swap; font-style: normal; font-named-instance: \'Regular\'; src: url(\"https://cdn.jsdelivr.net/fontsource/fonts/inter:vf@latest/latin-wght-normal.woff2\") format(\"woff2\");\r\n}\r\n</style>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/><meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"/><meta name=\"x-apple-disable-message-reformatting\"/><meta name=\"color-scheme\" content=\"light dark\"/><meta name=\"supported-color-schemes\" content=\"light dark\"/><meta name=\"format-detection\" content=\"telephone=no, date=no, address=no, email=no, url=no\"/><title>Shopify</title><style data-premailer=\"ignore\">\r\n      :root {\r\n        color-scheme: light dark;\r\n      }\r\n    </style><style data-premailer=\"ignore\" type=\"text/css\">\r\n      html, body {\r\n        margin: 0 auto !important;\r\n        padding: 0 !important;\r\n        height: 100% !important;\r\n        width: 100% !important;\r\n      }\r\n\r\n      /* Paragraph reset */\r\n      p {\r\n        margin: 0;\r\n        padding: 0;\r\n      }\r\n\r\n      /* Header reset */\r\n      h1,h2,h3,h4,h5,h6 {\r\n        display: block;\r\n        margin: 0;\r\n        padding: 0;\r\n      }\r\n\r\n      /* Image reset */\r\n      img, a img {\r\n        border: 0;\r\n        height: auto;\r\n        outline: none;\r\n        text-decoration: none;\r\n      }\r\n\r\n      /* Better superscript */\r\n      sup {\r\n        font-size: 66%;\r\n        line-height: 1;\r\n        vertical-align: top;\r\n        mso-text-raise: 30%;\r\n      }\r\n\r\n      /* Default web font \'ShopifySans\' and fallback sequency */\r\n      *, body, td, h1, h2, h3, h4, p, span {\r\n        font-family: \'Inter Variable\',-apple-system, BlinkMacSystemFont, \'San Francisco\', \'Segoe UI\', Roboto, \'Helvetica Neue\', sans-serif !important;\r\n      }\r\n\r\n      /* Force correct font size */\r\n      * {\r\n        -ms-text-size-adjust: 100%;\r\n        -webkit-text-size-adjust: 100%;\r\n        text-rendering: optimizeLegibility;\r\n        -webkit-font-smoothing: antialiased;\r\n      }\r\n\r\n      /* Prevent Outlook extra spacing */\r\n      table, td {\r\n        mso-table-lspace: 0pt !important;\r\n        mso-table-rspace: 0pt !important;\r\n        mso-line-height-rule: exactly;\r\n        border-collapse: collapse !important;\r\n      }\r\n\r\n      /* Fix webkit padding */\r\n      table {\r\n        border-spacing: 0 !important;\r\n        border-collapse: collapse !important;\r\n        table-layout: fixed !important;\r\n      }\r\n\r\n      /* What it does:Prevents Windows 10 Mail from underlining links despite inline CSS. Styles for underlined links should be inline. */\r\n      a {\r\n        text-decoration: none;\r\n        color: #0A0B0D;\r\n      }\r\n\r\n      /* Fix image rendering in IE */\r\n      img {\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      /* What it does:A work-around for email clients meddling in triggered links. */\r\n      a[x-apple-data-detectors],\r\n      /* iOS */\r\n      .unstyle-auto-detected-links a, .aBn {\r\n        border-bottom: 0 !important;\r\n        cursor: default !important;\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n\r\n      /* What it does:Prevents Gmail from changing the text color in conversation threads. */\r\n      .im {\r\n        color: inherit !important;\r\n      }\r\n\r\n      /* What it does:Prevents Gmail from displaying a download button on large, non-linked images. */\r\n      u + img + div {\r\n        display: none !important;\r\n        opacity: 0.01 !important;\r\n      }\r\n\r\n      /* Center your email in Outlook.com */\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass,.ExternalClass p,.ExternalClass span,.ExternalClass font,.ExternalClass td,.ExternalClass div {\r\n        line-height: 100%;\r\n      }\r\n\r\n      img {\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      .yshortcuts a {\r\n        border-bottom: none !important;\r\n      }\r\n\r\n      .hide {\r\n        visibility: hidden;\r\n        display: none;\r\n        mso-hide: all;\r\n      }\r\n\r\n      .mbl-show {\r\n        display: none;\r\n        mso-hide: all;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      /* Gmail link fix. Doesn\'t work for users who have images blocked by default */\r\n      u + #body a {\r\n        color: inherit;\r\n        text-decoration: none;\r\n        font-size: inherit;\r\n        font-family: inherit;\r\n        font-weight: inherit;\r\n        line-height: inherit;\r\n      }\r\n\r\n      /* Gmail Android fix to add proper spacing */\r\n      div > u + .body .gm-spacing {\r\n        line-height: 100% !important;\r\n        height: 100% !important;\r\n      }\r\n\r\n      u + .compliance a, p {\r\n        color: inherit;\r\n        text-decoration: none;\r\n        font-size: inherit;\r\n        font-family: inherit;\r\n        font-weight: inherit;\r\n        line-height: inherit;\r\n      }\r\n\r\n      /* Gmail dark mode - prevents text color to be changed */\r\n      u+#body .gmail-blend-screen {\r\n        background: #000 !important;\r\n        mix-blend-mode: screen;\r\n      }\r\n\r\n      u+#body .gmail-blend-difference {\r\n        background: #000 !important;\r\n        mix-blend-mode: difference;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n\r\n      /* Shows Dark Mode-Only Content, Like Images */\r\n      .dark-img {\r\n        display: block !important;\r\n        width: auto !important;\r\n        overflow: visible !important;\r\n        float: none !important;\r\n        max-height: inherit !important;\r\n        max-width: inherit !important;\r\n        line-height: auto !important;\r\n        margin-top: 0px !important;\r\n        visibility: inherit !important;\r\n      }\r\n\r\n      .dark-icon {\r\n        display: inline !important;\r\n        width: auto !important;\r\n        overflow: visible !important;\r\n        float: none !important;\r\n        max-height: inherit !important;\r\n        visibility: inherit !important;\r\n      }\r\n\r\n      /* Hides Light Mode-Only Content, Like Images */\r\n      .light-img {\r\n        display: none;\r\n        display: none !important;\r\n      }\r\n\r\n      /* Custom Dark Mode Background Color */\r\n      .darkmode {\r\n        background-color: #202124 !important;\r\n        background: #202124 !important;\r\n      }\r\n\r\n      .darkmode-white-background {\r\n        /* Uses fefefe because iOS darkmode doesn\'t respect the color set up by the class when is ffffff */\r\n        background-color: #fefefe !important;\r\n        background: #fefefe !important;\r\n      }\r\n\r\n      .darkmode-red-background {\r\n        background-color: #C70A24 !important;\r\n        background: #C70A24 !important;\r\n      }\r\n\r\n      .darkmode-gold-background {\r\n        background-color: #FFB800 !important;\r\n        background: #FFB800 !important;\r\n      }\r\n\r\n      .darkmode-green-background {\r\n        background-color: #008060 !important;\r\n      }\r\n\r\n      .darkmode-footer-help-background {\r\n        background-color: #27282A !important;\r\n        background: #27282A !important;\r\n      }\r\n\r\n      .darkmode-gray-cta-border {\r\n        border-color: #B5B5B5 !important;\r\n      }\r\n\r\n      .darkmode-red-cta-border {\r\n        border-color: #db6071 !important;\r\n      }\r\n\r\n      .darkmode-white-border {\r\n        border-color: #ffffff !important;\r\n      }\r\n\r\n      .darkmode-gray-border {\r\n        border-color: #37393B !important;\r\n      }\r\n\r\n      .darkmode-green-border {\r\n        border-color: #008060 !important;\r\n      }\r\n\r\n      /* Custom Dark Mode Font Colors */\r\n      h1,h2,h3,h4,p,span,li,a,b {\r\n      color: #EBEBEB !important;\r\n      }\r\n\r\n      .darkmode-black-text {\r\n        color: #000000 !important;\r\n      }\r\n\r\n      .darkmode-white-text {\r\n        color: #ffffff !important;\r\n      }\r\n    }\r\n    </style><style data-premailer=\"ignore\">\r\n      /* MEDIA QUERIES */\r\n      @media screen and (max-width: 619px) {\r\n\r\n        .force-row, .container {\r\n          width: 100% !important;\r\n          max-width: 100% !important;\r\n        }\r\n\r\n        /* What it does: Forces table cells into full-width rows. */\r\n        .mob-stack {\r\n          width: 100% !important;\r\n          display: block !important;\r\n          max-width: 100% !important;\r\n        }\r\n\r\n        .mbl-hide {\r\n          display: none !important;\r\n          font-size: 0;\r\n          max-height: 0;\r\n          line-height: 0;\r\n          padding: 0;\r\n          mso-hide: all;\r\n        }\r\n\r\n        .mbl-show {\r\n          display: inline-block !important;\r\n          max-height: none !important;\r\n        }\r\n\r\n        .mbl-center {\r\n          text-align: center !important;\r\n          margin: 0 auto !important;\r\n        }\r\n\r\n        .mbl-left {\r\n          text-align: left !important;\r\n        }\r\n\r\n        .mbl-right {\r\n          text-align: right !important;\r\n        }\r\n\r\n        /*\r\n        Similar setup to Bootstrap spacing classes\r\n        m - for classes that set margin\r\n        p - for classes that set padding\r\n\r\n        t - for classes that set margin-top or padding-top\r\n        b - for classes that set margin-bottom or padding-bottom\r\n        l - for classes that set margin-left or padding-left\r\n        r - for classes that set margin-right or padding-right\r\n        x - for classes that set both *-left and *-right\r\n        y - for classes that set both *-top and *-bottom\r\n        blank - for classes that set a margin or padding on all 4 sides of the element\r\n        */\r\n       .mx-2 {\r\n        margin-left: 20px !important;\r\n        margin-right: 20px !important;\r\n       }\r\n        .px-0 {\r\n          padding-right: 0 !important;\r\n          padding-left: 0 !important\r\n        }\r\n\r\n        .px-1 {\r\n          padding-right: 16px !important;\r\n          padding-left: 16px !important\r\n        }\r\n\r\n        .px-2 {\r\n          padding-right: 20px !important;\r\n          padding-left: 20px !important\r\n        }\r\n\r\n        .px-3 {\r\n          padding-right: 30px !important;\r\n          padding-left: 30px !important\r\n        }\r\n\r\n        .px-4 {\r\n          padding-right: 40px !important;\r\n          padding-left: 40px !important\r\n        }\r\n\r\n        .px-5 {\r\n          padding-right: 50px !important;\r\n          padding-left: 50px !important\r\n        }\r\n\r\n        .px-6 {\r\n          padding-right: 60px !important;\r\n          padding-left: 60px !important\r\n        }\r\n\r\n        .py-0 {\r\n          padding-top: 0 !important;\r\n          padding-bottom: 0 !important\r\n        }\r\n\r\n        .py-1 {\r\n          padding-top: 10px !important;\r\n          padding-bottom: 10px !important\r\n        }\r\n\r\n        .py-2 {\r\n          padding-top: 20px !important;\r\n          padding-bottom: 20px !important\r\n        }\r\n\r\n        .py-3 {\r\n          padding-top: 30px !important;\r\n          padding-bottom: 30px !important\r\n        }\r\n\r\n        .py-4 {\r\n          padding-top: 40px !important;\r\n          padding-bottom: 40px !important\r\n        }\r\n\r\n        .py-5 {\r\n          padding-top: 50px !important;\r\n          padding-bottom: 50px !important\r\n        }\r\n\r\n        .py-6 {\r\n          padding-top: 60px !important;\r\n          padding-bottom: 60px !important\r\n        }\r\n\r\n        .pt-0 {\r\n          padding-top: 0 !important\r\n        }\r\n\r\n        .pt-1 {\r\n          padding-top: 10px !important\r\n        }\r\n\r\n        .pt-2 {\r\n          padding-top: 20px !important\r\n        }\r\n\r\n        .pt-3 {\r\n          padding-top: 30px !important\r\n        }\r\n\r\n        .pt-4 {\r\n          padding-top: 40px !important\r\n        }\r\n\r\n        .pt-5 {\r\n          padding-top: 50px !important\r\n        }\r\n\r\n        .pt-6 {\r\n          padding-top: 60px !important;\r\n        }\r\n\r\n        .pb-0 {\r\n          padding-bottom: 0 !important\r\n        }\r\n\r\n        .pb-1 {\r\n          padding-bottom: 10px !important\r\n        }\r\n\r\n        .pb-2 {\r\n          padding-bottom: 20px !important\r\n        }\r\n\r\n        .pb-3 {\r\n          padding-bottom: 30px !important\r\n        }\r\n\r\n        .pb-4 {\r\n          padding-bottom: 40px !important\r\n        }\r\n\r\n        .pb-5 {\r\n          padding-bottom: 50px !important\r\n        }\r\n\r\n        .pb-6 {\r\n          padding-bottom: 60px !important;\r\n        }\r\n\r\n        .pr-0 {\r\n          padding-right: 0 !important\r\n        }\r\n\r\n        .pr-1 {\r\n          padding-right: 10px !important\r\n        }\r\n\r\n        .pr-2 {\r\n          padding-right: 20px !important\r\n        }\r\n\r\n        .pr-3 {\r\n          padding-right: 30px !important\r\n        }\r\n\r\n        .pr-4 {\r\n          padding-right: 40px !important\r\n        }\r\n\r\n        .pr-5 {\r\n          padding-right: 50px !important\r\n        }\r\n\r\n        .pr-6 {\r\n          padding-right: 60px !important;\r\n        }\r\n\r\n        .pl-0 {\r\n          padding-left: 0 !important\r\n        }\r\n\r\n        .pl-1 {\r\n          padding-left: 10px !important\r\n        }\r\n\r\n        .pl-2 {\r\n          padding-left: 20px !important\r\n        }\r\n\r\n        .pl-3 {\r\n          padding-left: 30px !important\r\n        }\r\n\r\n        .pl-4 {\r\n          padding-left: 40px !important\r\n        }\r\n\r\n        .pl-5 {\r\n          padding-left: 50px !important\r\n        }\r\n\r\n        .pl-6 {\r\n          padding-left: 60px !important;\r\n        }\r\n\r\n        .pl-8 {\r\n          padding-left: 80px !important;\r\n        }\r\n      }\r\n      @media only screen and (max-width: 480px){\r\n        .mbl-no-side-border {\r\n          border-radius: 0px !important;\r\n          border-left: none !important;\r\n          border-right: none !important;\r\n        }\r\n      }\r\n    </style></head>\r\n  \r\n    \r\n    <!-- So that mobile will display zoomed in -->\r\n    \r\n    <!-- enable media queries for windows phone 8 -->\r\n    \r\n    <!-- fixes email not full width ios gmail -->\r\n    \r\n    <!-- Enables Dark Mode in email client user agents -->\r\n    \r\n    \r\n    <!-- Prevent email clients automatically detecting and generating links out of phone numbers, dates, addresses, email addresses and url\'s -->\r\n    \r\n    \r\n    <!-- Premailer styles automatically inline - for transactional emails -->\r\n    \r\n    <!--[if !mso]><!-->\r\n    \r\n    <!--<![endif]-->\r\n    \r\n    \r\n    <!--[if gte mso 9]>\r\n      <xml>\r\n        <o:OfficeDocumentSettings>\r\n          <o:AllowPNG />\r\n          <o:PixelsPerInch>96</o:PixelsPerInch>\r\n        </o:OfficeDocumentSettings>\r\n      </xml>\r\n      <style data-premailer=\"ignore\" type=\"text/css\">\r\n      body,table,td,div,p,span,a,strong,h1,h2,h3,h4,h5,h6 {\r\n        font-family: Arial, sans-serif !important;\r\n      }\r\n\r\n      table {\r\n        border-collapse: collapse !important;\r\n      }\r\n\r\n      sup {\r\n        font-size: 100% !important;\r\n      }\r\n      </style>\r\n      <![endif]-->\r\n  \r\n  <body id=\"body\" class=\"body\" style=\"margin: 0; padding: 0;\" bgcolor=\"#ffffff\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">\r\n    <!-- 100% background wrapper (grey background) -->\r\n    <table class=\"editorContainer\" role=\"Newsletter\" aria-roledescription=\"email\" aria-label=\"Shopify\" lang=\"en\" dir=\"ltr\" border=\"0\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-size: max(14px, 1rem);\">\r\n      <tbody><tr>\r\n        <td class=\"darkmode\" align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"\">\r\n          <table class=\"container editorContainer\" role=\"presentation\" border=\"0\" width=\"470\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 470px; max-width: 470px;\">\r\n            <tbody><tr>\r\n              <!-- START CONTENT -->\r\n              <!-- ADD YOUR MODULES IN THE TD BELOW -->\r\n              <td class=\"contentContainer darkmode\" align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"\">\r\n                <div style=\"max-width: 470px; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif; font-weight: 400; font-size: 14px; line-height: 22px; margin: 0 auto;\">\r\n                  <!--[if (mso 16)]>\r\n                  <table role=\"presentation\" width=\"470\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                  <tr>\r\n                  <td valign=\"top\">\r\n                  <![endif]-->\r\n\r\n                  <div class=\"mbl-hide\" style=\"font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif; font-weight: 400; font-size: 14px; line-height: 22px;\">\r\n                    \r\n\r\n<table class=\"spacer darkmode\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n    <tbody><tr>\r\n        <td align=\"center\" height=\"20\" style=\"max-height: 20px; font-size: 0px; line-height: 20px;\"> </td>\r\n    </tr>\r\n</tbody></table>\r\n\r\n                  </div>\r\n\r\n                  <!-- ROUNDED BORDER WRAPPER -->\r\n                  <table class=\"mbl-no-side-border darkmode-gray-border\" role=\"presentation\" border=\"0\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; max-width: 470px; border-radius: 8px; border-collapse: separate !important; overflow: hidden; border: 1px solid #E3E3E3;\">\r\n                    <tbody><tr>\r\n                      <td class=\"transactionalContainer darkmode\" align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"\">\r\n                        <!--[if (gte mso 9)|(IE)]>\r\n                        <table role=\"presentation\" width=\"470\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                        <tr>\r\n                        <td valign=\"top\">\r\n                        <![endif]-->\r\n                        <!-- PRIORITY BAR -->\r\n                        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                          <tbody><tr>\r\n                            \r\n                          </tr>\r\n                        </tbody></table>\r\n                        <!-- END PRIORITY BAR -->\r\n                        <!-- TRANSACTIONAL CONTENT -->\r\n                        \r\n\r\n<table class=\"spacer darkmode\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n    <tbody><tr>\r\n        <td align=\"center\" height=\"20\" style=\"max-height: 20px; font-size: 0px; line-height: 20px;\"> </td>\r\n    </tr>\r\n</tbody></table>\r\n\r\n                        \r\n        \r\n\r\n        \r\n\r\n\r\n\r\n\r\n\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width: 100%;\" width=\"100%\">\r\n  <tbody><tr>\r\n    <td class=\"px-2 darkmode\" style=\"padding: 0px 20px;\" align=\"left\" bgcolor=\"#ffffff\">\r\n      <p style=\"font-size: 14px; line-height: 22px; color: #000000; font-weight: 400; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif;\">\r\n        \r\n                \r\n                \r\n                The following change was recently made for your store <a href=\"https://wqwdkv-g7.myshopify.com/admin\" style=\"text-decoration: none !important; color: #005BD3 !important; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif;\" target=\"_blank\">https://wqwdkv-g7.myshopify.com/admin</a> :\r\n            \r\n      </p>\r\n    </td>\r\n  </tr>\r\n</tbody></table>\r\n\r\n\r\n<table class=\"spacer darkmode\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n    <tbody><tr>\r\n        <td align=\"center\" height=\"16\" style=\"max-height: 16px; font-size: 0px; line-height: 16px;\"> </td>\r\n    </tr>\r\n</tbody></table>\r\n\r\n\r\n\r\n        \r\n        \r\n\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width: 100%;\" width=\"100%\">\r\n  <tbody><tr>\r\n    <td class=\"px-2 pl-4 darkmode\" style=\"padding: 0px 40px 0px 45px;\" align=\"left\" bgcolor=\"#ffffff\">\r\n      <!--[if mso]><table role=\"presentation\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td width=\"470\" align=\"left\"><![endif]-->\r\n      <ul class=\"glist\" style=\"margin-top: 0px; margin-bottom: 0px; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif; padding: 0px;\" align=\"left\" type=\"disc\">\r\n        <li style=\"margin-bottom: 0px; color: #000000; font-size: 14px; line-height: 20px;\">\r\n          <span style=\"color: #000000; font-size: 14px; line-height: 20px; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif;\">\r\n            \r\n                    My Store Admin changed primary domain from shop.mavrix.one to wqwdkv-g7.myshopify.com\r\n                \r\n          </span>\r\n        </li>\r\n      </ul>\r\n      <!--[if mso]></td></tr></table><![endif]-->\r\n    </td>\r\n  </tr>\r\n</tbody></table>\r\n\r\n\r\n        \r\n\r\n<table class=\"spacer darkmode\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n    <tbody><tr>\r\n        <td align=\"center\" height=\"16\" style=\"max-height: 16px; font-size: 0px; line-height: 16px;\"> </td>\r\n    </tr>\r\n</tbody></table>\r\n\r\n\r\n        \r\n        \r\n\r\n\r\n\r\n\r\n\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width: 100%;\" width=\"100%\">\r\n  <tbody><tr>\r\n    <td class=\"px-2 darkmode\" style=\"padding: 0px 20px;\" align=\"left\" bgcolor=\"#ffffff\">\r\n      <p style=\"font-size: 14px; line-height: 22px; color: #000000; font-weight: 400; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif;\">\r\n        \r\n                \r\n                \r\n                If this is an expected change, then all is well! If you did not authorize this change, please contact Shopify Support at <a href=\"https://help.shopify.com/en/support\" style=\"text-decoration: none !important; color: #005BD3 !important; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif;\" target=\"_blank\">https://help.shopify.com/en/support</a> and we&#39;ll be happy to help sort it out.\r\n            \r\n      </p>\r\n    </td>\r\n  </tr>\r\n</tbody></table>\r\n\r\n\r\n<table class=\"spacer darkmode\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n    <tbody><tr>\r\n        <td align=\"center\" height=\"16\" style=\"max-height: 16px; font-size: 0px; line-height: 16px;\"> </td>\r\n    </tr>\r\n</tbody></table>\r\n\r\n\r\n\r\n        \r\n\r\n<table class=\"spacer darkmode\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n    <tbody><tr>\r\n        <td align=\"center\" height=\"20\" style=\"max-height: 20px; font-size: 0px; line-height: 20px;\"> </td>\r\n    </tr>\r\n</tbody></table>\r\n\r\n    \r\n                        <!-- END TRANSACTIONAL CONTENT -->\r\n                        <!--[if (gte mso 9)|(IE)]>\r\n                        </td>\r\n                        </tr>\r\n                        </table>\r\n                        <![endif]-->\r\n                      </td>\r\n                    </tr>\r\n                  </tbody></table>\r\n                  <!-- END ROUNDED BORDER WRAPPER -->\r\n                  <!-- TRANSACTIONAL FOOTER -->\r\n                  <table class=\"header\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width: 100%;\" width=\"100%\">\r\n                    <!-- START HD102 -->\r\n                    <tbody><tr>\r\n                      <td align=\"center\" class=\"px-2 darkmode\" style=\"padding: 0px 40px;\" bgcolor=\"#ffffff\">\r\n                        \r\n\r\n<table class=\"spacer darkmode\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n    <tbody><tr>\r\n        <td align=\"center\" height=\"16\" style=\"max-height: 16px; font-size: 0px; line-height: 16px;\"> </td>\r\n    </tr>\r\n</tbody></table>\r\n\r\n\r\n                        <a alt=\"Shopify\" href=\"https://www.shopify.com?utm_source=mozart&amp;utm_medium=email\" target=\"_blank\" style=\"text-decoration: none !important; color: #005BD3 !important; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif;\">\r\n                          <img class=\"light-img\" alt=\"Shopify Logo\" src=\"https://cdn.shopify.com/static/email-modules-library/img/LogoPrimary_light.png\" style=\"width: 110px; height: auto; display: block; outline: none; border-style: none; border-width: 0;\" width=\"110\" height=\"auto\"/>\r\n                          <!-- The following Dark Mode logo image is hidden with MSO conditional code and inline CSS, but will be revealed once Dark Mode is triggered -->\r\n                          <!--[if !mso]><! -->\r\n                          <div class=\"dark-img\" style=\"display: none; overflow: hidden; width: 0px; max-height: 0px; max-width: 0px; line-height: 0px; visibility: hidden; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif; font-weight: 400; font-size: 14px;\">\r\n                            <img alt=\"Shopify Logo\" src=\"https://cdn.shopify.com/static/email-modules-library/img/ShopifyLogo_Primary_Trans.png\" style=\"width: 110px; height: auto; display: block; outline: none; border-style: none; border-width: 0;\" width=\"110\" height=\"auto\"/>\r\n                          </div>\r\n                          <!--<![endif]-->\r\n                        </a>\r\n\r\n                      </td>\r\n                    </tr>\r\n                    <!-- END HD102 -->\r\n                  </tbody></table>\r\n                  <table class=\"compliance\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width: 100%;\" width=\"100%\">\r\n                    <!-- START CM901 -->\r\n                      <tbody><tr>\r\n                        <td class=\"px-2 darkmode\" style=\"padding: 0px;\" align=\"center\" bgcolor=\"#ffffff\">\r\n                          \r\n\r\n<table class=\"spacer darkmode\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n    <tbody><tr>\r\n        <td align=\"center\" height=\"8\" style=\"max-height: 8px; font-size: 0px; line-height: 8px;\"> </td>\r\n    </tr>\r\n</tbody></table>\r\n\r\n                          <p style=\"font-size: 13px; line-height: 20px; color: #616161; font-weight: 400; font-family: &#39;Inter Variable&#39;, -apple-system, BlinkMacSystemFont, &#39;San Francisco&#39;, &#39;Segoe UI&#39;, Roboto, &#39;Helvetica Neue&#39;, sans-serif;\">\r\n                            15‍1 O&#39;Con‍nor Str‍eet, Gro‍und fl‍oor, Ot‍tawa ON, K2P 2L8\r\n                          </p>\r\n                        </td>\r\n                      </tr>\r\n                      \r\n                      <!-- END CM901 -->\r\n                  </tbody></table>\r\n                  <!-- END TRANSACTIONAL FOOTER -->\r\n                  <!--[if (mso 16)]>\r\n                  </td>\r\n                  </tr>\r\n                  </table>\r\n                  <![endif]-->\r\n                </div>\r\n              </td>\r\n              <!-- END CONTENT -->\r\n            </tr>\r\n          </tbody></table>\r\n        </td>\r\n      </tr>\r\n    </tbody></table>\r\n    <!--100% background wrapper (grey background) -->\r\n  \r\n\r\n</body></html>','The following change was recently made for your\r\nstore https://wqwdkv-g7.myshopify.com/admin :\r\n\r\n*\r\n\r\nMy Store Admin changed primary domain from\r\nshop.mavrix.one to wqwdkv-g7.myshopify.com\r\n\r\nIf this is an expected change, then all is well!\r\nIf you did not authorize this change, please contact Shopify\r\nSupport at https://help.shopify.com/en/support and we\'ll be happy\r\nto help sort it out.\r\n\r\nShopify Logo\r\n\r\nShopify Logo\r\n\r\n\r\n( https://www.shopify.com?utm_source=mozart&utm_medium=email )\r\n\r\n15‍1 O\'Con‍nor Str‍eet,\r\nGro‍und fl‍oor, Ot‍tawa ON, K2P 2L8',0,0,0,0,0,0,'2025-08-03 21:26:39','2025-12-09 19:27:02','2025-12-09 19:27:02','2025-12-09 19:27:02',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(561,4,'<5SA6TD6SE11XGZ635NE1XB0CM4@news.proton.me>',NULL,NULL,'Secure your desktop with Proton Drive for Windows or Mac','no-reply@notify.proton.me','Proton','--b2=_ZGgOX1uSf7n8met0CKscuWh7VXJTnaq3mKtRVPkPg\r\nContent-Type: text/html; charset=utf-8\r\nContent-Transfer-Encoding: base64\r\n\r\nPCFET0NUWVBFIGh0bWw+DQo8P3htbCBlbmNvZGluZz0idXRmLTgiID8+PGh0bWwgeG1sbnM9Imh0\r\ndHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWwiIHhtbG5zOnY9InVybjpzY2hlbWFzLW1pY3Jvc29m\r\ndC1jb206dm1sIiB4bWxuczpvPSJ1cm46c2NoZW1hcy1taWNyb3NvZnQtY29tOm9mZmljZTpvZmZp\r\nY2UiPg0KDQo8aGVhZD48bWV0YSBodHRwLWVxdWl2PSJDb250ZW50LVR5cGUiIGNvbnRlbnQ9InRl\r\neHQvaHRtbDsgY2hhcnNldD11dGYtOCI+DQogICAgPCEtLSBOQU1FOiAxIENPTFVNTiAtLT4NCiAg\r\nICA8IS0tW2lmIGd0ZSBtc28gMTVdPg0KICAgIDx4bWw+DQogICAgICAgIDxvOk9mZmljZURvY3Vt\r\nZW50U2V0dGluZ3M+DQogICAgICAgIDxvOkFsbG93UE5HLz4NCiAgICAgICAgPG86UGl4ZWxzUGVy\r\nSW5jaD45NjwvbzpQaXhlbHNQZXJJbmNoPg0KICAgICAgICA8L286T2ZmaWNlRG9jdW1lbnRTZXR0\r\naW5ncz4NCiAgICA8L3htbD4NCiAgICA8IVtlbmRpZl0tLT4NCiAgICA8bWV0YSBjaGFyc2V0PSJV\r\nVEYtOCI+DQogICAgPG1ldGEgbmFtZT0ieC1hcHBsZS1kaXNhYmxlLW1lc3NhZ2UtcmVmb3JtYXR0\r\naW5nIj4NCiAgICA8bWV0YSBuYW1lPSJmb3JtYXQtZGV0ZWN0aW9uIiBjb250ZW50PSJ0ZWxlcGhv\r\nbmU9bm8sIGRhdGU9bm8sIGFkZHJlc3M9bm8sIGVtYWlsPW5vLCB1cmw9bm8iPg0KICAgIDxtZXRh\r\nIGh0dHAtZXF1aXY9IlgtVUEtQ29tcGF0aWJsZSIgY29udGVudD0iSUU9ZWRnZSI+DQogICAgPG1l\r\ndGEgbmFtZT0idmlld3BvcnQiIGNvbnRlbnQ9IndpZHRoPWRldmljZS13aWR0aCwgaW5pdGlhbC1z\r\nY2FsZT0xIj4NCiAgICA8bWV0YSBuYW1lPSJhdXRob3IiIGNvbnRlbnQ9IlByb3RvbiAmbHQ7bm8t\r\ncmVwbHlAbmV3cy5wcm90b24ubWUmZ3Q7Ij4NCiAgICA8bWV0YSBuYW1lPSJkZXNjcmlwdGlvbiIg\r\nY29udGVudD0iS2VlcCB5b3VyIGZpbGVzIGFjY2Vzc2libGUsIG9yZ2FuaXplZCwgYW5kIHByaXZh\r\ndGUiPg0KICAgIDx0aXRsZT5TZWN1cmUgeW91ciBkZXNrdG9wIHdpdGggUHJvdG9uIERyaXZlIGZv\r\nciBXaW5kb3dzIG9yIE1hYzwvdGl0bGU+DQoNCg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj5AbWVk\r\naWEgb25seSBzY3JlZW4gYW5kIChtaW4td2lkdGg6NzY4cHgpey50ZW1wbGF0ZUNvbnRhaW5lcnt3\r\naWR0aDogNjAwcHggIWltcG9ydGFudDt9fUBtZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1heC13aWR0\r\naDogNTIwcHgpe2JvZHksdGFibGUsdGQscCxhLGxpey13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nbm9uZSAhaW1wb3J0YW50O31ib2R5e3dpZHRoOiAxMDAlICFpbXBvcnRhbnQ7IG1pbi13aWR0aDog\r\nMTAwJSAhaW1wb3J0YW50O30ubWNuUmV0aW5hSW1hZ2V7bWF4LXdpZHRoOiAxMDAlICFpbXBvcnRh\r\nbnQ7fS5tY25JbWFnZXt3aWR0aDogMTAwJSAhaW1wb3J0YW50O30ubWNuQnV0dG9uQ29udGVudENv\r\nbnRhaW5lciwubWNuVGV4dENvbnRlbnRDb250YWluZXJ7bWF4LXdpZHRoOiAxMDAlICFpbXBvcnRh\r\nbnQ7IHdpZHRoOiAxMDAlICFpbXBvcnRhbnQ7fS5tY25UZXh0Q29udGVudHtwYWRkaW5nLXJpZ2h0\r\nOiAzMnB4ICFpbXBvcnRhbnQ7IHBhZGRpbmctbGVmdDogMzJweCAhaW1wb3J0YW50O30ubWNuVGV4\r\ndENvbnRlbnQgdWx7cGFkZGluZy1pbmxpbmUtc3RhcnQ6IDI0cHggIWltcG9ydGFudDt9aDF7Zm9u\r\ndC1zaXplOiAyMnB4ICFpbXBvcnRhbnQ7IGxpbmUtaGVpZ2h0OiAxLjI1ZW0gIWltcG9ydGFudDt9\r\nI3RlbXBsYXRlQm9keSAubWNuVGV4dENvbnRlbnQsI3RlbXBsYXRlQm9keSAubWNuVGV4dENvbnRl\r\nbnQgcHtmb250LXNpemU6IDE2cHggIWltcG9ydGFudDsgbGluZS1oZWlnaHQ6IDEuNWVtICFpbXBv\r\ncnRhbnQ7fSN0ZW1wbGF0ZUZvb3RlciAubWNuVGV4dENvbnRlbnQsI3RlbXBsYXRlRm9vdGVyIC5t\r\nY25UZXh0Q29udGVudCBwe2ZvbnQtc2l6ZTogMTRweCAhaW1wb3J0YW50OyBsaW5lLWhlaWdodDog\r\nMS41ZW0gIWltcG9ydGFudDt9I3RlbXBsYXRlRm9vdGVyIC5tY25Gb2xsb3dDb250ZW50SXRlbUNv\r\nbnRhaW5lcntwYWRkaW5nLWxlZnQ6IDJweCAhaW1wb3J0YW50OyBwYWRkaW5nLXJpZ2h0OiAycHgg\r\nIWltcG9ydGFudDt9fUBtZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1heC13aWR0aDogMzUycHgpey5t\r\nY25Gb2xsb3dJY29uQ29udGVudCwubWNuRm9sbG93SWNvbkNvbnRlbnQgaW1nLnNvY2lhbC1pY29u\r\ne3dpZHRoOiAzOHB4ICFpbXBvcnRhbnQ7IGhlaWdodDogMzhweCAhaW1wb3J0YW50O30jdGVtcGxh\r\ndGVGb290ZXIgLm1jbkZvbGxvd0NvbnRlbnRJdGVtQ29udGFpbmVye3BhZGRpbmctbGVmdDogMCAh\r\naW1wb3J0YW50OyBwYWRkaW5nLXJpZ2h0OiAwICFpbXBvcnRhbnQ7fX08L3N0eWxlPjwvaGVhZD4N\r\nCg0KPGJvZHkgc3R5bGU9ImhlaWdodDogMTAwJTsgbWFyZ2luOiAwOyBwYWRkaW5nOiAwOyB3aWR0\r\naDogMTAwJTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsgYmFja2dyb3VuZC1jb2xvcjogI2Y1ZjRmMjsiPg0KICAgIDwhLS1baWYgIWd0\r\nZSBtc28gOV0+PCEtLS0tPjxzcGFuIGNsYXNzPSJtY25QcmV2aWV3VGV4dCIgc3R5bGU9ImZvbnQt\r\nc2l6ZTogMHB4OyBsaW5lLWhlaWdodDogMHB4OyBtYXgtaGVpZ2h0OiAwcHg7IG1heC13aWR0aDog\r\nMHB4OyBvcGFjaXR5OiAwOyBvdmVyZmxvdzogaGlkZGVuOyB2aXNpYmlsaXR5OiBoaWRkZW47IG1z\r\nby1oaWRlOiBhbGw7IGRpc3BsYXk6IG5vbmU7Ij5LZWVwIHlvdXIgZmlsZXMgYWNjZXNzaWJsZSwg\r\nb3JnYW5pemVkLCBhbmQgcHJpdmF0ZTwvc3Bhbj48IS0tPCFbZW5kaWZdLS0+DQogICAgPGNlbnRl\r\ncj4NCiAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9\r\nIjAiIGNlbGxzcGFjaW5nPSIwIiBoZWlnaHQ9IjEwMCUiIHdpZHRoPSIxMDAlIiBpZD0iYm9keVRh\r\nYmxlIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTog\r\nMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAt\r\nd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGhlaWdodDogMTAwJTsgbWFyZ2luOiAwOyBw\r\nYWRkaW5nOiAwOyB3aWR0aDogMTAwJTsgYmFja2dyb3VuZC1jb2xvcjogI2Y1ZjRmMjsiPg0KICAg\r\nICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249\r\nInRvcCIgaWQ9ImJvZHlDZWxsIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7\r\nIC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7IGhlaWdodDogMTAwJTsgbWFyZ2luOiAwOyBwYWRkaW5nOiA4cHg7IHdpZHRoOiAxMDAlOyBi\r\nb3JkZXItdG9wOiAwOyI+DQogICAgICAgICAgICAgICAgICAgIDwhLS0gQkVHSU4gVEVNUExBVEUg\r\nLy8gLS0+DQogICAgICAgICAgICAgICAgICAgIDwhLS1baWYgKGd0ZSBtc28gOSl8KElFKV0+DQog\r\nICAgICAgICAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxz\r\ncGFjaW5nPSIwIiBjZWxscGFkZGluZz0iMCIgd2lkdGg9IjYwMCIgc3R5bGU9IndpZHRoOjYwMHB4\r\nOyI+PHRyPjx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249InRvcCIgd2lkdGg9IjYwMCIgc3R5bGU9\r\nIndpZHRoOjYwMHB4OyI+DQogICAgICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAg\r\nICAgICAgICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNp\r\nbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0idGVtcGxhdGVDb250YWluZXIiIHN0eWxlPSJib3Jk\r\nZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1y\r\nc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgYm9yZGVyOiAwOyBib3JkZXItcmFkaXVzOiAxNnB4OyBtYXgtd2lkdGg6\r\nIDYwMHB4OyI+DQo8dHI+DQogICAgPHRkIHZhbGlnbj0idG9wIiBpZD0idGVtcGxhdGVIZWFkZXIi\r\nIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgYmFja2dyb3VuZC1jb2xv\r\ncjogI2ZmZmZmZjsgYmFja2dyb3VuZC1pbWFnZTogbm9uZTsgYmFja2dyb3VuZC1yZXBlYXQ6IG5v\r\nLXJlcGVhdDsgYmFja2dyb3VuZC1wb3NpdGlvbjogY2VudGVyOyBiYWNrZ3JvdW5kLXNpemU6IGNv\r\ndmVyOyBib3JkZXItdG9wOiAwOyBib3JkZXItYm90dG9tOiAwOyBwYWRkaW5nLXRvcDogMHB4OyBw\r\nYWRkaW5nLWJvdHRvbTogMHB4OyBib3JkZXItcmFkaXVzOiAxNnB4IDE2cHggMCAwOyI+DQogICAg\r\nICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lk\r\ndGg9IjEwMCUiIGNsYXNzPSJtY25JbWFnZUJsb2NrIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBi\r\nb3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJs\r\nZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgPHRib2R5IGNsYXNzPSJtY25JbWFnZUJs\r\nb2NrT3V0ZXIiPg0KICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgPHRk\r\nIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuSW1hZ2VCbG9ja0lubmVyIiBzdHlsZT0icGFkZGluZzog\r\nMHB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgPHRhYmxlIGFsaWduPSJsZWZ0IiB3aWR0aD0iMTAwJSIgYm9yZGVyPSIwIiBjZWxs\r\ncGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIGNsYXNzPSJtY25JbWFnZUNvbnRlbnRDb250YWlu\r\nZXIiIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1z\r\nby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgY2xhc3M9\r\nIm1jbkltYWdlQ29udGVudCIgdmFsaWduPSJ0b3AiIHN0eWxlPSJwYWRkaW5nOiAwcHg7IG1zby1s\r\naW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdl\r\nYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyB0ZXh0LWFsaWduOiBjZW50ZXI7Ij4NCiAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSJodHRwczovL2RyaXZl\r\nLnByb3Rvbi5tZS8iIHRhcmdldD0iX2JsYW5rIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6\r\nIGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IGxpbmUtaGVpZ2h0OiBpbmhlcml0OyBjb2xvcjogIzZkNGFmZjsgZm9udC13\r\nZWlnaHQ6IG5vcm1hbDsgdGV4dC1kZWNvcmF0aW9uOiB1bmRlcmxpbmU7Ij48aW1nIGFsaWduPSJj\r\nZW50ZXIiIGFsdD0iUHJvdG9uIERyaXZlIiBzcmM9ImNpZDpjMzQxMmRhMzA1ZDExMTIzN2ZlNUBu\r\nZXdzLnByb3Rvbi5tZSIgc3R5bGU9IndpZHRoOiAxMDAlOyBib3JkZXItcmFkaXVzOiAxNnB4OyBw\r\nYWRkaW5nLWJvdHRvbTogMDsgdmVydGljYWwtYWxpZ246IGJvdHRvbTsgYm9yZGVyOiAwOyBoZWln\r\naHQ6IGF1dG87IG91dGxpbmU6IG5vbmU7IHRleHQtZGVjb3JhdGlvbjogbm9uZTsgLW1zLWludGVy\r\ncG9sYXRpb24tbW9kZTogYmljdWJpYzsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNh\r\nbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyBjb2xvcjogIzZk\r\nNGFmZjsgZGlzcGxheTogaW5saW5lOyI+PC9hPiAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAg\r\nIDwvdGFibGU+DQogICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgPC90\r\ncj4NCiAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgIDwvdGFibGU+DQogICAgPC90ZD4NCjwv\r\ndHI+DQo8dHI+DQogICAgPHRkIHZhbGlnbj0idG9wIiBpZD0idGVtcGxhdGVCb2R5IiBzdHlsZT0i\r\nbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGJhY2tncm91bmQtY29sb3I6ICNmZmZm\r\nZmY7IGJhY2tncm91bmQtaW1hZ2U6IG5vbmU7IGJhY2tncm91bmQtcmVwZWF0OiBuby1yZXBlYXQ7\r\nIGJhY2tncm91bmQtcG9zaXRpb246IGNlbnRlcjsgYmFja2dyb3VuZC1zaXplOiBjb3ZlcjsgYm9y\r\nZGVyLXRvcDogMDsgYm9yZGVyLWJvdHRvbTogMDsgcGFkZGluZy10b3A6IDhweDsgcGFkZGluZy1i\r\nb3R0b206IDhweDsiPjx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2lu\r\nZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25UZXh0QmxvY2siIHN0eWxlPSJtaW4td2lkdGg6\r\nIDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsg\r\nbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtp\r\ndC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgPHRib2R5IGNsYXNzPSJtY25UZXh0Qmxv\r\nY2tPdXRlciI+DQogICAgICAgIDx0cj4NCiAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xh\r\nc3M9Im1jblRleHRCbG9ja0lubmVyIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0\r\nbHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7Ij4NCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAgICAg\r\nPHRhYmxlIGFsaWduPSJsZWZ0IiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIwIiBjZWxscGFkZGlu\r\nZz0iMCIgd2lkdGg9IjEwMCUiIHN0eWxlPSJ3aWR0aDoxMDAlOyI+PHRyPg0KICAgICAgICAgICAg\r\nICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAg\r\nICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgd2lkdGg9IjYwMCIgc3R5bGU9IndpZHRoOjYwMHB4\r\nOyI+DQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICAgICAgPHRhYmxl\r\nIGFsaWduPSJsZWZ0IiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIg\r\nd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIgc3R5bGU9Im1heC13\r\naWR0aDogMTAwJTsgbWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBt\r\nc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAg\r\nICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0idG9wIiBj\r\nbGFzcz0ibWNuVGV4dENvbnRlbnQiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3Rs\r\neTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgd29yZC1icmVhazogYnJlYWstd29yZDsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5\r\nOiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE2cHg7IGxpbmUtaGVp\r\nZ2h0OiAxLjVlbTsgdGV4dC1hbGlnbjogLW1vei1jZW50ZXI7IHBhZGRpbmctdG9wOiAzMnB4OyBw\r\nYWRkaW5nLWJvdHRvbTogMTZweDsgcGFkZGluZy1yaWdodDogMzJweDsgcGFkZGluZy1sZWZ0OiAz\r\nMnB4OyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxoMSBjbGFzcz0ibWNuVGV4\r\ndENvbnRlbnRDb250YWluZXIiIHN0eWxlPSJkaXNwbGF5OiBibG9jazsgbWFyZ2luOiAwOyBwYWRk\r\naW5nOiAwOyBjb2xvcjogIzBjMGMxNDsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNh\r\nbnMtc2VyaWY7IGZvbnQtc2l6ZTogMjRweDsgZm9udC1zdHlsZTogbm9ybWFsOyBmb250LXdlaWdo\r\ndDogYm9sZDsgbGluZS1oZWlnaHQ6IDEuMjVlbTsgbGV0dGVyLXNwYWNpbmc6IDBweDsgdGV4dC1h\r\nbGlnbjogY2VudGVyOyI+QnJpbmcgUHJvdG9uJ3MgcHJpdmFjeTxicj50byB5b3VyIGRlc2t0b3A8\r\nL2gxPiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAg\r\nICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAg\r\nICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAg\r\nICA8L3RkPg0KICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgICAgICAgICAg\r\nPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgICAgIDwvdHI+PC90YWJsZT4NCiAgICAgICAgICAg\r\nICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgIDwvdHI+DQogICAg\r\nPC90Ym9keT4NCjwvdGFibGU+DQo8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2Vs\r\nbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dEJsb2NrIiBzdHlsZT0ibWlu\r\nLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNl\r\nOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNu\r\nVGV4dEJsb2NrT3V0ZXIiPg0KICAgICAgICA8dHI+DQogICAgICAgICAgICA8dGQgdmFsaWduPSJ0\r\nb3AiIGNsYXNzPSJtY25UZXh0QmxvY2tJbm5lciIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxl\r\nOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAg\r\nICAgICAgIDx0YWJsZSBhbGlnbj0ibGVmdCIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgY2Vs\r\nbHBhZGRpbmc9IjAiIHdpZHRoPSIxMDAlIiBzdHlsZT0id2lkdGg6MTAwJTsiPjx0cj4NCiAgICAg\r\nICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4N\r\nCiAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIHdpZHRoPSI2MDAiIHN0eWxlPSJ3aWR0\r\naDo2MDBweDsiPg0KICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgICAg\r\nIDx0YWJsZSBhbGlnbj0ibGVmdCIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNp\r\nbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dENvbnRlbnRDb250YWluZXIiIHN0eWxl\r\nPSJtYXgtd2lkdGg6IDEwMCU7IG1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xs\r\nYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4N\r\nCiAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRy\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1j\r\nblRleHRDb250ZW50IiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHdv\r\ncmQtYnJlYWs6IGJyZWFrLXdvcmQ7IGNvbG9yOiAjMGMwYzE0OyBmb250LWZhbWlseTogQXJpYWws\r\nIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdodDogMS41\r\nZW07IHRleHQtYWxpZ246IC1tb3otY2VudGVyOyBwYWRkaW5nLXRvcDogOHB4OyBwYWRkaW5nLWJv\r\ndHRvbTogMTJweDsgcGFkZGluZy1yaWdodDogMzJweDsgcGFkZGluZy1sZWZ0OiAzMnB4OyI+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJtY25UZXh0Q29udGVudENv\r\nbnRhaW5lciIgc3R5bGU9InBhZGRpbmc6IDBweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0\r\nbHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IGNvbG9yOiAjMGMwYzE0OyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fu\r\ncy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246\r\nIGNlbnRlcjsgbWFyZ2luOiAxMnB4IDBweDsiPkJhY2sgdXAgYW5kIGVuY3J5cHQgZmlsZXMgZnJv\r\nbSB5b3VyIGNvbXB1dGVyLCBhY2Nlc3M8YnI+dGhlbSBhY3Jvc3MgZGV2aWNlcywgYW5kIGVkaXQg\r\nY2xvdWQgZmlsZXMgLSBldmVuIG9mZmxpbmUuPC9wPiAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAg\r\nICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgIDwh\r\nLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgIDwhW2Vu\r\nZGlmXS0tPg0KDQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgICAg\r\nIDwvdHI+PC90YWJsZT4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAg\r\nIDwvdGQ+DQogICAgICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwvdGFibGU+DQo8dGFibGUgY2xh\r\nc3M9Im1jbkJveEJsb2NrIiB3aWR0aD0iMTAwJSIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5n\r\nPSIwIiBib3JkZXI9IjAiIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTog\r\nY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAt\r\nbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyI+DQogICAgPHRib2R5IGNsYXNzPSJtY25Cb3hCbG9ja091dGVyIj4NCiAgICAgICAgPHRyPg0K\r\nICAgICAgICAgICAgPHRkIGNsYXNzPSJtY25Cb3hCbG9ja0lubmVyIiB2YWxpZ249InRvcCIgc3R5\r\nbGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAg\r\nPHRhYmxlIHdpZHRoPSIxMDAlIiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAiIGJvcmRl\r\ncj0iMCIgYWxpZ249ImxlZnQiIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBz\r\nZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0\r\nOyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyI+DQogICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgY2xhc3M9Im1jblRleHRD\r\nb250ZW50IiBhbGlnbj0iY2VudGVyIiBzdHlsZT0id29yZC1icmVhazogYnJlYWstd29yZDsgcGFk\r\nZGluZzogMTJweCAzMnB4IDMycHggMzJweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7\r\nIC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRhYmxlIGNsYXNzPSJtY25U\r\nZXh0Q29udGVudENvbnRhaW5lciBtY25Cb3hDb250ZW50Q29udGFpbmVyIiBjZWxsc3BhY2luZz0i\r\nMCIgYm9yZGVyPSIwIiBzdHlsZT0iYm9yZGVyLXJhZGl1czogMTJweDsgYmFja2dyb3VuZDogI0ZC\r\nRkFGRjsgYm9yZGVyLWNvbGxhcHNlOiBzZXBhcmF0ZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBt\r\nc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\ndHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBjbGFz\r\ncz0ibWNuQm94Q29udGVudCIgdmFsaWduPSJ0b3AiIGFsaWduPSJjZW50ZXIiIHN0eWxlPSJwYWRk\r\naW5nOiAyNHB4IDMycHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyB3b3JkLWJy\r\nZWFrOiBicmVhay13b3JkOyBjb2xvcjogIzBjMGMxNDsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2\r\nZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0\r\nZXh0LWFsaWduOiBsZWZ0OyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9\r\nIjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dEJsb2NrIiBzdHlsZT0ibWluLXdpZHRoOiAx\r\nMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1z\r\nby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNuVGV4dEJsb2Nr\r\nT3V0ZXIiPg0KICAgICAgICA8dHI+DQogICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNz\r\nPSJtY25UZXh0QmxvY2tJbm5lciIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5\r\nOyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyI+DQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgICAgIDx0\r\nYWJsZSBhbGlnbj0ibGVmdCIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9\r\nIjAiIHdpZHRoPSIxMDAlIiBzdHlsZT0id2lkdGg6MTAwJTsiPjx0cj4NCiAgICAgICAgICAgICAg\r\nICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAg\r\nICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIHdpZHRoPSI2MDAiIHN0eWxlPSJ3aWR0aDo2MDBweDsi\r\nPg0KICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgICAgIDx0YWJsZSBh\r\nbGlnbj0ibGVmdCIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdp\r\nZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dENvbnRlbnRDb250YWluZXIiIHN0eWxlPSJtYXgtd2lk\r\ndGg6IDEwMCU7IG1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNv\r\nLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAg\r\nICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jblRleHRDb250\r\nZW50IiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHdvcmQtYnJlYWs6\r\nIGJyZWFrLXdvcmQ7IGNvbG9yOiAjMGMwYzE0OyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGlj\r\nYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdodDogMS41ZW07IHRleHQt\r\nYWxpZ246IC1tb3otY2VudGVyOyBwYWRkaW5nLXRvcDogOHB4OyBwYWRkaW5nLWJvdHRvbTogMTJw\r\neDsgcGFkZGluZy1yaWdodDogMzJweDsgcGFkZGluZy1sZWZ0OiAzMnB4OyI+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIg\r\nc3R5bGU9InBhZGRpbmc6IDBweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGNv\r\nbG9yOiAjMGMwYzE0OyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsg\r\nZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGNlbnRlcjsg\r\nbWFyZ2luOiAxMnB4IDBweDsiPjxiPkdldCBQcm90b24gRHJpdmUgZm9yIFdpbmRvd3Mgb3IgTWFj\r\nPC9iPjwvcD4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAg\r\nICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAg\r\nICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAg\r\nICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAg\r\nICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8L3RyPjwvdGFibGU+DQogICAgICAg\r\nICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICA8L3RkPg0KICAgICAgICA8L3RyPg0K\r\nICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0KICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5n\r\nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25JbWFnZUJsb2NrIiBz\r\ndHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFi\r\nbGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICA8dGJv\r\nZHkgY2xhc3M9Im1jbkltYWdlQmxvY2tPdXRlciI+DQogICAgICAgICAgICA8dHI+DQogICAgICAg\r\nICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuSW1hZ2VCbG9ja0lubmVyIiBzdHls\r\nZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAg\r\nICAgPHRhYmxlIGFsaWduPSJsZWZ0IiB3aWR0aD0iMTAwJSIgYm9yZGVyPSIwIiBjZWxscGFkZGlu\r\nZz0iMCIgY2VsbHNwYWNpbmc9IjAiIGNsYXNzPSJtY25JbWFnZUNvbnRlbnRDb250YWluZXIiIHN0\r\neWxlPSJtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJs\r\nZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAg\r\nICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgY2xhc3M9Im1jbkltYWdlQ29udGVudCIg\r\ndmFsaWduPSJ0b3AiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRl\r\neHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgdGV4\r\ndC1hbGlnbjogY2VudGVyOyBwYWRkaW5nLXRvcDogOHB4OyBwYWRkaW5nLWJvdHRvbTogOHB4OyBw\r\nYWRkaW5nLXJpZ2h0OiAzMnB4OyBwYWRkaW5nLWxlZnQ6IDMycHg7Ij4NCiAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgIDxpbWcgYWxpZ249ImNlbnRlciIgYWx0PSJQcm90b24gRHJp\r\ndmUgZGVza3RvcCBhcHAiIHNyYz0iY2lkOmY3ZTlkM2E3YzQyMTljMGQ3MTgwQG5ld3MucHJvdG9u\r\nLm1lIiB3aWR0aD0iMzAwIiBjbGFzcz0ibWNuSW1hZ2UiIHN0eWxlPSJtYXgtd2lkdGg6IDYwMHB4\r\nOyBwYWRkaW5nLWJvdHRvbTogMDsgdmVydGljYWwtYWxpZ246IGJvdHRvbTsgYm9yZGVyOiAwOyBv\r\ndXRsaW5lOiBub25lOyB0ZXh0LWRlY29yYXRpb246IG5vbmU7IC1tcy1pbnRlcnBvbGF0aW9uLW1v\r\nZGU6IGJpY3ViaWM7IGJvcmRlci1yYWRpdXM6IDEycHg7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVs\r\ndmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE2cHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsg\r\nY29sb3I6ICM2NTY1NjU7IGhlaWdodDogYXV0bzsgZGlzcGxheTogaW5saW5lOyI+DQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAg\r\nICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgIDwvdHI+DQogICAgICAgIDwvdGJvZHk+DQog\r\nICAgPC90YWJsZT4NCiAgICA8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNw\r\nYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuQnV0dG9uQmxvY2siIHN0eWxlPSJtaW4t\r\nd2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6\r\nIDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgPHRib2R5IGNsYXNzPSJtY25C\r\ndXR0b25CbG9ja091dGVyIj4NCiAgICAgICAgPHRyPg0KICAgICAgICAgICAgPHRkIHZhbGlnbj0i\r\ndG9wIiBhbGlnbj0ibGVmdCIgY2xhc3M9Im1jbkJ1dHRvbkJsb2NrSW5uZXIiIHN0eWxlPSJtc28t\r\nbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13\r\nZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgdGV4dC1hbGlnbjogY2VudGVyOyBwYWRkaW5n\r\nLWxlZnQ6IDMycHg7IHBhZGRpbmctcmlnaHQ6IDMycHg7IHBhZGRpbmctdG9wOiAwcHg7IHBhZGRp\r\nbmctYm90dG9tOiAzMnB4OyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0YWJs\r\nZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgY2xhc3M9Im1jbkJ1\r\ndHRvbkNvbnRlbnRDb250YWluZXIiIHN0eWxlPSJtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10\r\nYWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsgbWFyZ2luLWxlZnQ6IGF1dG87IG1hcmdpbi1yaWdodDogYXV0\r\nbzsgYm9yZGVyLWNvbGxhcHNlOiBzZXBhcmF0ZTsiPg0KICAgICAgICAgICAgICAgICAgICA8dGJv\r\nZHk+DQogICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgPHRkIHZhbGlnbj0ibWlkZGxlIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4\r\nYWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGEgY2xhc3M9Im1j\r\nbkJ1dHRvbiBtYWlsaW5nLWJ1dHRvbiIgdGl0bGU9IiIgaHJlZj0iaHR0cHM6Ly9wcm90b24ubWUv\r\nZHJpdmUvZG93bmxvYWQiIHRhcmdldD0iX2JsYW5rIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1\r\nbGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlm\r\nOyBmb250LXNpemU6IDE2cHg7IHBhZGRpbmctbGVmdDogMzJweDsgcGFkZGluZy1yaWdodDogMzJw\r\neDsgcGFkZGluZy10b3A6IDEycHg7IHBhZGRpbmctYm90dG9tOiAxMnB4OyBkaXNwbGF5OiBibG9j\r\nazsgZm9udC13ZWlnaHQ6IG5vcm1hbDsgbGV0dGVyLXNwYWNpbmc6IDFweDsgbGluZS1oZWlnaHQ6\r\nIDEuNWVtOyB0ZXh0LWFsaWduOiBjZW50ZXI7IHRleHQtZGVjb3JhdGlvbjogbm9uZTsgY29sb3I6\r\nICNGRkZGRkY7IGJvcmRlci1yYWRpdXM6IDk5OTlweDsgYmFja2dyb3VuZC1jb2xvcjogIzZkNGFm\r\nZjsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpIHN0eWxlPSJmb250LWZh\r\nbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjtmb250LXNpemU6IDE2cHg7cGFkZGlu\r\nZy1sZWZ0OiAzMnB4O3BhZGRpbmctcmlnaHQ6IDMycHg7cGFkZGluZy10b3A6IDEycHg7cGFkZGlu\r\nZy1ib3R0b206IDEycHg7ZGlzcGxheTogYmxvY2s7Zm9udC13ZWlnaHQ6IG5vcm1hbDtsZXR0ZXIt\r\nc3BhY2luZzogMXB4O2xpbmUtaGVpZ2h0OiAxLjVlbTt0ZXh0LWFsaWduOiBjZW50ZXI7dGV4dC1k\r\nZWNvcmF0aW9uOiBub25lO2NvbG9yOiAjRkZGRkZGOyI+Jm5ic3A7PC9pPg0KICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICA8c3BhbiBzdHlsZT0iIj5Eb3dubG9hZCBub3c8L3NwYW4+DQogICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvYT4NCiAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAg\r\nICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwvdGFibGU+\r\nDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAg\r\nICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQog\r\nICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgIDwvdHI+\r\nDQogICAgPC90Ym9keT4NCjwvdGFibGU+DQo8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0i\r\nMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dEJsb2NrIiBzdHls\r\nZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUt\r\nbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgIDx0Ym9keSBjbGFz\r\ncz0ibWNuVGV4dEJsb2NrT3V0ZXIiPg0KICAgICAgICA8dHI+DQogICAgICAgICAgICA8dGQgdmFs\r\naWduPSJ0b3AiIGNsYXNzPSJtY25UZXh0QmxvY2tJbm5lciIgc3R5bGU9Im1zby1saW5lLWhlaWdo\r\ndC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAg\r\nICAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0ibGVmdCIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0i\r\nMCIgY2VsbHBhZGRpbmc9IjAiIHdpZHRoPSIxMDAlIiBzdHlsZT0id2lkdGg6MTAwJTsiPjx0cj4N\r\nCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgICAgIDwhLS1baWYg\r\nbXNvXT4NCiAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIHdpZHRoPSI2MDAiIHN0eWxl\r\nPSJ3aWR0aDo2MDBweDsiPg0KICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAg\r\nICAgICAgIDx0YWJsZSBhbGlnbj0ibGVmdCIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2Vs\r\nbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dENvbnRlbnRDb250YWluZXIi\r\nIHN0eWxlPSJtYXgtd2lkdGg6IDEwMCU7IG1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNl\r\nOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7\r\nIC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAg\r\nICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xh\r\nc3M9Im1jblRleHRDb250ZW50IiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7\r\nIC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7IHdvcmQtYnJlYWs6IGJyZWFrLXdvcmQ7IGNvbG9yOiAjMGMwYzE0OyBmb250LWZhbWlseTog\r\nQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdo\r\ndDogMS41ZW07IHRleHQtYWxpZ246IGxlZnQ7IHBhZGRpbmctdG9wOiA4cHg7IHBhZGRpbmctYm90\r\ndG9tOiAxMnB4OyBwYWRkaW5nLXJpZ2h0OiAzMnB4OyBwYWRkaW5nLWxlZnQ6IDMycHg7Ij4NCiAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHVsIHN0eWxlPSJtc28tbGluZS1oZWlnaHQt\r\ncnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVs\r\ndmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE2cHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsg\r\ndGV4dC1hbGlnbjogbGVmdDsgcGFkZGluZy1pbmxpbmUtc3RhcnQ6IDMycHg7Ij48bGkgc3R5bGU9\r\nIm1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBtYXJnaW46IDEycHggMDsgbGluZS1o\r\nZWlnaHQ6IGluaGVyaXQ7Ij48Yj5CYWNrIHVwIGRlc2t0b3AgZmlsZXM8L2I+IGZvciBhY2Nlc3Mg\r\nZXZlbiBpZiB5b3VyIGNvbXB1dGVyIGlzIGxvc3Qgb3IgZGFtYWdlPC9saT48bGkgc3R5bGU9Im1z\r\nby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBtYXJnaW46IDEycHggMDsgbGluZS1oZWln\r\naHQ6IGluaGVyaXQ7Ij48Yj5TeW5jIGRlc2t0b3AgZmlsZXM8L2I+IHRvIHlvdXIgY2xvdWQgdG8g\r\nc2VlIGNoYW5nZXMgYWNyb3NzIGFsbCBkZXZpY2VzPC9saT48bGkgc3R5bGU9Im1zby1saW5lLWhl\r\naWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBtYXJnaW46IDEycHggMDsgbGluZS1oZWlnaHQ6IGluaGVy\r\naXQ7Ij48Yj5Eb3dubG9hZCBjbG91ZC1zdG9yZWQgZmlsZXM8L2I+IHRvIGFjY2VzcyBhbmQgZWRp\r\ndCB0aGVtIG9mZmxpbmU8L2xpPjxsaSBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0\r\nbHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IG1hcmdpbjogMTJweCAwOyBsaW5lLWhlaWdodDogaW5oZXJpdDsiPjxiPlNhdmUgc3Bh\r\nY2UgYW5kIG9wdGltaXplIHN0b3JhZ2U8L2I+IG9uIHlvdXIgY29tcHV0ZXIncyBoYXJkIGRyaXZl\r\nPC9saT48L3VsPiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAg\r\nICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAg\r\nICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAg\r\nICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgICAg\r\nICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgICAgIDwvdHI+PC90YWJsZT4NCiAgICAg\r\nICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgIDwvdHI+\r\nDQogICAgPC90Ym9keT4NCjwvdGFibGU+DQo8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0i\r\nMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dEJsb2NrIiBzdHls\r\nZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUt\r\nbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgIDx0Ym9keSBjbGFz\r\ncz0ibWNuVGV4dEJsb2NrT3V0ZXIiPg0KICAgICAgICA8dHI+DQogICAgICAgICAgICA8dGQgdmFs\r\naWduPSJ0b3AiIGNsYXNzPSJtY25UZXh0QmxvY2tJbm5lciIgc3R5bGU9Im1zby1saW5lLWhlaWdo\r\ndC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAg\r\nICAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0ibGVmdCIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0i\r\nMCIgY2VsbHBhZGRpbmc9IjAiIHdpZHRoPSIxMDAlIiBzdHlsZT0id2lkdGg6MTAwJTsiPjx0cj4N\r\nCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgICAgIDwhLS1baWYg\r\nbXNvXT4NCiAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIHdpZHRoPSI2MDAiIHN0eWxl\r\nPSJ3aWR0aDo2MDBweDsiPg0KICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAg\r\nICAgICAgIDx0YWJsZSBhbGlnbj0ibGVmdCIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2Vs\r\nbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dENvbnRlbnRDb250YWluZXIi\r\nIHN0eWxlPSJtYXgtd2lkdGg6IDEwMCU7IG1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNl\r\nOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7\r\nIC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAg\r\nICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xh\r\nc3M9Im1jblRleHRDb250ZW50IiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7\r\nIC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7IHdvcmQtYnJlYWs6IGJyZWFrLXdvcmQ7IGNvbG9yOiAjMGMwYzE0OyBmb250LWZhbWlseTog\r\nQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdo\r\ndDogMS41ZW07IHRleHQtYWxpZ246IGxlZnQ7IHBhZGRpbmctdG9wOiA4cHg7IHBhZGRpbmctYm90\r\ndG9tOiAxMnB4OyBwYWRkaW5nLXJpZ2h0OiAzMnB4OyBwYWRkaW5nLWxlZnQ6IDMycHg7Ij4NCiAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9Im1jblRleHRDb250ZW50Q29u\r\ndGFpbmVyIiBzdHlsZT0icGFkZGluZzogMHB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3Rs\r\neTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5z\r\nLXNlcmlmOyBmb250LXNpemU6IDE2cHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgdGV4dC1hbGlnbjog\r\nbGVmdDsgbWFyZ2luOiAxMnB4IDBweDsiPlN0YXkgc2VjdXJlLDxicj5UaGUgUHJvdG9uIERyaXZl\r\nIHRlYW08L3A+ICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAg\r\nICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAg\r\nICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAg\r\nICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgICAg\r\nICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAgICAgPC90cj48L3RhYmxlPg0KICAgICAg\r\nICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgPC90cj4N\r\nCiAgICA8L3Rib2R5Pg0KPC90YWJsZT4NCiAgICA8L3RkPg0KPC90cj48dHI+DQogICAgPHRkIHZh\r\nbGlnbj0idG9wIiBpZD0idGVtcGxhdGVGb290ZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVs\r\nZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgYmFja2dyb3VuZC1jb2xvcjogI2ZmZmZmZjsgYmFja2dyb3VuZC1pbWFn\r\nZTogbm9uZTsgYmFja2dyb3VuZC1yZXBlYXQ6IG5vLXJlcGVhdDsgYmFja2dyb3VuZC1wb3NpdGlv\r\nbjogY2VudGVyOyBiYWNrZ3JvdW5kLXNpemU6IGNvdmVyOyBib3JkZXItdG9wOiAwOyBib3JkZXIt\r\nYm90dG9tOiAwOyBwYWRkaW5nLXRvcDogMTZweDsgcGFkZGluZy1ib3R0b206IDE2cHg7IGJvcmRl\r\nci1yYWRpdXM6IDAgMCAxNnB4IDE2cHg7Ij4NCiAgICAgICAgPHRhYmxlIGJvcmRlcj0iMCIgY2Vs\r\nbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jbkRpdmlk\r\nZXJCbG9jayIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBz\r\nZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHRhYmxl\r\nLWxheW91dDogZml4ZWQ7Ij4NCiAgICA8dGJvZHkgY2xhc3M9Im1jbkRpdmlkZXJCbG9ja091dGVy\r\nIj4NCiAgICAgICAgPHRyPg0KICAgICAgICAgICAgPHRkIGNsYXNzPSJtY25EaXZpZGVyQmxvY2tJ\r\nbm5lciIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgcGFkZGluZzogMCAzMnB4IDE2cHggMzJweDsg\r\nbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICA8dGFi\r\nbGUgY2xhc3M9Im1jbkRpdmlkZXJDb250ZW50IiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBj\r\nZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJvcmRl\r\nci10b3A6IDFweCBzb2xpZCAjRjVGNEYyOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28t\r\ndGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAg\r\nICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgPHRkIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhh\r\nY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3Bhbj48L3NwYW4+\r\nDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAg\r\nPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8IS0tDQogICAgICAgICAgICAgICAgPHRkIGNsYXNz\r\nPSJtY25EaXZpZGVyQmxvY2tJbm5lciIgc3R5bGU9InBhZGRpbmc6IDMycHg7Ij4NCiAgICAgICAg\r\nICAgICAgICA8aHIgY2xhc3M9Im1jbkRpdmlkZXJDb250ZW50IiBzdHlsZT0iYm9yZGVyLWJvdHRv\r\nbS1jb2xvcjpub25lOyBib3JkZXItbGVmdC1jb2xvcjpub25lOyBib3JkZXItcmlnaHQtY29sb3I6\r\nbm9uZTsgYm9yZGVyLWJvdHRvbS13aWR0aDowOyBib3JkZXItbGVmdC13aWR0aDowOyBib3JkZXIt\r\ncmlnaHQtd2lkdGg6MDsgbWFyZ2luLXRvcDowOyBtYXJnaW4tcmlnaHQ6MDsgbWFyZ2luLWJvdHRv\r\nbTowOyBtYXJnaW4tbGVmdDowOyIgLz4NCiAgICAgICAgICAgICAgICAtLT4NCiAgICAgICAgICAg\r\nIDwvdGQ+DQogICAgICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwvdGFibGU+DQo8dGFibGUgYm9y\r\nZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFz\r\ncz0ibWNuVGV4dEJsb2NrIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6\r\nIGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNuVGV4dEJsb2NrT3V0ZXIiPg0KICAgIDx0cj4NCiAg\r\nICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dEJsb2NrSW5uZXIiIHN0eWxlPSJt\r\nc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgPCEtLVtpZiBt\r\nc29dPg0KICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHNw\r\nYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIiB3aWR0aD0iMTAwJSIgc3R5bGU9IndpZHRoOjEwMCU7\r\nIj4NCiAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAg\r\nICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiB3aWR0\r\naD0iNjAwIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij4NCiAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0K\r\nICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9\r\nIjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRDb250ZW50Q29u\r\ndGFpbmVyIiBzdHlsZT0ibWF4LXdpZHRoOiAxMDAlOyBtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1j\r\nb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFj\r\nZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgIDx0\r\ncj4NCiAgICAgICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dENv\r\nbnRlbnQiIHN0eWxlPSJwYWRkaW5nLXRvcDogMjRweDsgcGFkZGluZy1yaWdodDogMzJweDsgcGFk\r\nZGluZy1ib3R0b206IDA7IHBhZGRpbmctbGVmdDogMzJweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6\r\nIGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IHdvcmQtYnJlYWs6IGJyZWFrLXdvcmQ7IGNvbG9yOiAjNzA2ZDZiOyBmb250\r\nLWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNHB4OyBs\r\naW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGNlbnRlcjsiPkNvbm5lY3Qgd2l0aCB0aGUg\r\nUHJvdG9uJm5ic3A7Y29tbXVuaXR5PC90ZD4NCiAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAg\r\nICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgPCEt\r\nLVtpZiBtc29dPg0KICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0K\r\nDQogICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICA8L3RyPg0KICAgICAgICAg\r\nICAgPC90YWJsZT4NCiAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICA8L3RkPg0KICAg\r\nIDwvdHI+DQogICAgPC90Ym9keT4NCjwvdGFibGU+DQoNCiAgICAgICAgPHRhYmxlIGJvcmRlcj0i\r\nMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1j\r\nbkZvbGxvd0Jsb2NrIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNv\r\nbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1z\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsi\r\nPg0KICAgICAgICAgICAgPHRib2R5IGNsYXNzPSJtY25Gb2xsb3dCbG9ja091dGVyIj4NCiAgICAg\r\nICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2\r\nYWxpZ249InRvcCIgY2xhc3M9Im1jbkZvbGxvd0Jsb2NrSW5uZXIiIHN0eWxlPSJwYWRkaW5nOiAx\r\nNnB4IDE2cHggMDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAg\r\nICAgICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3Bh\r\nY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50Q29udGFpbmVyIiBz\r\ndHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFi\r\nbGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nPHRyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGFsaWduPSJjZW50\r\nZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRk\r\naW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25Gb2xsb3dDb250\r\nZW50IiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBt\r\nc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIi\r\nIHZhbGlnbj0idG9wIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4N\r\nCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFj\r\naW5nPSIwIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFj\r\nZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\ndHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249InRvcCIgc3R5bGU9Im1z\r\nby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8IS0tW2lm\r\nIG1zb10+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIwIiBj\r\nZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAiPg0KICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCg0KICAgICAgICA8IS0tW2lmIG1zb10+DQogICAg\r\nICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249InRvcCI+DQogICAgICAgIDwhW2VuZGlmXS0t\r\nPg0KICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0i\r\nMCIgY2VsbHNwYWNpbmc9IjAiIHN0eWxlPSJkaXNwbGF5OiBpbmxpbmU7IGJvcmRlci1jb2xsYXBz\r\nZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0\r\nOyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyI+DQogICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICA8dHI+DQogICAgICAgICAg\r\nICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuRm9sbG93Q29udGVudEl0ZW1Db250YWlu\r\nZXIiIHN0eWxlPSJwYWRkaW5nLXRvcDogOHB4OyBwYWRkaW5nLXJpZ2h0OiA0cHg7IHBhZGRpbmct\r\nYm90dG9tOiA4cHg7IHBhZGRpbmctbGVmdDogNHB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhh\r\nY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFk\r\nZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuRm9sbG93Q29u\r\ndGVudEl0ZW0iIHN0eWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNw\r\nYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAg\r\nICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249Im1pZGRsZSIgc3R5bGU9\r\nIm1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5n\r\nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IiIgc3R5bGU9ImJvcmRlci1jb2xsYXBzZTogY29s\r\nbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+\r\nDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0ibWlkZGxlIiB3aWR0aD0i\r\nMzUiIGNsYXNzPSJtY25Gb2xsb3dJY29uQ29udGVudCIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1y\r\ndWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyI+DQoNCiAgICAgICAgPGEgaHJlZj0iaHR0cHM6Ly90d2l0dGVyLmNv\r\nbS9Qcm90b25Qcml2YWN5IiB0YXJnZXQ9Il9ibGFuayIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1y\r\ndWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyBsaW5lLWhlaWdodDogaW5oZXJpdDsiPjxpbWcgc3JjPSJjaWQ6OWMx\r\nYzFmMGMzYzRlZWRlNmFiYmNAbmV3cy5wcm90b24ubWUiIGFsdD0iVHdpdHRlciIgaGVpZ2h0PSIz\r\nNSIgd2lkdGg9IjM1IiBjbGFzcz0ic29jaWFsLWljb24iIHN0eWxlPSJkaXNwbGF5OiBibG9jazsg\r\nYm9yZGVyOiAwOyBoZWlnaHQ6IGF1dG87IG91dGxpbmU6IG5vbmU7IHRleHQtZGVjb3JhdGlvbjog\r\ndW5kZXJsaW5lOyAtbXMtaW50ZXJwb2xhdGlvbi1tb2RlOiBiaWN1YmljOyBmb250LWZhbWlseTog\r\nQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxMnB4OyBsaW5lLWhlaWdo\r\ndDogMS41ZW07IGNvbG9yOiAjNzA2ZDZiOyBmb250LXdlaWdodDogbm9ybWFsOyI+PC9hPg0KDQog\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Rh\r\nYmxlPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAg\r\nICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAg\r\nICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAg\r\nPC90cj4NCiAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgIDwvdGFibGU+DQogICAgICAgIDwh\r\nLS1baWYgbXNvXT4NCiAgICAgICAgPC90ZD4NCiAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAg\r\nICAgPCEtLVtpZiBtc29dPg0KICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJ0b3Ai\r\nPg0KICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJv\r\ncmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBzdHlsZT0iZGlzcGxheTog\r\naW5saW5lOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7\r\nIG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJr\r\naXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgPHRib2R5Pg0KICAgICAg\r\nICAgICAgPHRyPg0KICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jbkZv\r\nbGxvd0NvbnRlbnRJdGVtQ29udGFpbmVyIiBzdHlsZT0icGFkZGluZy10b3A6IDhweDsgcGFkZGlu\r\nZy1yaWdodDogNHB4OyBwYWRkaW5nLWJvdHRvbTogOHB4OyBwYWRkaW5nLWxlZnQ6IDRweDsgbXNv\r\nLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAt\r\nd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgPHRh\r\nYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAw\r\nJSIgY2xhc3M9Im1jbkZvbGxvd0NvbnRlbnRJdGVtIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBj\r\nb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1t\r\ncy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIj4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIg\r\ndmFsaWduPSJtaWRkbGUiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1z\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsi\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIg\r\nYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIiIHN0eWxl\r\nPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10\r\nYWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2\r\nYWxpZ249Im1pZGRsZSIgd2lkdGg9IjM1IiBjbGFzcz0ibWNuRm9sbG93SWNvbkNvbnRlbnQiIHN0\r\neWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KDQogICAgICAgIDxhIGhy\r\nZWY9Imh0dHBzOi8vcmVkZGl0LmNvbS9yL1Byb3Rvbk1haWwiIHRhcmdldD0iX2JsYW5rIiBzdHls\r\nZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGxpbmUtaGVpZ2h0OiBpbmhlcml0\r\nOyI+PGltZyBzcmM9ImNpZDoyMTZmY2Y2MThhOTgyODMxN2ZlNkBuZXdzLnByb3Rvbi5tZSIgYWx0\r\nPSJSZWRkaXQiIGhlaWdodD0iMzUiIHdpZHRoPSIzNSIgY2xhc3M9InNvY2lhbC1pY29uIiBzdHls\r\nZT0iZGlzcGxheTogYmxvY2s7IGJvcmRlcjogMDsgaGVpZ2h0OiBhdXRvOyBvdXRsaW5lOiBub25l\r\nOyB0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTsgLW1zLWludGVycG9sYXRpb24tbW9kZTogYmlj\r\ndWJpYzsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6\r\nZTogMTJweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyBjb2xvcjogIzcwNmQ2YjsgZm9udC13ZWlnaHQ6\r\nIG5vcm1hbDsiPjwvYT4NCg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Rk\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAg\r\nIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAg\r\nPC90ZD4NCiAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICA8\r\nL3RhYmxlPg0KICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgIDwvdGQ+DQogICAgICAgIDwh\r\nW2VuZGlmXS0tPg0KDQogICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgPHRkIGFsaWduPSJj\r\nZW50ZXIiIHZhbGlnbj0idG9wIj4NCiAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgIDx0YWJs\r\nZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0i\r\nMCIgc3R5bGU9ImRpc3BsYXk6IGlubGluZTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNv\r\nLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAg\r\nICAgIDx0Ym9keT4NCiAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICA8dGQgdmFsaWdu\r\nPSJ0b3AiIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50SXRlbUNvbnRhaW5lciIgc3R5bGU9InBhZGRp\r\nbmctdG9wOiA4cHg7IHBhZGRpbmctcmlnaHQ6IDRweDsgcGFkZGluZy1ib3R0b206IDhweDsgcGFk\r\nZGluZy1sZWZ0OiA0cHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAg\r\nICAgICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3Bh\r\nY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50SXRlbSIgc3R5bGU9\r\nImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRh\r\nYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0ibWlkZGxlIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0\r\nLXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRh\r\nYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5n\r\nPSIwIiB3aWR0aD0iIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxl\r\nLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\ndGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJtaWRkbGUiIHdpZHRoPSIzNSIgY2xhc3M9Im1jbkZv\r\nbGxvd0ljb25Db250ZW50IiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1t\r\ncy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIj4NCg0KICAgICAgICA8YSBocmVmPSJodHRwczovL3d3dy5saW5rZWRpbi5jb20vY29tcGFueS9w\r\ncm90b25wcml2YWN5LyIgdGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVs\r\nZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgbGluZS1oZWlnaHQ6IGluaGVyaXQ7Ij48aW1nIHNyYz0iY2lkOjE1ZDFj\r\nYjFiZmY0NDA0YmEzYzNlQG5ld3MucHJvdG9uLm1lIiBhbHQ9IkxpbmtlZEluIiBoZWlnaHQ9IjM1\r\nIiB3aWR0aD0iMzUiIGNsYXNzPSJzb2NpYWwtaWNvbiIgc3R5bGU9ImRpc3BsYXk6IGJsb2NrOyBi\r\nb3JkZXI6IDA7IGhlaWdodDogYXV0bzsgb3V0bGluZTogbm9uZTsgdGV4dC1kZWNvcmF0aW9uOiB1\r\nbmRlcmxpbmU7IC1tcy1pbnRlcnBvbGF0aW9uLW1vZGU6IGJpY3ViaWM7IGZvbnQtZmFtaWx5OiBB\r\ncmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDEycHg7IGxpbmUtaGVpZ2h0\r\nOiAxLjVlbTsgY29sb3I6ICM3MDZkNmI7IGZvbnQtd2VpZ2h0OiBub3JtYWw7Ij48L2E+DQoNCiAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGFi\r\nbGU+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAg\r\nICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICA8\r\nL3RyPg0KICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgPC90YWJsZT4NCiAgICAgICAgPCEt\r\nLVtpZiBtc29dPg0KICAgICAgICA8L3RkPg0KICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAg\r\nICA8IS0tW2lmIG1zb10+DQogICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249InRvcCI+\r\nDQogICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9y\r\nZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHN0eWxlPSJkaXNwbGF5OiBp\r\nbmxpbmU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsg\r\nbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtp\r\ndC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICA8dGJvZHk+DQogICAgICAg\r\nICAgICA8dHI+DQogICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuRm9s\r\nbG93Q29udGVudEl0ZW1Db250YWluZXIiIHN0eWxlPSJwYWRkaW5nLXRvcDogOHB4OyBwYWRkaW5n\r\nLXJpZ2h0OiA0cHg7IHBhZGRpbmctYm90dG9tOiA4cHg7IHBhZGRpbmctbGVmdDogNHB4OyBtc28t\r\nbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13\r\nZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICA8dGFi\r\nbGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAl\r\nIiBjbGFzcz0ibWNuRm9sbG93Q29udGVudEl0ZW0iIHN0eWxlPSJib3JkZXItY29sbGFwc2U6IGNv\r\nbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1z\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsi\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAg\r\nICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2\r\nYWxpZ249Im1pZGRsZSIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+\r\nDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBi\r\nb3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IiIgc3R5bGU9\r\nImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRh\r\nYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIHZh\r\nbGlnbj0ibWlkZGxlIiB3aWR0aD0iMzUiIGNsYXNzPSJtY25Gb2xsb3dJY29uQ29udGVudCIgc3R5\r\nbGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQoNCiAgICAgICAgPGEgaHJl\r\nZj0iaHR0cHM6Ly9mYWNlYm9vay5jb20vUHJvdG9uIiB0YXJnZXQ9Il9ibGFuayIgc3R5bGU9Im1z\r\nby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBsaW5lLWhlaWdodDogaW5oZXJpdDsiPjxp\r\nbWcgc3JjPSJjaWQ6ZTU5OWMyZDgxZTgwNTM0NWZhMjhAbmV3cy5wcm90b24ubWUiIGFsdD0iRmFj\r\nZWJvb2siIGhlaWdodD0iMzUiIHdpZHRoPSIzNSIgY2xhc3M9InNvY2lhbC1pY29uIiBzdHlsZT0i\r\nZGlzcGxheTogYmxvY2s7IGJvcmRlcjogMDsgaGVpZ2h0OiBhdXRvOyBvdXRsaW5lOiBub25lOyB0\r\nZXh0LWRlY29yYXRpb246IHVuZGVybGluZTsgLW1zLWludGVycG9sYXRpb24tbW9kZTogYmljdWJp\r\nYzsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTog\r\nMTJweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyBjb2xvcjogIzcwNmQ2YjsgZm9udC13ZWlnaHQ6IG5v\r\ncm1hbDsiPjwvYT4NCg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwv\r\ndGQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwv\r\ndGJvZHk+DQogICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgPC90\r\nZD4NCiAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICA8L3Rh\r\nYmxlPg0KICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgIDwvdGQ+DQogICAgICAgIDwhW2Vu\r\nZGlmXS0tPg0KDQogICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgPHRkIGFsaWduPSJjZW50\r\nZXIiIHZhbGlnbj0idG9wIj4NCiAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgIDx0YWJsZSBh\r\nbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIg\r\nc3R5bGU9ImRpc3BsYXk6IGlubGluZTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRh\r\nYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAg\r\nIDx0Ym9keT4NCiAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0\r\nb3AiIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50SXRlbUNvbnRhaW5lciIgc3R5bGU9InBhZGRpbmct\r\ndG9wOiA4cHg7IHBhZGRpbmctcmlnaHQ6IDRweDsgcGFkZGluZy1ib3R0b206IDhweDsgcGFkZGlu\r\nZy1sZWZ0OiA0cHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAg\r\nICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2lu\r\nZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50SXRlbSIgc3R5bGU9ImJv\r\ncmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxl\r\nLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAg\r\nICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRk\r\nIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0ibWlkZGxlIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1\r\nbGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRhYmxl\r\nIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIw\r\nIiB3aWR0aD0iIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxz\r\ncGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQg\r\nYWxpZ249ImNlbnRlciIgdmFsaWduPSJtaWRkbGUiIHdpZHRoPSIzNSIgY2xhc3M9Im1jbkZvbGxv\r\nd0ljb25Db250ZW50IiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4N\r\nCg0KICAgICAgICA8YSBocmVmPSJodHRwczovL2luc3RhZ3JhbS5jb20vcHJvdG9ucHJpdmFjeSIg\r\ndGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1z\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nbGluZS1oZWlnaHQ6IGluaGVyaXQ7Ij48aW1nIHNyYz0iY2lkOmQ3NDMzNzZlNzYyMmFiMjA2M2M3\r\nQG5ld3MucHJvdG9uLm1lIiBhbHQ9Ikluc3RhZ3JhbSIgaGVpZ2h0PSIzNSIgd2lkdGg9IjM1IiBj\r\nbGFzcz0ic29jaWFsLWljb24iIHN0eWxlPSJkaXNwbGF5OiBibG9jazsgYm9yZGVyOiAwOyBoZWln\r\naHQ6IGF1dG87IG91dGxpbmU6IG5vbmU7IHRleHQtZGVjb3JhdGlvbjogdW5kZXJsaW5lOyAtbXMt\r\naW50ZXJwb2xhdGlvbi1tb2RlOiBiaWN1YmljOyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGlj\r\nYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxMnB4OyBsaW5lLWhlaWdodDogMS41ZW07IGNvbG9y\r\nOiAjNzA2ZDZiOyBmb250LXdlaWdodDogbm9ybWFsOyI+PC9hPg0KDQogICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Ri\r\nb2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgPC90\r\nYWJsZT4NCiAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgPC90cj4NCiAgICAgICAg\r\nICAgIDwvdGJvZHk+DQogICAgICAgIDwvdGFibGU+DQogICAgICAgIDwhLS1baWYgbXNvXT4NCiAg\r\nICAgICAgPC90ZD4NCiAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgPCEtLVtpZiBtc29d\r\nPg0KICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJ0b3AiPg0KICAgICAgICA8IVtl\r\nbmRpZl0tLT4NCiAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBh\r\nZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBzdHlsZT0iZGlzcGxheTogaW5saW5lOyBib3JkZXIt\r\nY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3Bh\r\nY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgPHRyPg0KICAg\r\nICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jbkZvbGxvd0NvbnRlbnRJdGVt\r\nQ29udGFpbmVyIiBzdHlsZT0icGFkZGluZy10b3A6IDhweDsgcGFkZGluZy1yaWdodDogNHB4OyBw\r\nYWRkaW5nLWJvdHRvbTogOHB4OyBwYWRkaW5nLWxlZnQ6IDRweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1\r\nbGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgPHRhYmxlIGJvcmRlcj0iMCIg\r\nY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jbkZv\r\nbGxvd0NvbnRlbnRJdGVtIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRh\r\nYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJtaWRkbGUi\r\nIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIwIiBjZWxs\r\ncGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIiIHN0eWxlPSJib3JkZXItY29sbGFw\r\nc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBw\r\ndDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249Im1pZGRsZSIg\r\nd2lkdGg9IjM1IiBjbGFzcz0ibWNuRm9sbG93SWNvbkNvbnRlbnQiIHN0eWxlPSJtc28tbGluZS1o\r\nZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KDQogICAgICAgIDxhIGhyZWY9Imh0dHBzOi8vbWFz\r\ndG9kb24uc29jaWFsL0Bwcm90b25tYWlsIiB0YXJnZXQ9Il9ibGFuayIgc3R5bGU9Im1zby1saW5l\r\nLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtp\r\ndC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBsaW5lLWhlaWdodDogaW5oZXJpdDsiPjxpbWcgc3Jj\r\nPSJjaWQ6NTU1ZTliOTA3ODE0YzYxNjg0ZGJAbmV3cy5wcm90b24ubWUiIGFsdD0iTWFzdG9kb24i\r\nIGhlaWdodD0iMzUiIHdpZHRoPSIzNSIgY2xhc3M9InNvY2lhbC1pY29uIiBzdHlsZT0iZGlzcGxh\r\neTogYmxvY2s7IGJvcmRlcjogMDsgaGVpZ2h0OiBhdXRvOyBvdXRsaW5lOiBub25lOyB0ZXh0LWRl\r\nY29yYXRpb246IHVuZGVybGluZTsgLW1zLWludGVycG9sYXRpb24tbW9kZTogYmljdWJpYzsgZm9u\r\ndC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTJweDsg\r\nbGluZS1oZWlnaHQ6IDEuNWVtOyBjb2xvcjogIzcwNmQ2YjsgZm9udC13ZWlnaHQ6IG5vcm1hbDsi\r\nPjwvYT4NCg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+\r\nDQogICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgPC90ZD4NCiAg\r\nICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICA8L3RhYmxlPg0K\r\nICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgIDwvdGQ+DQogICAgICAgIDwhW2VuZGlmXS0t\r\nPg0KDQogICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIHZh\r\nbGlnbj0idG9wIj4NCiAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgIDx0YWJsZSBhbGlnbj0i\r\nY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgc3R5bGU9\r\nImRpc3BsYXk6IGlubGluZTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxz\r\ncGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgIDx0Ym9k\r\neT4NCiAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNs\r\nYXNzPSJtY25Gb2xsb3dDb250ZW50SXRlbUNvbnRhaW5lciIgc3R5bGU9InBhZGRpbmctdG9wOiA4\r\ncHg7IHBhZGRpbmctcmlnaHQ6IDRweDsgcGFkZGluZy1ib3R0b206IDhweDsgcGFkZGluZy1sZWZ0\r\nOiA0cHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAg\r\nICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIg\r\nd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50SXRlbSIgc3R5bGU9ImJvcmRlci1j\r\nb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFj\r\nZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGFsaWdu\r\nPSJjZW50ZXIiIHZhbGlnbj0ibWlkZGxlIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4\r\nYWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRhYmxlIGFsaWdu\r\nPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0\r\naD0iIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTog\r\nMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAt\r\nd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgYWxpZ249\r\nImNlbnRlciIgdmFsaWduPSJtaWRkbGUiIHdpZHRoPSIzNSIgY2xhc3M9Im1jbkZvbGxvd0ljb25D\r\nb250ZW50IiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCg0KICAg\r\nICAgICA8YSBocmVmPSJodHRwczovL3Byb3Rvbi5tZS9ibG9nIiB0YXJnZXQ9Il9ibGFuayIgc3R5\r\nbGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBsaW5lLWhlaWdodDogaW5oZXJp\r\ndDsiPjxpbWcgc3JjPSJjaWQ6NTNlY2Y0ZDgwMjgwOGQxM2NjMmFAbmV3cy5wcm90b24ubWUiIGFs\r\ndD0iQmxvZyIgaGVpZ2h0PSIzNSIgd2lkdGg9IjM1IiBjbGFzcz0ic29jaWFsLWljb24iIHN0eWxl\r\nPSJkaXNwbGF5OiBibG9jazsgYm9yZGVyOiAwOyBoZWlnaHQ6IGF1dG87IG91dGxpbmU6IG5vbmU7\r\nIHRleHQtZGVjb3JhdGlvbjogdW5kZXJsaW5lOyAtbXMtaW50ZXJwb2xhdGlvbi1tb2RlOiBiaWN1\r\nYmljOyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXpl\r\nOiAxMnB4OyBsaW5lLWhlaWdodDogMS41ZW07IGNvbG9yOiAjNzA2ZDZiOyBmb250LXdlaWdodDog\r\nbm9ybWFsOyI+PC9hPg0KDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+\r\nDQogICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICAgICAg\r\nPC90Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8\r\nL3RkPg0KICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgIDwv\r\ndGFibGU+DQogICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgPC90ZD4NCiAgICAgICAgPCFb\r\nZW5kaWZdLS0+DQoNCg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8IVtlbmRp\r\nZl0tLT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90YWJs\r\nZT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\nL3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90\r\ncj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4N\r\nCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAgPC90\r\nZD4NCiAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAg\r\nPC90YWJsZT4NCg0KPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5n\r\nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRCbG9jayIgc3R5bGU9Im1pbi13aWR0aDog\r\nMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBt\r\nc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICA8dGJvZHkgY2xhc3M9Im1jblRleHRCbG9j\r\na091dGVyIj4NCiAgICA8dHI+DQogICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jblRl\r\neHRCbG9ja0lubmVyIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4N\r\nCiAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2Vu\r\ndGVyIiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIwIiBjZWxscGFkZGluZz0iMCIgd2lkdGg9IjEw\r\nMCUiIHN0eWxlPSJ3aWR0aDoxMDAlOyI+DQogICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAg\r\nICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAg\r\nIDx0ZCB2YWxpZ249InRvcCIgd2lkdGg9IjYwMCIgc3R5bGU9IndpZHRoOjYwMHB4OyI+DQogICAg\r\nICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBi\r\nb3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNs\r\nYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIgc3R5bGU9Im1heC13aWR0aDogMTAwJTsgbWlu\r\nLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNl\r\nOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgIDx0Ym9k\r\neT4NCiAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249\r\nInRvcCIgY2xhc3M9Im1jblRleHRDb250ZW50IiBzdHlsZT0icGFkZGluZy10b3A6IDE2cHg7IHBh\r\nZGRpbmctcmlnaHQ6IDMycHg7IHBhZGRpbmctYm90dG9tOiAwOyBwYWRkaW5nLWxlZnQ6IDMycHg7\r\nIG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyB3b3JkLWJyZWFrOiBicmVhay13b3Jk\r\nOyBjb2xvcjogIzcwNmQ2YjsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2Vy\r\naWY7IGZvbnQtc2l6ZTogMTRweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBjZW50\r\nZXI7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxhIGRhdGEtdW5zdWJzY3JpYmUtbGluaz0i\r\ncHJvdG9uLm1lIiByZWw9Im5vb3BlbmVyIG5vcmVmZXJyZXIiIGhyZWY9Imh0dHBzOi8vYWNjb3Vu\r\ndC5wcm90b24ubWUvbWFpbC9kYXNoYm9hcmQjZW1haWwtc3Vic2NyaXB0aW9uIiB0YXJnZXQ9Il9i\r\nbGFuayIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBsaW5lLWhlaWdo\r\ndDogaW5oZXJpdDsgY29sb3I6ICM3MDZkNmI7IGZvbnQtd2VpZ2h0OiBub3JtYWw7IHRleHQtZGVj\r\nb3JhdGlvbjogdW5kZXJsaW5lOyI+VXBkYXRlIHlvdXIgZW1haWwgcHJlZmVyZW5jZXMgb3IgdW5z\r\ndWJzY3JpYmU8L2E+DQogICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAg\r\nPC90cj4NCiAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgPC90YWJsZT4NCiAg\r\nICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICA8\r\nIVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPC90\r\ncj4NCiAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAg\r\nICAgPC90ZD4NCiAgICA8L3RyPg0KICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0KPHRhYmxlIGJvcmRl\r\ncj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9\r\nIm1jblRleHRCbG9jayIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBj\r\nb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1t\r\ncy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIj4NCiAgICA8dGJvZHkgY2xhc3M9Im1jblRleHRCbG9ja091dGVyIj4NCiAgICA8dHI+DQogICAg\r\nICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jblRleHRCbG9ja0lubmVyIiBzdHlsZT0ibXNv\r\nLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAt\r\nd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgIDwhLS1baWYgbXNv\r\nXT4NCiAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxzcGFj\r\naW5nPSIwIiBjZWxscGFkZGluZz0iMCIgd2lkdGg9IjEwMCUiIHN0eWxlPSJ3aWR0aDoxMDAlOyI+\r\nDQogICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAg\r\nICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgd2lkdGg9\r\nIjYwMCIgc3R5bGU9IndpZHRoOjYwMHB4OyI+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAg\r\nICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIw\r\nIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRh\r\naW5lciIgc3R5bGU9Im1heC13aWR0aDogMTAwJTsgbWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29s\r\nbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6\r\nIDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsiPg0KICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICA8dHI+\r\nDQogICAgICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jblRleHRDb250\r\nZW50IiBzdHlsZT0icGFkZGluZy10b3A6IDE2cHg7IHBhZGRpbmctcmlnaHQ6IDMycHg7IHBhZGRp\r\nbmctYm90dG9tOiAwOyBwYWRkaW5nLWxlZnQ6IDMycHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBl\r\neGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyB3b3JkLWJyZWFrOiBicmVhay13b3JkOyBjb2xvcjogIzcwNmQ2YjsgZm9udC1m\r\nYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTRweDsgbGlu\r\nZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBjZW50ZXI7Ij4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgIDxwIHN0eWxlPSJtYXJnaW46IDEycHggMDsgcGFkZGluZzogMDsgbXNvLWxpbmUtaGVp\r\nZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRl\r\neHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij7CqSAyMDI0IFByb3RvbiBBRyBTd2l0emVybGFuZDxicj5S\r\nb3V0ZSBkZSBsYSBHYWxhaXNlJm5ic3A7MzIsIDEyMjgmbmJzcDtQbGFuLWxlcy1PdWF0ZXMsIEdl\r\nbmV2YSwmbmJzcDtTd2l0emVybGFuZDwvcD4NCiAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAg\r\nICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAg\r\nICA8L3RhYmxlPg0KICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPC90ZD4N\r\nCiAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgICAgICA8IS0tW2lmIG1zb10+DQog\r\nICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgIDwhW2Vu\r\nZGlmXS0tPg0KICAgICAgICA8L3RkPg0KICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwvdGFibGU+\r\nDQo8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRo\r\nPSIxMDAlIiBjbGFzcz0ibWNuSW1hZ2VCbG9jayIgc3R5bGU9ImJvcmRlci1jb2xsYXBzZTogY29s\r\nbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBt\r\naW4td2lkdGg6IDEwMCU7Ij4NCiAgICA8dGJvZHkgY2xhc3M9Im1jbkltYWdlQmxvY2tPdXRlciI+\r\nDQogICAgPHRyPg0KICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJtY25JbWFnZUJsb2Nr\r\nSW5uZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgcGFkZGluZzog\r\nMTZweDsiPg0KICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIHdpZHRoPSIxMDAlIiBi\r\nb3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgY2xhc3M9Im1jbkltYWdl\r\nQ29udGVudENvbnRhaW5lciIgc3R5bGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10\r\nYWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBtaW4td2lkdGg6IDEw\r\nMCU7Ij4NCiAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgPHRyPg0KICAg\r\nICAgICAgICAgICAgICAgICA8dGQgY2xhc3M9Im1jbkltYWdlQ29udGVudCIgdmFsaWduPSJ0b3Ai\r\nIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgcGFkZGluZy1yaWdodDog\r\nMTZweDsgcGFkZGluZy1sZWZ0OiAxNnB4OyBwYWRkaW5nLXRvcDogMDsgcGFkZGluZy1ib3R0b206\r\nIDA7IHRleHQtYWxpZ246IGNlbnRlcjsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPGltZyBh\r\nbGlnbj0iY2VudGVyIiBhbHQ9IiIgc3JjPSJjaWQ6OGMyMTc2NDhlZWQxZWZkYzcyMjRAbmV3cy5w\r\ncm90b24ubWUiIHdpZHRoPSIyNzYiIGNsYXNzPSJtY25SZXRpbmFJbWFnZSIgc3R5bGU9ImJvcmRl\r\ncjogMDsgaGVpZ2h0OiBhdXRvOyBvdXRsaW5lOiBub25lOyB0ZXh0LWRlY29yYXRpb246IG5vbmU7\r\nIC1tcy1pbnRlcnBvbGF0aW9uLW1vZGU6IGJpY3ViaWM7IG1heC13aWR0aDogNTUycHg7IHBhZGRp\r\nbmctYm90dG9tOiAwOyB2ZXJ0aWNhbC1hbGlnbjogYm90dG9tOyBmb250LWZhbWlseTogQXJpYWws\r\nIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxMnB4OyBsaW5lLWhlaWdodDogMS41\r\nZW07IGRpc3BsYXk6IGlubGluZTsiPg0KICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAg\r\nICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgIDwv\r\ndGFibGU+DQogICAgICAgIDwvdGQ+DQogICAgPC90cj4NCiAgICA8L3Rib2R5Pg0KPC90YWJsZT4N\r\nCiAgICA8L3RkPg0KPC90cj4gICAgICAgICAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgPCEtLVtpZiAoZ3RlIG1zbyA5KXwoSUUpXT4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwhW2Vu\r\nZGlmXS0tPg0KICAgICAgICAgICAgICAgICAgICAgICAgPCEtLSAvLyBFTkQgVEVNUExBVEUgLS0+\r\nDQogICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgPC90cj4NCiAgICAg\r\nICAgICAgIDwvdGFibGU+DQogICAgICAgIDwvY2VudGVyPg0KICAgIDwvYm9keT4NCjwvaHRtbD4N\r\nCg==\r\n\r\n--b2=_ZGgOX1uSf7n8met0CKscuWh7VXJTnaq3mKtRVPkPg\r\nContent-Type: image/png; name=logos-footer.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <8c217648eed1efdc7224@news.proton.me>\r\nContent-Disposition: inline; filename=logos-footer.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAigAAABwCAMAAAADkXsEAAAABGdBTUEAALGPC/xhBQAAAAFzUkdC\r\nAK7OHOkAAAAJcEhZcwAAFiUAABYlAUlSJPAAAALfUExURUdwTIpy/YZp/rfc/KOc6Ydn+76K3WxJ\r\n/97I0ZBp//CJWbx+0b6l+o1v/ubH3y7ZzdVqlo5p/fO7m29P/sXM8qiO/vi7tL7O++l3e5Z3/4tp\r\n/8mz9eSr2LXu9bae/3df/pV3//jZ0L2q/te/+XaA/bXo9+GpufnSzjKj8NrC/+SGjNLE/9Roo6Rp\r\n5KGK/cRiqNxujzq619ep3Itk/Cyo8PnBycWIy2vZ4fJgxltp+O9/e0ed4rbt9cWHyuRyhDHO0DjA\r\n1CrgyrVau+tfyJt4/8GI/3BN/21K/3BN/3hN+rCS/3VS/55+/3JL/H9O+JZ1/5p5/7KZ/ref/oVR\r\n9UZ0/4tP8pFx/+C3/1Jm/6uM/7yl/6KC/4lp/6dT5qaH/0xt/1hg/z97/7ZW4HpZ/4Nl/39g/9ix\r\n/11a/8G//59S6bbs9TiC/65U4zKJ/7zj+GhQ/4JM7Ytw/5JQ7x2f/5lS2L1X3JhR7MCr/9Kr/7jX\r\n/762/4pO5mNV/8ym/5JP345Z8fK9zcVY2SuQ/3tL9O66z+a00/+7k7H28r/e/WFl9iWX/8Wg/+q3\r\n0biU/5df681Z1l1s87d612Re+L+a/8au8cKDzsbR/RWo/7yn9qWT/rdcuceJycnJ/5eA/86QxLF0\r\n3OGw1rFZwNZb0s27/6tu4L5fspF6//a/y8LY+/B8ctSXvtqr2ta76M617eevqMKa5p9T0tKm3qCM\r\n/qVp471+06xXxZ5k5/jb0t9cztHB/8Ww/02R5lGJ6eGnrrat/2dX+7/U/0mZ40Wj4Mqg4sViqqRV\r\nzVSB7Fd67sm2/6OC9Vp08ECu3L/K/6uJ8uh1f97B5PHU2NbH//GEY8tlopuH/+TH4LqU6qmc/zu6\r\n2O24oIhf/+rN3NFom9icubKP79lsktyhtK+k/+peyeFxiN7S//rCyadWyjXI0/GNVN1vjJDG+fHN\r\nynqu9abL//20h/ife5bk7NVyobFiylqj/52w+HnLP+kAAABGdFJOUwBnRH8QICD+IP+AMd6f3v7+\r\n397dON6AWYTPvpdj3n+Fi9e/yv2m05d63k1/hd+7pNlD3PW/65P32brk5MfX58+IiN6/v4D1Cm7r\r\n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\r\n\r\n--b2=_ZGgOX1uSf7n8met0CKscuWh7VXJTnaq3mKtRVPkPg\r\nContent-Type: image/png; name=link.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <53ecf4d802808d13cc2a@news.proton.me>\r\nContent-Disposition: inline; filename=link.png\r\n\r\n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\r\nHx/rAPwHlmSLrKlhoigAAAAASUVORK5CYII=\r\n\r\n--b2=_ZGgOX1uSf7n8met0CKscuWh7VXJTnaq3mKtRVPkPg\r\nContent-Type: image/png; name=mastodon.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <555e9b907814c61684db@news.proton.me>\r\nContent-Disposition: inline; filename=mastodon.png\r\n\r\n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\r\nPyOyL8f4s6hzAAAAAElFTkSuQmCC\r\n\r\n--b2=_ZGgOX1uSf7n8met0CKscuWh7VXJTnaq3mKtRVPkPg\r\nContent-Type: image/png; name=instagram.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <d743376e7622ab2063c7@news.proton.me>\r\nContent-Disposition: inline; filename=instagram.png\r\n\r\n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\r\n\r\n--b2=_ZGgOX1uSf7n8met0CKscuWh7VXJTnaq3mKtRVPkPg\r\nContent-Type: image/png; name=facebook.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <e599c2d81e805345fa28@news.proton.me>\r\nContent-Disposition: inline; filename=facebook.png\r\n\r\n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\r\ncG0LAAAAAElFTkSuQmCC\r\n\r\n--b2=_ZGgOX1uSf7n8met0CKscuWh7VXJTnaq3mKtRVPkPg\r\nContent-Type: image/png; name=linkedin.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <15d1cb1bff4404ba3c3e@news.proton.me>\r\nContent-Disposition: inline; filename=linkedin.png\r\n\r\n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\r\n\r\n--b2=_ZGgOX1uSf7n8met0CKscuWh7VXJTnaq3mKtRVPkPg\r\nContent-Type: image/png; name=reddit.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <216fcf618a9828317fe6@news.proton.me>\r\nContent-Disposition: inline; filename=reddit.png\r\n\r\n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\r\n\r\n--b2=_ZGgOX1uSf7n8met0CKscuWh7VXJTnaq3mKtRVPkPg\r\nContent-Type: image/png; name=twitter.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <9c1c1f0c3c4eede6abbc@news.proton.me>\r\nContent-Disposition: inline; filename=twitter.png\r\n\r\n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\r\nTkSuQmCC\r\n\r\n--b2=_ZGgOX1uSf7n8met0CKscuWh7VXJTnaq3mKtRVPkPg\r\nContent-Type: image/png; name=drive-desktop-sync.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <f7e9d3a7c4219c0d7180@news.proton.me>\r\nContent-Disposition: inline; filename=drive-desktop-sync.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAApEAAAHlCAYAAACtcKeBAARMvUlEQVR4Aez9a5Bd15Xnie29z735\r\nQD6ABJAAMgkCIERCUoJSlYhqdauq1MyqZnfb1ZTdUR1Jj9qOqP5UEyGPJybscEyEwxFIhCf8ccJf\r\nXOHqL+X5pAhmTPnRck/Yo26BVpc0zRKkksRMUSALJAgQCTABJJAP5OPec/as/1p7nbPPufcCoEr1\r\noLiXdHle++yzz7kXeX/3vx7bmGTJkiVLlixZsmTJkiVLlixZsmTJkiVLlixZsmTJkiVLlixZsmTJ\r\nkiVLlixZsmTJkiVLlixZsmTJkiVLlixZsmTJkiVLlixZsmTJkiVLlixZsmTJkiVLlixZsmTJkiVL\r\nlixZsmTJkiVLlixZsmTJkiVLlixZsmTJkiVLlixZsmTJkiVLlixZsmTJkiVLlixZsmTJkiVLlixZ\r\nsmTJkiVLlixZsmTJkiVLlixZsmTJkiVLlixZsmTJkiVLlixZsmTJkiVLlixZsmTJkiVLlixZsmTJ\r\nkiVLlixZsmTJkiVLlixZsmTJkiVLlixZsmTJkiVLlixZsmTJkiVLlixZsmTJkiVLlixZsmTJkiVL\r\nlixZsmTJkiVLZrz3NqzZ3n39j/ff7j33Sft136Bjjzvncf0+qX/vH39e1NI+zZi0z+Y1my/zuCt5\r\nM3D8T2o76Jk87vk2+3n8OJ/mWSVLlixZsmTJPlUm4NBvnwKIwkYMJDFY/nIAoxfsBvXbb7z9t+v7\r\n6zA8CI77g2u/duaprDmG/rD4uOsNfg5PbtMLir3rjwfNfuc+TftkyZIlS5Ys2afMeiExXg5SzKo2\r\n/UGl75VsdU51fnysqe4N7mPQ+Or99D9eP1a//37j6j1v8NjiMTxOya2Pvx9E9gfLxwP908GoHNO2\r\n9R8Qvxg4J0uWLFmyZMk+BfZ0wNILa0/erl2l7KvXZRofq/dTqaR6Tn+4jc/rBR29ZnxeBYuDXMOD\r\nrxef0wThQWOr9xerv3VF8GncyfG5xgwG5Hhf/z6fBLb1Z9TveSRLlixZsmTJPsX2ODirQ0QvPFWg\r\n1ASaQXDYCyb1Puv99Gvbrx8TxfSZAffY7G/Qdeuw1/+8wTA1WP1rjnsQnMdjGNS2P9wOHksTtqv1\r\n+njq+3rH3RxfsmTJkiVLluzvgjnzt2DKXrLO/yU4wLa3ljHB0orsk6VCiC2RCvttpfH1QA6OK4At\r\nLppyn7aJAUX6akKKQp7su3jR8PUwhqof6bs+xiaEypirNvV98Tir+6+gq9l3Ha7rY+6FMn2Wep8m\r\nMnne9fOeZHVFEn3E94v1+jX0ufaOVcYjY5D71DHFxz/O2JIlS5YsWbJkv/KmMDQYippqWO8x06NM\r\n9lO1+qtv9bb1vnvd1L3Xw/kXL3rXf6xPGmN/dS/ur9mu7o6vj63XFR6376fsDXqmuh3vbz6bar0a\r\nb9VG99Wfj1i/9r199X82Tfisv4fJkiVLlixZsk+JxcpVczsGg/q+/kCp62ZAPGHctv+r6QruHw/Z\r\n3Pe4fpqg2RxvL/BV4Fcfw9OMvemqrgD9yWNu3lu/EIC4bR1O43a970n/dk0lc/Cz7j+O+HjVTwLK\r\nZMmSJUuW7FfWml/yzVjCXhhrHhusVjWVN2/7x+VV+5rA+bRg9LhxN9v1O9bbb3P8vc9ocN+DxtAc\r\nf7Ovfs+7eub152zM06vB1au/6mjM4+G4Oa4nKdHRE+gbk5osWbJkyZIl+5Wz3oSSx4MYoGRQxnQ/\r\nd65eoz9cDVbJeiFs0Bh7ASl25TaP9b+W7jem113dXPZXOvuNvV/bwdfud8+Pfy8Gn1s9s18EPJ90\r\nT/X3NFmyZMmSJUv2KbVeN/JgeIghohc6HhdnGPfd278cE0CtYLUcoX8SZD55X3+Qat5/L/Q14wmf\r\nvu+nUWz7P+/4WfbGX/ae14xB7fd+Nvvqry7G7Y2pj6PZpt/YkyVLlixZsmSfIqsgYZCLl/f0lN6R\r\nZexS7l9PsNfl3F/JM6ZK8BkEar3wGUPU41y0g5NvmmOu7utJkDj4fuI+9Nk8Xn0cBImDx/qkvppj\r\nePK4Bz3j3njSfgCbLFmyZMmSJftUWW8CiS4fDzv9wGsQkABCmrF5MWjFkDRIdVSV8nHJI09ST/td\r\nv/e6vfcyKCmnue/xsY5PBtt6+97n+jjVtVeh7Xdu/Rk8bmyDnlv/Z2Siz1KyZMmSJUuW7BNmv5gi\r\nFGcV94OruP+mO7QXevpBhqwrMPVTBJt99XPl9ofOZjme3rH1u69eSKufV8/mbt7bIKDr364ac7/n\r\nUL++vB/9AK4/JD7JlR/Hr34cYO11pz/unn+xz12yZMmSJUuW7O+cfdwv9SawmT5T9T1J5XvSS6/T\r\n2+9gWJJ9g4Gw6vPxdS1joKpfqx+M1WHVmMFxhL33MGisg5TF5r03763/ffV7Vo/vcxAADnJ1D1It\r\n+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\r\n\r\n--b2=_ZGgOX1uSf7n8met0CKscuWh7VXJTnaq3mKtRVPkPg\r\nContent-Type: image/png; name=drive-logo-header.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <c3412da305d111237fe5@news.proton.me>\r\nContent-Disposition: inline; filename=drive-logo-header.png\r\n\r\n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\r\nTkSuQmCC\r\n\r\n--b2=_ZGgOX1uSf7n8met0CKscuWh7VXJTnaq3mKtRVPkPg--','Keep your files accessible, organized, and private\n\n[Proton Drive](https://drive.proton.me/)\n\nBring Proton\'s privacy\nto your desktop\n\nBack up and encrypt files from your computer, access\nthem across devices, and edit cloud files - even offline.\n\nGet Proton Drive for Windows or Mac\n\n[Proton Drive desktop app]\n\n[Download now](https://proton.me/drive/download)\n\n- Back up desktop files for access even if your computer is lost or damage\n- Sync desktop files to your cloud to see changes across all devices\n- Download cloud-stored files to access and edit them offline\n- Save space and optimize storage on your computer\'s hard drive\n\nStay secure,\nThe Proton Drive team\n\nConnect with the Proton community\n\n[Twitter](https://twitter.com/ProtonPrivacy)\n\n[Reddit](https://reddit.com/r/ProtonMail)\n\n[LinkedIn](https://www.linkedin.com/company/protonprivacy/)\n\n[Facebook](https://facebook.com/Proton)\n\n[Instagram](https://instagram.com/protonprivacy)\n\n[Mastodon](https://mastodon.social/@protonmail)\n\n[Blog](https://proton.me/blog)\n\n[Update your email preferences or unsubscribe](https://account.proton.me/mail/dashboard#email-subscription)\n\n© 2024 Proton AG Switzerland\nRoute de la Galaise 32, 1228 Plan-les-Ouates, Geneva, Switzerland',0,0,0,0,0,0,'2025-08-03 22:15:52','2025-12-09 19:27:02','2025-12-09 19:27:02','2025-12-09 19:27:02',NULL,NULL,NULL),
(562,4,'<CAGOCFXj1gbJ0+Ev=4M9Hh7UWY6bQmd_5z1zQUSZ=ZP=CXb+vpA@mail.gmail.com>',NULL,NULL,'Re: Signal Group...','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"auto\">Hi Rick. </div><div dir=\"auto\"><br></div><div dir=\"auto\">My signal number is 813-504-0074. <br clear=\"all\"><br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-size:10px;font-family:Inter,sans-serif;color:rgb(0,0,0)\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;line-height:16px;font-family:Inter,sans-serif\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:medium;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px;font-family:Inter,sans-serif\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:medium;border-collapse:collapse;display:revert;font-family:Inter,sans-serif\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px;font-family:Inter,sans-serif\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td align=\"left\" valign=\"middle\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:0px 0px 10px;font-family:Inter,sans-serif\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:15px 0px 0px;font-family:Inter,sans-serif\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td align=\"left\" valign=\"middle\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-weight:bold;font-size:20px;font-family:Inter,sans-serif\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:medium;border-collapse:collapse;padding-left:5px;font-family:Inter,sans-serif\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block; font-family: Inter, sans-serif;\"></td></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-size:12px;font-family:Inter,sans-serif\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-weight:bold;font-size:12px;font-family:Inter,sans-serif\">Lithium Battery Company</span></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-weight:bold;font-size:12px;font-family:Inter,sans-serif\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"font-size:12px;font-family:Inter,sans-serif;color:rgb(0,0,0)\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-weight:bold;font-size:12px;font-family:Inter,sans-serif\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"font-size:12px;font-family:Inter,sans-serif;color:rgb(0,0,0)\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"font-family:Inter,sans-serif;color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;display:flex;font-weight:bold;font-family:Inter,sans-serif\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:0% 0% repeat rgb(0,0,0);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block;font-family:Inter,sans-serif;color:rgb(255,255,255)\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:medium;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert;font-family:Inter,sans-serif\"><div style=\"max-height:0px;overflow:visible;font-family:Inter,sans-serif\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px; font-family: Inter, sans-serif;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px; font-family: Inter, sans-serif;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td align=\"left\" valign=\"top\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:10px 0px 0px;font-family:Inter,sans-serif\"><a style=\"font-family:Inter,sans-serif\"></a></td></tr></tbody></table></div></div></div></div></div><div><br></div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Sun, Aug 3, 2025 at 8:08 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;padding-left:1ex;border-left-color:rgb(204,204,204)\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">Hi all,</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">I’d like to setup a Signal Group for all of us to connect on going forward.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Can you each please send me your Signal phone number </div><div style=\"font-family:Helvetica,Arial;font-size:13px\">so that I can connect and put you in a group with Brian and myself.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Thanks much!</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Rick</div> <br> <div class=\"gmail_signature\">\r\n        \r\n     \r\n    <br>\r\n     \r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD, </span><div style=\"font-family:Helvetica,Arial\">Founder, CTO</div><div style=\"font-family:Helvetica,Arial\"><img src=\"cid:ii_1987279c2c3331854301\" style=\"width:84px;max-width:100%\"><br></div><div style=\"font-family:Helvetica,Arial\"><a href=\"http://mavrix1.com/\" target=\"_blank\" style=\"font-family:Helvetica,Arial\">mavrix1.com</a></div></div><div><br></div></div>\r\n\r\n\r\n</blockquote></div></div>','Hi Rick.\r\n\r\nMy signal number is 813-504-0074.\r\n\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Sun, Aug 3, 2025 at 8:08 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> Hi all,\r\n> I’d like to setup a Signal Group for all of us to connect on going forward.\r\n> Can you each please send me your Signal phone number\r\n> so that I can connect and put you in a group with Brian and myself.\r\n> Thanks much!\r\n> Rick\r\n>\r\n>\r\n> Rick Mislan, PhD,\r\n> Founder, CTO\r\n>\r\n> mavrix1.com\r\n>\r\n>',0,0,0,0,0,0,'2025-08-04 00:27:43','2025-12-09 19:27:02','2025-12-09 19:27:02','2025-12-09 19:27:02',NULL,NULL,NULL),
(563,4,'<CAGOCFXjB0wLPCzAgU-988UwjxwcFst9LMAt9RO_6oK8M2+ewgg@mail.gmail.com>',NULL,NULL,'Re: Signal Group...','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"auto\">Hi Rick.  I sent you a message on signal.  Ron is up in Pittsburgh right now with my mom.  He will be back down next month when my Wife and I have our son Lennon towards the end of September.    Ron is a genuinely good guy and it’s always fun to watch him at shows connect with people.  He was a goal miner for many years when I was in high school just to make money to support our family.  When he got laid off he went back to school and got into defense work.   When he comes down I think we should schedule you two to meet or come to the factory.  </div><div dir=\"auto\"><br></div><div dir=\"auto\">His cell phone number is Ronald Staron - 412-600-1257 if you want to give him a call or send him a text.  I’m sure he would enjoy hearing from you again.   <br clear=\"all\"><br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-size:10px;font-family:Inter,sans-serif;color:rgb(0,0,0)\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;line-height:16px;font-family:Inter,sans-serif\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:medium;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px;font-family:Inter,sans-serif\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:medium;border-collapse:collapse;display:revert;font-family:Inter,sans-serif\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px;font-family:Inter,sans-serif\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td align=\"left\" valign=\"middle\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:0px 0px 10px;font-family:Inter,sans-serif\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:15px 0px 0px;font-family:Inter,sans-serif\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td align=\"left\" valign=\"middle\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-weight:bold;font-size:20px;font-family:Inter,sans-serif\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:medium;border-collapse:collapse;padding-left:5px;font-family:Inter,sans-serif\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block; font-family: Inter, sans-serif;\"></td></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-size:12px;font-family:Inter,sans-serif\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-weight:bold;font-size:12px;font-family:Inter,sans-serif\">Lithium Battery Company</span></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-weight:bold;font-size:12px;font-family:Inter,sans-serif\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"font-size:12px;font-family:Inter,sans-serif;color:rgb(0,0,0)\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-weight:bold;font-size:12px;font-family:Inter,sans-serif\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"font-size:12px;font-family:Inter,sans-serif;color:rgb(0,0,0)\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"font-family:Inter,sans-serif;color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;display:flex;font-weight:bold;font-family:Inter,sans-serif\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:0% 0% repeat rgb(0,0,0);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block;font-family:Inter,sans-serif;color:rgb(255,255,255)\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:medium;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert;font-family:Inter,sans-serif\"><div style=\"max-height:0px;overflow:visible;font-family:Inter,sans-serif\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px; font-family: Inter, sans-serif;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px; font-family: Inter, sans-serif;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td align=\"left\" valign=\"top\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:10px 0px 0px;font-family:Inter,sans-serif\"><a style=\"font-family:Inter,sans-serif\"></a></td></tr></tbody></table></div></div></div></div></div><div><br></div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Sun, Aug 3, 2025 at 8:49 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;padding-left:1ex;border-left-color:rgb(204,204,204)\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">Thanks!</div>I sent you a Signal text…please confirm.<br><div style=\"font-family:Helvetica,Arial;font-size:13px\"><br></div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Hey is your dad living in Tampa as well?</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">I really liked our chat at SOF Week.</div> <div>Thanks again!</div><div>Ri</div><div class=\"gmail_signature\"><br>\r\n     \r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD, </span><div style=\"font-family:Helvetica,Arial\">Founder, CTO</div><div style=\"font-family:Helvetica,Arial\"><img src=\"cid:ii_19873107fa3331854302\" style=\"width: 84px; max-width: 100%; background-color: rgba(0, 0, 0, 0) !important; border-color: rgb(255, 255, 255) !important; color: rgb(255, 255, 255) !important;\"><br></div><div style=\"font-family:Helvetica,Arial\"><a href=\"http://mavrix1.com/\" target=\"_blank\" style=\"font-family:Helvetica,Arial\">mavrix1.com</a></div></div><div><br></div></div> <br><p>On August 3, 2025 at 8:28:37 PM, Nathan Staron (<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"auto\">Hi Rick. </div><div dir=\"auto\"><br></div><div dir=\"auto\">My signal number is 813-504-0074. <br clear=\"all\"><br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-size:10px;font-family:Inter,sans-serif;color:rgb(0,0,0)\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;line-height:16px;font-family:Inter,sans-serif\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:medium;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px;font-family:Inter,sans-serif\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://lithiumbatterycompany.com/\" style=\"font-family:Inter,sans-serif\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" style=\"font-family:Inter,sans-serif\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" style=\"font-family:Inter,sans-serif\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" style=\"font-family:Inter,sans-serif\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" style=\"font-family:Inter,sans-serif\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:medium;border-collapse:collapse;display:revert;font-family:Inter,sans-serif\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px;font-family:Inter,sans-serif\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td align=\"left\" valign=\"middle\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><a href=\"https://lithiumbatterycompany.com/\" style=\"font-family:Inter,sans-serif\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:0px 0px 10px;font-family:Inter,sans-serif\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:15px 0px 0px;font-family:Inter,sans-serif\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td align=\"left\" valign=\"middle\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-weight:bold;font-size:20px;font-family:Inter,sans-serif\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:medium;border-collapse:collapse;padding-left:5px;font-family:Inter,sans-serif\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block; font-family: Inter, sans-serif;\"></td></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-size:12px;font-family:Inter,sans-serif\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-weight:bold;font-size:12px;font-family:Inter,sans-serif\">Lithium Battery Company</span></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-weight:bold;font-size:12px;font-family:Inter,sans-serif\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"font-size:12px;font-family:Inter,sans-serif;color:rgb(0,0,0)\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-weight:bold;font-size:12px;font-family:Inter,sans-serif\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"font-size:12px;font-family:Inter,sans-serif;color:rgb(0,0,0)\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"font-family:Inter,sans-serif;color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;display:flex;font-weight:bold;font-family:Inter,sans-serif\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:0% 0% repeat rgb(0,0,0);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block;font-family:Inter,sans-serif;color:rgb(255,255,255)\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:medium;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert;font-family:Inter,sans-serif\"><div style=\"max-height:0px;overflow:visible;font-family:Inter,sans-serif\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px; font-family: Inter, sans-serif;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_-9163913320298640114_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px; font-family: Inter, sans-serif;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td align=\"left\" valign=\"top\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:10px 0px 0px;font-family:Inter,sans-serif\"><a style=\"font-family:Inter,sans-serif\"></a></td></tr></tbody></table></div></div></div></div></div><div><br></div><div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Sun, Aug 3, 2025 at 8:08 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;padding-left:1ex;border-left-color:rgb(204,204,204)\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">Hi all,</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">I’d like to setup a Signal Group for all of us to connect on going forward.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Can you each please send me your Signal phone number </div><div style=\"font-family:Helvetica,Arial;font-size:13px\">so that I can connect and put you in a group with Brian and myself.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Thanks much!</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Rick</div> <br> <div class=\"gmail_signature\">\r\n         \r\n      \r\n    <br>\r\n      \r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD, </span><div style=\"font-family:Helvetica,Arial\">Founder, CTO</div><div style=\"font-family:Helvetica,Arial\"><img src=\"cid:ii_19873107fa2d7db7bba1\" style=\"width: 84px; max-width: 100%; background-color: rgba(0, 0, 0, 0) !important; border-color: rgb(255, 255, 255) !important; color: rgb(255, 255, 255) !important;\"><br></div><div style=\"font-family:Helvetica,Arial\"><a href=\"http://mavrix1.com/\" style=\"font-family:Helvetica,Arial\" target=\"_blank\">mavrix1.com</a></div></div><div><br></div></div>\r\n\r\n\r\n</blockquote></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div></div>','Hi Rick.  I sent you a message on signal.  Ron is up in Pittsburgh right\r\nnow with my mom.  He will be back down next month when my Wife and I have\r\nour son Lennon towards the end of September.    Ron is a genuinely good guy\r\nand it’s always fun to watch him at shows connect with people.  He was a\r\ngoal miner for many years when I was in high school just to make money to\r\nsupport our family.  When he got laid off he went back to school and got\r\ninto defense work.   When he comes down I think we should schedule you two\r\nto meet or come to the factory.\r\n\r\nHis cell phone number is Ronald Staron - 412-600-1257 if you want to give\r\nhim a call or send him a text.  I’m sure he would enjoy hearing from you\r\nagain.\r\n\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Sun, Aug 3, 2025 at 8:49 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> Thanks!\r\n> I sent you a Signal text…please confirm.\r\n>\r\n> Hey is your dad living in Tampa as well?\r\n> I really liked our chat at SOF Week.\r\n> Thanks again!\r\n> Ri\r\n>\r\n> Rick Mislan, PhD,\r\n> Founder, CTO\r\n>\r\n> mavrix1.com\r\n>\r\n>\r\n> On August 3, 2025 at 8:28:37 PM, Nathan Staron (\r\n> nathan@lithiumbatterycompany.com) wrote:\r\n>\r\n> Hi Rick.\r\n>\r\n> My signal number is 813-504-0074.\r\n>\r\n>\r\n>\r\n> <https://lithiumbatterycompany.com/>\r\n> <https://www.instagram.com/lithiumbatteryco/>\r\n> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n> <https://www.facebook.com/LithiumBatteryCompany/>\r\n> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n> <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074\r\n> Phone 844-GET-LITHIUM\r\n> Nathan@lithiumbatterycompany.com\r\n> Schedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>\r\n>\r\n>\r\n> On Sun, Aug 3, 2025 at 8:08 PM Rick <rick@mavrix.one> wrote:\r\n>\r\n>> Hi all,\r\n>> I’d like to setup a Signal Group for all of us to connect on going\r\n>> forward.\r\n>> Can you each please send me your Signal phone number\r\n>> so that I can connect and put you in a group with Brian and myself.\r\n>> Thanks much!\r\n>> Rick\r\n>>\r\n>>\r\n>> Rick Mislan, PhD,\r\n>> Founder, CTO\r\n>>\r\n>> mavrix1.com\r\n>>\r\n>>',0,0,0,0,0,0,'2025-08-04 03:17:57','2025-12-09 19:27:03','2025-12-09 19:27:03','2025-12-09 19:27:03',NULL,NULL,NULL),
(564,4,'<Nu2D0sxuQXiabej_kFG9TQ@geopod-ismtpd-31>',NULL,NULL,'Your D-U-N-S Application Case Number DFC-287127 with Dun & Bradstreet','no-reply@mail.dnb.com','no-reply@mail.dnb.com','<!-- DFC - all templates ME-2254 -->\r\n\r\n\r\n  \r\n  <!-- DFC - New Case -->\r\n<!DOCTYPE html\r\n  PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n\r\n<head>\r\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\r\n  <meta name=\"viewport\" content=\"initial-scale=1.0\" /> <!-- So that mobile webkit will display zoomed in -->\r\n  <meta name=\"format-detection\" content=\"telephone=no\" /> <!-- disable auto telephone linking in iOS -->\r\n\r\n  <title>Dun &amp; Bradstreet</title>\r\n\r\n  <style type=\"text/css\">\r\n    body {\r\n      background-color: #e1e1e1;\r\n      font-family: \'Open Sans\', sans-serif;\r\n      -webkit-text-size-adjust: none;\r\n      -ms-text-size-adjust: none;\r\n      font-style: normal;\r\n    }\r\n\r\n    a {\r\n      color: #0078a7;\r\n    }\r\n\r\n    .outer-container {\r\n      background-color: #FFFFFF;\r\n      width: 620px;\r\n      margin: auto;\r\n    }\r\n\r\n    .image-container {\r\n      padding: 35px 0;\r\n      border-bottom: 1px solid #6B6D6F;\r\n      margin: 0 40px;\r\n    }\r\n\r\n    .main-content {\r\n      margin: 40px;\r\n      font-weight: 400;\r\n      font-size: 16px;\r\n      line-height: 24px;\r\n      letter-spacing: 0.1px;\r\n      color: #161919;\r\n    }\r\n\r\n    .title {\r\n      font-weight: 550;\r\n      font-size: 24px;\r\n      line-height: 36px;\r\n      color: #161919;\r\n    }\r\n\r\n    .sub-content {\r\n      font-weight: 400;\r\n      font-size: 14px;\r\n      line-height: 20px;\r\n      letter-spacing: 0.1px;\r\n      color: #6B6D6F;\r\n      margin: 40px;\r\n    }\r\n\r\n    .footer {\r\n      margin: 40px;\r\n      line-height: 24px;\r\n    }\r\n\r\n    .copyright {\r\n      color: #161919;\r\n      padding-bottom: 40px;\r\n    }\r\n\r\n    .footer-link {\r\n      text-align: center;\r\n      padding: 40px;\r\n    }\r\n\r\n    .footer-link,\r\n    .copyright {\r\n      font-weight: 400;\r\n      font-size: 14px;\r\n      line-height: 20px;\r\n      letter-spacing: 0.1px;\r\n    }\r\n\r\n    @media screen and (max-width: 600px) {\r\n      .outer-container {\r\n        width: 100% !important;\r\n      }\r\n\r\n      .image-container {\r\n        margin: 0 24px;\r\n        padding: 22px 0 16px 0;\r\n      }\r\n\r\n      .main-content,\r\n      .sub-content,\r\n      .footer {\r\n        margin: 24px !important;\r\n      }\r\n\r\n      .footer-link {\r\n        padding: 24px;\r\n      }\r\n    }\r\n  </style>\r\n</head>\r\n\r\n<body>\r\n  <div class=\"outer-container\">\r\n    <div class=\'image-container\' style=\"text-align: center;\">\r\n      <img src=\"https://brxcdn.com/dnb-app-storage/faae5396-48ae-11ec-b7e8-26d23021b1b2/media/original/7a3a4e2c-1952-11f0-b67a-523efb8f8606\"\r\n        width=\"229\" height=\"60\" alt=\"\" />\r\n    </div>\r\n    <div class=\"main-content\">\r\n      <div>\r\n        Case Number: <strong>DFC-287127</strong>\r\n      </div>\r\n\r\n      <p>\r\n        Hello,<br />\r\n        We wanted to remind you to complete and submit your D-U-N-S® Number Application*.If you\'ve already completed your application, thank you!\r\n        If not, please complete it at your earliest convenience by using the following link after setting up your Dun &amp; Bradstreet account using the login and password information that was emailed to you:\r\n        https://my.dnb.com/\r\n      </p>\r\n      <p>\r\n        Please remember that creating a D-U-N-S Number for your company is a requirement to be able to access your\r\n        product(s). You will not have access to your product until it is associated with your company&apos;s D-U-N-S\r\n        Number.\r\n      </p>\r\n      <p>\r\n        If you have any questions, please visit <a href=\'https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD8xcdQIFbIxCuXL13rFmZPqTYSfSdahiyv12jwAT38XjeAiN1tSAY1ALPNCUmlsM7zA-3D-3DEsKb_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYikl8666vf03ilY4-2BZUpoaKEXEEwemYzkrDgdWOE3LMudBS9ke8WgGEPMOclYyxALHglLz-2BAxXyj9ZAAE6KMkDMOzaNuXnRoav7Frskk7aLetzYwyCHonNYAnArKxlcMpk2RTugDnXy87kZ7tWe9SRUarQ6diBhSDduUCHhMdIzfRAAfj3JCSpW948eEMpqsfJXIv-2BvLcvN9jGINKIXL2gy2j5mrbapwQVQHisCWJ5iY18JsdGASsh4OzqnJOoZ0qRyftTFTjnYohzrdKWXz-2Fv1yw-3D-3D\' target=\"_blank\"\r\n          rel=\"noopener noreferrer\">Dun &amp; Bradstreet Support</a> or call us at 1-800-234-3867.\r\n      </p>\r\n      <p>\r\n        Thank you for being a Dun &amp; Bradstreet customer.\r\n      </p>\r\n      <div>\r\n        <p>Sincerely,<br />\r\n          Dun &amp; Bradstreet\r\n        </p>\r\n      </div>\r\n    </div>\r\n    <div class=\"sub-content\">\r\n      <p style=\'color:#161919\'>\r\n        *D-U-N-S<sup>&#174;</sup> Number creation will occur in up to \r\n        30 \r\n        business days after you have successfully completed and\r\n        submitted the online D-U-N-S Number registration form for your company which is subject to Dun &amp; Bradstreet&apos;s\r\n        verification process and acceptance.\r\n      </p>\r\n      <p>Please add <a href=\"mailto:no-reply@dnb.com\">no-reply@dnb.com</a> to ensure delivery of our emails to your\r\n        inbox.\r\n        This is a notification regarding your service with Dun &amp; Bradstreet.</p>\r\n    </div>\r\n    <div class=\'footer\'>\r\n      <p><strong>Privacy and Terms of Service Notice: </strong> </p>\r\n\r\n      <p>Your privacy is important to us; please see our <a href=\"https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD84st-2BjNdutQpdvm5VD3R5SibLESYL3KMihPXYKcvMRoyA5o2lovC9G8mtdsVLbZyZA-3D-3DC0vy_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYikl8666vf03ilY4-2BZUpoaKEXEEwemYzkrDgdWOE3LMudBS9ke8WgGEPMOclYyxALHglLz-2BAxXyj9ZAAE6KMkDMOzaNuXnRoav7Frskk7aLetzYwyCHonNYAnArKxlcMpk2iSFEqvgUIbiPmuXxNSzMuiV-2Fm43EJvVwjCmtoeJZc81tYQlxPU2xn6sxCMPc-2BNldOD5n3PVoZHsWwMCiw5kmOjLLi7871aUkcdYgocxbbGPOQX8IYETfYOCSjRtaT1H0S-2Fp1fHi-2FbpPdjEoRHQtWKQ-3D-3D\"\r\n          target=\"_blank\" rel=\"noopener noreferrer\">Privacy Policy </a> and <a\r\n          href=\"https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD84st-2BjNdutQpdvm5VD3R5SiguMNzH0RU59Jq49RiV5SaV-2FX4VizeB9BTMrOX7Q2QZw-3D-3Dda33_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYikl8666vf03ilY4-2BZUpoaKEXEEwemYzkrDgdWOE3LMudBS9ke8WgGEPMOclYyxALHglLz-2BAxXyj9ZAAE6KMkDMOzaNuXnRoav7Frskk7aLetzYwyCHonNYAnArKxlcMpk2Wq83lRZl5Q74J6uSNWPENkSvm-2Bj9zY7aAM2OPjZ11pbff1csGrOY0vFgp8qjpWmpuU15wR9zcDPz9K7u3QmMIUzLoU96onBwNLigzXxG96TVAyBu8RB7a-2FyeUFVaNtEzTcflURR-2Bz9MlKOXyrV2S9A-3D-3D\" target=\"_blank\" rel=\"noopener noreferrer\"> Terms\r\n          of\r\n          Use.</a> To unsubscribe from future emails <a\r\n          href=\"https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD84st-2BjNdutQpdvm5VD3R5Sh2QiWFUgFkV-2FCqgLcKj2mdGIJO9lMBQ4u1ldJOiLmi-2B3r9P2shgXeDCG6NCG6VLrQ-3Dt_hb_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYikl8666vf03ilY4-2BZUpoaKEXEEwemYzkrDgdWOE3LMudBS9ke8WgGEPMOclYyxALHglLz-2BAxXyj9ZAAE6KMkDMOzaNuXnRoav7Frskk7aLetzYwyCHonNYAnArKxlcMpk2gl6vKStHn1szni445DqoXC-2FIPpi2sbNSLFvVb8ykSFCJ8wdD7LQ9FQHKtHLJL-2BFKP3oMPsmmmUsM22GvyKAHsZ1F0RHSKvYgxbcnMJZiDX504kTn-2BiDH2IoxYLECMgxv0wVIwWImD8rfldKHqU304Q-3D-3D\" target=\"_blank\"\r\n          rel=\"noopener noreferrer\"> click here</a>, or to update your email preferences, please <a\r\n          href=\"https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD84st-2BjNdutQpdvm5VD3R5Sh2QiWFUgFkV-2FCqgLcKj2mdGIJO9lMBQ4u1ldJOiLmi-2B3r9P2shgXeDCG6NCG6VLrQ-3Djymc_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYikl8666vf03ilY4-2BZUpoaKEXEEwemYzkrDgdWOE3LMudBS9ke8WgGEPMOclYyxALHglLz-2BAxXyj9ZAAE6KMkDMOzaNuXnRoav7Frskk7aLetzYwyCHonNYAnArKxlcMpk2U1-2FeDVaMb1MHtoH0hx-2BKQODrjAOhfzx9Dj-2BMUjPWLouRGMR3ALcLE93EiYk4aCE4ho8dxacdOiRuNxIaVWp3eXlbmKywaZMM-2FYi0vVV1uRXJenDIYMJ86yWewXlaQdcyxZR5-2B1pxti4LbhfN7ypvkA-3D-3D\" target=\"_blank\"\r\n          rel=\"noopener noreferrer\"> click here </a>\r\n      </p>\r\n\r\n      <div class=\"copyright\">&copy; Dun &amp; Bradstreet, Inc. 2000 - 2025. All rights reserved. | 5335 Gate Pkwy, Jacksonville,\r\n        FL 32256, USA\r\n      </div>\r\n    </div>\r\n  </div>\r\n<img src=\"https://u8340266.ct.sendgrid.net/wf/open?upn=u001.D6mC8SG6iITw2GIzPjAtw3VnKGws73w4Kg-2Fn2LF1yNLiYtaudU5mmnjfmXVdybYWQD0BmxV-2BTb2HxuKN6EYyFklk0xNIauLy8KmbavjPKzeN6yVTj4tmUOlMUdJvHGwWogCc51u6R1PtOdRh9JEG-2FEj791kcgTmQUuUBIeiQs42qd01zvm-2BbVEuUo-2FOLULkgeIpI-2BHSCJpEZrT3OXXW0b-2FMoT700w2C6GDM9YNm3-2FPcU-2B0vEWRTy7O7aJmaZcmTXF8yNJSVuR21jkHbvcUjFFvKPtVwWYvvtrNMvwAOkx8awUokFh-2FRhztPi7yqc3O-2Brm1caW59RpXwHYQuT-2FuGl8A-3D-3D\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/></body>\r\n\r\n</html>',' Dun & Bradstreet\r\n\r\nCase Number: *DFC-287127*\r\n\r\nHello,\r\nWe wanted to remind you to complete and submit your D-U-N-S® Number Application*.If you\'ve already completed your application, thank you! If not, please complete it at your earliest convenience by using the following link after setting up your Dun & Bradstreet account using the login and password information that was emailed to you: https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD8-2BUp91ZH7-2BbHKbii2gZ2LLs-3DRQXF_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYikl8666vf03ilY4-2BZUpoaKEXEEwemYzkrDgdWOE3LMudBS9ke8WgGEPMOclYyxALHglLz-2BAxXyj9ZAAE6KMkDMOzaNuXnRoav7Frskk7aLetzYwyCHonNYAnArKxlcMpk2gHaFNNsWZgeo42EZMIZbM7YbZibPalDlIlZELZbzhOXGNzw4FSGXQshRK4-2F4CZTlrc0xTIi0PJ8CkviCZIviwKWHSJT9buC7AQzuj0I86puaKPfUN-2BACyCKJzhGEjxM4npEeb7b7B0qtqZ7WMYErKw-3D-3D\r\n\r\nPlease remember that creating a D-U-N-S Number for your company is a requirement to be able to access your product(s). You will not have access to your product until it is associated with your company\'s D-U-N-S Number.\r\n\r\nIf you have any questions, please visit Dun & Bradstreet Support ( https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD8xcdQIFbIxCuXL13rFmZPqTYSfSdahiyv12jwAT38XjeAiN1tSAY1ALPNCUmlsM7zA-3D-3Drl4r_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYikl8666vf03ilY4-2BZUpoaKEXEEwemYzkrDgdWOE3LMudBS9ke8WgGEPMOclYyxALHglLz-2BAxXyj9ZAAE6KMkDMOzaNuXnRoav7Frskk7aLetzYwyCHonNYAnArKxlcMpk2dPsuTWGFuAap0wGupwVoZiAMU9jlouYTHR36G44NJsd6k8Hqx52-2Fv6qNy03yMQwPlHhMsdsrPWSzKmH1JfE1HIFTIODM2TVBfU00uTR3wDuhCzQl7bfvMY9uZ4JJg6ARGvKtjq3ZUDJlLTSb1rLKPw-3D-3D ) or call us at 1-800-234-3867.\r\n\r\nThank you for being a Dun & Bradstreet customer.\r\n\r\nSincerely,\r\nDun & Bradstreet\r\n\r\n*D-U-N-S ® Number creation will occur in up to  30  business days after you have successfully completed and submitted the online D-U-N-S Number registration form for your company which is subject to Dun & Bradstreet\'s verification process and acceptance.\r\n\r\nPlease add no-reply@dnb.com to ensure delivery of our emails to your inbox. This is a notification regarding your service with Dun & Bradstreet.\r\n\r\n*Privacy and Terms of Service Notice:*\r\n\r\nYour privacy is important to us; please see our Privacy Policy ( https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD84st-2BjNdutQpdvm5VD3R5SibLESYL3KMihPXYKcvMRoyA5o2lovC9G8mtdsVLbZyZA-3D-3D9sqb_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYikl8666vf03ilY4-2BZUpoaKEXEEwemYzkrDgdWOE3LMudBS9ke8WgGEPMOclYyxALHglLz-2BAxXyj9ZAAE6KMkDMOzaNuXnRoav7Frskk7aLetzYwyCHonNYAnArKxlcMpk2NqV8nHTIj2FErWms4mukEDA4GVYXa9MPrdtpnkqpHNDIz2YOWzqvmwZVAR9f4etHAZWYPzPSXfAxsAl9Fr32Wxk-2BoJbawOu8m4SooUCiEyoMYUSeCaVKYGTf8YQch9A2OkCQjexRnxdffBY0wBc-2FYQ-3D-3D ) and Terms of Use. ( https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD84st-2BjNdutQpdvm5VD3R5SiguMNzH0RU59Jq49RiV5SaV-2FX4VizeB9BTMrOX7Q2QZw-3D-3Dsfi__V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYikl8666vf03ilY4-2BZUpoaKEXEEwemYzkrDgdWOE3LMudBS9ke8WgGEPMOclYyxALHglLz-2BAxXyj9ZAAE6KMkDMOzaNuXnRoav7Frskk7aLetzYwyCHonNYAnArKxlcMpk2-2BOAP0T68qQqXBinw-2ByJn3zaN9uN4KP1COdSPsEG-2FkahrMO65x1HXwRHNMWAdovRvAwAr5XulmdhS-2FXpWLOjvaynSjwVXhF6htPpNklHMxFXZ1u8nOf0giR-2B-2B-2BxGhlLMZbrN-2FWYr-2FBME1zmYxXhFDHQ-3D-3D ) To unsubscribe from future emails click here ( https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD84st-2BjNdutQpdvm5VD3R5Sh2QiWFUgFkV-2FCqgLcKj2mdGIJO9lMBQ4u1ldJOiLmi-2B3r9P2shgXeDCG6NCG6VLrQ-3DY8nM_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYikl8666vf03ilY4-2BZUpoaKEXEEwemYzkrDgdWOE3LMudBS9ke8WgGEPMOclYyxALHglLz-2BAxXyj9ZAAE6KMkDMOzaNuXnRoav7Frskk7aLetzYwyCHonNYAnArKxlcMpk2qkq4JFR5XOfHfUAlDm464Gx-2FMTFAhj6-2F-2BZMEFDViErPMbE52SSTVkmdp6JY2OelaZ2cdIm7otSwKTsb-2Fj5XZqEhjTTOQJLBl1ZLytNpqoQbbGEV09A34JSUsvhice1xgaTiV-2FhkBtp6a37YgOgdUig-3D-3D ) , or to update your email preferences, please click here ( https://u8340266.ct.sendgrid.net/ls/click?upn=u001.rJrmDV7XrxNkh8nMCVnD84st-2BjNdutQpdvm5VD3R5Sh2QiWFUgFkV-2FCqgLcKj2mdGIJO9lMBQ4u1ldJOiLmi-2B3r9P2shgXeDCG6NCG6VLrQ-3D0MTE_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2Bll2Ddp3EO1Azlu3ZpIYikl8666vf03ilY4-2BZUpoaKEXEEwemYzkrDgdWOE3LMudBS9ke8WgGEPMOclYyxALHglLz-2BAxXyj9ZAAE6KMkDMOzaNuXnRoav7Frskk7aLetzYwyCHonNYAnArKxlcMpk2cyC03ZtlLTx3qelqQZVWdVWjC5ww1mOpuXQU2ijZIC7FU4Qv3W-2BXzRKSxDnuOvaHhR34ufiKP4lR-2FOZPR0x3iq9FpAc2-2B-2BmYiE2CoxgkXPv7bPP2S2oqUoBVfwxCgXOFt50owKey8ceyYy53vgufTg-3D-3D )\r\n\r\n© Dun & Bradstreet, Inc. 2000 - 2025. All rights reserved. | 5335 Gate Pkwy, Jacksonville, FL 32256, USA',0,0,0,0,0,0,'2025-07-03 11:26:26','2025-12-09 19:27:03','2025-12-09 19:27:03','2025-12-09 19:27:03',NULL,NULL,NULL),
(565,4,'<mEtoGbkFTw6kcVrV0CWVcQ@geopod-ismtpd-canary-0>',NULL,NULL,'***SPAM***  DIU Newsletter - June 2025','info@diu.mil','Defense Innovation Unit','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html data-editor-version=\"2\" class=\"sg-campaigns\" xmlns=\"http://www.w3.org/1999/xhtml\">\r\n    <head>\r\n      <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n      <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1\">\r\n      <!--[if !mso]><!-->\r\n      <meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge\">\r\n      <!--<![endif]-->\r\n      <!--[if (gte mso 9)|(IE)]>\r\n      <xml>\r\n        <o:OfficeDocumentSettings>\r\n          <o:AllowPNG/>\r\n          <o:PixelsPerInch>96</o:PixelsPerInch>\r\n        </o:OfficeDocumentSettings>\r\n      </xml>\r\n      <![endif]-->\r\n      <!--[if (gte mso 9)|(IE)]>\r\n  <style type=\"text/css\">\r\n    body {width: 620px;margin: 0 auto;}\r\n    table {border-collapse: collapse;}\r\n    table, td {mso-table-lspace: 0pt;mso-table-rspace: 0pt;}\r\n    img {-ms-interpolation-mode: bicubic;}\r\n  </style>\r\n<![endif]-->\r\n      <style type=\"text/css\">\r\n    body, p, div {\r\n      font-family: arial,helvetica,sans-serif;\r\n      font-size: 14px;\r\n    }\r\n    body {\r\n      color: #000000;\r\n    }\r\n    body a {\r\n      color: #0D66BBFF;\r\n      text-decoration: none;\r\n    }\r\n    p { margin: 0; padding: 0; }\r\n    table.wrapper {\r\n      width:100% !important;\r\n      table-layout: fixed;\r\n      -webkit-font-smoothing: antialiased;\r\n      -webkit-text-size-adjust: 100%;\r\n      -moz-text-size-adjust: 100%;\r\n      -ms-text-size-adjust: 100%;\r\n    }\r\n    img.max-width {\r\n      max-width: 100% !important;\r\n    }\r\n    .column.of-2 {\r\n      width: 50%;\r\n    }\r\n    .column.of-3 {\r\n      width: 33.333%;\r\n    }\r\n    .column.of-4 {\r\n      width: 25%;\r\n    }\r\n    ul ul ul ul  {\r\n      list-style-type: disc !important;\r\n    }\r\n    ol ol {\r\n      list-style-type: lower-roman !important;\r\n    }\r\n    ol ol ol {\r\n      list-style-type: lower-latin !important;\r\n    }\r\n    ol ol ol ol {\r\n      list-style-type: decimal !important;\r\n    }\r\n    @media screen and (max-width:480px) {\r\n      .preheader .rightColumnContent,\r\n      .footer .rightColumnContent {\r\n        text-align: left !important;\r\n      }\r\n      .preheader .rightColumnContent div,\r\n      .preheader .rightColumnContent span,\r\n      .footer .rightColumnContent div,\r\n      .footer .rightColumnContent span {\r\n        text-align: left !important;\r\n      }\r\n      .preheader .rightColumnContent,\r\n      .preheader .leftColumnContent {\r\n        font-size: 80% !important;\r\n        padding: 5px 0;\r\n      }\r\n      table.wrapper-mobile {\r\n        width: 100% !important;\r\n        table-layout: fixed;\r\n      }\r\n      img.max-width {\r\n        height: auto !important;\r\n        max-width: 100% !important;\r\n      }\r\n      a.bulletproof-button {\r\n        display: block !important;\r\n        width: auto !important;\r\n        font-size: 80%;\r\n        padding-left: 0 !important;\r\n        padding-right: 0 !important;\r\n      }\r\n      .columns {\r\n        width: 100% !important;\r\n      }\r\n      .column {\r\n        display: block !important;\r\n        width: 100% !important;\r\n        padding-left: 0 !important;\r\n        padding-right: 0 !important;\r\n        margin-left: 0 !important;\r\n        margin-right: 0 !important;\r\n      }\r\n      .social-icon-column {\r\n        display: inline-block !important;\r\n      }\r\n    }\r\n  </style>\r\n      <!--user entered Head Start--><!--End Head user entered-->\r\n    </head>\r\n    <body>\r\n      <center class=\"wrapper\" data-link-color=\"#0D66BBFF\" data-body-style=\"font-size:14px; font-family:arial,helvetica,sans-serif; color:#000000; background-color:#e6e6e6;\">\r\n        <div class=\"webkit\">\r\n          <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"wrapper\" bgcolor=\"#e6e6e6\">\r\n            <tr>\r\n              <td valign=\"top\" bgcolor=\"#e6e6e6\" width=\"100%\">\r\n                <table width=\"100%\" role=\"content-container\" class=\"outer\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                  <tr>\r\n                    <td width=\"100%\">\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                        <tr>\r\n                          <td>\r\n                            <!--[if mso]>\r\n    <center>\r\n    <table><tr><td width=\"620\">\r\n  <![endif]-->\r\n                                    <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:100%; max-width:620px;\" align=\"center\">\r\n                                      <tr>\r\n                                        <td role=\"modules-container\" style=\"padding:0px 10px 0px 10px; color:#000000; text-align:left;\" bgcolor=\"#E6E6E6\" width=\"100%\" align=\"left\"><table class=\"module preheader preheader-hide\" role=\"module\" data-type=\"preheader\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"display: none !important; mso-hide: all; visibility: hidden; opacity: 0; color: transparent; height: 0; width: 0;\">\r\n    <tr>\r\n      <td role=\"module-content\">\r\n        <p>Read more about upcoming DIU events and opportunities</p>\r\n      </td>\r\n    </tr>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"1104c33b-738b-4f49-a025-f96d421a4309\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:5px 0px 15px 0px; line-height:14px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: right\"><span style=\"color: #454545; font-family: helvetica, sans-serif; font-size: 12px\">Email not displaying correctly? </span><span style=\"color: #0059dd; font-family: helvetica, sans-serif; font-size: 12px\">View it</span><span style=\"color: #454545; font-family: helvetica, sans-serif; font-size: 12px\"> in your browser.</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:30px 0px 10px 0px;\" bgcolor=\"#E6E6E6\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"600\" style=\"width:600px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"9fc032df-f2d9-4c0d-ba50-8b72bae5eecc\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:0px 0px 0px 0px;\" valign=\"top\" align=\"center\">\r\n          <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:70% !important; width:70%; height:auto !important;\" width=\"420\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/3c3e14b4-863b-44ea-a235-44a86550fd55/1920x553.png\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"divider\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"93bd745a-3983-4ff8-9fbb-874f3c29dd2f\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 0px 0px;\" role=\"module-content\" height=\"100%\" valign=\"top\" bgcolor=\"\">\r\n          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" height=\"5px\" style=\"line-height:5px; font-size:5px;\">\r\n            <tbody>\r\n              <tr>\r\n                <td style=\"padding:0px 0px 5px 0px;\" bgcolor=\"#FFFFFF\"></td>\r\n              </tr>\r\n            </tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"622c7d5b-4ec9-436d-b26e-4a4e2807ad72\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:27px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-size: 16px\">June 2025 - Reading time: 2.5 minutes</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2e35c854-f82d-44a2-a0f5-30013d25e3d3.2.1.1.2\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px; line-height:30px; text-align:inherit; background-color:#e6e6e6;\" height=\"100%\" valign=\"top\" bgcolor=\"#e6e6e6\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-family: helvetica, sans-serif; color: #0d66bb; font-size: 30px\"><strong>Upcoming Events</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"600\" style=\"width:600px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILjYlREuGUy7GbgNlCoAOjZrX2sNbKlF3Z5eNSq3OduaMD-2FgAVRybaCtgsf27U3F9zEuWGVGl-2BqfzPqFRrVM5xnUEKKRouGTOrhZW8355erQJtVgn8anYh3LqsppX9Ysf1-2BFb07H2P-2F1GmYUzDjWZAxq-2B69YErmnRScn09Oo1gc3oZmiQI9vf49Iv1CHKURnhhLcCxv4AcRw8IR2HtO8YnHkIdw1mv14YSKmnN3b5-2B6-2Fdgdmflyp-2Bzp57wntD05-2FNAi82ECmhTPn7lcjR52Tkx6-2B-2FK-2BrxiF-2BgAX9Z90-2BbXKlkPzsggnyGtIJz-2F6UfscUAzAkkkzfk3BjyUhzE0F2Kb5NkefLW-2FJQyyAC37hpdQbAXgAeVdLTpO8G0v8TGjEh4fA-3D-3DRJbL_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCprssHcr67nIgHmy8gUHzYPujFqT9Ob3ogR7Cs5Mo9bSL-2BuEqj-2F74Lx0l8NVxqC4f078XWKr9odddOQgkAlP4EOrrkpPr-2BSaeHuP6cISLo0FjvaYzrps9u7tmu-2BCzUjeQ863bgmCteukj6EOvv-2F2GoGn25EQsANtDW5-2Frrmuryr-2BTFSF0XhILDJm3UsYEBN-2Fvi5IwiM2pE2scxS2tDFuVPKr\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>OTA Workshop: Rapid Technology Transition</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">JUNE 18, 2025</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">Eager to learn how Other Transaction Authority (OTA) can offer a fast, flexible contracting mechanism to do business with the DoD? Hosted by NAVSEA at the Washington Navy Yard, join our Chief of Staff Capt. Alex Campbell and our Director of Acquisitions, Cherissa Tamayori to learn what OTAs can do for your organization.<br>\r\n</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILjYlREuGUy7GbgNlCoAOjZrX2sNbKlF3Z5eNSq3OduaMD-2FgAVRybaCtgsf27U3F9zEuWGVGl-2BqfzPqFRrVM5xnUEKKRouGTOrhZW8355erQJtVgn8anYh3LqsppX9Ysf1-2BFb07H2P-2F1GmYUzDjWZAxq-2B69YErmnRScn09Oo1gc3oZmiQI9vf49Iv1CHKURnhhLcCxv4AcRw8IR2HtO8YnHkIdw1mv14YSKmnN3b5-2B6-2Fdgdmflyp-2Bzp57wntD05-2FNAi82ECmhTPn7lcjR52Tkx6-2B-2FK-2BrxiF-2BgAX9Z90-2BbXKlkPzsggnyGtIJz-2F6UfscUAzAkkkzfk3BjyUhzE0F2Kb5NkefLW-2FJQyyAC37hpdQbAXgAeVdLTpO8G0v8TGjEh4fA-3D-3DZtwk_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpoyfBADXeZW4cBVkmcVfLhtrEBNGI753mdOiSofmK8YhGLq6-2FBOXlAo87HFpVB78vuvFxzi2ZpfUMjWI0CqYwHBDDMKZtlNgBEhESKO0Y2fIqanlnpCwlRV7B5QzBXrrvvjy0KDbYYiDlwcSvsUKyZNITtOM7zjRa-2Fvh44P2wzUPWvoKOd7JmVO7CoMU7-2F6jmaTISEcQq6FoQ4mXIn8I9mp\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-size: 14px; font-family: arial, helvetica, sans-serif\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"600\" style=\"width:600px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.1.1.3\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILr-2BO30TitcN9x2fy0yDHeHYCKDMQ6ZhRs4U67dukwawF7ucaLSzboMSXLxuXZGLgF7r92ULERccUzFZpbhmm9LJsYf1B2ZKtZbAWxZtr-2FOgqB0UOH8U6Tyx9NPSfneu0L7jOZVocdm8cxiz1qeLVHAs-3DjK0r_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCppEiMUa8QAQmIoz5wGyqfrMxgm8NnjaTbYaxHsClOCFs0qdJ0jiYUM-2BXrlxwGNnXuE5ZLMNHE0ctSDqrl3tBoV0VwDLAx4ol2WaCgtz97gUpClkbp2xW-2B5tmKwvtH2b7EvMEAN90lj5nUuGPsl-2FzV9j3mI8tmHaiDp5MtE45j0NbnLJVRmK8bFJK6Br2Zfnd3Z0Y9Up6R7nLkIMZpcrW6P4\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>DefenseOne Tech Summit</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.3\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">JUNE 26, 2025</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">Talk changing tides of defense tech investing and the future of the sector with our Director of Commercial Engagement, Sarah Pearson during the </span><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"><em>Venture Capitalists\' View on Defense</em></span><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"> panel at this year’s DefenseOne Tech Summit.<br>\r\n</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILr-2BO30TitcN9x2fy0yDHeHYCKDMQ6ZhRs4U67dukwawF7ucaLSzboMSXLxuXZGLgF7r92ULERccUzFZpbhmm9LJsYf1B2ZKtZbAWxZtr-2FOgqB0UOH8U6Tyx9NPSfneu0L7jOZVocdm8cxiz1qeLVHAs-3DxQZT_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpr8KBiHxp0LF4rvSJl0zYxnQ5Fgt67dCmbRwgbMs2t-2Ft6eNAUz8yPvfi2Js-2B18EUDq3VE4YQ1YBnXab9Y-2FcIj373FWRM05Ww-2FF0HLuyhLvUSmCrXTgMD773GVQGOkuyQHFU67N2bbvfBaeaB2sEMe53MIVE2fdL8pyaEO2Ds-2Fz-2Fj9128QZr9FtZoFaOUjg0oH0CXsxQzaYexZoF3hTtar7b\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-size: 14px; font-family: arial, helvetica, sans-serif\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"600\" style=\"width:600px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.1.1.3.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILs1XNAkONq27Vy2eoL6dfunuZV2ouMkPE9B-2FNWdcY2xHpAAcKKPZuWSP3rIGaGjdCZDXkRlD29x5jm9PBY0D4OfbvErhiTGOVRQkLgaVns2YpfbVDpRstsowveZCHZwxANHTnGaXFUo4Ym4FKuzc2xLQCtsGSNwFNIeJLwp90rTQgmBa_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpotPhDl-2FA4iNMvYxUrmSGuj5Yz-2F-2ByKaMR-2FKD840a514Zfwa9KCZfFpIxeLHS5m-2BoNFHSiG0unnDS-2BS7mbXA8cw-2FvMFcCw4Q-2B-2BhGgtCVEh-2FRif-2FZcNKYRB3FgVVujtpZRgTTu7B3viqp9KbeQCPmxwfEw24EcrwCf-2FRCnySyzWoH4zyYv-2F-2By9oUhVIZf8stFKZaz-2FDos9YYT2RCly3A5iTQl\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>ICAP Information Session</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.3.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">JULY 8, 2025</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">Applications are now open for the FY26 edition of the </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBejvUMPiSc9SBzZL8Iig5LBGf5cDbNULUGgx51GH7iMFd-2Ba7oWf6DT1RerEs5s-2Fm53sjl65ZaHuTxHcLpmTGNiWl2DZN6NAhlnqvKHEJmJ-2BMD0Iy1eE-2FLz8pOiZlGCnExfcraYwRU53JQXmwrVYdozE-2BcI8lL0-2BtsZje6U65tXljcg-3D-3DaZdL_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCppJimOrojeME0VAGR-2B2n4r-2Bu8CbSNFmAOPvT3XZCARsuULpY9pU48Im3GQ9IJI0KruEZ3p0EvPpwjcoExQP2IGbkTpWqi8hkdxFzPI0x7Y3pRx6POByJCpy-2BfhkV5q7RNIizSEuy8Wn4VphgylKryjd9Tek1bHD-2FAZieveuf2lN8a3PmYc72APxp6H7BU1l-2B-2FT9xGMR2gSjmWT-2F0u-2Fcsi6R\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"><u>Immersive Commercial Acquisition Program (ICAP)</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">. This highly competitive 12-month program designed to deliver a group of contracting professionals proficient in commercial acquisition. Interested in learning more? Join our live AMA-style webinar, scheduled for July 8 at 3 p.m. ET.<br>\r\n</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILs1XNAkONq27Vy2eoL6dfunuZV2ouMkPE9B-2FNWdcY2xHpAAcKKPZuWSP3rIGaGjdCZDXkRlD29x5jm9PBY0D4OfbvErhiTGOVRQkLgaVns2YpfbVDpRstsowveZCHZwxANHTnGaXFUo4Ym4FKuzc2xLQCtsGSNwFNIeJLwp90rTQ4juX_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpoImaNGEP7ZdudAiCeBiptS00yJ4qSKxBJhp-2FegBf7CvmHnZIp2u3pEgPdBusHeeUJuYG9dUipOr6DeJp4CVVt-2FmIXDrVf0G-2FcxEmhqVq073JKvPSIEGKFMUa7IqNXkBci1-2FduBAgV-2BoEpyPwsQ0tkG9H0uOZHuK10Z0kjhD9JtQYraIzwz1M-2FWvWA6lN87Ej9WmrqkHDimnyE-2FQm8mEB-2Fw\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-size: 14px; font-family: arial, helvetica, sans-serif\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"b2aae8b4-07ed-4408-856d-9fad1455350e.2\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 70px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2e35c854-f82d-44a2-a0f5-30013d25e3d3.2.3\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px; line-height:30px; text-align:inherit; background-color:#e6e6e6;\" height=\"100%\" valign=\"top\" bgcolor=\"#e6e6e6\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-family: helvetica, sans-serif; color: #0d66bb; font-size: 30px\"><strong>Open Opportunities</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"200\" style=\"width:200px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cBiyKgSAf3sHzEQtGwL8gU.1.2.1.1.1.1.2.2\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:25px 0px 5px 5px;\" valign=\"top\" align=\"left\">\r\n          \r\n        <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9kGc-2Fi654EjxfC7gcUneG-2FZ8t5AyHoUl6ZdeO-2FYuJPcUTJiRYNwzKE1XObChGB-2B-2BCaCoIghdLCzaLv4F8SC8T4411K7i5hbARk9-2FKFN-2B71yA_JQN_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpr3s5vzyEEbMbEogDGgPI5Pp-2FSr43uXsiRKgEUEaFwlylxryQ8-2FW2DCw4d0GOsPCZrJGEkdoAGl-2BlxT3wh6fixkrwIOZCy2QYoyFFWs1CWTDKUjZgGQtqjO63FUyPjeXU45epZTtFoWSRVJwFN5TY-2B66r0OxOO6Ato9kOq8j7pgPX5HLEM9XZtcxUUmuTvo1ed6nECuSytyBq9f51oLTPxb\"><img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"200\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/21cb845f-dfa6-43b3-89b5-9485c7a42833/2500x2500.jpg\"></a></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"400\" style=\"width:400px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.2.1.1.1.1.2.2\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9kGc-2Fi654EjxfC7gcUneG-2FZ8t5AyHoUl6ZdeO-2FYuJPcUTJiRYNwzKE1XObChGB-2B-2BCaCoIghdLCzaLv4F8SC8T4411K7i5hbARk9-2FKFN-2B71yANE7g_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpqPPMRYDxMZQ611hQopdR6OR66dsC1Udabz1pQ2kEliANh1niue8uoFhlBascWHMjZVHcvoSe9COTpzC-2FkgyZfflFCdoxftsi54Nti8SC6tj3jSkCBQVoHss3cTVBBhqu-2Be-2Feg9oHTY5GFWpYdUiE2HgbdXwAzK8pplNS1ubIAxk3gYuZ2RYVN4yQnoi9KKs0EAWoUCd4rUJpizXl76a7Dr\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>$2M Available For ‘Ready Now’ UxS Solutions</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.1.1.1.2.2\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">We recently launched the Project G.I. Prize Challenge, built for DIU and DoD partners seeking “mission-ready” uncrewed systems (UxS) solutions to enhance the speed and lethality for small, dispersed targeting-strike cells operating under denied, disrupted, intermittent, and low-bandwidth conditions. Proposed challenge solutions must enhance tactical formation’s lethality, survivability, or overall mission effectiveness within the specified and serve the needs of a DOD customer.<br>\r\n</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9kGc-2Fi654EjxfC7gcUneG-2FZ8t5AyHoUl6ZdeO-2FYuJPcUTJiRYNwzKE1XObChGB-2B-2BCaCoIghdLCzaLv4F8SC8T4411K7i5hbARk9-2FKFN-2B71yADKAL_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpqeqCJW8HdGz1YvrtgfbKlLEhNNBdEYVzC-2FJcGmU40JuEq5RoFc1yQV165YBLYKAzopw5w5LJLNAnaiPfeh3umoWL42DMEWIONmx2-2FibG5bUuArOYqkDZglJEQNU1mRiLsjL-2FUgZTiZk8v8qazm8qiv0-2F-2BuNrbuH7bJW-2FBga9xZ-2FzU2BWLt1IGAhLdZ1-2FqfdfqPc5cNAqXUSLzkIeNKKIF4\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-family: arial, helvetica, sans-serif; font-size: 14px\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"b2aae8b4-07ed-4408-856d-9fad1455350e\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 70px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2e35c854-f82d-44a2-a0f5-30013d25e3d3.2.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px; line-height:30px; text-align:inherit; background-color:#e6e6e6;\" height=\"100%\" valign=\"top\" bgcolor=\"#e6e6e6\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-family: helvetica, sans-serif; color: #0d66bb; font-size: 30px\"><strong>Open Programs</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"200\" style=\"width:200px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cBiyKgSAf3sHzEQtGwL8gU.1.2.1.1.1.1.2.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:25px 0px 5px 5px;\" valign=\"top\" align=\"left\">\r\n          \r\n        <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOfPSNye1VBXUtGwLr5B0g4mXzatChOvzjYr7H9gNSTcJex44GQphwStBzDtoYDwUIZjt9dvfwqfowCerMF3Z5SbODEC6jS3i-2FGB44CZqxaV9PX4BRLBQ6Zr7fqWQJ01oPbM6T4kp7JDFPp134dsfdXBEcibq5Hh02fkcq6oaMSa5Q-3D-3D_sfY_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpoOUynZ3G8b8ud0Kup00QRpkRZ-2F5z6ZUW8mDf1Dd7EQRWIbJ7QmPEd1abBnVeA9qMcgsiJM1JTTh3St4rZwgeoissTKHskZY4udDkP-2FE0arlgftD0hilxA-2FwO5Of8Z5uZ9ZPTagw4fJsHzPx3o61vUwSMFu48beIe06706LdMT4LSu9CEozLDmGvQHSFsGrtM-2BJxVgJ3vhe-2FC3HWSeko68l\"><img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"200\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/26f51dff-7af0-4526-a2ff-55d8b15f204a/1080x1080.png\"></a></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"400\" style=\"width:400px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.2.1.1.1.1.2.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOfPSNye1VBXUtGwLr5B0g4mXzatChOvzjYr7H9gNSTcJex44GQphwStBzDtoYDwUIZjt9dvfwqfowCerMF3Z5SbODEC6jS3i-2FGB44CZqxaV9PX4BRLBQ6Zr7fqWQJ01oPbM6T4kp7JDFPp134dsfdXBEcibq5Hh02fkcq6oaMSa5Q-3D-3DVNUU_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpqNsCQG8oF6SS8UGCAqc-2FVd5zgVAHM3W8BjINj10hMGs-2FcjexYFXAyflii-2FS2Gj8Da-2BV5Rx1SMgDHKW6OMhziulD3BOf5gMjAmMPians35Fr8Dfdnkd93CX1shH4FCkeChiyFNArUCRP-2FMxU-2FCICPaSDGIyWIwEC5PkHK8MZF4zNXoLf6F9CPowE-2FvaFhdtWbP7-2BtQI79OB4K5JVdkyPTQO\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>DIU Launches Dual-Use Academic Accelerator Challenge, 15 Openings for 12-Week Accelerator</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.1.1.1.2.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #454545; font-family: helvetica, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline\">JUNE 25, 2025</span>&nbsp;</div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">Are you a technologist looking to gain knowledge into the defense market, receive tailored mentorship, and funding support to scale your tech? Apply to be one of 15 individuals selected for a 12-week accelerator program and your chance to receive a share of $500,000 in prize awards as part of our Dual-Use Academic Accelerator Challenge. Applications are due June 25.<br>\r\n</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOfPSNye1VBXUtGwLr5B0g4mXzatChOvzjYr7H9gNSTcJex44GQphwStBzDtoYDwUIZjt9dvfwqfowCerMF3Z5SbODEC6jS3i-2FGB44CZqxaV9PX4BRLBQ6Zr7fqWQJ01oPbM6T4kp7JDFPp134dsfdXBEcibq5Hh02fkcq6oaMSa5Q-3D-3Dtyic_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCprQ3eFU5ph3xjwtZlt5tMhav6ycQE6cM-2B8B5sdKcaSi-2FEg67lV8AInQEZazQL9oq1P32OAXpf118xwsH3Vzn75O6uBY-2F8rFhP-2BRV14jqZ8THe2CmmatEHcuirm1I-2B-2B5VUC3zmRBdOk95vMrG-2B66EG47eBiY9gTmz5WVqd4ebBrwwkv5Sut3kSK1E-2BQiR6vufZ0qHdvmxREDbYGmqTQXx-2BSU\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-family: arial, helvetica, sans-serif; font-size: 14px\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"200\" style=\"width:200px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cBiyKgSAf3sHzEQtGwL8gU.1.2.1.1.1.1.2\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:25px 0px 5px 5px;\" valign=\"top\" align=\"left\">\r\n          \r\n        <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOcO1bK7CGMB4k53poBLNsdlOrxhASoKRWJJd-2FGQRqGfyFF40MZPxYIdrAnBS0b3i2rhfF5ZNde6Jg9imWdI1r7rS9HujntqPq-2Fr8MYBkuHNQHTB3Ho3l5C1x-2BUHbiA6WQ5H5FmAk1Mjv0Fc-2BePw-2BxHbqj1AqWapzyoI408puE58-2F5MHw3pHPvpu6hR0cynwqz4-3DgA71_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpqAVY982rlATb20oSFBFbgZMCI-2F8yroNp2X9hzLqsOatl944tpXqq28-2FbHV9MAT68xT-2BUiZT6CpFJPJMQ1tCTXehtuVpgYHeGZG-2Fm43MvUqQ6-2B-2FybQnQYNedWm8FkvAJNwY-2Fp0s-2BWmMUpIYGlavmwW-2BCA9cwAL9EPVAHtiLTubq-2B0zxY7KoqSttffgikZ9GlEKiLK9Yv5vAHQnVX-2FXj00qW\"><img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"200\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/98ecde0b-a7c5-47ff-b672-76ff6fb4bf11/1080x1080.png\"></a></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"400\" style=\"width:400px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.2.1.1.1.1.2\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOcO1bK7CGMB4k53poBLNsdlOrxhASoKRWJJd-2FGQRqGfyFF40MZPxYIdrAnBS0b3i2rhfF5ZNde6Jg9imWdI1r7rS9HujntqPq-2Fr8MYBkuHNQHTB3Ho3l5C1x-2BUHbiA6WQ5H5FmAk1Mjv0Fc-2BePw-2BxHbqj1AqWapzyoI408puE58-2F5MHw3pHPvpu6hR0cynwqz4-3DiRGZ_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpoPMfj-2FQMSSRAvNkuF-2BRW1gl-2B3ApIyDP8lzT7H94ebK9U-2F8nQ7nkk-2FclPCsZsYDeCarbAIA9jqbQQ6VrVazl-2BkKeGM-2FH-2F1GMTLPnK13aq6piGfMlDUos6Es2r2hV7J6PrZe5v0Pk4xa4Z3aIOVAkWi5MW7he2lusmWje5p2aLPJtCbtRrODFYMRzm2gvCOezu9zZ1ng3j8NqkxnPrVBhbMH\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>Opportunity for Contracting Officers: Immersive Commercial Acquisition Program Fellowship</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.1.1.1.2\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #454545; font-family: helvetica, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline\">JULY 31, 2025</span>&nbsp;</div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">Highly-qualified and motivated mid-to senior-level contracting officers are encouraged to apply to the </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILtkwjuL0lMZvXAbr70oowKS2ZI0Jgas1dE9YQZLp4324iRiij3ZD-2BiRZY6oc6eKgi0Iom703kTElvfSoVoSxZRgxmZ1DWs8qECbCBEZapfaITOrF1zH9TCbntF-2Fseciex-2BWSpKNNRThFX76bkM9clSvP-2BVUNa2eQeovGgCDHXqU78GeFmxAJ1v2H64zy7xUugaTZ3PbKktWadN26UOjY7pi8fJuVZUmGlqFRBKdKYpikvOw-2B3OG49UxLxCiJBzL6oA-3D-3DpxcB_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCppsNuGvXX4-2B72TTEO0MVRheMjk-2FVr8KRdQ-2B-2Blw5feNWIB-2FQvdXba-2FwT7vKQrEcKnXcIVj-2Fgwq43CQddTkWh6kjBMDK1ajNzZlGipSQqPhq1QwGyt-2F9VhSCgvcKt9ko08Rnk-2F7TauCQ93FM-2BB-2Bk0iv8HPgj6UNMhz-2BEXNyFYoCnJYcw2WXlVWQSdrCK2M8BeCoTzrOjFggTu0FtBX6j3U4Cf\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"><u>Immersive Commercial Acquisition Program (ICAP)</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"> Fellowship a 12-month program offers hands-on experience with our commercial solutions opening process, OTAs, and provides valuable insight into the commercial market and the dynamics driving commercial organizations to engage with the government and DoD. Learn more about the ICAP program at the AMA session set for July 8 from 3-4:00 p.m. ET.<br>\r\n</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOcO1bK7CGMB4k53poBLNsdlOrxhASoKRWJJd-2FGQRqGfyFF40MZPxYIdrAnBS0b3i2rhfF5ZNde6Jg9imWdI1r7rS9HujntqPq-2Fr8MYBkuHNQHTB3Ho3l5C1x-2BUHbiA6WQ5H5FmAk1Mjv0Fc-2BePw-2BxHbqj1AqWapzyoI408puE58-2F5MHw3pHPvpu6hR0cynwqz4-3D_eI-_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpo-2FSJ5XPFf0b58VGK0wZikGkRS2Ix-2BtGIyCNPVjPO4o9i42-2BSAfPPAet7Hz0NTBUS1MfxEaMqHUsvYxLLHc7KjVoWxrapwuxRMyuky9lT-2FK-2FiRaHcmBEUYYSHRDfa5z6YdgRV1ZL6kbKxcqSLmd0R2JS5kERr-2FZ3bF2jrnPsad16GS3Z2v929B9sM6-2B3oBSZrSpM-2F3ccQMD9jlLxwhdW7IS\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-family: arial, helvetica, sans-serif; font-size: 14px\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"b2aae8b4-07ed-4408-856d-9fad1455350e.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 70px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2e35c854-f82d-44a2-a0f5-30013d25e3d3.2.1.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px; line-height:30px; text-align:inherit; background-color:#e6e6e6;\" height=\"100%\" valign=\"top\" bgcolor=\"#e6e6e6\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-family: helvetica, sans-serif; color: #0d66bb; font-size: 30px\"><strong>News</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"200\" style=\"width:200px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cBiyKgSAf3sHzEQtGwL8gU.1.2.1.1.1.1.3\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:25px 0px 5px 5px;\" valign=\"top\" align=\"left\">\r\n          \r\n        <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOeqEy6xY8FKISbKUr2RJAMR5UthVp5T8oqU-2BdEQ9WMhXxB8WflE5J1FhCeC6nIC-2BNwo-2BsUmpm8YH5sP1eFgP12O1NNLh4a4E1rp-2B8I2qruti8wo7C-2FzEIf76LoVfKC6owL5-2BTjX7cfTyCYNqAFzl3k4491qvlBW-2B2LzAnWA6g3z9JNXJdq2KCC9KL049wL5Mw0-3DnMpE_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpq-2BD-2BqeiaD0-2BrsAcuCJD00riwoeiEP1Pq-2FHe7sxtDdB9N41FftCMi9d-2B12OFiEW2LYsR0smsvBos6LfXEAMKEbjEnbVEACKjNPn-2B8qSzuKUFmMdYIEqwsxztfwuKuxyEKsXTeZCVkQeT2dwQ2LcxkxaLV1yaSXfyot2ZUXtW3MvGKB5zunsJqdnGmY4TqDv6gup25F9fsBqpJ-2Bfe628oxBj\"><img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"200\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/df94229a-2864-4959-a62d-74f01ac2ce3a/1080x1080.png\"></a></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"400\" style=\"width:400px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.2.1.1.1.1.3\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOeqEy6xY8FKISbKUr2RJAMR5UthVp5T8oqU-2BdEQ9WMhXxB8WflE5J1FhCeC6nIC-2BNwo-2BsUmpm8YH5sP1eFgP12O1NNLh4a4E1rp-2B8I2qruti8wo7C-2FzEIf76LoVfKC6owL5-2BTjX7cfTyCYNqAFzl3k4491qvlBW-2B2LzAnWA6g3z9JNXJdq2KCC9KL049wL5Mw0-3DNewj_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpqFEOy1T44V3m94BDdCiV7yY439q1YXyoxvqukErMucmJOkKdzZxXi7xKH0UYYnqIm1avr30PNm6vA4EZV8XYgDloYK2FkVcojxMkurdN9-2FpC1uOAg6SDjf1wbKGUjeBPrUwLh6FDqU2cP8Lndw6lCOhGqgpM-2FNCoSVKlxvogBNpKrGrKQtmxdlQ1JoDamfqY6XUx2FP6j82coTRtpCySfG\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>New Two-Tiered Blue UAS Model Launches, Identifying ‘Best in Breed’ Drone Capabilities for the Warfighter</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.1.1.1.3\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">We have announced changes to </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILsTABHxG1CogkgrpyoCpugKNATZlyTE3vU6DKVAJoBkjTDVnfseODV3zxSHkqWfQLH3LrQD5M9ZnHB-2FyzArBcO-2Fki-2B3ck0tQpKYiyaXyfSlcmhp4ckF8gLXLgliFCokD3A-3D-3D63WE_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpocXLZAybVfWf-2BeVBnHZL38Of8Kls44-2BTGbQ0RvYqBll6VODCb8MPSR3FCW0qOklAgwnixhybOvubMaWNMujB-2FAnzSFUCgwRR8Q-2BssQ01gpu6NUS1nMY-2FkQuS12Hli7qZBhtHUd2uowNnR9zN04tcIby-2FduSMBtNZdsaO8gQq2JLwmbJOOwxPoNX8eXEkKM8pd11S5h4QnSDLPMaRXxWeFV\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"><u>Blue UAS</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"> - providing a way for companies to verify their NDAA compliance as part of a two-tiered system and evolving Blue UAS to provide better support for solutions to DoD problem sets. The first change will allow us to leverage our </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILqOeikf2-2FT-2B9epnBQarpNSs2uC7-2FDeo-2BFI7xM8mEBufRW-2BVsgY1zuCwV1ll6xtivqFqerMstzb2rOJ9O0ooGPdvJah16DDfIX6Y8tfFAjmh8xpQ4WEo1zVYoWQnspn0Vm-2F82Xwg0Ntfm-2BqGFj-2F97phKslUxD84-2Fyuddy-2B0iqHCVloqq06UmrDbdq6Qk9oJtWUMVRcJZfhyoQR2JddreVaro-3DjMRx_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCprSg0Sa6q6KHE03oaqGkIDZU67gi9Yn2e0a2oHVcnozznfoBuZigSqvMA-2FOHn-2BP7JsXo9SyDZl7yjOmElkuPUJOR-2BHTftGZvun-2Bz9ftuaJJRtg53eTWryIKhGtJxlxoPDaMQQRV0zoO8q3Y265-2BmCeMFvoIbMnPCY8EzOEQ1QIH99xwuaCcgUsPcf8tmOgMPjX-2Fn-2Bd-2BgP-2FbeDmkRcBamsYn\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"><u>multi-stakeholder partnership</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"> authority by selecting a number of capable entities to assess UAS platforms and produce reports as </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOeBDpbJ0b-2FvkXHeunX6mDGzoo5EsMQ3NyOAW9fJfjt5JEE19ZwMEpVh27NyzsOxptWZEdwB-2FFjU5Nqk6icSUvW4M3rvCuPs6wZgAXHYPvAqQIXdx-2Bp5uC1qixepBnS-2Bjf7wACtZKjlLD4XrCY4JRX4UGHp2Es4h9qeF6PCeq6Wxpj36IvH5XSFL0r0Df716OiuSwB1YUM4GOlNX8sTf-2FTrRmJA64L2TOVTyfBDnBBctiA-3D-3Dxx2K_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpp-2BwJtpefR-2F0vOF1Qey92e4SsIOW5mKDu4YKi3b85IXn-2BlDg49xy3P7eT5kJO3bzyFROwN3pZDuK6fpyuc-2BrpRJC6LUijdkDgEKOYVsVukege-2BN-2BC188sOTYeP4jkp3-2FWKTqC6p0-2BFx4tKXELSj8jisv476jU7GTKJJ9cNtb6xagxAXfRMWOsXgKZB0QAVkFh4FoHCH5oBbX-2Fo5FK90IXQD\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"><u>Recognized Assessors</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">. Companies will also have the chance to be referred to as Blue UAS Select, when they have met both cybersecurity and NDAA requirements, through either DoD sponsorship or competitive selection, and that have received a DIU-generated or DIU-approved ATO.</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"><br>\r\nLearn more about becoming a Recognized Assessor </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOeBDpbJ0b-2FvkXHeunX6mDGzoo5EsMQ3NyOAW9fJfjt5JEE19ZwMEpVh27NyzsOxptWZEdwB-2FFjU5Nqk6icSUvW4M3rvCuPs6wZgAXHYPvAqQIXdx-2Bp5uC1qixepBnS-2Bjf7wACtZKjlLD4XrCY4JRX4UGHp2Es4h9qeF6PCeq6Wxpj36IvH5XSFL0r0Df716OiuSwB1YUM4GOlNX8sTf-2FTrRmJA64L2TOVTyfBDnBBctiA-3D-3DGrqq_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpq-2F8-2FxMqUa2wOmXH0717Wxwzdmxujwo9o5PBvLlPau-2BMx83OBHxiw7fE0BTURlX4WtN63DKcvZC0gohSiqie7PkPd9DVkE7AaEaNvautDA2d21SGx-2BsQjcsKBF1qUNj5uug7IZv-2FfstrbruoQPWkzGhPNMml3oxj-2B1JBITFOinI0TVrcf7iGfQ92WimplCNZG8iZRvwQ1oeg4gpHiph6Wlh\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"><u>here</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">. Submissions close on Monday, June 16, 2025 at 11:59 p.m.</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"><br>\r\nLearn more about the changes coming to Blue UAS </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOeqEy6xY8FKISbKUr2RJAMR5UthVp5T8oqU-2BdEQ9WMhXxB8WflE5J1FhCeC6nIC-2BNwo-2BsUmpm8YH5sP1eFgP12O1NNLh4a4E1rp-2B8I2qruti8wo7C-2FzEIf76LoVfKC6owL5-2BTjX7cfTyCYNqAFzl3k4491qvlBW-2B2LzAnWA6g3z9JNXJdq2KCC9KL049wL5Mw0-3DGywq_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpor6CVLPH2esAojCF1XkRLf8hEqkOr-2FjPezdOcOn-2FgK1ZkAd8zAt7QnzbCyDyd2sU3WxDFMJ26CJKFFV2blTNvJDjCy-2FB0vt7-2FHvXta2ffPhqdrPwQ2uoxjGnHHvLWkKreg-2BUQBo-2F1f9fz5vrc2tQBeG8K02mNcI40f3YV3v2NWyjXw6INT3SdO2Sb0VJQFSwEZ6AixW9KaccpRYOmHuHM-2B\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"><u>here</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">.&nbsp;</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"200\" style=\"width:200px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cBiyKgSAf3sHzEQtGwL8gU.1.2.1.1.1.1.1.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:25px 0px 5px 5px;\" valign=\"top\" align=\"left\">\r\n          \r\n        <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOd9QmY-2F2D5KmNnv5ncFX3hQ4D-2Fa4sAxbspN6Yi-2BoSWFKCdjgIVzR236xyC6YyXpBhl21zAAOtCx2Lf3geiywBcMYPpwG7NloDF-2Blb1jsl2Dz8ZSH6dQyO0-2FXGEXfKvCMro-3DiHSz_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpqnQGr4FC48MTpgQLuFkcm5o46E4ssqFl9cSVI19ZZ-2B7pL6XzAHGmf4ICXOcdKOrnb8Vs1iu85we4RXpJ6h2cLeXK4Nepl1JfTRo-2F8W9X5lz-2FxWfJ6ex2XoUjOabC4g1QfEqyhNOH4zsuXg6rFrARLNTPxqSmAQlaIaxB5W3SsODEqsBVFgtBZHJXg9oPxPw4KBghNEOO7MQ-2B7gbWllTprE\"><img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"200\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/9cafd5f9-ff8f-484a-bd35-3a5aa6be7e0c/1080x1080.png\"></a></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"400\" style=\"width:400px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.2.1.1.1.1.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOd9QmY-2F2D5KmNnv5ncFX3hQ4D-2Fa4sAxbspN6Yi-2BoSWFKCdjgIVzR236xyC6YyXpBhl21zAAOtCx2Lf3geiywBcMYPpwG7NloDF-2Blb1jsl2Dz8ZSH6dQyO0-2FXGEXfKvCMro-3DaAt2_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCppTfAZEEwm353KNTbNUIdU01GvAm-2BBT5FTN9VmZ3BhRE7HisqJ0EWxi-2BIDfie3zUYYcNG2TV48CFaNeyQk5iPeqAD-2FYTlIFGSij-2FJXg8MHC84YV6Xi8XaZB7CFCgy-2FUVn6wSxZokKW8-2FTlp217YOhiGwGxux-2FHQk2IGZXNYxKRbSEPaKX6YD0k42k-2BTLyBz2SIuBNHbnXiGP13HiwgEpN2j\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>DIU at the SCSP AI+ Expo</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.1.1.1.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif; font-size: 14px\">Members of our AI portfolio attended the annual SCSP AI+ Expo in Washington, D.C. The event served as a showcase for our new and ongoing projects, including</span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9kGc-2Fi654EjxfC7gcUneG-2FZ8t5AyHoUl6ZdeO-2FYuJPcUTJiRYNwzKE1XObChGB-2B-2BCaCoIghdLCzaLv4F8SC8T4411K7i5hbARk9-2FKFN-2B71yA0BMQ_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCprQ5G4gqoyjzgjRYQMgKm-2BmXUANG73SPaz7K2z12SaCbm6lyrgDdwckjY0KoQL2Ayz7geZpcl65QK1FWItf-2FO8e7aeQsKj-2BcT7apqSka4tXEBpZwRHaGPZ4g1NNXGv2TUNxxNIY3qTow8SkQ2Yff04Soq9mAovl4fXZcW-2Bpb8AFZOkpu5x5A-2B4mhFtV5oOW8QiUfk8IrbCb17bIiup4AXE4\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif; font-size: 14px\"><u> Project G.I.</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif; font-size: 14px\">, our call for </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOeBDpbJ0b-2FvkXHeunX6mDGzoo5EsMQ3NyOAW9fJfjt5JEE19ZwMEpVh27NyzsOxptWZEdwB-2FFjU5Nqk6icSUvW4M3rvCuPs6wZgAXHYPvAqQIXdx-2Bp5uC1qixepBnS-2Bjf7wACtZKjlLD4XrCY4JRX4UGHp2Es4h9qeF6PCeq6Wxpj36IvH5XSFL0r0Df716OiuSwB1YUM4GOlNX8sTf-2FTrRmJA64L2TOVTyfBDnBBctiA-3D-3DZ8YV_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpoisJEc6ID4Tvr-2BBAFXB70ZGqh3nMGatp83n-2F7cNRzgNhBvpbfMLZl-2FbWlSBO-2BG3aS93WUO2CP2sDz6srk-2BqgXnrfL9Scs43-2BXFWNbC29ibSY9cQjAgGlSB89vqL-2F8klSomnHZmvRb2y2xoji-2ByuUKote-2FkZjaQUa6R20w9Zpw2e9Tu2I3lPxN4YBgAvjjbBXJ036qBVJNCSGm8-2FqHlnh18\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif; font-size: 14px\"><u>Recognized Assessors</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif; font-size: 14px\"> in support of </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILsTABHxG1CogkgrpyoCpugKNATZlyTE3vU6DKVAJoBkjTDVnfseODV3zxSHkqWfQLH3LrQD5M9ZnHB-2FyzArBcO-2Fki-2B3ck0tQpKYiyaXyfSlcmhp4ckF8gLXLgliFCokD3A-3D-3DMYQ7_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpqw2zpgpe6UOPZVURANnad0HD0XN674BNH95ULiNZdFB-2B3cNbqtBFIXZ7kyCgsKuXU9no5sWZSIqsa5kq5tRBOYZek9QP9iXONjIMmoSkQDwKEv5M0-2FP6OOv9Gnu1ODFfDeQitNuMsj3Mb0B2TI-2FRuainkCAo72HjNtJfeEu6LXpkxM0bywBj1bEe61uLD1A7kgM1Qd83sbpS8jOYQH2if5\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif; font-size: 14px\"><u>Blue UAS</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif; font-size: 14px\">, and our </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILqGbQdSowJwNqK3wVMTS1Ev129Ijp1HamtZUKMYaYLjKJTOPSqDeBrc8jHcP4dDUBkItOH-2FcPsLfL-2Byk5PHZQJIG0gGTxg5FGeUGBngPpY1vGpLJ2oTntOZMntcW5WecFw-3D-3DRWEM_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCprZRe2I-2FoqS4YmyLA6v3Pjpz1DP4FKkswrBwlsp8RupZpqJmfgPpormIUILuPFS2ldaOD6bnDwqGYqWlylOK0-2BAYTlvSLf44VzyumDthVlxtgkY3XU-2FLSYi9f1Gh9Tm91YmIcwiIprVZFxDuNy5VAbusoEeE08xTJkJw7xPqCfsQJRjhToetMCO0mVbFLUnDJ2lD9E-2BKSzPkdTJg8YOnUwr\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif; font-size: 14px\"><u>Digital OnRamp</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif; font-size: 14px\">.<br>\r\n</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOd9QmY-2F2D5KmNnv5ncFX3hQ4D-2Fa4sAxbspN6Yi-2BoSWFKCdjgIVzR236xyC6YyXpBhl21zAAOtCx2Lf3geiywBcMYPpwG7NloDF-2Blb1jsl2Dz8ZSH6dQyO0-2FXGEXfKvCMro-3DeGxW_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCppc32ANQHLo3QNzHwTIB6181AyZI0Y4xk6vEfvBwfmhOqGH-2BZb5R6PSXLHUteIY7kh5Rna6Q9Vf4YkseybrfWox-2BZxxrYo5ucKFHcXA-2BTQFX74sORj5rfve0FX2kp2g2xxlx321ojcFWAvnkR2rsfnZsmZUPKU0iIHh1vjqSQDKHEGm0PAhWJtoz8DWgsxcrdJLiRUOurvis2HDCHl9WQQF\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-size: 14px; font-family: arial, helvetica, sans-serif\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"200\" style=\"width:200px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cBiyKgSAf3sHzEQtGwL8gU.1.2.1.1.1.1.4\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:25px 0px 5px 5px;\" valign=\"top\" align=\"left\">\r\n          \r\n        <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILtkwjuL0lMZvXAbr70oowKRyggmFwALgy-2BpL1MFiESazWFT6bfK5WLBz-2BBZuaSnpt0XMIbjDhEUk9lh97DSBJhTXVluIaouQAxKdHsPMJVmiUKp0TWFx3na0kXWsNuj7IDp1IQXYdVLqDNUl7bUreOcMweyPLF-2F88E63l1tghHisF45slTQ8B9RhrhyqAUhgbz5gZdPfIQsrSFZozoeK9Ztkc1OlW9APfuxAQL6Gn46UDVlIVKZLwzFh8GGKCKWegjJzz8L-2ByXpNJTiAGH1F1ak-3DpcSe_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpob3V0CFNBniMemcTpLoQeyUELg7lx741aUdrWViNpy-2FBK3DHPHm8e5OVeQrVGhk-2BemL3ARTOz8hgyJmgm774BYQfoN9cuD8mLIrYViYgw7qQazM23mx0TVt5w4rolEgTv63F-2FyuB-2BT-2Bi9CCc8Kern7yntw8AoBnJvujdHUAox-2Fi-2FecLp2fGmc8YuqvsAJdLMnilloRfKsNIZK5XaXKsOBW\"><img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"200\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/30e51c5f-f2d8-4884-9634-a06315d9af4b/1080x1080.png\"></a></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"400\" style=\"width:400px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.2.1.1.1.1.4\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILtkwjuL0lMZvXAbr70oowKRyggmFwALgy-2BpL1MFiESazWFT6bfK5WLBz-2BBZuaSnpt0XMIbjDhEUk9lh97DSBJhTXVluIaouQAxKdHsPMJVmiUKp0TWFx3na0kXWsNuj7IDp1IQXYdVLqDNUl7bUreOcMweyPLF-2F88E63l1tghHisF45slTQ8B9RhrhyqAUhgbz5gZdPfIQsrSFZozoeK9Ztkc1OlW9APfuxAQL6Gn46UDVlIVKZLwzFh8GGKCKWegjJzz8L-2ByXpNJTiAGH1F1ak-3DOh_l_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpqTPooqWkSPNAyX8wMayLh0-2BMZWa742oJKIudrM2ivnBPEIRtI5pyDv-2FVEwWuhe9E6p8Wgy3f6sze2h9uRDi-2FqK2njIk30lwIqNHgcysFUOsnszdwFw0-2Buc4-2FLB5s4uoeW-2FFx1zSu0evFbMNad6L4e2UUeKf9XjU-2BIDmF1vHr-2BQUKzOQj9yLDY-2Ff-2BzgkJK0qHPwmr80XApGb6P2vvj5KFTD\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>DIU, UAE Partnering to Enhance Defense-Tech Ecosystems</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.1.1.1.4\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">Following the Department\'s announcement to establish a comprehensive U.S.-UAE Major Defense Partnership, we signed a Memorandum of Understanding with the Tawazun Council of the UAE to strengthen defense cooperation and enhance mutual capacity for finding solutions to military requirements by developing and accessing cutting-edge technologies through non-traditional processes. This collaboration will deepen ties in defense innovation, facilitate joint capability development, and expand industrial and investment partnerships across both defense ecosystems — aligning with strategic efforts and investments outlined during the President\'s recent trip to the region.<br>\r\n</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILtkwjuL0lMZvXAbr70oowKRyggmFwALgy-2BpL1MFiESazWFT6bfK5WLBz-2BBZuaSnpt0XMIbjDhEUk9lh97DSBJhTXVluIaouQAxKdHsPMJVmiUKp0TWFx3na0kXWsNuj7IDp1IQXYdVLqDNUl7bUreOcMweyPLF-2F88E63l1tghHisF45slTQ8B9RhrhyqAUhgbz5gZdPfIQsrSFZozoeK9Ztkc1OlW9APfuxAQL6Gn46UDVlIVKZLwzFh8GGKCKWegjJzz8L-2ByXpNJTiAGH1F1ak-3Dkjv-_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpp8ieqsqBUJemA48n1Ido7-2BB4iG2Q1Me9RWpBOpbgPXfLG1-2FqZj62aqAL8dXTpmuLGEfOqomKMb1LK7Q-2B0W-2BDkdEzk65FjSEbsGnAG4-2B-2F2vG9ti2S7drwAis8rXx-2BbEGLPaKF-2BwrYR6VKNThTYT5hlOOCN-2BU1V83ki7wUeP62qV4P2k9qgdSqWs-2FZIIdiEffDEoBMLcyhHjGWFNhIBqiW-2FJ\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-family: arial, helvetica, sans-serif; font-size: 14px\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"200\" style=\"width:200px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cBiyKgSAf3sHzEQtGwL8gU.1.2.1.1.1.1.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:25px 0px 5px 5px;\" valign=\"top\" align=\"left\">\r\n          \r\n        <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOfyw64nAbHaOMy6rdbs8KL4Xm0VbCJlA289U3FNEWjv4Ef3MLfXEcl7uKDJPd5e4-2Fs24t39MMflCl-2BRzumSSap-2BAlcn2fFjrh4W1r0K9EqclBeyMav8mJiT8dKdOqDqaQyo9P14Xhlwz5aTTYx25f474Z6L0UA9Pl-2BteP6h5jAScTwKFNP5h3hLW5pplOlLEWA-3DQ9CQ_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCprtWEf9roJA1MGMng-2FuNd66AQoHUweB-2FYg4ubL8FdvnUiNeD0dJy85E4T3nz01FioSci1eYST2qfKgXc6nJiTbQdJ9UdeIKVlqOrmv3vfGc8E73gZThMhRAv8Iah3ZwQDtNHakQTR-2FAMMJSXMa-2B1cN5Z1UC8mY3BegIvHh-2BOuId3XHnb-2BKDxcCQRzlCHsQDCr4TndtjCAvkUAK6XIBER5JE\"><img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"200\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/2387f255-d241-425f-8c4e-e2469739a72c/1080x1080.png\"></a></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"400\" style=\"width:400px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.2.1.1.1.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOfyw64nAbHaOMy6rdbs8KL4Xm0VbCJlA289U3FNEWjv4Ef3MLfXEcl7uKDJPd5e4-2Fs24t39MMflCl-2BRzumSSap-2BAlcn2fFjrh4W1r0K9EqclBeyMav8mJiT8dKdOqDqaQyo9P14Xhlwz5aTTYx25f474Z6L0UA9Pl-2BteP6h5jAScTwKFNP5h3hLW5pplOlLEWA-3DYKRL_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCprGIVvdcjCbxhV6IQq-2Bfgf30n9UcRaAoep-2F5XDQC8DGAQgoxeUS7qiV46f1n8w-2FSAe1i9eixy-2FoxQyA-2BnwELfA1Xwat5dfpqDWcJaedO3-2FpcIc3hEPNJMgh1UG-2B2PSVenIqvsxmPn-2FsihMvQ0gZtxAFf6U3BfESLlqg82eew56wkvzojOCBjWlPeBM1naEy661RZWegT9F7jtLiSsxgUWaX\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>Contracts Awarded: Hybrid Space Communications Network Leverages Commercial Technology, Enabling Faster Decision-Making on the Battlefield</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.1.1.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif; font-size: 14px\">The Hybrid Space Architecture aims to integrate commercial, civil, and military space assets and support real-time decision making for the warfighter with selected companies to begin demonstrations with key mission partners in Summer 2025.<br>\r\n</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOfyw64nAbHaOMy6rdbs8KL4Xm0VbCJlA289U3FNEWjv4Ef3MLfXEcl7uKDJPd5e4-2Fs24t39MMflCl-2BRzumSSap-2BAlcn2fFjrh4W1r0K9EqclBeyMav8mJiT8dKdOqDqaQyo9P14Xhlwz5aTTYx25f474Z6L0UA9Pl-2BteP6h5jAScTwKFNP5h3hLW5pplOlLEWA-3D2sqR_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCppluBgQivFQW193UMEem1hdXE1C3dE9ISSNpccL7sEAoQBkb4p9IL49EJ8l8-2BV-2FJRxaSyQAuT1MF1fz-2BB0EqMZS2BZ6iTZfKW-2Fbt9RqmW-2BN0RzkkzBSmtF8Wt3FcmZQNmnCHXcrTWXe56S1J-2Fcs4j5Jx6Ht-2BhvZf7o3tCNO0uf2O5XqTTUOAG3tTBbCSsZnf12fP-2B9CqQT0epNCA8DgAtVE\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-size: 14px; font-family: arial, helvetica, sans-serif\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"b2aae8b4-07ed-4408-856d-9fad1455350e.1.1.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 70px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"600\" style=\"width:600px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.1.1.2.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: center\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9v9Frb8CfXNFnM9xkwe1UB6t7hKC5ZK-2BORBaD0mikwl6IqSVHXcaM36vBk-2BYbuxOEhzNgMIprs-2FYqLw3sbS-2BJ1WTxvlM1Yxm5b7HnxTklOFoVYmhgDb4-2BGb6dYrEhxzxIbqMOeE4zmJN8-2BFr-2FeTgaMFXTHl4Hs7374yE3Vr8qyJ-2BpVxd_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpo2upFqRLvlF9B0GamwMy4mtqs3HNDICvUrP-2FPLLbiqSVEyhURr4A-2ByT-2FQMfFdsaLNEPNRA2Br4fzhEOGVuUhDnd953b6RizEnAs8MNJc1UYKP90T3Xp7HgAHWqoVAGqxys6PNhhcxFiiQUfYo-2BKGgyy3o1PtpLmQogJJTlW6cGNEOxmfTMte32y1oi7YvRQRlgTzLkU8KoEU2Kuuq3yZYx\"><span style=\"font-size: 24px; font-family: arial, helvetica, sans-serif; color: #0d66bb\"><strong>D</strong></span></a><span style=\"font-size: 24px; font-family: arial, helvetica, sans-serif; color: #0d66bb\"><strong>IU Data Digest</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.2.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; font-size: 12pt; font-family: Lato, sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; font-variant-emoji: normal; text-decoration-line: none; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; vertical-align: baseline; white-space-collapse: preserve; text-wrap-mode: wrap\">DIU works with companies across the country and around the world to lower barriers to entry to the DoD and broader defense marketplace. In FY 2024, 68% of contract awards went to small businesses.</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"9200222e-4167-47db-ae94-88f47ef8d50b\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-family: arial, helvetica, sans-serif\">If you were not the original recipient of this email and would like to sign up for the DIU Newsletter, please register </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkRcYMiV4RQSYNbz4WjG1zsrVoDrJTcK9AlMfUqQSru5OZJPjwZluHDFvUZw0wQ7Vu6M8-2FmKWpebp4Tkj4KGMvR6Xvdv1bfHdGF3ROb2ml3EFnqIS68d1Ds387XBuD6Jbg-3D-3DPZew_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCppxbpsFJoKXMgZCx0UOeiOzNQ6x3PS8nlbF-2FWHAro-2F6RnBIBE1NnZGhb8DrXMeEcs9nuNTJEYmt2rn0TUUGqyBYNWr8SyjNnoQOs6dj2aWOIOeK65RRuX6zKYm2C0YKZSx1135dVrrPZYg3B5qBIPFcS25JPtJuKH8jVneA3vVrN8DNMyafQXSiyE51FF1JxrjSAhX5NXWvpsNhWK6DPDm2\"><span style=\"font-family: arial, helvetica, sans-serif\"><u>here</u></span></a><span style=\"font-family: arial, helvetica, sans-serif\">.</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"divider\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"52646515-03f4-4e8c-9b72-4fc547d4e522.2\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 0px 0px;\" role=\"module-content\" height=\"100%\" valign=\"top\" bgcolor=\"\">\r\n          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" height=\"5px\" style=\"line-height:5px; font-size:5px;\">\r\n            <tbody>\r\n              <tr>\r\n                <td style=\"padding:0px 0px 5px 0px;\" bgcolor=\"#FFFFFF\"></td>\r\n              </tr>\r\n            </tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"112c8b7c-f2db-4e56-a488-a954a02f2d55\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.CzY0f5tAFeDq1sMG7ZgpjdgsKlVwIPTNpzdKOiUDPD7AMjR-2B-2BITtcDo2VB5cKOgB7tsD-2F-2BeB11DytdpaLmbU-2BV1AGqioxMI2oTm1SpzmKlZcp7QVQeuc6HlOF6Vdg4gyfQ33_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpr1TKtehaxDhbFoVMe4YTtnb1B79P34XIhUNH7baGkxzSwRcwFDuJAepCEZklqwdTiqBHRBsaqHl-2FCEa58rp7eyvEe2dNKCPs4ZbpV-2Bh0EbyNsvOAjnpqqbuXdRbSkLKiLZWnUa-2FuEzVwgSOUK59Ab07FbBSVjxGTg2NzJvXcpXk-2B5KrhCiL0T87P3ZwwJl61HZr3anlnrYroz7cHPNTHJc\"><u><strong>About the Defense Innovation Unit</strong></u></a></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><br>\r\n<span style=\"font-family: arial, helvetica, sans-serif\">The Defense Innovation Unit (DIU) strengthens national security by accelerating the adoption of commercial technology in the Department of Defense and bolstering our allied and national security innovation bases. DIU partners with organizations across the DoD to rapidly prototype and field dual-use capabilities that solve operational challenges at speed and scale. With offices in Silicon Valley, Boston, Austin, Chicago and Washington, D.C., DIU is the Department’s gateway to leading technology companies across the country.</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"divider\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"52646515-03f4-4e8c-9b72-4fc547d4e522.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 0px 0px;\" role=\"module-content\" height=\"100%\" valign=\"top\" bgcolor=\"\">\r\n          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" height=\"5px\" style=\"line-height:5px; font-size:5px;\">\r\n            <tbody>\r\n              <tr>\r\n                <td style=\"padding:0px 0px 5px 0px;\" bgcolor=\"#FFFFFF\"></td>\r\n              </tr>\r\n            </tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"193\" style=\"width:193px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"63b68e10-68b8-4c48-9974-bf287cfe098d\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:0px 0px 0px 0px;\" valign=\"top\" align=\"right\">\r\n          <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"193\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/3c3e14b4-863b-44ea-a235-44a86550fd55/1920x553.png\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"386\" style=\"width:386px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"social\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"0a01c058-b46f-483b-b78c-66b27b087fdb\">\r\n    <tbody>\r\n      <tr>\r\n        <td valign=\"top\" style=\"padding:20px 0px 20px 20px; font-size:6px; line-height:10px;\" align=\"left\">\r\n          <table align=\"left\" style=\"-webkit-margin-start:auto;-webkit-margin-end:auto;\">\r\n            <tbody><tr align=\"left\"><td style=\"padding: 0px 5px;\" class=\"social-icon-column\">\r\n      <a role=\"social-icon-link\" href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILruprgLTFax-2FwdCEoDuowPk6lC7UUuoxLkqryl-2BFeCqC-2Fuuup74SDcFdJIT2Wm0IfAmqo7rZb72PCnLcp4IdbNmccKXqxXWg6lmbf7ew5wTx9me94BdR-2Fom4u79s3MIz1i7C5Lj7aIahKoybW7Na0OQ-3DFbwk_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCprIaGzfIQGE0peqO59r-2FfNjPZxc-2FOm95r5u7pip5nX-2BGkg-2BzfTnmgQMelUqdHd1o6hMwP8v-2FO-2B9nGnrNI-2FskD9JYYpmr2U5Oqnfa1vXQqCxTSOeCslur0QmcrCOmEwKEzDBUkxGy8e4mIT55r-2BjPbJHarsjAvNk7FMc-2BjjZ-2B3iuVSPsxXPMrpMiiXFQ376gn2F8TfYWWcOQhda7OVf3gJ8a\" target=\"_blank\" alt=\"Facebook\" title=\"Facebook\" style=\"display:inline-block; background-color:#0059DD; height:20px; width:20px;\">\r\n        <img role=\"social-icon\" alt=\"Facebook\" title=\"Facebook\" src=\"https://mc.sendgrid.com/assets/social/white/facebook.png\" style=\"height:20px; width:20px;\" height=\"20\" width=\"20\">\r\n      </a>\r\n    </td><td style=\"padding: 0px 5px;\" class=\"social-icon-column\">\r\n      <a role=\"social-icon-link\" href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILl3jEI7VQOngoB3sTi1sr0s6s6sidlqsKRgMcMtXT58oriF8r16RvZ3Lu32AlHfiRN0AVnM0wls9ICuqiTYgXdYFJYYrWuI4drLYbtBHNfG6jlTojqNjDmgpaa79IUj3GQ-3D-3DPCHN_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCpp0Xg8kENH4YbQ-2BBsoywgGoTv3wS-2F6acZ-2BFkNS0QKYOgDQwvoo3GDfxHzUEYI5XC1fOab4O1SXrK9N10XM5h8dggJJnhydLEgZGvlw5r9oC7rqTMlMc8doSH9271g9KigBifd-2BKwwRdPFULGF4Fwg5GjF00tbecGTIwUVDZgeic4EgOW-2BT6zXS6m6i9gkNP0-2BjDl24n-2BqdNQhOrnCxfGdju\" target=\"_blank\" alt=\"X\" title=\"X\" style=\"display:inline-block; background-color:#0059DD; height:20px; width:20px;\">\r\n        <img role=\"social-icon\" alt=\"X\" title=\"X\" src=\"https://mc.sendgrid.com/assets/social/white/x.png\" style=\"height:20px; width:20px;\" height=\"20\" width=\"20\">\r\n      </a>\r\n    </td><td style=\"padding: 0px 5px;\" class=\"social-icon-column\">\r\n      <a role=\"social-icon-link\" href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILigSPgoyRWe1jvwzlC4TXPcgTZYPtfIjDa-2BOoPwkKp3eVLkplbFWVOchz-2B37AepGp3rqzDpRumX-2BwFxTVU8Ul3zBPB9ciOg2s1a93u-2FYzFlbtL-2F5cWLWJQtgDp5FtLK4SisK3DLek80T1U9DBvj-2FgmiKHB9L1RiayX4SfEyUzzlYBHpp_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSZE42BESa9yJPthvvN4Vh-2FH-2FWcTXIVPB3PxWxS3iYqJWGPhtbhWoQZUdFSa7KNerC5PidGuJ35PVOwxEnZIlpUuXnRAr5dGYc-2Bc3iG7mFojB3pWymOtoWr7h6DcZXaSJSUfDGQd4ixn3Vn2T3nhR7-2F9QrxX8vCkjfQUVXb1f1DgyDeEO99fiVnQ7HxilNrJ030W73MZxcVR8RnxYtI9U7wW6b0vdM7bk9HBqVxORL1uJZ-2FXPWHBIaeDXtvbO6Q6WEnazRIYvIDLlb0XO4rqCybVcoquf-2FgI28c98xsR2M4GkbNWQ3TPJf5Lzuj8R1xnLbm-2FYnrjMfsg0M9Keci2guz4x6EDzDL8f93ioT4hfK3jANju-2BNVaWAmUewQsgFV-2FBioUwT5YG4RpdKYCVteFE3r4HGTwjDQJJ07TrImY8SUDMMOazkjvhD-2F0qiwkwQn1gntZickfMJHwF2s9JrVFG-2FUx5E28njjo36of1I7sLCscUmOjytX0cO723PisAe5nPeSFIHo-2BGJzn2wkI7Mz-2FuRlkzjJHbzpp6J234r0YpmX9t42-2BUxawAA24xCTdTOp4uQxZ3qzDabtWdlJcQH0dKCppXBo-2FW51FsD1p1Ck-2BW6udAeECWuYo-2FLv9xz8cbAoQJ6lCTnLN0P-2BlYYVDXDRXuVhGR9RCtGUN5JpRllynpE-2BeJIpeLP1q-2BoI8KeJ6OXXj-2B4VL-2FHv64SEuLbXw4DsDD-2Fq2kGnFJuyNNZfCJ-2FcpBSTwfqBSesuMM9u4Q0DphcbWYcGT-2Bp-2FoJ2KMvHqS4YedN2UIGkQ6bjQRoq00ijd5NRhe4\" target=\"_blank\" alt=\"LinkedIn\" title=\"LinkedIn\" style=\"display:inline-block; background-color:#0059DD; height:20px; width:20px;\">\r\n        <img role=\"social-icon\" alt=\"LinkedIn\" title=\"LinkedIn\" src=\"https://mc.sendgrid.com/assets/social/white/linkedin.png\" style=\"height:20px; width:20px;\" height=\"20\" width=\"20\">\r\n      </a>\r\n    </td></tr></tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><div data-role=\"module-unsubscribe\" class=\"module\" role=\"module\" data-type=\"unsubscribe\" style=\"color:#454545; font-size:12px; line-height:20px; padding:0px 16px 16px 25px; text-align:left;\" data-muid=\"4e838cf3-9892-4a6d-94d6-170e474d21e5.1\"><div class=\"Unsubscribe--addressLine\"><p class=\"Unsubscribe--senderName\" style=\"font-family:helvetica,sans-serif; font-size:12px; line-height:20px;\">Defense Innovation Unit</p><p style=\"font-family:helvetica,sans-serif; font-size:12px; line-height:20px;\"><span class=\"Unsubscribe--senderAddress\">230 RT Jones Rd</span>, <span class=\"Unsubscribe--senderCity\">Mountain View</span>, <span class=\"Unsubscribe--senderState\"></span> <span class=\"Unsubscribe--senderZip\"></span></p></div><p style=\"font-family:helvetica,sans-serif; font-size:12px; line-height:20px;\"><a class=\"Unsubscribe--unsubscribeLink\" href=\"https://u18220755.ct.sendgrid.net/asm/unsubscribe/?user_id=18220755&amp;data=Xc1ibOOHcWYQ9OKRl9eag0W0eO3eZ23GRcOml6IjMxpoMDAwdTAwMDNtxvuFLL1Og8116rKCyj6baPKgX90tBZFQhf79nADFHeXydSIZlCQsCBja741aVkHBEhKad6NdSHzIHaS8rAWTUnuh3V-GmF5g294OyDAwhFDr_LXPAtADtPGzYWRKjRebtZFLE-Yx-g2pw_HIdOGCnKtVeuS8czSGJmd7ww3lHNif0w5FiXx-ODgxS2mqQdA6y4fsmkvSdPcmres2XdO0mktXWMOFpnL5jBGu56Lv7k6yGzXNyBR9GmUCYktlfkaOMP_dYEuqSZZ0AtBdML6e16r3JK8EvGTRvZldkv8Yz1b9Es5-Hw6jqWUNxueMD6s94AIOTCnL9Z3aEdHT9elLkZ6BOXK3X5YwplwispZbNKIM2vpuR1I4aEVPB9FcmyDyPMTcjIxugQdiLwtEGzUCeQlfWUo6nPTO6NNqYa3mECHOrn6mJqUTOu0VIj7gfgdEgLRBzTp0kZs4-CQqe8BF7lb7RupmHDYIUJ9Ygxu2ehppkiKwjzTglv_qH9WzSeLlXMTlX2fxVpVPsA8-imzOJX_u-ex5RrnErEyHO3wddQP4ogOkNqlI-EZhoLtn6bpgddyrMbApYRQ1widoLMPJnMuarGm2bSz4s9hAy6jo1cUqMxtaXroRxD5IxaBOPAz3Wg2qF_7O1TlMmWQgVxyi2FKG0rSA-VLbWs8v4utrBAzYPWHYMH8zs6IlE5mmdOaRaPsaF7ffEkkm4ltVouINC2CBLc2Hiix_ew15PuEBJZZV5X92QSDQxYZOhXUDLJnvAvH7ljOoVve8dAdnbCntkGoCOgBzl1Yzu8z2bw0TQGdtfCJJKT3maAgSxqs40CKlPpNOM46cM8aMZtSVAEo_L13JzdgLI-4GbknJB6aXVumZFFVxLzH53wmednfr1MQvWyueLzGEoQvqU6MF-6oEWiMvOFW9aVZsQqvingIDp7CvqEPAHFtQN9SU2GAC7CPVpbTUQcc2zgqmig261B3LUk2T8hxC6jRXwIUmegwVQAV8gFM-XzWDKFJDrjAmI_SjuKzsybRfatK64gYqfuSJZMTEwgGoYaVmY-rwiY17n8wD_HdCWvU98dOAwz3jpnXPLlWQFQ0NcPZtu4kOMI8=\" target=\"_blank\" style=\"\">Unsubscribe</a> - <a href=\"https://u18220755.ct.sendgrid.net/asm/?user_id=18220755&amp;data=X1UtKuW6fY0PIx5V7liO_YwzadMsw5zxMaakDfi_a-toMDAwdTAwMHtrmO2YJc6yEk6DPevnw0V1uE8M7qCnE6RXV1rcs906Hkc2YXfGmXgsHHGVIgClsh8PQFvb7Ok9wjyVmu0I2V4IvdactdpyYjp1H2lns13rlQKzNVn0IMSNLUw4WHE3Pb35xiwAS6R3UgxxdZZY0fxZVCxjixhExwx9bKZg-K7qKsYSQUCjLbqQLvQFHzFGFinfYKHwZuyyKo9Im7luNqLJzTB396aZM6--FqcGXQyTvCgDd5A0iyE_dtE7RdWgOrCgd3hPV0vXellC-UNa6MNSRhm1CUQbbi7Vti7YzZwn5OsYv89MGV7pbvEC9XnbmT-QhoXYB8PiiS3SuitNXFJTKsoGB_IMlfCr1m2Qi5YTWh38Bd_r0s2rFuVUWbOfqP_0cCBvbyFS9jlBnViGB0LnSQuOeEaEAobxQy5TEhftz_eBpDNDvXfYtgCH6DVk48wbCkIrMoWfPlXgItASB7gNYGANS8WQZLUpNshMiyiqCRuwXqh6Ru98Ep_8eXVWtYokBD-a0YrQQfjIf_5bXCkQrq8fcVVXptLCJ11UB6xYIEmyDdpGkmwbR0KIZiVsrvD6C9nWZq-duJzslvLaslOAIPedqwf7qIbuc6-egT6ywO9SSjtzEYtQMLHvf33QpaRSGxf45orQrwl9FD43OOlcSnQw2h0oMpVQo1Pngq3YuSet53n0u9qSPQ7ynxUkLTLy0e0JxmwxeDOVonuwyykH5NG0MsPaN0XaJFwIeXefniqTBSF2quDAQ9LNku_T-Ax98x-cLHaNunVks7xtGNWbXjWZKhtzX2Fvb-x1V25j5FTHC8zppIk7NPwKV0NiFLM6rqJUGihHeg9O8Lt4phaYByFWovNt_1Zw8Iqu1nPZnfjWzWIk1qoo2d3Mzo1D9GyzRLZ6odBYWGUc6XH8pxJYEuvQjuD-bImNsArJSzwUgMnFmWazlxSnkOspdPvc5ICMkovMM4UgOnB-dblAzIsA3l1ERqtgkuMcg_cBiZ3VsdHLjw963pTPPTBBW1GZElRkV1S8zQ5Fh7cNB5U_bWUWMFupyT-1s2mB3W7ukmbceYDVhdqvoEbKGeyTBqvfUg==\" target=\"_blank\" class=\"Unsubscribe--unsubscribePreferences\" style=\"\">Unsubscribe Preferences</a></p></div></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n                                      </tr>\r\n                                    </table>\r\n                                    <!--[if mso]>\r\n                                  </td>\r\n                                </tr>\r\n                              </table>\r\n                            </center>\r\n                            <![endif]-->\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </div>\r\n      </center>\r\n    <img src=\"https://u18220755.ct.sendgrid.net/wf/open?upn=u001.D6mC8SG6iITw2GIzPjAtw7SLAuEgZhcE7OQx5Ie2paKW9TCJvoy3Eh7ani-2FmDfzWZ4Aty9oKYAg8U-2BpXv81mmaeCBsQtTAdxlXqbnsXBCjn-2FAW10qJfypmIUPoD1-2B38y4LSjEaiwyNZHtEyZD-2BNUDSBEvP-2B0fTS3Qv3mmuFwyJMSalihQMrNgbzGZMQ9akM5IUpyXJqxXTtI4-2FkcfCsYB-2BpPpaBmVINop-2FLbKsI72xVSJJ5NzQ3LMXzVMjpmfyeGZFJ1MmpBf-2F4Krhdep3UouGq5diT2oDgXWniYfQKTwIczXR-2F-2BTzIyanLTf1A-2BZO-2FI-2FELIZ8FOVN26ByjQ8b182b8SjQR1-2BOt5ugQpvv66dO6wWQByCEG8PvrkJklI-2B51qW3Ox8B6LzCZ-2FJB-2BIPKIN5QvcgypXO-2FchpJ0TUsD-2BpCxXx9PcGCBQ5sxFJ3eEYnkkt1xL1fqO-2Bw-2BD0H8uf-2FovAbfFAnB4th1cQ2y44vO8VAHZfd-2BHC24aTuORLvx-2F2bg-2BcK2jfne8DC5C5JbLEjVW-2BxJYLsIOEhZPNsyjxfRVCeXV-2FgMjhv8a3RYm67J-2FYyj4t8zQxphTLfst0DUPd3krJR8D-2FkGD1TzxKFgAqkl2d0ciDOCMHiP76N0gvBGZvpzfbfo-2FAexDz8sQDHT1gt1DovDgU0WUZDVSL-2BNn3vJ2H7Heu-2BnWOq-2FwUwRL8qjqAcwrbYSVvKqx23PpiUFkBNZ3krmHxKeYhPbcuH5Bffy3WB005U0ahhTmm5W5p9zbGCInMNr-2FBvdiFKlYU-2FMx6pYh1CmXeiOBpBfh3uGsc5xfaKU9fzF6sAAamG8-2FHUUfRr94mKaA8QFcdim-2BGpm1XbMD3ldcjPwGZyY6ct25lEF7xqnRQGwdVWPJbC1z5HLWxQVn5joeJqtPJ-2FR11XynBHQRmrvjCM2HlaOQvz4QzrqEV3w6qR5QmQGJQI5dIB-2BgtYkF\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/></body>\r\n  </html>','Read more about upcoming DIU events and opportunities\r\n\r\nEmail not displaying correctly? View it in your browser.\r\n\r\nJune 2025 - Reading time: 2.5 minutes\r\n\r\n*Upcoming Events*\r\n\r\n*OTA Workshop: Rapid Technology Transition* ( https://www.eventbrite.com/e/other-transaction-authority-ota-workshop-tickets-1343908589769?aff=oddtdtcreator&utm_campaign=Tech%20Bridge&utm_content=333191427&utm_medium=social&utm_source=linkedin&hss_channel=lcp-35666959&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nJUNE 18, 2025\r\nEager to learn how Other Transaction Authority (OTA) can offer a fast, flexible contracting mechanism to do business with the DoD? Hosted by NAVSEA at the Washington Navy Yard, join our Chief of Staff Capt. Alex Campbell and our Director of Acquisitions, Cherissa Tamayori to learn what OTAs can do for your organization.\r\n\r\nLearn more ( https://www.eventbrite.com/e/other-transaction-authority-ota-workshop-tickets-1343908589769?aff=oddtdtcreator&utm_campaign=Tech%20Bridge&utm_content=333191427&utm_medium=social&utm_source=linkedin&hss_channel=lcp-35666959&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*DefenseOne Tech Summit* ( https://events.defenseone.com/tech-summit-2025/agenda/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nJUNE 26, 2025\r\nTalk changing tides of defense tech investing and the future of the sector with our Director of Commercial Engagement, Sarah Pearson during the Venture Capitalists\' View on Defense panel at this year’s DefenseOne Tech Summit.\r\n\r\nLearn more ( https://events.defenseone.com/tech-summit-2025/agenda/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*ICAP Information Session* ( https://www.zoomgov.com/webinar/register/WN_P9i6pJsjRIGaIcl4WAb8hA?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nJULY 8, 2025\r\nApplications are now open for the FY26 edition of the Immersive Commercial Acquisition Program (ICAP) ( https://www.diu.mil/work-with-us/immersive-commercial-acquisition-program-icap?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ). This highly competitive 12-month program designed to deliver a group of contracting professionals proficient in commercial acquisition. Interested in learning more? Join our live AMA-style webinar, scheduled for July 8 at 3 p.m. ET.\r\n\r\nLearn more ( https://www.zoomgov.com/webinar/register/WN_P9i6pJsjRIGaIcl4WAb8hA?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*Open Opportunities*\r\n\r\n( https://www.diu.mil/work-with-us/submit-solution/PROJ00598?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*$2M Available For ‘Ready Now’ UxS Solutions* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00598?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nWe recently launched the Project G.I. Prize Challenge, built for DIU and DoD partners seeking “mission-ready” uncrewed systems (UxS) solutions to enhance the speed and lethality for small, dispersed targeting-strike cells operating under denied, disrupted, intermittent, and low-bandwidth conditions. Proposed challenge solutions must enhance tactical formation’s lethality, survivability, or overall mission effectiveness within the specified and serve the needs of a DOD customer.\r\n\r\nLearn more ( https://www.diu.mil/work-with-us/submit-solution/PROJ00598?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*Open Programs*\r\n\r\n( https://www.diu.mil/latest/diu-presents-dual-use-university-accelerator-challenge?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*DIU Launches Dual-Use Academic Accelerator Challenge, 15 Openings for 12-Week Accelerator* ( https://www.diu.mil/latest/diu-presents-dual-use-university-accelerator-challenge?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nJUNE 25, 2025\r\nAre you a technologist looking to gain knowledge into the defense market, receive tailored mentorship, and funding support to scale your tech? Apply to be one of 15 individuals selected for a 12-week accelerator program and your chance to receive a share of $500,000 in prize awards as part of our Dual-Use Academic Accelerator Challenge. Applications are due June 25.\r\n\r\nLearn more ( https://www.diu.mil/latest/diu-presents-dual-use-university-accelerator-challenge?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n( https://www.diu.mil/latest/applications-for-immersive-commercial-acquisition-program-icap-fellowship?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*Opportunity for Contracting Officers: Immersive Commercial Acquisition Program Fellowship* ( https://www.diu.mil/latest/applications-for-immersive-commercial-acquisition-program-icap-fellowship?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nJULY 31, 2025\r\nHighly-qualified and motivated mid-to senior-level contracting officers are encouraged to apply to the Immersive Commercial Acquisition Program (ICAP) ( https://www.defense.gov/News/News-Stories/Article/Article/4204493/dod-announces-fy26-acquisition-program-fellowship-application-window/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) Fellowship a 12-month program offers hands-on experience with our commercial solutions opening process, OTAs, and provides valuable insight into the commercial market and the dynamics driving commercial organizations to engage with the government and DoD. Learn more about the ICAP program at the AMA session set for July 8 from 3-4:00 p.m. ET.\r\n\r\nLearn more ( https://www.diu.mil/latest/applications-for-immersive-commercial-acquisition-program-icap-fellowship?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*News*\r\n\r\n( https://www.diu.mil/latest/blue-uas-to-evolve-to-meet-broader-department-of-defense-needs?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*New Two-Tiered Blue UAS Model Launches, Identifying ‘Best in Breed’ Drone Capabilities for the Warfighter* ( https://www.diu.mil/latest/blue-uas-to-evolve-to-meet-broader-department-of-defense-needs?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nWe have announced changes to Blue UAS ( https://www.diu.mil/blue-uas?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) - providing a way for companies to verify their NDAA compliance as part of a two-tiered system and evolving Blue UAS to provide better support for solutions to DoD problem sets. The first change will allow us to leverage our multi-stakeholder partnership ( https://uscode.house.gov/view.xhtml?req=granuleid:USC-prelim-title10-section4127&num=0&edition=prelim&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) authority by selecting a number of capable entities to assess UAS platforms and produce reports as Recognized Assessors ( https://www.diu.mil/latest/diu-seeking-recognized-assessors-to-support-blue-uas-ndaa-compliance?utm_source=LinkedIn&utm_medium=Social&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ). Companies will also have the chance to be referred to as Blue UAS Select, when they have met both cybersecurity and NDAA requirements, through either DoD sponsorship or competitive selection, and that have received a DIU-generated or DIU-approved ATO.\r\n\r\nLearn more about becoming a Recognized Assessor here ( https://www.diu.mil/latest/diu-seeking-recognized-assessors-to-support-blue-uas-ndaa-compliance?utm_source=LinkedIn&utm_medium=Social&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ). Submissions close on Monday, June 16, 2025 at 11:59 p.m.\r\n\r\nLearn more about the changes coming to Blue UAS here ( https://www.diu.mil/latest/blue-uas-to-evolve-to-meet-broader-department-of-defense-needs?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ).\r\n\r\n( https://www.diu.mil/latest/diu-at-the-2025-scsp-ai-expo?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*DIU at the SCSP AI+ Expo* ( https://www.diu.mil/latest/diu-at-the-2025-scsp-ai-expo?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nMembers of our AI portfolio attended the annual SCSP AI+ Expo in Washington, D.C. The event served as a showcase for our new and ongoing projects, including Project G.I. ( https://www.diu.mil/work-with-us/submit-solution/PROJ00598?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) , our call for Recognized Assessors ( https://www.diu.mil/latest/diu-seeking-recognized-assessors-to-support-blue-uas-ndaa-compliance?utm_source=LinkedIn&utm_medium=Social&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) in support of Blue UAS ( https://www.diu.mil/blue-uas?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) , and our Digital OnRamp ( https://www.diu.mil/digitalonramp?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ).\r\n\r\nLearn more ( https://www.diu.mil/latest/diu-at-the-2025-scsp-ai-expo?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n( https://www.defense.gov/News/Releases/Release/Article/4192007/us-defense-innovation-unit-and-united-arab-emirates-partnering-to-enhance-defen/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*DIU, UAE Partnering to Enhance Defense-Tech Ecosystems* ( https://www.defense.gov/News/Releases/Release/Article/4192007/us-defense-innovation-unit-and-united-arab-emirates-partnering-to-enhance-defen/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nFollowing the Department\'s announcement to establish a comprehensive U.S.-UAE Major Defense Partnership, we signed a Memorandum of Understanding with the Tawazun Council of the UAE to strengthen defense cooperation and enhance mutual capacity for finding solutions to military requirements by developing and accessing cutting-edge technologies through non-traditional processes. This collaboration will deepen ties in defense innovation, facilitate joint capability development, and expand industrial and investment partnerships across both defense ecosystems — aligning with strategic efforts and investments outlined during the President\'s recent trip to the region.\r\n\r\nLearn more ( https://www.defense.gov/News/Releases/Release/Article/4192007/us-defense-innovation-unit-and-united-arab-emirates-partnering-to-enhance-defen/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n( https://www.diu.mil/latest/hybrid-space-communications-network-leverages-commercial-technology-enabling?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*Contracts Awarded: Hybrid Space Communications Network Leverages Commercial Technology, Enabling Faster Decision-Making on the Battlefield* ( https://www.diu.mil/latest/hybrid-space-communications-network-leverages-commercial-technology-enabling?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nThe Hybrid Space Architecture aims to integrate commercial, civil, and military space assets and support real-time decision making for the warfighter with selected companies to begin demonstrations with key mission partners in Summer 2025.\r\n\r\nLearn more ( https://www.diu.mil/latest/hybrid-space-communications-network-leverages-commercial-technology-enabling?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*D* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00591?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) *IU Data Digest*\r\n\r\nDIU works with companies across the country and around the world to lower barriers to entry to the DoD and broader defense marketplace. In FY 2024, 68% of contract awards went to small businesses.\r\n\r\nIf you were not the original recipient of this email and would like to sign up for the DIU Newsletter, please register here ( https://www.diu.mil/newsletter-sign-up?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ).\r\n\r\n*About the Defense Innovation Unit* ( http://diu.mil?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\nThe Defense Innovation Unit (DIU) strengthens national security by accelerating the adoption of commercial technology in the Department of Defense and bolstering our allied and national security innovation bases. DIU partners with organizations across the DoD to rapidly prototype and field dual-use capabilities that solve operational challenges at speed and scale. With offices in Silicon Valley, Boston, Austin, Chicago and Washington, D.C., DIU is the Department’s gateway to leading technology companies across the country.\r\n\r\n( https://www.facebook.com/defenseinnovationunitx/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) ( https://x.com/diu_x?lang=en&mx=2&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) ( https://www.linkedin.com/company/diux/posts/?feedview=all&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\nDefense Innovation Unit\r\n\r\n230 RT Jones Rd , Mountain View ,  \r\n\r\nUnsubscribe ( https://u18220755.ct.sendgrid.net/asm/unsubscribe/?user_id=18220755&data=Xc1ibOOHcWYQ9OKRl9eag0W0eO3eZ23GRcOml6IjMxpoMDAwdTAwMDNtxvuFLL1Og8116rKCyj6baPKgX90tBZFQhf79nADFHeXydSIZlCQsCBja741aVkHBEhKad6NdSHzIHaS8rAWTUnuh3V-GmF5g294OyDAwhFDr_LXPAtADtPGzYWRKjRebtZFLE-Yx-g2pw_HIdOGCnKtVeuS8czSGJmd7ww3lHNif0w5FiXx-ODgxS2mqQdA6y4fsmkvSdPcmres2XdO0mktXWMOFpnL5jBGu56Lv7k6yGzXNyBR9GmUCYktlfkaOMP_dYEuqSZZ0AtBdML6e16r3JK8EvGTRvZldkv8Yz1b9Es5-Hw6jqWUNxueMD6s94AIOTCnL9Z3aEdHT9elLkZ6BOXK3X5YwplwispZbNKIM2vpuR1I4aEVPB9FcmyDyPMTcjIxugQdiLwtEGzUCeQlfWUo6nPTO6NNqYa3mECHOrn6mJqUTOu0VIj7gfgdEgLRBzTp0kZs4-CQqe8BF7lb7RupmHDYIUJ9Ygxu2ehppkiKwjzTglv_qH9WzSeLlXMTlX2fxVpVPsA8-imzOJX_u-ex5RrnErEyHO3wddQP4ogOkNqlI-EZhoLtn6bpgddyrMbApYRQ1widoLMPJnMuarGm2bSz4s9hAy6jo1cUqMxtaXroRxD5IxaBOPAz3Wg2qF_7O1TlMmWQgVxyi2FKG0rSA-VLbWs8v4utrBAzYPWHYMH8zs6IlE5mmdOaRaPsaF7ffEkkm4ltVouINC2CBLc2Hiix_ew15PuEBJZZV5X92QSDQxYZOhXUDLJnvAvH7ljOoVve8dAdnbCntkGoCOgBzl1Yzu8z2bw0TQGdtfCJJKT3maAgSxqs40CKlPpNOM46cM8aMZtSVAEo_L13JzdgLI-4GbknJB6aXVumZFFVxLzH53wmednfr1MQvWyueLzGEoQvqU6MF-6oEWiMvOFW9aVZsQqvingIDp7CvqEPAHFtQN9SU2GAC7CPVpbTUQcc2zgqmig261B3LUk2T8hxC6jRXwIUmegwVQAV8gFM-XzWDKFJDrjAmI_SjuKzsybRfatK64gYqfuSJZMTEwgGoYaVmY-rwiY17n8wD_HdCWvU98dOAwz3jpnXPLlWQFQ0NcPZtu4kOMI8= ) - Unsubscribe Preferences ( https://u18220755.ct.sendgrid.net/asm/?user_id=18220755&data=X1UtKuW6fY0PIx5V7liO_YwzadMsw5zxMaakDfi_a-toMDAwdTAwMHtrmO2YJc6yEk6DPevnw0V1uE8M7qCnE6RXV1rcs906Hkc2YXfGmXgsHHGVIgClsh8PQFvb7Ok9wjyVmu0I2V4IvdactdpyYjp1H2lns13rlQKzNVn0IMSNLUw4WHE3Pb35xiwAS6R3UgxxdZZY0fxZVCxjixhExwx9bKZg-K7qKsYSQUCjLbqQLvQFHzFGFinfYKHwZuyyKo9Im7luNqLJzTB396aZM6--FqcGXQyTvCgDd5A0iyE_dtE7RdWgOrCgd3hPV0vXellC-UNa6MNSRhm1CUQbbi7Vti7YzZwn5OsYv89MGV7pbvEC9XnbmT-QhoXYB8PiiS3SuitNXFJTKsoGB_IMlfCr1m2Qi5YTWh38Bd_r0s2rFuVUWbOfqP_0cCBvbyFS9jlBnViGB0LnSQuOeEaEAobxQy5TEhftz_eBpDNDvXfYtgCH6DVk48wbCkIrMoWfPlXgItASB7gNYGANS8WQZLUpNshMiyiqCRuwXqh6Ru98Ep_8eXVWtYokBD-a0YrQQfjIf_5bXCkQrq8fcVVXptLCJ11UB6xYIEmyDdpGkmwbR0KIZiVsrvD6C9nWZq-duJzslvLaslOAIPedqwf7qIbuc6-egT6ywO9SSjtzEYtQMLHvf33QpaRSGxf45orQrwl9FD43OOlcSnQw2h0oMpVQo1Pngq3YuSet53n0u9qSPQ7ynxUkLTLy0e0JxmwxeDOVonuwyykH5NG0MsPaN0XaJFwIeXefniqTBSF2quDAQ9LNku_T-Ax98x-cLHaNunVks7xtGNWbXjWZKhtzX2Fvb-x1V25j5FTHC8zppIk7NPwKV0NiFLM6rqJUGihHeg9O8Lt4phaYByFWovNt_1Zw8Iqu1nPZnfjWzWIk1qoo2d3Mzo1D9GyzRLZ6odBYWGUc6XH8pxJYEuvQjuD-bImNsArJSzwUgMnFmWazlxSnkOspdPvc5ICMkovMM4UgOnB-dblAzIsA3l1ERqtgkuMcg_cBiZ3VsdHLjw963pTPPTBBW1GZElRkV1S8zQ5Fh7cNB5U_bWUWMFupyT-1s2mB3W7ukmbceYDVhdqvoEbKGeyTBqvfUg== )',0,0,0,0,0,0,'2025-06-16 18:15:34','2025-12-09 19:27:03','2025-12-09 19:27:03','2025-12-09 19:27:03',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(566,4,'<7DzlIr4fTVqBQ7NX2aFG1A@geopod-ismtpd-36>',NULL,NULL,'***SPAM***  DIU Newsletter - June 2025','info@diu.mil','Defense Innovation Unit','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html data-editor-version=\"2\" class=\"sg-campaigns\" xmlns=\"http://www.w3.org/1999/xhtml\">\r\n    <head>\r\n      <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n      <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1\">\r\n      <!--[if !mso]><!-->\r\n      <meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge\">\r\n      <!--<![endif]-->\r\n      <!--[if (gte mso 9)|(IE)]>\r\n      <xml>\r\n        <o:OfficeDocumentSettings>\r\n          <o:AllowPNG/>\r\n          <o:PixelsPerInch>96</o:PixelsPerInch>\r\n        </o:OfficeDocumentSettings>\r\n      </xml>\r\n      <![endif]-->\r\n      <!--[if (gte mso 9)|(IE)]>\r\n  <style type=\"text/css\">\r\n    body {width: 620px;margin: 0 auto;}\r\n    table {border-collapse: collapse;}\r\n    table, td {mso-table-lspace: 0pt;mso-table-rspace: 0pt;}\r\n    img {-ms-interpolation-mode: bicubic;}\r\n  </style>\r\n<![endif]-->\r\n      <style type=\"text/css\">\r\n    body, p, div {\r\n      font-family: arial,helvetica,sans-serif;\r\n      font-size: 14px;\r\n    }\r\n    body {\r\n      color: #000000;\r\n    }\r\n    body a {\r\n      color: #0D66BBFF;\r\n      text-decoration: none;\r\n    }\r\n    p { margin: 0; padding: 0; }\r\n    table.wrapper {\r\n      width:100% !important;\r\n      table-layout: fixed;\r\n      -webkit-font-smoothing: antialiased;\r\n      -webkit-text-size-adjust: 100%;\r\n      -moz-text-size-adjust: 100%;\r\n      -ms-text-size-adjust: 100%;\r\n    }\r\n    img.max-width {\r\n      max-width: 100% !important;\r\n    }\r\n    .column.of-2 {\r\n      width: 50%;\r\n    }\r\n    .column.of-3 {\r\n      width: 33.333%;\r\n    }\r\n    .column.of-4 {\r\n      width: 25%;\r\n    }\r\n    ul ul ul ul  {\r\n      list-style-type: disc !important;\r\n    }\r\n    ol ol {\r\n      list-style-type: lower-roman !important;\r\n    }\r\n    ol ol ol {\r\n      list-style-type: lower-latin !important;\r\n    }\r\n    ol ol ol ol {\r\n      list-style-type: decimal !important;\r\n    }\r\n    @media screen and (max-width:480px) {\r\n      .preheader .rightColumnContent,\r\n      .footer .rightColumnContent {\r\n        text-align: left !important;\r\n      }\r\n      .preheader .rightColumnContent div,\r\n      .preheader .rightColumnContent span,\r\n      .footer .rightColumnContent div,\r\n      .footer .rightColumnContent span {\r\n        text-align: left !important;\r\n      }\r\n      .preheader .rightColumnContent,\r\n      .preheader .leftColumnContent {\r\n        font-size: 80% !important;\r\n        padding: 5px 0;\r\n      }\r\n      table.wrapper-mobile {\r\n        width: 100% !important;\r\n        table-layout: fixed;\r\n      }\r\n      img.max-width {\r\n        height: auto !important;\r\n        max-width: 100% !important;\r\n      }\r\n      a.bulletproof-button {\r\n        display: block !important;\r\n        width: auto !important;\r\n        font-size: 80%;\r\n        padding-left: 0 !important;\r\n        padding-right: 0 !important;\r\n      }\r\n      .columns {\r\n        width: 100% !important;\r\n      }\r\n      .column {\r\n        display: block !important;\r\n        width: 100% !important;\r\n        padding-left: 0 !important;\r\n        padding-right: 0 !important;\r\n        margin-left: 0 !important;\r\n        margin-right: 0 !important;\r\n      }\r\n      .social-icon-column {\r\n        display: inline-block !important;\r\n      }\r\n    }\r\n  </style>\r\n      <!--user entered Head Start--><!--End Head user entered-->\r\n    </head>\r\n    <body>\r\n      <center class=\"wrapper\" data-link-color=\"#0D66BBFF\" data-body-style=\"font-size:14px; font-family:arial,helvetica,sans-serif; color:#000000; background-color:#e6e6e6;\">\r\n        <div class=\"webkit\">\r\n          <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"wrapper\" bgcolor=\"#e6e6e6\">\r\n            <tr>\r\n              <td valign=\"top\" bgcolor=\"#e6e6e6\" width=\"100%\">\r\n                <table width=\"100%\" role=\"content-container\" class=\"outer\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                  <tr>\r\n                    <td width=\"100%\">\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                        <tr>\r\n                          <td>\r\n                            <!--[if mso]>\r\n    <center>\r\n    <table><tr><td width=\"620\">\r\n  <![endif]-->\r\n                                    <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:100%; max-width:620px;\" align=\"center\">\r\n                                      <tr>\r\n                                        <td role=\"modules-container\" style=\"padding:0px 10px 0px 10px; color:#000000; text-align:left;\" bgcolor=\"#E6E6E6\" width=\"100%\" align=\"left\"><table class=\"module preheader preheader-hide\" role=\"module\" data-type=\"preheader\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"display: none !important; mso-hide: all; visibility: hidden; opacity: 0; color: transparent; height: 0; width: 0;\">\r\n    <tr>\r\n      <td role=\"module-content\">\r\n        <p>Read more about upcoming DIU events and opportunities</p>\r\n      </td>\r\n    </tr>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"1104c33b-738b-4f49-a025-f96d421a4309\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:5px 0px 15px 0px; line-height:14px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: right\"><span style=\"color: #454545; font-family: helvetica, sans-serif; font-size: 12px\">Email not displaying correctly? </span><span style=\"color: #0059dd; font-family: helvetica, sans-serif; font-size: 12px\">View it</span><span style=\"color: #454545; font-family: helvetica, sans-serif; font-size: 12px\"> in your browser.</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:30px 0px 10px 0px;\" bgcolor=\"#E6E6E6\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"600\" style=\"width:600px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"9fc032df-f2d9-4c0d-ba50-8b72bae5eecc\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:0px 0px 0px 0px;\" valign=\"top\" align=\"center\">\r\n          <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:70% !important; width:70%; height:auto !important;\" width=\"420\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/3c3e14b4-863b-44ea-a235-44a86550fd55/1920x553.png\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"divider\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"93bd745a-3983-4ff8-9fbb-874f3c29dd2f\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 0px 0px;\" role=\"module-content\" height=\"100%\" valign=\"top\" bgcolor=\"\">\r\n          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" height=\"5px\" style=\"line-height:5px; font-size:5px;\">\r\n            <tbody>\r\n              <tr>\r\n                <td style=\"padding:0px 0px 5px 0px;\" bgcolor=\"#FFFFFF\"></td>\r\n              </tr>\r\n            </tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"622c7d5b-4ec9-436d-b26e-4a4e2807ad72\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:27px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-size: 16px\">June 2025 - Reading time: 2.5 minutes</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2e35c854-f82d-44a2-a0f5-30013d25e3d3.2.1.1.2\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px; line-height:30px; text-align:inherit; background-color:#e6e6e6;\" height=\"100%\" valign=\"top\" bgcolor=\"#e6e6e6\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-family: helvetica, sans-serif; color: #0d66bb; font-size: 30px\"><strong>Upcoming Events</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"600\" style=\"width:600px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILjYlREuGUy7GbgNlCoAOjZrX2sNbKlF3Z5eNSq3OduaMD-2FgAVRybaCtgsf27U3F9zEuWGVGl-2BqfzPqFRrVM5xnUEKKRouGTOrhZW8355erQJtVgn8anYh3LqsppX9Ysf1-2BFb07H2P-2F1GmYUzDjWZAxq-2B69YErmnRScn09Oo1gc3oZmiQI9vf49Iv1CHKURnhhLcCxv4AcRw8IR2HtO8YnHkIdw1mv14YSKmnN3b5-2B6-2Fdgdmflyp-2Bzp57wntD05-2FNAi82ECmhTPn7lcjR52Tkx6-2B-2FK-2BrxiF-2BgAX9Z90-2BbXKlkPzsggnyGtIJz-2F6UfscUAzAkkkzfk3BjyUhzE0F2Kb5NkefLW-2FJQyyAC37hpdQbAXgAeVdLTpO8G0v8TGjEh4fA-3D-3D2NYG_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWELCxc3m-2FmHgFPG7Ul-2Fr7rV4tGyBQGthpGTgKgI7DPAw7NoGslLp2yIgyHIT76SyjZT64pwp-2FJSdIKetUEQMvFWpRm8aHmq3k43Q9a4GuQSJvSsp2-2F2RUBRg3XWdgpBkwZ3usFqec1B3hjk4DM3fhQfuMCoVuEXkfgBQip-2FzlcD8pvi1OCwO3wTf4qs-2BtxDupaU5HMHy8sPOdPu1OhunxaL\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>OTA Workshop: Rapid Technology Transition</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">JUNE 18, 2025</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">Eager to learn how Other Transaction Authority (OTA) can offer a fast, flexible contracting mechanism to do business with the DoD? Hosted by NAVSEA at the Washington Navy Yard, join our Chief of Staff Capt. Alex Campbell and our Director of Acquisitions, Cherissa Tamayori to learn what OTAs can do for your organization.<br>\r\n</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILjYlREuGUy7GbgNlCoAOjZrX2sNbKlF3Z5eNSq3OduaMD-2FgAVRybaCtgsf27U3F9zEuWGVGl-2BqfzPqFRrVM5xnUEKKRouGTOrhZW8355erQJtVgn8anYh3LqsppX9Ysf1-2BFb07H2P-2F1GmYUzDjWZAxq-2B69YErmnRScn09Oo1gc3oZmiQI9vf49Iv1CHKURnhhLcCxv4AcRw8IR2HtO8YnHkIdw1mv14YSKmnN3b5-2B6-2Fdgdmflyp-2Bzp57wntD05-2FNAi82ECmhTPn7lcjR52Tkx6-2B-2FK-2BrxiF-2BgAX9Z90-2BbXKlkPzsggnyGtIJz-2F6UfscUAzAkkkzfk3BjyUhzE0F2Kb5NkefLW-2FJQyyAC37hpdQbAXgAeVdLTpO8G0v8TGjEh4fA-3D-3D_P7M_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWGTCpqnfmNwk9ib4iYwFEyIIC-2B4gTAZkLK-2FP0DNFYVnRaKmtnK0pEpvhYYrN9JrSV-2FZVho493Q-2FcZOKdUFbSW5lHikHhV1KIORPqZHmK5-2FXz-2FhdJDKJBLzrbE4Vs97XyXo5BpXV6mMcRD9r0Sl24sbqv8Y2PkYpMrFJ-2BRPtLikChAVXTKYnIYl-2BOxMf-2ByUynCbRsnnviTqURCCGHB8ix80m\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-size: 14px; font-family: arial, helvetica, sans-serif\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"600\" style=\"width:600px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.1.1.3\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILr-2BO30TitcN9x2fy0yDHeHYCKDMQ6ZhRs4U67dukwawF7ucaLSzboMSXLxuXZGLgF7r92ULERccUzFZpbhmm9LJsYf1B2ZKtZbAWxZtr-2FOgqB0UOH8U6Tyx9NPSfneu0L7jOZVocdm8cxiz1qeLVHAs-3DKC4k_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWEJwhaleRNZQE7fTqaG96eQLjOgp4wQcpcl8jBsShtalyr-2Be9NC56FvTlmhYyOvyWRhJSKbCwIdzC3WCbhVq6O0ewtQ60jkyiLQKG4DcIYfIi3ThTnxMA3-2F2Atu17fUaXkV8C0gDm0Y-2BWk5tgcVUnmdoRwn8HN1neLYQ0YveXqvL6Ne14y-2BuCX-2FggMyeKHaWDPVZyWqmHdqQV1UL2noQOTQ\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>DefenseOne Tech Summit</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.3\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">JUNE 26, 2025</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">Talk changing tides of defense tech investing and the future of the sector with our Director of Commercial Engagement, Sarah Pearson during the </span><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"><em>Venture Capitalists\' View on Defense</em></span><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"> panel at this year’s DefenseOne Tech Summit.<br>\r\n</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILr-2BO30TitcN9x2fy0yDHeHYCKDMQ6ZhRs4U67dukwawF7ucaLSzboMSXLxuXZGLgF7r92ULERccUzFZpbhmm9LJsYf1B2ZKtZbAWxZtr-2FOgqB0UOH8U6Tyx9NPSfneu0L7jOZVocdm8cxiz1qeLVHAs-3DaCZZ_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWGYG51dtj0xI6w8JmrNazEx9EUMSty-2BMc0RbThpdQiwU8kM4po-2B4ySwr70HaImUxilviHZHSFrMRtg5wz-2B58qvk2iQlwnddHOLn77wScDU7Wy36c2-2F-2FJPoe5sg9WE6bCeU6ynL7G5dbvUcCnmblZmDgWqZIYZflDrpaR5mBAo8dWNIPrBfuQ-2FOWgLYwiIeGQvBrtnSoprEOybZ-2BRQt-2Fydhg\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-size: 14px; font-family: arial, helvetica, sans-serif\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"600\" style=\"width:600px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.1.1.3.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILs1XNAkONq27Vy2eoL6dfunuZV2ouMkPE9B-2FNWdcY2xHpAAcKKPZuWSP3rIGaGjdCZDXkRlD29x5jm9PBY0D4OfbvErhiTGOVRQkLgaVns2YpfbVDpRstsowveZCHZwxANHTnGaXFUo4Ym4FKuzc2xLQCtsGSNwFNIeJLwp90rTQvudv_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWGXxJkYoEM57-2B4frOIpVJkQDEDdBCFR8lJNXRB93bgT-2B36R96-2F-2BXS1NryfsH35f6BdxB-2FvHh6VX-2FnLwu11ELew5hVf5nAcE7vVmOjZT5gS6-2BCDjwZwfLzH0CKFLZojaLO-2BWDqlqRfo-2BeQi8jr8ol1do-2FUWf5f9vda-2FRuGJ8CtGlDH80WpS7483AN5-2F7-2Fqf2kEFsaZkKSTLQS24-2FXJPak28G\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>ICAP Information Session</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.3.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">JULY 8, 2025</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">Applications are now open for the FY26 edition of the </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBejvUMPiSc9SBzZL8Iig5LBGf5cDbNULUGgx51GH7iMFd-2Ba7oWf6DT1RerEs5s-2Fm53sjl65ZaHuTxHcLpmTGNiWl2DZN6NAhlnqvKHEJmJ-2BMD0Iy1eE-2FLz8pOiZlGCnExfcraYwRU53JQXmwrVYdozE-2BcI8lL0-2BtsZje6U65tXljcg-3D-3Dy80m_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWFu-2BKU2NI0lJSUY0BefFJY-2BfPI7T5v1BT2GSWasrrY0ubP1L5Pf6pd-2FIuVUEioCJ9x8YisPXTEZSz5HHldfa4ToFg-2FFnxb8fiq5i-2FzJAnVKQqnqKSs-2FwBZuCRnrr5d24Ax91IUGHNCvPoqQ49hOMR7AF8x-2BOsM1uZJ0REee7VC1hUWmT0wEwhfdyQtRg6of5UamIkcAKMTmVzkqwKHmPNZM\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"><u>Immersive Commercial Acquisition Program (ICAP)</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">. This highly competitive 12-month program designed to deliver a group of contracting professionals proficient in commercial acquisition. Interested in learning more? Join our live AMA-style webinar, scheduled for July 8 at 3 p.m. ET.<br>\r\n</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILs1XNAkONq27Vy2eoL6dfunuZV2ouMkPE9B-2FNWdcY2xHpAAcKKPZuWSP3rIGaGjdCZDXkRlD29x5jm9PBY0D4OfbvErhiTGOVRQkLgaVns2YpfbVDpRstsowveZCHZwxANHTnGaXFUo4Ym4FKuzc2xLQCtsGSNwFNIeJLwp90rTQXSsn_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWHNV8ErTkjMkCf-2Ft3u-2FWbGGQqk1CvUO4gSLh5pd171jUO6c2tGf0Ls4-2FcTLpfU4KyVFFqEr7-2FuNWrLoiotZ-2FgTcQ60pWW98w1VH4mJ2e3O9udffpmiLVp3CvaihNJvqiPEEQB2Yzar1rOeZl9z3M2iUYhSdx2Mdbgxc9QGDjDfINjMRjkCeoqYWl0w0Arx0XrXtDYN33nLMVM9gjBWhglMO\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-size: 14px; font-family: arial, helvetica, sans-serif\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"b2aae8b4-07ed-4408-856d-9fad1455350e.2\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 70px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2e35c854-f82d-44a2-a0f5-30013d25e3d3.2.3\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px; line-height:30px; text-align:inherit; background-color:#e6e6e6;\" height=\"100%\" valign=\"top\" bgcolor=\"#e6e6e6\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-family: helvetica, sans-serif; color: #0d66bb; font-size: 30px\"><strong>Open Opportunities</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"200\" style=\"width:200px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cBiyKgSAf3sHzEQtGwL8gU.1.2.1.1.1.1.2.2\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:25px 0px 5px 5px;\" valign=\"top\" align=\"left\">\r\n          \r\n        <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9kGc-2Fi654EjxfC7gcUneG-2FZ8t5AyHoUl6ZdeO-2FYuJPcUTJiRYNwzKE1XObChGB-2B-2BCaCoIghdLCzaLv4F8SC8T4411K7i5hbARk9-2FKFN-2B71yAgnBN_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWHPwgqs0RjU4ck-2BQ0SuYMWVimC3KjqaaREm5VSYKeCADKlNr33RGW1GkGzWOgmWIrT6txWr0ci1ELYtbG-2BwqA1o0NLT6PuS43oaD-2F3tw0qr0Tms-2BttLxVJ4-2FizLrUvUSFxFktuKTBq7PM7CrJvB4ZmDU-2Bybn-2BkH-2FhaSeMuiIHDEsacsLNO2RtDY1GELoouyWxmK1LvxBJFu6iAXxBXx1GMs\"><img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"200\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/21cb845f-dfa6-43b3-89b5-9485c7a42833/2500x2500.jpg\"></a></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"400\" style=\"width:400px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.2.1.1.1.1.2.2\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9kGc-2Fi654EjxfC7gcUneG-2FZ8t5AyHoUl6ZdeO-2FYuJPcUTJiRYNwzKE1XObChGB-2B-2BCaCoIghdLCzaLv4F8SC8T4411K7i5hbARk9-2FKFN-2B71yAsPUi_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWFmA-2Fq7jiuZK6eb6-2FZwZA4HrQv3J5-2F-2FpmubJ-2BRQZ83mQ9xelenSZpAKE2Ll8iIWh7oNuUo-2BrgmU2wnG2Z6K4UGcFYibkDO-2B-2Fm5aGkMnv21kxKiKN8xi4wuhIAPn7E0bOplXci-2Fs9UYkBsQJHhUs-2F8u1Q73NkKY-2FO0Xs-2FdR6FCi52cUshJ-2Fn5e2dRJE56yE2U-2Fjj0-2BIAV0vFich6lqwF-2FjWu\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>$20M Available For ‘Ready Now’ UxS Solutions</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.1.1.1.2.2\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">We recently launched the Project G.I. Prize Challenge, built for DIU and DoD partners seeking “mission-ready” uncrewed systems (UxS) solutions to enhance the speed and lethality for small, dispersed targeting-strike cells operating under denied, disrupted, intermittent, and low-bandwidth conditions. Proposed challenge solutions must enhance tactical formation’s lethality, survivability, or overall mission effectiveness within the specified and serve the needs of a DOD customer.<br>\r\n</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9kGc-2Fi654EjxfC7gcUneG-2FZ8t5AyHoUl6ZdeO-2FYuJPcUTJiRYNwzKE1XObChGB-2B-2BCaCoIghdLCzaLv4F8SC8T4411K7i5hbARk9-2FKFN-2B71yAokDF_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWFTASoz-2FiKDnKPuTmRIZkUwxJ4wuQDTJNh3vSaGMa0kk9IfpoIaRwg2az4nnQyO3DMML6wCF1v4TvUiKYOr-2Fh9B-2FkjIgJGlbZJf5xsHtt2udSVhKg7D-2FUcneTu9D5De1rRaFWtMe160j6R5lQX0loUgheXTKrS-2Bs-2BK6lvuJNE6wcscTdfX-2Fh-2BVqUMUJx493XLbBo-2BuWSCHhT2UCzCO0ccDV\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-family: arial, helvetica, sans-serif; font-size: 14px\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"b2aae8b4-07ed-4408-856d-9fad1455350e\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 70px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2e35c854-f82d-44a2-a0f5-30013d25e3d3.2.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px; line-height:30px; text-align:inherit; background-color:#e6e6e6;\" height=\"100%\" valign=\"top\" bgcolor=\"#e6e6e6\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-family: helvetica, sans-serif; color: #0d66bb; font-size: 30px\"><strong>Open Programs</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"200\" style=\"width:200px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cBiyKgSAf3sHzEQtGwL8gU.1.2.1.1.1.1.2.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:25px 0px 5px 5px;\" valign=\"top\" align=\"left\">\r\n          \r\n        <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOfPSNye1VBXUtGwLr5B0g4mXzatChOvzjYr7H9gNSTcJex44GQphwStBzDtoYDwUIZjt9dvfwqfowCerMF3Z5SbODEC6jS3i-2FGB44CZqxaV9PX4BRLBQ6Zr7fqWQJ01oPbM6T4kp7JDFPp134dsfdXBEcibq5Hh02fkcq6oaMSa5Q-3D-3D5h8f_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWGyjmcDwACNt0Q69V6RRbFaaBb2xBWIY0Mp-2BvgUnmrrxZmNXIVZmGKU0eOLoFvkon0VC0FZzW5fG1n61D2pHf4GBbiNLf9Kuvu-2B-2BXuKaLU0OiTAV-2B3lrPQmCjMPhbsYOnWd6jU3IwBgnd1No65HTwyBikdwMdIhJ69gjVJkClyCfj42Z7hvtG1bqhdIzbYStBAzoYIFlzMpMRGqOLspikJ4\"><img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"200\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/26f51dff-7af0-4526-a2ff-55d8b15f204a/1080x1080.png\"></a></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"400\" style=\"width:400px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.2.1.1.1.1.2.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOfPSNye1VBXUtGwLr5B0g4mXzatChOvzjYr7H9gNSTcJex44GQphwStBzDtoYDwUIZjt9dvfwqfowCerMF3Z5SbODEC6jS3i-2FGB44CZqxaV9PX4BRLBQ6Zr7fqWQJ01oPbM6T4kp7JDFPp134dsfdXBEcibq5Hh02fkcq6oaMSa5Q-3D-3DVQaL_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWG8FosIQ90-2FLbI4S8fiy-2FN6-2Fhu0qBrvl7NEFKzBz0xBg79TJbJeCARgcutQTR42A5Q9ptSQLEX-2FFglERnPPb-2Bn-2FVUGmJbRX0QNoeD88lrY-2FwoOC9JnkK5dR8NNErG61xbbClHbOAB98fiwkCUDqJTrNSbELk-2FBs7jmppRqBw321dglp8XnhBB5e-2BDd4bNxct7X6hzufwyYscu6wjD-2B-2FV3fE\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>DIU Launches Dual-Use Academic Accelerator Challenge, 15 Openings for 12-Week Accelerator</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.1.1.1.2.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #454545; font-family: helvetica, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline\">JUNE 25, 2025</span>&nbsp;</div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">Are you a technologist looking to gain knowledge into the defense market, receive tailored mentorship, and funding support to scale your tech? Apply to be one of 15 individuals selected for a 12-week accelerator program and your chance to receive a share of $500,000 in prize awards as part of our Dual-Use Academic Accelerator Challenge. Applications are due June 25.<br>\r\n</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOfPSNye1VBXUtGwLr5B0g4mXzatChOvzjYr7H9gNSTcJex44GQphwStBzDtoYDwUIZjt9dvfwqfowCerMF3Z5SbODEC6jS3i-2FGB44CZqxaV9PX4BRLBQ6Zr7fqWQJ01oPbM6T4kp7JDFPp134dsfdXBEcibq5Hh02fkcq6oaMSa5Q-3D-3DmTpQ_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWFeGFiIGECW0tSTiGfzBxBYHIW9sBQk5y4nt46Q8MUZ3RfFkkly3QXrMokjJTdswORu-2BB0ZmNqSD4w7L1gBZzJJEvKcFsqRegdS2Q6wAPiuUW9VAAmg2VCDrYIzANsM2XpO5vpPsLYvoGmD9zV7W3InAkGmfQZsr0ybqfvdP4qCJS0Xxohy2QXDVFO65vnh0ZcryBowQAfcT8lwjHzw8hHi\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-family: arial, helvetica, sans-serif; font-size: 14px\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"200\" style=\"width:200px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cBiyKgSAf3sHzEQtGwL8gU.1.2.1.1.1.1.2\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:25px 0px 5px 5px;\" valign=\"top\" align=\"left\">\r\n          \r\n        <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOcO1bK7CGMB4k53poBLNsdlOrxhASoKRWJJd-2FGQRqGfyFF40MZPxYIdrAnBS0b3i2rhfF5ZNde6Jg9imWdI1r7rS9HujntqPq-2Fr8MYBkuHNQHTB3Ho3l5C1x-2BUHbiA6WQ5H5FmAk1Mjv0Fc-2BePw-2BxHbqj1AqWapzyoI408puE58-2F5MHw3pHPvpu6hR0cynwqz4-3DxBV6_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWF9mNZ7cZ-2BxVwQxLiKCKylRn6v-2BLIGNHjoi22dKuSgA4uZ1x1HrKN9lfk4XqLCwymaI0QH5iLuzswxvTwjdOzjVMk7snD0UMkIbhaDtMN1hY6f6j1IUYVJjghv9Z8JQ-2BvVNb8sAZCnjF-2FNIMqFgVfysyvhl3PbNh1sfP4u9WTJ9yQACaSPXQ9ZUPkbKQa4p7keXscrm7OgpVb-2Fek4g8-2Bgbx\"><img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"200\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/98ecde0b-a7c5-47ff-b672-76ff6fb4bf11/1080x1080.png\"></a></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"400\" style=\"width:400px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.2.1.1.1.1.2\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOcO1bK7CGMB4k53poBLNsdlOrxhASoKRWJJd-2FGQRqGfyFF40MZPxYIdrAnBS0b3i2rhfF5ZNde6Jg9imWdI1r7rS9HujntqPq-2Fr8MYBkuHNQHTB3Ho3l5C1x-2BUHbiA6WQ5H5FmAk1Mjv0Fc-2BePw-2BxHbqj1AqWapzyoI408puE58-2F5MHw3pHPvpu6hR0cynwqz4-3D637__V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWH-2BJIW3yCbqA201sSRssQLgq8APJaHQpNAhnrgansSJ7rnU7oi8VbclqDWEIgvj7k9CZJMp0B3L0RQ8Nf4aeXk83AxqcfzzoqpxPnDsTMH4xbhwUJ22qP1AqqHF2BlczKy-2BZ-2BmTgjzwLUaCO1zxp2x08nvk9a3OkgaGnop8qqHovp1TWo-2BcnxPdvR0HkF6Bd16l6bCB4VYomeZMesRVphAQ\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>Opportunity for Contracting Officers: Immersive Commercial Acquisition Program Fellowship</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.1.1.1.2\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #454545; font-family: helvetica, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline\">JULY 31, 2025</span>&nbsp;</div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">Highly-qualified and motivated mid-to senior-level contracting officers are encouraged to apply to the </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILtkwjuL0lMZvXAbr70oowKS2ZI0Jgas1dE9YQZLp4324iRiij3ZD-2BiRZY6oc6eKgi0Iom703kTElvfSoVoSxZRgxmZ1DWs8qECbCBEZapfaITOrF1zH9TCbntF-2Fseciex-2BWSpKNNRThFX76bkM9clSvP-2BVUNa2eQeovGgCDHXqU78GeFmxAJ1v2H64zy7xUugaTZ3PbKktWadN26UOjY7pi8fJuVZUmGlqFRBKdKYpikvOw-2B3OG49UxLxCiJBzL6oA-3D-3DeN8Q_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWE3lKHcsLOP8ToLaEzQUEW9ius1UqHizpyMmnDGQSq00FAN-2B2SYj6XWqNW2KDrbGCWzmL3h4O2hmPNbvDZ0k-2FUxerxj-2B2f-2BcfPhFtzXG-2BD5nTyph6CaolyMqTMKlR7m-2FbiGoQ2uYGU4hfQnF3rIZ3C7yXviAwlM-2Fssqm0qqHNXBUysL4ximeTbL4u-2FM-2BBtyDnowNxJkNHwElEocnbbViRU9\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"><u>Immersive Commercial Acquisition Program (ICAP)</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"> Fellowship a 12-month program offers hands-on experience with our commercial solutions opening process, OTAs, and provides valuable insight into the commercial market and the dynamics driving commercial organizations to engage with the government and DoD. Learn more about the ICAP program at the AMA session set for July 8 from 3-4:00 p.m. ET.<br>\r\n</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOcO1bK7CGMB4k53poBLNsdlOrxhASoKRWJJd-2FGQRqGfyFF40MZPxYIdrAnBS0b3i2rhfF5ZNde6Jg9imWdI1r7rS9HujntqPq-2Fr8MYBkuHNQHTB3Ho3l5C1x-2BUHbiA6WQ5H5FmAk1Mjv0Fc-2BePw-2BxHbqj1AqWapzyoI408puE58-2F5MHw3pHPvpu6hR0cynwqz4-3DYbtL_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWHi6Z9J95EL0BhCp5HFgQ-2BUOEhEhZAoORTYJxuk3K4D2R8d8xfiAsiIsEeUlyKNZIHr5Eg0CYz1Qdo-2B7Qgd25ip5JmHriffXm0qQ7S-2BJtybLVaiUMJpsCji4Gix-2BvCBhscvFl-2F99-2BzdHozon5tVOgejhe0OFVbxHlfNhZlu4CjloNSq5H-2BMKhtxVK9dDx9sm-2FF3md07Oz6BTfKcg1SOD3cr\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-family: arial, helvetica, sans-serif; font-size: 14px\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"b2aae8b4-07ed-4408-856d-9fad1455350e.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 70px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2e35c854-f82d-44a2-a0f5-30013d25e3d3.2.1.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px; line-height:30px; text-align:inherit; background-color:#e6e6e6;\" height=\"100%\" valign=\"top\" bgcolor=\"#e6e6e6\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-family: helvetica, sans-serif; color: #0d66bb; font-size: 30px\"><strong>News</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"200\" style=\"width:200px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cBiyKgSAf3sHzEQtGwL8gU.1.2.1.1.1.1.3\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:25px 0px 5px 5px;\" valign=\"top\" align=\"left\">\r\n          \r\n        <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOeqEy6xY8FKISbKUr2RJAMR5UthVp5T8oqU-2BdEQ9WMhXxB8WflE5J1FhCeC6nIC-2BNwo-2BsUmpm8YH5sP1eFgP12O1NNLh4a4E1rp-2B8I2qruti8wo7C-2FzEIf76LoVfKC6owL5-2BTjX7cfTyCYNqAFzl3k4491qvlBW-2B2LzAnWA6g3z9JNXJdq2KCC9KL049wL5Mw0-3DK5yJ_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWFrnUHkYHum0bUPZ0-2FE7RvrUYcO3L0ANPLrxIx2z4CWAhb1NUMn9SfPajK-2FHcqUzKvWhnMDfzNTPZuRXHFjENq8sdx7DWML4KfTB2kw0SJiK7LIFFF9QLPQ0rhQmLU0RR4HSGjVyzzcps59NR8OfV4zdDOg6jnwrFepS7-2F1MrcFSmxns2VduwsOlNaKvIjCoTkOJF8PwczWIJzIda5eZlmM\"><img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"200\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/df94229a-2864-4959-a62d-74f01ac2ce3a/1080x1080.png\"></a></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"400\" style=\"width:400px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.2.1.1.1.1.3\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOeqEy6xY8FKISbKUr2RJAMR5UthVp5T8oqU-2BdEQ9WMhXxB8WflE5J1FhCeC6nIC-2BNwo-2BsUmpm8YH5sP1eFgP12O1NNLh4a4E1rp-2B8I2qruti8wo7C-2FzEIf76LoVfKC6owL5-2BTjX7cfTyCYNqAFzl3k4491qvlBW-2B2LzAnWA6g3z9JNXJdq2KCC9KL049wL5Mw0-3DWb4j_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWETWuiZ2T7yrlcSat73NIkeZL-2FY80v64u-2FOTvaZZmu-2FqwbGnauSlT7PZKnm2D2FOVA1DRIQMDSd7101HHx4jL5ave7VjbhQvm2eRS7RVU-2Byl-2FsvA38CvIzGGGaBPBng78ltG0zu16qLB3tgUnyAjZhOUtjulcgPm96vCijqpWWG-2Fcm2y-2BsZ7VOZZCkmT-2BKt88wVqZ-2BbFlsqOaYBRYIPaOzH\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>New Two-Tiered Blue UAS Model Launches, Identifying ‘Best in Breed’ Drone Capabilities for the Warfighter</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.1.1.1.3\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">We have announced changes to </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILsTABHxG1CogkgrpyoCpugKNATZlyTE3vU6DKVAJoBkjTDVnfseODV3zxSHkqWfQLH3LrQD5M9ZnHB-2FyzArBcO-2Fki-2B3ck0tQpKYiyaXyfSlcmhp4ckF8gLXLgliFCokD3A-3D-3DadRb_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWEvp349uOKLhoex3Uw8QWr56eLOmNmH25RGmx6RbhgS35AFH72PPE1nI-2FYrXrUrw97mW1DDtlohGbpj29G6gkuhl1Ts7yhwXrxeJY1yRKTWIeRxskKttJxWUzTV0lvv1tBW2k6DwsexHaouJGMzKIMX-2BCjnbOnwwxYIsTSyyx-2F0azFlIL51Npm6kMWeq3M9HG4qSkAlu1hopsFUh-2BcXcj53\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"><u>Blue UAS</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"> - providing a way for companies to verify their NDAA compliance as part of a two-tiered system and evolving Blue UAS to provide better support for solutions to DoD problem sets. The first change will allow us to leverage our </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILqOeikf2-2FT-2B9epnBQarpNSs2uC7-2FDeo-2BFI7xM8mEBufRW-2BVsgY1zuCwV1ll6xtivqFqerMstzb2rOJ9O0ooGPdvJah16DDfIX6Y8tfFAjmh8xpQ4WEo1zVYoWQnspn0Vm-2F82Xwg0Ntfm-2BqGFj-2F97phKslUxD84-2Fyuddy-2B0iqHCVloqq06UmrDbdq6Qk9oJtWUMVRcJZfhyoQR2JddreVaro-3DjsLE_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWFKwdI1-2BTRRLhVR1YRQmPU4LvYyeET86FyaI8vR3Td9fXVnFyTOdXMHyNFTok-2BwfijUO8NdWUd6jD25BRKlwwyLHzNP5cSGvVD-2BkgPwau-2FhCWtcZugRyr2H7SiBrjETr7Yej8SEjufYonDdOQ6PEmTFy53GRTdZAJ1IPHv7hzyFJfonY5poYr45R825uberOvSATRrrIf-2FYeaR2lMsDC7BN\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"><u>multi-stakeholder partnership</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"> authority by selecting a number of capable entities to assess UAS platforms and produce reports as </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOeBDpbJ0b-2FvkXHeunX6mDGzoo5EsMQ3NyOAW9fJfjt5JEE19ZwMEpVh27NyzsOxptWZEdwB-2FFjU5Nqk6icSUvW4M3rvCuPs6wZgAXHYPvAqQIXdx-2Bp5uC1qixepBnS-2Bjf7wACtZKjlLD4XrCY4JRX4UGHp2Es4h9qeF6PCeq6Wxpj36IvH5XSFL0r0Df716OiuSwB1YUM4GOlNX8sTf-2FTrRmJA64L2TOVTyfBDnBBctiA-3D-3Dpwpz_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWEXVEiQOeb5HjLpVlm0mgtr8ppBpNuoCeUVeLyjtqMeZAMVG1b8C96o0WpJOPYsG4lDWyB2Y4YZUC9lwqIDF68uXRDDIcfvtu7SS9yw7DkFWVRJGFbbnc-2FoCopf-2BqVDIp-2F-2BZWta8GLg6WvktytVoAb09Fmv7I6VNjUPJ6-2F66D3Lg7fEjkdBIGwoBXHl-2ByRWuAaM0bLw9bayA3bk8Wdm-2Fjl4\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"><u>Recognized Assessors</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">. Companies will also have the chance to be referred to as Blue UAS Select, when they have met both cybersecurity and NDAA requirements, through either DoD sponsorship or competitive selection, and that have received a DIU-generated or DIU-approved ATO.</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"><br>\r\nLearn more about becoming a Recognized Assessor </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOeBDpbJ0b-2FvkXHeunX6mDGzoo5EsMQ3NyOAW9fJfjt5JEE19ZwMEpVh27NyzsOxptWZEdwB-2FFjU5Nqk6icSUvW4M3rvCuPs6wZgAXHYPvAqQIXdx-2Bp5uC1qixepBnS-2Bjf7wACtZKjlLD4XrCY4JRX4UGHp2Es4h9qeF6PCeq6Wxpj36IvH5XSFL0r0Df716OiuSwB1YUM4GOlNX8sTf-2FTrRmJA64L2TOVTyfBDnBBctiA-3D-3DvSix_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWFADQbiIkJIS4WrSGYWivrUHFgkQTzivto-2B-2B6iFvKVz1N2XJNpYjib4FMmq7QGw3CG7F1Y7XaujF6-2FMmIQ0CgAb0yrdXcLTJiCwRqsUjcJc7WhrIMUWo6fV1evU7k6FEDCFOcuA-2B9Thu80rp-2F7EGuNZqNeEZvkGGZZOR2-2FNHNvQJDiJwlnatNP7TO9HTevTUWDo76y7o-2B5yy7CwyMZbQaIM\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"><u>here</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">. Submissions close on Monday, June 16, 2025 at 11:59 p.m.</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"><br>\r\nLearn more about the changes coming to Blue UAS </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOeqEy6xY8FKISbKUr2RJAMR5UthVp5T8oqU-2BdEQ9WMhXxB8WflE5J1FhCeC6nIC-2BNwo-2BsUmpm8YH5sP1eFgP12O1NNLh4a4E1rp-2B8I2qruti8wo7C-2FzEIf76LoVfKC6owL5-2BTjX7cfTyCYNqAFzl3k4491qvlBW-2B2LzAnWA6g3z9JNXJdq2KCC9KL049wL5Mw0-3D7WUT_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWGxePw5yi-2FW8cT442TDE-2BIkSYXFNaF3bN1S-2BqYizYAs6P2lQUk1m2WkeDzf68KOmFLB5klD5d1qb7D8EPyBGMGNqcYN91STmWgeWVYDneXEnNExcFlh-2BY1O3B14WD5GBPuOuH4ZFHb3R-2F5ZPH3ojMpuVZLWK-2BCz1IOnao-2FjqJvV0-2BGAoLrVxRWbay5LW2xvk3uwL8Mbr4GxYrtnmaT7bRh5\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"><u>here</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">.&nbsp;</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"200\" style=\"width:200px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cBiyKgSAf3sHzEQtGwL8gU.1.2.1.1.1.1.1.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:25px 0px 5px 5px;\" valign=\"top\" align=\"left\">\r\n          \r\n        <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOd9QmY-2F2D5KmNnv5ncFX3hQ4D-2Fa4sAxbspN6Yi-2BoSWFKCdjgIVzR236xyC6YyXpBhl21zAAOtCx2Lf3geiywBcMYPpwG7NloDF-2Blb1jsl2Dz8ZSH6dQyO0-2FXGEXfKvCMro-3DK3x3_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWHCZVPM2RM26pnA32lpAEkvTbpGYl7OMGgQeQ-2B3Xm1KbTzLXRLAJEAtBQFovnL77zKBsTNmL-2FW2jODL3AbS5ESX0f2exy9gd2cFpl6A0U84gbnMfXmos-2BMVd7ImFZWyJbDVKXCvVkCoGaRJa7L9xOkMBppHCgZpmC8zovPKh0MfN4FMczKV0pwQ2RPrQhUmUapB2QJYYSPvCpc3-2BZat3xHx\"><img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"200\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/9cafd5f9-ff8f-484a-bd35-3a5aa6be7e0c/1080x1080.png\"></a></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"400\" style=\"width:400px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.2.1.1.1.1.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOd9QmY-2F2D5KmNnv5ncFX3hQ4D-2Fa4sAxbspN6Yi-2BoSWFKCdjgIVzR236xyC6YyXpBhl21zAAOtCx2Lf3geiywBcMYPpwG7NloDF-2Blb1jsl2Dz8ZSH6dQyO0-2FXGEXfKvCMro-3Dt2Er_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWFznrwNJNJ924M-2FMqcDeo0i07Gh55bZvQ1CaizHPn9xGjuxTi7ZMHfwGCyJPIUovcgzUtg74e8KCDwcqTJxRJJwIT9K0r0x5j218aNbknHSGsvE505DsZkZI-2Fx4KuantbUKxfgflg4RCPrSk0iT3L9s1eFpE09-2B8Di2TIwAkltd8vhMjvoeeKqBHDKcXg4eYZDLdL3jstuNdr01MkdsIXzK\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>DIU at the SCSP AI+ Expo</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.1.1.1.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif; font-size: 14px\">Members of our AI portfolio attended the annual SCSP AI+ Expo in Washington, D.C. The event served as a showcase for our new and ongoing projects, including</span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9kGc-2Fi654EjxfC7gcUneG-2FZ8t5AyHoUl6ZdeO-2FYuJPcUTJiRYNwzKE1XObChGB-2B-2BCaCoIghdLCzaLv4F8SC8T4411K7i5hbARk9-2FKFN-2B71yAO6Js_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWELh34C1JRfFGMK9ynFIVO7d6zlzxmGPSCD73wH0m0H-2FzeeOTepenXSJRa4NEc-2BmBRoHmDiQw4-2FqatL-2F3R293lfjS-2B5TMnN85fGaQiHtilmttM5I27Im41YwQXyCxk9UfyyjvB88PV687C5DxXgqC-2B95rheLUHWKcSoMNdmV4Ib1ednsM8Y8rN0uRmD60vYfpXEncbHgoVFaWTJqyqZuAHA\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif; font-size: 14px\"><u> Project G.I.</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif; font-size: 14px\">, our call for </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOeBDpbJ0b-2FvkXHeunX6mDGzoo5EsMQ3NyOAW9fJfjt5JEE19ZwMEpVh27NyzsOxptWZEdwB-2FFjU5Nqk6icSUvW4M3rvCuPs6wZgAXHYPvAqQIXdx-2Bp5uC1qixepBnS-2Bjf7wACtZKjlLD4XrCY4JRX4UGHp2Es4h9qeF6PCeq6Wxpj36IvH5XSFL0r0Df716OiuSwB1YUM4GOlNX8sTf-2FTrRmJA64L2TOVTyfBDnBBctiA-3D-3DzraR_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWEjt-2BPv4U1-2B7tiF6Sq7X34wuRtWrKsoCnVEDv-2BHufDYq5fLrOcSsVve-2FKH0DWj4Qr2r5ECSF7FVjGmoXgBpaG-2BY9Y5gCLsjg9KSMkkN3-2BdX9TVC1-2BcWPLXIVLSt2Jjxpc05HXczayjoDrcvkNNmLWXoXrdWp3MgTXX9kWio-2BnuF2u-2FLlh-2FX0qhjZWTLL7hAkbIGoewFFGsgCA7sQ6U1Zov3\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif; font-size: 14px\"><u>Recognized Assessors</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif; font-size: 14px\"> in support of </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILsTABHxG1CogkgrpyoCpugKNATZlyTE3vU6DKVAJoBkjTDVnfseODV3zxSHkqWfQLH3LrQD5M9ZnHB-2FyzArBcO-2Fki-2B3ck0tQpKYiyaXyfSlcmhp4ckF8gLXLgliFCokD3A-3D-3DhHhb_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWHMziuWSkLoGSN9qLsepCoh0HR7-2F3G6Q-2BIB912rdmXMNfolDeJlv131dZC17m2arpHO4g0Io8XW2Xv1vxC6vzfWpf7eRChcZnP36M-2B-2BsC5PtBHtyJwxQJVbK6cvKXLScnNdXJTWMzgMliNhntwfBAac1eHVPprLgYFsfYQg6R-2FVVa1cfTnSUQ6Jvam-2BJdpVbfZ28y-2B961xRdN2PIpmJJClq\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif; font-size: 14px\"><u>Blue UAS</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif; font-size: 14px\">, and our </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILqGbQdSowJwNqK3wVMTS1Ev129Ijp1HamtZUKMYaYLjKJTOPSqDeBrc8jHcP4dDUBkItOH-2FcPsLfL-2Byk5PHZQJIG0gGTxg5FGeUGBngPpY1vGpLJ2oTntOZMntcW5WecFw-3D-3Dl8e2_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWFQzWYRvn8vj-2BYqnrJlm7DqXSCcOK9zbXwyGPUgmUDcFVvdDBWuhDDnQNEZWDRsz0A5wVy1DVmen7oAyX0jRLzDK2cy-2BJOhp-2BrZQAKUzD0gr3aH-2B6oylmROIJ93iF76gReBrMRYWp5lOykDzcAqdv8wAwEMdZrZwI8Cam9065NubmCZgJ-2BEc3WEKUkNSb4iUZRFX6urAod4Oa-2B0RCnm7fmo\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif; font-size: 14px\"><u>Digital OnRamp</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif; font-size: 14px\">.<br>\r\n</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOd9QmY-2F2D5KmNnv5ncFX3hQ4D-2Fa4sAxbspN6Yi-2BoSWFKCdjgIVzR236xyC6YyXpBhl21zAAOtCx2Lf3geiywBcMYPpwG7NloDF-2Blb1jsl2Dz8ZSH6dQyO0-2FXGEXfKvCMro-3DeFo8_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWGPmVlVStdDYYypJ8Kav6XYdJCFJl6DLinxWiQAG81ZCHcwas4CRKl9Ed88rCjFgOeBKRNiLjsmhQyASLs-2B2tJ-2FkwoiGUPF1vCCO29o0xEDN-2FXDSz3gmlyaomzfedpfmDeJX1yQCXPGBamUkrKFvlq9Q0yjd6fMcTMcExEvkt-2FKQKSNvw8RVkkPL-2BreyRy5S49GKIAF2AzrRl1A5-2B11g4mG\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-size: 14px; font-family: arial, helvetica, sans-serif\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"200\" style=\"width:200px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cBiyKgSAf3sHzEQtGwL8gU.1.2.1.1.1.1.4\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:25px 0px 5px 5px;\" valign=\"top\" align=\"left\">\r\n          \r\n        <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILtkwjuL0lMZvXAbr70oowKRyggmFwALgy-2BpL1MFiESazWFT6bfK5WLBz-2BBZuaSnpt0XMIbjDhEUk9lh97DSBJhTXVluIaouQAxKdHsPMJVmiUKp0TWFx3na0kXWsNuj7IDp1IQXYdVLqDNUl7bUreOcMweyPLF-2F88E63l1tghHisF45slTQ8B9RhrhyqAUhgbz5gZdPfIQsrSFZozoeK9Ztkc1OlW9APfuxAQL6Gn46UDVlIVKZLwzFh8GGKCKWegjJzz8L-2ByXpNJTiAGH1F1ak-3DZXvJ_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWHlxOwSfYa-2B3xJaWRzclZfkvyoV9O1xtpir-2B1VLc9XJdtys9xoVYeYtmDd9GZDvoGtyJeJxjnLrW5sEkP4OGGiTR7ON6j-2Bo0GS7fJPDRhDKW-2B0v7TuZJRNqTfO7IqU2DQeMx6qgdLdpR85Ga-2Fiknwsga-2FlgIv4fAHUYde0foWjhyermdy3Ds0VZZVFkc-2Fv03T03dXUCxRSBE8Tnq3z-2BEKJD\"><img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"200\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/30e51c5f-f2d8-4884-9634-a06315d9af4b/1080x1080.png\"></a></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"400\" style=\"width:400px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.2.1.1.1.1.4\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILtkwjuL0lMZvXAbr70oowKRyggmFwALgy-2BpL1MFiESazWFT6bfK5WLBz-2BBZuaSnpt0XMIbjDhEUk9lh97DSBJhTXVluIaouQAxKdHsPMJVmiUKp0TWFx3na0kXWsNuj7IDp1IQXYdVLqDNUl7bUreOcMweyPLF-2F88E63l1tghHisF45slTQ8B9RhrhyqAUhgbz5gZdPfIQsrSFZozoeK9Ztkc1OlW9APfuxAQL6Gn46UDVlIVKZLwzFh8GGKCKWegjJzz8L-2ByXpNJTiAGH1F1ak-3DJFc5_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWFokVFi2pWLPGrRcvTpCTHlLEfOtctsjTuUJ3UOoYndIi3u3tBXACise5gkjBjoc-2FniI2qoR36o6pGJvP-2Fn7ys3XNbtpbskGiQP3YS7RHlI5E6DV3sTCOcW-2F-2FLgXqxS4-2FLMhOHZMq7bHA9JID0v7ynXl7AIg-2Fr1Jwfl9wg3i-2B8omDwyz4C7yI0VCkOAK2aLuAn5dk4jSZiS3kLcstN6A6sK\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>DIU, UAE Partnering to Enhance Defense-Tech Ecosystems</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.1.1.1.4\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">Following the Department\'s announcement to establish a comprehensive U.S.-UAE Major Defense Partnership, we signed a Memorandum of Understanding with the Tawazun Council of the UAE to strengthen defense cooperation and enhance mutual capacity for finding solutions to military requirements by developing and accessing cutting-edge technologies through non-traditional processes. This collaboration will deepen ties in defense innovation, facilitate joint capability development, and expand industrial and investment partnerships across both defense ecosystems — aligning with strategic efforts and investments outlined during the President\'s recent trip to the region.<br>\r\n</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILtkwjuL0lMZvXAbr70oowKRyggmFwALgy-2BpL1MFiESazWFT6bfK5WLBz-2BBZuaSnpt0XMIbjDhEUk9lh97DSBJhTXVluIaouQAxKdHsPMJVmiUKp0TWFx3na0kXWsNuj7IDp1IQXYdVLqDNUl7bUreOcMweyPLF-2F88E63l1tghHisF45slTQ8B9RhrhyqAUhgbz5gZdPfIQsrSFZozoeK9Ztkc1OlW9APfuxAQL6Gn46UDVlIVKZLwzFh8GGKCKWegjJzz8L-2ByXpNJTiAGH1F1ak-3DJQ--_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWFVBn7-2BqGvRiWUuTRuOHhqoyVreQ8DfRxRhlsDXPOO4CPNWuD5wia6WiN6koaft6slF7nku5-2B1gm5nWFzNxrVle683BFQBqeVvugfrA8qnInlm14jY5fNonTbWivW0d8jvuI-2B1RV4QqFIhzbsBQ7Laga-2BswJvW8RzTgKYwZ49evgEtialk-2BUg1e56JlRnpD3Z4rvf0Waq2EVAj7g242PTBl\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-family: arial, helvetica, sans-serif; font-size: 14px\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"200\" style=\"width:200px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cBiyKgSAf3sHzEQtGwL8gU.1.2.1.1.1.1.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:25px 0px 5px 5px;\" valign=\"top\" align=\"left\">\r\n          \r\n        <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOfyw64nAbHaOMy6rdbs8KL4Xm0VbCJlA289U3FNEWjv4Ef3MLfXEcl7uKDJPd5e4-2Fs24t39MMflCl-2BRzumSSap-2BAlcn2fFjrh4W1r0K9EqclBeyMav8mJiT8dKdOqDqaQyo9P14Xhlwz5aTTYx25f474Z6L0UA9Pl-2BteP6h5jAScTwKFNP5h3hLW5pplOlLEWA-3DEy6e_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWH-2FuqAJuQm4ETAxGaZbA7WO8Ga7W-2B5VD5hKXTDzmjWZXjlBFefN6Y6H2hfdsZF9br6CWU-2Bb6XK5qzDnGrZM4GWkN8sv42Xqp-2FS20B-2BQtaJHc5LZXkanX-2BXfGCbxfo01ZDv0jlOGeqmtA1nzIn-2FXyy3C-2BySu65Sbrgz6hdAZHI6IZL-2BuxY9Uiz0nYgg5JBYm5OEujUlLjSx-2BaZ-2FzoO2vhEyV\"><img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"200\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/2387f255-d241-425f-8c4e-e2469739a72c/1080x1080.png\"></a></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"400\" style=\"width:400px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.2.1.1.1.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOfyw64nAbHaOMy6rdbs8KL4Xm0VbCJlA289U3FNEWjv4Ef3MLfXEcl7uKDJPd5e4-2Fs24t39MMflCl-2BRzumSSap-2BAlcn2fFjrh4W1r0K9EqclBeyMav8mJiT8dKdOqDqaQyo9P14Xhlwz5aTTYx25f474Z6L0UA9Pl-2BteP6h5jAScTwKFNP5h3hLW5pplOlLEWA-3DpJER_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWHr7n-2Bb87TnB6TkFYLxn1NaQseGDS7VHWf-2Fz5fG6lMqtkICEHueyCW7CauhmI8mdBDss-2B24-2FHLy9wwrhsjuwC27-2FuMhe7hipaCs0xlSBOW0woFfZQRSKHNceFQZtOwZCQmdhSL1GLdjApelRqFNaazr8Ld49YU5h9K-2F8nG2jmPe6oY0LbhbBwR4pJVl3FfC4tTz6rcwane59oPkQgwWJuw7\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>Contracts Awarded: Hybrid Space Communications Network Leverages Commercial Technology, Enabling Faster Decision-Making on the Battlefield</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.1.1.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif; font-size: 14px\">The Hybrid Space Architecture aims to integrate commercial, civil, and military space assets and support real-time decision making for the warfighter with selected companies to begin demonstrations with key mission partners in Summer 2025.<br>\r\n</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOfyw64nAbHaOMy6rdbs8KL4Xm0VbCJlA289U3FNEWjv4Ef3MLfXEcl7uKDJPd5e4-2Fs24t39MMflCl-2BRzumSSap-2BAlcn2fFjrh4W1r0K9EqclBeyMav8mJiT8dKdOqDqaQyo9P14Xhlwz5aTTYx25f474Z6L0UA9Pl-2BteP6h5jAScTwKFNP5h3hLW5pplOlLEWA-3Dg3TL_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWFoRvP7Rybjd3RBHDBV2nLliSJadQTWCOTQ642GnDh2EaevMs98mbFC-2BmjSQ2YTaOxdR9q-2B1OpQsuimMGK7H1GnN97ntu7QnIZomXaV9-2BavHqMh-2FaX-2BIpkWrY-2FrO-2F-2F-2F11kOIQGbP1sfbBzu-2Fk7Egn-2B1vFwcjO4-2B7Gieyft2z1HdP23ypemWDTSgutpMMCIYN-2FXvTTdAjQv6-2BlXVnReAsauD\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-size: 14px; font-family: arial, helvetica, sans-serif\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"b2aae8b4-07ed-4408-856d-9fad1455350e.1.1.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 70px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"600\" style=\"width:600px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.1.1.2.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: center\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9v9Frb8CfXNFnM9xkwe1UB6t7hKC5ZK-2BORBaD0mikwl6IqSVHXcaM36vBk-2BYbuxOEhzNgMIprs-2FYqLw3sbS-2BJ1WTxvlM1Yxm5b7HnxTklOFoVYmhgDb4-2BGb6dYrEhxzxIbqMOeE4zmJN8-2BFr-2FeTgaMFXTHl4Hs7374yE3Vr8qyJ-2Ba7Qh_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWFX8Al9TMDhmdlZynWG2q5vGkraQPhFv4u3wiztRdbouWAgH7rwa-2BV0eLEuHE3lZlLZ2Oa2yY1Jiq-2F1Fs2m7LhbihrbvXOyJhgjuWYOFDhYKKTmbZ6G-2BmZJjDKnXtXaNIEY-2F807PCceoAVr1BzpMM8u90OtBHQdTryLgQQhjVcVQghio9YUy-2B0L7QkDyUCo1WWx1qAbY9r5cGbC6LWuiiWL\"><span style=\"font-size: 24px; font-family: arial, helvetica, sans-serif; color: #0d66bb\"><strong>D</strong></span></a><span style=\"font-size: 24px; font-family: arial, helvetica, sans-serif; color: #0d66bb\"><strong>IU Data Digest</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.2.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; font-size: 12pt; font-family: Lato, sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; font-variant-emoji: normal; text-decoration-line: none; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; vertical-align: baseline; white-space-collapse: preserve; text-wrap-mode: wrap\">DIU works with companies across the country and around the world to lower barriers to entry to the DoD and broader defense marketplace. In FY 2024, 68% of contract awards went to small businesses.</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"9200222e-4167-47db-ae94-88f47ef8d50b\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-family: arial, helvetica, sans-serif\">If you were not the original recipient of this email and would like to sign up for the DIU Newsletter, please register </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkRcYMiV4RQSYNbz4WjG1zsrVoDrJTcK9AlMfUqQSru5OZJPjwZluHDFvUZw0wQ7Vu6M8-2FmKWpebp4Tkj4KGMvR6Xvdv1bfHdGF3ROb2ml3EFnqIS68d1Ds387XBuD6Jbg-3D-3DBQ2z_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWHJ-2B326dcZHn09Leji4ARPx88CbDo-2FM0WHju2RNMAuG8Pbmo9LmBqKovox0Z3qNHBJDwOa-2F83G8-2Bx5qCXPuFLrI1WZHl1cNDAF-2BhJ-2FRtvdvhTMhxBH5sDCyzDwD0ur8riY0nplZXuoVsQ94Is-2FL2IAzVpEi9F8Gqu4lmGz9n423qV93nz-2F7AuYklwDIzrjkp0hhCrc0pkzjUm5E87OPPfB5\"><span style=\"font-family: arial, helvetica, sans-serif\"><u>here</u></span></a><span style=\"font-family: arial, helvetica, sans-serif\">.</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"divider\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"52646515-03f4-4e8c-9b72-4fc547d4e522.2\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 0px 0px;\" role=\"module-content\" height=\"100%\" valign=\"top\" bgcolor=\"\">\r\n          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" height=\"5px\" style=\"line-height:5px; font-size:5px;\">\r\n            <tbody>\r\n              <tr>\r\n                <td style=\"padding:0px 0px 5px 0px;\" bgcolor=\"#FFFFFF\"></td>\r\n              </tr>\r\n            </tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"112c8b7c-f2db-4e56-a488-a954a02f2d55\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.CzY0f5tAFeDq1sMG7ZgpjdgsKlVwIPTNpzdKOiUDPD7AMjR-2B-2BITtcDo2VB5cKOgB7tsD-2F-2BeB11DytdpaLmbU-2BV1AGqioxMI2oTm1SpzmKlZcp7QVQeuc6HlOF6Vdg4gyJdks_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWHdtg-2B0OD2Gizccxcgl8CGRXmD-2BElBskkxgEM7KjJLCpXjiqICfpdkpWrxE6zKUqml1GISHAMqXA-2BvxtUhCDpbOvdGPRGEhA4evhtol0cRJ-2BnxGZraEEvvzISHHFvf3livDOhc4mhnl4KNIzkv3Mr0UO44uv79PYJjbq1PFNwt5P3bObUUmy8C-2F0lLvGpMA85WqpFdwoa34yUMxHuRRe7uL\"><u><strong>About the Defense Innovation Unit</strong></u></a></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><br>\r\n<span style=\"font-family: arial, helvetica, sans-serif\">The Defense Innovation Unit (DIU) strengthens national security by accelerating the adoption of commercial technology in the Department of Defense and bolstering our allied and national security innovation bases. DIU partners with organizations across the DoD to rapidly prototype and field dual-use capabilities that solve operational challenges at speed and scale. With offices in Silicon Valley, Boston, Austin, Chicago and Washington, D.C., DIU is the Department’s gateway to leading technology companies across the country.</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"divider\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"52646515-03f4-4e8c-9b72-4fc547d4e522.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 0px 0px;\" role=\"module-content\" height=\"100%\" valign=\"top\" bgcolor=\"\">\r\n          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" height=\"5px\" style=\"line-height:5px; font-size:5px;\">\r\n            <tbody>\r\n              <tr>\r\n                <td style=\"padding:0px 0px 5px 0px;\" bgcolor=\"#FFFFFF\"></td>\r\n              </tr>\r\n            </tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"193\" style=\"width:193px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"63b68e10-68b8-4c48-9974-bf287cfe098d\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:0px 0px 0px 0px;\" valign=\"top\" align=\"right\">\r\n          <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"193\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/3c3e14b4-863b-44ea-a235-44a86550fd55/1920x553.png\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"386\" style=\"width:386px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"social\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"0a01c058-b46f-483b-b78c-66b27b087fdb\">\r\n    <tbody>\r\n      <tr>\r\n        <td valign=\"top\" style=\"padding:20px 0px 20px 20px; font-size:6px; line-height:10px;\" align=\"left\">\r\n          <table align=\"left\" style=\"-webkit-margin-start:auto;-webkit-margin-end:auto;\">\r\n            <tbody><tr align=\"left\"><td style=\"padding: 0px 5px;\" class=\"social-icon-column\">\r\n      <a role=\"social-icon-link\" href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILruprgLTFax-2FwdCEoDuowPk6lC7UUuoxLkqryl-2BFeCqC-2Fuuup74SDcFdJIT2Wm0IfAmqo7rZb72PCnLcp4IdbNmccKXqxXWg6lmbf7ew5wTx9me94BdR-2Fom4u79s3MIz1i7C5Lj7aIahKoybW7Na0OQ-3Dixn6_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWHYQ6dGpVj9lT9EsTr-2BPNKOQezaKYiwZhLDhXVJjpUWaPB2ve8Gqc-2Fy8fSIrqM483-2Fn7SP6IdGoayoqnmQ-2BWzfxfRdpI6UzVfXm3QesZOdOM46s-2B31tLGEcH1WR4H-2FFwH3oMJBa-2FYcWfXPAH-2FqDOzrsfJ-2BZyfNlNPO-2FwVOkn-2FIoBW-2BJ3Olt4gEF4E8fDXSv4Q0ueqd2pYahqAxfZ6uJ6LEE\" target=\"_blank\" alt=\"Facebook\" title=\"Facebook\" style=\"display:inline-block; background-color:#0059DD; height:20px; width:20px;\">\r\n        <img role=\"social-icon\" alt=\"Facebook\" title=\"Facebook\" src=\"https://mc.sendgrid.com/assets/social/white/facebook.png\" style=\"height:20px; width:20px;\" height=\"20\" width=\"20\">\r\n      </a>\r\n    </td><td style=\"padding: 0px 5px;\" class=\"social-icon-column\">\r\n      <a role=\"social-icon-link\" href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILl3jEI7VQOngoB3sTi1sr0s6s6sidlqsKRgMcMtXT58oriF8r16RvZ3Lu32AlHfiRN0AVnM0wls9ICuqiTYgXdYFJYYrWuI4drLYbtBHNfG6jlTojqNjDmgpaa79IUj3GQ-3D-3DodSR_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWFbc9Wc63yb-2B4ruEkSZ6WgJ4UXqSuK-2BoPzezZXTMl4HTo9ZTc-2B9uhJdsEMiP45Lvda3lmP9mkQvP6rIn8Imqy-2BMzQS-2B1HcTmAkncBuDVo2-2B5Vs-2B-2B0ml12hkw6XR3s-2FXEy-2Fv4QFfx-2Fx0k0ukIRvkUYYRlnNX0KBjfpptA3C1Rpmz4Ep3rwJIN-2B4KsuaGu7uhbiT35tiHDga7Lc0puLX-2Bk-2BP6\" target=\"_blank\" alt=\"X\" title=\"X\" style=\"display:inline-block; background-color:#0059DD; height:20px; width:20px;\">\r\n        <img role=\"social-icon\" alt=\"X\" title=\"X\" src=\"https://mc.sendgrid.com/assets/social/white/x.png\" style=\"height:20px; width:20px;\" height=\"20\" width=\"20\">\r\n      </a>\r\n    </td><td style=\"padding: 0px 5px;\" class=\"social-icon-column\">\r\n      <a role=\"social-icon-link\" href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILigSPgoyRWe1jvwzlC4TXPcgTZYPtfIjDa-2BOoPwkKp3eVLkplbFWVOchz-2B37AepGp3rqzDpRumX-2BwFxTVU8Ul3zBPB9ciOg2s1a93u-2FYzFlbtL-2F5cWLWJQtgDp5FtLK4SisK3DLek80T1U9DBvj-2FgmiKHB9L1RiayX4SfEyUzzlYO0HY_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSeWMISsxtUAfigiScmY15XBLba6qxpW9sUK5eLbcgG6978ArMV7VLebXLfbX-2FJ3VruewS8DU-2FZpEuuLBDh4Mx8qhq4h5RQMvg2BT2mqmUke9puzAHmLqWH-2F0UdN3wxAMdwK8ICDdSIWrOUBahACluLh4b4-2F4tEpOX4KFnxmYcn-2BtFsgJ1TAjKKWJxiQCjFQjYrepB0oz8jlFqEuY3-2BQoRsHPK13sSeNzKBaCWBypYms4ytMs1hnwr5sw5CsLu-2F2iZBvifbaRUI3izHBVcq9-2BABsnVz2Q8dHfpQ1yRBrFDR52IuPgtGXAq18FjYIKvGT6dNDVP-2BNbjqLcxEjy6J664l60PkmhtLPxS-2BoavfzeHsp-2Bb6eguswY3Zkcz9q1mwPZDUtv0iRnAcVg0KtfRX2sEGCQ8EY6RvTqsVpccKP9m-2FoHVm2Uz-2Fnjt-2BkFbZECABlF5JKCbBTtOrKohT2jTFjibXZOmtlAM3QYfIWwKrBasuWeRu-2BOgzk1jIJsVLNWTw-2Bb8OaA3cerx-2FPtzwNRM5cvB-2FDUpALtIsaU23GRbKt3P03WK4bwMf8XS7UEDsgwPK5boVxrRE6VrlPmf1mkLAL7PWF5kIZIdJSBO8Lh9up8Ub-2BLQFHZSNNzAQBrMUEAvUOCvsn5oxLVUnIxWYxoesmF76oF8IQJ2iTrsO-2FtzLLd9qK8goNzYrkKk1dU-2BPzNnH5Y9kGUdrfHn4RDEJ4VJbsQUj-2FkfTf6lbRbJGB0oEOJvG9Rc026RHye09t3bUywY47bm-2B141reUfYUr1OBC4o9LQ8EqgR0hjRQ6NhL8rBXoSJBQ\" target=\"_blank\" alt=\"LinkedIn\" title=\"LinkedIn\" style=\"display:inline-block; background-color:#0059DD; height:20px; width:20px;\">\r\n        <img role=\"social-icon\" alt=\"LinkedIn\" title=\"LinkedIn\" src=\"https://mc.sendgrid.com/assets/social/white/linkedin.png\" style=\"height:20px; width:20px;\" height=\"20\" width=\"20\">\r\n      </a>\r\n    </td></tr></tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><div data-role=\"module-unsubscribe\" class=\"module\" role=\"module\" data-type=\"unsubscribe\" style=\"color:#454545; font-size:12px; line-height:20px; padding:0px 16px 16px 25px; text-align:left;\" data-muid=\"4e838cf3-9892-4a6d-94d6-170e474d21e5.1\"><div class=\"Unsubscribe--addressLine\"><p class=\"Unsubscribe--senderName\" style=\"font-family:helvetica,sans-serif; font-size:12px; line-height:20px;\">Defense Innovation Unit</p><p style=\"font-family:helvetica,sans-serif; font-size:12px; line-height:20px;\"><span class=\"Unsubscribe--senderAddress\">230 RT Jones Rd</span>, <span class=\"Unsubscribe--senderCity\">Mountain View</span>, <span class=\"Unsubscribe--senderState\"></span> <span class=\"Unsubscribe--senderZip\"></span></p></div><p style=\"font-family:helvetica,sans-serif; font-size:12px; line-height:20px;\"><a class=\"Unsubscribe--unsubscribeLink\" href=\"https://u18220755.ct.sendgrid.net/asm/unsubscribe/?user_id=18220755&amp;data=UIEd6xld_bkTBfEpmcYa65EbHvLAtPFRWs1fmLuSlIpoMDAwdTAwMA5qj4y8WCbVNEYVoGg4iFUT_9eTXN0YcnllIOd5pZBY6MQTDGyVduoYPjIXCKb_W9I0Xe_8D8KSLoCV28K4TaZH-O4SNreJw99uwgbAWeoXxH_ysOKj122UtxRGcGaAq78pob8h4dp1ZG7-GfJWaaBESuoOPa-2j-Us0hQW-bxF48iddMbSHhPZy9OmZCX6221DmsM1301w35UMEWFrXUdYdDhdlHqUFm7Kjue7GyZiqyAwdJ9wdqlHxfWNnH1X5gX5twn37rGCgV6c4FytmMZmk9pMRdoD5M4rH6Z44SMcrNqjLklIO0zMSepR9nonqK7uaPM_j6zqKTZFXu1XyjsyNfDHKTOTO41jcAuoEuGyj1BlV4hPdkh_cZ8NX6HkiszyRjoK9LzPge_2vBe13NJwX1AFQttcViFDagu2SkyJyNAuQfV-CTxV-HsxR56Z2QyoiLqpoCQxjRtlaW-eJgmhFz36L5qba3qdjaXErmNnzqmxeXqGJ_bPY6sN-xZN3feqTk4NWRsTIolZ8ZAd1mTCCpr0LxpxIIpzZHDLg-GND7tjIO5qUs5hvzflrWUagJU4JgFHzVeRlUsLtTVv9jytheV7Bhs7lHPioxR9IoeaXStrTU5VjjfW4oM7Nn1HEPWKNVcq0EnfqhvcYB5U0L5PMzdztZ45qMbFLYtpWjWfLTvocipzuu6f2mPbR2ZTV79AMA_d26TDg_SMQEO2YbrnDVwah3YvaXEAITOV36lwkZkGuoBs41UEgZc3YLPSYdLXgj27vcYdSTS6N_tT4zGH-dg4-s-Jclxdw4HR1C0d_tmxJVthVnInVcUnSdrIw9X0qhw1DBcBAXdMNt0nzJXSP8BrMMNTYfvUiVQztPBKxQQn_2EEi9d4KjJnOOU27yxQp59di09VipVwg0JEwjUZePD7n1PjN-nIibNKUSyitSz7B34JjmYgP375DYV18GxALFMhzzR4CFkrXcOvB4mmj0sYDHTIDzbNdCXJ6vcG5YfGj3N0LiZCKlR9tCsOkuhtlq2EOy1eofXIn16_M-GsQS9rQyR2-rrUQr0ITZ9aHIEzGNPPJqJSujqCuh9ihd2sDjK2B1wWuPlcMdZJcMM=\" target=\"_blank\" style=\"\">Unsubscribe</a> - <a href=\"https://u18220755.ct.sendgrid.net/asm/?user_id=18220755&amp;data=b2a-LNN38B8o1W1BMadxPse4tdwWlW0hMpJgdsj3z5NoMDAwdTAwMC2lukKCuB-pZYaxMg9UFLSamjfv4VXL6DBg0ay4hSSsvqnwgHPbdRQcmXTBp_yzSc5DGOerPjnf3TQAs__uXcx-I1jc91hq0hALVsADArBr-keESxKUXY_kaYE6Kn5p3bwHnTLg5N-nD0spD0ROGxlh1J15CwZn30PnxjaGjfNot45O7aQ7d3ewHXsmQGfaHKYmwpuERs9i2nKYkb2kR7vtkD-PY2gYCvO6WTB_vDm6237mY3KdWu0vASuMSM-qw_FKK0vA3k4JqEdBO9aOi-2w-tK2vPjL5BQp5SbgAEUZiJz0iSh7vdiYkx_MsLqtkpRMaNVRLiIJJE4ecv-MO39TuV927Wsi4D4yzTNyMZG99TE8ZdnsULhrS9gnx2vtHTzerarJ2hPt5A0MEy8MKbSBe69L8OOftDS0sbwTy61VheuRTZQugaQvKy36NHGDM7s2Mtukq-tJlyHQnlsYY_I0zCk_LD4-nZuJ8AZm5Tus0nsG4ftWc6HCDiEDUyUTgMN7YxisNx0S4xEWGr25luIY8V6iDCRjTvHbeplMKVzInkjfuOaUf-WOduRy6fiJUld5gYabWausizeMJedEOf_sob9EtfJMaTItFgVqtdgPbfWQ8EnIFoCxHisSSHOTOB23M4aGcWj11dWabqZPfr-TkDYQ0YeDYBqYeCmNDijgckDTFyDECPNVpXt7T6lAQgJto7GXlRbc9VoWt6Em4hmuSer9J26K86cHSvNPdhg_dMdK8LuFtYl8JZ--_hsxSZWTQ8v7WmJND2O8PQtENfFeaIkB2WeYQcwTT82CJym5gaAdGhBa4g_jgG2Ts3hZNEPDrFEORJgUfNPzxrmQ_rYR6ygVZs5SxZAYF332-TW96hPEiO7RtU6V1Rx3Jbcf2QlpqAk4lX2gHQLIGirU18ArZvEWkNWrOEcNGMBMAxQ7WQ549f-jUXh0xUG8_ANUjtUkL9U6LrdfWqSGZxDvMAlwy8iObSwOuMxHseOgn8yLUOtq9O4LE_Ah1FRfY9UZ9SRZcaWas8h3qsJwONx6BE65W_PoWFx6RgtlR0JTtecnnZ4y46GHY9hfhZglucxD2Q==\" target=\"_blank\" class=\"Unsubscribe--unsubscribePreferences\" style=\"\">Unsubscribe Preferences</a></p></div></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n                                      </tr>\r\n                                    </table>\r\n                                    <!--[if mso]>\r\n                                  </td>\r\n                                </tr>\r\n                              </table>\r\n                            </center>\r\n                            <![endif]-->\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </div>\r\n      </center>\r\n    <img src=\"https://u18220755.ct.sendgrid.net/wf/open?upn=u001.D6mC8SG6iITw2GIzPjAtw7SLAuEgZhcE7OQx5Ie2paKW9TCJvoy3Eh7ani-2FmDfzWZ4Aty9oKYAg8U-2BpXv81mmaeCBsQtTAdxlXqbnsXBCjn-2FAW10qJfypmIUPoD1-2B38y4LSjEaiwyNZHtEyZD-2BNUDZsh6hLlpGp9kFMfaUW6Ll3RHarwPVEFsnPR7hVryfG7pQLCBV57J-2FBZFrzK5C8vKBf344X0nBlukj38rxwF5RcsWb66CYn0KPIih0M2J05dPW449irm-2BBj-2BPOTrf0HOry-2Bksj6AHHgrHwKfB7JX-2FsZqBMRlmwsOc9o1QiRIWOSBr442MK-2BKHApwFLcu3cKHQ5726ICmA4AIA1-2BBm-2FJuK4eytRKoVPXBezVc8-2BLPDfAn4lXpXH9Frfr6u5gql-2F7pPRnXst3gJ9X6Z6tUJzmu8uJ4sR-2FSvIvCMcO58r2Ah39lq2vFqsAnl-2Bj26J5TPKDf921MHiaVmsdRLtPlWTBN18UyqSM9-2Bfo0zFN4mI6K5sI6Wz2bImQmfZFcKntNSaJznTnXBotUnhqZ8ktPBdUMrv0NKKOoe00TFS1imCJ2MeHdXlLEsdtbVTPi2Bia-2FxbB3yNeF-2BWE-2Fcp138HitdC5dFJEFj2zELUpmIsbXQXUTYhGYSaAulCGJUMV50zFfOhy-2FIZMYP0t6sERlh-2FEDUtogr7iJTt0J1oN7hR28RZ3y2gi3hDLlO3UluvGI9AQfzs1Ed2TAM3GvG0tSf31W6BusDbWivg9kpk49f1YDot0xadoUKKwYeBWR2IZkp67Ey6gU-2B4JPbEJgBr-2FjO1PjjqJd1-2BusAnlj4wWpkadQ7HtbuN3QEzLBEXOfZWBy53zP1PxDQaqPHwd-2Bqfj00QlwGoqUPTHqtRWeJ4SXoGVm5u-2BPsuLnXOJFXaLNhkyNsefgXB9-2Fcep95y7pjgkugy9AmBB7fSA-2BfrCEtLR-2FVfIcFuQzht9\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/></body>\r\n  </html>','Read more about upcoming DIU events and opportunities\r\n\r\nEmail not displaying correctly? View it in your browser.\r\n\r\nJune 2025 - Reading time: 2.5 minutes\r\n\r\n*Upcoming Events*\r\n\r\n*OTA Workshop: Rapid Technology Transition* ( https://www.eventbrite.com/e/other-transaction-authority-ota-workshop-tickets-1343908589769?aff=oddtdtcreator&utm_campaign=Tech%20Bridge&utm_content=333191427&utm_medium=social&utm_source=linkedin&hss_channel=lcp-35666959&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nJUNE 18, 2025\r\nEager to learn how Other Transaction Authority (OTA) can offer a fast, flexible contracting mechanism to do business with the DoD? Hosted by NAVSEA at the Washington Navy Yard, join our Chief of Staff Capt. Alex Campbell and our Director of Acquisitions, Cherissa Tamayori to learn what OTAs can do for your organization.\r\n\r\nLearn more ( https://www.eventbrite.com/e/other-transaction-authority-ota-workshop-tickets-1343908589769?aff=oddtdtcreator&utm_campaign=Tech%20Bridge&utm_content=333191427&utm_medium=social&utm_source=linkedin&hss_channel=lcp-35666959&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*DefenseOne Tech Summit* ( https://events.defenseone.com/tech-summit-2025/agenda/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nJUNE 26, 2025\r\nTalk changing tides of defense tech investing and the future of the sector with our Director of Commercial Engagement, Sarah Pearson during the Venture Capitalists\' View on Defense panel at this year’s DefenseOne Tech Summit.\r\n\r\nLearn more ( https://events.defenseone.com/tech-summit-2025/agenda/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*ICAP Information Session* ( https://www.zoomgov.com/webinar/register/WN_P9i6pJsjRIGaIcl4WAb8hA?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nJULY 8, 2025\r\nApplications are now open for the FY26 edition of the Immersive Commercial Acquisition Program (ICAP) ( https://www.diu.mil/work-with-us/immersive-commercial-acquisition-program-icap?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ). This highly competitive 12-month program designed to deliver a group of contracting professionals proficient in commercial acquisition. Interested in learning more? Join our live AMA-style webinar, scheduled for July 8 at 3 p.m. ET.\r\n\r\nLearn more ( https://www.zoomgov.com/webinar/register/WN_P9i6pJsjRIGaIcl4WAb8hA?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*Open Opportunities*\r\n\r\n( https://www.diu.mil/work-with-us/submit-solution/PROJ00598?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*$20M Available For ‘Ready Now’ UxS Solutions* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00598?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nWe recently launched the Project G.I. Prize Challenge, built for DIU and DoD partners seeking “mission-ready” uncrewed systems (UxS) solutions to enhance the speed and lethality for small, dispersed targeting-strike cells operating under denied, disrupted, intermittent, and low-bandwidth conditions. Proposed challenge solutions must enhance tactical formation’s lethality, survivability, or overall mission effectiveness within the specified and serve the needs of a DOD customer.\r\n\r\nLearn more ( https://www.diu.mil/work-with-us/submit-solution/PROJ00598?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*Open Programs*\r\n\r\n( https://www.diu.mil/latest/diu-presents-dual-use-university-accelerator-challenge?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*DIU Launches Dual-Use Academic Accelerator Challenge, 15 Openings for 12-Week Accelerator* ( https://www.diu.mil/latest/diu-presents-dual-use-university-accelerator-challenge?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nJUNE 25, 2025\r\nAre you a technologist looking to gain knowledge into the defense market, receive tailored mentorship, and funding support to scale your tech? Apply to be one of 15 individuals selected for a 12-week accelerator program and your chance to receive a share of $500,000 in prize awards as part of our Dual-Use Academic Accelerator Challenge. Applications are due June 25.\r\n\r\nLearn more ( https://www.diu.mil/latest/diu-presents-dual-use-university-accelerator-challenge?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n( https://www.diu.mil/latest/applications-for-immersive-commercial-acquisition-program-icap-fellowship?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*Opportunity for Contracting Officers: Immersive Commercial Acquisition Program Fellowship* ( https://www.diu.mil/latest/applications-for-immersive-commercial-acquisition-program-icap-fellowship?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nJULY 31, 2025\r\nHighly-qualified and motivated mid-to senior-level contracting officers are encouraged to apply to the Immersive Commercial Acquisition Program (ICAP) ( https://www.defense.gov/News/News-Stories/Article/Article/4204493/dod-announces-fy26-acquisition-program-fellowship-application-window/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) Fellowship a 12-month program offers hands-on experience with our commercial solutions opening process, OTAs, and provides valuable insight into the commercial market and the dynamics driving commercial organizations to engage with the government and DoD. Learn more about the ICAP program at the AMA session set for July 8 from 3-4:00 p.m. ET.\r\n\r\nLearn more ( https://www.diu.mil/latest/applications-for-immersive-commercial-acquisition-program-icap-fellowship?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*News*\r\n\r\n( https://www.diu.mil/latest/blue-uas-to-evolve-to-meet-broader-department-of-defense-needs?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*New Two-Tiered Blue UAS Model Launches, Identifying ‘Best in Breed’ Drone Capabilities for the Warfighter* ( https://www.diu.mil/latest/blue-uas-to-evolve-to-meet-broader-department-of-defense-needs?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nWe have announced changes to Blue UAS ( https://www.diu.mil/blue-uas?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) - providing a way for companies to verify their NDAA compliance as part of a two-tiered system and evolving Blue UAS to provide better support for solutions to DoD problem sets. The first change will allow us to leverage our multi-stakeholder partnership ( https://uscode.house.gov/view.xhtml?req=granuleid:USC-prelim-title10-section4127&num=0&edition=prelim&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) authority by selecting a number of capable entities to assess UAS platforms and produce reports as Recognized Assessors ( https://www.diu.mil/latest/diu-seeking-recognized-assessors-to-support-blue-uas-ndaa-compliance?utm_source=LinkedIn&utm_medium=Social&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ). Companies will also have the chance to be referred to as Blue UAS Select, when they have met both cybersecurity and NDAA requirements, through either DoD sponsorship or competitive selection, and that have received a DIU-generated or DIU-approved ATO.\r\n\r\nLearn more about becoming a Recognized Assessor here ( https://www.diu.mil/latest/diu-seeking-recognized-assessors-to-support-blue-uas-ndaa-compliance?utm_source=LinkedIn&utm_medium=Social&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ). Submissions close on Monday, June 16, 2025 at 11:59 p.m.\r\n\r\nLearn more about the changes coming to Blue UAS here ( https://www.diu.mil/latest/blue-uas-to-evolve-to-meet-broader-department-of-defense-needs?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ).\r\n\r\n( https://www.diu.mil/latest/diu-at-the-2025-scsp-ai-expo?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*DIU at the SCSP AI+ Expo* ( https://www.diu.mil/latest/diu-at-the-2025-scsp-ai-expo?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nMembers of our AI portfolio attended the annual SCSP AI+ Expo in Washington, D.C. The event served as a showcase for our new and ongoing projects, including Project G.I. ( https://www.diu.mil/work-with-us/submit-solution/PROJ00598?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) , our call for Recognized Assessors ( https://www.diu.mil/latest/diu-seeking-recognized-assessors-to-support-blue-uas-ndaa-compliance?utm_source=LinkedIn&utm_medium=Social&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) in support of Blue UAS ( https://www.diu.mil/blue-uas?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) , and our Digital OnRamp ( https://www.diu.mil/digitalonramp?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ).\r\n\r\nLearn more ( https://www.diu.mil/latest/diu-at-the-2025-scsp-ai-expo?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n( https://www.defense.gov/News/Releases/Release/Article/4192007/us-defense-innovation-unit-and-united-arab-emirates-partnering-to-enhance-defen/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*DIU, UAE Partnering to Enhance Defense-Tech Ecosystems* ( https://www.defense.gov/News/Releases/Release/Article/4192007/us-defense-innovation-unit-and-united-arab-emirates-partnering-to-enhance-defen/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nFollowing the Department\'s announcement to establish a comprehensive U.S.-UAE Major Defense Partnership, we signed a Memorandum of Understanding with the Tawazun Council of the UAE to strengthen defense cooperation and enhance mutual capacity for finding solutions to military requirements by developing and accessing cutting-edge technologies through non-traditional processes. This collaboration will deepen ties in defense innovation, facilitate joint capability development, and expand industrial and investment partnerships across both defense ecosystems — aligning with strategic efforts and investments outlined during the President\'s recent trip to the region.\r\n\r\nLearn more ( https://www.defense.gov/News/Releases/Release/Article/4192007/us-defense-innovation-unit-and-united-arab-emirates-partnering-to-enhance-defen/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n( https://www.diu.mil/latest/hybrid-space-communications-network-leverages-commercial-technology-enabling?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*Contracts Awarded: Hybrid Space Communications Network Leverages Commercial Technology, Enabling Faster Decision-Making on the Battlefield* ( https://www.diu.mil/latest/hybrid-space-communications-network-leverages-commercial-technology-enabling?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nThe Hybrid Space Architecture aims to integrate commercial, civil, and military space assets and support real-time decision making for the warfighter with selected companies to begin demonstrations with key mission partners in Summer 2025.\r\n\r\nLearn more ( https://www.diu.mil/latest/hybrid-space-communications-network-leverages-commercial-technology-enabling?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*D* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00591?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) *IU Data Digest*\r\n\r\nDIU works with companies across the country and around the world to lower barriers to entry to the DoD and broader defense marketplace. In FY 2024, 68% of contract awards went to small businesses.\r\n\r\nIf you were not the original recipient of this email and would like to sign up for the DIU Newsletter, please register here ( https://www.diu.mil/newsletter-sign-up?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ).\r\n\r\n*About the Defense Innovation Unit* ( http://diu.mil?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\nThe Defense Innovation Unit (DIU) strengthens national security by accelerating the adoption of commercial technology in the Department of Defense and bolstering our allied and national security innovation bases. DIU partners with organizations across the DoD to rapidly prototype and field dual-use capabilities that solve operational challenges at speed and scale. With offices in Silicon Valley, Boston, Austin, Chicago and Washington, D.C., DIU is the Department’s gateway to leading technology companies across the country.\r\n\r\n( https://www.facebook.com/defenseinnovationunitx/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) ( https://x.com/diu_x?lang=en&mx=2&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) ( https://www.linkedin.com/company/diux/posts/?feedview=all&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\nDefense Innovation Unit\r\n\r\n230 RT Jones Rd , Mountain View ,  \r\n\r\nUnsubscribe ( https://u18220755.ct.sendgrid.net/asm/unsubscribe/?user_id=18220755&data=UIEd6xld_bkTBfEpmcYa65EbHvLAtPFRWs1fmLuSlIpoMDAwdTAwMA5qj4y8WCbVNEYVoGg4iFUT_9eTXN0YcnllIOd5pZBY6MQTDGyVduoYPjIXCKb_W9I0Xe_8D8KSLoCV28K4TaZH-O4SNreJw99uwgbAWeoXxH_ysOKj122UtxRGcGaAq78pob8h4dp1ZG7-GfJWaaBESuoOPa-2j-Us0hQW-bxF48iddMbSHhPZy9OmZCX6221DmsM1301w35UMEWFrXUdYdDhdlHqUFm7Kjue7GyZiqyAwdJ9wdqlHxfWNnH1X5gX5twn37rGCgV6c4FytmMZmk9pMRdoD5M4rH6Z44SMcrNqjLklIO0zMSepR9nonqK7uaPM_j6zqKTZFXu1XyjsyNfDHKTOTO41jcAuoEuGyj1BlV4hPdkh_cZ8NX6HkiszyRjoK9LzPge_2vBe13NJwX1AFQttcViFDagu2SkyJyNAuQfV-CTxV-HsxR56Z2QyoiLqpoCQxjRtlaW-eJgmhFz36L5qba3qdjaXErmNnzqmxeXqGJ_bPY6sN-xZN3feqTk4NWRsTIolZ8ZAd1mTCCpr0LxpxIIpzZHDLg-GND7tjIO5qUs5hvzflrWUagJU4JgFHzVeRlUsLtTVv9jytheV7Bhs7lHPioxR9IoeaXStrTU5VjjfW4oM7Nn1HEPWKNVcq0EnfqhvcYB5U0L5PMzdztZ45qMbFLYtpWjWfLTvocipzuu6f2mPbR2ZTV79AMA_d26TDg_SMQEO2YbrnDVwah3YvaXEAITOV36lwkZkGuoBs41UEgZc3YLPSYdLXgj27vcYdSTS6N_tT4zGH-dg4-s-Jclxdw4HR1C0d_tmxJVthVnInVcUnSdrIw9X0qhw1DBcBAXdMNt0nzJXSP8BrMMNTYfvUiVQztPBKxQQn_2EEi9d4KjJnOOU27yxQp59di09VipVwg0JEwjUZePD7n1PjN-nIibNKUSyitSz7B34JjmYgP375DYV18GxALFMhzzR4CFkrXcOvB4mmj0sYDHTIDzbNdCXJ6vcG5YfGj3N0LiZCKlR9tCsOkuhtlq2EOy1eofXIn16_M-GsQS9rQyR2-rrUQr0ITZ9aHIEzGNPPJqJSujqCuh9ihd2sDjK2B1wWuPlcMdZJcMM= ) - Unsubscribe Preferences ( https://u18220755.ct.sendgrid.net/asm/?user_id=18220755&data=b2a-LNN38B8o1W1BMadxPse4tdwWlW0hMpJgdsj3z5NoMDAwdTAwMC2lukKCuB-pZYaxMg9UFLSamjfv4VXL6DBg0ay4hSSsvqnwgHPbdRQcmXTBp_yzSc5DGOerPjnf3TQAs__uXcx-I1jc91hq0hALVsADArBr-keESxKUXY_kaYE6Kn5p3bwHnTLg5N-nD0spD0ROGxlh1J15CwZn30PnxjaGjfNot45O7aQ7d3ewHXsmQGfaHKYmwpuERs9i2nKYkb2kR7vtkD-PY2gYCvO6WTB_vDm6237mY3KdWu0vASuMSM-qw_FKK0vA3k4JqEdBO9aOi-2w-tK2vPjL5BQp5SbgAEUZiJz0iSh7vdiYkx_MsLqtkpRMaNVRLiIJJE4ecv-MO39TuV927Wsi4D4yzTNyMZG99TE8ZdnsULhrS9gnx2vtHTzerarJ2hPt5A0MEy8MKbSBe69L8OOftDS0sbwTy61VheuRTZQugaQvKy36NHGDM7s2Mtukq-tJlyHQnlsYY_I0zCk_LD4-nZuJ8AZm5Tus0nsG4ftWc6HCDiEDUyUTgMN7YxisNx0S4xEWGr25luIY8V6iDCRjTvHbeplMKVzInkjfuOaUf-WOduRy6fiJUld5gYabWausizeMJedEOf_sob9EtfJMaTItFgVqtdgPbfWQ8EnIFoCxHisSSHOTOB23M4aGcWj11dWabqZPfr-TkDYQ0YeDYBqYeCmNDijgckDTFyDECPNVpXt7T6lAQgJto7GXlRbc9VoWt6Em4hmuSer9J26K86cHSvNPdhg_dMdK8LuFtYl8JZ--_hsxSZWTQ8v7WmJND2O8PQtENfFeaIkB2WeYQcwTT82CJym5gaAdGhBa4g_jgG2Ts3hZNEPDrFEORJgUfNPzxrmQ_rYR6ygVZs5SxZAYF332-TW96hPEiO7RtU6V1Rx3Jbcf2QlpqAk4lX2gHQLIGirU18ArZvEWkNWrOEcNGMBMAxQ7WQ549f-jUXh0xUG8_ANUjtUkL9U6LrdfWqSGZxDvMAlwy8iObSwOuMxHseOgn8yLUOtq9O4LE_Ah1FRfY9UZ9SRZcaWas8h3qsJwONx6BE65W_PoWFx6RgtlR0JTtecnnZ4y46GHY9hfhZglucxD2Q== )',0,0,0,0,0,0,'2025-06-16 18:31:28','2025-12-09 19:27:04','2025-12-09 19:27:04','2025-12-09 19:27:04',NULL,NULL,NULL),
(567,4,'<7mcd5wIORKOFS-1ewNFHcQ@geopod-ismtpd-30>',NULL,NULL,'New solicitations posted on DIU.mil','info@diu.mil','Defense Innovation Unit','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html data-editor-version=\"2\" class=\"sg-campaigns\" xmlns=\"http://www.w3.org/1999/xhtml\">\r\n    <head>\r\n      <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n      <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1\">\r\n      <!--[if !mso]><!-->\r\n      <meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge\">\r\n      <!--<![endif]-->\r\n      <!--[if (gte mso 9)|(IE)]>\r\n      <xml>\r\n        <o:OfficeDocumentSettings>\r\n          <o:AllowPNG/>\r\n          <o:PixelsPerInch>96</o:PixelsPerInch>\r\n        </o:OfficeDocumentSettings>\r\n      </xml>\r\n      <![endif]-->\r\n      <!--[if (gte mso 9)|(IE)]>\r\n  <style type=\"text/css\">\r\n    body {width: 600px;margin: 0 auto;}\r\n    table {border-collapse: collapse;}\r\n    table, td {mso-table-lspace: 0pt;mso-table-rspace: 0pt;}\r\n    img {-ms-interpolation-mode: bicubic;}\r\n  </style>\r\n<![endif]-->\r\n      <style type=\"text/css\">\r\n    body, p, div {\r\n      font-family: arial,helvetica,sans-serif;\r\n      font-size: 14px;\r\n    }\r\n    body {\r\n      color: #000000;\r\n    }\r\n    body a {\r\n      color: #2483c5;\r\n      text-decoration: none;\r\n    }\r\n    p { margin: 0; padding: 0; }\r\n    table.wrapper {\r\n      width:100% !important;\r\n      table-layout: fixed;\r\n      -webkit-font-smoothing: antialiased;\r\n      -webkit-text-size-adjust: 100%;\r\n      -moz-text-size-adjust: 100%;\r\n      -ms-text-size-adjust: 100%;\r\n    }\r\n    img.max-width {\r\n      max-width: 100% !important;\r\n    }\r\n    .column.of-2 {\r\n      width: 50%;\r\n    }\r\n    .column.of-3 {\r\n      width: 33.333%;\r\n    }\r\n    .column.of-4 {\r\n      width: 25%;\r\n    }\r\n    ul ul ul ul  {\r\n      list-style-type: disc !important;\r\n    }\r\n    ol ol {\r\n      list-style-type: lower-roman !important;\r\n    }\r\n    ol ol ol {\r\n      list-style-type: lower-latin !important;\r\n    }\r\n    ol ol ol ol {\r\n      list-style-type: decimal !important;\r\n    }\r\n    @media screen and (max-width:480px) {\r\n      .preheader .rightColumnContent,\r\n      .footer .rightColumnContent {\r\n        text-align: left !important;\r\n      }\r\n      .preheader .rightColumnContent div,\r\n      .preheader .rightColumnContent span,\r\n      .footer .rightColumnContent div,\r\n      .footer .rightColumnContent span {\r\n        text-align: left !important;\r\n      }\r\n      .preheader .rightColumnContent,\r\n      .preheader .leftColumnContent {\r\n        font-size: 80% !important;\r\n        padding: 5px 0;\r\n      }\r\n      table.wrapper-mobile {\r\n        width: 100% !important;\r\n        table-layout: fixed;\r\n      }\r\n      img.max-width {\r\n        height: auto !important;\r\n        max-width: 100% !important;\r\n      }\r\n      a.bulletproof-button {\r\n        display: block !important;\r\n        width: auto !important;\r\n        font-size: 80%;\r\n        padding-left: 0 !important;\r\n        padding-right: 0 !important;\r\n      }\r\n      .columns {\r\n        width: 100% !important;\r\n      }\r\n      .column {\r\n        display: block !important;\r\n        width: 100% !important;\r\n        padding-left: 0 !important;\r\n        padding-right: 0 !important;\r\n        margin-left: 0 !important;\r\n        margin-right: 0 !important;\r\n      }\r\n      .social-icon-column {\r\n        display: inline-block !important;\r\n      }\r\n    }\r\n  </style>\r\n      <!--user entered Head Start--><!--End Head user entered-->\r\n    </head>\r\n    <body>\r\n      <center class=\"wrapper\" data-link-color=\"#2483c5\" data-body-style=\"font-size:14px; font-family:arial,helvetica,sans-serif; color:#000000; background-color:#ffffff;\">\r\n        <div class=\"webkit\">\r\n          <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"wrapper\" bgcolor=\"#ffffff\">\r\n            <tr>\r\n              <td valign=\"top\" bgcolor=\"#ffffff\" width=\"100%\">\r\n                <table width=\"100%\" role=\"content-container\" class=\"outer\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                  <tr>\r\n                    <td width=\"100%\">\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                        <tr>\r\n                          <td>\r\n                            <!--[if mso]>\r\n    <center>\r\n    <table><tr><td width=\"600\">\r\n  <![endif]-->\r\n                                    <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:100%; max-width:600px;\" align=\"center\">\r\n                                      <tr>\r\n                                        <td role=\"modules-container\" style=\"padding:10px 18px 10px 18px; color:#000000; text-align:left;\" bgcolor=\"#ecf7ff\" width=\"100%\" align=\"left\"><table class=\"module preheader preheader-hide\" role=\"module\" data-type=\"preheader\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"display: none !important; mso-hide: all; visibility: hidden; opacity: 0; color: transparent; height: 0; width: 0;\">\r\n    <tr>\r\n      <td role=\"module-content\">\r\n        <p>New solicitations posted on DIU.mil</p>\r\n      </td>\r\n    </tr>\r\n  </table><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cfd0cb98-cae3-4099-bb9b-d518af9861a8\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:10px 18px 10px 18px;\" valign=\"top\" align=\"center\">\r\n          <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:25% !important; width:25%; height:auto !important;\" width=\"141\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/07c51c13-1be6-40d1-8dc7-789cd2686a09/1080x1080.png\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"divider\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"257cee2c-17b5-4325-a24f-cbc103c5619a.1.1.1.2.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 18px 0px 18px;\" role=\"module-content\" height=\"100%\" valign=\"top\" bgcolor=\"#d4eafb\">\r\n          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" height=\"3px\" style=\"line-height:3px; font-size:3px;\">\r\n            <tbody>\r\n              <tr>\r\n                <td style=\"padding:0px 0px 3px 0px;\" bgcolor=\"#2483C5\"></td>\r\n              </tr>\r\n            </tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"1b2e3e3f-7a4f-4ae9-858a-b364347e6b2b.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#FFFFFF\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"544\" style=\"width:544px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"12a76bcf-49d1-4289-8902-3dec45d9306a\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: center\"><span style=\"color: #454546; font-family: arial, helvetica, sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: center; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; background-color: rgb(255, 255, 255); font-size: 18px\">New Solicitation Announcement</span></div>\r\n<div style=\"font-family: inherit; text-align: center\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-alternates: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; background-color: rgb(255, 255, 255); color: #7c7e7f; font-family: arial, helvetica, sans-serif; font-size: 12px\">There are two new solicitations posted on our website. It is easy to respond with a 5-page paper or 15-slide slide deck. These limits are not requirements but are strongly recommended. Additional guidance about what we look for in a proposal is </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILh-2Bq1vMh5oO7-2Blz-2BUvdb0irmCIWB37BuouaFHZh9mjyapo40PS1xJmwqEWgArI7j9CRSrXpEexhWeQDXTY07pHfWNPHo7vlnb-2FhFx9HUTh4e9aYOlxqtqQGH9u1buGgAJ8BabEvBziVw-2FSowa6SMdLw-3DU5Jm_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSXI5SwU7uCFBIkV-2FSScneUSYC-2FCWhPa9HnqZZOr7gyJ9zZKZbaNdJuzT-2Fhr33NGZBItNnA4lYldpdcM8TjgJOXF8D-2BVfB-2FRMD8yMAdbZJW3zBMqS4-2B-2Fad1rtsAIzYzG8fSx0X-2FcCcPMvf5h-2BL9AjDwx7jAsiQ8vQK3OPLfWANPuDcOr3Cl5uuoHXsgFa7v3lqM0Ow6xX0MwYLk7ZROa-2FbPsDO50UtlgzZpBlGgXGWs6t0Utk3k2t8x16YqkNRsfHupCYBV0C0NyDj9Jzx90390Bv9zSG2ICLRmiZlFsizryn7fdLFOgQKCWPFHJsce6cg0f2NEkRTKltUVqNwFAsG3y4seVx6iBDXRgl-2FsOgrM4IW2kZj8ClFq5Fi6aSErzdOMM5FsoxkCbKg0AiiJZoQZm3yHI7IG8dhTyUK-2BA4KRQHwO2hPAD-2BfmENBfE3HHls7B9-2FY59lBXLZi2Eh-2BUrBb2qdSudJ-2FESVjnaL7Y0DiA00kv2oQ74TMYQkxNAfQZCiHxmwHkLVIdFFkayRQe-2B1FDUkRRFouUcfdqZcUmv7Wa9vOSvGJ-2FLNWlhqQu8fXEGJ-2BD591RX-2Bakiz05DlCh16DwFM88D1yjNDfW5lG9Am5utG8xHYgnMgqyvbW8uoGbn2vCkL3gCAsLNWbKZq55nUpG-2B1aP4UcVcWXb5mUmsELg02KQoUWYB-2BLHhau59s2zhTgocsGkPcs8APl9wXdeh4j3JpC5pso3w7kxxDvb7c0GrC7-2FK183FMZdnnai9aOu-2BrtfkmFiNK6DZFNTcZsf92mPST0RTZmuVu6pLw-2B-2Bw-2FknKc5idd78aciTV38NYhWR7dFQ-3D-3D\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-alternates: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; background-color: rgb(255, 255, 255); color: #01a1f1; font-family: arial, helvetica, sans-serif; font-size: 12px\"><u>available </u></span><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: none; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); color: #01a1f1; font-family: arial, helvetica, sans-serif; font-size: 12px\"><u>here</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-alternates: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; background-color: rgb(255, 255, 255); color: #7c7e7f; font-family: arial, helvetica, sans-serif; font-size: 12px\">. Our goal is to award an initial contract within 60-90 days of solicitation closure. Solicitation details and a link to the submission page are available below.</span><span style=\"font-family: arial, helvetica, sans-serif; font-size: 12px\"><br>\r\n</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"1b2e3e3f-7a4f-4ae9-858a-b364347e6b2b\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#FFFFFF\" data-distribution=\"2,1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"362\" style=\"width:362px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2bb08414-727d-4668-851a-a0e1e3708ed6\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 10px 18px 10px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: left\"><span style=\"color: #2483c5; font-family: arial, helvetica, sans-serif; font-size: 18px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline\">LCD – Low Collateral Defeat</span></div>\r\n<div style=\"font-family: inherit; text-align: left\"><br></div>\r\n<div style=\"font-family: inherit; text-align: start\"><span style=\"font-optical-sizing: auto; font-weight: 300; font-style: normal; font-variation-settings: &quot;slnt&quot; 0; white-space-collapse: collapse; text-wrap-mode: wrap; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; line-height: 1.4; margin-bottom: 1.8rem; margin-top: 0.5rem; max-width: 58rem; list-style-position: inherit; background-color: transparent; font-family: arial, helvetica, sans-serif; font-size: 12px; color: #7c7e7f\">The proliferation of highly accessible Unmanned Aerial Systems (UAS), or drones, by both commercial and state actors raises complex security challenges to critical assets in the U.S. and around the world. These UAS increasingly operate in densely populated areas, in air space congested by commercial and recreational air traffic, and in an electromagnetic environment dominated by lawful users. &nbsp;To meet the evolving challenges in countering UAS, the Department of Defense (DOD) must identify and employ Low Collateral Defeat (LCD) capabilities to protect high value assets from a range of threats including negligent, or uninformed drone operators -&nbsp; to the malicious use of numerous platforms, capable of higher speeds, and utilizing rapidly evolving communications domestically.&nbsp;</span></div>\r\n<div style=\"font-family: inherit; text-align: start\"><br></div>\r\n<div style=\"font-family: inherit; text-align: start\"><span style=\"font-optical-sizing: auto; font-weight: 300; font-style: normal; font-variation-settings: &quot;slnt&quot; 0; white-space-collapse: collapse; text-wrap-mode: wrap; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; line-height: 1.4; margin-bottom: 1.8rem; margin-top: 0.5rem; max-width: 58rem; list-style-position: inherit; background-color: transparent; font-family: arial, helvetica, sans-serif; font-size: 12px; color: #7c7e7f\">The DOD is seeking Low Collateral Defeat (LCD) solutions to counter group one and two small UAS in situations where friendly forces and/or civilians are in close proximity to the threat, or where local regulation does not allow for solutions that have broad range impact. </span><span style=\"font-size: 11pt; font-family: Lato, sans-serif; font-optical-sizing: auto; font-weight: 300; font-style: normal; font-variation-settings: &quot;slnt&quot; 0; white-space-collapse: collapse; text-wrap-mode: wrap; color: #000000; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; line-height: 1.4; margin-bottom: 1.8rem; margin-top: 0.5rem; max-width: 58rem; list-style-position: inherit; background-color: transparent\">&nbsp;</span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9o-2FlKB-2F7U18GyA9MvN6HtKuPFeM2-2BZPOjBN5vxPZUYnAPDRLZa2OPqRPx1qrC8udWPF-2FWtO-2FbwV-2FKib-2B3rQOO0upR28vkTMu0sGntc8Qo7SHqB_p_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSXI5SwU7uCFBIkV-2FSScneUSYC-2FCWhPa9HnqZZOr7gyJ9zZKZbaNdJuzT-2Fhr33NGZBItNnA4lYldpdcM8TjgJOXF8D-2BVfB-2FRMD8yMAdbZJW3zBMqS4-2B-2Fad1rtsAIzYzG8fSx0X-2FcCcPMvf5h-2BL9AjDwx7jAsiQ8vQK3OPLfWANPuDcOr3Cl5uuoHXsgFa7v3lqM0Ow6xX0MwYLk7ZROa-2FbPsDO50UtlgzZpBlGgXGWs6t0Utk3k2t8x16YqkNRsfHupCYBV0C0NyDj9Jzx90390Bv9zSG2ICLRmiZlFsizryn7fdLFOgQKCWPFHJsce6cg0f2NEkRTKltUVqNwFAsG3y4seVx6iBDXRgl-2FsOgrM4IW2kZj8ClFq5Fi6aSErzdOMM5FsoxkCbKg0AiiJZoQZm3yHI7IG8dhTyUK-2BA4KRQHwO2hPAD-2BfmENBfE3HHls7B9-2FY59lBXLZi2Eh-2BUrBb2qdSudJ-2FESVjnaL7Y0DiA00kv2oQ74TMYQkxNAfQZCiHxmwHkLVIdFFkayRQe-2B1FDUkRRFouUcfdqZcUmv7Wa9vOSvGJ-2FLNWlhqQu8fXEGJ-2BD591RX-2Bakiz05DlCh16DwFM88D1yjNDfW5lG9Am5utG8xHYgnMgqyvbW8uoGbn2vCkL3gCAsLNWbKZq55nUpG-2FPPKnygN1qSV12WV1MYmpN1kz-2BaNVUiI419JxR4Ej5DPHhpFhMawfQYp7nI9ATI0lY3ENVBtgiu6obHwqp0-2BHH6bZkbfZhEVwwVLZ1ItJDI04qBR0EVQzjQWbX4WhO7BGpeOJhaqa8Bc2mXtIrjk13gXCy8Q0-2BInsd8zUNXGuuDg-3D-3D\"><span style=\"background-color: transparent; font-weight: 400; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; font-variant-emoji: normal; text-decoration-line: none; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; vertical-align: baseline; white-space-collapse: preserve; text-wrap-mode: wrap; font-family: arial, helvetica, sans-serif; font-size: 12px; color: #2483c5\"><strong>Learn more</strong></span></a><span style=\"background-color: transparent; font-weight: 400; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; font-variant-emoji: normal; text-decoration-line: none; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; vertical-align: baseline; white-space-collapse: preserve; text-wrap-mode: wrap; font-family: arial, helvetica, sans-serif; font-size: 12px; color: #7c7e7f\"><strong>.</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"181\" style=\"width:181px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"4fa31850-56ff-4e7f-985c-2dd2d58a3cef\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>Submission Deadline:</strong></span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">19 May 2025</span><span style=\"font-family: arial, helvetica, sans-serif; font-size: 12px\"><br>\r\n</span><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">23:59:59 U.S. Eastern Time</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"module\" data-role=\"module-button\" data-type=\"button\" role=\"module\" style=\"table-layout:fixed;\" width=\"100%\" data-muid=\"621468ff-bdcc-4d55-8cd5-838691427b54\">\r\n      <tbody>\r\n        <tr>\r\n          <td align=\"left\" bgcolor=\"\" class=\"outer-td\" style=\"padding:0px 0px 0px 0px;\">\r\n            <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"wrapper-mobile\" style=\"text-align:center;\">\r\n              <tbody>\r\n                <tr>\r\n                <td align=\"center\" bgcolor=\"#2483C5\" class=\"inner-td\" style=\"border-radius:6px; font-size:16px; text-align:left; background-color:inherit;\">\r\n                  <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9o-2FlKB-2F7U18GyA9MvN6HtKuPFeM2-2BZPOjBN5vxPZUYnAPDRLZa2OPqRPx1qrC8udWPF-2FWtO-2FbwV-2FKib-2B3rQOO0upR28vkTMu0sGntc8Qo7SHqAhR_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSXI5SwU7uCFBIkV-2FSScneUSYC-2FCWhPa9HnqZZOr7gyJ9zZKZbaNdJuzT-2Fhr33NGZBItNnA4lYldpdcM8TjgJOXF8D-2BVfB-2FRMD8yMAdbZJW3zBMqS4-2B-2Fad1rtsAIzYzG8fSx0X-2FcCcPMvf5h-2BL9AjDwx7jAsiQ8vQK3OPLfWANPuDcOr3Cl5uuoHXsgFa7v3lqM0Ow6xX0MwYLk7ZROa-2FbPsDO50UtlgzZpBlGgXGWs6t0Utk3k2t8x16YqkNRsfHupCYBV0C0NyDj9Jzx90390Bv9zSG2ICLRmiZlFsizryn7fdLFOgQKCWPFHJsce6cg0f2NEkRTKltUVqNwFAsG3y4seVx6iBDXRgl-2FsOgrM4IW2kZj8ClFq5Fi6aSErzdOMM5FsoxkCbKg0AiiJZoQZm3yHI7IG8dhTyUK-2BA4KRQHwO2hPAD-2BfmENBfE3HHls7B9-2FY59lBXLZi2Eh-2BUrBb2qdSudJ-2FESVjnaL7Y0DiA00kv2oQ74TMYQkxNAfQZCiHxmwHkLVIdFFkayRQe-2B1FDUkRRFouUcfdqZcUmv7Wa9vOSvGJ-2FLNWlhqQu8fXEGJ-2BD591RX-2Bakiz05DlCh16DwFM88D1yjNDfW5lG9Am5utG8xHYgnMgqyvbW8uoGbn2vCkL3gCAsLNWbKZq55nUpG-2FnJ2ZC-2BWMRnK1C3YE4dZDIQzx-2F3Vs2aQKbsJMZg5irzTWYDwKAbCgr12rP7Q-2FL-2FXWM95WYGgH119cRnFY79DrzuT3WGqtXibI6JDsZepEyWwpoooShxnDXDfF-2B-2F5-2FwPVbDa584CyMAX-2Bnc2B4u8WeWgWb7h4LHUQgXUn2-2FZCpGDw-3D-3D\" style=\"background-color:#2483C5; border:1px solid #2483C5; border-color:#2483C5; border-radius:6px; border-width:1px; color:#ffffff; display:inline-block; font-size:12px; font-weight:bold; letter-spacing:0px; line-height:normal; padding:12px 18px 12px 18px; text-align:center; text-decoration:none; border-style:solid;\" target=\"_blank\">Learn more</a>\r\n                </td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n          </td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cab88a27-e54b-4835-97c3-d5329a1b1355\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 30px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#FFFFFF\" data-distribution=\"2,1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"362\" style=\"width:362px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2bb08414-727d-4668-851a-a0e1e3708ed6.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 10px 18px 10px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: left\"><span style=\"color: #2483c5; font-family: arial, helvetica, sans-serif; font-size: 18px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline\">FORGE: Foundry for Operational Readiness and Global Effects</span></div>\r\n<div style=\"font-family: inherit; text-align: left\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px; color: #7c7e7f\">The DOD is experiencing and projecting production bottlenecks for certain traditionally manufactured parts and platforms. This solicitation is seeking solutions to boost production capacity and remove production bottlenecks for cast metal parts used in high-performance aeronautical systems. The Government expects advanced manufacturing techniques that support high rate production, but is open to any novel methods which best achieve government goals such as, but not limited to:&nbsp;survivability, reliability, and affordability.</span><span style=\"font-optical-sizing: auto; font-weight: 300; font-style: normal; font-variation-settings: &quot;slnt&quot; 0; white-space-collapse: collapse; text-wrap-mode: wrap; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; line-height: 1.4; margin-bottom: 1.8rem; margin-top: 0.5rem; max-width: 58rem; list-style-position: inherit; background-color: transparent; font-family: arial, helvetica, sans-serif; font-size: 12px; color: #7c7e7f\"> </span><span style=\"font-size: 11pt; font-family: Lato, sans-serif; font-optical-sizing: auto; font-weight: 300; font-style: normal; font-variation-settings: &quot;slnt&quot; 0; white-space-collapse: collapse; text-wrap-mode: wrap; color: #000000; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; line-height: 1.4; margin-bottom: 1.8rem; margin-top: 0.5rem; max-width: 58rem; list-style-position: inherit; background-color: transparent\">&nbsp;</span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9tST9sk2GZYgKHQ1-2F0wBoh3R4I1R05sC-2BCRkPI3E6P0KP0JYKG74i0US-2F-2FdqDEJzz9gjCnHCg9sw3e0Mi-2FzRaL9Rfu6lo59KfU7y30gvH8-2BqJRzz_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSXI5SwU7uCFBIkV-2FSScneUSYC-2FCWhPa9HnqZZOr7gyJ9zZKZbaNdJuzT-2Fhr33NGZBItNnA4lYldpdcM8TjgJOXF8D-2BVfB-2FRMD8yMAdbZJW3zBMqS4-2B-2Fad1rtsAIzYzG8fSx0X-2FcCcPMvf5h-2BL9AjDwx7jAsiQ8vQK3OPLfWANPuDcOr3Cl5uuoHXsgFa7v3lqM0Ow6xX0MwYLk7ZROa-2FbPsDO50UtlgzZpBlGgXGWs6t0Utk3k2t8x16YqkNRsfHupCYBV0C0NyDj9Jzx90390Bv9zSG2ICLRmiZlFsizryn7fdLFOgQKCWPFHJsce6cg0f2NEkRTKltUVqNwFAsG3y4seVx6iBDXRgl-2FsOgrM4IW2kZj8ClFq5Fi6aSErzdOMM5FsoxkCbKg0AiiJZoQZm3yHI7IG8dhTyUK-2BA4KRQHwO2hPAD-2BfmENBfE3HHls7B9-2FY59lBXLZi2Eh-2BUrBb2qdSudJ-2FESVjnaL7Y0DiA00kv2oQ74TMYQkxNAfQZCiHxmwHkLVIdFFkayRQe-2B1FDUkRRFouUcfdqZcUmv7Wa9vOSvGJ-2FLNWlhqQu8fXEGJ-2BD591RX-2Bakiz05DlCh16DwFM88D1yjNDfW5lG9Am5utG8xHYgnMgqyvbW8uoGbn2vCkL3gCAsLNWbKZq55nUpG-2FhavQ78FcymihrCUeYsSMh-2Fk2-2F9srC3HLTJLAcpO6X14Mbabi2xUeR8jRSY-2F5XZS-2BTd6GJf2Q6R3B-2FFKcqqyrwLvkazcLCOt9mJbYgS2qEqlZlLbDp-2FwMkMyaXouvbITAONmgWeJs5AD86ZVh5HiIloZb5QX4zSOg67zXu0scxJQ-3D-3D\"><span style=\"background-color: transparent; font-weight: 400; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; font-variant-emoji: normal; text-decoration-line: none; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; vertical-align: baseline; white-space-collapse: preserve; text-wrap-mode: wrap; font-family: arial, helvetica, sans-serif; font-size: 12px; color: #2483c5\"><strong>Learn more</strong></span></a><span style=\"background-color: transparent; font-weight: 400; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; font-variant-emoji: normal; text-decoration-line: none; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; vertical-align: baseline; white-space-collapse: preserve; text-wrap-mode: wrap; font-family: arial, helvetica, sans-serif; font-size: 12px; color: #7c7e7f\"><strong>.</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"181\" style=\"width:181px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"4fa31850-56ff-4e7f-985c-2dd2d58a3cef.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>Submission Deadline:</strong></span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">26 May 2025</span><span style=\"font-family: arial, helvetica, sans-serif; font-size: 12px\"><br>\r\n</span><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">23:59:59 U.S. Eastern Time</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"module\" data-role=\"module-button\" data-type=\"button\" role=\"module\" style=\"table-layout:fixed;\" width=\"100%\" data-muid=\"621468ff-bdcc-4d55-8cd5-838691427b54.1\">\r\n      <tbody>\r\n        <tr>\r\n          <td align=\"left\" bgcolor=\"\" class=\"outer-td\" style=\"padding:0px 0px 0px 0px;\">\r\n            <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"wrapper-mobile\" style=\"text-align:center;\">\r\n              <tbody>\r\n                <tr>\r\n                <td align=\"center\" bgcolor=\"#2483C5\" class=\"inner-td\" style=\"border-radius:6px; font-size:16px; text-align:left; background-color:inherit;\">\r\n                  <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9tST9sk2GZYgKHQ1-2F0wBoh3R4I1R05sC-2BCRkPI3E6P0KP0JYKG74i0US-2F-2FdqDEJzz9gjCnHCg9sw3e0Mi-2FzRaL9Rfu6lo59KfU7y30gvH8-2Bqy70Q_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSXI5SwU7uCFBIkV-2FSScneUSYC-2FCWhPa9HnqZZOr7gyJ9zZKZbaNdJuzT-2Fhr33NGZBItNnA4lYldpdcM8TjgJOXF8D-2BVfB-2FRMD8yMAdbZJW3zBMqS4-2B-2Fad1rtsAIzYzG8fSx0X-2FcCcPMvf5h-2BL9AjDwx7jAsiQ8vQK3OPLfWANPuDcOr3Cl5uuoHXsgFa7v3lqM0Ow6xX0MwYLk7ZROa-2FbPsDO50UtlgzZpBlGgXGWs6t0Utk3k2t8x16YqkNRsfHupCYBV0C0NyDj9Jzx90390Bv9zSG2ICLRmiZlFsizryn7fdLFOgQKCWPFHJsce6cg0f2NEkRTKltUVqNwFAsG3y4seVx6iBDXRgl-2FsOgrM4IW2kZj8ClFq5Fi6aSErzdOMM5FsoxkCbKg0AiiJZoQZm3yHI7IG8dhTyUK-2BA4KRQHwO2hPAD-2BfmENBfE3HHls7B9-2FY59lBXLZi2Eh-2BUrBb2qdSudJ-2FESVjnaL7Y0DiA00kv2oQ74TMYQkxNAfQZCiHxmwHkLVIdFFkayRQe-2B1FDUkRRFouUcfdqZcUmv7Wa9vOSvGJ-2FLNWlhqQu8fXEGJ-2BD591RX-2Bakiz05DlCh16DwFM88D1yjNDfW5lG9Am5utG8xHYgnMgqyvbW8uoGbn2vCkL3gCAsLNWbKZq55nUpG95PAtyLI70lzroZoiQkyBnG6qYBc9w1an3IlsvGycXBhCeY-2BdxBXRkU1thziUpSCvilym7Aff4NTiIQrjncsWapaAG-2BOcggv7REDHFqwg8cE7Rpo6sqi89illhlwTnIxniZ0yB0GFl-2FUC0iU-2BmJNK9QHLgcKMmgitSP9fCrI5aGw-3D-3D\" style=\"background-color:#2483C5; border:1px solid #2483C5; border-color:#2483C5; border-radius:6px; border-width:1px; color:#ffffff; display:inline-block; font-size:12px; font-weight:bold; letter-spacing:0px; line-height:normal; padding:12px 18px 12px 18px; text-align:center; text-decoration:none; border-style:solid;\" target=\"_blank\">Learn more</a>\r\n                </td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n          </td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"01cfd941-691e-4504-af90-9ba914a69b55\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:10px 18px 10px 18px;\" valign=\"top\" align=\"center\">\r\n          <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:25% !important; width:25%; height:auto !important;\" width=\"141\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/07c51c13-1be6-40d1-8dc7-789cd2686a09/1080x1080.png\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"6cf433f1-53d9-4818-89de-d72eccb7d837\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 10px 18px 10px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"line-height: inherit; color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-line: inherit; text-decoration-thickness: inherit; text-decoration-style: inherit; text-decoration-color: inherit; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>About DIU:&nbsp;</strong></span><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">The Defense Innovation Unit (DIU) strengthens our national security by accelerating the adoption of commercial technology throughout the military and growing the national security innovation base. DIU partners with organizations across the Department of Defense (DoD) and with&nbsp;nontraditional companies to facilitate prototype projects and field advanced commercial solutions that address national security challenges. DIU leverages Other Transaction (OT) authority to award Prototype agreements, which, if successful, may result in the direct award of a follow-on Production agreement without the use of further competitive procedures. (DIU is not an OT consortium; DIU executes direct award OTs).&nbsp;</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; background-color: rgb(255, 255, 255); font-size: 12px\">You are receiving this email because you have a contact at DIU or you signed up to our mailing list. If you would like to be removed from our email list, please click the unsubscribe link below.</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"6ac32cba-50e8-406c-8061-dd0135aebb60\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 30px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"module\" data-role=\"module-button\" data-type=\"button\" role=\"module\" style=\"table-layout:fixed;\" width=\"100%\" data-muid=\"bf716dbe-018d-4f2d-bf15-b5b6db124e86\">\r\n      <tbody>\r\n        <tr>\r\n          <td align=\"center\" bgcolor=\"\" class=\"outer-td\" style=\"padding:0px 0px 0px 0px;\">\r\n            <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"wrapper-mobile\" style=\"text-align:center;\">\r\n              <tbody>\r\n                <tr>\r\n                <td align=\"center\" bgcolor=\"#2483C5\" class=\"inner-td\" style=\"border-radius:6px; font-size:16px; text-align:center; background-color:inherit;\">\r\n                  <a href=\"mailto:info@diu.mil\" style=\"background-color:#2483C5; border:1px solid #2483C5; border-color:#2483C5; border-radius:6px; border-width:1px; color:#ffffff; display:inline-block; font-size:12px; font-weight:bold; letter-spacing:0px; line-height:normal; padding:18px 18px 12px 18px; text-align:center; text-decoration:none; border-style:solid; font-family:arial,helvetica,sans-serif;\" target=\"_blank\">Contact Us</a>\r\n                </td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n          </td>\r\n        </tr>\r\n      </tbody>\r\n    </table><div data-role=\"module-unsubscribe\" class=\"module\" role=\"module\" data-type=\"unsubscribe\" style=\"color:#444444; font-size:12px; line-height:20px; padding:16px 16px 16px 16px; text-align:center;\" data-muid=\"037d4496-257f-4255-8897-cb3cce530456\"><div class=\"Unsubscribe--addressLine\"></div><p style=\"font-size:12px; line-height:20px;\"><a class=\"Unsubscribe--unsubscribeLink\" href=\"https://u18220755.ct.sendgrid.net/asm/unsubscribe/?user_id=18220755&amp;data=tCFKHwY_0USTQAzc-cB8QqFTkYN8Uruk-wTwsTIZ1NBoMDAwdTAwMFTcRl3clKM113U5Dp2F95QX-iJd7XCkQjl3D-NszJFKPmRqCZmZ0uI5Jmxa8ihrr3JWzylkQpY17EJSUr4b5tk-bLZXlD1Zeud6lW_tiZPfbER1I7tFCaeirJsnmgMVoZQ-ZWbeG0piWAjD1_Ppovzo2ITYvbkf0OchOqbP78mD0cgDP7uE-rtZqqxs_bqATVFb_C0bdOkgkrv0SgBBtGWmQFjTp3tcShdHFcII_E1ZB_sbSKnPIwPmxmWLn5hmCBq8K1EOfsaIuTopth8cEq222yddi9YP0E8GtT5Dsa2hzZU_vY8YT14_SfOcnq3go2RndDwmtZAbjR40zopvxovnT1rbyImQ3pI4R4NakO21lqIbpJcvVTlgaa7OjTYIKiLlhnCxSkF_i8UwsaDQ5T273XNfn7p5aNDOm6xFgnw6jsC1FQIH_m14T4iXcGiyAe9naMZyQphjJfav8JVpA2gQwTS6M4ep7KjtxrtYdy2PB1iH_Qpj1HTNVeb3dcgmaQTXmGd_recL0H07XglZfzKP8quFMuUdJE8qIBUWyy3Q08Z14h__WBo4pOOsBbnMojI2rpbrfQUKDCgxSIi4REPg0H5d6INHbI9Yom0vy6oLv9yXyyOg2-i0JtPjSu1FcV56JSzqLTpjtmpajZu5iGFYd-fwesDrsIeZvELqy4zCxpcsOMjlloX32kSdLMDAzb9Yggva4114Ju7pECYneYdSK86Oap19cyV2ve7mRB5AOw5i0FBFqCpUudeDS724F5mxxBIj-hrliAFq6Bf9x777-EUCE8KdJ8KYPrj515LuPmylnZYQPMiWTAI4g6MsoyML230iU61UAvQofBQHQ3-f2oW9cTiqh3lpRiwFN-fkN4LfAUkPwcxEJnhEgOkVItZ3RwcphkFDAufuH4HPk_NxTgk5CxHwhZZBnYyQ3PZDjc7lQ9B07ZtH2EQDIrgYGIDZ-C-L5ky8N1p-RzQYc3018HxHgwzhWG0FwOsVHet3kUIpZqVo3Yem78hrA7aV5andYenMrIe67D6oEjPbHqref6qW9VP5_g_wrdJsbPW3xyGCtNJ_kjeims4jXZ5BpjsC0xO1_u72oWGSHFsoXw4t8Chp6nOf2r3Z4kJ4l8i1\" target=\"_blank\" style=\"\">Unsubscribe</a> - <a href=\"https://u18220755.ct.sendgrid.net/asm/?user_id=18220755&amp;data=9cdo0H1qiOM2WADDA0VWOLpLoiJQRFaalo_VVHdmFxtoMDAwdTAwMHE6Oe1qaTEZ98xXv2fEayj_EqibJw2hU-Pu-HtqFK9AlMsURkm9mzQidGzcL5V28a4u-ek1Fu02C-iEGzEiaqSHrT43A8UZ2ty1sUmlktihF8B2jMKO-Ab-9iRrosmx6Fi9QQhS3k9LAV6SvfO-1y0yqSNVYi-hxtMTp8xZIfyL7OBIqNnhLBomEFE1bVmKhop6YiMNN55WK8D_d9g0JTkKHVVa6P8s_C0-DmrydIDtMz8ZCx796saLR9hsIA0TKusx760_fZoYSkjBD_U6ubyIB2q4unfGM_lF8B1dqMfe-Gzm6A077chbelw1ZEeRcbt5jGWEYLg2Di-T-uOWxl1nRTOQSaQSE7Mx1ne_HZKcMYikv_xvjOi9ORlSHxc-dpfOhIP0tMCuDChTBW9b3C_pcNwibJ48K_MfGk9QKaDCc-HEy02aep-qJnn2DSmBLm4jPARHfCVNtz7iX9t-nSbGCb4JRtIrYaRM7b4a41oC3mC7lM_QllwEiFElzUthEJmi--tOAI_iy2lsXDrXZ1xIfhVdI8_MO7MjG46wEfZEq6Fkb4Pnbg1EV7HxycEavIutAvQdcxSY6yZVUObC3BH_g1okghP4wWMhOf6dP6rxb6eOqvTUbJU658w6R5HtJEv6lhh4YdyaAiIy9QMQsyvqQCyHJ8fb2z8UrnFBCsMvwjMVVjmmFoGGq2Ci7l8NOJh4w9mRmmSEtsHU3SQunjYmqwc2K2-HgvyjPD2eOOM87wS2gySRijNGECF8d4Dhs7nU9YTr5JvP8ZJvCCNKV3bIhYZntPNdX25YF-IeGQJFruRL_UNeFv9c432CvT0t7-pYdcu-cCGAJ3qWkLQwVpQ6XT53XVVJjkCoYLD5S0O9XNlTaEbZNQJ16wCdLdc1IryJcjwCECViRNTIvPVmwg6hhRhuo1i3C02-mN2v1-uYq704ZSXznGzBWwOFX8zYTdALJTYkX_HVr_U_IkkRNHL8OKLZaZaY-yMdLG_EmzNb_sx9RvvsDoH_a2NPNl2Vl4bgMsEYCwcyY_VrNFyUWBcAwL5NyiY8diJXqCPFdYUWwIoQGveJKlEZlMJoo3z0fjODXQ2bBp5ZUHdhaqBQKzwh3yvs4Et-dpjcPAbvoorv\" target=\"_blank\" class=\"Unsubscribe--unsubscribePreferences\" style=\"\">Unsubscribe Preferences</a></p></div></td>\r\n                                      </tr>\r\n                                    </table>\r\n                                    <!--[if mso]>\r\n                                  </td>\r\n                                </tr>\r\n                              </table>\r\n                            </center>\r\n                            <![endif]-->\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </div>\r\n      </center>\r\n    <img src=\"https://u18220755.ct.sendgrid.net/wf/open?upn=u001.D6mC8SG6iITw2GIzPjAtw7SLAuEgZhcE7OQx5Ie2paKW9TCJvoy3Eh7ani-2FmDfzWZ4Aty9oKYAg8U-2BpXv81mmaeCBsQtTAdxlXqbnsXBCjn-2FAW10qJfypmIUPoD1-2B38y4LSjEaiwyNZHtEyZD-2BNUDQzWezVlF0sdi2tX72ORR4dvfXQ2ybVZqRwF-2FtG8w4qgtVzcLlVgar-2BGkU1Z6nckBo-2FlxuKJOSnlH6-2FwrBoOHuDaK6kKL-2BtZU4MkkOpPbKavN32n1KO-2Bbkkg4plLh18k5bjqiKvLMKtXJWDIjAwexVJbaGWKUN-2Ft6gGQbotLM7z9Olmz5mexSq76J9rxr-2Bcfpjjb0ffrkzkopKzrl8fdc3ZBGQNyM1spDgh3hzSJZvZygiqKcVw46iflRAjjhrqefsHv-2Br0pGcDgen0lDK6eJzwozSHLgk4U14-2FcGN-2BjeywrRhQ4A71V-2BVoycnPVRR2IqUQzU94qaLIe-2F-2BqqJXTnxVVREJhJQVYbd2l9-2BD-2FhBDfbguwECwegglJK1kmb5WohUmM-2BEvnB-2F0CkSgMdkDFLBi6b8jZ6F1p5KLfqCipQtqeJpZ7B7-2Bf2WC3zIHaqJ6SB0dBXSPJJcN5zttgSSu6RItnFT26MeNd-2Ba04rOGpdxNgUQMHDqtK5SNXPle5Wr62R0aexDk8WmdKuoM8iIuSZh7WnqDwuVFrkpOmFyL4oqz-2BssX5lzHqGzLl-2FIVl3kJCBcQOQZWXEOCG4qwNZPaSDamBNUFDyVX4n7jweuKi32lpNT3fsYwHufa80lCpfuLYx2XUBM6dpqQ42a8EAG0e4cJa5KOHSxbHzJlSu90z-2FSfU-2FlKB4UJUpNUVy6HEQdutqzh4dwdCJhbUgsMgcRJv-2FrMUy6R02gBYocRT1NtzMC700Nvv9P1vWGnuzD-2F-2BccXH6UL2kbAHPF3-2BrwfQ46fkcxIoy0XfcwwBNYEwFoUKvo2Knjw4Ebd1xP3S7vnasa3Ct-2FmOZoFZhW9MNoU4jObfqY3w-3D\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/></body>\r\n  </html>','New solicitations posted on DIU.mil\r\n\r\nNew Solicitation Announcement\r\n\r\nThere are two new solicitations posted on our website. It is easy to respond with a 5-page paper or 15-slide slide deck. These limits are not requirements but are strongly recommended. Additional guidance about what we look for in a proposal is available here ( https://www.diu.mil/solution-brief-guidance?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ). Our goal is to award an initial contract within 60-90 days of solicitation closure. Solicitation details and a link to the submission page are available below.\r\n\r\nLCD – Low Collateral Defeat\r\n\r\nThe proliferation of highly accessible Unmanned Aerial Systems (UAS), or drones, by both commercial and state actors raises complex security challenges to critical assets in the U.S. and around the world. These UAS increasingly operate in densely populated areas, in air space congested by commercial and recreational air traffic, and in an electromagnetic environment dominated by lawful users.  To meet the evolving challenges in countering UAS, the Department of Defense (DOD) must identify and employ Low Collateral Defeat (LCD) capabilities to protect high value assets from a range of threats including negligent, or uninformed drone operators -  to the malicious use of numerous platforms, capable of higher speeds, and utilizing rapidly evolving communications domestically.\r\n\r\nThe DOD is seeking Low Collateral Defeat (LCD) solutions to counter group one and two small UAS in situations where friendly forces and/or civilians are in close proximity to the threat, or where local regulation does not allow for solutions that have broad range impact. *Learn more* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00597?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) *.*\r\n\r\n*Submission Deadline:*\r\n19 May 2025\r\n23:59:59 U.S. Eastern Time\r\n\r\nLearn more ( https://www.diu.mil/work-with-us/submit-solution/PROJ00597?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\nFORGE: Foundry for Operational Readiness and Global Effects\r\n\r\nThe DOD is experiencing and projecting production bottlenecks for certain traditionally manufactured parts and platforms. This solicitation is seeking solutions to boost production capacity and remove production bottlenecks for cast metal parts used in high-performance aeronautical systems. The Government expects advanced manufacturing techniques that support high rate production, but is open to any novel methods which best achieve government goals such as, but not limited to: survivability, reliability, and affordability. *Learn more* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00594?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) *.*\r\n\r\n*Submission Deadline:*\r\n26 May 2025\r\n23:59:59 U.S. Eastern Time\r\n\r\nLearn more ( https://www.diu.mil/work-with-us/submit-solution/PROJ00594?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*About DIU:* The Defense Innovation Unit (DIU) strengthens our national security by accelerating the adoption of commercial technology throughout the military and growing the national security innovation base. DIU partners with organizations across the Department of Defense (DoD) and with nontraditional companies to facilitate prototype projects and field advanced commercial solutions that address national security challenges. DIU leverages Other Transaction (OT) authority to award Prototype agreements, which, if successful, may result in the direct award of a follow-on Production agreement without the use of further competitive procedures. (DIU is not an OT consortium; DIU executes direct award OTs).\r\n\r\nYou are receiving this email because you have a contact at DIU or you signed up to our mailing list. If you would like to be removed from our email list, please click the unsubscribe link below.\r\n\r\nContact Us ( info@diu.mil )\r\n\r\nUnsubscribe ( https://u18220755.ct.sendgrid.net/asm/unsubscribe/?user_id=18220755&data=tCFKHwY_0USTQAzc-cB8QqFTkYN8Uruk-wTwsTIZ1NBoMDAwdTAwMFTcRl3clKM113U5Dp2F95QX-iJd7XCkQjl3D-NszJFKPmRqCZmZ0uI5Jmxa8ihrr3JWzylkQpY17EJSUr4b5tk-bLZXlD1Zeud6lW_tiZPfbER1I7tFCaeirJsnmgMVoZQ-ZWbeG0piWAjD1_Ppovzo2ITYvbkf0OchOqbP78mD0cgDP7uE-rtZqqxs_bqATVFb_C0bdOkgkrv0SgBBtGWmQFjTp3tcShdHFcII_E1ZB_sbSKnPIwPmxmWLn5hmCBq8K1EOfsaIuTopth8cEq222yddi9YP0E8GtT5Dsa2hzZU_vY8YT14_SfOcnq3go2RndDwmtZAbjR40zopvxovnT1rbyImQ3pI4R4NakO21lqIbpJcvVTlgaa7OjTYIKiLlhnCxSkF_i8UwsaDQ5T273XNfn7p5aNDOm6xFgnw6jsC1FQIH_m14T4iXcGiyAe9naMZyQphjJfav8JVpA2gQwTS6M4ep7KjtxrtYdy2PB1iH_Qpj1HTNVeb3dcgmaQTXmGd_recL0H07XglZfzKP8quFMuUdJE8qIBUWyy3Q08Z14h__WBo4pOOsBbnMojI2rpbrfQUKDCgxSIi4REPg0H5d6INHbI9Yom0vy6oLv9yXyyOg2-i0JtPjSu1FcV56JSzqLTpjtmpajZu5iGFYd-fwesDrsIeZvELqy4zCxpcsOMjlloX32kSdLMDAzb9Yggva4114Ju7pECYneYdSK86Oap19cyV2ve7mRB5AOw5i0FBFqCpUudeDS724F5mxxBIj-hrliAFq6Bf9x777-EUCE8KdJ8KYPrj515LuPmylnZYQPMiWTAI4g6MsoyML230iU61UAvQofBQHQ3-f2oW9cTiqh3lpRiwFN-fkN4LfAUkPwcxEJnhEgOkVItZ3RwcphkFDAufuH4HPk_NxTgk5CxHwhZZBnYyQ3PZDjc7lQ9B07ZtH2EQDIrgYGIDZ-C-L5ky8N1p-RzQYc3018HxHgwzhWG0FwOsVHet3kUIpZqVo3Yem78hrA7aV5andYenMrIe67D6oEjPbHqref6qW9VP5_g_wrdJsbPW3xyGCtNJ_kjeims4jXZ5BpjsC0xO1_u72oWGSHFsoXw4t8Chp6nOf2r3Z4kJ4l8i1 ) - Unsubscribe Preferences ( https://u18220755.ct.sendgrid.net/asm/?user_id=18220755&data=9cdo0H1qiOM2WADDA0VWOLpLoiJQRFaalo_VVHdmFxtoMDAwdTAwMHE6Oe1qaTEZ98xXv2fEayj_EqibJw2hU-Pu-HtqFK9AlMsURkm9mzQidGzcL5V28a4u-ek1Fu02C-iEGzEiaqSHrT43A8UZ2ty1sUmlktihF8B2jMKO-Ab-9iRrosmx6Fi9QQhS3k9LAV6SvfO-1y0yqSNVYi-hxtMTp8xZIfyL7OBIqNnhLBomEFE1bVmKhop6YiMNN55WK8D_d9g0JTkKHVVa6P8s_C0-DmrydIDtMz8ZCx796saLR9hsIA0TKusx760_fZoYSkjBD_U6ubyIB2q4unfGM_lF8B1dqMfe-Gzm6A077chbelw1ZEeRcbt5jGWEYLg2Di-T-uOWxl1nRTOQSaQSE7Mx1ne_HZKcMYikv_xvjOi9ORlSHxc-dpfOhIP0tMCuDChTBW9b3C_pcNwibJ48K_MfGk9QKaDCc-HEy02aep-qJnn2DSmBLm4jPARHfCVNtz7iX9t-nSbGCb4JRtIrYaRM7b4a41oC3mC7lM_QllwEiFElzUthEJmi--tOAI_iy2lsXDrXZ1xIfhVdI8_MO7MjG46wEfZEq6Fkb4Pnbg1EV7HxycEavIutAvQdcxSY6yZVUObC3BH_g1okghP4wWMhOf6dP6rxb6eOqvTUbJU658w6R5HtJEv6lhh4YdyaAiIy9QMQsyvqQCyHJ8fb2z8UrnFBCsMvwjMVVjmmFoGGq2Ci7l8NOJh4w9mRmmSEtsHU3SQunjYmqwc2K2-HgvyjPD2eOOM87wS2gySRijNGECF8d4Dhs7nU9YTr5JvP8ZJvCCNKV3bIhYZntPNdX25YF-IeGQJFruRL_UNeFv9c432CvT0t7-pYdcu-cCGAJ3qWkLQwVpQ6XT53XVVJjkCoYLD5S0O9XNlTaEbZNQJ16wCdLdc1IryJcjwCECViRNTIvPVmwg6hhRhuo1i3C02-mN2v1-uYq704ZSXznGzBWwOFX8zYTdALJTYkX_HVr_U_IkkRNHL8OKLZaZaY-yMdLG_EmzNb_sx9RvvsDoH_a2NPNl2Vl4bgMsEYCwcyY_VrNFyUWBcAwL5NyiY8diJXqCPFdYUWwIoQGveJKlEZlMJoo3z0fjODXQ2bBp5ZUHdhaqBQKzwh3yvs4Et-dpjcPAbvoorv )',0,0,0,0,0,0,'2025-05-05 22:19:14','2025-12-09 19:27:04','2025-12-09 19:27:04','2025-12-09 19:27:04',NULL,NULL,NULL),
(568,4,'<6bq14MnNTo6uCifIIjwbqw@geopod-ismtpd-20>',NULL,NULL,'New Solicitation Posted on DIU.mil','info@diu.mil','Defense Innovation Unit','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html data-editor-version=\"2\" class=\"sg-campaigns\" xmlns=\"http://www.w3.org/1999/xhtml\">\r\n    <head>\r\n      <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n      <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1\">\r\n      <!--[if !mso]><!-->\r\n      <meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge\">\r\n      <!--<![endif]-->\r\n      <!--[if (gte mso 9)|(IE)]>\r\n      <xml>\r\n        <o:OfficeDocumentSettings>\r\n          <o:AllowPNG/>\r\n          <o:PixelsPerInch>96</o:PixelsPerInch>\r\n        </o:OfficeDocumentSettings>\r\n      </xml>\r\n      <![endif]-->\r\n      <!--[if (gte mso 9)|(IE)]>\r\n  <style type=\"text/css\">\r\n    body {width: 600px;margin: 0 auto;}\r\n    table {border-collapse: collapse;}\r\n    table, td {mso-table-lspace: 0pt;mso-table-rspace: 0pt;}\r\n    img {-ms-interpolation-mode: bicubic;}\r\n  </style>\r\n<![endif]-->\r\n      <style type=\"text/css\">\r\n    body, p, div {\r\n      font-family: arial,helvetica,sans-serif;\r\n      font-size: 14px;\r\n    }\r\n    body {\r\n      color: #000000;\r\n    }\r\n    body a {\r\n      color: #2483c5;\r\n      text-decoration: none;\r\n    }\r\n    p { margin: 0; padding: 0; }\r\n    table.wrapper {\r\n      width:100% !important;\r\n      table-layout: fixed;\r\n      -webkit-font-smoothing: antialiased;\r\n      -webkit-text-size-adjust: 100%;\r\n      -moz-text-size-adjust: 100%;\r\n      -ms-text-size-adjust: 100%;\r\n    }\r\n    img.max-width {\r\n      max-width: 100% !important;\r\n    }\r\n    .column.of-2 {\r\n      width: 50%;\r\n    }\r\n    .column.of-3 {\r\n      width: 33.333%;\r\n    }\r\n    .column.of-4 {\r\n      width: 25%;\r\n    }\r\n    ul ul ul ul  {\r\n      list-style-type: disc !important;\r\n    }\r\n    ol ol {\r\n      list-style-type: lower-roman !important;\r\n    }\r\n    ol ol ol {\r\n      list-style-type: lower-latin !important;\r\n    }\r\n    ol ol ol ol {\r\n      list-style-type: decimal !important;\r\n    }\r\n    @media screen and (max-width:480px) {\r\n      .preheader .rightColumnContent,\r\n      .footer .rightColumnContent {\r\n        text-align: left !important;\r\n      }\r\n      .preheader .rightColumnContent div,\r\n      .preheader .rightColumnContent span,\r\n      .footer .rightColumnContent div,\r\n      .footer .rightColumnContent span {\r\n        text-align: left !important;\r\n      }\r\n      .preheader .rightColumnContent,\r\n      .preheader .leftColumnContent {\r\n        font-size: 80% !important;\r\n        padding: 5px 0;\r\n      }\r\n      table.wrapper-mobile {\r\n        width: 100% !important;\r\n        table-layout: fixed;\r\n      }\r\n      img.max-width {\r\n        height: auto !important;\r\n        max-width: 100% !important;\r\n      }\r\n      a.bulletproof-button {\r\n        display: block !important;\r\n        width: auto !important;\r\n        font-size: 80%;\r\n        padding-left: 0 !important;\r\n        padding-right: 0 !important;\r\n      }\r\n      .columns {\r\n        width: 100% !important;\r\n      }\r\n      .column {\r\n        display: block !important;\r\n        width: 100% !important;\r\n        padding-left: 0 !important;\r\n        padding-right: 0 !important;\r\n        margin-left: 0 !important;\r\n        margin-right: 0 !important;\r\n      }\r\n      .social-icon-column {\r\n        display: inline-block !important;\r\n      }\r\n    }\r\n  </style>\r\n      <!--user entered Head Start--><!--End Head user entered-->\r\n    </head>\r\n    <body>\r\n      <center class=\"wrapper\" data-link-color=\"#2483c5\" data-body-style=\"font-size:14px; font-family:arial,helvetica,sans-serif; color:#000000; background-color:#ffffff;\">\r\n        <div class=\"webkit\">\r\n          <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"wrapper\" bgcolor=\"#ffffff\">\r\n            <tr>\r\n              <td valign=\"top\" bgcolor=\"#ffffff\" width=\"100%\">\r\n                <table width=\"100%\" role=\"content-container\" class=\"outer\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                  <tr>\r\n                    <td width=\"100%\">\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                        <tr>\r\n                          <td>\r\n                            <!--[if mso]>\r\n    <center>\r\n    <table><tr><td width=\"600\">\r\n  <![endif]-->\r\n                                    <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:100%; max-width:600px;\" align=\"center\">\r\n                                      <tr>\r\n                                        <td role=\"modules-container\" style=\"padding:10px 18px 10px 18px; color:#000000; text-align:left;\" bgcolor=\"#ecf7ff\" width=\"100%\" align=\"left\"><table class=\"module preheader preheader-hide\" role=\"module\" data-type=\"preheader\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"display: none !important; mso-hide: all; visibility: hidden; opacity: 0; color: transparent; height: 0; width: 0;\">\r\n    <tr>\r\n      <td role=\"module-content\">\r\n        <p>The U.S. Navy seeks a compact, lightweight, and highly efficient power generation system.</p>\r\n      </td>\r\n    </tr>\r\n  </table><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cfd0cb98-cae3-4099-bb9b-d518af9861a8\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:10px 18px 10px 18px;\" valign=\"top\" align=\"center\">\r\n          <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:25% !important; width:25%; height:auto !important;\" width=\"141\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/07c51c13-1be6-40d1-8dc7-789cd2686a09/1080x1080.png\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"divider\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"257cee2c-17b5-4325-a24f-cbc103c5619a.1.1.1.2.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 18px 0px 18px;\" role=\"module-content\" height=\"100%\" valign=\"top\" bgcolor=\"#d4eafb\">\r\n          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" height=\"3px\" style=\"line-height:3px; font-size:3px;\">\r\n            <tbody>\r\n              <tr>\r\n                <td style=\"padding:0px 0px 3px 0px;\" bgcolor=\"#2483C5\"></td>\r\n              </tr>\r\n            </tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"1b2e3e3f-7a4f-4ae9-858a-b364347e6b2b.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#FFFFFF\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"544\" style=\"width:544px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"12a76bcf-49d1-4289-8902-3dec45d9306a\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: center\"><span style=\"color: #454546; font-family: arial, helvetica, sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: center; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; background-color: rgb(255, 255, 255); font-size: 18px\">New Solicitation Announcement</span></div>\r\n<div style=\"font-family: inherit; text-align: center\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-alternates: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; background-color: rgb(255, 255, 255); color: #7c7e7f; font-family: arial, helvetica, sans-serif; font-size: 12px\">There is a new solicitation posted on our website. It is easy to respond with a 5-page paper or 15-slide slide deck. These limits are not requirements but are strongly recommended. Additional guidance about what we look for in a proposal is </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILh-2Bq1vMh5oO7-2Blz-2BUvdb0irmCIWB37BuouaFHZh9mjyapo40PS1xJmwqEWgArI7j9CRSrXpEexhWeQDXTY07pHfWNPHo7vlnb-2FhFx9HUTh4e9aYOlxqtqQGH9u1buGgAJ8BabEvBziVw-2FSowa6SMdLw-3D2e32_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSSRqsrEFxOKJ7M4KO9HFvNzCY1FH6umGWinuvvtnsxZqTO0KD2F3aRORhlU48AHD5kLSC6-2BWwavWNIqrrzSeLIC53p0VpbhGRx5m5GSxJoESRxUb8n8Tf6sBYHGX1ocwxhexRKgO7QDDjZVYXhjeclw8eJszK-2F1zRaRKTq3yM2qMATkffw0S54dmRpLvAdDpyhRgXV18AqMjDeihXLP3u2fpQ4kAxwdencK8oxiO1i4AofcrwjXAGB3YYedLPFSLAVpEGdQmnTuYqQY-2F-2FKgNx1zkdPNDS6IE70sP8W5ju6NlCKlH9KqIK1bqOBs-2B0qpPAvt2nhoAk5D9VErudXmzNZXYM7ZeDzLDrGcg2A3iWasxDNWf7aasYSh1UD7x1N8BuBUP2nbM0ehFHCzeE9FJTDB3gJLzjuin2DhKVF-2F-2F4yxZ6nE41gKR4bLJOM2W0QT7P1URCLEhurLCSkZ-2Fagt7M8VVLvWVwuG7pFdS2zjT1pOllSNlQXcjU7ZLyxJtQemU3L8XF8xIwqN7h-2Bl6-2F411Pi-2BQ8Xx5imO4HM-2F2ZnFaTf5YOweN6Ysmm3DWAKvzxm4FSVI1cPuzirU-2Fy-2B9VtEOLd-2F0H2kAs86C-2F7DAKSSuTMOYJhIpPbTWlI0V7pf5FC4Ue3VepzWAtkd79Qe9BJL6GVtDyVQnjvYYK7IvwHME-2FwLYIgh2GO21x3YtM5FUNDMA91CuqX2gSLAqnyNF3VADM0r3P2PzlFE52Koq0aFJl-2Fun7VJJgVcYfix2mpBhu3WnG0JYj2boqVt5BZMPZAsujJmnQU9YaE2OmOjRD3YmpcYRlB8RwThJD-2B3Fvb1WlibZ4Ig-3D-3D\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-alternates: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; background-color: rgb(255, 255, 255); color: #01a1f1; font-family: arial, helvetica, sans-serif; font-size: 12px\"><u>available </u></span><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: none; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); color: #01a1f1; font-family: arial, helvetica, sans-serif; font-size: 12px\"><u>here</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-alternates: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; background-color: rgb(255, 255, 255); color: #7c7e7f; font-family: arial, helvetica, sans-serif; font-size: 12px\">. Our goal is to award an initial contract within 60-90 days of solicitation closure. Solicitation details and a link to the submission page are available below.</span><span style=\"font-family: arial, helvetica, sans-serif; font-size: 12px\"><br>\r\n</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#FFFFFF\" data-distribution=\"2,1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"362\" style=\"width:362px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2bb08414-727d-4668-851a-a0e1e3708ed6\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 10px 18px 10px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: left\"><span style=\"color: #2483c5; font-family: arial, helvetica, sans-serif; font-size: 18px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline\">Advanced Marine Propulsion and Energy for Revolutionary Efficiency (AMPERE)</span></div>\r\n<div style=\"font-family: inherit; text-align: left\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"line-height: 1.2; margin-top: 0pt; margin-bottom: 0pt; background-color: rgb(255, 255, 255); font-weight: 400; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; font-variant-emoji: normal; text-decoration-line: none; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; vertical-align: baseline; white-space-collapse: preserve; text-wrap-mode: wrap; font-family: arial, helvetica, sans-serif; color: #7c7e7f; font-size: 12px\">To maintain superiority in the evolving maritime domain, the U.S. Navy seeks to enhance the warfighting capabilities of its next-generation surface destroyers. These vessels must remain adaptable and lethal against both conventional and asymmetric threats.&nbsp;</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"line-height: 1.2; margin-top: 0pt; margin-bottom: 0pt; background-color: rgb(255, 255, 255); font-weight: 400; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; font-variant-emoji: normal; text-decoration-line: none; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; vertical-align: baseline; white-space-collapse: preserve; text-wrap-mode: wrap; font-family: arial, helvetica, sans-serif; color: #7c7e7f; font-size: 12px\">Achieving this requires a compact, lightweight, and highly efficient power generation system capable of supporting increasingly demanding high-power electrical loads, such as advanced sensors, directed energy weapons, and propulsion systems. A transformative power and propulsion architecture is essential to meet these operational and technical demands. </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9v9Frb8CfXNFnM9xkwe1UB6t7hKC5ZK-2BORBaD0mikwl6IqSVHXcaM36vBk-2BYbuxOEhzNgMIprs-2FYqLw3sbS-2BJ1UMYSnMp8reQDag8mHq74Q-2B3jRG_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSSRqsrEFxOKJ7M4KO9HFvNzCY1FH6umGWinuvvtnsxZqTO0KD2F3aRORhlU48AHD5kLSC6-2BWwavWNIqrrzSeLIC53p0VpbhGRx5m5GSxJoESRxUb8n8Tf6sBYHGX1ocwxhexRKgO7QDDjZVYXhjeclw8eJszK-2F1zRaRKTq3yM2qMATkffw0S54dmRpLvAdDpyhRgXV18AqMjDeihXLP3u2fpQ4kAxwdencK8oxiO1i4AofcrwjXAGB3YYedLPFSLAVpEGdQmnTuYqQY-2F-2FKgNx1zkdPNDS6IE70sP8W5ju6NlCKlH9KqIK1bqOBs-2B0qpPAvt2nhoAk5D9VErudXmzNZXYM7ZeDzLDrGcg2A3iWasxDNWf7aasYSh1UD7x1N8BuBUP2nbM0ehFHCzeE9FJTDB3gJLzjuin2DhKVF-2F-2F4yxZ6nE41gKR4bLJOM2W0QT7P1URCLEhurLCSkZ-2Fagt7M8VVLvWVwuG7pFdS2zjT1pOllSNlQXcjU7ZLyxJtQemU3L8XF8xIwqN7h-2Bl6-2F411Pi-2BQ8Xx5imO4HM-2F2ZnFaTf5YOweN6Ysmm3DWAKvzxm4FSVI1cPuzirU-2Fy-2B9VtEOLd-2F0H2kAs86C-2F7DAKSSuTMOYJhIpPbTWlI0V7pf5FC4Ue3VepzWAtkd79Qe9BJL6GVtAlzvkNGapArvNkpl4qIEBgDssKJGf-2FzVBmb-2BsrkKH4WXrTc6jc-2BHjiLaOSOhLbHsFPIYCDz0MzmcxTevVRmScmg-2Bp9YCOwoQyGkjOhUixV3Crblo6nT81cuKu8HZV0jbGMPzwSy3YNv7sv2NoYrCfINFJ12vXqsxBPYUlqD9-2Fnkg-3D-3D\"><span style=\"font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; color: #2483c5; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>Learn more</strong></span></a><span style=\"font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; color: #2483c5; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>.</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"181\" style=\"width:181px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"4fa31850-56ff-4e7f-985c-2dd2d58a3cef\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>Submission Deadline:</strong></span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">27 May 2025</span><span style=\"font-family: arial, helvetica, sans-serif; font-size: 12px\"><br>\r\n</span><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">23:59:59 U.S. Eastern Time</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"module\" data-role=\"module-button\" data-type=\"button\" role=\"module\" style=\"table-layout:fixed;\" width=\"100%\" data-muid=\"621468ff-bdcc-4d55-8cd5-838691427b54\">\r\n      <tbody>\r\n        <tr>\r\n          <td align=\"left\" bgcolor=\"\" class=\"outer-td\" style=\"padding:0px 0px 0px 0px;\">\r\n            <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"wrapper-mobile\" style=\"text-align:center;\">\r\n              <tbody>\r\n                <tr>\r\n                <td align=\"center\" bgcolor=\"#2483C5\" class=\"inner-td\" style=\"border-radius:6px; font-size:16px; text-align:left; background-color:inherit;\">\r\n                  <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9v9Frb8CfXNFnM9xkwe1UB6t7hKC5ZK-2BORBaD0mikwl6IqSVHXcaM36vBk-2BYbuxOEhzNgMIprs-2FYqLw3sbS-2BJ1UMYSnMp8reQDag8mHq74Q-2BWllk_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSSRqsrEFxOKJ7M4KO9HFvNzCY1FH6umGWinuvvtnsxZqTO0KD2F3aRORhlU48AHD5kLSC6-2BWwavWNIqrrzSeLIC53p0VpbhGRx5m5GSxJoESRxUb8n8Tf6sBYHGX1ocwxhexRKgO7QDDjZVYXhjeclw8eJszK-2F1zRaRKTq3yM2qMATkffw0S54dmRpLvAdDpyhRgXV18AqMjDeihXLP3u2fpQ4kAxwdencK8oxiO1i4AofcrwjXAGB3YYedLPFSLAVpEGdQmnTuYqQY-2F-2FKgNx1zkdPNDS6IE70sP8W5ju6NlCKlH9KqIK1bqOBs-2B0qpPAvt2nhoAk5D9VErudXmzNZXYM7ZeDzLDrGcg2A3iWasxDNWf7aasYSh1UD7x1N8BuBUP2nbM0ehFHCzeE9FJTDB3gJLzjuin2DhKVF-2F-2F4yxZ6nE41gKR4bLJOM2W0QT7P1URCLEhurLCSkZ-2Fagt7M8VVLvWVwuG7pFdS2zjT1pOllSNlQXcjU7ZLyxJtQemU3L8XF8xIwqN7h-2Bl6-2F411Pi-2BQ8Xx5imO4HM-2F2ZnFaTf5YOweN6Ysmm3DWAKvzxm4FSVI1cPuzirU-2Fy-2B9VtEOLd-2F0H2kAs86C-2F7DAKSSuTMOYJhIpPbTWlI0V7pf5FC4Ue3VepzWAtkd79Qe9BJL6GVtATamXNM-2F5Jj7o10XkEiwrF1zxX5NzJZp9YIOBafhLAmSSvXJNmhHOs-2FJRS4e-2BRyTRzSvFzaSc0pfVrgl3DFEIHnOrn45PZY3vduVYzL6IjzZFB9WFVclMd3lP6lSFEkzok4kns9oEyaoiquTTCNrzoTeqSRZFx-2F7XaEH1QP4a9XA-3D-3D\" style=\"background-color:#2483C5; border:1px solid #2483C5; border-color:#2483C5; border-radius:6px; border-width:1px; color:#ffffff; display:inline-block; font-size:12px; font-weight:bold; letter-spacing:0px; line-height:normal; padding:12px 18px 12px 18px; text-align:center; text-decoration:none; border-style:solid;\" target=\"_blank\">Learn more</a>\r\n                </td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n          </td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"1b2e3e3f-7a4f-4ae9-858a-b364347e6b2b\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#FFFFFF\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"544\" style=\"width:544px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"12a76bcf-49d1-4289-8902-3dec45d9306a.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: left\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: 700; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; text-align: start; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial,helvetica,sans-serif; font-size: 14px; color: #7c7e7f\">Other open solicitations:</span></div>\r\n<div style=\"font-family: inherit; text-align: left\"><br>\r\n</div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9tST9sk2GZYgKHQ1-2F0wBoh3R4I1R05sC-2BCRkPI3E6P0KP0JYKG74i0US-2F-2FdqDEJzz9gjCnHCg9sw3e0Mi-2FzRaL9Rfu6lo59KfU7y30gvH8-2BqgWJm_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSSRqsrEFxOKJ7M4KO9HFvNzCY1FH6umGWinuvvtnsxZqTO0KD2F3aRORhlU48AHD5kLSC6-2BWwavWNIqrrzSeLIC53p0VpbhGRx5m5GSxJoESRxUb8n8Tf6sBYHGX1ocwxhexRKgO7QDDjZVYXhjeclw8eJszK-2F1zRaRKTq3yM2qMATkffw0S54dmRpLvAdDpyhRgXV18AqMjDeihXLP3u2fpQ4kAxwdencK8oxiO1i4AofcrwjXAGB3YYedLPFSLAVpEGdQmnTuYqQY-2F-2FKgNx1zkdPNDS6IE70sP8W5ju6NlCKlH9KqIK1bqOBs-2B0qpPAvt2nhoAk5D9VErudXmzNZXYM7ZeDzLDrGcg2A3iWasxDNWf7aasYSh1UD7x1N8BuBUP2nbM0ehFHCzeE9FJTDB3gJLzjuin2DhKVF-2F-2F4yxZ6nE41gKR4bLJOM2W0QT7P1URCLEhurLCSkZ-2Fagt7M8VVLvWVwuG7pFdS2zjT1pOllSNlQXcjU7ZLyxJtQemU3L8XF8xIwqN7h-2Bl6-2F411Pi-2BQ8Xx5imO4HM-2F2ZnFaTf5YOweN6Ysmm3DWAKvzxm4FSVI1cPuzirU-2Fy-2B9VtEOLd-2F0H2kAs86C-2F7DAKSSuTMOYJhIpPbTWlI0V7pf5FC4Ue3VepzWAtkd79Qe9BJL6GVtBettkjZMXSQmDNhWrEPJ7svPz9keHMjZHTEAUUrXuS9vmXWGrjYbtQe5DqDIoV9oo-2BWx-2FPKinsiP9vPgA0I3bKRU4RbfWq8M9gctq0lrdgBwHoxbY3Hf0Un64i0BUO4-2FGHK9ZS-2F-2B6fe87duykikykDOwJOvQgmTSeLtsahOreTXw-3D-3D\"><span style=\"font-size: 12px; color: #2483c5\"><strong>FORG</strong></span><span style=\"font-size: 12px; color: #2483c5\"><strong>E: Foundry</strong></span><span style=\"font-size: 12px; color: #2483c5\"><strong> for Operational Readiness and Global Effects</strong></span></a></div>\r\n<div style=\"font-family: inherit\"><span style=\"color: #7c7e7f; font-size: 12px\">This solicitation closes on May 26, 2025 at 23:59:59 Eastern Time</span></div>\r\n<div style=\"font-family: inherit\"><br></div>\r\n<div style=\"font-family: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9o-2FlKB-2F7U18GyA9MvN6HtKuPFeM2-2BZPOjBN5vxPZUYnAPDRLZa2OPqRPx1qrC8udWPF-2FWtO-2FbwV-2FKib-2B3rQOO0upR28vkTMu0sGntc8Qo7SHp361_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSSRqsrEFxOKJ7M4KO9HFvNzCY1FH6umGWinuvvtnsxZqTO0KD2F3aRORhlU48AHD5kLSC6-2BWwavWNIqrrzSeLIC53p0VpbhGRx5m5GSxJoESRxUb8n8Tf6sBYHGX1ocwxhexRKgO7QDDjZVYXhjeclw8eJszK-2F1zRaRKTq3yM2qMATkffw0S54dmRpLvAdDpyhRgXV18AqMjDeihXLP3u2fpQ4kAxwdencK8oxiO1i4AofcrwjXAGB3YYedLPFSLAVpEGdQmnTuYqQY-2F-2FKgNx1zkdPNDS6IE70sP8W5ju6NlCKlH9KqIK1bqOBs-2B0qpPAvt2nhoAk5D9VErudXmzNZXYM7ZeDzLDrGcg2A3iWasxDNWf7aasYSh1UD7x1N8BuBUP2nbM0ehFHCzeE9FJTDB3gJLzjuin2DhKVF-2F-2F4yxZ6nE41gKR4bLJOM2W0QT7P1URCLEhurLCSkZ-2Fagt7M8VVLvWVwuG7pFdS2zjT1pOllSNlQXcjU7ZLyxJtQemU3L8XF8xIwqN7h-2Bl6-2F411Pi-2BQ8Xx5imO4HM-2F2ZnFaTf5YOweN6Ysmm3DWAKvzxm4FSVI1cPuzirU-2Fy-2B9VtEOLd-2F0H2kAs86C-2F7DAKSSuTMOYJhIpPbTWlI0V7pf5FC4Ue3VepzWAtkd79Qe9BJL6GVtB9FoxRhX72-2FYqMh2j8-2B2z87mOS9MVbcTIPlEZ1CKnLXvXMRQggvLchZI7VKfDmCns0VaAnwAGEQMeIlc-2FP8FU0xppbv3KAiTImuVcYiEgXSunpU9lqcSvGKrabhx4-2BfVH-2BvtnTEZRoKBXfX0l68yNMISBs65n0W5WkIwHrXeyyug-3D-3D\"><span style=\"font-size: 12px; color: #2483c5\"><strong>Low Collateral Defeat (LCD)</strong></span></a></div>\r\n<div style=\"font-family: inherit\"><span style=\"color: #7c7e7f; font-size: 12px\">This solicitation closes on May 19, 2025 at 23:59:59 Eastern Time</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"01cfd941-691e-4504-af90-9ba914a69b55\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:10px 18px 10px 18px;\" valign=\"top\" align=\"center\">\r\n          <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:25% !important; width:25%; height:auto !important;\" width=\"141\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/07c51c13-1be6-40d1-8dc7-789cd2686a09/1080x1080.png\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"6cf433f1-53d9-4818-89de-d72eccb7d837\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 10px 18px 10px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"line-height: inherit; color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-line: inherit; text-decoration-thickness: inherit; text-decoration-style: inherit; text-decoration-color: inherit; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>About DIU:&nbsp;</strong></span><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">The Defense Innovation Unit (DIU) strengthens our national security by accelerating the adoption of commercial technology throughout the military and growing the national security innovation base. DIU partners with organizations across the Department of Defense (DoD) and with&nbsp;nontraditional companies to facilitate prototype projects and field advanced commercial solutions that address national security challenges. DIU leverages Other Transaction (OT) authority to award Prototype agreements, which, if successful, may result in the direct award of a follow-on Production agreement without the use of further competitive procedures. (DIU is not an OT consortium; DIU executes direct award OTs).&nbsp;</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; background-color: rgb(255, 255, 255); font-size: 12px\">You are receiving this email because you have a contact at DIU or you signed up to our mailing list. If you would like to be removed from our email list, please click the unsubscribe link below.</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"6ac32cba-50e8-406c-8061-dd0135aebb60\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 30px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"module\" data-role=\"module-button\" data-type=\"button\" role=\"module\" style=\"table-layout:fixed;\" width=\"100%\" data-muid=\"bf716dbe-018d-4f2d-bf15-b5b6db124e86\">\r\n      <tbody>\r\n        <tr>\r\n          <td align=\"center\" bgcolor=\"\" class=\"outer-td\" style=\"padding:0px 0px 0px 0px;\">\r\n            <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"wrapper-mobile\" style=\"text-align:center;\">\r\n              <tbody>\r\n                <tr>\r\n                <td align=\"center\" bgcolor=\"#2483C5\" class=\"inner-td\" style=\"border-radius:6px; font-size:16px; text-align:center; background-color:inherit;\">\r\n                  <a href=\"mailto:info@diu.mil\" style=\"background-color:#2483C5; border:1px solid #2483C5; border-color:#2483C5; border-radius:6px; border-width:1px; color:#ffffff; display:inline-block; font-size:12px; font-weight:bold; letter-spacing:0px; line-height:normal; padding:18px 18px 12px 18px; text-align:center; text-decoration:none; border-style:solid; font-family:arial,helvetica,sans-serif;\" target=\"_blank\">Contact Us</a>\r\n                </td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n          </td>\r\n        </tr>\r\n      </tbody>\r\n    </table><div data-role=\"module-unsubscribe\" class=\"module\" role=\"module\" data-type=\"unsubscribe\" style=\"color:#444444; font-size:12px; line-height:20px; padding:16px 16px 16px 16px; text-align:center;\" data-muid=\"037d4496-257f-4255-8897-cb3cce530456\"><div class=\"Unsubscribe--addressLine\"></div><p style=\"font-size:12px; line-height:20px;\"><a class=\"Unsubscribe--unsubscribeLink\" href=\"https://u18220755.ct.sendgrid.net/asm/unsubscribe/?user_id=18220755&amp;data=eS5ugVVxzBREQucZwjswPSNU6al8wIcksy7ibZfDVeRoMDAwdTAwMMLsjhZKj6JXfjo8TgJnT09y7a-b8pkvj1q-KvI2q1DaAWTbjaLMC_YFqcd-oHPraz8eMnlZ6YfWl32DEtAAUVpWddswNw5UsgYclXElR-RqSMNafFaYhsFMsYhNSQ5U8bx88sq0_ZvZ1pdFN4plM4HLZNi8uBHNVBh8HnewA-JuEhEk6iCsc_FzFhKgVCUDWSDfXRYpkO--RCQBLCtSiYJ14v0UtAIOoEoDbAAx06_Z21-zJwk59Wi3f1nXZTUBBD8MxxWxy2hgq96GGnN7rciHKMfOIp4WKoKi780aDr4JsAjP790sSi5YrqH-8E5XgjgYrqV-pV1_hJ75U8iM_RAbeSFVvQj0n4xEE9zAVOdK8zSJ7XvDPGT_2eUd1DRHiAow8OFFuThoGWZ490_Tg2PNEzrOrBeF4Q1CYAN323ZxWGKs_GJeigSZ0RdQlYOqwz4ym8c7ZQhFw_G-hB_NZj_tESih0TIcdIzXg1-RuZwiV-jVDTNYUVTKyJAVEQUEhWmt78aiQfpX803O2JO3SOG3jSrATfShDgzJCX-NFgUShkoSMpFc2SsXgusdbjFDRz0iL3XbIWqNsa2BwVuLWV18ALODUu4v-dQUh2MwydAmONeMLp7M5Fd4To-zzNtiy6iUXkCLEbO5vGeYdUWbyn8VN364_GibjFhf6bfYjBPuHKc1pp5jhM6T9nSSSH497hubbkiJmhgTOI77wqycJ-WJRTUEjP4a6dsQv9lEU1nbhduFGzCKxy60LfD8PCa1pdOcFBDUOekis03ig8C17tSpWdPkcI51nfG_nr8kmceiUaNBUsoYM_BN2YMV6SbDZQ_LxrxoQ4uar2boMn1rqgxdVLnVvwa-5h1BpUIjhUqE_6ayW91PJnuLM5AfXTvtH4lYMph0qtGgHfkKpj2wWQp5bT-oamNZ9cDOPuDJPdV1ADy78gzSEfuiSYl1aEnSiiNzH51hYQ7UsapKlbs9JhEi_nR-afDIcGfFtl50B0xu7VUnru4aFnVI0Gyk7pmx87Ela_xgFODC9JL8-2ptR6nLjp2MqzV0ueAtnKSh_muNfxStmXOeTcCEvOjBcYkAqM5b_bh2nzcPZANwkq99LvvMveEuUixgEthZc4X0o4VN\" target=\"_blank\" style=\"\">Unsubscribe</a> - <a href=\"https://u18220755.ct.sendgrid.net/asm/?user_id=18220755&amp;data=WY7mmzbjjY9q7WtqyezzQFnwmAJs6L4KiB_YYBNX8U1oMDAwdTAwMFyAupyat5XehYFiJr6ePcU-oqr23R7_Q0M5KUm0R0qSoDe5Z_-sGo1u3KXeDO69SaGnUflf1O444nTmr-QiBRsm49aN-I4VfWob3osQOpryojs5k2sLt-XQVyRf8Yr_Gub_HMCoVv0GcB_Q4dJFu9Q-FoMqrzn38BL-j3zHT-lMJ0yEGeKsvMaseguULZOHt5qY9d72feOzbX1uJbjrjmUb6UuYD91c0OFNAkxZEjRbnj_HRfVEA9rcWFYLOymzX-ZwdsbRHwxSY_-iU0lAJo6wTn0Jy-3PayE-ZDWX_WgnTiFb7selIPJfWvZpfG1CfRK-XtpR5sxeZdUtpqo54uSUab_QMZDmur6kgXt703d_nDEvIrxKROf_1hQIWJNg-jaeNKx_kufW-SEDbEC9_Ha6sF92IU9e9HdmsQmiWnj7R623aFsIjS0GMra5XdHHwzivmjIvG1OqzPbm-o7U-x5zUB7SyHiq4CuU6gTFUh4C33XOIb7s340lnHWEV1Jb_LyEIY6Daf0DX_U3CQ2lU5nThW9qOrTDhb9tOuLwZYcW-J3mbxFPdEkBDR_lOJlR6WUcnDj6VznZ8Yr2esdbpwboo1awkRlTkH4_rCzuk6KJ_sQtGg57Sir3Y7yQO31DOmL3haE0F_DSd-5yzZ2xmWAfScSi01DYQT64qbEzquJUfrmm0BKkasKtkL9aq9sa_Q3G7xAXOg--TUkPBBCRnvwtq6VArigAyBvJ0lKXgAhhsquKQcO9TiyCFtNFM1knTaUEC_bVs1rLhPtKIQ6u7vXTjc0ddyPj8549Qd0uSSjjSszLBgwmZHDGCPtkhen0pUWVgz5jggN3SHOtwjLWgECoASd8JdDcxFEtVCfG6WNy42dhLyz_vlMEG2J83iiy8zXU58eQeOpAJPtzOe-9kJY8N50hT0OTLxQGe57NKzL9VdQJUzhL7b8JiBNZE4IVcGseBrqqw1fsAHgTCqZgS9PvCS6CcKqZ4UzPVUSLYeh1j2jYeUBDyKU5nBij4pXmHlOwPdu8M_CtHjyWUE6iJN-a-BlaibXYexTpYXvwoVOjEsZ8_b1pqeyz1Ie7XabaemTZj5yHMXtXoFjoL-0BIgg=\" target=\"_blank\" class=\"Unsubscribe--unsubscribePreferences\" style=\"\">Unsubscribe Preferences</a></p></div></td>\r\n                                      </tr>\r\n                                    </table>\r\n                                    <!--[if mso]>\r\n                                  </td>\r\n                                </tr>\r\n                              </table>\r\n                            </center>\r\n                            <![endif]-->\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </div>\r\n      </center>\r\n    <img src=\"https://u18220755.ct.sendgrid.net/wf/open?upn=u001.D6mC8SG6iITw2GIzPjAtw7SLAuEgZhcE7OQx5Ie2paKW9TCJvoy3Eh7ani-2FmDfzWZ4Aty9oKYAg8U-2BpXv81mmaeCBsQtTAdxlXqbnsXBCjn-2FAW10qJfypmIUPoD1-2B38y4LSjEaiwyNZHtEyZD-2BNUDb4KS9rhcACOTU0rT5D1VH5kL0SwnkHIwJZnDDu5C5FYCFl2ec17d8s6e1Y-2FIn0d14pymiIQlgL-2FsVKb7EBludZiQm8grfqgufwB5tJjC3KABNtxXDOy3kI568u1RAxoAZR7X-2F-2Bp1liqVFsWSkvLwmL-2BEmi-2BA6r5wLXOzjYXPBwYixJd8lYSlgCWFe3idnZUGuCxozAZgER8yQRhrtniz8abMnqBKCSeiVwjoBilIbLJW0FWvaLp9XGu1lU5lbEEV2RSM224IrwDEvY1PzxVj9dDoyjN5AfxFoya7EeJzeKSMS6-2BIrzCxH3DC-2FBcEpnt0AGs3KNO05yjyg-2F4N6SsoU-2BurjZTwaUYgTZqPkHCfYPRhB-2FQGPS9TKJHaBhj6svbWlg-2BjLYTZ3get60MeCXwd8lIsmtHycbinUhSbRM6tDu5WKL6cretZlUmxcOeUBp-2FMC0Xgru-2FZn7yYZ1ukJgXh3IyTbTQ1Wm4vYJYtCAU74t8vlJH7iDEk-2B4EnxfeuUW29Ear7ah90LCk1uyHEWme-2B1bJXwcdjuijMT3H3Mjnc4HrwXvc3rILpz0BivTJKOGMVHgdjv01gLyzK84yOnVz2l1hWLzNNQo-2FZujyqgrDh2v34LhLWEmRd0YiNRkN958CST2WffOAkQk3JuWilzT0PfaJq1e6WvF2nRGxKA2pPbf9AY3gbxDg7UxFbck5cdqPqTg40mG80UVRatBay-2BSxVBnopt21O2l9DJllgYPPzm-2B2SuUUuJS3DvZMnwBMEFkukBPrhcyKyBDF9c7VqLvzBowDkJeiUP2DUbHHyR-2BJE3dz87xyGcqxD-2Brht2JP3hW2rw-3D-3D\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/></body>\r\n  </html>','The U.S. Navy seeks a compact, lightweight, and highly efficient power generation system.\r\n\r\nNew Solicitation Announcement\r\n\r\nThere is a new solicitation posted on our website. It is easy to respond with a 5-page paper or 15-slide slide deck. These limits are not requirements but are strongly recommended. Additional guidance about what we look for in a proposal is available here ( https://www.diu.mil/solution-brief-guidance?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ). Our goal is to award an initial contract within 60-90 days of solicitation closure. Solicitation details and a link to the submission page are available below.\r\n\r\nAdvanced Marine Propulsion and Energy for Revolutionary Efficiency (AMPERE)\r\n\r\nTo maintain superiority in the evolving maritime domain, the U.S. Navy seeks to enhance the warfighting capabilities of its next-generation surface destroyers. These vessels must remain adaptable and lethal against both conventional and asymmetric threats.\r\n\r\nAchieving this requires a compact, lightweight, and highly efficient power generation system capable of supporting increasingly demanding high-power electrical loads, such as advanced sensors, directed energy weapons, and propulsion systems. A transformative power and propulsion architecture is essential to meet these operational and technical demands. *Learn more* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00591?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) *.*\r\n\r\n*Submission Deadline:*\r\n27 May 2025\r\n23:59:59 U.S. Eastern Time\r\n\r\nLearn more ( https://www.diu.mil/work-with-us/submit-solution/PROJ00591?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\nOther open solicitations:\r\n\r\n*FORG* *E: Foundry* *for Operational Readiness and Global Effects* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00594?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\nThis solicitation closes on May 26, 2025 at 23:59:59 Eastern Time\r\n\r\n*Low Collateral Defeat (LCD)* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00597?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\nThis solicitation closes on May 19, 2025 at 23:59:59 Eastern Time\r\n\r\n*About DIU:* The Defense Innovation Unit (DIU) strengthens our national security by accelerating the adoption of commercial technology throughout the military and growing the national security innovation base. DIU partners with organizations across the Department of Defense (DoD) and with nontraditional companies to facilitate prototype projects and field advanced commercial solutions that address national security challenges. DIU leverages Other Transaction (OT) authority to award Prototype agreements, which, if successful, may result in the direct award of a follow-on Production agreement without the use of further competitive procedures. (DIU is not an OT consortium; DIU executes direct award OTs).\r\n\r\nYou are receiving this email because you have a contact at DIU or you signed up to our mailing list. If you would like to be removed from our email list, please click the unsubscribe link below.\r\n\r\nContact Us ( info@diu.mil )\r\n\r\nUnsubscribe ( https://u18220755.ct.sendgrid.net/asm/unsubscribe/?user_id=18220755&data=eS5ugVVxzBREQucZwjswPSNU6al8wIcksy7ibZfDVeRoMDAwdTAwMMLsjhZKj6JXfjo8TgJnT09y7a-b8pkvj1q-KvI2q1DaAWTbjaLMC_YFqcd-oHPraz8eMnlZ6YfWl32DEtAAUVpWddswNw5UsgYclXElR-RqSMNafFaYhsFMsYhNSQ5U8bx88sq0_ZvZ1pdFN4plM4HLZNi8uBHNVBh8HnewA-JuEhEk6iCsc_FzFhKgVCUDWSDfXRYpkO--RCQBLCtSiYJ14v0UtAIOoEoDbAAx06_Z21-zJwk59Wi3f1nXZTUBBD8MxxWxy2hgq96GGnN7rciHKMfOIp4WKoKi780aDr4JsAjP790sSi5YrqH-8E5XgjgYrqV-pV1_hJ75U8iM_RAbeSFVvQj0n4xEE9zAVOdK8zSJ7XvDPGT_2eUd1DRHiAow8OFFuThoGWZ490_Tg2PNEzrOrBeF4Q1CYAN323ZxWGKs_GJeigSZ0RdQlYOqwz4ym8c7ZQhFw_G-hB_NZj_tESih0TIcdIzXg1-RuZwiV-jVDTNYUVTKyJAVEQUEhWmt78aiQfpX803O2JO3SOG3jSrATfShDgzJCX-NFgUShkoSMpFc2SsXgusdbjFDRz0iL3XbIWqNsa2BwVuLWV18ALODUu4v-dQUh2MwydAmONeMLp7M5Fd4To-zzNtiy6iUXkCLEbO5vGeYdUWbyn8VN364_GibjFhf6bfYjBPuHKc1pp5jhM6T9nSSSH497hubbkiJmhgTOI77wqycJ-WJRTUEjP4a6dsQv9lEU1nbhduFGzCKxy60LfD8PCa1pdOcFBDUOekis03ig8C17tSpWdPkcI51nfG_nr8kmceiUaNBUsoYM_BN2YMV6SbDZQ_LxrxoQ4uar2boMn1rqgxdVLnVvwa-5h1BpUIjhUqE_6ayW91PJnuLM5AfXTvtH4lYMph0qtGgHfkKpj2wWQp5bT-oamNZ9cDOPuDJPdV1ADy78gzSEfuiSYl1aEnSiiNzH51hYQ7UsapKlbs9JhEi_nR-afDIcGfFtl50B0xu7VUnru4aFnVI0Gyk7pmx87Ela_xgFODC9JL8-2ptR6nLjp2MqzV0ueAtnKSh_muNfxStmXOeTcCEvOjBcYkAqM5b_bh2nzcPZANwkq99LvvMveEuUixgEthZc4X0o4VN ) - Unsubscribe Preferences ( https://u18220755.ct.sendgrid.net/asm/?user_id=18220755&data=WY7mmzbjjY9q7WtqyezzQFnwmAJs6L4KiB_YYBNX8U1oMDAwdTAwMFyAupyat5XehYFiJr6ePcU-oqr23R7_Q0M5KUm0R0qSoDe5Z_-sGo1u3KXeDO69SaGnUflf1O444nTmr-QiBRsm49aN-I4VfWob3osQOpryojs5k2sLt-XQVyRf8Yr_Gub_HMCoVv0GcB_Q4dJFu9Q-FoMqrzn38BL-j3zHT-lMJ0yEGeKsvMaseguULZOHt5qY9d72feOzbX1uJbjrjmUb6UuYD91c0OFNAkxZEjRbnj_HRfVEA9rcWFYLOymzX-ZwdsbRHwxSY_-iU0lAJo6wTn0Jy-3PayE-ZDWX_WgnTiFb7selIPJfWvZpfG1CfRK-XtpR5sxeZdUtpqo54uSUab_QMZDmur6kgXt703d_nDEvIrxKROf_1hQIWJNg-jaeNKx_kufW-SEDbEC9_Ha6sF92IU9e9HdmsQmiWnj7R623aFsIjS0GMra5XdHHwzivmjIvG1OqzPbm-o7U-x5zUB7SyHiq4CuU6gTFUh4C33XOIb7s340lnHWEV1Jb_LyEIY6Daf0DX_U3CQ2lU5nThW9qOrTDhb9tOuLwZYcW-J3mbxFPdEkBDR_lOJlR6WUcnDj6VznZ8Yr2esdbpwboo1awkRlTkH4_rCzuk6KJ_sQtGg57Sir3Y7yQO31DOmL3haE0F_DSd-5yzZ2xmWAfScSi01DYQT64qbEzquJUfrmm0BKkasKtkL9aq9sa_Q3G7xAXOg--TUkPBBCRnvwtq6VArigAyBvJ0lKXgAhhsquKQcO9TiyCFtNFM1knTaUEC_bVs1rLhPtKIQ6u7vXTjc0ddyPj8549Qd0uSSjjSszLBgwmZHDGCPtkhen0pUWVgz5jggN3SHOtwjLWgECoASd8JdDcxFEtVCfG6WNy42dhLyz_vlMEG2J83iiy8zXU58eQeOpAJPtzOe-9kJY8N50hT0OTLxQGe57NKzL9VdQJUzhL7b8JiBNZE4IVcGseBrqqw1fsAHgTCqZgS9PvCS6CcKqZ4UzPVUSLYeh1j2jYeUBDyKU5nBij4pXmHlOwPdu8M_CtHjyWUE6iJN-a-BlaibXYexTpYXvwoVOjEsZ8_b1pqeyz1Ie7XabaemTZj5yHMXtXoFjoL-0BIgg= )',0,0,0,0,0,0,'2025-05-13 19:57:24','2025-12-09 19:27:04','2025-12-09 19:27:04','2025-12-09 19:27:04',NULL,NULL,NULL),
(569,4,'<1753877107918.d69540e7-2c0e-4bbe-918c-1aaabc5473b4@bf05x.hubspotemail.net>',NULL,NULL,'***SPAM***  Your Talent Insights from Ashby This Month','community@ashbyhq.com','Benjamin Encz','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional //EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:v=\"urn:schemas-microsoft-com:vml\" lang=\"en\"><head>\r\n    <title>Your Talent Insights from Ashby This Month</title>\r\n    <meta property=\"og:title\" content=\"Your Talent Insights from Ashby This Month\">\r\n    <meta name=\"twitter:title\" content=\"Your Talent Insights from Ashby This Month\">\r\n    \r\n    \r\n    \r\n<meta name=\"x-apple-disable-message-reformatting\">\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\r\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <!--[if gte mso 9]>\r\n  <xml>\r\n    <o:OfficeDocumentSettings>\r\n      <o:AllowPNG/>\r\n      <o:PixelsPerInch>96</o:PixelsPerInch>\r\n    </o:OfficeDocumentSettings>\r\n    <w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\">\r\n      <w:DontUseAdvancedTypographyReadingMail/>\r\n    </w:WordDocument>\r\n  </xml>\r\n  \r\n  <style>\r\n    ul > li {\r\n      text-indent: -1em;\r\n    }\r\n  </style>\r\n<![endif]-->\r\n<!--[if mso]>\r\n<style type=\"text/css\">\r\n body, td {font-family: Arial, Helvetica, sans-serif;}\r\n .hse-body-wrapper-table {background-color: #EEEEEE;}\r\n</style>\r\n<![endif]-->\r\n<!--[if mso | IE]>\r\n  <style type=\"text/css\">\r\n    .hse-column-container { border: none !important; padding: 0 !important; }\r\n  </style>\r\n<![endif]-->\r\n    \r\n      \r\n  \r\n  \r\n    \r\n  <meta name=\"generator\" content=\"HubSpot\"><meta property=\"og:url\" content=\"http://4990969.hs-sites.com/-temporary-slug-85094154-59dd-4f9a-938d-b2915536d80a\"><meta name=\"robots\" content=\"noindex,follow\"><!--[if !((mso)|(IE))]><!-- --><style type=\"text/css\">@media only screen and (max-width:639px){img.stretch-on-mobile,.hs_rss_email_entries_table img,.hs-stretch-cta .hs-cta-img{height:auto !important;width:100% !important}\r\n.display_block_on_small_screens{display:block}.hs_padded{padding-left:20px !important;padding-right:20px !important}\r\n.hs-hm,table.hs-hm{display:none}.hs-hd{display:block !important}table.hs-hd{display:table !important}\r\n}@media only screen and (max-width:639px){.hse-border-m{border-left:1px solid #eaf0f6 !important;border-right:1px solid #eaf0f6 !important;box-sizing:border-box}\r\n.hse-border-bottom-m{border-bottom:1px solid #eaf0f6 !important}.hse-border-top-m{border-top:1px solid #eaf0f6 !important}\r\n.hse-border-top-hm{border-top:none !important}.hse-border-bottom-hm{border-bottom:none !important}\r\n}.moz-text-html .hse-column-container{max-width:600px !important;width:600px !important}\r\n.moz-text-html .hse-column{display:table-cell;vertical-align:top}.moz-text-html .hse-section .hse-size-5{max-width:250px !important;width:250px !important}\r\n.moz-text-html .hse-section .hse-size-7{max-width:350px !important;width:350px !important}\r\n.moz-text-html .hse-section .hse-size-12{max-width:600px !important;width:600px !important}\r\n@media only screen and (min-width:640px){.hse-column-container{max-width:600px !important;width:600px !important}\r\n.hse-column{display:table-cell;vertical-align:top}.hse-section .hse-size-5{max-width:250px !important;width:250px !important}\r\n.hse-section .hse-size-7{max-width:350px !important;width:350px !important}.hse-section .hse-size-12{max-width:600px !important;width:600px !important}\r\n}@media only screen and (max-width:639px){.hse-body-wrapper-td{padding-top:20px !important}\r\n#section_1689170720921 .hse-column-container{background-color:#fff !important} }@media only screen and (max-width:639px){.hse-body-wrapper-td{padding-bottom:20px !important}\r\n#section-2 .hse-column-container{background-color:transparent !important}#section-2 .hse-column-container{background-color:transparent !important}\r\n}</style><!--<![endif]--><style type=\"text/css\">#hs_body #hs_cos_wrapper_main a[x-apple-data-detectors]{color:inherit !important;text-decoration:none !important;font-size:inherit !important;font-family:inherit !important;font-weight:inherit !important;line-height:inherit !important}\r\na{text-decoration:underline}p{margin:0}body{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale}\r\ntable{border-spacing:0;mso-table-lspace:0;mso-table-rspace:0}table,td{border-collapse:collapse}\r\nimg{-ms-interpolation-mode:bicubic}p,a,li,td,blockquote{mso-line-height-rule:exactly}</style></head>\r\n  <body id=\"hs_body\" bgcolor=\"#EEEEEE\" style=\"margin:0 !important; padding:0 !important; font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word\">\r\n    <div id=\"preview_text\" style=\"display:none;font-size:1px;color:#EEEEEE;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;\" lang=\"en\">We\'ve surfaced recruiting insights, podcasts, jobs and more from across the web for you here.</div>\r\n    \r\n<!--[if gte mso 9]>\r\n<v:background xmlns:v=\"urn:schemas-microsoft-com:vml\" fill=\"t\">\r\n    <v:fill type=\"tile\" size=\"100%,100%\" color=\"#ffffff\"/>\r\n</v:background>\r\n<![endif]-->\r\n    <div class=\"hse-body-background\" lang=\"en\" style=\"background-color:#eeeeee\" bgcolor=\"#eeeeee\">\r\n      <table role=\"presentation\" class=\"hse-body-wrapper-table\" cellpadding=\"0\" cellspacing=\"0\" style=\"margin:0; padding:0; width:100% !important; min-width:320px !important; height:100% !important\" width=\"100%\" height=\"100%\">\r\n        <tbody><tr>\r\n          <td class=\"hse-body-wrapper-td\" valign=\"top\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding-top:20px; padding-bottom:20px\">\r\n            <div id=\"hs_cos_wrapper_main\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_dnd_area\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"dnd_area\">  <div id=\"section_1689170720921\" class=\"hse-section hse-section-first\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; Margin-left:auto; Margin-right:auto; background-color:#ffffff; padding-top:30px\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:350px;padding-top:30px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"350\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:350px\">\r\n<![endif]-->\r\n<div id=\"column_1689170720921_0\" class=\"hse-column hse-size-7\">\r\n  <div id=\"hs_cos_wrapper_module_16819161721111\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"left\" valign=\"top\" style=\"font-family:Helvetica, Arial, sans-serif; color:#666666; word-break:break-word; text-align:left; padding:0px 0px 30px 30px; font-size:0px\">\r\n        <img alt=\"ASHBY-ICON_PURPLE\" src=\"https://hs-4990969.f.hubspotemail.net/hub/4990969/hubfs/ASHBY-ICON_PURPLE.png?width=100&amp;upscale=true&amp;name=ASHBY-ICON_PURPLE.png\" style=\"outline:none; text-decoration:none; max-width:100%; font-size:16px\" width=\"50\" align=\"middle\">\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:250px;padding-top:30px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"250\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:250px\">\r\n<![endif]-->\r\n<div id=\"column_1689170720921_1\" class=\"hse-column hse-size-5\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:0px 30px\"><div id=\"hs_cos_wrapper_module_168917074162716\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_168917074162716_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h2 style=\"margin:0; mso-line-height-rule:exactly; font-family:Helvetica, Arial, sans-serif; color:#0e0c29; font-size:13px; line-height:100%; text-align:left\" align=\"left\"><span style=\"color: #473bce;\">Ashby Newsletter, Jul&nbsp;\'25</span></h2></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section_1681916081259\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; Margin-left:auto; Margin-right:auto; background-color:#ffffff; padding-top:10px\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-top:10px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column_1681916081259_0\" class=\"hse-column hse-size-12\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:10px 30px\"><div id=\"hs_cos_wrapper_module_16819164418292\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_16819164418292_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"mso-line-height-rule:exactly; font-weight:normal; line-height:175%\"><span style=\"color: #666666; font-family: Helvetica, Arial, sans-serif;\"><span style=\"color: #000000;\">Hey Rick</span>,</span></p>\r\n<p style=\"mso-line-height-rule:exactly; line-height:175%\"><span style=\"color: #000000;\">If this is your first community newsletter from Ashby, welcome!<br><br></span></p>\r\n<p style=\"mso-line-height-rule:exactly; line-height:175%\"><span style=\"color: #000000;\">We’re delighted to surface recruiting insights, events, and more from across the web and package them for you here.</span></p></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"module_1734558337696\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; Margin-left:auto; Margin-right:auto; background-color:#ffffff\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"module_1734558337696_0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module_17431377734461\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Helvetica, Arial, sans-serif; color:#666666; word-break:break-word; text-align:center; padding:10px 20px; font-size:0px\">\r\n        <img alt=\"LinkedIn Cover Banner\" src=\"https://hs-4990969.f.hubspotemail.net/hub/4990969/hubfs/LinkedIn%20Cover%20Banner.png?width=1120&amp;upscale=true&amp;name=LinkedIn%20Cover%20Banner.png\" style=\"outline:none; text-decoration:none; max-width:100%; font-size:16px\" width=\"560\" align=\"middle\">\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:10px 30px\"><div id=\"hs_cos_wrapper_module_17538466480327\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17538466480327_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h1 style=\"margin:0; mso-line-height-rule:exactly; font-family:Helvetica, Arial, sans-serif; font-size:28px; color:#0e0c29; line-height:125%\"><span style=\"color: #0e0c29;\">Announcing our Series D<br></span></h1></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:10px 30px\"><div id=\"hs_cos_wrapper_module_17223153658801\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17223153658801_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"mso-line-height-rule:exactly; line-height:175%\"><span style=\"color: #000000;\">We’ve raised $50M in Series D funding to scale Ashby’s product, community, and support for talent teams everywhere. Since our Series C, we’ve doubled our customer base, grown revenue 135% year-over-year, and built with discipline by keeping burn low while expanding fast.</span></p>\r\n<p style=\"mso-line-height-rule:exactly; line-height:175%\">&nbsp;</p>\r\n<p style=\"mso-line-height-rule:exactly; line-height:175%\"><span style=\"color: #000000;\">This round helps us go deeper on what matters most: AI that improves real recruiting workflows, Quality of Hire as a measurable outcome, and a product that grows with you from startup to enterprise. We’re also investing heavily in customer success, education, and community, including new ACE (Ashby Customer Experts) user groups chapters, and 24/7 support.</span></p>\r\n<p style=\"mso-line-height-rule:exactly; line-height:175%\">&nbsp;</p>\r\n<p style=\"mso-line-height-rule:exactly; line-height:175%\"><span style=\"color: #000000;\">Thank you to the customers, operators, and partners who helped us reach this milestone. We’re just getting started.</span></p>\r\n<p style=\"mso-line-height-rule:exactly; line-height:175%\">&nbsp;</p>\r\n<p style=\"mso-line-height-rule:exactly; line-height:175%\"><a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-x63qn9qW7Y8-PT6lZ3pYW2G_Dp96Q5RKjW2FWf9q1nJ2H-W4j6_Zs519-bGW43WvPt5mpMnpW37vZkN5DBpnSW7yWT0D9lD318W57Fj7P8RbKhTN73NDQTdlCwqVHX6-Q2PqYndW10sRMh7dMxSTW3yyvvl64X_yhW6r4_dW6BJ-PtW2xLVK83nxS_QN7DvJ1TNFPKVN431sZnj9C2NW4C_-h01hLDGpW5-WLyc3vSTgfW93s7BN1fpM4mW1YQ8nT3DKnMYW5Sr0lv5jJCwpW38JxrJ3BDwH6V8-_vh50GkDZVpQMVs23L1JTW1G8TmX5C9zvrW6yLWcY1CvmT4W4gfV7g1-yS78dpggZK04\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"Iccpt5I5\" target=\"_blank\">Read the full announcement</a></p></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section_1681916435748\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; Margin-left:auto; Margin-right:auto; background-color:#ffffff\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column_1681916435748_0\" class=\"hse-column hse-size-12\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:10px 30px\"><div id=\"hs_cos_wrapper_module_16820143863707\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_16820143863707_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h1 style=\"margin:0; mso-line-height-rule:exactly; font-family:Helvetica, Arial, sans-serif; font-size:28px; color:#0e0c29; line-height:125%\"><span style=\"color: #0e0c29;\">New on Ashby<br></span></h1></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:10px 30px\"><div id=\"hs_cos_wrapper_module_16823329230892\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_16823329230892_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h3 style=\"font-size:17px; margin:0; mso-line-height-rule:exactly; line-height:175%\"><span style=\"color: #000000;\">Create custom fields for archive details<br></span></h3></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:0px 30px\"><div id=\"hs_cos_wrapper_module_16896674534164\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_16896674534164_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"mso-line-height-rule:exactly; line-height:175%\"><span style=\"color: #000000;\"><a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xK3qn9qW95jsWP6lZ3nvW2Xd3G_7jLW61W1dKwVh39hGtpW1HYQfm923kNDW3cBTtG6yJY0zW6sSc3D6nrTJtW39KV8452Dv59W6DttNC1LgccyW63CYsk6l1lHnW2QV2qb6SZcFfW7pjXxG2X0JgXW53pSR_5PJ0j7W2bnW9V1xpBmBVb86zz2g4WDjW7BPDmf7DRhNYW15GbZ640jZqKN3KlJryj8P72W5-rMc88Msr7hW8Y0hH32S4NRDW6hK35G6g1YTkW8MsBnj68bHjGW2NVdJ1242b_zN1MML0Vxcss4W5HflpC20Rx6vW3JJyFV5ZF6KWW15RT_S1mtNg7N35P-mcJj0DtW3zv5t14tyW8mW44KTcm72mj5DW2ZrzXV4SMg3VVjhG874gs_yFdm55Xg04\" style=\"color:#473bce; font-weight:bold; text-decoration:none\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"OamRGtJb\" target=\"_blank\">Custom Fields for Archive Details </a>in Ashby allow you to capture structured data about why candidates are archived in your hiring process. This provides more granular visibility for archive reasons, ultimately helping you improve your hiring process.</span></p></div></div></td></tr></tbody></table>\r\n<div id=\"hs_cos_wrapper_module_17538450822591\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Helvetica, Arial, sans-serif; color:#666666; word-break:break-word; text-align:center; padding:10px 20px; font-size:0px\">\r\n        <img alt=\"archive-details-custom-fields\" src=\"https://hs-4990969.f.hubspotemail.net/hub/4990969/hubfs/archive-details-custom-fields.png?width=1120&amp;upscale=true&amp;name=archive-details-custom-fields.png\" style=\"outline:none; text-decoration:none; max-width:100%; font-size:16px\" width=\"560\" align=\"middle\">\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:0px 30px\"><div id=\"hs_cos_wrapper_module_17538450961282\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17538450961282_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"mso-line-height-rule:exactly; line-height:175%\"><span style=\"color: #000000;\">Using this new feature you might surface historically difficult trends around declines due to relocation (housing costs, spousal employment opps) or declined offers (prefer to work with former colleagues). These insights are easily reportable in Ashby and help with talent planning.</span></p></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:10px 30px\"><div id=\"hs_cos_wrapper_module_17273181016361\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17273181016361_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"mso-line-height-rule:exactly; line-height:175%\"><span style=\"color: #000000;\">Other noteworthy feature launches</span></p>\r\n<ul style=\"mso-line-height-rule:exactly; line-height:175%\">\r\n<li aria-level=\"1\"><span style=\"color: #000000;\">We’ve shipped over 10+ updates to reporting in Ashby over the last month. Check out <a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-x63qn9qW7Y8-PT6lZ3nMVNkN7G5GqxYWW7nVBbw72FrVVN56z6TXFMCl7W9jJQVk8b79lgW3lhnjH4KT5jVW6533rk2kxTgMW8T0R7w4mMWMdW2XBhK_7Z7Tp9N2qS_3ZfX3WbW4TDZTh5PkxTrW33vfbC4RD8GXN6zFZyX-tRlzW2tTkRy9bMj57W1NC5b75sJpB-W6dDfgX7bkVtGW7zxB7R87wdhkN2d-CYkRYrD9W3GpM7v1NfVFCW79vrjz7GBDfBW2sM9rY7MY9PdW7mP4-C4Xr2X7W5by1Nz8H9g_GW7BJhsy7X9st6W5GBCmF8jztW3W7QYB0k3J-pStW2wv8gM2Jc5_wf8Xhwxn04\" rel=\"noopener\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"/IGj5keN\" target=\"_blank\">https://www.ashbyhq.com/product-updates</a>&nbsp;to see a roundup of everything that’s new in reporting!</span></li>\r\n</ul></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:0px 20px 10px\"><div id=\"hs_cos_wrapper_module_16820143863708\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#473bce\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; border-radius:25px; cursor:auto; background-color:#473bce; mso-padding-alt:12px 18px\">\r\n        <a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-x63qn9qW7Y8-PT6lZ3q2W8fd9d949NvmRW1V0lY134X8XyN8PQnXY9WgqKW978tCF7nlXH2W1LB4v86Z6vN9W3sdKrf9jJN5QW6bh7n58c29B_W6rFt9Z6sNCSVW8_P3lk7FRqC5W1SFgD452p9wpW81vDQD8TlK1sN7kQs6TQ53rmW3LFN4V1XFQSwW2JNpTN5ggNtnW6ZJDkK4v_Mx3W7Sg14d6PmNcRW8L-16L1DQMl6W6pBvBM1Dr88VW50KYsX45Tvg2W6tPkG33GC1JMW7s5XSh2NVjQ7W4zQ3552CY1bqW7VMNp82nkjM2W4vfDjK88MSWGW1N6kNB4mtr8WW5ktnL93vWPQVf1s-T_v04\" target=\"_blank\" style=\"color:#00a4bd; font-size:16px; font-family:Helvetica,Arial,sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:12px 18px; display:block\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"jrHa0vl9\">\r\n          <strong style=\"color:#ffffff;font-weight:bold;text-decoration:none;font-style:normal;\">More product updates</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section_1681917494738\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; Margin-left:auto; Margin-right:auto; background-color:#ffffff\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column_1681917494738_0\" class=\"hse-column hse-size-12\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:10px 30px\"><div id=\"hs_cos_wrapper_module_16823330413455\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_16823330413455_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h2 style=\"margin:0; mso-line-height-rule:exactly; font-family:Helvetica, Arial, sans-serif; font-size:30px; color:#0e0c29; line-height:125%\">In Person Events</h2></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:10px 30px\"><div id=\"hs_cos_wrapper_module_17508998708814\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17508998708814_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h3 style=\"font-size:17px; margin:0; mso-line-height-rule:exactly; line-height:175%\"><span style=\"color: #000000;\">Live TA Podcast + Community Night in Denver</span></h3></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:10px 30px 0px\"><div id=\"hs_cos_wrapper_module_17248789745766\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17248789745766_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"mso-line-height-rule:exactly; line-height:175%\"><span style=\"color: #000000;\">We’re bringing Offer Accepted to Denver for a night of impactful conversation and real connection.<br></span></p>\r\n<p style=\"mso-line-height-rule:exactly; line-height:175%\"><span style=\"color: #000000;\">Come hang at Space Annex for a live recording with Tommy Hansen (Juniper Square), audience Q&amp;A with Laura Lockwood (Gusto), good drinks, good food, and a chance to win custom purple AirPods Max. 🎧</span><br><br></p>\r\n<p style=\"mso-line-height-rule:exactly; line-height:175%\"><span style=\"color: #000000;\">All ticket sales support Dress for Success Denver. It’s a night for the TA community you won’t want to miss!</span></p>\r\n<p style=\"mso-line-height-rule:exactly; line-height:175%\"><span style=\"color: #000000;\">&nbsp;</span></p></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:0px 20px 10px\"><div id=\"hs_cos_wrapper_module_17538453067836\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#473bce\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; border-radius:25px; cursor:auto; background-color:#473bce; mso-padding-alt:12px 18px\">\r\n        <a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wR3qn9qW7lCdLW6lZ3lpW7r7Cjm8xn_0TW637Wvk6QDxK7W4PgddT4tfy7zW2v7gMb120TbfW2ClbVH12zn9QW8trGxL8z6FWkW7WfFd58rf_fLW3hxB_P93HwSyW25PTh05GhJwZW2sSRP56HtyXrW1SsLbz5tK7xBW4JTHB87-Y57fN7V99szNXT8LV2f35Z1_BVByW6cBvDr2nSkgvW8tp3Mr2c2nKnW51cF03370HFZW4jTdjn2ZT9_tW67cWPR5gwnzDW5LKrMf6_XLCFW18dm4N1B3fN-V60fCW8hQnxWW7nfL0V2HvY5PW5P_NTp2Hf_2hd_JFfY04\" target=\"_blank\" style=\"color:#00a4bd; font-size:16px; font-family:Helvetica,Arial,sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:12px 18px; display:block\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"YhyX4DX3\">\r\n          <strong style=\"color:#ffffff;font-weight:bold;text-decoration:none;font-style:normal;\">Register for event</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:10px 30px\"><div id=\"hs_cos_wrapper_module_17538452548153\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17538452548153_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h2 style=\"margin:0; mso-line-height-rule:exactly; font-family:Helvetica, Arial, sans-serif; font-size:30px; color:#0e0c29; line-height:125%\">Upcoming Webinars</h2></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:10px 30px\"><div id=\"hs_cos_wrapper_module_17538452576344\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17538452576344_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h3 style=\"font-size:17px; margin:0; mso-line-height-rule:exactly; line-height:175%\"><span style=\"color: #000000;\">Data-Minded Recruiting: Building Hiring Funnels and Choosing Candidates Without Bias</span></h3></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:10px 30px\"><div id=\"hs_cos_wrapper_module_17538452591365\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17538452591365_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"mso-line-height-rule:exactly; line-height:175%\"><span style=\"color: #000000;\">Our own Shannon Ogborn, Community + Talent Advisory Lead, is joining SSR for a webinar that explores how traditional screening and interviews can unintentionally filter out top talent. Moderated by Shiran Danoch of Informed Decision, you’ll walk away with actionable strategies to reduce bias, increase fairness, and improve signal throughout your hiring process.<br></span></p></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_17508987892013\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#473bce\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; border-radius:25px; cursor:auto; background-color:#473bce; mso-padding-alt:12px 18px\">\r\n        <a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-vY5nXHCW5BWr2F6lZ3pGW57RgbM3cFlmPW7WkRFP6YQf_TW1tltbr6NwmX6W3MSpyW15jwkXW6R75Zc4BzplqW4kdWHV4DWfbWW1tGW9N2z3lMBW5Xqpzh4pgYX2W10CCHp22xcPLW4tzp6P2KGZ73VGCh2c5jywLxW6jnd2G7-7f15W6sR6Bn5HQFlgW8pTG5H5tLt7lW5jwjsT8kN-RNW7SF9GY3KC9pdN71DBx6Bh2szW3_b9lx1HHw0lW2yMZD55RFhwwW1K_1lP56PPpMW3TpRrp8HwKtDW7R0Lrt4DbBn0W7B2dXy4k8p6WW7sj-616TQNrwW7V67CM6nWWmZW7Fwcjc5rG3GRW82jSH3702GRDW2xNDVw7w5Jd6VNkJ1M4PHGCMW2c7Msq8S_B9KW97bJp57qwgV5W1cqBW56hVK1MW7Q0Wd65WwNQrW597JKw6s7p_nf1TvWB604\" target=\"_blank\" style=\"color:#00a4bd; font-size:16px; font-family:Helvetica,Arial,sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:12px 18px; display:block\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"gdpUkC1K\">\r\n          <strong style=\"color:#ffffff;font-weight:bold;text-decoration:none;font-style:normal;\">Join the August 26th webinar</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:10px 30px\"><div id=\"hs_cos_wrapper_module_17508987529921\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17508987529921_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h2 style=\"margin:0; mso-line-height-rule:exactly; font-family:Helvetica, Arial, sans-serif; font-size:30px; color:#0e0c29; line-height:125%\">Recent Guests on the Offer Accepted Podcast</h2></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:10px 30px\"><div id=\"hs_cos_wrapper_module_17508987554862\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17508987554862_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"mso-line-height-rule:exactly; line-height:175%\"><span style=\"color: #000000;\">The <em>Offer Accepted</em> podcast brings together top talent and hiring leaders to explore key strategies in recruiting and talent acquisition. Our most recent guests include:</span></p>\r\n<ul style=\"mso-line-height-rule:exactly; line-height:175%\">\r\n<li><span style=\"color: #000000;\">I recently shared how we’re scaling Ashby with intention following our $50M Series D. This <a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-x63qn9qW7Y8-PT6lZ3pwW4QgYPM3_7mQPVHmBJk4hcjkRN88Lv7Gx-yW6W8hxlgc6SlTkDW59v6DB9bhkkGW2M2RDR1qx3HrW8cxwZ64HDG_hW8MHmZg28FCl3VYTmTH71-PPzW6RPHM75bb_wNW5lbtsz7kG0vXW8LW3fY6XJdvKW5r3xVj2H163LW48g7-l7CgyjJW2xYk1Y6-sL1VN5nsjpPXPw1MW39WgVP6FkZFyN4fBbjCpK8Z6W3k_q8V4n2RG8N1GH01NYp6_dW5-7xQ92-p1TXW2P057V7DQ69jW8zqsbs8HWV7JN2Zwt4zZg5rFW5WvTxZ85Y9FVN45LJ38LlJJ9f88MHYH04\" rel=\"noopener\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"4lOWmAdH\" target=\"_blank\">episode</a> covers the operating principles shaping our approach to hiring, product, and community, and why early investments in quality of hire and RecOps continue to guide what’s next.</span></li>\r\n<li><span style=\"color: #000000; font-size: 16px;\"><a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xK3qn9qW95jsWP6lZ3pWW1RWsZN1d896CW98T3-86-d9jfW2RVj6b2XPFJZW8m13YY24CY7cN125V8rBNsNlW6hYK6C2_8fpbW2dmNqD6xN3krW2hxKtk1KGQp1W8G06f43DKnLXW3XBXmv3ynF9yW5PT-Dd5GhXkFVTB53z2x405rW5D0D-t4pWQnbW5hTjQY6g_NJvW2WT3g560lRlMW474PFt2Pm4SnW5v951h7mLSq_W3t3jl07lMYpqW5CLlFY5041JtVKMJHv4D-4XKW4yyBZC2P9rwrW59xjwr454XKLW8D0VGX94wNZWW6krtQ9117p5cW5f4gMN8CkjgDN20Yp1s7PChmW6YBsjd3x9VCvW8kMMht3ngJgWVr0vc02jHzt8W2S80WB64PrlYf1NLZR-04\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"BnFHeH40\" target=\"_blank\"><strong>Dr. Kalifa Oliver</strong></a><strong><span style=\"color: #000000;\">, </span></strong><span style=\"color: #000000;\">Director of Employee Listening Strategy at Ford, shares how internal mobility can fail and what recruiting teams can do to fix it. She explains how vague processes, outdated rules, and manager resistance quietly derail internal moves. Kalifa offers practical ways recruiters can bring structure, fairness, and equity back into the process.</span></span></li>\r\n<li><span style=\"color: #000000; font-size: 16px;\"><span style=\"color: #000000;\"><a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-vF5nXHCW50kH_H6lZ3kTW6kTl0922qt_qW3cKTk96QzbS0W8VnV193QXGpDW7X291J1dYQvrW8k2Fx94lKzKqW1RTYXG3xF649W55xtFD75LnQhW3rT0lN21Wl4QW7zb_wG4RklpcW6MXBY-74Lk6CW2XMSJ52r8b7xVHNVG26hkFpsMZN69hpb372W5vLrq95St51zW7bdjbh2Kcv3nW7rKzlZ5y431_W6HP-Lw6ckD7jW4ccqKp5B5FVGW7Lgm_M7PvPJCW77WP2P7NFs3BW4FmN0G9jMyYVN5x9-NVhtw_8W6qwYtj7w_jy3W8tlPJt40twsSW7w7Ks27CjpRmW8K25X55Yw9d1W50RN1Q398_LlW5YcRpk1KdbdlW4VvD6_7pJJCRW93s6083w26LlW92swz06z-tMbW1pQBbn4Fl1l8f1B8T4C04\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"QeJsbKdq\" target=\"_blank\"><strong>Heather Doshay</strong></a><span style=\"color: #000000;\">, Partner at SignalFire, breaks down what structured interviewing really means and why it’s so hard to make stick. She shares how to train interviewers, get hiring teams bought in, and use scorecards to drive faster, more consistent decisions.</span></span></span></li>\r\n</ul>\r\n<p style=\"mso-line-height-rule:exactly; line-height:175%\"><span style=\"color: #000000;\">Short on time? Browse key insights from each episode on our</span> <a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wR3qn9qW7lCdLW6lZ3mbVyv4Ly917kx3W2ZKqvS36G5kmW2KTZVR1Fj5s1W8gT3lY3QW3G8Vrp2wb70phgPW3D7XBF1yC9VlW11wB8P2bqNqMVQDdC75g1fTYW558wMz1VSs--Vk4r7k6Px0RlVBYXXQ8PsBz6VRs32c1Y7j9JVkcXQX6WFZ-FW2LZ-TP1pkHFVW98JFKy9k8Gp9W7NnCq35Dx6d4W552VYm6hshp3N8WjxflkbBcTW639lZM6hzFP8W4dK5-b8L5mH-W1wHGkF6h0HNwW5Z1mx91NRDd6W6Kn2kC1nfYXDW6HljVB8L3P1Rf6XY7bM04\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"/ucOvPqi\" target=\"_blank\">blog</a><span style=\"color: #000000;\">!&nbsp;<br><br>Subscribe on <a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xq3qn9qW8wLKSR6lZ3llW6QBSBf8x5GrvW48QVzc3V80gFW90l3jH3NqssHW4-wH-47HgcgyW1HR6MR1n80QdW4yRqnv3k2YsGW4XKN9-1f0sP-W4qLgF05BGNlZW2b60pk3wVHrwW4Sm-z47KtFgKW5lGScS6n_Pj1W8pLS4M3CtzMNW7MwFwJ2dL4PtW1L5W535sDss8W1s759c3QTfYqN5twg_hRgxNNW8Pvb-x3DVhSLN8YHYGwmCVP6W8dpKvM7mh9KyW2S9GyG2qgNxtW6N7Ks88r7B6WW5LTL144JsKhvW3wSCwG5QYY_FW1pknJB4n6jrBN8bvwGqntxRsW8HPcWL5S1jklW83NHgp629chxW8P_071800_mVf7YrgSF04\" rel=\"noopener\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"FpzmPcuo\" target=\"_blank\">Apple</a> or <a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xK3qn9qW95jsWP6lZ3lJW5zS26w89Hy0rW691r7Z5pK628W7QvBc13w6-MfVjCktY88QMKkW8fzhH598DhlCW8wLlFf6kFR7-W42Q3cB6XY8VlW53y5SD5qgG8fW7dBgPL2wJz6WVnb5D84RqHgXW27xTZQ2lVrL1W5RF9pm8Ln0JvTrKMR8N7TmJW8YzRMr54nrYSN4wlKns4zgC-W5Xmvl17T70sfN8QPvGJr8-qTW1cFvVp2RPsJkW5jG6b84s08NcVbpcZ61VwxsYW2r79ys4r1YPyN4FVSp3xk2S2W4LJyRV4X4Z4JW5dLbT85-dN7VW2kQrwS2tZNTWV1--dR489tSDW6BYD0q8W2DYTW3xg4Sm7pmTJ5W7XdjdD7wq567W1YgFY71bqqWtf7TtYpY04\" rel=\"noopener\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"5q/TL2cp\" target=\"_blank\">Spotify</a> to be the first to hear about episode launches.&nbsp;<br></span></p></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:10px 30px\"><div id=\"hs_cos_wrapper_module_17248789524024\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17248789524024_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h2 style=\"margin:0; mso-line-height-rule:exactly; font-family:Helvetica, Arial, sans-serif; font-size:30px; color:#0e0c29; line-height:125%\">Recruiting Takes and Resources from Around the Web</h2></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:10px 30px\"><div id=\"hs_cos_wrapper_module_17248791748159\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17248791748159_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><ul style=\"mso-line-height-rule:exactly; line-height:175%; font-size:16px\">\r\n<li style=\"line-height: 175%;\" aria-level=\"1\"><span style=\"font-size: 16px;\"><a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xK3qn9qW95jsWP6lZ3kGW7KM8vD1H9cqtW5fkrnj88QGXHW8nJjpp11Bv5_W4jZJ0-7HBQ-sN83MQClMF6JqW8_wvVQ1w5v9rW5f5QLJ4FzkWzW732hdj7T3cqPW9d-0rK952cTkW1md5FP6hVQ1bN5Nw0SlMcr-HW8rycHK91p2yXW2j6NpW4p5KqtW58NS6K2hhv0pW3ZGcsD99fY0-W8fCb-S4vSc2_W7SY-c41D5WTHW21_FkG7RlhZXW89_GJ87Q01XKW1tWcZx4Mh1WzW7vqPK_5zwqz-W14m25f5ZNJMcW3ZH_S63tDvcQW5QJVj31Qcz92W97pM6L6yH_FZW9khkR43Csg5GW71y9W321TsVwN5JLXDzbrfx4W5HbwKr3-WV5VN4mD4WrnTXGPf2MQ9sH04\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"PK4kO1yn\" target=\"_blank\">Candidate Risk Detector for Hiring Teams</a></span><span style=\"color: #000000;\"><span style=\"font-size: 16px;\">: </span>With fraud on the rise in remote hiring, this Zapier template created by Casey Firey helps recruiting teams flag risky candidates before they reach the interview stage. It checks IP addresses, phone numbers, and metadata, then alerts recruiters in Slack and logs notes in the ATS to keep your process compliant and efficient.</span></li>\r\n<li style=\"line-height: 175%;\" aria-level=\"1\"><span style=\"font-size: 16px;\"><a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wR3qn9qW7lCdLW6lZ3q0W1XPn2H79k5jLVvf4s17HR519W6pw1DH43LdyrVDQhNJ3SpHZxV5bmkY5p81dpW55zPzT5Bqm6TW1tlXpZ6kzFvhW4PZ-r17Bmf4NW4PxPy36n3HK0W5HQ-Y46GwSp4W79mN3P3m9PDSW6gRhwH6BNkvTW5bkWR13KcZ3MW6k3PBP3rtnvPW7LM19k85vThSW25t_L357R5j1W9cmKKF6xxYqbW89x1zG81FHCXW2qx-Lc7z0G9jW5hChzP6Z8p0pW2NQFxh8sR_sVW809PgF58NHWRN2PKg5vfYnd5W3gThl62R4dWXf3GShdn04\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"38DPxx/N\" target=\"_blank\">State of Talent 2025</a><span style=\"color: #000000;\">:</span></span><strong><span style=\"color: #000000;\"> </span></strong><span style=\"color: #000000;\">Redpoint’s latest report shows AI companies pulling ahead while most startups stay cautious. Entry-level hiring is shrinking fast, and top talent is commanding higher comp with leaner teams. Recruiters are shifting to more strategic roles as AI handles admin tasks, and technical roles lead growth across the board.</span></li>\r\n<li style=\"line-height: 175%;\" aria-level=\"1\"><span style=\"font-size: 16px;\"><a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wd5nXHCW69t95C6lZ3lzW41mqNN8H7yXsW3sqxBQ2v-lQyW1wyg3_5TvlmbW6FfzSm5skwq2W693kY4921WhxW4j4fjZ3dzddGW2FNbQ077sFhqW29vZJV3KynQwW7RbRpl40SQp2W6ZLC6g7JJPZfVKpfFP6M45JjN8pMRH8GtLYyW4mZT294SMTgvW13bvKQ2Tr5PdN7mlq7r-KvtFW1CZNLF3kNCJ3W8JpY0g2blPcLW8-v_CB2dpF2_VcMLNp5Vm-FjW2qwFzK2kqN-6Vhv6tS5QK-DwW6RrKq81KX3dzW2DbpFb6KT9VCW3GZJ-Q8fMxR1VLkt3X2lS64kW6xS0k38GwTVlW4x1fzz4h7Y6tN9622xv5Cpl_W3czsXV4H6mKmW5-Ctz_4bndrFW2-wPNq1shGBHW2lvjQR547hWpN37RSM-gXgF6W6FyxB04qHXLPW6T77sf6BmmYyN6CdnksFvRwjf5SBYCC04\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"49jjqB6E\" target=\"_blank\">Sharing Interview Questions in Advance</a><span style=\"color: #000000;\">: </span><a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-x63qn9qW7Y8-PT6lZ3mZW6_qKMK8sRQVVW4f5h5L39WCfpW8bhNcq7JqJP6W46RVwn62kd1kW3qYYFn21-dnMW1T6g-Q39hsBqN1nSCFFCdtWqW8Fdh-B8H18QLMWdWrxSZk3MW5pLRH25NprPbW7rXYPW5_QDjzW8khKkQ6L5svDN7LynCh4cNpQW73XDML6MbMcSW2lJ4S094fQq0W9kn-Mf4g9mFxW6_hdN66VNr0BW2BCfVR5TFGQfW5pvPy71wMclXW3TDd4_8jqllWT5T6p7wxMnxW5-cGvN3_7qWYW8sxCCp81nzzxW2L3myZ7qH-W0W2h6PT77CtKStVZ63Fp7QBjS1f5Mq-5Y04\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"9luAeC/g\" target=\"_blank\">Emily Paik</a></span><span style=\"color: #000000;\"><span style=\"font-size: 16px;\">,</span> a Senior Recruiter at Kit, shares why they give candidates detailed prep ahead of interviews, not to make it easier, but to make it fair. This approach reduces stress, surfaces clearer thinking, and helps evaluate judgment over quick recall.</span></li>\r\n</ul></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"module_1681917645885\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; Margin-left:auto; Margin-right:auto; background-color:#ffffff\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"module_1681917645885_0\" class=\"hse-column hse-size-12\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:10px 30px\"><div id=\"hs_cos_wrapper_module_16823329640233\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_16823329640233_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h2 style=\"margin:0; mso-line-height-rule:exactly; font-family:Helvetica, Arial, sans-serif; font-size:30px; color:#0e0c29; line-height:125%\">Partnership Updates</h2></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:10px 30px\"><div id=\"hs_cos_wrapper_module_168191764585012\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_168191764585012_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"mso-line-height-rule:exactly; line-height:175%\"><span style=\"color: #000000;\">Our Partnerships team continues to extend our integration functionality. There are now 190+ integrations in our Integrations Marketplace and the list is growing weekly! Here are the ones we’ve added since our last update:&nbsp;<br></span></p>\r\n<ul style=\"mso-line-height-rule:exactly; line-height:175%\">\r\n<li aria-level=\"1\"><span style=\"font-size: 16px;\"><a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wR3qn9qW7lCdLW6lZ3plW70QH1y5sWMDgW37y8ZH36Ts0pW2DsLQv3dtZ9WW2m5j_82WzkSZW6knwLw50SHhvW76wknP8pHzjgVnyc-92jJVgWW7j6WXD3lfD6jW3w-XJG1Xs2-mW1NGjYL8rpTrlW1sVzdK5pn2dvW7Pr3P-5dsTMKW91YTT_1lcd83W5mtsLG46rSCMW43ZBX64hj6njW5MJqj238tBtPW1mgDwf1XWXkLW8m8Y331_8Dw_N6XTsXZgSsJjMRJq7kMHLLnW1mNdYH7_dgqKW8b7k-V5QlyCsW1l-6_m48cjGdW2GtyQm5sB9yHdc0wHR04\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"t638xRIG\" target=\"_blank\">Asendia </a><span style=\"color: #1d1f25;\">&nbsp;[Interview Intelligence] - </span><span style=\"color: #000000;\">The Asendia AI integration with Ashby enables 24/7 AI-powered screening and prequalification. Candidates are invited to complete an AI interview, and structured insights, scores, and summaries are automatically pushed back to Ashby—directly into the candidate profile—eliminating manual review and helping recruiters identify top talent faster.</span></span></li>\r\n<li aria-level=\"1\"><span style=\"font-size: 16px;\"><a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wR3qn9qW7lCdLW6lZ3mSW7qGDqF7p5LBfW6_nVjC9csf5hW4TKWvF6RsGXwW6bQTck2-pfvLW1jC_RM8dyDFNW6Ty_Q26SsCJFW2TSg3d3YXzb0W6GVY2L3HDPv8W4hS0L_3c1S7_W2ZDjGy8dD_PyW64LPpf6qkcF5TG0ST4H1DlmW5bMnYJ4zQjWmW5DpNJF590Vz5W5cjLwQ2yMDqvW4nc-N78dRB_xW57BDhw7H6JgtVW-ym02jLTwmW54jkty5gM1LZW91Fmm875Q4YJW8lPMrG3_N89XW7YzmTQ1qh5rHW7hV0V5508yP8W5pQj446Rn086f4ZVqFH04\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"WIzO1+Uk\" target=\"_blank\">CodeInterview </a><span style=\"color: #1d1f25;\">&nbsp;[Assessment] - </span><span style=\"color: #000000;\">The integration of Ashby with CodeInterview.io enables the recruiters to generate automatic interview links and streamline candidate management.</span></span></li>\r\n<li aria-level=\"1\"><span style=\"font-size: 16px;\"><a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wR3qn9qW7lCdLW6lZ3nqW7ZsqY8143f28VBPhmm21zGqMW4yhC4g5-_tHMN49bFm_ky37YW1CbDtw3qZrV7W8whHFY1PMp5lW7sjsGv2XNVJdW1BvL0d6LYf_JW6z-Db35zd9JqW3s17Nk7h52WfW4pgQ_N49XgKkN6L7Vp98-BWcW1zZvQk8lBw_YW8kGFl989HYb8W70RZdL85z224N1v3GNdvCWRrW1F35wm6_7-GkW2fKfPX3rqvkZW5_2k867MnPDpW2lcmfv5TRQ4ZW6tp8467qx8NKW4zRvw98L-f37VdSrrQ4lRbPKW5MfPyy45YLD4f8ZSQl004\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"aatOoark\" target=\"_blank\">Remote Interview</a><span style=\"color: #1d1f25;\"> [Assessment] -</span><span style=\"color: #000000;\"> Remote interview integrates with Ashby so that you can seamlessly use the two products together to add an assessment to your interview pipeline.</span><br></span></li>\r\n<li aria-level=\"1\"><span style=\"font-size: 16px;\"><span style=\"color: #000000;\"><a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wR3qn9qW7lCdLW6lZ3kCW6rf34N3GVfwsW2wTTdW3LJjtsW7njL-98hGxGtW6wm0cv5-qhnvW7Qnlbw3s4tsmW2FDd026sBVngVkhKh53bb1yhW3wPctJ5XTtLRW8jD8Bd8cHgNsW8lS99S6YTjGdW2l8Khg19rRnDN55cWtmM99CvW2MG5rM72_0DjW2lT7zY7C5Y8sT-t5n71bY1yW3k7b176k0YGLW1d7jVD4dWW8hW2PbM2j4Gd0d5W2sY2VT8-kyjtW63pQsC4xB3l3W4h4wFt8lgsdtW4vQ0Kl3gGstZW4szf067qzJ7MN7ct_lp90Pryf681plM04\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"UiGkr16i\" target=\"_blank\">Guide</a><span style=\"color: #1d1f25;\"> [Candidate Experience] </span>- Guide’s AI-first scheduling agent syncs seamlessly with Ashby to automate interview coordination and deliver a best-in-class candidate portal.</span></span></li>\r\n<li aria-level=\"1\"><span style=\"font-size: 16px;\"><span style=\"color: #000000;\"><a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wR3qn9qW7lCdLW6lZ3kxW4RtZD74CMV2MW30vqpP3hN11qW3_hdW58JBFBVMFp-q5SGLKSW7Vh3bV15Lq8NW8vd4DM6Tyzr1W5spRww2BhM2TW3yn6936CFZyZW6dJ3bK748t2vW5Qm9F26hVCNsVWvB8h3rT7cMVcK1vz3T7PSYW7MFKKT5gr5qNW6SHs3D8_2JlbW6Zt4N-7s_rgNVdYcCD4JnTH2W2cGf3-8Tnv6XW5XFmqx7y280SW4bKXm34PqZ7mW22BkjJ6Kk-Z_W8tm-823Jr2vRW42XKSZ3NfyvSMmbgrClvrJgW32fJQW7bBvVXf1hZCRC04\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"16Ked6C5\" target=\"_blank\">Nova</a> [Assessment] - Nova is an AI co‑pilot for recruiters that integrates with Ashby — saving hours on screening and helping make faster, more objective hiring decisions, while leaving every decision in human hands.</span></span></li>\r\n</ul>\r\n<ul style=\"mso-line-height-rule:exactly; line-height:175%\"></ul>\r\n<ul style=\"mso-line-height-rule:exactly; line-height:175%\"></ul>\r\n<p style=\"mso-line-height-rule:exactly; line-height:175%\"><span style=\"color: #000000; font-size: 16px;\"><a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-vF5nXHCW50kH_H6lZ3mvW5ZTJzY7ZsKcLW4xXSP65ykM2PW6_KZYY4l-QYTW8QryZt2sjbyyW5sJTw1853r44VxnT8N5cyh3GW8cFDqy7j8WvVW7jcnxn7Cz7_MW5_l0z36PmHCcN1XrjHb30jdtW7H5Fj44cl7FYW80gs2q7bFg8pW31zf8X57flCxN2DTVCzfNF_ZW6rkkNS3MJZWtN8h6jL2NcpBCN5FtWr1V-tmfW87VlNS5NbbR3W1FNH-m65MZ_2W4FhLwy34b7S7W46h8Zz6BmhLTN3b3YdpdcKBVW8HzKCL822FJXN7J97FrMhTjnW8s3mcG2dCWWMW490F5B4St80LW1gymYn4wQZd_VwxfrV9j_W9-W7H21n38K55FPW4csS7R86v4mgW5mSRM18DLc40V3X-n35qRf3wf4pqP3q04\" rel=\"noopener\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"Pm8nLVEF\" target=\"_blank\">Check out Ashby Knowledge Base</a><span style=\"color: #000000;\"> and</span><a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-x63qn9qW7Y8-PT6lZ3mYW8lNxmM7qysQQW2hQ2s593J6TqW4W56lM91_MtRW5s1C7T2M4Zh5W5WNdWw5w1fbvW7npgPv1fqmbFN43RL55cVBr5W6c1hhC710GqJW83Hmcy5RfvQ4W3N1mm53h30lBVcbRRD9fM6PrW4bnLMz6zZxm1W2_7gvM1LV8XFN3y0mxQv0PY6W13n37P5L5N30W1RdyXG7jqfhvW4FR2_m2wMmYRW7m29C85GwBS9VS1K3r58YXBrN7kjNXB1gqjYN7VnjRrJQ6Y3W8Y9nZl1sKV5DV3xz1C1VPG_bV9Dq5N5rBdmNW5pWhLj2cw_jjW8D59-F5DdGrFf6hqz9F04\" style=\"font-weight:bold; color:#000000\" rel=\"noopener\" data-hs-link-id=\"2\" data-hs-link-id-v2=\"x1IqG8X5\" target=\"_blank\"> <span style=\"color: #1155cc; text-decoration: underline;\">Ashby Release Notes</span></a><span style=\"color: #000000;\"> for more information about these features, and reach out to support@ashbyhq.com with any questions and feedback. </span></span></p>\r\n<ul style=\"mso-line-height-rule:exactly; line-height:175%\"></ul></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"module_1689592645143\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; Margin-left:auto; Margin-right:auto; background-color:#ffffff\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"module_1689592645143_0\" class=\"hse-column hse-size-12\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:10px 30px\"><div id=\"hs_cos_wrapper_module_16895926450842\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_16895926450842_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h2 style=\"margin:0; mso-line-height-rule:exactly; font-family:Helvetica, Arial, sans-serif; font-size:30px; color:#0e0c29; line-height:125%\">Ashby Customers Hiring for People Ops/Recruiting Roles</h2></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:10px 30px\"><div id=\"hs_cos_wrapper_module_16895926450843\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_16895926450843_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"mso-line-height-rule:exactly; line-height:175%\"><span style=\"color: #000000;\">Looking for a new role? Here are open jobs hosted on Ashby that are live as of this newsletter release:</span></p>\r\n<ul style=\"mso-line-height-rule:exactly; line-height:175%\">\r\n<li><a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xq3qn9qW8wLKSR6lZ3nKW6lcdTY7DWhL7V4VhLj7t7m4fW8SDH5v7XnTyXVrL5-S88fP0qW7NVvY-8cXwbXN40p9jrpgn1NW86Ly831McwVfW4QrxRh4VYPZgW8z63nK5g73R3W8JH0jX4pHlfHW2T_SRc2Pf-kFW7Ccyts5My-w8W1Hr3P97tfqHbW1H0F2_4D-P5BW2SpPwf4K56ksW4DDQ0G266tmyW2QJf2t9hDsTvW8vqmdG8c29nvW1Qv3dF9bZP-xW7XtRKq7FcBxdW7nfzDQ6QDZKrN8GVdK95WVP_N1PbgTXZzkxsW1MJQxC7GLv36W3_sy5k2v4hVQW1Pnkp4902vLSW84T24R8ymS3gW4d2PmX2qcsmhf453ZPC04\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"O1zoQPJ7\" target=\"_blank\">Head of Talent @ Rain</a><span style=\"color: #000000;\"> (New York, NY, USA)&nbsp;</span></li>\r\n<li><a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xK3qn9qW95jsWP6lZ3lkW5p-7Y65L1gW7W2Tyh9R4xqfVkVYt3Hv65rKX7N3PNfYY4JSDxW7HD-ld25m5wdW65yC437Mrd_GW9bR2w42JY3nlN62WjG_bdG_7N1prfKZ_NNGQW21g-NZ1yMqkcW9gfxWS13rdztVvNSFf2j_tYpW1-3Xxh5tx86jW7pWH002CsKZPW7KkK2B7qKT6fN4LBfzqxlbLFW49KHL02VqfB6N4DGXpYWz7lMW42HwQX4NPjKMVhx_C-7-Z2VhW2_rcwM3fv35tW7Shzy96t3rQLW3cC9F336RQJyW2Tgzgp5ZYTxYMJqv9jw7PF_W92Jkws3g41PQW1MHJR37xvW4fW6_yR5v2dfL51W7DjHLb6V4_-gW3RMyhb4rWQz6dltl2n04\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"2Uh12JJr\" target=\"_blank\">Head of Talent @ Numeric</a><span style=\"color: #000000;\"> (New York, NY, USA or San Francisco, CA, USA)</span></li>\r\n<li><a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xK3qn9qW95jsWP6lZ3mMW2kdYsL5BlY5dW4Wdjl336VL-sW3FtFtW8jjR7lW1jM1lh7d37QlW4ZD7yZ4sZl0cVWCP1p3bxk8YW8PFsy81xVVVWN8Z11Q4zJMcLT2m8t4dtdh_N87DvmX_1vmZW3_FZxM7hPvpLW8-yPbS8n2NC8W7_-94d1qfyqxW6NKmjD8yxjKPW905n1X8Yh99lW1ClsKn6LJYNYW4dGnTG87SyfnN2tVfQYxSCD7Vrn2mX20d30nW8sv7GP3FprMcW6S4mFt1v0jVJW8Tv8p51TrwwHW8df69H93yqTwW4w-wbQ1gLTcgW9g8Gby7N0T14Vk8NQc7FCFkHVlZ8Wl4ks9hGN6KhJhRYT34LW76SkBP5dgCscW5sGw647HgV_pf14kRBg04\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"xN8cRD/D\" target=\"_blank\">Recruiter @ Stedi</a><span style=\"color: #000000;\"> (Remote, USA)</span></li>\r\n<li><a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xK3qn9qW95jsWP6lZ3kyW8wmW7C5gR9d4N8Bf7BFB76ykVmsXWB7HmLGbVW-WHS6yH3jHW1qkzGF1wQdSjN3qL8S0xJh4jW5WLk6H385WRBVkYGMw3pZB51W5j6zMM2dPv8CW7bBZLC46FqHnW6nycxp3KZSTzW27KKN540G-tkV2l1p51C5FjRW9fK71h5d0DqDW2c1xqD5nwjFZVJQvl542DRGqW1bBG8q86D5ljW3JxvrY1C-D4kW63kgQP7x4Vw7W3ZZjsP7D1L_CW4nmChk6c9cW9W4QPb_16yndMMW4D5Lrx1JfHKjW2qs_SH3BCWJ3W4Yw9Cb2dPnk2W59bwt-7rQRtXW41tV407vQTMpW97qfz38dPWxFW6QqBq83RLP7ZVCXpGw8cHchRf5J70KH04\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"ToZoyiBJ\" target=\"_blank\">Principal Recruiter @ Jerry</a><span style=\"color: #000000;\"> (Remote - multiple locations, USA)</span></li>\r\n<li><a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wx5nXHCW6N1X8z6lZ3kVW4x7RvG8z6W2LW6Jv4gR882qZGW3jC07l4x3RJTW90V6S17JhFltW2R9N2c52_R0QW9jD4085hzRFLW9ksHgF9050zpW8b3sBn8TXfKDN1ftp-sQ1dCLN1kRwVQfvXf-W7MpvK_7dv8G7W5Vlq7640Htk_W3PNmwT2kxF2fW7-WMRZ3XLws5V4pznx3_2M2BW6xRfsR6FVh_kW263Lxc4BGGjYW4MS_PG8vHKJCW5tXdp-3kqW_QW3YlZsV68yqSVM4sPsD-n9jvW4qRd3n66JLn3W4GX83Y4w_mTtW4vtspW1RvflyW7_TQ5R2gD_3_W3dG9h013y_t5W1fY97c2RTtjSW1k1c9v3CFb-MW2v96L34SW8ChW77NJk82nRrcdW2BMKHb4Tj6wSW6Bn_484fY4VZW1dVmCl98P-_1W5NTsB54SN_0tW4Pq7586xR537W1Z2phD4-xZNbW3jBvzb8LP3-mW6R9-Sv8_7X_0f5YrbV604\" rel=\"noopener\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"eai0tHqG\" target=\"_blank\">Senior Talent Acquisition Manager Tech @ n8n</a><span style=\"color: #000000;\"> (Remote - Europe)</span></li>\r\n<li><a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xK3qn9qW95jsWP6lZ3kzW6xMMmP6fC4_TW5j1B4t77F5dBW74rd6K8vKQJkVh18R91bV5GlW6MFY4y7StcQDW6j-gY12jWxLWVJgK5Z6rxWBFVSy34W87kKHsW7WlTHt6p2963W2rR9p71tLxFWW6g8Rc-3B1p_9W3X7z0Y4n4VSRW68L8VT664gWzW5WJF4W6hcn97W8HXbqH7H3cyYW8QWz5S1Xwr8gW3LYZkN6h1CfBW64l-Xp3Cwfk7W7zX3Hn2X1f8XW3tcF_p6tLScXN3rCSv3YTG_mW1gdMZ53m5FbXW3g09wX1mNjJVW2-kwX93mpGb6N2Xp0sqTP8wsW5-zWl25DN7yHW21zP527M_ygjW7yyPqP8fftbZN5BVxCVrZrFPW4Mhxtk7tW7Dsf2yJPvn04\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"4/3pSd7e\" target=\"_blank\">Head of People @ LI.FI</a><span style=\"color: #000000;\"> (Remote - EMEA)</span></li>\r\n<li><a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xK3qn9qW95jsWP6lZ3p2W28fl-_2KxFgwW6-BMbd3rdlNYW6wKybN8_2psYW33VNHg9hhkh1W1-74_Q1fjb1MW9jsKgG8pn8TgW1x6gfC6lnSwQN1hw1mh2MflkVs727p6KX22WVmVyVN5SkGy7W893LBT1-hYYTW7DcnbC88fWPMW2Vdg0-8D13LzVjYNHR8vjBF8W5_n6dj6ytHz4W8NzJxj2vQP7sW3VDwmV7XFzQLW3z6P1K2Yp0CbW7Wqmxx88-VLQW7fvsjW6cWQrFW73svlw8ChMBDW70CykN6MrT3TW6QMZbG237RYwW4rj6999d4VTyW82lVyy4KMRMtW2_pPbF5tb6HfW4q5W9V6-1-pwW8T-pwV7GKlCzW2Hs_yy2Z3PTNN39qVMRPpdypf5jLJ-d04\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"j+MW0irf\" target=\"_blank\">Founding Head of Talent @ Omnea</a><span style=\"color: #000000;\"> (London, UK)</span></li>\r\n<li><a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xK3qn9qW95jsWP6lZ3ptW7DkzJS5fT45qW36HQP03ZzthzW4NQw6g59B0RGW2m5WxV53R6ynW1wqBnv74HLmxW3HvTKl1pzmwXW6Q8WJh31Jm9XW3jd82B74G2F5W7RD5Zw4S8fR1W33Q37P56l8QPV6QMqs5ktmHkW3PTRsm7Rz8YLW3Pq8kl5sZLg1W4prTDv7dg2krN40XjNH5nWLZW5mdp0W2ZC6bdW2RbblG9cyGtNW68zZGJ1K8MSCN2f9YDhS0yXTW1bXsMl4sTDLyW8tqm1X39x1F3W4PcVL-7xh8MJW5bwr3v2zDn5zW27JxKT868-qxW6Nd5Lj5Z75vRVBnTgv5K3yjNW27FV4W1wbDTpW8sSLXp7MX_VfW7PF8WW8JYfFLN3mDZ6JmTrYzf7Z6w9T04\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"smX10sKg\" target=\"_blank\">Recruiter @ Sierra</a><span style=\"color: #000000;\"> (London, UK)</span></li>\r\n<li><a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xq3qn9qW8wLKSR6lZ3ljMQLxz_28vrHW91q76G3MLvzLN4R9QYMH-fhGW2zwq0219xlNGW83G8fY1D5BTyW1cnD6042sK5mW1y86hF7SW0tKV-TR1c850WpZW1lfPm68CBB5CW8qRSFm33BjPmW1gYKF45LNTY2W3x9xQ-2D96TmW5SpgNz3XjpgxW64ZBNy2HMCf6W8Zqd-02QXGlvW3tRDB11CKKC4W8gPpY93LDTGxW2vw9fF4FF_7lW6TcvVs8TdsRvW5BMl601w9D9CN6KmhLNq2QFzW7D9_yb6g3T-kW5XTLDn5Sg5npW9khbrC81L_02W8gq1r43Gh3J9W63fx322yjmxSW5dFxmk7ZrZ6NW8Q4Wr555xhQyf2tNjYd04\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"wPV4+AQX\" target=\"_blank\">Senior Technical Sourcer @ OpenAI</a><span style=\"color: #000000;\"> (San Francisco, CA, USA OR Seattle, WA, USA) </span></li>\r\n<li><span style=\"color: #000000;\"><a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wx5nXHCW6N1X8z6lZ3kPN1PTn5NjRW3CW37n-Dp6Xx5DYW2mHWd45XyP-4W2f5R5f5xkGZ7W3cb27Y72wZ7DN7zXrgz_K0qyW1RspRW11CrJBW33Jx1W8GQjS4W2z1vrf4NFvh4VC0Bq05qkHg0M-PqlfKlk91M1PNpV9HtjYW9dLSwn4-F9WQW3wVB_J84jZ7qW5dhbNc4_YzydW65nrdf6lGslrW83xH9v443mM8W38g4Qb4Tl7JnW3YlPnS8MNjj9W7pp0Dm4gQdmdW4kH95W74TjK_Vpwwr67XR4VWW2WZ5VY5-gqKlW97CjYB3sx9bRW2rCYCf7kw07nW8tkGqX4l9l2gN4Q-Sghn3Zn-W5tHXr45wgBXwW9dyM924hDyF1W5mpqzf8rcTm2V2bPGj73pJtnW1Hx7Lj3mpFT0W5LgSlB7mdttvN6sBPCn62Z8ZW6-3PCt7gR-FpW37S_rz3TsbgfW26409z4znClZV1QD-z8DbHFRf3T7zSF04\" rel=\"noopener\" style=\"color:#473bce; font-weight:bold\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"johsSj8D\" target=\"_blank\">Principal Recruiter @ Snowflake </a></span><span style=\"color: #000000;\">(Menlo Park, CA, USA)</span></li>\r\n</ul>\r\n<ul style=\"mso-line-height-rule:exactly; line-height:175%\"></ul></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"module_1682016818113\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; Margin-left:auto; Margin-right:auto; background-color:#FFFFFF\" bgcolor=\"#FFFFFF\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#FFFFFF\">\r\n      <tr style=\"background-color:#FFFFFF;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"module_1682016818113_0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module_16823578172374\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\" valign=\"top\" style=\"font-family:Helvetica, Arial, sans-serif; color:#666666; word-break:break-word; text-align:center; padding:0px; font-size:0px\">\r\n        <a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-x63qn9qW7Y8-PT6lZ3lQW73TVj03flP78W6J87-w3y-vy6N7KFd5ssMKCXW56xxpg7Tdy22W4CGDQh4j4VKrW82z6JR497b08W2ywsHG6HsjstW28zBm82cNZTXW7nSpLt1sSsmfVMkSLt5r6HB9W1G0v124MzGB3W1dfhh0731q2gW6QM6qD8zbmD9N2pVgj1m4hCMW5-Ps_Z94qjS1W2F94s51N4C6DW4hJWRr7kXG_JW2tL9C65jWJQ9W3kk4jD1fnxQjVMsWsx7Gtnd9W5yFsL81SkTZPW8C-GnZ68KjJNW8wdMKD70JK-RW58l29h1MTyV1N2xQcpZXzVz7W22Ndf_5hPsmDf31pRN204\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"CgEV1WeV\">\r\n        <img alt=\"Demo\" src=\"https://hs-4990969.f.hubspotemail.net/hub/4990969/hubfs/Demo.jpg?width=1200&amp;upscale=true&amp;name=Demo.jpg\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"600\" align=\"middle\" class=\"stretch-on-mobile\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; padding:10px 40px\"><div id=\"hs_cos_wrapper_module_16823577280112\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_16823577280112_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"mso-line-height-rule:exactly; text-align:center; font-weight:bold; line-height:150%\" align=\"center\"><span style=\"color: #0e0c29;\">That\'s it for now! Thank you for being part of our community. We are excited to share our journey with you and hope you will stay tuned for more exciting updates.<br><br></span></p>\r\n<p style=\"mso-line-height-rule:exactly; text-align:center; font-weight:bold; line-height:150%\" align=\"center\"><span style=\"color: #0e0c29;\">Benji Encz</span></p></div></div></td></tr></tbody></table>\r\n<div id=\"hs_cos_wrapper_module_16823326981951\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Helvetica, Arial, sans-serif; color:#666666; word-break:break-word; text-align:center; padding:10px 20px; font-size:0px\">\r\n        <a href=\"https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wR3qn9qW7lCdLW6lZ3mFW99Jm2-12sHc-W6ZFwT95RPlC0W4bghLN8czG6WVs8bPP7t6tB_N1HdvJMtPt2GW22yYgp3bJDKQN90-3ThJF-w0W8QR6BQ6vQFN_W1cQy6849VjswW4bKkpy7p_Zk1W1ML2qq82smZbW4PNpPY95ft4vN6RzHgfHwWbLW8Tg9tN77gmMFW78js9M4cXqX4W6HQHvN2R8tggW6bccRy5jfCxZW1-skJD4_Tmx8W6gbKjg2tFb-FW4g0sbk2375s3W4hQ_8s2Cy4hpW86nG3c6-yDk6W16YNr65nJHnZW51RxXD2hPHn-f7bS15q04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"QtzY6lnL\">\r\n        <img alt=\"ashby-logo_new\" src=\"https://hs-4990969.f.hubspotemail.net/hub/4990969/hubfs/ashby-logo_new.png?width=260&amp;upscale=true&amp;name=ashby-logo_new.png\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"130\" align=\"middle\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"module_1734558479580\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; Margin-left:auto; Margin-right:auto; background-color:#FFFFFF\" bgcolor=\"#FFFFFF\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#FFFFFF\">\r\n      <tr style=\"background-color:#FFFFFF;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"module_1734558479580_0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module_17345584795768\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table role=\"none\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"vertical-align:top\" width=\"100%\">\r\n  <tbody><tr>\r\n    <td align=\"center\" style=\"font-family:Helvetica, Arial, sans-serif; color:#666666; font-size:0; word-break:break-word\">\r\n      <p style=\"font-size:1px;border-top:8px solid #EEEEEE;width:100%;margin:0 auto;\"></p>\r\n      <!--[if mso]>\r\n        <table role=\"none\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-size:1px;border-top:8px solid #EEEEEE;width:600px;\">\r\n          <tr>\r\n            <td style=\"height:0;line-height:0\">&nbsp;</td>\r\n          </tr>\r\n        </table>\r\n      <![endif]-->\r\n    </td>\r\n  </tr>\r\n</tbody></table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section-2\" class=\"hse-section hse-section-last\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; Margin-left:auto; Margin-right:auto; padding-bottom:20px; padding-top:20px\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\r\n      <tr>\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-bottom:20px; padding-top:20px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-2-0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module-2-0-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table role=\"presentation\" class=\"hse-footer hse-secondary\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family:Arial, sans-serif; font-size:12px; line-height:135%; color:#23496d; margin-bottom:0; padding:0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\" valign=\"top\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:16px; color:#666666; word-break:break-word; text-align:center; margin-bottom:0; line-height:135%; padding:10px 20px\">\r\n        <p style=\"font-family:Arial, sans-serif;font-size:12px;font-weight:normal;text-decoration:none;font-style:normal;color:#23496d\">\r\n          Ashby, 49 Geary Street, Suite 411, San Francisco, CA 94108\r\n        </p>\r\n        <p>\r\n          <a data-unsubscribe=\"true\" href=\"https://hs-4990969.s.hubspotemail.net/hs/preferences-center/en/direct?data=W2nXS-N30h-M2W4hgYsl3K4C0lW30CFgh3zcHmtW49txrF4cQG1sW41qHkQ3C2hQKW41G5MY45qbvmW38yLHS4mHc9ZW1ZfhjV364yhtW1LB_kZ3V_3hhW1-Vyrk2szMdkW1W-W6m3XMHz3W3bjgdH3BP5c2W2PnWFw2RNBm1W3GFG0c2RH_wkW2-bpsC4hw47WW365nvN32bnzJW2w37lb3ZNNbSW3b2sJX2TGv1SW47Vr-53Kck0SW24-n7t4rF_zDW2RT-hW4rzj1-W4pHnXc2382T4W4cL1yC47yycdW1Ztkf234yg3DW2KSxh54fz-xvW4hy5Ln47Qbp5W3D_-9b2PMxQjW3b3j5p41Tp5rW2WMkKW3QLJRwW2sRsT430jn-dW3GM6gj2YMWTxW3NFVm72PCDmJW4ck2TF22WNPbW3T1hjt2xYgY5W1XskDf4ctRjPW3grN671NDTF8W30G6pB3yR39RW3X-PNn1Xr33gW3R3ywn45M_5yW1V2TZL3LQTHcW2sZ9dX2TyhF4W4fh_xj43T6mmW23mN352MvxYPW3DZ81t3P2W2rW3JQGbg22XHJfW3ZYZRV2Ytxy9W32J2g21Q0Tt5W2KQp4h1Q4B37W3bwTPX4fKs-tf3NVnt_04&amp;utm_campaign=2023-NL-Offer%20Accepted&amp;utm_source=hs_email&amp;utm_medium=email&amp;utm_content=373598380&amp;_hsenc=p2ANqtz-867E6CUDw4JveJ6qPgdQaAsvoaepA8la_uRPA6UXHm-PaPik1r3isAwtH5wmy1U2Zc3GMpj7IWW3rbA-4hFjnRyU74oA&amp;_hsmi=373596923\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:12px; color:#473bce; font-weight:bold; text-decoration:underline; font-style:normal\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"SFRZzEXk\" target=\"_blank\">Unsubscribe</a>\r\n          <a data-unsubscribe=\"true\" href=\"https://hs-4990969.s.hubspotemail.net/hs/preferences-center/en/page?data=W2nXS-N30h-M2W4hgYsl3K4C0lW30CFgh3zcHmtW49txrF4cQG1sW41qHkQ3C2hQKW41G5MY45qbvmW38yLHS4mHc9ZW1ZfhjV364yhtW1LB_kZ3V_3hhW1-Vyrk2szMdkW1W-W6m3XMHz3W3bjgdH3BP5c2W2PnWFw2RNBm1W3GFG0c2RH_wkW2-bpsC4hw47WW365nvN32bnzJW2w37lb3ZNNbSW3b2sJX2TGv1SW47Vr-53Kck0SW24-n7t4rF_zDW2RT-hW4rzj1-W4pHnXc2382T4W4cL1yC47yycdW1Ztkf234yg3DW2KSxh54fz-xvW4hy5Ln47Qbp5W3D_-9b2PMxQjW3b3j5p41Tp5rW2WMkKW3QLJRwW2sRsT430jn-dW3GM6gj2YMWTxW3NFVm72PCDmJW4ck2TF22WNPbW3T1hjt2xYgY5W1XskDf4ctRjPW3grN671NDTF8W30G6pB3yR39RW3X-PNn1Xr33gW3R3ywn45M_5yW1V2TZL3LQTHcW2sZ9dX2TyhF4W4fh_xj43T6mmW23mN352MvxYPW3DZ81t3P2W2rW3JQGbg22XHJfW3ZYZRV2Ytxy9W32J2g21Q0Tt5W2KQp4h1Q4B37W3bwTPX4fKs-tf3NVnt_04&amp;utm_campaign=2023-NL-Offer%20Accepted&amp;utm_source=hs_email&amp;utm_medium=email&amp;utm_content=373598380&amp;_hsenc=p2ANqtz-867E6CUDw4JveJ6qPgdQaAsvoaepA8la_uRPA6UXHm-PaPik1r3isAwtH5wmy1U2Zc3GMpj7IWW3rbA-4hFjnRyU74oA&amp;_hsmi=373596923\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:12px; color:#473bce; font-weight:bold; text-decoration:underline; font-style:normal\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"qjPJqCop\" target=\"_blank\">Manage preferences</a>\r\n        </p>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div></div>\r\n          </td>\r\n        </tr>\r\n      </tbody></table>\r\n    </div>\r\n  \r\n<img src=\"https://cBJBm04.na1.hubspotlinks.com/Cto/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTW7xs-gF8fYKGp2dM1\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"display:none!important;min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important\"></body></html>','We\'ve surfaced recruiting insights, podcasts, jobs and more from across the web for you here.\r\n\r\nAshby Newsletter, Jul \'25\r\n\r\nHey Rick,\r\n\r\nIf this is your first community newsletter from Ashby, welcome!\r\n\r\nWe’re delighted to surface recruiting insights, events, and more from across the web and package them for you here.\r\n\r\nAnnouncing our Series D\r\n\r\nWe’ve raised $50M in Series D funding to scale Ashby’s product, community, and support for talent teams everywhere. Since our Series C, we’ve doubled our customer base, grown revenue 135% year-over-year, and built with discipline by keeping burn low while expanding fast.\r\n\r\nThis round helps us go deeper on what matters most: AI that improves real recruiting workflows, Quality of Hire as a measurable outcome, and a product that grows with you from startup to enterprise. We’re also investing heavily in customer success, education, and community, including new ACE (Ashby Customer Experts) user groups chapters, and 24/7 support.\r\n\r\nThank you to the customers, operators, and partners who helped us reach this milestone. We’re just getting started.\r\n\r\nRead the full announcement (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-x63pyd0W7Y8-PT6lZ3l0W6Ftw2C4SkCg9L3mpgyqyvrW5-3wjV28R0YwW7GBZpL6jM4GmVdhdr48-NM3dW2RTsM04W_RZgW54r9W58R6DMcVLrqtT3DNyVBW24wgTF1B-nSgW2XWXmX6s9NxgN991_p9MRGRmW7D33zJ7xkr28W5HNJjs1hslvSN7Dgc7XwwLmgW9lH_DF5XjLJ1W5cx7B83SyRXmW5P43Ns3nbZnYW1pdPgF4f__jTW2MRrg73pvmrNW4wsKTs5fc57cW3TW3LY5TgH7vW4ZtjDN5sK_nnN9kWkQ6FPVC2W3-VQlg1Tz1_QW929_0v4G-8_mW76ftzC2gPx2nf10jyZb04 )\r\n\r\nNew on Ashby\r\n\r\nCreate custom fields for archive details\r\n\r\nCustom Fields for Archive Details  (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xK3pyd0W95jsWP6lZ3psW3GZ80k2Vs_ygVD0t-N8phyJQW4Z7Wc_3spwkjVMw9kq5b7cqmW4ydvkY3-7t13N3tYrPC80NflW47x_S478Ttl7W3XxNY17zPQHCW1j8jk18Y74t4N4Pvg5yTGHGQMWS2-w78K_XW4GNjjN5x0b97W9hJ1-g4TQqfvW3n0MZ44_Z87tW8ZqhgK8HL2szW3LbQ517LVLzlW7lsF0c4vrDT8W80vGkm6qTKZyW4lNDwj5DKts2W3CF3g18165ckW7qvcJc2J1ydJW2pJHPf5c57wxW6nRyQK7j8JHGMwL4dRdhGzVW9lxsnQ1nN7q4W2WJR4S5nFcQfW3Qhkjb2fL2hMW3bV88_2ytmNZW8L8Zsf6pVMNrW37j54Y79_p36f31Q1Rx04 ) in Ashby allow you to capture structured data about why candidates are archived in your hiring process. This provides more granular visibility for archive reasons, ultimately helping you improve your hiring process.\r\n\r\nUsing this new feature you might surface historically difficult trends around declines due to relocation (housing costs, spousal employment opps) or declined offers (prefer to work with former colleagues). These insights are easily reportable in Ashby and help with talent planning.\r\n\r\nOther noteworthy feature launches\r\n\r\n- We’ve shipped over 10+ updates to reporting in Ashby over the last month. Check out https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wR3pyd0W7lCdLW6lZ3lXW6Y_jjS3SbZK-W4dwvZy4FKqLpW8KrWzh1sZv7hVmJTN9570SDcW4n2NjF2HPW05W4ktm2k8tSz3hW2d5RwH6SwwXVW1_dQWv19rH1jW2HKZrg982kV8W5Y632G97pFLsW6y-Y6q8-fNbPW26ZXhW5vBv9vW2npDwX5dBr4hW4xL_PW6TFc1PW5WN1jb2PN8R8W81m5Fv6wGgsVW58pfW56dndzmW4ZBHbg5gTNCnW5y0x_s4qSWNBW7Z12rc8csz1YVDnyMJ1lqPm6W8sHD9592RHZRW3Fp6hb4wP8X4W7-Rylc1Jw39Df1L99TC04 (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wR3pyd0W7lCdLW6lZ3lXW6Y_jjS3SbZK-W4dwvZy4FKqLpW8KrWzh1sZv7hVmJTN9570SDcW4n2NjF2HPW05W4ktm2k8tSz3hW2d5RwH6SwwXVW1_dQWv19rH1jW2HKZrg982kV8W5Y632G97pFLsW6y-Y6q8-fNbPW26ZXhW5vBv9vW2npDwX5dBr4hW4xL_PW6TFc1PW5WN1jb2PN8R8W81m5Fv6wGgsVW58pfW56dndzmW4ZBHbg5gTNCnW5y0x_s4qSWNBW7Z12rc8csz1YVDnyMJ1lqPm6W8sHD9592RHZRW3Fp6hb4wP8X4W7-Rylc1Jw39Df1L99TC04 )  to see a roundup of everything that’s new in reporting!\r\n\r\nMore product updates\r\n(https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wR3pyd0W7lCdLW6lZ3lXW6Y_jjS3SbZK-W4dwvZy4FKqLpW8KrWzh1sZv7hVmJTN9570SDcW4n2NjF2HPW05W4ktm2k8tSz3hW2d5RwH6SwwXVW1_dQWv19rH1jW2HKZrg982kV8W5Y632G97pFLsW6y-Y6q8-fNbPW26ZXhW5vBv9vW2npDwX5dBr4hW4xL_PW6TFc1PW5WN1jb2PN8R8W81m5Fv6wGgsVW58pfW56dndzmW4ZBHbg5gTNCnW5y0x_s4qSWNBW7Z12rc8csz1YVDnyMJ1lqPm6W8sHD9592RHZRW3Fp6hb4wP8X4W7-Rylc1Jw39Df1L99TC04 )\r\n\r\nIn Person Events\r\n\r\nLive TA Podcast + Community Night in Denver\r\n\r\nWe’re bringing Offer Accepted to Denver for a night of impactful conversation and real connection.\r\n\r\nCome hang at Space Annex for a live recording with Tommy Hansen (Juniper Square), audience Q&A with Laura Lockwood (Gusto), good drinks, good food, and a chance to win custom purple AirPods Max. 🎧\r\n\r\nAll ticket sales support Dress for Success Denver. It’s a night for the TA community you won’t want to miss!\r\n\r\nRegister for event\r\n(https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wx3pyd0W6N1vHY6lZ3n6W7Qt4nR3TWnxpW3w1CdG6Z_vHPN8F3xW2G2mYFVt2d-l3fyfZ7W9g1Bk91fM8bDN58r12jGvTyxW5k7y0m8LS4HDW6dM7kk5Rr8zBW2C0hSL80K1NLW1S-NVQ3Fdxl1V59gxJ2bMTbCW5_Trsw1yDn_SW3ht-s08l5KC-W9b-NT-3BmlJlW3pXZGX3Gg-NgW8ZS-d35J4yLxW19pXJ28k-6hqN5r2mq4P3M_LW17ztxN4ZH--QW9cHQ_h4ZXcdPW89GT6b2-GLGKV30J0D48l4NLf7BhBZP04 )\r\n\r\nUpcoming Webinars\r\n\r\nData-Minded Recruiting: Building Hiring Funnels and Choosing Candidates Without Bias\r\n\r\nOur own Shannon Ogborn, Community + Talent Advisory Lead, is joining SSR for a webinar that explores how traditional screening and interviews can unintentionally filter out top talent. Moderated by Shiran Danoch of Informed Decision, you’ll walk away with actionable strategies to reduce bias, increase fairness, and improve signal throughout your hiring process.\r\n\r\nJoin the August 26th webinar\r\n(https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-vY5n4LbW5BWr2F6lZ3l0W77DqF215cyWsN6vjS0n9lLdtW6XrWnf6Hx7FRW4kWknB99mTnsW1HtGSl4KwdbPW911lp45Q6TkTW8qDMf55K0b4CW6rTSdM9l8r_vVJTldc2LTBSDN8kj21X_lHY7W4WBW316Rm0ztW6ySWts8wK5hDW4_F0BN3mJq4WW7-zc_j5dgn-wW4-v1R44Q7T61W3r1M0C2QH78QW51Fqdj4Mrk52W1_PDpC5vwyZcW98yvqY40zYL8W2wVxq-5ZvWw7W4RrBpF1zDkVgW8SWq4K7V12rCW5qBTql8yjf1cW8-rvrP6DWdchV9Ps0d6XnyKtW8F1sk23Qvs3YW7m6QSy7KFcnzVYbG3W2kLSdjW73hyx71pqfmMW3Nl38N2_62kqW4V_VrQ7tq12DW4Fn58r55kTGTW6ZLgHf8G7b5fMFwf5-Tp38Yf6G6C7604 )\r\n\r\nRecent Guests on the Offer Accepted Podcast\r\n\r\nThe Offer Accepted podcast brings together top talent and hiring leaders to explore key strategies in recruiting and talent acquisition. Our most recent guests include:\r\n\r\n- I recently shared how we’re scaling Ashby with intention following our $50M Series D. This episode (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-x63pyd0W7Y8-PT6lZ3kDW7bWc4S7R51RfW6rc8-J6jLwKkW1B2c868Tw206W4FR0xX8JkPwxVntMgw26H3lTVYFmr35SnXt3W4Jr0H957_WbkW8H8zzV39vHkBW5JbrJ86DLX7GVxLXrg8w1bcXN8mTPTzSf6-cW33nxyD7pxYJwW5zDkT83s3XLmVXcfT93FtgRRW2-H3X582X64zW8Cg5Ml59htQrW3TLgGn7dRgGRW2lXN7H41Vv49W7lNgtC89GywSN37Z4wH2ZZZlW87fscj2_C_M9N29ZznlYSxj-V4JDv17f2_N9N3tbTD2R5GBFW32_S3h7nKKC8W5P82T07pjPP0f621ptg04 ) covers the operating principles shaping our approach to hiring, product, and community, and why early investments in quality of hire and RecOps continue to guide what’s next.\r\n- Dr. Kalifa Oliver (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xq3pyd0W8wLKSR6lZ3ncW7_r4x54DNPnhW6NQjQd68_W-PW6R5DtC4LByQBW6fz9x36hLDQCN1G4FyrF---mVFnMdC1D0lmgW8V3Jf61L6zXjN6np_8ytGGltW3wDCc43PwYylW35mCY66xlHwnW6YNdf95mRfR0Vqpb1J2X8lDbW4BYgZC3-vtXGW95CkC04cH9sCW3V9xyh4k9fvTW87PfpT1R3dXKW94ZZb798L3QvW1X122j5TtJ1mW1yCHQx80pR5ZN7SfP2fCgk3lN5pcSD3XRXM7VpzJHZ6YgC4gW2FskKX5YwStqW4rJZBh7D675BW3phyM-4d76wkN2Z5ygh3jH7NW3PHnm96ssdHqW3MNkHh2BP5nFf5360Xb04 ) , Director of Employee Listening Strategy at Ford, shares how internal mobility can fail and what recruiting teams can do to fix it. She explains how vague processes, outdated rules, and manager resistance quietly derail internal moves. Kalifa offers practical ways recruiters can bring structure, fairness, and equity back into the process.\r\n- Heather Doshay (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xK3pyd0W95jsWP6lZ3lQN5K2yxp_nyZ7W4GtZgR31B0fTW91-RN843s_ddW4Jnt1Q2615y7W1tKtYN8Nl01wW5JnZDX8PbhC7N71nw3pRx7lTW3YjjWM90YF6BW1RvDPB8kXHrXW6jHVcG6DplNmW1pLlVy6JKMs_W6qjXpk10_WQMW1rPf1D1VgFQTW13gTpW1FTKMLW4_Mmsq7nm6JdVz-PHN5M0qw3N4psJkB9SXjqW2LwPWK8trzTLW227x7f6VBfGfW3Y6HLR61c9sMN1PrrMkJt4DTVSSChD4Hlll2VgTBGj4yg4mVW3bCHzj6dMc5_W7TycXG3KQnxcN4tZB54QWSLdW37l1Cn4rM_zzW5N90B41Jct-bW8QBD_P11vrB5W8ZD_Vb4bWzrtf4S5NmY04 ) , Partner at SignalFire, breaks down what structured interviewing really means and why it’s so hard to make stick. She shares how to train interviewers, get hiring teams bought in, and use scorecards to drive faster, more consistent decisions.\r\n\r\nShort on time? Browse key insights from each episode on our blog (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wR3pyd0W7lCdLW6lZ3p_VspBp36jN5dRW74dwHD88s-kyN375yS0cgZZgV-wtP26vZdlKV_hXp38Wr_-DVqhSjZ5g0wp1VNTqK03_PLmtN7dKjpbWfH3JW74bn2x7s4jcqW5K47lM1dhBDBW4Q7rqL5ySB7zW306PM777l18_N86Lwf8K8KggW14pDzr3-K3-7W7tNHmJ9cm6sCW3xLhL57VWJtRW8tNsZW4YTNtlW7p4d5W35HVyGW522vtB4cmDXtW81r5Wz3PytTkW51dWBb3DLsXgW6hYgfp4Sv2L4VtyxqK6WGBLcW9fVcrB3mqtv-f5CVjRW04 ) !\r\n\r\nSubscribe on Apple (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xq3pyd0W8wLKSR6lZ3kzW4mDPGw3KrXbhW3q1BTq3m_B1rW4xyth13RpWtzW8rjl-52rPWnSW3NKpmh8j6gh2W94jGg42QzVMRW1YmNj58tBwQbW79pjfz6tS8K9W4NtfcR4tH2_ZW11TNFt5Y8qvMW2cz4nW94Nnp8W2L_zWm2qQTLSW38dXz586KJZSW6cL44y2Cdjw3W5DTfFf8CdRX6VqPDCC5yg9bsW2wLhq25WRvPcW8g6xM-3LHh2jW93gjZy7kb64GW1QDd8N7FBxBDW63tmvj8vnr6VW6Rl6Zz59VqzJVfrwpD3ljRX3W2sF2P76nvtBhW3X4fvP9867m-W7BCTTX20BjphW7D4hFr1gNDByVCBzfZ4JT0nDf6wBNDT04 ) or Spotify (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xq3pyd0W8wLKSR6lZ3mSW6rbXRw4mx4fJW2142qw3Zv9T-VT9cXD8Cgt4QW3r4sJN29z_wBW9dpkv324GtQ8W6GJrpZ644k3kVZmZ9g9bjLMzW32-xGb91Kx72W23XhVB2R3gtJN25jk8DgY4RHVfG4tl80PtHGW6x1DVw52X-1YW4k2ZcY9bN8mGW6kr73X6lsHbJN2NsG5tYX1wWW8Slppz5p10lHW1glQwM72j4z9W8XV_VQ5wnQn3W2PgzCs6rXyjFVJrcBK9hg9GJW39xN4T6fxb2jW8FTq2N43W_wTW19X7NZ3nMX8FW6Wycg4641VWPN5VFmsbTprQHW7DhnT15Yg1DrN1nQdtvv7pf7W44LJg91lcsKvf52-4vn04 ) to be the first to hear about episode launches.\r\n\r\nRecruiting Takes and Resources from Around the Web\r\n\r\n- Candidate Risk Detector for Hiring Teams (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xK3pyd0W95jsWP6lZ3nYW1MqbQM2DkgG1W69pV606D4d07W7FDsbQ5WvXrbM3LHTPHNZ7ZW53GJwz5KVSqBW4FhhjV6zljb_W7cl97Z6ytD-hW6DGw_g7m0k5YV_BHLs4vpWHyVjmW9B57W1q9V_yXHg7_WYF1W1cB2hP4x9p2TW47GLpK3mbLHJW4XK0dL8WnRH0Vkr2Vx4dX3_cW4xhLS221jNjfVyVmbT7nMFm1W1JvXy95QJQ8MW4Fq9381MXyCgW510Z194YL18pN4MjhCCzvXDHW5Rn0415FhpBWW5RCc0Z4KzWbpW2ZcKbF1sbYlnW1RvLwQ3MgKbZW7gYydF786QKTW4x5k9b8NNPjNW4X8Djw6g6BjKW691GlR1x3tvYW7nyD4j338ldCf7wCt4n04 ) : With fraud on the rise in remote hiring, this Zapier template created by Casey Firey helps recruiting teams flag risky candidates before they reach the interview stage. It checks IP addresses, phone numbers, and metadata, then alerts recruiters in Slack and logs notes in the ATS to keep your process compliant and efficient.\r\n- State of Talent 2025 (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wR3pyd0W7lCdLW6lZ3k-W2tVlqv7Vv-9yW8xc81s5lxrtpW89r6Lb2J-l8nW925zDp348rfzW2PFjQ194mYm6W7wkDS-36PR0fW4LclKZ4lfgtdW82nlQ_7pBJ0XW6ppH1h8jjCv2W3qLZkq8jHfHXN4bzJs-QVLfdW8kXPkh8NW4jlW5056y74Z8kxdW3JKnlm4B84pGW5LdcNy60WQxGW10ypkt8y9grzN8TMBcWt8-ZQW8BlL6X5cS54BW4KrZ0T6rfxLHVGyKYb47z5YYF5kFbRnfJz_W6tCMt82lPlXqW59xw6L3TfGB3W3GRBD91Qq7Zhd_xFHW04 ) : Redpoint’s latest report shows AI companies pulling ahead while most startups stay cautious. Entry-level hiring is shrinking fast, and top talent is commanding higher comp with leaner teams. Recruiters are shifting to more strategic roles as AI handles admin tasks, and technical roles lead growth across the board.\r\n- Sharing Interview Questions in Advance (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wd5n4LbW69t95C6lZ3pbW8W_Skc1xfl_LW8k_lgn8zySvpW54K78y1_K65QW80xjb52mJBppW4f5Hnl1bRdfFW12rP2M1v9wqkV7FYBt9fJLYnW9cCdZT4z8nB5W25S_wH84Xw53W8nNdj12gC23yW6KNw_h1nmlbwW10NGs-1ZJ3c6W5gt8zt1Vd2wtW57kYs_21tLNTW2_b-lZ1yfVLbW4rtBG47_YhgHW7c01qD4LbRWWN6nTpHxrvjGXW808c5Z8CKwcsW33-Vkr8tT3qCW3jTs_91sthQHW2myz3d6Kqy7RW2xwD984xhc2NN4z4gHgTyxHSV9tgGY61X5HPW8FbrFW4pSDchVpflWJ6RPVy_N6_y-cYK80NTMBSjg4vcGYxW3cn82j4vrd1_W3n41sm90pLvpW9b1KCx30RRmMN157jY0-9Q8GW966my87fyWCTW2rcqbF9br-4FW4CB3Sx8H4Wk6f4YFG2s04 ) : Emily Paik (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-x63pyd0W7Y8-PT6lZ3nBW8ZCsY731GV_yN853jkbjtWzpW6JSRcT2_TsQJN256n_lsHT0CVRHz7X2sPNFtVmDCyq3v1m4hW695bZ76kJMBKVJlXFS625BKzW5vk56-56fpNxVJLd-7302lYtVwGhQP80PbZrN66SsN5k_7vzVBg8NY5HwkcLW5TNn6Y6cnPjCW19JfYQ3yqq6YW2mcpTq3G8fdzW7wFgCK4_NLJ-W3xCXH-8D8RNWW6xrX3_7gHfj3W1l98M-1k7T4RW3vWWf710J_tfW58jcHF9kKCrfW2SRJdl1YGxW6W2HCHrr3TSx23W2nzCSP4Wz-HMW23nRt-2F-vZjf2xskvC04 ) , a Senior Recruiter at Kit, shares why they give candidates detailed prep ahead of interviews, not to make it easier, but to make it fair. This approach reduces stress, surfaces clearer thinking, and helps evaluate judgment over quick recall.\r\n\r\nPartnership Updates\r\n\r\nOur Partnerships team continues to extend our integration functionality. There are now 190+ integrations in our Integrations Marketplace and the list is growing weekly! Here are the ones we’ve added since our last update:\r\n\r\n- Asendia  (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wx3pyd0W6N1vHY6lZ3mKW4hRnxQ7mXNC3W6cTv2Q8ff4z0W8rglSx4M8qT4W46wJFk3SsCKVW8s2vK42tCpc8W4F99xn1yfYtCW1Tfsfl1MytLWW3t91PR4wzyj2W5Yrz_q22qLnkN3ZG5cJhsVmwW3jvkNT4fN-nNW4Wx6J064ypj0W4vm-Nm2gWDmBW2SlyT85g2-kRW714HFK7lHv9WW11nDxC6xRZLBW3yGk3H4JlvR1W25whb94gs58kW6gsN4J4T918kN5C5J0cJT8CbW4bd3Jw3G7pCgW4tbVVR6l7CdVf8wdxWC04 )  [Interview Intelligence] - The Asendia AI integration with Ashby enables 24/7 AI-powered screening and prequalification. Candidates are invited to complete an AI interview, and structured insights, scores, and summaries are automatically pushed back to Ashby—directly into the candidate profile—eliminating manual review and helping recruiters identify top talent faster.\r\n- CodeInterview  (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wx3pyd0W6N1vHY6lZ3msW93Qwwk45chJNW5nKp159dkSFdW5Pcb9X4H9-92W1PL9zm1Y0YlYW7dn0Qc6SJ5YgW9b0Xh01tgmD-W4y59hR8VdS0WW4Lsncj32P3tLW9h5DnP2pPS20W654h7Q4stpWwW1j-sXl8mC6XCW8DLNB92PZnWRW33GTrl6vlF7xW3kxK1q55hphCW1zw32b3Y2wdyW1PFJwv89HwVbW1Z0JjG6l826yW5PzxrY5bXgmcW8fjjBS10V4nXW1Yz25y6ctcTwN7rDbBmkb7mKW7cGs986vZpt_f8rGt7b04 )  [Assessment] - The integration of Ashby with CodeInterview.io enables the recruiters to generate automatic interview links and streamline candidate management.\r\n- Remote Interview (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wx3pyd0W6N1vHY6lZ3pbW2Rl8RZ9hRGlMW2GBVbG8gl2K3N4Sx26H7VkKNW56_M5h3lHttMW5qYwN77fmyLcVjKX9130gT3RN6pJcHDjltCFW1jq2_07B7bFfN1V9NJSxLFGCVmSjs-1kjxCgW4k8WNn44Lj4xW96lL6g7BdLTgN8cJb-XL91CSW3RLNL13pzcckW9l1vC111PPTTW8gVvdn5kWLCCW4pTyzq7h33KnW1x25CZ8vFk39W1htLv34xkf71VjKtQW2j9L5vW81fJrx7t764pN36SMkLRZSz-f90gjDv04 ) [Assessment] - Remote interview integrates with Ashby so that you can seamlessly use the two products together to add an assessment to your interview pipeline.\r\n\r\n- Guide (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wx3pyd0W6N1vHY6lZ3lxW4t3NSr4qQYcJW38MD477Qc6zmW7g1LPG29PpqQW7qQSnz8PSmdrV57QX54WNj5VW2kZ3RC4X67nNN8SL0QQ63zsKW6XxGq184KjM4W2RpZjh6Bl_n4W5j9j9Z8QSQndW9f3v844wHMjHW7CfKvn8VFP1dW20PZll8Zyj_YW2hrpmD3HrL8qVj2ZbN5w07wsW79L1sR6H4l7VW3GgCZM1G0zJpW3wzS_h9f3sDVW71Q67X4qNpH1W8XQXpk7D1h39V-3btY8XX9jxW2bbr0X7mFvjKf5gWl8804 ) [Candidate Experience] - Guide’s AI-first scheduling agent syncs seamlessly with Ashby to automate interview coordination and deliver a best-in-class candidate portal.\r\n- Nova (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wx3pyd0W6N1vHY6lZ3pjW3DQgZw5sK-F1W5t_Q2v3ysrBgW8y29MJ9kccB5W2M-VNF3Sfh0mW3j-ZXf6gkZ6HW74nFcZ7qlhrKW7_2Ysd5DxF_lW406X6w3FNZkKW96NN896B_xN4W5lk1RJ686k-rV2ydKV1txDbQW45XwgL5PLLhvW8G-c0t9k91MlN28PXHrqNWHcW8VctM63tnYbtW2G3z3c8m3S4KW47Lhn-8FKrNpW5GY5FY1l7-7sN2YYw79yvjKhW6RxfLj7NH4XJN4R95bqWfgYpW2F2sGK4N_YPqf2SdZG204 ) [Assessment] - Nova is an AI co‑pilot for recruiters that integrates with Ashby — saving hours on screening and helping make faster, more objective hiring decisions, while leaving every decision in human hands.\r\n\r\nCheck out Ashby Knowledge Base (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xK3pyd0W95jsWP6lZ3q6W5pWmR-3kNc_zW25QTCh3JFg2kW5Rh5pC4SQFxSW4-sDdD17YB0QN2CwxgRZFS8gW7x14D_3byByJW6f4-t_8WP-GQW5y9BZ070g-QSW4ymNcN8vG0l0W8Ds-LB6SHtRvW8qv9Gz3pv0wbW3dmY_82qCJYKVqWxKL93rV9FW2syY333fQrm9W9lp-7G4hm5gnW92s8bn1S2w58W3NmqHW8gzn5fN6Vbz2GtcJtWN6KRvNbH0zGmW4T49Zn9hNd1ZW4HByGN2bmVPXN4ShYhNrV-jFW7dc15C1j4sMLW5XwLB867jgKmW2WhRR3532YFvW7Cm0SD3ctNtdW5GV3C98ffx0lW66C-wh9hmlqkN1Nd0pN1Xb0qW3bhvXT2Ml6rmf1MpyTC04 ) and Ashby Release Notes (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wR3pyd0W7lCdLW6lZ3lXW6Y_jjS3SbZK-W4dwvZy4FKqLpW8KrWzh1sZv7hVmJTN9570SDcW4n2NjF2HPW05W4ktm2k8tSz3hW2d5RwH6SwwXVW1_dQWv19rH1jW2HKZrg982kV8W5Y632G97pFLsW6y-Y6q8-fNbPW26ZXhW5vBv9vW2npDwX5dBr4hW4xL_PW6TFc1PW5WN1jb2PN8R8W81m5Fv6wGgsVW58pfW56dndzmW4ZBHbg5gTNCnW5y0x_s4qSWNBW7Z12rc8csz1YVDnyMJ1lqPm6W8sHD9592RHZRW3Fp6hb4wP8X4W7-Rylc1Jw39Df1L99TC04 ) for more information about these features, and reach out to support@ashbyhq.com with any questions and feedback.\r\n\r\nAshby Customers Hiring for People Ops/Recruiting Roles\r\n\r\nLooking for a new role? Here are open jobs hosted on Ashby that are live as of this newsletter release:\r\n\r\n- Head of Talent @ Rain (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xq3pyd0W8wLKSR6lZ3l2W7p_kpP8PvCJhN5j5VzZZsJ75VrlPfj2-8h__Vvw7mZ4yFBhyN3hgyfKbW5J3W8-B6Vb7rts_LW5bnMb767vdWtW391wML7JhMchW3MDMxW7_nhL8W7xtL4V22vP-MW8HpYY04yp0vJW6R3JH73nGC2kW14d6h_1gk546W10M3qw7dNJG-W970NwQ8GTPJMVPkB4C7t7vvRW5Sb9Rg966lwcW1--45w90Gg7bW2WClZ42Gvt1SW6ymsLW1VtqjfVbVdHk1M1rP4W1xZlWl6YC2FdW3xC6bd67gNYvW836pps8DLRg1W2hNdwj9kKNS1W3dVDwk67hprsW5RP6k44DXYlrN69GmXLm294Wf5xkz5204 ) (New York, NY, USA)\r\n- Head of Talent @ Numeric (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xq3pyd0W8wLKSR6lZ3kSW2XwZRm8vlThVW5m699X8YYWWKW2zZdz67FRTnrN7RMClZ72JWJW2D94Pk6KyybhVGm0Gv8vJqk7W1g9jpk2H7W7sW1pGDY95ndl8VW6x_WhL66vhg0W4mWFYh4Q9tgPW2j7vZS3q8KnWN5c-j_7p03RzW8lhZDL18K8StW5d19TL5zH5XcW1_fbSM95RSxYW7tfKM88qCC7yW8WLqM67dc1x7W5PXR2t4nqlv5W9724l_7BCtM3W6j_xMV7jb5WgN1ZgfhVQ9RbqW1F35ZC2v2bGpW5X6F4420YgkFW6n8ywb3vc_MDW8gjxCP4hdbGhW57vb915Xr6BcW7kH0c554qLYjW90D7TB83KflGf7P24l-04 ) (New York, NY, USA or San Francisco, CA, USA)\r\n- Recruiter @ Stedi (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xq3pyd0W8wLKSR6lZ3mwW6KV0z05fbThBW8ZhSfw3vCvzvN9hJG70GVx0fW2yJ6nM5RWWg-W6HyHjK4WFClqVbvWkN8KRtJ2W1jvsSs28lr_kW43Crzb72Y7f9W8phBD_1dR-JTW96b_G11P_jbRW3kVp8x5CJLCCW2_qsBJ1RGSkjW5jl8cG4lNJKyVmkZSG1XCPxMW7ZMg6H5PMW08W6p6N0n2y61tfW1LSglR35bZW7N3TmYZdNJmDZVT3Rxw3JRCLnW6tw-Z285bmqZN7gjmQRWy64bW10Wp108b3TQ0W6-Rqvj1bDLS8W5_wTrm2NSgrZW5-mSQz15rvRkW1t31By8FmfCLW2hwPYt4h_tSjW7rsFS36B8kQ_f5fhbxs04 ) (Remote, USA)\r\n- Principal Recruiter @ Jerry (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xq3pyd0W8wLKSR6lZ3nvW4RZvpl4rcft-W5jNRQR8P2MZ0W607ftk6G14lWW4dZ0QD66yGyPW2VCj3z72DC5lW42cys85TrvdNVFSL344Y4YKZW3ltksW4J_5l3W4S6tlF5ZcG8SW4sB9XK6-WXwxW8V2Kcs56ZLCMW7DlGrL37lnMhW1hFP788RqLWjW6MCqJh8d4x0LW7cRW55235rksW8PTRN66-5vZRW5sXZnj4TcfXhW8Zpzfb2H8VKvW3G_tyv11l9p3W4Sf9G0235cCyW2fwZKY7RZCX4W2yrhMm8Bp0pqW5GQ8_58lpPmsW3_yJyy6D9GGXW6Xqfv51bc21hW17QGbj1Tz99NW69M-B96wGH81W6gZMbq8fYr70f8blDfg04 ) (Remote - multiple locations, USA)\r\n- Senior Talent Acquisition Manager Tech @ n8n (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wd5n4LbW69t95C6lZ3kVW658bKB3Vlx1CW6V4pg_7h6whSW4yjXMN7gN5ZBW1tCvCr4BZnMzW1N2JSR87P-Y4N1FmJLVLXzH2W795nDf7j3PH_W8pD5843TTG_WW12ph525XqRQSVCPcn78tD7WZW3hxRx_1ZSC6VW6yMw-79bdDqgW6h3q456zy1VLW30C8hl7FMDYlW1wsdKy6pRFTTW30225_4vKPwjVDn7lD3_GSvmW4c2rXj3nQn5yW43WSd62K7-pLN2mRzqrZ31hJMxbfq-5Mt6wW2bRlGl41df-8W1mtYkS2HYrpgVGj6X667HyngW2M2Cfm6ys1_zW6VVv6c4Wcq1GW8YsJQV4N7J7RW1kVkyJ6mFj7dW72_qyH6K-9SxW5Jv10R5G7WNFN601ln9hSyscW1r975189bxhNVXVs_43CMjwzW6hkKsQ6sRnHKW3Wy-3t9lShZKW6JxTrW8TsLYHf7f061204 ) (Remote - Europe)\r\n- Head of People @ LI.FI (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xq3pyd0W8wLKSR6lZ3mtW95yGPc627w8KW4Nqx212LTBnFN8p99Rbw7KqQW2Flqm483j3tzW2Y3N2w2fFxS1W8zSsw370fzvKW6-4mRH12BTC1W4B1y7Z5qWsmHW1Nf1Bc42qsM_W90QM836nZPHjM3HTgJNXGrXW3_Mxdl9094sCN2BzSwGlC4YLVmGGfS4814V7W2CCvtj5VYQPqW1nWDDm3nrZ8qW1HBYcT6nDq0-W68-QkX2cBcnGW8skHXy1DbCFBW2ctFSj9clZD5W4LQqYk8hdkX8W6865fH2CfHM-W4gp4CD8gpcZDW6-L9g-7mlB-5W71Qbc56Jg9LNVZLBjg6005x8W6NyDfb44h5y5W5QVfXq8hjdrVf7CJf3Y04 ) (Remote - EMEA)\r\n- Founding Head of Talent @ Omnea (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xq3pyd0W8wLKSR6lZ3nwW2V2Sj65wrMjLW7k4dV44c3yVsW3q75bW8gkRz-Vnz_dw6cqkC5W8fwmTl26k9bkN5DJLYGPt-dZW1Pk3Ch7yKBpDW45zrNq7v9d_zW55znMm70BTMnW4GZHWG2ZV4Y0W5b8PyF3M6xj9W3r9Sm_83x36qW2fKv7n6nLwq8W19xjhy6k5GYCW7PH8gh2Dp6znN6GWq0rd6D31W80R6G91GRtnxW4P5JX22-WZ7_N3xvNj2MX88jW4JsRpG4sCWfbW5pb1L94-18CNVYH2Bd1XkKMcN5TjWJCv355MW7zxbWV46yfCmW7DqnG24tVTWyW6pQ0DZ1Ym4K5W56SM4H2N4m3vW7khbs57pDqBPf80PwzW04 ) (London, UK)\r\n- Recruiter @ Sierra (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-xq3pyd0W8wLKSR6lZ3pgN1pFSvLvp1yYW3MPNYL5Dj3zkW2RjmFp14Fzw6W7Dll9C4-qGyBW1vPjhl90B7rgW6L6RMW5ps8JMW2X_d473YYVLQW8k4qYC2qQGfTVpk7Gp5TgQzFW8dXncg8Z0_cHMKJM_jrFyCRW2wN-pk2Dtyp-N7p5fj_1hxn3W5Zdqgx5zDG3rN8-0d1BMyqc-W6K8F3S13vNnwW7NJ3lV7Q6dmrW5Q31hF7jtm2HN4nXxQMMgYQ8W5bPqhw1lBDfCW2C5r_D8NDRv4W1vHtmZ3yjcB9W6rcfp044JY_YW19DbKc6-jM1nW1pzCq51fzd_zVtx8cg84HGKRW7lqff45RjPnQW2VLt9n8yFF-rf45n4C004 ) (London, UK)\r\n- Senior Technical Sourcer @ OpenAI (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-x63pyd0W7Y8-PT6lZ3l7W3g44Zj5y7RwDW4yHjvC5R-b2BW1_fkFL6X_-4bW2t9Wlf5yvRcNN3qBQXGwXR_jW84J0c48tNWYPW1-lK4M3h-N0cW36kdD149w3c7W3T95pf2Jr4T5W41DMzJ9812QjW38hZjf74pn65N2zH4Rk8Gr1gW3QLqRc2kwcyGW7YyXhG6rJlsLN1yLMglhS5dhW6vH06t67jHcwW26znKq1JwP7fW4MRhCt1dxK9VW2CXCFz7Tn9M1W94FGlr2ss4G3W97WCXy1rDvCKVkXT7K93GLwLVLmcvN6wF6KrW5jkJTl8_k4LJN6zRcG1YWMydW5Q5d5f5TnYP9f5c6Snn04 ) (San Francisco, CA, USA OR Seattle, WA, USA)\r\n- Principal Recruiter @ Snowflake  (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wx5n4LbW6N1X8z6lZ3pxW4Cyn0N3nw7NxN6jm3Pc7zt9VW1GP-kw71rKFFW35607_7QrvJSVR366n1RyXz0W7GMtpy4Bxtx2W3vWmQT4jdcrbW1FcSKY2S906nW1cyFRQ7cZwdbW8lMNG48hklCGW3MGz143-HSgKW4bNxRh8zW7_rW4lTjRH87qdYKW30JhN-8D-1DHN8hQ9f3nBF4nW1SWnGd21pmkcW5ZtB0q8-ZqKHW3kbGSp83jTfXW2TlzW_50cXkJW3BB2l096ZTb5F4pGvBrrl6fW18-0nd6LqksCW4Gy8Lg1jj45rW7fkrCL8HtcWwW1DyknM8cr1YjW8_ntQS7jZt7jW8TnQ7P15djfZN4TPqCSbKWQYW1rwcsN3lM09YN3Z0Fl1J169NVBfSzs8fV4qCN8qmCF78DG35W6YDN-93HMZ1gW2Q9-M23LkyjkW2Q3Khp2L_RgBW43TLpz5gXD9TW8VgrPG2Q8X-HW3c-GdB99g_2vf2V82HW04 ) (Menlo Park, CA, USA)\r\n\r\nDemo (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wR3pyd0W7lCdLW6lZ3mJW2y_ZSR2m5_RRW6HpxT-8HvDG2W2p8phK4tT2b0W5WXyYD2Yr2pfW4kDCl97f3jDmW2p6WNW6t2nm3W2L3YVc8Qy6Y6W2z6RR28RBY3VW2Y2Vht99GhZpW8Lxf9v5s179-Vpd8wl5Cf1FhW4m8fZN3-pzZPW4ljqTH8Gd_3pW5N_5_p8WlQ58N3Xj2HlSG3fkVCRDjY4-m3-fW271yx-12X-S8W52lMt34MQtqkW7JsK8q8yY0myN8RTLWX2dB_5W2-vkWs3MWZ9SW5058h72-xt6VW7MjJfl86xNKDW46Jd925MmQV2f3pZgns04 )\r\n\r\nThat\'s it for now! Thank you for being part of our community. We are excited to share our journey with you and hope you will stay tuned for more exciting updates.\r\n\r\nBenji Encz\r\n\r\nashby-logo_new (https://cBJBm04.na1.hubspotlinks.com/Ctc/ZS+113/cBJBm04/VX0qMM8s6yrfW6-0nNH6dVgdcW6B8lDm5zD0JTN7xs-wx3pyd0W6N1vHY6lZ3m0N7YBjcnKmvB5W6hsXly13LbvvW3mJz006f4GLPW5qvDKg6YxhtZW6mzsKP3wWLf3W1Q4nwL58_-qQW6D65QJ5KJYj5V6fshW21bklcW3F60qQ2JNC4yN5PGqHMvm71jW2R5lKH1jg5C-W4FFBvW2JxHwhW6nwJt24xyPdqW81qFXK2wNcsQW4cWj3K4NSXQyW8htWmB2jlCgXVvxzmH504TNkV-6VpM3Kb-73N3sdjl2Yfd73W8XtqRJ6Mj6SXW1hpLXB8KxXjFW4VzwwY8GZHPzf4DKbVg04 )\r\n\r\nAshby, 49 Geary Street, Suite 411, San Francisco, CA 94108\r\n\r\nUnsubscribe (https://hs-4990969.s.hubspotemail.net/hs/preferences-center/en/direct?data=W2nXS-N30h-M2W4hgYsl3K4C0lW30CFgh3zcHmtW49txrF4cQG1sW41qHkQ3C2hQKW41G5MY45qbvmW38yLHS4mHc9ZW1ZfhjV364yhtW1LB_kZ3V_3hhW1-Vyrk2szMdkW1W-W6m3XMHz3W3bjgdH3BP5c2W2PnWFw2RNBm1W3GFG0c2RH_wkW2-bpsC4hw47WW365nvN32bnzJW2w37lb3ZNNbSW3b2sJX2TGv1SW47Vr-53Kck0SW24-n7t4rF_zDW2RT-hW4rzj1-W4pHnXc2382T4W4cL1yC47yycdW1Ztkf234yg3DW2KSxh54fz-xvW4hy5Ln47Qbp5W3D_-9b2PMxQjW3b3j5p41Tp5rW2WMkKW3QLJRwW2sRsT430jn-dW3GM6gj2YMWTxW3NFVm72PCDmJW4ck2TF22WNPbW3T1hjt2xYgY5W1XskDf4ctRjPW3grN671NDTF8W30G6pB3yR39RW3X-PNn1Xr33gW3R3ywn45M_5yW1V2TZL3LQTHcW2sZ9dX2TyhF4W4fh_xj43T6mmW23mN352MvxYPW3DZ81t3P2W2rW3JQGbg22XHJfW3ZYZRV2Ytxy9W32J2g21Q0Tt5W2KQp4h1Q4B37W3bwTPX4fKs-tf3NVnt_04&_hsenc=p2ANqtz-9lZww6gHqSL2h4PI6K66Mqkd1gfUmpt4_tPWKgmlxHlFvqQ67FW0UFBpS3ycSplRsY5fC6O7DmasOz4TwvrfCftuT7Hg&_hsmi=373596923 )\r\nManage preferences (https://hs-4990969.s.hubspotemail.net/hs/preferences-center/en/page?data=W2nXS-N30h-M2W4hgYsl3K4C0lW30CFgh3zcHmtW49txrF4cQG1sW41qHkQ3C2hQKW41G5MY45qbvmW38yLHS4mHc9ZW1ZfhjV364yhtW1LB_kZ3V_3hhW1-Vyrk2szMdkW1W-W6m3XMHz3W3bjgdH3BP5c2W2PnWFw2RNBm1W3GFG0c2RH_wkW2-bpsC4hw47WW365nvN32bnzJW2w37lb3ZNNbSW3b2sJX2TGv1SW47Vr-53Kck0SW24-n7t4rF_zDW2RT-hW4rzj1-W4pHnXc2382T4W4cL1yC47yycdW1Ztkf234yg3DW2KSxh54fz-xvW4hy5Ln47Qbp5W3D_-9b2PMxQjW3b3j5p41Tp5rW2WMkKW3QLJRwW2sRsT430jn-dW3GM6gj2YMWTxW3NFVm72PCDmJW4ck2TF22WNPbW3T1hjt2xYgY5W1XskDf4ctRjPW3grN671NDTF8W30G6pB3yR39RW3X-PNn1Xr33gW3R3ywn45M_5yW1V2TZL3LQTHcW2sZ9dX2TyhF4W4fh_xj43T6mmW23mN352MvxYPW3DZ81t3P2W2rW3JQGbg22XHJfW3ZYZRV2Ytxy9W32J2g21Q0Tt5W2KQp4h1Q4B37W3bwTPX4fKs-tf3NVnt_04&_hsenc=p2ANqtz-9lZww6gHqSL2h4PI6K66Mqkd1gfUmpt4_tPWKgmlxHlFvqQ67FW0UFBpS3ycSplRsY5fC6O7DmasOz4TwvrfCftuT7Hg&_hsmi=373596923 )',0,0,0,0,0,0,'2025-07-30 12:05:14','2025-12-09 19:27:05','2025-12-09 19:27:05','2025-12-09 19:27:05',NULL,NULL,NULL),
(570,4,'<010101987570f9b8-da4a8223-d79a-40f0-9341-366e9dc0ee1d-000000@us-west-2.amazonses.com>',NULL,NULL,'New sign-in and authentication with your Login.gov account','no-reply@login.gov','\"Login.gov\"','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns=\"http://www.w3.org/1999/xhtml\" style=\"background-color: #ebf3fa; min-height: 100%;\">\r\n  <head>\r\n    <meta content=\"text/html; charset=utf-8\" http-equiv=\"Content-Type\" />\r\n    <meta content=\"width=device-width\" name=\"viewport\" />\r\n    <title>New sign-in and authentication with your Login.gov account\r\n    </title>\r\n  <style>body {\r\n-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; box-sizing: border-box; min-width: 100%; margin: 0; padding: 0; width: 100% !important;\r\n}\r\n.ExternalClass {\r\nwidth: 100%;\r\n}\r\n.ExternalClass {\r\nline-height: 100%;\r\n}\r\n#backgroundTable {\r\nmargin: 0; padding: 0; width: 100% !important; line-height: 100% !important;\r\n}\r\nimg {\r\n-ms-interpolation-mode: bicubic; clear: both; outline: none; width: auto; max-width: 100%; text-decoration: none; display: block;\r\n}\r\nbody {\r\ncolor: #5b616a; text-align: left; margin: 0; padding: 0; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5;\r\n}\r\nbody {\r\nfont-size: 16px; line-height: 1.5;\r\n}\r\na:hover {\r\ncolor: #005288;\r\n}\r\na:active {\r\ncolor: #005288;\r\n}\r\na:visited {\r\ncolor: #0071bb;\r\n}\r\nh1 a:visited {\r\ncolor: #0071bb;\r\n}\r\nh2 a:visited {\r\ncolor: #0071bb;\r\n}\r\nh3 a:visited {\r\ncolor: #0071bb;\r\n}\r\nh4 a:visited {\r\ncolor: #0071bb;\r\n}\r\nh5 a:visited {\r\ncolor: #0071bb;\r\n}\r\nh6 a:visited {\r\ncolor: #0071bb;\r\n}\r\ntable.button:hover table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button:active table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button table tr td a:visited {\r\ncolor: #fff;\r\n}\r\ntable.button.tiny:hover table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button.tiny:active table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button.tiny table tr td a:visited {\r\ncolor: #fff;\r\n}\r\ntable.button.small:hover table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button.small:active table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button.small table tr td a:visited {\r\ncolor: #fff;\r\n}\r\ntable.button.large:hover table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button.large:active table tr td a {\r\ncolor: #fff;\r\n}\r\ntable.button.large table tr td a:visited {\r\ncolor: #fff;\r\n}\r\ntable.button:hover table td {\r\ncolor: #fff; background: #005288;\r\n}\r\ntable.button:visited table td {\r\ncolor: #fff; background: #005288;\r\n}\r\ntable.button:active table td {\r\ncolor: #fff; background: #005288;\r\n}\r\ntable.button:hover table a {\r\nborder: 0 solid #005288;\r\n}\r\ntable.button:visited table a {\r\nborder: 0 solid #005288;\r\n}\r\ntable.button:active table a {\r\nborder: 0 solid #005288;\r\n}\r\ntable.button.secondary:hover table td {\r\ncolor: #fff; background: #1a467b;\r\n}\r\ntable.button.secondary:hover table a {\r\nborder: 0 solid #1a467b;\r\n}\r\ntable.button.secondary:hover table td a {\r\ncolor: #fff;\r\n}\r\ntable.button.secondary:active table td a {\r\ncolor: #fff;\r\n}\r\ntable.button.secondary table td a:visited {\r\ncolor: #fff;\r\n}\r\ntable.button.success:hover table td {\r\nbackground: #23bf5d;\r\n}\r\ntable.button.success:hover table a {\r\nborder: 0 solid #23bf5d;\r\n}\r\ntable.button.alert:hover table td {\r\nbackground: #e23317;\r\n}\r\ntable.button.alert:hover table a {\r\nborder: 0 solid #e23317;\r\n}\r\ntable.button.warning:hover table td {\r\nbackground: #cc8b00;\r\n}\r\ntable.button.warning:hover table a {\r\nborder: 0 solid #cc8b00;\r\n}\r\n.thumbnail:hover {\r\nbox-shadow: 0 0 6px 1px #0071bb80;\r\n}\r\n.thumbnail:focus {\r\nbox-shadow: 0 0 6px 1px #0071bb80;\r\n}\r\nbody.outlook p {\r\ndisplay: inline !important;\r\n}\r\n.gray:active {\r\ncolor: #5b616a;\r\n}\r\n.gray:hover {\r\ncolor: #5b616a;\r\n}\r\n.gray:visited {\r\ncolor: #5b616a;\r\n}\r\n.button.expanded.large .btn-warn-bkg:hover {\r\nbackground-color: #fff;\r\n}\r\n.usa-table th[data-sortable]:after {\r\ncontent: \"\"; border-bottom: 1px solid #0000; width: 100%; height: 0; position: absolute; bottom: 0; left: 0;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:visited {\r\ncolor: #0071bb;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:visited {\r\ncolor: #0071bb;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:hover {\r\ncolor: #205493;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:hover {\r\ncolor: #205493;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:active {\r\ncolor: #112e51;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:active {\r\ncolor: #112e51;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:focus {\r\noutline-offset: 1px; outline: 2px solid #0071bb;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:focus {\r\noutline-offset: 1px; outline: 2px solid #0071bb;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:disabled:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:disabled:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:disabled:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:disabled:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:disabled:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:disabled:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:disabled:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:focus {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:disabled:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:focus {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:hover .usa-icon&gt;g.unsorted {\r\nfill: #000;\r\n}\r\n.usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:hover .usa-icon&gt;g.unsorted {\r\nfill: #000;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:visited {\r\ncolor: #0071bb;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:hover {\r\ncolor: #205493;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:active {\r\ncolor: #112e51;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:focus {\r\noutline-offset: 1px; outline: 2px solid #0071bb;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:disabled:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:disabled:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:disabled:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:disabled:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:focus {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:visited {\r\ncolor: #0071bb;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:hover {\r\ncolor: #205493;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:active {\r\ncolor: #112e51;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:focus {\r\noutline-offset: 1px; outline: 2px solid #0071bb;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:disabled:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:hover {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:disabled:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:active {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:disabled:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:focus {\r\nbox-shadow: none; background-color: #0000; text-decoration: underline;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:disabled:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:hover {\r\ncolor: #767676;\r\n}\r\n.usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:focus {\r\ncolor: #767676;\r\n}\r\n@media only screen and (max-width:596px) {\r\n  .small-float-center {\r\n    float: none !important; text-align: center !important; margin: 0 auto !important;\r\n  }\r\n  .small-text-center {\r\n    text-align: center !important;\r\n  }\r\n  .small-text-left {\r\n    text-align: left !important;\r\n  }\r\n  .small-text-right {\r\n    text-align: right !important;\r\n  }\r\n  .hide-for-large {\r\n    font-size: inherit !important; line-height: inherit !important; width: auto !important; max-height: none !important; display: block !important; overflow: visible !important;\r\n  }\r\n  table.body table.container .hide-for-large {\r\n    width: 100% !important; display: table !important;\r\n  }\r\n  table.body table.container .row.hide-for-large {\r\n    width: 100% !important; display: table !important;\r\n  }\r\n  table.body table.container .callout-inner.hide-for-large {\r\n    width: 100% !important; display: table-cell !important;\r\n  }\r\n  table.body table.container .show-for-large {\r\n    mso-hide: all; width: 0; overflow: hidden; display: none !important;\r\n  }\r\n  .menu.small-vertical .menu-item {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.body img {\r\n    width: auto; height: auto;\r\n  }\r\n  table.body center {\r\n    min-width: 0 !important;\r\n  }\r\n  table.body .container {\r\n    width: 95% !important;\r\n  }\r\n  table.body .columns {\r\n    box-sizing: border-box; height: auto !important; padding-left: 16px !important; padding-right: 16px !important;\r\n  }\r\n  table.body .column {\r\n    box-sizing: border-box; height: auto !important; padding-left: 16px !important; padding-right: 16px !important;\r\n  }\r\n  table.body .columns .column {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.body .columns .columns {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.body .column .column {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.body .column .columns {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.body .collapse .columns {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.body .collapse .column {\r\n    padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  td.small-1 {\r\n    width: 8.33333% !important; display: inline-block !important;\r\n  }\r\n  th.small-1 {\r\n    width: 8.33333% !important; display: inline-block !important;\r\n  }\r\n  td.small-2 {\r\n    width: 16.6667% !important; display: inline-block !important;\r\n  }\r\n  th.small-2 {\r\n    width: 16.6667% !important; display: inline-block !important;\r\n  }\r\n  td.small-3 {\r\n    width: 25% !important; display: inline-block !important;\r\n  }\r\n  th.small-3 {\r\n    width: 25% !important; display: inline-block !important;\r\n  }\r\n  td.small-4 {\r\n    width: 33.3333% !important; display: inline-block !important;\r\n  }\r\n  th.small-4 {\r\n    width: 33.3333% !important; display: inline-block !important;\r\n  }\r\n  td.small-5 {\r\n    width: 41.6667% !important; display: inline-block !important;\r\n  }\r\n  th.small-5 {\r\n    width: 41.6667% !important; display: inline-block !important;\r\n  }\r\n  td.small-6 {\r\n    width: 50% !important; display: inline-block !important;\r\n  }\r\n  th.small-6 {\r\n    width: 50% !important; display: inline-block !important;\r\n  }\r\n  td.small-7 {\r\n    width: 58.3333% !important; display: inline-block !important;\r\n  }\r\n  th.small-7 {\r\n    width: 58.3333% !important; display: inline-block !important;\r\n  }\r\n  td.small-8 {\r\n    width: 66.6667% !important; display: inline-block !important;\r\n  }\r\n  th.small-8 {\r\n    width: 66.6667% !important; display: inline-block !important;\r\n  }\r\n  td.small-9 {\r\n    width: 75% !important; display: inline-block !important;\r\n  }\r\n  th.small-9 {\r\n    width: 75% !important; display: inline-block !important;\r\n  }\r\n  td.small-10 {\r\n    width: 83.3333% !important; display: inline-block !important;\r\n  }\r\n  th.small-10 {\r\n    width: 83.3333% !important; display: inline-block !important;\r\n  }\r\n  td.small-11 {\r\n    width: 91.6667% !important; display: inline-block !important;\r\n  }\r\n  th.small-11 {\r\n    width: 91.6667% !important; display: inline-block !important;\r\n  }\r\n  td.small-12 {\r\n    width: 100% !important; display: inline-block !important;\r\n  }\r\n  th.small-12 {\r\n    width: 100% !important; display: inline-block !important;\r\n  }\r\n  .columns td.small-12 {\r\n    width: 100% !important; display: block !important;\r\n  }\r\n  .column td.small-12 {\r\n    width: 100% !important; display: block !important;\r\n  }\r\n  .columns th.small-12 {\r\n    width: 100% !important; display: block !important;\r\n  }\r\n  .column th.small-12 {\r\n    width: 100% !important; display: block !important;\r\n  }\r\n  table.body td.small-offset-1 {\r\n    margin-left: 8.33333% !important;\r\n  }\r\n  table.body th.small-offset-1 {\r\n    margin-left: 8.33333% !important;\r\n  }\r\n  table.body td.small-offset-2 {\r\n    margin-left: 16.6667% !important;\r\n  }\r\n  table.body th.small-offset-2 {\r\n    margin-left: 16.6667% !important;\r\n  }\r\n  table.body td.small-offset-3 {\r\n    margin-left: 25% !important;\r\n  }\r\n  table.body th.small-offset-3 {\r\n    margin-left: 25% !important;\r\n  }\r\n  table.body td.small-offset-4 {\r\n    margin-left: 33.3333% !important;\r\n  }\r\n  table.body th.small-offset-4 {\r\n    margin-left: 33.3333% !important;\r\n  }\r\n  table.body td.small-offset-5 {\r\n    margin-left: 41.6667% !important;\r\n  }\r\n  table.body th.small-offset-5 {\r\n    margin-left: 41.6667% !important;\r\n  }\r\n  table.body td.small-offset-6 {\r\n    margin-left: 50% !important;\r\n  }\r\n  table.body th.small-offset-6 {\r\n    margin-left: 50% !important;\r\n  }\r\n  table.body td.small-offset-7 {\r\n    margin-left: 58.3333% !important;\r\n  }\r\n  table.body th.small-offset-7 {\r\n    margin-left: 58.3333% !important;\r\n  }\r\n  table.body td.small-offset-8 {\r\n    margin-left: 66.6667% !important;\r\n  }\r\n  table.body th.small-offset-8 {\r\n    margin-left: 66.6667% !important;\r\n  }\r\n  table.body td.small-offset-9 {\r\n    margin-left: 75% !important;\r\n  }\r\n  table.body th.small-offset-9 {\r\n    margin-left: 75% !important;\r\n  }\r\n  table.body td.small-offset-10 {\r\n    margin-left: 83.3333% !important;\r\n  }\r\n  table.body th.small-offset-10 {\r\n    margin-left: 83.3333% !important;\r\n  }\r\n  table.body td.small-offset-11 {\r\n    margin-left: 91.6667% !important;\r\n  }\r\n  table.body th.small-offset-11 {\r\n    margin-left: 91.6667% !important;\r\n  }\r\n  table.body table.columns td.expander {\r\n    display: none !important;\r\n  }\r\n  table.body table.columns th.expander {\r\n    display: none !important;\r\n  }\r\n  table.body .right-text-pad {\r\n    padding-left: 10px !important;\r\n  }\r\n  table.body .text-pad-right {\r\n    padding-left: 10px !important;\r\n  }\r\n  table.body .left-text-pad {\r\n    padding-right: 10px !important;\r\n  }\r\n  table.body .text-pad-left {\r\n    padding-right: 10px !important;\r\n  }\r\n  table.menu {\r\n    width: 100% !important;\r\n  }\r\n  table.menu td {\r\n    width: auto !important; display: inline-block !important;\r\n  }\r\n  table.menu th {\r\n    width: auto !important; display: inline-block !important;\r\n  }\r\n  table.menu.vertical td {\r\n    display: block !important;\r\n  }\r\n  table.menu.vertical th {\r\n    display: block !important;\r\n  }\r\n  table.menu.small-vertical td {\r\n    display: block !important;\r\n  }\r\n  table.menu.small-vertical th {\r\n    display: block !important;\r\n  }\r\n  table.menu[align=center] {\r\n    width: auto !important;\r\n  }\r\n  table.button.small-expand {\r\n    width: 100% !important;\r\n  }\r\n  table.button.small-expanded {\r\n    width: 100% !important;\r\n  }\r\n  table.button.small-expand table {\r\n    width: 100%;\r\n  }\r\n  table.button.small-expanded table {\r\n    width: 100%;\r\n  }\r\n  table.button.small-expand table a {\r\n    text-align: center !important; width: 100% !important; padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.button.small-expanded table a {\r\n    text-align: center !important; width: 100% !important; padding-left: 0 !important; padding-right: 0 !important;\r\n  }\r\n  table.button.small-expand center {\r\n    min-width: 0;\r\n  }\r\n  table.button.small-expanded center {\r\n    min-width: 0;\r\n  }\r\n}\r\n@media (forced-colors:active) {\r\n  .usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:disabled {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true] {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button:disabled:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable]:not([aria-sort]) .usa-table__header__button[aria-disabled=true]:focus {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:disabled {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true] {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=none] .usa-table__header__button:disabled:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=none] .usa-table__header__button[aria-disabled=true]:focus {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:disabled {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true] {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button:disabled:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=descending] .usa-table__header__button[aria-disabled=true]:focus {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:disabled {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true] {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button:disabled:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:hover {\r\n    color: GrayText;\r\n  }\r\n  .usa-table th[data-sortable][aria-sort=ascending] .usa-table__header__button[aria-disabled=true]:focus {\r\n    color: GrayText;\r\n  }\r\n}\r\n</style></head>\r\n  <body style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; box-sizing: border-box; min-width: 100%; width: 100% !important; color: #5b616a; text-align: left; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\">\r\n    <table class=\"body\" data-made-with-foundation=\"\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; height: 100%; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" bgcolor=\"#ebf3fa\">\r\n      <tbody>\r\n        <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n          <td align=\"center\" class=\"float-center\" valign=\"top\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; float: none; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 auto; padding: 0;\">\r\n            <center style=\"width: 100%; min-width: 580px;\">\r\n              <table class=\"spacer\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                <tbody>\r\n                  <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                    <td class=\"s10\" height=\"10px\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; mso-line-height-rule: exactly; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 10px; font-size: 10px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                       \r\n                    </td>\r\n                  </tr>\r\n                </tbody>\r\n              </table>\r\n              <table class=\"container float-center\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: center; width: 580px; float: none; margin: 0 auto; padding: 0;\" bgcolor=\"#fff\">\r\n                <tbody>\r\n                  <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                    <td style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                      <table class=\"spacer\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                        <tbody>\r\n                          <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                            <td class=\"s60\" height=\"60px\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; mso-line-height-rule: exactly; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 60px; font-size: 60px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                               \r\n                            </td>\r\n                          </tr>\r\n                        </tbody>\r\n                      </table>\r\n                      <table class=\"row\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; position: relative; display: table; padding: 0;\">\r\n                        <tbody>\r\n                          <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                            <th class=\"small-12 large-12 columns first last\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; width: 520px; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 auto; padding: 0 60px 16px;\" align=\"left\" valign=\"top\">\r\n                              <table style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                                <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                  <th style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                                    <img style=\"width: 142px; height: 19px; -ms-interpolation-mode: bicubic; clear: both; outline: none; max-width: 100%; text-decoration: none; display: block;\" alt=\"Login.gov logo\" src=\"cid:6890c0c2ca918_24f59bf0173795a@idp-i-0caf400a741e34293.prod.login.gov.mail\" width=\"142\" height=\"19\" />\r\n                                  </th>\r\n                                  <th class=\"expander\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; visibility: hidden; width: 0; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\"></th>\r\n                                </tr>\r\n                              </table>\r\n                            </th>\r\n                          </tr>\r\n                        </tbody>\r\n                      </table>\r\n                      <table class=\"row\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; position: relative; display: table; padding: 0;\">\r\n                        <tbody>\r\n                          <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                            <th class=\"small-12 large-12 columns first last\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; width: 520px; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 auto; padding: 0 60px 16px;\" align=\"left\" valign=\"top\">\r\n                              <table style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                                <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                  <th style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                                    <table class=\"spacer\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                                      <tbody>\r\n                                        <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                          <td class=\"s30\" height=\"30px\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; mso-line-height-rule: exactly; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 30px; font-size: 30px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                                             \r\n                                          </td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                      <h1 style=\"color: inherit; font-family: Arial,Helvetica,sans-serif; font-weight: 700; line-height: 1.4; word-wrap: normal; font-size: 28px; margin: 0 0 16px; padding: 0;\" align=\"left\">New sign-in and authentication with your Login.gov account</h1>\r\n                                    <p class=\"margin-bottom-2\" style=\"color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 0 1rem; padding: 0;\" align=\"left\">\r\n  Your Login.gov email and password were used to sign-in and authenticate on a new device.\r\n</p>\r\n\r\n<p class=\"margin-bottom-2\" style=\"color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 0 1rem; padding: 0;\" align=\"left\">\r\n  If you recognize this activity, you don’t need to do anything.\r\n</p>\r\n\r\n<p style=\"color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 0 10px; padding: 0;\" align=\"left\">\r\n  If this wasn’t you, <a href=\"https://secure.login.gov/en/events/disavow?disavowal_token=tXzrEsUwbWgv5Ur4icF_hMCHv1F7jZC7FEg2Bbuqqgo\" style=\"color: #0071bb; text-align: left; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; text-decoration: none; padding: 0;\">reset your password</a> and change your <a href=\"https://www.login.gov/help/manage-your-account/add-or-change-your-authentication-method/\" style=\"color: #0071bb; text-align: left; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; text-decoration: none; padding: 0;\">authentication methods</a> immediately.\r\n</p>\r\n\r\n  <div class=\"margin-top-5\" style=\"margin-top: 2.5rem;\">\r\n    <table class=\"usa-table\" style=\"border-spacing: 0; border-collapse: separate; vertical-align: top; text-align: left; width: 100%; color: #454545; font-family: Public Sans Web,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol; font-size: 1rem; line-height: 1.5; margin: 1.25rem 0; padding: 0;\">\r\n      <thead>\r\n        <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n          <th scope=\"col\" class=\"font-family-mono\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #454545; font-family: monospace; font-weight: 700; line-height: 1.4; font-size: 16px; background-clip: padding-box; border-top-left-radius: .25rem; border-top-right-radius: .25rem; margin: 0; padding: .5rem 1rem; border: 1px solid #dedede;\" align=\"left\" bgcolor=\"#f0f0f0\" valign=\"top\">\r\n            New sign-in potentially located in Rochester, NY\r\n          </th>\r\n        </tr>\r\n      </thead>\r\n      <tbody>\r\n          <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n            <td class=\"font-family-mono\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: monospace; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: .5rem 1rem; border-color: #dedede; border-style: solid; border-width: 0 1px 1px;\" align=\"left\" bgcolor=\"#fff\" valign=\"top\">\r\n              Signed in with password<br />\r\n              August 4, 2025 at 10:16 AM (Eastern)\r\n            </td>\r\n          </tr>\r\n          <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n            <td class=\"font-family-mono\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: monospace; font-weight: 400; line-height: 1.5; font-size: 16px; border-bottom-left-radius: .25rem; border-bottom-right-radius: .25rem; margin: 0; padding: .5rem 1rem; border-color: #dedede; border-style: solid; border-width: 0 1px 1px;\" align=\"left\" bgcolor=\"#fff\" valign=\"top\">\r\n              Authenticated<br />\r\n              August 4, 2025 at 10:16 AM (Eastern)\r\n            </td>\r\n          </tr>\r\n      </tbody>\r\n    </table>\r\n  </div>\r\n\r\n\r\n                                    <table class=\"spacer\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                                      <tbody>\r\n                                        <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                          <td class=\"s30\" height=\"30px\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; mso-line-height-rule: exactly; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 30px; font-size: 30px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                                             \r\n                                          </td>\r\n                                        </tr>\r\n                                      </tbody>\r\n                                    </table>\r\n                                  </th>\r\n                                </tr>\r\n                              </table>\r\n                            </th>\r\n                          </tr>\r\n                        </tbody>\r\n                      </table>\r\n                      <table align=\"center\" class=\"wrapper\" style=\"width: 100%; border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; padding: 0;\">\r\n                        <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                          <td class=\"wrapper-inner\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                            <table class=\"row\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; position: relative; display: table; padding: 0;\">\r\n                              <tbody>\r\n                                <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                  <th class=\"small-12 large-12 columns first last\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; width: 520px; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 auto; padding: 0 60px 16px;\" align=\"left\" valign=\"top\">\r\n                                    <table style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                                      <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                        <th style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                                          <p style=\"color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 0 10px; padding: 0;\" align=\"left\">\r\n                                            Please do not reply to this message.\r\n                                            If you need help, visit <a href=\"https://www.login.gov/help/\" style=\"color: #0071bb; text-align: left; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; text-decoration: none; padding: 0;\">login.gov/help/</a>\r\n                                          </p>\r\n                                        </th>\r\n                                      </tr>\r\n                                    </table>\r\n                                  </th>\r\n                                </tr>\r\n                              </tbody>\r\n                            </table>\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                      <table class=\"xwrapper\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; padding: 0;\">\r\n                        <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                          <td class=\"xwrapper-inner\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                            <table class=\"row\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; position: relative; display: table; padding: 0;\">\r\n                              <tbody>\r\n                                <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                  <th class=\"small-12 large-12 columns first last\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; width: 520px; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 auto; padding: 0 60px 16px;\" align=\"left\" valign=\"top\">\r\n                                    <table class=\"hr\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; margin: 10px auto; padding: 0;\">\r\n                                      <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                        <th style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0 0 10px auto;\" align=\"center\" valign=\"top\">\r\n                                           \r\n                                        </th>\r\n                                      </tr>\r\n                                    </table>\r\n                                    <table style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; padding: 0;\">\r\n                                      <tr style=\"vertical-align: top; padding: 0;\" align=\"left\">\r\n                                        <th style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\">\r\n                                          <p style=\"color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 0 10px; padding: 0;\" align=\"left\">\r\n                                            <a style=\"text-decoration: underline; color: #0071bb; text-align: left; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; padding: 0;\" href=\"https://www.login.gov/\">About Login.gov</a>\r\n                                              |  \r\n                                            <a style=\"text-decoration: underline; color: #0071bb; text-align: left; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; padding: 0;\" href=\"https://www.login.gov/policy/\">Privacy policy</a>\r\n                                          </p>\r\n                                          <p style=\"color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0 0 10px; padding: 0;\" align=\"left\">\r\n                                            Sent at 2025-08-04T14:16:34.830270Z\r\n                                          </p>\r\n                                        </th>\r\n                                        <th class=\"expander\" style=\"word-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; border-collapse: collapse !important; visibility: hidden; width: 0; color: #5b616a; font-family: Arial,Helvetica,sans-serif; font-weight: 400; line-height: 1.5; font-size: 16px; margin: 0; padding: 0;\" align=\"left\" valign=\"top\"></th>\r\n                                      </tr>\r\n                                    </table>\r\n                                  </th>\r\n                                </tr>\r\n                              </tbody>\r\n                            </table>\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </tbody>\r\n              </table>\r\n            </center>\r\n          </td>\r\n        </tr>\r\n      </tbody>\r\n      <!--prevent Gmail on iOS font size manipulation-->\r\n      <div style=\"display: none; white-space: nowrap; font: 15px/0 courier;\">\r\n                                 \r\n                                 \r\n               \r\n      </div>\r\n    </table>\r\n  </body>\r\n</html>','Login.gov logo\r\n\r\n**********************************************************\r\nNew sign-in and authentication with your Login.gov account\r\n**********************************************************\r\n\r\nYour Login.gov email and password were used to sign-in and\r\nauthenticate on a new device.\r\n\r\nIf you recognize this activity, you don’t need to do anything.\r\n\r\nIf this wasn’t you, reset your password \r\n( https://secure.login.gov/en/events/disavow?disavowal_token=tXzrEsUwbWgv5Ur4icF_hMCHv1F7jZC7FEg2Bbuqqgo )\r\n and change your authentication methods \r\n( https://www.login.gov/help/manage-your-account/add-or-change-your-authentication-method/ )\r\n immediately.\r\n\r\nNew sign-in potentially located in Rochester, NY\r\n\r\nSigned in with password\r\n\r\nAugust 4, 2025 at 10:16 AM (Eastern)\r\n\r\nAuthenticated\r\n\r\nAugust 4, 2025 at 10:16 AM (Eastern)\r\n\r\nPlease do not reply\r\nto this message.\r\nIf you need help,\r\nvisit login.gov/help/ ( https://www.login.gov/help/ )\r\n\r\nAbout Login.gov \r\n( https://www.login.gov/ )\r\n|\r\nPrivacy policy \r\n( https://www.login.gov/policy/ )\r\n\r\nSent at\r\n2025-08-04T14:16:34.830270Z',0,0,0,0,0,0,'2025-08-04 14:16:35','2025-12-09 19:27:05','2025-12-09 19:27:05','2025-12-09 19:27:05',NULL,NULL,NULL),
(571,4,'<1747162259.109725.1754317366239@app128017.mia201.service-now.com>',NULL,NULL,'Incident INC-GSAFSD20147835 was created','fsdsupport@gsa.gov','\"Federal Service Desk (FSD)\"','<html><head></head><body><p></p>\r\n<style type=\"text/css\">\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n</style>\r\n<div style=\"margin: 0 auto !important;\" align=\"center\">\r\n<table class=\"w100\" style=\"width: 600px; background-color: #f7f7f9; margin: 0 auto !important; padding: 0px;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" bgcolor=\"#F7F7F9\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 13px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"background-color: #d8ecff;\" height=\"32\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"40\" style=\"width: 53.1077%;\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td height=\"50\"><img src=\"cid:sys_attachment.dosys_idbe2e8d8d1bda2a50205e8736624bcb90@SNC.5d9671c899c96c3e\" width=\"auto\" height=\"50\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr style=\"background-color: #d8ecff;\" height=\"22\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr><!-- Left-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- CONTAINER -->\r\n<td width=\"564\">\r\n<table class=\"w100\" style=\"margin: 0px; padding: 0px; box-shadow: 0px 2px 10px rgba(23, 40, 52, 0.08);\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody><!-- Main Container -->\r\n<tr>\r\n<td class=\"pad-sides-20\" style=\"border-radius: 6px; text-align: left; background-color: #ffffff; padding: 24px 24px 24px 24px; color: #454545;\" align=\"center\">\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-bottom: 10px;\"><strong>This is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD)</strong> which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.</div>\r\n</div>\r\n<hr>\r\n<p></p><div style=\"font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif; line-height: 26px; font-size: 16px;\">\r\n<div style=\"line-height: 26px; padding-bottom: 24px; text-align: left; color: #454545;\">\r\n<h4 style=\"margin-top: 14pt; line-height: 32px; margin-bottom: 4pt; text-align: left; font-size: 17.52pt;\"><strong> Your Incident Has Been Received</strong></h4>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left; font-size: 12pt;\">Hello <strong>rick@mavrix.one,</strong></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left;\">A new incident <strong><span style=\"font-size: 12pt;\">INC-GSAFSD20147835 </span></strong><span style=\"font-size: 12pt;\">has been successfully created.</span></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 6pt; text-align: left;\"><span style=\"font-size: 12pt;\">You can view the full incident details using the link below:<br></span><strong><span style=\"font-size: 12pt;\"></span></strong></p><div style=\"margin-top: 8px;\"><strong><a href=\"https://www.fsd.gov/gsafsd_sp?id=incident_form&amp;table=incident&amp;sys_id=ecb56edf8707a690efb1fe68cebb3551\" style=\"background-color: #70E17B;color: #162E51;font-size: 16px;text-decoration: none; border-radius: 4px;-webkit-border-radius: 4px;-moz-border-radius: 4px;display: inline-block;padding: 10px 32px 10px 32px;\">View incident</a></strong></div><p></p>\r\n<span style=\"font-size: 12pt;\">Thank you,</span><span style=\"font-size: 12pt;\"><br></span><strong><span style=\"font-size: 12pt;\">FSD.gov Team</span></strong></div>\r\n</div><p></p>\r\n<hr>\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-top: 10px;\"><strong>Don\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times!</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0036075\" target=\"_blank\" rel=\"noopener\">Invite others </a>to help manage your registration. <strong>DO NOT</strong> attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. <strong>Submit all entity validation documentation from your Entity Workspace in SAM.gov.</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0057690\" target=\"_blank\" rel=\"noopener\">Learn how to add documentation</a> to your entity validation case.</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- END CONTAINER --> <!-- Right-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"background-color: #f7f7f9;\" align=\"center\" height=\"40\"></td>\r\n</tr>\r\n<!-- Footer started -->\r\n<tr style=\"background-color: #d8ecff;\">\r\n<td>\r\n<table style=\"background-color: #d8ecff;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td height=\"30\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 14px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_id7d465e4a1b3ca2103943eac1604bcbb6@SNC.cebb303fe9bafd11\" width=\"120\" height=\"40\" title=\"Cloud 4.png\" alt=\"Cloud\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"30\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff;\" align=\"center\" valign=\"top\" height=\"30\"><img src=\"cid:sys_attachment.dosys_idb04e85cd1bda2a50205e8736624bcbfa@SNC.d1bc446c3bffaf7d\" width=\"auto\" height=\"30\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_idb1a5160a1b3ca2103943eac1604bcbdc@SNC.65d90e03f13dbdab\" width=\"140\" height=\"40\" title=\"Cloud 3.png\" alt=\"Cloud\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff; color: #ffffff;\">\r\n<table style=\"color: #ffffff;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr align=\"center\">\r\n<td><span id=\"templateAddress\" class=\"footer\" style=\"color: #162e51; font-size: 14px; line-height: 18px; text-align: center; margin: 0 !important;\"> GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td height=\"10\"></td>\r\n</tr>\r\n<tr>\r\n<td height=\"120px\"><img style=\"height: 120px; width: 100%;\" src=\"cid:sys_attachment.dosys_id7555160a1b3ca2103943eac1604bcb39@SNC.d12424c865281f3b\" height=\"120\" title=\"Jefferson Light Blue 2.png\" alt=\"Jefferson Memorial\"><span id=\"mce_26\"></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<!-- Footer end--></tbody>\r\n</table>\r\n</div><div>&nbsp;</div><div style=\"display:inline\">Ref:MSG1444885_NuFbXPgeUqtqSyWlywIG</div></body></html>','\r\n\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD) which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.\r\n\r\n\r\n\r\n\r\n Your Incident Has Been Received\r\nHello rick@mavrix.one,\r\nA new incident INC-GSAFSD20147835 has been successfully created.\r\nYou can view the full incident details using the link below:View incident\r\nThank you,FSD.gov Team\r\n\r\n\r\n\r\nDon\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times! Invite others to help manage your registration. DO NOT attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. Submit all entity validation documentation from your Entity Workspace in SAM.gov. Learn how to add documentation to your entity validation case.\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;Ref:MSG1444885_NuFbXPgeUqtqSyWlywIG',0,0,0,0,0,0,'2025-08-04 14:22:46','2025-12-09 19:27:06','2025-12-09 19:27:06','2025-12-09 19:27:06',NULL,NULL,NULL),
(572,4,' <CH2PR16MB343193462625D7394FE163D8FE23A@CH2PR16MB3431.namprd16.prod.outlook.com>',NULL,NULL,'Re: Signal Group...','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nHi Rick, my signal number is: 812-552-6854</div>\r\n<div class=\"elementToProof\" id=\"Signature\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"8\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">Jarrett@</a>lithiumbatterycompany<a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"9\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">.com</a></u></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-auth=\"NotApplicable\" data-linkindex=\"10\" title=\"https://lithiumbatterycompany.com/\" href=\"https://lithiumbatterycompany.com/\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Nathan Staron &lt;Nathan@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b> Sunday, August 3, 2025 8:27 PM<br>\r\n<b>To:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Cc:</b> Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;; Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Subject:</b> Re: Signal Group...</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div dir=\"auto\">Hi Rick.&nbsp;</div>\r\n<div dir=\"auto\"><br>\r\n</div>\r\n<div dir=\"auto\">My signal number is 813-504-0074.&nbsp;<br clear=\"all\">\r\n<br clear=\"all\">\r\n<div dir=\"auto\">\r\n<div dir=\"ltr\" class=\"x_gmail_signature\" data-smartmail=\"gmail_signature\">\r\n<div dir=\"ltr\"><br>\r\n<div><br>\r\n</div>\r\n<div>\r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium; border-collapse:collapse; font-size:10px; font-family:Inter,sans-serif; color:rgb(0,0,0)\">\r\n<tbody style=\"font-family:Inter,sans-serif\">\r\n<tr style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<td style=\"border:medium; border-collapse:collapse; line-height:16px; font-family:Inter,sans-serif\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"border:medium; font-family:Inter,sans-serif\">\r\n<tbody style=\"font-family:Inter,sans-serif\">\r\n<tr style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226); border-collapse:separate; border-radius:5px; padding:3px 8px 8px; font-family:Inter,sans-serif\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<tbody style=\"font-family:Inter,sans-serif\">\r\n<tr style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<td style=\"border:medium; border-collapse:collapse; padding:5px 0px 0px; font-family:Inter,sans-serif\">\r\n<a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" width=\"24\" style=\"display:block; font-family:Inter,sans-serif\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\"></a></td>\r\n</tr>\r\n<tr style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<td style=\"border:medium; border-collapse:collapse; padding:5px 0px 0px; font-family:Inter,sans-serif\">\r\n<a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" width=\"24\" style=\"display:block; font-family:Inter,sans-serif\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\"></a></td>\r\n</tr>\r\n<tr style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<td style=\"border:medium; border-collapse:collapse; padding:5px 0px 0px; font-family:Inter,sans-serif\">\r\n<a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" width=\"24\" style=\"display:block; font-family:Inter,sans-serif\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\"></a></td>\r\n</tr>\r\n<tr style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<td style=\"border:medium; border-collapse:collapse; padding:5px 0px 0px; font-family:Inter,sans-serif\">\r\n<a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" width=\"24\" style=\"display:block; font-family:Inter,sans-serif\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\"></a></td>\r\n</tr>\r\n<tr style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<td style=\"border:medium; border-collapse:collapse; padding:5px 0px 0px; font-family:Inter,sans-serif\">\r\n<a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" width=\"24\" style=\"display:block; font-family:Inter,sans-serif\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\"></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"8\" style=\"border:medium; border-collapse:collapse; display:revert; font-family:Inter,sans-serif\">\r\n&nbsp;</td>\r\n<td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226); border-collapse:collapse; padding:15px; border-radius:5px; font-family:Inter,sans-serif\">\r\n<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<tbody style=\"font-family:Inter,sans-serif\">\r\n<tr style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<td align=\"left\" valign=\"middle\" style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<tbody style=\"font-family:Inter,sans-serif\">\r\n<tr style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<td style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img width=\"170\" style=\"display:block; font-family:Inter,sans-serif\" src=\"https://app.customesignature.com/upload/signature/11122/11122.png\"></a></td>\r\n</tr>\r\n<tr style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<td style=\"border:medium; border-collapse:collapse; padding:0px 0px 10px; font-family:Inter,sans-serif\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<tbody style=\"font-family:Inter,sans-serif\">\r\n<tr style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<td style=\"border:medium; border-collapse:collapse; padding:15px 0px 0px; font-family:Inter,sans-serif\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<tbody style=\"font-family:Inter,sans-serif\">\r\n<tr style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<td align=\"left\" valign=\"middle\" style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<span style=\"font-weight:bold; font-size:20px; font-family:Inter,sans-serif\">NATHAN A. STARON</span></td>\r\n<td align=\"left\" valign=\"middle\" style=\"border:medium; border-collapse:collapse; padding-left:5px; font-family:Inter,sans-serif\">\r\n<img width=\"15\" height=\"15\" style=\"display:block; font-family:Inter,sans-serif\" src=\"https://app.customesignature.com/images/verify.gif\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<td style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<span style=\"font-size:12px; font-family:Inter,sans-serif\">Founder / CEO</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<td style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<span style=\"font-weight:bold; font-size:12px; font-family:Inter,sans-serif\">Lithium Battery Company</span></td>\r\n</tr>\r\n<tr style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<td style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<span style=\"font-weight:bold; font-size:12px; font-family:Inter,sans-serif\">Cell Phone</span>&nbsp;<a href=\"tel:813-504-0074\" target=\"_blank\" style=\"font-size:12px; font-family:Inter,sans-serif; color:rgb(0,0,0)\">813-504-0074</a></td>\r\n</tr>\r\n<tr style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<td style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<span style=\"font-weight:bold; font-size:12px; font-family:Inter,sans-serif\">Phone</span>&nbsp;<a href=\"tel:844-GET-LITHIUM\" target=\"_blank\" style=\"font-size:12px; font-family:Inter,sans-serif; color:rgb(0,0,0)\">844-GET-LITHIUM</a></td>\r\n</tr>\r\n<tr style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<td style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\" style=\"font-family:Inter,sans-serif; color:rgb(0,0,0)\">Nathan@lithiumbatterycompany.com</a></td>\r\n</tr>\r\n<tr style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<td style=\"border:medium; border-collapse:collapse; padding:5px 0px 0px; font-family:Inter,sans-serif\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<tbody style=\"font-family:Inter,sans-serif\">\r\n<tr style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<td style=\"border:medium; border-collapse:collapse; display:flex; font-weight:bold; font-family:Inter,sans-serif\">\r\n<a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" target=\"_blank\" style=\"background:0% 0% repeat rgb(0,0,0); padding:4px 15px; text-align:center; font-size:12px; line-height:14px; display:inline-block; font-family:Inter,sans-serif; color:rgb(255,255,255)\">Schedule\r\n A Zoom</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<td style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<tbody style=\"font-family:Inter,sans-serif\">\r\n<tr style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td align=\"left\" valign=\"middle\" style=\"border:medium; border-collapse:collapse; padding:0px 0px 0px 15px; display:revert; font-family:Inter,sans-serif\">\r\n<div style=\"max-height:0px; overflow:visible; font-family:Inter,sans-serif\"><img width=\"140\" style=\"display:block; border-radius:10px; font-family:Inter,sans-serif\" src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\"></div>\r\n<img name=\"x_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block; border-radius:10px; font-family:Inter,sans-serif\" src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<td align=\"left\" valign=\"top\" style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<tbody style=\"font-family:Inter,sans-serif\">\r\n<tr style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n</tr>\r\n<tr style=\"border:medium; border-collapse:collapse; font-family:Inter,sans-serif\">\r\n<td style=\"border:medium; border-collapse:collapse; padding:10px 0px 0px; font-family:Inter,sans-serif\">\r\n<a style=\"font-family:Inter,sans-serif\"></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div><br>\r\n<div class=\"x_gmail_quote x_gmail_quote_container\">\r\n<div dir=\"ltr\" class=\"x_gmail_attr\">On Sun, Aug 3, 2025 at 8:08 PM Rick &lt;rick@mavrix.one&gt; wrote:<br>\r\n</div>\r\n<blockquote class=\"x_gmail_quote\" style=\"margin:0px 0px 0px 0.8ex; border-left-width:1px; border-left-style:solid; padding-left:1ex; border-left-color:rgb(204,204,204)\">\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Hi all,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">I’d like to setup a Signal Group for all of us to connect on going forward.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Can you each please send me your Signal phone number&nbsp;</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">so that I can connect and put you in a group with Brian and myself.</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks much!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"x_gmail_signature\"><br>\r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD,&nbsp;</span>\r\n<div style=\"font-family:Helvetica,Arial\">Founder, CTO</div>\r\n<div style=\"font-family:Helvetica,Arial\"><img style=\"width:84px; max-width:100%\" data-outlook-trace=\"F:1|T:1\" src=\"cid:ii_1987279c2c3331854301\"><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial\"><a href=\"http://mavrix1.com/\" target=\"_blank\" style=\"font-family:Helvetica,Arial\">mavrix1.com</a></div>\r\n</div>\r\n<div><br>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Hi Rick, my signal number is: 812-552-6854\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Nathan Staron <Nathan@lithiumbatterycompany.com>\r\nSent: Sunday, August 3, 2025 8:27 PM\r\nTo: Rick <rick@mavrix.one>\r\nCc: Jordan Wroblewski <jordan@lithiumbatterycompany.com>; Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nSubject: Re: Signal Group...\r\n\r\nHi Rick.\r\n\r\nMy signal number is 813-504-0074.\r\n\r\n\r\n\r\n[https://app.customesignature.com/images/social/animation/4/web-icon.gif]<https://lithiumbatterycompany.com/>\r\n[https://app.customesignature.com/images/social/animation/4/insta-icon.gif]<https://www.instagram.com/lithiumbatteryco/>\r\n[https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif]<https://www.linkedin.com/company/the-lithium-battery-company>\r\n[https://app.customesignature.com/images/social/animation/4/facebook-icon.gif]<https://www.facebook.com/LithiumBatteryCompany/>\r\n[https://app.customesignature.com/images/social/animation/4/youtube-icon.gif]<https://www.youtube.com/c/LithiumBatteryCompany>\r\n\r\n[https://app.customesignature.com/upload/signature/11122/11122.png]<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON        [https://app.customesignature.com/images/verify.gif]\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074<tel:813-504-0074>\r\nPhone 844-GET-LITHIUM<tel:844-GET-LITHIUM>\r\nNathan@lithiumbatterycompany.com<mailto:Nathan@lithiumbatterycompany.com>\r\nSchedule A Zoom<https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n[https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg]\r\n[https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif]\r\n\r\n\r\nOn Sun, Aug 3, 2025 at 8:08 PM Rick <rick@mavrix.one> wrote:\r\nHi all,\r\nI’d like to setup a Signal Group for all of us to connect on going forward.\r\nCan you each please send me your Signal phone number\r\nso that I can connect and put you in a group with Brian and myself.\r\nThanks much!\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:ii_1987279c2c3331854301]\r\nmavrix1.com<http://mavrix1.com/>\r\n\r\n',0,0,0,0,0,0,'2025-08-04 15:30:32','2025-12-09 19:27:06','2025-12-09 19:27:06','2025-12-09 19:27:06',NULL,NULL,NULL),
(573,4,'<CAJO9__a0EnmHiVa+UGC-X8PJ+A2TXaksfjPBTjVzZatzmv=T7A@mail.gmail.com>',NULL,NULL,'Re: Signal Group...','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Hello Rick,</div><div><br></div><div>Here is my number: 917-266-5336</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Sun, Aug 3, 2025 at 8:08 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">Hi all,</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">I’d like to setup a Signal Group for all of us to connect on going forward.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Can you each please send me your Signal phone number </div><div style=\"font-family:Helvetica,Arial;font-size:13px\">so that I can connect and put you in a group with Brian and myself.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Thanks much!</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Rick</div> <br> <div class=\"gmail_signature\">\r\n        \r\n     \r\n    <br>\r\n     \r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD, </span><div style=\"font-family:Helvetica,Arial\">Founder, CTO</div><div style=\"font-family:Helvetica,Arial\"><img src=\"cid:ii_19875b5be8c557ae4821\" style=\"max-width: 99%;\"><br></div><div style=\"font-family:Helvetica,Arial\"><a href=\"http://mavrix1.com/\" target=\"_blank\">mavrix1.com</a></div></div><div><br></div></div>\r\n\r\n\r\n</blockquote></div>','Hello Rick,\r\n\r\nHere is my number: 917-266-5336\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Sun, Aug 3, 2025 at 8:08 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> Hi all,\r\n> I’d like to setup a Signal Group for all of us to connect on going forward.\r\n> Can you each please send me your Signal phone number\r\n> so that I can connect and put you in a group with Brian and myself.\r\n> Thanks much!\r\n> Rick\r\n>\r\n>\r\n> Rick Mislan, PhD,\r\n> Founder, CTO\r\n>\r\n> mavrix1.com\r\n>\r\n>',0,0,0,0,0,0,'2025-08-04 15:32:25','2025-12-09 19:27:07','2025-12-09 19:27:07','2025-12-09 19:27:07',NULL,NULL,NULL),
(574,4,'<CAGgBgfBcULgDaL4YFtEW38xCV8rEJh44YaFPRr0E0OAspAerEQ@mail.gmail.com>',NULL,NULL,'Re: Design vs Infrastructure (07/31/25 1540)','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">Rick:</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">It&#39;s your birthday.  How about you tell me if it&#39;s later today or tomorrow morning after 10am?</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">-- Tom</div><div class=\"gmail_default\" style=\"font-size:small\"></div></div><br><div><br></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Aug 4, 2025 at 12:41 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">Can we chat later today or tomorrow morning?</div><div style=\"font-family:Helvetica,Arial;font-size:13px\"> </div> <br> <div class=\"gmail_signature\">\r\n        \r\n     \r\n    <br>\r\n     \r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD, </span><div style=\"font-family:Helvetica,Arial\">Founder, CTO</div><div style=\"font-family:Helvetica,Arial\"><img src=\"cid:ii_198760cf53e557ae4821\" style=\"max-width: 99%;\"><br></div><div style=\"font-family:Helvetica,Arial\"><a href=\"http://mavrix1.com/\" target=\"_blank\">mavrix1.com</a></div></div><div><br></div></div> <br><p>On July 31, 2025 at 3:41:35 PM, Thomas Pownall (<a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">I need to figure out how to get Joel off my payroll and onto yours, depending on how long this is going to take to get squared away.  It&#39;s been more than 3 months, and I freed time up in my schedule.  I&#39;m using my money to fund things at my end right now.  As such, I need to know where this is going.</div><br>I have a lot of options at the moment, and not enough information to make a choice.  I have enough effort and money invested that I&#39;m definitely going to do something with this, the only question is what and with who.<br><br>I would appreciate it if, as a starter, if you could find something that you need done that I could have Joel do, since it seems like you&#39;re not ready to commit to firmware that doesn&#39;t exist yet.  He has a background in manufacturing environments which are highly controlled; he worked at Intel, so he&#39;s used to some pretty onerous procedures.  As someone who has worked on transportation systems where human safety is at risk, he&#39;s familiar<span class=\"gmail_default\" style=\"font-size:small\"></span> with strict regulations.  <br><br>It sounds like you guys are getting away from making a product and moving towards a manufacturing floor (electronics and mechanical), or at least that&#39;s what I took away from our last discussion.  It also sounds like you&#39;re at the point of wanting to establish a business, which means establishing the underlying infrastructure.  That&#39;s going to require some oversight documentation.  I could have Joel prepare the outline (not necessarily the exact procedures) of a company -- it&#39;s a lot of block diagrams and charts, and is the kind of documentation you need for both ISO and AS9100.  <br><br>If you&#39;re going after military business, you&#39;re going to need this kind of process / documentation control.  It takes a while to build the skeleton and then even longer to fill it in.  Right now, it sounds like you have some people with skills and an opportunity, now you need the structure to support both if you&#39;re going to try to sell this.<br><br>My original quote included setting up a MRP system that understood the structure; I don&#39;t have a clue if you have any able bodies who could do that or if you&#39;re going to just buy some horrendous MRP system which takes forever to configure and set up.<br><br>If you&#39;re truly saying you need to have that all in place before we start doing design work, that&#39;s 100% backwards of what you&#39;ve been telling me for months -- but we can help you with that side of it.  It&#39;s not our favorite kind of work, but we do know how to do it.<br><br>What this all boils down to is that we&#39;ve been feeling your sense of urgency for months, but there&#39;s been no official start and I can&#39;t figure out how to help you.</div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><div><font face=\"courier new, monospace\">Regards,</font></div><div><font face=\"courier new, monospace\">Thomas Pownall</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">CADX Services, Inc.</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Tel: 585-624-1491 X101</font></div><div><font face=\"courier new, monospace\">Fax: 585-582-1101</font></div><div><font face=\"courier new, monospace\">E-Mail: <a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a></font></div><div><font face=\"courier new, monospace\">Web: <a href=\"http://www.cadxservices.com\" target=\"_blank\">http://www.cadxservices.com</a></font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\">**************** Confidentiality Statement ****************</font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Privileged/Confidential Information may be contained in this</font></div><div><font face=\"courier new, monospace\">message. If you are not the addressee indicated in this message</font></div><div><font face=\"courier new, monospace\">(or responsible for delivery of the message to such person),</font></div><div><font face=\"courier new, monospace\">you may not copy or deliver this message to anyone. In such</font></div><div><font face=\"courier new, monospace\">case, you should destroy this message, and notify us</font></div><div><font face=\"courier new, monospace\">immediately. If you or your employer does not consent to</font></div><div><font face=\"courier new, monospace\">Internet email messages of this kind, please advise us</font></div><div><font face=\"courier new, monospace\">immediately. Opinions, conclusions and other information</font></div><div><font face=\"courier new, monospace\">expressed in this message are not given or endorsed by my firm</font></div><div><font face=\"courier new, monospace\">or employer unless otherwise indicated by an authorized</font></div><div><font face=\"courier new, monospace\">representative independent of this message.</font></div></div></div></div></div></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div>','Rick:\r\n\r\nIt\'s your birthday.  How about you tell me if it\'s later today or tomorrow\r\nmorning after 10am?\r\n\r\n-- Tom\r\n\r\n\r\n\r\nOn Mon, Aug 4, 2025 at 12:41 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> Can we chat later today or tomorrow morning?\r\n>\r\n>\r\n>\r\n> Rick Mislan, PhD,\r\n> Founder, CTO\r\n>\r\n> mavrix1.com\r\n>\r\n>\r\n> On July 31, 2025 at 3:41:35 PM, Thomas Pownall (tpownall@cadxservices.com)\r\n> wrote:\r\n>\r\n> I need to figure out how to get Joel off my payroll and onto yours,\r\n> depending on how long this is going to take to get squared away.  It\'s been\r\n> more than 3 months, and I freed time up in my schedule.  I\'m using my money\r\n> to fund things at my end right now.  As such, I need to know where this is\r\n> going.\r\n>\r\n> I have a lot of options at the moment, and not enough information to make\r\n> a choice.  I have enough effort and money invested that I\'m definitely\r\n> going to do something with this, the only question is what and with who.\r\n>\r\n> I would appreciate it if, as a starter, if you could find something that\r\n> you need done that I could have Joel do, since it seems like you\'re not\r\n> ready to commit to firmware that doesn\'t exist yet.  He has a background in\r\n> manufacturing environments which are highly controlled; he worked at Intel,\r\n> so he\'s used to some pretty onerous procedures.  As someone who has worked\r\n> on transportation systems where human safety is at risk, he\'s familiar\r\n> with strict regulations.\r\n>\r\n> It sounds like you guys are getting away from making a product and moving\r\n> towards a manufacturing floor (electronics and mechanical), or at least\r\n> that\'s what I took away from our last discussion.  It also sounds like\r\n> you\'re at the point of wanting to establish a business, which means\r\n> establishing the underlying infrastructure.  That\'s going to require some\r\n> oversight documentation.  I could have Joel prepare the outline (not\r\n> necessarily the exact procedures) of a company -- it\'s a lot of block\r\n> diagrams and charts, and is the kind of documentation you need for both ISO\r\n> and AS9100.\r\n>\r\n> If you\'re going after military business, you\'re going to need this kind of\r\n> process / documentation control.  It takes a while to build the skeleton\r\n> and then even longer to fill it in.  Right now, it sounds like you have\r\n> some people with skills and an opportunity, now you need the structure to\r\n> support both if you\'re going to try to sell this.\r\n>\r\n> My original quote included setting up a MRP system that understood the\r\n> structure; I don\'t have a clue if you have any able bodies who could do\r\n> that or if you\'re going to just buy some horrendous MRP system which takes\r\n> forever to configure and set up.\r\n>\r\n> If you\'re truly saying you need to have that all in place before we start\r\n> doing design work, that\'s 100% backwards of what you\'ve been telling me for\r\n> months -- but we can help you with that side of it.  It\'s not our favorite\r\n> kind of work, but we do know how to do it.\r\n>\r\n> What this all boils down to is that we\'ve been feeling your sense of\r\n> urgency for months, but there\'s been no official start and I can\'t figure\r\n> out how to help you.\r\n>\r\n> Regards,\r\n> Thomas Pownall\r\n>\r\n> CADX Services, Inc.\r\n>\r\n> Tel: 585-624-1491 X101\r\n> Fax: 585-582-1101\r\n> E-Mail: tpownall@cadxservices.com\r\n> Web: http://www.cadxservices.com\r\n>\r\n> ***********************************************************\r\n> **************** Confidentiality Statement ****************\r\n> ***********************************************************\r\n>\r\n> Privileged/Confidential Information may be contained in this\r\n> message. If you are not the addressee indicated in this message\r\n> (or responsible for delivery of the message to such person),\r\n> you may not copy or deliver this message to anyone. In such\r\n> case, you should destroy this message, and notify us\r\n> immediately. If you or your employer does not consent to\r\n> Internet email messages of this kind, please advise us\r\n> immediately. Opinions, conclusions and other information\r\n> expressed in this message are not given or endorsed by my firm\r\n> or employer unless otherwise indicated by an authorized\r\n> representative independent of this message.\r\n>\r\n>',0,0,0,0,0,0,'2025-08-04 17:28:02','2025-12-09 19:27:07','2025-12-09 19:27:07','2025-12-09 19:27:07',NULL,NULL,NULL),
(575,4,'<vA_zoUGJQGCyWPoS_yBxCg@geopod-ismtpd-22>',NULL,NULL,'New DIU Solicitation: Joint Sustainment Decision Tool (JSDT)','info@diu.mil','Defense Innovation Unit','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html data-editor-version=\"2\" class=\"sg-campaigns\" xmlns=\"http://www.w3.org/1999/xhtml\">\r\n    <head>\r\n      <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n      <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1\">\r\n      <!--[if !mso]><!-->\r\n      <meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge\">\r\n      <!--<![endif]-->\r\n      <!--[if (gte mso 9)|(IE)]>\r\n      <xml>\r\n        <o:OfficeDocumentSettings>\r\n          <o:AllowPNG/>\r\n          <o:PixelsPerInch>96</o:PixelsPerInch>\r\n        </o:OfficeDocumentSettings>\r\n      </xml>\r\n      <![endif]-->\r\n      <!--[if (gte mso 9)|(IE)]>\r\n  <style type=\"text/css\">\r\n    body {width: 600px;margin: 0 auto;}\r\n    table {border-collapse: collapse;}\r\n    table, td {mso-table-lspace: 0pt;mso-table-rspace: 0pt;}\r\n    img {-ms-interpolation-mode: bicubic;}\r\n  </style>\r\n<![endif]-->\r\n      <style type=\"text/css\">\r\n    body, p, div {\r\n      font-family: arial,helvetica,sans-serif;\r\n      font-size: 14px;\r\n    }\r\n    body {\r\n      color: #000000;\r\n    }\r\n    body a {\r\n      color: #2483c5;\r\n      text-decoration: none;\r\n    }\r\n    p { margin: 0; padding: 0; }\r\n    table.wrapper {\r\n      width:100% !important;\r\n      table-layout: fixed;\r\n      -webkit-font-smoothing: antialiased;\r\n      -webkit-text-size-adjust: 100%;\r\n      -moz-text-size-adjust: 100%;\r\n      -ms-text-size-adjust: 100%;\r\n    }\r\n    img.max-width {\r\n      max-width: 100% !important;\r\n    }\r\n    .column.of-2 {\r\n      width: 50%;\r\n    }\r\n    .column.of-3 {\r\n      width: 33.333%;\r\n    }\r\n    .column.of-4 {\r\n      width: 25%;\r\n    }\r\n    ul ul ul ul  {\r\n      list-style-type: disc !important;\r\n    }\r\n    ol ol {\r\n      list-style-type: lower-roman !important;\r\n    }\r\n    ol ol ol {\r\n      list-style-type: lower-latin !important;\r\n    }\r\n    ol ol ol ol {\r\n      list-style-type: decimal !important;\r\n    }\r\n    @media screen and (max-width:480px) {\r\n      .preheader .rightColumnContent,\r\n      .footer .rightColumnContent {\r\n        text-align: left !important;\r\n      }\r\n      .preheader .rightColumnContent div,\r\n      .preheader .rightColumnContent span,\r\n      .footer .rightColumnContent div,\r\n      .footer .rightColumnContent span {\r\n        text-align: left !important;\r\n      }\r\n      .preheader .rightColumnContent,\r\n      .preheader .leftColumnContent {\r\n        font-size: 80% !important;\r\n        padding: 5px 0;\r\n      }\r\n      table.wrapper-mobile {\r\n        width: 100% !important;\r\n        table-layout: fixed;\r\n      }\r\n      img.max-width {\r\n        height: auto !important;\r\n        max-width: 100% !important;\r\n      }\r\n      a.bulletproof-button {\r\n        display: block !important;\r\n        width: auto !important;\r\n        font-size: 80%;\r\n        padding-left: 0 !important;\r\n        padding-right: 0 !important;\r\n      }\r\n      .columns {\r\n        width: 100% !important;\r\n      }\r\n      .column {\r\n        display: block !important;\r\n        width: 100% !important;\r\n        padding-left: 0 !important;\r\n        padding-right: 0 !important;\r\n        margin-left: 0 !important;\r\n        margin-right: 0 !important;\r\n      }\r\n      .social-icon-column {\r\n        display: inline-block !important;\r\n      }\r\n    }\r\n  </style>\r\n      <!--user entered Head Start--><!--End Head user entered-->\r\n    </head>\r\n    <body>\r\n      <center class=\"wrapper\" data-link-color=\"#2483c5\" data-body-style=\"font-size:14px; font-family:arial,helvetica,sans-serif; color:#000000; background-color:#ffffff;\">\r\n        <div class=\"webkit\">\r\n          <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"wrapper\" bgcolor=\"#ffffff\">\r\n            <tr>\r\n              <td valign=\"top\" bgcolor=\"#ffffff\" width=\"100%\">\r\n                <table width=\"100%\" role=\"content-container\" class=\"outer\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                  <tr>\r\n                    <td width=\"100%\">\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                        <tr>\r\n                          <td>\r\n                            <!--[if mso]>\r\n    <center>\r\n    <table><tr><td width=\"600\">\r\n  <![endif]-->\r\n                                    <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:100%; max-width:600px;\" align=\"center\">\r\n                                      <tr>\r\n                                        <td role=\"modules-container\" style=\"padding:10px 18px 10px 18px; color:#000000; text-align:left;\" bgcolor=\"#ecf7ff\" width=\"100%\" align=\"left\"><table class=\"module preheader preheader-hide\" role=\"module\" data-type=\"preheader\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"display: none !important; mso-hide: all; visibility: hidden; opacity: 0; color: transparent; height: 0; width: 0;\">\r\n    <tr>\r\n      <td role=\"module-content\">\r\n        <p>The DOD seeks a logistics support tool that can generate realistic courses of action (CoA) options for commanders.</p>\r\n      </td>\r\n    </tr>\r\n  </table><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cfd0cb98-cae3-4099-bb9b-d518af9861a8\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:10px 18px 10px 18px;\" valign=\"top\" align=\"center\">\r\n          <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:25% !important; width:25%; height:auto !important;\" width=\"141\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/07c51c13-1be6-40d1-8dc7-789cd2686a09/1080x1080.png\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"divider\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"257cee2c-17b5-4325-a24f-cbc103c5619a.1.1.1.2.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 18px 0px 18px;\" role=\"module-content\" height=\"100%\" valign=\"top\" bgcolor=\"#d4eafb\">\r\n          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" height=\"3px\" style=\"line-height:3px; font-size:3px;\">\r\n            <tbody>\r\n              <tr>\r\n                <td style=\"padding:0px 0px 3px 0px;\" bgcolor=\"#2483C5\"></td>\r\n              </tr>\r\n            </tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"1b2e3e3f-7a4f-4ae9-858a-b364347e6b2b.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#FFFFFF\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"544\" style=\"width:544px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"12a76bcf-49d1-4289-8902-3dec45d9306a\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: center\"><span style=\"color: #454546; font-family: arial, helvetica, sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: center; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; background-color: rgb(255, 255, 255); font-size: 18px\">New Solicitation Announcement</span></div>\r\n<div style=\"font-family: inherit; text-align: center\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-alternates: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; background-color: rgb(255, 255, 255); color: #7c7e7f; font-family: arial, helvetica, sans-serif; font-size: 12px\">There is a new solicitation posted on our website. It is easy to respond with a 5-page paper or 15-slide slide deck. These limits are not requirements but are strongly recommended. Additional guidance about what we look for in a proposal is </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILh-2Bq1vMh5oO7-2Blz-2BUvdb0irmCIWB37BuouaFHZh9mjyapo40PS1xJmwqEWgArI7j9CRSrXpEexhWeQDXTY07pHfWNPHo7vlnb-2FhFx9HUTh4e9aYOlxqtqQGH9u1buGgAJ8BabEvBziVw-2FSowa6SMdLw-3D1NLB_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSe6eicyuWJ82z75wagS4Q62pJxhKowmffqxQoZlEAmjn4V6TEa-2F5QPEirffrGlHm3L96gqSBlpFSKcfRltqsBlbZj0hXqBoqXr-2FS936eVVG0sBV4c15utqyiIzlIZGhd1wso5tCVwTanN06yoNjpN-2F7sml8pX7a63uxxfO7wgdA5OUcXbnmMt33z6E5MS1SlJyKGQ78EEmp4cUlbdWV0TxalF0bGfyIRSLyHfTEjQlsXjwEapMCHIvf3lzzyB0bsAdJ3O-2F9yEqLzaGViWAT11m5QM2BCda9PFJuYdXhr3q6U6WFJ2gvns7Q-2BQKwMHIZ0DPg-2FFPdbdRN36q-2FcTBUxKdak-2BJodYmG9kEIy0YpljM6fDBfgrHqoekEIQLr-2Ft4LpLvwyhiYKCScIVQ3dWQybNGvBD-2BPBhpwC74zBhtIYP2I8QWcRAemyC-2FbmeUFTdN1rcwe79jsfXQvFxjdHDgHFMp8yHiG4w5HFvaOaJGeV3XQjoLVezYsA7-2FGGiC2A2G9zWygR4WG0uDElDfh8n9wqu7dqF6c5C8Tna45IxZBklaTxDnTzavh-2BEAhg7InVwfEuf7KF-2F4KpXS-2BYgE5e6UEQHBNWRjhwxWclllXD2JtjllaBkqOwIPQusqjWkuXfUdk3qkmGt-2FCyF-2Fh9pYINlyQJ42YDtW6IhIHQaKeUPFAEy7tPbkkFES1mF7oEKA6DRorGOI0t9XqGNc80Ee6paX6s-2FISNhP-2BPFfwOHEByPsKjjjVYjFFS9K5ZSUDLYHwk5eBcB-2B3Jywd2CTMPSxgYYMNksmjgTzrmeUTw4nPckFUdoAWkUbz7kyJhwtMSYs1r1WL5XxWP0RI9z8iekO5oDUekGmEyoaIvDt20ZjUdFc4NSrTo\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-alternates: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; background-color: rgb(255, 255, 255); color: #01a1f1; font-family: arial, helvetica, sans-serif; font-size: 12px\"><u>available </u></span><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: none; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); color: #01a1f1; font-family: arial, helvetica, sans-serif; font-size: 12px\"><u>here</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-alternates: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; background-color: rgb(255, 255, 255); color: #7c7e7f; font-family: arial, helvetica, sans-serif; font-size: 12px\">. Our goal is to award an initial contract within 60-90 days of solicitation closure. Solicitation details and a link to the submission page are available below.</span><span style=\"font-family: arial, helvetica, sans-serif; font-size: 12px\"><br>\r\n</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#FFFFFF\" data-distribution=\"2,1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"362\" style=\"width:362px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2bb08414-727d-4668-851a-a0e1e3708ed6\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 10px 18px 10px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"color: #2483c5; font-family: arial, helvetica, sans-serif; font-size: 18px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline\">Joint Sustainment Decision Tool (JSDT)<br>\r\n</span></div>\r\n<div style=\"font-family: inherit; text-align: start\"><br></div>\r\n<div style=\"font-family: inherit; text-align: start\"><span style=\"font-optical-sizing: auto; font-weight: 300; font-style: normal; font-variation-settings: &quot;slnt&quot; 0; white-space-collapse: collapse; text-wrap-mode: wrap; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; line-height: 1.4; margin-bottom: 1.8rem; margin-top: 0.5rem; max-width: 58rem; list-style-position: inherit; font-family: arial, helvetica, sans-serif; font-size: 12px; color: #7c7e7f\">The ability to effectively project and sustain forces across vast contested distances, regardless of time or place, is a cornerstone of U.S. military power. For decades, the DOD has been able to accomplish widespread sustainment through a complex, globally-postured network of logistics providers, enablers, and locations. This network of organizations, units, and agencies, often called the Joint Logistics Enterprise (JLEnt), forms the basis of the Department\'s ability to protect its interests at home and abroad.</span></div>\r\n<div style=\"font-family: inherit; text-align: start\"><br></div>\r\n<div style=\"font-family: inherit; text-align: start\"><span style=\"font-optical-sizing: auto; font-weight: 300; font-style: normal; font-variation-settings: &quot;slnt&quot; 0; white-space-collapse: collapse; text-wrap-mode: wrap; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; line-height: 1.4; margin-bottom: 1.8rem; margin-top: 0.5rem; max-width: 58rem; list-style-position: inherit; font-family: arial, helvetica, sans-serif; font-size: 12px; color: #7c7e7f\">Current logistics information technology tools available to the DOD do not possess the speed, scale, and intelligence required to plan, coordinate, and harmonize sustainment in multi-domain, large-scale, high operational tempo conflicts.</span></div>\r\n<div style=\"font-family: inherit; text-align: start\"><br></div>\r\n<div style=\"font-family: inherit; text-align: start\"><span style=\"font-optical-sizing: auto; font-weight: 300; font-style: normal; font-variation-settings: &quot;slnt&quot; 0; white-space-collapse: collapse; text-wrap-mode: wrap; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; line-height: 1.4; margin-bottom: 1.8rem; margin-top: 0.5rem; max-width: 58rem; list-style-position: inherit; font-family: arial, helvetica, sans-serif; font-size: 12px; color: #7c7e7f\">Consequently, the DOD seeks a logistics support tool that can generate realistic courses of action (CoA) options for commanders in dynamic, contested, and degraded environments, preferably utilizing artificial intelligence and/or machine learning. </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9q-2F-2FBypPtDyko5e1TtATyKu1KpX1uNQn1qwAyfC7dn7PGGixV-2F1EJAC0O4HeejVUL1v50SLrlcGNc-2BMGBkP-2BAqCweEPz9WJBl8gOZL9R6Onnq8sF_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSe6eicyuWJ82z75wagS4Q62pJxhKowmffqxQoZlEAmjn4V6TEa-2F5QPEirffrGlHm3L96gqSBlpFSKcfRltqsBlbZj0hXqBoqXr-2FS936eVVG0sBV4c15utqyiIzlIZGhd1wso5tCVwTanN06yoNjpN-2F7sml8pX7a63uxxfO7wgdA5OUcXbnmMt33z6E5MS1SlJyKGQ78EEmp4cUlbdWV0TxalF0bGfyIRSLyHfTEjQlsXjwEapMCHIvf3lzzyB0bsAdJ3O-2F9yEqLzaGViWAT11m5QM2BCda9PFJuYdXhr3q6U6WFJ2gvns7Q-2BQKwMHIZ0DPg-2FFPdbdRN36q-2FcTBUxKdak-2BJodYmG9kEIy0YpljM6fDBfgrHqoekEIQLr-2Ft4LpLvwyhiYKCScIVQ3dWQybNGvBD-2BPBhpwC74zBhtIYP2I8QWcRAemyC-2FbmeUFTdN1rcwe79jsfXQvFxjdHDgHFMp8yHiG4w5HFvaOaJGeV3XQjoLVezYsA7-2FGGiC2A2G9zWygR4WG0uDElDfh8n9wqu7dqF6c5C8Tna45IxZBklaTxDnTzavh-2BEAhg7InVwfEuf7KF-2F4KpXS-2BYgE5e6UEQHBNWRjhwxWclllXD2JtjllaBkqOwIPQusqjWkuXfUdk3qkmGt-2FCyF-2Fh9pYINlyQJ42YDtW6IhIHQaKeUPFAEy7tPbkkFES1mF7oEKA6DRorGOC5iPoVf8wXMZi-2Bst1URVntENHv7-2F101T8WounvodlVLvjECCIIZ-2BX50vhJYMGA2MhiVtHFXNCI6h1rMLIe8Kwmt8USa85-2FjEeCYcIT1YkCMQIeUNZ8Ye3fjPFPpHb9iHiKxqsVt9wv4vjeL66x-2BWAK10L8bVP4ORY85eJSn08vG\"><span style=\"font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; color: #2483c5; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>Learn more</strong></span></a><span style=\"font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; color: #2483c5; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>.</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"181\" style=\"width:181px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"4fa31850-56ff-4e7f-985c-2dd2d58a3cef\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>Submission Deadline:</strong></span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">14 August 2025</span><span style=\"font-family: arial, helvetica, sans-serif; font-size: 12px\"><br>\r\n</span><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">23:59:59 U.S. Eastern Time</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"module\" data-role=\"module-button\" data-type=\"button\" role=\"module\" style=\"table-layout:fixed;\" width=\"100%\" data-muid=\"621468ff-bdcc-4d55-8cd5-838691427b54\">\r\n      <tbody>\r\n        <tr>\r\n          <td align=\"left\" bgcolor=\"\" class=\"outer-td\" style=\"padding:0px 0px 0px 0px;\">\r\n            <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"wrapper-mobile\" style=\"text-align:center;\">\r\n              <tbody>\r\n                <tr>\r\n                <td align=\"center\" bgcolor=\"#2483C5\" class=\"inner-td\" style=\"border-radius:6px; font-size:16px; text-align:left; background-color:inherit;\">\r\n                  <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9q-2F-2FBypPtDyko5e1TtATyKu1KpX1uNQn1qwAyfC7dn7PGGixV-2F1EJAC0O4HeejVUL1v50SLrlcGNc-2BMGBkP-2BAqCweEPz9WJBl8gOZL9R6OnnrWWt_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSe6eicyuWJ82z75wagS4Q62pJxhKowmffqxQoZlEAmjn4V6TEa-2F5QPEirffrGlHm3L96gqSBlpFSKcfRltqsBlbZj0hXqBoqXr-2FS936eVVG0sBV4c15utqyiIzlIZGhd1wso5tCVwTanN06yoNjpN-2F7sml8pX7a63uxxfO7wgdA5OUcXbnmMt33z6E5MS1SlJyKGQ78EEmp4cUlbdWV0TxalF0bGfyIRSLyHfTEjQlsXjwEapMCHIvf3lzzyB0bsAdJ3O-2F9yEqLzaGViWAT11m5QM2BCda9PFJuYdXhr3q6U6WFJ2gvns7Q-2BQKwMHIZ0DPg-2FFPdbdRN36q-2FcTBUxKdak-2BJodYmG9kEIy0YpljM6fDBfgrHqoekEIQLr-2Ft4LpLvwyhiYKCScIVQ3dWQybNGvBD-2BPBhpwC74zBhtIYP2I8QWcRAemyC-2FbmeUFTdN1rcwe79jsfXQvFxjdHDgHFMp8yHiG4w5HFvaOaJGeV3XQjoLVezYsA7-2FGGiC2A2G9zWygR4WG0uDElDfh8n9wqu7dqF6c5C8Tna45IxZBklaTxDnTzavh-2BEAhg7InVwfEuf7KF-2F4KpXS-2BYgE5e6UEQHBNWRjhwxWclllXD2JtjllaBkqOwIPQusqjWkuXfUdk3qkmGt-2FCyF-2Fh9pYINlyQJ42YDtW6IhIHQaKeUPFAEy7tPbkkFES1mF7oEKA6DRorGOLs2oOPmKIxCroIjseIIpaXrTYwnLiRJ3e1FbAulzqBTpctzbboLDVAIhIWeF2r42ta-2BAV6r3vDdZ7-2BGcG2Y-2F7PmuW87OMOLA-2FvaRGJOSiBt69Y634hD-2FxdOdYg-2FqcIwWnsTlovsrLEZB4dtVPlcn92ApoMUXwH9ixIWhZe9EO9Y\" style=\"background-color:#2483C5; border:1px solid #2483C5; border-color:#2483C5; border-radius:6px; border-width:1px; color:#ffffff; display:inline-block; font-size:12px; font-weight:bold; letter-spacing:0px; line-height:normal; padding:12px 18px 12px 18px; text-align:center; text-decoration:none; border-style:solid;\" target=\"_blank\">Learn more</a>\r\n                </td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n          </td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"1b2e3e3f-7a4f-4ae9-858a-b364347e6b2b\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#FFFFFF\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"544\" style=\"width:544px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"12a76bcf-49d1-4289-8902-3dec45d9306a.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: left\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: 700; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; text-align: start; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 14px; color: #7c7e7f\">Other open solicitations:</span></div>\r\n<div style=\"font-family: inherit; text-align: start\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9kGc-2Fi654EjxfC7gcUneG-2FZ8t5AyHoUl6ZdeO-2FYuJPcUTJiRYNwzKE1XObChGB-2B-2BCaCoIghdLCzaLv4F8SC8T4411K7i5hbARk9-2FKFN-2B71yAUJxf_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSe6eicyuWJ82z75wagS4Q62pJxhKowmffqxQoZlEAmjn4V6TEa-2F5QPEirffrGlHm3L96gqSBlpFSKcfRltqsBlbZj0hXqBoqXr-2FS936eVVG0sBV4c15utqyiIzlIZGhd1wso5tCVwTanN06yoNjpN-2F7sml8pX7a63uxxfO7wgdA5OUcXbnmMt33z6E5MS1SlJyKGQ78EEmp4cUlbdWV0TxalF0bGfyIRSLyHfTEjQlsXjwEapMCHIvf3lzzyB0bsAdJ3O-2F9yEqLzaGViWAT11m5QM2BCda9PFJuYdXhr3q6U6WFJ2gvns7Q-2BQKwMHIZ0DPg-2FFPdbdRN36q-2FcTBUxKdak-2BJodYmG9kEIy0YpljM6fDBfgrHqoekEIQLr-2Ft4LpLvwyhiYKCScIVQ3dWQybNGvBD-2BPBhpwC74zBhtIYP2I8QWcRAemyC-2FbmeUFTdN1rcwe79jsfXQvFxjdHDgHFMp8yHiG4w5HFvaOaJGeV3XQjoLVezYsA7-2FGGiC2A2G9zWygR4WG0uDElDfh8n9wqu7dqF6c5C8Tna45IxZBklaTxDnTzavh-2BEAhg7InVwfEuf7KF-2F4KpXS-2BYgE5e6UEQHBNWRjhwxWclllXD2JtjllaBkqOwIPQusqjWkuXfUdk3qkmGt-2FCyF-2Fh9pYINlyQJ42YDtW6IhIHQaKeUPFAEy7tPbkkFES1mF7oEKA6DRorGOLDS95ZvR7oHvc3HXCOIu8MGpci0WTg-2Bn3xTlyOyIXO1hCkH1esp8LprB3wOQ6vZ4-2FZQ5rgomDINx0XcUjC5r-2B55Y0aXbmtVqiU9QRXGwORTiJnREgM-2Fgt0JMEncAjzTEwG5o6owmF2gxTOrNxd4iXsdy6NnxuvSRFE0kuD3mKMS\"><span style=\"font-size: 12px; color: #2483c5\"><strong>Project G.I. Prize Challenge</strong></span></a></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-size: 12px\">This solicitation closes on December 31, 2025 at 23:59:59 Eastern Time</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><br></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"01cfd941-691e-4504-af90-9ba914a69b55\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:10px 18px 10px 18px;\" valign=\"top\" align=\"center\">\r\n          <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:25% !important; width:25%; height:auto !important;\" width=\"141\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/07c51c13-1be6-40d1-8dc7-789cd2686a09/1080x1080.png\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"6cf433f1-53d9-4818-89de-d72eccb7d837\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 10px 18px 10px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"line-height: inherit; color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-line: inherit; text-decoration-thickness: inherit; text-decoration-style: inherit; text-decoration-color: inherit; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>About DIU:&nbsp;</strong></span><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">The Defense Innovation Unit (DIU) strengthens our national security by accelerating the adoption of commercial technology throughout the military and growing the national security innovation base. DIU partners with organizations across the Department of Defense (DoD) and with&nbsp;nontraditional companies to facilitate prototype projects and field advanced commercial solutions that address national security challenges. DIU leverages Other Transaction (OT) authority to award Prototype agreements, which, if successful, may result in the direct award of a follow-on Production agreement without the use of further competitive procedures. (DIU is not an OT consortium; DIU executes direct award OTs).&nbsp;</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; background-color: rgb(255, 255, 255); font-size: 12px\">You are receiving this email because you have a contact at DIU or you signed up to our mailing list. If you would like to be removed from our email list, please click the unsubscribe link below.</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"6ac32cba-50e8-406c-8061-dd0135aebb60\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 30px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"module\" data-role=\"module-button\" data-type=\"button\" role=\"module\" style=\"table-layout:fixed;\" width=\"100%\" data-muid=\"bf716dbe-018d-4f2d-bf15-b5b6db124e86\">\r\n      <tbody>\r\n        <tr>\r\n          <td align=\"center\" bgcolor=\"\" class=\"outer-td\" style=\"padding:0px 0px 0px 0px;\">\r\n            <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"wrapper-mobile\" style=\"text-align:center;\">\r\n              <tbody>\r\n                <tr>\r\n                <td align=\"center\" bgcolor=\"#2483C5\" class=\"inner-td\" style=\"border-radius:6px; font-size:16px; text-align:center; background-color:inherit;\">\r\n                  <a href=\"mailto:info@diu.mil\" style=\"background-color:#2483C5; border:1px solid #2483C5; border-color:#2483C5; border-radius:6px; border-width:1px; color:#ffffff; display:inline-block; font-size:12px; font-weight:bold; letter-spacing:0px; line-height:normal; padding:18px 18px 12px 18px; text-align:center; text-decoration:none; border-style:solid; font-family:arial,helvetica,sans-serif;\" target=\"_blank\">Contact Us</a>\r\n                </td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n          </td>\r\n        </tr>\r\n      </tbody>\r\n    </table><div data-role=\"module-unsubscribe\" class=\"module\" role=\"module\" data-type=\"unsubscribe\" style=\"color:#444444; font-size:12px; line-height:20px; padding:16px 16px 16px 16px; text-align:center;\" data-muid=\"037d4496-257f-4255-8897-cb3cce530456\"><div class=\"Unsubscribe--addressLine\"></div><p style=\"font-size:12px; line-height:20px;\"><a class=\"Unsubscribe--unsubscribeLink\" href=\"https://u18220755.ct.sendgrid.net/asm/unsubscribe/?user_id=18220755&amp;data=GU5OrJcpReG5repc1e1c1Fyw4psrOBR5D_XgEbPc_SxoMDAwdTAwMG63-IBhafKpuUdMfQt2TQnXwsizGGca0-mzDNpgnjxw34lvGNTa32Us_0LoXsG2hPyQ1-972TvvssJeyyUmrnB4MRvA-so8qBUQ1_ZaXnhaqnnBuhgy5swc7kFQ-y8SkyMnOnAqobPLjIEgGDN3LIUMLUIGrd-SaKhlWqAob7aagjqVUNKyvChL0ofvEGWSz_06LQ3qa02EPenn7H5gJq6cyoq9X_wXx1hXPsEC3P9poOGibWW_r6K6aoTvZ01X3C_0A0EPOrIhCBo0SCt3E69-Bnm4FGrwwXV5EQhTdwF46qgZwU8qmnuYxqynrMIC-fanCMyXUDVzaKN1DxZXHCYVlv_qIYSYzOaAW2jR5L5HKoLhJpsU9UEerRZd_LiEguDxV-4pFcVSpd_A8zLUNmtZt-HWlcZ5E3XQx7-DV-uZKn6lqchb5aucrO84uuIIwswZcPER21yralTI-u8HoUQ0rt3TRvEe27B0rPIj3kEga0NfA6GW2yvPQLKllW2lrDEn-cOHRUfRkkUQjplTKKS3Yfn5gwg7tp7ChMHhnPE22x3cXkUVsc9hVqpvJSaHk_pGbVFCOckdt2ozk5FDY2vd3xp4A5kAhZ7MJcdn2mxbCWDBswY5wY2J-FTixxueSlhEz_XCQW1808q1Z9mnMyzRn1ZLPXCsyYbX_qzm1awjpbmK9cthuCWu6GO57loYXnmvhT8zN7-v_AjKTJF7caw0ykLVfrnqWigg3-rnX2XhqC3WStLD-yBqpmxERtzffMZJlw8T5V1jRupb_5l2XKuP4vw3OJNOOp0mWB7Ht39NN2IFqIDWdVUZMZC9xRFLdolEri9pKlsQwNWc-d2CfedLDsOzbTbqhCpxS2lymyeBYhRMi8-jJDrciFbYLzG1ifoaqIppMXCDOIXCYuSUYapwHHj8QFte5DewX5dqimJnp7hM7U-4mV6HlJwQUGYTbIFj6tRLXg4fTB_ZFN_QPQouRTclbiKMP2mBLDA4Wk_-2W3AZHO51ybialTS8PWLVUNS6MjbljAhy1cx1YUba8rEJXnSvLGeCowuHqXAM4PWaiP4AjKVmD9bHTgATGXnOnG-WFFg3IT1tUxKn-XnFgrb_AFa7DQAD2ERkael6oBLoglUn4_bBYUl06noFjpQVKgCVdl_efMH-83Nyx1_rwQ=\" target=\"_blank\" style=\"\">Unsubscribe</a> - <a href=\"https://u18220755.ct.sendgrid.net/asm/?user_id=18220755&amp;data=N6ETch9twbUIH1KxtCuN7rSfhPkXw3toDOeC2SSBq_9oMDAwdTAwMIe0RVYezytQ6lIOOiHGUo1-LqOFR7USkqu0BLzp4BNN3f2F_2at4uUiVE3jYtGF0DenmU5LEmExYhXdgrG2lfItMKDDSCtk5SU8NR6AOUzDoXlo9RC26_vbAXRoyenv3eNOu4R2H75hHk2xnd2XHDKtDzxP4oPDHOvhlc1FbBzu4LlKDg_3ZUrfWNSnn5KX6n2iR-0KDCw2GhNblsU7ycOmyLmmO_Ytzl6z4DPMZabKucUvZlGd1sxRJ--aOuKQ1Y39X25jeucXAIdUkkrwePVBErLZeROH0zYvn-37p1acKnZ4oJku-viFuKBMn3gSKemI0H21ZvKsKp86WuyVnPZ3su4M-5hWMr5L52Tm9yO46Lqg4FVANxfMs69TmEpV5pZvqz0bUdNFIHw2u9mQpVyRCxoIirbsFqurcgPr5VJFfVbi2VLkJ2_6lCT8YYW14Dc0DRC9Rinbkmwrm3MKpMH8MO52yfWK4TQXdacn07Joxow7UnGTXIS5u5Fduq01hR4TY2JQdNjjB7qWGrTdPrC-Hwi2QUoa2aCNz-R7zDbp7nPdrvwDxkaFUJvXaRq1AYTamooLlFvS8bLWh98KgUG02Am4aUkd96h4RSOyA3gQXdG-_Zi6Os-ucNHuLeud7FOccgBCUEAEKTo3wTwtBDD7vsEzZkGLrsNfyeHRb2OduESy-B5jrGjV50rI9r2BnNoEDfrP1pJkFDlO2VRjha5WRu4KBQNvrIcvCPP3nXEXgqSCtYgEFIP00kb1thjpyjRKLq7qpkF58uoPt5g_oVfXWKcXE1ebHLH1_8c1zaaXKB2bHLb0D5-7jTdihKBtpRrzTbIz2kipq6OQUGSqYQIn5tJv7rxo2NARWbsWW4R9mHLX1hWKydifHWLGK9Yy6l5-MNiiAUts80UQE1GHqdyz4bQJOqtuvy4UDX02Yv15SQbJI0PEVtOTrkNrJGVOxti-3bi9xHhFd0vUNeXH337IUT7oTWUv-1G9zD69TA4M0JN4E6Xft2zPyBcWcGbikReLpDIFiKtvCjMEAnKEt1t8d4AeA5qOa5I6VlKZPIMGoXQZE2cmUoYlwLIHeESp739sqXJuEa9LudTuWgPK-Emo_UsRDmFKWwouSXlO9UAF0rqD9ES4s-9yAZTX0B5uxDP9flbsJwfagbb8geRRApU=\" target=\"_blank\" class=\"Unsubscribe--unsubscribePreferences\" style=\"\">Unsubscribe Preferences</a></p></div></td>\r\n                                      </tr>\r\n                                    </table>\r\n                                    <!--[if mso]>\r\n                                  </td>\r\n                                </tr>\r\n                              </table>\r\n                            </center>\r\n                            <![endif]-->\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </div>\r\n      </center>\r\n    <img src=\"https://u18220755.ct.sendgrid.net/wf/open?upn=u001.D6mC8SG6iITw2GIzPjAtw7SLAuEgZhcE7OQx5Ie2paKW9TCJvoy3Eh7ani-2FmDfzWZ4Aty9oKYAg8U-2BpXv81mmaeCBsQtTAdxlXqbnsXBCjn-2FAW10qJfypmIUPoD1-2B38y4LSjEaiwyNZHtEyZD-2BNUDeM9skWxIDUZqbXr6N6BE24hnOtTa6whvA4E2-2FBWjrUtKu9lvneCJvCU4ceqvBYUPzR-2F8HlKmFHdo0EBm0f1pApl7ItoEpAFp5iIyFI1QpV4jEptKJl4Ah3O2yki7J7MppeyQxwEOdFVc-2BFeFK-2B-2FUT8ubydD3vKxtzm-2FOhE9apUPQwmiSs6vF-2FgpvWPBqI2SUiA-2BmfcqTtMaGgxdj7qVBa5ms5TIOk-2FXY3yhcSktbUALePvQSL9qJpjpBdg3KZC-2BKvZobqIJoXWVb-2B9qAp7oizM-2F-2BECg6N5oCqvNm6XW6a2ChJCbECqg0UzH2T2iBwuBhvgK6oFAUvDkKo60pLg-2B5DJ1g-2B3cw4C1BwvZHDm2h-2B6UkHiCgkFfmPV6LvmVCNNbkqZU4O4HkhdTT2nyFF3a8FlZt4xac9ZSCCJ-2BrckW1gnPm-2FN-2FjGq88JUxBXbq2ttH4VG1cHpjCG7mmRL27GYV2arlRUcsal20FMwk-2F5je9flq5PvkMy2xLKb8zIrtvbTDewQYRuayh0bIVgfO-2BJlULtnLsmC-2FEeGS-2BFqt-2BSKBTGiym0jW9LhWQnE50kCSRirRmpa5oFV0DTVbdekcFdoawShTQA6Afs77rZbyFjFjzFyj6ShFn6AKxO2gM71eJ5m4fhadB2tF2UCs0hDd2ADqlH-2FB4rQLmkkd1Ugu0DSGBBhA2vUm5sKkdFej-2BL6WSTofjk1IOG4c3cm5-2FHjeWCl4R292XK2Vvq-2Bv3HB17LMH8TJblEZX3Zueqk3gSkVqBveVnXlhmPSyMNxVA53DYET2to5DocJWz0OXpr5njZeEh198g9cSASMrVpnU28UpCwwwzrFhLCgeU5og5ifm3CpuGaTM94JSzp3nc-2Bk1mbY7Dj75MeWpoY0i9vKwKhNMr5enpQ-3D-3D\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/></body>\r\n  </html>','The DOD seeks a logistics support tool that can generate realistic courses of action (CoA) options for commanders.\r\n\r\nNew Solicitation Announcement\r\n\r\nThere is a new solicitation posted on our website. It is easy to respond with a 5-page paper or 15-slide slide deck. These limits are not requirements but are strongly recommended. Additional guidance about what we look for in a proposal is available here ( https://www.diu.mil/solution-brief-guidance?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ). Our goal is to award an initial contract within 60-90 days of solicitation closure. Solicitation details and a link to the submission page are available below.\r\n\r\nJoint Sustainment Decision Tool (JSDT)\r\n\r\nThe ability to effectively project and sustain forces across vast contested distances, regardless of time or place, is a cornerstone of U.S. military power. For decades, the DOD has been able to accomplish widespread sustainment through a complex, globally-postured network of logistics providers, enablers, and locations. This network of organizations, units, and agencies, often called the Joint Logistics Enterprise (JLEnt), forms the basis of the Department\'s ability to protect its interests at home and abroad.\r\n\r\nCurrent logistics information technology tools available to the DOD do not possess the speed, scale, and intelligence required to plan, coordinate, and harmonize sustainment in multi-domain, large-scale, high operational tempo conflicts.\r\n\r\nConsequently, the DOD seeks a logistics support tool that can generate realistic courses of action (CoA) options for commanders in dynamic, contested, and degraded environments, preferably utilizing artificial intelligence and/or machine learning. *Learn more* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00621?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) *.*\r\n\r\n*Submission Deadline:*\r\n14 August 2025\r\n23:59:59 U.S. Eastern Time\r\n\r\nLearn more ( https://www.diu.mil/work-with-us/submit-solution/PROJ00621?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\nOther open solicitations:\r\n\r\n*Project G.I. Prize Challenge* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00598?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\nThis solicitation closes on December 31, 2025 at 23:59:59 Eastern Time\r\n\r\n*About DIU:* The Defense Innovation Unit (DIU) strengthens our national security by accelerating the adoption of commercial technology throughout the military and growing the national security innovation base. DIU partners with organizations across the Department of Defense (DoD) and with nontraditional companies to facilitate prototype projects and field advanced commercial solutions that address national security challenges. DIU leverages Other Transaction (OT) authority to award Prototype agreements, which, if successful, may result in the direct award of a follow-on Production agreement without the use of further competitive procedures. (DIU is not an OT consortium; DIU executes direct award OTs).\r\n\r\nYou are receiving this email because you have a contact at DIU or you signed up to our mailing list. If you would like to be removed from our email list, please click the unsubscribe link below.\r\n\r\nContact Us ( info@diu.mil )\r\n\r\nUnsubscribe ( https://u18220755.ct.sendgrid.net/asm/unsubscribe/?user_id=18220755&data=GU5OrJcpReG5repc1e1c1Fyw4psrOBR5D_XgEbPc_SxoMDAwdTAwMG63-IBhafKpuUdMfQt2TQnXwsizGGca0-mzDNpgnjxw34lvGNTa32Us_0LoXsG2hPyQ1-972TvvssJeyyUmrnB4MRvA-so8qBUQ1_ZaXnhaqnnBuhgy5swc7kFQ-y8SkyMnOnAqobPLjIEgGDN3LIUMLUIGrd-SaKhlWqAob7aagjqVUNKyvChL0ofvEGWSz_06LQ3qa02EPenn7H5gJq6cyoq9X_wXx1hXPsEC3P9poOGibWW_r6K6aoTvZ01X3C_0A0EPOrIhCBo0SCt3E69-Bnm4FGrwwXV5EQhTdwF46qgZwU8qmnuYxqynrMIC-fanCMyXUDVzaKN1DxZXHCYVlv_qIYSYzOaAW2jR5L5HKoLhJpsU9UEerRZd_LiEguDxV-4pFcVSpd_A8zLUNmtZt-HWlcZ5E3XQx7-DV-uZKn6lqchb5aucrO84uuIIwswZcPER21yralTI-u8HoUQ0rt3TRvEe27B0rPIj3kEga0NfA6GW2yvPQLKllW2lrDEn-cOHRUfRkkUQjplTKKS3Yfn5gwg7tp7ChMHhnPE22x3cXkUVsc9hVqpvJSaHk_pGbVFCOckdt2ozk5FDY2vd3xp4A5kAhZ7MJcdn2mxbCWDBswY5wY2J-FTixxueSlhEz_XCQW1808q1Z9mnMyzRn1ZLPXCsyYbX_qzm1awjpbmK9cthuCWu6GO57loYXnmvhT8zN7-v_AjKTJF7caw0ykLVfrnqWigg3-rnX2XhqC3WStLD-yBqpmxERtzffMZJlw8T5V1jRupb_5l2XKuP4vw3OJNOOp0mWB7Ht39NN2IFqIDWdVUZMZC9xRFLdolEri9pKlsQwNWc-d2CfedLDsOzbTbqhCpxS2lymyeBYhRMi8-jJDrciFbYLzG1ifoaqIppMXCDOIXCYuSUYapwHHj8QFte5DewX5dqimJnp7hM7U-4mV6HlJwQUGYTbIFj6tRLXg4fTB_ZFN_QPQouRTclbiKMP2mBLDA4Wk_-2W3AZHO51ybialTS8PWLVUNS6MjbljAhy1cx1YUba8rEJXnSvLGeCowuHqXAM4PWaiP4AjKVmD9bHTgATGXnOnG-WFFg3IT1tUxKn-XnFgrb_AFa7DQAD2ERkael6oBLoglUn4_bBYUl06noFjpQVKgCVdl_efMH-83Nyx1_rwQ= ) - Unsubscribe Preferences ( https://u18220755.ct.sendgrid.net/asm/?user_id=18220755&data=N6ETch9twbUIH1KxtCuN7rSfhPkXw3toDOeC2SSBq_9oMDAwdTAwMIe0RVYezytQ6lIOOiHGUo1-LqOFR7USkqu0BLzp4BNN3f2F_2at4uUiVE3jYtGF0DenmU5LEmExYhXdgrG2lfItMKDDSCtk5SU8NR6AOUzDoXlo9RC26_vbAXRoyenv3eNOu4R2H75hHk2xnd2XHDKtDzxP4oPDHOvhlc1FbBzu4LlKDg_3ZUrfWNSnn5KX6n2iR-0KDCw2GhNblsU7ycOmyLmmO_Ytzl6z4DPMZabKucUvZlGd1sxRJ--aOuKQ1Y39X25jeucXAIdUkkrwePVBErLZeROH0zYvn-37p1acKnZ4oJku-viFuKBMn3gSKemI0H21ZvKsKp86WuyVnPZ3su4M-5hWMr5L52Tm9yO46Lqg4FVANxfMs69TmEpV5pZvqz0bUdNFIHw2u9mQpVyRCxoIirbsFqurcgPr5VJFfVbi2VLkJ2_6lCT8YYW14Dc0DRC9Rinbkmwrm3MKpMH8MO52yfWK4TQXdacn07Joxow7UnGTXIS5u5Fduq01hR4TY2JQdNjjB7qWGrTdPrC-Hwi2QUoa2aCNz-R7zDbp7nPdrvwDxkaFUJvXaRq1AYTamooLlFvS8bLWh98KgUG02Am4aUkd96h4RSOyA3gQXdG-_Zi6Os-ucNHuLeud7FOccgBCUEAEKTo3wTwtBDD7vsEzZkGLrsNfyeHRb2OduESy-B5jrGjV50rI9r2BnNoEDfrP1pJkFDlO2VRjha5WRu4KBQNvrIcvCPP3nXEXgqSCtYgEFIP00kb1thjpyjRKLq7qpkF58uoPt5g_oVfXWKcXE1ebHLH1_8c1zaaXKB2bHLb0D5-7jTdihKBtpRrzTbIz2kipq6OQUGSqYQIn5tJv7rxo2NARWbsWW4R9mHLX1hWKydifHWLGK9Yy6l5-MNiiAUts80UQE1GHqdyz4bQJOqtuvy4UDX02Yv15SQbJI0PEVtOTrkNrJGVOxti-3bi9xHhFd0vUNeXH337IUT7oTWUv-1G9zD69TA4M0JN4E6Xft2zPyBcWcGbikReLpDIFiKtvCjMEAnKEt1t8d4AeA5qOa5I6VlKZPIMGoXQZE2cmUoYlwLIHeESp739sqXJuEa9LudTuWgPK-Emo_UsRDmFKWwouSXlO9UAF0rqD9ES4s-9yAZTX0B5uxDP9flbsJwfagbb8geRRApU= )',0,0,0,0,0,0,'2025-08-04 20:15:17','2025-12-09 19:27:07','2025-12-09 19:27:07','2025-12-09 19:27:07',NULL,NULL,NULL),
(576,4,'<6FKJFTB76GEQ8ZGJ50HS4BC1VC@drive.proton.me>',NULL,NULL,'Brian Stufflebean shared an item with you','no-reply@drive.proton.me','\"Brian Stufflebean (via Proton Drive)\"','--b2=_k9FahaFAJAi6SO7EnitczLZgUIGbV0bH2G0CkE\r\nContent-Type: text/html; charset=utf-8\r\nContent-Transfer-Encoding: base64\r\n\r\nPCFET0NUWVBFIGh0bWw+DQo8P3htbCBlbmNvZGluZz0idXRmLTgiID8+PGh0bWwgeG1sbnM9Imh0\r\ndHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWwiIHhtbG5zOnY9InVybjpzY2hlbWFzLW1pY3Jvc29m\r\ndC1jb206dm1sIiB4bWxuczpvPSJ1cm46c2NoZW1hcy1taWNyb3NvZnQtY29tOm9mZmljZTpvZmZp\r\nY2UiPg0KDQo8aGVhZD48bWV0YSBodHRwLWVxdWl2PSJDb250ZW50LVR5cGUiIGNvbnRlbnQ9InRl\r\neHQvaHRtbDsgY2hhcnNldD11dGYtOCI+DQogICAgPCEtLSBOQU1FOiAxIENPTFVNTiAtLT4NCiAg\r\nICA8IS0tW2lmIGd0ZSBtc28gMTVdPg0KICAgIDx4bWw+DQogICAgICAgIDxvOk9mZmljZURvY3Vt\r\nZW50U2V0dGluZ3M+DQogICAgICAgIDxvOkFsbG93UE5HLz4NCiAgICAgICAgPG86UGl4ZWxzUGVy\r\nSW5jaD45NjwvbzpQaXhlbHNQZXJJbmNoPg0KICAgICAgICA8L286T2ZmaWNlRG9jdW1lbnRTZXR0\r\naW5ncz4NCiAgICA8L3htbD4NCiAgICA8IVtlbmRpZl0tLT4NCiAgICA8bWV0YSBjaGFyc2V0PSJV\r\nVEYtOCI+DQogICAgPG1ldGEgbmFtZT0ieC1hcHBsZS1kaXNhYmxlLW1lc3NhZ2UtcmVmb3JtYXR0\r\naW5nIj4NCiAgICA8bWV0YSBuYW1lPSJmb3JtYXQtZGV0ZWN0aW9uIiBjb250ZW50PSJ0ZWxlcGhv\r\nbmU9bm8sIGRhdGU9bm8sIGFkZHJlc3M9bm8sIGVtYWlsPW5vLCB1cmw9bm8iPg0KICAgIDxtZXRh\r\nIGh0dHAtZXF1aXY9IlgtVUEtQ29tcGF0aWJsZSIgY29udGVudD0iSUU9ZWRnZSI+DQogICAgPG1l\r\ndGEgbmFtZT0idmlld3BvcnQiIGNvbnRlbnQ9IndpZHRoPWRldmljZS13aWR0aCwgaW5pdGlhbC1z\r\nY2FsZT0xIj4NCiAgICA8bWV0YSBuYW1lPSJhdXRob3IiIGNvbnRlbnQ9IlByb3RvbiAmbHQ7bm8t\r\ncmVwbHlAZHJpdmUucHJvdG9uLm1lJmd0OyI+DQogICAgPG1ldGEgbmFtZT0iZGVzY3JpcHRpb24i\r\nIGNvbnRlbnQ9Ik5ldyBpdGVtIHNoYXJlZCB3aXRoIHlvdSI+DQogICAgPHRpdGxlPkJyaWFuIFN0\r\ndWZmbGViZWFuIHNoYXJlZCBhbiBpdGVtIHdpdGggeW91PC90aXRsZT4NCg0KDQo8c3R5bGUgdHlw\r\nZT0idGV4dC9jc3MiPkBtZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1pbi13aWR0aDo3NjhweCl7LnRl\r\nbXBsYXRlQ29udGFpbmVye3dpZHRoOiA2MDBweCAhaW1wb3J0YW50O319QG1lZGlhIG9ubHkgc2Ny\r\nZWVuIGFuZCAobWF4LXdpZHRoOiA1MjBweCl7Ym9keSx0YWJsZSx0ZCxwLGF7LXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiBub25lICFpbXBvcnRhbnQ7fWJvZHl7d2lkdGg6IDEwMCUgIWltcG9ydGFu\r\ndDsgbWluLXdpZHRoOiAxMDAlICFpbXBvcnRhbnQ7fS5tY25SZXRpbmFJbWFnZXttYXgtd2lkdGg6\r\nIDEwMCUgIWltcG9ydGFudDt9Lm1jbkJ1dHRvbkNvbnRlbnRDb250YWluZXIsLm1jblRleHRDb250\r\nZW50Q29udGFpbmVye21heC13aWR0aDogMTAwJSAhaW1wb3J0YW50OyB3aWR0aDogMTAwJSAhaW1w\r\nb3J0YW50O30ubWNuVGV4dENvbnRlbnR7cGFkZGluZy1yaWdodDogMzJweCAhaW1wb3J0YW50OyBw\r\nYWRkaW5nLWxlZnQ6IDMycHggIWltcG9ydGFudDt9aDF7Zm9udC1zaXplOiAyMnB4ICFpbXBvcnRh\r\nbnQ7IGxpbmUtaGVpZ2h0OiAxLjI1ZW0gIWltcG9ydGFudDt9I3RlbXBsYXRlQm9keSAubWNuVGV4\r\ndENvbnRlbnQsI3RlbXBsYXRlQm9keSAubWNuVGV4dENvbnRlbnQgcHtmb250LXNpemU6IDE2cHgg\r\nIWltcG9ydGFudDsgbGluZS1oZWlnaHQ6IDEuNWVtICFpbXBvcnRhbnQ7fSN0ZW1wbGF0ZUZvb3Rl\r\nciAubWNuVGV4dENvbnRlbnQsI3RlbXBsYXRlRm9vdGVyIC5tY25UZXh0Q29udGVudCBwe2ZvbnQt\r\nc2l6ZTogMTRweCAhaW1wb3J0YW50OyBsaW5lLWhlaWdodDogMS41ZW0gIWltcG9ydGFudDt9fTwv\r\nc3R5bGU+PC9oZWFkPg0KDQo8Ym9keSBzdHlsZT0iaGVpZ2h0OiAxMDAlOyBtYXJnaW46IDA7IHBh\r\nZGRpbmc6IDA7IHdpZHRoOiAxMDAlOyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtp\r\ndC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBiYWNrZ3JvdW5kLWNvbG9yOiAjZjVmNGYyOyI+DQog\r\nICAgPCEtLVtpZiAhZ3RlIG1zbyA5XT48IS0tLS0+PHNwYW4gY2xhc3M9Im1jblByZXZpZXdUZXh0\r\nIiBzdHlsZT0iZm9udC1zaXplOiAwcHg7IGxpbmUtaGVpZ2h0OiAwcHg7IG1heC1oZWlnaHQ6IDBw\r\neDsgbWF4LXdpZHRoOiAwcHg7IG9wYWNpdHk6IDA7IG92ZXJmbG93OiBoaWRkZW47IHZpc2liaWxp\r\ndHk6IGhpZGRlbjsgbXNvLWhpZGU6IGFsbDsgZGlzcGxheTogbm9uZTsiPk5ldyBpdGVtIHNoYXJl\r\nZCB3aXRoIHlvdTwvc3Bhbj48IS0tPCFbZW5kaWZdLS0+DQogICAgPGNlbnRlcj4NCiAgICAgICAg\r\nPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFj\r\naW5nPSIwIiBoZWlnaHQ9IjEwMCUiIHdpZHRoPSIxMDAlIiBpZD0iYm9keVRhYmxlIiBzdHlsZT0i\r\nYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFi\r\nbGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7IGhlaWdodDogMTAwJTsgbWFyZ2luOiAwOyBwYWRkaW5nOiAwOyB3\r\naWR0aDogMTAwJTsgYmFja2dyb3VuZC1jb2xvcjogI2Y1ZjRmMjsiPg0KICAgICAgICAgICAgPHRy\r\nPg0KICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249InRvcCIgaWQ9ImJv\r\nZHlDZWxsIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGhlaWdodDog\r\nMTAwJTsgbWFyZ2luOiAwOyBwYWRkaW5nOiA4cHg7IHdpZHRoOiAxMDAlOyBib3JkZXItdG9wOiAw\r\nOyI+DQogICAgICAgICAgICAgICAgICAgIDwhLS0gQkVHSU4gVEVNUExBVEUgLy8gLS0+DQogICAg\r\nICAgICAgICAgICAgICAgIDwhLS1baWYgKGd0ZSBtc28gOSl8KElFKV0+DQogICAgICAgICAgICAg\r\nICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIwIiBj\r\nZWxscGFkZGluZz0iMCIgd2lkdGg9IjYwMCIgc3R5bGU9IndpZHRoOjYwMHB4OyI+PHRyPjx0ZCBh\r\nbGlnbj0iY2VudGVyIiB2YWxpZ249InRvcCIgd2lkdGg9IjYwMCIgc3R5bGU9IndpZHRoOjYwMHB4\r\nOyI+DQogICAgICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgICAgICAg\r\nICA8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRo\r\nPSIxMDAlIiBjbGFzcz0idGVtcGxhdGVDb250YWluZXIiIHN0eWxlPSJib3JkZXItY29sbGFwc2U6\r\nIGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgYm9yZGVyOiAwOyBib3JkZXItcmFkaXVzOiAxNnB4OyBtYXgtd2lkdGg6IDYwMHB4OyI+DQo8\r\ndHI+DQogICAgPHRkIHZhbGlnbj0idG9wIiBpZD0idGVtcGxhdGVIZWFkZXIiIHN0eWxlPSJtc28t\r\nbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13\r\nZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgYmFja2dyb3VuZC1jb2xvcjogI2ZmZmZmZjsg\r\nYmFja2dyb3VuZC1pbWFnZTogbm9uZTsgYmFja2dyb3VuZC1yZXBlYXQ6IG5vLXJlcGVhdDsgYmFj\r\na2dyb3VuZC1wb3NpdGlvbjogY2VudGVyOyBiYWNrZ3JvdW5kLXNpemU6IGNvdmVyOyBib3JkZXIt\r\ndG9wOiAwOyBib3JkZXItYm90dG9tOiAwOyBwYWRkaW5nLXRvcDogMHB4OyBwYWRkaW5nLWJvdHRv\r\nbTogMHB4OyBib3JkZXItcmFkaXVzOiAxNnB4IDE2cHggMCAwOyI+DQogICAgICAgIDx0YWJsZSBi\r\nb3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNs\r\nYXNzPSJtY25JbWFnZUJsb2NrIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFw\r\nc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBw\r\ndDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsiPg0KICAgICAgICAgICAgPHRib2R5IGNsYXNzPSJtY25JbWFnZUJsb2NrT3V0ZXIiPg0K\r\nICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9w\r\nIiBjbGFzcz0ibWNuSW1hZ2VCbG9ja0lubmVyIiBzdHlsZT0icGFkZGluZzogMTZweCAxNnB4IDBw\r\neCAxNnB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAg\r\nICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJsZWZ0IiB3aWR0aD0iMTAwJSIgYm9yZGVyPSIwIiBj\r\nZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIGNsYXNzPSJtY25JbWFnZUNvbnRlbnRDb250\r\nYWluZXIiIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7\r\nIG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgY2xh\r\nc3M9Im1jbkltYWdlQ29udGVudCIgdmFsaWduPSJ0b3AiIHN0eWxlPSJwYWRkaW5nOiAxNnB4IDE2\r\ncHggMHB4IDE2cHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iaHR0cHM6Ly9kcml2ZS5w\r\ncm90b24ubWUvIiB0YXJnZXQ9Il9ibGFuayIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBl\r\neGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyBsaW5lLWhlaWdodDogaW5oZXJpdDsgY29sb3I6ICM2ZDRhZmY7IGZvbnQtd2Vp\r\nZ2h0OiBub3JtYWw7IHRleHQtZGVjb3JhdGlvbjogdW5kZXJsaW5lOyI+PGltZyBhbGlnbj0iY2Vu\r\ndGVyIiBhbHQ9IlByb3RvbiBEcml2ZSIgc3JjPSJjaWQ6NzBmODkwZDE3OGVhZmI5MjczNzZAZHJp\r\ndmUucHJvdG9uLm1lIiB3aWR0aD0iMTUwIiBzdHlsZT0id2lkdGg6IDM1LjQ0NzclOyBtYXgtd2lk\r\ndGg6IDMwMHB4OyBwYWRkaW5nLWJvdHRvbTogMDsgdmVydGljYWwtYWxpZ246IGJvdHRvbTsgYm9y\r\nZGVyOiAwOyBoZWlnaHQ6IGF1dG87IG91dGxpbmU6IG5vbmU7IHRleHQtZGVjb3JhdGlvbjogbm9u\r\nZTsgLW1zLWludGVycG9sYXRpb24tbW9kZTogYmljdWJpYzsgZm9udC1mYW1pbHk6IEFyaWFsLCBI\r\nZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWlnaHQ6IDEuNWVt\r\nOyBjb2xvcjogIzZkNGFmZjsgZGlzcGxheTogaW5saW5lOyI+PC9hPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAg\r\nICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgPC90YWJsZT4N\r\nCiAgICA8L3RkPg0KPC90cj4NCjx0cj4NCiAgICA8dGQgdmFsaWduPSJ0b3AiIGlkPSJ0ZW1wbGF0\r\nZUJvZHkiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgYmFja2dyb3Vu\r\nZC1jb2xvcjogI2ZmZmZmZjsgYmFja2dyb3VuZC1pbWFnZTogbm9uZTsgYmFja2dyb3VuZC1yZXBl\r\nYXQ6IG5vLXJlcGVhdDsgYmFja2dyb3VuZC1wb3NpdGlvbjogY2VudGVyOyBiYWNrZ3JvdW5kLXNp\r\nemU6IGNvdmVyOyBib3JkZXItdG9wOiAwOyBib3JkZXItYm90dG9tOiAwOyBwYWRkaW5nLXRvcDog\r\nOHB4OyBwYWRkaW5nLWJvdHRvbTogOHB4OyI+PHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9\r\nIjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRCbG9jayIgc3R5\r\nbGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxl\r\nLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICA8dGJvZHkgY2xh\r\nc3M9Im1jblRleHRCbG9ja091dGVyIj4NCiAgICAgICAgPHRyPg0KICAgICAgICAgICAgPHRkIHZh\r\nbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dEJsb2NrSW5uZXIiIHN0eWxlPSJtc28tbGluZS1oZWln\r\naHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAg\r\nICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImxlZnQiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9\r\nIjAiIGNlbGxwYWRkaW5nPSIwIiB3aWR0aD0iMTAwJSIgc3R5bGU9IndpZHRoOjEwMCU7Ij48dHI+\r\nDQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgICAgICAgICA8IS0tW2lm\r\nIG1zb10+DQogICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiB3aWR0aD0iNjAwIiBzdHls\r\nZT0id2lkdGg6NjAwcHg7Ij4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAg\r\nICAgICAgICA8dGFibGUgYWxpZ249ImxlZnQiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNl\r\nbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRDb250ZW50Q29udGFpbmVy\r\nIiBzdHlsZT0ibWF4LXdpZHRoOiAxMDAlOyBtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBz\r\nZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0\r\nOyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyI+DQogICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNs\r\nYXNzPSJtY25UZXh0Q29udGVudCIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5\r\nOyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyB3b3JkLWJyZWFrOiBicmVhay13b3JkOyBjb2xvcjogIzBjMGMxNDsgZm9udC1mYW1pbHk6\r\nIEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWln\r\naHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBsZWZ0OyBwYWRkaW5nLXRvcDogOHB4OyBwYWRkaW5nLWJv\r\ndHRvbTogMTJweDsgcGFkZGluZy1yaWdodDogMzJweDsgcGFkZGluZy1sZWZ0OiAzMnB4OyI+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxoMSBzdHlsZT0iZGlzcGxheTogYmxvY2s7\r\nIG1hcmdpbjogMDsgcGFkZGluZzogMDsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBBcmlh\r\nbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDI0cHg7IGZvbnQtc3R5bGU6IG5v\r\ncm1hbDsgZm9udC13ZWlnaHQ6IGJvbGQ7IGxpbmUtaGVpZ2h0OiAxLjI1ZW07IGxldHRlci1zcGFj\r\naW5nOiAwcHg7IHRleHQtYWxpZ246IGxlZnQ7Ij5OZXcgaXRlbSBzaGFyZWQgd2l0aCB5b3U8L2gx\r\nPjxwIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIgc3R5bGU9InBhZGRpbmc6IDBweDsg\r\nbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGNvbG9yOiAjMGMwYzE0OyBmb250LWZh\r\nbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBsaW5l\r\nLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGxlZnQ7IG1hcmdpbjogMTJweCAwcHg7Ij48c3Ry\r\nb25nPkJyaWFuIFN0dWZmbGViZWFuPC9zdHJvbmc+IChicmlhbkBiYXlmcm9udGNhcGl0YWxsbGMu\r\nY29tKSBzaGFyZWQgYW4gaXRlbSB3aXRoIHlvdTo8L3A+PHAgY2xhc3M9Im1jblRleHRDb250ZW50\r\nQ29udGFpbmVyIiBzdHlsZT0icGFkZGluZzogMHB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhh\r\nY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBz\r\nYW5zLXNlcmlmOyBmb250LXNpemU6IDE2cHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgdGV4dC1hbGln\r\nbjogbGVmdDsgbWFyZ2luOiAxMnB4IDBweDsiPjxzcGFuIHN0eWxlPSJjb2xvcjogIzY2NjsiPlJp\r\nY2ssIHlvdSBhbmQgSSBhcmUgdGhlIG9ubHkgb25lcyBvbiB0aGlzIFNoYXJlZCBmb2xkZXIgYXMg\r\nb2Ygbm93LCBwbGVhc2UgZG8gbm90IGFkZCBhbnlvbmUgZWxzZSB0byBpdCB1bnRpbCB3ZSBkaXNj\r\ndXNzIHdobyYjMDM5O3MgYmVpbmcgYWRkZWQuDQoNClRoYW5rIHlvdSENCg0KQnJpYW48L3NwYW4+\r\nPC9wPjxwIHN0eWxlPSJtYXJnaW46IDEycHggMDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0\r\nbHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IGJvcmRlcjogMXB4IHNvbGlkICNFQUU3RTQ7IGJvcmRlci1yYWRpdXM6IDRweDsgcGFk\r\nZGluZzogNnB4IDE2cHg7Ij48aW1nIGFsaWduPSJtaWRkbGUiIGFsdD0iIiBzcmM9ImNpZDpmb2xk\r\nZXItaWNvbi1mb3Itc2hhcmluZy1lbWFpbEBkcml2ZS5wcm90b24ubWUiIHdpZHRoPSIyMCIgaGVp\r\nZ2h0PSIyMCIgc3R5bGU9Im1heC13aWR0aDogNDBweDtwYWRkaW5nLWJvdHRvbTogMDtkaXNwbGF5\r\nOiBpbmxpbmUtYmxvY2sgIWltcG9ydGFudDt2ZXJ0aWNhbC1hbGlnbjogdGV4dC1ib3R0b207Ym9y\r\nZGVyOiAwO3dpZHRoOiAyMHB4O2hlaWdodDogMjBweDttYXJnaW4tcmlnaHQ6IDVweDsiPiA8Yj5N\r\nYXZyaXggMSBMTEM8L2I+PC9wPiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4N\r\nCiAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4N\r\nCiAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KDQog\r\nICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgICAgIDwvdHI+PC90YWJs\r\nZT4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAgIDwvdGQ+DQogICAg\r\nICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwvdGFibGU+DQo8dGFibGUgYm9yZGVyPSIwIiBjZWxs\r\ncGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuQnV0dG9u\r\nQmxvY2siIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7\r\nIG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAg\r\nPHRib2R5IGNsYXNzPSJtY25CdXR0b25CbG9ja091dGVyIj4NCiAgICAgICAgPHRyPg0KICAgICAg\r\nICAgICAgPHRkIHZhbGlnbj0idG9wIiBhbGlnbj0ibGVmdCIgY2xhc3M9Im1jbkJ1dHRvbkJsb2Nr\r\nSW5uZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgdGV4dC1hbGln\r\nbjogY2VudGVyOyBwYWRkaW5nLWxlZnQ6IDMycHg7IHBhZGRpbmctcmlnaHQ6IDMycHg7IHBhZGRp\r\nbmctdG9wOiAwcHg7IHBhZGRpbmctYm90dG9tOiAzMnB4OyI+DQogICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2lu\r\nZz0iMCIgY2xhc3M9Im1jbkJ1dHRvbkNvbnRlbnRDb250YWluZXIiIHN0eWxlPSJtc28tdGFibGUt\r\nbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBz\r\nZXBhcmF0ZTsiPg0KICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAg\r\nICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0ibWlk\r\nZGxlIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgPGEgY2xhc3M9Im1jbkJ1dHRvbiBtYWlsaW5nLWJ1dHRv\r\nbiIgdGl0bGU9IkFjY2VwdCBpdGVtIGluIFByb3RvbiBEcml2ZSIgaHJlZj0iaHR0cHM6Ly9kcml2\r\nZS5wcm90b24ubWUvOFZUXzRTOHZ4M2ZXazZGWkxaVjFuYThXZnJwdE9IdzVza1BsX19kUlV1U0hr\r\nelB2YzZmU014QlVidEJ3Vnl4aWdUNF83bnBEekJkSTRXRExwTHI5MUE9PS94U3ZuUDhmOE9QNlkt\r\nVy1qNnZ5cThJQlI1T2daUVpnTlRMT2RxOXZBaVBRZWVHdXJDV3lMNVJkOC0yQ1pLOUpNekROZDFf\r\nYWU0UFdHcTQyc1JQNi01Zz09P2ludml0YXRpb249NVpqRUZZWUF1anR5MWpxUU5DZVdKUSZlbWFp\r\nbD1SaWNrJTQwbWF2cml4Lm9uZSIgdGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJtc28tbGluZS1oZWln\r\naHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMt\r\nc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgcGFkZGluZy1sZWZ0OiAzMnB4OyBwYWRkaW5nLXJpZ2h0\r\nOiAzMnB4OyBwYWRkaW5nLXRvcDogMTJweDsgcGFkZGluZy1ib3R0b206IDEycHg7IGRpc3BsYXk6\r\nIGJsb2NrOyBmb250LXdlaWdodDogbm9ybWFsOyBsZXR0ZXItc3BhY2luZzogMXB4OyBsaW5lLWhl\r\naWdodDogMS41ZW07IHRleHQtYWxpZ246IGNlbnRlcjsgdGV4dC1kZWNvcmF0aW9uOiBub25lOyBj\r\nb2xvcjogI0ZGRkZGRjsgYm9yZGVyLXJhZGl1czogOHB4OyBiYWNrZ3JvdW5kLWNvbG9yOiAjNmQ0\r\nYWZmOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+\r\nDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGkgc3R5bGU9ImZvbnQt\r\nZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmO2ZvbnQtc2l6ZTogMTZweDtwYWRk\r\naW5nLWxlZnQ6IDMycHg7cGFkZGluZy1yaWdodDogMzJweDtwYWRkaW5nLXRvcDogMTJweDtwYWRk\r\naW5nLWJvdHRvbTogMTJweDtkaXNwbGF5OiBibG9jaztmb250LXdlaWdodDogbm9ybWFsO2xldHRl\r\nci1zcGFjaW5nOiAxcHg7bGluZS1oZWlnaHQ6IDEuNWVtO3RleHQtYWxpZ246IGNlbnRlcjt0ZXh0\r\nLWRlY29yYXRpb246IG5vbmU7Y29sb3I6ICNGRkZGRkY7Ij4mbmJzcDs8L2k+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgIDxzcGFuIHN0eWxlPSIiPkFjY2VwdCBpdGVtPC9zcGFuPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2E+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAg\r\nICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICA8L3RyPg0KICAgIDwvdGJvZHk+DQo8L3RhYmxl\r\nPg0KICAgIDwvdGQ+DQo8L3RyPjx0cj4NCiAgICA8dGQgdmFsaWduPSJ0b3AiIGlkPSJ0ZW1wbGF0\r\nZUZvb3RlciIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBiYWNrZ3Jv\r\ndW5kLWNvbG9yOiAjZmZmZmZmOyBiYWNrZ3JvdW5kLWltYWdlOiBub25lOyBiYWNrZ3JvdW5kLXJl\r\ncGVhdDogbm8tcmVwZWF0OyBiYWNrZ3JvdW5kLXBvc2l0aW9uOiBjZW50ZXI7IGJhY2tncm91bmQt\r\nc2l6ZTogY292ZXI7IGJvcmRlci10b3A6IDA7IGJvcmRlci1ib3R0b206IDA7IHBhZGRpbmctdG9w\r\nOiAxNnB4OyBwYWRkaW5nLWJvdHRvbTogMTZweDsgYm9yZGVyLXJhZGl1czogMCAwIDE2cHggMTZw\r\neDsiPg0KICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNp\r\nbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuRGl2aWRlckJsb2NrIiBzdHlsZT0ibWluLXdp\r\nZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAw\r\ncHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13\r\nZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgdGFibGUtbGF5b3V0OiBmaXhlZDsiPg0KICAg\r\nIDx0Ym9keSBjbGFzcz0ibWNuRGl2aWRlckJsb2NrT3V0ZXIiPg0KICAgICAgICA8dHI+DQogICAg\r\nICAgICAgICA8dGQgY2xhc3M9Im1jbkRpdmlkZXJCbG9ja0lubmVyIiBzdHlsZT0ibWluLXdpZHRo\r\nOiAxMDAlOyBwYWRkaW5nOiAwIDMycHggMTZweCAzMnB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTog\r\nZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgIDx0YWJsZSBjbGFzcz0ibWNuRGl2aWRlckNv\r\nbnRlbnQiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0i\r\nMTAwJSIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLXRvcDogMXB4IHNvbGlkICNGNUY0\r\nRjI7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNv\r\nLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAg\r\nICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\ndGQgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgIDxzcGFuPjwvc3Bhbj4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAg\r\nICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAg\r\nICAgIDwhLS0NCiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9Im1jbkRpdmlkZXJCbG9ja0lubmVy\r\nIiBzdHlsZT0icGFkZGluZzogMzJweDsiPg0KICAgICAgICAgICAgICAgIDxociBjbGFzcz0ibWNu\r\nRGl2aWRlckNvbnRlbnQiIHN0eWxlPSJib3JkZXItYm90dG9tLWNvbG9yOm5vbmU7IGJvcmRlci1s\r\nZWZ0LWNvbG9yOm5vbmU7IGJvcmRlci1yaWdodC1jb2xvcjpub25lOyBib3JkZXItYm90dG9tLXdp\r\nZHRoOjA7IGJvcmRlci1sZWZ0LXdpZHRoOjA7IGJvcmRlci1yaWdodC13aWR0aDowOyBtYXJnaW4t\r\ndG9wOjA7IG1hcmdpbi1yaWdodDowOyBtYXJnaW4tYm90dG9tOjA7IG1hcmdpbi1sZWZ0OjA7IiAv\r\nPg0KICAgICAgICAgICAgICAgIC0tPg0KICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgPC90cj4N\r\nCiAgICA8L3Rib2R5Pg0KPC90YWJsZT4NCjx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIw\r\nIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25UZXh0QmxvY2siIHN0eWxl\r\nPSJtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1s\r\nc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgPHRib2R5IGNsYXNz\r\nPSJtY25UZXh0QmxvY2tPdXRlciI+DQogICAgPHRyPg0KICAgICAgICA8dGQgdmFsaWduPSJ0b3Ai\r\nIGNsYXNzPSJtY25UZXh0QmxvY2tJbm5lciIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBl\r\neGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyI+DQogICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICA8dGFi\r\nbGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9\r\nIjAiIHdpZHRoPSIxMDAlIiBzdHlsZT0id2lkdGg6MTAwJTsiPg0KICAgICAgICAgICAgICAgIDx0\r\ncj4NCiAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgICAgICA8IS0tW2lmIG1zb10+\r\nDQogICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIHdpZHRoPSI2MDAiIHN0eWxlPSJ3aWR0aDo2\r\nMDBweDsiPg0KICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICA8dGFibGUgYWxp\r\nZ249ImNlbnRlciIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdp\r\nZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dENvbnRlbnRDb250YWluZXIiIHN0eWxlPSJtYXgtd2lk\r\ndGg6IDEwMCU7IG1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNv\r\nLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAg\r\nICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAg\r\nICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJtY25UZXh0Q29udGVudCIgc3R5bGU9InBhZGRpbmct\r\ndG9wOiAxNnB4OyBwYWRkaW5nLXJpZ2h0OiAzMnB4OyBwYWRkaW5nLWJvdHRvbTogMDsgcGFkZGlu\r\nZy1sZWZ0OiAzMnB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgd29yZC1icmVh\r\nazogYnJlYWstd29yZDsgY29sb3I6ICM3MDZkNmI7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0\r\naWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE0cHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgdGV4\r\ndC1hbGlnbjogY2VudGVyOyI+DQogICAgICAgICAgICAgICAgICAgICAgICA8cCBzdHlsZT0ibWFy\r\nZ2luOiAxMnB4IDA7IHBhZGRpbmc6IDA7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAt\r\nbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyI+wqkgMjAyNCBQcm90b24gQUcgU3dpdHplcmxhbmQ8YnI+Um91dGUgZGUgbGEgR2FsYWlzZSZu\r\nYnNwOzMyLCAxMjI4Jm5ic3A7UGxhbi1sZXMtT3VhdGVzLCBHZW5ldmEsJm5ic3A7U3dpdHplcmxh\r\nbmQ8L3A+DQogICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgPC90cj4N\r\nCiAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAg\r\nICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICA8IVtlbmRp\r\nZl0tLT4NCg0KICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPC90cj4NCiAg\r\nICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgPC90\r\nZD4NCiAgICA8L3RyPg0KICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0KPHRhYmxlIGJvcmRlcj0iMCIg\r\nY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jbklt\r\nYWdlQmxvY2siIHN0eWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNw\r\nYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgbWluLXdpZHRoOiAxMDAlOyI+DQog\r\nICAgPHRib2R5IGNsYXNzPSJtY25JbWFnZUJsb2NrT3V0ZXIiPg0KICAgIDx0cj4NCiAgICAgICAg\r\nPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuSW1hZ2VCbG9ja0lubmVyIiBzdHlsZT0ibXNvLWxp\r\nbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Vi\r\na2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHBhZGRpbmc6IDE2cHg7Ij4NCiAgICAgICAgICAg\r\nIDx0YWJsZSBhbGlnbj0iY2VudGVyIiB3aWR0aD0iMTAwJSIgYm9yZGVyPSIwIiBjZWxscGFkZGlu\r\nZz0iMCIgY2VsbHNwYWNpbmc9IjAiIGNsYXNzPSJtY25JbWFnZUNvbnRlbnRDb250YWluZXIiIHN0\r\neWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1z\r\nby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsgbWluLXdpZHRoOiAxMDAlOyI+DQogICAgICAgICAgICAg\r\nICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgPHRk\r\nIGNsYXNzPSJtY25JbWFnZUNvbnRlbnQiIHZhbGlnbj0idG9wIiBzdHlsZT0ibXNvLWxpbmUtaGVp\r\nZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRl\r\neHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHBhZGRpbmctcmlnaHQ6IDE2cHg7IHBhZGRpbmctbGVmdDog\r\nMTZweDsgcGFkZGluZy10b3A6IDA7IHBhZGRpbmctYm90dG9tOiAwOyB0ZXh0LWFsaWduOiBjZW50\r\nZXI7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxpbWcgYWxpZ249ImNlbnRlciIgYWx0PSIi\r\nIHNyYz0iY2lkOmZmYjIyYmUyOGJjMmIxMjJhNTk4QGRyaXZlLnByb3Rvbi5tZSIgd2lkdGg9IjI3\r\nNiIgY2xhc3M9Im1jblJldGluYUltYWdlIiBzdHlsZT0iYm9yZGVyOiAwOyBoZWlnaHQ6IGF1dG87\r\nIG91dGxpbmU6IG5vbmU7IHRleHQtZGVjb3JhdGlvbjogbm9uZTsgLW1zLWludGVycG9sYXRpb24t\r\nbW9kZTogYmljdWJpYzsgbWF4LXdpZHRoOiA1NTJweDsgcGFkZGluZy1ib3R0b206IDA7IHZlcnRp\r\nY2FsLWFsaWduOiBib3R0b207IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNl\r\ncmlmOyBmb250LXNpemU6IDEycHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgZGlzcGxheTogaW5saW5l\r\nOyI+DQogICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgPC90cj4NCiAg\r\nICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgPC90\r\nZD4NCiAgICA8L3RyPg0KICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0KICAgIDwvdGQ+DQo8L3RyPiAg\r\nICAgICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgICAgICAgICA8\r\nIS0tW2lmIChndGUgbXNvIDkpfChJRSldPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4N\r\nCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICA8\r\nL3RhYmxlPg0KICAgICAgICAgICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICA8IS0tIC8vIEVORCBURU1QTEFURSAtLT4NCiAgICAgICAgICAgICAgICAg\r\nICAgPC90ZD4NCiAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgPC90YWJsZT4NCiAg\r\nICAgICAgPC9jZW50ZXI+DQogICAgPC9ib2R5Pg0KPC9odG1sPg0K\r\n\r\n--b2=_k9FahaFAJAi6SO7EnitczLZgUIGbV0bH2G0CkE\r\nContent-Type: image/png; name=logos-footer.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <ffb22be28bc2b122a598@drive.proton.me>\r\nContent-Disposition: inline; filename=logos-footer.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAigAAABwCAMAAAADkXsEAAAABGdBTUEAALGPC/xhBQAAAAFzUkdC\r\nAK7OHOkAAAAJcEhZcwAAFiUAABYlAUlSJPAAAALfUExURUdwTIpy/YZp/rfc/KOc6Ydn+76K3WxJ\r\n/97I0ZBp//CJWbx+0b6l+o1v/ubH3y7ZzdVqlo5p/fO7m29P/sXM8qiO/vi7tL7O++l3e5Z3/4tp\r\n/8mz9eSr2LXu9bae/3df/pV3//jZ0L2q/te/+XaA/bXo9+GpufnSzjKj8NrC/+SGjNLE/9Roo6Rp\r\n5KGK/cRiqNxujzq619ep3Itk/Cyo8PnBycWIy2vZ4fJgxltp+O9/e0ed4rbt9cWHyuRyhDHO0DjA\r\n1CrgyrVau+tfyJt4/8GI/3BN/21K/3BN/3hN+rCS/3VS/55+/3JL/H9O+JZ1/5p5/7KZ/ref/oVR\r\n9UZ0/4tP8pFx/+C3/1Jm/6uM/7yl/6KC/4lp/6dT5qaH/0xt/1hg/z97/7ZW4HpZ/4Nl/39g/9ix\r\n/11a/8G//59S6bbs9TiC/65U4zKJ/7zj+GhQ/4JM7Ytw/5JQ7x2f/5lS2L1X3JhR7MCr/9Kr/7jX\r\n/762/4pO5mNV/8ym/5JP345Z8fK9zcVY2SuQ/3tL9O66z+a00/+7k7H28r/e/WFl9iWX/8Wg/+q3\r\n0biU/5df681Z1l1s87d612Re+L+a/8au8cKDzsbR/RWo/7yn9qWT/rdcuceJycnJ/5eA/86QxLF0\r\n3OGw1rFZwNZb0s27/6tu4L5fspF6//a/y8LY+/B8ctSXvtqr2ta76M617eevqMKa5p9T0tKm3qCM\r\n/qVp471+06xXxZ5k5/jb0t9cztHB/8Ww/02R5lGJ6eGnrrat/2dX+7/U/0mZ40Wj4Mqg4sViqqRV\r\nzVSB7Fd67sm2/6OC9Vp08ECu3L/K/6uJ8uh1f97B5PHU2NbH//GEY8tlopuH/+TH4LqU6qmc/zu6\r\n2O24oIhf/+rN3NFom9icubKP79lsktyhtK+k/+peyeFxiN7S//rCyadWyjXI0/GNVN1vjJDG+fHN\r\nynqu9abL//20h/ife5bk7NVyobFiylqj/52w+HnLP+kAAABGdFJOUwBnRH8QICD+IP+AMd6f3v7+\r\n397dON6AWYTPvpdj3n+Fi9e/yv2m05d63k1/hd+7pNlD3PW/65P32brk5MfX58+IiN6/v4D1Cm7r\r\n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\r\n\r\n--b2=_k9FahaFAJAi6SO7EnitczLZgUIGbV0bH2G0CkE\r\nContent-Type: image/png; name=logo-proton-drive-purple.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <70f890d178eafb927376@drive.proton.me>\r\nContent-Disposition: inline; filename=logo-proton-drive-purple.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAgAAAACECAYAAADmxpMdAAAABGdBTUEAALGPC/xhBQAAACBjSFJN\r\nAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAhGVYSWZNTQAqAAAACAAFARIA\r\nAwAAAAEAAQAAARoABQAAAAEAAABKARsABQAAAAEAAABSASgAAwAAAAEAAgAAh2kABAAAAAEAAABa\r\nAAAAAAAAAEgAAAABAAAASAAAAAEAA6ABAAMAAAABAAEAAKACAAQAAAABAAACAKADAAQAAAABAAAA\r\nhAAAAADxbG/fAAAACXBIWXMAAAsTAAALEwEAmpwYAAABWWlUWHRYTUw6Y29tLmFkb2JlLnhtcAAA\r\nAAAAPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUg\r\nNi4wLjAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIv\r\nMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgog\r\nICAgICAgICAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyI+CiAg\r\nICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgIDwvcmRm\r\nOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgoZXuEHAABAAElEQVR4Aey9\r\nB6BtR1XwP/uW15IQkhAgtERAERGlBkXQRxFIhYAJAvp9FImYQkIR/LDkRBH0A0xIA/LJXwVR4Ekx\r\nlc4DQREIWAhNWiCEkkbKyyu37P/vt2bm3HPPPee+kvfIe2TPe/fsKWvWrFkzs9aasmen1LmOAx0H\r\nOg50HOg40HGg40DHgY4DHQc6DnQc6DjQcaDjQMeBjgMdBzoOdBzoONBxoONAx4GOAx0HOg50HOg4\r\n0HGg40DHgY4DHQc6DnQc6DjQcaDjQMeBjgMdBzoOdBzoONBxoONAx4GOAx0HOg50HOg40HGg40DH\r\ngY4DHQc6DnQc6DjQcaDjQMeBjgMdBzoOdBzoONBxoONAx4GOAx0HOg50HOg40HGg40DHgY4DHQc6\r\n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\r\n\r\n--b2=_k9FahaFAJAi6SO7EnitczLZgUIGbV0bH2G0CkE\r\nContent-Type: image/png; name=folder.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <folder-icon-for-sharing-email@drive.proton.me>\r\nContent-Disposition: inline; filename=folder.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAA\r\nAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACHSURBVHgB7dSxDcIwEIXh9w5RuGMGWIQ1vAVM\r\nAFkGWkbIGBQIeYQ0afOSSCmiSIkc6Up/rU+/bBcHOGP7Pj/U8UbitDw06hniv8IObF8XbQ4YPtTx\r\nHuI3wSM4SRKqgzFtDYX4q3ODWYZvqw2OhldcXYOjEizBEswLCg0cmchdC3TVeDE5teZ6jgMkv+hJ\r\n4UEAAAAASUVORK5CYII=\r\n\r\n--b2=_k9FahaFAJAi6SO7EnitczLZgUIGbV0bH2G0CkE--','New item shared with you\n\n[Proton Drive](https://drive.proton.me/)\n\nNew item shared with you\n\nBrian Stufflebean (brian@bayfrontcapitalllc.com) shared an item with you:\n\nRick, you and I are the only ones on this Shared folder as of now, please do not add anyone else to it until we discuss who\'s being added. Thank you! Brian\n\nMavrix 1 LLC\n\n[Accept item](https://drive.proton.me/8VT_4S8vx3fWk6FZLZV1na8WfrptOHw5skPl__dRUuSHkzPvc6fSMxBUbtBwVyxigT4_7npDzBdI4WDLpLr91A==/xSvnP8f8OP6Y-W-j6vyq8IBR5OgZQZgNTLOdq9vAiPQeeGurCWyL5Rd8-2CZK9JMzDNd1_ae4PWGq42sRP6-5g==?invitation=5ZjEFYYAujty1jqQNCeWJQ&email=Rick%40mavrix.one)\n\n© 2024 Proton AG Switzerland\nRoute de la Galaise 32, 1228 Plan-les-Ouates, Geneva, Switzerland',0,0,0,0,0,0,'2025-08-04 20:23:44','2025-12-09 19:27:08','2025-12-09 19:27:08','2025-12-09 19:27:08',NULL,NULL,NULL),
(577,4,' <CH2PR16MB3431B1E7099B5E27389CDE6CFE22A@CH2PR16MB3431.namprd16.prod.outlook.com>',NULL,NULL,'Re: Site Meeting of 07/30/2025 Follow Up - NDA','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nHi Brian &amp; Rick,&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nPlease find attached my partially executed version of the NDA for your review. When available, please send back the fully executed NDAs for our records. Thanks</div>\r\n<div class=\"elementToProof\" id=\"Signature\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"8\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWAaa9e88f7-72a4-9ae1-f90b-7b52ec482c95\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">Jarrett@</a>lithiumbatterycompany<a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"9\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWA052818ee-dd04-af5e-e3f2-200a51798534\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">.com</a></u></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"10\" data-auth=\"NotApplicable\" title=\"https://lithiumbatterycompany.com/\" class=\"OWAAutoLink\" id=\"OWA02113226-56f7-4e1d-3ed0-64eeb4a97441\" href=\"https://lithiumbatterycompany.com/\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b> Saturday, August 2, 2025 6:26 PM<br>\r\n<b>To:</b> Brian Stufflebean &lt;brian@bayfrontcapitalllc.com&gt;<br>\r\n<b>Cc:</b> Nathan A. Staron &lt;Nathan@lithiumbatterycompany.com&gt;; Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Site Meeting of 07/30/2025 Follow Up - NDA</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div>Hello Brian,</div>\r\n<div><br>\r\n</div>\r\n<div>Please see attached my&nbsp;signed NDA.&nbsp;</div>\r\n<div><br>\r\n</div>\r\n<div>Best&nbsp;Regards,&nbsp;</div>\r\n<div>\r\n<div dir=\"ltr\" class=\"x_gmail_signature\" data-smartmail=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\"><br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n</div>\r\n<br>\r\n<div class=\"x_gmail_quote x_gmail_quote_container\">\r\n<div dir=\"ltr\" class=\"x_gmail_attr\">On Sat, Aug 2, 2025 at 11:42 AM Brian Stufflebean &lt;<a href=\"mailto:brian@bayfrontcapitalllc.com\">brian@bayfrontcapitalllc.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote class=\"x_gmail_quote\" style=\"margin:0px 0px 0px 0.8ex; border-left:1px solid rgb(204,204,204); padding-left:1ex\">\r\n<div><span style=\"font-size:14px\">Jarrett, Nathan and Jordan,</span>\r\n<div><span style=\"font-size:14px\"><br>\r\n</span></div>\r\n<div><span style=\"font-size:14px\"><br>\r\n</span></div>\r\n<div><span style=\"font-size:14px\">It was a pleasure to have the opportunity to meet all three of you at your new site this past week.&nbsp; In following up from our meeting I have attached an NDA from Mavrix 1 LLC for your review and execution. Each of you should\r\n execute a copy as Senior Officers of the Company.&nbsp;</span></div>\r\n<div><span style=\"font-size:14px\"><br>\r\n</span></div>\r\n<div><span style=\"font-size:14px\">I will also be setting up a diligence folder on Proton for you to be able to upload diligence files for our review.&nbsp; Recognizing your very tight deadlines, we will attempt to move diligently along with reviews.&nbsp; Please don’t\r\n hesitate to text or contact me if you have any difficulties in getting into the Proton folder. &nbsp;</span></div>\r\n<div><span style=\"font-size:14px\"><br>\r\n</span></div>\r\n<div><span style=\"font-size:14px\"><b>FYI </b>- you will each receive an email invitation to join/accept the folder prior to being to gaining access.&nbsp;</span></div>\r\n<div><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div></div>\r\n</div>\r\n<div>\r\n<div></div>\r\n<div><br>\r\n<div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\nBest Regards,&nbsp;<br>\r\n<br>\r\n<br>\r\nBrian C. Stufflebean, CEO<br>\r\n<b>Bayfront Capital, LLC</b><br>\r\n(941)545-4153 Direct<br>\r\n(866)896-2423 Fax<br>\r\n<a href=\"mailto:brian@bayfrontcapitalllc.com\" target=\"_blank\">brian@bayfrontcapitalllc.com</a><br>\r\n<a href=\"http://www.bayfrontcapitalllc.com\" target=\"_blank\">www.bayfrontcapitalllc.com</a><br>\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>\r\n<br>\r\n</div>\r\n<span style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\"></span><br style=\"color:rgb(0,0,0); font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px; text-decoration:none\">\r\n<span style=\"color:rgb(0,0,0); font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px; text-decoration:none\"></span><span></span></div>\r\n</div>\r\n</div>\r\n<div>\r\n<div>\r\n<div><span></span>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<span><br>\r\n<br>\r\n<br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica; font-size:12px; font-style:normal; font-variant-caps:normal; letter-spacing:normal; text-align:start; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px; text-decoration:none; color:rgb(0,0,0)\">\r\n<b>CONFIDENTIALITY NOTICE / NOTICE&nbsp;OF&nbsp;NOT A REGISTERED&nbsp;BROKER/DEALER:</b><span style=\"font-weight:400\">&nbsp;Bayfront Capital&nbsp;LLC, nor its’ affiliates are registered as&nbsp;a Broker/Dealer, nor registered with&nbsp;FINRA. Nor does&nbsp;it provide tax or&nbsp;investment advice.&nbsp;&nbsp;Any\r\n references&nbsp;made to any transaction in any&nbsp;communication is being made as a&nbsp;business consultant.&nbsp;&nbsp;&nbsp;This is not a&nbsp;solicitation nor offer of any type and any&nbsp;reference to any proposed transaction&nbsp;of any type is void where prohibited by&nbsp;law.&nbsp;This communication&nbsp;is\r\n confidential&nbsp;and intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient, you&nbsp;may not copy, disclose, or&nbsp;distribute this message&nbsp;to anyone else;&nbsp;any such actions may be unlawful. If&nbsp;you have received this communication&nbsp;in error,&nbsp;please\r\n contact the sender of&nbsp;the message to&nbsp;inform him or her of the&nbsp;error.</span></div>\r\n</div>\r\n<br>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Hi Brian & Rick,\r\n\r\nPlease find attached my partially executed version of the NDA for your review. When available, please send back the fully executed NDAs for our records. Thanks\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\nSent: Saturday, August 2, 2025 6:26 PM\r\nTo: Brian Stufflebean <brian@bayfrontcapitalllc.com>\r\nCc: Nathan A. Staron <Nathan@lithiumbatterycompany.com>; Jarrett Brownfield <jarrett@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Site Meeting of 07/30/2025 Follow Up - NDA\r\n\r\nHello Brian,\r\n\r\nPlease see attached my signed NDA.\r\n\r\nBest Regards,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Sat, Aug 2, 2025 at 11:42 AM Brian Stufflebean <brian@bayfrontcapitalllc.com<mailto:brian@bayfrontcapitalllc.com>> wrote:\r\nJarrett, Nathan and Jordan,\r\n\r\n\r\nIt was a pleasure to have the opportunity to meet all three of you at your new site this past week.  In following up from our meeting I have attached an NDA from Mavrix 1 LLC for your review and execution. Each of you should execute a copy as Senior Officers of the Company.\r\n\r\nI will also be setting up a diligence folder on Proton for you to be able to upload diligence files for our review.  Recognizing your very tight deadlines, we will attempt to move diligently along with reviews.  Please don’t hesitate to text or contact me if you have any difficulties in getting into the Proton folder.\r\n\r\nFYI - you will each receive an email invitation to join/accept the folder prior to being to gaining access.\r\n\r\n\r\n\r\nBest Regards,\r\n\r\n\r\nBrian C. Stufflebean, CEO\r\nBayfront Capital, LLC\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\nbrian@bayfrontcapitalllc.com<mailto:brian@bayfrontcapitalllc.com>\r\nwww.bayfrontcapitalllc.com<http://www.bayfrontcapitalllc.com>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER: Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.\r\n\r\n',0,0,0,0,0,0,'2025-08-05 16:06:52','2025-12-09 19:27:08','2025-12-09 19:27:08','2025-12-09 19:27:08',NULL,NULL,NULL),
(578,4,' <BN6PR05MB361974E618383E4896A8DA6B8722A@BN6PR05MB3619.namprd05.prod.outlook.com>',NULL,NULL,'FW: Engagement Letter Mavrix 1, LLC','linda.propes@nelsonmullins.com','Linda Propes','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:#467886;\r\n	text-decoration:underline;}\r\nspan.EmailStyle19\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Good morning Rick, attached is our engagement letter for your review and signature. I am also attaching the wiring instructions for the retainer. Let us know if you have any questions. I can also send via DocuSign if that is easier. Thank\r\n you.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"370\" style=\"width:277.5pt\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" colspan=\"2\" style=\"width:100.0%;padding:0in 0in 14.25pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt;mso-ligatures:none\"><img width=\"261\" height=\"30\" style=\"width:2.7166in;height:.3083in\" id=\"_x0000_i1025\" src=\"https://www.nelsonmullins.com/img/ecard-logo.png\"></span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt;mso-ligatures:none\"><o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"5\" style=\"width:3.75pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt;mso-ligatures:none\">&nbsp;<o:p></o:p></span></b></p>\r\n</td>\r\n<td width=\"365\" style=\"width:273.75pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-top:solid #D1D2D4 1.5pt;padding:12.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3.0pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt;mso-ligatures:none\">LINDA PROPES&nbsp;&nbsp;</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#659BC5;letter-spacing:.75pt;mso-ligatures:none\">SENIOR\r\n ADMINISTRATIVE ASSISTANT</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt;mso-ligatures:none\">\r\n<o:p></o:p></span></b></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:6.75pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt;mso-ligatures:none\"><a href=\"mailto:linda.propes@nelsonmullins.com\"><span style=\"font-size:7.0pt;color:#676D72;text-decoration:none\">linda.propes@nelsonmullins.com</span></a>\r\n<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt;mso-ligatures:none\">390 NORTH ORANGE AVENUE&nbsp;|&nbsp;SUITE 1400<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt;mso-ligatures:none\">ORLANDO,&nbsp;FL&nbsp;32801<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt;mso-ligatures:none\">T</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt;mso-ligatures:none\">&nbsp;<span style=\"text-transform:uppercase\">407.669.4381</span>&nbsp;&nbsp;\r\n</span></b><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt;mso-ligatures:none\">F</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt;mso-ligatures:none\">&nbsp;<span style=\"text-transform:uppercase\">407.425.8377</span>&nbsp;&nbsp;\r\n<o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"5\" style=\"width:3.75pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt;mso-ligatures:none\">&nbsp;<o:p></o:p></span></b></p>\r\n</td>\r\n<td width=\"365\" style=\"width:273.75pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-bottom:solid #D1D2D4 1.5pt;padding:0in 0in 16.0pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt;mso-ligatures:none\"><a href=\"https://www.nelsonmullins.com\"><span style=\"color:#676D72;text-decoration:none\">NELSONMULLINS.COM</span></a>\r\n<o:p></o:p></span></b></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<p><strong>Confidentiality Notice</strong><br>\r\nThis message is intended exclusively for the individual or entity to which it is addressed. This communication may contain information that is proprietary, privileged, confidential or otherwise legally exempt from disclosure. If you are not the named addressee,\r\n you are not authorized to read, print, retain, copy or disseminate this message or any part of it. If you have received this message in error, please notify the sender immediately either by phone (800-237-2000) or reply to this e-mail and delete all copies\r\n of this message.</p>\r\n</body>\r\n</html>','Good morning Rick, attached is our engagement letter for your review and signature. I am also attaching the wiring instructions for the retainer. Let us know if you have any questions. I can also send via DocuSign if that is easier. Thank you.\r\n\r\n[https://www.nelsonmullins.com/img/ecard-logo.png]\r\n\r\nLINDA PROPES  SENIOR ADMINISTRATIVE ASSISTANT\r\nlinda.propes@nelsonmullins.com<mailto:linda.propes@nelsonmullins.com>\r\n390 NORTH ORANGE AVENUE | SUITE 1400\r\nORLANDO, FL 32801\r\nT 407.669.4381   F 407.425.8377\r\n\r\nNELSONMULLINS.COM<https://www.nelsonmullins.com>\r\n\r\n\r\nConfidentiality Notice\r\nThis message is intended exclusively for the individual or entity to which it is addressed. This communication may contain information that is proprietary, privileged, confidential or otherwise legally exempt from disclosure. If you are not the named addressee, you are not authorized to read, print, retain, copy or disseminate this message or any part of it. If you have received this message in error, please notify the sender immediately either by phone (800-237-2000) or reply to this e-mail and delete all copies of this message.',0,0,0,0,0,0,'2025-08-05 17:02:29','2025-12-09 19:27:09','2025-12-09 19:27:09','2025-12-09 19:27:09',NULL,NULL,NULL),
(579,4,'<CAGOCFXgkk9kpS-Sxx1KFTWX7mcrxqG4D2ezmniG2nrjc1KQXFQ@mail.gmail.com>',NULL,NULL,'Re: Site Meeting of 07/30/2025 Follow Up - NDA','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>I wanted to see if we could connect before the end of the week to discuss the next steps moving forward. I have some availability tomorrow, Wednesday, August 6th, as well as on Thursday, August 7th, or Friday, August 8th. Please let me know if any of these times work for you.</div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Aug 5, 2025 at 1:46 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div id=\"m_-1718545688046114632bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">See attached executed NDA.</div><div id=\"m_-1718545688046114632bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thanks,</div><div id=\"m_-1718545688046114632bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Rick</div> <br> <div id=\"m_-1718545688046114632bloop_sign_1754415861380096000\">\r\n        \r\n     \r\n    <br>\r\n     \r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD, </span><div style=\"font-family:Helvetica,Arial\">Founder, CTO</div><div style=\"font-family:Helvetica,Arial\"><img style=\"max-width: 99%;\"><br></div><div style=\"font-family:Helvetica,Arial\"><a href=\"http://mavrix1.com/\" target=\"_blank\">mavrix1.com</a></div></div><div><br></div></div> <br><p>On August 5, 2025 at 12:07:37 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div dir=\"ltr\"><div></div><div>\r\n\r\n\r\n\r\n\r\n\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nHi Brian &amp; Rick, </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nPlease find attached my partially executed version of the NDA for your review. When available, please send back the fully executed NDAs for our records. Thanks</div>\r\n<div id=\"m_-1718545688046114632Signature\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:11pt;color:black\"><b>Jarrett Brownfield </b></span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black;background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:rgb(0,36,81)\"><u><a style=\"color:rgb(0,36,81);margin:0px\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"m_-1718545688046114632OWAaa9e88f7-72a4-9ae1-f90b-7b52ec482c95\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">Jarrett@</a>lithiumbatterycompany<a style=\"color:rgb(0,36,81);margin:0px\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"m_-1718545688046114632OWA052818ee-dd04-af5e-e3f2-200a51798534\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">.com</a></u></span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:rgb(0,36,81)\"><u><a style=\"color:rgb(0,36,81);margin:0px\" title=\"https://lithiumbatterycompany.com/\" id=\"m_-1718545688046114632OWA02113226-56f7-4e1d-3ed0-64eeb4a97441\" href=\"https://lithiumbatterycompany.com/\" target=\"_blank\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"m_-1718545688046114632appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div id=\"m_-1718545688046114632divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Saturday, August 2, 2025 6:26 PM<br>\r\n<b>To:</b> Brian Stufflebean &lt;<a href=\"mailto:brian@bayfrontcapitalllc.com\" target=\"_blank\">brian@bayfrontcapitalllc.com</a>&gt;<br>\r\n<b>Cc:</b> Nathan A. Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt;; Jarrett Brownfield &lt;<a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Site Meeting of 07/30/2025 Follow Up - NDA</font>\r\n<div> </div>\r\n</div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div>Hello Brian,</div>\r\n<div><br>\r\n</div>\r\n<div>Please see attached my signed NDA. </div>\r\n<div><br>\r\n</div>\r\n<div>Best Regards, </div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n</div>\r\n<br>\r\n<div>\r\n<div dir=\"ltr\">On Sat, Aug 2, 2025 at 11:42 AM Brian Stufflebean &lt;<a href=\"mailto:brian@bayfrontcapitalllc.com\" target=\"_blank\">brian@bayfrontcapitalllc.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div><span style=\"font-size:14px\">Jarrett, Nathan and Jordan,</span>\r\n<div><span style=\"font-size:14px\"><br>\r\n</span></div>\r\n<div><span style=\"font-size:14px\"><br>\r\n</span></div>\r\n<div><span style=\"font-size:14px\">It was a pleasure to have the opportunity to meet all three of you at your new site this past week.  In following up from our meeting I have attached an NDA from Mavrix 1 LLC for your review and execution. Each of you should\r\n execute a copy as Senior Officers of the Company. </span></div>\r\n<div><span style=\"font-size:14px\"><br>\r\n</span></div>\r\n<div><span style=\"font-size:14px\">I will also be setting up a diligence folder on Proton for you to be able to upload diligence files for our review.  Recognizing your very tight deadlines, we will attempt to move diligently along with reviews.  Please don’t\r\n hesitate to text or contact me if you have any difficulties in getting into the Proton folder.  </span></div>\r\n<div><span style=\"font-size:14px\"><br>\r\n</span></div>\r\n<div><span style=\"font-size:14px\"><b>FYI </b>- you will each receive an email invitation to join/accept the folder prior to being to gaining access. </span></div>\r\n<div><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div></div>\r\n</div>\r\n<div>\r\n<div></div>\r\n<div><br>\r\n<div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\">\r\nBest Regards, <br>\r\n<br>\r\n<br>\r\nBrian C. Stufflebean, CEO<br>\r\n<b>Bayfront Capital, LLC</b><br>\r\n(941)545-4153 Direct<br>\r\n(866)896-2423 Fax<br>\r\n<a href=\"mailto:brian@bayfrontcapitalllc.com\" target=\"_blank\">brian@bayfrontcapitalllc.com</a><br>\r\n<a href=\"http://www.bayfrontcapitalllc.com\" target=\"_blank\">www.bayfrontcapitalllc.com</a><br>\r\n      <br>\r\n<br>\r\n</div>\r\n<span style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"></span><br style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\">\r\n<span style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"></span><span></span></div>\r\n</div>\r\n</div>\r\n<div>\r\n<div>\r\n<div><span></span>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\">\r\n<span><br>\r\n<br>\r\n<br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\">\r\n<span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\">\r\n<span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\">\r\n<span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\">\r\n<span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\">\r\n<span><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\">\r\n<b>CONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER:</b><span style=\"font-weight:400\"> Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any\r\n references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is\r\n confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please\r\n contact the sender of the message to inform him or her of the error.</span></div>\r\n</div>\r\n<br>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n\r\n\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div>','Hi Rick,\r\n\r\nI wanted to see if we could connect before the end of the week to discuss\r\nthe next steps moving forward. I have some availability tomorrow,\r\nWednesday, August 6th, as well as on Thursday, August 7th, or Friday,\r\nAugust 8th. Please let me know if any of these times work for you.\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Tue, Aug 5, 2025 at 1:46 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> See attached executed NDA.\r\n> Thanks,\r\n> Rick\r\n>\r\n>\r\n> Rick Mislan, PhD,\r\n> Founder, CTO\r\n>\r\n> mavrix1.com\r\n>\r\n>\r\n> On August 5, 2025 at 12:07:37 PM, Jarrett Brownfield (\r\n> jarrett@lithiumbatterycompany.com) wrote:\r\n>\r\n> Hi Brian & Rick,\r\n>\r\n> Please find attached my partially executed version of the NDA for your\r\n> review. When available, please send back the fully executed NDAs for our\r\n> records. Thanks\r\n>\r\n> *Jarrett Brownfield *\r\n>\r\n> Partner I Chief Financial Officer\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (812) 552-6854\r\n>\r\n> *Jarrett@\r\n> <Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> *Lithium Battery Company <https://lithiumbatterycompany.com/>*\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Saturday, August 2, 2025 6:26 PM\r\n> *To:* Brian Stufflebean <brian@bayfrontcapitalllc.com>\r\n> *Cc:* Nathan A. Staron <Nathan@lithiumbatterycompany.com>; Jarrett\r\n> Brownfield <jarrett@lithiumbatterycompany.com>; Rick Mislan\r\n> <rick@mavrix.one>\r\n> *Subject:* Re: Site Meeting of 07/30/2025 Follow Up - NDA\r\n>\r\n> Hello Brian,\r\n>\r\n> Please see attached my signed NDA.\r\n>\r\n> Best Regards,\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company <http://lithiumbatterycompany.com>\r\n>\r\n>\r\n> On Sat, Aug 2, 2025 at 11:42 AM Brian Stufflebean <\r\n> brian@bayfrontcapitalllc.com> wrote:\r\n>\r\n> Jarrett, Nathan and Jordan,\r\n>\r\n>\r\n> It was a pleasure to have the opportunity to meet all three of you at your\r\n> new site this past week.  In following up from our meeting I have attached\r\n> an NDA from Mavrix 1 LLC for your review and execution. Each of you should\r\n> execute a copy as Senior Officers of the Company.\r\n>\r\n> I will also be setting up a diligence folder on Proton for you to be able\r\n> to upload diligence files for our review.  Recognizing your very tight\r\n> deadlines, we will attempt to move diligently along with reviews.  Please\r\n> don’t hesitate to text or contact me if you have any difficulties in\r\n> getting into the Proton folder.\r\n>\r\n> *FYI *- you will each receive an email invitation to join/accept the\r\n> folder prior to being to gaining access.\r\n>\r\n>\r\n>\r\n> Best Regards,\r\n>\r\n>\r\n> Brian C. Stufflebean, CEO\r\n> *Bayfront Capital, LLC*\r\n> (941)545-4153 Direct\r\n> (866)896-2423 Fax\r\n> brian@bayfrontcapitalllc.com\r\n> www.bayfrontcapitalllc.com\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n> *CONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER:* Bayfront\r\n> Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor\r\n> registered with FINRA. Nor does it provide tax or investment advice.  Any\r\n> references made to any transaction in any communication is being made as\r\n> a business consultant.   This is not a solicitation nor offer of any type\r\n> and any reference to any proposed transaction of any type is void where\r\n> prohibited by law. This communication is confidential and intended only for\r\n> the intended recipient.  If you are not the intended recipient, you may not\r\n> copy, disclose, or distribute this message to anyone else; any such actions\r\n> may be unlawful. If you have received this communication in error, please\r\n> contact the sender of the message to inform him or her of the error.\r\n>\r\n>',0,0,0,0,0,0,'2025-08-05 19:32:57','2025-12-09 19:27:09','2025-12-09 19:27:09','2025-12-09 19:27:09',NULL,NULL,NULL),
(580,4,' <DS0P220MB116325AEAEB5B9E303A78DBEC822A@DS0P220MB1163.NAMP220.PROD.OUTLOOK.COM>',NULL,NULL,'Discussion','Ahoyen@outlook.com','Andrew Hoyen','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nAn incisive, results driven executive with a strong record of performance and career progression based on rapidly improving P&amp;L performance and driving profitable revenue growth in highly competitive markets. Key strengths include team leadership of sales,\r\n marketing and business organizations, creating and executing strategy, business transformation, driving revenue growth, capital raising and merger and acquisition/ divestiture maximizing enterprise value.</div>\r\n<div style=\"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nMy whole career has been in and around manufacturing, cyber and healthcare tech. Spent time running large businesses inside Kodak, Carestream and Toyota. Looking to position myself in a role that is strategic and leadership in nature. My background in running\r\n businesses and operations combined with the strategic nature of market approach, enables me to help an organization of this nature build the right structure for GTM, operations, banking/funding, M&amp;A, etc. Have worked extensively with Peraton ($9B prime contractor)\r\n in an existing business.</div>\r\n<div style=\"text-align: justify; text-indent: 0px; margin: 0in 0in 4pt; font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"text-align: justify; text-indent: 0px; margin: 0in 0in 4pt; font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nPrimary focus has been on technology organizations with an overall career that spans the manufacturing, medical device, cybersecurity, and information technology sectors, where I bring a deep wealth of expertise.</div>\r\n<div style=\"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nLooking to help a company as a strategic GTM advisor around these areas with an eye toward sliding into the CEO role to run the organization and its subsidiaries.&nbsp;</div>\r\n<div style=\"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<img style=\"max-width: 919px;\" alt=\"Andrew Hoyen\" data-outlook-trace=\"F:1|T:1\" src=\"cid:43e8a7c6-f6d3-46c1-b47d-49e4e724929b\"></div>\r\n</body>\r\n</html>','An incisive, results driven executive with a strong record of performance and career progression based on rapidly improving P&L performance and driving profitable revenue growth in highly competitive markets. Key strengths include team leadership of sales, marketing and business organizations, creating and executing strategy, business transformation, driving revenue growth, capital raising and merger and acquisition/ divestiture maximizing enterprise value.\r\n\r\nMy whole career has been in and around manufacturing, cyber and healthcare tech. Spent time running large businesses inside Kodak, Carestream and Toyota. Looking to position myself in a role that is strategic and leadership in nature. My background in running businesses and operations combined with the strategic nature of market approach, enables me to help an organization of this nature build the right structure for GTM, operations, banking/funding, M&A, etc. Have worked extensively with Peraton ($9B prime contractor) in an existing business.\r\n\r\nPrimary focus has been on technology organizations with an overall career that spans the manufacturing, medical device, cybersecurity, and information technology sectors, where I bring a deep wealth of expertise.\r\n\r\nLooking to help a company as a strategic GTM advisor around these areas with an eye toward sliding into the CEO role to run the organization and its subsidiaries.\r\n\r\n[Andrew Hoyen]',0,0,0,0,0,0,'2025-08-05 20:42:34','2025-12-09 19:27:09','2025-12-09 19:27:09','2025-12-09 19:27:09',NULL,NULL,NULL),
(581,4,' <BN6PR05MB3619B1E5F8B89405FC11F75F8722A@BN6PR05MB3619.namprd05.prod.outlook.com>',NULL,NULL,'RE: FW: Engagement Letter Mavrix 1, LLC','linda.propes@nelsonmullins.com','Linda Propes','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle21\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Hi Rick, I resent with the updated change via DocuSign. Let me know if you don’t receive.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"370\" style=\"width:277.5pt\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" colspan=\"2\" style=\"width:100.0%;padding:0in 0in 14.25pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><img width=\"261\" height=\"30\" style=\"width:2.7166in;height:.3083in\" id=\"_x0000_i1027\" src=\"https://www.nelsonmullins.com/img/ecard-logo.png\"></span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"5\" style=\"width:3.75pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<o:p></o:p></span></b></p>\r\n</td>\r\n<td width=\"365\" style=\"width:273.75pt;padding:0in 0in 0in 0in\">\r\n<div style=\"mso-element:para-border-div;border:none;border-top:solid #D1D2D4 1.5pt;padding:12.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3.0pt;border:none;padding:0in\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">LINDA PROPES&nbsp;&nbsp;</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#659BC5;letter-spacing:.75pt\">SENIOR\r\n ADMINISTRATIVE ASSISTANT</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">\r\n<o:p></o:p></span></b></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:6.75pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"mailto:linda.propes@nelsonmullins.com\"><span style=\"font-size:7.0pt;color:#676D72;text-decoration:none\">linda.propes@nelsonmullins.com</span></a>\r\n<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">390 NORTH ORANGE AVENUE&nbsp;|&nbsp;SUITE 1400<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">ORLANDO,&nbsp;FL&nbsp;32801<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">T</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.669.4381</span>&nbsp;&nbsp;\r\n</span></b><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">F</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.425.8377</span>&nbsp;&nbsp;\r\n<o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"5\" style=\"width:3.75pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<o:p></o:p></span></b></p>\r\n</td>\r\n<td width=\"365\" style=\"width:273.75pt;padding:0in 0in 0in 0in\">\r\n<div style=\"mso-element:para-border-div;border:none;border-bottom:solid #D1D2D4 1.5pt;padding:0in 0in 16.0pt 0in\">\r\n<p class=\"MsoNormal\" style=\"border:none;padding:0in\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"https://www.nelsonmullins.com\"><span style=\"color:#676D72;text-decoration:none\">NELSONMULLINS.COM</span></a>\r\n<o:p></o:p></span></b></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Tuesday, August 5, 2025 4:59 PM<br>\r\n<b>To:</b> Linda Propes &lt;linda.propes@nelsonmullins.com&gt;<br>\r\n<b>Cc:</b> Linda Propes &lt;linda.propes@nelsonmullins.com&gt;<br>\r\n<b>Subject:</b> Re: FW: Engagement Letter Mavrix 1, LLC<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-line-height-alt:.75pt\"><span style=\"font-size:1.0pt;color:white\">Thank you Linda, Can you please address the letter of engagement to me and on the bottom CC it to Brian. Thanks, Rick Richard P. Mislan, PhD,. Founder, CTO mavrix1.</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">com\r\n On August 5, 2025 at 1:</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">03:</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">17\r\n PM, Linda Propes (linda.</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">propes@</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">nelsonmullins.</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">com)<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-line-height-alt:.75pt\"><span style=\"font-size:1.0pt;color:white\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thank you Linda,<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Can you please address the letter of engagement to me and on the bottom CC it to Brian.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks,<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\">Rick<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Richard P. Mislan, PhD,.</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"84\" height=\"15\" style=\"width:.875in;height:.1583in\" id=\"Picture_x0020_2\" src=\"cid:image001.png@01DC062E.937B5CF0\"></span><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://urldefense.com/v3/__http:/mavrix1.com/__;!!LBFcHN3WCgnqDQ!nx5xsVGMUkQ7yKj6zc45tNabfkeggPFijgl35PGDETUv-CBVia-_uE2g8Fb2Y_cnkoFB2o73-IFh8-d5inGkGw$\">mavrix1.com</a><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"airmailon\">On August 5, 2025 at 1:03:17<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM, Linda Propes (<a href=\"mailto:linda.propes@nelsonmullins.com\">linda.propes@nelsonmullins.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Good morning Rick, attached is our engagement letter for your review and signature. I am also attaching the wiring instructions for the retainer. Let us know if you have any questions.\r\n I can also send via DocuSign if that is easier. Thank you.<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"370\" style=\"width:277.5pt\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" colspan=\"2\" style=\"width:100.0%;padding:0in 0in 14.25pt 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><img border=\"0\" width=\"261\" height=\"30\" style=\"width:2.7166in;height:.3083in\" id=\"_x0000_i1025\" src=\"https://www.nelsonmullins.com/img/ecard-logo.png\"></span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"5\" style=\"width:3.75pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"365\" style=\"width:273.75pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-top:solid #D1D2D4 1.5pt;padding:12.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:3.0pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">LINDA PROPES&nbsp;&nbsp;</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#659BC5;letter-spacing:.75pt\">SENIOR\r\n ADMINISTRATIVE ASSISTANT</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:6.75pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"mailto:linda.propes@nelsonmullins.com\"><span style=\"font-size:7.0pt;color:#676D72;text-decoration:none\">linda.propes@nelsonmullins.com</span></a>\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">390 NORTH ORANGE AVENUE&nbsp;|&nbsp;SUITE 1400</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">ORLANDO,&nbsp;FL&nbsp;32801</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:4.5pt\"><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">T</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.669.4381</span>&nbsp;&nbsp;\r\n</span></b><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">F</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.425.8377</span>&nbsp;&nbsp;\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"5\" style=\"width:3.75pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"365\" style=\"width:273.75pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-bottom:solid #D1D2D4 1.5pt;padding:0in 0in 16.0pt 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"https://www.nelsonmullins.com\"><span style=\"color:#676D72;text-decoration:none\">NELSONMULLINS.COM</span></a>\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<p><strong><span style=\"font-family:&quot;Aptos&quot;,sans-serif\">Confidentiality Notice</span></strong><br>\r\nThis message is intended exclusively for the individual or entity to which it is addressed. This communication may contain information that is proprietary, privileged, confidential or otherwise legally exempt from disclosure. If you are not the named addressee,\r\n you are not authorized to read, print, retain, copy or disseminate this message or any part of it. If you have received this message in error, please notify the sender immediately either by phone (800-237-2000) or reply to this e-mail and delete all copies\r\n of this message.<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</body>\r\n</html>','Hi Rick, I resent with the updated change via DocuSign. Let me know if you don’t receive.\r\n\r\n[https://www.nelsonmullins.com/img/ecard-logo.png]\r\n\r\nLINDA PROPES  SENIOR ADMINISTRATIVE ASSISTANT\r\nlinda.propes@nelsonmullins.com<mailto:linda.propes@nelsonmullins.com>\r\n390 NORTH ORANGE AVENUE | SUITE 1400\r\nORLANDO, FL 32801\r\nT 407.669.4381   F 407.425.8377\r\n\r\nNELSONMULLINS.COM<https://www.nelsonmullins.com>\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, August 5, 2025 4:59 PM\r\nTo: Linda Propes <linda.propes@nelsonmullins.com>\r\nCc: Linda Propes <linda.propes@nelsonmullins.com>\r\nSubject: Re: FW: Engagement Letter Mavrix 1, LLC\r\n\r\nThank you Linda, Can you please address the letter of engagement to me and on the bottom CC it to Brian. Thanks, Rick Richard P. Mislan, PhD,. Founder, CTO mavrix1. com On August 5, 2025 at 1: 03: 17 PM, Linda Propes (linda. propes@ nelsonmullins. com)\r\n\r\nThank you Linda,\r\nCan you please address the letter of engagement to me and on the bottom CC it to Brian.\r\nThanks,\r\nRick\r\n\r\nRichard P. Mislan, PhD,.\r\nFounder, CTO\r\n[cid:image001.png@01DC062E.937B5CF0]\r\nmavrix1.com<https://urldefense.com/v3/__http:/mavrix1.com/__;!!LBFcHN3WCgnqDQ!nx5xsVGMUkQ7yKj6zc45tNabfkeggPFijgl35PGDETUv-CBVia-_uE2g8Fb2Y_cnkoFB2o73-IFh8-d5inGkGw$>\r\n\r\n\r\n\r\nOn August 5, 2025 at 1:03:17 PM, Linda Propes (linda.propes@nelsonmullins.com<mailto:linda.propes@nelsonmullins.com>) wrote:\r\nGood morning Rick, attached is our engagement letter for your review and signature. I am also attaching the wiring instructions for the retainer. Let us know if you have any questions. I can also send via DocuSign if that is easier. Thank you.\r\n\r\n[https://www.nelsonmullins.com/img/ecard-logo.png]\r\n\r\nLINDA PROPES  SENIOR ADMINISTRATIVE ASSISTANT\r\nlinda.propes@nelsonmullins.com<mailto:linda.propes@nelsonmullins.com>\r\n390 NORTH ORANGE AVENUE | SUITE 1400\r\nORLANDO, FL 32801\r\nT 407.669.4381   F 407.425.8377\r\n\r\nNELSONMULLINS.COM<https://www.nelsonmullins.com>\r\n\r\n\r\nConfidentiality Notice\r\nThis message is intended exclusively for the individual or entity to which it is addressed. This communication may contain information that is proprietary, privileged, confidential or otherwise legally exempt from disclosure. If you are not the named addressee, you are not authorized to read, print, retain, copy or disseminate this message or any part of it. If you have received this message in error, please notify the sender immediately either by phone (800-237-2000) or reply to this e-mail and delete all copies of this message.',0,0,0,0,0,0,'2025-08-05 21:30:00','2025-12-09 19:27:10','2025-12-09 19:27:10','2025-12-09 19:27:10',NULL,NULL,NULL),
(582,4,'<W1DDQ009B67E3YYHNGP3RTQZ1W@drive.proton.me>',NULL,NULL,'Brian Stufflebean shared an item with you','no-reply@drive.proton.me','\"Brian Stufflebean (via Proton Drive)\"','--b2=_W7EDKPvl0A0P0Y4A8gmUytrUyHSFLLzuZVUss3qHs\r\nContent-Type: text/html; charset=utf-8\r\nContent-Transfer-Encoding: base64\r\n\r\nPCFET0NUWVBFIGh0bWw+DQo8P3htbCBlbmNvZGluZz0idXRmLTgiID8+PGh0bWwgeG1sbnM9Imh0\r\ndHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWwiIHhtbG5zOnY9InVybjpzY2hlbWFzLW1pY3Jvc29m\r\ndC1jb206dm1sIiB4bWxuczpvPSJ1cm46c2NoZW1hcy1taWNyb3NvZnQtY29tOm9mZmljZTpvZmZp\r\nY2UiPg0KDQo8aGVhZD48bWV0YSBodHRwLWVxdWl2PSJDb250ZW50LVR5cGUiIGNvbnRlbnQ9InRl\r\neHQvaHRtbDsgY2hhcnNldD11dGYtOCI+DQogICAgPCEtLSBOQU1FOiAxIENPTFVNTiAtLT4NCiAg\r\nICA8IS0tW2lmIGd0ZSBtc28gMTVdPg0KICAgIDx4bWw+DQogICAgICAgIDxvOk9mZmljZURvY3Vt\r\nZW50U2V0dGluZ3M+DQogICAgICAgIDxvOkFsbG93UE5HLz4NCiAgICAgICAgPG86UGl4ZWxzUGVy\r\nSW5jaD45NjwvbzpQaXhlbHNQZXJJbmNoPg0KICAgICAgICA8L286T2ZmaWNlRG9jdW1lbnRTZXR0\r\naW5ncz4NCiAgICA8L3htbD4NCiAgICA8IVtlbmRpZl0tLT4NCiAgICA8bWV0YSBjaGFyc2V0PSJV\r\nVEYtOCI+DQogICAgPG1ldGEgbmFtZT0ieC1hcHBsZS1kaXNhYmxlLW1lc3NhZ2UtcmVmb3JtYXR0\r\naW5nIj4NCiAgICA8bWV0YSBuYW1lPSJmb3JtYXQtZGV0ZWN0aW9uIiBjb250ZW50PSJ0ZWxlcGhv\r\nbmU9bm8sIGRhdGU9bm8sIGFkZHJlc3M9bm8sIGVtYWlsPW5vLCB1cmw9bm8iPg0KICAgIDxtZXRh\r\nIGh0dHAtZXF1aXY9IlgtVUEtQ29tcGF0aWJsZSIgY29udGVudD0iSUU9ZWRnZSI+DQogICAgPG1l\r\ndGEgbmFtZT0idmlld3BvcnQiIGNvbnRlbnQ9IndpZHRoPWRldmljZS13aWR0aCwgaW5pdGlhbC1z\r\nY2FsZT0xIj4NCiAgICA8bWV0YSBuYW1lPSJhdXRob3IiIGNvbnRlbnQ9IlByb3RvbiAmbHQ7bm8t\r\ncmVwbHlAZHJpdmUucHJvdG9uLm1lJmd0OyI+DQogICAgPG1ldGEgbmFtZT0iZGVzY3JpcHRpb24i\r\nIGNvbnRlbnQ9Ik5ldyBpdGVtIHNoYXJlZCB3aXRoIHlvdSI+DQogICAgPHRpdGxlPkJyaWFuIFN0\r\ndWZmbGViZWFuIHNoYXJlZCBhbiBpdGVtIHdpdGggeW91PC90aXRsZT4NCg0KDQo8c3R5bGUgdHlw\r\nZT0idGV4dC9jc3MiPkBtZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1pbi13aWR0aDo3NjhweCl7LnRl\r\nbXBsYXRlQ29udGFpbmVye3dpZHRoOiA2MDBweCAhaW1wb3J0YW50O319QG1lZGlhIG9ubHkgc2Ny\r\nZWVuIGFuZCAobWF4LXdpZHRoOiA1MjBweCl7Ym9keSx0YWJsZSx0ZCxwLGF7LXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiBub25lICFpbXBvcnRhbnQ7fWJvZHl7d2lkdGg6IDEwMCUgIWltcG9ydGFu\r\ndDsgbWluLXdpZHRoOiAxMDAlICFpbXBvcnRhbnQ7fS5tY25SZXRpbmFJbWFnZXttYXgtd2lkdGg6\r\nIDEwMCUgIWltcG9ydGFudDt9Lm1jbkJ1dHRvbkNvbnRlbnRDb250YWluZXIsLm1jblRleHRDb250\r\nZW50Q29udGFpbmVye21heC13aWR0aDogMTAwJSAhaW1wb3J0YW50OyB3aWR0aDogMTAwJSAhaW1w\r\nb3J0YW50O30ubWNuVGV4dENvbnRlbnR7cGFkZGluZy1yaWdodDogMzJweCAhaW1wb3J0YW50OyBw\r\nYWRkaW5nLWxlZnQ6IDMycHggIWltcG9ydGFudDt9aDF7Zm9udC1zaXplOiAyMnB4ICFpbXBvcnRh\r\nbnQ7IGxpbmUtaGVpZ2h0OiAxLjI1ZW0gIWltcG9ydGFudDt9I3RlbXBsYXRlQm9keSAubWNuVGV4\r\ndENvbnRlbnQsI3RlbXBsYXRlQm9keSAubWNuVGV4dENvbnRlbnQgcHtmb250LXNpemU6IDE2cHgg\r\nIWltcG9ydGFudDsgbGluZS1oZWlnaHQ6IDEuNWVtICFpbXBvcnRhbnQ7fSN0ZW1wbGF0ZUZvb3Rl\r\nciAubWNuVGV4dENvbnRlbnQsI3RlbXBsYXRlRm9vdGVyIC5tY25UZXh0Q29udGVudCBwe2ZvbnQt\r\nc2l6ZTogMTRweCAhaW1wb3J0YW50OyBsaW5lLWhlaWdodDogMS41ZW0gIWltcG9ydGFudDt9fTwv\r\nc3R5bGU+PC9oZWFkPg0KDQo8Ym9keSBzdHlsZT0iaGVpZ2h0OiAxMDAlOyBtYXJnaW46IDA7IHBh\r\nZGRpbmc6IDA7IHdpZHRoOiAxMDAlOyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtp\r\ndC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBiYWNrZ3JvdW5kLWNvbG9yOiAjZjVmNGYyOyI+DQog\r\nICAgPCEtLVtpZiAhZ3RlIG1zbyA5XT48IS0tLS0+PHNwYW4gY2xhc3M9Im1jblByZXZpZXdUZXh0\r\nIiBzdHlsZT0iZm9udC1zaXplOiAwcHg7IGxpbmUtaGVpZ2h0OiAwcHg7IG1heC1oZWlnaHQ6IDBw\r\neDsgbWF4LXdpZHRoOiAwcHg7IG9wYWNpdHk6IDA7IG92ZXJmbG93OiBoaWRkZW47IHZpc2liaWxp\r\ndHk6IGhpZGRlbjsgbXNvLWhpZGU6IGFsbDsgZGlzcGxheTogbm9uZTsiPk5ldyBpdGVtIHNoYXJl\r\nZCB3aXRoIHlvdTwvc3Bhbj48IS0tPCFbZW5kaWZdLS0+DQogICAgPGNlbnRlcj4NCiAgICAgICAg\r\nPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFj\r\naW5nPSIwIiBoZWlnaHQ9IjEwMCUiIHdpZHRoPSIxMDAlIiBpZD0iYm9keVRhYmxlIiBzdHlsZT0i\r\nYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFi\r\nbGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7IGhlaWdodDogMTAwJTsgbWFyZ2luOiAwOyBwYWRkaW5nOiAwOyB3\r\naWR0aDogMTAwJTsgYmFja2dyb3VuZC1jb2xvcjogI2Y1ZjRmMjsiPg0KICAgICAgICAgICAgPHRy\r\nPg0KICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249InRvcCIgaWQ9ImJv\r\nZHlDZWxsIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGhlaWdodDog\r\nMTAwJTsgbWFyZ2luOiAwOyBwYWRkaW5nOiA4cHg7IHdpZHRoOiAxMDAlOyBib3JkZXItdG9wOiAw\r\nOyI+DQogICAgICAgICAgICAgICAgICAgIDwhLS0gQkVHSU4gVEVNUExBVEUgLy8gLS0+DQogICAg\r\nICAgICAgICAgICAgICAgIDwhLS1baWYgKGd0ZSBtc28gOSl8KElFKV0+DQogICAgICAgICAgICAg\r\nICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIwIiBj\r\nZWxscGFkZGluZz0iMCIgd2lkdGg9IjYwMCIgc3R5bGU9IndpZHRoOjYwMHB4OyI+PHRyPjx0ZCBh\r\nbGlnbj0iY2VudGVyIiB2YWxpZ249InRvcCIgd2lkdGg9IjYwMCIgc3R5bGU9IndpZHRoOjYwMHB4\r\nOyI+DQogICAgICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgICAgICAg\r\nICA8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRo\r\nPSIxMDAlIiBjbGFzcz0idGVtcGxhdGVDb250YWluZXIiIHN0eWxlPSJib3JkZXItY29sbGFwc2U6\r\nIGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgYm9yZGVyOiAwOyBib3JkZXItcmFkaXVzOiAxNnB4OyBtYXgtd2lkdGg6IDYwMHB4OyI+DQo8\r\ndHI+DQogICAgPHRkIHZhbGlnbj0idG9wIiBpZD0idGVtcGxhdGVIZWFkZXIiIHN0eWxlPSJtc28t\r\nbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13\r\nZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgYmFja2dyb3VuZC1jb2xvcjogI2ZmZmZmZjsg\r\nYmFja2dyb3VuZC1pbWFnZTogbm9uZTsgYmFja2dyb3VuZC1yZXBlYXQ6IG5vLXJlcGVhdDsgYmFj\r\na2dyb3VuZC1wb3NpdGlvbjogY2VudGVyOyBiYWNrZ3JvdW5kLXNpemU6IGNvdmVyOyBib3JkZXIt\r\ndG9wOiAwOyBib3JkZXItYm90dG9tOiAwOyBwYWRkaW5nLXRvcDogMHB4OyBwYWRkaW5nLWJvdHRv\r\nbTogMHB4OyBib3JkZXItcmFkaXVzOiAxNnB4IDE2cHggMCAwOyI+DQogICAgICAgIDx0YWJsZSBi\r\nb3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNs\r\nYXNzPSJtY25JbWFnZUJsb2NrIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFw\r\nc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBw\r\ndDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsiPg0KICAgICAgICAgICAgPHRib2R5IGNsYXNzPSJtY25JbWFnZUJsb2NrT3V0ZXIiPg0K\r\nICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9w\r\nIiBjbGFzcz0ibWNuSW1hZ2VCbG9ja0lubmVyIiBzdHlsZT0icGFkZGluZzogMTZweCAxNnB4IDBw\r\neCAxNnB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAg\r\nICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJsZWZ0IiB3aWR0aD0iMTAwJSIgYm9yZGVyPSIwIiBj\r\nZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIGNsYXNzPSJtY25JbWFnZUNvbnRlbnRDb250\r\nYWluZXIiIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7\r\nIG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgY2xh\r\nc3M9Im1jbkltYWdlQ29udGVudCIgdmFsaWduPSJ0b3AiIHN0eWxlPSJwYWRkaW5nOiAxNnB4IDE2\r\ncHggMHB4IDE2cHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iaHR0cHM6Ly9kcml2ZS5w\r\ncm90b24ubWUvIiB0YXJnZXQ9Il9ibGFuayIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBl\r\neGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyBsaW5lLWhlaWdodDogaW5oZXJpdDsgY29sb3I6ICM2ZDRhZmY7IGZvbnQtd2Vp\r\nZ2h0OiBub3JtYWw7IHRleHQtZGVjb3JhdGlvbjogdW5kZXJsaW5lOyI+PGltZyBhbGlnbj0iY2Vu\r\ndGVyIiBhbHQ9IlByb3RvbiBEcml2ZSIgc3JjPSJjaWQ6NzBmODkwZDE3OGVhZmI5MjczNzZAZHJp\r\ndmUucHJvdG9uLm1lIiB3aWR0aD0iMTUwIiBzdHlsZT0id2lkdGg6IDM1LjQ0NzclOyBtYXgtd2lk\r\ndGg6IDMwMHB4OyBwYWRkaW5nLWJvdHRvbTogMDsgdmVydGljYWwtYWxpZ246IGJvdHRvbTsgYm9y\r\nZGVyOiAwOyBoZWlnaHQ6IGF1dG87IG91dGxpbmU6IG5vbmU7IHRleHQtZGVjb3JhdGlvbjogbm9u\r\nZTsgLW1zLWludGVycG9sYXRpb24tbW9kZTogYmljdWJpYzsgZm9udC1mYW1pbHk6IEFyaWFsLCBI\r\nZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWlnaHQ6IDEuNWVt\r\nOyBjb2xvcjogIzZkNGFmZjsgZGlzcGxheTogaW5saW5lOyI+PC9hPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAg\r\nICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgPC90YWJsZT4N\r\nCiAgICA8L3RkPg0KPC90cj4NCjx0cj4NCiAgICA8dGQgdmFsaWduPSJ0b3AiIGlkPSJ0ZW1wbGF0\r\nZUJvZHkiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgYmFja2dyb3Vu\r\nZC1jb2xvcjogI2ZmZmZmZjsgYmFja2dyb3VuZC1pbWFnZTogbm9uZTsgYmFja2dyb3VuZC1yZXBl\r\nYXQ6IG5vLXJlcGVhdDsgYmFja2dyb3VuZC1wb3NpdGlvbjogY2VudGVyOyBiYWNrZ3JvdW5kLXNp\r\nemU6IGNvdmVyOyBib3JkZXItdG9wOiAwOyBib3JkZXItYm90dG9tOiAwOyBwYWRkaW5nLXRvcDog\r\nOHB4OyBwYWRkaW5nLWJvdHRvbTogOHB4OyI+PHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9\r\nIjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRCbG9jayIgc3R5\r\nbGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxl\r\nLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICA8dGJvZHkgY2xh\r\nc3M9Im1jblRleHRCbG9ja091dGVyIj4NCiAgICAgICAgPHRyPg0KICAgICAgICAgICAgPHRkIHZh\r\nbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dEJsb2NrSW5uZXIiIHN0eWxlPSJtc28tbGluZS1oZWln\r\naHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAg\r\nICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImxlZnQiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9\r\nIjAiIGNlbGxwYWRkaW5nPSIwIiB3aWR0aD0iMTAwJSIgc3R5bGU9IndpZHRoOjEwMCU7Ij48dHI+\r\nDQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgICAgICAgICA8IS0tW2lm\r\nIG1zb10+DQogICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiB3aWR0aD0iNjAwIiBzdHls\r\nZT0id2lkdGg6NjAwcHg7Ij4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAg\r\nICAgICAgICA8dGFibGUgYWxpZ249ImxlZnQiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNl\r\nbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRDb250ZW50Q29udGFpbmVy\r\nIiBzdHlsZT0ibWF4LXdpZHRoOiAxMDAlOyBtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBz\r\nZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0\r\nOyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyI+DQogICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNs\r\nYXNzPSJtY25UZXh0Q29udGVudCIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5\r\nOyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyB3b3JkLWJyZWFrOiBicmVhay13b3JkOyBjb2xvcjogIzBjMGMxNDsgZm9udC1mYW1pbHk6\r\nIEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWln\r\naHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBsZWZ0OyBwYWRkaW5nLXRvcDogOHB4OyBwYWRkaW5nLWJv\r\ndHRvbTogMTJweDsgcGFkZGluZy1yaWdodDogMzJweDsgcGFkZGluZy1sZWZ0OiAzMnB4OyI+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxoMSBzdHlsZT0iZGlzcGxheTogYmxvY2s7\r\nIG1hcmdpbjogMDsgcGFkZGluZzogMDsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBBcmlh\r\nbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDI0cHg7IGZvbnQtc3R5bGU6IG5v\r\ncm1hbDsgZm9udC13ZWlnaHQ6IGJvbGQ7IGxpbmUtaGVpZ2h0OiAxLjI1ZW07IGxldHRlci1zcGFj\r\naW5nOiAwcHg7IHRleHQtYWxpZ246IGxlZnQ7Ij5OZXcgaXRlbSBzaGFyZWQgd2l0aCB5b3U8L2gx\r\nPjxwIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIgc3R5bGU9InBhZGRpbmc6IDBweDsg\r\nbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGNvbG9yOiAjMGMwYzE0OyBmb250LWZh\r\nbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBsaW5l\r\nLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGxlZnQ7IG1hcmdpbjogMTJweCAwcHg7Ij48c3Ry\r\nb25nPkJyaWFuIFN0dWZmbGViZWFuPC9zdHJvbmc+IChicmlhbkBiYXlmcm9udGNhcGl0YWxsbGMu\r\nY29tKSBzaGFyZWQgYW4gaXRlbSB3aXRoIHlvdTo8L3A+PHAgY2xhc3M9Im1jblRleHRDb250ZW50\r\nQ29udGFpbmVyIiBzdHlsZT0icGFkZGluZzogMHB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhh\r\nY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBz\r\nYW5zLXNlcmlmOyBmb250LXNpemU6IDE2cHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgdGV4dC1hbGln\r\nbjogbGVmdDsgbWFyZ2luOiAxMnB4IDBweDsiPjxzcGFuIHN0eWxlPSJjb2xvcjogIzY2NjsiPk1h\r\ndnJpeCBQcm90b248L3NwYW4+PC9wPjxwIHN0eWxlPSJtYXJnaW46IDEycHggMDsgbXNvLWxpbmUt\r\naGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGJvcmRlcjogMXB4IHNvbGlkICNFQUU3RTQ7IGJvcmRl\r\nci1yYWRpdXM6IDRweDsgcGFkZGluZzogNnB4IDE2cHg7Ij48aW1nIGFsaWduPSJtaWRkbGUiIGFs\r\ndD0iIiBzcmM9ImNpZDpmb2xkZXItaWNvbi1mb3Itc2hhcmluZy1lbWFpbEBkcml2ZS5wcm90b24u\r\nbWUiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgc3R5bGU9Im1heC13aWR0aDogNDBweDtwYWRkaW5n\r\nLWJvdHRvbTogMDtkaXNwbGF5OiBpbmxpbmUtYmxvY2sgIWltcG9ydGFudDt2ZXJ0aWNhbC1hbGln\r\nbjogdGV4dC1ib3R0b207Ym9yZGVyOiAwO3dpZHRoOiAyMHB4O2hlaWdodDogMjBweDttYXJnaW4t\r\ncmlnaHQ6IDVweDsiPiA8Yj5QZXJzb25uZWw8L2I+PC9wPiAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAg\r\nICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAg\r\nIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgIDwh\r\nW2VuZGlmXS0tPg0KDQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAg\r\nICAgIDwvdHI+PC90YWJsZT4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAg\r\nICAgIDwvdGQ+DQogICAgICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwvdGFibGU+DQo8dGFibGUg\r\nYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBj\r\nbGFzcz0ibWNuQnV0dG9uQmxvY2siIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xs\r\nYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTog\r\nMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyI+DQogICAgPHRib2R5IGNsYXNzPSJtY25CdXR0b25CbG9ja091dGVyIj4NCiAgICAg\r\nICAgPHRyPg0KICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBhbGlnbj0ibGVmdCIgY2xhc3M9\r\nIm1jbkJ1dHRvbkJsb2NrSW5uZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3Rs\r\neTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgdGV4dC1hbGlnbjogY2VudGVyOyBwYWRkaW5nLWxlZnQ6IDMycHg7IHBhZGRpbmctcmln\r\naHQ6IDMycHg7IHBhZGRpbmctdG9wOiAwcHg7IHBhZGRpbmctYm90dG9tOiAzMnB4OyI+DQogICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5n\r\nPSIwIiBjZWxsc3BhY2luZz0iMCIgY2xhc3M9Im1jbkJ1dHRvbkNvbnRlbnRDb250YWluZXIiIHN0\r\neWxlPSJtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRl\r\neHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgYm9y\r\nZGVyLWNvbGxhcHNlOiBzZXBhcmF0ZTsiPg0KICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nPHRkIHZhbGlnbj0ibWlkZGxlIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7\r\nIC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGEgY2xhc3M9Im1jbkJ1dHRv\r\nbiBtYWlsaW5nLWJ1dHRvbiIgdGl0bGU9IkFjY2VwdCBpdGVtIGluIFByb3RvbiBEcml2ZSIgaHJl\r\nZj0iaHR0cHM6Ly9kcml2ZS5wcm90b24ubWUvOFZUXzRTOHZ4M2ZXazZGWkxaVjFuYThXZnJwdE9I\r\ndzVza1BsX19kUlV1U0hrelB2YzZmU014QlVidEJ3Vnl4aWdUNF83bnBEekJkSTRXRExwTHI5MUE9\r\nPS9MVEdGb0RkWU52V0M3Z0I0TmktZGhrdEQ4NTRDQS13QjFFQUdWNXZMZlJlTVVPaTNEdmplNG9o\r\nR3VVVUN3ZEY1NDNxR0kwVWVnV0gyeFkycWRFX0Vwdz09P2ludml0YXRpb249UHFHV256YTM5b1o1\r\nb1loX1FNODZQQSZlbWFpbD1yaWNrJTQwbWF2cml4Lm9uZSIgdGFyZ2V0PSJfYmxhbmsiIHN0eWxl\r\nPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgZm9udC1mYW1pbHk6IEFyaWFsLCBI\r\nZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgcGFkZGluZy1sZWZ0OiAzMnB4\r\nOyBwYWRkaW5nLXJpZ2h0OiAzMnB4OyBwYWRkaW5nLXRvcDogMTJweDsgcGFkZGluZy1ib3R0b206\r\nIDEycHg7IGRpc3BsYXk6IGJsb2NrOyBmb250LXdlaWdodDogbm9ybWFsOyBsZXR0ZXItc3BhY2lu\r\nZzogMXB4OyBsaW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGNlbnRlcjsgdGV4dC1kZWNv\r\ncmF0aW9uOiBub25lOyBjb2xvcjogI0ZGRkZGRjsgYm9yZGVyLXJhZGl1czogOHB4OyBiYWNrZ3Jv\r\ndW5kLWNvbG9yOiAjNmQ0YWZmOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nPGkgc3R5bGU9ImZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmO2ZvbnQt\r\nc2l6ZTogMTZweDtwYWRkaW5nLWxlZnQ6IDMycHg7cGFkZGluZy1yaWdodDogMzJweDtwYWRkaW5n\r\nLXRvcDogMTJweDtwYWRkaW5nLWJvdHRvbTogMTJweDtkaXNwbGF5OiBibG9jaztmb250LXdlaWdo\r\ndDogbm9ybWFsO2xldHRlci1zcGFjaW5nOiAxcHg7bGluZS1oZWlnaHQ6IDEuNWVtO3RleHQtYWxp\r\nZ246IGNlbnRlcjt0ZXh0LWRlY29yYXRpb246IG5vbmU7Y29sb3I6ICNGRkZGRkY7Ij4mbmJzcDs8\r\nL2k+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuIHN0eWxlPSIiPkFjY2VwdCBp\r\ndGVtPC9zcGFuPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2E+DQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+\r\nDQogICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgPC90YWJsZT4N\r\nCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICA8L3RyPg0KICAgIDwv\r\ndGJvZHk+DQo8L3RhYmxlPg0KICAgIDwvdGQ+DQo8L3RyPjx0cj4NCiAgICA8dGQgdmFsaWduPSJ0\r\nb3AiIGlkPSJ0ZW1wbGF0ZUZvb3RlciIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFj\r\ndGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyBiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmZmZmOyBiYWNrZ3JvdW5kLWltYWdlOiBub25l\r\nOyBiYWNrZ3JvdW5kLXJlcGVhdDogbm8tcmVwZWF0OyBiYWNrZ3JvdW5kLXBvc2l0aW9uOiBjZW50\r\nZXI7IGJhY2tncm91bmQtc2l6ZTogY292ZXI7IGJvcmRlci10b3A6IDA7IGJvcmRlci1ib3R0b206\r\nIDA7IHBhZGRpbmctdG9wOiAxNnB4OyBwYWRkaW5nLWJvdHRvbTogMTZweDsgYm9yZGVyLXJhZGl1\r\nczogMCAwIDE2cHggMTZweDsiPg0KICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGlu\r\nZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuRGl2aWRlckJsb2Nr\r\nIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28t\r\ndGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgdGFibGUtbGF5b3V0\r\nOiBmaXhlZDsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNuRGl2aWRlckJsb2NrT3V0ZXIiPg0KICAg\r\nICAgICA8dHI+DQogICAgICAgICAgICA8dGQgY2xhc3M9Im1jbkRpdmlkZXJCbG9ja0lubmVyIiBz\r\ndHlsZT0ibWluLXdpZHRoOiAxMDAlOyBwYWRkaW5nOiAwIDMycHggMTZweCAzMnB4OyBtc28tbGlu\r\nZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJr\r\naXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgIDx0YWJsZSBjbGFz\r\ncz0ibWNuRGl2aWRlckNvbnRlbnQiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFj\r\naW5nPSIwIiB3aWR0aD0iMTAwJSIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLXRvcDog\r\nMXB4IHNvbGlkICNGNUY0RjI7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1s\r\nc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAg\r\nICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICA8dGQgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAt\r\nbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuPjwvc3Bhbj4NCiAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90\r\ncj4NCiAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICA8L3RhYmxl\r\nPg0KICAgICAgICAgICAgICAgIDwhLS0NCiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9Im1jbkRp\r\ndmlkZXJCbG9ja0lubmVyIiBzdHlsZT0icGFkZGluZzogMzJweDsiPg0KICAgICAgICAgICAgICAg\r\nIDxociBjbGFzcz0ibWNuRGl2aWRlckNvbnRlbnQiIHN0eWxlPSJib3JkZXItYm90dG9tLWNvbG9y\r\nOm5vbmU7IGJvcmRlci1sZWZ0LWNvbG9yOm5vbmU7IGJvcmRlci1yaWdodC1jb2xvcjpub25lOyBi\r\nb3JkZXItYm90dG9tLXdpZHRoOjA7IGJvcmRlci1sZWZ0LXdpZHRoOjA7IGJvcmRlci1yaWdodC13\r\naWR0aDowOyBtYXJnaW4tdG9wOjA7IG1hcmdpbi1yaWdodDowOyBtYXJnaW4tYm90dG9tOjA7IG1h\r\ncmdpbi1sZWZ0OjA7IiAvPg0KICAgICAgICAgICAgICAgIC0tPg0KICAgICAgICAgICAgPC90ZD4N\r\nCiAgICAgICAgPC90cj4NCiAgICA8L3Rib2R5Pg0KPC90YWJsZT4NCjx0YWJsZSBib3JkZXI9IjAi\r\nIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25U\r\nZXh0QmxvY2siIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFw\r\nc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQog\r\nICAgPHRib2R5IGNsYXNzPSJtY25UZXh0QmxvY2tPdXRlciI+DQogICAgPHRyPg0KICAgICAgICA8\r\ndGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJtY25UZXh0QmxvY2tJbm5lciIgc3R5bGU9Im1zby1saW5l\r\nLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtp\r\ndC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICA8IS0tW2lmIG1zb10+DQog\r\nICAgICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0i\r\nMCIgY2VsbHBhZGRpbmc9IjAiIHdpZHRoPSIxMDAlIiBzdHlsZT0id2lkdGg6MTAwJTsiPg0KICAg\r\nICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgICAg\r\nICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIHdpZHRoPSI2MDAi\r\nIHN0eWxlPSJ3aWR0aDo2MDBweDsiPg0KICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAg\r\nICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2Vs\r\nbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dENvbnRlbnRDb250YWluZXIi\r\nIHN0eWxlPSJtYXgtd2lkdGg6IDEwMCU7IG1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNl\r\nOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7\r\nIC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7Ij4NCiAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgPHRyPg0KICAg\r\nICAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJtY25UZXh0Q29udGVudCIg\r\nc3R5bGU9InBhZGRpbmctdG9wOiAxNnB4OyBwYWRkaW5nLXJpZ2h0OiAzMnB4OyBwYWRkaW5nLWJv\r\ndHRvbTogMDsgcGFkZGluZy1sZWZ0OiAzMnB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3Rs\r\neTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgd29yZC1icmVhazogYnJlYWstd29yZDsgY29sb3I6ICM3MDZkNmI7IGZvbnQtZmFtaWx5\r\nOiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE0cHg7IGxpbmUtaGVp\r\nZ2h0OiAxLjVlbTsgdGV4dC1hbGlnbjogY2VudGVyOyI+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICA8cCBzdHlsZT0ibWFyZ2luOiAxMnB4IDA7IHBhZGRpbmc6IDA7IG1zby1saW5lLWhlaWdodC1y\r\ndWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyI+wqkgMjAyNCBQcm90b24gQUcgU3dpdHplcmxhbmQ8YnI+Um91dGUg\r\nZGUgbGEgR2FsYWlzZSZuYnNwOzMyLCAxMjI4Jm5ic3A7UGxhbi1sZXMtT3VhdGVzLCBHZW5ldmEs\r\nJm5ic3A7U3dpdHplcmxhbmQ8L3A+DQogICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAg\r\nICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgPC90\r\nYWJsZT4NCiAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgIDwvdGQ+DQogICAg\r\nICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAg\r\nICAgICAgPC90cj4NCiAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICA8IVtlbmRpZl0t\r\nLT4NCiAgICAgICAgPC90ZD4NCiAgICA8L3RyPg0KICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0KPHRh\r\nYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAw\r\nJSIgY2xhc3M9Im1jbkltYWdlQmxvY2siIHN0eWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNl\r\nOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgbWluLXdp\r\nZHRoOiAxMDAlOyI+DQogICAgPHRib2R5IGNsYXNzPSJtY25JbWFnZUJsb2NrT3V0ZXIiPg0KICAg\r\nIDx0cj4NCiAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuSW1hZ2VCbG9ja0lubmVy\r\nIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHBhZGRpbmc6IDE2cHg7\r\nIj4NCiAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiB3aWR0aD0iMTAwJSIgYm9yZGVy\r\nPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIGNsYXNzPSJtY25JbWFnZUNvbnRl\r\nbnRDb250YWluZXIiIHN0eWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUt\r\nbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgbWluLXdpZHRoOiAxMDAlOyI+\r\nDQogICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAg\r\nICAgICAgICAgICAgPHRkIGNsYXNzPSJtY25JbWFnZUNvbnRlbnQiIHZhbGlnbj0idG9wIiBzdHls\r\nZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHBhZGRpbmctcmlnaHQ6IDE2cHg7\r\nIHBhZGRpbmctbGVmdDogMTZweDsgcGFkZGluZy10b3A6IDA7IHBhZGRpbmctYm90dG9tOiAwOyB0\r\nZXh0LWFsaWduOiBjZW50ZXI7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxpbWcgYWxpZ249\r\nImNlbnRlciIgYWx0PSIiIHNyYz0iY2lkOmZmYjIyYmUyOGJjMmIxMjJhNTk4QGRyaXZlLnByb3Rv\r\nbi5tZSIgd2lkdGg9IjI3NiIgY2xhc3M9Im1jblJldGluYUltYWdlIiBzdHlsZT0iYm9yZGVyOiAw\r\nOyBoZWlnaHQ6IGF1dG87IG91dGxpbmU6IG5vbmU7IHRleHQtZGVjb3JhdGlvbjogbm9uZTsgLW1z\r\nLWludGVycG9sYXRpb24tbW9kZTogYmljdWJpYzsgbWF4LXdpZHRoOiA1NTJweDsgcGFkZGluZy1i\r\nb3R0b206IDA7IHZlcnRpY2FsLWFsaWduOiBib3R0b207IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVs\r\ndmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDEycHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsg\r\nZGlzcGxheTogaW5saW5lOyI+DQogICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAg\r\nICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgPC90YWJs\r\nZT4NCiAgICAgICAgPC90ZD4NCiAgICA8L3RyPg0KICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0KICAg\r\nIDwvdGQ+DQo8L3RyPiAgICAgICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICA8IS0tW2lmIChndGUgbXNvIDkpfChJRSldPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgICAgICAgICAgPCFbZW5kaWZd\r\nLS0+DQogICAgICAgICAgICAgICAgICAgICAgICA8IS0tIC8vIEVORCBURU1QTEFURSAtLT4NCiAg\r\nICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAg\r\nICAgPC90YWJsZT4NCiAgICAgICAgPC9jZW50ZXI+DQogICAgPC9ib2R5Pg0KPC9odG1sPg0K\r\n\r\n--b2=_W7EDKPvl0A0P0Y4A8gmUytrUyHSFLLzuZVUss3qHs\r\nContent-Type: image/png; name=logos-footer.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <ffb22be28bc2b122a598@drive.proton.me>\r\nContent-Disposition: inline; filename=logos-footer.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAigAAABwCAMAAAADkXsEAAAABGdBTUEAALGPC/xhBQAAAAFzUkdC\r\nAK7OHOkAAAAJcEhZcwAAFiUAABYlAUlSJPAAAALfUExURUdwTIpy/YZp/rfc/KOc6Ydn+76K3WxJ\r\n/97I0ZBp//CJWbx+0b6l+o1v/ubH3y7ZzdVqlo5p/fO7m29P/sXM8qiO/vi7tL7O++l3e5Z3/4tp\r\n/8mz9eSr2LXu9bae/3df/pV3//jZ0L2q/te/+XaA/bXo9+GpufnSzjKj8NrC/+SGjNLE/9Roo6Rp\r\n5KGK/cRiqNxujzq619ep3Itk/Cyo8PnBycWIy2vZ4fJgxltp+O9/e0ed4rbt9cWHyuRyhDHO0DjA\r\n1CrgyrVau+tfyJt4/8GI/3BN/21K/3BN/3hN+rCS/3VS/55+/3JL/H9O+JZ1/5p5/7KZ/ref/oVR\r\n9UZ0/4tP8pFx/+C3/1Jm/6uM/7yl/6KC/4lp/6dT5qaH/0xt/1hg/z97/7ZW4HpZ/4Nl/39g/9ix\r\n/11a/8G//59S6bbs9TiC/65U4zKJ/7zj+GhQ/4JM7Ytw/5JQ7x2f/5lS2L1X3JhR7MCr/9Kr/7jX\r\n/762/4pO5mNV/8ym/5JP345Z8fK9zcVY2SuQ/3tL9O66z+a00/+7k7H28r/e/WFl9iWX/8Wg/+q3\r\n0biU/5df681Z1l1s87d612Re+L+a/8au8cKDzsbR/RWo/7yn9qWT/rdcuceJycnJ/5eA/86QxLF0\r\n3OGw1rFZwNZb0s27/6tu4L5fspF6//a/y8LY+/B8ctSXvtqr2ta76M617eevqMKa5p9T0tKm3qCM\r\n/qVp471+06xXxZ5k5/jb0t9cztHB/8Ww/02R5lGJ6eGnrrat/2dX+7/U/0mZ40Wj4Mqg4sViqqRV\r\nzVSB7Fd67sm2/6OC9Vp08ECu3L/K/6uJ8uh1f97B5PHU2NbH//GEY8tlopuH/+TH4LqU6qmc/zu6\r\n2O24oIhf/+rN3NFom9icubKP79lsktyhtK+k/+peyeFxiN7S//rCyadWyjXI0/GNVN1vjJDG+fHN\r\nynqu9abL//20h/ife5bk7NVyobFiylqj/52w+HnLP+kAAABGdFJOUwBnRH8QICD+IP+AMd6f3v7+\r\n397dON6AWYTPvpdj3n+Fi9e/yv2m05d63k1/hd+7pNlD3PW/65P32brk5MfX58+IiN6/v4D1Cm7r\r\n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\r\n\r\n--b2=_W7EDKPvl0A0P0Y4A8gmUytrUyHSFLLzuZVUss3qHs\r\nContent-Type: image/png; name=logo-proton-drive-purple.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <70f890d178eafb927376@drive.proton.me>\r\nContent-Disposition: inline; filename=logo-proton-drive-purple.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAgAAAACECAYAAADmxpMdAAAABGdBTUEAALGPC/xhBQAAACBjSFJN\r\nAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAhGVYSWZNTQAqAAAACAAFARIA\r\nAwAAAAEAAQAAARoABQAAAAEAAABKARsABQAAAAEAAABSASgAAwAAAAEAAgAAh2kABAAAAAEAAABa\r\nAAAAAAAAAEgAAAABAAAASAAAAAEAA6ABAAMAAAABAAEAAKACAAQAAAABAAACAKADAAQAAAABAAAA\r\nhAAAAADxbG/fAAAACXBIWXMAAAsTAAALEwEAmpwYAAABWWlUWHRYTUw6Y29tLmFkb2JlLnhtcAAA\r\nAAAAPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUg\r\nNi4wLjAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIv\r\nMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgog\r\nICAgICAgICAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyI+CiAg\r\nICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgIDwvcmRm\r\nOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgoZXuEHAABAAElEQVR4Aey9\r\nB6BtR1XwP/uW15IQkhAgtERAERGlBkXQRxFIhYAJAvp9FImYQkIR/LDkRBH0A0xIA/LJXwVR4Ekx\r\nlc4DQREIWAhNWiCEkkbKyyu37P/vt2bm3HPPPee+kvfIe2TPe/fsKWvWrFkzs9aasmen1LmOAx0H\r\nOg50HOg40HGg40DHgY4DHQc6DnQc6DjQcaDjQMeBjgMdBzoOdBzoONBxoONAx4GOAx0HOg50HOg4\r\n0HGg40DHgY4DHQc6DnQc6DjQcaDjQMeBjgMdBzoOdBzoONBxoONAx4GOAx0HOg50HOg40HGg40DH\r\ngY4DHQc6DnQc6DjQcaDjQMeBjgMdBzoOdBzoONBxoONAx4GOAx0HOg50HOg40HGg40DHgY4DHQc6\r\n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\r\n\r\n--b2=_W7EDKPvl0A0P0Y4A8gmUytrUyHSFLLzuZVUss3qHs\r\nContent-Type: image/png; name=folder.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <folder-icon-for-sharing-email@drive.proton.me>\r\nContent-Disposition: inline; filename=folder.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAA\r\nAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACHSURBVHgB7dSxDcIwEIXh9w5RuGMGWIQ1vAVM\r\nAFkGWkbIGBQIeYQ0afOSSCmiSIkc6Up/rU+/bBcHOGP7Pj/U8UbitDw06hniv8IObF8XbQ4YPtTx\r\nHuI3wSM4SRKqgzFtDYX4q3ODWYZvqw2OhldcXYOjEizBEswLCg0cmchdC3TVeDE5teZ6jgMkv+hJ\r\n4UEAAAAASUVORK5CYII=\r\n\r\n--b2=_W7EDKPvl0A0P0Y4A8gmUytrUyHSFLLzuZVUss3qHs--','New item shared with you\n\n[Proton Drive](https://drive.proton.me/)\n\nNew item shared with you\n\nBrian Stufflebean (brian@bayfrontcapitalllc.com) shared an item with you:\n\nMavrix Proton\n\nPersonnel\n\n[Accept item](https://drive.proton.me/8VT_4S8vx3fWk6FZLZV1na8WfrptOHw5skPl__dRUuSHkzPvc6fSMxBUbtBwVyxigT4_7npDzBdI4WDLpLr91A==/LTGFoDdYNvWC7gB4Ni-dhktD854CA-wB1EAGV5vLfReMUOi3Dvje4ohGuUUCwdF543qGI0UegWH2xY2qdE_Epw==?invitation=PqGWnza39oZ5oYh_QM86PA&email=rick%40mavrix.one)\n\n© 2024 Proton AG Switzerland\nRoute de la Galaise 32, 1228 Plan-les-Ouates, Geneva, Switzerland',0,0,0,0,0,0,'2025-08-06 00:38:32','2025-12-09 19:27:10','2025-12-09 19:27:10','2025-12-09 19:27:10',NULL,NULL,NULL),
(583,4,'<45824461-2F79-42F0-A3AD-1E5A44EF46BC@bayfrontcapitalllc.com>',NULL,NULL,'Re: Site Meeting of 07/30/2025 Follow Up - NDA','brian@bayfrontcapitalllc.com','Brian Stufflebean','\r\n--Apple-Mail=_F13F3EC9-813C-467F-9D9E-9AF4B9130B5B\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Type: text/html;\r\n	charset=utf-8\r\n\r\n<html><head><meta http-equiv=3D\"content-type\" content=3D\"text/html; =\r\ncharset=3Dutf-8\"></head><body style=3D\"overflow-wrap: break-word; =\r\n-webkit-nbsp-mode: space; line-break: after-white-space;\"><span =\r\nstyle=3D\"font-size: 14px;\">Nathan,</span><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: 14px;\">Should be =\r\nable to make some Thursday, 11:00am - 1:30 is relatively open, let me =\r\nknow if any of this time works for =\r\nyou.</span></div><div><br></div><div><br></div><div><br></div><div>Best =\r\nRegards,&nbsp;<div><div style=3D\"font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; letter-spacing: =\r\nnormal; text-align: start; text-indent: 0px; text-transform: none; =\r\nwhite-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><br><br>Brian C. Stufflebean, CEO<br><b>Bayfront Capital, =\r\nLLC</b><br>(941)545-4153 Direct<br>(866)896-2423 =\r\nFax<br>brian@bayfrontcapitalllc.com<br>www.bayfrontcapitalllc.com<br>&nbsp=\r\n;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br><br></div><span style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"></span><br class=3D\"Apple-interchange-newline\" style=3D\"caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0); font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"><span style=3D\"caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); =\r\nfont-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"></span><span><img alt=3D\"PastedGraphic-3.tiff\" =\r\nsrc=3D\"cid:1316E71A-4E09-4379-B53C-D6EB7DA3C430\"></span><meta =\r\ncharset=3D\"UTF-8\"><div style=3D\"font-family: Helvetica; font-size: 12px; =\r\nfont-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br =\r\nclass=3D\"Apple-interchange-newline\"><br =\r\nclass=3D\"Apple-interchange-newline\"><br></span></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; letter-spacing: normal; text-align: start; =\r\ntext-indent: 0px; text-transform: none; white-space: normal; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><span><b><br></b></span></div><div style=3D\"font-family: Helvetica; =\r\nfont-size: 12px; font-style: normal; font-variant-caps: normal; =\r\nletter-spacing: normal; text-align: start; text-indent: 0px; =\r\ntext-transform: none; white-space: normal; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><b>CONFIDENTIALITY NOTICE / =\r\nNOTICE&nbsp;OF&nbsp;NOT A REGISTERED&nbsp;BROKER/DEALER:</b><span =\r\nstyle=3D\"font-weight: 400;\">&nbsp;Bayfront Capital&nbsp;LLC, nor its=E2=80=\r\n=99 affiliates are registered as&nbsp;a Broker/Dealer, nor registered =\r\nwith&nbsp;FINRA. Nor does&nbsp;it provide tax or&nbsp;investment =\r\nadvice.&nbsp;&nbsp;Any references&nbsp;made to any transaction in =\r\nany&nbsp;communication is being made as a&nbsp;business =\r\nconsultant.&nbsp;&nbsp;&nbsp;This is not a&nbsp;solicitation nor offer =\r\nof any type and any&nbsp;reference to any proposed transaction&nbsp;of =\r\nany type is void where prohibited by&nbsp;law.&nbsp;This =\r\ncommunication&nbsp;is confidential&nbsp;and intended only for the =\r\nintended&nbsp;recipient.&nbsp;&nbsp;If you are not the =\r\nintended&nbsp;recipient, you&nbsp;may not copy, disclose, =\r\nor&nbsp;distribute this message&nbsp;to anyone else;&nbsp;any such =\r\nactions may be unlawful. If&nbsp;you have received this =\r\ncommunication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the =\r\nmessage to&nbsp;inform him or her of the&nbsp;error.</span></div>\r\n</div>\r\n<div><br><blockquote type=3D\"cite\"><div>On Aug 5, 2025, at 3:32=E2=80=AFPM=\r\n, Nathan Staron &lt;Nathan@lithiumbatterycompany.com&gt; wrote:</div><br =\r\nclass=3D\"Apple-interchange-newline\"><div><div dir=3D\"ltr\"><div>Hi =\r\nRick,</div><div><br></div><div>I wanted to see if we could connect =\r\nbefore the end of the week to discuss the next steps moving forward. I =\r\nhave some availability tomorrow, Wednesday, August 6th, as well as on =\r\nThursday, August 7th, or Friday, August 8th. Please let me know if any =\r\nof these times work for you.</div><div><br></div><div><div dir=3D\"ltr\" =\r\nclass=3D\"gmail_signature\" data-smartmail=3D\"gmail_signature\"><div =\r\ndir=3D\"ltr\"><div><br></div><div><table cellpadding=3D\"0\" cellspacing=3D\"0\"=\r\n border=3D\"0\" style=3D\"border: medium; border-collapse: collapse; =\r\nfont-size: 10px; font-family: Inter, sans-serif;\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;line-height:16px\"><table =\r\ncellpadding=3D\"0\" cellspacing=3D\"0\" style=3D\"border:none\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td valign=3D\"top\" =\r\nalign=3D\"left\" style=3D\"border:1px solid =\r\nrgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px =\r\n8px 8px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://lithiumbatterycompany.com/\" target=3D\"_blank\"><img =\r\nalt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/web-icon=\r\n.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.instagram.com/lithiumbatteryco/\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/insta-ic=\r\non.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.linkedin.com/company/the-lithium-battery-company\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/linkedin=\r\n-icon.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.facebook.com/LithiumBatteryCompany/\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/facebook=\r\n-icon.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.youtube.com/c/LithiumBatteryCompany\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/youtube-=\r\nicon.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr></tbody></table></td><td =\r\nwidth=3D\"8\" =\r\nstyle=3D\"border:none;border-collapse:collapse;display:revert\">&nbsp;</td><=\r\ntd valign=3D\"top\" align=3D\"left\" style=3D\"border:1px solid =\r\nrgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\">=\r\n<table width=3D\"100%\" border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td align=3D\"left\" =\r\nvalign=3D\"middle\" style=3D\"border:none;border-collapse:collapse\"><table =\r\nwidth=3D\"100%\" border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><a =\r\nhref=3D\"https://lithiumbatterycompany.com/\" target=3D\"_blank\"><img =\r\nsrc=3D\"https://app.customesignature.com/upload/signature/11122/11122.png\" =\r\nwidth=3D\"170\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:0px 0px =\r\n10px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:15px 0px =\r\n0px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td align=3D\"left\" =\r\nvalign=3D\"middle\" style=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:20px\">NATHAN A. =\r\nSTARON</span></td><td align=3D\"left\" valign=3D\"middle\" =\r\nstyle=3D\"border:none;border-collapse:collapse;padding-left:5px\"><img =\r\nwidth=3D\"15\" height=3D\"15\" =\r\nsrc=3D\"https://app.customesignature.com/images/verify.gif\" =\r\nstyle=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-size:12px\">Founder / =\r\nCEO</span></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Lithium Battery =\r\nCompany</span></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Cell Phone</span>&nbsp;<a =\r\nhref=3D\"tel:813-504-0074\" style=3D\"font-size: 12px;\" =\r\ntarget=3D\"_blank\">813-504-0074</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Phone</span>&nbsp;<a =\r\nhref=3D\"tel:844-GET-LITHIUM\" style=3D\"font-size: 12px;\" =\r\ntarget=3D\"_blank\">844-GET-LITHIUM</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><a =\r\nhref=3D\"mailto:Nathan@lithiumbatterycompany.com\" style=3D\"\" =\r\ntarget=3D\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px =\r\n0px\"><table cellpadding=3D\"0\" cellspacing=3D\"0\" border=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;display:flex;font-weight:bol=\r\nd\"><a href=3D\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" =\r\nstyle=3D\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px =\r\n15px;text-align:center;font-size:12px;line-height:14px;display:inline-bloc=\r\nk\" target=3D\"_blank\">Schedule A =\r\nZoom</a></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><table cellpadding=3D\"0\" =\r\ncellspacing=3D\"0\" border=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"></tr></tbody></table></td><=\r\n/tr></tbody></table></td><td align=3D\"left\" valign=3D\"middle\" =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:0px 0px 0px =\r\n15px;display:revert\"><div style=3D\"max-height:0px;overflow:visible\"><img =\r\nsrc=3D\"https://app.customesignature.com/upload/signature/profile/173870830=\r\n7-11122.jpg\" width=3D\"140\" style=3D\"display:block;border-radius:10px\" =\r\ndata-unique-identifier=3D\"\"></div><img =\r\nsrc=3D\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gi=\r\nf\" name=3D\"SignatureSanitizer_profile_annimation_gif\" width=3D\"140\" =\r\nstyle=3D\"display:block;border-radius:10px\" =\r\ndata-unique-identifier=3D\"\"></td></tr></tbody></table></td></tr></tbody></=\r\ntable></td></tr><tr style=3D\"border:none;border-collapse:collapse\"><td =\r\nalign=3D\"left\" valign=3D\"top\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><table border=3D\"0\" =\r\ncellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"></tr></tbody></table></td><=\r\n/tr><tr style=3D\"border:none;border-collapse:collapse\"></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:10px 0px =\r\n0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><b=\r\nr><div class=3D\"gmail_quote gmail_quote_container\"><div dir=3D\"ltr\" =\r\nclass=3D\"gmail_attr\">On Tue, Aug 5, 2025 at 1:46=E2=80=AFPM Rick =\r\n&lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=3D\"gmail_quote\" =\r\nstyle=3D\"margin:0px 0px 0px 0.8ex;border-left:1px solid =\r\nrgb(204,204,204);padding-left:1ex\">\r\n    <div id=3D\"m_-1718545688046114632bloop_customfont\" =\r\nstyle=3D\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">See =\r\nattached executed NDA.</div><div =\r\nid=3D\"m_-1718545688046114632bloop_customfont\" =\r\nstyle=3D\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thanks,</d=\r\niv><div id=3D\"m_-1718545688046114632bloop_customfont\" =\r\nstyle=3D\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Rick</div>=\r\n <br> <div id=3D\"m_-1718545688046114632bloop_sign_1754415861380096000\">\r\n       =20\r\n    =20\r\n    <br>\r\n    =20\r\n<div><span style=3D\"font-family:Helvetica,Arial\">Rick Mislan, =\r\nPhD,&nbsp;</span><div style=3D\"font-family:Helvetica,Arial\">Founder, =\r\nCTO</div><div style=3D\"font-family:Helvetica,Arial\"><img =\r\nstyle=3D\"max-width: 99%;\" data-unique-identifier=3D\"\"><br></div><div =\r\nstyle=3D\"font-family:Helvetica,Arial\"><a href=3D\"http://mavrix1.com/\" =\r\ntarget=3D\"_blank\">mavrix1.com</a></div></div><div><br></div></div> =\r\n<br><p>On August 5, 2025 at 12:07:37=E2=80=AFPM, Jarrett Brownfield (<a =\r\nhref=3D\"mailto:jarrett@lithiumbatterycompany.com\" =\r\ntarget=3D\"_blank\">jarrett@lithiumbatterycompany.com</a>) wrote:</p> =\r\n<blockquote type=3D\"cite\"><span><div dir=3D\"ltr\"><div></div><div>\r\n\r\n\r\n\r\n\r\n\r\n<div style=3D\"font-family: Aptos, Aptos_EmbeddedFont, =\r\nAptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt;\">\r\nHi Brian &amp; Rick,&nbsp;</div>\r\n<div style=3D\"font-family: Aptos, Aptos_EmbeddedFont, =\r\nAptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt;\">\r\n<br>\r\n</div>\r\n<div style=3D\"font-family: Aptos, Aptos_EmbeddedFont, =\r\nAptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt;\">\r\nPlease find attached my partially executed version of the NDA for your =\r\nreview. When available, please send back the fully executed NDAs for our =\r\nrecords. Thanks</div>\r\n<div id=3D\"m_-1718545688046114632Signature\">\r\n<div style=3D\"font-family: Aptos, Aptos_EmbeddedFont, =\r\nAptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt;\">\r\n<br>\r\n</div><div style=3D\"text-align: left; text-indent: 0px; =\r\nbackground-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=3D\"font-family: Arial, sans-serif, serif, EmojiFont; =\r\nfont-size: 11pt;\"><b>Jarrett Brownfield&nbsp;</b></span></div><div =\r\nstyle=3D\"text-align: left; text-indent: 0px; background-color: rgb(255, =\r\n255, 255); margin: 0in;\">\r\n<span style=3D\"font-family: Arial, sans-serif, serif, EmojiFont; =\r\nfont-size: 10pt; background-color: white;\">Partner\r\n</span><span style=3D\"font-family: Arial, sans-serif, serif, EmojiFont; =\r\nfont-size: 10pt;\">I Chief Financial Officer</span></div><div =\r\nstyle=3D\"text-align: left; text-indent: 0px; background-color: rgb(255, =\r\n255, 255); margin: 0in;\">\r\n<span style=3D\"font-family: Arial, sans-serif, serif, EmojiFont; =\r\nfont-size: 10pt;\">Lithium Battery Company</span></div><div =\r\nstyle=3D\"text-align: left; text-indent: 0px; background-color: rgb(255, =\r\n255, 255); margin: 0in;\">\r\n<span style=3D\"font-family: Arial, sans-serif, serif, EmojiFont; =\r\nfont-size: 10pt;\">Direct: (812) 552-6854</span></div><div =\r\nstyle=3D\"text-align: left; text-indent: 0px; background-color: rgb(255, =\r\n255, 255); margin: 0in;\">\r\n<span =\r\nstyle=3D\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:=\r\nrgb(0,36,81)\"><u><a style=3D\"color:rgb(0,36,81);margin:0px\" =\r\ntitle=3D\"mailto:Jarrett.brownfield@trackmastermobility.com\" =\r\nid=3D\"m_-1718545688046114632OWAaa9e88f7-72a4-9ae1-f90b-7b52ec482c95\" =\r\nhref=3D\"mailto:Jarrett.brownfield@trackmastermobility.com\" =\r\ntarget=3D\"_blank\">Jarrett@</a>lithiumbatterycompany<a =\r\nstyle=3D\"color:rgb(0,36,81);margin:0px\" =\r\ntitle=3D\"mailto:Jarrett.brownfield@trackmastermobility.com\" =\r\nid=3D\"m_-1718545688046114632OWA052818ee-dd04-af5e-e3f2-200a51798534\" =\r\nhref=3D\"mailto:Jarrett.brownfield@trackmastermobility.com\" =\r\ntarget=3D\"_blank\">.com</a></u></span></div><div style=3D\"text-align: =\r\nleft; text-indent: 0px; background-color: rgb(255, 255, 255); margin: =\r\n0in;\">\r\n<span =\r\nstyle=3D\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:=\r\nrgb(0,36,81)\"><u><a style=3D\"color:rgb(0,36,81);margin:0px\" =\r\ntitle=3D\"https://lithiumbatterycompany.com/\" =\r\nid=3D\"m_-1718545688046114632OWA02113226-56f7-4e1d-3ed0-64eeb4a97441\" =\r\nhref=3D\"https://lithiumbatterycompany.com/\" target=3D\"_blank\">Lithium\r\n Battery Company</a></u></span></div>\r\n</div>\r\n<div id=3D\"m_-1718545688046114632appendonsend\"></div>\r\n<hr style=3D\"display:inline-block;width:98%\">\r\n<div id=3D\"m_-1718545688046114632divRplyFwdMsg\" dir=3D\"ltr\"><font =\r\nface=3D\"Calibri, sans-serif\" style=3D\"font-size:11pt\"><b>From:</b> =\r\nJordan Wroblewski &lt;<a href=3D\"mailto:jordan@lithiumbatterycompany.com\" =\r\ntarget=3D\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Saturday, August 2, 2025 6:26 PM<br>\r\n<b>To:</b> Brian Stufflebean &lt;<a =\r\nhref=3D\"mailto:brian@bayfrontcapitalllc.com\" =\r\ntarget=3D\"_blank\">brian@bayfrontcapitalllc.com</a>&gt;<br>\r\n<b>Cc:</b> Nathan A. Staron &lt;<a =\r\nhref=3D\"mailto:Nathan@lithiumbatterycompany.com\" =\r\ntarget=3D\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt;; Jarrett =\r\nBrownfield &lt;<a href=3D\"mailto:jarrett@lithiumbatterycompany.com\" =\r\ntarget=3D\"_blank\">jarrett@lithiumbatterycompany.com</a>&gt;; Rick Mislan =\r\n&lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Site Meeting of 07/30/2025 Follow Up - NDA</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div dir=3D\"ltr\">\r\n<div>Hello Brian,</div>\r\n<div><br>\r\n</div>\r\n<div>Please see attached my&nbsp;signed NDA.&nbsp;</div>\r\n<div><br>\r\n</div>\r\n<div>Best&nbsp;Regards,&nbsp;</div>\r\n<div>\r\n<div dir=3D\"ltr\">\r\n<div dir=3D\"ltr\"><div style=3D\"margin: 0in;\"><span style=3D\"font-family: =\r\nArial, sans-serif;\"><br>\r\n</span></div><div style=3D\"margin: 0in;\"><span style=3D\"font-family: =\r\nArial, sans-serif;\">Jordan G. Wroblewski</span></div><div style=3D\"margin:=\r\n 0in;\"><span style=3D\"font-family: Arial, sans-serif; font-size: =\r\n9pt;\">Partner | President&nbsp;<br>\r\n</span></div><div style=3D\"margin: 0in;\"><span style=3D\"font-family: =\r\nArial, sans-serif; font-size: 10pt;\">Lithium Battery =\r\nCompany</span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif; font-size: 10pt;\">Direct: (917) =\r\n266-5336<br>\r\n</span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<=\r\na href=3D\"mailto:Jarrett.brownfield@trackmastermobility.com\" =\r\nstyle=3D\"color:blue;margin:0px\" =\r\ntarget=3D\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div =\r\nstyle=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><=\r\na href=3D\"http://lithiumbatterycompany.com/\" target=3D\"_blank\">Lithium =\r\nBattery Company</a></span></div>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n</div>\r\n<br>\r\n<div>\r\n<div dir=3D\"ltr\">On Sat, Aug 2, 2025 at 11:42=E2=80=AFAM Brian =\r\nStufflebean &lt;<a href=3D\"mailto:brian@bayfrontcapitalllc.com\" =\r\ntarget=3D\"_blank\">brian@bayfrontcapitalllc.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=3D\"margin:0px 0px 0px 0.8ex;border-left:1px solid =\r\nrgb(204,204,204);padding-left:1ex\">\r\n<div><span style=3D\"font-size:14px\">Jarrett, Nathan and Jordan,</span>\r\n<div><span style=3D\"font-size:14px\"><br>\r\n</span></div>\r\n<div><span style=3D\"font-size:14px\"><br>\r\n</span></div>\r\n<div><span style=3D\"font-size:14px\">It was a pleasure to have the =\r\nopportunity to meet all three of you at your new site this past =\r\nweek.&nbsp; In following up from our meeting I have attached an NDA from =\r\nMavrix 1 LLC for your review and execution. Each of you should\r\n execute a copy as Senior Officers of the Company.&nbsp;</span></div>\r\n<div><span style=3D\"font-size:14px\"><br>\r\n</span></div>\r\n<div><span style=3D\"font-size:14px\">I will also be setting up a =\r\ndiligence folder on Proton for you to be able to upload diligence files =\r\nfor our review.&nbsp; Recognizing your very tight deadlines, we will =\r\nattempt to move diligently along with reviews.&nbsp; Please don=E2=80=99t\r\n hesitate to text or contact me if you have any difficulties in getting =\r\ninto the Proton folder. &nbsp;</span></div>\r\n<div><span style=3D\"font-size:14px\"><br>\r\n</span></div>\r\n<div><span style=3D\"font-size:14px\"><b>FYI </b>- you will each receive =\r\nan email invitation to join/accept the folder prior to being to gaining =\r\naccess.&nbsp;</span></div>\r\n<div><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div></div>\r\n</div>\r\n<div>\r\n<div></div>\r\n<div><br>\r\n<div>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; letter-spacing: normal; text-align: =\r\nstart; text-indent: 0px; text-transform: none; white-space: normal; =\r\nword-spacing: 0px; text-decoration: none;\">\r\nBest Regards,&nbsp;<br>\r\n<br>\r\n<br>\r\nBrian C. Stufflebean, CEO<br>\r\n<b>Bayfront Capital, LLC</b><br>\r\n(941)545-4153 Direct<br>\r\n(866)896-2423 Fax<br>\r\n<a href=3D\"mailto:brian@bayfrontcapitalllc.com\" =\r\ntarget=3D\"_blank\">brian@bayfrontcapitalllc.com</a><br>\r\n<a href=3D\"http://www.bayfrontcapitalllc.com/\" =\r\ntarget=3D\"_blank\">www.bayfrontcapitalllc.com</a><br>\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>\r\n<br>\r\n</div>\r\n<span style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; text-align: start; text-indent: 0px; text-transform: none; =\r\nwhite-space: normal; word-spacing: 0px; text-decoration: =\r\nnone;\"></span><br style=3D\"font-family: Helvetica; font-size: 12px; =\r\nfont-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; text-align: start; text-indent: 0px; =\r\ntext-transform: none; white-space: normal; word-spacing: 0px; =\r\ntext-decoration: none;\">\r\n<span style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; text-align: start; text-indent: 0px; text-transform: none; =\r\nwhite-space: normal; word-spacing: 0px; text-decoration: =\r\nnone;\"></span><span></span></div>\r\n</div>\r\n</div>\r\n<div>\r\n<div>\r\n<div><span></span>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; text-align: start; text-indent: 0px; text-transform: none; =\r\nwhite-space: normal; word-spacing: 0px; text-decoration: none;\">\r\n<span><br>\r\n<br>\r\n<br>\r\n</span></div>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; text-align: start; text-indent: 0px; text-transform: none; =\r\nwhite-space: normal; word-spacing: 0px; text-decoration: none;\">\r\n<span><br>\r\n</span></div>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; text-align: start; text-indent: 0px; text-transform: none; =\r\nwhite-space: normal; word-spacing: 0px; text-decoration: none;\">\r\n<span><br>\r\n</span></div>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; text-align: start; text-indent: 0px; text-transform: none; =\r\nwhite-space: normal; word-spacing: 0px; text-decoration: none;\">\r\n<span><br>\r\n</span></div>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; text-align: start; text-indent: 0px; text-transform: none; =\r\nwhite-space: normal; word-spacing: 0px; text-decoration: none;\">\r\n<span><br>\r\n</span></div>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; text-align: start; text-indent: 0px; text-transform: none; =\r\nwhite-space: normal; word-spacing: 0px; text-decoration: none;\">\r\n<span><br>\r\n</span></div>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; letter-spacing: normal; text-align: =\r\nstart; text-indent: 0px; text-transform: none; white-space: normal; =\r\nword-spacing: 0px; text-decoration: none;\">\r\n<b>CONFIDENTIALITY NOTICE / NOTICE&nbsp;OF&nbsp;NOT A =\r\nREGISTERED&nbsp;BROKER/DEALER:</b><span =\r\nstyle=3D\"font-weight:400\">&nbsp;Bayfront Capital&nbsp;LLC, nor its=E2=80=99=\r\n affiliates are registered as&nbsp;a Broker/Dealer, nor registered =\r\nwith&nbsp;FINRA. Nor does&nbsp;it provide tax or&nbsp;investment =\r\nadvice.&nbsp;&nbsp;Any\r\n references&nbsp;made to any transaction in any&nbsp;communication is =\r\nbeing made as a&nbsp;business consultant.&nbsp;&nbsp;&nbsp;This is not =\r\na&nbsp;solicitation nor offer of any type and any&nbsp;reference to any =\r\nproposed transaction&nbsp;of any type is void where prohibited =\r\nby&nbsp;law.&nbsp;This communication&nbsp;is\r\n confidential&nbsp;and intended only for the =\r\nintended&nbsp;recipient.&nbsp;&nbsp;If you are not the =\r\nintended&nbsp;recipient, you&nbsp;may not copy, disclose, =\r\nor&nbsp;distribute this message&nbsp;to anyone else;&nbsp;any such =\r\nactions may be unlawful. If&nbsp;you have received this =\r\ncommunication&nbsp;in error,&nbsp;please\r\n contact the sender of&nbsp;the message to&nbsp;inform him or her of =\r\nthe&nbsp;error.</span></div>\r\n</div>\r\n<br>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n\r\n\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div>\r\n</div></blockquote></div><br></div></body></html>=\r\n\r\n--Apple-Mail=_F13F3EC9-813C-467F-9D9E-9AF4B9130B5B\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=PastedGraphic-3.tiff\r\nContent-Type: image/tiff;\r\n	name=\"PastedGraphic-3.tiff\"\r\nContent-Id: <1316E71A-4E09-4379-B53C-D6EB7DA3C430>\r\n\r\n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\r\nZmlGSQAAACgAAAR8cGxQTAAAACwAAASkcnVSVQAAACIAAATQYXJFRwAAACYAAATyZW5VUwAAACYA\r\nAAUYZGFESwAAAC4AAAU+AFYBYQBlAG8AYgBlAGMAbgD9ACAAUgBHAEIAIABwAHIAbwBmAGkAbABH\r\nAGUAbgBlAHIAaQENAGsAaQAgAFIARwBCACAAcAByAG8AZgBpAGwAUABlAHIAZgBpAGwAIABSAEcA\r\nQgAgAGcAZQBuAOgAcgBpAGMAUABlAHIAZgBpAGwAIABSAEcAQgAgAEcAZQBuAOkAcgBpAGMAbwQX\r\nBDAEMwQwBDsETAQ9BDgEOQAgBD8EQAQ+BEQEMAQ5BDsAIABSAEcAQgBQAHIAbwBmAGkAbAAgAGcA\r\n6QBuAOkAcgBpAHEAdQBlACAAUgBWAEKQGnUoACAAUgBHAEIAIIJyX2ljz4/wAFAAcgBvAGYAaQBs\r\nAG8AIABSAEcAQgAgAGcAZQBuAGUAcgBpAGMAbwBHAGUAbgBlAHIAaQBzAGsAIABSAEcAQgAtAHAA\r\ncgBvAGYAaQBsx3y8GAAgAFIARwBCACDVBLhc0wzHfABPAGIAZQBjAG4A/QAgAFIARwBCACAAcABy\r\nAG8AZgBpAGwF5AXoBdUF5AXZBdwAIABSAEcAQgAgBdsF3AXcBdkAQQBsAGwAZwBlAG0AZQBpAG4A\r\nZQBzACAAUgBHAEIALQBQAHIAbwBmAGkAbADBAGwAdABhAGwA4QBuAG8AcwAgAFIARwBCACAAcABy\r\nAG8AZgBpAGxmbpAaACAAUgBHAEIAIGPPj/Blh072TgCCLAAgAFIARwBCACAw1zDtMNUwoTCkMOsA\r\nUAByAG8AZgBpAGwAIABSAEcAQgAgAGcAZQBuAGUAcgBpAGMDkwO1A70DuQO6A8wAIAPAA8EDvwPG\r\nA68DuwAgAFIARwBCAFAAZQByAGYAaQBsACAAUgBHAEIAIABnAGUAbgDpAHIAaQBjAG8AQQBsAGcA\r\nZQBtAGUAZQBuACAAUgBHAEIALQBwAHIAbwBmAGkAZQBsDkIOGw4jDkQOHw4lDkwAIABSAEcAQgAg\r\nDhcOMQ5IDicORA4bAEcAZQBuAGUAbAAgAFIARwBCACAAUAByAG8AZgBpAGwAaQBZAGwAZQBpAG4A\r\nZQBuACAAUgBHAEIALQBwAHIAbwBmAGkAaQBsAGkAVQBuAGkAdwBlAHIAcwBhAGwAbgB5ACAAcABy\r\nAG8AZgBpAGwAIABSAEcAQgQeBDEESQQ4BDkAIAQ/BEAEPgREBDgEOwRMACAAUgBHAEIGRQZEBkEA\r\nIAYqBjkGMQZKBkEAIABSAEcAQgAgBicGRAY5BicGRQBHAGUAbgBlAHIAaQBjACAAUgBHAEIAIABQ\r\nAHIAbwBmAGkAbABlAEcAZQBuAGUAcgBlAGwAIABSAEcAQgAtAGIAZQBzAGsAcgBpAHYAZQBsAHMA\r\nZXRleHQAAAAAQ29weXJpZ2h0IDIwMDcgQXBwbGUgSW5jLiwgYWxsIHJpZ2h0cyByZXNlcnZlZC4A\r\nWFlaIAAAAAAAAPNSAAEAAAABFs9YWVogAAAAAAAAdE0AAD3uAAAD0FhZWiAAAAAAAABadQAArHMA\r\nABc0WFlaIAAAAAAAACgaAAAVnwAAuDZjdXJ2AAAAAAAAAAEBzQAAc2YzMgAAAAAAAQxCAAAF3v//\r\n8yYAAAeSAAD9kf//+6L///2jAAAD3AAAwGw=\r\n--Apple-Mail=_F13F3EC9-813C-467F-9D9E-9AF4B9130B5B--','Nathan,\r\n\r\nShould be able to make some Thursday, 11:00am - 1:30 is relatively open, let me know if any of this time works for you.\r\n\r\n\r\n\r\nBest Regards, \r\n\r\n\r\nBrian C. Stufflebean, CEO\r\nBayfront Capital, LLC\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\nbrian@bayfrontcapitalllc.com\r\nwww.bayfrontcapitalllc.com\r\n      \r\n\r\n\r\n￼\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER: Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.\r\n\r\n> On Aug 5, 2025, at 3:32 PM, Nathan Staron <Nathan@lithiumbatterycompany.com> wrote:\r\n> \r\n> Hi Rick,\r\n> \r\n> I wanted to see if we could connect before the end of the week to discuss the next steps moving forward. I have some availability tomorrow, Wednesday, August 6th, as well as on Thursday, August 7th, or Friday, August 8th. Please let me know if any of these times work for you.\r\n> \r\n> \r\n>  <https://lithiumbatterycompany.com/>\r\n>  <https://www.instagram.com/lithiumbatteryco/>\r\n>  <https://www.linkedin.com/company/the-lithium-battery-company>\r\n>  <https://www.facebook.com/LithiumBatteryCompany/>\r\n>  <https://www.youtube.com/c/LithiumBatteryCompany>	 	\r\n>  <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON	\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074 <tel:813-504-0074>\r\n> Phone 844-GET-LITHIUM <tel:844-GET-LITHIUM>\r\n> Nathan@lithiumbatterycompany.com <mailto:Nathan@lithiumbatterycompany.com>\r\n> Schedule A Zoom\r\n>  <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n> \r\n> \r\n> \r\n> On Tue, Aug 5, 2025 at 1:46 PM Rick <rick@mavrix.one> wrote:\r\n>> See attached executed NDA.\r\n>> Thanks,\r\n>> Rick\r\n>> \r\n>> \r\n>> Rick Mislan, PhD, \r\n>> Founder, CTO\r\n>> \r\n>> mavrix1.com <http://mavrix1.com/>\r\n>> \r\n>> \r\n>> On August 5, 2025 at 12:07:37 PM, Jarrett Brownfield (jarrett@lithiumbatterycompany.com <mailto:jarrett@lithiumbatterycompany.com>) wrote:\r\n>> \r\n>>> Hi Brian & Rick, \r\n>>> \r\n>>> Please find attached my partially executed version of the NDA for your review. When available, please send back the fully executed NDAs for our records. Thanks\r\n>>> \r\n>>> Jarrett Brownfield \r\n>>> Partner I Chief Financial Officer\r\n>>> Lithium Battery Company\r\n>>> Direct: (812) 552-6854\r\n>>> Jarrett@ <mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com <mailto:Jarrett.brownfield@trackmastermobility.com>\r\n>>> Lithium Battery Company <https://lithiumbatterycompany.com/>\r\n>>> From: Jordan Wroblewski <jordan@lithiumbatterycompany.com <mailto:jordan@lithiumbatterycompany.com>>\r\n>>> Sent: Saturday, August 2, 2025 6:26 PM\r\n>>> To: Brian Stufflebean <brian@bayfrontcapitalllc.com <mailto:brian@bayfrontcapitalllc.com>>\r\n>>> Cc: Nathan A. Staron <Nathan@lithiumbatterycompany.com <mailto:Nathan@lithiumbatterycompany.com>>; Jarrett Brownfield <jarrett@lithiumbatterycompany.com <mailto:jarrett@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\n>>> Subject: Re: Site Meeting of 07/30/2025 Follow Up - NDA\r\n>>>  \r\n>>> Hello Brian,\r\n>>> \r\n>>> Please see attached my signed NDA. \r\n>>> \r\n>>> Best Regards, \r\n>>> \r\n>>> Jordan G. Wroblewski\r\n>>> Partner | President \r\n>>> Lithium Battery Company\r\n>>> Direct: (917) 266-5336\r\n>>> jordan@lithiumbatterycompany.com <mailto:Jarrett.brownfield@trackmastermobility.com>\r\n>>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n>>> \r\n>>> On Sat, Aug 2, 2025 at 11:42 AM Brian Stufflebean <brian@bayfrontcapitalllc.com <mailto:brian@bayfrontcapitalllc.com>> wrote:\r\n>>> Jarrett, Nathan and Jordan,\r\n>>> \r\n>>> \r\n>>> It was a pleasure to have the opportunity to meet all three of you at your new site this past week.  In following up from our meeting I have attached an NDA from Mavrix 1 LLC for your review and execution. Each of you should execute a copy as Senior Officers of the Company. \r\n>>> \r\n>>> I will also be setting up a diligence folder on Proton for you to be able to upload diligence files for our review.  Recognizing your very tight deadlines, we will attempt to move diligently along with reviews.  Please don’t hesitate to text or contact me if you have any difficulties in getting into the Proton folder.  \r\n>>> \r\n>>> FYI - you will each receive an email invitation to join/accept the folder prior to being to gaining access. \r\n>>> \r\n>>> \r\n>>> \r\n>>> Best Regards, \r\n>>> \r\n>>> \r\n>>> Brian C. Stufflebean, CEO\r\n>>> Bayfront Capital, LLC\r\n>>> (941)545-4153 Direct\r\n>>> (866)896-2423 Fax\r\n>>> brian@bayfrontcapitalllc.com <mailto:brian@bayfrontcapitalllc.com>\r\n>>> www.bayfrontcapitalllc.com <http://www.bayfrontcapitalllc.com/>\r\n>>>       \r\n>>> \r\n>>> \r\n>>> \r\n>>> \r\n>>> \r\n>>> \r\n>>> \r\n>>> \r\n>>> \r\n>>> \r\n>>> CONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER: Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.\r\n>>> ',0,0,0,0,0,0,'2025-08-06 00:47:09','2025-12-09 19:27:10','2025-12-09 19:27:10','2025-12-09 19:27:10',NULL,NULL,NULL),
(584,4,'<CAGOCFXjHwadEFN+Nfutaux-aH_TO3jzB6cgZj3PcQ4MvBDAQXQ@mail.gmail.com>',NULL,NULL,'Re: Site Meeting of 07/30/2025 Follow Up - NDA','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"auto\">Hi Brian</div><div dir=\"auto\"><br></div><div dir=\"auto\">Thursday at 11am works for me.  I can have Nick send you a calendar invite for zoom tomorrow morning.  Thank you!<br clear=\"all\"><br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-size:10px;font-family:Inter,sans-serif;color:rgb(0,0,0)\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;line-height:16px;font-family:Inter,sans-serif\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:medium;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px;font-family:Inter,sans-serif\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:medium;border-collapse:collapse;display:revert;font-family:Inter,sans-serif\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px;font-family:Inter,sans-serif\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td align=\"left\" valign=\"middle\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:0px 0px 10px;font-family:Inter,sans-serif\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:15px 0px 0px;font-family:Inter,sans-serif\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td align=\"left\" valign=\"middle\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-weight:bold;font-size:20px;font-family:Inter,sans-serif\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:medium;border-collapse:collapse;padding-left:5px;font-family:Inter,sans-serif\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block; font-family: Inter, sans-serif;\"></td></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-size:12px;font-family:Inter,sans-serif\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-weight:bold;font-size:12px;font-family:Inter,sans-serif\">Lithium Battery Company</span></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-weight:bold;font-size:12px;font-family:Inter,sans-serif\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"font-size:12px;font-family:Inter,sans-serif;color:rgb(0,0,0)\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-weight:bold;font-size:12px;font-family:Inter,sans-serif\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"font-size:12px;font-family:Inter,sans-serif;color:rgb(0,0,0)\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"font-family:Inter,sans-serif;color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;display:flex;font-weight:bold;font-family:Inter,sans-serif\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:0% 0% repeat rgb(0,0,0);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block;font-family:Inter,sans-serif;color:rgb(255,255,255)\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:medium;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert;font-family:Inter,sans-serif\"><div style=\"max-height:0px;overflow:visible;font-family:Inter,sans-serif\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px; font-family: Inter, sans-serif;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px; font-family: Inter, sans-serif;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td align=\"left\" valign=\"top\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:10px 0px 0px;font-family:Inter,sans-serif\"><a style=\"font-family:Inter,sans-serif\"></a></td></tr></tbody></table></div></div></div></div></div><div><br></div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Aug 5, 2025 at 8:47 PM Brian Stufflebean &lt;<a href=\"mailto:brian@bayfrontcapitalllc.com\">brian@bayfrontcapitalllc.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;padding-left:1ex;border-left-color:rgb(204,204,204)\"><div style=\"line-break:after-white-space\"><span style=\"font-size:14px\">Nathan,</span><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Should be able to make some Thursday, 11:00am - 1:30 is relatively open, let me know if any of this time works for you.</span></div><div><br></div><div><br></div><div><br></div><div>Best Regards, <div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><br>Brian C. Stufflebean, CEO<br><b style=\"font-family:Helvetica\">Bayfront Capital, LLC</b><br>(941)545-4153 Direct<br>(866)896-2423 Fax<br><a href=\"mailto:brian@bayfrontcapitalllc.com\" target=\"_blank\" style=\"font-family:Helvetica\">brian@bayfrontcapitalllc.com</a><br><a href=\"http://www.bayfrontcapitalllc.com\" target=\"_blank\" style=\"font-family:Helvetica\">www.bayfrontcapitalllc.com</a><br>      <br><br></div><span style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"></span><br style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><span style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"></span><span><img alt=\"PastedGraphic-3.tiff\" src=\"cid:ii_1987cda966013dd1b6a1\" style=\"width:113px;max-width:100%\"></span></div></div></div><div style=\"line-break:after-white-space\"><div><div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span style=\"font-family:Helvetica\"><br><br><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span style=\"font-family:Helvetica\"><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span style=\"font-family:Helvetica\"><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span style=\"font-family:Helvetica\"><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span style=\"font-family:Helvetica\"><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span style=\"font-family:Helvetica\"><b style=\"font-family:Helvetica\"><br></b></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><b style=\"font-family:Helvetica\">CONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER:</b><span style=\"font-weight:400;font-family:Helvetica\"> Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.</span></div>\r\n</div>\r\n<div><br><blockquote type=\"cite\"><div>On Aug 5, 2025, at 3:32 PM, Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:</div><br><div><div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>I wanted to see if we could connect before the end of the week to discuss the next steps moving forward. I have some availability tomorrow, Wednesday, August 6th, as well as on Thursday, August 7th, or Friday, August 8th. Please let me know if any of these times work for you.</div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-size:10px;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;line-height:16px;font-family:Inter,sans-serif\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:medium;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px;font-family:Inter,sans-serif\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:medium;border-collapse:collapse;display:revert;font-family:Inter,sans-serif\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px;font-family:Inter,sans-serif\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td align=\"left\" valign=\"middle\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:0px 0px 10px;font-family:Inter,sans-serif\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:15px 0px 0px;font-family:Inter,sans-serif\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td align=\"left\" valign=\"middle\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-weight:bold;font-size:20px;font-family:Inter,sans-serif\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:medium;border-collapse:collapse;padding-left:5px;font-family:Inter,sans-serif\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block; font-family: Inter, sans-serif;\"></td></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-size:12px;font-family:Inter,sans-serif\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-weight:bold;font-size:12px;font-family:Inter,sans-serif\">Lithium Battery Company</span></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-weight:bold;font-size:12px;font-family:Inter,sans-serif\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"font-size:12px;font-family:Inter,sans-serif\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-weight:bold;font-size:12px;font-family:Inter,sans-serif\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"font-size:12px;font-family:Inter,sans-serif\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\" style=\"font-family:Inter,sans-serif\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;display:flex;font-weight:bold;font-family:Inter,sans-serif\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:0% 0% repeat rgb(0,0,0);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block;font-family:Inter,sans-serif;color:rgb(255,255,255)\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:medium;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert;font-family:Inter,sans-serif\"><div style=\"max-height:0px;overflow:visible;font-family:Inter,sans-serif\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px; font-family: Inter, sans-serif;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_-7295459412041981803_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px; font-family: Inter, sans-serif;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td align=\"left\" valign=\"top\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:10px 0px 0px;font-family:Inter,sans-serif\"><a style=\"font-family:Inter,sans-serif\"></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Aug 5, 2025 at 1:46 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;padding-left:1ex;border-left-color:rgb(204,204,204)\">\r\n    <div id=\"m_-7295459412041981803m_-1718545688046114632bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">See attached executed NDA.</div><div id=\"m_-7295459412041981803m_-1718545688046114632bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thanks,</div><div id=\"m_-7295459412041981803m_-1718545688046114632bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Rick</div> <br> <div id=\"m_-7295459412041981803m_-1718545688046114632bloop_sign_1754415861380096000\">\r\n        \r\n     \r\n    <br>\r\n     \r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD, </span><div style=\"font-family:Helvetica,Arial\">Founder, CTO</div><div style=\"font-family:Helvetica,Arial\"><img style=\"max-width: 99%; font-family: Helvetica, Arial;\"><br></div><div style=\"font-family:Helvetica,Arial\"><a href=\"http://mavrix1.com/\" target=\"_blank\" style=\"font-family:Helvetica,Arial\">mavrix1.com</a></div></div><div><br></div></div> <br><p>On August 5, 2025 at 12:07:37 PM, Jarrett Brownfield (<a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div dir=\"ltr\"><div></div><div>\r\n\r\n\r\n\r\n\r\n\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt\">\r\nHi Brian &amp; Rick, </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt\">\r\nPlease find attached my partially executed version of the NDA for your review. When available, please send back the fully executed NDAs for our records. Thanks</div>\r\n<div id=\"m_-7295459412041981803m_-1718545688046114632Signature\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt\">\r\n<br>\r\n</div><div style=\"text-align:left;text-indent:0px;margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:11pt\"><b style=\"font-family:Arial,sans-serif,serif,EmojiFont\">Jarrett Brownfield </b></span></div><div style=\"text-align:left;text-indent:0px;margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt\">I Chief Financial Officer</span></div><div style=\"text-align:left;text-indent:0px;margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt\">Lithium Battery Company</span></div><div style=\"text-align:left;text-indent:0px;margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt\">Direct: (812) 552-6854</span></div><div style=\"text-align:left;text-indent:0px;margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:rgb(0,36,81)\"><u style=\"font-family:Arial,sans-serif,serif,EmojiFont\"><a style=\"margin:0px;font-family:Arial,sans-serif,serif,EmojiFont;color:rgb(0,36,81)\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"m_-7295459412041981803m_-1718545688046114632OWAaa9e88f7-72a4-9ae1-f90b-7b52ec482c95\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">Jarrett@</a>lithiumbatterycompany<a style=\"margin:0px;font-family:Arial,sans-serif,serif,EmojiFont;color:rgb(0,36,81)\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"m_-7295459412041981803m_-1718545688046114632OWA052818ee-dd04-af5e-e3f2-200a51798534\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">.com</a></u></span></div><div style=\"text-align:left;text-indent:0px;margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:rgb(0,36,81)\"><u style=\"font-family:Arial,sans-serif,serif,EmojiFont\"><a style=\"margin:0px;font-family:Arial,sans-serif,serif,EmojiFont;color:rgb(0,36,81)\" title=\"https://lithiumbatterycompany.com/\" id=\"m_-7295459412041981803m_-1718545688046114632OWA02113226-56f7-4e1d-3ed0-64eeb4a97441\" href=\"https://lithiumbatterycompany.com/\" target=\"_blank\">Lithium\r\n Battery Company</a></u></span></div>\r\n</div>\r\n<div id=\"m_-7295459412041981803m_-1718545688046114632appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div id=\"m_-7295459412041981803m_-1718545688046114632divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt;font-family:Calibri,sans-serif;color:rgb(0,0,0)\"><b style=\"font-family:Calibri,sans-serif\">From:</b> Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\" style=\"font-family:Calibri,sans-serif\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b style=\"font-family:Calibri,sans-serif\">Sent:</b> Saturday, August 2, 2025 6:26 PM<br>\r\n<b style=\"font-family:Calibri,sans-serif\">To:</b> Brian Stufflebean &lt;<a href=\"mailto:brian@bayfrontcapitalllc.com\" target=\"_blank\" style=\"font-family:Calibri,sans-serif\">brian@bayfrontcapitalllc.com</a>&gt;<br>\r\n<b style=\"font-family:Calibri,sans-serif\">Cc:</b> Nathan A. Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\" style=\"font-family:Calibri,sans-serif\">Nathan@lithiumbatterycompany.com</a>&gt;; Jarrett Brownfield &lt;<a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\" style=\"font-family:Calibri,sans-serif\">jarrett@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b style=\"font-family:Calibri,sans-serif\">Subject:</b> Re: Site Meeting of 07/30/2025 Follow Up - NDA</font>\r\n<div> </div>\r\n</div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div>Hello Brian,</div>\r\n<div><br>\r\n</div>\r\n<div>Please see attached my signed NDA. </div>\r\n<div><br>\r\n</div>\r\n<div>Best Regards, </div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div dir=\"ltr\"><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\"><br>\r\n</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt\">Partner | President <br>\r\n</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Lithium Battery Company</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Direct: (917) 266-5336<br>\r\n</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u style=\"font-family:Arial,sans-serif\">jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"margin:0px;font-family:Arial,sans-serif;color:blue\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\" style=\"font-family:Arial,sans-serif\">Lithium Battery Company</a></span></div>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n</div>\r\n<br>\r\n<div>\r\n<div dir=\"ltr\">On Sat, Aug 2, 2025 at 11:42 AM Brian Stufflebean &lt;<a href=\"mailto:brian@bayfrontcapitalllc.com\" target=\"_blank\">brian@bayfrontcapitalllc.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;padding-left:1ex;border-left-color:rgb(204,204,204)\">\r\n<div><span style=\"font-size:14px\">Jarrett, Nathan and Jordan,</span>\r\n<div><span style=\"font-size:14px\"><br>\r\n</span></div>\r\n<div><span style=\"font-size:14px\"><br>\r\n</span></div>\r\n<div><span style=\"font-size:14px\">It was a pleasure to have the opportunity to meet all three of you at your new site this past week.  In following up from our meeting I have attached an NDA from Mavrix 1 LLC for your review and execution. Each of you should\r\n execute a copy as Senior Officers of the Company. </span></div>\r\n<div><span style=\"font-size:14px\"><br>\r\n</span></div>\r\n<div><span style=\"font-size:14px\">I will also be setting up a diligence folder on Proton for you to be able to upload diligence files for our review.  Recognizing your very tight deadlines, we will attempt to move diligently along with reviews.  Please don’t\r\n hesitate to text or contact me if you have any difficulties in getting into the Proton folder.  </span></div>\r\n<div><span style=\"font-size:14px\"><br>\r\n</span></div>\r\n<div><span style=\"font-size:14px\"><b>FYI </b>- you will each receive an email invitation to join/accept the folder prior to being to gaining access. </span></div>\r\n<div><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div></div>\r\n</div>\r\n<div>\r\n<div></div>\r\n<div><br>\r\n<div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\">\r\nBest Regards, <br>\r\n<br>\r\n<br>\r\nBrian C. Stufflebean, CEO<br>\r\n<b style=\"font-family:Helvetica\">Bayfront Capital, LLC</b><br>\r\n(941)545-4153 Direct<br>\r\n(866)896-2423 Fax<br>\r\n<a href=\"mailto:brian@bayfrontcapitalllc.com\" target=\"_blank\" style=\"font-family:Helvetica\">brian@bayfrontcapitalllc.com</a><br>\r\n<a href=\"http://www.bayfrontcapitalllc.com/\" target=\"_blank\" style=\"font-family:Helvetica\">www.bayfrontcapitalllc.com</a><br>\r\n      <br>\r\n<br>\r\n</div>\r\n<span style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"></span><br style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\">\r\n<span style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"></span><span></span></div>\r\n</div>\r\n</div>\r\n<div>\r\n<div>\r\n<div><span></span>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\">\r\n<span style=\"font-family:Helvetica\"><br>\r\n<br>\r\n<br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\">\r\n<span style=\"font-family:Helvetica\"><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\">\r\n<span style=\"font-family:Helvetica\"><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\">\r\n<span style=\"font-family:Helvetica\"><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\">\r\n<span style=\"font-family:Helvetica\"><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\">\r\n<span style=\"font-family:Helvetica\"><br>\r\n</span></div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\">\r\n<b style=\"font-family:Helvetica\">CONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER:</b><span style=\"font-weight:400;font-family:Helvetica\"> Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any\r\n references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is\r\n confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please\r\n contact the sender of the message to inform him or her of the error.</span></div>\r\n</div>\r\n<br>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n\r\n\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div>\r\n</div></blockquote></div><br></div></div></blockquote></div></div>','Hi Brian\r\n\r\nThursday at 11am works for me.  I can have Nick send you a calendar invite\r\nfor zoom tomorrow morning.  Thank you!\r\n\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Tue, Aug 5, 2025 at 8:47 PM Brian Stufflebean <\r\nbrian@bayfrontcapitalllc.com> wrote:\r\n\r\n> Nathan,\r\n>\r\n> Should be able to make some Thursday, 11:00am - 1:30 is relatively open,\r\n> let me know if any of this time works for you.\r\n>\r\n>\r\n>\r\n> Best Regards,\r\n>\r\n>\r\n> Brian C. Stufflebean, CEO\r\n> *Bayfront Capital, LLC*\r\n> (941)545-4153 Direct\r\n> (866)896-2423 Fax\r\n> brian@bayfrontcapitalllc.com\r\n> www.bayfrontcapitalllc.com\r\n>\r\n>\r\n>\r\n> [image: PastedGraphic-3.tiff]\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n> *CONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER:* Bayfront\r\n> Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor\r\n> registered with FINRA. Nor does it provide tax or investment advice.  Any\r\n> references made to any transaction in any communication is being made as\r\n> a business consultant.   This is not a solicitation nor offer of any type\r\n> and any reference to any proposed transaction of any type is void where\r\n> prohibited by law. This communication is confidential and intended only for\r\n> the intended recipient.  If you are not the intended recipient, you may not\r\n> copy, disclose, or distribute this message to anyone else; any such actions\r\n> may be unlawful. If you have received this communication in error, please\r\n> contact the sender of the message to inform him or her of the error.\r\n>\r\n> On Aug 5, 2025, at 3:32 PM, Nathan Staron <\r\n> Nathan@lithiumbatterycompany.com> wrote:\r\n>\r\n> Hi Rick,\r\n>\r\n> I wanted to see if we could connect before the end of the week to discuss\r\n> the next steps moving forward. I have some availability tomorrow,\r\n> Wednesday, August 6th, as well as on Thursday, August 7th, or Friday,\r\n> August 8th. Please let me know if any of these times work for you.\r\n>\r\n>\r\n> <https://lithiumbatterycompany.com/>\r\n> <https://www.instagram.com/lithiumbatteryco/>\r\n> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n> <https://www.facebook.com/LithiumBatteryCompany/>\r\n> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n> <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074\r\n> Phone 844-GET-LITHIUM\r\n> Nathan@lithiumbatterycompany.com\r\n> Schedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>\r\n>\r\n>\r\n> On Tue, Aug 5, 2025 at 1:46 PM Rick <rick@mavrix.one> wrote:\r\n>\r\n>> See attached executed NDA.\r\n>> Thanks,\r\n>> Rick\r\n>>\r\n>>\r\n>> Rick Mislan, PhD,\r\n>> Founder, CTO\r\n>>\r\n>> mavrix1.com\r\n>>\r\n>>\r\n>> On August 5, 2025 at 12:07:37 PM, Jarrett Brownfield (\r\n>> jarrett@lithiumbatterycompany.com) wrote:\r\n>>\r\n>> Hi Brian & Rick,\r\n>>\r\n>> Please find attached my partially executed version of the NDA for your\r\n>> review. When available, please send back the fully executed NDAs for our\r\n>> records. Thanks\r\n>>\r\n>> *Jarrett Brownfield *\r\n>> Partner I Chief Financial Officer\r\n>> Lithium Battery Company\r\n>> Direct: (812) 552-6854\r\n>> *Jarrett@\r\n>> <Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com\r\n>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>> *Lithium Battery Company <https://lithiumbatterycompany.com/>*\r\n>> ------------------------------\r\n>> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n>> *Sent:* Saturday, August 2, 2025 6:26 PM\r\n>> *To:* Brian Stufflebean <brian@bayfrontcapitalllc.com>\r\n>> *Cc:* Nathan A. Staron <Nathan@lithiumbatterycompany.com>; Jarrett\r\n>> Brownfield <jarrett@lithiumbatterycompany.com>; Rick Mislan\r\n>> <rick@mavrix.one>\r\n>> *Subject:* Re: Site Meeting of 07/30/2025 Follow Up - NDA\r\n>>\r\n>> Hello Brian,\r\n>>\r\n>> Please see attached my signed NDA.\r\n>>\r\n>> Best Regards,\r\n>>\r\n>> Jordan G. Wroblewski\r\n>> Partner | President\r\n>> Lithium Battery Company\r\n>> Direct: (917) 266-5336\r\n>> *jordan@lithiumbatterycompany.com\r\n>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n>>\r\n>>\r\n>> On Sat, Aug 2, 2025 at 11:42 AM Brian Stufflebean <\r\n>> brian@bayfrontcapitalllc.com> wrote:\r\n>>\r\n>> Jarrett, Nathan and Jordan,\r\n>>\r\n>>\r\n>> It was a pleasure to have the opportunity to meet all three of you at\r\n>> your new site this past week.  In following up from our meeting I have\r\n>> attached an NDA from Mavrix 1 LLC for your review and execution. Each of\r\n>> you should execute a copy as Senior Officers of the Company.\r\n>>\r\n>> I will also be setting up a diligence folder on Proton for you to be able\r\n>> to upload diligence files for our review.  Recognizing your very tight\r\n>> deadlines, we will attempt to move diligently along with reviews.  Please\r\n>> don’t hesitate to text or contact me if you have any difficulties in\r\n>> getting into the Proton folder.\r\n>>\r\n>> *FYI *- you will each receive an email invitation to join/accept the\r\n>> folder prior to being to gaining access.\r\n>>\r\n>>\r\n>>\r\n>> Best Regards,\r\n>>\r\n>>\r\n>> Brian C. Stufflebean, CEO\r\n>> *Bayfront Capital, LLC*\r\n>> (941)545-4153 Direct\r\n>> (866)896-2423 Fax\r\n>> brian@bayfrontcapitalllc.com\r\n>> www.bayfrontcapitalllc.com\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>> *CONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER:* Bayfront\r\n>> Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor\r\n>> registered with FINRA. Nor does it provide tax or investment advice.  Any\r\n>> references made to any transaction in any communication is being made as\r\n>> a business consultant.   This is not a solicitation nor offer of any type\r\n>> and any reference to any proposed transaction of any type is void where\r\n>> prohibited by law. This communication is confidential and intended only for\r\n>> the intended recipient.  If you are not the intended recipient, you may not\r\n>> copy, disclose, or distribute this message to anyone else; any such actions\r\n>> may be unlawful. If you have received this communication in error, please\r\n>> contact the sender of the message to inform him or her of the error.\r\n>>\r\n>>\r\n>',0,0,0,0,0,0,'2025-08-06 00:49:57','2025-12-09 19:27:11','2025-12-09 19:27:11','2025-12-09 19:27:11',NULL,NULL,NULL),
(585,4,' <BN6PR05MB36195514FDADDA19C1C945E7872DA@BN6PR05MB3619.namprd05.prod.outlook.com>',NULL,NULL,'RE: FW: Engagement Letter Mavrix 1, LLC','linda.propes@nelsonmullins.com','Linda Propes','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon0, li.airmailon0, div.airmailon0\r\n	{mso-style-name:airmailon;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle23\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Hi Rick, its probably still with Roman. Once he signs you will receive.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"370\" style=\"width:277.5pt\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" colspan=\"2\" style=\"width:100.0%;padding:0in 0in 14.25pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><img width=\"261\" height=\"30\" style=\"width:2.7166in;height:.3083in\" id=\"_x0000_i1029\" src=\"https://www.nelsonmullins.com/img/ecard-logo.png\"></span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"5\" style=\"width:3.75pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<o:p></o:p></span></b></p>\r\n</td>\r\n<td width=\"365\" style=\"width:273.75pt;padding:0in 0in 0in 0in\">\r\n<div style=\"mso-element:para-border-div;border:none;border-top:solid #D1D2D4 1.5pt;padding:12.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3.0pt;border:none;padding:0in\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">LINDA PROPES&nbsp;&nbsp;</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#659BC5;letter-spacing:.75pt\">SENIOR\r\n ADMINISTRATIVE ASSISTANT</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">\r\n<o:p></o:p></span></b></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:6.75pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"mailto:linda.propes@nelsonmullins.com\"><span style=\"font-size:7.0pt;color:#676D72;text-decoration:none\">linda.propes@nelsonmullins.com</span></a>\r\n<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">390 NORTH ORANGE AVENUE&nbsp;|&nbsp;SUITE 1400<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">ORLANDO,&nbsp;FL&nbsp;32801<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">T</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.669.4381</span>&nbsp;&nbsp;\r\n</span></b><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">F</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.425.8377</span>&nbsp;&nbsp;\r\n<o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"5\" style=\"width:3.75pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<o:p></o:p></span></b></p>\r\n</td>\r\n<td width=\"365\" style=\"width:273.75pt;padding:0in 0in 0in 0in\">\r\n<div style=\"mso-element:para-border-div;border:none;border-bottom:solid #D1D2D4 1.5pt;padding:0in 0in 16.0pt 0in\">\r\n<p class=\"MsoNormal\" style=\"border:none;padding:0in\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"https://www.nelsonmullins.com\"><span style=\"color:#676D72;text-decoration:none\">NELSONMULLINS.COM</span></a>\r\n<o:p></o:p></span></b></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Tuesday, August 5, 2025 7:31 PM<br>\r\n<b>To:</b> Linda Propes &lt;linda.propes@nelsonmullins.com&gt;<br>\r\n<b>Subject:</b> RE: FW: Engagement Letter Mavrix 1, LLC<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-line-height-alt:.75pt\"><span style=\"font-size:1.0pt;color:white\">I have not seen the docusign version. Please let me know. Thanks, Rick Rick Mislan, PhD, Founder, CTO mavrix1.</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">com\r\n On August 5, 2025 at 5:</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">30:</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">45\r\n PM, Linda Propes (linda.</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">propes@</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">nelsonmullins.</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">com)\r\n wrote: Hi Rick, I resent with the updated change<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-line-height-alt:.75pt\"><span style=\"font-size:1.0pt;color:white\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I have not seen the docusign version.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Please let me know.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks,<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"84\" height=\"15\" style=\"width:.875in;height:.1583in\" id=\"_x0000_i1028\" src=\"cid:image001.png@01DC06B2.9C3D7150\"></span><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://urldefense.com/v3/__http:/mavrix1.com/__;!!LBFcHN3WCgnqDQ!hrKmwYEMDkyz7xhsG31q0-pM3T8DSqJ37bWf2tyvJ0qI7WJY6AFrQLxbr99Zvfj2n7EJpHXYajOnQqoNMdyb0Q$\">mavrix1.com</a><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"airmailon\">On August 5, 2025 at 5:30:45<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM, Linda Propes (<a href=\"mailto:linda.propes@nelsonmullins.com\">linda.propes@nelsonmullins.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Hi Rick, I resent with the updated change via DocuSign. Let me know if you don’t receive.<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"370\" style=\"width:277.5pt\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" colspan=\"2\" style=\"width:100.0%;padding:0in 0in 14.25pt 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><img border=\"0\" width=\"261\" height=\"30\" style=\"width:2.7166in;height:.3083in\" id=\"_x0000_i1027\" src=\"https://www.nelsonmullins.com/img/ecard-logo.png\"></span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"5\" style=\"width:3.75pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"365\" style=\"width:273.75pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-top:solid #D1D2D4 1.5pt;padding:12.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:3.0pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">LINDA PROPES&nbsp;&nbsp;</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#659BC5;letter-spacing:.75pt\">SENIOR\r\n ADMINISTRATIVE ASSISTANT</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:6.75pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"mailto:linda.propes@nelsonmullins.com\"><span style=\"font-size:7.0pt;color:#676D72;text-decoration:none\">linda.propes@nelsonmullins.com</span></a>\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">390 NORTH ORANGE AVENUE&nbsp;|&nbsp;SUITE 1400</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">ORLANDO,&nbsp;FL&nbsp;32801</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:4.5pt\"><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">T</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.669.4381</span>&nbsp;&nbsp;\r\n</span></b><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">F</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.425.8377</span>&nbsp;&nbsp;\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"5\" style=\"width:3.75pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"365\" style=\"width:273.75pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-bottom:solid #D1D2D4 1.5pt;padding:0in 0in 16.0pt 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"https://www.nelsonmullins.com\"><span style=\"color:#676D72;text-decoration:none\">NELSONMULLINS.COM</span></a>\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Tuesday, August 5, 2025 4:59 PM<br>\r\n<b>To:</b> Linda Propes &lt;<a href=\"mailto:linda.propes@nelsonmullins.com\">linda.propes@nelsonmullins.com</a>&gt;<br>\r\n<b>Cc:</b> Linda Propes &lt;<a href=\"mailto:linda.propes@nelsonmullins.com\">linda.propes@nelsonmullins.com</a>&gt;<br>\r\n<b>Subject:</b> Re: FW: Engagement Letter Mavrix 1, LLC</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;mso-line-height-alt:.75pt\">\r\n<span style=\"font-size:1.0pt;color:white\">Thank you Linda, Can you please address the letter of engagement to me and on the bottom CC it to Brian. Thanks, Rick Richard P. Mislan, PhD,. Founder, CTO mavrix1.</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">com\r\n On August 5, 2025 at 1:</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">03:</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">17\r\n PM, Linda Propes (linda.</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">propes@</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">nelsonmullins.</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">com)</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thank you Linda,</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Can you please address the letter of engagement to me and on the bottom CC it to Brian.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks,</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Rick<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Richard P. Mislan, PhD,.</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"84\" height=\"15\" style=\"width:.875in;height:.1583in\" id=\"Picture_x0020_2\" src=\"cid:image001.png@01DC06B2.9C3D7150\"></span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://urldefense.com/v3/__http:/mavrix1.com/__;!!LBFcHN3WCgnqDQ!nx5xsVGMUkQ7yKj6zc45tNabfkeggPFijgl35PGDETUv-CBVia-_uE2g8Fb2Y_cnkoFB2o73-IFh8-d5inGkGw$\">mavrix1.com</a></span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"airmailon0\">On August 5, 2025 at 1:03:17<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM, Linda Propes (<a href=\"mailto:linda.propes@nelsonmullins.com\">linda.propes@nelsonmullins.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Good morning Rick, attached is our engagement letter for your review and signature. I am also attaching the wiring instructions for the retainer. Let us know if you have any questions.\r\n I can also send via DocuSign if that is easier. Thank you.<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"370\" style=\"width:277.5pt\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" colspan=\"2\" style=\"width:100.0%;padding:0in 0in 14.25pt 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><img border=\"0\" width=\"261\" height=\"30\" style=\"width:2.7166in;height:.3083in\" id=\"_x0000_i1025\" src=\"https://www.nelsonmullins.com/img/ecard-logo.png\"></span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"5\" style=\"width:3.75pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"365\" style=\"width:273.75pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-top:solid #D1D2D4 1.5pt;padding:12.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:3.0pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">LINDA PROPES&nbsp;&nbsp;</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#659BC5;letter-spacing:.75pt\">SENIOR\r\n ADMINISTRATIVE ASSISTANT</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:6.75pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"mailto:linda.propes@nelsonmullins.com\"><span style=\"font-size:7.0pt;color:#676D72;text-decoration:none\">linda.propes@nelsonmullins.com</span></a>\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">390 NORTH ORANGE AVENUE&nbsp;|&nbsp;SUITE 1400</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">ORLANDO,&nbsp;FL&nbsp;32801</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:4.5pt\"><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">T</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.669.4381</span>&nbsp;&nbsp;\r\n</span></b><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">F</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.425.8377</span>&nbsp;&nbsp;\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"5\" style=\"width:3.75pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"365\" style=\"width:273.75pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-bottom:solid #D1D2D4 1.5pt;padding:0in 0in 16.0pt 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"https://www.nelsonmullins.com\"><span style=\"color:#676D72;text-decoration:none\">NELSONMULLINS.COM</span></a>\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<p><strong><span style=\"font-family:&quot;Aptos&quot;,sans-serif\">Confidentiality Notice</span></strong><br>\r\nThis message is intended exclusively for the individual or entity to which it is addressed. This communication may contain information that is proprietary, privileged, confidential or otherwise legally exempt from disclosure. If you are not the named addressee,\r\n you are not authorized to read, print, retain, copy or disseminate this message or any part of it. If you have received this message in error, please notify the sender immediately either by phone (800-237-2000) or reply to this e-mail and delete all copies\r\n of this message.<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</body>\r\n</html>','Hi Rick, its probably still with Roman. Once he signs you will receive.\r\n\r\n[https://www.nelsonmullins.com/img/ecard-logo.png]\r\n\r\nLINDA PROPES  SENIOR ADMINISTRATIVE ASSISTANT\r\nlinda.propes@nelsonmullins.com<mailto:linda.propes@nelsonmullins.com>\r\n390 NORTH ORANGE AVENUE | SUITE 1400\r\nORLANDO, FL 32801\r\nT 407.669.4381   F 407.425.8377\r\n\r\nNELSONMULLINS.COM<https://www.nelsonmullins.com>\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, August 5, 2025 7:31 PM\r\nTo: Linda Propes <linda.propes@nelsonmullins.com>\r\nSubject: RE: FW: Engagement Letter Mavrix 1, LLC\r\n\r\nI have not seen the docusign version. Please let me know. Thanks, Rick Rick Mislan, PhD, Founder, CTO mavrix1. com On August 5, 2025 at 5: 30: 45 PM, Linda Propes (linda. propes@ nelsonmullins. com) wrote: Hi Rick, I resent with the updated change\r\n\r\nI have not seen the docusign version.\r\nPlease let me know.\r\nThanks,\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:image001.png@01DC06B2.9C3D7150]\r\nmavrix1.com<https://urldefense.com/v3/__http:/mavrix1.com/__;!!LBFcHN3WCgnqDQ!hrKmwYEMDkyz7xhsG31q0-pM3T8DSqJ37bWf2tyvJ0qI7WJY6AFrQLxbr99Zvfj2n7EJpHXYajOnQqoNMdyb0Q$>\r\n\r\n\r\n\r\nOn August 5, 2025 at 5:30:45 PM, Linda Propes (linda.propes@nelsonmullins.com<mailto:linda.propes@nelsonmullins.com>) wrote:\r\nHi Rick, I resent with the updated change via DocuSign. Let me know if you don’t receive.\r\n\r\n[https://www.nelsonmullins.com/img/ecard-logo.png]\r\n\r\nLINDA PROPES  SENIOR ADMINISTRATIVE ASSISTANT\r\nlinda.propes@nelsonmullins.com<mailto:linda.propes@nelsonmullins.com>\r\n390 NORTH ORANGE AVENUE | SUITE 1400\r\nORLANDO, FL 32801\r\nT 407.669.4381   F 407.425.8377\r\n\r\nNELSONMULLINS.COM<https://www.nelsonmullins.com>\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Tuesday, August 5, 2025 4:59 PM\r\nTo: Linda Propes <linda.propes@nelsonmullins.com<mailto:linda.propes@nelsonmullins.com>>\r\nCc: Linda Propes <linda.propes@nelsonmullins.com<mailto:linda.propes@nelsonmullins.com>>\r\nSubject: Re: FW: Engagement Letter Mavrix 1, LLC\r\n\r\nThank you Linda, Can you please address the letter of engagement to me and on the bottom CC it to Brian. Thanks, Rick Richard P. Mislan, PhD,. Founder, CTO mavrix1. com On August 5, 2025 at 1: 03: 17 PM, Linda Propes (linda. propes@ nelsonmullins. com)\r\nThank you Linda,\r\nCan you please address the letter of engagement to me and on the bottom CC it to Brian.\r\nThanks,\r\nRick\r\n\r\nRichard P. Mislan, PhD,.\r\nFounder, CTO\r\n[cid:image001.png@01DC06B2.9C3D7150]\r\nmavrix1.com<https://urldefense.com/v3/__http:/mavrix1.com/__;!!LBFcHN3WCgnqDQ!nx5xsVGMUkQ7yKj6zc45tNabfkeggPFijgl35PGDETUv-CBVia-_uE2g8Fb2Y_cnkoFB2o73-IFh8-d5inGkGw$>\r\n\r\n\r\n\r\nOn August 5, 2025 at 1:03:17 PM, Linda Propes (linda.propes@nelsonmullins.com<mailto:linda.propes@nelsonmullins.com>) wrote:\r\nGood morning Rick, attached is our engagement letter for your review and signature. I am also attaching the wiring instructions for the retainer. Let us know if you have any questions. I can also send via DocuSign if that is easier. Thank you.\r\n\r\n[https://www.nelsonmullins.com/img/ecard-logo.png]\r\n\r\nLINDA PROPES  SENIOR ADMINISTRATIVE ASSISTANT\r\nlinda.propes@nelsonmullins.com<mailto:linda.propes@nelsonmullins.com>\r\n390 NORTH ORANGE AVENUE | SUITE 1400\r\nORLANDO, FL 32801\r\nT 407.669.4381   F 407.425.8377\r\n\r\nNELSONMULLINS.COM<https://www.nelsonmullins.com>\r\n\r\n\r\nConfidentiality Notice\r\nThis message is intended exclusively for the individual or entity to which it is addressed. This communication may contain information that is proprietary, privileged, confidential or otherwise legally exempt from disclosure. If you are not the named addressee, you are not authorized to read, print, retain, copy or disseminate this message or any part of it. If you have received this message in error, please notify the sender immediately either by phone (800-237-2000) or reply to this e-mail and delete all copies of this message.',0,0,0,0,0,0,'2025-08-06 13:15:10','2025-12-09 19:27:11','2025-12-09 19:27:11','2025-12-09 19:27:11',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(586,4,'<rUqhIB0zQByN5hANcvLBvw@geopod-ismtpd-18>',NULL,NULL,'DIU Newsletter - August 2025','info@diu.mil','Defense Innovation Unit','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html data-editor-version=\"2\" class=\"sg-campaigns\" xmlns=\"http://www.w3.org/1999/xhtml\">\r\n    <head>\r\n      <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n      <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1\">\r\n      <!--[if !mso]><!-->\r\n      <meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge\">\r\n      <!--<![endif]-->\r\n      <!--[if (gte mso 9)|(IE)]>\r\n      <xml>\r\n        <o:OfficeDocumentSettings>\r\n          <o:AllowPNG/>\r\n          <o:PixelsPerInch>96</o:PixelsPerInch>\r\n        </o:OfficeDocumentSettings>\r\n      </xml>\r\n      <![endif]-->\r\n      <!--[if (gte mso 9)|(IE)]>\r\n  <style type=\"text/css\">\r\n    body {width: 620px;margin: 0 auto;}\r\n    table {border-collapse: collapse;}\r\n    table, td {mso-table-lspace: 0pt;mso-table-rspace: 0pt;}\r\n    img {-ms-interpolation-mode: bicubic;}\r\n  </style>\r\n<![endif]-->\r\n      <style type=\"text/css\">\r\n    body, p, div {\r\n      font-family: arial,helvetica,sans-serif;\r\n      font-size: 14px;\r\n    }\r\n    body {\r\n      color: #000000;\r\n    }\r\n    body a {\r\n      color: #0D66BBFF;\r\n      text-decoration: none;\r\n    }\r\n    p { margin: 0; padding: 0; }\r\n    table.wrapper {\r\n      width:100% !important;\r\n      table-layout: fixed;\r\n      -webkit-font-smoothing: antialiased;\r\n      -webkit-text-size-adjust: 100%;\r\n      -moz-text-size-adjust: 100%;\r\n      -ms-text-size-adjust: 100%;\r\n    }\r\n    img.max-width {\r\n      max-width: 100% !important;\r\n    }\r\n    .column.of-2 {\r\n      width: 50%;\r\n    }\r\n    .column.of-3 {\r\n      width: 33.333%;\r\n    }\r\n    .column.of-4 {\r\n      width: 25%;\r\n    }\r\n    ul ul ul ul  {\r\n      list-style-type: disc !important;\r\n    }\r\n    ol ol {\r\n      list-style-type: lower-roman !important;\r\n    }\r\n    ol ol ol {\r\n      list-style-type: lower-latin !important;\r\n    }\r\n    ol ol ol ol {\r\n      list-style-type: decimal !important;\r\n    }\r\n    @media screen and (max-width:480px) {\r\n      .preheader .rightColumnContent,\r\n      .footer .rightColumnContent {\r\n        text-align: left !important;\r\n      }\r\n      .preheader .rightColumnContent div,\r\n      .preheader .rightColumnContent span,\r\n      .footer .rightColumnContent div,\r\n      .footer .rightColumnContent span {\r\n        text-align: left !important;\r\n      }\r\n      .preheader .rightColumnContent,\r\n      .preheader .leftColumnContent {\r\n        font-size: 80% !important;\r\n        padding: 5px 0;\r\n      }\r\n      table.wrapper-mobile {\r\n        width: 100% !important;\r\n        table-layout: fixed;\r\n      }\r\n      img.max-width {\r\n        height: auto !important;\r\n        max-width: 100% !important;\r\n      }\r\n      a.bulletproof-button {\r\n        display: block !important;\r\n        width: auto !important;\r\n        font-size: 80%;\r\n        padding-left: 0 !important;\r\n        padding-right: 0 !important;\r\n      }\r\n      .columns {\r\n        width: 100% !important;\r\n      }\r\n      .column {\r\n        display: block !important;\r\n        width: 100% !important;\r\n        padding-left: 0 !important;\r\n        padding-right: 0 !important;\r\n        margin-left: 0 !important;\r\n        margin-right: 0 !important;\r\n      }\r\n      .social-icon-column {\r\n        display: inline-block !important;\r\n      }\r\n    }\r\n  </style>\r\n      <!--user entered Head Start--><!--End Head user entered-->\r\n    </head>\r\n    <body>\r\n      <center class=\"wrapper\" data-link-color=\"#0D66BBFF\" data-body-style=\"font-size:14px; font-family:arial,helvetica,sans-serif; color:#000000; background-color:#e6e6e6;\">\r\n        <div class=\"webkit\">\r\n          <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"wrapper\" bgcolor=\"#e6e6e6\">\r\n            <tr>\r\n              <td valign=\"top\" bgcolor=\"#e6e6e6\" width=\"100%\">\r\n                <table width=\"100%\" role=\"content-container\" class=\"outer\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                  <tr>\r\n                    <td width=\"100%\">\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                        <tr>\r\n                          <td>\r\n                            <!--[if mso]>\r\n    <center>\r\n    <table><tr><td width=\"620\">\r\n  <![endif]-->\r\n                                    <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:100%; max-width:620px;\" align=\"center\">\r\n                                      <tr>\r\n                                        <td role=\"modules-container\" style=\"padding:0px 10px 0px 10px; color:#000000; text-align:left;\" bgcolor=\"#E6E6E6\" width=\"100%\" align=\"left\"><table class=\"module preheader preheader-hide\" role=\"module\" data-type=\"preheader\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"display: none !important; mso-hide: all; visibility: hidden; opacity: 0; color: transparent; height: 0; width: 0;\">\r\n    <tr>\r\n      <td role=\"module-content\">\r\n        <p>Updates to BLUE List, Challenge Winners Announced & Updated UxS Deadline</p>\r\n      </td>\r\n    </tr>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"1104c33b-738b-4f49-a025-f96d421a4309\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:5px 0px 15px 0px; line-height:14px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: right\"><span style=\"color: #454545; font-family: helvetica, sans-serif; font-size: 12px\">Email not displaying correctly? </span><span style=\"color: #0059dd; font-family: helvetica, sans-serif; font-size: 12px\">View it</span><span style=\"color: #454545; font-family: helvetica, sans-serif; font-size: 12px\"> in your browser.</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:30px 0px 10px 0px;\" bgcolor=\"#E6E6E6\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"600\" style=\"width:600px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"9fc032df-f2d9-4c0d-ba50-8b72bae5eecc\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:0px 0px 0px 0px;\" valign=\"top\" align=\"center\">\r\n          <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:70% !important; width:70%; height:auto !important;\" width=\"420\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/3c3e14b4-863b-44ea-a235-44a86550fd55/1920x553.png\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"divider\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"93bd745a-3983-4ff8-9fbb-874f3c29dd2f\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 0px 0px;\" role=\"module-content\" height=\"100%\" valign=\"top\" bgcolor=\"\">\r\n          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" height=\"5px\" style=\"line-height:5px; font-size:5px;\">\r\n            <tbody>\r\n              <tr>\r\n                <td style=\"padding:0px 0px 5px 0px;\" bgcolor=\"#FFFFFF\"></td>\r\n              </tr>\r\n            </tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"622c7d5b-4ec9-436d-b26e-4a4e2807ad72\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:27px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-size: 16px\">August 2025 - Reading time: 3.5 minutes</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2e35c854-f82d-44a2-a0f5-30013d25e3d3.2.2\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px; line-height:30px; text-align:inherit; background-color:#e6e6e6;\" height=\"100%\" valign=\"top\" bgcolor=\"#e6e6e6\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-family: helvetica, sans-serif; color: #0d66bb; font-size: 30px\"><strong>Feature</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:10px 15px 30px 15px;\" bgcolor=\"#fcfcfc\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"570\" style=\"width:570px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"3221ee3c-4143-4441-97d7-1e054eb12851\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:27px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILigSPgoyRWe1jvwzlC4TXPcPXiyBFsfM3ISLoN-2BwsiTKVcSxaWIVrT1ZcvaeuqBm5tL2vqhvOfXyKVDuQBHsDRHvj3AQyRUhFZ10hciMrdc8iJEY3svoJpGrBsJVpUVhmVhk0yMe2q5SXYkixRi1VAw126m0kav-2FOs8sy30lSRdjnVrU_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSdNUvFlONAS93NeV0Ea52yU-2By5994dGqguSxDCdYww6ISa8U11WWR-2BAJhrRFwfqUL43iNtva0ecQc0QqkGS65KHnfx2I8WbqIzRVoEu0K77P5-2BP3DPzyO9zV6gbTMqoZelPTJXB2zryzhEK54O-2BGdOwaNHVkCw1K5mnr9GufpHLMdwCEz-2Fhp18XOdUOW3eeZkYPHVHwmPgt25tex7b2iR1DcI6UXRACsGyfu2wrso4FhqYjXpvUvPkjBIMHsmfg4qaCmNifve-2Fx-2FUre-2BENqCofvDnwcNCdnU1-2BxLkHEYnh-2B0DO3gP7ByPwlZAE5WqLDCZ0Np5JcR3w-2BNkaUhmK5USUSdJWfP5KIDr09AD7B5iB-2FuA5Nmu7N-2F9QqXbR95U5AE057aNKtyQLSh5RjCTZNEc1Ue3LIDqJUR-2F-2Bq-2FroRbStdcndxWED1ucUxuZfugaEyiLV9upxpL3DuBmlTXU-2Fj0e3QSdfNXesfITBi3aNSmfzSNn34cYpcM-2BOKJKDWCWhUMoY3gQdrYzIh4ScHzga431hecVI8CWcjo1Ms-2ByGNB11qpBzOjKJcU-2B8YtIlbBpajvOoQd1h13Bxmb00VqpIQxmGYJgoRIM65mwb-2Fr4U9itka7HYdVE01-2BN-2B1pPlb7Ater2mWEl4OmLB0cFGWE0rdrS08IQfeE0P3iIucfDViTPhprpiEQuKUKLEVebE0-2FoOial3qNSX4iF1An7RNPoKmV0My-2FdTPUZPSr2MMhwRzTMPYmkogERfyf0iv6ETdeW8VoCmjtHamOZ-2FKcUibn1mFZQYmmzm0eG4PTs0aSkXma-2FIMO\"><span style=\"color: #0d66bb; font-size: 30px\"><u><strong>Highest-Ranking Senior Military Officer Visits DIU Headquarters</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"b7993751-904f-45c7-a777-4b216693fc6d\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:0px 0px 0px 0px;\" valign=\"top\" align=\"center\">\r\n          \r\n        <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"NaN\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/8c5419b2-f49a-422f-a0ab-452d74956ce1/2048x1152.jpg\"></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"d0ad2566-78a7-4d01-a35c-f8389d5a2028\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 0px 0px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-family: arial, helvetica, sans-serif; font-size: 14px\">Chairman of the Joint Chiefs of Staff General Dan Caine and Senior Enlisted Advisor to the Chairman Fleet Master Chief David Isomon visited our Mountain View headquarters to learn about key efforts, see technology demonstrations, and engage with the service members stationed here. &nbsp;</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-family: arial, helvetica, sans-serif; font-size: 14px\"><br>\r\nCheck out the post on the Joint Staff LinkedIn page </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILigSPgoyRWe1jvwzlC4TXPeHRJqAQ550VKQRCKfSErWXUKutcEavDnvyS4ivAYGxkXc2pvezs2OKObAvIR5D8OTLoUEjekU6me2ts-2FVRIJH-2FgNZOg6s53fF2QrEMF7Pwmq852PlL8-2Fcah4aH49exskeW3mf5PIgalOpDHNxzOsfjETKifa0gx2k32mFPwOSV-2FFULCM69F-2BY6udVk6VLt9ttc5RS32Vb2MYup186yBc28mr8G-2Fz7NjsZMheZwyQ9k3TlcV376NNJIed3BoGt9xvji4-2BirfioLRfyxOeOzNpbR1xsSeAHCGiEANIO0cnnsBw-3D-3D6H42_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSdNUvFlONAS93NeV0Ea52yU-2By5994dGqguSxDCdYww6ISa8U11WWR-2BAJhrRFwfqUL43iNtva0ecQc0QqkGS65KHnfx2I8WbqIzRVoEu0K77P5-2BP3DPzyO9zV6gbTMqoZelPTJXB2zryzhEK54O-2BGdOwaNHVkCw1K5mnr9GufpHLMdwCEz-2Fhp18XOdUOW3eeZkYPHVHwmPgt25tex7b2iR1DcI6UXRACsGyfu2wrso4FhqYjXpvUvPkjBIMHsmfg4qaCmNifve-2Fx-2FUre-2BENqCofvDnwcNCdnU1-2BxLkHEYnh-2B0DO3gP7ByPwlZAE5WqLDCZ0Np5JcR3w-2BNkaUhmK5USUSdJWfP5KIDr09AD7B5iB-2FuA5Nmu7N-2F9QqXbR95U5AE057aNKtyQLSh5RjCTZNEc1Ue3LIDqJUR-2F-2Bq-2FroRbStdcndxWED1ucUxuZfugaEyiLV9upxpL3DuBmlTXU-2Fj0e3QSdfNXesfITBi3aNSmfzSNn34cYpcM-2BOKJKDWCWhUMoY3gQdrYzIh4ScHzga431hecVI8CWcjo1Ms-2ByGNB11qpBzOjKJcU-2B8YtIlbBpajvOoQd1h13Bxmb00VqpIQxmGYMQ7Kf5u0DtdUihBLkX0MDYssV6a7eSDvloXjKXRe44EwUEVWeF0Mpnqkt9yO2peWA50rzFh5VbqEno6r5Va6lvd7bR8aGa5W-2Bp1GaOEq52SyIEJdm71DO3vX3u1lh2-2FXh9FNVJtqc4jXSgxv-2B4eSYzL3POtMPQyQ75ktqau37Fqnt2nBbnkBEuuqqBWQ-2FOyhIxvX9LFHt5727ks8HHK-2BT\"><span style=\"font-family: arial, helvetica, sans-serif; font-size: 14px\"><u>here</u></span></a><span style=\"font-family: arial, helvetica, sans-serif; font-size: 14px\">.&nbsp;</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-family: arial, helvetica, sans-serif; font-size: 14px\"><br>\r\n</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"c08b2b0c-7f67-45e8-8778-fd9dafc1f99b\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:0px 0px 0px 0px;\" valign=\"top\" align=\"center\">\r\n          <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"NaN\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/5479594e-6688-47d5-ade5-c0ff67c14281/2014x1133.jpg\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"6ebcfe40-cb5c-475c-bd78-dc19c31ea4b9\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 70px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2e35c854-f82d-44a2-a0f5-30013d25e3d3.2.3\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px; line-height:30px; text-align:inherit; background-color:#e6e6e6;\" height=\"100%\" valign=\"top\" bgcolor=\"#e6e6e6\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-family: helvetica, sans-serif; color: #0d66bb; font-size: 30px\"><strong>Upcoming Events</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"200\" style=\"width:200px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cBiyKgSAf3sHzEQtGwL8gU.1.1.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:25px 0px 5px 5px;\" valign=\"top\" align=\"left\">\r\n          \r\n        <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOdmufIFpPtbvMDN-2F3X1pFYpV-2B67VU1VfbI35-2FX1kx6P0fPAhj78vhaKA1vs8TW25ZpbhE87ZX9WQORp7nXf2hnEwVKRWjLCjWPXe0p4XiZXwxp4gh8Kwtut1t6Q5R7Cs3Y-2Fy6sg9SRUEp55VfWv6f7e02hZnoKunVq9Gii66Q1CJgwA3bqXExq0zAFLuO8TwNQ-3DFlVf_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSdNUvFlONAS93NeV0Ea52yU-2By5994dGqguSxDCdYww6ISa8U11WWR-2BAJhrRFwfqUL43iNtva0ecQc0QqkGS65KHnfx2I8WbqIzRVoEu0K77P5-2BP3DPzyO9zV6gbTMqoZelPTJXB2zryzhEK54O-2BGdOwaNHVkCw1K5mnr9GufpHLMdwCEz-2Fhp18XOdUOW3eeZkYPHVHwmPgt25tex7b2iR1DcI6UXRACsGyfu2wrso4FhqYjXpvUvPkjBIMHsmfg4qaCmNifve-2Fx-2FUre-2BENqCofvDnwcNCdnU1-2BxLkHEYnh-2B0DO3gP7ByPwlZAE5WqLDCZ0Np5JcR3w-2BNkaUhmK5USUSdJWfP5KIDr09AD7B5iB-2FuA5Nmu7N-2F9QqXbR95U5AE057aNKtyQLSh5RjCTZNEc1Ue3LIDqJUR-2F-2Bq-2FroRbStdcndxWED1ucUxuZfugaEyiLV9upxpL3DuBmlTXU-2Fj0e3QSdfNXesfITBi3aNSmfzSNn34cYpcM-2BOKJKDWCWhUMoY3gQdrYzIh4ScHzga431hecVI8CWcjo1Ms-2ByGNB11qpBzOjKJcU-2B8YtIlbBpajvOoQd1h13Bxmb00VqpIQxmGZ9p818sg56WCX6eRNIyzZKNQl1QsFQhagHwyOl39Hu1CXdRaUi9wlCdppxOF0MHQhaILn4kTqeYXvI1BeEsnr9U4XHndUTsh85UWejlIqOORptOlZCAzN9Ep4sWfdYtEx21alR1igyh9Mtf1cLZwHSeJm8UxobqY4ZvcgSrHHrRP0D0MmQ4kI7mZam6NCIrE0j2o3z94wdUZS7idbrJvjf\"><img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"200\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/3426800c-adff-4bac-ac08-013966176ca0/1080x1080.png\"></a></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"400\" style=\"width:400px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOdmufIFpPtbvMDN-2F3X1pFYpV-2B67VU1VfbI35-2FX1kx6P0fPAhj78vhaKA1vs8TW25ZpbhE87ZX9WQORp7nXf2hnEwVKRWjLCjWPXe0p4XiZXwxp4gh8Kwtut1t6Q5R7Cs3Y-2Fy6sg9SRUEp55VfWv6f7e02hZnoKunVq9Gii66Q1CJgwA3bqXExq0zAFLuO8TwNQ-3DKEmc_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSdNUvFlONAS93NeV0Ea52yU-2By5994dGqguSxDCdYww6ISa8U11WWR-2BAJhrRFwfqUL43iNtva0ecQc0QqkGS65KHnfx2I8WbqIzRVoEu0K77P5-2BP3DPzyO9zV6gbTMqoZelPTJXB2zryzhEK54O-2BGdOwaNHVkCw1K5mnr9GufpHLMdwCEz-2Fhp18XOdUOW3eeZkYPHVHwmPgt25tex7b2iR1DcI6UXRACsGyfu2wrso4FhqYjXpvUvPkjBIMHsmfg4qaCmNifve-2Fx-2FUre-2BENqCofvDnwcNCdnU1-2BxLkHEYnh-2B0DO3gP7ByPwlZAE5WqLDCZ0Np5JcR3w-2BNkaUhmK5USUSdJWfP5KIDr09AD7B5iB-2FuA5Nmu7N-2F9QqXbR95U5AE057aNKtyQLSh5RjCTZNEc1Ue3LIDqJUR-2F-2Bq-2FroRbStdcndxWED1ucUxuZfugaEyiLV9upxpL3DuBmlTXU-2Fj0e3QSdfNXesfITBi3aNSmfzSNn34cYpcM-2BOKJKDWCWhUMoY3gQdrYzIh4ScHzga431hecVI8CWcjo1Ms-2ByGNB11qpBzOjKJcU-2B8YtIlbBpajvOoQd1h13Bxmb00VqpIQxmGa6Xx7lgnL0-2BAp8kNcCACpLAI-2FBQ6zRHdeV7MAS7nI2NAS0-2Ff-2FGQq4sqHXLnlnC2Yf5ZRJJJavMaIGM-2FpmE7ibZW956RpGDEf2Q2kdYNiyyFPHxuprPebq7x95NAQcqMzMURpiTVNEdsqaswrazKUdBedAvDns9aJu5I21ZJT1uyyHeeK6CYxffxcmE1rP9b-2Bsy-2FaWucsf4YGh6AUetTLEd\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>You’re Invited: Defense Innovation Organizations at Fed Supernova 2025</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">AUG. 19-21, 2025</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">The annual 2025 Fed Supernova event in Austin is set for August 19-21, to bring together startups, government, industry, and academia to accelerate dual-use technology that powers national security – and the Defense Innovation Community, or DICE, will be there in full force!&nbsp;</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"b2aae8b4-07ed-4408-856d-9fad1455350e\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 70px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2e35c854-f82d-44a2-a0f5-30013d25e3d3.2.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px; line-height:30px; text-align:inherit; background-color:#e6e6e6;\" height=\"100%\" valign=\"top\" bgcolor=\"#e6e6e6\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-family: helvetica, sans-serif; color: #0d66bb; font-size: 30px\"><strong>News</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"200\" style=\"width:200px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cBiyKgSAf3sHzEQtGwL8gU.1.2.1.1.1.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:25px 0px 5px 5px;\" valign=\"top\" align=\"left\">\r\n          \r\n        <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOf3hOjRWsy7QYS7Eg0K6e2jx-2BFFav54XZQdvOErqzvIo0zYExlguy06PvLUQWhSQp0nukXfKhPOOKFpeM7S9eE86fG0u1mtYXkIE-2BONOoH3ejnPdruN3u-2B1i6qjKoy-2F6JYxazmZb0CDcOic45gGxRWf26MTAAANCDf-2BUuXZDm0ePR-2FUNb-2Bm0ncvAXZncbk5z30-3DqW09_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSdNUvFlONAS93NeV0Ea52yU-2By5994dGqguSxDCdYww6ISa8U11WWR-2BAJhrRFwfqUL43iNtva0ecQc0QqkGS65KHnfx2I8WbqIzRVoEu0K77P5-2BP3DPzyO9zV6gbTMqoZelPTJXB2zryzhEK54O-2BGdOwaNHVkCw1K5mnr9GufpHLMdwCEz-2Fhp18XOdUOW3eeZkYPHVHwmPgt25tex7b2iR1DcI6UXRACsGyfu2wrso4FhqYjXpvUvPkjBIMHsmfg4qaCmNifve-2Fx-2FUre-2BENqCofvDnwcNCdnU1-2BxLkHEYnh-2B0DO3gP7ByPwlZAE5WqLDCZ0Np5JcR3w-2BNkaUhmK5USUSdJWfP5KIDr09AD7B5iB-2FuA5Nmu7N-2F9QqXbR95U5AE057aNKtyQLSh5RjCTZNEc1Ue3LIDqJUR-2F-2Bq-2FroRbStdcndxWED1ucUxuZfugaEyiLV9upxpL3DuBmlTXU-2Fj0e3QSdfNXesfITBi3aNSmfzSNn34cYpcM-2BOKJKDWCWhUMoY3gQdrYzIh4ScHzga431hecVI8CWcjo1Ms-2ByGNB11qpBzOjKJcU-2B8YtIlbBpajvOoQd1h13Bxmb00VqpIQxmGYnaJJcPOKaJtO3qIuWisT-2BjVeCGtHVpsoLYC-2FXlxhMlSrZTnVc1aKF9825iOPEhmfioCBKR6-2B1ifOUSLReb5UGr3RCSaegFA11670b-2Fr-2BHH6i0xNd6GxQRpMrr8B4gCbDNffjTuc8L-2Bl4kSJN6bT6a81ANzNhmbkM0-2BFZQM4gAHecFEIld6z3sGK7PBgXui9lgu7Wse-2BeAA2COmTgKSPKR\"><img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"200\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/4917baf2-71a7-4bbf-8eb3-aaac5caf6b74/1080x1080.png\"></a></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"400\" style=\"width:400px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.2.1.1.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOf3hOjRWsy7QYS7Eg0K6e2jx-2BFFav54XZQdvOErqzvIo0zYExlguy06PvLUQWhSQp0nukXfKhPOOKFpeM7S9eE86fG0u1mtYXkIE-2BONOoH3ejnPdruN3u-2B1i6qjKoy-2F6JYxazmZb0CDcOic45gGxRWf26MTAAANCDf-2BUuXZDm0ePR-2FUNb-2Bm0ncvAXZncbk5z30-3DSXAB_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSdNUvFlONAS93NeV0Ea52yU-2By5994dGqguSxDCdYww6ISa8U11WWR-2BAJhrRFwfqUL43iNtva0ecQc0QqkGS65KHnfx2I8WbqIzRVoEu0K77P5-2BP3DPzyO9zV6gbTMqoZelPTJXB2zryzhEK54O-2BGdOwaNHVkCw1K5mnr9GufpHLMdwCEz-2Fhp18XOdUOW3eeZkYPHVHwmPgt25tex7b2iR1DcI6UXRACsGyfu2wrso4FhqYjXpvUvPkjBIMHsmfg4qaCmNifve-2Fx-2FUre-2BENqCofvDnwcNCdnU1-2BxLkHEYnh-2B0DO3gP7ByPwlZAE5WqLDCZ0Np5JcR3w-2BNkaUhmK5USUSdJWfP5KIDr09AD7B5iB-2FuA5Nmu7N-2F9QqXbR95U5AE057aNKtyQLSh5RjCTZNEc1Ue3LIDqJUR-2F-2Bq-2FroRbStdcndxWED1ucUxuZfugaEyiLV9upxpL3DuBmlTXU-2Fj0e3QSdfNXesfITBi3aNSmfzSNn34cYpcM-2BOKJKDWCWhUMoY3gQdrYzIh4ScHzga431hecVI8CWcjo1Ms-2ByGNB11qpBzOjKJcU-2B8YtIlbBpajvOoQd1h13Bxmb00VqpIQxmGbhapxmNv-2F8i2H0p9S1rdlqHLNnGtnNeH3kscw-2FNNMKFxOCh-2BWOv87nbVt-2BbkGr-2BVcADtd-2FWJP-2B17mjWpMXIWFL6zlmvebJ7CbWBdCBmcubuqXjE488qU1VG7hhFELopZwpZwYHLAa4sAF9Lf-2BjuvkVf2PjGdLnfS995w-2FVE7zDC1j0g3zT2URxynehHPMsz4SFgmKu30d3oOhNeYW8Jnzh\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>Ten Finalists Selected for Low-Cost Sensing Challenge</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.1.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">DIU, USNORTHCOM, and the U.S. Army announced the ten finalists for the C-sUAS Low-Cost Sensing (LCS) Challenge. These companies will demonstrate their sensor technologies at the Falcon Peak exercise in September. The challenge aims to find affordable, scalable solutions to augment existing C-sUAS systems, with finalists offering diverse sensor modalities and potential cost savings of 50-80 percent.</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOf3hOjRWsy7QYS7Eg0K6e2jx-2BFFav54XZQdvOErqzvIo0zYExlguy06PvLUQWhSQp0nukXfKhPOOKFpeM7S9eE86fG0u1mtYXkIE-2BONOoH3ejnPdruN3u-2B1i6qjKoy-2F6JYxazmZb0CDcOic45gGxRWf26MTAAANCDf-2BUuXZDm0ePR-2FUNb-2Bm0ncvAXZncbk5z30-3DWWtU_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSdNUvFlONAS93NeV0Ea52yU-2By5994dGqguSxDCdYww6ISa8U11WWR-2BAJhrRFwfqUL43iNtva0ecQc0QqkGS65KHnfx2I8WbqIzRVoEu0K77P5-2BP3DPzyO9zV6gbTMqoZelPTJXB2zryzhEK54O-2BGdOwaNHVkCw1K5mnr9GufpHLMdwCEz-2Fhp18XOdUOW3eeZkYPHVHwmPgt25tex7b2iR1DcI6UXRACsGyfu2wrso4FhqYjXpvUvPkjBIMHsmfg4qaCmNifve-2Fx-2FUre-2BENqCofvDnwcNCdnU1-2BxLkHEYnh-2B0DO3gP7ByPwlZAE5WqLDCZ0Np5JcR3w-2BNkaUhmK5USUSdJWfP5KIDr09AD7B5iB-2FuA5Nmu7N-2F9QqXbR95U5AE057aNKtyQLSh5RjCTZNEc1Ue3LIDqJUR-2F-2Bq-2FroRbStdcndxWED1ucUxuZfugaEyiLV9upxpL3DuBmlTXU-2Fj0e3QSdfNXesfITBi3aNSmfzSNn34cYpcM-2BOKJKDWCWhUMoY3gQdrYzIh4ScHzga431hecVI8CWcjo1Ms-2ByGNB11qpBzOjKJcU-2B8YtIlbBpajvOoQd1h13Bxmb00VqpIQxmGZrYA9k9qlnzlsaLpqCPQynYOWDQs-2BaETMo12tSTR1-2Fd6Rm8oI5LN6Oz7w1uV-2FUmQnmmSbVbxvQFp5Y4JPiX6dPKOfqi9KL4X-2BC6AdfkzgQKkI5Oi6G-2FcXvFO5pcTwOV7VZrAcNBzhEU8C6PzUd5ivAVJEyyW4C5GR4o7OosE4Ur1EAHLTzS8Z2464WPtBAPOYW54YmbyCTmUM8tXptd7OF\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-family: arial, helvetica, sans-serif; font-size: 14px\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"200\" style=\"width:200px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cBiyKgSAf3sHzEQtGwL8gU.1.2.1.1.1.1.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:25px 0px 5px 5px;\" valign=\"top\" align=\"left\">\r\n          \r\n        <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOffh5cff6apFC5n8cenkpjQ3jpqxw-2B1QmwYOfyJ0xj1BT5Ac1CHJOGjcj-2Br9TgBos07S9a2Zb-2FloF9FxAO51SF2WB2VjJsi6kyyubYjw5w49pN9tRMx00UAtAj9fvNs0iXYYwrIKtUICixZye5cIUMKH7h9Cui4GV7lyjOWNKeeMx2oMAJr5Sg6FI-2F6DshTy6w-3DX_uV_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSdNUvFlONAS93NeV0Ea52yU-2By5994dGqguSxDCdYww6ISa8U11WWR-2BAJhrRFwfqUL43iNtva0ecQc0QqkGS65KHnfx2I8WbqIzRVoEu0K77P5-2BP3DPzyO9zV6gbTMqoZelPTJXB2zryzhEK54O-2BGdOwaNHVkCw1K5mnr9GufpHLMdwCEz-2Fhp18XOdUOW3eeZkYPHVHwmPgt25tex7b2iR1DcI6UXRACsGyfu2wrso4FhqYjXpvUvPkjBIMHsmfg4qaCmNifve-2Fx-2FUre-2BENqCofvDnwcNCdnU1-2BxLkHEYnh-2B0DO3gP7ByPwlZAE5WqLDCZ0Np5JcR3w-2BNkaUhmK5USUSdJWfP5KIDr09AD7B5iB-2FuA5Nmu7N-2F9QqXbR95U5AE057aNKtyQLSh5RjCTZNEc1Ue3LIDqJUR-2F-2Bq-2FroRbStdcndxWED1ucUxuZfugaEyiLV9upxpL3DuBmlTXU-2Fj0e3QSdfNXesfITBi3aNSmfzSNn34cYpcM-2BOKJKDWCWhUMoY3gQdrYzIh4ScHzga431hecVI8CWcjo1Ms-2ByGNB11qpBzOjKJcU-2B8YtIlbBpajvOoQd1h13Bxmb00VqpIQxmGY4tYlk39QJP-2F6wUuvHJsUWAT0QhOG8qt92257MYA4C-2FA-2FKREuzPiYYBQPjqWIQHJygEFDVHM5b-2BNioZIvc3eM4-2BU3QiGLBNe43JN08FJ1PzVI-2FNUAEF9uWt-2Fi-2BVblDQskAknbfiTFWLIkont5NSHDWUslky6VN1jqQin5Y-2FfT-2FTRjpXvJbaxJoZsSUPUUC4how44m-2Bjrmbej8KndZEB-2FKx\"><img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"200\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/df94229a-2864-4959-a62d-74f01ac2ce3a/1080x1080.png\"></a></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"400\" style=\"width:400px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.2.1.1.1.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOffh5cff6apFC5n8cenkpjQ3jpqxw-2B1QmwYOfyJ0xj1BT5Ac1CHJOGjcj-2Br9TgBos07S9a2Zb-2FloF9FxAO51SF2WB2VjJsi6kyyubYjw5w49pN9tRMx00UAtAj9fvNs0iXYYwrIKtUICixZye5cIUMKH7h9Cui4GV7lyjOWNKeeMx2oMAJr5Sg6FI-2F6DshTy6w-3D3lNH_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSdNUvFlONAS93NeV0Ea52yU-2By5994dGqguSxDCdYww6ISa8U11WWR-2BAJhrRFwfqUL43iNtva0ecQc0QqkGS65KHnfx2I8WbqIzRVoEu0K77P5-2BP3DPzyO9zV6gbTMqoZelPTJXB2zryzhEK54O-2BGdOwaNHVkCw1K5mnr9GufpHLMdwCEz-2Fhp18XOdUOW3eeZkYPHVHwmPgt25tex7b2iR1DcI6UXRACsGyfu2wrso4FhqYjXpvUvPkjBIMHsmfg4qaCmNifve-2Fx-2FUre-2BENqCofvDnwcNCdnU1-2BxLkHEYnh-2B0DO3gP7ByPwlZAE5WqLDCZ0Np5JcR3w-2BNkaUhmK5USUSdJWfP5KIDr09AD7B5iB-2FuA5Nmu7N-2F9QqXbR95U5AE057aNKtyQLSh5RjCTZNEc1Ue3LIDqJUR-2F-2Bq-2FroRbStdcndxWED1ucUxuZfugaEyiLV9upxpL3DuBmlTXU-2Fj0e3QSdfNXesfITBi3aNSmfzSNn34cYpcM-2BOKJKDWCWhUMoY3gQdrYzIh4ScHzga431hecVI8CWcjo1Ms-2ByGNB11qpBzOjKJcU-2B8YtIlbBpajvOoQd1h13Bxmb00VqpIQxmGYYBy-2FfDTl7jWgBG87yp3bA6GTIANtQJYpUm4HgnKlGb8u1XKE0ucub3Lwa-2BR11Njvg1oB9YeFlF-2F8MqjN7zLncLMB8tmgci4zIIski6IlqIEMdgz6nCqY9vVUzbDsmdZ0-2FUiWtW5eERKpF-2BZRfIgf8amEnYuG7UD6F2JW0MZvYesOu9ImWBxi6utezHt2Id0WbfVRRXOxMy3c9Sb5SrXFr\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>Updates to Blue UAS List, Initial Recognized Assessor Cohort Announced</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.1.1.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif; font-size: 14px\">In support of Secretary Hegseth’s recent memo on “Unleashing U.S. Military Drone Dominance” and President Trump’s </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILjLr-2Fl08FkOyaXVK2m65UpiWc6LuGZGJmoxoUam-2FjxdX-2BG0liDq5rHxICQ5-2Bg29lbdZGMuBK-2BnAMXF09MkjUFuKYw4PwWJPjH4a6JiaAvBucfNo7CErs3YiIw-2FonbDAH5LiSBFKtQIuckwyRWh5XSktHcf471qePUB8Jr8xfg0kccv7pWKbNV9Q4MrttzGh-2FmQydWvJHkC2eISVktvnZJ5Q-3D-XR__V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSdNUvFlONAS93NeV0Ea52yU-2By5994dGqguSxDCdYww6ISa8U11WWR-2BAJhrRFwfqUL43iNtva0ecQc0QqkGS65KHnfx2I8WbqIzRVoEu0K77P5-2BP3DPzyO9zV6gbTMqoZelPTJXB2zryzhEK54O-2BGdOwaNHVkCw1K5mnr9GufpHLMdwCEz-2Fhp18XOdUOW3eeZkYPHVHwmPgt25tex7b2iR1DcI6UXRACsGyfu2wrso4FhqYjXpvUvPkjBIMHsmfg4qaCmNifve-2Fx-2FUre-2BENqCofvDnwcNCdnU1-2BxLkHEYnh-2B0DO3gP7ByPwlZAE5WqLDCZ0Np5JcR3w-2BNkaUhmK5USUSdJWfP5KIDr09AD7B5iB-2FuA5Nmu7N-2F9QqXbR95U5AE057aNKtyQLSh5RjCTZNEc1Ue3LIDqJUR-2F-2Bq-2FroRbStdcndxWED1ucUxuZfugaEyiLV9upxpL3DuBmlTXU-2Fj0e3QSdfNXesfITBi3aNSmfzSNn34cYpcM-2BOKJKDWCWhUMoY3gQdrYzIh4ScHzga431hecVI8CWcjo1Ms-2ByGNB11qpBzOjKJcU-2B8YtIlbBpajvOoQd1h13Bxmb00VqpIQxmGZ2pd6Rbhg4WaUc8tSRBt-2FEHBQ42QEKObdgsVxkHjlr5mSzRKst29NwxCWC2JycEI9c252LAOklxa4N1kxOAYHk3MJidNqUZOell-2FAm717Fyin8QrTJpv3PYg8i9HXL24JadpbQytyl4NazjJPzpzstkFWDNbSV-2Bhf-2FGmesW2Puv0OFwCsqhv3VRVzQWOPOWdBHOqz-2FBFBo1ovKU1K8IoFR\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif; font-size: 14px\"><u>Executive Order</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif; font-size: 14px\">, DIU has made several announcements related to the Blue UAS Cleared List. These updates support DIU’s continued efforts to provide pathways onto the Blue UAS Cleared List to accelerate trusted drone capabilities to the warfighter. Select updates include: expanding the Blue UAS Cleared List to include Green UAS certification, naming the initial cohort of Recognized Assessors, and refreshing the Blue UAS website to reflect new designations, including Blue UAS Select. We look forward to the immediate impact of these changes.</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkVHZbbtBho-2BakVvlGzEpOffh5cff6apFC5n8cenkpjQ3jpqxw-2B1QmwYOfyJ0xj1BT5Ac1CHJOGjcj-2Br9TgBos07S9a2Zb-2FloF9FxAO51SF2WB2VjJsi6kyyubYjw5w49pN9tRMx00UAtAj9fvNs0iXYYwrIKtUICixZye5cIUMKH7h9Cui4GV7lyjOWNKeeMx2oMAJr5Sg6FI-2F6DshTy6w-3Dfwai_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSdNUvFlONAS93NeV0Ea52yU-2By5994dGqguSxDCdYww6ISa8U11WWR-2BAJhrRFwfqUL43iNtva0ecQc0QqkGS65KHnfx2I8WbqIzRVoEu0K77P5-2BP3DPzyO9zV6gbTMqoZelPTJXB2zryzhEK54O-2BGdOwaNHVkCw1K5mnr9GufpHLMdwCEz-2Fhp18XOdUOW3eeZkYPHVHwmPgt25tex7b2iR1DcI6UXRACsGyfu2wrso4FhqYjXpvUvPkjBIMHsmfg4qaCmNifve-2Fx-2FUre-2BENqCofvDnwcNCdnU1-2BxLkHEYnh-2B0DO3gP7ByPwlZAE5WqLDCZ0Np5JcR3w-2BNkaUhmK5USUSdJWfP5KIDr09AD7B5iB-2FuA5Nmu7N-2F9QqXbR95U5AE057aNKtyQLSh5RjCTZNEc1Ue3LIDqJUR-2F-2Bq-2FroRbStdcndxWED1ucUxuZfugaEyiLV9upxpL3DuBmlTXU-2Fj0e3QSdfNXesfITBi3aNSmfzSNn34cYpcM-2BOKJKDWCWhUMoY3gQdrYzIh4ScHzga431hecVI8CWcjo1Ms-2ByGNB11qpBzOjKJcU-2B8YtIlbBpajvOoQd1h13Bxmb00VqpIQxmGZ9tFzdqLvlEH-2FpU6bD3PEliQCCHeleXb1h5JwoeqEOwxkpRHJzRCP9N5bUJUGgdejvgtAFbBZeiIjh31L4G1qcskPQgvzcGLJl9DPfaxvbck4WOYYtxwSs-2BFVgmYGper4Q5e6-2BlJutG-2BPvDUfb8AUN-2BRwlaMdnK5J-2Bb99lbBsnE75MjA0jd4C06BSed-2Fi2ZRotEWIZKhsiYZEQQz3VEVJ-2F\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: underline; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; font-size: 14px; font-family: arial, helvetica, sans-serif\">Learn more</span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"b2aae8b4-07ed-4408-856d-9fad1455350e.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 70px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2e35c854-f82d-44a2-a0f5-30013d25e3d3.2.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px; line-height:30px; text-align:inherit; background-color:#e6e6e6;\" height=\"100%\" valign=\"top\" bgcolor=\"#e6e6e6\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-family: helvetica, sans-serif; color: #0d66bb; font-size: 30px\"><strong>Open Opportunities</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#ffffff\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"200\" style=\"width:200px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cBiyKgSAf3sHzEQtGwL8gU.1.1.1.1.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:25px 0px 5px 5px;\" valign=\"top\" align=\"left\">\r\n          \r\n        <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9kGc-2Fi654EjxfC7gcUneG-2FZ8t5AyHoUl6ZdeO-2FYuJPcUTJiRYNwzKE1XObChGB-2B-2BCaCoIghdLCzaLv4F8SC8T4411K7i5hbARk9-2FKFN-2B71yANMSk_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSdNUvFlONAS93NeV0Ea52yU-2By5994dGqguSxDCdYww6ISa8U11WWR-2BAJhrRFwfqUL43iNtva0ecQc0QqkGS65KHnfx2I8WbqIzRVoEu0K77P5-2BP3DPzyO9zV6gbTMqoZelPTJXB2zryzhEK54O-2BGdOwaNHVkCw1K5mnr9GufpHLMdwCEz-2Fhp18XOdUOW3eeZkYPHVHwmPgt25tex7b2iR1DcI6UXRACsGyfu2wrso4FhqYjXpvUvPkjBIMHsmfg4qaCmNifve-2Fx-2FUre-2BENqCofvDnwcNCdnU1-2BxLkHEYnh-2B0DO3gP7ByPwlZAE5WqLDCZ0Np5JcR3w-2BNkaUhmK5USUSdJWfP5KIDr09AD7B5iB-2FuA5Nmu7N-2F9QqXbR95U5AE057aNKtyQLSh5RjCTZNEc1Ue3LIDqJUR-2F-2Bq-2FroRbStdcndxWED1ucUxuZfugaEyiLV9upxpL3DuBmlTXU-2Fj0e3QSdfNXesfITBi3aNSmfzSNn34cYpcM-2BOKJKDWCWhUMoY3gQdrYzIh4ScHzga431hecVI8CWcjo1Ms-2ByGNB11qpBzOjKJcU-2B8YtIlbBpajvOoQd1h13Bxmb00VqpIQxmGY8esSmE2-2FVf1xdPs5OF-2F4Fle0-2FKgtgdseCLfIlrbUrE-2BqHmNBRB83zmhKrB0NJsSSPiBdlE6JFaiDw6UZd5d14OgNn1EZt-2FJi0Smjf0ZhcqV2wFtzvxpGz7267jJWakKzWGMFQiu-2B56RdhesgSTFcHBoZVz70OTakIevy7YpJdrOPRqo9-2FS49tdaB2FfTGKXIXYnmL2-2BMdZ8QUrhulcBNH\"><img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"200\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/21cb845f-dfa6-43b3-89b5-9485c7a42833/2500x2500.jpg\"></a></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"400\" style=\"width:400px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"nab3S7wZerNme5cK7ZVFZW.2.1.1.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:25px 30px 5px 30px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9kGc-2Fi654EjxfC7gcUneG-2FZ8t5AyHoUl6ZdeO-2FYuJPcUTJiRYNwzKE1XObChGB-2B-2BCaCoIghdLCzaLv4F8SC8T4411K7i5hbARk9-2FKFN-2B71yA2ZaG_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSdNUvFlONAS93NeV0Ea52yU-2By5994dGqguSxDCdYww6ISa8U11WWR-2BAJhrRFwfqUL43iNtva0ecQc0QqkGS65KHnfx2I8WbqIzRVoEu0K77P5-2BP3DPzyO9zV6gbTMqoZelPTJXB2zryzhEK54O-2BGdOwaNHVkCw1K5mnr9GufpHLMdwCEz-2Fhp18XOdUOW3eeZkYPHVHwmPgt25tex7b2iR1DcI6UXRACsGyfu2wrso4FhqYjXpvUvPkjBIMHsmfg4qaCmNifve-2Fx-2FUre-2BENqCofvDnwcNCdnU1-2BxLkHEYnh-2B0DO3gP7ByPwlZAE5WqLDCZ0Np5JcR3w-2BNkaUhmK5USUSdJWfP5KIDr09AD7B5iB-2FuA5Nmu7N-2F9QqXbR95U5AE057aNKtyQLSh5RjCTZNEc1Ue3LIDqJUR-2F-2Bq-2FroRbStdcndxWED1ucUxuZfugaEyiLV9upxpL3DuBmlTXU-2Fj0e3QSdfNXesfITBi3aNSmfzSNn34cYpcM-2BOKJKDWCWhUMoY3gQdrYzIh4ScHzga431hecVI8CWcjo1Ms-2ByGNB11qpBzOjKJcU-2B8YtIlbBpajvOoQd1h13Bxmb00VqpIQxmGYDyHGhBl0vm4DbDNNoFdz56pBz0DLajH3CivMTakf-2B-2FVPu1PeNdxzhr-2FTHwmaZxMM5-2FkocqcSsI1oMc6AWPYyvCEeetz-2B-2B2BLO-2FzKkPgjdr3-2B73QZNaVQ-2B2oZrAeNq8lwamIl6-2FDo58VT-2BftsJgHhYXTRcOnUZbjibLneIYBN6A-2FtLPrBkbQudNZQrJ4fuaA3eDSmdU7qm4bD8sSFnzMAP\"><span style=\"color: #454545; font-size: 24px; font-family: arial, helvetica, sans-serif\"><u><strong>DEADLINE UPDATED: $20M Available For ‘Ready Now’ UxS Solutions</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"7126d5e5-f479-4839-bf09-29a55635f39c.1.1.1.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 30px 25px 30px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: start\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: bold; font-stretch: inherit; line-height: inherit; font-family: helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 16px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #0d66bb; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial\">—</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; color: #454545; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\">In response to an accelerated timeline of need from our warfighter partners, we are updating the timeline for submissions to Design Reference Mission (DRM) 2 to August 8 (was previously August 15) and the demonstration event date to October 6 - 9, 2025.<br>\r\nOur Project G.I. Prize Challenge seeks “mission-ready” uncrewed systems (UxS) solutions to enhance the speed and lethality for small, dispersed targeting-strike cells operating under denied, disrupted, intermittent, and low-bandwidth conditions. Proposed challenge solutions must enhance tactical formation’s lethality, survivability, or overall mission effectiveness within the specified DRM and serve the needs of a DoD customer.<br>\r\nProject G.I. is intended to be able to respond rapidly to emerging needs from end users throughout DoD, and this timeline update is an example of how we will respond in order to deliver capabilities on the timeline required.<br>\r\n</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9kGc-2Fi654EjxfC7gcUneG-2FZ8t5AyHoUl6ZdeO-2FYuJPcUTJiRYNwzKE1XObChGB-2B-2BCaCoIghdLCzaLv4F8SC8T4411K7i5hbARk9-2FKFN-2B71yA__L8_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSdNUvFlONAS93NeV0Ea52yU-2By5994dGqguSxDCdYww6ISa8U11WWR-2BAJhrRFwfqUL43iNtva0ecQc0QqkGS65KHnfx2I8WbqIzRVoEu0K77P5-2BP3DPzyO9zV6gbTMqoZelPTJXB2zryzhEK54O-2BGdOwaNHVkCw1K5mnr9GufpHLMdwCEz-2Fhp18XOdUOW3eeZkYPHVHwmPgt25tex7b2iR1DcI6UXRACsGyfu2wrso4FhqYjXpvUvPkjBIMHsmfg4qaCmNifve-2Fx-2FUre-2BENqCofvDnwcNCdnU1-2BxLkHEYnh-2B0DO3gP7ByPwlZAE5WqLDCZ0Np5JcR3w-2BNkaUhmK5USUSdJWfP5KIDr09AD7B5iB-2FuA5Nmu7N-2F9QqXbR95U5AE057aNKtyQLSh5RjCTZNEc1Ue3LIDqJUR-2F-2Bq-2FroRbStdcndxWED1ucUxuZfugaEyiLV9upxpL3DuBmlTXU-2Fj0e3QSdfNXesfITBi3aNSmfzSNn34cYpcM-2BOKJKDWCWhUMoY3gQdrYzIh4ScHzga431hecVI8CWcjo1Ms-2ByGNB11qpBzOjKJcU-2B8YtIlbBpajvOoQd1h13Bxmb00VqpIQxmGZkTpxyTrpax0bzKlC5NE3ksTpyPQTq8uGG7Ee-2BZVyJTFKvjRKshxBGhP8ghAb02vBL1-2FrxNnzhuruW4m8y5MxL05arUVnDecW2KRJjTCAOnTnYhJoRA5N9g0T7WKxF-2BLVYosgoGDVFCV9L3kiZSnWpBNZZIJBx0WJ0e-2B76VbNGpciAQKeMK1kVLKZ-2BJT5Dd5iRhK-2F7Rq04Qt68JgsEpsiB\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"><u><strong>Learn more</strong></u></span></a><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBejvUMPiSc9SBzZL8Iig5LBGf5cDbNULUGgx51GH7iMFd-2Ba7oWf6DT1RerEs5s-2Fm53sjl65ZaHuTxHcLpmTGNiWl2DZN6NAhlnqvKHEJmJ-2BMD0Iy1eE-2FLz8pOiZlGCnExfcraYwRU53JQXmwrVYdozE-2BcI8lL0-2BtsZje6U65tXljcg-3D-3DVst6_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSdNUvFlONAS93NeV0Ea52yU-2By5994dGqguSxDCdYww6ISa8U11WWR-2BAJhrRFwfqUL43iNtva0ecQc0QqkGS65KHnfx2I8WbqIzRVoEu0K77P5-2BP3DPzyO9zV6gbTMqoZelPTJXB2zryzhEK54O-2BGdOwaNHVkCw1K5mnr9GufpHLMdwCEz-2Fhp18XOdUOW3eeZkYPHVHwmPgt25tex7b2iR1DcI6UXRACsGyfu2wrso4FhqYjXpvUvPkjBIMHsmfg4qaCmNifve-2Fx-2FUre-2BENqCofvDnwcNCdnU1-2BxLkHEYnh-2B0DO3gP7ByPwlZAE5WqLDCZ0Np5JcR3w-2BNkaUhmK5USUSdJWfP5KIDr09AD7B5iB-2FuA5Nmu7N-2F9QqXbR95U5AE057aNKtyQLSh5RjCTZNEc1Ue3LIDqJUR-2F-2Bq-2FroRbStdcndxWED1ucUxuZfugaEyiLV9upxpL3DuBmlTXU-2Fj0e3QSdfNXesfITBi3aNSmfzSNn34cYpcM-2BOKJKDWCWhUMoY3gQdrYzIh4ScHzga431hecVI8CWcjo1Ms-2ByGNB11qpBzOjKJcU-2B8YtIlbBpajvOoQd1h13Bxmb00VqpIQxmGaEzF1kiMNLtdxwW5fU1G4rBbRyKQkoTX8sPdwmMTJNli-2BwXr8K9ayQpeI0lEWi3E4be5WH-2BtBwh8QEkSgIp-2BtubHnssQyzWvQnVZwR69C2rfDPyE2EKXYswBvg0R1yR1Zp1o4O-2FA8KwwELpyLm3v2xcPMuEa1uxzRociY7Yp6Wh1bMcsJTt72niJOnR3WdX-2FhPkLBLKgIeCuLafL4kcxlD\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 14px; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-family: arial, helvetica, sans-serif\"><u><strong><br>\r\n</strong></u></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"b2aae8b4-07ed-4408-856d-9fad1455350e.1.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 70px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:10px 15px 30px 15px;\" bgcolor=\"#fcfcfc\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"570\" style=\"width:570px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"3221ee3c-4143-4441-97d7-1e054eb12851.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 5px 0px; line-height:27px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: center\"><span style=\"color: #0d66bb; font-size: 24px\"><strong>DIU In the News</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"d0ad2566-78a7-4d01-a35c-f8389d5a2028.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 0px 0px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><ul>\r\n  <li style=\"text-align: inherit; font-family: arial, helvetica, sans-serif; font-size: 14px; font-size: 14px\"><span style=\"font-family: arial, helvetica, sans-serif; font-size: 14px\"><strong>GovDesignHub:</strong></span><span style=\"font-family: arial, helvetica, sans-serif; font-size: 14px\"> </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILqlzzbuq2-2BOK4nm0TqPg2BlebE5JxiCFMQ6tXJ1rgFUKfrQzHLsWmU4Ph0rDJvFoMfLbvb5fdylgNoqRT2r4VPUVRSK6mUh-2FKmTrEGHChGtZe0pYSgD2qd6zi17ZwmiKSaseBfAqpNbftzFgi1dcJ3QKDebUsMCR-2FQeemLDL-2Bjl7XckmY8xCSZE1h05iHcQbmQ-3D-3D9Yq2_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSdNUvFlONAS93NeV0Ea52yU-2By5994dGqguSxDCdYww6ISa8U11WWR-2BAJhrRFwfqUL43iNtva0ecQc0QqkGS65KHnfx2I8WbqIzRVoEu0K77P5-2BP3DPzyO9zV6gbTMqoZelPTJXB2zryzhEK54O-2BGdOwaNHVkCw1K5mnr9GufpHLMdwCEz-2Fhp18XOdUOW3eeZkYPHVHwmPgt25tex7b2iR1DcI6UXRACsGyfu2wrso4FhqYjXpvUvPkjBIMHsmfg4qaCmNifve-2Fx-2FUre-2BENqCofvDnwcNCdnU1-2BxLkHEYnh-2B0DO3gP7ByPwlZAE5WqLDCZ0Np5JcR3w-2BNkaUhmK5USUSdJWfP5KIDr09AD7B5iB-2FuA5Nmu7N-2F9QqXbR95U5AE057aNKtyQLSh5RjCTZNEc1Ue3LIDqJUR-2F-2Bq-2FroRbStdcndxWED1ucUxuZfugaEyiLV9upxpL3DuBmlTXU-2Fj0e3QSdfNXesfITBi3aNSmfzSNn34cYpcM-2BOKJKDWCWhUMoY3gQdrYzIh4ScHzga431hecVI8CWcjo1Ms-2ByGNB11qpBzOjKJcU-2B8YtIlbBpajvOoQd1h13Bxmb00VqpIQxmGb-2BcLcr8tcTE9WsmO0NU9942Q8fvrkh029ew8a60YHC-2BMffkG4-2Fbx7WMMC9e1LNpHseti8FRepuswXidR1Q7cUpKlvxP7DLo5RDS72Mf9g1x1Bnr86wtIos49z9oQ18-2BHhuvvD9eSVnf0idnNNBG302A4X3IcZbvZkSvjUWhm8eR3qP9Wuct6TtHdT6N1Mcy0BPEuBz-2F-2FhDeaixB-2F40S05h\"><span style=\"font-family: arial, helvetica, sans-serif; font-size: 14px\"><u>Bridging the Defense Supply Chain Gap With Blue Manufacturing</u></span></a></li>\r\n  <li style=\"text-align: inherit; font-family: arial, helvetica, sans-serif; font-size: 14px; font-size: 14px\"><span style=\"font-family: arial, helvetica, sans-serif; font-size: 14px\"><strong>Federal News Network:</strong></span><span style=\"font-family: arial, helvetica, sans-serif; font-size: 14px\"> </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILoJ0z3Av2gcCILx9ukl4Ji2bXz81X6dWYF2CWfj4edSguN5pEE1dZ8lXoXQYO4GSsZJoNQVq-2B80zuCbcLD6go3LyVlcS-2F7qlZ110mJMk6iBIb6YfesjfTaeIcSBx92Jlo7MNlw8EidC0rwzMzgz7Ei6LVL-2B43JwzQutm5fY6sIXklNyMk-2Fk5cazTxNWgP474UA-3D-3D-ofG_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSdNUvFlONAS93NeV0Ea52yU-2By5994dGqguSxDCdYww6ISa8U11WWR-2BAJhrRFwfqUL43iNtva0ecQc0QqkGS65KHnfx2I8WbqIzRVoEu0K77P5-2BP3DPzyO9zV6gbTMqoZelPTJXB2zryzhEK54O-2BGdOwaNHVkCw1K5mnr9GufpHLMdwCEz-2Fhp18XOdUOW3eeZkYPHVHwmPgt25tex7b2iR1DcI6UXRACsGyfu2wrso4FhqYjXpvUvPkjBIMHsmfg4qaCmNifve-2Fx-2FUre-2BENqCofvDnwcNCdnU1-2BxLkHEYnh-2B0DO3gP7ByPwlZAE5WqLDCZ0Np5JcR3w-2BNkaUhmK5USUSdJWfP5KIDr09AD7B5iB-2FuA5Nmu7N-2F9QqXbR95U5AE057aNKtyQLSh5RjCTZNEc1Ue3LIDqJUR-2F-2Bq-2FroRbStdcndxWED1ucUxuZfugaEyiLV9upxpL3DuBmlTXU-2Fj0e3QSdfNXesfITBi3aNSmfzSNn34cYpcM-2BOKJKDWCWhUMoY3gQdrYzIh4ScHzga431hecVI8CWcjo1Ms-2ByGNB11qpBzOjKJcU-2B8YtIlbBpajvOoQd1h13Bxmb00VqpIQxmGbB-2FkGI6gzQCsfbLNRsMILP0ocpYBEmDtsLRnyiDcqAQUh20dOpg6q63lGkj6863coz6aHaf5afFIy5dUvETzJ8hmnYrtxNEYhYge5NdKvjXIctUJ1a0-2BTw28uNFsUbPD8rIl0u-2B-2BKLBr9KOnwQ21rGthlTJ7mVoNusj4aMecEkhve3rpeUjOqVwjbtxjgo-2FbGXyRsrFC085WfHOXZyuZrb\"><span style=\"font-family: arial, helvetica, sans-serif; font-size: 14px\"><u>A Look Back at the Origins of DIU</u></span></a></li>\r\n  <li style=\"text-align: inherit; font-family: arial, helvetica, sans-serif; font-size: 14px; font-size: 14px\"><span style=\"font-family: arial, helvetica, sans-serif; font-size: 14px\"><strong>FastCompany:</strong></span><span style=\"font-family: arial, helvetica, sans-serif; font-size: 14px\"> </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILoJ0z3Av2gcCILx9ukl4Ji2bXz81X6dWYF2CWfj4edSguN5pEE1dZ8lXoXQYO4GSsZJoNQVq-2B80zuCbcLD6go3LyVlcS-2F7qlZ110mJMk6iBIb6YfesjfTaeIcSBx92Jlo7MNlw8EidC0rwzMzgz7Ei6LVL-2B43JwzQutm5fY6sIXklNyMk-2Fk5cazTxNWgP474UA-3D-3D9LLH_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSdNUvFlONAS93NeV0Ea52yU-2By5994dGqguSxDCdYww6ISa8U11WWR-2BAJhrRFwfqUL43iNtva0ecQc0QqkGS65KHnfx2I8WbqIzRVoEu0K77P5-2BP3DPzyO9zV6gbTMqoZelPTJXB2zryzhEK54O-2BGdOwaNHVkCw1K5mnr9GufpHLMdwCEz-2Fhp18XOdUOW3eeZkYPHVHwmPgt25tex7b2iR1DcI6UXRACsGyfu2wrso4FhqYjXpvUvPkjBIMHsmfg4qaCmNifve-2Fx-2FUre-2BENqCofvDnwcNCdnU1-2BxLkHEYnh-2B0DO3gP7ByPwlZAE5WqLDCZ0Np5JcR3w-2BNkaUhmK5USUSdJWfP5KIDr09AD7B5iB-2FuA5Nmu7N-2F9QqXbR95U5AE057aNKtyQLSh5RjCTZNEc1Ue3LIDqJUR-2F-2Bq-2FroRbStdcndxWED1ucUxuZfugaEyiLV9upxpL3DuBmlTXU-2Fj0e3QSdfNXesfITBi3aNSmfzSNn34cYpcM-2BOKJKDWCWhUMoY3gQdrYzIh4ScHzga431hecVI8CWcjo1Ms-2ByGNB11qpBzOjKJcU-2B8YtIlbBpajvOoQd1h13Bxmb00VqpIQxmGbu2A2CtmQFrO-2FVdahbtyyrD9hSc36OtwmI5TLWRtVkB7YE-2FioEeHgOmGM4x8HQC167-2FhfEQQpLsI6E7-2FmMbdhM-2BG-2Bm1BMU-2Fu81bjdTfn8oeXz6mzYm7vWaSscZztRIMLuVggH7Yz0sSmppva9VlVglq23Lm3BqaF1ZWvqO67wexofG6XvIL-2B-2FTkdeL-2BGEAYU7yBBPon5TA7QY3DmpwKq10\"><span style=\"font-family: arial, helvetica, sans-serif; font-size: 14px\"><u>The Missing Key for Defense Innovation? A Good Coworking Space</u></span></a></li>\r\n  <li style=\"text-align: inherit; font-family: arial, helvetica, sans-serif; font-size: 14px; font-size: 14px\"><span style=\"font-family: arial, helvetica, sans-serif; font-size: 14px\"><strong>DefenseOne:</strong></span><span style=\"font-family: arial, helvetica, sans-serif; font-size: 14px\"> </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILqQW9-2BDb694T5bXftTLlY76rcwXHvfyVm-2BqdHHUSFynIy9I3fwBiV1UQLaWDSDKATziPBUYXneARAkObCFWt5thLKq4-2BusqaUA5fSzPp2FpW4XidkS8BrI6lojrqVCs9GxQycL40jbtbDib24q2qsQnZzO9IVEW8KHR1q3fSVqX-2Bsu74ojxqBIVEFmV7AhcFHCGltzyOdbV8F-2BPd99f9XmYmB-2BtkROCBpDVr8nQ3nhI00ie6JYvgpdewpygvSYlgh7y2QgXnAJI-2B6Ns9gg5Hgj0jGYs9eCz4ReoFdKQH9bD0leMPJCvAv6C9d49HHuibx3wKhkIhAR1CcAulL3HJeQYsftkHeZFIVh2x5BII2UD5yHSaTcH9Fy8v0MG7M6afsuDEhgqV6iqsrl6p34mrQVE-3DsVVG_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSdNUvFlONAS93NeV0Ea52yU-2By5994dGqguSxDCdYww6ISa8U11WWR-2BAJhrRFwfqUL43iNtva0ecQc0QqkGS65KHnfx2I8WbqIzRVoEu0K77P5-2BP3DPzyO9zV6gbTMqoZelPTJXB2zryzhEK54O-2BGdOwaNHVkCw1K5mnr9GufpHLMdwCEz-2Fhp18XOdUOW3eeZkYPHVHwmPgt25tex7b2iR1DcI6UXRACsGyfu2wrso4FhqYjXpvUvPkjBIMHsmfg4qaCmNifve-2Fx-2FUre-2BENqCofvDnwcNCdnU1-2BxLkHEYnh-2B0DO3gP7ByPwlZAE5WqLDCZ0Np5JcR3w-2BNkaUhmK5USUSdJWfP5KIDr09AD7B5iB-2FuA5Nmu7N-2F9QqXbR95U5AE057aNKtyQLSh5RjCTZNEc1Ue3LIDqJUR-2F-2Bq-2FroRbStdcndxWED1ucUxuZfugaEyiLV9upxpL3DuBmlTXU-2Fj0e3QSdfNXesfITBi3aNSmfzSNn34cYpcM-2BOKJKDWCWhUMoY3gQdrYzIh4ScHzga431hecVI8CWcjo1Ms-2ByGNB11qpBzOjKJcU-2B8YtIlbBpajvOoQd1h13Bxmb00VqpIQxmGYndtRnVgj2gurmBwmiSMLAZvJmMEBN8JA2F1jZ-2FJCdZUzpMhnxDvWBa8Ll89-2Fmr4gRXgKsao0AtGjT6bfdfAjX4XjU85yoVU1ySV-2FQkP3aKi89qW3k5bp3TIB7WjxRg7nO-2BvZqRrXwDjNTrJOebvwIeRiYgQXfya4h6Jim5EvVcLGLFHy-2BzAQWZ5x7XFlI-2FjT5XLrdpDTn7QiIKPP6jtYz\"><span style=\"font-family: arial, helvetica, sans-serif; font-size: 14px\"><u>Bill Aims to Lock in DIU’s Dual-Use Reservist Corps</u></span></a></li>\r\n  <li style=\"text-align: inherit; font-family: arial, helvetica, sans-serif; font-size: 14px; font-size: 14px\"><span style=\"font-family: arial, helvetica, sans-serif; font-size: 14px\"><strong>New York Times:</strong></span><span style=\"font-family: arial, helvetica, sans-serif; font-size: 14px\"> </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILsh6gyaVYswwRLPItxcMtUW5o-2FAMHq9hUfUbAIU6ectGzCGRwTKRTyy2bCSzd4d54QLmyQFtd7V3dBtPrkDplq2zEd0ac22zQmDKWRIctQmSqDOnRfNU80fkGNQm91wdiFtMjYVZL7RYacF-2BLY4O4lBIlw1zIcPJoeNt-2FgTLljGGJUqryvaoDqyl-2FYVW-2F-2BsqXmkyKyFPM42v3CBjzb8Ta167DmCod9ZHoSyHxkENgjL4AVJBcdMwnMhhxtNHp-2FKXMmDIIwM6EVXxIdvITF6WUDXHrv3fJYgbkzkamlMGFxWqS6_L_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSdNUvFlONAS93NeV0Ea52yU-2By5994dGqguSxDCdYww6ISa8U11WWR-2BAJhrRFwfqUL43iNtva0ecQc0QqkGS65KHnfx2I8WbqIzRVoEu0K77P5-2BP3DPzyO9zV6gbTMqoZelPTJXB2zryzhEK54O-2BGdOwaNHVkCw1K5mnr9GufpHLMdwCEz-2Fhp18XOdUOW3eeZkYPHVHwmPgt25tex7b2iR1DcI6UXRACsGyfu2wrso4FhqYjXpvUvPkjBIMHsmfg4qaCmNifve-2Fx-2FUre-2BENqCofvDnwcNCdnU1-2BxLkHEYnh-2B0DO3gP7ByPwlZAE5WqLDCZ0Np5JcR3w-2BNkaUhmK5USUSdJWfP5KIDr09AD7B5iB-2FuA5Nmu7N-2F9QqXbR95U5AE057aNKtyQLSh5RjCTZNEc1Ue3LIDqJUR-2F-2Bq-2FroRbStdcndxWED1ucUxuZfugaEyiLV9upxpL3DuBmlTXU-2Fj0e3QSdfNXesfITBi3aNSmfzSNn34cYpcM-2BOKJKDWCWhUMoY3gQdrYzIh4ScHzga431hecVI8CWcjo1Ms-2ByGNB11qpBzOjKJcU-2B8YtIlbBpajvOoQd1h13Bxmb00VqpIQxmGbrtQFOHVag5ElkvYNIHMIPwx6lYPpraf-2FHtow1XILuSy2ZmsxKNIL-2BEy3xmOr8uvXf-2B4CR7Y-2FTYF6uB-2B4iGjFQPN9Mx-2F-2Bj-2BJrE2BtYNiVaa5snE4uRFW3tLDk0VIYy-2F5T1ZPENkcs-2BnVNWYbFDbd1dG7miPGt4JL14r-2Bp2UN2lqMHJ5bt5I8EUO-2BPY-2F8vGQswlx0VZze-2B1Bs-2BuJ1bBWS7c\"><span style=\"font-family: arial, helvetica, sans-serif; font-size: 14px\"><u>Drones Are Key to Winning Wars Now. The U.S. Makes Hardly Any</u></span></a></li>\r\n  <li style=\"text-align: inherit; font-family: arial, helvetica, sans-serif; font-size: 14px; font-size: 14px\"><span style=\"font-family: arial, helvetica, sans-serif; font-size: 14px\"><strong>DefenseNews:</strong></span><span style=\"font-family: arial, helvetica, sans-serif; font-size: 14px\"> </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILj7e4CL7NLf88Lwfzx1JSKdV9pc1h0O56mnsCGeE8y4oYcrJ-2BZRWpGENcdvPhFM7QSQ2OCSPlqOVUyDnhCXk9LLuJo5OHfobArPqAOHYx3PMcFku7IEyKxaaG6IAwCLZmokMgzGL9-2FSUUpsDXTlcIwSWjK79SImuPFc-2Bnbi0bl-2BE7zKfv6MwD7cRbqyRuLmFPjPdvzEY0R8StncznhTLzElfYrqWScqpLs7rp0g7o1KtYyBG_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSdNUvFlONAS93NeV0Ea52yU-2By5994dGqguSxDCdYww6ISa8U11WWR-2BAJhrRFwfqUL43iNtva0ecQc0QqkGS65KHnfx2I8WbqIzRVoEu0K77P5-2BP3DPzyO9zV6gbTMqoZelPTJXB2zryzhEK54O-2BGdOwaNHVkCw1K5mnr9GufpHLMdwCEz-2Fhp18XOdUOW3eeZkYPHVHwmPgt25tex7b2iR1DcI6UXRACsGyfu2wrso4FhqYjXpvUvPkjBIMHsmfg4qaCmNifve-2Fx-2FUre-2BENqCofvDnwcNCdnU1-2BxLkHEYnh-2B0DO3gP7ByPwlZAE5WqLDCZ0Np5JcR3w-2BNkaUhmK5USUSdJWfP5KIDr09AD7B5iB-2FuA5Nmu7N-2F9QqXbR95U5AE057aNKtyQLSh5RjCTZNEc1Ue3LIDqJUR-2F-2Bq-2FroRbStdcndxWED1ucUxuZfugaEyiLV9upxpL3DuBmlTXU-2Fj0e3QSdfNXesfITBi3aNSmfzSNn34cYpcM-2BOKJKDWCWhUMoY3gQdrYzIh4ScHzga431hecVI8CWcjo1Ms-2ByGNB11qpBzOjKJcU-2B8YtIlbBpajvOoQd1h13Bxmb00VqpIQxmGbr-2B-2F-2BKRoJJJqssCjGlHW3UM0NtB5Xxd6rsp2nTZl2uh1qBhAMzbqMa-2FhYwi-2F6R3n1TQQGYIpgh9MEZsJnW-2FiDeNwnzRn5XI2Vd8Nj9U5spfjm3bMYRwCvH2UdzlmX3o2Z-2BFU9sHoLDd-2FXNxtyLFDFuFlUfvi-2FPXVgqidXBL3bBFnBO5FlD1z455elPy4VuDmXnJAozXM9vuOF8UdQQ8JVO\"><span style=\"font-family: arial, helvetica, sans-serif; font-size: 14px\"><u>Jammed and confused: Alaska trial shows pitfalls of fielding U.S. drones</u></span></a></li>\r\n</ul>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-family: arial, helvetica, sans-serif; font-size: 14px\"><br>\r\n</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"9200222e-4167-47db-ae94-88f47ef8d50b\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-family: arial, helvetica, sans-serif\">If you were not the original recipient of this email and would like to sign up for the DIU Newsletter, please register </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILkRcYMiV4RQSYNbz4WjG1zsrVoDrJTcK9AlMfUqQSru5OZJPjwZluHDFvUZw0wQ7Vu6M8-2FmKWpebp4Tkj4KGMvR6Xvdv1bfHdGF3ROb2ml3EFnqIS68d1Ds387XBuD6Jbg-3D-3DoSVD_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSdNUvFlONAS93NeV0Ea52yU-2By5994dGqguSxDCdYww6ISa8U11WWR-2BAJhrRFwfqUL43iNtva0ecQc0QqkGS65KHnfx2I8WbqIzRVoEu0K77P5-2BP3DPzyO9zV6gbTMqoZelPTJXB2zryzhEK54O-2BGdOwaNHVkCw1K5mnr9GufpHLMdwCEz-2Fhp18XOdUOW3eeZkYPHVHwmPgt25tex7b2iR1DcI6UXRACsGyfu2wrso4FhqYjXpvUvPkjBIMHsmfg4qaCmNifve-2Fx-2FUre-2BENqCofvDnwcNCdnU1-2BxLkHEYnh-2B0DO3gP7ByPwlZAE5WqLDCZ0Np5JcR3w-2BNkaUhmK5USUSdJWfP5KIDr09AD7B5iB-2FuA5Nmu7N-2F9QqXbR95U5AE057aNKtyQLSh5RjCTZNEc1Ue3LIDqJUR-2F-2Bq-2FroRbStdcndxWED1ucUxuZfugaEyiLV9upxpL3DuBmlTXU-2Fj0e3QSdfNXesfITBi3aNSmfzSNn34cYpcM-2BOKJKDWCWhUMoY3gQdrYzIh4ScHzga431hecVI8CWcjo1Ms-2ByGNB11qpBzOjKJcU-2B8YtIlbBpajvOoQd1h13Bxmb00VqpIQxmGZCze4ASeVXTKFAaIYF8M3gUtWdxAm-2BzqxQH0bM3uyKYubjT1PMylAFZH1ILzzzUZq0A6h2KK4kBrG4MFcbcAlHlIWzAZ6wFm422-2B82Xpv0ZzNtSnulW4OSFEHWqJIL2BdYSfbNOfW-2FM0knHZGevwqD5M9FQ0MXNhi-2Fb7ZMHj4vyWz6HjfR5v1uaJrhXWgXYrykzh4JHPX4v1ggW-2BOiXBn3\"><span style=\"font-family: arial, helvetica, sans-serif\"><u>here</u></span></a><span style=\"font-family: arial, helvetica, sans-serif\">.</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"divider\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"52646515-03f4-4e8c-9b72-4fc547d4e522.2\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 0px 0px;\" role=\"module-content\" height=\"100%\" valign=\"top\" bgcolor=\"\">\r\n          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" height=\"5px\" style=\"line-height:5px; font-size:5px;\">\r\n            <tbody>\r\n              <tr>\r\n                <td style=\"padding:0px 0px 5px 0px;\" bgcolor=\"#FFFFFF\"></td>\r\n              </tr>\r\n            </tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"112c8b7c-f2db-4e56-a488-a954a02f2d55\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.CzY0f5tAFeDq1sMG7ZgpjdgsKlVwIPTNpzdKOiUDPD7AMjR-2B-2BITtcDo2VB5cKOgB7tsD-2F-2BeB11DytdpaLmbU-2BV1AGqioxMI2oTm1SpzmKlZcp7QVQeuc6HlOF6Vdg4gynNai_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSdNUvFlONAS93NeV0Ea52yU-2By5994dGqguSxDCdYww6ISa8U11WWR-2BAJhrRFwfqUL43iNtva0ecQc0QqkGS65KHnfx2I8WbqIzRVoEu0K77P5-2BP3DPzyO9zV6gbTMqoZelPTJXB2zryzhEK54O-2BGdOwaNHVkCw1K5mnr9GufpHLMdwCEz-2Fhp18XOdUOW3eeZkYPHVHwmPgt25tex7b2iR1DcI6UXRACsGyfu2wrso4FhqYjXpvUvPkjBIMHsmfg4qaCmNifve-2Fx-2FUre-2BENqCofvDnwcNCdnU1-2BxLkHEYnh-2B0DO3gP7ByPwlZAE5WqLDCZ0Np5JcR3w-2BNkaUhmK5USUSdJWfP5KIDr09AD7B5iB-2FuA5Nmu7N-2F9QqXbR95U5AE057aNKtyQLSh5RjCTZNEc1Ue3LIDqJUR-2F-2Bq-2FroRbStdcndxWED1ucUxuZfugaEyiLV9upxpL3DuBmlTXU-2Fj0e3QSdfNXesfITBi3aNSmfzSNn34cYpcM-2BOKJKDWCWhUMoY3gQdrYzIh4ScHzga431hecVI8CWcjo1Ms-2ByGNB11qpBzOjKJcU-2B8YtIlbBpajvOoQd1h13Bxmb00VqpIQxmGaN1jtoK0fugt26nMPP9CXD6Jf24-2BfjLbF6TNls9T4JiVZk4LsNxP7f7L-2B2W1i1Mq-2Fe-2BeNQdLQbrutrP-2BUC8qhSfrOpVj2Y27IotMuSh-2F-2BDK1rVGmvw-2FK1RBXvg-2F6c68DTk3izNcPYdyzZFgoYt5cHhnx77ueFNn87CVXZOJTzk05GATIsie55JTJNc8lx5JTneefy9jLvvRGKRjOIyjzxW\"><u><strong>About the Defense Innovation Unit</strong></u></a></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><br>\r\n<span style=\"font-family: arial, helvetica, sans-serif\">The Defense Innovation Unit (DIU) strengthens national security by accelerating the adoption of commercial technology in the Department of Defense and bolstering our allied and national security innovation bases. DIU partners with organizations across the DoD to rapidly prototype and field dual-use capabilities that solve operational challenges at speed and scale. With offices in Silicon Valley, Boston, Austin, Chicago and Washington, D.C., DIU is the Department’s gateway to leading technology companies across the country.</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"divider\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"52646515-03f4-4e8c-9b72-4fc547d4e522.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 0px 0px;\" role=\"module-content\" height=\"100%\" valign=\"top\" bgcolor=\"\">\r\n          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" height=\"5px\" style=\"line-height:5px; font-size:5px;\">\r\n            <tbody>\r\n              <tr>\r\n                <td style=\"padding:0px 0px 5px 0px;\" bgcolor=\"#FFFFFF\"></td>\r\n              </tr>\r\n            </tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"\" data-distribution=\"1,2\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"193\" style=\"width:193px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"63b68e10-68b8-4c48-9974-bf287cfe098d\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:0px 0px 0px 0px;\" valign=\"top\" align=\"right\">\r\n          <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:100% !important; width:100%; height:auto !important;\" width=\"193\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/3c3e14b4-863b-44ea-a235-44a86550fd55/1920x553.png\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"386\" style=\"width:386px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"social\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"0a01c058-b46f-483b-b78c-66b27b087fdb\">\r\n    <tbody>\r\n      <tr>\r\n        <td valign=\"top\" style=\"padding:20px 0px 20px 20px; font-size:6px; line-height:10px;\" align=\"left\">\r\n          <table align=\"left\" style=\"-webkit-margin-start:auto;-webkit-margin-end:auto;\">\r\n            <tbody><tr align=\"left\"><td style=\"padding: 0px 5px;\" class=\"social-icon-column\">\r\n      <a role=\"social-icon-link\" href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILruprgLTFax-2FwdCEoDuowPk6lC7UUuoxLkqryl-2BFeCqC-2Fuuup74SDcFdJIT2Wm0IfAmqo7rZb72PCnLcp4IdbNmccKXqxXWg6lmbf7ew5wTx9me94BdR-2Fom4u79s3MIz1i7C5Lj7aIahKoybW7Na0OQ-3DAHI4_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSdNUvFlONAS93NeV0Ea52yU-2By5994dGqguSxDCdYww6ISa8U11WWR-2BAJhrRFwfqUL43iNtva0ecQc0QqkGS65KHnfx2I8WbqIzRVoEu0K77P5-2BP3DPzyO9zV6gbTMqoZelPTJXB2zryzhEK54O-2BGdOwaNHVkCw1K5mnr9GufpHLMdwCEz-2Fhp18XOdUOW3eeZkYPHVHwmPgt25tex7b2iR1DcI6UXRACsGyfu2wrso4FhqYjXpvUvPkjBIMHsmfg4qaCmNifve-2Fx-2FUre-2BENqCofvDnwcNCdnU1-2BxLkHEYnh-2B0DO3gP7ByPwlZAE5WqLDCZ0Np5JcR3w-2BNkaUhmK5USUSdJWfP5KIDr09AD7B5iB-2FuA5Nmu7N-2F9QqXbR95U5AE057aNKtyQLSh5RjCTZNEc1Ue3LIDqJUR-2F-2Bq-2FroRbStdcndxWED1ucUxuZfugaEyiLV9upxpL3DuBmlTXU-2Fj0e3QSdfNXesfITBi3aNSmfzSNn34cYpcM-2BOKJKDWCWhUMoY3gQdrYzIh4ScHzga431hecVI8CWcjo1Ms-2ByGNB11qpBzOjKJcU-2B8YtIlbBpajvOoQd1h13Bxmb00VqpIQxmGasMDgUM8FCKapuyrvo1w4q2Q6rf0z9-2Fr05InBZV1aGkiBpMcVEQxzNUMdiTrmvt3Z-2BjlfE4p52vpjtjAzqotNDPS-2FFo8L930c1Wt92YdASIEGE5t3Dz9tB-2FVrgicFMNSxYb1nuxTGoEoezmrhupVIdLQHi3E6kF2MLZSJ0WQvURxkCR7njmCo8D-2BO1yA-2F05Llig0cb-2BIOkbBQ2O2lRCkhc\" target=\"_blank\" alt=\"Facebook\" title=\"Facebook\" style=\"display:inline-block; background-color:#0059DD; height:20px; width:20px;\">\r\n        <img role=\"social-icon\" alt=\"Facebook\" title=\"Facebook\" src=\"https://mc.sendgrid.com/assets/social/white/facebook.png\" style=\"height:20px; width:20px;\" height=\"20\" width=\"20\">\r\n      </a>\r\n    </td><td style=\"padding: 0px 5px;\" class=\"social-icon-column\">\r\n      <a role=\"social-icon-link\" href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILl3jEI7VQOngoB3sTi1sr0s6s6sidlqsKRgMcMtXT58oriF8r16RvZ3Lu32AlHfiRN0AVnM0wls9ICuqiTYgXdYFJYYrWuI4drLYbtBHNfG6jlTojqNjDmgpaa79IUj3GQ-3D-3DocOh_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSdNUvFlONAS93NeV0Ea52yU-2By5994dGqguSxDCdYww6ISa8U11WWR-2BAJhrRFwfqUL43iNtva0ecQc0QqkGS65KHnfx2I8WbqIzRVoEu0K77P5-2BP3DPzyO9zV6gbTMqoZelPTJXB2zryzhEK54O-2BGdOwaNHVkCw1K5mnr9GufpHLMdwCEz-2Fhp18XOdUOW3eeZkYPHVHwmPgt25tex7b2iR1DcI6UXRACsGyfu2wrso4FhqYjXpvUvPkjBIMHsmfg4qaCmNifve-2Fx-2FUre-2BENqCofvDnwcNCdnU1-2BxLkHEYnh-2B0DO3gP7ByPwlZAE5WqLDCZ0Np5JcR3w-2BNkaUhmK5USUSdJWfP5KIDr09AD7B5iB-2FuA5Nmu7N-2F9QqXbR95U5AE057aNKtyQLSh5RjCTZNEc1Ue3LIDqJUR-2F-2Bq-2FroRbStdcndxWED1ucUxuZfugaEyiLV9upxpL3DuBmlTXU-2Fj0e3QSdfNXesfITBi3aNSmfzSNn34cYpcM-2BOKJKDWCWhUMoY3gQdrYzIh4ScHzga431hecVI8CWcjo1Ms-2ByGNB11qpBzOjKJcU-2B8YtIlbBpajvOoQd1h13Bxmb00VqpIQxmGYY3FOaSVVRPr9ebJF-2BfPfdjWNE8ycCYfnlvVewEWIn-2BmdnHBNGN1yl9jph4pkVtEl59s8Dps5lu8wcQpcEf98wtOlZ0IUIwhxHaBPVuyO9hYboHTkrokPH22XIdmwqi9z-2BKk6P3oH3t01jaHZ2oZ-2B6fpkevH0YVukIukjzJqAt6cWd-2FC4b-2Fk6NeY4FQ-2Fbqx4M3Y9o3gr4-2FmVIhqIBQ3QWi\" target=\"_blank\" alt=\"X\" title=\"X\" style=\"display:inline-block; background-color:#0059DD; height:20px; width:20px;\">\r\n        <img role=\"social-icon\" alt=\"X\" title=\"X\" src=\"https://mc.sendgrid.com/assets/social/white/x.png\" style=\"height:20px; width:20px;\" height=\"20\" width=\"20\">\r\n      </a>\r\n    </td><td style=\"padding: 0px 5px;\" class=\"social-icon-column\">\r\n      <a role=\"social-icon-link\" href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILigSPgoyRWe1jvwzlC4TXPcgTZYPtfIjDa-2BOoPwkKp3eVLkplbFWVOchz-2B37AepGp3rqzDpRumX-2BwFxTVU8Ul3zBPB9ciOg2s1a93u-2FYzFlbtL-2F5cWLWJQtgDp5FtLK4SisK3DLek80T1U9DBvj-2FgmiKHB9L1RiayX4SfEyUzzlYWFDI_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSdNUvFlONAS93NeV0Ea52yU-2By5994dGqguSxDCdYww6ISa8U11WWR-2BAJhrRFwfqUL43iNtva0ecQc0QqkGS65KHnfx2I8WbqIzRVoEu0K77P5-2BP3DPzyO9zV6gbTMqoZelPTJXB2zryzhEK54O-2BGdOwaNHVkCw1K5mnr9GufpHLMdwCEz-2Fhp18XOdUOW3eeZkYPHVHwmPgt25tex7b2iR1DcI6UXRACsGyfu2wrso4FhqYjXpvUvPkjBIMHsmfg4qaCmNifve-2Fx-2FUre-2BENqCofvDnwcNCdnU1-2BxLkHEYnh-2B0DO3gP7ByPwlZAE5WqLDCZ0Np5JcR3w-2BNkaUhmK5USUSdJWfP5KIDr09AD7B5iB-2FuA5Nmu7N-2F9QqXbR95U5AE057aNKtyQLSh5RjCTZNEc1Ue3LIDqJUR-2F-2Bq-2FroRbStdcndxWED1ucUxuZfugaEyiLV9upxpL3DuBmlTXU-2Fj0e3QSdfNXesfITBi3aNSmfzSNn34cYpcM-2BOKJKDWCWhUMoY3gQdrYzIh4ScHzga431hecVI8CWcjo1Ms-2ByGNB11qpBzOjKJcU-2B8YtIlbBpajvOoQd1h13Bxmb00VqpIQxmGaME576WiLA-2BYX7bX8w-2By7rXDwM8J61xb97jOVofjSyxoXLeBrh7tCGCjefajxI4TGhtil0SZulPdIpMv19UGt-2FvbCbqXBujIxGf5COEfH99SyJ5p3HDCjsKHej04m-2B9za3wBE609ylHxAqMfSWv98UUIi6jjNhd7TEiZfLtnGNl4tIOtGmMJZed-2F2emnhev0I6YHBVloIINIDy4I1bm-2Bc2\" target=\"_blank\" alt=\"LinkedIn\" title=\"LinkedIn\" style=\"display:inline-block; background-color:#0059DD; height:20px; width:20px;\">\r\n        <img role=\"social-icon\" alt=\"LinkedIn\" title=\"LinkedIn\" src=\"https://mc.sendgrid.com/assets/social/white/linkedin.png\" style=\"height:20px; width:20px;\" height=\"20\" width=\"20\">\r\n      </a>\r\n    </td></tr></tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><div data-role=\"module-unsubscribe\" class=\"module\" role=\"module\" data-type=\"unsubscribe\" style=\"color:#454545; font-size:12px; line-height:20px; padding:0px 16px 16px 25px; text-align:left;\" data-muid=\"4e838cf3-9892-4a6d-94d6-170e474d21e5.1\"><div class=\"Unsubscribe--addressLine\"><p class=\"Unsubscribe--senderName\" style=\"font-family:helvetica,sans-serif; font-size:12px; line-height:20px;\">Defense Innovation Unit</p><p style=\"font-family:helvetica,sans-serif; font-size:12px; line-height:20px;\"><span class=\"Unsubscribe--senderAddress\">230 RT Jones Rd</span>, <span class=\"Unsubscribe--senderCity\">Mountain View</span>, <span class=\"Unsubscribe--senderState\"></span> <span class=\"Unsubscribe--senderZip\"></span></p></div><p style=\"font-family:helvetica,sans-serif; font-size:12px; line-height:20px;\"><a class=\"Unsubscribe--unsubscribeLink\" href=\"https://u18220755.ct.sendgrid.net/asm/unsubscribe/?user_id=18220755&amp;data=Jg2XrUnhdWh1byA7-hoej2Td00pww7uPQmmWnQ8WMhJoMDAwdTAwMDqroCLsmL3h4feRSidMj0Fr3D44MaHJ-wKcRBmUGVHUazT_N9fYcgloq6TPscWhoGIiJl1fIDuvf6XpONqbxBBAj_Gj9R7c-9xII6JPuss09Stgu5nf61YncSKdchIF10bg4dAHl4BHBPnhkqHajlMyAdkHK9tsuNk3BaVJtJIW3asqcQGMOtE53_cv7IzsOXdwu74m0iz1iE2oSz3b4Bcc_9EFlQTZdZ6HMKYev6uLA9AvMzleMFd9Ow9oPyuEJk1NNqNHtgXrGGVW6Up0lZNYHX3jxcgiE-aSueYoo-JkqqmqhFXY6rugyQC1MZqVnryao2VXwpfujRt4UPKhde3tozGIZvLYKwvEfJu1xl6jK3T08fivhd0mc93irNFMmr8gL3N2n9qCnT3w_oHHSq2zb4sBgHoStUDcUpvXXbmnApd27g4f3lPXcdSYseTz_noPtzv76tOEOZt908aObH6xA8iYaJWoDVKa6vhJnReZsD18aXpJi4-oDtzm0mC1CYGCcjDsXPqFWF3CFgg75fp0FoQlUiedg-vN7vp_jNxeFJGfesvrUBUKG3f0so3XQm2mTh5el_g66xHcU8qMbTbFPhiYoz5xq4KXe7trFY3MATj5c5OLrT7Venp48MKbV-R0jjRLoe1LbI8__JShuTmkJ4es9wYUoMhDieg-8LX3guIVP2OOSka9z-PUuh7Ggs-azwUz0KaoMV5jwDxn8_EF59VxFA63ogSGI-b-770-eRD_3D8NttbPO1pxmpS3l4qlPKZo2f1RA0FB3M_yW977xFMvx8UpIkus-6tSIgJo1mlzRsHyY4R9mNyuaojSuT_3hTkUeYumqQXM4c-5r115HZnh27QIy0_8MjOYZPg0kmSm9jnKYj17wwP4p2ar_7ewOSZK9lplmJ4stNxK4RLF5N0kld8N0xJeVJ7pUXLIebzbf3fTYNmhu8ad5oH5hCwuUVg7dvTFpgIx3eIAJqZvvFO6ys1CkFuis_RSDh726Op8rgtzq6LBcBJL6TkVNfYDAn38KsRf2Vw_0gk__boz7GyafymVlBBQn8WXYDuOyx35ONEdhgwrf-2zXtRR7UIJDLV2IgSrKKt3BuWGsEo=\" target=\"_blank\" style=\"\">Unsubscribe</a> - <a href=\"https://u18220755.ct.sendgrid.net/asm/?user_id=18220755&amp;data=rSAuDEb1-V42JzMa9FGRg0y5g6e6v8n-T_y8rpT_BkhoMDAwdTAwMNuoz_XRg3cMpVVF4CGsDBG129E_Hs8Ed4cFHyskrRHfCmQhwpvmQ9xyMfiONjcXCHL1kDNUg2ZUOtteS6Y4-Echgo19ctMwlmjVZY9PS5r5WJ4RhHsDGuFSSgQYErSJA63RO9nusq2hW8QrezWmJBQmB7f2du2OLksCI1qGRY_HGw7idFoYemeZQNIITiOq6q_79H6QnXRSEAN61JPPvTLTKY57LrceFOsTsr-x_RUGH14rs4Vln6M44DEsWDfkDAbETH69A8g4xQCcMIvukZ5xCbFzj-RXwUH8szt3rzIzIE2fczyS8LWe6NCqy8FBg75GSpIhv28wkiFeOPDHP0IbDya9p133CcTtqCG44bn4PurMZB8gZx9a_zvMgXQAZhjZHKf0ym9a5TJj-M1u3-QhBJ7tJxvEOqPNlE6Y4KilThrO6P9tjnNQ210amdsPN5Pk74u2wzf4mz7wE7X8bY1KtnXrYiBUgJMwAYDl2JEvLOVYB90B2FCoN3caFPjeIkOn4fcC4keGmbIfptZmIUaHtEPAJ0twdhHDA2qFTHbaXfol99i8A_V3ql_wOrAppTmx5o2OZ6qhZC5MrRB67KkF-NwOGykmSvbdgFBoOzoW8xfnBly_bbb2govuEsHh1jhXw6AwKgNm7pKOR0iAMIF7cubeuAikwveFrAVnCp6ka5r-o-Z9qJ4vrGOktBypJrv3aWWrZ_D2l5CfwJMlcA18Li-NqljxfVQiH63uScBjpCAXGtLgcX5Ivb7M6XQ7Ep8tImRfZzoJuLgifeNiCPOIgd5UaIZbQEtfCQ4EexAfpEHmbHJwSdOuft2MYQijP7yRsnYzJmIp9kbKQxhOHUbSVoqFWdw05PIf8c1BjTFe0y96PXkHK8l0A-bKXZaO07xtjWgK51HJLbY_xMAfiiHKXgp93aUL_CjzElrrlXzrNlk2O8T402KRHYenFGTbSLLPCfBpWeVKGOLBMH5jAh5F_VctMMdGaOcBQW0YHruDO3mHdPuN2Kf6Y64FmygnR_588pg3lfq72kGGZ3aPoI1qwNQwBY2RBS3JwmT1_eodkHZTjJPO1Mk4qa_Trrzd0Q==\" target=\"_blank\" class=\"Unsubscribe--unsubscribePreferences\" style=\"\">Unsubscribe Preferences</a></p></div></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n                                      </tr>\r\n                                    </table>\r\n                                    <!--[if mso]>\r\n                                  </td>\r\n                                </tr>\r\n                              </table>\r\n                            </center>\r\n                            <![endif]-->\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </div>\r\n      </center>\r\n    <img src=\"https://u18220755.ct.sendgrid.net/wf/open?upn=u001.D6mC8SG6iITw2GIzPjAtw7SLAuEgZhcE7OQx5Ie2paKW9TCJvoy3Eh7ani-2FmDfzWZ4Aty9oKYAg8U-2BpXv81mmaeCBsQtTAdxlXqbnsXBCjn-2FAW10qJfypmIUPoD1-2B38y4LSjEaiwyNZHtEyZD-2BNUDQ9jsULMEaOHiHV6uBfkKpGb5hAIMEPwkE6FmvwkUBoviSTJugAVJXUm9xoiR20VRZTvq0acuQDvK2BDvuPHoLjqGCTQHxtZ-2Fe5QOzblXw2-2BQnp5HAEN3-2Bu8rbslrj7-2FU4U-2Bdx9Y7JTU0RyIZSPx6YemJ45QHXdkOBfdjvIcERPtkrVKMFAdiHF-2FSjLdfRYjVeCr5zBwqsWc9RLT8-2FvzDv-2FmqfgbGhB3PdULGtSwdgMPUPOjf-2FB5BtV21DZOI6x7HNj-2BKQRf6GrHKz2KocXmVI-2FVmZ2IqJXSj70vk5W8fQCIkbBGENFbZns70E-2FXdW3dk9ju4Q8ggjaZ1Ca4f3O0OUkLD36YTS4am7rmAiOYXy57ectOafOU-2BmMUFr8m9xQO5gIlESmpJB3lBZwriv4HmwAthig2BKGXQL-2BmtQeDgg27A-2FD5YHTLItaI6m5IMGr-2BLYNcfwBmbb4MvRh9uGfQFjZY7li3L5T-2F5FIsfR4LdF1YoAlkDpGDh5XAAquLp3SBgwUw5cGBQVlVXL6VCu7GHVJ0kL1uUX-2By3JG-2FJT8pbOEXeRiCZTW9vFkXKUNlJJN3UIwoHTki2K6-2BoaSagSOi8CBfIogrbtuqzm8AigCey9uRBUZnUOrTzUUXbMGHC7LmEvFVw2sR762pQTpUqIfuz5IHp9nJ-2FBNGQ-2FPYa4aUzCM3I2JBThgE9vyDe20-2BrowJRQIcbwEvR3yxj-2B1Okxsh8PV6efyd2EWwIKVUUnflsXxf1eYAq3EO4b-2BnpfmyKUbQ6BPhWUWn0ySj2ccgkeaXhJZWgWszE3-2Fl2HnGNjvqtswY\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/></body>\r\n  </html>','Updates to BLUE List, Challenge Winners Announced & Updated UxS Deadline\r\n\r\nEmail not displaying correctly? View it in your browser.\r\n\r\nAugust 2025 - Reading time: 3.5 minutes\r\n\r\n*Feature*\r\n\r\n*Highest-Ranking Senior Military Officer Visits DIU Headquarters* ( https://www.linkedin.com/feed/update/urn:li:activity:7348839537055313921?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\nChairman of the Joint Chiefs of Staff General Dan Caine and Senior Enlisted Advisor to the Chairman Fleet Master Chief David Isomon visited our Mountain View headquarters to learn about key efforts, see technology demonstrations, and engage with the service members stationed here.\r\n\r\nCheck out the post on the Joint Staff LinkedIn page here ( https://www.linkedin.com/posts/thejointstaff_innovation-activity-7348114899358670850-HhCN?utm_source=share&utm_medium=member_desktop&rcm=ACoAAATai44BJfZ-3uIFrjplGtEoGWrgga0onVI&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ).\r\n\r\n*Upcoming Events*\r\n\r\n( https://www.diu.mil/latest/defense-innovation-organizations-at-fed-supernova-2025?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com#office-hours )\r\n\r\n*You’re Invited: Defense Innovation Organizations at Fed Supernova 2025* ( https://www.diu.mil/latest/defense-innovation-organizations-at-fed-supernova-2025?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com#office-hours )\r\n\r\n—\r\nAUG. 19-21, 2025\r\nThe annual 2025 Fed Supernova event in Austin is set for August 19-21, to bring together startups, government, industry, and academia to accelerate dual-use technology that powers national security – and the Defense Innovation Community, or DICE, will be there in full force!\r\n\r\n*News*\r\n\r\n( https://www.diu.mil/latest/diu-usnorthcom-us-army-announce-finalists-for-c-uas-low-cost-sensing?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*Ten Finalists Selected for Low-Cost Sensing Challenge* ( https://www.diu.mil/latest/diu-usnorthcom-us-army-announce-finalists-for-c-uas-low-cost-sensing?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nDIU, USNORTHCOM, and the U.S. Army announced the ten finalists for the C-sUAS Low-Cost Sensing (LCS) Challenge. These companies will demonstrate their sensor technologies at the Falcon Peak exercise in September. The challenge aims to find affordable, scalable solutions to augment existing C-sUAS systems, with finalists offering diverse sensor modalities and potential cost savings of 50-80 percent.\r\n\r\nLearn more ( https://www.diu.mil/latest/diu-usnorthcom-us-army-announce-finalists-for-c-uas-low-cost-sensing?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n( https://www.diu.mil/latest/diu-outlines-immediate-updates-to-blue-uas-lists-announces-initial?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*Updates to Blue UAS List, Initial Recognized Assessor Cohort Announced* ( https://www.diu.mil/latest/diu-outlines-immediate-updates-to-blue-uas-lists-announces-initial?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nIn support of Secretary Hegseth’s recent memo on “Unleashing U.S. Military Drone Dominance” and President Trump’s Executive Order ( https://www.whitehouse.gov/presidential-actions/2025/06/unleashing-american-drone-dominance/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) , DIU has made several announcements related to the Blue UAS Cleared List. These updates support DIU’s continued efforts to provide pathways onto the Blue UAS Cleared List to accelerate trusted drone capabilities to the warfighter. Select updates include: expanding the Blue UAS Cleared List to include Green UAS certification, naming the initial cohort of Recognized Assessors, and refreshing the Blue UAS website to reflect new designations, including Blue UAS Select. We look forward to the immediate impact of these changes.\r\n\r\nLearn more ( https://www.diu.mil/latest/diu-outlines-immediate-updates-to-blue-uas-lists-announces-initial?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*Open Opportunities*\r\n\r\n( https://www.diu.mil/work-with-us/submit-solution/PROJ00598?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*DEADLINE UPDATED: $20M Available For ‘Ready Now’ UxS Solutions* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00598?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n—\r\nIn response to an accelerated timeline of need from our warfighter partners, we are updating the timeline for submissions to Design Reference Mission (DRM) 2 to August 8 (was previously August 15) and the demonstration event date to October 6 - 9, 2025.\r\nOur Project G.I. Prize Challenge seeks “mission-ready” uncrewed systems (UxS) solutions to enhance the speed and lethality for small, dispersed targeting-strike cells operating under denied, disrupted, intermittent, and low-bandwidth conditions. Proposed challenge solutions must enhance tactical formation’s lethality, survivability, or overall mission effectiveness within the specified DRM and serve the needs of a DoD customer.\r\nProject G.I. is intended to be able to respond rapidly to emerging needs from end users throughout DoD, and this timeline update is an example of how we will respond in order to deliver capabilities on the timeline required.\r\n\r\n*Learn more* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00598?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) *\r\n* ( https://www.diu.mil/work-with-us/immersive-commercial-acquisition-program-icap?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*DIU In the News*\r\n\r\n* *GovDesignHub:* Bridging the Defense Supply Chain Gap With Blue Manufacturing ( https://govdesignhub.com/bridging-the-defense-supply-chain-gap-with-blue-manufacturing/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n* *Federal News Network:* A Look Back at the Origins of DIU ( https://federalnewsnetwork.com/defense-main/2025/06/a-look-back-at-the-origins-of-diu/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n* *FastCompany:* The Missing Key for Defense Innovation? A Good Coworking Space ( https://federalnewsnetwork.com/defense-main/2025/06/a-look-back-at-the-origins-of-diu/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n* *DefenseOne:* Bill Aims to Lock in DIU’s Dual-Use Reservist Corps ( https://www.defenseone.com/technology/2025/05/bill-aims-lock-dius-dual-use-reservist-corps/405555/?oref=defenseone_today_nl&utm_source=Sailthru&utm_medium=email&utm_campaign=Defense%20One%20Today:%20May%2023%2C%202025&utm_term=newsletter_d1_today&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n* *New York Times:* Drones Are Key to Winning Wars Now. The U.S. Makes Hardly Any ( https://www.nytimes.com/2025/07/13/business/drones-us-military-manufacturing-lags.html?unlocked_article_code=1.WE8.PKrt.i19RVBFBcgga&smid=nytcore-android-share&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n* *DefenseNews:* Jammed and confused: Alaska trial shows pitfalls of fielding U.S. drones ( https://www.defensenews.com/pentagon/2025/07/15/jammed-and-confused-alaska-trial-shows-pitfalls-of-fielding-us-drones/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\nIf you were not the original recipient of this email and would like to sign up for the DIU Newsletter, please register here ( https://www.diu.mil/newsletter-sign-up?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ).\r\n\r\n*About the Defense Innovation Unit* ( http://diu.mil?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\nThe Defense Innovation Unit (DIU) strengthens national security by accelerating the adoption of commercial technology in the Department of Defense and bolstering our allied and national security innovation bases. DIU partners with organizations across the DoD to rapidly prototype and field dual-use capabilities that solve operational challenges at speed and scale. With offices in Silicon Valley, Boston, Austin, Chicago and Washington, D.C., DIU is the Department’s gateway to leading technology companies across the country.\r\n\r\n( https://www.facebook.com/defenseinnovationunitx/?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) ( https://x.com/diu_x?lang=en&mx=2&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) ( https://www.linkedin.com/company/diux/posts/?feedview=all&utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\nDefense Innovation Unit\r\n\r\n230 RT Jones Rd , Mountain View ,  \r\n\r\nUnsubscribe ( https://u18220755.ct.sendgrid.net/asm/unsubscribe/?user_id=18220755&data=Jg2XrUnhdWh1byA7-hoej2Td00pww7uPQmmWnQ8WMhJoMDAwdTAwMDqroCLsmL3h4feRSidMj0Fr3D44MaHJ-wKcRBmUGVHUazT_N9fYcgloq6TPscWhoGIiJl1fIDuvf6XpONqbxBBAj_Gj9R7c-9xII6JPuss09Stgu5nf61YncSKdchIF10bg4dAHl4BHBPnhkqHajlMyAdkHK9tsuNk3BaVJtJIW3asqcQGMOtE53_cv7IzsOXdwu74m0iz1iE2oSz3b4Bcc_9EFlQTZdZ6HMKYev6uLA9AvMzleMFd9Ow9oPyuEJk1NNqNHtgXrGGVW6Up0lZNYHX3jxcgiE-aSueYoo-JkqqmqhFXY6rugyQC1MZqVnryao2VXwpfujRt4UPKhde3tozGIZvLYKwvEfJu1xl6jK3T08fivhd0mc93irNFMmr8gL3N2n9qCnT3w_oHHSq2zb4sBgHoStUDcUpvXXbmnApd27g4f3lPXcdSYseTz_noPtzv76tOEOZt908aObH6xA8iYaJWoDVKa6vhJnReZsD18aXpJi4-oDtzm0mC1CYGCcjDsXPqFWF3CFgg75fp0FoQlUiedg-vN7vp_jNxeFJGfesvrUBUKG3f0so3XQm2mTh5el_g66xHcU8qMbTbFPhiYoz5xq4KXe7trFY3MATj5c5OLrT7Venp48MKbV-R0jjRLoe1LbI8__JShuTmkJ4es9wYUoMhDieg-8LX3guIVP2OOSka9z-PUuh7Ggs-azwUz0KaoMV5jwDxn8_EF59VxFA63ogSGI-b-770-eRD_3D8NttbPO1pxmpS3l4qlPKZo2f1RA0FB3M_yW977xFMvx8UpIkus-6tSIgJo1mlzRsHyY4R9mNyuaojSuT_3hTkUeYumqQXM4c-5r115HZnh27QIy0_8MjOYZPg0kmSm9jnKYj17wwP4p2ar_7ewOSZK9lplmJ4stNxK4RLF5N0kld8N0xJeVJ7pUXLIebzbf3fTYNmhu8ad5oH5hCwuUVg7dvTFpgIx3eIAJqZvvFO6ys1CkFuis_RSDh726Op8rgtzq6LBcBJL6TkVNfYDAn38KsRf2Vw_0gk__boz7GyafymVlBBQn8WXYDuOyx35ONEdhgwrf-2zXtRR7UIJDLV2IgSrKKt3BuWGsEo= ) - Unsubscribe Preferences ( https://u18220755.ct.sendgrid.net/asm/?user_id=18220755&data=rSAuDEb1-V42JzMa9FGRg0y5g6e6v8n-T_y8rpT_BkhoMDAwdTAwMNuoz_XRg3cMpVVF4CGsDBG129E_Hs8Ed4cFHyskrRHfCmQhwpvmQ9xyMfiONjcXCHL1kDNUg2ZUOtteS6Y4-Echgo19ctMwlmjVZY9PS5r5WJ4RhHsDGuFSSgQYErSJA63RO9nusq2hW8QrezWmJBQmB7f2du2OLksCI1qGRY_HGw7idFoYemeZQNIITiOq6q_79H6QnXRSEAN61JPPvTLTKY57LrceFOsTsr-x_RUGH14rs4Vln6M44DEsWDfkDAbETH69A8g4xQCcMIvukZ5xCbFzj-RXwUH8szt3rzIzIE2fczyS8LWe6NCqy8FBg75GSpIhv28wkiFeOPDHP0IbDya9p133CcTtqCG44bn4PurMZB8gZx9a_zvMgXQAZhjZHKf0ym9a5TJj-M1u3-QhBJ7tJxvEOqPNlE6Y4KilThrO6P9tjnNQ210amdsPN5Pk74u2wzf4mz7wE7X8bY1KtnXrYiBUgJMwAYDl2JEvLOVYB90B2FCoN3caFPjeIkOn4fcC4keGmbIfptZmIUaHtEPAJ0twdhHDA2qFTHbaXfol99i8A_V3ql_wOrAppTmx5o2OZ6qhZC5MrRB67KkF-NwOGykmSvbdgFBoOzoW8xfnBly_bbb2govuEsHh1jhXw6AwKgNm7pKOR0iAMIF7cubeuAikwveFrAVnCp6ka5r-o-Z9qJ4vrGOktBypJrv3aWWrZ_D2l5CfwJMlcA18Li-NqljxfVQiH63uScBjpCAXGtLgcX5Ivb7M6XQ7Ep8tImRfZzoJuLgifeNiCPOIgd5UaIZbQEtfCQ4EexAfpEHmbHJwSdOuft2MYQijP7yRsnYzJmIp9kbKQxhOHUbSVoqFWdw05PIf8c1BjTFe0y96PXkHK8l0A-bKXZaO07xtjWgK51HJLbY_xMAfiiHKXgp93aUL_CjzElrrlXzrNlk2O8T402KRHYenFGTbSLLPCfBpWeVKGOLBMH5jAh5F_VctMMdGaOcBQW0YHruDO3mHdPuN2Kf6Y64FmygnR_588pg3lfq72kGGZ3aPoI1qwNQwBY2RBS3JwmT1_eodkHZTjJPO1Mk4qa_Trrzd0Q== )',0,0,0,0,0,0,'2025-08-06 15:01:59','2025-12-09 19:27:11','2025-12-09 19:27:11','2025-12-09 19:27:11',NULL,NULL,NULL),
(587,4,'<656a0419660843e3a17c937076a95bf7@docusign.net>',NULL,NULL,'Engagement Letter Mavrix 1, LLC rev','dse_na2@docusign.net','\"Linda Propes via Docusign\"','<html lang=3D\"en\"><head><meta http-equiv=3D\"Content-Type\" content=3D\"te=\r\nxt/html; charset=3DUTF-8\"/><meta name=3D\"viewport\" content=3D\"initial-s=\r\ncale=3D1=2E0\"/><meta name=3D\"format-detection\" content=3D\"telephone=3Dn=\r\no\"/><title>EnvelopeActivation</title></head><body style=3D\"background-c=\r\nolor:#EAEAEA;padding:2%;font-family:Helvetica,Arial,Sans Serif;\"><table=\r\n role=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\'=\r\n align=3D\'center\' width=3D\"100%\" dir=3D\"\"><tr><td></td><td width=3D\"640=\r\n\"><table role=3D\"presentation\" style=3D\"mso-table-lspace:0pt;mso-table-=\r\nrspace:0pt;border-collapse:collapse;background-color:#ffffff;max-width:=\r\n640px;\"><tr><td style=3D\"padding:10px 24px;\"><img style=3D\"border:none;=\r\n\" width=3D\"\" src=3D\"https://na2=2Edocusign=2Enet/Member/Image=2Easpx?i=3D=\r\nlogo&l=3Def5bb6f9-4c96-4b18-949d-343336b691cf\" alt=3D\"\"/></td></tr><tr>=\r\n<td style=3D\"padding:0px 24px 30px 24px;\"><table role=3D\'presentation\' =\r\nborder=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\' width=3D\'100%\' align=3D=\r\n\'center\' style=3D\'background-color:#214e9f;color:#ffffff;\'><tr><td styl=\r\ne=3D\"padding:28px 36px 36px 36px;border-radius:2px;background-color:#21=\r\n4e9f;color:#ffffff;font-size:16px;font-family:Helvetica,Arial,Sans Seri=\r\nf;width:100%;text-align:center;\" align=3D\"center\"><img width=3D\"75\" hei=\r\nght=3D\"75\" src=3D\"https://docucdn-a=2Eakamaihd=2Enet/olive/images/2=2E7=\r\n6=2E0/email/iconSignWhite=2Epng\" style=3D\"width:75px;height:75px;\" alt=3D=\r\n\"\" /><table role=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpa=\r\ndding=3D\'0\' width=3D\'100%\'><tr><td style=3D\"padding-top:24px;font-size:=\r\n16px;font-family:Helvetica,Arial,Sans Serif;border:none;text-align:cent=\r\ner;color:#ffffff\" align=3D\"center\"> Linda Propes sent you a document to=\r\n review and sign=2E </td></tr></table><table role=3D\'presentation\' bord=\r\ner=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\' width=3D\'100%\'><tr><td ali=\r\ngn=3D\"center\" style=3D\"padding-top:30px;\"><div><table cellspacing=3D\"0\"=\r\n cellpadding=3D\"0\"><tr><td align=3D\"center\" height=3D\"44\" style=3D\"font=\r\n-size:15px;color:#333333;background-color:#ffc820;font-family:Helvetica=\r\n,Arial,Sans Serif;font-weight:bold;text-align:center;text-decoration:no=\r\nne;;border-radius:2px;background-color:#ffc820;;display: block;\"><a hre=\r\nf=3D\"https://na2=2Edocusign=2Enet/Signing/EmailStart=2Easpx?a=3Dd276797=\r\na-7af2-4ef3-b031-02c2ea649b68&etti=3D24&acct=3D7b866992-f8fe-4860-8694-=\r\ncc3914c8e26b&er=3D514be703-a812-4233-8865-a9deb36392d9\" style=3D\"font-s=\r\nize:15px;color:#333333;background-color:#ffc820;font-family:Helvetica,A=\r\nrial,Sans Serif;font-weight:bold;text-align:center;text-decoration:none=\r\n;;border-radius:2px;background-color:#ffc820;;display:inline-block\"><sp=\r\nan style=3D\"padding:0px 24px;;line-height:44px;\"><!--[if mso]>&nbsp;&nb=\r\nsp;&nbsp;&nbsp;&nbsp;&nbsp;<![endif]--> REVIEW DOCUMENT <!--[if mso]>&n=\r\nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<![endif]--></span></a></td></tr></ta=\r\nble></div></td></tr></table></td></tr></table></td></tr><tr><td style=3D=\r\n\"padding:0px 24px 24px 24px;color:#000000;font-size:16px;font-family:He=\r\nlvetica,Arial,Sans Serif;background-color:white;\"><table role=3D\'presen=\r\ntation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\'><tr><td style=3D=\r\n\"padding-bottom:20px;\"><div style=3D\"font-family:Helvetica,Arial,Sans S=\r\nerif;font-weight:bold;line-height:18px;font-size:15px;color:#333333;\"> =\r\nLinda Propes </div><div style=3D\"font-family:Helvetica,Arial,Sans Serif=\r\n;line-height:18px;font-size:15px;color:#666666;\">linda=2Epropes@nelsonm=\r\nullins=2Ecom</div></td></tr></table><span style=3D\"font-size:15px;color=\r\n:#333333;font-family:Helvetica,Arial,Sans Serif;line-height:20px;\">Plea=\r\nse sign<br /></span><br /></td></tr><tr><td style=3D\"padding:0px 24px 1=\r\n2px 24px;background-color:#ffffff;font-family:Helvetica,Arial,Sans Seri=\r\nf;font-size:11px;color:#666666;\"><table border=3D\"0\" cellspacing=3D\"0\" =\r\ncellpadding=3D\"0\"><tbody><tr><td valign=3D\"top\" style=3D\"font-family: H=\r\nelvetica,Arial,Sans Serif; font-size: 11px; color: #666666; vertical-al=\r\nign: top;\"><div style=3D\"font-family:Helvetica,Arial,Sans Serif; font-s=\r\nize:11px; color:#666666; padding: 2px 5px 0 0;\">Powered by&#160;</div><=\r\n/td><td><img src=3D\"https://docucdn-a=2Eakamaihd=2Enet/olive/images/2=2E=\r\n62=2E0/global-assets/email-templates/email-logo=2Epng\" height=3D\"19\" al=\r\nt=3D\"Docusign\" style=3D\"border:none;\"/></td></tr></tbody></table></td><=\r\n/tr><tr><td style=3D\"padding:30px 24px 45px 24px;background-color:#EAEA=\r\nEA;\"><p style=3D\"margin-bottom:1em;font-family:Helvetica,Arial,Sans Ser=\r\nif;font-size:13px;color:#666666;line-height:18px;\"><b aria-level=3D\"3\" =\r\nrole=3D\"heading\">Do Not Share This Email</b><br/> This email contains a=\r\n secure link to Docusign=2E Please do not share this email, link, or ac=\r\ncess code with others=2E<br/></p><p style=3D\"margin-bottom:1em;font-fam=\r\nily:Helvetica,Arial,Sans Serif;font-size:13px;color:#666666;line-height=\r\n:18px;\"><b aria-level=3D\"3\" role=3D\"heading\">Alternate Signing Method</=\r\nb><br/> Visit Docusign=2Ecom, click \'Access Documents\', and enter the s=\r\necurity code:<br /> D276797A7AF24EF3B03102C2EA649B682 </p><p style=3D\"m=\r\nargin-bottom:1em;font-family:Helvetica,Arial,Sans Serif;font-size:13px;=\r\ncolor:#666666;line-height:18px;\"><b aria-level=3D\"3\" role=3D\"heading\">A=\r\nbout Docusign</b><br/> Sign documents electronically in just minutes=2E=\r\n It\'s safe, secure, and legally binding=2E Whether you\'re in an office,=\r\n at home, on-the-go -- or even across the globe -- Docusign provides a =\r\nprofessional trusted solution for Digital Transaction Management=E2=84=A2=\r\n=2E </p><p style=3D\"margin-bottom:1em;font-family:Helvetica,Arial,Sans =\r\nSerif;font-size:13px;color:#666666;line-height:18px;\"><b aria-level=3D\"=\r\n3\" role=3D\"heading\">Questions about the Document?</b><br /> If you need=\r\n to modify the document or have questions about the details in the docu=\r\nment, please reach out to the sender by emailing them directly=2E<br />=\r\n<br /><b aria-level=3D\"3\" role=3D\"heading\">Stop receiving this email</b=\r\n><br /><a href=3D\'https://protect=2Edocusign=2Enet/report-abuse?e=3DAUt=\r\nomjpFak9GlbPL0zFFi11HD_8mpO4ilzZ95oWL0Rh-Nk_-oCqhsurS9MSz4Iak6MUqwUbi49=\r\nNzyc4qcr3ysoY6pWXD_O0eH6q_P3O9hz7mDRTACzAK2sTwpRWvv5OFIlsEvmlem5g8zz0Fu=\r\nLM-wN6wp3Jpr636JTMgNzwReEvKaTjl1WtHLQ7hda_mAcvkgf4fxzWjcf_RdSqQgcOTlYPk=\r\nFQ22Iy6zzxE3G7KS8PktUY0vVXBO-r1sC6yCG_0PddeH9r-GU4yQKhsb34kelEv3DNH96Vg=\r\nGeoHku8k-nYMknIKAcQTeS50DSDIZXHPYnkgwhqHKQG_y9pxditMhkMsMHP0je7QJkxYc9y=\r\nupjh_Ay1qGpSyKZoO0oYTUC4lBq2Sf0cvrATJJOSa6inY3zRWH2nEw5KFPWSLRyvwKVK0kf=\r\nTwnTjxF15ZRGC8X9lpx_g&lang=3Den\' style=3D\'color:#2463d1;\' >Report this =\r\nemail</a> or read more about <a href=3D\'https://support=2Edocusign=2Eco=\r\nm/en/guides/Declining-to-sign-DocuSign-Signer-Guide\' style=3D\'color:#24=\r\n63d1;\' >Declining to sign</a> and <a href=3D\'https://support=2Edocusign=\r\n=2Ecom/en/articles/How-do-I-manage-my-email-notifications\' style=3D\'col=\r\nor:#2463d1;\' >Managing notifications</a>=2E<br /><br /> If you have tro=\r\nuble signing, visit \"<a href=3D\'https://support=2Edocusign=2Ecom/s/arti=\r\ncles/How-do-I-sign-a-DocuSign-document-Basic-Signing?language=3Den_US&#=\r\n38;utm_campaign=3DGBL_XX_DBU_UPS_2211_SignNotificationEmailFooter&#38;u=\r\ntm_medium=3Dproduct&#38;utm_source=3Dpostsend\' style=3D\'color:#2463d1;\'=\r\n >How to Sign a Document</a>\" on our <a href=3D\'https://support=2Edocus=\r\nign=2Ecom/\' style=3D\'color:#2463d1;\' >Docusign Support Center</a>, or b=\r\necome part of the <a href=3D\'https://community=2Edocusign=2Ecom/new-mem=\r\nber-guide-142?utm_campaign=3DGBL_US_PRD_AWA_2405_CommunityCTA&#38;utm_m=\r\nedium=3Demail&#38;utm_source=3Dpostsend\' style=3D\'color:#2463d1;\' >Docu=\r\nsign Community</a> to access tips and guidance from peers=2E<br /><br /=\r\n></p><p style=3D\"margin-bottom:1em;font-family:Helvetica,Arial,Sans Ser=\r\nif;font-size:13px;color:#666666;line-height:18px;\"><a href=3D\"https://w=\r\nww=2Edocusign=2Ecom/features-and-benefits/mobile?utm_campaign=3DGBL_XX_=\r\nDBU_UPS_2211_SignNotificationEmailFooter&#38;utm_medium=3Dproduct&#38;u=\r\ntm_source=3Dpostsend\" style=3D\"color:#2463d1;\" ><img style=3D\"margin-ri=\r\nght:7px;border:none;vertical-align:middle;\" width=3D\"18\" height=3D\"18\" =\r\nsrc=3D\"https://docucdn-a=2Eakamaihd=2Enet/olive/images/2=2E62=2E0/globa=\r\nl-assets/email-templates/icon-download-app=2Epng\" alt=3D\"\" />Download t=\r\nhe Docusign App </a></p><p style=3D\"margin-bottom:1em;font-family:Helve=\r\ntica,Arial,Sans Serif;font-size:13px;color:#666666;line-height:18px;fon=\r\nt-size:10px;line-height:14px;\">This message was sent to you by Linda Pr=\r\nopes who is using the Docusign Electronic Signature Service=2E If you w=\r\nould rather not receive email from this sender you may contact the send=\r\ner with your request=2E</p></td></tr></table></td><td></td></tr></table=\r\n><span itemscope=3D\"\" itemtype=3D\"http://schema=2Eorg/EmailMessage\"><me=\r\nta itemprop=3D\"text\" content=3D\"Linda Propes sent you a document to rev=\r\niew and sign=2E\"/><span itemscope=3D\"\" itemprop=3D\"about\" itemtype=3D\"h=\r\nttp://schema=2Eorg/CreativeWork\"><span itemscope=3D\"\" itemprop=3D\"actio=\r\nn\" itemtype=3D\"http://schema=2Eorg/ViewAction\"><meta itemprop=3D\"url\" c=\r\nontent=3D\"https://na2=2Edocusign=2Enet/Signing/EmailStart=2Easpx?a=3Dd2=\r\n76797a-7af2-4ef3-b031-02c2ea649b68&etti=3D24&acct=3D7b866992-f8fe-4860-=\r\n8694-cc3914c8e26b&er=3D514be703-a812-4233-8865-a9deb36392d9\"/><meta ite=\r\nmprop=3D\"name\" content=3D\"View Documents\"/></span></span></span></body>=\r\n</html>','EnvelopeActivation=\r\n Linda Propes sent you a document to=\r\n review and sign=2E  REVIEW DOCUMENT  =\r\nLinda Propes linda=2Epropes@nelsonm=\r\nullins=2EcomPlea=\r\nse signPowered by&#160;Do Not Share This Email This email contains a=\r\n secure link to Docusign=2E Please do not share this email, link, or ac=\r\ncess code with others=2EAlternate Signing Method Visit Docusign=2Ecom, click \'Access Documents\', and enter the s=\r\necurity code: D276797A7AF24EF3B03102C2EA649B682 A=\r\nbout Docusign Sign documents electronically in just minutes=2E=\r\n It\'s safe, secure, and legally binding=2E Whether you\'re in an office,=\r\n at home, on-the-go -- or even across the globe -- Docusign provides a =\r\nprofessional trusted solution for Digital Transaction Management=E2=84=A2=\r\n=2E Questions about the Document? If you need=\r\n to modify the document or have questions about the details in the docu=\r\nment, please reach out to the sender by emailing them directly=2E=\r\nStop receiving this emailReport this =\r\nemail or read more about Declining to sign and Managing notifications=2E If you have tro=\r\nuble signing, visit \"How to Sign a Document\" on our Docusign Support Center, or b=\r\necome part of the Docu=\r\nsign Community to access tips and guidance from peers=2EDownload t=\r\nhe Docusign App This message was sent to you by Linda Pr=\r\nopes who is using the Docusign Electronic Signature Service=2E If you w=\r\nould rather not receive email from this sender you may contact the send=\r\ner with your request=2E=\r\n',0,0,0,0,0,0,'2025-08-06 15:02:48','2025-12-09 19:27:12','2025-12-09 19:27:12','2025-12-09 19:27:12',NULL,NULL,NULL),
(588,4,'<1678387538.141518.1754500004452@app128044.mia201.service-now.com>',NULL,NULL,'Comment added to INC-GSAFSD20147835','fsdsupport@gsa.gov','\"Federal Service Desk (FSD)\"','<html><head></head><body><p></p>\r\n<style type=\"text/css\">\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n</style>\r\n<div style=\"margin: 0 auto !important;\" align=\"center\">\r\n<table class=\"w100\" style=\"width: 600px; background-color: #f7f7f9; margin: 0 auto !important; padding: 0px;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" bgcolor=\"#F7F7F9\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 13px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"background-color: #d8ecff;\" height=\"32\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"40\" style=\"width: 53.1077%;\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td height=\"50\"><img src=\"cid:sys_attachment.dosys_idbe2e8d8d1bda2a50205e8736624bcb90@SNC.373c03ee5c81c9cb\" width=\"auto\" height=\"50\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr style=\"background-color: #d8ecff;\" height=\"22\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr><!-- Left-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- CONTAINER -->\r\n<td width=\"564\">\r\n<table class=\"w100\" style=\"margin: 0px; padding: 0px; box-shadow: 0px 2px 10px rgba(23, 40, 52, 0.08);\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody><!-- Main Container -->\r\n<tr>\r\n<td class=\"pad-sides-20\" style=\"border-radius: 6px; text-align: left; background-color: #ffffff; padding: 24px 24px 24px 24px; color: #454545;\" align=\"center\">\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-bottom: 10px;\"><strong>This is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD)</strong> which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.</div>\r\n</div>\r\n<hr>\r\n<p></p><div style=\"font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif; line-height: 26px; font-size: 16px;\">\r\n<div style=\"line-height: 26px; padding-bottom: 24px; text-align: left; color: #454545;\">\r\n<h4 style=\"margin-top: 14pt; line-height: 32px; margin-bottom: 4pt; text-align: left; font-size: 17.52pt;\"><strong> New Comment(s) on Your FSD.gov Incident: INC-GSAFSD20147835</strong></h4>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left; font-size: 12pt;\">Hello <strong>rick@mavrix.one,</strong></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left;\">There are new comments on your incident <strong>INC-GSAFSD20147835</strong>.</p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 6pt; text-align: left;\"><span style=\"font-size: 12pt;\">To view the complete incident details and activity history, please use the link below:<br></span><strong><span style=\"font-size: 12pt;\"></span></strong></p><div style=\"margin-top: 8px;\"><strong><a href=\"https://www.fsd.gov/gsafsd_sp?id=incident_form&amp;table=incident&amp;sys_id=ecb56edf8707a690efb1fe68cebb3551\" style=\"background-color: #70E17B;color: #162E51;font-size: 16px;text-decoration: none; border-radius: 4px;-webkit-border-radius: 4px;-moz-border-radius: 4px;display: inline-block;padding: 10px 32px 10px 32px;\">View incident</a></strong></div><p></p>\r\n<span style=\"font-size: 12pt;\">Thank you,</span><span style=\"font-size: 12pt;\"><br></span><strong><span style=\"font-size: 12pt;\">FSD.gov Team</span></strong></div>\r\n</div><p></p>\r\n<hr>\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-top: 10px;\"><strong>Don\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times!</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0036075\" target=\"_blank\" rel=\"noopener\">Invite others </a>to help manage your registration. <strong>DO NOT</strong> attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. <strong>Submit all entity validation documentation from your Entity Workspace in SAM.gov.</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0057690\" target=\"_blank\" rel=\"noopener\">Learn how to add documentation</a> to your entity validation case.</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- END CONTAINER --> <!-- Right-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"background-color: #f7f7f9;\" align=\"center\" height=\"40\"></td>\r\n</tr>\r\n<!-- Footer started -->\r\n<tr style=\"background-color: #d8ecff;\">\r\n<td>\r\n<table style=\"background-color: #d8ecff;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td height=\"30\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 14px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_id7d465e4a1b3ca2103943eac1604bcbb6@SNC.5ac2345fabb9be3b\" width=\"120\" height=\"40\" title=\"Cloud 4.png\" alt=\"Cloud\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"30\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff;\" align=\"center\" valign=\"top\" height=\"30\"><img src=\"cid:sys_attachment.dosys_idb04e85cd1bda2a50205e8736624bcbfa@SNC.6dda010eda97160\" width=\"auto\" height=\"30\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_idb1a5160a1b3ca2103943eac1604bcbdc@SNC.9c85ba8404eda5f\" width=\"140\" height=\"40\" title=\"Cloud 3.png\" alt=\"Cloud\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff; color: #ffffff;\">\r\n<table style=\"color: #ffffff;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr align=\"center\">\r\n<td><span id=\"templateAddress\" class=\"footer\" style=\"color: #162e51; font-size: 14px; line-height: 18px; text-align: center; margin: 0 !important;\"> GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td height=\"10\"></td>\r\n</tr>\r\n<tr>\r\n<td height=\"120px\"><img style=\"height: 120px; width: 100%;\" src=\"cid:sys_attachment.dosys_id7555160a1b3ca2103943eac1604bcb39@SNC.43911290f84fc247\" height=\"120\" title=\"Jefferson Light Blue 2.png\" alt=\"Jefferson Memorial\"><span id=\"mce_26\"></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<!-- Footer end--></tbody>\r\n</table>\r\n</div><div>&nbsp;</div><div style=\"display:inline\">Ref:MSG1546044_k4scVcX2pLkY14b53BxD</div></body></html>','\r\n\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD) which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.\r\n\r\n\r\n\r\n\r\n New Comment(s) on Your FSD.gov Incident: INC-GSAFSD20147835\r\nHello rick@mavrix.one,\r\nThere are new comments on your incident INC-GSAFSD20147835.\r\nTo view the complete incident details and activity history, please use the link below:View incident\r\nThank you,FSD.gov Team\r\n\r\n\r\n\r\nDon\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times! Invite others to help manage your registration. DO NOT attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. Submit all entity validation documentation from your Entity Workspace in SAM.gov. Learn how to add documentation to your entity validation case.\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;Ref:MSG1546044_k4scVcX2pLkY14b53BxD',0,0,0,0,0,0,'2025-08-06 17:06:44','2025-12-09 19:27:12','2025-12-09 19:27:12','2025-12-09 19:27:12',NULL,NULL,NULL),
(589,4,'<2040490430.141514.1754500004091@app128044.mia201.service-now.com>',NULL,NULL,'Incident INC-GSAFSD20147835 Awaiting Your Response','fsdsupport@gsa.gov','\"Federal Service Desk (FSD)\"','<html><head></head><body><p></p>\r\n<style type=\"text/css\">\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n</style>\r\n<div style=\"margin: 0 auto !important;\" align=\"center\">\r\n<table class=\"w100\" style=\"width: 600px; background-color: #f7f7f9; margin: 0 auto !important; padding: 0px;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" bgcolor=\"#F7F7F9\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 13px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"background-color: #d8ecff;\" height=\"32\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"40\" style=\"width: 53.1077%;\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td height=\"50\"><img src=\"cid:sys_attachment.dosys_idbe2e8d8d1bda2a50205e8736624bcb90@SNC.d3844292459914e2\" width=\"auto\" height=\"50\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr style=\"background-color: #d8ecff;\" height=\"22\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr><!-- Left-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- CONTAINER -->\r\n<td width=\"564\">\r\n<table class=\"w100\" style=\"margin: 0px; padding: 0px; box-shadow: 0px 2px 10px rgba(23, 40, 52, 0.08);\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody><!-- Main Container -->\r\n<tr>\r\n<td class=\"pad-sides-20\" style=\"border-radius: 6px; text-align: left; background-color: #ffffff; padding: 24px 24px 24px 24px; color: #454545;\" align=\"center\">\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-bottom: 10px;\"><strong>This is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD)</strong> which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.</div>\r\n</div>\r\n<hr>\r\n<p></p><div style=\"font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif; line-height: 26px; font-size: 16px;\">\r\n<div style=\"line-height: 26px; padding-bottom: 24px; text-align: left; color: #454545;\">\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left; font-size: 12pt;\">Hello <strong>rick@mavrix.one,</strong></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left;\">Your incident <strong><span style=\"font-size: 12pt;\">INC-GSAFSD20147835 </span></strong><span style=\"font-size: 12pt;\"> requires your response in order to proceed.</span></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 6pt; text-align: left;\"><span style=\"font-size: 12pt;\">To review the full incident details and provide your response, please use the link below:<br></span><strong><span style=\"font-size: 12pt;\"></span></strong></p><div style=\"margin-top: 8px;\"><strong><a href=\"https://www.fsd.gov/gsafsd_sp?id=incident_form&amp;table=incident&amp;sys_id=ecb56edf8707a690efb1fe68cebb3551\" style=\"background-color: #70E17B;color: #162E51;font-size: 16px;text-decoration: none; border-radius: 4px;-webkit-border-radius: 4px;-moz-border-radius: 4px;display: inline-block;padding: 10px 32px 10px 32px;\">View incident</a></strong></div><p></p>\r\n<span style=\"font-size: 12pt;\">Thank you,</span><span style=\"font-size: 12pt;\"><br></span><strong><span style=\"font-size: 12pt;\">FSD.gov Team</span></strong></div>\r\n</div><p></p>\r\n<hr>\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-top: 10px;\"><strong>Don\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times!</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0036075\" target=\"_blank\" rel=\"noopener\">Invite others </a>to help manage your registration. <strong>DO NOT</strong> attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. <strong>Submit all entity validation documentation from your Entity Workspace in SAM.gov.</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0057690\" target=\"_blank\" rel=\"noopener\">Learn how to add documentation</a> to your entity validation case.</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- END CONTAINER --> <!-- Right-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"background-color: #f7f7f9;\" align=\"center\" height=\"40\"></td>\r\n</tr>\r\n<!-- Footer started -->\r\n<tr style=\"background-color: #d8ecff;\">\r\n<td>\r\n<table style=\"background-color: #d8ecff;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td height=\"30\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 14px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_id7d465e4a1b3ca2103943eac1604bcbb6@SNC.cb10190515c0ace2\" width=\"120\" height=\"40\" title=\"Cloud 4.png\" alt=\"Cloud\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"30\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff;\" align=\"center\" valign=\"top\" height=\"30\"><img src=\"cid:sys_attachment.dosys_idb04e85cd1bda2a50205e8736624bcbfa@SNC.8f5be7cbd4ba036a\" width=\"auto\" height=\"30\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_idb1a5160a1b3ca2103943eac1604bcbdc@SNC.7c5d00d67bf46686\" width=\"140\" height=\"40\" title=\"Cloud 3.png\" alt=\"Cloud\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff; color: #ffffff;\">\r\n<table style=\"color: #ffffff;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr align=\"center\">\r\n<td><span id=\"templateAddress\" class=\"footer\" style=\"color: #162e51; font-size: 14px; line-height: 18px; text-align: center; margin: 0 !important;\"> GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td height=\"10\"></td>\r\n</tr>\r\n<tr>\r\n<td height=\"120px\"><img style=\"height: 120px; width: 100%;\" src=\"cid:sys_attachment.dosys_id7555160a1b3ca2103943eac1604bcb39@SNC.9ecc12afea7c3cae\" height=\"120\" title=\"Jefferson Light Blue 2.png\" alt=\"Jefferson Memorial\"><span id=\"mce_26\"></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<!-- Footer end--></tbody>\r\n</table>\r\n</div><div>&nbsp;</div><div style=\"display:inline\">Ref:MSG1546043_1jmaEq8ObCaFDB0hL7P5</div></body></html>','\r\n\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD) which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.\r\n\r\n\r\n\r\n\r\nHello rick@mavrix.one,\r\nYour incident INC-GSAFSD20147835  requires your response in order to proceed.\r\nTo review the full incident details and provide your response, please use the link below:View incident\r\nThank you,FSD.gov Team\r\n\r\n\r\n\r\nDon\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times! Invite others to help manage your registration. DO NOT attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. Submit all entity validation documentation from your Entity Workspace in SAM.gov. Learn how to add documentation to your entity validation case.\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;Ref:MSG1546043_1jmaEq8ObCaFDB0hL7P5',0,0,0,0,0,0,'2025-08-06 17:06:44','2025-12-09 19:27:12','2025-12-09 19:27:12','2025-12-09 19:27:12',NULL,NULL,NULL),
(590,4,'<9c356025-b21f-427b-b8ba-e925ab01844a@mavrix.one>',NULL,NULL,'Employee Healthcare Census & Information Request','katherine@mavrix.one','Katherine Aponte','Good afternoon,\r\n\r\nPlease see the attached Employee Healthcare Census for your review and \r\ncompletion. This is simply to compile each employee\'s (and \r\nspouse/family) requests for healthcare coverage.\r\n\r\nPlease also complete the second tab with your personal contact \r\ninformation. This will assist with streamlining future onboarding \r\npaperwork and other documentation.\r\n\r\nIf you have any questions, please let me know. Thanks in advance!\r\n\r\nBest regards,\r\n\r\nKaty','Good afternoon,\r\n\r\nPlease see the attached Employee Healthcare Census for your review and \r\ncompletion. This is simply to compile each employee\'s (and \r\nspouse/family) requests for healthcare coverage.\r\n\r\nPlease also complete the second tab with your personal contact \r\ninformation. This will assist with streamlining future onboarding \r\npaperwork and other documentation.\r\n\r\nIf you have any questions, please let me know. Thanks in advance!\r\n\r\nBest regards,\r\n\r\nKaty',0,0,0,0,0,0,'2025-08-06 17:40:52','2025-12-09 19:27:13','2025-12-09 19:27:13','2025-12-09 19:27:13',NULL,NULL,NULL),
(591,4,'<calendar-d2b3a491-63e9-4b8e-8a92-b145f49d1c85@google.com>',NULL,NULL,'Invitation: LBC x Bayfront Capital  @ Thu Aug 7, 2025 11am - 12pm (EDT) (rick@mavrix.one)','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v144/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v118/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation from Jordan Wroblewski\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"1bc04sav4bo16jm9r392a06jd4\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">LBC x Bayfront Capital </span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MWJjMDRzYXY0Ym8xNmptOXIzOTJhMDZqZDQgcmlja0BtYXZyaXgub25l&amp;tok=MzIjbmF0aGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb21jMWRjM2MzYzYyYjk5Zjk1ZTE4OTI5OWViMDcxYWFiYTJjMjJiMzQ2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250807T150000Z\"></time><time itemprop=\"endDate\" datetime=\"20250807T160000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">──────────Lithium Battery Co. is inviting you to a scheduled Zoom meeting.Join Zoom Meetinghttps://us06web.zoom.us/j/87511438241?pwd=WFOtDtuTMRkqtD9HhxEtBGiM4cmqy8.1Meeting ID: 875 1143 8241Passcode: </div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><div class=\"\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span><p><br>──────────<br><br>Lithium Battery Co. is inviting you to a scheduled Zoom meeting.<br>Join Zoom Meeting<br><a href=\"https://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fj%2F87511438241%3Fpwd%3DWFOtDtuTMRkqtD9HhxEtBGiM4cmqy8.1&amp;sa=D&amp;source=calendar&amp;ust=1754935620000000&amp;usg=AOvVaw1Z1LyOcyWUQbK9TBbeXoFo\" target=\"_blank\">https://us06web.zoom.us/j/87511438241?pwd=WFOtDtuTMRkqtD9HhxEtBGiM4cmqy8.1</a><br><br>Meeting ID: 875 1143 8241<br>Passcode: 250308<br><br>---<br><br>One tap mobile<br>+13052241968,,87511438241#,,,,*250308# US<br>+16469313860,,87511438241#,,,,*250308# US<br><br>---<br><br>Dial by your location<br>• +1 305 224 1968 US<br>• +1 646 931 3860 US<br>• +1 301 715 8592 US (Washington DC)<br>• +1 309 205 3325 US<br>• +1 312 626 6799 US (Chicago)<br>• +1 646 558 8656 US (New York)<br>• +1 386 347 5053 US<br>• +1 507 473 4847 US<br>• +1 564 217 2000 US<br>• +1 669 444 9171 US<br>• +1 689 278 1000 US<br>• +1 719 359 4580 US<br>• +1 720 707 2699 US (Denver)<br>• +1 253 205 0468 US<br>• +1 253 215 8782 US (Tacoma)<br>• +1 346 248 7799 US (Houston)<br>• +1 360 209 5623 US<br><br>Meeting ID: 875 1143 8241<br>Passcode: 250308<br><br>Find your local number: <a href=\"https://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fu%2Fkeak3Aj3W&amp;sa=D&amp;source=calendar&amp;ust=1754935620000000&amp;usg=AOvVaw0Oxn0mIOOXXkdNIdbynKq3\" target=\"_blank\">https://us06web.zoom.us/u/keak3Aj3W</a><br><br><br><br>──────────</p></span><meta itemprop=\"description\" content=\"──────────Lithium Battery Co. is inviting you to a scheduled Zoom meeting.Join Zoom Meetinghttps://us06web.zoom.us/j/87511438241?pwd=WFOtDtuTMRkqtD9HhxEtBGiM4cmqy8.1Meeting ID: 875 1143 8241Passcode: 250308---One tap mobile+13052241968,,87511438241#,,,,*250308# US+16469313860,,87511438241#,,,,*250308# US---Dial by your location• +1 305 224 1968 US• +1 646 931 3860 US• +1 301 715 8592 US (Washington DC)• +1 309 205 3325 US• +1 312 626 6799 US (Chicago)• +1 646 558 8656 US (New York)• +1 386 347 5053 US• +1 507 473 4847 US• +1 564 217 2000 US• +1 669 444 9171 US• +1 689 278 1000 US• +1 719 359 4580 US• +1 720 707 2699 US (Denver)• +1 253 205 0468 US• +1 253 215 8782 US (Tacoma)• +1 346 248 7799 US (Houston)• +1 360 209 5623 USMeeting ID: 875 1143 8241Passcode: 250308Find your local number: https://us06web.zoom.us/u/keak3Aj3W──────────\"/></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250807T150000Z\"></time><time itemprop=\"endDate\" datetime=\"20250807T160000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Thursday Aug 7, 2025 ⋅ 11am – 12pm (Eastern Time - New York)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Location</h2></td></tr></table><span itemprop=\"location\" itemscope itemtype=\"http://schema.org/Place\"><span itemprop=\"name\" class=\"primary-text notranslate\" style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\">https://us06web.zoom.us/j/87511438241?pwd=WFOtDtuTMRkqtD9HhxEtBGiM4cmqy8.1&amp;jst=3</span><br/><a href=\"https://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fj%2F87511438241%3Fpwd%3DWFOtDtuTMRkqtD9HhxEtBGiM4cmqy8.1%26jst%3D3&amp;sa=D&amp;source=calendar&amp;ust=1754935620000000&amp;usg=AOvVaw0xZWNsTTv0sl6dp-rGhN09\" class=\"accent-text underline-on-hover\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" itemprop=\"map\">View map</a></span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:nathan@lithiumbatterycompany.com\">Nathan Staron</a></span><meta itemprop=\"email\" content=\"nathan@lithiumbatterycompany.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Nathan Staron\"/><meta itemprop=\"email\" content=\"nathan@lithiumbatterycompany.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:brian@bayfrontcapitalllc.com\">brian@bayfrontcapitalllc.com</a></span><meta itemprop=\"email\" content=\"brian@bayfrontcapitalllc.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jarrett@lithiumbatterycompany.com\">Jarrett Brownfield</a></span><meta itemprop=\"email\" content=\"jarrett@lithiumbatterycompany.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jordan@lithiumbatterycompany.com\">Jordan Wroblewski</a></span><meta itemprop=\"email\" content=\"jordan@lithiumbatterycompany.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MWJjMDRzYXY0Ym8xNmptOXIzOTJhMDZqZDQgcmlja0BtYXZyaXgub25l&amp;tok=MzIjbmF0aGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb21jMWRjM2MzYzYyYjk5Zjk1ZTE4OTI5OWViMDcxYWFiYTJjMjJiMzQ2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MWJjMDRzYXY0Ym8xNmptOXIzOTJhMDZqZDQgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MzIjbmF0aGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb21jMWRjM2MzYzYyYjk5Zjk1ZTE4OTI5OWViMDcxYWFiYTJjMjJiMzQ2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MWJjMDRzYXY0Ym8xNmptOXIzOTJhMDZqZDQgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MzIjbmF0aGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb21jMWRjM2MzYzYyYjk5Zjk1ZTE4OTI5OWViMDcxYWFiYTJjMjJiMzQ2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MWJjMDRzYXY0Ym8xNmptOXIzOTJhMDZqZDQgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MzIjbmF0aGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb21jMWRjM2MzYzYyYjk5Zjk1ZTE4OTI5OWViMDcxYWFiYTJjMjJiMzQ2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MWJjMDRzYXY0Ym8xNmptOXIzOTJhMDZqZDQgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MzIjbmF0aGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb21jMWRjM2MzYzYyYjk5Zjk1ZTE4OTI5OWViMDcxYWFiYTJjMjJiMzQ2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MWJjMDRzYXY0Ym8xNmptOXIzOTJhMDZqZDQgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MzIjbmF0aGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb21jMWRjM2MzYzYyYjk5Zjk1ZTE4OTI5OWViMDcxYWFiYTJjMjJiMzQ2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MWJjMDRzYXY0Ym8xNmptOXIzOTJhMDZqZDQgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MzIjbmF0aGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb21jMWRjM2MzYzYyYjk5Zjk1ZTE4OTI5OWViMDcxYWFiYTJjMjJiMzQ2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MWJjMDRzYXY0Ym8xNmptOXIzOTJhMDZqZDQgcmlja0BtYXZyaXgub25l&amp;tok=MzIjbmF0aGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb21jMWRjM2MzYzYyYjk5Zjk1ZTE4OTI5OWViMDcxYWFiYTJjMjJiMzQ2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MWJjMDRzYXY0Ym8xNmptOXIzOTJhMDZqZDQgcmlja0BtYXZyaXgub25l&amp;tok=MzIjbmF0aGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb21jMWRjM2MzYzYyYjk5Zjk1ZTE4OTI5OWViMDcxYWFiYTJjMjJiMzQ2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','LBC x Bayfront Capital\r\nThursday Aug 7, 2025 ⋅ 11am – 12pm\r\nEastern Time - New York\r\n\r\nLocation\r\nhttps://us06web.zoom.us/j/87511438241?pwd=WFOtDtuTMRkqtD9HhxEtBGiM4cmqy8.1&jst=3	\r\nhttps://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fj%2F87511438241%3Fpwd%3DWFOtDtuTMRkqtD9HhxEtBGiM4cmqy8.1%26jst%3D3&sa=D&source=calendar&ust=1754935620000000&usg=AOvVaw0xZWNsTTv0sl6dp-rGhN09\r\n\r\n\r\n\r\n──────────Lithium Battery Co. is inviting you to a scheduled Zoom  \r\nmeeting.Join Zoom  \r\nMeetinghttps://us06web.zoom.us/j/87511438241?pwd=WFOtDtuTMRkqtD9HhxEtBGiM4cmqy8.1Meeting  \r\nID: 875 1143 8241Passcode: 250308---One tap  \r\nmobile+13052241968,,87511438241#,,,,*250308#  \r\nUS+16469313860,,87511438241#,,,,*250308# US---Dial by your location• +1 305  \r\n224 1968 US• +1 646 931 3860 US• +1 301 715 8592 US (Washington DC)• +1 309  \r\n205 3325 US• +1 312 626 6799 US (Chicago)• +1 646 558 8656 US (New York)•  \r\n+1 386 347 5053 US• +1 507 473 4847 US• +1 564 217 2000 US• +1 669 444 9171  \r\nUS• +1 689 278 1000 US• +1 719 359 4580 US• +1 720 707 2699 US (Denver)• +1  \r\n253 205 0468 US• +1 253 215 8782 US (Tacoma)• +1 346 248 7799 US (Houston)•  \r\n+1 360 209 5623 USMeeting ID: 875 1143 8241Passcode: 250308Find your local  \r\nnumber: https://us06web.zoom.us/u/keak3Aj3W──────────\r\n\r\nOrganizer\r\nNathan Staron\r\nnathan@lithiumbatterycompany.com\r\n\r\nGuests\r\nNathan Staron - organizer\r\nbrian@bayfrontcapitalllc.com\r\nJarrett Brownfield\r\nJordan Wroblewski\r\nrick@mavrix.one\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=MWJjMDRzYXY0Ym8xNmptOXIzOTJhMDZqZDQgcmlja0BtYXZyaXgub25l&tok=MzIjbmF0aGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb21jMWRjM2MzYzYyYjk5Zjk1ZTE4OTI5OWViMDcxYWFiYTJjMjJiMzQ2&ctz=America%2FNew_York&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=MWJjMDRzYXY0Ym8xNmptOXIzOTJhMDZqZDQgcmlja0BtYXZyaXgub25l&tok=MzIjbmF0aGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb21jMWRjM2MzYzYyYjk5Zjk1ZTE4OTI5OWViMDcxYWFiYTJjMjJiMzQ2&ctz=America%2FNew_York&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-08-06 18:07:21','2025-12-09 19:27:13','2025-12-09 19:27:13','2025-12-09 19:27:13',NULL,NULL,NULL),
(592,4,'<217008507.142977.1754540056933@app128017.mia201.service-now.com>',NULL,NULL,'Your incident INC-GSAFSD20147835 requires a response','fsdsupport@gsa.gov','\"Federal Service Desk (FSD)\"','<html><head></head><body><p></p>\r\n<style type=\"text/css\">\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n</style>\r\n<div style=\"margin: 0 auto !important;\" align=\"center\">\r\n<table class=\"w100\" style=\"width: 600px; background-color: #f7f7f9; margin: 0 auto !important; padding: 0px;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" bgcolor=\"#F7F7F9\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 13px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"background-color: #d8ecff;\" height=\"32\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"40\" style=\"width: 53.1077%;\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td height=\"50\"><img src=\"cid:sys_attachment.dosys_idbe2e8d8d1bda2a50205e8736624bcb90@SNC.3350e327b8a841e2\" width=\"auto\" height=\"50\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr style=\"background-color: #d8ecff;\" height=\"22\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr><!-- Left-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- CONTAINER -->\r\n<td width=\"564\">\r\n<table class=\"w100\" style=\"margin: 0px; padding: 0px; box-shadow: 0px 2px 10px rgba(23, 40, 52, 0.08);\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody><!-- Main Container -->\r\n<tr>\r\n<td class=\"pad-sides-20\" style=\"border-radius: 6px; text-align: left; background-color: #ffffff; padding: 24px 24px 24px 24px; color: #454545;\" align=\"center\">\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-bottom: 10px;\"><strong>This is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD)</strong> which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.</div>\r\n</div>\r\n<hr>\r\n<p></p><div style=\"font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif; line-height: 26px; font-size: 16px;\">\r\n<div style=\"line-height: 26px; padding-bottom: 24px; text-align: left; color: #454545;\">\r\n<h4 style=\"margin-top: 14pt; line-height: 32px; margin-bottom: 4pt; text-align: left; font-size: 17.52pt;\"><strong> Reminder: Please Review Your Incident</strong></h4>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left; font-size: 12pt;\">Hello <strong>rick@mavrix.one,</strong></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left;\">Your incident <strong><span style=\"font-size: 12pt;\">INC-GSAFSD20147835 </span></strong><span style=\"font-size: 12pt;\"> is currently on hold pending your response.</span></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 6pt; text-align: left;\"><span style=\"font-size: 12pt;\">To review the incident details and submit your reply, please use the link below:<br></span><strong><span style=\"font-size: 12pt;\"></span></strong></p><div style=\"margin-top: 8px;\"><strong><a href=\"https://www.fsd.gov/gsafsd_sp?id=incident_form&amp;table=incident&amp;sys_id=ecb56edf8707a690efb1fe68cebb3551\" style=\"background-color: #70E17B;color: #162E51;font-size: 16px;text-decoration: none; border-radius: 4px;-webkit-border-radius: 4px;-moz-border-radius: 4px;display: inline-block;padding: 10px 32px 10px 32px;\">View incident</a></strong></div><span style=\"font-size: 12pt;\"> <br></span><strong><span style=\"font-size: 12pt;\">Please note:</span></strong><span style=\"font-size: 12pt;\"> If we do not receive a response 2025-08-12 20:00:00 PDT<strong>,</strong> the incident will be marked as resolved.</span><p></p>\r\n<span style=\"font-size: 12pt;\">Thank you,</span><span style=\"font-size: 12pt;\"><br></span><strong><span style=\"font-size: 12pt;\">FSD.gov Team</span></strong></div>\r\n</div><p></p>\r\n<hr>\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-top: 10px;\"><strong>Don\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times!</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0036075\" target=\"_blank\" rel=\"noopener\">Invite others </a>to help manage your registration. <strong>DO NOT</strong> attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. <strong>Submit all entity validation documentation from your Entity Workspace in SAM.gov.</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0057690\" target=\"_blank\" rel=\"noopener\">Learn how to add documentation</a> to your entity validation case.</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- END CONTAINER --> <!-- Right-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"background-color: #f7f7f9;\" align=\"center\" height=\"40\"></td>\r\n</tr>\r\n<!-- Footer started -->\r\n<tr style=\"background-color: #d8ecff;\">\r\n<td>\r\n<table style=\"background-color: #d8ecff;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td height=\"30\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 14px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_id7d465e4a1b3ca2103943eac1604bcbb6@SNC.fc6c0f047ef9ddf\" width=\"120\" height=\"40\" title=\"Cloud 4.png\" alt=\"Cloud\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"30\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff;\" align=\"center\" valign=\"top\" height=\"30\"><img src=\"cid:sys_attachment.dosys_idb04e85cd1bda2a50205e8736624bcbfa@SNC.bf169e8c207c6944\" width=\"auto\" height=\"30\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_idb1a5160a1b3ca2103943eac1604bcbdc@SNC.626b755ede4ee60b\" width=\"140\" height=\"40\" title=\"Cloud 3.png\" alt=\"Cloud\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff; color: #ffffff;\">\r\n<table style=\"color: #ffffff;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr align=\"center\">\r\n<td><span id=\"templateAddress\" class=\"footer\" style=\"color: #162e51; font-size: 14px; line-height: 18px; text-align: center; margin: 0 !important;\"> GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td height=\"10\"></td>\r\n</tr>\r\n<tr>\r\n<td height=\"120px\"><img style=\"height: 120px; width: 100%;\" src=\"cid:sys_attachment.dosys_id7555160a1b3ca2103943eac1604bcb39@SNC.13c8f0abeef4040\" height=\"120\" title=\"Jefferson Light Blue 2.png\" alt=\"Jefferson Memorial\"><span id=\"mce_26\"></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<!-- Footer end--></tbody>\r\n</table>\r\n</div><div>&nbsp;</div><div style=\"display:inline\">Ref:MSG1594206_maUPfZ7hpmqBKbg9l1Uj</div></body></html>','\r\n\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD) which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.\r\n\r\n\r\n\r\n\r\n Reminder: Please Review Your Incident\r\nHello rick@mavrix.one,\r\nYour incident INC-GSAFSD20147835  is currently on hold pending your response.\r\nTo review the incident details and submit your reply, please use the link below:View incident Please note: If we do not receive a response 2025-08-12 20:00:00 PDT, the incident will be marked as resolved.\r\nThank you,FSD.gov Team\r\n\r\n\r\n\r\nDon\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times! Invite others to help manage your registration. DO NOT attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. Submit all entity validation documentation from your Entity Workspace in SAM.gov. Learn how to add documentation to your entity validation case.\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;Ref:MSG1594206_maUPfZ7hpmqBKbg9l1Uj',0,0,0,0,0,0,'2025-08-07 04:14:16','2025-12-09 19:27:13','2025-12-09 19:27:13','2025-12-09 19:27:13',NULL,NULL,NULL),
(593,4,'<CAGOCFXj53oD_-CV1DRu+Kb1E_2yKRdpHOeJnvecBOifWwtuQpg@mail.gmail.com>',NULL,NULL,'Fwd: Recap of your meeting with MAVRIX','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Hi Brian and Rick,   </div><div><br></div><div>Attached are the meeting notes from todays call.   Fathom notetaker is by far one of the most advanced note takers we have seen.   Thanks again for taking our call and helping us through this.  I am personally very thankful for your time you have spent on our project.   Please let us know if you need anything else.  </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">Fathom</strong> <span dir=\"auto\">&lt;no-reply@fathom.video&gt;</span><br>Date: Thu, Aug 7, 2025 at 12:02 PM<br>Subject: Recap of your meeting with MAVRIX<br>To: Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\">nathan@lithiumbatterycompany.com</a>&gt;<br></div><br><br><div class=\"msg68178351972354969\"><u></u>\r\n\r\n  \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n  \r\n  <div id=\"m_68178351972354969emailBody\" style=\"margin:0;padding:0\">\r\n    <div style=\"display:none\">Meeting Purpose\r\n\r\nDiscuss Lithium Battery Co&#39;s financial status, facility plans, and potential investment partnership with Bayfront Capital.\r\n\r\nKey Takeaways\r\n\r\n  - LBC has $2.85M equipment loan with Climate First Bank, with most equipment arriving by September (delayed by typhoon). Equipment needs a facility for installation, with LOIs dependent on securing location.\r\n  - Company transitioning from e-commerce ($3.7M peak revenue) to manufacturing, with pending litigation for $526K+ recovery from previous landlord (hearing January 2026).\r\n  - Immediate need: Secure new facility by August 12-13 deadline; landlord requires confirmation of financial sponsor to hold property.\r\n  - Multiple LOIs in pipeline including potential $10M deal for 2026 (growing to $100M by year 3), with Boeing and Southern Company opportunities advancing.\r\n\r\nTopics\r\n\r\nFinancial Status &amp; History\r\n\r\n  - LBC operating since 2014, primarily as e-commerce business with peak revenue of $3.7M in 2020-21\r\n  - YTD 2025 revenue: $368K reported through June + approximately $300K in recent orders (FBI, LG, GE)\r\n  - 2024 financials: $1.031M revenue with $122K profit (approx. 15-16% NOI)\r\n  - $482K equity invested by founders, with $221.9K allocated to equipment purchase\r\n  - Current balance sheet shows $526K &quot;Litigation Capital&quot; (paid in protest to previous landlord)\r\n  - Insurance payout from destroyed research vessel contributed to equity for Climate First loan\r\n  - Company transitioning to C-Corp structure to create clean balance sheet for institutional financing\r\n\r\nEquipment &amp; Manufacturing Capacity\r\n\r\n  - $2.85M loan secured for equipment purchase (most on water, arriving September 5-7, delayed by typhoon)\r\n  - Equipment required UL compliance upgrades, increasing costs by $315K\r\n  - 75% of equipment currently on water; remaining line held pending final payment\r\n  - Equipment was pre-commissioned in China; estimated 6 weeks for installation after arrival\r\n  - Large cylindrical assembly line has customer lined up upon arrival in Tampa\r\n\r\nFacility Situation &amp; Litigation\r\n\r\n  - Previous facility issue: landlord falsified documents during due diligence (asbestos presence)\r\n  - $526K paid in protest to Chosen Industries (previous landlord)\r\n  - Legal case proceeding as plaintiff with first hearing scheduled for January 2026\r\n  - Landlord triggered default; LBC expects reimbursement for all costs incurred finding new facility\r\n  - New facility: landlords flexible but require confirmation of financial sponsor by August 12-13\r\n  - Security deposit for new facility: $233,698 (landlords willing to accept in three $77K payments)\r\n\r\nMarket Strategy &amp; Pipeline\r\n\r\n  - Multiple LOIs pending facility/equipment confirmation\r\n  - Key prospect: Battery company with $10M potential for 2026, growing to $100M by year 3\r\n  - This company owns market for AGM batteries in data centers/nuclear facilities, transitioning to sodium chemistry\r\n  - Boeing opportunity advancing for small battery products\r\n  - Southern Company meeting scheduled for tomorrow\r\n  - Strategy focuses on established companies with existing distribution channels rather than startups\r\n  - Industry experiencing consolidation, eliminating middlemen who simply rebrand Chinese products\r\n\r\nPartnership Exploration\r\n\r\n  - Bayfront Capital conducting due diligence for potential investment\r\n  - Brian requested pro forma financial projections, equity table, and formation documents\r\n  - Brian sees &quot;path forward&quot; despite company&#39;s challenges, appreciates resilience\r\n  - Immediate need: LOI from Bayfront to show landlords by August 12-13 deadline\r\n\r\nNext Steps\r\n\r\n  - Jarrett to provide 5-year pro forma financial model within 45 minutes\r\n  - Jarrett to upload company formation documents and equity/cap table to data room\r\n  - Nathan to pursue additional LOI from Boeing\r\n  - Brian to review materials and potentially provide letter of interest showing due diligence progress\r\n  - LBC team to continue Southern Company discussions (meeting tomorrow)\r\n  - Fathom Notetaker link to be sent to Brian as alternative to his current solution\r\n</div>\r\n    <table id=\"m_68178351972354969emailWrapper\" width=\"100%\" style=\"min-width:320px\" cellspacing=\"0\" cellpadding=\"0\">\r\n      <tbody><tr>\r\n        <td class=\"m_68178351972354969p-0\" style=\"padding:30px 0\">\r\n          <table class=\"m_68178351972354969w-100p\" width=\"560\" align=\"center\" style=\"max-width:560px;margin:0 auto\" cellpadding=\"0\" cellspacing=\"0\">\r\n            <tbody><tr>\r\n              <td class=\"m_68178351972354969pt-15\" style=\"padding:18px 0px 20px\">\r\n                <table class=\"m_68178351972354969maxw-560\" style=\"max-width:640px;width:100%!important;margin:0\" cellpadding=\"0\" cellspacing=\"0\">\r\n                  <tbody><tr>\r\n                    <td>\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tbody><tr>\r\n                          <td align=\"left\">\r\n                            <a style=\"text-decoration:none\" href=\"https://fathom.video/?utm_campaign=postmeetingsummary&amp;utm_content=header&amp;utm_medium=email\" target=\"_blank\">\r\n                              <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/fathom-logo-black-v2.png\" width=\"152\" alt=\"FATHOM\">\r\n                            </a>\r\n                          </td>\r\n                        </tr>\r\n                      </tbody></table>\r\n                    </td>\r\n                  </tr>\r\n                </tbody></table>\r\n              </td>\r\n            </tr>\r\n            <tr>\r\n              <td class=\"m_68178351972354969pt-15\">\r\n                <table class=\"m_68178351972354969maxw-560\" style=\"max-width:640px;width:100%!important;margin:0\" cellpadding=\"0\" cellspacing=\"0\">\r\n                  <tbody><tr>\r\n                    <td style=\"padding:0 0 20px\">\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tbody><tr>\r\n                          <th class=\"m_68178351972354969tflex\" align=\"left\" style=\"vertical-align:top\">\r\n                            <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                              <tbody><tr>\r\n                                <td class=\"m_68178351972354969pt-0 m_68178351972354969pb-9\" style=\"padding:8px 0 5px\">\r\n                                  <table cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td style=\"font:600 16px/20px Arial,Helvetica,sans-serif,Inter;color:#606167\">\r\n                                        Meeting with MAVRIX\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td class=\"m_68178351972354969fs-24 m_68178351972354969lh-30\" style=\"padding:0 0 3px;font:700 28px/35px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.6px\">\r\n                                  LBC x Bayfront Capital \r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td style=\"font:500 13px/17px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.2px\">\r\n                                  August 07, 2025  <span style=\"color:#d3d3d3\">•</span> \r\n                                  60 mins  <span style=\"color:#d3d3d3\">•</span> \r\n                                  <a class=\"m_68178351972354969underline\" style=\"color:#0070ac\" href=\"https://fathom.video/calls/373622250?tab=summary\" target=\"_blank\">View Meeting</a>\r\n                                  or <a class=\"m_68178351972354969underline\" style=\"color:#0070ac\" href=\"https://fathom.video/calls/373622250?tab=ask_fathom\" target=\"_blank\">Ask Fathom</a>\r\n                                </td>\r\n                              </tr>\r\n                            </tbody></table>\r\n                          </th>\r\n                        </tr>\r\n                      </tbody></table>\r\n                    </td>\r\n                  </tr>\r\n                  <tr>\r\n                    <td class=\"m_68178351972354969ptb-20\" style=\"border-radius:10px\">\r\n                      <table width=\"560\" align=\"center\" style=\"max-width:560px;width:100%!important;margin:0px\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tbody><tr>\r\n                          <td class=\"m_68178351972354969fs-20 m_68178351972354969lh-25\" style=\"padding:19px 0 10px;font:700 14px/17px Arial,Helvetica,sans-serif,Inter;color:#9c9c9c;letter-spacing:-.28px;text-transform:uppercase\">\r\n                            Action Items ✨\r\n                          </td>\r\n                        </tr>\r\n                        <tr>\r\n                          <td class=\"m_68178351972354969pb-10\" style=\"padding:0 0 15px\">\r\n                            <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                              <tbody><tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_68178351972354969ico-block-03 m_68178351972354969fs-14 m_68178351972354969lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=935.9999\" target=\"_blank\">\r\n                                          Upload dynamic 5-yr pro forma Excel model to Proton Drive financial section within 45 mins\r\n<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_68178351972354969ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        Jarrett Brownfield\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_68178351972354969ico-block-03 m_68178351972354969fs-14 m_68178351972354969lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=1545.9999\" target=\"_blank\">\r\n                                          Attempt to secure Letter of Interest from Boeing for battery products\r\n<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_68178351972354969ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        Nathan Staron\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_68178351972354969ico-block-03 m_68178351972354969fs-14 m_68178351972354969lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=3395.9999\" target=\"_blank\">\r\n                                          Create &amp; upload go-forward equity table w/ balances, shareholders to data room\r\n<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_68178351972354969ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        Jarrett Brownfield\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_68178351972354969ico-block-03 m_68178351972354969fs-14 m_68178351972354969lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=3454.9999\" target=\"_blank\">\r\n                                          Upload company formation docs, operating agreements, legal docs to data room\r\n<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_68178351972354969ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        Jarrett Brownfield\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_68178351972354969ico-block-03 m_68178351972354969fs-14 m_68178351972354969lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=3486.9999\" target=\"_blank\">\r\n                                          Email Brian once all requested docs uploaded to notify completion\r\n<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_68178351972354969ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        Jarrett Brownfield\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                            </tbody></table>\r\n                          </td>\r\n                        </tr>\r\n\r\n                        <tr>\r\n                          <td style=\"padding:0px\">\r\n                            <table cellpadding=\"0\" cellspacing=\"0\">\r\n                              <tbody><tr>\r\n                                <td colspan=\"3\" class=\"m_68178351972354969fs-20 m_68178351972354969lh-24 m_68178351972354969fs-11-390\" style=\"font:700 14px/17px Arial,Helvetica,sans-serif,Inter;color:#9c9c9c;letter-spacing:-.28px;text-transform:uppercase\">\r\n                                  Meeting Summary ✨\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td height=\"12\"></td>\r\n                              </tr>\r\n                                <tr>\r\n                                  <td width=\"100%\" height=\"22\">\r\n                                    <span style=\"background:#f0f0f0;padding:4px 6px;font:500 12px/16px Arial,Helvetica,sans-serif,Inter500;color:#494950;border-radius:50px;height:16px\">\r\n                                      General Template\r\n                                    </span>\r\n                                      <span style=\"font:500 11px/13px Arial,Helvetica,sans-serif,Inter500;color:#606167;letter-spacing:-.2px;margin:0 0 0 7px\">\r\n                                        <a class=\"m_68178351972354969underline\" style=\"color:#606167\" href=\"https://fathom.video/calls/373622250?initial_open_modal=modify_template&amp;tab=summary\" target=\"_blank\">Customize</a>\r\n                                          <span style=\"color:#d3d3d3\">•</span> \r\n                                        <a class=\"m_68178351972354969underline\" style=\"color:#606167\" href=\"https://fathom.video/calls/373622250?initial_open_modal=select_template&amp;tab=summary\" target=\"_blank\">Change Template</a>\r\n                                      </span>\r\n                                  </td>\r\n                                </tr>\r\n                                <tr>\r\n                                  <td height=\"12\"></td>\r\n                                </tr>\r\n                            </tbody></table>\r\n                          </td>\r\n                        </tr>\r\n\r\n                        <tr>\r\n                          <td style=\"padding:0 0 15px\">\r\n                            <div class=\"m_68178351972354969ai_notes_html_content\">\r\n                              <h2 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 16px/20px Arial,Helvetica,sans-serif,Inter;margin:25px 0 0 0\">Meeting Purpose</h2>\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0 0 25px 0\">\r\nDiscuss Lithium Battery Co&#39;s financial status, facility plans, and potential investment partnership with Bayfront Capital.\r\n</p>\r\n<h2 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 16px/20px Arial,Helvetica,sans-serif,Inter;margin:25px 0 0 0\">Key Takeaways</h2>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0 0 25px 0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=13.0\" target=\"_blank\">LBC has $2.85M equipment loan with Climate First Bank, with most equipment arriving by September (delayed by typhoon). Equipment needs a facility for installation, with LOIs dependent on securing location.<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=1710.0\" target=\"_blank\">Company transitioning from e-commerce ($3.7M peak revenue) to manufacturing, with pending litigation for $526K+ recovery from previous landlord (hearing January 2026).<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=3314.0\" target=\"_blank\">Immediate need: Secure new facility by August 12-13 deadline; landlord requires confirmation of financial sponsor to hold property.<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=1556.0\" target=\"_blank\">Multiple LOIs in pipeline including potential $10M deal for 2026 (growing to $100M by year 3), with Boeing and Southern Company opportunities advancing.<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n<h2 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 16px/20px Arial,Helvetica,sans-serif,Inter;margin:25px 0 0 0\">Topics</h2>\r\n<h3 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 14px/18px Arial,Helvetica,sans-serif,Inter;margin:0\">Financial Status &amp; History</h3>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0 0 25px 0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=1713.0\" target=\"_blank\">LBC operating since 2014, primarily as e-commerce business with peak revenue of $3.7M in 2020-21<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=1662.0\" target=\"_blank\">YTD 2025 revenue: $368K reported through June + approximately $300K in recent orders (FBI, LG, GE)<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=1875.0\" target=\"_blank\">2024 financials: $1.031M revenue with $122K profit (approx. 15-16% NOI)<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=1357.0\" target=\"_blank\">$482K equity invested by founders, with $221.9K allocated to equipment purchase<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=2621.0\" target=\"_blank\">Current balance sheet shows $526K &quot;Litigation Capital&quot; (paid in protest to previous landlord)<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=2433.0\" target=\"_blank\">Insurance payout from destroyed research vessel contributed to equity for Climate First loan<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=1602.0\" target=\"_blank\">Company transitioning to C-Corp structure to create clean balance sheet for institutional financing<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n<h3 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 14px/18px Arial,Helvetica,sans-serif,Inter;margin:0\">Equipment &amp; Manufacturing Capacity</h3>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0 0 25px 0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=1264.0\" target=\"_blank\">$2.85M loan secured for equipment purchase (most on water, arriving September 5-7, delayed by typhoon)<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=1483.0\" target=\"_blank\">Equipment required UL compliance upgrades, increasing costs by $315K<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=1264.0\" target=\"_blank\">75% of equipment currently on water; remaining line held pending final payment<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=1483.0\" target=\"_blank\">Equipment was pre-commissioned in China; estimated 6 weeks for installation after arrival<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=1430.0\" target=\"_blank\">Large cylindrical assembly line has customer lined up upon arrival in Tampa<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n<h3 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 14px/18px Arial,Helvetica,sans-serif,Inter;margin:0\">Facility Situation &amp; Litigation</h3>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0 0 25px 0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=2191.0\" target=\"_blank\">Previous facility issue: landlord falsified documents during due diligence (asbestos presence)<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=2067.0\" target=\"_blank\">$526K paid in protest to Chosen Industries (previous landlord)<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=2166.0\" target=\"_blank\">Legal case proceeding as plaintiff with first hearing scheduled for January 2026<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=2139.0\" target=\"_blank\">Landlord triggered default; LBC expects reimbursement for all costs incurred finding new facility<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=3314.0\" target=\"_blank\">New facility: landlords flexible but require confirmation of financial sponsor by August 12-13<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=1387.0\" target=\"_blank\">Security deposit for new facility: $233,698 (landlords willing to accept in three $77K payments)<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n<h3 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 14px/18px Arial,Helvetica,sans-serif,Inter;margin:0\">Market Strategy &amp; Pipeline</h3>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0 0 25px 0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=1456.0\" target=\"_blank\">Multiple LOIs pending facility/equipment confirmation<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=1556.0\" target=\"_blank\">Key prospect: Battery company with $10M potential for 2026, growing to $100M by year 3<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=3039.0\" target=\"_blank\">This company owns market for AGM batteries in data centers/nuclear facilities, transitioning to sodium chemistry<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=1556.0\" target=\"_blank\">Boeing opportunity advancing for small battery products<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=2936.0\" target=\"_blank\">Southern Company meeting scheduled for tomorrow<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=3131.0\" target=\"_blank\">Strategy focuses on established companies with existing distribution channels rather than startups<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=3241.0\" target=\"_blank\">Industry experiencing consolidation, eliminating middlemen who simply rebrand Chinese products<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n<h3 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 14px/18px Arial,Helvetica,sans-serif,Inter;margin:0\">Partnership Exploration</h3>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0 0 25px 0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=2868.0\" target=\"_blank\">Bayfront Capital conducting due diligence for potential investment<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=2898.0\" target=\"_blank\">Brian requested pro forma financial projections, equity table, and formation documents<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=2871.0\" target=\"_blank\">Brian sees &quot;path forward&quot; despite company&#39;s challenges, appreciates resilience<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=3375.0\" target=\"_blank\">Immediate need: LOI from Bayfront to show landlords by August 12-13 deadline<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n<h2 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 16px/20px Arial,Helvetica,sans-serif,Inter;margin:25px 0 0 0\">Next Steps</h2>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0 0 25px 0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=3400.0\" target=\"_blank\">Jarrett to provide 5-year pro forma financial model within 45 minutes<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=3465.0\" target=\"_blank\">Jarrett to upload company formation documents and equity/cap table to data room<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=2956.0\" target=\"_blank\">Nathan to pursue additional LOI from Boeing<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=3375.0\" target=\"_blank\">Brian to review materials and potentially provide letter of interest showing due diligence progress<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=2936.0\" target=\"_blank\">LBC team to continue Southern Company discussions (meeting tomorrow)<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/calls/373622250?tab=summary&amp;timestamp=658.0\" target=\"_blank\">Fathom Notetaker link to be sent to Brian as alternative to his current solution<span class=\"m_68178351972354969ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n\r\n                            </div>\r\n                          </td>\r\n                        </tr>\r\n\r\n                        <tr>\r\n                          <td style=\"padding:1px 0 0\">\r\n                            <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                              <tbody><tr class=\"m_68178351972354969active-t\">\r\n                                <td class=\"m_68178351972354969fs-18 m_68178351972354969lh-22\" align=\"center\" style=\"background:#00beff;font:bold 20px/24px Arial,Helvetica,sans-serif,Inter;border-radius:6px\">\r\n                                  <a style=\"color:#000;text-decoration:none;display:block;padding:13px 15px\" href=\"https://fathom.video/calls/373622250?tab=summary\" target=\"_blank\">View Meeting →</a>\r\n                                </td>\r\n                              </tr>\r\n                            </tbody></table>\r\n                          </td>\r\n                        </tr>\r\n\r\n\r\n                        <tr height=\"25\"></tr>\r\n                        <tr>\r\n                          <td>\r\n                            <table width=\"560\" style=\"max-width:560px;width:560px;background-color:#00beff1a\">\r\n                              <tbody><tr>\r\n                                <td style=\"width:250px;padding:20px 5px 8px 20px;vertical-align:top\">\r\n                                  <table>\r\n                                    <tbody><tr>\r\n                                      <td>\r\n                                        <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/robot.png\" width=\"32\">\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr height=\"10\"></tr>\r\n                                    <tr>\r\n                                      <td style=\"font:700 14px/16px Arial,Helvetica,sans-serif,Inter;color:#2d2d31;letter-spacing:-.4px\">\r\n                                        Ask Fathom!\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td style=\"font:500 14px/16px Arial,Helvetica,sans-serif,Inter;color:#3d3d44;letter-spacing:-.28px\">\r\n                                        Ask our AI Assistant for answers and insights. It&#39;s ChatGPT for your meetings!\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr height=\"10\"></tr>\r\n                                    <tr>\r\n                                      <td>\r\n                                        <a class=\"m_68178351972354969underline\" style=\"font:500 14px/16px Arial,Helvetica,sans-serif,Inter;color:#0070ac;letter-spacing:-.28px\" href=\"https://fathom.video/calls/373622250?tab=ask_fathom\" target=\"_blank\">Try Ask Fathom →</a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    </tbody></table>\r\n                                </td>\r\n                                <td style=\"padding:8px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ask-fathom-screenshot.png\" width=\"310\">\r\n                                </td>\r\n                              </tr>\r\n                            </tbody></table>\r\n                          </td>\r\n                        </tr>\r\n                      </tbody></table>\r\n                    </td>\r\n                  </tr>\r\n\r\n                  <tr>\r\n                    <td style=\"padding:24px 0 0\">\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tbody><tr>\r\n                          <th width=\"250\" align=\"center\" style=\"font:700 12px/17px Arial,Helvetica,sans-serif,Inter500;color:#6c6d72;vertical-align:top\">\r\n                              <table cellpadding=\"0\" cellspacing=\"0\">\r\n                                  <tbody><tr>\r\n                                    <td style=\"font:500 11px/13px Arial,Helvetica,sans-serif,Inter500;color:#6c6d72\">\r\n                                      © Fathom 2025. All Rights Reserved.\r\n                                        <a style=\"color:#606167;text-decoration:underline\" href=\"https://fathom.video/user/unsubscribe/eyJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJmYXRob20udmlkZW8iLCJzdWIiOiJ1bnN1YnNjcmliZS12aWEtZW1haWwiLCJleHAiOjE3NTUxODczNjMsInVzZXJfaWQiOjY0Mjc1MSwiY2FsbF9pZCI6MzczNjIyMjUwLCJzdWJzY3JpcHRpb24iOiJyZWNvcmRpbmctcmVhZHkifQ._KeR0H-sfkQYXmVlw6C8ai6fK9uTcLr79VV5DjBLd5A\" target=\"_blank\">Unsubscribe</a>\r\n                                    </td>\r\n                                  </tr>\r\n                              </tbody></table>\r\n                          </th>\r\n                        </tr>\r\n                      </tbody></table>\r\n                    </td>\r\n                  </tr>\r\n                  <tr>\r\n                    <td height=\"20\"></td>\r\n                  </tr>\r\n                  <tr>\r\n                    <td>\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tbody><tr>\r\n                          <td align=\"center\">\r\n                            <a style=\"text-decoration:none\" href=\"https://www.g2.com/products/fathom-2021-09-22/reviews\" target=\"_blank\">\r\n                              <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/rating.png\" width=\"153\">\r\n                            </a>\r\n                          </td>\r\n                        </tr>\r\n                      </tbody></table>\r\n                    </td>\r\n                  </tr>\r\n                </tbody></table>\r\n              </td>\r\n            </tr>\r\n          </tbody></table>\r\n        </td>\r\n      </tr>\r\n    </tbody></table>\r\n  </div>\r\n\r\n</div></div></div>','Hi Brian and Rick,\r\n\r\nAttached are the meeting notes from todays call.   Fathom notetaker is by\r\nfar one of the most advanced note takers we have seen.   Thanks again for\r\ntaking our call and helping us through this.  I am personally very thankful\r\nfor your time you have spent on our project.   Please let us know if you\r\nneed anything else.\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: Fathom <no-reply@fathom.video>\r\nDate: Thu, Aug 7, 2025 at 12:02 PM\r\nSubject: Recap of your meeting with MAVRIX\r\nTo: Nathan Staron <nathan@lithiumbatterycompany.com>\r\n\r\n\r\nMeeting Purpose Discuss Lithium Battery Co\'s financial status, facility\r\nplans, and potential investment partnership with Bayfront Capital. Key\r\nTakeaways - LBC has $2.85M equipment loan with Climate First Bank, with\r\nmost equipment arriving by September (delayed by typhoon). Equipment needs\r\na facility for installation, with LOIs dependent on securing location. -\r\nCompany transitioning from e-commerce ($3.7M peak revenue) to\r\nmanufacturing, with pending litigation for $526K+ recovery from previous\r\nlandlord (hearing January 2026). - Immediate need: Secure new facility by\r\nAugust 12-13 deadline; landlord requires confirmation of financial sponsor\r\nto hold property. - Multiple LOIs in pipeline including potential $10M deal\r\nfor 2026 (growing to $100M by year 3), with Boeing and Southern Company\r\nopportunities advancing. Topics Financial Status & History - LBC operating\r\nsince 2014, primarily as e-commerce business with peak revenue of $3.7M in\r\n2020-21 - YTD 2025 revenue: $368K reported through June + approximately\r\n$300K in recent orders (FBI, LG, GE) - 2024 financials: $1.031M revenue\r\nwith $122K profit (approx. 15-16% NOI) - $482K equity invested by founders,\r\nwith $221.9K allocated to equipment purchase - Current balance sheet shows\r\n$526K \"Litigation Capital\" (paid in protest to previous landlord) -\r\nInsurance payout from destroyed research vessel contributed to equity for\r\nClimate First loan - Company transitioning to C-Corp structure to create\r\nclean balance sheet for institutional financing Equipment & Manufacturing\r\nCapacity - $2.85M loan secured for equipment purchase (most on water,\r\narriving September 5-7, delayed by typhoon) - Equipment required UL\r\ncompliance upgrades, increasing costs by $315K - 75% of equipment currently\r\non water; remaining line held pending final payment - Equipment was\r\npre-commissioned in China; estimated 6 weeks for installation after arrival\r\n- Large cylindrical assembly line has customer lined up upon arrival in\r\nTampa Facility Situation & Litigation - Previous facility issue: landlord\r\nfalsified documents during due diligence (asbestos presence) - $526K paid\r\nin protest to Chosen Industries (previous landlord) - Legal case proceeding\r\nas plaintiff with first hearing scheduled for January 2026 - Landlord\r\ntriggered default; LBC expects reimbursement for all costs incurred finding\r\nnew facility - New facility: landlords flexible but require confirmation of\r\nfinancial sponsor by August 12-13 - Security deposit for new facility:\r\n$233,698 (landlords willing to accept in three $77K payments) Market\r\nStrategy & Pipeline - Multiple LOIs pending facility/equipment confirmation\r\n- Key prospect: Battery company with $10M potential for 2026, growing to\r\n$100M by year 3 - This company owns market for AGM batteries in data\r\ncenters/nuclear facilities, transitioning to sodium chemistry - Boeing\r\nopportunity advancing for small battery products - Southern Company meeting\r\nscheduled for tomorrow - Strategy focuses on established companies with\r\nexisting distribution channels rather than startups - Industry experiencing\r\nconsolidation, eliminating middlemen who simply rebrand Chinese products\r\nPartnership Exploration - Bayfront Capital conducting due diligence for\r\npotential investment - Brian requested pro forma financial projections,\r\nequity table, and formation documents - Brian sees \"path forward\" despite\r\ncompany\'s challenges, appreciates resilience - Immediate need: LOI from\r\nBayfront to show landlords by August 12-13 deadline Next Steps - Jarrett to\r\nprovide 5-year pro forma financial model within 45 minutes - Jarrett to\r\nupload company formation documents and equity/cap table to data room -\r\nNathan to pursue additional LOI from Boeing - Brian to review materials and\r\npotentially provide letter of interest showing due diligence progress - LBC\r\nteam to continue Southern Company discussions (meeting tomorrow) - Fathom\r\nNotetaker link to be sent to Brian as alternative to his current solution\r\n[image: FATHOM]\r\n<https://fathom.video/?utm_campaign=postmeetingsummary&utm_content=header&utm_medium=email>\r\nMeeting with MAVRIX\r\nLBC x Bayfront Capital\r\nAugust 07, 2025  •  60 mins  •  View Meeting\r\n<https://fathom.video/calls/373622250?tab=summary> or Ask Fathom\r\n<https://fathom.video/calls/373622250?tab=ask_fathom>\r\nAction Items ✨\r\nUpload dynamic 5-yr pro forma Excel model to Proton Drive financial section\r\nwithin 45 mins\r\n<https://fathom.video/calls/373622250?tab=summary&timestamp=935.9999>\r\nJarrett Brownfield\r\nAttempt to secure Letter of Interest from Boeing for battery products\r\n<https://fathom.video/calls/373622250?tab=summary&timestamp=1545.9999>\r\nNathan Staron\r\nCreate & upload go-forward equity table w/ balances, shareholders to data\r\nroom <https://fathom.video/calls/373622250?tab=summary&timestamp=3395.9999>\r\nJarrett Brownfield\r\nUpload company formation docs, operating agreements, legal docs to data\r\nroom <https://fathom.video/calls/373622250?tab=summary&timestamp=3454.9999>\r\nJarrett Brownfield\r\nEmail Brian once all requested docs uploaded to notify completion\r\n<https://fathom.video/calls/373622250?tab=summary&timestamp=3486.9999>\r\nJarrett Brownfield\r\nMeeting Summary ✨\r\nGeneral Template Customize\r\n<https://fathom.video/calls/373622250?initial_open_modal=modify_template&tab=summary>\r\n  •  Change Template\r\n<https://fathom.video/calls/373622250?initial_open_modal=select_template&tab=summary>\r\n\r\nMeeting Purpose\r\n\r\nDiscuss Lithium Battery Co\'s financial status, facility plans, and\r\npotential investment partnership with Bayfront Capital.\r\nKey Takeaways\r\n\r\n   -\r\n\r\n   LBC has $2.85M equipment loan with Climate First Bank, with most\r\n   equipment arriving by September (delayed by typhoon). Equipment needs a\r\n   facility for installation, with LOIs dependent on securing location.\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=13.0>\r\n   -\r\n\r\n   Company transitioning from e-commerce ($3.7M peak revenue) to\r\n   manufacturing, with pending litigation for $526K+ recovery from previous\r\n   landlord (hearing January 2026).\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=1710.0>\r\n   -\r\n\r\n   Immediate need: Secure new facility by August 12-13 deadline; landlord\r\n   requires confirmation of financial sponsor to hold property.\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=3314.0>\r\n   -\r\n\r\n   Multiple LOIs in pipeline including potential $10M deal for 2026\r\n   (growing to $100M by year 3), with Boeing and Southern Company\r\n   opportunities advancing.\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=1556.0>\r\n\r\nTopics Financial Status & History\r\n\r\n   -\r\n\r\n   LBC operating since 2014, primarily as e-commerce business with peak\r\n   revenue of $3.7M in 2020-21\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=1713.0>\r\n   -\r\n\r\n   YTD 2025 revenue: $368K reported through June + approximately $300K in\r\n   recent orders (FBI, LG, GE)\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=1662.0>\r\n   -\r\n\r\n   2024 financials: $1.031M revenue with $122K profit (approx. 15-16% NOI)\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=1875.0>\r\n   -\r\n\r\n   $482K equity invested by founders, with $221.9K allocated to equipment\r\n   purchase\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=1357.0>\r\n   -\r\n\r\n   Current balance sheet shows $526K \"Litigation Capital\" (paid in protest\r\n   to previous landlord)\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=2621.0>\r\n   -\r\n\r\n   Insurance payout from destroyed research vessel contributed to equity\r\n   for Climate First loan\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=2433.0>\r\n   -\r\n\r\n   Company transitioning to C-Corp structure to create clean balance sheet\r\n   for institutional financing\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=1602.0>\r\n\r\nEquipment & Manufacturing Capacity\r\n\r\n   -\r\n\r\n   $2.85M loan secured for equipment purchase (most on water, arriving\r\n   September 5-7, delayed by typhoon)\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=1264.0>\r\n   -\r\n\r\n   Equipment required UL compliance upgrades, increasing costs by $315K\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=1483.0>\r\n   -\r\n\r\n   75% of equipment currently on water; remaining line held pending final\r\n   payment\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=1264.0>\r\n   -\r\n\r\n   Equipment was pre-commissioned in China; estimated 6 weeks for\r\n   installation after arrival\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=1483.0>\r\n   -\r\n\r\n   Large cylindrical assembly line has customer lined up upon arrival in\r\n   Tampa <https://fathom.video/calls/373622250?tab=summary&timestamp=1430.0>\r\n\r\nFacility Situation & Litigation\r\n\r\n   -\r\n\r\n   Previous facility issue: landlord falsified documents during due\r\n   diligence (asbestos presence)\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=2191.0>\r\n   -\r\n\r\n   $526K paid in protest to Chosen Industries (previous landlord)\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=2067.0>\r\n   -\r\n\r\n   Legal case proceeding as plaintiff with first hearing scheduled for\r\n   January 2026\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=2166.0>\r\n   -\r\n\r\n   Landlord triggered default; LBC expects reimbursement for all costs\r\n   incurred finding new facility\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=2139.0>\r\n   -\r\n\r\n   New facility: landlords flexible but require confirmation of financial\r\n   sponsor by August 12-13\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=3314.0>\r\n   -\r\n\r\n   Security deposit for new facility: $233,698 (landlords willing to accept\r\n   in three $77K payments)\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=1387.0>\r\n\r\nMarket Strategy & Pipeline\r\n\r\n   -\r\n\r\n   Multiple LOIs pending facility/equipment confirmation\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=1456.0>\r\n   -\r\n\r\n   Key prospect: Battery company with $10M potential for 2026, growing to\r\n   $100M by year 3\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=1556.0>\r\n   -\r\n\r\n   This company owns market for AGM batteries in data centers/nuclear\r\n   facilities, transitioning to sodium chemistry\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=3039.0>\r\n   -\r\n\r\n   Boeing opportunity advancing for small battery products\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=1556.0>\r\n   -\r\n\r\n   Southern Company meeting scheduled for tomorrow\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=2936.0>\r\n   -\r\n\r\n   Strategy focuses on established companies with existing distribution\r\n   channels rather than startups\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=3131.0>\r\n   -\r\n\r\n   Industry experiencing consolidation, eliminating middlemen who simply\r\n   rebrand Chinese products\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=3241.0>\r\n\r\nPartnership Exploration\r\n\r\n   -\r\n\r\n   Bayfront Capital conducting due diligence for potential investment\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=2868.0>\r\n   -\r\n\r\n   Brian requested pro forma financial projections, equity table, and\r\n   formation documents\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=2898.0>\r\n   -\r\n\r\n   Brian sees \"path forward\" despite company\'s challenges, appreciates\r\n   resilience\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=2871.0>\r\n   -\r\n\r\n   Immediate need: LOI from Bayfront to show landlords by August 12-13\r\n   deadline\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=3375.0>\r\n\r\nNext Steps\r\n\r\n   -\r\n\r\n   Jarrett to provide 5-year pro forma financial model within 45 minutes\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=3400.0>\r\n   -\r\n\r\n   Jarrett to upload company formation documents and equity/cap table to\r\n   data room\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=3465.0>\r\n   -\r\n\r\n   Nathan to pursue additional LOI from Boeing\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=2956.0>\r\n   -\r\n\r\n   Brian to review materials and potentially provide letter of interest\r\n   showing due diligence progress\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=3375.0>\r\n   -\r\n\r\n   LBC team to continue Southern Company discussions (meeting tomorrow)\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=2936.0>\r\n   -\r\n\r\n   Fathom Notetaker link to be sent to Brian as alternative to his current\r\n   solution\r\n   <https://fathom.video/calls/373622250?tab=summary&timestamp=658.0>\r\n\r\nView Meeting → <https://fathom.video/calls/373622250?tab=summary>\r\nAsk Fathom!\r\nAsk our AI Assistant for answers and insights. It\'s ChatGPT for your\r\nmeetings!\r\nTry Ask Fathom → <https://fathom.video/calls/373622250?tab=ask_fathom>\r\n© Fathom 2025. All Rights Reserved. Unsubscribe\r\n<https://fathom.video/user/unsubscribe/eyJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJmYXRob20udmlkZW8iLCJzdWIiOiJ1bnN1YnNjcmliZS12aWEtZW1haWwiLCJleHAiOjE3NTUxODczNjMsInVzZXJfaWQiOjY0Mjc1MSwiY2FsbF9pZCI6MzczNjIyMjUwLCJzdWJzY3JpcHRpb24iOiJyZWNvcmRpbmctcmVhZHkifQ._KeR0H-sfkQYXmVlw6C8ai6fK9uTcLr79VV5DjBLd5A>\r\n<https://www.g2.com/products/fathom-2021-09-22/reviews>',0,0,0,0,0,0,'2025-08-07 16:48:00','2025-12-09 19:27:14','2025-12-09 19:27:14','2025-12-09 19:27:14',NULL,NULL,NULL),
(594,4,'<cedf0fb4-2492-434d-8bea-bb943d92e0d4@mavrix.one>',NULL,NULL,'Various NDAs','katherine@mavrix.one','Katherine Aponte','Hi Rick,\r\n\r\nAttached is the PDF that you and Brian sent, as well as the Word \r\nversion. I understand how PDF to Word can get mixed up. However, that \r\nversion includes OPSEC language that isn\'t in the executed ones, nor a \r\nconfidentiality clause. I\'d also like to include ITAR and EAR language \r\nas well.\r\n\r\nI\'m also attaching the executed NDA for Mar (which is identical to John \r\nand Elias\'s), which is a combined NDA and Confidentiality Agreement and \r\nincludes specific confidentiality language.\r\n\r\nLastly, for those employees who do not want to participate in the \r\nhealthcare option, or would prefer to be compensated through their LLCs, \r\nthe combined NDA/Confidentialty Agreement could work for both options.\r\n\r\nLet me know your thoughts. I\'m happy to create a draft of all three \r\ncombined for overall CYA aspects and uniformity across the company.\r\n\r\nThanks!\r\n\r\n-Katy','Hi Rick,\r\n\r\nAttached is the PDF that you and Brian sent, as well as the Word \r\nversion. I understand how PDF to Word can get mixed up. However, that \r\nversion includes OPSEC language that isn\'t in the executed ones, nor a \r\nconfidentiality clause. I\'d also like to include ITAR and EAR language \r\nas well.\r\n\r\nI\'m also attaching the executed NDA for Mar (which is identical to John \r\nand Elias\'s), which is a combined NDA and Confidentiality Agreement and \r\nincludes specific confidentiality language.\r\n\r\nLastly, for those employees who do not want to participate in the \r\nhealthcare option, or would prefer to be compensated through their LLCs, \r\nthe combined NDA/Confidentialty Agreement could work for both options.\r\n\r\nLet me know your thoughts. I\'m happy to create a draft of all three \r\ncombined for overall CYA aspects and uniformity across the company.\r\n\r\nThanks!\r\n\r\n-Katy',0,0,0,0,0,0,'2025-08-07 17:17:30','2025-12-09 19:27:14','2025-12-09 19:27:14','2025-12-09 19:27:14',NULL,NULL,NULL),
(595,4,'<CAGgBgfDpPN0apywke57sXj2=xTFynqtwwC6=nWnXa+nsYyP-Zg@mail.gmail.com>',NULL,NULL,'Text to Marion (Mar) (08/07/25 1345)','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">\r\nHello, Marion, this is Tom Pownall from CADX. </div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Rick had asked me to reach out and see what your questions are -- I got \r\ndistracted by family stuff. </div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">He said he&#39;s got a demo of some sort coming up in a couple of weeks and \r\nneeds drones, and he also said that you&#39;re a magical master of breathing\r\n life back into stuff. </div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">I gave him a couple big boxes of parts plus a drone.  The drone was \r\nnever finished. </div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">I gave you a today&#39;s version Speedy Bee flight controller with the F722 \r\nmicro, it should be running Beta Flight. </div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">I think when I did the drone 40mm was the standard size, so you might \r\nneed to make some kind of pod. </div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">I have another drone around here somewhere that I&#39;ll try to get to you. </div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Currently I&#39;m actively in schematics on a flight control computer, an \r\nESC, an IMU, a GPS, an OSD, and a BEC (5 and 10V).  I have circuit \r\nboards partially laid out on 3 of those modules.  In the next month I&#39;m \r\nplanning to launch a bunch of prototype electronics to test. </div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">This first go-around is just to mimic what&#39;s in the industry, building \r\nwith both American and overseas parts. </div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Do you have any particular requests?  For example, a GPS and a \r\nmagnetometer put together in a drone 30mm platform?  Or maybe you need a\r\n special power supply for your Lidar. </div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Whatever it is, just toss em out there and I&#39;ll see what I can do.  I&#39;m \r\nusually working on at least 2 things at once, so I round-robin through \r\neverything. </div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">If you have any questions you&#39;d like to send my way, please feel free to\r\n do so. </div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Looking forward to hearing from you.  No great rush, as you can tell \r\nI&#39;ve buried myself already!\r\n\r\n</div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><div><font face=\"courier new, monospace\">Regards,</font></div><div><font face=\"courier new, monospace\">Thomas Pownall</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">CADX Services, Inc.</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Tel: 585-624-1491 X101</font></div><div><font face=\"courier new, monospace\">Fax: 585-582-1101</font></div><div><font face=\"courier new, monospace\">E-Mail: <a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a></font></div><div><font face=\"courier new, monospace\">Web: <a href=\"http://www.cadxservices.com\" target=\"_blank\">http://www.cadxservices.com</a></font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\">**************** Confidentiality Statement ****************</font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Privileged/Confidential Information may be contained in this</font></div><div><font face=\"courier new, monospace\">message. If you are not the addressee indicated in this message</font></div><div><font face=\"courier new, monospace\">(or responsible for delivery of the message to such person),</font></div><div><font face=\"courier new, monospace\">you may not copy or deliver this message to anyone. In such</font></div><div><font face=\"courier new, monospace\">case, you should destroy this message, and notify us</font></div><div><font face=\"courier new, monospace\">immediately. If you or your employer does not consent to</font></div><div><font face=\"courier new, monospace\">Internet email messages of this kind, please advise us</font></div><div><font face=\"courier new, monospace\">immediately. Opinions, conclusions and other information</font></div><div><font face=\"courier new, monospace\">expressed in this message are not given or endorsed by my firm</font></div><div><font face=\"courier new, monospace\">or employer unless otherwise indicated by an authorized</font></div><div><font face=\"courier new, monospace\">representative independent of this message.</font></div></div></div></div></div></div></div>',' Hello, Marion, this is Tom Pownall from CADX.\r\n\r\nRick had asked me to reach out and see what your questions are -- I got\r\ndistracted by family stuff.\r\n\r\nHe said he\'s got a demo of some sort coming up in a couple of weeks and\r\nneeds drones, and he also said that you\'re a magical master of breathing\r\nlife back into stuff.\r\n\r\nI gave him a couple big boxes of parts plus a drone. The drone was never\r\nfinished.\r\n\r\nI gave you a today\'s version Speedy Bee flight controller with the F722\r\nmicro, it should be running Beta Flight.\r\n\r\nI think when I did the drone 40mm was the standard size, so you might need\r\nto make some kind of pod.\r\n\r\nI have another drone around here somewhere that I\'ll try to get to you.\r\n\r\nCurrently I\'m actively in schematics on a flight control computer, an ESC,\r\nan IMU, a GPS, an OSD, and a BEC (5 and 10V). I have circuit boards\r\npartially laid out on 3 of those modules. In the next month I\'m planning to\r\nlaunch a bunch of prototype electronics to test.\r\n\r\nThis first go-around is just to mimic what\'s in the industry, building with\r\nboth American and overseas parts.\r\n\r\nDo you have any particular requests? For example, a GPS and a magnetometer\r\nput together in a drone 30mm platform? Or maybe you need a special power\r\nsupply for your Lidar.\r\n\r\nWhatever it is, just toss em out there and I\'ll see what I can do. I\'m\r\nusually working on at least 2 things at once, so I round-robin through\r\neverything.\r\n\r\nIf you have any questions you\'d like to send my way, please feel free to do\r\nso.\r\n\r\nLooking forward to hearing from you. No great rush, as you can tell I\'ve\r\nburied myself already!\r\n\r\nRegards,\r\nThomas Pownall\r\n\r\nCADX Services, Inc.\r\n\r\nTel: 585-624-1491 X101\r\nFax: 585-582-1101\r\nE-Mail: tpownall@cadxservices.com\r\nWeb: http://www.cadxservices.com\r\n\r\n***********************************************************\r\n**************** Confidentiality Statement ****************\r\n***********************************************************\r\n\r\nPrivileged/Confidential Information may be contained in this\r\nmessage. If you are not the addressee indicated in this message\r\n(or responsible for delivery of the message to such person),\r\nyou may not copy or deliver this message to anyone. In such\r\ncase, you should destroy this message, and notify us\r\nimmediately. If you or your employer does not consent to\r\nInternet email messages of this kind, please advise us\r\nimmediately. Opinions, conclusions and other information\r\nexpressed in this message are not given or endorsed by my firm\r\nor employer unless otherwise indicated by an authorized\r\nrepresentative independent of this message.',0,0,0,0,0,0,'2025-08-07 17:47:12','2025-12-09 19:27:15','2025-12-09 19:27:15','2025-12-09 19:27:15',NULL,NULL,NULL),
(596,4,'<143acaa3357042fbbf2ba25bd116d7ab@docusign.net>',NULL,NULL,'Engagement Letter Mavrix 1, LLC rev','dse_na2@docusign.net','\"Linda Propes via Docusign\"','<html lang=3D\"en\"><head><meta http-equiv=3D\"Content-Type\" content=3D\"te=\r\nxt/html; charset=3DUTF-8\"/><meta name=3D\"viewport\" content=3D\"initial-s=\r\ncale=3D1=2E0\"/><meta name=3D\"format-detection\" content=3D\"telephone=3Dn=\r\no\"/><title>EnvelopeActivation</title></head><body style=3D\"background-c=\r\nolor:#EAEAEA;padding:2%;font-family:Helvetica,Arial,Sans Serif;\"><table=\r\n role=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\'=\r\n align=3D\'center\' width=3D\"100%\" dir=3D\"\"><tr><td></td><td width=3D\"640=\r\n\"><table role=3D\"presentation\" style=3D\"mso-table-lspace:0pt;mso-table-=\r\nrspace:0pt;border-collapse:collapse;background-color:#ffffff;max-width:=\r\n640px;\"><tr><td style=3D\"padding:10px 24px;\"><img style=3D\"border:none;=\r\n\" width=3D\"\" src=3D\"https://na2=2Edocusign=2Enet/Member/Image=2Easpx?i=3D=\r\nlogo&l=3Def5bb6f9-4c96-4b18-949d-343336b691cf\" alt=3D\"\"/></td></tr><tr>=\r\n<td style=3D\"padding:0px 24px 30px 24px;\"><table role=3D\'presentation\' =\r\nborder=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\' width=3D\'100%\' align=3D=\r\n\'center\' style=3D\'background-color:#214e9f;color:#ffffff;\'><tr><td styl=\r\ne=3D\"padding:28px 36px 36px 36px;border-radius:2px;background-color:#21=\r\n4e9f;color:#ffffff;font-size:16px;font-family:Helvetica,Arial,Sans Seri=\r\nf;width:100%;text-align:center;\" align=3D\"center\"><img width=3D\"75\" hei=\r\nght=3D\"75\" src=3D\"https://docucdn-a=2Eakamaihd=2Enet/olive/images/2=2E7=\r\n6=2E0/email/iconSignWhite=2Epng\" style=3D\"width:75px;height:75px;\" alt=3D=\r\n\"\" /><table role=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpa=\r\ndding=3D\'0\' width=3D\'100%\'><tr><td style=3D\"padding-top:24px;font-size:=\r\n16px;font-family:Helvetica,Arial,Sans Serif;border:none;text-align:cent=\r\ner;color:#ffffff\" align=3D\"center\"> Linda Propes sent you a document to=\r\n review and sign=2E </td></tr></table><table role=3D\'presentation\' bord=\r\ner=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\' width=3D\'100%\'><tr><td ali=\r\ngn=3D\"center\" style=3D\"padding-top:30px;\"><div><table cellspacing=3D\"0\"=\r\n cellpadding=3D\"0\"><tr><td align=3D\"center\" height=3D\"44\" style=3D\"font=\r\n-size:15px;color:#333333;background-color:#ffc820;font-family:Helvetica=\r\n,Arial,Sans Serif;font-weight:bold;text-align:center;text-decoration:no=\r\nne;;border-radius:2px;background-color:#ffc820;;display: block;\"><a hre=\r\nf=3D\"https://na2=2Edocusign=2Enet/Signing/EmailStart=2Easpx?a=3D4878c14=\r\n3-c21c-4bbb-803a-000428ab1066&etti=3D24&acct=3D7b866992-f8fe-4860-8694-=\r\ncc3914c8e26b&er=3D514be703-a812-4233-8865-a9deb36392d9\" style=3D\"font-s=\r\nize:15px;color:#333333;background-color:#ffc820;font-family:Helvetica,A=\r\nrial,Sans Serif;font-weight:bold;text-align:center;text-decoration:none=\r\n;;border-radius:2px;background-color:#ffc820;;display:inline-block\"><sp=\r\nan style=3D\"padding:0px 24px;;line-height:44px;\"><!--[if mso]>&nbsp;&nb=\r\nsp;&nbsp;&nbsp;&nbsp;&nbsp;<![endif]--> REVIEW DOCUMENT <!--[if mso]>&n=\r\nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<![endif]--></span></a></td></tr></ta=\r\nble></div></td></tr></table></td></tr></table></td></tr><tr><td style=3D=\r\n\"padding:0px 24px 24px 24px;color:#000000;font-size:16px;font-family:He=\r\nlvetica,Arial,Sans Serif;background-color:white;\"><table role=3D\'presen=\r\ntation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\'><tr><td style=3D=\r\n\"padding-bottom:20px;\"><div style=3D\"font-family:Helvetica,Arial,Sans S=\r\nerif;font-weight:bold;line-height:18px;font-size:15px;color:#333333;\"> =\r\nLinda Propes </div><div style=3D\"font-family:Helvetica,Arial,Sans Serif=\r\n;line-height:18px;font-size:15px;color:#666666;\">linda=2Epropes@nelsonm=\r\nullins=2Ecom</div></td></tr></table><span style=3D\"font-size:15px;color=\r\n:#333333;font-family:Helvetica,Arial,Sans Serif;line-height:20px;\">Plea=\r\nse sign<br /></span><br /></td></tr><tr><td style=3D\"padding:0px 24px 1=\r\n2px 24px;background-color:#ffffff;font-family:Helvetica,Arial,Sans Seri=\r\nf;font-size:11px;color:#666666;\"><table border=3D\"0\" cellspacing=3D\"0\" =\r\ncellpadding=3D\"0\"><tbody><tr><td valign=3D\"top\" style=3D\"font-family: H=\r\nelvetica,Arial,Sans Serif; font-size: 11px; color: #666666; vertical-al=\r\nign: top;\"><div style=3D\"font-family:Helvetica,Arial,Sans Serif; font-s=\r\nize:11px; color:#666666; padding: 2px 5px 0 0;\">Powered by&#160;</div><=\r\n/td><td><img src=3D\"https://docucdn-a=2Eakamaihd=2Enet/olive/images/2=2E=\r\n62=2E0/global-assets/email-templates/email-logo=2Epng\" height=3D\"19\" al=\r\nt=3D\"Docusign\" style=3D\"border:none;\"/></td></tr></tbody></table></td><=\r\n/tr><tr><td style=3D\"padding:30px 24px 45px 24px;background-color:#EAEA=\r\nEA;\"><p style=3D\"margin-bottom:1em;font-family:Helvetica,Arial,Sans Ser=\r\nif;font-size:13px;color:#666666;line-height:18px;\"><b aria-level=3D\"3\" =\r\nrole=3D\"heading\">Do Not Share This Email</b><br/> This email contains a=\r\n secure link to Docusign=2E Please do not share this email, link, or ac=\r\ncess code with others=2E<br/></p><p style=3D\"margin-bottom:1em;font-fam=\r\nily:Helvetica,Arial,Sans Serif;font-size:13px;color:#666666;line-height=\r\n:18px;\"><b aria-level=3D\"3\" role=3D\"heading\">Alternate Signing Method</=\r\nb><br/> Visit Docusign=2Ecom, click \'Access Documents\', and enter the s=\r\necurity code:<br /> 4878C143C21C4BBB803A000428AB10662 </p><p style=3D\"m=\r\nargin-bottom:1em;font-family:Helvetica,Arial,Sans Serif;font-size:13px;=\r\ncolor:#666666;line-height:18px;\"><b aria-level=3D\"3\" role=3D\"heading\">A=\r\nbout Docusign</b><br/> Sign documents electronically in just minutes=2E=\r\n It\'s safe, secure, and legally binding=2E Whether you\'re in an office,=\r\n at home, on-the-go -- or even across the globe -- Docusign provides a =\r\nprofessional trusted solution for Digital Transaction Management=E2=84=A2=\r\n=2E </p><p style=3D\"margin-bottom:1em;font-family:Helvetica,Arial,Sans =\r\nSerif;font-size:13px;color:#666666;line-height:18px;\"><b aria-level=3D\"=\r\n3\" role=3D\"heading\">Questions about the Document?</b><br /> If you need=\r\n to modify the document or have questions about the details in the docu=\r\nment, please reach out to the sender by emailing them directly=2E<br />=\r\n<br /><b aria-level=3D\"3\" role=3D\"heading\">Stop receiving this email</b=\r\n><br /><a href=3D\'https://protect=2Edocusign=2Enet/report-abuse?e=3DAUt=\r\nomjpFak9GlbPL0zFFi115PfAUuW1XTN54WunC1g515QK14UWpOQ-qhNetjX1x9Duq4A4sIw=\r\nDdSuNacgOPZ3RoqCN40rauwNydZWyKDP8xPdxTyM-_DKP3RB-Tq9q3xVjyJQ6GgxW1jBtVa=\r\nRjYhD7nZFLSWZyEGD95D4vYiPmIYO1zV5Y9N_96lETp1G8Cwv8B47pK18Xdre4zFDQc_hN4=\r\ni0PSLMCuU1qWBpilqbt4yrUMzGt8BWNdCnuTvift5u9wDCP1Ggc4x1GFxsVtZyZVvdX8FTr=\r\nLnBXGYVcIcrK1xmHrLdGpk7DqgYZLQRiDikzfHxzpkAGAkPCCnCTv6zVMl2P0QvqlECYt80=\r\nTwv4uiqx1DbclsPKVIeMQfLz37DASCeTu628yIqbkRsAwfGG3Qqrn7iqi7bcik_OAkSXlkI=\r\nBdGzMb_1cn4NikOA__ILg&lang=3Den\' style=3D\'color:#2463d1;\' >Report this =\r\nemail</a> or read more about <a href=3D\'https://support=2Edocusign=2Eco=\r\nm/en/guides/Declining-to-sign-DocuSign-Signer-Guide\' style=3D\'color:#24=\r\n63d1;\' >Declining to sign</a> and <a href=3D\'https://support=2Edocusign=\r\n=2Ecom/en/articles/How-do-I-manage-my-email-notifications\' style=3D\'col=\r\nor:#2463d1;\' >Managing notifications</a>=2E<br /><br /> If you have tro=\r\nuble signing, visit \"<a href=3D\'https://support=2Edocusign=2Ecom/s/arti=\r\ncles/How-do-I-sign-a-DocuSign-document-Basic-Signing?language=3Den_US&#=\r\n38;utm_campaign=3DGBL_XX_DBU_UPS_2211_SignNotificationEmailFooter&#38;u=\r\ntm_medium=3Dproduct&#38;utm_source=3Dpostsend\' style=3D\'color:#2463d1;\'=\r\n >How to Sign a Document</a>\" on our <a href=3D\'https://support=2Edocus=\r\nign=2Ecom/\' style=3D\'color:#2463d1;\' >Docusign Support Center</a>, or b=\r\necome part of the <a href=3D\'https://community=2Edocusign=2Ecom/new-mem=\r\nber-guide-142?utm_campaign=3DGBL_US_PRD_AWA_2405_CommunityCTA&#38;utm_m=\r\nedium=3Demail&#38;utm_source=3Dpostsend\' style=3D\'color:#2463d1;\' >Docu=\r\nsign Community</a> to access tips and guidance from peers=2E<br /><br /=\r\n></p><p style=3D\"margin-bottom:1em;font-family:Helvetica,Arial,Sans Ser=\r\nif;font-size:13px;color:#666666;line-height:18px;\"><a href=3D\"https://w=\r\nww=2Edocusign=2Ecom/features-and-benefits/mobile?utm_campaign=3DGBL_XX_=\r\nDBU_UPS_2211_SignNotificationEmailFooter&#38;utm_medium=3Dproduct&#38;u=\r\ntm_source=3Dpostsend\" style=3D\"color:#2463d1;\" ><img style=3D\"margin-ri=\r\nght:7px;border:none;vertical-align:middle;\" width=3D\"18\" height=3D\"18\" =\r\nsrc=3D\"https://docucdn-a=2Eakamaihd=2Enet/olive/images/2=2E62=2E0/globa=\r\nl-assets/email-templates/icon-download-app=2Epng\" alt=3D\"\" />Download t=\r\nhe Docusign App </a></p><p style=3D\"margin-bottom:1em;font-family:Helve=\r\ntica,Arial,Sans Serif;font-size:13px;color:#666666;line-height:18px;fon=\r\nt-size:10px;line-height:14px;\">This message was sent to you by Linda Pr=\r\nopes who is using the Docusign Electronic Signature Service=2E If you w=\r\nould rather not receive email from this sender you may contact the send=\r\ner with your request=2E</p></td></tr></table></td><td></td></tr></table=\r\n><span itemscope=3D\"\" itemtype=3D\"http://schema=2Eorg/EmailMessage\"><me=\r\nta itemprop=3D\"text\" content=3D\"Linda Propes sent you a document to rev=\r\niew and sign=2E\"/><span itemscope=3D\"\" itemprop=3D\"about\" itemtype=3D\"h=\r\nttp://schema=2Eorg/CreativeWork\"><span itemscope=3D\"\" itemprop=3D\"actio=\r\nn\" itemtype=3D\"http://schema=2Eorg/ViewAction\"><meta itemprop=3D\"url\" c=\r\nontent=3D\"https://na2=2Edocusign=2Enet/Signing/EmailStart=2Easpx?a=3D48=\r\n78c143-c21c-4bbb-803a-000428ab1066&etti=3D24&acct=3D7b866992-f8fe-4860-=\r\n8694-cc3914c8e26b&er=3D514be703-a812-4233-8865-a9deb36392d9\"/><meta ite=\r\nmprop=3D\"name\" content=3D\"View Documents\"/></span></span></span></body>=\r\n</html>','EnvelopeActivation=\r\n Linda Propes sent you a document to=\r\n review and sign=2E  REVIEW DOCUMENT  =\r\nLinda Propes linda=2Epropes@nelsonm=\r\nullins=2EcomPlea=\r\nse signPowered by&#160;Do Not Share This Email This email contains a=\r\n secure link to Docusign=2E Please do not share this email, link, or ac=\r\ncess code with others=2EAlternate Signing Method Visit Docusign=2Ecom, click \'Access Documents\', and enter the s=\r\necurity code: 4878C143C21C4BBB803A000428AB10662 A=\r\nbout Docusign Sign documents electronically in just minutes=2E=\r\n It\'s safe, secure, and legally binding=2E Whether you\'re in an office,=\r\n at home, on-the-go -- or even across the globe -- Docusign provides a =\r\nprofessional trusted solution for Digital Transaction Management=E2=84=A2=\r\n=2E Questions about the Document? If you need=\r\n to modify the document or have questions about the details in the docu=\r\nment, please reach out to the sender by emailing them directly=2E=\r\nStop receiving this emailReport this =\r\nemail or read more about Declining to sign and Managing notifications=2E If you have tro=\r\nuble signing, visit \"How to Sign a Document\" on our Docusign Support Center, or b=\r\necome part of the Docu=\r\nsign Community to access tips and guidance from peers=2EDownload t=\r\nhe Docusign App This message was sent to you by Linda Pr=\r\nopes who is using the Docusign Electronic Signature Service=2E If you w=\r\nould rather not receive email from this sender you may contact the send=\r\ner with your request=2E=\r\n',0,0,0,0,0,0,'2025-08-07 19:52:07','2025-12-09 19:27:15','2025-12-09 19:27:15','2025-12-09 19:27:15',NULL,NULL,NULL),
(597,4,'<447074618.146604.1754626550089@app129018.mia201.service-now.com>',NULL,NULL,'Your incident INC-GSAFSD20147835 requires a response','fsdsupport@gsa.gov','\"Federal Service Desk (FSD)\"','<html><head></head><body><p></p>\r\n<style type=\"text/css\">\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n</style>\r\n<div style=\"margin: 0 auto !important;\" align=\"center\">\r\n<table class=\"w100\" style=\"width: 600px; background-color: #f7f7f9; margin: 0 auto !important; padding: 0px;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" bgcolor=\"#F7F7F9\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 13px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"background-color: #d8ecff;\" height=\"32\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"40\" style=\"width: 53.1077%;\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td height=\"50\"><img src=\"cid:sys_attachment.dosys_idbe2e8d8d1bda2a50205e8736624bcb90@SNC.c9920dfea9fd9704\" width=\"auto\" height=\"50\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr style=\"background-color: #d8ecff;\" height=\"22\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr><!-- Left-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- CONTAINER -->\r\n<td width=\"564\">\r\n<table class=\"w100\" style=\"margin: 0px; padding: 0px; box-shadow: 0px 2px 10px rgba(23, 40, 52, 0.08);\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody><!-- Main Container -->\r\n<tr>\r\n<td class=\"pad-sides-20\" style=\"border-radius: 6px; text-align: left; background-color: #ffffff; padding: 24px 24px 24px 24px; color: #454545;\" align=\"center\">\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-bottom: 10px;\"><strong>This is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD)</strong> which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.</div>\r\n</div>\r\n<hr>\r\n<p></p><div style=\"font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif; line-height: 26px; font-size: 16px;\">\r\n<div style=\"line-height: 26px; padding-bottom: 24px; text-align: left; color: #454545;\">\r\n<h4 style=\"margin-top: 14pt; line-height: 32px; margin-bottom: 4pt; text-align: left; font-size: 17.52pt;\"><strong> Reminder: Please Review Your Incident</strong></h4>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left; font-size: 12pt;\">Hello <strong>rick@mavrix.one,</strong></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left;\">Your incident <strong><span style=\"font-size: 12pt;\">INC-GSAFSD20147835 </span></strong><span style=\"font-size: 12pt;\"> is currently on hold pending your response.</span></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 6pt; text-align: left;\"><span style=\"font-size: 12pt;\">To review the incident details and submit your reply, please use the link below:<br></span><strong><span style=\"font-size: 12pt;\"></span></strong></p><div style=\"margin-top: 8px;\"><strong><a href=\"https://www.fsd.gov/gsafsd_sp?id=incident_form&amp;table=incident&amp;sys_id=ecb56edf8707a690efb1fe68cebb3551\" style=\"background-color: #70E17B;color: #162E51;font-size: 16px;text-decoration: none; border-radius: 4px;-webkit-border-radius: 4px;-moz-border-radius: 4px;display: inline-block;padding: 10px 32px 10px 32px;\">View incident</a></strong></div><span style=\"font-size: 12pt;\"> <br></span><strong><span style=\"font-size: 12pt;\">Please note:</span></strong><span style=\"font-size: 12pt;\"> If we do not receive a response 2025-08-12 20:00:00 PDT<strong>,</strong> the incident will be marked as resolved.</span><p></p>\r\n<span style=\"font-size: 12pt;\">Thank you,</span><span style=\"font-size: 12pt;\"><br></span><strong><span style=\"font-size: 12pt;\">FSD.gov Team</span></strong></div>\r\n</div><p></p>\r\n<hr>\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-top: 10px;\"><strong>Don\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times!</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0036075\" target=\"_blank\" rel=\"noopener\">Invite others </a>to help manage your registration. <strong>DO NOT</strong> attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. <strong>Submit all entity validation documentation from your Entity Workspace in SAM.gov.</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0057690\" target=\"_blank\" rel=\"noopener\">Learn how to add documentation</a> to your entity validation case.</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- END CONTAINER --> <!-- Right-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"background-color: #f7f7f9;\" align=\"center\" height=\"40\"></td>\r\n</tr>\r\n<!-- Footer started -->\r\n<tr style=\"background-color: #d8ecff;\">\r\n<td>\r\n<table style=\"background-color: #d8ecff;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td height=\"30\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 14px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_id7d465e4a1b3ca2103943eac1604bcbb6@SNC.1bb9a74b5a44a5fc\" width=\"120\" height=\"40\" title=\"Cloud 4.png\" alt=\"Cloud\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"30\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff;\" align=\"center\" valign=\"top\" height=\"30\"><img src=\"cid:sys_attachment.dosys_idb04e85cd1bda2a50205e8736624bcbfa@SNC.4a28cd2e3338ea34\" width=\"auto\" height=\"30\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_idb1a5160a1b3ca2103943eac1604bcbdc@SNC.c6154acfc4ff67ba\" width=\"140\" height=\"40\" title=\"Cloud 3.png\" alt=\"Cloud\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff; color: #ffffff;\">\r\n<table style=\"color: #ffffff;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr align=\"center\">\r\n<td><span id=\"templateAddress\" class=\"footer\" style=\"color: #162e51; font-size: 14px; line-height: 18px; text-align: center; margin: 0 !important;\"> GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td height=\"10\"></td>\r\n</tr>\r\n<tr>\r\n<td height=\"120px\"><img style=\"height: 120px; width: 100%;\" src=\"cid:sys_attachment.dosys_id7555160a1b3ca2103943eac1604bcb39@SNC.5fa82ad62e98d141\" height=\"120\" title=\"Jefferson Light Blue 2.png\" alt=\"Jefferson Memorial\"><span id=\"mce_26\"></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<!-- Footer end--></tbody>\r\n</table>\r\n</div><div>&nbsp;</div><div style=\"display:inline\">Ref:MSG1647085_OYqMTXOP2IyICCTcwDyz</div></body></html>','\r\n\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD) which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.\r\n\r\n\r\n\r\n\r\n Reminder: Please Review Your Incident\r\nHello rick@mavrix.one,\r\nYour incident INC-GSAFSD20147835  is currently on hold pending your response.\r\nTo review the incident details and submit your reply, please use the link below:View incident Please note: If we do not receive a response 2025-08-12 20:00:00 PDT, the incident will be marked as resolved.\r\nThank you,FSD.gov Team\r\n\r\n\r\n\r\nDon\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times! Invite others to help manage your registration. DO NOT attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. Submit all entity validation documentation from your Entity Workspace in SAM.gov. Learn how to add documentation to your entity validation case.\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;Ref:MSG1647085_OYqMTXOP2IyICCTcwDyz',0,0,0,0,0,0,'2025-08-08 04:15:50','2025-12-09 19:27:16','2025-12-09 19:27:16','2025-12-09 19:27:16',NULL,NULL,NULL),
(598,4,' <BN6PR05MB3619B02E6FAB359D2AC5F068872FA@BN6PR05MB3619.namprd05.prod.outlook.com>',NULL,NULL,'RE: FW: Engagement Letter Mavrix 1, LLC','linda.propes@nelsonmullins.com','Linda Propes','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon0, li.airmailon0, div.airmailon0\r\n	{mso-style-name:airmailon;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon00, li.airmailon00, div.airmailon00\r\n	{mso-style-name:airmailon0;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle24\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Hi Rick, just wanted to follow up here and see if there were any questions. Thanks<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"370\" style=\"width:277.5pt\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" colspan=\"2\" style=\"width:100.0%;padding:0in 0in 14.25pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><img width=\"261\" height=\"30\" style=\"width:2.7166in;height:.3083in\" id=\"_x0000_i1031\" src=\"https://www.nelsonmullins.com/img/ecard-logo.png\"></span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"5\" style=\"width:3.75pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<o:p></o:p></span></b></p>\r\n</td>\r\n<td width=\"365\" style=\"width:273.75pt;padding:0in 0in 0in 0in\">\r\n<div style=\"mso-element:para-border-div;border:none;border-top:solid #D1D2D4 1.5pt;padding:12.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3.0pt;border:none;padding:0in\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">LINDA PROPES&nbsp;&nbsp;</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#659BC5;letter-spacing:.75pt\">SENIOR\r\n ADMINISTRATIVE ASSISTANT</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">\r\n<o:p></o:p></span></b></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:6.75pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"mailto:linda.propes@nelsonmullins.com\"><span style=\"font-size:7.0pt;color:#676D72;text-decoration:none\">linda.propes@nelsonmullins.com</span></a>\r\n<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">390 NORTH ORANGE AVENUE&nbsp;|&nbsp;SUITE 1400<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">ORLANDO,&nbsp;FL&nbsp;32801<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">T</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.669.4381</span>&nbsp;&nbsp;\r\n</span></b><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">F</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.425.8377</span>&nbsp;&nbsp;\r\n<o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"5\" style=\"width:3.75pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<o:p></o:p></span></b></p>\r\n</td>\r\n<td width=\"365\" style=\"width:273.75pt;padding:0in 0in 0in 0in\">\r\n<div style=\"mso-element:para-border-div;border:none;border-bottom:solid #D1D2D4 1.5pt;padding:0in 0in 16.0pt 0in\">\r\n<p class=\"MsoNormal\" style=\"border:none;padding:0in\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"https://www.nelsonmullins.com\"><span style=\"color:#676D72;text-decoration:none\">NELSONMULLINS.COM</span></a>\r\n<o:p></o:p></span></b></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, August 6, 2025 9:39 AM<br>\r\n<b>To:</b> Linda Propes &lt;linda.propes@nelsonmullins.com&gt;<br>\r\n<b>Subject:</b> RE: FW: Engagement Letter Mavrix 1, LLC<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-line-height-alt:.75pt\"><span style=\"font-size:1.0pt;color:white\">Thank you. Rick Rick Mislan, PhD, Founder, CTO mavrix1.</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">com\r\n On August 6, 2025 at 9:</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">15:</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">59\r\n AM, Linda Propes (linda.</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">propes@</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">nelsonmullins.</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">com)\r\n wrote: Hi Rick, its probably still with Roman. Once he signs you will receive. LINDA PROPES SENIOR ADMINISTRATIVE<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-line-height-alt:.75pt\"><span style=\"font-size:1.0pt;color:white\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thank you.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"84\" height=\"15\" style=\"width:.875in;height:.1583in\" id=\"Picture_x0020_4\" src=\"cid:image001.png@01DC0870.1189B8B0\"></span><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://urldefense.com/v3/__http:/mavrix1.com/__;!!LBFcHN3WCgnqDQ!ivBvUGI544lQP8kygtof3wH1TwQID8odRy6NXnQSIKshSflJ7-2nXOTxOkzu0wq8FkQ8v_tz_Cczc_gU8T5mgA$\">mavrix1.com</a><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"airmailon\">On August 6, 2025 at 9:15:59<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>AM, Linda Propes (<a href=\"mailto:linda.propes@nelsonmullins.com\">linda.propes@nelsonmullins.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Hi Rick, its probably still with Roman. Once he signs you will receive.<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"370\" style=\"width:277.5pt\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" colspan=\"2\" style=\"width:100.0%;padding:0in 0in 14.25pt 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><img border=\"0\" width=\"261\" height=\"30\" style=\"width:2.7166in;height:.3083in\" id=\"_x0000_i1029\" src=\"https://www.nelsonmullins.com/img/ecard-logo.png\"></span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"5\" style=\"width:3.75pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"365\" style=\"width:273.75pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-top:solid #D1D2D4 1.5pt;padding:12.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:3.0pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">LINDA PROPES&nbsp;&nbsp;</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#659BC5;letter-spacing:.75pt\">SENIOR\r\n ADMINISTRATIVE ASSISTANT</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:6.75pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"mailto:linda.propes@nelsonmullins.com\"><span style=\"font-size:7.0pt;color:#676D72;text-decoration:none\">linda.propes@nelsonmullins.com</span></a>\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">390 NORTH ORANGE AVENUE&nbsp;|&nbsp;SUITE 1400</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">ORLANDO,&nbsp;FL&nbsp;32801</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:4.5pt\"><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">T</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.669.4381</span>&nbsp;&nbsp;\r\n</span></b><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">F</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.425.8377</span>&nbsp;&nbsp;\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"5\" style=\"width:3.75pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"365\" style=\"width:273.75pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-bottom:solid #D1D2D4 1.5pt;padding:0in 0in 16.0pt 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"https://www.nelsonmullins.com\"><span style=\"color:#676D72;text-decoration:none\">NELSONMULLINS.COM</span></a>\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Tuesday, August 5, 2025 7:31 PM<br>\r\n<b>To:</b> Linda Propes &lt;<a href=\"mailto:linda.propes@nelsonmullins.com\">linda.propes@nelsonmullins.com</a>&gt;<br>\r\n<b>Subject:</b> RE: FW: Engagement Letter Mavrix 1, LLC</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;mso-line-height-alt:.75pt\">\r\n<span style=\"font-size:1.0pt;color:white\">I have not seen the docusign version. Please let me know. Thanks, Rick Rick Mislan, PhD, Founder, CTO mavrix1.</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">com\r\n On August 5, 2025 at 5:</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">30:</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">45\r\n PM, Linda Propes (linda.</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">propes@</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">nelsonmullins.</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">com)\r\n wrote: Hi Rick, I resent with the updated change</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I have not seen the docusign version.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Please let me know.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks,</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"84\" height=\"15\" style=\"width:.875in;height:.1583in\" id=\"Picture_x0020_3\" src=\"cid:image001.png@01DC0870.1189B8B0\"></span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://urldefense.com/v3/__http:/mavrix1.com/__;!!LBFcHN3WCgnqDQ!hrKmwYEMDkyz7xhsG31q0-pM3T8DSqJ37bWf2tyvJ0qI7WJY6AFrQLxbr99Zvfj2n7EJpHXYajOnQqoNMdyb0Q$\">mavrix1.com</a></span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"airmailon0\">On August 5, 2025 at 5:30:45<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM, Linda Propes (<a href=\"mailto:linda.propes@nelsonmullins.com\">linda.propes@nelsonmullins.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Hi Rick, I resent with the updated change via DocuSign. Let me know if you don’t receive.<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"370\" style=\"width:277.5pt\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" colspan=\"2\" style=\"width:100.0%;padding:0in 0in 14.25pt 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><img border=\"0\" width=\"261\" height=\"30\" style=\"width:2.7166in;height:.3083in\" id=\"_x0000_i1027\" src=\"https://www.nelsonmullins.com/img/ecard-logo.png\"></span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"5\" style=\"width:3.75pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"365\" style=\"width:273.75pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-top:solid #D1D2D4 1.5pt;padding:12.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:3.0pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">LINDA PROPES&nbsp;&nbsp;</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#659BC5;letter-spacing:.75pt\">SENIOR\r\n ADMINISTRATIVE ASSISTANT</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:6.75pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"mailto:linda.propes@nelsonmullins.com\"><span style=\"font-size:7.0pt;color:#676D72;text-decoration:none\">linda.propes@nelsonmullins.com</span></a>\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">390 NORTH ORANGE AVENUE&nbsp;|&nbsp;SUITE 1400</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">ORLANDO,&nbsp;FL&nbsp;32801</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:4.5pt\"><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">T</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.669.4381</span>&nbsp;&nbsp;\r\n</span></b><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">F</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.425.8377</span>&nbsp;&nbsp;\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"5\" style=\"width:3.75pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"365\" style=\"width:273.75pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-bottom:solid #D1D2D4 1.5pt;padding:0in 0in 16.0pt 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"https://www.nelsonmullins.com\"><span style=\"color:#676D72;text-decoration:none\">NELSONMULLINS.COM</span></a>\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Tuesday, August 5, 2025 4:59 PM<br>\r\n<b>To:</b> Linda Propes &lt;<a href=\"mailto:linda.propes@nelsonmullins.com\">linda.propes@nelsonmullins.com</a>&gt;<br>\r\n<b>Cc:</b> Linda Propes &lt;<a href=\"mailto:linda.propes@nelsonmullins.com\">linda.propes@nelsonmullins.com</a>&gt;<br>\r\n<b>Subject:</b> Re: FW: Engagement Letter Mavrix 1, LLC</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;mso-line-height-alt:.75pt\">\r\n<span style=\"font-size:1.0pt;color:white\">Thank you Linda, Can you please address the letter of engagement to me and on the bottom CC it to Brian. Thanks, Rick Richard P. Mislan, PhD,. Founder, CTO mavrix1.</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">com\r\n On August 5, 2025 at 1:</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">03:</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">17\r\n PM, Linda Propes (linda.</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">propes@</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">nelsonmullins.</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">com)</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thank you Linda,</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Can you please address the letter of engagement to me and on the bottom CC it to Brian.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks,</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Rick<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Richard P. Mislan, PhD,.</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"84\" height=\"15\" style=\"width:.875in;height:.1583in\" id=\"Picture_x0020_2\" src=\"cid:image001.png@01DC0870.1189B8B0\"></span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://urldefense.com/v3/__http:/mavrix1.com/__;!!LBFcHN3WCgnqDQ!nx5xsVGMUkQ7yKj6zc45tNabfkeggPFijgl35PGDETUv-CBVia-_uE2g8Fb2Y_cnkoFB2o73-IFh8-d5inGkGw$\">mavrix1.com</a></span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"airmailon00\">On August 5, 2025 at 1:03:17<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM, Linda Propes (<a href=\"mailto:linda.propes@nelsonmullins.com\">linda.propes@nelsonmullins.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Good morning Rick, attached is our engagement letter for your review and signature. I am also attaching the wiring instructions for the retainer. Let us know if you have any questions.\r\n I can also send via DocuSign if that is easier. Thank you.<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"370\" style=\"width:277.5pt\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" colspan=\"2\" style=\"width:100.0%;padding:0in 0in 14.25pt 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><img border=\"0\" width=\"261\" height=\"30\" style=\"width:2.7166in;height:.3083in\" id=\"_x0000_i1025\" src=\"https://www.nelsonmullins.com/img/ecard-logo.png\"></span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"5\" style=\"width:3.75pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"365\" style=\"width:273.75pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-top:solid #D1D2D4 1.5pt;padding:12.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:3.0pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">LINDA PROPES&nbsp;&nbsp;</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#659BC5;letter-spacing:.75pt\">SENIOR\r\n ADMINISTRATIVE ASSISTANT</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:6.75pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"mailto:linda.propes@nelsonmullins.com\"><span style=\"font-size:7.0pt;color:#676D72;text-decoration:none\">linda.propes@nelsonmullins.com</span></a>\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">390 NORTH ORANGE AVENUE&nbsp;|&nbsp;SUITE 1400</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">ORLANDO,&nbsp;FL&nbsp;32801</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:4.5pt\"><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">T</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.669.4381</span>&nbsp;&nbsp;\r\n</span></b><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">F</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.425.8377</span>&nbsp;&nbsp;\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"5\" style=\"width:3.75pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"365\" style=\"width:273.75pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-bottom:solid #D1D2D4 1.5pt;padding:0in 0in 16.0pt 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"https://www.nelsonmullins.com\"><span style=\"color:#676D72;text-decoration:none\">NELSONMULLINS.COM</span></a>\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<p><strong><span style=\"font-family:&quot;Aptos&quot;,sans-serif\">Confidentiality Notice</span></strong><br>\r\nThis message is intended exclusively for the individual or entity to which it is addressed. This communication may contain information that is proprietary, privileged, confidential or otherwise legally exempt from disclosure. If you are not the named addressee,\r\n you are not authorized to read, print, retain, copy or disseminate this message or any part of it. If you have received this message in error, please notify the sender immediately either by phone (800-237-2000) or reply to this e-mail and delete all copies\r\n of this message.<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</body>\r\n</html>','Hi Rick, just wanted to follow up here and see if there were any questions. Thanks\r\n\r\n[https://www.nelsonmullins.com/img/ecard-logo.png]\r\n\r\nLINDA PROPES  SENIOR ADMINISTRATIVE ASSISTANT\r\nlinda.propes@nelsonmullins.com<mailto:linda.propes@nelsonmullins.com>\r\n390 NORTH ORANGE AVENUE | SUITE 1400\r\nORLANDO, FL 32801\r\nT 407.669.4381   F 407.425.8377\r\n\r\nNELSONMULLINS.COM<https://www.nelsonmullins.com>\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Wednesday, August 6, 2025 9:39 AM\r\nTo: Linda Propes <linda.propes@nelsonmullins.com>\r\nSubject: RE: FW: Engagement Letter Mavrix 1, LLC\r\n\r\nThank you. Rick Rick Mislan, PhD, Founder, CTO mavrix1. com On August 6, 2025 at 9: 15: 59 AM, Linda Propes (linda. propes@ nelsonmullins. com) wrote: Hi Rick, its probably still with Roman. Once he signs you will receive. LINDA PROPES SENIOR ADMINISTRATIVE\r\n\r\nThank you.\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:image001.png@01DC0870.1189B8B0]\r\nmavrix1.com<https://urldefense.com/v3/__http:/mavrix1.com/__;!!LBFcHN3WCgnqDQ!ivBvUGI544lQP8kygtof3wH1TwQID8odRy6NXnQSIKshSflJ7-2nXOTxOkzu0wq8FkQ8v_tz_Cczc_gU8T5mgA$>\r\n\r\n\r\n\r\nOn August 6, 2025 at 9:15:59 AM, Linda Propes (linda.propes@nelsonmullins.com<mailto:linda.propes@nelsonmullins.com>) wrote:\r\nHi Rick, its probably still with Roman. Once he signs you will receive.\r\n\r\n[https://www.nelsonmullins.com/img/ecard-logo.png]\r\n\r\nLINDA PROPES  SENIOR ADMINISTRATIVE ASSISTANT\r\nlinda.propes@nelsonmullins.com<mailto:linda.propes@nelsonmullins.com>\r\n390 NORTH ORANGE AVENUE | SUITE 1400\r\nORLANDO, FL 32801\r\nT 407.669.4381   F 407.425.8377\r\n\r\nNELSONMULLINS.COM<https://www.nelsonmullins.com>\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Tuesday, August 5, 2025 7:31 PM\r\nTo: Linda Propes <linda.propes@nelsonmullins.com<mailto:linda.propes@nelsonmullins.com>>\r\nSubject: RE: FW: Engagement Letter Mavrix 1, LLC\r\n\r\nI have not seen the docusign version. Please let me know. Thanks, Rick Rick Mislan, PhD, Founder, CTO mavrix1. com On August 5, 2025 at 5: 30: 45 PM, Linda Propes (linda. propes@ nelsonmullins. com) wrote: Hi Rick, I resent with the updated change\r\nI have not seen the docusign version.\r\nPlease let me know.\r\nThanks,\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:image001.png@01DC0870.1189B8B0]\r\nmavrix1.com<https://urldefense.com/v3/__http:/mavrix1.com/__;!!LBFcHN3WCgnqDQ!hrKmwYEMDkyz7xhsG31q0-pM3T8DSqJ37bWf2tyvJ0qI7WJY6AFrQLxbr99Zvfj2n7EJpHXYajOnQqoNMdyb0Q$>\r\n\r\n\r\n\r\nOn August 5, 2025 at 5:30:45 PM, Linda Propes (linda.propes@nelsonmullins.com<mailto:linda.propes@nelsonmullins.com>) wrote:\r\nHi Rick, I resent with the updated change via DocuSign. Let me know if you don’t receive.\r\n\r\n[https://www.nelsonmullins.com/img/ecard-logo.png]\r\n\r\nLINDA PROPES  SENIOR ADMINISTRATIVE ASSISTANT\r\nlinda.propes@nelsonmullins.com<mailto:linda.propes@nelsonmullins.com>\r\n390 NORTH ORANGE AVENUE | SUITE 1400\r\nORLANDO, FL 32801\r\nT 407.669.4381   F 407.425.8377\r\n\r\nNELSONMULLINS.COM<https://www.nelsonmullins.com>\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Tuesday, August 5, 2025 4:59 PM\r\nTo: Linda Propes <linda.propes@nelsonmullins.com<mailto:linda.propes@nelsonmullins.com>>\r\nCc: Linda Propes <linda.propes@nelsonmullins.com<mailto:linda.propes@nelsonmullins.com>>\r\nSubject: Re: FW: Engagement Letter Mavrix 1, LLC\r\n\r\nThank you Linda, Can you please address the letter of engagement to me and on the bottom CC it to Brian. Thanks, Rick Richard P. Mislan, PhD,. Founder, CTO mavrix1. com On August 5, 2025 at 1: 03: 17 PM, Linda Propes (linda. propes@ nelsonmullins. com)\r\nThank you Linda,\r\nCan you please address the letter of engagement to me and on the bottom CC it to Brian.\r\nThanks,\r\nRick\r\n\r\nRichard P. Mislan, PhD,.\r\nFounder, CTO\r\n[cid:image001.png@01DC0870.1189B8B0]\r\nmavrix1.com<https://urldefense.com/v3/__http:/mavrix1.com/__;!!LBFcHN3WCgnqDQ!nx5xsVGMUkQ7yKj6zc45tNabfkeggPFijgl35PGDETUv-CBVia-_uE2g8Fb2Y_cnkoFB2o73-IFh8-d5inGkGw$>\r\n\r\n\r\n\r\nOn August 5, 2025 at 1:03:17 PM, Linda Propes (linda.propes@nelsonmullins.com<mailto:linda.propes@nelsonmullins.com>) wrote:\r\nGood morning Rick, attached is our engagement letter for your review and signature. I am also attaching the wiring instructions for the retainer. Let us know if you have any questions. I can also send via DocuSign if that is easier. Thank you.\r\n\r\n[https://www.nelsonmullins.com/img/ecard-logo.png]\r\n\r\nLINDA PROPES  SENIOR ADMINISTRATIVE ASSISTANT\r\nlinda.propes@nelsonmullins.com<mailto:linda.propes@nelsonmullins.com>\r\n390 NORTH ORANGE AVENUE | SUITE 1400\r\nORLANDO, FL 32801\r\nT 407.669.4381   F 407.425.8377\r\n\r\nNELSONMULLINS.COM<https://www.nelsonmullins.com>\r\n\r\n\r\nConfidentiality Notice\r\nThis message is intended exclusively for the individual or entity to which it is addressed. This communication may contain information that is proprietary, privileged, confidential or otherwise legally exempt from disclosure. If you are not the named addressee, you are not authorized to read, print, retain, copy or disseminate this message or any part of it. If you have received this message in error, please notify the sender immediately either by phone (800-237-2000) or reply to this e-mail and delete all copies of this message.',0,0,0,0,0,0,'2025-08-08 18:23:55','2025-12-09 19:27:16','2025-12-09 19:27:16','2025-12-09 19:27:16',NULL,NULL,NULL),
(599,4,'<CAGOCFXgLxYyqx5qEcRHU4RSqPMbmn5qs+3M7X=rE0dbJ+tUD6A@mail.gmail.com>',NULL,NULL,'Container Ship Departed China','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Hi team,</div><div><br></div><div>Here&#39;s a Friday update on our equipment shipment.</div><div><br></div><div>Our container ship detached from the pilot boat in China about an hour and a half ago and is currently en route to the Panama Canal. I&#39;ve attached the sailing schedule for the COSCO VIETNAM, which shows the next ports will be Panama Canal, Houston, Mobile, and Tampa.</div><div><br></div><div>It will be very exciting to see the container ship go under the Skyway Bridge when it arrives in Tampa, which is estimated to be around September 8th. I&#39;m planning on taking my drone out that day to get some aerial footage for our social media posts.</div><div><br></div><div><br></div><div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br></div><div dir=\"ltr\"><img src=\"cid:ii_me37rufn0\" alt=\"SailingSchedule.png\" width=\"498\" height=\"255\"></div><div dir=\"ltr\"><br></div><img src=\"cid:ii_me37uju11\" alt=\"Ship Location.png\" width=\"498\" height=\"254\"><br><div dir=\"ltr\"><br><br></div><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table><br></div><div><br></div></div></div></div></div>','Hi team,\r\n\r\nHere\'s a Friday update on our equipment shipment.\r\n\r\nOur container ship detached from the pilot boat in China about an hour and\r\na half ago and is currently en route to the Panama Canal. I\'ve attached the\r\nsailing schedule for the COSCO VIETNAM, which shows the next ports will be\r\nPanama Canal, Houston, Mobile, and Tampa.\r\n\r\nIt will be very exciting to see the container ship go under the Skyway\r\nBridge when it arrives in Tampa, which is estimated to be around September\r\n8th. I\'m planning on taking my drone out that day to get some aerial\r\nfootage for our social media posts.\r\n\r\n\r\n\r\n\r\n[image: SailingSchedule.png]\r\n\r\n[image: Ship Location.png]\r\n\r\n\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>',0,0,0,0,0,0,'2025-08-08 19:29:27','2025-12-09 19:27:17','2025-12-09 19:27:17','2025-12-09 19:27:17',NULL,NULL,NULL),
(600,4,'<CADxgbC8xDeApB0dEN9wsqL7iAc8AGUYQ3hh26BNP7vsGBD+crg@mail.gmail.com>',NULL,NULL,'Re: Container Ship Departed China','tanner@lithiumbatterycompany.com','Tanner Hance','<div dir=\"ltr\"><div>Awesome news! that will be a sight to see!</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div style=\"color:rgb(80,0,80)\"><div dir=\"ltr\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\"><br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">V/r</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\"><br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Tanner Hance</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (919) 356-0862<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>tanner<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" style=\"color:rgb(17,85,204)\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><div style=\"margin:2px 0px 0px;color:rgb(80,0,80)\"></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Aug 8, 2025 at 3:30 PM Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Hi team,</div><div><br></div><div>Here&#39;s a Friday update on our equipment shipment.</div><div><br></div><div>Our container ship detached from the pilot boat in China about an hour and a half ago and is currently en route to the Panama Canal. I&#39;ve attached the sailing schedule for the COSCO VIETNAM, which shows the next ports will be Panama Canal, Houston, Mobile, and Tampa.</div><div><br></div><div>It will be very exciting to see the container ship go under the Skyway Bridge when it arrives in Tampa, which is estimated to be around September 8th. I&#39;m planning on taking my drone out that day to get some aerial footage for our social media posts.</div><div><br></div><div><br></div><div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br></div><div dir=\"ltr\"><img src=\"cid:ii_me37rufn0\" alt=\"SailingSchedule.png\" width=\"498\" height=\"255\"></div><div dir=\"ltr\"><br></div><img src=\"cid:ii_me37uju11\" alt=\"Ship Location.png\" width=\"498\" height=\"254\"><br><div dir=\"ltr\"><br><br></div><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_-1923822825701889338_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table><br></div><div><br></div></div></div></div></div>\r\n</blockquote></div>','Awesome news! that will be a sight to see!\r\n\r\n\r\nV/r\r\n\r\n\r\nTanner Hance\r\n\r\nLithium Battery Company\r\n\r\nDirect: (919) 356-0862\r\n\r\n*tanner@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com/>\r\n\r\n\r\nOn Fri, Aug 8, 2025 at 3:30 PM Nathan Staron <\r\nNathan@lithiumbatterycompany.com> wrote:\r\n\r\n> Hi team,\r\n>\r\n> Here\'s a Friday update on our equipment shipment.\r\n>\r\n> Our container ship detached from the pilot boat in China about an hour and\r\n> a half ago and is currently en route to the Panama Canal. I\'ve attached the\r\n> sailing schedule for the COSCO VIETNAM, which shows the next ports will be\r\n> Panama Canal, Houston, Mobile, and Tampa.\r\n>\r\n> It will be very exciting to see the container ship go under the Skyway\r\n> Bridge when it arrives in Tampa, which is estimated to be around September\r\n> 8th. I\'m planning on taking my drone out that day to get some aerial\r\n> footage for our social media posts.\r\n>\r\n>\r\n>\r\n>\r\n> [image: SailingSchedule.png]\r\n>\r\n> [image: Ship Location.png]\r\n>\r\n>\r\n>\r\n>\r\n> <https://lithiumbatterycompany.com/>\r\n> <https://www.instagram.com/lithiumbatteryco/>\r\n> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n> <https://www.facebook.com/LithiumBatteryCompany/>\r\n> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n> <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074\r\n> Phone 844-GET-LITHIUM\r\n> Nathan@lithiumbatterycompany.com\r\n> Schedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>\r\n>\r\n>\r\n>',0,0,0,0,0,0,'2025-08-08 19:34:59','2025-12-09 19:27:18','2025-12-09 19:27:18','2025-12-09 19:27:18',NULL,NULL,NULL),
(601,4,'<CAGgBgfBnqZSd0+LGwnr-fhfzo+UztWUQCg+iXZpw1ixgpjGOyA@mail.gmail.com>',NULL,NULL,'Retainer (08/08/25 1835)','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">Rick<br><br></div><div class=\"gmail_default\" style=\"font-size:small\">For a retainer, how about we stick to the rate listed in our proposal -- $640K / 9 is $71K per month.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Since we&#39;ve already invested time, we would like a month that we can back-bill so I can pay myself back for that effort, plus 2 months forward so that we&#39;re always a month ahead as we continue working.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Here&#39;s the first board design rolling off the line:</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><img src=\"cid:ii_me3dsboi0\" alt=\"image.png\" width=\"563\" height=\"558\"></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Here&#39;s the first draft of the GPS module.  It is dual-band, and with an RTK it can get down to 10cm of accuracy.<br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><img src=\"cid:ii_me3eab6j1\" alt=\"image.png\" width=\"563\" height=\"558\"><br></div><br clear=\"all\"></div><div><div class=\"gmail_default\" style=\"font-size:small\">We&#39;ll probably launch this board on Monday, we&#39;re just doing our checks now.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Next week we&#39;ll likely be ready to launch another board, so it would be nice to have some money so that I&#39;m not paying out of my own pocket.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Elias and Mar shared some power supply requirements.  I&#39;ll likely whip up something over the weekend, but I think he wants more than just the 2 BECs -- he definitely needs a Jetson Orin Nano, and he definitely needs a higher rail for the LIDAR.<br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">If that&#39;s all he needs, it&#39;s probably a week of effort.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">I&#39;ll definitely think about it this weekend and start to scribble something up.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">We have 3D renderings in progress, we&#39;ll send them when we&#39;re done.  We might even have a built prototype of the GPS module before you show -- just in case you need more handy-feelsies</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">If your acolytes are as good as you say, the GPS might even be functional for your show.</div></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">We successfully got the OSD processor talking to the OSD module last night (via a gob of wires on a bench).  Sometime next week I&#39;ll be building the first serious development platform for the OSD, because Joel said he&#39;ll have code ready in less than 2 weeks -- that way we can muscle in on the Chinese in that market!</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">As soon as I do a little more soul-searching on the FCC, I&#39;ll work on finishing that up as well.  In 3 weeks I could have protos good for show-and-tell but not necessarily function, because that thing has about 8 sensors in it and a bunch of other crud.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Remember, these first revs are for us to learn, and I&#39;m teasing myself that the first one I launch might be in the 30mm form factor -- the only problem is that if anything is wrong, it&#39;s too packed for my fingers to get in there to fix or patch anything.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">As in money-makers, I started the IMU.  Our costs on that will likely be $300 each but they sell for $1200 from what I saw.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">The GPS probably has 2X money in it the way it&#39;s designed.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">That&#39;s all the news that is fit to print at the moment.  Please get back to me on the numbers.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">For the prices I&#39;m telling you, I should be able to do something approaching residential-grade production electronics in a month or two.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">I would like to have a build cycle in there so that your guys can start to test the pieces I&#39;m building.</div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><div><font face=\"courier new, monospace\">Regards,</font></div><div><font face=\"courier new, monospace\">Thomas Pownall</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">CADX Services, Inc.</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Tel: 585-624-1491 X101</font></div><div><font face=\"courier new, monospace\">Fax: 585-582-1101</font></div><div><font face=\"courier new, monospace\">E-Mail: <a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a></font></div><div><font face=\"courier new, monospace\">Web: <a href=\"http://www.cadxservices.com\" target=\"_blank\">http://www.cadxservices.com</a></font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\">**************** Confidentiality Statement ****************</font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Privileged/Confidential Information may be contained in this</font></div><div><font face=\"courier new, monospace\">message. If you are not the addressee indicated in this message</font></div><div><font face=\"courier new, monospace\">(or responsible for delivery of the message to such person),</font></div><div><font face=\"courier new, monospace\">you may not copy or deliver this message to anyone. In such</font></div><div><font face=\"courier new, monospace\">case, you should destroy this message, and notify us</font></div><div><font face=\"courier new, monospace\">immediately. If you or your employer does not consent to</font></div><div><font face=\"courier new, monospace\">Internet email messages of this kind, please advise us</font></div><div><font face=\"courier new, monospace\">immediately. Opinions, conclusions and other information</font></div><div><font face=\"courier new, monospace\">expressed in this message are not given or endorsed by my firm</font></div><div><font face=\"courier new, monospace\">or employer unless otherwise indicated by an authorized</font></div><div><font face=\"courier new, monospace\">representative independent of this message.</font></div></div></div></div></div></div></div>','Rick\r\n\r\nFor a retainer, how about we stick to the rate listed in our proposal --\r\n$640K / 9 is $71K per month.\r\n\r\nSince we\'ve already invested time, we would like a month that we can\r\nback-bill so I can pay myself back for that effort, plus 2 months forward\r\nso that we\'re always a month ahead as we continue working.\r\n\r\nHere\'s the first board design rolling off the line:\r\n\r\n[image: image.png]\r\n\r\nHere\'s the first draft of the GPS module.  It is dual-band, and with an RTK\r\nit can get down to 10cm of accuracy.\r\n\r\n[image: image.png]\r\n\r\nWe\'ll probably launch this board on Monday, we\'re just doing our checks now.\r\n\r\nNext week we\'ll likely be ready to launch another board, so it would be\r\nnice to have some money so that I\'m not paying out of my own pocket.\r\n\r\nElias and Mar shared some power supply requirements.  I\'ll likely whip up\r\nsomething over the weekend, but I think he wants more than just the 2 BECs\r\n-- he definitely needs a Jetson Orin Nano, and he definitely needs a higher\r\nrail for the LIDAR.\r\n\r\nIf that\'s all he needs, it\'s probably a week of effort.\r\n\r\nI\'ll definitely think about it this weekend and start to scribble something\r\nup.\r\n\r\nWe have 3D renderings in progress, we\'ll send them when we\'re done.  We\r\nmight even have a built prototype of the GPS module before you show -- just\r\nin case you need more handy-feelsies\r\n\r\nIf your acolytes are as good as you say, the GPS might even be functional\r\nfor your show.\r\n\r\nWe successfully got the OSD processor talking to the OSD module last night\r\n(via a gob of wires on a bench).  Sometime next week I\'ll be building the\r\nfirst serious development platform for the OSD, because Joel said he\'ll\r\nhave code ready in less than 2 weeks -- that way we can muscle in on the\r\nChinese in that market!\r\n\r\nAs soon as I do a little more soul-searching on the FCC, I\'ll work on\r\nfinishing that up as well.  In 3 weeks I could have protos good for\r\nshow-and-tell but not necessarily function, because that thing has about 8\r\nsensors in it and a bunch of other crud.\r\n\r\nRemember, these first revs are for us to learn, and I\'m teasing myself that\r\nthe first one I launch might be in the 30mm form factor -- the only problem\r\nis that if anything is wrong, it\'s too packed for my fingers to get in\r\nthere to fix or patch anything.\r\n\r\nAs in money-makers, I started the IMU.  Our costs on that will likely be\r\n$300 each but they sell for $1200 from what I saw.\r\n\r\nThe GPS probably has 2X money in it the way it\'s designed.\r\n\r\n\r\n\r\nThat\'s all the news that is fit to print at the moment.  Please get back to\r\nme on the numbers.\r\n\r\nFor the prices I\'m telling you, I should be able to do something\r\napproaching residential-grade production electronics in a month or two.\r\n\r\nI would like to have a build cycle in there so that your guys can start to\r\ntest the pieces I\'m building.\r\n\r\nRegards,\r\nThomas Pownall\r\n\r\nCADX Services, Inc.\r\n\r\nTel: 585-624-1491 X101\r\nFax: 585-582-1101\r\nE-Mail: tpownall@cadxservices.com\r\nWeb: http://www.cadxservices.com\r\n\r\n***********************************************************\r\n**************** Confidentiality Statement ****************\r\n***********************************************************\r\n\r\nPrivileged/Confidential Information may be contained in this\r\nmessage. If you are not the addressee indicated in this message\r\n(or responsible for delivery of the message to such person),\r\nyou may not copy or deliver this message to anyone. In such\r\ncase, you should destroy this message, and notify us\r\nimmediately. If you or your employer does not consent to\r\nInternet email messages of this kind, please advise us\r\nimmediately. Opinions, conclusions and other information\r\nexpressed in this message are not given or endorsed by my firm\r\nor employer unless otherwise indicated by an authorized\r\nrepresentative independent of this message.',0,0,0,0,0,0,'2025-08-08 22:35:26','2025-12-09 19:27:19','2025-12-09 19:27:19','2025-12-09 19:27:19',NULL,NULL,NULL),
(602,4,'<1262914897.169783.1754712666254@app128044.mia201.service-now.com>',NULL,NULL,'Your incident INC-GSAFSD20147835 requires a response','fsdsupport@gsa.gov','\"Federal Service Desk (FSD)\"','<html><head></head><body><p></p>\r\n<style type=\"text/css\">\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n</style>\r\n<div style=\"margin: 0 auto !important;\" align=\"center\">\r\n<table class=\"w100\" style=\"width: 600px; background-color: #f7f7f9; margin: 0 auto !important; padding: 0px;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" bgcolor=\"#F7F7F9\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 13px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"background-color: #d8ecff;\" height=\"32\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"40\" style=\"width: 53.1077%;\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td height=\"50\"><img src=\"cid:sys_attachment.dosys_idbe2e8d8d1bda2a50205e8736624bcb90@SNC.16957916c2c01cb5\" width=\"auto\" height=\"50\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr style=\"background-color: #d8ecff;\" height=\"22\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr><!-- Left-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- CONTAINER -->\r\n<td width=\"564\">\r\n<table class=\"w100\" style=\"margin: 0px; padding: 0px; box-shadow: 0px 2px 10px rgba(23, 40, 52, 0.08);\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody><!-- Main Container -->\r\n<tr>\r\n<td class=\"pad-sides-20\" style=\"border-radius: 6px; text-align: left; background-color: #ffffff; padding: 24px 24px 24px 24px; color: #454545;\" align=\"center\">\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-bottom: 10px;\"><strong>This is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD)</strong> which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.</div>\r\n</div>\r\n<hr>\r\n<p></p><div style=\"font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif; line-height: 26px; font-size: 16px;\">\r\n<div style=\"line-height: 26px; padding-bottom: 24px; text-align: left; color: #454545;\">\r\n<h4 style=\"margin-top: 14pt; line-height: 32px; margin-bottom: 4pt; text-align: left; font-size: 17.52pt;\"><strong> Reminder: Please Review Your Incident</strong></h4>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left; font-size: 12pt;\">Hello <strong>rick@mavrix.one,</strong></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left;\">Your incident <strong><span style=\"font-size: 12pt;\">INC-GSAFSD20147835 </span></strong><span style=\"font-size: 12pt;\"> is currently on hold pending your response.</span></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 6pt; text-align: left;\"><span style=\"font-size: 12pt;\">To review the incident details and submit your reply, please use the link below:<br></span><strong><span style=\"font-size: 12pt;\"></span></strong></p><div style=\"margin-top: 8px;\"><strong><a href=\"https://www.fsd.gov/gsafsd_sp?id=incident_form&amp;table=incident&amp;sys_id=ecb56edf8707a690efb1fe68cebb3551\" style=\"background-color: #70E17B;color: #162E51;font-size: 16px;text-decoration: none; border-radius: 4px;-webkit-border-radius: 4px;-moz-border-radius: 4px;display: inline-block;padding: 10px 32px 10px 32px;\">View incident</a></strong></div><span style=\"font-size: 12pt;\"> <br></span><strong><span style=\"font-size: 12pt;\">Please note:</span></strong><span style=\"font-size: 12pt;\"> If we do not receive a response 2025-08-12 20:00:00 PDT<strong>,</strong> the incident will be marked as resolved.</span><p></p>\r\n<span style=\"font-size: 12pt;\">Thank you,</span><span style=\"font-size: 12pt;\"><br></span><strong><span style=\"font-size: 12pt;\">FSD.gov Team</span></strong></div>\r\n</div><p></p>\r\n<hr>\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-top: 10px;\"><strong>Don\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times!</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0036075\" target=\"_blank\" rel=\"noopener\">Invite others </a>to help manage your registration. <strong>DO NOT</strong> attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. <strong>Submit all entity validation documentation from your Entity Workspace in SAM.gov.</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0057690\" target=\"_blank\" rel=\"noopener\">Learn how to add documentation</a> to your entity validation case.</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- END CONTAINER --> <!-- Right-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"background-color: #f7f7f9;\" align=\"center\" height=\"40\"></td>\r\n</tr>\r\n<!-- Footer started -->\r\n<tr style=\"background-color: #d8ecff;\">\r\n<td>\r\n<table style=\"background-color: #d8ecff;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td height=\"30\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 14px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_id7d465e4a1b3ca2103943eac1604bcbb6@SNC.45c3c627930221\" width=\"120\" height=\"40\" title=\"Cloud 4.png\" alt=\"Cloud\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"30\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff;\" align=\"center\" valign=\"top\" height=\"30\"><img src=\"cid:sys_attachment.dosys_idb04e85cd1bda2a50205e8736624bcbfa@SNC.3776d372514b4778\" width=\"auto\" height=\"30\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_idb1a5160a1b3ca2103943eac1604bcbdc@SNC.e879a29c997ae701\" width=\"140\" height=\"40\" title=\"Cloud 3.png\" alt=\"Cloud\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff; color: #ffffff;\">\r\n<table style=\"color: #ffffff;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr align=\"center\">\r\n<td><span id=\"templateAddress\" class=\"footer\" style=\"color: #162e51; font-size: 14px; line-height: 18px; text-align: center; margin: 0 !important;\"> GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td height=\"10\"></td>\r\n</tr>\r\n<tr>\r\n<td height=\"120px\"><img style=\"height: 120px; width: 100%;\" src=\"cid:sys_attachment.dosys_id7555160a1b3ca2103943eac1604bcb39@SNC.219e4f4dc90ca417\" height=\"120\" title=\"Jefferson Light Blue 2.png\" alt=\"Jefferson Memorial\"><span id=\"mce_26\"></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<!-- Footer end--></tbody>\r\n</table>\r\n</div><div>&nbsp;</div><div style=\"display:inline\">Ref:MSG1691475_hOiAEVRHi7HLBgeOaUnx</div></body></html>','\r\n\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD) which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.\r\n\r\n\r\n\r\n\r\n Reminder: Please Review Your Incident\r\nHello rick@mavrix.one,\r\nYour incident INC-GSAFSD20147835  is currently on hold pending your response.\r\nTo review the incident details and submit your reply, please use the link below:View incident Please note: If we do not receive a response 2025-08-12 20:00:00 PDT, the incident will be marked as resolved.\r\nThank you,FSD.gov Team\r\n\r\n\r\n\r\nDon\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times! Invite others to help manage your registration. DO NOT attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. Submit all entity validation documentation from your Entity Workspace in SAM.gov. Learn how to add documentation to your entity validation case.\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;Ref:MSG1691475_hOiAEVRHi7HLBgeOaUnx',0,0,0,0,0,0,'2025-08-09 04:11:06','2025-12-09 19:27:19','2025-12-09 19:27:19','2025-12-09 19:27:19',NULL,NULL,NULL),
(603,4,'<CAGgBgfCvrTZGqc9n4QoMn8BZRiiuXuKPQryKTJ1d6hDwZob7tw@mail.gmail.com>',NULL,NULL,'Automated Optical Inspection Equipment (08/11/25 1010)','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">Rick:</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">I&#39;ve done a bunch of board designs for these guys, and I know several of the engineering and research people who work here.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">This would be something you would probably use in your assembly line.<br><br></div><div class=\"gmail_default\" style=\"font-size:small\">You keep on saying everything, so in addition to a surface-mount line you need incoming and outgoing inspection.  </div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">This place is in your backyard.  They&#39;re American-engineered and mostly American-made.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Also, be ready to have a temperature and humidity controlled environment -- this equipment measures increments so small that you have to control the environment if you want that level of accuracy.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">A lot of their equipment is overkill, but they have some low-end stuff that will definitely do what you need in the PCB world.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><a rel=\"noreferrer nofollow noopener\" href=\"https://viewmm.com/en/tech-bulletin/\" target=\"_blank\" style=\"font-family:Arial,sans-serif;font-size:14px\">https://viewmm.com/en/tech-bulletin/</a></div><div style=\"font-family:Arial,sans-serif;font-size:14px\"><a rel=\"noreferrer nofollow noopener\" href=\"https://viewmm.com/en/applications/\" target=\"_blank\">https://viewmm.com/en/applications/</a></div><div style=\"font-family:Arial,sans-serif;font-size:14px\"><br></div><div style=\"font-family:Arial,sans-serif;font-size:14px\">The machines are built here in Rochester and the Applications Teams are here in Rochester, Arizona and Singapore/Korea/Asia</div><div style=\"font-family:Arial,sans-serif;font-size:14px\"><br></div><div style=\"font-family:Arial,sans-serif;font-size:14px\"><span class=\"gmail_default\" style=\"font-size:small\"></span>T<span class=\"gmail_default\" style=\"font-size:small\">hese</span> machines can also do inspection of IC/PCB manufacturing using our generic software)<span class=\"gmail_default\" style=\"font-size:small\">;</span> View&#39;s machines/software can be customized/taylored for automation / tight integration into customer&#39;s PCB / IC fabrication lines. </div><div style=\"font-family:Arial,sans-serif;font-size:14px\"><br></div><div style=\"font-family:Arial,sans-serif;font-size:14px\">Various machines have different sensor options -</div><div style=\"font-family:Arial,sans-serif;font-size:14px\"> optica/lasers/touch probes - all integrated into the measurement/defect detection software</div><div style=\"font-family:Arial,sans-serif;font-size:14px\"><br></div><div style=\"font-family:Arial,sans-serif;font-size:14px\"><a rel=\"noreferrer nofollow noopener\" href=\"https://www.ogpnet.com/ogp-knowledge-center/metrology-101/\" target=\"_blank\">https://www.ogpnet.com/ogp-knowledge-center/metrology-101/</a></div><div style=\"font-family:Arial,sans-serif;font-size:14px\"><br></div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><div><font face=\"courier new, monospace\">Regards,</font></div><div><font face=\"courier new, monospace\">Thomas Pownall</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">CADX Services, Inc.</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Tel: 585-624-1491 X101</font></div><div><font face=\"courier new, monospace\">Fax: 585-582-1101</font></div><div><font face=\"courier new, monospace\">E-Mail: <a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a></font></div><div><font face=\"courier new, monospace\">Web: <a href=\"http://www.cadxservices.com\" target=\"_blank\">http://www.cadxservices.com</a></font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\">**************** Confidentiality Statement ****************</font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Privileged/Confidential Information may be contained in this</font></div><div><font face=\"courier new, monospace\">message. If you are not the addressee indicated in this message</font></div><div><font face=\"courier new, monospace\">(or responsible for delivery of the message to such person),</font></div><div><font face=\"courier new, monospace\">you may not copy or deliver this message to anyone. In such</font></div><div><font face=\"courier new, monospace\">case, you should destroy this message, and notify us</font></div><div><font face=\"courier new, monospace\">immediately. If you or your employer does not consent to</font></div><div><font face=\"courier new, monospace\">Internet email messages of this kind, please advise us</font></div><div><font face=\"courier new, monospace\">immediately. Opinions, conclusions and other information</font></div><div><font face=\"courier new, monospace\">expressed in this message are not given or endorsed by my firm</font></div><div><font face=\"courier new, monospace\">or employer unless otherwise indicated by an authorized</font></div><div><font face=\"courier new, monospace\">representative independent of this message.</font></div></div></div></div></div></div></div>','Rick:\r\n\r\nI\'ve done a bunch of board designs for these guys, and I know several of\r\nthe engineering and research people who work here.\r\n\r\nThis would be something you would probably use in your assembly line.\r\n\r\nYou keep on saying everything, so in addition to a surface-mount line you\r\nneed incoming and outgoing inspection.\r\n\r\nThis place is in your backyard.  They\'re American-engineered and mostly\r\nAmerican-made.\r\n\r\nAlso, be ready to have a temperature and humidity controlled environment --\r\nthis equipment measures increments so small that you have to control the\r\nenvironment if you want that level of accuracy.\r\n\r\nA lot of their equipment is overkill, but they have some low-end stuff that\r\nwill definitely do what you need in the PCB world.\r\n\r\n\r\nhttps://viewmm.com/en/tech-bulletin/\r\nhttps://viewmm.com/en/applications/\r\n\r\nThe machines are built here in Rochester and the Applications Teams are\r\nhere in Rochester, Arizona and Singapore/Korea/Asia\r\n\r\nThese machines can also do inspection of IC/PCB manufacturing using our\r\ngeneric software); View\'s machines/software can be customized/taylored for\r\nautomation / tight integration into customer\'s PCB / IC fabrication lines.\r\n\r\nVarious machines have different sensor options -\r\n optica/lasers/touch probes - all integrated into the measurement/defect\r\ndetection software\r\n\r\nhttps://www.ogpnet.com/ogp-knowledge-center/metrology-101/\r\n\r\n\r\nRegards,\r\nThomas Pownall\r\n\r\nCADX Services, Inc.\r\n\r\nTel: 585-624-1491 X101\r\nFax: 585-582-1101\r\nE-Mail: tpownall@cadxservices.com\r\nWeb: http://www.cadxservices.com\r\n\r\n***********************************************************\r\n**************** Confidentiality Statement ****************\r\n***********************************************************\r\n\r\nPrivileged/Confidential Information may be contained in this\r\nmessage. If you are not the addressee indicated in this message\r\n(or responsible for delivery of the message to such person),\r\nyou may not copy or deliver this message to anyone. In such\r\ncase, you should destroy this message, and notify us\r\nimmediately. If you or your employer does not consent to\r\nInternet email messages of this kind, please advise us\r\nimmediately. Opinions, conclusions and other information\r\nexpressed in this message are not given or endorsed by my firm\r\nor employer unless otherwise indicated by an authorized\r\nrepresentative independent of this message.',0,0,0,0,0,0,'2025-08-11 14:09:59','2025-12-09 19:27:19','2025-12-09 19:27:19','2025-12-09 19:27:19',NULL,NULL,NULL),
(604,4,'<calendar-166f60e7-84ae-417f-afc7-231df90c4dc4@google.com>',NULL,NULL,'Invitation: BayFront Capital x LBC @ Mon Aug 11, 2025 11:30am - 12:30pm (EDT) (rick@mavrix.one)','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v144/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v118/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation from Jarrett Brownfield\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"g84j2oggvnffce1evnhhrs6990\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">BayFront Capital x LBC</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=Zzg0ajJvZ2d2bmZmY2UxZXZuaGhyczY5OTAgcmlja0BtYXZyaXgub25l&amp;tok=MzMjamFycmV0dEBsaXRoaXVtYmF0dGVyeWNvbXBhbnkuY29tOTRjZTQzY2UwMjljMTJhNDk2MmIzYzgyM2MzMWRkNGJhNTRmYmIzNg&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250811T153000Z\"></time><time itemprop=\"endDate\" datetime=\"20250811T163000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">──────────Jarrett Brownfield is inviting you to a scheduled Zoom meeting.Join Zoom Meetinghttps://us06web.zoom.us/j/88902606893?pwd=rVQAdrFlfNysmPT099bsEUEjGbAoaN.1Meeting ID: 889 0260 6893Passcode: 3</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><div class=\"\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span><p>──────────<br>Jarrett Brownfield is inviting you to a scheduled Zoom meeting.<br>Join Zoom Meeting<br><a href=\"https://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fj%2F88902606893%3Fpwd%3DrVQAdrFlfNysmPT099bsEUEjGbAoaN.1&amp;sa=D&amp;source=calendar&amp;ust=1755355800000000&amp;usg=AOvVaw0fduJ1LZgYclaiv5Wyg6kz\" target=\"_blank\">https://us06web.zoom.us/j/88902606893?pwd=rVQAdrFlfNysmPT099bsEUEjGbAoaN.1</a><br><br>Meeting ID: 889 0260 6893<br>Passcode: 342685<br><br>---<br><br>One tap mobile<br>+13052241968,,88902606893#,,,,*342685# US<br>+13126266799,,88902606893#,,,,*342685# US (Chicago)<br><br>Join instructions<br><a href=\"https://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fmeetings%2F88902606893%2Finvitations%3Fsignature%3Dyvm8RDnNVW0fXsezSf07UauqcBjSIHtptTJaYaGrySY&amp;sa=D&amp;source=calendar&amp;ust=1755355800000000&amp;usg=AOvVaw3mFJwrytNZk1jJXgC9dxVH\" target=\"_blank\">https://us06web.zoom.us/meetings/88902606893/invitations?signature=yvm8RDnNVW0fXsezSf07UauqcBjSIHtptTJaYaGrySY</a><br><br>──────────</p></span><meta itemprop=\"description\" content=\"──────────Jarrett Brownfield is inviting you to a scheduled Zoom meeting.Join Zoom Meetinghttps://us06web.zoom.us/j/88902606893?pwd=rVQAdrFlfNysmPT099bsEUEjGbAoaN.1Meeting ID: 889 0260 6893Passcode: 342685---One tap mobile+13052241968,,88902606893#,,,,*342685# US+13126266799,,88902606893#,,,,*342685# US (Chicago)Join instructionshttps://us06web.zoom.us/meetings/88902606893/invitations?signature=yvm8RDnNVW0fXsezSf07UauqcBjSIHtptTJaYaGrySY──────────\"/></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250811T153000Z\"></time><time itemprop=\"endDate\" datetime=\"20250811T163000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Monday Aug 11, 2025 ⋅ 11:30am – 12:30pm (Eastern Time - New York)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Location</h2></td></tr></table><span itemprop=\"location\" itemscope itemtype=\"http://schema.org/Place\"><span itemprop=\"name\" class=\"primary-text notranslate\" style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\">https://us06web.zoom.us/j/88902606893?pwd=rVQAdrFlfNysmPT099bsEUEjGbAoaN.1</span><br/><a href=\"https://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fj%2F88902606893%3Fpwd%3DrVQAdrFlfNysmPT099bsEUEjGbAoaN.1&amp;sa=D&amp;source=calendar&amp;ust=1755355800000000&amp;usg=AOvVaw0fduJ1LZgYclaiv5Wyg6kz\" class=\"accent-text underline-on-hover\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" itemprop=\"map\">View map</a></span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jarrett@lithiumbatterycompany.com\">Jarrett Brownfield</a></span><meta itemprop=\"email\" content=\"jarrett@lithiumbatterycompany.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Jarrett Brownfield\"/><meta itemprop=\"email\" content=\"jarrett@lithiumbatterycompany.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:brian@bayfrontcapitalllc.com\">brian@bayfrontcapitalllc.com</a></span><meta itemprop=\"email\" content=\"brian@bayfrontcapitalllc.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:nathan@lithiumbatterycompany.com\">Nathan Staron</a></span><meta itemprop=\"email\" content=\"nathan@lithiumbatterycompany.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jordan@lithiumbatterycompany.com\">Jordan Wroblewski</a></span><meta itemprop=\"email\" content=\"jordan@lithiumbatterycompany.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=Zzg0ajJvZ2d2bmZmY2UxZXZuaGhyczY5OTAgcmlja0BtYXZyaXgub25l&amp;tok=MzMjamFycmV0dEBsaXRoaXVtYmF0dGVyeWNvbXBhbnkuY29tOTRjZTQzY2UwMjljMTJhNDk2MmIzYzgyM2MzMWRkNGJhNTRmYmIzNg&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=Zzg0ajJvZ2d2bmZmY2UxZXZuaGhyczY5OTAgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MzMjamFycmV0dEBsaXRoaXVtYmF0dGVyeWNvbXBhbnkuY29tOTRjZTQzY2UwMjljMTJhNDk2MmIzYzgyM2MzMWRkNGJhNTRmYmIzNg&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=Zzg0ajJvZ2d2bmZmY2UxZXZuaGhyczY5OTAgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MzMjamFycmV0dEBsaXRoaXVtYmF0dGVyeWNvbXBhbnkuY29tOTRjZTQzY2UwMjljMTJhNDk2MmIzYzgyM2MzMWRkNGJhNTRmYmIzNg&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=Zzg0ajJvZ2d2bmZmY2UxZXZuaGhyczY5OTAgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MzMjamFycmV0dEBsaXRoaXVtYmF0dGVyeWNvbXBhbnkuY29tOTRjZTQzY2UwMjljMTJhNDk2MmIzYzgyM2MzMWRkNGJhNTRmYmIzNg&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=Zzg0ajJvZ2d2bmZmY2UxZXZuaGhyczY5OTAgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MzMjamFycmV0dEBsaXRoaXVtYmF0dGVyeWNvbXBhbnkuY29tOTRjZTQzY2UwMjljMTJhNDk2MmIzYzgyM2MzMWRkNGJhNTRmYmIzNg&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=Zzg0ajJvZ2d2bmZmY2UxZXZuaGhyczY5OTAgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MzMjamFycmV0dEBsaXRoaXVtYmF0dGVyeWNvbXBhbnkuY29tOTRjZTQzY2UwMjljMTJhNDk2MmIzYzgyM2MzMWRkNGJhNTRmYmIzNg&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=Zzg0ajJvZ2d2bmZmY2UxZXZuaGhyczY5OTAgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MzMjamFycmV0dEBsaXRoaXVtYmF0dGVyeWNvbXBhbnkuY29tOTRjZTQzY2UwMjljMTJhNDk2MmIzYzgyM2MzMWRkNGJhNTRmYmIzNg&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=Zzg0ajJvZ2d2bmZmY2UxZXZuaGhyczY5OTAgcmlja0BtYXZyaXgub25l&amp;tok=MzMjamFycmV0dEBsaXRoaXVtYmF0dGVyeWNvbXBhbnkuY29tOTRjZTQzY2UwMjljMTJhNDk2MmIzYzgyM2MzMWRkNGJhNTRmYmIzNg&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=Zzg0ajJvZ2d2bmZmY2UxZXZuaGhyczY5OTAgcmlja0BtYXZyaXgub25l&amp;tok=MzMjamFycmV0dEBsaXRoaXVtYmF0dGVyeWNvbXBhbnkuY29tOTRjZTQzY2UwMjljMTJhNDk2MmIzYzgyM2MzMWRkNGJhNTRmYmIzNg&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','BayFront Capital x LBC\r\nMonday Aug 11, 2025 ⋅ 11:30am – 12:30pm\r\nEastern Time - New York\r\n\r\nLocation\r\nhttps://us06web.zoom.us/j/88902606893?pwd=rVQAdrFlfNysmPT099bsEUEjGbAoaN.1	\r\nhttps://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fj%2F88902606893%3Fpwd%3DrVQAdrFlfNysmPT099bsEUEjGbAoaN.1&sa=D&source=calendar&ust=1755355800000000&usg=AOvVaw0fduJ1LZgYclaiv5Wyg6kz\r\n\r\n\r\n\r\n──────────Jarrett Brownfield is inviting you to a scheduled Zoom  \r\nmeeting.Join Zoom  \r\nMeetinghttps://us06web.zoom.us/j/88902606893?pwd=rVQAdrFlfNysmPT099bsEUEjGbAoaN.1Meeting  \r\nID: 889 0260 6893Passcode: 342685---One tap  \r\nmobile+13052241968,,88902606893#,,,,*342685#  \r\nUS+13126266799,,88902606893#,,,,*342685# US (Chicago)Join  \r\ninstructionshttps://us06web.zoom.us/meetings/88902606893/invitations?signature=yvm8RDnNVW0fXsezSf07UauqcBjSIHtptTJaYaGrySY──────────\r\n\r\nOrganizer\r\nJarrett Brownfield\r\njarrett@lithiumbatterycompany.com\r\n\r\nGuests\r\nJarrett Brownfield - organizer\r\nrick@mavrix.one\r\nbrian@bayfrontcapitalllc.com\r\nNathan Staron\r\nJordan Wroblewski\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=Zzg0ajJvZ2d2bmZmY2UxZXZuaGhyczY5OTAgcmlja0BtYXZyaXgub25l&tok=MzMjamFycmV0dEBsaXRoaXVtYmF0dGVyeWNvbXBhbnkuY29tOTRjZTQzY2UwMjljMTJhNDk2MmIzYzgyM2MzMWRkNGJhNTRmYmIzNg&ctz=America%2FNew_York&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=Zzg0ajJvZ2d2bmZmY2UxZXZuaGhyczY5OTAgcmlja0BtYXZyaXgub25l&tok=MzMjamFycmV0dEBsaXRoaXVtYmF0dGVyeWNvbXBhbnkuY29tOTRjZTQzY2UwMjljMTJhNDk2MmIzYzgyM2MzMWRkNGJhNTRmYmIzNg&ctz=America%2FNew_York&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-08-11 14:50:23','2025-12-09 19:27:20','2025-12-09 19:27:20','2025-12-09 19:27:20',NULL,NULL,NULL),
(605,4,' <DM6PR07MB58500ECC13A000B959BD3714AD28A@DM6PR07MB5850.namprd07.prod.outlook.com>',NULL,NULL,'Delivery of Mavrix Manufacturing Pathways White Paper','rich@achramlabs.com','Richard Van Voorst','<html xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;\r\n	panose-1:2 11 0 4 2 2 2 2 2 4;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle17\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p>Hi Rick and Brian,<o:p></o:p></p>\r\n<p>Attached is a completed white paper outlining Mavrix’s defense market entry pathways, recommended strategy, and proposed execution plan. It includes our analysis of four potential approaches, our recommended sequencing for maximum impact, and how Achram\r\n Labs can directly support Mavrix’s positioning, demonstrations, and stakeholder engagement.<br>\r\n<br>\r\nThe project-based services are based solely on the scope of work and what we believe we should be making for the task/client/end-goal at hand. I know that some of those are big ranges, but that is exactly what we get. Most videos though should be 1-2 minutes,\r\n unless we do something like document the functionality of say a manufacturing space or document a demonstration event.<o:p></o:p></p>\r\n<p class=\"MsoNormal\">Please review at your convenience. I’m happy to walk through the document together and discuss next steps for moving forward on the recommended path.<br>\r\n<br>\r\n<span style=\"font-size:11.0pt\"><o:p></o:p></span></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:none\">V/R,<br>\r\n<br>\r\nRich <br>\r\n<br>\r\n--&nbsp;</span><span style=\"font-size:11.0pt;mso-ligatures:none\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:none\">Rich Van Voorst <br>\r\nAchram Labs | CEO<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:none\"><a href=\"http://www.achramlabs.com\"><span style=\"color:#467886\">www.achramlabs.com</span></a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:none\">e: <a href=\"mailto:rich@achramlabs.com\">\r\n<span style=\"color:#467886\">rich@achramlabs.com</span></a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:none\">m: 813-334-5104</span><span style=\"font-size:11.0pt;mso-ligatures:none\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n</body>\r\n</html>','Hi Rick and Brian,\r\n\r\nAttached is a completed white paper outlining Mavrix’s defense market entry pathways, recommended strategy, and proposed execution plan. It includes our analysis of four potential approaches, our recommended sequencing for maximum impact, and how Achram Labs can directly support Mavrix’s positioning, demonstrations, and stakeholder engagement.\r\n\r\nThe project-based services are based solely on the scope of work and what we believe we should be making for the task/client/end-goal at hand. I know that some of those are big ranges, but that is exactly what we get. Most videos though should be 1-2 minutes, unless we do something like document the functionality of say a manufacturing space or document a demonstration event.\r\nPlease review at your convenience. I’m happy to walk through the document together and discuss next steps for moving forward on the recommended path.\r\n\r\nV/R,\r\n\r\nRich\r\n\r\n--\r\nRich Van Voorst\r\nAchram Labs | CEO\r\nwww.achramlabs.com<http://www.achramlabs.com>\r\ne: rich@achramlabs.com<mailto:rich@achramlabs.com>\r\nm: 813-334-5104',0,0,0,0,0,0,'2025-08-11 15:49:26','2025-12-09 19:27:24','2025-12-09 19:27:24','2025-12-09 19:27:24',NULL,NULL,NULL),
(606,4,'<CAGgBgfBbRgJoqq3uDq7ynzdKTsdKeUaei67psvkuaowstT5Ufw@mail.gmail.com>',NULL,NULL,'GPS Module Release (08/11/25 1235)','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">Rick:</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">We&#39;re going to be launching this one today -- this is the GPS module.  I might get the other one completed today and another one later this week, we&#39;ll see.  One is a little engineering board to try to solve a problem.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">We&#39;re going to go with black mask and I&#39;m thinking yellow silkscreen, with the exposed copper being gold-plated.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">I&#39;m trying to figure out how to get you guys caught up, so I&#39;ll be getting enough boards to do 10 pieces.  This is direct competition against a big Chinese company named Huizhou Flash Hobby Technology Co., Ltd.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">I&#39;ll also get pricing on these in the 500-1000 piece arena.  </div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Like my proposal stated there will be a progression on all of these things, with a hobbyist / USA target initially.  I&#39;m also preparing for the RTK (which would be military) on the side.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">I might have samples of this one ready for your show-and-tell in a couple of weeks.</div><br clear=\"all\"></div><div><br></div><div><img src=\"cid:ii_me7bsd4r0\" alt=\"image.png\" width=\"563\" height=\"557\"><br><br></div><div><div class=\"gmail_default\" style=\"font-size:small\"></div><img src=\"cid:ii_me7bsm6s1\" alt=\"image.png\" width=\"563\" height=\"560\"><br><br></div><div><span style=\"font-family:&quot;courier new&quot;,monospace\">Regards,</span><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div dir=\"ltr\"><div><font face=\"courier new, monospace\">Thomas Pownall</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">CADX Services, Inc.</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Tel: 585-624-1491 X101</font></div><div><font face=\"courier new, monospace\">Fax: 585-582-1101</font></div><div><font face=\"courier new, monospace\">E-Mail: <a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a></font></div><div><font face=\"courier new, monospace\">Web: <a href=\"http://www.cadxservices.com\" target=\"_blank\">http://www.cadxservices.com</a></font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\">**************** Confidentiality Statement ****************</font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Privileged/Confidential Information may be contained in this</font></div><div><font face=\"courier new, monospace\">message. If you are not the addressee indicated in this message</font></div><div><font face=\"courier new, monospace\">(or responsible for delivery of the message to such person),</font></div><div><font face=\"courier new, monospace\">you may not copy or deliver this message to anyone. In such</font></div><div><font face=\"courier new, monospace\">case, you should destroy this message, and notify us</font></div><div><font face=\"courier new, monospace\">immediately. If you or your employer does not consent to</font></div><div><font face=\"courier new, monospace\">Internet email messages of this kind, please advise us</font></div><div><font face=\"courier new, monospace\">immediately. Opinions, conclusions and other information</font></div><div><font face=\"courier new, monospace\">expressed in this message are not given or endorsed by my firm</font></div><div><font face=\"courier new, monospace\">or employer unless otherwise indicated by an authorized</font></div><div><font face=\"courier new, monospace\">representative independent of this message.</font></div></div></div></div></div></div>','Rick:\r\n\r\nWe\'re going to be launching this one today -- this is the GPS module.  I\r\nmight get the other one completed today and another one later this week,\r\nwe\'ll see.  One is a little engineering board to try to solve a problem.\r\n\r\nWe\'re going to go with black mask and I\'m thinking yellow silkscreen, with\r\nthe exposed copper being gold-plated.\r\n\r\nI\'m trying to figure out how to get you guys caught up, so I\'ll be getting\r\nenough boards to do 10 pieces.  This is direct competition against a big\r\nChinese company named Huizhou Flash Hobby Technology Co., Ltd.\r\n\r\nI\'ll also get pricing on these in the 500-1000 piece arena.\r\n\r\nLike my proposal stated there will be a progression on all of these things,\r\nwith a hobbyist / USA target initially.  I\'m also preparing for the RTK\r\n(which would be military) on the side.\r\n\r\nI might have samples of this one ready for your show-and-tell in a\r\ncouple of weeks.\r\n\r\n\r\n[image: image.png]\r\n\r\n[image: image.png]\r\n\r\nRegards,\r\nThomas Pownall\r\n\r\nCADX Services, Inc.\r\n\r\nTel: 585-624-1491 X101\r\nFax: 585-582-1101\r\nE-Mail: tpownall@cadxservices.com\r\nWeb: http://www.cadxservices.com\r\n\r\n***********************************************************\r\n**************** Confidentiality Statement ****************\r\n***********************************************************\r\n\r\nPrivileged/Confidential Information may be contained in this\r\nmessage. If you are not the addressee indicated in this message\r\n(or responsible for delivery of the message to such person),\r\nyou may not copy or deliver this message to anyone. In such\r\ncase, you should destroy this message, and notify us\r\nimmediately. If you or your employer does not consent to\r\nInternet email messages of this kind, please advise us\r\nimmediately. Opinions, conclusions and other information\r\nexpressed in this message are not given or endorsed by my firm\r\nor employer unless otherwise indicated by an authorized\r\nrepresentative independent of this message.',0,0,0,0,0,0,'2025-08-11 16:34:41','2025-12-09 19:27:24','2025-12-09 19:27:24','2025-12-09 19:27:24',NULL,NULL,NULL),
(607,4,'<6abfc8fd5c434dbfaf86a708be2f0240@docusign.net>',NULL,NULL,'Engagement Letter Mavrix 1, LLC rev','dse_na2@docusign.net','\"Linda Propes via Docusign\"','<html lang=3D\"en\"><head><meta http-equiv=3D\"Content-Type\" content=3D\"te=\r\nxt/html; charset=3DUTF-8\"/><meta name=3D\"viewport\" content=3D\"initial-s=\r\ncale=3D1=2E0\"/><meta name=3D\"format-detection\" content=3D\"telephone=3Dn=\r\no\"/><title>EnvelopeActivation</title></head><body style=3D\"background-c=\r\nolor:#EAEAEA;padding:2%;font-family:Helvetica,Arial,Sans Serif;\"><table=\r\n role=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\'=\r\n align=3D\'center\' width=3D\"100%\" dir=3D\"\"><tr><td></td><td width=3D\"640=\r\n\"><table role=3D\"presentation\" style=3D\"mso-table-lspace:0pt;mso-table-=\r\nrspace:0pt;border-collapse:collapse;background-color:#ffffff;max-width:=\r\n640px;\"><tr><td style=3D\"padding:10px 24px;\"><img style=3D\"border:none;=\r\n\" width=3D\"\" src=3D\"https://na2=2Edocusign=2Enet/Member/Image=2Easpx?i=3D=\r\nlogo&l=3Def5bb6f9-4c96-4b18-949d-343336b691cf\" alt=3D\"\"/></td></tr><tr>=\r\n<td style=3D\"padding:0px 24px 30px 24px;\"><table role=3D\'presentation\' =\r\nborder=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\' width=3D\'100%\' align=3D=\r\n\'center\' style=3D\'background-color:#214e9f;color:#ffffff;\'><tr><td styl=\r\ne=3D\"padding:28px 36px 36px 36px;border-radius:2px;background-color:#21=\r\n4e9f;color:#ffffff;font-size:16px;font-family:Helvetica,Arial,Sans Seri=\r\nf;width:100%;text-align:center;\" align=3D\"center\"><img width=3D\"75\" hei=\r\nght=3D\"75\" src=3D\"https://docucdn-a=2Eakamaihd=2Enet/olive/images/2=2E7=\r\n6=2E0/email/iconSignWhite=2Epng\" style=3D\"width:75px;height:75px;\" alt=3D=\r\n\"\" /><table role=3D\'presentation\' border=3D\'0\' cellspacing=3D\'0\' cellpa=\r\ndding=3D\'0\' width=3D\'100%\'><tr><td style=3D\"padding-top:24px;font-size:=\r\n16px;font-family:Helvetica,Arial,Sans Serif;border:none;text-align:cent=\r\ner;color:#ffffff\" align=3D\"center\"> Linda Propes sent you a document to=\r\n review and sign=2E </td></tr></table><table role=3D\'presentation\' bord=\r\ner=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\' width=3D\'100%\'><tr><td ali=\r\ngn=3D\"center\" style=3D\"padding-top:30px;\"><div><table cellspacing=3D\"0\"=\r\n cellpadding=3D\"0\"><tr><td align=3D\"center\" height=3D\"44\" style=3D\"font=\r\n-size:15px;color:#333333;background-color:#ffc820;font-family:Helvetica=\r\n,Arial,Sans Serif;font-weight:bold;text-align:center;text-decoration:no=\r\nne;;border-radius:2px;background-color:#ffc820;;display: block;\"><a hre=\r\nf=3D\"https://na2=2Edocusign=2Enet/Signing/EmailStart=2Easpx?a=3D2327f91=\r\ne-a810-41f6-af51-11ff184469bf&etti=3D24&acct=3D7b866992-f8fe-4860-8694-=\r\ncc3914c8e26b&er=3D514be703-a812-4233-8865-a9deb36392d9\" style=3D\"font-s=\r\nize:15px;color:#333333;background-color:#ffc820;font-family:Helvetica,A=\r\nrial,Sans Serif;font-weight:bold;text-align:center;text-decoration:none=\r\n;;border-radius:2px;background-color:#ffc820;;display:inline-block\"><sp=\r\nan style=3D\"padding:0px 24px;;line-height:44px;\"><!--[if mso]>&nbsp;&nb=\r\nsp;&nbsp;&nbsp;&nbsp;&nbsp;<![endif]--> REVIEW DOCUMENT <!--[if mso]>&n=\r\nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<![endif]--></span></a></td></tr></ta=\r\nble></div></td></tr></table></td></tr></table></td></tr><tr><td style=3D=\r\n\"padding:0px 24px 24px 24px;color:#000000;font-size:16px;font-family:He=\r\nlvetica,Arial,Sans Serif;background-color:white;\"><table role=3D\'presen=\r\ntation\' border=3D\'0\' cellspacing=3D\'0\' cellpadding=3D\'0\'><tr><td style=3D=\r\n\"padding-bottom:20px;\"><div style=3D\"font-family:Helvetica,Arial,Sans S=\r\nerif;font-weight:bold;line-height:18px;font-size:15px;color:#333333;\"> =\r\nLinda Propes </div><div style=3D\"font-family:Helvetica,Arial,Sans Serif=\r\n;line-height:18px;font-size:15px;color:#666666;\">linda=2Epropes@nelsonm=\r\nullins=2Ecom</div></td></tr></table><span style=3D\"font-size:15px;color=\r\n:#333333;font-family:Helvetica,Arial,Sans Serif;line-height:20px;\">Plea=\r\nse sign<br /></span><br /></td></tr><tr><td style=3D\"padding:0px 24px 1=\r\n2px 24px;background-color:#ffffff;font-family:Helvetica,Arial,Sans Seri=\r\nf;font-size:11px;color:#666666;\"><table border=3D\"0\" cellspacing=3D\"0\" =\r\ncellpadding=3D\"0\"><tbody><tr><td valign=3D\"top\" style=3D\"font-family: H=\r\nelvetica,Arial,Sans Serif; font-size: 11px; color: #666666; vertical-al=\r\nign: top;\"><div style=3D\"font-family:Helvetica,Arial,Sans Serif; font-s=\r\nize:11px; color:#666666; padding: 2px 5px 0 0;\">Powered by&#160;</div><=\r\n/td><td><img src=3D\"https://docucdn-a=2Eakamaihd=2Enet/olive/images/2=2E=\r\n62=2E0/global-assets/email-templates/email-logo=2Epng\" height=3D\"19\" al=\r\nt=3D\"Docusign\" style=3D\"border:none;\"/></td></tr></tbody></table></td><=\r\n/tr><tr><td style=3D\"padding:30px 24px 45px 24px;background-color:#EAEA=\r\nEA;\"><p style=3D\"margin-bottom:1em;font-family:Helvetica,Arial,Sans Ser=\r\nif;font-size:13px;color:#666666;line-height:18px;\"><b aria-level=3D\"3\" =\r\nrole=3D\"heading\">Do Not Share This Email</b><br/> This email contains a=\r\n secure link to Docusign=2E Please do not share this email, link, or ac=\r\ncess code with others=2E<br/></p><p style=3D\"margin-bottom:1em;font-fam=\r\nily:Helvetica,Arial,Sans Serif;font-size:13px;color:#666666;line-height=\r\n:18px;\"><b aria-level=3D\"3\" role=3D\"heading\">Alternate Signing Method</=\r\nb><br/> Visit Docusign=2Ecom, click \'Access Documents\', and enter the s=\r\necurity code:<br /> 2327F91EA81041F6AF5111FF184469BF2 </p><p style=3D\"m=\r\nargin-bottom:1em;font-family:Helvetica,Arial,Sans Serif;font-size:13px;=\r\ncolor:#666666;line-height:18px;\"><b aria-level=3D\"3\" role=3D\"heading\">A=\r\nbout Docusign</b><br/> Sign documents electronically in just minutes=2E=\r\n It\'s safe, secure, and legally binding=2E Whether you\'re in an office,=\r\n at home, on-the-go -- or even across the globe -- Docusign provides a =\r\nprofessional trusted solution for Digital Transaction Management=E2=84=A2=\r\n=2E </p><p style=3D\"margin-bottom:1em;font-family:Helvetica,Arial,Sans =\r\nSerif;font-size:13px;color:#666666;line-height:18px;\"><b aria-level=3D\"=\r\n3\" role=3D\"heading\">Questions about the Document?</b><br /> If you need=\r\n to modify the document or have questions about the details in the docu=\r\nment, please reach out to the sender by emailing them directly=2E<br />=\r\n<br /><b aria-level=3D\"3\" role=3D\"heading\">Stop receiving this email</b=\r\n><br /><a href=3D\'https://protect=2Edocusign=2Enet/report-abuse?e=3DAUt=\r\nomjpFak9GlbPL0zFFi1325r8yNqPhlYbnmNAKe-g-AUSRjju9Y7woyr6KcYO13YfAi2j_3B=\r\nlYYZkUprVq48q7UYyJXMQw29JQkaHVlRrnPHOeEIxI9c9VzRo8rM4J8ASLavWbQ7RT1nHed=\r\nxydBPXLu8qscEGZ9JtH-qvjDyvfsbvUHcG7toMDPGXoiuOJkDwXMMSsQOrTn513WUWOS3pz=\r\nlJ1T6WGlGCMciGTjixkxv-jkPZXdThq0-2j_qrQBtDB-wcbtW4HCNB3aixv522Lys4y6-5A=\r\n-NYAGAoxW92AGVPrDnDyI3z1PLOzupllqpR6WAtF-xKqLdBmE18M1Mph0fivJxudR4COuGr=\r\nH32tydD9I7zgjSlxgQOZfq-ziV78plBsJOjLHFTCY_4nvV_I7c9VhWuY56i6WYSChagPRUB=\r\nrdmPBrrEFOAB8JusocKqQ&lang=3Den\' style=3D\'color:#2463d1;\' >Report this =\r\nemail</a> or read more about <a href=3D\'https://support=2Edocusign=2Eco=\r\nm/en/guides/Declining-to-sign-DocuSign-Signer-Guide\' style=3D\'color:#24=\r\n63d1;\' >Declining to sign</a> and <a href=3D\'https://support=2Edocusign=\r\n=2Ecom/en/articles/How-do-I-manage-my-email-notifications\' style=3D\'col=\r\nor:#2463d1;\' >Managing notifications</a>=2E<br /><br /> If you have tro=\r\nuble signing, visit \"<a href=3D\'https://support=2Edocusign=2Ecom/s/arti=\r\ncles/How-do-I-sign-a-DocuSign-document-Basic-Signing?language=3Den_US&#=\r\n38;utm_campaign=3DGBL_XX_DBU_UPS_2211_SignNotificationEmailFooter&#38;u=\r\ntm_medium=3Dproduct&#38;utm_source=3Dpostsend\' style=3D\'color:#2463d1;\'=\r\n >How to Sign a Document</a>\" on our <a href=3D\'https://support=2Edocus=\r\nign=2Ecom/\' style=3D\'color:#2463d1;\' >Docusign Support Center</a>, or b=\r\necome part of the <a href=3D\'https://community=2Edocusign=2Ecom/new-mem=\r\nber-guide-142?utm_campaign=3DGBL_US_PRD_AWA_2405_CommunityCTA&#38;utm_m=\r\nedium=3Demail&#38;utm_source=3Dpostsend\' style=3D\'color:#2463d1;\' >Docu=\r\nsign Community</a> to access tips and guidance from peers=2E<br /><br /=\r\n></p><p style=3D\"margin-bottom:1em;font-family:Helvetica,Arial,Sans Ser=\r\nif;font-size:13px;color:#666666;line-height:18px;\"><a href=3D\"https://w=\r\nww=2Edocusign=2Ecom/features-and-benefits/mobile?utm_campaign=3DGBL_XX_=\r\nDBU_UPS_2211_SignNotificationEmailFooter&#38;utm_medium=3Dproduct&#38;u=\r\ntm_source=3Dpostsend\" style=3D\"color:#2463d1;\" ><img style=3D\"margin-ri=\r\nght:7px;border:none;vertical-align:middle;\" width=3D\"18\" height=3D\"18\" =\r\nsrc=3D\"https://docucdn-a=2Eakamaihd=2Enet/olive/images/2=2E62=2E0/globa=\r\nl-assets/email-templates/icon-download-app=2Epng\" alt=3D\"\" />Download t=\r\nhe Docusign App </a></p><p style=3D\"margin-bottom:1em;font-family:Helve=\r\ntica,Arial,Sans Serif;font-size:13px;color:#666666;line-height:18px;fon=\r\nt-size:10px;line-height:14px;\">This message was sent to you by Linda Pr=\r\nopes who is using the Docusign Electronic Signature Service=2E If you w=\r\nould rather not receive email from this sender you may contact the send=\r\ner with your request=2E</p></td></tr></table></td><td></td></tr></table=\r\n><span itemscope=3D\"\" itemtype=3D\"http://schema=2Eorg/EmailMessage\"><me=\r\nta itemprop=3D\"text\" content=3D\"Linda Propes sent you a document to rev=\r\niew and sign=2E\"/><span itemscope=3D\"\" itemprop=3D\"about\" itemtype=3D\"h=\r\nttp://schema=2Eorg/CreativeWork\"><span itemscope=3D\"\" itemprop=3D\"actio=\r\nn\" itemtype=3D\"http://schema=2Eorg/ViewAction\"><meta itemprop=3D\"url\" c=\r\nontent=3D\"https://na2=2Edocusign=2Enet/Signing/EmailStart=2Easpx?a=3D23=\r\n27f91e-a810-41f6-af51-11ff184469bf&etti=3D24&acct=3D7b866992-f8fe-4860-=\r\n8694-cc3914c8e26b&er=3D514be703-a812-4233-8865-a9deb36392d9\"/><meta ite=\r\nmprop=3D\"name\" content=3D\"View Documents\"/></span></span></span></body>=\r\n</html>','EnvelopeActivation=\r\n Linda Propes sent you a document to=\r\n review and sign=2E  REVIEW DOCUMENT  =\r\nLinda Propes linda=2Epropes@nelsonm=\r\nullins=2EcomPlea=\r\nse signPowered by&#160;Do Not Share This Email This email contains a=\r\n secure link to Docusign=2E Please do not share this email, link, or ac=\r\ncess code with others=2EAlternate Signing Method Visit Docusign=2Ecom, click \'Access Documents\', and enter the s=\r\necurity code: 2327F91EA81041F6AF5111FF184469BF2 A=\r\nbout Docusign Sign documents electronically in just minutes=2E=\r\n It\'s safe, secure, and legally binding=2E Whether you\'re in an office,=\r\n at home, on-the-go -- or even across the globe -- Docusign provides a =\r\nprofessional trusted solution for Digital Transaction Management=E2=84=A2=\r\n=2E Questions about the Document? If you need=\r\n to modify the document or have questions about the details in the docu=\r\nment, please reach out to the sender by emailing them directly=2E=\r\nStop receiving this emailReport this =\r\nemail or read more about Declining to sign and Managing notifications=2E If you have tro=\r\nuble signing, visit \"How to Sign a Document\" on our Docusign Support Center, or b=\r\necome part of the Docu=\r\nsign Community to access tips and guidance from peers=2EDownload t=\r\nhe Docusign App This message was sent to you by Linda Pr=\r\nopes who is using the Docusign Electronic Signature Service=2E If you w=\r\nould rather not receive email from this sender you may contact the send=\r\ner with your request=2E=\r\n',0,0,0,0,0,0,'2025-08-11 16:42:08','2025-12-09 19:27:25','2025-12-09 19:27:25','2025-12-09 19:27:25',NULL,NULL,NULL),
(608,4,'<EE077C2E-A262-49ED-A338-1304614478B9@bayfrontcapitalllc.com>',NULL,NULL,'Requested Letter of Status','brian@bayfrontcapitalllc.com','Brian Stufflebean','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"><div><div><div><span></span><meta charset=\"UTF-8\"><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br class=\"Apple-interchange-newline\"><br class=\"Apple-interchange-newline\"><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><b>CONFIDENTIALITY NOTICE / NOTICE&nbsp;OF&nbsp;NOT A REGISTERED&nbsp;BROKER/DEALER:&nbsp;</b><span style=\"font-weight: 400;\">Bayfront Capital&nbsp;LLC, nor its’ affiliates are registered as&nbsp;a Broker/Dealer, nor registered with&nbsp;FINRA. Nor does&nbsp;it provide tax or&nbsp;investment advice.&nbsp;&nbsp;Any references&nbsp;made to any transaction in any&nbsp;communication is being made as a&nbsp;business consultant.&nbsp;&nbsp;&nbsp;This is not a&nbsp;solicitation nor offer of any type and any&nbsp;reference to any proposed transaction&nbsp;of any type is void where prohibited by&nbsp;law.&nbsp;This communication&nbsp;is confidential&nbsp;and intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient, you&nbsp;may not copy, disclose, or&nbsp;distribute this message&nbsp;to anyone else;&nbsp;any such actions may be unlawful. If&nbsp;you have received this communication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the message to&nbsp;inform him or her of the&nbsp;error.</span></div>\r\n</div>\r\n\r\n<br></div></div></body></html>','Gentlemen, \r\n\r\n\r\nPer our conversation of this morning, please find attached the requested status letter. \r\n\r\n\r\n\r\n\r\n￼\r\n \r\nBest Regards, \r\n\r\n\r\nBrian C. Stufflebean, CEO\r\nBayfront Capital, LLC\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\nbrian@bayfrontcapitalllc.com\r\nwww.bayfrontcapitalllc.com\r\n      \r\n\r\n\r\n￼\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER: Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-08-11 19:06:23','2025-12-09 19:27:25','2025-12-09 19:27:25','2025-12-09 19:27:25',NULL,NULL,NULL),
(609,4,' <CH2PR16MB3431B0102843EF824F49DC3DFE28A@CH2PR16MB3431.namprd16.prod.outlook.com>',NULL,NULL,'LBC Capital Request: Near-Term & Immediate Needs','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nBrian &amp; Rick,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nThank you again for your time today. As mentioned on our call, please find attached a breakdown of</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n    (A) Total Capital Investment in Equipment to Begin Production ($3,008,947); comprised of:</div>\r\n<ol style=\"margin-top: 0px; margin-bottom: 0px; margin-left: 40px;\" data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:false,&quot;orderedStyleType&quot;:15}\" start=\"1\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); list-style-type: &quot;(i) &quot;;\">\r\n<div role=\"presentation\" class=\"elementToProof\">Amount remaining on original equipment invoice ($449,471)</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); list-style-type: &quot;(ii) &quot;;\">\r\n<div role=\"presentation\" class=\"elementToProof\">Additional machinery &amp; operational equipment ($1,930,465)</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); list-style-type: &quot;(iii) &quot;;\">\r\n<div role=\"presentation\" class=\"elementToProof\">Shipping expenses &amp; commissioning labor ($629,011)</div>\r\n</li></ol>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n    (B) Total Capital Request for the building ($3,561,931); comprised of:</div>\r\n<ol style=\"margin-top: 0px; margin-bottom: 0px; margin-left: 40px;\" data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:false,&quot;orderedStyleType&quot;:15}\" start=\"1\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); list-style-type: &quot;(i) &quot;;\">\r\n<div role=\"presentation\" class=\"elementToProof\">Amount due upon signing for the new building to secure the lease ($806,931)</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); list-style-type: &quot;(ii) &quot;;\">\r\n<div role=\"presentation\" class=\"elementToProof\">Building &amp; site modifications needed to upgrade facility to meet Foreign Trade Zone (FTZ) Requirements ($2,755,000)</div>\r\n</li></ol>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<b>With a total estimated capital infusion of $6,570,878</b>($3,008,947 of Equipment + $3,561,931 to secure the building and make FTZ required site modifications); we will have sufficient funding to quickly execute on and accomplish all of our near-term objectives\r\n required to expedite our operational readiness and begin receiving customer deposits within 45-90 days from today.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nPlease let me know if you have any questions.&nbsp;I will be circling back around over the next couple days with the remaining diligence items requested from our call as available.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nRespectfully,&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" id=\"Signature\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"8\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWA19ea2e4a-e58c-f523-65f6-67cf00529939\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">Jarrett@</a>lithiumbatterycompany<a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"9\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWA7a557019-44ec-e9dd-7ac8-33c609ee87c8\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">.com</a></u></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"10\" data-auth=\"NotApplicable\" title=\"https://lithiumbatterycompany.com/\" class=\"OWAAutoLink\" id=\"OWAc8867325-b128-7a0e-b7cd-ca2ce1ab261b\" href=\"https://lithiumbatterycompany.com/\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n</body>\r\n</html>\r\n','Brian & Rick,\r\n\r\nThank you again for your time today. As mentioned on our call, please find attached a breakdown of\r\n    (A) Total Capital Investment in Equipment to Begin Production ($3,008,947); comprised of:\r\n\r\n  1.\r\nAmount remaining on original equipment invoice ($449,471)\r\n  2.\r\nAdditional machinery & operational equipment ($1,930,465)\r\n  3.\r\nShipping expenses & commissioning labor ($629,011)\r\n\r\n    (B) Total Capital Request for the building ($3,561,931); comprised of:\r\n\r\n  1.\r\nAmount due upon signing for the new building to secure the lease ($806,931)\r\n  2.\r\nBuilding & site modifications needed to upgrade facility to meet Foreign Trade Zone (FTZ) Requirements ($2,755,000)\r\n\r\nWith a total estimated capital infusion of $6,570,878($3,008,947 of Equipment + $3,561,931 to secure the building and make FTZ required site modifications); we will have sufficient funding to quickly execute on and accomplish all of our near-term objectives required to expedite our operational readiness and begin receiving customer deposits within 45-90 days from today.\r\n\r\nPlease let me know if you have any questions. I will be circling back around over the next couple days with the remaining diligence items requested from our call as available.\r\n\r\nRespectfully,\r\n\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n',0,0,0,0,0,0,'2025-08-12 00:14:12','2025-12-09 19:27:25','2025-12-09 19:27:25','2025-12-09 19:27:25',NULL,NULL,NULL),
(610,4,'<b24810959ee34678a3018b9db83ea23b@MW5PR84MB1985.NAMPRD84.PROD.OUTLOOK.COM>',NULL,NULL,'Automatic reply: Hi Gary!','gary.fudge@hp.com','\"Fudge, Gary\"','<html xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Segoe UI\";\r\n	panose-1:2 11 5 2 4 2 4 2 2 3;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle17\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Segoe UI\",sans-serif;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\" style=\"text-autospace:none\"><span style=\"font-size:8.0pt;font-family:&quot;Segoe UI&quot;,sans-serif\">Hello,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-autospace:none\"><span style=\"font-size:8.0pt;font-family:&quot;Segoe UI&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-autospace:none\"><span style=\"font-size:8.0pt;font-family:&quot;Segoe UI&quot;,sans-serif\">I\'m currently out of the office on vacation from Thursday June 5th thru Monday June 9th...returning Tuesday the 10th.&nbsp; I will have limited access/visibility\r\n to email then so if you have something urgent, please call my mobile at 678-654-6734<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-autospace:none\"><span style=\"font-size:8.0pt;font-family:&quot;Segoe UI&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-autospace:none\"><span style=\"font-size:8.0pt;font-family:&quot;Segoe UI&quot;,sans-serif\">Best Regards<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-autospace:none\"><span style=\"font-size:8.0pt;font-family:&quot;Segoe UI&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-autospace:none\"><span style=\"font-size:8.0pt;font-family:&quot;Segoe UI&quot;,sans-serif\">Gary<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-autospace:none\"><span style=\"font-size:8.0pt;font-family:&quot;Segoe UI&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n</body>\r\n</html>','Hello,\r\n\r\nI\'m currently out of the office on vacation from Thursday June 5th thru Monday June 9th...returning Tuesday the 10th.  I will have limited access/visibility to email then so if you have something urgent, please call my mobile at 678-654-6734\r\n\r\nBest Regards\r\n\r\nGary',0,0,0,0,0,0,'2025-08-12 18:09:47','2025-12-09 19:27:26','2025-12-09 19:27:26','2025-12-09 19:27:26',NULL,NULL,NULL),
(611,4,'<947055095.184175.1755022528823@app128017.mia201.service-now.com>',NULL,NULL,'Your incident INC-GSAFSD20147835 requires a response','fsdsupport@gsa.gov','\"Federal Service Desk (FSD)\"','<html><head></head><body><p></p>\r\n<style type=\"text/css\">\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n</style>\r\n<div style=\"margin: 0 auto !important;\" align=\"center\">\r\n<table class=\"w100\" style=\"width: 600px; background-color: #f7f7f9; margin: 0 auto !important; padding: 0px;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" bgcolor=\"#F7F7F9\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 13px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"background-color: #d8ecff;\" height=\"32\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"40\" style=\"width: 53.1077%;\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td height=\"50\"><img src=\"cid:sys_attachment.dosys_idbe2e8d8d1bda2a50205e8736624bcb90@SNC.45f23ab7c2211296\" width=\"auto\" height=\"50\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr style=\"background-color: #d8ecff;\" height=\"22\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr><!-- Left-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- CONTAINER -->\r\n<td width=\"564\">\r\n<table class=\"w100\" style=\"margin: 0px; padding: 0px; box-shadow: 0px 2px 10px rgba(23, 40, 52, 0.08);\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody><!-- Main Container -->\r\n<tr>\r\n<td class=\"pad-sides-20\" style=\"border-radius: 6px; text-align: left; background-color: #ffffff; padding: 24px 24px 24px 24px; color: #454545;\" align=\"center\">\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-bottom: 10px;\"><strong>This is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD)</strong> which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.</div>\r\n</div>\r\n<hr>\r\n<p></p><div style=\"font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif; line-height: 26px; font-size: 16px;\">\r\n<div style=\"line-height: 26px; padding-bottom: 24px; text-align: left; color: #454545;\">\r\n<h4 style=\"margin-top: 14pt; line-height: 32px; margin-bottom: 4pt; text-align: left; font-size: 17.52pt;\"><strong> Reminder: Please Review Your Incident</strong></h4>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left; font-size: 12pt;\">Hello <strong>rick@mavrix.one,</strong></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left;\">Your incident <strong><span style=\"font-size: 12pt;\">INC-GSAFSD20147835 </span></strong><span style=\"font-size: 12pt;\"> is currently on hold pending your response.</span></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 6pt; text-align: left;\"><span style=\"font-size: 12pt;\">To review the incident details and submit your reply, please use the link below:<br></span><strong><span style=\"font-size: 12pt;\"></span></strong></p><div style=\"margin-top: 8px;\"><strong><a href=\"https://www.fsd.gov/gsafsd_sp?id=incident_form&amp;table=incident&amp;sys_id=ecb56edf8707a690efb1fe68cebb3551\" style=\"background-color: #70E17B;color: #162E51;font-size: 16px;text-decoration: none; border-radius: 4px;-webkit-border-radius: 4px;-moz-border-radius: 4px;display: inline-block;padding: 10px 32px 10px 32px;\">View incident</a></strong></div><span style=\"font-size: 12pt;\"> <br></span><strong><span style=\"font-size: 12pt;\">Please note:</span></strong><span style=\"font-size: 12pt;\"> If we do not receive a response 2025-08-12 20:00:00 PDT<strong>,</strong> the incident will be marked as resolved.</span><p></p>\r\n<span style=\"font-size: 12pt;\">Thank you,</span><span style=\"font-size: 12pt;\"><br></span><strong><span style=\"font-size: 12pt;\">FSD.gov Team</span></strong></div>\r\n</div><p></p>\r\n<hr>\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-top: 10px;\"><strong>Don\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times!</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0036075\" target=\"_blank\" rel=\"noopener\">Invite others </a>to help manage your registration. <strong>DO NOT</strong> attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. <strong>Submit all entity validation documentation from your Entity Workspace in SAM.gov.</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0057690\" target=\"_blank\" rel=\"noopener\">Learn how to add documentation</a> to your entity validation case.</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- END CONTAINER --> <!-- Right-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"background-color: #f7f7f9;\" align=\"center\" height=\"40\"></td>\r\n</tr>\r\n<!-- Footer started -->\r\n<tr style=\"background-color: #d8ecff;\">\r\n<td>\r\n<table style=\"background-color: #d8ecff;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td height=\"30\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 14px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_id7d465e4a1b3ca2103943eac1604bcbb6@SNC.5d09134664cb1716\" width=\"120\" height=\"40\" title=\"Cloud 4.png\" alt=\"Cloud\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"30\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff;\" align=\"center\" valign=\"top\" height=\"30\"><img src=\"cid:sys_attachment.dosys_idb04e85cd1bda2a50205e8736624bcbfa@SNC.a8c88f27b7a3b121\" width=\"auto\" height=\"30\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_idb1a5160a1b3ca2103943eac1604bcbdc@SNC.2ab77b8ef63d9c37\" width=\"140\" height=\"40\" title=\"Cloud 3.png\" alt=\"Cloud\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff; color: #ffffff;\">\r\n<table style=\"color: #ffffff;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr align=\"center\">\r\n<td><span id=\"templateAddress\" class=\"footer\" style=\"color: #162e51; font-size: 14px; line-height: 18px; text-align: center; margin: 0 !important;\"> GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td height=\"10\"></td>\r\n</tr>\r\n<tr>\r\n<td height=\"120px\"><img style=\"height: 120px; width: 100%;\" src=\"cid:sys_attachment.dosys_id7555160a1b3ca2103943eac1604bcb39@SNC.193a9979e0e3c56d\" height=\"120\" title=\"Jefferson Light Blue 2.png\" alt=\"Jefferson Memorial\"><span id=\"mce_26\"></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<!-- Footer end--></tbody>\r\n</table>\r\n</div><div>&nbsp;</div><div style=\"display:inline\">Ref:MSG1746521_u5wQABp0EVHiXCJkt5Ki</div></body></html>','\r\n\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD) which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.\r\n\r\n\r\n\r\n\r\n Reminder: Please Review Your Incident\r\nHello rick@mavrix.one,\r\nYour incident INC-GSAFSD20147835  is currently on hold pending your response.\r\nTo review the incident details and submit your reply, please use the link below:View incident Please note: If we do not receive a response 2025-08-12 20:00:00 PDT, the incident will be marked as resolved.\r\nThank you,FSD.gov Team\r\n\r\n\r\n\r\nDon\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times! Invite others to help manage your registration. DO NOT attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. Submit all entity validation documentation from your Entity Workspace in SAM.gov. Learn how to add documentation to your entity validation case.\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;Ref:MSG1746521_u5wQABp0EVHiXCJkt5Ki',0,0,0,0,0,0,'2025-08-12 18:15:28','2025-12-09 19:27:26','2025-12-09 19:27:26','2025-12-09 19:27:26',NULL,NULL,NULL),
(612,4,'<D56E0A86-98A8-483F-9E49-E32ABEE2BE77@bayfrontcapitalllc.com>',NULL,NULL,'Re: 3900 W Coachman Blvd Lease','brian@bayfrontcapitalllc.com','Brian Stufflebean','\r\n--Apple-Mail=_E16DD5E8-9458-44C5-93F4-1B71621F7DD3\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Type: text/html;\r\n	charset=utf-8\r\n\r\n<html><head><meta http-equiv=3D\"content-type\" content=3D\"text/html; =\r\ncharset=3Dutf-8\"></head><body style=3D\"overflow-wrap: break-word; =\r\n-webkit-nbsp-mode: space; line-break: after-white-space;\"><span =\r\nstyle=3D\"font-size: 14px;\">Nathan,&nbsp;</span><div><span =\r\nstyle=3D\"font-size: 14px;\"><br></span></div><div><span style=3D\"font-size:=\r\n 14px;\">Will you please send me a copy of the proposed =\r\nlease.&nbsp;</span></div><div><br></div><div><br =\r\nid=3D\"lineBreakAtBeginningOfMessage\"><div>\r\n<meta charset=3D\"UTF-8\"><div style=3D\"font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; letter-spacing: =\r\nnormal; text-align: start; text-indent: 0px; text-transform: none; =\r\nwhite-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\">Best Regards,&nbsp;<br><br><br>Brian C. Stufflebean, =\r\nCEO<br><b>Bayfront Capital, LLC</b><br>(941)545-4153 =\r\nDirect<br>(866)896-2423 =\r\nFax<br>brian@bayfrontcapitalllc.com<br>www.bayfrontcapitalllc.com<br>&nbsp=\r\n;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br><br></div><span style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"></span><br class=3D\"Apple-interchange-newline\" style=3D\"caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0); font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"><span style=3D\"caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); =\r\nfont-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"></span><span><img alt=3D\"PastedGraphic-3.tiff\" =\r\nsrc=3D\"cid:1316E71A-4E09-4379-B53C-D6EB7DA3C430\"></span><meta =\r\ncharset=3D\"UTF-8\"><div style=3D\"font-family: Helvetica; font-size: 12px; =\r\nfont-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br =\r\nclass=3D\"Apple-interchange-newline\"><br =\r\nclass=3D\"Apple-interchange-newline\"><br></span></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><span><br></span></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; letter-spacing: normal; text-align: start; =\r\ntext-indent: 0px; text-transform: none; white-space: normal; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><b>CONFIDENTIALITY NOTICE / NOTICE&nbsp;OF&nbsp;NOT A =\r\nREGISTERED&nbsp;BROKER/DEALER:</b><span style=3D\"font-weight: =\r\n400;\">&nbsp;Bayfront Capital&nbsp;LLC, nor its=E2=80=99 affiliates are =\r\nregistered as&nbsp;a Broker/Dealer, nor registered with&nbsp;FINRA. Nor =\r\ndoes&nbsp;it provide tax or&nbsp;investment advice.&nbsp;&nbsp;Any =\r\nreferences&nbsp;made to any transaction in any&nbsp;communication is =\r\nbeing made as a&nbsp;business consultant.&nbsp;&nbsp;&nbsp;This is not =\r\na&nbsp;solicitation nor offer of any type and any&nbsp;reference to any =\r\nproposed transaction&nbsp;of any type is void where prohibited =\r\nby&nbsp;law.&nbsp;This communication&nbsp;is confidential&nbsp;and =\r\nintended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not =\r\nthe intended&nbsp;recipient, you&nbsp;may not copy, disclose, =\r\nor&nbsp;distribute this message&nbsp;to anyone else;&nbsp;any such =\r\nactions may be unlawful. If&nbsp;you have received this =\r\ncommunication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the =\r\nmessage to&nbsp;inform him or her of the&nbsp;error.</span></div>\r\n</div>\r\n<div><br><blockquote type=3D\"cite\"><div>On Aug 12, 2025, at 2:34=E2=80=AFP=\r\nM, Nathan Staron &lt;Nathan@lithiumbatterycompany.com&gt; =\r\nwrote:</div><br class=3D\"Apple-interchange-newline\"><div><div =\r\ndir=3D\"ltr\"><div>Hi Brian,</div><div><br></div><div>I wanted to put this =\r\non your radar with our landlord. LBC set a target date of today for the =\r\nresolution with the lease and our landlord. We provided them with your =\r\nLOI yesterday, but they internally sent an email (between brokers) =\r\nvoicing their frustration. They are specifically looking for \"concrete =\r\ndates\" when we could expect funding to satisfy holding the lease for =\r\nus.</div><div><br></div><div>Would you be able to provide us with any =\r\ninformation that we could pass off to them about the capital investment =\r\ninto LBC so we can buy some additional =\r\ntime?</div><div><br></div><div><div dir=3D\"ltr\" class=3D\"gmail_signature\" =\r\ndata-smartmail=3D\"gmail_signature\"><div =\r\ndir=3D\"ltr\"><div><br></div><div><table cellpadding=3D\"0\" cellspacing=3D\"0\"=\r\n border=3D\"0\" style=3D\"border: medium; border-collapse: collapse; =\r\nfont-size: 10px; font-family: Inter, sans-serif;\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;line-height:16px\"><table =\r\ncellpadding=3D\"0\" cellspacing=3D\"0\" style=3D\"border:none\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td valign=3D\"top\" =\r\nalign=3D\"left\" style=3D\"border:1px solid =\r\nrgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px =\r\n8px 8px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://lithiumbatterycompany.com/\" target=3D\"_blank\"><img =\r\nalt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/web-icon=\r\n.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.instagram.com/lithiumbatteryco/\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/insta-ic=\r\non.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.linkedin.com/company/the-lithium-battery-company\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/linkedin=\r\n-icon.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.facebook.com/LithiumBatteryCompany/\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/facebook=\r\n-icon.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.youtube.com/c/LithiumBatteryCompany\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/youtube-=\r\nicon.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr></tbody></table></td><td =\r\nwidth=3D\"8\" =\r\nstyle=3D\"border:none;border-collapse:collapse;display:revert\">&nbsp;</td><=\r\ntd valign=3D\"top\" align=3D\"left\" style=3D\"border:1px solid =\r\nrgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\">=\r\n<table width=3D\"100%\" border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td align=3D\"left\" =\r\nvalign=3D\"middle\" style=3D\"border:none;border-collapse:collapse\"><table =\r\nwidth=3D\"100%\" border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><a =\r\nhref=3D\"https://lithiumbatterycompany.com/\" target=3D\"_blank\"><img =\r\nsrc=3D\"https://app.customesignature.com/upload/signature/11122/11122.png\" =\r\nwidth=3D\"170\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:0px 0px =\r\n10px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:15px 0px =\r\n0px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td align=3D\"left\" =\r\nvalign=3D\"middle\" style=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:20px\">NATHAN A. =\r\nSTARON</span></td><td align=3D\"left\" valign=3D\"middle\" =\r\nstyle=3D\"border:none;border-collapse:collapse;padding-left:5px\"><img =\r\nwidth=3D\"15\" height=3D\"15\" =\r\nsrc=3D\"https://app.customesignature.com/images/verify.gif\" =\r\nstyle=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-size:12px\">Founder / =\r\nCEO</span></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Lithium Battery =\r\nCompany</span></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Cell Phone</span>&nbsp;<a =\r\nhref=3D\"tel:813-504-0074\" style=3D\"font-size: 12px;\" =\r\ntarget=3D\"_blank\">813-504-0074</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Phone</span>&nbsp;<a =\r\nhref=3D\"tel:844-GET-LITHIUM\" style=3D\"font-size: 12px;\" =\r\ntarget=3D\"_blank\">844-GET-LITHIUM</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><a =\r\nhref=3D\"mailto:Nathan@lithiumbatterycompany.com\" style=3D\"\" =\r\ntarget=3D\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px =\r\n0px\"><table cellpadding=3D\"0\" cellspacing=3D\"0\" border=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;display:flex;font-weight:bol=\r\nd\"><a href=3D\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" =\r\nstyle=3D\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px =\r\n15px;text-align:center;font-size:12px;line-height:14px;display:inline-bloc=\r\nk\" target=3D\"_blank\">Schedule A =\r\nZoom</a></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><table cellpadding=3D\"0\" =\r\ncellspacing=3D\"0\" border=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"></tr></tbody></table></td><=\r\n/tr></tbody></table></td><td align=3D\"left\" valign=3D\"middle\" =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:0px 0px 0px =\r\n15px;display:revert\"><div style=3D\"max-height:0px;overflow:visible\"><img =\r\nsrc=3D\"https://app.customesignature.com/upload/signature/profile/173870830=\r\n7-11122.jpg\" width=3D\"140\" style=3D\"display:block;border-radius:10px\" =\r\ndata-unique-identifier=3D\"\"></div><img =\r\nsrc=3D\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gi=\r\nf\" name=3D\"SignatureSanitizer_profile_annimation_gif\" width=3D\"140\" =\r\nstyle=3D\"display:block;border-radius:10px\" =\r\ndata-unique-identifier=3D\"\"></td></tr></tbody></table></td></tr></tbody></=\r\ntable></td></tr><tr style=3D\"border:none;border-collapse:collapse\"><td =\r\nalign=3D\"left\" valign=3D\"top\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><table border=3D\"0\" =\r\ncellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"></tr></tbody></table></td><=\r\n/tr><tr style=3D\"border:none;border-collapse:collapse\"></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:10px 0px =\r\n0px\"><a></a></td></tr></tbody></table></div></div></div></div></div>\r\n<span id=3D\"cid:f_me8vli4x0\">&lt;RE_ LBC Coachman Lease Follow =\r\nUp.eml&gt;</span></div></blockquote></div><br></div></body></html>=\r\n\r\n--Apple-Mail=_E16DD5E8-9458-44C5-93F4-1B71621F7DD3\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=PastedGraphic-3.tiff\r\nContent-Type: image/tiff;\r\n	name=\"PastedGraphic-3.tiff\"\r\nContent-Id: <1316E71A-4E09-4379-B53C-D6EB7DA3C430>\r\n\r\n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\r\nZmlGSQAAACgAAAR8cGxQTAAAACwAAASkcnVSVQAAACIAAATQYXJFRwAAACYAAATyZW5VUwAAACYA\r\nAAUYZGFESwAAAC4AAAU+AFYBYQBlAG8AYgBlAGMAbgD9ACAAUgBHAEIAIABwAHIAbwBmAGkAbABH\r\nAGUAbgBlAHIAaQENAGsAaQAgAFIARwBCACAAcAByAG8AZgBpAGwAUABlAHIAZgBpAGwAIABSAEcA\r\nQgAgAGcAZQBuAOgAcgBpAGMAUABlAHIAZgBpAGwAIABSAEcAQgAgAEcAZQBuAOkAcgBpAGMAbwQX\r\nBDAEMwQwBDsETAQ9BDgEOQAgBD8EQAQ+BEQEMAQ5BDsAIABSAEcAQgBQAHIAbwBmAGkAbAAgAGcA\r\n6QBuAOkAcgBpAHEAdQBlACAAUgBWAEKQGnUoACAAUgBHAEIAIIJyX2ljz4/wAFAAcgBvAGYAaQBs\r\nAG8AIABSAEcAQgAgAGcAZQBuAGUAcgBpAGMAbwBHAGUAbgBlAHIAaQBzAGsAIABSAEcAQgAtAHAA\r\ncgBvAGYAaQBsx3y8GAAgAFIARwBCACDVBLhc0wzHfABPAGIAZQBjAG4A/QAgAFIARwBCACAAcABy\r\nAG8AZgBpAGwF5AXoBdUF5AXZBdwAIABSAEcAQgAgBdsF3AXcBdkAQQBsAGwAZwBlAG0AZQBpAG4A\r\nZQBzACAAUgBHAEIALQBQAHIAbwBmAGkAbADBAGwAdABhAGwA4QBuAG8AcwAgAFIARwBCACAAcABy\r\nAG8AZgBpAGxmbpAaACAAUgBHAEIAIGPPj/Blh072TgCCLAAgAFIARwBCACAw1zDtMNUwoTCkMOsA\r\nUAByAG8AZgBpAGwAIABSAEcAQgAgAGcAZQBuAGUAcgBpAGMDkwO1A70DuQO6A8wAIAPAA8EDvwPG\r\nA68DuwAgAFIARwBCAFAAZQByAGYAaQBsACAAUgBHAEIAIABnAGUAbgDpAHIAaQBjAG8AQQBsAGcA\r\nZQBtAGUAZQBuACAAUgBHAEIALQBwAHIAbwBmAGkAZQBsDkIOGw4jDkQOHw4lDkwAIABSAEcAQgAg\r\nDhcOMQ5IDicORA4bAEcAZQBuAGUAbAAgAFIARwBCACAAUAByAG8AZgBpAGwAaQBZAGwAZQBpAG4A\r\nZQBuACAAUgBHAEIALQBwAHIAbwBmAGkAaQBsAGkAVQBuAGkAdwBlAHIAcwBhAGwAbgB5ACAAcABy\r\nAG8AZgBpAGwAIABSAEcAQgQeBDEESQQ4BDkAIAQ/BEAEPgREBDgEOwRMACAAUgBHAEIGRQZEBkEA\r\nIAYqBjkGMQZKBkEAIABSAEcAQgAgBicGRAY5BicGRQBHAGUAbgBlAHIAaQBjACAAUgBHAEIAIABQ\r\nAHIAbwBmAGkAbABlAEcAZQBuAGUAcgBlAGwAIABSAEcAQgAtAGIAZQBzAGsAcgBpAHYAZQBsAHMA\r\nZXRleHQAAAAAQ29weXJpZ2h0IDIwMDcgQXBwbGUgSW5jLiwgYWxsIHJpZ2h0cyByZXNlcnZlZC4A\r\nWFlaIAAAAAAAAPNSAAEAAAABFs9YWVogAAAAAAAAdE0AAD3uAAAD0FhZWiAAAAAAAABadQAArHMA\r\nABc0WFlaIAAAAAAAACgaAAAVnwAAuDZjdXJ2AAAAAAAAAAEBzQAAc2YzMgAAAAAAAQxCAAAF3v//\r\n8yYAAAeSAAD9kf//+6L///2jAAAD3AAAwGw=\r\n--Apple-Mail=_E16DD5E8-9458-44C5-93F4-1B71621F7DD3--','Nathan, \r\n\r\nWill you please send me a copy of the proposed lease. \r\n\r\n\r\nBest Regards, \r\n\r\n\r\nBrian C. Stufflebean, CEO\r\nBayfront Capital, LLC\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\nbrian@bayfrontcapitalllc.com\r\nwww.bayfrontcapitalllc.com\r\n      \r\n\r\n\r\n￼\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER: Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.\r\n\r\n> On Aug 12, 2025, at 2:34 PM, Nathan Staron <Nathan@lithiumbatterycompany.com> wrote:\r\n> \r\n> Hi Brian,\r\n> \r\n> I wanted to put this on your radar with our landlord. LBC set a target date of today for the resolution with the lease and our landlord. We provided them with your LOI yesterday, but they internally sent an email (between brokers) voicing their frustration. They are specifically looking for \"concrete dates\" when we could expect funding to satisfy holding the lease for us.\r\n> \r\n> Would you be able to provide us with any information that we could pass off to them about the capital investment into LBC so we can buy some additional time?\r\n> \r\n> \r\n>  <https://lithiumbatterycompany.com/>\r\n>  <https://www.instagram.com/lithiumbatteryco/>\r\n>  <https://www.linkedin.com/company/the-lithium-battery-company>\r\n>  <https://www.facebook.com/LithiumBatteryCompany/>\r\n>  <https://www.youtube.com/c/LithiumBatteryCompany>	 	\r\n>  <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON	\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074 <tel:813-504-0074>\r\n> Phone 844-GET-LITHIUM <tel:844-GET-LITHIUM>\r\n> Nathan@lithiumbatterycompany.com <mailto:Nathan@lithiumbatterycompany.com>\r\n> Schedule A Zoom\r\n>  <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n> \r\n> <RE_ LBC Coachman Lease Follow Up.eml>',0,0,0,0,0,0,'2025-08-12 18:51:32','2025-12-09 19:27:27','2025-12-09 19:27:27','2025-12-09 19:27:27',NULL,NULL,NULL),
(613,4,'<CAGOCFXiOYNRT_WTG+e-UWmZr+4vL6-+5yjmCpAWY-MJt3ZUD1w@mail.gmail.com>',NULL,NULL,'Re: 3900 W Coachman Blvd Lease','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Brian, </div><div><br></div><div>Attached are the lease agreement, SNDA, and Tennant Improvement documents.  We had our LBC attorneys at Carlton Fields work on the lease, and this was the final draft that was accepted.  </div><div><br></div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Aug 12, 2025 at 2:51 PM Brian Stufflebean &lt;<a href=\"mailto:brian@bayfrontcapitalllc.com\">brian@bayfrontcapitalllc.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div><span style=\"font-size:14px\">Nathan, </span><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Will you please send me a copy of the proposed lease. </span></div><div><br></div><div><br id=\"m_-8108334925663353451lineBreakAtBeginningOfMessage\"><div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\">Best Regards, <br><br><br>Brian C. Stufflebean, CEO<br><b>Bayfront Capital, LLC</b><br>(941)545-4153 Direct<br>(866)896-2423 Fax<br><a href=\"mailto:brian@bayfrontcapitalllc.com\" target=\"_blank\">brian@bayfrontcapitalllc.com</a><br><a href=\"http://www.bayfrontcapitalllc.com\" target=\"_blank\">www.bayfrontcapitalllc.com</a><br>      <br><br></div><span style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"></span><br style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"><span style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"></span><span><img alt=\"PastedGraphic-3.tiff\" src=\"cid:ii_1989fa2e6b2c58e0061\"></span><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span><br><br><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><span><br></span></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><b>CONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER:</b><span style=\"font-weight:400\"> Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.</span></div>\r\n</div>\r\n<div><br><blockquote type=\"cite\"><div>On Aug 12, 2025, at 2:34 PM, Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:</div><br><div><div dir=\"ltr\"><div>Hi Brian,</div><div><br></div><div>I wanted to put this on your radar with our landlord. LBC set a target date of today for the resolution with the lease and our landlord. We provided them with your LOI yesterday, but they internally sent an email (between brokers) voicing their frustration. They are specifically looking for &quot;concrete dates&quot; when we could expect funding to satisfy holding the lease for us.</div><div><br></div><div>Would you be able to provide us with any information that we could pass off to them about the capital investment into LBC so we can buy some additional time?</div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_-8108334925663353451_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div>\r\n<span id=\"m_-8108334925663353451cid:f_me8vli4x0\">&lt;RE_ LBC Coachman Lease Follow Up.eml&gt;</span></div></blockquote></div><br></div></div></blockquote></div>','Brian,\r\n\r\nAttached are the lease agreement, SNDA, and Tennant Improvement documents.\r\nWe had our LBC attorneys at Carlton Fields work on the lease, and this was\r\nthe final draft that was accepted.\r\n\r\n\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Tue, Aug 12, 2025 at 2:51 PM Brian Stufflebean <\r\nbrian@bayfrontcapitalllc.com> wrote:\r\n\r\n> Nathan,\r\n>\r\n> Will you please send me a copy of the proposed lease.\r\n>\r\n>\r\n> Best Regards,\r\n>\r\n>\r\n> Brian C. Stufflebean, CEO\r\n> *Bayfront Capital, LLC*\r\n> (941)545-4153 Direct\r\n> (866)896-2423 Fax\r\n> brian@bayfrontcapitalllc.com\r\n> www.bayfrontcapitalllc.com\r\n>\r\n>\r\n>\r\n> [image: PastedGraphic-3.tiff]\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n> *CONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER:* Bayfront\r\n> Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor\r\n> registered with FINRA. Nor does it provide tax or investment advice.  Any\r\n> references made to any transaction in any communication is being made as\r\n> a business consultant.   This is not a solicitation nor offer of any type\r\n> and any reference to any proposed transaction of any type is void where\r\n> prohibited by law. This communication is confidential and intended only for\r\n> the intended recipient.  If you are not the intended recipient, you may not\r\n> copy, disclose, or distribute this message to anyone else; any such actions\r\n> may be unlawful. If you have received this communication in error, please\r\n> contact the sender of the message to inform him or her of the error.\r\n>\r\n> On Aug 12, 2025, at 2:34 PM, Nathan Staron <\r\n> Nathan@lithiumbatterycompany.com> wrote:\r\n>\r\n> Hi Brian,\r\n>\r\n> I wanted to put this on your radar with our landlord. LBC set a target\r\n> date of today for the resolution with the lease and our landlord. We\r\n> provided them with your LOI yesterday, but they internally sent an email\r\n> (between brokers) voicing their frustration. They are specifically looking\r\n> for \"concrete dates\" when we could expect funding to satisfy holding the\r\n> lease for us.\r\n>\r\n> Would you be able to provide us with any information that we could pass\r\n> off to them about the capital investment into LBC so we can buy some\r\n> additional time?\r\n>\r\n>\r\n> <https://lithiumbatterycompany.com/>\r\n> <https://www.instagram.com/lithiumbatteryco/>\r\n> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n> <https://www.facebook.com/LithiumBatteryCompany/>\r\n> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n> <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074\r\n> Phone 844-GET-LITHIUM\r\n> Nathan@lithiumbatterycompany.com\r\n> Schedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>\r\n> <RE_ LBC Coachman Lease Follow Up.eml>\r\n>\r\n>\r\n>',0,0,0,0,0,0,'2025-08-12 18:58:51','2025-12-09 19:27:28','2025-12-09 19:27:28','2025-12-09 19:27:28',NULL,NULL,NULL),
(614,4,'<MW5PR84MB1985882B5D0FA4227228CAD5FB2BA@MW5PR84MB1985.NAMPRD84.PROD.OUTLOOK.COM>',NULL,NULL,'RE: Hi Gary!','gary.fudge@hp.com','\"Fudge, Gary\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Forma DJR Display\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n@font-face\r\n	{font-family:\"Forma DJR Micro\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\nspan.EmailStyle18\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Hello Rick…good talking with you today…sorry for the confusion…looks like I had your email as\r\n<a href=\"mailto:rick@mavrix1.com\">rick@mavrix1.com</a><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">I’m resending the emails to your correct email above.&nbsp; I’m available as needed…just call my mobile number…it is the best way to reach me for the next couple of days.&nbsp; I’ll be back in the office on Thursday.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">3D Print - Enterprise Account Manager – US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">|</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black;mso-ligatures:standardcontextual\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_1248123430\" src=\"cid:image001.png@01DC0B8A.2D1EAE10\" alt=\"image001.png\"><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Tuesday, August 12, 2025 12:09 PM<br>\r\n<b>To:</b> Fudge, Gary &lt;gary.fudge@hp.com&gt;<br>\r\n<b>Subject:</b> Hi Gary!<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:red\">CAUTION: External Email\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Please use this email address.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<div id=\"bloop_sign_1755022097049051136\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;\r\n<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"84\" height=\"15\" style=\"width:.875in;height:.1597in\" id=\"Picture_x0020_1\" src=\"cid:image002.png@01DC0B8A.2D1EAE10\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"http://mavrix1.com\">mavrix1.com</a><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Hello Rick…good talking with you today…sorry for the confusion…looks like I had your email as rick@mavrix1.com<mailto:rick@mavrix1.com>\r\n\r\nI’m resending the emails to your correct email above.  I’m available as needed…just call my mobile number…it is the best way to reach me for the next couple of days.  I’ll be back in the office on Thursday.\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager – US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, August 12, 2025 12:09 PM\r\nTo: Fudge, Gary <gary.fudge@hp.com>\r\nSubject: Hi Gary!\r\n\r\nCAUTION: External Email\r\nPlease use this email address.\r\nThanks\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:image002.png@01DC0B8A.2D1EAE10]\r\nmavrix1.com<http://mavrix1.com>\r\n\r\n',0,0,0,0,0,0,'2025-08-12 19:08:28','2025-12-09 19:27:28','2025-12-09 19:27:28','2025-12-09 19:27:28',NULL,NULL,NULL),
(615,4,'<MW5PR84MB19855A8D1C3D2F62BA40BC42FB2BA@MW5PR84MB1985.NAMPRD84.PROD.OUTLOOK.COM>',NULL,NULL,'FW: 5600 Budgetary Quote','gary.fudge@hp.com','\"Fudge, Gary\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Forma DJR Display\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n@font-face\r\n	{font-family:\"Forma DJR Micro\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:#467886;\r\n	text-decoration:underline;}\r\nspan.EmailStyle19\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Hello Rick<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">See below per the previous email&#8230;please respond back so I know you are getting these now.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Thanks,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager &#8211; US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\"><span style=\"color:blue\">Gary.Fudge</span><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:blue\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black;mso-ligatures:none\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_1425590809\" src=\"cid:image001.png@01DC0129.75A29B30\" alt=\"image001.png\"></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\"> Fudge, Gary\r\n<br>\r\n<b>Sent:</b> Wednesday, July 30, 2025 6:37 AM<br>\r\n<b>To:</b> Rick@mavrix.1<br>\r\n<b>Subject:</b> 5600 Budgetary Quote<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Good morning Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Good talking with you briefly late yesterday.&nbsp; As promised, attached is a budgetary quote for a 5600 system.&nbsp; Based on our limited discussion, this sounds like a good place to start but we should have a more detailed conversation to zero\r\n in on what is best for you.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">-I have included a 5600 brochure for your review.&nbsp; Note this is the base system and you may want to consider a 5620 or 5620 Pro upgrade.&nbsp; These upgraded systems are more economical for higher level production.&nbsp; You may also want to consider\r\n other accessories like Natural Cooling Units or an Auto Unpacker depending upon your workflow and volume.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">-These systems include a 1 year warranty which covers all parts and labor for that period.&nbsp; There are a variety of service plans beyond that you can chose from to fit your needs.&nbsp; Including self-maintenance, 3DaaS and others.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">-As requested, I have also included a brochure on our automation accessory to swap out build units.&nbsp; This costs approximately $52,000 per system and can be well worth it if you want to do 24 hour production with limited staff.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">I know you are familiar with HP MJF AM technology in the Drone world as we are quickly becoming AM the industry standard there but I have included some additional case studies attached here along with some video links below for you to review.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><a href=\"https://www.youtube.com/watch?v=TC5l7fkGNHE\" title=\"https://www.youtube.com/watch?v=TC5l7fkGNHE\">Blueflite at Xponential 2025 | HP</a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><a href=\"https://www.youtube.com/watch?v=VTa2ZwKHk2c\" title=\"https://www.youtube.com/watch?v=VTa2ZwKHk2c\">The Eye Above at Xponential 2025 | HP</a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><a href=\"https://www.youtube.com/watch?v=EwBmg0165gM\" title=\"https://www.youtube.com/watch?v=EwBmg0165gM\">Unusual Machines at Xponential 2025 | HP</a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Keep in mind this is an initial budgetary number and things will change as we zero in on your needs but it should get you in the ballpark.&nbsp; We should spend at least 30 minutes to review and discuss further.&nbsp; What day/time(s) this week for\r\n that?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Looking forward to working with you on this.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Best Regards,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager &#8211; US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\"><span style=\"color:blue\">Gary.Fudge</span><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:blue\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black;mso-ligatures:none\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_1\" src=\"cid:image001.png@01DC0129.75A29B30\" alt=\"image001.png\"></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</body>\r\n</html>','Hello Rick\r\n\r\nSee below per the previous email...please respond back so I know you are getting these now.\r\n\r\nThanks,\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager - US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Fudge, Gary\r\nSent: Wednesday, July 30, 2025 6:37 AM\r\nTo: Rick@mavrix.1\r\nSubject: 5600 Budgetary Quote\r\n\r\nGood morning Rick,\r\n\r\nGood talking with you briefly late yesterday.  As promised, attached is a budgetary quote for a 5600 system.  Based on our limited discussion, this sounds like a good place to start but we should have a more detailed conversation to zero in on what is best for you.\r\n\r\n-I have included a 5600 brochure for your review.  Note this is the base system and you may want to consider a 5620 or 5620 Pro upgrade.  These upgraded systems are more economical for higher level production.  You may also want to consider other accessories like Natural Cooling Units or an Auto Unpacker depending upon your workflow and volume.\r\n\r\n-These systems include a 1 year warranty which covers all parts and labor for that period.  There are a variety of service plans beyond that you can chose from to fit your needs.  Including self-maintenance, 3DaaS and others.\r\n\r\n-As requested, I have also included a brochure on our automation accessory to swap out build units.  This costs approximately $52,000 per system and can be well worth it if you want to do 24 hour production with limited staff.\r\n\r\nI know you are familiar with HP MJF AM technology in the Drone world as we are quickly becoming AM the industry standard there but I have included some additional case studies attached here along with some video links below for you to review.\r\n\r\nBlueflite at Xponential 2025 | HP<https://www.youtube.com/watch?v=TC5l7fkGNHE>\r\n\r\nThe Eye Above at Xponential 2025 | HP<https://www.youtube.com/watch?v=VTa2ZwKHk2c>\r\n\r\nUnusual Machines at Xponential 2025 | HP<https://www.youtube.com/watch?v=EwBmg0165gM>\r\n\r\nKeep in mind this is an initial budgetary number and things will change as we zero in on your needs but it should get you in the ballpark.  We should spend at least 30 minutes to review and discuss further.  What day/time(s) this week for that?\r\n\r\nLooking forward to working with you on this.\r\n\r\nBest Regards,\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager - US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]',0,0,0,0,0,0,'2025-08-12 19:11:51','2025-12-09 19:27:35','2025-12-09 19:27:35','2025-12-09 19:27:35',NULL,NULL,NULL),
(616,4,'<MW5PR84MB19856A71C0DED3859B743863FB2BA@MW5PR84MB1985.NAMPRD84.PROD.OUTLOOK.COM>',NULL,NULL,'RE: FW: 5600 Budgetary Quote','gary.fudge@hp.com','\"Fudge, Gary\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Forma DJR Display\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n@font-face\r\n	{font-family:\"Forma DJR Micro\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle20\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Great, thanks…sorry for the confusion.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">How about we try to get together Thursday to discuss/answer questions once you have had a chance to review them?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">3D Print - Enterprise Account Manager – US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">|</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black;mso-ligatures:standardcontextual\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_634777576\" src=\"cid:image001.png@01DC0B8F.A84475C0\" alt=\"image001.png\"><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Tuesday, August 12, 2025 1:21 PM<br>\r\n<b>To:</b> Fudge, Gary &lt;gary.fudge@hp.com&gt;<br>\r\n<b>Subject:</b> Re: FW: 5600 Budgetary Quote<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:red\">CAUTION: External Email\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Got three emails!<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;\r\n<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"107\" height=\"22\" style=\"width:1.118in;height:.2291in\" id=\"_x0000_i1027\" src=\"cid:image002.png@01DC0B8F.A84475C0\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"http://mavrix1.com\">mavrix1.com</a><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"airmailon\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">On August 12, 2025 at 3:13:05 PM, Fudge, Gary (<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hello Rick<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">See below per the previous email…please respond back so I know you are getting these now.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager – US South\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_1425590809\" src=\"cid:image001.png@01DC0B8F.A84475C0\" alt=\"image001.png\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Fudge, Gary\r\n<br>\r\n<b>Sent:</b> Wednesday, July 30, 2025 6:37 AM<br>\r\n<b>To:</b> <a href=\"mailto:Rick@mavrix.1\">Rick@mavrix.1</a><br>\r\n<b>Subject:</b> 5600 Budgetary Quote</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Good morning Rick,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Good talking with you briefly late yesterday.&nbsp; As promised, attached is a budgetary quote for a 5600 system.&nbsp; Based\r\n on our limited discussion, this sounds like a good place to start but we should have a more detailed conversation to zero in on what is best for you.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">-I have included a 5600 brochure for your review.&nbsp; Note this is the base system and you may want to consider a\r\n 5620 or 5620 Pro upgrade.&nbsp; These upgraded systems are more economical for higher level production.&nbsp; You may also want to consider other accessories like Natural Cooling Units or an Auto Unpacker depending upon your workflow and volume.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">-These systems include a 1 year warranty which covers all parts and labor for that period.&nbsp; There are a variety\r\n of service plans beyond that you can chose from to fit your needs.&nbsp; Including self-maintenance, 3DaaS and others.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">-As requested, I have also included a brochure on our automation accessory to swap out build units.&nbsp; This costs\r\n approximately $52,000 per system and can be well worth it if you want to do 24 hour production with limited staff.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I know you are familiar with HP MJF AM technology in the Drone world as we are quickly becoming AM the industry\r\n standard there but I have included some additional case studies attached here along with some video links below for you to review.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><a href=\"https://www.youtube.com/watch?v=TC5l7fkGNHE\" title=\"https://www.youtube.com/watch?v=TC5l7fkGNHE\">Blueflite\r\n at Xponential 2025 | HP</a></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><a href=\"https://www.youtube.com/watch?v=VTa2ZwKHk2c\" title=\"https://www.youtube.com/watch?v=VTa2ZwKHk2c\">The\r\n Eye Above at Xponential 2025 | HP</a></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><a href=\"https://www.youtube.com/watch?v=EwBmg0165gM\" title=\"https://www.youtube.com/watch?v=EwBmg0165gM\">Unusual\r\n Machines at Xponential 2025 | HP</a></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Keep in mind this is an initial budgetary number and things will change as we zero in on your needs but it should\r\n get you in the ballpark.&nbsp; We should spend at least 30 minutes to review and discuss further.&nbsp; What day/time(s) this week for that?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Looking forward to working with you on this.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Best Regards,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager – US South\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_1\" src=\"cid:image001.png@01DC0B8F.A84475C0\" alt=\"image001.png\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Great, thanks…sorry for the confusion.\r\n\r\nHow about we try to get together Thursday to discuss/answer questions once you have had a chance to review them?\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager – US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, August 12, 2025 1:21 PM\r\nTo: Fudge, Gary <gary.fudge@hp.com>\r\nSubject: Re: FW: 5600 Budgetary Quote\r\n\r\nCAUTION: External Email\r\nGot three emails!\r\nThanks\r\nRick\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:image002.png@01DC0B8F.A84475C0]\r\nmavrix1.com<http://mavrix1.com>\r\n\r\n\r\n\r\nOn August 12, 2025 at 3:13:05 PM, Fudge, Gary (gary.fudge@hp.com<mailto:gary.fudge@hp.com>) wrote:\r\nHello Rick\r\n\r\nSee below per the previous email…please respond back so I know you are getting these now.\r\n\r\nThanks,\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager – US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Fudge, Gary\r\nSent: Wednesday, July 30, 2025 6:37 AM\r\nTo: Rick@mavrix.1<mailto:Rick@mavrix.1>\r\nSubject: 5600 Budgetary Quote\r\n\r\nGood morning Rick,\r\n\r\nGood talking with you briefly late yesterday.  As promised, attached is a budgetary quote for a 5600 system.  Based on our limited discussion, this sounds like a good place to start but we should have a more detailed conversation to zero in on what is best for you.\r\n\r\n-I have included a 5600 brochure for your review.  Note this is the base system and you may want to consider a 5620 or 5620 Pro upgrade.  These upgraded systems are more economical for higher level production.  You may also want to consider other accessories like Natural Cooling Units or an Auto Unpacker depending upon your workflow and volume.\r\n\r\n-These systems include a 1 year warranty which covers all parts and labor for that period.  There are a variety of service plans beyond that you can chose from to fit your needs.  Including self-maintenance, 3DaaS and others.\r\n\r\n-As requested, I have also included a brochure on our automation accessory to swap out build units.  This costs approximately $52,000 per system and can be well worth it if you want to do 24 hour production with limited staff.\r\n\r\nI know you are familiar with HP MJF AM technology in the Drone world as we are quickly becoming AM the industry standard there but I have included some additional case studies attached here along with some video links below for you to review.\r\n\r\nBlueflite at Xponential 2025 | HP<https://www.youtube.com/watch?v=TC5l7fkGNHE>\r\n\r\nThe Eye Above at Xponential 2025 | HP<https://www.youtube.com/watch?v=VTa2ZwKHk2c>\r\n\r\nUnusual Machines at Xponential 2025 | HP<https://www.youtube.com/watch?v=EwBmg0165gM>\r\n\r\nKeep in mind this is an initial budgetary number and things will change as we zero in on your needs but it should get you in the ballpark.  We should spend at least 30 minutes to review and discuss further.  What day/time(s) this week for that?\r\n\r\nLooking forward to working with you on this.\r\n\r\nBest Regards,\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager – US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\n',0,0,0,0,0,0,'2025-08-12 19:47:37','2025-12-09 19:27:35','2025-12-09 19:27:35','2025-12-09 19:27:35',NULL,NULL,NULL),
(617,4,'<684806379.195653.1755058031343@app128044.mia201.service-now.com>',NULL,NULL,'Your incident INC-GSAFSD20147835 requires a response','fsdsupport@gsa.gov','\"Federal Service Desk (FSD)\"','<html><head></head><body><p></p>\r\n<style type=\"text/css\">\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n</style>\r\n<div style=\"margin: 0 auto !important;\" align=\"center\">\r\n<table class=\"w100\" style=\"width: 600px; background-color: #f7f7f9; margin: 0 auto !important; padding: 0px;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" bgcolor=\"#F7F7F9\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 13px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"background-color: #d8ecff;\" height=\"32\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"40\" style=\"width: 53.1077%;\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td height=\"50\"><img src=\"cid:sys_attachment.dosys_idbe2e8d8d1bda2a50205e8736624bcb90@SNC.3b4cc8d0b5a99faf\" width=\"auto\" height=\"50\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr style=\"background-color: #d8ecff;\" height=\"22\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr><!-- Left-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- CONTAINER -->\r\n<td width=\"564\">\r\n<table class=\"w100\" style=\"margin: 0px; padding: 0px; box-shadow: 0px 2px 10px rgba(23, 40, 52, 0.08);\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody><!-- Main Container -->\r\n<tr>\r\n<td class=\"pad-sides-20\" style=\"border-radius: 6px; text-align: left; background-color: #ffffff; padding: 24px 24px 24px 24px; color: #454545;\" align=\"center\">\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-bottom: 10px;\"><strong>This is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD)</strong> which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.</div>\r\n</div>\r\n<hr>\r\n<p></p><div style=\"font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif; line-height: 26px; font-size: 16px;\">\r\n<div style=\"line-height: 26px; padding-bottom: 24px; text-align: left; color: #454545;\">\r\n<h4 style=\"margin-top: 14pt; line-height: 32px; margin-bottom: 4pt; text-align: left; font-size: 17.52pt;\"><strong> Reminder: Please Review Your Incident</strong></h4>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left; font-size: 12pt;\">Hello <strong>rick@mavrix.one,</strong></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left;\">Your incident <strong><span style=\"font-size: 12pt;\">INC-GSAFSD20147835 </span></strong><span style=\"font-size: 12pt;\"> is currently on hold pending your response.</span></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 6pt; text-align: left;\"><span style=\"font-size: 12pt;\">To review the incident details and submit your reply, please use the link below:<br></span><strong><span style=\"font-size: 12pt;\"></span></strong></p><div style=\"margin-top: 8px;\"><strong><a href=\"https://www.fsd.gov/gsafsd_sp?id=incident_form&amp;table=incident&amp;sys_id=ecb56edf8707a690efb1fe68cebb3551\" style=\"background-color: #70E17B;color: #162E51;font-size: 16px;text-decoration: none; border-radius: 4px;-webkit-border-radius: 4px;-moz-border-radius: 4px;display: inline-block;padding: 10px 32px 10px 32px;\">View incident</a></strong></div><span style=\"font-size: 12pt;\"> <br></span><strong><span style=\"font-size: 12pt;\">Please note:</span></strong><span style=\"font-size: 12pt;\"> If we do not receive a response 2025-08-12 20:00:00 PDT<strong>,</strong> the incident will be marked as resolved.</span><p></p>\r\n<span style=\"font-size: 12pt;\">Thank you,</span><span style=\"font-size: 12pt;\"><br></span><strong><span style=\"font-size: 12pt;\">FSD.gov Team</span></strong></div>\r\n</div><p></p>\r\n<hr>\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-top: 10px;\"><strong>Don\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times!</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0036075\" target=\"_blank\" rel=\"noopener\">Invite others </a>to help manage your registration. <strong>DO NOT</strong> attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. <strong>Submit all entity validation documentation from your Entity Workspace in SAM.gov.</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0057690\" target=\"_blank\" rel=\"noopener\">Learn how to add documentation</a> to your entity validation case.</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- END CONTAINER --> <!-- Right-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"background-color: #f7f7f9;\" align=\"center\" height=\"40\"></td>\r\n</tr>\r\n<!-- Footer started -->\r\n<tr style=\"background-color: #d8ecff;\">\r\n<td>\r\n<table style=\"background-color: #d8ecff;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td height=\"30\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 14px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_id7d465e4a1b3ca2103943eac1604bcbb6@SNC.11ca3b7b92590def\" width=\"120\" height=\"40\" title=\"Cloud 4.png\" alt=\"Cloud\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"30\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff;\" align=\"center\" valign=\"top\" height=\"30\"><img src=\"cid:sys_attachment.dosys_idb04e85cd1bda2a50205e8736624bcbfa@SNC.c6568b9d8625725f\" width=\"auto\" height=\"30\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_idb1a5160a1b3ca2103943eac1604bcbdc@SNC.338b11b51f3d9c51\" width=\"140\" height=\"40\" title=\"Cloud 3.png\" alt=\"Cloud\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff; color: #ffffff;\">\r\n<table style=\"color: #ffffff;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr align=\"center\">\r\n<td><span id=\"templateAddress\" class=\"footer\" style=\"color: #162e51; font-size: 14px; line-height: 18px; text-align: center; margin: 0 !important;\"> GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td height=\"10\"></td>\r\n</tr>\r\n<tr>\r\n<td height=\"120px\"><img style=\"height: 120px; width: 100%;\" src=\"cid:sys_attachment.dosys_id7555160a1b3ca2103943eac1604bcb39@SNC.cdbb3c4a57272b53\" height=\"120\" title=\"Jefferson Light Blue 2.png\" alt=\"Jefferson Memorial\"><span id=\"mce_26\"></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<!-- Footer end--></tbody>\r\n</table>\r\n</div><div>&nbsp;</div><div style=\"display:inline\">Ref:MSG1799418_HUAleedkFQyVVOVsp39S</div></body></html>','\r\n\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD) which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.\r\n\r\n\r\n\r\n\r\n Reminder: Please Review Your Incident\r\nHello rick@mavrix.one,\r\nYour incident INC-GSAFSD20147835  is currently on hold pending your response.\r\nTo review the incident details and submit your reply, please use the link below:View incident Please note: If we do not receive a response 2025-08-12 20:00:00 PDT, the incident will be marked as resolved.\r\nThank you,FSD.gov Team\r\n\r\n\r\n\r\nDon\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times! Invite others to help manage your registration. DO NOT attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. Submit all entity validation documentation from your Entity Workspace in SAM.gov. Learn how to add documentation to your entity validation case.\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;Ref:MSG1799418_HUAleedkFQyVVOVsp39S',0,0,0,0,0,0,'2025-08-13 04:07:11','2025-12-09 19:27:36','2025-12-09 19:27:36','2025-12-09 19:27:36',NULL,NULL,NULL),
(618,4,'<c76e4dc6f853775bbe157c7325ef3fe2@mavrix.one>',NULL,NULL,'Drone Development Process','john@mavrix.one','john@mavrix.one','Please see the attached.\r\n\r\nDone quickly, so not perfect formatting...but the info is solid.\r\n\r\nWanted to be useful more than any nay-saying.\r\n\r\nNot for sharing or public release.\r\n\r\n\r\nJohn.','Please see the attached.\r\n\r\nDone quickly, so not perfect formatting...but the info is solid.\r\n\r\nWanted to be useful more than any nay-saying.\r\n\r\nNot for sharing or public release.\r\n\r\n\r\nJohn.',0,0,0,0,0,0,'2025-08-13 23:33:29','2025-12-09 19:27:36','2025-12-09 19:27:36','2025-12-09 19:27:36',NULL,NULL,NULL),
(619,4,'<6fe0cf16-e1b4-40ad-8b7b-4e3f72d24030@mavrix.one>',NULL,NULL,'Amazon drone swarm pricing','elias@mavrix.one','Elias Vanier','Attached is a pdf of the cost of the drone swarm as well as the excel file.\r\n\r\n\r\nBest,\r\n\r\nElias','Attached is a pdf of the cost of the drone swarm as well as the excel file.\r\n\r\n\r\nBest,\r\n\r\nElias',0,0,0,0,0,0,'2025-08-14 00:07:10','2025-12-09 19:27:36','2025-12-09 19:27:36','2025-12-09 19:27:36',NULL,NULL,NULL),
(620,4,'<1659425968.202820.1755144448679@app128017.mia201.service-now.com>',NULL,NULL,'Your incident INC-GSAFSD20147835 requires a response','fsdsupport@gsa.gov','\"Federal Service Desk (FSD)\"','<html><head></head><body><p></p>\r\n<style type=\"text/css\">\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n</style>\r\n<div style=\"margin: 0 auto !important;\" align=\"center\">\r\n<table class=\"w100\" style=\"width: 600px; background-color: #f7f7f9; margin: 0 auto !important; padding: 0px;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" bgcolor=\"#F7F7F9\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 13px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"background-color: #d8ecff;\" height=\"32\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"40\" style=\"width: 53.1077%;\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td height=\"50\"><img src=\"cid:sys_attachment.dosys_idbe2e8d8d1bda2a50205e8736624bcb90@SNC.71badcdcc6b5c2e3\" width=\"auto\" height=\"50\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr style=\"background-color: #d8ecff;\" height=\"22\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr><!-- Left-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- CONTAINER -->\r\n<td width=\"564\">\r\n<table class=\"w100\" style=\"margin: 0px; padding: 0px; box-shadow: 0px 2px 10px rgba(23, 40, 52, 0.08);\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody><!-- Main Container -->\r\n<tr>\r\n<td class=\"pad-sides-20\" style=\"border-radius: 6px; text-align: left; background-color: #ffffff; padding: 24px 24px 24px 24px; color: #454545;\" align=\"center\">\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-bottom: 10px;\"><strong>This is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD)</strong> which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.</div>\r\n</div>\r\n<hr>\r\n<p></p><div style=\"font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif; line-height: 26px; font-size: 16px;\">\r\n<div style=\"line-height: 26px; padding-bottom: 24px; text-align: left; color: #454545;\">\r\n<h4 style=\"margin-top: 14pt; line-height: 32px; margin-bottom: 4pt; text-align: left; font-size: 17.52pt;\"><strong> Reminder: Please Review Your Incident</strong></h4>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left; font-size: 12pt;\">Hello <strong>rick@mavrix.one,</strong></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left;\">Your incident <strong><span style=\"font-size: 12pt;\">INC-GSAFSD20147835 </span></strong><span style=\"font-size: 12pt;\"> is currently on hold pending your response.</span></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 6pt; text-align: left;\"><span style=\"font-size: 12pt;\">To review the incident details and submit your reply, please use the link below:<br></span><strong><span style=\"font-size: 12pt;\"></span></strong></p><div style=\"margin-top: 8px;\"><strong><a href=\"https://www.fsd.gov/gsafsd_sp?id=incident_form&amp;table=incident&amp;sys_id=ecb56edf8707a690efb1fe68cebb3551\" style=\"background-color: #70E17B;color: #162E51;font-size: 16px;text-decoration: none; border-radius: 4px;-webkit-border-radius: 4px;-moz-border-radius: 4px;display: inline-block;padding: 10px 32px 10px 32px;\">View incident</a></strong></div><span style=\"font-size: 12pt;\"> <br></span><strong><span style=\"font-size: 12pt;\">Please note:</span></strong><span style=\"font-size: 12pt;\"> If we do not receive a response 2025-08-12 20:00:00 PDT<strong>,</strong> the incident will be marked as resolved.</span><p></p>\r\n<span style=\"font-size: 12pt;\">Thank you,</span><span style=\"font-size: 12pt;\"><br></span><strong><span style=\"font-size: 12pt;\">FSD.gov Team</span></strong></div>\r\n</div><p></p>\r\n<hr>\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-top: 10px;\"><strong>Don\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times!</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0036075\" target=\"_blank\" rel=\"noopener\">Invite others </a>to help manage your registration. <strong>DO NOT</strong> attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. <strong>Submit all entity validation documentation from your Entity Workspace in SAM.gov.</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0057690\" target=\"_blank\" rel=\"noopener\">Learn how to add documentation</a> to your entity validation case.</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- END CONTAINER --> <!-- Right-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"background-color: #f7f7f9;\" align=\"center\" height=\"40\"></td>\r\n</tr>\r\n<!-- Footer started -->\r\n<tr style=\"background-color: #d8ecff;\">\r\n<td>\r\n<table style=\"background-color: #d8ecff;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td height=\"30\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 14px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_id7d465e4a1b3ca2103943eac1604bcbb6@SNC.3d6c6fa453adcb42\" width=\"120\" height=\"40\" title=\"Cloud 4.png\" alt=\"Cloud\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"30\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff;\" align=\"center\" valign=\"top\" height=\"30\"><img src=\"cid:sys_attachment.dosys_idb04e85cd1bda2a50205e8736624bcbfa@SNC.2181caf3cfd37f64\" width=\"auto\" height=\"30\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_idb1a5160a1b3ca2103943eac1604bcbdc@SNC.95fd5d16110885a0\" width=\"140\" height=\"40\" title=\"Cloud 3.png\" alt=\"Cloud\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff; color: #ffffff;\">\r\n<table style=\"color: #ffffff;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr align=\"center\">\r\n<td><span id=\"templateAddress\" class=\"footer\" style=\"color: #162e51; font-size: 14px; line-height: 18px; text-align: center; margin: 0 !important;\"> GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td height=\"10\"></td>\r\n</tr>\r\n<tr>\r\n<td height=\"120px\"><img style=\"height: 120px; width: 100%;\" src=\"cid:sys_attachment.dosys_id7555160a1b3ca2103943eac1604bcb39@SNC.7ad1708e2061f706\" height=\"120\" title=\"Jefferson Light Blue 2.png\" alt=\"Jefferson Memorial\"><span id=\"mce_26\"></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<!-- Footer end--></tbody>\r\n</table>\r\n</div><div>&nbsp;</div><div style=\"display:inline\">Ref:MSG1851811_qdITRbfqDqyKrWAiTdZy</div></body></html>','\r\n\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD) which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.\r\n\r\n\r\n\r\n\r\n Reminder: Please Review Your Incident\r\nHello rick@mavrix.one,\r\nYour incident INC-GSAFSD20147835  is currently on hold pending your response.\r\nTo review the incident details and submit your reply, please use the link below:View incident Please note: If we do not receive a response 2025-08-12 20:00:00 PDT, the incident will be marked as resolved.\r\nThank you,FSD.gov Team\r\n\r\n\r\n\r\nDon\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times! Invite others to help manage your registration. DO NOT attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. Submit all entity validation documentation from your Entity Workspace in SAM.gov. Learn how to add documentation to your entity validation case.\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;Ref:MSG1851811_qdITRbfqDqyKrWAiTdZy',0,0,0,0,0,0,'2025-08-14 04:07:28','2025-12-09 19:27:37','2025-12-09 19:27:37','2025-12-09 19:27:37',NULL,NULL,NULL),
(621,4,'<669541188.144721.1755144596243@app128162.mia201.service-now.com>',NULL,NULL,'INC-GSAFSD20147835 was resolved','fsdsupport@gsa.gov','\"Federal Service Desk (FSD)\"','<html><head></head><body><p></p>\r\n<style type=\"text/css\">\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n</style>\r\n<div style=\"margin: 0 auto !important;\" align=\"center\">\r\n<table class=\"w100\" style=\"width: 600px; background-color: #f7f7f9; margin: 0 auto !important; padding: 0px;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" bgcolor=\"#F7F7F9\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 13px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"background-color: #d8ecff;\" height=\"32\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"40\" style=\"width: 53.1077%;\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td height=\"50\"><img src=\"cid:sys_attachment.dosys_idbe2e8d8d1bda2a50205e8736624bcb90@SNC.2a47681ef4aec3ce\" width=\"auto\" height=\"50\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr style=\"background-color: #d8ecff;\" height=\"22\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr><!-- Left-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- CONTAINER -->\r\n<td width=\"564\">\r\n<table class=\"w100\" style=\"margin: 0px; padding: 0px; box-shadow: 0px 2px 10px rgba(23, 40, 52, 0.08);\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody><!-- Main Container -->\r\n<tr>\r\n<td class=\"pad-sides-20\" style=\"border-radius: 6px; text-align: left; background-color: #ffffff; padding: 24px 24px 24px 24px; color: #454545;\" align=\"center\">\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-bottom: 10px;\"><strong>This is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD)</strong> which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.</div>\r\n</div>\r\n<hr>\r\n<p></p><div style=\"font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif; line-height: 26px; font-size: 16px;\">\r\n<div style=\"line-height: 26px; padding-bottom: 24px; text-align: left; color: #454545;\">\r\n<h4 style=\"margin-top: 14pt; line-height: 32px; margin-bottom: 4pt; text-align: left; font-size: 17.52pt;\"><strong>Your Incident Has Been Marked as Resolved</strong></h4>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left; font-size: 12pt;\">Hello <strong>rick@mavrix.one,</strong></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left;\">Your incident <strong><span style=\"font-size: 12pt;\">INC-GSAFSD20147835 </span></strong><span style=\"font-size: 12pt;\">has been marked as resolved for the following reason(s):</span></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left;\"><strong><span style=\"font-size: 12pt;\">Resolution notes:</span></strong><span style=\"font-size: 12pt;\"> The incident ticket was auto resolved after 5 business days in the \'On Hold\' status awaiting response from the caller. If the issue persists, please reopen the ticket or contact support..</span></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 6pt; text-align: left;\"><span style=\"font-size: 12pt;\">You can view the incident details or reopen it using the link below:<br></span><strong><span style=\"font-size: 12pt;\"></span></strong></p><div style=\"margin-top: 8px;\"><strong><a href=\"https://www.fsd.gov/gsafsd_sp?id=incident_form&amp;table=incident&amp;sys_id=ecb56edf8707a690efb1fe68cebb3551\" style=\"background-color: #70E17B;color: #162E51;font-size: 16px;text-decoration: none; border-radius: 4px;-webkit-border-radius: 4px;-moz-border-radius: 4px;display: inline-block;padding: 10px 32px 10px 32px;\">View incident</a></strong></div><span style=\"font-size: 12pt;\"> <br></span><strong><span style=\"font-size: 12pt;\">Please note</span></strong><span style=\"font-size: 12pt;\">: If no further action is taken, the incident will be automatically closed at midnight on the <strong>5th business day</strong> from the resolution date.</span><p></p>\r\n<span style=\"font-size: 12pt;\">Thank you,</span><span style=\"font-size: 12pt;\"><br></span><strong><span style=\"font-size: 12pt;\">FSD.gov Team</span></strong></div>\r\n</div><p></p>\r\n<hr>\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-top: 10px;\"><strong>Don\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times!</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0036075\" target=\"_blank\" rel=\"noopener\">Invite others </a>to help manage your registration. <strong>DO NOT</strong> attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. <strong>Submit all entity validation documentation from your Entity Workspace in SAM.gov.</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0057690\" target=\"_blank\" rel=\"noopener\">Learn how to add documentation</a> to your entity validation case.</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- END CONTAINER --> <!-- Right-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"background-color: #f7f7f9;\" align=\"center\" height=\"40\"></td>\r\n</tr>\r\n<!-- Footer started -->\r\n<tr style=\"background-color: #d8ecff;\">\r\n<td>\r\n<table style=\"background-color: #d8ecff;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td height=\"30\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 14px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_id7d465e4a1b3ca2103943eac1604bcbb6@SNC.743cb29cf7d13dbd\" width=\"120\" height=\"40\" title=\"Cloud 4.png\" alt=\"Cloud\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"30\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff;\" align=\"center\" valign=\"top\" height=\"30\"><img src=\"cid:sys_attachment.dosys_idb04e85cd1bda2a50205e8736624bcbfa@SNC.90ac214f8df44d14\" width=\"auto\" height=\"30\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_idb1a5160a1b3ca2103943eac1604bcbdc@SNC.a3ea4df44a51f914\" width=\"140\" height=\"40\" title=\"Cloud 3.png\" alt=\"Cloud\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff; color: #ffffff;\">\r\n<table style=\"color: #ffffff;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr align=\"center\">\r\n<td><span id=\"templateAddress\" class=\"footer\" style=\"color: #162e51; font-size: 14px; line-height: 18px; text-align: center; margin: 0 !important;\"> GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td height=\"10\"></td>\r\n</tr>\r\n<tr>\r\n<td height=\"120px\"><img style=\"height: 120px; width: 100%;\" src=\"cid:sys_attachment.dosys_id7555160a1b3ca2103943eac1604bcb39@SNC.ff2fff4b35038298\" height=\"120\" title=\"Jefferson Light Blue 2.png\" alt=\"Jefferson Memorial\"><span id=\"mce_26\"></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<!-- Footer end--></tbody>\r\n</table>\r\n</div><div>&nbsp;</div><div style=\"display:inline\">Ref:MSG1853335_rLwh0eeZOA3eIYFGP2Cf</div></body></html>','\r\n\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD) which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.\r\n\r\n\r\n\r\n\r\nYour Incident Has Been Marked as Resolved\r\nHello rick@mavrix.one,\r\nYour incident INC-GSAFSD20147835 has been marked as resolved for the following reason(s):\r\nResolution notes: The incident ticket was auto resolved after 5 business days in the \'On Hold\' status awaiting response from the caller. If the issue persists, please reopen the ticket or contact support..\r\nYou can view the incident details or reopen it using the link below:View incident Please note: If no further action is taken, the incident will be automatically closed at midnight on the 5th business day from the resolution date.\r\nThank you,FSD.gov Team\r\n\r\n\r\n\r\nDon\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times! Invite others to help manage your registration. DO NOT attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. Submit all entity validation documentation from your Entity Workspace in SAM.gov. Learn how to add documentation to your entity validation case.\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;Ref:MSG1853335_rLwh0eeZOA3eIYFGP2Cf',0,0,0,0,0,0,'2025-08-14 04:09:56','2025-12-09 19:27:37','2025-12-09 19:27:37','2025-12-09 19:27:37',NULL,NULL,NULL),
(622,4,'<2059868769.144823.1755144604108@app128162.mia201.service-now.com>',NULL,NULL,'Comment added to INC-GSAFSD20147835','fsdsupport@gsa.gov','\"Federal Service Desk (FSD)\"','<html><head></head><body><p></p>\r\n<style type=\"text/css\">\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n</style>\r\n<div style=\"margin: 0 auto !important;\" align=\"center\">\r\n<table class=\"w100\" style=\"width: 600px; background-color: #f7f7f9; margin: 0 auto !important; padding: 0px;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" bgcolor=\"#F7F7F9\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 13px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"background-color: #d8ecff;\" height=\"32\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"40\" style=\"width: 53.1077%;\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td height=\"50\"><img src=\"cid:sys_attachment.dosys_idbe2e8d8d1bda2a50205e8736624bcb90@SNC.16fda979ace68000\" width=\"auto\" height=\"50\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr style=\"background-color: #d8ecff;\" height=\"22\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr><!-- Left-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- CONTAINER -->\r\n<td width=\"564\">\r\n<table class=\"w100\" style=\"margin: 0px; padding: 0px; box-shadow: 0px 2px 10px rgba(23, 40, 52, 0.08);\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody><!-- Main Container -->\r\n<tr>\r\n<td class=\"pad-sides-20\" style=\"border-radius: 6px; text-align: left; background-color: #ffffff; padding: 24px 24px 24px 24px; color: #454545;\" align=\"center\">\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-bottom: 10px;\"><strong>This is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD)</strong> which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.</div>\r\n</div>\r\n<hr>\r\n<p></p><div style=\"font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif; line-height: 26px; font-size: 16px;\">\r\n<div style=\"line-height: 26px; padding-bottom: 24px; text-align: left; color: #454545;\">\r\n<h4 style=\"margin-top: 14pt; line-height: 32px; margin-bottom: 4pt; text-align: left; font-size: 17.52pt;\"><strong> New Comment(s) on Your FSD.gov Incident: INC-GSAFSD20147835</strong></h4>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left; font-size: 12pt;\">Hello <strong>rick@mavrix.one,</strong></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left;\">There are new comments on your incident <strong>INC-GSAFSD20147835</strong>.</p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 6pt; text-align: left;\"><span style=\"font-size: 12pt;\">To view the complete incident details and activity history, please use the link below:<br></span><strong><span style=\"font-size: 12pt;\"></span></strong></p><div style=\"margin-top: 8px;\"><strong><a href=\"https://www.fsd.gov/gsafsd_sp?id=incident_form&amp;table=incident&amp;sys_id=ecb56edf8707a690efb1fe68cebb3551\" style=\"background-color: #70E17B;color: #162E51;font-size: 16px;text-decoration: none; border-radius: 4px;-webkit-border-radius: 4px;-moz-border-radius: 4px;display: inline-block;padding: 10px 32px 10px 32px;\">View incident</a></strong></div><p></p>\r\n<span style=\"font-size: 12pt;\">Thank you,</span><span style=\"font-size: 12pt;\"><br></span><strong><span style=\"font-size: 12pt;\">FSD.gov Team</span></strong></div>\r\n</div><p></p>\r\n<hr>\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-top: 10px;\"><strong>Don\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times!</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0036075\" target=\"_blank\" rel=\"noopener\">Invite others </a>to help manage your registration. <strong>DO NOT</strong> attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. <strong>Submit all entity validation documentation from your Entity Workspace in SAM.gov.</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0057690\" target=\"_blank\" rel=\"noopener\">Learn how to add documentation</a> to your entity validation case.</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- END CONTAINER --> <!-- Right-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"background-color: #f7f7f9;\" align=\"center\" height=\"40\"></td>\r\n</tr>\r\n<!-- Footer started -->\r\n<tr style=\"background-color: #d8ecff;\">\r\n<td>\r\n<table style=\"background-color: #d8ecff;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td height=\"30\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 14px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_id7d465e4a1b3ca2103943eac1604bcbb6@SNC.ab23a93a2f969819\" width=\"120\" height=\"40\" title=\"Cloud 4.png\" alt=\"Cloud\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"30\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff;\" align=\"center\" valign=\"top\" height=\"30\"><img src=\"cid:sys_attachment.dosys_idb04e85cd1bda2a50205e8736624bcbfa@SNC.90a734c460ec075d\" width=\"auto\" height=\"30\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_idb1a5160a1b3ca2103943eac1604bcbdc@SNC.7007d1d95c810403\" width=\"140\" height=\"40\" title=\"Cloud 3.png\" alt=\"Cloud\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff; color: #ffffff;\">\r\n<table style=\"color: #ffffff;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr align=\"center\">\r\n<td><span id=\"templateAddress\" class=\"footer\" style=\"color: #162e51; font-size: 14px; line-height: 18px; text-align: center; margin: 0 !important;\"> GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td height=\"10\"></td>\r\n</tr>\r\n<tr>\r\n<td height=\"120px\"><img style=\"height: 120px; width: 100%;\" src=\"cid:sys_attachment.dosys_id7555160a1b3ca2103943eac1604bcb39@SNC.b4bfd186bcc41c11\" height=\"120\" title=\"Jefferson Light Blue 2.png\" alt=\"Jefferson Memorial\"><span id=\"mce_26\"></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<!-- Footer end--></tbody>\r\n</table>\r\n</div><div>&nbsp;</div><div style=\"display:inline\">Ref:MSG1853370_Ldfy5VGNlvJcks29myCi</div></body></html>','\r\n\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD) which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.\r\n\r\n\r\n\r\n\r\n New Comment(s) on Your FSD.gov Incident: INC-GSAFSD20147835\r\nHello rick@mavrix.one,\r\nThere are new comments on your incident INC-GSAFSD20147835.\r\nTo view the complete incident details and activity history, please use the link below:View incident\r\nThank you,FSD.gov Team\r\n\r\n\r\n\r\nDon\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times! Invite others to help manage your registration. DO NOT attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. Submit all entity validation documentation from your Entity Workspace in SAM.gov. Learn how to add documentation to your entity validation case.\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;Ref:MSG1853370_Ldfy5VGNlvJcks29myCi',0,0,0,0,0,0,'2025-08-14 04:10:04','2025-12-09 19:27:38','2025-12-09 19:27:38','2025-12-09 19:27:38',NULL,NULL,NULL),
(623,4,' <BY5PR03MB49661DC151E1D3B3B486EA77E035A@BY5PR03MB4966.namprd03.prod.outlook.com>',NULL,NULL,'Re: Workinman Interactive','matt.conheady@workinman.com','Matthew Conheady','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nHi Rick and Dan,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nAttached is the <b>signed NDA</b>&nbsp;and <b>price/scope estimate for the MVP software</b>.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nThe estimate should serve as a solid starting point for refining the requirements and tightening up the schedule and budgets.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nLet us know if you have any&nbsp;questions, would like to jump on a call to walk through it, or you can annotate the document as needed and send back for revisions or answers.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nWe are able to staff this as early as September. Let us know what your thoughts&nbsp;are as far as your overall schedule and we can work to align.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nBest,</div>\r\n<div class=\"elementToProof\" id=\"Signature\">\r\n<div class=\"elementToProof\"><span style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 16px; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);\"><b>Matt Conheady</b></span><br>\r\n<span style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 16px; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);\">Owner | Executive Producer<b><br>\r\n<br>\r\n</b></span><span style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 16px; color: rgb(243, 144, 29); background-color: rgb(255, 255, 255);\"><b>WORKINMAN</b></span><br>\r\n<span style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 16px; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);\"><i>We Make Awesome Games &amp; Experiences</i></span><br>\r\n<span style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 16px; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);\">Office: 585-662-5800</span><br>\r\n<span style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 16px; color: rgb(118, 113, 113); background-color: rgb(255, 255, 255);\"><u><a style=\"margin: 0px;\" rel=\"noopener noreferrer\" class=\"ContentPasted0\" target=\"_blank\" href=\"http://www.workinman.com/\">workinman.com</a></u></span>\r\n</div>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Wednesday, August 13, 2025 9:18 AM<br>\r\n<b>To:</b> Matthew Conheady &lt;matt.conheady@workinman.com&gt;<br>\r\n<b>Cc:</b> Jason Arena &lt;jason@workinman.com&gt;<br>\r\n<b>Subject:</b> Re: Workinman Interactive</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nSee attached NDA.</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nPlease fill in the first page, &nbsp;initial all pages, and sign the final page.</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks again,</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div class=\"x_bloop_sign\" id=\"x_bloop_sign_1755090962669144064\"><br>\r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD,&nbsp;</span>\r\n<div style=\"font-family:Helvetica,Arial\">Founder, CTO</div>\r\n<div style=\"font-family:Helvetica,Arial\"><img class=\"x_composer_internal_attach\" data-outlook-trace=\"F:1|T:1\" src=\"cid:17ECE329-B2AA-4C9B-9F82-2A2C259FC264\"><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial\"><a href=\"https://mavrix1.com\">https://mavrix1.com</a></div>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial\"><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On August 12, 2025 at 4:16:50 PM, Matthew Conheady (<a href=\"mailto:matt.conheady@workinman.com\">matt.conheady@workinman.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick!&nbsp;</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nI was great talking with you and Dan last week. We have been working away on that initial concept and estimate document and should be ready to send that over to you on Thursday of this week. Did you want me to send that to you at this e-mail or other business\r\n e-mails for you and Dan?</div>\r\n<div class=\"x_elementToProof\" id=\"x_Signature\">\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\"><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><b>Matt Conheady</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Owner | Executive Producer<b><br>\r\n<br>\r\n</b></span><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(243,144,29); background-color:rgb(255,255,255)\"><b>WORKINMAN</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><i>We Make Awesome Games &amp; Experiences</i></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Office: 585-662-5800</span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(118,113,113); background-color:rgb(255,255,255)\"><u><a rel=\"noopener noreferrer\" class=\"x_ContentPasted0\" target=\"_blank\" href=\"http://www.workinman.com/\" style=\"margin:0px\">workinman.com</a></u></span>\r\n</div>\r\n</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Matthew Conheady &lt;matt.conheady@workinman.com&gt;<br>\r\n<b>Sent:</b> Tuesday, August 5, 2025 4:27 PM<br>\r\n<b>To:</b> Rick Mislan , PhD &lt;rick@mislan.com&gt;<br>\r\n<b>Cc:</b> Jason Arena &lt;jason@workinman.com&gt;<br>\r\n<b>Subject:</b> Re: Workinman Interactive</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div dir=\"ltr\">\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n1pm on Friday works for us. Talk to you then!&nbsp;</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHere are the Zoom details</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n__________________________________________________________________________________________________________</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nMatthew (Workinman) is inviting you to a scheduled Zoom meeting.</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nTopic: Workinman - ROV Sim game discussion</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nTime: Aug 8, 2025 01:00 PM Eastern Time (US and Canada)</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nJoin Zoom Meeting</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nhttps://us02web.zoom.us/j/86189302441</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nMeeting ID: 861 8930 2441</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n---</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nOne tap mobile</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n+19292056099,,86189302441# US (New York)</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n+16469313860,,86189302441# US</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n---</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nDial by your location</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 929 205 6099 US (New York)</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 646 931 3860 US</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 312 626 6799 US (Chicago)</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 301 715 8592 US (Washington DC)</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 305 224 1968 US</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 309 205 3325 US</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 253 205 0468 US</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 253 215 8782 US (Tacoma)</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 346 248 7799 US (Houston)</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 360 209 5623 US</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 386 347 5053 US</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 507 473 4847 US</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 564 217 2000 US</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 669 444 9171 US</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 669 900 6833 US (San Jose)</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 689 278 1000 US</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 719 359 4580 US</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nMeeting ID: 861 8930 2441</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nFind your local number: https://us02web.zoom.us/u/kcTuOrpraw</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" id=\"x_x_Signature\">\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\"><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><b>Matt Conheady</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Owner | Executive Producer<b><br>\r\n<br>\r\n</b></span><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(243,144,29); background-color:rgb(255,255,255)\"><b>WORKINMAN</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><i>We Make Awesome Games &amp; Experiences</i></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Office: 585-662-5800</span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(118,113,113); background-color:rgb(255,255,255)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_ContentPasted0 x_x_OWAAutoLink\" id=\"OWAae5683bb-cb08-f59c-25dc-72b43fc3da4c\" href=\"http://www.workinman.com/\" style=\"margin:0px\">workinman.com</a></u></span></div>\r\n</div>\r\n<div class=\"x_x_elementToProof\" id=\"x_x_appendonsend\"></div>\r\n<hr style=\"display:inline-block; width:98%\">\r\n<div class=\"x_x_elementToProof\" id=\"x_x_divRplyFwdMsg\">\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Calibri,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Rick Mislan , PhD &lt;rick@mislan.com&gt;<br>\r\n<b>Sent:</b>&nbsp;Tuesday, August 5, 2025 12:06 PM<br>\r\n<b>To:</b>&nbsp;Matthew Conheady &lt;matt.conheady@workinman.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Workinman Interactive</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div class=\"x_x_elementToProof\">Can we jump on a call Friday at 1p?</div>\r\n<div class=\"x_x_elementToProof\">Sorry, I’ve been traveling<br>\r\nThank you!</div>\r\n<div class=\"x_x_elementToProof\"><br>\r\n</div>\r\n<div class=\"x_x_elementToProof\"><br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\nRick Mislan, PhD</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\n<a data-auth=\"NotApplicable\" class=\"x_x_OWAAutoLink\" id=\"OWAb926f85d-8995-e578-02f7-00c5a0c5314d\" href=\"http://www.mislan.com/\">www.mislan.com</a></div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\n[tel://(585) 797-9473](585) 797-9473</div>\r\n<p class=\"x_x_elementToProof\" style=\"color:rgb(0,0,0)\">On July 29, 2025 at 12:25:04 PM, Matthew Conheady (<a class=\"x_x_OWAAutoLink\" id=\"OWA9135b577-cb32-d293-7115-130026341730\" href=\"mailto:matt.conheady@workinman.com\" style=\"margin-top:0px; margin-bottom:0px\">matt.conheady@workinman.com</a>)\r\n wrote:</p>\r\n<blockquote class=\"x_x_elementToProof\">\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick,&nbsp;</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nGood times this week for me are:</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nWednesday and Thursday&nbsp;</div>\r\n<ul data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:true}\" style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\" class=\"x_x_elementToProof\" style=\"direction:ltr\">12pm to 5:30pm EST</div>\r\n</li></ul>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nFriday Morning</div>\r\n<ul data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:true}\" style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\" class=\"x_x_elementToProof\" style=\"direction:ltr\">10 am to 1pm EST</div>\r\n</li></ul>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nAnd then next all week</div>\r\n<ul data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:true}\" style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\" class=\"x_x_elementToProof\" style=\"direction:ltr\">12pm to 5:30pm EST</div>\r\n</li></ul>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" id=\"x_x_x_Signature\">\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr\"><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><b>Matt Conheady</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Owner | Executive Producer<b><br>\r\n<br>\r\n</b></span><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(243,144,29); background-color:rgb(255,255,255)\"><b>WORKINMAN</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><i>We Make Awesome Games &amp; Experiences</i></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Office: 585-662-5800</span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(118,113,113); background-color:rgb(255,255,255)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_ContentPasted0 x_x_OWAAutoLink\" id=\"OWAc5f6cf87-1dd5-4f90-51ba-907941554ee6\" href=\"http://www.workinman.com/\" style=\"margin:0px\">workinman.com</a></u></span></div>\r\n</div>\r\n<div class=\"x_x_elementToProof\" id=\"x_x_x_appendonsend\"></div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div class=\"x_x_elementToProof\" id=\"x_x_x_divRplyFwdMsg\">\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Calibri,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Rick Mislan , PhD &lt;rick@mislan.com&gt;<br>\r\n<b>Sent:</b>&nbsp;Monday, July 28, 2025 6:52 PM<br>\r\n<b>To:</b>&nbsp;Matthew Conheady &lt;matt.conheady@workinman.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Workinman Interactive</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nHey Matthew,</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nSorry for the delay, we are still very interested in working with you and had a bit of team building work this week on our larger projects.</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nThat all said, I’m going to introduce Dan Rugg to this conversation and re-engage with you next week if possible.</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nPlease send some dates and times that would work for us.</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nThank you,</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nRick</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\nRick Mislan, PhD</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\n<a data-auth=\"NotApplicable\" class=\"x_x_OWAAutoLink\" id=\"OWA29350824-5ea3-a319-9da2-d483eee53d35\" href=\"http://www.mislan.com/\">www.mislan.com</a></div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\n[tel://(585)%20797-9473](585) 797-9473</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr\">On July 28, 2025 at 5:28:15 PM, Matthew Conheady (<a class=\"x_x_OWAAutoLink\" id=\"OWAb072bba9-c1e3-a60f-1e5d-afd57b98fd8d\" href=\"mailto:matt.conheady@workinman.com\" style=\"margin-top:0px; margin-bottom:0px\">matt.conheady@workinman.com</a>)\r\n wrote:</p>\r\n<blockquote class=\"x_x_elementToProof\">\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick!</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nI\'m following up on our call in regards to game development for a ROV simulator game. We are still very much interested in working with you on this.&nbsp;</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nI was wondering if you had a chance to compile a high-level list of requirements, direction, and business goals for the first iteration of the simulator? We would need thit to begin crafting a proposal.</div>\r\n<div class=\"x_x_elementToProof\" id=\"x_x_x_x_Signature\">\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nLet me know if you\'d like to jump on another call to discuss.</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nBest,</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr\"><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><b>Matt Conheady</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Owner | Executive Producer<b><br>\r\n<br>\r\n</b></span><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(243,144,29); background-color:rgb(255,255,255)\"><b>WORKINMAN</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><i>We Make Awesome Games &amp; Experiences</i></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Office: 585-662-5800</span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(118,113,113); background-color:rgb(255,255,255)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_x_ContentPasted0 x_x_OWAAutoLink\" id=\"OWAe0652585-aff6-f8e2-b792-59fd59872a68\" href=\"http://www.workinman.com/\" style=\"margin:0px\">workinman.com</a></u></span></div>\r\n</div>\r\n<div class=\"x_x_elementToProof\" id=\"x_x_x_x_appendonsend\"></div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div class=\"x_x_elementToProof\" id=\"x_x_x_x_divRplyFwdMsg\">\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Calibri,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Jason Arena &lt;jxafaa@rit.edu&gt;<br>\r\n<b>Sent:</b>&nbsp;Tuesday, June 24, 2025 8:52 AM<br>\r\n<b>To:</b>&nbsp;Rick Mislan PhD &lt;rick@mislan.com&gt;<br>\r\n<b>Cc:</b>&nbsp;Workinman Interactive &lt;opportunity@workinman.com&gt;; Matthew Conheady &lt;matt.conheady@workinman.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Workinman Interactive</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr\">Hi Rick!</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr\">Sounds awesome! I’m cc’ing Matt C on this. &nbsp;I’m free everyday after 11:00</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr\">Sent from my iPhone</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<blockquote class=\"x_x_elementToProof\">\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr\">On Jun 24, 2025, at 8:37 AM, Rick Mislan , PhD &lt;rick@mislan.com&gt; wrote:<br>\r\n<br>\r\n</div>\r\n</blockquote>\r\n<blockquote class=\"x_x_elementToProof\">\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr\">﻿</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nJason,</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nCan we schedule a call next week?</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nI’m in a new venture where&nbsp;</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nthe investors wants to develop&nbsp;</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\na drone flight simulator game&nbsp;</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nspecifically for collecting user data</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nand using that to build better drone products…</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nPlease let me know&nbsp;</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nif we can jump on a zoom&nbsp;</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nthis week or next.</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nThanks much!</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nRick</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\nRick Mislan, PhD</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\n<a data-auth=\"NotApplicable\" class=\"x_x_OWAAutoLink\" id=\"OWA6c87ec94-1952-3d0f-3163-a49c2ea8d6e9\" href=\"http://www.mislan.com/\">www.mislan.com</a></div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\n[tel://(585)%20797-9473](585) 797-9473</div>\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr\">On June 24, 2025 at 8:12:06 AM, Workinman Interactive (<a class=\"x_x_OWAAutoLink\" id=\"OWA75251578-8422-15f3-4521-cfe093e2b576\" href=\"mailto:opportunity@workinman.com\" style=\"margin-top:0px; margin-bottom:0px\">opportunity@workinman.com</a>)\r\n wrote:</p>\r\n<blockquote class=\"x_x_elementToProof\">\r\n<div class=\"x_x_elementToProof\" style=\"background-color:rgb(255,255,255)\">\r\n<div class=\"x_x_elementToProof\" align=\"center\" style=\"direction:ltr; font-size:10px\">\r\n<span style=\"color:rgb(114,114,114)\">If you are not able to see this mail, click </span>\r\n<span style=\"color:rgb(1,164,198)\"><a data-auth=\"NotApplicable\" class=\"x_x_OWAAutoLink\" id=\"OWA65ff5b9b-4dd9-1a5a-3113-bc64d1b9f3b1\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/mr/sh/SMJz09SDriOHVCvERqqB8vSnidXk/eUSi5oqtsSF7\" style=\"color:rgb(1,164,198)\">here</a></span></div>\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; background-color:rgb(255,255,255); width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(255,255,255); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(255,255,255); padding-top:20px\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"center\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:200px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; line-height:0px\"><span style=\"font-size:0px; color:rgb(255,255,255); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_OWAAutoLink\" id=\"OWA66f32bf9-a32c-4d9c-2a42-41eb144915da\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeFuBnDUbVMwIGP52LehM/cf8aWw6mA19H\" style=\"color:rgb(255,255,255)\"><img data-unique-identifier=\"\" title=\"Workinman Interactive\" style=\"width:100%; display:block\" src=\"https://ehfas.img.ag.d.sendibm3.com/im/sh/G1V7WqIQLpmT.png?u=7xwQLFBtniwQn1M9aigqYDKglLFmSkK\"></a></u></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"left\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1; padding-top:20px; padding-bottom:20px; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"font-size:24px; color:rgb(89,89,89)\">We Make Awesome Games &amp; Apps</span></h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:30px; padding-bottom:30px\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"font-size:24px; color:rgb(255,255,255)\">WHAT\'S NEW WITH WORKINMAN INTERACTIVE:</span></h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(255,255,255); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:10px; padding-bottom:10px\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"center\" style=\"direction:ltr; line-height:30px; height:30px\">\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; line-height:30px; font-size:30px\">\r\n<span style=\"font-weight:normal\">­</span></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(89,89,89); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1; padding-top:10px; padding-bottom:10px; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1; margin:0px; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"font-family:Arial; color:rgb(255,255,255)\">New North Carolina Zoo App</span></h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(255,255,255); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:20px; padding-bottom:20px\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:50%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"center\" style=\"direction:ltr; line-height:0px; border-radius:8px\"><span style=\"font-size:0px; color:rgb(255,255,255); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_OWAAutoLink\" id=\"OWAacfe193e-87c4-a72d-b508-9a683a3e4db9\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeG13FMJYgX5mMENmJxHc/FUZ_0isJTQ1o\" style=\"color:rgb(255,255,255)\"><img data-unique-identifier=\"\" title=\"Making Digital Kiosks Click III: Beyond Information\" style=\"width:100%; border-radius:8px; display:block\" src=\"https://ehfas.img.ag.d.sendibm3.com/im/sh/9Op68GIgPhho.jpg?u=7xwQLFBtniwQnF53sMbCsWIsPwjj3uq\"></a></u></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n<th style=\"direction:ltr; vertical-align:top; width:50%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:left; line-height:1; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"font-size:20px\">A Modern, Accessible, and Educational Experience for All Zoo Visitors</span><br>\r\n&nbsp;</h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-bottom:20px\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:left; line-height:1.5; padding-top:15px; padding-bottom:15px; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">Workinman Interactive, in proud collaboration with the</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_OWAAutoLink\" id=\"OWAa8fcfc13-2b21-b56d-9d56-4648dfa3b8c9\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeG7uhV8VrhFGS3gWIFrs/1wN6eOemqsu1\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">North\r\n Carolina Zoo</a></u></span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">, is excited to announce the launch of the NCZoo app—now available on iOS and Android as of May 2025. Designed to enrich every visit to the\r\n Zoo, this cutting-edge app brings a fresh, interactive dimension to exploring wildlife, learning about conservation, and discovering STEM careers—all while making the Zoo experience more accessible and engaging for visitors of all ages and abilities.</span></p>\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">&nbsp;</span></p>\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_OWAAutoLink\" id=\"OWA4293899f-485d-b3a2-3dd8-a508f84b1405\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGEm9dxT2rOkXszGGYS8/SMJ0IkYWjYcP\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Check\r\n out all the features the NCZoo app provides!</a></u></span></p>\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">&nbsp;</span></p>\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px\">Ready to make your park, zoo, or business more engaging?</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">\r\n</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_OWAAutoLink\" id=\"OWAabe499bd-4e1a-5923-1deb-82100d5b35ce\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGLdbmmQE1YEdiI0Er2O/4u7jtCv00Xki\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Contact\r\n us</a></u></span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">to unlock the next level of interactivity!</span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(89,89,89); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:10px; padding-bottom:10px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1; margin:0px; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; color:rgb(255,255,255)\">Games for Brands</span></h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(255,255,255); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:20px; padding-bottom:20px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:50%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"center\" style=\"direction:ltr; line-height:0px; border-radius:8px; color:rgb(59,63,68)\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:0px; color:rgb(255,255,255); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_OWAAutoLink\" id=\"OWAddf0d673-b198-96c4-0c70-976e17300d4b\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGSV3vbNPBhijXakD9ce/IBGbkTzxXQRB\" style=\"color:rgb(255,255,255)\"><img data-unique-identifier=\"\" style=\"width:100%; border-radius:8px; display:block\" src=\"https://ehfas.img.ag.d.sendibm3.com/im/sh/VlvB4aMPBy9f.jpg?u=7xwQLFBtniwQnLwW1BYO2fmyFFThMV6\"></a></u></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n<th style=\"direction:ltr; vertical-align:top; width:50%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:left; line-height:1; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"font-size:36px\">What to Do, What to Avoid</span></h2>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr; line-height:5px; height:5px\">\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; line-height:5px; font-family:arial,helvetica,sans-serif; font-size:5px\">\r\n<span style=\"font-weight:normal\">­</span></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-bottom:20px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:left; line-height:1.5; padding-top:15px; padding-bottom:15px; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">Branded games aren’t just a creative brief and a lengthy project. They’re a balancing act between honoring brand identity and making something people actually want to play.\r\n It\'s a synergism between design and marketing, playfulness and precision. When done well, a brand-integrated game becomes more than\r\n<i>just</i>&nbsp;a promotional tool. It becomes a story that players want to be part of.</span></p>\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">&nbsp;</span></p>\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_OWAAutoLink\" id=\"OWA2592da57-4f06-e5ad-3651-e5dd1c0bda7a\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Here’s\r\n what to do, and what</a></u></span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_OWAAutoLink\" id=\"OWA90ce7c3d-db11-f16c-dd56-a8bef0549799\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">\r\n</a></u></span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><i><u><a data-auth=\"NotApplicable\" class=\"x_x_OWAAutoLink\" id=\"OWA728f35d7-be16-1daf-50ce-1c3714a4f948\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">not</a></u></i></span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_OWAAutoLink\" id=\"OWAe7e37e32-ae04-dbc7-6fc0-3ffa0a602964\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">\r\n</a></u></span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_OWAAutoLink\" id=\"OWA234e462d-dfb2-ebf7-027a-b0481c35b894\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">to\r\n do, when designing branded games.</a></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(89,89,89); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:10px; padding-bottom:10px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"color:rgb(255,255,255)\">Game Design</span></h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(255,255,255); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:20px; padding-bottom:20px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:50%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"center\" style=\"direction:ltr; line-height:0px; border-radius:8px; color:rgb(59,63,68)\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:0px; color:rgb(255,255,255); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_OWAAutoLink\" id=\"OWA21df8071-e134-db5d-f30b-f9a5c1ce2695\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGgDyDFHlW0gvCCE9knA/iMDvjtbwa753\" style=\"color:rgb(255,255,255)\"><img data-unique-identifier=\"\" style=\"width:100%; border-radius:8px; display:block\" src=\"https://ehfas.img.ag.d.sendibm3.com/im/sh/NGfPZb-DQ0eG.jpg?u=7xwQLFBtniwQnSnyA0VZCpH44YDff5M\"></a></u></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n<th style=\"direction:ltr; vertical-align:top; width:50%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:left; line-height:1; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\nCreating Better Digital Board Games</h2>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr; line-height:5px; height:5px\">\r\n<div class=\"x_x_elementToProof\" style=\"direction:ltr; line-height:5px; font-family:arial,helvetica,sans-serif; font-size:5px\">\r\n<span style=\"font-weight:normal\">­</span></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-bottom:20px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:left; line-height:1.5; padding-top:15px; padding-bottom:15px; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">Digitizing a board game isn’t just a technical task. It’s often a\r\n</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px\">translation challenge</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">. The mechanics are usually airtight. The audience is often built-in.\r\n But if the game doesn’t <i>feel</i>&nbsp;right once it’s digital—if it loses its rhythm, clarity, or atmosphere—your audience will notice. And they may not return.</span></p>\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">&nbsp;</span></p>\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">At Workinman, we can help studios and publishers translate beloved board games into dynamic digital experiences—without losing the essence of what makes them great. From\r\n AI tuning to UI design and atmosphere-building, we know how to turn cardboard and cardstock into something\r\n<i>truly</i>&nbsp;screen-worthy.</span></p>\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">&nbsp;</span></p>\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_OWAAutoLink\" id=\"OWA086b0be5-f3d4-23b0-d133-17f093f99213\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGn5QM4EwgAB11Uy83NQ/pA0WH5Y_OhHf\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Read\r\n more!</a></u></span></p>\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">&nbsp;</span></p>\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px\">If you\'re ready to bring your game to life online,</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">\r\n</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_OWAAutoLink\" id=\"OWA86dfb4ae-5038-398c-601d-d45ea1f33672\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGtwsUtC7qJf6qni6Lxg/WRTz3m_aq_gb\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">contact\r\n us</a></u></span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">\r\n</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px\">now to get started.</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">&nbsp;</span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(249,160,44); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:10px; padding-bottom:10px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1.5; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"color:rgb(255,255,255)\">WHAT WE DO</span></h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(255,255,255); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:20px; padding-bottom:20px\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"font-size:22px\">Workinman Interactive is a full-service creative studio for cross-platform games and engaging apps.</span></h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:10px; padding-bottom:10px\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1.5; padding-top:15px; padding-bottom:15px; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_OWAAutoLink\" id=\"OWA420bfb29-2be7-4ba0-ef03-56f5bc6c79d6\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsDhYHdOKPDMqP51WuUJq4/Kb-JAW4_rDR5\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Cross-Platform\r\n Games and Apps</a></u></span></p>\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_OWAAutoLink\" id=\"OWA2a7649b0-2e9c-c612-1fad-dbd28b56ed43\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsE9szpoilJI0f8qujT3Y8/E627oifEgKIx\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Gamification</a></u></span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\"><br>\r\n</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_OWAAutoLink\" id=\"OWAe8a648b6-4bb1-5ff0-1f62-aa875eda2593\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsEcDi2F77PDAvCgIYRnGC/1e0EzX4RBSOD\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">VR\r\n &amp; AR Experiences</a></u></span></p>\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_OWAAutoLink\" id=\"OWA0e7b2f47-4488-0397-f531-b9cdf1f9613f\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsF4YQEfVTV8LBGVgNQWyG/BAoIYNd1mxIX\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Interactive\r\n Digital Exhibits</a></u></span></p>\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_OWAAutoLink\" id=\"OWA3d906230-d752-b7cf-00ff-a55a1fd5a113\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsFWt8R5tpb3VRKL4CPGgK/Vpsh_R2QaPa-\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Educational\r\n Games &amp; eLearning</a></u></span></p>\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_OWAAutoLink\" id=\"OWA44f89156-50b5-5981-7891-2cf7e2a52a82\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsFzDqdWIBgyfhOAS1O0OO/t8za1-x1Rf0E\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Companion\r\n Apps for Smart Toys &amp; Appliances</a></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(89,89,89); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:10px; padding-bottom:10px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"font-size:22px; color:rgb(255,255,255)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_OWAAutoLink\" id=\"OWA204794ba-fb75-9460-b1ba-eaf38225ab32\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsGRYYpwgXmtpxRzpqMk6S/bevyJrJoW4cs\" style=\"color:rgb(255,255,255)\">CONTACT\r\n US TODAY FOR A FREE CONSULTATION</a></u></span></h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:30px; padding-bottom:30px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:20px; color:rgb(255,255,255)\"><u><a class=\"x_x_OWAAutoLink\" id=\"OWA4dcce8ac-5807-45ee-b80f-3f172b60cb2c\" href=\"mailto:opportunity@workinman.com\" style=\"color:rgb(255,255,255); margin-top:0px; margin-bottom:0px\">opportunity@workinman.com</a></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(239,242,247); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:20px; padding-bottom:20px\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1.5; padding-top:15px; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:18px\">Workinman Interactive</span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1.5; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px; font-size:14px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-weight:normal\">1 East Avenue, 5th Floor, 14604, Rochester</span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1.5; padding-top:15px; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px; font-size:14px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-weight:normal\">This email was sent to rick@mislan.com</span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1.5; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px; font-size:14px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-weight:normal\">You\'ve received this email because you\'ve subscribed to our newsletter.</span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1.5; padding-top:15px; padding-bottom:15px; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px; font-size:14px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; color:rgb(249,160,44); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_OWAAutoLink\" id=\"OWAb8a2ccf2-68e2-4b47-2241-8df99351a702\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/un/v2/sh/SMJz09a0vkbXrIOuDazyHiLuyL9s/xQ7JJO10AbkG\" style=\"color:rgb(249,160,44); margin-top:0px; margin-bottom:0px\">Unsubscribe</a></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Hi Rick and Dan,\r\nAttached is the signed NDA and price/scope estimate for the MVP software.\r\n\r\nThe estimate should serve as a solid starting point for refining the requirements and tightening up the schedule and budgets.\r\nLet us know if you have any questions, would like to jump on a call to walk through it, or you can annotate the document as needed and send back for revisions or answers.\r\n\r\nWe are able to staff this as early as September. Let us know what your thoughts are as far as your overall schedule and we can work to align.\r\n\r\nBest,\r\nMatt Conheady\r\nOwner | Executive Producer\r\n\r\nWORKINMAN\r\nWe Make Awesome Games & Experiences\r\nOffice: 585-662-5800\r\nworkinman.com<http://www.workinman.com/>\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Wednesday, August 13, 2025 9:18 AM\r\nTo: Matthew Conheady <matt.conheady@workinman.com>\r\nCc: Jason Arena <jason@workinman.com>\r\nSubject: Re: Workinman Interactive\r\n\r\nSee attached NDA.\r\nPlease fill in the first page,  initial all pages, and sign the final page.\r\nThanks again,\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:17ECE329-B2AA-4C9B-9F82-2A2C259FC264]\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\nOn August 12, 2025 at 4:16:50 PM, Matthew Conheady (matt.conheady@workinman.com<mailto:matt.conheady@workinman.com>) wrote:\r\n\r\nHi Rick!\r\n\r\nI was great talking with you and Dan last week. We have been working away on that initial concept and estimate document and should be ready to send that over to you on Thursday of this week. Did you want me to send that to you at this e-mail or other business e-mails for you and Dan?\r\n\r\nMatt Conheady\r\nOwner | Executive Producer\r\n\r\nWORKINMAN\r\nWe Make Awesome Games & Experiences\r\nOffice: 585-662-5800\r\nworkinman.com<http://www.workinman.com/>\r\n________________________________\r\nFrom: Matthew Conheady <matt.conheady@workinman.com>\r\nSent: Tuesday, August 5, 2025 4:27 PM\r\nTo: Rick Mislan , PhD <rick@mislan.com>\r\nCc: Jason Arena <jason@workinman.com>\r\nSubject: Re: Workinman Interactive\r\n\r\n1pm on Friday works for us. Talk to you then!\r\n\r\nHere are the Zoom details\r\n\r\n__________________________________________________________________________________________________________\r\n\r\nMatthew (Workinman) is inviting you to a scheduled Zoom meeting.\r\n\r\nTopic: Workinman - ROV Sim game discussion\r\nTime: Aug 8, 2025 01:00 PM Eastern Time (US and Canada)\r\nJoin Zoom Meeting\r\nhttps://us02web.zoom.us/j/86189302441\r\n\r\nMeeting ID: 861 8930 2441\r\n\r\n---\r\n\r\nOne tap mobile\r\n+19292056099,,86189302441# US (New York)\r\n+16469313860,,86189302441# US\r\n\r\n---\r\n\r\nDial by your location\r\n• +1 929 205 6099 US (New York)\r\n• +1 646 931 3860 US\r\n• +1 312 626 6799 US (Chicago)\r\n• +1 301 715 8592 US (Washington DC)\r\n• +1 305 224 1968 US\r\n• +1 309 205 3325 US\r\n• +1 253 205 0468 US\r\n• +1 253 215 8782 US (Tacoma)\r\n• +1 346 248 7799 US (Houston)\r\n• +1 360 209 5623 US\r\n• +1 386 347 5053 US\r\n• +1 507 473 4847 US\r\n• +1 564 217 2000 US\r\n• +1 669 444 9171 US\r\n• +1 669 900 6833 US (San Jose)\r\n• +1 689 278 1000 US\r\n• +1 719 359 4580 US\r\n\r\nMeeting ID: 861 8930 2441\r\n\r\nFind your local number: https://us02web.zoom.us/u/kcTuOrpraw\r\n\r\n\r\n\r\nMatt Conheady\r\nOwner | Executive Producer\r\n\r\nWORKINMAN\r\nWe Make Awesome Games & Experiences\r\nOffice: 585-662-5800\r\nworkinman.com<http://www.workinman.com/>\r\n________________________________\r\nFrom: Rick Mislan , PhD <rick@mislan.com>\r\nSent: Tuesday, August 5, 2025 12:06 PM\r\nTo: Matthew Conheady <matt.conheady@workinman.com>\r\nSubject: Re: Workinman Interactive\r\n\r\nCan we jump on a call Friday at 1p?\r\nSorry, I’ve been traveling\r\nThank you!\r\n\r\n\r\nRick Mislan, PhD\r\nwww.mislan.com<http://www.mislan.com/>\r\n[tel://(585) 797-9473](585) 797-9473\r\n\r\nOn July 29, 2025 at 12:25:04 PM, Matthew Conheady (matt.conheady@workinman.com<mailto:matt.conheady@workinman.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nGood times this week for me are:\r\n\r\nWednesday and Thursday\r\n\r\n  *\r\n12pm to 5:30pm EST\r\n\r\nFriday Morning\r\n\r\n  *\r\n10 am to 1pm EST\r\n\r\nAnd then next all week\r\n\r\n  *\r\n12pm to 5:30pm EST\r\n\r\n\r\n\r\nMatt Conheady\r\nOwner | Executive Producer\r\n\r\nWORKINMAN\r\nWe Make Awesome Games & Experiences\r\nOffice: 585-662-5800\r\nworkinman.com<http://www.workinman.com/>\r\n________________________________\r\nFrom: Rick Mislan , PhD <rick@mislan.com>\r\nSent: Monday, July 28, 2025 6:52 PM\r\nTo: Matthew Conheady <matt.conheady@workinman.com>\r\nSubject: Re: Workinman Interactive\r\n\r\nHey Matthew,\r\nSorry for the delay, we are still very interested in working with you and had a bit of team building work this week on our larger projects.\r\nThat all said, I’m going to introduce Dan Rugg to this conversation and re-engage with you next week if possible.\r\nPlease send some dates and times that would work for us.\r\nThank you,\r\nRick\r\n\r\n\r\n\r\nRick Mislan, PhD\r\nwww.mislan.com<http://www.mislan.com/>\r\n[tel://(585)%20797-9473](585) 797-9473\r\n\r\n\r\nOn July 28, 2025 at 5:28:15 PM, Matthew Conheady (matt.conheady@workinman.com<mailto:matt.conheady@workinman.com>) wrote:\r\n\r\nHi Rick!\r\n\r\nI\'m following up on our call in regards to game development for a ROV simulator game. We are still very much interested in working with you on this.\r\nI was wondering if you had a chance to compile a high-level list of requirements, direction, and business goals for the first iteration of the simulator? We would need thit to begin crafting a proposal.\r\n\r\nLet me know if you\'d like to jump on another call to discuss.\r\n\r\nBest,\r\nMatt Conheady\r\nOwner | Executive Producer\r\n\r\nWORKINMAN\r\nWe Make Awesome Games & Experiences\r\nOffice: 585-662-5800\r\nworkinman.com<http://www.workinman.com/>\r\n________________________________\r\nFrom: Jason Arena <jxafaa@rit.edu>\r\nSent: Tuesday, June 24, 2025 8:52 AM\r\nTo: Rick Mislan PhD <rick@mislan.com>\r\nCc: Workinman Interactive <opportunity@workinman.com>; Matthew Conheady <matt.conheady@workinman.com>\r\nSubject: Re: Workinman Interactive\r\n\r\nHi Rick!\r\n\r\nSounds awesome! I’m cc’ing Matt C on this.  I’m free everyday after 11:00\r\n\r\n\r\nSent from my iPhone\r\n\r\nOn Jun 24, 2025, at 8:37 AM, Rick Mislan , PhD <rick@mislan.com> wrote:\r\n\r\n﻿\r\nJason,\r\nCan we schedule a call next week?\r\nI’m in a new venture where\r\nthe investors wants to develop\r\na drone flight simulator game\r\nspecifically for collecting user data\r\nand using that to build better drone products…\r\n\r\nPlease let me know\r\nif we can jump on a zoom\r\nthis week or next.\r\n\r\nThanks much!\r\nRick\r\n\r\nRick Mislan, PhD\r\nwww.mislan.com<http://www.mislan.com/>\r\n[tel://(585)%20797-9473](585) 797-9473\r\n\r\n\r\nOn June 24, 2025 at 8:12:06 AM, Workinman Interactive (opportunity@workinman.com<mailto:opportunity@workinman.com>) wrote:\r\n\r\nIf you are not able to see this mail, click here<https://ehfas.r.ag.d.sendibm3.com/mk/mr/sh/SMJz09SDriOHVCvERqqB8vSnidXk/eUSi5oqtsSF7>\r\n[https://ehfas.img.ag.d.sendibm3.com/im/sh/G1V7WqIQLpmT.png?u=7xwQLFBtniwQn1M9aigqYDKglLFmSkK]<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeFuBnDUbVMwIGP52LehM/cf8aWw6mA19H>\r\nWe Make Awesome Games & Apps\r\nWHAT\'S NEW WITH WORKINMAN INTERACTIVE:\r\n­\r\nNew North Carolina Zoo App\r\n[https://ehfas.img.ag.d.sendibm3.com/im/sh/9Op68GIgPhho.jpg?u=7xwQLFBtniwQnF53sMbCsWIsPwjj3uq]<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeG13FMJYgX5mMENmJxHc/FUZ_0isJTQ1o>\r\nA Modern, Accessible, and Educational Experience for All Zoo Visitors\r\n\r\n\r\nWorkinman Interactive, in proud collaboration with theNorth Carolina Zoo<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeG7uhV8VrhFGS3gWIFrs/1wN6eOemqsu1>, is excited to announce the launch of the NCZoo app—now available on iOS and Android as of May 2025. Designed to enrich every visit to the Zoo, this cutting-edge app brings a fresh, interactive dimension to exploring wildlife, learning about conservation, and discovering STEM careers—all while making the Zoo experience more accessible and engaging for visitors of all ages and abilities.\r\n\r\n\r\n\r\nCheck out all the features the NCZoo app provides!<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGEm9dxT2rOkXszGGYS8/SMJ0IkYWjYcP>\r\n\r\n\r\n\r\nReady to make your park, zoo, or business more engaging? Contact us<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGLdbmmQE1YEdiI0Er2O/4u7jtCv00Xki>to unlock the next level of interactivity!\r\n\r\nGames for Brands\r\n[https://ehfas.img.ag.d.sendibm3.com/im/sh/VlvB4aMPBy9f.jpg?u=7xwQLFBtniwQnLwW1BYO2fmyFFThMV6]<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGSV3vbNPBhijXakD9ce/IBGbkTzxXQRB>\r\nWhat to Do, What to Avoid\r\n­\r\n\r\nBranded games aren’t just a creative brief and a lengthy project. They’re a balancing act between honoring brand identity and making something people actually want to play. It\'s a synergism between design and marketing, playfulness and precision. When done well, a brand-integrated game becomes more than just a promotional tool. It becomes a story that players want to be part of.\r\n\r\n\r\n\r\nHere’s what to do, and what<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5> <https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5> not<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5> <https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5> to do, when designing branded games.<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5>\r\n\r\nGame Design\r\n[https://ehfas.img.ag.d.sendibm3.com/im/sh/NGfPZb-DQ0eG.jpg?u=7xwQLFBtniwQnSnyA0VZCpH44YDff5M]<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGgDyDFHlW0gvCCE9knA/iMDvjtbwa753>\r\nCreating Better Digital Board Games\r\n­\r\n\r\nDigitizing a board game isn’t just a technical task. It’s often a translation challenge. The mechanics are usually airtight. The audience is often built-in. But if the game doesn’t feel right once it’s digital—if it loses its rhythm, clarity, or atmosphere—your audience will notice. And they may not return.\r\n\r\n\r\n\r\nAt Workinman, we can help studios and publishers translate beloved board games into dynamic digital experiences—without losing the essence of what makes them great. From AI tuning to UI design and atmosphere-building, we know how to turn cardboard and cardstock into something truly screen-worthy.\r\n\r\n\r\n\r\nRead more!<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGn5QM4EwgAB11Uy83NQ/pA0WH5Y_OhHf>\r\n\r\n\r\n\r\nIf you\'re ready to bring your game to life online, contact us<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGtwsUtC7qJf6qni6Lxg/WRTz3m_aq_gb> now to get started.\r\n\r\nWHAT WE DO\r\nWorkinman Interactive is a full-service creative studio for cross-platform games and engaging apps.\r\n\r\nCross-Platform Games and Apps<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsDhYHdOKPDMqP51WuUJq4/Kb-JAW4_rDR5>\r\n\r\nGamification<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsE9szpoilJI0f8qujT3Y8/E627oifEgKIx>\r\nVR & AR Experiences<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsEcDi2F77PDAvCgIYRnGC/1e0EzX4RBSOD>\r\n\r\nInteractive Digital Exhibits<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsF4YQEfVTV8LBGVgNQWyG/BAoIYNd1mxIX>\r\n\r\nEducational Games & eLearning<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsFWt8R5tpb3VRKL4CPGgK/Vpsh_R2QaPa->\r\n\r\nCompanion Apps for Smart Toys & Appliances<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsFzDqdWIBgyfhOAS1O0OO/t8za1-x1Rf0E>\r\n\r\nCONTACT US TODAY FOR A FREE CONSULTATION<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsGRYYpwgXmtpxRzpqMk6S/bevyJrJoW4cs>\r\n\r\nopportunity@workinman.com<mailto:opportunity@workinman.com>\r\n\r\nWorkinman Interactive\r\n\r\n1 East Avenue, 5th Floor, 14604, Rochester\r\n\r\nThis email was sent to rick@mislan.com\r\n\r\nYou\'ve received this email because you\'ve subscribed to our newsletter.\r\n\r\nUnsubscribe<https://ehfas.r.ag.d.sendibm3.com/mk/un/v2/sh/SMJz09a0vkbXrIOuDazyHiLuyL9s/xQ7JJO10AbkG>\r\n',0,0,0,0,0,0,'2025-08-14 22:16:09','2025-12-09 19:27:42','2025-12-09 19:27:42','2025-12-09 19:27:42',NULL,NULL,NULL),
(624,4,'<CAGgBgfBFka0hpP7g1gXB2Nzf9JygPQfpkTKBes6nfANxUfki3Q@mail.gmail.com>',NULL,NULL,'Surmotech','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div class=\"gmail_default\" style=\"font-size:small\">Surmotech</div><div class=\"gmail_default\" style=\"font-size:small\">Contract manufacturer</div><div class=\"gmail_default\" style=\"font-size:small\"><a href=\"https://maps.app.goo.gl/ALU2fTWKxypfJnnY9\">https://maps.app.goo.gl/ALU2fTWKxypfJnnY9</a><br></div><div class=\"gmail_default\" style=\"font-size:small\"><a href=\"https://www.surmotech.com/\">https://www.surmotech.com/</a><br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div></div>','Surmotech\r\nContract manufacturer\r\nhttps://maps.app.goo.gl/ALU2fTWKxypfJnnY9\r\nhttps://www.surmotech.com/',0,0,0,0,0,0,'2025-08-15 16:35:23','2025-12-09 19:27:43','2025-12-09 19:27:43','2025-12-09 19:27:43',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(625,4,'<Q7EGDKX271NSJGXRHM5GRKTHN0@news.proton.me>',NULL,NULL,'Back up the photos on your phone to Proton Drive','no-reply@notify.proton.me','Proton','--b2=_LqveOVFe01Hu5VF4pdmKx7rJwnpheDWF8hKveWuWVA\r\nContent-Type: text/html; charset=utf-8\r\nContent-Transfer-Encoding: base64\r\n\r\nPCFET0NUWVBFIGh0bWw+DQo8P3htbCBlbmNvZGluZz0idXRmLTgiID8+PGh0bWwgeG1sbnM9Imh0\r\ndHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWwiIHhtbG5zOnY9InVybjpzY2hlbWFzLW1pY3Jvc29m\r\ndC1jb206dm1sIiB4bWxuczpvPSJ1cm46c2NoZW1hcy1taWNyb3NvZnQtY29tOm9mZmljZTpvZmZp\r\nY2UiPg0KDQo8aGVhZD48bWV0YSBodHRwLWVxdWl2PSJDb250ZW50LVR5cGUiIGNvbnRlbnQ9InRl\r\neHQvaHRtbDsgY2hhcnNldD11dGYtOCI+DQogICAgPCEtLSBOQU1FOiAxIENPTFVNTiAtLT4NCiAg\r\nICA8IS0tW2lmIGd0ZSBtc28gMTVdPg0KICAgIDx4bWw+DQogICAgICAgIDxvOk9mZmljZURvY3Vt\r\nZW50U2V0dGluZ3M+DQogICAgICAgIDxvOkFsbG93UE5HLz4NCiAgICAgICAgPG86UGl4ZWxzUGVy\r\nSW5jaD45NjwvbzpQaXhlbHNQZXJJbmNoPg0KICAgICAgICA8L286T2ZmaWNlRG9jdW1lbnRTZXR0\r\naW5ncz4NCiAgICA8L3htbD4NCiAgICA8IVtlbmRpZl0tLT4NCiAgICA8bWV0YSBjaGFyc2V0PSJV\r\nVEYtOCI+DQogICAgPG1ldGEgbmFtZT0ieC1hcHBsZS1kaXNhYmxlLW1lc3NhZ2UtcmVmb3JtYXR0\r\naW5nIj4NCiAgICA8bWV0YSBuYW1lPSJmb3JtYXQtZGV0ZWN0aW9uIiBjb250ZW50PSJ0ZWxlcGhv\r\nbmU9bm8sIGRhdGU9bm8sIGFkZHJlc3M9bm8sIGVtYWlsPW5vLCB1cmw9bm8iPg0KICAgIDxtZXRh\r\nIGh0dHAtZXF1aXY9IlgtVUEtQ29tcGF0aWJsZSIgY29udGVudD0iSUU9ZWRnZSI+DQogICAgPG1l\r\ndGEgbmFtZT0idmlld3BvcnQiIGNvbnRlbnQ9IndpZHRoPWRldmljZS13aWR0aCwgaW5pdGlhbC1z\r\nY2FsZT0xIj4NCiAgICA8bWV0YSBuYW1lPSJhdXRob3IiIGNvbnRlbnQ9IlByb3RvbiAmbHQ7bm8t\r\ncmVwbHlAbmV3cy5wcm90b24ubWUmZ3Q7Ij4NCiAgICA8bWV0YSBuYW1lPSJkZXNjcmlwdGlvbiIg\r\nY29udGVudD0iVHVybiBvbiBhdXRvbWF0aWMgYmFja3VwIGFuZCBrZWVwIHlvdXIgcGhvdG9zIGFu\r\nZCB2aWRlb3Mgc2FmZSBvbiB5b3VyIG93biBwcml2YXRlIGNsb3VkLiI+DQogICAgPHRpdGxlPkJh\r\nY2sgdXAgdGhlIHBob3RvcyBvbiB5b3VyIHBob25lIHRvIFByb3RvbiBEcml2ZTwvdGl0bGU+DQoN\r\nCg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj5AbWVkaWEgb25seSBzY3JlZW4gYW5kIChtaW4td2lk\r\ndGg6NzY4cHgpey50ZW1wbGF0ZUNvbnRhaW5lcnt3aWR0aDogNjAwcHggIWltcG9ydGFudDt9fUBt\r\nZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1heC13aWR0aDogNTIwcHgpe2JvZHksdGFibGUsdGQscCxh\r\nLGxpey13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogbm9uZSAhaW1wb3J0YW50O31ib2R5e3dpZHRo\r\nOiAxMDAlICFpbXBvcnRhbnQ7IG1pbi13aWR0aDogMTAwJSAhaW1wb3J0YW50O30ubWNuUmV0aW5h\r\nSW1hZ2V7bWF4LXdpZHRoOiAxMDAlICFpbXBvcnRhbnQ7fS5tY25JbWFnZXt3aWR0aDogMTAwJSAh\r\naW1wb3J0YW50O30ubWNuVGV4dENvbnRlbnRDb250YWluZXJ7bWF4LXdpZHRoOiAxMDAlICFpbXBv\r\ncnRhbnQ7IHdpZHRoOiAxMDAlICFpbXBvcnRhbnQ7fS5tY25UZXh0Q29udGVudHtwYWRkaW5nLXJp\r\nZ2h0OiAzMnB4ICFpbXBvcnRhbnQ7IHBhZGRpbmctbGVmdDogMzJweCAhaW1wb3J0YW50O30ubWNu\r\nVGV4dENvbnRlbnQgdWx7cGFkZGluZy1pbmxpbmUtc3RhcnQ6IDI0cHggIWltcG9ydGFudDt9I3Rl\r\nbXBsYXRlQm9keSAubWNuVGV4dENvbnRlbnQsI3RlbXBsYXRlQm9keSAubWNuVGV4dENvbnRlbnQg\r\ncHtmb250LXNpemU6IDE2cHggIWltcG9ydGFudDsgbGluZS1oZWlnaHQ6IDEuNWVtICFpbXBvcnRh\r\nbnQ7fSN0ZW1wbGF0ZUZvb3RlciAubWNuVGV4dENvbnRlbnQsI3RlbXBsYXRlRm9vdGVyIC5tY25U\r\nZXh0Q29udGVudCBwe2ZvbnQtc2l6ZTogMTRweCAhaW1wb3J0YW50OyBsaW5lLWhlaWdodDogMS41\r\nZW0gIWltcG9ydGFudDt9I3RlbXBsYXRlRm9vdGVyIC5tY25Gb2xsb3dDb250ZW50SXRlbUNvbnRh\r\naW5lcntwYWRkaW5nLWxlZnQ6IDJweCAhaW1wb3J0YW50OyBwYWRkaW5nLXJpZ2h0OiAycHggIWlt\r\ncG9ydGFudDt9fUBtZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1heC13aWR0aDogMzUycHgpey5tY25G\r\nb2xsb3dJY29uQ29udGVudCwubWNuRm9sbG93SWNvbkNvbnRlbnQgaW1nLnNvY2lhbC1pY29ue3dp\r\nZHRoOiAzOHB4ICFpbXBvcnRhbnQ7IGhlaWdodDogMzhweCAhaW1wb3J0YW50O30jdGVtcGxhdGVG\r\nb290ZXIgLm1jbkZvbGxvd0NvbnRlbnRJdGVtQ29udGFpbmVye3BhZGRpbmctbGVmdDogMCAhaW1w\r\nb3J0YW50OyBwYWRkaW5nLXJpZ2h0OiAwICFpbXBvcnRhbnQ7fX08L3N0eWxlPjwvaGVhZD4NCg0K\r\nPGJvZHkgc3R5bGU9ImhlaWdodDogMTAwJTsgbWFyZ2luOiAwOyBwYWRkaW5nOiAwOyB3aWR0aDog\r\nMTAwJTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgYmFja2dyb3VuZC1jb2xvcjogI2Y1ZjRmMjsiPg0KICAgIDwhLS1baWYgIWd0ZSBt\r\nc28gOV0+PCEtLS0tPjxzcGFuIGNsYXNzPSJtY25QcmV2aWV3VGV4dCIgc3R5bGU9ImZvbnQtc2l6\r\nZTogMHB4OyBsaW5lLWhlaWdodDogMHB4OyBtYXgtaGVpZ2h0OiAwcHg7IG1heC13aWR0aDogMHB4\r\nOyBvcGFjaXR5OiAwOyBvdmVyZmxvdzogaGlkZGVuOyB2aXNpYmlsaXR5OiBoaWRkZW47IG1zby1o\r\naWRlOiBhbGw7IGRpc3BsYXk6IG5vbmU7Ij5UdXJuIG9uIGF1dG9tYXRpYyBiYWNrdXAgYW5kIGtl\r\nZXAgeW91ciBwaG90b3MgYW5kIHZpZGVvcyBzYWZlIG9uIHlvdXIgb3duIHByaXZhdGUgY2xvdWQu\r\nPC9zcGFuPjwhLS08IVtlbmRpZl0tLT4NCiAgICA8Y2VudGVyPg0KICAgICAgICA8dGFibGUgYWxp\r\nZ249ImNlbnRlciIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIGhl\r\naWdodD0iMTAwJSIgd2lkdGg9IjEwMCUiIGlkPSJib2R5VGFibGUiIHN0eWxlPSJib3JkZXItY29s\r\nbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6\r\nIDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgaGVpZ2h0OiAxMDAlOyBtYXJnaW46IDA7IHBhZGRpbmc6IDA7IHdpZHRoOiAxMDAl\r\nOyBiYWNrZ3JvdW5kLWNvbG9yOiAjZjVmNGYyOyI+DQogICAgICAgICAgICA8dHI+DQogICAgICAg\r\nICAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0idG9wIiBpZD0iYm9keUNlbGwiIHN0\r\neWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgaGVpZ2h0OiAxMDAlOyBtYXJn\r\naW46IDA7IHBhZGRpbmc6IDhweDsgd2lkdGg6IDEwMCU7IGJvcmRlci10b3A6IDA7Ij4NCiAgICAg\r\nICAgICAgICAgICAgICAgPCEtLSBCRUdJTiBURU1QTEFURSAvLyAtLT4NCiAgICAgICAgICAgICAg\r\nICAgICAgPCEtLVtpZiAoZ3RlIG1zbyA5KXwoSUUpXT4NCiAgICAgICAgICAgICAgICAgICAgPHRh\r\nYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5n\r\nPSIwIiB3aWR0aD0iNjAwIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij48dHI+PHRkIGFsaWduPSJjZW50\r\nZXIiIHZhbGlnbj0idG9wIiB3aWR0aD0iNjAwIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij4NCiAgICAg\r\nICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICAgICAgICAgIDx0YWJsZSBi\r\nb3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNs\r\nYXNzPSJ0ZW1wbGF0ZUNvbnRhaW5lciIgc3R5bGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7\r\nIG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBib3JkZXI6\r\nIDA7IGJvcmRlci1yYWRpdXM6IDE2cHg7IG1heC13aWR0aDogNjAwcHg7Ij4NCjx0cj4NCiAgICA8\r\ndGQgdmFsaWduPSJ0b3AiIGlkPSJ0ZW1wbGF0ZUhlYWRlciIgc3R5bGU9Im1zby1saW5lLWhlaWdo\r\ndC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyBiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmZmZmOyBiYWNrZ3JvdW5k\r\nLWltYWdlOiBub25lOyBiYWNrZ3JvdW5kLXJlcGVhdDogbm8tcmVwZWF0OyBiYWNrZ3JvdW5kLXBv\r\nc2l0aW9uOiBjZW50ZXI7IGJhY2tncm91bmQtc2l6ZTogY292ZXI7IGJvcmRlci10b3A6IDA7IGJv\r\ncmRlci1ib3R0b206IDA7IHBhZGRpbmctdG9wOiAwcHg7IHBhZGRpbmctYm90dG9tOiAwcHg7IGJv\r\ncmRlci1yYWRpdXM6IDE2cHggMTZweCAwIDA7Ij4NCiAgICAgICAgPHRhYmxlIGJvcmRlcj0iMCIg\r\nY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jbklt\r\nYWdlQmxvY2siIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFw\r\nc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQog\r\nICAgICAgICAgICA8dGJvZHkgY2xhc3M9Im1jbkltYWdlQmxvY2tPdXRlciI+DQogICAgICAgICAg\r\nICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJt\r\nY25JbWFnZUJsb2NrSW5uZXIiIHN0eWxlPSJwYWRkaW5nOiAxNnB4OyBtc28tbGluZS1oZWlnaHQt\r\ncnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRhYmxlIGFsaWdu\r\nPSJsZWZ0IiB3aWR0aD0iMTAwJSIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNp\r\nbmc9IjAiIGNsYXNzPSJtY25JbWFnZUNvbnRlbnRDb250YWluZXIiIHN0eWxlPSJtaW4td2lkdGg6\r\nIDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsg\r\nbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtp\r\ndC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgY2xhc3M9Im1jbkltYWdlQ29udGVudCIgdmFs\r\naWduPSJ0b3AiIHN0eWxlPSJwYWRkaW5nOiAxNnB4OyB0ZXh0LWFsaWduOiBjZW50ZXI7IG1zby1s\r\naW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdl\r\nYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgPGEgaHJlZj0iaHR0cHM6Ly9wcm90b24ubWUvIiB0YXJnZXQ9Il9ibGFu\r\nayIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBsaW5lLWhlaWdodDog\r\naW5oZXJpdDsgY29sb3I6ICM2ZDRhZmY7IGZvbnQtd2VpZ2h0OiBub3JtYWw7IHRleHQtZGVjb3Jh\r\ndGlvbjogdW5kZXJsaW5lOyI+PGltZyBhbGlnbj0iY2VudGVyIiBhbHQ9IlByb3RvbiIgc3JjPSJj\r\naWQ6ZWYyYTRkZjdiMDZkOWZjYmJmMWFAbmV3cy5wcm90b24ubWUiIHdpZHRoPSIyMTAiIHN0eWxl\r\nPSJ3aWR0aDogMzkuMTc5MSU7IG1heC13aWR0aDogNDIwcHg7IHBhZGRpbmctYm90dG9tOiAwOyB2\r\nZXJ0aWNhbC1hbGlnbjogYm90dG9tOyBib3JkZXI6IDA7IGhlaWdodDogYXV0bzsgb3V0bGluZTog\r\nbm9uZTsgdGV4dC1kZWNvcmF0aW9uOiBub25lOyAtbXMtaW50ZXJwb2xhdGlvbi1tb2RlOiBiaWN1\r\nYmljOyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXpl\r\nOiAxNnB4OyBsaW5lLWhlaWdodDogMS41ZW07IGNvbG9yOiAjNmQ0YWZmOyBkaXNwbGF5OiBpbmxp\r\nbmU7Ij48L2E+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAg\r\nICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICA8\r\nL3Rib2R5Pg0KICAgICAgICA8L3RhYmxlPg0KICAgIDwvdGQ+DQo8L3RyPg0KPHRyPg0KICAgIDx0\r\nZCB2YWxpZ249InRvcCIgaWQ9InRlbXBsYXRlQm9keSIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1y\r\ndWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyBiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmZmZmOyBiYWNrZ3JvdW5kLWlt\r\nYWdlOiBub25lOyBiYWNrZ3JvdW5kLXJlcGVhdDogbm8tcmVwZWF0OyBiYWNrZ3JvdW5kLXBvc2l0\r\naW9uOiBjZW50ZXI7IGJhY2tncm91bmQtc2l6ZTogY292ZXI7IGJvcmRlci10b3A6IDA7IGJvcmRl\r\nci1ib3R0b206IDA7IHBhZGRpbmctdG9wOiA4cHg7IHBhZGRpbmctYm90dG9tOiA4cHg7Ij4NCjx0\r\nYWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEw\r\nMCUiIGNsYXNzPSJtY25EaXZpZGVyQmxvY2siIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJvcmRl\r\nci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJz\r\ncGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyB0YWJsZS1sYXlvdXQ6IGZpeGVkOyI+DQogICAgPHRib2R5IGNsYXNzPSJt\r\nY25EaXZpZGVyQmxvY2tPdXRlciI+DQogICAgICAgIDx0cj4NCiAgICAgICAgICAgIDx0ZCBjbGFz\r\ncz0ibWNuRGl2aWRlckJsb2NrSW5uZXIiIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IHBhZGRpbmc6\r\nIDAgMzJweCAwcHggMzJweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAg\r\nICAgICAgICAgICAgICA8dGFibGUgY2xhc3M9Im1jbkRpdmlkZXJDb250ZW50IiBib3JkZXI9IjAi\r\nIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIHN0eWxlPSJtaW4t\r\nd2lkdGg6IDEwMCU7IGJvcmRlci10b3A6IDFweCBzb2xpZCAjRjVGNEYyOyBib3JkZXItY29sbGFw\r\nc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBw\r\ndDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAg\r\nICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIHN0eWxlPSJtc28tbGlu\r\nZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJr\r\naXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICA8c3Bhbj48L3NwYW4+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAg\r\nICAgICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+\r\nDQogICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8IS0tDQogICAgICAg\r\nICAgICAgICAgPHRkIGNsYXNzPSJtY25EaXZpZGVyQmxvY2tJbm5lciIgc3R5bGU9InBhZGRpbmc6\r\nIDMycHg7Ij4NCiAgICAgICAgICAgICAgICA8aHIgY2xhc3M9Im1jbkRpdmlkZXJDb250ZW50IiBz\r\ndHlsZT0iYm9yZGVyLWJvdHRvbS1jb2xvcjpub25lOyBib3JkZXItbGVmdC1jb2xvcjpub25lOyBi\r\nb3JkZXItcmlnaHQtY29sb3I6bm9uZTsgYm9yZGVyLWJvdHRvbS13aWR0aDowOyBib3JkZXItbGVm\r\ndC13aWR0aDowOyBib3JkZXItcmlnaHQtd2lkdGg6MDsgbWFyZ2luLXRvcDowOyBtYXJnaW4tcmln\r\naHQ6MDsgbWFyZ2luLWJvdHRvbTowOyBtYXJnaW4tbGVmdDowOyIgLz4NCiAgICAgICAgICAgICAg\r\nICAtLT4NCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwv\r\ndGFibGU+DQo8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAi\r\nIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuU3BhY2VyQmxvY2siIHN0eWxlPSJtaW4td2lkdGg6IDEw\r\nMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNv\r\nLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyB0YWJsZS1sYXlvdXQ6IGZpeGVkOyI+DQogICAgPHRib2R5\r\nIGNsYXNzPSJtY25TcGFjZXJCbG9ja091dGVyIj4NCiAgICAgICAgPHRyPg0KICAgICAgICAgICAg\r\nPHRkIGNsYXNzPSJtY25TcGFjZXJCbG9ja0lubmVyIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBw\r\nYWRkaW5nOiAxNnB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAg\r\nICAgICAgICAgIDxzcGFuPjwvc3Bhbj4NCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgIDwvdHI+\r\nDQogICAgPC90Ym9keT4NCjwvdGFibGU+DQo8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0i\r\nMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dEJsb2NrIiBzdHls\r\nZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUt\r\nbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgIDx0Ym9keSBjbGFz\r\ncz0ibWNuVGV4dEJsb2NrT3V0ZXIiPg0KICAgICAgICA8dHI+DQogICAgICAgICAgICA8dGQgdmFs\r\naWduPSJ0b3AiIGNsYXNzPSJtY25UZXh0QmxvY2tJbm5lciIgc3R5bGU9Im1zby1saW5lLWhlaWdo\r\ndC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAg\r\nICAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0ibGVmdCIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0i\r\nMCIgY2VsbHBhZGRpbmc9IjAiIHdpZHRoPSIxMDAlIiBzdHlsZT0id2lkdGg6MTAwJTsiPjx0cj4N\r\nCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgICAgIDwhLS1baWYg\r\nbXNvXT4NCiAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIHdpZHRoPSI2MDAiIHN0eWxl\r\nPSJ3aWR0aDo2MDBweDsiPg0KICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAg\r\nICAgICAgIDx0YWJsZSBhbGlnbj0ibGVmdCIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2Vs\r\nbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dENvbnRlbnRDb250YWluZXIi\r\nIHN0eWxlPSJtYXgtd2lkdGg6IDEwMCU7IG1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNl\r\nOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7\r\nIC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAg\r\nICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xh\r\nc3M9Im1jblRleHRDb250ZW50IiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7\r\nIC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7IHdvcmQtYnJlYWs6IGJyZWFrLXdvcmQ7IGNvbG9yOiAjMGMwYzE0OyBmb250LWZhbWlseTog\r\nQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdo\r\ndDogMS41ZW07IHRleHQtYWxpZ246IGxlZnQ7IHBhZGRpbmctdG9wOiA4cHg7IHBhZGRpbmctYm90\r\ndG9tOiAxMnB4OyBwYWRkaW5nLXJpZ2h0OiAzMnB4OyBwYWRkaW5nLWxlZnQ6IDMycHg7Ij4NCiAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9Im1jblRleHRDb250ZW50Q29u\r\ndGFpbmVyIiBzdHlsZT0icGFkZGluZzogMHB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3Rs\r\neTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5z\r\nLXNlcmlmOyBmb250LXNpemU6IDE2cHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgdGV4dC1hbGlnbjog\r\nbGVmdDsgbWFyZ2luOiAxMnB4IDBweDsiPkRlYXIgUHJvdG9uIGNvbW11bml0eSBtZW1iZXIsPC9w\r\nPjxwIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIgc3R5bGU9InBhZGRpbmc6IDBweDsg\r\nbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGNvbG9yOiAjMGMwYzE0OyBmb250LWZh\r\nbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBsaW5l\r\nLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGxlZnQ7IG1hcmdpbjogMTJweCAwcHg7Ij5EaWQg\r\neW91IGtub3cgeW91IGNhbiBhdXRvbWF0aWNhbGx5IGJhY2sgdXAgeW91ciBwaG90b3MgYW5kIHZp\r\nZGVvcyB0byB5b3VyIFByb3RvbiBEcml2ZSBhY2NvdW50IHdpdGggb3VyIG1vYmlsZSBhcHBzPyBL\r\nZWVwIHlvdXIgcHJpdmF0ZSBtZW1vcmllcyBzYWZlIGFuZCBhY2Nlc3NpYmxlLCBubyBtYXR0ZXIg\r\nd2hlcmUgeW91IGFyZS48L3A+PHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBh\r\nZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBz\r\nZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAg\r\nICA8dGJvZHk+DQogICAgPHRyPg0KICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJ0\r\nb3AiIHN0eWxlPSJwYWRkaW5nLXJpZ2h0OiAyMnB4OyBwYWRkaW5nLWxlZnQ6IDIycHg7IG1zby1s\r\naW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdl\r\nYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICA8IS0tW2lmIG1zb10+\r\nDQogICAgICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIwIiBjZWxsc3BhY2lu\r\nZz0iMCIgY2VsbHBhZGRpbmc9IjAiPg0KICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAg\r\nIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4N\r\nCiAgICAgICAgICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJ0b3AiPg0KICAgICAg\r\nICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2Vu\r\ndGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgc3R5bGU9ImRp\r\nc3BsYXk6IGlubGluZTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFj\r\nZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAg\r\nPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJtY25JbWFnZUxpc3RJdGVtQ29udGFpbmVyIiBzdHls\r\nZT0icGFkZGluZy10b3A6IDhweDsgcGFkZGluZy1yaWdodDogNnB4OyBwYWRkaW5nLWJvdHRvbTog\r\nOHB4OyBwYWRkaW5nLWxlZnQ6IDZweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1t\r\ncy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFk\r\nZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuSW1hZ2VMaXN0\r\nSXRlbSIgc3R5bGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6\r\nIDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGFsaWduPSJsZWZ0IiB2YWxp\r\nZ249Im1pZGRsZSIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJsZWZ0\r\nIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IiIgc3R5\r\nbGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNv\r\nLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0ibWlkZGxlIiB3aWR0aD0iMjAwIiBjbGFz\r\ncz0ibWNuSW1hZ2VMaXN0Q29udGVudCIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFj\r\ndGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgPGEgdGFyZ2V0PSJfYmxhbmsiIGhyZWY9Imh0dHBzOi8vcGxheS5nb29nbGUuY29tL3N0\r\nb3JlL2FwcHMvZGV0YWlscz9pZD1tZS5wcm90b24uYW5kcm9pZC5kcml2ZSIgc3R5bGU9Im1zby1s\r\naW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdl\r\nYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBsaW5lLWhlaWdodDogaW5oZXJpdDsgY29sb3I6\r\nICM2ZDRhZmY7IGZvbnQtd2VpZ2h0OiBpbmhlcml0OyB0ZXh0LWRlY29yYXRpb246IHVuZGVybGlu\r\nZTsgZGlzcGxheTogaW5saW5lLWJsb2NrOyI+PGltZyBhbGlnbj0iY2VudGVyIiBhbHQ9Ikdvb2ds\r\nZSBQbGF5IFN0b3JlIGJ1dHRvbiIgc3JjPSJjaWQ6OTY2NDU5MjA3Y2EzMzk4YjVlNGFAbmV3cy5w\r\ncm90b24ubWUiIHdpZHRoPSIyMDAiIGNsYXNzPSJtY25JbWFnZSIgc3R5bGU9Im1heC13aWR0aDog\r\nMjAwcHg7IHBhZGRpbmctYm90dG9tOiAwOyB2ZXJ0aWNhbC1hbGlnbjogdG9wOyBib3JkZXI6IDA7\r\nIG91dGxpbmU6IG5vbmU7IHRleHQtZGVjb3JhdGlvbjogbm9uZTsgLW1zLWludGVycG9sYXRpb24t\r\nbW9kZTogYmljdWJpYzsgYm9yZGVyLXJhZGl1czogMHB4OyBmb250LWZhbWlseTogQXJpYWwsIEhl\r\nbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdodDogMS41ZW07\r\nIGNvbG9yOiAjNjU2NTY1OyBoZWlnaHQ6IGF1dG87IGRpc3BsYXk6IGlubGluZTsiPjwvYT4gICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAg\r\nICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAg\r\nICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAg\r\nICAgPC90ZD4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAgICAgPHRkIGFsaWduPSJjZW50\r\nZXIiIHZhbGlnbj0idG9wIj4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAg\r\nICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIg\r\nY2VsbHNwYWNpbmc9IjAiIHN0eWxlPSJkaXNwbGF5OiBpbmxpbmU7IGJvcmRlci1jb2xsYXBzZTog\r\nY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAt\r\nbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyI+DQogICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgPHRy\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuSW1h\r\nZ2VMaXN0SXRlbUNvbnRhaW5lciIgc3R5bGU9InBhZGRpbmctdG9wOiA4cHg7IHBhZGRpbmctcmln\r\naHQ6IDZweDsgcGFkZGluZy1ib3R0b206IDhweDsgcGFkZGluZy1sZWZ0OiA2cHg7IG1zby1saW5l\r\nLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtp\r\ndC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0i\r\nMTAwJSIgY2xhc3M9Im1jbkltYWdlTGlzdEl0ZW0iIHN0eWxlPSJib3JkZXItY29sbGFwc2U6IGNv\r\nbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1z\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsi\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgIDx0ZCBhbGlnbj0ibGVmdCIgdmFsaWduPSJtaWRkbGUiIHN0eWxlPSJtc28tbGluZS1oZWln\r\naHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgIDx0YWJsZSBhbGlnbj0ibGVmdCIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2Vs\r\nbHNwYWNpbmc9IjAiIHdpZHRoPSIiIHN0eWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBt\r\nc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249\r\nIm1pZGRsZSIgd2lkdGg9IjIwMCIgY2xhc3M9Im1jbkltYWdlTGlzdENvbnRlbnQiIHN0eWxlPSJt\r\nc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxhIHRhcmdldD0iX2JsYW5rIiBocmVmPSJo\r\ndHRwczovL2FwcHMuYXBwbGUuY29tL2FwcC9pZDE1MDk2Njc4NTEiIHN0eWxlPSJtc28tbGluZS1o\r\nZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsgbGluZS1oZWlnaHQ6IGluaGVyaXQ7IGNvbG9yOiAjNmQ0\r\nYWZmOyBmb250LXdlaWdodDogaW5oZXJpdDsgdGV4dC1kZWNvcmF0aW9uOiB1bmRlcmxpbmU7IGRp\r\nc3BsYXk6IGlubGluZS1ibG9jazsiPjxpbWcgYWxpZ249ImNlbnRlciIgYWx0PSJHb29nbGUgUGxh\r\neSBTdG9yZSBidXR0b24iIHNyYz0iY2lkOmVlNWRhMjE2NjNmZDEzZTYyMjY4QG5ld3MucHJvdG9u\r\nLm1lIiB3aWR0aD0iMjAwIiBjbGFzcz0ibWNuSW1hZ2UiIHN0eWxlPSJtYXgtd2lkdGg6IDIwMHB4\r\nOyBwYWRkaW5nLWJvdHRvbTogMDsgdmVydGljYWwtYWxpZ246IHRvcDsgYm9yZGVyOiAwOyBvdXRs\r\naW5lOiBub25lOyB0ZXh0LWRlY29yYXRpb246IG5vbmU7IC1tcy1pbnRlcnBvbGF0aW9uLW1vZGU6\r\nIGJpY3ViaWM7IGJvcmRlci1yYWRpdXM6IDBweDsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRp\r\nY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyBjb2xv\r\ncjogIzY1NjU2NTsgaGVpZ2h0OiBhdXRvOyBkaXNwbGF5OiBpbmxpbmU7Ij48L2E+ICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Rk\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwv\r\ndGFibGU+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAg\r\nICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgIDwv\r\ndGFibGU+DQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgICAgIDwv\r\ndGQ+DQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgPC90YWJsZT4N\r\nCiAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICA8L3RkPg0KICAgIDwvdHI+DQogICAg\r\nPC90Ym9keT4NCjwvdGFibGU+DQo8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2Vs\r\nbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuU3BhY2VyQmxvY2siIHN0eWxlPSJt\r\naW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3Bh\r\nY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyB0YWJsZS1sYXlvdXQ6IGZpeGVkOyI+\r\nDQogICAgPHRib2R5IGNsYXNzPSJtY25TcGFjZXJCbG9ja091dGVyIj4NCiAgICAgICAgPHRyPg0K\r\nICAgICAgICAgICAgPHRkIGNsYXNzPSJtY25TcGFjZXJCbG9ja0lubmVyIiBzdHlsZT0ibWluLXdp\r\nZHRoOiAxMDAlOyBwYWRkaW5nOiAxNnB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsiPg0KICAgICAgICAgICAgICAgIDxzcGFuPjwvc3Bhbj4NCiAgICAgICAgICAgIDwvdGQ+DQog\r\nICAgICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwvdGFibGU+DQogICAgPHRhYmxlIGJvcmRlcj0i\r\nMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1j\r\nbkltYWdlQmxvY2siIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29s\r\nbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+\r\nDQogICAgICAgIDx0Ym9keSBjbGFzcz0ibWNuSW1hZ2VCbG9ja091dGVyIj4NCiAgICAgICAgICAg\r\nIDx0cj4NCiAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJtY25JbWFnZUJs\r\nb2NrSW5uZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAg\r\nICAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImxlZnQiIHdpZHRoPSIxMDAlIiBib3JkZXI9\r\nIjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgY2xhc3M9Im1jbkltYWdlQ29udGVu\r\ndENvbnRhaW5lciIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xs\r\nYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4N\r\nCiAgICAgICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0ibWNu\r\nSW1hZ2VDb250ZW50IiB2YWxpZ249InRvcCIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBl\r\neGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyB0ZXh0LWFsaWduOiBjZW50ZXI7IHBhZGRpbmctdG9wOiA4cHg7IHBhZGRpbmct\r\nYm90dG9tOiA4cHg7IHBhZGRpbmctcmlnaHQ6IDMycHg7IHBhZGRpbmctbGVmdDogMzJweDsiPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGltZyBhbGlnbj0iY2VudGVyIiBh\r\nbHQ9IlBob3RvIiBzcmM9ImNpZDphOGRhYjE5NWFiYTE3N2FlYjMwYkBuZXdzLnByb3Rvbi5tZSIg\r\nd2lkdGg9IjUzNiIgY2xhc3M9Im1jbkltYWdlIiBzdHlsZT0ibWF4LXdpZHRoOiAxMDcycHg7IHBh\r\nZGRpbmctYm90dG9tOiAwOyB2ZXJ0aWNhbC1hbGlnbjogYm90dG9tOyBib3JkZXI6IDA7IG91dGxp\r\nbmU6IG5vbmU7IHRleHQtZGVjb3JhdGlvbjogbm9uZTsgLW1zLWludGVycG9sYXRpb24tbW9kZTog\r\nYmljdWJpYzsgYm9yZGVyLXJhZGl1czogMTJweDsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRp\r\nY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyBjb2xv\r\ncjogIzY1NjU2NTsgaGVpZ2h0OiBhdXRvOyBkaXNwbGF5OiBpbmxpbmU7Ij4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAg\r\nICAgICAgICA8L3RkPg0KICAgICAgICAgICAgPC90cj4NCiAgICAgICAgPC90Ym9keT4NCiAgICA8\r\nL3RhYmxlPg0KICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2lu\r\nZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25TcGFjZXJCbG9jayIgc3R5bGU9Im1pbi13aWR0\r\naDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0\r\nOyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Vi\r\na2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHRhYmxlLWxheW91dDogZml4ZWQ7Ij4NCiAgICA8\r\ndGJvZHkgY2xhc3M9Im1jblNwYWNlckJsb2NrT3V0ZXIiPg0KICAgICAgICA8dHI+DQogICAgICAg\r\nICAgICA8dGQgY2xhc3M9Im1jblNwYWNlckJsb2NrSW5uZXIiIHN0eWxlPSJtaW4td2lkdGg6IDEw\r\nMCU7IHBhZGRpbmc6IDE2cHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQog\r\nICAgICAgICAgICAgICAgPHNwYW4+PC9zcGFuPg0KICAgICAgICAgICAgPC90ZD4NCiAgICAgICAg\r\nPC90cj4NCiAgICA8L3Rib2R5Pg0KPC90YWJsZT4NCjxwIGNsYXNzPSJtY25UZXh0Q29udGVudENv\r\nbnRhaW5lciIgc3R5bGU9InBhZGRpbmc6IDBweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0\r\nbHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IGNvbG9yOiAjMGMwYzE0OyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fu\r\ncy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246\r\nIGxlZnQ7IG1hcmdpbjogMTJweCAwcHg7Ij5XaHkgYmFja3VwIHlvdXIgcGhvdG9zIGFuZCB2aWRl\r\nb3Mgd2l0aCBvdXIgbW9iaWxlIGFwcD88L3A+PHVsIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVs\r\nZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0\r\naWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE2cHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgdGV4\r\ndC1hbGlnbjogbGVmdDsgcGFkZGluZy1pbmxpbmUtc3RhcnQ6IDMycHg7Ij48bGkgc3R5bGU9Im1z\r\nby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBtYXJnaW46IDEycHggMDsgbGluZS1oZWln\r\naHQ6IGluaGVyaXQ7Ij48YiBzdHlsZT0ibGluZS1oZWlnaHQ6IGluaGVyaXQ7Ij5Db21wbGV0ZSBw\r\ncml2YWN5PC9iPjogQWxsIHBob3RvcyBhbmQgdGhlaXIgbWV0YWRhdGEgYXJlIHByb3RlY3RlZCBi\r\neSBlbmQtdG8tZW5kIGVuY3J5cHRpb24gYW5kIGFjY2Vzc2libGUgb25seSB0byB5b3UuPC9saT48\r\nbGkgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBtYXJnaW46IDEycHgg\r\nMDsgbGluZS1oZWlnaHQ6IGluaGVyaXQ7Ij48YiBzdHlsZT0ibGluZS1oZWlnaHQ6IGluaGVyaXQ7\r\nIj5BdXRvbWF0aWMgc3luY2luZzwvYj46IFNldCB1cCBvbmNlIGFuZCB5b3VyIHBob3RvcyBhbmQg\r\ndmlkZW9zIHdpbGwgYXV0b21hdGljYWxseSBzeW5jIHRvIHlvdXIgUHJvdG9uIERyaXZlLjwvbGk+\r\nPGxpIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgbWFyZ2luOiAxMnB4\r\nIDA7IGxpbmUtaGVpZ2h0OiBpbmhlcml0OyI+PGIgc3R5bGU9ImxpbmUtaGVpZ2h0OiBpbmhlcml0\r\nOyI+SW5zdGFudCBhY2Nlc3MgYWNyb3NzIGRldmljZXM8L2I+OiBFYXNpbHkgdmlldywgc2hhcmUs\r\nIGFuZCBtYW5hZ2UgeW91ciBjb250ZW50IGZyb20gYW55IGRldmljZSwgYW55dGltZSwgd2l0aG91\r\ndCBtYW51YWwgdHJhbnNmZXJzLjwvbGk+PC91bD4gICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAg\r\nIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8IS0t\r\nW2lmIG1zb10+DQogICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICA8IVtlbmRp\r\nZl0tLT4NCg0KICAgICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8\r\nL3RyPjwvdGFibGU+DQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICA8\r\nL3RkPg0KICAgICAgICA8L3RyPg0KICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0KPHRhYmxlIGJvcmRl\r\ncj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9\r\nIm1jblRleHRCbG9jayIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBj\r\nb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1t\r\ncy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIj4NCiAgICA8dGJvZHkgY2xhc3M9Im1jblRleHRCbG9ja091dGVyIj4NCiAgICAgICAgPHRyPg0K\r\nICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dEJsb2NrSW5uZXIiIHN0\r\neWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAg\r\nIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImxlZnQiIGJvcmRl\r\ncj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIiB3aWR0aD0iMTAwJSIgc3R5bGU9\r\nIndpZHRoOjEwMCU7Ij48dHI+DQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAg\r\nICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9w\r\nIiB3aWR0aD0iNjAwIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij4NCiAgICAgICAgICAgICAgICA8IVtl\r\nbmRpZl0tLT4NCiAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImxlZnQiIGJvcmRlcj0iMCIg\r\nY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRl\r\neHRDb250ZW50Q29udGFpbmVyIiBzdHlsZT0ibWF4LXdpZHRoOiAxMDAlOyBtaW4td2lkdGg6IDEw\r\nMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNv\r\nLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAg\r\nICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\ndGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJtY25UZXh0Q29udGVudCIgc3R5bGU9Im1zby1saW5lLWhl\r\naWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyB3b3JkLWJyZWFrOiBicmVhay13b3JkOyBjb2xvcjogIzBj\r\nMGMxNDsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6\r\nZTogMTZweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBsZWZ0OyBwYWRkaW5nLXRv\r\ncDogOHB4OyBwYWRkaW5nLWJvdHRvbTogMTJweDsgcGFkZGluZy1yaWdodDogMzJweDsgcGFkZGlu\r\nZy1sZWZ0OiAzMnB4OyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNz\r\nPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIgc3R5bGU9InBhZGRpbmc6IDBweDsgbXNvLWxpbmUt\r\naGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGNvbG9yOiAjMGMwYzE0OyBmb250LWZhbWlseTogQXJp\r\nYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdodDog\r\nMS41ZW07IHRleHQtYWxpZ246IGxlZnQ7IG1hcmdpbjogMTJweCAwcHg7Ij5HZXR0aW5nIHN0YXJ0\r\nZWQgaXMgZWFzeSEgSnVzdCBkb3dubG9hZCB0aGUgUHJvdG9uIERyaXZlIGFwcCBmcm9tIHlvdXIg\r\nbW9iaWxlIHN0b3JlLCBzaWduIGluLCBhbmQgZW5hYmxlIHBob3RvIGFuZCB2aWRlbyBiYWNrdXAg\r\naW4gYSA8YSB0YXJnZXQ9Il9ibGFuayIgaHJlZj0iaHR0cHM6Ly9wcm90b24ubWUvc3VwcG9ydC9l\r\nbmFibGUtcGhvdG8tYmFja3VwIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7\r\nIC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7IGxpbmUtaGVpZ2h0OiBpbmhlcml0OyBjb2xvcjogIzZkNGFmZjsgZm9udC13ZWlnaHQ6IGlu\r\naGVyaXQ7IHRleHQtZGVjb3JhdGlvbjogdW5kZXJsaW5lOyI+ZmV3IHNpbXBsZSBzdGVwczwvYT4u\r\nPC9wPiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAg\r\nICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAg\r\nICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAg\r\nICA8L3RkPg0KICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgICAgICAgICAg\r\nPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgICAgIDwvdHI+PC90YWJsZT4NCiAgICAgICAgICAg\r\nICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgIDwvdHI+DQogICAg\r\nPC90Ym9keT4NCjwvdGFibGU+DQo8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2Vs\r\nbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dEJsb2NrIiBzdHlsZT0ibWlu\r\nLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNl\r\nOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNu\r\nVGV4dEJsb2NrT3V0ZXIiPg0KICAgICAgICA8dHI+DQogICAgICAgICAgICA8dGQgdmFsaWduPSJ0\r\nb3AiIGNsYXNzPSJtY25UZXh0QmxvY2tJbm5lciIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxl\r\nOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAg\r\nICAgICAgIDx0YWJsZSBhbGlnbj0ibGVmdCIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgY2Vs\r\nbHBhZGRpbmc9IjAiIHdpZHRoPSIxMDAlIiBzdHlsZT0id2lkdGg6MTAwJTsiPjx0cj4NCiAgICAg\r\nICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4N\r\nCiAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIHdpZHRoPSI2MDAiIHN0eWxlPSJ3aWR0\r\naDo2MDBweDsiPg0KICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgICAg\r\nIDx0YWJsZSBhbGlnbj0ibGVmdCIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNp\r\nbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dENvbnRlbnRDb250YWluZXIiIHN0eWxl\r\nPSJtYXgtd2lkdGg6IDEwMCU7IG1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xs\r\nYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4N\r\nCiAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRy\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1j\r\nblRleHRDb250ZW50IiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHdv\r\ncmQtYnJlYWs6IGJyZWFrLXdvcmQ7IGNvbG9yOiAjMGMwYzE0OyBmb250LWZhbWlseTogQXJpYWws\r\nIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdodDogMS41\r\nZW07IHRleHQtYWxpZ246IGxlZnQ7IHBhZGRpbmctdG9wOiA4cHg7IHBhZGRpbmctYm90dG9tOiAx\r\nMnB4OyBwYWRkaW5nLXJpZ2h0OiAzMnB4OyBwYWRkaW5nLWxlZnQ6IDMycHg7Ij4NCiAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9Im1jblRleHRDb250ZW50Q29udGFpbmVy\r\nIiBzdHlsZT0icGFkZGluZzogMHB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1z\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlm\r\nOyBmb250LXNpemU6IDE2cHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgdGV4dC1hbGlnbjogbGVmdDsg\r\nbWFyZ2luOiAxMnB4IDBweDsiPklmIHlvdSBoYXZlIGFueSBpc3N1ZXMgYmFja2luZyB1cCB5b3Vy\r\nIHBob3RvcyB5b3UgY2FuIHJlYWNoIG91dCB0byBvdXIgPGEgdGFyZ2V0PSJfYmxhbmsiIGhyZWY9\r\nImh0dHBzOi8vcHJvdG9uLm1lL3N1cHBvcnQvY29udGFjdCIgc3R5bGU9Im1zby1saW5lLWhlaWdo\r\ndC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyBsaW5lLWhlaWdodDogaW5oZXJpdDsgY29sb3I6ICM2ZDRhZmY7\r\nIGZvbnQtd2VpZ2h0OiBpbmhlcml0OyB0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTsiPnN1cHBv\r\ncnQgdGVhbTwvYT4gd2hvIGlzIGFsd2F5cyByZWFkeSB0byBhc3Npc3QgeW91LjwvcD4gICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+\r\nDQogICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgPC90YWJsZT4N\r\nCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAgICAgPC90ZD4NCiAg\r\nICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgICAgIDwhLS1baWYgbXNv\r\nXT4NCiAgICAgICAgICAgICAgICA8L3RyPjwvdGFibGU+DQogICAgICAgICAgICAgICAgPCFbZW5k\r\naWZdLS0+DQogICAgICAgICAgICA8L3RkPg0KICAgICAgICA8L3RyPg0KICAgIDwvdGJvZHk+DQo8\r\nL3RhYmxlPg0KPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIw\r\nIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRCbG9jayIgc3R5bGU9Im1pbi13aWR0aDogMTAw\r\nJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28t\r\ndGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRl\r\neHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICA8dGJvZHkgY2xhc3M9Im1jblRleHRCbG9ja091\r\ndGVyIj4NCiAgICAgICAgPHRyPg0KICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0i\r\nbWNuVGV4dEJsb2NrSW5uZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsiPg0KICAgICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8dGFi\r\nbGUgYWxpZ249ImxlZnQiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIw\r\nIiB3aWR0aD0iMTAwJSIgc3R5bGU9IndpZHRoOjEwMCU7Ij48dHI+DQogICAgICAgICAgICAgICAg\r\nPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAg\r\nICAgICAgPHRkIHZhbGlnbj0idG9wIiB3aWR0aD0iNjAwIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij4N\r\nCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAgICAgICA8dGFibGUgYWxp\r\nZ249ImxlZnQiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0\r\naD0iMTAwJSIgY2xhc3M9Im1jblRleHRDb250ZW50Q29udGFpbmVyIiBzdHlsZT0ibWF4LXdpZHRo\r\nOiAxMDAlOyBtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10\r\nYWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAg\r\nICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJtY25UZXh0Q29udGVu\r\ndCIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyB3b3JkLWJyZWFrOiBi\r\ncmVhay13b3JkOyBjb2xvcjogIzBjMGMxNDsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2Es\r\nIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFs\r\naWduOiBsZWZ0OyBwYWRkaW5nLXRvcDogOHB4OyBwYWRkaW5nLWJvdHRvbTogMTJweDsgcGFkZGlu\r\nZy1yaWdodDogMzJweDsgcGFkZGluZy1sZWZ0OiAzMnB4OyI+DQogICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgIDxwIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIgc3R5bGU9InBh\r\nZGRpbmc6IDBweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGNvbG9yOiAjMGMw\r\nYzE0OyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXpl\r\nOiAxNnB4OyBsaW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGxlZnQ7IG1hcmdpbjogMTJw\r\neCAwcHg7Ij5TdGF5IHNlY3VyZSw8YnI+VGhlIFByb3RvbiBEcml2ZSB0ZWFtPC9wPiAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4N\r\nCiAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICA8L3RhYmxlPg0K\r\nICAgICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8L3RkPg0KICAg\r\nICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29d\r\nPg0KICAgICAgICAgICAgICAgIDwvdHI+PC90YWJsZT4NCiAgICAgICAgICAgICAgICA8IVtlbmRp\r\nZl0tLT4NCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwv\r\ndGFibGU+DQogICAgPC90ZD4NCjwvdHI+PHRyPg0KICAgIDx0ZCB2YWxpZ249InRvcCIgaWQ9InRl\r\nbXBsYXRlRm9vdGVyIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGJh\r\nY2tncm91bmQtY29sb3I6ICNmZmZmZmY7IGJhY2tncm91bmQtaW1hZ2U6IG5vbmU7IGJhY2tncm91\r\nbmQtcmVwZWF0OiBuby1yZXBlYXQ7IGJhY2tncm91bmQtcG9zaXRpb246IGNlbnRlcjsgYmFja2dy\r\nb3VuZC1zaXplOiBjb3ZlcjsgYm9yZGVyLXRvcDogMDsgYm9yZGVyLWJvdHRvbTogMDsgcGFkZGlu\r\nZy10b3A6IDE2cHg7IHBhZGRpbmctYm90dG9tOiAxNnB4OyBib3JkZXItcmFkaXVzOiAwIDAgMTZw\r\neCAxNnB4OyI+DQogICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxs\r\nc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25EaXZpZGVyQmxvY2siIHN0eWxlPSJt\r\naW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3Bh\r\nY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyB0YWJsZS1sYXlvdXQ6IGZpeGVkOyI+\r\nDQogICAgPHRib2R5IGNsYXNzPSJtY25EaXZpZGVyQmxvY2tPdXRlciI+DQogICAgICAgIDx0cj4N\r\nCiAgICAgICAgICAgIDx0ZCBjbGFzcz0ibWNuRGl2aWRlckJsb2NrSW5uZXIiIHN0eWxlPSJtaW4t\r\nd2lkdGg6IDEwMCU7IHBhZGRpbmc6IDAgMzJweCAxNnB4IDMycHg7IG1zby1saW5lLWhlaWdodC1y\r\ndWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPHRhYmxlIGNsYXNzPSJtY25EaXZp\r\nZGVyQ29udGVudCIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdp\r\nZHRoPSIxMDAlIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItdG9wOiAxcHggc29saWQg\r\nI0Y1RjRGMjsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0\r\nOyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Vi\r\na2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgPHRib2R5\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgIDx0ZCBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4+PC9zcGFuPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAg\r\nICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAg\r\nICAgICAgICAgPCEtLQ0KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0ibWNuRGl2aWRlckJsb2Nr\r\nSW5uZXIiIHN0eWxlPSJwYWRkaW5nOiAzMnB4OyI+DQogICAgICAgICAgICAgICAgPGhyIGNsYXNz\r\nPSJtY25EaXZpZGVyQ29udGVudCIgc3R5bGU9ImJvcmRlci1ib3R0b20tY29sb3I6bm9uZTsgYm9y\r\nZGVyLWxlZnQtY29sb3I6bm9uZTsgYm9yZGVyLXJpZ2h0LWNvbG9yOm5vbmU7IGJvcmRlci1ib3R0\r\nb20td2lkdGg6MDsgYm9yZGVyLWxlZnQtd2lkdGg6MDsgYm9yZGVyLXJpZ2h0LXdpZHRoOjA7IG1h\r\ncmdpbi10b3A6MDsgbWFyZ2luLXJpZ2h0OjA7IG1hcmdpbi1ib3R0b206MDsgbWFyZ2luLWxlZnQ6\r\nMDsiIC8+DQogICAgICAgICAgICAgICAgLS0+DQogICAgICAgICAgICA8L3RkPg0KICAgICAgICA8\r\nL3RyPg0KICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0KPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRp\r\nbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRCbG9jayIg\r\nc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRh\r\nYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICA8dGJvZHkg\r\nY2xhc3M9Im1jblRleHRCbG9ja091dGVyIj4NCiAgICA8dHI+DQogICAgICAgIDx0ZCB2YWxpZ249\r\nInRvcCIgY2xhc3M9Im1jblRleHRCbG9ja0lubmVyIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1\r\nbGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAg\r\nIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIwIiBjZWxscGFk\r\nZGluZz0iMCIgd2lkdGg9IjEwMCUiIHN0eWxlPSJ3aWR0aDoxMDAlOyI+DQogICAgICAgICAgICAg\r\nICAgPHRyPg0KICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgICAgIDwhLS1baWYg\r\nbXNvXT4NCiAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgd2lkdGg9IjYwMCIgc3R5bGU9Indp\r\nZHRoOjYwMHB4OyI+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAgIDx0YWJs\r\nZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0i\r\nMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIgc3R5bGU9Im1h\r\neC13aWR0aDogMTAwJTsgbWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNl\r\nOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAg\r\nICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAg\r\nICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jblRleHRDb250ZW50IiBzdHlsZT0icGFk\r\nZGluZy10b3A6IDI0cHg7IHBhZGRpbmctcmlnaHQ6IDMycHg7IHBhZGRpbmctYm90dG9tOiAwOyBw\r\nYWRkaW5nLWxlZnQ6IDMycHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyB3b3Jk\r\nLWJyZWFrOiBicmVhay13b3JkOyBjb2xvcjogIzcwNmQ2YjsgZm9udC1mYW1pbHk6IEFyaWFsLCBI\r\nZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTRweDsgbGluZS1oZWlnaHQ6IDEuNWVt\r\nOyB0ZXh0LWFsaWduOiBjZW50ZXI7Ij5Db25uZWN0IHdpdGggdGhlIFByb3RvbiZuYnNwO2NvbW11\r\nbml0eTwvdGQ+DQogICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICA8L3Rib2R5\r\nPg0KICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAg\r\nICAgICAgIDwvdGQ+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgPCEt\r\nLVtpZiBtc29dPg0KICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgIDwvdGFibGU+DQogICAg\r\nICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgPC90ZD4NCiAgICA8L3RyPg0KICAgIDwvdGJv\r\nZHk+DQo8L3RhYmxlPg0KDQogICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIw\r\nIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25Gb2xsb3dCbG9jayIgc3R5\r\nbGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxl\r\nLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgIDx0\r\nYm9keSBjbGFzcz0ibWNuRm9sbG93QmxvY2tPdXRlciI+DQogICAgICAgICAgICAgICAgPHRyPg0K\r\nICAgICAgICAgICAgICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJ0b3AiIGNsYXNz\r\nPSJtY25Gb2xsb3dCbG9ja0lubmVyIiBzdHlsZT0icGFkZGluZzogMTZweCAxNnB4IDA7IG1zby1s\r\naW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdl\r\nYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICA8\r\ndGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIx\r\nMDAlIiBjbGFzcz0ibWNuRm9sbG93Q29udGVudENvbnRhaW5lciIgc3R5bGU9Im1pbi13aWR0aDog\r\nMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBt\r\nc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\ndGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiBzdHlsZT0ibXNvLWxp\r\nbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Vi\r\na2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNp\r\nbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuRm9sbG93Q29udGVudCIgc3R5bGU9Im1pbi13\r\naWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTog\r\nMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAt\r\nd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249InRvcCIgc3R5\r\nbGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2Vu\r\ndGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgc3R5bGU9ImJv\r\ncmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxl\r\nLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\ndGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJ0b3AiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVs\r\nZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNl\r\nbGxwYWRkaW5nPSIwIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwhW2Vu\r\nZGlmXS0tPg0KDQoNCiAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICA8dGQgYWxpZ249ImNl\r\nbnRlciIgdmFsaWduPSJ0b3AiPg0KICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgPHRhYmxl\r\nIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIw\r\nIiBzdHlsZT0iZGlzcGxheTogaW5saW5lOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28t\r\ndGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAg\r\nICAgPHRib2R5Pg0KICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249\r\nInRvcCIgY2xhc3M9Im1jbkZvbGxvd0NvbnRlbnRJdGVtQ29udGFpbmVyIiBzdHlsZT0icGFkZGlu\r\nZy10b3A6IDhweDsgcGFkZGluZy1yaWdodDogNHB4OyBwYWRkaW5nLWJvdHRvbTogOHB4OyBwYWRk\r\naW5nLWxlZnQ6IDRweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAg\r\nICAgICAgICAgICAgICAgPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFj\r\naW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jbkZvbGxvd0NvbnRlbnRJdGVtIiBzdHlsZT0i\r\nYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFi\r\nbGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAg\r\nICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\ndGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJtaWRkbGUiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQt\r\ncnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGFi\r\nbGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9\r\nIjAiIHdpZHRoPSIiIHN0eWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUt\r\nbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0\r\nZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249Im1pZGRsZSIgd2lkdGg9IjM2IiBjbGFzcz0ibWNuRm9s\r\nbG93SWNvbkNvbnRlbnQiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1z\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsi\r\nPg0KDQogICAgICAgIDxhIGhyZWY9Imh0dHBzOi8veC5jb20vUHJvdG9uRFJJVkUiIHRhcmdldD0i\r\nX2JsYW5rIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGxpbmUtaGVp\r\nZ2h0OiBpbmhlcml0OyI+PGltZyBzcmM9ImNpZDowZmY1NzFiN2MxNjlkZGIwODRiM0BuZXdzLnBy\r\nb3Rvbi5tZSIgYWx0PSJYIiBoZWlnaHQ9IjM2IiB3aWR0aD0iMzYiIGNsYXNzPSJzb2NpYWwtaWNv\r\nbiIgc3R5bGU9ImRpc3BsYXk6IGJsb2NrOyBib3JkZXI6IDA7IGhlaWdodDogYXV0bzsgb3V0bGlu\r\nZTogbm9uZTsgdGV4dC1kZWNvcmF0aW9uOiB1bmRlcmxpbmU7IC1tcy1pbnRlcnBvbGF0aW9uLW1v\r\nZGU6IGJpY3ViaWM7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBm\r\nb250LXNpemU6IDEycHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgY29sb3I6ICM3MDZkNmI7IGZvbnQt\r\nd2VpZ2h0OiBub3JtYWw7Ij48L2E+DQoNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4N\r\nCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAg\r\nICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAg\r\nICAgICAgIDwvdGQ+DQogICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgPC90Ym9keT4NCiAg\r\nICAgICAgPC90YWJsZT4NCiAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICA8L3RkPg0KICAg\r\nICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgIDx0ZCBh\r\nbGlnbj0iY2VudGVyIiB2YWxpZ249InRvcCI+DQogICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAg\r\nICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNw\r\nYWNpbmc9IjAiIHN0eWxlPSJkaXNwbGF5OiBpbmxpbmU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFw\r\nc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQog\r\nICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgPHRk\r\nIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuRm9sbG93Q29udGVudEl0ZW1Db250YWluZXIiIHN0eWxl\r\nPSJwYWRkaW5nLXRvcDogOHB4OyBwYWRkaW5nLXJpZ2h0OiA0cHg7IHBhZGRpbmctYm90dG9tOiA4\r\ncHg7IHBhZGRpbmctbGVmdDogNHB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1z\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsi\r\nPg0KICAgICAgICAgICAgICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIg\r\nY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuRm9sbG93Q29udGVudEl0ZW0i\r\nIHN0eWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7\r\nIG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJr\r\naXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRi\r\nb2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249Im1pZGRsZSIgc3R5bGU9Im1zby1saW5l\r\nLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtp\r\ndC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxs\r\nc3BhY2luZz0iMCIgd2lkdGg9IiIgc3R5bGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1z\r\nby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0ibWlkZGxlIiB3aWR0aD0iMzYiIGNsYXNz\r\nPSJtY25Gb2xsb3dJY29uQ29udGVudCIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFj\r\ndGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyI+DQoNCiAgICAgICAgPGEgaHJlZj0iaHR0cHM6Ly9yZWRkaXQuY29tL3IvUHJvdG9u\r\nRHJpdmUiIHRhcmdldD0iX2JsYW5rIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0\r\nbHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IGxpbmUtaGVpZ2h0OiBpbmhlcml0OyI+PGltZyBzcmM9ImNpZDozNWZlNDMxMjdmNjNh\r\nM2FjNTE0NEBuZXdzLnByb3Rvbi5tZSIgYWx0PSJSZWRkaXQiIGhlaWdodD0iMzYiIHdpZHRoPSIz\r\nNiIgY2xhc3M9InNvY2lhbC1pY29uIiBzdHlsZT0iZGlzcGxheTogYmxvY2s7IGJvcmRlcjogMDsg\r\naGVpZ2h0OiBhdXRvOyBvdXRsaW5lOiBub25lOyB0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTsg\r\nLW1zLWludGVycG9sYXRpb24tbW9kZTogYmljdWJpYzsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2\r\nZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTJweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyBj\r\nb2xvcjogIzcwNmQ2YjsgZm9udC13ZWlnaHQ6IG5vcm1hbDsiPjwvYT4NCg0KICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nPC90Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90\r\ncj4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAg\r\nIDwvdGFibGU+DQogICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgIDwvdHI+DQogICAg\r\nICAgICAgICA8L3Rib2R5Pg0KICAgICAgICA8L3RhYmxlPg0KICAgICAgICA8IS0tW2lmIG1zb10+\r\nDQogICAgICAgIDwvdGQ+DQogICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgIDwhLS1baWYg\r\nbXNvXT4NCiAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0idG9wIj4NCiAgICAgICAg\r\nPCFbZW5kaWZdLS0+DQogICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNl\r\nbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgc3R5bGU9ImRpc3BsYXk6IGlubGluZTsgYm9y\r\nZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUt\r\ncnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgIDx0cj4N\r\nCiAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50\r\nSXRlbUNvbnRhaW5lciIgc3R5bGU9InBhZGRpbmctdG9wOiA4cHg7IHBhZGRpbmctcmlnaHQ6IDRw\r\neDsgcGFkZGluZy1ib3R0b206IDhweDsgcGFkZGluZy1sZWZ0OiA0cHg7IG1zby1saW5lLWhlaWdo\r\ndC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9\r\nIjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJt\r\nY25Gb2xsb3dDb250ZW50SXRlbSIgc3R5bGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1z\r\nby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAg\r\nICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0ibWlk\r\nZGxlIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIg\r\nY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iIiBzdHlsZT0iYm9yZGVyLWNv\r\nbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNl\r\nOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0Ym9keT4N\r\nCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJtaWRk\r\nbGUiIHdpZHRoPSIzNiIgY2xhc3M9Im1jbkZvbGxvd0ljb25Db250ZW50IiBzdHlsZT0ibXNvLWxp\r\nbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Vi\r\na2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCg0KICAgICAgICA8YSBocmVmPSJodHRwczov\r\nL3d3dy5saW5rZWRpbi5jb20vY29tcGFueS9wcm90b25wcml2YWN5LyIgdGFyZ2V0PSJfYmxhbmsi\r\nIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgbGluZS1oZWlnaHQ6IGlu\r\naGVyaXQ7Ij48aW1nIHNyYz0iY2lkOmMyOWIzMjVjMGNjMTQ0MzZlYjA5QG5ld3MucHJvdG9uLm1l\r\nIiBhbHQ9IkxpbmtlZEluIiBoZWlnaHQ9IjM2IiB3aWR0aD0iMzYiIGNsYXNzPSJzb2NpYWwtaWNv\r\nbiIgc3R5bGU9ImRpc3BsYXk6IGJsb2NrOyBib3JkZXI6IDA7IGhlaWdodDogYXV0bzsgb3V0bGlu\r\nZTogbm9uZTsgdGV4dC1kZWNvcmF0aW9uOiB1bmRlcmxpbmU7IC1tcy1pbnRlcnBvbGF0aW9uLW1v\r\nZGU6IGJpY3ViaWM7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBm\r\nb250LXNpemU6IDEycHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgY29sb3I6ICM3MDZkNmI7IGZvbnQt\r\nd2VpZ2h0OiBub3JtYWw7Ij48L2E+DQoNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4N\r\nCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAg\r\nICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAg\r\nICAgICAgIDwvdGQ+DQogICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgPC90Ym9keT4NCiAg\r\nICAgICAgPC90YWJsZT4NCiAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICA8L3RkPg0KICAg\r\nICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgIDx0ZCBh\r\nbGlnbj0iY2VudGVyIiB2YWxpZ249InRvcCI+DQogICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAg\r\nICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNw\r\nYWNpbmc9IjAiIHN0eWxlPSJkaXNwbGF5OiBpbmxpbmU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFw\r\nc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQog\r\nICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgPHRk\r\nIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuRm9sbG93Q29udGVudEl0ZW1Db250YWluZXIiIHN0eWxl\r\nPSJwYWRkaW5nLXRvcDogOHB4OyBwYWRkaW5nLXJpZ2h0OiA0cHg7IHBhZGRpbmctYm90dG9tOiA4\r\ncHg7IHBhZGRpbmctbGVmdDogNHB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1z\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsi\r\nPg0KICAgICAgICAgICAgICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIg\r\nY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuRm9sbG93Q29udGVudEl0ZW0i\r\nIHN0eWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7\r\nIG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJr\r\naXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRi\r\nb2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249Im1pZGRsZSIgc3R5bGU9Im1zby1saW5l\r\nLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtp\r\ndC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxs\r\nc3BhY2luZz0iMCIgd2lkdGg9IiIgc3R5bGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1z\r\nby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0ibWlkZGxlIiB3aWR0aD0iMzYiIGNsYXNz\r\nPSJtY25Gb2xsb3dJY29uQ29udGVudCIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFj\r\ndGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyI+DQoNCiAgICAgICAgPGEgaHJlZj0iaHR0cHM6Ly9mYWNlYm9vay5jb20vUHJvdG9u\r\nIiB0YXJnZXQ9Il9ibGFuayIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAt\r\nbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyBsaW5lLWhlaWdodDogaW5oZXJpdDsiPjxpbWcgc3JjPSJjaWQ6YjQ5MmM4NjcxN2RlMDQ3MzZl\r\nMTZAbmV3cy5wcm90b24ubWUiIGFsdD0iRmFjZWJvb2siIGhlaWdodD0iMzYiIHdpZHRoPSIzNiIg\r\nY2xhc3M9InNvY2lhbC1pY29uIiBzdHlsZT0iZGlzcGxheTogYmxvY2s7IGJvcmRlcjogMDsgaGVp\r\nZ2h0OiBhdXRvOyBvdXRsaW5lOiBub25lOyB0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTsgLW1z\r\nLWludGVycG9sYXRpb24tbW9kZTogYmljdWJpYzsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRp\r\nY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTJweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyBjb2xv\r\ncjogIzcwNmQ2YjsgZm9udC13ZWlnaHQ6IG5vcm1hbDsiPjwvYT4NCg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90\r\nYm9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4N\r\nCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgIDwv\r\ndGFibGU+DQogICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgIDwvdHI+DQogICAgICAg\r\nICAgICA8L3Rib2R5Pg0KICAgICAgICA8L3RhYmxlPg0KICAgICAgICA8IS0tW2lmIG1zb10+DQog\r\nICAgICAgIDwvdGQ+DQogICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgIDwhLS1baWYgbXNv\r\nXT4NCiAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0idG9wIj4NCiAgICAgICAgPCFb\r\nZW5kaWZdLS0+DQogICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxw\r\nYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgc3R5bGU9ImRpc3BsYXk6IGlubGluZTsgYm9yZGVy\r\nLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNw\r\nYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgIDx0cj4NCiAg\r\nICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50SXRl\r\nbUNvbnRhaW5lciIgc3R5bGU9InBhZGRpbmctdG9wOiA4cHg7IHBhZGRpbmctcmlnaHQ6IDRweDsg\r\ncGFkZGluZy1ib3R0b206IDhweDsgcGFkZGluZy1sZWZ0OiA0cHg7IG1zby1saW5lLWhlaWdodC1y\r\ndWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAi\r\nIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25G\r\nb2xsb3dDb250ZW50SXRlbSIgc3R5bGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10\r\nYWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0ibWlkZGxl\r\nIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2Vs\r\nbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iIiBzdHlsZT0iYm9yZGVyLWNvbGxh\r\ncHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAw\r\ncHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJtaWRkbGUi\r\nIHdpZHRoPSIzNiIgY2xhc3M9Im1jbkZvbGxvd0ljb25Db250ZW50IiBzdHlsZT0ibXNvLWxpbmUt\r\naGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCg0KICAgICAgICA8YSBocmVmPSJodHRwczovL2lu\r\nc3RhZ3JhbS5jb20vcHJvdG9ucHJpdmFjeSIgdGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJtc28tbGlu\r\nZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJr\r\naXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgbGluZS1oZWlnaHQ6IGluaGVyaXQ7Ij48aW1nIHNy\r\nYz0iY2lkOmI4NTkyMjlkZTNmOWQ1YTU0Njg4QG5ld3MucHJvdG9uLm1lIiBhbHQ9Ikluc3RhZ3Jh\r\nbSIgaGVpZ2h0PSIzNiIgd2lkdGg9IjM2IiBjbGFzcz0ic29jaWFsLWljb24iIHN0eWxlPSJkaXNw\r\nbGF5OiBibG9jazsgYm9yZGVyOiAwOyBoZWlnaHQ6IGF1dG87IG91dGxpbmU6IG5vbmU7IHRleHQt\r\nZGVjb3JhdGlvbjogdW5kZXJsaW5lOyAtbXMtaW50ZXJwb2xhdGlvbi1tb2RlOiBiaWN1YmljOyBm\r\nb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxMnB4\r\nOyBsaW5lLWhlaWdodDogMS41ZW07IGNvbG9yOiAjNzA2ZDZiOyBmb250LXdlaWdodDogbm9ybWFs\r\nOyI+PC9hPg0KDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4N\r\nCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAg\r\nICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90Ym9k\r\neT4NCiAgICAgICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8L3RkPg0K\r\nICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgIDwvdGFibGU+\r\nDQogICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgPC90ZD4NCiAgICAgICAgPCFbZW5kaWZd\r\nLS0+DQoNCiAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIg\r\ndmFsaWduPSJ0b3AiPg0KICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgPHRhYmxlIGFsaWdu\r\nPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBzdHls\r\nZT0iZGlzcGxheTogaW5saW5lOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUt\r\nbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgPHRi\r\nb2R5Pg0KICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIg\r\nY2xhc3M9Im1jbkZvbGxvd0NvbnRlbnRJdGVtQ29udGFpbmVyIiBzdHlsZT0icGFkZGluZy10b3A6\r\nIDhweDsgcGFkZGluZy1yaWdodDogNHB4OyBwYWRkaW5nLWJvdHRvbTogOHB4OyBwYWRkaW5nLWxl\r\nZnQ6IDRweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAg\r\nICAgICAgICAgPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIw\r\nIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jbkZvbGxvd0NvbnRlbnRJdGVtIiBzdHlsZT0iYm9yZGVy\r\nLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNw\r\nYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAg\r\nICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgYWxp\r\nZ249ImNlbnRlciIgdmFsaWduPSJtaWRkbGUiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTog\r\nZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGFibGUgYWxp\r\nZ249ImNlbnRlciIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdp\r\nZHRoPSIiIHN0eWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNl\r\nOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBhbGln\r\nbj0iY2VudGVyIiB2YWxpZ249Im1pZGRsZSIgd2lkdGg9IjM2IiBjbGFzcz0ibWNuRm9sbG93SWNv\r\nbkNvbnRlbnQiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KDQog\r\nICAgICAgIDxhIGhyZWY9Imh0dHBzOi8vcHJvdG9uLm1lL2Jsb2ciIHRhcmdldD0iX2JsYW5rIiBz\r\ndHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGxpbmUtaGVpZ2h0OiBpbmhl\r\ncml0OyI+PGltZyBzcmM9ImNpZDoyZDFhNmFiYjE1MGMzYzNiODBhN0BuZXdzLnByb3Rvbi5tZSIg\r\nYWx0PSJCbG9nIiBoZWlnaHQ9IjM2IiB3aWR0aD0iMzYiIGNsYXNzPSJzb2NpYWwtaWNvbiIgc3R5\r\nbGU9ImRpc3BsYXk6IGJsb2NrOyBib3JkZXI6IDA7IGhlaWdodDogYXV0bzsgb3V0bGluZTogbm9u\r\nZTsgdGV4dC1kZWNvcmF0aW9uOiB1bmRlcmxpbmU7IC1tcy1pbnRlcnBvbGF0aW9uLW1vZGU6IGJp\r\nY3ViaWM7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNp\r\nemU6IDEycHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgY29sb3I6ICM3MDZkNmI7IGZvbnQtd2VpZ2h0\r\nOiBub3JtYWw7Ij48L2E+DQoNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90\r\nZD4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAg\r\nIDwvdGQ+DQogICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAg\r\nPC90YWJsZT4NCiAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICA8L3RkPg0KICAgICAgICA8\r\nIVtlbmRpZl0tLT4NCg0KDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwhW2Vu\r\nZGlmXS0tPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Rh\r\nYmxlPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\nL3RyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Rib2R5\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+\r\nDQogICAgICAgICAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgICAgICA8\r\nL3RkPg0KICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAg\r\nICA8L3RhYmxlPg0KDQo8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNp\r\nbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dEJsb2NrIiBzdHlsZT0ibWluLXdpZHRo\r\nOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7\r\nIG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJr\r\naXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNuVGV4dEJs\r\nb2NrT3V0ZXIiPg0KICAgIDx0cj4NCiAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNu\r\nVGV4dEJsb2NrSW5uZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1z\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsi\r\nPg0KICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJj\r\nZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIiB3aWR0aD0i\r\nMTAwJSIgc3R5bGU9IndpZHRoOjEwMCU7Ij4NCiAgICAgICAgICAgICAgICA8dHI+DQogICAgICAg\r\nICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAg\r\nICAgPHRkIHZhbGlnbj0idG9wIiB3aWR0aD0iNjAwIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij4NCiAg\r\nICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIi\r\nIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIg\r\nY2xhc3M9Im1jblRleHRDb250ZW50Q29udGFpbmVyIiBzdHlsZT0ibWF4LXdpZHRoOiAxMDAlOyBt\r\naW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3Bh\r\nY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPHRi\r\nb2R5Pg0KICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgPHRkIHZhbGln\r\nbj0idG9wIiBjbGFzcz0ibWNuVGV4dENvbnRlbnQiIHN0eWxlPSJwYWRkaW5nLXRvcDogMTZweDsg\r\ncGFkZGluZy1yaWdodDogMzJweDsgcGFkZGluZy1ib3R0b206IDA7IHBhZGRpbmctbGVmdDogMzJw\r\neDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHdvcmQtYnJlYWs6IGJyZWFrLXdv\r\ncmQ7IGNvbG9yOiAjNzA2ZDZiOyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1z\r\nZXJpZjsgZm9udC1zaXplOiAxNHB4OyBsaW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGNl\r\nbnRlcjsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPGEgZGF0YS11bnN1YnNjcmliZS1saW5r\r\nPSJwcm90b24ubWUiIHJlbD0ibm9vcGVuZXIgbm9yZWZlcnJlciIgaHJlZj0iaHR0cHM6Ly9hY2Nv\r\ndW50LnByb3Rvbi5tZS9kcml2ZS9kYXNoYm9hcmQjZW1haWwtc3Vic2NyaXB0aW9uIiB0YXJnZXQ9\r\nIl9ibGFuayIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBsaW5lLWhl\r\naWdodDogaW5oZXJpdDsgY29sb3I6ICM3MDZkNmI7IGZvbnQtd2VpZ2h0OiBub3JtYWw7IHRleHQt\r\nZGVjb3JhdGlvbjogdW5kZXJsaW5lOyI+VXBkYXRlIHlvdXIgZW1haWwgcHJlZmVyZW5jZXMgb3Ig\r\ndW5zdWJzY3JpYmU8L2E+DQogICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAg\r\nICAgPC90cj4NCiAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgPC90YWJsZT4N\r\nCiAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAg\r\nICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAg\r\nPC90cj4NCiAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAg\r\nICAgICAgPC90ZD4NCiAgICA8L3RyPg0KICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0KPHRhYmxlIGJv\r\ncmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xh\r\nc3M9Im1jblRleHRCbG9jayIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNl\r\nOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7\r\nIC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7Ij4NCiAgICA8dGJvZHkgY2xhc3M9Im1jblRleHRCbG9ja091dGVyIj4NCiAgICA8dHI+DQog\r\nICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jblRleHRCbG9ja0lubmVyIiBzdHlsZT0i\r\nbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgIDwhLS1baWYg\r\nbXNvXT4NCiAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxz\r\ncGFjaW5nPSIwIiBjZWxscGFkZGluZz0iMCIgd2lkdGg9IjEwMCUiIHN0eWxlPSJ3aWR0aDoxMDAl\r\nOyI+DQogICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAg\r\nICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgd2lk\r\ndGg9IjYwMCIgc3R5bGU9IndpZHRoOjYwMHB4OyI+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4N\r\nCiAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5n\r\nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25UZXh0Q29udGVudENv\r\nbnRhaW5lciIgc3R5bGU9Im1heC13aWR0aDogMTAwJTsgbWluLXdpZHRoOiAxMDAlOyBib3JkZXIt\r\nY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3Bh\r\nY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICA8\r\ndHI+DQogICAgICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jblRleHRD\r\nb250ZW50IiBzdHlsZT0icGFkZGluZy10b3A6IDE2cHg7IHBhZGRpbmctcmlnaHQ6IDMycHg7IHBh\r\nZGRpbmctYm90dG9tOiAwOyBwYWRkaW5nLWxlZnQ6IDMycHg7IG1zby1saW5lLWhlaWdodC1ydWxl\r\nOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyB3b3JkLWJyZWFrOiBicmVhay13b3JkOyBjb2xvcjogIzcwNmQ2YjsgZm9u\r\ndC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTRweDsg\r\nbGluZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBjZW50ZXI7Ij4NCiAgICAgICAgICAgICAg\r\nICAgICAgICAgIDxwIHN0eWxlPSJtYXJnaW46IDEycHggMDsgcGFkZGluZzogMDsgbXNvLWxpbmUt\r\naGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij7CqSBQcm90b24gQUcgU3dpdHplcmxhbmQ8YnI+Um91\r\ndGUgZGUgbGEgR2FsYWlzZSZuYnNwOzMyLCAxMjI4Jm5ic3A7UGxhbi1sZXMtT3VhdGVzLCBHZW5l\r\ndmEsJm5ic3A7U3dpdHplcmxhbmQ8L3A+DQogICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAg\r\nICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAg\r\nPC90YWJsZT4NCiAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgIDwvdGQ+DQog\r\nICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAg\r\nICAgICAgICAgPC90cj4NCiAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICA8IVtlbmRp\r\nZl0tLT4NCiAgICAgICAgPC90ZD4NCiAgICA8L3RyPg0KICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0K\r\nPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0i\r\nMTAwJSIgY2xhc3M9Im1jbkltYWdlQmxvY2siIHN0eWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxh\r\ncHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRl\r\neHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgbWlu\r\nLXdpZHRoOiAxMDAlOyI+DQogICAgPHRib2R5IGNsYXNzPSJtY25JbWFnZUJsb2NrT3V0ZXIiPg0K\r\nICAgIDx0cj4NCiAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuSW1hZ2VCbG9ja0lu\r\nbmVyIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHBhZGRpbmc6IDE2\r\ncHg7Ij4NCiAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiB3aWR0aD0iMTAwJSIgYm9y\r\nZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIGNsYXNzPSJtY25JbWFnZUNv\r\nbnRlbnRDb250YWluZXIiIHN0eWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFi\r\nbGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgbWluLXdpZHRoOiAxMDAl\r\nOyI+DQogICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgIDx0cj4NCiAgICAg\r\nICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJtY25JbWFnZUNvbnRlbnQiIHZhbGlnbj0idG9wIiBz\r\ndHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHBhZGRpbmctcmlnaHQ6IDE2\r\ncHg7IHBhZGRpbmctbGVmdDogMTZweDsgcGFkZGluZy10b3A6IDA7IHBhZGRpbmctYm90dG9tOiAw\r\nOyB0ZXh0LWFsaWduOiBjZW50ZXI7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxpbWcgYWxp\r\nZ249ImNlbnRlciIgYWx0PSIiIHNyYz0iY2lkOjYwYmI4MTc1MmZjMjUyYTZkNWMwQG5ld3MucHJv\r\ndG9uLm1lIiB3aWR0aD0iMjc2IiBjbGFzcz0ibWNuUmV0aW5hSW1hZ2UiIHN0eWxlPSJib3JkZXI6\r\nIDA7IGhlaWdodDogYXV0bzsgb3V0bGluZTogbm9uZTsgdGV4dC1kZWNvcmF0aW9uOiBub25lOyAt\r\nbXMtaW50ZXJwb2xhdGlvbi1tb2RlOiBiaWN1YmljOyBtYXgtd2lkdGg6IDU1MnB4OyBwYWRkaW5n\r\nLWJvdHRvbTogMDsgdmVydGljYWwtYWxpZ246IGJvdHRvbTsgZm9udC1mYW1pbHk6IEFyaWFsLCBI\r\nZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTJweDsgbGluZS1oZWlnaHQ6IDEuNWVt\r\nOyBkaXNwbGF5OiBpbmxpbmU7Ij4NCiAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAg\r\nICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICA8L3Rh\r\nYmxlPg0KICAgICAgICA8L3RkPg0KICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwvdGFibGU+DQog\r\nICAgPC90ZD4NCjwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgPCEtLVtpZiAoZ3RlIG1zbyA5KXwoSUUpXT4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwhW2Vu\r\nZGlmXS0tPg0KICAgICAgICAgICAgICAgICAgICAgICAgPCEtLSAvLyBFTkQgVEVNUExBVEUgLS0+\r\nDQogICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgPC90cj4NCiAgICAg\r\nICAgICAgIDwvdGFibGU+DQogICAgICAgIDwvY2VudGVyPg0KICAgIDwvYm9keT4NCjwvaHRtbD4N\r\nCg==\r\n\r\n--b2=_LqveOVFe01Hu5VF4pdmKx7rJwnpheDWF8hKveWuWVA\r\nContent-Type: image/png; name=logos-footer.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <60bb81752fc252a6d5c0@news.proton.me>\r\nContent-Disposition: inline; filename=logos-footer.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAigAAABwCAMAAAADkXsEAAAABGdBTUEAALGPC/xhBQAAAAFzUkdC\r\nAK7OHOkAAAAJcEhZcwAAFiUAABYlAUlSJPAAAALfUExURUdwTIpy/YZp/rfc/KOc6Ydn+76K3WxJ\r\n/97I0ZBp//CJWbx+0b6l+o1v/ubH3y7ZzdVqlo5p/fO7m29P/sXM8qiO/vi7tL7O++l3e5Z3/4tp\r\n/8mz9eSr2LXu9bae/3df/pV3//jZ0L2q/te/+XaA/bXo9+GpufnSzjKj8NrC/+SGjNLE/9Roo6Rp\r\n5KGK/cRiqNxujzq619ep3Itk/Cyo8PnBycWIy2vZ4fJgxltp+O9/e0ed4rbt9cWHyuRyhDHO0DjA\r\n1CrgyrVau+tfyJt4/8GI/3BN/21K/3BN/3hN+rCS/3VS/55+/3JL/H9O+JZ1/5p5/7KZ/ref/oVR\r\n9UZ0/4tP8pFx/+C3/1Jm/6uM/7yl/6KC/4lp/6dT5qaH/0xt/1hg/z97/7ZW4HpZ/4Nl/39g/9ix\r\n/11a/8G//59S6bbs9TiC/65U4zKJ/7zj+GhQ/4JM7Ytw/5JQ7x2f/5lS2L1X3JhR7MCr/9Kr/7jX\r\n/762/4pO5mNV/8ym/5JP345Z8fK9zcVY2SuQ/3tL9O66z+a00/+7k7H28r/e/WFl9iWX/8Wg/+q3\r\n0biU/5df681Z1l1s87d612Re+L+a/8au8cKDzsbR/RWo/7yn9qWT/rdcuceJycnJ/5eA/86QxLF0\r\n3OGw1rFZwNZb0s27/6tu4L5fspF6//a/y8LY+/B8ctSXvtqr2ta76M617eevqMKa5p9T0tKm3qCM\r\n/qVp471+06xXxZ5k5/jb0t9cztHB/8Ww/02R5lGJ6eGnrrat/2dX+7/U/0mZ40Wj4Mqg4sViqqRV\r\nzVSB7Fd67sm2/6OC9Vp08ECu3L/K/6uJ8uh1f97B5PHU2NbH//GEY8tlopuH/+TH4LqU6qmc/zu6\r\n2O24oIhf/+rN3NFom9icubKP79lsktyhtK+k/+peyeFxiN7S//rCyadWyjXI0/GNVN1vjJDG+fHN\r\nynqu9abL//20h/ife5bk7NVyobFiylqj/52w+HnLP+kAAABGdFJOUwBnRH8QICD+IP+AMd6f3v7+\r\n397dON6AWYTPvpdj3n+Fi9e/yv2m05d63k1/hd+7pNlD3PW/65P32brk5MfX58+IiN6/v4D1Cm7r\r\n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\r\n\r\n--b2=_LqveOVFe01Hu5VF4pdmKx7rJwnpheDWF8hKveWuWVA\r\nContent-Type: image/png; name=link.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <2d1a6abb150c3c3b80a7@news.proton.me>\r\nContent-Disposition: inline; filename=link.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAEgAAABICAMAAABiM0N1AAAATlBMVEVHcEwAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAD///8wMDAgICC/v7/v7+9wcHBvb2+fn5+QkJCvr6/f398QEBBfX1/P\r\nz89AQEASqJaGAAAACnRSTlMAp2dIhu/H3yAQ2b5STgAAActJREFUeF7tl9uupCAQRRsU0A14t8+Z\r\n///RiZOdTEjTFLbxrde7K3UzVTzu5suXvtHKOgBwVunmY4s1SDBKf6BpDTI41V3XkPaEqjEo4HR1\r\nOBBo+xpPZyHiugqPA66b6Lluoue6qXeoxpYq3uIE7XuPximajwr0Z17WOaZl6s8nFgf/jyFWJNfh\r\nLWH0ZAz4j8mHpMqefdn2wxTFkFzRMwHAdGQnhaSLnh8ANAWhcarsISNjIzYjMjUeLN4v5dwa5Bno\r\nIZv3a24o5RJNfjw8kaI9TQ26vvnhCTwHNmv23iczqV5ENufYZhw8f/n9D9tfqrbL1zmAnoEeDiSB\r\nexHlPT7S8/ukJyBFFLHvgkcQCR5BJHhi3gOh2JEeDPQg5D1OaP9AT6QHwLRlPLCFgeT3E43DMZAB\r\nb1DlX2TyfqeTczghjy7/tKv3GwjnuXqT9CYVLSD5vhPzeMWmqY2ihyUq5hZYbMHDEpVyG2jCXPQ4\r\nYT9yIPdtGempzYwhFVZink5Y2emSFu4RKSQgzus6h49urQan0HceWqS3qMb1dx2jsun6oX3/6W+7\r\n2x81KboYlGke1XTtew3DqVYpd11DtDJIMLah5jTJc52WG/ny5S+JMmZHOoCC0wAAAABJRU5ErkJg\r\ngg==\r\n\r\n--b2=_LqveOVFe01Hu5VF4pdmKx7rJwnpheDWF8hKveWuWVA\r\nContent-Type: image/png; name=instagram.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <b859229de3f9d5a54688@news.proton.me>\r\nContent-Disposition: inline; filename=instagram.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAEgAAABICAMAAABiM0N1AAAATlBMVEVHcEwAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICBvb2/Dw8MQEBCAgID////f39/v7++ZmZl/f39WVlZA\r\nQECvr69iXVEOAAAADHRSTlMAx4Cv75hY3xAgQG+ClCpeAAACR0lEQVR4Xu2XWW+DMBCEYy5z+OI8\r\n/v8fLZDCOLYxblDzlHmoUIU+Zpcxu3n8t776Ki+rlFC2iJK4Kt+lZCRhL0ri7A1MBIommhY3MVD0\r\nB1QGjEM0C7WTsguleQinIOxStAjgUMbukcC5SwLnPik3OVyTQSK+jqdAqGFuG0OtFBou9eQHmL45\r\nUQ9Udt0gfpjp2rbb/sLWQaJnxUUvHCkmoy18EiuvVTspOjHEdq11CeZUvVa3g5Lc32m+cGoXRXHG\r\nxEK6sHR0SCz2XRyxmZF4Ciy5X5k0C8P/G77iZu+Liw/Q0tEJ5YheynnkvyDFuO6XOED4Bq0PPmLZ\r\nNU8NC0K24tlB5qmtRAm4k8vGzo8OYvZEqBAXgLbY1ONYb8FSmuFdladFAA3IQY3LDiDXgSM6qNPz\r\ndJA6tdsEiJynCK9lfF6gTGGDqAVitqP5aQiWers05gc1ewBHgBZ/Es2+AZreB/V6aTgaRmkBzRZm\r\ns8eQZhMbpJZnD4whUzzk9acvpSGFAzi9I5Bx0BFRciG1YhoHfGLNIxJ4aLWJJAMPbW5+RlDdqq5W\r\nMAxQ8rBF3B82Ps5S9kLpeWrRIu90nN0zBHmS3hmJ2mrc6lCrPYb656M6G2vIE8a/11KP/JgSyNOi\r\n4nFhaYuNa2RL/8iGJTs/+xLROZaI4nqt4edrDYKQBS1aXMjOXrRq5Vu0oJx4Vj8wjO3o7jL6gfUY\r\npI+t/qT4yI8aKPOaSrJHsIroHBPBThAqpTcxUBYnBoVkwPxNZRXvP9fTqgTln/TVVz8454FFTHEw\r\nHwAAAABJRU5ErkJggg==\r\n\r\n--b2=_LqveOVFe01Hu5VF4pdmKx7rJwnpheDWF8hKveWuWVA\r\nContent-Type: image/png; name=facebook.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <b492c86717de04736e16@news.proton.me>\r\nContent-Disposition: inline; filename=facebook.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAEgAAABICAMAAABiM0N1AAAAUVBMVEVHcEwAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD09PS/v7////////////8AAAD///+hoaFBQUHf3994eHgq\r\nKirCwsKQkJAdsKUoAAAAEnRSTlMAgM+Q71i33yAQoEBw9kBvv69zN9pmAAABkElEQVR4Xu3XaW6D\r\nMBCGYTDjFegyZs39D9pGqaKkDHzjSO0v3gM8AmPDUP11Z2ex7ZLx/J13rmtfVawjfoqcfYGpiYV8\r\nCsXMXnUBZYkP8lbJxIZBTdQ4wTDMB4XjAQIk7GAJO+VS9KzOxAOo4YKafcey3DgPU59zntZhfpBs\r\n4QKNa37oAfJxB6pF55LzDsS17ATRGfI+RFGEkuTMWYDAJXnBWfIhRFH7yGYJAg/OSdD6hPTTb8gJ\r\nEB3fWT8vNwDdW8tCY763sFi7gbrjJRpYrgNLtIFGlksA2uxq3smodhEPEPIbiCEk93/QeG29Q+NP\r\nSzGU5WYIeR00wsU2OogZHbakgnoMdSpoxUekVUEXfGgjCRBca8IvtulafxemWwvjF5vV7Wz8qo1U\r\nDnnwfVRDSYQiFUMBfLK1UF3JRQKQetayZZAFg5YWaqr9otFDPoJhFED6sRZB+kEbQfrRH0Mm6H5q\r\nENTESpf1RxDZSl2odyGqY1VSSF6AJAZnHT1D5KzM4N7ePz/6q9Ob1LWFSnlnZ18eZ66AZcdauAAA\r\nAABJRU5ErkJggg==\r\n\r\n--b2=_LqveOVFe01Hu5VF4pdmKx7rJwnpheDWF8hKveWuWVA\r\nContent-Type: image/png; name=linkedin.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <c29b325c0cc14436eb09@news.proton.me>\r\nContent-Disposition: inline; filename=linkedin.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAEgAAABICAMAAABiM0N1AAAASFBMVEVHcEwPDw8LCxMLCxILCxMM\r\nDBMLCxMMDBQLCxMKChILCxMLCxMHBw8MDBNLS1LExMb////m5udxcXYqKjEbGyKVlZiFhYmkpKe5\r\nrNSLAAAADnRSTlMAEEBvoM/f/7dY74AgkGuDr4QAAAGBSURBVHgB7ddVorQ4EIbhaH0RHA69/5Ue\r\nF5jCUvNz188CXiIthXp6ups21nnCOwrBGmklhoSVFKIgkxM2kKukGSYXpGLCAYpXl1PjRK3VBZXH\r\nKaoudAgQlE46whLryEuacJnXB6EaBWq1K+JX03b9gGPxwgEN3YeTEmm1LeNX233ocSzvLAh/ui8j\r\nDqXtJTn86b9Ck2hJBPznjF4AwZIiluaPzgQILi5gZWomnAuKSxDY2JvBmWaY52bEmmEhi6VH9+Hx\r\ndVjvZjTfF/lYp+zJEbHQ3P3oVyVXGGq7Py0WPAvRbohp8IdYCNdDL1goDs0TxpntrTw0sx8FYWhc\r\nfAU7LJQc9t8iGhYiFvLH178XCizk/lXIykKWhYwsZFhIJ0koKS5IQkFxURKKitOpPERqSy4PObVF\r\np+JQpTbl0lBWDFvS/5u1IorE+wctpT0uI33rMCoYj28c2AUlX937UsNEwoEU1WVV3s9krUpUjqQZ\r\nZuvlWCsZY0MgvCPvrNHq6elmb7joWa5HMxiBAAAAAElFTkSuQmCC\r\n\r\n--b2=_LqveOVFe01Hu5VF4pdmKx7rJwnpheDWF8hKveWuWVA\r\nContent-Type: image/png; name=reddit.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <35fe43127f63a3ac5144@news.proton.me>\r\nContent-Disposition: inline; filename=reddit.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAEgAAABICAMAAABiM0N1AAAAUVBMVEVHcEwAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAkJCTv7++/v7+goKD///9AQEBfX19vb2/f39+QkJAQEBCAgICv\r\nr6/Pz89QUFA4ZTJWAAAAC3RSTlMAx0iA72eY3xAgr42ZgksAAAIwSURBVHhe7ZfJrqMwEEWbwUzl\r\neWDI/39o0zxerizaBqJkl7ONclR1yyWbP5/my5euZE3R0kpbDKx82VLUFFEP7AVNBQugtulva1JU\r\nN1RlTRladrWchk5ouiuevqBT2v6CpyXwsgme103wvMPU5Tx8Flqap6nIJd7kPF7/44HZpT2MMii9\r\nIaAuXwnIOKF/4Igp1VyVbkvqJwb2KlFQLh7p/KEiqrubSXs9ETm9oYjOSkomZH/+HfSKREEo6erI\r\n5N6OmSYElB7ckO5MUIriP6IaAjAaF5QQKjjUctJbSUeMFBrMlo6UmYjGyWstLbndArwlu7oXh8RZ\r\nIiLslPYQgN3teXrhit96IMjgR6SdOEVWX2LaRe1BRDvLNdFCO0lRRhCFf0M0j/QQ0AhDPNwQyWee\r\ntDJB5PBrujWEjb/abYYQ8WgUFmGfjd9sXh/3wlFuavwNDiQqIEJII0Q4kDTkVmTeRIFWHmjtgcbl\r\niBXJLe0+m2C4ExAJy/keYMgtbVcTXT3cFo84CA5pR6NaZqWmlaCkjAaIiDK94bQIAshdURRRpjce\r\nnUI0fLwiz+5H9yyJ41Rg8aPrP1sSKcyKNrB1ikB/fmVjPf1k7YSk1dn9iJKwc0eEy7+1MDjAVew4\r\n3rPs7KEFlYiqCYYAkgagKyjGBLmsNuHnYEaKaLtPP0Zhev9D+/NP/6L/+EdNDMsWVd/4Ju2rtKZC\r\nOZdUTZvS3IYNNcWWooTmHiUbfj/XGwbLp/jy5S/IVHtYBl21iwAAAABJRU5ErkJggg==\r\n\r\n--b2=_LqveOVFe01Hu5VF4pdmKx7rJwnpheDWF8hKveWuWVA\r\nContent-Type: image/png; name=x.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <0ff571b7c169ddb084b3@news.proton.me>\r\nContent-Disposition: inline; filename=x.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAEgAAABICAMAAABiM0N1AAAAUVBMVEVHcEwAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6Ojrf398QEBCQkJDPz8+pqalaWlqAgIDv7+////+/\r\nv78gICBwcHBRpsbFAAAADXRSTlMAgG+Q71jH3yAQQK+gGJ2inAAAAgpJREFUeF7tl9nSqjAQhAVJ\r\nwjZhd/nf/0GPMYHh2OJgqrjzu9OLr5Jm0oTT0fz4UZRprQ09MLpKy1iL0hn9R1apCE3iLICp80gN\r\nknyhUisNYtTecM4kcC72eHJNIibf4TFEMSbZI5tkT7ypYI+I/pT4mb7gvO1R9BVKCsherjMjrWkb\r\n95+lgNnaXEKBv0V0udOKwXn+WJxsLIgWOudomsfKmpY9k/NMxGTv865Z1PZPxf1h6tYe/1NakiHG\r\nKQaicbWV0XluxOCS8JEtim6JyTpP0+54cBWt8Ao775Ho3jjPHabyhLx2EMc0eI9fm7i3khiIqe39\r\nACEliFJ6xXJMtzBASCpEtMyNfe5xHiCkBpEm5ObydTHBAEHaMEVwtm5+jz29x4CIEK/o5lF4jyji\r\n42v9HtsYETO48ZlHIV4U8llGAaFdYYeJvnbzKCBGevxcJ45xMya93UZQib2P6TkKQCUeEa5E3wAb\r\nMaXSoeVKDC3HMQmHtsiI4UrsueXexZSBB9O2l1Bl3HIYUyVULVQixzRB1X7aG1Sij8mfmJcpQhIY\r\noBFazhcLtNF23ANU2XQNrGPKhVd2GCBoucCE70dMiT0dttyM5bvWodea+IsWUmjajSmOvozKpviL\r\n9vFXf50f+lGDqI9BZeq0mzzZ1iTF6Rvy2kRqEFVlLxatnCaGMq3mz/U6LdlyED9+/AObJYwD2Cnw\r\nHQAAAABJRU5ErkJggg==\r\n\r\n--b2=_LqveOVFe01Hu5VF4pdmKx7rJwnpheDWF8hKveWuWVA\r\nContent-Type: image/png; name=drive-photo-backup-mail.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <a8dab195aba177aeb30b@news.proton.me>\r\nContent-Disposition: inline; filename=drive-photo-backup-mail.png\r\n\r\n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\r\n+9nbCyRn2pDnHCz3LsRJB4m2H/quB7Ri1WsvX8Vrr4+jozWic44I6K4nchjqCGKgzYeL4yntn9I1\r\nZlfKiIVo62ZWtWpQT7uknMV0/pB3tZYuaDQjZq+RV6fXwBczqSO+Zigk1lQSh6yomuTSXzREo2FN\r\nQrVFd12yUCVDbENcyDhRkV+N0HPwlUMiaLqGUwlEgjW8Xk1q0f2qRINzumrp0rL7clw8Ve+Kr6XP\r\n8nomhcRy0jyc310PtVui1V22BKybqAaHKahz95tiA6qf4iht1j+r7cRYmSgKNCgPm2gKN42k/nM4\r\n9+GEElSjUDSaxNxAFWw691FXf9UwFXCPq2o21cQ74bIE1QvWsi2c6sbmb6d9615tHUyrIy8aMyrc\r\n5jaaGXWpG7Y7mGrnqB7rfm47FILVSDrU/qrHvlVbdhf8X4+jrcZ7thvPWH8vdbdv5oVvZ2sE29uO\r\n2YVw2D5SrF3Ii+0EgF0fCWHtln6C3a9bFzWyfd+6/lNtLGy3O9+CvHCP3/7yre371Nu0thkR1i77\r\n1j+XXbd/vabN9hfXoKNxl3utJx7earPvss9u91qHpMyfNYLIdj0oFr69/vMtN9G/SNCj/n9l+/Gf\r\n/G78+//ld3CEBIVsf/SfP6VhuJI+4kZcvB158d9/e+Lh0/SQ0WNOcCnq+qND3fQKR0keSM2NMvI5\r\nY/xqiUHHgBEDMueopYtRuEHSg7to2PfEzBTuOXoUmbKTh0+vaDjUhDeuT9GrHMMsPaOiHJ/iNT1e\r\nAvGtJI0gPxYXFxAeOIBVn/HMV5zJYi5P8LCSUxBBCItS2mhpEIchZ/uQpTWSjXYhE5TMdoLFloim\r\nsIhQZomeGnE4FWXFFpckEZ0naWuJxwI/i9CQyIshZ4vHyauGpWgGFDUc2aNGo0RRVIqSbhHAOzJ+\r\n/DRqA7+qgoSd85TsFfCJNyqGjiPPINLeDzvaQ8OeBlBZwlX5POs3kZp+HTMXv4Je7zqG25tRoLdt\r\nfG6V5y+hvVm8giURKkHQE0TEIsD1RzFL0DwzmcHE5DpGe8NYT1l8Z0302NE7uJDAaAfJo9YuTCyI\r\n9geN17Vl3k6R1wzTwM0isZ5DeziugGyov4PERBr7+TNDT2NrpIIEjd/r03PwJzKoFAjufCKkynYj\r\nOPmhD/bjUL8XE1sl5Eo5XZSkn1jeJp4nh+FOerHDos3RQW99ke3sU6+5bGkRrGObb5DA6SLIaqGh\r\n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\r\nPpoT8+3jD+0bW75iextFVnn95pStyJgbpdoOLpw7irkvPAcjnV1SWznyKhQMymu3ur4i7y6neGbm\r\nXRjaH6J1zINlItDi5DwI+AewmCfHgKsXd1fuIZ1x4zd+91n8p9/419jazIquDdsFUjKaBsf5c9Qv\r\nczOoND0SDcTvdG8igU984ntw4uQRqSC2ukLOlzWugkb9S/N6lYiUKs0XlVJBdEAEKHulJIdRMYdT\r\nY2oyRzHJVmVilMbpNjmHOE2Ro10bjQ41fqOjROSYbtTv91qOS5oPrG40iQMjDUTNvooYNgC7XVLV\r\nmNcdxzaNfTSYsMpZ4tq5DjgJcftva56QD5VeRst0RsPGcbqpFwh7/TGjMTQHLlOrkY3h2vEaYBIC\r\nCoe5pKSXrBaa6YjXYUsbOJ3zgK2bKCuMISiqmdIJLmekvoMDsOx2tGFbaJYchrmEqn3t7BvAmleN\r\nYBmY1AEct7ILRnbH/+aVYEdAaI79NHv5N0kTzX6G1n1rjqu0aXYaWMWEbpp9V+3nanuBjXvxdF6o\r\nY1dt980ZuQu6/bXKIYX5qOQbcyCY6QewbtaZkmEPDju1w0i3cBAa7WSEfZx5bg32y9FeBsfshHbC\r\nwrjfLsDTSSpoupP5201M2KDfGcVgp6c4r9uWh2Vdw9y6ESTO9tipMQ7iA2oc2Xpa9nfO8+mOp2f+\r\n3tL1tpcEXSI7nH3sJFPMMkbdvGN79a9z6/aZM5qgG+Dv9nfndTqNpd2Af++2dBIJ3drRvU36dzyn\r\n8/O9z69jr/v6Tuftdu1unzn7x3lPnZtNpvz3R2bcuXkbo5MHWdVKhTPSyOsfGCQj00tGFXlKNjcl\r\n/HJ5aRWvXrwqQp+shs9CU3fvzMiMO9ofw8LsDOKDw2AjPpHuRbK3DxHybmS2yEtJBqgn6kdhcwNr\r\n6xuYmNiPlcVFDPUTubF/DB4Cso1gCk3yyiWSaSkj6SEDtLi9RWCjl+NFyeOVJiLDI55OTnVZWlrB\r\n0sKizI3+UERAAgPqIBntcQIovX0D5IUJ0zFu6UOuEMH3oXO1iIAXATKapFKC6HsQ6ZHPyLToJ4NH\r\nL2TJ+1YT9Xl/IMDBH2Q4VJHLECEDFZoZpv568vx+FHMZZIo6nr8yD5bIYO8KK9STaYfJXi8OHjmJ\r\nL794HdN31rG8toneVBIDcb/kWr9MHpUF8tKd2NePR08OkZFXw7dfX8LSRh5j1KeHD45CJyP3GnnZ\r\n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\r\nGHiSbQ6DtweShnxAF81IXwuPgBf/VnYEF/bYJNuUFjUOJXyFL4jpqehmDEt/4Qk6WR02vJ7zP2H4\r\nlP9VNM3xEM83eWeP/Z0b90KUtD3hUnfjMw9ZBsvrQZ/Xo0pC/tr18Y8fNjHW107ip1df1+IBn8++\r\nv/SzX8q7Mp5//8L/+Rfxh/7gv42f/4W/SPapg58bGf/kP/U7f9jM+Nf+jv5qya8dv3b043/9b/8s\r\n/rcf/v3pP/LH8f/+9b/5OvdEb9xxcf0z/Ibf8g/gX/x3/9APf3/T63k1r3ZrA+N6YCffbUUlX+ea\r\nia+x10aHOj/zdzvfufIS8RPlf9D9v5S3+gZJHDxG6rEVAFrNbfoT9y4hegcu2rhtPTrX/46+sJ94\r\nHM3+nr+u/P8Y8j/ZHCc/1Mc5ijfbttxyvd8+/JP6P2xzfTgr6Z22tBz2umZ/9S+/mn+6qCJDZLFo\r\ntgVsm145j3at2gyLmeFgGaIPvb8aeulyAFjXD03G6XYgm8Y9tJt8cRw3xpYFPAXfQcbkZzvIPenK\r\nsnEiohubpzEZPHftaIAVA5/oY70Ir4XptZP7ARn9oLvEBw12/Vkz1/1hhv3OC8t+WzvSWQdvs9gI\r\n6m5e9ZoW8Fi6nOY7r7Pux0ht8uJTyNfXn4rAeTGYtPC8SkkifWOXphbj5/VJF9Vb7cQN/lM14vqm\r\ng+/xGbqWb3j4fUNIvu+3kTdv1ID+Oy3wOYmBFxVgQo+EQG7VHOI3+A95OY7PWN/ifan3aE/ZJkcf\r\n8T8k2Tvum+bSbwqinqwj4YELHVq46oNjQbmM+DbelyLFLZyMOU5s0AlDTrvh4SmJz88wodAhvir9\r\nViOc8B/XgXkD8dR++ebD6xMvU3tLpsZ8cSNxA+5tGuAP2ZwIP53yv+Cv5hmMTbHX6I/F4l2UGnE3\r\nuCqurXC5tFgnpV+3sxfYYSNKb/YxsONMeDQU4HE6Jp+v28/myV2vkWjruRh17iq4H/799z9Lvoqp\r\n7r9S8uz/s5/9zL5f7593ZPziL/51/Hv/zn+I//KP/dd4d8Rmxj/3L/zTr82M3/GP/jb82vFrx98J\r\nx/Mui+e/P//DhsX/9Wf/D/zZP/nf46/9wv+DKKWe/3ssTD8WiJ9bFb/z9/9e/OP/+j+PX/f3/72v\r\nc/F0xgD742Fv8z+f7zXBep38ttpd3Xv/gfvicNzn/543T/m/1VbjHRKD7HEDufH+69Ikl18//3x8\r\n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\r\n\r\n--b2=_LqveOVFe01Hu5VF4pdmKx7rJwnpheDWF8hKveWuWVA\r\nContent-Type: image/png; name=button-app-store.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <ee5da21663fd13e62268@news.proton.me>\r\nContent-Disposition: inline; filename=button-app-store.png\r\n\r\n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\r\nrkJggg==\r\n\r\n--b2=_LqveOVFe01Hu5VF4pdmKx7rJwnpheDWF8hKveWuWVA\r\nContent-Type: image/png; name=button-google-play.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <966459207ca3398b5e4a@news.proton.me>\r\nContent-Disposition: inline; filename=button-google-play.png\r\n\r\n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\r\n\r\n--b2=_LqveOVFe01Hu5VF4pdmKx7rJwnpheDWF8hKveWuWVA\r\nContent-Type: image/png; name=logo-proton.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <ef2a4df7b06d9fcbbf1a@news.proton.me>\r\nContent-Disposition: inline; filename=logo-proton.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAXwAAAB4CAMAAADG37laAAAABGdBTUEAALGPC/xhBQAAAAFzUkdC\r\nAK7OHOkAAAAJcEhZcwAAFiUAABYlAUlSJPAAAAJhUExURUdwTGBQ32hQ32NR4WRQ32NR4WJQ32BQ\r\n32NR4mNS4mNR4WJQ32JR4WFQ32BQ32BQ32NS4mBQ32JQ32VQ32RQ32JR4XBQ32NQ4GNQ42JS42JR\r\n4WNQ32FQ32NR4WBQ32NQ32NQ5GNQ32NR4WJQ4WRR4WNT42NT5GJS4mNR4WBQ32JQ4GRQ32VQ32RS\r\n4mJQ32NR4WRR5WBQ32NQ32NS4m5M/WJQ32NQ4GNR4mNQ4GJR4WRQ32JS4mNR4mFQ32JQ32NR4WNS\r\n4GNQ32NR4UossUYqq2xK+2pI9WhG71Y2y0Qop25K/WZE62JC5WBA31Q2x1IywU4wu0wutWxK+Vw+\r\n21w81Vg6z0ImoVdDyjgYhzIZgjsgkT4jnD0jkzshl086ujAYgDcdjTUah2NR4W1L/WxK+2dG8U4w\r\nvF093Fg50VAywVY3zGRE62JB5l8/4WpI9ksut2JC5kkssmlI9mVE7Fo71kQop0Elojwhl0YprFM1\r\nx1U3zFs711092z8jnWxK/WA/4Uwut1M0x1M0xmBA4UYqrEQnp0kssT8jnDoeklQ1x21K/WpJ9m1L\r\n+2VE60cqrVo710ImojcdjTofklo61mdF8W5M/lQ7x1EzwVk60mBF4V9L2mNC5mBI318/4GJE5VU6\r\nyVpF0VEzwmFN3lAywk0wvEsutmVF6mhG8Vk50lM9xWBM22FM31M1xkgrsUwxuFpA1D8lnEQoqD4k\r\nnFU2zFI7wkcqrFs811tI0lI8wVg40VE6v0EloVk801s71k43uGBN3DUaiDcejVxK1FdDyjQahzkg\r\nkjcdjDYciEUtpkw2tVM+wiSBEHAAAABidFJOUwAQIP5A32Agv5/vgN+gQEGvYHAwgO8Qv29/z1CQ\r\nkDCQX6Cg389vX4/eUM9wYI+w7k8hAZ6AYa8Bvs5Bn74BcQGvn/2AgICAgICAgICAgICAgICAgICA\r\ngJAg31+wUN/vIN/fHPTuiQAACW1JREFUeNrtnYd/3LYVx8kzeRxHX6lbOt3Qthw7dkZX0qZtRps2\r\ne7RN96STxomnnCjxrOPtNHvvPbqSdO89ko6/KryzJEvAA/DAO4JKDr+PffLncyQAfvHwADw8yoah\r\n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\r\nYII=\r\n\r\n--b2=_LqveOVFe01Hu5VF4pdmKx7rJwnpheDWF8hKveWuWVA--','Turn on automatic backup and keep your photos and videos safe on your own private cloud.\n\n[Proton](https://proton.me/)\n\nDear Proton community member,\n\nDid you know you can automatically back up your photos and videos to your Proton Drive account with our mobile apps? Keep your private memories safe and accessible, no matter where you are.\n\n[Google Play Store button](https://play.google.com/store/apps/details?id=me.proton.android.drive)\n\n[Google Play Store button](https://apps.apple.com/app/id1509667851)\n\n[Photo]\n\nWhy backup your photos and videos with our mobile app?\n\n- Complete privacy: All photos and their metadata are protected by end-to-end encryption and accessible only to you.\n- Automatic syncing: Set up once and your photos and videos will automatically sync to your Proton Drive.\n- Instant access across devices: Easily view, share, and manage your content from any device, anytime, without manual transfers.\n\nGetting started is easy! Just download the Proton Drive app from your mobile store, sign in, and enable photo and video backup in a [few simple steps](https://proton.me/support/enable-photo-backup).\n\nIf you have any issues backing up your photos you can reach out to our [support team](https://proton.me/support/contact) who is always ready to assist you.\n\nStay secure,\nThe Proton Drive team\n\nConnect with the Proton community\n\n[X](https://x.com/ProtonDRIVE)\n\n[Reddit](https://reddit.com/r/ProtonDrive)\n\n[LinkedIn](https://www.linkedin.com/company/protonprivacy/)\n\n[Facebook](https://facebook.com/Proton)\n\n[Instagram](https://instagram.com/protonprivacy)\n\n[Blog](https://proton.me/blog)\n\n[Update your email preferences or unsubscribe](https://account.proton.me/drive/dashboard#email-subscription)\n\n© Proton AG Switzerland\nRoute de la Galaise 32, 1228 Plan-les-Ouates, Geneva, Switzerland',0,0,0,0,0,0,'2025-08-16 22:15:51','2025-12-09 19:27:43','2025-12-09 19:27:43','2025-12-09 19:27:43',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(626,4,'<SJ0PR84MB19915B612DA0A359C7B02D5CFB31A@SJ0PR84MB1991.NAMPRD84.PROD.OUTLOOK.COM>',NULL,NULL,'RE: FW: 5600 Budgetary Quote','gary.fudge@hp.com','\"Fudge, Gary\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Forma DJR Micro\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n@font-face\r\n	{font-family:\"Forma DJR Display\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle20\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Good morning Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">I’m going to be in the Orlando/Tampa area Sept 3<sup>rd</sup> and 4<sup>th</sup> and wanted to see if you could meet then.&nbsp; I thought it would be a good time to meet face to face, learn more about what you are wanting to do, show you more\r\n of our capabilities and start zeroing in on things.&nbsp; Would you have some time to meet?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">We can certainly discuss things before then if needed.&nbsp; Just let me know what works best for you either way.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Best Regards<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">3D Print - Enterprise Account Manager – US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">|</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black;mso-ligatures:standardcontextual\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_1534171529\" src=\"cid:image001.png@01DC1023.8FB81D20\" alt=\"image001.png\"><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Tuesday, August 12, 2025 3:21 PM<br>\r\n<b>To:</b> Fudge, Gary &lt;gary.fudge@hp.com&gt;<br>\r\n<b>Subject:</b> Re: FW: 5600 Budgetary Quote<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:red\">CAUTION: External Email\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Got three emails!<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;\r\n<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"107\" height=\"22\" style=\"width:1.118in;height:.2291in\" id=\"_x0000_i1027\" src=\"cid:image002.png@01DC1023.8FB81D20\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"http://mavrix1.com\">mavrix1.com</a><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"airmailon\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">On August 12, 2025 at 3:13:05 PM, Fudge, Gary (<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hello Rick<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">See below per the previous email…please respond back so I know you are getting these now.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager – US South\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_1425590809\" src=\"cid:image001.png@01DC1023.8FB81D20\" alt=\"image001.png\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Fudge, Gary\r\n<br>\r\n<b>Sent:</b> Wednesday, July 30, 2025 6:37 AM<br>\r\n<b>To:</b> <a href=\"mailto:Rick@mavrix.1\">Rick@mavrix.1</a><br>\r\n<b>Subject:</b> 5600 Budgetary Quote</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Good morning Rick,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Good talking with you briefly late yesterday.&nbsp; As promised, attached is a budgetary quote for a 5600 system.&nbsp; Based\r\n on our limited discussion, this sounds like a good place to start but we should have a more detailed conversation to zero in on what is best for you.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">-I have included a 5600 brochure for your review.&nbsp; Note this is the base system and you may want to consider a\r\n 5620 or 5620 Pro upgrade.&nbsp; These upgraded systems are more economical for higher level production.&nbsp; You may also want to consider other accessories like Natural Cooling Units or an Auto Unpacker depending upon your workflow and volume.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">-These systems include a 1 year warranty which covers all parts and labor for that period.&nbsp; There are a variety\r\n of service plans beyond that you can chose from to fit your needs.&nbsp; Including self-maintenance, 3DaaS and others.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">-As requested, I have also included a brochure on our automation accessory to swap out build units.&nbsp; This costs\r\n approximately $52,000 per system and can be well worth it if you want to do 24 hour production with limited staff.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I know you are familiar with HP MJF AM technology in the Drone world as we are quickly becoming AM the industry\r\n standard there but I have included some additional case studies attached here along with some video links below for you to review.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><a href=\"https://www.youtube.com/watch?v=TC5l7fkGNHE\" title=\"https://www.youtube.com/watch?v=TC5l7fkGNHE\">Blueflite\r\n at Xponential 2025 | HP</a></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><a href=\"https://www.youtube.com/watch?v=VTa2ZwKHk2c\" title=\"https://www.youtube.com/watch?v=VTa2ZwKHk2c\">The\r\n Eye Above at Xponential 2025 | HP</a></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><a href=\"https://www.youtube.com/watch?v=EwBmg0165gM\" title=\"https://www.youtube.com/watch?v=EwBmg0165gM\">Unusual\r\n Machines at Xponential 2025 | HP</a></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Keep in mind this is an initial budgetary number and things will change as we zero in on your needs but it should\r\n get you in the ballpark.&nbsp; We should spend at least 30 minutes to review and discuss further.&nbsp; What day/time(s) this week for that?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Looking forward to working with you on this.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Best Regards,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager – US South\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_1\" src=\"cid:image001.png@01DC1023.8FB81D20\" alt=\"image001.png\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Good morning Rick,\r\n\r\nI’m going to be in the Orlando/Tampa area Sept 3rd and 4th and wanted to see if you could meet then.  I thought it would be a good time to meet face to face, learn more about what you are wanting to do, show you more of our capabilities and start zeroing in on things.  Would you have some time to meet?\r\n\r\nWe can certainly discuss things before then if needed.  Just let me know what works best for you either way.\r\n\r\nBest Regards\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager – US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, August 12, 2025 3:21 PM\r\nTo: Fudge, Gary <gary.fudge@hp.com>\r\nSubject: Re: FW: 5600 Budgetary Quote\r\n\r\nCAUTION: External Email\r\nGot three emails!\r\nThanks\r\nRick\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:image002.png@01DC1023.8FB81D20]\r\nmavrix1.com<http://mavrix1.com>\r\n\r\n\r\n\r\nOn August 12, 2025 at 3:13:05 PM, Fudge, Gary (gary.fudge@hp.com<mailto:gary.fudge@hp.com>) wrote:\r\nHello Rick\r\n\r\nSee below per the previous email…please respond back so I know you are getting these now.\r\n\r\nThanks,\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager – US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Fudge, Gary\r\nSent: Wednesday, July 30, 2025 6:37 AM\r\nTo: Rick@mavrix.1<mailto:Rick@mavrix.1>\r\nSubject: 5600 Budgetary Quote\r\n\r\nGood morning Rick,\r\n\r\nGood talking with you briefly late yesterday.  As promised, attached is a budgetary quote for a 5600 system.  Based on our limited discussion, this sounds like a good place to start but we should have a more detailed conversation to zero in on what is best for you.\r\n\r\n-I have included a 5600 brochure for your review.  Note this is the base system and you may want to consider a 5620 or 5620 Pro upgrade.  These upgraded systems are more economical for higher level production.  You may also want to consider other accessories like Natural Cooling Units or an Auto Unpacker depending upon your workflow and volume.\r\n\r\n-These systems include a 1 year warranty which covers all parts and labor for that period.  There are a variety of service plans beyond that you can chose from to fit your needs.  Including self-maintenance, 3DaaS and others.\r\n\r\n-As requested, I have also included a brochure on our automation accessory to swap out build units.  This costs approximately $52,000 per system and can be well worth it if you want to do 24 hour production with limited staff.\r\n\r\nI know you are familiar with HP MJF AM technology in the Drone world as we are quickly becoming AM the industry standard there but I have included some additional case studies attached here along with some video links below for you to review.\r\n\r\nBlueflite at Xponential 2025 | HP<https://www.youtube.com/watch?v=TC5l7fkGNHE>\r\n\r\nThe Eye Above at Xponential 2025 | HP<https://www.youtube.com/watch?v=VTa2ZwKHk2c>\r\n\r\nUnusual Machines at Xponential 2025 | HP<https://www.youtube.com/watch?v=EwBmg0165gM>\r\n\r\nKeep in mind this is an initial budgetary number and things will change as we zero in on your needs but it should get you in the ballpark.  We should spend at least 30 minutes to review and discuss further.  What day/time(s) this week for that?\r\n\r\nLooking forward to working with you on this.\r\n\r\nBest Regards,\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager – US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\n',0,0,0,0,0,0,'2025-08-18 13:36:25','2025-12-09 19:27:44','2025-12-09 19:27:44','2025-12-09 19:27:44',NULL,NULL,NULL),
(627,4,'<CAJO9__ZiCwD6caVc_XNYeRfgSU1pEFqSMpeZzp_H6cJGt-tEYQ@mail.gmail.com>',NULL,NULL,'Fwd: 3900 W Coachman Ave - Revised Lease Terms and Final Execution Deadline','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div><p class=\"gmail-my-2 gmail-[&amp;+p]:mt-4 gmail-[&amp;_strong:has(+br)]:inline-block gmail-[&amp;_strong:has(+br)]:pb-2\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:1rem 0px 0.5rem;letter-spacing:0.08px\"><font face=\"arial, sans-serif\">Hello Brian &amp; Rick,</font></p><p class=\"gmail-my-2 gmail-[&amp;+p]:mt-4 gmail-[&amp;_strong:has(+br)]:inline-block gmail-[&amp;_strong:has(+br)]:pb-2\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:1rem 0px 0.5rem;letter-spacing:0.08px\"><font face=\"arial, sans-serif\"><br></font></p><p class=\"gmail-my-2 gmail-[&amp;+p]:mt-4 gmail-[&amp;_strong:has(+br)]:inline-block gmail-[&amp;_strong:has(+br)]:pb-2\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:1rem 0px 0.5rem;letter-spacing:0.08px\"><span style=\"letter-spacing:normal\">I wanted to share a quick summary of the landlord’s most recent update (see below) regarding the 3900 W Coachman Ave lease and check your availability to connect directly with them this week.</span></p><p class=\"gmail-my-2 gmail-[&amp;+p]:mt-4 gmail-[&amp;_strong:has(+br)]:inline-block gmail-[&amp;_strong:has(+br)]:pb-2\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:1rem 0px 0.5rem;letter-spacing:0.08px\"><span style=\"box-sizing:border-box;border-width:0px;border-style:solid\"><font face=\"arial, sans-serif\">Key Points from the Landlord’s Update:</font></span></p><ul class=\"gmail-marker:text-quiet gmail-list-disc\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;list-style-position:initial;margin:0px;padding:0px;letter-spacing:0.08px\"><li class=\"gmail-py-0 gmail-my-0 gmail-prose-p:pt-0 gmail-prose-p:mb-2 gmail-prose-p:my-0 gmail-[&amp;&gt;p]:pt-0 gmail-[&amp;&gt;p]:mb-2 gmail-[&amp;&gt;p]:my-0\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin-top:0px;margin-bottom:0px;padding-top:0px;padding-bottom:0px\"><p class=\"gmail-my-2 gmail-[&amp;+p]:mt-4 gmail-[&amp;_strong:has(+br)]:inline-block gmail-[&amp;_strong:has(+br)]:pb-2\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:0px 0px 0.5rem;padding-top:0px\"><font face=\"arial, sans-serif\">A revised lease will be sent by <span style=\"box-sizing:border-box;border-width:0px;border-style:solid\">Wednesday</span>, with a new commencement date of <span style=\"box-sizing:border-box;border-width:0px;border-style:solid\">September 1</span>.</font></p></li><li class=\"gmail-py-0 gmail-my-0 gmail-prose-p:pt-0 gmail-prose-p:mb-2 gmail-prose-p:my-0 gmail-[&amp;&gt;p]:pt-0 gmail-[&amp;&gt;p]:mb-2 gmail-[&amp;&gt;p]:my-0\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin-top:0px;margin-bottom:0px;padding-top:0px;padding-bottom:0px\"><p class=\"gmail-my-2 gmail-[&amp;+p]:mt-4 gmail-[&amp;_strong:has(+br)]:inline-block gmail-[&amp;_strong:has(+br)]:pb-2\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:0px 0px 0.5rem;padding-top:0px\"><font face=\"arial, sans-serif\">Rent abatement is being adjusted: instead of 50% in September and October, it will now be <span style=\"box-sizing:border-box;border-width:0px;border-style:solid\">20% for each month</span>. By November, full rent begins as previously planned.</font></p></li><li class=\"gmail-py-0 gmail-my-0 gmail-prose-p:pt-0 gmail-prose-p:mb-2 gmail-prose-p:my-0 gmail-[&amp;&gt;p]:pt-0 gmail-[&amp;&gt;p]:mb-2 gmail-[&amp;&gt;p]:my-0\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin-top:0px;margin-bottom:0px;padding-top:0px;padding-bottom:0px\"><p class=\"gmail-my-2 gmail-[&amp;+p]:mt-4 gmail-[&amp;_strong:has(+br)]:inline-block gmail-[&amp;_strong:has(+br)]:pb-2\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:0px 0px 0.5rem;padding-top:0px\"><font face=\"arial, sans-serif\">Missed July/August NNN payments have been factored into this adjustment (they are <span style=\"box-sizing:border-box;border-width:0px;border-style:solid\">not collecting retroactively</span>).</font></p></li><li class=\"gmail-py-0 gmail-my-0 gmail-prose-p:pt-0 gmail-prose-p:mb-2 gmail-prose-p:my-0 gmail-[&amp;&gt;p]:pt-0 gmail-[&amp;&gt;p]:mb-2 gmail-[&amp;&gt;p]:my-0\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin-top:0px;margin-bottom:0px;padding-top:0px;padding-bottom:0px\"><p class=\"gmail-my-2 gmail-[&amp;+p]:mt-4 gmail-[&amp;_strong:has(+br)]:inline-block gmail-[&amp;_strong:has(+br)]:pb-2\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:0px 0px 0.5rem;padding-top:0px\"><span style=\"box-sizing:border-box;border-width:0px;border-style:solid\"><font face=\"arial, sans-serif\">Deadlines &amp; Payments:</font></span></p><ul class=\"gmail-marker:text-quiet gmail-list-disc\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;list-style:disc;margin:0.75em 0px;padding:0px\"><li class=\"gmail-py-0 gmail-my-0 gmail-prose-p:pt-0 gmail-prose-p:mb-2 gmail-prose-p:my-0 gmail-[&amp;&gt;p]:pt-0 gmail-[&amp;&gt;p]:mb-2 gmail-[&amp;&gt;p]:my-0\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin-top:0px;margin-bottom:0px;padding-top:0px;padding-bottom:0px\"><p class=\"gmail-my-2 gmail-[&amp;+p]:mt-4 gmail-[&amp;_strong:has(+br)]:inline-block gmail-[&amp;_strong:has(+br)]:pb-2\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:0px 0px 0.5rem;padding-top:0px\"><font face=\"arial, sans-serif\"><span style=\"box-sizing:border-box;border-width:0px;border-style:solid\">Friday, August 22:</span> Lease must be fully executed; $51,566.26 payment due at signing.</font></p></li><li class=\"gmail-py-0 gmail-my-0 gmail-prose-p:pt-0 gmail-prose-p:mb-2 gmail-prose-p:my-0 gmail-[&amp;&gt;p]:pt-0 gmail-[&amp;&gt;p]:mb-2 gmail-[&amp;&gt;p]:my-0\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin-top:0px;margin-bottom:0px;padding-top:0px;padding-bottom:0px\"><p class=\"gmail-my-2 gmail-[&amp;+p]:mt-4 gmail-[&amp;_strong:has(+br)]:inline-block gmail-[&amp;_strong:has(+br)]:pb-2\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:0px 0px 0.5rem;padding-top:0px\"><font face=\"arial, sans-serif\"><span style=\"box-sizing:border-box;border-width:0px;border-style:solid\">September 1:</span> First full rent payment of $98,790.62 due (with $51,566.26 already applied at signing).</font></p></li><li class=\"gmail-py-0 gmail-my-0 gmail-prose-p:pt-0 gmail-prose-p:mb-2 gmail-prose-p:my-0 gmail-[&amp;&gt;p]:pt-0 gmail-[&amp;&gt;p]:mb-2 gmail-[&amp;&gt;p]:my-0\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin-top:0px;margin-bottom:0px;padding-top:0px;padding-bottom:0px\"><p class=\"gmail-my-2 gmail-[&amp;+p]:mt-4 gmail-[&amp;_strong:has(+br)]:inline-block gmail-[&amp;_strong:has(+br)]:pb-2\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:0px 0px 0.5rem;padding-top:0px\"><font face=\"arial, sans-serif\"><span style=\"box-sizing:border-box;border-width:0px;border-style:solid\">September 15:</span> Full security deposit of $674,214.61 due (can be split between monetary payment and letter of credit).</font></p></li><li class=\"gmail-py-0 gmail-my-0 gmail-prose-p:pt-0 gmail-prose-p:mb-2 gmail-prose-p:my-0 gmail-[&amp;&gt;p]:pt-0 gmail-[&amp;&gt;p]:mb-2 gmail-[&amp;&gt;p]:my-0\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin-top:0px;margin-bottom:0px;padding-top:0px;padding-bottom:0px\"><p class=\"gmail-my-2 gmail-[&amp;+p]:mt-4 gmail-[&amp;_strong:has(+br)]:inline-block gmail-[&amp;_strong:has(+br)]:pb-2\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:0px 0px 0.5rem;padding-top:0px\"><font face=\"arial, sans-serif\"><span style=\"box-sizing:border-box;border-width:0px;border-style:solid\">October 1:</span> Rent of $95,913.23 due.</font></p></li><li class=\"gmail-py-0 gmail-my-0 gmail-prose-p:pt-0 gmail-prose-p:mb-2 gmail-prose-p:my-0 gmail-[&amp;&gt;p]:pt-0 gmail-[&amp;&gt;p]:mb-2 gmail-[&amp;&gt;p]:my-0\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin-top:0px;margin-bottom:0px;padding-top:0px;padding-bottom:0px\"><p class=\"gmail-my-2 gmail-[&amp;+p]:mt-4 gmail-[&amp;_strong:has(+br)]:inline-block gmail-[&amp;_strong:has(+br)]:pb-2\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:0px 0px 0.5rem;padding-top:0px\"><font face=\"arial, sans-serif\"><span style=\"box-sizing:border-box;border-width:0px;border-style:solid\">November and onward:</span> Rent increases to $113,445.76 monthly.</font></p></li></ul></li><li class=\"gmail-py-0 gmail-my-0 gmail-prose-p:pt-0 gmail-prose-p:mb-2 gmail-prose-p:my-0 gmail-[&amp;&gt;p]:pt-0 gmail-[&amp;&gt;p]:mb-2 gmail-[&amp;&gt;p]:my-0\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin-top:0px;margin-bottom:0px;padding-top:0px;padding-bottom:0px\"><p class=\"gmail-my-2 gmail-[&amp;+p]:mt-4 gmail-[&amp;_strong:has(+br)]:inline-block gmail-[&amp;_strong:has(+br)]:pb-2\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:0px 0px 0.5rem;padding-top:0px\"><font face=\"arial, sans-serif\">Florida will eliminate commercial rent sales tax in October, reducing monthly rent by ~$3,400 going forward.</font></p></li></ul><div><font face=\"arial, sans-serif\"><span style=\"letter-spacing:0.08px\"><br></span></font></div><div>The landlord also reiterated that if the lease is not signed and initial payments are not made by this Friday, they will re-engage other interested tenants and re-list the property.</div><div><br></div><p class=\"gmail-my-2 gmail-[&amp;+p]:mt-4 gmail-[&amp;_strong:has(+br)]:inline-block gmail-[&amp;_strong:has(+br)]:pb-2\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:0.5rem 0px;letter-spacing:0.08px\"><span style=\"letter-spacing:normal\">Please let me know your availability to connect with the landlord this week. Once I have your availability, I will coordinate directly with them to set up the call.</span></p><p class=\"gmail-my-2 gmail-[&amp;+p]:mt-4 gmail-[&amp;_strong:has(+br)]:inline-block gmail-[&amp;_strong:has(+br)]:pb-2\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:0.5rem 0px;letter-spacing:0.08px\"><span style=\"font-family:arial,sans-serif;letter-spacing:0.08px\"><br></span></p><p class=\"gmail-my-2 gmail-[&amp;+p]:mt-4 gmail-[&amp;_strong:has(+br)]:inline-block gmail-[&amp;_strong:has(+br)]:pb-2\" style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:0.5rem 0px;letter-spacing:0.08px\"><span style=\"font-family:arial,sans-serif;letter-spacing:0.08px\">Thank you and looking forward to moving this into the final round of execution.</span></p></div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">Ozzie Mutz</strong> <span dir=\"auto\">&lt;<a href=\"mailto:Ozzie@laurelridge.net\">Ozzie@laurelridge.net</a>&gt;</span><br>Date: Mon, Aug 18, 2025 at 2:45 PM<br>Subject: 3900 W Coachman Ave - Revised Lease Terms and Final Execution Deadline<br>To: Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\">Nathan@lithiumbatterycompany.com</a>&gt;, Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt;, Jarrett Brownfield &lt;<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>&gt;<br>Cc: Bert de Alejo &lt;<a href=\"mailto:bert@laurelridge.net\">bert@laurelridge.net</a>&gt;, Joe Facchini &lt;<a href=\"mailto:joe@laurelridge.net\">joe@laurelridge.net</a>&gt;<br></div><br><br><div dir=\"ltr\"><div><p class=\"MsoNormal\" style=\"margin:0in 0in 8pt;line-height:115%\">Hi LBC team,<br><br>Thanks again for your text messages last week.  I wanted to follow up formally to recap where things stand and outline the next steps.<br><br>I’ll be sending over a revised lease by early Wednesday that reflects a new Commencement Date of September 1.  It will also include revised rent abatement terms to account for the missed payments in July and August.  Rather than the previously discussed 50% base rent abatement for September and October, the updated lease will reflect a 20% abatement for each of those two months.  This adjustment brings us to roughly the same place by November, when full rent is set to begin.<br><br>To clarify: we are not backdating the lease to July 1 and then collecting partial rent for July or August.  Instead, the missed NNN payments for those months are being factored into the reduced rent abatement in September and October.<br><br><b>Key Deadlines &amp; Payment Structure</b><br></p><ul><li>The lease must be fully executed no later than this Friday, August 22.</li><li>The $51,566.26 payment will be due at signing, as previously discussed.</li><li>On September 1, the first full rent payment will be due.  This totals $98,790.62 ($51,566.26 will have already been paid leaving a balance of $47,224,36) and includes:</li><ul><li>Base Rent: $70,130.10 (80% of full base rent)</li><li>NNN Expenses: $25,783.13</li><li>Sales Tax: $2,877.39</li></ul><li>The full security deposit of 674,214.61 will be due by September 15.</li><ul><li>The can still be split between $233,698.28 monetary payment and $440,818.05 letter of credit, or some, if not all, letter of credit funds can be shifted to a monetary deposit.</li></ul><li>Once the August 22, September 1, and September 15 required rent and security deposit payments have been made in full, you’ll have access to the premises.  However, you won’t have access to the premise until those payments are made in full.</li><li>On October 1, the next month’s rent  of $95,913.23 will be due.</li><li>On November 1 and monthly thereafter, monthly rent of $113,445.76 will be due.</li><ul><li>As a helpful note: beginning in October, Florida is eliminating sales tax on commercial rents, which will reduce your future unabated monthly rent payments by approximately $3,400.  </li></ul></ul>This structure should match the expectations you communicated last week.<p></p><p class=\"MsoNormal\" style=\"margin:0in 0in 8pt;line-height:115%\"><br><b>Additional Request</b><br>Please connect us directly with Brian Stufflebean from Bayfront Capital.  We’d like to confirm the current timeline and status of your JV discussions with him.<br><br>To be candid, we are disappointed by the number of missed deadlines to date.  If the lease is not signed and the required payment is not made by Friday, we will begin re-engaging the other interested tenants we’ve had on hold and will re-list Coachman under the premium advertising plans where we had previously taken it down in anticipation of wrapping up our lease with you.  Please also understand that, as time passes, the terms currently offered may no longer be available and will likely become less favorable.<br><br>I look forward to your confirmation and timely execution of the next steps.<br><br>Best regards,<br><br><b><font color=\"#073763\" face=\"arial, sans-serif\">Ozzie Mutz</font></b></p></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><font face=\"arial, sans-serif\"><span><div><font color=\"#666666\"><span title=\"Call with Google Voice\"><span title=\"Call with Google Voice\"><span title=\"Call with Google Voice\"><span title=\"Call with Google Voice\">(863) 698-1493</span></span></span></span> </font><span style=\"color:rgb(102,102,102)\">| </span><a href=\"mailto:Ozzie@LaurelRidge.net\" style=\"color:rgb(17,85,204)\" target=\"_blank\">Ozzie@LaurelRidge.net</a></div></span><font color=\"#666666\">Laurel Ridge </font><span style=\"color:rgb(102,102,102)\">| </span><a href=\"http://www.laurelridge.net/\" style=\"color:rgb(17,85,204)\" target=\"_blank\">www.LaurelRidge.net</a></font></div></div></div></div></div></div></div></div><img src=\"https://cFND-04.na1.hs-salescrm-engage.com/Cto/DL+23284/cFND-04/R5Q8b48zFN7xtP7w2fJvyW1N7DCN1Vp-BnW23f38N1XnCXkW1GzK9r1YXNFtW3LHKj93JH8t0W1N7ZS_1W-thbf24S6Gq12\" alt=\"\" height=\"1\" width=\"1\" style=\"display:none!important\"><div></div><div id=\"m_7426016511018898296data-hbsasc-v0-80218f0f-d464-420d-be52-6105e4dd2114\"></div></div>\r\n</div></div>','Hello Brian & Rick,\r\n\r\n\r\nI wanted to share a quick summary of the landlord’s most recent update (see\r\nbelow) regarding the 3900 W Coachman Ave lease and check your availability\r\nto connect directly with them this week.\r\n\r\nKey Points from the Landlord’s Update:\r\n\r\n   -\r\n\r\n   A revised lease will be sent by Wednesday, with a new commencement date\r\n   of September 1.\r\n   -\r\n\r\n   Rent abatement is being adjusted: instead of 50% in September and\r\n   October, it will now be 20% for each month. By November, full rent\r\n   begins as previously planned.\r\n   -\r\n\r\n   Missed July/August NNN payments have been factored into this adjustment\r\n   (they are not collecting retroactively).\r\n   -\r\n\r\n   Deadlines & Payments:\r\n   -\r\n\r\n      Friday, August 22: Lease must be fully executed; $51,566.26 payment\r\n      due at signing.\r\n      -\r\n\r\n      September 1: First full rent payment of $98,790.62 due (with\r\n      $51,566.26 already applied at signing).\r\n      -\r\n\r\n      September 15: Full security deposit of $674,214.61 due (can be split\r\n      between monetary payment and letter of credit).\r\n      -\r\n\r\n      October 1: Rent of $95,913.23 due.\r\n      -\r\n\r\n      November and onward: Rent increases to $113,445.76 monthly.\r\n      -\r\n\r\n   Florida will eliminate commercial rent sales tax in October, reducing\r\n   monthly rent by ~$3,400 going forward.\r\n\r\n\r\nThe landlord also reiterated that if the lease is not signed and initial\r\npayments are not made by this Friday, they will re-engage other interested\r\ntenants and re-list the property.\r\n\r\nPlease let me know your availability to connect with the landlord this\r\nweek. Once I have your availability, I will coordinate directly with them\r\nto set up the call.\r\n\r\n\r\nThank you and looking forward to moving this into the final round of\r\nexecution.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: Ozzie Mutz <Ozzie@laurelridge.net>\r\nDate: Mon, Aug 18, 2025 at 2:45 PM\r\nSubject: 3900 W Coachman Ave - Revised Lease Terms and Final Execution\r\nDeadline\r\nTo: Nathan Staron <Nathan@lithiumbatterycompany.com>, Jordan Wroblewski <\r\njordan@lithiumbatterycompany.com>, Jarrett Brownfield <\r\njarrett@lithiumbatterycompany.com>\r\nCc: Bert de Alejo <bert@laurelridge.net>, Joe Facchini <joe@laurelridge.net>\r\n\r\n\r\nHi LBC team,\r\n\r\nThanks again for your text messages last week.  I wanted to follow up\r\nformally to recap where things stand and outline the next steps.\r\n\r\nI’ll be sending over a revised lease by early Wednesday that reflects a new\r\nCommencement Date of September 1.  It will also include revised rent\r\nabatement terms to account for the missed payments in July and August.\r\nRather than the previously discussed 50% base rent abatement for September\r\nand October, the updated lease will reflect a 20% abatement for each of\r\nthose two months.  This adjustment brings us to roughly the same place by\r\nNovember, when full rent is set to begin.\r\n\r\nTo clarify: we are not backdating the lease to July 1 and then collecting\r\npartial rent for July or August.  Instead, the missed NNN payments for\r\nthose months are being factored into the reduced rent abatement in\r\nSeptember and October.\r\n\r\n*Key Deadlines & Payment Structure*\r\n\r\n   - The lease must be fully executed no later than this Friday, August 22.\r\n   - The $51,566.26 payment will be due at signing, as previously discussed.\r\n   - On September 1, the first full rent payment will be due.  This totals\r\n   $98,790.62 ($51,566.26 will have already been paid leaving a balance of\r\n   $47,224,36) and includes:\r\n      - Base Rent: $70,130.10 (80% of full base rent)\r\n      - NNN Expenses: $25,783.13\r\n      - Sales Tax: $2,877.39\r\n   - The full security deposit of 674,214.61 will be due by September 15.\r\n      - The can still be split between $233,698.28 monetary payment and\r\n      $440,818.05 letter of credit, or some, if not all, letter of credit funds\r\n      can be shifted to a monetary deposit.\r\n   - Once the August 22, September 1, and September 15 required rent and\r\n   security deposit payments have been made in full, you’ll have access to the\r\n   premises.  However, you won’t have access to the premise until those\r\n   payments are made in full.\r\n   - On October 1, the next month’s rent  of $95,913.23 will be due.\r\n   - On November 1 and monthly thereafter, monthly rent of $113,445.76 will\r\n   be due.\r\n      - As a helpful note: beginning in October, Florida is eliminating\r\n      sales tax on commercial rents, which will reduce your future unabated\r\n      monthly rent payments by approximately $3,400.\r\n\r\nThis structure should match the expectations you communicated last week.\r\n\r\n\r\n*Additional Request*\r\nPlease connect us directly with Brian Stufflebean from Bayfront Capital.\r\nWe’d like to confirm the current timeline and status of your JV discussions\r\nwith him.\r\n\r\nTo be candid, we are disappointed by the number of missed deadlines to\r\ndate.  If the lease is not signed and the required payment is not made by\r\nFriday, we will begin re-engaging the other interested tenants we’ve had on\r\nhold and will re-list Coachman under the premium advertising plans where we\r\nhad previously taken it down in anticipation of wrapping up our lease with\r\nyou.  Please also understand that, as time passes, the terms currently\r\noffered may no longer be available and will likely become less favorable.\r\n\r\nI look forward to your confirmation and timely execution of the next steps.\r\n\r\nBest regards,\r\n\r\n*Ozzie Mutz*\r\n(863) 698-1493 | Ozzie@LaurelRidge.net\r\nLaurel Ridge | www.LaurelRidge.net <http://www.laurelridge.net/>',0,0,0,0,0,0,'2025-08-18 19:15:58','2025-12-09 19:27:44','2025-12-09 19:27:44','2025-12-09 19:27:44',NULL,NULL,NULL),
(628,4,'<SJ0PR84MB199182526971373D7390A4D4FB31A@SJ0PR84MB1991.NAMPRD84.PROD.OUTLOOK.COM>',NULL,NULL,'Address','gary.fudge@hp.com','\"Fudge, Gary\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Forma DJR Micro\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n@font-face\r\n	{font-family:\"Forma DJR Display\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle17\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Do you all have an address we can use to set you up in our CRM system?&nbsp;\r\n<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Just trying to stay ahead of things as I know you may need to move fast shortly.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager &#8211; US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\"><span style=\"color:blue\">Gary.Fudge</span><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:blue\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_1\" src=\"cid:image001.png@01DC1059.25863B40\" alt=\"image001.png\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</body>\r\n</html>','Hello Rick,\r\n\r\nDo you all have an address we can use to set you up in our CRM system?\r\n\r\nJust trying to stay ahead of things as I know you may need to move fast shortly.\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager - US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]',0,0,0,0,0,0,'2025-08-18 20:00:00','2025-12-09 19:27:44','2025-12-09 19:27:44','2025-12-09 19:27:44',NULL,NULL,NULL),
(629,4,'<CAJO9__Z02tKkFa1ZZNLALNJXMTxbH=qWCPj6tOJfFoni61bXiA@mail.gmail.com>',NULL,NULL,'Re: 3900 W Coachman Ave - Revised Lease Terms and Final Execution Deadline','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Hello Brian, Rick, and team,</div><div><br></div><div>Please see the attached updated lease agreement, along with a redline comparing the changes against the approved lease from June. The Landlord noted one change to Section 24(b) to reduce the tenant improvements by the additional cost of extending the ramp on the west side. They felt it was more straightforward to reduce that now rather than billing us after the lease was signed, as the work has already been completed.</div><div><br></div><div>Brian, once you&#39;ve had a chance to review, Ozzie and his team would like to connect at some point this week. Please let me know your availability so I can coordinate a call.</div><div><br></div><div>Best,</div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Aug 18, 2025 at 3:15 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div><p style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:1rem 0px 0.5rem;letter-spacing:0.08px\"><font face=\"arial, sans-serif\">Hello Brian &amp; Rick,</font></p><p style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:1rem 0px 0.5rem;letter-spacing:0.08px\"><font face=\"arial, sans-serif\"><br></font></p><p style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:1rem 0px 0.5rem;letter-spacing:0.08px\"><span style=\"letter-spacing:normal\">I wanted to share a quick summary of the landlord’s most recent update (see below) regarding the 3900 W Coachman Ave lease and check your availability to connect directly with them this week.</span></p><p style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:1rem 0px 0.5rem;letter-spacing:0.08px\"><span style=\"box-sizing:border-box;border-width:0px;border-style:solid\"><font face=\"arial, sans-serif\">Key Points from the Landlord’s Update:</font></span></p><ul style=\"box-sizing:border-box;border-width:0px;border-style:solid;list-style-position:initial;margin:0px;padding:0px;letter-spacing:0.08px\"><li style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin-top:0px;margin-bottom:0px;padding-top:0px;padding-bottom:0px\"><p style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:0px 0px 0.5rem;padding-top:0px\"><font face=\"arial, sans-serif\">A revised lease will be sent by <span style=\"box-sizing:border-box;border-width:0px;border-style:solid\">Wednesday</span>, with a new commencement date of <span style=\"box-sizing:border-box;border-width:0px;border-style:solid\">September 1</span>.</font></p></li><li style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin-top:0px;margin-bottom:0px;padding-top:0px;padding-bottom:0px\"><p style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:0px 0px 0.5rem;padding-top:0px\"><font face=\"arial, sans-serif\">Rent abatement is being adjusted: instead of 50% in September and October, it will now be <span style=\"box-sizing:border-box;border-width:0px;border-style:solid\">20% for each month</span>. By November, full rent begins as previously planned.</font></p></li><li style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin-top:0px;margin-bottom:0px;padding-top:0px;padding-bottom:0px\"><p style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:0px 0px 0.5rem;padding-top:0px\"><font face=\"arial, sans-serif\">Missed July/August NNN payments have been factored into this adjustment (they are <span style=\"box-sizing:border-box;border-width:0px;border-style:solid\">not collecting retroactively</span>).</font></p></li><li style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin-top:0px;margin-bottom:0px;padding-top:0px;padding-bottom:0px\"><p style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:0px 0px 0.5rem;padding-top:0px\"><span style=\"box-sizing:border-box;border-width:0px;border-style:solid\"><font face=\"arial, sans-serif\">Deadlines &amp; Payments:</font></span></p><ul style=\"box-sizing:border-box;border-width:0px;border-style:solid;list-style:disc;margin:0.75em 0px;padding:0px\"><li style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin-top:0px;margin-bottom:0px;padding-top:0px;padding-bottom:0px\"><p style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:0px 0px 0.5rem;padding-top:0px\"><font face=\"arial, sans-serif\"><span style=\"box-sizing:border-box;border-width:0px;border-style:solid\">Friday, August 22:</span> Lease must be fully executed; $51,566.26 payment due at signing.</font></p></li><li style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin-top:0px;margin-bottom:0px;padding-top:0px;padding-bottom:0px\"><p style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:0px 0px 0.5rem;padding-top:0px\"><font face=\"arial, sans-serif\"><span style=\"box-sizing:border-box;border-width:0px;border-style:solid\">September 1:</span> First full rent payment of $98,790.62 due (with $51,566.26 already applied at signing).</font></p></li><li style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin-top:0px;margin-bottom:0px;padding-top:0px;padding-bottom:0px\"><p style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:0px 0px 0.5rem;padding-top:0px\"><font face=\"arial, sans-serif\"><span style=\"box-sizing:border-box;border-width:0px;border-style:solid\">September 15:</span> Full security deposit of $674,214.61 due (can be split between monetary payment and letter of credit).</font></p></li><li style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin-top:0px;margin-bottom:0px;padding-top:0px;padding-bottom:0px\"><p style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:0px 0px 0.5rem;padding-top:0px\"><font face=\"arial, sans-serif\"><span style=\"box-sizing:border-box;border-width:0px;border-style:solid\">October 1:</span> Rent of $95,913.23 due.</font></p></li><li style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin-top:0px;margin-bottom:0px;padding-top:0px;padding-bottom:0px\"><p style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:0px 0px 0.5rem;padding-top:0px\"><font face=\"arial, sans-serif\"><span style=\"box-sizing:border-box;border-width:0px;border-style:solid\">November and onward:</span> Rent increases to $113,445.76 monthly.</font></p></li></ul></li><li style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin-top:0px;margin-bottom:0px;padding-top:0px;padding-bottom:0px\"><p style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:0px 0px 0.5rem;padding-top:0px\"><font face=\"arial, sans-serif\">Florida will eliminate commercial rent sales tax in October, reducing monthly rent by ~$3,400 going forward.</font></p></li></ul><div><font face=\"arial, sans-serif\"><span style=\"letter-spacing:0.08px\"><br></span></font></div><div>The landlord also reiterated that if the lease is not signed and initial payments are not made by this Friday, they will re-engage other interested tenants and re-list the property.</div><div><br></div><p style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:0.5rem 0px;letter-spacing:0.08px\"><span style=\"letter-spacing:normal\">Please let me know your availability to connect with the landlord this week. Once I have your availability, I will coordinate directly with them to set up the call.</span></p><p style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:0.5rem 0px;letter-spacing:0.08px\"><span style=\"font-family:arial,sans-serif;letter-spacing:0.08px\"><br></span></p><p style=\"box-sizing:border-box;border-width:0px;border-style:solid;margin:0.5rem 0px;letter-spacing:0.08px\"><span style=\"font-family:arial,sans-serif;letter-spacing:0.08px\">Thank you and looking forward to moving this into the final round of execution.</span></p></div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">Ozzie Mutz</strong> <span dir=\"auto\">&lt;<a href=\"mailto:Ozzie@laurelridge.net\" target=\"_blank\">Ozzie@laurelridge.net</a>&gt;</span><br>Date: Mon, Aug 18, 2025 at 2:45 PM<br>Subject: 3900 W Coachman Ave - Revised Lease Terms and Final Execution Deadline<br>To: Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt;, Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;, Jarrett Brownfield &lt;<a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>&gt;<br>Cc: Bert de Alejo &lt;<a href=\"mailto:bert@laurelridge.net\" target=\"_blank\">bert@laurelridge.net</a>&gt;, Joe Facchini &lt;<a href=\"mailto:joe@laurelridge.net\" target=\"_blank\">joe@laurelridge.net</a>&gt;<br></div><br><br><div dir=\"ltr\"><div><p class=\"MsoNormal\" style=\"margin:0in 0in 8pt;line-height:115%\">Hi LBC team,<br><br>Thanks again for your text messages last week.  I wanted to follow up formally to recap where things stand and outline the next steps.<br><br>I’ll be sending over a revised lease by early Wednesday that reflects a new Commencement Date of September 1.  It will also include revised rent abatement terms to account for the missed payments in July and August.  Rather than the previously discussed 50% base rent abatement for September and October, the updated lease will reflect a 20% abatement for each of those two months.  This adjustment brings us to roughly the same place by November, when full rent is set to begin.<br><br>To clarify: we are not backdating the lease to July 1 and then collecting partial rent for July or August.  Instead, the missed NNN payments for those months are being factored into the reduced rent abatement in September and October.<br><br><b>Key Deadlines &amp; Payment Structure</b><br></p><ul><li>The lease must be fully executed no later than this Friday, August 22.</li><li>The $51,566.26 payment will be due at signing, as previously discussed.</li><li>On September 1, the first full rent payment will be due.  This totals $98,790.62 ($51,566.26 will have already been paid leaving a balance of $47,224,36) and includes:</li><ul><li>Base Rent: $70,130.10 (80% of full base rent)</li><li>NNN Expenses: $25,783.13</li><li>Sales Tax: $2,877.39</li></ul><li>The full security deposit of 674,214.61 will be due by September 15.</li><ul><li>The can still be split between $233,698.28 monetary payment and $440,818.05 letter of credit, or some, if not all, letter of credit funds can be shifted to a monetary deposit.</li></ul><li>Once the August 22, September 1, and September 15 required rent and security deposit payments have been made in full, you’ll have access to the premises.  However, you won’t have access to the premise until those payments are made in full.</li><li>On October 1, the next month’s rent  of $95,913.23 will be due.</li><li>On November 1 and monthly thereafter, monthly rent of $113,445.76 will be due.</li><ul><li>As a helpful note: beginning in October, Florida is eliminating sales tax on commercial rents, which will reduce your future unabated monthly rent payments by approximately $3,400.  </li></ul></ul>This structure should match the expectations you communicated last week.<p></p><p class=\"MsoNormal\" style=\"margin:0in 0in 8pt;line-height:115%\"><br><b>Additional Request</b><br>Please connect us directly with Brian Stufflebean from Bayfront Capital.  We’d like to confirm the current timeline and status of your JV discussions with him.<br><br>To be candid, we are disappointed by the number of missed deadlines to date.  If the lease is not signed and the required payment is not made by Friday, we will begin re-engaging the other interested tenants we’ve had on hold and will re-list Coachman under the premium advertising plans where we had previously taken it down in anticipation of wrapping up our lease with you.  Please also understand that, as time passes, the terms currently offered may no longer be available and will likely become less favorable.<br><br>I look forward to your confirmation and timely execution of the next steps.<br><br>Best regards,<br><br><b><font color=\"#073763\" face=\"arial, sans-serif\">Ozzie Mutz</font></b></p></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><font face=\"arial, sans-serif\"><span><div><font color=\"#666666\"><span title=\"Call with Google Voice\"><span title=\"Call with Google Voice\"><span title=\"Call with Google Voice\"><span title=\"Call with Google Voice\">(863) 698-1493</span></span></span></span> </font><span style=\"color:rgb(102,102,102)\">| </span><a href=\"mailto:Ozzie@LaurelRidge.net\" style=\"color:rgb(17,85,204)\" target=\"_blank\">Ozzie@LaurelRidge.net</a></div></span><font color=\"#666666\">Laurel Ridge </font><span style=\"color:rgb(102,102,102)\">| </span><a href=\"http://www.laurelridge.net/\" style=\"color:rgb(17,85,204)\" target=\"_blank\">www.LaurelRidge.net</a></font></div></div></div></div></div></div></div></div><img src=\"https://cFND-04.na1.hs-salescrm-engage.com/Cto/DL+23284/cFND-04/R5Q8b48zFN7xtP7w2fJvyW1N7DCN1Vp-BnW23f38N1XnCXkW1GzK9r1YXNFtW3LHKj93JH8t0W1N7ZS_1W-thbf24S6Gq12\" alt=\"\" height=\"1\" width=\"1\" style=\"display: none;\"><div></div><div id=\"m_-440059645962775325m_7426016511018898296data-hbsasc-v0-80218f0f-d464-420d-be52-6105e4dd2114\"></div></div>\r\n</div></div>\r\n</blockquote></div>','Hello Brian, Rick, and team,\r\n\r\nPlease see the attached updated lease agreement, along with a redline\r\ncomparing the changes against the approved lease from June. The Landlord\r\nnoted one change to Section 24(b) to reduce the tenant improvements by the\r\nadditional cost of extending the ramp on the west side. They felt it was\r\nmore straightforward to reduce that now rather than billing us after the\r\nlease was signed, as the work has already been completed.\r\n\r\nBrian, once you\'ve had a chance to review, Ozzie and his team would like to\r\nconnect at some point this week. Please let me know your availability so I\r\ncan coordinate a call.\r\n\r\nBest,\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Mon, Aug 18, 2025 at 3:15 PM Jordan Wroblewski <\r\njordan@lithiumbatterycompany.com> wrote:\r\n\r\n> Hello Brian & Rick,\r\n>\r\n>\r\n> I wanted to share a quick summary of the landlord’s most recent update\r\n> (see below) regarding the 3900 W Coachman Ave lease and check your\r\n> availability to connect directly with them this week.\r\n>\r\n> Key Points from the Landlord’s Update:\r\n>\r\n>    -\r\n>\r\n>    A revised lease will be sent by Wednesday, with a new commencement\r\n>    date of September 1.\r\n>    -\r\n>\r\n>    Rent abatement is being adjusted: instead of 50% in September and\r\n>    October, it will now be 20% for each month. By November, full rent\r\n>    begins as previously planned.\r\n>    -\r\n>\r\n>    Missed July/August NNN payments have been factored into this\r\n>    adjustment (they are not collecting retroactively).\r\n>    -\r\n>\r\n>    Deadlines & Payments:\r\n>    -\r\n>\r\n>       Friday, August 22: Lease must be fully executed; $51,566.26 payment\r\n>       due at signing.\r\n>       -\r\n>\r\n>       September 1: First full rent payment of $98,790.62 due (with\r\n>       $51,566.26 already applied at signing).\r\n>       -\r\n>\r\n>       September 15: Full security deposit of $674,214.61 due (can be\r\n>       split between monetary payment and letter of credit).\r\n>       -\r\n>\r\n>       October 1: Rent of $95,913.23 due.\r\n>       -\r\n>\r\n>       November and onward: Rent increases to $113,445.76 monthly.\r\n>       -\r\n>\r\n>    Florida will eliminate commercial rent sales tax in October, reducing\r\n>    monthly rent by ~$3,400 going forward.\r\n>\r\n>\r\n> The landlord also reiterated that if the lease is not signed and initial\r\n> payments are not made by this Friday, they will re-engage other interested\r\n> tenants and re-list the property.\r\n>\r\n> Please let me know your availability to connect with the landlord this\r\n> week. Once I have your availability, I will coordinate directly with them\r\n> to set up the call.\r\n>\r\n>\r\n> Thank you and looking forward to moving this into the final round of\r\n> execution.\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company <http://lithiumbatterycompany.com>\r\n>\r\n>\r\n> ---------- Forwarded message ---------\r\n> From: Ozzie Mutz <Ozzie@laurelridge.net>\r\n> Date: Mon, Aug 18, 2025 at 2:45 PM\r\n> Subject: 3900 W Coachman Ave - Revised Lease Terms and Final Execution\r\n> Deadline\r\n> To: Nathan Staron <Nathan@lithiumbatterycompany.com>, Jordan Wroblewski <\r\n> jordan@lithiumbatterycompany.com>, Jarrett Brownfield <\r\n> jarrett@lithiumbatterycompany.com>\r\n> Cc: Bert de Alejo <bert@laurelridge.net>, Joe Facchini <\r\n> joe@laurelridge.net>\r\n>\r\n>\r\n> Hi LBC team,\r\n>\r\n> Thanks again for your text messages last week.  I wanted to follow up\r\n> formally to recap where things stand and outline the next steps.\r\n>\r\n> I’ll be sending over a revised lease by early Wednesday that reflects a\r\n> new Commencement Date of September 1.  It will also include revised rent\r\n> abatement terms to account for the missed payments in July and August.\r\n> Rather than the previously discussed 50% base rent abatement for September\r\n> and October, the updated lease will reflect a 20% abatement for each of\r\n> those two months.  This adjustment brings us to roughly the same place by\r\n> November, when full rent is set to begin.\r\n>\r\n> To clarify: we are not backdating the lease to July 1 and then collecting\r\n> partial rent for July or August.  Instead, the missed NNN payments for\r\n> those months are being factored into the reduced rent abatement in\r\n> September and October.\r\n>\r\n> *Key Deadlines & Payment Structure*\r\n>\r\n>    - The lease must be fully executed no later than this Friday, August\r\n>    22.\r\n>    - The $51,566.26 payment will be due at signing, as previously\r\n>    discussed.\r\n>    - On September 1, the first full rent payment will be due.  This\r\n>    totals $98,790.62 ($51,566.26 will have already been paid leaving a balance\r\n>    of $47,224,36) and includes:\r\n>       - Base Rent: $70,130.10 (80% of full base rent)\r\n>       - NNN Expenses: $25,783.13\r\n>       - Sales Tax: $2,877.39\r\n>    - The full security deposit of 674,214.61 will be due by September 15.\r\n>       - The can still be split between $233,698.28 monetary payment and\r\n>       $440,818.05 letter of credit, or some, if not all, letter of credit funds\r\n>       can be shifted to a monetary deposit.\r\n>    - Once the August 22, September 1, and September 15 required rent and\r\n>    security deposit payments have been made in full, you’ll have access to the\r\n>    premises.  However, you won’t have access to the premise until those\r\n>    payments are made in full.\r\n>    - On October 1, the next month’s rent  of $95,913.23 will be due.\r\n>    - On November 1 and monthly thereafter, monthly rent of $113,445.76\r\n>    will be due.\r\n>       - As a helpful note: beginning in October, Florida is eliminating\r\n>       sales tax on commercial rents, which will reduce your future unabated\r\n>       monthly rent payments by approximately $3,400.\r\n>\r\n> This structure should match the expectations you communicated last week.\r\n>\r\n>\r\n> *Additional Request*\r\n> Please connect us directly with Brian Stufflebean from Bayfront Capital.\r\n> We’d like to confirm the current timeline and status of your JV discussions\r\n> with him.\r\n>\r\n> To be candid, we are disappointed by the number of missed deadlines to\r\n> date.  If the lease is not signed and the required payment is not made by\r\n> Friday, we will begin re-engaging the other interested tenants we’ve had on\r\n> hold and will re-list Coachman under the premium advertising plans where we\r\n> had previously taken it down in anticipation of wrapping up our lease with\r\n> you.  Please also understand that, as time passes, the terms currently\r\n> offered may no longer be available and will likely become less favorable.\r\n>\r\n> I look forward to your confirmation and timely execution of the next steps.\r\n>\r\n> Best regards,\r\n>\r\n> *Ozzie Mutz*\r\n> (863) 698-1493 | Ozzie@LaurelRidge.net\r\n> Laurel Ridge | www.LaurelRidge.net <http://www.laurelridge.net/>\r\n>',0,0,0,0,0,0,'2025-08-19 23:48:51','2025-12-09 19:27:46','2025-12-09 19:27:46','2025-12-09 19:27:46',NULL,NULL,NULL),
(630,4,'<etPan.68a5be4a.5b22de65.456@merkuri.one>',NULL,NULL,'Re: Visitor Access Request','rick@merkuri.one','\"=?utf-8?Q?Rick_M.=2C_PhD?=\"','(No content)','(No content)',0,0,0,0,0,0,'2025-08-20 12:23:37','2025-12-09 19:27:46','2025-12-09 19:27:46','2025-12-09 19:27:46',NULL,NULL,NULL),
(631,4,'<etPan.68a5c067.4fc53eb9.456@mavrix.one>',NULL,NULL,'call for visit','rick@mavrix.one','Rick','(No content)','(No content)',0,0,0,0,0,0,'2025-08-20 12:32:39','2025-12-09 19:27:46','2025-12-09 19:27:46','2025-12-09 19:27:46',NULL,NULL,NULL),
(632,4,'<vAhCL8jZg6jTHemvBKN3fIVPqNWQPW1RAX6TisZSj4s@go-workers-vbkm>',NULL,NULL,'You Have Been Approved To Attend UAS Industry Day 2025!','noreply@jotform.com','\"UASIndustryDay2025@army.mil\"','<head>\r\n          <meta charset=\"utf-8\">\r\n          <meta content=\"width=device-width\">\r\n          <meta name=\"description\" content=\"JotForm Approval\">\r\n        </head>\r\n        <body>\r\n        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#ecedf2\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 32px; min-width: 32px;\" width=\"32\">&nbsp;</td>\r\n<td>\r\n<table class=\"jmTable-wrapper\" style=\"width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"min-height: 36px;\" height=\"36\">&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td align=\"center\"><br><br>\r\n<table class=\"jmTable-wrapper\" style=\"width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"display: none;\">\r\n<td style=\"min-height: 64px;\" height=\"64\">&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td align=\"center\">\r\n<table style=\"max-width: 720px;\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"line-height: 0; font-size: 0; border-radius: 4px 4px 0 0;\" bgcolor=\"#FF6100\" height=\"8\">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"jmTable\" style=\"min-width: 480px; max-width: 720px; width: 100%; background-color: #fff;\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 100%; max-width: 100%; min-width: 100%;\">\r\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"min-height: 24px;\">\r\n<td colspan=\"3\">&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td style=\"min-width: 40px;\" width=\"40\">&nbsp;</td>\r\n<td>\r\n<p><span style=\"font-family: verdana, geneva, sans-serif; font-size: 10pt;\">Greetings,</span></p>\r\n<p><span style=\"font-family: verdana, geneva, sans-serif; font-size: 10pt;\">&nbsp;</span></p>\r\n<p><span style=\"font-family: verdana, geneva, sans-serif; font-size: 10pt;\">Thank you for submitting your registration for the 2025 Uncrewed Aircraft System (UAS) Marketplace Industry Days. You are <strong><u>approved</u></strong> to attend the event. Please note, the event is limited to (2) primary attendees and (1) alternate attendee should one of the primary attendees not be able to attend. Only the individuals submitted in your VAR (Visitor Access Request) will be granted access to the event.</span></p>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-family: verdana, geneva, sans-serif; font-size: 10pt;\">At this time, we do not have an official agenda approved for release. Once we&nbsp;have an approved official&nbsp;agenda, we will email it to&nbsp;all registered attendees.&nbsp;P<span style=\"color: black;\">re-registration for the event will begin at 1430 on 15 September 2025, and registration will begin at 0730 on 16 September 2025.</span></span></p>\r\n<p><span style=\"font-family: verdana, geneva, sans-serif; font-size: 10pt;\">&nbsp;</span></p>\r\n<p><span style=\"font-family: verdana, geneva, sans-serif; font-size: 10pt;\"><u>For those who submitted white papers for potential &ldquo;one-on-one&rdquo; whiteboarding session with UAS leadership:</u></span></p>\r\n<p><span style=\"font-family: verdana, geneva, sans-serif; font-size: 10pt;\">White papers are currently being evaluated.&nbsp; If you are selected for a \"one on one\" whiteboarding session with UAS Leadership, you will receive a separate email with the allotted day and time of your 15-minute whiteboarding session.&nbsp; These notifications will be sent out prior to September 10<em>th</em>.&nbsp; &nbsp;If you have any questions, please forward them to UASIndustryDay2025@army.mil.</span></p>\r\n<p><span style=\"font-family: verdana, geneva, sans-serif; font-size: 10pt;\">&nbsp;</span></p>\r\n<p><span style=\"font-family: verdana, geneva, sans-serif; font-size: 10pt;\">Thank you!</span></p>\r\n<p><span style=\"font-family: verdana, geneva, sans-serif; font-size: 10pt;\">&nbsp;</span></p>\r\n<p><span style=\"font-family: verdana, geneva, sans-serif; font-size: 10pt;\">&nbsp;</span></p>\r\n<p><span style=\"font-family: verdana, geneva, sans-serif; font-size: 10pt;\">UAS Industry Day Team</span></p>\r\n</td>\r\n<td style=\"min-width: 40px;\" width=\"40\">&nbsp;</td>\r\n</tr>\r\n<tr style=\"min-height: 16px;\">\r\n<td style=\"min-width: 40px;\" width=\"40\">&nbsp;</td>\r\n<td style=\"border-bottom: 1px solid #ECEDF2;\">&nbsp;</td>\r\n<td style=\"min-width: 40px;\" width=\"40\">&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\">\r\n<table id=\"jmSubmission-container\" class=\"jmSubmissionTable\" style=\"width: 100%;\" cellspacing=\"0\" cellpadding=\"24\">\r\n<tbody id=\"emailFieldsTableBody\"><tr>\r\n<td>&nbsp;</td>\r\n</tr></tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"min-height: 64px;\" height=\"64\">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"min-height: 116px;\" height=\"116\">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td style=\"width: 32px; min-width: 32px;\" width=\"32\">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table></body></html>',' \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\nGreetings,\r\n \r\nThank you for submitting your registration for the 2025 Uncrewed Aircraft System\r\n(UAS) Marketplace Industry Days. You are approved to attend the event. Please\r\nnote, the event is limited to (2) primary attendees and (1) alternate attendee\r\nshould one of the primary attendees not be able to attend. Only the individuals\r\nsubmitted in your VAR (Visitor Access Request) will be granted access to the\r\nevent.\r\n \r\nAt this time, we do not have an official agenda approved for release. Once\r\nwe have an approved official agenda, we will email it to all registered\r\nattendees. Pre-registration for the event will begin at 1430 on 15 September\r\n2025, and registration will begin at 0730 on 16 September 2025.\r\n \r\nFor those who submitted white papers for potential “one-on-one”\r\nwhiteboarding session with UAS leadership:\r\nWhite papers are currently being evaluated.  If you are selected for a \"one on\r\none\" whiteboarding session with UAS Leadership, you will receive a separate\r\nemail with the allotted day and time of your 15-minute whiteboarding session. \r\nThese notifications will be sent out prior to September 10th.   If you have\r\nany questions, please forward them to UASIndustryDay2025@army.mil.\r\n \r\nThank you!\r\n \r\n \r\nUAS Industry Day Team\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n ',0,0,0,0,0,0,'2025-08-20 17:38:03','2025-12-09 19:27:46','2025-12-09 19:27:46','2025-12-09 19:27:46',NULL,NULL,NULL),
(633,4,'<849317105.26819.1755751779342@app128030.hef201.service-now.com>',NULL,NULL,'We\'d Love Your Feedback on Your Recent Support Experience','fsdsupport@gsa.gov','\"Federal Service Desk (FSD)\"','<html><head></head><body><p></p>\r\n<style type=\"text/css\">\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n</style>\r\n<div style=\"margin: 0 auto !important;\" align=\"center\">\r\n<table class=\"w100\" style=\"width: 600px; background-color: #f7f7f9; margin: 0 auto !important; padding: 0px;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" bgcolor=\"#F7F7F9\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 13px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"background-color: #d8ecff;\" height=\"32\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"40\" style=\"width: 53.1077%;\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td height=\"50\"><img src=\"cid:sys_attachment.dosys_idbe2e8d8d1bda2a50205e8736624bcb90@SNC.d9fb26efeefc5e8c\" width=\"auto\" height=\"50\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr style=\"background-color: #d8ecff;\" height=\"22\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr><!-- Left-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- CONTAINER -->\r\n<td width=\"564\">\r\n<table class=\"w100\" style=\"margin: 0px; padding: 0px; box-shadow: 0px 2px 10px rgba(23, 40, 52, 0.08);\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody><!-- Main Container -->\r\n<tr>\r\n<td class=\"pad-sides-20\" style=\"border-radius: 6px; text-align: left; background-color: #ffffff; padding: 24px 24px 24px 24px; color: #454545;\" align=\"center\">\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-bottom: 10px;\"><strong>This is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD)</strong> which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.</div>\r\n</div>\r\n<hr>\r\n<p></p><p>Hi ,</p>\r\n<p>We\'re reaching out to ensure your issue has been fully resolved and to hear how we did.</p>\r\n<p>Your recent support request handled by our Tier [1/2/3] team has been marked as resolved. We would really appreciate it if you could take a moment to complete a short survey and share your experience.</p>\r\n<ul style=\"list-style-position: inside;\">\r\n<li><a href=\"https://www.fsd.gov/gsafsd_sp?id=take_survey&amp;instance_id=d185c83087efaa10df8677f5cebb3586\">Complete the Survey</a></li>\r\n</ul>\r\n<p>Your feedback helps us improve and better serve you in the future.</p>\r\n<p>&nbsp;</p>\r\n<p>Thank you,<br>Federal Service Desk Support Team</p><p></p>\r\n<hr>\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-top: 10px;\"><strong>Don\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times!</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0036075\" target=\"_blank\" rel=\"noopener\">Invite others </a>to help manage your registration. <strong>DO NOT</strong> attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. <strong>Submit all entity validation documentation from your Entity Workspace in SAM.gov.</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0057690\" target=\"_blank\" rel=\"noopener\">Learn how to add documentation</a> to your entity validation case.</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- END CONTAINER --> <!-- Right-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"background-color: #f7f7f9;\" align=\"center\" height=\"40\"></td>\r\n</tr>\r\n<!-- Footer started -->\r\n<tr style=\"background-color: #d8ecff;\">\r\n<td>\r\n<table style=\"background-color: #d8ecff;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td height=\"30\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 14px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_id7d465e4a1b3ca2103943eac1604bcbb6@SNC.7fda235da05e0df3\" width=\"120\" height=\"40\" title=\"Cloud 4.png\" alt=\"Cloud\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"30\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff;\" align=\"center\" valign=\"top\" height=\"30\"><img src=\"cid:sys_attachment.dosys_idb04e85cd1bda2a50205e8736624bcbfa@SNC.79bf4a2001c20709\" width=\"auto\" height=\"30\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_idb1a5160a1b3ca2103943eac1604bcbdc@SNC.a4be8eea966fbb1f\" width=\"140\" height=\"40\" title=\"Cloud 3.png\" alt=\"Cloud\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff; color: #ffffff;\">\r\n<table style=\"color: #ffffff;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr align=\"center\">\r\n<td><span id=\"templateAddress\" class=\"footer\" style=\"color: #162e51; font-size: 14px; line-height: 18px; text-align: center; margin: 0 !important;\"> GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td height=\"10\"></td>\r\n</tr>\r\n<tr>\r\n<td height=\"120px\"><img style=\"height: 120px; width: 100%;\" src=\"cid:sys_attachment.dosys_id7555160a1b3ca2103943eac1604bcb39@SNC.a82328aba0a13c6c\" height=\"120\" title=\"Jefferson Light Blue 2.png\" alt=\"Jefferson Memorial\"><span id=\"mce_26\"></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<!-- Footer end--></tbody>\r\n</table>\r\n</div><div>&nbsp;</div><div style=\"display:inline\">Ref:MSG2124829_kkbYKgWnd165rXGoaYQo</div></body></html>','\r\n\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD) which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.\r\n\r\n\r\nHi ,\r\nWe\'re reaching out to ensure your issue has been fully resolved and to hear how we did.\r\nYour recent support request handled by our Tier [1/2/3] team has been marked as resolved. We would really appreciate it if you could take a moment to complete a short survey and share your experience.\r\n\r\nComplete the Survey\r\n\r\nYour feedback helps us improve and better serve you in the future.\r\n&nbsp;\r\nThank you,Federal Service Desk Support Team\r\n\r\n\r\nDon\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times! Invite others to help manage your registration. DO NOT attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. Submit all entity validation documentation from your Entity Workspace in SAM.gov. Learn how to add documentation to your entity validation case.\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;Ref:MSG2124829_kkbYKgWnd165rXGoaYQo',0,0,0,0,0,0,'2025-08-21 04:49:39','2025-12-09 19:27:47','2025-12-09 19:27:47','2025-12-09 19:27:47',NULL,NULL,NULL),
(634,4,'<1851028831.26980.1755751785469@app128030.hef201.service-now.com>',NULL,NULL,'Comment added to INC-GSAFSD20147835','fsdsupport@gsa.gov','\"Federal Service Desk (FSD)\"','<html><head></head><body><p></p>\r\n<style type=\"text/css\">\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n</style>\r\n<div style=\"margin: 0 auto !important;\" align=\"center\">\r\n<table class=\"w100\" style=\"width: 600px; background-color: #f7f7f9; margin: 0 auto !important; padding: 0px;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" bgcolor=\"#F7F7F9\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 13px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"background-color: #d8ecff;\" height=\"32\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"40\" style=\"width: 53.1077%;\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td height=\"50\"><img src=\"cid:sys_attachment.dosys_idbe2e8d8d1bda2a50205e8736624bcb90@SNC.84374b6ff6467a6a\" width=\"auto\" height=\"50\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr style=\"background-color: #d8ecff;\" height=\"22\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr><!-- Left-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- CONTAINER -->\r\n<td width=\"564\">\r\n<table class=\"w100\" style=\"margin: 0px; padding: 0px; box-shadow: 0px 2px 10px rgba(23, 40, 52, 0.08);\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody><!-- Main Container -->\r\n<tr>\r\n<td class=\"pad-sides-20\" style=\"border-radius: 6px; text-align: left; background-color: #ffffff; padding: 24px 24px 24px 24px; color: #454545;\" align=\"center\">\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-bottom: 10px;\"><strong>This is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD)</strong> which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.</div>\r\n</div>\r\n<hr>\r\n<p></p><div style=\"font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif; line-height: 26px; font-size: 16px;\">\r\n<div style=\"line-height: 26px; padding-bottom: 24px; text-align: left; color: #454545;\">\r\n<h4 style=\"margin-top: 14pt; line-height: 32px; margin-bottom: 4pt; text-align: left; font-size: 17.52pt;\"><strong> New Comment(s) on Your FSD.gov Incident: INC-GSAFSD20147835</strong></h4>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left; font-size: 12pt;\">Hello <strong>rick@mavrix.one,</strong></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left;\">There are new comments on your incident <strong>INC-GSAFSD20147835</strong>.</p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 6pt; text-align: left;\"><span style=\"font-size: 12pt;\">To view the complete incident details and activity history, please use the link below:<br></span><strong><span style=\"font-size: 12pt;\"></span></strong></p><div style=\"margin-top: 8px;\"><strong><a href=\"https://www.fsd.gov/gsafsd_sp?id=incident_form&amp;table=incident&amp;sys_id=ecb56edf8707a690efb1fe68cebb3551\" style=\"background-color: #70E17B;color: #162E51;font-size: 16px;text-decoration: none; border-radius: 4px;-webkit-border-radius: 4px;-moz-border-radius: 4px;display: inline-block;padding: 10px 32px 10px 32px;\">View incident</a></strong></div><p></p>\r\n<span style=\"font-size: 12pt;\">Thank you,</span><span style=\"font-size: 12pt;\"><br></span><strong><span style=\"font-size: 12pt;\">FSD.gov Team</span></strong></div>\r\n</div><p></p>\r\n<hr>\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-top: 10px;\"><strong>Don\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times!</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0036075\" target=\"_blank\" rel=\"noopener\">Invite others </a>to help manage your registration. <strong>DO NOT</strong> attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. <strong>Submit all entity validation documentation from your Entity Workspace in SAM.gov.</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0057690\" target=\"_blank\" rel=\"noopener\">Learn how to add documentation</a> to your entity validation case.</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- END CONTAINER --> <!-- Right-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"background-color: #f7f7f9;\" align=\"center\" height=\"40\"></td>\r\n</tr>\r\n<!-- Footer started -->\r\n<tr style=\"background-color: #d8ecff;\">\r\n<td>\r\n<table style=\"background-color: #d8ecff;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td height=\"30\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 14px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_id7d465e4a1b3ca2103943eac1604bcbb6@SNC.a74b965e89e919c\" width=\"120\" height=\"40\" title=\"Cloud 4.png\" alt=\"Cloud\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"30\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff;\" align=\"center\" valign=\"top\" height=\"30\"><img src=\"cid:sys_attachment.dosys_idb04e85cd1bda2a50205e8736624bcbfa@SNC.baad1c191324ee6a\" width=\"auto\" height=\"30\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_idb1a5160a1b3ca2103943eac1604bcbdc@SNC.1f0dc2bacb29978c\" width=\"140\" height=\"40\" title=\"Cloud 3.png\" alt=\"Cloud\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff; color: #ffffff;\">\r\n<table style=\"color: #ffffff;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr align=\"center\">\r\n<td><span id=\"templateAddress\" class=\"footer\" style=\"color: #162e51; font-size: 14px; line-height: 18px; text-align: center; margin: 0 !important;\"> GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td height=\"10\"></td>\r\n</tr>\r\n<tr>\r\n<td height=\"120px\"><img style=\"height: 120px; width: 100%;\" src=\"cid:sys_attachment.dosys_id7555160a1b3ca2103943eac1604bcb39@SNC.877344b06df9ef11\" height=\"120\" title=\"Jefferson Light Blue 2.png\" alt=\"Jefferson Memorial\"><span id=\"mce_26\"></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<!-- Footer end--></tbody>\r\n</table>\r\n</div><div>&nbsp;</div><div style=\"display:inline\">Ref:MSG2124894_gH7wxnDEKneoQXxY4Zv8</div></body></html>','\r\n\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD) which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.\r\n\r\n\r\n\r\n\r\n New Comment(s) on Your FSD.gov Incident: INC-GSAFSD20147835\r\nHello rick@mavrix.one,\r\nThere are new comments on your incident INC-GSAFSD20147835.\r\nTo view the complete incident details and activity history, please use the link below:View incident\r\nThank you,FSD.gov Team\r\n\r\n\r\n\r\nDon\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times! Invite others to help manage your registration. DO NOT attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. Submit all entity validation documentation from your Entity Workspace in SAM.gov. Learn how to add documentation to your entity validation case.\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;Ref:MSG2124894_gH7wxnDEKneoQXxY4Zv8',0,0,0,0,0,0,'2025-08-21 04:49:45','2025-12-09 19:27:48','2025-12-09 19:27:48','2025-12-09 19:27:48',NULL,NULL,NULL),
(635,4,'<365016931.27019.1755751786881@app128030.hef201.service-now.com>',NULL,NULL,'Incident INC-GSAFSD20147835 was closed','fsdsupport@gsa.gov','\"Federal Service Desk (FSD)\"','<html><head></head><body><p></p>\r\n<style type=\"text/css\">\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n</style>\r\n<div style=\"margin: 0 auto !important;\" align=\"center\">\r\n<table class=\"w100\" style=\"width: 600px; background-color: #f7f7f9; margin: 0 auto !important; padding: 0px;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" bgcolor=\"#F7F7F9\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 13px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"background-color: #d8ecff;\" height=\"32\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"40\" style=\"width: 53.1077%;\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td height=\"50\"><img src=\"cid:sys_attachment.dosys_idbe2e8d8d1bda2a50205e8736624bcb90@SNC.60cedd9aa89aa37f\" width=\"auto\" height=\"50\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr style=\"background-color: #d8ecff;\" height=\"22\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr><!-- Left-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- CONTAINER -->\r\n<td width=\"564\">\r\n<table class=\"w100\" style=\"margin: 0px; padding: 0px; box-shadow: 0px 2px 10px rgba(23, 40, 52, 0.08);\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody><!-- Main Container -->\r\n<tr>\r\n<td class=\"pad-sides-20\" style=\"border-radius: 6px; text-align: left; background-color: #ffffff; padding: 24px 24px 24px 24px; color: #454545;\" align=\"center\">\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-bottom: 10px;\"><strong>This is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD)</strong> which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.</div>\r\n</div>\r\n<hr>\r\n<p></p><div style=\"font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif; line-height: 26px; font-size: 16px;\">\r\n<div style=\"line-height: 26px; padding-bottom: 24px; text-align: left; color: #454545;\">\r\n<h4 style=\"margin-top: 14pt; line-height: 32px; margin-bottom: 4pt; text-align: left; font-size: 17.52pt;\"><strong> Your Incident Was Closed</strong></h4>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left; font-size: 12pt;\">Hello <strong>rick@mavrix.one,</strong></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left;\">Your incident <strong><span style=\"font-size: 12pt;\">INC-GSAFSD20147835 </span></strong><span style=\"font-size: 12pt;\">has been marked as closed for the following reason(s):</span></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left;\"><strong><span style=\"font-size: 12pt;\">Resolution notes:</span></strong><span style=\"font-size: 12pt;\"> The incident ticket was auto resolved after 5 business days in the \'On Hold\' status awaiting response from the caller. If the issue persists, please reopen the ticket or contact support..</span></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 6pt; text-align: left;\"><span style=\"font-size: 12pt;\">You can view the full incident details using the link below:<br></span><strong><span style=\"font-size: 12pt;\"></span></strong></p><div style=\"margin-top: 8px;\"><strong><a href=\"https://www.fsd.gov/gsafsd_sp?id=incident_form&amp;table=incident&amp;sys_id=ecb56edf8707a690efb1fe68cebb3551\" style=\"background-color: #70E17B;color: #162E51;font-size: 16px;text-decoration: none; border-radius: 4px;-webkit-border-radius: 4px;-moz-border-radius: 4px;display: inline-block;padding: 10px 32px 10px 32px;\">View incident</a></strong></div> <br><span style=\"font-size: 12pt;\">If you have any additional requests or require further assistance, please submit a new incident at <strong><a style=\"color: 3f57a6;\" href=\"https://www.fsd.gov/fsd.gov/gsafsd_sp?id=fsd_index\">Fsd.gov</a></strong></span><p></p>\r\n<span style=\"font-size: 12pt;\">Thank you,</span><span style=\"font-size: 12pt;\"><br></span><strong><span style=\"font-size: 12pt;\">FSD.gov Team</span></strong></div>\r\n</div><p></p>\r\n<hr>\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-top: 10px;\"><strong>Don\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times!</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0036075\" target=\"_blank\" rel=\"noopener\">Invite others </a>to help manage your registration. <strong>DO NOT</strong> attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. <strong>Submit all entity validation documentation from your Entity Workspace in SAM.gov.</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0057690\" target=\"_blank\" rel=\"noopener\">Learn how to add documentation</a> to your entity validation case.</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- END CONTAINER --> <!-- Right-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"background-color: #f7f7f9;\" align=\"center\" height=\"40\"></td>\r\n</tr>\r\n<!-- Footer started -->\r\n<tr style=\"background-color: #d8ecff;\">\r\n<td>\r\n<table style=\"background-color: #d8ecff;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td height=\"30\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 14px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_id7d465e4a1b3ca2103943eac1604bcbb6@SNC.c7b42beef349cdbe\" width=\"120\" height=\"40\" title=\"Cloud 4.png\" alt=\"Cloud\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"30\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff;\" align=\"center\" valign=\"top\" height=\"30\"><img src=\"cid:sys_attachment.dosys_idb04e85cd1bda2a50205e8736624bcbfa@SNC.fe789a16ec63f49b\" width=\"auto\" height=\"30\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_idb1a5160a1b3ca2103943eac1604bcbdc@SNC.d385a43a6e1a4918\" width=\"140\" height=\"40\" title=\"Cloud 3.png\" alt=\"Cloud\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff; color: #ffffff;\">\r\n<table style=\"color: #ffffff;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr align=\"center\">\r\n<td><span id=\"templateAddress\" class=\"footer\" style=\"color: #162e51; font-size: 14px; line-height: 18px; text-align: center; margin: 0 !important;\"> GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td height=\"10\"></td>\r\n</tr>\r\n<tr>\r\n<td height=\"120px\"><img style=\"height: 120px; width: 100%;\" src=\"cid:sys_attachment.dosys_id7555160a1b3ca2103943eac1604bcb39@SNC.63edda7598097215\" height=\"120\" title=\"Jefferson Light Blue 2.png\" alt=\"Jefferson Memorial\"><span id=\"mce_26\"></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<!-- Footer end--></tbody>\r\n</table>\r\n</div><div>&nbsp;</div><div style=\"display:inline\">Ref:MSG2124886_hUmwUEv4l4abYl1pyRdz</div></body></html>','\r\n\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD) which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.\r\n\r\n\r\n\r\n\r\n Your Incident Was Closed\r\nHello rick@mavrix.one,\r\nYour incident INC-GSAFSD20147835 has been marked as closed for the following reason(s):\r\nResolution notes: The incident ticket was auto resolved after 5 business days in the \'On Hold\' status awaiting response from the caller. If the issue persists, please reopen the ticket or contact support..\r\nYou can view the full incident details using the link below:View incident If you have any additional requests or require further assistance, please submit a new incident at Fsd.gov\r\nThank you,FSD.gov Team\r\n\r\n\r\n\r\nDon\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times! Invite others to help manage your registration. DO NOT attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. Submit all entity validation documentation from your Entity Workspace in SAM.gov. Learn how to add documentation to your entity validation case.\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;Ref:MSG2124886_hUmwUEv4l4abYl1pyRdz',0,0,0,0,0,0,'2025-08-21 04:49:46','2025-12-09 19:27:48','2025-12-09 19:27:48','2025-12-09 19:27:48',NULL,NULL,NULL),
(636,4,'<autogen-java-f7ef55a8-3f7e-4c2d-a2be-0756ae9a8e7c@google.com>',NULL,NULL,'Spreadsheet shared with you: \"Mavrix1\"','rmislan@gmail.com','\"Richard Mislan (via Google Sheets)\"','<html><head></head><body><table style=\"border-collapse: collapse; width: 100%; background-color: white; text-align: center;\" role=\"presentation\"><tr><td style=\"padding: 24px 0 16px 0;\"><table style=\"border-collapse: collapse;font-family: Roboto, Arial, Helvetica, sans-serif;hyphens: auto; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word;width: 90%; margin: auto;max-width: 700px;min-width: 280px; text-align: left;\" role=\"presentation\"><tr><td style=\"padding: 0;\"><table style=\"width:100%; border: 1px solid #dadce0; border-radius: 8px; border-spacing: 0; table-layout:fixed; border-collapse: separate;\" role=\"presentation\"><tr><td style=\"padding: 4.5%;\" dir=\"ltr\"><div style=\"margin-bottom:32px;font-family: Google Sans, Roboto, Arial, Helvetica, sans-serif; font-style: normal; font-size: 28px; line-height: 36px; color: #3c4043;\">Richard Mislan shared a spreadsheet</div><table style=\"border-collapse: collapse;font-family: Roboto, Arial, Helvetica, sans-serif; font-size:16px; line-height:24px; color:#202124; letter-spacing:0.1px; table-layout:fixed; width:100%; overflow-wrap: break-word;\" role=\"presentation\"><tr><td style=\"padding: 0; vertical-align:top; width:50px;\"><!--[if mso]><v:oval xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" style=\"height:50px;width:50px;\" fill=\"t\" stroke=\"f\"><v:fill type=\"frame\" src=\"https://lh3.googleusercontent.com/a/ACg8ocImYEzM-s06psd8Cu2gvXqgDLs6Qhj6S_2Gm02aL4272pFuIZk=s64\" alt=\"Header profile photo\" style=\"height:50px;width:50px;\"/></v:oval><![endif]--><div style=\"mso-hide:all;\"><img style=\"border-radius:50%; display:block;\" width=\"50\" height=\"50\" src=\"https://lh3.googleusercontent.com/a/ACg8ocImYEzM-s06psd8Cu2gvXqgDLs6Qhj6S_2Gm02aL4272pFuIZk=s64\" alt=\"Header profile photo\"></div></td><td style=\"padding: 0; vertical-align:top; padding-left:12px;\"><div style=\"padding-top:12px;\">Richard Mislan (<a href=\"mailto:rmislan@gmail.com\" style=\"color:inherit;text-decoration:none\">rmislan@gmail.com</a>) has shared a link to the following spreadsheet:</div></td></tr></table><table style=\"border-spacing:0 4px; table-layout:fixed; width:100%; overflow-wrap: break-word;\" role=\"presentation\"><tr style=\"height:28px;\"></tr><tr><td style=\"padding: 0;\"><a href=\"https://docs.google.com/spreadsheets/d/1OCDs3fzwLf9we6adO3i46LgoJxnoZTfzUKBrze2Ea3A/edit?usp=sharing_eil&amp;ts=68a701f5\" target=\"_blank\" style=\"color: #3c4043; display: inline-block; max-width: 100%; text-decoration: none; vertical-align: top;border: 1px solid #DADCE0; border-radius: 16px; white-space: nowrap;\"><div style=\"line-height: 18px; overflow: hidden; text-overflow: ellipsis;padding: 6px 12px;\"><span style=\"display: inline-block; vertical-align: top; min-width: 26px; width: 26px;\"><img src=\"https://ssl.gstatic.com/docs/doclist/images/mediatype/icon_1_spreadsheet_x64.png\" width=\"18\" height=\"18\" style=\"vertical-align: top;\" role=\"presentation\"></span><span style=\"font: 500 14px/18px Google Sans, Roboto, Arial, Helvetica, sans-serif; display: inline; letter-spacing: 0.2px;\">Mavrix1</span></div></a></td></tr></table><table style=\"border-collapse: collapse;\" role=\"presentation\"><tr style=\"height: 32px\"><td></td></tr></table><div><!--[if mso]><v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://docs.google.com/spreadsheets/d/1OCDs3fzwLf9we6adO3i46LgoJxnoZTfzUKBrze2Ea3A/edit?usp=sharing_eip&amp;ts=68a701f5\" style=\"height:36px; width:100px; v-text-anchor:middle;\" arcsize=\"50%\" stroke=\"f\" fillcolor=\"#1a73e8\"><w:anchorlock/><center style=\"color:#ffffff;font-family:Arial,Helvetica,sans-serif;font-weight:500;font-size:14px;\">Open </center></v:roundrect><![endif]--><a href=\"https://docs.google.com/spreadsheets/d/1OCDs3fzwLf9we6adO3i46LgoJxnoZTfzUKBrze2Ea3A/edit?usp=sharing_eip&amp;ts=68a701f5\" class=\"material-button material-button-filled\" target=\"_blank\" tabindex=\"0\" role=\"button\" style=\"mso-hide:all;padding: 0 24px;font: 500 14px/36px Google Sans, Roboto, Arial, Helvetica, sans-serif; border: none; border-radius: 18px; box-sizing: border-box; display: inline-block; letter-spacing: .25px; min-height: 36px; text-align: center; text-decoration: none;background-color: #1a73e8; color: #fff; cursor: pointer;\">Open</a></div></td></tr></table><table style=\"border-collapse: collapse; width: 100%;\" role=\"presentation\"><tr><td style=\"padding: 24px 4.5%\"><table style=\"border-collapse: collapse; width: 100%;\" dir=\"ltr\"><tr><td style=\"padding: 0;font-family: Roboto, Arial, Helvetica, sans-serif; color: #5F6368; width: 100%; font-size: 12px; line-height: 16px; min-height: 40px; letter-spacing: .3px;\">Google LLC, 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA<br/> You have received this email because <a href=\"mailto:rmislan@gmail.com\" style=\"color:inherit;text-decoration:none\">rmislan@gmail.com</a> shared a spreadsheet with you from Google Sheets.</td><td style=\"padding: 0;padding-left: 20px; min-width: 96px\"><a href=\"https://www.google.com/\" target=\"_blank\" style=\"text-decoration: none\"><img src=\"https://www.gstatic.com/images/branding/googlelogo/2x/googlelogo_grey_tm_color_96x40dp.png\" width=\"96\" height=\"40\" alt=\"Google\" style=\"font-size:16px;font-weight:500;color:#5F6368\"></a></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html>','I\'ve shared an item with you:\r\n\r\nMavrix1\r\nhttps://docs.google.com/spreadsheets/d/1OCDs3fzwLf9we6adO3i46LgoJxnoZTfzUKBrze2Ea3A/edit?usp=sharing&ts=68a701f5\r\n\r\nIt\'s not an attachment -- it\'s stored online. To open this item, just click  \r\nthe link above.',0,0,0,0,0,0,'2025-08-21 11:24:37','2025-12-09 19:27:48','2025-12-09 19:27:48','2025-12-09 19:27:48',NULL,NULL,NULL),
(637,4,'<calendar-b8e2b486-f662-45a9-9b5c-92ade197ee13@google.com>',NULL,NULL,'Invitation: Mavrix 1 Introduction to SEADAR @ Fri Aug 22, 2025 3pm - 4pm (EDT) (rick@mavrix.one)','brian@bayfrontcapitalllc.com','Brian Stufflebean','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v144/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v118/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation from Brian Stufflebean\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"vcbm37dr6c813rv0afouovqf00\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Mavrix 1 Introduction to SEADAR</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=dmNibTM3ZHI2YzgxM3J2MGFmb3VvdnFmMDAgcmlja0BtYXZyaXgub25l&amp;tok=MjgjYnJpYW5AYmF5ZnJvbnRjYXBpdGFsbGxjLmNvbTMwOTBmNTcwZWYxZWUyODkyYjRjYzcwOTNlY2Y5NTY3MmZkNDJiZTc&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250822T190000Z\"></time><time itemprop=\"endDate\" datetime=\"20250822T200000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">Brian Stufflebean is inviting you to a scheduled Zoom meeting.\r\nJoin Zoom Meeting\r\nhttps://us06web.zoom.us/j/87151302130?pwd=YKXZchIecDpOfbBMaF0gX8GsdZaLBN.1\r\n\r\nMeeting ID: 871 5130 2130\r\nPasscode: 086942\r\n</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><div class=\"\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span>Brian Stufflebean is inviting you to a scheduled Zoom meeting.<br>Join Zoom Meeting<br><a href=\"https://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fj%2F87151302130%3Fpwd%3DYKXZchIecDpOfbBMaF0gX8GsdZaLBN.1&amp;sa=D&amp;source=calendar&amp;ust=1756258080000000&amp;usg=AOvVaw2mtq2kj7pPtpSd64q4LsB_\" target=\"_blank\">https://us06web.zoom.us/j/87151302130?pwd=YKXZchIecDpOfbBMaF0gX8GsdZaLBN.1</a><p>Meeting ID: 871 5130 2130<br>Passcode: 086942</p><p>---</p><p>One tap mobile<br>+13052241968,,87151302130#,,,,*086942# US<br>+13017158592,,87151302130#,,,,*086942# US (Washington DC)</p><p>Join instructions<br><a href=\"https://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fmeetings%2F87151302130%2Finvitations%3Fsignature%3DDFoSVlh45nT-bGO82e73suO8nPT_9fNu5sJl64g6ypk&amp;sa=D&amp;source=calendar&amp;ust=1756258080000000&amp;usg=AOvVaw1a_34NtYVoTwkdkTkB-A9I\" target=\"_blank\">https://us06web.zoom.us/meetings/87151302130/invitations?signature=DFoSVlh45nT-bGO82e73suO8nPT_9fNu5sJl64g6ypk</a><br></p></span><meta itemprop=\"description\" content=\"Brian Stufflebean is inviting you to a scheduled Zoom meeting.\r\nJoin Zoom Meeting\r\nhttps://us06web.zoom.us/j/87151302130?pwd=YKXZchIecDpOfbBMaF0gX8GsdZaLBN.1\r\n\r\nMeeting ID: 871 5130 2130\r\nPasscode: 086942\r\n\r\n---\r\n\r\nOne tap mobile\r\n+13052241968,,87151302130#,,,,*086942# US\r\n+13017158592,,87151302130#,,,,*086942# US (Washington DC)\r\n\r\nJoin instructions\r\nhttps://us06web.zoom.us/meetings/87151302130/invitations?signature=DFoSVlh45nT-bGO82e73suO8nPT_9fNu5sJl64g6ypk\r\n\"/></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250822T190000Z\"></time><time itemprop=\"endDate\" datetime=\"20250822T200000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Friday Aug 22, 2025 ⋅ 3pm – 4pm (Eastern Time - New York)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Location</h2></td></tr></table><span itemprop=\"location\" itemscope itemtype=\"http://schema.org/Place\"><span itemprop=\"name\" class=\"primary-text notranslate\" style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\">https://us06web.zoom.us/j/87151302130?pwd=YKXZchIecDpOfbBMaF0gX8GsdZaLBN.1</span><br/><a href=\"https://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fj%2F87151302130%3Fpwd%3DYKXZchIecDpOfbBMaF0gX8GsdZaLBN.1&amp;sa=D&amp;source=calendar&amp;ust=1756258080000000&amp;usg=AOvVaw2mtq2kj7pPtpSd64q4LsB_\" class=\"accent-text underline-on-hover\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" itemprop=\"map\">View map</a></span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:brian@bayfrontcapitalllc.com\">Brian Stufflebean</a></span><meta itemprop=\"email\" content=\"brian@bayfrontcapitalllc.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Brian Stufflebean\"/><meta itemprop=\"email\" content=\"brian@bayfrontcapitalllc.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:cfonts@seadar.blue\">cfonts@seadar.blue</a></span><meta itemprop=\"email\" content=\"cfonts@seadar.blue\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:paxtonkelso@hotmail.com\">paxtonkelso@hotmail.com</a></span><meta itemprop=\"email\" content=\"paxtonkelso@hotmail.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=dmNibTM3ZHI2YzgxM3J2MGFmb3VvdnFmMDAgcmlja0BtYXZyaXgub25l&amp;tok=MjgjYnJpYW5AYmF5ZnJvbnRjYXBpdGFsbGxjLmNvbTMwOTBmNTcwZWYxZWUyODkyYjRjYzcwOTNlY2Y5NTY3MmZkNDJiZTc&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=dmNibTM3ZHI2YzgxM3J2MGFmb3VvdnFmMDAgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjgjYnJpYW5AYmF5ZnJvbnRjYXBpdGFsbGxjLmNvbTMwOTBmNTcwZWYxZWUyODkyYjRjYzcwOTNlY2Y5NTY3MmZkNDJiZTc&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=dmNibTM3ZHI2YzgxM3J2MGFmb3VvdnFmMDAgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjgjYnJpYW5AYmF5ZnJvbnRjYXBpdGFsbGxjLmNvbTMwOTBmNTcwZWYxZWUyODkyYjRjYzcwOTNlY2Y5NTY3MmZkNDJiZTc&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=dmNibTM3ZHI2YzgxM3J2MGFmb3VvdnFmMDAgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjgjYnJpYW5AYmF5ZnJvbnRjYXBpdGFsbGxjLmNvbTMwOTBmNTcwZWYxZWUyODkyYjRjYzcwOTNlY2Y5NTY3MmZkNDJiZTc&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=dmNibTM3ZHI2YzgxM3J2MGFmb3VvdnFmMDAgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjgjYnJpYW5AYmF5ZnJvbnRjYXBpdGFsbGxjLmNvbTMwOTBmNTcwZWYxZWUyODkyYjRjYzcwOTNlY2Y5NTY3MmZkNDJiZTc&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=dmNibTM3ZHI2YzgxM3J2MGFmb3VvdnFmMDAgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjgjYnJpYW5AYmF5ZnJvbnRjYXBpdGFsbGxjLmNvbTMwOTBmNTcwZWYxZWUyODkyYjRjYzcwOTNlY2Y5NTY3MmZkNDJiZTc&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=dmNibTM3ZHI2YzgxM3J2MGFmb3VvdnFmMDAgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjgjYnJpYW5AYmF5ZnJvbnRjYXBpdGFsbGxjLmNvbTMwOTBmNTcwZWYxZWUyODkyYjRjYzcwOTNlY2Y5NTY3MmZkNDJiZTc&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=dmNibTM3ZHI2YzgxM3J2MGFmb3VvdnFmMDAgcmlja0BtYXZyaXgub25l&amp;tok=MjgjYnJpYW5AYmF5ZnJvbnRjYXBpdGFsbGxjLmNvbTMwOTBmNTcwZWYxZWUyODkyYjRjYzcwOTNlY2Y5NTY3MmZkNDJiZTc&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=dmNibTM3ZHI2YzgxM3J2MGFmb3VvdnFmMDAgcmlja0BtYXZyaXgub25l&amp;tok=MjgjYnJpYW5AYmF5ZnJvbnRjYXBpdGFsbGxjLmNvbTMwOTBmNTcwZWYxZWUyODkyYjRjYzcwOTNlY2Y5NTY3MmZkNDJiZTc&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','Mavrix 1 Introduction to SEADAR\r\nFriday Aug 22, 2025 ⋅ 3pm – 4pm\r\nEastern Time - New York\r\n\r\nLocation\r\nhttps://us06web.zoom.us/j/87151302130?pwd=YKXZchIecDpOfbBMaF0gX8GsdZaLBN.1	\r\nhttps://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fj%2F87151302130%3Fpwd%3DYKXZchIecDpOfbBMaF0gX8GsdZaLBN.1&sa=D&source=calendar&ust=1756258080000000&usg=AOvVaw2mtq2kj7pPtpSd64q4LsB_\r\n\r\n\r\n\r\nBrian Stufflebean is inviting you to a scheduled Zoom meeting.\r\nJoin Zoom Meeting\r\nhttps://us06web.zoom.us/j/87151302130?pwd=YKXZchIecDpOfbBMaF0gX8GsdZaLBN.1\r\n\r\nMeeting ID: 871 5130 2130\r\nPasscode: 086942\r\n\r\n---\r\n\r\nOne tap mobile\r\n+13052241968,,87151302130#,,,,*086942# US\r\n+13017158592,,87151302130#,,,,*086942# US (Washington DC)\r\n\r\nJoin instructions\r\nhttps://us06web.zoom.us/meetings/87151302130/invitations?signature=DFoSVlh45nT-bGO82e73suO8nPT_9fNu5sJl64g6ypk\r\n\r\n\r\nOrganizer\r\nBrian Stufflebean\r\nbrian@bayfrontcapitalllc.com\r\n\r\nGuests\r\nBrian Stufflebean - organizer\r\ncfonts@seadar.blue\r\npaxtonkelso@hotmail.com\r\nrick@mavrix.one\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=dmNibTM3ZHI2YzgxM3J2MGFmb3VvdnFmMDAgcmlja0BtYXZyaXgub25l&tok=MjgjYnJpYW5AYmF5ZnJvbnRjYXBpdGFsbGxjLmNvbTMwOTBmNTcwZWYxZWUyODkyYjRjYzcwOTNlY2Y5NTY3MmZkNDJiZTc&ctz=America%2FNew_York&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=dmNibTM3ZHI2YzgxM3J2MGFmb3VvdnFmMDAgcmlja0BtYXZyaXgub25l&tok=MjgjYnJpYW5AYmF5ZnJvbnRjYXBpdGFsbGxjLmNvbTMwOTBmNTcwZWYxZWUyODkyYjRjYzcwOTNlY2Y5NTY3MmZkNDJiZTc&ctz=America%2FNew_York&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-08-22 01:28:37','2025-12-09 19:27:49','2025-12-09 19:27:49','2025-12-09 19:27:49',NULL,NULL,NULL),
(638,4,'<fef3a84a9c6ca48de871e2a00ef4112a@mavrix.one>',NULL,NULL,'Demo Concept','john@mavrix.one','john@mavrix.one','Take a look at this.\r\n\r\nCan elaborate as needed.\r\n\r\nJohn.','Take a look at this.\r\n\r\nCan elaborate as needed.\r\n\r\nJohn.',0,0,0,0,0,0,'2025-08-22 19:13:02','2025-12-09 19:27:50','2025-12-09 19:27:50','2025-12-09 19:27:50',NULL,NULL,NULL),
(639,4,'<EPA70AYN7CZV3D91WPEY9YPJ40@news.proton.me>',NULL,NULL,'How does an extra 3 GB of free storage sound?','no-reply@notify.proton.me','Proton','--b2=_zgIUoiIEbQehQTptnpQU4H2FR6ohJiV3WwATjASFyU\r\nContent-Type: text/html; charset=utf-8\r\nContent-Transfer-Encoding: base64\r\n\r\nPCFET0NUWVBFIGh0bWw+DQo8P3htbCBlbmNvZGluZz0idXRmLTgiID8+PGh0bWwgeG1sbnM9Imh0\r\ndHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWwiIHhtbG5zOnY9InVybjpzY2hlbWFzLW1pY3Jvc29m\r\ndC1jb206dm1sIiB4bWxuczpvPSJ1cm46c2NoZW1hcy1taWNyb3NvZnQtY29tOm9mZmljZTpvZmZp\r\nY2UiPg0KDQo8aGVhZD48bWV0YSBodHRwLWVxdWl2PSJDb250ZW50LVR5cGUiIGNvbnRlbnQ9InRl\r\neHQvaHRtbDsgY2hhcnNldD11dGYtOCI+DQogICAgPCEtLSBOQU1FOiAxIENPTFVNTiAtLT4NCiAg\r\nICA8IS0tW2lmIGd0ZSBtc28gMTVdPg0KICAgIDx4bWw+DQogICAgICAgIDxvOk9mZmljZURvY3Vt\r\nZW50U2V0dGluZ3M+DQogICAgICAgIDxvOkFsbG93UE5HLz4NCiAgICAgICAgPG86UGl4ZWxzUGVy\r\nSW5jaD45NjwvbzpQaXhlbHNQZXJJbmNoPg0KICAgICAgICA8L286T2ZmaWNlRG9jdW1lbnRTZXR0\r\naW5ncz4NCiAgICA8L3htbD4NCiAgICA8IVtlbmRpZl0tLT4NCiAgICA8bWV0YSBjaGFyc2V0PSJV\r\nVEYtOCI+DQogICAgPG1ldGEgbmFtZT0ieC1hcHBsZS1kaXNhYmxlLW1lc3NhZ2UtcmVmb3JtYXR0\r\naW5nIj4NCiAgICA8bWV0YSBuYW1lPSJmb3JtYXQtZGV0ZWN0aW9uIiBjb250ZW50PSJ0ZWxlcGhv\r\nbmU9bm8sIGRhdGU9bm8sIGFkZHJlc3M9bm8sIGVtYWlsPW5vLCB1cmw9bm8iPg0KICAgIDxtZXRh\r\nIGh0dHAtZXF1aXY9IlgtVUEtQ29tcGF0aWJsZSIgY29udGVudD0iSUU9ZWRnZSI+DQogICAgPG1l\r\ndGEgbmFtZT0idmlld3BvcnQiIGNvbnRlbnQ9IndpZHRoPWRldmljZS13aWR0aCwgaW5pdGlhbC1z\r\nY2FsZT0xIj4NCiAgICA8bWV0YSBuYW1lPSJhdXRob3IiIGNvbnRlbnQ9IlByb3RvbiAmbHQ7bm8t\r\ncmVwbHlAbmV3cy5wcm90b24ubWUmZ3Q7Ij4NCiAgICA8bWV0YSBuYW1lPSJkZXNjcmlwdGlvbiIg\r\nY29udGVudD0iQ29tcGxldGUgdGhpcyBzaW1wbGUgY2hlY2tsaXN0IHRvIGdldCBleHRyYSBzdG9y\r\nYWdlIGZvcmV2ZXIsIGZvciBmcmVlLiI+DQogICAgPHRpdGxlPkhvdyBkb2VzIGFuIGV4dHJhIDMg\r\nR0Igb2YgZnJlZSBzdG9yYWdlIHNvdW5kPzwvdGl0bGU+DQoNCg0KPHN0eWxlIHR5cGU9InRleHQv\r\nY3NzIj5AbWVkaWEgb25seSBzY3JlZW4gYW5kIChtaW4td2lkdGg6NzY4cHgpey50ZW1wbGF0ZUNv\r\nbnRhaW5lcnt3aWR0aDogNjAwcHggIWltcG9ydGFudDt9fUBtZWRpYSBvbmx5IHNjcmVlbiBhbmQg\r\nKG1heC13aWR0aDogNTIwcHgpe2JvZHksdGFibGUsdGQscCxhey13ZWJraXQtdGV4dC1zaXplLWFk\r\nanVzdDogbm9uZSAhaW1wb3J0YW50O31ib2R5e3dpZHRoOiAxMDAlICFpbXBvcnRhbnQ7IG1pbi13\r\naWR0aDogMTAwJSAhaW1wb3J0YW50O30ubWNuUmV0aW5hSW1hZ2V7bWF4LXdpZHRoOiAxMDAlICFp\r\nbXBvcnRhbnQ7fS5tY25JbWFnZXt3aWR0aDogMTAwJSAhaW1wb3J0YW50O30ubWNuSGFsZkNhcHRp\r\nb25MZWZ0SW1hZ2VDb250ZW50IC5tY25JbWFnZXt3aWR0aDogMjU4cHggIWltcG9ydGFudDt9Lm1j\r\nblRleHRDb250ZW50Q29udGFpbmVyLC5tY25DYXB0aW9uTGVmdFRleHRDb250ZW50Q29udGFpbmVy\r\nLC5tY25DYXB0aW9uTGVmdEltYWdlQ29udGVudENvbnRhaW5lcnttYXgtd2lkdGg6IDEwMCUgIWlt\r\ncG9ydGFudDsgd2lkdGg6IDEwMCUgIWltcG9ydGFudDt9Lm1jbkNhcHRpb25MZWZ0Q29udGVudE91\r\ndGVyIC5tY25UZXh0Q29udGVudHtwYWRkaW5nLXRvcDogMTZweCAhaW1wb3J0YW50O30ubWNuSGFs\r\nZkNhcHRpb25MZWZ0SW1hZ2VDb250ZW50e3RleHQtYWxpZ246IGNlbnRlcjt9Lm1jblRleHRDb250\r\nZW50e3BhZGRpbmctcmlnaHQ6IDMycHggIWltcG9ydGFudDsgcGFkZGluZy1sZWZ0OiAzMnB4ICFp\r\nbXBvcnRhbnQ7fS5tY25DYXB0aW9uTGVmdFRleHRDb250ZW50Q29udGFpbmVyIC5tY25UZXh0Q29u\r\ndGVudHtwYWRkaW5nLXJpZ2h0OiAwICFpbXBvcnRhbnQ7IHBhZGRpbmctbGVmdDogMCAhaW1wb3J0\r\nYW50O30jdGVtcGxhdGVCb2R5IC5tY25UZXh0Q29udGVudCwjdGVtcGxhdGVCb2R5IC5tY25UZXh0\r\nQ29udGVudCBwe2ZvbnQtc2l6ZTogMTZweCAhaW1wb3J0YW50OyBsaW5lLWhlaWdodDogMS41ZW0g\r\nIWltcG9ydGFudDt9I3RlbXBsYXRlRm9vdGVyIC5tY25UZXh0Q29udGVudCwjdGVtcGxhdGVGb290\r\nZXIgLm1jblRleHRDb250ZW50IHB7Zm9udC1zaXplOiAxNHB4ICFpbXBvcnRhbnQ7IGxpbmUtaGVp\r\nZ2h0OiAxLjVlbSAhaW1wb3J0YW50O30jdGVtcGxhdGVGb290ZXIgLm1jbkZvbGxvd0NvbnRlbnRJ\r\ndGVtQ29udGFpbmVye3BhZGRpbmctbGVmdDogMnB4ICFpbXBvcnRhbnQ7IHBhZGRpbmctcmlnaHQ6\r\nIDJweCAhaW1wb3J0YW50O319QG1lZGlhIG9ubHkgc2NyZWVuIGFuZCAobWF4LXdpZHRoOiAzNTJw\r\neCl7Lm1jbkZvbGxvd0ljb25Db250ZW50LC5tY25Gb2xsb3dJY29uQ29udGVudCBpbWcuc29jaWFs\r\nLWljb257d2lkdGg6IDM4cHggIWltcG9ydGFudDsgaGVpZ2h0OiAzOHB4ICFpbXBvcnRhbnQ7fSN0\r\nZW1wbGF0ZUZvb3RlciAubWNuRm9sbG93Q29udGVudEl0ZW1Db250YWluZXJ7cGFkZGluZy1sZWZ0\r\nOiAwICFpbXBvcnRhbnQ7IHBhZGRpbmctcmlnaHQ6IDAgIWltcG9ydGFudDt9fTwvc3R5bGU+PC9o\r\nZWFkPg0KDQo8Ym9keSBzdHlsZT0iaGVpZ2h0OiAxMDAlOyBtYXJnaW46IDA7IHBhZGRpbmc6IDA7\r\nIHdpZHRoOiAxMDAlOyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyBiYWNrZ3JvdW5kLWNvbG9yOiAjZjVmNGYyOyI+DQogICAgPCEtLVtp\r\nZiAhZ3RlIG1zbyA5XT48IS0tLS0+PHNwYW4gY2xhc3M9Im1jblByZXZpZXdUZXh0IiBzdHlsZT0i\r\nZm9udC1zaXplOiAwcHg7IGxpbmUtaGVpZ2h0OiAwcHg7IG1heC1oZWlnaHQ6IDBweDsgbWF4LXdp\r\nZHRoOiAwcHg7IG9wYWNpdHk6IDA7IG92ZXJmbG93OiBoaWRkZW47IHZpc2liaWxpdHk6IGhpZGRl\r\nbjsgbXNvLWhpZGU6IGFsbDsgZGlzcGxheTogbm9uZTsiPkNvbXBsZXRlIHRoaXMgc2ltcGxlIGNo\r\nZWNrbGlzdCB0byBnZXQgZXh0cmEgc3RvcmFnZSBmb3JldmVyLCBmb3IgZnJlZS48L3NwYW4+PCEt\r\nLTwhW2VuZGlmXS0tPg0KICAgIDxjZW50ZXI+DQogICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVy\r\nIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgaGVpZ2h0PSIxMDAl\r\nIiB3aWR0aD0iMTAwJSIgaWQ9ImJvZHlUYWJsZSIgc3R5bGU9ImJvcmRlci1jb2xsYXBzZTogY29s\r\nbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBo\r\nZWlnaHQ6IDEwMCU7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgd2lkdGg6IDEwMCU7IGJhY2tncm91\r\nbmQtY29sb3I6ICNmNWY0ZjI7Ij4NCiAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICA8\r\ndGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJ0b3AiIGlkPSJib2R5Q2VsbCIgc3R5bGU9Im1zby1s\r\naW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdl\r\nYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBoZWlnaHQ6IDEwMCU7IG1hcmdpbjogMDsgcGFk\r\nZGluZzogOHB4OyB3aWR0aDogMTAwJTsgYm9yZGVyLXRvcDogMDsiPg0KICAgICAgICAgICAgICAg\r\nICAgICA8IS0tIEJFR0lOIFRFTVBMQVRFIC8vIC0tPg0KICAgICAgICAgICAgICAgICAgICA8IS0t\r\nW2lmIChndGUgbXNvIDkpfChJRSldPg0KICAgICAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249\r\nImNlbnRlciIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAiIHdpZHRo\r\nPSI2MDAiIHN0eWxlPSJ3aWR0aDo2MDBweDsiPjx0cj48dGQgYWxpZ249ImNlbnRlciIgdmFsaWdu\r\nPSJ0b3AiIHdpZHRoPSI2MDAiIHN0eWxlPSJ3aWR0aDo2MDBweDsiPg0KICAgICAgICAgICAgICAg\r\nICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAgICAgICAgICAgPHRhYmxlIGJvcmRlcj0iMCIg\r\nY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9InRlbXBs\r\nYXRlQ29udGFpbmVyIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxl\r\nLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGJvcmRlcjogMDsgYm9yZGVy\r\nLXJhZGl1czogMTZweDsgbWF4LXdpZHRoOiA2MDBweDsiPg0KPHRyPg0KICAgIDx0ZCB2YWxpZ249\r\nInRvcCIgaWQ9InRlbXBsYXRlSGVhZGVyIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4\r\nYWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7IGJhY2tncm91bmQtY29sb3I6ICNmZmZmZmY7IGJhY2tncm91bmQtaW1hZ2U6IG5v\r\nbmU7IGJhY2tncm91bmQtcmVwZWF0OiBuby1yZXBlYXQ7IGJhY2tncm91bmQtcG9zaXRpb246IGNl\r\nbnRlcjsgYmFja2dyb3VuZC1zaXplOiBjb3ZlcjsgYm9yZGVyLXRvcDogMDsgYm9yZGVyLWJvdHRv\r\nbTogMDsgcGFkZGluZy10b3A6IDBweDsgcGFkZGluZy1ib3R0b206IDBweDsgYm9yZGVyLXJhZGl1\r\nczogMTZweCAxNnB4IDAgMDsiPg0KICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGlu\r\nZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuSW1hZ2VCbG9jayIg\r\nc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRh\r\nYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAg\r\nIDx0Ym9keSBjbGFzcz0ibWNuSW1hZ2VCbG9ja091dGVyIj4NCiAgICAgICAgICAgICAgICA8dHI+\r\nDQogICAgICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jbkltYWdlQmxv\r\nY2tJbm5lciIgc3R5bGU9InBhZGRpbmc6IDE2cHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFj\r\ndGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImxlZnQiIHdp\r\nZHRoPSIxMDAlIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgY2xh\r\nc3M9Im1jbkltYWdlQ29udGVudENvbnRhaW5lciIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9y\r\nZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUt\r\ncnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0ibWNuSW1hZ2VDb250ZW50IiB2YWxpZ249InRvcCIg\r\nc3R5bGU9InBhZGRpbmc6IDE2cHg7IHRleHQtYWxpZ246IGNlbnRlcjsgbXNvLWxpbmUtaGVpZ2h0\r\nLXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICA8YSBocmVmPSJodHRwczovL3Byb3Rvbi5tZS8iIHRhcmdldD0iX2JsYW5rIiBzdHlsZT0i\r\nbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGxpbmUtaGVpZ2h0OiBpbmhlcml0OyBj\r\nb2xvcjogIzZkNGFmZjsgZm9udC13ZWlnaHQ6IG5vcm1hbDsgdGV4dC1kZWNvcmF0aW9uOiB1bmRl\r\ncmxpbmU7Ij48aW1nIGFsaWduPSJjZW50ZXIiIGFsdD0iUHJvdG9uIiBzcmM9ImNpZDpiNzYwOGYx\r\nODY4MGY1YWZkNzE3N0BuZXdzLnByb3Rvbi5tZSIgd2lkdGg9IjIxMCIgc3R5bGU9IndpZHRoOiAz\r\nOS4xNzkxJTsgbWF4LXdpZHRoOiA0MjBweDsgcGFkZGluZy1ib3R0b206IDA7IHZlcnRpY2FsLWFs\r\naWduOiBib3R0b207IGJvcmRlcjogMDsgaGVpZ2h0OiBhdXRvOyBvdXRsaW5lOiBub25lOyB0ZXh0\r\nLWRlY29yYXRpb246IG5vbmU7IC1tcy1pbnRlcnBvbGF0aW9uLW1vZGU6IGJpY3ViaWM7IGZvbnQt\r\nZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE2cHg7IGxp\r\nbmUtaGVpZ2h0OiAxLjVlbTsgY29sb3I6ICM2ZDRhZmY7IGRpc3BsYXk6IGlubGluZTsiPjwvYT4N\r\nCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90\r\nYm9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAg\r\nICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgIDwvdGJvZHk+DQog\r\nICAgICAgIDwvdGFibGU+DQogICAgPC90ZD4NCjwvdHI+DQo8dHI+DQogICAgPHRkIHZhbGlnbj0i\r\ndG9wIiBpZD0idGVtcGxhdGVCb2R5IiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0\r\nbHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IGJhY2tncm91bmQtY29sb3I6ICNmZmZmZmY7IGJhY2tncm91bmQtaW1hZ2U6IG5vbmU7\r\nIGJhY2tncm91bmQtcmVwZWF0OiBuby1yZXBlYXQ7IGJhY2tncm91bmQtcG9zaXRpb246IGNlbnRl\r\ncjsgYmFja2dyb3VuZC1zaXplOiBjb3ZlcjsgYm9yZGVyLXRvcDogMDsgYm9yZGVyLWJvdHRvbTog\r\nMDsgcGFkZGluZy10b3A6IDhweDsgcGFkZGluZy1ib3R0b206IDhweDsiPg0KPHRhYmxlIGJvcmRl\r\ncj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9\r\nIm1jbkRpdmlkZXJCbG9jayIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNl\r\nOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7\r\nIC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7IHRhYmxlLWxheW91dDogZml4ZWQ7Ij4NCiAgICA8dGJvZHkgY2xhc3M9Im1jbkRpdmlkZXJC\r\nbG9ja091dGVyIj4NCiAgICAgICAgPHRyPg0KICAgICAgICAgICAgPHRkIGNsYXNzPSJtY25EaXZp\r\nZGVyQmxvY2tJbm5lciIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgcGFkZGluZzogMCAzMnB4IDBw\r\neCAzMnB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAg\r\nICAgIDx0YWJsZSBjbGFzcz0ibWNuRGl2aWRlckNvbnRlbnQiIGJvcmRlcj0iMCIgY2VsbHBhZGRp\r\nbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgc3R5bGU9Im1pbi13aWR0aDogMTAw\r\nJTsgYm9yZGVyLXRvcDogMXB4IHNvbGlkICNGNUY0RjI7IGJvcmRlci1jb2xsYXBzZTogY29sbGFw\r\nc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQog\r\nICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4N\r\nCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgc3R5bGU9Im1zby1saW5lLWhlaWdodC1y\r\ndWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFu\r\nPjwvc3Bhbj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAg\r\nICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAg\r\nICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgIDwhLS0NCiAgICAgICAgICAgICAgICA8\r\ndGQgY2xhc3M9Im1jbkRpdmlkZXJCbG9ja0lubmVyIiBzdHlsZT0icGFkZGluZzogMzJweDsiPg0K\r\nICAgICAgICAgICAgICAgIDxociBjbGFzcz0ibWNuRGl2aWRlckNvbnRlbnQiIHN0eWxlPSJib3Jk\r\nZXItYm90dG9tLWNvbG9yOm5vbmU7IGJvcmRlci1sZWZ0LWNvbG9yOm5vbmU7IGJvcmRlci1yaWdo\r\ndC1jb2xvcjpub25lOyBib3JkZXItYm90dG9tLXdpZHRoOjA7IGJvcmRlci1sZWZ0LXdpZHRoOjA7\r\nIGJvcmRlci1yaWdodC13aWR0aDowOyBtYXJnaW4tdG9wOjA7IG1hcmdpbi1yaWdodDowOyBtYXJn\r\naW4tYm90dG9tOjA7IG1hcmdpbi1sZWZ0OjA7IiAvPg0KICAgICAgICAgICAgICAgIC0tPg0KICAg\r\nICAgICAgICAgPC90ZD4NCiAgICAgICAgPC90cj4NCiAgICA8L3Rib2R5Pg0KPC90YWJsZT4NCjx0\r\nYWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEw\r\nMCUiIGNsYXNzPSJtY25TcGFjZXJCbG9jayIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVy\r\nLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNw\r\nYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IHRhYmxlLWxheW91dDogZml4ZWQ7Ij4NCiAgICA8dGJvZHkgY2xhc3M9Im1j\r\nblNwYWNlckJsb2NrT3V0ZXIiPg0KICAgICAgICA8dHI+DQogICAgICAgICAgICA8dGQgY2xhc3M9\r\nIm1jblNwYWNlckJsb2NrSW5uZXIiIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IHBhZGRpbmc6IDE2\r\ncHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAg\r\nPHNwYW4+PC9zcGFuPg0KICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgPC90cj4NCiAgICA8L3Ri\r\nb2R5Pg0KPC90YWJsZT4NCjx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3Bh\r\nY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25UZXh0QmxvY2siIHN0eWxlPSJtaW4td2lk\r\ndGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBw\r\ndDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdl\r\nYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgPHRib2R5IGNsYXNzPSJtY25UZXh0\r\nQmxvY2tPdXRlciI+DQogICAgICAgIDx0cj4NCiAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIg\r\nY2xhc3M9Im1jblRleHRCbG9ja0lubmVyIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4\r\nYWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAg\r\nICAgPHRhYmxlIGFsaWduPSJsZWZ0IiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIwIiBjZWxscGFk\r\nZGluZz0iMCIgd2lkdGg9IjEwMCUiIHN0eWxlPSJ3aWR0aDoxMDAlOyI+PHRyPg0KICAgICAgICAg\r\nICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAg\r\nICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgd2lkdGg9IjYwMCIgc3R5bGU9IndpZHRoOjYw\r\nMHB4OyI+DQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICAgICAgPHRh\r\nYmxlIGFsaWduPSJsZWZ0IiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0i\r\nMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIgc3R5bGU9Im1h\r\neC13aWR0aDogMTAwJTsgbWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNl\r\nOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAg\r\nICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4\r\ndENvbnRlbnQiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgd29yZC1i\r\ncmVhazogYnJlYWstd29yZDsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVs\r\ndmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE2cHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsg\r\ndGV4dC1hbGlnbjogbGVmdDsgcGFkZGluZy10b3A6IDhweDsgcGFkZGluZy1ib3R0b206IDEycHg7\r\nIHBhZGRpbmctcmlnaHQ6IDMycHg7IHBhZGRpbmctbGVmdDogMzJweDsiPg0KICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0ibWNuVGV4dENvbnRlbnRDb250YWluZXIiIHN0\r\neWxlPSJwYWRkaW5nOiAwcHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBjb2xv\r\ncjogIzBjMGMxNDsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZv\r\nbnQtc2l6ZTogMTZweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBsZWZ0OyBtYXJn\r\naW46IDEycHggMHB4OyI+RGVhciBQcm90b24gY29tbXVuaXR5IG1lbWJlciw8L3A+PHAgY2xhc3M9\r\nIm1jblRleHRDb250ZW50Q29udGFpbmVyIiBzdHlsZT0icGFkZGluZzogMHB4OyBtc28tbGluZS1o\r\nZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBBcmlh\r\nbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE2cHg7IGxpbmUtaGVpZ2h0OiAx\r\nLjVlbTsgdGV4dC1hbGlnbjogbGVmdDsgbWFyZ2luOiAxMnB4IDBweDsiPkNvbmdyYXR1bGF0aW9u\r\ncyBvbiB0YWtpbmcgYmFjayBjb250cm9sIG9mIHlvdXIgb25saW5lIHByaXZhY3kgYW5kIHNlY3Vy\r\naXR5LiBUbyBoZWxwIHlvdSBraWNrc3RhcnQgeW91ciBqb3VybmV5LCB3ZeKAmXJlIG9mZmVyaW5n\r\nIHlvdSBhbiBhZGRpdGlvbmFsIDMgR0Igb2Ygc3RvcmFnZSDigJQgZm9yIGZyZWUhPC9wPjxwIGNs\r\nYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIgc3R5bGU9InBhZGRpbmc6IDBweDsgbXNvLWxp\r\nbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Vi\r\na2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGNvbG9yOiAjMGMwYzE0OyBmb250LWZhbWlseTog\r\nQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdo\r\ndDogMS41ZW07IHRleHQtYWxpZ246IGxlZnQ7IG1hcmdpbjogMTJweCAwcHg7Ij5UbyBjb21wbGV0\r\nZSB0aGUgY2hlY2tsaXN0IGFuZCBjbGFpbSB5b3VyIGJvbnVzIHN0b3JhZ2UsIHNpbXBseSA8YiBz\r\ndHlsZT0ibGluZS1oZWlnaHQ6IGluaGVyaXQ7Ij5jbGljayBvbiB0aGUgZ2lmdCBpY29uPC9iPiBh\r\ndCB0aGUgYm90dG9tIHJpZ2h0IG9mIHRoZSBQcm90b24gRHJpdmUgd2ViIGFwcCBhbmQgZm9sbG93\r\nIHRoZSBwcm9tcHRzLjwvcD4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAg\r\nICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQog\r\nICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQog\r\nICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAg\r\nICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8L3RyPjwvdGFibGU+\r\nDQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICA8L3RkPg0KICAgICAg\r\nICA8L3RyPg0KICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0KPHRhYmxlIGNlbGxwYWRkaW5nPSIwIiBj\r\nZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25DYXB0aW9uQmxvY2siIHN0eWxl\r\nPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10\r\nYWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNuQ2FwdGlvbkJsb2Nr\r\nT3V0ZXIiPg0KICAgICAgICA8dHI+DQogICAgICAgICAgICA8dGQgY2xhc3M9Im1jbkNhcHRpb25C\r\nbG9ja0lubmVyIiBzdHlsZT0icGFkZGluZzogOHB4IDMycHggMjBweCAzMnB4OyBtc28tbGluZS1o\r\nZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICA8dGFibGUgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBjbGFzcz0ibWNuQ2FwdGlv\r\nbkxlZnRDb250ZW50T3V0ZXIiIHdpZHRoPSIxMDAlIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBj\r\nb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1t\r\ncy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIj4NCiAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAg\r\nPHRyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0ibWNuQ2FwdGlvbkxl\r\nZnRDb250ZW50SW5uZXIiIHN0eWxlPSJwYWRkaW5nLXRvcDogMTZweDsgbXNvLWxpbmUtaGVpZ2h0\r\nLXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPHRhYmxlIGFsaWduPSJyaWdodCIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNw\r\nYWNpbmc9IjAiIGNsYXNzPSJtY25DYXB0aW9uTGVmdEltYWdlQ29udGVudENvbnRhaW5lciIgd2lk\r\ndGg9IjI1OCIgc3R5bGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3Bh\r\nY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICA8dGQgY2xhc3M9Im1jbkhhbGZDYXB0aW9uTGVmdEltYWdlQ29udGVudCIg\r\nYWxpZ249ImVuZCIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGltZyBh\r\nbHQ9IlVwbG9hZCB5b3VyIGZpcnN0IGZpbGUgYW5kIGNyZWF0ZSBhIHNlY3VyZSBmaWxlIHNoYXJp\r\nbmcgbGluay4iIHNyYz0iY2lkOjNmNTI4NTU0YmY2YTZjODExZWI1QG5ld3MucHJvdG9uLm1lIiB3\r\naWR0aD0iMjU4IiBjbGFzcz0ibWNuSW1hZ2UiIHN0eWxlPSJtYXgtd2lkdGg6IDI1OHB4OyBib3Jk\r\nZXI6IDA7IGhlaWdodDogYXV0bzsgb3V0bGluZTogbm9uZTsgdGV4dC1kZWNvcmF0aW9uOiBub25l\r\nOyAtbXMtaW50ZXJwb2xhdGlvbi1tb2RlOiBiaWN1YmljOyB2ZXJ0aWNhbC1hbGlnbjogYm90dG9t\r\nOyBib3JkZXItcmFkaXVzOiAxMnB4OyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fu\r\ncy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdodDogMS41ZW07IGNvbG9yOiAjNjU2\r\nNTY1OyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\nL3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RhYmxlPiAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgPHRhYmxlIGNsYXNzPSJtY25DYXB0aW9uTGVmdFRleHRDb250ZW50Q29udGFp\r\nbmVyIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIyNzgiIGhlaWdodD0i\r\nMTAwJSIgc3R5bGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6\r\nIDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyB3aWR0aDogY2FsYygxMDAlIC0gMjU4cHgp\r\nOyBtYXgtd2lkdGg6IGNhbGMoMTAwJSAtIDI1OHB4KTsiPg0KICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nPHRkIGNsYXNzPSJtY25UZXh0Q29udGVudCIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBl\r\neGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyB3b3JkLWJyZWFrOiBicmVhay13b3JkOyBjb2xvcjogIzBjMGMxNDsgZm9udC1m\r\nYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGlu\r\nZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBsZWZ0OyBwYWRkaW5nOiAwIDMycHggMCAwOyI+\r\nDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFz\r\ncz0ibWNuVGV4dENvbnRlbnRDb250YWluZXIiIHN0eWxlPSJwYWRkaW5nOiAwcHg7IG1zby1saW5l\r\nLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtp\r\ndC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBjb2xvcjogIzBjMGMxNDsgZm9udC1mYW1pbHk6IEFy\r\naWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWlnaHQ6\r\nIDEuNWVtOyB0ZXh0LWFsaWduOiBsZWZ0OyBtYXJnaW46IDEycHggMHB4OyI+PGIgc3R5bGU9Imxp\r\nbmUtaGVpZ2h0OiBpbmhlcml0OyI+MS4gVXBsb2FkIHlvdXIgZmlyc3QgZmlsZTwvYj48L3A+PHAg\r\nY2xhc3M9Im1jblRleHRDb250ZW50Q29udGFpbmVyIiBzdHlsZT0icGFkZGluZzogMHB4OyBtc28t\r\nbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13\r\nZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5\r\nOiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE2cHg7IGxpbmUtaGVp\r\nZ2h0OiAxLjVlbTsgdGV4dC1hbGlnbjogbGVmdDsgbWFyZ2luOiAxMnB4IDBweDsiPllvdeKAmWxs\r\nIGJlIGFibGUgdG8gYWNjZXNzIGl0IHNlY3VyZWx5IGZyb20gYW55d2hlcmUuPC9wPjxwIGNsYXNz\r\nPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIgc3R5bGU9InBhZGRpbmc6IDBweDsgbXNvLWxpbmUt\r\naGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGNvbG9yOiAjMGMwYzE0OyBmb250LWZhbWlseTogQXJp\r\nYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdodDog\r\nMS41ZW07IHRleHQtYWxpZ246IGxlZnQ7IG1hcmdpbjogMTJweCAwcHg7Ij48YiBzdHlsZT0ibGlu\r\nZS1oZWlnaHQ6IGluaGVyaXQ7Ij4yLiBDcmVhdGUgYSBzZWN1cmUgZmlsZSBzaGFyaW5nIGxpbms8\r\nL2I+PC9wPjxwIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIgc3R5bGU9InBhZGRpbmc6\r\nIDBweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGNvbG9yOiAjMGMwYzE0OyBm\r\nb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4\r\nOyBsaW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGxlZnQ7IG1hcmdpbjogMTJweCAwcHg7\r\nIj5TZW5kIGVuZC10by1lbmQgZW5jcnlwdGVkIGZpbGVzIGFuZCBmb2xkZXJzIG9mIGFueSBzaXpl\r\nIHRvIGFueW9uZS48L3A+PHAgY2xhc3M9Im1jblRleHRDb250ZW50Q29udGFpbmVyIiBzdHlsZT0i\r\ncGFkZGluZzogMHB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgY29sb3I6ICMw\r\nYzBjMTQ7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNp\r\nemU6IDE2cHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgdGV4dC1hbGlnbjogbGVmdDsgbWFyZ2luOiAx\r\nMnB4IDBweDsiPjxiIHN0eWxlPSJsaW5lLWhlaWdodDogaW5oZXJpdDsiPjMuIFNldCBhIHJlY292\r\nZXJ5IG1ldGhvZDwvYj48L3A+PHAgY2xhc3M9Im1jblRleHRDb250ZW50Q29udGFpbmVyIiBzdHls\r\nZT0icGFkZGluZzogMHB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgY29sb3I6\r\nICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250\r\nLXNpemU6IDE2cHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgdGV4dC1hbGlnbjogbGVmdDsgbWFyZ2lu\r\nOiAxMnB4IDBweDsiPkVuaGFuY2UgeW91ciBhY2NvdW504oCZcyBzZWN1cml0eSB0byBlbnN1cmUg\r\neW91IG5ldmVyIGxvc2UgYWNjZXNzLjwvcD4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAg\r\nICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAg\r\nICAgIDwvdGQ+DQogICAgICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwvdGFibGU+DQo8dGFibGUg\r\nYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBj\r\nbGFzcz0ibWNuVGV4dEJsb2NrIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFw\r\nc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBw\r\ndDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNuVGV4dEJsb2NrT3V0ZXIiPg0KICAgICAgICA8\r\ndHI+DQogICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJtY25UZXh0QmxvY2tJbm5l\r\nciIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAg\r\nICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0ibGVmdCIg\r\nYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAiIHdpZHRoPSIxMDAlIiBz\r\ndHlsZT0id2lkdGg6MTAwJTsiPjx0cj4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0K\r\nICAgICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8dGQgdmFsaWdu\r\nPSJ0b3AiIHdpZHRoPSI2MDAiIHN0eWxlPSJ3aWR0aDo2MDBweDsiPg0KICAgICAgICAgICAgICAg\r\nIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0ibGVmdCIgYm9yZGVy\r\nPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0i\r\nbWNuVGV4dENvbnRlbnRDb250YWluZXIiIHN0eWxlPSJtYXgtd2lkdGg6IDEwMCU7IG1pbi13aWR0\r\naDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0\r\nOyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Vi\r\na2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgPHRib2R5\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jblRleHRDb250ZW50IiBzdHlsZT0ibXNvLWxp\r\nbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Vi\r\na2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHdvcmQtYnJlYWs6IGJyZWFrLXdvcmQ7IGNvbG9y\r\nOiAjMGMwYzE0OyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9u\r\ndC1zaXplOiAxNnB4OyBsaW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGxlZnQ7IHBhZGRp\r\nbmctdG9wOiA4cHg7IHBhZGRpbmctYm90dG9tOiAxMnB4OyBwYWRkaW5nLXJpZ2h0OiAzMnB4OyBw\r\nYWRkaW5nLWxlZnQ6IDMycHg7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHAg\r\nY2xhc3M9Im1jblRleHRDb250ZW50Q29udGFpbmVyIiBzdHlsZT0icGFkZGluZzogMHB4OyBtc28t\r\nbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13\r\nZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5\r\nOiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE2cHg7IGxpbmUtaGVp\r\nZ2h0OiAxLjVlbTsgdGV4dC1hbGlnbjogbGVmdDsgbWFyZ2luOiAxMnB4IDBweDsiPklmIHlvdSBu\r\nZWVkIGFueSBhc3Npc3RhbmNlIG9yIGhhdmUgcXVlc3Rpb25zIGFib3V0IGhvdyB0byBnZXQgeW91\r\nciBib251cyAzIEdCLCBvdXIgPGEgdGFyZ2V0PSJfYmxhbmsiIGhyZWY9Imh0dHBzOi8vcHJvdG9u\r\nLm1lL3N1cHBvcnQvY29udGFjdCIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5\r\nOyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyBsaW5lLWhlaWdodDogaW5oZXJpdDsgY29sb3I6ICM2ZDRhZmY7IGZvbnQtd2VpZ2h0OiBp\r\nbmhlcml0OyB0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTsiPnN1cHBvcnQgdGVhbTwvYT4gaXMg\r\naGVyZSB0byBoZWxwLjwvcD4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAg\r\nICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQog\r\nICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQog\r\nICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAg\r\nICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8L3RyPjwvdGFibGU+\r\nDQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICA8L3RkPg0KICAgICAg\r\nICA8L3RyPg0KICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0KPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBh\r\nZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRCbG9j\r\nayIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNv\r\nLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICA8dGJv\r\nZHkgY2xhc3M9Im1jblRleHRCbG9ja091dGVyIj4NCiAgICAgICAgPHRyPg0KICAgICAgICAgICAg\r\nPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dEJsb2NrSW5uZXIiIHN0eWxlPSJtc28tbGlu\r\nZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJr\r\naXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgIDwhLS1baWYgbXNv\r\nXT4NCiAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImxlZnQiIGJvcmRlcj0iMCIgY2VsbHNw\r\nYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIiB3aWR0aD0iMTAwJSIgc3R5bGU9IndpZHRoOjEwMCU7\r\nIj48dHI+DQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgICAgICAgICA8\r\nIS0tW2lmIG1zb10+DQogICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiB3aWR0aD0iNjAw\r\nIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAg\r\nICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImxlZnQiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9\r\nIjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRDb250ZW50Q29u\r\ndGFpbmVyIiBzdHlsZT0ibWF4LXdpZHRoOiAxMDAlOyBtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1j\r\nb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFj\r\nZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAg\r\nICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0\r\nb3AiIGNsYXNzPSJtY25UZXh0Q29udGVudCIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBl\r\neGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyB3b3JkLWJyZWFrOiBicmVhay13b3JkOyBjb2xvcjogIzBjMGMxNDsgZm9udC1m\r\nYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGlu\r\nZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBsZWZ0OyBwYWRkaW5nLXRvcDogOHB4OyBwYWRk\r\naW5nLWJvdHRvbTogMTJweDsgcGFkZGluZy1yaWdodDogMzJweDsgcGFkZGluZy1sZWZ0OiAzMnB4\r\nOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJtY25UZXh0Q29u\r\ndGVudENvbnRhaW5lciIgc3R5bGU9InBhZGRpbmc6IDBweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6\r\nIGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IGNvbG9yOiAjMGMwYzE0OyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGlj\r\nYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdodDogMS41ZW07IHRleHQt\r\nYWxpZ246IGxlZnQ7IG1hcmdpbjogMTJweCAwcHg7Ij5TdGF5IHNlY3VyZSw8YnI+VGhlIFByb3Rv\r\nbiBEcml2ZSB0ZWFtPC9wPiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAg\r\nICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAg\r\nICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAg\r\nICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgICAgIDwvdHI+PC90YWJsZT4N\r\nCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAg\r\nIDwvdHI+DQogICAgPC90Ym9keT4NCjwvdGFibGU+DQogICAgPC90ZD4NCjwvdHI+PHRyPg0KICAg\r\nIDx0ZCB2YWxpZ249InRvcCIgaWQ9InRlbXBsYXRlRm9vdGVyIiBzdHlsZT0ibXNvLWxpbmUtaGVp\r\nZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRl\r\neHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGJhY2tncm91bmQtY29sb3I6ICNmZmZmZmY7IGJhY2tncm91\r\nbmQtaW1hZ2U6IG5vbmU7IGJhY2tncm91bmQtcmVwZWF0OiBuby1yZXBlYXQ7IGJhY2tncm91bmQt\r\ncG9zaXRpb246IGNlbnRlcjsgYmFja2dyb3VuZC1zaXplOiBjb3ZlcjsgYm9yZGVyLXRvcDogMDsg\r\nYm9yZGVyLWJvdHRvbTogMDsgcGFkZGluZy10b3A6IDE2cHg7IHBhZGRpbmctYm90dG9tOiAxNnB4\r\nOyBib3JkZXItcmFkaXVzOiAwIDAgMTZweCAxNnB4OyI+DQogICAgICAgIDx0YWJsZSBib3JkZXI9\r\nIjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJt\r\nY25EaXZpZGVyQmxvY2siIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTog\r\nY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAt\r\nbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyB0YWJsZS1sYXlvdXQ6IGZpeGVkOyI+DQogICAgPHRib2R5IGNsYXNzPSJtY25EaXZpZGVyQmxv\r\nY2tPdXRlciI+DQogICAgICAgIDx0cj4NCiAgICAgICAgICAgIDx0ZCBjbGFzcz0ibWNuRGl2aWRl\r\nckJsb2NrSW5uZXIiIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IHBhZGRpbmc6IDAgMzJweCAxNnB4\r\nIDMycHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAg\r\nICAgPHRhYmxlIGNsYXNzPSJtY25EaXZpZGVyQ29udGVudCIgYm9yZGVyPSIwIiBjZWxscGFkZGlu\r\nZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAl\r\nOyBib3JkZXItdG9wOiAxcHggc29saWQgI0Y1RjRGMjsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBz\r\nZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAg\r\nICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1\r\nbGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4+\r\nPC9zcGFuPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAg\r\nICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAg\r\nICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgPCEtLQ0KICAgICAgICAgICAgICAgIDx0\r\nZCBjbGFzcz0ibWNuRGl2aWRlckJsb2NrSW5uZXIiIHN0eWxlPSJwYWRkaW5nOiAzMnB4OyI+DQog\r\nICAgICAgICAgICAgICAgPGhyIGNsYXNzPSJtY25EaXZpZGVyQ29udGVudCIgc3R5bGU9ImJvcmRl\r\nci1ib3R0b20tY29sb3I6bm9uZTsgYm9yZGVyLWxlZnQtY29sb3I6bm9uZTsgYm9yZGVyLXJpZ2h0\r\nLWNvbG9yOm5vbmU7IGJvcmRlci1ib3R0b20td2lkdGg6MDsgYm9yZGVyLWxlZnQtd2lkdGg6MDsg\r\nYm9yZGVyLXJpZ2h0LXdpZHRoOjA7IG1hcmdpbi10b3A6MDsgbWFyZ2luLXJpZ2h0OjA7IG1hcmdp\r\nbi1ib3R0b206MDsgbWFyZ2luLWxlZnQ6MDsiIC8+DQogICAgICAgICAgICAgICAgLS0+DQogICAg\r\nICAgICAgICA8L3RkPg0KICAgICAgICA8L3RyPg0KICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0KPHRh\r\nYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAw\r\nJSIgY2xhc3M9Im1jblRleHRCbG9jayIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNv\r\nbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNl\r\nOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7Ij4NCiAgICA8dGJvZHkgY2xhc3M9Im1jblRleHRCbG9ja091dGVyIj4NCiAgICA8\r\ndHI+DQogICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jblRleHRCbG9ja0lubmVyIiBz\r\ndHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgIDwh\r\nLS1baWYgbXNvXT4NCiAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAi\r\nIGNlbGxzcGFjaW5nPSIwIiBjZWxscGFkZGluZz0iMCIgd2lkdGg9IjEwMCUiIHN0eWxlPSJ3aWR0\r\naDoxMDAlOyI+DQogICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgPCFbZW5kaWZdLS0+\r\nDQoNCiAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgIDx0ZCB2YWxpZ249InRv\r\ncCIgd2lkdGg9IjYwMCIgc3R5bGU9IndpZHRoOjYwMHB4OyI+DQogICAgICAgICAgICA8IVtlbmRp\r\nZl0tLT4NCiAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxw\r\nYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25UZXh0Q29u\r\ndGVudENvbnRhaW5lciIgc3R5bGU9Im1heC13aWR0aDogMTAwJTsgbWluLXdpZHRoOiAxMDAlOyBi\r\nb3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJs\r\nZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAg\r\nICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1j\r\nblRleHRDb250ZW50IiBzdHlsZT0icGFkZGluZy10b3A6IDI0cHg7IHBhZGRpbmctcmlnaHQ6IDMy\r\ncHg7IHBhZGRpbmctYm90dG9tOiAwOyBwYWRkaW5nLWxlZnQ6IDMycHg7IG1zby1saW5lLWhlaWdo\r\ndC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyB3b3JkLWJyZWFrOiBicmVhay13b3JkOyBjb2xvcjogIzcwNmQ2\r\nYjsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTog\r\nMTRweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBjZW50ZXI7Ij5Db25uZWN0IHdp\r\ndGggdGhlIFByb3RvbiZuYnNwO2NvbW11bml0eTwvdGQ+DQogICAgICAgICAgICAgICAgPC90cj4N\r\nCiAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAg\r\nICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICA8IVtlbmRp\r\nZl0tLT4NCg0KICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPC90cj4NCiAg\r\nICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgPC90\r\nZD4NCiAgICA8L3RyPg0KICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0KDQogICAgICAgIDx0YWJsZSBi\r\nb3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNs\r\nYXNzPSJtY25Gb2xsb3dCbG9jayIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxh\r\ncHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAw\r\ncHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7Ij4NCiAgICAgICAgICAgIDx0Ym9keSBjbGFzcz0ibWNuRm9sbG93QmxvY2tPdXRlciI+\r\nDQogICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICA8dGQgYWxpZ249ImNl\r\nbnRlciIgdmFsaWduPSJ0b3AiIGNsYXNzPSJtY25Gb2xsb3dCbG9ja0lubmVyIiBzdHlsZT0icGFk\r\nZGluZzogMTZweCAxNnB4IDA7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIg\r\nY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuRm9sbG93Q29udGVudENvbnRh\r\naW5lciIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsg\r\nbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBhbGln\r\nbj0iY2VudGVyIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBj\r\nZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuRm9s\r\nbG93Q29udGVudCIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xs\r\nYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4N\r\nCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0i\r\nY2VudGVyIiB2YWxpZ249InRvcCIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5\r\nOyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBj\r\nZWxsc3BhY2luZz0iMCIgc3R5bGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJs\r\nZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJ0b3AiIHN0\r\neWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRl\r\ncj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIj4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0\r\ncj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KDQoNCiAgICAgICAgPCEtLVtpZiBtc29d\r\nPg0KICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJ0b3AiPg0KICAgICAgICA8IVtl\r\nbmRpZl0tLT4NCiAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBh\r\nZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBzdHlsZT0iZGlzcGxheTogaW5saW5lOyBib3JkZXIt\r\nY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3Bh\r\nY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgPHRyPg0KICAg\r\nICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jbkZvbGxvd0NvbnRlbnRJdGVt\r\nQ29udGFpbmVyIiBzdHlsZT0icGFkZGluZy10b3A6IDhweDsgcGFkZGluZy1yaWdodDogNHB4OyBw\r\nYWRkaW5nLWJvdHRvbTogOHB4OyBwYWRkaW5nLWxlZnQ6IDRweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1\r\nbGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgPHRhYmxlIGJvcmRlcj0iMCIg\r\nY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jbkZv\r\nbGxvd0NvbnRlbnRJdGVtIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRh\r\nYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJtaWRkbGUi\r\nIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIwIiBjZWxs\r\ncGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIiIHN0eWxlPSJib3JkZXItY29sbGFw\r\nc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBw\r\ndDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249Im1pZGRsZSIg\r\nd2lkdGg9IjM2IiBjbGFzcz0ibWNuRm9sbG93SWNvbkNvbnRlbnQiIHN0eWxlPSJtc28tbGluZS1o\r\nZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KDQogICAgICAgIDxhIGhyZWY9Imh0dHBzOi8veC5j\r\nb20vUHJvdG9uRFJJVkUiIHRhcmdldD0iX2JsYW5rIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1\r\nbGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IGxpbmUtaGVpZ2h0OiBpbmhlcml0OyI+PGltZyBzcmM9ImNpZDplZmMy\r\nOTRhYWFhMzNjODhkMGZiMUBuZXdzLnByb3Rvbi5tZSIgYWx0PSJYIiBoZWlnaHQ9IjM2IiB3aWR0\r\naD0iMzYiIGNsYXNzPSJzb2NpYWwtaWNvbiIgc3R5bGU9ImRpc3BsYXk6IGJsb2NrOyBib3JkZXI6\r\nIDA7IGhlaWdodDogYXV0bzsgb3V0bGluZTogbm9uZTsgdGV4dC1kZWNvcmF0aW9uOiB1bmRlcmxp\r\nbmU7IC1tcy1pbnRlcnBvbGF0aW9uLW1vZGU6IGJpY3ViaWM7IGZvbnQtZmFtaWx5OiBBcmlhbCwg\r\nSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDEycHg7IGxpbmUtaGVpZ2h0OiAxLjVl\r\nbTsgY29sb3I6ICM3MDZkNmI7IGZvbnQtd2VpZ2h0OiBub3JtYWw7Ij48L2E+DQoNCiAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAg\r\nIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAg\r\nICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICA8L3RyPg0K\r\nICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgPC90YWJsZT4NCiAgICAgICAgPCEtLVtpZiBt\r\nc29dPg0KICAgICAgICA8L3RkPg0KICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICA8IS0t\r\nW2lmIG1zb10+DQogICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249InRvcCI+DQogICAg\r\nICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIw\r\nIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHN0eWxlPSJkaXNwbGF5OiBpbmxpbmU7\r\nIGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRh\r\nYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICA8\r\ndHI+DQogICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuRm9sbG93Q29u\r\ndGVudEl0ZW1Db250YWluZXIiIHN0eWxlPSJwYWRkaW5nLXRvcDogOHB4OyBwYWRkaW5nLXJpZ2h0\r\nOiA0cHg7IHBhZGRpbmctYm90dG9tOiA4cHg7IHBhZGRpbmctbGVmdDogNHB4OyBtc28tbGluZS1o\r\nZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICA8dGFibGUgYm9y\r\nZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFz\r\ncz0ibWNuRm9sbG93Q29udGVudEl0ZW0iIHN0eWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNl\r\nOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRy\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249\r\nIm1pZGRsZSIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9\r\nIjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IiIgc3R5bGU9ImJvcmRl\r\nci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJz\r\ncGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGJv\r\nZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0i\r\nbWlkZGxlIiB3aWR0aD0iMzYiIGNsYXNzPSJtY25Gb2xsb3dJY29uQ29udGVudCIgc3R5bGU9Im1z\r\nby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQoNCiAgICAgICAgPGEgaHJlZj0iaHR0\r\ncHM6Ly9yZWRkaXQuY29tL3IvUHJvdG9uRHJpdmUiIHRhcmdldD0iX2JsYW5rIiBzdHlsZT0ibXNv\r\nLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAt\r\nd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGxpbmUtaGVpZ2h0OiBpbmhlcml0OyI+PGlt\r\nZyBzcmM9ImNpZDozZGIxNzI2OWNjOTcxOWFmNjMxM0BuZXdzLnByb3Rvbi5tZSIgYWx0PSJSZWRk\r\naXQiIGhlaWdodD0iMzYiIHdpZHRoPSIzNiIgY2xhc3M9InNvY2lhbC1pY29uIiBzdHlsZT0iZGlz\r\ncGxheTogYmxvY2s7IGJvcmRlcjogMDsgaGVpZ2h0OiBhdXRvOyBvdXRsaW5lOiBub25lOyB0ZXh0\r\nLWRlY29yYXRpb246IHVuZGVybGluZTsgLW1zLWludGVycG9sYXRpb24tbW9kZTogYmljdWJpYzsg\r\nZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTJw\r\neDsgbGluZS1oZWlnaHQ6IDEuNWVtOyBjb2xvcjogIzcwNmQ2YjsgZm9udC13ZWlnaHQ6IG5vcm1h\r\nbDsiPjwvYT4NCg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+\r\nDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdGJv\r\nZHk+DQogICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgPC90ZD4N\r\nCiAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICA8L3RhYmxl\r\nPg0KICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgIDwvdGQ+DQogICAgICAgIDwhW2VuZGlm\r\nXS0tPg0KDQogICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIi\r\nIHZhbGlnbj0idG9wIj4NCiAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgIDx0YWJsZSBhbGln\r\nbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgc3R5\r\nbGU9ImRpc3BsYXk6IGlubGluZTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxl\r\nLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgIDx0\r\nYm9keT4NCiAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3Ai\r\nIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50SXRlbUNvbnRhaW5lciIgc3R5bGU9InBhZGRpbmctdG9w\r\nOiA4cHg7IHBhZGRpbmctcmlnaHQ6IDRweDsgcGFkZGluZy1ib3R0b206IDhweDsgcGFkZGluZy1s\r\nZWZ0OiA0cHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAg\r\nICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0i\r\nMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50SXRlbSIgc3R5bGU9ImJvcmRl\r\nci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJz\r\ncGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAg\r\nICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGFs\r\naWduPSJjZW50ZXIiIHZhbGlnbj0ibWlkZGxlIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6\r\nIGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRhYmxlIGFs\r\naWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3\r\naWR0aD0iIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFj\r\nZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgYWxp\r\nZ249ImNlbnRlciIgdmFsaWduPSJtaWRkbGUiIHdpZHRoPSIzNiIgY2xhc3M9Im1jbkZvbGxvd0lj\r\nb25Db250ZW50IiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCg0K\r\nICAgICAgICA8YSBocmVmPSJodHRwczovL3d3dy5saW5rZWRpbi5jb20vY29tcGFueS9wcm90b25w\r\ncml2YWN5LyIgdGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhh\r\nY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgbGluZS1oZWlnaHQ6IGluaGVyaXQ7Ij48aW1nIHNyYz0iY2lkOmM2ZTY2OWIxMGQy\r\nMzIzODQ5ZThjQG5ld3MucHJvdG9uLm1lIiBhbHQ9IkxpbmtlZEluIiBoZWlnaHQ9IjM2IiB3aWR0\r\naD0iMzYiIGNsYXNzPSJzb2NpYWwtaWNvbiIgc3R5bGU9ImRpc3BsYXk6IGJsb2NrOyBib3JkZXI6\r\nIDA7IGhlaWdodDogYXV0bzsgb3V0bGluZTogbm9uZTsgdGV4dC1kZWNvcmF0aW9uOiB1bmRlcmxp\r\nbmU7IC1tcy1pbnRlcnBvbGF0aW9uLW1vZGU6IGJpY3ViaWM7IGZvbnQtZmFtaWx5OiBBcmlhbCwg\r\nSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDEycHg7IGxpbmUtaGVpZ2h0OiAxLjVl\r\nbTsgY29sb3I6ICM3MDZkNmI7IGZvbnQtd2VpZ2h0OiBub3JtYWw7Ij48L2E+DQoNCiAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAg\r\nIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAg\r\nICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICA8L3RyPg0K\r\nICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgPC90YWJsZT4NCiAgICAgICAgPCEtLVtpZiBt\r\nc29dPg0KICAgICAgICA8L3RkPg0KICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICA8IS0t\r\nW2lmIG1zb10+DQogICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249InRvcCI+DQogICAg\r\nICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIw\r\nIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHN0eWxlPSJkaXNwbGF5OiBpbmxpbmU7\r\nIGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRh\r\nYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICA8\r\ndHI+DQogICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuRm9sbG93Q29u\r\ndGVudEl0ZW1Db250YWluZXIiIHN0eWxlPSJwYWRkaW5nLXRvcDogOHB4OyBwYWRkaW5nLXJpZ2h0\r\nOiA0cHg7IHBhZGRpbmctYm90dG9tOiA4cHg7IHBhZGRpbmctbGVmdDogNHB4OyBtc28tbGluZS1o\r\nZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICA8dGFibGUgYm9y\r\nZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFz\r\ncz0ibWNuRm9sbG93Q29udGVudEl0ZW0iIHN0eWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNl\r\nOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRy\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249\r\nIm1pZGRsZSIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9\r\nIjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IiIgc3R5bGU9ImJvcmRl\r\nci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJz\r\ncGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGJv\r\nZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0i\r\nbWlkZGxlIiB3aWR0aD0iMzYiIGNsYXNzPSJtY25Gb2xsb3dJY29uQ29udGVudCIgc3R5bGU9Im1z\r\nby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQoNCiAgICAgICAgPGEgaHJlZj0iaHR0\r\ncHM6Ly9mYWNlYm9vay5jb20vUHJvdG9uIiB0YXJnZXQ9Il9ibGFuayIgc3R5bGU9Im1zby1saW5l\r\nLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtp\r\ndC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBsaW5lLWhlaWdodDogaW5oZXJpdDsiPjxpbWcgc3Jj\r\nPSJjaWQ6NjM3N2YwMTQzOTdmZDRhOTRkNmRAbmV3cy5wcm90b24ubWUiIGFsdD0iRmFjZWJvb2si\r\nIGhlaWdodD0iMzYiIHdpZHRoPSIzNiIgY2xhc3M9InNvY2lhbC1pY29uIiBzdHlsZT0iZGlzcGxh\r\neTogYmxvY2s7IGJvcmRlcjogMDsgaGVpZ2h0OiBhdXRvOyBvdXRsaW5lOiBub25lOyB0ZXh0LWRl\r\nY29yYXRpb246IHVuZGVybGluZTsgLW1zLWludGVycG9sYXRpb24tbW9kZTogYmljdWJpYzsgZm9u\r\ndC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTJweDsg\r\nbGluZS1oZWlnaHQ6IDEuNWVtOyBjb2xvcjogIzcwNmQ2YjsgZm9udC13ZWlnaHQ6IG5vcm1hbDsi\r\nPjwvYT4NCg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+\r\nDQogICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgPC90ZD4NCiAg\r\nICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICA8L3RhYmxlPg0K\r\nICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgIDwvdGQ+DQogICAgICAgIDwhW2VuZGlmXS0t\r\nPg0KDQogICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIHZh\r\nbGlnbj0idG9wIj4NCiAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgIDx0YWJsZSBhbGlnbj0i\r\nY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgc3R5bGU9\r\nImRpc3BsYXk6IGlubGluZTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxz\r\ncGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgIDx0Ym9k\r\neT4NCiAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNs\r\nYXNzPSJtY25Gb2xsb3dDb250ZW50SXRlbUNvbnRhaW5lciIgc3R5bGU9InBhZGRpbmctdG9wOiA4\r\ncHg7IHBhZGRpbmctcmlnaHQ6IDRweDsgcGFkZGluZy1ib3R0b206IDhweDsgcGFkZGluZy1sZWZ0\r\nOiA0cHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAg\r\nICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIg\r\nd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50SXRlbSIgc3R5bGU9ImJvcmRlci1j\r\nb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFj\r\nZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGFsaWdu\r\nPSJjZW50ZXIiIHZhbGlnbj0ibWlkZGxlIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4\r\nYWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRhYmxlIGFsaWdu\r\nPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0\r\naD0iIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTog\r\nMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAt\r\nd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgYWxpZ249\r\nImNlbnRlciIgdmFsaWduPSJtaWRkbGUiIHdpZHRoPSIzNiIgY2xhc3M9Im1jbkZvbGxvd0ljb25D\r\nb250ZW50IiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCg0KICAg\r\nICAgICA8YSBocmVmPSJodHRwczovL2luc3RhZ3JhbS5jb20vcHJvdG9ucHJpdmFjeSIgdGFyZ2V0\r\nPSJfYmxhbmsiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgbGluZS1o\r\nZWlnaHQ6IGluaGVyaXQ7Ij48aW1nIHNyYz0iY2lkOjRlZGQwMzkxNTRiMDMzNDIwNjZhQG5ld3Mu\r\ncHJvdG9uLm1lIiBhbHQ9Ikluc3RhZ3JhbSIgaGVpZ2h0PSIzNiIgd2lkdGg9IjM2IiBjbGFzcz0i\r\nc29jaWFsLWljb24iIHN0eWxlPSJkaXNwbGF5OiBibG9jazsgYm9yZGVyOiAwOyBoZWlnaHQ6IGF1\r\ndG87IG91dGxpbmU6IG5vbmU7IHRleHQtZGVjb3JhdGlvbjogdW5kZXJsaW5lOyAtbXMtaW50ZXJw\r\nb2xhdGlvbi1tb2RlOiBiaWN1YmljOyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fu\r\ncy1zZXJpZjsgZm9udC1zaXplOiAxMnB4OyBsaW5lLWhlaWdodDogMS41ZW07IGNvbG9yOiAjNzA2\r\nZDZiOyBmb250LXdlaWdodDogbm9ybWFsOyI+PC9hPg0KDQogICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgPC90YWJsZT4N\r\nCiAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgIDwv\r\ndGJvZHk+DQogICAgICAgIDwvdGFibGU+DQogICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAg\r\nPC90ZD4NCiAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgPCEtLVtpZiBtc29dPg0KICAg\r\nICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJ0b3AiPg0KICAgICAgICA8IVtlbmRpZl0t\r\nLT4NCiAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9\r\nIjAiIGNlbGxzcGFjaW5nPSIwIiBzdHlsZT0iZGlzcGxheTogaW5saW5lOyBib3JkZXItY29sbGFw\r\nc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBw\r\ndDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsiPg0KICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgPHRyPg0KICAgICAgICAg\r\nICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jbkZvbGxvd0NvbnRlbnRJdGVtQ29udGFp\r\nbmVyIiBzdHlsZT0icGFkZGluZy10b3A6IDhweDsgcGFkZGluZy1yaWdodDogNHB4OyBwYWRkaW5n\r\nLWJvdHRvbTogOHB4OyBwYWRkaW5nLWxlZnQ6IDRweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4\r\nYWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBh\r\nZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jbkZvbGxvd0Nv\r\nbnRlbnRJdGVtIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxz\r\ncGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJtaWRkbGUiIHN0eWxl\r\nPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIwIiBjZWxscGFkZGlu\r\nZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIiIHN0eWxlPSJib3JkZXItY29sbGFwc2U6IGNv\r\nbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1z\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsi\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249Im1pZGRsZSIgd2lkdGg9\r\nIjM2IiBjbGFzcz0ibWNuRm9sbG93SWNvbkNvbnRlbnQiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQt\r\ncnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsiPg0KDQogICAgICAgIDxhIGhyZWY9Imh0dHBzOi8vcHJvdG9uLm1l\r\nL2Jsb2ciIHRhcmdldD0iX2JsYW5rIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0\r\nbHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IGxpbmUtaGVpZ2h0OiBpbmhlcml0OyI+PGltZyBzcmM9ImNpZDo3M2M1NzhhNjcwZTFm\r\nM2Y0YTZmYUBuZXdzLnByb3Rvbi5tZSIgYWx0PSJCbG9nIiBoZWlnaHQ9IjM2IiB3aWR0aD0iMzYi\r\nIGNsYXNzPSJzb2NpYWwtaWNvbiIgc3R5bGU9ImRpc3BsYXk6IGJsb2NrOyBib3JkZXI6IDA7IGhl\r\naWdodDogYXV0bzsgb3V0bGluZTogbm9uZTsgdGV4dC1kZWNvcmF0aW9uOiB1bmRlcmxpbmU7IC1t\r\ncy1pbnRlcnBvbGF0aW9uLW1vZGU6IGJpY3ViaWM7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0\r\naWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDEycHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgY29s\r\nb3I6ICM3MDZkNmI7IGZvbnQtd2VpZ2h0OiBub3JtYWw7Ij48L2E+DQoNCiAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwv\r\ndGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+\r\nDQogICAgICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgICAgICA8\r\nL3RhYmxlPg0KICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICA8L3RyPg0KICAgICAg\r\nICAgICAgPC90Ym9keT4NCiAgICAgICAgPC90YWJsZT4NCiAgICAgICAgPCEtLVtpZiBtc29dPg0K\r\nICAgICAgICA8L3RkPg0KICAgICAgICA8IVtlbmRpZl0tLT4NCg0KDQogICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\nIS0tW2lmIG1zb10+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90YWJs\r\nZT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\nL3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3RhYmxl\r\nPg0KICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgIDwvdHI+DQogICAg\r\nICAgICAgICA8L3Rib2R5Pg0KICAgICAgICA8L3RhYmxlPg0KDQo8dGFibGUgYm9yZGVyPSIwIiBj\r\nZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4\r\ndEJsb2NrIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNl\r\nOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAg\r\nIDx0Ym9keSBjbGFzcz0ibWNuVGV4dEJsb2NrT3V0ZXIiPg0KICAgIDx0cj4NCiAgICAgICAgPHRk\r\nIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dEJsb2NrSW5uZXIiIHN0eWxlPSJtc28tbGluZS1o\r\nZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAg\r\nICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAi\r\nIGNlbGxwYWRkaW5nPSIwIiB3aWR0aD0iMTAwJSIgc3R5bGU9IndpZHRoOjEwMCU7Ij4NCiAgICAg\r\nICAgICAgICAgICA8dHI+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAg\r\nPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiB3aWR0aD0iNjAwIiBz\r\ndHlsZT0id2lkdGg6NjAwcHg7Ij4NCiAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAg\r\nICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxz\r\ncGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRDb250ZW50Q29udGFpbmVyIiBz\r\ndHlsZT0ibWF4LXdpZHRoOiAxMDAlOyBtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTog\r\nY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAt\r\nbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyI+DQogICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgIDx0cj4NCiAgICAg\r\nICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dENvbnRlbnQiIHN0\r\neWxlPSJwYWRkaW5nLXRvcDogMTZweDsgcGFkZGluZy1yaWdodDogMzJweDsgcGFkZGluZy1ib3R0\r\nb206IDA7IHBhZGRpbmctbGVmdDogMzJweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7\r\nIC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7IHdvcmQtYnJlYWs6IGJyZWFrLXdvcmQ7IGNvbG9yOiAjNzA2ZDZiOyBmb250LWZhbWlseTog\r\nQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNHB4OyBsaW5lLWhlaWdo\r\ndDogMS41ZW07IHRleHQtYWxpZ246IGNlbnRlcjsiPg0KICAgICAgICAgICAgICAgICAgICAgICAg\r\nPGEgZGF0YS11bnN1YnNjcmliZS1saW5rPSJwcm90b24ubWUiIHJlbD0ibm9vcGVuZXIgbm9yZWZl\r\ncnJlciIgaHJlZj0iaHR0cHM6Ly9hY2NvdW50LnByb3Rvbi5tZS9kcml2ZS9kYXNoYm9hcmQjZW1h\r\naWwtc3Vic2NyaXB0aW9uIiB0YXJnZXQ9Il9ibGFuayIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1y\r\ndWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyBsaW5lLWhlaWdodDogaW5oZXJpdDsgY29sb3I6ICM3MDZkNmI7IGZv\r\nbnQtd2VpZ2h0OiBub3JtYWw7IHRleHQtZGVjb3JhdGlvbjogdW5kZXJsaW5lOyI+VXBkYXRlIHlv\r\ndXIgZW1haWwgcHJlZmVyZW5jZXMgb3IgdW5zdWJzY3JpYmU8L2E+DQogICAgICAgICAgICAgICAg\r\nICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICA8L3Rib2R5\r\nPg0KICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAg\r\nICAgICAgIDwvdGQ+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgPCEt\r\nLVtpZiBtc29dPg0KICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgIDwvdGFibGU+DQogICAg\r\nICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgPC90ZD4NCiAgICA8L3RyPg0KICAgIDwvdGJv\r\nZHk+DQo8L3RhYmxlPg0KPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFj\r\naW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRCbG9jayIgc3R5bGU9Im1pbi13aWR0\r\naDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0\r\nOyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Vi\r\na2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICA8dGJvZHkgY2xhc3M9Im1jblRleHRC\r\nbG9ja091dGVyIj4NCiAgICA8dHI+DQogICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1j\r\nblRleHRCbG9ja0lubmVyIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1t\r\ncy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIj4NCiAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0i\r\nY2VudGVyIiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIwIiBjZWxscGFkZGluZz0iMCIgd2lkdGg9\r\nIjEwMCUiIHN0eWxlPSJ3aWR0aDoxMDAlOyI+DQogICAgICAgICAgICAgICAgPHRyPg0KICAgICAg\r\nICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAg\r\nICAgIDx0ZCB2YWxpZ249InRvcCIgd2lkdGg9IjYwMCIgc3R5bGU9IndpZHRoOjYwMHB4OyI+DQog\r\nICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVy\r\nIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUi\r\nIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIgc3R5bGU9Im1heC13aWR0aDogMTAwJTsg\r\nbWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNw\r\nYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgIDx0\r\nYm9keT4NCiAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgIDx0ZCB2YWxp\r\nZ249InRvcCIgY2xhc3M9Im1jblRleHRDb250ZW50IiBzdHlsZT0icGFkZGluZy10b3A6IDE2cHg7\r\nIHBhZGRpbmctcmlnaHQ6IDMycHg7IHBhZGRpbmctYm90dG9tOiAwOyBwYWRkaW5nLWxlZnQ6IDMy\r\ncHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyB3b3JkLWJyZWFrOiBicmVhay13\r\nb3JkOyBjb2xvcjogIzcwNmQ2YjsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMt\r\nc2VyaWY7IGZvbnQtc2l6ZTogMTRweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBj\r\nZW50ZXI7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIHN0eWxlPSJtYXJnaW46IDEycHgg\r\nMDsgcGFkZGluZzogMDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij7CqSBQcm90\r\nb24gQUcgU3dpdHplcmxhbmQ8YnI+Um91dGUgZGUgbGEgR2FsYWlzZSZuYnNwOzMyLCAxMjI4Jm5i\r\nc3A7UGxhbi1sZXMtT3VhdGVzLCBHZW5ldmEsJm5ic3A7U3dpdHplcmxhbmQ8L3A+DQogICAgICAg\r\nICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAg\r\nICA8L3Rib2R5Pg0KICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgIDwhLS1baWYgbXNv\r\nXT4NCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAg\r\nICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgIDwvdGFi\r\nbGU+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgPC90ZD4NCiAgICA8L3RyPg0K\r\nICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0KPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAi\r\nIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jbkltYWdlQmxvY2siIHN0eWxl\r\nPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10\r\nYWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsgbWluLXdpZHRoOiAxMDAlOyI+DQogICAgPHRib2R5IGNsYXNz\r\nPSJtY25JbWFnZUJsb2NrT3V0ZXIiPg0KICAgIDx0cj4NCiAgICAgICAgPHRkIHZhbGlnbj0idG9w\r\nIiBjbGFzcz0ibWNuSW1hZ2VCbG9ja0lubmVyIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6\r\nIGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IHBhZGRpbmc6IDE2cHg7Ij4NCiAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0i\r\nY2VudGVyIiB3aWR0aD0iMTAwJSIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNp\r\nbmc9IjAiIGNsYXNzPSJtY25JbWFnZUNvbnRlbnRDb250YWluZXIiIHN0eWxlPSJib3JkZXItY29s\r\nbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6\r\nIDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgbWluLXdpZHRoOiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPHRib2R5Pg0KICAg\r\nICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJtY25JbWFn\r\nZUNvbnRlbnQiIHZhbGlnbj0idG9wIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0\r\nbHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IHBhZGRpbmctcmlnaHQ6IDE2cHg7IHBhZGRpbmctbGVmdDogMTZweDsgcGFkZGluZy10\r\nb3A6IDA7IHBhZGRpbmctYm90dG9tOiAwOyB0ZXh0LWFsaWduOiBjZW50ZXI7Ij4NCiAgICAgICAg\r\nICAgICAgICAgICAgICAgIDxpbWcgYWxpZ249ImNlbnRlciIgYWx0PSIiIHNyYz0iY2lkOjRhNjVi\r\nNDZlNWVlN2JjODRjM2VlQG5ld3MucHJvdG9uLm1lIiB3aWR0aD0iMjc2IiBjbGFzcz0ibWNuUmV0\r\naW5hSW1hZ2UiIHN0eWxlPSJib3JkZXI6IDA7IGhlaWdodDogYXV0bzsgb3V0bGluZTogbm9uZTsg\r\ndGV4dC1kZWNvcmF0aW9uOiBub25lOyAtbXMtaW50ZXJwb2xhdGlvbi1tb2RlOiBiaWN1YmljOyBt\r\nYXgtd2lkdGg6IDU1MnB4OyBwYWRkaW5nLWJvdHRvbTogMDsgdmVydGljYWwtYWxpZ246IGJvdHRv\r\nbTsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTog\r\nMTJweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyBkaXNwbGF5OiBpbmxpbmU7Ij4NCiAgICAgICAgICAg\r\nICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgIDwv\r\ndGJvZHk+DQogICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICA8L3RkPg0KICAgIDwvdHI+DQog\r\nICAgPC90Ym9keT4NCjwvdGFibGU+DQogICAgPC90ZD4NCjwvdHI+DQogICAgICAgICAgICAgICAg\r\nICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgICAgICAgICAgPCEtLVtpZiAoZ3RlIG1z\r\nbyA5KXwoSUUpXT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAg\r\nICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAg\r\nICAgICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgICAgICAgICAgICAg\r\nPCEtLSAvLyBFTkQgVEVNUExBVEUgLS0+DQogICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAg\r\nICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgIDwvY2VudGVy\r\nPg0KICAgIDwvYm9keT4NCjwvaHRtbD4NCg==\r\n\r\n--b2=_zgIUoiIEbQehQTptnpQU4H2FR6ohJiV3WwATjASFyU\r\nContent-Type: image/png; name=logos-footer.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <4a65b46e5ee7bc84c3ee@news.proton.me>\r\nContent-Disposition: inline; filename=logos-footer.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAigAAABwCAMAAAADkXsEAAAABGdBTUEAALGPC/xhBQAAAAFzUkdC\r\nAK7OHOkAAAAJcEhZcwAAFiUAABYlAUlSJPAAAALfUExURUdwTIpy/YZp/rfc/KOc6Ydn+76K3WxJ\r\n/97I0ZBp//CJWbx+0b6l+o1v/ubH3y7ZzdVqlo5p/fO7m29P/sXM8qiO/vi7tL7O++l3e5Z3/4tp\r\n/8mz9eSr2LXu9bae/3df/pV3//jZ0L2q/te/+XaA/bXo9+GpufnSzjKj8NrC/+SGjNLE/9Roo6Rp\r\n5KGK/cRiqNxujzq619ep3Itk/Cyo8PnBycWIy2vZ4fJgxltp+O9/e0ed4rbt9cWHyuRyhDHO0DjA\r\n1CrgyrVau+tfyJt4/8GI/3BN/21K/3BN/3hN+rCS/3VS/55+/3JL/H9O+JZ1/5p5/7KZ/ref/oVR\r\n9UZ0/4tP8pFx/+C3/1Jm/6uM/7yl/6KC/4lp/6dT5qaH/0xt/1hg/z97/7ZW4HpZ/4Nl/39g/9ix\r\n/11a/8G//59S6bbs9TiC/65U4zKJ/7zj+GhQ/4JM7Ytw/5JQ7x2f/5lS2L1X3JhR7MCr/9Kr/7jX\r\n/762/4pO5mNV/8ym/5JP345Z8fK9zcVY2SuQ/3tL9O66z+a00/+7k7H28r/e/WFl9iWX/8Wg/+q3\r\n0biU/5df681Z1l1s87d612Re+L+a/8au8cKDzsbR/RWo/7yn9qWT/rdcuceJycnJ/5eA/86QxLF0\r\n3OGw1rFZwNZb0s27/6tu4L5fspF6//a/y8LY+/B8ctSXvtqr2ta76M617eevqMKa5p9T0tKm3qCM\r\n/qVp471+06xXxZ5k5/jb0t9cztHB/8Ww/02R5lGJ6eGnrrat/2dX+7/U/0mZ40Wj4Mqg4sViqqRV\r\nzVSB7Fd67sm2/6OC9Vp08ECu3L/K/6uJ8uh1f97B5PHU2NbH//GEY8tlopuH/+TH4LqU6qmc/zu6\r\n2O24oIhf/+rN3NFom9icubKP79lsktyhtK+k/+peyeFxiN7S//rCyadWyjXI0/GNVN1vjJDG+fHN\r\nynqu9abL//20h/ife5bk7NVyobFiylqj/52w+HnLP+kAAABGdFJOUwBnRH8QICD+IP+AMd6f3v7+\r\n397dON6AWYTPvpdj3n+Fi9e/yv2m05d63k1/hd+7pNlD3PW/65P32brk5MfX58+IiN6/v4D1Cm7r\r\n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\r\n\r\n--b2=_zgIUoiIEbQehQTptnpQU4H2FR6ohJiV3WwATjASFyU\r\nContent-Type: image/png; name=link.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <73c578a670e1f3f4a6fa@news.proton.me>\r\nContent-Disposition: inline; filename=link.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAEgAAABICAMAAABiM0N1AAAATlBMVEVHcEwAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAD///8wMDAgICC/v7/v7+9wcHBvb2+fn5+QkJCvr6/f398QEBBfX1/P\r\nz89AQEASqJaGAAAACnRSTlMAp2dIhu/H3yAQ2b5STgAAActJREFUeF7tl9uupCAQRRsU0A14t8+Z\r\n///RiZOdTEjTFLbxrde7K3UzVTzu5suXvtHKOgBwVunmY4s1SDBKf6BpDTI41V3XkPaEqjEo4HR1\r\nOBBo+xpPZyHiugqPA66b6Lluoue6qXeoxpYq3uIE7XuPximajwr0Z17WOaZl6s8nFgf/jyFWJNfh\r\nLWH0ZAz4j8mHpMqefdn2wxTFkFzRMwHAdGQnhaSLnh8ANAWhcarsISNjIzYjMjUeLN4v5dwa5Bno\r\nIZv3a24o5RJNfjw8kaI9TQ26vvnhCTwHNmv23iczqV5ENufYZhw8f/n9D9tfqrbL1zmAnoEeDiSB\r\nexHlPT7S8/ukJyBFFLHvgkcQCR5BJHhi3gOh2JEeDPQg5D1OaP9AT6QHwLRlPLCFgeT3E43DMZAB\r\nb1DlX2TyfqeTczghjy7/tKv3GwjnuXqT9CYVLSD5vhPzeMWmqY2ihyUq5hZYbMHDEpVyG2jCXPQ4\r\nYT9yIPdtGempzYwhFVZink5Y2emSFu4RKSQgzus6h49urQan0HceWqS3qMb1dx2jsun6oX3/6W+7\r\n2x81KboYlGke1XTtew3DqVYpd11DtDJIMLah5jTJc52WG/ny5S+JMmZHOoCC0wAAAABJRU5ErkJg\r\ngg==\r\n\r\n--b2=_zgIUoiIEbQehQTptnpQU4H2FR6ohJiV3WwATjASFyU\r\nContent-Type: image/png; name=instagram.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <4edd039154b03342066a@news.proton.me>\r\nContent-Disposition: inline; filename=instagram.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAEgAAABICAMAAABiM0N1AAAATlBMVEVHcEwAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICBvb2/Dw8MQEBCAgID////f39/v7++ZmZl/f39WVlZA\r\nQECvr69iXVEOAAAADHRSTlMAx4Cv75hY3xAgQG+ClCpeAAACR0lEQVR4Xu2XWW+DMBCEYy5z+OI8\r\n/v8fLZDCOLYxblDzlHmoUIU+Zpcxu3n8t776Ki+rlFC2iJK4Kt+lZCRhL0ri7A1MBIommhY3MVD0\r\nB1QGjEM0C7WTsguleQinIOxStAjgUMbukcC5SwLnPik3OVyTQSK+jqdAqGFuG0OtFBou9eQHmL45\r\nUQ9Udt0gfpjp2rbb/sLWQaJnxUUvHCkmoy18EiuvVTspOjHEdq11CeZUvVa3g5Lc32m+cGoXRXHG\r\nxEK6sHR0SCz2XRyxmZF4Ciy5X5k0C8P/G77iZu+Liw/Q0tEJ5YheynnkvyDFuO6XOED4Bq0PPmLZ\r\nNU8NC0K24tlB5qmtRAm4k8vGzo8OYvZEqBAXgLbY1ONYb8FSmuFdladFAA3IQY3LDiDXgSM6qNPz\r\ndJA6tdsEiJynCK9lfF6gTGGDqAVitqP5aQiWers05gc1ewBHgBZ/Es2+AZreB/V6aTgaRmkBzRZm\r\ns8eQZhMbpJZnD4whUzzk9acvpSGFAzi9I5Bx0BFRciG1YhoHfGLNIxJ4aLWJJAMPbW5+RlDdqq5W\r\nMAxQ8rBF3B82Ps5S9kLpeWrRIu90nN0zBHmS3hmJ2mrc6lCrPYb656M6G2vIE8a/11KP/JgSyNOi\r\n4nFhaYuNa2RL/8iGJTs/+xLROZaI4nqt4edrDYKQBS1aXMjOXrRq5Vu0oJx4Vj8wjO3o7jL6gfUY\r\npI+t/qT4yI8aKPOaSrJHsIroHBPBThAqpTcxUBYnBoVkwPxNZRXvP9fTqgTln/TVVz8454FFTHEw\r\nHwAAAABJRU5ErkJggg==\r\n\r\n--b2=_zgIUoiIEbQehQTptnpQU4H2FR6ohJiV3WwATjASFyU\r\nContent-Type: image/png; name=facebook.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <6377f014397fd4a94d6d@news.proton.me>\r\nContent-Disposition: inline; filename=facebook.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAEgAAABICAMAAABiM0N1AAAAUVBMVEVHcEwAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD09PS/v7////////////8AAAD///+hoaFBQUHf3994eHgq\r\nKirCwsKQkJAdsKUoAAAAEnRSTlMAgM+Q71i33yAQoEBw9kBvv69zN9pmAAABkElEQVR4Xu3XaW6D\r\nMBCGYTDjFegyZs39D9pGqaKkDHzjSO0v3gM8AmPDUP11Z2ex7ZLx/J13rmtfVawjfoqcfYGpiYV8\r\nCsXMXnUBZYkP8lbJxIZBTdQ4wTDMB4XjAQIk7GAJO+VS9KzOxAOo4YKafcey3DgPU59zntZhfpBs\r\n4QKNa37oAfJxB6pF55LzDsS17ATRGfI+RFGEkuTMWYDAJXnBWfIhRFH7yGYJAg/OSdD6hPTTb8gJ\r\nEB3fWT8vNwDdW8tCY763sFi7gbrjJRpYrgNLtIFGlksA2uxq3smodhEPEPIbiCEk93/QeG29Q+NP\r\nSzGU5WYIeR00wsU2OogZHbakgnoMdSpoxUekVUEXfGgjCRBca8IvtulafxemWwvjF5vV7Wz8qo1U\r\nDnnwfVRDSYQiFUMBfLK1UF3JRQKQetayZZAFg5YWaqr9otFDPoJhFED6sRZB+kEbQfrRH0Mm6H5q\r\nENTESpf1RxDZSl2odyGqY1VSSF6AJAZnHT1D5KzM4N7ePz/6q9Ob1LWFSnlnZ18eZ66AZcdauAAA\r\nAABJRU5ErkJggg==\r\n\r\n--b2=_zgIUoiIEbQehQTptnpQU4H2FR6ohJiV3WwATjASFyU\r\nContent-Type: image/png; name=linkedin.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <c6e669b10d2323849e8c@news.proton.me>\r\nContent-Disposition: inline; filename=linkedin.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAEgAAABICAMAAABiM0N1AAAASFBMVEVHcEwPDw8LCxMLCxILCxMM\r\nDBMLCxMMDBQLCxMKChILCxMLCxMHBw8MDBNLS1LExMb////m5udxcXYqKjEbGyKVlZiFhYmkpKe5\r\nrNSLAAAADnRSTlMAEEBvoM/f/7dY74AgkGuDr4QAAAGBSURBVHgB7ddVorQ4EIbhaH0RHA69/5Ue\r\nF5jCUvNz188CXiIthXp6ups21nnCOwrBGmklhoSVFKIgkxM2kKukGSYXpGLCAYpXl1PjRK3VBZXH\r\nKaoudAgQlE46whLryEuacJnXB6EaBWq1K+JX03b9gGPxwgEN3YeTEmm1LeNX233ocSzvLAh/ui8j\r\nDqXtJTn86b9Ck2hJBPznjF4AwZIiluaPzgQILi5gZWomnAuKSxDY2JvBmWaY52bEmmEhi6VH9+Hx\r\ndVjvZjTfF/lYp+zJEbHQ3P3oVyVXGGq7Py0WPAvRbohp8IdYCNdDL1goDs0TxpntrTw0sx8FYWhc\r\nfAU7LJQc9t8iGhYiFvLH178XCizk/lXIykKWhYwsZFhIJ0koKS5IQkFxURKKitOpPERqSy4PObVF\r\np+JQpTbl0lBWDFvS/5u1IorE+wctpT0uI33rMCoYj28c2AUlX937UsNEwoEU1WVV3s9krUpUjqQZ\r\nZuvlWCsZY0MgvCPvrNHq6elmb7joWa5HMxiBAAAAAElFTkSuQmCC\r\n\r\n--b2=_zgIUoiIEbQehQTptnpQU4H2FR6ohJiV3WwATjASFyU\r\nContent-Type: image/png; name=reddit.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <3db17269cc9719af6313@news.proton.me>\r\nContent-Disposition: inline; filename=reddit.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAEgAAABICAMAAABiM0N1AAAAUVBMVEVHcEwAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAkJCTv7++/v7+goKD///9AQEBfX19vb2/f39+QkJAQEBCAgICv\r\nr6/Pz89QUFA4ZTJWAAAAC3RSTlMAx0iA72eY3xAgr42ZgksAAAIwSURBVHhe7ZfJrqMwEEWbwUzl\r\neWDI/39o0zxerizaBqJkl7ONclR1yyWbP5/my5euZE3R0kpbDKx82VLUFFEP7AVNBQugtulva1JU\r\nN1RlTRladrWchk5ouiuevqBT2v6CpyXwsgme103wvMPU5Tx8Flqap6nIJd7kPF7/44HZpT2MMii9\r\nIaAuXwnIOKF/4Igp1VyVbkvqJwb2KlFQLh7p/KEiqrubSXs9ETm9oYjOSkomZH/+HfSKREEo6erI\r\n5N6OmSYElB7ckO5MUIriP6IaAjAaF5QQKjjUctJbSUeMFBrMlo6UmYjGyWstLbndArwlu7oXh8RZ\r\nIiLslPYQgN3teXrhit96IMjgR6SdOEVWX2LaRe1BRDvLNdFCO0lRRhCFf0M0j/QQ0AhDPNwQyWee\r\ntDJB5PBrujWEjb/abYYQ8WgUFmGfjd9sXh/3wlFuavwNDiQqIEJII0Q4kDTkVmTeRIFWHmjtgcbl\r\niBXJLe0+m2C4ExAJy/keYMgtbVcTXT3cFo84CA5pR6NaZqWmlaCkjAaIiDK94bQIAshdURRRpjce\r\nnUI0fLwiz+5H9yyJ41Rg8aPrP1sSKcyKNrB1ikB/fmVjPf1k7YSk1dn9iJKwc0eEy7+1MDjAVew4\r\n3rPs7KEFlYiqCYYAkgagKyjGBLmsNuHnYEaKaLtPP0Zhev9D+/NP/6L/+EdNDMsWVd/4Ju2rtKZC\r\nOZdUTZvS3IYNNcWWooTmHiUbfj/XGwbLp/jy5S/IVHtYBl21iwAAAABJRU5ErkJggg==\r\n\r\n--b2=_zgIUoiIEbQehQTptnpQU4H2FR6ohJiV3WwATjASFyU\r\nContent-Type: image/png; name=x.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <efc294aaaa33c88d0fb1@news.proton.me>\r\nContent-Disposition: inline; filename=x.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAEgAAABICAMAAABiM0N1AAAAUVBMVEVHcEwAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6Ojrf398QEBCQkJDPz8+pqalaWlqAgIDv7+////+/\r\nv78gICBwcHBRpsbFAAAADXRSTlMAgG+Q71jH3yAQQK+gGJ2inAAAAgpJREFUeF7tl9nSqjAQhAVJ\r\nwjZhd/nf/0GPMYHh2OJgqrjzu9OLr5Jm0oTT0fz4UZRprQ09MLpKy1iL0hn9R1apCE3iLICp80gN\r\nknyhUisNYtTecM4kcC72eHJNIibf4TFEMSbZI5tkT7ypYI+I/pT4mb7gvO1R9BVKCsherjMjrWkb\r\n95+lgNnaXEKBv0V0udOKwXn+WJxsLIgWOudomsfKmpY9k/NMxGTv865Z1PZPxf1h6tYe/1NakiHG\r\nKQaicbWV0XluxOCS8JEtim6JyTpP0+54cBWt8Ao775Ho3jjPHabyhLx2EMc0eI9fm7i3khiIqe39\r\nACEliFJ6xXJMtzBASCpEtMyNfe5xHiCkBpEm5ObydTHBAEHaMEVwtm5+jz29x4CIEK/o5lF4jyji\r\n42v9HtsYETO48ZlHIV4U8llGAaFdYYeJvnbzKCBGevxcJ45xMya93UZQib2P6TkKQCUeEa5E3wAb\r\nMaXSoeVKDC3HMQmHtsiI4UrsueXexZSBB9O2l1Bl3HIYUyVULVQixzRB1X7aG1Sij8mfmJcpQhIY\r\noBFazhcLtNF23ANU2XQNrGPKhVd2GCBoucCE70dMiT0dttyM5bvWodea+IsWUmjajSmOvozKpviL\r\n9vFXf50f+lGDqI9BZeq0mzzZ1iTF6Rvy2kRqEFVlLxatnCaGMq3mz/U6LdlyED9+/AObJYwD2Cnw\r\nHQAAAABJRU5ErkJggg==\r\n\r\n--b2=_zgIUoiIEbQehQTptnpQU4H2FR6ohJiV3WwATjASFyU\r\nContent-Type: image/png; name=drive-sharing-steps.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <3f528554bf6a6c811eb5@news.proton.me>\r\nContent-Disposition: inline; filename=drive-sharing-steps.png\r\n\r\n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\r\nZ2hD0u6VzwyF+YxC+MlXvlr3i3I1/R3vfs/Xf93zJVapxz7Ov1h/jt9niQGcpb0nn3A+7+teoF02\r\nL8PXv+6NL30x223+vqC46/s3Kn/qNfz7lneq+HOef4f/qoOiaVvoW7o3/u1ve+k7XE1b7DP/2jdn\r\nrihFZpZANkEzMj7v8/jtHmVp3sc/sdoGl8899cv4JzSzTf7a7fzUU/pX9F8BfNqXPiF30hT5fFak\r\nNvIpq+4v//ozvil3jbnNvRKmr7mk6a29DVGyHBsC/Vg3uf18bozaUMOxtfDX5B8LfeCNiuey9Bb+\r\nzvwqjZ5EHVVlZjKmpvhlxh3k5lIPD+PTl/rfI9XFfPITb3n5T7zqttveKlvzvvjv3vqZD715q51M\r\njU3lrHE0QuK0MXphRDHGFcaIGb3ObQiqtslt1Vq6eMi8/ucgote/f060VrsK1rJbyhiZ2mcqtyw2\r\nM2aiGASBk8od8uBGIx+j2RTcikO10gtMAzB69JJDTuXkpivIJDpUNS1GUKzHBZGFTvEBoUXP1qGH\r\nLAVyIxhbiXxWWbbG7FKt6aJitHkoxF6VjUnXMT/n85VVfe+iCrCPeCeU7w3Vn8RWwCtiUngSeDqQ\r\neG7vbGw/UCCft/rQg52JibIBOoutzZb64t2cv23PBi8yu50s/hVS0nHdo5cVUzQNiKurYKUbuIsV\r\ntXPuf/+g/odLPgDwB7ILCm/43V/hSfJlkqv1+vnwNffz5Gfbls4hrbdfZ91avexH+bcrZWtv03b4\r\n2Jv+6lf819/0vd/zMr2naxd83t94JlnOratraEt73nNf8JQnP+t5z3n+Iz/r5vyVvh/+Mf4LuiCf\r\nKwr8dT215SJ/5zue+zmf+xnaMj/ns25+7E1f/sjPetJTnnyL3Mc94dHf8E38zQTN8NH9nyNqg/yv\r\nPummR3zmzW+57W35Kxaa5UtufhY3lJf5Pcmv9N8IfNkPveKRn3mzSv1l/2Mx+Stu9dfztUz3fBjd\r\nC78yk83gIQ99UNqbkO6Vf+THX6i3b22TD//0m//in//yh3/Gk573tfyi41c+62lP/bL+OxXe3fM5\r\n6t/61u/9+I99xKf8uZs0SX6lVrkql0lzjyvkbzUEdUn78uqcYzSvz31wP1nveHvxb35T3VppvM13\r\nn9p6KRVdV3vus1/w2Z92s/9xGf4dGS3nO7+b+0JB4gf63++W/eQvvOWzH/akz3rYzczrssDV0ry4\r\n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\r\n\r\n--b2=_zgIUoiIEbQehQTptnpQU4H2FR6ohJiV3WwATjASFyU\r\nContent-Type: image/png; name=logo-proton.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <b7608f18680f5afd7177@news.proton.me>\r\nContent-Disposition: inline; filename=logo-proton.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAXwAAAB4CAMAAADG37laAAAABGdBTUEAALGPC/xhBQAAAAFzUkdC\r\nAK7OHOkAAAAJcEhZcwAAFiUAABYlAUlSJPAAAAJhUExURUdwTGBQ32hQ32NR4WRQ32NR4WJQ32BQ\r\n32NR4mNS4mNR4WJQ32JR4WFQ32BQ32BQ32NS4mBQ32JQ32VQ32RQ32JR4XBQ32NQ4GNQ42JS42JR\r\n4WNQ32FQ32NR4WBQ32NQ32NQ5GNQ32NR4WJQ4WRR4WNT42NT5GJS4mNR4WBQ32JQ4GRQ32VQ32RS\r\n4mJQ32NR4WRR5WBQ32NQ32NS4m5M/WJQ32NQ4GNR4mNQ4GJR4WRQ32JS4mNR4mFQ32JQ32NR4WNS\r\n4GNQ32NR4UossUYqq2xK+2pI9WhG71Y2y0Qop25K/WZE62JC5WBA31Q2x1IywU4wu0wutWxK+Vw+\r\n21w81Vg6z0ImoVdDyjgYhzIZgjsgkT4jnD0jkzshl086ujAYgDcdjTUah2NR4W1L/WxK+2dG8U4w\r\nvF093Fg50VAywVY3zGRE62JB5l8/4WpI9ksut2JC5kkssmlI9mVE7Fo71kQop0Elojwhl0YprFM1\r\nx1U3zFs711092z8jnWxK/WA/4Uwut1M0x1M0xmBA4UYqrEQnp0kssT8jnDoeklQ1x21K/WpJ9m1L\r\n+2VE60cqrVo710ImojcdjTofklo61mdF8W5M/lQ7x1EzwVk60mBF4V9L2mNC5mBI318/4GJE5VU6\r\nyVpF0VEzwmFN3lAywk0wvEsutmVF6mhG8Vk50lM9xWBM22FM31M1xkgrsUwxuFpA1D8lnEQoqD4k\r\nnFU2zFI7wkcqrFs811tI0lI8wVg40VE6v0EloVk801s71k43uGBN3DUaiDcejVxK1FdDyjQahzkg\r\nkjcdjDYciEUtpkw2tVM+wiSBEHAAAABidFJOUwAQIP5A32Agv5/vgN+gQEGvYHAwgO8Qv29/z1CQ\r\nkDCQX6Cg389vX4/eUM9wYI+w7k8hAZ6AYa8Bvs5Bn74BcQGvn/2AgICAgICAgICAgICAgICAgICA\r\ngJAg31+wUN/vIN/fHPTuiQAACW1JREFUeNrtnYd/3LYVx8kzeRxHX6lbOt3Qthw7dkZX0qZtRps2\r\ne7RN96STxomnnCjxrOPtNHvvPbqSdO89ko6/KryzJEvAA/DAO4JKDr+PffLncyQAfvHwADw8yoah\r\n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\r\nYII=\r\n\r\n--b2=_zgIUoiIEbQehQTptnpQU4H2FR6ohJiV3WwATjASFyU--','Complete this simple checklist to get extra storage forever, for free.\n\n[Proton](https://proton.me/)\n\nDear Proton community member,\n\nCongratulations on taking back control of your online privacy and security. To help you kickstart your journey, we’re offering you an additional 3 GB of storage — for free!\n\nTo complete the checklist and claim your bonus storage, simply click on the gift icon at the bottom right of the Proton Drive web app and follow the prompts.\n\n[Upload your first file and create a secure file sharing link.]\n\n1. Upload your first file\n\nYou’ll be able to access it securely from anywhere.\n\n2. Create a secure file sharing link\n\nSend end-to-end encrypted files and folders of any size to anyone.\n\n3. Set a recovery method\n\nEnhance your account’s security to ensure you never lose access.\n\nIf you need any assistance or have questions about how to get your bonus 3 GB, our [support team](https://proton.me/support/contact) is here to help.\n\nStay secure,\nThe Proton Drive team\n\nConnect with the Proton community\n\n[X](https://x.com/ProtonDRIVE)\n\n[Reddit](https://reddit.com/r/ProtonDrive)\n\n[LinkedIn](https://www.linkedin.com/company/protonprivacy/)\n\n[Facebook](https://facebook.com/Proton)\n\n[Instagram](https://instagram.com/protonprivacy)\n\n[Blog](https://proton.me/blog)\n\n[Update your email preferences or unsubscribe](https://account.proton.me/drive/dashboard#email-subscription)\n\n© Proton AG Switzerland\nRoute de la Galaise 32, 1228 Plan-les-Ouates, Geneva, Switzerland',0,0,0,0,0,0,'2025-08-22 22:15:52','2025-12-09 19:27:50','2025-12-09 19:27:50','2025-12-09 19:27:50',NULL,NULL,NULL),
(640,4,'<MW5PR84MB1985299C186885000E3F93F1FB3EA@MW5PR84MB1985.NAMPRD84.PROD.OUTLOOK.COM>',NULL,NULL,'Meeting next week?','gary.fudge@hp.com','\"Fudge, Gary\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Forma DJR Micro\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n@font-face\r\n	{font-family:\"Forma DJR Display\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle17\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">I&#8217;m going to be in your area next week.&nbsp; Would you have some time to meet to review our AM solutions and start zeroing in on what you may need as relates to what you all are wanting to do?&nbsp; Just let me know when/where.&nbsp; We could also meet\r\n for lunch if that works better for you.&nbsp; <o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Best Regards,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager &#8211; US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\"><span style=\"color:blue\">Gary.Fudge</span><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:blue\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_1\" src=\"cid:image001.png@01DC15A0.9D5DE7C0\" alt=\"image001.png\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</body>\r\n</html>','Hello Rick,\r\n\r\nI\'m going to be in your area next week.  Would you have some time to meet to review our AM solutions and start zeroing in on what you may need as relates to what you all are wanting to do?  Just let me know when/where.  We could also meet for lunch if that works better for you.\r\n\r\nBest Regards,\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager - US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]',0,0,0,0,0,0,'2025-08-25 13:14:11','2025-12-09 19:27:51','2025-12-09 19:27:51','2025-12-09 19:27:51',NULL,NULL,NULL),
(641,4,'<MW5PR84MB1985FD24413CF362D2F0DD2DFB3EA@MW5PR84MB1985.NAMPRD84.PROD.OUTLOOK.COM>',NULL,NULL,'RE: Meeting next week?','gary.fudge@hp.com','\"Fudge, Gary\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Forma DJR Micro\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n@font-face\r\n	{font-family:\"Forma DJR Display\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle19\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Sorry…no, thought you were in Tampa….I’ll be there next week.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">If it makes sense to meet you in Rochester….I can do that as well…just let me know what/when works best for you.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Best Regards<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">3D Print - Enterprise Account Manager – US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">|</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black;mso-ligatures:standardcontextual\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_1803265883\" src=\"cid:image001.png@01DC15B8.799BC650\" alt=\"image001.png\"><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Monday, August 25, 2025 10:09 AM<br>\r\n<b>To:</b> Fudge, Gary &lt;gary.fudge@hp.com&gt;<br>\r\n<b>Subject:</b> Re: Meeting next week?<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;color:red\">CAUTION: External Email\r\n</span></b><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">Hi Gary,<br>\r\nI’m in Rochester, NyY this month….<br>\r\nIs that what you meant?<br>\r\nThanks,<br>\r\nRick <o:p></o:p></p>\r\n<p class=\"airmailon\">On August 25, 2025 at 09:14:59, Fudge, Gary (<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">I’m going to be in your area next week.&nbsp; Would you have some time to meet to review our AM solutions and start zeroing in on what you may need as relates to what you all are wanting\r\n to do?&nbsp; Just let me know when/where.&nbsp; We could also meet for lunch if that works better for you.&nbsp;\r\n<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Best Regards,<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager – US South\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><o:p></o:p></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><o:p></o:p></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_1\" src=\"cid:image001.png@01DC15B8.799BC650\" alt=\"image001.png\"></span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Hello Rick,\r\n\r\nSorry…no, thought you were in Tampa….I’ll be there next week.\r\n\r\nIf it makes sense to meet you in Rochester….I can do that as well…just let me know what/when works best for you.\r\n\r\nBest Regards\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager – US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Monday, August 25, 2025 10:09 AM\r\nTo: Fudge, Gary <gary.fudge@hp.com>\r\nSubject: Re: Meeting next week?\r\n\r\nCAUTION: External Email\r\nHi Gary,\r\nI’m in Rochester, NyY this month….\r\nIs that what you meant?\r\nThanks,\r\nRick\r\n\r\nOn August 25, 2025 at 09:14:59, Fudge, Gary (gary.fudge@hp.com<mailto:gary.fudge@hp.com>) wrote:\r\nHello Rick,\r\n\r\nI’m going to be in your area next week.  Would you have some time to meet to review our AM solutions and start zeroing in on what you may need as relates to what you all are wanting to do?  Just let me know when/where.  We could also meet for lunch if that works better for you.\r\n\r\nBest Regards,\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager – US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\n',0,0,0,0,0,0,'2025-08-25 16:04:59','2025-12-09 19:27:51','2025-12-09 19:27:51','2025-12-09 19:27:51',NULL,NULL,NULL),
(642,4,' <DM6PR07MB585045B4A069C604BFB492EBAD3EA@DM6PR07MB5850.namprd07.prod.outlook.com>',NULL,NULL,'Subject: Follow-Up on Proposal','rich@achramlabs.com','Richard Van Voorst','<html xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;\r\n	panose-1:2 11 0 4 2 2 2 2 2 4;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle17\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p>Hi Rick and Brian,<o:p></o:p></p>\r\n<p class=\"MsoNormal\">Just checking in to see if you had any questions on the proposal we sent over, and where you might be in your internal review process. Let me know if there’s anything you need from our side. Hope all is well!<br>\r\n<br>\r\n<br>\r\n<span style=\"font-size:11.0pt\"><o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:none\">Talk soon,<br>\r\n<br>\r\nRich<br>\r\n<br>\r\n--&nbsp;</span><span style=\"font-size:11.0pt;mso-ligatures:none\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;mso-ligatures:none\">Rich Van Voorst\r\n<br>\r\nAchram Labs | CEO<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;mso-ligatures:none\"><a href=\"http://www.achramlabs.com\"><span style=\"color:#467886\">www.achramlabs.com</span></a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;mso-ligatures:none\">e: <a href=\"mailto:rich@achramlabs.com\">\r\n<span style=\"color:#467886\">rich@achramlabs.com</span></a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;mso-ligatures:none\">m: 813-334-5104<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p><o:p>&nbsp;</o:p></p>\r\n<p><o:p>&nbsp;</o:p></p>\r\n<p><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n</body>\r\n</html>','Hi Rick and Brian,\r\nJust checking in to see if you had any questions on the proposal we sent over, and where you might be in your internal review process. Let me know if there’s anything you need from our side. Hope all is well!\r\n\r\n\r\nTalk soon,\r\n\r\nRich\r\n\r\n--\r\nRich Van Voorst\r\nAchram Labs | CEO\r\nwww.achramlabs.com<http://www.achramlabs.com>\r\ne: rich@achramlabs.com<mailto:rich@achramlabs.com>\r\nm: 813-334-5104',0,0,0,0,0,0,'2025-08-25 17:17:53','2025-12-09 19:27:51','2025-12-09 19:27:51','2025-12-09 19:27:51',NULL,NULL,NULL),
(643,4,'<217334234.7382.1756149070810@app128013.hef201.service-now.com>',NULL,NULL,'Incident INC-GSAFSD20227682 was created','fsdsupport@gsa.gov','\"Federal Service Desk (FSD)\"','<html><head></head><body><p></p>\r\n<style type=\"text/css\">\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n</style>\r\n<div style=\"margin: 0 auto !important;\" align=\"center\">\r\n<table class=\"w100\" style=\"width: 600px; background-color: #f7f7f9; margin: 0 auto !important; padding: 0px;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" bgcolor=\"#F7F7F9\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 13px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"background-color: #d8ecff;\" height=\"32\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"40\" style=\"width: 53.1077%;\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td height=\"50\"><img src=\"cid:sys_attachment.dosys_idbe2e8d8d1bda2a50205e8736624bcb90@SNC.95b214ed3c1d8bb4\" width=\"auto\" height=\"50\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr style=\"background-color: #d8ecff;\" height=\"22\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr><!-- Left-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- CONTAINER -->\r\n<td width=\"564\">\r\n<table class=\"w100\" style=\"margin: 0px; padding: 0px; box-shadow: 0px 2px 10px rgba(23, 40, 52, 0.08);\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody><!-- Main Container -->\r\n<tr>\r\n<td class=\"pad-sides-20\" style=\"border-radius: 6px; text-align: left; background-color: #ffffff; padding: 24px 24px 24px 24px; color: #454545;\" align=\"center\">\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-bottom: 10px;\"><strong>This is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD)</strong> which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.</div>\r\n</div>\r\n<hr>\r\n<p></p><div style=\"font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif; line-height: 26px; font-size: 16px;\">\r\n<div style=\"line-height: 26px; padding-bottom: 24px; text-align: left; color: #454545;\">\r\n<h4 style=\"margin-top: 14pt; line-height: 32px; margin-bottom: 4pt; text-align: left; font-size: 17.52pt;\"><strong> Your Incident Has Been Received</strong></h4>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left; font-size: 12pt;\">Hello <strong>rick@mavrix.one,</strong></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left;\">A new incident <strong><span style=\"font-size: 12pt;\">INC-GSAFSD20227682 </span></strong><span style=\"font-size: 12pt;\">has been successfully created.</span></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 6pt; text-align: left;\"><span style=\"font-size: 12pt;\">You can view the full incident details using the link below:<br></span><strong><span style=\"font-size: 12pt;\"></span></strong></p><div style=\"margin-top: 8px;\"><strong><a href=\"https://www.fsd.gov/gsafsd_sp?id=incident_form&amp;table=incident&amp;sys_id=bcc037c61be76610205e8736624bcb84\" style=\"background-color: #70E17B;color: #162E51;font-size: 16px;text-decoration: none; border-radius: 4px;-webkit-border-radius: 4px;-moz-border-radius: 4px;display: inline-block;padding: 10px 32px 10px 32px;\">View incident</a></strong></div><p></p>\r\n<span style=\"font-size: 12pt;\">Thank you,</span><span style=\"font-size: 12pt;\"><br></span><strong><span style=\"font-size: 12pt;\">FSD.gov Team</span></strong></div>\r\n</div><p></p>\r\n<hr>\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-top: 10px;\"><strong>Don\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times!</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0036075\" target=\"_blank\" rel=\"noopener\">Invite others </a>to help manage your registration. <strong>DO NOT</strong> attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. <strong>Submit all entity validation documentation from your Entity Workspace in SAM.gov.</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0057690\" target=\"_blank\" rel=\"noopener\">Learn how to add documentation</a> to your entity validation case.</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- END CONTAINER --> <!-- Right-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"background-color: #f7f7f9;\" align=\"center\" height=\"40\"></td>\r\n</tr>\r\n<!-- Footer started -->\r\n<tr style=\"background-color: #d8ecff;\">\r\n<td>\r\n<table style=\"background-color: #d8ecff;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td height=\"30\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 14px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_id7d465e4a1b3ca2103943eac1604bcbb6@SNC.66c82e6be3b5f365\" width=\"120\" height=\"40\" title=\"Cloud 4.png\" alt=\"Cloud\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"30\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff;\" align=\"center\" valign=\"top\" height=\"30\"><img src=\"cid:sys_attachment.dosys_idb04e85cd1bda2a50205e8736624bcbfa@SNC.b5aa7d4785e1fe51\" width=\"auto\" height=\"30\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_idb1a5160a1b3ca2103943eac1604bcbdc@SNC.e9e17e9a18d04d9d\" width=\"140\" height=\"40\" title=\"Cloud 3.png\" alt=\"Cloud\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff; color: #ffffff;\">\r\n<table style=\"color: #ffffff;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr align=\"center\">\r\n<td><span id=\"templateAddress\" class=\"footer\" style=\"color: #162e51; font-size: 14px; line-height: 18px; text-align: center; margin: 0 !important;\"> GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td height=\"10\"></td>\r\n</tr>\r\n<tr>\r\n<td height=\"120px\"><img style=\"height: 120px; width: 100%;\" src=\"cid:sys_attachment.dosys_id7555160a1b3ca2103943eac1604bcb39@SNC.76457f974df799db\" height=\"120\" title=\"Jefferson Light Blue 2.png\" alt=\"Jefferson Memorial\"><span id=\"mce_26\"></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<!-- Footer end--></tbody>\r\n</table>\r\n</div><div>&nbsp;</div><div style=\"display:inline\">Ref:MSG2276928_yGmS3xRUTPUOBPzBAqar</div></body></html>','\r\n\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD) which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.\r\n\r\n\r\n\r\n\r\n Your Incident Has Been Received\r\nHello rick@mavrix.one,\r\nA new incident INC-GSAFSD20227682 has been successfully created.\r\nYou can view the full incident details using the link below:View incident\r\nThank you,FSD.gov Team\r\n\r\n\r\n\r\nDon\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times! Invite others to help manage your registration. DO NOT attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. Submit all entity validation documentation from your Entity Workspace in SAM.gov. Learn how to add documentation to your entity validation case.\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;Ref:MSG2276928_yGmS3xRUTPUOBPzBAqar',0,0,0,0,0,0,'2025-08-25 19:11:10','2025-12-09 19:27:52','2025-12-09 19:27:52','2025-12-09 19:27:52',NULL,NULL,NULL),
(644,4,'<1951810056.7520.1756149292183@app128013.hef201.service-now.com>',NULL,NULL,'Comment added to INC-GSAFSD20227682','fsdsupport@gsa.gov','\"Federal Service Desk (FSD)\"','<html><head></head><body><p></p>\r\n<style type=\"text/css\">\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n</style>\r\n<div style=\"margin: 0 auto !important;\" align=\"center\">\r\n<table class=\"w100\" style=\"width: 600px; background-color: #f7f7f9; margin: 0 auto !important; padding: 0px;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" bgcolor=\"#F7F7F9\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 13px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"background-color: #d8ecff;\" height=\"32\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"40\" style=\"width: 53.1077%;\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td height=\"50\"><img src=\"cid:sys_attachment.dosys_idbe2e8d8d1bda2a50205e8736624bcb90@SNC.8038352790ad30fe\" width=\"auto\" height=\"50\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr style=\"background-color: #d8ecff;\" height=\"22\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr><!-- Left-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- CONTAINER -->\r\n<td width=\"564\">\r\n<table class=\"w100\" style=\"margin: 0px; padding: 0px; box-shadow: 0px 2px 10px rgba(23, 40, 52, 0.08);\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody><!-- Main Container -->\r\n<tr>\r\n<td class=\"pad-sides-20\" style=\"border-radius: 6px; text-align: left; background-color: #ffffff; padding: 24px 24px 24px 24px; color: #454545;\" align=\"center\">\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-bottom: 10px;\"><strong>This is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD)</strong> which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.</div>\r\n</div>\r\n<hr>\r\n<p></p><div style=\"font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif; line-height: 26px; font-size: 16px;\">\r\n<div style=\"line-height: 26px; padding-bottom: 24px; text-align: left; color: #454545;\">\r\n<h4 style=\"margin-top: 14pt; line-height: 32px; margin-bottom: 4pt; text-align: left; font-size: 17.52pt;\"><strong> New Comment(s) on Your FSD.gov Incident: INC-GSAFSD20227682</strong></h4>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left; font-size: 12pt;\">Hello <strong>rick@mavrix.one,</strong></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left;\">There are new comments on your incident <strong>INC-GSAFSD20227682</strong>.</p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 6pt; text-align: left;\"><span style=\"font-size: 12pt;\">To view the complete incident details and activity history, please use the link below:<br></span><strong><span style=\"font-size: 12pt;\"></span></strong></p><div style=\"margin-top: 8px;\"><strong><a href=\"https://www.fsd.gov/gsafsd_sp?id=incident_form&amp;table=incident&amp;sys_id=bcc037c61be76610205e8736624bcb84\" style=\"background-color: #70E17B;color: #162E51;font-size: 16px;text-decoration: none; border-radius: 4px;-webkit-border-radius: 4px;-moz-border-radius: 4px;display: inline-block;padding: 10px 32px 10px 32px;\">View incident</a></strong></div><p></p>\r\n<span style=\"font-size: 12pt;\">Thank you,</span><span style=\"font-size: 12pt;\"><br></span><strong><span style=\"font-size: 12pt;\">FSD.gov Team</span></strong></div>\r\n</div><p></p>\r\n<hr>\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-top: 10px;\"><strong>Don\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times!</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0036075\" target=\"_blank\" rel=\"noopener\">Invite others </a>to help manage your registration. <strong>DO NOT</strong> attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. <strong>Submit all entity validation documentation from your Entity Workspace in SAM.gov.</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0057690\" target=\"_blank\" rel=\"noopener\">Learn how to add documentation</a> to your entity validation case.</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- END CONTAINER --> <!-- Right-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"background-color: #f7f7f9;\" align=\"center\" height=\"40\"></td>\r\n</tr>\r\n<!-- Footer started -->\r\n<tr style=\"background-color: #d8ecff;\">\r\n<td>\r\n<table style=\"background-color: #d8ecff;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td height=\"30\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 14px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_id7d465e4a1b3ca2103943eac1604bcbb6@SNC.45263337e4e436a3\" width=\"120\" height=\"40\" title=\"Cloud 4.png\" alt=\"Cloud\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"30\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff;\" align=\"center\" valign=\"top\" height=\"30\"><img src=\"cid:sys_attachment.dosys_idb04e85cd1bda2a50205e8736624bcbfa@SNC.ed9df5dcbc302633\" width=\"auto\" height=\"30\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_idb1a5160a1b3ca2103943eac1604bcbdc@SNC.cef8c5f2aad4e542\" width=\"140\" height=\"40\" title=\"Cloud 3.png\" alt=\"Cloud\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff; color: #ffffff;\">\r\n<table style=\"color: #ffffff;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr align=\"center\">\r\n<td><span id=\"templateAddress\" class=\"footer\" style=\"color: #162e51; font-size: 14px; line-height: 18px; text-align: center; margin: 0 !important;\"> GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td height=\"10\"></td>\r\n</tr>\r\n<tr>\r\n<td height=\"120px\"><img style=\"height: 120px; width: 100%;\" src=\"cid:sys_attachment.dosys_id7555160a1b3ca2103943eac1604bcb39@SNC.2d25a31fca1e0ce9\" height=\"120\" title=\"Jefferson Light Blue 2.png\" alt=\"Jefferson Memorial\"><span id=\"mce_26\"></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<!-- Footer end--></tbody>\r\n</table>\r\n</div><div>&nbsp;</div><div style=\"display:inline\">Ref:MSG2277259_qz5vhOHtYLRResp4Lygy</div></body></html>','\r\n\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD) which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.\r\n\r\n\r\n\r\n\r\n New Comment(s) on Your FSD.gov Incident: INC-GSAFSD20227682\r\nHello rick@mavrix.one,\r\nThere are new comments on your incident INC-GSAFSD20227682.\r\nTo view the complete incident details and activity history, please use the link below:View incident\r\nThank you,FSD.gov Team\r\n\r\n\r\n\r\nDon\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times! Invite others to help manage your registration. DO NOT attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. Submit all entity validation documentation from your Entity Workspace in SAM.gov. Learn how to add documentation to your entity validation case.\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;Ref:MSG2277259_qz5vhOHtYLRResp4Lygy',0,0,0,0,0,0,'2025-08-25 19:14:52','2025-12-09 19:27:52','2025-12-09 19:27:52','2025-12-09 19:27:52',NULL,NULL,NULL),
(645,4,'<851199705.6765.1756149361630@app129043.hef201.service-now.com>',NULL,NULL,'INC-GSAFSD20227682 was resolved','fsdsupport@gsa.gov','\"Federal Service Desk (FSD)\"','<html><head></head><body><p></p>\r\n<style type=\"text/css\">\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n</style>\r\n<div style=\"margin: 0 auto !important;\" align=\"center\">\r\n<table class=\"w100\" style=\"width: 600px; background-color: #f7f7f9; margin: 0 auto !important; padding: 0px;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" bgcolor=\"#F7F7F9\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 13px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"background-color: #d8ecff;\" height=\"32\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"40\" style=\"width: 53.1077%;\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td height=\"50\"><img src=\"cid:sys_attachment.dosys_idbe2e8d8d1bda2a50205e8736624bcb90@SNC.75c9773c999d6e8f\" width=\"auto\" height=\"50\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr style=\"background-color: #d8ecff;\" height=\"22\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr><!-- Left-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- CONTAINER -->\r\n<td width=\"564\">\r\n<table class=\"w100\" style=\"margin: 0px; padding: 0px; box-shadow: 0px 2px 10px rgba(23, 40, 52, 0.08);\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody><!-- Main Container -->\r\n<tr>\r\n<td class=\"pad-sides-20\" style=\"border-radius: 6px; text-align: left; background-color: #ffffff; padding: 24px 24px 24px 24px; color: #454545;\" align=\"center\">\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-bottom: 10px;\"><strong>This is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD)</strong> which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.</div>\r\n</div>\r\n<hr>\r\n<p></p><div style=\"font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif; line-height: 26px; font-size: 16px;\">\r\n<div style=\"line-height: 26px; padding-bottom: 24px; text-align: left; color: #454545;\">\r\n<h4 style=\"margin-top: 14pt; line-height: 32px; margin-bottom: 4pt; text-align: left; font-size: 17.52pt;\"><strong>Your Incident Has Been Marked as Resolved</strong></h4>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left; font-size: 12pt;\">Hello <strong>rick@mavrix.one,</strong></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left;\">Your incident <strong><span style=\"font-size: 12pt;\">INC-GSAFSD20227682 </span></strong><span style=\"font-size: 12pt;\">has been marked as resolved for the following reason(s):</span></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left;\"><strong><span style=\"font-size: 12pt;\">Resolution notes:</span></strong><span style=\"font-size: 12pt;\"> Had floor support advise with the user\'s issue. Provided advised KB article..</span></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 6pt; text-align: left;\"><span style=\"font-size: 12pt;\">You can view the incident details or reopen it using the link below:<br></span><strong><span style=\"font-size: 12pt;\"></span></strong></p><div style=\"margin-top: 8px;\"><strong><a href=\"https://www.fsd.gov/gsafsd_sp?id=incident_form&amp;table=incident&amp;sys_id=bcc037c61be76610205e8736624bcb84\" style=\"background-color: #70E17B;color: #162E51;font-size: 16px;text-decoration: none; border-radius: 4px;-webkit-border-radius: 4px;-moz-border-radius: 4px;display: inline-block;padding: 10px 32px 10px 32px;\">View incident</a></strong></div><span style=\"font-size: 12pt;\"> <br></span><strong><span style=\"font-size: 12pt;\">Please note</span></strong><span style=\"font-size: 12pt;\">: If no further action is taken, the incident will be automatically closed at midnight on the <strong>5th business day</strong> from the resolution date.</span><p></p>\r\n<span style=\"font-size: 12pt;\">Thank you,</span><span style=\"font-size: 12pt;\"><br></span><strong><span style=\"font-size: 12pt;\">FSD.gov Team</span></strong></div>\r\n</div><p></p>\r\n<hr>\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-top: 10px;\"><strong>Don\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times!</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0036075\" target=\"_blank\" rel=\"noopener\">Invite others </a>to help manage your registration. <strong>DO NOT</strong> attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. <strong>Submit all entity validation documentation from your Entity Workspace in SAM.gov.</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0057690\" target=\"_blank\" rel=\"noopener\">Learn how to add documentation</a> to your entity validation case.</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- END CONTAINER --> <!-- Right-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"background-color: #f7f7f9;\" align=\"center\" height=\"40\"></td>\r\n</tr>\r\n<!-- Footer started -->\r\n<tr style=\"background-color: #d8ecff;\">\r\n<td>\r\n<table style=\"background-color: #d8ecff;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td height=\"30\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 14px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_id7d465e4a1b3ca2103943eac1604bcbb6@SNC.511a9ebf60774aa1\" width=\"120\" height=\"40\" title=\"Cloud 4.png\" alt=\"Cloud\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"30\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff;\" align=\"center\" valign=\"top\" height=\"30\"><img src=\"cid:sys_attachment.dosys_idb04e85cd1bda2a50205e8736624bcbfa@SNC.f14910a00437effa\" width=\"auto\" height=\"30\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_idb1a5160a1b3ca2103943eac1604bcbdc@SNC.a76f97f7e8ac7b15\" width=\"140\" height=\"40\" title=\"Cloud 3.png\" alt=\"Cloud\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff; color: #ffffff;\">\r\n<table style=\"color: #ffffff;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr align=\"center\">\r\n<td><span id=\"templateAddress\" class=\"footer\" style=\"color: #162e51; font-size: 14px; line-height: 18px; text-align: center; margin: 0 !important;\"> GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td height=\"10\"></td>\r\n</tr>\r\n<tr>\r\n<td height=\"120px\"><img style=\"height: 120px; width: 100%;\" src=\"cid:sys_attachment.dosys_id7555160a1b3ca2103943eac1604bcb39@SNC.7360a2f1f434c1e1\" height=\"120\" title=\"Jefferson Light Blue 2.png\" alt=\"Jefferson Memorial\"><span id=\"mce_26\"></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<!-- Footer end--></tbody>\r\n</table>\r\n</div><div>&nbsp;</div><div style=\"display:inline\">Ref:MSG2277283_HfIFQlJokfIK5Pec4JSo</div></body></html>','\r\n\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD) which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.\r\n\r\n\r\n\r\n\r\nYour Incident Has Been Marked as Resolved\r\nHello rick@mavrix.one,\r\nYour incident INC-GSAFSD20227682 has been marked as resolved for the following reason(s):\r\nResolution notes: Had floor support advise with the user\'s issue. Provided advised KB article..\r\nYou can view the incident details or reopen it using the link below:View incident Please note: If no further action is taken, the incident will be automatically closed at midnight on the 5th business day from the resolution date.\r\nThank you,FSD.gov Team\r\n\r\n\r\n\r\nDon\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times! Invite others to help manage your registration. DO NOT attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. Submit all entity validation documentation from your Entity Workspace in SAM.gov. Learn how to add documentation to your entity validation case.\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;Ref:MSG2277283_HfIFQlJokfIK5Pec4JSo',0,0,0,0,0,0,'2025-08-25 19:16:01','2025-12-09 19:27:53','2025-12-09 19:27:53','2025-12-09 19:27:53',NULL,NULL,NULL),
(646,4,'<5QTF3MF52RU4.IR9JLX4UNDVF2@bouncing.email.leatherman.com>',NULL,NULL,'LAST CHANCE for *Free Shipping*','leatherman@email.leatherman.com','Leatherman','<!DOCTYPE html\r\n    PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\r\n<title>LAST CHANCE for *Free Shipping*</title>\r\n<meta name=\"referrer\" content=\"never\">\r\n<style>p{margin:0;padding:0;line-height:125%;line-height:1.25;mso-line-height-rule:at-least}[dir=rtl],[dir=rtl] [align=right] *{text-align:right}[dir=rtl] [align=left] *{text-align:left}s span{text-decoration:line-through}u span{text-decoration:underline}.dividerWrapper p span{line-height:0}ol,ul{margin-top:15px;margin-bottom:15px;line-height:125%;line-height:1.25;mso-line-height-rule:at-least;padding-inline-end:0;padding-inline-start:40px}p img{max-width:100%}a{text-decoration:none}u a{text-decoration:underline}h1{font-size:28px}h2{font-size:22px}h3{font-size:18px}h1,h2,h3,h4{margin:0;line-height:125%;line-height:1.25}.imageWrapper a img{text-decoration:none;border:0}th.columnContainer,th.inner{font-weight:400;text-align:left}[dir=rtl] th.columnContainer,[dir=rtl] th.inner{font-weight:400;text-align:right}img{max-width:100%!important}.hide-on-desktop-class{display:none}body,div{font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:#fff}div div{background-color:transparent}[data-layout=true]{margin:0 auto;max-width:600px}p{margin:0;padding:0;line-height:20px;mso-line-height-rule:at-least}ol,ul{margin-top:15px;margin-bottom:15px;line-height:20px;mso-line-height-rule:at-least}p img{max-width:100%}a{text-decoration:underline;text-decoration-color:#fff}u a{text-decoration:underline}h1,h2,h3,h4{margin:0}.imageWrapper a img{text-decoration:none;border:0}body[data-outlook-cycle] .tbContainer{display:block!important}body[data-outlook-cycle] .tbContainer.multi table{table-layout:fixed;height:auto!important}body[data-outlook-cycle] .tbContainer.multi td{width:auto!important;min-height:auto!important}body[data-outlook-cycle] .tbContainer.multi tr td{display:block}body[data-outlook-cycle] .tbContainer.multi .inner{height:auto!important;min-height:auto!important}body[data-outlook-cycle] .tbContainer .inner{box-sizing:border-box}body[data-outlook-cycle] .outer{width:auto!important}body[data-outlook-cycle] .tbContainer .columnContainer table{table-layout:fixed!important}body[data-outlook-cycle] .innerTable{min-height:auto!important}@media only screen and (max-width:768px){.tbContainer{display:block!important}a span{line-height:inherit!important}.multi table{table-layout:fixed;height:auto!important}.multi td{width:auto!important;min-height:auto!important}.multi tr,.multi tr td{display:block}.multi .inner{height:auto!important;min-height:auto!important}.tbContainer .inner{box-sizing:border-box}.outer{width:auto!important}.tbContainer .columnContainer table{table-layout:fixed!important}.innerTable{min-height:auto!important}.no-wrap-section .outer .multi tbody tr td,.no-wrap-section .outer .multi tbody tr th{display:table-cell!important}.no-wrap-section .outer .multi tbody tr td.inner,.no-wrap-section .outer .multi tbody tr th.inner{display:block!important}.no-wrap-section .outer .multi .dividerWrapper tbody tr td,.no-wrap-section .outer .multi .dividerWrapper tbody tr th{display:block!important}.no-wrap-section .containerWrapper tr{display:flex!important}.no-wrap-section .containerWrapper .innerTable tr{display:block!important}.hide-on-mobile-class{display:none!important}.hide-on-desktop-class{display:block!important}.hide-on-desktop-class.hide-on-mobile-class{display:none!important}.tbContainer{display:block!important}a span{line-height:inherit!important}.multi table{table-layout:fixed;height:auto!important}.multi td{width:auto!important;min-height:0!important}.multi tbody,.multi tbody tr,.multi tbody tr td,.multi tbody tr th,.outer tbody,.outer tbody tr,.outer tbody tr td,.outer tbody tr th{display:block!important;box-sizing:border-box;height:auto!important;min-height:0!important}.wrap-section .multi tbody,.wrap-section .multi tbody tr,.wrap-section .multi tbody tr td,.wrap-section .multi tbody tr th,.wrap-section .outer tbody,.wrap-section .outer tbody tr,.wrap-section .outer tbody tr td,.wrap-section .outer tbody tr th{width:100%!important}.wrap-section .outer{display:table}.wrap-section .multi tbody,.wrap-section .outer tbody{display:table-row-group}.wrap-section .multi tbody tr,.wrap-section .outer tbody tr{display:table-row}.wrap-section .multi tbody tr td,.wrap-section .multi tbody tr th,.wrap-section .outer tbody tr td,.wrap-section .outer tbody tr th{display:table-cell}.wrap-section .multi tbody tr td .columnContainer,.wrap-section .multi tbody tr th .columnContainer,.wrap-section .outer tbody tr td .columnContainer,.wrap-section .outer tbody tr th .columnContainer{display:inline}.wrap-section .multi tbody tr td .inner,.wrap-section .multi tbody tr th .inner,.wrap-section .outer tbody tr td .inner,.wrap-section .outer tbody tr th .inner{display:table-cell}.multi .inner{height:auto!important;min-height:0!important}.tbContainer .inner{box-sizing:border-box}.outer{width:100%!important}.tbContainer .columnContainer table{table-layout:fixed!important}.tbContainer .columnContainer>table{height:auto!important}.innerTable{min-height:0!important}.no-wrap-section .outer{display:table!important;border-collapse:separate!important}.no-wrap-section .multi table{height:100%!important}.no-wrap-section .multi tbody,.no-wrap-section .outer tbody{display:table-row-group!important;width:100%!important}.no-wrap-section .multi tbody tr,.no-wrap-section .outer tbody tr{display:table-row!important;width:100%!important}.no-wrap-section .multi tbody tr td,.no-wrap-section .multi tbody tr th,.no-wrap-section .outer tbody tr td,.no-wrap-section .outer tbody tr th{display:table-cell!important}.no-wrap-section.columns-equal-class .outer tbody tr td,.no-wrap-section.columns-equal-class .outer tbody tr th{height:0!important}.no-wrap-section .outer tbody tr td.inner,.no-wrap-section .outer tbody tr th.inner{width:100%!important;height:auto!important}a[x-apple-data-detectors]{color:inherit!important;text-decoration:none!important;font-size:inherit!important;font-family:inherit!important;font-weight:inherit!important;line-height:inherit!important}.hide-on-mobile-class{display:none!important}.hide-on-desktop-class{display:block!important}.hide-on-desktop-class.hide-on-mobile-class{display:none!important}}.hide-on-desktop-class{display:none}</style><!--[if gte mso 9]>\r\n<xml><o:OfficeDocumentSettings><o:AllowPNG/><o:PixelsPerInch>96</o:PixelsPerInch></o:OfficeDocumentSettings></xml>\r\n<![endif]--><!--[if gte mso 9]>\r\n<xml><w:WordDocument>\r\n<w:DontUseAdvancedTypographyReadingMail xmlns:w=\"urn:schemas-microsoft-com:office:word\"/>\r\n</w:WordDocument></xml>\r\n<![endif]-->\r\n</head><body style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:#fff;background:#fff\"><!--[if !mso]><!--><div id=\"preheader\" style=\"display: none; max-height: 0px; overflow: hidden;\">Shop now or miss out.<br>&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp; &nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp; &nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp; &nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp; &nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;<br>&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp; &nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp; &nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp; &nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp; &nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;</div><!----><!--[endif]----><!--[if gte mso 9]> <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" style=\"border-collapse: collapse;\"><tr><th style=\"margin-bottom:0; margin-top:0; padding:0; background-color: rgb(255, 255, 255); border-width: ; border-style: ; border-color: ; border-collapse: collapse;\"> <![endif]--><div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:#fff;margin:auto;max-width:600px\"><!--[if gte mso 9]> </div><div style=\"background-color: transparent; border:none;\"> <![endif]-->\r\n<div class=\"emptyContainer columns-equal-class wrap-section\" style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:rgba(0,0,0,0);margin:0;border-radius:0\"><!--[if gte mso 9]> </div><div style=\"background-color: transparent; border:none;\"> <![endif]-->\r\n<table class=\"outer\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;display:block\" role=\"presentation\">\r\n<tbody>\r\n<!--[if gte mso 9]> <tr><td  style=\"font-size: 0px; line-height:0px;mso-line-height-rule: exactly; display: none !important; mso-hide:all;background-color: rgba(0, 0, 0, 0);\"><p style=\"font-size: 0px;height:0px; margin: 0px; padding:0;line-height: 0px; mso-line-height-rule: exactly; background-color: transparent;\"><br/></p></td></tr> <![endif]--><tr>\r\n<th style=\"padding:0;background-color:rgba(0,0,0,0);border-color:#5f6062;border-width:1px;border-style:none;background-position:50% 50%;background-size:cover;border-radius:0\" role=\"presentation\">\r\n<table style=\"width:100%;border-collapse:collapse\" class=\"containerWrapper tbContainer\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\r\n<tbody>\r\n<tr>\r\n<td class=\"columnContainer\" style=\"min-width:20px;width:600px;padding:0;background-color:rgba(0,0,0,0);vertical-align:top\">\r\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse\" role=\"presentation\">\r\n<tbody>\r\n<tr>\r\n<td class=\"inner ui-sortable\" style=\"min-width:20px;padding:0;vertical-align:top;word-wrap:break-word;word-break:break-word;background-color:rgba(0,0,0,0);border-color:#5f6062;border-width:1px;border-style:none;background-position:50% 50%;background-size:cover;border-radius:0\" align=\"left\"><div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;padding:0;margin:0\">\r\n<div align=\"Center\" class=\"imageWrapper\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:14px; color:#fff; background-color:transparent;\">\r\n<a href=\"https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/hyovUNgKA0i4XqugQpwBAAAAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.leatherman.com%252F%253Futm_source%253DD365%2526utm_medium%253Demail%2526utm_campaign%253DWelcome_3_US%2526utm_id%253DWelcome_3_US%22%2C%22RedirectOptions%22%3A%7B%226%22%3A%22mktprfac25d6c53bec4773be94163ec00b827beoprf%22%2C%221%22%3Anull%7D%7D&msdynmkt_digest=2%2BsRH%2FM5lkRifxE82ypNXKOCH97GJKjqFV%2BZLPFpkzQ%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf\" data-msdyn-tracking-id=\"7b90ca9ddb1271692815274022\" style=\"text-decoration:underline;text-decoration-color:#fff\"><!--[if gte mso 9]> <img src=\"https://assets-usa.mkt.dynamics.com/5d162280-f9ef-450a-aac0-46e4c9a0c659/digitalassets/images/4d6a115a-c10b-4a13-855f-b386b90f9948\" style=\"text-decoration: none; border: 0px; max-height: 100%; box-sizing: border-box; margin: 0px; position: relative; display: block; top: 0px; left: 0px; border-radius: 0px; max-width: 100% !important;\" alt=\"Shop multi-tools and knives at Leatherman.com\" width=\"600\"> <![endif]--> <!--[if !mso]> <!----><img src=\"https://assets-usa.mkt.dynamics.com/5d162280-f9ef-450a-aac0-46e4c9a0c659/digitalassets/images/4d6a115a-c10b-4a13-855f-b386b90f9948\" style=\"text-decoration:none;border:0;max-height:100%;box-sizing:border-box;margin:0;position:relative;display:block;top:0;left:0;border-radius:0;max-width:100%!important\" alt=\"Shop multi-tools and knives at Leatherman.com\"><!--[endif]----></a>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n<!--[if gte mso 9]> <tr><td  style=\"font-size: 0px; line-height:0px;mso-line-height-rule: exactly; display: none !important; mso-hide:all;background-color: rgba(0, 0, 0, 0);\"><p style=\"font-size: 0px;height:0px; margin: 0px; padding:0;line-height: 0px; mso-line-height-rule: exactly; background-color: transparent;\"><br/></p></td></tr> <![endif]--></tbody>\r\n</table>\r\n</div><div class=\"columns-equal-class wrap-section\" style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:rgba(0,0,0,0);margin:0;border-radius:0\"><!--[if gte mso 9]> </div><div style=\"background-color: transparent; border:none;\"> <![endif]-->\r\n<table class=\"outer\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;display:block\" role=\"presentation\">\r\n<tbody>\r\n<!--[if gte mso 9]> <tr><td  style=\"font-size: 0px; line-height:0px;mso-line-height-rule: exactly; display: none !important; mso-hide:all;background-color: rgba(0, 0, 0, 0);\"><p style=\"font-size: 0px;height:0px; margin: 0px; padding:0;line-height: 0px; mso-line-height-rule: exactly; background-color: transparent;\"><br/></p></td></tr> <![endif]--><tr>\r\n<th style=\"padding:0;background-color:rgba(0,0,0,0);border-color:#5f6062;border-width:1px;border-style:none;background-position:50% 50%;background-size:cover;border-radius:0\" role=\"presentation\">\r\n<table style=\"display:block;width:100%;border-collapse:collapse\" class=\"containerWrapper tbContainer\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\r\n<tbody>\r\n<tr>\r\n<td class=\"columnContainer\" style=\"min-width:5px;width:600px;padding:0;background-color:rgba(0,0,0,0);vertical-align:top\">\r\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse\" role=\"presentation\">\r\n<tbody>\r\n<tr>\r\n<td class=\"inner ui-sortable\" style=\"min-width:5px;padding:0;vertical-align:top;word-wrap:break-word;word-break:break-word;background-color:rgba(0,0,0,0);border-color:#5f6062;border-width:1px;border-style:none;background-position:50% 50%;background-size:cover;border-radius:0\" align=\"left\"><div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;padding:0;margin:0\">\r\n<div align=\"Center\" class=\"imageWrapper\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:14px; color:#fff; background-color:transparent;\"><a href=\"https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/hyovUNgKA0i4XqugQpwBAAEAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.leatherman.com%252Fcollections%252Fmulti-tools%253Futm_source%253DD365%2526utm_medium%253Demail%2526utm_campaign%253DWelcome_3_US%2526utm_id%253DWelcome_3_US%22%2C%22RedirectOptions%22%3A%7B%226%22%3A%22mktprfac25d6c53bec4773be94163ec00b827beoprf%22%2C%221%22%3Anull%7D%7D&msdynmkt_digest=6hC0PEZnfJeTuW5Iob%2F9AxLOYRWuqG2cV4upBGiREzM%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf\" data-msdyn-tracking-id=\"55032ce995b0f81745257588221\" style=\"text-decoration:underline;text-decoration-color:#fff\"><!--[if gte mso 9]> <img style=\"text-decoration: none; border: 0px; max-height: 100%; box-sizing: border-box; margin: 0px; position: relative; display: block; top: 0px; left: 0px; border-radius: 0px; max-width: 100% !important;\" src=\"https://assets-usa.mkt.dynamics.com/5d162280-f9ef-450a-aac0-46e4c9a0c659/digitalassets/images/6ddff00d-1e9e-ef11-8a6a-00224806ff12?ts=638667005511872231\" alt=\"Free shipping ends soon\" width=\"600\"> <![endif]--> <!--[if !mso]> <!----><img style=\"text-decoration:none;border:0;max-height:100%;box-sizing:border-box;margin:0;position:relative;display:block;top:0;left:0;border-radius:0;max-width:100%!important\" src=\"https://assets-usa.mkt.dynamics.com/5d162280-f9ef-450a-aac0-46e4c9a0c659/digitalassets/images/6ddff00d-1e9e-ef11-8a6a-00224806ff12?ts=638667005511872231\" alt=\"Free shipping ends soon\"><!--[endif]----></a>\r\n</div>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;padding:0;margin:0\">\r\n<div align=\"Center\" class=\"imageWrapper\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:14px; color:#fff; background-color:transparent;\"><a href=\"https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/hyovUNgKA0i4XqugQpwBAAIAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.leatherman.com%252Fcollections%252Fmulti-tools%253Futm_source%253DD365%2526utm_medium%253Demail%2526utm_campaign%253DWelcome_3_US%2526utm_id%253DWelcome_3_US%22%2C%22RedirectOptions%22%3A%7B%226%22%3A%22mktprfac25d6c53bec4773be94163ec00b827beoprf%22%2C%221%22%3Anull%7D%7D&msdynmkt_digest=6hC0PEZnfJeTuW5Iob%2F9AxLOYRWuqG2cV4upBGiREzM%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf\" data-msdyn-tracking-id=\"9faee7f11296681745257592759\" style=\"text-decoration:underline;text-decoration-color:#fff\"><!--[if gte mso 9]> <img style=\"text-decoration: none; border: 0px; max-height: 100%; box-sizing: border-box; margin: 0px; position: relative; display: block; top: 0px; left: 0px; border-radius: 0px; max-width: 100% !important;\" src=\"https://assets-usa.mkt.dynamics.com/5d162280-f9ef-450a-aac0-46e4c9a0c659/digitalassets/images/1ebb1d44-1e9e-ef11-8a6a-00224806ff12?ts=638667006348593952\" alt=\"Everything comes to an end\" width=\"600\"> <![endif]--> <!--[if !mso]> <!----><img style=\"text-decoration:none;border:0;max-height:100%;box-sizing:border-box;margin:0;position:relative;display:block;top:0;left:0;border-radius:0;max-width:100%!important\" src=\"https://assets-usa.mkt.dynamics.com/5d162280-f9ef-450a-aac0-46e4c9a0c659/digitalassets/images/1ebb1d44-1e9e-ef11-8a6a-00224806ff12?ts=638667006348593952\" alt=\"Everything comes to an end\"><!--[endif]----></a>\r\n</div>\r\n</div><div style=\"background-color:transparent;font-family:Arial,Verdana,sans-serif;font-size:14px;color:#000\"><div class=\"contentBlockWrapper\" style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent\">\r\n<div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;padding:0;margin:0\">\r\n<div align=\"Center\" class=\"imageWrapper\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:14px; color:#fff; background-color:transparent;\"><a href=\"https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/hyovUNgKA0i4XqugQpwBAAMAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.leatherman.com%252Fpages%252Fleatherman-insider-rewards-program%253Futm_source%253DD365%2526utm_medium%253Demail%2526utm_campaign%253DWelcome_3_US%2526utm_id%253DWelcome_3_US%22%2C%22RedirectOptions%22%3A%7B%226%22%3A%22mktprfac25d6c53bec4773be94163ec00b827beoprf%22%2C%221%22%3Anull%7D%7D&msdynmkt_digest=GM3CaRgweQGbydNRqbeiX7AEMM3J0bAkjFMtfp9UFFg%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf\" data-msdyn-tracking-id=\"2d054d3e9c2c21726077191193\" style=\"text-decoration-color:#fff;text-decoration:none\"><!--[if gte mso 9]> <img style=\"text-decoration: none; border: 0px; max-height: 100%; box-sizing: border-box; margin: 0px; position: relative; display: block; top: 0px; left: 0px; border-radius: 0px; max-width: 100% !important;\" src=\"https://assets-usa.mkt.dynamics.com/5d162280-f9ef-450a-aac0-46e4c9a0c659/digitalassets/images/7838b9a3-6670-ef11-a671-6045bd03fd1c?ts=638616739710857126\" alt=\"Become a Leatherman Insider White Discounts\" width=\"600\"> <![endif]--> <!--[if !mso]> <!----><img style=\"text-decoration:none;border:0;max-height:100%;box-sizing:border-box;margin:0;position:relative;display:block;top:0;left:0;border-radius:0;max-width:100%!important\" src=\"https://assets-usa.mkt.dynamics.com/5d162280-f9ef-450a-aac0-46e4c9a0c659/digitalassets/images/7838b9a3-6670-ef11-a671-6045bd03fd1c?ts=638616739710857126\" alt=\"Become a Leatherman Insider White Discounts\"><!--[endif]----></a>\r\n</div>\r\n</div>\r\n</div></div><div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent\">\r\n<div class=\"contentBlockWrapper\" style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent\"><div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;margin:0;padding:0\"><div align=\"Center\" class=\"imageWrapper\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:14px; color:#fff; background-color:transparent;\"><!--[if gte mso 9]> <img src=\"https://assets-usa.mkt.dynamics.com/5d162280-f9ef-450a-aac0-46e4c9a0c659/digitalassets/images/ee20e5c2-1a2f-ef11-840a-6045bd03f662?ts=638544945493476848\" style=\"max-height: 100%; box-sizing: border-box; display: block; border-radius: 0px; max-width: 100% !important;\" width=\"600\"> <![endif]--> <!--[if !mso]> <!----><img src=\"https://assets-usa.mkt.dynamics.com/5d162280-f9ef-450a-aac0-46e4c9a0c659/digitalassets/images/ee20e5c2-1a2f-ef11-840a-6045bd03f662?ts=638544945493476848\" style=\"max-height:100%;box-sizing:border-box;display:block;border-radius:0;max-width:100%!important\"><!--[endif]----></div></div></div>\r\n</div><div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent\">\r\n<div class=\"contentBlockWrapper\" style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent\"><div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;margin:0;padding:0\"><div align=\"Center\" class=\"imageWrapper\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:14px; color:#fff; background-color:transparent;\"><!--[if gte mso 9]> <img src=\"https://assets-usa.mkt.dynamics.com/5d162280-f9ef-450a-aac0-46e4c9a0c659/digitalassets/images/ee20e5c2-1a2f-ef11-840a-6045bd03f662?ts=638544945493476848\" style=\"max-height: 100%; box-sizing: border-box; display: block; border-radius: 0px; max-width: 100% !important;\" width=\"600\"> <![endif]--> <!--[if !mso]> <!----><img src=\"https://assets-usa.mkt.dynamics.com/5d162280-f9ef-450a-aac0-46e4c9a0c659/digitalassets/images/ee20e5c2-1a2f-ef11-840a-6045bd03f662?ts=638544945493476848\" style=\"max-height:100%;box-sizing:border-box;display:block;border-radius:0;max-width:100%!important\"><!--[endif]----></div></div></div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n<!--[if gte mso 9]> <tr><td  style=\"font-size: 0px; line-height:0px;mso-line-height-rule: exactly; display: none !important; mso-hide:all;background-color: rgba(0, 0, 0, 0);\"><p style=\"font-size: 0px;height:0px; margin: 0px; padding:0;line-height: 0px; mso-line-height-rule: exactly; background-color: transparent;\"><br/></p></td></tr> <![endif]--></tbody>\r\n</table></div>\r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#FFFFFF\" align=\"center\" style=\"padding:10px 0\" role=\"presentation\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<table align=\"center\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\r\n<tbody>\r\n<tr align=\"center\" width=\"100%\" style=\"width:100%;max-width:100%;margin:0 auto 0 auto\">\r\n<td colspan=\"5\"></td>\r\n<td width=\"30\" style=\"max-width:30px;width:30px;padding:5px\">\r\n<div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent\"></div>\r\n</td>\r\n<td style=\"max-width:30px;width:30px;padding:5px\">\r\n<div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent\">\r\n<div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;padding:0;margin:0\">\r\n<div class=\"imageWrapper\" width=\"100%\" align=\"center\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:14px; color:#fff; background-color:transparent;\"><a href=\"https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/hyovUNgKA0i4XqugQpwBAAQAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.instagram.com%252Fleathermantools%22%2C%22RedirectOptions%22%3A%7B%225%22%3Anull%2C%221%22%3Anull%7D%7D&msdynmkt_digest=nvOGuG4I2nGYhi0ERrvjeWzP7zlvwIFGrBODPAG%2FKhs%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf\" data-msdyn-tracking-id=\"060e7af814e081672338229931\" style=\"text-decoration:underline;text-decoration-color:#fff\"><img src=\"https://assets-usa.mkt.dynamics.com/5d162280-f9ef-450a-aac0-46e4c9a0c659/digitalassets/images/97aa0616-d138-4b6e-8cf5-665809166589\" style=\"text-decoration:none;border:0;display:block;margin:0;max-height:100%;box-sizing:border-box;position:static;width:30px;height:30px;border-radius:0;top:0;left:0;max-width:100%!important\" width=\"30\" border=\"0\" alt=\"Follow Leatherman Tools on Instagram\" height=\"30\"></a>\r\n</div>\r\n</div>\r\n</div>\r\n</td>\r\n<td style=\"max-width:30px;width:30px;padding:5px\">\r\n<div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent\">\r\n<div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;padding:0;margin:0\">\r\n<div class=\"imageWrapper\" width=\"100%\" align=\"center\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:14px; color:#fff; background-color:transparent;\"><a href=\"https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/hyovUNgKA0i4XqugQpwBAAUAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.tiktok.com%252F%2540leatherman_tools%22%2C%22RedirectOptions%22%3A%7B%225%22%3Anull%2C%221%22%3Anull%7D%7D&msdynmkt_digest=Q%2BtWGReRj72RQbUq%2FbR6TC8rZeJDvTeXcEUXuOa5toQ%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf\" data-msdyn-tracking-id=\"55a2adb6bbc371672338239108\" style=\"text-decoration:underline;text-decoration-color:#fff\"><img src=\"https://assets-usa.mkt.dynamics.com/5d162280-f9ef-450a-aac0-46e4c9a0c659/digitalassets/images/bf64fe18-1e1e-42b5-9096-0fc0b8772140\" style=\"text-decoration:none;border:0;display:block;margin:0;max-height:100%;box-sizing:border-box;position:relative;width:30px;height:30px;border-radius:0;top:0;left:0;max-width:100%!important\" width=\"30\" border=\"0\" alt=\"Follow Leatherman Tools on Tiktok\" height=\"30\"></a>\r\n</div>\r\n</div>\r\n</div>\r\n</td>\r\n<td style=\"max-width:30px;width:30px;padding:5px\">\r\n<div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent\">\r\n<div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;padding:0;margin:0\">\r\n<div class=\"imageWrapper\" width=\"100%\" align=\"center\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:14px; color:#fff; background-color:transparent;\"><a href=\"https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/hyovUNgKA0i4XqugQpwBAAYAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.facebook.com%252FLeatherman%252F%22%2C%22RedirectOptions%22%3A%7B%225%22%3Anull%2C%221%22%3Anull%7D%7D&msdynmkt_digest=84RhT%2FPuyw1vcTGvfD4VBeV4i7oIMr1qbnfkDhxX0tc%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf\" data-msdyn-tracking-id=\"1c347b64588db1672338250130\" style=\"text-decoration:underline;text-decoration-color:#fff\"><img src=\"https://assets-usa.mkt.dynamics.com/5d162280-f9ef-450a-aac0-46e4c9a0c659/digitalassets/images/3a2ab2b8-6322-4c43-8003-7e65bf0b0d45\" style=\"text-decoration:none;border:0;display:block;margin:0;max-height:100%;box-sizing:border-box;position:relative;width:30px;height:30px;border-radius:0;top:0;left:0;max-width:100%!important\" width=\"30\" border=\"0\" height=\"30\" alt=\"Follow Leatherman Tools on Facebook\"></a>\r\n</div>\r\n</div>\r\n</div>\r\n</td>\r\n<td style=\"max-width:30px;width:30px;padding:5px\">\r\n<div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent\">\r\n<div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;padding:0;margin:0\">\r\n<div class=\"imageWrapper\" width=\"100%\" align=\"center\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:14px; color:#fff; background-color:transparent;\"><a href=\"https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/hyovUNgKA0i4XqugQpwBAAcAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.youtube.com%252Fuser%252FLeathermanMedia%22%2C%22RedirectOptions%22%3A%7B%225%22%3Anull%2C%221%22%3Anull%7D%7D&msdynmkt_digest=6cihZZw0kDmhbLEO15sccw8cxE1AlxAiapj9%2BZ8esXQ%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf\" data-msdyn-tracking-id=\"05f4617e605a71672338263640\" style=\"text-decoration:underline;text-decoration-color:#fff\"><img src=\"https://assets-usa.mkt.dynamics.com/5d162280-f9ef-450a-aac0-46e4c9a0c659/digitalassets/images/7a28b0c9-a603-454d-920e-fd9fb398d915\" style=\"text-decoration:none;border:0;display:block;margin:0;max-height:100%;box-sizing:border-box;position:relative;width:30px;height:30px;border-radius:0;top:0;left:0;max-width:100%!important\" width=\"30\" border=\"0\" alt=\"Follow Leatherman Tools on YouTube\" height=\"30\"></a>\r\n</div>\r\n</div>\r\n</div>\r\n</td>\r\n<td style=\"max-width:30px;width:30px;padding:5px\">\r\n<div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent\"></div>\r\n</td><td colspan=\"6\"></td>\r\n</tr>\r\n</tbody>\r\n</table><div class=\"emptyContainer columns-equal-class no-wrap-section\" style=\"font-size:14px;font-family:Arial,Verdana,sans-serif;color:#393b42;background-color:#fff;margin:0;border-radius:0\"><!--[if gte mso 9]> </div><div style=\"background-color: transparent; border:none;\"> <![endif]-->\r\n<table class=\"outer\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;display:block\">\r\n<tbody>\r\n<!--[if gte mso 9]> <tr><td  style=\"font-size: 0px; line-height:0px;mso-line-height-rule: exactly; display: none !important; mso-hide:all;background-color: rgb(255, 255, 255);\"><p style=\"font-size: 0px;height:0px; margin: 0px; padding:0;line-height: 0px; mso-line-height-rule: exactly; background-color: transparent;\"><br/></p></td></tr> <![endif]--><tr>\r\n<th style=\"background-color:#fff;padding:0 10px;border-color:#393b42;border-width:0;border-style:none;border-radius:0\">\r\n<table style=\"width:100%;border-collapse:collapse\" class=\"containerWrapper tbContainer multi\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<th class=\"columnContainer\" style=\"font-weight:400;text-align:left;vertical-align:top;min-width:5px;width:193.31px;height:0;max-width:33.33%\">\r\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"height:100%\">\r\n<tbody>\r\n<tr>\r\n<th class=\"columnContainer inner\" style=\"text-align:left;min-width:5px;padding:10px;vertical-align:top;word-wrap:break-word;word-break:break-word;font-weight:400\">\r\n<div style=\"font-family:Arial,Verdana,sans-serif;font-size:11;color:#393b42;background-color:transparent;margin:10px\">\r\n<p style=\"line-height:20px;margin:0;padding:0;mso-line-height-rule:at-least;text-align:center\">\r\n<span style=\"font-size:11px\"><strong><u><span style=\"text-decoration:underline;color:#393b42\"><a href=\"https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/hyovUNgKA0i4XqugQpwBAAgAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.leatherman.com%252Fpolicies%252Fprivacy-policy.html%22%2C%22RedirectOptions%22%3A%7B%226%22%3A%22mktprfac25d6c53bec4773be94163ec00b827beoprf%22%2C%221%22%3Anull%7D%7D&msdynmkt_digest=X4im4O%2BEp1tbyDGR%2FrtGq6DBzPuUh5o2ODH5onvmMtw%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf\" style=\"text-decoration-color:#fff;text-decoration:none\"><u><span style=\"text-decoration:underline;color:#393b42\">Privacy Policy</span></u></a></span></u></strong></span>\r\n</p>\r\n</div>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n<th class=\"columnContainer\" style=\"font-weight:400;text-align:left;vertical-align:top;min-width:5px;width:193.31px;height:0;max-width:33.33%\">\r\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"height:100%\">\r\n<tbody>\r\n<tr>\r\n<th class=\"columnContainer inner\" style=\"text-align:left;min-width:5px;vertical-align:top;word-wrap:break-word;word-break:break-word;padding:10px;font-weight:400\">\r\n<div style=\"font-family:Arial,Verdana,sans-serif;font-size:11;color:#393b42;background-color:transparent;margin:10px\">\r\n<div id=\"editorIdPrefixb9044443fdb9f1727468897266\" aria-readonly=\"false\" tabindex=\"0\" spellcheck=\"true\" aria-multiline=\"true\" aria-describedby=\"cke_58\" aria-controls=\"cke_59\" aria-activedescendant=\"\" aria-autocomplete=\"list\" aria-expanded=\"false\" style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;margin-top:0\">\r\n<div id=\"editorIdPrefix0b7bc5b1969771726601139358\" aria-readonly=\"false\" tabindex=\"0\" spellcheck=\"true\" aria-multiline=\"true\" aria-describedby=\"cke_59\" aria-controls=\"cke_60\" aria-activedescendant=\"\" aria-autocomplete=\"list\" aria-expanded=\"false\" style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;margin-top:0\">\r\n<div id=\"editorIdPrefixd3c8914fa24a91726600729130\" aria-readonly=\"false\" tabindex=\"0\" spellcheck=\"true\" aria-multiline=\"true\" aria-describedby=\"cke_59\" aria-controls=\"cke_60\" aria-activedescendant=\"\" aria-autocomplete=\"list\" aria-expanded=\"false\" style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;margin-top:0\">\r\n<p style=\"line-height:20px;margin:0;padding:0;mso-line-height-rule:at-least;text-align:center\">\r\n<strong><span style=\"font-size:11px\"><u><span style=\"text-decoration:underline;color:#393b42\"><span style=\"text-decoration:underline\"><span style=\"text-decoration:underline\"><a href=\"https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/hyovUNgKA0i4XqugQpwBAAkAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fpublic-usa.mkt.dynamics.com%252Fapi%252Fv1.0%252Forgs%252F5d162280-f9ef-450a-aac0-46e4c9a0c659%252Fconsent%252Fpreferences%253FcontextId%253D502a8642-f033-4b2e-b829-c3690eba0100%22%2C%22RedirectOptions%22%3A%7B%225%22%3Anull%2C%221%22%3Anull%7D%7D&msdynmkt_digest=nza%2FSWcySH4uvqg2LqdCOsX7Cqm5RgV1RXnhz3x1ITU%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf\" style=\"text-decoration-color:#fff;text-decoration:none\"><span style=\"text-decoration:underline;font-size:11px\"><u><span style=\"text-decoration:underline;color:#393b42\">Manage Preferences</span></u></span></a></span></span></span></u></span></strong>\r\n</p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n<th class=\"columnContainer\" style=\"font-weight:400;text-align:left;vertical-align:top;min-width:5px;width:193.31px;height:0;max-width:33.33%\">\r\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"height:100%\">\r\n<tbody>\r\n<tr>\r\n<th class=\"columnContainer inner\" style=\"text-align:left;min-width:5px;vertical-align:top;word-wrap:break-word;word-break:break-word;padding:10px;font-weight:400\">\r\n<div style=\"font-family:Arial,Verdana,sans-serif;font-size:11;color:#393b42;background-color:transparent;margin:10px\">\r\n<div id=\"editorIdPrefixfb2feb309ec4f1726601147730\" aria-readonly=\"false\" tabindex=\"0\" spellcheck=\"true\" aria-multiline=\"true\" aria-describedby=\"cke_116\" aria-controls=\"cke_117\" aria-activedescendant=\"\" aria-autocomplete=\"list\" aria-expanded=\"false\" style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;margin-top:0\">\r\n<div id=\"editorIdPrefix3d7c3e0d480691726600773087\" aria-readonly=\"false\" tabindex=\"0\" spellcheck=\"true\" aria-multiline=\"true\" aria-describedby=\"cke_116\" aria-controls=\"cke_117\" aria-activedescendant=\"\" aria-autocomplete=\"list\" aria-expanded=\"false\" style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;margin-top:0\">\r\n<p style=\"line-height:20px;margin:0;padding:0;mso-line-height-rule:at-least;text-align:center\">\r\n<span style=\"font-size:11px\"><strong><u><span style=\"text-decoration:underline;color:#393b42\"><span style=\"text-decoration:underline\"><a href=\"https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/hyovUNgKA0i4XqugQpwBAAoAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fpublic-usa.mkt.dynamics.com%252Fapi%252Fv1.0%252Forgs%252F5d162280-f9ef-450a-aac0-46e4c9a0c659%252Fconsent%252Fpreferences%253FcontextId%253D502a8642-f033-4b2e-b829-c3690eba0100%22%2C%22RedirectOptions%22%3A%7B%225%22%3Anull%2C%221%22%3Anull%7D%7D&msdynmkt_digest=nza%2FSWcySH4uvqg2LqdCOsX7Cqm5RgV1RXnhz3x1ITU%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf\" style=\"text-decoration-color:#fff;text-decoration:none\"><u><span style=\"text-decoration:underline;color:#393b42\">Unsubscribe</span></u></a></span></span></u></strong></span>\r\n</p>\r\n<div tabindex=\"0\" id=\"toolbarnav_blockd4e8299ef6aba1726600717347\" aria-label=\"[Navigate to toolbar]\" role=\"button\" class=\"editorAccessibilityButton\" style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent\">\r\n<br></div>\r\n</div>\r\n<div tabindex=\"0\" id=\"toolbarnav_block78853ad9fc491726600987515\" aria-label=\"[Navigate to toolbar]\" role=\"button\" class=\"editorAccessibilityButton\" style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent\">\r\n</div>\r\n</div>\r\n</div>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n<!--[if gte mso 9]> <tr><td  style=\"font-size: 0px; line-height:0px;mso-line-height-rule: exactly; display: none !important; mso-hide:all;background-color: rgb(255, 255, 255);\"><p style=\"font-size: 0px;height:0px; margin: 0px; padding:0;line-height: 0px; mso-line-height-rule: exactly; background-color: transparent;\"><br/></p></td></tr> <![endif]--></tbody>\r\n</table>\r\n</div>\r\n<div class=\"emptyContainer columns-equal-class no-wrap-section\" style=\"font-size:14px;font-family:Arial,Verdana,sans-serif;color:#393b42;background-color:#fff;margin:0;border-radius:0\"><!--[if gte mso 9]> </div><div style=\"background-color: transparent; border:none;\"> <![endif]-->\r\n<table class=\"outer\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;display:block\">\r\n<tbody>\r\n<!--[if gte mso 9]> <tr><td  style=\"font-size: 0px; line-height:0px;mso-line-height-rule: exactly; display: none !important; mso-hide:all;background-color: rgb(255, 255, 255);\"><p style=\"font-size: 0px;height:0px; margin: 0px; padding:0;line-height: 0px; mso-line-height-rule: exactly; background-color: transparent;\"><br/></p></td></tr> <![endif]--><tr>\r\n<th style=\"background-color:#fff;border-color:#393b42;border-width:0;border-style:none;padding:0;border-radius:0\">\r\n<table style=\"width:100%;border-collapse:collapse\" class=\"containerWrapper tbContainer\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<th class=\"columnContainer\" style=\"font-weight:400;text-align:left;vertical-align:top;min-width:5px;width:600px;height:0;max-width:100%\">\r\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"height:100%\">\r\n<tbody>\r\n<tr>\r\n<th class=\"inner\" style=\"text-align:left;min-width:5px;vertical-align:top;word-wrap:break-word;word-break:break-word;font-weight:400\">\r\n<div style=\"font-family:Arial,Verdana,sans-serif;font-size:11;color:#393b42;background-color:transparent;margin:10px 30px\"><div id=\"editorIdPrefix33e88d8604a4d1745257949053\" aria-readonly=\"false\" tabindex=\"0\" spellcheck=\"true\" aria-multiline=\"true\" aria-describedby=\"cke_59\" aria-controls=\"cke_60\" aria-activedescendant=\"\" aria-autocomplete=\"list\" aria-expanded=\"false\" style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;margin-top:0\"><p style=\"line-height:20px;margin:0;padding:0;mso-line-height-rule:at-least;text-align:center\"><span style=\"font-size:11px\"><span style=\"color:#393b42\">This email was sent to&nbsp;<span tabindex=\"0\" aria-label=\"widgetLabel\"><span tabindex=\"0\" aria-label=\"widgetLabel\"><span tabindex=\"0\" aria-label=\"widgetLabel\"><span tabindex=\"0\" aria-label=\"widgetLabel\"><span tabindex=\"0\" aria-label=\"widgetLabel\"><span tabindex=\"0\" aria-label=\"widgetLabel\"><span tabindex=\"0\" aria-label=\"widgetLabel\"><span tabindex=\"0\" aria-label=\"widgetLabel\"><span tabindex=\"-1\" role=\"region\" aria-label=\"widgetLabel\">Rick@mavrix.one</span></span></span></span></span></span></span></span></span></span></span></p><p style=\"line-height:20px;margin:0;padding:0;mso-line-height-rule:at-least;text-align:center\"><span style=\"font-size:11px\"><span style=\"color:#393b42\">by&nbsp;<strong>Leatherman Tool Group, Inc.</strong></span></span></p><p style=\"line-height:20px;margin:0;padding:0;mso-line-height-rule:at-least;text-align:center\"><span style=\"font-size:11px\"><span style=\"color:#393b42\"><span tabindex=\"0\" aria-label=\"widgetLabel\"><span tabindex=\"0\" aria-label=\"widgetLabel\"><span tabindex=\"0\" aria-label=\"widgetLabel\"><span tabindex=\"0\" aria-label=\"widgetLabel\"><span tabindex=\"0\" aria-label=\"widgetLabel\"><span tabindex=\"0\" aria-label=\"widgetLabel\"><span tabindex=\"0\" aria-label=\"widgetLabel\"><span tabindex=\"0\" aria-label=\"widgetLabel\"><span tabindex=\"-1\" role=\"region\" aria-label=\"widgetLabel\">12106 NE Ainsworth Circle Portland OR 97220-9001</span></span></span></span></span></span></span></span></span></span></span></p><p style=\"line-height:20px;margin:0;padding:0;mso-line-height-rule:at-least;text-align:center;display:none;font-size:11px\"><span style=\"font-size:11px\"><span tabindex=\"-1\" role=\"region\" aria-label=\"widgetLabel\">https://public-usa.mkt.dynamics.com/api/v1.0/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/consent/preferences?contextId=502a8642-f033-4b2e-b829-c3690eba0100</span>}}</span></p><p style=\"line-height:20px;margin:0;padding:0;mso-line-height-rule:at-least;text-align:center\"><span style=\"font-size:11px\"><span style=\"color:#393b42\">©&nbsp;<span tabindex=\"0\" aria-label=\"widgetLabel\"><span tabindex=\"0\" aria-label=\"widgetLabel\"><span tabindex=\"0\" aria-label=\"widgetLabel\"><span tabindex=\"0\" aria-label=\"widgetLabel\"><span tabindex=\"0\" aria-label=\"widgetLabel\"><span tabindex=\"0\" aria-label=\"widgetLabel\"><span tabindex=\"0\" aria-label=\"widgetLabel\"><span tabindex=\"0\" aria-label=\"widgetLabel\"><span tabindex=\"-1\" role=\"region\" aria-label=\"widgetLabel\">2025</span></span></span></span></span></span></span></span></span> Leatherman Tool Group, Inc. All Rights Reserved.<span style=\"line-height:1.25\">&nbsp;</span></span></span><br></p><p style=\"line-height:20px;margin:0;padding:0;mso-line-height-rule:at-least;text-align:center\"><span style=\"font-size:11px\"><span style=\"color:#393b42\"><span style=\"line-height:1.25\"></span></span></span><br></p><p style=\"line-height:20px;margin:0;padding:0;mso-line-height-rule:at-least;text-align:center\"><span style=\"font-size:11px\"><span style=\"color:#393b42\"><span style=\"line-height:1.25\"><strong style=\"line-height:1.25\">Free Shipping:</strong> Limited-time offer. Exclusions apply. Available only on www.leatherman.com for your first order. Promotion only valid on orders $40 or over. This one-time use code is valid up to 20 days from its original send date. The promotion will be activated by clicking any button within this email. Code will auto-apply at checkout. Standard Shipping only. Excludes Expedited and Express Shipping. Limit 1 transaction per customer. Promotion cannot be combined with other offers. Pro members not eligible.</span></span></span></p><div tabindex=\"-1\" id=\"toolbarnav_block7d0a2e313978981745256036972\" aria-label=\"[Navigate to toolbar]\" role=\"button\" class=\"editorAccessibilityButton\" style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent\"></div></div></div>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n<!--[if gte mso 9]> <tr><td  style=\"font-size: 0px; line-height:0px;mso-line-height-rule: exactly; display: none !important; mso-hide:all;background-color: rgb(255, 255, 255);\"><p style=\"font-size: 0px;height:0px; margin: 0px; padding:0;line-height: 0px; mso-line-height-rule: exactly; background-color: transparent;\"><br/></p></td></tr> <![endif]--></tbody>\r\n</table>\r\n</div></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div><!--[if gte mso 9]> </th></tr></table><p style=\"height:0px; margin-bottom:0; margin-top:0; padding:0;line-height: 0px; mso-line-height-rule: exactly; background-color: transparent;\"></p> <![endif]--><img src=\"https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/i/hyovUNgKA0i4XqugQpwBAAsAAAA\" width=\"0\" height=\"0\" data-tracking /></body></html>','[Shop multi-tools and knives at Leatherman.com <https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/hyovUNgKA0i4XqugQpwBAAwAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.leatherman.com%252F%253Futm_source%253DD365%2526utm_medium%253Demail%2526utm_campaign%253DWelcome_3_US%2526utm_id%253DWelcome_3_US%22%2C%22RedirectOptions%22%3A%7B%226%22%3A%22mktprfac25d6c53bec4773be94163ec00b827beoprf%22%2C%221%22%3Anull%7D%7D&msdynmkt_digest=2%2BsRH%2FM5lkRifxE82ypNXKOCH97GJKjqFV%2BZLPFpkzQ%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf>]\r\n[Free shipping ends soon <https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/hyovUNgKA0i4XqugQpwBAA0AAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.leatherman.com%252Fcollections%252Fmulti-tools%253Futm_source%253DD365%2526utm_medium%253Demail%2526utm_campaign%253DWelcome_3_US%2526utm_id%253DWelcome_3_US%22%2C%22RedirectOptions%22%3A%7B%226%22%3A%22mktprfac25d6c53bec4773be94163ec00b827beoprf%22%2C%221%22%3Anull%7D%7D&msdynmkt_digest=6hC0PEZnfJeTuW5Iob%2F9AxLOYRWuqG2cV4upBGiREzM%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf>]\r\n[Everything comes to an end <https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/hyovUNgKA0i4XqugQpwBAA4AAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.leatherman.com%252Fcollections%252Fmulti-tools%253Futm_source%253DD365%2526utm_medium%253Demail%2526utm_campaign%253DWelcome_3_US%2526utm_id%253DWelcome_3_US%22%2C%22RedirectOptions%22%3A%7B%226%22%3A%22mktprfac25d6c53bec4773be94163ec00b827beoprf%22%2C%221%22%3Anull%7D%7D&msdynmkt_digest=6hC0PEZnfJeTuW5Iob%2F9AxLOYRWuqG2cV4upBGiREzM%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf>]\r\n[Become a Leatherman Insider White Discounts <https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/hyovUNgKA0i4XqugQpwBAA8AAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.leatherman.com%252Fpages%252Fleatherman-insider-rewards-program%253Futm_source%253DD365%2526utm_medium%253Demail%2526utm_campaign%253DWelcome_3_US%2526utm_id%253DWelcome_3_US%22%2C%22RedirectOptions%22%3A%7B%226%22%3A%22mktprfac25d6c53bec4773be94163ec00b827beoprf%22%2C%221%22%3Anull%7D%7D&msdynmkt_digest=GM3CaRgweQGbydNRqbeiX7AEMM3J0bAkjFMtfp9UFFg%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf>]\r\n[Follow Leatherman Tools on Instagram <https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/hyovUNgKA0i4XqugQpwBABAAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.instagram.com%252Fleathermantools%22%2C%22RedirectOptions%22%3A%7B%225%22%3Anull%2C%221%22%3Anull%7D%7D&msdynmkt_digest=nvOGuG4I2nGYhi0ERrvjeWzP7zlvwIFGrBODPAG%2FKhs%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf>]\r\n[Follow Leatherman Tools on Tiktok <https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/hyovUNgKA0i4XqugQpwBABEAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.tiktok.com%252F%2540leatherman_tools%22%2C%22RedirectOptions%22%3A%7B%225%22%3Anull%2C%221%22%3Anull%7D%7D&msdynmkt_digest=Q%2BtWGReRj72RQbUq%2FbR6TC8rZeJDvTeXcEUXuOa5toQ%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf>]\r\n[Follow Leatherman Tools on Facebook <https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/hyovUNgKA0i4XqugQpwBABIAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.facebook.com%252FLeatherman%252F%22%2C%22RedirectOptions%22%3A%7B%225%22%3Anull%2C%221%22%3Anull%7D%7D&msdynmkt_digest=84RhT%2FPuyw1vcTGvfD4VBeV4i7oIMr1qbnfkDhxX0tc%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf>]\r\n[Follow Leatherman Tools on YouTube <https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/hyovUNgKA0i4XqugQpwBABMAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.youtube.com%252Fuser%252FLeathermanMedia%22%2C%22RedirectOptions%22%3A%7B%225%22%3Anull%2C%221%22%3Anull%7D%7D&msdynmkt_digest=6cihZZw0kDmhbLEO15sccw8cxE1AlxAiapj9%2BZ8esXQ%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf>]\r\n[Privacy Policy <https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/hyovUNgKA0i4XqugQpwBABQAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.leatherman.com%252Fpolicies%252Fprivacy-policy.html%22%2C%22RedirectOptions%22%3A%7B%226%22%3A%22mktprfac25d6c53bec4773be94163ec00b827beoprf%22%2C%221%22%3Anull%7D%7D&msdynmkt_digest=X4im4O%2BEp1tbyDGR%2FrtGq6DBzPuUh5o2ODH5onvmMtw%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf>]\r\n[Manage Preferences <https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/hyovUNgKA0i4XqugQpwBABUAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fpublic-usa.mkt.dynamics.com%252Fapi%252Fv1.0%252Forgs%252F5d162280-f9ef-450a-aac0-46e4c9a0c659%252Fconsent%252Fpreferences%253FcontextId%253D502a8642-f033-4b2e-b829-c3690eba0100%22%2C%22RedirectOptions%22%3A%7B%225%22%3Anull%2C%221%22%3Anull%7D%7D&msdynmkt_digest=nza%2FSWcySH4uvqg2LqdCOsX7Cqm5RgV1RXnhz3x1ITU%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf>]\r\n[Unsubscribe <https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/hyovUNgKA0i4XqugQpwBABYAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fpublic-usa.mkt.dynamics.com%252Fapi%252Fv1.0%252Forgs%252F5d162280-f9ef-450a-aac0-46e4c9a0c659%252Fconsent%252Fpreferences%253FcontextId%253D502a8642-f033-4b2e-b829-c3690eba0100%22%2C%22RedirectOptions%22%3A%7B%225%22%3Anull%2C%221%22%3Anull%7D%7D&msdynmkt_digest=nza%2FSWcySH4uvqg2LqdCOsX7Cqm5RgV1RXnhz3x1ITU%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf>]\r\nThis email was sent to\r\nRick@mavrix.one by\r\nLeatherman Tool Group, Inc. 12106 NE Ainsworth Circle Portland OR 97220-9001 https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/hyovUNgKA0i4XqugQpwBABcAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fpublic-usa.mkt.dynamics.com%252Fapi%252Fv1.0%252Forgs%252F5d162280-f9ef-450a-aac0-46e4c9a0c659%252Fconsent%252Fpreferences%253FcontextId%253D502a8642-f033-4b2e-b829-c3690eba0100%22%2C%22RedirectOptions%22%3A%7B%225%22%3Anull%2C%221%22%3Anull%7D%7D&msdynmkt_digest=nza%2FSWcySH4uvqg2LqdCOsX7Cqm5RgV1RXnhz3x1ITU%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf }} ©\r\n2025 Leatherman Tool Group, Inc. All Rights Reserved. Free Shipping: Limited-time offer. Exclusions apply. Available only on www.leatherman.com for your first order. Promotion only valid on orders $40 or over. This one-time use code is valid up to 20 days from its original send date. The promotion will be activated by clicking any button within this email. Code will auto-apply at checkout. Standard Shipping only. Excludes Expedited and Express Shipping. Limit 1 transaction per customer. Promotion cannot be combined with other offers. Pro members not eligible.',0,0,0,0,0,0,'2025-08-28 10:59:02','2025-12-09 19:27:53','2025-12-09 19:27:53','2025-12-09 19:27:53',NULL,NULL,NULL),
(647,4,'<E842F977-6132-4A6A-BDB5-3DDA64B32AFC@mavrix.one>',NULL,NULL,'Mavrix.one - Confidentiality Notice in Signature Line','Brian@mavrix.one','Brian Stufflebean','\r\n--Apple-Mail=_1F55D2E7-8487-494F-8BFB-0B1B2140CB97\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Type: text/html;\r\n	charset=us-ascii\r\n\r\n<html><head><meta http-equiv=3D\"content-type\" content=3D\"text/html; =\r\ncharset=3Dus-ascii\"></head><body style=3D\"overflow-wrap: break-word; =\r\n-webkit-nbsp-mode: space; line-break: after-white-space;\">Best =\r\nRegards,<div><br></div><div><br></div><div><br><div>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; orphans: auto; text-align: start; text-indent: 0px; =\r\ntext-transform: none; white-space: normal; widows: auto; word-spacing: =\r\n0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\">Brian C. Stufflebean<br>CEO, =\r\nCo-Founder<br><br></div><span style=3D\"caret-color: rgb(0, 0, 0); color: =\r\nrgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; orphans: auto; text-align: start; text-indent: 0px; =\r\ntext-transform: none; white-space: normal; widows: auto; word-spacing: =\r\n0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"></span><span><img alt=3D\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" =\r\nsrc=3D\"cid:CB596987-D3CC-4C61-B9D3-CE1C1DF1C723\"></span><meta =\r\ncharset=3D\"UTF-8\"><div style=3D\"font-family: Helvetica; font-size: 12px; =\r\nfont-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br =\r\nclass=3D\"Apple-interchange-newline\"><br =\r\nclass=3D\"Apple-interchange-newline\"><br><br><br><a =\r\nhref=3D\"https://mavrix1.com\">https://mavrix1.com/</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><br><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY =\r\nNOTICE:</b><span style=3D\"font-family: Helvetica; font-style: normal; =\r\nfont-weight: 400; font-size: =\r\n12px;\">&nbsp;This&nbsp;communication&nbsp;is =\r\nconfidential&nbsp;and&nbsp;intended only for the =\r\nintended&nbsp;recipient.&nbsp;&nbsp;If you are not the =\r\nintended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, =\r\nor&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any =\r\nsuch&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this =\r\ncommunication&nbsp;in error,&nbsp;please contact the sender =\r\nof&nbsp;the&nbsp;message to inform him or her of =\r\nthe&nbsp;error.<br><br></span></div>\r\n</div>\r\n<br></div></body></html>=\r\n\r\n--Apple-Mail=_1F55D2E7-8487-494F-8BFB-0B1B2140CB97\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\r\nContent-Type: image/png;\r\n	name=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\"\r\nContent-Id: <CB596987-D3CC-4C61-B9D3-CE1C1DF1C723>\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGwAAAAYCAYAAAAf1RgaAAAAAXNSR0IArs4c6QAAAIRlWElmTU0A\r\nKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdp\r\nAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAGyg\r\nAwAEAAAAAQAAABgAAAAABrPxEgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5h\r\nZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9\r\nIlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9y\r\nZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6\r\nYWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZm\r\nLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgog\r\nICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAA\r\nC6FJREFUaAXtWnuMVUcZnznPe/fuZYEtDxHCQ1ADBNuuAlKh24dRaqURWFotj5haKAn9SxOaauRi\r\nxEBsMMFSAmnUCDTKWtDioyEm3RLKq6VKC7Rg20VA5Lmwz3vPa8bfN+ecu+fevbugjQQrX5g735n5\r\nvm++13wz5yyc3YKb0gP19a8YTU33+NNmbx0puHjJtGsm+U7beoMxyRsaGrUJE45JxlbclMp/1JXK\r\nsZWM5XLwP6PG6+tzOgVr8tzN0wWTjRq3hojAw6TU+EfdGf9T9uVyGsutQNC4nDpn8zz0m7lmWEwE\r\njm6mbd/r3MCnzNk6DlEbyRFCqfNbAbyBEeaBlJzrkula1mOFQ683fvMcLT917tblGF8dbTgmhe8a\r\nZsbyvY4NhsbEdwy7ZrHntDHOtBuo7q2lGLyvGSnmOe2/fH3S3//EGhGsOZuf03RrKRMC/3wBL30f\r\n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\r\n--Apple-Mail=_1F55D2E7-8487-494F-8BFB-0B1B2140CB97--','Best Regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n\r\n￼\r\n\r\n\r\n\r\n\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-08-28 16:10:02','2025-12-09 19:27:53','2025-12-09 19:27:53','2025-12-09 19:27:53',NULL,NULL,NULL),
(648,4,'<etPan.68b08198.79e2a9e3.84dc@mavrix.one>',NULL,NULL,'Test','rick@mavrix.one','Rick','<html><head></head><body><br><br><div  class=3D=22gmail=5Fsignature=22>\r\n        <title></title>\r\n    =20\r\n    <br>\r\n    =20\r\n<div><span style=3D=22font-family: Helvetica, Arial;=22>Rick Mislan, PhD,=\r\n&nbsp;</span><div style=3D=22font-family: Helvetica, Arial;=22>=46ounder,=\r\n CTO</div><div style=3D=22font-family: Helvetica, Arial;=22><img class=3D=\r\n=22imgAttach=22 src=3D=22data:image/jpg;base64,/9j/4AAQSkZJRgABAQAASABIAA=\r\nD/4QCMRXhpZgAATU0AKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAA=\r\nAUgEoAAMAAAABAAIAAIdpAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAA=\r\nAQABAACgAgAEAAAAAQAAAGygAwAEAAAAAQAAABgAAAAA/+0AO=46Bob3Rvc2hvcCAzLjAAOEJ=\r\nJTQQEAAAAAAAAOEJJTQQlAAAAAAAQ1B2M2Y8AsgTpgAmY7PhCfv/AABEIABgAbAMBEQACEQED=\r\nEQH/xAAfAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgv/xAC1EAACAQMDAgQDBQUEBAAAA=\r\nX0BAgMABBE=46EiExQQYTUWEHInEUMoGRoQgjQrHB=46VLR8CQzYnKCCQoW=46xgZGiUmJygp=\r\nKjQ1Njc4OTpDREVGR0hJSlNUVVZXW=46laY2RlZmdoaWpzdHV2d3h5eoOEhYaHiImKkpOUlZa=\r\nXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4eLj5OXm5+jp6vHy8/T1=\r\n9vf4+fr/xAAfAQADAQEBAQEBAQEBAAAAAAAAAQIDBAUGBwgJCgv/xAC1EQACAQIEBAMEBwUEB=\r\nAABAncAAQIDEQQ=46ITEGEk=46RB2=46xEyIygQgUQpGhscEJIzNS8BVictEK=46iQ04SXx=46=\r\nxgZGiYnKCkqNTY3ODk6Q0R=46RkdISUpTV=46VWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4S=46=\r\nhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8T=46xsfIycrS09TV1tfY2dri4+T=\r\nl5ufo6ery8/T19vf4+fr/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB=\r\nAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/2wBDAQEBAQEBAQEBAQEBAQEBAQEBAQEBA=\r\nQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/3QAEAA7/2gAMAw=\r\nEAAhEDEQA/AP6=46/hz/AM=46Mv2+PjlH401z4Df8ABOvSPib4I8H/ABC8UfDqXxTb/tB+G/D=\r\nyza34Ymtmu4H07xJp+lXySiyv9NunaKGa1/0tY47h3SVIv6EzXwr8PeHpYHDcQ+JdXKsfjsrw=\r\nGaxwk+GcTinHD46jz02qu=46q1qdueNWCTkpvk5nCPN73wu=464mz3HKtUwHDscTQo4mthnVW=\r\nYUqd50ZWa5asISTs4ydk4rmspSs+X0f/hsb/gr=46/wBIqtP/APEn/h3/APHK8r/Urwg/6O9P=\r\n/wARHMjp/tnir/olV/4c8MH/AA2N/wA=46Yv8Ap=46Vp/wD4k/8ADv8A+OUf6leEH/R3p/8Ai=\r\nI5kH9s8Vf8ARKr/AMOeG=46/4bG/4Kx/9IqtO/wDEofhyf5=46f5/lk7j/Urwg/6O9P/wARHM=\r\ng/tnir/olV/wCHPDCf8Njf8=46Yv+kVWn/8AiT/w7/8AjlH+pXhB/wBHen/4iOZB/bP=46X/R=\r\nKr/w54YP+Gxv+CsX/AEiq0/8A8Sf+HX/xf9fyxR/qV4Qf9Hen/wCIjmQf2zxV/wBEqv8Aw54Y=\r\nX/hsb/grH/0iq07/AMSh+HP/ANf+f50f6leEH/R3p/8AiI5kH9s8Vf8ARKr/AMOeGD/hsb/gr=\r\nH/0iq07/wASh+HJ/kV/n+WTuP8AUrwg/wCjvT/8RHMg/tnir/olV/4c8MH/AA2N/wA=46Y/8A=\r\np=46Vp/wD4lB8Oj/Jl/wA+nO4/1K8IP+jvT/8AERzIP7Z4q/6JVf8Ahzwwn/DY3/BWL/p=46V=\r\np//AIk/8Ov/AIv/AA/mGP8AUrwg/wCjvT/8RHMg/tnir/olV/4c8MH/AA2N/wA=46Yv8Ap=46=\r\nVp/wD4lB8Ov5bxj8Sc+2KP9SvCD/o70/8AxEcyD+2eKv8AolV/4c8ML/w2L/wVjyB/w6q07k/=\r\n9HRfDj+pUfr9cDJo/1K8IP+juz/8AERzL/gfn9wf2xxV/0Sy+eZ4Y9Q/ad+K3/BRa8+Gngr4X=\r\n/s/fs+6Rpfx8+J=46hbp47+LUXivSNS+DHwCt9YnuYiml6z4jGma3448WaLYItzqOpQ+CJ/D+=\r\nj3O2TS9O8X3b29hXk8K5R4ZwzTMM24j4kr1eHsrqzeXZM8=46WpZ7xHKjGLTq0MM6+=46y7B1=\r\nqj5YUp5gsTWj7s6uEgp1DpzP=468RPDUMLl+Xwjj8T=46fWMWqsJ4LL1JtWjOp7OriKsVq5Kh=\r\nGEN4qq7RP51Phh4G8V/DrxN+0H4D8ceNLv4g+M/B/7RXxG8OeK/HN9LqU914s8Q6PDoNhq/iC=\r\nafVbi61OZ9VvoJ7wzahO95J5u+4xKzqv8AS+d47CZng+=46cxwGChluBx3CmXYrB5fTVKMM=46=\r\nhq2Jx0qGGjGjG=46JKlT5Y2pxUE1pdNSl+eYWlWw1bMsPWrSx=46ajmVenWruUr1qsKdBTqNz=\r\nbk3OSbvJ3720P/Q8e+Ol78S/=46Hxb/4Jkfs7+Efj38ffgZ4=46/aQ/4Kc/tVfDb4p3fwC+K/=\r\nin4WeIda8Paz4k/ZM0Z5WvfD97=46ZXWqabYaxqkeiXmsafqkelPf3TwW+J50n/dvHmTX=46H=\r\nDtm/+SB4e622hJp/K8rf4nZq9pfEc=4665fj=463zrM=46p6w/r/hj75/4Lnf8ABO=46P+Ce3=\r\n/BO34oftR/AD9vj/AIKhSfErwT4z+=46OkaXb+Pf23viP4m8MXOn+NPHeme=46dWhvdLtINDu=\r\n2dLHUZLiznh1KJ4buCAyCaEzRS/h0ak27Nv8v6/ruj7KU=46=46XTe6Wr7tL9fPtpe59d+Av+=\r\nCNvg3xH+wL4I/a=46v8A/goJ/wA=46YY/iV4j/AGQ/DvxmvLy1/bq8eRaL=46441X4LW3j6ee=\r\n20RtKcJpMevSsINLe8YrYqls947g3Dz7Sfd/wBfiNU07O8tdd/00/P7j8o/h7/wUO8P+K/+CG=\r\n/7DPxS/wCCiHxn/wCCknj7xfr37V/xj+Dfgvxp+xV8ZdO+Hvxx8XXXh221VPDWi/=46DxVrOu=\r\n6JqHj7TLfSrlrDTXu7vUtfu9Ut9Le9lvJY3mnfvKUuWXL1f9a9+2nmSnen=46yvu7crSfWyvp=\r\n2S210btZm6PDXhIO=46P7KX/B4vuEmxk/4WV4m3bg+1k2jxAp3Ajbt+U7uMg/NRzy/5+fg/wA=\r\n7W+dvl0=46yx/kq/f8A/dC//wAEkPDH7TP/AAU8+Cf/AAVw/Yk1z9rL9uP4R3P7PXxo8E63+x=\r\nz42+NXxY8eWP7Tf7O/iXUdU+OOj2/gj4yeI9A1+x8Qa1o91Y+Gd=468Pf=46n4cTX1zoGnapD=\r\nq+seEdP0bxHBY6hA3JpqV3eS11etrett9NPvuyoq6cddGrX3Xrt81fXe6v7v7Sf8ABHP/AIKq=\r\neMfGWhfGX9hX/gpVqumfCP8A4KBfsHaNrKfGTUvHeq6fouk/=4674N+CbCO6/4aBsdfvJLfSr=\r\n5NL8NGw1b4g63bSto+saHf6H8VNInfRv=46GoWHh6JK9mrtPbr8uv5/fYqMntLRrv1Xrp08td=\r\n9D5O/Zw+Jf7Rn/AAXs/wCCg=46x+0d4V8d/Gr4Df8Egv2L/=46Wq+GfhdpPgTxp43+Eur/ALb=\r\n/AMWNLu7abUdW8WTeG9U0XVr/AOHwlttP1DWdP1=46nh0Hwd/YvgWzsbLxj42+IV7oDu4LRvm=\r\na6aWW/nr93fTaS+Np39xbWtq/8vLX8Wo+ZeEvh98Uf+Cm//Bdv/gp5+zv8cf2yP21fhr8=46/=\r\nwBlHwp8O4fgz8Pv2Zf2gvEPwM8P6Gms2vgi1vTfad4dtLqw1O4nl1LU7+81G4tP7W1G+vSb3U=\r\nZLOz0+0tXzOMVZtNtt/wBf1+JPxzkneyWln527L13f4I+u/wBtr/gm1oX/AAT/AP2EP27v2lP=\r\ng9+2Z/wA=46Gf=46/xE8Mfsg/GfS/DkHxm/bD8dfEHwzoV7q+mWGzxTpGlfY9IuNN8YaKbMN4=\r\nf8QWWpQXWlPcXUkSvK8bxCnJtJt7rrb+vn+pTgopvV6W1/Ndn8vuMX9jL9lrxJ/wUd/4IMfsX=\r\n6x40/a9/aT+A3x80H4YeOPGPhj9q3wX8cviNovi/Q9atPib45869+Kk48Z6ZbfEzwMtpoGkrr=\r\nem+L9QW90zStME/hvxH4auomuWXPJSbu93fV6/ntbTT70KMVKEb6O2/b8Vf539D8QNE/4L3/8=\r\nABQ/47f8AC=46/8EtIf2mP2Wvhh8Qde+NHib9nfxN/wWH07XPEEHwz8aeCdDs4beLWvh9OfC+=\r\nh+HNK+J/ieCeO20/4i2b6DDq8uveGH0u0+HOo6p/wsq3dlvrte3W3bS2i9fusLnduW8U725ru=\r\n1tdtHrpb4vPWzR/cV+x=46+x94d/Yo+B2ifCHSvip8a/jhrySw6t44+LXx9+Jfi34mfEDxx4t=\r\nksrWzvtWlufE+tata+=46d=46WK2ittE8He=464rDQtIsY0kkXVNZutV13VJ5m38padNV8r39=\r\nPW1kaxjyq2/dvd/n8l91tj+abX/APk4b9tH/s8b44f+nTTa/tiH/JL+Hv8A2QeR/wDpeNPx2f=\r\n8AyMs8/wCxzi//AEmkf//R9o+H/h/9lQ/EX4LePv2n/ht+3Ufiv+xh+2v8Yv2hfgx=468CfBf=\r\nhJvh14jbxVrPwvuorD4iJ4z02bXNVtk1b4UWL/ZfDV54bnjsri5hfVpZbkpaf1x4jeHGY8dZl=\r\nkecZRnvCNDDUeEsjy2dPMs9pYfERr0KHtKrVOlGulG06cVzz5lJVE4K0eb8syDPsPk+Hxe=46=\r\nxeBzWdSWaYzERlh8=46OdNwqTSj70n=46tvkd7cqtZp6px/Rv8A4KBftm/sR/8ABSD9mPxh+y=\r\nj8cPgv/wA=46DvC3w88a614N13VNZ+=46nwx8BaN4yt7vwP4nsf=46WlRW=4694rv/ABnokdt=\r\nc3+nxW+opc6DdSyWUkq2s1pcbJ0/PY+AfE0Xf/WTgJ+T4kVvXTDR1/wC3l89Ue/LjXL5K39nZ=\r\n4vTL2npr1rS6+X36cvtvh3/gqP8AspeGf2evD/7NVh8BP265fAfhv4M6X8DbHUrr4U+=4638V=\r\ny+EdJ8CxfD62vrq/i8TQ6Y/i=469=46hW4mvI9JisG1MtOmmpbEWir/iAfEv/AEUnAW//AEUq=\r\n+7/dL+Qf67Zekl/Z2eaaX/s9/wDy23ntH03ifkOfgv8A8EjLn9grw=46/wT41j4Kf8=46Tda+=\r\nGnws+L+vfHP4bf=46Ofw58PtJ+Ongn4i+InvBqGq6N4l8NRaL4OltRaX1xYw6bqfgS+tRGLa9=\r\nYHV7DT9St6/4gLxNzN/6ycA6qzX+sit/6Y/9ul6atE/66ZdyqP8AZ2eWTvf+z9fv9o117fN/D=\r\nJg8O/s65B/4bx/4Oh8gg5Px+8=46lsjnJY+=46ixbPJZnLE8ksc0/8AiA3Ev/RQeH//AIkn/w=\r\nBwD/XTAf8AQDn3/hCfSf8AwTh+Jf7An/BMrxL+0T4z+EXg3/gqx8Xf=46/7UWt+=46fEvxX8U=\r\n/tGe=46fhz478Q6n4g8K3fjDUE1uHV/Dkfgq8uNV13UPHOt33iPUNcfWbrUbo20yS27JN9oUv=\r\nATiWVv+Mj4BVu3EiXy1w0tum3zumOPGmXxv/wn54773y9v56VIf100bO=46/4KTWv/BKz/gqH=\r\n4z8CfEv44fs+/8ABST4bfE7wP4c1fwTJ8RfgH4E+H/grxX418Aass//ABQnj268Ry+M7PxB4a=\r\n0ya91SfR4fsNre2A1jWLH7bNpWo3=46hSXgJxMr/APGScBO/fiRO1uq/2eP5P8EEuNMul/zLs=\r\n8Vu2Aav99WX5r8T9MPgV/wVI/Yu/Zq+D3w9+AnwU/ZI/a48CfCr4W+=467Dwh4L8K6T8GtH=46=\r\ntpuk2KMXlmnk8ctc6jq2qXst1q+va1qEs+qa7rl/qOs6reXmo31zcMn4B8S6/8ZLw=46v8A9=46=\r\nJ=46fh9Vf5v1d7jXG2XpJf2bnemn/Iuf6Vl+X3nyb8Bv2kP2C/2eP22f2rP28vBXwf8A+CkGp=\r\n/=46/9sCw8N6d8SvDvif4cfDq8+HOhw+=46/wCyPsUngfSdLl0jxJp81yd=46szeNr3ivxGhB=\r\nmW2jtt6hH/xAPiZpL/WTgLTr/rIru/f/AGZr/wAlj/29q4pca5cpOX9nZ5d/9S92+X7xP8fvu=\r\npH0f+1N/wA=46L/2Sf2uv2dvjH+zN8SvgR+3lo/gL43+Atd+HfivVPBfwq8Jad4rsNE8QQC3v=\r\nLnQL7WfEWu6Ta6nEihraXUNG1K1Vs+baSqdtJeAfEqaf+snATt0/1kVn62wq/Neqvcb42y9pr=\r\n+zs7V+2Xv8AWrL/ANJfy3Pzr8bah+wd4x/YK+DH/BNy1uP+CxngT9mH4R2GpaRrOj/D3wz8=46=\r\nPDni/436LqHiLUfEyeH/jR4qbwxfS6x4astS1jU5I/DXhKx8HaJqLT2s2v2OsT6Tpj2tLwE4l=\r\nTb/wBY+AW2+vEm3p/s/nfVy8nu5T/rpl/Ko/2fntl2w=46m/V+0e3ko+bke7eNPir/wSC8cfs=\r\nX2v7Ampf8E6v2ldP/Zr0jTTH4X8M6H8Et=4607xD4Q8Ui2kij+J3hvxofHE/iS2+KhuJZtQ1H=\r\nx3e31/rPiOe4vrTxVLr+kalqWmXa/wCIB8TXv/rNwHv/AN=46JHXyf+zrT/t77r+63xrlzXK8=\r\ntzu3/AGL3p5q1Va9duvW/KevfsSft/fs4fsPfAzQ/2ffDmm/8=46Tfjz4J8Iz+T4H1T9pDwL8=\r\nNfGvjTwZ4ZS2toLLwLo/ibwr/wg9ze+D9=46aB28O6f4gh1i90C0nGh6XqVt4dstK0nTx+AnE=\r\nrd/9ZOAo77cSLt54WX5vf0HHjXL0rf2dnj9cvbt81Vj+N/1l8UeD77X/ir47/aQ+KWi/Dv4la=\r\nRoPxK/aT+J3jrQLDx=464L1e01uDRfE50bVNOXU7W0ivLe3v=46guAk8UN3cwrKr+TPNEUkb9=\r\nrzOnh8oy3hHJ6+ZZVXxOU8J5Zl2JqYPMMPXw7xG=46r42nU9lUVaLlBtJx5oQk4OLcVc+Ooyq=\r\nYrE5piqeGxUKeKzPEV6cauHqQqKnUhRceaPLLW2js2r6dD/9k=3D=22 alt=3D=22=22></di=\r\nv><div style=3D=22font-family: Helvetica, Arial;=22><a href=3D=22http://m=\r\navrix1.com/=22>mavrix1.com</a></div></div><div><br></div><div><br></div><=\r\ndiv><div>CON=46IDENTIALITY NOTICE: This communication is confidential and=\r\n intended only for the intended recipient. &nbsp;If you are not the inten=\r\nded recipient, you may not copy, disclose, or distribute this message to =\r\nanyone else; any such actions may be unlawful. If you have received this =\r\ncommunication in error, please contact the sender of the message to infor=\r\nm him or her of the error.</div><div><br></div></div>\r\n\r\n</div></body></html>','\r\n        \r\n    =20\r\n    \r\n    =20\r\nRick Mislan, PhD,=\r\n&nbsp;=46ounder,=\r\n CTOmavrix1.comCON=46IDENTIALITY NOTICE: This communication is confidential and=\r\n intended only for the intended recipient. &nbsp;If you are not the inten=\r\nded recipient, you may not copy, disclose, or distribute this message to =\r\nanyone else; any such actions may be unlawful. If you have received this =\r\ncommunication in error, please contact the sender of the message to infor=\r\nm him or her of the error.\r\n\r\n',0,0,0,0,0,0,'2025-08-28 16:19:11','2025-12-09 19:27:53','2025-12-09 19:27:53','2025-12-09 19:27:53',NULL,NULL,NULL),
(649,4,'<BD94A7BF-6A1D-4BC9-BC5D-3AD59C5ED396@mavrix.one>',NULL,NULL,'Lithium Battery Co - Info and sheets','Brian@mavrix.one','Brian Stufflebean','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=us-ascii\"></head><body style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"><div><div><span></span><meta charset=\"UTF-8\"><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br class=\"Apple-interchange-newline\"><br><a href=\"https://mavrix1.com\">https://mavrix1.com/</a></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family: Helvetica; font-style: normal; font-weight: 400; font-size: 12px;\">&nbsp;This&nbsp;communication&nbsp;is confidential&nbsp;and&nbsp;intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, or&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any such&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this communication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the&nbsp;message to inform him or her of the&nbsp;error.<br><br></span></div>\r\n</div>\r\n\r\n<br></div></body></html>','Rick,\r\n\r\nPlease find attached an information sheet on LBC.  The top page shows Cage Codes, Duns, etc.  We need to have this information in the works for Mavrix 1 ASAP.  Maybe a thing Katie could be working on?\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n￼\r\n\r\n\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n\r\n\r\n￼\r\n\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-08-28 16:22:08','2025-12-09 19:27:55','2025-12-09 19:27:55','2025-12-09 19:27:55',NULL,NULL,NULL),
(650,4,'<PH3PPFCA48BBAFB40D46BC4D200A28EF8DBCA3BA@PH3PPFCA48BBAFB.namprd22.prod.outlook.com>',NULL,NULL,'RE: Catch up? Re-connect?','bdorsch@allredcorp.com','Billy Dorsch','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\nspan.EmailStyle18\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;\r\n	font-weight:normal;\r\n	font-style:normal;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Hi Rick, <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">I will shoot you a call tomorrow. I have been waiting to talk with our COO about this, and he&#8217;s finally scheduled it for tomorrow. Once he and I connect, I will reach out and let you know where we are.\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Best, <br>\r\nBilly <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Thursday, August 28, 2025 10:39 AM<br>\r\n<b>To:</b> Billy Dorsch &lt;bdorsch@allredcorp.com&gt;<br>\r\n<b>Subject:</b> Catch up? Re-connect?<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"background:#FFCCDD\"><b><span style=\"font-family:&quot;Helvetica&quot;,sans-serif;color:black\">EXTERNAL EMAIL:</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Be cautious with links and attachments.</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Billy,<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Just wanted to check in and re-connect on pricing.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Please let me know what&#8217;s up!<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks!<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;\r\n<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"Picture_x0020_1\" src=\"cid:image001.png@01DC183D.2FE32800\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://mavrix1.com/\">https://mavrix1.com</a><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','Hi Rick,\r\n\r\nI will shoot you a call tomorrow. I have been waiting to talk with our COO about this, and he\'s finally scheduled it for tomorrow. Once he and I connect, I will reach out and let you know where we are.\r\n\r\nBest,\r\nBilly\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Thursday, August 28, 2025 10:39 AM\r\nTo: Billy Dorsch <bdorsch@allredcorp.com>\r\nSubject: Catch up? Re-connect?\r\n\r\nEXTERNAL EMAIL:Be cautious with links and attachments.\r\n\r\nHi Billy,\r\nJust wanted to check in and re-connect on pricing.\r\nPlease let me know what\'s up!\r\nThanks!\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:image001.png@01DC183D.2FE32800]\r\nhttps://mavrix1.com<https://mavrix1.com/>',0,0,0,0,0,0,'2025-08-28 21:00:00','2025-12-09 19:27:55','2025-12-09 19:27:55','2025-12-09 19:27:55',NULL,NULL,NULL),
(651,4,' <BY5PR03MB4966E64218C56F13130A8470E03BA@BY5PR03MB4966.namprd03.prod.outlook.com>',NULL,NULL,'Re: Workinman Interactive','matt.conheady@workinman.com','Matthew Conheady','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nHey Rick - Hey Dan,&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nJust checking in to see if you had any question on that preliminary proposal or if you needed any additional information or revisions from us.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nWould be happy to jump on a call or make any adjustments if you\'d like.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" id=\"Signature\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nBest,</div>\r\n<div class=\"elementToProof\"><span style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 16px; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);\"><b>Matt Conheady</b></span><br>\r\n<span style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 16px; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);\">Owner | Executive Producer<b><br>\r\n<br>\r\n</b></span><span style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 16px; color: rgb(243, 144, 29); background-color: rgb(255, 255, 255);\"><b>WORKINMAN</b></span><br>\r\n<span style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 16px; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);\"><i>We Make Awesome Games &amp; Experiences</i></span><br>\r\n<span style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 16px; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);\">Office: 585-662-5800</span><br>\r\n<span style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 16px; color: rgb(118, 113, 113); background-color: rgb(255, 255, 255);\"><u><a style=\"margin: 0px;\" rel=\"noopener noreferrer\" class=\"ContentPasted0\" target=\"_blank\" href=\"http://www.workinman.com/\">workinman.com</a></u></span>\r\n</div>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Thursday, August 14, 2025 7:55 PM<br>\r\n<b>To:</b> Matthew Conheady &lt;matt.conheady@workinman.com&gt;; dan@mavrix.one &lt;dan@mavrix.one&gt;<br>\r\n<b>Cc:</b> Jason Arena &lt;jason@workinman.com&gt;<br>\r\n<b>Subject:</b> Re: Workinman Interactive</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nHI guys,</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nI just wanted to say thank you for the quick turnaround on this.&nbsp;</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nDan and I will chat it out a bit and get back to you for next steps.</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nAlso, attached is the executed NDA.&nbsp;</div>\r\nThank you!<br>\r\n<div id=\"x_bloop_sign_1755215633784292096\" class=\"x_bloop_sign\"><br>\r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD,&nbsp;</span>\r\n<div style=\"font-family:Helvetica,Arial\">Founder, CTO</div>\r\n<div style=\"font-family:Helvetica,Arial\">\r\n<div>\r\n<div><img class=\"x_composer_internal_attach\" style=\"max-width:99%\" data-outlook-trace=\"F:1|T:1\" src=\"cid:847FB525-1CC5-4EA6-9FC1-3EDAA880C6D4\"><br>\r\n</div>\r\n<div><a href=\"https://mavrix1.com/\">https://mavrix1.com</a></div>\r\n</div>\r\n<div><br>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On August 14, 2025 at 6:17:18 PM, Matthew Conheady (<a href=\"mailto:matt.conheady@workinman.com\">matt.conheady@workinman.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick and Dan,</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nAttached is the <b>signed NDA</b>&nbsp;and <b>price/scope estimate for the MVP software</b>.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nThe estimate should serve as a solid starting point for refining the requirements and tightening up the schedule and budgets.&nbsp;</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nLet us know if you have any&nbsp;questions, would like to jump on a call to walk through it, or you can annotate the document as needed and send back for revisions or answers.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nWe are able to staff this as early as September. Let us know what your thoughts&nbsp;are as far as your overall schedule and we can work to align.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nBest,</div>\r\n<div class=\"x_elementToProof\" id=\"x_Signature\">\r\n<div class=\"x_elementToProof\"><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><b>Matt Conheady</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Owner | Executive Producer<b><br>\r\n<br>\r\n</b></span><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(243,144,29); background-color:rgb(255,255,255)\"><b>WORKINMAN</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><i>We Make Awesome Games &amp; Experiences</i></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Office: 585-662-5800</span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(118,113,113); background-color:rgb(255,255,255)\"><u><a rel=\"noopener noreferrer\" class=\"x_ContentPasted0\" target=\"_blank\" href=\"http://www.workinman.com/\" style=\"margin:0px\">workinman.com</a></u></span>\r\n</div>\r\n</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Wednesday, August 13, 2025 9:18 AM<br>\r\n<b>To:</b> Matthew Conheady &lt;matt.conheady@workinman.com&gt;<br>\r\n<b>Cc:</b> Jason Arena &lt;jason@workinman.com&gt;<br>\r\n<b>Subject:</b> Re: Workinman Interactive</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nSee attached NDA.</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nPlease fill in the first page, &nbsp;initial all pages, and sign the final page.</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks again,</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div class=\"x_x_bloop_sign\" id=\"x_x_bloop_sign_1755090962669144064\"><br>\r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD,&nbsp;</span>\r\n<div style=\"font-family:Helvetica,Arial\">Founder, CTO</div>\r\n<div style=\"font-family:Helvetica,Arial\"><img class=\"x_x_composer_internal_attach\" data-outlook-trace=\"F:2|T:2\" src=\"cid:D57C5E34-6271-41A7-9766-B2C06CC40710\"><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial\"><a href=\"https://mavrix1.com\">https://mavrix1.com</a></div>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial\"><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_airmail_on\">On August 12, 2025 at 4:16:50 PM, Matthew Conheady (<a href=\"mailto:matt.conheady@workinman.com\">matt.conheady@workinman.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick!&nbsp;</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nI was great talking with you and Dan last week. We have been working away on that initial concept and estimate document and should be ready to send that over to you on Thursday of this week. Did you want me to send that to you at this e-mail or other business\r\n e-mails for you and Dan?</div>\r\n<div class=\"x_x_elementToProof\" id=\"x_x_Signature\">\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\"><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><b>Matt Conheady</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Owner | Executive Producer<b><br>\r\n<br>\r\n</b></span><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(243,144,29); background-color:rgb(255,255,255)\"><b>WORKINMAN</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><i>We Make Awesome Games &amp; Experiences</i></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Office: 585-662-5800</span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(118,113,113); background-color:rgb(255,255,255)\"><u><a rel=\"noopener noreferrer\" class=\"x_x_ContentPasted0\" target=\"_blank\" href=\"http://www.workinman.com/\" style=\"margin:0px\">workinman.com</a></u></span>\r\n</div>\r\n</div>\r\n<div id=\"x_x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Matthew Conheady &lt;matt.conheady@workinman.com&gt;<br>\r\n<b>Sent:</b> Tuesday, August 5, 2025 4:27 PM<br>\r\n<b>To:</b> Rick Mislan , PhD &lt;rick@mislan.com&gt;<br>\r\n<b>Cc:</b> Jason Arena &lt;jason@workinman.com&gt;<br>\r\n<b>Subject:</b> Re: Workinman Interactive</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div dir=\"ltr\">\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n1pm on Friday works for us. Talk to you then!&nbsp;</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHere are the Zoom details</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n__________________________________________________________________________________________________________</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nMatthew (Workinman) is inviting you to a scheduled Zoom meeting.</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nTopic: Workinman - ROV Sim game discussion</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nTime: Aug 8, 2025 01:00 PM Eastern Time (US and Canada)</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nJoin Zoom Meeting</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nhttps://us02web.zoom.us/j/86189302441</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nMeeting ID: 861 8930 2441</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n---</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nOne tap mobile</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n+19292056099,,86189302441# US (New York)</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n+16469313860,,86189302441# US</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n---</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nDial by your location</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 929 205 6099 US (New York)</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 646 931 3860 US</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 312 626 6799 US (Chicago)</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 301 715 8592 US (Washington DC)</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 305 224 1968 US</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 309 205 3325 US</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 253 205 0468 US</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 253 215 8782 US (Tacoma)</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 346 248 7799 US (Houston)</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 360 209 5623 US</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 386 347 5053 US</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 507 473 4847 US</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 564 217 2000 US</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 669 444 9171 US</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 669 900 6833 US (San Jose)</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 689 278 1000 US</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 719 359 4580 US</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nMeeting ID: 861 8930 2441</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nFind your local number: https://us02web.zoom.us/u/kcTuOrpraw</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" id=\"x_x_x_Signature\">\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\"><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><b>Matt Conheady</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Owner | Executive Producer<b><br>\r\n<br>\r\n</b></span><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(243,144,29); background-color:rgb(255,255,255)\"><b>WORKINMAN</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><i>We Make Awesome Games &amp; Experiences</i></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Office: 585-662-5800</span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(118,113,113); background-color:rgb(255,255,255)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_ContentPasted0 x_x_x_OWAAutoLink\" id=\"OWAae5683bb-cb08-f59c-25dc-72b43fc3da4c\" href=\"http://www.workinman.com/\" style=\"margin:0px\">workinman.com</a></u></span></div>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" id=\"x_x_x_appendonsend\"></div>\r\n<hr style=\"display:inline-block; width:98%\">\r\n<div class=\"x_x_x_elementToProof\" id=\"x_x_x_divRplyFwdMsg\">\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Calibri,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Rick Mislan , PhD &lt;rick@mislan.com&gt;<br>\r\n<b>Sent:</b>&nbsp;Tuesday, August 5, 2025 12:06 PM<br>\r\n<b>To:</b>&nbsp;Matthew Conheady &lt;matt.conheady@workinman.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Workinman Interactive</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\">Can we jump on a call Friday at 1p?</div>\r\n<div class=\"x_x_x_elementToProof\">Sorry, I’ve been traveling<br>\r\nThank you!</div>\r\n<div class=\"x_x_x_elementToProof\"><br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\"><br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\nRick Mislan, PhD</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\n<a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWAb926f85d-8995-e578-02f7-00c5a0c5314d\" href=\"http://www.mislan.com/\">www.mislan.com</a></div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\n[tel://(585) 797-9473](585) 797-9473</div>\r\n<p class=\"x_x_x_elementToProof\" style=\"color:rgb(0,0,0)\">On July 29, 2025 at 12:25:04 PM, Matthew Conheady (<a class=\"x_x_x_OWAAutoLink\" id=\"OWA9135b577-cb32-d293-7115-130026341730\" href=\"mailto:matt.conheady@workinman.com\" style=\"margin-top:0px; margin-bottom:0px\">matt.conheady@workinman.com</a>)\r\n wrote:</p>\r\n<blockquote class=\"x_x_x_elementToProof\">\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick,&nbsp;</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nGood times this week for me are:</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nWednesday and Thursday&nbsp;</div>\r\n<ul data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:true}\" style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\" class=\"x_x_x_elementToProof\" style=\"direction:ltr\">12pm to 5:30pm EST</div>\r\n</li></ul>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nFriday Morning</div>\r\n<ul data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:true}\" style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\" class=\"x_x_x_elementToProof\" style=\"direction:ltr\">10 am to 1pm EST</div>\r\n</li></ul>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nAnd then next all week</div>\r\n<ul data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:true}\" style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\" class=\"x_x_x_elementToProof\" style=\"direction:ltr\">12pm to 5:30pm EST</div>\r\n</li></ul>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" id=\"x_x_x_x_Signature\">\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\"><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><b>Matt Conheady</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Owner | Executive Producer<b><br>\r\n<br>\r\n</b></span><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(243,144,29); background-color:rgb(255,255,255)\"><b>WORKINMAN</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><i>We Make Awesome Games &amp; Experiences</i></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Office: 585-662-5800</span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(118,113,113); background-color:rgb(255,255,255)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_x_ContentPasted0 x_x_x_OWAAutoLink\" id=\"OWAc5f6cf87-1dd5-4f90-51ba-907941554ee6\" href=\"http://www.workinman.com/\" style=\"margin:0px\">workinman.com</a></u></span></div>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" id=\"x_x_x_x_appendonsend\"></div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div class=\"x_x_x_elementToProof\" id=\"x_x_x_x_divRplyFwdMsg\">\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Calibri,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Rick Mislan , PhD &lt;rick@mislan.com&gt;<br>\r\n<b>Sent:</b>&nbsp;Monday, July 28, 2025 6:52 PM<br>\r\n<b>To:</b>&nbsp;Matthew Conheady &lt;matt.conheady@workinman.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Workinman Interactive</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nHey Matthew,</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nSorry for the delay, we are still very interested in working with you and had a bit of team building work this week on our larger projects.</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nThat all said, I’m going to introduce Dan Rugg to this conversation and re-engage with you next week if possible.</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nPlease send some dates and times that would work for us.</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nThank you,</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nRick</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\nRick Mislan, PhD</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\n<a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA29350824-5ea3-a319-9da2-d483eee53d35\" href=\"http://www.mislan.com/\">www.mislan.com</a></div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\n[tel://(585)%20797-9473](585) 797-9473</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr\">On July 28, 2025 at 5:28:15 PM, Matthew Conheady (<a class=\"x_x_x_OWAAutoLink\" id=\"OWAb072bba9-c1e3-a60f-1e5d-afd57b98fd8d\" href=\"mailto:matt.conheady@workinman.com\" style=\"margin-top:0px; margin-bottom:0px\">matt.conheady@workinman.com</a>)\r\n wrote:</p>\r\n<blockquote class=\"x_x_x_elementToProof\">\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick!</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nI\'m following up on our call in regards to game development for a ROV simulator game. We are still very much interested in working with you on this.&nbsp;</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nI was wondering if you had a chance to compile a high-level list of requirements, direction, and business goals for the first iteration of the simulator? We would need thit to begin crafting a proposal.</div>\r\n<div class=\"x_x_x_elementToProof\" id=\"x_x_x_x_x_Signature\">\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nLet me know if you\'d like to jump on another call to discuss.</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nBest,</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\"><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><b>Matt Conheady</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Owner | Executive Producer<b><br>\r\n<br>\r\n</b></span><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(243,144,29); background-color:rgb(255,255,255)\"><b>WORKINMAN</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><i>We Make Awesome Games &amp; Experiences</i></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Office: 585-662-5800</span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(118,113,113); background-color:rgb(255,255,255)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_x_x_ContentPasted0 x_x_x_OWAAutoLink\" id=\"OWAe0652585-aff6-f8e2-b792-59fd59872a68\" href=\"http://www.workinman.com/\" style=\"margin:0px\">workinman.com</a></u></span></div>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" id=\"x_x_x_x_x_appendonsend\"></div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div class=\"x_x_x_elementToProof\" id=\"x_x_x_x_x_divRplyFwdMsg\">\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Calibri,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Jason Arena &lt;jxafaa@rit.edu&gt;<br>\r\n<b>Sent:</b>&nbsp;Tuesday, June 24, 2025 8:52 AM<br>\r\n<b>To:</b>&nbsp;Rick Mislan PhD &lt;rick@mislan.com&gt;<br>\r\n<b>Cc:</b>&nbsp;Workinman Interactive &lt;opportunity@workinman.com&gt;; Matthew Conheady &lt;matt.conheady@workinman.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Workinman Interactive</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\">Hi Rick!</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\">Sounds awesome! I’m cc’ing Matt C on this. &nbsp;I’m free everyday after 11:00</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\">Sent from my iPhone</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<blockquote class=\"x_x_x_elementToProof\">\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\">On Jun 24, 2025, at 8:37 AM, Rick Mislan , PhD &lt;rick@mislan.com&gt; wrote:<br>\r\n<br>\r\n</div>\r\n</blockquote>\r\n<blockquote class=\"x_x_x_elementToProof\">\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\">﻿</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nJason,</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nCan we schedule a call next week?</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nI’m in a new venture where&nbsp;</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nthe investors wants to develop&nbsp;</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\na drone flight simulator game&nbsp;</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nspecifically for collecting user data</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nand using that to build better drone products…</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nPlease let me know&nbsp;</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nif we can jump on a zoom&nbsp;</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nthis week or next.</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nThanks much!</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nRick</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\nRick Mislan, PhD</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\n<a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA6c87ec94-1952-3d0f-3163-a49c2ea8d6e9\" href=\"http://www.mislan.com/\">www.mislan.com</a></div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\n[tel://(585)%20797-9473](585) 797-9473</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr\">On June 24, 2025 at 8:12:06 AM, Workinman Interactive (<a class=\"x_x_x_OWAAutoLink\" id=\"OWA75251578-8422-15f3-4521-cfe093e2b576\" href=\"mailto:opportunity@workinman.com\" style=\"margin-top:0px; margin-bottom:0px\">opportunity@workinman.com</a>)\r\n wrote:</p>\r\n<blockquote class=\"x_x_x_elementToProof\">\r\n<div class=\"x_x_x_elementToProof\" style=\"background-color:rgb(255,255,255)\">\r\n<div class=\"x_x_x_elementToProof\" align=\"center\" style=\"direction:ltr; font-size:10px\">\r\n<span style=\"color:rgb(114,114,114)\">If you are not able to see this mail, click </span>\r\n<span style=\"color:rgb(1,164,198)\"><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA65ff5b9b-4dd9-1a5a-3113-bc64d1b9f3b1\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/mr/sh/SMJz09SDriOHVCvERqqB8vSnidXk/eUSi5oqtsSF7\" style=\"color:rgb(1,164,198)\">here</a></span></div>\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; background-color:rgb(255,255,255); width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(255,255,255); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(255,255,255); padding-top:20px\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"center\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:200px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; line-height:0px\"><span style=\"font-size:0px; color:rgb(255,255,255); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA66f32bf9-a32c-4d9c-2a42-41eb144915da\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeFuBnDUbVMwIGP52LehM/cf8aWw6mA19H\" style=\"color:rgb(255,255,255)\"><img data-unique-identifier=\"\" title=\"Workinman Interactive\" style=\"width:100%; display:block\" src=\"https://ehfas.img.ag.d.sendibm3.com/im/sh/G1V7WqIQLpmT.png?u=7xwQLFBtniwQn1M9aigqYDKglLFmSkK\"></a></u></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"left\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1; padding-top:20px; padding-bottom:20px; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"font-size:24px; color:rgb(89,89,89)\">We Make Awesome Games &amp; Apps</span></h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:30px; padding-bottom:30px\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"font-size:24px; color:rgb(255,255,255)\">WHAT\'S NEW WITH WORKINMAN INTERACTIVE:</span></h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(255,255,255); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:10px; padding-bottom:10px\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"center\" style=\"direction:ltr; line-height:30px; height:30px\">\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; line-height:30px; font-size:30px\">\r\n<span style=\"font-weight:normal\">­</span></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(89,89,89); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1; padding-top:10px; padding-bottom:10px; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1; margin:0px; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"font-family:Arial; color:rgb(255,255,255)\">New North Carolina Zoo App</span></h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(255,255,255); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:20px; padding-bottom:20px\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:50%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"center\" style=\"direction:ltr; line-height:0px; border-radius:8px\"><span style=\"font-size:0px; color:rgb(255,255,255); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWAacfe193e-87c4-a72d-b508-9a683a3e4db9\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeG13FMJYgX5mMENmJxHc/FUZ_0isJTQ1o\" style=\"color:rgb(255,255,255)\"><img data-unique-identifier=\"\" title=\"Making Digital Kiosks Click III: Beyond Information\" style=\"width:100%; border-radius:8px; display:block\" src=\"https://ehfas.img.ag.d.sendibm3.com/im/sh/9Op68GIgPhho.jpg?u=7xwQLFBtniwQnF53sMbCsWIsPwjj3uq\"></a></u></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n<th style=\"direction:ltr; vertical-align:top; width:50%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:left; line-height:1; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"font-size:20px\">A Modern, Accessible, and Educational Experience for All Zoo Visitors</span><br>\r\n&nbsp;</h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-bottom:20px\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:left; line-height:1.5; padding-top:15px; padding-bottom:15px; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">Workinman Interactive, in proud collaboration with the</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWAa8fcfc13-2b21-b56d-9d56-4648dfa3b8c9\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeG7uhV8VrhFGS3gWIFrs/1wN6eOemqsu1\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">North\r\n Carolina Zoo</a></u></span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">, is excited to announce the launch of the NCZoo app—now available on iOS and Android as of May 2025. Designed to enrich every visit to the\r\n Zoo, this cutting-edge app brings a fresh, interactive dimension to exploring wildlife, learning about conservation, and discovering STEM careers—all while making the Zoo experience more accessible and engaging for visitors of all ages and abilities.</span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">&nbsp;</span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA4293899f-485d-b3a2-3dd8-a508f84b1405\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGEm9dxT2rOkXszGGYS8/SMJ0IkYWjYcP\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Check\r\n out all the features the NCZoo app provides!</a></u></span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">&nbsp;</span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px\">Ready to make your park, zoo, or business more engaging?</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">\r\n</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWAabe499bd-4e1a-5923-1deb-82100d5b35ce\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGLdbmmQE1YEdiI0Er2O/4u7jtCv00Xki\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Contact\r\n us</a></u></span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">to unlock the next level of interactivity!</span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(89,89,89); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:10px; padding-bottom:10px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1; margin:0px; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; color:rgb(255,255,255)\">Games for Brands</span></h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(255,255,255); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:20px; padding-bottom:20px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:50%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"center\" style=\"direction:ltr; line-height:0px; border-radius:8px; color:rgb(59,63,68)\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:0px; color:rgb(255,255,255); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWAddf0d673-b198-96c4-0c70-976e17300d4b\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGSV3vbNPBhijXakD9ce/IBGbkTzxXQRB\" style=\"color:rgb(255,255,255)\"><img data-unique-identifier=\"\" style=\"width:100%; border-radius:8px; display:block\" src=\"https://ehfas.img.ag.d.sendibm3.com/im/sh/VlvB4aMPBy9f.jpg?u=7xwQLFBtniwQnLwW1BYO2fmyFFThMV6\"></a></u></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n<th style=\"direction:ltr; vertical-align:top; width:50%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:left; line-height:1; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"font-size:36px\">What to Do, What to Avoid</span></h2>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr; line-height:5px; height:5px\">\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; line-height:5px; font-family:arial,helvetica,sans-serif; font-size:5px\">\r\n<span style=\"font-weight:normal\">­</span></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-bottom:20px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:left; line-height:1.5; padding-top:15px; padding-bottom:15px; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">Branded games aren’t just a creative brief and a lengthy project. They’re a balancing act between honoring brand identity and making something people actually want to play.\r\n It\'s a synergism between design and marketing, playfulness and precision. When done well, a brand-integrated game becomes more than\r\n<i>just</i>&nbsp;a promotional tool. It becomes a story that players want to be part of.</span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">&nbsp;</span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA2592da57-4f06-e5ad-3651-e5dd1c0bda7a\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Here’s\r\n what to do, and what</a></u></span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA90ce7c3d-db11-f16c-dd56-a8bef0549799\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">\r\n</a></u></span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><i><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA728f35d7-be16-1daf-50ce-1c3714a4f948\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">not</a></u></i></span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWAe7e37e32-ae04-dbc7-6fc0-3ffa0a602964\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">\r\n</a></u></span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA234e462d-dfb2-ebf7-027a-b0481c35b894\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">to\r\n do, when designing branded games.</a></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(89,89,89); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:10px; padding-bottom:10px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"color:rgb(255,255,255)\">Game Design</span></h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(255,255,255); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:20px; padding-bottom:20px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:50%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"center\" style=\"direction:ltr; line-height:0px; border-radius:8px; color:rgb(59,63,68)\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:0px; color:rgb(255,255,255); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA21df8071-e134-db5d-f30b-f9a5c1ce2695\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGgDyDFHlW0gvCCE9knA/iMDvjtbwa753\" style=\"color:rgb(255,255,255)\"><img data-unique-identifier=\"\" style=\"width:100%; border-radius:8px; display:block\" src=\"https://ehfas.img.ag.d.sendibm3.com/im/sh/NGfPZb-DQ0eG.jpg?u=7xwQLFBtniwQnSnyA0VZCpH44YDff5M\"></a></u></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n<th style=\"direction:ltr; vertical-align:top; width:50%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:left; line-height:1; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\nCreating Better Digital Board Games</h2>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr; line-height:5px; height:5px\">\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; line-height:5px; font-family:arial,helvetica,sans-serif; font-size:5px\">\r\n<span style=\"font-weight:normal\">­</span></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-bottom:20px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:left; line-height:1.5; padding-top:15px; padding-bottom:15px; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">Digitizing a board game isn’t just a technical task. It’s often a\r\n</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px\">translation challenge</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">. The mechanics are usually airtight. The audience is often built-in.\r\n But if the game doesn’t <i>feel</i>&nbsp;right once it’s digital—if it loses its rhythm, clarity, or atmosphere—your audience will notice. And they may not return.</span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">&nbsp;</span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">At Workinman, we can help studios and publishers translate beloved board games into dynamic digital experiences—without losing the essence of what makes them great. From\r\n AI tuning to UI design and atmosphere-building, we know how to turn cardboard and cardstock into something\r\n<i>truly</i>&nbsp;screen-worthy.</span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">&nbsp;</span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA086b0be5-f3d4-23b0-d133-17f093f99213\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGn5QM4EwgAB11Uy83NQ/pA0WH5Y_OhHf\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Read\r\n more!</a></u></span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">&nbsp;</span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px\">If you\'re ready to bring your game to life online,</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">\r\n</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA86dfb4ae-5038-398c-601d-d45ea1f33672\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGtwsUtC7qJf6qni6Lxg/WRTz3m_aq_gb\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">contact\r\n us</a></u></span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">\r\n</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px\">now to get started.</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">&nbsp;</span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(249,160,44); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:10px; padding-bottom:10px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1.5; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"color:rgb(255,255,255)\">WHAT WE DO</span></h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(255,255,255); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:20px; padding-bottom:20px\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"font-size:22px\">Workinman Interactive is a full-service creative studio for cross-platform games and engaging apps.</span></h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:10px; padding-bottom:10px\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1.5; padding-top:15px; padding-bottom:15px; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA420bfb29-2be7-4ba0-ef03-56f5bc6c79d6\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsDhYHdOKPDMqP51WuUJq4/Kb-JAW4_rDR5\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Cross-Platform\r\n Games and Apps</a></u></span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA2a7649b0-2e9c-c612-1fad-dbd28b56ed43\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsE9szpoilJI0f8qujT3Y8/E627oifEgKIx\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Gamification</a></u></span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\"><br>\r\n</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWAe8a648b6-4bb1-5ff0-1f62-aa875eda2593\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsEcDi2F77PDAvCgIYRnGC/1e0EzX4RBSOD\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">VR\r\n &amp; AR Experiences</a></u></span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA0e7b2f47-4488-0397-f531-b9cdf1f9613f\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsF4YQEfVTV8LBGVgNQWyG/BAoIYNd1mxIX\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Interactive\r\n Digital Exhibits</a></u></span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA3d906230-d752-b7cf-00ff-a55a1fd5a113\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsFWt8R5tpb3VRKL4CPGgK/Vpsh_R2QaPa-\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Educational\r\n Games &amp; eLearning</a></u></span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA44f89156-50b5-5981-7891-2cf7e2a52a82\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsFzDqdWIBgyfhOAS1O0OO/t8za1-x1Rf0E\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Companion\r\n Apps for Smart Toys &amp; Appliances</a></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(89,89,89); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:10px; padding-bottom:10px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"font-size:22px; color:rgb(255,255,255)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA204794ba-fb75-9460-b1ba-eaf38225ab32\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsGRYYpwgXmtpxRzpqMk6S/bevyJrJoW4cs\" style=\"color:rgb(255,255,255)\">CONTACT\r\n US TODAY FOR A FREE CONSULTATION</a></u></span></h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:30px; padding-bottom:30px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:20px; color:rgb(255,255,255)\"><u><a class=\"x_x_x_OWAAutoLink\" id=\"OWA4dcce8ac-5807-45ee-b80f-3f172b60cb2c\" href=\"mailto:opportunity@workinman.com\" style=\"color:rgb(255,255,255); margin-top:0px; margin-bottom:0px\">opportunity@workinman.com</a></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(239,242,247); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:20px; padding-bottom:20px\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1.5; padding-top:15px; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:18px\">Workinman Interactive</span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1.5; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px; font-size:14px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-weight:normal\">1 East Avenue, 5th Floor, 14604, Rochester</span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1.5; padding-top:15px; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px; font-size:14px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-weight:normal\">This email was sent to rick@mislan.com</span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1.5; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px; font-size:14px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-weight:normal\">You\'ve received this email because you\'ve subscribed to our newsletter.</span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1.5; padding-top:15px; padding-bottom:15px; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px; font-size:14px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; color:rgb(249,160,44); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWAb8a2ccf2-68e2-4b47-2241-8df99351a702\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/un/v2/sh/SMJz09a0vkbXrIOuDazyHiLuyL9s/xQ7JJO10AbkG\" style=\"color:rgb(249,160,44); margin-top:0px; margin-bottom:0px\">Unsubscribe</a></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Hey Rick - Hey Dan,\r\n\r\nJust checking in to see if you had any question on that preliminary proposal or if you needed any additional information or revisions from us.\r\n\r\nWould be happy to jump on a call or make any adjustments if you\'d like.\r\n\r\n\r\nBest,\r\nMatt Conheady\r\nOwner | Executive Producer\r\n\r\nWORKINMAN\r\nWe Make Awesome Games & Experiences\r\nOffice: 585-662-5800\r\nworkinman.com<http://www.workinman.com/>\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Thursday, August 14, 2025 7:55 PM\r\nTo: Matthew Conheady <matt.conheady@workinman.com>; dan@mavrix.one <dan@mavrix.one>\r\nCc: Jason Arena <jason@workinman.com>\r\nSubject: Re: Workinman Interactive\r\n\r\nHI guys,\r\nI just wanted to say thank you for the quick turnaround on this.\r\nDan and I will chat it out a bit and get back to you for next steps.\r\nAlso, attached is the executed NDA.\r\nThank you!\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:847FB525-1CC5-4EA6-9FC1-3EDAA880C6D4]\r\nhttps://mavrix1.com<https://mavrix1.com/>\r\n\r\n\r\n\r\nOn August 14, 2025 at 6:17:18 PM, Matthew Conheady (matt.conheady@workinman.com<mailto:matt.conheady@workinman.com>) wrote:\r\n\r\nHi Rick and Dan,\r\nAttached is the signed NDA and price/scope estimate for the MVP software.\r\n\r\nThe estimate should serve as a solid starting point for refining the requirements and tightening up the schedule and budgets.\r\nLet us know if you have any questions, would like to jump on a call to walk through it, or you can annotate the document as needed and send back for revisions or answers.\r\n\r\nWe are able to staff this as early as September. Let us know what your thoughts are as far as your overall schedule and we can work to align.\r\n\r\nBest,\r\nMatt Conheady\r\nOwner | Executive Producer\r\n\r\nWORKINMAN\r\nWe Make Awesome Games & Experiences\r\nOffice: 585-662-5800\r\nworkinman.com<http://www.workinman.com/>\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Wednesday, August 13, 2025 9:18 AM\r\nTo: Matthew Conheady <matt.conheady@workinman.com>\r\nCc: Jason Arena <jason@workinman.com>\r\nSubject: Re: Workinman Interactive\r\n\r\nSee attached NDA.\r\nPlease fill in the first page,  initial all pages, and sign the final page.\r\nThanks again,\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:D57C5E34-6271-41A7-9766-B2C06CC40710]\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\nOn August 12, 2025 at 4:16:50 PM, Matthew Conheady (matt.conheady@workinman.com<mailto:matt.conheady@workinman.com>) wrote:\r\n\r\nHi Rick!\r\n\r\nI was great talking with you and Dan last week. We have been working away on that initial concept and estimate document and should be ready to send that over to you on Thursday of this week. Did you want me to send that to you at this e-mail or other business e-mails for you and Dan?\r\n\r\nMatt Conheady\r\nOwner | Executive Producer\r\n\r\nWORKINMAN\r\nWe Make Awesome Games & Experiences\r\nOffice: 585-662-5800\r\nworkinman.com<http://www.workinman.com/>\r\n________________________________\r\nFrom: Matthew Conheady <matt.conheady@workinman.com>\r\nSent: Tuesday, August 5, 2025 4:27 PM\r\nTo: Rick Mislan , PhD <rick@mislan.com>\r\nCc: Jason Arena <jason@workinman.com>\r\nSubject: Re: Workinman Interactive\r\n\r\n1pm on Friday works for us. Talk to you then!\r\n\r\nHere are the Zoom details\r\n\r\n__________________________________________________________________________________________________________\r\n\r\nMatthew (Workinman) is inviting you to a scheduled Zoom meeting.\r\n\r\nTopic: Workinman - ROV Sim game discussion\r\nTime: Aug 8, 2025 01:00 PM Eastern Time (US and Canada)\r\nJoin Zoom Meeting\r\nhttps://us02web.zoom.us/j/86189302441\r\n\r\nMeeting ID: 861 8930 2441\r\n\r\n---\r\n\r\nOne tap mobile\r\n+19292056099,,86189302441# US (New York)\r\n+16469313860,,86189302441# US\r\n\r\n---\r\n\r\nDial by your location\r\n• +1 929 205 6099 US (New York)\r\n• +1 646 931 3860 US\r\n• +1 312 626 6799 US (Chicago)\r\n• +1 301 715 8592 US (Washington DC)\r\n• +1 305 224 1968 US\r\n• +1 309 205 3325 US\r\n• +1 253 205 0468 US\r\n• +1 253 215 8782 US (Tacoma)\r\n• +1 346 248 7799 US (Houston)\r\n• +1 360 209 5623 US\r\n• +1 386 347 5053 US\r\n• +1 507 473 4847 US\r\n• +1 564 217 2000 US\r\n• +1 669 444 9171 US\r\n• +1 669 900 6833 US (San Jose)\r\n• +1 689 278 1000 US\r\n• +1 719 359 4580 US\r\n\r\nMeeting ID: 861 8930 2441\r\n\r\nFind your local number: https://us02web.zoom.us/u/kcTuOrpraw\r\n\r\n\r\n\r\nMatt Conheady\r\nOwner | Executive Producer\r\n\r\nWORKINMAN\r\nWe Make Awesome Games & Experiences\r\nOffice: 585-662-5800\r\nworkinman.com<http://www.workinman.com/>\r\n________________________________\r\nFrom: Rick Mislan , PhD <rick@mislan.com>\r\nSent: Tuesday, August 5, 2025 12:06 PM\r\nTo: Matthew Conheady <matt.conheady@workinman.com>\r\nSubject: Re: Workinman Interactive\r\n\r\nCan we jump on a call Friday at 1p?\r\nSorry, I’ve been traveling\r\nThank you!\r\n\r\n\r\nRick Mislan, PhD\r\nwww.mislan.com<http://www.mislan.com/>\r\n[tel://(585) 797-9473](585) 797-9473\r\n\r\nOn July 29, 2025 at 12:25:04 PM, Matthew Conheady (matt.conheady@workinman.com<mailto:matt.conheady@workinman.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nGood times this week for me are:\r\n\r\nWednesday and Thursday\r\n\r\n  *\r\n12pm to 5:30pm EST\r\n\r\nFriday Morning\r\n\r\n  *\r\n10 am to 1pm EST\r\n\r\nAnd then next all week\r\n\r\n  *\r\n12pm to 5:30pm EST\r\n\r\n\r\n\r\nMatt Conheady\r\nOwner | Executive Producer\r\n\r\nWORKINMAN\r\nWe Make Awesome Games & Experiences\r\nOffice: 585-662-5800\r\nworkinman.com<http://www.workinman.com/>\r\n________________________________\r\nFrom: Rick Mislan , PhD <rick@mislan.com>\r\nSent: Monday, July 28, 2025 6:52 PM\r\nTo: Matthew Conheady <matt.conheady@workinman.com>\r\nSubject: Re: Workinman Interactive\r\n\r\nHey Matthew,\r\nSorry for the delay, we are still very interested in working with you and had a bit of team building work this week on our larger projects.\r\nThat all said, I’m going to introduce Dan Rugg to this conversation and re-engage with you next week if possible.\r\nPlease send some dates and times that would work for us.\r\nThank you,\r\nRick\r\n\r\n\r\n\r\nRick Mislan, PhD\r\nwww.mislan.com<http://www.mislan.com/>\r\n[tel://(585)%20797-9473](585) 797-9473\r\n\r\n\r\nOn July 28, 2025 at 5:28:15 PM, Matthew Conheady (matt.conheady@workinman.com<mailto:matt.conheady@workinman.com>) wrote:\r\n\r\nHi Rick!\r\n\r\nI\'m following up on our call in regards to game development for a ROV simulator game. We are still very much interested in working with you on this.\r\nI was wondering if you had a chance to compile a high-level list of requirements, direction, and business goals for the first iteration of the simulator? We would need thit to begin crafting a proposal.\r\n\r\nLet me know if you\'d like to jump on another call to discuss.\r\n\r\nBest,\r\nMatt Conheady\r\nOwner | Executive Producer\r\n\r\nWORKINMAN\r\nWe Make Awesome Games & Experiences\r\nOffice: 585-662-5800\r\nworkinman.com<http://www.workinman.com/>\r\n________________________________\r\nFrom: Jason Arena <jxafaa@rit.edu>\r\nSent: Tuesday, June 24, 2025 8:52 AM\r\nTo: Rick Mislan PhD <rick@mislan.com>\r\nCc: Workinman Interactive <opportunity@workinman.com>; Matthew Conheady <matt.conheady@workinman.com>\r\nSubject: Re: Workinman Interactive\r\n\r\nHi Rick!\r\n\r\nSounds awesome! I’m cc’ing Matt C on this.  I’m free everyday after 11:00\r\n\r\n\r\nSent from my iPhone\r\n\r\nOn Jun 24, 2025, at 8:37 AM, Rick Mislan , PhD <rick@mislan.com> wrote:\r\n\r\n﻿\r\nJason,\r\nCan we schedule a call next week?\r\nI’m in a new venture where\r\nthe investors wants to develop\r\na drone flight simulator game\r\nspecifically for collecting user data\r\nand using that to build better drone products…\r\n\r\nPlease let me know\r\nif we can jump on a zoom\r\nthis week or next.\r\n\r\nThanks much!\r\nRick\r\n\r\nRick Mislan, PhD\r\nwww.mislan.com<http://www.mislan.com/>\r\n[tel://(585)%20797-9473](585) 797-9473\r\n\r\n\r\nOn June 24, 2025 at 8:12:06 AM, Workinman Interactive (opportunity@workinman.com<mailto:opportunity@workinman.com>) wrote:\r\n\r\nIf you are not able to see this mail, click here<https://ehfas.r.ag.d.sendibm3.com/mk/mr/sh/SMJz09SDriOHVCvERqqB8vSnidXk/eUSi5oqtsSF7>\r\n[https://ehfas.img.ag.d.sendibm3.com/im/sh/G1V7WqIQLpmT.png?u=7xwQLFBtniwQn1M9aigqYDKglLFmSkK]<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeFuBnDUbVMwIGP52LehM/cf8aWw6mA19H>\r\nWe Make Awesome Games & Apps\r\nWHAT\'S NEW WITH WORKINMAN INTERACTIVE:\r\n­\r\nNew North Carolina Zoo App\r\n[https://ehfas.img.ag.d.sendibm3.com/im/sh/9Op68GIgPhho.jpg?u=7xwQLFBtniwQnF53sMbCsWIsPwjj3uq]<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeG13FMJYgX5mMENmJxHc/FUZ_0isJTQ1o>\r\nA Modern, Accessible, and Educational Experience for All Zoo Visitors\r\n\r\n\r\nWorkinman Interactive, in proud collaboration with theNorth Carolina Zoo<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeG7uhV8VrhFGS3gWIFrs/1wN6eOemqsu1>, is excited to announce the launch of the NCZoo app—now available on iOS and Android as of May 2025. Designed to enrich every visit to the Zoo, this cutting-edge app brings a fresh, interactive dimension to exploring wildlife, learning about conservation, and discovering STEM careers—all while making the Zoo experience more accessible and engaging for visitors of all ages and abilities.\r\n\r\n\r\n\r\nCheck out all the features the NCZoo app provides!<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGEm9dxT2rOkXszGGYS8/SMJ0IkYWjYcP>\r\n\r\n\r\n\r\nReady to make your park, zoo, or business more engaging? Contact us<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGLdbmmQE1YEdiI0Er2O/4u7jtCv00Xki>to unlock the next level of interactivity!\r\n\r\nGames for Brands\r\n[https://ehfas.img.ag.d.sendibm3.com/im/sh/VlvB4aMPBy9f.jpg?u=7xwQLFBtniwQnLwW1BYO2fmyFFThMV6]<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGSV3vbNPBhijXakD9ce/IBGbkTzxXQRB>\r\nWhat to Do, What to Avoid\r\n­\r\n\r\nBranded games aren’t just a creative brief and a lengthy project. They’re a balancing act between honoring brand identity and making something people actually want to play. It\'s a synergism between design and marketing, playfulness and precision. When done well, a brand-integrated game becomes more than just a promotional tool. It becomes a story that players want to be part of.\r\n\r\n\r\n\r\nHere’s what to do, and what<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5> <https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5> not<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5> <https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5> to do, when designing branded games.<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5>\r\n\r\nGame Design\r\n[https://ehfas.img.ag.d.sendibm3.com/im/sh/NGfPZb-DQ0eG.jpg?u=7xwQLFBtniwQnSnyA0VZCpH44YDff5M]<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGgDyDFHlW0gvCCE9knA/iMDvjtbwa753>\r\nCreating Better Digital Board Games\r\n­\r\n\r\nDigitizing a board game isn’t just a technical task. It’s often a translation challenge. The mechanics are usually airtight. The audience is often built-in. But if the game doesn’t feel right once it’s digital—if it loses its rhythm, clarity, or atmosphere—your audience will notice. And they may not return.\r\n\r\n\r\n\r\nAt Workinman, we can help studios and publishers translate beloved board games into dynamic digital experiences—without losing the essence of what makes them great. From AI tuning to UI design and atmosphere-building, we know how to turn cardboard and cardstock into something truly screen-worthy.\r\n\r\n\r\n\r\nRead more!<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGn5QM4EwgAB11Uy83NQ/pA0WH5Y_OhHf>\r\n\r\n\r\n\r\nIf you\'re ready to bring your game to life online, contact us<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGtwsUtC7qJf6qni6Lxg/WRTz3m_aq_gb> now to get started.\r\n\r\nWHAT WE DO\r\nWorkinman Interactive is a full-service creative studio for cross-platform games and engaging apps.\r\n\r\nCross-Platform Games and Apps<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsDhYHdOKPDMqP51WuUJq4/Kb-JAW4_rDR5>\r\n\r\nGamification<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsE9szpoilJI0f8qujT3Y8/E627oifEgKIx>\r\nVR & AR Experiences<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsEcDi2F77PDAvCgIYRnGC/1e0EzX4RBSOD>\r\n\r\nInteractive Digital Exhibits<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsF4YQEfVTV8LBGVgNQWyG/BAoIYNd1mxIX>\r\n\r\nEducational Games & eLearning<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsFWt8R5tpb3VRKL4CPGgK/Vpsh_R2QaPa->\r\n\r\nCompanion Apps for Smart Toys & Appliances<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsFzDqdWIBgyfhOAS1O0OO/t8za1-x1Rf0E>\r\n\r\nCONTACT US TODAY FOR A FREE CONSULTATION<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsGRYYpwgXmtpxRzpqMk6S/bevyJrJoW4cs>\r\n\r\nopportunity@workinman.com<mailto:opportunity@workinman.com>\r\n\r\nWorkinman Interactive\r\n\r\n1 East Avenue, 5th Floor, 14604, Rochester\r\n\r\nThis email was sent to rick@mislan.com\r\n\r\nYou\'ve received this email because you\'ve subscribed to our newsletter.\r\n\r\nUnsubscribe<https://ehfas.r.ag.d.sendibm3.com/mk/un/v2/sh/SMJz09a0vkbXrIOuDazyHiLuyL9s/xQ7JJO10AbkG>\r\n',0,0,0,0,0,0,'2025-08-28 21:47:35','2025-12-09 19:27:56','2025-12-09 19:27:56','2025-12-09 19:27:56',NULL,NULL,NULL),
(652,4,'<TGGKA000000000000000000000000000000000000000000000T1QAJY00qtZyDX-GTgmvlz0jJpgEwg@sfdc.net>',NULL,NULL,'Case #33750953    [ ref:!00D3006len.!500Vw0PozrV:ref ]','globalcustomerservice@dnb.com','Dun & Bradstreet Global Customer Service','<html>\r\n<head>\r\n	<title></title>\r\n</head>\r\n<body data-layerx-input-policy=\"false\">\r\n<p><span style=\"font-family:Arial,Helvetica,sans-serif;\">Dear Rick,</span><br />\r\n<br />\r\nThank you for contacting Dun &amp; Bradstreet.<br />\r\n<br />\r\nWe received your Dun &amp; Bradstreet D-U-N-S&reg; Manager authentication request. Upon checking, I was not able to confirm the information through the documents provided or outside sources.<br />\r\n<br />\r\nPlease be advised that we need at least two documents showing the company name and the name of the person who needs access to D-U-N-S&reg; Manager.<br />\r\n<br />\r\nThe following documents are acceptable to support your request:<br />\r\n<br />\r\n&middot; Lease / Mortgage Agreement<br />\r\n&middot; Utility Bill<br />\r\n&middot; Supplier Invoice<br />\r\n&middot; Partnership Agreement<br />\r\n&middot; EIN Confirmation Letter<br />\r\n&middot; TIN Confirmation Letter<br />\r\n&middot; Articles of Incorporation<br />\r\n&middot; Certificate of Amendment<br />\r\n&middot; Approved State Unemployment Registration<br />\r\n&middot; Contract of Sale/Agreement for the purchase of a business &amp; its assets<br />\r\n&middot; Secretary of State Approved Business Registration<br />\r\n&middot; Real Estate / Personal Property Tax Statements<br />\r\n&middot; Legal lien documentation held by your business on other entities<br />\r\n&middot; 1099 received by your company for services or purchases bought<br />\r\n&middot; Probate document authorizing ownership of business<br />\r\n&middot; Insurance documents<br />\r\n&middot; State Sales Tax Certificate<br />\r\n&middot; Franchise Agreements<br />\r\n&middot; Company Vehicle Title<br />\r\n&middot; Purchase Order from a vendor or supplier<br />\r\n<br />\r\nKindly respond to this email within 24 hours if you have questions, clarification or needs further assistance, otherwise we consider this case closed.<br />\r\n<br />\r\nThank you!<br />\r\n<br />\r\n<span style=\"font-family:Arial,Helvetica,sans-serif;\">Regards,<br />\r\n<br />\r\nClive<br />\r\nCase&nbsp;33750953<br />\r\nCustomer Service Team<br />\r\nDun &amp; Bradstreet<br />\r\n<br />\r\n*Upon closing this case you may receive a short survey regarding the service I&rsquo;ve provided you today. All feedback is greatly appreciated and we would hope you could take the time to complete the survey.</span></p>\r\n\r\n<p title=\"Case 33750953: AA Blank Template\">&nbsp;</p>\r\n<img alt=\"\" src=\"https://dnb.my.salesforce.com/servlet/servlet.ImageServer?oid=00D300000006len&esid=018Vw00000HUvtW&from=ext\"><br><br>ref:!00D3006len.!500Vw0PozrV:ref</body>\r\n</html>','Dear Rick,\r\n\r\nThank you for contacting Dun & Bradstreet.\r\n\r\nWe received your Dun & Bradstreet D-U-N-S® Manager authentication request. Upon checking, I was not able to confirm the information through the documents provided or outside sources.\r\n\r\nPlease be advised that we need at least two documents showing the company name and the name of the person who needs access to D-U-N-S® Manager.\r\n\r\nThe following documents are acceptable to support your request:\r\n\r\n· Lease / Mortgage Agreement\r\n· Utility Bill\r\n· Supplier Invoice\r\n· Partnership Agreement\r\n· EIN Confirmation Letter\r\n· TIN Confirmation Letter\r\n· Articles of Incorporation\r\n· Certificate of Amendment\r\n· Approved State Unemployment Registration\r\n· Contract of Sale/Agreement for the purchase of a business & its assets\r\n· Secretary of State Approved Business Registration\r\n· Real Estate / Personal Property Tax Statements\r\n· Legal lien documentation held by your business on other entities\r\n· 1099 received by your company for services or purchases bought\r\n· Probate document authorizing ownership of business\r\n· Insurance documents\r\n· State Sales Tax Certificate\r\n· Franchise Agreements\r\n· Company Vehicle Title\r\n· Purchase Order from a vendor or supplier\r\n\r\nKindly respond to this email within 24 hours if you have questions, clarification or needs further assistance, otherwise we consider this case closed.\r\n\r\nThank you!\r\n\r\nRegards,\r\n\r\nClive\r\nCase 33750953\r\nCustomer Service Team\r\nDun & Bradstreet\r\n\r\n*Upon closing this case you may receive a short survey regarding the service Ive provided you today. All feedback is greatly appreciated and we would hope you could take the time to complete the survey.\r\nref:!00D3006len.!500Vw0PozrV:ref',0,0,0,0,0,0,'2025-08-28 23:57:36','2025-12-09 19:27:56','2025-12-09 19:27:56','2025-12-09 19:27:56',NULL,NULL,NULL),
(653,4,'<4fdf3de0-61d8-40ba-9770-72c4c94b98bc@FRONTIERNET.NET>',NULL,NULL,'Re: Thank you for the tour!','MGFERRIS.BRANDYS@FRONTIERNET.NET','MARK FERRIS','<!DOCTYPE html>\r\n<html>\r\n  <head>\r\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n  </head>\r\n  <body>\r\n    <p>your very welcome!<br>\r\n    </p>\r\n    <div class=\"moz-cite-prefix\">On 8/28/2025 8:20 AM, Rick wrote:<br>\r\n    </div>\r\n    <blockquote type=\"cite\"\r\n      cite=\"mid:etPan.68b049b5.544eea08.587@mavrix.one\">\r\n      <meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\">\r\n      <style>body{font-family:Helvetica,Arial;font-size:13px}</style>\r\n      <div style=\"font-family:Helvetica,Arial;font-size:13px; \">\r\n        <p class=\"p1\">Dan and Mark,</p>\r\n        <p class=\"p1\">Thank you for taking the time to host me Tuesday\r\n          and provide insight and a tour of your facilities. </p>\r\n        <p class=\"p1\">I appreciated the opportunity to learn more about\r\n          your work and the market itself.</p>\r\n        <p class=\"p1\">I look forward to staying in touch and exploring\r\n          ways we might collaborate as future opportunities arise. </p>\r\n        <p class=\"p1\">Thanks again,</p>\r\n        <p class=\"p1\">Rick<br>\r\n        </p>\r\n      </div>\r\n      <br>\r\n      <div class=\"gmail_signature\">\r\n        <title></title>\r\n        <br>\r\n        <div><span style=\"font-family: Helvetica, Arial;\">Rick Mislan,\r\n            PhD, </span>\r\n          <div style=\"font-family: Helvetica, Arial;\">Founder, CTO</div>\r\n          <div style=\"font-family: Helvetica, Arial;\">\r\n            <div>\r\n              <div><img class=\"composer_internal_attach\"\r\n                  src=\"cid:47B318CE-D113-48CA-9642-7DDC55AB6D39\"\r\n                  style=\"max-width: 99%;\" moz-do-not-send=\"true\"><br>\r\n              </div>\r\n              <div><a href=\"https://mavrix1.com/\" moz-do-not-send=\"true\"\r\n                  class=\"moz-txt-link-freetext\">https://mavrix1.com</a></div>\r\n            </div>\r\n            <div><br>\r\n            </div>\r\n          </div>\r\n        </div>\r\n      </div>\r\n    </blockquote>\r\n    <pre class=\"moz-signature\" cols=\"72\">-- \r\nMARK G FERRIS\r\nMOLD ENGINEERING\r\nBRANDYS MOLD &amp; TOOL CENTER LTD.\r\n10 RIVERTON WAY\r\nWEST HENRIETTA, N.Y. 14586\r\n(585)334-8333\r\n<a class=\"moz-txt-link-abbreviated\" href=\"http://WWW.BRANDYSPLASTICSGROUP.COM\">WWW.BRANDYSPLASTICSGROUP.COM</a></pre>\r\n  </body>\r\n</html>','your very welcome!\r\n\r\nOn 8/28/2025 8:20 AM, Rick wrote:\r\n>\r\n> Dan and Mark,\r\n>\r\n> Thank you for taking the time to host me Tuesday and provide insight \r\n> and a tour of your facilities.\r\n>\r\n> I appreciated the opportunity to learn more about your work and the \r\n> market itself.\r\n>\r\n> I look forward to staying in touch and exploring ways we might \r\n> collaborate as future opportunities arise.\r\n>\r\n> Thanks again,\r\n>\r\n> Rick\r\n>\r\n>\r\n>\r\n> Rick Mislan, PhD,\r\n> Founder, CTO\r\n>\r\n> https://mavrix1.com\r\n>\r\n-- \r\nMARK G FERRIS\r\nMOLD ENGINEERING\r\nBRANDYS MOLD & TOOL CENTER LTD.\r\n10 RIVERTON WAY\r\nWEST HENRIETTA, N.Y. 14586\r\n(585)334-8333\r\nWWW.BRANDYSPLASTICSGROUP.COM',0,0,0,0,0,0,'2025-08-29 17:53:35','2025-12-09 19:27:56','2025-12-09 19:27:56','2025-12-09 19:27:56',NULL,NULL,NULL),
(654,4,'<CAJO9__bwDBfXQJntv970ViBfX7CKE8k=h4qn7EGDrq9jt=Naew@mail.gmail.com>',NULL,NULL,'Resume','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>Please see attached.  I am out in Montauk and heading back to Tampa on the 2nd.  </div><div><br></div><div>Looking forward to this adventure!</div><div><br></div><div>Best Regards,</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a>t</span></p></div></div></div></div>','Hi Rick,\r\n\r\nPlease see attached.  I am out in Montauk and heading back to Tampa on the\r\n2nd.\r\n\r\nLooking forward to this adventure!\r\n\r\nBest Regards,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>t',0,0,0,0,0,0,'2025-08-30 22:50:54','2025-12-09 19:27:56','2025-12-09 19:27:56','2025-12-09 19:27:56',NULL,NULL,NULL),
(655,4,'<CAJO9__YXx5s8aTY4OXf9QTp5j3e5hcT2WiOdA3yOt7mNX-i0mA@mail.gmail.com>',NULL,NULL,'Re: Resume','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>Updated the resume on the last project job date.  As you can see I have not added LBC on there.  Let me know if you would like me to do so.  </div><div><br></div><div>Best,</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Sat, Aug 30, 2025 at 6:50 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>Please see attached.  I am out in Montauk and heading back to Tampa on the 2nd.  </div><div><br></div><div>Looking forward to this adventure!</div><div><br></div><div>Best Regards,</div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a>t</span></p></div></div></div></div>\r\n</blockquote></div>','Hi Rick,\r\n\r\nUpdated the resume on the last project job date.  As you can see I have not\r\nadded LBC on there.  Let me know if you would like me to do so.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Sat, Aug 30, 2025 at 6:50 PM Jordan Wroblewski <\r\njordan@lithiumbatterycompany.com> wrote:\r\n\r\n> Hi Rick,\r\n>\r\n> Please see attached.  I am out in Montauk and heading back to Tampa on the\r\n> 2nd.\r\n>\r\n> Looking forward to this adventure!\r\n>\r\n> Best Regards,\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company <http://lithiumbatterycompany.com>t\r\n>',0,0,0,0,0,0,'2025-08-30 22:56:14','2025-12-09 19:27:57','2025-12-09 19:27:57','2025-12-09 19:27:57',NULL,NULL,NULL),
(656,4,'<1052590076.42348.1756756139285@app133022.hef201.service-now.com>',NULL,NULL,'Incident INC-GSAFSD20227682 was closed','fsdsupport@gsa.gov','\"Federal Service Desk (FSD)\"','<html><head></head><body><p></p>\r\n<style type=\"text/css\">\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n</style>\r\n<div style=\"margin: 0 auto !important;\" align=\"center\">\r\n<table class=\"w100\" style=\"width: 600px; background-color: #f7f7f9; margin: 0 auto !important; padding: 0px;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" bgcolor=\"#F7F7F9\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 13px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"background-color: #d8ecff;\" height=\"32\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"40\" style=\"width: 53.1077%;\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td height=\"50\"><img src=\"cid:sys_attachment.dosys_idbe2e8d8d1bda2a50205e8736624bcb90@SNC.261ff5d9e39fa69\" width=\"auto\" height=\"50\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr style=\"background-color: #d8ecff;\" height=\"22\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr><!-- Left-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- CONTAINER -->\r\n<td width=\"564\">\r\n<table class=\"w100\" style=\"margin: 0px; padding: 0px; box-shadow: 0px 2px 10px rgba(23, 40, 52, 0.08);\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody><!-- Main Container -->\r\n<tr>\r\n<td class=\"pad-sides-20\" style=\"border-radius: 6px; text-align: left; background-color: #ffffff; padding: 24px 24px 24px 24px; color: #454545;\" align=\"center\">\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-bottom: 10px;\"><strong>This is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD)</strong> which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.</div>\r\n</div>\r\n<hr>\r\n<p></p><div style=\"font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif; line-height: 26px; font-size: 16px;\">\r\n<div style=\"line-height: 26px; padding-bottom: 24px; text-align: left; color: #454545;\">\r\n<h4 style=\"margin-top: 14pt; line-height: 32px; margin-bottom: 4pt; text-align: left; font-size: 17.52pt;\"><strong> Your Incident Was Closed</strong></h4>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left; font-size: 12pt;\">Hello <strong>rick@mavrix.one,</strong></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left;\">Your incident <strong><span style=\"font-size: 12pt;\">INC-GSAFSD20227682 </span></strong><span style=\"font-size: 12pt;\">has been marked as closed for the following reason(s):</span></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left;\"><strong><span style=\"font-size: 12pt;\">Resolution notes:</span></strong><span style=\"font-size: 12pt;\"> Had floor support advise with the user\'s issue. Provided advised KB article..</span></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 6pt; text-align: left;\"><span style=\"font-size: 12pt;\">You can view the full incident details using the link below:<br></span><strong><span style=\"font-size: 12pt;\"></span></strong></p><div style=\"margin-top: 8px;\"><strong><a href=\"https://www.fsd.gov/gsafsd_sp?id=incident_form&amp;table=incident&amp;sys_id=bcc037c61be76610205e8736624bcb84\" style=\"background-color: #70E17B;color: #162E51;font-size: 16px;text-decoration: none; border-radius: 4px;-webkit-border-radius: 4px;-moz-border-radius: 4px;display: inline-block;padding: 10px 32px 10px 32px;\">View incident</a></strong></div> <br><span style=\"font-size: 12pt;\">If you have any additional requests or require further assistance, please submit a new incident at <strong><a style=\"color: 3f57a6;\" href=\"https://www.fsd.gov/fsd.gov/gsafsd_sp?id=fsd_index\">Fsd.gov</a></strong></span><p></p>\r\n<span style=\"font-size: 12pt;\">Thank you,</span><span style=\"font-size: 12pt;\"><br></span><strong><span style=\"font-size: 12pt;\">FSD.gov Team</span></strong></div>\r\n</div><p></p>\r\n<hr>\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-top: 10px;\"><strong>Don\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times!</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0036075\" target=\"_blank\" rel=\"noopener\">Invite others </a>to help manage your registration. <strong>DO NOT</strong> attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. <strong>Submit all entity validation documentation from your Entity Workspace in SAM.gov.</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0057690\" target=\"_blank\" rel=\"noopener\">Learn how to add documentation</a> to your entity validation case.</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- END CONTAINER --> <!-- Right-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"background-color: #f7f7f9;\" align=\"center\" height=\"40\"></td>\r\n</tr>\r\n<!-- Footer started -->\r\n<tr style=\"background-color: #d8ecff;\">\r\n<td>\r\n<table style=\"background-color: #d8ecff;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td height=\"30\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 14px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_id7d465e4a1b3ca2103943eac1604bcbb6@SNC.5e7f49c3eb0dd020\" width=\"120\" height=\"40\" title=\"Cloud 4.png\" alt=\"Cloud\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"30\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff;\" align=\"center\" valign=\"top\" height=\"30\"><img src=\"cid:sys_attachment.dosys_idb04e85cd1bda2a50205e8736624bcbfa@SNC.64bad416a7d38555\" width=\"auto\" height=\"30\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_idb1a5160a1b3ca2103943eac1604bcbdc@SNC.90e2890d3cdaf532\" width=\"140\" height=\"40\" title=\"Cloud 3.png\" alt=\"Cloud\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff; color: #ffffff;\">\r\n<table style=\"color: #ffffff;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr align=\"center\">\r\n<td><span id=\"templateAddress\" class=\"footer\" style=\"color: #162e51; font-size: 14px; line-height: 18px; text-align: center; margin: 0 !important;\"> GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td height=\"10\"></td>\r\n</tr>\r\n<tr>\r\n<td height=\"120px\"><img style=\"height: 120px; width: 100%;\" src=\"cid:sys_attachment.dosys_id7555160a1b3ca2103943eac1604bcb39@SNC.e497db71fa97ac1\" height=\"120\" title=\"Jefferson Light Blue 2.png\" alt=\"Jefferson Memorial\"><span id=\"mce_26\"></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<!-- Footer end--></tbody>\r\n</table>\r\n</div><div>&nbsp;</div><div style=\"display:inline\">Ref:MSG2527637_K3Y9v9caoDN23CONEjqr</div></body></html>','\r\n\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD) which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.\r\n\r\n\r\n\r\n\r\n Your Incident Was Closed\r\nHello rick@mavrix.one,\r\nYour incident INC-GSAFSD20227682 has been marked as closed for the following reason(s):\r\nResolution notes: Had floor support advise with the user\'s issue. Provided advised KB article..\r\nYou can view the full incident details using the link below:View incident If you have any additional requests or require further assistance, please submit a new incident at Fsd.gov\r\nThank you,FSD.gov Team\r\n\r\n\r\n\r\nDon\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times! Invite others to help manage your registration. DO NOT attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. Submit all entity validation documentation from your Entity Workspace in SAM.gov. Learn how to add documentation to your entity validation case.\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;Ref:MSG2527637_K3Y9v9caoDN23CONEjqr',0,0,0,0,0,0,'2025-09-01 19:48:59','2025-12-09 19:27:57','2025-12-09 19:27:57','2025-12-09 19:27:57',NULL,NULL,NULL),
(657,4,'<16410192.42484.1756756150219@app133022.hef201.service-now.com>',NULL,NULL,'We\'d Love Your Feedback on Your Recent Support Experience','fsdsupport@gsa.gov','\"Federal Service Desk (FSD)\"','<html><head></head><body><p></p>\r\n<style type=\"text/css\">\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n</style>\r\n<div style=\"margin: 0 auto !important;\" align=\"center\">\r\n<table class=\"w100\" style=\"width: 600px; background-color: #f7f7f9; margin: 0 auto !important; padding: 0px;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" bgcolor=\"#F7F7F9\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 13px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"background-color: #d8ecff;\" height=\"32\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"40\" style=\"width: 53.1077%;\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td height=\"50\"><img src=\"cid:sys_attachment.dosys_idbe2e8d8d1bda2a50205e8736624bcb90@SNC.72ad2c8344087f36\" width=\"auto\" height=\"50\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr style=\"background-color: #d8ecff;\" height=\"22\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr><!-- Left-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- CONTAINER -->\r\n<td width=\"564\">\r\n<table class=\"w100\" style=\"margin: 0px; padding: 0px; box-shadow: 0px 2px 10px rgba(23, 40, 52, 0.08);\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody><!-- Main Container -->\r\n<tr>\r\n<td class=\"pad-sides-20\" style=\"border-radius: 6px; text-align: left; background-color: #ffffff; padding: 24px 24px 24px 24px; color: #454545;\" align=\"center\">\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-bottom: 10px;\"><strong>This is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD)</strong> which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.</div>\r\n</div>\r\n<hr>\r\n<p></p><p>Hi ,</p>\r\n<p>We\'re reaching out to ensure your issue has been fully resolved and to hear how we did.</p>\r\n<p>Your recent support request handled by our Tier [1/2/3] team has been marked as resolved. We would really appreciate it if you could take a moment to complete a short survey and share your experience.</p>\r\n<ul style=\"list-style-position: inside;\">\r\n<li><a href=\"https://www.fsd.gov/gsafsd_sp?id=take_survey&amp;instance_id=9ecc7b9847f76650799a9cee626d4386\">Complete the Survey</a></li>\r\n</ul>\r\n<p>Your feedback helps us improve and better serve you in the future.</p>\r\n<p>&nbsp;</p>\r\n<p>Thank you,<br>Federal Service Desk Support Team</p><p></p>\r\n<hr>\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-top: 10px;\"><strong>Don\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times!</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0036075\" target=\"_blank\" rel=\"noopener\">Invite others </a>to help manage your registration. <strong>DO NOT</strong> attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. <strong>Submit all entity validation documentation from your Entity Workspace in SAM.gov.</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0057690\" target=\"_blank\" rel=\"noopener\">Learn how to add documentation</a> to your entity validation case.</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- END CONTAINER --> <!-- Right-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"background-color: #f7f7f9;\" align=\"center\" height=\"40\"></td>\r\n</tr>\r\n<!-- Footer started -->\r\n<tr style=\"background-color: #d8ecff;\">\r\n<td>\r\n<table style=\"background-color: #d8ecff;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td height=\"30\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 14px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_id7d465e4a1b3ca2103943eac1604bcbb6@SNC.cca8d070e692e15d\" width=\"120\" height=\"40\" title=\"Cloud 4.png\" alt=\"Cloud\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"30\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff;\" align=\"center\" valign=\"top\" height=\"30\"><img src=\"cid:sys_attachment.dosys_idb04e85cd1bda2a50205e8736624bcbfa@SNC.bb101f1853d7ef46\" width=\"auto\" height=\"30\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_idb1a5160a1b3ca2103943eac1604bcbdc@SNC.a1f31d7cf580d34f\" width=\"140\" height=\"40\" title=\"Cloud 3.png\" alt=\"Cloud\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff; color: #ffffff;\">\r\n<table style=\"color: #ffffff;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr align=\"center\">\r\n<td><span id=\"templateAddress\" class=\"footer\" style=\"color: #162e51; font-size: 14px; line-height: 18px; text-align: center; margin: 0 !important;\"> GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td height=\"10\"></td>\r\n</tr>\r\n<tr>\r\n<td height=\"120px\"><img style=\"height: 120px; width: 100%;\" src=\"cid:sys_attachment.dosys_id7555160a1b3ca2103943eac1604bcb39@SNC.7266b9ef6c129724\" height=\"120\" title=\"Jefferson Light Blue 2.png\" alt=\"Jefferson Memorial\"><span id=\"mce_26\"></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<!-- Footer end--></tbody>\r\n</table>\r\n</div><div>&nbsp;</div><div style=\"display:inline\">Ref:MSG2527771_4geBGwiYY22hw9kRRUp6</div></body></html>','\r\n\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD) which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.\r\n\r\n\r\nHi ,\r\nWe\'re reaching out to ensure your issue has been fully resolved and to hear how we did.\r\nYour recent support request handled by our Tier [1/2/3] team has been marked as resolved. We would really appreciate it if you could take a moment to complete a short survey and share your experience.\r\n\r\nComplete the Survey\r\n\r\nYour feedback helps us improve and better serve you in the future.\r\n&nbsp;\r\nThank you,Federal Service Desk Support Team\r\n\r\n\r\nDon\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times! Invite others to help manage your registration. DO NOT attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. Submit all entity validation documentation from your Entity Workspace in SAM.gov. Learn how to add documentation to your entity validation case.\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;Ref:MSG2527771_4geBGwiYY22hw9kRRUp6',0,0,0,0,0,0,'2025-09-01 19:49:10','2025-12-09 19:27:58','2025-12-09 19:27:58','2025-12-09 19:27:58',NULL,NULL,NULL),
(658,4,'<626176178.42496.1756756151025@app133022.hef201.service-now.com>',NULL,NULL,'Comment added to INC-GSAFSD20227682','fsdsupport@gsa.gov','\"Federal Service Desk (FSD)\"','<html><head></head><body><p></p>\r\n<style type=\"text/css\">\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n</style>\r\n<div style=\"margin: 0 auto !important;\" align=\"center\">\r\n<table class=\"w100\" style=\"width: 600px; background-color: #f7f7f9; margin: 0 auto !important; padding: 0px;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" bgcolor=\"#F7F7F9\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 13px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"background-color: #d8ecff;\" height=\"32\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"40\" style=\"width: 53.1077%;\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td height=\"50\"><img src=\"cid:sys_attachment.dosys_idbe2e8d8d1bda2a50205e8736624bcb90@SNC.818de219b8de2e58\" width=\"auto\" height=\"50\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\" style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n<tr style=\"background-color: #d8ecff;\" height=\"22\">\r\n<td style=\"width: 23.4739%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr><!-- Left-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- CONTAINER -->\r\n<td width=\"564\">\r\n<table class=\"w100\" style=\"margin: 0px; padding: 0px; box-shadow: 0px 2px 10px rgba(23, 40, 52, 0.08);\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody><!-- Main Container -->\r\n<tr>\r\n<td class=\"pad-sides-20\" style=\"border-radius: 6px; text-align: left; background-color: #ffffff; padding: 24px 24px 24px 24px; color: #454545;\" align=\"center\">\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-bottom: 10px;\"><strong>This is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD)</strong> which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.</div>\r\n</div>\r\n<hr>\r\n<p></p><div style=\"font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif; line-height: 26px; font-size: 16px;\">\r\n<div style=\"line-height: 26px; padding-bottom: 24px; text-align: left; color: #454545;\">\r\n<h4 style=\"margin-top: 14pt; line-height: 32px; margin-bottom: 4pt; text-align: left; font-size: 17.52pt;\"><strong> New Comment(s) on Your FSD.gov Incident: INC-GSAFSD20227682</strong></h4>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left; font-size: 12pt;\">Hello <strong>rick@mavrix.one,</strong></p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 12pt; text-align: left;\">There are new comments on your incident <strong>INC-GSAFSD20227682</strong>.</p>\r\n<p style=\"margin-top: 12pt; margin-bottom: 6pt; text-align: left;\"><span style=\"font-size: 12pt;\">To view the complete incident details and activity history, please use the link below:<br></span><strong><span style=\"font-size: 12pt;\"></span></strong></p><div style=\"margin-top: 8px;\"><strong><a href=\"https://www.fsd.gov/gsafsd_sp?id=incident_form&amp;table=incident&amp;sys_id=bcc037c61be76610205e8736624bcb84\" style=\"background-color: #70E17B;color: #162E51;font-size: 16px;text-decoration: none; border-radius: 4px;-webkit-border-radius: 4px;-moz-border-radius: 4px;display: inline-block;padding: 10px 32px 10px 32px;\">View incident</a></strong></div><p></p>\r\n<span style=\"font-size: 12pt;\">Thank you,</span><span style=\"font-size: 12pt;\"><br></span><strong><span style=\"font-size: 12pt;\">FSD.gov Team</span></strong></div>\r\n</div><p></p>\r\n<hr>\r\n<div>\r\n<div style=\"font-size: 14px; line-height: 22px; padding-top: 10px;\"><strong>Don\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times!</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0036075\" target=\"_blank\" rel=\"noopener\">Invite others </a>to help manage your registration. <strong>DO NOT</strong> attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. <strong>Submit all entity validation documentation from your Entity Workspace in SAM.gov.</strong> <a href=\"https://www.fsd.gov/gsafsd_sp?id=kb_article_view&amp;sysparm_article=KB0057690\" target=\"_blank\" rel=\"noopener\">Learn how to add documentation</a> to your entity validation case.</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<!-- END CONTAINER --> <!-- Right-->\r\n<td valign=\"top\" width=\"18\">\r\n<table width=\"18\" cellspacing=\"0\">\r\n<tbody>\r\n<tr style=\"background: #d8ecff;\" height=\"48\">\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"background-color: #f7f7f9;\" align=\"center\" height=\"40\"></td>\r\n</tr>\r\n<!-- Footer started -->\r\n<tr style=\"background-color: #d8ecff;\">\r\n<td>\r\n<table style=\"background-color: #d8ecff;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td height=\"30\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"background: #d8ecff; text-align: center; font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif; color: #454545; font-size: 14px; line-height: 14px;\" align=\"center\">\r\n<table style=\"border-spacing: 0; width: 100%;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_id7d465e4a1b3ca2103943eac1604bcbb6@SNC.a1d0e7e67da19205\" width=\"120\" height=\"40\" title=\"Cloud 4.png\" alt=\"Cloud\"></td>\r\n<td align=\"center\" valign=\"bottom\" height=\"30\">\r\n<table style=\"margin: 0 auto;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff;\" align=\"center\" valign=\"top\" height=\"30\"><img src=\"cid:sys_attachment.dosys_idb04e85cd1bda2a50205e8736624bcbfa@SNC.ebd9ffa4e3725fd2\" width=\"auto\" height=\"30\" alt=\"FSD Logo\" data-library=\"true\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"140\" height=\"40\"><img style=\"height: 46px;\" src=\"cid:sys_attachment.dosys_idb1a5160a1b3ca2103943eac1604bcbdc@SNC.2f3e7848c0db6fa7\" width=\"140\" height=\"40\" title=\"Cloud 3.png\" alt=\"Cloud\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n<tbody>\r\n<tr>\r\n<td style=\"background-color: #d8ecff; color: #ffffff;\">\r\n<table style=\"color: #ffffff;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr align=\"center\">\r\n<td><span id=\"templateAddress\" class=\"footer\" style=\"color: #162e51; font-size: 14px; line-height: 18px; text-align: center; margin: 0 !important;\"> GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 </span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td height=\"10\"></td>\r\n</tr>\r\n<tr>\r\n<td height=\"120px\"><img style=\"height: 120px; width: 100%;\" src=\"cid:sys_attachment.dosys_id7555160a1b3ca2103943eac1604bcb39@SNC.8a26dbd06c5a4121\" height=\"120\" title=\"Jefferson Light Blue 2.png\" alt=\"Jefferson Memorial\"><span id=\"mce_26\"></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<!-- Footer end--></tbody>\r\n</table>\r\n</div><div>&nbsp;</div><div style=\"display:inline\">Ref:MSG2527765_ZbYgfImEBRCLKJo56M5Y</div></body></html>','\r\n\r\n	* {\r\n		-webkit-text-size-adjust: none;\r\n	}\r\n\r\n	body {\r\n		margin: 0 auto !important;\r\n		padding: 0 !important;\r\n		font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;\r\n	}\r\n\r\n	.btn a {\r\n		text-decoration: none;\r\n	}\r\n\r\n	.btn.inverse a {\r\n		color: #fff;\r\n	}\r\n\r\n	a:-webkit-any-link {\r\n		color: #3F57A6;\r\n		text-decoration: none;\r\n	}\r\n\r\n	a:-webkit-any-link:hover {\r\n		color: #8a7237;\r\n		text-decoration: underline;\r\n	}\r\n    hr {\r\n		border-color: #dadde2;\r\n	}\r\n\r\n	#requestapprove a {\r\n		color: #fff !important;\r\n	}\r\n\r\n	span.footer,\r\n	#templateAddress,\r\n	#templateCopyright,\r\n	#templateCopyright *,\r\n	#templateAddress * {\r\n		margin: 0;\r\n		font-size: 14px;\r\n		line-height: 18px;\r\n		color: #ffffff;\r\n	}\r\n\r\n	#snc_notification_unsubscribe,\r\n	#snc_notification_preference {\r\n		color: #3F57A6;\r\n		font-size: 16px;\r\n		line-height: 19px;\r\n	}\r\n\r\n	#snc_notification_unsubscribe {\r\n		padding-right: 8px;\r\n	}\r\n\r\n	#snc_notification_preference {\r\n		padding-left: 8px;\r\n	}\r\n\r\n	body,\r\n	table,\r\n	td,\r\n	p,\r\n	a {\r\n		-ms-text-size-adjust: 100% !important;\r\n		-webkit-text-size-adjust: 100% !important;\r\n	}\r\n\r\n	table,\r\n	tr,\r\n	td {\r\n		border-spacing: 0 !important;\r\n		mso-table-lspace: 0 !important;\r\n		mso-table-rspace: 0 !important;\r\n		border-collapse: collapse !important;\r\n		mso-line-height-rule: exactly !important;\r\n	}\r\n\r\n	.ExternalClass * {\r\n		line-height: 100%;\r\n	}\r\n\r\n	.mobile-link a,\r\n	.mobile-link span {\r\n		text-decoration: none !important;\r\n		color: inherit !important;\r\n		border: none !important;\r\n	}\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an official message sent on behalf of the U.S. General Services Administration\'s Federal Service Desk (FSD) which provides free help for SAM.gov, FPDS.gov, and eSRS.gov.\r\n\r\n\r\n\r\n\r\n New Comment(s) on Your FSD.gov Incident: INC-GSAFSD20227682\r\nHello rick@mavrix.one,\r\nThere are new comments on your incident INC-GSAFSD20227682.\r\nTo view the complete incident details and activity history, please use the link below:View incident\r\nThank you,FSD.gov Team\r\n\r\n\r\n\r\nDon\'t lose access to your SAM.gov registration! Make sure you have at least two Entity Administrators at all times! Invite others to help manage your registration. DO NOT attach documents containing personally identifiable information, controlled unclassified information, or other sensitive information to your FSD ticket or in reply to this email. Submit all entity validation documentation from your Entity Workspace in SAM.gov. Learn how to add documentation to your entity validation case.\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n GSA Headquarters, 1800 F St NW, Washington, D.C. 20405 \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;Ref:MSG2527765_ZbYgfImEBRCLKJo56M5Y',0,0,0,0,0,0,'2025-09-01 19:49:11','2025-12-09 19:27:58','2025-12-09 19:27:58','2025-12-09 19:27:58',NULL,NULL,NULL),
(659,4,'<40B635C9-E30A-41FD-9F12-6BE0553305CD@mavrix.one>',NULL,NULL,'Re: Email setup for iPhone','Brian@mavrix.one','Brian Stufflebean','\r\n--Apple-Mail=_936D95B1-2433-4F4B-A900-F7B6DE662DA9\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Type: text/html;\r\n	charset=utf-8\r\n\r\n<html><head><meta http-equiv=3D\"content-type\" content=3D\"text/html; =\r\ncharset=3Dutf-8\"></head><body style=3D\"overflow-wrap: break-word; =\r\n-webkit-nbsp-mode: space; line-break: after-white-space;\"><span =\r\nstyle=3D\"font-size: 14px;\">Good morning Rick,</span><div><span =\r\nstyle=3D\"font-size: 14px;\"><br></span></div><div><span style=3D\"font-size:=\r\n 14px;\">Hope you enjoyed your Labor Day weekend.</span></div><div><span =\r\nstyle=3D\"font-size: 14px;\"><br></span></div><div><span style=3D\"font-size:=\r\n 14px;\">This email account is obviously working, however, the setup on =\r\nthe iPhone did not work. It continued to give me a =E2=80=9CIncorrect =\r\nPassword=E2=80=9D error, which is again, obviously not =\r\ncorrect.&nbsp;</span></div><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: 14px;\">Not =\r\ncertain what to do on this one=E2=80=A6.</span></div><div><span =\r\nstyle=3D\"font-size: 14px;\"><br></span></div><div><span style=3D\"font-size:=\r\n 14px;\"><br></span></div><div><span style=3D\"font-size: =\r\n14px;\">Brian</span></div><div><br></div><div><br></div><div><div><br><bloc=\r\nkquote type=3D\"cite\"><div>On Aug 30, 2025, at 9:29=E2=80=AFAM, Rick =\r\n&lt;rick@mavrix.one&gt; wrote:</div><br =\r\nclass=3D\"Apple-interchange-newline\"><div><meta charset=3D\"UTF-8\"><div =\r\nstyle=3D\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; =\r\nfont-size: 13px; font-style: normal; font-variant-caps: normal; =\r\nfont-weight: 400; letter-spacing: normal; text-align: start; =\r\ntext-indent: 0px; text-transform: none; white-space: normal; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"><p class=3D\"MsoNormal\" style=3D\"margin: 0in 0in 8pt; line-height: =\r\n18.4px; font-size: medium; font-family: Calibri, =\r\nsans-serif;\"><b><i><u>For iPhone Email =\r\nSetup:<o:p></o:p></u></i></b></p><p class=3D\"MsoNormal\" style=3D\"margin: =\r\n0in 0in 8pt; line-height: 18.4px; font-size: medium; font-family: =\r\nCalibri, sans-serif;\"><b>&nbsp;</b></p><p class=3D\"MsoNormal\" =\r\nstyle=3D\"margin: 0in 0in 8pt; line-height: 18.4px; font-size: medium; =\r\nfont-family: Calibri, sans-serif;\"><b>ADD ACCOUNT<o:p></o:p></b></p><p =\r\nclass=3D\"MsoNormal\" style=3D\"margin: 0in 0in 8pt; line-height: 18.4px; =\r\nfont-size: medium; font-family: Calibri, =\r\nsans-serif;\">Name:&nbsp;<b><u>Brian C. =\r\nStufflebean</u></b><br>Email:&nbsp;<b><u><a =\r\nhref=3D\"mailto:brian@mavrix.one\">brian@mavrix.one</a></u></b><br>Password:=\r\n&nbsp;<b><u>your password</u></b><br>Description:&nbsp;<b><u>Brian=E2=80=99=\r\ns Mavrix1 Email<o:p></o:p></u></b></p><p class=3D\"MsoNormal\" =\r\nstyle=3D\"margin: 0in 0in 8pt; line-height: 18.4px; font-size: medium; =\r\nfont-family: Calibri, sans-serif;\"><b>CLICK NEXT<o:p></o:p></b></p><p =\r\nclass=3D\"MsoNormal\" style=3D\"margin: 0in 0in 8pt; line-height: 18.4px; =\r\nfont-size: medium; font-family: Calibri, =\r\nsans-serif;\"><b>&nbsp;</b></p><p class=3D\"MsoNormal\" style=3D\"margin: =\r\n0in 0in 8pt; line-height: 18.4px; font-size: medium; font-family: =\r\nCalibri, sans-serif;\"><b><u>IMAP<o:p></o:p></u></b></p><p =\r\nclass=3D\"MsoNormal\" style=3D\"margin: 0in 0in 8pt; line-height: 18.4px; =\r\nfont-size: medium; font-family: Calibri, =\r\nsans-serif;\">Name:&nbsp;<b><u>Brian C. =\r\nStufflebean<br></u></b>Email:&nbsp;<b><u><a =\r\nhref=3D\"mailto:brian@mavrix.one\">brian@mavrix.one</a><br></u></b>Descripti=\r\non:&nbsp;<b><u>Brian=E2=80=99s Mavrix1 Email<o:p></o:p></u></b></p><p =\r\nclass=3D\"MsoNormal\" style=3D\"margin: 0in 0in 8pt; line-height: 18.4px; =\r\nfont-size: medium; font-family: Calibri, sans-serif;\"><b><i><u>Incoming =\r\nMail Server:&nbsp;<br></u></i></b>Hostname:<b>&nbsp;<a =\r\nhref=3D\"http://nwpro5.fcomet.com/\" target=3D\"_blank\" style=3D\"color: =\r\nrgb(149, 79, 114);\">nwpro5.fcomet.com</a></b><br>Username:&nbsp;<b><u><a =\r\nhref=3D\"mailto:brian@mavrix.one\">brian@mavrix.one</a></u></b><br>Password:=\r\n&nbsp;<b><u>your password</u></b><o:p></o:p></p><p class=3D\"MsoNormal\" =\r\nstyle=3D\"margin: 0in 0in 8pt; line-height: 18.4px; font-size: medium; =\r\nfont-family: Calibri, sans-serif;\"><b><i><u>Outgoing Mail =\r\nServer:</u></i></b><br>Hostname:&nbsp;<a =\r\nhref=3D\"http://nwpro5.fcomet.com/\" target=3D\"_blank\" style=3D\"color: =\r\nrgb(149, 79, 114);\">nwpro5.fcomet.com</a><br>Username<b><u>&nbsp;<a =\r\nhref=3D\"mailto:brian@mavrix.one\">brian@mavrix.one</a></u></b><br>Password:=\r\n&nbsp;<b><u>your password</u></b><o:p></o:p></p><p class=3D\"MsoNormal\" =\r\nstyle=3D\"margin: 0in 0in 8pt; line-height: 18.4px; font-size: medium; =\r\nfont-family: Calibri, sans-serif;\"><o:p>&nbsp;</o:p></p><p =\r\nclass=3D\"MsoNormal\" style=3D\"margin: 0in 0in 8pt; line-height: 18.4px; =\r\nfont-size: medium; font-family: Calibri, =\r\nsans-serif;\"><b>VERIFY<o:p></o:p></b></p><p class=3D\"MsoNormal\" =\r\nstyle=3D\"margin: 0in 0in 8pt; line-height: 18.4px; font-size: medium; =\r\nfont-family: Calibri, sans-serif;\"><b><br></b></p><p class=3D\"MsoNormal\" =\r\nstyle=3D\"margin: 0in 0in 8pt; line-height: 18.4px; font-size: medium; =\r\nfont-family: Calibri, sans-serif;\"><b><br></b></p></div><br =\r\nstyle=3D\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; =\r\nfont-size: 13px; font-style: normal; font-variant-caps: normal; =\r\nfont-weight: 400; letter-spacing: normal; text-align: start; =\r\ntext-indent: 0px; text-transform: none; white-space: normal; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"><div class=3D\"gmail_signature\" style=3D\"caret-color: rgb(0, 0, =\r\n0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none;\"><br><div><span style=3D\"font-family: Helvetica, =\r\nArial;\">Rick Mislan, PhD,&nbsp;</span><div style=3D\"font-family: =\r\nHelvetica, Arial;\">Founder, CTO</div><div style=3D\"font-family: =\r\nHelvetica, Arial;\"><img class=3D\"imgAttach\" =\r\nsrc=3D\"data:image/jpg;base64,/9j/4AAQSkZJRgABAQAASABIAAD/4QCMRXhpZgAATU0AK=\r\ngAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAId=\r\npAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAA=\r\nGygAwAEAAAAAQAAABgAAAAA/+0AOFBob3Rvc2hvcCAzLjAAOEJJTQQEAAAAAAAAOEJJTQQlAAA=\r\nAAAAQ1B2M2Y8AsgTpgAmY7PhCfv/AABEIABgAbAMBEQACEQEDEQH/xAAfAAABBQEBAQEBAQAAA=\r\nAAAAAAAAQIDBAUGBwgJCgv/xAC1EAACAQMDAgQDBQUEBAAAAX0BAgMABBEFEiExQQYTUWEHInE=\r\nUMoGRoQgjQrHBFVLR8CQzYnKCCQoWFxgZGiUmJygpKjQ1Njc4OTpDREVGR0hJSlNUVVZXWFlaY=\r\n2RlZmdoaWpzdHV2d3h5eoOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcb=\r\nHyMnK0tPU1dbX2Nna4eLj5OXm5+jp6vHy8/T19vf4+fr/xAAfAQADAQEBAQEBAQEBAAAAAAAAA=\r\nQIDBAUGBwgJCgv/xAC1EQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpG=\r\nhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZna=\r\nGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycr=\r\nS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBA=\r\nQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/2wBDAQEBAQEBAQEBAQE=\r\nBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/3=\r\nQAEAA7/2gAMAwEAAhEDEQA/AP6F/hz/AMFMv2+PjlH401z4Df8ABOvSPib4I8H/ABC8UfDqXxT=\r\n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\r\njs2r6dD/9k=3D\" alt=3D\"\" data-unique-identifier=3D\"\"></div><div =\r\nstyle=3D\"font-family: Helvetica, Arial;\"><a =\r\nhref=3D\"http://mavrix1.com/\">mavrix1.com</a></div></div><div><br></div><di=\r\nv><br></div><div><div>CONFIDENTIALITY NOTICE: This communication is =\r\nconfidential and intended only for the intended recipient. &nbsp;If you =\r\nare not the intended recipient, you may not copy, disclose, or =\r\ndistribute this message to anyone else; any such actions may be =\r\nunlawful. If you have received this communication in error, please =\r\ncontact the sender of the message to inform him or her of the =\r\nerror.</div></div></div></div></blockquote></div><br><div>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; orphans: auto; text-align: start; text-indent: 0px; =\r\ntext-transform: none; white-space: normal; widows: auto; word-spacing: =\r\n0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><font size=3D\"2\">Best =\r\nregards,</font></div><div style=3D\"font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><font =\r\nsize=3D\"2\"><br></font></div><div style=3D\"font-family: Helvetica; =\r\nfont-size: 12px; font-style: normal; font-variant-caps: normal; =\r\nfont-weight: 400; letter-spacing: normal; orphans: auto; text-align: =\r\nstart; text-indent: 0px; text-transform: none; white-space: normal; =\r\nwidows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><b>Brian C. Stufflebean</b><br>CEO, =\r\nCo-Founder</font><br><br></div><span style=3D\"font-family: Helvetica; =\r\nfont-size: 12px; font-style: normal; font-variant-caps: normal; =\r\nfont-weight: 400; letter-spacing: normal; orphans: auto; text-align: =\r\nstart; text-indent: 0px; text-transform: none; white-space: normal; =\r\nwidows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"></span><span style=3D\"caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0); font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none;\"></span><br =\r\nclass=3D\"Apple-interchange-newline\"><span><img =\r\nalt=3D\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" =\r\nsrc=3D\"cid:CB596987-D3CC-4C61-B9D3-CE1C1DF1C723\"></span><meta =\r\ncharset=3D\"UTF-8\"><div style=3D\"font-family: Helvetica; font-size: 12px; =\r\nfont-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br =\r\nclass=3D\"Apple-interchange-newline\"><br><a =\r\nhref=3D\"https://mavrix1.com\">https://mavrix1.com/</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><br><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY =\r\nNOTICE:</b><span style=3D\"font-family: Helvetica; font-style: normal; =\r\nfont-weight: 400; font-size: =\r\n12px;\">&nbsp;This&nbsp;communication&nbsp;is =\r\nconfidential&nbsp;and&nbsp;intended only for the =\r\nintended&nbsp;recipient.&nbsp;&nbsp;If you are not the =\r\nintended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, =\r\nor&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any =\r\nsuch&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this =\r\ncommunication&nbsp;in error,&nbsp;please contact the sender =\r\nof&nbsp;the&nbsp;message to inform him or her of =\r\nthe&nbsp;error.<br><br></span></div>\r\n</div>\r\n<br></div></body></html>=\r\n\r\n--Apple-Mail=_936D95B1-2433-4F4B-A900-F7B6DE662DA9\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\r\nContent-Type: image/png;\r\n	name=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\"\r\nContent-Id: <CB596987-D3CC-4C61-B9D3-CE1C1DF1C723>\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGwAAAAYCAYAAAAf1RgaAAAAAXNSR0IArs4c6QAAAIRlWElmTU0A\r\nKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdp\r\nAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAGyg\r\nAwAEAAAAAQAAABgAAAAABrPxEgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5h\r\nZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9\r\nIlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9y\r\nZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6\r\nYWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZm\r\nLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgog\r\nICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAA\r\nC6FJREFUaAXtWnuMVUcZnznPe/fuZYEtDxHCQ1ADBNuuAlKh24dRaqURWFotj5haKAn9SxOaauRi\r\nxEBsMMFSAmnUCDTKWtDioyEm3RLKq6VKC7Rg20VA5Lmwz3vPa8bfN+ecu+fevbugjQQrX5g735n5\r\nvm++13wz5yyc3YKb0gP19a8YTU33+NNmbx0puHjJtGsm+U7beoMxyRsaGrUJE45JxlbclMp/1JXK\r\nsZWM5XLwP6PG6+tzOgVr8tzN0wWTjRq3hojAw6TU+EfdGf9T9uVyGsutQNC4nDpn8zz0m7lmWEwE\r\njm6mbd/r3MCnzNk6DlEbyRFCqfNbAbyBEeaBlJzrkula1mOFQ683fvMcLT917tblGF8dbTgmhe8a\r\nZsbyvY4NhsbEdwy7ZrHntDHOtBuo7q2lGLyvGSnmOe2/fH3S3//EGhGsOZuf03RrKRMC/3wBL30f\r\n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\r\n--Apple-Mail=_936D95B1-2433-4F4B-A900-F7B6DE662DA9--','Good morning Rick,\r\n\r\nHope you enjoyed your Labor Day weekend.\r\n\r\nThis email account is obviously working, however, the setup on the iPhone did not work. It continued to give me a “Incorrect Password” error, which is again, obviously not correct. \r\n\r\nNot certain what to do on this one….\r\n\r\n\r\nBrian\r\n\r\n\r\n\r\n> On Aug 30, 2025, at 9:29 AM, Rick <rick@mavrix.one> wrote:\r\n> \r\n> For iPhone Email Setup:\r\n> \r\n>  \r\n> \r\n> ADD ACCOUNT\r\n> \r\n> Name: Brian C. Stufflebean\r\n> Email: brian@mavrix.one <mailto:brian@mavrix.one>\r\n> Password: your password\r\n> Description: Brian’s Mavrix1 Email\r\n> \r\n> CLICK NEXT\r\n> \r\n>  \r\n> \r\n> IMAP\r\n> \r\n> Name: Brian C. Stufflebean\r\n> Email: brian@mavrix.one <mailto:brian@mavrix.one>\r\n> Description: Brian’s Mavrix1 Email\r\n> \r\n> Incoming Mail Server: \r\n> Hostname: nwpro5.fcomet.com <http://nwpro5.fcomet.com/>\r\n> Username: brian@mavrix.one <mailto:brian@mavrix.one>\r\n> Password: your password\r\n> \r\n> Outgoing Mail Server:\r\n> Hostname: nwpro5.fcomet.com <http://nwpro5.fcomet.com/>\r\n> Username brian@mavrix.one <mailto:brian@mavrix.one>\r\n> Password: your password\r\n> \r\n>  \r\n> \r\n> VERIFY\r\n> \r\n> \r\n> \r\n> \r\n> \r\n> \r\n> \r\n> Rick Mislan, PhD, \r\n> Founder, CTO\r\n> \r\n> mavrix1.com <http://mavrix1.com/>\r\n> \r\n> \r\n> CONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.\r\n\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n\r\n\r\n￼\r\n\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-09-02 13:15:09','2025-12-09 19:27:58','2025-12-09 19:27:58','2025-12-09 19:27:58',NULL,NULL,NULL),
(660,4,'<calendar-c83efd67-f838-46c3-b1d7-537e803bdadf@google.com>',NULL,NULL,'Invitation: Mavrix/Bista Odoo Discussioj @ Wed Sep 3, 2025 11am - 11:30am (EDT) (rick@mavrix.one)','nick.augustyn@bistasolutions.com','Nick Augustyn','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v144/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v118/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation from Nick Augustyn\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"1o5op01vn0ic3of9tf60il3ruh\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Mavrix/Bista Odoo Discussioj</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MW81b3AwMXZuMGljM29mOXRmNjBpbDNydWggcmlja0BtYXZyaXgub25l&amp;tok=MzIjbmljay5hdWd1c3R5bkBiaXN0YXNvbHV0aW9ucy5jb21iYTBlNzNjM2Y1YmVjNDk2MTViYmFmNGZkMzczYWZhNThlMWUyYmM2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250903T150000Z\"></time><time itemprop=\"endDate\" datetime=\"20250903T153000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">Join with Google Meet – You have been invited by Nick Augustyn to attend an event named Mavrix/Bista Odoo Discussioj on Wednesday Sep 3, 2025 ⋅ 11am – 11:30am (Eastern Time - New York).</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:28px;\"><a href=\"https://meet.google.com/psy-dkmi-ngc?hs=224\" class=\"primary-button-text\" style=\"display: inline-block;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"display: inline-block\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"background-color: #1a73e8; cursor: auto; padding: 10px 25px; border: none; border-radius: 4px; margin: 0;\" class=\"primary-button\"><!--[if mso]><a href=\"https://meet.google.com/psy-dkmi-ngc?hs=224\" class=\"primary-button-text\" target=\"_blank\"><![endif]--><span class=\"primary-button-text\" style=\"font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\">Join with Google Meet</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Meeting link</h2></td></tr></table><!-- Use grey text for the Meet link--><div><a style=\"display: inline-block;;color: #70757a; text-decoration: none;\" class=\"secondary-text underline-on-hover\" href=\"https://meet.google.com/psy-dkmi-ngc?hs=224\">meet.google.com/psy-dkmi-ngc</a></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Join by phone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(US) </span><a href=\"tel:+1-405-393-0083%3B490652696%23\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+1 405-393-0083</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">PIN: 490652696</span><br><br><a href=\"https://tel.meet/psy-dkmi-ngc?pin=8531379098590&amp;hs=0\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">More phone numbers</a><br></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250903T150000Z\"></time><time itemprop=\"endDate\" datetime=\"20250903T153000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Wednesday Sep 3, 2025 ⋅ 11am – 11:30am (Eastern Time - New York)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:nick.augustyn@bistasolutions.com\">Nick Augustyn</a></span><meta itemprop=\"email\" content=\"nick.augustyn@bistasolutions.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Nick Augustyn\"/><meta itemprop=\"email\" content=\"nick.augustyn@bistasolutions.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MW81b3AwMXZuMGljM29mOXRmNjBpbDNydWggcmlja0BtYXZyaXgub25l&amp;tok=MzIjbmljay5hdWd1c3R5bkBiaXN0YXNvbHV0aW9ucy5jb21iYTBlNzNjM2Y1YmVjNDk2MTViYmFmNGZkMzczYWZhNThlMWUyYmM2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MW81b3AwMXZuMGljM29mOXRmNjBpbDNydWggcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MzIjbmljay5hdWd1c3R5bkBiaXN0YXNvbHV0aW9ucy5jb21iYTBlNzNjM2Y1YmVjNDk2MTViYmFmNGZkMzczYWZhNThlMWUyYmM2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MW81b3AwMXZuMGljM29mOXRmNjBpbDNydWggcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MzIjbmljay5hdWd1c3R5bkBiaXN0YXNvbHV0aW9ucy5jb21iYTBlNzNjM2Y1YmVjNDk2MTViYmFmNGZkMzczYWZhNThlMWUyYmM2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MW81b3AwMXZuMGljM29mOXRmNjBpbDNydWggcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MzIjbmljay5hdWd1c3R5bkBiaXN0YXNvbHV0aW9ucy5jb21iYTBlNzNjM2Y1YmVjNDk2MTViYmFmNGZkMzczYWZhNThlMWUyYmM2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MW81b3AwMXZuMGljM29mOXRmNjBpbDNydWggcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MzIjbmljay5hdWd1c3R5bkBiaXN0YXNvbHV0aW9ucy5jb21iYTBlNzNjM2Y1YmVjNDk2MTViYmFmNGZkMzczYWZhNThlMWUyYmM2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MW81b3AwMXZuMGljM29mOXRmNjBpbDNydWggcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MzIjbmljay5hdWd1c3R5bkBiaXN0YXNvbHV0aW9ucy5jb21iYTBlNzNjM2Y1YmVjNDk2MTViYmFmNGZkMzczYWZhNThlMWUyYmM2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MW81b3AwMXZuMGljM29mOXRmNjBpbDNydWggcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MzIjbmljay5hdWd1c3R5bkBiaXN0YXNvbHV0aW9ucy5jb21iYTBlNzNjM2Y1YmVjNDk2MTViYmFmNGZkMzczYWZhNThlMWUyYmM2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MW81b3AwMXZuMGljM29mOXRmNjBpbDNydWggcmlja0BtYXZyaXgub25l&amp;tok=MzIjbmljay5hdWd1c3R5bkBiaXN0YXNvbHV0aW9ucy5jb21iYTBlNzNjM2Y1YmVjNDk2MTViYmFmNGZkMzczYWZhNThlMWUyYmM2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MW81b3AwMXZuMGljM29mOXRmNjBpbDNydWggcmlja0BtYXZyaXgub25l&amp;tok=MzIjbmljay5hdWd1c3R5bkBiaXN0YXNvbHV0aW9ucy5jb21iYTBlNzNjM2Y1YmVjNDk2MTViYmFmNGZkMzczYWZhNThlMWUyYmM2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','Mavrix/Bista Odoo Discussioj\r\nWednesday Sep 3, 2025 ⋅ 11am – 11:30am\r\nEastern Time - New York\r\n\r\nJoin with Google Meet\r\nhttps://meet.google.com/psy-dkmi-ngc?hs=224\r\n\r\n\r\n	\r\nJoin by phone\r\n(US) +1 405-393-0083\r\nPIN: 490652696\r\n\r\nMore phone numbers\r\nhttps://tel.meet/psy-dkmi-ngc?pin=8531379098590&hs=0\r\n\r\n\r\nOrganizer\r\nNick Augustyn\r\nnick.augustyn@bistasolutions.com\r\n\r\nGuests\r\nNick Augustyn - organizer\r\nrick@mavrix.one\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=MW81b3AwMXZuMGljM29mOXRmNjBpbDNydWggcmlja0BtYXZyaXgub25l&tok=MzIjbmljay5hdWd1c3R5bkBiaXN0YXNvbHV0aW9ucy5jb21iYTBlNzNjM2Y1YmVjNDk2MTViYmFmNGZkMzczYWZhNThlMWUyYmM2&ctz=America%2FNew_York&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=MW81b3AwMXZuMGljM29mOXRmNjBpbDNydWggcmlja0BtYXZyaXgub25l&tok=MzIjbmljay5hdWd1c3R5bkBiaXN0YXNvbHV0aW9ucy5jb21iYTBlNzNjM2Y1YmVjNDk2MTViYmFmNGZkMzczYWZhNThlMWUyYmM2&ctz=America%2FNew_York&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-09-02 15:48:39','2025-12-09 19:27:59','2025-12-09 19:27:59','2025-12-09 19:27:59',NULL,NULL,NULL),
(661,4,'<CAN_x9er76t=4pY33uP+K-6CWydNrVqgyiE_jty2n7+6QU24MiA@mail.gmail.com>',NULL,NULL,'Re: Bista Solutions Odoo Inquiry','nick.augustyn@bistasolutions.com','Nick Augustyn','<div dir=\"ltr\"><div dir=\"ltr\">Great, I have sent a calendar invite. Let me know if you have any questions.<div></div></div><br><img width=\"0\" height=\"0\" class=\"mailtrack-img\" alt=\"\" style=\"display:flex\" src=\"https://mailtrack.io/trace/mail/287b61aa17e9b6175b2a857bfe95ea94102ba1c3.png?u=9660734\"><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Sep 1, 2025 at 8:06 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\"><div>Hi Nick, </div><div>What’s this week look like for you. Say Wed, <a href=\"http://airmail.calendar/2025-09-04%2012:00:00%20EDT\" style=\"word-break:break-word\" target=\"_blank\">Thursday</a> or <a href=\"http://airmail.calendar/2025-09-05%2010:00:00%20EDT\" style=\"word-break:break-word\" target=\"_blank\">Fri 10a-1p EST</a>?</div>Thanks!<div>Rick</div></div> <br> <div class=\"gmail_signature\">\r\n        \r\n     \r\n    <br>\r\n     \r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD, </span><div style=\"font-family:Helvetica,Arial\">Founder, CTO</div><div style=\"font-family:Helvetica,Arial\"><img alt=\"\"></div><div style=\"font-family:Helvetica,Arial\"><a href=\"http://mavrix1.com/\" target=\"_blank\">mavrix1.com</a></div></div><div><br></div><div><br></div><div><div>CONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.</div><div><br></div></div>\r\n\r\n</div> <br><p>On August 29, 2025 at 1:38:38 PM, Nick Augustyn (<a href=\"mailto:nick.augustyn@bistasolutions.com\" target=\"_blank\">nick.augustyn@bistasolutions.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div><div><p style=\"display:inline\"><span style=\"background-color:rgb(255,255,255);color:rgb(34,34,34);font-family:Arial,Helvetica,sans-serif\">Hi Rick,</span></p><p>My name is Nick and I work with Bista Solutions, we received your inquiry for your business about Odoo and I wanted to introduce myself to you. I think it&#39;s best we schedule a more formal call. You can reach me at 716-867-7191 or via email (<a href=\"mailto:nick.augustyn@bistasolutions.com\" target=\"_blank\">nick.augustyn@bistasolutions.com</a>). I am looking forward to speaking with you!<br> </p><p>Thanks,</p></div></div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\" style=\"color:rgb(34,34,34);font-family:&quot;Times New Roman&quot;\"><tbody><tr><td valign=\"top\" style=\"padding:0cm 7.5pt 0cm 0cm\"><p align=\"center\" style=\"margin:0cm 0cm 0.0001pt;font-size:11pt;font-family:Calibri,sans-serif;text-align:center\"><b><span style=\"font-size:12pt;font-family:&quot;Times New Roman&quot;,serif\"><a href=\"http://www.bistasolutions.com/\" style=\"color:rgb(149,79,114)\" target=\"_blank\"><span><img border=\"0\" width=\"76\" height=\"57\" src=\"http://www.bistasolutions.com/India/tinified/Bista-Solutions-logo-for-Email-sig.png\"></span></a></span></b></p></td><td valign=\"top\" style=\"padding:0cm\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\" width=\"500\" style=\"width:375pt\"><tbody><tr><td valign=\"top\" style=\"padding:0cm\"><p style=\"margin:0.75pt 0cm 0.0001pt;font-size:11pt;font-family:Calibri,sans-serif\"><b><span style=\"font-size:9pt;font-family:Tahoma,sans-serif;color:rgb(88,89,91);text-transform:uppercase\">NicholaS Augustyn</span></b></p></td></tr><tr><td valign=\"top\" style=\"padding:0cm\"><p style=\"margin:0.75pt 0cm 0.0001pt\"><font color=\"#58595b\" face=\"Tahoma, sans-serif\" size=\"1\">Senior Account Executive</font></p></td></tr><tr><td valign=\"top\" style=\"padding:0cm\"><div style=\"margin:0cm 0cm 0.0001pt;font-size:11pt;font-family:Calibri,sans-serif\"><span style=\"font-size:12pt;font-family:&quot;Times New Roman&quot;,serif\"><hr size=\"1\" width=\"23\" noshade align=\"left\" style=\"width:16.95pt;margin-bottom:5px;margin-top:6px\"></span></div></td></tr><tr><td valign=\"top\" style=\"padding:0cm\"><table border=\"0\" cellpadding=\"0\"><tbody><tr><td style=\"padding:0cm\"><p style=\"margin:0cm 0cm 0.0001pt;font-size:11pt;font-family:Calibri,sans-serif\"><span style=\"font-size:12pt;font-family:&quot;Times New Roman&quot;,serif\"><img border=\"0\" width=\"12\" height=\"17\" src=\"http://www.bistasolutions.com/India/tinified/Location-icon.png\" alt=\"?\"></span></p></td><td style=\"padding:0cm 2.85pt\"><p style=\"margin:0cm 0cm 0.0001pt;font-size:11pt;font-family:Calibri,sans-serif\"><span style=\"font-size:7pt;font-family:Tahoma,sans-serif;color:rgb(147,149,152)\">1255 W. 15th St. Suite 210, Plano, TX. 75075</span></p></td></tr></tbody></table></td></tr><tr><td valign=\"top\" style=\"padding:0cm\"><table border=\"0\" cellpadding=\"0\"><tbody><tr><td style=\"padding:0cm\"><p style=\"margin:0cm 0cm 0.0001pt;font-size:11pt;font-family:Calibri,sans-serif\"><span style=\"font-size:12pt;font-family:&quot;Times New Roman&quot;,serif\"><img border=\"0\" width=\"8\" height=\"15\" src=\"http://www.bistasolutions.com/India/tinified/Phone-icon-new.png\" alt=\"?\"></span></p></td><td style=\"padding:0cm 2.85pt\"><p style=\"margin:0cm 0cm 0.0001pt;font-size:11pt;font-family:Calibri,sans-serif\"><span style=\"font-size:7pt;font-family:Tahoma,sans-serif;color:rgb(147,149,152)\">1-716-867-7191</span></p></td><td style=\"padding:0cm\"><p style=\"margin:0cm 0cm 0.0001pt;font-size:11pt;font-family:Calibri,sans-serif\"><br></p></td><td style=\"padding:0cm 2.85pt\"><p style=\"margin:0cm 0cm 0.0001pt;font-size:11pt;font-family:Calibri,sans-serif\"><br></p></td><td style=\"padding:0cm\"><p style=\"margin:0cm 0cm 0.0001pt;font-size:11pt;font-family:Calibri,sans-serif\"><span style=\"font-size:12pt;font-family:&quot;Times New Roman&quot;,serif\"><img border=\"0\" width=\"12\" height=\"12\" src=\"http://www.bistasolutions.com/India/tinified/Web-icon-new.png\" alt=\"?\"></span></p></td><td style=\"padding:0cm 2.85pt\"><p style=\"margin:0cm 0cm 0.0001pt;font-size:11pt;font-family:Calibri,sans-serif\"><span style=\"font-size:7pt;font-family:Tahoma,sans-serif;color:rgb(147,149,152)\"><a href=\"http://www.bistasolutions.com/\" style=\"color:rgb(149,79,114)\" target=\"_blank\"><span style=\"color:rgb(147,149,152)\">www.bistasolutions.com</span></a></span></p></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></div></div><div></div><img width=\"0\" height=\"0\" alt=\"\" style=\"display: flex;\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\"><img src=\"https://stats-getmailtracker.com/pixel/jg5l4vEmhfUCGlwXeSWf?rid=jg5l4vEmhfUCGlwXeSWf&amp;user=620612&amp;end=1\" width=\"0\" height=\"0\" border=\"0\" style=\"display: flex;\" alt=\"\"></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><span style=\"color:rgb(136,136,136)\">Thanks,</span><br style=\"color:rgb(136,136,136)\"><span style=\"color:rgb(136,136,136)\">nick.augustyn@</span><span style=\"color:rgb(136,136,136)\">BistaSolutions.com</span><br style=\"color:rgb(136,136,136)\"><span style=\"color:rgb(136,136,136)\">Senior Account Executive</span><br style=\"color:rgb(136,136,136)\"><span style=\"color:rgb(136,136,136)\">Mobile: 716</span><span style=\"color:rgb(136,136,136);font-family:arial\"> 867 7191</span><br></div></div><img src=\"https://monitor-getmailtracker.com/pixel/qhAPH9AFfzpE6Md78dbt?rid=qhAPH9AFfzpE6Md78dbt&amp;user=620612&amp;end=1\" width=\"0\" height=\"0\" border=\"0\" style=\"display:flex\" alt=\"\"></div>','Great, I have sent a calendar invite. Let me know if you have any questions.\r\n\r\nOn Mon, Sep 1, 2025 at 8:06 AM Rick <rick@mavrix.one> wrote:\r\n\r\n> Hi Nick,\r\n> What’s this week look like for you. Say Wed, Thursday\r\n> <http://airmail.calendar/2025-09-04%2012:00:00%20EDT> or Fri 10a-1p EST\r\n> <http://airmail.calendar/2025-09-05%2010:00:00%20EDT>?\r\n> Thanks!\r\n> Rick\r\n>\r\n>\r\n> Rick Mislan, PhD,\r\n> Founder, CTO\r\n> mavrix1.com\r\n>\r\n>\r\n> CONFIDENTIALITY NOTICE: This communication is confidential and intended\r\n> only for the intended recipient.  If you are not the intended recipient,\r\n> you may not copy, disclose, or distribute this message to anyone else; any\r\n> such actions may be unlawful. If you have received this communication in\r\n> error, please contact the sender of the message to inform him or her of the\r\n> error.\r\n>\r\n>\r\n> On August 29, 2025 at 1:38:38 PM, Nick Augustyn (\r\n> nick.augustyn@bistasolutions.com) wrote:\r\n>\r\n> Hi Rick,\r\n>\r\n> My name is Nick and I work with Bista Solutions, we received your inquiry\r\n> for your business about Odoo and I wanted to introduce myself to you. I\r\n> think it\'s best we schedule a more formal call. You can reach me at\r\n> 716-867-7191 or via email (nick.augustyn@bistasolutions.com). I am\r\n> looking forward to speaking with you!\r\n>\r\n>\r\n> Thanks,\r\n>\r\n> * <http://www.bistasolutions.com/>*\r\n>\r\n> *NicholaS Augustyn*\r\n>\r\n> Senior Account Executive\r\n> ------------------------------\r\n>\r\n> [image: ?]\r\n>\r\n> 1255 W. 15th St. Suite 210, Plano, TX. 75075\r\n>\r\n> [image: ?]\r\n>\r\n> 1-716-867-7191\r\n>\r\n>\r\n>\r\n> [image: ?]\r\n>\r\n> www.bistasolutions.com\r\n>\r\n>\r\n\r\n-- \r\nThanks,\r\nnick.augustyn@BistaSolutions.com\r\nSenior Account Executive\r\nMobile: 716 867 7191',0,0,0,0,0,0,'2025-09-02 15:48:50','2025-12-09 19:27:59','2025-12-09 19:27:59','2025-12-09 19:27:59',NULL,NULL,NULL),
(662,4,'<1ea2b985-a4ab-4ae5-862c-1fbfe61b109b@email.android.com>',NULL,NULL,'Sending note','johnk@mavrix.one','JohnK','<div dir=\'auto\'><div>Note sent</div><div><br></div><div data-smartmail=\"gmail_signature\">John Kellum<br>512.800.1508<br>johnk@mavrix.on</div></div>','Note sentJohn Kellum512.800.1508johnk@mavrix.on',0,0,0,0,0,0,'2025-09-02 19:00:51','2025-12-09 19:28:00','2025-12-09 19:28:00','2025-12-09 19:28:00',NULL,NULL,NULL),
(663,4,'<CAEvVzq1-cY=wZtoZRMT095j8fkT-hv93CWd8ZhfkofYc5W=Wgw@mail.gmail.com>',NULL,NULL,'=?UTF-8?Q?Exploring_How_Brandy=E2=80=99s_Can_Support?=','liz@brandysmoldandtool.com','Elizabeth Perkins','<div dir=\"ltr\"><div><div>Hi Rick,</div><div><p>My name is Liz Perkins, and I recently joined Brandy’s Mold &amp; Tool as Vice President. Dan shared with me a bit about your visit last week, and I wanted to reach out personally.</p><p>In my role, my focus is on modernizing and scaling Brandy’s so we can serve our clients even better — from exploring which additional certifications make the most sense beyond our ISO 9001:2015, to implementing systems and processes that ensure reliability as we grow. My background is in data and business operations, where I’ve helped small teams scale into multi-region organizations, and I’m excited to bring that same lens to Brandy’s.</p><p>That said, what I’d really love is to hear more about <strong>your vision for U.S.-made drones</strong> and what’s most important to you in a supplier partnership. Understanding your goals will help me ensure Brandy’s is aligning in the right ways to support innovators like you. We are extremely proud of and excited to contribute to American-made products,</p><p>Would you be open to a short call next week? I’d love to stay in touch as your plans take shape and explore how Brandy’s can best support your work.</p></div><div>Thank you,</div></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><img width=\"96\" height=\"38\" src=\"https://ci3.googleusercontent.com/mail-sig/AIorK4xpMAQi-3CccYzdad7DnbPHOkAHkZLthTPdqQy_mmGqmNua-ldbvlLW3KyCXMvL0Duc1K_cjsds8w7y\"><div><b>Liz Perkins</b><div>Vice President</div><div>585-233-0566<div><br></div></div></div></div></div></div></div>','Hi Rick,\r\n\r\nMy name is Liz Perkins, and I recently joined Brandy’s Mold & Tool as Vice\r\nPresident. Dan shared with me a bit about your visit last week, and I\r\nwanted to reach out personally.\r\n\r\nIn my role, my focus is on modernizing and scaling Brandy’s so we can serve\r\nour clients even better — from exploring which additional certifications\r\nmake the most sense beyond our ISO 9001:2015, to implementing systems and\r\nprocesses that ensure reliability as we grow. My background is in data and\r\nbusiness operations, where I’ve helped small teams scale into multi-region\r\norganizations, and I’m excited to bring that same lens to Brandy’s.\r\n\r\nThat said, what I’d really love is to hear more about *your vision for\r\nU.S.-made drones* and what’s most important to you in a supplier\r\npartnership. Understanding your goals will help me ensure Brandy’s is\r\naligning in the right ways to support innovators like you. We are extremely\r\nproud of and excited to contribute to American-made products,\r\n\r\nWould you be open to a short call next week? I’d love to stay in touch as\r\nyour plans take shape and explore how Brandy’s can best support your work.\r\nThank you,\r\n*Liz Perkins*\r\nVice President\r\n585-233-0566',0,0,0,0,0,0,'2025-09-02 19:33:39','2025-12-09 19:28:00','2025-12-09 19:28:00','2025-12-09 19:28:00',NULL,NULL,NULL),
(664,4,'<a2805f82a8e0e886c168f0116b7df98b@mavrix.one>',NULL,NULL,'Signature block & email check','jarrett@mavrix.one','jarrett@mavrix.one','Hey Rick, quick comms check!\r\n','Hey Rick, quick comms check!\r\n',0,0,0,0,0,0,'2025-09-02 19:49:30','2025-12-09 19:28:00','2025-12-09 19:28:00','2025-12-09 19:28:00',NULL,NULL,NULL),
(665,4,'<CAEvVzq0J4R59nbeC8Nvtt0pw9rmN+Dzj3Pfvdpx+Vwq8jqn5Yg@mail.gmail.com>',NULL,NULL,'=?UTF-8?Q?Re=3A_Exploring_How_Brandy=E2=80=99s_Can_Support?=','liz@brandysmoldandtool.com','Elizabeth Perkins','<div dir=\"ltr\">Hi Rick,<br><br>Great to hear! I am happy to set something up to meet back in our office. Here is our availability:<div><p><strong>This week</strong></p>\r\n<ul>\r\n<li>\r\n<p>Thursday, 9/4: 2:00–3:00 PM</p>\r\n</li>\r\n<li>\r\n<p>Friday, 9/5: 10:00 AM–3:30 PM</p>\r\n</li>\r\n</ul>\r\n<p><strong>Next week (tentative, pending my jury duty)</strong></p>\r\n<ul>\r\n<li>\r\n<p>Tuesday, 9/9: 9:30–11:30 AM</p>\r\n</li>\r\n<li>\r\n<p>Wednesday, 9/10: 1:30–4:00 PM</p>\r\n</li>\r\n</ul>\r\n<p>Please let me know what works best for you, and I’ll get it on the calendar.</p>\r\n<p>Looking forward to continuing the conversation!</p></div><div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><img width=\"96\" height=\"38\" src=\"https://ci3.googleusercontent.com/mail-sig/AIorK4xpMAQi-3CccYzdad7DnbPHOkAHkZLthTPdqQy_mmGqmNua-ldbvlLW3KyCXMvL0Duc1K_cjsds8w7y\"><div><b>Liz Perkins</b><div>Vice President</div><div>585-233-0566<div><br></div></div></div></div></div></div><br></div></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Sep 2, 2025 at 4:09 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">Hi Liz, </div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Thanks for the follow-up.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Where do I start?</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Actually, would love to stop by again for a follow-up.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Please let me know what’s possible in the next week or so.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Thanks much!</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Rick</div> <br> <div class=\"gmail_signature\">\r\n        \r\n     \r\n    <br>\r\n     \r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD, </span><div style=\"font-family:Helvetica,Arial\">Founder, CTO</div><div style=\"font-family:Helvetica,Arial\"><div><div><img src=\"cid:ii_1990c21f66cfcc4344d1\" style=\"max-width: 99%;\"><br></div><div><a href=\"https://mavrix1.com/\" target=\"_blank\">https://mavrix1.com</a></div></div><div><br></div></div></div></div> <br><p>On September 2, 2025 at 3:34:40 PM, Elizabeth Perkins (<a href=\"mailto:liz@brandysmoldandtool.com\" target=\"_blank\">liz@brandysmoldandtool.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div><div>Hi Rick,</div><div><p>My name is Liz Perkins, and I recently joined Brandy’s Mold &amp; Tool as Vice President. Dan shared with me a bit about your visit last week, and I wanted to reach out personally.</p><p>In my role, my focus is on modernizing and scaling Brandy’s so we can serve our clients even better — from exploring which additional certifications make the most sense beyond our ISO 9001:2015, to implementing systems and processes that ensure reliability as we grow. My background is in data and business operations, where I’ve helped small teams scale into multi-region organizations, and I’m excited to bring that same lens to Brandy’s.</p><p>That said, what I’d really love is to hear more about <strong>your vision for U.S.-made drones</strong> and what’s most important to you in a supplier partnership. Understanding your goals will help me ensure Brandy’s is aligning in the right ways to support innovators like you. We are extremely proud of and excited to contribute to American-made products,</p><p>Would you be open to a short call next week? I’d love to stay in touch as your plans take shape and explore how Brandy’s can best support your work.</p></div><div>Thank you,</div></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><img width=\"96\" height=\"38\" src=\"https://ci3.googleusercontent.com/mail-sig/AIorK4xpMAQi-3CccYzdad7DnbPHOkAHkZLthTPdqQy_mmGqmNua-ldbvlLW3KyCXMvL0Duc1K_cjsds8w7y\"><div><b>Liz Perkins</b><div>Vice President</div><div>585-233-0566<div><br></div></div></div></div></div></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div>','Hi Rick,\r\n\r\nGreat to hear! I am happy to set something up to meet back in our office.\r\nHere is our availability:\r\n\r\n*This week*\r\n\r\n   -\r\n\r\n   Thursday, 9/4: 2:00–3:00 PM\r\n   -\r\n\r\n   Friday, 9/5: 10:00 AM–3:30 PM\r\n\r\n*Next week (tentative, pending my jury duty)*\r\n\r\n   -\r\n\r\n   Tuesday, 9/9: 9:30–11:30 AM\r\n   -\r\n\r\n   Wednesday, 9/10: 1:30–4:00 PM\r\n\r\nPlease let me know what works best for you, and I’ll get it on the calendar.\r\n\r\nLooking forward to continuing the conversation!\r\n*Liz Perkins*\r\nVice President\r\n585-233-0566\r\n\r\n\r\n\r\nOn Tue, Sep 2, 2025 at 4:09 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> Hi Liz,\r\n> Thanks for the follow-up.\r\n> Where do I start?\r\n> Actually, would love to stop by again for a follow-up.\r\n> Please let me know what’s possible in the next week or so.\r\n> Thanks much!\r\n> Rick\r\n>\r\n>\r\n> Rick Mislan, PhD,\r\n> Founder, CTO\r\n>\r\n> https://mavrix1.com\r\n>\r\n>\r\n> On September 2, 2025 at 3:34:40 PM, Elizabeth Perkins (\r\n> liz@brandysmoldandtool.com) wrote:\r\n>\r\n> Hi Rick,\r\n>\r\n> My name is Liz Perkins, and I recently joined Brandy’s Mold & Tool as Vice\r\n> President. Dan shared with me a bit about your visit last week, and I\r\n> wanted to reach out personally.\r\n>\r\n> In my role, my focus is on modernizing and scaling Brandy’s so we can\r\n> serve our clients even better — from exploring which additional\r\n> certifications make the most sense beyond our ISO 9001:2015, to\r\n> implementing systems and processes that ensure reliability as we grow. My\r\n> background is in data and business operations, where I’ve helped small\r\n> teams scale into multi-region organizations, and I’m excited to bring that\r\n> same lens to Brandy’s.\r\n>\r\n> That said, what I’d really love is to hear more about *your vision for\r\n> U.S.-made drones* and what’s most important to you in a supplier\r\n> partnership. Understanding your goals will help me ensure Brandy’s is\r\n> aligning in the right ways to support innovators like you. We are extremely\r\n> proud of and excited to contribute to American-made products,\r\n>\r\n> Would you be open to a short call next week? I’d love to stay in touch as\r\n> your plans take shape and explore how Brandy’s can best support your work.\r\n> Thank you,\r\n> *Liz Perkins*\r\n> Vice President\r\n> 585-233-0566\r\n>\r\n>',0,0,0,0,0,0,'2025-09-02 20:43:20','2025-12-09 19:28:01','2025-12-09 19:28:01','2025-12-09 19:28:01',NULL,NULL,NULL),
(666,4,'<CAGgBgfA2mtTnnSq7iUP9jfDPAC2sPvQjE8dYzkXNf6Ug_n_9Wg@mail.gmail.com>',NULL,NULL,'Organizational Stuff (09/02/25 1900)','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">Rick:</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><div><div class=\"gmail_default\">Here&#39;s a Vizio drawing showing where we&#39;re at.  We&#39;ve got 7 schematics and 3 PCB designs going simultaneously.</div><div class=\"gmail_default\"><br></div></div><div class=\"gmail_default\">Down the road, I will need some testers -- I can find some people around here, but I need some individual(s) on the tech savvy side where we can hand them things that need to be thoroughly field-tested.</div><div></div></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">That aside, I&#39;m trying to get organized, so we&#39;ve been looking at various quality systems to try to set up the underlying themes of what we&#39;re going to need going forward.</div><div class=\"gmail_default\" style=\"font-size:small\"><br>We&#39;re getting Gantt and Pert chart programs set up, they&#39;re open-source and compatible with Microsoft Office.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">If he&#39;s going to send money, I&#39;ll set up servers to establish the infrastructure that will let you guys manage it in the future.<br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Remember, we&#39;re capable of that stuff, we just don&#39;t like to do it -- but used correctly these tools will let us keep the thrust and direction of things consistent with everyone&#39;s perceptions and timelines.</div><br clear=\"all\"></div><div><span style=\"font-family:&quot;courier new&quot;,monospace\">Regards,</span><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div dir=\"ltr\"><div><font face=\"courier new, monospace\">Thomas Pownall</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">CADX Services, Inc.</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Tel: 585-624-1491 X101</font></div><div><font face=\"courier new, monospace\">Fax: 585-582-1101</font></div><div><font face=\"courier new, monospace\">E-Mail: <a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a></font></div><div><font face=\"courier new, monospace\">Web: <a href=\"http://www.cadxservices.com\" target=\"_blank\">http://www.cadxservices.com</a></font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\">**************** Confidentiality Statement ****************</font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Privileged/Confidential Information may be contained in this</font></div><div><font face=\"courier new, monospace\">message. If you are not the addressee indicated in this message</font></div><div><font face=\"courier new, monospace\">(or responsible for delivery of the message to such person),</font></div><div><font face=\"courier new, monospace\">you may not copy or deliver this message to anyone. In such</font></div><div><font face=\"courier new, monospace\">case, you should destroy this message, and notify us</font></div><div><font face=\"courier new, monospace\">immediately. If you or your employer does not consent to</font></div><div><font face=\"courier new, monospace\">Internet email messages of this kind, please advise us</font></div><div><font face=\"courier new, monospace\">immediately. Opinions, conclusions and other information</font></div><div><font face=\"courier new, monospace\">expressed in this message are not given or endorsed by my firm</font></div><div><font face=\"courier new, monospace\">or employer unless otherwise indicated by an authorized</font></div><div><font face=\"courier new, monospace\">representative independent of this message.</font></div></div></div></div></div></div>','Rick:\r\n\r\nHere\'s a Vizio drawing showing where we\'re at.  We\'ve got 7 schematics and\r\n3 PCB designs going simultaneously.\r\n\r\nDown the road, I will need some testers -- I can find some people around\r\nhere, but I need some individual(s) on the tech savvy side where we can\r\nhand them things that need to be thoroughly field-tested.\r\n\r\n\r\n\r\nThat aside, I\'m trying to get organized, so we\'ve been looking at various\r\nquality systems to try to set up the underlying themes of what we\'re going\r\nto need going forward.\r\n\r\nWe\'re getting Gantt and Pert chart programs set up, they\'re open-source and\r\ncompatible with Microsoft Office.\r\n\r\nIf he\'s going to send money, I\'ll set up servers to establish the\r\ninfrastructure that will let you guys manage it in the future.\r\n\r\nRemember, we\'re capable of that stuff, we just don\'t like to do it -- but\r\nused correctly these tools will let us keep the thrust and direction of\r\nthings consistent with everyone\'s perceptions and timelines.\r\n\r\nRegards,\r\nThomas Pownall\r\n\r\nCADX Services, Inc.\r\n\r\nTel: 585-624-1491 X101\r\nFax: 585-582-1101\r\nE-Mail: tpownall@cadxservices.com\r\nWeb: http://www.cadxservices.com\r\n\r\n***********************************************************\r\n**************** Confidentiality Statement ****************\r\n***********************************************************\r\n\r\nPrivileged/Confidential Information may be contained in this\r\nmessage. If you are not the addressee indicated in this message\r\n(or responsible for delivery of the message to such person),\r\nyou may not copy or deliver this message to anyone. In such\r\ncase, you should destroy this message, and notify us\r\nimmediately. If you or your employer does not consent to\r\nInternet email messages of this kind, please advise us\r\nimmediately. Opinions, conclusions and other information\r\nexpressed in this message are not given or endorsed by my firm\r\nor employer unless otherwise indicated by an authorized\r\nrepresentative independent of this message.',0,0,0,0,0,0,'2025-09-02 23:01:37','2025-12-09 19:28:01','2025-12-09 19:28:01','2025-12-09 19:28:01',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(667,4,'<CAEvVzq0GRu6Mun9Fn7g9aB18z4DX3UXLj25D=H+yavaO6YGi5w@mail.gmail.com>',NULL,NULL,'=?UTF-8?Q?Re=3A_Exploring_How_Brandy=E2=80=99s_Can_Support?=','liz@brandysmoldandtool.com','Elizabeth Perkins','<div dir=\"ltr\"><div>Excellent, I will send over an invite. See you then!</div><div><br></div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><img width=\"96\" height=\"38\" src=\"https://ci3.googleusercontent.com/mail-sig/AIorK4xpMAQi-3CccYzdad7DnbPHOkAHkZLthTPdqQy_mmGqmNua-ldbvlLW3KyCXMvL0Duc1K_cjsds8w7y\"><div><b>Liz Perkins</b><div>Vice President</div><div>585-233-0566<div><br></div></div></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Sep 2, 2025 at 5:51 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div>It looks like next Tuesday morning at 930a would be best.  <div>See you then!</div><div>Thanks!</div><div>Rick<br> <br><div class=\"gmail_signature\">\r\n        \r\n     \r\n    <br>\r\n     \r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD, </span><div style=\"font-family:Helvetica,Arial\">Founder, CTO</div><div style=\"font-family:Helvetica,Arial\"><img alt=\"\"></div><div style=\"font-family:Helvetica,Arial\"><a href=\"http://mavrix1.com/\" target=\"_blank\">mavrix1.com</a></div></div><div><br></div><div><br></div><div><div>CONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.</div><div><br></div></div>\r\n\r\n</div> <p class=\"gmail_quote\" style=\"color:rgb(0,0,0)\">On September 2, 2025 at 4:43:20 PM, Elizabeth Perkins (<a href=\"mailto:liz@brandysmoldandtool.com\" target=\"_blank\">liz@brandysmoldandtool.com</a>) wrote:</p> <blockquote type=\"cite\" class=\"gmail_quote\"><span><div><div></div><div>\r\n\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">Hi Rick,<br>\r\n<br>\r\nGreat to hear! I am happy to set something up to meet back in our\r\noffice. Here is our availability:\r\n<div>\r\n<p><strong>This week</strong></p>\r\n<ul>\r\n<li>\r\n<p>Thursday, 9/4: 2:00–3:00 PM</p>\r\n</li>\r\n<li>\r\n<p>Friday, 9/5: 10:00 AM–3:30 PM</p>\r\n</li>\r\n</ul>\r\n<p><strong>Next week (tentative, pending my jury duty)</strong></p>\r\n<ul>\r\n<li>\r\n<p>Tuesday, 9/9: 9:30–11:30 AM</p>\r\n</li>\r\n<li>\r\n<p>Wednesday, 9/10: 1:30–4:00 PM</p>\r\n</li>\r\n</ul>\r\n<p>Please let me know what works best for you, and I’ll get it on\r\nthe calendar.</p>\r\n<p>Looking forward to continuing the conversation!</p>\r\n</div>\r\n<div>\r\n<div>\r\n<div dir=\"ltr\" class=\"gmail_signature\">\r\n<div dir=\"ltr\"><img width=\"96\" height=\"38\" src=\"https://ci3.googleusercontent.com/mail-sig/AIorK4xpMAQi-3CccYzdad7DnbPHOkAHkZLthTPdqQy_mmGqmNua-ldbvlLW3KyCXMvL0Duc1K_cjsds8w7y\">\r\n<div><b>Liz Perkins</b>\r\n<div>Vice President</div>\r\n<div>585-233-0566\r\n<div><br></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<br></div>\r\n</div>\r\n<br>\r\n<div class=\"gmail_quote\">\r\n<div dir=\"ltr\" class=\"gmail_attr\">On Tue, Sep 2, 2025 at 4:09 PM\r\nRick &lt;rick@mavrix.one&gt; wrote:<br></div>\r\n<blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Hi\r\nLiz, </div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Thanks for\r\nthe follow-up.</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Where do I\r\nstart?</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Actually,\r\nwould love to stop by again for a follow-up.</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Please let\r\nme know what’s possible in the next week or so.</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Thanks\r\nmuch!</div>\r\n<div style=\"font-family:Helvetica,Arial;font-size:13px\">Rick</div>\r\n<br>\r\n<div class=\"gmail_signature\"><br>\r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan,\r\nPhD, </span>\r\n<div style=\"font-family:Helvetica,Arial\">Founder, CTO</div>\r\n<div style=\"font-family:Helvetica,Arial\">\r\n<div>\r\n<div><img src=\"cid:ii_1990f3b5461fcc4344d1\" style=\"max-width: 99%;\"><br></div>\r\n<div><a href=\"https://mavrix1.com/\" target=\"_blank\">https://mavrix1.com</a></div>\r\n</div>\r\n<div><br></div>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n<p>On September 2, 2025 at 3:34:40 PM, Elizabeth Perkins (<a href=\"mailto:liz@brandysmoldandtool.com\" target=\"_blank\">liz@brandysmoldandtool.com</a>) wrote:</p>\r\n<blockquote type=\"cite\">\r\n<div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div>\r\n<div><span>Hi Rick,</span></div>\r\n<div>\r\n<p><span>My name is Liz Perkins, and I recently joined Brandy’s\r\nMold &amp; Tool as Vice President. Dan shared with me a bit about\r\nyour visit last week, and I wanted to reach out\r\npersonally.</span></p>\r\n<p><span>In my role, my focus is on modernizing and scaling\r\nBrandy’s so we can serve our clients even better — from exploring\r\nwhich additional certifications make the most sense beyond our ISO\r\n9001:2015, to implementing systems and processes that ensure\r\nreliability as we grow. My background is in data and business\r\noperations, where I’ve helped small teams scale into multi-region\r\norganizations, and I’m excited to bring that same lens to\r\nBrandy’s.</span></p>\r\n<p><span>That said, what I’d really love is to hear more\r\nabout <strong>your vision for U.S.-made\r\ndrones</strong> and what’s most important to you in a supplier\r\npartnership. Understanding your goals will help me ensure Brandy’s\r\nis aligning in the right ways to support innovators like you. We\r\nare extremely proud of and excited to contribute to American-made\r\nproducts,</span></p>\r\n<p><span>Would you be open to a short call next week? I’d love to\r\nstay in touch as your plans take shape and explore how Brandy’s can\r\nbest support your work.</span></p>\r\n</div>\r\n<div><span>Thank you,</span></div>\r\n</div>\r\n<div>\r\n<div dir=\"ltr\" class=\"gmail_signature\">\r\n<div dir=\"ltr\"><span><img width=\"96\" height=\"38\" src=\"https://ci3.googleusercontent.com/mail-sig/AIorK4xpMAQi-3CccYzdad7DnbPHOkAHkZLthTPdqQy_mmGqmNua-ldbvlLW3KyCXMvL0Duc1K_cjsds8w7y\"></span>\r\n<div><span><b>Liz Perkins</b></span>\r\n<div><span>Vice President</span></div>\r\n<div><span>585-233-0566</span>\r\n<div><span><br></span></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n\r\n\r\n</div></div></span></blockquote>\r\n\r\n</div></div></blockquote></div>','Excellent, I will send over an invite. See you then!\r\n\r\n\r\n*Liz Perkins*\r\nVice President\r\n585-233-0566\r\n\r\n\r\n\r\nOn Tue, Sep 2, 2025 at 5:51 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> It looks like next Tuesday morning at 930a would be best.\r\n> See you then!\r\n> Thanks!\r\n> Rick\r\n>\r\n>\r\n> Rick Mislan, PhD,\r\n> Founder, CTO\r\n> mavrix1.com\r\n>\r\n>\r\n> CONFIDENTIALITY NOTICE: This communication is confidential and intended\r\n> only for the intended recipient.  If you are not the intended recipient,\r\n> you may not copy, disclose, or distribute this message to anyone else; any\r\n> such actions may be unlawful. If you have received this communication in\r\n> error, please contact the sender of the message to inform him or her of the\r\n> error.\r\n>\r\n> On September 2, 2025 at 4:43:20 PM, Elizabeth Perkins (\r\n> liz@brandysmoldandtool.com) wrote:\r\n>\r\n>> Hi Rick,\r\n>>\r\n>> Great to hear! I am happy to set something up to meet back in our office.\r\n>> Here is our availability:\r\n>>\r\n>> *This week*\r\n>>\r\n>>    -\r\n>>\r\n>>    Thursday, 9/4: 2:00–3:00 PM\r\n>>    -\r\n>>\r\n>>    Friday, 9/5: 10:00 AM–3:30 PM\r\n>>\r\n>> *Next week (tentative, pending my jury duty)*\r\n>>\r\n>>    -\r\n>>\r\n>>    Tuesday, 9/9: 9:30–11:30 AM\r\n>>    -\r\n>>\r\n>>    Wednesday, 9/10: 1:30–4:00 PM\r\n>>\r\n>> Please let me know what works best for you, and I’ll get it on the\r\n>> calendar.\r\n>>\r\n>> Looking forward to continuing the conversation!\r\n>> *Liz Perkins*\r\n>> Vice President\r\n>> 585-233-0566\r\n>>\r\n>>\r\n>>\r\n>> On Tue, Sep 2, 2025 at 4:09 PM Rick <rick@mavrix.one> wrote:\r\n>>\r\n>>> Hi Liz,\r\n>>> Thanks for the follow-up.\r\n>>> Where do I start?\r\n>>> Actually, would love to stop by again for a follow-up.\r\n>>> Please let me know what’s possible in the next week or so.\r\n>>> Thanks much!\r\n>>> Rick\r\n>>>\r\n>>>\r\n>>> Rick Mislan, PhD,\r\n>>> Founder, CTO\r\n>>>\r\n>>> https://mavrix1.com\r\n>>>\r\n>>>\r\n>>> On September 2, 2025 at 3:34:40 PM, Elizabeth Perkins (\r\n>>> liz@brandysmoldandtool.com) wrote:\r\n>>>\r\n>>> Hi Rick,\r\n>>>\r\n>>> My name is Liz Perkins, and I recently joined Brandy’s Mold & Tool as\r\n>>> Vice President. Dan shared with me a bit about your visit last week, and I\r\n>>> wanted to reach out personally.\r\n>>>\r\n>>> In my role, my focus is on modernizing and scaling Brandy’s so we can\r\n>>> serve our clients even better — from exploring which additional\r\n>>> certifications make the most sense beyond our ISO 9001:2015, to\r\n>>> implementing systems and processes that ensure reliability as we grow. My\r\n>>> background is in data and business operations, where I’ve helped small\r\n>>> teams scale into multi-region organizations, and I’m excited to bring that\r\n>>> same lens to Brandy’s.\r\n>>>\r\n>>> That said, what I’d really love is to hear more about *your vision for\r\n>>> U.S.-made drones* and what’s most important to you in a supplier\r\n>>> partnership. Understanding your goals will help me ensure Brandy’s is\r\n>>> aligning in the right ways to support innovators like you. We are extremely\r\n>>> proud of and excited to contribute to American-made products,\r\n>>>\r\n>>> Would you be open to a short call next week? I’d love to stay in touch\r\n>>> as your plans take shape and explore how Brandy’s can best support your\r\n>>> work.\r\n>>> Thank you,\r\n>>> *Liz Perkins*\r\n>>> Vice President\r\n>>> 585-233-0566\r\n>>>\r\n>>>',0,0,0,0,0,0,'2025-09-03 11:00:16','2025-12-09 19:28:01','2025-12-09 19:28:01','2025-12-09 19:28:01',NULL,NULL,NULL),
(668,4,'<calendar-1154b231-fd59-4603-b240-4612dd25e60c@google.com>',NULL,NULL,'Invitation: Rick @ Brandy\'s Mold & Tool @ Tue Sep 9, 2025 9:30am - 10:30am (EDT) (rick@mavrix.one)','liz@brandysmoldandtool.com','Elizabeth Perkins','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v144/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v118/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation from Elizabeth Perkins\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"15481bbh6p7jbulkbdfbcs2u1m\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Rick @ Brandy&#39;s Mold &amp; Tool</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MTU0ODFiYmg2cDdqYnVsa2JkZmJjczJ1MW0gcmlja0BtYXZyaXgub25l&amp;tok=MjYjbGl6QGJyYW5keXNtb2xkYW5kdG9vbC5jb20xZTBiMWY5YmJhZDk1Mjk5NDAxMmYwZTBmNjRlM2UzZmZkYjIzMTE0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250909T133000Z\"></time><time itemprop=\"endDate\" datetime=\"20250909T143000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">Join with Google Meet – You have been invited by Elizabeth Perkins to attend an event named Rick @ Brandy&#39;s Mold &amp; Tool on Tuesday Sep 9, 2025 ⋅ 9:30am – 10:30am (Eastern Time - New York).</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:28px;\"><a href=\"https://meet.google.com/xsy-qgfb-vsw?hs=224\" class=\"primary-button-text\" style=\"display: inline-block;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"display: inline-block\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"background-color: #1a73e8; cursor: auto; padding: 10px 25px; border: none; border-radius: 4px; margin: 0;\" class=\"primary-button\"><!--[if mso]><a href=\"https://meet.google.com/xsy-qgfb-vsw?hs=224\" class=\"primary-button-text\" target=\"_blank\"><![endif]--><span class=\"primary-button-text\" style=\"font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\">Join with Google Meet</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Meeting link</h2></td></tr></table><!-- Use grey text for the Meet link--><div><a style=\"display: inline-block;;color: #70757a; text-decoration: none;\" class=\"secondary-text underline-on-hover\" href=\"https://meet.google.com/xsy-qgfb-vsw?hs=224\">meet.google.com/xsy-qgfb-vsw</a></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Join by phone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(US) </span><a href=\"tel:+1-256-581-5451%3B110699023%23\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+1 256-581-5451</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">PIN: 110699023</span><br><br><a href=\"https://tel.meet/xsy-qgfb-vsw?pin=5734612760330&amp;hs=0\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">More phone numbers</a><br></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250909T133000Z\"></time><time itemprop=\"endDate\" datetime=\"20250909T143000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Tuesday Sep 9, 2025 ⋅ 9:30am – 10:30am (Eastern Time - New York)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Location</h2></td></tr></table><span itemprop=\"location\" itemscope itemtype=\"http://schema.org/Place\"><span itemprop=\"name\" class=\"primary-text notranslate\" style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\">Brandy&#39;s Mold &amp; Tool Center Ltd, 10 Riverton Way, West Henrietta, NY 14586, USA</span><br/><a href=\"https://www.google.com/maps/search/Brandy%27s+Mold+%26+Tool+Center+Ltd,+10+Riverton+Way,+West+Henrietta,+NY+14586,+USA?hl=en\" class=\"accent-text underline-on-hover\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" itemprop=\"map\">View map</a></span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:liz@brandysmoldandtool.com\">Elizabeth Perkins</a></span><meta itemprop=\"email\" content=\"liz@brandysmoldandtool.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Elizabeth Perkins\"/><meta itemprop=\"email\" content=\"liz@brandysmoldandtool.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:mperkins.brandys@frontiernet.net\">mperkins.brandys@frontiernet.net</a></span><meta itemprop=\"email\" content=\"mperkins.brandys@frontiernet.net\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:brandys@frontiernet.net\">brandys@frontiernet.net</a></span><meta itemprop=\"email\" content=\"brandys@frontiernet.net\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MTU0ODFiYmg2cDdqYnVsa2JkZmJjczJ1MW0gcmlja0BtYXZyaXgub25l&amp;tok=MjYjbGl6QGJyYW5keXNtb2xkYW5kdG9vbC5jb20xZTBiMWY5YmJhZDk1Mjk5NDAxMmYwZTBmNjRlM2UzZmZkYjIzMTE0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MTU0ODFiYmg2cDdqYnVsa2JkZmJjczJ1MW0gcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjYjbGl6QGJyYW5keXNtb2xkYW5kdG9vbC5jb20xZTBiMWY5YmJhZDk1Mjk5NDAxMmYwZTBmNjRlM2UzZmZkYjIzMTE0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MTU0ODFiYmg2cDdqYnVsa2JkZmJjczJ1MW0gcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjYjbGl6QGJyYW5keXNtb2xkYW5kdG9vbC5jb20xZTBiMWY5YmJhZDk1Mjk5NDAxMmYwZTBmNjRlM2UzZmZkYjIzMTE0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MTU0ODFiYmg2cDdqYnVsa2JkZmJjczJ1MW0gcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjYjbGl6QGJyYW5keXNtb2xkYW5kdG9vbC5jb20xZTBiMWY5YmJhZDk1Mjk5NDAxMmYwZTBmNjRlM2UzZmZkYjIzMTE0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MTU0ODFiYmg2cDdqYnVsa2JkZmJjczJ1MW0gcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjYjbGl6QGJyYW5keXNtb2xkYW5kdG9vbC5jb20xZTBiMWY5YmJhZDk1Mjk5NDAxMmYwZTBmNjRlM2UzZmZkYjIzMTE0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MTU0ODFiYmg2cDdqYnVsa2JkZmJjczJ1MW0gcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjYjbGl6QGJyYW5keXNtb2xkYW5kdG9vbC5jb20xZTBiMWY5YmJhZDk1Mjk5NDAxMmYwZTBmNjRlM2UzZmZkYjIzMTE0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=MTU0ODFiYmg2cDdqYnVsa2JkZmJjczJ1MW0gcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjYjbGl6QGJyYW5keXNtb2xkYW5kdG9vbC5jb20xZTBiMWY5YmJhZDk1Mjk5NDAxMmYwZTBmNjRlM2UzZmZkYjIzMTE0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MTU0ODFiYmg2cDdqYnVsa2JkZmJjczJ1MW0gcmlja0BtYXZyaXgub25l&amp;tok=MjYjbGl6QGJyYW5keXNtb2xkYW5kdG9vbC5jb20xZTBiMWY5YmJhZDk1Mjk5NDAxMmYwZTBmNjRlM2UzZmZkYjIzMTE0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MTU0ODFiYmg2cDdqYnVsa2JkZmJjczJ1MW0gcmlja0BtYXZyaXgub25l&amp;tok=MjYjbGl6QGJyYW5keXNtb2xkYW5kdG9vbC5jb20xZTBiMWY5YmJhZDk1Mjk5NDAxMmYwZTBmNjRlM2UzZmZkYjIzMTE0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','Rick @ Brandy\'s Mold & Tool\r\nTuesday Sep 9, 2025 ⋅ 9:30am – 10:30am\r\nEastern Time - New York\r\n\r\nLocation\r\nBrandy\'s Mold & Tool Center Ltd, 10 Riverton Way, West Henrietta, NY 14586,  \r\nUSA	\r\nhttps://www.google.com/maps/search/Brandy\'s+Mold+%26+Tool+Center+Ltd,+10+Riverton+Way,+West+Henrietta,+NY+14586,+USA?hl=en\r\n\r\nJoin with Google Meet\r\nhttps://meet.google.com/xsy-qgfb-vsw?hs=224\r\n\r\n\r\n	\r\nJoin by phone\r\n(US) +1 256-581-5451\r\nPIN: 110699023\r\n\r\nMore phone numbers\r\nhttps://tel.meet/xsy-qgfb-vsw?pin=5734612760330&hs=0\r\n\r\n\r\nOrganizer\r\nElizabeth Perkins\r\nliz@brandysmoldandtool.com\r\n\r\nGuests\r\nElizabeth Perkins - organizer\r\nrick@mavrix.one\r\nmperkins.brandys@frontiernet.net\r\nbrandys@frontiernet.net\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=MTU0ODFiYmg2cDdqYnVsa2JkZmJjczJ1MW0gcmlja0BtYXZyaXgub25l&tok=MjYjbGl6QGJyYW5keXNtb2xkYW5kdG9vbC5jb20xZTBiMWY5YmJhZDk1Mjk5NDAxMmYwZTBmNjRlM2UzZmZkYjIzMTE0&ctz=America%2FNew_York&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=MTU0ODFiYmg2cDdqYnVsa2JkZmJjczJ1MW0gcmlja0BtYXZyaXgub25l&tok=MjYjbGl6QGJyYW5keXNtb2xkYW5kdG9vbC5jb20xZTBiMWY5YmJhZDk1Mjk5NDAxMmYwZTBmNjRlM2UzZmZkYjIzMTE0&ctz=America%2FNew_York&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-09-03 11:02:09','2025-12-09 19:28:02','2025-12-09 19:28:02','2025-12-09 19:28:02',NULL,NULL,NULL),
(669,4,'<DM4PR16MB506948F2509F5C48158D4F3F8E01A@DM4PR16MB5069.namprd16.prod.outlook.com>',NULL,NULL,'FW: Apollo Optical Capabilities','rmislan@saunders.rit.edu','Rick Mislan','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:0 0 0 0 0 0 0 0 0 0;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;\r\n	panose-1:2 11 0 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:Geneva;\r\n	panose-1:2 11 5 3 3 4 4 4 2 4;}\r\n@font-face\r\n	{font-family:\"Helvetica Neue\";\r\n	panose-1:2 0 5 3 0 0 0 2 0 4;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:10.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:#467886;\r\n	text-decoration:underline;}\r\nspan.EmailStyle20\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">Get <a href=\"https://aka.ms/GetOutlookForMac\">\r\n<span style=\"color:blue\">Outlook for Mac </span></a></span><span style=\"font-size:12.0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div id=\"mail-editor-reference-message-container\">\r\n<div>\r\n<div>\r\n<div style=\"border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\"><b><span style=\"font-size:12.0pt;color:black\">From:\r\n</span></b><span style=\"font-size:12.0pt;color:black\">Greg French &lt;French@apollooptical.com&gt;<br>\r\n<b>Date: </b>Friday, August 29, 2025 at 15:37<br>\r\n<b>To: </b>Rick Mislan &lt;rmislan@saunders.rit.edu&gt;<br>\r\n<b>Subject: </b>RE: Apollo Optical Capabilities<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Hi Rick,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">I’m glad we were able to connect.\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">As promised, here is a link to the AmeriCOM website. We utilize their lab occasionally for process development and R&amp;D initiatives. They are a great local resource, and we are a member of their Defense Precision\r\n Optics Consortium (DPOC). </span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><a href=\"https://d2zvPx04.na1.hs-sales-engage.com/Ctc/I8+23284/d2zvPx04/Jll2-6qcW7Y8-PT6lZ3pHN1HzMwSVnpTjW98LL-v92T0-_VFYynp53yDc5W6S8ZQH3tsn3RW6frbPR7C9sw6W99HmvN2MS_ysN6F1gpjMClXBW7HnYKC8ZpMfNW6Ss-yT1KbFBMN7snwR0ZysdhW2mXfYF4k6dsVN4hCDyJznZ2rW7pZ4_Q5wsW0XW2PXsvg8TFyYSW4SVxMf1SGWbrW6KLz5x4BM0g2W7RxQLs4XZLbzW26vyzk3Z9l5KW2zDBP22KVph5W6PSk3_76NkV3W15dtLz7b7NqjW5XG6lN1rK1yCW4S6MmB6tKFwJW90rrfk6k1lp6W7SgFP274BZr7W3Q1crz6ZSfKPf30_H4004\"><span style=\"color:blue\">Optics\r\n Manufacturing Technologies | AmeriCOM</span></a></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">For now, I will send a meeting notice for Thursday, August 4<sup>th</sup> @ 3:30 PM for a meet and greet plus an Apollo facility tour. If schedules change, we can check and adjust as needed.\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Don Ehinger is our CEO, and I’ll make sure that he is in attendance as well as our CFO, Matt Satterwhite.\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">I’m looking forward to the conversation. Thank you for reaching out to Apollo!</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Have a great weekend,</span><o:p></o:p></p>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:12.0pt\">Gregory V. French</span></b><span style=\"font-size:12.0pt\">&nbsp;– Business Development Manager</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt;color:#0F5C1A\">Apollo Optical Systems</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">Mobile: (585) 957-4325</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><u><span style=\"font-size:12.0pt;color:#467886\"><a href=\"mailto:french@apollooptical.com\">french@apollooptical.com</a></span></u><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><u><span style=\"font-size:12.0pt;color:#467886\"><a href=\"http://www.apollooptical.com/\">www.apollooptical.com</a></span></u><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\"><img border=\"0\" width=\"156\" height=\"96\" style=\"width:1.625in;height:1.0in\" id=\"Picture_x0020_634978974\" src=\"cid:image001.png@01DC18FA.8FD00EA0\"></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick Mislan &lt;rmislan@saunders.rit.edu&gt;\r\n<br>\r\n<b>Sent:</b> Friday, August 29, 2025 11:12 AM<br>\r\n<b>To:</b> Greg French &lt;French@apollooptical.com&gt;<br>\r\n<b>Subject:</b> Re: Apollo Optical Capabilities</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">Sorry, I’m on a call today at 11…I’ll try you after that call.</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">Thanks.</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">Rick</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:8.5pt;font-family:&quot;Geneva&quot;,sans-serif;color:#181817;background:white\">Richard P. Mislan, PhD (COLA ’91) •&nbsp;<a href=\"https://d2zvPx04.na1.hs-sales-engage.com/Ctc/I8+23284/d2zvPx04/JlF4YGXpW8wM7ks6lZ3mJW1H4K5j3yBN_dW649z5C4DM47fW3LhDrX2ZKFgvW5JfZFJ6mhxzyMw8cWCmfnMmMxcpDV98G9BW7HXMNx4DvW9SW5H0lYM72dNMBW5LJNnv9kM-x3V5bns86H7tKxVclBRv62kLX7N2Ft9KjXkNt6W6w5tGz1Pwv11M3x-HCrdxSTW8dWCKv60cq__W5MN1L92tQy4fW88nNTc6dqwFjW4DL2hV7mR6n0V_LHn_9hS2fdW8twPmb3HpHnLVrZVcP10-lhtW8RXwHh3GbC3DVSsYC44dRkz9W28r4ds6zVrW4W8cwlMs1fzsJcW6Qn_7w5SCvHjVqNgtv40ClLYVBhxmG3zdfrDW7vVRpY4DThNCVjjSWc3zNQSbW2Rf1Mc8p14l0W7Z-Qd_6nMrywN2gc4X_bv7NdW2MJPCX3c5dfNW8rGFGc7JbdvXW7gNnwq1BdX5nVL6J1p4rV43gW12mBXM80K8xqW4Xn1KC96hyXdW4RxHDZ1v0_53W4_xrYj4WDgbFW9k1zRY4_RJ1KW3SF8wD2c10ZvW1LCvc11rrD16f5fzXLF04\"><i><span style=\"font-size:7.5pt;font-family:Helvetica;color:#0D6EEC\">Mislan.com</span></i></a></span><i><span style=\"font-size:7.0pt;font-family:Helvetica;color:black;background:white\">&nbsp;•&nbsp;</span></i><span style=\"font-size:7.0pt;font-family:Helvetica;color:black;background:white\"><a href=\"https://d2zvPx04.na1.hs-sales-engage.com/Ctc/I8+23284/d2zvPx04/JkM2-6qcW6N1vHY6lZ3lsW93zQgF8gFx2kW1Yf4HZ3hvBKkVB8qCL2Sl1RZW1sHDXJ2GxfJ0N4ZntHBC-J8LMVwNZMDxPgnVY_GVW56nl42W1Y8WCY2h7HLNW2VTyB47XbJhBW1GRxCq8SnM2nW8NtL5P6lqfV0W78Hsmr3-vyymW3z3ky023WSrKW27BkFn9cFzJCW3-8Hw-33JwKQW97vKRS5bXFK_W2WF01Q1Jvqy3W3MDjDw5z1D7VW42q94R34_GNpW10s_c08k1gXSW3jmz7K3kB7vKVZj-7R3YXhNHf3vThDz04\"><i><span style=\"font-size:7.5pt;color:#0D6EEC\">LinkedIn.com/in/rmislan/</span></i></a></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#181817;background:white\">Rochester Institute of Technology</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:7.0pt;font-family:Helvetica;color:#181817;background:white\">Senior Lecturer, MIS, Marketing &amp; Analytics,&nbsp;</span><span style=\"font-size:7.0pt;font-family:&quot;Helvetica Neue&quot;;color:#181817;background:white\">Saunders College\r\n of Business •&nbsp;<a href=\"https://d2zvPx04.na1.hs-sales-engage.com/Ctc/I8+23284/d2zvPx04/JlF4YGXpW8wM7ks6lZ3n_W2kjsqj1pQPgMV8k0hm3RYjmfW3bwM8q3b-5cSN8hXgYvvxQdBW77QNN12VG8Y1VXxqyS62wlz4W14_RSR3rkSxdW7xy5CN5Q3dwtW3B45T72QFQfhW4WlcTc7bCxTbW6PWND43515gwW3kGb5Z7XTKDxW7cBm3K2pGcKPW909hyd2685-nW3nF2X13Cq6lvW4K92ly89h7cdW5DgxBK3PZKsxW3__00-6QBvBJW56-Kyy416xW9Vy2CGM2qY_yQVvC_nQ5c5hP-W7yGxJ812shVpV6x31n1DvyglN3MnwD4fYlVCW6JTDbw8vSMxRW6vS8Cq2q02bCW40Yj4r4xDbQkW56M2T85crSGbW3jQ644781qktW1fRgbn4pbWvjW4DMDnK16dMlyW7zMdft7qvYY4W5FkxBR41qg2_W7HZGLd9d_dRVN1bRhsSjS45LW43VnTs8MqSMnW76DnPV13sYzmW3PX466469qxZW8RpvHv3lclqcW4m7P1_3tbW6sW3lQpC323ccnjW5GlYzX1nrqF1N2P8kTz9n504W5fyJHR1G79Cvf3ZP0Td04\"><i><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:#0D6EEC\">Saunders.RIT.edu</span></i></a></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:7.0pt;font-family:Helvetica;color:#181817;background:white\">Creative Director, Cyber Range &amp; Training Center</span><span style=\"font-size:7.5pt;font-family:Helvetica;color:#181817;background:white\">,&nbsp;</span><span style=\"font-size:7.0pt;font-family:&quot;Helvetica Neue&quot;;color:#181817;background:white\">ESL\r\n Global Cybersecurity Institute •&nbsp;<a href=\"https://d2zvPx04.na1.hs-sales-engage.com/Ctc/I8+23284/d2zvPx04/Jll4YGXpW7Y9pgv6lZ3mCN2RJGLm7GG-wVKJ4ph18YjBSW7bslbD4MGw8PW4dJjy73PfpNYW7jfhKP5HNp_wW6Q1T3n6B5WwhW7Z8-4B185hDwW1nd1cx5qmZlFW7WNh6565jJCDW8QXHdj8Cg12WW3QZwnl5Kvl7hW513GfN5cQ9FmW3hC1s344pY0-W7SYG-h5JJfdjW2fVPVl7_BrTWW26sNjR1GgVLbW815HX07RRYPlW7Cyw5t4BsDdrVSm8yR8L8MMpW8W4qcK4m6k6-W5KB26D5QzTXKW6vpZh_1kchpgW7tPtQs1wDSGzW72sMsZ3q520jW7_Hmkt1zQx3wW60GQLK3r2jYKW8yhvTB6X9LSxN1jC3s8rq1chW5c_kXT6x4qwFVqb1PB2-BLGDVvlgK54qB6X2W2jBb2B4sHMyFMFC52mbFv9qW3KxdhP6qgbXGN5QhYKtLcRvqW8xKRb781LYTVW7hCkRv59KlJ6W5Fkfsp3mSghqW3XqMFM6hJ9GWW6SNhvw4VGbP_N76bfNmj2DVmW6wWD9q8h7c7-f5Ltgr604\"><i><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:#0D6EEC\">cyber.RIT.edu</span></i></a></span><i><span style=\"font-size:7.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#181817;background:white\">\r\n &nbsp;</span></i><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:7.0pt;font-family:&quot;Helvetica Neue&quot;;color:#181817;background:white\">World’s&nbsp;Largest KerPlunk&nbsp;</span><span style=\"font-size:7.0pt;font-family:&quot;Helvetica Neue&quot;;color:black;background:white\">•&nbsp;<a href=\"https://d2zvPx04.na1.hs-sales-engage.com/Ctc/I8+23284/d2zvPx04/JlF4YGXpW8wM7ks6lZ3pQW2QQsLN3r7rwFN9fgzSNnQjJ8W6TPDsY9dYKWhW1kTrhH8J2D7qW8pzNHL3b4HnsW8JZyv97b5tRdW64RBWj26TgldN3hKQ_LVLHRbW35GDNZ2kjHFwW3xyqtX2rKh9-W3ppskl5R4Pp-W4TKC8N8w5yc0W2BJL4t1Cd-SqW5QRs777g3wP2W2M2pX_8VJXjsN83thRG1nc7xW79K9bz17dB3yW3SkQxw1z9xhNW5f87_G5wfm0rW2-N6nL7m9zt1W8yF4l-72BxgXW5934Vs4dX-dCW82Hqq55-nqCdW67H74_7W5qp4V8LY-f2rPqGQW7F_ngK4m_YXnW5byTg66gkbgbW4ngCDy5zCqlKW1TgQ1F5h8cmLW3McPPB81Kk6gW8rX2SD8RtFrpW6yydbK3x08xPW46y1r96GYnjhW43VVd38Jkqz-W5xdJLF38Jb6xVjkBg57NhCZgW1BYwyW72hRNNW4nhJ_f4hCBk8W3FxdDx3FLDz1W7N4zdl43Wz_wN6MXJSSBZWVCW35tQvf7S1-j0W6CN99k5R9yLBW6ZZVkH12fMTmf61bKCM04\"><i><span style=\"font-size:7.5pt;font-family:Helvetica;color:#0D6EEC\">KerPlunk.RIT.edu</span></i></a></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:7.0pt;font-family:&quot;Helvetica Neue&quot;;color:#181817;background:white\">Please help me find my stripes!\r\n</span><i><span style=\"font-size:7.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#181817;background:white\">•&nbsp;</span></i><span style=\"font-size:7.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#181817;background:white\"><a href=\"https://d2zvPx04.na1.hs-sales-engage.com/Ctc/I8+23284/d2zvPx04/JlF4YGXpW8wM7ks6lZ3lqW5-PTjX8NxzWCW28mylz93765_W3nvTgk57FlbfN3SW7LZX7z71W2RzGNB8wGW0TN61N82tnYXKdW2y5jZV26QrDSW35yZgC4bgvF3W1PK0599bfG7LW1pX7qT2Jh1N6W3JZcPT39RyvjW8c7yGr3hRzsBW2Z7zH48tCgc5W7cFbXd8bWYbQN19J7yC6L_GBW82pDTd5X0yRZW50fpBN2dwL6DW6g3ldt5V3t9zW3GCV3C8rxgwDW59KNl-5RCJTSW1PmKhv7nlZVZW1P3Yd3220z3RW4xqT_95K6xFCW1h527K4KvTnWVhkTC11HbBJsN2Lmf4HNSRl4W5fVT2_3lSGByW6VcWBZ3yGrqQN4k9dL_7WdvNW31CpBR3n6hnMW7pP7g831zdHSW6Nsxqm7yHC1LW5dvlK47z5qcGW4PyL5m3GWbX1W498srM4DM0gJW3jr8Pj8JJF_0W91GT1s19GyMJW1BJSP58svjNRW1nj2xW8qGnhmN3XZqd062z6CW5mtMVJ2WNm-5W4zlNxP60WJzkW8s46qp2PRDd9N7rFFvs-tqQpf1Jrw7F04\"><span style=\"font-family:&quot;Geneva&quot;,sans-serif;color:#0D6EEC\">RITchieFindsHisStripes.com</span></a></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:7.0pt;font-family:Helvetica;color:black;background:white\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:7.5pt;font-family:Helvetica;color:#181817;background:white\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"background:white\"><i><span style=\"font-size:4.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#000001\">CONFIDENTIALITY NOTICE</span></i><i><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#181817\">\r\n</span></i><i><span style=\"font-size:4.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#000001\">: The contents of this email message and any attachments are intended solely for the addressee(s) and may contain confidential and/or privileged information and may be\r\n legally protected from disclosure. If you are not the intended recipient of this message or their agent, or if this message has been addressed to you in error, please immediately alert the sender by reply email and then delete this message and any attachments.\r\n If you are not the intended recipient, you are hereby notified that any use, dissemination, copying, or storage of this message or its attachments is strictly prohibited.</span></i><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<div id=\"mail-editor-reference-message-container\">\r\n<div>\r\n<div>\r\n<div style=\"border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\"><b><span style=\"font-size:12.0pt;color:black\">From:\r\n</span></b><span style=\"font-size:12.0pt;color:black\">Greg French &lt;<a href=\"mailto:French@apollooptical.com\">French@apollooptical.com</a>&gt;<br>\r\n<b>Date: </b>Friday, August 29, 2025 at 08:37<br>\r\n<b>To: </b>Rick Mislan &lt;<a href=\"mailto:rpmbbu@rit.edu\">rpmbbu@rit.edu</a>&gt;<br>\r\n<b>Subject: </b>RE: Apollo Optical Capabilities</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Good morning, Rick</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Thanks for the call, and I received your voicemail. Would a call at 11 AM today work for you? If so, I’ll call you at the (585) 797-9473 number.\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Talk soon! </span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:12.0pt\">Gregory V. French</span></b><span style=\"font-size:12.0pt\">&nbsp;– Business Development Manager</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt;color:#0F5C1A\">Apollo Optical Systems</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">Mobile: (585) 957-4325</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><u><span style=\"font-size:12.0pt;color:#467886\"><a href=\"mailto:french@apollooptical.com\">french@apollooptical.com</a></span></u><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><u><span style=\"font-size:12.0pt;color:#467886\"><a href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2fwww.apollooptical.com%2f&amp;c=E,1,jZ1wgQOGb2R4UfW1sS5qEg1cA15Lw2nAvPAMnxml57noZZSRok0NITQW7nRvidV_C_VtlcTDHCp3Mwij6Aw627qxS0KWIZYrK_UUnXnxaAxPtRR-_A,,&amp;typo=1\">www.apollooptical.com</a></span></u><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\"><img border=\"0\" width=\"156\" height=\"96\" style=\"width:1.625in;height:1.0in\" id=\"Picture_x0020_2120527647\" src=\"cid:image001.png@01DC18FA.8FD00EA0\"></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Greg French\r\n<br>\r\n<b>Sent:</b> Thursday, August 28, 2025 10:57 AM<br>\r\n<b>To:</b> <a href=\"mailto:rpmbbu@rit.edu\">rpmbbu@rit.edu</a><br>\r\n<b>Subject:</b> Apollo Optical Capabilities</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Hi Rick,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">My name is Greg French, and I am the Business Development Manager here at Apollo Optical Systems.\r\n<i>(And RIT alumnus- Go Tigers!)</i> Thank you for contacting us!</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">I see that you are a current student interested in learning more about AOS capabilities related to a start-up company that you’re involved with. We’ll do our best to provide you with the information you need.\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">The short story is that we are a polymer optics company, specializing in optics quality injection-molding and Single-Point Diamond Turning (SPDT). The molding business typically supports high-volume production\r\n quantities while the SPDT suite is largely used for prototyping and mold tooling fabrication support.\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">We have onsite optical coating capabilities as well, and offer engineering services plus optical assembly.\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">If you’d prefer, we can chat on a call if you’d like. Just let me know what day and time works for you. Also, Apollo Optical is located just around the corner from the RIT campus on John Street if you’re interested\r\n in seeing the facility. </span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Best regards,</span><o:p></o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:12.0pt\">Gregory V. French</span></b><span style=\"font-size:12.0pt\">&nbsp;– Business Development Manager</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt;color:#0F5C1A\">Apollo Optical Systems</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">Mobile: (585) 957-4325</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><u><span style=\"font-size:12.0pt;color:#467886\"><a href=\"mailto:french@apollooptical.com\">french@apollooptical.com</a></span></u><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><u><span style=\"font-size:12.0pt;color:#467886\"><a href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2fwww.apollooptical.com%2f&amp;c=E,1,rihfaBr8BnSsyBL5IxCSrv952yZAj-e3ypV5a5mSQ-dvwc68N6ufMb3E8vxpEjcxBHPgKux21XCXf20zzBSFiQG3nkx0CVU6oaaZsHBZQuhe-x-dbnhvLB_Z&amp;typo=1\">www.apollooptical.com</a></span></u><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\"><img border=\"0\" width=\"156\" height=\"96\" style=\"width:1.625in;height:1.0in\" id=\"Picture_x0020_2\" src=\"cid:image001.png@01DC18FA.8FD00EA0\"></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt;border:solid windowtext 1.0pt;padding:0in\"><img border=\"0\" width=\"1\" height=\"1\" style=\"width:.0104in;height:.0104in\" id=\"_x0000_i1026\" src=\"cid:~WRD0000.jpg\" alt=\"Image removed by sender.\"></span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt;border:solid windowtext 1.0pt;padding:0in\"><img border=\"0\" width=\"1\" height=\"1\" style=\"width:.0104in;height:.0104in\" id=\"_x0000_i1025\" src=\"cid:~WRD0001.jpg\" alt=\"Image removed by sender.\"></span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','\r\n\r\nGet Outlook for Mac <https://aka.ms/GetOutlookForMac>\r\n\r\nFrom: Greg French <French@apollooptical.com>\r\nDate: Friday, August 29, 2025 at 15:37\r\nTo: Rick Mislan <rmislan@saunders.rit.edu>\r\nSubject: RE: Apollo Optical Capabilities\r\nHi Rick,\r\n\r\nI’m glad we were able to connect.\r\n\r\nAs promised, here is a link to the AmeriCOM website. We utilize their lab occasionally for process development and R&D initiatives. They are a great local resource, and we are a member of their Defense Precision Optics Consortium (DPOC).\r\nOptics Manufacturing Technologies | AmeriCOM<https://d2zvPx04.na1.hs-sales-engage.com/Ctc/I8+23284/d2zvPx04/Jll2-6qcW7Y8-PT6lZ3pHN1HzMwSVnpTjW98LL-v92T0-_VFYynp53yDc5W6S8ZQH3tsn3RW6frbPR7C9sw6W99HmvN2MS_ysN6F1gpjMClXBW7HnYKC8ZpMfNW6Ss-yT1KbFBMN7snwR0ZysdhW2mXfYF4k6dsVN4hCDyJznZ2rW7pZ4_Q5wsW0XW2PXsvg8TFyYSW4SVxMf1SGWbrW6KLz5x4BM0g2W7RxQLs4XZLbzW26vyzk3Z9l5KW2zDBP22KVph5W6PSk3_76NkV3W15dtLz7b7NqjW5XG6lN1rK1yCW4S6MmB6tKFwJW90rrfk6k1lp6W7SgFP274BZr7W3Q1crz6ZSfKPf30_H4004>\r\n\r\nFor now, I will send a meeting notice for Thursday, August 4th @ 3:30 PM for a meet and greet plus an Apollo facility tour. If schedules change, we can check and adjust as needed.\r\n\r\nDon Ehinger is our CEO, and I’ll make sure that he is in attendance as well as our CFO, Matt Satterwhite.\r\n\r\nI’m looking forward to the conversation. Thank you for reaching out to Apollo!\r\n\r\nHave a great weekend,\r\nGregory V. French – Business Development Manager\r\nApollo Optical Systems\r\nMobile: (585) 957-4325\r\nfrench@apollooptical.com<mailto:french@apollooptical.com>\r\nwww.apollooptical.com<http://www.apollooptical.com/>\r\n\r\n[cid:image001.png@01DC18FA.8FD00EA0]\r\n\r\n\r\nFrom: Rick Mislan <rmislan@saunders.rit.edu>\r\nSent: Friday, August 29, 2025 11:12 AM\r\nTo: Greg French <French@apollooptical.com>\r\nSubject: Re: Apollo Optical Capabilities\r\n\r\nSorry, I’m on a call today at 11…I’ll try you after that call.\r\nThanks.\r\nRick\r\n\r\nRichard P. Mislan, PhD (COLA ’91) • Mislan.com<https://d2zvPx04.na1.hs-sales-engage.com/Ctc/I8+23284/d2zvPx04/JlF4YGXpW8wM7ks6lZ3mJW1H4K5j3yBN_dW649z5C4DM47fW3LhDrX2ZKFgvW5JfZFJ6mhxzyMw8cWCmfnMmMxcpDV98G9BW7HXMNx4DvW9SW5H0lYM72dNMBW5LJNnv9kM-x3V5bns86H7tKxVclBRv62kLX7N2Ft9KjXkNt6W6w5tGz1Pwv11M3x-HCrdxSTW8dWCKv60cq__W5MN1L92tQy4fW88nNTc6dqwFjW4DL2hV7mR6n0V_LHn_9hS2fdW8twPmb3HpHnLVrZVcP10-lhtW8RXwHh3GbC3DVSsYC44dRkz9W28r4ds6zVrW4W8cwlMs1fzsJcW6Qn_7w5SCvHjVqNgtv40ClLYVBhxmG3zdfrDW7vVRpY4DThNCVjjSWc3zNQSbW2Rf1Mc8p14l0W7Z-Qd_6nMrywN2gc4X_bv7NdW2MJPCX3c5dfNW8rGFGc7JbdvXW7gNnwq1BdX5nVL6J1p4rV43gW12mBXM80K8xqW4Xn1KC96hyXdW4RxHDZ1v0_53W4_xrYj4WDgbFW9k1zRY4_RJ1KW3SF8wD2c10ZvW1LCvc11rrD16f5fzXLF04> • LinkedIn.com/in/rmislan/<https://d2zvPx04.na1.hs-sales-engage.com/Ctc/I8+23284/d2zvPx04/JkM2-6qcW6N1vHY6lZ3lsW93zQgF8gFx2kW1Yf4HZ3hvBKkVB8qCL2Sl1RZW1sHDXJ2GxfJ0N4ZntHBC-J8LMVwNZMDxPgnVY_GVW56nl42W1Y8WCY2h7HLNW2VTyB47XbJhBW1GRxCq8SnM2nW8NtL5P6lqfV0W78Hsmr3-vyymW3z3ky023WSrKW27BkFn9cFzJCW3-8Hw-33JwKQW97vKRS5bXFK_W2WF01Q1Jvqy3W3MDjDw5z1D7VW42q94R34_GNpW10s_c08k1gXSW3jmz7K3kB7vKVZj-7R3YXhNHf3vThDz04>\r\nRochester Institute of Technology\r\nSenior Lecturer, MIS, Marketing & Analytics, Saunders College of Business • Saunders.RIT.edu<https://d2zvPx04.na1.hs-sales-engage.com/Ctc/I8+23284/d2zvPx04/JlF4YGXpW8wM7ks6lZ3n_W2kjsqj1pQPgMV8k0hm3RYjmfW3bwM8q3b-5cSN8hXgYvvxQdBW77QNN12VG8Y1VXxqyS62wlz4W14_RSR3rkSxdW7xy5CN5Q3dwtW3B45T72QFQfhW4WlcTc7bCxTbW6PWND43515gwW3kGb5Z7XTKDxW7cBm3K2pGcKPW909hyd2685-nW3nF2X13Cq6lvW4K92ly89h7cdW5DgxBK3PZKsxW3__00-6QBvBJW56-Kyy416xW9Vy2CGM2qY_yQVvC_nQ5c5hP-W7yGxJ812shVpV6x31n1DvyglN3MnwD4fYlVCW6JTDbw8vSMxRW6vS8Cq2q02bCW40Yj4r4xDbQkW56M2T85crSGbW3jQ644781qktW1fRgbn4pbWvjW4DMDnK16dMlyW7zMdft7qvYY4W5FkxBR41qg2_W7HZGLd9d_dRVN1bRhsSjS45LW43VnTs8MqSMnW76DnPV13sYzmW3PX466469qxZW8RpvHv3lclqcW4m7P1_3tbW6sW3lQpC323ccnjW5GlYzX1nrqF1N2P8kTz9n504W5fyJHR1G79Cvf3ZP0Td04>\r\nCreative Director, Cyber Range & Training Center, ESL Global Cybersecurity Institute • cyber.RIT.edu<https://d2zvPx04.na1.hs-sales-engage.com/Ctc/I8+23284/d2zvPx04/Jll4YGXpW7Y9pgv6lZ3mCN2RJGLm7GG-wVKJ4ph18YjBSW7bslbD4MGw8PW4dJjy73PfpNYW7jfhKP5HNp_wW6Q1T3n6B5WwhW7Z8-4B185hDwW1nd1cx5qmZlFW7WNh6565jJCDW8QXHdj8Cg12WW3QZwnl5Kvl7hW513GfN5cQ9FmW3hC1s344pY0-W7SYG-h5JJfdjW2fVPVl7_BrTWW26sNjR1GgVLbW815HX07RRYPlW7Cyw5t4BsDdrVSm8yR8L8MMpW8W4qcK4m6k6-W5KB26D5QzTXKW6vpZh_1kchpgW7tPtQs1wDSGzW72sMsZ3q520jW7_Hmkt1zQx3wW60GQLK3r2jYKW8yhvTB6X9LSxN1jC3s8rq1chW5c_kXT6x4qwFVqb1PB2-BLGDVvlgK54qB6X2W2jBb2B4sHMyFMFC52mbFv9qW3KxdhP6qgbXGN5QhYKtLcRvqW8xKRb781LYTVW7hCkRv59KlJ6W5Fkfsp3mSghqW3XqMFM6hJ9GWW6SNhvw4VGbP_N76bfNmj2DVmW6wWD9q8h7c7-f5Ltgr604>\r\nWorld’s Largest KerPlunk • KerPlunk.RIT.edu<https://d2zvPx04.na1.hs-sales-engage.com/Ctc/I8+23284/d2zvPx04/JlF4YGXpW8wM7ks6lZ3pQW2QQsLN3r7rwFN9fgzSNnQjJ8W6TPDsY9dYKWhW1kTrhH8J2D7qW8pzNHL3b4HnsW8JZyv97b5tRdW64RBWj26TgldN3hKQ_LVLHRbW35GDNZ2kjHFwW3xyqtX2rKh9-W3ppskl5R4Pp-W4TKC8N8w5yc0W2BJL4t1Cd-SqW5QRs777g3wP2W2M2pX_8VJXjsN83thRG1nc7xW79K9bz17dB3yW3SkQxw1z9xhNW5f87_G5wfm0rW2-N6nL7m9zt1W8yF4l-72BxgXW5934Vs4dX-dCW82Hqq55-nqCdW67H74_7W5qp4V8LY-f2rPqGQW7F_ngK4m_YXnW5byTg66gkbgbW4ngCDy5zCqlKW1TgQ1F5h8cmLW3McPPB81Kk6gW8rX2SD8RtFrpW6yydbK3x08xPW46y1r96GYnjhW43VVd38Jkqz-W5xdJLF38Jb6xVjkBg57NhCZgW1BYwyW72hRNNW4nhJ_f4hCBk8W3FxdDx3FLDz1W7N4zdl43Wz_wN6MXJSSBZWVCW35tQvf7S1-j0W6CN99k5R9yLBW6ZZVkH12fMTmf61bKCM04>\r\nPlease help me find my stripes! • RITchieFindsHisStripes.com<https://d2zvPx04.na1.hs-sales-engage.com/Ctc/I8+23284/d2zvPx04/JlF4YGXpW8wM7ks6lZ3lqW5-PTjX8NxzWCW28mylz93765_W3nvTgk57FlbfN3SW7LZX7z71W2RzGNB8wGW0TN61N82tnYXKdW2y5jZV26QrDSW35yZgC4bgvF3W1PK0599bfG7LW1pX7qT2Jh1N6W3JZcPT39RyvjW8c7yGr3hRzsBW2Z7zH48tCgc5W7cFbXd8bWYbQN19J7yC6L_GBW82pDTd5X0yRZW50fpBN2dwL6DW6g3ldt5V3t9zW3GCV3C8rxgwDW59KNl-5RCJTSW1PmKhv7nlZVZW1P3Yd3220z3RW4xqT_95K6xFCW1h527K4KvTnWVhkTC11HbBJsN2Lmf4HNSRl4W5fVT2_3lSGByW6VcWBZ3yGrqQN4k9dL_7WdvNW31CpBR3n6hnMW7pP7g831zdHSW6Nsxqm7yHC1LW5dvlK47z5qcGW4PyL5m3GWbX1W498srM4DM0gJW3jr8Pj8JJF_0W91GT1s19GyMJW1BJSP58svjNRW1nj2xW8qGnhmN3XZqd062z6CW5mtMVJ2WNm-5W4zlNxP60WJzkW8s46qp2PRDd9N7rFFvs-tqQpf1Jrw7F04>\r\n\r\n\r\nCONFIDENTIALITY NOTICE : The contents of this email message and any attachments are intended solely for the addressee(s) and may contain confidential and/or privileged information and may be legally protected from disclosure. If you are not the intended recipient of this message or their agent, or if this message has been addressed to you in error, please immediately alert the sender by reply email and then delete this message and any attachments. If you are not the intended recipient, you are hereby notified that any use, dissemination, copying, or storage of this message or its attachments is strictly prohibited.\r\n\r\n\r\nFrom: Greg French <French@apollooptical.com<mailto:French@apollooptical.com>>\r\nDate: Friday, August 29, 2025 at 08:37\r\nTo: Rick Mislan <rpmbbu@rit.edu<mailto:rpmbbu@rit.edu>>\r\nSubject: RE: Apollo Optical Capabilities\r\nGood morning, Rick\r\n\r\nThanks for the call, and I received your voicemail. Would a call at 11 AM today work for you? If so, I’ll call you at the (585) 797-9473 number.\r\n\r\nTalk soon!\r\n\r\nGregory V. French – Business Development Manager\r\nApollo Optical Systems\r\nMobile: (585) 957-4325\r\nfrench@apollooptical.com<mailto:french@apollooptical.com>\r\nwww.apollooptical.com<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2fwww.apollooptical.com%2f&c=E,1,jZ1wgQOGb2R4UfW1sS5qEg1cA15Lw2nAvPAMnxml57noZZSRok0NITQW7nRvidV_C_VtlcTDHCp3Mwij6Aw627qxS0KWIZYrK_UUnXnxaAxPtRR-_A,,&typo=1>\r\n\r\n[cid:image001.png@01DC18FA.8FD00EA0]\r\n\r\n\r\nFrom: Greg French\r\nSent: Thursday, August 28, 2025 10:57 AM\r\nTo: rpmbbu@rit.edu<mailto:rpmbbu@rit.edu>\r\nSubject: Apollo Optical Capabilities\r\n\r\nHi Rick,\r\n\r\nMy name is Greg French, and I am the Business Development Manager here at Apollo Optical Systems. (And RIT alumnus- Go Tigers!) Thank you for contacting us!\r\n\r\nI see that you are a current student interested in learning more about AOS capabilities related to a start-up company that you’re involved with. We’ll do our best to provide you with the information you need.\r\n\r\nThe short story is that we are a polymer optics company, specializing in optics quality injection-molding and Single-Point Diamond Turning (SPDT). The molding business typically supports high-volume production quantities while the SPDT suite is largely used for prototyping and mold tooling fabrication support.\r\n\r\nWe have onsite optical coating capabilities as well, and offer engineering services plus optical assembly.\r\n\r\nIf you’d prefer, we can chat on a call if you’d like. Just let me know what day and time works for you. Also, Apollo Optical is located just around the corner from the RIT campus on John Street if you’re interested in seeing the facility.\r\n\r\nBest regards,\r\nGregory V. French – Business Development Manager\r\nApollo Optical Systems\r\nMobile: (585) 957-4325\r\nfrench@apollooptical.com<mailto:french@apollooptical.com>\r\nwww.apollooptical.com<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2fwww.apollooptical.com%2f&c=E,1,rihfaBr8BnSsyBL5IxCSrv952yZAj-e3ypV5a5mSQ-dvwc68N6ufMb3E8vxpEjcxBHPgKux21XCXf20zzBSFiQG3nkx0CVU6oaaZsHBZQuhe-x-dbnhvLB_Z&typo=1>\r\n\r\n[cid:image001.png@01DC18FA.8FD00EA0]',0,0,0,0,0,0,'2025-09-03 11:08:44','2025-12-09 19:28:02','2025-12-09 19:28:02','2025-12-09 19:28:02',NULL,NULL,NULL),
(670,4,'<180948C7-98DA-47E8-8195-43757A3F180D@lithiumbatterycompany.com>',NULL,NULL,'Intro/Signature Block','leslie@lithiumbatterycompany.com','Leslie Staron','Hi Rick, Good Morning.  \r\n\r\nSending you a note about the signature block for the new email.\r\n\r\nAlso, let me know if 4pm today works for me to call you to formally introduce myself.\r\n\r\nThanks,\r\nLeslie','Hi Rick, Good Morning.  \r\n\r\nSending you a note about the signature block for the new email.\r\n\r\nAlso, let me know if 4pm today works for me to call you to formally introduce myself.\r\n\r\nThanks,\r\nLeslie',0,0,0,0,0,0,'2025-09-03 14:02:47','2025-12-09 19:28:02','2025-12-09 19:28:02','2025-12-09 19:28:02',NULL,NULL,NULL),
(671,4,'<957ca3ba6cc432bf24b3fa1c9c054c1e@mavrix.one>',NULL,NULL,'Test -  Signature Block with Image Request','jordan@mavrix.one','jordan@mavrix.one','Hi Rick,\r\n\r\nHope you\'re well.  Test run email here.\r\n\r\nbest,\r\n\r\n\r\nJW\r\n','Hi Rick,\r\n\r\nHope you\'re well.  Test run email here.\r\n\r\nbest,\r\n\r\n\r\nJW\r\n',0,0,0,0,0,0,'2025-09-03 14:35:44','2025-12-09 19:28:03','2025-12-09 19:28:03','2025-12-09 19:28:03',NULL,NULL,NULL),
(672,4,'<6996011a3a05265db576cd3008c9691a@mavrix.one>',NULL,NULL,'Re: Test - Signature Block with Image Request','jordan@mavrix.one','jordan@mavrix.one','On 2025-09-03 10:36, Rick wrote:\r\n> Thanks!\r\n> \r\n> Jordan Wroblewski\r\n> VP, Business Development\r\n> \r\n> mavrix1.com [1]\r\n> \r\n> CONFIDENTIALITY NOTICE: This communication is confidential and\r\n> intended only for the intended recipient.  If you are not the intended\r\n> recipient, you may not copy, disclose, or distribute this message to\r\n> anyone else; any such actions may be unlawful. If you have received\r\n> this communication in error, please contact the sender of the message\r\n> to inform him or her of the error.\r\n> \r\n> On September 3, 2025 at 10:35:44, jordan@mavrix.one\r\n> (jordan@mavrix.one) wrote:\r\n> \r\n>> Hi Rick,\r\n>> \r\n>> Hope you\'re well. Test run email here.\r\n>> \r\n>> best,\r\n>> \r\n>> JW\r\n> \r\n> \r\n> Links:\r\n> ------\r\n> [1] http://mavrix1.com/\r\nReceived\r\n','On 2025-09-03 10:36, Rick wrote:\r\n> Thanks!\r\n> \r\n> Jordan Wroblewski\r\n> VP, Business Development\r\n> \r\n> mavrix1.com [1]\r\n> \r\n> CONFIDENTIALITY NOTICE: This communication is confidential and\r\n> intended only for the intended recipient.  If you are not the intended\r\n> recipient, you may not copy, disclose, or distribute this message to\r\n> anyone else; any such actions may be unlawful. If you have received\r\n> this communication in error, please contact the sender of the message\r\n> to inform him or her of the error.\r\n> \r\n> On September 3, 2025 at 10:35:44, jordan@mavrix.one\r\n> (jordan@mavrix.one) wrote:\r\n> \r\n>> Hi Rick,\r\n>> \r\n>> Hope you\'re well. Test run email here.\r\n>> \r\n>> best,\r\n>> \r\n>> JW\r\n> \r\n> \r\n> Links:\r\n> ------\r\n> [1] http://mavrix1.com/\r\nReceived\r\n',0,0,0,0,0,0,'2025-09-03 14:40:32','2025-12-09 19:28:03','2025-12-09 19:28:03','2025-12-09 19:28:03',NULL,NULL,NULL),
(673,4,'<CAN_x9erWKHeiwNj=VfWXuFTU8YoJva2EbuUAfQz_jk+Fi55Msw@mail.gmail.com>',NULL,NULL,'Re: Bista Solutions Odoo Inquiry','nick.augustyn@bistasolutions.com','Nick Augustyn','<div dir=\"ltr\"><div dir=\"ltr\">Hi Gopi,<div></div><div><br></div><div>I spoke with Rick today and they would like to deno the software. Are you able to create a demo environment for Rick and his team?</div><div><br></div><div>Thanks,</div><div>Nick</div></div><br><img width=\"0\" height=\"0\" class=\"mailtrack-img\" alt=\"\" style=\"display:flex\" src=\"https://mailtrack.io/trace/mail/ccf127e55aeac3f4fe785c3d3c8cb0b6ebdf2ccd.png?u=9660734\"><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Sep 3, 2025 at 8:23 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"> Thanks again! Looking for ward to learning more thru the demo.<br>All good!<br>Thanks,<br>Rick <br> <br><p>On September 2, 2025 at 11:49:44, Nick Augustyn (<a href=\"mailto:nick.augustyn@bistasolutions.com\" target=\"_blank\">nick.augustyn@bistasolutions.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div dir=\"ltr\">Great, I have sent a calendar invite. Let me know if you have any questions.<div></div></div><br><img width=\"0\" height=\"0\" alt=\"\" style=\"display: flex;\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\"><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Sep 1, 2025 at 8:06 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\"><div>Hi Nick, </div><div>What’s this week look like for you. Say Wed, <a href=\"http://airmail.calendar/2025-09-04%2012:00:00%20EDT\" style=\"word-break:break-word\" target=\"_blank\">Thursday</a> or <a href=\"http://airmail.calendar/2025-09-05%2010:00:00%20EDT\" style=\"word-break:break-word\" target=\"_blank\">Fri 10a-1p EST</a>?</div>Thanks!<div>Rick</div></div> <br> <div class=\"gmail_signature\">\r\n\r\n         \r\n      \r\n    <br>\r\n\r\n      \r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD, </span><div style=\"font-family:Helvetica,Arial\">Founder, CTO</div><div style=\"font-family:Helvetica,Arial\"><img alt=\"\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" width=\"0\" height=\"0\"></div><div style=\"font-family:Helvetica,Arial\"><a href=\"http://mavrix1.com/\" target=\"_blank\">mavrix1.com</a></div></div><div><br></div><div><br></div><div><div>CONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.</div><div><br></div></div>\r\n\r\n\r\n\r\n</div> <br><p>On August 29, 2025 at 1:38:38 PM, Nick Augustyn (<a href=\"mailto:nick.augustyn@bistasolutions.com\" target=\"_blank\">nick.augustyn@bistasolutions.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div><div><p style=\"display:inline\"><span style=\"background-color:rgb(255,255,255);color:rgb(34,34,34);font-family:Arial,Helvetica,sans-serif\">Hi Rick,</span></p><p>My name is Nick and I work with Bista Solutions, we received your inquiry for your business about Odoo and I wanted to introduce myself to you. I think it&#39;s best we schedule a more formal call. You can reach me at 716-867-7191 or via email (<a href=\"mailto:nick.augustyn@bistasolutions.com\" target=\"_blank\">nick.augustyn@bistasolutions.com</a>). I am looking forward to speaking with you!<br> </p><p>Thanks,</p></div></div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\" style=\"color:rgb(34,34,34);font-family:&quot;Times New Roman&quot;\"><tbody><tr><td valign=\"top\" style=\"padding:0cm 7.5pt 0cm 0cm\"><p align=\"center\" style=\"margin:0cm 0cm 0.0001pt;font-size:11pt;font-family:Calibri,sans-serif;text-align:center\"><b><span style=\"font-size:12pt;font-family:&quot;Times New Roman&quot;,serif\"><a href=\"http://www.bistasolutions.com/\" style=\"color:rgb(149,79,114)\" target=\"_blank\"><span><img border=\"0\" width=\"76\" height=\"57\" src=\"http://www.bistasolutions.com/India/tinified/Bista-Solutions-logo-for-Email-sig.png\"></span></a></span></b></p></td><td valign=\"top\" style=\"padding:0cm\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\" width=\"500\" style=\"width:375pt\"><tbody><tr><td valign=\"top\" style=\"padding:0cm\"><p style=\"margin:0.75pt 0cm 0.0001pt;font-size:11pt;font-family:Calibri,sans-serif\"><b><span style=\"font-size:9pt;font-family:Tahoma,sans-serif;color:rgb(88,89,91);text-transform:uppercase\">NicholaS Augustyn</span></b></p></td></tr><tr><td valign=\"top\" style=\"padding:0cm\"><p style=\"margin:0.75pt 0cm 0.0001pt\"><font color=\"#58595b\" face=\"Tahoma, sans-serif\" size=\"1\">Senior Account Executive</font></p></td></tr><tr><td valign=\"top\" style=\"padding:0cm\"><div style=\"margin:0cm 0cm 0.0001pt;font-size:11pt;font-family:Calibri,sans-serif\"><span style=\"font-size:12pt;font-family:&quot;Times New Roman&quot;,serif\"><hr size=\"1\" width=\"23\" noshade align=\"left\" style=\"width:16.95pt;margin-bottom:5px;margin-top:6px\"></span></div></td></tr><tr><td valign=\"top\" style=\"padding:0cm\"><table border=\"0\" cellpadding=\"0\"><tbody><tr><td style=\"padding:0cm\"><p style=\"margin:0cm 0cm 0.0001pt;font-size:11pt;font-family:Calibri,sans-serif\"><span style=\"font-size:12pt;font-family:&quot;Times New Roman&quot;,serif\"><img border=\"0\" width=\"12\" height=\"17\" src=\"http://www.bistasolutions.com/India/tinified/Location-icon.png\" alt=\"?\"></span></p></td><td style=\"padding:0cm 2.85pt\"><p style=\"margin:0cm 0cm 0.0001pt;font-size:11pt;font-family:Calibri,sans-serif\"><span style=\"font-size:7pt;font-family:Tahoma,sans-serif;color:rgb(147,149,152)\">1255 W. 15th St. Suite 210, Plano, TX. 75075</span></p></td></tr></tbody></table></td></tr><tr><td valign=\"top\" style=\"padding:0cm\"><table border=\"0\" cellpadding=\"0\"><tbody><tr><td style=\"padding:0cm\"><p style=\"margin:0cm 0cm 0.0001pt;font-size:11pt;font-family:Calibri,sans-serif\"><span style=\"font-size:12pt;font-family:&quot;Times New Roman&quot;,serif\"><img border=\"0\" width=\"8\" height=\"15\" src=\"http://www.bistasolutions.com/India/tinified/Phone-icon-new.png\" alt=\"?\"></span></p></td><td style=\"padding:0cm 2.85pt\"><p style=\"margin:0cm 0cm 0.0001pt;font-size:11pt;font-family:Calibri,sans-serif\"><span style=\"font-size:7pt;font-family:Tahoma,sans-serif;color:rgb(147,149,152)\">1-716-867-7191</span></p></td><td style=\"padding:0cm\"><p style=\"margin:0cm 0cm 0.0001pt;font-size:11pt;font-family:Calibri,sans-serif\"><br></p></td><td style=\"padding:0cm 2.85pt\"><p style=\"margin:0cm 0cm 0.0001pt;font-size:11pt;font-family:Calibri,sans-serif\"><br></p></td><td style=\"padding:0cm\"><p style=\"margin:0cm 0cm 0.0001pt;font-size:11pt;font-family:Calibri,sans-serif\"><span style=\"font-size:12pt;font-family:&quot;Times New Roman&quot;,serif\"><img border=\"0\" width=\"12\" height=\"12\" src=\"http://www.bistasolutions.com/India/tinified/Web-icon-new.png\" alt=\"?\"></span></p></td><td style=\"padding:0cm 2.85pt\"><p style=\"margin:0cm 0cm 0.0001pt;font-size:11pt;font-family:Calibri,sans-serif\"><span style=\"font-size:7pt;font-family:Tahoma,sans-serif;color:rgb(147,149,152)\"><a href=\"http://www.bistasolutions.com/\" style=\"color:rgb(149,79,114)\" target=\"_blank\"><span style=\"color:rgb(147,149,152)\">www.bistasolutions.com</span></a></span></p></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></div></div><div></div><img width=\"0\" height=\"0\" alt=\"\" style=\"display: flex;\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\"><img src=\"https://stats-getmailtracker.com/pixel/jg5l4vEmhfUCGlwXeSWf?rid=jg5l4vEmhfUCGlwXeSWf&amp;user=620612&amp;end=1\" width=\"0\" height=\"0\" border=\"0\" style=\"display: flex;\" alt=\"\"></div>\r\n\r\n</div></div></span></blockquote>\r\n\r\n\r\n\r\n\r\n\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><span style=\"color:rgb(136,136,136)\">Thanks,</span><br style=\"color:rgb(136,136,136)\"><span style=\"color:rgb(136,136,136)\">nick.augustyn@</span><span style=\"color:rgb(136,136,136)\">BistaSolutions.com</span><br style=\"color:rgb(136,136,136)\"><span style=\"color:rgb(136,136,136)\">Senior Account Executive</span><br style=\"color:rgb(136,136,136)\"><span style=\"color:rgb(136,136,136)\">Mobile: 716</span><span style=\"color:rgb(136,136,136);font-family:arial\"> 867 7191</span><br></div></div><img src=\"https://monitor-getmailtracker.com/pixel/qhAPH9AFfzpE6Md78dbt?rid=qhAPH9AFfzpE6Md78dbt&amp;user=620612&amp;end=1\" width=\"0\" height=\"0\" border=\"0\" style=\"display: flex;\" alt=\"\"></div>\r\n\r\n</div></div></span></blockquote></blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><span style=\"color:rgb(136,136,136)\">Thanks,</span><br style=\"color:rgb(136,136,136)\"><span style=\"color:rgb(136,136,136)\">nick.augustyn@</span><span style=\"color:rgb(136,136,136)\">BistaSolutions.com</span><br style=\"color:rgb(136,136,136)\"><span style=\"color:rgb(136,136,136)\">Senior Account Executive</span><br style=\"color:rgb(136,136,136)\"><span style=\"color:rgb(136,136,136)\">Mobile: 716</span><span style=\"color:rgb(136,136,136);font-family:arial\"> 867 7191</span><br></div></div><img src=\"https://stats-getmailtracker.com/pixel/BaeDNwYMPcwFiUPU9Rw9?rid=BaeDNwYMPcwFiUPU9Rw9&amp;user=620612&amp;end=1\" width=\"0\" height=\"0\" border=\"0\" style=\"display:flex\" alt=\"\"></div>','Hi Gopi,\r\n\r\nI spoke with Rick today and they would like to deno the software. Are you\r\nable to create a demo environment for Rick and his team?\r\n\r\nThanks,\r\nNick\r\n\r\nOn Wed, Sep 3, 2025 at 8:23 AM Rick <rick@mavrix.one> wrote:\r\n\r\n> Thanks again! Looking for ward to learning more thru the demo.\r\n> All good!\r\n> Thanks,\r\n> Rick\r\n>\r\n> On September 2, 2025 at 11:49:44, Nick Augustyn (\r\n> nick.augustyn@bistasolutions.com) wrote:\r\n>\r\n> Great, I have sent a calendar invite. Let me know if you have any\r\n> questions.\r\n>\r\n> On Mon, Sep 1, 2025 at 8:06 AM Rick <rick@mavrix.one> wrote:\r\n>\r\n>> Hi Nick,\r\n>> What’s this week look like for you. Say Wed, Thursday\r\n>> <http://airmail.calendar/2025-09-04%2012:00:00%20EDT> or Fri 10a-1p EST\r\n>> <http://airmail.calendar/2025-09-05%2010:00:00%20EDT>?\r\n>> Thanks!\r\n>> Rick\r\n>>\r\n>>\r\n>> Rick Mislan, PhD,\r\n>> Founder, CTO\r\n>> mavrix1.com\r\n>>\r\n>>\r\n>> CONFIDENTIALITY NOTICE: This communication is confidential and intended\r\n>> only for the intended recipient.  If you are not the intended recipient,\r\n>> you may not copy, disclose, or distribute this message to anyone else; any\r\n>> such actions may be unlawful. If you have received this communication in\r\n>> error, please contact the sender of the message to inform him or her of the\r\n>> error.\r\n>>\r\n>>\r\n>> On August 29, 2025 at 1:38:38 PM, Nick Augustyn (\r\n>> nick.augustyn@bistasolutions.com) wrote:\r\n>>\r\n>> Hi Rick,\r\n>>\r\n>> My name is Nick and I work with Bista Solutions, we received your inquiry\r\n>> for your business about Odoo and I wanted to introduce myself to you. I\r\n>> think it\'s best we schedule a more formal call. You can reach me at\r\n>> 716-867-7191 or via email (nick.augustyn@bistasolutions.com). I am\r\n>> looking forward to speaking with you!\r\n>>\r\n>>\r\n>> Thanks,\r\n>>\r\n>> * <http://www.bistasolutions.com/>*\r\n>>\r\n>> *NicholaS Augustyn*\r\n>>\r\n>> Senior Account Executive\r\n>> ------------------------------\r\n>>\r\n>> [image: ?]\r\n>>\r\n>> 1255 W. 15th St. Suite 210, Plano, TX. 75075\r\n>>\r\n>> [image: ?]\r\n>>\r\n>> 1-716-867-7191\r\n>>\r\n>>\r\n>>\r\n>> [image: ?]\r\n>>\r\n>> www.bistasolutions.com\r\n>>\r\n>>\r\n>\r\n> --\r\n> Thanks,\r\n> nick.augustyn@BistaSolutions.com\r\n> Senior Account Executive\r\n> Mobile: 716 867 7191\r\n>\r\n>\r\n\r\n-- \r\nThanks,\r\nnick.augustyn@BistaSolutions.com\r\nSenior Account Executive\r\nMobile: 716 867 7191',0,0,0,0,0,0,'2025-09-03 15:27:06','2025-12-09 19:28:03','2025-12-09 19:28:03','2025-12-09 19:28:03',NULL,NULL,NULL),
(674,4,'<a04ac01891bb92a3c4e8fbfd097b98b8@mavrix.one>',NULL,NULL,'TEST FROM JASON','jason@mavrix.one','jason@mavrix.one','Test from Jason\r\n','Test from Jason\r\n',0,0,0,0,0,0,'2025-09-03 16:04:55','2025-12-09 19:28:04','2025-12-09 19:28:04','2025-12-09 19:28:04',NULL,NULL,NULL),
(675,4,'<CAGgBgfDYOXMuwYLrLdLt5dM+iGUi=8zajvOFf2VLkKy8_R8cdA@mail.gmail.com>',NULL,NULL,'Financials (09/03/25 1210)','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">Rick:</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">The $50K number I mentioned was just the raw cost for payroll for Dan and I since we&#39;ve started working on this. I neglected to add in Joel&#39;s efforts, as well as material expenses, and I didn&#39;t have any profit on that number.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Joel&#39;s got 82 hours of his own on this so far on various pieces of software.  Parts and boards, I think I&#39;ve spent around $3500 so far.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">As such, it would be $60K to reimburse our raw costs thus far.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">We had originally quoted $71K per month for the first 9 months.  Ideally we&#39;d prefer to be a month ahead instead of a month behind, and have some profit in there somewhere.  That would mean $71K (back effort) plus $71K (month going forward).</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Looking at what we&#39;ve been doing for the dollars, we&#39;ve currently got over 6100 files and 560 subdirectories in this project.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Additionally, I would like to launch (in the next couple of weeks) at least 2 more boards, if not 3.  Out of those 3, I think I can hand-assemble 1 for prototypes, the other 2 boards use parts that will not allow hand assembly.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">If I do local assembly, you&#39;re probably talking 2 months and a little under $20K to get prototypes of each of those 2 boards built up.  </div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">What I&#39;d like to suggest is just a couple of the IMU modules for show-and-tell and possible sales, and at least 10 of the FCCs.  We only need 1 or 2 of the debug / demo boards for the OSD.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">All of that is approaching quickly, I want to be able to give Joel more realistic hardware to target his software efforts to.  He&#39;s been doing primitive overlay with a video screen, thank goodness he hit a self-induced snag, it bought me some time!</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">At that point you should have at least 3 (if not 4) unique prototypes.  They might even be suitable for cost analysis and show-and tells.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">Do you have a MRP system picked out?  I&#39;m at the point where I should start making a database for parts and a pile of component specification sheets.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">If you don&#39;t have one, we might be able to help.  I have one called PEDYN, you type in what you want to build, it looks at your inventory and then creates all the POs needed to buy the individual pieces you don&#39;t have in stock.  It also helps you to plan and cost out jobs.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">It&#39;s not a good program to maintain because Microsoft has been trying to crush it for the past decade -- but it&#39;s still out there, still being supported.  It&#39;s based off Microsoft Access, and of course Access gets you in bed with Microsoft, which means to me it&#39;s not a good place to start.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">The good news is, there are some nice Linux-based flavors that look interesting.</div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><div><font face=\"courier new, monospace\">Regards,</font></div><div><font face=\"courier new, monospace\">Thomas Pownall</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">CADX Services, Inc.</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Tel: 585-624-1491 X101</font></div><div><font face=\"courier new, monospace\">Fax: 585-582-1101</font></div><div><font face=\"courier new, monospace\">E-Mail: <a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a></font></div><div><font face=\"courier new, monospace\">Web: <a href=\"http://www.cadxservices.com\" target=\"_blank\">http://www.cadxservices.com</a></font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\">**************** Confidentiality Statement ****************</font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Privileged/Confidential Information may be contained in this</font></div><div><font face=\"courier new, monospace\">message. If you are not the addressee indicated in this message</font></div><div><font face=\"courier new, monospace\">(or responsible for delivery of the message to such person),</font></div><div><font face=\"courier new, monospace\">you may not copy or deliver this message to anyone. In such</font></div><div><font face=\"courier new, monospace\">case, you should destroy this message, and notify us</font></div><div><font face=\"courier new, monospace\">immediately. If you or your employer does not consent to</font></div><div><font face=\"courier new, monospace\">Internet email messages of this kind, please advise us</font></div><div><font face=\"courier new, monospace\">immediately. Opinions, conclusions and other information</font></div><div><font face=\"courier new, monospace\">expressed in this message are not given or endorsed by my firm</font></div><div><font face=\"courier new, monospace\">or employer unless otherwise indicated by an authorized</font></div><div><font face=\"courier new, monospace\">representative independent of this message.</font></div></div></div></div></div></div></div>','Rick:\r\n\r\nThe $50K number I mentioned was just the raw cost for payroll for Dan and I\r\nsince we\'ve started working on this. I neglected to add in Joel\'s efforts,\r\nas well as material expenses, and I didn\'t have any profit on that number.\r\n\r\nJoel\'s got 82 hours of his own on this so far on various pieces of\r\nsoftware.  Parts and boards, I think I\'ve spent around $3500 so far.\r\n\r\nAs such, it would be $60K to reimburse our raw costs thus far.\r\n\r\nWe had originally quoted $71K per month for the first 9 months.  Ideally\r\nwe\'d prefer to be a month ahead instead of a month behind, and have some\r\nprofit in there somewhere.  That would mean $71K (back effort) plus $71K\r\n(month going forward).\r\n\r\nLooking at what we\'ve been doing for the dollars, we\'ve currently got over\r\n6100 files and 560 subdirectories in this project.\r\n\r\n\r\n\r\nAdditionally, I would like to launch (in the next couple of weeks) at least\r\n2 more boards, if not 3.  Out of those 3, I think I can hand-assemble 1 for\r\nprototypes, the other 2 boards use parts that will not allow hand assembly.\r\n\r\nIf I do local assembly, you\'re probably talking 2 months and a little under\r\n$20K to get prototypes of each of those 2 boards built up.\r\n\r\nWhat I\'d like to suggest is just a couple of the IMU modules for\r\nshow-and-tell and possible sales, and at least 10 of the FCCs.  We only\r\nneed 1 or 2 of the debug / demo boards for the OSD.\r\n\r\nAll of that is approaching quickly, I want to be able to give Joel more\r\nrealistic hardware to target his software efforts to.  He\'s been doing\r\nprimitive overlay with a video screen, thank goodness he hit a self-induced\r\nsnag, it bought me some time!\r\n\r\nAt that point you should have at least 3 (if not 4) unique prototypes.\r\nThey might even be suitable for cost analysis and show-and tells.\r\n\r\n\r\n\r\nDo you have a MRP system picked out?  I\'m at the point where I should start\r\nmaking a database for parts and a pile of component specification sheets.\r\n\r\nIf you don\'t have one, we might be able to help.  I have one called PEDYN,\r\nyou type in what you want to build, it looks at your inventory and then\r\ncreates all the POs needed to buy the individual pieces you don\'t have in\r\nstock.  It also helps you to plan and cost out jobs.\r\n\r\nIt\'s not a good program to maintain because Microsoft has been trying to\r\ncrush it for the past decade -- but it\'s still out there, still being\r\nsupported.  It\'s based off Microsoft Access, and of course Access gets you\r\nin bed with Microsoft, which means to me it\'s not a good place to start.\r\n\r\nThe good news is, there are some nice Linux-based flavors that look\r\ninteresting.\r\n\r\nRegards,\r\nThomas Pownall\r\n\r\nCADX Services, Inc.\r\n\r\nTel: 585-624-1491 X101\r\nFax: 585-582-1101\r\nE-Mail: tpownall@cadxservices.com\r\nWeb: http://www.cadxservices.com\r\n\r\n***********************************************************\r\n**************** Confidentiality Statement ****************\r\n***********************************************************\r\n\r\nPrivileged/Confidential Information may be contained in this\r\nmessage. If you are not the addressee indicated in this message\r\n(or responsible for delivery of the message to such person),\r\nyou may not copy or deliver this message to anyone. In such\r\ncase, you should destroy this message, and notify us\r\nimmediately. If you or your employer does not consent to\r\nInternet email messages of this kind, please advise us\r\nimmediately. Opinions, conclusions and other information\r\nexpressed in this message are not given or endorsed by my firm\r\nor employer unless otherwise indicated by an authorized\r\nrepresentative independent of this message.',0,0,0,0,0,0,'2025-09-03 16:08:32','2025-12-09 19:28:04','2025-12-09 19:28:04','2025-12-09 19:28:04',NULL,NULL,NULL),
(676,4,'<calendar-45a7aabe-03f6-42aa-bb02-d8c22ded6844@google.com>',NULL,NULL,'Invitation: HR Intro:  Rick/Leslie @ Thu Sep 4, 2025 2pm - 3pm (UTC) (rick@mavrix.one)','leslie@lithiumbatterycompany.com','Leslie Staron','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v144/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v118/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation from Leslie Staron\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"_8kok2chg8gok8b9k8cs48b9k6t336b9o8krk6b9o8osjidpg6kp3gcpk8c\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">HR Intro:  Rick/Leslie</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=Xzhrb2syY2hnOGdvazhiOWs4Y3M0OGI5azZ0MzM2YjlvOGtyazZiOW84b3NqaWRwZzZrcDNnY3BrOGMgcmlja0BtYXZyaXgub25l&amp;tok=MzIjbGVzbGllQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb203NDQxYzA5ZDE3ZDdkYTNmYTBhMGRhYWFiNDFkNWQ0OWE1Y2RhZDI0&amp;ctz=UTC&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250904T140000Z\"></time><time itemprop=\"endDate\" datetime=\"20250904T150000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">Link in Signal Chat</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><div class=\"\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span>Link in Signal Chat</span><meta itemprop=\"description\" content=\"Link in Signal Chat\"/></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250904T140000Z\"></time><time itemprop=\"endDate\" datetime=\"20250904T150000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Thursday Sep 4, 2025 ⋅ 2pm – 3pm (Coordinated Universal Time)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:leslie@lithiumbatterycompany.com\">Leslie Staron</a></span><meta itemprop=\"email\" content=\"leslie@lithiumbatterycompany.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Leslie Staron\"/><meta itemprop=\"email\" content=\"leslie@lithiumbatterycompany.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">Rick</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=Xzhrb2syY2hnOGdvazhiOWs4Y3M0OGI5azZ0MzM2YjlvOGtyazZiOW84b3NqaWRwZzZrcDNnY3BrOGMgcmlja0BtYXZyaXgub25l&amp;tok=MzIjbGVzbGllQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb203NDQxYzA5ZDE3ZDdkYTNmYTBhMGRhYWFiNDFkNWQ0OWE1Y2RhZDI0&amp;ctz=UTC&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=Xzhrb2syY2hnOGdvazhiOWs4Y3M0OGI5azZ0MzM2YjlvOGtyazZiOW84b3NqaWRwZzZrcDNnY3BrOGMgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MzIjbGVzbGllQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb203NDQxYzA5ZDE3ZDdkYTNmYTBhMGRhYWFiNDFkNWQ0OWE1Y2RhZDI0&amp;ctz=UTC&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=Xzhrb2syY2hnOGdvazhiOWs4Y3M0OGI5azZ0MzM2YjlvOGtyazZiOW84b3NqaWRwZzZrcDNnY3BrOGMgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MzIjbGVzbGllQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb203NDQxYzA5ZDE3ZDdkYTNmYTBhMGRhYWFiNDFkNWQ0OWE1Y2RhZDI0&amp;ctz=UTC&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=Xzhrb2syY2hnOGdvazhiOWs4Y3M0OGI5azZ0MzM2YjlvOGtyazZiOW84b3NqaWRwZzZrcDNnY3BrOGMgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MzIjbGVzbGllQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb203NDQxYzA5ZDE3ZDdkYTNmYTBhMGRhYWFiNDFkNWQ0OWE1Y2RhZDI0&amp;ctz=UTC&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=Xzhrb2syY2hnOGdvazhiOWs4Y3M0OGI5azZ0MzM2YjlvOGtyazZiOW84b3NqaWRwZzZrcDNnY3BrOGMgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MzIjbGVzbGllQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb203NDQxYzA5ZDE3ZDdkYTNmYTBhMGRhYWFiNDFkNWQ0OWE1Y2RhZDI0&amp;ctz=UTC&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=Xzhrb2syY2hnOGdvazhiOWs4Y3M0OGI5azZ0MzM2YjlvOGtyazZiOW84b3NqaWRwZzZrcDNnY3BrOGMgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MzIjbGVzbGllQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb203NDQxYzA5ZDE3ZDdkYTNmYTBhMGRhYWFiNDFkNWQ0OWE1Y2RhZDI0&amp;ctz=UTC&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=Xzhrb2syY2hnOGdvazhiOWs4Y3M0OGI5azZ0MzM2YjlvOGtyazZiOW84b3NqaWRwZzZrcDNnY3BrOGMgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MzIjbGVzbGllQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb203NDQxYzA5ZDE3ZDdkYTNmYTBhMGRhYWFiNDFkNWQ0OWE1Y2RhZDI0&amp;ctz=UTC&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=Xzhrb2syY2hnOGdvazhiOWs4Y3M0OGI5azZ0MzM2YjlvOGtyazZiOW84b3NqaWRwZzZrcDNnY3BrOGMgcmlja0BtYXZyaXgub25l&amp;tok=MzIjbGVzbGllQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb203NDQxYzA5ZDE3ZDdkYTNmYTBhMGRhYWFiNDFkNWQ0OWE1Y2RhZDI0&amp;ctz=UTC&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=Xzhrb2syY2hnOGdvazhiOWs4Y3M0OGI5azZ0MzM2YjlvOGtyazZiOW84b3NqaWRwZzZrcDNnY3BrOGMgcmlja0BtYXZyaXgub25l&amp;tok=MzIjbGVzbGllQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb203NDQxYzA5ZDE3ZDdkYTNmYTBhMGRhYWFiNDFkNWQ0OWE1Y2RhZDI0&amp;ctz=UTC&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','HR Intro:  Rick/Leslie\r\nThursday Sep 4, 2025 ⋅ 2pm – 3pm\r\nCoordinated Universal Time\r\n\r\n\r\n\r\nLink in Signal Chat\r\n\r\nOrganizer\r\nLeslie Staron\r\nleslie@lithiumbatterycompany.com\r\n\r\nGuests\r\nLeslie Staron - organizer\r\nRick\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=Xzhrb2syY2hnOGdvazhiOWs4Y3M0OGI5azZ0MzM2YjlvOGtyazZiOW84b3NqaWRwZzZrcDNnY3BrOGMgcmlja0BtYXZyaXgub25l&tok=MzIjbGVzbGllQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb203NDQxYzA5ZDE3ZDdkYTNmYTBhMGRhYWFiNDFkNWQ0OWE1Y2RhZDI0&ctz=UTC&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=Xzhrb2syY2hnOGdvazhiOWs4Y3M0OGI5azZ0MzM2YjlvOGtyazZiOW84b3NqaWRwZzZrcDNnY3BrOGMgcmlja0BtYXZyaXgub25l&tok=MzIjbGVzbGllQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb203NDQxYzA5ZDE3ZDdkYTNmYTBhMGRhYWFiNDFkNWQ0OWE1Y2RhZDI0&ctz=UTC&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-09-03 17:23:03','2025-12-09 19:28:04','2025-12-09 19:28:04','2025-12-09 19:28:04',NULL,NULL,NULL),
(677,4,'<0.0.F.D08.1DC1D055481307C.0@omp.e.linkedin.com>',NULL,NULL,'WARNING: Learning may cause improved employee morale.','linkedin@e.linkedin.com','=?UTF-8?B?TGlua2VkSW4gTGVhcm5pbmc=?=','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\" xml:lang=\"en\">\r\n	<head>\r\n		<!--[if gte mso 9]><xml>\r\n			<o:OfficeDocumentSettings>\r\n			<o:AllowPNG/>\r\n			<o:PixelsPerInch>96</o:PixelsPerInch>\r\n			</o:OfficeDocumentSettings>\r\n			</xml>\r\n		<![endif]-->\r\n\r\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n		<meta name=\"HandheldFriendly\" content=\"true\">\r\n		<meta name=\"MobileOptimized\" content=\"320\">\r\n		<meta name=\"viewport\" content=\"width=device-width\">\r\n\r\n							\r\n		        <title></title>\r\n        \r\n		\r\n		<style type=\"text/css\">\r\n    \r\n    span, td, table, div {\r\n        -webkit-font-smoothing: antialiased;\r\n        -moz-osx-font-smoothing: grayscale;\r\n    }\r\n    .st-email-body{\r\n        width:100% !important;\r\n        -webkit-text-size-adjust: 100%;\r\n        margin: 0 auto!important;\r\n        padding: 0px;\r\n        background-color: #ffffff;\r\n    }\r\n\r\n    span.st-preheader{\r\n        display: none!important;\r\n    }\r\n\r\n    \r\n    td img + div {\r\n        display: none;\r\n    }\r\n\r\n    \r\n    a[href^=\"tel\"],\r\n    a[href^=\"sms\"]{text-decoration: none; color: inherit !important; pointer-events: none; cursor: default;}\r\n    u + .st-email-body a {color: inherit; text-decoration: none; font-size: inherit; font-family: inherit; font-weight: inherit; line-height: inherit;}\r\n    \r\n    *[x-apple-data-detectors] {color: inherit !important; text-decoration: none !important; font-size: inherit !important; font-family: inherit !important; font-weight: inherit !important; line-height: inherit !important;}\r\n\r\n    a,a:hover,a:link,a:visited {\r\n        text-decoration:none !important;\r\n        outline: none;\r\n    }\r\n\r\n    p {\r\n        margin: 0;\r\n        padding: 0;\r\n    }\r\n\r\n    \r\n    .st-hide-desktop {\r\n        display:none;\r\n        font-size:0;\r\n        height:0;\r\n        min-height:0;\r\n        max-height:0;\r\n        line-height:0;\r\n        mso-hide:all;\r\n    }\r\n\r\n    .st-gmail-fix { display: none !important; }\r\n\r\n    </style>\r\n<style>\r\n\r\n@media screen and (max-width: 480px) {\r\n            \r\n                            .st-col,.st-mobile-full-width,.st-module-wrapper-table,.st-wrapper,.st-wrapper-table{width:100%!important}.st-col{padding:0!important}.st-resize{width:100%!important}.st-mobile-width-constraint,.st-resize{display:block!important;height:auto!important}.st-mobile-width-constraint{max-width:100%!important}.st-equal-height,.st-height-auto{height:auto!important}.st-hide-desktop{display:table-row!important}.st-hide-mobile{display:none!important}.st-mobile-inline{display:inline!important}.show-img-mobile{display:table-row!important;width:100%!important;float:none;overflow:visible!important;height:auto!important}\r\n                .st-dynamic-689-4 { background-image:none!important; }                \r\n                .st-wrapper-table{\r\n                    width: 100%!important;\r\n                    max-width: 480px!important;\r\n                    margin: 0 auto;\r\n                }\r\n                    }\r\n                    #MessageViewBody .st-module-wrapper-table  {margin-top:-1px}\r\n            @media (max-width:511px) and (min-width:481px) {.st-module-wrapper-table {margin-top:-1px !important;}}\r\n            div > u + .body .st-module-wrapper-table {margin-top:0px !important}\r\n            </style>\r\n<!--[if !mso]><!-->\r\n    <style>\r\n    ul, ol {margin-left:15px; padding-left:0px}\r\n    </style>\r\n<!--<![endif]-->\r\n<!--[if mso]>\r\n    <style>\r\n        table{\r\n            border-collapse: collapse;\r\n        }\r\n\r\n                span.MsoHyperlink {\r\n            mso-style-priority:99;\r\n            color:inherit;\r\n        }\r\n        span.MsoHyperlinkFollowed {\r\n            mso-style-priority:99;\r\n            color:inherit;\r\n        }\r\n        ol li, ul li {margin-top:0px !important;margin-bottom:0px !important;}\r\n    </style>\r\n<![endif]-->\r\n\r\n<!--[if gte mso 9]>\r\n    <style>\r\n        .st-mso-full-width{\r\n            width: 100%;\r\n        }\r\n            </style>\r\n<![endif]-->\r\n\r\n\r\n<!--[if IEMobile]>\r\n    <style type=\"text/css\">\r\n        .st-mso-full-width{\r\n            width: 100%;\r\n        }\r\n    </style>\r\n<![endif]-->\r\n\r\n\r\n    <style>\r\n.aligned-bullets ul{list-style-position: outside!important; padding-left:20px!important; padding-top:12px !important;}\r\n.aligned-bullets ol{list-style-position: outside!important; padding-left:20px!important; padding-top:12px !important;}\r\n.border-radius {border-radius: 8px;}\r\n.border-radius-bs {border-bottom-left-radius:8px!important; border-bottom-right-radius:8px!important;}\r\n.border-radius-bs img{border-bottom-left-radius:8px!important; border-bottom-right-radius:8px!important;}\r\n.border-radius-ts {border-top-left-radius:8px!important; border-top-right-radius:8px!important;}\r\n.border-radius-ts img{border-top-left-radius:8px!important; border-top-right-radius:8px!important;}\r\n.button td{-webkit-border-radius: 50px!important; -moz-border-radius: 50px!important; border-radius: 50px!important; overflow: hidden!important; }\r\n.minw-48 img{min-width:48px!important;}\r\n.di-fix {mso-padding-top-alt:18pt!important;}\r\n.bullets-pb-12 ul li {padding-bottom:12px!important;}\r\n.bullets-pb-12 ol li {padding-bottom:12px!important;}\r\n@media all and (max-width: 480px) {\r\n\r\n.mob-pb-0{padding-bottom:0px!important;}\r\n.mob-ps-0{padding-right:0px!important;padding-left:0px!important;}\r\n.mob-ps-50{padding-right:50px!important;padding-left:50px!important;} \r\n.center-element td{margin: 0 auto!important; text-align:center!important;}\r\n.center-element {text-align:center!important;} \r\n.center-element table{margin: 0 auto!important;} \r\n.center-element p{text-align:center!important;} \r\n.center-element span{text-align:center!important;}\r\n.center-element img{margin: 0 auto!important;}\r\n.mob-w-52{width:52%!important;min-width:52%!important;max-width:52%!important;}\r\n.mob-w-52{font-size:12px!important;}\r\n.mob-w-52 p{font-size:12px!important;}\r\n.mob-w-52 p span{font-size:12px!important;}\r\n.mob-w-22{width:22%!important;min-width:22%!important;max-width:22%!important;}\r\n.mob-w-2{width:2%!important;min-width:2%!important;max-width:2%!important;}\r\n.mob-fs-13{font-size:13px!important;}\r\n.mob-fs-13 p{font-size:13px!important;}\r\n.mob-fs-13 p span{font-size:13px!important;}\r\n  \r\n.column50a p {text-align: left; font-size: 18px; line-height: 1.5em; color: #000000; font-family: Helvetica Neue, Arial, sans-serif; padding: 20px 20px 15px 20px;} \r\n.padlr0m td {width: 0; padding: 0 5px;}\r\n  \r\n\r\n }</style>\r\n\r\n\r\n	</head>\r\n	<body class=\"st-email-body st-center-gmail\">\r\n					<div lang=\"en\">\r\n		\r\n		\r\n												\r\n						<div style=\"font-size:0px; display:none; visibility:hidden; opacity:0; color:transparent; max-height:0px; height:0; width:0; mso-hide:all;\">\r\n						Not a doctor, but...\r\n																&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &nbsp;\r\n														</div>\r\n						<table role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" bgcolor=\"#F3F2EF\" class=\"st-wrapper-table\" style=\"width: 100%;\">\r\n  <tr>\r\n    <td width=\"100%\" valign=\"top\" align=\"center\" class=\"st-dynamic-689-4\">\r\n      <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"512\" class=\"st-wrapper st-wrapper-background st-module-wrapper-table\" style=\"width: 512px;\">\r\n        <tr>\r\n          <td width=\"100%\" bgcolor=\"#FFFFFF\" valign=\"top\" style=\"width: 100%;\">\r\n            <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"512\" class=\"st-mso-full-width st-mobile-full-width\" style=\"width: 512px;\">\r\n              <tr>\r\n                <td align=\"center\" valign=\"top\" width=\"512\">\r\n                  <table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\r\n                    <tr>\r\n                      <td width=\"100%\" valign=\"top\" align=\"center\" style=\"width: 100%;\"><!-- /// HEADER START -->\r\n                    </td></tr><tr>\r\n                      <td class=\"padt10m\" align=\"center\" style=\"padding-top: 16px; padding-bottom: 16px;\">\r\n                        <table role=\"presentation\" width=\"87%\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">\r\n                          <tr>\r\n\r\n                            <!-- LOGO START -->\r\n                            <td width=\"100\" align=\"left\" style=\"padding-right: 12px;\"><a href=\"https://e.linkedin.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSUTQGvUnkzdzbzfTtzaMyG7cAj5498gzfzePtHyzd10g34LAzaqJgeWSzgy1EhT8XAYBzd8zc4mOzdwuzczbyqhOVXtpKX%3DTSYUUWYY&amp;_ei_=EW2tf9zs59idfPO1Sc_9BbkfOS5tZSDzfmZGPfd5S-_TQu4Q0D1oGvjAgGJbYbxp9l8dIoY3A-23pXlH_hv3Oyc3seU-JzD-BGbG3k-kiamADPPQuTh3WKUSGvn-k3RtJB-pwpFi4v7LR8Xs-TZR7PMzdX9PA0.&amp;_di_=m6f83qa8g4q9f4tic9ctvjfaf31cepud332hbmpvvrsrh31usjsg\"><img src=\"https://e.linkedin.com/assets/responsysimages/linkedin/contentlibrary/jeangrey/logos/linkedin-blue-200x51.png\" width=\"100\" alt=\"LinkedIn\" style=\"width: 100%; max-width: 84px; display: block; border: 0; color: black; font-size: 20px; font-weight: bold; font-family: sans-serif;\"></a></td>\r\n                            <!-- LOGO END -->\r\n\r\n                            <!-- NAME/PROFILE START -->\r\n                            <td class=\"h3m\" width=\"150\" valign=\"top\" align=\"right\" style=\"padding-top:3px; font-size: 14px; color: #191919; font-family: Helvetica Neue, Arial, sans-serif;\">\r\n                              <a href=\"https://e.linkedin.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSUTQGvUnkzdzbzfTtzaMyG7cAj5498gzfzePtHyzd10g34LAzaqJgeWSzgy1EhT8XAYBzd8zc4mOzdwuzczbyqhOVXtpKX%3DTSYUUWBY&amp;_ei_=EW2tf9zs59idfPO1Sc_9BbkfOS5tZSDzfmZGPfd5S-_TQu4Q0D1oGvjAgGJbYbxp9l8dIoY3A-23pXlH_hv3Oyc3seU-JzD-BGbG3k-kiamADPPQuTh3WKUSGvn-k3RtJB-pwpFi4v7LR8Xs-TZR7PMzdX9PA0.&amp;_di_=vva8gpcnl1tf366nvehoie2rg8blvutd2coppcsffujjbhvf9mg0\"><img alt src=\"https://media.licdn.com/dms/image/v2/D4E03AQH7FhVwiiJ44g/profile-displayphoto-scale_400_400/B4EZf50lYcH0Ag-/0/1752243001533?e=1759363200&amp;v=beta&amp;t=rPUp2SQjWH-H9l_TLUGkXrrABHmfQCne75e-xvgHYUE\" style=\"display:block; border: 0; background-color: #ffffff; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; overflow: hidden;\" width=\"32\"></a>\r\n                            </td>\r\n                            <!-- NAME/PROFILE END -->\r\n\r\n                          </tr>\r\n                        </table>\r\n                      </td>\r\n                    </tr>\r\n                    <!-- HEADER END /// -->\r\n                </table></td>\r\n              </tr>\r\n            </table>\r\n          </td>\r\n        </tr>\r\n      </table>\r\n    </td>\r\n  </tr>\r\n\r\n\r\n\r\n<tr>\r\n  <td width=\"100%\" valign=\"top\" align=\"center\" class=\"st-dynamic-689-4\">\r\n    <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"512\" class=\"st-wrapper st-wrapper-background st-module-wrapper-table\" style=\"width: 512px;\">\r\n      <tr>\r\n        <td width=\"100%\" bgcolor=\"#FFFFFF\" valign=\"top\" style=\"width: 100%; padding: 16px 33px;\">\r\n          <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" style=\"width: 100%;\">\r\n            <tr>\r\n              <td width=\"100%\" valign=\"top\" align=\"left\">\r\n                <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"446\" class=\"st-mso-full-width st-mobile-full-width\" style=\"width: 446px;\">\r\n                  <tr>\r\n                    <td align=\"center\" valign=\"top\" width=\"446\">\r\n                      <table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"left\" style=\"text-align: left; font-family: Helvetica, Arial, sans-serif; color: #191919; font-size: 24px; font-weight: 700; letter-spacing: normal; line-height: 29px; padding-top: 16px; width: 100%;\">\r\n                            <p style=\"margin: 0px; text-align: left;\">You caught our attention.</p>\r\n                          </td>\r\n                        </tr>\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"left\" style=\"text-align: left; font-family: Helvetica, Arial, sans-serif; color: #191919; font-size: 16px; font-weight: 400; letter-spacing: normal; line-height: 24px; padding-top: 4px; width: 100%;\">\r\n                            <p style=\"margin: 0px;\">Based on your profile, we think you & your organization would love LinkedIn Learning. For this reason, we wanted to offer you a chance to <strong>speak with one of our Learning Consultants</strong> about your organization\'s learning objectives & how we can help.</p>\r\n                            <p style=\"margin: 0px;\">&zwnj;<br></p>\r\n                            <p style=\"margin: 0px;\">Otherwise, many members with similar backgrounds also find our enterprise learning <a style=\"color: #191919;\" href=\"https://e.linkedin.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSUTQGvUnkzdzbzfTtzaMyG7cAj5498gzfzePtHyzd10g34LAzaqJgeWSzgy1EhT8XAYBzd8zc4mOzdwuzczbyqhOVXtpKX%3DTSYUUWDY&amp;_ei_=EW2tf9zs59idfPO1Sc_9BbkfOS5tZSDzfmZGPfd5S-_TQu4Q0D1oGvjAgGJbYbxp9l8dIoY3A-23pXlH_hv3Oyc3seU-JzD-BGbG3k-kiamADPPQuTh3WKUSGvn-k3RtJB-pwpFi4v7LR8Xs-TZR7PMzdX9PA0.&amp;_di_=ourvnuqakd46431h9ueihvolohiri4i3fvaaqqsppua84tn3ns80\"><span style=\"color: #0a66c2;\">resource center</span></a> useful. It contains valuable information on <a style=\"color: #191919;\" href=\"https://e.linkedin.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSUTQGvUnkzdzbzfTtzaMyG7cAj5498gzfzePtHyzd10g34LAzaqJgeWSzgy1EhT8XAYBzd8zc4mOzdwuzczbyqhOVXtpKX%3DTSYUUYSY&amp;_ei_=EW2tf9zs59idfPO1Sc_9BbkfOS5tZSDzfmZGPfd5S-_TQu4Q0D1oGvjAgGJbYbxp9l8dIoY3A-23pXlH_hv3Oyc3seU-JzD-BGbG3k-kiamADPPQuTh3WKUSGvn-k3RtJB-pwpFi4v7LR8Xs-TZR7PMzdX9PA0.&amp;_di_=umqoqduqdfnjq4ogl50e3eoc1223muklopij81r74db1no717i20\"><span style=\"color: #0a66c2;\">upskilling</span></a>, <a style=\"color: #191919;\" href=\"https://e.linkedin.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSUTQGvUnkzdzbzfTtzaMyG7cAj5498gzfzePtHyzd10g34LAzaqJgeWSzgy1EhT8XAYBzd8zc4mOzdwuzczbyqhOVXtpKX%3DTSYUUYUY&amp;_ei_=EW2tf9zs59idfPO1Sc_9BbkfOS5tZSDzfmZGPfd5S-_TQu4Q0D1oGvjAgGJbYbxp9l8dIoY3A-23pXlH_hv3Oyc3seU-JzD-BGbG3k-kiamADPPQuTh3WKUSGvn-k3RtJB-pwpFi4v7LR8Xs-TZR7PMzdX9PA0.&amp;_di_=acv2kligkk3h4bdn8gv674j8ob1k3174apih31l30tspla1o7cl0\"><span style=\"color: #0a66c2;\">leadership training</span></a>, <a style=\"color: #191919;\" href=\"https://e.linkedin.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSUTQGvUnkzdzbzfTtzaMyG7cAj5498gzfzePtHyzd10g34LAzaqJgeWSzgy1EhT8XAYBzd8zc4mOzdwuzczbyqhOVXtpKX%3DTSYUUYYY&amp;_ei_=EW2tf9zs59idfPO1Sc_9BbkfOS5tZSDzfmZGPfd5S-_TQu4Q0D1oGvjAgGJbYbxp9l8dIoY3A-23pXlH_hv3Oyc3seU-JzD-BGbG3k-kiamADPPQuTh3WKUSGvn-k3RtJB-pwpFi4v7LR8Xs-TZR7PMzdX9PA0.&amp;_di_=i5169odh08vv1gs10l6hor92jl8maeqac859s03l3lbguqgea9r0\"><span style=\"color: #0a66c2;\">internal mobility</span></a>, and everything in between. Feel free to take a look, or get in touch using the below link.</p>\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n            <tr>\r\n              <td width=\"100%\" valign=\"top\" align=\"left\">\r\n                <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"446\" class=\"st-mso-full-width st-mobile-full-width\" style=\"width: 446px;\">\r\n                  <tr>\r\n                    <td align=\"center\" valign=\"top\" width=\"446\">\r\n                      <table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"left\" style=\"padding-top: 16px; width: 100%;\"><!--[if mso]>\r\n        <v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" style=\"height:35pt; v-text-anchor:middle; width:107pt; mso-position-horizontal: left\" arcsize=\"109%\" strokecolor=\"#0A66C2\" strokeweight=\"1pt\" fillcolor=\"#0A66C2\">\r\n          <w:anchorlock/>\r\n          <v:textbox inset=\"0,0,0,0\"><p style=\"text-align: center; font-family: Helvetica, Arial, Sans-serif; color: #FFFFFF; font-size: 16px; font-weight: 700; letter-spacing: normal; mso-line-height-rule: exactly; line-height: 16px\"><![endif]-->\r\n                            <!--[if !mso]><!-->\r\n                            <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border-collapse: initial;\">\r\n                              <tr>\r\n                                <td width=\"100%\" bgcolor=\"#0A66C2\" align=\"center\" height=\"45\" valign=\"middle\" style=\"mso-padding-alt:0px 24px 0px 24px; border-radius:50px; border-width: 1px; border-style: solid; border-color: #0a66c2; height: 45px; width: 100%; text-align: center; background-color: #0a66c2; vertical-align: middle\"><!--<![endif]--> <a href=\"https://e.linkedin.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSUTQGvUnkzdzbzfTtzaMyG7cAj5498gzfzePtHyzd10g34LAzaqJgeWSzgy1EhT8XAYBzd8zc4mOzdwuzczbyqhOVXtpKX%3DTSYUUYBY&amp;_ei_=EW2tf9zs59idfPO1Sc_9BbkfOS5tZSDzfmZGPfd5S-_TQu4Q0D1oGvjAgGJbYbxp9l8dIoY3A-23pXlH_hv3Oyc3seU-JzD-BGbG3k-kiamADPPQuTh3WKUSGvn-k3RtJB-pwpFi4v7LR8Xs-TZR7PMzdX9PA0.&amp;_di_=rd2rf2ppmjl9vflhgn9uln1phems4su3kph4m0ueld727bk7465g\" target=\"_blank\" bgcolor=\"#0A66C2\" valign=\"middle\" style=\"mso-line-height-rule:exactly; text-align:center; font-family: Helvetica, Arial, sans-serif; color: #ffffff; font-size: 16px; font-weight: 700; letter-spacing: normal; line-height: 20px; padding-right: 24px; padding-left: 24px; text-decoration: none; display: table-cell; height: 45px; border-radius: 50px; vertical-align: middle; box-sizing: content-box\" rilt=\"Get_in_touch\" rilc=\"CTA\"> <span style=\"margin: 0px; color: #ffffff;\">Get in touch</span></a> <!--[if !mso]><!--></td>\r\n                              </tr>\r\n                            </table> <!--<![endif]-->\r\n                            <!--[if mso]>\r\n            </p></v:textbox>\r\n          </v:roundrect>\r\n        <![endif]-->\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </table>\r\n  </td>\r\n</tr>\r\n<tr>\r\n  <td width=\"100%\" valign=\"top\" align=\"center\" class=\"st-dynamic-689-4\">\r\n    <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"512\" class=\"st-wrapper st-wrapper-background st-module-wrapper-table\" style=\"width: 512px;\">\r\n      <tr>\r\n        <td width=\"100%\" bgcolor=\"#FFFFFF\" valign=\"top\" style=\"width: 100%; padding: 16px 33px;\">\r\n          <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" style=\"width: 100%;\">\r\n            <tr>\r\n              <td width=\"100%\" valign=\"top\" align=\"left\" style=\"padding-bottom: 16px;\">\r\n                <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"446\" class=\"st-mso-full-width st-mobile-full-width\" style=\"width: 446px;\">\r\n                  <tr>\r\n                    <td align=\"center\" valign=\"top\" width=\"446\">\r\n                      <table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"left\" style=\"text-align: left; font-family: Helvetica, Arial, sans-serif; color: #191919; font-size: 16px; font-weight: 400; letter-spacing: normal; line-height: 20px; width: 100%;\">\r\n                            <p style=\"margin: 0px;\"><span style=\"font-size: 16px; line-height: 20px;\">Best of luck!</span></p>\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n            <tr>\r\n              <td width=\"100%\" valign=\"top\" align=\"left\">\r\n                <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" align=\"left\" width=\"100%\" style=\"width: 100%;\">\r\n                  <tr>\r\n                    <td width=\"446\" valign=\"middle\" style=\"width: 446px;\">\r\n                      <table role=\"presentation\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"left\" style=\"text-align: left; font-family: Helvetica, Arial, sans-serif; color: #191919; font-size: 16px; font-weight: 400; letter-spacing: normal; line-height: 20px; width: 100%;\">\r\n                            <p style=\"margin: 0px;\"><span style=\"font-size: 16px; line-height: 20px;\">LinkedIn Learning</span></p>\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </table>\r\n  </td>\r\n</tr>\r\n<tr>\r\n  <td width=\"100%\" valign=\"top\" align=\"center\" class=\"st-dynamic-689-4\">\r\n    <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"512\" class=\"st-wrapper st-wrapper-background st-module-wrapper-table\" style=\"width: 512px;\">\r\n      <tr>\r\n        <td width=\"100%\" valign=\"top\" style=\"width: 100%;\">\r\n          <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"512\" class=\"st-mso-full-width st-mobile-full-width\" style=\"width: 512px;\">\r\n            <tr>\r\n              <td align=\"center\" valign=\"top\" width=\"512\">\r\n                <table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\r\n                  <tr>\r\n                    <td width=\"100%\" valign=\"top\" align=\"center\" style=\"width: 100%;\"><!-- /// FOOTER START -->\r\n                  </td></tr><tr>\r\n                    <td style=\"background-color: #F3F2EF; padding-top: 12px; padding-bottom: 36px;\">\r\n<html lang=\"en\">\r\n<head>\r\n<title>Footer Mercado English</title>\r\n</head>\r\n<body>\r\n                        <table role=\"presentation\"  width=\"87%\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" >\r\n\r\n                            <!-- COPY START -->\r\n                            <tr>\r\n                                <td style=\"padding-top: 24px; text-align: left; font-size: 14px; line-height: 1.3em; color: #191919; font-family: Helvetica Neue, Arial, sans-serif;\">\r\n                                    This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\n                                    <br /><a href=\"https://e.linkedin.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSUTQGvUnkzdzbzfTtzaMyG7cAj5498gzfzePtHyzd10g34LAzaqJgeWSzgy1EhT8XAYBzd8zc4mOzdwuzczbyqhOVXtpKX%3DTSYUUYDY&_ei_=EW2tf9zs59idfPO1Sc_9BbkfOS5tZSDzfmZGPfd5S-_TQu4Q0D1oGvjAgGJbYbxp9l8dIoY3A-23pXlH_hv3Oyc3seU-JzD-BGbG3k-kiamADPPQuTh3WKUSGvn-k3RtJB-pwpFi4v7LR8Xs-TZR7PMzdX9PA0.&_di_=lmv5k9dsln24p0qgmjo76n6ir1qe96c0hsh8j8n4ihvso5pqmoig\"><span style=\"color: #0A66C2; text-decoration: underline;\">Learn why we included&nbsp;this.</span></a>\r\n                                    <br /><br />This is an occasional email to help you get the most out&nbsp;of&nbsp;LinkedIn.\r\n                                    <br><br>\r\n                                    <a href=\"https://e.linkedin.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSUTQGvUnkzdzbzfTtzaMyG7cAj5498gzfzePtHyzd10g34LAzaqJgeWSzgy1EhT8XAYBzd8zc4mOzdwuzczbyqhOVXtpKX%3DTSYUUASY&_ei_=EW2tf9zs59idfPO1Sc_9BbkfOS5tZSDzfmZGPfd5S-_TQu4Q0D1oGvjAgGJbYbxp9l8dIoY3A-23pXlH_hv3Oyc3seU-JzD-BGbG3k-kiamA_dJyT-W9kf5wZ4YE91yXDPbgpJhd7fRtnnR1yeFRPw14lk6DjFpRVWlu6GBilT00uSua3ew-p-P4-RFH_HU9VVA0mOII8tXJN0QA36nm6FfKGcalLJkx4CzmLdhJuu-FtgcAqRRO-iFKdXa7JXiu9pSWEGUC.&_di_=mbb5lm8ube25f6tg9js78pkanj7fgbm76mr5hk5dua6lv5p4vfj0\"><span style=\"color: #0A66C2; text-decoration: underline;\">Unsubscribe</span></a>&nbsp;&nbsp;&#183;&nbsp;&nbsp;<a href=\"https://e.linkedin.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSUTQGvUnkzdzbzfTtzaMyG7cAj5498gzfzePtHyzd10g34LAzaqJgeWSzgy1EhT8XAYBzd8zc4mOzdwuzczbyqhOVXtpKX%3DTSYUUAUY&_ei_=EW2tf9zs59idfPO1Sc_9BbkfOS5tZSDzfmZGPfd5S-_TQu4Q0D1oGvjAgGJbYbxp9l8dIoY3A-23pXlH_hv3Oyc3seU-JzD-BGbG3k-kiamADPPQuTh3WKUSGvn-k3RtJB-pwpFi4v7LR8Xs-TZR7PMzdX9PA0.&_di_=e4r99tj5geie7po9p4lb69u0bi68lqogks21gb6eapgki332f12g\"><span style=\"color: #0A66C2; text-decoration: underline;\">Help</span></a>\r\n                                </td>\r\n                            </tr>\r\n                            <!-- COPY END -->\r\n\r\n                            <!-- IMAGE START -->\r\n                            <tr>\r\n                                <td style=\"padding-top: 25px;\"><a href=\"https://e.linkedin.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSUTQGvUnkzdzbzfTtzaMyG7cAj5498gzfzePtHyzd10g34LAzaqJgeWSzgy1EhT8XAYBzd8zc4mOzdwuzczbyqhOVXtpKX%3DTSYUUWYY&_ei_=EW2tf9zs59idfPO1Sc_9BbkfOS5tZSDzfmZGPfd5S-_TQu4Q0D1oGvjAgGJbYbxp9l8dIoY3A-23pXlH_hv3Oyc3seU-JzD-BGbG3k-kiamADPPQuTh3WKUSGvn-k3RtJB-pwpFi4v7LR8Xs-TZR7PMzdX9PA0.&_di_=m6f83qa8g4q9f4tic9ctvjfaf31cepud332hbmpvvrsrh31usjsg\"><img src=\"https://e.linkedin.com/assets/responsysimages/content/linkedin/linkedin-blue-80x20.png\" width=\"80\" alt=\"LinkedIn\" style=\"display: block; border: 0; color: black; font-size: 20px; font-weight: bold; font-family: sans-serif;\"/></a></td>\r\n                            </tr>\r\n                            <!-- IMAGE END -->\r\n\r\n                            <!-- COPY START -->\r\n                            <tr>\r\n                                <td style=\"padding-top: 20px; text-align: left; font-size: 14px; line-height: 1.3em; color: #191919; font-family: Helvetica Neue, Arial, sans-serif;\">&#169; 2025, LinkedIn Corporation. All rights reserved. LinkedIn Corporation, 1000 West Maude Ave., Sunnyvale, CA 94085. LinkedIn and the LinkedIn logo are registered trademarks of&nbsp;LinkedIn.</td>\r\n                            </tr>\r\n                            <!-- COPY END -->\r\n\r\n                        </table><table cellpadding=\"0\" cellspacing=\"0\" style=\"border: 0px; padding: 0px; margin: 0px; position: absolute; display: none; float: left\">\r\n<tr>\r\n<td height=\"1\" style=\"font-size: 1px; line-height: 1px; padding: 0px;\">\r\n<br><img src=\"https://e.linkedin.com/pub/as?_ri_=X0Gzc2X%3DAQjkPkSUTQGvUnkzdzbzfTtzaMyG7cAj5498gzfzePtHyzd10g34LAzaqJgeWSzgy1EhT8XAYBzd8zc4mOzdwuzczbyqhOVXHkMX%3Dw&_ei_=EUlaGGF4SNMvxFF7KucKuWOjdy3pKGerutSeGSo7pWkH__tkOKlDfVNYQsDLopA9OynNSqrNAZOkQ5Osr9c4qMtXuztyCjzjuYtgmNVPxDIlFSOAGYghTvWC7D2rht3F7Y_LZ7Ez-fLQdWw-9Pg.\"></img>\r\n</td>\r\n</tr>\r\n</table>\r\n</body>\r\n</html>                    </td>\r\n                  </tr>\r\n                  <!-- FOOTER END /// -->\r\n              </table></td>\r\n            </tr>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </table>\r\n  </td>\r\n</tr>\r\n\r\n\r\n<!--[if false]><!-->\r\n<tr>\r\n  <td class=\"st-gmail-fix\" style=\"font-size:0; line-height: 0; height: 0; min-width: 512px;\">\r\n    &nbsp;\r\n  </td>\r\n</tr><!--<![endif]-->			</table>									</div>\r\n			</body>\r\n</html>\r\n\r\n\r\n','\r\n\r\n	\r\n		\r\n\r\n		\r\n		\r\n		\r\n		\r\n\r\n							\r\n		        \r\n        \r\n		\r\n		\r\n    \r\n    span, td, table, div {\r\n        -webkit-font-smoothing: antialiased;\r\n        -moz-osx-font-smoothing: grayscale;\r\n    }\r\n    .st-email-body{\r\n        width:100% !important;\r\n        -webkit-text-size-adjust: 100%;\r\n        margin: 0 auto!important;\r\n        padding: 0px;\r\n        background-color: #ffffff;\r\n    }\r\n\r\n    span.st-preheader{\r\n        display: none!important;\r\n    }\r\n\r\n    \r\n    td img + div {\r\n        display: none;\r\n    }\r\n\r\n    \r\n    a[href^=\"tel\"],\r\n    a[href^=\"sms\"]{text-decoration: none; color: inherit !important; pointer-events: none; cursor: default;}\r\n    u + .st-email-body a {color: inherit; text-decoration: none; font-size: inherit; font-family: inherit; font-weight: inherit; line-height: inherit;}\r\n    \r\n    *[x-apple-data-detectors] {color: inherit !important; text-decoration: none !important; font-size: inherit !important; font-family: inherit !important; font-weight: inherit !important; line-height: inherit !important;}\r\n\r\n    a,a:hover,a:link,a:visited {\r\n        text-decoration:none !important;\r\n        outline: none;\r\n    }\r\n\r\n    p {\r\n        margin: 0;\r\n        padding: 0;\r\n    }\r\n\r\n    \r\n    .st-hide-desktop {\r\n        display:none;\r\n        font-size:0;\r\n        height:0;\r\n        min-height:0;\r\n        max-height:0;\r\n        line-height:0;\r\n        mso-hide:all;\r\n    }\r\n\r\n    .st-gmail-fix { display: none !important; }\r\n\r\n    \r\n\r\n\r\n@media screen and (max-width: 480px) {\r\n            \r\n                            .st-col,.st-mobile-full-width,.st-module-wrapper-table,.st-wrapper,.st-wrapper-table{width:100%!important}.st-col{padding:0!important}.st-resize{width:100%!important}.st-mobile-width-constraint,.st-resize{display:block!important;height:auto!important}.st-mobile-width-constraint{max-width:100%!important}.st-equal-height,.st-height-auto{height:auto!important}.st-hide-desktop{display:table-row!important}.st-hide-mobile{display:none!important}.st-mobile-inline{display:inline!important}.show-img-mobile{display:table-row!important;width:100%!important;float:none;overflow:visible!important;height:auto!important}\r\n                .st-dynamic-689-4 { background-image:none!important; }                \r\n                .st-wrapper-table{\r\n                    width: 100%!important;\r\n                    max-width: 480px!important;\r\n                    margin: 0 auto;\r\n                }\r\n                    }\r\n                    #MessageViewBody .st-module-wrapper-table  {margin-top:-1px}\r\n            @media (max-width:511px) and (min-width:481px) {.st-module-wrapper-table {margin-top:-1px !important;}}\r\n            div > u + .body .st-module-wrapper-table {margin-top:0px !important}\r\n            \r\n\r\n    \r\n    ul, ol {margin-left:15px; padding-left:0px}\r\n    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n    \r\n.aligned-bullets ul{list-style-position: outside!important; padding-left:20px!important; padding-top:12px !important;}\r\n.aligned-bullets ol{list-style-position: outside!important; padding-left:20px!important; padding-top:12px !important;}\r\n.border-radius {border-radius: 8px;}\r\n.border-radius-bs {border-bottom-left-radius:8px!important; border-bottom-right-radius:8px!important;}\r\n.border-radius-bs img{border-bottom-left-radius:8px!important; border-bottom-right-radius:8px!important;}\r\n.border-radius-ts {border-top-left-radius:8px!important; border-top-right-radius:8px!important;}\r\n.border-radius-ts img{border-top-left-radius:8px!important; border-top-right-radius:8px!important;}\r\n.button td{-webkit-border-radius: 50px!important; -moz-border-radius: 50px!important; border-radius: 50px!important; overflow: hidden!important; }\r\n.minw-48 img{min-width:48px!important;}\r\n.di-fix {mso-padding-top-alt:18pt!important;}\r\n.bullets-pb-12 ul li {padding-bottom:12px!important;}\r\n.bullets-pb-12 ol li {padding-bottom:12px!important;}\r\n@media all and (max-width: 480px) {\r\n\r\n.mob-pb-0{padding-bottom:0px!important;}\r\n.mob-ps-0{padding-right:0px!important;padding-left:0px!important;}\r\n.mob-ps-50{padding-right:50px!important;padding-left:50px!important;} \r\n.center-element td{margin: 0 auto!important; text-align:center!important;}\r\n.center-element {text-align:center!important;} \r\n.center-element table{margin: 0 auto!important;} \r\n.center-element p{text-align:center!important;} \r\n.center-element span{text-align:center!important;}\r\n.center-element img{margin: 0 auto!important;}\r\n.mob-w-52{width:52%!important;min-width:52%!important;max-width:52%!important;}\r\n.mob-w-52{font-size:12px!important;}\r\n.mob-w-52 p{font-size:12px!important;}\r\n.mob-w-52 p span{font-size:12px!important;}\r\n.mob-w-22{width:22%!important;min-width:22%!important;max-width:22%!important;}\r\n.mob-w-2{width:2%!important;min-width:2%!important;max-width:2%!important;}\r\n.mob-fs-13{font-size:13px!important;}\r\n.mob-fs-13 p{font-size:13px!important;}\r\n.mob-fs-13 p span{font-size:13px!important;}\r\n  \r\n.column50a p {text-align: left; font-size: 18px; line-height: 1.5em; color: #000000; font-family: Helvetica Neue, Arial, sans-serif; padding: 20px 20px 15px 20px;} \r\n.padlr0m td {width: 0; padding: 0 5px;}\r\n  \r\n\r\n }\r\n\r\n\r\n	\r\n	\r\n					\r\n		\r\n		\r\n												\r\n						\r\n						Not a doctor, but...\r\n																&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &nbsp;\r\n														\r\n						\r\n  \r\n    \r\n      \r\n        \r\n          \r\n            \r\n              \r\n                \r\n                  \r\n                    \r\n                      \r\n                    \r\n                      \r\n                        \r\n                          \r\n\r\n                            \r\n                            \r\n                            \r\n\r\n                            \r\n                            \r\n                              \r\n                            \r\n                            \r\n\r\n                          \r\n                        \r\n                      \r\n                    \r\n                    \r\n                \r\n              \r\n            \r\n          \r\n        \r\n      \r\n    \r\n  \r\n\r\n\r\n\r\n\r\n  \r\n    \r\n      \r\n        \r\n          \r\n            \r\n              \r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            You caught our attention.\r\n                          \r\n                        \r\n                        \r\n                          \r\n                            Based on your profile, we think you & your organization would love LinkedIn Learning. For this reason, we wanted to offer you a chance to speak with one of our Learning Consultants about your organization\'s learning objectives & how we can help.\r\n                            &zwnj;\r\n                            Otherwise, many members with similar backgrounds also find our enterprise learning resource center useful. It contains valuable information on upskilling, leadership training, internal mobility, and everything in between. Feel free to take a look, or get in touch using the below link.\r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n              \r\n            \r\n            \r\n              \r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            \r\n                            \r\n                              \r\n                                  Get in touch \r\n                              \r\n                             \r\n                            \r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n              \r\n            \r\n          \r\n        \r\n      \r\n    \r\n  \r\n\r\n\r\n  \r\n    \r\n      \r\n        \r\n          \r\n            \r\n              \r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            Best of luck!\r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n              \r\n            \r\n            \r\n              \r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            LinkedIn Learning\r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n              \r\n            \r\n          \r\n        \r\n      \r\n    \r\n  \r\n\r\n\r\n  \r\n    \r\n      \r\n        \r\n          \r\n            \r\n              \r\n                \r\n                  \r\n                    \r\n                  \r\n                    \r\n\r\n\r\nFooter Mercado English\r\n\r\n\r\n                        \r\n\r\n                            \r\n                            \r\n                                \r\n                                    This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\n                                    Learn why we included&nbsp;this.\r\n                                    This is an occasional email to help you get the most out&nbsp;of&nbsp;LinkedIn.\r\n                                    \r\n                                    Unsubscribe&nbsp;&nbsp;&#183;&nbsp;&nbsp;Help\r\n                                \r\n                            \r\n                            \r\n\r\n                            \r\n                            \r\n                                \r\n                            \r\n                            \r\n\r\n                            \r\n                            \r\n                                &#169; 2025, LinkedIn Corporation. All rights reserved. LinkedIn Corporation, 1000 West Maude Ave., Sunnyvale, CA 94085. LinkedIn and the LinkedIn logo are registered trademarks of&nbsp;LinkedIn.\r\n                            \r\n                            \r\n\r\n                        \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n                    \r\n                  \r\n                  \r\n              \r\n            \r\n          \r\n        \r\n      \r\n    \r\n  \r\n\r\n\r\n\r\n\r\n\r\n  \r\n    &nbsp;\r\n  \r\n												\r\n			\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-09-03 19:02:44','2025-12-09 19:28:05','2025-12-09 19:28:05','2025-12-09 19:28:05',NULL,NULL,NULL),
(678,4,'<calendar-4407bd41-1a13-43b1-9051-6d8f6925a3c7@google.com>',NULL,NULL,'Canceled event: HR Intro:  Rick/Leslie @ Thu Sep 4, 2025 2pm - 3pm (UTC) (rick@mavrix.one)','leslie@lithiumbatterycompany.com','Leslie Staron','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v144/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v118/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventCancelled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"_8kok2chg8gok8b9k8cs48b9k6t336b9o8krk6b9o8osjidpg6kp3gcpk8c\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">HR Intro:  Rick/Leslie</span><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250904T140000Z\"></time><time itemprop=\"endDate\" datetime=\"20250904T150000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"background-color: #fce8e6;color: #2d0c0c;padding: 12px 32px; border-radius: 8px;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px;text-align: left;\" class=\"info-bar-inner\"><span style=\"font-weight: 700;\">This event has been canceled.</span></td></tr></tbody></table><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"12\" style=\"height:12px;\"><![endif]--><div style=\"height:12px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><div class=\"\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span>Link in Signal Chat</span><meta itemprop=\"description\" content=\"Link in Signal Chat\"/></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250904T140000Z\"></time><time itemprop=\"endDate\" datetime=\"20250904T150000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Thursday Sep 4, 2025 ⋅ 2pm – 3pm (Coordinated Universal Time)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:leslie@lithiumbatterycompany.com\">Leslie Staron</a></span><meta itemprop=\"email\" content=\"leslie@lithiumbatterycompany.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Leslie Staron\"/><meta itemprop=\"email\" content=\"leslie@lithiumbatterycompany.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">Rick</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','This event has been canceled.\r\n\r\nHR Intro:  Rick/Leslie\r\nThursday Sep 4, 2025 ⋅ 2pm – 3pm\r\nCoordinated Universal Time\r\n\r\n\r\n\r\nLink in Signal Chat\r\n\r\nOrganizer\r\nLeslie Staron\r\nleslie@lithiumbatterycompany.com\r\n\r\nGuests\r\nLeslie Staron - organizer\r\nRick\r\n\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-09-04 13:51:26','2025-12-09 19:28:05','2025-12-09 19:28:05','2025-12-09 19:28:05',NULL,NULL,NULL),
(679,4,'<01000199154a42f3-3fc4bf31-fff8-42ae-8f58-89535a1fdcc3-000000@email.amazonses.com>',NULL,NULL,'Claim your free Business Prime Duo plan','no-reply@business.amazon.com','Amazon Business','<!doctype html>\r\n<html lang=\"en-US\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\">\r\n <head>\r\n  <title>Claim your free Business Prime Duo plan</title><!--[if !mso]><!-- -->\r\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><!--<![endif]-->\r\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\r\n  <style type=\"text/css\">#outlook a { padding:0; }           body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block;margin:13px 0; }</style><!--[if mso]>                    <xml>                      <o:OfficeDocumentSettings xmlns:o=\"urn:schemas-microsoft-com:office:office\">                    <o:AllowPNG/>                          <o:PixelsPerInch>96</o:PixelsPerInch>                      </o:OfficeDocumentSettings>                   <w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\">               <w:DontUseAdvancedTypographyReadingMail/>             </w:WordDocument>                  </xml>                        <style type=\"text/css\">             table { border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt; }             .mj-outlook-group-fix { width:100% !important; }           </style>                  <![endif]--><!--[if !mso]><!-->\r\n  <link href=\"https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <link href=\"https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <style type=\"text/css\">@import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);</style><!--<![endif]-->\r\n  <style type=\"text/css\">@media only screen and (min-width:641px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-20 { width:20% !important; max-width: 20%; } .mj-column-per-80 { width:80% !important; max-width: 80%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }</style>\r\n  <style type=\"text/css\">.links-232F3E-underline-bold a { color: #232F3E; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .mso-button-dark-mode a {background: transparent !important;} .links-161D26-bold a { color: #161D26; text-decoration: none; font-weight: bold; } .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .links-161D26-underline a { color: #161D26; text-decoration: underline; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:641px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-165px { max-width: 165px !important} .padding-32px-40px-20px-40px { padding: 32px 40px 20px 40px !important} .font-size-36px { font-size: 36px !important} .padding-0px-40px-24px-40px { padding: 0px 40px 24px 40px !important} .padding-12px-40px-12px-40px { padding: 12px 40px 12px 40px !important} .padding-0px-40px-20px-40px { padding: 0px 40px 20px 40px !important} .padding-0px-20px-0px-20px { padding: 0px 20px 0px 20px !important} .font-size-18px { font-size: 18px !important} .padding-20px-40px-0px-40px { padding: 20px 40px 0px 40px !important} .padding-24px-40px-24px-40px { padding: 24px 40px 24px 40px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }</style>\r\n  <style type=\"text/css\">p{margin: 0 0;}ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 641px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}</style><!--[if mso]>             <style>                 .hide-on-mobile {display:block !important}             </style>         <![endif]--><!--[if mso]>                 <style>                              .mso-font-size-36px { font-size: 36px !important; } .mso-font-size-18px { font-size: 18px !important; }                 </style>             <![endif]-->\r\n  <style>[class~=\"x_body\"] { width: 99.9% }</style>\r\n </head>\r\n <body style=\"word-spacing:normal;background-color:#FFFFFF;\" class=\"body\" id=\"body\">\r\n  <div>\r\n   <p><img alt=\"\" src=\"http://elinks.business.amazon.com/CI0/01000199154a42f3-3fc4bf31-fff8-42ae-8f58-89535a1fdcc3-000000/zobM6--S9aAZjOWgvfJGHNKiH3ovclsMsOuHk-C0tno=421\" style=\"display: none; width: 1px; height: 1px;\">\r\n</p>\r\n  </div><!--[if !mso 9]><!-->\r\n  <div id=\"emailPreHeader\" style=\"display: none;\">\r\n   Free Duo for Prime members who buy for business\r\n  </div>\r\n  <div style=\"display: none;\">\r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  </div><!--<![endif]-->\r\n  <div style=\"background-color:#FFFFFF;background-position:center center;background-size:auto;background-repeat:repeat;\" id=\"main\">\r\n   <!--[if mso]>\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><![endif]--><!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:16px 16px 14px 16px;text-align:center;vertical-align:top;mso-padding-alt:14px 0px 14px 40px;\" class=\"block-grid padding-14px-0px-14px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:600px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n             <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:middle;width:300px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"padding-0px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 0px 0px;word-break:break-word;mso-padding-alt:0px 0px 0px 0px;text-align:left;\">\r\n                  <div style=\"margin:0 auto 0 0;\" class=\"max-width-165px\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%3Fref_=b2b_e_life_bp_us_f90d_kronos_e2_202502/1/01000199154a42f3-3fc4bf31-fff8-42ae-8f58-89535a1fdcc3-000000/EG6rYWPPZVr1mxpotMls9BrbJJznETAv-jG1pK73BEE=421\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business\" height=\"auto\" width=\"165\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-2color2x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:middle;width:300px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                  <div style=\"line-height:0px;height:0px;mso-line-height-alt:0px;\">\r\n                   &nbsp;\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:32px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:32px 40px 20px 40px;\" class=\"block-grid padding-32px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-232F3E-underline-bold\">\r\n                  <div style=\"font-family:\'Ember Modern Display\', Arial, sans-serif;font-size:28px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:2.688em;color:#161D26;\" class=\"mso-font-size-36px font-size-36px\">\r\n                   <p style=\"margin: 0 0;\">Rick, activate your free Business Prime Duo plan to start enjoying business savings</p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 16px 24px 16px;text-align:center;vertical-align:top;mso-padding-alt:0px 40px 24px 40px;\" class=\"block-grid padding-0px-40px-24px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td valign=\"middle\" class=\"button-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div>\r\n                  <!--[if mso]>\r\n<table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\">\r\n<tr>\r\n<td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_e_life_bp_us_f90d_kronos_e2_202502%26return_to=%2Fbusinessprime%2Fduo/1/01000199154a42f3-3fc4bf31-fff8-42ae-8f58-89535a1fdcc3-000000/lZomhy5jIWWKG-kuEP-N_NbH2quyPCTOMl-8KXgay8A=421\" fillcolor=\"#FFD814\" arcsize=\"58%\" style=\"v-text-anchor:middle;width:146.25pt;height:32.25pt;\" stroke=\"f\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_e_life_bp_us_f90d_kronos_e2_202502%26return_to=%2Fbusinessprime%2Fduo/1/01000199154a42f3-3fc4bf31-fff8-42ae-8f58-89535a1fdcc3-000000/lZomhy5jIWWKG-kuEP-N_NbH2quyPCTOMl-8KXgay8A=421\" style=\"display: inline-block; background: #FFD814; color: #161D26; font-family: \'Amber Ember\', Arial, sans-serif; font-size: 16px; font-weight: normal; line-height: 1.2; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 12px 24px 12px 24px; mso-padding-alt: 0px; border-radius: 25px; mso-border-alt: none; box-sizing: border-box;\" target=\"_blank\" width=\"195\">Claim your free plan </a><!--[if mso]></center></a:textbox></a:roundrect>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                 <div style=\"line-height:20px;height:20px;mso-line-height-alt:20px;\">\r\n                  &nbsp;\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:12px 40px 12px 30px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:570px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n             <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:middle;width:114px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-20 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:20%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\">\r\n                  <div style=\"margin:0 auto;max-width:114px;\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_e_life_bp_us_f90d_kronos_e2_202502%26return_to=%2Fbusinessprime%2Fduo/2/01000199154a42f3-3fc4bf31-fff8-42ae-8f58-89535a1fdcc3-000000/noZzZtfaMyWvkr69ph5X8qS38zLnILrO8YqzVJaSniY=421\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Best of both worlds\" height=\"auto\" width=\"114\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY22/BrandRepository/Illustrations/Prime/BP-Small-Business-Owner.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:middle;width:456px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-80 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:80%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td style=\"border-radius:0px;vertical-align:middle;padding:0px 16px 0px 16px;mso-padding-alt:0px 20px 0px 20px;\" class=\"padding-0px-20px-0px-20px\">\r\n                  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                   <tbody>\r\n                    <tr>\r\n                     <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                      <div class=\"links-161D26-bold\">\r\n                       <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.563em;color:#161D26;\" class=\"mso-font-size-18px font-size-18px\">\r\n                        <p style=\"margin: 0 0;\">Best of both worlds</p>\r\n                       </div>\r\n                      </div></td>\r\n                    </tr>\r\n                    <tr>\r\n                     <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                      <div class=\"links-007185-bold\">\r\n                       <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.375em;color:#161D26;\">\r\n                        <p style=\"margin: 0 0;\">Easily switch between accounts to keep business and personal orders separate.</p>\r\n                       </div>\r\n                      </div></td>\r\n                    </tr>\r\n                   </tbody>\r\n                  </table></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:12px 40px 12px 30px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:570px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n             <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:middle;width:114px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-20 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:20%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\">\r\n                  <div style=\"margin:0 auto;max-width:114px;\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_e_life_bp_us_f90d_kronos_e2_202502%26return_to=%2Fbusinessprime%2Fduo/3/01000199154a42f3-3fc4bf31-fff8-42ae-8f58-89535a1fdcc3-000000/PFhW0Wph5jBvqFY4Df_bGiDGcSz8fAno29HZmY5DO0s=421\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Save time and money\" height=\"auto\" width=\"114\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY22/BrandRepository/Illustrations/Prime/BP_Rebates.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:middle;width:456px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-80 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:80%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td style=\"border-radius:0px;vertical-align:middle;padding:0px 16px 0px 16px;mso-padding-alt:0px 20px 0px 20px;\" class=\"padding-0px-20px-0px-20px\">\r\n                  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                   <tbody>\r\n                    <tr>\r\n                     <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                      <div class=\"links-161D26-bold\">\r\n                       <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.563em;color:#161D26;\" class=\"mso-font-size-18px font-size-18px\">\r\n                        <p style=\"margin: 0 0;\">Save time and money</p>\r\n                       </div>\r\n                      </div></td>\r\n                    </tr>\r\n                    <tr>\r\n                     <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                      <div class=\"links-007185-bold\">\r\n                       <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.375em;color:#161D26;\">\r\n                        <p style=\"margin: 0 0;\">Make tax time easier now that you\'ve separated your home and work purchases. Reinvest what you\'ve earned in Business Prime Rewards back into your business.</p>\r\n                       </div>\r\n                      </div></td>\r\n                    </tr>\r\n                   </tbody>\r\n                  </table></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:12px 40px 12px 30px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:570px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n             <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:middle;width:114px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-20 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:20%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\">\r\n                  <div style=\"margin:0 auto;max-width:114px;\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_e_life_bp_us_f90d_kronos_e2_202502%26return_to=%2Fbusinessprime%2Fduo/4/01000199154a42f3-3fc4bf31-fff8-42ae-8f58-89535a1fdcc3-000000/DfZih3uLAAfjeyKrOTbwBOk9ZJDM_hy66ZzAhfnYmEI=421\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Convenient shopping and shipping\" height=\"auto\" width=\"114\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY22/BrandRepository/Illustrations/Prime/AmazonBusiness67_-_Business_Prime_Essentials.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:middle;width:456px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-80 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:80%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td style=\"border-radius:0px;vertical-align:middle;padding:0px 16px 0px 16px;mso-padding-alt:0px 20px 0px 20px;\" class=\"padding-0px-20px-0px-20px\">\r\n                  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                   <tbody>\r\n                    <tr>\r\n                     <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                      <div class=\"links-161D26-bold\">\r\n                       <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.563em;color:#161D26;\" class=\"mso-font-size-18px font-size-18px\">\r\n                        <p style=\"margin: 0 0;\">Convenient shopping and shipping</p>\r\n                       </div>\r\n                      </div></td>\r\n                    </tr>\r\n                    <tr>\r\n                     <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                      <div class=\"links-007185-bold\">\r\n                       <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.375em;color:#161D26;\">\r\n                        <p style=\"margin: 0 0;\">The same Amazon shopping experience you expect from your home purchases, but for your business.</p>\r\n                       </div>\r\n                      </div></td>\r\n                    </tr>\r\n                   </tbody>\r\n                  </table></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 0px 40px;\" class=\"block-grid padding-20px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td valign=\"middle\" class=\"button-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div>\r\n                  <!--[if mso]>\r\n<table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\">\r\n<tr>\r\n<td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_e_life_bp_us_f90d_kronos_e2_202502%26return_to=%2Fbusinessprime%2Fduo/2/01000199154a42f3-3fc4bf31-fff8-42ae-8f58-89535a1fdcc3-000000/noZzZtfaMyWvkr69ph5X8qS38zLnILrO8YqzVJaSniY=421\" fillcolor=\"#FFFFFF\" arcsize=\"18%\" style=\"v-text-anchor:middle;width:135.75pt;height:33.75pt;\" strokecolor=\"#D5D9D9\" strokeweight=\"0.75pt\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_e_life_bp_us_f90d_kronos_e2_202502%26return_to=%2Fbusinessprime%2Fduo/5/01000199154a42f3-3fc4bf31-fff8-42ae-8f58-89535a1fdcc3-000000/UQZdAM2pnT8kWgGGwCsBRUdtAVzdQShmyA1hLrzwlIQ=421\" style=\"display: inline-block; background: #FFFFFF; color: #161D26; font-family: \'Amber Ember\', Arial, sans-serif; font-size: 16px; font-weight: normal; line-height: 1.2; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 12px 16px 12px 16px; mso-padding-alt: 0px; border-radius: 8px; border-left: 1px solid #D5D9D9; border-right: 1px solid #D5D9D9; border-top: 1px solid #D5D9D9; border-bottom: 1px solid #D5D9D9; mso-border-alt: none; box-sizing: border-box;\" target=\"_blank\" width=\"181\">Claim your free plan </a><!--[if mso]></center></a:textbox></a:roundrect>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                 <div style=\"line-height:20px;height:20px;mso-line-height-alt:20px;\">\r\n                  &nbsp;\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F7F7F7;background-color:#F7F7F7;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F7F7F7;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><!--[if !mso]><!-- --><p style=\"border-top: solid 1px #D5D9D9; font-size: 1px; margin: 0 auto; width: 100%; text-align: center;\"></p><!--<![endif]--><!--Divider--><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-top:solid 1px #D5D9D9;font-size:1px;margin:0 auto;width:640px;text-align:center;\" role=\"presentation\" width=\"640px\" >\r\n<tr>\r\n<td style=\"height:0;line-height:0;\"> &nbsp; </td>\r\n</tr>\r\n</table><![endif]--></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F5F3EF;background-color:#F5F3EF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F5F3EF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-161D26-underline\">\r\n                  <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#161D26;\">\r\n                   <p style=\"margin: 0 0;\">Link your personal Prime membership to your Amazon Business account to activate this offer. Don\'t have Prime? Try <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_e_life_bp_us_f90d_kronos_e2_202502%26return_to=%2Fbusinessprime/1/01000199154a42f3-3fc4bf31-fff8-42ae-8f58-89535a1fdcc3-000000/8jDCxSsJQfOtb1nm3T7a2e1KIrxtjg2YOUpty6WdiRM=421\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(22, 29, 38); text-decoration: underline;\">Business Prime Essentials</a> free for 30 days.</p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#161D26;background-color:#161D26;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#161D26;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\">\r\n            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n             <tbody>\r\n              <tr>\r\n               <td style=\"line-height:0;font-size:0;direction:rtl;\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:252px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-45 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-align-right social-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\"><!--[if mso | IE]>\r\n<table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" >\r\n<tr>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.facebook.com%2FAmazonBusiness%2F%3Fref_=b2b_e_life_bp_us_f90d_kronos_e2_202502/1/01000199154a42f3-3fc4bf31-fff8-42ae-8f58-89535a1fdcc3-000000/Yx1bDIh1JS4k2dPH52fuzDbnl6JlifhUl-487tR0WXU=421\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Facebook\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Facebook-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Ftwitter.com%2FAmazonBusiness%3Fref_=b2b_e_life_bp_us_f90d_kronos_e2_202502/1/01000199154a42f3-3fc4bf31-fff8-42ae-8f58-89535a1fdcc3-000000/j1jDTyeHKZHzvL3CibBj_cUQ4EH1NjgaX55rti5s5Eg=421\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Twitter\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Twitter-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.linkedin.com%2Fcompany%2Famazon-business%2F%3Fref_=b2b_e_life_bp_us_f90d_kronos_e2_202502/1/01000199154a42f3-3fc4bf31-fff8-42ae-8f58-89535a1fdcc3-000000/4BHysJEBXFq2yjw5_eEkXmiD0qXFt9PPpDQJ1LIa8NE=421\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Linkedin\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-LinkedIn-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"padding-10px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 20px 0px;word-break:break-word;mso-padding-alt:10px 0px 0px 0px;text-align:right;\">\r\n                     <div style=\"margin:0 auto 0 0;max-width:163px;\" class=\"margin-0-0-0-auto\">\r\n                      <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2F%3Fref_=b2b_e_life_bp_us_f90d_kronos_e2_202502%26ref_=b2b_e_life_bp_us_f90d_kronos_e2_202502/1/01000199154a42f3-3fc4bf31-fff8-42ae-8f58-89535a1fdcc3-000000/DK1bB5NPurgHPes0elGWo4cU9crJCb1QOjpog60kW8g=421\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business logo\" height=\"auto\" width=\"163\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-white2x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:308px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-55 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0 0;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Fen%2Fcontact-us%3Fref_=b2b_e_life_bp_us_f90d_kronos_e2_202502/1/01000199154a42f3-3fc4bf31-fff8-42ae-8f58-89535a1fdcc3-000000/UpngIG4N8dojA5eJYbvZT7cDHwNqlMcD8li3_Ng2xn0=421\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">Contact us</a> | <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fab%2Fmanage%2Faccount%2F%3Fref_=b2b_e_life_bp_us_f90d_kronos_e2_202502/1/01000199154a42f3-3fc4bf31-fff8-42ae-8f58-89535a1fdcc3-000000/c0kVD3o9CGqtjCPYyEOOkb_PAq8dqu_b1zynXx9JH0E=421\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">Manage account</a></p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0 0;\">If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Femail-preferences%2Fep%2F1f%2B3jylFi7fPPHHJXtj7tkHlxKLj2Cr5X0HHQwd1A5OFQSW1%2BWesnBhCrA==%2F3401652289%2F*iIwSBXqObOe0PiF%2B4%2B%2BnBWSeEpVTBwMxKXto%2B9ANa858Mlv4FQ0p9dIN%2BTvTsODzeSEj*fFGmLe4z8txMsYflO1WvdeGcFtg5EhZE745meki1Lr401dA1tDGwpdXFpd4LL1VLaJpSMzVhR*7PqXyXCBpJ8wPGyBjFRGTPyZXwHYIPts4nSt86NPwkYqnwU7cR6JHHaw0nKw2B4MUEmH0969FgAg6rBw6GGmuitTf*mYIAaqtdWxwWvBeoqb4GK*fgY1IyNA2d18*k4ZCPUid7m7hMrP3eQCoaxObDJRUc6*B1GdrvRqjC5qa%2BVR8p3JO65dTrsa8GcstwVQBWBIhM6Im9oxWCakiP9ix0iw3NqQ23QQGR8=%2FcMje3hoq2UDis*Ns%2B9HP%2BxcG0ScY3*QcKD5T9cgIaKjQ%3Fref_=b2b_e_life_bp_us_f90d_kronos_e2_202502/1/01000199154a42f3-3fc4bf31-fff8-42ae-8f58-89535a1fdcc3-000000/L1GJ1eIhNNd7Z0z7iaRWppN7kw0B__exsbkHdbggywY=421\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">email preferences</a>.</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 30px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0 0;\">© 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210</p>\r\n                       <p style=\"margin: 0 0;\">&nbsp;</p>\r\n                       <p style=\"margin: 0 0;\">Reference: 3401652289</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n              </tr>\r\n             </tbody>\r\n            </table></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--><!--[if mso]>\r\n</table><![endif]-->\r\n  </div>\r\n </body>\r\n</html>\r\n','\r\n\r\n \r\n  Claim your free Business Prime Duo plan\r\n  \r\n  \r\n  \r\n  #outlook a { padding:0; }           body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block;margin:13px 0; }\r\n  \r\n  \r\n  @import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);\r\n  @media only screen and (min-width:641px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-20 { width:20% !important; max-width: 20%; } .mj-column-per-80 { width:80% !important; max-width: 80%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }\r\n  .links-232F3E-underline-bold a { color: #232F3E; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .mso-button-dark-mode a {background: transparent !important;} .links-161D26-bold a { color: #161D26; text-decoration: none; font-weight: bold; } .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .links-161D26-underline a { color: #161D26; text-decoration: underline; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:641px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-165px { max-width: 165px !important} .padding-32px-40px-20px-40px { padding: 32px 40px 20px 40px !important} .font-size-36px { font-size: 36px !important} .padding-0px-40px-24px-40px { padding: 0px 40px 24px 40px !important} .padding-12px-40px-12px-40px { padding: 12px 40px 12px 40px !important} .padding-0px-40px-20px-40px { padding: 0px 40px 20px 40px !important} .padding-0px-20px-0px-20px { padding: 0px 20px 0px 20px !important} .font-size-18px { font-size: 18px !important} .padding-20px-40px-0px-40px { padding: 20px 40px 0px 40px !important} .padding-24px-40px-24px-40px { padding: 24px 40px 24px 40px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }\r\n  p{margin: 0 0;}ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 641px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}\r\n  [class~=\"x_body\"] { width: 99.9% }\r\n \r\n \r\n  \r\n   \r\n\r\n  \r\n  \r\n   Free Duo for Prime members who buy for business\r\n  \r\n  \r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  \r\n  \r\n   \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   &nbsp;\r\n                  \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   Rick, activate your free Business Prime Duo plan to start enjoying business savings\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                   Claim your free plan \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  &nbsp;\r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        Best of both worlds\r\n                       \r\n                      \r\n                    \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        Easily switch between accounts to keep business and personal orders separate.\r\n                       \r\n                      \r\n                    \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        Save time and money\r\n                       \r\n                      \r\n                    \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        Make tax time easier now that you\'ve separated your home and work purchases. Reinvest what you\'ve earned in Business Prime Rewards back into your business.\r\n                       \r\n                      \r\n                    \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        Convenient shopping and shipping\r\n                       \r\n                      \r\n                    \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        The same Amazon shopping experience you expect from your home purchases, but for your business.\r\n                       \r\n                      \r\n                    \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                   Claim your free plan \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  &nbsp;\r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   Link your personal Prime membership to your Amazon Business account to activate this offer. Don\'t have Prime? Try Business Prime Essentials free for 30 days.\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       Contact us | Manage account\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your email preferences.\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       © 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210\r\n                       &nbsp;\r\n                       Reference: 3401652289\r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n   \r\n  \r\n \r\n\r\n',0,0,0,0,0,0,'2025-09-04 15:13:32','2025-12-09 19:28:05','2025-12-09 19:28:05','2025-12-09 19:28:05',NULL,NULL,NULL),
(680,4,'<etPan.68b9dc68.422cfae5.2839@mavrix.one>',NULL,NULL,'Fwd: Re: NDNCA','rick@mavrix.one','Rick','(No content)','(No content)',0,0,0,0,0,0,'2025-09-04 18:37:17','2025-12-09 19:28:06','2025-12-09 19:28:06','2025-12-09 19:28:06',NULL,NULL,NULL),
(681,4,'<Lwx2nFHx3_qpsLuyuixSnN0pYaMP8WCex5cS8i-XouXZh5Gb3dSQIvOY1AcVFUHA5vAloDB2zuwKkaTJUwml2P46aLz-lZVkwgkVVQ7gHms=@s3global.us>',NULL,NULL,'Re: Fwd: Re: NDNCA','CT@s3global.us','CT','--b2=_em5Znk74eLyrMaPU9i96iUOkWY6kCCPQQVhXTdNBo\r\nContent-Type: text/html; charset=utf-8\r\nContent-Transfer-Encoding: base64\r\n\r\nPHAgZGlyPSJsdHIiPkFDSyB3aWxsIHJldmlldyAvIHJldmlzZSBhc2FwLjwvcD4NCjxwIGRpcj0i\r\nbHRyIj5DYXJzb24gSi4gVHVja2VyLCBFc3EuLCBKRCwgTVNFTEdlbmVyYWwgQ291bnNlbDxicj4N\r\nClMzIEdsb2JhbCwgTExDPGJyPg0KVVMgKzE3MzQ4ODc5MjYxPGJyPg0KVUsgKzQ0NzQ4NDY3ODU1\r\nOTxicj4NCkVVICszMzY0ODUwNTg2NzwvcD4NCjxwIGRpcj0ibHRyIj5UaGlzIG1lc3NhZ2UgYW5k\r\nIGFueSBhdHRhY2htZW50cyBtYXkgY29udGFpbiBjb25maWRlbnRpYWwgaW5mb3JtYXRpb24gd2hp\r\nY2ggaXMgaW50ZW5kZWQgb25seSBmb3IgdGhlIHVzZSBvZiB0aGUgYWRkcmVzc2VlKHMpLiYjMTYw\r\nOyBJdCBtYXkgYWxzbyBjb250YWluIGluZm9ybWF0aW9uIHdoaWNoIGlzIHByb3RlY3RlZCBieSBh\r\ndHRvcm5leS9jbGllbnQgcHJpdmlsZWdlIG9yIHRoZSB3b3JrLXByb2R1Y3QgZG9jdHJpbmUsIGFt\r\nb25nIG90aGVyIGNvbmZpZGVudGlhbGl0eSBwcmluY2lwbGVzIGFuZCBsZWdhbCBwcml2aWxlZ2Vz\r\nLiYjMTYwO0NvcHlpbmcsIGZvcndhcmRpbmcsIG9yIGRpc3RyaWJ1dGluZyBvZiB0aGlzIGNvbW11\r\nbmljYXRpb24gYnkgb3IgdG8gcGVyc29ucyBvdGhlciB0aGFuIHRoZSBhZGRyZXNzZWUocykgaXMg\r\ncHJvaGliaXRlZC4mIzE2MDsmIzE2MDtJZiB5b3UgaGF2ZSByZWNlaXZlZCB0aGlzIGNvbW11bmlj\r\nYXRpb24gaW4gZXJyb3IsIGRvIG5vdCBmb3J3YXJkIGl0IG9yIHVzZSBpdCBpbiBhbnkgd2F5LiAm\r\nIzE2MDtQbGVhc2Ugbm90aWZ5IHVzIGltbWVkaWF0ZWx5IG9mIHRoZSBlcnJvciBhbmQgcHJvbXB0\r\nbHkgZGVsZXRlIGFuZC9vciBkZXN0cm95IGFsbCBlbGVjdHJvbmljIGFuZC9vciBwYXBlciB2ZXJz\r\naW9ucyBvZiB0aGlzIGNvbW11bmljYXRpb24gYW5kIGFueSBhdHRhY2htZW50cy4mIzE2MDsgVGhh\r\nbmsgeW91IGZvciB5b3VyIGNvb3BlcmF0aW9uIGFuZCB3ZSBhcG9sb2dpemUgZm9yIGFueSBpbmNv\r\nbnZlbmllbmNlLjwvcD4NCjxwIGRpcj0ibHRyIj5TZW50IGZyb20gUHJvdG9uIE1haWwgQW5kcm9p\r\nZDwvcD4NCjxkaXYgY2xhc3M9InByb3Rvbm1haWxfcXVvdGUiPjxicj48YnI+LS0tLS0tLS0gT3Jp\r\nZ2luYWwgTWVzc2FnZSAtLS0tLS0tLTxicj5PbiA5LzQvMjUgMTk6NTksIFJpY2sgPHJpY2tAbWF2\r\ncml4Lm9uZT4gd3JvdGU6PGJyPjxibG9ja3F1b3RlIGNsYXNzPSJwcm90b25tYWlsX3F1b3RlIj48\r\nZGl2IHN0eWxlPSJmb250LWZhbWlseTpIZWx2ZXRpY2EsQXJpYWw7Zm9udC1zaXplOjEzcHg7ICI+\r\nPGJyPjwvZGl2PjxkaXYgc3R5bGU9ImZvbnQtZmFtaWx5OkhlbHZldGljYSxBcmlhbDtmb250LXNp\r\nemU6MTNweDsgIj5IaSBDYXJzb24sPC9kaXY+PGRpdiBzdHlsZT0iZm9udC1mYW1pbHk6SGVsdmV0\r\naWNhLEFyaWFsO2ZvbnQtc2l6ZToxM3B4OyAiPkp1c3QgY2hhdHRlZCB3aXRoIENHLi4uPC9kaXY+\r\nPGRpdiBzdHlsZT0iZm9udC1mYW1pbHk6SGVsdmV0aWNhLEFyaWFsO2ZvbnQtc2l6ZToxM3B4OyAi\r\nPkknZCBsaWtlIHRvIHJlLXZpc2l0IHRoaXMuIFBsZWFzZSBjb25maXJtIHJlY2VpcHQuPC9kaXY+\r\nPGRpdiBzdHlsZT0iZm9udC1mYW1pbHk6SGVsdmV0aWNhLEFyaWFsO2ZvbnQtc2l6ZToxM3B4OyAi\r\nPkNhbiBJIG9mZmVyIGEgZmV3IGl0ZW1zIGZvciB5b3VyIGNvbnNpZGVyYXRpb246PC9kaXY+PGRp\r\ndiBzdHlsZT0iZm9udC1mYW1pbHk6SGVsdmV0aWNhLEFyaWFsO2ZvbnQtc2l6ZToxM3B4OyAiPjxi\r\ncj48L2Rpdj48ZGl2IHN0eWxlPSJmb250LWZhbWlseTpIZWx2ZXRpY2EsQXJpYWw7Zm9udC1zaXpl\r\nOjEzcHg7ICI+MS4gVW5kZXIgQ29uZmlkZW50aWFsLCZuYnNwOzxzcGFuIHN0eWxlPSJmb250LXNp\r\nemU6IHNtYWxsOyI+YWRkIGV4Y2x1c2lvbnM6Jm5ic3A7PC9zcGFuPjwvZGl2PjxkaXYgc3R5bGU9\r\nIm1hcmdpbjogMHB4OyI+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiBIZWx2ZXRpY2EsIEFyaWFs\r\nOyBmb250LXNpemU6IHNtYWxsOyI+IkluZm9ybWF0aW9uIHRoYXQgaXMgYWxyZWFkeSBwdWJsaWMs\r\nIGluZGVwZW5kZW50bHkgZGV2ZWxvcGVkLCBvciByZWNlaXZlZCBmcm9tIHRoaXJkIHBhcnRpZXMg\r\nd2l0aG91dCBjb25maWRlbnRpYWxpdHkgcmVzdHJpY3Rpb25zPC9zcGFuPjxmb250IHNpemU9IjIi\r\nPuKAnTwvZm9udD48L2Rpdj48ZGl2IHN0eWxlPSJmb250LWZhbWlseTpIZWx2ZXRpY2EsQXJpYWw7\r\nZm9udC1zaXplOjEzcHg7ICI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTogc21hbGw7Ij48YnI+PC9z\r\ncGFuPjwvZGl2PjxkaXYgc3R5bGU9Im1hcmdpbjogMHB4OyI+PGRpdiBzdHlsZT0ibWFyZ2luOiAw\r\ncHg7Ij48Zm9udCBzaXplPSIyIj4yLiBOYXJyb3cgdGhlIHNjb3BlOiBSZW1vdmUgInJlYXNvbmFi\r\nbHkgZXhwZWN0ZWQgdG8gYmUgdHJlYXRlZCBhcyBjb25maWRlbnRpYWwiIC0gd2Uga25vdyB0aGF0\r\n4oCZcyBqdXN0IGxhd3llciBzcGVhayBmb3IgIndlIGNhbiBjbGFpbSBhbnl0aGluZ+KAnTwvZm9u\r\ndD48L2Rpdj48ZGl2IHN0eWxlPSJtYXJnaW46IDBweDsiPjxmb250IHNpemU9IjIiPjxicj48L2Zv\r\nbnQ+PC9kaXY+PGRpdiBzdHlsZT0ibWFyZ2luOiAwcHg7Ij48Zm9udCBzaXplPSIyIj4zLiBNYXli\r\nZSBhZGQgc29tZSBzcGVjaWZpYyBleGFtcGxlcyB0byBmb2N1cyBvbiB0cnVseSBzZW5zaXRpdmUg\r\ndGhpbmdzIGxpa2UgcHJvcHJpZXRhcnkgdGVjaCwgY2xpZW50IGxpc3RzLCBhbmQgZmluYW5jaWFs\r\nIGRhdGEuPC9mb250PjwvZGl2PjxkaXYgc3R5bGU9Im1hcmdpbjogMHB4OyI+PGZvbnQgc2l6ZT0i\r\nMiI+PGJyPjwvZm9udD48L2Rpdj48ZGl2IHN0eWxlPSJtYXJnaW46IDBweDsiPjxmb250IHNpemU9\r\nIjIiPjQuJm5ic3A7Q29uZmlkZW50aWFsaXR5OiBSZWR1Y2UgdG8gMyB5ZWFycyBtYXhpbXVtPC9m\r\nb250PjwvZGl2PjxkaXYgc3R5bGU9Im1hcmdpbjogMHB4OyI+PGZvbnQgc2l6ZT0iMiI+PGJyPjwv\r\nZm9udD48L2Rpdj48ZGl2IHN0eWxlPSJtYXJnaW46IDBweDsiPjxmb250IHNpemU9IjIiPjUuIE5v\r\nbi1jaXJjdW12ZW50aW9uOiBSZWR1Y2UgdG8gMiB5ZWFycyBtYXhpbXVtPC9mb250PjwvZGl2Pjxk\r\naXYgc3R5bGU9Im1hcmdpbjogMHB4OyI+PGZvbnQgc2l6ZT0iMiI+PGJyPjwvZm9udD48L2Rpdj48\r\nZGl2IHN0eWxlPSJtYXJnaW46IDBweDsiPjxmb250IHNpemU9IjIiPjYuIFRyYWRlIHNlY3JldHM6\r\nIEFkZCAib3IgdW50aWwgZGlzY2xvc2VkIHRocm91Z2ggbm8gYnJlYWNoIGJ5IHJlY2VpdmluZyBw\r\nYXJ0eeKAnTwvZm9udD48L2Rpdj48ZGl2IHN0eWxlPSJtYXJnaW46IDBweDsiPjxmb250IHNpemU9\r\nIjIiPjxicj48L2ZvbnQ+PC9kaXY+PGRpdiBzdHlsZT0ibWFyZ2luOiAwcHg7Ij48Zm9udCBzaXpl\r\nPSIyIj43LiZuYnNwO0FkZCBzdW5zZXQgY2xhdXNlOiBOb24tY2lyY3VtdmVudGlvbiBvbmx5IGFw\r\ncGxpZXMgZm9yIGFjdGl2ZSBwcm9qZWN0cywgbm90IGZvcmV2ZXIuPC9mb250PjwvZGl2PjxkaXYg\r\nc3R5bGU9Im1hcmdpbjogMHB4OyI+PGZvbnQgc2l6ZT0iMiI+PGJyPjwvZm9udD48L2Rpdj48ZGl2\r\nIHN0eWxlPSJtYXJnaW46IDBweDsiPjxmb250IHNpemU9IjIiPjguIENhcnZlIG91dCBleGNlcHRp\r\nb25zOiBJZiB0aGUgcmVsYXRpb25zaGlwIG5hdHVyYWxseSBldm9sdmVzIGJleW9uZCB0aGUgb3Jp\r\nZ2luYWwgc2NvcGU8L2ZvbnQ+PC9kaXY+PGRpdiBzdHlsZT0ibWFyZ2luOiAwcHg7Ij48Zm9udCBz\r\naXplPSIyIj48YnI+PC9mb250PjwvZGl2PjxkaXYgc3R5bGU9Im1hcmdpbjogMHB4OyI+PGZvbnQg\r\nc2l6ZT0iMiI+OS4gRGVmaW5lICJBY3F1aXJlZCBDbGllbnRzIjogTWFrZSBpdCBzcGVjaWZpYyB0\r\nbyBjbGllbnRzIGludHJvZHVjZWQgRk9SIFRISVMgc3BlY2lmaWMgcHJvamVjdC48L2ZvbnQ+PC9k\r\naXY+PGRpdiBzdHlsZT0ibWFyZ2luOiAwcHg7Ij48Zm9udCBzaXplPSIyIj48YnI+PC9mb250Pjwv\r\nZGl2PjxkaXYgc3R5bGU9Im1hcmdpbjogMHB4OyI+PGZvbnQgc2l6ZT0iMiI+MTAuJm5ic3A7Q2Fw\r\nIGRhbWFnZXM6IFNldCBtYXhpbXVtIGxpYWJpbGl0eSAoZS5nLiwgJDUwSyBvciBwcm9qZWN0IHZh\r\nbHVlKTwvZm9udD48L2Rpdj48ZGl2IHN0eWxlPSJtYXJnaW46IDBweDsiPjxmb250IHNpemU9IjIi\r\nPjxicj48L2ZvbnQ+PC9kaXY+PGRpdiBzdHlsZT0ibWFyZ2luOiAwcHg7Ij48Zm9udCBzaXplPSIy\r\nIj4xMS4gUmVtb3ZlICJncm9zcyBlYXJuaW5ncyIgZm9yZmVpdHVyZTogQ2hhbmdlIHRvICJuZXQg\r\ncHJvZml0cyIgb3IgcmVhc29uYWJsZSBwZXJjZW50YWdlPC9mb250PjwvZGl2PjxkaXYgc3R5bGU9\r\nIm1hcmdpbjogMHB4OyI+PGZvbnQgc2l6ZT0iMiI+PGJyPjwvZm9udD48L2Rpdj48ZGl2IHN0eWxl\r\nPSJtYXJnaW46IDBweDsiPjxmb250IHNpemU9IjIiPjEyLiBNdXR1YWwgcGVuYWx0aWVzOiBNYWtl\r\nIHN1cmUgdGhleSBmYWNlIHRoZSBzYW1lIHBlbmFsdGllcyBpZiB0aGV5IGJyZWFjaDwvZm9udD48\r\nL2Rpdj48ZGl2IHN0eWxlPSJtYXJnaW46IDBweDsiPjxmb250IHNpemU9IjIiPjxicj48L2ZvbnQ+\r\nPC9kaXY+PGRpdiBzdHlsZT0ibWFyZ2luOiAwcHg7Ij48Zm9udCBzaXplPSIyIj4xMy4gQWRkIGN1\r\ncmUgcGVyaW9kOiAzMC1kYXkgbm90aWNlIHRvIGN1cmUgYmVmb3JlIHBlbmFsdGllcyBraWNrIGlu\r\nPC9mb250PjwvZGl2PjxkaXYgc3R5bGU9Im1hcmdpbjogMHB4OyI+PGZvbnQgc2l6ZT0iMiI+PGJy\r\nPjwvZm9udD48L2Rpdj48ZGl2IHN0eWxlPSJtYXJnaW46IDBweDsiPjxmb250IHNpemU9IjIiPjE0\r\nLiZuYnNwO011dHVhbCBjb25zZW50IHJlcXVpcmVkIGZvciBhbGwgYXNzaWdubWVudHM8L2ZvbnQ+\r\nPC9kaXY+PGRpdiBzdHlsZT0ibWFyZ2luOiAwcHg7Ij48Zm9udCBzaXplPSIyIj48YnI+PC9mb250\r\nPjwvZGl2PjxkaXYgc3R5bGU9Im1hcmdpbjogMHB4OyI+PGZvbnQgc2l6ZT0iMiI+MTUuIFJpZ2h0\r\nIHRvIHRlcm1pbmF0ZSBpZiBhc3NpZ25lZCB0byBjb21wZXRpdG9yPC9mb250PjwvZGl2PjxkaXYg\r\nc3R5bGU9Im1hcmdpbjogMHB4OyI+PGZvbnQgc2l6ZT0iMiI+PGJyPjwvZm9udD48L2Rpdj48ZGl2\r\nIHN0eWxlPSJtYXJnaW46IDBweDsiPjxmb250IHNpemU9IjIiPjE2LiBOb3RpY2UgcGVyaW9kOiA2\r\nMCBkYXlzIGFkdmFuY2Ugbm90aWNlIG9mIGFueSBhc3NpZ25tZW50PC9mb250PjwvZGl2PjxkaXYg\r\nc3R5bGU9Im1hcmdpbjogMHB4OyI+PGZvbnQgc2l6ZT0iMiI+PGJyPjwvZm9udD48L2Rpdj48ZGl2\r\nIHN0eWxlPSJtYXJnaW46IDBweDsiPjxmb250IHNpemU9IjIiPjE3LiBSZWNpcHJvY2FsIFByb3Rl\r\nY3Rpb248L2ZvbnQ+PC9kaXY+PGRpdiBzdHlsZT0ibWFyZ2luOiAwcHg7Ij48Zm9udCBzaXplPSIy\r\nIj4tIEFMTCBwZW5hbHRpZXMgYXBwbHkgZXF1YWxseSB0byBib3RoIHBhcnRpZXM8L2ZvbnQ+PC9k\r\naXY+PGRpdiBzdHlsZT0ibWFyZ2luOiAwcHg7Ij48Zm9udCBzaXplPSIyIj4tIEFkZCAibW9zdCBm\r\nYXZvcmVkIG5hdGlvbiIgY2xhdXNlIC0gaWYgeW91IGdpdmUgYW55b25lIGJldHRlciB0ZXJtcywg\r\nd2UgZ2V0IHRoZW0gdG9vPC9mb250PjwvZGl2PjxkaXYgc3R5bGU9Im1hcmdpbjogMHB4OyI+PGZv\r\nbnQgc2l6ZT0iMiI+PGJyPjwvZm9udD48L2Rpdj48ZGl2IHN0eWxlPSJtYXJnaW46IDBweDsiPjxm\r\nb250IHNpemU9IjIiPjE4LiBPdXIgVGVjaG5vbG9neSBQcm90ZWN0aW9uPC9mb250PjwvZGl2Pjxk\r\naXYgc3R5bGU9Im1hcmdpbjogMHB4OyI+PGZvbnQgc2l6ZT0iMiI+LSBDYXJ2ZSBvdXQ6IE91ciBl\r\neGlzdGluZyBJUCBhbmQgaW5kZXBlbmRlbnRseSBkZXZlbG9wZWQgdGVjaG5vbG9neTwvZm9udD48\r\nL2Rpdj48ZGl2IHN0eWxlPSJtYXJnaW46IDBweDsiPjxmb250IHNpemU9IjIiPi0gTm8gcmV2ZXJz\r\nZSBlbmdpbmVlcmluZyByZXN0cmljdGlvbnM6IFVubGVzcyBleHBsaWNpdGx5IG1hcmtlZCBjb25m\r\naWRlbnRpYWw8L2ZvbnQ+PC9kaXY+PGRpdiBzdHlsZT0ibWFyZ2luOiAwcHg7Ij48Zm9udCBzaXpl\r\nPSIyIj4tIFJpZ2h0IHRvIGNvbnRpbnVlIGRldmVsb3BtZW50OiBVc2luZyBnZW5lcmFsIGtub3ds\r\nZWRnZSBhbmQgc2tpbGxzPC9mb250PjwvZGl2PjxkaXYgc3R5bGU9Im1hcmdpbjogMHB4OyI+PGZv\r\nbnQgc2l6ZT0iMiI+PGJyPjwvZm9udD48L2Rpdj48ZGl2IHN0eWxlPSJtYXJnaW46IDBweDsiPjxm\r\nb250IHNpemU9IjIiPjE5LiBTb21lIFByYWN0aWNhbCBTYWZlZ3VhcmRzPC9mb250PjwvZGl2Pjxk\r\naXYgc3R5bGU9Im1hcmdpbjogMHB4OyI+PGZvbnQgc2l6ZT0iMiI+LSBEZWZpbmUgIm1hdGVyaWFs\r\nIGJyZWFjaCI6IE5vdCBldmVyeSBtaW5vciB2aW9sYXRpb24gdHJpZ2dlcnMgbnVjbGVhciBwZW5h\r\nbHRpZXM8L2ZvbnQ+PC9kaXY+PGRpdiBzdHlsZT0ibWFyZ2luOiAwcHg7Ij48Zm9udCBzaXplPSIy\r\nIj4tIE1lZGlhdGlvbiBmaXJzdDogQmVmb3JlIGFyYml0cmF0aW9uIG9yIGxpdGlnYXRpb248L2Zv\r\nbnQ+PC9kaXY+PGRpdiBzdHlsZT0ibWFyZ2luOiAwcHg7Ij48Zm9udCBzaXplPSIyIj4tIFN1cnZp\r\ndmFsIGNsYXVzZTogT25seSBlc3NlbnRpYWwgcHJvdmlzaW9ucyBzdXJ2aXZlIHRlcm1pbmF0aW9u\r\nPC9mb250PjwvZGl2PjxkaXYgc3R5bGU9Im1hcmdpbjogMHB4OyI+PGZvbnQgc2l6ZT0iMiI+PGJy\r\nPjwvZm9udD48L2Rpdj48ZGl2IHN0eWxlPSJtYXJnaW46IDBweDsiPjxmb250IHNpemU9IjIiPkxl\r\ndCBtZSBrbm93IGlmIHlvdSBoYXZlIGFueSBxdWVzdGlvbnMuPC9mb250PjwvZGl2PjxkaXYgc3R5\r\nbGU9Im1hcmdpbjogMHB4OyI+PGZvbnQgc2l6ZT0iMiI+SSBsb29rIGZvcndhcmQgdG8geW91ciBy\r\nZXNwb25zZS48L2ZvbnQ+PC9kaXY+PGRpdiBzdHlsZT0ibWFyZ2luOiAwcHg7Ij48Zm9udCBzaXpl\r\nPSIyIj5UaGFua3MhPC9mb250PjwvZGl2PjxkaXYgc3R5bGU9Im1hcmdpbjogMHB4OyI+PGZvbnQg\r\nc2l6ZT0iMiI+UmljazwvZm9udD48L2Rpdj48L2Rpdj4gPGRpdj48YnI+PC9kaXY+PGRpdiBjbGFz\r\ncz0iZ21haWxfc2lnbmF0dXJlIj48YnI+DQoNCjxkaXY+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5\r\nOiBIZWx2ZXRpY2EsIEFyaWFsOyI+UmljayBNaXNsYW4sIFBoRCwmbmJzcDs8L3NwYW4+PGRpdiBz\r\ndHlsZT0iZm9udC1mYW1pbHk6IEhlbHZldGljYSwgQXJpYWw7Ij5Gb3VuZGVyLCBDVE88L2Rpdj48\r\nZGl2IHN0eWxlPSJmb250LWZhbWlseTogSGVsdmV0aWNhLCBBcmlhbDsiPjxkaXY+PGRpdj48aW1n\r\nIGNsYXNzPSJjb21wb3Nlcl9pbnRlcm5hbF9hdHRhY2giIHNyYz0iY2lkOkM2RTM3RDg3LTFGMjYt\r\nNDMyQy1BMDZELTNBOEZBRTMxMjNCQiIgc3R5bGU9Im1heC13aWR0aDogOTklOyI+PGJyPjwvZGl2\r\nPjxkaXY+PGEgaHJlZj0iaHR0cHM6Ly9tYXZyaXgxLmNvbS8iPmh0dHBzOi8vbWF2cml4MS5jb208\r\nL2E+PC9kaXY+PC9kaXY+PGRpdj48YnI+PC9kaXY+PC9kaXY+PC9kaXY+PC9kaXY+IDxicj48cCBj\r\nbGFzcz0iYWlybWFpbF9vbiI+T24gU2VwdGVtYmVyIDQsIDIwMjUgYXQgMjozNzozMuKAr1BNLCBS\r\naWNrICg8YSBocmVmPSJtYWlsdG86cmlja0BtYXZyaXgub25lIj5yaWNrQG1hdnJpeC5vbmU8L2E+\r\nKSB3cm90ZTo8L3A+IDxibG9ja3F1b3RlIHR5cGU9ImNpdGUiIGNsYXNzPSJjbGVhbl9icSI+PHNw\r\nYW4+PGRpdj48ZGl2PjwvZGl2PjxkaXY+DQogICAgPGRpdiBzdHlsZT0iZm9udC1mYW1pbHk6SGVs\r\ndmV0aWNhLEFyaWFsO2ZvbnQtc2l6ZToxM3B4OyAiPjxicj48L2Rpdj4gPGJyPiA8ZGl2IGNsYXNz\r\nPSJnbWFpbF9zaWduYXR1cmUiPg0KDQoNCiAgICA8YnI+DQoNCjxkaXY+PHNwYW4gc3R5bGU9ImZv\r\nbnQtZmFtaWx5OiBIZWx2ZXRpY2EsIEFyaWFsOyI+UmljayBNaXNsYW4sIFBoRCwmbmJzcDs8L3Nw\r\nYW4+PGRpdiBzdHlsZT0iZm9udC1mYW1pbHk6IEhlbHZldGljYSwgQXJpYWw7Ij5Gb3VuZGVyLCBD\r\nVE88L2Rpdj48ZGl2IHN0eWxlPSJmb250LWZhbWlseTogSGVsdmV0aWNhLCBBcmlhbDsiPjxkaXY+\r\nPGRpdj48aW1nIGNsYXNzPSJjb21wb3Nlcl9pbnRlcm5hbF9hdHRhY2giIHNyYz0iY2lkOkYwNTYx\r\nRUM5LTU0NzEtNDFERi04NUU5LTlBMEUxNEJCNTJDNCIgc3R5bGU9Im1heC13aWR0aDogOTklOyI+\r\nPGJyPjwvZGl2PjxkaXY+PGEgaHJlZj0iaHR0cHM6Ly9tYXZyaXgxLmNvbS8iPmh0dHBzOi8vbWF2\r\ncml4MS5jb208L2E+PC9kaXY+PC9kaXY+PGRpdj48YnI+PC9kaXY+PC9kaXY+PC9kaXY+PC9kaXY+\r\nIDxicj48cCBjbGFzcz0iYWlybWFpbF9vbiI+T24gSnVseSAxMCwgMjAyNSBhdCA3OjI5OjM04oCv\r\nQU0sIENUICg8YSBocmVmPSJtYWlsdG86Y3RAczNnbG9iYWwudXMiPmN0QHMzZ2xvYmFsLnVzPC9h\r\nPikgd3JvdGU6PC9wPiA8YmxvY2txdW90ZSB0eXBlPSJjaXRlIiBjbGFzcz0iY2xlYW5fYnEiPjxz\r\ncGFuPjxkaXY+PGRpdj48L2Rpdj48ZGl2PjxkaXYgc3R5bGU9ImZvbnQtZmFtaWx5OiBBcmlhbCwg\r\nc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNHB4OyI+UmljaywmbmJzcDs8L2Rpdj48ZGl2IHN0eWxl\r\nPSJmb250LWZhbWlseTogQXJpYWwsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTRweDsiPjxicj48\r\nL2Rpdj48ZGl2IHN0eWxlPSJmb250LWZhbWlseTogQXJpYWwsIHNhbnMtc2VyaWY7IGZvbnQtc2l6\r\nZTogMTRweDsiPlBsZWFzZSBzZWUgYXR0YWNoZWQuIEkndmUgcHV0IGl0IGludG8gLnBkZiBmb3Jt\r\nYXQgYW5kIHNpZ25lZCBhcyB3ZWxsIGlmIHRoZXJlIGlzIG5vIGZ1cnRoZXIgY2hhbmdlcywgcGxl\r\nYXNlIHNpZ24gYW5kIHJldHVybiB0byBtZSBmb3Igb3VyIHJlY29yZHMuJm5ic3A7PC9kaXY+PGRp\r\ndiBzdHlsZT0iZm9udC1mYW1pbHk6IEFyaWFsLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE0cHg7\r\nIj48YnI+PC9kaXY+PGRpdiBzdHlsZT0iZm9udC1mYW1pbHk6IEFyaWFsLCBzYW5zLXNlcmlmOyBm\r\nb250LXNpemU6IDE0cHg7Ij5UaGFua3MgdmVyeSBtdWNoLjwvZGl2PjxkaXYgc3R5bGU9ImZvbnQt\r\nZmFtaWx5OiBBcmlhbCwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNHB4OyI+PGJyPjwvZGl2Pjxk\r\naXYgc3R5bGU9ImZvbnQtZmFtaWx5OiBBcmlhbCwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNHB4\r\nOyI+Q2Fyc29uPC9kaXY+PGRpdiBzdHlsZT0iZm9udC1mYW1pbHk6IEFyaWFsLCBzYW5zLXNlcmlm\r\nOyBmb250LXNpemU6IDE0cHg7Ij48YnI+PC9kaXY+DQo8ZGl2IHN0eWxlPSJmb250LWZhbWlseTog\r\nQXJpYWwsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTRweDsiIGNsYXNzPSJwcm90b25tYWlsX3Np\r\nZ25hdHVyZV9ibG9jayI+DQogICAgPGRpdiBjbGFzcz0icHJvdG9ubWFpbF9zaWduYXR1cmVfYmxv\r\nY2stdXNlciI+DQogICAgICAgIDxkaXY+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OkFyaWFsLCBz\r\nYW5zLXNlcmlmIj48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6R2VvcmdpYSwgc2VyaWY7Zm9udC1z\r\naXplOjEycHQiPkNhcnNvbiBKLiBUdWNrZXIsIEVzcS4sIEpELCBNU0VMPC9zcGFuPjwvc3Bhbj48\r\nZGl2IHN0eWxlPSJmb250LWZhbWlseTpBcmlhbCwgc2Fucy1zZXJpZiI+PGRpdj48ZGl2IHN0eWxl\r\nPSJiYWNrZ3JvdW5kLWNvbG9yOiByZ2IoMjU1LCAyNTUsIDI1NSk7Ij48c3BhbiBzdHlsZT0iZm9u\r\ndC1mYW1pbHk6R2VvcmdpYSwgc2VyaWY7Zm9udC1zaXplOjEycHQiPkdlbmVyYWwgQ291bnNlbDwv\r\nc3Bhbj48L2Rpdj48ZGl2IHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiByZ2IoMjU1LCAyNTUsIDI1\r\nNSk7Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6R2VvcmdpYSwgc2VyaWY7Zm9udC1zaXplOjEy\r\ncHQiPlMzIEdsb2JhbCwgTExDPC9zcGFuPjwvZGl2PjxkaXYgc3R5bGU9ImJhY2tncm91bmQtY29s\r\nb3I6IHJnYigyNTUsIDI1NSwgMjU1KTsiPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTpHZW9yZ2lh\r\nLCBzZXJpZjtmb250LXNpemU6MTJwdCI+VVMgKzE3MzQ4ODc5MjYxPC9zcGFuPjwvZGl2PjxkaXYg\r\nc3R5bGU9ImJhY2tncm91bmQtY29sb3I6IHJnYigyNTUsIDI1NSwgMjU1KTsiPjxzcGFuIHN0eWxl\r\nPSJmb250LWZhbWlseTpHZW9yZ2lhLCBzZXJpZjtmb250LXNpemU6MTJwdCI+VUsgKzQ0NzQ4NDY3\r\nODU1OTwvc3Bhbj48L2Rpdj48ZGl2IHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiByZ2IoMjU1LCAy\r\nNTUsIDI1NSk7Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6R2VvcmdpYSwgc2VyaWY7Zm9udC1z\r\naXplOjEycHQiPkVVICszMzY0ODUwNTg2Nzwvc3Bhbj48L2Rpdj48ZGl2IHN0eWxlPSJiYWNrZ3Jv\r\ndW5kLWNvbG9yOiByZ2IoMjU1LCAyNTUsIDI1NSk7Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6\r\nR2VvcmdpYSwgc2VyaWYiPjxicj48L3NwYW4+PC9kaXY+PHNwYW4gc3R5bGU9ImJhY2tncm91bmQt\r\nY29sb3I6IHJnYigyNTUsIDI1NSwgMjU1KTsiPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTpHZW9y\r\nZ2lhLCBzZXJpZiI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMnB0Ij5UaGlzIG1lc3NhZ2UgYW5k\r\nIGFueSBhdHRhY2htZW50cyBtYXkgY29udGFpbiBjb25maWRlbnRpYWwgaW5mb3JtYXRpb24gd2hp\r\nY2ggaXMgaW50ZW5kZWQgb25seSBmb3IgdGhlIHVzZSBvZiB0aGUgYWRkcmVzc2VlKHMpLiZuYnNw\r\nOyBJdCBtYXkgYWxzbyBjb250YWluIGluZm9ybWF0aW9uIHdoaWNoIGlzIHByb3RlY3RlZCBieSBh\r\ndHRvcm5leS9jbGllbnQgcHJpdmlsZWdlIG9yIHRoZSB3b3JrLXByb2R1Y3QgZG9jdHJpbmUsIGFt\r\nb25nIG90aGVyIGNvbmZpZGVudGlhbGl0eSBwcmluY2lwbGVzIGFuZCBsZWdhbCBwcml2aWxlZ2Vz\r\nLiZuYnNwO0NvcHlpbmcsIGZvcndhcmRpbmcsIG9yIGRpc3RyaWJ1dGluZyBvZiB0aGlzIGNvbW11\r\nbmljYXRpb24gYnkgb3IgdG8gcGVyc29ucyBvdGhlciB0aGFuIHRoZSBhZGRyZXNzZWUocykgaXMg\r\ncHJvaGliaXRlZC4mbmJzcDsmbmJzcDtJZiB5b3UgaGF2ZSByZWNlaXZlZCB0aGlzIGNvbW11bmlj\r\nYXRpb24gaW4gZXJyb3IsIGRvIG5vdCBmb3J3YXJkIGl0IG9yIHVzZSBpdCBpbiBhbnkgd2F5LiAm\r\nbmJzcDtQbGVhc2Ugbm90aWZ5IHVzIGltbWVkaWF0ZWx5IG9mIHRoZSBlcnJvciBhbmQgcHJvbXB0\r\nbHkgZGVsZXRlIGFuZC9vciBkZXN0cm95IGFsbCBlbGVjdHJvbmljIGFuZC9vciBwYXBlciB2ZXJz\r\naW9ucyBvZiB0aGlzIGNvbW11bmljYXRpb24gYW5kIGFueSBhdHRhY2htZW50cy4mbmJzcDsgVGhh\r\nbmsgeW91IGZvciB5b3VyIGNvb3BlcmF0aW9uIGFuZCB3ZSBhcG9sb2dpemUgZm9yIGFueSBpbmNv\r\nbnZlbmllbmNlLjwvc3Bhbj48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEycHQiPiZuYnNwOzwvc3Bh\r\nbj48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwLjVwdCI+Jm5ic3A7PC9zcGFuPjwvc3Bhbj48L3Nw\r\nYW4+PC9kaXY+PC9kaXY+PGRpdiBzdHlsZT0iZm9udC1mYW1pbHk6IEFyaWFsLCBzYW5zLXNlcmlm\r\nOyBiYWNrZ3JvdW5kLWNvbG9yOiByZ2IoMjU1LCAyNTUsIDI1NSk7Ij48c3BhbiBzdHlsZT0iZm9u\r\ndC1mYW1pbHk6R2VvcmdpYSwgc2VyaWYiPjxicj48L3NwYW4+PC9kaXY+PC9kaXY+PHNwYW4gc3R5\r\nbGU9ImZvbnQtZmFtaWx5OkFyaWFsLCBzYW5zLXNlcmlmIj48L3NwYW4+DQogICAgPC9kaXY+DQog\r\nICAgPGRpdiBzdHlsZT0iZm9udC1mYW1pbHk6IEFyaWFsLCBzYW5zLXNlcmlmOyBmb250LXNpemU6\r\nIDE0cHg7Ij48YnI+PC9kaXY+DQogICAgPGRpdiBjbGFzcz0icHJvdG9ubWFpbF9zaWduYXR1cmVf\r\nYmxvY2stcHJvdG9uIj4NCiAgICAgICAgU2VudCB3aXRoIDxhIGhyZWY9Imh0dHBzOi8vcHJvdG9u\r\nLm1lL21haWwvaG9tZSIgdGFyZ2V0PSJfYmxhbmsiPlByb3RvbiBNYWlsPC9hPiBzZWN1cmUgZW1h\r\naWwuDQogICAgPC9kaXY+DQo8L2Rpdj4NCjxkaXYgc3R5bGU9ImZvbnQtZmFtaWx5OiBBcmlhbCwg\r\nc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNHB4OyI+PGJyPjwvZGl2PjxkaXYgY2xhc3M9InByb3Rv\r\nbm1haWxfcXVvdGUiPg0KICAgICAgICBPbiBTdW5kYXksIEp1bHkgNnRoLCAyMDI1IGF0IDM6MDYg\r\nUE0sIFJpY2sgJmx0O3JpY2tAbWF2cml4Lm9uZSZndDsgd3JvdGU6PGJyPg0KICAgICAgICA8Ymxv\r\nY2txdW90ZSBjbGFzcz0icHJvdG9ubWFpbF9xdW90ZSIgdHlwZT0iY2l0ZSI+DQoNCiAgICA8ZGl2\r\nIHN0eWxlPSJmb250LWZhbWlseTpIZWx2ZXRpY2EsQXJpYWw7Zm9udC1zaXplOjEzcHg7ICI+SeKA\r\nmXZlIG1hZGUgc29tZSBlZGl0cyB0aGF0IHNob3VsZCBiZSBjb25zaWRlcmVkPC9kaXY+IFNlZSBh\r\ndHRhY2hlZC4gY29uZmlybSByZWNlaXB0IGFuZCBsZXQgbWUga25vdy48ZGl2PlRoYW5rcyw8L2Rp\r\ndj48ZGl2PlJpY2s8YnI+IDxkaXYgY2xhc3M9ImdtYWlsX3NpZ25hdHVyZSI+DQoNCg0KICAgIFJp\r\nY2sgTWlzbGFuLCBQaEQ8YnI+PGRpdj48YSBocmVmPSJodHRwczovL21hdnJpeC5vbmUNCmh0dHBz\r\nOi8vbWF2cml4Lm9uZQ0KaHR0cHM6Ly9tYXZyaXgub25lIiB0YXJnZXQ9Il9ibGFuayIgcmVsPSJu\r\nb3JlZmVycmVyIG5vZm9sbG93IG5vb3BlbmVyIj5odHRwczovL21hdnJpeC5vbmU8L2E+PC9kaXY+\r\nPGRpdj48aW1nIHN0eWxlPSJoZWlnaHQ6IDExcHg7Ij48L2Rpdj4NCg0KPC9kaXY+IDxicj48cCBj\r\nbGFzcz0iYWlybWFpbF9vbiI+T24gSnVseSA0LCAyMDI1IGF0IDE6MDU6NDbigK9QTSwgQ1QgKDxh\r\nIGhyZWY9Im1haWx0bzpjdEBzM2dsb2JhbC51cyIgcmVsPSJub3JlZmVycmVyIG5vZm9sbG93IG5v\r\nb3BlbmVyIj5jdEBzM2dsb2JhbC51czwvYT4pIHdyb3RlOjwvcD4gPGJsb2NrcXVvdGUgdHlwZT0i\r\nY2l0ZSIgY2xhc3M9ImNsZWFuX2JxIj48c3Bhbj48ZGl2PjxkaXY+PC9kaXY+PGRpdj48ZGl2IHN0\r\neWxlPSJmb250LWZhbWlseTogQXJpYWwsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTRweDsiPlJp\r\nY2ssIEhlcmUgaXMgb3VyIHN0YW5kYXJkIE5ETkNBLiBXaWxsIG5lZWQgY29tcGFueSBuYW1lIGFu\r\nZCBpbmZyb21hdGlvbiAvIGFkZHJlc3MsIGFuZCBuYW1lIG9mIHNpZ25hdG9yeSwgaS5lLiwgQ0VP\r\nLCBldGMuPC9kaXY+PGRpdiBzdHlsZT0iZm9udC1mYW1pbHk6IEFyaWFsLCBzYW5zLXNlcmlmOyBm\r\nb250LXNpemU6IDE0cHg7Ij48YnI+PC9kaXY+PGRpdiBzdHlsZT0iZm9udC1mYW1pbHk6IEFyaWFs\r\nLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE0cHg7Ij5QbGVhc2UgbGV0IG1lIGtub3cgaWYgeW91\r\nIGhhdmUgYW55IHF1ZXN0aW9ucyBvciBzdWdnZXN0aW9ucy48L2Rpdj48ZGl2IHN0eWxlPSJmb250\r\nLWZhbWlseTogQXJpYWwsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTRweDsiPjxicj48L2Rpdj48\r\nZGl2IHN0eWxlPSJmb250LWZhbWlseTogQXJpYWwsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTRw\r\neDsiPlNpbmNlcmVseTwvZGl2PjxkaXYgc3R5bGU9ImZvbnQtZmFtaWx5OiBBcmlhbCwgc2Fucy1z\r\nZXJpZjsgZm9udC1zaXplOiAxNHB4OyI+PGJyPjwvZGl2Pg0KPGRpdiBzdHlsZT0iZm9udC1mYW1p\r\nbHk6IEFyaWFsLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE0cHg7IiBjbGFzcz0icHJvdG9ubWFp\r\nbF9zaWduYXR1cmVfYmxvY2siPg0KICAgIDxkaXYgY2xhc3M9InByb3Rvbm1haWxfc2lnbmF0dXJl\r\nX2Jsb2NrLXVzZXIiPjxkaXY+PHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OkFyaWFsLCBzYW5zLXNl\r\ncmlmIj48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6R2VvcmdpYSwgc2VyaWY7Zm9udC1zaXplOjEy\r\ncHQiPkNhcnNvbiBKLiBUdWNrZXIsIEVzcS4sIEpELCBNU0VMPC9zcGFuPjwvc3Bhbj48ZGl2IHN0\r\neWxlPSJmb250LWZhbWlseTpBcmlhbCwgc2Fucy1zZXJpZiI+PGRpdj48ZGl2IHN0eWxlPSJiYWNr\r\nZ3JvdW5kLWNvbG9yOiByZ2IoMjU1LCAyNTUsIDI1NSk7Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1p\r\nbHk6R2VvcmdpYSwgc2VyaWY7Zm9udC1zaXplOjEycHQiPkdlbmVyYWwgQ291bnNlbDwvc3Bhbj48\r\nL2Rpdj48ZGl2IHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiByZ2IoMjU1LCAyNTUsIDI1NSk7Ij48\r\nc3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6R2VvcmdpYSwgc2VyaWY7Zm9udC1zaXplOjEycHQiPlMz\r\nIEdsb2JhbCwgTExDPC9zcGFuPjwvZGl2PjxkaXYgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6IHJn\r\nYigyNTUsIDI1NSwgMjU1KTsiPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTpHZW9yZ2lhLCBzZXJp\r\nZjtmb250LXNpemU6MTJwdCI+VVMgKzE3MzQ4ODc5MjYxPC9zcGFuPjwvZGl2PjxkaXYgc3R5bGU9\r\nImJhY2tncm91bmQtY29sb3I6IHJnYigyNTUsIDI1NSwgMjU1KTsiPjxzcGFuIHN0eWxlPSJmb250\r\nLWZhbWlseTpHZW9yZ2lhLCBzZXJpZjtmb250LXNpemU6MTJwdCI+VUsgKzQ0NzQ4NDY3ODU1OTwv\r\nc3Bhbj48L2Rpdj48ZGl2IHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiByZ2IoMjU1LCAyNTUsIDI1\r\nNSk7Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6R2VvcmdpYSwgc2VyaWY7Zm9udC1zaXplOjEy\r\ncHQiPkVVICszMzY0ODUwNTg2Nzwvc3Bhbj48L2Rpdj48ZGl2IHN0eWxlPSJiYWNrZ3JvdW5kLWNv\r\nbG9yOiByZ2IoMjU1LCAyNTUsIDI1NSk7Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1pbHk6R2Vvcmdp\r\nYSwgc2VyaWYiPjxicj48L3NwYW4+PC9kaXY+PHNwYW4gc3R5bGU9ImJhY2tncm91bmQtY29sb3I6\r\nIHJnYigyNTUsIDI1NSwgMjU1KTsiPjxzcGFuIHN0eWxlPSJmb250LWZhbWlseTpHZW9yZ2lhLCBz\r\nZXJpZiI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMnB0Ij5UaGlzIG1lc3NhZ2UgYW5kIGFueSBh\r\ndHRhY2htZW50cyBtYXkgY29udGFpbiBjb25maWRlbnRpYWwgaW5mb3JtYXRpb24gd2hpY2ggaXMg\r\naW50ZW5kZWQgb25seSBmb3IgdGhlIHVzZSBvZiB0aGUgYWRkcmVzc2VlKHMpLiZuYnNwOyBJdCBt\r\nYXkgYWxzbyBjb250YWluIGluZm9ybWF0aW9uIHdoaWNoIGlzIHByb3RlY3RlZCBieSBhdHRvcm5l\r\neS9jbGllbnQgcHJpdmlsZWdlIG9yIHRoZSB3b3JrLXByb2R1Y3QgZG9jdHJpbmUsIGFtb25nIG90\r\naGVyIGNvbmZpZGVudGlhbGl0eSBwcmluY2lwbGVzIGFuZCBsZWdhbCBwcml2aWxlZ2VzLiZuYnNw\r\nO0NvcHlpbmcsIGZvcndhcmRpbmcsIG9yIGRpc3RyaWJ1dGluZyBvZiB0aGlzIGNvbW11bmljYXRp\r\nb24gYnkgb3IgdG8gcGVyc29ucyBvdGhlciB0aGFuIHRoZSBhZGRyZXNzZWUocykgaXMgcHJvaGli\r\naXRlZC4mbmJzcDsmbmJzcDtJZiB5b3UgaGF2ZSByZWNlaXZlZCB0aGlzIGNvbW11bmljYXRpb24g\r\naW4gZXJyb3IsIGRvIG5vdCBmb3J3YXJkIGl0IG9yIHVzZSBpdCBpbiBhbnkgd2F5LiAmbmJzcDtQ\r\nbGVhc2Ugbm90aWZ5IHVzIGltbWVkaWF0ZWx5IG9mIHRoZSBlcnJvciBhbmQgcHJvbXB0bHkgZGVs\r\nZXRlIGFuZC9vciBkZXN0cm95IGFsbCBlbGVjdHJvbmljIGFuZC9vciBwYXBlciB2ZXJzaW9ucyBv\r\nZiB0aGlzIGNvbW11bmljYXRpb24gYW5kIGFueSBhdHRhY2htZW50cy4mbmJzcDsgVGhhbmsgeW91\r\nIGZvciB5b3VyIGNvb3BlcmF0aW9uIGFuZCB3ZSBhcG9sb2dpemUgZm9yIGFueSBpbmNvbnZlbmll\r\nbmNlLjwvc3Bhbj48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEycHQiPiZuYnNwOzwvc3Bhbj48c3Bh\r\nbiBzdHlsZT0iZm9udC1zaXplOjEwLjVwdCI+Jm5ic3A7PC9zcGFuPjwvc3Bhbj48L3NwYW4+PC9k\r\naXY+PC9kaXY+PGRpdiBzdHlsZT0iZm9udC1mYW1pbHk6IEFyaWFsLCBzYW5zLXNlcmlmOyBiYWNr\r\nZ3JvdW5kLWNvbG9yOiByZ2IoMjU1LCAyNTUsIDI1NSk7Ij48c3BhbiBzdHlsZT0iZm9udC1mYW1p\r\nbHk6R2VvcmdpYSwgc2VyaWYiPjxicj48L3NwYW4+PC9kaXY+PC9kaXY+PHNwYW4gc3R5bGU9ImZv\r\nbnQtZmFtaWx5OkFyaWFsLCBzYW5zLXNlcmlmIj48L3NwYW4+PC9kaXY+DQogICAgPGRpdiBzdHls\r\nZT0iZm9udC1mYW1pbHk6IEFyaWFsLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE0cHg7Ij48YnI+\r\nPC9kaXY+DQogICAgPGRpdiBjbGFzcz0icHJvdG9ubWFpbF9zaWduYXR1cmVfYmxvY2stcHJvdG9u\r\nIj4NCiAgICAgICAgU2VudCB3aXRoIDxhIGhyZWY9Imh0dHBzOi8vcHJvdG9uLm1lL21haWwvaG9t\r\nZSIgdGFyZ2V0PSJfYmxhbmsiIHJlbD0ibm9yZWZlcnJlciBub2ZvbGxvdyBub29wZW5lciI+UHJv\r\ndG9uIE1haWw8L2E+IHNlY3VyZSBlbWFpbC4NCiAgICA8L2Rpdj4NCjwvZGl2Pg0KPC9kaXY+PC9k\r\naXY+PC9zcGFuPjwvYmxvY2txdW90ZT4NCg0KDQo8L2Rpdj4NCiAgICAgICAgPC9ibG9ja3F1b3Rl\r\nPjxicj4NCiAgICA8L2Rpdj48L2Rpdj48L2Rpdj48L3NwYW4+PC9ibG9ja3F1b3RlPg0KDQoNCjwv\r\nZGl2PjwvZGl2Pjwvc3Bhbj48L2Jsb2NrcXVvdGU+DQoNCg0KPC9ibG9ja3F1b3RlPjwvZGl2Pg==\r\n\r\n--b2=_em5Znk74eLyrMaPU9i96iUOkWY6kCCPQQVhXTdNBo\r\nContent-Type: application/octet-stream; name=A7278F9C-5D9E-46A9-9A6D-96490D8117FD.bin\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <F0561EC9-5471-41DF-85E9-9A0E14BB52C4>\r\nContent-Disposition: inline; filename=A7278F9C-5D9E-46A9-9A6D-96490D8117FD.bin\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGwAAAAYCAYAAAAf1RgaAAAAAXNSR0IArs4c6QAAAIRlWElmTU0A\r\nKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdp\r\nAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAGyg\r\nAwAEAAAAAQAAABgAAAAABrPxEgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5h\r\nZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9\r\nIlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9y\r\nZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6\r\nYWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZm\r\nLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgog\r\nICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAA\r\nC6FJREFUaAXtWnuMVUcZnznPe/fuZYEtDxHCQ1ADBNuuAlKh24dRaqURWFotj5haKAn9SxOaauRi\r\nxEBsMMFSAmnUCDTKWtDioyEm3RLKq6VKC7Rg20VA5Lmwz3vPa8bfN+ecu+fevbugjQQrX5g735n5\r\nvm++13wz5yyc3YKb0gP19a8YTU33+NNmbx0puHjJtGsm+U7beoMxyRsaGrUJE45JxlbclMp/1JXK\r\nsZWM5XLwP6PG6+tzOgVr8tzN0wWTjRq3hojAw6TU+EfdGf9T9uVyGsutQNC4nDpn8zz0m7lmWEwE\r\njm6mbd/r3MCnzNk6DlEbyRFCqfNbAbyBEeaBlJzrkula1mOFQ683fvMcLT917tblGF8dbTgmhe8a\r\nZsbyvY4NhsbEdwy7ZrHntDHOtBuo7q2lGLyvGSnmOe2/fH3S3//EGhGsOZuf03RrKRMC/3wBL30f\r\n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\r\n\r\n--b2=_em5Znk74eLyrMaPU9i96iUOkWY6kCCPQQVhXTdNBo\r\nContent-Type: application/octet-stream; name=52AACA64-B468-4285-B5C4-838F6707FFCC.bin\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <C6E37D87-1F26-432C-A06D-3A8FAE3123BB>\r\nContent-Disposition: inline; filename=52AACA64-B468-4285-B5C4-838F6707FFCC.bin\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGwAAAAYCAYAAAAf1RgaAAAAAXNSR0IArs4c6QAAAIRlWElmTU0A\r\nKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdp\r\nAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAGyg\r\nAwAEAAAAAQAAABgAAAAABrPxEgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5h\r\nZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9\r\nIlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9y\r\nZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6\r\nYWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZm\r\nLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgog\r\nICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAA\r\nC6FJREFUaAXtWnuMVUcZnznPe/fuZYEtDxHCQ1ADBNuuAlKh24dRaqURWFotj5haKAn9SxOaauRi\r\nxEBsMMFSAmnUCDTKWtDioyEm3RLKq6VKC7Rg20VA5Lmwz3vPa8bfN+ecu+fevbugjQQrX5g735n5\r\nvm++13wz5yyc3YKb0gP19a8YTU33+NNmbx0puHjJtGsm+U7beoMxyRsaGrUJE45JxlbclMp/1JXK\r\nsZWM5XLwP6PG6+tzOgVr8tzN0wWTjRq3hojAw6TU+EfdGf9T9uVyGsutQNC4nDpn8zz0m7lmWEwE\r\njm6mbd/r3MCnzNk6DlEbyRFCqfNbAbyBEeaBlJzrkula1mOFQ683fvMcLT917tblGF8dbTgmhe8a\r\nZsbyvY4NhsbEdwy7ZrHntDHOtBuo7q2lGLyvGSnmOe2/fH3S3//EGhGsOZuf03RrKRMC/3wBL30f\r\n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\r\n\r\n--b2=_em5Znk74eLyrMaPU9i96iUOkWY6kCCPQQVhXTdNBo--','ACK will review / revise asap.\n\nCarson J. Tucker, Esq., JD, MSELGeneral Counsel\nS3 Global, LLC\nUS +17348879261\nUK +447484678559\nEU +33648505867\n\nThis message and any attachments may contain confidential information which is intended only for the use of the addressee(s). It may also contain information which is protected by attorney/client privilege or the work-product doctrine, among other confidentiality principles and legal privileges. Copying, forwarding, or distributing of this communication by or to persons other than the addressee(s) is prohibited. If you have received this communication in error, do not forward it or use it in any way. Please notify us immediately of the error and promptly delete and/or destroy all electronic and/or paper versions of this communication and any attachments. Thank you for your cooperation and we apologize for any inconvenience.\n\nSent from Proton Mail Android\n\n-------- Original Message --------\nOn 9/4/25 19:59, Rick  wrote:\n\n> Hi Carson,\n> Just chatted with CG...\n> I\'d like to re-visit this. Please confirm receipt.\n> Can I offer a few items for your consideration:\n>\n> 1. Under Confidential, add exclusions:\n> \"Information that is already public, independently developed, or received from third parties without confidentiality restrictions”\n>\n> 2. Narrow the scope: Remove \"reasonably expected to be treated as confidential\" - we know that’s just lawyer speak for \"we can claim anything”\n>\n> 3. Maybe add some specific examples to focus on truly sensitive things like proprietary tech, client lists, and financial data.\n>\n> 4. Confidentiality: Reduce to 3 years maximum\n>\n> 5. Non-circumvention: Reduce to 2 years maximum\n>\n> 6. Trade secrets: Add \"or until disclosed through no breach by receiving party”\n>\n> 7. Add sunset clause: Non-circumvention only applies for active projects, not forever.\n>\n> 8. Carve out exceptions: If the relationship naturally evolves beyond the original scope\n>\n> 9. Define \"Acquired Clients\": Make it specific to clients introduced FOR THIS specific project.\n>\n> 10. Cap damages: Set maximum liability (e.g., $50K or project value)\n>\n> 11. Remove \"gross earnings\" forfeiture: Change to \"net profits\" or reasonable percentage\n>\n> 12. Mutual penalties: Make sure they face the same penalties if they breach\n>\n> 13. Add cure period: 30-day notice to cure before penalties kick in\n>\n> 14. Mutual consent required for all assignments\n>\n> 15. Right to terminate if assigned to competitor\n>\n> 16. Notice period: 60 days advance notice of any assignment\n>\n> 17. Reciprocal Protection\n> - ALL penalties apply equally to both parties\n> - Add \"most favored nation\" clause - if you give anyone better terms, we get them too\n>\n> 18. Our Technology Protection\n> - Carve out: Our existing IP and independently developed technology\n> - No reverse engineering restrictions: Unless explicitly marked confidential\n> - Right to continue development: Using general knowledge and skills\n>\n> 19. Some Practical Safeguards\n> - Define \"material breach\": Not every minor violation triggers nuclear penalties\n> - Mediation first: Before arbitration or litigation\n> - Survival clause: Only essential provisions survive termination\n>\n> Let me know if you have any questions.\n> I look forward to your response.\n> Thanks!\n> Rick\n>\n> Rick Mislan, PhD,\n> Founder, CTO\n>\n> [https://mavrix1.com](https://mavrix1.com/)\n>\n> On September 4, 2025 at 2:37:32 PM, Rick (rick@mavrix.one) wrote:\n>\n>> Rick Mislan, PhD,\n>> Founder, CTO\n>>\n>> [https://mavrix1.com](https://mavrix1.com/)\n>>\n>> On July 10, 2025 at 7:29:34 AM, CT (ct@s3global.us) wrote:\n>>\n>>> Rick,\n>>>\n>>> Please see attached. I\'ve put it into .pdf format and signed as well if there is no further changes, please sign and return to me for our records.\n>>>\n>>> Thanks very much.\n>>>\n>>> Carson\n>>>\n>>> Carson J. Tucker, Esq., JD, MSEL\n>>> General Counsel\n>>> S3 Global, LLC\n>>> US +17348879261\n>>> UK +447484678559\n>>> EU +33648505867\n>>>\n>>> This message and any attachments may contain confidential information which is intended only for the use of the addressee(s). It may also contain information which is protected by attorney/client privilege or the work-product doctrine, among other confidentiality principles and legal privileges. Copying, forwarding, or distributing of this communication by or to persons other than the addressee(s) is prohibited. If you have received this communication in error, do not forward it or use it in any way. Please notify us immediately of the error and promptly delete and/or destroy all electronic and/or paper versions of this communication and any attachments. Thank you for your cooperation and we apologize for any inconvenience.\n>>>\n>>> Sent with [Proton Mail](https://proton.me/mail/home) secure email.\n>>>\n>>> On Sunday, July 6th, 2025 at 3:06 PM, Rick <rick@mavrix.one> wrote:\n>>>\n>>>> I’ve made some edits that should be considered\n>>>> See attached. confirm receipt and let me know.\n>>>> Thanks,\n>>>> Rick\n>>>>\n>>>> Rick Mislan, PhD\n>>>>\n>>>> [https://mavrix.one](https://mavrix.one\n>>>> https://mavrix.one\n>>>> https://mavrix.one)\n>>>>\n>>>> On July 4, 2025 at 1:05:46 PM, CT (ct@s3global.us) wrote:\n>>>>\n>>>>> Rick, Here is our standard NDNCA. Will need company name and infromation / address, and name of signatory, i.e., CEO, etc.\n>>>>>\n>>>>> Please let me know if you have any questions or suggestions.\n>>>>>\n>>>>> Sincerely\n>>>>>\n>>>>> Carson J. Tucker, Esq., JD, MSEL\n>>>>> General Counsel\n>>>>> S3 Global, LLC\n>>>>> US +17348879261\n>>>>> UK +447484678559\n>>>>> EU +33648505867\n>>>>>\n>>>>> This message and any attachments may contain confidential information which is intended only for the use of the addressee(s). It may also contain information which is protected by attorney/client privilege or the work-product doctrine, among other confidentiality principles and legal privileges. Copying, forwarding, or distributing of this communication by or to persons other than the addressee(s) is prohibited. If you have received this communication in error, do not forward it or use it in any way. Please notify us immediately of the error and promptly delete and/or destroy all electronic and/or paper versions of this communication and any attachments. Thank you for your cooperation and we apologize for any inconvenience.\n>>>>>\n>>>>> Sent with [Proton Mail](https://proton.me/mail/home) secure email.',0,0,0,0,0,0,'2025-09-04 19:10:05','2025-12-09 19:28:07','2025-12-09 19:28:07','2025-12-09 19:28:07',NULL,NULL,NULL),
(682,4,'<89452d2a8c2e5efa2a3efcc54d1c3666@mavrix.one>',NULL,NULL,'ERPNext','leslie@mavrix.one','leslie@mavrix.one','\r\nHi - I\'ve reached out to this Open Source ERP called ERPNext for a demo. \r\n  It looks like there are modules for everything we are looking for \r\nincluding Project Management.  Take a look at the link below and I\'ll \r\nkeep you posted on a date and time to learn more.\r\n\r\nhttps://frappe.io/erpnext/modules\r\n\r\nThanks,\r\nLeslie\r\n','\r\nHi - I\'ve reached out to this Open Source ERP called ERPNext for a demo. \r\n  It looks like there are modules for everything we are looking for \r\nincluding Project Management.  Take a look at the link below and I\'ll \r\nkeep you posted on a date and time to learn more.\r\n\r\nhttps://frappe.io/erpnext/modules\r\n\r\nThanks,\r\nLeslie\r\n',0,0,0,0,0,0,'2025-09-04 20:11:26','2025-12-09 19:28:07','2025-12-09 19:28:07','2025-12-09 19:28:07',NULL,NULL,NULL),
(683,4,' <SA0P111MB2520264294083A20E64EDE7FB700A@SA0P111MB2520.NAMP111.PROD.OUTLOOK.COM>',NULL,NULL,'UAS Industry Day Agenda','UASIndustryDay2025@army.mil','UAS Industry Day 2025','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nGood Afternoon,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nPlease find the Top Level Agenda for the upcoming UAS Industry Day below:</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<img style=\"max-width: 1867px;\" size=\"30343\" data-outlook-trace=\"F:1|T:1\" src=\"cid:8f6840c9-11f1-4636-aa2d-68b42b6b1809\"></div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nIf you are selected for a One-on-One session with UAS Leadership, notification will be made no later than COB\r\n<b>10 September 2025</b>.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nWe appreciate your interest in this event and look forward to your participation.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nThank you,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nUAS Industry Day Team 2025</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n</body>\r\n</html>','Good Afternoon,\r\n\r\nPlease find the Top Level Agenda for the upcoming UAS Industry Day below:\r\n\r\n[cid:8f6840c9-11f1-4636-aa2d-68b42b6b1809]\r\n\r\nIf you are selected for a One-on-One session with UAS Leadership, notification will be made no later than COB 10 September 2025.\r\n\r\nWe appreciate your interest in this event and look forward to your participation.\r\n\r\nThank you,\r\n\r\nUAS Industry Day Team 2025',0,0,0,0,0,0,'2025-09-04 20:40:50','2025-12-09 19:28:07','2025-12-09 19:28:07','2025-12-09 19:28:07',NULL,NULL,NULL),
(684,4,'<CAGOCFXiadPq2zcW5ngGQEPKuB-RoxpZECbBXnO6eW_TUazqJ6g@mail.gmail.com>',NULL,NULL,'Letters of Support','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Hi Brian,</div><div><br></div><div>Yesterday I promised you letters of interest/intent.  Below are signed letters from several companies we are working with that I believe can help with the financing aspect.  </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table><br></div><div><br></div></div></div></div></div>','Hi Brian,\r\n\r\nYesterday I promised you letters of interest/intent.  Below are signed\r\nletters from several companies we are working with that I believe can help\r\nwith the financing aspect.\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>',0,0,0,0,0,0,'2025-09-05 13:51:11','2025-12-09 19:28:09','2025-12-09 19:28:09','2025-12-09 19:28:09',NULL,NULL,NULL),
(685,4,' <CY4PR0701MB36188FF05FD886C7E34737E4B603A@CY4PR0701MB3618.namprd07.prod.outlook.com>',NULL,NULL,'Achram Labs Sync','andrew@achramlabs.com','Andrew Reynolds','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<span style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">Hey Rick,</span>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nApologies for not being able to get together this week. Things have been moving quickly on our end with Rich supporting a tech demonstration at Fort Gordon for one of our subcontractors and other commitments keeping us on the move. That being said, we are looking\r\n forward to sitting down with you and making sure we get some time on the calendar as soon as possible.<br>\r\n<br>\r\nWe can do a Teams call Monday early afternoon if that works for you. If not, we will be on the road to Hurlburt Air Force Base to meet with AFSOC Tuesday and Wednesday and could also connect during our drive up to the Panhandle.<br>\r\n<br>\r\nWe’re excited to continue the conversation and explore how we can move things forward together.&nbsp;Let me know what timing works best for you.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nBest,<br>\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nAndrew Reynolds</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" id=\"Signature\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0px;\" class=\"elementToProof\">\r\n<span style=\"font-family: Aptos, sans-serif; font-size: 11pt; color: rgb(36, 36, 36);\">--</span></p>\r\n<div style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0px; font-family: Aptos, sans-serif; font-size: 11pt; color: rgb(36, 36, 36);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0px; font-family: Aptos, sans-serif; font-size: 11pt; color: rgb(36, 36, 36);\" class=\"elementToProof\">\r\nAndrew Reynolds<br>\r\nAchram Labs | Program Manager</div>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0px;\" class=\"elementToProof\">\r\n<span style=\"font-family: Aptos, sans-serif; font-size: 11pt; color: rgb(70, 120, 134);\"><a style=\"color: rgb(70, 120, 134); margin: 0px;\" title=\"http://www.achramlabs.com\" class=\"OWAAutoLink\" id=\"OWA3a14b889-af51-aded-24d0-17b0620d3693\" href=\"http://www.achramlabs.com/\">www.achramlabs.com</a></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0px;\" class=\"elementToProof\">\r\n<span style=\"font-family: Aptos, sans-serif; font-size: 11pt; color: rgb(36, 36, 36);\">e: andrew</span><span style=\"font-family: Aptos, sans-serif; font-size: 11pt; color: rgb(70, 120, 134);\"><a style=\"color: rgb(70, 120, 134); margin: 0px;\" title=\"mailto:rich@achramlabs.com\" class=\"OWAAutoLink\" id=\"OWA770f4bec-0b1c-3f07-c127-2e631f5ffe33\" href=\"mailto:rich@achramlabs.com\">@achramlabs.com</a></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0px;\" class=\"elementToProof\">\r\n<span style=\"font-family: Aptos, sans-serif; font-size: 11pt; color: rgb(36, 36, 36);\">m: 813-748-1414</span></p>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','Hey Rick,\r\n\r\nApologies for not being able to get together this week. Things have been moving quickly on our end with Rich supporting a tech demonstration at Fort Gordon for one of our subcontractors and other commitments keeping us on the move. That being said, we are looking forward to sitting down with you and making sure we get some time on the calendar as soon as possible.\r\n\r\nWe can do a Teams call Monday early afternoon if that works for you. If not, we will be on the road to Hurlburt Air Force Base to meet with AFSOC Tuesday and Wednesday and could also connect during our drive up to the Panhandle.\r\n\r\nWe’re excited to continue the conversation and explore how we can move things forward together. Let me know what timing works best for you.\r\n\r\n\r\nBest,\r\n\r\nAndrew Reynolds\r\n\r\n\r\n\r\n\r\n--\r\n\r\nAndrew Reynolds\r\nAchram Labs | Program Manager\r\n\r\nwww.achramlabs.com<http://www.achramlabs.com/>\r\n\r\ne: andrew@achramlabs.com<mailto:rich@achramlabs.com>\r\n\r\nm: 813-748-1414',0,0,0,0,0,0,'2025-09-05 14:20:03','2025-12-09 19:28:09','2025-12-09 19:28:09','2025-12-09 19:28:09',NULL,NULL,NULL),
(686,4,'<1602421335.38107776.1757083755822@lor1-app77651.prod.linkedin.com>',NULL,NULL,'Mavrix, follow Josianne Keenan - Social Media Coordinator at Jacksonville Jaguars','messages-noreply@linkedin.com','LinkedIn','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n              @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n            </style> <style>\r\n            @media (max-width: 480px) { .inline-button, .inline-button table { display: none !important; }\r\n            .full-width-button, .full-width-button table { display: table !important; } }\r\n          </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n            \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n            \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">See your recommendations</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-left: auto; margin-right: auto; margin-top: 0px; margin-bottom: 0px; width: 512px; max-width: 512px; padding: 0px;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"bg-color-background-container \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=21fW04OA5VSrU1&amp;trk=eml-email_edge_discover_01-header-0-home_glimmer_static_badging_with_count&amp;trkEmail=eml-email_edge_discover_01-header-0-home_glimmer_static_badging_with_count-null-poh2nf~mf6y9xyq~8-null-null&amp;eid=poh2nf-mf6y9xyq-8&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjQ4N2NkZDc0NDljYWQ4NzY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNWY4Yzg3OGZiYWFiZjAyYjg3YWZhOTQ3ZWE2ODE3NzNiYWNlN2QzMzc2ZGI0YzAsMSwx\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img class=\"h-[37px] w-[101px]\" alt=\"LinkedIn\" src=\"https://static.licdn.com/aero-v1/sc/h/2fp5x7ci191mxbdy1eynscn59\" data-test-header-static-badging-img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 37px; width: 101px;\" width=\"101\" height=\"37\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" data-test-header-notification-badges style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/messaging/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=21fW04OA5VSrU1&amp;trk=eml-email_edge_discover_01-header-0-messaging_glimmer&amp;trkEmail=eml-email_edge_discover_01-header-0-messaging_glimmer-null-poh2nf~mf6y9xyq~8-null-null&amp;eid=poh2nf-mf6y9xyq-8&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjQ4N2NkZDc0NDljYWQ4NzY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNWY4Yzg3OGZiYWFiZjAyYjg3YWZhOTQ3ZWE2ODE3NzNiYWNlN2QzMzc2ZGI0YzAsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Messaging icon\" src=\"https://static.licdn.com/aero-v1/sc/h/ekkp8yi9j4xx65umpdz3rdmbp\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=21fW04OA5VSrU1&amp;trk=eml-email_edge_discover_01-header-0-my_network_glimmer&amp;trkEmail=eml-email_edge_discover_01-header-0-my_network_glimmer-null-poh2nf~mf6y9xyq~8-null-null&amp;eid=poh2nf-mf6y9xyq-8&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjQ4N2NkZDc0NDljYWQ4NzY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNWY4Yzg3OGZiYWFiZjAyYjg3YWZhOTQ3ZWE2ODE3NzNiYWNlN2QzMzc2ZGI0YzAsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Mynetwork icon\" src=\"https://static.licdn.com/aero-v1/sc/h/4yxfb6j5ycpjfjgehfqgmdx9w\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/notifications/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=21fW04OA5VSrU1&amp;trk=eml-email_edge_discover_01-header-0-notifications_glimmer&amp;trkEmail=eml-email_edge_discover_01-header-0-notifications_glimmer-null-poh2nf~mf6y9xyq~8-null-null&amp;eid=poh2nf-mf6y9xyq-8&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjQ4N2NkZDc0NDljYWQ4NzY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNWY4Yzg3OGZiYWFiZjAyYjg3YWZhOTQ3ZWE2ODE3NzNiYWNlN2QzMzc2ZGI0YzAsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Notifications icon\" src=\"https://static.licdn.com/aero-v1/sc/h/eh1e9j5bszh6p379hn269p3ps\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"px-3 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px; padding-bottom: 24px;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <h2 class=\"text-lg leading-regular\" data-test-id=\"follow-recommendation-header\" style=\"margin: 0; font-weight: 500; font-size: 20px; line-height: 1.25;\"> Mavrix, add interesting content to your feed. Here are a few recommendations to get started. </h2> </td> </tr> <tr data-test-id=\"follow-recommendation-section\"> <td align=\"center\" class=\"pt-1.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" class=\"pr-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/josianne-keenan-5a115b1b7?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=21fW04OA5VSrU1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A845405833&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A845405833-null-poh2nf~mf6y9xyq~8-null-null&amp;eid=poh2nf-mf6y9xyq-8&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjQ4N2NkZDc0NDljYWQ4NzY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNWY4Yzg3OGZiYWFiZjAyYjg3YWZhOTQ3ZWE2ODE3NzNiYWNlN2QzMzc2ZGI0YzAsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/D5603AQGXdK_Q57kuxA/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1724252290115?e=2147483647&amp;v=beta&amp;t=V6QaostVBC_pFnNFxuB5q9MRb63uo6MkZKBjnjO5S9I\" alt=\"Josianne Keenan’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/josianne-keenan-5a115b1b7?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=21fW04OA5VSrU1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A845405833&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A845405833-null-poh2nf~mf6y9xyq~8-null-null&amp;eid=poh2nf-mf6y9xyq-8&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjQ4N2NkZDc0NDljYWQ4NzY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNWY4Yzg3OGZiYWFiZjAyYjg3YWZhOTQ3ZWE2ODE3NzNiYWNlN2QzMzc2ZGI0YzAsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Josianne Keenan </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> Jacksonville Jaguars Social Media Coordinator </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 5,492 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=josianne-keenan-5a115b1b7&amp;entityUrn=ADoAADJj3okBDTCR5cJOGz-iNPu0fFWF9jz0gY0&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midSig=21fW04OA5VSrU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A845405833-null-poh2nf%7Emf6y9xyq%7E8-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A845405833\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=josianne-keenan-5a115b1b7&amp;entityUrn=ADoAADJj3okBDTCR5cJOGz-iNPu0fFWF9jz0gY0&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midSig=21fW04OA5VSrU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A845405833-null-poh2nf%7Emf6y9xyq%7E8-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A845405833\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=josianne-keenan-5a115b1b7&amp;entityUrn=ADoAADJj3okBDTCR5cJOGz-iNPu0fFWF9jz0gY0&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midSig=21fW04OA5VSrU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A845405833-null-poh2nf%7Emf6y9xyq%7E8-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A845405833\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=josianne-keenan-5a115b1b7&amp;entityUrn=ADoAADJj3okBDTCR5cJOGz-iNPu0fFWF9jz0gY0&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midSig=21fW04OA5VSrU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A845405833-null-poh2nf%7Emf6y9xyq%7E8-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A845405833\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/vivekgramaswamy?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=21fW04OA5VSrU1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A11647502&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A11647502-null-poh2nf~mf6y9xyq~8-null-null&amp;eid=poh2nf-mf6y9xyq-8&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjQ4N2NkZDc0NDljYWQ4NzY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNWY4Yzg3OGZiYWFiZjAyYjg3YWZhOTQ3ZWE2ODE3NzNiYWNlN2QzMzc2ZGI0YzAsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/D5603AQGnZ7wP8eYkVg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1729627599351?e=2147483647&amp;v=beta&amp;t=cr4sKDKVB0qGtCLBfaeZ39Zp6lhw4QoMZNR1b_0W9PQ\" alt=\"Vivek Ramaswamy’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/vivekgramaswamy?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=21fW04OA5VSrU1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A11647502&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A11647502-null-poh2nf~mf6y9xyq~8-null-null&amp;eid=poh2nf-mf6y9xyq-8&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjQ4N2NkZDc0NDljYWQ4NzY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNWY4Yzg3OGZiYWFiZjAyYjg3YWZhOTQ3ZWE2ODE3NzNiYWNlN2QzMzc2ZGI0YzAsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Vivek Ramaswamy </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> Stand for TRUTH. </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 697,870 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=vivekgramaswamy&amp;entityUrn=ADoAAACxug4BI-dQGCh9XUp_-w0QGRY1C4EilBA&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midSig=21fW04OA5VSrU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A11647502-null-poh2nf%7Emf6y9xyq%7E8-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A11647502\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=vivekgramaswamy&amp;entityUrn=ADoAAACxug4BI-dQGCh9XUp_-w0QGRY1C4EilBA&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midSig=21fW04OA5VSrU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A11647502-null-poh2nf%7Emf6y9xyq%7E8-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A11647502\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=vivekgramaswamy&amp;entityUrn=ADoAAACxug4BI-dQGCh9XUp_-w0QGRY1C4EilBA&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midSig=21fW04OA5VSrU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A11647502-null-poh2nf%7Emf6y9xyq%7E8-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A11647502\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=vivekgramaswamy&amp;entityUrn=ADoAAACxug4BI-dQGCh9XUp_-w0QGRY1C4EilBA&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midSig=21fW04OA5VSrU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A11647502-null-poh2nf%7Emf6y9xyq%7E8-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A11647502\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/sssdmistry?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=21fW04OA5VSrU1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A876774290&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A876774290-null-poh2nf~mf6y9xyq~8-null-null&amp;eid=poh2nf-mf6y9xyq-8&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjQ4N2NkZDc0NDljYWQ4NzY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNWY4Yzg3OGZiYWFiZjAyYjg3YWZhOTQ3ZWE2ODE3NzNiYWNlN2QzMzc2ZGI0YzAsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/D5603AQGe4nwpneHa5g/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1722487608490?e=2147483647&amp;v=beta&amp;t=P5HPFqH5qw6GVTVVP9txjOOdwj34D6BDqvJoXYSCo_o\" alt=\"Shweta Mistry’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/sssdmistry?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=21fW04OA5VSrU1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A876774290&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A876774290-null-poh2nf~mf6y9xyq~8-null-null&amp;eid=poh2nf-mf6y9xyq-8&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjQ4N2NkZDc0NDljYWQ4NzY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNWY4Yzg3OGZiYWFiZjAyYjg3YWZhOTQ3ZWE2ODE3NzNiYWNlN2QzMzc2ZGI0YzAsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Shweta Mistry </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> Social Media Coordinator at Phoenix Mercury </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 7,034 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=sssdmistry&amp;entityUrn=ADoAADRCg5IBBelOIxZ3z10XI8S-HcaknDoj2_g&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midSig=21fW04OA5VSrU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A876774290-null-poh2nf%7Emf6y9xyq%7E8-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A876774290\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=sssdmistry&amp;entityUrn=ADoAADRCg5IBBelOIxZ3z10XI8S-HcaknDoj2_g&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midSig=21fW04OA5VSrU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A876774290-null-poh2nf%7Emf6y9xyq%7E8-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A876774290\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=sssdmistry&amp;entityUrn=ADoAADRCg5IBBelOIxZ3z10XI8S-HcaknDoj2_g&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midSig=21fW04OA5VSrU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A876774290-null-poh2nf%7Emf6y9xyq%7E8-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A876774290\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=sssdmistry&amp;entityUrn=ADoAADRCg5IBBelOIxZ3z10XI8S-HcaknDoj2_g&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midSig=21fW04OA5VSrU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A876774290-null-poh2nf%7Emf6y9xyq%7E8-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A876774290\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/laurencefink?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=21fW04OA5VSrU1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A270803623&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A270803623-null-poh2nf~mf6y9xyq~8-null-null&amp;eid=poh2nf-mf6y9xyq-8&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjQ4N2NkZDc0NDljYWQ4NzY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNWY4Yzg3OGZiYWFiZjAyYjg3YWZhOTQ3ZWE2ODE3NzNiYWNlN2QzMzc2ZGI0YzAsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/D4D03AQExq_f6lVhuxg/profile-displayphoto-shrink_400_400/B4DZYXCzSyGwAk-/0/1744143334504?e=2147483647&amp;v=beta&amp;t=MoVK0R6FYiEHbqWr_Th5tmjRECyEthXioMsiU73s9wQ\" alt=\"Larry Fink’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/laurencefink?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=21fW04OA5VSrU1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A270803623&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A270803623-null-poh2nf~mf6y9xyq~8-null-null&amp;eid=poh2nf-mf6y9xyq-8&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjQ4N2NkZDc0NDljYWQ4NzY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNWY4Yzg3OGZiYWFiZjAyYjg3YWZhOTQ3ZWE2ODE3NzNiYWNlN2QzMzc2ZGI0YzAsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Larry Fink </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> Chairman and CEO at BlackRock </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 1,194,973 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=laurencefink&amp;entityUrn=ADoAABAkIqcB7ggzvJzw_BB-grkQ-3JwvTBH0Yg&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midSig=21fW04OA5VSrU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A270803623-null-poh2nf%7Emf6y9xyq%7E8-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A270803623\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=laurencefink&amp;entityUrn=ADoAABAkIqcB7ggzvJzw_BB-grkQ-3JwvTBH0Yg&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midSig=21fW04OA5VSrU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A270803623-null-poh2nf%7Emf6y9xyq%7E8-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A270803623\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=laurencefink&amp;entityUrn=ADoAABAkIqcB7ggzvJzw_BB-grkQ-3JwvTBH0Yg&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midSig=21fW04OA5VSrU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A270803623-null-poh2nf%7Emf6y9xyq%7E8-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A270803623\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=laurencefink&amp;entityUrn=ADoAABAkIqcB7ggzvJzw_BB-grkQ-3JwvTBH0Yg&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midSig=21fW04OA5VSrU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A270803623-null-poh2nf%7Emf6y9xyq%7E8-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A270803623\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/vancityreynolds?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=21fW04OA5VSrU1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A949736145&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A949736145-null-poh2nf~mf6y9xyq~8-null-null&amp;eid=poh2nf-mf6y9xyq-8&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjQ4N2NkZDc0NDljYWQ4NzY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNWY4Yzg3OGZiYWFiZjAyYjg3YWZhOTQ3ZWE2ODE3NzNiYWNlN2QzMzc2ZGI0YzAsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/C5603AQGOBfXsKX8U5Q/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1636498355197?e=2147483647&amp;v=beta&amp;t=yB_Diaa_hSWisnlMCcTOKPUpj2QuNDTbkg2Qpebme3k\" alt=\"Ryan Reynolds’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/vancityreynolds?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=21fW04OA5VSrU1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A949736145&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A949736145-null-poh2nf~mf6y9xyq~8-null-null&amp;eid=poh2nf-mf6y9xyq-8&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjQ4N2NkZDc0NDljYWQ4NzY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNWY4Yzg3OGZiYWFiZjAyYjg3YWZhOTQ3ZWE2ODE3NzNiYWNlN2QzMzc2ZGI0YzAsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Ryan Reynolds </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> Part-Time Actor, Business Owner </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 3,659,111 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=vancityreynolds&amp;entityUrn=ADoAADib0tEBlWQkveTVdAmc8V2ROoDzB32jDrk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midSig=21fW04OA5VSrU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A949736145-null-poh2nf%7Emf6y9xyq%7E8-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A949736145\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=vancityreynolds&amp;entityUrn=ADoAADib0tEBlWQkveTVdAmc8V2ROoDzB32jDrk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midSig=21fW04OA5VSrU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A949736145-null-poh2nf%7Emf6y9xyq%7E8-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A949736145\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=vancityreynolds&amp;entityUrn=ADoAADib0tEBlWQkveTVdAmc8V2ROoDzB32jDrk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midSig=21fW04OA5VSrU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A949736145-null-poh2nf%7Emf6y9xyq%7E8-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A949736145\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=vancityreynolds&amp;entityUrn=ADoAADib0tEBlWQkveTVdAmc8V2ROoDzB32jDrk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midSig=21fW04OA5VSrU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A949736145-null-poh2nf%7Emf6y9xyq%7E8-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A949736145\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/discovery-see-all/?usecase=EMAIL_MIXED_RECOMMENDATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=21fW04OA5VSrU1&amp;trk=eml-email_edge_discover_01-see_more-0-cta~text&amp;trkEmail=eml-email_edge_discover_01-see_more-0-cta~text-null-poh2nf~mf6y9xyq~8-null-null&amp;eid=poh2nf-mf6y9xyq-8&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjQ4N2NkZDc0NDljYWQ4NzY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNWY4Yzg3OGZiYWFiZjAyYjg3YWZhOTQ3ZWE2ODE3NzNiYWNlN2QzMzc2ZGI0YzAsMSwx\" target=\"_blank\" aria-label=\"See all\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/discovery-see-all/?usecase=EMAIL_MIXED_RECOMMENDATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=21fW04OA5VSrU1&amp;trk=eml-email_edge_discover_01-see_more-0-cta~text&amp;trkEmail=eml-email_edge_discover_01-see_more-0-cta~text-null-poh2nf~mf6y9xyq~8-null-null&amp;eid=poh2nf-mf6y9xyq-8&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjQ4N2NkZDc0NDljYWQ4NzY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNWY4Yzg3OGZiYWFiZjAyYjg3YWZhOTQ3ZWE2ODE3NzNiYWNlN2QzMzc2ZGI0YzAsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> See all </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-lg text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 20px; color: #114951;\"> Get the new LinkedIn desktop app </h2> </td> </tr> <tr> <td class=\"text-center pb-2\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <a href=\"https://apps.microsoft.com/store/detail/9WZDNCRFJ4Q7?launch=true&amp;cid=linkedin_email_upsell&amp;mode=full\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it from Microsoft\" src=\"https://static.licdn.com/aero-v1/sc/h/ejpkkpwvqks31a3cjqokb7fbm\" class=\"h-[40px] w-[112px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 112px;\" width=\"112\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-md text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 16px; color: #114951;\"> Also available on mobile </h2> </td> </tr> <tr> <td class=\"text-center\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <a href=\"https://itunes.apple.com/us/app/linkedin/id288429040?pt=10746&amp;ct=st_appsite_flagship&amp;mt=8\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Download on the App Store\" src=\"https://static.licdn.com/aero-v1/sc/h/76yzkd0h5kiv27lrd4yaenylk\" class=\"h-[40px] w-[120px] pr-1\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 120px; padding-right: 8px;\" width=\"120\" height=\"40\"> </a> <a href=\"https://play.google.com/store/apps/details?id=com.linkedin.android&amp;referrer=st_appsite_flagship\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it on Google Play\" src=\"https://static.licdn.com/aero-v1/sc/h/142qudwblp58zwmc9vkqfplug\" class=\"h-[40px] w-[134px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 134px;\" width=\"134\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px;\"><hr class=\"border-none bg-[#e0dfdd] h-[1px]\" style=\"height: 1px; border-style: none; background-color: #e0dfdd;\"></td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" data-test-id=\"email-footer__intended\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=21fW04OA5VSrU1&amp;trk=eml-email_edge_discover_01-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_edge_discover_01-SecurityHelp-0-footerglimmer-null-poh2nf~mf6y9xyq~8-null-null&amp;eid=poh2nf-mf6y9xyq-8&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjQ4N2NkZDc0NDljYWQ4NzY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNWY4Yzg3OGZiYWFiZjAyYjg3YWZhOTQ3ZWE2ODE3NzNiYWNlN2QzMzc2ZGI0YzAsMSwx\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving People You May Know notification emails.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=21fW04OA5VSrU1&amp;trk=eml-email_edge_discover_01-unsubscribe-0-footerGlimmer&amp;trkEmail=eml-email_edge_discover_01-unsubscribe-0-footerGlimmer-null-poh2nf~mf6y9xyq~8-null-null&amp;eid=poh2nf-mf6y9xyq-8&amp;loid=AQGjE10YnM6jxQAAAZkaWmNlR4BKY6siGrpiTcTeOgoqAWGcUdpPcfNA97PjPFGyk9aw97_6E-HXP76E9H5TKBP0kcoJlJQpXy5M\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Unsubscribe</a>   ·   <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=21fW04OA5VSrU1&amp;trk=eml-email_edge_discover_01-help-0-footerglimmer&amp;trkEmail=eml-email_edge_discover_01-help-0-footerglimmer-null-poh2nf~mf6y9xyq~8-null-null&amp;eid=poh2nf-mf6y9xyq-8&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjQ4N2NkZDc0NDljYWQ4NzY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNWY4Yzg3OGZiYWFiZjAyYjg3YWZhOTQ3ZWE2ODE3NzNiYWNlN2QzMzc2ZGI0YzAsMSwx\" target=\"_blank\" data-test-help-link class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=21fW04OA5VSrU1&amp;trk=eml-email_edge_discover_01-footer-0-logoGlimmer&amp;trkEmail=eml-email_edge_discover_01-footer-0-logoGlimmer-null-poh2nf~mf6y9xyq~8-null-null&amp;eid=poh2nf-mf6y9xyq-8&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjQ4N2NkZDc0NDljYWQ4NzY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNWY4Yzg3OGZiYWFiZjAyYjg3YWZhOTQ3ZWE2ODE3NzNiYWNlN2QzMzc2ZGI0YzAsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/aero-v1/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFtTm5rNWVIbHhMVGc9OlpXMWhhV3hmWldSblpWOWthWE5qYjNabGNsOHdNUT09Og==.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','Mavrix, add interesting content to your feed. Here are a few recommendations to get started.\r\n\r\n\r\nhttps://www.linkedin.com/comm/mynetwork/discovery-see-all/?usecase=EMAIL_MIXED_RECOMMENDATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&midToken=AQE-iPshthTClw&midSig=21fW04OA5VSrU1&trk=eml-email_edge_discover_01-see_all-0-cta~text&trkEmail=eml-email_edge_discover_01-see_all-0-cta~text-null-poh2nf~mf6y9xyq~8-null-null&eid=poh2nf-mf6y9xyq-8&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjQ4N2NkZDc0NDljYWQ4NzY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNWY4Yzg3OGZiYWFiZjAyYjg3YWZhOTQ3ZWE2ODE3NzNiYWNlN2QzMzc2ZGI0YzAsMSwx\r\n      \r\n\r\n----------------------------------------\r\n\r\nThis email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\nLearn why we included this: https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&midToken=AQE-iPshthTClw&midSig=21fW04OA5VSrU1&trk=eml-email_edge_discover_01-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_edge_discover_01-SecurityHelp-0-textfooterglimmer-null-poh2nf~mf6y9xyq~8-null-null&eid=poh2nf-mf6y9xyq-8&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjQ4N2NkZDc0NDljYWQ4NzY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNWY4Yzg3OGZiYWFiZjAyYjg3YWZhOTQ3ZWE2ODE3NzNiYWNlN2QzMzc2ZGI0YzAsMSwx\r\nYou are receiving People You May Know notification emails.\r\n\r\n\r\nUnsubscribe: https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&midToken=AQE-iPshthTClw&midSig=21fW04OA5VSrU1&trk=eml-email_edge_discover_01-unsubscribe-0-textfooterglimmer&trkEmail=eml-email_edge_discover_01-unsubscribe-0-textfooterglimmer-null-poh2nf~mf6y9xyq~8-null-null&eid=poh2nf-mf6y9xyq-8&loid=AQGjE10YnM6jxQAAAZkaWmNlR4BKY6siGrpiTcTeOgoqAWGcUdpPcfNA97PjPFGyk9aw97_6E-HXP76E9H5TKBP0kcoJlJQpXy5M\r\nHelp: https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BKmM4tW18T%2Bq90yXrSjqsgw%3D%3D&midToken=AQE-iPshthTClw&midSig=21fW04OA5VSrU1&trk=eml-email_edge_discover_01-help-0-textfooterglimmer&trkEmail=eml-email_edge_discover_01-help-0-textfooterglimmer-null-poh2nf~mf6y9xyq~8-null-null&eid=poh2nf-mf6y9xyq-8&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjQ4N2NkZDc0NDljYWQ4NzY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNWY4Yzg3OGZiYWFiZjAyYjg3YWZhOTQ3ZWE2ODE3NzNiYWNlN2QzMzc2ZGI0YzAsMSwx\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.\r\nLinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',0,0,0,0,0,0,'2025-09-05 14:49:15','2025-12-09 19:28:09','2025-12-09 19:28:09','2025-12-09 19:28:09',NULL,NULL,NULL),
(687,4,'<134060266.41082295.1757119736390@lor1-app79556.prod.linkedin.com>',NULL,NULL,'Mavrix, add Scott Perry - Chief Executive Officer','messages-noreply@linkedin.com','LinkedIn','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n              @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n            </style> <style>\r\n            @media (max-width: 480px) { .inline-button, .inline-button table { display: none !important; }\r\n            .full-width-button, .full-width-button table { display: table !important; } }\r\n          </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n            \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n            \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> <script type=\"application/ld+json\">\r\n    { \"@context\": \"http://schema.org\", \"@type\": \"EmailMessage\", \"potentialAction\": { \"@type\": \"ViewAction\", \"url\": \"https://www.linkedin.com/comm/mynetwork/send-invite/scott-perry-5989a120/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midSig=2HRAX0YtDgSXU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A74113028-null-poh2nf%7Emf7jpjd6%7Ea2-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A74113028&amp;_sig=3vbyflv6HgSXU1\",\r\n    \"name\": \"Connect\" }, \"description\": \"Connect with Scott\", \"publisher\": { \"@type\": \"Organization\", \"name\":\r\n    \"LinkedIn\", \"url\": \"https://www.linkedin.com/\" } }\r\n  </script> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">Chief Executive Officer</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-left: auto; margin-right: auto; margin-top: 0px; margin-bottom: 0px; width: 512px; max-width: 512px; padding: 0px;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"bg-color-background-container \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2HRAX0YtDgSXU1&amp;trk=eml-email_pymk_02-header-0-home_glimmer_static_badging_with_count&amp;trkEmail=eml-email_pymk_02-header-0-home_glimmer_static_badging_with_count-null-poh2nf~mf7jpjd6~a2-null-null&amp;eid=poh2nf-mf7jpjd6-a2&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjU4ZWM3ZDc0MjljYTY4ZTZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlYWZhODcwMWJlZWQ4MjMwODNiN2M3NTA4NjU0YjRkNTVlNzY2MjlhMzFlMzdjMjMsMSwx\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img class=\"h-[37px] w-[101px]\" alt=\"LinkedIn\" src=\"https://static.licdn.com/aero-v1/sc/h/2fp5x7ci191mxbdy1eynscn59\" data-test-header-static-badging-img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 37px; width: 101px;\" width=\"101\" height=\"37\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" data-test-header-notification-badges style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/messaging/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2HRAX0YtDgSXU1&amp;trk=eml-email_pymk_02-header-0-messaging_glimmer&amp;trkEmail=eml-email_pymk_02-header-0-messaging_glimmer-null-poh2nf~mf7jpjd6~a2-null-null&amp;eid=poh2nf-mf7jpjd6-a2&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjU4ZWM3ZDc0MjljYTY4ZTZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlYWZhODcwMWJlZWQ4MjMwODNiN2M3NTA4NjU0YjRkNTVlNzY2MjlhMzFlMzdjMjMsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Messaging icon\" src=\"https://static.licdn.com/aero-v1/sc/h/ekkp8yi9j4xx65umpdz3rdmbp\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2HRAX0YtDgSXU1&amp;trk=eml-email_pymk_02-header-0-my_network_glimmer&amp;trkEmail=eml-email_pymk_02-header-0-my_network_glimmer-null-poh2nf~mf7jpjd6~a2-null-null&amp;eid=poh2nf-mf7jpjd6-a2&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjU4ZWM3ZDc0MjljYTY4ZTZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlYWZhODcwMWJlZWQ4MjMwODNiN2M3NTA4NjU0YjRkNTVlNzY2MjlhMzFlMzdjMjMsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Mynetwork icon\" src=\"https://static.licdn.com/aero-v1/sc/h/4yxfb6j5ycpjfjgehfqgmdx9w\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/notifications/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2HRAX0YtDgSXU1&amp;trk=eml-email_pymk_02-header-0-notifications_glimmer&amp;trkEmail=eml-email_pymk_02-header-0-notifications_glimmer-null-poh2nf~mf7jpjd6~a2-null-null&amp;eid=poh2nf-mf7jpjd6-a2&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjU4ZWM3ZDc0MjljYTY4ZTZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlYWZhODcwMWJlZWQ4MjMwODNiN2M3NTA4NjU0YjRkNTVlNzY2MjlhMzFlMzdjMjMsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Notifications icon\" src=\"https://static.licdn.com/aero-v1/sc/h/eh1e9j5bszh6p379hn269p3ps\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"px-0 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 0px; padding-right: 0px; padding-bottom: 24px;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"pymk-hero-banner\"> <td class=\"px-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"px-3 py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px; padding-left: 24px; padding-right: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/in/scott-perry-5989a120?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2HRAX0YtDgSXU1&amp;trk=eml-email_pymk_02-pymk_hero-0-profile_name_link&amp;trkEmail=eml-email_pymk_02-pymk_hero-0-profile_name_link-null-poh2nf~mf7jpjd6~a2-null-null&amp;eid=poh2nf-mf7jpjd6-a2&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjU4ZWM3ZDc0MjljYTY4ZTZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlYWZhODcwMWJlZWQ4MjMwODNiN2M3NTA4NjU0YjRkNTVlNzY2MjlhMzFlMzdjMjMsMSwx\" target=\"_blank\" class=\"text-system-gray-90\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #282828;\"> <h2 class=\"text-lg font-semibold leading-regular\" data-test-id=\"pymk-hero_header\" style=\"margin: 0; font-size: 20px; font-weight: 600; line-height: 1.25;\"> Do you know Scott? </h2> </a> </td> </tr> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <h4 class=\"text-sm text-system-gray-90 leading-regular\" data-test-id=\"pymk-hero_subheader\" style=\"margin: 0; font-weight: 500; font-size: 14px; line-height: 1.25; color: #282828;\"> Request to connect with members you know and trust </h4> </td> </tr> <tr> <td class=\"pt-[10px]\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 10px;\"> <a href=\"https://www.linkedin.com/comm/in/scott-perry-5989a120?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2HRAX0YtDgSXU1&amp;trk=eml-email_pymk_02-pymk_hero-0-profile_image&amp;trkEmail=eml-email_pymk_02-pymk_hero-0-profile_image-null-poh2nf~mf7jpjd6~a2-null-null&amp;eid=poh2nf-mf7jpjd6-a2&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjU4ZWM3ZDc0MjljYTY4ZTZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlYWZhODcwMWJlZWQ4MjMwODNiN2M3NTA4NjU0YjRkNTVlNzY2MjlhMzFlMzdjMjMsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px]\" src=\"https://static.licdn.com/aero-v1/sc/h/4eby4moebno1i6r34if7lud8o\" alt=\"Scott Perry’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </a> </td> </tr> <tr> <td class=\"pt-[10px]\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 10px;\"> <a href=\"https://www.linkedin.com/comm/in/scott-perry-5989a120?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2HRAX0YtDgSXU1&amp;trk=eml-email_pymk_02-pymk_hero-0-profile_name_link&amp;trkEmail=eml-email_pymk_02-pymk_hero-0-profile_name_link-null-poh2nf~mf7jpjd6~a2-null-null&amp;eid=poh2nf-mf7jpjd6-a2&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjU4ZWM3ZDc0MjljYTY4ZTZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlYWZhODcwMWJlZWQ4MjMwODNiN2M3NTA4NjU0YjRkNTVlNzY2MjlhMzFlMzdjMjMsMSwx\" target=\"_blank\" class=\"text-system-gray-90\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #282828;\"> <h2 class=\"text-lg font-semibold leading-regular\" style=\"margin: 0; font-size: 20px; font-weight: 600; line-height: 1.25;\"> Scott Perry </h2> </a> </td> </tr> <tr> <td class=\"text-xs text-system-gray-90 leading-regular pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px; font-size: 12px; line-height: 1.25; color: #282828;\"> Chief Executive Officer </td> </tr> <tr> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/scott-perry-5989a120/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midSig=2HRAX0YtDgSXU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A74113028-null-poh2nf%7Emf7jpjd6%7Ea2-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A74113028&amp;_sig=3vbyflv6HgSXU1\" target=\"_blank\" aria-label=\"Connect\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid w-[100vw] max-w-[400px]\" data-test-id=\"pymk-hero_default-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; width: 100vw; max-width: 400px; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/scott-perry-5989a120/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midSig=2HRAX0YtDgSXU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A74113028-null-poh2nf%7Emf7jpjd6%7Ea2-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A74113028&amp;_sig=3vbyflv6HgSXU1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"pymk-section-header\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <h2 class=\"text-lg font-semibold leading-regular text-system-gray-90 text-center\" style=\"margin: 0; text-align: center; font-size: 20px; font-weight: 600; line-height: 1.25; color: #282828;\"> More people you may know </h2> </td> </tr> <tr data-test-id=\"pymk-section-body\"> <td align=\"center\" class=\"pt-1.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"></td> <td class=\"pr-1 w-[400px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 400px; padding-right: 8px;\" width=\"400\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"w-1/2 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/dangaertner?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2HRAX0YtDgSXU1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mf7jpjd6~a2-null-null&amp;eid=poh2nf-mf7jpjd6-a2&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjU4ZWM3ZDc0MjljYTY4ZTZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlYWZhODcwMWJlZWQ4MjMwODNiN2M3NTA4NjU0YjRkNTVlNzY2MjlhMzFlMzdjMjMsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQEEuQh7xnTPqg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1719718305607?e=2147483647&amp;v=beta&amp;t=6Um88_7hDLo9sV67i8_0IUNBDk5YR1yKfKvBP234_6A\" alt=\"Dan Gaertner’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Dan Gaertner </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer at onPhase </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/dangaertner/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midSig=2HRAX0YtDgSXU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A22282909-null-poh2nf%7Emf7jpjd6%7Ea2-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A22282909&amp;_sig=2Gn2EBQxDgSXU1\" target=\"_blank\" aria-label=\"Connect with Dan Gaertner\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/dangaertner/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midSig=2HRAX0YtDgSXU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A22282909-null-poh2nf%7Emf7jpjd6%7Ea2-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A22282909&amp;_sig=2Gn2EBQxDgSXU1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"w-1/2 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/angelicaconnor?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2HRAX0YtDgSXU1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mf7jpjd6~a2-null-null&amp;eid=poh2nf-mf7jpjd6-a2&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjU4ZWM3ZDc0MjljYTY4ZTZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlYWZhODcwMWJlZWQ4MjMwODNiN2M3NTA4NjU0YjRkNTVlNzY2MjlhMzFlMzdjMjMsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQGOOVHRhAh72Q/profile-displayphoto-shrink_400_400/B4EZSzZRj5HcAg-/0/1738176535151?e=2147483647&amp;v=beta&amp;t=0_Xf7QVhvRk8Unx9yFAHJ1HlX-mpbZ3khPzzt84l1D0\" alt=\"Angelica Connor’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Angelica Connor </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer at Stansell… </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/angelicaconnor/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midSig=2HRAX0YtDgSXU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A617056094-null-poh2nf%7Emf7jpjd6%7Ea2-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A617056094&amp;_sig=3JUJnC-ZngSXU1\" target=\"_blank\" aria-label=\"Connect with Angelica Connor\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/angelicaconnor/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midSig=2HRAX0YtDgSXU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A617056094-null-poh2nf%7Emf7jpjd6%7Ea2-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A617056094&amp;_sig=3JUJnC-ZngSXU1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/aerter?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2HRAX0YtDgSXU1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mf7jpjd6~a2-null-null&amp;eid=poh2nf-mf7jpjd6-a2&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjU4ZWM3ZDc0MjljYTY4ZTZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlYWZhODcwMWJlZWQ4MjMwODNiN2M3NTA4NjU0YjRkNTVlNzY2MjlhMzFlMzdjMjMsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/C5603AQF751KrXLarfw/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1662241054557?e=2147483647&amp;v=beta&amp;t=rzAI6nwUfJwdIva3lmdLOMIWFoYsdgym1kq45j8hpX8\" alt=\"Aaron Erter’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Aaron Erter </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/aerter/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midSig=2HRAX0YtDgSXU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A15620145-null-poh2nf%7Emf7jpjd6%7Ea2-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A15620145&amp;_sig=3vQSpS267gSXU1\" target=\"_blank\" aria-label=\"Connect with Aaron Erter\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/aerter/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midSig=2HRAX0YtDgSXU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A15620145-null-poh2nf%7Emf7jpjd6%7Ea2-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A15620145&amp;_sig=3vQSpS267gSXU1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/chuck-shaffer-0504276?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2HRAX0YtDgSXU1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mf7jpjd6~a2-null-null&amp;eid=poh2nf-mf7jpjd6-a2&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjU4ZWM3ZDc0MjljYTY4ZTZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlYWZhODcwMWJlZWQ4MjMwODNiN2M3NTA4NjU0YjRkNTVlNzY2MjlhMzFlMzdjMjMsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQGBADA1DAedXw/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1714914797056?e=2147483647&amp;v=beta&amp;t=OVSUT5akb42LwJuhydZiDbj7_MdARpBOdtqP6689DXI\" alt=\"Chuck Shaffer’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Chuck Shaffer </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer at Seacoast Bank </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/chuck-shaffer-0504276/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midSig=2HRAX0YtDgSXU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A18964860-null-poh2nf%7Emf7jpjd6%7Ea2-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A18964860&amp;_sig=16eM9xL7zgSXU1\" target=\"_blank\" aria-label=\"Connect with Chuck Shaffer\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/chuck-shaffer-0504276/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midSig=2HRAX0YtDgSXU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A18964860-null-poh2nf%7Emf7jpjd6%7Ea2-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A18964860&amp;_sig=16eM9xL7zgSXU1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/carwin-martinez?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2HRAX0YtDgSXU1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mf7jpjd6~a2-null-null&amp;eid=poh2nf-mf7jpjd6-a2&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjU4ZWM3ZDc0MjljYTY4ZTZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlYWZhODcwMWJlZWQ4MjMwODNiN2M3NTA4NjU0YjRkNTVlNzY2MjlhMzFlMzdjMjMsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/D5603AQGegseIOxT_yQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1708441273897?e=2147483647&amp;v=beta&amp;t=mCbQ5ZUYLwtzLnx6nIMz2ciQ9yWDTW1a3ghXULjUWOY\" alt=\"Carwin Martinez’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Carwin Martinez </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Founder and Chief Executive Officer |… </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/carwin-martinez/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midSig=2HRAX0YtDgSXU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A783842101-null-poh2nf%7Emf7jpjd6%7Ea2-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A783842101&amp;_sig=2SGMp3jgTgSXU1\" target=\"_blank\" aria-label=\"Connect with Carwin Martinez\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/carwin-martinez/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midSig=2HRAX0YtDgSXU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A783842101-null-poh2nf%7Emf7jpjd6%7Ea2-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A783842101&amp;_sig=2SGMp3jgTgSXU1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/ralph-cuti%C3%A9-ba3226a3?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2HRAX0YtDgSXU1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mf7jpjd6~a2-null-null&amp;eid=poh2nf-mf7jpjd6-a2&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjU4ZWM3ZDc0MjljYTY4ZTZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlYWZhODcwMWJlZWQ4MjMwODNiN2M3NTA4NjU0YjRkNTVlNzY2MjlhMzFlMzdjMjMsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/C5603AQGrQZbtmsa2QA/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1626354798814?e=2147483647&amp;v=beta&amp;t=oHtbuoe7ohYjiuZZtUy_C1lMe8fs1WSzzjLnNISSXzs\" alt=\"Ralph Cutié’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Ralph Cutié </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Director and Chief Executive Officer </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/ralph-cuti%C3%A9-ba3226a3/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midSig=2HRAX0YtDgSXU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A367827243-null-poh2nf%7Emf7jpjd6%7Ea2-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A367827243&amp;_sig=1D1zzI_yPgSXU1\" target=\"_blank\" aria-label=\"Connect with Ralph Cutié\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/ralph-cuti%C3%A9-ba3226a3/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midSig=2HRAX0YtDgSXU1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A367827243-null-poh2nf%7Emf7jpjd6%7Ea2-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A367827243&amp;_sig=1D1zzI_yPgSXU1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"></td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 px-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button px-3\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/add-connections/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2HRAX0YtDgSXU1&amp;trk=eml-email_pymk_02-see_more-0-cta&amp;trkEmail=eml-email_pymk_02-see_more-0-cta-null-poh2nf~mf7jpjd6~a2-null-null&amp;eid=poh2nf-mf7jpjd6-a2&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjU4ZWM3ZDc0MjljYTY4ZTZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlYWZhODcwMWJlZWQ4MjMwODNiN2M3NTA4NjU0YjRkNTVlNzY2MjlhMzFlMzdjMjMsMSwx\" target=\"_blank\" aria-label=\"See more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/add-connections/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2HRAX0YtDgSXU1&amp;trk=eml-email_pymk_02-see_more-0-cta&amp;trkEmail=eml-email_pymk_02-see_more-0-cta-null-poh2nf~mf7jpjd6~a2-null-null&amp;eid=poh2nf-mf7jpjd6-a2&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjU4ZWM3ZDc0MjljYTY4ZTZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlYWZhODcwMWJlZWQ4MjMwODNiN2M3NTA4NjU0YjRkNTVlNzY2MjlhMzFlMzdjMjMsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> See more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-lg text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 20px; color: #114951;\"> Get the new LinkedIn desktop app </h2> </td> </tr> <tr> <td class=\"text-center pb-2\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <a href=\"https://apps.microsoft.com/store/detail/9WZDNCRFJ4Q7?launch=true&amp;cid=linkedin_email_upsell&amp;mode=full\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it from Microsoft\" src=\"https://static.licdn.com/aero-v1/sc/h/ejpkkpwvqks31a3cjqokb7fbm\" class=\"h-[40px] w-[112px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 112px;\" width=\"112\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-md text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 16px; color: #114951;\"> Also available on mobile </h2> </td> </tr> <tr> <td class=\"text-center\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <a href=\"https://itunes.apple.com/us/app/linkedin/id288429040?pt=10746&amp;ct=st_appsite_flagship&amp;mt=8\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Download on the App Store\" src=\"https://static.licdn.com/aero-v1/sc/h/76yzkd0h5kiv27lrd4yaenylk\" class=\"h-[40px] w-[120px] pr-1\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 120px; padding-right: 8px;\" width=\"120\" height=\"40\"> </a> <a href=\"https://play.google.com/store/apps/details?id=com.linkedin.android&amp;referrer=st_appsite_flagship\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it on Google Play\" src=\"https://static.licdn.com/aero-v1/sc/h/142qudwblp58zwmc9vkqfplug\" class=\"h-[40px] w-[134px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 134px;\" width=\"134\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px;\"><hr class=\"border-none bg-[#e0dfdd] h-[1px]\" style=\"height: 1px; border-style: none; background-color: #e0dfdd;\"></td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" data-test-id=\"email-footer__intended\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2HRAX0YtDgSXU1&amp;trk=eml-email_pymk_02-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_pymk_02-SecurityHelp-0-footerglimmer-null-poh2nf~mf7jpjd6~a2-null-null&amp;eid=poh2nf-mf7jpjd6-a2&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjU4ZWM3ZDc0MjljYTY4ZTZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlYWZhODcwMWJlZWQ4MjMwODNiN2M3NTA4NjU0YjRkNTVlNzY2MjlhMzFlMzdjMjMsMSwx\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving People You May Know notification emails.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2HRAX0YtDgSXU1&amp;trk=eml-email_pymk_02-unsubscribe-0-footerGlimmer&amp;trkEmail=eml-email_pymk_02-unsubscribe-0-footerGlimmer-null-poh2nf~mf7jpjd6~a2-null-null&amp;eid=poh2nf-mf7jpjd6-a2&amp;loid=AQH-MmgcHKnLbAAAAZkcf2fyiK-zeq3OT70GbO3vdaRQVDTSmSjr4gCKB7X9nJPoJC8XN2Dq40f6BHShxKJLSAUuoMfctmdzK4ok\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Unsubscribe</a>   ·   <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2HRAX0YtDgSXU1&amp;trk=eml-email_pymk_02-help-0-footerglimmer&amp;trkEmail=eml-email_pymk_02-help-0-footerglimmer-null-poh2nf~mf7jpjd6~a2-null-null&amp;eid=poh2nf-mf7jpjd6-a2&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjU4ZWM3ZDc0MjljYTY4ZTZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlYWZhODcwMWJlZWQ4MjMwODNiN2M3NTA4NjU0YjRkNTVlNzY2MjlhMzFlMzdjMjMsMSwx\" target=\"_blank\" data-test-help-link class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2HRAX0YtDgSXU1&amp;trk=eml-email_pymk_02-footer-0-logoGlimmer&amp;trkEmail=eml-email_pymk_02-footer-0-logoGlimmer-null-poh2nf~mf7jpjd6~a2-null-null&amp;eid=poh2nf-mf7jpjd6-a2&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjU4ZWM3ZDc0MjljYTY4ZTZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlYWZhODcwMWJlZWQ4MjMwODNiN2M3NTA4NjU0YjRkNTVlNzY2MjlhMzFlMzdjMjMsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/aero-v1/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFtTjJwd2FtUTJMV0V5OlpXMWhhV3hmY0hsdGExOHdNZz09Og==.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','Do you know Scott Perry?\r\n\r\nYes, connect: https://www.linkedin.com/comm/mynetwork/send-invite/scott-perry-5989a120/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&midSig=2HRAX0YtDgSXU1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A74113028-null-poh2nf%7Emf7jpjd6%7Ea2-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A74113028&_sig=3vbyflv6HgSXU1\r\n\r\n\r\nMore people you may know\r\n            \r\n    Dan Gaertner\r\nChief Executive Officer at onPhase\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/dangaertner/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&midSig=2HRAX0YtDgSXU1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A22282909-null-poh2nf%7Emf7jpjd6%7Ea2-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A22282909&_sig=2Gn2EBQxDgSXU1\r\n            \r\n    Angelica Connor\r\nChief Executive Officer at Stansell Construction | WBE\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/angelicaconnor/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&midSig=2HRAX0YtDgSXU1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A617056094-null-poh2nf%7Emf7jpjd6%7Ea2-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A617056094&_sig=3JUJnC-ZngSXU1\r\n            \r\n    Aaron Erter\r\nChief Executive Officer\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/aerter/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&midSig=2HRAX0YtDgSXU1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A15620145-null-poh2nf%7Emf7jpjd6%7Ea2-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A15620145&_sig=3vQSpS267gSXU1\r\n            \r\n    Chuck Shaffer\r\nChief Executive Officer at Seacoast Bank\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/chuck-shaffer-0504276/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&midSig=2HRAX0YtDgSXU1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A18964860-null-poh2nf%7Emf7jpjd6%7Ea2-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A18964860&_sig=16eM9xL7zgSXU1\r\n            \r\n    Carwin Martinez\r\nFounder and Chief Executive Officer | Marketing Campaigns, Advertising Campaigns\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/carwin-martinez/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&midSig=2HRAX0YtDgSXU1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A783842101-null-poh2nf%7Emf7jpjd6%7Ea2-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A783842101&_sig=2SGMp3jgTgSXU1\r\n\r\nSee more people you might know:https://www.linkedin.com/comm/mynetwork/add-connections/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&midToken=AQE-iPshthTClw&midSig=2HRAX0YtDgSXU1&trk=eml-email_pymk_02-see_more-0-cta~text&trkEmail=eml-email_pymk_02-see_more-0-cta~text-null-poh2nf~mf7jpjd6~a2-null-null&eid=poh2nf-mf7jpjd6-a2&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjU4ZWM3ZDc0MjljYTY4ZTZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlYWZhODcwMWJlZWQ4MjMwODNiN2M3NTA4NjU0YjRkNTVlNzY2MjlhMzFlMzdjMjMsMSwx\r\n      \r\n\r\n----------------------------------------\r\n\r\nThis email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\nLearn why we included this: https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&midToken=AQE-iPshthTClw&midSig=2HRAX0YtDgSXU1&trk=eml-email_pymk_02-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_pymk_02-SecurityHelp-0-textfooterglimmer-null-poh2nf~mf7jpjd6~a2-null-null&eid=poh2nf-mf7jpjd6-a2&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjU4ZWM3ZDc0MjljYTY4ZTZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlYWZhODcwMWJlZWQ4MjMwODNiN2M3NTA4NjU0YjRkNTVlNzY2MjlhMzFlMzdjMjMsMSwx\r\nYou are receiving People You May Know notification emails.\r\n\r\n\r\nUnsubscribe: https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&midToken=AQE-iPshthTClw&midSig=2HRAX0YtDgSXU1&trk=eml-email_pymk_02-unsubscribe-0-textfooterglimmer&trkEmail=eml-email_pymk_02-unsubscribe-0-textfooterglimmer-null-poh2nf~mf7jpjd6~a2-null-null&eid=poh2nf-mf7jpjd6-a2&loid=AQH-MmgcHKnLbAAAAZkcf2fyiK-zeq3OT70GbO3vdaRQVDTSmSjr4gCKB7X9nJPoJC8XN2Dq40f6BHShxKJLSAUuoMfctmdzK4ok\r\nHelp: https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BGnrrdTAdRMasLG2peW47kw%3D%3D&midToken=AQE-iPshthTClw&midSig=2HRAX0YtDgSXU1&trk=eml-email_pymk_02-help-0-textfooterglimmer&trkEmail=eml-email_pymk_02-help-0-textfooterglimmer-null-poh2nf~mf7jpjd6~a2-null-null&eid=poh2nf-mf7jpjd6-a2&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjU4ZWM3ZDc0MjljYTY4ZTZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlYWZhODcwMWJlZWQ4MjMwODNiN2M3NTA4NjU0YjRkNTVlNzY2MjlhMzFlMzdjMjMsMSwx\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.\r\nLinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',0,0,0,0,0,0,'2025-09-06 00:48:56','2025-12-09 19:28:10','2025-12-09 19:28:10','2025-12-09 19:28:10',NULL,NULL,NULL),
(688,4,'<9Q8EQ2CZ4RU4.MKDME5TELVDK@bouncing.email.leatherman.com>',NULL,NULL,'Fresh for Fall: NEW Micra Colors Inside','leatherman@email.leatherman.com','Leatherman','<!DOCTYPE html\r\n    PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\r\n<title>Fresh for Fall: NEW Micra Colors Inside</title>\r\n<meta name=\"referrer\" content=\"never\">\r\n<style>p{margin:0;padding:0;line-height:125%;line-height:1.25;mso-line-height-rule:at-least}[dir=rtl],[dir=rtl] [align=right] *{text-align:right}[dir=rtl] [align=left] *{text-align:left}s span{text-decoration:line-through}u span{text-decoration:underline}.dividerWrapper p span{line-height:0}ol,ul{margin-top:15px;margin-bottom:15px;line-height:125%;line-height:1.25;mso-line-height-rule:at-least;padding-inline-end:0;padding-inline-start:40px}p img{max-width:100%}a{text-decoration:none}u a{text-decoration:underline}h1{font-size:28px}h2{font-size:22px}h3{font-size:18px}h1,h2,h3,h4{margin:0;line-height:125%;line-height:1.25}.imageWrapper a img{text-decoration:none;border:0}th.columnContainer,th.inner{font-weight:400;text-align:left}[dir=rtl] th.columnContainer,[dir=rtl] th.inner{font-weight:400;text-align:right}img{max-width:100%!important}.hide-on-desktop-class{display:none}body,div{font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:#fff}div div{background-color:transparent}[data-layout=true]{margin:0 auto;max-width:600px}p{margin:0;padding:0;line-height:20px;mso-line-height-rule:at-least}ol,ul{margin-top:15px;margin-bottom:15px;line-height:20px;mso-line-height-rule:at-least}p img{max-width:100%}a{text-decoration:underline;text-decoration-color:#fff}u a{text-decoration:underline}h1,h2,h3,h4{margin:0}.imageWrapper a img{text-decoration:none;border:0}body[data-outlook-cycle] .tbContainer{display:block!important}body[data-outlook-cycle] .tbContainer.multi table{table-layout:fixed;height:auto!important}body[data-outlook-cycle] .tbContainer.multi td{width:auto!important;min-height:auto!important}body[data-outlook-cycle] .tbContainer.multi tr td{display:block}body[data-outlook-cycle] .tbContainer.multi .inner{height:auto!important;min-height:auto!important}body[data-outlook-cycle] .tbContainer .inner{box-sizing:border-box}body[data-outlook-cycle] .outer{width:auto!important}body[data-outlook-cycle] .tbContainer .columnContainer table{table-layout:fixed!important}body[data-outlook-cycle] .innerTable{min-height:auto!important}@media only screen and (max-width:768px){.tbContainer{display:block!important}a span{line-height:inherit!important}.multi table{table-layout:fixed;height:auto!important}.multi td{width:auto!important;min-height:auto!important}.multi tr,.multi tr td{display:block}.multi .inner{height:auto!important;min-height:auto!important}.tbContainer .inner{box-sizing:border-box}.outer{width:auto!important}.tbContainer .columnContainer table{table-layout:fixed!important}.innerTable{min-height:auto!important}.no-wrap-section .outer .multi tbody tr td,.no-wrap-section .outer .multi tbody tr th{display:table-cell!important}.no-wrap-section .outer .multi tbody tr td.inner,.no-wrap-section .outer .multi tbody tr th.inner{display:block!important}.no-wrap-section .outer .multi .dividerWrapper tbody tr td,.no-wrap-section .outer .multi .dividerWrapper tbody tr th{display:block!important}.no-wrap-section .containerWrapper tr{display:flex!important}.no-wrap-section .containerWrapper .innerTable tr{display:block!important}.hide-on-mobile-class{display:none!important}.hide-on-desktop-class{display:block!important}.hide-on-desktop-class.hide-on-mobile-class{display:none!important}.tbContainer{display:block!important}a span{line-height:inherit!important}.multi table{table-layout:fixed;height:auto!important}.multi td{width:auto!important;min-height:0!important}.multi tbody,.multi tbody tr,.multi tbody tr td,.multi tbody tr th,.outer tbody,.outer tbody tr,.outer tbody tr td,.outer tbody tr th{display:block!important;box-sizing:border-box;height:auto!important;min-height:0!important}.wrap-section .multi tbody,.wrap-section .multi tbody tr,.wrap-section .multi tbody tr td,.wrap-section .multi tbody tr th,.wrap-section .outer tbody,.wrap-section .outer tbody tr,.wrap-section .outer tbody tr td,.wrap-section .outer tbody tr th{width:100%!important}.wrap-section .outer{display:table}.wrap-section .multi tbody,.wrap-section .outer tbody{display:table-row-group}.wrap-section .multi tbody tr,.wrap-section .outer tbody tr{display:table-row}.wrap-section .multi tbody tr td,.wrap-section .multi tbody tr th,.wrap-section .outer tbody tr td,.wrap-section .outer tbody tr th{display:table-cell}.wrap-section .multi tbody tr td .columnContainer,.wrap-section .multi tbody tr th .columnContainer,.wrap-section .outer tbody tr td .columnContainer,.wrap-section .outer tbody tr th .columnContainer{display:inline}.wrap-section .multi tbody tr td .inner,.wrap-section .multi tbody tr th .inner,.wrap-section .outer tbody tr td .inner,.wrap-section .outer tbody tr th .inner{display:table-cell}.multi .inner{height:auto!important;min-height:0!important}.tbContainer .inner{box-sizing:border-box}.outer{width:100%!important}.tbContainer .columnContainer table{table-layout:fixed!important}.tbContainer .columnContainer>table{height:auto!important}.innerTable{min-height:0!important}.no-wrap-section .outer{display:table!important;border-collapse:separate!important}.no-wrap-section .multi table{height:100%!important}.no-wrap-section .multi tbody,.no-wrap-section .outer tbody{display:table-row-group!important;width:100%!important}.no-wrap-section .multi tbody tr,.no-wrap-section .outer tbody tr{display:table-row!important;width:100%!important}.no-wrap-section .multi tbody tr td,.no-wrap-section .multi tbody tr th,.no-wrap-section .outer tbody tr td,.no-wrap-section .outer tbody tr th{display:table-cell!important}.no-wrap-section.columns-equal-class .outer tbody tr td,.no-wrap-section.columns-equal-class .outer tbody tr th{height:0!important}.no-wrap-section .outer tbody tr td.inner,.no-wrap-section .outer tbody tr th.inner{width:100%!important;height:auto!important}a[x-apple-data-detectors]{color:inherit!important;text-decoration:none!important;font-size:inherit!important;font-family:inherit!important;font-weight:inherit!important;line-height:inherit!important}.hide-on-mobile-class{display:none!important}.hide-on-desktop-class{display:block!important}.hide-on-desktop-class.hide-on-mobile-class{display:none!important}}.hide-on-desktop-class{display:none}</style><!--[if gte mso 9]>\r\n<xml><o:OfficeDocumentSettings><o:AllowPNG/><o:PixelsPerInch>96</o:PixelsPerInch></o:OfficeDocumentSettings></xml>\r\n<![endif]--><!--[if gte mso 9]>\r\n<xml><w:WordDocument>\r\n<w:DontUseAdvancedTypographyReadingMail xmlns:w=\"urn:schemas-microsoft-com:office:word\"/>\r\n</w:WordDocument></xml>\r\n<![endif]-->\r\n</head><body style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:#fff;background:#fff\"><!--[if !mso]><!--><div id=\"preheader\" style=\"display: none; max-height: 0px; overflow: hidden;\">From Fog to Wine and Spruce to Spice<br>&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp; &nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp; &nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp; &nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp; &nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;<br>&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp; &nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp; &nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp; &nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp; &nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;</div><!----><!--[endif]----><!--[if gte mso 9]> <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" style=\"border-collapse: collapse;\"><tr><th style=\"margin-bottom:0; margin-top:0; padding:0; background-color: rgb(255, 255, 255); border-width: ; border-style: ; border-color: ; border-collapse: collapse;\"> <![endif]--><div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:#fff;margin:auto;max-width:600px\"><!--[if gte mso 9]> </div><div style=\"background-color: transparent; border:none;\"> <![endif]-->\r\n<div class=\"emptyContainer columns-equal-class wrap-section\" style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:rgba(0,0,0,0);margin:0;border-radius:0\"><!--[if gte mso 9]> </div><div style=\"background-color: transparent; border:none;\"> <![endif]-->\r\n<table class=\"outer\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;display:block\" role=\"presentation\">\r\n<tbody>\r\n<!--[if gte mso 9]> <tr><td  style=\"font-size: 0px; line-height:0px;mso-line-height-rule: exactly; display: none !important; mso-hide:all;background-color: rgba(0, 0, 0, 0);\"><p style=\"font-size: 0px;height:0px; margin: 0px; padding:0;line-height: 0px; mso-line-height-rule: exactly; background-color: transparent;\"><br/></p></td></tr> <![endif]--><tr>\r\n<th style=\"padding:0;background-color:rgba(0,0,0,0);border-color:#5f6062;border-width:1px;border-style:none;background-position:50% 50%;background-size:cover;border-radius:0\" role=\"presentation\">\r\n<table style=\"width:100%;border-collapse:collapse\" class=\"containerWrapper tbContainer\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\r\n<tbody>\r\n<tr>\r\n<td class=\"columnContainer\" style=\"min-width:20px;width:600px;padding:0;background-color:rgba(0,0,0,0);vertical-align:top\">\r\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse\" role=\"presentation\">\r\n<tbody>\r\n<tr>\r\n<td class=\"inner ui-sortable\" style=\"min-width:20px;padding:0;vertical-align:top;word-wrap:break-word;word-break:break-word;background-color:rgba(0,0,0,0);border-color:#5f6062;border-width:1px;border-style:none;background-position:50% 50%;background-size:cover;border-radius:0\" align=\"left\"><div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;padding:0;margin:0\">\r\n<div align=\"Center\" class=\"imageWrapper\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:14px; color:#fff; background-color:transparent;\">\r\n<a href=\"https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/wVatle7oqES91mDaqqwCAAAAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.leatherman.com%252F%253Futm_source%253DD365%2526utm_medium%253Demail%2526utm_campaign%253D250902_Micra_Colors_Launch_US%2526utm_id%253D250902_Micra_Colors_Launch_US%22%2C%22RedirectOptions%22%3A%7B%226%22%3A%22mktprf5786c8deeb6347afbd6257be796c9af0eoprf%22%2C%221%22%3Anull%7D%7D&msdynmkt_digest=QhYqcPgTp7P8p4OESK6TqDrP0eZNF5JR7rJuma7n5J4%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf\" data-msdyn-tracking-id=\"7b90ca9ddb1271692815274022\" style=\"text-decoration:underline;text-decoration-color:#fff\"><!--[if gte mso 9]> <img src=\"https://assets-usa.mkt.dynamics.com/5d162280-f9ef-450a-aac0-46e4c9a0c659/digitalassets/images/4d6a115a-c10b-4a13-855f-b386b90f9948\" style=\"text-decoration: none; border: 0px; max-height: 100%; box-sizing: border-box; margin: 0px; position: relative; display: block; top: 0px; left: 0px; border-radius: 0px; max-width: 100% !important;\" alt=\"Shop multi-tools and knives at Leatherman.com\" width=\"600\"> <![endif]--> <!--[if !mso]> <!----><img src=\"https://assets-usa.mkt.dynamics.com/5d162280-f9ef-450a-aac0-46e4c9a0c659/digitalassets/images/4d6a115a-c10b-4a13-855f-b386b90f9948\" style=\"text-decoration:none;border:0;max-height:100%;box-sizing:border-box;margin:0;position:relative;display:block;top:0;left:0;border-radius:0;max-width:100%!important\" alt=\"Shop multi-tools and knives at Leatherman.com\"><!--[endif]----></a>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n<!--[if gte mso 9]> <tr><td  style=\"font-size: 0px; line-height:0px;mso-line-height-rule: exactly; display: none !important; mso-hide:all;background-color: rgba(0, 0, 0, 0);\"><p style=\"font-size: 0px;height:0px; margin: 0px; padding:0;line-height: 0px; mso-line-height-rule: exactly; background-color: transparent;\"><br/></p></td></tr> <![endif]--></tbody>\r\n</table>\r\n</div><div class=\"columns-equal-class wrap-section\" style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:rgba(0,0,0,0);margin:0;border-radius:0\"><!--[if gte mso 9]> </div><div style=\"background-color: transparent; border:none;\"> <![endif]-->\r\n<table class=\"outer\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;display:block\" role=\"presentation\">\r\n<tbody>\r\n<!--[if gte mso 9]> <tr><td  style=\"font-size: 0px; line-height:0px;mso-line-height-rule: exactly; display: none !important; mso-hide:all;background-color: rgba(0, 0, 0, 0);\"><p style=\"font-size: 0px;height:0px; margin: 0px; padding:0;line-height: 0px; mso-line-height-rule: exactly; background-color: transparent;\"><br/></p></td></tr> <![endif]--><tr>\r\n<th style=\"padding:0;background-color:rgba(0,0,0,0);border-color:#5f6062;border-width:1px;border-style:none;background-position:50% 50%;background-size:cover;border-radius:0\" role=\"presentation\">\r\n<table style=\"display:block;width:100%;border-collapse:collapse\" class=\"containerWrapper tbContainer\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\r\n<tbody>\r\n<tr>\r\n<td class=\"columnContainer\" style=\"min-width:5px;width:600px;padding:0;background-color:rgba(0,0,0,0);vertical-align:top\">\r\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse\" role=\"presentation\">\r\n<tbody>\r\n<tr>\r\n<td class=\"inner ui-sortable\" style=\"min-width:5px;padding:0;vertical-align:top;word-wrap:break-word;word-break:break-word;background-color:rgba(0,0,0,0);border-color:#5f6062;border-width:1px;border-style:none;background-position:50% 50%;background-size:cover;border-radius:0\" align=\"left\"><div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;padding:0;margin:0\">\r\n<div align=\"Center\" class=\"imageWrapper\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:14px; color:#fff; background-color:transparent;\"><a href=\"https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/wVatle7oqES91mDaqqwCAAEAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.leatherman.com%252Fproducts%252Fmicra%253Fvariant%253D43624314470493%2526utm_source%253DD365%2526utm_medium%253Demail%2526utm_campaign%253D250902_Micra_Colors_Launch_US%2526utm_id%253D250902_Micra_Colors_Launch_US%22%2C%22RedirectOptions%22%3A%7B%226%22%3A%22mktprf5786c8deeb6347afbd6257be796c9af0eoprf%22%2C%221%22%3Anull%7D%7D&msdynmkt_digest=sa4W7AtxdJG%2Bbklg6%2Fi7VNrihy4QZEL9op6hdvzcIto%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf\" data-msdyn-tracking-id=\"6a5cc7f2a85ca1756843377497\" style=\"text-decoration:underline;text-decoration-color:#fff\"><!--[if gte mso 9]> <img style=\"text-decoration: none; border: 0px; max-height: 100%; box-sizing: border-box; margin: 0px; position: relative; display: block; top: 0px; left: 0px; border-radius: 0px; max-width: 100% !important;\" src=\"https://assets-usa.mkt.dynamics.com/5d162280-f9ef-450a-aac0-46e4c9a0c659/digitalassets/images/9a7b4045-3688-f011-b4cc-000d3a5b77e4?ts=638924395164172709\" alt=\"New Fall Hues\" width=\"600\"> <![endif]--> <!--[if !mso]> <!----><img style=\"text-decoration:none;border:0;max-height:100%;box-sizing:border-box;margin:0;position:relative;display:block;top:0;left:0;border-radius:0;max-width:100%!important\" src=\"https://assets-usa.mkt.dynamics.com/5d162280-f9ef-450a-aac0-46e4c9a0c659/digitalassets/images/9a7b4045-3688-f011-b4cc-000d3a5b77e4?ts=638924395164172709\" alt=\"New Fall Hues\"><!--[endif]----></a>\r\n</div>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;padding:0;margin:0\">\r\n<div align=\"Center\" class=\"imageWrapper\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:14px; color:#fff; background-color:transparent;\"><a href=\"https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/wVatle7oqES91mDaqqwCAAIAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.leatherman.com%252Fproducts%252Fmicra%253Fvariant%253D43624314470493%2526utm_source%253DD365%2526utm_medium%253Demail%2526utm_campaign%253D250902_Micra_Colors_Launch_US%2526utm_id%253D250902_Micra_Colors_Launch_US%22%2C%22RedirectOptions%22%3A%7B%226%22%3A%22mktprf5786c8deeb6347afbd6257be796c9af0eoprf%22%2C%221%22%3Anull%7D%7D&msdynmkt_digest=sa4W7AtxdJG%2Bbklg6%2Fi7VNrihy4QZEL9op6hdvzcIto%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf\" data-msdyn-tracking-id=\"96d3fabe140eb1756843380703\" style=\"text-decoration:underline;text-decoration-color:#fff\"><!--[if gte mso 9]> <img style=\"text-decoration: none; border: 0px; max-height: 100%; box-sizing: border-box; margin: 0px; position: relative; display: block; top: 0px; left: 0px; border-radius: 0px; max-width: 100% !important;\" src=\"https://assets-usa.mkt.dynamics.com/5d162280-f9ef-450a-aac0-46e4c9a0c659/digitalassets/images/5722be51-3688-f011-b4cc-000d3a5b77e4?ts=638924395374039129\" alt=\"Micra shows up and stands out in 4 new Fall colors. Shop Micra\" width=\"600\"> <![endif]--> <!--[if !mso]> <!----><img style=\"text-decoration:none;border:0;max-height:100%;box-sizing:border-box;margin:0;position:relative;display:block;top:0;left:0;border-radius:0;max-width:100%!important\" src=\"https://assets-usa.mkt.dynamics.com/5d162280-f9ef-450a-aac0-46e4c9a0c659/digitalassets/images/5722be51-3688-f011-b4cc-000d3a5b77e4?ts=638924395374039129\" alt=\"Micra shows up and stands out in 4 new Fall colors. Shop Micra\"><!--[endif]----></a>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n<!--[if gte mso 9]> <tr><td  style=\"font-size: 0px; line-height:0px;mso-line-height-rule: exactly; display: none !important; mso-hide:all;background-color: rgba(0, 0, 0, 0);\"><p style=\"font-size: 0px;height:0px; margin: 0px; padding:0;line-height: 0px; mso-line-height-rule: exactly; background-color: transparent;\"><br/></p></td></tr> <![endif]--></tbody>\r\n</table></div>\r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#393b42\" align=\"center\" style=\"padding:10px 0\" role=\"presentation\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<table align=\"center\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\r\n<tbody>\r\n<tr align=\"center\" width=\"100%\" style=\"width:100%;max-width:100%;margin:0 auto 0 auto\">\r\n<td colspan=\"5\"></td>\r\n<td width=\"30\" style=\"max-width:30px;width:30px;padding:5px\">\r\n<div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent\"></div>\r\n</td>\r\n<td style=\"max-width:30px;width:30px;padding:5px\">\r\n<div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent\">\r\n<div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;padding:0;margin:0\">\r\n<div class=\"imageWrapper\" width=\"100%\" align=\"center\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:14px; color:#fff; background-color:transparent;\"><a href=\"https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/wVatle7oqES91mDaqqwCAAMAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.instagram.com%252Fleathermantools%22%2C%22RedirectOptions%22%3A%7B%225%22%3Anull%2C%221%22%3Anull%7D%7D&msdynmkt_digest=nvOGuG4I2nGYhi0ERrvjeWzP7zlvwIFGrBODPAG%2FKhs%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf\" data-msdyn-tracking-id=\"060e7af814e081672338229931\" style=\"text-decoration:underline;text-decoration-color:#fff\"><img src=\"https://assets-usa.mkt.dynamics.com/5d162280-f9ef-450a-aac0-46e4c9a0c659/digitalassets/images/97aa0616-d138-4b6e-8cf5-665809166589\" style=\"text-decoration:none;border:0;display:block;margin:0;max-height:100%;box-sizing:border-box;position:static;width:30px;height:30px;border-radius:0;top:0;left:0;max-width:100%!important\" width=\"30\" border=\"0\" alt=\"Follow Leatherman Tools on Instagram\" height=\"30\"></a>\r\n</div>\r\n</div>\r\n</div>\r\n</td>\r\n<td style=\"max-width:30px;width:30px;padding:5px\">\r\n<div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent\">\r\n<div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;padding:0;margin:0\">\r\n<div class=\"imageWrapper\" width=\"100%\" align=\"center\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:14px; color:#fff; background-color:transparent;\"><a href=\"https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/wVatle7oqES91mDaqqwCAAQAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.tiktok.com%252F%2540leatherman_tools%22%2C%22RedirectOptions%22%3A%7B%225%22%3Anull%2C%221%22%3Anull%7D%7D&msdynmkt_digest=Q%2BtWGReRj72RQbUq%2FbR6TC8rZeJDvTeXcEUXuOa5toQ%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf\" data-msdyn-tracking-id=\"55a2adb6bbc371672338239108\" style=\"text-decoration:underline;text-decoration-color:#fff\"><img src=\"https://assets-usa.mkt.dynamics.com/5d162280-f9ef-450a-aac0-46e4c9a0c659/digitalassets/images/bf64fe18-1e1e-42b5-9096-0fc0b8772140\" style=\"text-decoration:none;border:0;display:block;margin:0;max-height:100%;box-sizing:border-box;position:relative;width:30px;height:30px;border-radius:0;top:0;left:0;max-width:100%!important\" width=\"30\" border=\"0\" alt=\"Follow Leatherman Tools on Tiktok\" height=\"30\"></a>\r\n</div>\r\n</div>\r\n</div>\r\n</td>\r\n<td style=\"max-width:30px;width:30px;padding:5px\">\r\n<div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent\">\r\n<div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;padding:0;margin:0\">\r\n<div class=\"imageWrapper\" width=\"100%\" align=\"center\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:14px; color:#fff; background-color:transparent;\"><a href=\"https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/wVatle7oqES91mDaqqwCAAUAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.facebook.com%252FLeatherman%252F%22%2C%22RedirectOptions%22%3A%7B%225%22%3Anull%2C%221%22%3Anull%7D%7D&msdynmkt_digest=84RhT%2FPuyw1vcTGvfD4VBeV4i7oIMr1qbnfkDhxX0tc%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf\" data-msdyn-tracking-id=\"1c347b64588db1672338250130\" style=\"text-decoration:underline;text-decoration-color:#fff\"><img src=\"https://assets-usa.mkt.dynamics.com/5d162280-f9ef-450a-aac0-46e4c9a0c659/digitalassets/images/3a2ab2b8-6322-4c43-8003-7e65bf0b0d45\" style=\"text-decoration:none;border:0;display:block;margin:0;max-height:100%;box-sizing:border-box;position:relative;width:30px;height:30px;border-radius:0;top:0;left:0;max-width:100%!important\" width=\"30\" border=\"0\" height=\"30\" alt=\"Follow Leatherman Tools on Facebook\"></a>\r\n</div>\r\n</div>\r\n</div>\r\n</td>\r\n<td style=\"max-width:30px;width:30px;padding:5px\">\r\n<div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent\">\r\n<div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;padding:0;margin:0\">\r\n<div class=\"imageWrapper\" width=\"100%\" align=\"center\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:14px; color:#fff; background-color:transparent;\"><a href=\"https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/wVatle7oqES91mDaqqwCAAYAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.youtube.com%252Fuser%252FLeathermanMedia%22%2C%22RedirectOptions%22%3A%7B%225%22%3Anull%2C%221%22%3Anull%7D%7D&msdynmkt_digest=6cihZZw0kDmhbLEO15sccw8cxE1AlxAiapj9%2BZ8esXQ%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf\" data-msdyn-tracking-id=\"05f4617e605a71672338263640\" style=\"text-decoration:underline;text-decoration-color:#fff\"><img src=\"https://assets-usa.mkt.dynamics.com/5d162280-f9ef-450a-aac0-46e4c9a0c659/digitalassets/images/7a28b0c9-a603-454d-920e-fd9fb398d915\" style=\"text-decoration:none;border:0;display:block;margin:0;max-height:100%;box-sizing:border-box;position:relative;width:30px;height:30px;border-radius:0;top:0;left:0;max-width:100%!important\" width=\"30\" border=\"0\" alt=\"Follow Leatherman Tools on YouTube\" height=\"30\"></a>\r\n</div>\r\n</div>\r\n</div>\r\n</td>\r\n<td style=\"max-width:30px;width:30px;padding:5px\">\r\n<div style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent\"></div>\r\n</td><td colspan=\"6\"></td>\r\n</tr>\r\n</tbody>\r\n</table><div class=\"emptyContainer columns-equal-class no-wrap-section\" style=\"font-family:Arial,Verdana,sans-serif;font-size:11;color:#393b42;background-color:#393b42\"><!--[if gte mso 9]> </div><div style=\"background-color: transparent; border:none;\"> <![endif]-->\r\n<table class=\"outer\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;display:block\">\r\n<tbody>\r\n<!--[if gte mso 9]> <tr><td  style=\"font-size: 0px; line-height:0px;mso-line-height-rule: exactly; display: none !important; mso-hide:all;background-color: rgb(57, 59, 66);\"><p style=\"font-size: 0px;height:0px; margin: 0px; padding:0;line-height: 0px; mso-line-height-rule: exactly; background-color: transparent;\"><br/></p></td></tr> <![endif]--><tr>\r\n<th style=\"background-color:#393b42;padding-left:10px;padding-right:10px\">\r\n<table style=\"width:100%;border-collapse:collapse\" class=\"containerWrapper tbContainer multi\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<th class=\"columnContainer\" style=\"font-weight:400;text-align:left;vertical-align:top;min-width:5px;width:193.31px;height:0;max-width:33.33%\">\r\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"height:100%\">\r\n<tbody>\r\n<tr>\r\n<th class=\"columnContainer inner\" style=\"text-align:left;min-width:5px;padding:10px;vertical-align:top;word-wrap:break-word;word-break:break-word;font-weight:400\">\r\n<div style=\"font-family:Arial,Verdana,sans-serif;font-size:11;color:#393b42;background-color:transparent;margin:10px\">\r\n<p style=\"line-height:20px;margin:0;padding:0;mso-line-height-rule:at-least;text-align:center\">\r\n<span style=\"font-size:11px\"><strong><u><span style=\"text-decoration:underline;color:#fff\"><a href=\"https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/wVatle7oqES91mDaqqwCAAcAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.leatherman.com%252Fpolicies%252Fprivacy-policy.html%22%2C%22RedirectOptions%22%3A%7B%226%22%3A%22mktprf5786c8deeb6347afbd6257be796c9af0eoprf%22%2C%221%22%3Anull%7D%7D&msdynmkt_digest=BJPq1L4l931q11qdXoXuuna1S3Cxh%2BI6BPtctyr%2Fp%2Bo%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf\" style=\"text-decoration-color:#fff;text-decoration:none\"><u><span style=\"text-decoration:underline;color:#fff\">Privacy Policy</span></u></a></span></u></strong></span>\r\n</p>\r\n</div>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n<th class=\"columnContainer\" style=\"font-weight:400;text-align:left;vertical-align:top;min-width:5px;width:193.31px;height:0;max-width:33.33%\">\r\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"height:100%\">\r\n<tbody>\r\n<tr>\r\n<th class=\"columnContainer inner\" style=\"text-align:left;min-width:5px;vertical-align:top;word-wrap:break-word;word-break:break-word;padding:10px;font-weight:400\">\r\n<div style=\"font-family:Arial,Verdana,sans-serif;font-size:11;color:#393b42;background-color:transparent;margin:10px\">\r\n<div id=\"editorIdPrefixb9044443fdb9f1727468897266\" aria-readonly=\"false\" tabindex=\"0\" spellcheck=\"true\" aria-multiline=\"true\" aria-describedby=\"cke_58\" aria-controls=\"cke_59\" aria-activedescendant=\"\" aria-autocomplete=\"list\" aria-expanded=\"false\" style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;margin-top:0\">\r\n<div id=\"editorIdPrefix0b7bc5b1969771726601139358\" aria-readonly=\"false\" tabindex=\"0\" spellcheck=\"true\" aria-multiline=\"true\" aria-describedby=\"cke_59\" aria-controls=\"cke_60\" aria-activedescendant=\"\" aria-autocomplete=\"list\" aria-expanded=\"false\" style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;margin-top:0\">\r\n<div id=\"editorIdPrefixd3c8914fa24a91726600729130\" aria-readonly=\"false\" tabindex=\"0\" spellcheck=\"true\" aria-multiline=\"true\" aria-describedby=\"cke_59\" aria-controls=\"cke_60\" aria-activedescendant=\"\" aria-autocomplete=\"list\" aria-expanded=\"false\" style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;margin-top:0\">\r\n<p style=\"line-height:20px;margin:0;padding:0;mso-line-height-rule:at-least;text-align:center\">\r\n<strong><span style=\"font-size:11px\"><u><span style=\"text-decoration:underline;color:#fff\"><a href=\"https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/wVatle7oqES91mDaqqwCAAgAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fpublic-usa.mkt.dynamics.com%252Fapi%252Fv1.0%252Forgs%252F5d162280-f9ef-450a-aac0-46e4c9a0c659%252Fconsent%252Fpreferences%253FcontextId%253D4102ce93-3b8b-461b-ac9b-fbd4ae7b0100%22%2C%22RedirectOptions%22%3A%7B%225%22%3Anull%2C%221%22%3Anull%7D%7D&msdynmkt_digest=gGYlL%2Bw%2B1ygKi%2B3LzfmS8EFda40gSyk8PcEVLhqOtoQ%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf\" style=\"text-decoration-color:#fff;text-decoration:none\"><span style=\"text-decoration:underline;font-size:11px\"><u><span style=\"text-decoration:underline;color:#fff\">Manage Preferences</span></u></span></a></span></u></span></strong>\r\n</p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n<th class=\"columnContainer\" style=\"font-weight:400;text-align:left;vertical-align:top;min-width:5px;width:193.31px;height:0;max-width:33.33%\">\r\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"height:100%\">\r\n<tbody>\r\n<tr>\r\n<th class=\"columnContainer inner\" style=\"text-align:left;min-width:5px;vertical-align:top;word-wrap:break-word;word-break:break-word;padding:10px;font-weight:400\">\r\n<div style=\"font-family:Arial,Verdana,sans-serif;font-size:11;color:#393b42;background-color:transparent;margin:10px\">\r\n<div id=\"editorIdPrefixfb2feb309ec4f1726601147730\" aria-readonly=\"false\" tabindex=\"0\" spellcheck=\"true\" aria-multiline=\"true\" aria-describedby=\"cke_116\" aria-controls=\"cke_117\" aria-activedescendant=\"\" aria-autocomplete=\"list\" aria-expanded=\"false\" style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;margin-top:0\">\r\n<div id=\"editorIdPrefix3d7c3e0d480691726600773087\" aria-readonly=\"false\" tabindex=\"0\" spellcheck=\"true\" aria-multiline=\"true\" aria-describedby=\"cke_116\" aria-controls=\"cke_117\" aria-activedescendant=\"\" aria-autocomplete=\"list\" aria-expanded=\"false\" style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent;margin-top:0\">\r\n<p style=\"line-height:20px;margin:0;padding:0;mso-line-height-rule:at-least;text-align:center\">\r\n<span style=\"font-size:11px\"><strong><u><span style=\"text-decoration:underline;color:#fff\"><a href=\"https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/wVatle7oqES91mDaqqwCAAkAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fpublic-usa.mkt.dynamics.com%252Fapi%252Fv1.0%252Forgs%252F5d162280-f9ef-450a-aac0-46e4c9a0c659%252Fconsent%252Fpreferences%253FcontextId%253D4102ce93-3b8b-461b-ac9b-fbd4ae7b0100%22%2C%22RedirectOptions%22%3A%7B%225%22%3Anull%2C%221%22%3Anull%7D%7D&msdynmkt_digest=gGYlL%2Bw%2B1ygKi%2B3LzfmS8EFda40gSyk8PcEVLhqOtoQ%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf\" style=\"text-decoration-color:#fff;text-decoration:none\"><u><span style=\"text-decoration:underline;color:#fff\">Unsubscribe</span></u></a></span></u></strong></span>\r\n</p>\r\n<div tabindex=\"-1\" id=\"toolbarnav_blockd4e8299ef6aba1726600717347\" aria-label=\"[Navigate to toolbar]\" role=\"button\" class=\"editorAccessibilityButton\" style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent\">\r\n<br>\r\n</div>\r\n</div>\r\n<div tabindex=\"-1\" id=\"toolbarnav_block78853ad9fc491726600987515\" aria-label=\"[Navigate to toolbar]\" role=\"button\" class=\"editorAccessibilityButton\" style=\"font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#fff;background-color:transparent\">\r\n</div>\r\n</div>\r\n</div>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n<!--[if gte mso 9]> <tr><td  style=\"font-size: 0px; line-height:0px;mso-line-height-rule: exactly; display: none !important; mso-hide:all;background-color: rgb(57, 59, 66);\"><p style=\"font-size: 0px;height:0px; margin: 0px; padding:0;line-height: 0px; mso-line-height-rule: exactly; background-color: transparent;\"><br/></p></td></tr> <![endif]--></tbody>\r\n</table>\r\n</div>\r\n<div class=\"emptyContainer columns-equal-class no-wrap-section\" style=\"font-family:Arial,Verdana,sans-serif;font-size:11;color:#393b42;background-color:#393b42\"><!--[if gte mso 9]> </div><div style=\"background-color: transparent; border:none;\"> <![endif]-->\r\n<table class=\"outer\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;display:block\">\r\n<tbody>\r\n<!--[if gte mso 9]> <tr><td  style=\"font-size: 0px; line-height:0px;mso-line-height-rule: exactly; display: none !important; mso-hide:all;background-color: rgb(57, 59, 66);\"><p style=\"font-size: 0px;height:0px; margin: 0px; padding:0;line-height: 0px; mso-line-height-rule: exactly; background-color: transparent;\"><br/></p></td></tr> <![endif]--><tr>\r\n<th style=\"background-color:#393b42\">\r\n<table style=\"width:100%;border-collapse:collapse\" class=\"containerWrapper tbContainer\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<th class=\"columnContainer\" style=\"font-weight:400;text-align:left;vertical-align:top;min-width:5px;width:600px;height:0;max-width:100%\">\r\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"height:100%\">\r\n<tbody>\r\n<tr>\r\n<th class=\"inner\" style=\"text-align:left;min-width:5px;vertical-align:top;word-wrap:break-word;word-break:break-word;font-weight:400\">\r\n<div style=\"font-family:Arial,Verdana,sans-serif;font-size:11;color:#393b42;background-color:transparent;margin:10px 30px\">\r\n<p style=\"line-height:20px;margin:0;padding:0;mso-line-height-rule:at-least;text-align:center\">\r\n<span style=\"font-size:11px;color:#fff\">This email was sent to&nbsp;Rick@mavrix.one</span>\r\n</p>\r\n<p style=\"line-height:20px;margin:0;padding:0;mso-line-height-rule:at-least;text-align:center\">\r\n<span style=\"font-size:11px;color:#fff\">by&nbsp;<strong>Leatherman Tool Group, Inc.</strong></span>\r\n</p>\r\n<p style=\"line-height:20px;margin:0;padding:0;mso-line-height-rule:at-least;text-align:center\">\r\n<span style=\"font-size:11px;color:#fff\">12106 NE Ainsworth Circle Portland OR 97220-9001</span>\r\n</p>\r\n<p style=\"line-height:20px;margin:0;padding:0;mso-line-height-rule:at-least;text-align:center;display:none;font-size:11px\">\r\n<span style=\"font-size:11px\">https://public-usa.mkt.dynamics.com/api/v1.0/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/consent/preferences?contextId=4102ce93-3b8b-461b-ac9b-fbd4ae7b0100}}</span>\r\n</p>\r\n<p style=\"line-height:20px;margin:0;padding:0;mso-line-height-rule:at-least;text-align:center\">\r\n<span style=\"font-size:11px;color:#fff\">©&nbsp;2025\r\nLeatherman Tool Group, Inc. All\r\nRights Reserved.&nbsp;</span>\r\n</p>\r\n</div>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n<!--[if gte mso 9]> <tr><td  style=\"font-size: 0px; line-height:0px;mso-line-height-rule: exactly; display: none !important; mso-hide:all;background-color: rgb(57, 59, 66);\"><p style=\"font-size: 0px;height:0px; margin: 0px; padding:0;line-height: 0px; mso-line-height-rule: exactly; background-color: transparent;\"><br/></p></td></tr> <![endif]--></tbody>\r\n</table>\r\n</div></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div><!--[if gte mso 9]> </th></tr></table><p style=\"height:0px; margin-bottom:0; margin-top:0; padding:0;line-height: 0px; mso-line-height-rule: exactly; background-color: transparent;\"></p> <![endif]--><img src=\"https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/i/wVatle7oqES91mDaqqwCAAoAAAA\" width=\"0\" height=\"0\" data-tracking /></body></html>','[Shop multi-tools and knives at Leatherman.com <https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/wVatle7oqES91mDaqqwCAAsAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.leatherman.com%252F%253Futm_source%253DD365%2526utm_medium%253Demail%2526utm_campaign%253D250902_Micra_Colors_Launch_US%2526utm_id%253D250902_Micra_Colors_Launch_US%22%2C%22RedirectOptions%22%3A%7B%226%22%3A%22mktprf5786c8deeb6347afbd6257be796c9af0eoprf%22%2C%221%22%3Anull%7D%7D&msdynmkt_digest=QhYqcPgTp7P8p4OESK6TqDrP0eZNF5JR7rJuma7n5J4%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf>]\r\n[New Fall Hues <https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/wVatle7oqES91mDaqqwCAAwAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.leatherman.com%252Fproducts%252Fmicra%253Fvariant%253D43624314470493%2526utm_source%253DD365%2526utm_medium%253Demail%2526utm_campaign%253D250902_Micra_Colors_Launch_US%2526utm_id%253D250902_Micra_Colors_Launch_US%22%2C%22RedirectOptions%22%3A%7B%226%22%3A%22mktprf5786c8deeb6347afbd6257be796c9af0eoprf%22%2C%221%22%3Anull%7D%7D&msdynmkt_digest=sa4W7AtxdJG%2Bbklg6%2Fi7VNrihy4QZEL9op6hdvzcIto%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf>]\r\n[Micra shows up and stands out in 4 new Fall colors. Shop Micra <https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/wVatle7oqES91mDaqqwCAA0AAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.leatherman.com%252Fproducts%252Fmicra%253Fvariant%253D43624314470493%2526utm_source%253DD365%2526utm_medium%253Demail%2526utm_campaign%253D250902_Micra_Colors_Launch_US%2526utm_id%253D250902_Micra_Colors_Launch_US%22%2C%22RedirectOptions%22%3A%7B%226%22%3A%22mktprf5786c8deeb6347afbd6257be796c9af0eoprf%22%2C%221%22%3Anull%7D%7D&msdynmkt_digest=sa4W7AtxdJG%2Bbklg6%2Fi7VNrihy4QZEL9op6hdvzcIto%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf>]\r\n[Follow Leatherman Tools on Instagram <https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/wVatle7oqES91mDaqqwCAA4AAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.instagram.com%252Fleathermantools%22%2C%22RedirectOptions%22%3A%7B%225%22%3Anull%2C%221%22%3Anull%7D%7D&msdynmkt_digest=nvOGuG4I2nGYhi0ERrvjeWzP7zlvwIFGrBODPAG%2FKhs%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf>]\r\n[Follow Leatherman Tools on Tiktok <https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/wVatle7oqES91mDaqqwCAA8AAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.tiktok.com%252F%2540leatherman_tools%22%2C%22RedirectOptions%22%3A%7B%225%22%3Anull%2C%221%22%3Anull%7D%7D&msdynmkt_digest=Q%2BtWGReRj72RQbUq%2FbR6TC8rZeJDvTeXcEUXuOa5toQ%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf>]\r\n[Follow Leatherman Tools on Facebook <https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/wVatle7oqES91mDaqqwCABAAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.facebook.com%252FLeatherman%252F%22%2C%22RedirectOptions%22%3A%7B%225%22%3Anull%2C%221%22%3Anull%7D%7D&msdynmkt_digest=84RhT%2FPuyw1vcTGvfD4VBeV4i7oIMr1qbnfkDhxX0tc%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf>]\r\n[Follow Leatherman Tools on YouTube <https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/wVatle7oqES91mDaqqwCABEAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.youtube.com%252Fuser%252FLeathermanMedia%22%2C%22RedirectOptions%22%3A%7B%225%22%3Anull%2C%221%22%3Anull%7D%7D&msdynmkt_digest=6cihZZw0kDmhbLEO15sccw8cxE1AlxAiapj9%2BZ8esXQ%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf>]\r\n[Privacy Policy <https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/wVatle7oqES91mDaqqwCABIAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fwww.leatherman.com%252Fpolicies%252Fprivacy-policy.html%22%2C%22RedirectOptions%22%3A%7B%226%22%3A%22mktprf5786c8deeb6347afbd6257be796c9af0eoprf%22%2C%221%22%3Anull%7D%7D&msdynmkt_digest=BJPq1L4l931q11qdXoXuuna1S3Cxh%2BI6BPtctyr%2Fp%2Bo%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf>]\r\n[Manage Preferences <https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/wVatle7oqES91mDaqqwCABMAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fpublic-usa.mkt.dynamics.com%252Fapi%252Fv1.0%252Forgs%252F5d162280-f9ef-450a-aac0-46e4c9a0c659%252Fconsent%252Fpreferences%253FcontextId%253D4102ce93-3b8b-461b-ac9b-fbd4ae7b0100%22%2C%22RedirectOptions%22%3A%7B%225%22%3Anull%2C%221%22%3Anull%7D%7D&msdynmkt_digest=gGYlL%2Bw%2B1ygKi%2B3LzfmS8EFda40gSyk8PcEVLhqOtoQ%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf>]\r\n[Unsubscribe <https://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/wVatle7oqES91mDaqqwCABQAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fpublic-usa.mkt.dynamics.com%252Fapi%252Fv1.0%252Forgs%252F5d162280-f9ef-450a-aac0-46e4c9a0c659%252Fconsent%252Fpreferences%253FcontextId%253D4102ce93-3b8b-461b-ac9b-fbd4ae7b0100%22%2C%22RedirectOptions%22%3A%7B%225%22%3Anull%2C%221%22%3Anull%7D%7D&msdynmkt_digest=gGYlL%2Bw%2B1ygKi%2B3LzfmS8EFda40gSyk8PcEVLhqOtoQ%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf>]\r\nThis email was sent to Rick@mavrix.one\r\nby\r\nLeatherman Tool Group, Inc.\r\n12106 NE Ainsworth Circle Portland OR 97220-9001\r\nhttps://public-usa.mkt.dynamics.com/api/orgs/5d162280-f9ef-450a-aac0-46e4c9a0c659/r/wVatle7oqES91mDaqqwCABUAAAA?msdynmkt_target=%7B%22TargetUrl%22%3A%22https%253A%252F%252Fpublic-usa.mkt.dynamics.com%252Fapi%252Fv1.0%252Forgs%252F5d162280-f9ef-450a-aac0-46e4c9a0c659%252Fconsent%252Fpreferences%253FcontextId%253D4102ce93-3b8b-461b-ac9b-fbd4ae7b0100%2523%257D%257D%22%2C%22RedirectOptions%22%3A%7B%225%22%3Anull%2C%220%22%3Anull%7D%7D&msdynmkt_digest=WF2KipTtkbdzYcoGRXFl%2FfbSt42I%2Fy2IWG5W5MtpnHE%3D&msdynmkt_secretVersion=a3955a744d9049f88dd8bdc1907bf2bf\r\n© 2025\r\nLeatherman Tool Group, Inc. All\r\nRights Reserved.',0,0,0,0,0,0,'2025-09-06 16:48:07','2025-12-09 19:28:10','2025-12-09 19:28:10','2025-12-09 19:28:10',NULL,NULL,NULL),
(689,4,' <DS0P220MB116323FA73872EE8DA68BF89C802A@DS0P220MB1163.NAMP220.PROD.OUTLOOK.COM>',NULL,NULL,'Fw: Discussion','Ahoyen@outlook.com','Andrew Hoyen','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<div style=\"font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<hr style=\"display: inline-block; width: 98%;\">\r\n<div id=\"divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Andrew Hoyen<br>\r\n<b>Sent:</b>&nbsp;Tuesday, August 5, 2025 4:42 PM<br>\r\n<b>To:</b>&nbsp;Rick@mavrix.one &lt;Rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Discussion</div>\r\n<div style=\"direction: ltr;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nAn incisive, results driven executive with a strong record of performance and career progression based on rapidly improving P&amp;L performance and driving profitable revenue growth in highly competitive markets. Key strengths include team leadership of sales,\r\n marketing and business organizations, creating and executing strategy, business transformation, driving revenue growth, capital raising and merger and acquisition/ divestiture maximizing enterprise value.</div>\r\n<div style=\"direction: ltr; font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nMy whole career has been in and around manufacturing, cyber and healthcare tech. Spent time running large businesses inside Kodak, Carestream and Toyota. Looking to position myself in a role that is strategic and leadership in nature. My background in running\r\n businesses and operations combined with the strategic nature of market approach, enables me to help an organization of this nature build the right structure for GTM, operations, banking/funding, M&amp;A, etc. Have worked extensively with Peraton ($9B US Fed Gov\r\n prime contractor) in an existing business.</div>\r\n<div style=\"direction: ltr; text-align: justify; text-indent: 0px; margin: 0in 0in 4pt; font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; text-align: justify; text-indent: 0px; margin: 0in 0in 4pt; font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nPrimary focus has been on technology organizations with an overall career that spans the manufacturing, medical device, cybersecurity, and information technology sectors, where I bring a deep wealth of expertise.</div>\r\n<div style=\"direction: ltr; font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nLooking to help the company as a strategic COO or GTM advisor and investor to help manage the growth, integration of several complimentary technology companies, and provide perspective to the executive team. &nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<img style=\"max-width: 919px;\" size=\"8980\" alt=\"Andrew Hoyen\" data-outlook-trace=\"F:2|T:2\" src=\"cid:43e8a7c6-f6d3-46c1-b47d-49e4e724929b\"></div>\r\n</body>\r\n</html>','\r\n\r\n________________________________\r\nFrom: Andrew Hoyen\r\nSent: Tuesday, August 5, 2025 4:42 PM\r\nTo: Rick@mavrix.one <Rick@mavrix.one>\r\nSubject: Discussion\r\n\r\nAn incisive, results driven executive with a strong record of performance and career progression based on rapidly improving P&L performance and driving profitable revenue growth in highly competitive markets. Key strengths include team leadership of sales, marketing and business organizations, creating and executing strategy, business transformation, driving revenue growth, capital raising and merger and acquisition/ divestiture maximizing enterprise value.\r\n\r\nMy whole career has been in and around manufacturing, cyber and healthcare tech. Spent time running large businesses inside Kodak, Carestream and Toyota. Looking to position myself in a role that is strategic and leadership in nature. My background in running businesses and operations combined with the strategic nature of market approach, enables me to help an organization of this nature build the right structure for GTM, operations, banking/funding, M&A, etc. Have worked extensively with Peraton ($9B US Fed Gov prime contractor) in an existing business.\r\n\r\nPrimary focus has been on technology organizations with an overall career that spans the manufacturing, medical device, cybersecurity, and information technology sectors, where I bring a deep wealth of expertise.\r\n\r\nLooking to help the company as a strategic COO or GTM advisor and investor to help manage the growth, integration of several complimentary technology companies, and provide perspective to the executive team.\r\n\r\n[Andrew Hoyen]',0,0,0,0,0,0,'2025-09-06 21:51:23','2025-12-09 19:28:11','2025-12-09 19:28:11','2025-12-09 19:28:11',NULL,NULL,NULL),
(690,4,'<0885GNHD7P0C2BXP8BFT91K1A4@drive.proton.me>',NULL,NULL,'Leslie Staron shared an item with you','no-reply@drive.proton.me','\"Leslie Staron (via Proton Drive)\"','--b2=_gDrQ7IUYMWRbKco92kpwP8xZXo2AcQOJqoSHJeYpQ\r\nContent-Type: text/html; charset=utf-8\r\nContent-Transfer-Encoding: base64\r\n\r\nPCFET0NUWVBFIGh0bWw+DQo8P3htbCBlbmNvZGluZz0idXRmLTgiID8+PGh0bWwgeG1sbnM9Imh0\r\ndHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWwiIHhtbG5zOnY9InVybjpzY2hlbWFzLW1pY3Jvc29m\r\ndC1jb206dm1sIiB4bWxuczpvPSJ1cm46c2NoZW1hcy1taWNyb3NvZnQtY29tOm9mZmljZTpvZmZp\r\nY2UiPg0KDQo8aGVhZD48bWV0YSBodHRwLWVxdWl2PSJDb250ZW50LVR5cGUiIGNvbnRlbnQ9InRl\r\neHQvaHRtbDsgY2hhcnNldD11dGYtOCI+DQogICAgPCEtLSBOQU1FOiAxIENPTFVNTiAtLT4NCiAg\r\nICA8IS0tW2lmIGd0ZSBtc28gMTVdPg0KICAgIDx4bWw+DQogICAgICAgIDxvOk9mZmljZURvY3Vt\r\nZW50U2V0dGluZ3M+DQogICAgICAgIDxvOkFsbG93UE5HLz4NCiAgICAgICAgPG86UGl4ZWxzUGVy\r\nSW5jaD45NjwvbzpQaXhlbHNQZXJJbmNoPg0KICAgICAgICA8L286T2ZmaWNlRG9jdW1lbnRTZXR0\r\naW5ncz4NCiAgICA8L3htbD4NCiAgICA8IVtlbmRpZl0tLT4NCiAgICA8bWV0YSBjaGFyc2V0PSJV\r\nVEYtOCI+DQogICAgPG1ldGEgbmFtZT0ieC1hcHBsZS1kaXNhYmxlLW1lc3NhZ2UtcmVmb3JtYXR0\r\naW5nIj4NCiAgICA8bWV0YSBuYW1lPSJmb3JtYXQtZGV0ZWN0aW9uIiBjb250ZW50PSJ0ZWxlcGhv\r\nbmU9bm8sIGRhdGU9bm8sIGFkZHJlc3M9bm8sIGVtYWlsPW5vLCB1cmw9bm8iPg0KICAgIDxtZXRh\r\nIGh0dHAtZXF1aXY9IlgtVUEtQ29tcGF0aWJsZSIgY29udGVudD0iSUU9ZWRnZSI+DQogICAgPG1l\r\ndGEgbmFtZT0idmlld3BvcnQiIGNvbnRlbnQ9IndpZHRoPWRldmljZS13aWR0aCwgaW5pdGlhbC1z\r\nY2FsZT0xIj4NCiAgICA8bWV0YSBuYW1lPSJhdXRob3IiIGNvbnRlbnQ9IlByb3RvbiAmbHQ7bm8t\r\ncmVwbHlAZHJpdmUucHJvdG9uLm1lJmd0OyI+DQogICAgPG1ldGEgbmFtZT0iZGVzY3JpcHRpb24i\r\nIGNvbnRlbnQ9Ik5ldyBpdGVtIHNoYXJlZCB3aXRoIHlvdSI+DQogICAgPHRpdGxlPkxlc2xpZSBT\r\ndGFyb24gc2hhcmVkIGFuIGl0ZW0gd2l0aCB5b3U8L3RpdGxlPg0KDQoNCjxzdHlsZSB0eXBlPSJ0\r\nZXh0L2NzcyI+QG1lZGlhIG9ubHkgc2NyZWVuIGFuZCAobWluLXdpZHRoOjc2OHB4KXsudGVtcGxh\r\ndGVDb250YWluZXJ7d2lkdGg6IDYwMHB4ICFpbXBvcnRhbnQ7fX1AbWVkaWEgb25seSBzY3JlZW4g\r\nYW5kIChtYXgtd2lkdGg6IDUyMHB4KXtib2R5LHRhYmxlLHRkLHAsYXstd2Via2l0LXRleHQtc2l6\r\nZS1hZGp1c3Q6IG5vbmUgIWltcG9ydGFudDt9Ym9keXt3aWR0aDogMTAwJSAhaW1wb3J0YW50OyBt\r\naW4td2lkdGg6IDEwMCUgIWltcG9ydGFudDt9Lm1jblJldGluYUltYWdle21heC13aWR0aDogMTAw\r\nJSAhaW1wb3J0YW50O30ubWNuQnV0dG9uQ29udGVudENvbnRhaW5lciwubWNuVGV4dENvbnRlbnRD\r\nb250YWluZXJ7bWF4LXdpZHRoOiAxMDAlICFpbXBvcnRhbnQ7IHdpZHRoOiAxMDAlICFpbXBvcnRh\r\nbnQ7fS5tY25UZXh0Q29udGVudHtwYWRkaW5nLXJpZ2h0OiAzMnB4ICFpbXBvcnRhbnQ7IHBhZGRp\r\nbmctbGVmdDogMzJweCAhaW1wb3J0YW50O31oMXtmb250LXNpemU6IDIycHggIWltcG9ydGFudDsg\r\nbGluZS1oZWlnaHQ6IDEuMjVlbSAhaW1wb3J0YW50O30jdGVtcGxhdGVCb2R5IC5tY25UZXh0Q29u\r\ndGVudCwjdGVtcGxhdGVCb2R5IC5tY25UZXh0Q29udGVudCBwe2ZvbnQtc2l6ZTogMTZweCAhaW1w\r\nb3J0YW50OyBsaW5lLWhlaWdodDogMS41ZW0gIWltcG9ydGFudDt9I3RlbXBsYXRlRm9vdGVyIC5t\r\nY25UZXh0Q29udGVudCwjdGVtcGxhdGVGb290ZXIgLm1jblRleHRDb250ZW50IHB7Zm9udC1zaXpl\r\nOiAxNHB4ICFpbXBvcnRhbnQ7IGxpbmUtaGVpZ2h0OiAxLjVlbSAhaW1wb3J0YW50O319PC9zdHls\r\nZT48L2hlYWQ+DQoNCjxib2R5IHN0eWxlPSJoZWlnaHQ6IDEwMCU7IG1hcmdpbjogMDsgcGFkZGlu\r\nZzogMDsgd2lkdGg6IDEwMCU7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRl\r\neHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGJhY2tncm91bmQtY29sb3I6ICNmNWY0ZjI7Ij4NCiAgICA8\r\nIS0tW2lmICFndGUgbXNvIDldPjwhLS0tLT48c3BhbiBjbGFzcz0ibWNuUHJldmlld1RleHQiIHN0\r\neWxlPSJmb250LXNpemU6IDBweDsgbGluZS1oZWlnaHQ6IDBweDsgbWF4LWhlaWdodDogMHB4OyBt\r\nYXgtd2lkdGg6IDBweDsgb3BhY2l0eTogMDsgb3ZlcmZsb3c6IGhpZGRlbjsgdmlzaWJpbGl0eTog\r\naGlkZGVuOyBtc28taGlkZTogYWxsOyBkaXNwbGF5OiBub25lOyI+TmV3IGl0ZW0gc2hhcmVkIHdp\r\ndGggeW91PC9zcGFuPjwhLS08IVtlbmRpZl0tLT4NCiAgICA8Y2VudGVyPg0KICAgICAgICA8dGFi\r\nbGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9\r\nIjAiIGhlaWdodD0iMTAwJSIgd2lkdGg9IjEwMCUiIGlkPSJib2R5VGFibGUiIHN0eWxlPSJib3Jk\r\nZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1y\r\nc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgaGVpZ2h0OiAxMDAlOyBtYXJnaW46IDA7IHBhZGRpbmc6IDA7IHdpZHRo\r\nOiAxMDAlOyBiYWNrZ3JvdW5kLWNvbG9yOiAjZjVmNGYyOyI+DQogICAgICAgICAgICA8dHI+DQog\r\nICAgICAgICAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0idG9wIiBpZD0iYm9keUNl\r\nbGwiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgaGVpZ2h0OiAxMDAl\r\nOyBtYXJnaW46IDA7IHBhZGRpbmc6IDhweDsgd2lkdGg6IDEwMCU7IGJvcmRlci10b3A6IDA7Ij4N\r\nCiAgICAgICAgICAgICAgICAgICAgPCEtLSBCRUdJTiBURU1QTEFURSAvLyAtLT4NCiAgICAgICAg\r\nICAgICAgICAgICAgPCEtLVtpZiAoZ3RlIG1zbyA5KXwoSUUpXT4NCiAgICAgICAgICAgICAgICAg\r\nICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxw\r\nYWRkaW5nPSIwIiB3aWR0aD0iNjAwIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij48dHI+PHRkIGFsaWdu\r\nPSJjZW50ZXIiIHZhbGlnbj0idG9wIiB3aWR0aD0iNjAwIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij4N\r\nCiAgICAgICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICAgICAgICAgIDx0\r\nYWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEw\r\nMCUiIGNsYXNzPSJ0ZW1wbGF0ZUNvbnRhaW5lciIgc3R5bGU9ImJvcmRlci1jb2xsYXBzZTogY29s\r\nbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBi\r\nb3JkZXI6IDA7IGJvcmRlci1yYWRpdXM6IDE2cHg7IG1heC13aWR0aDogNjAwcHg7Ij4NCjx0cj4N\r\nCiAgICA8dGQgdmFsaWduPSJ0b3AiIGlkPSJ0ZW1wbGF0ZUhlYWRlciIgc3R5bGU9Im1zby1saW5l\r\nLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtp\r\ndC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmZmZmOyBiYWNr\r\nZ3JvdW5kLWltYWdlOiBub25lOyBiYWNrZ3JvdW5kLXJlcGVhdDogbm8tcmVwZWF0OyBiYWNrZ3Jv\r\ndW5kLXBvc2l0aW9uOiBjZW50ZXI7IGJhY2tncm91bmQtc2l6ZTogY292ZXI7IGJvcmRlci10b3A6\r\nIDA7IGJvcmRlci1ib3R0b206IDA7IHBhZGRpbmctdG9wOiAwcHg7IHBhZGRpbmctYm90dG9tOiAw\r\ncHg7IGJvcmRlci1yYWRpdXM6IDE2cHggMTZweCAwIDA7Ij4NCiAgICAgICAgPHRhYmxlIGJvcmRl\r\ncj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9\r\nIm1jbkltYWdlQmxvY2siIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTog\r\nY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAt\r\nbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyI+DQogICAgICAgICAgICA8dGJvZHkgY2xhc3M9Im1jbkltYWdlQmxvY2tPdXRlciI+DQogICAg\r\nICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNs\r\nYXNzPSJtY25JbWFnZUJsb2NrSW5uZXIiIHN0eWxlPSJwYWRkaW5nOiAxNnB4IDE2cHggMHB4IDE2\r\ncHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAg\r\nICAgICAgICA8dGFibGUgYWxpZ249ImxlZnQiIHdpZHRoPSIxMDAlIiBib3JkZXI9IjAiIGNlbGxw\r\nYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgY2xhc3M9Im1jbkltYWdlQ29udGVudENvbnRhaW5l\r\nciIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNv\r\nLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0i\r\nbWNuSW1hZ2VDb250ZW50IiB2YWxpZ249InRvcCIgc3R5bGU9InBhZGRpbmc6IDE2cHggMTZweCAw\r\ncHggMTZweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSJodHRwczovL2RyaXZlLnByb3Rv\r\nbi5tZS8iIHRhcmdldD0iX2JsYW5rIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0\r\nbHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IGxpbmUtaGVpZ2h0OiBpbmhlcml0OyBjb2xvcjogIzZkNGFmZjsgZm9udC13ZWlnaHQ6\r\nIG5vcm1hbDsgdGV4dC1kZWNvcmF0aW9uOiB1bmRlcmxpbmU7Ij48aW1nIGFsaWduPSJjZW50ZXIi\r\nIGFsdD0iUHJvdG9uIERyaXZlIiBzcmM9ImNpZDo3MGY4OTBkMTc4ZWFmYjkyNzM3NkBkcml2ZS5w\r\ncm90b24ubWUiIHdpZHRoPSIxNTAiIHN0eWxlPSJ3aWR0aDogMzUuNDQ3NyU7IG1heC13aWR0aDog\r\nMzAwcHg7IHBhZGRpbmctYm90dG9tOiAwOyB2ZXJ0aWNhbC1hbGlnbjogYm90dG9tOyBib3JkZXI6\r\nIDA7IGhlaWdodDogYXV0bzsgb3V0bGluZTogbm9uZTsgdGV4dC1kZWNvcmF0aW9uOiBub25lOyAt\r\nbXMtaW50ZXJwb2xhdGlvbi1tb2RlOiBiaWN1YmljOyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZl\r\ndGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdodDogMS41ZW07IGNv\r\nbG9yOiAjNmQ0YWZmOyBkaXNwbGF5OiBpbmxpbmU7Ij48L2E+DQogICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\nL3RyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAg\r\nICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAg\r\nICAgICAgIDwvdHI+DQogICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICA8L3RhYmxlPg0KICAg\r\nIDwvdGQ+DQo8L3RyPg0KPHRyPg0KICAgIDx0ZCB2YWxpZ249InRvcCIgaWQ9InRlbXBsYXRlQm9k\r\neSIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBiYWNrZ3JvdW5kLWNv\r\nbG9yOiAjZmZmZmZmOyBiYWNrZ3JvdW5kLWltYWdlOiBub25lOyBiYWNrZ3JvdW5kLXJlcGVhdDog\r\nbm8tcmVwZWF0OyBiYWNrZ3JvdW5kLXBvc2l0aW9uOiBjZW50ZXI7IGJhY2tncm91bmQtc2l6ZTog\r\nY292ZXI7IGJvcmRlci10b3A6IDA7IGJvcmRlci1ib3R0b206IDA7IHBhZGRpbmctdG9wOiA4cHg7\r\nIHBhZGRpbmctYm90dG9tOiA4cHg7Ij48dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIg\r\nY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dEJsb2NrIiBzdHlsZT0i\r\nbWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNw\r\nYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgIDx0Ym9keSBjbGFzcz0i\r\nbWNuVGV4dEJsb2NrT3V0ZXIiPg0KICAgICAgICA8dHI+DQogICAgICAgICAgICA8dGQgdmFsaWdu\r\nPSJ0b3AiIGNsYXNzPSJtY25UZXh0QmxvY2tJbm5lciIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1y\r\ndWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAg\r\nICAgICAgICAgIDx0YWJsZSBhbGlnbj0ibGVmdCIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIg\r\nY2VsbHBhZGRpbmc9IjAiIHdpZHRoPSIxMDAlIiBzdHlsZT0id2lkdGg6MTAwJTsiPjx0cj4NCiAg\r\nICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgICAgIDwhLS1baWYgbXNv\r\nXT4NCiAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIHdpZHRoPSI2MDAiIHN0eWxlPSJ3\r\naWR0aDo2MDBweDsiPg0KICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAg\r\nICAgIDx0YWJsZSBhbGlnbj0ibGVmdCIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNw\r\nYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dENvbnRlbnRDb250YWluZXIiIHN0\r\neWxlPSJtYXgtd2lkdGg6IDEwMCU7IG1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBj\r\nb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1t\r\ncy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIj4NCiAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAg\r\nPHRyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9\r\nIm1jblRleHRDb250ZW50IiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1t\r\ncy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIHdvcmQtYnJlYWs6IGJyZWFrLXdvcmQ7IGNvbG9yOiAjMGMwYzE0OyBmb250LWZhbWlseTogQXJp\r\nYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdodDog\r\nMS41ZW07IHRleHQtYWxpZ246IGxlZnQ7IHBhZGRpbmctdG9wOiA4cHg7IHBhZGRpbmctYm90dG9t\r\nOiAxMnB4OyBwYWRkaW5nLXJpZ2h0OiAzMnB4OyBwYWRkaW5nLWxlZnQ6IDMycHg7Ij4NCiAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgPGgxIHN0eWxlPSJkaXNwbGF5OiBibG9jazsgbWFy\r\nZ2luOiAwOyBwYWRkaW5nOiAwOyBjb2xvcjogIzBjMGMxNDsgZm9udC1mYW1pbHk6IEFyaWFsLCBI\r\nZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMjRweDsgZm9udC1zdHlsZTogbm9ybWFs\r\nOyBmb250LXdlaWdodDogYm9sZDsgbGluZS1oZWlnaHQ6IDEuMjVlbTsgbGV0dGVyLXNwYWNpbmc6\r\nIDBweDsgdGV4dC1hbGlnbjogbGVmdDsiPk5ldyBpdGVtIHNoYXJlZCB3aXRoIHlvdTwvaDE+PHAg\r\nY2xhc3M9Im1jblRleHRDb250ZW50Q29udGFpbmVyIiBzdHlsZT0icGFkZGluZzogMHB4OyBtc28t\r\nbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13\r\nZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5\r\nOiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE2cHg7IGxpbmUtaGVp\r\nZ2h0OiAxLjVlbTsgdGV4dC1hbGlnbjogbGVmdDsgbWFyZ2luOiAxMnB4IDBweDsiPjxzdHJvbmc+\r\nTGVzbGllIFN0YXJvbjwvc3Ryb25nPiAoTGVzbGllQG1hdnJpeC5vbmUpIHNoYXJlZCBhbiBpdGVt\r\nIHdpdGggeW91OjwvcD48cCBjbGFzcz0ibWNuVGV4dENvbnRlbnRDb250YWluZXIiIHN0eWxlPSJw\r\nYWRkaW5nOiAwcHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBjb2xvcjogIzBj\r\nMGMxNDsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6\r\nZTogMTZweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBsZWZ0OyBtYXJnaW46IDEy\r\ncHggMHB4OyI+PHNwYW4gc3R5bGU9ImNvbG9yOiAjNjY2OyI+VGhpcyBpcyBhIGxpbmsgdG8gb3Vy\r\nIHRlYW0gY29udGFjdCBpbmZvcm1hdGlvbi4gIFdoZW4geW91IGhhdmUgYSBjaGFuY2UgKG5leHQg\r\nd2VlayksIHBsZWFzZSBjb25maXJtIGFsbCBvZiB5b3VyIGRldGFpbHMvdXBkYXRlIGFueSBibGFu\r\na3MuICBUaGFua3MhPC9zcGFuPjwvcD48cCBzdHlsZT0ibWFyZ2luOiAxMnB4IDA7IG1zby1saW5l\r\nLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtp\r\ndC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBib3JkZXI6IDFweCBzb2xpZCAjRUFFN0U0OyBib3Jk\r\nZXItcmFkaXVzOiA0cHg7IHBhZGRpbmc6IDZweCAxNnB4OyI+PGltZyBhbGlnbj0ibWlkZGxlIiBh\r\nbHQ9IiIgc3JjPSJjaWQ6Zm9sZGVyLWljb24tZm9yLXNoYXJpbmctZW1haWxAZHJpdmUucHJvdG9u\r\nLm1lIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHN0eWxlPSJtYXgtd2lkdGg6IDQwcHg7cGFkZGlu\r\nZy1ib3R0b206IDA7ZGlzcGxheTogaW5saW5lLWJsb2NrICFpbXBvcnRhbnQ7dmVydGljYWwtYWxp\r\nZ246IHRleHQtYm90dG9tO2JvcmRlcjogMDt3aWR0aDogMjBweDtoZWlnaHQ6IDIwcHg7bWFyZ2lu\r\nLXJpZ2h0OiA1cHg7Ij4gPGI+TWF2cml4MSBUZWFtIEluZm88L2I+PC9wPiAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAg\r\nICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAg\r\nICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAg\r\nICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAg\r\nICAgICAgICAgICAgIDwvdHI+PC90YWJsZT4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4N\r\nCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwvdGFibGU+\r\nDQo8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRo\r\nPSIxMDAlIiBjbGFzcz0ibWNuQnV0dG9uQmxvY2siIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJv\r\ncmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxl\r\nLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyI+DQogICAgPHRib2R5IGNsYXNzPSJtY25CdXR0b25CbG9ja091dGVy\r\nIj4NCiAgICAgICAgPHRyPg0KICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBhbGlnbj0ibGVm\r\ndCIgY2xhc3M9Im1jbkJ1dHRvbkJsb2NrSW5uZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVs\r\nZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgdGV4dC1hbGlnbjogY2VudGVyOyBwYWRkaW5nLWxlZnQ6IDMycHg7IHBh\r\nZGRpbmctcmlnaHQ6IDMycHg7IHBhZGRpbmctdG9wOiAwcHg7IHBhZGRpbmctYm90dG9tOiAzMnB4\r\nOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNl\r\nbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgY2xhc3M9Im1jbkJ1dHRvbkNvbnRlbnRDb250\r\nYWluZXIiIHN0eWxlPSJtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBw\r\ndDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBzZXBhcmF0ZTsiPg0KICAgICAgICAgICAgICAgICAgICA8\r\ndGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgPHRkIHZhbGlnbj0ibWlkZGxlIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6\r\nIGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGEgY2xhc3M9\r\nIm1jbkJ1dHRvbiBtYWlsaW5nLWJ1dHRvbiIgdGl0bGU9IkFjY2VwdCBpdGVtIGluIFByb3RvbiBE\r\ncml2ZSIgaHJlZj0iaHR0cHM6Ly9kcml2ZS5wcm90b24ubWUvMGhmOGJ5bmc1RFZwTE5zVnhuWmhK\r\nLVAta1FJTEVZM1N5dWptYmNZNngya3RVVmV5Y0ZsejUzdElzQjFvR2ZMQXdGQkJrZ21iQmM1ZHNP\r\nQklKQ3Zua3c9PS9wUnNrWlpndjQ0aEZ4NDhxZUJSUjZPMmMzZE5ud2pfOFJJbzFDNnU0ZzhoeGNt\r\nYkdCQUNpbUtoTnNGOFNUTEdsQm5IVUxzMjhrTkxiOFY1N1RjOTVXUT09P2ludml0YXRpb249QVlM\r\nc3ZlRmNyRzJuYzNpMVRQTWk5QSZlbWFpbD1yaWNrJTQwbWF2cml4Lm9uZSIgdGFyZ2V0PSJfYmxh\r\nbmsiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgZm9udC1mYW1pbHk6\r\nIEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgcGFkZGluZy1s\r\nZWZ0OiAzMnB4OyBwYWRkaW5nLXJpZ2h0OiAzMnB4OyBwYWRkaW5nLXRvcDogMTJweDsgcGFkZGlu\r\nZy1ib3R0b206IDEycHg7IGRpc3BsYXk6IGJsb2NrOyBmb250LXdlaWdodDogbm9ybWFsOyBsZXR0\r\nZXItc3BhY2luZzogMXB4OyBsaW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGNlbnRlcjsg\r\ndGV4dC1kZWNvcmF0aW9uOiBub25lOyBjb2xvcjogI0ZGRkZGRjsgYm9yZGVyLXJhZGl1czogOHB4\r\nOyBiYWNrZ3JvdW5kLWNvbG9yOiAjNmQ0YWZmOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgPGkgc3R5bGU9ImZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNl\r\ncmlmO2ZvbnQtc2l6ZTogMTZweDtwYWRkaW5nLWxlZnQ6IDMycHg7cGFkZGluZy1yaWdodDogMzJw\r\neDtwYWRkaW5nLXRvcDogMTJweDtwYWRkaW5nLWJvdHRvbTogMTJweDtkaXNwbGF5OiBibG9jaztm\r\nb250LXdlaWdodDogbm9ybWFsO2xldHRlci1zcGFjaW5nOiAxcHg7bGluZS1oZWlnaHQ6IDEuNWVt\r\nO3RleHQtYWxpZ246IGNlbnRlcjt0ZXh0LWRlY29yYXRpb246IG5vbmU7Y29sb3I6ICNGRkZGRkY7\r\nIj4mbmJzcDs8L2k+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8IVtlbmRp\r\nZl0tLT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuIHN0eWxlPSIi\r\nPkFjY2VwdCBpdGVtPC9zcGFuPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2E+\r\nDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAg\r\nPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICA8L3Ry\r\nPg0KICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0KICAgIDwvdGQ+DQo8L3RyPjx0cj4NCiAgICA8dGQg\r\ndmFsaWduPSJ0b3AiIGlkPSJ0ZW1wbGF0ZUZvb3RlciIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1y\r\ndWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyBiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmZmZmOyBiYWNrZ3JvdW5kLWlt\r\nYWdlOiBub25lOyBiYWNrZ3JvdW5kLXJlcGVhdDogbm8tcmVwZWF0OyBiYWNrZ3JvdW5kLXBvc2l0\r\naW9uOiBjZW50ZXI7IGJhY2tncm91bmQtc2l6ZTogY292ZXI7IGJvcmRlci10b3A6IDA7IGJvcmRl\r\nci1ib3R0b206IDA7IHBhZGRpbmctdG9wOiAxNnB4OyBwYWRkaW5nLWJvdHRvbTogMTZweDsgYm9y\r\nZGVyLXJhZGl1czogMCAwIDE2cHggMTZweDsiPg0KICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBj\r\nZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuRGl2\r\naWRlckJsb2NrIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxh\r\ncHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRl\r\neHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgdGFi\r\nbGUtbGF5b3V0OiBmaXhlZDsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNuRGl2aWRlckJsb2NrT3V0\r\nZXIiPg0KICAgICAgICA8dHI+DQogICAgICAgICAgICA8dGQgY2xhc3M9Im1jbkRpdmlkZXJCbG9j\r\na0lubmVyIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBwYWRkaW5nOiAwIDMycHggMTZweCAzMnB4\r\nOyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgIDx0\r\nYWJsZSBjbGFzcz0ibWNuRGl2aWRlckNvbnRlbnQiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAi\r\nIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9y\r\nZGVyLXRvcDogMXB4IHNvbGlkICNGNUY0RjI7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1z\r\nby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAg\r\nICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICA8dGQgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBl\r\neGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuPjwvc3Bh\r\nbj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAg\r\nICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAg\r\nICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgIDwhLS0NCiAgICAgICAgICAgICAgICA8dGQgY2xh\r\nc3M9Im1jbkRpdmlkZXJCbG9ja0lubmVyIiBzdHlsZT0icGFkZGluZzogMzJweDsiPg0KICAgICAg\r\nICAgICAgICAgIDxociBjbGFzcz0ibWNuRGl2aWRlckNvbnRlbnQiIHN0eWxlPSJib3JkZXItYm90\r\ndG9tLWNvbG9yOm5vbmU7IGJvcmRlci1sZWZ0LWNvbG9yOm5vbmU7IGJvcmRlci1yaWdodC1jb2xv\r\ncjpub25lOyBib3JkZXItYm90dG9tLXdpZHRoOjA7IGJvcmRlci1sZWZ0LXdpZHRoOjA7IGJvcmRl\r\nci1yaWdodC13aWR0aDowOyBtYXJnaW4tdG9wOjA7IG1hcmdpbi1yaWdodDowOyBtYXJnaW4tYm90\r\ndG9tOjA7IG1hcmdpbi1sZWZ0OjA7IiAvPg0KICAgICAgICAgICAgICAgIC0tPg0KICAgICAgICAg\r\nICAgPC90ZD4NCiAgICAgICAgPC90cj4NCiAgICA8L3Rib2R5Pg0KPC90YWJsZT4NCjx0YWJsZSBi\r\nb3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNs\r\nYXNzPSJtY25UZXh0QmxvY2siIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBz\r\nZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0\r\nOyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyI+DQogICAgPHRib2R5IGNsYXNzPSJtY25UZXh0QmxvY2tPdXRlciI+DQogICAgPHRyPg0K\r\nICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJtY25UZXh0QmxvY2tJbm5lciIgc3R5bGU9\r\nIm1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICA8IS0tW2lm\r\nIG1zb10+DQogICAgICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIwIiBjZWxs\r\nc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAiIHdpZHRoPSIxMDAlIiBzdHlsZT0id2lkdGg6MTAw\r\nJTsiPg0KICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KDQog\r\nICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIHdp\r\nZHRoPSI2MDAiIHN0eWxlPSJ3aWR0aDo2MDBweDsiPg0KICAgICAgICAgICAgPCFbZW5kaWZdLS0+\r\nDQogICAgICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIwIiBjZWxscGFkZGlu\r\nZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dENvbnRlbnRD\r\nb250YWluZXIiIHN0eWxlPSJtYXgtd2lkdGg6IDEwMCU7IG1pbi13aWR0aDogMTAwJTsgYm9yZGVy\r\nLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNw\r\nYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAg\r\nPHRyPg0KICAgICAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJtY25UZXh0\r\nQ29udGVudCIgc3R5bGU9InBhZGRpbmctdG9wOiAxNnB4OyBwYWRkaW5nLXJpZ2h0OiAzMnB4OyBw\r\nYWRkaW5nLWJvdHRvbTogMDsgcGFkZGluZy1sZWZ0OiAzMnB4OyBtc28tbGluZS1oZWlnaHQtcnVs\r\nZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgd29yZC1icmVhazogYnJlYWstd29yZDsgY29sb3I6ICM3MDZkNmI7IGZv\r\nbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE0cHg7\r\nIGxpbmUtaGVpZ2h0OiAxLjVlbTsgdGV4dC1hbGlnbjogY2VudGVyOyI+DQogICAgICAgICAgICAg\r\nICAgICAgICAgICA8cCBzdHlsZT0ibWFyZ2luOiAxMnB4IDA7IHBhZGRpbmc6IDA7IG1zby1saW5l\r\nLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtp\r\ndC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+wqkgMjAyNCBQcm90b24gQUcgU3dpdHplcmxhbmQ8\r\nYnI+Um91dGUgZGUgbGEgR2FsYWlzZSZuYnNwOzMyLCAxMjI4Jm5ic3A7UGxhbi1sZXMtT3VhdGVz\r\nLCBHZW5ldmEsJm5ic3A7U3dpdHplcmxhbmQ8L3A+DQogICAgICAgICAgICAgICAgICAgIDwvdGQ+\r\nDQogICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAg\r\nICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgIDwv\r\ndGQ+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgPCEtLVtpZiBtc29d\r\nPg0KICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICA8\r\nIVtlbmRpZl0tLT4NCiAgICAgICAgPC90ZD4NCiAgICA8L3RyPg0KICAgIDwvdGJvZHk+DQo8L3Rh\r\nYmxlPg0KPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3\r\naWR0aD0iMTAwJSIgY2xhc3M9Im1jbkltYWdlQmxvY2siIHN0eWxlPSJib3JkZXItY29sbGFwc2U6\r\nIGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgbWluLXdpZHRoOiAxMDAlOyI+DQogICAgPHRib2R5IGNsYXNzPSJtY25JbWFnZUJsb2NrT3V0\r\nZXIiPg0KICAgIDx0cj4NCiAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuSW1hZ2VC\r\nbG9ja0lubmVyIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHBhZGRp\r\nbmc6IDE2cHg7Ij4NCiAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiB3aWR0aD0iMTAw\r\nJSIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIGNsYXNzPSJtY25J\r\nbWFnZUNvbnRlbnRDb250YWluZXIiIHN0eWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBt\r\nc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgbWluLXdpZHRo\r\nOiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgIDx0cj4N\r\nCiAgICAgICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJtY25JbWFnZUNvbnRlbnQiIHZhbGlnbj0i\r\ndG9wIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHBhZGRpbmctcmln\r\naHQ6IDE2cHg7IHBhZGRpbmctbGVmdDogMTZweDsgcGFkZGluZy10b3A6IDA7IHBhZGRpbmctYm90\r\ndG9tOiAwOyB0ZXh0LWFsaWduOiBjZW50ZXI7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxp\r\nbWcgYWxpZ249ImNlbnRlciIgYWx0PSIiIHNyYz0iY2lkOmZmYjIyYmUyOGJjMmIxMjJhNTk4QGRy\r\naXZlLnByb3Rvbi5tZSIgd2lkdGg9IjI3NiIgY2xhc3M9Im1jblJldGluYUltYWdlIiBzdHlsZT0i\r\nYm9yZGVyOiAwOyBoZWlnaHQ6IGF1dG87IG91dGxpbmU6IG5vbmU7IHRleHQtZGVjb3JhdGlvbjog\r\nbm9uZTsgLW1zLWludGVycG9sYXRpb24tbW9kZTogYmljdWJpYzsgbWF4LXdpZHRoOiA1NTJweDsg\r\ncGFkZGluZy1ib3R0b206IDA7IHZlcnRpY2FsLWFsaWduOiBib3R0b207IGZvbnQtZmFtaWx5OiBB\r\ncmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDEycHg7IGxpbmUtaGVpZ2h0\r\nOiAxLjVlbTsgZGlzcGxheTogaW5saW5lOyI+DQogICAgICAgICAgICAgICAgICAgIDwvdGQ+DQog\r\nICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAg\r\nICAgPC90YWJsZT4NCiAgICAgICAgPC90ZD4NCiAgICA8L3RyPg0KICAgIDwvdGJvZHk+DQo8L3Rh\r\nYmxlPg0KICAgIDwvdGQ+DQo8L3RyPiAgICAgICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICA8IS0tW2lmIChndGUgbXNvIDkpfChJRSldPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgICAgICAgICAg\r\nPCFbZW5kaWZdLS0+DQogICAgICAgICAgICAgICAgICAgICAgICA8IS0tIC8vIEVORCBURU1QTEFU\r\nRSAtLT4NCiAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICA8L3RyPg0K\r\nICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgPC9jZW50ZXI+DQogICAgPC9ib2R5Pg0KPC9o\r\ndG1sPg0K\r\n\r\n--b2=_gDrQ7IUYMWRbKco92kpwP8xZXo2AcQOJqoSHJeYpQ\r\nContent-Type: image/png; name=logos-footer.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <ffb22be28bc2b122a598@drive.proton.me>\r\nContent-Disposition: inline; filename=logos-footer.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAigAAABwCAMAAAADkXsEAAAABGdBTUEAALGPC/xhBQAAAAFzUkdC\r\nAK7OHOkAAAAJcEhZcwAAFiUAABYlAUlSJPAAAALfUExURUdwTIpy/YZp/rfc/KOc6Ydn+76K3WxJ\r\n/97I0ZBp//CJWbx+0b6l+o1v/ubH3y7ZzdVqlo5p/fO7m29P/sXM8qiO/vi7tL7O++l3e5Z3/4tp\r\n/8mz9eSr2LXu9bae/3df/pV3//jZ0L2q/te/+XaA/bXo9+GpufnSzjKj8NrC/+SGjNLE/9Roo6Rp\r\n5KGK/cRiqNxujzq619ep3Itk/Cyo8PnBycWIy2vZ4fJgxltp+O9/e0ed4rbt9cWHyuRyhDHO0DjA\r\n1CrgyrVau+tfyJt4/8GI/3BN/21K/3BN/3hN+rCS/3VS/55+/3JL/H9O+JZ1/5p5/7KZ/ref/oVR\r\n9UZ0/4tP8pFx/+C3/1Jm/6uM/7yl/6KC/4lp/6dT5qaH/0xt/1hg/z97/7ZW4HpZ/4Nl/39g/9ix\r\n/11a/8G//59S6bbs9TiC/65U4zKJ/7zj+GhQ/4JM7Ytw/5JQ7x2f/5lS2L1X3JhR7MCr/9Kr/7jX\r\n/762/4pO5mNV/8ym/5JP345Z8fK9zcVY2SuQ/3tL9O66z+a00/+7k7H28r/e/WFl9iWX/8Wg/+q3\r\n0biU/5df681Z1l1s87d612Re+L+a/8au8cKDzsbR/RWo/7yn9qWT/rdcuceJycnJ/5eA/86QxLF0\r\n3OGw1rFZwNZb0s27/6tu4L5fspF6//a/y8LY+/B8ctSXvtqr2ta76M617eevqMKa5p9T0tKm3qCM\r\n/qVp471+06xXxZ5k5/jb0t9cztHB/8Ww/02R5lGJ6eGnrrat/2dX+7/U/0mZ40Wj4Mqg4sViqqRV\r\nzVSB7Fd67sm2/6OC9Vp08ECu3L/K/6uJ8uh1f97B5PHU2NbH//GEY8tlopuH/+TH4LqU6qmc/zu6\r\n2O24oIhf/+rN3NFom9icubKP79lsktyhtK+k/+peyeFxiN7S//rCyadWyjXI0/GNVN1vjJDG+fHN\r\nynqu9abL//20h/ife5bk7NVyobFiylqj/52w+HnLP+kAAABGdFJOUwBnRH8QICD+IP+AMd6f3v7+\r\n397dON6AWYTPvpdj3n+Fi9e/yv2m05d63k1/hd+7pNlD3PW/65P32brk5MfX58+IiN6/v4D1Cm7r\r\n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\r\n\r\n--b2=_gDrQ7IUYMWRbKco92kpwP8xZXo2AcQOJqoSHJeYpQ\r\nContent-Type: image/png; name=logo-proton-drive-purple.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <70f890d178eafb927376@drive.proton.me>\r\nContent-Disposition: inline; filename=logo-proton-drive-purple.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAgAAAACECAYAAADmxpMdAAAABGdBTUEAALGPC/xhBQAAACBjSFJN\r\nAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAhGVYSWZNTQAqAAAACAAFARIA\r\nAwAAAAEAAQAAARoABQAAAAEAAABKARsABQAAAAEAAABSASgAAwAAAAEAAgAAh2kABAAAAAEAAABa\r\nAAAAAAAAAEgAAAABAAAASAAAAAEAA6ABAAMAAAABAAEAAKACAAQAAAABAAACAKADAAQAAAABAAAA\r\nhAAAAADxbG/fAAAACXBIWXMAAAsTAAALEwEAmpwYAAABWWlUWHRYTUw6Y29tLmFkb2JlLnhtcAAA\r\nAAAAPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUg\r\nNi4wLjAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIv\r\nMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgog\r\nICAgICAgICAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyI+CiAg\r\nICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgIDwvcmRm\r\nOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgoZXuEHAABAAElEQVR4Aey9\r\nB6BtR1XwP/uW15IQkhAgtERAERGlBkXQRxFIhYAJAvp9FImYQkIR/LDkRBH0A0xIA/LJXwVR4Ekx\r\nlc4DQREIWAhNWiCEkkbKyyu37P/vt2bm3HPPPee+kvfIe2TPe/fsKWvWrFkzs9aasmen1LmOAx0H\r\nOg50HOg40HGg40DHgY4DHQc6DnQc6DjQcaDjQMeBjgMdBzoOdBzoONBxoONAx4GOAx0HOg50HOg4\r\n0HGg40DHgY4DHQc6DnQc6DjQcaDjQMeBjgMdBzoOdBzoONBxoONAx4GOAx0HOg50HOg40HGg40DH\r\ngY4DHQc6DnQc6DjQcaDjQMeBjgMdBzoOdBzoONBxoONAx4GOAx0HOg50HOg40HGg40DHgY4DHQc6\r\n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\r\n\r\n--b2=_gDrQ7IUYMWRbKco92kpwP8xZXo2AcQOJqoSHJeYpQ\r\nContent-Type: image/png; name=folder.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <folder-icon-for-sharing-email@drive.proton.me>\r\nContent-Disposition: inline; filename=folder.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAA\r\nAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACHSURBVHgB7dSxDcIwEIXh9w5RuGMGWIQ1vAVM\r\nAFkGWkbIGBQIeYQ0afOSSCmiSIkc6Up/rU+/bBcHOGP7Pj/U8UbitDw06hniv8IObF8XbQ4YPtTx\r\nHuI3wSM4SRKqgzFtDYX4q3ODWYZvqw2OhldcXYOjEizBEswLCg0cmchdC3TVeDE5teZ6jgMkv+hJ\r\n4UEAAAAASUVORK5CYII=\r\n\r\n--b2=_gDrQ7IUYMWRbKco92kpwP8xZXo2AcQOJqoSHJeYpQ--','New item shared with you\n\n[Proton Drive](https://drive.proton.me/)\n\nNew item shared with you\n\nLeslie Staron (Leslie@mavrix.one) shared an item with you:\n\nThis is a link to our team contact information. When you have a chance (next week), please confirm all of your details/update any blanks. Thanks!\n\nMavrix1 Team Info\n\n[Accept item](https://drive.proton.me/0hf8byng5DVpLNsVxnZhJ-P-kQILEY3SyujmbcY6x2ktUVeycFlz53tIsB1oGfLAwFBBkgmbBc5dsOBIJCvnkw==/pRskZZgv44hFx48qeBRR6O2c3dNnwj_8RIo1C6u4g8hxcmbGBACimKhNsF8STLGlBnHULs28kNLb8V57Tc95WQ==?invitation=AYLsveFcrG2nc3i1TPMi9A&email=rick%40mavrix.one)\n\n© 2024 Proton AG Switzerland\nRoute de la Galaise 32, 1228 Plan-les-Ouates, Geneva, Switzerland',0,0,0,0,0,0,'2025-09-06 23:49:15','2025-12-09 19:28:11','2025-12-09 19:28:11','2025-12-09 19:28:11',NULL,NULL,NULL),
(691,4,'<KFE85VMZDAR2D0M61Q9VB5AHB4@drive.proton.me>',NULL,NULL,'jarrett shared an item with you','no-reply@drive.proton.me','\"jarrett (via Proton Drive)\"','--b2=_PO14iNpj1u6JH7j3GNiuxmcwSiMVWpznUgoYqIlb8\r\nContent-Type: text/html; charset=utf-8\r\nContent-Transfer-Encoding: base64\r\n\r\nPCFET0NUWVBFIGh0bWw+DQo8P3htbCBlbmNvZGluZz0idXRmLTgiID8+PGh0bWwgeG1sbnM9Imh0\r\ndHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWwiIHhtbG5zOnY9InVybjpzY2hlbWFzLW1pY3Jvc29m\r\ndC1jb206dm1sIiB4bWxuczpvPSJ1cm46c2NoZW1hcy1taWNyb3NvZnQtY29tOm9mZmljZTpvZmZp\r\nY2UiPg0KDQo8aGVhZD48bWV0YSBodHRwLWVxdWl2PSJDb250ZW50LVR5cGUiIGNvbnRlbnQ9InRl\r\neHQvaHRtbDsgY2hhcnNldD11dGYtOCI+DQogICAgPCEtLSBOQU1FOiAxIENPTFVNTiAtLT4NCiAg\r\nICA8IS0tW2lmIGd0ZSBtc28gMTVdPg0KICAgIDx4bWw+DQogICAgICAgIDxvOk9mZmljZURvY3Vt\r\nZW50U2V0dGluZ3M+DQogICAgICAgIDxvOkFsbG93UE5HLz4NCiAgICAgICAgPG86UGl4ZWxzUGVy\r\nSW5jaD45NjwvbzpQaXhlbHNQZXJJbmNoPg0KICAgICAgICA8L286T2ZmaWNlRG9jdW1lbnRTZXR0\r\naW5ncz4NCiAgICA8L3htbD4NCiAgICA8IVtlbmRpZl0tLT4NCiAgICA8bWV0YSBjaGFyc2V0PSJV\r\nVEYtOCI+DQogICAgPG1ldGEgbmFtZT0ieC1hcHBsZS1kaXNhYmxlLW1lc3NhZ2UtcmVmb3JtYXR0\r\naW5nIj4NCiAgICA8bWV0YSBuYW1lPSJmb3JtYXQtZGV0ZWN0aW9uIiBjb250ZW50PSJ0ZWxlcGhv\r\nbmU9bm8sIGRhdGU9bm8sIGFkZHJlc3M9bm8sIGVtYWlsPW5vLCB1cmw9bm8iPg0KICAgIDxtZXRh\r\nIGh0dHAtZXF1aXY9IlgtVUEtQ29tcGF0aWJsZSIgY29udGVudD0iSUU9ZWRnZSI+DQogICAgPG1l\r\ndGEgbmFtZT0idmlld3BvcnQiIGNvbnRlbnQ9IndpZHRoPWRldmljZS13aWR0aCwgaW5pdGlhbC1z\r\nY2FsZT0xIj4NCiAgICA8bWV0YSBuYW1lPSJhdXRob3IiIGNvbnRlbnQ9IlByb3RvbiAmbHQ7bm8t\r\ncmVwbHlAZHJpdmUucHJvdG9uLm1lJmd0OyI+DQogICAgPG1ldGEgbmFtZT0iZGVzY3JpcHRpb24i\r\nIGNvbnRlbnQ9Ik5ldyBpdGVtIHNoYXJlZCB3aXRoIHlvdSI+DQogICAgPHRpdGxlPmphcnJldHQg\r\nc2hhcmVkIGFuIGl0ZW0gd2l0aCB5b3U8L3RpdGxlPg0KDQoNCjxzdHlsZSB0eXBlPSJ0ZXh0L2Nz\r\ncyI+QG1lZGlhIG9ubHkgc2NyZWVuIGFuZCAobWluLXdpZHRoOjc2OHB4KXsudGVtcGxhdGVDb250\r\nYWluZXJ7d2lkdGg6IDYwMHB4ICFpbXBvcnRhbnQ7fX1AbWVkaWEgb25seSBzY3JlZW4gYW5kICht\r\nYXgtd2lkdGg6IDUyMHB4KXtib2R5LHRhYmxlLHRkLHAsYXstd2Via2l0LXRleHQtc2l6ZS1hZGp1\r\nc3Q6IG5vbmUgIWltcG9ydGFudDt9Ym9keXt3aWR0aDogMTAwJSAhaW1wb3J0YW50OyBtaW4td2lk\r\ndGg6IDEwMCUgIWltcG9ydGFudDt9Lm1jblJldGluYUltYWdle21heC13aWR0aDogMTAwJSAhaW1w\r\nb3J0YW50O30ubWNuQnV0dG9uQ29udGVudENvbnRhaW5lciwubWNuVGV4dENvbnRlbnRDb250YWlu\r\nZXJ7bWF4LXdpZHRoOiAxMDAlICFpbXBvcnRhbnQ7IHdpZHRoOiAxMDAlICFpbXBvcnRhbnQ7fS5t\r\nY25UZXh0Q29udGVudHtwYWRkaW5nLXJpZ2h0OiAzMnB4ICFpbXBvcnRhbnQ7IHBhZGRpbmctbGVm\r\ndDogMzJweCAhaW1wb3J0YW50O31oMXtmb250LXNpemU6IDIycHggIWltcG9ydGFudDsgbGluZS1o\r\nZWlnaHQ6IDEuMjVlbSAhaW1wb3J0YW50O30jdGVtcGxhdGVCb2R5IC5tY25UZXh0Q29udGVudCwj\r\ndGVtcGxhdGVCb2R5IC5tY25UZXh0Q29udGVudCBwe2ZvbnQtc2l6ZTogMTZweCAhaW1wb3J0YW50\r\nOyBsaW5lLWhlaWdodDogMS41ZW0gIWltcG9ydGFudDt9I3RlbXBsYXRlRm9vdGVyIC5tY25UZXh0\r\nQ29udGVudCwjdGVtcGxhdGVGb290ZXIgLm1jblRleHRDb250ZW50IHB7Zm9udC1zaXplOiAxNHB4\r\nICFpbXBvcnRhbnQ7IGxpbmUtaGVpZ2h0OiAxLjVlbSAhaW1wb3J0YW50O319PC9zdHlsZT48L2hl\r\nYWQ+DQoNCjxib2R5IHN0eWxlPSJoZWlnaHQ6IDEwMCU7IG1hcmdpbjogMDsgcGFkZGluZzogMDsg\r\nd2lkdGg6IDEwMCU7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IGJhY2tncm91bmQtY29sb3I6ICNmNWY0ZjI7Ij4NCiAgICA8IS0tW2lm\r\nICFndGUgbXNvIDldPjwhLS0tLT48c3BhbiBjbGFzcz0ibWNuUHJldmlld1RleHQiIHN0eWxlPSJm\r\nb250LXNpemU6IDBweDsgbGluZS1oZWlnaHQ6IDBweDsgbWF4LWhlaWdodDogMHB4OyBtYXgtd2lk\r\ndGg6IDBweDsgb3BhY2l0eTogMDsgb3ZlcmZsb3c6IGhpZGRlbjsgdmlzaWJpbGl0eTogaGlkZGVu\r\nOyBtc28taGlkZTogYWxsOyBkaXNwbGF5OiBub25lOyI+TmV3IGl0ZW0gc2hhcmVkIHdpdGggeW91\r\nPC9zcGFuPjwhLS08IVtlbmRpZl0tLT4NCiAgICA8Y2VudGVyPg0KICAgICAgICA8dGFibGUgYWxp\r\nZ249ImNlbnRlciIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIGhl\r\naWdodD0iMTAwJSIgd2lkdGg9IjEwMCUiIGlkPSJib2R5VGFibGUiIHN0eWxlPSJib3JkZXItY29s\r\nbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6\r\nIDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgaGVpZ2h0OiAxMDAlOyBtYXJnaW46IDA7IHBhZGRpbmc6IDA7IHdpZHRoOiAxMDAl\r\nOyBiYWNrZ3JvdW5kLWNvbG9yOiAjZjVmNGYyOyI+DQogICAgICAgICAgICA8dHI+DQogICAgICAg\r\nICAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0idG9wIiBpZD0iYm9keUNlbGwiIHN0\r\neWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgaGVpZ2h0OiAxMDAlOyBtYXJn\r\naW46IDA7IHBhZGRpbmc6IDhweDsgd2lkdGg6IDEwMCU7IGJvcmRlci10b3A6IDA7Ij4NCiAgICAg\r\nICAgICAgICAgICAgICAgPCEtLSBCRUdJTiBURU1QTEFURSAvLyAtLT4NCiAgICAgICAgICAgICAg\r\nICAgICAgPCEtLVtpZiAoZ3RlIG1zbyA5KXwoSUUpXT4NCiAgICAgICAgICAgICAgICAgICAgPHRh\r\nYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5n\r\nPSIwIiB3aWR0aD0iNjAwIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij48dHI+PHRkIGFsaWduPSJjZW50\r\nZXIiIHZhbGlnbj0idG9wIiB3aWR0aD0iNjAwIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij4NCiAgICAg\r\nICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICAgICAgICAgIDx0YWJsZSBi\r\nb3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNs\r\nYXNzPSJ0ZW1wbGF0ZUNvbnRhaW5lciIgc3R5bGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7\r\nIG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBib3JkZXI6\r\nIDA7IGJvcmRlci1yYWRpdXM6IDE2cHg7IG1heC13aWR0aDogNjAwcHg7Ij4NCjx0cj4NCiAgICA8\r\ndGQgdmFsaWduPSJ0b3AiIGlkPSJ0ZW1wbGF0ZUhlYWRlciIgc3R5bGU9Im1zby1saW5lLWhlaWdo\r\ndC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyBiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmZmZmOyBiYWNrZ3JvdW5k\r\nLWltYWdlOiBub25lOyBiYWNrZ3JvdW5kLXJlcGVhdDogbm8tcmVwZWF0OyBiYWNrZ3JvdW5kLXBv\r\nc2l0aW9uOiBjZW50ZXI7IGJhY2tncm91bmQtc2l6ZTogY292ZXI7IGJvcmRlci10b3A6IDA7IGJv\r\ncmRlci1ib3R0b206IDA7IHBhZGRpbmctdG9wOiAwcHg7IHBhZGRpbmctYm90dG9tOiAwcHg7IGJv\r\ncmRlci1yYWRpdXM6IDE2cHggMTZweCAwIDA7Ij4NCiAgICAgICAgPHRhYmxlIGJvcmRlcj0iMCIg\r\nY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jbklt\r\nYWdlQmxvY2siIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFw\r\nc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQog\r\nICAgICAgICAgICA8dGJvZHkgY2xhc3M9Im1jbkltYWdlQmxvY2tPdXRlciI+DQogICAgICAgICAg\r\nICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJt\r\nY25JbWFnZUJsb2NrSW5uZXIiIHN0eWxlPSJwYWRkaW5nOiAxNnB4IDE2cHggMHB4IDE2cHg7IG1z\r\nby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICA8dGFibGUgYWxpZ249ImxlZnQiIHdpZHRoPSIxMDAlIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5n\r\nPSIwIiBjZWxsc3BhY2luZz0iMCIgY2xhc3M9Im1jbkltYWdlQ29udGVudENvbnRhaW5lciIgc3R5\r\nbGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxl\r\nLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0\r\ncj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0ibWNuSW1h\r\nZ2VDb250ZW50IiB2YWxpZ249InRvcCIgc3R5bGU9InBhZGRpbmc6IDE2cHggMTZweCAwcHggMTZw\r\neDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSJodHRwczovL2RyaXZlLnByb3Rvbi5tZS8i\r\nIHRhcmdldD0iX2JsYW5rIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1t\r\ncy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIGxpbmUtaGVpZ2h0OiBpbmhlcml0OyBjb2xvcjogIzZkNGFmZjsgZm9udC13ZWlnaHQ6IG5vcm1h\r\nbDsgdGV4dC1kZWNvcmF0aW9uOiB1bmRlcmxpbmU7Ij48aW1nIGFsaWduPSJjZW50ZXIiIGFsdD0i\r\nUHJvdG9uIERyaXZlIiBzcmM9ImNpZDo3MGY4OTBkMTc4ZWFmYjkyNzM3NkBkcml2ZS5wcm90b24u\r\nbWUiIHdpZHRoPSIxNTAiIHN0eWxlPSJ3aWR0aDogMzUuNDQ3NyU7IG1heC13aWR0aDogMzAwcHg7\r\nIHBhZGRpbmctYm90dG9tOiAwOyB2ZXJ0aWNhbC1hbGlnbjogYm90dG9tOyBib3JkZXI6IDA7IGhl\r\naWdodDogYXV0bzsgb3V0bGluZTogbm9uZTsgdGV4dC1kZWNvcmF0aW9uOiBub25lOyAtbXMtaW50\r\nZXJwb2xhdGlvbi1tb2RlOiBiaWN1YmljOyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwg\r\nc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdodDogMS41ZW07IGNvbG9yOiAj\r\nNmQ0YWZmOyBkaXNwbGF5OiBpbmxpbmU7Ij48L2E+DQogICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAg\r\nICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAg\r\nIDwvdHI+DQogICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICA8L3RhYmxlPg0KICAgIDwvdGQ+\r\nDQo8L3RyPg0KPHRyPg0KICAgIDx0ZCB2YWxpZ249InRvcCIgaWQ9InRlbXBsYXRlQm9keSIgc3R5\r\nbGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBiYWNrZ3JvdW5kLWNvbG9yOiAj\r\nZmZmZmZmOyBiYWNrZ3JvdW5kLWltYWdlOiBub25lOyBiYWNrZ3JvdW5kLXJlcGVhdDogbm8tcmVw\r\nZWF0OyBiYWNrZ3JvdW5kLXBvc2l0aW9uOiBjZW50ZXI7IGJhY2tncm91bmQtc2l6ZTogY292ZXI7\r\nIGJvcmRlci10b3A6IDA7IGJvcmRlci1ib3R0b206IDA7IHBhZGRpbmctdG9wOiA4cHg7IHBhZGRp\r\nbmctYm90dG9tOiA4cHg7Ij48dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNw\r\nYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dEJsb2NrIiBzdHlsZT0ibWluLXdp\r\nZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAw\r\ncHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13\r\nZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNuVGV4\r\ndEJsb2NrT3V0ZXIiPg0KICAgICAgICA8dHI+DQogICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3Ai\r\nIGNsYXNzPSJtY25UZXh0QmxvY2tJbm5lciIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBl\r\neGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAg\r\nICAgIDx0YWJsZSBhbGlnbj0ibGVmdCIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgY2VsbHBh\r\nZGRpbmc9IjAiIHdpZHRoPSIxMDAlIiBzdHlsZT0id2lkdGg6MTAwJTsiPjx0cj4NCiAgICAgICAg\r\nICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAg\r\nICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIHdpZHRoPSI2MDAiIHN0eWxlPSJ3aWR0aDo2\r\nMDBweDsiPg0KICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgICAgIDx0\r\nYWJsZSBhbGlnbj0ibGVmdCIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9\r\nIjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dENvbnRlbnRDb250YWluZXIiIHN0eWxlPSJt\r\nYXgtd2lkdGg6IDEwMCU7IG1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBz\r\nZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAg\r\nICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jblRl\r\neHRDb250ZW50IiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHdvcmQt\r\nYnJlYWs6IGJyZWFrLXdvcmQ7IGNvbG9yOiAjMGMwYzE0OyBmb250LWZhbWlseTogQXJpYWwsIEhl\r\nbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdodDogMS41ZW07\r\nIHRleHQtYWxpZ246IGxlZnQ7IHBhZGRpbmctdG9wOiA4cHg7IHBhZGRpbmctYm90dG9tOiAxMnB4\r\nOyBwYWRkaW5nLXJpZ2h0OiAzMnB4OyBwYWRkaW5nLWxlZnQ6IDMycHg7Ij4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgPGgxIHN0eWxlPSJkaXNwbGF5OiBibG9jazsgbWFyZ2luOiAw\r\nOyBwYWRkaW5nOiAwOyBjb2xvcjogIzBjMGMxNDsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRp\r\nY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMjRweDsgZm9udC1zdHlsZTogbm9ybWFsOyBmb250\r\nLXdlaWdodDogYm9sZDsgbGluZS1oZWlnaHQ6IDEuMjVlbTsgbGV0dGVyLXNwYWNpbmc6IDBweDsg\r\ndGV4dC1hbGlnbjogbGVmdDsiPk5ldyBpdGVtIHNoYXJlZCB3aXRoIHlvdTwvaDE+PHAgY2xhc3M9\r\nIm1jblRleHRDb250ZW50Q29udGFpbmVyIiBzdHlsZT0icGFkZGluZzogMHB4OyBtc28tbGluZS1o\r\nZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBBcmlh\r\nbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE2cHg7IGxpbmUtaGVpZ2h0OiAx\r\nLjVlbTsgdGV4dC1hbGlnbjogbGVmdDsgbWFyZ2luOiAxMnB4IDBweDsiPjxzdHJvbmc+amFycmV0\r\ndDwvc3Ryb25nPiAoamFycmV0dEBtYXZyaXgub25lKSBzaGFyZWQgYW4gaXRlbSB3aXRoIHlvdTo8\r\nL3A+PHAgY2xhc3M9Im1jblRleHRDb250ZW50Q29udGFpbmVyIiBzdHlsZT0icGFkZGluZzogMHB4\r\nOyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgY29sb3I6ICMwYzBjMTQ7IGZvbnQt\r\nZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE2cHg7IGxp\r\nbmUtaGVpZ2h0OiAxLjVlbTsgdGV4dC1hbGlnbjogbGVmdDsgbWFyZ2luOiAxMnB4IDBweDsiPjxz\r\ncGFuIHN0eWxlPSJjb2xvcjogIzY2NjsiPjwvc3Bhbj48L3A+PHAgc3R5bGU9Im1hcmdpbjogMTJw\r\neCAwOyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgYm9yZGVyOiAxcHggc29saWQg\r\nI0VBRTdFNDsgYm9yZGVyLXJhZGl1czogNHB4OyBwYWRkaW5nOiA2cHggMTZweDsiPjxpbWcgYWxp\r\nZ249Im1pZGRsZSIgYWx0PSIiIHNyYz0iY2lkOmZvbGRlci1pY29uLWZvci1zaGFyaW5nLWVtYWls\r\nQGRyaXZlLnByb3Rvbi5tZSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiBzdHlsZT0ibWF4LXdpZHRo\r\nOiA0MHB4O3BhZGRpbmctYm90dG9tOiAwO2Rpc3BsYXk6IGlubGluZS1ibG9jayAhaW1wb3J0YW50\r\nO3ZlcnRpY2FsLWFsaWduOiB0ZXh0LWJvdHRvbTtib3JkZXI6IDA7d2lkdGg6IDIwcHg7aGVpZ2h0\r\nOiAyMHB4O21hcmdpbi1yaWdodDogNXB4OyI+IDxiPlBheXJvbGwgJmFtcDsgSGlyaW5nPC9iPjwv\r\ncD4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAg\r\nPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAgICAg\r\nPC90ZD4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgICAgIDwh\r\nLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8L3RyPjwvdGFibGU+DQogICAgICAgICAgICAg\r\nICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICA8L3RkPg0KICAgICAgICA8L3RyPg0KICAgIDwv\r\ndGJvZHk+DQo8L3RhYmxlPg0KPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxz\r\ncGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jbkJ1dHRvbkJsb2NrIiBzdHlsZT0ibWlu\r\nLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNl\r\nOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNu\r\nQnV0dG9uQmxvY2tPdXRlciI+DQogICAgICAgIDx0cj4NCiAgICAgICAgICAgIDx0ZCB2YWxpZ249\r\nInRvcCIgYWxpZ249ImxlZnQiIGNsYXNzPSJtY25CdXR0b25CbG9ja0lubmVyIiBzdHlsZT0ibXNv\r\nLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAt\r\nd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHRleHQtYWxpZ246IGNlbnRlcjsgcGFkZGlu\r\nZy1sZWZ0OiAzMnB4OyBwYWRkaW5nLXJpZ2h0OiAzMnB4OyBwYWRkaW5nLXRvcDogMHB4OyBwYWRk\r\naW5nLWJvdHRvbTogMzJweDsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGFi\r\nbGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIGNsYXNzPSJtY25C\r\ndXR0b25Db250ZW50Q29udGFpbmVyIiBzdHlsZT0ibXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28t\r\ndGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRl\r\neHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogc2VwYXJhdGU7Ij4NCiAgICAg\r\nICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249Im1pZGRsZSIgc3R5bGU9Im1zby1s\r\naW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdl\r\nYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgIDxhIGNsYXNzPSJtY25CdXR0b24gbWFpbGluZy1idXR0b24iIHRpdGxlPSJBY2NlcHQg\r\naXRlbSBpbiBQcm90b24gRHJpdmUiIGhyZWY9Imh0dHBzOi8vZHJpdmUucHJvdG9uLm1lL0ZycmQ3\r\nTEM2b2xidDljdzF1ZTd5czR1WG5ZbEI2dFJYX042LVZwbDRfN1BILTBGZkdHMUZFWnlGUFNxYlVp\r\nN2VWUmRDZktyZ0JoS0UzWWdMbUt5UC13PT0vMnpQX2o3VVFGRHd4Y2NUV3FUYzV1OTIwQnF4ZDJy\r\nQVZ4Z2UwanVjUGlmMUNTMTB6dmg0d3BnYVNDODlhNWtWRDV6MUxBZ2hVN0w4dlFja3g4SjgxdXc9\r\nPT9pbnZpdGF0aW9uPV8yZnpscmpycGRvWW9nU1NFTlFnZ0EmZW1haWw9UmljayU0MG1hdnJpeC5v\r\nbmUiIHRhcmdldD0iX2JsYW5rIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7\r\nIC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6\r\nIDE2cHg7IHBhZGRpbmctbGVmdDogMzJweDsgcGFkZGluZy1yaWdodDogMzJweDsgcGFkZGluZy10\r\nb3A6IDEycHg7IHBhZGRpbmctYm90dG9tOiAxMnB4OyBkaXNwbGF5OiBibG9jazsgZm9udC13ZWln\r\naHQ6IG5vcm1hbDsgbGV0dGVyLXNwYWNpbmc6IDFweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0\r\nLWFsaWduOiBjZW50ZXI7IHRleHQtZGVjb3JhdGlvbjogbm9uZTsgY29sb3I6ICNGRkZGRkY7IGJv\r\ncmRlci1yYWRpdXM6IDhweDsgYmFja2dyb3VuZC1jb2xvcjogIzZkNGFmZjsiPg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgIDxpIHN0eWxlPSJmb250LWZhbWlseTogQXJpYWwsIEhl\r\nbHZldGljYSwgc2Fucy1zZXJpZjtmb250LXNpemU6IDE2cHg7cGFkZGluZy1sZWZ0OiAzMnB4O3Bh\r\nZGRpbmctcmlnaHQ6IDMycHg7cGFkZGluZy10b3A6IDEycHg7cGFkZGluZy1ib3R0b206IDEycHg7\r\nZGlzcGxheTogYmxvY2s7Zm9udC13ZWlnaHQ6IG5vcm1hbDtsZXR0ZXItc3BhY2luZzogMXB4O2xp\r\nbmUtaGVpZ2h0OiAxLjVlbTt0ZXh0LWFsaWduOiBjZW50ZXI7dGV4dC1kZWNvcmF0aW9uOiBub25l\r\nO2NvbG9yOiAjRkZGRkZGOyI+Jm5ic3A7PC9pPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICA8c3BhbiBzdHlsZT0iIj5BY2NlcHQgaXRlbTwvc3Bhbj4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgPC9hPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAg\r\nICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0K\r\nICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90\r\nZD4NCiAgICAgICAgPC90cj4NCiAgICA8L3Rib2R5Pg0KPC90YWJsZT4NCiAgICA8L3RkPg0KPC90\r\ncj48dHI+DQogICAgPHRkIHZhbGlnbj0idG9wIiBpZD0idGVtcGxhdGVGb290ZXIiIHN0eWxlPSJt\r\nc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgYmFja2dyb3VuZC1jb2xvcjogI2ZmZmZm\r\nZjsgYmFja2dyb3VuZC1pbWFnZTogbm9uZTsgYmFja2dyb3VuZC1yZXBlYXQ6IG5vLXJlcGVhdDsg\r\nYmFja2dyb3VuZC1wb3NpdGlvbjogY2VudGVyOyBiYWNrZ3JvdW5kLXNpemU6IGNvdmVyOyBib3Jk\r\nZXItdG9wOiAwOyBib3JkZXItYm90dG9tOiAwOyBwYWRkaW5nLXRvcDogMTZweDsgcGFkZGluZy1i\r\nb3R0b206IDE2cHg7IGJvcmRlci1yYWRpdXM6IDAgMCAxNnB4IDE2cHg7Ij4NCiAgICAgICAgPHRh\r\nYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAw\r\nJSIgY2xhc3M9Im1jbkRpdmlkZXJCbG9jayIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVy\r\nLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNw\r\nYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IHRhYmxlLWxheW91dDogZml4ZWQ7Ij4NCiAgICA8dGJvZHkgY2xhc3M9Im1j\r\nbkRpdmlkZXJCbG9ja091dGVyIj4NCiAgICAgICAgPHRyPg0KICAgICAgICAgICAgPHRkIGNsYXNz\r\nPSJtY25EaXZpZGVyQmxvY2tJbm5lciIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgcGFkZGluZzog\r\nMCAzMnB4IDE2cHggMzJweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAg\r\nICAgICAgICAgICAgICA8dGFibGUgY2xhc3M9Im1jbkRpdmlkZXJDb250ZW50IiBib3JkZXI9IjAi\r\nIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIHN0eWxlPSJtaW4t\r\nd2lkdGg6IDEwMCU7IGJvcmRlci10b3A6IDFweCBzb2xpZCAjRjVGNEYyOyBib3JkZXItY29sbGFw\r\nc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBw\r\ndDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAg\r\nICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIHN0eWxlPSJtc28tbGlu\r\nZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJr\r\naXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICA8c3Bhbj48L3NwYW4+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAg\r\nICAgICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+\r\nDQogICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8IS0tDQogICAgICAg\r\nICAgICAgICAgPHRkIGNsYXNzPSJtY25EaXZpZGVyQmxvY2tJbm5lciIgc3R5bGU9InBhZGRpbmc6\r\nIDMycHg7Ij4NCiAgICAgICAgICAgICAgICA8aHIgY2xhc3M9Im1jbkRpdmlkZXJDb250ZW50IiBz\r\ndHlsZT0iYm9yZGVyLWJvdHRvbS1jb2xvcjpub25lOyBib3JkZXItbGVmdC1jb2xvcjpub25lOyBi\r\nb3JkZXItcmlnaHQtY29sb3I6bm9uZTsgYm9yZGVyLWJvdHRvbS13aWR0aDowOyBib3JkZXItbGVm\r\ndC13aWR0aDowOyBib3JkZXItcmlnaHQtd2lkdGg6MDsgbWFyZ2luLXRvcDowOyBtYXJnaW4tcmln\r\naHQ6MDsgbWFyZ2luLWJvdHRvbTowOyBtYXJnaW4tbGVmdDowOyIgLz4NCiAgICAgICAgICAgICAg\r\nICAtLT4NCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwv\r\ndGFibGU+DQo8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAi\r\nIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dEJsb2NrIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAl\r\nOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10\r\nYWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNuVGV4dEJsb2NrT3V0\r\nZXIiPg0KICAgIDx0cj4NCiAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dEJs\r\nb2NrSW5uZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAg\r\nICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIi\r\nIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIiB3aWR0aD0iMTAwJSIg\r\nc3R5bGU9IndpZHRoOjEwMCU7Ij4NCiAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICA8\r\nIVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPHRk\r\nIHZhbGlnbj0idG9wIiB3aWR0aD0iNjAwIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij4NCiAgICAgICAg\r\nICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRl\r\ncj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9\r\nIm1jblRleHRDb250ZW50Q29udGFpbmVyIiBzdHlsZT0ibWF4LXdpZHRoOiAxMDAlOyBtaW4td2lk\r\ndGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBw\r\ndDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdl\r\nYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPHRib2R5Pg0K\r\nICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9w\r\nIiBjbGFzcz0ibWNuVGV4dENvbnRlbnQiIHN0eWxlPSJwYWRkaW5nLXRvcDogMTZweDsgcGFkZGlu\r\nZy1yaWdodDogMzJweDsgcGFkZGluZy1ib3R0b206IDA7IHBhZGRpbmctbGVmdDogMzJweDsgbXNv\r\nLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAt\r\nd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHdvcmQtYnJlYWs6IGJyZWFrLXdvcmQ7IGNv\r\nbG9yOiAjNzA2ZDZiOyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsg\r\nZm9udC1zaXplOiAxNHB4OyBsaW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGNlbnRlcjsi\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgPHAgc3R5bGU9Im1hcmdpbjogMTJweCAwOyBwYWRk\r\naW5nOiAwOyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPsKpIDIwMjQgUHJvdG9u\r\nIEFHIFN3aXR6ZXJsYW5kPGJyPlJvdXRlIGRlIGxhIEdhbGFpc2UmbmJzcDszMiwgMTIyOCZuYnNw\r\nO1BsYW4tbGVzLU91YXRlcywgR2VuZXZhLCZuYnNwO1N3aXR6ZXJsYW5kPC9wPg0KICAgICAgICAg\r\nICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAg\r\nPC90Ym9keT4NCiAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICA8IS0tW2lmIG1zb10+\r\nDQogICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAg\r\nICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICA8L3RhYmxl\r\nPg0KICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgIDwvdGQ+DQogICAgPC90cj4NCiAg\r\nICA8L3Rib2R5Pg0KPC90YWJsZT4NCjx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBj\r\nZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25JbWFnZUJsb2NrIiBzdHlsZT0i\r\nYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFi\r\nbGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7IG1pbi13aWR0aDogMTAwJTsiPg0KICAgIDx0Ym9keSBjbGFzcz0i\r\nbWNuSW1hZ2VCbG9ja091dGVyIj4NCiAgICA8dHI+DQogICAgICAgIDx0ZCB2YWxpZ249InRvcCIg\r\nY2xhc3M9Im1jbkltYWdlQmxvY2tJbm5lciIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBl\r\neGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyBwYWRkaW5nOiAxNnB4OyI+DQogICAgICAgICAgICA8dGFibGUgYWxpZ249ImNl\r\nbnRlciIgd2lkdGg9IjEwMCUiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5n\r\nPSIwIiBjbGFzcz0ibWNuSW1hZ2VDb250ZW50Q29udGFpbmVyIiBzdHlsZT0iYm9yZGVyLWNvbGxh\r\ncHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAw\r\ncHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IG1pbi13aWR0aDogMTAwJTsiPg0KICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAg\r\nICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0ibWNuSW1hZ2VD\r\nb250ZW50IiB2YWxpZ249InRvcCIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5\r\nOyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyBwYWRkaW5nLXJpZ2h0OiAxNnB4OyBwYWRkaW5nLWxlZnQ6IDE2cHg7IHBhZGRpbmctdG9w\r\nOiAwOyBwYWRkaW5nLWJvdHRvbTogMDsgdGV4dC1hbGlnbjogY2VudGVyOyI+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICA8aW1nIGFsaWduPSJjZW50ZXIiIGFsdD0iIiBzcmM9ImNpZDpmZmIyMmJl\r\nMjhiYzJiMTIyYTU5OEBkcml2ZS5wcm90b24ubWUiIHdpZHRoPSIyNzYiIGNsYXNzPSJtY25SZXRp\r\nbmFJbWFnZSIgc3R5bGU9ImJvcmRlcjogMDsgaGVpZ2h0OiBhdXRvOyBvdXRsaW5lOiBub25lOyB0\r\nZXh0LWRlY29yYXRpb246IG5vbmU7IC1tcy1pbnRlcnBvbGF0aW9uLW1vZGU6IGJpY3ViaWM7IG1h\r\neC13aWR0aDogNTUycHg7IHBhZGRpbmctYm90dG9tOiAwOyB2ZXJ0aWNhbC1hbGlnbjogYm90dG9t\r\nOyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAx\r\nMnB4OyBsaW5lLWhlaWdodDogMS41ZW07IGRpc3BsYXk6IGlubGluZTsiPg0KICAgICAgICAgICAg\r\nICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgPC90\r\nYm9keT4NCiAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgIDwvdGQ+DQogICAgPC90cj4NCiAg\r\nICA8L3Rib2R5Pg0KPC90YWJsZT4NCiAgICA8L3RkPg0KPC90cj4gICAgICAgICAgICAgICAgICAg\r\nICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgICAgICAgICAgPCEtLVtpZiAoZ3RlIG1zbyA5\r\nKXwoSUUpXT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAg\r\nICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAg\r\nICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgICAgICAgICAgICAgPCEt\r\nLSAvLyBFTkQgVEVNUExBVEUgLS0+DQogICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAg\r\nICAgICAgICAgPC90cj4NCiAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgIDwvY2VudGVyPg0K\r\nICAgIDwvYm9keT4NCjwvaHRtbD4NCg==\r\n\r\n--b2=_PO14iNpj1u6JH7j3GNiuxmcwSiMVWpznUgoYqIlb8\r\nContent-Type: image/png; name=logos-footer.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <ffb22be28bc2b122a598@drive.proton.me>\r\nContent-Disposition: inline; filename=logos-footer.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAigAAABwCAMAAAADkXsEAAAABGdBTUEAALGPC/xhBQAAAAFzUkdC\r\nAK7OHOkAAAAJcEhZcwAAFiUAABYlAUlSJPAAAALfUExURUdwTIpy/YZp/rfc/KOc6Ydn+76K3WxJ\r\n/97I0ZBp//CJWbx+0b6l+o1v/ubH3y7ZzdVqlo5p/fO7m29P/sXM8qiO/vi7tL7O++l3e5Z3/4tp\r\n/8mz9eSr2LXu9bae/3df/pV3//jZ0L2q/te/+XaA/bXo9+GpufnSzjKj8NrC/+SGjNLE/9Roo6Rp\r\n5KGK/cRiqNxujzq619ep3Itk/Cyo8PnBycWIy2vZ4fJgxltp+O9/e0ed4rbt9cWHyuRyhDHO0DjA\r\n1CrgyrVau+tfyJt4/8GI/3BN/21K/3BN/3hN+rCS/3VS/55+/3JL/H9O+JZ1/5p5/7KZ/ref/oVR\r\n9UZ0/4tP8pFx/+C3/1Jm/6uM/7yl/6KC/4lp/6dT5qaH/0xt/1hg/z97/7ZW4HpZ/4Nl/39g/9ix\r\n/11a/8G//59S6bbs9TiC/65U4zKJ/7zj+GhQ/4JM7Ytw/5JQ7x2f/5lS2L1X3JhR7MCr/9Kr/7jX\r\n/762/4pO5mNV/8ym/5JP345Z8fK9zcVY2SuQ/3tL9O66z+a00/+7k7H28r/e/WFl9iWX/8Wg/+q3\r\n0biU/5df681Z1l1s87d612Re+L+a/8au8cKDzsbR/RWo/7yn9qWT/rdcuceJycnJ/5eA/86QxLF0\r\n3OGw1rFZwNZb0s27/6tu4L5fspF6//a/y8LY+/B8ctSXvtqr2ta76M617eevqMKa5p9T0tKm3qCM\r\n/qVp471+06xXxZ5k5/jb0t9cztHB/8Ww/02R5lGJ6eGnrrat/2dX+7/U/0mZ40Wj4Mqg4sViqqRV\r\nzVSB7Fd67sm2/6OC9Vp08ECu3L/K/6uJ8uh1f97B5PHU2NbH//GEY8tlopuH/+TH4LqU6qmc/zu6\r\n2O24oIhf/+rN3NFom9icubKP79lsktyhtK+k/+peyeFxiN7S//rCyadWyjXI0/GNVN1vjJDG+fHN\r\nynqu9abL//20h/ife5bk7NVyobFiylqj/52w+HnLP+kAAABGdFJOUwBnRH8QICD+IP+AMd6f3v7+\r\n397dON6AWYTPvpdj3n+Fi9e/yv2m05d63k1/hd+7pNlD3PW/65P32brk5MfX58+IiN6/v4D1Cm7r\r\n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\r\n\r\n--b2=_PO14iNpj1u6JH7j3GNiuxmcwSiMVWpznUgoYqIlb8\r\nContent-Type: image/png; name=logo-proton-drive-purple.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <70f890d178eafb927376@drive.proton.me>\r\nContent-Disposition: inline; filename=logo-proton-drive-purple.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAgAAAACECAYAAADmxpMdAAAABGdBTUEAALGPC/xhBQAAACBjSFJN\r\nAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAhGVYSWZNTQAqAAAACAAFARIA\r\nAwAAAAEAAQAAARoABQAAAAEAAABKARsABQAAAAEAAABSASgAAwAAAAEAAgAAh2kABAAAAAEAAABa\r\nAAAAAAAAAEgAAAABAAAASAAAAAEAA6ABAAMAAAABAAEAAKACAAQAAAABAAACAKADAAQAAAABAAAA\r\nhAAAAADxbG/fAAAACXBIWXMAAAsTAAALEwEAmpwYAAABWWlUWHRYTUw6Y29tLmFkb2JlLnhtcAAA\r\nAAAAPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUg\r\nNi4wLjAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIv\r\nMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgog\r\nICAgICAgICAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyI+CiAg\r\nICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgIDwvcmRm\r\nOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgoZXuEHAABAAElEQVR4Aey9\r\nB6BtR1XwP/uW15IQkhAgtERAERGlBkXQRxFIhYAJAvp9FImYQkIR/LDkRBH0A0xIA/LJXwVR4Ekx\r\nlc4DQREIWAhNWiCEkkbKyyu37P/vt2bm3HPPPee+kvfIe2TPe/fsKWvWrFkzs9aasmen1LmOAx0H\r\nOg50HOg40HGg40DHgY4DHQc6DnQc6DjQcaDjQMeBjgMdBzoOdBzoONBxoONAx4GOAx0HOg50HOg4\r\n0HGg40DHgY4DHQc6DnQc6DjQcaDjQMeBjgMdBzoOdBzoONBxoONAx4GOAx0HOg50HOg40HGg40DH\r\ngY4DHQc6DnQc6DjQcaDjQMeBjgMdBzoOdBzoONBxoONAx4GOAx0HOg50HOg40HGg40DHgY4DHQc6\r\n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\r\n\r\n--b2=_PO14iNpj1u6JH7j3GNiuxmcwSiMVWpznUgoYqIlb8\r\nContent-Type: image/png; name=folder.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <folder-icon-for-sharing-email@drive.proton.me>\r\nContent-Disposition: inline; filename=folder.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAA\r\nAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACHSURBVHgB7dSxDcIwEIXh9w5RuGMGWIQ1vAVM\r\nAFkGWkbIGBQIeYQ0afOSSCmiSIkc6Up/rU+/bBcHOGP7Pj/U8UbitDw06hniv8IObF8XbQ4YPtTx\r\nHuI3wSM4SRKqgzFtDYX4q3ODWYZvqw2OhldcXYOjEizBEswLCg0cmchdC3TVeDE5teZ6jgMkv+hJ\r\n4UEAAAAASUVORK5CYII=\r\n\r\n--b2=_PO14iNpj1u6JH7j3GNiuxmcwSiMVWpznUgoYqIlb8--','New item shared with you\n\n[Proton Drive](https://drive.proton.me/)\n\nNew item shared with you\n\njarrett (jarrett@mavrix.one) shared an item with you:\n\nPayroll & Hiring\n\n[Accept item](https://drive.proton.me/Frrd7LC6olbt9cw1ue7ys4uXnYlB6tRX_N6-Vpl4_7PH-0FfGG1FEZyFPSqbUi7eVRdCfKrgBhKE3YgLmKyP-w==/2zP_j7UQFDwxccTWqTc5u920Bqxd2rAVxge0jucPif1CS10zvh4wpgaSC89a5kVD5z1LAghU7L8vQckx8J81uw==?invitation=_2fzlrjrpdoYogSSENQggA&email=Rick%40mavrix.one)\n\n© 2024 Proton AG Switzerland\nRoute de la Galaise 32, 1228 Plan-les-Ouates, Geneva, Switzerland',0,0,0,0,0,0,'2025-09-07 01:05:30','2025-12-09 19:28:11','2025-12-09 19:28:11','2025-12-09 19:28:11',NULL,NULL,NULL),
(692,4,'<etPan.68bdd12c.2ae8944a.8a4f@mavrix.one>',NULL,NULL,'Fwd: UAS Industry Day Agenda','rick@mavrix.one','Rick','<html><head></head><body><br> <br><div  class=3D=22gmail=5Fsignature=22>\r\n        <title></title>\r\n    =20\r\n    <br>\r\n    =20\r\n<div><span style=3D=22font-family: Helvetica, Arial;=22>Rick Mislan, PhD,=\r\n&nbsp;</span><div style=3D=22font-family: Helvetica, Arial;=22>=46ounder,=\r\n CTO</div><div style=3D=22font-family: Helvetica, Arial;=22><img class=3D=\r\n=22imgAttach=22 src=3D=22data:image/jpg;base64,/9j/4AAQSkZJRgABAQAASABIAA=\r\nD/4QCMRXhpZgAATU0AKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAA=\r\nAUgEoAAMAAAABAAIAAIdpAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAA=\r\nAQABAACgAgAEAAAAAQAAAGygAwAEAAAAAQAAABgAAAAA/+0AO=46Bob3Rvc2hvcCAzLjAAOEJ=\r\nJTQQEAAAAAAAAOEJJTQQlAAAAAAAQ1B2M2Y8AsgTpgAmY7PhCfv/AABEIABgAbAMBEQACEQED=\r\nEQH/xAAfAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgv/xAC1EAACAQMDAgQDBQUEBAAAA=\r\nX0BAgMABBE=46EiExQQYTUWEHInEUMoGRoQgjQrHB=46VLR8CQzYnKCCQoW=46xgZGiUmJygp=\r\nKjQ1Njc4OTpDREVGR0hJSlNUVVZXW=46laY2RlZmdoaWpzdHV2d3h5eoOEhYaHiImKkpOUlZa=\r\nXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4eLj5OXm5+jp6vHy8/T1=\r\n9vf4+fr/xAAfAQADAQEBAQEBAQEBAAAAAAAAAQIDBAUGBwgJCgv/xAC1EQACAQIEBAMEBwUEB=\r\nAABAncAAQIDEQQ=46ITEGEk=46RB2=46xEyIygQgUQpGhscEJIzNS8BVictEK=46iQ04SXx=46=\r\nxgZGiYnKCkqNTY3ODk6Q0R=46RkdISUpTV=46VWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4S=46=\r\nhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8T=46xsfIycrS09TV1tfY2dri4+T=\r\nl5ufo6ery8/T19vf4+fr/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB=\r\nAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/2wBDAQEBAQEBAQEBAQEBAQEBAQEBAQEBA=\r\nQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/3QAEAA7/2gAMAw=\r\nEAAhEDEQA/AP6=46/hz/AM=46Mv2+PjlH401z4Df8ABOvSPib4I8H/ABC8UfDqXxTb/tB+G/D=\r\nyza34Ymtmu4H07xJp+lXySiyv9NunaKGa1/0tY47h3SVIv6EzXwr8PeHpYHDcQ+JdXKsfjsrw=\r\nGaxwk+GcTinHD46jz02qu=46q1qdueNWCTkpvk5nCPN73wu=464mz3HKtUwHDscTQo4mthnVW=\r\nYUqd50ZWa5asISTs4ydk4rmspSs+X0f/hsb/gr=46/wBIqtP/APEn/h3/APHK8r/Urwg/6O9P=\r\n/wARHMjp/tnir/olV/4c8MH/AA2N/wA=46Yv8Ap=46Vp/wD4k/8ADv8A+OUf6leEH/R3p/8Ai=\r\nI5kH9s8Vf8ARKr/AMOeG=46/4bG/4Kx/9IqtO/wDEofhyf5=46f5/lk7j/Urwg/6O9P/wARHM=\r\ng/tnir/olV/wCHPDCf8Njf8=46Yv+kVWn/8AiT/w7/8AjlH+pXhB/wBHen/4iOZB/bP=46X/R=\r\nKr/w54YP+Gxv+CsX/AEiq0/8A8Sf+HX/xf9fyxR/qV4Qf9Hen/wCIjmQf2zxV/wBEqv8Aw54Y=\r\nX/hsb/grH/0iq07/AMSh+HP/ANf+f50f6leEH/R3p/8AiI5kH9s8Vf8ARKr/AMOeGD/hsb/gr=\r\nH/0iq07/wASh+HJ/kV/n+WTuP8AUrwg/wCjvT/8RHMg/tnir/olV/4c8MH/AA2N/wA=46Y/8A=\r\np=46Vp/wD4lB8Oj/Jl/wA+nO4/1K8IP+jvT/8AERzIP7Z4q/6JVf8Ahzwwn/DY3/BWL/p=46V=\r\np//AIk/8Ov/AIv/AA/mGP8AUrwg/wCjvT/8RHMg/tnir/olV/4c8MH/AA2N/wA=46Yv8Ap=46=\r\nVp/wD4lB8Ov5bxj8Sc+2KP9SvCD/o70/8AxEcyD+2eKv8AolV/4c8ML/w2L/wVjyB/w6q07k/=\r\n9HRfDj+pUfr9cDJo/1K8IP+juz/8AERzL/gfn9wf2xxV/0Sy+eZ4Y9Q/ad+K3/BRa8+Gngr4X=\r\n/s/fs+6Rpfx8+J=46hbp47+LUXivSNS+DHwCt9YnuYiml6z4jGma3448WaLYItzqOpQ+CJ/D+=\r\nj3O2TS9O8X3b29hXk8K5R4ZwzTMM24j4kr1eHsrqzeXZM8=46WpZ7xHKjGLTq0MM6+=46y7B1=\r\nqj5YUp5gsTWj7s6uEgp1DpzP=468RPDUMLl+Xwjj8T=46fWMWqsJ4LL1JtWjOp7OriKsVq5Kh=\r\nGEN4qq7RP51Phh4G8V/DrxN+0H4D8ceNLv4g+M/B/7RXxG8OeK/HN9LqU914s8Q6PDoNhq/iC=\r\nafVbi61OZ9VvoJ7wzahO95J5u+4xKzqv8AS+d47CZng+=46cxwGChluBx3CmXYrB5fTVKMM=46=\r\nhq2Jx0qGGjGjG=46JKlT5Y2pxUE1pdNSl+eYWlWw1bMsPWrSx=46ajmVenWruUr1qsKdBTqNz=\r\nbk3OSbvJ3720P/Q8e+Ol78S/=46Hxb/4Jkfs7+Efj38ffgZ4=46/aQ/4Kc/tVfDb4p3fwC+K/=\r\nin4WeIda8Paz4k/ZM0Z5WvfD97=46ZXWqabYaxqkeiXmsafqkelPf3TwW+J50n/dvHmTX=46H=\r\nDtm/+SB4e622hJp/K8rf4nZq9pfEc=4665fj=463zrM=46p6w/r/hj75/4Lnf8ABO=46P+Ce3=\r\n/BO34oftR/AD9vj/AIKhSfErwT4z+=46OkaXb+Pf23viP4m8MXOn+NPHeme=46dWhvdLtINDu=\r\n2dLHUZLiznh1KJ4buCAyCaEzRS/h0ak27Nv8v6/ruj7KU=46=46XTe6Wr7tL9fPtpe59d+Av+=\r\nCNvg3xH+wL4I/a=46v8A/goJ/wA=46YY/iV4j/AGQ/DvxmvLy1/bq8eRaL=46441X4LW3j6ee=\r\n20RtKcJpMevSsINLe8YrYqls947g3Dz7Sfd/wBfiNU07O8tdd/00/P7j8o/h7/wUO8P+K/+CG=\r\n/7DPxS/wCCiHxn/wCCknj7xfr37V/xj+Dfgvxp+xV8ZdO+Hvxx8XXXh221VPDWi/=46DxVrOu=\r\n6JqHj7TLfSrlrDTXu7vUtfu9Ut9Le9lvJY3mnfvKUuWXL1f9a9+2nmSnen=46yvu7crSfWyvp=\r\n2S210btZm6PDXhIO=46P7KX/B4vuEmxk/4WV4m3bg+1k2jxAp3Ajbt+U7uMg/NRzy/5+fg/wA=\r\n7W+dvl0=46yx/kq/f8A/dC//wAEkPDH7TP/AAU8+Cf/AAVw/Yk1z9rL9uP4R3P7PXxo8E63+x=\r\nz42+NXxY8eWP7Tf7O/iXUdU+OOj2/gj4yeI9A1+x8Qa1o91Y+Gd=468Pf=46n4cTX1zoGnapD=\r\nq+seEdP0bxHBY6hA3JpqV3eS11etrett9NPvuyoq6cddGrX3Xrt81fXe6v7v7Sf8ABHP/AIKq=\r\neMfGWhfGX9hX/gpVqumfCP8A4KBfsHaNrKfGTUvHeq6fouk/=4674N+CbCO6/4aBsdfvJLfSr=\r\n5NL8NGw1b4g63bSto+saHf6H8VNInfRv=46GoWHh6JK9mrtPbr8uv5/fYqMntLRrv1Xrp08td=\r\n9D5O/Zw+Jf7Rn/AAXs/wCCg=46x+0d4V8d/Gr4Df8Egv2L/=46Wq+GfhdpPgTxp43+Eur/ALb=\r\n/AMWNLu7abUdW8WTeG9U0XVr/AOHwlttP1DWdP1=46nh0Hwd/YvgWzsbLxj42+IV7oDu4LRvm=\r\na6aWW/nr93fTaS+Np39xbWtq/8vLX8Wo+ZeEvh98Uf+Cm//Bdv/gp5+zv8cf2yP21fhr8=46/=\r\nwBlHwp8O4fgz8Pv2Zf2gvEPwM8P6Gms2vgi1vTfad4dtLqw1O4nl1LU7+81G4tP7W1G+vSb3U=\r\nZLOz0+0tXzOMVZtNtt/wBf1+JPxzkneyWln527L13f4I+u/wBtr/gm1oX/AAT/AP2EP27v2lP=\r\ng9+2Z/wA=46Gf=46/xE8Mfsg/GfS/DkHxm/bD8dfEHwzoV7q+mWGzxTpGlfY9IuNN8YaKbMN4=\r\nf8QWWpQXWlPcXUkSvK8bxCnJtJt7rrb+vn+pTgopvV6W1/Ndn8vuMX9jL9lrxJ/wUd/4IMfsX=\r\n6x40/a9/aT+A3x80H4YeOPGPhj9q3wX8cviNovi/Q9atPib45869+Kk48Z6ZbfEzwMtpoGkrr=\r\nem+L9QW90zStME/hvxH4auomuWXPJSbu93fV6/ntbTT70KMVKEb6O2/b8Vf539D8QNE/4L3/8=\r\nABQ/47f8AC=46/8EtIf2mP2Wvhh8Qde+NHib9nfxN/wWH07XPEEHwz8aeCdDs4beLWvh9OfC+=\r\nh+HNK+J/ieCeO20/4i2b6DDq8uveGH0u0+HOo6p/wsq3dlvrte3W3bS2i9fusLnduW8U725ru=\r\n1tdtHrpb4vPWzR/cV+x=46+x94d/Yo+B2ifCHSvip8a/jhrySw6t44+LXx9+Jfi34mfEDxx4t=\r\nksrWzvtWlufE+tata+=46d=46WK2ittE8He=464rDQtIsY0kkXVNZutV13VJ5m38padNV8r39=\r\nPW1kaxjyq2/dvd/n8l91tj+abX/APk4b9tH/s8b44f+nTTa/tiH/JL+Hv8A2QeR/wDpeNPx2f=\r\n8AyMs8/wCxzi//AEmkf//R9o+H/h/9lQ/EX4LePv2n/ht+3Ufiv+xh+2v8Yv2hfgx=468CfBf=\r\nhJvh14jbxVrPwvuorD4iJ4z02bXNVtk1b4UWL/ZfDV54bnjsri5hfVpZbkpaf1x4jeHGY8dZl=\r\nkecZRnvCNDDUeEsjy2dPMs9pYfERr0KHtKrVOlGulG06cVzz5lJVE4K0eb8syDPsPk+Hxe=46=\r\nxeBzWdSWaYzERlh8=46OdNwqTSj70n=46tvkd7cqtZp6px/Rv8A4KBftm/sR/8ABSD9mPxh+y=\r\nj8cPgv/wA=46DvC3w88a614N13VNZ+=46nwx8BaN4yt7vwP4nsf=46WlRW=4694rv/ABnokdt=\r\nc3+nxW+opc6DdSyWUkq2s1pcbJ0/PY+AfE0Xf/WTgJ+T4kVvXTDR1/wC3l89Ue/LjXL5K39nZ=\r\n4vTL2npr1rS6+X36cvtvh3/gqP8AspeGf2evD/7NVh8BP265fAfhv4M6X8DbHUrr4U+=4638V=\r\ny+EdJ8CxfD62vrq/i8TQ6Y/i=469=46hW4mvI9JisG1MtOmmpbEWir/iAfEv/AEUnAW//AEUq=\r\n+7/dL+Qf67Zekl/Z2eaaX/s9/wDy23ntH03ifkOfgv8A8EjLn9grw=46/wT41j4Kf8=46Tda+=\r\nGnws+L+vfHP4bf=46Ofw58PtJ+Ongn4i+InvBqGq6N4l8NRaL4OltRaX1xYw6bqfgS+tRGLa9=\r\nYHV7DT9St6/4gLxNzN/6ycA6qzX+sit/6Y/9ul6atE/66ZdyqP8AZ2eWTvf+z9fv9o117fN/D=\r\nJg8O/s65B/4bx/4Oh8gg5Px+8=46lsjnJY+=46ixbPJZnLE8ksc0/8AiA3Ev/RQeH//AIkn/w=\r\nBwD/XTAf8AQDn3/hCfSf8AwTh+Jf7An/BMrxL+0T4z+EXg3/gqx8Xf=46/7UWt+=46fEvxX8U=\r\n/tGe=46fhz478Q6n4g8K3fjDUE1uHV/Dkfgq8uNV13UPHOt33iPUNcfWbrUbo20yS27JN9oUv=\r\nATiWVv+Mj4BVu3EiXy1w0tum3zumOPGmXxv/wn54773y9v56VIf100bO=46/4KTWv/BKz/gqH=\r\n4z8CfEv44fs+/8ABST4bfE7wP4c1fwTJ8RfgH4E+H/grxX418Aass//ABQnj268Ry+M7PxB4a=\r\n0ya91SfR4fsNre2A1jWLH7bNpWo3=46hSXgJxMr/APGScBO/fiRO1uq/2eP5P8EEuNMul/zLs=\r\n8Vu2Aav99WX5r8T9MPgV/wVI/Yu/Zq+D3w9+AnwU/ZI/a48CfCr4W+=467Dwh4L8K6T8GtH=46=\r\ntpuk2KMXlmnk8ctc6jq2qXst1q+va1qEs+qa7rl/qOs6reXmo31zcMn4B8S6/8ZLw=46v8A9=46=\r\nJ=46fh9Vf5v1d7jXG2XpJf2bnemn/Iuf6Vl+X3nyb8Bv2kP2C/2eP22f2rP28vBXwf8A+CkGp=\r\n/=46/9sCw8N6d8SvDvif4cfDq8+HOhw+=46/wCyPsUngfSdLl0jxJp81yd=46szeNr3ivxGhB=\r\nmW2jtt6hH/xAPiZpL/WTgLTr/rIru/f/AGZr/wAlj/29q4pca5cpOX9nZ5d/9S92+X7xP8fvu=\r\npH0f+1N/wA=46L/2Sf2uv2dvjH+zN8SvgR+3lo/gL43+Atd+HfivVPBfwq8Jad4rsNE8QQC3v=\r\nLnQL7WfEWu6Ta6nEihraXUNG1K1Vs+baSqdtJeAfEqaf+snATt0/1kVn62wq/Neqvcb42y9pr=\r\n+zs7V+2Xv8AWrL/ANJfy3Pzr8bah+wd4x/YK+DH/BNy1uP+CxngT9mH4R2GpaRrOj/D3wz8=46=\r\nPDni/436LqHiLUfEyeH/jR4qbwxfS6x4astS1jU5I/DXhKx8HaJqLT2s2v2OsT6Tpj2tLwE4l=\r\nTb/wBY+AW2+vEm3p/s/nfVy8nu5T/rpl/Ko/2fntl2w=46m/V+0e3ko+bke7eNPir/wSC8cfs=\r\nX2v7Ampf8E6v2ldP/Zr0jTTH4X8M6H8Et=4607xD4Q8Ui2kij+J3hvxofHE/iS2+KhuJZtQ1H=\r\nx3e31/rPiOe4vrTxVLr+kalqWmXa/wCIB8TXv/rNwHv/AN=46JHXyf+zrT/t77r+63xrlzXK8=\r\ntzu3/AGL3p5q1Va9duvW/KevfsSft/fs4fsPfAzQ/2ffDmm/8=46Tfjz4J8Iz+T4H1T9pDwL8=\r\nNfGvjTwZ4ZS2toLLwLo/ibwr/wg9ze+D9=46aB28O6f4gh1i90C0nGh6XqVt4dstK0nTx+AnE=\r\nrd/9ZOAo77cSLt54WX5vf0HHjXL0rf2dnj9cvbt81Vj+N/1l8UeD77X/ir47/aQ+KWi/Dv4la=\r\nRoPxK/aT+J3jrQLDx=464L1e01uDRfE50bVNOXU7W0ivLe3v=46guAk8UN3cwrKr+TPNEUkb9=\r\nrzOnh8oy3hHJ6+ZZVXxOU8J5Zl2JqYPMMPXw7xG=46r42nU9lUVaLlBtJx5oQk4OLcVc+Ooyq=\r\nYrE5piqeGxUKeKzPEV6cauHqQqKnUhRceaPLLW2js2r6dD/9k=3D=22 alt=3D=22=22></di=\r\nv><div style=3D=22font-family: Helvetica, Arial;=22><a href=3D=22http://m=\r\navrix1.com/=22>mavrix1.com</a></div></div><div><br></div><div><br></div><=\r\ndiv><div>CON=46IDENTIALITY NOTICE: This communication is confidential and=\r\n intended only for the intended recipient. &nbsp;If you are not the inten=\r\nded recipient, you may not copy, disclose, or distribute this message to =\r\nanyone else; any such actions may be unlawful. If you have received this =\r\ncommunication in error, please contact the sender of the message to infor=\r\nm him or her of the error.</div><div><br></div></div>\r\n\r\n</div> <p class=3D=22gmail=5Fquote=22 style=3D=22color:=23000;=22>On Sept=\r\nember 4, 2025 at 4:40:50=E2=80=AFPM, UAS Industry Day 2025 (<a href=3D=22=\r\nmailto:uasindustryday2025=40army.mil=22>uasindustryday2025=40army.mil</a>=\r\n) wrote:</p> <blockquote type=3D=22cite=22 class=3D=22gmail=5Fquote=22><s=\r\npan><div dir=3D=22ltr=22><div></div><div>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<div style=3D=22font-family: Aptos, Aptos=5FEmbedded=46ont, Aptos=5FMS=46=\r\nontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0=\r\n, 0, 0);=22 class=3D=22elementToProof=22>Good Afternoon,</div>\r\n<div style=3D=22font-family: Aptos, Aptos=5FEmbedded=46ont, Aptos=5FMS=46=\r\nontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0=\r\n, 0, 0);=22 class=3D=22elementToProof=22><br></div>\r\n<div style=3D=22font-family: Aptos, Aptos=5FEmbedded=46ont, Aptos=5FMS=46=\r\nontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0=\r\n, 0, 0);=22 class=3D=22elementToProof=22>Please find the Top Level Agenda=\r\n for the\r\nupcoming UAS Industry Day below:</div>\r\n<div style=3D=22font-family: Aptos, Aptos=5FEmbedded=46ont, Aptos=5FMS=46=\r\nontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0=\r\n, 0, 0);=22 class=3D=22elementToProof=22><br></div>\r\n<div style=3D=22font-family: Aptos, Aptos=5FEmbedded=46ont, Aptos=5FMS=46=\r\nontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0=\r\n, 0, 0);=22 class=3D=22elementToProof=22><img style=3D=22max-width: 1867p=\r\nx;=22 size=3D=2230343=22 data-outlook-trace=3D=22=46:1=7CT:1=22 src=3D=22=\r\ncid:8311C=46AA-22D4-4177-89BB-ED2E17=46DB041=22></div>\r\n<div style=3D=22font-family: Aptos, Aptos=5FEmbedded=46ont, Aptos=5FMS=46=\r\nontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0=\r\n, 0, 0);=22 class=3D=22elementToProof=22><br></div>\r\n<div style=3D=22font-family: Aptos, Aptos=5FEmbedded=46ont, Aptos=5FMS=46=\r\nontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0=\r\n, 0, 0);=22>\r\nIf you are selected for a One-on-One session with UAS Leadership,\r\nnotification will be made no later than COB <b><a href=3D=22x-apple-data-=\r\ndetectors://4=22 dir=3D=22ltr=22 x-apple-data-detectors=3D=22true=22 x-ap=\r\nple-data-detectors-type=3D=22calendar-event=22 x-apple-data-detectors-res=\r\nult=3D=224=22 style=3D=22color: currentcolor; text-decoration-color: rgba=\r\n(128, 128, 128, 0.38);=22>10 September\r\n2025</a></b>.&nbsp;</div>\r\n<div style=3D=22font-family: Aptos, Aptos=5FEmbedded=46ont, Aptos=5FMS=46=\r\nontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0=\r\n, 0, 0);=22>\r\n<br></div>\r\n<div style=3D=22font-family: Aptos, Aptos=5FEmbedded=46ont, Aptos=5FMS=46=\r\nontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0=\r\n, 0, 0);=22>\r\nWe appreciate your interest in this event and look forward to your\r\nparticipation.</div>\r\n<div style=3D=22font-family: Aptos, Aptos=5FEmbedded=46ont, Aptos=5FMS=46=\r\nontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0=\r\n, 0, 0);=22>\r\n<br></div>\r\n<div style=3D=22font-family: Aptos, Aptos=5FEmbedded=46ont, Aptos=5FMS=46=\r\nontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0=\r\n, 0, 0);=22>\r\nThank you,</div>\r\n<div style=3D=22font-family: Aptos, Aptos=5FEmbedded=46ont, Aptos=5FMS=46=\r\nontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0=\r\n, 0, 0);=22>\r\n<br></div>\r\n<div style=3D=22font-family: Aptos, Aptos=5FEmbedded=46ont, Aptos=5FMS=46=\r\nontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0=\r\n, 0, 0);=22>\r\nUAS Industry Day Team 2025</div>\r\n<div style=3D=22font-family: Aptos, Aptos=5FEmbedded=46ont, Aptos=5FMS=46=\r\nontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0=\r\n, 0, 0);=22 class=3D=22elementToProof=22><br></div>\r\n\r\n\r\n</div></div></span></blockquote></body></html>',' \r\n        \r\n    =20\r\n    \r\n    =20\r\nRick Mislan, PhD,=\r\n&nbsp;=46ounder,=\r\n CTOmavrix1.comCON=46IDENTIALITY NOTICE: This communication is confidential and=\r\n intended only for the intended recipient. &nbsp;If you are not the inten=\r\nded recipient, you may not copy, disclose, or distribute this message to =\r\nanyone else; any such actions may be unlawful. If you have received this =\r\ncommunication in error, please contact the sender of the message to infor=\r\nm him or her of the error.\r\n\r\n On Sept=\r\nember 4, 2025 at 4:40:50=E2=80=AFPM, UAS Industry Day 2025 (uasindustryday2025=40army.mil=\r\n) wrote: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nGood Afternoon,\r\n\r\nPlease find the Top Level Agenda=\r\n for the\r\nupcoming UAS Industry Day below:\r\n\r\n\r\n\r\n\r\nIf you are selected for a One-on-One session with UAS Leadership,\r\nnotification will be made no later than COB 10 September\r\n2025.&nbsp;\r\n\r\n\r\n\r\nWe appreciate your interest in this event and look forward to your\r\nparticipation.\r\n\r\n\r\n\r\nThank you,\r\n\r\n\r\n\r\nUAS Industry Day Team 2025\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-09-07 18:38:23','2025-12-09 19:28:12','2025-12-09 19:28:12','2025-12-09 19:28:12',NULL,NULL,NULL),
(693,4,'<CAGOCFXg+cJvBS5Gdi9GAMYq_Ga33owjpByYDDkUH2sGN9CQ6-A@mail.gmail.com>',NULL,NULL,'Projections','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>We met today and reviewed our &quot;Factory Partner&quot; list of clients who have contacted us about manufacturing their batteries in the USA.   We know the battery voltage, capacity, and annual quantity that our customers have given us.    Attached is a short list of companies for which we created a 3-year forecast using an average cost of $140 per kWh for manufacturing.  </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table><br></div><div><br></div></div></div></div></div>','We met today and reviewed our \"Factory Partner\" list of clients who have\r\ncontacted us about manufacturing their batteries in the USA.   We know the\r\nbattery voltage, capacity, and annual quantity that our customers have\r\ngiven us.    Attached is a short list of companies for which we created a\r\n3-year forecast using an average cost of $140 per kWh for manufacturing.\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>',0,0,0,0,0,0,'2025-09-08 22:53:23','2025-12-09 19:28:12','2025-12-09 19:28:12','2025-12-09 19:28:12',NULL,NULL,NULL),
(694,4,'<034E612F-0151-4371-B462-89D31C4D31BC@bayfrontcapitalllc.com>',NULL,NULL,'Re: Projections','brian@bayfrontcapitalllc.com','Brian Stufflebean','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"><span style=\"font-size: 14px;\">To All,</span><div><span style=\"font-size: 14px;\"><br></span></div><div><span style=\"font-size: 14px;\">Of extreme importance, &nbsp;<b>All projections </b>need to be now set at 10-Years. &nbsp;</span></div><div><br></div><div><br id=\"lineBreakAtBeginningOfMessage\"><div><br><blockquote type=\"cite\"><div>On Sep 8, 2025, at 6:53 PM, Nathan Staron &lt;Nathan@lithiumbatterycompany.com&gt; wrote:</div><br class=\"Apple-interchange-newline\"><div><div dir=\"ltr\"><div>We met today and reviewed our \"Factory Partner\" list of clients who have contacted us about manufacturing their batteries in the USA.&nbsp; &nbsp;We know the battery voltage, capacity, and&nbsp;annual&nbsp;quantity that our customers have given us.&nbsp; &nbsp; Attached is a short list of companies for which we created a 3-year forecast using an average cost of $140 per kWh for manufacturing.&nbsp;&nbsp;</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border: medium; border-collapse: collapse; font-size: 10px; font-family: Inter, sans-serif;\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\">&nbsp;</td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span>&nbsp;<a href=\"tel:813-504-0074\" style=\"font-size: 12px;\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span>&nbsp;<a href=\"tel:844-GET-LITHIUM\" style=\"font-size: 12px;\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table><br></div><div><br></div></div></div></div></div>\r\n<span id=\"cid:f_mfbpuc0t0\">&lt;Customer_Specific_Battery_Requirements.xlsx&gt;</span></div></blockquote></div><br><div>\r\n<meta charset=\"UTF-8\"><div dir=\"auto\" style=\"caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"><div dir=\"auto\" style=\"caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\">Best Regards,&nbsp;<br><br>Brian C. Stufflebean, CEO<br><b>Bayfront Capital, LLC</b><br>(941)545-4153&nbsp;Cell<br>(866)896-2423&nbsp;Fax<br>brian@bayfrontcapitalllc.com<br>www.bayfrontcapitalllc.com<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br><br><br><br><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE / NOTICE&nbsp;OF&nbsp;NOT A REGISTERED&nbsp;BROKER/DEALER:</b>&nbsp;Bayfront Capital&nbsp;LLC, nor its’ affiliates are registered as&nbsp;a Broker/Dealer, nor registered with&nbsp;FINRA. Nor does&nbsp;it provide tax or&nbsp;investment advice.&nbsp;&nbsp;Any references&nbsp;made to any transaction in any&nbsp;communication is being made as a&nbsp;business consultant.&nbsp;&nbsp;&nbsp;This is not a&nbsp;solicitation nor offer of any type and any&nbsp;reference to any proposed transaction&nbsp;of any type is void where prohibited by&nbsp;law.&nbsp;This communication&nbsp;is confidential&nbsp;and intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient, you&nbsp;may not copy, disclose, or&nbsp;distribute this message&nbsp;to anyone else;&nbsp;any such actions may be unlawful. If&nbsp;you have received this communication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the message to inform him or her of the&nbsp;error.<br><br></div></div></div>\r\n</div>\r\n<br></div></body></html>','To All,\r\n\r\nOf extreme importance,  All projections need to be now set at 10-Years.  \r\n\r\n\r\n\r\n> On Sep 8, 2025, at 6:53 PM, Nathan Staron <Nathan@lithiumbatterycompany.com> wrote:\r\n> \r\n> We met today and reviewed our \"Factory Partner\" list of clients who have contacted us about manufacturing their batteries in the USA.   We know the battery voltage, capacity, and annual quantity that our customers have given us.    Attached is a short list of companies for which we created a 3-year forecast using an average cost of $140 per kWh for manufacturing.  \r\n> \r\n> \r\n>  <https://lithiumbatterycompany.com/>\r\n>  <https://www.instagram.com/lithiumbatteryco/>\r\n>  <https://www.linkedin.com/company/the-lithium-battery-company>\r\n>  <https://www.facebook.com/LithiumBatteryCompany/>\r\n>  <https://www.youtube.com/c/LithiumBatteryCompany>	 	\r\n>  <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON	\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074 <tel:813-504-0074>\r\n> Phone 844-GET-LITHIUM <tel:844-GET-LITHIUM>\r\n> Nathan@lithiumbatterycompany.com <mailto:Nathan@lithiumbatterycompany.com>\r\n> Schedule A Zoom\r\n>  <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n> \r\n> \r\n> \r\n> <Customer_Specific_Battery_Requirements.xlsx>\r\n\r\nBest Regards, \r\n\r\nBrian C. Stufflebean, CEO\r\nBayfront Capital, LLC\r\n(941)545-4153 Cell\r\n(866)896-2423 Fax\r\nbrian@bayfrontcapitalllc.com\r\nwww.bayfrontcapitalllc.com\r\n      \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER: Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-09-09 01:26:20','2025-12-09 19:28:12','2025-12-09 19:28:12','2025-12-09 19:28:12',NULL,NULL,NULL),
(695,4,'<CAGOCFXjXJVYO0u31qhWEVYCtcb1H+f-MtVV7fNM=95NUp2ZTfw@mail.gmail.com>',NULL,NULL,'UCC3','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table><br></div><div><br></div></div></div></div></div>','<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>',0,0,0,0,0,0,'2025-09-09 15:12:23','2025-12-09 19:28:13','2025-12-09 19:28:13','2025-12-09 19:28:13',NULL,NULL,NULL),
(696,4,'<CAGOCFXiVj_QaYwExP1U4Oqvi=hvZANPKDest3Zx=DYZ4ykRCOA@mail.gmail.com>',NULL,NULL,'Re: UCC3','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div><img src=\"cid:ii_mfcoymup0\" alt=\"FBI.png\" width=\"427\" height=\"562\"><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Sep 9, 2025 at 11:12 AM Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_-1232752943836350590_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table><br></div><div><br></div></div></div></div></div>\r\n</blockquote></div>','[image: FBI.png]\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Tue, Sep 9, 2025 at 11:12 AM Nathan Staron <\r\nNathan@lithiumbatterycompany.com> wrote:\r\n\r\n>\r\n>\r\n>\r\n> <https://lithiumbatterycompany.com/>\r\n> <https://www.instagram.com/lithiumbatteryco/>\r\n> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n> <https://www.facebook.com/LithiumBatteryCompany/>\r\n> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n> <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074\r\n> Phone 844-GET-LITHIUM\r\n> Nathan@lithiumbatterycompany.com\r\n> Schedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>\r\n>\r\n>\r\n>',0,0,0,0,0,0,'2025-09-09 15:14:27','2025-12-09 19:28:13','2025-12-09 19:28:13','2025-12-09 19:28:13',NULL,NULL,NULL),
(697,4,'<20250909193531.Horde.6nfb2HcOL9APFHzegaY2NJ1@mavrix1.aponte.to>',NULL,NULL,'Re: Test','tony@mavrix.one','Tony Aponte','copy\r\n \r\n\"Rick Mislan\" rick@mavrix.one – September 9, 2025 3:35 PM\r\n> Test\r\n> \r\n>\r\n','copy\r\n \r\n\"Rick Mislan\" rick@mavrix.one – September 9, 2025 3:35 PM\r\n> Test\r\n> \r\n>\r\n',0,0,0,0,0,0,'2025-09-09 19:35:31','2025-12-09 19:28:14','2025-12-09 19:28:14','2025-12-09 19:28:14',NULL,NULL,NULL),
(698,4,'<20250910020626.Horde.JBo2FlqggzoUOGf7u28wG4t@mavrix1.aponte.to>',NULL,NULL,'Invitation: F1 SYNC','charles@mavrix.one','Charles Paufler','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\" style=\"-webkit-font-smoothing:antialiased;background:#fff!important\">\r\n<head>\r\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n	<meta name=\"viewport\" content=\"width=device-width\">\r\n	<title></title>\r\n	<style type=\"text/css\">@media only screen{html{min-height:100%;background:#fff}}@media only screen and (max-width:610px){table.body img{width:auto;height:auto}table.body center{min-width:0!important}table.body .container{width:95%!important}table.body .columns{height:auto!important;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:30px!important;padding-right:30px!important}th.small-12{display:inline-block!important;width:100%!important}table.menu{width:100%!important}table.menu td,table.menu th{width:auto!important;display:inline-block!important}table.menu.vertical td,table.menu.vertical th{display:block!important}table.menu[align=center]{width:auto!important}}</style>\r\n</head>\r\n<body style=\"-moz-box-sizing:border-box;-ms-text-size-adjust:100%;-webkit-box-sizing:border-box;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;margin:0;background:#fff!important;box-sizing:border-box;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;min-width:100%;padding:0;text-align:left;width:100%!important\">\r\n	<span class=\"preheader\" style=\"color:#F5F5F5;display:none!important;font-size:1px;line-height:1px;max-height:0;max-width:0;mso-hide:all!important;opacity:0;overflow:hidden;visibility:hidden\">\r\n	</span>\r\n	<table class=\"body\" style=\"-webkit-font-smoothing:antialiased;margin:0;background:#fff;border-collapse:collapse;border-spacing:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n		<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n			<td class=\"center\" align=\"center\" valign=\"top\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n				<center data-parsed=\"\" style=\"min-width:580px;width:100%\"><table align=\"center\" class=\"wrapper header float-center\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:20px;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:0 0;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:150px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n						<table class=\"row collapse\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n							<tbody>\r\n							<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n								<center data-parsed=\"\" style=\"background-color:#00679e;min-width:175px;max-height:175px; padding:35px 0px;border-radius:200px\">\r\n									<img class=\"logo float-center\" src=\"https://mavrix1.aponte.to/apps/theming/image/logo?useSvg=0&amp;v=9\" alt=\"Mavrix1\" align=\"center\" style=\"-ms-interpolation-mode:bicubic;clear:both;display:block;float:none;margin:0 auto;outline:0;text-align:center;text-decoration:none;max-height:105px;max-width:105px;width:auto;height:auto\" width=\"105\" height=\"22\">\r\n								</center>\r\n							</tr>\r\n							</tbody>\r\n						</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"40px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:80px;font-weight:400;hyphens:auto;line-height:80px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"container main-heading float-center\" style=\"Margin:0 auto;background:0 0!important;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:580px\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<h1 class=\"text-center\" style=\"Margin:0;Margin-bottom:10px;color:inherit;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:24px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:center;word-wrap:normal\">Charles Paufler would like to invite you to \"F1 SYNC\"</h1>\r\n		</td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"36px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:40px;font-weight:400;hyphens:auto;line-height:36px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"wrapper content float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:580px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/title.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Title:</em><br>F1 SYNC</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/time.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">When:</em><br>In 12 hours on Wednesday, September 10, 2025 between 10:30 AM - 11:30 AM (America/Indiana/Indianapolis)</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/location.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Location:</em><br>Respective</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/description.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Description:</em><br>F1 SYNC</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"spacer\" style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"50px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:50px;font-weight:400;hyphens:auto;line-height:50px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"row btn-group\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<center data-parsed=\"\" style=\"min-width:490px;width:100%\">\r\n							<!--[if (gte mso 9)|(IE)]>\r\n							<table>\r\n								<tr>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default primary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;margin:0 0 30px 0;margin-right:15px;border-radius:8px;max-width:300px;padding:0;text-align:center;vertical-align:top;width:auto;background:#00679e;background-color:#00679e;color:#fefefe;\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #00679e;border-collapse:collapse!important;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/accept/8VNA58mUr28VLXEjBozYaIM4rnp2eXEOTgmy67eLlXkKFKGy4rScM7gPY9zk\" style=\"Margin:0;border:0 solid #00679e;color:#ffffff;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;padding:8px;text-align:left;outline:1px solid #ffffff;text-decoration:none\">Accept</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default secondary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;background-color: #ccc;margin:0 0 30px 0;max-height:40px;max-width:300px;padding:1px;border-radius:8px;text-align:center;vertical-align:top;width:auto\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #777;border-collapse:collapse!important;color:#fefefe;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/decline/8VNA58mUr28VLXEjBozYaIM4rnp2eXEOTgmy67eLlXkKFKGy4rScM7gPY9zk\" style=\"Margin:0;background-color:#fff;border:0 solid #777;color:#6C6C6C!important;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;border-radius: 7px;padding:8px;text-align:left;text-decoration:none\">Decline</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n								</tr>\r\n							</table>\r\n							<![endif]-->\r\n						</center>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;text-align:center\"><small><a href=\"https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/8VNA58mUr28VLXEjBozYaIM4rnp2eXEOTgmy67eLlXkKFKGy4rScM7gPY9zk\">More options …</a></small></p>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table><table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"60px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:60px;font-weight:400;hyphens:auto;line-height:60px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"wrapper footer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<center data-parsed=\"\" style=\"min-width:580px;width:100%\">\r\n				<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n					<tbody>\r\n					<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n						<td height=\"15px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:15px;font-weight:400;hyphens:auto;line-height:15px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n					</tr>\r\n					</tbody>\r\n				</table>\r\n				<p class=\"text-center float-center\" align=\"center\" style=\"Margin:0;Margin-bottom:10px;color:#C8C8C8;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:10px;padding:0;text-align:center\">Mavrix1 - Manufacturing American Autonomy<br>This is an automatically sent email, please do not reply.</p>\r\n			</center>\r\n		</td>\r\n	</tr>\r\n</table>					</center>\r\n				</td>\r\n			</tr>\r\n		</table>\r\n		<!-- prevent Gmail on iOS font size manipulation -->\r\n		<div style=\"display:none;white-space:nowrap;font:15px courier;line-height:0\">                                                           </div>\r\n	</body>\r\n</html>','Charles Paufler would like to invite you to \"F1 SYNC\"\r\n\r\n         Title: F1 SYNC\r\n          When: In 12 hours on Wednesday, September 10, 2025 between 10:30 AM - 11:30 AM (America/Indiana/Indianapolis)\r\n      Location: Respective\r\n   Description: F1 SYNC\r\n\r\nAccept: https://mavrix1.aponte.to/apps/dav/invitation/accept/8VNA58mUr28VLXEjBozYaIM4rnp2eXEOTgmy67eLlXkKFKGy4rScM7gPY9zk\r\nDecline: https://mavrix1.aponte.to/apps/dav/invitation/decline/8VNA58mUr28VLXEjBozYaIM4rnp2eXEOTgmy67eLlXkKFKGy4rScM7gPY9zk\r\n\r\nMore options at https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/8VNA58mUr28VLXEjBozYaIM4rnp2eXEOTgmy67eLlXkKFKGy4rScM7gPY9zk\r\n\r\n\r\n-- \r\nMavrix1 - Manufacturing American Autonomy\r\nThis is an automatically sent email, please do not reply.',0,0,0,0,0,0,'2025-09-10 02:06:26','2025-12-09 19:28:14','2025-12-09 19:28:14','2025-12-09 19:28:14',NULL,NULL,NULL),
(699,4,'<MW5PR84MB1985FB51741E2E9F29FED75AFB0EA@MW5PR84MB1985.NAMPRD84.PROD.OUTLOOK.COM>',NULL,NULL,'RE: Address','gary.fudge@hp.com','\"Fudge, Gary\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Forma DJR Micro\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n@font-face\r\n	{font-family:\"Forma DJR Display\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle19\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Checking in.&nbsp; I know you were planning on having the land/facilities closed by now.&nbsp; Do you have the address?&nbsp;\r\n<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Also, does it make sense to continue our conversations now?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Just let me know how I can help.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Best Regards,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">3D Print - Enterprise Account Manager – US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">|</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black;mso-ligatures:standardcontextual\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_1983201685\" src=\"cid:image001.png@01DC223F.FAAE4040\" alt=\"image001.png\"><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Tuesday, August 19, 2025 9:57 AM<br>\r\n<b>To:</b> Fudge, Gary &lt;gary.fudge@hp.com&gt;<br>\r\n<b>Subject:</b> Re: Address<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:red\">CAUTION: External Email\r\n</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">We will soon.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Will have it Sept. 1<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks!<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;\r\n<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"_x0000_i1026\" src=\"cid:image002.png@01DC223F.FAAE4040\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://mavrix1.com\">https://mavrix1.com</a><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"airmailon\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">On August 18, 2025 at 4:00:47 PM, Fudge, Gary (<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hello Rick,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Do you all have an address we can use to set you up in our CRM system?&nbsp;\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Just trying to stay ahead of things as I know you may need to move fast shortly.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager – US South\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_1\" src=\"cid:image001.png@01DC223F.FAAE4040\" alt=\"image001.png\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Hello Rick,\r\n\r\nChecking in.  I know you were planning on having the land/facilities closed by now.  Do you have the address?\r\n\r\nAlso, does it make sense to continue our conversations now?\r\n\r\nJust let me know how I can help.\r\n\r\nBest Regards,\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager – US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, August 19, 2025 9:57 AM\r\nTo: Fudge, Gary <gary.fudge@hp.com>\r\nSubject: Re: Address\r\n\r\nCAUTION: External Email\r\nWe will soon.\r\nWill have it Sept. 1\r\nThanks!\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:image002.png@01DC223F.FAAE4040]\r\nhttps://mavrix1.com<https://mavrix1.com>\r\n\r\n\r\n\r\nOn August 18, 2025 at 4:00:47 PM, Fudge, Gary (gary.fudge@hp.com<mailto:gary.fudge@hp.com>) wrote:\r\nHello Rick,\r\n\r\nDo you all have an address we can use to set you up in our CRM system?\r\n\r\nJust trying to stay ahead of things as I know you may need to move fast shortly.\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager – US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\n',0,0,0,0,0,0,'2025-09-10 14:45:12','2025-12-09 19:28:14','2025-12-09 19:28:14','2025-12-09 19:28:14',NULL,NULL,NULL),
(700,4,'<20250910162216.Horde.p182HIYX1BFQPSyC9K3n0zJ@mavrix1.aponte.to>',NULL,NULL,'Re: Invitation: F1 SYNC','charles@mavrix.one','Charles Paufler','<!DOCTYPE html>\r\n<html><meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\"><body>\r\n<p style=\"margin:0;\">I have MfgFabCenterInfo_0910_1200<br> </p><p style=\"margin:0;\"> </p><div class=\"quote\"><p style=\"margin:0;\">\"Rick Mislan\" rick@mavrix.one – September 10, 2025 11:53 AM<br> </p><blockquote><p style=\"margin:0;\">File uploaded and shared...let me know if you dont see it.</p><p style=\"margin:0;\">Thanks!</p><p style=\"margin:0;\"> </p><div class=\"quote\"><p style=\"margin:0;\">\"Charles Paufler\" charles@mavrix.one – September 9, 2025 10:06 PM<br> </p><blockquote><p style=\"margin:0;\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"Mavrix1\" width=\"105\" height=\"22\"></p><h2 style=\"text-align:center;\">Charles Paufler would like to invite you to \"F1 SYNC\"</h2><p style=\"margin:0;\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"•\"></p><p style=\"margin:0;\"><i>Title:</i><br>F1 SYNC</p><p style=\"margin:0;\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"•\"></p><p style=\"margin:0;\"><i>When:</i><br>In 12 hours on Wednesday, September 10, 2025 between 10:30 AM - 11:30 AM (America/Indiana/Indianapolis)</p><p style=\"margin:0;\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"•\"></p><p style=\"margin:0;\"><i>Location:</i><br>Respective</p><p style=\"margin:0;\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"•\"></p><p style=\"margin:0;\"><i>Description:</i><br>F1 SYNC</p><p style=\"margin:0;\"><a href=\"https://mavrix1.aponte.to/apps/dav/invitation/accept/8VNA58mUr28VLXEjBozYaIM4rnp2eXEOTgmy67eLlXkKFKGy4rScM7gPY9zk\">Accept</a></p><p style=\"margin:0;\"><a href=\"https://mavrix1.aponte.to/apps/dav/invitation/decline/8VNA58mUr28VLXEjBozYaIM4rnp2eXEOTgmy67eLlXkKFKGy4rScM7gPY9zk\">Decline</a></p><p style=\"margin:0;text-align:center;\"><a href=\"https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/8VNA58mUr28VLXEjBozYaIM4rnp2eXEOTgmy67eLlXkKFKGy4rScM7gPY9zk\">More options …</a></p><p style=\"margin:0;text-align:center;\">Mavrix1 - Manufacturing American Autonomy<br>This is an automatically sent email, please do not reply.</p><p style=\"margin:0;\">                                                           </p></blockquote></div></blockquote></div>\r\n</body></html>','I have MfgFabCenterInfo_0910_1200 \r\n \r\n\"Rick Mislan\" rick@mavrix.one – September 10, 2025 11:53 AM \r\n\r\n> File uploaded and shared...let me know if you dont see it.\r\n> Thanks!\r\n>  \r\n> \"Charles Paufler\" charles@mavrix.one – September 9, 2025 10:06 PM \r\n>\r\n>> CHARLES PAUFLER WOULD LIKE TO INVITE YOU TO \"F1 SYNC\"\r\n>>\r\n>> Title:F1 SYNC\r\n>>\r\n>> When:In 12 hours on Wednesday, September 10, 2025 between 10:30 AM -\r\n>> 11:30 AM (America/Indiana/Indianapolis)\r\n>>\r\n>> Location:Respective\r\n>>\r\n>> Description:F1 SYNC\r\n>> Accept\r\n>> Decline\r\n>> More options …\r\n>> Mavrix1 - Manufacturing American AutonomyThis is an automatically sent\r\n>> email, please do not reply.\r\n>>                                                \r\n           ',0,0,0,0,0,0,'2025-09-10 16:22:16','2025-12-09 19:28:15','2025-12-09 19:28:15','2025-12-09 19:28:15',NULL,NULL,NULL),
(701,4,' <CY4PR0701MB3618FD558A2C8FB770FC55C9B60EA@CY4PR0701MB3618.namprd07.prod.outlook.com>',NULL,NULL,'Re: Achram Labs Sync','andrew@achramlabs.com','Andrew Reynolds','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n</head>\r\n<body>\r\n<div style=\"font-family: Aptos, -apple-system, HelveticaNeue, sans-serif;font-size: 12pt\">\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nHey Rick,</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<br>\r\n</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nNo plans to travel to Huntsville as of yet.&nbsp;</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<br>\r\n</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nRich and I will be back from our travels to AFSOC this evening if you have any time for a call before you head out there.</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<br>\r\n</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nLet me know and I can set something up on Teams.</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<br>\r\n</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nThanks,</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<br>\r\n</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nAndrew</div>\r\n</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\" style=\"font-family: Aptos, -apple-system, HelveticaNeue, sans-serif;font-size: 12pt\" dir=\"auto\">\r\n<br>\r\n</div>\r\n<div id=\"ms-outlook-mobile-signature\" style=\"font-family: Aptos, -apple-system, HelveticaNeue, sans-serif;font-size: 12pt\">\r\nGet <a href=\"https://aka.ms/o0ukef\">Outlook for iOS</a></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Wednesday, September 10, 2025 10:58:10 AM<br>\r\n<b>To:</b> Andrew Reynolds &lt;andrew@achramlabs.com&gt;<br>\r\n<b>Cc:</b> Richard Van Voorst &lt;rich@achramlabs.com&gt;<br>\r\n<b>Subject:</b> Re: Achram Labs Sync</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<p style=\"margin:0\">Thanks for the update.<br>\r\nSo I am heading to Huntsville next week for the Army UAS showcase.&nbsp;<br>\r\nAny chance you\'ll be there?<br>\r\nThanks,</p>\r\n<p style=\"margin:0\">Rick</p>\r\n<p style=\"margin:0\">&nbsp;</p>\r\n<div class=\"x_quote\">\r\n<p style=\"margin:0\">&quot;Andrew Reynolds&quot; andrew@achramlabs.com – September 5, 2025 10:20 AM<br>\r\n&nbsp;</p>\r\n<blockquote>\r\n<p style=\"margin:0\"><span style=\"color:rgb(0,0,0)\">Hey Rick,</span></p>\r\n<p style=\"margin:0\"><br>\r\n&nbsp;</p>\r\n<p style=\"margin:0\">Apologies for not being able to get together this week. Things have been moving quickly on our end with Rich supporting a tech demonstration at Fort Gordon for one of our subcontractors and other commitments keeping us on the move. That\r\n being said, we are looking forward to sitting down with you and making sure we get some time on the calendar as soon as possible.<br>\r\n<br>\r\nWe can do a Teams call Monday early afternoon if that works for you. If not, we will be on the road to Hurlburt Air Force Base to meet with AFSOC Tuesday and Wednesday and could also connect during our drive up to the Panhandle.<br>\r\n<br>\r\nWe’re excited to continue the conversation and explore how we can move things forward together.&nbsp;Let me know what timing works best for you.&nbsp;</p>\r\n<p style=\"margin:0\"><br>\r\n&nbsp;</p>\r\n<p style=\"margin:0\"><br>\r\n&nbsp;</p>\r\n<p style=\"margin:0\">Best,<br>\r\n<br>\r\n&nbsp;</p>\r\n<p style=\"margin:0\">Andrew Reynolds</p>\r\n<p style=\"margin:0\"><br>\r\n&nbsp;</p>\r\n<p style=\"margin:0\"><br>\r\n&nbsp;</p>\r\n<p style=\"margin:0\"><br>\r\n&nbsp;</p>\r\n<p style=\"margin:0\"><span style=\"color:rgb(36,36,36)\">--</span></p>\r\n<p style=\"margin:0\"><br>\r\n&nbsp;</p>\r\n<p style=\"margin:0\">Andrew Reynolds<br>\r\nAchram Labs | Program Manager</p>\r\n<p style=\"margin:0\"><a href=\"http://www.achramlabs.com/\"><span style=\"color:rgb(70,120,134)\">www.achramlabs.com</span></a></p>\r\n<p style=\"margin:0\"><span style=\"color:rgb(36,36,36)\">e: andrew</span><a href=\"/apps/mail/mailto?to=rich@achramlabs.com\"><span style=\"color:rgb(70,120,134)\">@achramlabs.com</span></a></p>\r\n<p style=\"margin:0\"><span style=\"color:rgb(36,36,36)\">m: 813-748-1414</span></p>\r\n<p style=\"margin:0\"><br>\r\n&nbsp;</p>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','Hey Rick,\r\n\r\nNo plans to travel to Huntsville as of yet.\r\n\r\nRich and I will be back from our travels to AFSOC this evening if you have any time for a call before you head out there.\r\n\r\nLet me know and I can set something up on Teams.\r\n\r\nThanks,\r\n\r\nAndrew\r\n\r\nGet Outlook for iOS<https://aka.ms/o0ukef>\r\n________________________________\r\nFrom: Rick Mislan <rick@mavrix.one>\r\nSent: Wednesday, September 10, 2025 10:58:10 AM\r\nTo: Andrew Reynolds <andrew@achramlabs.com>\r\nCc: Richard Van Voorst <rich@achramlabs.com>\r\nSubject: Re: Achram Labs Sync\r\n\r\n\r\nThanks for the update.\r\nSo I am heading to Huntsville next week for the Army UAS showcase.\r\nAny chance you\'ll be there?\r\nThanks,\r\n\r\nRick\r\n\r\n\r\n\r\n\"Andrew Reynolds\" andrew@achramlabs.com – September 5, 2025 10:20 AM\r\n\r\n\r\nHey Rick,\r\n\r\n\r\n\r\nApologies for not being able to get together this week. Things have been moving quickly on our end with Rich supporting a tech demonstration at Fort Gordon for one of our subcontractors and other commitments keeping us on the move. That being said, we are looking forward to sitting down with you and making sure we get some time on the calendar as soon as possible.\r\n\r\nWe can do a Teams call Monday early afternoon if that works for you. If not, we will be on the road to Hurlburt Air Force Base to meet with AFSOC Tuesday and Wednesday and could also connect during our drive up to the Panhandle.\r\n\r\nWe’re excited to continue the conversation and explore how we can move things forward together. Let me know what timing works best for you.\r\n\r\n\r\n\r\n\r\n\r\nBest,\r\n\r\n\r\n\r\nAndrew Reynolds\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n--\r\n\r\n\r\n\r\nAndrew Reynolds\r\nAchram Labs | Program Manager\r\n\r\nwww.achramlabs.com<http://www.achramlabs.com/>\r\n\r\ne: andrew@achramlabs.com</apps/mail/mailto?to=rich@achramlabs.com>\r\n\r\nm: 813-748-1414',0,0,0,0,0,0,'2025-09-10 16:47:35','2025-12-09 19:28:15','2025-12-09 19:28:15','2025-12-09 19:28:15',NULL,NULL,NULL),
(702,4,'<0.0.F.A1C.1DC22868BDF4AD2.0@omp.e.linkedin.com>',NULL,NULL,'There\'s no easy way to say this','linkedin@e.linkedin.com','=?UTF-8?B?TGlua2VkSW4gTGVhcm5pbmc=?=','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\" xml:lang=\"en\">\r\n	<head>\r\n		<!--[if gte mso 9]><xml>\r\n			<o:OfficeDocumentSettings>\r\n			<o:AllowPNG/>\r\n			<o:PixelsPerInch>96</o:PixelsPerInch>\r\n			</o:OfficeDocumentSettings>\r\n			</xml>\r\n		<![endif]-->\r\n\r\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n		<meta name=\"HandheldFriendly\" content=\"true\">\r\n		<meta name=\"MobileOptimized\" content=\"320\">\r\n		<meta name=\"viewport\" content=\"width=device-width\">\r\n\r\n							\r\n		        <title></title>\r\n        \r\n		\r\n		<style type=\"text/css\">\r\n    \r\n    span, td, table, div {\r\n        -webkit-font-smoothing: antialiased;\r\n        -moz-osx-font-smoothing: grayscale;\r\n    }\r\n    .st-email-body{\r\n        width:100% !important;\r\n        -webkit-text-size-adjust: 100%;\r\n        margin: 0 auto!important;\r\n        padding: 0px;\r\n        background-color: #ffffff;\r\n    }\r\n\r\n    span.st-preheader{\r\n        display: none!important;\r\n    }\r\n\r\n    \r\n    td img + div {\r\n        display: none;\r\n    }\r\n\r\n    \r\n    a[href^=\"tel\"],\r\n    a[href^=\"sms\"]{text-decoration: none; color: inherit !important; pointer-events: none; cursor: default;}\r\n    u + .st-email-body a {color: inherit; text-decoration: none; font-size: inherit; font-family: inherit; font-weight: inherit; line-height: inherit;}\r\n    \r\n    *[x-apple-data-detectors] {color: inherit !important; text-decoration: none !important; font-size: inherit !important; font-family: inherit !important; font-weight: inherit !important; line-height: inherit !important;}\r\n\r\n    a,a:hover,a:link,a:visited {\r\n        text-decoration:none !important;\r\n        outline: none;\r\n    }\r\n\r\n    p {\r\n        margin: 0;\r\n        padding: 0;\r\n    }\r\n\r\n    \r\n    .st-hide-desktop {\r\n        display:none;\r\n        font-size:0;\r\n        height:0;\r\n        min-height:0;\r\n        max-height:0;\r\n        line-height:0;\r\n        mso-hide:all;\r\n    }\r\n\r\n    .st-gmail-fix { display: none !important; }\r\n\r\n    </style>\r\n<style>\r\n\r\n@media screen and (max-width: 480px) {\r\n            \r\n                            .st-col,.st-mobile-full-width,.st-module-wrapper-table,.st-wrapper,.st-wrapper-table{width:100%!important}.st-col{padding:0!important}.st-resize{width:100%!important}.st-mobile-width-constraint,.st-resize{display:block!important;height:auto!important}.st-mobile-width-constraint{max-width:100%!important}.st-equal-height,.st-height-auto{height:auto!important}.st-hide-desktop{display:table-row!important}.st-hide-mobile{display:none!important}.st-mobile-inline{display:inline!important}.show-img-mobile{display:table-row!important;width:100%!important;float:none;overflow:visible!important;height:auto!important}\r\n                .st-dynamic-835-4 { background-image:none!important; }\r\n.st-dynamic-879-37, u + .st-email-body .st-dynamic-879-37 img { width:100%!important;max-width:48px!important; }\r\n.st-dynamic-907-83, u + .st-email-body .st-dynamic-907-83 img { width:100%!important;max-width:128px!important; }                \r\n                .st-wrapper-table{\r\n                    width: 100%!important;\r\n                    max-width: 480px!important;\r\n                    margin: 0 auto;\r\n                }\r\n                    }\r\n                    #MessageViewBody .st-module-wrapper-table  {margin-top:-1px}\r\n            @media (max-width:511px) and (min-width:481px) {.st-module-wrapper-table {margin-top:-1px !important;}}\r\n            div > u + .body .st-module-wrapper-table {margin-top:0px !important}\r\n            </style>\r\n<!--[if !mso]><!-->\r\n    <style>\r\n    ul, ol {margin-left:15px; padding-left:0px}\r\n    </style>\r\n<!--<![endif]-->\r\n<!--[if mso]>\r\n    <style>\r\n        table{\r\n            border-collapse: collapse;\r\n        }\r\n\r\n                span.MsoHyperlink {\r\n            mso-style-priority:99;\r\n            color:inherit;\r\n        }\r\n        span.MsoHyperlinkFollowed {\r\n            mso-style-priority:99;\r\n            color:inherit;\r\n        }\r\n        ol li, ul li {margin-top:0px !important;margin-bottom:0px !important;}\r\n    </style>\r\n<![endif]-->\r\n\r\n<!--[if gte mso 9]>\r\n    <style>\r\n        .st-mso-full-width{\r\n            width: 100%;\r\n        }\r\n            </style>\r\n<![endif]-->\r\n\r\n\r\n<!--[if IEMobile]>\r\n    <style type=\"text/css\">\r\n        .st-mso-full-width{\r\n            width: 100%;\r\n        }\r\n    </style>\r\n<![endif]-->\r\n\r\n\r\n    <style>\r\n.aligned-bullets ul{list-style-position: outside!important; padding-left:20px!important; padding-top:12px !important;}\r\n.aligned-bullets ol{list-style-position: outside!important; padding-left:20px!important; padding-top:12px !important;}\r\n.border-radius {border-radius: 8px;}\r\n.border-radius-bs {border-bottom-left-radius:8px!important; border-bottom-right-radius:8px!important;}\r\n.border-radius-bs img{border-bottom-left-radius:8px!important; border-bottom-right-radius:8px!important;}\r\n.border-radius-ts {border-top-left-radius:8px!important; border-top-right-radius:8px!important;}\r\n.border-radius-ts img{border-top-left-radius:8px!important; border-top-right-radius:8px!important;}\r\n.button td{-webkit-border-radius: 50px!important; -moz-border-radius: 50px!important; border-radius: 50px!important; overflow: hidden!important; }\r\n.minw-48 img{min-width:48px!important;}\r\n.di-fix {mso-padding-top-alt:18pt!important;}\r\n.bullets-pb-12 ul li {padding-bottom:12px!important;}\r\n.bullets-pb-12 ol li {padding-bottom:12px!important;}\r\n@media all and (max-width: 480px) {\r\n\r\n.mob-pb-0{padding-bottom:0px!important;}\r\n.mob-ps-0{padding-right:0px!important;padding-left:0px!important;}\r\n.mob-ps-50{padding-right:50px!important;padding-left:50px!important;} \r\n.center-element td{margin: 0 auto!important; text-align:center!important;}\r\n.center-element {text-align:center!important;} \r\n.center-element table{margin: 0 auto!important;} \r\n.center-element p{text-align:center!important;} \r\n.center-element span{text-align:center!important;}\r\n.center-element img{margin: 0 auto!important;}\r\n.mob-w-52{width:52%!important;min-width:52%!important;max-width:52%!important;}\r\n.mob-w-52{font-size:12px!important;}\r\n.mob-w-52 p{font-size:12px!important;}\r\n.mob-w-52 p span{font-size:12px!important;}\r\n.mob-w-22{width:22%!important;min-width:22%!important;max-width:22%!important;}\r\n.mob-w-2{width:2%!important;min-width:2%!important;max-width:2%!important;}\r\n.mob-fs-13{font-size:13px!important;}\r\n.mob-fs-13 p{font-size:13px!important;}\r\n.mob-fs-13 p span{font-size:13px!important;}\r\n  \r\n.column50a p {text-align: left; font-size: 18px; line-height: 1.5em; color: #000000; font-family: Helvetica Neue, Arial, sans-serif; padding: 20px 20px 15px 20px;} \r\n.padlr0m td {width: 0; padding: 0 5px;}\r\n  \r\n\r\n }</style>\r\n\r\n\r\n	</head>\r\n	<body class=\"st-email-body st-center-gmail\">\r\n					<div lang=\"en\">\r\n		\r\n		\r\n												\r\n						<div style=\"font-size:0px; display:none; visibility:hidden; opacity:0; color:transparent; max-height:0px; height:0; width:0; mso-hide:all;\">\r\n						2 out of 3 employees considered leaving a job due to...\r\n																&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &nbsp;\r\n														</div>\r\n						<table role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" bgcolor=\"#F3F2EF\" class=\"st-wrapper-table\" style=\"width: 100%;\">\r\n  <tr>\r\n    <td width=\"100%\" valign=\"top\" align=\"center\" class=\"st-dynamic-835-4\">\r\n      <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"512\" class=\"st-wrapper st-wrapper-background st-module-wrapper-table\" style=\"width: 512px;\">\r\n        <tr>\r\n          <td width=\"100%\" bgcolor=\"#FCE2BA\" valign=\"top\" style=\"width: 100%;\">\r\n            <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"512\" class=\"st-mso-full-width st-mobile-full-width\" style=\"width: 512px;\">\r\n              <tr>\r\n                <td align=\"center\" valign=\"top\" width=\"512\">\r\n                  <table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\r\n                    <tr>\r\n                      <td width=\"100%\" valign=\"top\" align=\"center\" style=\"width: 100%;\"><!-- /// HEADER START -->\r\n                    </td></tr><tr>\r\n                      <td class=\"padt10m\" align=\"center\" style=\"padding-top: 16px; padding-bottom: 16px;\">\r\n                        <table role=\"presentation\" width=\"87%\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">\r\n                          <tr>\r\n\r\n                            <!-- LOGO START -->\r\n                            <td width=\"100\" align=\"left\" style=\"padding-right: 12px;\"><a href=\"https://e.linkedin.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSUTQG4zcE4o0P61zgzePRJbtJmEcvD99vGWF6ojmmmWM8bqSrJNczdkzfTSJUB7ITj8KfAmzegHBg54RVXtpKX%3DTSYUWUDY&amp;_ei_=EW2tf9zs59idfPO1Sc_9BbkfOS5tZSDzfmZGPfd5S-_TuCAAfE_DgnKZ5ejKPFsxZy4s9YQq0HEjerXrmuLJ1w.&amp;_di_=l5t1n6qm55sqlir1pvsrsgjv0kpgeaua8r8lh4ekcq2d74id1o10\"><img src=\"https://e.linkedin.com/assets/responsysimages/linkedin/contentlibrary/jeangrey/logos/linkedin-blue-200x51.png\" width=\"100\" alt=\"LinkedIn\" style=\"width: 100%; max-width: 84px; display: block; border: 0; color: black; font-size: 20px; font-weight: bold; font-family: sans-serif;\"></a></td>\r\n                            <!-- LOGO END -->\r\n\r\n                            <!-- NAME/PROFILE START -->\r\n                            <td class=\"h3m\" width=\"150\" valign=\"top\" align=\"right\" style=\"padding-top:3px; font-size: 14px; color: #191919; font-family: Helvetica Neue, Arial, sans-serif;\">\r\n                              <a href=\"https://e.linkedin.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSUTQG4zcE4o0P61zgzePRJbtJmEcvD99vGWF6ojmmmWM8bqSrJNczdkzfTSJUB7ITj8KfAmzegHBg54RVXtpKX%3DTSYUWWSY&amp;_ei_=EW2tf9zs59idfPO1Sc_9BbkfOS5tZSDzfmZGPfd5S-_TuCAAfE_DgnKZ5ejKPFsxZy4s9YQq0HEjerXrmuLJ1w.&amp;_di_=rh9f0a8q9k3el2sphtqajbasfucv3vn4vpieul2nbnlr0upjepm0\" style=\"color:#191919; text-decoration:none;\">Valued Member </a>\r\n                                                            </td>\r\n                            <!-- NAME/PROFILE END -->\r\n\r\n                          </tr>\r\n                        </table>\r\n                      </td>\r\n                    </tr>\r\n                    <!-- HEADER END /// -->\r\n                </table></td>\r\n              </tr>\r\n            </table>\r\n          </td>\r\n        </tr>\r\n      </table>\r\n    </td>\r\n  </tr>\r\n\r\n\r\n\r\n<tr>\r\n  <td width=\"100%\" valign=\"top\" align=\"center\" class=\"st-dynamic-835-4\">\r\n    <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"512\" class=\"st-wrapper st-wrapper-background st-module-wrapper-table\" style=\"width: 512px;\">\r\n      <tr>\r\n        <td width=\"100%\" bgcolor=\"#FCE2BA\" valign=\"top\" style=\"width: 100%; padding: 16px 33px;\">\r\n          <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" style=\"width: 100%;\">\r\n            <tr>\r\n              <td width=\"100%\" valign=\"top\" align=\"left\">\r\n                <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"446\" class=\"st-mso-full-width st-mobile-full-width\" style=\"width: 446px;\">\r\n                  <tr>\r\n                    <td align=\"center\" valign=\"top\" width=\"446\">\r\n                      <table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"left\" style=\"text-align: left; font-family: Helvetica, Arial, sans-serif; color: #191919; font-size: 24px; font-weight: 700; letter-spacing: normal; line-height: 29px; padding-top: 16px; width: 100%;\">\r\n                            <p style=\"margin: 0px;\">2 out of 3 employees considered quitting due to a lack of career growth</p>\r\n                          </td>\r\n                        </tr>\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"left\" style=\"text-align: left; font-family: Helvetica, Arial, sans-serif; color: #191919; font-size: 16px; font-weight: 400; letter-spacing: normal; line-height: 24px; padding-top: 4px; width: 100%;\">\r\n                           \r\n                            <p style=\"margin: 0px;\">At LinkedIn, we know that learning helps employees uncover opportunities. That\'s why we believe that organizations that are serious about employee retention must also be serious about learning. <strong>Is your organization ready to get serious about&nbsp;learning?</strong></p>\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n            <tr>\r\n              <td width=\"100%\" valign=\"top\" align=\"left\">\r\n                <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" align=\"left\" width=\"100%\" style=\"width: 100%;\">\r\n                  <tr>\r\n                    <td width=\"107\" valign=\"middle\" style=\"width: 107px;\">\r\n                      <table role=\"presentation\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"center\" style=\"padding-top: 16px; width: 100%;\"><!--[if mso]>\r\n        <v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" style=\"height:35pt; v-text-anchor:middle; width:105pt; mso-position-horizontal: center\" arcsize=\"109%\" strokecolor=\"#0A66C2\" strokeweight=\"1pt\" fillcolor=\"#0A66C2\">\r\n          <w:anchorlock/>\r\n          <v:textbox inset=\"0,0,0,0\"><p style=\"text-align: center; font-family: Helvetica, Arial, Sans-serif; color: #FFFFFF; font-size: 16px; font-weight: 700; letter-spacing: normal; mso-line-height-rule: exactly; line-height: 16px\"><![endif]-->\r\n                            <!--[if !mso]><!-->\r\n                            <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"138\" style=\"width: 135px; border-collapse: initial;\">\r\n                              <tr>\r\n                                <td width=\"100%\" bgcolor=\"#0A66C2\" align=\"center\" height=\"45\" valign=\"middle\" style=\"mso-padding-alt:0px 24px 0px 24px; border-radius:50px; border-width: 1px; border-style: solid; border-color: #0a66c2; height: 45px; width: 100%; text-align: center; background-color: #0a66c2; vertical-align: middle\"><!--<![endif]--> <a width=\"138\" href=\"https://e.linkedin.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSUTQG4zcE4o0P61zgzePRJbtJmEcvD99vGWF6ojmmmWM8bqSrJNczdkzfTSJUB7ITj8KfAmzegHBg54RVXtpKX%3DTSYUWWUY&amp;_ei_=EW2tf9zs59idfPO1Sc_9BbkfOS5tZSDzfmZGPfd5S-_TuCAAfE_DgnKZ5ejKPFsxZy4s9YQq0HEjerXrmuLJ1w.&amp;_di_=uslvqeliuj0t8hc94alknuok148omumg0bhk6v9qh81hoabatn9g\" target=\"_blank\" bgcolor=\"#0A66C2\" valign=\"middle\" style=\"mso-line-height-rule:exactly; text-align:center; font-family: Helvetica, Arial, sans-serif; color: #ffffff; font-size: 16px; font-weight: 700; letter-spacing: normal; line-height: 20px; padding-right: 24px; padding-left: 24px; text-decoration: none; display: table-cell; width: 138px; height: 45px; border-radius: 50px; vertical-align: middle; box-sizing: content-box\" rilt=\"Contact_us\" rilc=\"CTA\"> <span style=\"margin: 0px; color: #ffffff;\"><span style=\"font-size: 16px; line-height: 20px;\">Contact us</span></span></a> <!--[if !mso]><!--></td>\r\n                              </tr>\r\n                            </table> <!--<![endif]-->\r\n                            <!--[if mso]>\r\n            </p></v:textbox>\r\n          </v:roundrect>\r\n        <![endif]-->\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                    <td width=\"400\" valign=\"middle\" style=\"padding-left: 24px; width: 400px;\">\r\n                      <table role=\"presentation\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"left\" style=\"padding-top: 16px; width: 100%;\"><!--[if mso]>\r\n        <v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" style=\"height:35pt; v-text-anchor:middle; width:102pt; mso-position-horizontal: left\" arcsize=\"109%\" strokecolor=\"#0A66C2\" strokeweight=\"1pt\" fillcolor=\"#FCE2BA\">\r\n          <w:anchorlock/>\r\n          <v:textbox inset=\"0,0,0,0\"><p style=\"text-align: center; font-family: Helvetica, Arial, Sans-serif; color: #0A66C2; font-size: 16px; font-weight: 700; letter-spacing: normal; mso-line-height-rule: exactly; line-height: 16px\"><![endif]-->\r\n                            <!--[if !mso]><!-->\r\n                            <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border-collapse: initial;\">\r\n                              <tr>\r\n                                <td width=\"100%\" align=\"center\" height=\"45\" valign=\"middle\" style=\"mso-padding-alt:0px 24px 0px 24px; border-radius:50px; border-width: 1px; border-style: solid; border-color: #0a66c2; height: 45px; width: 100%; text-align: center; vertical-align: middle\"><!--<![endif]--> <a href=\"https://e.linkedin.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSUTQG4zcE4o0P61zgzePRJbtJmEcvD99vGWF6ojmmmWM8bqSrJNczdkzfTSJUB7ITj8KfAmzegHBg54RVXtpKX%3DTSYUWWYY&amp;_ei_=EW2tf9zs59idfPO1Sc_9BbkfOS5tZSDzfmZGPfd5S-_TuCAAfE_DgnKZ5ejKPFsxZy4s9YQq0HEjerXrmuLJ1w.&amp;_di_=s870fickfn984hacs1n6okoc7isdpggdh47qh7da4sts0la2v8eg\" target=\"_blank\" valign=\"middle\" style=\"mso-line-height-rule:exactly; text-align:center; font-family: Helvetica, Arial, sans-serif; color: #0a66c2; font-size: 16px; font-weight: 700; letter-spacing: normal; line-height: 20px; padding-right: 24px; padding-left: 24px; text-decoration: none; display: table-cell; height: 45px; border-radius: 50px; vertical-align: middle; box-sizing: content-box\" rilt=\"Learn_more\" rilc=\"CTA\"> <span style=\"margin: 0px; color: #0a66c2;\"><span style=\"font-size: 16px; line-height: 20px;\">Learn more</span></span></a> <!--[if !mso]><!--></td>\r\n                              </tr>\r\n                            </table> <!--<![endif]-->\r\n                            <!--[if mso]>\r\n            </p></v:textbox>\r\n          </v:roundrect>\r\n        <![endif]-->\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </table>\r\n  </td>\r\n</tr>\r\n<tr>\r\n  <td width=\"100%\" valign=\"top\" align=\"center\" class=\"st-dynamic-835-4\">\r\n    <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"512\" class=\"st-wrapper st-wrapper-background st-module-wrapper-table\" style=\"width: 512px;\">\r\n      <tr>\r\n        <td width=\"100%\" bgcolor=\"#FFFFFF\" valign=\"top\" style=\"width: 100%; padding: 16px 33px;\">\r\n          <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" style=\"width: 100%;\">\r\n            <tr>\r\n              <td width=\"100%\" valign=\"top\" align=\"left\">\r\n                <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"446\" class=\"st-mso-full-width st-mobile-full-width\" style=\"width: 446px;\">\r\n                  <tr>\r\n                    <td align=\"center\" valign=\"top\" width=\"446\">\r\n                      <table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"left\" style=\"text-align: left; font-family: Helvetica, Arial, sans-serif; color: #191919; font-size: 20px; font-weight: 700; letter-spacing: normal; line-height: 24px; width: 100%;\">\r\n                            <p style=\"margin: 0px;\">LinkedIn Learning helps create employee opportunity within your&nbsp;company.</p>\r\n                          </td>\r\n                        </tr>\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"left\" class=\"aligned-bullets bullets-pb-12\" style=\"text-align: left; font-family: Helvetica, Arial, sans-serif; color: #191919; font-size: 16px; font-weight: 400; letter-spacing: normal; line-height: 24px; padding-top: 4px; width: 100%;\">\r\n                            <p style=\"margin: 0px;\">With us, you can:</p>\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </table>\r\n  </td>\r\n</tr>\r\n<tr>\r\n  <td width=\"100%\" valign=\"top\" align=\"center\" class=\"st-dynamic-835-4\">\r\n    <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"512\" class=\"st-wrapper st-wrapper-background st-module-wrapper-table\" style=\"width: 512px;\">\r\n      <tr>\r\n        <td width=\"100%\" bgcolor=\"#FFFFFF\" valign=\"top\" style=\"width: 100%; padding: 16px 33px;\">\r\n          <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" style=\"width: 100%;\">\r\n            <tr>\r\n              <td width=\"100%\" valign=\"top\" align=\"left\">\r\n                <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" align=\"left\" width=\"100%\" style=\"width: 100%;\">\r\n                  <tr>\r\n                    <td width=\"64\" valign=\"top\" style=\"width: 64px;\">\r\n                      <table role=\"presentation\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"left\" class=\"minw-48 img-w-48 st-dynamic-879-37\" style=\"padding-right: 16px; width: 100%;\"><a href=\"https://e.linkedin.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSUTQG4zcE4o0P61zgzePRJbtJmEcvD99vGWF6ojmmmWM8bqSrJNczdkzfTSJUB7ITj8KfAmzegHBg54RVXtpKX%3DTSYYWUBY&amp;_ei_=EW2tf9zs59idfPO1Sc_9BbkfOS5tZSDzfmZGPfd5S-_TuCAAfE_DgnKZ5ejKPFsxZy4s9YQq0HEjerXrmuLJ1w.&amp;_di_=119hna6rk2674i9pimvtqutughkdhu4c5v7u3c5irt9siog2qhb0\" target=\"_blank\" style=\"display: block;\"><img border=\"0\" valign=\"top\" width=\"48\" src=\"https://www.emailimagecdntsxk.com/bplc9kohf7/en_us/images/655b8d43530a9-1700498755.3401.png\" height=\"48\" alt=\"magnifying_glass_icon\" title=\"magnifying_glass\" class=\"st-mobile-width-constraint\" style=\"border: 0px; display: block; width: 48px; max-width: 100%;\"> </a></td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                    <td width=\"382\" valign=\"top\" style=\"width: 382px;\">\r\n                      <table role=\"presentation\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"left\" style=\"text-align: left; font-family: Helvetica, Arial, sans-serif; color: #191919; font-size: 16px; font-weight: 700; letter-spacing: normal; line-height: 20px; width: 100%;\">\r\n                            <p style=\"margin: 0px;\">Guide employees to the most critical skills</p>\r\n                          </td>\r\n                        </tr>\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"left\" style=\"text-align: left; font-family: Helvetica, Arial, sans-serif; color: #191919; font-size: 14px; font-weight: 400; letter-spacing: normal; line-height: 17px; padding-top: 6px; width: 100%;\">\r\n                            <p style=\"margin: 0px;\">with AI-powered career coaching, skill & course recommendations.</p>\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n            <tr>\r\n              <td width=\"100%\" valign=\"top\" align=\"left\">\r\n                <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" align=\"left\" width=\"100%\" style=\"width: 100%;\">\r\n                  <tr>\r\n                    <td width=\"64\" valign=\"top\" style=\"width: 64px;\">\r\n                      <table role=\"presentation\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"left\" class=\"minw-48 img-w-48 st-dynamic-879-37\" style=\"padding-top: 12px; padding-right: 16px; width: 100%;\"><a href=\"https://e.linkedin.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSUTQG4zcE4o0P61zgzePRJbtJmEcvD99vGWF6ojmmmWM8bqSrJNczdkzfTSJUB7ITj8KfAmzegHBg54RVXtpKX%3DTSYYWUBY&amp;_ei_=EW2tf9zs59idfPO1Sc_9BbkfOS5tZSDzfmZGPfd5S-_TuCAAfE_DgnKZ5ejKPFsxZy4s9YQq0HEjerXrmuLJ1w.&amp;_di_=119hna6rk2674i9pimvtqutughkdhu4c5v7u3c5irt9siog2qhb0\" target=\"_blank\" style=\"display: block;\"><img border=\"0\" valign=\"top\" width=\"48\" src=\"https://www.emailimagecdntsxk.com/bplc9kohf7/en_us/images/655b8d821fadf-1700498818.1298.png\" height=\"48\" alt=\"Certificate_icon\" title=\"Certificate_icon\" class=\"st-mobile-width-constraint\" style=\"border: 0px; display: block; width: 48px; max-width: 100%;\"> </a></td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                    <td width=\"382\" valign=\"top\" style=\"width: 382px;\">\r\n                      <table role=\"presentation\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"left\" style=\"text-align: left; font-family: Helvetica, Arial, sans-serif; color: #191919; font-size: 16px; font-weight: 700; letter-spacing: normal; line-height: 20px; padding-top: 12px; width: 100%;\">\r\n                            <p style=\"margin: 0px;\">Develop the skills that matter</p>\r\n                          </td>\r\n                        </tr>\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"left\" style=\"text-align: left; font-family: Helvetica, Arial, sans-serif; color: #191919; font-size: 14px; font-weight: 400; letter-spacing: normal; line-height: 17px; padding-top: 6px; width: 100%;\">\r\n                            <p style=\"margin: 0px;\">with curated courses taught by experts featuring hands-on-practice.</p>\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n            <tr>\r\n              <td width=\"100%\" valign=\"top\" align=\"left\">\r\n                <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" align=\"left\" width=\"100%\" style=\"width: 100%;\">\r\n                  <tr>\r\n                    <td width=\"64\" valign=\"top\" style=\"width: 64px;\">\r\n                      <table role=\"presentation\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"left\" class=\"minw-48 img-w-48 st-dynamic-879-37\" style=\"padding-top: 12px; padding-right: 16px; width: 100%;\"><a href=\"https://e.linkedin.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSUTQG4zcE4o0P61zgzePRJbtJmEcvD99vGWF6ojmmmWM8bqSrJNczdkzfTSJUB7ITj8KfAmzegHBg54RVXtpKX%3DTSYYWUBY&amp;_ei_=EW2tf9zs59idfPO1Sc_9BbkfOS5tZSDzfmZGPfd5S-_TuCAAfE_DgnKZ5ejKPFsxZy4s9YQq0HEjerXrmuLJ1w.&amp;_di_=119hna6rk2674i9pimvtqutughkdhu4c5v7u3c5irt9siog2qhb0\" target=\"_blank\" style=\"display: block;\"><img border=\"0\" valign=\"top\" width=\"48\" src=\"https://www.emailimagecdntsxk.com/bplc9kohf7/en_us/images/655b8d5f9907d-1700498783.6268.png\" height=\"48\" alt=\"magnet_icon\" title=\"magnet_icon\" class=\"st-mobile-width-constraint\" style=\"border: 0px; display: block; width: 48px; max-width: 100%;\"> </a></td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                    <td width=\"382\" valign=\"top\" style=\"width: 382px;\">\r\n                      <table role=\"presentation\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"left\" style=\"text-align: left; font-family: Helvetica, Arial, sans-serif; color: #191919; font-size: 16px; font-weight: 700; letter-spacing: normal; line-height: 20px; padding-top: 12px; width: 100%;\">\r\n                            <p style=\"margin: 0px;\">Connect critical skills to where they&rsquo;re needed</p>\r\n                          </td>\r\n                        </tr>\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"left\" style=\"text-align: left; font-family: Helvetica, Arial, sans-serif; color: #191919; font-size: 14px; font-weight: 400; letter-spacing: normal; line-height: 17px; padding-top: 6px; width: 100%;\">\r\n                            <p style=\"margin: 0px;\">by surfacing internal jobs to employees with matching goals & skillsets.</p>\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n            <tr>\r\n              <td width=\"100%\" valign=\"top\" align=\"left\">\r\n                <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" align=\"left\" width=\"100%\" style=\"width: 100%;\">\r\n                  <tr>\r\n                    <td width=\"64\" valign=\"top\" style=\"width: 64px;\">\r\n                      <table role=\"presentation\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"left\" class=\"minw-48 img-w-48 st-dynamic-879-37\" style=\"padding-top: 12px; padding-right: 16px; width: 100%;\"><a href=\"https://e.linkedin.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSUTQG4zcE4o0P61zgzePRJbtJmEcvD99vGWF6ojmmmWM8bqSrJNczdkzfTSJUB7ITj8KfAmzegHBg54RVXtpKX%3DTSYYWUBY&amp;_ei_=EW2tf9zs59idfPO1Sc_9BbkfOS5tZSDzfmZGPfd5S-_TuCAAfE_DgnKZ5ejKPFsxZy4s9YQq0HEjerXrmuLJ1w.&amp;_di_=119hna6rk2674i9pimvtqutughkdhu4c5v7u3c5irt9siog2qhb0\" target=\"_blank\" style=\"display: block;\"><img border=\"0\" valign=\"top\" width=\"48\" src=\"https://www.emailimagecdntsxk.com/bplc9kohf7/en_us/images/655b8d68ef8f0-1700498792.9812.png\" height=\"48\" alt=\"ruler_icon\" title=\"ruler_icon\" class=\"st-mobile-width-constraint\" style=\"border: 0px; display: block; width: 48px; max-width: 100%;\"> </a></td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                    <td width=\"382\" valign=\"top\" style=\"width: 382px;\">\r\n                      <table role=\"presentation\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"left\" style=\"text-align: left; font-family: Helvetica, Arial, sans-serif; color: #191919; font-size: 16px; font-weight: 700; letter-spacing: normal; line-height: 20px; padding-top: 12px; width: 100%;\">\r\n                            <p style=\"margin: 0px;\">Measure impact on your priorities</p>\r\n                          </td>\r\n                        </tr>\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"left\" style=\"text-align: left; font-family: Helvetica, Arial, sans-serif; color: #191919; font-size: 14px; font-weight: 400; letter-spacing: normal; line-height: 17px; padding-top: 6px; width: 100%;\">\r\n                            <p style=\"margin: 0px;\"><span style=\"font-size: 14px; line-height: 17px;\">with dashboards tracking learner progress on career goals & internal job interest.</span></p>\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </table>\r\n  </td>\r\n</tr>\r\n<tr>\r\n  <td width=\"100%\" valign=\"top\" align=\"center\" class=\"st-dynamic-835-4\">\r\n    <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"512\" class=\"st-wrapper st-wrapper-background st-module-wrapper-table\" style=\"width: 512px;\">\r\n      <tr>\r\n        <td width=\"100%\" bgcolor=\"#FFFFFF\" valign=\"top\" style=\"width: 100%; padding: 16px 33px;\">\r\n          <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" style=\"width: 100%;\">\r\n            <tr>\r\n              <td width=\"100%\" valign=\"top\" align=\"left\">\r\n                <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"446\" class=\"st-mso-full-width st-mobile-full-width\" style=\"width: 446px;\">\r\n                  <tr>\r\n                    <td align=\"center\" valign=\"top\" width=\"446\">\r\n                      <table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"center\" class=\"img-w-128 st-dynamic-907-83\" style=\"width: 100%;\"><a href=\"https://e.linkedin.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSUTQG4zcE4o0P61zgzePRJbtJmEcvD99vGWF6ojmmmWM8bqSrJNczdkzfTSJUB7ITj8KfAmzegHBg54RVXtpKX%3DTSYYWUBY&amp;_ei_=EW2tf9zs59idfPO1Sc_9BbkfOS5tZSDzfmZGPfd5S-_TuCAAfE_DgnKZ5ejKPFsxZy4s9YQq0HEjerXrmuLJ1w.&amp;_di_=119hna6rk2674i9pimvtqutughkdhu4c5v7u3c5irt9siog2qhb0\" target=\"_blank\" style=\"display: block;\"><img border=\"0\" valign=\"top\" width=\"128\" src=\"https://www.emailimagecdntsxk.com/bplc9kohf7/en_us/images/655b8bf949e01-1700498425.3026.png\" height=\"128\" alt=\"office_people_talking\" title=\"office_people_talking\" class=\"st-mobile-width-constraint\" style=\"border: 0px; display: block; width: 128px; max-width: 100%;\"> </a></td>\r\n                        </tr>\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"left\" style=\"text-align: left; font-family: Helvetica, Arial, sans-serif; color: #191919; font-size: 20px; font-weight: 700; letter-spacing: normal; line-height: 24px; padding-top: 16px; width: 100%;\">\r\n                            <p style=\"margin: 0px; text-align: center;\">Want to talk this through?</p>\r\n                          </td>\r\n                        </tr>\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"left\" style=\"text-align: left; font-family: Helvetica, Arial, sans-serif; color: #191919; font-size: 16px; font-weight: 400; letter-spacing: normal; line-height: 24px; padding-top: 8px; width: 100%;\">\r\n                            <p style=\"margin: 0px; text-align: center;\">Our team of dedicated Learning Consultants is here to help you discover how LinkedIn Learning can benefit your organization. Reserve time with a Learning Consultant&nbsp;today!</p>\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n            <tr>\r\n              <td width=\"100%\" valign=\"top\" align=\"left\">\r\n                <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" align=\"left\" width=\"100%\" style=\"width: 100%;\">\r\n                  <tr>\r\n                    <td width=\"446\" valign=\"middle\" style=\"width: 446px;\">\r\n                      <table role=\"presentation\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"center\" class=\"button\" style=\"padding-top: 16px; width: 100%;\">\r\n                              <!--[if mso]>\r\n        <v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" style=\"height:35pt; v-text-anchor:middle; width:102pt; mso-position-horizontal: left\" arcsize=\"109%\" strokecolor=\"#0A66C2\" strokeweight=\"1pt\" fillcolor=\"#ffffff\">\r\n          <w:anchorlock/>\r\n          <v:textbox inset=\"0,0,0,0\"><p style=\"text-align: center; font-family: Helvetica, Arial, Sans-serif; color: #0A66C2; font-size: 16px; font-weight: 700; letter-spacing: normal; mso-line-height-rule: exactly; line-height: 16px\"><![endif]-->\r\n                            <!--[if !mso]><!-->\r\n                            <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border-collapse: initial;\">\r\n                              <tr>\r\n                             \r\n                                <td width=\"100%\" align=\"center\" height=\"45\" valign=\"middle\" style=\"mso-padding-alt:0px 24px 0px 24px; border-width:1px; border-style: solid; border-color: #0a66c2; height: 45px; width: 100%; text-align: center; vertical-align: middle\"> <!--<![endif]--> <a href=\"https://e.linkedin.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSUTQG4zcE4o0P61zgzePRJbtJmEcvD99vGWF6ojmmmWM8bqSrJNczdkzfTSJUB7ITj8KfAmzegHBg54RVXtpKX%3DTSYUWWBY&amp;_ei_=EW2tf9zs59idfPO1Sc_9BbkfOS5tZSDzfmZGPfd5S-_TuCAAfE_DgnKZ5ejKPFsxZy4s9YQq0HEjerXrmuLJ1w.&amp;_di_=slni8hh25hus84denlgn1bbpuku8c2mkis68dtktj9e4p2c2drp0\" target=\"_blank\" valign=\"middle\" style=\"mso-line-height-rule:exactly; text-align:center; font-family: Helvetica, Arial, sans-serif; color: #0a66c2; font-size: 16px; font-weight: 700; letter-spacing: normal; line-height: 20px; padding-right: 24px; padding-left: 24px; text-decoration: none; display: table-cell; height: 45px; border-radius: 0px; vertical-align: middle; box-sizing: content-box\" rilt=\"Get_in_touch\" rilc=\"CTA\"> <span style=\"margin: 0px; color: #0a66c2;\">Get in touch</span></a><!--[if !mso]><!--> </td>\r\n                              </tr>\r\n                            </table>\r\n                              <!--<![endif]-->\r\n                            <!--[if mso]>\r\n            </p></v:textbox>\r\n          </v:roundrect>\r\n        <![endif]-->\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </table>\r\n  </td>\r\n</tr>\r\n<tr>\r\n  <td width=\"100%\" valign=\"top\" align=\"center\" class=\"st-dynamic-835-4\">\r\n    <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"512\" class=\"st-wrapper st-wrapper-background st-module-wrapper-table\" style=\"width: 512px;\">\r\n      <tr>\r\n        <td width=\"100%\" bgcolor=\"#FFFFFF\" valign=\"top\" style=\"width: 100%; padding: 16px 33px;\">\r\n          <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" style=\"width: 100%;\">\r\n            <tr>\r\n              <td width=\"100%\" valign=\"top\" align=\"left\" style=\"padding-bottom: 16px;\">\r\n                <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"446\" class=\"st-mso-full-width st-mobile-full-width\" style=\"width: 446px;\">\r\n                  <tr>\r\n                    <td align=\"center\" valign=\"top\" width=\"446\">\r\n                      <table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"left\" style=\"text-align: left; font-family: Helvetica, Arial, sans-serif; color: #191919; font-size: 16px; font-weight: 400; letter-spacing: normal; line-height: 20px; width: 100%;\">\r\n                            <p style=\"margin: 0px;\">Sincerely,</p>\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n            <tr>\r\n              <td width=\"100%\" valign=\"top\" align=\"left\">\r\n                <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" align=\"left\" width=\"100%\" style=\"width: 100%;\">\r\n                  <tr>\r\n                    <td width=\"446\" valign=\"middle\" style=\"width: 446px;\">\r\n                      <table role=\"presentation\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n                        <tr>\r\n                          <td width=\"100%\" valign=\"top\" align=\"left\" style=\"text-align: left; font-family: Helvetica, Arial, sans-serif; color: #191919; font-size: 16px; font-weight: 400; letter-spacing: normal; line-height: 20px; width: 100%;\">\r\n                            <p style=\"margin: 0px;\"><span style=\"font-size: 16px; line-height: 20px;\">LinkedIn Learning</span></p>\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </table>\r\n  </td>\r\n</tr>\r\n<tr>\r\n  <td width=\"100%\" valign=\"top\" align=\"center\" class=\"st-dynamic-835-4\">\r\n    <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"512\" class=\"st-wrapper st-wrapper-background st-module-wrapper-table\" style=\"width: 512px;\">\r\n      <tr>\r\n        <td width=\"100%\" valign=\"top\" style=\"width: 100%;\">\r\n          <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"512\" class=\"st-mso-full-width st-mobile-full-width\" style=\"width: 512px;\">\r\n            <tr>\r\n              <td align=\"center\" valign=\"top\" width=\"512\">\r\n                <table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\r\n                  <tr>\r\n                    <td width=\"100%\" valign=\"top\" align=\"center\" style=\"width: 100%;\"><!-- /// FOOTER START -->\r\n                  </td></tr><tr>\r\n                    <td style=\"background-color: #F3F2EF; padding-top: 12px; padding-bottom: 36px;\">\r\n<html lang=\"en\">\r\n<head>\r\n<title>Footer Mercado English</title>\r\n</head>\r\n<body>\r\n                        <table role=\"presentation\"  width=\"87%\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" >\r\n\r\n                            <!-- COPY START -->\r\n                            <tr>\r\n                                <td style=\"padding-top: 24px; text-align: left; font-size: 14px; line-height: 1.3em; color: #191919; font-family: Helvetica Neue, Arial, sans-serif;\">\r\n                                    This email was intended for Valued Member  ()\r\n                                    <br /><a href=\"https://e.linkedin.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSUTQG4zcE4o0P61zgzePRJbtJmEcvD99vGWF6ojmmmWM8bqSrJNczdkzfTSJUB7ITj8KfAmzegHBg54RVXtpKX%3DTSYUWWDY&_ei_=EW2tf9zs59idfPO1Sc_9BbkfOS5tZSDzfmZGPfd5S-_TuCAAfE_DgnKZ5ejKPFsxZy4s9YQq0HEjerXrmuLJ1w.&_di_=ebeale0h6c1dk98h2u559sltpn7928slu3rh6rr5gp10n72j9v50\"><span style=\"color: #0A66C2; text-decoration: underline;\">Learn why we included&nbsp;this.</span></a>\r\n                                    <br /><br />This is an occasional email to help you get the most out&nbsp;of&nbsp;LinkedIn.\r\n                                    <br><br>\r\n                                    <a href=\"https://e.linkedin.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSUTQG4zcE4o0P61zgzePRJbtJmEcvD99vGWF6ojmmmWM8bqSrJNczdkzfTSJUB7ITj8KfAmzegHBg54RVXtpKX%3DTSYUWYSY&_ei_=EW2tf9zs59idfPO1Sc_9BbkfOS5tZSDzfmZGPfd5S-_TWF-OO8GMX7hepn447UM57cdJEKyqTGGgmjL7lvSav0zMor44sjTf2IvhF4TaXzF_A05Si6KTuBahUst6d_RLY1D1DJEBC3jeo7e4DMpwco4wNHerh5Qo7hjiH-06sZHdLoIV3Yk72tmoCfrcoenu.&_di_=h85hbivilroufkra03lmqafq1hgpng155t3fau68jrjvgl2i5c8g\"><span style=\"color: #0A66C2; text-decoration: underline;\">Unsubscribe</span></a>&nbsp;&nbsp;&#183;&nbsp;&nbsp;<a href=\"https://e.linkedin.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSUTQG4zcE4o0P61zgzePRJbtJmEcvD99vGWF6ojmmmWM8bqSrJNczdkzfTSJUB7ITj8KfAmzegHBg54RVXtpKX%3DTSYUWYUY&_ei_=EW2tf9zs59idfPO1Sc_9BbkfOS5tZSDzfmZGPfd5S-_TuCAAfE_DgnKZ5ejKPFsxZy4s9YQq0HEjerXrmuLJ1w.&_di_=6vjjsh1cqu126slgabrqn4nefuiqsmgevpkfoiel7r17k6reuu1g\"><span style=\"color: #0A66C2; text-decoration: underline;\">Help</span></a>\r\n                                </td>\r\n                            </tr>\r\n                            <!-- COPY END -->\r\n\r\n                            <!-- IMAGE START -->\r\n                            <tr>\r\n                                <td style=\"padding-top: 25px;\"><a href=\"https://e.linkedin.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSUTQG4zcE4o0P61zgzePRJbtJmEcvD99vGWF6ojmmmWM8bqSrJNczdkzfTSJUB7ITj8KfAmzegHBg54RVXtpKX%3DTSYUWUDY&_ei_=EW2tf9zs59idfPO1Sc_9BbkfOS5tZSDzfmZGPfd5S-_TuCAAfE_DgnKZ5ejKPFsxZy4s9YQq0HEjerXrmuLJ1w.&_di_=l5t1n6qm55sqlir1pvsrsgjv0kpgeaua8r8lh4ekcq2d74id1o10\"><img src=\"https://e.linkedin.com/assets/responsysimages/content/linkedin/linkedin-blue-80x20.png\" width=\"80\" alt=\"LinkedIn\" style=\"display: block; border: 0; color: black; font-size: 20px; font-weight: bold; font-family: sans-serif;\"/></a></td>\r\n                            </tr>\r\n                            <!-- IMAGE END -->\r\n\r\n                            <!-- COPY START -->\r\n                            <tr>\r\n                                <td style=\"padding-top: 20px; text-align: left; font-size: 14px; line-height: 1.3em; color: #191919; font-family: Helvetica Neue, Arial, sans-serif;\">&#169; 2025, LinkedIn Ireland Unlimited Company. All rights reserved. LinkedIn Ireland Unlimited Company, Gardner House, Wilton Plaza, Wilton Place, Dublin 2, Ireland. LinkedIn and the LinkedIn logo are registered trademarks of&nbsp;LinkedIn.</td>\r\n                            </tr>\r\n                            <!-- COPY END -->\r\n\r\n                        </table><table cellpadding=\"0\" cellspacing=\"0\" style=\"border: 0px; padding: 0px; margin: 0px; position: absolute; display: none; float: left\">\r\n<tr>\r\n<td height=\"1\" style=\"font-size: 1px; line-height: 1px; padding: 0px;\">\r\n<br><img src=\"https://e.linkedin.com/pub/as?_ri_=X0Gzc2X%3DAQjkPkSUTQG4zcE4o0P61zgzePRJbtJmEcvD99vGWF6ojmmmWM8bqSrJNczdkzfTSJUB7ITj8KfAmzegHBg54RVXHkMX%3Dw&_ei_=EUlaGGF4SNMvxFF7KucKuWOjdy3pKGerutSeGSo7pWkHQu7PmKgykc9xcwyxqDvQJP0pgnz4t7A.\"></img>\r\n</td>\r\n</tr>\r\n</table>\r\n</body>\r\n</html>                    </td>\r\n                  </tr>\r\n                  <!-- FOOTER END /// -->\r\n              </table></td>\r\n            </tr>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </table>\r\n  </td>\r\n</tr>\r\n\r\n\r\n<!--[if false]><!-->\r\n<tr>\r\n  <td class=\"st-gmail-fix\" style=\"font-size:0; line-height: 0; height: 0; min-width: 512px;\">\r\n    &nbsp;\r\n  </td>\r\n</tr><!--<![endif]-->		\r\n                            </table> </div>\r\n			</body>\r\n</html>\r\n\r\n\r\n','\r\n\r\n	\r\n		\r\n\r\n		\r\n		\r\n		\r\n		\r\n\r\n							\r\n		        \r\n        \r\n		\r\n		\r\n    \r\n    span, td, table, div {\r\n        -webkit-font-smoothing: antialiased;\r\n        -moz-osx-font-smoothing: grayscale;\r\n    }\r\n    .st-email-body{\r\n        width:100% !important;\r\n        -webkit-text-size-adjust: 100%;\r\n        margin: 0 auto!important;\r\n        padding: 0px;\r\n        background-color: #ffffff;\r\n    }\r\n\r\n    span.st-preheader{\r\n        display: none!important;\r\n    }\r\n\r\n    \r\n    td img + div {\r\n        display: none;\r\n    }\r\n\r\n    \r\n    a[href^=\"tel\"],\r\n    a[href^=\"sms\"]{text-decoration: none; color: inherit !important; pointer-events: none; cursor: default;}\r\n    u + .st-email-body a {color: inherit; text-decoration: none; font-size: inherit; font-family: inherit; font-weight: inherit; line-height: inherit;}\r\n    \r\n    *[x-apple-data-detectors] {color: inherit !important; text-decoration: none !important; font-size: inherit !important; font-family: inherit !important; font-weight: inherit !important; line-height: inherit !important;}\r\n\r\n    a,a:hover,a:link,a:visited {\r\n        text-decoration:none !important;\r\n        outline: none;\r\n    }\r\n\r\n    p {\r\n        margin: 0;\r\n        padding: 0;\r\n    }\r\n\r\n    \r\n    .st-hide-desktop {\r\n        display:none;\r\n        font-size:0;\r\n        height:0;\r\n        min-height:0;\r\n        max-height:0;\r\n        line-height:0;\r\n        mso-hide:all;\r\n    }\r\n\r\n    .st-gmail-fix { display: none !important; }\r\n\r\n    \r\n\r\n\r\n@media screen and (max-width: 480px) {\r\n            \r\n                            .st-col,.st-mobile-full-width,.st-module-wrapper-table,.st-wrapper,.st-wrapper-table{width:100%!important}.st-col{padding:0!important}.st-resize{width:100%!important}.st-mobile-width-constraint,.st-resize{display:block!important;height:auto!important}.st-mobile-width-constraint{max-width:100%!important}.st-equal-height,.st-height-auto{height:auto!important}.st-hide-desktop{display:table-row!important}.st-hide-mobile{display:none!important}.st-mobile-inline{display:inline!important}.show-img-mobile{display:table-row!important;width:100%!important;float:none;overflow:visible!important;height:auto!important}\r\n                .st-dynamic-835-4 { background-image:none!important; }\r\n.st-dynamic-879-37, u + .st-email-body .st-dynamic-879-37 img { width:100%!important;max-width:48px!important; }\r\n.st-dynamic-907-83, u + .st-email-body .st-dynamic-907-83 img { width:100%!important;max-width:128px!important; }                \r\n                .st-wrapper-table{\r\n                    width: 100%!important;\r\n                    max-width: 480px!important;\r\n                    margin: 0 auto;\r\n                }\r\n                    }\r\n                    #MessageViewBody .st-module-wrapper-table  {margin-top:-1px}\r\n            @media (max-width:511px) and (min-width:481px) {.st-module-wrapper-table {margin-top:-1px !important;}}\r\n            div > u + .body .st-module-wrapper-table {margin-top:0px !important}\r\n            \r\n\r\n    \r\n    ul, ol {margin-left:15px; padding-left:0px}\r\n    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n    \r\n.aligned-bullets ul{list-style-position: outside!important; padding-left:20px!important; padding-top:12px !important;}\r\n.aligned-bullets ol{list-style-position: outside!important; padding-left:20px!important; padding-top:12px !important;}\r\n.border-radius {border-radius: 8px;}\r\n.border-radius-bs {border-bottom-left-radius:8px!important; border-bottom-right-radius:8px!important;}\r\n.border-radius-bs img{border-bottom-left-radius:8px!important; border-bottom-right-radius:8px!important;}\r\n.border-radius-ts {border-top-left-radius:8px!important; border-top-right-radius:8px!important;}\r\n.border-radius-ts img{border-top-left-radius:8px!important; border-top-right-radius:8px!important;}\r\n.button td{-webkit-border-radius: 50px!important; -moz-border-radius: 50px!important; border-radius: 50px!important; overflow: hidden!important; }\r\n.minw-48 img{min-width:48px!important;}\r\n.di-fix {mso-padding-top-alt:18pt!important;}\r\n.bullets-pb-12 ul li {padding-bottom:12px!important;}\r\n.bullets-pb-12 ol li {padding-bottom:12px!important;}\r\n@media all and (max-width: 480px) {\r\n\r\n.mob-pb-0{padding-bottom:0px!important;}\r\n.mob-ps-0{padding-right:0px!important;padding-left:0px!important;}\r\n.mob-ps-50{padding-right:50px!important;padding-left:50px!important;} \r\n.center-element td{margin: 0 auto!important; text-align:center!important;}\r\n.center-element {text-align:center!important;} \r\n.center-element table{margin: 0 auto!important;} \r\n.center-element p{text-align:center!important;} \r\n.center-element span{text-align:center!important;}\r\n.center-element img{margin: 0 auto!important;}\r\n.mob-w-52{width:52%!important;min-width:52%!important;max-width:52%!important;}\r\n.mob-w-52{font-size:12px!important;}\r\n.mob-w-52 p{font-size:12px!important;}\r\n.mob-w-52 p span{font-size:12px!important;}\r\n.mob-w-22{width:22%!important;min-width:22%!important;max-width:22%!important;}\r\n.mob-w-2{width:2%!important;min-width:2%!important;max-width:2%!important;}\r\n.mob-fs-13{font-size:13px!important;}\r\n.mob-fs-13 p{font-size:13px!important;}\r\n.mob-fs-13 p span{font-size:13px!important;}\r\n  \r\n.column50a p {text-align: left; font-size: 18px; line-height: 1.5em; color: #000000; font-family: Helvetica Neue, Arial, sans-serif; padding: 20px 20px 15px 20px;} \r\n.padlr0m td {width: 0; padding: 0 5px;}\r\n  \r\n\r\n }\r\n\r\n\r\n	\r\n	\r\n					\r\n		\r\n		\r\n												\r\n						\r\n						2 out of 3 employees considered leaving a job due to...\r\n																&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &nbsp;\r\n														\r\n						\r\n  \r\n    \r\n      \r\n        \r\n          \r\n            \r\n              \r\n                \r\n                  \r\n                    \r\n                      \r\n                    \r\n                      \r\n                        \r\n                          \r\n\r\n                            \r\n                            \r\n                            \r\n\r\n                            \r\n                            \r\n                              Valued Member \r\n                                                            \r\n                            \r\n\r\n                          \r\n                        \r\n                      \r\n                    \r\n                    \r\n                \r\n              \r\n            \r\n          \r\n        \r\n      \r\n    \r\n  \r\n\r\n\r\n\r\n\r\n  \r\n    \r\n      \r\n        \r\n          \r\n            \r\n              \r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            2 out of 3 employees considered quitting due to a lack of career growth\r\n                          \r\n                        \r\n                        \r\n                          \r\n                           \r\n                            At LinkedIn, we know that learning helps employees uncover opportunities. That\'s why we believe that organizations that are serious about employee retention must also be serious about learning. Is your organization ready to get serious about&nbsp;learning?\r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n              \r\n            \r\n            \r\n              \r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            \r\n                            \r\n                              \r\n                                  Contact us \r\n                              \r\n                             \r\n                            \r\n                          \r\n                        \r\n                      \r\n                    \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            \r\n                            \r\n                              \r\n                                  Learn more \r\n                              \r\n                             \r\n                            \r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n              \r\n            \r\n          \r\n        \r\n      \r\n    \r\n  \r\n\r\n\r\n  \r\n    \r\n      \r\n        \r\n          \r\n            \r\n              \r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            LinkedIn Learning helps create employee opportunity within your&nbsp;company.\r\n                          \r\n                        \r\n                        \r\n                          \r\n                            With us, you can:\r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n              \r\n            \r\n          \r\n        \r\n      \r\n    \r\n  \r\n\r\n\r\n  \r\n    \r\n      \r\n        \r\n          \r\n            \r\n              \r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                           \r\n                        \r\n                      \r\n                    \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            Guide employees to the most critical skills\r\n                          \r\n                        \r\n                        \r\n                          \r\n                            with AI-powered career coaching, skill & course recommendations.\r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n              \r\n            \r\n            \r\n              \r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                           \r\n                        \r\n                      \r\n                    \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            Develop the skills that matter\r\n                          \r\n                        \r\n                        \r\n                          \r\n                            with curated courses taught by experts featuring hands-on-practice.\r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n              \r\n            \r\n            \r\n              \r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                           \r\n                        \r\n                      \r\n                    \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            Connect critical skills to where they&rsquo;re needed\r\n                          \r\n                        \r\n                        \r\n                          \r\n                            by surfacing internal jobs to employees with matching goals & skillsets.\r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n              \r\n            \r\n            \r\n              \r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                           \r\n                        \r\n                      \r\n                    \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            Measure impact on your priorities\r\n                          \r\n                        \r\n                        \r\n                          \r\n                            with dashboards tracking learner progress on career goals & internal job interest.\r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n              \r\n            \r\n          \r\n        \r\n      \r\n    \r\n  \r\n\r\n\r\n  \r\n    \r\n      \r\n        \r\n          \r\n            \r\n              \r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                           \r\n                        \r\n                        \r\n                          \r\n                            Want to talk this through?\r\n                          \r\n                        \r\n                        \r\n                          \r\n                            Our team of dedicated Learning Consultants is here to help you discover how LinkedIn Learning can benefit your organization. Reserve time with a Learning Consultant&nbsp;today!\r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n              \r\n            \r\n            \r\n              \r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                              \r\n                            \r\n                            \r\n                              \r\n                             \r\n                                   Get in touch \r\n                              \r\n                            \r\n                              \r\n                            \r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n              \r\n            \r\n          \r\n        \r\n      \r\n    \r\n  \r\n\r\n\r\n  \r\n    \r\n      \r\n        \r\n          \r\n            \r\n              \r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            Sincerely,\r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n              \r\n            \r\n            \r\n              \r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            LinkedIn Learning\r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n              \r\n            \r\n          \r\n        \r\n      \r\n    \r\n  \r\n\r\n\r\n  \r\n    \r\n      \r\n        \r\n          \r\n            \r\n              \r\n                \r\n                  \r\n                    \r\n                  \r\n                    \r\n\r\n\r\nFooter Mercado English\r\n\r\n\r\n                        \r\n\r\n                            \r\n                            \r\n                                \r\n                                    This email was intended for Valued Member  ()\r\n                                    Learn why we included&nbsp;this.\r\n                                    This is an occasional email to help you get the most out&nbsp;of&nbsp;LinkedIn.\r\n                                    \r\n                                    Unsubscribe&nbsp;&nbsp;&#183;&nbsp;&nbsp;Help\r\n                                \r\n                            \r\n                            \r\n\r\n                            \r\n                            \r\n                                \r\n                            \r\n                            \r\n\r\n                            \r\n                            \r\n                                &#169; 2025, LinkedIn Ireland Unlimited Company. All rights reserved. LinkedIn Ireland Unlimited Company, Gardner House, Wilton Plaza, Wilton Place, Dublin 2, Ireland. LinkedIn and the LinkedIn logo are registered trademarks of&nbsp;LinkedIn.\r\n                            \r\n                            \r\n\r\n                        \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n                    \r\n                  \r\n                  \r\n              \r\n            \r\n          \r\n        \r\n      \r\n    \r\n  \r\n\r\n\r\n\r\n\r\n\r\n  \r\n    &nbsp;\r\n  \r\n		\r\n                             \r\n			\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-09-10 19:10:18','2025-12-09 19:28:15','2025-12-09 19:28:15','2025-12-09 19:28:15',NULL,NULL,NULL),
(703,4,'<CAEvVzq1BDzG0RgFyrs8pJC5yMmVNX9x+Gy5P13pUM1H4bzuLbg@mail.gmail.com>',NULL,NULL,'Re: Invitation: Rick @ Brandy\'s Mold & Tool @ Tue Sep 9, 2025 9:30am - 10:30am (EDT) (rick@mavrix.one)','liz@brandysmoldandtool.com','Elizabeth Perkins','<div dir=\"ltr\"><div>Rick,</div><div><br></div><div>We appreciate you taking the time to come in and really valued the conversation. Hearing about your plans and vision left us excited about what you and your team are building, and it’s clear you have something great in motion!</div><div><br></div><div>We’d love to stay connected as things progress. I will be reaching out once I am in St. Petersburg, and in the meantime if there is anything we can do to support you along the way please don’t hesitate to reach out.</div><div>\r\n<p>Looking forward to keeping the momentum going!</p>\r\n<p></p></div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><img width=\"96\" height=\"38\" src=\"https://ci3.googleusercontent.com/mail-sig/AIorK4xpMAQi-3CccYzdad7DnbPHOkAHkZLthTPdqQy_mmGqmNua-ldbvlLW3KyCXMvL0Duc1K_cjsds8w7y\"><div><b>Liz Perkins</b><div>Vice President</div><div>585-233-0566<div><br></div></div></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Sep 10, 2025 at 12:02 PM Rick Mislan &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><u></u>\r\n<div>\r\n<p style=\"margin:0px\">Hi all,<br>Thanks again for taking your time to further introduce the team, talent, and opportunities at Brandy&#39;s. Absolutely appreciated that and the coffee!<br>That said, reception from my CEO was very positive and once we get over a few current hurdles, I&#39;ll be reconnecting for some next steps and ideas.<br>Again, thank you four time and support.<br>Talk soon,</p><p style=\"margin:0px\">Rick<br> </p><p style=\"margin:0px\"> </p><div><p style=\"margin:0px\">&quot;Elizabeth Perkins&quot; <a href=\"mailto:liz@brandysmoldandtool.com\" target=\"_blank\">liz@brandysmoldandtool.com</a> – September 3, 2025 7:02 AM<br> </p><blockquote><p style=\"margin:0px\"><span style=\"color:rgb(255,255,255)\">Rick @ Brandy&#39;s Mold &amp; Tool</span></p><p style=\"margin:0px\">Join with Google Meet – You have been invited by Elizabeth Perkins to attend an event named Rick @ Brandy&#39;s Mold &amp; Tool on Tuesday Sep 9, 2025 ⋅ 9:30am – 10:30am (Eastern Time - New York).</p><p style=\"margin:0px;text-align:center\"><span style=\"color:rgb(255,255,255)\"><strong>Join with Google Meet</strong></span></p><h2><strong>Meeting link</strong></h2><p style=\"margin:0px\"><a href=\"https://meet.google.com/xsy-qgfb-vsw?hs=224\" target=\"_blank\">meet.google.com/xsy-qgfb-vsw</a></p><h2><strong>Join by phone</strong></h2><p style=\"margin:0px\"><span style=\"color:rgb(112,117,122)\">(US) </span>+1 256-581-5451 <br><span style=\"color:rgb(112,117,122)\">PIN: 110699023</span><br><br><a href=\"https://tel.meet/xsy-qgfb-vsw?pin=5734612760330&amp;hs=0\" target=\"_blank\">More phone numbers</a><br> </p><h2><strong>When</strong></h2><p style=\"margin:0px\">Tuesday Sep 9, 2025 ⋅ 9:30am – 10:30am (Eastern Time - New York)</p><h2><strong>Location</strong></h2><p style=\"margin:0px\"><span style=\"color:rgb(60,64,67)\">Brandy&#39;s Mold &amp; Tool Center Ltd, 10 Riverton Way, West Henrietta, NY 14586, USA</span><br><a href=\"https://www.google.com/maps/search/Brandy%27s+Mold+%26+Tool+Center+Ltd,+10+Riverton+Way,+West+Henrietta,+NY+14586,+USA?hl=en\" target=\"_blank\"><strong>View map</strong></a></p><h2><strong>Guests</strong></h2><p style=\"margin:0px\"><a href=\"http:///apps/mail/mailto?to=liz@brandysmoldandtool.com\" target=\"_blank\">Elizabeth Perkins</a><span style=\"color:rgb(112,117,122)\"> - organizer</span></p><p style=\"margin:0px\"><a href=\"http:///apps/mail/mailto?to=rick@mavrix.one\" target=\"_blank\">rick@mavrix.one</a></p><p style=\"margin:0px\"><a href=\"http:///apps/mail/mailto?to=mperkins.brandys@frontiernet.net\" target=\"_blank\">mperkins.brandys@frontiernet.net</a></p><p style=\"margin:0px\"><a href=\"http:///apps/mail/mailto?to=brandys@frontiernet.net\" target=\"_blank\">brandys@frontiernet.net</a></p><p style=\"margin:0px\"><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=MTU0ODFiYmg2cDdqYnVsa2JkZmJjczJ1MW0gcmlja0BtYXZyaXgub25l&amp;tok=MjYjbGl6QGJyYW5keXNtb2xkYW5kdG9vbC5jb20xZTBiMWY5YmJhZDk1Mjk5NDAxMmYwZTBmNjRlM2UzZmZkYjIzMTE0&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" target=\"_blank\"><strong>View all guest info</strong></a></p><p style=\"margin:0px\"><strong>Reply</strong><span style=\"color:rgb(112,117,122)\"> for </span><a href=\"http:///apps/mail/mailto?to=rick@mavrix.one\" target=\"_blank\"><span style=\"color:rgb(112,117,122)\">rick@mavrix.one</span></a></p><p style=\"margin:0px;text-align:center\"><span style=\"color:rgb(95,99,104)\">Yes</span></p><p style=\"margin:0px;text-align:center\"><span style=\"color:rgb(95,99,104)\">No</span></p><p style=\"margin:0px;text-align:center\"><span style=\"color:rgb(95,99,104)\">Maybe</span></p><p style=\"margin:0px;text-align:center\"><span style=\"color:rgb(95,99,104)\">More options</span></p><p style=\"margin:0px\">Invitation from <a href=\"https://calendar.google.com/calendar/\" target=\"_blank\">Google Calendar</a></p><p style=\"margin:0px\">You are receiving this email because you are an attendee on the event.</p><p style=\"margin:0px\">Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a href=\"https://support.google.com/calendar/answer/37135#forwarding\" target=\"_blank\">Learn more</a></p></blockquote></div>\r\n</div>\r\n</blockquote></div>','Rick,\r\n\r\nWe appreciate you taking the time to come in and really valued the\r\nconversation. Hearing about your plans and vision left us excited about\r\nwhat you and your team are building, and it’s clear you have something\r\ngreat in motion!\r\n\r\nWe’d love to stay connected as things progress. I will be reaching out once\r\nI am in St. Petersburg, and in the meantime if there is anything we can do\r\nto support you along the way please don’t hesitate to reach out.\r\n\r\nLooking forward to keeping the momentum going!\r\n\r\n\r\n*Liz Perkins*\r\nVice President\r\n585-233-0566\r\n\r\n\r\n\r\nOn Wed, Sep 10, 2025 at 12:02 PM Rick Mislan <rick@mavrix.one> wrote:\r\n\r\n> Hi all,\r\n> Thanks again for taking your time to further introduce the team, talent,\r\n> and opportunities at Brandy\'s. Absolutely appreciated that and the coffee!\r\n> That said, reception from my CEO was very positive and once we get over a\r\n> few current hurdles, I\'ll be reconnecting for some next steps and ideas.\r\n> Again, thank you four time and support.\r\n> Talk soon,\r\n>\r\n> Rick\r\n>\r\n>\r\n>\r\n>\r\n> \"Elizabeth Perkins\" liz@brandysmoldandtool.com – September 3, 2025 7:02 AM\r\n>\r\n>\r\n> Rick @ Brandy\'s Mold & Tool\r\n>\r\n> Join with Google Meet – You have been invited by Elizabeth Perkins to\r\n> attend an event named Rick @ Brandy\'s Mold & Tool on Tuesday Sep 9, 2025 ⋅\r\n> 9:30am – 10:30am (Eastern Time - New York).\r\n>\r\n> *Join with Google Meet*\r\n> *Meeting link*\r\n>\r\n> meet.google.com/xsy-qgfb-vsw <https://meet.google.com/xsy-qgfb-vsw?hs=224>\r\n> *Join by phone*\r\n>\r\n> (US) +1 256-581-5451\r\n> PIN: 110699023\r\n>\r\n> More phone numbers <https://tel.meet/xsy-qgfb-vsw?pin=5734612760330&hs=0>\r\n>\r\n> *When*\r\n>\r\n> Tuesday Sep 9, 2025 ⋅ 9:30am – 10:30am (Eastern Time - New York)\r\n> *Location*\r\n>\r\n> Brandy\'s Mold & Tool Center Ltd, 10 Riverton Way, West Henrietta, NY\r\n> 14586, USA\r\n> *View map*\r\n> <https://www.google.com/maps/search/Brandy%27s+Mold+%26+Tool+Center+Ltd,+10+Riverton+Way,+West+Henrietta,+NY+14586,+USA?hl=en>\r\n> *Guests*\r\n>\r\n> Elizabeth Perkins <http:///apps/mail/mailto?to=liz@brandysmoldandtool.com>\r\n> - organizer\r\n>\r\n> rick@mavrix.one <http:///apps/mail/mailto?to=rick@mavrix.one>\r\n>\r\n> mperkins.brandys@frontiernet.net\r\n> <http:///apps/mail/mailto?to=mperkins.brandys@frontiernet.net>\r\n>\r\n> brandys@frontiernet.net\r\n> <http:///apps/mail/mailto?to=brandys@frontiernet.net>\r\n>\r\n> *View all guest info*\r\n> <https://calendar.google.com/calendar/event?action=VIEW&eid=MTU0ODFiYmg2cDdqYnVsa2JkZmJjczJ1MW0gcmlja0BtYXZyaXgub25l&tok=MjYjbGl6QGJyYW5keXNtb2xkYW5kdG9vbC5jb20xZTBiMWY5YmJhZDk1Mjk5NDAxMmYwZTBmNjRlM2UzZmZkYjIzMTE0&ctz=America%2FNew_York&hl=en&es=0>\r\n>\r\n> *Reply* for rick@mavrix.one <http:///apps/mail/mailto?to=rick@mavrix.one>\r\n>\r\n> Yes\r\n>\r\n> No\r\n>\r\n> Maybe\r\n>\r\n> More options\r\n>\r\n> Invitation from Google Calendar <https://calendar.google.com/calendar/>\r\n>\r\n> You are receiving this email because you are an attendee on the event.\r\n>\r\n> Forwarding this invitation could allow any recipient to send a response to\r\n> the organizer, be added to the guest list, invite others regardless of\r\n> their own invitation status, or modify your RSVP. Learn more\r\n> <https://support.google.com/calendar/answer/37135#forwarding>\r\n>\r\n>',0,0,0,0,0,0,'2025-09-11 12:56:05','2025-12-09 19:28:16','2025-12-09 19:28:16','2025-12-09 19:28:16',NULL,NULL,NULL),
(704,4,'<20250911140839.Horde.gpklmHIUou2g-dOLSN5onhR@mavrix1.aponte.to>',NULL,NULL,'Re: Tasking...','jason@mavrix.one','Jason Blick','Hi Rick,\r\n \r\nHere is the task spreadsheet for Phase Alpha of the motor line, with roughly the same formatting as the battery one. Let me know if this structure suffices for you and I can begin working on Phases Bravo - Echo. Also, do you think it would be a good idea to just host these documents in a centralized location and then share it with you and Tony? Maybe we could start building out a root folder for the Motors Division?\r\n \r\nRegards,\r\nJason\r\n \r\n\"Rick Mislan\" rick@mavrix.one – September 10, 2025 8:56 AM\r\n> Hi Jason, \r\n> I\'ve attached a spreadsheet I built for working on installing our battery lines, but titled it for our motor line install...\r\n> Can you give it a read and start working on creating the necessary tasks for phase 1?\r\n> If you want to continue planning out what you think you need beyond Phase 1, please do so.\r\n> Let me know if you have any questions.\r\n> Thanks!\r\n> Rick\r\n> \r\n>','Hi Rick,\r\n \r\nHere is the task spreadsheet for Phase Alpha of the motor line, with roughly the same formatting as the battery one. Let me know if this structure suffices for you and I can begin working on Phases Bravo - Echo. Also, do you think it would be a good idea to just host these documents in a centralized location and then share it with you and Tony? Maybe we could start building out a root folder for the Motors Division?\r\n \r\nRegards,\r\nJason\r\n \r\n\"Rick Mislan\" rick@mavrix.one – September 10, 2025 8:56 AM\r\n> Hi Jason, \r\n> I\'ve attached a spreadsheet I built for working on installing our battery lines, but titled it for our motor line install...\r\n> Can you give it a read and start working on creating the necessary tasks for phase 1?\r\n> If you want to continue planning out what you think you need beyond Phase 1, please do so.\r\n> Let me know if you have any questions.\r\n> Thanks!\r\n> Rick\r\n> \r\n>',0,0,0,0,0,0,'2025-09-11 14:08:39','2025-12-09 19:28:16','2025-12-09 19:28:16','2025-12-09 19:28:16',NULL,NULL,NULL),
(705,4,'<20250911144453.Horde.fKJq3_cSlWgCgrBEiGwZG6O@mavrix1.aponte.to>',NULL,NULL,'Re: Fwd: : Tasking...','tony@mavrix.one','Tony Aponte','<!DOCTYPE html>\r\n<html><meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\"><body>\r\n<p style=\"margin:0;\">Sure. </p><p style=\"margin:0;\"> </p><p style=\"margin:0;\">- T</p><p style=\"margin:0;\"> </p><div class=\"quote\"><p style=\"margin:0;\">\"Rick\" rick@mavrix.one – September 11, 2025 10:27 AM<br> </p><blockquote><p style=\"margin:0;\">Chat about this later?<br><br> </p><p style=\"margin:0;\"><br> </p><p style=\"margin:0;\">Rick Mislan, PhD, </p><p style=\"margin:0;\">Founder, CTO</p><p style=\"margin:0;\"><a href=\"http://mavrix1.com/\">mavrix1.com</a></p><p style=\"margin:0;\">CONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.</p><p style=\"margin:0;\">On September 11, 2025 at 10:08:39 AM, Jason Blick (<a href=\"/apps/mail/mailto?to=jason@mavrix.one\">jason@mavrix.one</a>) wrote:</p><blockquote><p style=\"margin:0;\">Hi Rick, <br>  <br>Here is the task spreadsheet for Phase Alpha of the motor line, with roughly the same formatting as the battery one. Let me know if this structure suffices for you and I can begin working on Phases Bravo - Echo. Also, do you think it would be a good idea to just host these documents in a centralized location and then share it with you and Tony? Maybe we could start building out a root folder for the Motors Division? <br>  <br>Regards, <br>Jason <br>  <br>\"Rick Mislan\" <a href=\"/apps/mail/mailto?to=rick@mavrix.one\">rick@mavrix.one</a> – September 10, 2025 8:56 AM <br> </p><blockquote><p style=\"margin:0;\">Hi Jason,  <br>I\'ve attached a spreadsheet I built for working on installing our battery lines, but titled it for our motor line install... <br>Can you give it a read and start working on creating the necessary tasks for phase 1? <br>If you want to continue planning out what you think you need beyond Phase 1, please do so. <br>Let me know if you have any questions. <br>Thanks! <br>Rick <br>  <br> </p></blockquote></blockquote></blockquote></div>\r\n</body></html>','Sure. \r\n \r\n- T\r\n \r\n\"Rick\" rick@mavrix.one – September 11, 2025 10:27 AM \r\n\r\n> Chat about this later? \r\n>  \r\n> Rick Mislan, PhD, \r\n> Founder, CTO\r\n> mavrix1.com\r\n> CONFIDENTIALITY NOTICE: This communication is confidential and intended\r\n> only for the intended recipient.  If you are not the intended recipient,\r\n> you may not copy, disclose, or distribute this message to anyone else;\r\n> any such actions may be unlawful. If you have received this\r\n> communication in error, please contact the sender of the message to\r\n> inform him or her of the error.\r\n> On September 11, 2025 at 10:08:39 AM, Jason Blick (jason@mavrix.one)\r\n> wrote:\r\n>\r\n>> Hi Rick,   Here is the task spreadsheet for Phase Alpha of the motor\r\n>> line, with roughly the same formatting as the battery one. Let me know\r\n>> if this structure suffices for you and I can begin working on Phases\r\n>> Bravo - Echo. Also, do you think it would be a good idea to just host\r\n>> these documents in a centralized location and then share it with you\r\n>> and Tony? Maybe we could start building out a root folder for the\r\n>> Motors Division?   Regards, Jason   \"Rick Mislan\" rick@mavrix.one\r\n–\r\n>> September 10, 2025 8:56 AM  \r\n>>\r\n>>> Hi Jason,  I\'ve attached a spreadsheet I built for working on\r\n>>> installing our battery lines, but titled it for our motor line\r\n>>> install... Can you give it a read and start working on creating the\r\n>>> necessary tasks for phase 1? If you want to continue planning out what\r\n>>> you think you need beyond Phase 1, please do so. Let me know if you\r\n>>> have any questions. Thanks! Rick    ',0,0,0,0,0,0,'2025-09-11 14:44:53','2025-12-09 19:28:16','2025-12-09 19:28:16','2025-12-09 19:28:16',NULL,NULL,NULL),
(706,4,'<20250911151439.Horde.d0IwtPQ031rwTPCrRJmeIar@mavrix1.aponte.to>',NULL,NULL,'Cancelled: Weekly HR Update - Rick/Leslie','leslie@mavrix.one','Leslie Staron','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\" style=\"-webkit-font-smoothing:antialiased;background:#fff!important\">\r\n<head>\r\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n	<meta name=\"viewport\" content=\"width=device-width\">\r\n	<title></title>\r\n	<style type=\"text/css\">@media only screen{html{min-height:100%;background:#fff}}@media only screen and (max-width:610px){table.body img{width:auto;height:auto}table.body center{min-width:0!important}table.body .container{width:95%!important}table.body .columns{height:auto!important;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:30px!important;padding-right:30px!important}th.small-12{display:inline-block!important;width:100%!important}table.menu{width:100%!important}table.menu td,table.menu th{width:auto!important;display:inline-block!important}table.menu.vertical td,table.menu.vertical th{display:block!important}table.menu[align=center]{width:auto!important}}</style>\r\n</head>\r\n<body style=\"-moz-box-sizing:border-box;-ms-text-size-adjust:100%;-webkit-box-sizing:border-box;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;margin:0;background:#fff!important;box-sizing:border-box;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;min-width:100%;padding:0;text-align:left;width:100%!important\">\r\n	<span class=\"preheader\" style=\"color:#F5F5F5;display:none!important;font-size:1px;line-height:1px;max-height:0;max-width:0;mso-hide:all!important;opacity:0;overflow:hidden;visibility:hidden\">\r\n	</span>\r\n	<table class=\"body\" style=\"-webkit-font-smoothing:antialiased;margin:0;background:#fff;border-collapse:collapse;border-spacing:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n		<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n			<td class=\"center\" align=\"center\" valign=\"top\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n				<center data-parsed=\"\" style=\"min-width:580px;width:100%\"><table align=\"center\" class=\"wrapper header float-center\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:20px;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:0 0;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:150px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n						<table class=\"row collapse\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n							<tbody>\r\n							<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n								<center data-parsed=\"\" style=\"background-color:#00679e;min-width:175px;max-height:175px; padding:35px 0px;border-radius:200px\">\r\n									<img class=\"logo float-center\" src=\"https://mavrix1.aponte.to/apps/theming/image/logo?useSvg=0&amp;v=9\" alt=\"Mavrix1\" align=\"center\" style=\"-ms-interpolation-mode:bicubic;clear:both;display:block;float:none;margin:0 auto;outline:0;text-align:center;text-decoration:none;max-height:105px;max-width:105px;width:auto;height:auto\" width=\"105\" height=\"22\">\r\n								</center>\r\n							</tr>\r\n							</tbody>\r\n						</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"40px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:80px;font-weight:400;hyphens:auto;line-height:80px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"container main-heading float-center\" style=\"Margin:0 auto;background:0 0!important;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:580px\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<h1 class=\"text-center\" style=\"Margin:0;Margin-bottom:10px;color:inherit;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:24px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:center;word-wrap:normal\">\"Weekly HR Update - Rick/Leslie\" has been canceled</h1>\r\n		</td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"36px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:40px;font-weight:400;hyphens:auto;line-height:36px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"wrapper content float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:580px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/title.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Title:</em><br><span style=\"text-decoration: line-through\">Weekly HR Update - Rick/Leslie</span></p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/time.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">When:</em><br><span style=\"text-decoration: line-through\">Every Week on Thursday between 10:00 AM - 11:00 AM (America/New_York)</span></p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/location.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Location:</em><br><span style=\"text-decoration: line-through\">Leslie will call Rick</span></p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/description.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Description:</em><br><span style=\"text-decoration: line-through\">Rick - Now that we have calendar access, I\'m setting up a recurring weekly call for us.  Feel free to reschedule to a time that suits your schedule as necessary.  Not expecting to need a full hour each week, but blocking the time just in case.\r\n\r\nLooking forward to our first call,\r\nLeslie</span></p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table><table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"60px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:60px;font-weight:400;hyphens:auto;line-height:60px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"wrapper footer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<center data-parsed=\"\" style=\"min-width:580px;width:100%\">\r\n				<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n					<tbody>\r\n					<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n						<td height=\"15px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:15px;font-weight:400;hyphens:auto;line-height:15px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n					</tr>\r\n					</tbody>\r\n				</table>\r\n				<p class=\"text-center float-center\" align=\"center\" style=\"Margin:0;Margin-bottom:10px;color:#C8C8C8;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:10px;padding:0;text-align:center\">Mavrix1 - Manufacturing American Autonomy<br>This is an automatically sent email, please do not reply.</p>\r\n			</center>\r\n		</td>\r\n	</tr>\r\n</table>					</center>\r\n				</td>\r\n			</tr>\r\n		</table>\r\n		<!-- prevent Gmail on iOS font size manipulation -->\r\n		<div style=\"display:none;white-space:nowrap;font:15px courier;line-height:0\">                                                           </div>\r\n	</body>\r\n</html>','\"Weekly HR Update - Rick/Leslie\" has been canceled\r\n\r\n         Title: Weekly HR Update - Rick/Leslie\r\n          When: Every Week on Thursday between 10:00 AM - 11:00 AM (America/New_York)\r\n      Location: Leslie will call Rick\r\n   Description: Rick - Now that we have calendar access, I\'m setting up a recurring weekly call for us.  Feel free to reschedule to a time that suits your schedule as necessary.  Not expecting to need a full hour each week, but blocking the time just in case.\r\n                \r\n                Looking forward to our first call,\r\n                Leslie\r\n\r\n-- \r\nMavrix1 - Manufacturing American Autonomy\r\nThis is an automatically sent email, please do not reply.',0,0,0,0,0,0,'2025-09-11 15:14:39','2025-12-09 19:28:17','2025-12-09 19:28:17','2025-12-09 19:28:17',NULL,NULL,NULL),
(707,4,'<20250911151652.Horde.TBSqDi_ue-HAt4_-zbZnlVM@mavrix1.aponte.to>',NULL,NULL,'Invitation: Weekly HR Update - Rick/Leslie','leslie@mavrix.one','Leslie Staron','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\" style=\"-webkit-font-smoothing:antialiased;background:#fff!important\">\r\n<head>\r\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n	<meta name=\"viewport\" content=\"width=device-width\">\r\n	<title></title>\r\n	<style type=\"text/css\">@media only screen{html{min-height:100%;background:#fff}}@media only screen and (max-width:610px){table.body img{width:auto;height:auto}table.body center{min-width:0!important}table.body .container{width:95%!important}table.body .columns{height:auto!important;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:30px!important;padding-right:30px!important}th.small-12{display:inline-block!important;width:100%!important}table.menu{width:100%!important}table.menu td,table.menu th{width:auto!important;display:inline-block!important}table.menu.vertical td,table.menu.vertical th{display:block!important}table.menu[align=center]{width:auto!important}}</style>\r\n</head>\r\n<body style=\"-moz-box-sizing:border-box;-ms-text-size-adjust:100%;-webkit-box-sizing:border-box;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;margin:0;background:#fff!important;box-sizing:border-box;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;min-width:100%;padding:0;text-align:left;width:100%!important\">\r\n	<span class=\"preheader\" style=\"color:#F5F5F5;display:none!important;font-size:1px;line-height:1px;max-height:0;max-width:0;mso-hide:all!important;opacity:0;overflow:hidden;visibility:hidden\">\r\n	</span>\r\n	<table class=\"body\" style=\"-webkit-font-smoothing:antialiased;margin:0;background:#fff;border-collapse:collapse;border-spacing:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n		<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n			<td class=\"center\" align=\"center\" valign=\"top\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n				<center data-parsed=\"\" style=\"min-width:580px;width:100%\"><table align=\"center\" class=\"wrapper header float-center\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:20px;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:0 0;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:150px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n						<table class=\"row collapse\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n							<tbody>\r\n							<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n								<center data-parsed=\"\" style=\"background-color:#00679e;min-width:175px;max-height:175px; padding:35px 0px;border-radius:200px\">\r\n									<img class=\"logo float-center\" src=\"https://mavrix1.aponte.to/apps/theming/image/logo?useSvg=0&amp;v=9\" alt=\"Mavrix1\" align=\"center\" style=\"-ms-interpolation-mode:bicubic;clear:both;display:block;float:none;margin:0 auto;outline:0;text-align:center;text-decoration:none;max-height:105px;max-width:105px;width:auto;height:auto\" width=\"105\" height=\"22\">\r\n								</center>\r\n							</tr>\r\n							</tbody>\r\n						</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"40px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:80px;font-weight:400;hyphens:auto;line-height:80px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"container main-heading float-center\" style=\"Margin:0 auto;background:0 0!important;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:580px\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<h1 class=\"text-center\" style=\"Margin:0;Margin-bottom:10px;color:inherit;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:24px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:center;word-wrap:normal\">Leslie Staron would like to invite you to \"Weekly HR Update - Rick/Leslie\"</h1>\r\n		</td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"36px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:40px;font-weight:400;hyphens:auto;line-height:36px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"wrapper content float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:580px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/title.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Title:</em><br>Weekly HR Update - Rick/Leslie</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/time.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">When:</em><br>Every Week on Thursday between 10:00 AM - 11:00 AM (America/New_York)</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/location.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Location:</em><br>Leslie will Call</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/time.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Occurring:</em><br>In 6 days on September 18, 2025 then on September 25, 2025 and October 2, 2025</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/description.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Description:</em><br>Rick - Now that we have calendar access, I\'m setting up a recurring weekly call for us. Feel free to reschedule to a time that suits your schedule as necessary. Not expecting to need a full hour each week, but blocking the time just in case. Looking forward to our first call, Leslie</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"spacer\" style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"50px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:50px;font-weight:400;hyphens:auto;line-height:50px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"row btn-group\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<center data-parsed=\"\" style=\"min-width:490px;width:100%\">\r\n							<!--[if (gte mso 9)|(IE)]>\r\n							<table>\r\n								<tr>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default primary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;margin:0 0 30px 0;margin-right:15px;border-radius:8px;max-width:300px;padding:0;text-align:center;vertical-align:top;width:auto;background:#00679e;background-color:#00679e;color:#fefefe;\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #00679e;border-collapse:collapse!important;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/accept/2emz6T3kAdrtghuSqWCgbKFxOy8n5iCLnj40A9jLaA3FfcfS8dGvJuqxQCuN\" style=\"Margin:0;border:0 solid #00679e;color:#ffffff;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;padding:8px;text-align:left;outline:1px solid #ffffff;text-decoration:none\">Accept</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default secondary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;background-color: #ccc;margin:0 0 30px 0;max-height:40px;max-width:300px;padding:1px;border-radius:8px;text-align:center;vertical-align:top;width:auto\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #777;border-collapse:collapse!important;color:#fefefe;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/decline/2emz6T3kAdrtghuSqWCgbKFxOy8n5iCLnj40A9jLaA3FfcfS8dGvJuqxQCuN\" style=\"Margin:0;background-color:#fff;border:0 solid #777;color:#6C6C6C!important;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;border-radius: 7px;padding:8px;text-align:left;text-decoration:none\">Decline</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n								</tr>\r\n							</table>\r\n							<![endif]-->\r\n						</center>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;text-align:center\"><small><a href=\"https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/2emz6T3kAdrtghuSqWCgbKFxOy8n5iCLnj40A9jLaA3FfcfS8dGvJuqxQCuN\">More options …</a></small></p>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table><table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"60px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:60px;font-weight:400;hyphens:auto;line-height:60px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"wrapper footer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<center data-parsed=\"\" style=\"min-width:580px;width:100%\">\r\n				<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n					<tbody>\r\n					<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n						<td height=\"15px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:15px;font-weight:400;hyphens:auto;line-height:15px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n					</tr>\r\n					</tbody>\r\n				</table>\r\n				<p class=\"text-center float-center\" align=\"center\" style=\"Margin:0;Margin-bottom:10px;color:#C8C8C8;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:10px;padding:0;text-align:center\">Mavrix1 - Manufacturing American Autonomy<br>This is an automatically sent email, please do not reply.</p>\r\n			</center>\r\n		</td>\r\n	</tr>\r\n</table>					</center>\r\n				</td>\r\n			</tr>\r\n		</table>\r\n		<!-- prevent Gmail on iOS font size manipulation -->\r\n		<div style=\"display:none;white-space:nowrap;font:15px courier;line-height:0\">                                                           </div>\r\n	</body>\r\n</html>','Leslie Staron would like to invite you to \"Weekly HR Update - Rick/Leslie\"\r\n\r\n         Title: Weekly HR Update - Rick/Leslie\r\n          When: Every Week on Thursday between 10:00 AM - 11:00 AM (America/New_York)\r\n      Location: Leslie will Call\r\n     Occurring: In 6 days on September 18, 2025 then on September 25, 2025 and October 2, 2025\r\n   Description: Rick - Now that we have calendar access, I\'m setting up a recurring weekly call for us. Feel free to reschedule to a time that suits your schedule as necessary. Not expecting to need a full hour each week, but blocking the time just in case. Looking forward to our first call, Leslie\r\n\r\nAccept: https://mavrix1.aponte.to/apps/dav/invitation/accept/2emz6T3kAdrtghuSqWCgbKFxOy8n5iCLnj40A9jLaA3FfcfS8dGvJuqxQCuN\r\nDecline: https://mavrix1.aponte.to/apps/dav/invitation/decline/2emz6T3kAdrtghuSqWCgbKFxOy8n5iCLnj40A9jLaA3FfcfS8dGvJuqxQCuN\r\n\r\nMore options at https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/2emz6T3kAdrtghuSqWCgbKFxOy8n5iCLnj40A9jLaA3FfcfS8dGvJuqxQCuN\r\n\r\n\r\n-- \r\nMavrix1 - Manufacturing American Autonomy\r\nThis is an automatically sent email, please do not reply.',0,0,0,0,0,0,'2025-09-11 15:16:52','2025-12-09 19:28:17','2025-12-09 19:28:17','2025-12-09 19:28:17',NULL,NULL,NULL),
(708,4,'<20250911162030.Horde.ikS3iH9MmCCvkzfswGSfxV8@mavrix1.aponte.to>',NULL,NULL,'Invitation: Special Ops:  Weekly SitRep','leslie@mavrix.one','Leslie Staron','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\" style=\"-webkit-font-smoothing:antialiased;background:#fff!important\">\r\n<head>\r\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n	<meta name=\"viewport\" content=\"width=device-width\">\r\n	<title></title>\r\n	<style type=\"text/css\">@media only screen{html{min-height:100%;background:#fff}}@media only screen and (max-width:610px){table.body img{width:auto;height:auto}table.body center{min-width:0!important}table.body .container{width:95%!important}table.body .columns{height:auto!important;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:30px!important;padding-right:30px!important}th.small-12{display:inline-block!important;width:100%!important}table.menu{width:100%!important}table.menu td,table.menu th{width:auto!important;display:inline-block!important}table.menu.vertical td,table.menu.vertical th{display:block!important}table.menu[align=center]{width:auto!important}}</style>\r\n</head>\r\n<body style=\"-moz-box-sizing:border-box;-ms-text-size-adjust:100%;-webkit-box-sizing:border-box;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;margin:0;background:#fff!important;box-sizing:border-box;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;min-width:100%;padding:0;text-align:left;width:100%!important\">\r\n	<span class=\"preheader\" style=\"color:#F5F5F5;display:none!important;font-size:1px;line-height:1px;max-height:0;max-width:0;mso-hide:all!important;opacity:0;overflow:hidden;visibility:hidden\">\r\n	</span>\r\n	<table class=\"body\" style=\"-webkit-font-smoothing:antialiased;margin:0;background:#fff;border-collapse:collapse;border-spacing:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n		<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n			<td class=\"center\" align=\"center\" valign=\"top\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n				<center data-parsed=\"\" style=\"min-width:580px;width:100%\"><table align=\"center\" class=\"wrapper header float-center\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:20px;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:0 0;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:150px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n						<table class=\"row collapse\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n							<tbody>\r\n							<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n								<center data-parsed=\"\" style=\"background-color:#00679e;min-width:175px;max-height:175px; padding:35px 0px;border-radius:200px\">\r\n									<img class=\"logo float-center\" src=\"https://mavrix1.aponte.to/apps/theming/image/logo?useSvg=0&amp;v=9\" alt=\"Mavrix1\" align=\"center\" style=\"-ms-interpolation-mode:bicubic;clear:both;display:block;float:none;margin:0 auto;outline:0;text-align:center;text-decoration:none;max-height:105px;max-width:105px;width:auto;height:auto\" width=\"105\" height=\"22\">\r\n								</center>\r\n							</tr>\r\n							</tbody>\r\n						</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"40px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:80px;font-weight:400;hyphens:auto;line-height:80px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"container main-heading float-center\" style=\"Margin:0 auto;background:0 0!important;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:580px\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<h1 class=\"text-center\" style=\"Margin:0;Margin-bottom:10px;color:inherit;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:24px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:center;word-wrap:normal\">Leslie Staron would like to invite you to \"Special Ops:  Weekly SitRep\"</h1>\r\n		</td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"36px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:40px;font-weight:400;hyphens:auto;line-height:36px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"wrapper content float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:580px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/title.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Title:</em><br>Special Ops:  Weekly SitRep</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/time.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">When:</em><br>Every Week on Friday between 2:00 PM - 2:30 PM (America/New_York)</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/location.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Location:</em><br>Signal:  https://signal.link/call/#key=bgbx-xtdt-hdnm-cndc-kknr-chxr-btxk-gpnx</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/time.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Occurring:</em><br>In a day on September 12, 2025 then on September 19, 2025 and September 26, 2025</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/description.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Description:</em><br>Leadership sync ahead of weekly Mavrix1 Team meeting to ensure unified alignment and communication.</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"spacer\" style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"50px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:50px;font-weight:400;hyphens:auto;line-height:50px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"row btn-group\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<center data-parsed=\"\" style=\"min-width:490px;width:100%\">\r\n							<!--[if (gte mso 9)|(IE)]>\r\n							<table>\r\n								<tr>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default primary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;margin:0 0 30px 0;margin-right:15px;border-radius:8px;max-width:300px;padding:0;text-align:center;vertical-align:top;width:auto;background:#00679e;background-color:#00679e;color:#fefefe;\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #00679e;border-collapse:collapse!important;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/accept/kYozoPUiOVII5Dvy03PxB7LaEMLx9yNaYdu87S15I2TXTRlvnxtz2gjjtPXP\" style=\"Margin:0;border:0 solid #00679e;color:#ffffff;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;padding:8px;text-align:left;outline:1px solid #ffffff;text-decoration:none\">Accept</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default secondary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;background-color: #ccc;margin:0 0 30px 0;max-height:40px;max-width:300px;padding:1px;border-radius:8px;text-align:center;vertical-align:top;width:auto\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #777;border-collapse:collapse!important;color:#fefefe;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/decline/kYozoPUiOVII5Dvy03PxB7LaEMLx9yNaYdu87S15I2TXTRlvnxtz2gjjtPXP\" style=\"Margin:0;background-color:#fff;border:0 solid #777;color:#6C6C6C!important;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;border-radius: 7px;padding:8px;text-align:left;text-decoration:none\">Decline</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n								</tr>\r\n							</table>\r\n							<![endif]-->\r\n						</center>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;text-align:center\"><small><a href=\"https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/kYozoPUiOVII5Dvy03PxB7LaEMLx9yNaYdu87S15I2TXTRlvnxtz2gjjtPXP\">More options …</a></small></p>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table><table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"60px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:60px;font-weight:400;hyphens:auto;line-height:60px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"wrapper footer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<center data-parsed=\"\" style=\"min-width:580px;width:100%\">\r\n				<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n					<tbody>\r\n					<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n						<td height=\"15px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:15px;font-weight:400;hyphens:auto;line-height:15px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n					</tr>\r\n					</tbody>\r\n				</table>\r\n				<p class=\"text-center float-center\" align=\"center\" style=\"Margin:0;Margin-bottom:10px;color:#C8C8C8;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:10px;padding:0;text-align:center\">Mavrix1 - Manufacturing American Autonomy<br>This is an automatically sent email, please do not reply.</p>\r\n			</center>\r\n		</td>\r\n	</tr>\r\n</table>					</center>\r\n				</td>\r\n			</tr>\r\n		</table>\r\n		<!-- prevent Gmail on iOS font size manipulation -->\r\n		<div style=\"display:none;white-space:nowrap;font:15px courier;line-height:0\">                                                           </div>\r\n	</body>\r\n</html>','Leslie Staron would like to invite you to \"Special Ops:  Weekly SitRep\"\r\n\r\n         Title: Special Ops:  Weekly SitRep\r\n          When: Every Week on Friday between 2:00 PM - 2:30 PM (America/New_York)\r\n      Location: Signal:  https://signal.link/call/#key=bgbx-xtdt-hdnm-cndc-kknr-chxr-btxk-gpnx\r\n     Occurring: In a day on September 12, 2025 then on September 19, 2025 and September 26, 2025\r\n   Description: Leadership sync ahead of weekly Mavrix1 Team meeting to ensure unified alignment and communication.\r\n\r\nAccept: https://mavrix1.aponte.to/apps/dav/invitation/accept/kYozoPUiOVII5Dvy03PxB7LaEMLx9yNaYdu87S15I2TXTRlvnxtz2gjjtPXP\r\nDecline: https://mavrix1.aponte.to/apps/dav/invitation/decline/kYozoPUiOVII5Dvy03PxB7LaEMLx9yNaYdu87S15I2TXTRlvnxtz2gjjtPXP\r\n\r\nMore options at https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/kYozoPUiOVII5Dvy03PxB7LaEMLx9yNaYdu87S15I2TXTRlvnxtz2gjjtPXP\r\n\r\n\r\n-- \r\nMavrix1 - Manufacturing American Autonomy\r\nThis is an automatically sent email, please do not reply.',0,0,0,0,0,0,'2025-09-11 16:20:30','2025-12-09 19:28:17','2025-12-09 19:28:17','2025-12-09 19:28:17',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(709,4,'<816868cafc4cf85be5c0b4b015800136@mavrix.one>',NULL,NULL,'Forge Nano','jordan@mavrix.one','jordan@mavrix.one','<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" /></head><body style=\'font-size: 10pt; font-family: Verdana,Geneva,sans-serif\'>\r\n<div class=\"pre\" style=\"margin: 0; padding: 0; font-family: monospace\"><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Hello Team,</span></div>\r\n<div class=\"pre\" style=\"margin: 0; padding: 0; font-family: monospace\">&nbsp;</div>\r\n<div class=\"pre\" style=\"margin: 0; padding: 0; font-family: monospace\"><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">I just had a conversation with a senior executive involved with Forge Nano, a US based lithium -ion battery cell manufacturing company.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Executive Summary:</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Daniel Sheridan and Jordan Wroblewski discussed supply chain solutions, domestic battery manufacturing, and partnership opportunities to boost U.S.-based lithium battery cell and pack production for defense and commercial customers, emphasizing American ownership and independence from China.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Key Takeaways</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Forge Nano&rsquo;s Position &amp; Plans:</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Forge Nano has secured $100M from the DOE and is building a 3 GW gigafactory in Raleigh, NC, with plans for additional U.S. lithium cell production, especially 18650s and 21700s.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">They will maintain their existing 400 MW pilot line in Thornton, Colorado, which has been operational for several years and is critical for early-stage production and de-risking scale-up.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Utilizing proprietary atomic layer deposition (Atomic Armor), Forge Nano&rsquo;s technology offers superior battery performance and tunability.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Strategy: Focused on full U.S.-based manufacturing and supply chain security, especially for defense (DoD/Blue UAS) applications.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Daniel Sheridan\'s Background:</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Daniel Sheridan has deep expertise in the U.S. defense industrial base, having previously served as a senior defense industrial base expert at the Pentagon.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">He helped establish the Pentagon&rsquo;s foreign investment team, specifically to ensure U.S. defense supply chain resilience and secure critical manufacturing capabilities.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Drones and Motors Discussion:</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Daniel highlighted that a key motivation for these domestic battery manufacturing efforts is to secure the supply chain for U.S. drones and motors.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">There is a significant national security focus on producing batteries and motors domestically for drones, ensuring readiness and capability in times of crisis.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Daniel emphasized that currently, U.S. defense faces risks due to foreign dependency in critical areas such as drone power and propulsion, and this partnership directly targets closing those gaps.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Collaboration Opportunities:</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Mutual Need: Forge Nano requires a U.S.-based pack partner and is seeking to align with companies similarly committed to American manufacturing, especially for government/DoD clients.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Both parties expressed explicit interest in forming a throughput multi-year contract to lock in capacity, support scaling efforts, and provide predictability for investment and growth.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Facility/FTZ/Rail access at LBC aligns with Forge Nano&rsquo;s expansion plans in NC.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Both are committed to zero Chinese investment and reinforcing the U.S. supply chain for critical defense applications.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Action Items &amp; Next Steps:</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Forge Nano to discuss strategic alignment and possibly expedite further partnership; Daniel will update after board meeting (1&ndash;1.5 weeks).</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">LBC to send a capability statement to Daniel Sheridan.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Consider site visits, technical deep dives (Forge Nano CTO &harr; LBC tech leads), and engagement on public-private scaling via potential reindustrialization partnerships.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Both parties to keep open for collaboration on future pilot lines, recycling, pouch lines, and specialized battery tech.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Strategic Impact:</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">U.S. Battery Sovereignty: This alliance directly addresses government and defense imperatives for secure, scalable American battery manufacturing, especially for drone and motor use cases.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Growth Trajectory: The partnership could accelerate both organizations&rsquo; paths to 3&ndash;5 GW+ annual production capacity, with multi-year throughput agreements locking in long-term revenue and operational stability.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Market Position: Early, trusted partnerships with U.S. cell manufacturers position LBC as the go-to for Pack solutions in key U.S. federal programs.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Recommendations:</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Prioritize rapid engagement and detailed negotiation of multi-year throughput agreements with Forge Nano.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Prepare for joint demonstration/pilot opportunities, especially in DoD, UAS, and Second Life/recycling sectors.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Mobilize executive contacts and leverage public-private partnerships for capital and government relations support.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">This partnership sets the stage for true American battery supply chain independence and high-value government/industrial contracts, with a special emphasis on drone and motor applications critical to U.S. defense readiness and long-term supply continuity secured by the contemplated throughput contract.</span>\r\n<div style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">&nbsp;</div>\r\n<div style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">As soon as I have the meeting set with their team in the next 1-1.5 weeks I will let you know to get you involved.&nbsp;&nbsp;</div>\r\n<br /><br />\r\n<div id=\"signature\">-- <br />\r\n<div><span style=\"font-family: Helvetica, Arial;\">Jordan Wroblewski</span>\r\n<div style=\"font-family: Helvetica, Arial;\">VP, Business Development</div>\r\n<div style=\"font-family: Helvetica, Arial;\"><img class=\"v1imgAttach\" src=\"cid:cfb52ec99425c7b39e6e4fef81d8aac3@mavrix.one\" /></div>\r\n<div style=\"font-family: Helvetica, Arial;\"><a style=\"color: #00acff; background-color: transparent;\" href=\"http://mavrix1.com/\" rel=\"noopener noreferrer\">mavrix1.com</a></div>\r\n</div>\r\n<div>&nbsp;</div>\r\n</div>\r\n</div>\r\n</body></html>','Hello Team,\r\n\r\nI just had a conversation with a senior executive involved with Forge \r\nNano, a US based lithium -ion battery cell manufacturing company.\r\n\r\nExecutive Summary:\r\n\r\nDaniel Sheridan and Jordan Wroblewski discussed supply chain solutions, \r\ndomestic battery manufacturing, and partnership opportunities to boost \r\nU.S.-based lithium battery cell and pack production for defense and \r\ncommercial customers, emphasizing American ownership and independence \r\nfrom China.\r\n\r\nKey Takeaways\r\n\r\nForge Nano\'s Position & Plans:\r\n\r\nForge Nano has secured $100M from the DOE and is building a 3 GW \r\ngigafactory in Raleigh, NC, with plans for additional U.S. lithium cell \r\nproduction, especially 18650s and 21700s.\r\nThey will maintain their existing 400 MW pilot line in Thornton, \r\nColorado, which has been operational for several years and is critical \r\nfor early-stage production and de-risking scale-up.\r\nUtilizing proprietary atomic layer deposition (Atomic Armor), Forge \r\nNano\'s technology offers superior battery performance and tunability.\r\nStrategy: Focused on full U.S.-based manufacturing and supply chain \r\nsecurity, especially for defense (DoD/Blue UAS) applications.\r\n\r\nDaniel Sheridan\'s Background:\r\n\r\nDaniel Sheridan has deep expertise in the U.S. defense industrial base, \r\nhaving previously served as a senior defense industrial base expert at \r\nthe Pentagon.\r\nHe helped establish the Pentagon\'s foreign investment team, specifically \r\nto ensure U.S. defense supply chain resilience and secure critical \r\nmanufacturing capabilities.\r\n\r\nDrones and Motors Discussion:\r\n\r\nDaniel highlighted that a key motivation for these domestic battery \r\nmanufacturing efforts is to secure the supply chain for U.S. drones and \r\nmotors.\r\nThere is a significant national security focus on producing batteries \r\nand motors domestically for drones, ensuring readiness and capability in \r\ntimes of crisis.\r\nDaniel emphasized that currently, U.S. defense faces risks due to \r\nforeign dependency in critical areas such as drone power and propulsion, \r\nand this partnership directly targets closing those gaps.\r\n\r\nCollaboration Opportunities:\r\n\r\nMutual Need: Forge Nano requires a U.S.-based pack partner and is \r\nseeking to align with companies similarly committed to American \r\nmanufacturing, especially for government/DoD clients.\r\nBoth parties expressed explicit interest in forming a throughput \r\nmulti-year contract to lock in capacity, support scaling efforts, and \r\nprovide predictability for investment and growth.\r\nFacility/FTZ/Rail access at LBC aligns with Forge Nano\'s expansion plans \r\nin NC.\r\nBoth are committed to zero Chinese investment and reinforcing the U.S. \r\nsupply chain for critical defense applications.\r\n\r\nAction Items & Next Steps:\r\n\r\nForge Nano to discuss strategic alignment and possibly expedite further \r\npartnership; Daniel will update after board meeting (1-1.5 weeks).\r\nLBC to send a capability statement to Daniel Sheridan.\r\nConsider site visits, technical deep dives (Forge Nano CTO ↔ LBC tech \r\nleads), and engagement on public-private scaling via potential \r\nreindustrialization partnerships.\r\nBoth parties to keep open for collaboration on future pilot lines, \r\nrecycling, pouch lines, and specialized battery tech.\r\n\r\nStrategic Impact:\r\n\r\nU.S. Battery Sovereignty: This alliance directly addresses government \r\nand defense imperatives for secure, scalable American battery \r\nmanufacturing, especially for drone and motor use cases.\r\nGrowth Trajectory: The partnership could accelerate both organizations\' \r\npaths to 3-5 GW+ annual production capacity, with multi-year throughput \r\nagreements locking in long-term revenue and operational stability.\r\nMarket Position: Early, trusted partnerships with U.S. cell \r\nmanufacturers position LBC as the go-to for Pack solutions in key U.S. \r\nfederal programs.\r\n\r\nRecommendations:\r\n\r\nPrioritize rapid engagement and detailed negotiation of multi-year \r\nthroughput agreements with Forge Nano.\r\nPrepare for joint demonstration/pilot opportunities, especially in DoD, \r\nUAS, and Second Life/recycling sectors.\r\nMobilize executive contacts and leverage public-private partnerships for \r\ncapital and government relations support.\r\n\r\nThis partnership sets the stage for true American battery supply chain \r\nindependence and high-value government/industrial contracts, with a \r\nspecial emphasis on drone and motor applications critical to U.S. \r\ndefense readiness and long-term supply continuity secured by the \r\ncontemplated throughput contract.\r\n\r\nAs soon as I have the meeting set with their team in the next 1-1.5 \r\nweeks I will let you know to get you involved.\r\n\r\n-- \r\nJordan Wroblewski\r\nVP, Business Development\r\n\r\nmavrix1.com [1]\r\n\r\n\r\nLinks:\r\n------\r\n[1] http://mavrix1.com/',0,0,0,0,0,0,'2025-09-11 20:23:30','2025-12-09 19:28:17','2025-12-09 19:28:17','2025-12-09 19:28:17',NULL,NULL,NULL),
(710,4,'<d4180b16661596354a0d444a75ce5d5b@mavrix.one>',NULL,NULL,'Ultion Technologies','jordan@mavrix.one','jordan@mavrix.one','<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" /></head><body style=\'font-size: 10pt; font-family: Verdana,Geneva,sans-serif\'>\r\n<div class=\"pre\" style=\"margin: 0; padding: 0; font-family: monospace\"><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Hello Team,</span></div>\r\n<div class=\"pre\" style=\"margin: 0; padding: 0; font-family: monospace\">&nbsp;</div>\r\n<div class=\"pre\" style=\"margin: 0; padding: 0; font-family: monospace\"><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">I spoke with Taylor Stoker, Co-Founder of Ultion, &nbsp;a U.S.-based lithium battery manufacturer with deep industry roots, technical credibility, and a distinctive business model focused on American-made cell technology.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif;\" /><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Company Background:</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif;\" /><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Founded as a spinoff from K2 Energy, Ultion retains all the technology, testing, and development expertise built over years in the sector.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">The leadership team, including Taylor Stoker and his family, has been involved in the battery industry for decades, starting with LFP (lithium iron phosphate) research and commercialization in the early 2000s.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Ultion&rsquo;s CEO (Taylor&rsquo;s father) led critical early work at Valence Technology and K2 Energy, giving them rare &ldquo;tribal knowledge&rdquo; and a proven, American-developed cell technology track record.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif;\" /><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Current Position &amp; Strategy:</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif;\" /><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Ultion specializes in cell manufacturing (not just packs); their core competency is U.S.-based, gigascale LFP cell production using technology fully developed and commercialized in North America.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">The company recently closed a Series A led by Taurus, enabling expansions in pack production for Taurus and accelerating construction of their domestic gigascale cell facility.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Until the new plant is fully operational, they supplement supply by working with select non-Chinese, American-friendly overseas cell manufacturers, some of whom license Ultion&rsquo;s legacy technology.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Ultion emphasizes rapid scale-up based on its in-house technology&mdash;unlike competitors that raise capital and plan large plants without proprietary tech.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif;\" /><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Distinctive Market Position:</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif;\" /><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Ultion is laser-focused on American supply chain sovereignty and can offer fully domestic processes in partnership with mining and processing leaders like First Phosphate.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">They see value in starting with pilot-scale pack production and quickly transferring that to more efficient, high-volume third-party manufacturing as customers scale up.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Unlike &ldquo;story-driven&rdquo; battery startups, Ultion keeps a low public profile until it has reached true shipping scale, prioritizing proven delivery over hype.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif;\" /><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">In summary, Ultion is a technically advanced, family-led, American battery cell manufacturer with proven LFP expertise, unique IP, and a business model built to rapidly scale U.S. production and supply chain independence.</span><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif;\" /><br style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif;\" /><span style=\"color: #222222; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">This meeting lays the foundation for a high-impact collaboration&mdash;combining Ultion&rsquo;s cell innovation and manufacturing expertise with Lithium Battery Co&rsquo;s pack assembly capabilities and regulatory know-how to deliver America&rsquo;s next-generation battery solutions.</span><br /><br />\r\n<div id=\"signature\">-- <br />\r\n<div><span style=\"font-family: Helvetica, Arial;\">Jordan Wroblewski</span>\r\n<div style=\"font-family: Helvetica, Arial;\">VP, Business Development</div>\r\n<div style=\"font-family: Helvetica, Arial;\"><img class=\"v1imgAttach\" src=\"cid:cfb52ec99425c7b39e6e4fef81d8aac3@mavrix.one\" /></div>\r\n<div style=\"font-family: Helvetica, Arial;\"><a style=\"color: #00acff; background-color: transparent;\" href=\"http://mavrix1.com/\" rel=\"noopener noreferrer\">mavrix1.com</a></div>\r\n</div>\r\n<div>&nbsp;</div>\r\n</div>\r\n</div>\r\n</body></html>','Hello Team,\r\n\r\nI spoke with Taylor Stoker, Co-Founder of Ultion,  a U.S.-based lithium \r\nbattery manufacturer with deep industry roots, technical credibility, \r\nand a distinctive business model focused on American-made cell \r\ntechnology.\r\n\r\nCompany Background:\r\n\r\nFounded as a spinoff from K2 Energy, Ultion retains all the technology, \r\ntesting, and development expertise built over years in the sector.\r\nThe leadership team, including Taylor Stoker and his family, has been \r\ninvolved in the battery industry for decades, starting with LFP (lithium \r\niron phosphate) research and commercialization in the early 2000s.\r\nUltion\'s CEO (Taylor\'s father) led critical early work at Valence \r\nTechnology and K2 Energy, giving them rare \"tribal knowledge\" and a \r\nproven, American-developed cell technology track record.\r\n\r\nCurrent Position & Strategy:\r\n\r\nUltion specializes in cell manufacturing (not just packs); their core \r\ncompetency is U.S.-based, gigascale LFP cell production using technology \r\nfully developed and commercialized in North America.\r\nThe company recently closed a Series A led by Taurus, enabling \r\nexpansions in pack production for Taurus and accelerating construction \r\nof their domestic gigascale cell facility.\r\nUntil the new plant is fully operational, they supplement supply by \r\nworking with select non-Chinese, American-friendly overseas cell \r\nmanufacturers, some of whom license Ultion\'s legacy technology.\r\nUltion emphasizes rapid scale-up based on its in-house \r\ntechnology--unlike competitors that raise capital and plan large plants \r\nwithout proprietary tech.\r\n\r\nDistinctive Market Position:\r\n\r\nUltion is laser-focused on American supply chain sovereignty and can \r\noffer fully domestic processes in partnership with mining and processing \r\nleaders like First Phosphate.\r\nThey see value in starting with pilot-scale pack production and quickly \r\ntransferring that to more efficient, high-volume third-party \r\nmanufacturing as customers scale up.\r\nUnlike \"story-driven\" battery startups, Ultion keeps a low public \r\nprofile until it has reached true shipping scale, prioritizing proven \r\ndelivery over hype.\r\n\r\nIn summary, Ultion is a technically advanced, family-led, American \r\nbattery cell manufacturer with proven LFP expertise, unique IP, and a \r\nbusiness model built to rapidly scale U.S. production and supply chain \r\nindependence.\r\n\r\nThis meeting lays the foundation for a high-impact \r\ncollaboration--combining Ultion\'s cell innovation and manufacturing \r\nexpertise with Lithium Battery Co\'s pack assembly capabilities and \r\nregulatory know-how to deliver America\'s next-generation battery \r\nsolutions.\r\n\r\n-- \r\nJordan Wroblewski\r\nVP, Business Development\r\n\r\nmavrix1.com [1]\r\n\r\n\r\nLinks:\r\n------\r\n[1] http://mavrix1.com/',0,0,0,0,0,0,'2025-09-11 20:26:35','2025-12-09 19:28:18','2025-12-09 19:28:18','2025-12-09 19:28:18',NULL,NULL,NULL),
(711,4,' <PH0P111MB2835C203C33D21A77DAFAD429D09A@PH0P111MB2835.NAMP111.PROD.OUTLOOK.COM>',NULL,NULL,' =?Windows-1252?Q?U.S._Army_UAS_Marketplace_Industry_Days_=96_White_Paper_?= =?Windows-1252?Q?Evaluation_Results?=','UASIndustryDay2025@army.mil','UAS Industry Day 2025','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"line-height: 1.38; margin: 0in 0in 8pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nGood Afternoon,</div>\r\n<div style=\"line-height: 1.38; margin: 0in 0in 8pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nThank you for submitting your white paper for consideration in the U.S. Army UAS Marketplace Industry Days. We greatly value the time, effort, and expertise that went into your submission.</div>\r\n<div style=\"line-height: 1.38; margin: 0in 0in 8pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nAfter thorough evaluation, your company was <b>not selected for a whiteboarding session at this year’s Industry Days</b>. While we cannot accommodate every submission within the limited event schedule, we want to emphasize that this decision does not diminish\r\n the importance of your work or the potential of your capabilities.</div>\r\n<div style=\"line-height: 1.38; margin: 0in 0in 8pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nThe Army deeply appreciates the innovation and commitment demonstrated by all participants. Your white paper has contributed to shaping our understanding of industry trends and potential solutions. Although you will not be presenting during Industry Days, we\r\n encourage you to remain engaged with future Army UAS opportunities and events.</div>\r\n<div style=\"line-height: 1.38; margin: 0in 0in 8pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nWe thank you again for your interest in partnering with the Army on advancing UAS capabilities and look forward to continued collaboration.</div>\r\n<div style=\"line-height: 1.38; margin: 0in 0in 8pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nSincerely,</div>\r\n<div style=\"line-height: 1.38; margin: 0in 0in 8pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nUAS Marketplace Industry Days Team</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n</body>\r\n</html>','Good Afternoon,\r\nThank you for submitting your white paper for consideration in the U.S. Army UAS Marketplace Industry Days. We greatly value the time, effort, and expertise that went into your submission.\r\nAfter thorough evaluation, your company was not selected for a whiteboarding session at this year’s Industry Days. While we cannot accommodate every submission within the limited event schedule, we want to emphasize that this decision does not diminish the importance of your work or the potential of your capabilities.\r\nThe Army deeply appreciates the innovation and commitment demonstrated by all participants. Your white paper has contributed to shaping our understanding of industry trends and potential solutions. Although you will not be presenting during Industry Days, we encourage you to remain engaged with future Army UAS opportunities and events.\r\nWe thank you again for your interest in partnering with the Army on advancing UAS capabilities and look forward to continued collaboration.\r\nSincerely,\r\nUAS Marketplace Industry Days Team',0,0,0,0,0,0,'2025-09-11 20:29:55','2025-12-09 19:28:18','2025-12-09 19:28:18','2025-12-09 19:28:18',NULL,NULL,NULL),
(712,4,'<20250911211042.Horde.lC_oBPD4ffkmiNkR6DYIplb@mavrix1.aponte.to>',NULL,NULL,'Invitation: HQ Meeting','tony@mavrix.one','Tony Aponte','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\" style=\"-webkit-font-smoothing:antialiased;background:#fff!important\">\r\n<head>\r\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n	<meta name=\"viewport\" content=\"width=device-width\">\r\n	<title></title>\r\n	<style type=\"text/css\">@media only screen{html{min-height:100%;background:#fff}}@media only screen and (max-width:610px){table.body img{width:auto;height:auto}table.body center{min-width:0!important}table.body .container{width:95%!important}table.body .columns{height:auto!important;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:30px!important;padding-right:30px!important}th.small-12{display:inline-block!important;width:100%!important}table.menu{width:100%!important}table.menu td,table.menu th{width:auto!important;display:inline-block!important}table.menu.vertical td,table.menu.vertical th{display:block!important}table.menu[align=center]{width:auto!important}}</style>\r\n</head>\r\n<body style=\"-moz-box-sizing:border-box;-ms-text-size-adjust:100%;-webkit-box-sizing:border-box;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;margin:0;background:#fff!important;box-sizing:border-box;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;min-width:100%;padding:0;text-align:left;width:100%!important\">\r\n	<span class=\"preheader\" style=\"color:#F5F5F5;display:none!important;font-size:1px;line-height:1px;max-height:0;max-width:0;mso-hide:all!important;opacity:0;overflow:hidden;visibility:hidden\">\r\n	</span>\r\n	<table class=\"body\" style=\"-webkit-font-smoothing:antialiased;margin:0;background:#fff;border-collapse:collapse;border-spacing:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n		<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n			<td class=\"center\" align=\"center\" valign=\"top\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n				<center data-parsed=\"\" style=\"min-width:580px;width:100%\"><table align=\"center\" class=\"wrapper header float-center\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:20px;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:0 0;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:150px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n						<table class=\"row collapse\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n							<tbody>\r\n							<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n								<center data-parsed=\"\" style=\"background-color:#00679e;min-width:175px;max-height:175px; padding:35px 0px;border-radius:200px\">\r\n									<img class=\"logo float-center\" src=\"https://mavrix1.aponte.to/apps/theming/image/logo?useSvg=0&amp;v=9\" alt=\"Mavrix1\" align=\"center\" style=\"-ms-interpolation-mode:bicubic;clear:both;display:block;float:none;margin:0 auto;outline:0;text-align:center;text-decoration:none;max-height:105px;max-width:105px;width:auto;height:auto\" width=\"105\" height=\"22\">\r\n								</center>\r\n							</tr>\r\n							</tbody>\r\n						</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"40px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:80px;font-weight:400;hyphens:auto;line-height:80px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"container main-heading float-center\" style=\"Margin:0 auto;background:0 0!important;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:580px\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<h1 class=\"text-center\" style=\"Margin:0;Margin-bottom:10px;color:inherit;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:24px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:center;word-wrap:normal\">Tony Aponte would like to invite you to \"HQ Meeting\"</h1>\r\n		</td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"36px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:40px;font-weight:400;hyphens:auto;line-height:36px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"wrapper content float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:580px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/title.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Title:</em><br>HQ Meeting</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/time.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">When:</em><br>Every Week on Friday between 12:00 PM - 12:30 PM (America/New_York)</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/time.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Occurring:</em><br>In 18 hours on September 12, 2025 then on September 19, 2025 and September 26, 2025</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"spacer\" style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"50px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:50px;font-weight:400;hyphens:auto;line-height:50px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"row btn-group\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<center data-parsed=\"\" style=\"min-width:490px;width:100%\">\r\n							<!--[if (gte mso 9)|(IE)]>\r\n							<table>\r\n								<tr>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default primary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;margin:0 0 30px 0;margin-right:15px;border-radius:8px;max-width:300px;padding:0;text-align:center;vertical-align:top;width:auto;background:#00679e;background-color:#00679e;color:#fefefe;\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #00679e;border-collapse:collapse!important;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/accept/KGg3Ap6M8fb60uZOgdGyWxmGcHaFNGnIlS7pZ1ZFEbK2ZG5bWjqqnwACnIP1\" style=\"Margin:0;border:0 solid #00679e;color:#ffffff;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;padding:8px;text-align:left;outline:1px solid #ffffff;text-decoration:none\">Accept</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default secondary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;background-color: #ccc;margin:0 0 30px 0;max-height:40px;max-width:300px;padding:1px;border-radius:8px;text-align:center;vertical-align:top;width:auto\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #777;border-collapse:collapse!important;color:#fefefe;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/decline/KGg3Ap6M8fb60uZOgdGyWxmGcHaFNGnIlS7pZ1ZFEbK2ZG5bWjqqnwACnIP1\" style=\"Margin:0;background-color:#fff;border:0 solid #777;color:#6C6C6C!important;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;border-radius: 7px;padding:8px;text-align:left;text-decoration:none\">Decline</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n								</tr>\r\n							</table>\r\n							<![endif]-->\r\n						</center>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;text-align:center\"><small><a href=\"https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/KGg3Ap6M8fb60uZOgdGyWxmGcHaFNGnIlS7pZ1ZFEbK2ZG5bWjqqnwACnIP1\">More options …</a></small></p>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table><table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"60px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:60px;font-weight:400;hyphens:auto;line-height:60px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"wrapper footer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<center data-parsed=\"\" style=\"min-width:580px;width:100%\">\r\n				<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n					<tbody>\r\n					<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n						<td height=\"15px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:15px;font-weight:400;hyphens:auto;line-height:15px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n					</tr>\r\n					</tbody>\r\n				</table>\r\n				<p class=\"text-center float-center\" align=\"center\" style=\"Margin:0;Margin-bottom:10px;color:#C8C8C8;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:10px;padding:0;text-align:center\">Mavrix1 - Manufacturing American Autonomy<br>This is an automatically sent email, please do not reply.</p>\r\n			</center>\r\n		</td>\r\n	</tr>\r\n</table>					</center>\r\n				</td>\r\n			</tr>\r\n		</table>\r\n		<!-- prevent Gmail on iOS font size manipulation -->\r\n		<div style=\"display:none;white-space:nowrap;font:15px courier;line-height:0\">                                                           </div>\r\n	</body>\r\n</html>','Tony Aponte would like to invite you to \"HQ Meeting\"\r\n\r\n         Title: HQ Meeting\r\n          When: Every Week on Friday between 12:00 PM - 12:30 PM (America/New_York)\r\n     Occurring: In 18 hours on September 12, 2025 then on September 19, 2025 and September 26, 2025\r\n\r\nAccept: https://mavrix1.aponte.to/apps/dav/invitation/accept/KGg3Ap6M8fb60uZOgdGyWxmGcHaFNGnIlS7pZ1ZFEbK2ZG5bWjqqnwACnIP1\r\nDecline: https://mavrix1.aponte.to/apps/dav/invitation/decline/KGg3Ap6M8fb60uZOgdGyWxmGcHaFNGnIlS7pZ1ZFEbK2ZG5bWjqqnwACnIP1\r\n\r\nMore options at https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/KGg3Ap6M8fb60uZOgdGyWxmGcHaFNGnIlS7pZ1ZFEbK2ZG5bWjqqnwACnIP1\r\n\r\n\r\n-- \r\nMavrix1 - Manufacturing American Autonomy\r\nThis is an automatically sent email, please do not reply.',0,0,0,0,0,0,'2025-09-11 21:10:42','2025-12-09 19:28:18','2025-12-09 19:28:18','2025-12-09 19:28:18',NULL,NULL,NULL),
(713,4,'<20250911211601.Horde.jpP5NMyfAsbHybnfgXFAo7y@mavrix1.aponte.to>',NULL,NULL,'Invitation updated: Mavrix Main','tony@mavrix.one','Tony Aponte','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\" style=\"-webkit-font-smoothing:antialiased;background:#fff!important\">\r\n<head>\r\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n	<meta name=\"viewport\" content=\"width=device-width\">\r\n	<title></title>\r\n	<style type=\"text/css\">@media only screen{html{min-height:100%;background:#fff}}@media only screen and (max-width:610px){table.body img{width:auto;height:auto}table.body center{min-width:0!important}table.body .container{width:95%!important}table.body .columns{height:auto!important;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:30px!important;padding-right:30px!important}th.small-12{display:inline-block!important;width:100%!important}table.menu{width:100%!important}table.menu td,table.menu th{width:auto!important;display:inline-block!important}table.menu.vertical td,table.menu.vertical th{display:block!important}table.menu[align=center]{width:auto!important}}</style>\r\n</head>\r\n<body style=\"-moz-box-sizing:border-box;-ms-text-size-adjust:100%;-webkit-box-sizing:border-box;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;margin:0;background:#fff!important;box-sizing:border-box;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;min-width:100%;padding:0;text-align:left;width:100%!important\">\r\n	<span class=\"preheader\" style=\"color:#F5F5F5;display:none!important;font-size:1px;line-height:1px;max-height:0;max-width:0;mso-hide:all!important;opacity:0;overflow:hidden;visibility:hidden\">\r\n	</span>\r\n	<table class=\"body\" style=\"-webkit-font-smoothing:antialiased;margin:0;background:#fff;border-collapse:collapse;border-spacing:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n		<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n			<td class=\"center\" align=\"center\" valign=\"top\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n				<center data-parsed=\"\" style=\"min-width:580px;width:100%\"><table align=\"center\" class=\"wrapper header float-center\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:20px;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:0 0;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:150px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n						<table class=\"row collapse\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n							<tbody>\r\n							<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n								<center data-parsed=\"\" style=\"background-color:#00679e;min-width:175px;max-height:175px; padding:35px 0px;border-radius:200px\">\r\n									<img class=\"logo float-center\" src=\"https://mavrix1.aponte.to/apps/theming/image/logo?useSvg=0&amp;v=9\" alt=\"Mavrix1\" align=\"center\" style=\"-ms-interpolation-mode:bicubic;clear:both;display:block;float:none;margin:0 auto;outline:0;text-align:center;text-decoration:none;max-height:105px;max-width:105px;width:auto;height:auto\" width=\"105\" height=\"22\">\r\n								</center>\r\n							</tr>\r\n							</tbody>\r\n						</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"40px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:80px;font-weight:400;hyphens:auto;line-height:80px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"container main-heading float-center\" style=\"Margin:0 auto;background:0 0!important;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:580px\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<h1 class=\"text-center\" style=\"Margin:0;Margin-bottom:10px;color:inherit;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:24px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:center;word-wrap:normal\">Tony Aponte updated the event \"Mavrix Main\"</h1>\r\n		</td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"36px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:40px;font-weight:400;hyphens:auto;line-height:36px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"wrapper content float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:580px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/title.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Title:</em><br>Mavrix Main</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/time.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">When:</em><br>Every Week on Friday between 3:00 PM - 3:30 PM (America/New_York)</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/time.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Occurring:</em><br>In 21 hours on September 12, 2025 then on September 19, 2025 and September 26, 2025</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"spacer\" style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"50px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:50px;font-weight:400;hyphens:auto;line-height:50px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"row btn-group\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<center data-parsed=\"\" style=\"min-width:490px;width:100%\">\r\n							<!--[if (gte mso 9)|(IE)]>\r\n							<table>\r\n								<tr>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default primary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;margin:0 0 30px 0;margin-right:15px;border-radius:8px;max-width:300px;padding:0;text-align:center;vertical-align:top;width:auto;background:#00679e;background-color:#00679e;color:#fefefe;\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #00679e;border-collapse:collapse!important;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/accept/NGbHadIlzss5FfAjyeJS4QSji7lQXRCTnzJ0SmgVmfQfXDZixL9O4BLBE9hQ\" style=\"Margin:0;border:0 solid #00679e;color:#ffffff;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;padding:8px;text-align:left;outline:1px solid #ffffff;text-decoration:none\">Accept</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default secondary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;background-color: #ccc;margin:0 0 30px 0;max-height:40px;max-width:300px;padding:1px;border-radius:8px;text-align:center;vertical-align:top;width:auto\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #777;border-collapse:collapse!important;color:#fefefe;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/decline/NGbHadIlzss5FfAjyeJS4QSji7lQXRCTnzJ0SmgVmfQfXDZixL9O4BLBE9hQ\" style=\"Margin:0;background-color:#fff;border:0 solid #777;color:#6C6C6C!important;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;border-radius: 7px;padding:8px;text-align:left;text-decoration:none\">Decline</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n								</tr>\r\n							</table>\r\n							<![endif]-->\r\n						</center>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;text-align:center\"><small><a href=\"https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/NGbHadIlzss5FfAjyeJS4QSji7lQXRCTnzJ0SmgVmfQfXDZixL9O4BLBE9hQ\">More options …</a></small></p>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table><table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"60px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:60px;font-weight:400;hyphens:auto;line-height:60px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"wrapper footer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<center data-parsed=\"\" style=\"min-width:580px;width:100%\">\r\n				<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n					<tbody>\r\n					<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n						<td height=\"15px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:15px;font-weight:400;hyphens:auto;line-height:15px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n					</tr>\r\n					</tbody>\r\n				</table>\r\n				<p class=\"text-center float-center\" align=\"center\" style=\"Margin:0;Margin-bottom:10px;color:#C8C8C8;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:10px;padding:0;text-align:center\">Mavrix1 - Manufacturing American Autonomy<br>This is an automatically sent email, please do not reply.</p>\r\n			</center>\r\n		</td>\r\n	</tr>\r\n</table>					</center>\r\n				</td>\r\n			</tr>\r\n		</table>\r\n		<!-- prevent Gmail on iOS font size manipulation -->\r\n		<div style=\"display:none;white-space:nowrap;font:15px courier;line-height:0\">                                                           </div>\r\n	</body>\r\n</html>','Tony Aponte updated the event \"Mavrix Main\"\r\n\r\n         Title: Mavrix Main\r\n          When: Every Week on Friday between 3:00 PM - 3:30 PM (America/New_York)\r\n     Occurring: In 21 hours on September 12, 2025 then on September 19, 2025 and September 26, 2025\r\n\r\nAccept: https://mavrix1.aponte.to/apps/dav/invitation/accept/NGbHadIlzss5FfAjyeJS4QSji7lQXRCTnzJ0SmgVmfQfXDZixL9O4BLBE9hQ\r\nDecline: https://mavrix1.aponte.to/apps/dav/invitation/decline/NGbHadIlzss5FfAjyeJS4QSji7lQXRCTnzJ0SmgVmfQfXDZixL9O4BLBE9hQ\r\n\r\nMore options at https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/NGbHadIlzss5FfAjyeJS4QSji7lQXRCTnzJ0SmgVmfQfXDZixL9O4BLBE9hQ\r\n\r\n\r\n-- \r\nMavrix1 - Manufacturing American Autonomy\r\nThis is an automatically sent email, please do not reply.',0,0,0,0,0,0,'2025-09-11 21:16:01','2025-12-09 19:28:19','2025-12-09 19:28:19','2025-12-09 19:28:19',NULL,NULL,NULL),
(714,4,'<20250911222952.Horde.ukL7fuB6ApE7_V1sIcKxa3z@mavrix1.aponte.to>',NULL,NULL,'Invitation: HQ Meeting','tony@mavrix.one','Tony Aponte','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\" style=\"-webkit-font-smoothing:antialiased;background:#fff!important\">\r\n<head>\r\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n	<meta name=\"viewport\" content=\"width=device-width\">\r\n	<title></title>\r\n	<style type=\"text/css\">@media only screen{html{min-height:100%;background:#fff}}@media only screen and (max-width:610px){table.body img{width:auto;height:auto}table.body center{min-width:0!important}table.body .container{width:95%!important}table.body .columns{height:auto!important;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:30px!important;padding-right:30px!important}th.small-12{display:inline-block!important;width:100%!important}table.menu{width:100%!important}table.menu td,table.menu th{width:auto!important;display:inline-block!important}table.menu.vertical td,table.menu.vertical th{display:block!important}table.menu[align=center]{width:auto!important}}</style>\r\n</head>\r\n<body style=\"-moz-box-sizing:border-box;-ms-text-size-adjust:100%;-webkit-box-sizing:border-box;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;margin:0;background:#fff!important;box-sizing:border-box;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;min-width:100%;padding:0;text-align:left;width:100%!important\">\r\n	<span class=\"preheader\" style=\"color:#F5F5F5;display:none!important;font-size:1px;line-height:1px;max-height:0;max-width:0;mso-hide:all!important;opacity:0;overflow:hidden;visibility:hidden\">\r\n	</span>\r\n	<table class=\"body\" style=\"-webkit-font-smoothing:antialiased;margin:0;background:#fff;border-collapse:collapse;border-spacing:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n		<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n			<td class=\"center\" align=\"center\" valign=\"top\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n				<center data-parsed=\"\" style=\"min-width:580px;width:100%\"><table align=\"center\" class=\"wrapper header float-center\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:20px;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:0 0;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:150px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n						<table class=\"row collapse\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n							<tbody>\r\n							<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n								<center data-parsed=\"\" style=\"background-color:#00679e;min-width:175px;max-height:175px; padding:35px 0px;border-radius:200px\">\r\n									<img class=\"logo float-center\" src=\"https://mavrix1.aponte.to/apps/theming/image/logo?useSvg=0&amp;v=9\" alt=\"Mavrix1\" align=\"center\" style=\"-ms-interpolation-mode:bicubic;clear:both;display:block;float:none;margin:0 auto;outline:0;text-align:center;text-decoration:none;max-height:105px;max-width:105px;width:auto;height:auto\" width=\"105\" height=\"22\">\r\n								</center>\r\n							</tr>\r\n							</tbody>\r\n						</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"40px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:80px;font-weight:400;hyphens:auto;line-height:80px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"container main-heading float-center\" style=\"Margin:0 auto;background:0 0!important;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:580px\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<h1 class=\"text-center\" style=\"Margin:0;Margin-bottom:10px;color:inherit;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:24px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:center;word-wrap:normal\">Tony Aponte would like to invite you to \"HQ Meeting\"</h1>\r\n		</td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"36px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:40px;font-weight:400;hyphens:auto;line-height:36px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"wrapper content float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:580px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/title.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Title:</em><br>HQ Meeting</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/time.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">When:</em><br>In 18 hours on Friday, September 12, 2025 between 1:00 PM - 1:30 PM (America/New_York)</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"spacer\" style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"50px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:50px;font-weight:400;hyphens:auto;line-height:50px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"row btn-group\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<center data-parsed=\"\" style=\"min-width:490px;width:100%\">\r\n							<!--[if (gte mso 9)|(IE)]>\r\n							<table>\r\n								<tr>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default primary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;margin:0 0 30px 0;margin-right:15px;border-radius:8px;max-width:300px;padding:0;text-align:center;vertical-align:top;width:auto;background:#00679e;background-color:#00679e;color:#fefefe;\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #00679e;border-collapse:collapse!important;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/accept/hWqm7AbJCBDJcBzQdIOCBhpLskZDMM5J6nIQ9H6C8cWD7PuOPr9TuUBwH1V2\" style=\"Margin:0;border:0 solid #00679e;color:#ffffff;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;padding:8px;text-align:left;outline:1px solid #ffffff;text-decoration:none\">Accept</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default secondary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;background-color: #ccc;margin:0 0 30px 0;max-height:40px;max-width:300px;padding:1px;border-radius:8px;text-align:center;vertical-align:top;width:auto\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #777;border-collapse:collapse!important;color:#fefefe;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/decline/hWqm7AbJCBDJcBzQdIOCBhpLskZDMM5J6nIQ9H6C8cWD7PuOPr9TuUBwH1V2\" style=\"Margin:0;background-color:#fff;border:0 solid #777;color:#6C6C6C!important;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;border-radius: 7px;padding:8px;text-align:left;text-decoration:none\">Decline</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n								</tr>\r\n							</table>\r\n							<![endif]-->\r\n						</center>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;text-align:center\"><small><a href=\"https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/hWqm7AbJCBDJcBzQdIOCBhpLskZDMM5J6nIQ9H6C8cWD7PuOPr9TuUBwH1V2\">More options …</a></small></p>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table><table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"60px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:60px;font-weight:400;hyphens:auto;line-height:60px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"wrapper footer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<center data-parsed=\"\" style=\"min-width:580px;width:100%\">\r\n				<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n					<tbody>\r\n					<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n						<td height=\"15px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:15px;font-weight:400;hyphens:auto;line-height:15px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n					</tr>\r\n					</tbody>\r\n				</table>\r\n				<p class=\"text-center float-center\" align=\"center\" style=\"Margin:0;Margin-bottom:10px;color:#C8C8C8;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:10px;padding:0;text-align:center\">Mavrix1 - Manufacturing American Autonomy<br>This is an automatically sent email, please do not reply.</p>\r\n			</center>\r\n		</td>\r\n	</tr>\r\n</table>					</center>\r\n				</td>\r\n			</tr>\r\n		</table>\r\n		<!-- prevent Gmail on iOS font size manipulation -->\r\n		<div style=\"display:none;white-space:nowrap;font:15px courier;line-height:0\">                                                           </div>\r\n	</body>\r\n</html>','Tony Aponte would like to invite you to \"HQ Meeting\"\r\n\r\n         Title: HQ Meeting\r\n          When: In 18 hours on Friday, September 12, 2025 between 1:00 PM - 1:30 PM (America/New_York)\r\n\r\nAccept: https://mavrix1.aponte.to/apps/dav/invitation/accept/hWqm7AbJCBDJcBzQdIOCBhpLskZDMM5J6nIQ9H6C8cWD7PuOPr9TuUBwH1V2\r\nDecline: https://mavrix1.aponte.to/apps/dav/invitation/decline/hWqm7AbJCBDJcBzQdIOCBhpLskZDMM5J6nIQ9H6C8cWD7PuOPr9TuUBwH1V2\r\n\r\nMore options at https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/hWqm7AbJCBDJcBzQdIOCBhpLskZDMM5J6nIQ9H6C8cWD7PuOPr9TuUBwH1V2\r\n\r\n\r\n-- \r\nMavrix1 - Manufacturing American Autonomy\r\nThis is an automatically sent email, please do not reply.',0,0,0,0,0,0,'2025-09-11 22:29:52','2025-12-09 19:28:19','2025-12-09 19:28:19','2025-12-09 19:28:19',NULL,NULL,NULL),
(715,4,'<20250912142538.Horde.LQsVQLBNrjnzmevBPogF-_a@mavrix1.aponte.to>',NULL,NULL,'Invitation updated: Special Ops:  Weekly SitRep','leslie@mavrix.one','Leslie Staron','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\" style=\"-webkit-font-smoothing:antialiased;background:#fff!important\">\r\n<head>\r\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n	<meta name=\"viewport\" content=\"width=device-width\">\r\n	<title></title>\r\n	<style type=\"text/css\">@media only screen{html{min-height:100%;background:#fff}}@media only screen and (max-width:610px){table.body img{width:auto;height:auto}table.body center{min-width:0!important}table.body .container{width:95%!important}table.body .columns{height:auto!important;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:30px!important;padding-right:30px!important}th.small-12{display:inline-block!important;width:100%!important}table.menu{width:100%!important}table.menu td,table.menu th{width:auto!important;display:inline-block!important}table.menu.vertical td,table.menu.vertical th{display:block!important}table.menu[align=center]{width:auto!important}}</style>\r\n</head>\r\n<body style=\"-moz-box-sizing:border-box;-ms-text-size-adjust:100%;-webkit-box-sizing:border-box;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;margin:0;background:#fff!important;box-sizing:border-box;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;min-width:100%;padding:0;text-align:left;width:100%!important\">\r\n	<span class=\"preheader\" style=\"color:#F5F5F5;display:none!important;font-size:1px;line-height:1px;max-height:0;max-width:0;mso-hide:all!important;opacity:0;overflow:hidden;visibility:hidden\">\r\n	</span>\r\n	<table class=\"body\" style=\"-webkit-font-smoothing:antialiased;margin:0;background:#fff;border-collapse:collapse;border-spacing:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n		<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n			<td class=\"center\" align=\"center\" valign=\"top\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n				<center data-parsed=\"\" style=\"min-width:580px;width:100%\"><table align=\"center\" class=\"wrapper header float-center\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:20px;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:0 0;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:150px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n						<table class=\"row collapse\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n							<tbody>\r\n							<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n								<center data-parsed=\"\" style=\"background-color:#00679e;min-width:175px;max-height:175px; padding:35px 0px;border-radius:200px\">\r\n									<img class=\"logo float-center\" src=\"https://mavrix1.aponte.to/apps/theming/image/logo?useSvg=0&amp;v=9\" alt=\"Mavrix1\" align=\"center\" style=\"-ms-interpolation-mode:bicubic;clear:both;display:block;float:none;margin:0 auto;outline:0;text-align:center;text-decoration:none;max-height:105px;max-width:105px;width:auto;height:auto\" width=\"105\" height=\"22\">\r\n								</center>\r\n							</tr>\r\n							</tbody>\r\n						</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"40px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:80px;font-weight:400;hyphens:auto;line-height:80px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"container main-heading float-center\" style=\"Margin:0 auto;background:0 0!important;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:580px\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<h1 class=\"text-center\" style=\"Margin:0;Margin-bottom:10px;color:inherit;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:24px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:center;word-wrap:normal\">Leslie Staron updated the event \"Special Ops:  Weekly SitRep\"</h1>\r\n		</td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"36px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:40px;font-weight:400;hyphens:auto;line-height:36px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"wrapper content float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:580px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/title.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Title:</em><br>Special Ops:  Weekly SitRep</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/time.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">When:</em><br><span style=\"text-decoration: line-through\">Every Week on Friday between 2:00 PM - 2:30 PM (America/New_York)</span><br>Every Week on Friday between 10:30 PM - 10:30 PM (America/New_York)</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/location.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Location:</em><br>Signal:  https://signal.link/call/#key=bgbx-xtdt-hdnm-cndc-kknr-chxr-btxk-gpnx</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/time.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Occurring:</em><br>In 12 hours on September 12, 2025 then on September 19, 2025 and September 26, 2025</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/description.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Description:</em><br>Leadership sync ahead of weekly Mavrix1 Team meeting to ensure unified alignment and communication.</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"spacer\" style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"50px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:50px;font-weight:400;hyphens:auto;line-height:50px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"row btn-group\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<center data-parsed=\"\" style=\"min-width:490px;width:100%\">\r\n							<!--[if (gte mso 9)|(IE)]>\r\n							<table>\r\n								<tr>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default primary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;margin:0 0 30px 0;margin-right:15px;border-radius:8px;max-width:300px;padding:0;text-align:center;vertical-align:top;width:auto;background:#00679e;background-color:#00679e;color:#fefefe;\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #00679e;border-collapse:collapse!important;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/accept/HttLdCkOt1e3POP5yEFbaDxIzLoNQ2L7DGE7VufKSxzoqEvcTqAXqcYmGdWI\" style=\"Margin:0;border:0 solid #00679e;color:#ffffff;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;padding:8px;text-align:left;outline:1px solid #ffffff;text-decoration:none\">Accept</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default secondary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;background-color: #ccc;margin:0 0 30px 0;max-height:40px;max-width:300px;padding:1px;border-radius:8px;text-align:center;vertical-align:top;width:auto\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #777;border-collapse:collapse!important;color:#fefefe;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/decline/HttLdCkOt1e3POP5yEFbaDxIzLoNQ2L7DGE7VufKSxzoqEvcTqAXqcYmGdWI\" style=\"Margin:0;background-color:#fff;border:0 solid #777;color:#6C6C6C!important;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;border-radius: 7px;padding:8px;text-align:left;text-decoration:none\">Decline</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n								</tr>\r\n							</table>\r\n							<![endif]-->\r\n						</center>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;text-align:center\"><small><a href=\"https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/HttLdCkOt1e3POP5yEFbaDxIzLoNQ2L7DGE7VufKSxzoqEvcTqAXqcYmGdWI\">More options …</a></small></p>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table><table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"60px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:60px;font-weight:400;hyphens:auto;line-height:60px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"wrapper footer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<center data-parsed=\"\" style=\"min-width:580px;width:100%\">\r\n				<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n					<tbody>\r\n					<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n						<td height=\"15px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:15px;font-weight:400;hyphens:auto;line-height:15px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n					</tr>\r\n					</tbody>\r\n				</table>\r\n				<p class=\"text-center float-center\" align=\"center\" style=\"Margin:0;Margin-bottom:10px;color:#C8C8C8;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:10px;padding:0;text-align:center\">Mavrix1 - Manufacturing American Autonomy<br>This is an automatically sent email, please do not reply.</p>\r\n			</center>\r\n		</td>\r\n	</tr>\r\n</table>					</center>\r\n				</td>\r\n			</tr>\r\n		</table>\r\n		<!-- prevent Gmail on iOS font size manipulation -->\r\n		<div style=\"display:none;white-space:nowrap;font:15px courier;line-height:0\">                                                           </div>\r\n	</body>\r\n</html>','Leslie Staron updated the event \"Special Ops:  Weekly SitRep\"\r\n\r\n         Title: Special Ops:  Weekly SitRep\r\n          When: Every Week on Friday between 10:30 PM - 10:30 PM (America/New_York)\r\n      Location: Signal:  https://signal.link/call/#key=bgbx-xtdt-hdnm-cndc-kknr-chxr-btxk-gpnx\r\n     Occurring: In 12 hours on September 12, 2025 then on September 19, 2025 and September 26, 2025\r\n   Description: Leadership sync ahead of weekly Mavrix1 Team meeting to ensure unified alignment and communication.\r\n\r\nAccept: https://mavrix1.aponte.to/apps/dav/invitation/accept/HttLdCkOt1e3POP5yEFbaDxIzLoNQ2L7DGE7VufKSxzoqEvcTqAXqcYmGdWI\r\nDecline: https://mavrix1.aponte.to/apps/dav/invitation/decline/HttLdCkOt1e3POP5yEFbaDxIzLoNQ2L7DGE7VufKSxzoqEvcTqAXqcYmGdWI\r\n\r\nMore options at https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/HttLdCkOt1e3POP5yEFbaDxIzLoNQ2L7DGE7VufKSxzoqEvcTqAXqcYmGdWI\r\n\r\n\r\n-- \r\nMavrix1 - Manufacturing American Autonomy\r\nThis is an automatically sent email, please do not reply.',0,0,0,0,0,0,'2025-09-12 14:25:38','2025-12-09 19:28:19','2025-12-09 19:28:19','2025-12-09 19:28:19',NULL,NULL,NULL),
(716,4,'<20250912142626.Horde.m_tCMsJiE3pfcrxT6SWwQ79@mavrix1.aponte.to>',NULL,NULL,'Invitation updated: Special Ops:  Weekly SitRep','leslie@mavrix.one','Leslie Staron','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\" style=\"-webkit-font-smoothing:antialiased;background:#fff!important\">\r\n<head>\r\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n	<meta name=\"viewport\" content=\"width=device-width\">\r\n	<title></title>\r\n	<style type=\"text/css\">@media only screen{html{min-height:100%;background:#fff}}@media only screen and (max-width:610px){table.body img{width:auto;height:auto}table.body center{min-width:0!important}table.body .container{width:95%!important}table.body .columns{height:auto!important;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:30px!important;padding-right:30px!important}th.small-12{display:inline-block!important;width:100%!important}table.menu{width:100%!important}table.menu td,table.menu th{width:auto!important;display:inline-block!important}table.menu.vertical td,table.menu.vertical th{display:block!important}table.menu[align=center]{width:auto!important}}</style>\r\n</head>\r\n<body style=\"-moz-box-sizing:border-box;-ms-text-size-adjust:100%;-webkit-box-sizing:border-box;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;margin:0;background:#fff!important;box-sizing:border-box;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;min-width:100%;padding:0;text-align:left;width:100%!important\">\r\n	<span class=\"preheader\" style=\"color:#F5F5F5;display:none!important;font-size:1px;line-height:1px;max-height:0;max-width:0;mso-hide:all!important;opacity:0;overflow:hidden;visibility:hidden\">\r\n	</span>\r\n	<table class=\"body\" style=\"-webkit-font-smoothing:antialiased;margin:0;background:#fff;border-collapse:collapse;border-spacing:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n		<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n			<td class=\"center\" align=\"center\" valign=\"top\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n				<center data-parsed=\"\" style=\"min-width:580px;width:100%\"><table align=\"center\" class=\"wrapper header float-center\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:20px;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:0 0;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:150px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n						<table class=\"row collapse\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n							<tbody>\r\n							<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n								<center data-parsed=\"\" style=\"background-color:#00679e;min-width:175px;max-height:175px; padding:35px 0px;border-radius:200px\">\r\n									<img class=\"logo float-center\" src=\"https://mavrix1.aponte.to/apps/theming/image/logo?useSvg=0&amp;v=9\" alt=\"Mavrix1\" align=\"center\" style=\"-ms-interpolation-mode:bicubic;clear:both;display:block;float:none;margin:0 auto;outline:0;text-align:center;text-decoration:none;max-height:105px;max-width:105px;width:auto;height:auto\" width=\"105\" height=\"22\">\r\n								</center>\r\n							</tr>\r\n							</tbody>\r\n						</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"40px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:80px;font-weight:400;hyphens:auto;line-height:80px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"container main-heading float-center\" style=\"Margin:0 auto;background:0 0!important;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:580px\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<h1 class=\"text-center\" style=\"Margin:0;Margin-bottom:10px;color:inherit;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:24px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:center;word-wrap:normal\">Leslie Staron updated the event \"Special Ops:  Weekly SitRep\"</h1>\r\n		</td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"36px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:40px;font-weight:400;hyphens:auto;line-height:36px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"wrapper content float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:580px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/title.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Title:</em><br>Special Ops:  Weekly SitRep</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/time.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">When:</em><br>Every Week on Friday between 10:30 PM - 10:30 PM (America/New_York)</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/location.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Location:</em><br>Signal:  https://signal.link/call/#key=bgbx-xtdt-hdnm-cndc-kknr-chxr-btxk-gpnx</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/time.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Occurring:</em><br>In 12 hours on September 12, 2025 then on September 19, 2025 and September 26, 2025</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/description.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Description:</em><br>Leadership sync ahead of weekly Mavrix1 Team meeting to ensure unified alignment and communication.</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"spacer\" style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"50px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:50px;font-weight:400;hyphens:auto;line-height:50px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"row btn-group\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<center data-parsed=\"\" style=\"min-width:490px;width:100%\">\r\n							<!--[if (gte mso 9)|(IE)]>\r\n							<table>\r\n								<tr>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default primary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;margin:0 0 30px 0;margin-right:15px;border-radius:8px;max-width:300px;padding:0;text-align:center;vertical-align:top;width:auto;background:#00679e;background-color:#00679e;color:#fefefe;\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #00679e;border-collapse:collapse!important;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/accept/XLcAuDCU7aXnrtjk7ETMprHfV4PG0bx8pLCJuZ9SiZzRMhkZfFIGi7U9ratw\" style=\"Margin:0;border:0 solid #00679e;color:#ffffff;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;padding:8px;text-align:left;outline:1px solid #ffffff;text-decoration:none\">Accept</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default secondary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;background-color: #ccc;margin:0 0 30px 0;max-height:40px;max-width:300px;padding:1px;border-radius:8px;text-align:center;vertical-align:top;width:auto\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #777;border-collapse:collapse!important;color:#fefefe;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/decline/XLcAuDCU7aXnrtjk7ETMprHfV4PG0bx8pLCJuZ9SiZzRMhkZfFIGi7U9ratw\" style=\"Margin:0;background-color:#fff;border:0 solid #777;color:#6C6C6C!important;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;border-radius: 7px;padding:8px;text-align:left;text-decoration:none\">Decline</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n								</tr>\r\n							</table>\r\n							<![endif]-->\r\n						</center>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;text-align:center\"><small><a href=\"https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/XLcAuDCU7aXnrtjk7ETMprHfV4PG0bx8pLCJuZ9SiZzRMhkZfFIGi7U9ratw\">More options …</a></small></p>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table><table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"60px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:60px;font-weight:400;hyphens:auto;line-height:60px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"wrapper footer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<center data-parsed=\"\" style=\"min-width:580px;width:100%\">\r\n				<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n					<tbody>\r\n					<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n						<td height=\"15px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:15px;font-weight:400;hyphens:auto;line-height:15px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n					</tr>\r\n					</tbody>\r\n				</table>\r\n				<p class=\"text-center float-center\" align=\"center\" style=\"Margin:0;Margin-bottom:10px;color:#C8C8C8;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:10px;padding:0;text-align:center\">Mavrix1 - Manufacturing American Autonomy<br>This is an automatically sent email, please do not reply.</p>\r\n			</center>\r\n		</td>\r\n	</tr>\r\n</table>					</center>\r\n				</td>\r\n			</tr>\r\n		</table>\r\n		<!-- prevent Gmail on iOS font size manipulation -->\r\n		<div style=\"display:none;white-space:nowrap;font:15px courier;line-height:0\">                                                           </div>\r\n	</body>\r\n</html>','Leslie Staron updated the event \"Special Ops:  Weekly SitRep\"\r\n\r\n         Title: Special Ops:  Weekly SitRep\r\n          When: Every Week on Friday between 10:30 PM - 10:30 PM (America/New_York)\r\n      Location: Signal:  https://signal.link/call/#key=bgbx-xtdt-hdnm-cndc-kknr-chxr-btxk-gpnx\r\n     Occurring: In 12 hours on September 12, 2025 then on September 19, 2025 and September 26, 2025\r\n   Description: Leadership sync ahead of weekly Mavrix1 Team meeting to ensure unified alignment and communication.\r\n\r\nAccept: https://mavrix1.aponte.to/apps/dav/invitation/accept/XLcAuDCU7aXnrtjk7ETMprHfV4PG0bx8pLCJuZ9SiZzRMhkZfFIGi7U9ratw\r\nDecline: https://mavrix1.aponte.to/apps/dav/invitation/decline/XLcAuDCU7aXnrtjk7ETMprHfV4PG0bx8pLCJuZ9SiZzRMhkZfFIGi7U9ratw\r\n\r\nMore options at https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/XLcAuDCU7aXnrtjk7ETMprHfV4PG0bx8pLCJuZ9SiZzRMhkZfFIGi7U9ratw\r\n\r\n\r\n-- \r\nMavrix1 - Manufacturing American Autonomy\r\nThis is an automatically sent email, please do not reply.',0,0,0,0,0,0,'2025-09-12 14:26:26','2025-12-09 19:28:20','2025-12-09 19:28:20','2025-12-09 19:28:20',NULL,NULL,NULL),
(717,4,'<1810211426.3368695.1757688530853@lor1-app94555.prod.linkedin.com>',NULL,NULL,'Mavrix, follow Sundar Pichai - CEO at Google','messages-noreply@linkedin.com','LinkedIn','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n              @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n            </style> <style>\r\n            @media (max-width: 480px) { .inline-button, .inline-button table { display: none !important; }\r\n            .full-width-button, .full-width-button table { display: table !important; } }\r\n          </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n            \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n            \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">See your recommendations</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-left: auto; margin-right: auto; margin-top: 0px; margin-bottom: 0px; width: 512px; max-width: 512px; padding: 0px;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"bg-color-background-container \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0TRovF52ro0bY1&amp;trk=eml-email_edge_discover_01-header-0-home_glimmer_static_badging_with_count&amp;trkEmail=eml-email_edge_discover_01-header-0-home_glimmer_static_badging_with_count-null-poh2nf~mfgycvj0~qj-null-null&amp;eid=poh2nf-mfgycvj0-qj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjI4N2M2ZDU0Mjk5YWE4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiMWM3ZDgwMDlhZGNiOTA5NTAxMmU5ODRmNTVmMDhlYjliZjA4ZDM0OTJkZGRjYjYsMSwx\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img class=\"h-[37px] w-[101px]\" alt=\"LinkedIn\" src=\"https://static.licdn.com/aero-v1/sc/h/2fp5x7ci191mxbdy1eynscn59\" data-test-header-static-badging-img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 37px; width: 101px;\" width=\"101\" height=\"37\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" data-test-header-notification-badges style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/messaging/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0TRovF52ro0bY1&amp;trk=eml-email_edge_discover_01-header-0-messaging_glimmer&amp;trkEmail=eml-email_edge_discover_01-header-0-messaging_glimmer-null-poh2nf~mfgycvj0~qj-null-null&amp;eid=poh2nf-mfgycvj0-qj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjI4N2M2ZDU0Mjk5YWE4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiMWM3ZDgwMDlhZGNiOTA5NTAxMmU5ODRmNTVmMDhlYjliZjA4ZDM0OTJkZGRjYjYsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Messaging icon\" src=\"https://static.licdn.com/aero-v1/sc/h/ekkp8yi9j4xx65umpdz3rdmbp\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0TRovF52ro0bY1&amp;trk=eml-email_edge_discover_01-header-0-my_network_glimmer&amp;trkEmail=eml-email_edge_discover_01-header-0-my_network_glimmer-null-poh2nf~mfgycvj0~qj-null-null&amp;eid=poh2nf-mfgycvj0-qj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjI4N2M2ZDU0Mjk5YWE4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiMWM3ZDgwMDlhZGNiOTA5NTAxMmU5ODRmNTVmMDhlYjliZjA4ZDM0OTJkZGRjYjYsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Mynetwork icon\" src=\"https://static.licdn.com/aero-v1/sc/h/4yxfb6j5ycpjfjgehfqgmdx9w\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/notifications/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0TRovF52ro0bY1&amp;trk=eml-email_edge_discover_01-header-0-notifications_glimmer&amp;trkEmail=eml-email_edge_discover_01-header-0-notifications_glimmer-null-poh2nf~mfgycvj0~qj-null-null&amp;eid=poh2nf-mfgycvj0-qj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjI4N2M2ZDU0Mjk5YWE4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiMWM3ZDgwMDlhZGNiOTA5NTAxMmU5ODRmNTVmMDhlYjliZjA4ZDM0OTJkZGRjYjYsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Notifications icon\" src=\"https://static.licdn.com/aero-v1/sc/h/eh1e9j5bszh6p379hn269p3ps\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"px-3 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px; padding-bottom: 24px;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <h2 class=\"text-lg leading-regular\" data-test-id=\"follow-recommendation-header\" style=\"margin: 0; font-weight: 500; font-size: 20px; line-height: 1.25;\"> Mavrix, add interesting content to your feed. Here are a few recommendations to get started. </h2> </td> </tr> <tr data-test-id=\"follow-recommendation-section\"> <td align=\"center\" class=\"pt-1.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" class=\"pr-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/sundarpichai?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0TRovF52ro0bY1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A1317361366&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A1317361366-null-poh2nf~mfgycvj0~qj-null-null&amp;eid=poh2nf-mfgycvj0-qj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjI4N2M2ZDU0Mjk5YWE4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiMWM3ZDgwMDlhZGNiOTA5NTAxMmU5ODRmNTVmMDhlYjliZjA4ZDM0OTJkZGRjYjYsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQFrmDuWUxQoMg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1715645354619?e=2147483647&amp;v=beta&amp;t=1RrasjAAg13gmwoW6krW4hhqj4r8n93XSghp6u90KtE\" alt=\"Sundar Pichai’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/sundarpichai?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0TRovF52ro0bY1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A1317361366&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A1317361366-null-poh2nf~mfgycvj0~qj-null-null&amp;eid=poh2nf-mfgycvj0-qj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjI4N2M2ZDU0Mjk5YWE4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiMWM3ZDgwMDlhZGNiOTA5NTAxMmU5ODRmNTVmMDhlYjliZjA4ZDM0OTJkZGRjYjYsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Sundar Pichai </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> CEO at Google </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 1,970,849 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=sundarpichai&amp;entityUrn=ADoAAE6FVtYBLCrRjLsIylvs2ylmnGGrWaIBOsg&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midSig=0TRovF52ro0bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A1317361366-null-poh2nf%7Emfgycvj0%7Eqj-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A1317361366\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=sundarpichai&amp;entityUrn=ADoAAE6FVtYBLCrRjLsIylvs2ylmnGGrWaIBOsg&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midSig=0TRovF52ro0bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A1317361366-null-poh2nf%7Emfgycvj0%7Eqj-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A1317361366\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=sundarpichai&amp;entityUrn=ADoAAE6FVtYBLCrRjLsIylvs2ylmnGGrWaIBOsg&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midSig=0TRovF52ro0bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A1317361366-null-poh2nf%7Emfgycvj0%7Eqj-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A1317361366\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=sundarpichai&amp;entityUrn=ADoAAE6FVtYBLCrRjLsIylvs2ylmnGGrWaIBOsg&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midSig=0TRovF52ro0bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A1317361366-null-poh2nf%7Emfgycvj0%7Eqj-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A1317361366\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/snoopdogg?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0TRovF52ro0bY1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A1111511297&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A1111511297-null-poh2nf~mfgycvj0~qj-null-null&amp;eid=poh2nf-mfgycvj0-qj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjI4N2M2ZDU0Mjk5YWE4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiMWM3ZDgwMDlhZGNiOTA5NTAxMmU5ODRmNTVmMDhlYjliZjA4ZDM0OTJkZGRjYjYsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/D5603AQHN1f-W4ZsjWQ/profile-displayphoto-shrink_800_800/B56ZRfsMmSH0Ag-/0/1736772209353?e=2147483647&amp;v=beta&amp;t=eExhFWW18gsrt2IYNEgmd8bu3Hq0rsG04xFz6E44h9M\" alt=\"Snoop Dogg’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/snoopdogg?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0TRovF52ro0bY1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A1111511297&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A1111511297-null-poh2nf~mfgycvj0~qj-null-null&amp;eid=poh2nf-mfgycvj0-qj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjI4N2M2ZDU0Mjk5YWE4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiMWM3ZDgwMDlhZGNiOTA5NTAxMmU5ODRmNTVmMDhlYjliZjA4ZDM0OTJkZGRjYjYsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Snoop Dogg </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> CEO - Death Row Records | Founder - Death Row Pictures </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 636,325 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=snoopdogg&amp;entityUrn=ADoAAEJAUQEBDUfXsTzCBr5OO7NQORYg__TH9Lk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midSig=0TRovF52ro0bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A1111511297-null-poh2nf%7Emfgycvj0%7Eqj-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A1111511297\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=snoopdogg&amp;entityUrn=ADoAAEJAUQEBDUfXsTzCBr5OO7NQORYg__TH9Lk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midSig=0TRovF52ro0bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A1111511297-null-poh2nf%7Emfgycvj0%7Eqj-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A1111511297\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=snoopdogg&amp;entityUrn=ADoAAEJAUQEBDUfXsTzCBr5OO7NQORYg__TH9Lk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midSig=0TRovF52ro0bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A1111511297-null-poh2nf%7Emfgycvj0%7Eqj-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A1111511297\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=snoopdogg&amp;entityUrn=ADoAAEJAUQEBDUfXsTzCBr5OO7NQORYg__TH9Lk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midSig=0TRovF52ro0bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A1111511297-null-poh2nf%7Emfgycvj0%7Eqj-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A1111511297\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/mark-cuban-06a0755b?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0TRovF52ro0bY1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A212158738&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A212158738-null-poh2nf~mfgycvj0~qj-null-null&amp;eid=poh2nf-mfgycvj0-qj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjI4N2M2ZDU0Mjk5YWE4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiMWM3ZDgwMDlhZGNiOTA5NTAxMmU5ODRmNTVmMDhlYjliZjA4ZDM0OTJkZGRjYjYsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/D5603AQH9b4ZbzNR0zg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1681567357400?e=2147483647&amp;v=beta&amp;t=VRBrWwzCKwPVmQICZANQy_SQClDQD7ufZnrTIR2qBcs\" alt=\"Mark Cuban’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/mark-cuban-06a0755b?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0TRovF52ro0bY1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A212158738&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A212158738-null-poh2nf~mfgycvj0~qj-null-null&amp;eid=poh2nf-mfgycvj0-qj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjI4N2M2ZDU0Mjk5YWE4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiMWM3ZDgwMDlhZGNiOTA5NTAxMmU5ODRmNTVmMDhlYjliZjA4ZDM0OTJkZGRjYjYsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Mark Cuban </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> President </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 8,142,872 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=mark-cuban-06a0755b&amp;entityUrn=ADoAAAylSRIBoVg_CysUlZYwCTYlXPTQoiGxDAk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midSig=0TRovF52ro0bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A212158738-null-poh2nf%7Emfgycvj0%7Eqj-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A212158738\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=mark-cuban-06a0755b&amp;entityUrn=ADoAAAylSRIBoVg_CysUlZYwCTYlXPTQoiGxDAk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midSig=0TRovF52ro0bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A212158738-null-poh2nf%7Emfgycvj0%7Eqj-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A212158738\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=mark-cuban-06a0755b&amp;entityUrn=ADoAAAylSRIBoVg_CysUlZYwCTYlXPTQoiGxDAk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midSig=0TRovF52ro0bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A212158738-null-poh2nf%7Emfgycvj0%7Eqj-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A212158738\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=mark-cuban-06a0755b&amp;entityUrn=ADoAAAylSRIBoVg_CysUlZYwCTYlXPTQoiGxDAk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midSig=0TRovF52ro0bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A212158738-null-poh2nf%7Emfgycvj0%7Eqj-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A212158738\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/hartmanea?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0TRovF52ro0bY1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A338835546&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A338835546-null-poh2nf~mfgycvj0~qj-null-null&amp;eid=poh2nf-mfgycvj0-qj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjI4N2M2ZDU0Mjk5YWE4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiMWM3ZDgwMDlhZGNiOTA5NTAxMmU5ODRmNTVmMDhlYjliZjA4ZDM0OTJkZGRjYjYsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQGYDc8bxOpkFA/profile-displayphoto-shrink_400_400/B4EZXS5aP4HcAg-/0/1743000021700?e=2147483647&amp;v=beta&amp;t=SwznTex0eB0cxlvqCas6PSdbulvC9OnhP4JFBSP4f7Y\" alt=\"Elizabeth Hartman, ChFC’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/hartmanea?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0TRovF52ro0bY1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A338835546&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A338835546-null-poh2nf~mfgycvj0~qj-null-null&amp;eid=poh2nf-mfgycvj0-qj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjI4N2M2ZDU0Mjk5YWE4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiMWM3ZDgwMDlhZGNiOTA5NTAxMmU5ODRmNTVmMDhlYjliZjA4ZDM0OTJkZGRjYjYsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Elizabeth Hartman, ChFC </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> Mediocre Angler | Decent Hunter | Relentless Mil/Vet Advocate </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 54,969 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=hartmanea&amp;entityUrn=ADoAABQyOFoBybtegXR8L-Aos-eo_NvdHh2IGvQ&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midSig=0TRovF52ro0bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A338835546-null-poh2nf%7Emfgycvj0%7Eqj-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A338835546\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=hartmanea&amp;entityUrn=ADoAABQyOFoBybtegXR8L-Aos-eo_NvdHh2IGvQ&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midSig=0TRovF52ro0bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A338835546-null-poh2nf%7Emfgycvj0%7Eqj-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A338835546\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=hartmanea&amp;entityUrn=ADoAABQyOFoBybtegXR8L-Aos-eo_NvdHh2IGvQ&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midSig=0TRovF52ro0bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A338835546-null-poh2nf%7Emfgycvj0%7Eqj-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A338835546\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=hartmanea&amp;entityUrn=ADoAABQyOFoBybtegXR8L-Aos-eo_NvdHh2IGvQ&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midSig=0TRovF52ro0bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A338835546-null-poh2nf%7Emfgycvj0%7Eqj-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A338835546\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/riddhi-shanishchara?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0TRovF52ro0bY1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A494796785&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A494796785-null-poh2nf~mfgycvj0~qj-null-null&amp;eid=poh2nf-mfgycvj0-qj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjI4N2M2ZDU0Mjk5YWE4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiMWM3ZDgwMDlhZGNiOTA5NTAxMmU5ODRmNTVmMDhlYjliZjA4ZDM0OTJkZGRjYjYsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/D4D03AQH-umGNgLC6pQ/profile-displayphoto-shrink_400_400/B4DZQcRz6PHUAg-/0/1735641220961?e=2147483647&amp;v=beta&amp;t=GvoOOkHr6OY-rvoLpobh-sjP-rFDj-Yh7eDBra24EQQ\" alt=\"Riddhi Shanishchara’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/riddhi-shanishchara?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0TRovF52ro0bY1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A494796785&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A494796785-null-poh2nf~mfgycvj0~qj-null-null&amp;eid=poh2nf-mfgycvj0-qj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjI4N2M2ZDU0Mjk5YWE4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiMWM3ZDgwMDlhZGNiOTA5NTAxMmU5ODRmNTVmMDhlYjliZjA4ZDM0OTJkZGRjYjYsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Riddhi Shanishchara </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> Founder @ Hustle Hound Media | Helping Founders &amp; C-Suites Turn Their Personal… </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 45,743 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=riddhi-shanishchara&amp;entityUrn=ADoAAB19__EB0A22vytup6r2C4-R30bE_QCWR_0&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midSig=0TRovF52ro0bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A494796785-null-poh2nf%7Emfgycvj0%7Eqj-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A494796785\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=riddhi-shanishchara&amp;entityUrn=ADoAAB19__EB0A22vytup6r2C4-R30bE_QCWR_0&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midSig=0TRovF52ro0bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A494796785-null-poh2nf%7Emfgycvj0%7Eqj-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A494796785\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=riddhi-shanishchara&amp;entityUrn=ADoAAB19__EB0A22vytup6r2C4-R30bE_QCWR_0&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midSig=0TRovF52ro0bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A494796785-null-poh2nf%7Emfgycvj0%7Eqj-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A494796785\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=riddhi-shanishchara&amp;entityUrn=ADoAAB19__EB0A22vytup6r2C4-R30bE_QCWR_0&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midSig=0TRovF52ro0bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A494796785-null-poh2nf%7Emfgycvj0%7Eqj-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A494796785\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/discovery-see-all/?usecase=EMAIL_MIXED_RECOMMENDATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0TRovF52ro0bY1&amp;trk=eml-email_edge_discover_01-see_more-0-cta~text&amp;trkEmail=eml-email_edge_discover_01-see_more-0-cta~text-null-poh2nf~mfgycvj0~qj-null-null&amp;eid=poh2nf-mfgycvj0-qj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjI4N2M2ZDU0Mjk5YWE4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiMWM3ZDgwMDlhZGNiOTA5NTAxMmU5ODRmNTVmMDhlYjliZjA4ZDM0OTJkZGRjYjYsMSwx\" target=\"_blank\" aria-label=\"See all\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/discovery-see-all/?usecase=EMAIL_MIXED_RECOMMENDATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0TRovF52ro0bY1&amp;trk=eml-email_edge_discover_01-see_more-0-cta~text&amp;trkEmail=eml-email_edge_discover_01-see_more-0-cta~text-null-poh2nf~mfgycvj0~qj-null-null&amp;eid=poh2nf-mfgycvj0-qj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjI4N2M2ZDU0Mjk5YWE4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiMWM3ZDgwMDlhZGNiOTA5NTAxMmU5ODRmNTVmMDhlYjliZjA4ZDM0OTJkZGRjYjYsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> See all </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-lg text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 20px; color: #114951;\"> Get the new LinkedIn desktop app </h2> </td> </tr> <tr> <td class=\"text-center pb-2\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <a href=\"https://apps.microsoft.com/store/detail/9WZDNCRFJ4Q7?launch=true&amp;cid=linkedin_email_upsell&amp;mode=full\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it from Microsoft\" src=\"https://static.licdn.com/aero-v1/sc/h/ejpkkpwvqks31a3cjqokb7fbm\" class=\"h-[40px] w-[112px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 112px;\" width=\"112\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-md text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 16px; color: #114951;\"> Also available on mobile </h2> </td> </tr> <tr> <td class=\"text-center\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <a href=\"https://itunes.apple.com/us/app/linkedin/id288429040?pt=10746&amp;ct=st_appsite_flagship&amp;mt=8\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Download on the App Store\" src=\"https://static.licdn.com/aero-v1/sc/h/76yzkd0h5kiv27lrd4yaenylk\" class=\"h-[40px] w-[120px] pr-1\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 120px; padding-right: 8px;\" width=\"120\" height=\"40\"> </a> <a href=\"https://play.google.com/store/apps/details?id=com.linkedin.android&amp;referrer=st_appsite_flagship\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it on Google Play\" src=\"https://static.licdn.com/aero-v1/sc/h/142qudwblp58zwmc9vkqfplug\" class=\"h-[40px] w-[134px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 134px;\" width=\"134\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px;\"><hr class=\"border-none bg-[#e0dfdd] h-[1px]\" style=\"height: 1px; border-style: none; background-color: #e0dfdd;\"></td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" data-test-id=\"email-footer__intended\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0TRovF52ro0bY1&amp;trk=eml-email_edge_discover_01-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_edge_discover_01-SecurityHelp-0-footerglimmer-null-poh2nf~mfgycvj0~qj-null-null&amp;eid=poh2nf-mfgycvj0-qj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjI4N2M2ZDU0Mjk5YWE4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiMWM3ZDgwMDlhZGNiOTA5NTAxMmU5ODRmNTVmMDhlYjliZjA4ZDM0OTJkZGRjYjYsMSwx\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving People You May Know notification emails.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0TRovF52ro0bY1&amp;trk=eml-email_edge_discover_01-unsubscribe-0-footerGlimmer&amp;trkEmail=eml-email_edge_discover_01-unsubscribe-0-footerGlimmer-null-poh2nf~mfgycvj0~qj-null-null&amp;eid=poh2nf-mfgycvj0-qj&amp;loid=AQErEbR1U_f2lgAAAZk-ZoXVVn0RGa-wEm1-fwLs5tc3_eA-8iJUr4E-G7aOmR94E-qSh2_2j4kWW-45UlvGDPId6KcS-bcr1O8A\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Unsubscribe</a>   ·   <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0TRovF52ro0bY1&amp;trk=eml-email_edge_discover_01-help-0-footerglimmer&amp;trkEmail=eml-email_edge_discover_01-help-0-footerglimmer-null-poh2nf~mfgycvj0~qj-null-null&amp;eid=poh2nf-mfgycvj0-qj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjI4N2M2ZDU0Mjk5YWE4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiMWM3ZDgwMDlhZGNiOTA5NTAxMmU5ODRmNTVmMDhlYjliZjA4ZDM0OTJkZGRjYjYsMSwx\" target=\"_blank\" data-test-help-link class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0TRovF52ro0bY1&amp;trk=eml-email_edge_discover_01-footer-0-logoGlimmer&amp;trkEmail=eml-email_edge_discover_01-footer-0-logoGlimmer-null-poh2nf~mfgycvj0~qj-null-null&amp;eid=poh2nf-mfgycvj0-qj&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjI4N2M2ZDU0Mjk5YWE4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiMWM3ZDgwMDlhZGNiOTA5NTAxMmU5ODRmNTVmMDhlYjliZjA4ZDM0OTJkZGRjYjYsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/aero-v1/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFtWjNsamRtb3dMWEZxOlpXMWhhV3hmWldSblpWOWthWE5qYjNabGNsOHdNUT09Og==.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','Mavrix, add interesting content to your feed. Here are a few recommendations to get started.\r\n\r\n\r\nhttps://www.linkedin.com/comm/mynetwork/discovery-see-all/?usecase=EMAIL_MIXED_RECOMMENDATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&midToken=AQE-iPshthTClw&midSig=0TRovF52ro0bY1&trk=eml-email_edge_discover_01-see_all-0-cta~text&trkEmail=eml-email_edge_discover_01-see_all-0-cta~text-null-poh2nf~mfgycvj0~qj-null-null&eid=poh2nf-mfgycvj0-qj&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjI4N2M2ZDU0Mjk5YWE4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiMWM3ZDgwMDlhZGNiOTA5NTAxMmU5ODRmNTVmMDhlYjliZjA4ZDM0OTJkZGRjYjYsMSwx\r\n      \r\n\r\n----------------------------------------\r\n\r\nThis email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\nLearn why we included this: https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&midToken=AQE-iPshthTClw&midSig=0TRovF52ro0bY1&trk=eml-email_edge_discover_01-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_edge_discover_01-SecurityHelp-0-textfooterglimmer-null-poh2nf~mfgycvj0~qj-null-null&eid=poh2nf-mfgycvj0-qj&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjI4N2M2ZDU0Mjk5YWE4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiMWM3ZDgwMDlhZGNiOTA5NTAxMmU5ODRmNTVmMDhlYjliZjA4ZDM0OTJkZGRjYjYsMSwx\r\nYou are receiving People You May Know notification emails.\r\n\r\n\r\nUnsubscribe: https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&midToken=AQE-iPshthTClw&midSig=0TRovF52ro0bY1&trk=eml-email_edge_discover_01-unsubscribe-0-textfooterglimmer&trkEmail=eml-email_edge_discover_01-unsubscribe-0-textfooterglimmer-null-poh2nf~mfgycvj0~qj-null-null&eid=poh2nf-mfgycvj0-qj&loid=AQErEbR1U_f2lgAAAZk-ZoXVVn0RGa-wEm1-fwLs5tc3_eA-8iJUr4E-G7aOmR94E-qSh2_2j4kWW-45UlvGDPId6KcS-bcr1O8A\r\nHelp: https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3Bb0SX5ADiQkmecRh5wdN%2FnA%3D%3D&midToken=AQE-iPshthTClw&midSig=0TRovF52ro0bY1&trk=eml-email_edge_discover_01-help-0-textfooterglimmer&trkEmail=eml-email_edge_discover_01-help-0-textfooterglimmer-null-poh2nf~mfgycvj0~qj-null-null&eid=poh2nf-mfgycvj0-qj&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjI4N2M2ZDU0Mjk5YWE4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiMWM3ZDgwMDlhZGNiOTA5NTAxMmU5ODRmNTVmMDhlYjliZjA4ZDM0OTJkZGRjYjYsMSwx\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.\r\nLinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',0,0,0,0,0,0,'2025-09-12 14:48:50','2025-12-09 19:28:20','2025-12-09 19:28:20','2025-12-09 19:28:20',NULL,NULL,NULL),
(718,4,'<837a96b0ed0c6e16327c4d23df391d02@mavrix.one>',NULL,NULL,'Re: Forge Nano','jordan@mavrix.one','jordan@mavrix.one','<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" /></head><body style=\'font-size: 10pt; font-family: Verdana,Geneva,sans-serif\'>\r\n<div class=\"pre\" style=\"margin: 0; padding: 0; font-family: monospace\">On 2025-09-11 16:23, <a href=\"mailto:jordan@mavrix.one\">jordan@mavrix.one</a> wrote:\r\n<blockquote type=\"cite\" style=\"padding: 0 0.4em; border-left: #1010ff 2px solid; margin: 0\">Hello Team, <br /><br />I just had a conversation with a senior executive involved with Forge<br />Nano, a US based lithium -ion battery cell manufacturing company.<br /><br />Executive Summary:<br /><br />Daniel Sheridan and Jordan Wroblewski discussed supply chain<br />solutions, domestic battery manufacturing, and partnership<br />opportunities to boost U.S.-based lithium battery cell and pack<br />production for defense and commercial customers, emphasizing American<br />ownership and independence from China.<br /><br />Key Takeaways<br /><br />Forge Nano\'s Position &amp; Plans:<br /><br />Forge Nano has secured $100M from the DOE and is building a 3 GW<br />gigafactory in Raleigh, NC, with plans for additional U.S. lithium<br />cell production, especially 18650s and 21700s.<br />They will maintain their existing 400 MW pilot line in Thornton,<br />Colorado, which has been operational for several years and is critical<br />for early-stage production and de-risking scale-up.<br />Utilizing proprietary atomic layer deposition (Atomic Armor), Forge<br />Nano\'s technology offers superior battery performance and tunability.<br />Strategy: Focused on full U.S.-based manufacturing and supply chain<br />security, especially for defense (DoD/Blue UAS) applications.<br /><br />Daniel Sheridan\'s Background:<br /><br />Daniel Sheridan has deep expertise in the U.S. defense industrial<br />base, having previously served as a senior defense industrial base<br />expert at the Pentagon.<br />He helped establish the Pentagon\'s foreign investment team,<br />specifically to ensure U.S. defense supply chain resilience and secure<br />critical manufacturing capabilities.<br /><br />Drones and Motors Discussion:<br /><br />Daniel highlighted that a key motivation for these domestic battery<br />manufacturing efforts is to secure the supply chain for U.S. drones<br />and motors.<br />There is a significant national security focus on producing batteries<br />and motors domestically for drones, ensuring readiness and capability<br />in times of crisis.<br />Daniel emphasized that currently, U.S. defense faces risks due to<br />foreign dependency in critical areas such as drone power and<br />propulsion, and this partnership directly targets closing those gaps.<br /><br />Collaboration Opportunities:<br /><br />Mutual Need: Forge Nano requires a U.S.-based pack partner and is<br />seeking to align with companies similarly committed to American<br />manufacturing, especially for government/DoD clients.<br />Both parties expressed explicit interest in forming a throughput<br />multi-year contract to lock in capacity, support scaling efforts, and<br />provide predictability for investment and growth.<br />Facility/FTZ/Rail access at LBC aligns with Forge Nano\'s expansion<br />plans in NC.<br />Both are committed to zero Chinese investment and reinforcing the U.S.<br />supply chain for critical defense applications.<br /><br />Action Items &amp; Next Steps:<br /><br />Forge Nano to discuss strategic alignment and possibly expedite<br />further partnership; Daniel will update after board meeting (1-1.5<br />weeks).<br />LBC to send a capability statement to Daniel Sheridan.<br />Consider site visits, technical deep dives (Forge Nano CTO &harr; LBC<br />tech leads), and engagement on public-private scaling via potential<br />reindustrialization partnerships.<br />Both parties to keep open for collaboration on future pilot lines,<br />recycling, pouch lines, and specialized battery tech.<br /><br />Strategic Impact:<br /><br />U.S. Battery Sovereignty: This alliance directly addresses government<br />and defense imperatives for secure, scalable American battery<br />manufacturing, especially for drone and motor use cases.<br />Growth Trajectory: The partnership could accelerate both<br />organizations\' paths to 3-5 GW+ annual production capacity, with<br />multi-year throughput agreements locking in long-term revenue and<br />operational stability.<br />Market Position: Early, trusted partnerships with U.S. cell<br />manufacturers position LBC as the go-to for Pack solutions in key U.S.<br />federal programs.<br /><br />Recommendations:<br /><br />Prioritize rapid engagement and detailed negotiation of multi-year<br />throughput agreements with Forge Nano.<br />Prepare for joint demonstration/pilot opportunities, especially in<br />DoD, UAS, and Second Life/recycling sectors.<br />Mobilize executive contacts and leverage public-private partnerships<br />for capital and government relations support.<br /><br />This partnership sets the stage for true American battery supply chain<br />independence and high-value government/industrial contracts, with a<br />special emphasis on drone and motor applications critical to U.S.<br />defense readiness and long-term supply continuity secured by the<br />contemplated throughput contract. <br /><br />As soon as I have the meeting set with their team in the next 1-1.5<br />weeks I will let you know to get you involved. &nbsp; <br /><br /><span class=\"sig\">--&nbsp;<br />Jordan Wroblewski <br />VP, Business Development <br /><br />mavrix1.com [<a href=\"http://mavrix1.com/\" target=\"_blank\" rel=\"noopener noreferrer\">1</a>] <br />&nbsp; <br /><br />Links:<br />------<br />[1] <a href=\"http://mavrix1.com/\" target=\"_blank\" rel=\"noopener noreferrer\">http://mavrix1.com/</a></span></blockquote>\r\n</div>\r\n<div class=\"pre\" style=\"margin: 0; padding: 0; font-family: monospace\">&nbsp;</div>\r\n<div class=\"pre\" style=\"margin: 0; padding: 0; font-family: monospace\">Good morning Gentlemen,</div>\r\n<div class=\"pre\" style=\"margin: 0; padding: 0; font-family: monospace\">&nbsp;</div>\r\n<div class=\"pre\" style=\"margin: 0; padding: 0; font-family: monospace\">Forge Nano would like to set up an initial call with their CTO.&nbsp; Would you be available on Tuesday the 16th at 3pm EST?&nbsp;&nbsp;</div>\r\n<div class=\"pre\" style=\"margin: 0; padding: 0; font-family: monospace\">&nbsp;</div>\r\n<div class=\"pre\" style=\"margin: 0; padding: 0; font-family: monospace\">Let me know and I will set it up.&nbsp;&nbsp;</div>\r\n<div class=\"pre\" style=\"margin: 0; padding: 0; font-family: monospace\">&nbsp;</div>\r\n<div class=\"pre\" style=\"margin: 0; padding: 0; font-family: monospace\">&nbsp;</div>\r\n<div class=\"pre\" style=\"margin: 0; padding: 0; font-family: monospace\">\r\n<p style=\"color: #500050; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Jordan,</p>\r\n<p style=\"color: #500050; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Great catching up with you yesterday, and thanks again for sending the capabilities backgrounder. I&rsquo;m really energized by the potential here and eager to hit the gas on collaborating.</p>\r\n<p style=\"color: #500050; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">I&rsquo;m especially excited to link you up with James Trevey (copied), the CTO of Forge Nano. I spoke with him yesterday, so he already has context on our conversation.</p>\r\n<p style=\"color: #500050; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Would you be available for an initial call next week&mdash;specifically on Tuesday the 16th at 1:00 PM MT / 3:00 PM ET?</p>\r\n<p style=\"color: #500050; font-size: small; font-family: Arial, Helvetica, sans-serif; background-color: #ffffff;\">Best,<br />Daniel</p>\r\n<br />\r\n<div id=\"signature\">-- <br />\r\n<div><span style=\"font-family: Helvetica, Arial;\">Jordan Wroblewski</span>\r\n<div style=\"font-family: Helvetica, Arial;\">VP, Business Development</div>\r\n<div style=\"font-family: Helvetica, Arial;\"><img class=\"v1imgAttach\" src=\"cid:cfb52ec99425c7b39e6e4fef81d8aac3@mavrix.one\" /></div>\r\n<div style=\"font-family: Helvetica, Arial;\"><a style=\"color: #00acff; background-color: transparent;\" href=\"http://mavrix1.com/\" rel=\"noopener noreferrer\">mavrix1.com</a></div>\r\n</div>\r\n<div>&nbsp;</div>\r\n</div>\r\n</div>\r\n</body></html>','On 2025-09-11 16:23, jordan@mavrix.one wrote:\r\n\r\n> Hello Team,\r\n> \r\n> I just had a conversation with a senior executive involved with Forge\r\n> Nano, a US based lithium -ion battery cell manufacturing company.\r\n> \r\n> Executive Summary:\r\n> \r\n> Daniel Sheridan and Jordan Wroblewski discussed supply chain\r\n> solutions, domestic battery manufacturing, and partnership\r\n> opportunities to boost U.S.-based lithium battery cell and pack\r\n> production for defense and commercial customers, emphasizing American\r\n> ownership and independence from China.\r\n> \r\n> Key Takeaways\r\n> \r\n> Forge Nano\'s Position & Plans:\r\n> \r\n> Forge Nano has secured $100M from the DOE and is building a 3 GW\r\n> gigafactory in Raleigh, NC, with plans for additional U.S. lithium\r\n> cell production, especially 18650s and 21700s.\r\n> They will maintain their existing 400 MW pilot line in Thornton,\r\n> Colorado, which has been operational for several years and is critical\r\n> for early-stage production and de-risking scale-up.\r\n> Utilizing proprietary atomic layer deposition (Atomic Armor), Forge\r\n> Nano\'s technology offers superior battery performance and tunability.\r\n> Strategy: Focused on full U.S.-based manufacturing and supply chain\r\n> security, especially for defense (DoD/Blue UAS) applications.\r\n> \r\n> Daniel Sheridan\'s Background:\r\n> \r\n> Daniel Sheridan has deep expertise in the U.S. defense industrial\r\n> base, having previously served as a senior defense industrial base\r\n> expert at the Pentagon.\r\n> He helped establish the Pentagon\'s foreign investment team,\r\n> specifically to ensure U.S. defense supply chain resilience and secure\r\n> critical manufacturing capabilities.\r\n> \r\n> Drones and Motors Discussion:\r\n> \r\n> Daniel highlighted that a key motivation for these domestic battery\r\n> manufacturing efforts is to secure the supply chain for U.S. drones\r\n> and motors.\r\n> There is a significant national security focus on producing batteries\r\n> and motors domestically for drones, ensuring readiness and capability\r\n> in times of crisis.\r\n> Daniel emphasized that currently, U.S. defense faces risks due to\r\n> foreign dependency in critical areas such as drone power and\r\n> propulsion, and this partnership directly targets closing those gaps.\r\n> \r\n> Collaboration Opportunities:\r\n> \r\n> Mutual Need: Forge Nano requires a U.S.-based pack partner and is\r\n> seeking to align with companies similarly committed to American\r\n> manufacturing, especially for government/DoD clients.\r\n> Both parties expressed explicit interest in forming a throughput\r\n> multi-year contract to lock in capacity, support scaling efforts, and\r\n> provide predictability for investment and growth.\r\n> Facility/FTZ/Rail access at LBC aligns with Forge Nano\'s expansion\r\n> plans in NC.\r\n> Both are committed to zero Chinese investment and reinforcing the U.S.\r\n> supply chain for critical defense applications.\r\n> \r\n> Action Items & Next Steps:\r\n> \r\n> Forge Nano to discuss strategic alignment and possibly expedite\r\n> further partnership; Daniel will update after board meeting (1-1.5\r\n> weeks).\r\n> LBC to send a capability statement to Daniel Sheridan.\r\n> Consider site visits, technical deep dives (Forge Nano CTO ↔ LBC\r\n> tech leads), and engagement on public-private scaling via potential\r\n> reindustrialization partnerships.\r\n> Both parties to keep open for collaboration on future pilot lines,\r\n> recycling, pouch lines, and specialized battery tech.\r\n> \r\n> Strategic Impact:\r\n> \r\n> U.S. Battery Sovereignty: This alliance directly addresses government\r\n> and defense imperatives for secure, scalable American battery\r\n> manufacturing, especially for drone and motor use cases.\r\n> Growth Trajectory: The partnership could accelerate both\r\n> organizations\' paths to 3-5 GW+ annual production capacity, with\r\n> multi-year throughput agreements locking in long-term revenue and\r\n> operational stability.\r\n> Market Position: Early, trusted partnerships with U.S. cell\r\n> manufacturers position LBC as the go-to for Pack solutions in key U.S.\r\n> federal programs.\r\n> \r\n> Recommendations:\r\n> \r\n> Prioritize rapid engagement and detailed negotiation of multi-year\r\n> throughput agreements with Forge Nano.\r\n> Prepare for joint demonstration/pilot opportunities, especially in\r\n> DoD, UAS, and Second Life/recycling sectors.\r\n> Mobilize executive contacts and leverage public-private partnerships\r\n> for capital and government relations support.\r\n> \r\n> This partnership sets the stage for true American battery supply chain\r\n> independence and high-value government/industrial contracts, with a\r\n> special emphasis on drone and motor applications critical to U.S.\r\n> defense readiness and long-term supply continuity secured by the\r\n> contemplated throughput contract.\r\n> \r\n> As soon as I have the meeting set with their team in the next 1-1.5\r\n> weeks I will let you know to get you involved.\r\n> \r\n> --\r\n> Jordan Wroblewski\r\n> VP, Business Development\r\n> \r\n> mavrix1.com [1 [1]]\r\n> \r\n> Links:\r\n> ------\r\n> [1] http://mavrix1.com/\r\n\r\nGood morning Gentlemen,\r\n\r\nForge Nano would like to set up an initial call with their CTO.  Would \r\nyou be available on Tuesday the 16th at 3pm EST?\r\n\r\nLet me know and I will set it up.\r\n\r\nJordan,\r\n\r\nGreat catching up with you yesterday, and thanks again for sending the \r\ncapabilities backgrounder. I\'m really energized by the potential here \r\nand eager to hit the gas on collaborating.\r\n\r\nI\'m especially excited to link you up with James Trevey (copied), the \r\nCTO of Forge Nano. I spoke with him yesterday, so he already has context \r\non our conversation.\r\n\r\nWould you be available for an initial call next week--specifically on \r\nTuesday the 16th at 1:00 PM MT / 3:00 PM ET?\r\n\r\nBest,\r\nDaniel\r\n-- \r\nJordan Wroblewski\r\nVP, Business Development\r\n\r\nmavrix1.com [1]\r\n\r\n\r\nLinks:\r\n------\r\n[1] http://mavrix1.com/',0,0,0,0,0,0,'2025-09-12 15:38:19','2025-12-09 19:28:21','2025-12-09 19:28:21','2025-12-09 19:28:21',NULL,NULL,NULL),
(719,4,'<calendar-48cba60b-ce9d-4078-b6dc-9a4dd82b893a@google.com>',NULL,NULL,'Invitation: Meeting w/ Forge Nano  @ Tue Sep 16, 2025 3pm - 4pm (EDT) (rick@mavrix.one)','nathan@lithiumbatterycompany.com','Nathan Staron','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v144/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v118/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation from Nathan Staron\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"7j71jps918ev4e47fuubsi9n7f\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Meeting w/ Forge Nano </span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=N2o3MWpwczkxOGV2NGU0N2Z1dWJzaTluN2Ygcmlja0BtYXZyaXgub25l&amp;tok=MzIjbmF0aGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb202YzZjNGMwYzA5YjFjZTM2MjRkNGM0NDY0OWQzMjE4ODZkOGQ2Mjg3&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250916T190000Z\"></time><time itemprop=\"endDate\" datetime=\"20250916T200000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">──────────Lithium Battery Co. is inviting you to a scheduled Zoom meeting.Join Zoom Meetinghttps://us06web.zoom.us/j/86410046329?pwd=pwMMmalBL8fAMH32Vbtj3NICzPbZC9.1Meeting ID: 864 1004 6329Passcode: </div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><div class=\"\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span><p><br>──────────<br><br>Lithium Battery Co. is inviting you to a scheduled Zoom meeting.<br>Join Zoom Meeting<br><a href=\"https://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fj%2F86410046329%3Fpwd%3DpwMMmalBL8fAMH32Vbtj3NICzPbZC9.1&amp;sa=D&amp;source=calendar&amp;ust=1758130800000000&amp;usg=AOvVaw36-zlJyG0uhsL_l68PaUrD\" target=\"_blank\">https://us06web.zoom.us/j/86410046329?pwd=pwMMmalBL8fAMH32Vbtj3NICzPbZC9.1</a><br><br>Meeting ID: 864 1004 6329<br>Passcode: 364133<br><br>---<br><br>One tap mobile<br>+13052241968,,86410046329#,,,,*364133# US<br>+13092053325,,86410046329#,,,,*364133# US<br><br>Join instructions<br><a href=\"https://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fmeetings%2F86410046329%2Finvitations%3Fsignature%3DhXfC2dEATBYke4_BxiAVUTIxCTlFi_eI706u1V0uSUU&amp;sa=D&amp;source=calendar&amp;ust=1758130800000000&amp;usg=AOvVaw25uepCSOa_99fRHUGAmcLJ\" target=\"_blank\">https://us06web.zoom.us/meetings/86410046329/invitations?signature=hXfC2dEATBYke4_BxiAVUTIxCTlFi_eI706u1V0uSUU</a><br><br><br>──────────</p></span><meta itemprop=\"description\" content=\"──────────Lithium Battery Co. is inviting you to a scheduled Zoom meeting.Join Zoom Meetinghttps://us06web.zoom.us/j/86410046329?pwd=pwMMmalBL8fAMH32Vbtj3NICzPbZC9.1Meeting ID: 864 1004 6329Passcode: 364133---One tap mobile+13052241968,,86410046329#,,,,*364133# US+13092053325,,86410046329#,,,,*364133# USJoin instructionshttps://us06web.zoom.us/meetings/86410046329/invitations?signature=hXfC2dEATBYke4_BxiAVUTIxCTlFi_eI706u1V0uSUU──────────\"/></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250916T190000Z\"></time><time itemprop=\"endDate\" datetime=\"20250916T200000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Tuesday Sep 16, 2025 ⋅ 3pm – 4pm (Eastern Time - New York)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Location</h2></td></tr></table><span itemprop=\"location\" itemscope itemtype=\"http://schema.org/Place\"><span itemprop=\"name\" class=\"primary-text notranslate\" style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\">https://us06web.zoom.us/j/86410046329?pwd=pwMMmalBL8fAMH32Vbtj3NICzPbZC9.1&amp;jst=3</span><br/><a href=\"https://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fj%2F86410046329%3Fpwd%3DpwMMmalBL8fAMH32Vbtj3NICzPbZC9.1%26jst%3D3&amp;sa=D&amp;source=calendar&amp;ust=1758130800000000&amp;usg=AOvVaw1ufl_6nVi1tr7lHUwrfH-z\" class=\"accent-text underline-on-hover\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" itemprop=\"map\">View map</a></span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:nathan@lithiumbatterycompany.com\">Nathan Staron</a></span><meta itemprop=\"email\" content=\"nathan@lithiumbatterycompany.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Nathan Staron\"/><meta itemprop=\"email\" content=\"nathan@lithiumbatterycompany.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a></span><meta itemprop=\"email\" content=\"jtrevey@forgenano.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a></span><meta itemprop=\"email\" content=\"brian@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jordan@lithiumbatterycompany.com\">Jordan Wroblewski</a></span><meta itemprop=\"email\" content=\"jordan@lithiumbatterycompany.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:dansheridanmusic@gmail.com\">dansheridanmusic@gmail.com</a></span><meta itemprop=\"email\" content=\"dansheridanmusic@gmail.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=N2o3MWpwczkxOGV2NGU0N2Z1dWJzaTluN2Ygcmlja0BtYXZyaXgub25l&amp;tok=MzIjbmF0aGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb202YzZjNGMwYzA5YjFjZTM2MjRkNGM0NDY0OWQzMjE4ODZkOGQ2Mjg3&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N2o3MWpwczkxOGV2NGU0N2Z1dWJzaTluN2Ygcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MzIjbmF0aGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb202YzZjNGMwYzA5YjFjZTM2MjRkNGM0NDY0OWQzMjE4ODZkOGQ2Mjg3&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N2o3MWpwczkxOGV2NGU0N2Z1dWJzaTluN2Ygcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MzIjbmF0aGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb202YzZjNGMwYzA5YjFjZTM2MjRkNGM0NDY0OWQzMjE4ODZkOGQ2Mjg3&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N2o3MWpwczkxOGV2NGU0N2Z1dWJzaTluN2Ygcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MzIjbmF0aGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb202YzZjNGMwYzA5YjFjZTM2MjRkNGM0NDY0OWQzMjE4ODZkOGQ2Mjg3&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N2o3MWpwczkxOGV2NGU0N2Z1dWJzaTluN2Ygcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MzIjbmF0aGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb202YzZjNGMwYzA5YjFjZTM2MjRkNGM0NDY0OWQzMjE4ODZkOGQ2Mjg3&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N2o3MWpwczkxOGV2NGU0N2Z1dWJzaTluN2Ygcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MzIjbmF0aGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb202YzZjNGMwYzA5YjFjZTM2MjRkNGM0NDY0OWQzMjE4ODZkOGQ2Mjg3&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N2o3MWpwczkxOGV2NGU0N2Z1dWJzaTluN2Ygcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MzIjbmF0aGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb202YzZjNGMwYzA5YjFjZTM2MjRkNGM0NDY0OWQzMjE4ODZkOGQ2Mjg3&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=N2o3MWpwczkxOGV2NGU0N2Z1dWJzaTluN2Ygcmlja0BtYXZyaXgub25l&amp;tok=MzIjbmF0aGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb202YzZjNGMwYzA5YjFjZTM2MjRkNGM0NDY0OWQzMjE4ODZkOGQ2Mjg3&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=N2o3MWpwczkxOGV2NGU0N2Z1dWJzaTluN2Ygcmlja0BtYXZyaXgub25l&amp;tok=MzIjbmF0aGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb202YzZjNGMwYzA5YjFjZTM2MjRkNGM0NDY0OWQzMjE4ODZkOGQ2Mjg3&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','Meeting w/ Forge Nano\r\nTuesday Sep 16, 2025 ⋅ 3pm – 4pm\r\nEastern Time - New York\r\n\r\nLocation\r\nhttps://us06web.zoom.us/j/86410046329?pwd=pwMMmalBL8fAMH32Vbtj3NICzPbZC9.1&jst=3	\r\nhttps://www.google.com/url?q=https%3A%2F%2Fus06web.zoom.us%2Fj%2F86410046329%3Fpwd%3DpwMMmalBL8fAMH32Vbtj3NICzPbZC9.1%26jst%3D3&sa=D&source=calendar&ust=1758130800000000&usg=AOvVaw1ufl_6nVi1tr7lHUwrfH-z\r\n\r\n\r\n\r\n──────────Lithium Battery Co. is inviting you to a scheduled Zoom  \r\nmeeting.Join Zoom  \r\nMeetinghttps://us06web.zoom.us/j/86410046329?pwd=pwMMmalBL8fAMH32Vbtj3NICzPbZC9.1Meeting  \r\nID: 864 1004 6329Passcode: 364133---One tap  \r\nmobile+13052241968,,86410046329#,,,,*364133#  \r\nUS+13092053325,,86410046329#,,,,*364133# USJoin  \r\ninstructionshttps://us06web.zoom.us/meetings/86410046329/invitations?signature=hXfC2dEATBYke4_BxiAVUTIxCTlFi_eI706u1V0uSUU──────────\r\n\r\nOrganizer\r\nNathan Staron\r\nnathan@lithiumbatterycompany.com\r\n\r\nGuests\r\nNathan Staron - organizer\r\nrick@mavrix.one\r\njtrevey@forgenano.com\r\nbrian@mavrix.one\r\nJordan Wroblewski\r\ndansheridanmusic@gmail.com\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=N2o3MWpwczkxOGV2NGU0N2Z1dWJzaTluN2Ygcmlja0BtYXZyaXgub25l&tok=MzIjbmF0aGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb202YzZjNGMwYzA5YjFjZTM2MjRkNGM0NDY0OWQzMjE4ODZkOGQ2Mjg3&ctz=America%2FNew_York&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=N2o3MWpwczkxOGV2NGU0N2Z1dWJzaTluN2Ygcmlja0BtYXZyaXgub25l&tok=MzIjbmF0aGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb202YzZjNGMwYzA5YjFjZTM2MjRkNGM0NDY0OWQzMjE4ODZkOGQ2Mjg3&ctz=America%2FNew_York&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-09-12 17:40:09','2025-12-09 19:28:21','2025-12-09 19:28:21','2025-12-09 19:28:21',NULL,NULL,NULL),
(720,4,'<DA7EA2B2-C518-4990-8B2A-92E5079D6EFF@bavovna.ai>',NULL,NULL,'SC DroneHub Deck','alm@bavovna.ai','Arthur McCallum','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=us-ascii\"></head><body style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"></body></html>','Hi Rick, \r\n\r\nThank you very much for the call this week with Brian. Absolute pleasure to speak with you fellas. \r\n\r\nFollowing up, please see the SC DroneHub Deck attached. Let’s connect next week. \r\n\r\n\r\n\r\n\r\n\r\n\r\nArthur McCallum\r\nalm@bavovna.ai\r\n\r\n\r\n\r\n￼',0,0,0,0,0,0,'2025-09-12 19:15:41','2025-12-09 19:28:25','2025-12-09 19:28:25','2025-12-09 19:28:25',NULL,NULL,NULL),
(721,4,'<1458025531.6437053.1757724652572@lor1-app94600.prod.linkedin.com>',NULL,NULL,'=?UTF-8?Q?=F0=9F=92=AC_Mavrix,_add_Trevor_Baldw?= =?UTF-8?Q?in_-_Chief_Executive_Officer?=','messages-noreply@linkedin.com','LinkedIn','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n              @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n            </style> <style>\r\n            @media (max-width: 480px) { .inline-button, .inline-button table { display: none !important; }\r\n            .full-width-button, .full-width-button table { display: table !important; } }\r\n          </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n            \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n            \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> <script type=\"application/ld+json\">\r\n    { \"@context\": \"http://schema.org\", \"@type\": \"EmailMessage\", \"potentialAction\": { \"@type\": \"ViewAction\", \"url\": \"https://www.linkedin.com/comm/mynetwork/send-invite/trevor-baldwin-a4053212/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midSig=1oiBZuA9UO0XY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A43115088-null-poh2nf%7Emfhjshgg%7Etc-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A43115088&amp;_sig=1a02lj0HoO0XY1\",\r\n    \"name\": \"Connect\" }, \"description\": \"Connect with Trevor\", \"publisher\": { \"@type\": \"Organization\", \"name\":\r\n    \"LinkedIn\", \"url\": \"https://www.linkedin.com/\" } }\r\n  </script> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">Chief Executive Officer at The Baldwin Group</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-left: auto; margin-right: auto; margin-top: 0px; margin-bottom: 0px; width: 512px; max-width: 512px; padding: 0px;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"bg-color-background-container \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1oiBZuA9UO0XY1&amp;trk=eml-email_pymk_02-header-0-home_glimmer_static_badging_with_count&amp;trkEmail=eml-email_pymk_02-header-0-home_glimmer_static_badging_with_count-null-poh2nf~mfhjshgg~tc-null-null&amp;eid=poh2nf-mfhjshgg-tc&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjM4ZGNhZDY0NDk4YTc4NzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkMWJkZmEwMjliZDc4NTAwYzhhZTVjY2M3MzM2MDM1Njc5MmQwN2MwMzBkOTk4ZTQsMSwx\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img class=\"h-[37px] w-[101px]\" alt=\"LinkedIn\" src=\"https://static.licdn.com/aero-v1/sc/h/2fp5x7ci191mxbdy1eynscn59\" data-test-header-static-badging-img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 37px; width: 101px;\" width=\"101\" height=\"37\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" data-test-header-notification-badges style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/messaging/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1oiBZuA9UO0XY1&amp;trk=eml-email_pymk_02-header-0-messaging_glimmer&amp;trkEmail=eml-email_pymk_02-header-0-messaging_glimmer-null-poh2nf~mfhjshgg~tc-null-null&amp;eid=poh2nf-mfhjshgg-tc&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjM4ZGNhZDY0NDk4YTc4NzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkMWJkZmEwMjliZDc4NTAwYzhhZTVjY2M3MzM2MDM1Njc5MmQwN2MwMzBkOTk4ZTQsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Messaging icon\" src=\"https://static.licdn.com/aero-v1/sc/h/ekkp8yi9j4xx65umpdz3rdmbp\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1oiBZuA9UO0XY1&amp;trk=eml-email_pymk_02-header-0-my_network_glimmer&amp;trkEmail=eml-email_pymk_02-header-0-my_network_glimmer-null-poh2nf~mfhjshgg~tc-null-null&amp;eid=poh2nf-mfhjshgg-tc&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjM4ZGNhZDY0NDk4YTc4NzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkMWJkZmEwMjliZDc4NTAwYzhhZTVjY2M3MzM2MDM1Njc5MmQwN2MwMzBkOTk4ZTQsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Mynetwork icon\" src=\"https://static.licdn.com/aero-v1/sc/h/4yxfb6j5ycpjfjgehfqgmdx9w\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/notifications/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1oiBZuA9UO0XY1&amp;trk=eml-email_pymk_02-header-0-notifications_glimmer&amp;trkEmail=eml-email_pymk_02-header-0-notifications_glimmer-null-poh2nf~mfhjshgg~tc-null-null&amp;eid=poh2nf-mfhjshgg-tc&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjM4ZGNhZDY0NDk4YTc4NzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkMWJkZmEwMjliZDc4NTAwYzhhZTVjY2M3MzM2MDM1Njc5MmQwN2MwMzBkOTk4ZTQsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Notifications icon\" src=\"https://static.licdn.com/aero-v1/sc/h/eh1e9j5bszh6p379hn269p3ps\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"px-0 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 0px; padding-right: 0px; padding-bottom: 24px;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"pymk-hero-banner\"> <td class=\"px-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"px-3 py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px; padding-left: 24px; padding-right: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/in/trevor-baldwin-a4053212?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1oiBZuA9UO0XY1&amp;trk=eml-email_pymk_02-pymk_hero-0-profile_name_link&amp;trkEmail=eml-email_pymk_02-pymk_hero-0-profile_name_link-null-poh2nf~mfhjshgg~tc-null-null&amp;eid=poh2nf-mfhjshgg-tc&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjM4ZGNhZDY0NDk4YTc4NzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkMWJkZmEwMjliZDc4NTAwYzhhZTVjY2M3MzM2MDM1Njc5MmQwN2MwMzBkOTk4ZTQsMSwx\" target=\"_blank\" class=\"text-system-gray-90\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #282828;\"> <h2 class=\"text-lg font-semibold leading-regular\" data-test-id=\"pymk-hero_header\" style=\"margin: 0; font-size: 20px; font-weight: 600; line-height: 1.25;\"> Do you know Trevor? </h2> </a> </td> </tr> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <h4 class=\"text-sm text-system-gray-90 leading-regular\" data-test-id=\"pymk-hero_subheader\" style=\"margin: 0; font-weight: 500; font-size: 14px; line-height: 1.25; color: #282828;\"> Request to connect with members you know and trust </h4> </td> </tr> <tr> <td class=\"pt-[10px]\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 10px;\"> <a href=\"https://www.linkedin.com/comm/in/trevor-baldwin-a4053212?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1oiBZuA9UO0XY1&amp;trk=eml-email_pymk_02-pymk_hero-0-profile_image&amp;trkEmail=eml-email_pymk_02-pymk_hero-0-profile_image-null-poh2nf~mfhjshgg~tc-null-null&amp;eid=poh2nf-mfhjshgg-tc&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjM4ZGNhZDY0NDk4YTc4NzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkMWJkZmEwMjliZDc4NTAwYzhhZTVjY2M3MzM2MDM1Njc5MmQwN2MwMzBkOTk4ZTQsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px]\" src=\"https://static.licdn.com/aero-v1/sc/h/4eby4moebno1i6r34if7lud8o\" alt=\"Trevor Baldwin’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </a> </td> </tr> <tr> <td class=\"pt-[10px]\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 10px;\"> <a href=\"https://www.linkedin.com/comm/in/trevor-baldwin-a4053212?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1oiBZuA9UO0XY1&amp;trk=eml-email_pymk_02-pymk_hero-0-profile_name_link&amp;trkEmail=eml-email_pymk_02-pymk_hero-0-profile_name_link-null-poh2nf~mfhjshgg~tc-null-null&amp;eid=poh2nf-mfhjshgg-tc&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjM4ZGNhZDY0NDk4YTc4NzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkMWJkZmEwMjliZDc4NTAwYzhhZTVjY2M3MzM2MDM1Njc5MmQwN2MwMzBkOTk4ZTQsMSwx\" target=\"_blank\" class=\"text-system-gray-90\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #282828;\"> <h2 class=\"text-lg font-semibold leading-regular\" style=\"margin: 0; font-size: 20px; font-weight: 600; line-height: 1.25;\"> Trevor Baldwin </h2> </a> </td> </tr> <tr> <td class=\"text-xs text-system-gray-90 leading-regular pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px; font-size: 12px; line-height: 1.25; color: #282828;\"> Chief Executive Officer at The Baldwin Group </td> </tr> <tr> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/trevor-baldwin-a4053212/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midSig=1oiBZuA9UO0XY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A43115088-null-poh2nf%7Emfhjshgg%7Etc-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A43115088&amp;_sig=1a02lj0HoO0XY1\" target=\"_blank\" aria-label=\"Connect\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid w-[100vw] max-w-[400px]\" data-test-id=\"pymk-hero_default-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; width: 100vw; max-width: 400px; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/trevor-baldwin-a4053212/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midSig=1oiBZuA9UO0XY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A43115088-null-poh2nf%7Emfhjshgg%7Etc-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A43115088&amp;_sig=1a02lj0HoO0XY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"pymk-section-header\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <h2 class=\"text-lg font-semibold leading-regular text-system-gray-90 text-center\" style=\"margin: 0; text-align: center; font-size: 20px; font-weight: 600; line-height: 1.25; color: #282828;\"> More people you may know </h2> </td> </tr> <tr data-test-id=\"pymk-section-body\"> <td align=\"center\" class=\"pt-1.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"></td> <td class=\"pr-1 w-[400px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 400px; padding-right: 8px;\" width=\"400\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"w-1/2 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/deepak-bawa-58519116?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1oiBZuA9UO0XY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mfhjshgg~tc-null-null&amp;eid=poh2nf-mfhjshgg-tc&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjM4ZGNhZDY0NDk4YTc4NzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkMWJkZmEwMjliZDc4NTAwYzhhZTVjY2M3MzM2MDM1Njc5MmQwN2MwMzBkOTk4ZTQsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/D5603AQGr8d-7w_iVeg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1732417148569?e=2147483647&amp;v=beta&amp;t=M6-rrSuAzhW29wCbAvnlURme35teefCMmYdre4poKGc\" alt=\"Deepak Bawa’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Deepak Bawa </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer @ Splitwaters </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/deepak-bawa-58519116/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midSig=1oiBZuA9UO0XY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A54185717-null-poh2nf%7Emfhjshgg%7Etc-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A54185717&amp;_sig=0ZH84nyTkO0XY1\" target=\"_blank\" aria-label=\"Connect with Deepak Bawa\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/deepak-bawa-58519116/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midSig=1oiBZuA9UO0XY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A54185717-null-poh2nf%7Emfhjshgg%7Etc-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A54185717&amp;_sig=0ZH84nyTkO0XY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"w-1/2 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/amanda-eisel-80b6437?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1oiBZuA9UO0XY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mfhjshgg~tc-null-null&amp;eid=poh2nf-mfhjshgg-tc&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjM4ZGNhZDY0NDk4YTc4NzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkMWJkZmEwMjliZDc4NTAwYzhhZTVjY2M3MzM2MDM1Njc5MmQwN2MwMzBkOTk4ZTQsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/C4E03AQGpmsV3N53zcg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1570449467982?e=2147483647&amp;v=beta&amp;t=IcTEeTGNhbWISWC86B6PjoojXgVg8n3anVjFrNgpb_M\" alt=\"Amanda Eisel’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Amanda Eisel </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer at Zelis </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/amanda-eisel-80b6437/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midSig=1oiBZuA9UO0XY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A22484171-null-poh2nf%7Emfhjshgg%7Etc-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A22484171&amp;_sig=3XJmGRAzcO0XY1\" target=\"_blank\" aria-label=\"Connect with Amanda Eisel\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/amanda-eisel-80b6437/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midSig=1oiBZuA9UO0XY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A22484171-null-poh2nf%7Emfhjshgg%7Etc-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A22484171&amp;_sig=3XJmGRAzcO0XY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/jeff-lewis-fraes-882a1215?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1oiBZuA9UO0XY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mfhjshgg~tc-null-null&amp;eid=poh2nf-mfhjshgg-tc&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjM4ZGNhZDY0NDk4YTc4NzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkMWJkZmEwMjliZDc4NTAwYzhhZTVjY2M3MzM2MDM1Njc5MmQwN2MwMzBkOTk4ZTQsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/D5603AQESHdWJQapq5w/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1726615450898?e=2147483647&amp;v=beta&amp;t=AijqlVakkG1qx_qBYUuMYfFc-_XwLXlBW5ziwsd4OJI\" alt=\"Jeff Lewis, FRAeS’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Jeff Lewis, FRAeS </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/jeff-lewis-fraes-882a1215/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midSig=1oiBZuA9UO0XY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A53275490-null-poh2nf%7Emfhjshgg%7Etc-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A53275490&amp;_sig=32Y8YjlFMO0XY1\" target=\"_blank\" aria-label=\"Connect with Jeff Lewis, FRAeS\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/jeff-lewis-fraes-882a1215/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midSig=1oiBZuA9UO0XY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A53275490-null-poh2nf%7Emfhjshgg%7Etc-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A53275490&amp;_sig=32Y8YjlFMO0XY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/brad-bichey-md-mph-77052a1b2?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1oiBZuA9UO0XY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mfhjshgg~tc-null-null&amp;eid=poh2nf-mfhjshgg-tc&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjM4ZGNhZDY0NDk4YTc4NzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkMWJkZmEwMjliZDc4NTAwYzhhZTVjY2M3MzM2MDM1Njc5MmQwN2MwMzBkOTk4ZTQsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/D5603AQER2IdKG_m18Q/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1674943232354?e=2147483647&amp;v=beta&amp;t=zckibZzffcICgIUA9YSbkMgCo1Bvw-4ZuXcAIQaJAZA\" alt=\"Brad Bichey MD MPH’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Brad Bichey MD MPH </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer at Nemedic </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/brad-bichey-md-mph-77052a1b2/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midSig=1oiBZuA9UO0XY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A831407556-null-poh2nf%7Emfhjshgg%7Etc-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A831407556&amp;_sig=0888K-0CQO0XY1\" target=\"_blank\" aria-label=\"Connect with Brad Bichey MD MPH\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/brad-bichey-md-mph-77052a1b2/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midSig=1oiBZuA9UO0XY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A831407556-null-poh2nf%7Emfhjshgg%7Etc-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A831407556&amp;_sig=0888K-0CQO0XY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/onega-ulanova?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1oiBZuA9UO0XY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mfhjshgg~tc-null-null&amp;eid=poh2nf-mfhjshgg-tc&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjM4ZGNhZDY0NDk4YTc4NzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkMWJkZmEwMjliZDc4NTAwYzhhZTVjY2M3MzM2MDM1Njc5MmQwN2MwMzBkOTk4ZTQsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQHAbzJpTOt-eQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1706553080012?e=2147483647&amp;v=beta&amp;t=Lu2JaWLGWkLlJictUFVYThfq7yJ25PGMS9A8DwcPpNg\" alt=\"Onega Ulanova’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Onega Ulanova </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer @ QMS2GO |… </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/onega-ulanova/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midSig=1oiBZuA9UO0XY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A511163513-null-poh2nf%7Emfhjshgg%7Etc-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A511163513&amp;_sig=3tlaHLdeAO0XY1\" target=\"_blank\" aria-label=\"Connect with Onega Ulanova\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/onega-ulanova/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midSig=1oiBZuA9UO0XY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A511163513-null-poh2nf%7Emfhjshgg%7Etc-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A511163513&amp;_sig=3tlaHLdeAO0XY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/hannah-marshall-5167491b5?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1oiBZuA9UO0XY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mfhjshgg~tc-null-null&amp;eid=poh2nf-mfhjshgg-tc&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjM4ZGNhZDY0NDk4YTc4NzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkMWJkZmEwMjliZDc4NTAwYzhhZTVjY2M3MzM2MDM1Njc5MmQwN2MwMzBkOTk4ZTQsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQEgGWTKN0oG7w/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1697199492507?e=2147483647&amp;v=beta&amp;t=lFMid64niaSjbw38A9kFNirixylaKRGM_yz9PZzJ2zo\" alt=\"Hannah Marshall’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Hannah Marshall </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer at Hannah… </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/hannah-marshall-5167491b5/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midSig=1oiBZuA9UO0XY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A840902562-null-poh2nf%7Emfhjshgg%7Etc-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A840902562&amp;_sig=33UMq2H4IO0XY1\" target=\"_blank\" aria-label=\"Connect with Hannah Marshall\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/hannah-marshall-5167491b5/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midSig=1oiBZuA9UO0XY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A840902562-null-poh2nf%7Emfhjshgg%7Etc-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A840902562&amp;_sig=33UMq2H4IO0XY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"></td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 px-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button px-3\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/add-connections/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1oiBZuA9UO0XY1&amp;trk=eml-email_pymk_02-see_more-0-cta&amp;trkEmail=eml-email_pymk_02-see_more-0-cta-null-poh2nf~mfhjshgg~tc-null-null&amp;eid=poh2nf-mfhjshgg-tc&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjM4ZGNhZDY0NDk4YTc4NzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkMWJkZmEwMjliZDc4NTAwYzhhZTVjY2M3MzM2MDM1Njc5MmQwN2MwMzBkOTk4ZTQsMSwx\" target=\"_blank\" aria-label=\"See more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/add-connections/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1oiBZuA9UO0XY1&amp;trk=eml-email_pymk_02-see_more-0-cta&amp;trkEmail=eml-email_pymk_02-see_more-0-cta-null-poh2nf~mfhjshgg~tc-null-null&amp;eid=poh2nf-mfhjshgg-tc&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjM4ZGNhZDY0NDk4YTc4NzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkMWJkZmEwMjliZDc4NTAwYzhhZTVjY2M3MzM2MDM1Njc5MmQwN2MwMzBkOTk4ZTQsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> See more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-lg text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 20px; color: #114951;\"> Get the new LinkedIn desktop app </h2> </td> </tr> <tr> <td class=\"text-center pb-2\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <a href=\"https://apps.microsoft.com/store/detail/9WZDNCRFJ4Q7?launch=true&amp;cid=linkedin_email_upsell&amp;mode=full\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it from Microsoft\" src=\"https://static.licdn.com/aero-v1/sc/h/ejpkkpwvqks31a3cjqokb7fbm\" class=\"h-[40px] w-[112px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 112px;\" width=\"112\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-md text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 16px; color: #114951;\"> Also available on mobile </h2> </td> </tr> <tr> <td class=\"text-center\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <a href=\"https://itunes.apple.com/us/app/linkedin/id288429040?pt=10746&amp;ct=st_appsite_flagship&amp;mt=8\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Download on the App Store\" src=\"https://static.licdn.com/aero-v1/sc/h/76yzkd0h5kiv27lrd4yaenylk\" class=\"h-[40px] w-[120px] pr-1\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 120px; padding-right: 8px;\" width=\"120\" height=\"40\"> </a> <a href=\"https://play.google.com/store/apps/details?id=com.linkedin.android&amp;referrer=st_appsite_flagship\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it on Google Play\" src=\"https://static.licdn.com/aero-v1/sc/h/142qudwblp58zwmc9vkqfplug\" class=\"h-[40px] w-[134px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 134px;\" width=\"134\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px;\"><hr class=\"border-none bg-[#e0dfdd] h-[1px]\" style=\"height: 1px; border-style: none; background-color: #e0dfdd;\"></td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" data-test-id=\"email-footer__intended\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1oiBZuA9UO0XY1&amp;trk=eml-email_pymk_02-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_pymk_02-SecurityHelp-0-footerglimmer-null-poh2nf~mfhjshgg~tc-null-null&amp;eid=poh2nf-mfhjshgg-tc&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjM4ZGNhZDY0NDk4YTc4NzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkMWJkZmEwMjliZDc4NTAwYzhhZTVjY2M3MzM2MDM1Njc5MmQwN2MwMzBkOTk4ZTQsMSwx\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving People You May Know notification emails.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1oiBZuA9UO0XY1&amp;trk=eml-email_pymk_02-unsubscribe-0-footerGlimmer&amp;trkEmail=eml-email_pymk_02-unsubscribe-0-footerGlimmer-null-poh2nf~mfhjshgg~tc-null-null&amp;eid=poh2nf-mfhjshgg-tc&amp;loid=AQFekdV1PT79zQAAAZlAjbHEnnA9JUT0Y-7JOqCVIKfPn6VtbtC4axk7WeXeJiAc7nC1sc8DCMgZQPDnQYKccSMuqC6Xjrth1tC8\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Unsubscribe</a>   ·   <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1oiBZuA9UO0XY1&amp;trk=eml-email_pymk_02-help-0-footerglimmer&amp;trkEmail=eml-email_pymk_02-help-0-footerglimmer-null-poh2nf~mfhjshgg~tc-null-null&amp;eid=poh2nf-mfhjshgg-tc&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjM4ZGNhZDY0NDk4YTc4NzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkMWJkZmEwMjliZDc4NTAwYzhhZTVjY2M3MzM2MDM1Njc5MmQwN2MwMzBkOTk4ZTQsMSwx\" target=\"_blank\" data-test-help-link class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1oiBZuA9UO0XY1&amp;trk=eml-email_pymk_02-footer-0-logoGlimmer&amp;trkEmail=eml-email_pymk_02-footer-0-logoGlimmer-null-poh2nf~mfhjshgg~tc-null-null&amp;eid=poh2nf-mfhjshgg-tc&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjM4ZGNhZDY0NDk4YTc4NzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkMWJkZmEwMjliZDc4NTAwYzhhZTVjY2M3MzM2MDM1Njc5MmQwN2MwMzBkOTk4ZTQsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/aero-v1/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFtYUdwemFHZG5MWFJqOlpXMWhhV3hmY0hsdGExOHdNZz09Og==.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','Do you know Trevor Baldwin?\r\n\r\nYes, connect: https://www.linkedin.com/comm/mynetwork/send-invite/trevor-baldwin-a4053212/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&midSig=1oiBZuA9UO0XY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A43115088-null-poh2nf%7Emfhjshgg%7Etc-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A43115088&_sig=1a02lj0HoO0XY1\r\n\r\n\r\nMore people you may know\r\n            \r\n    Deepak Bawa\r\nChief Executive Officer @ Splitwaters\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/deepak-bawa-58519116/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&midSig=1oiBZuA9UO0XY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A54185717-null-poh2nf%7Emfhjshgg%7Etc-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A54185717&_sig=0ZH84nyTkO0XY1\r\n            \r\n    Amanda Eisel\r\nChief Executive Officer at Zelis\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/amanda-eisel-80b6437/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&midSig=1oiBZuA9UO0XY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A22484171-null-poh2nf%7Emfhjshgg%7Etc-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A22484171&_sig=3XJmGRAzcO0XY1\r\n            \r\n    Jeff Lewis, FRAeS\r\nChief Executive Officer\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/jeff-lewis-fraes-882a1215/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&midSig=1oiBZuA9UO0XY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A53275490-null-poh2nf%7Emfhjshgg%7Etc-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A53275490&_sig=32Y8YjlFMO0XY1\r\n            \r\n    Brad Bichey MD MPH\r\nChief Executive Officer at Nemedic\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/brad-bichey-md-mph-77052a1b2/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&midSig=1oiBZuA9UO0XY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A831407556-null-poh2nf%7Emfhjshgg%7Etc-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A831407556&_sig=0888K-0CQO0XY1\r\n            \r\n    Onega Ulanova\r\nChief Executive Officer @ QMS2GO | Empowering Quality Managers with AI-copilot | Advancing Manufacturing \r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/onega-ulanova/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&midSig=1oiBZuA9UO0XY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A511163513-null-poh2nf%7Emfhjshgg%7Etc-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A511163513&_sig=3tlaHLdeAO0XY1\r\n\r\nSee more people you might know:https://www.linkedin.com/comm/mynetwork/add-connections/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&midToken=AQE-iPshthTClw&midSig=1oiBZuA9UO0XY1&trk=eml-email_pymk_02-see_more-0-cta~text&trkEmail=eml-email_pymk_02-see_more-0-cta~text-null-poh2nf~mfhjshgg~tc-null-null&eid=poh2nf-mfhjshgg-tc&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjM4ZGNhZDY0NDk4YTc4NzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkMWJkZmEwMjliZDc4NTAwYzhhZTVjY2M3MzM2MDM1Njc5MmQwN2MwMzBkOTk4ZTQsMSwx\r\n      \r\n\r\n----------------------------------------\r\n\r\nThis email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\nLearn why we included this: https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&midToken=AQE-iPshthTClw&midSig=1oiBZuA9UO0XY1&trk=eml-email_pymk_02-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_pymk_02-SecurityHelp-0-textfooterglimmer-null-poh2nf~mfhjshgg~tc-null-null&eid=poh2nf-mfhjshgg-tc&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjM4ZGNhZDY0NDk4YTc4NzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkMWJkZmEwMjliZDc4NTAwYzhhZTVjY2M3MzM2MDM1Njc5MmQwN2MwMzBkOTk4ZTQsMSwx\r\nYou are receiving People You May Know notification emails.\r\n\r\n\r\nUnsubscribe: https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&midToken=AQE-iPshthTClw&midSig=1oiBZuA9UO0XY1&trk=eml-email_pymk_02-unsubscribe-0-textfooterglimmer&trkEmail=eml-email_pymk_02-unsubscribe-0-textfooterglimmer-null-poh2nf~mfhjshgg~tc-null-null&eid=poh2nf-mfhjshgg-tc&loid=AQFekdV1PT79zQAAAZlAjbHEnnA9JUT0Y-7JOqCVIKfPn6VtbtC4axk7WeXeJiAc7nC1sc8DCMgZQPDnQYKccSMuqC6Xjrth1tC8\r\nHelp: https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Biu3mINgnSR2gNmMZ4J9fjg%3D%3D&midToken=AQE-iPshthTClw&midSig=1oiBZuA9UO0XY1&trk=eml-email_pymk_02-help-0-textfooterglimmer&trkEmail=eml-email_pymk_02-help-0-textfooterglimmer-null-poh2nf~mfhjshgg~tc-null-null&eid=poh2nf-mfhjshgg-tc&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYjM4ZGNhZDY0NDk4YTc4NzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkMWJkZmEwMjliZDc4NTAwYzhhZTVjY2M3MzM2MDM1Njc5MmQwN2MwMzBkOTk4ZTQsMSwx\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.\r\nLinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',0,0,0,0,0,0,'2025-09-13 00:50:52','2025-12-09 19:28:26','2025-12-09 19:28:26','2025-12-09 19:28:26',NULL,NULL,NULL),
(722,4,'<19299b8ba31cb90bf36396ec9bee4c51@mavrix.one>',NULL,NULL,'Re: Manufacturing Projections - Drones','jarrett@mavrix.one','Jarrett','On 2025-09-14 09:17, Brian Stufflebean wrote:\r\n> Jarrett and Rick,\r\n> \r\n> I am making the assumption that you are both well ahead of this email\r\n> for production numbers on Drone manufacturing, but I wanted to make\r\n> sure that we are hitting the long term (10-Year) CAGR rates estimated\r\n> by the DoD for market demand and keeping consistent with what we\r\n> believe our market share will be in both FULL UNIT production - By\r\n> Drone Class (Models) and also adding direct competitor sales of parts\r\n> sales we will supply to them for manufacturing of their units. I\r\n> believe this number is already stated in the DECK as a Market Share\r\n> percentage.\r\n> \r\n> Keep in mind the current annual production rates of China,\r\n> approximately 300 Million units per year, (check my number on that\r\n> one), and then multiply that by the percentage of market share we\r\n> believe we can achieve in our USA production. I had initially\r\n> calculated that we should be able to produce around 10K units per\r\n> month within the first 10 months, but I now believe with anticipated\r\n> funding, people and machinery we may be able to far exceed that and\r\n> hit the 1M per year mark sooner. Also, keep in mind that from what\r\n> indications are, USA wants to be able to meet or exceed the China\r\n> production capabilities.\r\n> \r\n> - Also, don’t forget to forecast Allied sales overseas.\r\n> \r\n> Rick, breakout by unit type and anticipation of pricing of sales for\r\n> each model is also going to drive the revenue and therefore the\r\n> profitability, so whether its a small unit at lower price or a larger\r\n> six figure unit, we will need to make some assumptions on demand.\r\n> \r\n> Jarrett, please use a long term constant of cost of funds at 6%,\r\n> interest only on all funds after the initial $20M (which should be at\r\n> 10%, but only in play for 9 months). On the interest only cost of\r\n> funds, we should make some principal reduction of a nominal amount\r\n> each year, calculate $15 or 20M, but we are adding $250M in available\r\n> funds for use 3x, for a total of $750M in initial forecast. We may\r\n> have to back these numbers down some, but that’s what I am going\r\n> into tomorrows meeting with in requested funds.\r\n> \r\n> Also, remember to calculate the Return on Assets (ROA), EBITDA, and\r\n> NOI projections, all should be very positive in number and nature,\r\n> and heavily highlight things such as jobs creation and average annual\r\n> income of workers at Mavrix.\r\n> \r\n> Trust that all of this will all get into the DECK and that there will\r\n> be an Excel model behind it that I will be able to lean on for backup\r\n> of calculations in the DECK.  Please also highlight Reference points\r\n> made in the DECK to where I will be able to find the calculation for\r\n> that reference point  in the Excel workbook.\r\n> \r\n> Thanks so much, here we go…\r\n> \r\n> I am also making the assumption that the battery product line is\r\n> already finished  and included as I know you have been working that\r\n> this past week.\r\n> \r\n> Best regards,\r\n> \r\n> Brian C. Stufflebean\r\n> CEO, Co-Founder\r\n> (941)545-4153 Direct\r\n> (866)896-2423 Fax\r\n> \r\n> brian@mavrix.one\r\n> \r\n> https://mavrix1.com/ [1]\r\n> \r\n> CONFIDENTIALITY NOTICE: This communication is confidential and\r\n> intended only for the intended recipient.  If you are not the intended\r\n> recipient, you may not copy, disclose, or distribute this message to\r\n> anyone else; any such actions may be unlawful. If you have received\r\n> this communication in error, please contact the sender of the message\r\n> to inform him or her of the error.\r\n> \r\n> \r\n> \r\n> Links:\r\n> ------\r\n> [1] https://mavrix1.com\r\nThanks, Brian - confirming receipt and will be including!\r\n-- \r\nJarrett Brownfield\r\n\r\nCFO\r\n\r\nMavrix1: Manufacturing American Autonomy\r\n','On 2025-09-14 09:17, Brian Stufflebean wrote:\r\n> Jarrett and Rick,\r\n> \r\n> I am making the assumption that you are both well ahead of this email\r\n> for production numbers on Drone manufacturing, but I wanted to make\r\n> sure that we are hitting the long term (10-Year) CAGR rates estimated\r\n> by the DoD for market demand and keeping consistent with what we\r\n> believe our market share will be in both FULL UNIT production - By\r\n> Drone Class (Models) and also adding direct competitor sales of parts\r\n> sales we will supply to them for manufacturing of their units. I\r\n> believe this number is already stated in the DECK as a Market Share\r\n> percentage.\r\n> \r\n> Keep in mind the current annual production rates of China,\r\n> approximately 300 Million units per year, (check my number on that\r\n> one), and then multiply that by the percentage of market share we\r\n> believe we can achieve in our USA production. I had initially\r\n> calculated that we should be able to produce around 10K units per\r\n> month within the first 10 months, but I now believe with anticipated\r\n> funding, people and machinery we may be able to far exceed that and\r\n> hit the 1M per year mark sooner. Also, keep in mind that from what\r\n> indications are, USA wants to be able to meet or exceed the China\r\n> production capabilities.\r\n> \r\n> - Also, don’t forget to forecast Allied sales overseas.\r\n> \r\n> Rick, breakout by unit type and anticipation of pricing of sales for\r\n> each model is also going to drive the revenue and therefore the\r\n> profitability, so whether its a small unit at lower price or a larger\r\n> six figure unit, we will need to make some assumptions on demand.\r\n> \r\n> Jarrett, please use a long term constant of cost of funds at 6%,\r\n> interest only on all funds after the initial $20M (which should be at\r\n> 10%, but only in play for 9 months). On the interest only cost of\r\n> funds, we should make some principal reduction of a nominal amount\r\n> each year, calculate $15 or 20M, but we are adding $250M in available\r\n> funds for use 3x, for a total of $750M in initial forecast. We may\r\n> have to back these numbers down some, but that’s what I am going\r\n> into tomorrows meeting with in requested funds.\r\n> \r\n> Also, remember to calculate the Return on Assets (ROA), EBITDA, and\r\n> NOI projections, all should be very positive in number and nature,\r\n> and heavily highlight things such as jobs creation and average annual\r\n> income of workers at Mavrix.\r\n> \r\n> Trust that all of this will all get into the DECK and that there will\r\n> be an Excel model behind it that I will be able to lean on for backup\r\n> of calculations in the DECK.  Please also highlight Reference points\r\n> made in the DECK to where I will be able to find the calculation for\r\n> that reference point  in the Excel workbook.\r\n> \r\n> Thanks so much, here we go…\r\n> \r\n> I am also making the assumption that the battery product line is\r\n> already finished  and included as I know you have been working that\r\n> this past week.\r\n> \r\n> Best regards,\r\n> \r\n> Brian C. Stufflebean\r\n> CEO, Co-Founder\r\n> (941)545-4153 Direct\r\n> (866)896-2423 Fax\r\n> \r\n> brian@mavrix.one\r\n> \r\n> https://mavrix1.com/ [1]\r\n> \r\n> CONFIDENTIALITY NOTICE: This communication is confidential and\r\n> intended only for the intended recipient.  If you are not the intended\r\n> recipient, you may not copy, disclose, or distribute this message to\r\n> anyone else; any such actions may be unlawful. If you have received\r\n> this communication in error, please contact the sender of the message\r\n> to inform him or her of the error.\r\n> \r\n> \r\n> \r\n> Links:\r\n> ------\r\n> [1] https://mavrix1.com\r\nThanks, Brian - confirming receipt and will be including!\r\n-- \r\nJarrett Brownfield\r\n\r\nCFO\r\n\r\nMavrix1: Manufacturing American Autonomy\r\n',0,0,0,0,0,0,'2025-09-14 14:31:18','2025-12-09 19:28:26','2025-12-09 19:28:26','2025-12-09 19:28:26',NULL,NULL,NULL),
(723,4,'<20250915090729.Horde.mPYCArFRFc26f6rKPR3dCyM@mavrix1.aponte.to>',NULL,NULL,'Urgent: Employment Information Request','leslie@mavrix.one','Leslie Staron','Hi Rick,\r\n\r\nPlease complete the attachments necessary to begin the Mavrix1 payroll/benefit processes and return to me today.\r\n\r\n-Employee Information - Confirm and complete the blank information.\r\n-W-4 & I-9 Employment Forms - Complete Page 1 (W-4), Page 5 (I-9 Section 1).  *Digital signature is required.  The quickest way is to Create a New Digital ID and Save to File.\r\n\r\nIf you have any questions, please let me know.\r\n\r\nThank you,\r\nLeslie','Hi Rick,\r\n\r\nPlease complete the attachments necessary to begin the Mavrix1 payroll/benefit processes and return to me today.\r\n\r\n-Employee Information - Confirm and complete the blank information.\r\n-W-4 & I-9 Employment Forms - Complete Page 1 (W-4), Page 5 (I-9 Section 1).  *Digital signature is required.  The quickest way is to Create a New Digital ID and Save to File.\r\n\r\nIf you have any questions, please let me know.\r\n\r\nThank you,\r\nLeslie',0,0,0,0,0,0,'2025-09-15 09:07:29','2025-12-09 19:28:27','2025-12-09 19:28:27','2025-12-09 19:28:27',NULL,NULL,NULL),
(724,4,'<20250915135239.Horde.vYEcw69mKZpYcWoNrsTI53M@mavrix1.aponte.to>',NULL,NULL,'Re: Urgent: Employment Information Request','leslie@mavrix.one','Leslie Staron','<!DOCTYPE html>\r\n<html><meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\"><body>\r\n<p style=\"margin:0;\">Hi Rick,</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\">It looks like page 5, the I-9 Section 1, still needs to be completed.  When you have time, please complete and forward to me.</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\">Thanks!</p><p style=\"margin:0;\">Leslie</p><p style=\"margin:0;\"> </p><div class=\"quote\"><p style=\"margin:0;\">\"Rick\" rick@mavrix.one – September 15, 2025 5:23 AM<br> </p><blockquote><p style=\"margin:0;\">These look ok?</p><p style=\"margin:0;\"><br> </p><p style=\"margin:0;\"><br> </p><p style=\"margin:0;\">Rick Mislan, PhD, </p><p style=\"margin:0;\">Founder, CTO</p><p style=\"margin:0;\"><img src=\"cid:E44AE5E5-3B26-4B70-B1FF-67AD1E73BC70\" alt=\"cid:E44AE5E5-3B26-4B70-B1FF-67AD1E73BC70\"><br> </p><p style=\"margin:0;\"><a href=\"https://mavrix1.com/\">https://mavrix1.com</a></p><p style=\"margin:0;\"><br> </p><p style=\"margin:0;\">On September 15, 2025 at 5:07:31 AM, Leslie Staron (<a href=\"/apps/mail/mailto?to=leslie@mavrix.one\">leslie@mavrix.one</a>) wrote:</p><blockquote><p style=\"margin:0;\">Hi Rick, <br><br>Please complete the attachments necessary to begin the Mavrix1 payroll/benefit processes and return to me today. <br><br>-Employee Information - Confirm and complete the blank information. <br>-W-4 &amp; I-9 Employment Forms - Complete Page 1 (W-4), Page 5 (I-9 Section 1).  *Digital signature is required.  The quickest way is to Create a New Digital ID and Save to File. <br><br>If you have any questions, please let me know. <br><br>Thank you, <br>Leslie</p></blockquote><p style=\"margin:0;\"><br><br> </p></blockquote></div>\r\n</body></html>','Hi Rick,\r\n \r\nIt looks like page 5, the I-9 Section 1, still needs to be completed.\r\n When you have time, please complete and forward to me.\r\n \r\nThanks!\r\nLeslie\r\n \r\n\"Rick\" rick@mavrix.one – September 15, 2025 5:23 AM \r\n\r\n> These look ok?\r\n>  \r\n>  \r\n> Rick Mislan, PhD, \r\n> Founder, CTO\r\n>  \r\n> https://mavrix1.com\r\n>  \r\n> On September 15, 2025 at 5:07:31 AM, Leslie Staron (leslie@mavrix.one)\r\n> wrote:\r\n>\r\n>> Hi Rick, Please complete the attachments necessary to begin the Mavrix1\r\n>> payroll/benefit processes and return to me today. -Employee Information\r\n>> - Confirm and complete the blank information. -W-4 & I-9 Employment\r\n>> Forms - Complete Page 1 (W-4), Page 5 (I-9 Section 1).  *Digital\r\n>> signature is required.  The quickest way is to Create a New Digital ID\r\n>> and Save to File. If you have any questions, please let me know. Thank\r\n>> you, Leslie\r\n>\r\n>  ',0,0,0,0,0,0,'2025-09-15 13:52:39','2025-12-09 19:28:27','2025-12-09 19:28:27','2025-12-09 19:28:27',NULL,NULL,NULL),
(725,4,'<20250915141506.Horde.YYDCYHKFCasXfiMJljrDWv5@e2c5b0f60979>',NULL,NULL,'Re: Urgent: Employment Information Request','leslie@mavrix.one','Leslie Staron','<!DOCTYPE html>\r\n<html><meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\"><body>\r\n<p style=\"margin:0;\">Perfecto!  Thank you.</p><p style=\"margin:0;\"> </p><div class=\"quote\"><p style=\"margin:0;\">\"Rick\" rick@mavrix.one – September 15, 2025 10:00 AM<br> </p><blockquote><p style=\"margin:0;\">This look better?</p><p style=\"margin:0;\">Tha<br> </p><p style=\"margin:0;\">Rick Mislan, PhD, </p><p style=\"margin:0;\">Founder, CTO</p><p style=\"margin:0;\"><img src=\"cid:38ACC7AE-469E-429B-8F93-335CABB3FCCB\" alt=\"cid:38ACC7AE-469E-429B-8F93-335CABB3FCCB\"><br> </p><p style=\"margin:0;\"><a href=\"https://mavrix1.com/\">https://mavrix1.com</a></p><p style=\"margin:0;\"><br> </p><p style=\"margin:0;\">On September 15, 2025 at 9:52:40 AM, Leslie Staron (<a href=\"/apps/mail/mailto?to=leslie@mavrix.one\">leslie@mavrix.one</a>) wrote:</p><blockquote><p style=\"margin:0;\">Hi Rick,</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\">It looks like page 5, the I-9 Section 1, still needs to be completed.  When you have time, please complete and forward to me.</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\">Thanks!</p><p style=\"margin:0;\">Leslie</p><p style=\"margin:0;\"> </p><div class=\"quote\"><p style=\"margin:0;\">\"Rick\" rick@mavrix.one – September 15, 2025 5:23 AM<br> </p><blockquote><p style=\"margin:0;\">These look ok?</p><p style=\"margin:0;\"><br> </p><p style=\"margin:0;\"><br> </p><p style=\"margin:0;\">Rick Mislan, PhD, </p><p style=\"margin:0;\">Founder, CTO</p><p style=\"margin:0;\"><img src=\"cid:E44AE5E5-3B26-4B70-B1FF-67AD1E73BC70\" alt=\"cid:E44AE5E5-3B26-4B70-B1FF-67AD1E73BC70\"><br> </p><p style=\"margin:0;\"><a href=\"https://mavrix1.com/\">https://mavrix1.com</a></p><p style=\"margin:0;\"><br> </p><p style=\"margin:0;\">On September 15, 2025 at 5:07:31 AM, Leslie Staron (<a href=\"https:/apps/mail/mailto?to=leslie@mavrix.one\">leslie@mavrix.one</a>) wrote:</p><blockquote><p style=\"margin:0;\">Hi Rick, <br><br>Please complete the attachments necessary to begin the Mavrix1 payroll/benefit processes and return to me today. <br><br>-Employee Information - Confirm and complete the blank information. <br>-W-4 &amp; I-9 Employment Forms - Complete Page 1 (W-4), Page 5 (I-9 Section 1).  *Digital signature is required.  The quickest way is to Create a New Digital ID and Save to File. <br><br>If you have any questions, please let me know. <br><br>Thank you, <br>Leslie</p></blockquote><p style=\"margin:0;\"><br><br> </p></blockquote></div></blockquote><p style=\"margin:0;\"><br><br> </p></blockquote></div>\r\n</body></html>','Perfecto!  Thank you.\r\n \r\n\"Rick\" rick@mavrix.one – September 15, 2025 10:00 AM \r\n\r\n> This look better?\r\n> Tha \r\n> Rick Mislan, PhD, \r\n> Founder, CTO\r\n>  \r\n> https://mavrix1.com\r\n>  \r\n> On September 15, 2025 at 9:52:40 AM, Leslie Staron (leslie@mavrix.one)\r\n> wrote:\r\n>\r\n>> Hi Rick,\r\n>>  \r\n>> It looks like page 5, the I-9 Section 1, still needs to be completed.\r\n>>  When you have time, please complete and forward to me.\r\n>>  \r\n>> Thanks!\r\n>> Leslie\r\n>>  \r\n>> \"Rick\" rick@mavrix.one – September 15, 2025 5:23 AM \r\n>>\r\n>>> These look ok?\r\n>>>  \r\n>>>  \r\n>>> Rick Mislan, PhD, \r\n>>> Founder, CTO\r\n>>>  \r\n>>> https://mavrix1.com\r\n>>>  \r\n>>> On September 15, 2025 at 5:07:31 AM, Leslie Staron\r\n(leslie@mavrix.one)\r\n>>> wrote:\r\n>>>\r\n>>>> Hi Rick, Please complete the attachments necessary to begin the\r\n>>>> Mavrix1 payroll/benefit processes and return to me today. -Employee\r\n>>>> Information - Confirm and complete the blank information. -W-4 & I-9\r\n>>>> Employment Forms - Complete Page 1 (W-4), Page 5 (I-9 Section 1).\r\n>>>>  *Digital signature is required.  The quickest way is to Create a\r\nNew\r\n>>>> Digital ID and Save to File. If you have any questions, please let me\r\n>>>> know. Thank you, Leslie\r\n>>>\r\n>>>  \r\n>\r\n>  ',0,0,0,0,0,0,'2025-09-15 14:15:06','2025-12-09 19:28:28','2025-12-09 19:28:28','2025-12-09 19:28:28',NULL,NULL,NULL),
(726,4,'<20250915150036.Horde.H7IxG3hfDzLq6D42ll29ReG@mavrix1.aponte.to>',NULL,NULL,'Re: Urgent: Employment Information Request','leslie@mavrix.one','Leslie Staron','<!DOCTYPE html>\r\n<html><meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\"><body>\r\n<p style=\"margin:0;\">And...You get the \"ee of the day\" award for sending your forms to me first and you\'re ahead of the game!  Part of my strategy to get the completed forms back asap involved not immediately asking for copies of the employment documents yet.  As soon as you have a chance, please forward them to me.</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\">These options are most common, but you can provide any combination of employment documents listed on the last page of the W-4/I-9 document I sent:</p><p style=\"margin:0;\">-Passport Picture AND Bar Code Pages</p><p style=\"margin:0;\">OR</p><p style=\"margin:0;\">-Driver\'s License AND Social Security Card OR Birth Certificate</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\">Thanks,</p><p style=\"margin:0;\">Leslie</p><p style=\"margin:0;\"> </p><div class=\"quote\"><p style=\"margin:0;\">\"Rick\" rick@mavrix.one – September 15, 2025 10:15 AM<br> </p><blockquote><p style=\"margin:0;\">Yay, my first win for the day.</p><p style=\"margin:0;\">But, dDo you need a copy of my Passport or Drivers License yet?</p><p style=\"margin:0;\">Thanks again!</p><p style=\"margin:0;\">Rick</p><p style=\"margin:0;\"><br> </p><p style=\"margin:0;\"><br> </p><p style=\"margin:0;\">Rick Mislan, PhD, </p><p style=\"margin:0;\">Founder, CTO</p><p style=\"margin:0;\"><img src=\"cid:13372826-E6C6-4342-80FA-C3DC4949341F\" alt=\"cid:13372826-E6C6-4342-80FA-C3DC4949341F\"><br> </p><p style=\"margin:0;\"><a href=\"https://mavrix1.com/\">https://mavrix1.com</a></p><p style=\"margin:0;\"><br> </p><p style=\"margin:0;\">On September 15, 2025 at 10:15:08 AM, Leslie Staron (<a href=\"/apps/mail/mailto?to=leslie@mavrix.one\">leslie@mavrix.one</a>) wrote:</p><blockquote><p style=\"margin:0;\">Perfecto!  Thank you.</p><p style=\"margin:0;\"> </p><div class=\"quote\"><p style=\"margin:0;\">\"Rick\" rick@mavrix.one – September 15, 2025 10:00 AM<br> </p><blockquote><p style=\"margin:0;\">This look better?</p><p style=\"margin:0;\">Tha<br> </p><p style=\"margin:0;\">Rick Mislan, PhD, </p><p style=\"margin:0;\">Founder, CTO</p><p style=\"margin:0;\"><img src=\"cid:38ACC7AE-469E-429B-8F93-335CABB3FCCB\" alt=\"cid:38ACC7AE-469E-429B-8F93-335CABB3FCCB\"><br> </p><p style=\"margin:0;\"><a href=\"https://mavrix1.com/\">https://mavrix1.com</a></p><p style=\"margin:0;\"><br> </p><p style=\"margin:0;\">On September 15, 2025 at 9:52:40 AM, Leslie Staron (<a href=\"https:/apps/mail/mailto?to=leslie@mavrix.one\">leslie@mavrix.one</a>) wrote:</p><blockquote><p style=\"margin:0;\">Hi Rick,</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\">It looks like page 5, the I-9 Section 1, still needs to be completed.  When you have time, please complete and forward to me.</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\">Thanks!</p><p style=\"margin:0;\">Leslie</p><p style=\"margin:0;\"> </p><div class=\"quote\"><p style=\"margin:0;\">\"Rick\" rick@mavrix.one – September 15, 2025 5:23 AM<br> </p><blockquote><p style=\"margin:0;\">These look ok?</p><p style=\"margin:0;\"><br> </p><p style=\"margin:0;\"><br> </p><p style=\"margin:0;\">Rick Mislan, PhD, </p><p style=\"margin:0;\">Founder, CTO</p><p style=\"margin:0;\"><img src=\"cid:E44AE5E5-3B26-4B70-B1FF-67AD1E73BC70\" alt=\"cid:E44AE5E5-3B26-4B70-B1FF-67AD1E73BC70\"><br> </p><p style=\"margin:0;\"><a href=\"https://mavrix1.com/\">https://mavrix1.com</a></p><p style=\"margin:0;\"><br> </p><p style=\"margin:0;\">On September 15, 2025 at 5:07:31 AM, Leslie Staron (<a href=\"https://mavrix1.aponte.to/apps/mail/mailto?to=leslie@mavrix.one\">leslie@mavrix.one</a>) wrote:</p><blockquote><p style=\"margin:0;\">Hi Rick, <br><br>Please complete the attachments necessary to begin the Mavrix1 payroll/benefit processes and return to me today. <br><br>-Employee Information - Confirm and complete the blank information. <br>-W-4 &amp; I-9 Employment Forms - Complete Page 1 (W-4), Page 5 (I-9 Section 1).  *Digital signature is required.  The quickest way is to Create a New Digital ID and Save to File. <br><br>If you have any questions, please let me know. <br><br>Thank you, <br>Leslie</p></blockquote><p style=\"margin:0;\"><br><br> </p></blockquote></div></blockquote><p style=\"margin:0;\"><br><br> </p></blockquote></div></blockquote><p style=\"margin:0;\"><br><br> </p></blockquote></div>\r\n</body></html>','And...You get the \"ee of the day\" award for sending your forms to me first\r\nand you\'re ahead of the game!  Part of my strategy to get the completed\r\nforms back asap involved not immediately asking for copies of the\r\nemployment documents yet.  As soon as you have a chance, please forward\r\nthem to me.\r\n \r\nThese options are most common, but you can provide any combination of\r\nemployment documents listed on the last page of the W-4/I-9 document I\r\nsent:\r\n-Passport Picture AND Bar Code Pages\r\nOR\r\n-Driver\'s License AND Social Security Card OR Birth Certificate\r\n \r\nThanks,\r\nLeslie\r\n \r\n\"Rick\" rick@mavrix.one – September 15, 2025 10:15 AM \r\n\r\n> Yay, my first win for the day.\r\n> But, dDo you need a copy of my Passport or Drivers License yet?\r\n> Thanks again!\r\n> Rick\r\n>  \r\n>  \r\n> Rick Mislan, PhD, \r\n> Founder, CTO\r\n>  \r\n> https://mavrix1.com\r\n>  \r\n> On September 15, 2025 at 10:15:08 AM, Leslie Staron (leslie@mavrix.one)\r\n> wrote:\r\n>\r\n>> Perfecto!  Thank you.\r\n>>  \r\n>> \"Rick\" rick@mavrix.one – September 15, 2025 10:00 AM \r\n>>\r\n>>> This look better?\r\n>>> Tha \r\n>>> Rick Mislan, PhD, \r\n>>> Founder, CTO\r\n>>>  \r\n>>> https://mavrix1.com\r\n>>>  \r\n>>> On September 15, 2025 at 9:52:40 AM, Leslie Staron\r\n(leslie@mavrix.one)\r\n>>> wrote:\r\n>>>\r\n>>>> Hi Rick,\r\n>>>>  \r\n>>>> It looks like page 5, the I-9 Section 1, still needs to be completed.\r\n>>>>  When you have time, please complete and forward to me.\r\n>>>>  \r\n>>>> Thanks!\r\n>>>> Leslie\r\n>>>>  \r\n>>>> \"Rick\" rick@mavrix.one – September 15, 2025 5:23 AM \r\n>>>>\r\n>>>>> These look ok?\r\n>>>>>  \r\n>>>>>  \r\n>>>>> Rick Mislan, PhD, \r\n>>>>> Founder, CTO\r\n>>>>>  \r\n>>>>> https://mavrix1.com\r\n>>>>>  \r\n>>>>> On September 15, 2025 at 5:07:31 AM, Leslie Staron\r\n>>>>> (leslie@mavrix.one) wrote:\r\n>>>>>\r\n>>>>>> Hi Rick, Please complete the attachments necessary to begin the\r\n>>>>>> Mavrix1 payroll/benefit processes and return to me today. -Employee\r\n>>>>>> Information - Confirm and complete the blank information. -W-4 &\r\n>>>>>> I-9 Employment Forms - Complete Page 1 (W-4), Page 5 (I-9 Section\r\n>>>>>> 1).  *Digital signature is required.  The quickest way is to\r\nCreate\r\n>>>>>> a New Digital ID and Save to File. If you have any questions,\r\n>>>>>> please let me know. Thank you, Leslie\r\n>>>>>\r\n>>>>>  \r\n>>>\r\n>>>  \r\n>\r\n>  ',0,0,0,0,0,0,'2025-09-15 15:00:36','2025-12-09 19:28:28','2025-12-09 19:28:28','2025-12-09 19:28:28',NULL,NULL,NULL),
(727,4,'<CABEiVu=nNno-_T29tR12-sv1Wxj=0Q7AahXC3x-wGCCbkQsUJA@mail.gmail.com>',NULL,NULL,'Rick / intro to Century Mold','jen@deeptechgtm.com','Jennifer Kay','<div dir=\"ltr\"><div>Hi all,</div><div><br></div><div>Team Century Mold (aka the best in the biz), please meet my friend and colleague Rick Mislan. In addition to teaching at RIT and living in your backyard, Rick is connected to a family office that&#39;s recently secured a $1.5B fund that they are looking to deploy against hardening American supply chains for defense use cases, specifically focusing on autonomy and unmanned systems.</div><div><br></div><div>Rick may want to tour the Rochester plant and discuss other collaboration opportunities. I&#39;ll let y&#39;all take it from here!</div><div><br></div><div>Thanks,</div><div>Jen</div><div><br></div><div><br></div><div><br></div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:517.609px;vertical-align:-webkit-baseline-middle;font-size:medium;font-family:Arial\"><tbody><tr style=\"margin:0px;padding:0px;border:0px;color:rgb(255,255,255)\"><td style=\"padding:0px;border:0px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:517.609px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:top\"><h2 color=\"#231e4a\" style=\"font-size:18px;line-height:1.38;margin:0px;color:rgb(35,30,74)\"><span>Jennifer</span><span> </span><span>Kay</span></h2><p color=\"#231e4a\" style=\"font-size:14px;line-height:22px;margin:0px;color:rgb(35,30,74)\"><span>Principal</span><span> | </span><span>Deep Tech Go to Market</span></p><p color=\"#231e4a\" style=\"font-size:14px;line-height:22px;margin:0px;color:rgb(35,30,74)\"><span>Offering commercial go to market for dual-use tech</span></p><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:472.609px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td height=\"30\" style=\"padding:0px;border:0px\"></td></tr><tr style=\"margin:0px;padding:0px;border:0px\"><td color=\"#231E4A\" width=\"auto\" height=\"1\" style=\"padding:0px;border-top:0px;border-right:0px;border-bottom:1px solid rgb(35,30,74);border-left:none;width:472.609px;display:block\"></td></tr><tr style=\"margin:0px;padding:0px;border:0px\"><td height=\"30\" style=\"padding:0px;border:0px\"></td></tr></tbody></table><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:472.609px;vertical-align:-webkit-baseline-middle\"><tbody><tr height=\"25\" style=\"margin:0px;padding:0px;border:0px;vertical-align:middle\"><td width=\"30\" style=\"padding:0px;border:0px;vertical-align:middle\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:30px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:bottom\"><span color=\"#231E4A\" width=\"11\" style=\"display:inline-block;background-color:rgb(35,30,74)\"><img src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/phone-icon-2x.png\" color=\"#231E4A\" alt=\"mobilePhone\" width=\"13\" style=\"border-style:none;display:block\"></span></td></tr></tbody></table></td><td style=\"padding:0px;border:0px;color:rgb(35,30,74)\"><a href=\"tel:615-630-8068\" color=\"#231e4a\" style=\"background-color:rgba(0,0,0,0);color:rgb(35,30,74);font-size:12px\" target=\"_blank\">615-630-8068</a></td></tr><tr height=\"25\" style=\"margin:0px;padding:0px;border:0px;vertical-align:middle\"><td width=\"30\" style=\"padding:0px;border:0px;vertical-align:middle\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:30px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:bottom\"><span color=\"#231E4A\" width=\"11\" style=\"display:inline-block;background-color:rgb(35,30,74)\"><img src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/email-icon-2x.png\" color=\"#231E4A\" alt=\"emailAddress\" width=\"13\" style=\"border-style:none;display:block\"></span></td></tr></tbody></table></td><td style=\"padding:0px;border:0px\"><a href=\"mailto:Jen@DeepTechGTM.com\" color=\"#231e4a\" style=\"background-color:rgba(0,0,0,0);color:rgb(35,30,74);font-size:12px\" target=\"_blank\">Jen@DeepTechGTM.com</a></td></tr><tr height=\"25\" style=\"margin:0px;padding:0px;border:0px;vertical-align:middle\"><td width=\"30\" style=\"padding:0px;border:0px;vertical-align:middle\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:30px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:bottom\"><span color=\"#231E4A\" width=\"11\" style=\"display:inline-block;background-color:rgb(35,30,74)\"><img src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/link-icon-2x.png\" color=\"#231E4A\" alt=\"website\" width=\"13\" style=\"border-style:none;display:block\"></span></td></tr></tbody></table></td><td style=\"padding:0px;border:0px\"><a href=\"https://deeptechgtm.com/\" color=\"#231e4a\" style=\"background-color:rgba(0,0,0,0);color:rgb(35,30,74);font-size:12px\" target=\"_blank\">DeepTechGTM.com</a></td></tr></tbody></table></td><td width=\"45\" style=\"padding:0px;border:0px\"><div></div></td></tr></tbody></table></td></tr><tr style=\"margin:0px;padding:0px;border:0px;color:rgb(255,255,255)\"></tr></tbody></table><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:546.609px;vertical-align:-webkit-baseline-middle;font-size:medium;font-family:Arial\"><tbody><tr style=\"margin:0px;padding:0px;border:0px;color:rgb(255,255,255)\"><td style=\"padding:0px;border:0px\"><br></td></tr></tbody></table></div></div></div><img src=\"https://d2LSMm04.na1.hs-salescrm-engage.com/Cto/2O+23284/d2LSMm04/R5Q8b48CrN56kt9Z2fD5tW3DNv9w1_jP7GW1V3GZL1W-WmZW1GzmYc3LCDCYW3M0g1n1N6TqrW3yRLx522VWWjf1Q2MDY12\" alt=\"\" height=\"1\" width=\"1\" style=\"display: none !important;\"><div></div><div id=\"data-hbsasc-v0-03d69034-85f4-4c32-92c1-252db170ae7d\"></div></div>','Hi all,\r\n\r\nTeam Century Mold (aka the best in the biz), please meet my friend and\r\ncolleague Rick Mislan. In addition to teaching at RIT and living in your\r\nbackyard, Rick is connected to a family office that\'s recently secured a\r\n$1.5B fund that they are looking to deploy against hardening American\r\nsupply chains for defense use cases, specifically focusing on autonomy and\r\nunmanned systems.\r\n\r\nRick may want to tour the Rochester plant and discuss other collaboration\r\nopportunities. I\'ll let y\'all take it from here!\r\n\r\nThanks,\r\nJen\r\n\r\n\r\n\r\n\r\nJennifer Kay\r\n\r\nPrincipal | Deep Tech Go to Market\r\n\r\nOffering commercial go to market for dual-use tech\r\n[image: mobilePhone] 615-630-8068\r\n[image: emailAddress] Jen@DeepTechGTM.com\r\n[image: website] DeepTechGTM.com <https://deeptechgtm.com/>',0,0,0,0,0,0,'2025-09-16 00:56:11','2025-12-09 19:28:28','2025-12-09 19:28:28','2025-12-09 19:28:28',NULL,NULL,NULL),
(728,4,'<363892895.1391840.1757984535959@lor1-app56290.prod.linkedin.com>',NULL,NULL,'Miami-Dade County Mayor, Miami-Dade County recently posted','updates-noreply@linkedin.com','LinkedIn','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n              @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n            </style> <style>\r\n            @media (max-width: 480px) { .inline-button, .inline-button table { display: none !important; }\r\n            .full-width-button, .full-width-button table { display: table !important; } }\r\n          </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n            \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n            \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">Today, we celebrated a critical investment in Miami-Dade’s future-ready…</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-top: 0px; margin-bottom: 0px; margin-left: auto; margin-right: auto; width: 512px; max-width: 512px; padding: 0px;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"bg-color-background-container \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-header-0-home_glimmer_static_badging_with_count&amp;trkEmail=eml-email_network_conversations_01-header-0-home_glimmer_static_badging_with_count-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img class=\"h-[37px] w-[101px]\" alt=\"LinkedIn\" src=\"https://static.licdn.com/sc/h/2fp5x7ci191mxbdy1eynscn59\" data-test-header-static-badging-img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 37px; width: 101px;\" width=\"101\" height=\"37\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" data-test-header-notification-badges style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/messaging/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-header-0-messaging_glimmer&amp;trkEmail=eml-email_network_conversations_01-header-0-messaging_glimmer-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Messaging icon\" src=\"https://static.licdn.com/sc/h/ekkp8yi9j4xx65umpdz3rdmbp\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-header-0-my_network_glimmer&amp;trkEmail=eml-email_network_conversations_01-header-0-my_network_glimmer-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Mynetwork icon\" src=\"https://static.licdn.com/sc/h/4yxfb6j5ycpjfjgehfqgmdx9w\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/notifications/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-header-0-notifications_glimmer&amp;trkEmail=eml-email_network_conversations_01-header-0-notifications_glimmer-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Notifications icon\" src=\"https://static.licdn.com/sc/h/eh1e9j5bszh6p379hn269p3ps\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"p-0 !pb-0 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0px; padding-bottom: 0px !important;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7371252360637214720?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7371252360637214720?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"actor-card-default\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQEWB2KrIaO9pw/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1732242935528?e=2147483647&amp;v=beta&amp;t=P3XyZd0-Y6nSQO_rp7Gxw_cXEaM27Yn1FYHGaJQgzH0\" alt=\"Daniella Levine Cava\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%); display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Daniella Levine Cava </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> Mayor, Miami-Dade County at Miami-Dade County </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> <td class=\"!w-[80px]\" data-test-id=\"network-post-follow-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 80px !important;\" width=\"80\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=daniella-levine-cava-54826112&amp;entityUrn=ADoAAAKHZ8gBiJXDG9jlTikQO3FJNGe8pjVZZMw&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" aria-label=\"Follow\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-tertiary-emphasis border-none button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: none; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=daniella-levine-cava-54826112&amp;entityUrn=ADoAAAKHZ8gBiJXDG9jlTikQO3FJNGe8pjVZZMw&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline \" style=\"text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 text-md leading-regular text-system-gray-90\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> Today, we celebrated a critical investment in Miami-Dade’s future-ready infrastructure: over $1.6 million in… </span> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7371252360637214720?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-truncated~share~message-0-see~more&amp;trkEmail=eml-email_network_conversations_01-truncated~share~message-0-see~more-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <span data-test-id=\"truncated-message-see-more\" class=\"text-color-link font-bold\" style=\"font-weight: 600; color: #0a66c2;\"> see more </span> </a> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"w-auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: auto;\"> <tbody> <tr> <td class=\"pr-0.5\" data-test-reaction=\"LIKE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/91tdscn0h1aaoefui9crf11j6\" alt=\"LIKE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"PRAISE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/adig5urqxi03qzuy6iyjfm1b5\" alt=\"PRAISE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"EMPATHY\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/evs2x5zfnz5g0xrc6u22treq2\" alt=\"EMPATHY\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"reactions-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 51 </td> <td class=\"px-0.5\" data-test-id=\"separator\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\">·</td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"comments-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 2 Comments </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button w-full koshin__button-with-full-width\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7371252360637214720?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; width: 100% !important; display: block !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7371252360637214720?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; width: 100% !important; display: block !important;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr><td class=\"h-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 16px;\" height=\"16\"></td></tr> <tr> <td class=\"rounded-md\" data-test-id=\"network-post-update-card\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7371252360637214720?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image&amp;trkEmail=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"block w-full h-full\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block; height: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-cool-gray-20 rounded-md\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; background-color: #edf3f8;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-center bg-no-repeat h-[252px] bg-system-gray-40\" align=\"center\" data-test-id=\"update-card-container\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 252px; background-color: #cfcfcf; background-position: center; background-repeat: no-repeat; background-size: cover; background-image: url(&quot;https://media.licdn.com/dms/image/v2/D4E22AQGdumBeh3kqVw/feedshare-shrink_800/B4EZkvy7zgKYAg-/0/1757443510695?e=1761177600&amp;v=beta&amp;t=gNBPwA7k-AJXxbIwM6R_DtsXHKfZwgHOz7xEBWMWPTE&quot;);\" height=\"252\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"h-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 100%;\" height=\"100%\"> <tbody> <tr> <td align=\"center\" class=\"overflow-hidden\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; overflow: hidden;\"> <img class=\"w-[448px] h-[252px] hidden hidden\" src=\"https://media.licdn.com/dms/image/v2/D4E22AQGdumBeh3kqVw/feedshare-shrink_800/B4EZkvy7zgKYAg-/0/1757443510695?e=1761177600&amp;v=beta&amp;t=gNBPwA7k-AJXxbIwM6R_DtsXHKfZwgHOz7xEBWMWPTE\" alt=\"View image\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: none; height: 252px; width: 448px;\" width=\"448\" height=\"252\"> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7367187956836495361?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7367187956836495361?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"actor-card-default\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://media.licdn.com/dms/image/v2/C4D03AQFQWE29mok5rQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1649171645722?e=2147483647&amp;v=beta&amp;t=70Og9jgCYkoaSlPW0Zg44X--_xbYdN1Ga8aKANchgpU\" alt=\"Jeff Brandes\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%); display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Jeff Brandes </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> President at Florida Policy Project </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> <td class=\"!w-[80px]\" data-test-id=\"network-post-follow-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 80px !important;\" width=\"80\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=jeffbrandes&amp;entityUrn=ADoAAADDZOoBWBE2hH5yOBfYE76P7RoEBWAYrQI&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" aria-label=\"Follow\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-tertiary-emphasis border-none button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: none; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=jeffbrandes&amp;entityUrn=ADoAAADDZOoBWBE2hH5yOBfYE76P7RoEBWAYrQI&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline \" style=\"text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 text-md leading-regular text-system-gray-90\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> We’re less than 70 days away from the 13th Annual Florida Automated Vehicle Summit — the Southeast’s premier… </span> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7367187956836495361?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-truncated~share~message-0-see~more&amp;trkEmail=eml-email_network_conversations_01-truncated~share~message-0-see~more-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <span data-test-id=\"truncated-message-see-more\" class=\"text-color-link font-bold\" style=\"font-weight: 600; color: #0a66c2;\"> see more </span> </a> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"w-auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: auto;\"> <tbody> <tr> <td class=\"pr-0.5\" data-test-reaction=\"LIKE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/91tdscn0h1aaoefui9crf11j6\" alt=\"LIKE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"PRAISE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/adig5urqxi03qzuy6iyjfm1b5\" alt=\"PRAISE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"reactions-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 26 </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button w-full koshin__button-with-full-width\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7367187956836495361?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; width: 100% !important; display: block !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7367187956836495361?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; width: 100% !important; display: block !important;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr><td class=\"h-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 16px;\" height=\"16\"></td></tr> <tr> <td class=\"rounded-md\" data-test-id=\"network-post-update-card\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7367187956836495361?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image&amp;trkEmail=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"block w-full h-full\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block; height: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-cool-gray-20 rounded-md\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; background-color: #edf3f8;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-center bg-no-repeat h-[252px] bg-system-gray-40\" align=\"center\" data-test-id=\"update-card-container\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 252px; background-color: #cfcfcf; background-position: center; background-repeat: no-repeat; background-size: cover; background-image: url(&quot;https://media.licdn.com/dms/image/sync/v2/D4E27AQGetQXgtCwCIA/articleshare-shrink_800/B4EZYVori3HMAU-/0/1744119708314?e=1758592800&amp;v=beta&amp;t=g0eTDdp-s9dTJaos_xouBGpjHorNdU-Y5C7qKYw4XbY&quot;);\" height=\"252\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"h-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 100%;\" height=\"100%\"> <tbody> <tr> <td align=\"center\" class=\"overflow-hidden\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; overflow: hidden;\"> <img class=\"w-[448px] h-[252px] hidden hidden\" src=\"https://media.licdn.com/dms/image/sync/v2/D4E27AQGetQXgtCwCIA/articleshare-shrink_800/B4EZYVori3HMAU-/0/1744119708314?e=1758592800&amp;v=beta&amp;t=g0eTDdp-s9dTJaos_xouBGpjHorNdU-Y5C7qKYw4XbY\" alt=\"View image\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: none; height: 252px; width: 448px;\" width=\"448\" height=\"252\"> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"p-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 16px;\"> <p class=\"text-md font-bold leading-regular text-black\" style=\"margin: 0; font-size: 16px; font-weight: 600; line-height: 1.25; color: #000000;\"> Register for the 2025 FAV Summit - 2025 FAV Summit </p> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7369755208400228353?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7369755208400228353?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"actor-card-default\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://media.licdn.com/dms/image/v2/D5603AQFAIrT0x9bE0A/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1682372161223?e=2147483647&amp;v=beta&amp;t=8T465LmXqk9JV0lxxyKmDy-s3_gV56WkPwggIQT3Urk\" alt=\"Jon Tavarez\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%); display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Jon Tavarez </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> Founder, Pro Housekeepers | Early-Stage Investor |… </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> <td class=\"!w-[80px]\" data-test-id=\"network-post-follow-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 80px !important;\" width=\"80\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=jontavarez&amp;entityUrn=ADoAAAVugaEBHlCv0r_KhmiQU-tkOXwyey3KOiE&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" aria-label=\"Follow\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-tertiary-emphasis border-none button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: none; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=jontavarez&amp;entityUrn=ADoAAAVugaEBHlCv0r_KhmiQU-tkOXwyey3KOiE&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline \" style=\"text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 text-md leading-regular text-system-gray-90\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> 🔥 Tampa Bay brought some serious heat this week... from a 100-year-old glassmaker making billion-dollar… </span> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7369755208400228353?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-truncated~share~message-0-see~more&amp;trkEmail=eml-email_network_conversations_01-truncated~share~message-0-see~more-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <span data-test-id=\"truncated-message-see-more\" class=\"text-color-link font-bold\" style=\"font-weight: 600; color: #0a66c2;\"> see more </span> </a> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"w-auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: auto;\"> <tbody> <tr> <td class=\"pr-0.5\" data-test-reaction=\"LIKE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/91tdscn0h1aaoefui9crf11j6\" alt=\"LIKE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"EMPATHY\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/evs2x5zfnz5g0xrc6u22treq2\" alt=\"EMPATHY\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"reactions-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 23 </td> <td class=\"px-0.5\" data-test-id=\"separator\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\">·</td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"comments-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 2 Comments </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button w-full koshin__button-with-full-width\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7369755208400228353?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; width: 100% !important; display: block !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7369755208400228353?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; width: 100% !important; display: block !important;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr><td class=\"h-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 16px;\" height=\"16\"></td></tr> <tr> <td class=\"rounded-md\" data-test-id=\"network-post-update-card\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7369755208400228353?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image&amp;trkEmail=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"block w-full h-full\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block; height: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-cool-gray-20 rounded-md\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; background-color: #edf3f8;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-center bg-no-repeat auto pt-[71%] pb-[71%] bg-system-gray-40\" align=\"center\" data-test-id=\"update-card-container\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #cfcfcf; background-position: center; background-repeat: no-repeat; padding-top: 71%; padding-bottom: 71%; background-size: cover; background-image: url(&quot;https://media.licdn.com/dms/image/v2/D4D22AQG4H9RGKfYxzA/feedshare-shrink_2048_1536/B4DZkahTsNGkA4-/0/1757086563513?e=1761177600&amp;v=beta&amp;t=bmgzPCQEwojissukNwWIA-VWl-0Bs6oRLN5etmkuuhA&quot;);\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"h-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 100%;\" height=\"100%\"> <tbody> <tr> <td align=\"center\" class=\"overflow-hidden\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; overflow: hidden;\"> <img class=\"w-[448px] h-[252px] hidden hidden\" src=\"https://media.licdn.com/dms/image/v2/D4D22AQG4H9RGKfYxzA/feedshare-shrink_2048_1536/B4DZkahTsNGkA4-/0/1757086563513?e=1761177600&amp;v=beta&amp;t=bmgzPCQEwojissukNwWIA-VWl-0Bs6oRLN5etmkuuhA\" alt=\"View image\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: none; height: 252px; width: 448px;\" width=\"448\" height=\"252\"> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7369087879777624067?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7369087879777624067?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"actor-card-default\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://media.licdn.com/dms/image/v2/C4E03AQGfcDgLoTWLoA/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1538159213329?e=2147483647&amp;v=beta&amp;t=fwY04PQYaUjO1EZ0DbHlQhWYqBJz2ctRCmMUgkpxBPU\" alt=\"Andy Allen\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%); display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Andy Allen </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> Founder and CEO at Corner Lot Development </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> <td class=\"!w-[80px]\" data-test-id=\"network-post-follow-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 80px !important;\" width=\"80\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=andy-allen-91474a22&amp;entityUrn=ADoAAAS8wKAB3PrcNcUeFZYaBqzq2zNqztBcyI4&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" aria-label=\"Follow\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-tertiary-emphasis border-none button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: none; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=andy-allen-91474a22&amp;entityUrn=ADoAAAS8wKAB3PrcNcUeFZYaBqzq2zNqztBcyI4&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline \" style=\"text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 text-md leading-regular text-system-gray-90\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> We are happy to play a part in this catalytic development in downtown Jax alongside Bryan Moll Nick Halloran… </span> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7369087879777624067?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-truncated~share~message-0-see~more&amp;trkEmail=eml-email_network_conversations_01-truncated~share~message-0-see~more-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <span data-test-id=\"truncated-message-see-more\" class=\"text-color-link font-bold\" style=\"font-weight: 600; color: #0a66c2;\"> see more </span> </a> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"w-auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: auto;\"> <tbody> <tr> <td class=\"pr-0.5\" data-test-reaction=\"LIKE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/91tdscn0h1aaoefui9crf11j6\" alt=\"LIKE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"PRAISE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/adig5urqxi03qzuy6iyjfm1b5\" alt=\"PRAISE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"EMPATHY\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/evs2x5zfnz5g0xrc6u22treq2\" alt=\"EMPATHY\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"reactions-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 146 </td> <td class=\"px-0.5\" data-test-id=\"separator\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\">·</td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"comments-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 7 Comments </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button w-full koshin__button-with-full-width\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7369087879777624067?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; width: 100% !important; display: block !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7369087879777624067?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; width: 100% !important; display: block !important;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr><td class=\"h-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 16px;\" height=\"16\"></td></tr> <tr> <td class=\"rounded-md\" data-test-id=\"network-post-update-card\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7369087879777624067?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image&amp;trkEmail=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"block w-full h-full\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block; height: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-cool-gray-20 rounded-md\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; background-color: #edf3f8;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-center bg-no-repeat h-[252px] bg-system-gray-40\" align=\"center\" data-test-id=\"update-card-container\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 252px; background-color: #cfcfcf; background-position: center; background-repeat: no-repeat; background-size: cover; background-image: url(&quot;https://media.licdn.com/dms/image/sync/v2/D4E27AQG1KW12fhzZmg/articleshare-shrink_1280_800/B4EZkRB2TQIUAQ-/0/1756927321983?e=1758592800&amp;v=beta&amp;t=GuZH5i8eIc6xCv1-vwJXxuXkGnpoADIWp1l9UwMJzhk&quot;);\" height=\"252\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"h-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 100%;\" height=\"100%\"> <tbody> <tr> <td align=\"center\" class=\"overflow-hidden\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; overflow: hidden;\"> <img class=\"w-[448px] h-[252px] hidden hidden\" src=\"https://media.licdn.com/dms/image/sync/v2/D4E27AQG1KW12fhzZmg/articleshare-shrink_1280_800/B4EZkRB2TQIUAQ-/0/1756927321983?e=1758592800&amp;v=beta&amp;t=GuZH5i8eIc6xCv1-vwJXxuXkGnpoADIWp1l9UwMJzhk\" alt=\"View image\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: none; height: 252px; width: 448px;\" width=\"448\" height=\"252\"> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"p-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 16px;\"> <p class=\"text-md font-bold leading-regular text-black\" style=\"margin: 0; font-size: 16px; font-weight: 600; line-height: 1.25; color: #000000;\"> Publix confirmed for Downtown Jacksonville store in Pearl Square | Jax Daily Record </p> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7369677587893227520?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7369677587893227520?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"actor-card-default\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQH1AhsbsBI3ZQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1708305983160?e=2147483647&amp;v=beta&amp;t=8riMHd4u7vmkHdT8agWe2KRTikC3Q5gGX3C_-2j3Ivg\" alt=\"Laura DiBella\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%); display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Laura DiBella </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> Florida’s 1st Female Secretary of Commerce turned… </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> <td class=\"!w-[80px]\" data-test-id=\"network-post-follow-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 80px !important;\" width=\"80\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=lauradibella&amp;entityUrn=ADoAAACrHUQBQl8uwtCgL7A1WJZCgh_Pr6e-Kls&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" aria-label=\"Follow\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-tertiary-emphasis border-none button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: none; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=lauradibella&amp;entityUrn=ADoAAACrHUQBQl8uwtCgL7A1WJZCgh_Pr6e-Kls&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline \" style=\"text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 text-md leading-regular text-system-gray-90\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> Yesterday morning began with a flurry of activity that was a bit elevated than normal and there was a very… </span> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7369677587893227520?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-truncated~share~message-0-see~more&amp;trkEmail=eml-email_network_conversations_01-truncated~share~message-0-see~more-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <span data-test-id=\"truncated-message-see-more\" class=\"text-color-link font-bold\" style=\"font-weight: 600; color: #0a66c2;\"> see more </span> </a> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"w-auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: auto;\"> <tbody> <tr> <td class=\"pr-0.5\" data-test-reaction=\"LIKE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/91tdscn0h1aaoefui9crf11j6\" alt=\"LIKE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"PRAISE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/adig5urqxi03qzuy6iyjfm1b5\" alt=\"PRAISE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"EMPATHY\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/evs2x5zfnz5g0xrc6u22treq2\" alt=\"EMPATHY\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"reactions-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 411 </td> <td class=\"px-0.5\" data-test-id=\"separator\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\">·</td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"comments-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 296 Comments </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button w-full koshin__button-with-full-width\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7369677587893227520?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; width: 100% !important; display: block !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7369677587893227520?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; width: 100% !important; display: block !important;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr><td class=\"h-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 16px;\" height=\"16\"></td></tr> <tr> <td class=\"rounded-md\" data-test-id=\"network-post-update-card\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7369677587893227520?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image&amp;trkEmail=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"block w-full h-full\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block; height: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-cool-gray-20 rounded-md\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; background-color: #edf3f8;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-center bg-no-repeat h-[252px] bg-system-gray-40\" align=\"center\" data-test-id=\"update-card-container\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 252px; background-color: #cfcfcf; background-position: center; background-repeat: no-repeat; background-size: cover; background-image: url(&quot;https://media.licdn.com/dms/image/sync/v2/D4D27AQFR802DjYMkVQ/articleshare-shrink_800/B4DZkW1TBvGQAQ-/0/1757201674053?e=1758592800&amp;v=beta&amp;t=nyiwuHBQWY1LBgrTz43ZUg_hFImOb6V-zykbmVA9SdU&quot;);\" height=\"252\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"h-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 100%;\" height=\"100%\"> <tbody> <tr> <td align=\"center\" class=\"overflow-hidden\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; overflow: hidden;\"> <img class=\"w-[448px] h-[252px] hidden hidden\" src=\"https://media.licdn.com/dms/image/sync/v2/D4D27AQFR802DjYMkVQ/articleshare-shrink_800/B4DZkW1TBvGQAQ-/0/1757201674053?e=1758592800&amp;v=beta&amp;t=nyiwuHBQWY1LBgrTz43ZUg_hFImOb6V-zykbmVA9SdU\" alt=\"View image\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: none; height: 252px; width: 448px;\" width=\"448\" height=\"252\"> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"p-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 16px;\"> <p class=\"text-md font-bold leading-regular text-black\" style=\"margin: 0; font-size: 16px; font-weight: 600; line-height: 1.25; color: #000000;\"> Trump Nominates Two to Fill FMC Commissioner Vacancies </p> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"pt-4 pb-2 px-3 bg-color-background-canvas\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding-left: 24px; padding-right: 24px; padding-bottom: 16px; padding-top: 32px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-footer_promo-0-footer_see_all&amp;trkEmail=eml-email_network_conversations_01-footer_promo-0-footer_see_all-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" aria-label=\"See more on LinkedIn\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-footer_promo-0-footer_see_all&amp;trkEmail=eml-email_network_conversations_01-footer_promo-0-footer_see_all-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> See more on LinkedIn </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-lg text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 20px; color: #114951;\"> Get the new LinkedIn desktop app </h2> </td> </tr> <tr> <td class=\"text-center pb-2\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <a href=\"https://apps.microsoft.com/store/detail/9WZDNCRFJ4Q7?launch=true&amp;cid=linkedin_email_upsell&amp;mode=full\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it from Microsoft\" src=\"https://static.licdn.com/sc/h/ejpkkpwvqks31a3cjqokb7fbm\" class=\"h-[40px] w-[112px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 112px;\" width=\"112\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-md text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 16px; color: #114951;\"> Also available on mobile </h2> </td> </tr> <tr> <td class=\"text-center\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <a href=\"https://itunes.apple.com/us/app/linkedin/id288429040?pt=10746&amp;ct=st_appsite_flagship&amp;mt=8\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Download on the App Store\" src=\"https://static.licdn.com/sc/h/76yzkd0h5kiv27lrd4yaenylk\" class=\"h-[40px] w-[120px] pr-1\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 120px; padding-right: 8px;\" width=\"120\" height=\"40\"> </a> <a href=\"https://play.google.com/store/apps/details?id=com.linkedin.android&amp;referrer=st_appsite_flagship\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it on Google Play\" src=\"https://static.licdn.com/sc/h/142qudwblp58zwmc9vkqfplug\" class=\"h-[40px] w-[134px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 134px;\" width=\"134\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px;\"><hr class=\"border-none bg-[#e0dfdd] h-[1px]\" style=\"height: 1px; border-style: none; background-color: #e0dfdd;\"></td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" data-test-id=\"email-footer__intended\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_network_conversations_01-SecurityHelp-0-footerglimmer-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving Network Conversations emails. Some content may be automatically translated based on <a href=\"https://www.linkedin.com/mypreferences/d/language-for-translation\" target=\"_blank\" class=\"link-no-visited-state\" data-tracking-will-navigate data-tracking-control-name=\"email_network_conversations_content_settings_link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-weight: 600; color: #0a66c2;\">your settings</a>.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/mypreferences/u/emailunsub?action=updateEmailSubscription&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-unsubscribe-0-footerGlimmer&amp;trkEmail=eml-email_network_conversations_01-unsubscribe-0-footerGlimmer-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;loid=AQGiBQkRw_SmhAAAAZlQCzL7YZRAHr7Ys-NCLSk01VUSgisAK2ixsPj1a2UpW4nhtAorG7v6HqdaOrnB8Xo9LcxtL5MAGzl1mYa91r06Zolo3Hl5vvIw\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Unsubscribe</a>   ·   <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-help-0-footerglimmer&amp;trkEmail=eml-email_network_conversations_01-help-0-footerglimmer-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" data-test-help-link class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2XGivsp3Eu5bY1&amp;trk=eml-email_network_conversations_01-footer-0-logoGlimmer&amp;trkEmail=eml-email_network_conversations_01-footer-0-logoGlimmer-null-poh2nf~mflu41iv~pu-null-null&amp;eid=poh2nf-mflu41iv-pu&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFtYkhVME1XbDJMWEIxOlpXMWhhV3hmYm1WMGQyOXlhMTlqYjI1MlpYSnpZWFJwYjI1elh6QXg6.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','Daniella Levine Cava shared a post: Today, we celebrated a critical investment in Miami-Dade’s future-ready infrastructure: over $1.6 million in state funding for stormwater drainage…\r\nLIKE PRAISE EMPATHY 51, 2 Comments\r\n\r\n\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7371252360637214720?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&midToken=AQE-iPshthTClw&midSig=2XGivsp3Eu5bY1&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~mflu41iv~pu-null-null&eid=poh2nf-mflu41iv-pu&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\r\n        \r\n\r\n\r\n\r\n          \r\n        \r\n\r\n          Jeff Brandes shared a post: We’re less than 70 days away from the 13th Annual Florida Automated Vehicle Summit — the Southeast’s premier stage to explore the future of…\r\nLIKE PRAISE 26\r\nRegister for the 2025 FAV Summit - 2025 FAV Summit\r\n\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7367187956836495361?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&midToken=AQE-iPshthTClw&midSig=2XGivsp3Eu5bY1&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~mflu41iv~pu-null-null&eid=poh2nf-mflu41iv-pu&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\r\n        \r\n\r\n\r\n\r\n          \r\n        \r\n\r\n          Jon Tavarez shared a post: 🔥 Tampa Bay brought some serious heat this week... from a 100-year-old glassmaker making billion-dollar moves to fresh spinouts chasing breakthrough…\r\nLIKE EMPATHY 23, 2 Comments\r\n\r\n\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7369755208400228353?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&midToken=AQE-iPshthTClw&midSig=2XGivsp3Eu5bY1&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~mflu41iv~pu-null-null&eid=poh2nf-mflu41iv-pu&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\r\n        \r\n\r\n\r\n\r\n          \r\n        \r\n\r\n          Andy Allen shared a post: We are happy to play a part in this catalytic development in downtown Jax alongside Bryan Moll Nick Halloran and their phenomenal team.  If City of…\r\nLIKE PRAISE EMPATHY 146, 7 Comments\r\nPublix confirmed for Downtown Jacksonville store in Pearl Square | Jax Daily Record\r\n\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7369087879777624067?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&midToken=AQE-iPshthTClw&midSig=2XGivsp3Eu5bY1&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~mflu41iv~pu-null-null&eid=poh2nf-mflu41iv-pu&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\r\n        \r\n\r\n\r\n\r\n          \r\n        \r\n\r\n          Laura DiBella shared a post: Yesterday morning began with a flurry of activity that was a bit elevated than normal and there was a very good reason why. \r\n\r\nI am blessed, grateful,…\r\nLIKE PRAISE EMPATHY 411, 296 Comments\r\nTrump Nominates Two to Fill FMC Commissioner Vacancies\r\n\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7369677587893227520?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&midToken=AQE-iPshthTClw&midSig=2XGivsp3Eu5bY1&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~mflu41iv~pu-null-null&eid=poh2nf-mflu41iv-pu&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\r\n        \r\n\r\n\r\nSee more on LinkedIn: https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&midToken=AQE-iPshthTClw&midSig=2XGivsp3Eu5bY1&trk=eml-email_network_conversations_01-footer_promo-0-footer_see_all&trkEmail=eml-email_network_conversations_01-footer_promo-0-footer_see_all-null-poh2nf~mflu41iv~pu-null-null&eid=poh2nf-mflu41iv-pu&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\r\n\r\n----------------------------------------\r\n\r\nThis email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\nLearn why we included this: https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&midToken=AQE-iPshthTClw&midSig=2XGivsp3Eu5bY1&trk=eml-email_network_conversations_01-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_network_conversations_01-SecurityHelp-0-textfooterglimmer-null-poh2nf~mflu41iv~pu-null-null&eid=poh2nf-mflu41iv-pu&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\r\nYou are receiving Network Conversations emails. Some content may be automatically translated based on\r\n      <a href=\"https://www.linkedin.com/mypreferences/d/language-for-translation\" target=\"_blank\" class=\"link-no-visited-state\" data-tracking-will-navigate data-tracking-control-name=\"email_network_conversations_content_settings_link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-weight: 600; color: #0a66c2;\">your settings</a>.\r\n\r\n\r\nUnsubscribe: https://www.linkedin.com/comm/mypreferences/u/emailunsub?action=updateEmailSubscription&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&midToken=AQE-iPshthTClw&midSig=2XGivsp3Eu5bY1&trk=eml-email_network_conversations_01-unsubscribe-0-textfooterglimmer&trkEmail=eml-email_network_conversations_01-unsubscribe-0-textfooterglimmer-null-poh2nf~mflu41iv~pu-null-null&eid=poh2nf-mflu41iv-pu&loid=AQGiBQkRw_SmhAAAAZlQCzL7YZRAHr7Ys-NCLSk01VUSgisAK2ixsPj1a2UpW4nhtAorG7v6HqdaOrnB8Xo9LcxtL5MAGzl1mYa91r06Zolo3Hl5vvIw\r\nHelp: https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3Bs%2B9fwr6zRmusECBOkC4FwA%3D%3D&midToken=AQE-iPshthTClw&midSig=2XGivsp3Eu5bY1&trk=eml-email_network_conversations_01-help-0-textfooterglimmer&trkEmail=eml-email_network_conversations_01-help-0-textfooterglimmer-null-poh2nf~mflu41iv~pu-null-null&eid=poh2nf-mflu41iv-pu&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmUwYmQ4N2NhZDU0MjljYWQ4ZTZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThjYWVjZGY1MWE3ZjliNjM5YzhlNTZiYTk0ZDlkYWNiZDQ3MzFjZDdmNGM3MTY4NDEsMSwx\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.\r\nLinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',0,0,0,0,0,0,'2025-09-16 01:02:15','2025-12-09 19:28:29','2025-12-09 19:28:29','2025-12-09 19:28:29',NULL,NULL,NULL),
(729,4,'<CH8PR13MB726724F32528A74331E00C2FE814A@CH8PR13MB7267.namprd13.prod.outlook.com>',NULL,NULL,'RE: Rick / intro to Century Mold','m.ricotta@CENTURYMOLD.COM','\"Ricotta, Matthew\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\n <head>\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n  <meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\"><!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]-->\n  <style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nh2\r\n	{mso-style-priority:9;\r\n	mso-style-link:\"Heading 2 Char\";\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:18.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	font-weight:bold;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\nspan.Heading2Char\r\n	{mso-style-name:\"Heading 2 Char\";\r\n	mso-style-priority:9;\r\n	mso-style-link:\"Heading 2\";\r\n	font-family:\"Aptos Display\",sans-serif;\r\n	color:#0F4761;}\r\nspan.EmailStyle20\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Calibri\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\n </head>\n <body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\n  <div class=\"WordSection1\">\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">Good Morning Rick,\n     <o:p></o:p></span></p>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">\n     <o:p>\n      &nbsp;\n     </o:p></span></p>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">Nice to virtually meet you.&nbsp; RIT is a great place, I am a 2003 graduate and still actively involved with the university as I serve as a member of the National Council for Engineering Technology.\n     <o:p></o:p></span></p>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">\n     <o:p>\n      &nbsp;\n     </o:p></span></p>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">It would be great to connect sometime soon.&nbsp; We can have you over and show you around and then grab some lunch.&nbsp; Our building is only 15 minutes from RIT.&nbsp; Are there any dates and times that might work for you?\n     <o:p></o:p></span></p>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">\n     <o:p>\n      &nbsp;\n     </o:p></span></p>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\"><a id=\"OWAAM46FF9A5316C34FB2A8FCE827BF697C4A\" href=\"mailto:jen@deeptechgtm.com\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;text-decoration:none\">@Jennifer Kay</span></a>&nbsp; thanks for the connection.\n     <o:p></o:p></span></p>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">\n     <o:p>\n      &nbsp;\n     </o:p></span></p>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">Best Regards,\n     <o:p></o:p></span></p>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">\n     <o:p>\n      &nbsp;\n     </o:p></span></p>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">Matt\n     <o:p></o:p></span></p>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">\n     <o:p>\n      &nbsp;\n     </o:p></span></p>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">\n     <o:p>\n      &nbsp;\n     </o:p></span></p>\n   <div>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Matthew C. Ricotta</span><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Vice President of Sales Strategy &amp; Sales Operations\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Century Mold Co., Inc.\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">25 Vantage Point Drive\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Rochester, New York 14624\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Cell: (585) 507-1219\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\"><a href=\"mailto:m.ricotta@centurymold.com\">m.ricotta@centurymold.com</a>\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">\n      <o:p>\n       &nbsp;\n      </o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\"><img border=\"0\" width=\"225\" height=\"60\" style=\"width:2.3416in;height:.625in\" id=\"Picture_x0020_640791774\" src=\"cid:image001.jpg@01DC26DC.06719580\"><span style=\"mso-ligatures:standardcontextual\">\n       <o:p></o:p></span></span></p>\n   </div>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">\n     <o:p>\n      &nbsp;\n     </o:p></span></p>\n   <div>\n    <div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\n     <p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Jennifer Kay &lt;jen@deeptechgtm.com&gt; <br><b>Sent:</b> Monday, September 15, 2025 8:56 PM<br><b>To:</b> Ricotta, Matthew &lt;m.ricotta@CENTURYMOLD.COM&gt;; Blake, Elizabeth &lt;e.blake@centurymold.com&gt;; Rottier, Danielle &lt;danielle.rottier@centurymold.com&gt;; rick@mavrix.one<br><b>Subject:</b> Rick / intro to Century Mold\n       <o:p></o:p></span></p>\n    </div>\n   </div>\n   <p class=\"MsoNormal\">\n    <o:p>\n     &nbsp;\n    </o:p></p>\n   <div id=\"dde62e0b9d2d3dbe0ad90ee1a0e018ac2c3f9fbc\">\n    <div id=\"3695363d23e92539dd775cf46042fb34a397127b\">\n     <p class=\"MsoNormal\" style=\"line-height:0%\"><span style=\"font-size:1.0pt;color:white\">Hi all, Team Century Mold (aka the best in the biz), please meet my friend and colleague Rick Mislan. In addition to teaching at RIT and living in your backyard, Rick is connected to a family office t \n       <o:p></o:p></span></p>\n    </div>\n    <p class=\"MsoNormal\"><span style=\"font-size:1.0pt;color:white\">sophospsmartbannerend </span><o:p></o:p></p>\n   </div>\n   <div>\n    <div>\n     <p class=\"MsoNormal\">Hi all, <o:p></o:p></p>\n    </div>\n    <div>\n     <p class=\"MsoNormal\">\n      <o:p>\n       &nbsp;\n      </o:p></p>\n    </div>\n    <div>\n     <p class=\"MsoNormal\">Team Century Mold (aka the best in the biz), please meet my friend and colleague Rick Mislan. In addition to teaching at RIT and living in your backyard, Rick is connected to a family office that\'s recently secured&nbsp;a $1.5B fund that they are looking to deploy against hardening American supply chains for defense use cases, specifically focusing&nbsp;on autonomy and unmanned systems. <o:p></o:p></p>\n    </div>\n    <div>\n     <p class=\"MsoNormal\">\n      <o:p>\n       &nbsp;\n      </o:p></p>\n    </div>\n    <div>\n     <p class=\"MsoNormal\">Rick may want to tour the Rochester plant and discuss other collaboration opportunities. I\'ll let y\'all take it from here! <o:p></o:p></p>\n    </div>\n    <div>\n     <p class=\"MsoNormal\">\n      <o:p>\n       &nbsp;\n      </o:p></p>\n    </div>\n    <div>\n     <p class=\"MsoNormal\">Thanks, <o:p></o:p></p>\n    </div>\n    <div>\n     <p class=\"MsoNormal\">Jen <o:p></o:p></p>\n    </div>\n    <div>\n     <p class=\"MsoNormal\">\n      <o:p>\n       &nbsp;\n      </o:p></p>\n    </div>\n    <div>\n     <p class=\"MsoNormal\">\n      <o:p>\n       &nbsp;\n      </o:p></p>\n    </div>\n    <div>\n     <p class=\"MsoNormal\">\n      <o:p>\n       &nbsp;\n      </o:p></p>\n    </div>\n    <div>\n     <p class=\"MsoNormal\">\n      <o:p>\n       &nbsp;\n      </o:p></p>\n    </div>\n    <div>\n     <div>\n      <div>\n       <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"518\" style=\"width:388.2pt;border-collapse:collapse\">\n        <tbody>\n         <tr>\n          <td style=\"padding:0in 0in 0in 0in\">\n           <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"518\" style=\"width:388.2pt;border-collapse:collapse\">\n            <tbody>\n             <tr>\n              <td valign=\"top\" style=\"padding:0in 0in 0in 0in\"><h2 style=\"margin:0in\"><span style=\"font-size:13.5pt;color:#231E4A\">Jennifer&nbsp;Kay\n                 <o:p></o:p></span></h2><p style=\"margin:0in;line-height:16.5pt\"><span style=\"font-size:10.5pt;color:#231E4A\">Principal&nbsp;|&nbsp;Deep Tech Go to Market\n                 <o:p></o:p></span></p><p style=\"margin:0in;line-height:16.5pt\"><span style=\"font-size:10.5pt;color:#231E4A\">Offering commercial go to market for dual-use tech\n                 <o:p></o:p></span></p>\n               <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"473\" style=\"width:354.45pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\n                <tbody>\n                 <tr style=\"height:.25in\">\n                  <td style=\"padding:0in 0in 0in 0in;height:.25in\"></td>\n                 </tr>\n                 <tr style=\"height:.6pt\">\n                  <td width=\"473\" style=\"width:354.45pt;border:none;border-bottom:solid #231E4A 1.0pt;padding:0in 0in 0in 0in;height:.6pt\"></td>\n                 </tr>\n                 <tr style=\"height:.25in\">\n                  <td style=\"padding:0in 0in 0in 0in;height:.25in\"></td>\n                 </tr>\n                </tbody>\n               </table><p class=\"MsoNormal\">\n                <o:p>\n                 &nbsp;\n                </o:p></p>\n               <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"473\" style=\"width:354.45pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\n                <tbody>\n                 <tr style=\"height:15.0pt\">\n                  <td width=\"30\" style=\"width:22.5pt;padding:0in 0in 0in 0in;height:15.0pt\">\n                   <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"30\" style=\"width:22.5pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\n                    <tbody>\n                     <tr>\n                      <td valign=\"bottom\" style=\"padding:0in 0in 0in 0in\"><p class=\"MsoNormal\"><span style=\"color:white;background:#231E4A\"><img border=\"0\" width=\"13\" height=\"13\" style=\"width:.1333in;height:.1333in\" id=\"_x0000_i1028\" src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/phone-icon-2x.png\" alt=\"mobilePhone\"></span><o:p></o:p></p></td>\n                     </tr>\n                    </tbody>\n                   </table></td>\n                  <td style=\"padding:0in 0in 0in 0in;height:15.0pt\"><p class=\"MsoNormal\"><span style=\"color:#231E4A\"><a href=\"tel:615-630-8068\" target=\"_blank\"><span style=\"font-size:9.0pt;color:#231E4A\">615-630-8068</span></a>\n                     <o:p></o:p></span></p></td>\n                 </tr>\n                 <tr style=\"height:15.0pt\">\n                  <td width=\"30\" style=\"width:22.5pt;padding:0in 0in 0in 0in;height:15.0pt\">\n                   <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"30\" style=\"width:22.5pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\n                    <tbody>\n                     <tr>\n                      <td valign=\"bottom\" style=\"padding:0in 0in 0in 0in\"><p class=\"MsoNormal\"><span style=\"color:white;background:#231E4A\"><img border=\"0\" width=\"13\" height=\"13\" style=\"width:.1333in;height:.1333in\" id=\"_x0000_i1027\" src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/email-icon-2x.png\" alt=\"emailAddress\"></span><o:p></o:p></p></td>\n                     </tr>\n                    </tbody>\n                   </table></td>\n                  <td style=\"padding:0in 0in 0in 0in;height:15.0pt\"><p class=\"MsoNormal\"><a href=\"mailto:Jen@DeepTechGTM.com\" target=\"_blank\"><span style=\"font-size:9.0pt;color:#231E4A\">Jen@DeepTechGTM.com</span></a><o:p></o:p></p></td>\n                 </tr>\n                 <tr style=\"height:15.0pt\">\n                  <td width=\"30\" style=\"width:22.5pt;padding:0in 0in 0in 0in;height:15.0pt\">\n                   <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"30\" style=\"width:22.5pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\n                    <tbody>\n                     <tr>\n                      <td valign=\"bottom\" style=\"padding:0in 0in 0in 0in\"><p class=\"MsoNormal\"><span style=\"color:white;background:#231E4A\"><img border=\"0\" width=\"13\" height=\"13\" style=\"width:.1333in;height:.1333in\" id=\"_x0000_i1026\" src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/link-icon-2x.png\" alt=\"website\"></span><o:p></o:p></p></td>\n                     </tr>\n                    </tbody>\n                   </table></td>\n                  <td style=\"padding:0in 0in 0in 0in;height:15.0pt\"><p class=\"MsoNormal\"><a href=\"https://us-east-2.protection.sophos.com?d=deeptechgtm.com&amp;u=aHR0cHM6Ly9kZWVwdGVjaGd0bS5jb20v&amp;i=NWE0MmE2M2EwYTczNDQxNzgwMzIzMmNj&amp;t=TldHT21pOVMrQnc1QS9EOEpwNmFMd2U2MFRIdURzb3E3UTlSaEFrU2tqYz0=&amp;h=3c9cbb7ae9ea477292738775fa990c2e&amp;s=AVNPUEhUT0NFTkNSWVBUSVbtVtDurjG3awJTMAs2DBBeJDosvMTyBzoEmpKDp9Qbtw\" target=\"_blank\"><span style=\"font-size:9.0pt;color:#231E4A\">DeepTechGTM.com</span></a><o:p></o:p></p></td>\n                 </tr>\n                </tbody>\n               </table></td>\n              <td width=\"45\" style=\"width:33.75pt;padding:0in 0in 0in 0in\"></td>\n             </tr>\n            </tbody>\n           </table></td>\n         </tr>\n         <tr>\n          <td style=\"padding:0in 0in 0in 0in\"></td>\n         </tr>\n        </tbody>\n       </table>\n       <p class=\"MsoNormal\"><span style=\"display:none\">\n         <o:p>\n          &nbsp;\n         </o:p></span></p>\n       <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"547\" style=\"width:409.95pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\n        <tbody>\n         <tr>\n          <td style=\"padding:0in 0in 0in 0in\"></td>\n         </tr>\n        </tbody>\n       </table>\n      </div>\n     </div>\n    </div>\n    <p class=\"MsoNormal\"><img border=\"0\" width=\"1\" height=\"1\" style=\"width:.0083in;height:.0083in\" id=\"_x0000_i1025\" src=\"https://d2LSMm04.na1.hs-salescrm-engage.com/Cto/2O+23284/d2LSMm04/R5Q8b48CrN56kt9Z2fD5tW3DNv9w1_jP7GW1V3GZL1W-WmZW1GzmYc3LCDCYW3M0g1n1N6TqrW3yRLx522VWWjf1Q2MDY12\"><o:p></o:p></p>\n   </div>\n  </div>\n </body>\n</html>','Good Morning Rick,\r\n\r\nNice to virtually meet you.  RIT is a great place, I am a 2003 graduate and still actively involved with the university as I serve as a member of the National Council for Engineering Technology.\r\n\r\nIt would be great to connect sometime soon.  We can have you over and show you around and then grab some lunch.  Our building is only 15 minutes from RIT.  Are there any dates and times that might work for you?\r\n\r\n@Jennifer Kay<mailto:jen@deeptechgtm.com>  thanks for the connection.\r\n\r\nBest Regards,\r\n\r\nMatt\r\n\r\n\r\nMatthew C. Ricotta\r\nVice President of Sales Strategy & Sales Operations\r\nCentury Mold Co., Inc.\r\n25 Vantage Point Drive\r\nRochester, New York 14624\r\nCell: (585) 507-1219\r\nm.ricotta@centurymold.com<mailto:m.ricotta@centurymold.com>\r\n\r\n[cid:image001.jpg@01DC26DC.06719580]\r\n\r\nFrom: Jennifer Kay <jen@deeptechgtm.com>\r\nSent: Monday, September 15, 2025 8:56 PM\r\nTo: Ricotta, Matthew <m.ricotta@CENTURYMOLD.COM>; Blake, Elizabeth <e.blake@centurymold.com>; Rottier, Danielle <danielle.rottier@centurymold.com>; rick@mavrix.one\r\nSubject: Rick / intro to Century Mold\r\n\r\n\r\nHi all,\r\n\r\nTeam Century Mold (aka the best in the biz), please meet my friend and colleague Rick Mislan. In addition to teaching at RIT and living in your backyard, Rick is connected to a family office that\'s recently secured a $1.5B fund that they are looking to deploy against hardening American supply chains for defense use cases, specifically focusing on autonomy and unmanned systems.\r\n\r\nRick may want to tour the Rochester plant and discuss other collaboration opportunities. I\'ll let y\'all take it from here!\r\n\r\nThanks,\r\nJen\r\n\r\n\r\n\r\n\r\nJennifer Kay\r\n\r\nPrincipal | Deep Tech Go to Market\r\n\r\nOffering commercial go to market for dual-use tech\r\n\r\n[mobilePhone]\r\n615-630-8068<tel:615-630-8068>\r\n[emailAddress]\r\nJen@DeepTechGTM.com<mailto:Jen@DeepTechGTM.com>\r\n[website]\r\nDeepTechGTM.com<https://us-east-2.protection.sophos.com?d=deeptechgtm.com&u=aHR0cHM6Ly9kZWVwdGVjaGd0bS5jb20v&i=NWE0MmE2M2EwYTczNDQxNzgwMzIzMmNj&t=TldHT21pOVMrQnc1QS9EOEpwNmFMd2U2MFRIdURzb3E3UTlSaEFrU2tqYz0=&h=3c9cbb7ae9ea477292738775fa990c2e&s=AVNPUEhUT0NFTkNSWVBUSVbtVtDurjG3awJTMAs2DBBeJDosvMTyBzoEmpKDp9Qbtw>\r\n\r\n\r\n',0,0,0,0,0,0,'2025-09-16 11:34:47','2025-12-09 19:28:29','2025-12-09 19:28:29','2025-12-09 19:28:29',NULL,NULL,NULL),
(730,4,'<01000199537a695c-ca5e0875-c086-495b-ae3d-43b02ad999bb-000000@email.amazonses.com>',NULL,NULL,'Prime Big Deal Days is coming','no-reply@business.amazon.com','Amazon Business','<!doctype html>\r\n<html lang=\"en-US\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\">\r\n <head>\r\n  <title>Prime Big Deal Days is coming</title><!--[if !mso]><!-- -->\r\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><!--<![endif]-->\r\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\r\n  <style type=\"text/css\">#outlook a { padding:0; }           body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block; }</style><!--[if mso]>                    <xml>                      <o:OfficeDocumentSettings xmlns:o=\"urn:schemas-microsoft-com:office:office\">                    <o:AllowPNG/>                          <o:PixelsPerInch>96</o:PixelsPerInch>                      </o:OfficeDocumentSettings>                   <w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\">               <w:DontUseAdvancedTypographyReadingMail/>             </w:WordDocument>                  </xml>                        <style type=\"text/css\">             table { border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt; }             .mj-outlook-group-fix { width:100% !important; }           </style>                  <![endif]--><!--[if !mso]><!-->\r\n  <link href=\"https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <link href=\"https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <style type=\"text/css\">@import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);</style><!--<![endif]-->\r\n  <style type=\"text/css\">@media only screen and (min-width:641px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-52 { width:52% !important; max-width: 52%; } .mj-column-per-48 { width:48% !important; max-width: 48%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }</style>\r\n  <style type=\"text/css\">.movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                .links-FFFFFF-underline-bold a { color: #FFFFFF; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .mso-button-dark-mode a {background: transparent !important;} .links-161D26-underline a { color: #161D26; text-decoration: underline; } .links-161D26 a { color: #161D26; text-decoration: none; } .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:641px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-165px { max-width: 165px !important} .padding-5px-24px-24px-40px { padding: 5px 24px 24px 40px !important} .padding-0px-32px-0px-0px { padding: 0px 32px 0px 0px !important} .font-size-36px { font-size: 36px !important} .padding-30px-0px-20px-0px { padding: 30px 0px 20px 0px !important} .padding-0px-40px-0px-0px { padding: 0px 40px 0px 0px !important} .max-width-276px { max-width: 276px !important} .padding-12px-40px-12px-40px { padding: 12px 40px 12px 40px !important} .padding-20px-40px-0px-40px { padding: 20px 40px 0px 40px !important} .font-size-18px { font-size: 18px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .font-size-20px { font-size: 20px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }</style>\r\n  <style type=\"text/css\">ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 641px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}</style><!--[if mso]>             <style>                 .hide-on-mobile {display:block !important}             </style>         <![endif]--><!--[if mso]>                 <style>                              .mso-font-size-36px { font-size: 36px !important; } .mso-font-size-18px { font-size: 18px !important; } .mso-font-size-20px { font-size: 20px !important; }                 </style>             <![endif]-->\r\n  <style>[class~=\"x_body\"] { width: 99.9% }               @supports(--css:variables) {                         td[style*=\"border-radius\"] { -webkit-filter: drop-shadow(0 0 1px transparent); }             }</style>\r\n </head>\r\n <body style=\"word-spacing:normal;background-color:#FFFFFF;\" class=\"body\" id=\"body\">\r\n  <div>\r\n   <p><img alt=\"\" src=\"http://elinks.business.amazon.com/CI0/01000199537a695c-ca5e0875-c086-495b-ae3d-43b02ad999bb-000000/BcPD0PMawvjg62NS6GRlp7JF-WMcY1q-dzKrTnvR5oI=422\" style=\"display: none; width: 1px; height: 1px;\">\r\n</p>\r\n  </div><!--[if !mso 9]><!-->\r\n  <div id=\"emailPreHeader\" style=\"display: none;\">\r\n   Get ready to shop October 7–8\r\n  </div>\r\n  <div style=\"display: none;\">\r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  </div><!--<![endif]-->\r\n  <div style=\"background-color:#FFFFFF;background-position:center center;background-size:auto;background-repeat:repeat;\" id=\"main\">\r\n   <!--[if mso]>\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><![endif]--><!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:16px 16px 14px 16px;text-align:center;vertical-align:top;mso-padding-alt:14px 0px 14px 40px;\" class=\"block-grid padding-14px-0px-14px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:600px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n             <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:middle;width:300px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"padding-0px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 0px 0px;word-break:break-word;mso-padding-alt:0px 0px 0px 0px;text-align:left;\">\r\n                  <div style=\"margin:0 auto 0 0;max-width:80%;\" class=\"max-width-165px\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%3Fref_=b2b_sow_e_events_hve_abpbdd25_250916/1/01000199537a695c-ca5e0875-c086-495b-ae3d-43b02ad999bb-000000/Mnj61-DBivLbI7UDNFssGPUNfST_GqZIuCnnImAHhSU=422\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business\" height=\"auto\" width=\"165\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-2color2x.png\" style=\"border:none;border-radius:0px;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:middle;width:300px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                  <div style=\"line-height:0px;height:0px;mso-line-height-alt:0px;\">\r\n                   &nbsp;\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:32px 16px 24px 16px;text-align:center;vertical-align:top;mso-padding-alt:5px 24px 24px 40px;\" class=\"block-grid padding-5px-24px-24px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:299.52px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-52 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td style=\"border-radius:0px;vertical-align:top;padding:0px 0px 20px 0px;mso-padding-alt:0px 32px 0px 0px;\" class=\"padding-0px-32px-0px-0px\">\r\n                  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                   <tbody>\r\n                    <tr>\r\n                     <td class=\"padding-30px-0px-20px-0px text-container\" style=\"font-size:0px;padding:32px 0px 20px 0px;word-break:break-word;mso-padding-alt:30px 0px 20px 0px;text-align:left;\">\r\n                      <div class=\"links-FFFFFF-underline-bold\">\r\n                       <div style=\"font-family:\'Ember Modern Display\', Arial, sans-serif;font-size:28px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:2.688em;color:#161D26;\" class=\"mso-font-size-36px font-size-36px\">\r\n                        <p style=\"margin: 0;\">Save the date:<br>\r\n                         October 7–8</p>\r\n                       </div>\r\n                      </div></td>\r\n                    </tr>\r\n                    <tr>\r\n                     <td valign=\"middle\" class=\"padding-0px-40px-0px-0px button-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;mso-padding-alt:0px 40px 0px 0px;text-align:left;\">\r\n                      <div>\r\n                       <!--[if mso]>\r\n<table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\">\r\n<tr>\r\n<td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_hve_abpbdd25_250916%26return_to=%2Fprimebigdealdays/1/01000199537a695c-ca5e0875-c086-495b-ae3d-43b02ad999bb-000000/DtueTV8esiHEkqR8EwuUnshxxST0sJow4ZG77PKwuxk=422\" fillcolor=\"#FFD814\" arcsize=\"58%\" style=\"v-text-anchor:middle;width:125.25pt;height:32.25pt;\" stroke=\"f\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_hve_abpbdd25_250916%26return_to=%2Fprimebigdealdays/1/01000199537a695c-ca5e0875-c086-495b-ae3d-43b02ad999bb-000000/DtueTV8esiHEkqR8EwuUnshxxST0sJow4ZG77PKwuxk=422\" style=\"display: inline-block; background: #FFD814; color: #161D26; font-family: \'Amber Ember\', Arial, sans-serif; font-size: 16px; font-weight: normal; line-height: 1.2; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 12px 24px 12px 24px; mso-padding-alt: 0px; border-radius: 25px; border-left: 0 none #FFFFFF; border-right: 0 none #FFFFFF; border-top: 0 none #FFFFFF; border-bottom: 0 none #FFFFFF; mso-border-alt: none; box-sizing: border-box;\" target=\"_blank\" width=\"167\">Shop early deals </a><!--[if mso]></center></a:textbox></a:roundrect>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                      </div></td>\r\n                    </tr>\r\n                   </tbody>\r\n                  </table></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:276.48px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-48 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\">\r\n                  <div style=\"margin:0 auto;\" class=\"max-width-276px\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_hve_abpbdd25_250916%26return_to=%2Fprimebigdealdays/2/01000199537a695c-ca5e0875-c086-495b-ae3d-43b02ad999bb-000000/1nVmKqysDgFikMXTbJd4ggi128fndauF5XghqJ-WfuE=422\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Image of three Amazon packages\" height=\"auto\" width=\"276\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/HVE/PBDD25/Email/US-EN_AB_PBDD25_P1_179_Email_Small_686x444.jpg\" style=\"border:none;border-radius:16px;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F5F3EF;background-color:#F5F3EF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F5F3EF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:12px 16px 12px 16px;text-align:center;vertical-align:top;mso-padding-alt:12px 40px 12px 40px;\" class=\"block-grid padding-12px-40px-12px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-161D26-underline\">\r\n                  <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:normal;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.375em;color:#222D3A;\">\r\n                   <p style=\"margin: 0;\"><strong><span style=\"font-weight: 400;\">Business Prime</span> </strong>members save big during Prime Big Deal Days. Shop early deals and access exclusive benefits for your business, like fast, free shipping.</p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3f4492e978609435.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=6ee484b7-ca86-457b-84fd-a03adc559464&amp;mi_campaignId=2808617628&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=1&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=6ee484b7-ca86-457b-84fd-a03adc559464&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250916\">\r\n                  </div></td>\r\n                </tr>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=6ee484b7-ca86-457b-84fd-a03adc559464%26mi_campaignId=2808617628%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=1%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=6ee484b7-ca86-457b-84fd-a03adc559464%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250916%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199537a695c-ca5e0875-c086-495b-ae3d-43b02ad999bb-000000/EB6rSl80AaFRLoEvg-6SeG6qYEgXnUsq4AvZi99_CIk=422\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=6ee484b7-ca86-457b-84fd-a03adc559464&amp;mi_campaignId=2808617628&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=1&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=6ee484b7-ca86-457b-84fd-a03adc559464&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250916\"></a>\r\n                  </div></td>\r\n                </tr>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=6ee484b7-ca86-457b-84fd-a03adc559464%26mi_campaignId=2808617628%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=2%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=6ee484b7-ca86-457b-84fd-a03adc559464%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250916%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199537a695c-ca5e0875-c086-495b-ae3d-43b02ad999bb-000000/aoNhMmEDxnjsX6N3uaMadHmQ7-85Ide-wGuK5_e5Aaw=422\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=6ee484b7-ca86-457b-84fd-a03adc559464&amp;mi_campaignId=2808617628&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=2&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=6ee484b7-ca86-457b-84fd-a03adc559464&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250916\"></a>\r\n                  </div></td>\r\n                </tr>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=6ee484b7-ca86-457b-84fd-a03adc559464%26mi_campaignId=2808617628%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=3%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=6ee484b7-ca86-457b-84fd-a03adc559464%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250916%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199537a695c-ca5e0875-c086-495b-ae3d-43b02ad999bb-000000/YFXb5gr8jqT9vghawhjEcLvH2vlugLpOVuNpCPM1yLc=422\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=6ee484b7-ca86-457b-84fd-a03adc559464&amp;mi_campaignId=2808617628&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=3&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=6ee484b7-ca86-457b-84fd-a03adc559464&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250916\"></a>\r\n                  </div></td>\r\n                </tr>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=6ee484b7-ca86-457b-84fd-a03adc559464%26mi_campaignId=2808617628%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=4%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=6ee484b7-ca86-457b-84fd-a03adc559464%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250916%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199537a695c-ca5e0875-c086-495b-ae3d-43b02ad999bb-000000/U33YTfKoCa4Ea_oQ3iNXg6QuRYX1RWii-kQYCi5yBbo=422\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=6ee484b7-ca86-457b-84fd-a03adc559464&amp;mi_campaignId=2808617628&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=4&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=6ee484b7-ca86-457b-84fd-a03adc559464&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250916\"></a>\r\n                  </div></td>\r\n                </tr>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=6ee484b7-ca86-457b-84fd-a03adc559464%26mi_campaignId=2808617628%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=5%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=6ee484b7-ca86-457b-84fd-a03adc559464%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250916%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199537a695c-ca5e0875-c086-495b-ae3d-43b02ad999bb-000000/AVMmeykBXLNvINzYPsaujMtsIHWISnJhI3Af9lfO23c=422\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=6ee484b7-ca86-457b-84fd-a03adc559464&amp;mi_campaignId=2808617628&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=5&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=6ee484b7-ca86-457b-84fd-a03adc559464&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250916\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <!--[if !mso]><!-->\r\n              <tbody>\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3f4492e978609435.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=6ee484b7-ca86-457b-84fd-a03adc559464&amp;mi_campaignId=2808617628&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=1&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=6ee484b7-ca86-457b-84fd-a03adc559464&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250916\">\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=6ee484b7-ca86-457b-84fd-a03adc559464%26mi_campaignId=2808617628%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=1%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=6ee484b7-ca86-457b-84fd-a03adc559464%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250916%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199537a695c-ca5e0875-c086-495b-ae3d-43b02ad999bb-000000/dJjw9N7y-f7SJcguMsEtQ7cRzPyrB56JigxdWJjsjnk=422\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=6ee484b7-ca86-457b-84fd-a03adc559464&amp;mi_campaignId=2808617628&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=1&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=6ee484b7-ca86-457b-84fd-a03adc559464&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250916\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=6ee484b7-ca86-457b-84fd-a03adc559464%26mi_campaignId=2808617628%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=2%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=6ee484b7-ca86-457b-84fd-a03adc559464%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250916%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199537a695c-ca5e0875-c086-495b-ae3d-43b02ad999bb-000000/3DANR4HCP3jNyEf4UbTVjBSZbMFEk2ItoAmchOVwpKU=422\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=6ee484b7-ca86-457b-84fd-a03adc559464&amp;mi_campaignId=2808617628&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=2&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=6ee484b7-ca86-457b-84fd-a03adc559464&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250916\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=6ee484b7-ca86-457b-84fd-a03adc559464%26mi_campaignId=2808617628%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=3%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=6ee484b7-ca86-457b-84fd-a03adc559464%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250916%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199537a695c-ca5e0875-c086-495b-ae3d-43b02ad999bb-000000/-O5EcKqMnaWHP-f8iybnK4yXtWjBoXFF2lKs2azfY3A=422\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=6ee484b7-ca86-457b-84fd-a03adc559464&amp;mi_campaignId=2808617628&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=3&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=6ee484b7-ca86-457b-84fd-a03adc559464&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250916\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=6ee484b7-ca86-457b-84fd-a03adc559464%26mi_campaignId=2808617628%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=4%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=6ee484b7-ca86-457b-84fd-a03adc559464%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250916%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199537a695c-ca5e0875-c086-495b-ae3d-43b02ad999bb-000000/L6Ocfx0bXlnaQDt87h2El0OOS5g5TItnULS_pai-LGA=422\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=6ee484b7-ca86-457b-84fd-a03adc559464&amp;mi_campaignId=2808617628&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=4&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=6ee484b7-ca86-457b-84fd-a03adc559464&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250916\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=6ee484b7-ca86-457b-84fd-a03adc559464%26mi_campaignId=2808617628%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=5%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=6ee484b7-ca86-457b-84fd-a03adc559464%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250916%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199537a695c-ca5e0875-c086-495b-ae3d-43b02ad999bb-000000/2bck156NfTdioso3tGL3ETEufjx7PaEE-NAse13wUDA=422\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=6ee484b7-ca86-457b-84fd-a03adc559464&amp;mi_campaignId=2808617628&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=5&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=6ee484b7-ca86-457b-84fd-a03adc559464&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250916\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]-->\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 0px 40px;\" class=\"block-grid padding-20px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-161D26\">\r\n                  <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.375em;color:#161D26;\" class=\"mso-font-size-18px font-size-18px\">\r\n                   <p style=\"margin: 0;\"><span>Find more ways to save</span></p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\">\r\n             <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"line-height:0;font-size:0;direction:ltr;\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n                 <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n                  <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:280px;\" ><![endif]-->\r\n                  <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:50%;\">\r\n                   <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                    <tbody>\r\n                     <tr>\r\n                      <td style=\"border-radius:0px;vertical-align:top;padding:0px 8px 12px 0px;mso-padding-alt:0px 8px 12px 0px;\">\r\n                       <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                        <tbody>\r\n                         <tr>\r\n                          <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:left;\">\r\n                           <div style=\"margin:0 auto 0 0;max-width:272px;\">\r\n                            <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_hve_abpbdd25_250916%26return_to=%2Fab%2Fbusiness-discounts/1/01000199537a695c-ca5e0875-c086-495b-ae3d-43b02ad999bb-000000/3W_f70j5fNV4Y62tRjKQ2P0Hyba8b88t2tBU2LOecO0=422\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Business Savings Guide icon\" height=\"auto\" width=\"272\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/HVE/PD25/US-EN/Offsite/Email/US-EN_AB_PD25_AdHoc_002_Email_Small_Image_BSG_400x267.jpg\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                           </div></td>\r\n                         </tr>\r\n                         <tr>\r\n                          <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                           <div class=\"links-161D26\">\r\n                            <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                             <p style=\"margin: 0;\">Business Savings Guide</p>\r\n                            </div>\r\n                           </div></td>\r\n                         </tr>\r\n                         <tr>\r\n                          <td class=\"text-container\" style=\"font-size:0px;padding:5px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                           <div class=\"links-007185-bold\">\r\n                            <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.188em;color:#222D3A;\">\r\n                             <p style=\"margin: 0;\">Save on business-only prices on thousands of items.&nbsp;</p>\r\n                            </div>\r\n                           </div></td>\r\n                         </tr>\r\n                        </tbody>\r\n                       </table></td>\r\n                     </tr>\r\n                    </tbody>\r\n                   </table>\r\n                  </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:280px;\" ><![endif]-->\r\n                  <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:50%;\">\r\n                   <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                    <tbody>\r\n                     <tr>\r\n                      <td style=\"border-radius:3px;vertical-align:top;padding:0px 0px 12px 8px;mso-padding-alt:0px 0px 12px 8px;\">\r\n                       <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                        <tbody>\r\n                         <tr>\r\n                          <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:left;\">\r\n                           <div style=\"margin:0 auto 0 0;max-width:272px;\">\r\n                            <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_hve_abpbdd25_250916%26return_to=%2Fquantitydiscounts/1/01000199537a695c-ca5e0875-c086-495b-ae3d-43b02ad999bb-000000/Ot-sLfLDX8bkg8T-IKQ1YSf6ycCB23zXEBWgXko7lvM=422\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Quantity Discounts icon\" height=\"auto\" width=\"272\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/HVE/PD25/US-EN/Offsite/Email/US-EN_AB_PD25_AdHoc_001_Email_Small_Image_QD_400x267.jpg\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                           </div></td>\r\n                         </tr>\r\n                         <tr>\r\n                          <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                           <div class=\"links-161D26\">\r\n                            <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                             <p style=\"margin: 0;\">Quantity Discounts</p>\r\n                            </div>\r\n                           </div></td>\r\n                         </tr>\r\n                         <tr>\r\n                          <td class=\"text-container\" style=\"font-size:0px;padding:5px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                           <div class=\"links-007185-bold\">\r\n                            <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.188em;color:#161D26;\">\r\n                             <p style=\"margin: 0;\">Explore volume discounts that give you the lowest price per unit.</p>\r\n                            </div>\r\n                           </div></td>\r\n                         </tr>\r\n                        </tbody>\r\n                       </table></td>\r\n                     </tr>\r\n                    </tbody>\r\n                   </table>\r\n                  </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                 </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n               </tr>\r\n              </tbody>\r\n             </table></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F7F7F7;background-color:#F7F7F7;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F7F7F7;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><!--[if !mso]><!-- --><p style=\"border-top:solid 1px #D5D9D9;font-size:1px;margin:0 auto;width:100%;text-align:center;\"></p><!--<![endif]--><!--Divider--><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-top:solid 1px #D5D9D9;font-size:1px;margin:0 auto;width:640px;text-align:center;\" role=\"presentation\" width=\"640px\" >\r\n<tr>\r\n<td style=\"height:0;line-height:0;\"> &nbsp; </td>\r\n</tr>\r\n</table><![endif]--></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F5F3EF;background-color:#F5F3EF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F5F3EF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-161D26-underline\">\r\n                  <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#222D3A;\">\r\n                   <p style=\"margin: 0;\">Please note that product prices and availability are subject to change. Prices and availability were accurate at the time this email was sent. However, they may differ from those you see when you visit Amazon.com.</p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#161D26;background-color:#161D26;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#161D26;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\">\r\n            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n             <tbody>\r\n              <tr>\r\n               <td style=\"line-height:0;font-size:0;direction:rtl;\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:252px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-45 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-align-right social-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\"><!--[if mso | IE]>\r\n<table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" >\r\n<tr>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.facebook.com%2FAmazonBusiness%2F%3Fref_=b2b_sow_e_events_hve_abpbdd25_250916/1/01000199537a695c-ca5e0875-c086-495b-ae3d-43b02ad999bb-000000/WT15ZX2fAu8B3lX3voTfvWHiq35iuWTYqK_tbbJWYiA=422\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Facebook\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Facebook-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Ftwitter.com%2FAmazonBusiness%3Fref_=b2b_sow_e_events_hve_abpbdd25_250916/1/01000199537a695c-ca5e0875-c086-495b-ae3d-43b02ad999bb-000000/nk4rmkDu5DKygMEnFKozlWtHpR2mBgoAqwh8GCCEk_0=422\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Twitter\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Twitter-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.linkedin.com%2Fcompany%2Famazon-business%2F%3Fref_=b2b_sow_e_events_hve_abpbdd25_250916/1/01000199537a695c-ca5e0875-c086-495b-ae3d-43b02ad999bb-000000/lszgTvTAWu2rRCYwL8RXakImHATGJ1o0SbZ7yxJC27k=422\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Linkedin\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-LinkedIn-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"padding-10px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 20px 0px;word-break:break-word;mso-padding-alt:10px 0px 0px 0px;text-align:right;\">\r\n                     <div style=\"margin:0 auto 0 0;max-width:163px;\" class=\"margin-0-0-0-auto\">\r\n                      <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2F%3Fref_=b2b_sow_e_events_hve_abpbdd25_250916%26ref_=b2b_sow_e_events_hve_abpbdd25_250916/1/01000199537a695c-ca5e0875-c086-495b-ae3d-43b02ad999bb-000000/MjODmbWmPpjYgP1sdeZa5Ga7-tFnMFNkf8gFoUXSKXI=422\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business logo\" height=\"auto\" width=\"163\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-white2x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:308px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-55 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Fen%2Fcontact-us%3Fref_=b2b_sow_e_events_hve_abpbdd25_250916/1/01000199537a695c-ca5e0875-c086-495b-ae3d-43b02ad999bb-000000/LS1-OHyOLZoB1Q008mS-B73ibe5BrOQwSpvG8LepTOw=422\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">Contact us</a> | <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fab%2Fmanage%2Faccount%2F%3Fref_=b2b_sow_e_events_hve_abpbdd25_250916/1/01000199537a695c-ca5e0875-c086-495b-ae3d-43b02ad999bb-000000/6GwCg5grZ45cak7rIEGV7MxSGK2JLvY60GLb0AxoA_A=422\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">Manage account</a></p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\">If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Femail-preferences%2Fep%2FlNo49FdJIDVUHeWFKQxHRdHO2BCYosP7GVk%2BmV7QlwazptVKRnT2VAXMeg==%2F2808617628%2FDG1yJ0bTGJifs9TndtZIWgBPXK8ZKQt*akKEV70aJYrnJdddEL%2BaWdCJ534i6Q*ZUva5ABbr1WfSFGar7P%2BY6PRr6PZDLrWz17wRZeXnZOetccqTprWCyTUp0xq426EKmfeI7vKdnSZnq%2B98S0cAB9zD5JSPOyOa983W0ZAt7xICTcd42IkG*TXBS1l3CMPOrnib932%2BaHn8N8umKmbXbnWJAVvQAI78zh4tlAtaxeoKwBSUI3aOu*05uAIk82hPjwcz4k04nQvudB68eSCygvPy%2BID9bkeX*QfFTSj8Jx8YAi1KVGsxm2T7hGOLbCBNrs7ykUr0RWJbnk4135D4IgluGs%2BagV6ivXQ9rjtOzQR*pjqoBJU=%2FMLlSGCWpEuykxicCJX8perG86b980ln%2BNsWr3xUKJgl*%3Fref_=b2b_sow_e_events_hve_abpbdd25_250916/1/01000199537a695c-ca5e0875-c086-495b-ae3d-43b02ad999bb-000000/bBTl-29U2QVtAJuCs6YPzkYR2OIqPj_UjJIP5PHE2Ho=422\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">email preferences</a>.</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 30px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\">© 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210</p>\r\n                       <p style=\"margin: 0;\">&nbsp;</p>\r\n                       <p style=\"margin: 0;\">Reference: 2808617628</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n              </tr>\r\n             </tbody>\r\n            </table></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--><!--[if mso]>\r\n</table><![endif]-->\r\n  </div>\r\n </body>\r\n</html>\r\n','\r\n\r\n \r\n  Prime Big Deal Days is coming\r\n  \r\n  \r\n  \r\n  #outlook a { padding:0; }           body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block; }\r\n  \r\n  \r\n  @import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);\r\n  @media only screen and (min-width:641px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-52 { width:52% !important; max-width: 52%; } .mj-column-per-48 { width:48% !important; max-width: 48%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }\r\n  .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                .links-FFFFFF-underline-bold a { color: #FFFFFF; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .mso-button-dark-mode a {background: transparent !important;} .links-161D26-underline a { color: #161D26; text-decoration: underline; } .links-161D26 a { color: #161D26; text-decoration: none; } .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:641px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-165px { max-width: 165px !important} .padding-5px-24px-24px-40px { padding: 5px 24px 24px 40px !important} .padding-0px-32px-0px-0px { padding: 0px 32px 0px 0px !important} .font-size-36px { font-size: 36px !important} .padding-30px-0px-20px-0px { padding: 30px 0px 20px 0px !important} .padding-0px-40px-0px-0px { padding: 0px 40px 0px 0px !important} .max-width-276px { max-width: 276px !important} .padding-12px-40px-12px-40px { padding: 12px 40px 12px 40px !important} .padding-20px-40px-0px-40px { padding: 20px 40px 0px 40px !important} .font-size-18px { font-size: 18px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .font-size-20px { font-size: 20px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }\r\n  ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 641px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}\r\n  [class~=\"x_body\"] { width: 99.9% }               @supports(--css:variables) {                         td[style*=\"border-radius\"] { -webkit-filter: drop-shadow(0 0 1px transparent); }             }\r\n \r\n \r\n  \r\n   \r\n\r\n  \r\n  \r\n   Get ready to shop October 7–8\r\n  \r\n  \r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  \r\n  \r\n   \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   &nbsp;\r\n                  \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        Save the date:\r\n                         October 7–8\r\n                       \r\n                      \r\n                    \r\n                    \r\n                     \r\n                      \r\n                        Shop early deals \r\n                      \r\n                    \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   Business Prime members save big during Prime Big Deal Days. Shop early deals and access exclusive benefits for your business, like fast, free shipping.\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   Find more ways to save\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                           \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             Business Savings Guide\r\n                            \r\n                           \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             Save on business-only prices on thousands of items.&nbsp;\r\n                            \r\n                           \r\n                         \r\n                        \r\n                       \r\n                     \r\n                    \r\n                   \r\n                  \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                           \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             Quantity Discounts\r\n                            \r\n                           \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             Explore volume discounts that give you the lowest price per unit.\r\n                            \r\n                           \r\n                         \r\n                        \r\n                       \r\n                     \r\n                    \r\n                   \r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   Please note that product prices and availability are subject to change. Prices and availability were accurate at the time this email was sent. However, they may differ from those you see when you visit Amazon.com.\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       Contact us | Manage account\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your email preferences.\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       © 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210\r\n                       &nbsp;\r\n                       Reference: 2808617628\r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n   \r\n  \r\n \r\n\r\n',0,0,0,0,0,0,'2025-09-16 17:02:35','2025-12-09 19:28:29','2025-12-09 19:28:29','2025-12-09 19:28:29',NULL,NULL,NULL),
(731,4,'<uabZIJmNS2qzqwSST4PMDg@geopod-ismtpd-9>',NULL,NULL,'New Solicitation Posted on DIU.mil','info@diu.mil','Defense Innovation Unit','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html data-editor-version=\"2\" class=\"sg-campaigns\" xmlns=\"http://www.w3.org/1999/xhtml\">\r\n    <head>\r\n      <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n      <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1\">\r\n      <!--[if !mso]><!-->\r\n      <meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge\">\r\n      <!--<![endif]-->\r\n      <!--[if (gte mso 9)|(IE)]>\r\n      <xml>\r\n        <o:OfficeDocumentSettings>\r\n          <o:AllowPNG/>\r\n          <o:PixelsPerInch>96</o:PixelsPerInch>\r\n        </o:OfficeDocumentSettings>\r\n      </xml>\r\n      <![endif]-->\r\n      <!--[if (gte mso 9)|(IE)]>\r\n  <style type=\"text/css\">\r\n    body {width: 600px;margin: 0 auto;}\r\n    table {border-collapse: collapse;}\r\n    table, td {mso-table-lspace: 0pt;mso-table-rspace: 0pt;}\r\n    img {-ms-interpolation-mode: bicubic;}\r\n  </style>\r\n<![endif]-->\r\n      <style type=\"text/css\">\r\n    body, p, div {\r\n      font-family: arial,helvetica,sans-serif;\r\n      font-size: 14px;\r\n    }\r\n    body {\r\n      color: #000000;\r\n    }\r\n    body a {\r\n      color: #2483c5;\r\n      text-decoration: none;\r\n    }\r\n    p { margin: 0; padding: 0; }\r\n    table.wrapper {\r\n      width:100% !important;\r\n      table-layout: fixed;\r\n      -webkit-font-smoothing: antialiased;\r\n      -webkit-text-size-adjust: 100%;\r\n      -moz-text-size-adjust: 100%;\r\n      -ms-text-size-adjust: 100%;\r\n    }\r\n    img.max-width {\r\n      max-width: 100% !important;\r\n    }\r\n    .column.of-2 {\r\n      width: 50%;\r\n    }\r\n    .column.of-3 {\r\n      width: 33.333%;\r\n    }\r\n    .column.of-4 {\r\n      width: 25%;\r\n    }\r\n    ul ul ul ul  {\r\n      list-style-type: disc !important;\r\n    }\r\n    ol ol {\r\n      list-style-type: lower-roman !important;\r\n    }\r\n    ol ol ol {\r\n      list-style-type: lower-latin !important;\r\n    }\r\n    ol ol ol ol {\r\n      list-style-type: decimal !important;\r\n    }\r\n    @media screen and (max-width:480px) {\r\n      .preheader .rightColumnContent,\r\n      .footer .rightColumnContent {\r\n        text-align: left !important;\r\n      }\r\n      .preheader .rightColumnContent div,\r\n      .preheader .rightColumnContent span,\r\n      .footer .rightColumnContent div,\r\n      .footer .rightColumnContent span {\r\n        text-align: left !important;\r\n      }\r\n      .preheader .rightColumnContent,\r\n      .preheader .leftColumnContent {\r\n        font-size: 80% !important;\r\n        padding: 5px 0;\r\n      }\r\n      table.wrapper-mobile {\r\n        width: 100% !important;\r\n        table-layout: fixed;\r\n      }\r\n      img.max-width {\r\n        height: auto !important;\r\n        max-width: 100% !important;\r\n      }\r\n      a.bulletproof-button {\r\n        display: block !important;\r\n        width: auto !important;\r\n        font-size: 80%;\r\n        padding-left: 0 !important;\r\n        padding-right: 0 !important;\r\n      }\r\n      .columns {\r\n        width: 100% !important;\r\n      }\r\n      .column {\r\n        display: block !important;\r\n        width: 100% !important;\r\n        padding-left: 0 !important;\r\n        padding-right: 0 !important;\r\n        margin-left: 0 !important;\r\n        margin-right: 0 !important;\r\n      }\r\n      .social-icon-column {\r\n        display: inline-block !important;\r\n      }\r\n    }\r\n  </style>\r\n      <!--user entered Head Start--><!--End Head user entered-->\r\n    </head>\r\n    <body>\r\n      <center class=\"wrapper\" data-link-color=\"#2483c5\" data-body-style=\"font-size:14px; font-family:arial,helvetica,sans-serif; color:#000000; background-color:#ffffff;\">\r\n        <div class=\"webkit\">\r\n          <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"wrapper\" bgcolor=\"#ffffff\">\r\n            <tr>\r\n              <td valign=\"top\" bgcolor=\"#ffffff\" width=\"100%\">\r\n                <table width=\"100%\" role=\"content-container\" class=\"outer\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                  <tr>\r\n                    <td width=\"100%\">\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                        <tr>\r\n                          <td>\r\n                            <!--[if mso]>\r\n    <center>\r\n    <table><tr><td width=\"600\">\r\n  <![endif]-->\r\n                                    <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:100%; max-width:600px;\" align=\"center\">\r\n                                      <tr>\r\n                                        <td role=\"modules-container\" style=\"padding:10px 18px 10px 18px; color:#000000; text-align:left;\" bgcolor=\"#ecf7ff\" width=\"100%\" align=\"left\"><table class=\"module preheader preheader-hide\" role=\"module\" data-type=\"preheader\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"display: none !important; mso-hide: all; visibility: hidden; opacity: 0; color: transparent; height: 0; width: 0;\">\r\n    <tr>\r\n      <td role=\"module-content\">\r\n        <p>DHS and the DoW seek solutions capable of reliably stopping non-compliant small watercraft.</p>\r\n      </td>\r\n    </tr>\r\n  </table><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cfd0cb98-cae3-4099-bb9b-d518af9861a8\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:10px 18px 10px 18px;\" valign=\"top\" align=\"center\">\r\n          <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:25% !important; width:25%; height:auto !important;\" width=\"141\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/07c51c13-1be6-40d1-8dc7-789cd2686a09/1080x1080.png\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"divider\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"257cee2c-17b5-4325-a24f-cbc103c5619a.1.1.1.2.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 18px 0px 18px;\" role=\"module-content\" height=\"100%\" valign=\"top\" bgcolor=\"#d4eafb\">\r\n          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" height=\"3px\" style=\"line-height:3px; font-size:3px;\">\r\n            <tbody>\r\n              <tr>\r\n                <td style=\"padding:0px 0px 3px 0px;\" bgcolor=\"#2483C5\"></td>\r\n              </tr>\r\n            </tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"1b2e3e3f-7a4f-4ae9-858a-b364347e6b2b.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#FFFFFF\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"544\" style=\"width:544px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"12a76bcf-49d1-4289-8902-3dec45d9306a\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: center\"><span style=\"color: #454546; font-family: arial, helvetica, sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: center; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; background-color: rgb(255, 255, 255); font-size: 18px\">New Solicitation Announcement</span></div>\r\n<div style=\"font-family: inherit; text-align: center\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-alternates: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; background-color: rgb(255, 255, 255); color: #7c7e7f; font-family: arial, helvetica, sans-serif; font-size: 12px\">There is a new solicitation posted on our website. It is easy to respond with a 5-page paper or 15-slide slide deck. These limits are not requirements but are strongly recommended. Additional guidance about what we look for in a proposal is </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILh-2Bq1vMh5oO7-2Blz-2BUvdb0irmCIWB37BuouaFHZh9mjyapo40PS1xJmwqEWgArI7j9CRSrXpEexhWeQDXTY07pHfWNPHo7vlnb-2FhFx9HUTh4e9aYOlxqtqQGH9u1buGgAJ8BabEvBziVw-2FSowa6SMdLw-3DmIL4_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BScBFr9rOSAWqnzC6w-2F0oDcUOB0mmW0k9-2FT5fGlR6IGJ40vhJbzN2VhPgYyMH1LN9P6ytdWmtwN96hvW3JbRDE2-2B1suVZQHj6FKWnR16F46wqqDTu3hGTBy2jFrytH-2Bw3h1ojP4EhQgQCGbARt4okUCpemX84bVbAentbnk4f7k-2B-2B358ExIy7fvduAiE3CdrqHz3LYzbqeT2ToKEqhDuQB06V2LcqJJRdqH6HixSKiZ19dOZ-2BzX0ppdAqDWVGZtssqbtq6rUG-2FQqdbHOEJ6cpCwxYBDMffdYnprfD9RTE34GtkWoE-2BWC-2FS1QDsk-2F405oxODx87633SzOrgbP0BNCWnTNC91gD7O-2B4ysh7-2FYXHvEUSi77XJxNYB3e8ahTxsR-2BKxy8QMZQfTB6c5pUZ9AtAIUdMNndABMqmAkIttjsXQ5EX7JjjzPVtxhl0bG3TyXUvdBxETZbZdjnrX3oXzXSPoZ9LrXYxtv94AANYswRW-2BdycAvT3qQOXFIrY5LWudMVeSavtC-2BCKX19CLjnfg-2FhnzACNt2hLy3k0Fg-2FC9x1dB5g00z2Jvb4E1d1KKRggLh83ImNldO9gJQABdwQYaYca3U5axFhPA2XsWT94J-2Fv5dOuK9HXhXfAtOHSYT3BlsAC-2B7eK9PQDQSq89iAkycAudbaZCA7QWZZ-2ByHDec6O0wmAmLShwtSnnoaWH5-2FtE5KhSPrLMu2bjxW692qZ9jTUmMkDqpmQoGgNfxjVuNWXHu8YJCvTqp8Agu-2BVaeS9TNlTlXicBqCDbjWk3WoaYW9HEnOInKyYn-2FUWJgNMbiOgc3s0t8cjmf7iJNukUdojQ6ZcCwLzL29twkQLWmolq-2BRkl80rY-3D\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-alternates: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; background-color: rgb(255, 255, 255); color: #01a1f1; font-family: arial, helvetica, sans-serif; font-size: 12px\">available </span><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: none; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); color: #01a1f1; font-family: arial, helvetica, sans-serif; font-size: 12px\">here</span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-alternates: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; background-color: rgb(255, 255, 255); color: #7c7e7f; font-family: arial, helvetica, sans-serif; font-size: 12px\">. Our goal is to award an initial contract within 60-90 days of solicitation closure. Solicitation details and a link to the submission page are available below.</span><span style=\"font-family: arial, helvetica, sans-serif; font-size: 12px\"><br>\r\n</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#FFFFFF\" data-distribution=\"2,1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"362\" style=\"width:362px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2bb08414-727d-4668-851a-a0e1e3708ed6\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 10px 18px 10px; line-height:20px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit\"><span style=\"font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; color: #2483c5; font-size: 18px; font-family: arial,helvetica,sans-serif\"><strong>Show Stopper: Non-Kinetic Disablement of Non-Compliant, Small Watercraft</strong></span><span style=\"color: #2483c5; font-size: 18px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial,helvetica,sans-serif\"><strong><br>\r\n</strong></span></div>\r\n<div style=\"font-family: inherit\"><br></div>\r\n<div style=\"font-family: inherit\"><span style=\"font-optical-sizing: auto; font-weight: 300; font-style: normal; font-variation-settings: &quot;slnt&quot; 0; white-space-collapse: collapse; text-wrap-mode: wrap; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; line-height: 1.4; margin-bottom: 1.8rem; margin-top: 0.5rem; max-width: 58rem; list-style-position: inherit; font-family: arial, helvetica, sans-serif; font-size: 12px; color: #7c7e7f\">The use of small watercraft by our nation’s adversaries, including transnational criminal organizations (TCOs) and state actors, to smuggle illicit cargo and aliens across the U.S.\'s maritime borders presents a growing security challenge. These agile vessels, often operating in densely populated areas and under cover of darkness, require interdiction strategies that do not expose the suspect vessel’s operators, civilian bystanders, and law enforcement personnel conducting the interdiction to an undue level of risk.&nbsp;</span></div>\r\n<div style=\"font-family: inherit; text-align: start\"><br></div>\r\n<div style=\"font-family: inherit; text-align: start\"><span style=\"font-optical-sizing: auto; font-weight: 300; font-style: normal; font-variation-settings: &quot;slnt&quot; 0; white-space-collapse: collapse; text-wrap-mode: wrap; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; line-height: 1.4; margin-bottom: 1.8rem; margin-top: 0.5rem; max-width: 58rem; list-style-position: inherit; font-family: arial, helvetica, sans-serif; font-size: 12px; color: #7c7e7f\">The Department of Homeland Security (DHS) and the Department of War (DoW) are seeking solutions capable of reliably stopping non-compliant small watercraft without placing undue risk to the DHS/DoW personnel conducting these interdictions, operators/passengers onboard the non-compliant vessel (NCV), and nearby innocent civilians on the water. </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9qfldd33WaBN8ZT0HwBRxJnfWv2iNMDm31gYwFxgGLfpVfgYeUZ3k3hUA49e4K9ZkjwI184auTD4kxbRqgxnjY-2FDGdCTAcp512LXE31rTWaC7SNq_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BScBFr9rOSAWqnzC6w-2F0oDcUOB0mmW0k9-2FT5fGlR6IGJ40vhJbzN2VhPgYyMH1LN9P6ytdWmtwN96hvW3JbRDE2-2B1suVZQHj6FKWnR16F46wqqDTu3hGTBy2jFrytH-2Bw3h1ojP4EhQgQCGbARt4okUCpemX84bVbAentbnk4f7k-2B-2B358ExIy7fvduAiE3CdrqHz3LYzbqeT2ToKEqhDuQB06V2LcqJJRdqH6HixSKiZ19dOZ-2BzX0ppdAqDWVGZtssqbtq6rUG-2FQqdbHOEJ6cpCwxYBDMffdYnprfD9RTE34GtkWoE-2BWC-2FS1QDsk-2F405oxODx87633SzOrgbP0BNCWnTNC91gD7O-2B4ysh7-2FYXHvEUSi77XJxNYB3e8ahTxsR-2BKxy8QMZQfTB6c5pUZ9AtAIUdMNndABMqmAkIttjsXQ5EX7JjjzPVtxhl0bG3TyXUvdBxETZbZdjnrX3oXzXSPoZ9LrXYxtv94AANYswRW-2BdycAvT3qQOXFIrY5LWudMVeSavtC-2BCKX19CLjnfg-2FhnzACNt2hLy3k0Fg-2FC9x1dB5g00z2Jvb4E1d1KKRggLh83ImNldO9gJQABdwQYaYca3U5axFhPA2XsWT94J-2Fv5dOuK9HXhXfAtOHSYT3BlsAC-2B7eK9PQDQSq89iAkycAudbaZCA7QWZZ-2ByHDec6O0wmAmLVCt48b6VVkqE7QfYm47ujNsdepkwAqMWGbdkN0FmJMGIQ5Tp9MI-2BN4301N7WDQE89rzCKfNhXPaLj5cVx1dyX0Qt3b1T0yEVHhHTZVMecwMs3VFZ4h80DmeXKITI8TYQkvS-2B0nmvSlysoWGO1M-2BKzgws-2B2rzosNLK57A-2B1mB-2Fl4-3D\"><span style=\"font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; color: #2483c5; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>Learn more.</strong></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"181\" style=\"width:181px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"4fa31850-56ff-4e7f-985c-2dd2d58a3cef\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>Submission Deadline:</strong></span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">30 September 2025</span><span style=\"font-family: arial, helvetica, sans-serif; font-size: 12px\"><br>\r\n</span><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">23:59:59 U.S. Eastern Time</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"module\" data-role=\"module-button\" data-type=\"button\" role=\"module\" style=\"table-layout:fixed;\" width=\"100%\" data-muid=\"621468ff-bdcc-4d55-8cd5-838691427b54\">\r\n      <tbody>\r\n        <tr>\r\n          <td align=\"left\" bgcolor=\"\" class=\"outer-td\" style=\"padding:0px 0px 0px 0px;\">\r\n            <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"wrapper-mobile\" style=\"text-align:center;\">\r\n              <tbody>\r\n                <tr>\r\n                <td align=\"center\" bgcolor=\"#2483C5\" class=\"inner-td\" style=\"border-radius:6px; font-size:16px; text-align:left; background-color:inherit;\">\r\n                  <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9qfldd33WaBN8ZT0HwBRxJnfWv2iNMDm31gYwFxgGLfpVfgYeUZ3k3hUA49e4K9ZkjwI184auTD4kxbRqgxnjY-2FDGdCTAcp512LXE31rTWaCpFM9_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BScBFr9rOSAWqnzC6w-2F0oDcUOB0mmW0k9-2FT5fGlR6IGJ40vhJbzN2VhPgYyMH1LN9P6ytdWmtwN96hvW3JbRDE2-2B1suVZQHj6FKWnR16F46wqqDTu3hGTBy2jFrytH-2Bw3h1ojP4EhQgQCGbARt4okUCpemX84bVbAentbnk4f7k-2B-2B358ExIy7fvduAiE3CdrqHz3LYzbqeT2ToKEqhDuQB06V2LcqJJRdqH6HixSKiZ19dOZ-2BzX0ppdAqDWVGZtssqbtq6rUG-2FQqdbHOEJ6cpCwxYBDMffdYnprfD9RTE34GtkWoE-2BWC-2FS1QDsk-2F405oxODx87633SzOrgbP0BNCWnTNC91gD7O-2B4ysh7-2FYXHvEUSi77XJxNYB3e8ahTxsR-2BKxy8QMZQfTB6c5pUZ9AtAIUdMNndABMqmAkIttjsXQ5EX7JjjzPVtxhl0bG3TyXUvdBxETZbZdjnrX3oXzXSPoZ9LrXYxtv94AANYswRW-2BdycAvT3qQOXFIrY5LWudMVeSavtC-2BCKX19CLjnfg-2FhnzACNt2hLy3k0Fg-2FC9x1dB5g00z2Jvb4E1d1KKRggLh83ImNldO9gJQABdwQYaYca3U5axFhPA2XsWT94J-2Fv5dOuK9HXhXfAtOHSYT3BlsAC-2B7eK9PQDQSq89iAkycAudbaZCA7QWZZ-2ByHDec6O0wmAmL5VjmyUHm-2BMXfe6YXKYqD34njNTnowMQqEv7AwBdhZmChfHcaKqxHwNdwz1QPZ41Be0AoOshOnXCN4V-2FvXKWPWrPikloY8m4E729gZyAv74HmsCkYqYF1l-2F99xb8PYbGBlLj3OkLLYmyjMSVpdIXU9NSHmS-2FMmVPF66WA8CnX3Qk-3D\" style=\"background-color:#2483C5; border:1px solid #2483C5; border-color:#2483C5; border-radius:6px; border-width:1px; color:#ffffff; display:inline-block; font-size:12px; font-weight:bold; letter-spacing:0px; line-height:normal; padding:12px 18px 12px 18px; text-align:center; text-decoration:none; border-style:solid;\" target=\"_blank\">Learn more</a>\r\n                </td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n          </td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"1b2e3e3f-7a4f-4ae9-858a-b364347e6b2b\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#FFFFFF\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"544\" style=\"width:544px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"12a76bcf-49d1-4289-8902-3dec45d9306a.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: left\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: 700; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; text-align: start; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 14px; color: #7c7e7f\">Other open solicitations:</span></div>\r\n<div style=\"font-family: inherit; text-align: start\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit; margin-left: 0px\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9kGc-2Fi654EjxfC7gcUneG-2FZ8t5AyHoUl6ZdeO-2FYuJPcUTJiRYNwzKE1XObChGB-2B-2BCaCoIghdLCzaLv4F8SC8T4411K7i5hbARk9-2FKFN-2B71yAb2qK_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BScBFr9rOSAWqnzC6w-2F0oDcUOB0mmW0k9-2FT5fGlR6IGJ40vhJbzN2VhPgYyMH1LN9P6ytdWmtwN96hvW3JbRDE2-2B1suVZQHj6FKWnR16F46wqqDTu3hGTBy2jFrytH-2Bw3h1ojP4EhQgQCGbARt4okUCpemX84bVbAentbnk4f7k-2B-2B358ExIy7fvduAiE3CdrqHz3LYzbqeT2ToKEqhDuQB06V2LcqJJRdqH6HixSKiZ19dOZ-2BzX0ppdAqDWVGZtssqbtq6rUG-2FQqdbHOEJ6cpCwxYBDMffdYnprfD9RTE34GtkWoE-2BWC-2FS1QDsk-2F405oxODx87633SzOrgbP0BNCWnTNC91gD7O-2B4ysh7-2FYXHvEUSi77XJxNYB3e8ahTxsR-2BKxy8QMZQfTB6c5pUZ9AtAIUdMNndABMqmAkIttjsXQ5EX7JjjzPVtxhl0bG3TyXUvdBxETZbZdjnrX3oXzXSPoZ9LrXYxtv94AANYswRW-2BdycAvT3qQOXFIrY5LWudMVeSavtC-2BCKX19CLjnfg-2FhnzACNt2hLy3k0Fg-2FC9x1dB5g00z2Jvb4E1d1KKRggLh83ImNldO9gJQABdwQYaYca3U5axFhPA2XsWT94J-2Fv5dOuK9HXhXfAtOHSYT3BlsAC-2B7eK9PQDQSq89iAkycAudbaZCA7QWZZ-2ByHDec6O0wmAmL-2BMi91X-2BM7EHdYzXxzvLORK9iB5Y-2Bcqzq6cCcxE47aXb7qqeBQq-2F4-2Fd9jbLRyTUSkS10D5pCoJtRxYuNSYEiP-2BzMYaYQxLg2CJuXkWaQ221y4hkCCKMDn6bN1OqCGHATzJXlOeEqV8oD1-2FF7Z4Z6jMctQ77FzdYznX2L3jdgnNSQ-3D\"><span style=\"font-size: 12px; color: #2483c5\"><strong>Project G.I. Prize Challenge</strong></span></a></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-size: 12px\">This solicitation closes on December 31, 2025 at 23:59:59 Eastern Time</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><br></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"01cfd941-691e-4504-af90-9ba914a69b55\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:10px 18px 10px 18px;\" valign=\"top\" align=\"center\">\r\n          <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:25% !important; width:25%; height:auto !important;\" width=\"141\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/07c51c13-1be6-40d1-8dc7-789cd2686a09/1080x1080.png\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"6cf433f1-53d9-4818-89de-d72eccb7d837\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 10px 18px 10px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"line-height: inherit; color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-line: inherit; text-decoration-thickness: inherit; text-decoration-style: inherit; text-decoration-color: inherit; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>About DIU:&nbsp;</strong></span><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">The Defense Innovation Unit (DIU) strengthens our national security by accelerating the adoption of commercial technology throughout the military and growing the national security innovation base. DIU partners with organizations across the Department of War (DoW) and with&nbsp;nontraditional companies to facilitate prototype projects and field advanced commercial solutions that address national security challenges. DIU leverages Other Transaction (OT) authority to award Prototype agreements, which, if successful, may result in the direct award of a follow-on Production agreement without the use of further competitive procedures. (DIU is not an OT consortium; DIU executes direct award OTs).&nbsp;</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; background-color: rgb(255, 255, 255); font-size: 12px\">You are receiving this email because you have a contact at DIU or you signed up to our mailing list. If you would like to be removed from our email list, please click the unsubscribe link below.</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"6ac32cba-50e8-406c-8061-dd0135aebb60\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 30px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"module\" data-role=\"module-button\" data-type=\"button\" role=\"module\" style=\"table-layout:fixed;\" width=\"100%\" data-muid=\"bf716dbe-018d-4f2d-bf15-b5b6db124e86\">\r\n      <tbody>\r\n        <tr>\r\n          <td align=\"center\" bgcolor=\"\" class=\"outer-td\" style=\"padding:0px 0px 0px 0px;\">\r\n            <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"wrapper-mobile\" style=\"text-align:center;\">\r\n              <tbody>\r\n                <tr>\r\n                <td align=\"center\" bgcolor=\"#2483C5\" class=\"inner-td\" style=\"border-radius:6px; font-size:16px; text-align:center; background-color:inherit;\">\r\n                  <a href=\"mailto:info@diu.mil\" style=\"background-color:#2483C5; border:1px solid #2483C5; border-color:#2483C5; border-radius:6px; border-width:1px; color:#ffffff; display:inline-block; font-size:12px; font-weight:bold; letter-spacing:0px; line-height:normal; padding:18px 18px 12px 18px; text-align:center; text-decoration:none; border-style:solid; font-family:arial,helvetica,sans-serif;\" target=\"_blank\">Contact Us</a>\r\n                </td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n          </td>\r\n        </tr>\r\n      </tbody>\r\n    </table><div data-role=\"module-unsubscribe\" class=\"module\" role=\"module\" data-type=\"unsubscribe\" style=\"color:#444444; font-size:12px; line-height:20px; padding:16px 16px 16px 16px; text-align:center;\" data-muid=\"037d4496-257f-4255-8897-cb3cce530456\"><div class=\"Unsubscribe--addressLine\"></div><p style=\"font-size:12px; line-height:20px;\"><a class=\"Unsubscribe--unsubscribeLink\" href=\"https://u18220755.ct.sendgrid.net/asm/unsubscribe/?user_id=18220755&amp;data=Zd_zt0ET0IsMv47WHSVrqlc8W1ksNnVzEXLkGIkJejloMDAwdTAwMOPKf1Q7b09D29NN84V9MFeyMx4Gxf6o00AlCRoCJlYbYetbiy2x5uFnpG57QlaVXyQ8vyQqWo351rpJZ6KA-CnV0f-IXmH6K9bvu4D8nRjI9WXIHrDkKE507qnPJrhbRQWRbtYB8PRhgX3-lzGBGLYyvKWDv3JwGCk0nmR8_8L0C1XwiyEzxsxG7Jjb_bOM720LPLOFZhrniAlokA5_1VEpJ-nA0oJFrc_IFMk4QMBQLQMxnt36k8fezTk78I9vHlAVV1U-SENIM6ojtcGasSk_v2gUnYZ0jVDBrNjPovsB1_P3tIO9eVCwEhRNwcdBqceDnL8CjCIXfz7EXYkSjKjKjt59bcQqpf8N7lqeVLshXNCkGHWeoKeQwfxeMZDJW62472kM9voB1EAUSX67InSVqXKE6WmdumwsJCUqAOA071aGKZeBZizJL13otAP7oF_ssWDliM86XVJ8C_2tywpoxie8_aD-RlhRjTK_FneVR87Gue097vPfMygB8ZadmDIwtYEbh4V6Rx3u7Xk6nitwQQWunFvHHYRjfUE-ABMeyZSDnlPtGR0aj7UH09mCUHGwC6AeQtI6xo2lEWdCSBbijRRSXTU0yzT6Nqjfat5UBtwAHlOZMT9IeOKDCN461R7hA9I0c0S2lSm4bmrqNuGUTdgzyrH94uMlLuQlaXg4_G2So2Dx5jVhbG3Ij0B-z8flaOMAsaf6rmKc2m5L2rOk_oqMvWq3x9wuKHQ2s6GkXVrzyNcWvV7qRN43k-APpxeVcJhcaiPK5dZd0By_6pbu__FPWS2KqTb8Vu7TgNTJYLncPa_kJmMseYuSePG54XmuDb7W9ftxlTtjbFTcwtbRPUN3s4e1e3YmlogvhkNG6czuJoQ3cCZv7JYAuKAZMZ1GHmJRfXOcZNVfMLfLn6hYQVzVlMlMMIGHdDfpLyu7x243Oqhpz_OHq8-AfOLn6Jbz-QDUZ8jmnUC7abEsV8ZIXqHtpUXE9JvstrpMjYjlA-sn-dByJL4XawGCymnzZRQMQE5-sExzJZrPHWhGwF-fUK7UA22t5yqlKgUl0_3Ye4Ys0KvX2h4RPujbf3zjd6xYjl_Lf1jgHgHisDE1ayUf8f7jOdoBpg_JpA7CJynPZSEAknzmaSK4YaV7p6gRHA==\" target=\"_blank\" style=\"\">Unsubscribe</a> - <a href=\"https://u18220755.ct.sendgrid.net/asm/?user_id=18220755&amp;data=9GDsUXHVyNlVQF5o9qVx9BTvBIVkzlNZ_k0HVj3ayJVoMDAwdTAwMPtoPk65tFVtfwLt2EiTYB5pqHjIXZBO-q3BN8bRAh2CptCp4VWOvDvWLVt14hKZMnt5dh4nARvPafDaSHIRcA3os33CNgW2CXxp034ase8QvbBDiDP-IiXb4OSHV6cfYIb1IDtS4Uilo1-MlEz0F3_JKNmJNeYVU6GJYUGFNGmH1PSSBgGj2BNnzQU38QUj5Iam1B_DRMLlljsfjZeLHD22OsS6e5akD1hAcfHGxN9XzptLuJ4vLi05LkbfO5UbG2Fhs5F5-2pEAm5eiPZYMC4sSY2vlXDJ6UqCpWwLIRfAOVokkIlO61YCOKzNjnadWRp96l6Tt56_DKCz0pVoRhP7TOFNgfcqapn5HXzT9RHA3hSrkgEWJTJhqU3sPrZYceHmjB52-eQUvkbO5fv4FyBwThiC6My98_TCLIxSAYkmXSnCEOpohzVVQEi_9OfKZbtLEwlQm3KGj5K3vclcD3deTLb6ru2cZTslcm7mzIRRHvCWVWRwIKQs-6BgHscGOfppF4ZRW7h8tTRymVVBVJwlvlwIskPH_W8YY588yInymiXPCRF7eYrj6WsuZeXLlllma0wQzm9iVdzGPWWTGTQZLkLdWO-im1-05jKcQWgLJubIDmzmfY-aBmHVJJ_hgrcPGTmK4tGguj1T4uLGXylyB7N_HKsIw59cUHn8pTAcPEgp18ZvjeYef-6C1uEx8n3KLO-ZswROvsI9HQhfD6Y6MMWeMDFfECCWYVvWkgUMT_YYGcjO0N-P6Lb5GVNu0nZDMjqi1YDJ9JiXsc-lLU9WY0NWw_ADNRSlmyA37A-67moJAJV39IdPXX5OaJy3y6xVLuTPEiKTPw1pQv13PbzEjVwOccjcwLIb9bHZaXzvBTf1xdF5y0TRna7JFMVIWUwww9PeTEgdSK597THC-HuTDwpoUqhnA6SYPSV_uOcWs6IcuwOmv39sFWG5vzcXNGMpZfYmjv5wdk-OXD4v36dVtNyqliTFQKPK4YNf8Q-MNAHaGJq7UQIGhTSg3hXaEC5N5wlmVwrideibkKFYVXfEApBpZugMVaBcWpNzaluWR242h6BLrGWX5i37P_ltL_vVUK5XKpAvAFfU18LXryytsmC3Vp6qp_vWkoVe52K3\" target=\"_blank\" class=\"Unsubscribe--unsubscribePreferences\" style=\"\">Unsubscribe Preferences</a></p></div></td>\r\n                                      </tr>\r\n                                    </table>\r\n                                    <!--[if mso]>\r\n                                  </td>\r\n                                </tr>\r\n                              </table>\r\n                            </center>\r\n                            <![endif]-->\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </div>\r\n      </center>\r\n    <img src=\"https://u18220755.ct.sendgrid.net/wf/open?upn=u001.D6mC8SG6iITw2GIzPjAtw7SLAuEgZhcE7OQx5Ie2paKW9TCJvoy3Eh7ani-2FmDfzWZ4Aty9oKYAg8U-2BpXv81mmaeCBsQtTAdxlXqbnsXBCjn-2FAW10qJfypmIUPoD1-2B38y4LSjEaiwyNZHtEyZD-2BNUDcj9Wpk9LqjAUPz8pKIcaCoQ6mKJOgt1vKuQiyRLaIMYSfJJQ-2BmPb-2FyoaHf7B8SsCyGlyScky9wcaCkPL63Xre4-2FxqMu-2ForK2fQhgOiYnb0mS7EN3dNj05Kn5IqK33q8MEuB1nLwF-2BqpM95uw1pfxd5V9Yw32rPUnKK2CIvShOyr1wl69fgcjumdbrT7ba7zmAvOIS8MgniOQG14B-2B4GCeQ08lGHor4ObPmdtjVoxDs4-2BdrC9bOIFoJJQVYJxTp92kcKPH6ir3IQUjDcSoyvhgy1f3TGI3T4tRHjDAJ-2B0ef2je2VMLhEMfrvMD0hiXv6RvEqcokiF7knQvz-2FGdtiFouBh0M-2FLyOU86doVSLcNwhZzst1xgxG9prUp6MVFGNNDyPlM4UBNTWj-2FUmHt7x1GQ6UF0yolC5BDwZA6ksLCx1yYmbgm5Eyj1pXKyZNBbH1UG4FQlYtRAwJTOK8NhyrGL1baodgJlAxeWwy1nAdfsQUirOf6cX9Et-2BxtEPnJQgRIFLa4w9DjUNUMRdJgbgkTQ1m2IHUOtKcva5buAHIFLoWYGKO1P0xJ6tcWbbDMrXahRmAp735KV2-2BQ944P-2BCTNO1e-2BL0y-2BktPxzUSQaoGKvBeV7gG-2FlPa6YLpfn1d1Vl0juwv90-2FUoI9TJEVeZq8bTEyQUS9oe6-2BDXoGnthYHTtztg7NDF7RwXhNZDg0zwiE8MD5iKqJhaUsgVKkFD2RJSegcWAcgtjVLELMbJdTZedlEhUlU6AcQtVu3Q185l9apIh6bPkgOWXWHidICITbyLC-2FoB7SFyn7f0DwgJj-2BC61dHVUMF-2BgpItVa55c2dUTXG6y89bhWT2TxLY3kdoCiqN7k-3D\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/></body>\r\n  </html>','DHS and the DoW seek solutions capable of reliably stopping non-compliant small watercraft.\r\n\r\nNew Solicitation Announcement\r\n\r\nThere is a new solicitation posted on our website. It is easy to respond with a 5-page paper or 15-slide slide deck. These limits are not requirements but are strongly recommended. Additional guidance about what we look for in a proposal is available here ( https://www.diu.mil/solution-brief-guidance?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ). Our goal is to award an initial contract within 60-90 days of solicitation closure. Solicitation details and a link to the submission page are available below.\r\n\r\n*Show Stopper: Non-Kinetic Disablement of Non-Compliant, Small Watercraft* *\r\n*\r\n\r\nThe use of small watercraft by our nation’s adversaries, including transnational criminal organizations (TCOs) and state actors, to smuggle illicit cargo and aliens across the U.S.\'s maritime borders presents a growing security challenge. These agile vessels, often operating in densely populated areas and under cover of darkness, require interdiction strategies that do not expose the suspect vessel’s operators, civilian bystanders, and law enforcement personnel conducting the interdiction to an undue level of risk.\r\n\r\nThe Department of Homeland Security (DHS) and the Department of War (DoW) are seeking solutions capable of reliably stopping non-compliant small watercraft without placing undue risk to the DHS/DoW personnel conducting these interdictions, operators/passengers onboard the non-compliant vessel (NCV), and nearby innocent civilians on the water. *Learn more.* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00602?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*Submission Deadline:*\r\n30 September 2025\r\n23:59:59 U.S. Eastern Time\r\n\r\nLearn more ( https://www.diu.mil/work-with-us/submit-solution/PROJ00602?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\nOther open solicitations:\r\n\r\n*Project G.I. Prize Challenge* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00598?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\nThis solicitation closes on December 31, 2025 at 23:59:59 Eastern Time\r\n\r\n*About DIU:* The Defense Innovation Unit (DIU) strengthens our national security by accelerating the adoption of commercial technology throughout the military and growing the national security innovation base. DIU partners with organizations across the Department of War (DoW) and with nontraditional companies to facilitate prototype projects and field advanced commercial solutions that address national security challenges. DIU leverages Other Transaction (OT) authority to award Prototype agreements, which, if successful, may result in the direct award of a follow-on Production agreement without the use of further competitive procedures. (DIU is not an OT consortium; DIU executes direct award OTs).\r\n\r\nYou are receiving this email because you have a contact at DIU or you signed up to our mailing list. If you would like to be removed from our email list, please click the unsubscribe link below.\r\n\r\nContact Us ( info@diu.mil )\r\n\r\nUnsubscribe ( https://u18220755.ct.sendgrid.net/asm/unsubscribe/?user_id=18220755&data=Zd_zt0ET0IsMv47WHSVrqlc8W1ksNnVzEXLkGIkJejloMDAwdTAwMOPKf1Q7b09D29NN84V9MFeyMx4Gxf6o00AlCRoCJlYbYetbiy2x5uFnpG57QlaVXyQ8vyQqWo351rpJZ6KA-CnV0f-IXmH6K9bvu4D8nRjI9WXIHrDkKE507qnPJrhbRQWRbtYB8PRhgX3-lzGBGLYyvKWDv3JwGCk0nmR8_8L0C1XwiyEzxsxG7Jjb_bOM720LPLOFZhrniAlokA5_1VEpJ-nA0oJFrc_IFMk4QMBQLQMxnt36k8fezTk78I9vHlAVV1U-SENIM6ojtcGasSk_v2gUnYZ0jVDBrNjPovsB1_P3tIO9eVCwEhRNwcdBqceDnL8CjCIXfz7EXYkSjKjKjt59bcQqpf8N7lqeVLshXNCkGHWeoKeQwfxeMZDJW62472kM9voB1EAUSX67InSVqXKE6WmdumwsJCUqAOA071aGKZeBZizJL13otAP7oF_ssWDliM86XVJ8C_2tywpoxie8_aD-RlhRjTK_FneVR87Gue097vPfMygB8ZadmDIwtYEbh4V6Rx3u7Xk6nitwQQWunFvHHYRjfUE-ABMeyZSDnlPtGR0aj7UH09mCUHGwC6AeQtI6xo2lEWdCSBbijRRSXTU0yzT6Nqjfat5UBtwAHlOZMT9IeOKDCN461R7hA9I0c0S2lSm4bmrqNuGUTdgzyrH94uMlLuQlaXg4_G2So2Dx5jVhbG3Ij0B-z8flaOMAsaf6rmKc2m5L2rOk_oqMvWq3x9wuKHQ2s6GkXVrzyNcWvV7qRN43k-APpxeVcJhcaiPK5dZd0By_6pbu__FPWS2KqTb8Vu7TgNTJYLncPa_kJmMseYuSePG54XmuDb7W9ftxlTtjbFTcwtbRPUN3s4e1e3YmlogvhkNG6czuJoQ3cCZv7JYAuKAZMZ1GHmJRfXOcZNVfMLfLn6hYQVzVlMlMMIGHdDfpLyu7x243Oqhpz_OHq8-AfOLn6Jbz-QDUZ8jmnUC7abEsV8ZIXqHtpUXE9JvstrpMjYjlA-sn-dByJL4XawGCymnzZRQMQE5-sExzJZrPHWhGwF-fUK7UA22t5yqlKgUl0_3Ye4Ys0KvX2h4RPujbf3zjd6xYjl_Lf1jgHgHisDE1ayUf8f7jOdoBpg_JpA7CJynPZSEAknzmaSK4YaV7p6gRHA== ) - Unsubscribe Preferences ( https://u18220755.ct.sendgrid.net/asm/?user_id=18220755&data=9GDsUXHVyNlVQF5o9qVx9BTvBIVkzlNZ_k0HVj3ayJVoMDAwdTAwMPtoPk65tFVtfwLt2EiTYB5pqHjIXZBO-q3BN8bRAh2CptCp4VWOvDvWLVt14hKZMnt5dh4nARvPafDaSHIRcA3os33CNgW2CXxp034ase8QvbBDiDP-IiXb4OSHV6cfYIb1IDtS4Uilo1-MlEz0F3_JKNmJNeYVU6GJYUGFNGmH1PSSBgGj2BNnzQU38QUj5Iam1B_DRMLlljsfjZeLHD22OsS6e5akD1hAcfHGxN9XzptLuJ4vLi05LkbfO5UbG2Fhs5F5-2pEAm5eiPZYMC4sSY2vlXDJ6UqCpWwLIRfAOVokkIlO61YCOKzNjnadWRp96l6Tt56_DKCz0pVoRhP7TOFNgfcqapn5HXzT9RHA3hSrkgEWJTJhqU3sPrZYceHmjB52-eQUvkbO5fv4FyBwThiC6My98_TCLIxSAYkmXSnCEOpohzVVQEi_9OfKZbtLEwlQm3KGj5K3vclcD3deTLb6ru2cZTslcm7mzIRRHvCWVWRwIKQs-6BgHscGOfppF4ZRW7h8tTRymVVBVJwlvlwIskPH_W8YY588yInymiXPCRF7eYrj6WsuZeXLlllma0wQzm9iVdzGPWWTGTQZLkLdWO-im1-05jKcQWgLJubIDmzmfY-aBmHVJJ_hgrcPGTmK4tGguj1T4uLGXylyB7N_HKsIw59cUHn8pTAcPEgp18ZvjeYef-6C1uEx8n3KLO-ZswROvsI9HQhfD6Y6MMWeMDFfECCWYVvWkgUMT_YYGcjO0N-P6Lb5GVNu0nZDMjqi1YDJ9JiXsc-lLU9WY0NWw_ADNRSlmyA37A-67moJAJV39IdPXX5OaJy3y6xVLuTPEiKTPw1pQv13PbzEjVwOccjcwLIb9bHZaXzvBTf1xdF5y0TRna7JFMVIWUwww9PeTEgdSK597THC-HuTDwpoUqhnA6SYPSV_uOcWs6IcuwOmv39sFWG5vzcXNGMpZfYmjv5wdk-OXD4v36dVtNyqliTFQKPK4YNf8Q-MNAHaGJq7UQIGhTSg3hXaEC5N5wlmVwrideibkKFYVXfEApBpZugMVaBcWpNzaluWR242h6BLrGWX5i37P_ltL_vVUK5XKpAvAFfU18LXryytsmC3Vp6qp_vWkoVe52K3 )',0,0,0,0,0,0,'2025-09-16 18:35:18','2025-12-09 19:28:29','2025-12-09 19:28:29','2025-12-09 19:28:29',NULL,NULL,NULL),
(732,4,'<010201995433ec10-3ec1a8c5-ccfd-4d60-8664-3779c6da97b4-000000@eu-west-1.amazonses.com>',NULL,NULL,'Meeting minutes - Meeting w/ Forge Nano','app@meetgeek.ai','MeetGeek','<!DOCTYPE html><html xmlns=http://www.w3.org/1999/xhtml lang=en><head><meta charset=UTF-8><meta content=\"text/html charset=UTF-8\" http-equiv=Content-Type><meta content=\"width=device-width, initial-scale=1.0\" name=viewport><title>MeetGeek Email</title><link href=\"https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap\" rel=stylesheet><link href=\"https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap\" rel=stylesheet><style>p{margin:0;padding:0}\n    /* Mobile responsive styling */\n    @media only screen and (max-width: 450px) {\n        .col-full {\n            display: block;\n            width: 100% !important;\n            margin-bottom: 10px;\n        }\n\n        .col-customize-btn {\n            padding-left: 0px !important;\n            border-left: none !important;\n            border-top: 1px solid #D1D5DB !important;\n            padding-top: 20px;\n        }\n\n        .container {\n            width: 400px !important;\n            padding: 30px 20px !important;\n        }\n\n        .header,\n        .counter-1,\n        .counter-2,\n        .counter-3,\n        .counter-4,\n        .counter-5,\n        .meeting-summary,\n        .relative-strengths,\n        .relative-oportunities,\n        .invite,\n        .next-step,\n        .ai-insight,\n        .topic-highlight,\n        .automation,\n        .links,\n        .key-points-banner,\n        .signature,\n        .security-badges,\n        .social-links,\n        .summary-table-container {\n            width: 100% !important;\n            padding-left: 0 !important;\n            padding-right: 0 !important;\n        }\n\n        .counter-1,\n        .counter-2,\n        .counter-3,\n        .counter-4 {\n            margin-bottom: 30px !important;\n        }\n\n        .btn-detail span {\n            display: none !important;\n        }\n\n        .btn-detail img {\n            display: block !important;\n        }\n\n        .text-badge-automation {\n            text-align: left;\n        }\n\n        .dashboard,\n        .performance-counter {\n            width: 100% !important;\n        }\n\n        .security-badges table {\n            height: 45px !important;\n            padding: 4px !important;\n        }\n\n        .security-badges table tr td:nth-child(2) {\n            padding-left: 4px !important;\n        }\n\n        .security-badges img {\n            height: 15px !important;\n        }\n\n        .security-badges label {\n            font-size: 10px !important;\n            line-height: 8px !important;\n        }\n\n        .security-badges small {\n            font-size: 8px !important;\n        }\n\n        .col-like-btn tr td.text-group {\n            padding-right: 0 !important;\n        }\n\n        .col-like-btn tr td.btn-group {\n            padding-left: 0 !important;\n            padding-top: 10px !important;\n            border: none !important;\n        }\n\n        .sm-left {\n            text-align: left !important;\n        }\n\n        .sm-center {\n            text-align: center !important;\n        }\n\n        .sm-block{\n            display: block !important;\n        }\n\n        .sm-p0 {\n            padding: 0 !important;\n        }\n\n        .sm-p4 {\n            padding: 4px !important;\n        }\n\n        .sm-pt10 {\n            padding-top: 10px !important;\n        }\n\n        .sm-pb10 {\n            padding-bottom: 10px !important;\n        }\n\n        .sm-mt10 {\n            margin-top: 10px !important;\n        }\n\n        .sm-mb10 {\n            margin-bottom: 10px !important;\n        }\n\n        .sm-fs11 {\n            font-size: 11px !important;\n        }\n\n        .sm-fs12 {\n            font-size: 12px !important;\n        }\n\n        .sm-fs14 {\n            font-size: 14px !important;\n        }\n\n        .mobile-app-banner-sm{\n            display: block !important;\n        }\n\n        .mobile-app-banner-lg{\n            display: none !important;\n        }\n    }\n\n    /* Dark mode styling */\n    @media (prefers-color-scheme: dark) {\n\n        p,\n        label,\n        small,\n        li,\n        .dark-text-white {\n            color: #F3F4F6 !important;\n        }\n\n        .wrapper {\n            background-color: #121212 !important;\n        }\n\n        .container {\n            background-color: #121212 !important;\n        }\n\n        .header,\n        .counter-1,\n        .counter-2,\n        .counter-3,\n        .counter-4,\n        .counter-5,\n        .relative-strengths,\n        .relative-oportunities,\n        .invite,\n        .next-step,\n        .ai-insight,\n        .topic-highlight,\n        .automation,\n        .links,\n        .signature,\n        .security-badges table {\n            background-color: #121212 !important;\n        }\n\n        .header .heading,\n        .performance-counter .heading {\n            color: #FFFFFF !important;\n        }\n\n        hr {\n            background: #1F2937 !important;\n        }\n\n        .meeting-info,\n        .ai-insight .insight-card,\n        .next-step .col-customize-btn {\n            border-color: #1F2937 !important;\n        }\n\n        .relative-strengths .title {\n            background: #7E3AF2 !important;\n        }\n\n        .relative-oportunities .title {\n            background: #8A2C0D !important;\n        }\n\n        .invite a {\n            color: #CABFFD !important;\n        }\n\n        .automation-list {\n            background-color: #1F2937 !important;\n            border: 1px solid #475569 !important;\n        }\n\n        .download-list {\n            background-color: #1F2937 !important;\n        }\n\n        .img-light {\n            display: none !important;\n        }\n\n        .img-dark {\n            display: inline-block !important;\n        }\n\n        .participant-name {\n            color: #FFFFFF !important;\n            background-color: #1F2937 !important;\n        }\n\n        .participant-avatar {\n            color: #FFFFFF !important;\n            background-color: #F05252 !important;\n        }\n\n        .btn-dislike,\n        .btn-customize {\n            border: 1px solid #CABFFD !important;\n        }\n\n        .summary-table {\n            border-color: #1F2937 !important;\n        }\n\n        .summary-table .column-header {\n            background-color:  #111827 !important;\n        }\n\n        .dark-text-purple-300 {\n            color: #CABFFD !important;\n        }\n\n        .dark-border-purple-300 {\n            border-color: #CABFFD !important;\n        }\n\n        .dark-border-gray-900 {\n            border-color: #1F2937 !important;\n        }\n\n        .dark-bg-purple-300 {\n            background-color: #CABFFD !important;\n        }\n\n        .dark-bg-purple-600 {\n            background-color: #7E3AF2 !important;\n        }\n\n        .dark-bg-purple-900 {\n            background-color: #4A1D96 !important;\n        }\n\n        .dark-bg-green-400 {\n            background-color: #31C48D !important;\n        }\n    }</style> <body style=padding:0;margin:0;><table cellpadding=0 cellspacing=0 class=wrapper style=\"padding:0;margin:0;background-color:#FFFFFF;color:#111928;font-family:\'Inter\',\'Poppins\',\'Helvetica\',sans-serif;\" width=100%><tr><td align=center><table cellpadding=0 cellspacing=0 class=container style=\"padding:30px;margin:0 auto;\" width=700px><tr><td style=padding-bottom:15px;><table cellpadding=0 cellspacing=0 class=header width=640px><tr><td><table cellpadding=0 cellspacing=\" 0\" width=100%><tr><td align=center style=padding-bottom:30px; valign=middle><a href=\"https://app.meetgeek.ai?utm_medium=email&amp;utm_source=automatic-mom\" rel=noopener target=_blank><img alt=MeetGeek src=\"https://app.meetgeek.ai/tracking/open_mail/32351095/11127b937f56834dd69959e81adfc746efa387c2?brand=true\" width=180px> </a> <tr><td align=center style=padding-bottom:10px; valign=middle><label style=font-size:14px;font-weight:600;> Hey there, <span class=dark-text-purple-300 style=\" color:#4A1D96 ;\">Daniel Sheridan</span> shared the meeting notes with you </label> <tr><td align=center valign=middle><table class=meeting-info style=\"padding:16px;border:1px solid #E5E7EB;border-radius:12px;\" width=100%><tr><td><label style=font-size:12px;line-height:18px;color:#6B7280;> Tuesday 16 September 2025 · 19:00 - 20:10 UTC </label> <tr><td><a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom\" style=\"font-size:16px;font-weight:600;text-decoration:underline; color:#4A1D96 ;cursor:pointer;\" title=\"Meeting w/ Forge Nano\"> Meeting w/ Forge Nano </a> <tr><td style=padding-top:8px;><table cellpadding=0 cellspacing=0 class=participant-name style=\"display:inline-block;border-radius:100px;margin-right:8px; background:#F6F5FF ;\"><tr><td style=\"padding:4px 8px;font-size:12px;font-weight:500;\"> Brian Stufflebean </table> <table cellpadding=0 cellspacing=0 class=participant-name style=\"display:inline-block;border-radius:100px;margin-right:8px; background:#F6F5FF ;\"><tr><td style=\"padding:4px 8px;font-size:12px;font-weight:500;\"> Daniel Sheridan </table> <table cellpadding=0 cellspacing=0 class=participant-name style=\"display:inline-block;border-radius:100px;margin-right:8px; background:#F6F5FF ;\"><tr><td style=\"padding:4px 8px;font-size:12px;font-weight:500;\"> Jordan Wroblewski </table> <table cellpadding=0 cellspacing=0 class=participant-name style=\"display:inline-block;border-radius:100px;margin-right:8px; background:#F6F5FF ;\"><tr><td style=\"padding:4px 8px;font-size:12px;font-weight:500;\"> +5 others </table> </table> </table> </table> <tr><td style=\"padding:15px 0;\"><table cellpadding=0 cellspacing=0 class=meeting-summary width=100%><tr><td><table cellpadding=0 cellspacing=0><tr><td width=100%><table cellpadding=0 cellspacing=0 width=100%><tr><td><label style=font-size:16px;font-weight:600;>Meeting Summary</label> <tr><td><label style=font-size:12px;font-weight:400;font-style:italic;color:#6B7280;> AI summaries may contain mistakes. Consider checking important information. </label> </table> <td align=right style=padding-left:10px; valign=middle><a class=dark-bg-purple-600 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom\" style=\"text-decoration:none;text-align:left;display:inline-block;padding:8px 12px;border-radius:4px; background:#4A1D96 ;cursor:pointer;\" title=\"View Meeting\"><span style=\"font-size:12px; color:#FFFFFF ;white-space:nowrap;cursor:pointer;\">View Meeting</span> </a> </table> <tr><td style=font-size:13px;line-height:180%;padding-top:12px;><p style=margin:0;> The meeting with Forge Nano focused on establishing a partnership aimed at enhancing US-based cell and pack production for battery manufacturing. Participants introduced their backgrounds, identifying collaboration opportunities in energy storage systems, defense applications, and battery pack customization. Discussions included current production capabilities, future expansion plans, and the importance of US supply chain initiatives. Both parties expressed strong commitment to the partnership, emphasizing the need for timely delivery, performance specifications, and potential collaboration on equipment sourcing. Next steps involve exploring demand signals, sending spec sheets and a term sheet template, and scheduling further discussions to align on production needs and challenges. </table> <tr><td style=\"padding:15px 0;\"><table cellpadding=0 cellspacing=0 class=next-step width=640px><tr><td><table cellpadding=0 cellspacing=0 width=100%><tr><td><label style=font-size:16px;font-weight:600;>Next Steps</label> <tr><td style=padding-top:12px;><table cellpadding=0 cellspacing=0 style=font-size:13px;line-height:180%; width=100%><tr><td valign=top width=30px><img class=img-light height=20px src=https://app.meetgeek.ai/media/emails/arrow-right-circle-light.png> <img class=img-dark height=20px src=https://app.meetgeek.ai/media/emails/arrow-right-circle-dark.png style=display:none;> <td><p style=\"margin:0 0 12px 0;\"> Daniel to explore demand signals and contract landscape for battery cells and defense work to align production needs. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=HaAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-style:normal;font-weight:600;text-decoration:underline;\" target=_blank> (25:31) </a> <tr><td valign=top width=30px><img class=img-light height=20px src=https://app.meetgeek.ai/media/emails/arrow-right-circle-light.png> <img class=img-dark height=20px src=https://app.meetgeek.ai/media/emails/arrow-right-circle-dark.png style=display:none;> <td><p style=\"margin:0 0 12px 0;\"> James to send spec sheets after the call to outline product demand and capacity needs for future discussions. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=IKAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-style:normal;font-weight:600;text-decoration:underline;\" target=_blank> (30:23) </a> <tr><td valign=top width=30px><img class=img-light height=20px src=https://app.meetgeek.ai/media/emails/arrow-right-circle-light.png> <img class=img-dark height=20px src=https://app.meetgeek.ai/media/emails/arrow-right-circle-dark.png style=display:none;> <td><p style=\"margin:0 0 12px 0;\"> James Trevey suggested testing cells and assembling packs to better understand the collaboration potential. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=I6AxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-style:normal;font-weight:600;text-decoration:underline;\" target=_blank> (36:48) </a> <tr><td valign=top width=30px><img class=img-light height=20px src=https://app.meetgeek.ai/media/emails/arrow-right-circle-light.png> <img class=img-dark height=20px src=https://app.meetgeek.ai/media/emails/arrow-right-circle-dark.png style=display:none;> <td><p style=\"margin:0 0 12px 0;\"> Daniel to engage with ACME for discussions on munitions campus applications and explore public-private partnerships for battery production. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=KaAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-style:normal;font-weight:600;text-decoration:underline;\" target=_blank> (54:51) </a> <tr><td valign=top width=30px><img class=img-light height=20px src=https://app.meetgeek.ai/media/emails/arrow-right-circle-light.png> <img class=img-dark height=20px src=https://app.meetgeek.ai/media/emails/arrow-right-circle-dark.png style=display:none;> <td><p style=\"margin:0 0 12px 0;\"> James to schedule a relationship scoping call to dive into further details and possibly arrange a visit. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=K6AxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-style:normal;font-weight:600;text-decoration:underline;\" target=_blank> (01:00:06) </a> <tr><td valign=top width=30px><img class=img-light height=20px src=https://app.meetgeek.ai/media/emails/arrow-right-circle-light.png> <img class=img-dark height=20px src=https://app.meetgeek.ai/media/emails/arrow-right-circle-dark.png style=display:none;> <td><p style=\"margin:0 0 12px 0;\"> James to send over a term sheet template to Brian for review to expedite contract discussions. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=LqAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-style:normal;font-weight:600;text-decoration:underline;\" target=_blank> (01:07:07) </a> <tr><td valign=top width=30px><img class=img-light height=20px src=https://app.meetgeek.ai/media/emails/arrow-right-circle-light.png> <img class=img-dark height=20px src=https://app.meetgeek.ai/media/emails/arrow-right-circle-dark.png style=display:none;> <td><p style=\"margin:0 0 12px 0;\"> James to send over the spec sheets and a sample term sheet, while Daniel will explore equipment challenges at Fed Supernova DC. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=MaAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-style:normal;font-weight:600;text-decoration:underline;\" target=_blank> (01:08:49) </a> </table> </table> </table> <tr><td style=\"padding:15px 0;\"><table cellpadding=0 cellspacing=0 class=ai-insight width=640px><tr><td><table cellpadding=0 cellspacing=0 width=100%><tr><td><table cellpadding=0 cellspacing=0><tr><td valign=middle width=100%><label style=font-size:16px;font-weight:600;>AI Insights</label> <td align=right valign=middle><a class=dark-bg-purple-600 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;page_tab=insights\" style=\"text-decoration:none;text-align:left;display:inline-block;padding:8px 12px;border-radius:4px; background:#4A1D96 ;cursor:pointer;\" title=\"View Details\"><span style=\"font-size:12px; color:#FFFFFF ;white-space:nowrap;cursor:pointer;\"> View Details </span> </a> </table> <tr><td style=\"padding:12px 0;\"><p style=font-size:13px;line-height:180%;> The meeting with Forge Nano demonstrated a high level of alignment between both parties regarding mutual goals, particularly in areas such as US manufacturing, battery production, and market expansion. Participants actively engaged in discussions, contributing multiple insights and showcasing a strong commitment to pursuing partnership opportunities. While several concrete action items were identified, there were also segments of the meeting where no specific actions were assigned. Additionally, multiple potential collaboration areas were highlighted, indicating a fruitful dialogue focused on future opportunities. Overall, the meeting reflected a positive trajectory towards collaboration and shared objectives. </table> </table> <tr><td style=\"padding:15px 0;\"><table cellpadding=0 cellspacing=0 class=topic-highlight width=640px><tr><td><table cellpadding=0 cellspacing=0><tr><td valign=middle width=100%><label style=font-size:16px;font-weight:600;> Topics & Highlights </label> <td align=right valign=middle><a class=dark-bg-purple-600 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom\" style=\"text-decoration:none;text-align:left;display:inline-block;padding:8px 12px;border-radius:4px; background:#4A1D96 ;cursor:pointer;\" title=\"View Meeting\"><span style=\"font-size:12px; color:#FFFFFF ;white-space:nowrap;cursor:pointer;\">View Meeting</span> </a> </table> <tr><td style=padding-top:12px;><table cellpadding=0 cellspacing=0 width=100%><tr><td style=font-size:13px;line-height:180%;><p style=\"margin:0 0 12px 0;\"><b style=font-weight:600;> 1. Introduction and Context Setting </b> <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;sentence=7BEwVJkBhxXljFemjBlH\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (03:01) </a> <br>&bull; The meeting clarified the purpose and mutual goals of the partnership, focusing on US-based cell and pack production. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=FaAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (03:01) </a> <p style=\"margin:0 0 12px 0;\"><b style=font-weight:600;> 2. Introductions and Backgrounds </b> <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;sentence=_BEwVJkBhxXljFemjBlH\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (04:23) </a> <br>&bull; Participants discussed their backgrounds and experiences, indicating potential areas for collaboration in battery production and technology. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=FqAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (04:23) </a> <p style=\"margin:0 0 12px 0;\"><b style=font-weight:600;> 3. Production Capabilities and Expansion Plans </b> <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;sentence=PBEwVJkBhxXljFemjBpH\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (09:30) </a> <br>&bull; Both parties expressed interest in pursuing a beneficial relationship and collaboration opportunities. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=GKAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (11:22) </a> <br>&bull; Potential areas for collaboration were identified, focusing on energy storage systems and defense applications. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=F6AxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (14:11) </a> <p style=\"margin:0 0 12px 0;\"><b style=font-weight:600;> 4. Nano-Coding Technology and Applications </b> <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;sentence=ehEwVJkBhxXljFemjBpH\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (15:41) </a> <br>&bull; The company is exploring partnerships to fulfill intermediate needs while ramping up gigafactory production. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=GaAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (20:25) </a> <br>&bull; Both parties expressed a strong interest in pursuing the partnership, indicating a willingness to invest time and resources into making the collaboration successful. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=GqAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (21:57) </a> <p style=\"margin:0 0 12px 0;\"><b style=font-weight:600;> 5. US-Based Manufacturing and Supply Chain </b> <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;sentence=shEwVJkBhxXljFemjBpH\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (22:01) </a> <br>&bull; Potential collaboration in the defense sector and niche markets was identified, leveraging US supply chain capabilities. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=HKAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (23:16) </a> <br>&bull; Both parties expressed a strong interest in pursuing US-based manufacturing and supply chain initiatives, emphasizing the importance of local production. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=G6AxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (24:37) </a> <br>&bull; Daniel to explore demand signals and contract landscape for battery cells and defense work to align production needs. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=HaAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (25:31) </a> <p style=\"margin:0 0 12px 0;\"><b style=font-weight:600;> 6. Supply Chain Capacity and Partnerships </b> <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;sentence=8BEwVJkBhxXljFemjBpH\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (27:13) </a> <br>&bull; Both parties expressed a strong interest in pursuing a partnership to meet supply chain needs and customer demands. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=HqAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (27:13) </a> <br>&bull; James to send spec sheets after the call to outline product demand and capacity needs for future discussions. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=IKAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (30:23) </a> <br>&bull; Potential areas for collaboration were identified, including the need for battery packs and dedicated supply chains to support customer demands. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=H6AxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (30:49) </a> <p style=\"margin:0 0 12px 0;\"><b style=font-weight:600;> 7. Battery Pack Customization and Production </b> <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;sentence=KBEwVJkBhxXljFemjBtH\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (33:05) </a> <br>&bull; Both parties discussed the demand for redesigning battery packs and the potential for collaboration in this area. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=IaAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (34:05) </a> <br>&bull; Both parties expressed a strong interest in pursuing the partnership, indicating a willingness to invest time and resources into making the collaboration successful. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=IqAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (36:03) </a> <br>&bull; James Trevey suggested testing cells and assembling packs to better understand the collaboration potential. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=I6AxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (36:48) </a> <p style=\"margin:0 0 12px 0;\"><b style=font-weight:600;> 8. Standardization of Drone Technology </b> <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;sentence=WhEwVJkBhxXljFemjBtH\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (39:36) </a> <br>&bull; Daniel Sheridan emphasized the need for standardized designs to reduce costs and improve scalability in drone technology. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=JKAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (39:36) </a> <br>&bull; Daniel Sheridan expressed a strong interest in collaborating with experts to develop custom cells and scale production. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=JaAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (43:31) </a> <p style=\"margin:0 0 12px 0;\"><b style=font-weight:600;> 9. Battery Performance and Specifications </b> <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;sentence=mREwVJkBhxXljFemjBtH\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (45:19) </a> <br>&bull; Potential for collaboration on battery specifications for various projects was discussed, including military and drone applications. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=JqAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (45:52) </a> <p style=\"margin:0 0 12px 0;\"><b style=font-weight:600;> 10. Collaboration on Battery Production </b> <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;sentence=c6owVJkBogYhRdG-kAUx\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (51:02) </a> <br>&bull; Both parties expressed a strong interest in pursuing the partnership and scaling production to meet demand. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=KKAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (51:11) </a> <br>&bull; Potential collaboration areas include replacing cells sourced from China and developing higher performance cells for military specifications. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=J6AxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (52:01) </a> <br>&bull; Daniel to engage with ACME for discussions on munitions campus applications and explore public-private partnerships for battery production. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=KaAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (54:51) </a> <p style=\"margin:0 0 12px 0;\"><b style=font-weight:600;> 11. Lobbying and State-Level Engagement </b> <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;sentence=rqowVJkBogYhRdG-kAUx\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (56:42) </a> <br>&bull; Potential collaboration areas were identified, including leveraging state-level support for business expansion and job creation. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=LKAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (57:15) </a> <br>&bull; Both parties expressed a strong interest in pursuing the partnership, indicating a willingness to invest time and resources into making the collaboration successful. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=KqAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (58:15) </a> <br>&bull; James to schedule a relationship scoping call to dive into further details and possibly arrange a visit. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=K6AxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (01:00:06) </a> <p style=\"margin:0 0 12px 0;\"><b style=font-weight:600;> 12. Partnership and Equipment Supply Chain </b> <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;sentence=8KowVJkBogYhRdG-kAUx\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (01:01:40) </a> <br>&bull; Both parties expressed a strong interest in pursuing the partnership, indicating a willingness to invest time and resources into making the collaboration successful. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=LaAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (01:04:04) </a> <br>&bull; Potential collaboration on equipment sourcing and support for trade issues was discussed, highlighting mutual benefits. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=L6AxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (01:05:03) </a> <br>&bull; A term sheet will outline volumes, pricing, and timelines to align both parties on high-level details for the partnership. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=MKAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (01:06:31) </a> <br>&bull; James to send over a term sheet template to Brian for review to expedite contract discussions. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=LqAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (01:07:07) </a> <p style=\"margin:0 0 12px 0;\"><b style=font-weight:600;> 13. Next Steps for Collaboration </b> <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;sentence=R6owVJkBogYhRdG-kAYx\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (01:08:47) </a> <br>&bull; James to send over the spec sheets and a sample term sheet, while Daniel will explore equipment challenges at Fed Supernova DC. <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai/meeting/25c7c974-50d0-456e-a1e4-e5d60ec752da?utm_medium=email&amp;utm_source=automatic-mom&amp;highlight=MaAxVJkBzmGKpwu3RoEj\" style=\" color:#4A1D96 ;font-weight:600;text-decoration:underline;\" target=_blank> (01:08:49) </a> </table> </table> <tr><td style=\"padding:15px 0;\"><table cellpadding=0 cellspacing=0 class=links width=640px><tr><td style=padding-bottom:30px;><table cellpadding=0 cellspacing=0 class=mobile-app-banner-sm style=\"padding:12px 16px;background:#4A1D96;color:#FFFFFF;border-radius:8px;display:none;\" width=100%;><tr><td align=center><img alt=\"MeetGeek Mobile\" src=https://app.meetgeek.ai/media/emails/meetgeek-mobile-preview.png style=display:block;margin-bottom:8px; width=145px> <img alt=\"MeetGeek Logo\" height=16px src=https://app.meetgeek.ai/media/emails/meetgeek-logo-white.png style=display:block;margin-bottom:8px;> <label style=display:block;font-size:16px;font-weight:600;> MeetGeek on Mobile </label> <p style=margin:0;font-size:12px;>Record offline talks, revisit meeting notes, and manage upcoming events - right from your phone. <table cellpadding=0 cellspacing=0 style=margin-top:12px;><tr><td style=padding-right:8px;><a href=\"https://play.google.com/store/apps/details?id=com.meetgeek.assistant\" style=display:inline-block;text-decoration:none;><img alt=\"Google Play\" height=32px src=https://app.meetgeek.ai/media/emails/playstore-badge-sm.png> </a> <td><a href=https://apps.apple.com/us/app/meetgeek-record-transcribe/id6476133984 style=display:inline-block;text-decoration:none;><img alt=\"App Store\" height=32px src=https://app.meetgeek.ai/media/emails/appstore-badge-sm.png> </a> </table> </table> <table cellpadding=0 cellspacing=0 class=mobile-app-banner-lg style=\"padding:5px 30px;background:#4A1D96;border-radius:8px;\" width=100%;><tr><td valign=middle width=50%><table cellpadding=0 cellspacing=0 style=color:#FFFFFF;vertical-align:middle; width=100%><tr><td><img alt=\"MeetGeek Logo\" height=20px src=https://app.meetgeek.ai/media/emails/meetgeek-logo-white.png style=margin-bottom:8px;> <label style=display:block;font-size:16px;font-weight:600;> MeetGeek on Mobile </label> <p style=margin:0;font-size:11px;>Record offline talks, revisit meeting notes, and manage upcoming events - right from your phone. <table cellpadding=0 cellspacing=0 style=margin-top:12px;><tr><td style=padding-right:8px;><a href=\"https://play.google.com/store/apps/details?id=com.meetgeek.assistant\" style=display:inline-block;text-decoration:none;><img alt=\"Google Play\" height=40px src=https://app.meetgeek.ai/media/emails/playstore-badge-sm.png> </a> <td><a href=https://apps.apple.com/us/app/meetgeek-record-transcribe/id6476133984 style=display:inline-block;text-decoration:none;><img alt=\"App Store\" height=40px src=https://app.meetgeek.ai/media/emails/appstore-badge-sm.png> </a> </table> </table> <td valign=middle width=50%><img alt=\"MeetGeek Mobile\" src=https://app.meetgeek.ai/media/emails/meetgeek-mobile-preview.png style=vertical-align:middle; width=100%> </table> <tr><td class=dark-border-gray-900 style=\"font-size:13px;text-align:center;padding:30px 0;border-top:1px solid #F3F4F6;border-bottom: 1px solid #F3F4F6\"><p style=margin:0;> Automate meetings and boost productivity. <br class=sm-block style=display:none;> <a class=dark-text-purple-300 href=\"https://app.meetgeek.ai?utm_medium=email&amp;utm_source=automatic-mom\" style=color:#4A1D96;text-decoration:underline;>Sign Up for Free</a> </table> <tr><td style=\"padding:15px 0;\"><table cellpadding=4 cellspacing=0 class=security-badges width=640px><tr><td style=\"width:25% !important;\"><table cellpadding=0 cellspacing=0 class=dark-border-gray-900 height=65px style=\"padding:6px;border:1px solid #F3F4F6;border-radius:8px\" width=100%><tr><td align=right valign=middle><img alt=\"AICPA SOC2\" height=32px src=https://app.meetgeek.ai/media/emails/aicpa-soc.png style=vertical-align:middle;> <td style=padding-left:10px><label style=display:block;font-size:18px;font-weight:600;line-height:14px;white-space:nowrap>SOC 2</label> <small style=display:block;font-size:11px;font-weight:400;white-space:nowrap>Type 2</small> </table> <td style=\"width:25% !important;\"><table cellpadding=0 cellspacing=0 class=dark-border-gray-900 height=65px style=\"padding:6px;border:1px solid #F3F4F6;border-radius:8px\" width=100%><tr><td align=right valign=middle><img alt=HIPAA height=32px src=https://app.meetgeek.ai/media/emails/hipaa.png style=vertical-align:middle;> <td style=padding-left:10px><label style=display:block;font-size:18px;font-weight:600;line-height:14px;>HIPAA</label> </table> <td style=\"width:25% !important;\"><table cellpadding=0 cellspacing=0 class=dark-border-gray-900 height=65px style=\"padding:6px;border:1px solid #F3F4F6;border-radius:8px\" width=100%><tr><td align=right valign=middle><img alt=GDPR height=32px src=https://app.meetgeek.ai/media/emails/gdpr.png style=vertical-align:middle;> <td style=padding-left:10px><label style=display:block;font-size:18px;font-weight:600;line-height:14px;>GDPR</label> </table> <td style=\"width:25% !important;\"><table cellpadding=0 cellspacing=0 class=dark-border-gray-900 height=65px style=\"padding:6px;border:1px solid #F3F4F6;border-radius:8px\" width=100%><tr><td align=right valign=middle><img alt=CCPA height=32px src=https://app.meetgeek.ai/media/emails/ccpa.png style=vertical-align:middle;> <td style=padding-left:10px><label style=display:block;font-size:18px;font-weight:600;line-height:14px;>CCPA</label> </table> </table> <tr><td style=padding-top:15px;><table cellpadding=0 cellspacing=0 class=social-links width=640px><tr><td align=center style=padding-bottom:24px;><table cellpadding=0 cellspacing=0><tr><td align=center style=\"padding:0 8px;\" valign=middle><a href=https://linkedin.com/company/meetgeek-ai><img alt=LinkedIn class=img-light height=28px src=https://app.meetgeek.ai/media/emails/linkedin-black.png style=vertical-align:middle;> <img alt=LinkedIn class=img-dark height=28px src=https://app.meetgeek.ai/media/emails/linkedin-white.png style=vertical-align:middle;display:none;></a> <td align=center style=\"padding:0 8px;\" valign=middle><a href=https://www.youtube.com/@meetgeek><img alt=Youtube class=img-light height=28px src=https://app.meetgeek.ai/media/emails/youtube-black.png style=vertical-align:middle;> <img alt=Youtube class=img-dark height=28px src=https://app.meetgeek.ai/media/emails/youtube-white.png style=vertical-align:middle;display:none;></a> <td align=center style=\"padding:0 8px;\" valign=middle><a href=https://x.com/meetgeeka><img alt=X class=img-light height=28px src=https://app.meetgeek.ai/media/emails/x-black.png style=vertical-align:middle;> <img alt=X class=img-dark height=28px src=https://app.meetgeek.ai/media/emails/x-white.png style=vertical-align:middle;display:none;></a> </table> <tr><td align=center><a class=dark-text-purple-300 href=https://app.meetgeek.ai/email/unsubscribe/ZXlKcGRpSTZJalZXU0ZFMlJ6bEdOWFoyTjI5dWJucFdNVEpHUW1jOVBTSXNJblpoYkhWbElqb2ljM0ZrWTIxSmJIUk1XbTVMVm5OVVdqWXZaa04yVVQwOUlpd2liV0ZqSWpvaU5UVmtZelU0TWpVME56TTFZVEV6TldNMk1UYzFPVE01WkRBNE5qRmhOVGxtTXpJMlpXRXhaVE15TjJZNFl6SmpZMlk0TjJReFpHSXpZakUxT1dWaE9DSXNJblJoWnlJNklpSjk style=\"font-size:12px; color:#4A1D96 ;text-decoration:underline;\"> Update your email preferences </a> </table> </table> </table>','MeetGeek Emailp{margin:0;padding:0}\n    /* Mobile responsive styling */\n    @media only screen and (max-width: 450px) {\n        .col-full {\n            display: block;\n            width: 100% !important;\n            margin-bottom: 10px;\n        }\n\n        .col-customize-btn {\n            padding-left: 0px !important;\n            border-left: none !important;\n            border-top: 1px solid #D1D5DB !important;\n            padding-top: 20px;\n        }\n\n        .container {\n            width: 400px !important;\n            padding: 30px 20px !important;\n        }\n\n        .header,\n        .counter-1,\n        .counter-2,\n        .counter-3,\n        .counter-4,\n        .counter-5,\n        .meeting-summary,\n        .relative-strengths,\n        .relative-oportunities,\n        .invite,\n        .next-step,\n        .ai-insight,\n        .topic-highlight,\n        .automation,\n        .links,\n        .key-points-banner,\n        .signature,\n        .security-badges,\n        .social-links,\n        .summary-table-container {\n            width: 100% !important;\n            padding-left: 0 !important;\n            padding-right: 0 !important;\n        }\n\n        .counter-1,\n        .counter-2,\n        .counter-3,\n        .counter-4 {\n            margin-bottom: 30px !important;\n        }\n\n        .btn-detail span {\n            display: none !important;\n        }\n\n        .btn-detail img {\n            display: block !important;\n        }\n\n        .text-badge-automation {\n            text-align: left;\n        }\n\n        .dashboard,\n        .performance-counter {\n            width: 100% !important;\n        }\n\n        .security-badges table {\n            height: 45px !important;\n            padding: 4px !important;\n        }\n\n        .security-badges table tr td:nth-child(2) {\n            padding-left: 4px !important;\n        }\n\n        .security-badges img {\n            height: 15px !important;\n        }\n\n        .security-badges label {\n            font-size: 10px !important;\n            line-height: 8px !important;\n        }\n\n        .security-badges small {\n            font-size: 8px !important;\n        }\n\n        .col-like-btn tr td.text-group {\n            padding-right: 0 !important;\n        }\n\n        .col-like-btn tr td.btn-group {\n            padding-left: 0 !important;\n            padding-top: 10px !important;\n            border: none !important;\n        }\n\n        .sm-left {\n            text-align: left !important;\n        }\n\n        .sm-center {\n            text-align: center !important;\n        }\n\n        .sm-block{\n            display: block !important;\n        }\n\n        .sm-p0 {\n            padding: 0 !important;\n        }\n\n        .sm-p4 {\n            padding: 4px !important;\n        }\n\n        .sm-pt10 {\n            padding-top: 10px !important;\n        }\n\n        .sm-pb10 {\n            padding-bottom: 10px !important;\n        }\n\n        .sm-mt10 {\n            margin-top: 10px !important;\n        }\n\n        .sm-mb10 {\n            margin-bottom: 10px !important;\n        }\n\n        .sm-fs11 {\n            font-size: 11px !important;\n        }\n\n        .sm-fs12 {\n            font-size: 12px !important;\n        }\n\n        .sm-fs14 {\n            font-size: 14px !important;\n        }\n\n        .mobile-app-banner-sm{\n            display: block !important;\n        }\n\n        .mobile-app-banner-lg{\n            display: none !important;\n        }\n    }\n\n    /* Dark mode styling */\n    @media (prefers-color-scheme: dark) {\n\n        p,\n        label,\n        small,\n        li,\n        .dark-text-white {\n            color: #F3F4F6 !important;\n        }\n\n        .wrapper {\n            background-color: #121212 !important;\n        }\n\n        .container {\n            background-color: #121212 !important;\n        }\n\n        .header,\n        .counter-1,\n        .counter-2,\n        .counter-3,\n        .counter-4,\n        .counter-5,\n        .relative-strengths,\n        .relative-oportunities,\n        .invite,\n        .next-step,\n        .ai-insight,\n        .topic-highlight,\n        .automation,\n        .links,\n        .signature,\n        .security-badges table {\n            background-color: #121212 !important;\n        }\n\n        .header .heading,\n        .performance-counter .heading {\n            color: #FFFFFF !important;\n        }\n\n        hr {\n            background: #1F2937 !important;\n        }\n\n        .meeting-info,\n        .ai-insight .insight-card,\n        .next-step .col-customize-btn {\n            border-color: #1F2937 !important;\n        }\n\n        .relative-strengths .title {\n            background: #7E3AF2 !important;\n        }\n\n        .relative-oportunities .title {\n            background: #8A2C0D !important;\n        }\n\n        .invite a {\n            color: #CABFFD !important;\n        }\n\n        .automation-list {\n            background-color: #1F2937 !important;\n            border: 1px solid #475569 !important;\n        }\n\n        .download-list {\n            background-color: #1F2937 !important;\n        }\n\n        .img-light {\n            display: none !important;\n        }\n\n        .img-dark {\n            display: inline-block !important;\n        }\n\n        .participant-name {\n            color: #FFFFFF !important;\n            background-color: #1F2937 !important;\n        }\n\n        .participant-avatar {\n            color: #FFFFFF !important;\n            background-color: #F05252 !important;\n        }\n\n        .btn-dislike,\n        .btn-customize {\n            border: 1px solid #CABFFD !important;\n        }\n\n        .summary-table {\n            border-color: #1F2937 !important;\n        }\n\n        .summary-table .column-header {\n            background-color:  #111827 !important;\n        }\n\n        .dark-text-purple-300 {\n            color: #CABFFD !important;\n        }\n\n        .dark-border-purple-300 {\n            border-color: #CABFFD !important;\n        }\n\n        .dark-border-gray-900 {\n            border-color: #1F2937 !important;\n        }\n\n        .dark-bg-purple-300 {\n            background-color: #CABFFD !important;\n        }\n\n        .dark-bg-purple-600 {\n            background-color: #7E3AF2 !important;\n        }\n\n        .dark-bg-purple-900 {\n            background-color: #4A1D96 !important;\n        }\n\n        .dark-bg-green-400 {\n            background-color: #31C48D !important;\n        }\n    }    Hey there, Daniel Sheridan shared the meeting notes with you   Tuesday 16 September 2025 · 19:00 - 20:10 UTC   Meeting w/ Forge Nano   Brian Stufflebean   Daniel Sheridan   Jordan Wroblewski   +5 others     Meeting Summary  AI summaries may contain mistakes. Consider checking important information.   View Meeting    The meeting with Forge Nano focused on establishing a partnership aimed at enhancing US-based cell and pack production for battery manufacturing. Participants introduced their backgrounds, identifying collaboration opportunities in energy storage systems, defense applications, and battery pack customization. Discussions included current production capabilities, future expansion plans, and the importance of US supply chain initiatives. Both parties expressed strong commitment to the partnership, emphasizing the need for timely delivery, performance specifications, and potential collaboration on equipment sourcing. Next steps involve exploring demand signals, sending spec sheets and a term sheet template, and scheduling further discussions to align on production needs and challenges.  Next Steps    Daniel to explore demand signals and contract landscape for battery cells and defense work to align production needs.  (25:31)     James to send spec sheets after the call to outline product demand and capacity needs for future discussions.  (30:23)     James Trevey suggested testing cells and assembling packs to better understand the collaboration potential.  (36:48)     Daniel to engage with ACME for discussions on munitions campus applications and explore public-private partnerships for battery production.  (54:51)     James to schedule a relationship scoping call to dive into further details and possibly arrange a visit.  (01:00:06)     James to send over a term sheet template to Brian for review to expedite contract discussions.  (01:07:07)     James to send over the spec sheets and a sample term sheet, while Daniel will explore equipment challenges at Fed Supernova DC.  (01:08:49)     AI Insights  View Details     The meeting with Forge Nano demonstrated a high level of alignment between both parties regarding mutual goals, particularly in areas such as US manufacturing, battery production, and market expansion. Participants actively engaged in discussions, contributing multiple insights and showcasing a strong commitment to pursuing partnership opportunities. While several concrete action items were identified, there were also segments of the meeting where no specific actions were assigned. Additionally, multiple potential collaboration areas were highlighted, indicating a fruitful dialogue focused on future opportunities. Overall, the meeting reflected a positive trajectory towards collaboration and shared objectives.    Topics & Highlights  View Meeting    1. Introduction and Context Setting   (03:01)  &bull; The meeting clarified the purpose and mutual goals of the partnership, focusing on US-based cell and pack production.  (03:01)   2. Introductions and Backgrounds   (04:23)  &bull; Participants discussed their backgrounds and experiences, indicating potential areas for collaboration in battery production and technology.  (04:23)   3. Production Capabilities and Expansion Plans   (09:30)  &bull; Both parties expressed interest in pursuing a beneficial relationship and collaboration opportunities.  (11:22)  &bull; Potential areas for collaboration were identified, focusing on energy storage systems and defense applications.  (14:11)   4. Nano-Coding Technology and Applications   (15:41)  &bull; The company is exploring partnerships to fulfill intermediate needs while ramping up gigafactory production.  (20:25)  &bull; Both parties expressed a strong interest in pursuing the partnership, indicating a willingness to invest time and resources into making the collaboration successful.  (21:57)   5. US-Based Manufacturing and Supply Chain   (22:01)  &bull; Potential collaboration in the defense sector and niche markets was identified, leveraging US supply chain capabilities.  (23:16)  &bull; Both parties expressed a strong interest in pursuing US-based manufacturing and supply chain initiatives, emphasizing the importance of local production.  (24:37)  &bull; Daniel to explore demand signals and contract landscape for battery cells and defense work to align production needs.  (25:31)   6. Supply Chain Capacity and Partnerships   (27:13)  &bull; Both parties expressed a strong interest in pursuing a partnership to meet supply chain needs and customer demands.  (27:13)  &bull; James to send spec sheets after the call to outline product demand and capacity needs for future discussions.  (30:23)  &bull; Potential areas for collaboration were identified, including the need for battery packs and dedicated supply chains to support customer demands.  (30:49)   7. Battery Pack Customization and Production   (33:05)  &bull; Both parties discussed the demand for redesigning battery packs and the potential for collaboration in this area.  (34:05)  &bull; Both parties expressed a strong interest in pursuing the partnership, indicating a willingness to invest time and resources into making the collaboration successful.  (36:03)  &bull; James Trevey suggested testing cells and assembling packs to better understand the collaboration potential.  (36:48)   8. Standardization of Drone Technology   (39:36)  &bull; Daniel Sheridan emphasized the need for standardized designs to reduce costs and improve scalability in drone technology.  (39:36)  &bull; Daniel Sheridan expressed a strong interest in collaborating with experts to develop custom cells and scale production.  (43:31)   9. Battery Performance and Specifications   (45:19)  &bull; Potential for collaboration on battery specifications for various projects was discussed, including military and drone applications.  (45:52)   10. Collaboration on Battery Production   (51:02)  &bull; Both parties expressed a strong interest in pursuing the partnership and scaling production to meet demand.  (51:11)  &bull; Potential collaboration areas include replacing cells sourced from China and developing higher performance cells for military specifications.  (52:01)  &bull; Daniel to engage with ACME for discussions on munitions campus applications and explore public-private partnerships for battery production.  (54:51)   11. Lobbying and State-Level Engagement   (56:42)  &bull; Potential collaboration areas were identified, including leveraging state-level support for business expansion and job creation.  (57:15)  &bull; Both parties expressed a strong interest in pursuing the partnership, indicating a willingness to invest time and resources into making the collaboration successful.  (58:15)  &bull; James to schedule a relationship scoping call to dive into further details and possibly arrange a visit.  (01:00:06)   12. Partnership and Equipment Supply Chain   (01:01:40)  &bull; Both parties expressed a strong interest in pursuing the partnership, indicating a willingness to invest time and resources into making the collaboration successful.  (01:04:04)  &bull; Potential collaboration on equipment sourcing and support for trade issues was discussed, highlighting mutual benefits.  (01:05:03)  &bull; A term sheet will outline volumes, pricing, and timelines to align both parties on high-level details for the partnership.  (01:06:31)  &bull; James to send over a term sheet template to Brian for review to expedite contract discussions.  (01:07:07)   13. Next Steps for Collaboration   (01:08:47)  &bull; James to send over the spec sheets and a sample term sheet, while Daniel will explore equipment challenges at Fed Supernova DC.  (01:08:49)       MeetGeek on Mobile  Record offline talks, revisit meeting notes, and manage upcoming events - right from your phone.         MeetGeek on Mobile  Record offline talks, revisit meeting notes, and manage upcoming events - right from your phone.          Automate meetings and boost productivity.  Sign Up for Free   SOC 2 Type 2   HIPAA   GDPR   CCPA           Update your email preferences    ',0,0,0,0,0,0,'2025-09-16 20:25:12','2025-12-09 19:28:30','2025-12-09 19:28:30','2025-12-09 19:28:30',NULL,NULL,NULL),
(733,4,'<68c9df70159fa_11f7d4230064@fathom-sidekiq-default-3-7ff59f6986-qvvvr.mail>',NULL,NULL,'Recap of your meeting with Lithium Battery Co','no-reply@fathom.video','Fathom','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\">\r\n  <head>\r\n    <!--[if gte mso 9]><xml><o:OfficeDocumentSettings><o:AllowPNG/><o:PixelsPerInch>96</o:PixelsPerInch></o:OfficeDocumentSettings></xml><![endif]-->\r\n    <title>FATHOM</title>\r\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <link href=\"https://fonts.googleapis.com/css?family=Inter:300,400,500,600,700\" rel=\"stylesheet\">\r\n    <style type=\"text/css\">\r\n      a{\r\n        outline:none;\r\n        color:#00BEFF;\r\n        text-decoration:underline;\r\n      }\r\n      a:hover{text-decoration:none!important;}\r\n      .h-u a{text-decoration:none;}\r\n      .h-u a:hover{text-decoration:underline!important;}\r\n      a[x-apple-data-detectors]{color:inherit!important; text-decoration:none!important;}\r\n      a[href^=\"tel\"]:hover{text-decoration:none!important;}\r\n      .active-i a:hover,\r\n      .active-t td:hover{opacity:0.8;}\r\n      .active-i a,\r\n      .active-t td{transition:all 0.3s ease;}\r\n      a img{border:none;}\r\n      b, strong{font-weight:700;}\r\n      p{margin:0;}\r\n      th{padding:0;}\r\n      table td{mso-line-height-rule:exactly;}\r\n      #emailBody #emailWrapper [x-apple-data-detectors]{color:inherit!important;text-decoration:inherit!important;}\r\n      .l-white a{color:#fff;}\r\n      :root{color-scheme:light;}\r\n      [style*=\"Inter\"]{font-family:\'Inter\', Arial, Helvetica, sans-serif !important}\r\n      [style*=\"Inter500\"]{font-weight:500!important; font-family:\'Inter\', Arial, Helvetica, sans-serif !important}\r\n      .ico-block-02 a:hover{color:#fff!important;}\r\n      .ico-block-03 a:hover {text-decoration:underline!important; color:#20C5FF!important;}\r\n      .ico-block-03 a:hover .ico-hover{display:inline-block!important;}\r\n      .ico-block-03 a:hover .ico-hover img{display:block; width:36px!important; height:auto!important;}\r\n      @media only screen and (max-width:817px) {\r\n        .w-100p{width:100%!important;}\r\n        .tflex{display:block!important;width:100%!important;}\r\n        .f-l{float:left!important;}\r\n        .f-r{float:right!important;}\r\n        .ta-l{text-align:left!important;}\r\n        .ta-r{text-align:right!important;}\r\n        .hm{display:none!important;width:0!important;height:0!important;padding:0!important;font-size:0!important;line-height:0!important;}\r\n        .w-8{width:8px!important;}\r\n        .w-10{width:10px!important;}\r\n        .wi-100p img{width:100%!important;height:auto!important;}\r\n        .p-0{padding:0!important;}\r\n        .ptb-20{padding-top:20px!important;padding-bottom:20px!important;}\r\n        .ptb-30{padding-top:30px!important;padding-bottom:30px!important;}\r\n        .pl-30{padding-left:30px!important;}\r\n        .pt-0{padding-top:0!important;}\r\n        .pt-5{padding-top:5px!important;}\r\n        .pt-15{padding-top:15px!important;}\r\n        .pt-20{padding-top:20px!important;}\r\n        .pb-9{padding-bottom:9px!important;}\r\n        .pb-10{padding-bottom:10px!important;}\r\n        .pb-20{padding-bottom:20px!important;}\r\n        .fs-13{font-size:13px!important;}\r\n        .fs-14{font-size:14px!important;}\r\n        .fs-16{font-size:16px!important;}\r\n        .fs-18{font-size:18px!important;}\r\n        .fs-20{font-size:20px!important;}\r\n        .fs-24{font-size:24px!important;}\r\n        .lh-17{line-height:17px!important;}\r\n        .lh-18{line-height:18px!important;}\r\n        .lh-20{line-height:20px!important;}\r\n        .lh-22{line-height:22px!important;}\r\n        .lh-24{line-height:24px!important;}\r\n        .lh-25{line-height:25px!important;}\r\n        .lh-30{line-height:30px!important;}\r\n        .maxw-560{max-width:560px!important;}\r\n        .ico-holder{ float:left; width:16px;}\r\n      }\r\n      @media only screen and (max-width:389px) {\r\n        .fs-11-390{font-size:11px!important;}\r\n        .lh-14-390{line-height:13px!important;}\r\n      }\r\n      @media (prefers-dark-interface) {body{-apple-color-filter:none;}}\r\n      .ai_notes_html_content a:hover {\r\n        color: #00beff;\r\n        text-decoration-line: underline !important;\r\n        -webkit-text-decoration-color:#54565B;\r\n        text-decoration-color:#54565B;\r\n      }\r\n      .ai_notes_html_content a:hover img {\r\n        display: inline-block;\r\n        width: 48px !important;\r\n      }\r\n      .ai_notes_html_content a:hover .ico-hover {\r\n        display:inline-block!important;\r\n      }\r\n      .ai_notes_html_content a:hover .ico-hover img {\r\n        display:block;\r\n        width:36px!important;\r\n        height:auto!important;\r\n      }\r\n      .underline {\r\n        text-decoration-line: underline;\r\n        text-decoration-style: solid;\r\n        text-decoration-skip-ink: none;\r\n        text-decoration-thickness: auto;\r\n        text-underline-offset: auto;\r\n        text-underline-position: from-font;\r\n      }\r\n    </style>\r\n    <style type=\"text/css\">\r\n      @import url(https://fonts.googleapis.com/css?family=Inter:300,400,500,600,700);\r\n    </style>\r\n  </head>\r\n  <body id=\"emailBody\" style=\"margin:0; padding:0; -webkit-text-size-adjust:100%; -ms-text-size-adjust:100%; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; text-rendering:optimizeLegibility;\">\r\n    <div style=\"display:none;\">Meeting Purpose\r\n\r\nExplore potential partnership between Forge Nano (cell manufacturer) and Lithium Battery Co/MAVRIX (pack manufacturer) for U.S.-based battery production.\r\n\r\nKey Takeaways\r\n\r\n  - Both companies are building large-scale U.S. manufacturing facilities (Forge Nano in NC, Lithium Battery Co in FL)\r\n  - Strong alignment on U.S.-based supply chain and addressing defense/commercial markets\r\n  - Complementary capabilities: Forge Nano&#39;s advanced cell tech + Lithium Battery Co&#39;s pack manufacturing\r\n  - Mutual interest in collaboration, from R&amp;D to high-volume production\r\n\r\nTopics\r\n\r\nCompany Introductions\r\n\r\n  - Forge Nano: CTO James Trevey, nanocoding tech for improved battery performance\r\n  - Lithium Battery Co: Jordan Wroblewski (BD), Nathan Staron (Founder), Jarrett Brownfield (CFO)\r\n  - MAVRIX: Brian Stufflebean (CEO), merging with Lithium Battery Co\r\n\r\nManufacturing Capabilities\r\n\r\n  - Lithium Battery Co: 82k sq ft facility at Port of Tampa, expanding to 1.3M sq ft campus\r\n      - 3 automated pack assembly lines (prismatic, large cylindrical, small cylindrical)\r\n      - Scaling to 20 production lines within 12 months\r\n  - Forge Nano: 3 GWh/year facility near Raleigh, NC (300k sq ft)\r\n      - Focus on 18650 and 21700 cells, primarily NMC chemistry\r\n      - Pilot line in Denver for R&amp;D and low-volume production\r\n\r\nCell Technology &amp; Performance\r\n\r\n  - Forge Nano&#39;s ALD nanocoding prevents corrosion, enables higher performance\r\n  - Current cells: 1C charge, 3C continuous discharge, 6C pulse\r\n  - Strong cycle life performance compared to major manufacturers\r\n  - Flexibility to optimize for specific applications (e.g., high discharge rate)\r\n\r\nMarket Focus\r\n\r\n  - Both targeting defense and commercial markets (ESS, residential, data centers)\r\n  - Emphasis on U.S.-based manufacturing and supply chain\r\n  - Potential to standardize battery designs across defense applications\r\n\r\nGovernment &amp; Industry Connections\r\n\r\n  - Both companies have high-level connections in government and defense\r\n  - Opportunities for joint advocacy and policy influence\r\n  - Potential to leverage state/federal resources for workforce development\r\n\r\nChallenges &amp; Opportunities\r\n\r\n  - Tariff concerns on imported manufacturing equipment (301 exclusions)\r\n  - Need for standardization in battery designs to increase scale/reduce costs\r\n  - Potential to collaborate on addressing supply chain and policy issues\r\n\r\nNext Steps\r\n\r\n  - Forge Nano to send cell spec sheets and sample term sheet to Lithium Battery Co\r\n  - Schedule follow-up call to dive deeper into relationship scoping\r\n  - Explore potential site visits (Forge Nano to FL, Lithium Battery Co to NC)\r\n  - Collaborate on strategies for equipment tariff exclusions\r\n  - Lithium Battery Co to review term sheet and prepare for potential contract discussions\r\n  - Explore joint advocacy opportunities for U.S. battery manufacturing\r\n</div>\r\n    <table id=\"emailWrapper\" width=\"100%\" style=\"min-width:320px;\" cellspacing=\"0\" cellpadding=\"0\">\r\n      <tr>\r\n        <td class=\"p-0\" style=\"padding:30px 0;\">\r\n          <table class=\"w-100p\" width=\"560\" align=\"center\" style=\"max-width:560px; margin:0 auto;\" cellpadding=\"0\" cellspacing=\"0\">\r\n            <tr>\r\n              <td class=\"pt-15\" style=\"padding:18px 0px 20px;\">\r\n                <table class=\"maxw-560\" style=\"max-width:640px; width:100% !important; margin:0;\" cellpadding=\"0\" cellspacing=\"0\">\r\n                  <tr>\r\n                    <td>\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tr>\r\n                          <td align=\"left\">\r\n                            <a style=\"text-decoration:none;\" href=\"https://fathom.video/?utm_campaign=postmeetingsummary&amp;utm_content=header&amp;utm_medium=email\">\r\n                              <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/fathom-logo-black-2025.png\" width=\"152\" alt=\"FATHOM\">\r\n                            </a>\r\n                          </td>\r\n                            <td align=\"right\">\r\n                              <a class=\"underline\" style=\"font:12px/16px Arial, Helvetica, sans-serif, Inter; color:#0070AC; letter-spacing:-.1px;\" href=\"https://fathom.video/invite/KDiiWw?utm_medium=email&amp;utm_campaign=postmeetingsummary&amp;utm_content=header_ad\">\r\n                                <b>Get your own FREE AI Meeting Assistant</b>\r\n                              </a>\r\n                                <br>\r\n                                <a style=\"text-decoration:none;\" href=\"https://www.g2.com/products/fathom-2021-09-22/reviews\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/g2-rating.png\" width=\"203\" alt=\"#1 rated on G2, 5/5, 5000+ reviews\">\r\n                                </a>\r\n                            </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n            <tr>\r\n              <td class=\"pt-15\">\r\n                <table class=\"maxw-560\" style=\"max-width:640px; width:100% !important; margin:0;\" cellpadding=\"0\" cellspacing=\"0\">\r\n                  <tr>\r\n                    <td style=\"padding:0 0 20px;\">\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tr>\r\n                          <th class=\"tflex\" align=\"left\" style=\"vertical-align:top;\">\r\n                            <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                              <tr>\r\n                                <td class=\"pt-0 pb-9\" style=\"padding:8px 0 5px;\">\r\n                                  <table cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tr>\r\n                                      <td style=\"font:600 16px/20px Arial, Helvetica, sans-serif, Inter; color:#606167;\">\r\n                                        Meeting with Lithium Battery Co\r\n                                      </td>\r\n                                    </tr>\r\n                                  </table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td class=\"fs-24 lh-30\" style=\"padding:0 0 3px; font:700 28px/35px Arial, Helvetica, sans-serif, Inter; color:#000; letter-spacing:-.6px;\">\r\n                                  Meeting w/ Forge Nano \r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td style=\"font:500 13px/17px Arial, Helvetica, sans-serif, Inter; color:#6C6D72; letter-spacing:-.2px;\">\r\n                                  September 16, 2025&nbsp;&nbsp;<span style=\"color:#D3D3D3;\">&bull;</span>&nbsp;\r\n                                  70 mins&nbsp; <span style=\"color:#D3D3D3;\">&bull;</span>&nbsp;\r\n                                  <a class=\"underline\" style=\"color:#0070AC;\" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&amp;utm_campaign=postmeetingsummary&amp;utm_content=view_recording_link&amp;utm_medium=email\">View Meeting</a>\r\n                                  or <a class=\"underline\" style=\"color:#0070AC;\" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=ask_fathom&amp;utm_campaign=postmeetingsummary&amp;utm_content=ask_fathom&amp;utm_medium=email\">Ask Fathom</a>\r\n                                </td>\r\n                              </tr>\r\n                            </table>\r\n                          </th>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                  <tr>\r\n                    <td class=\"ptb-20\" style=\"border-radius:10px;\">\r\n                      <table width=\"560\" align=\"center\" style=\"max-width:560px; width:100% !important; margin:0px;\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tr>\r\n                          <td class=\"fs-20 lh-25\" style=\"padding:19px 0 10px; font:700 14px/17px Arial, Helvetica, sans-serif, Inter; color:#9C9C9C; letter-spacing:-.28px; text-transform: uppercase;\">\r\n                            Action Items ✨\r\n                          </td>\r\n                        </tr>\r\n                        <tr>\r\n                          <td class=\"pb-10\" style=\"padding:0 0 15px;\">\r\n                            <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px; line-height:1px; font-size:1px; mso-line-height-rule:at-least;\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px; display:block; vertical-align:top;\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px;\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px;\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tr>\r\n                                      <td class=\"ico-block-03 fs-14 lh-18\" style=\"padding:0 0 3px; font:600 14px/18px Arial, Helvetica, sans-serif, Inter; color:#000; letter-spacing:-.14px;\">\r\n                                        <a style=\"color:#000; text-decoration:none;\" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&amp;timestamp=1852.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\">\r\n                                          Send cell spec sheets + term sheet template to Brian\r\n<span class=\"ico-hover\" style=\"display:none; font-size:0; line-height:0; vertical-align: middle; margin: 0 0 0 5px;\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px; height:auto; vertical-align:top; border:none;\" alt=\"\"></span><span style=\"font:600 10px/12px Arial, Helvetica, sans-serif, Inter;\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"ico-block-02\" style=\"font:12px/15.6px Arial, Helvetica, sans-serif, Inter; color:#6C6D72; letter-spacing:-.12px;\">\r\n                                        \r\n                                      </td>\r\n                                    </tr>\r\n                                  </table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px; line-height:1px; font-size:1px; mso-line-height-rule:at-least;\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px; display:block; vertical-align:top;\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px;\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px;\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tr>\r\n                                      <td class=\"ico-block-03 fs-14 lh-18\" style=\"padding:0 0 3px; font:600 14px/18px Arial, Helvetica, sans-serif, Inter; color:#000; letter-spacing:-.14px;\">\r\n                                        <a style=\"color:#000; text-decoration:none;\" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&amp;timestamp=2432.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\">\r\n                                          Compile list of fav NMC-based 18650/21700 cells for James\r\n<span class=\"ico-hover\" style=\"display:none; font-size:0; line-height:0; vertical-align: middle; margin: 0 0 0 5px;\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px; height:auto; vertical-align:top; border:none;\" alt=\"\"></span><span style=\"font:600 10px/12px Arial, Helvetica, sans-serif, Inter;\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"ico-block-02\" style=\"font:12px/15.6px Arial, Helvetica, sans-serif, Inter; color:#6C6D72; letter-spacing:-.12px;\">\r\n                                        Nathan Staron\r\n                                      </td>\r\n                                    </tr>\r\n                                  </table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px; line-height:1px; font-size:1px; mso-line-height-rule:at-least;\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px; display:block; vertical-align:top;\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px;\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px;\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tr>\r\n                                      <td class=\"ico-block-03 fs-14 lh-18\" style=\"padding:0 0 3px; font:600 14px/18px Arial, Helvetica, sans-serif, Inter; color:#000; letter-spacing:-.14px;\">\r\n                                        <a style=\"color:#000; text-decoration:none;\" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&amp;timestamp=3649.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\">\r\n                                          Schedule follow-up relationship scoping call w/ Forge Nano team\r\n<span class=\"ico-hover\" style=\"display:none; font-size:0; line-height:0; vertical-align: middle; margin: 0 0 0 5px;\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px; height:auto; vertical-align:top; border:none;\" alt=\"\"></span><span style=\"font:600 10px/12px Arial, Helvetica, sans-serif, Inter;\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"ico-block-02\" style=\"font:12px/15.6px Arial, Helvetica, sans-serif, Inter; color:#6C6D72; letter-spacing:-.12px;\">\r\n                                        Jordan Wroblewski\r\n                                      </td>\r\n                                    </tr>\r\n                                  </table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px; line-height:1px; font-size:1px; mso-line-height-rule:at-least;\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px; display:block; vertical-align:top;\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px;\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px;\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tr>\r\n                                      <td class=\"ico-block-03 fs-14 lh-18\" style=\"padding:0 0 3px; font:600 14px/18px Arial, Helvetica, sans-serif, Inter; color:#000; letter-spacing:-.14px;\">\r\n                                        <a style=\"color:#000; text-decoration:none;\" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&amp;timestamp=3821.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\">\r\n                                          Share 301 exclusion application details w/ James for potential support\r\n<span class=\"ico-hover\" style=\"display:none; font-size:0; line-height:0; vertical-align: middle; margin: 0 0 0 5px;\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px; height:auto; vertical-align:top; border:none;\" alt=\"\"></span><span style=\"font:600 10px/12px Arial, Helvetica, sans-serif, Inter;\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"ico-block-02\" style=\"font:12px/15.6px Arial, Helvetica, sans-serif, Inter; color:#6C6D72; letter-spacing:-.12px;\">\r\n                                        Brian Stufflebean\r\n                                      </td>\r\n                                    </tr>\r\n                                  </table>\r\n                                </td>\r\n                              </tr>\r\n                            </table>\r\n                          </td>\r\n                        </tr>\r\n\r\n                        <tr>\r\n                          <td style=\"padding:0px;\">\r\n                            <table cellpadding=\"0\" cellspacing=\"0\">\r\n                              <tr>\r\n                                <td colspan=\"3\" class=\"fs-20 lh-24 fs-11-390 lh-13-390\" style=\"font:700 14px/17px Arial, Helvetica, sans-serif, Inter; color:#9C9C9C; letter-spacing:-.28px; text-transform: uppercase;\">\r\n                                  Meeting Summary ✨\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td height=\"12\"></td>\r\n                              </tr>\r\n                            </table>\r\n                          </td>\r\n                        </tr>\r\n\r\n                        <tr>\r\n                          <td style=\"padding:0 0 15px;\">\r\n                            <div class=\"ai_notes_html_content\">\r\n                              <h2 style=\"\r\n      padding: 0 0 5px;\r\n      color: #000;\r\n      letter-spacing: -0.3px;\r\n      font: 700 16px/20px Arial, Helvetica, sans-serif, Inter;\r\n      margin: 25px 0 0 0;\r\n    \">Meeting Purpose</h2>\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0 0 25px 0;\r\n    \">\r\nExplore potential partnership between Forge Nano (cell manufacturer) and Lithium Battery Co/MAVRIX (pack manufacturer) for U.S.-based battery production.\r\n</p>\r\n<h2 style=\"\r\n      padding: 0 0 5px;\r\n      color: #000;\r\n      letter-spacing: -0.3px;\r\n      font: 700 16px/20px Arial, Helvetica, sans-serif, Inter;\r\n      margin: 25px 0 0 0;\r\n    \">Key Takeaways</h2>\r\n<ul style=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0 0 25px 0;\r\n    \">\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=700.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Both companies are building large-scale U.S. manufacturing facilities (Forge Nano in NC, Lithium Battery Co in FL)<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=1360.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Strong alignment on U.S.-based supply chain and addressing defense/commercial markets<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=309.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Complementary capabilities: Forge Nano\'s advanced cell tech + Lithium Battery Co\'s pack manufacturing<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=298.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Mutual interest in collaboration, from R&amp;D to high-volume production<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n<h2 style=\"\r\n      padding: 0 0 5px;\r\n      color: #000;\r\n      letter-spacing: -0.3px;\r\n      font: 700 16px/20px Arial, Helvetica, sans-serif, Inter;\r\n      margin: 25px 0 0 0;\r\n    \">Topics</h2>\r\n<h3 style=\"\r\n      padding: 0 0 5px;\r\n      color: #000;\r\n      letter-spacing: -0.3px;\r\n      font: 700 14px/18px Arial, Helvetica, sans-serif, Inter;\r\n      margin: 0;\r\n    \">Company Introductions</h3>\r\n<ul style=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0 0 25px 0;\r\n    \">\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=318.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Forge Nano: CTO James Trevey, nanocoding tech for improved battery performance<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=355.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Lithium Battery Co: Jordan Wroblewski (BD), Nathan Staron (Founder), Jarrett Brownfield (CFO)<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=423.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">MAVRIX: Brian Stufflebean (CEO), merging with Lithium Battery Co<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n<h3 style=\"\r\n      padding: 0 0 5px;\r\n      color: #000;\r\n      letter-spacing: -0.3px;\r\n      font: 700 14px/18px Arial, Helvetica, sans-serif, Inter;\r\n      margin: 0;\r\n    \">Manufacturing Capabilities</h3>\r\n<ul style=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0 0 25px 0;\r\n    \">\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=600.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Lithium Battery Co: 82k sq ft facility at Port of Tampa, expanding to 1.3M sq ft campus<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n<ul style=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=783.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">3 automated pack assembly lines (prismatic, large cylindrical, small cylindrical)<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=675.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Scaling to 20 production lines within 12 months<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=1146.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Forge Nano: 3 GWh/year facility near Raleigh, NC (300k sq ft)<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n<ul style=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=939.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Focus on 18650 and 21700 cells, primarily NMC chemistry<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=1146.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Pilot line in Denver for R&amp;D and low-volume production<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h3 style=\"\r\n      padding: 0 0 5px;\r\n      color: #000;\r\n      letter-spacing: -0.3px;\r\n      font: 700 14px/18px Arial, Helvetica, sans-serif, Inter;\r\n      margin: 0;\r\n    \">Cell Technology &amp; Performance</h3>\r\n<ul style=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0 0 25px 0;\r\n    \">\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=1036.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Forge Nano\'s ALD nanocoding prevents corrosion, enables higher performance<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=1555.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Current cells: 1C charge, 3C continuous discharge, 6C pulse<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=1737.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Strong cycle life performance compared to major manufacturers<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=2865.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Flexibility to optimize for specific applications (e.g., high discharge rate)<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n<h3 style=\"\r\n      padding: 0 0 5px;\r\n      color: #000;\r\n      letter-spacing: -0.3px;\r\n      font: 700 14px/18px Arial, Helvetica, sans-serif, Inter;\r\n      margin: 0;\r\n    \">Market Focus</h3>\r\n<ul style=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0 0 25px 0;\r\n    \">\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=248.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Both targeting defense and commercial markets (ESS, residential, data centers)<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=1360.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Emphasis on U.S.-based manufacturing and supply chain<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=2417.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Potential to standardize battery designs across defense applications<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n<h3 style=\"\r\n      padding: 0 0 5px;\r\n      color: #000;\r\n      letter-spacing: -0.3px;\r\n      font: 700 14px/18px Arial, Helvetica, sans-serif, Inter;\r\n      margin: 0;\r\n    \">Government &amp; Industry Connections</h3>\r\n<ul style=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0 0 25px 0;\r\n    \">\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=1449.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Both companies have high-level connections in government and defense<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=1360.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Opportunities for joint advocacy and policy influence<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=1372.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Potential to leverage state/federal resources for workforce development<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n<h3 style=\"\r\n      padding: 0 0 5px;\r\n      color: #000;\r\n      letter-spacing: -0.3px;\r\n      font: 700 14px/18px Arial, Helvetica, sans-serif, Inter;\r\n      margin: 0;\r\n    \">Challenges &amp; Opportunities</h3>\r\n<ul style=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0 0 25px 0;\r\n    \">\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=3843.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Tariff concerns on imported manufacturing equipment (301 exclusions)<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=2417.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Need for standardization in battery designs to increase scale/reduce costs<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=2667.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Potential to collaborate on addressing supply chain and policy issues<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n<h2 style=\"\r\n      padding: 0 0 5px;\r\n      color: #000;\r\n      letter-spacing: -0.3px;\r\n      font: 700 16px/20px Arial, Helvetica, sans-serif, Inter;\r\n      margin: 25px 0 0 0;\r\n    \">Next Steps</h2>\r\n<ul style=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0 0 25px 0;\r\n    \">\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=1863.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Forge Nano to send cell spec sheets and sample term sheet to Lithium Battery Co<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=3654.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Schedule follow-up call to dive deeper into relationship scoping<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=3671.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Explore potential site visits (Forge Nano to FL, Lithium Battery Co to NC)<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=3862.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Collaborate on strategies for equipment tariff exclusions<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=4032.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Lithium Battery Co to review term sheet and prepare for potential contract discussions<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&timestamp=3193.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Explore joint advocacy opportunities for U.S. battery manufacturing<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n\r\n                            </div>\r\n                          </td>\r\n                        </tr>\r\n\r\n                        <tr>\r\n                          <td style=\"padding:1px 0 0;\">\r\n                            <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                              <tr class=\"active-t\">\r\n                                <td class=\"fs-18 lh-22\" align=\"center\" style=\"background:#00BEFF; mso-padding-alt:13px 15px; font:bold 20px/24px Arial, Helvetica, sans-serif, Inter; border-radius:6px;\">\r\n                                  <a style=\"color:#000; text-decoration:none; display:block; padding:13px 15px;\" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=summary&amp;utm_campaign=postmeetingsummary&amp;utm_content=view_recording_button&amp;utm_medium=email\">View Meeting →</a>\r\n                                </td>\r\n                              </tr>\r\n                            </table>\r\n                          </td>\r\n                        </tr>\r\n\r\n\r\n                        <tr height=\"25\"></tr>\r\n                        <tr>\r\n                          <td>\r\n                            <table width=\"560\" style=\"max-width:560px; width: 560px; background-color: #00BEFF1A;\">\r\n                              <tr>\r\n                                <td style=\"width: 250px; padding: 20px 5px 8px 20px; vertical-align: top;\">\r\n                                  <table>\r\n                                    <tr>\r\n                                      <td>\r\n                                        <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/robot.png\" width=\"32\">\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr height=\"10\"></tr>\r\n                                    <tr>\r\n                                      <td style=\"font:700 14px/16px Arial, Helvetica, sans-serif, Inter; color:#2D2D31; letter-spacing:-.4px;\">\r\n                                        Ask Fathom!\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td style=\"font:500 14px/16px Arial, Helvetica, sans-serif, Inter; color:#3D3D44; letter-spacing:-.28px;\">\r\n                                        Ask our AI Assistant for answers and insights. It\'s ChatGPT for your meetings!\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr height=\"10\"></tr>\r\n                                    <tr>\r\n                                      <td>\r\n                                        <a class=\"underline\" style=\"font:500 14px/16px Arial, Helvetica, sans-serif, Inter; color:#0070AC; letter-spacing:-.28px;\" href=\"https://fathom.video/share/hKs5ZophDXxPGyYHL_N3ATkRzjrz9-Uo?tab=ask_fathom&amp;utm_campaign=postmeetingsummary&amp;utm_content=ask_fathom_footer&amp;utm_medium=email\">Try Ask Fathom →</a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    </table>\r\n                                </td>\r\n                                <td style=\"padding: 8px;\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ask-fathom-screenshot.png\" width=\"310\">\r\n                                </td>\r\n                              </tr>\r\n                            </table>\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n\r\n                  <tr>\r\n                    <td style=\"padding:24px 0 0;\">\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tr>\r\n                          <th width=\"250\" align=\"center\" style=\"font:700 12px/17px Arial, Helvetica, sans-serif, Inter500; color:#6C6D72; vertical-align:top;\">\r\n                              <table cellpadding=\"0\" cellspacing=\"0\">\r\n                                  <tr>\r\n                                    <td style=\"font:700 13px/28px Arial, Helvetica, sans-serif, Inter; color:#000;\">\r\n                                      Never take notes again.\r\n                                      <a class=\"underline\" style=\"color:#0070AC; text-decoration:underline;\" href=\"https://fathom.video/invite/KDiiWw?utm_medium=email&amp;utm_campaign=postmeetingsummary&amp;utm_content=footer\">Sign up for Free</a>\r\n                                    </td>\r\n                                  </tr>\r\n                                    <tr>\r\n                                      <td style=\"font:500 11px/13px Arial, Helvetica, sans-serif, Inter500; color:#6C6D72;\">\r\n                                        🎁 Referral bonus: Sign up now and unlock a free month of Premium for you and Nathan\r\n                                      </td>\r\n                                    </tr>\r\n                              </table>\r\n                          </th>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                  <tr>\r\n                    <td height=\"20\"></td>\r\n                  </tr>\r\n                  <tr>\r\n                    <td>\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tr>\r\n                          <td align=\"center\">\r\n                            <a style=\"text-decoration:none;\" href=\"https://www.g2.com/products/fathom-2021-09-22/reviews\">\r\n                              <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/rating.png\" width=\"153\">\r\n                            </a>\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </table>\r\n  </body>\r\n</html>\r\n','\r\n\r\n  \r\n    \r\n    FATHOM\r\n    \r\n    \r\n    \r\n    \r\n      a{\r\n        outline:none;\r\n        color:#00BEFF;\r\n        text-decoration:underline;\r\n      }\r\n      a:hover{text-decoration:none!important;}\r\n      .h-u a{text-decoration:none;}\r\n      .h-u a:hover{text-decoration:underline!important;}\r\n      a[x-apple-data-detectors]{color:inherit!important; text-decoration:none!important;}\r\n      a[href^=\"tel\"]:hover{text-decoration:none!important;}\r\n      .active-i a:hover,\r\n      .active-t td:hover{opacity:0.8;}\r\n      .active-i a,\r\n      .active-t td{transition:all 0.3s ease;}\r\n      a img{border:none;}\r\n      b, strong{font-weight:700;}\r\n      p{margin:0;}\r\n      th{padding:0;}\r\n      table td{mso-line-height-rule:exactly;}\r\n      #emailBody #emailWrapper [x-apple-data-detectors]{color:inherit!important;text-decoration:inherit!important;}\r\n      .l-white a{color:#fff;}\r\n      :root{color-scheme:light;}\r\n      [style*=\"Inter\"]{font-family:\'Inter\', Arial, Helvetica, sans-serif !important}\r\n      [style*=\"Inter500\"]{font-weight:500!important; font-family:\'Inter\', Arial, Helvetica, sans-serif !important}\r\n      .ico-block-02 a:hover{color:#fff!important;}\r\n      .ico-block-03 a:hover {text-decoration:underline!important; color:#20C5FF!important;}\r\n      .ico-block-03 a:hover .ico-hover{display:inline-block!important;}\r\n      .ico-block-03 a:hover .ico-hover img{display:block; width:36px!important; height:auto!important;}\r\n      @media only screen and (max-width:817px) {\r\n        .w-100p{width:100%!important;}\r\n        .tflex{display:block!important;width:100%!important;}\r\n        .f-l{float:left!important;}\r\n        .f-r{float:right!important;}\r\n        .ta-l{text-align:left!important;}\r\n        .ta-r{text-align:right!important;}\r\n        .hm{display:none!important;width:0!important;height:0!important;padding:0!important;font-size:0!important;line-height:0!important;}\r\n        .w-8{width:8px!important;}\r\n        .w-10{width:10px!important;}\r\n        .wi-100p img{width:100%!important;height:auto!important;}\r\n        .p-0{padding:0!important;}\r\n        .ptb-20{padding-top:20px!important;padding-bottom:20px!important;}\r\n        .ptb-30{padding-top:30px!important;padding-bottom:30px!important;}\r\n        .pl-30{padding-left:30px!important;}\r\n        .pt-0{padding-top:0!important;}\r\n        .pt-5{padding-top:5px!important;}\r\n        .pt-15{padding-top:15px!important;}\r\n        .pt-20{padding-top:20px!important;}\r\n        .pb-9{padding-bottom:9px!important;}\r\n        .pb-10{padding-bottom:10px!important;}\r\n        .pb-20{padding-bottom:20px!important;}\r\n        .fs-13{font-size:13px!important;}\r\n        .fs-14{font-size:14px!important;}\r\n        .fs-16{font-size:16px!important;}\r\n        .fs-18{font-size:18px!important;}\r\n        .fs-20{font-size:20px!important;}\r\n        .fs-24{font-size:24px!important;}\r\n        .lh-17{line-height:17px!important;}\r\n        .lh-18{line-height:18px!important;}\r\n        .lh-20{line-height:20px!important;}\r\n        .lh-22{line-height:22px!important;}\r\n        .lh-24{line-height:24px!important;}\r\n        .lh-25{line-height:25px!important;}\r\n        .lh-30{line-height:30px!important;}\r\n        .maxw-560{max-width:560px!important;}\r\n        .ico-holder{ float:left; width:16px;}\r\n      }\r\n      @media only screen and (max-width:389px) {\r\n        .fs-11-390{font-size:11px!important;}\r\n        .lh-14-390{line-height:13px!important;}\r\n      }\r\n      @media (prefers-dark-interface) {body{-apple-color-filter:none;}}\r\n      .ai_notes_html_content a:hover {\r\n        color: #00beff;\r\n        text-decoration-line: underline !important;\r\n        -webkit-text-decoration-color:#54565B;\r\n        text-decoration-color:#54565B;\r\n      }\r\n      .ai_notes_html_content a:hover img {\r\n        display: inline-block;\r\n        width: 48px !important;\r\n      }\r\n      .ai_notes_html_content a:hover .ico-hover {\r\n        display:inline-block!important;\r\n      }\r\n      .ai_notes_html_content a:hover .ico-hover img {\r\n        display:block;\r\n        width:36px!important;\r\n        height:auto!important;\r\n      }\r\n      .underline {\r\n        text-decoration-line: underline;\r\n        text-decoration-style: solid;\r\n        text-decoration-skip-ink: none;\r\n        text-decoration-thickness: auto;\r\n        text-underline-offset: auto;\r\n        text-underline-position: from-font;\r\n      }\r\n    \r\n    \r\n      @import url(https://fonts.googleapis.com/css?family=Inter:300,400,500,600,700);\r\n    \r\n  \r\n  \r\n    Meeting Purpose\r\n\r\nExplore potential partnership between Forge Nano (cell manufacturer) and Lithium Battery Co/MAVRIX (pack manufacturer) for U.S.-based battery production.\r\n\r\nKey Takeaways\r\n\r\n  - Both companies are building large-scale U.S. manufacturing facilities (Forge Nano in NC, Lithium Battery Co in FL)\r\n  - Strong alignment on U.S.-based supply chain and addressing defense/commercial markets\r\n  - Complementary capabilities: Forge Nano&#39;s advanced cell tech + Lithium Battery Co&#39;s pack manufacturing\r\n  - Mutual interest in collaboration, from R&amp;D to high-volume production\r\n\r\nTopics\r\n\r\nCompany Introductions\r\n\r\n  - Forge Nano: CTO James Trevey, nanocoding tech for improved battery performance\r\n  - Lithium Battery Co: Jordan Wroblewski (BD), Nathan Staron (Founder), Jarrett Brownfield (CFO)\r\n  - MAVRIX: Brian Stufflebean (CEO), merging with Lithium Battery Co\r\n\r\nManufacturing Capabilities\r\n\r\n  - Lithium Battery Co: 82k sq ft facility at Port of Tampa, expanding to 1.3M sq ft campus\r\n      - 3 automated pack assembly lines (prismatic, large cylindrical, small cylindrical)\r\n      - Scaling to 20 production lines within 12 months\r\n  - Forge Nano: 3 GWh/year facility near Raleigh, NC (300k sq ft)\r\n      - Focus on 18650 and 21700 cells, primarily NMC chemistry\r\n      - Pilot line in Denver for R&amp;D and low-volume production\r\n\r\nCell Technology &amp; Performance\r\n\r\n  - Forge Nano&#39;s ALD nanocoding prevents corrosion, enables higher performance\r\n  - Current cells: 1C charge, 3C continuous discharge, 6C pulse\r\n  - Strong cycle life performance compared to major manufacturers\r\n  - Flexibility to optimize for specific applications (e.g., high discharge rate)\r\n\r\nMarket Focus\r\n\r\n  - Both targeting defense and commercial markets (ESS, residential, data centers)\r\n  - Emphasis on U.S.-based manufacturing and supply chain\r\n  - Potential to standardize battery designs across defense applications\r\n\r\nGovernment &amp; Industry Connections\r\n\r\n  - Both companies have high-level connections in government and defense\r\n  - Opportunities for joint advocacy and policy influence\r\n  - Potential to leverage state/federal resources for workforce development\r\n\r\nChallenges &amp; Opportunities\r\n\r\n  - Tariff concerns on imported manufacturing equipment (301 exclusions)\r\n  - Need for standardization in battery designs to increase scale/reduce costs\r\n  - Potential to collaborate on addressing supply chain and policy issues\r\n\r\nNext Steps\r\n\r\n  - Forge Nano to send cell spec sheets and sample term sheet to Lithium Battery Co\r\n  - Schedule follow-up call to dive deeper into relationship scoping\r\n  - Explore potential site visits (Forge Nano to FL, Lithium Battery Co to NC)\r\n  - Collaborate on strategies for equipment tariff exclusions\r\n  - Lithium Battery Co to review term sheet and prepare for potential contract discussions\r\n  - Explore joint advocacy opportunities for U.S. battery manufacturing\r\n\r\n    \r\n      \r\n        \r\n          \r\n            \r\n              \r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            \r\n                              \r\n                            \r\n                          \r\n                            \r\n                              \r\n                                Get your own FREE AI Meeting Assistant\r\n                              \r\n                                \r\n                                \r\n                                  \r\n                                \r\n                            \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n              \r\n            \r\n            \r\n              \r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            \r\n                              \r\n                                \r\n                                  \r\n                                    \r\n                                      \r\n                                        Meeting with Lithium Battery Co\r\n                                      \r\n                                    \r\n                                  \r\n                                \r\n                              \r\n                              \r\n                                \r\n                                  Meeting w/ Forge Nano \r\n                                \r\n                              \r\n                              \r\n                                \r\n                                  September 16, 2025&nbsp;&nbsp;&bull;&nbsp;\r\n                                  70 mins&nbsp; &bull;&nbsp;\r\n                                  View Meeting\r\n                                  or Ask Fathom\r\n                                \r\n                              \r\n                            \r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            Action Items ✨\r\n                          \r\n                        \r\n                        \r\n                          \r\n                            \r\n                              \r\n                                \r\n                                  \r\n                                \r\n                                \r\n                                \r\n                                  \r\n                                    \r\n                                      \r\n                                        \r\n                                          Send cell spec sheets + term sheet template to Brian\r\n\r\n                                        \r\n                                      \r\n                                    \r\n                                    \r\n                                      \r\n                                        \r\n                                      \r\n                                    \r\n                                  \r\n                                \r\n                              \r\n                              \r\n                                \r\n                                  \r\n                                \r\n                                \r\n                                \r\n                                  \r\n                                    \r\n                                      \r\n                                        \r\n                                          Compile list of fav NMC-based 18650/21700 cells for James\r\n\r\n                                        \r\n                                      \r\n                                    \r\n                                    \r\n                                      \r\n                                        Nathan Staron\r\n                                      \r\n                                    \r\n                                  \r\n                                \r\n                              \r\n                              \r\n                                \r\n                                  \r\n                                \r\n                                \r\n                                \r\n                                  \r\n                                    \r\n                                      \r\n                                        \r\n                                          Schedule follow-up relationship scoping call w/ Forge Nano team\r\n\r\n                                        \r\n                                      \r\n                                    \r\n                                    \r\n                                      \r\n                                        Jordan Wroblewski\r\n                                      \r\n                                    \r\n                                  \r\n                                \r\n                              \r\n                              \r\n                                \r\n                                  \r\n                                \r\n                                \r\n                                \r\n                                  \r\n                                    \r\n                                      \r\n                                        \r\n                                          Share 301 exclusion application details w/ James for potential support\r\n\r\n                                        \r\n                                      \r\n                                    \r\n                                    \r\n                                      \r\n                                        Brian Stufflebean\r\n                                      \r\n                                    \r\n                                  \r\n                                \r\n                              \r\n                            \r\n                          \r\n                        \r\n\r\n                        \r\n                          \r\n                            \r\n                              \r\n                                \r\n                                  Meeting Summary ✨\r\n                                \r\n                              \r\n                              \r\n                                \r\n                              \r\n                            \r\n                          \r\n                        \r\n\r\n                        \r\n                          \r\n                            \r\n                              Meeting Purpose\r\n\r\nExplore potential partnership between Forge Nano (cell manufacturer) and Lithium Battery Co/MAVRIX (pack manufacturer) for U.S.-based battery production.\r\n\r\nKey Takeaways\r\n\r\n\r\n\r\nBoth companies are building large-scale U.S. manufacturing facilities (Forge Nano in NC, Lithium Battery Co in FL)\r\n\r\n\r\n\r\n\r\nStrong alignment on U.S.-based supply chain and addressing defense/commercial markets\r\n\r\n\r\n\r\n\r\nComplementary capabilities: Forge Nano\'s advanced cell tech + Lithium Battery Co\'s pack manufacturing\r\n\r\n\r\n\r\n\r\nMutual interest in collaboration, from R&amp;D to high-volume production\r\n\r\n\r\n\r\nTopics\r\nCompany Introductions\r\n\r\n\r\n\r\nForge Nano: CTO James Trevey, nanocoding tech for improved battery performance\r\n\r\n\r\n\r\n\r\nLithium Battery Co: Jordan Wroblewski (BD), Nathan Staron (Founder), Jarrett Brownfield (CFO)\r\n\r\n\r\n\r\n\r\nMAVRIX: Brian Stufflebean (CEO), merging with Lithium Battery Co\r\n\r\n\r\n\r\nManufacturing Capabilities\r\n\r\n\r\n\r\nLithium Battery Co: 82k sq ft facility at Port of Tampa, expanding to 1.3M sq ft campus\r\n\r\n\r\n\r\n\r\n3 automated pack assembly lines (prismatic, large cylindrical, small cylindrical)\r\n\r\n\r\n\r\n\r\nScaling to 20 production lines within 12 months\r\n\r\n\r\n\r\n\r\n\r\n\r\nForge Nano: 3 GWh/year facility near Raleigh, NC (300k sq ft)\r\n\r\n\r\n\r\n\r\nFocus on 18650 and 21700 cells, primarily NMC chemistry\r\n\r\n\r\n\r\n\r\nPilot line in Denver for R&amp;D and low-volume production\r\n\r\n\r\n\r\n\r\n\r\nCell Technology &amp; Performance\r\n\r\n\r\n\r\nForge Nano\'s ALD nanocoding prevents corrosion, enables higher performance\r\n\r\n\r\n\r\n\r\nCurrent cells: 1C charge, 3C continuous discharge, 6C pulse\r\n\r\n\r\n\r\n\r\nStrong cycle life performance compared to major manufacturers\r\n\r\n\r\n\r\n\r\nFlexibility to optimize for specific applications (e.g., high discharge rate)\r\n\r\n\r\n\r\nMarket Focus\r\n\r\n\r\n\r\nBoth targeting defense and commercial markets (ESS, residential, data centers)\r\n\r\n\r\n\r\n\r\nEmphasis on U.S.-based manufacturing and supply chain\r\n\r\n\r\n\r\n\r\nPotential to standardize battery designs across defense applications\r\n\r\n\r\n\r\nGovernment &amp; Industry Connections\r\n\r\n\r\n\r\nBoth companies have high-level connections in government and defense\r\n\r\n\r\n\r\n\r\nOpportunities for joint advocacy and policy influence\r\n\r\n\r\n\r\n\r\nPotential to leverage state/federal resources for workforce development\r\n\r\n\r\n\r\nChallenges &amp; Opportunities\r\n\r\n\r\n\r\nTariff concerns on imported manufacturing equipment (301 exclusions)\r\n\r\n\r\n\r\n\r\nNeed for standardization in battery designs to increase scale/reduce costs\r\n\r\n\r\n\r\n\r\nPotential to collaborate on addressing supply chain and policy issues\r\n\r\n\r\n\r\nNext Steps\r\n\r\n\r\n\r\nForge Nano to send cell spec sheets and sample term sheet to Lithium Battery Co\r\n\r\n\r\n\r\n\r\nSchedule follow-up call to dive deeper into relationship scoping\r\n\r\n\r\n\r\n\r\nExplore potential site visits (Forge Nano to FL, Lithium Battery Co to NC)\r\n\r\n\r\n\r\n\r\nCollaborate on strategies for equipment tariff exclusions\r\n\r\n\r\n\r\n\r\nLithium Battery Co to review term sheet and prepare for potential contract discussions\r\n\r\n\r\n\r\n\r\nExplore joint advocacy opportunities for U.S. battery manufacturing\r\n\r\n\r\n\r\n\r\n                            \r\n                          \r\n                        \r\n\r\n                        \r\n                          \r\n                            \r\n                              \r\n                                \r\n                                  View Meeting →\r\n                                \r\n                              \r\n                            \r\n                          \r\n                        \r\n\r\n\r\n                        \r\n                        \r\n                          \r\n                            \r\n                              \r\n                                \r\n                                  \r\n                                    \r\n                                      \r\n                                        \r\n                                      \r\n                                    \r\n                                    \r\n                                    \r\n                                      \r\n                                        Ask Fathom!\r\n                                      \r\n                                    \r\n                                    \r\n                                      \r\n                                        Ask our AI Assistant for answers and insights. It\'s ChatGPT for your meetings!\r\n                                      \r\n                                    \r\n                                    \r\n                                    \r\n                                      \r\n                                        Try Ask Fathom →\r\n                                      \r\n                                    \r\n                                    \r\n                                \r\n                                \r\n                                  \r\n                                \r\n                              \r\n                            \r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n\r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                              \r\n                                  \r\n                                    \r\n                                      Never take notes again.\r\n                                      Sign up for Free\r\n                                    \r\n                                  \r\n                                    \r\n                                      \r\n                                        🎁 Referral bonus: Sign up now and unlock a free month of Premium for you and Nathan\r\n                                      \r\n                                    \r\n                              \r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                  \r\n                    \r\n                  \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            \r\n                              \r\n                            \r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n              \r\n            \r\n          \r\n        \r\n      \r\n    \r\n  \r\n\r\n',0,0,0,0,0,0,'2025-09-16 22:06:40','2025-12-09 19:28:30','2025-12-09 19:28:30','2025-12-09 19:28:30',NULL,NULL,NULL),
(734,4,'<1117925515.5762805.1758070155049@lor1-app51488.prod.linkedin.com>',NULL,NULL,'=?UTF-8?Q?Mavrix,_add_Angelica_Connor_?= =?UTF-8?Q?-_Chief_Executive_Officer_=F0=9F=92=AC?=','messages-noreply@linkedin.com','LinkedIn','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n              @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n            </style> <style>\r\n            @media (max-width: 480px) { .inline-button, .inline-button table { display: none !important; }\r\n            .full-width-button, .full-width-button table { display: table !important; } }\r\n          </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n            \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n            \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> <script type=\"application/ld+json\">\r\n    { \"@context\": \"http://schema.org\", \"@type\": \"EmailMessage\", \"potentialAction\": { \"@type\": \"ViewAction\", \"url\": \"https://www.linkedin.com/comm/mynetwork/send-invite/angelicaconnor/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midSig=1Ds7EQZQCN6rY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A617056094-null-poh2nf%7Emfn9jwqe%7E3g-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A617056094&amp;_sig=2Sbvn_XpuN6rY1\",\r\n    \"name\": \"Connect\" }, \"description\": \"Connect with Angelica\", \"publisher\": { \"@type\": \"Organization\", \"name\":\r\n    \"LinkedIn\", \"url\": \"https://www.linkedin.com/\" } }\r\n  </script> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">Chief Executive Officer at Stansell Construction | WBE</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-left: auto; margin-right: auto; margin-top: 0px; margin-bottom: 0px; width: 512px; max-width: 512px; padding: 0px;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"bg-color-background-container \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1Ds7EQZQCN6rY1&amp;trk=eml-email_pymk_02-header-0-home_glimmer_static_badging_with_count&amp;trkEmail=eml-email_pymk_02-header-0-home_glimmer_static_badging_with_count-null-poh2nf~mfn9jwqe~3g-null-null&amp;eid=poh2nf-mfn9jwqe-3g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjQ4OGNlZDE0NDlkYWE4NjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZmNmZmE2MGZkZGNjMDJjYWJkOGVhYzI1MTMwMTU3MDE1YmVmMTJmYjRiNmU4ZTYsMSwx\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img class=\"h-[37px] w-[101px]\" alt=\"LinkedIn\" src=\"https://static.licdn.com/aero-v1/sc/h/2fp5x7ci191mxbdy1eynscn59\" data-test-header-static-badging-img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 37px; width: 101px;\" width=\"101\" height=\"37\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" data-test-header-notification-badges style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/messaging/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1Ds7EQZQCN6rY1&amp;trk=eml-email_pymk_02-header-0-messaging_glimmer&amp;trkEmail=eml-email_pymk_02-header-0-messaging_glimmer-null-poh2nf~mfn9jwqe~3g-null-null&amp;eid=poh2nf-mfn9jwqe-3g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjQ4OGNlZDE0NDlkYWE4NjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZmNmZmE2MGZkZGNjMDJjYWJkOGVhYzI1MTMwMTU3MDE1YmVmMTJmYjRiNmU4ZTYsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Messaging icon\" src=\"https://static.licdn.com/aero-v1/sc/h/ekkp8yi9j4xx65umpdz3rdmbp\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1Ds7EQZQCN6rY1&amp;trk=eml-email_pymk_02-header-0-my_network_glimmer&amp;trkEmail=eml-email_pymk_02-header-0-my_network_glimmer-null-poh2nf~mfn9jwqe~3g-null-null&amp;eid=poh2nf-mfn9jwqe-3g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjQ4OGNlZDE0NDlkYWE4NjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZmNmZmE2MGZkZGNjMDJjYWJkOGVhYzI1MTMwMTU3MDE1YmVmMTJmYjRiNmU4ZTYsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Mynetwork icon\" src=\"https://static.licdn.com/aero-v1/sc/h/4yxfb6j5ycpjfjgehfqgmdx9w\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/notifications/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1Ds7EQZQCN6rY1&amp;trk=eml-email_pymk_02-header-0-notifications_glimmer&amp;trkEmail=eml-email_pymk_02-header-0-notifications_glimmer-null-poh2nf~mfn9jwqe~3g-null-null&amp;eid=poh2nf-mfn9jwqe-3g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjQ4OGNlZDE0NDlkYWE4NjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZmNmZmE2MGZkZGNjMDJjYWJkOGVhYzI1MTMwMTU3MDE1YmVmMTJmYjRiNmU4ZTYsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Notifications icon\" src=\"https://static.licdn.com/aero-v1/sc/h/eh1e9j5bszh6p379hn269p3ps\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"px-0 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 0px; padding-right: 0px; padding-bottom: 24px;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"pymk-hero-banner\"> <td class=\"px-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"px-3 py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px; padding-left: 24px; padding-right: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/in/angelicaconnor?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1Ds7EQZQCN6rY1&amp;trk=eml-email_pymk_02-pymk_hero-0-profile_name_link&amp;trkEmail=eml-email_pymk_02-pymk_hero-0-profile_name_link-null-poh2nf~mfn9jwqe~3g-null-null&amp;eid=poh2nf-mfn9jwqe-3g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjQ4OGNlZDE0NDlkYWE4NjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZmNmZmE2MGZkZGNjMDJjYWJkOGVhYzI1MTMwMTU3MDE1YmVmMTJmYjRiNmU4ZTYsMSwx\" target=\"_blank\" class=\"text-system-gray-90\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #282828;\"> <h2 class=\"text-lg font-semibold leading-regular\" data-test-id=\"pymk-hero_header\" style=\"margin: 0; font-size: 20px; font-weight: 600; line-height: 1.25;\"> Do you know Angelica? </h2> </a> </td> </tr> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <h4 class=\"text-sm text-system-gray-90 leading-regular\" data-test-id=\"pymk-hero_subheader\" style=\"margin: 0; font-weight: 500; font-size: 14px; line-height: 1.25; color: #282828;\"> Request to connect with members you know and trust </h4> </td> </tr> <tr> <td class=\"pt-[10px]\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 10px;\"> <a href=\"https://www.linkedin.com/comm/in/angelicaconnor?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1Ds7EQZQCN6rY1&amp;trk=eml-email_pymk_02-pymk_hero-0-profile_image&amp;trkEmail=eml-email_pymk_02-pymk_hero-0-profile_image-null-poh2nf~mfn9jwqe~3g-null-null&amp;eid=poh2nf-mfn9jwqe-3g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjQ4OGNlZDE0NDlkYWE4NjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZmNmZmE2MGZkZGNjMDJjYWJkOGVhYzI1MTMwMTU3MDE1YmVmMTJmYjRiNmU4ZTYsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px]\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQGOOVHRhAh72Q/profile-displayphoto-shrink_400_400/B4EZSzZRj5HcAg-/0/1738176535151?e=2147483647&amp;v=beta&amp;t=0_Xf7QVhvRk8Unx9yFAHJ1HlX-mpbZ3khPzzt84l1D0\" alt=\"Angelica Connor’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </a> </td> </tr> <tr> <td class=\"pt-[10px]\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 10px;\"> <a href=\"https://www.linkedin.com/comm/in/angelicaconnor?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1Ds7EQZQCN6rY1&amp;trk=eml-email_pymk_02-pymk_hero-0-profile_name_link&amp;trkEmail=eml-email_pymk_02-pymk_hero-0-profile_name_link-null-poh2nf~mfn9jwqe~3g-null-null&amp;eid=poh2nf-mfn9jwqe-3g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjQ4OGNlZDE0NDlkYWE4NjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZmNmZmE2MGZkZGNjMDJjYWJkOGVhYzI1MTMwMTU3MDE1YmVmMTJmYjRiNmU4ZTYsMSwx\" target=\"_blank\" class=\"text-system-gray-90\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #282828;\"> <h2 class=\"text-lg font-semibold leading-regular\" style=\"margin: 0; font-size: 20px; font-weight: 600; line-height: 1.25;\"> Angelica Connor </h2> </a> </td> </tr> <tr> <td class=\"text-xs text-system-gray-90 leading-regular pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px; font-size: 12px; line-height: 1.25; color: #282828;\"> Chief Executive Officer at Stansell Construction | WBE </td> </tr> <tr> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/angelicaconnor/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midSig=1Ds7EQZQCN6rY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A617056094-null-poh2nf%7Emfn9jwqe%7E3g-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A617056094&amp;_sig=2Sbvn_XpuN6rY1\" target=\"_blank\" aria-label=\"Connect\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid w-[100vw] max-w-[400px]\" data-test-id=\"pymk-hero_default-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; width: 100vw; max-width: 400px; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/angelicaconnor/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midSig=1Ds7EQZQCN6rY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A617056094-null-poh2nf%7Emfn9jwqe%7E3g-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A617056094&amp;_sig=2Sbvn_XpuN6rY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"pymk-section-header\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <h2 class=\"text-lg font-semibold leading-regular text-system-gray-90 text-center\" style=\"margin: 0; text-align: center; font-size: 20px; font-weight: 600; line-height: 1.25; color: #282828;\"> More people you may know </h2> </td> </tr> <tr data-test-id=\"pymk-section-body\"> <td align=\"center\" class=\"pt-1.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"></td> <td class=\"pr-1 w-[400px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 400px; padding-right: 8px;\" width=\"400\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"w-1/2 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/alyssa-steele-4139182?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1Ds7EQZQCN6rY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mfn9jwqe~3g-null-null&amp;eid=poh2nf-mfn9jwqe-3g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjQ4OGNlZDE0NDlkYWE4NjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZmNmZmE2MGZkZGNjMDJjYWJkOGVhYzI1MTMwMTU3MDE1YmVmMTJmYjRiNmU4ZTYsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQEXsqM9agVUgw/profile-displayphoto-scale_400_400/B4EZi1m9pZGwAg-/0/1755393547539?e=2147483647&amp;v=beta&amp;t=uzsqhAw_A4c0yBqZFsK8BcM0TyiFYSkzIYMlFfyGoJ8\" alt=\"Alyssa Steele’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Alyssa Steele </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Board Director, Chief Executive… </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/alyssa-steele-4139182/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midSig=1Ds7EQZQCN6rY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A8246607-null-poh2nf%7Emfn9jwqe%7E3g-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A8246607&amp;_sig=2KtAe0_p6N6rY1\" target=\"_blank\" aria-label=\"Connect with Alyssa Steele\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/alyssa-steele-4139182/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midSig=1Ds7EQZQCN6rY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A8246607-null-poh2nf%7Emfn9jwqe%7E3g-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A8246607&amp;_sig=2KtAe0_p6N6rY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"w-1/2 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/jimwalker?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1Ds7EQZQCN6rY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mfn9jwqe~3g-null-null&amp;eid=poh2nf-mfn9jwqe-3g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjQ4OGNlZDE0NDlkYWE4NjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZmNmZmE2MGZkZGNjMDJjYWJkOGVhYzI1MTMwMTU3MDE1YmVmMTJmYjRiNmU4ZTYsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/C4E03AQHtdUX7vWFR9Q/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1555349972547?e=2147483647&amp;v=beta&amp;t=C0emFT3FGwZxsMCLmc2fKWNrE9EI2GBYmGy-AC4iHTM\" alt=\"James Walker, CISSP’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> James Walker, CISSP </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer at CloudHesive </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/jimwalker/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midSig=1Ds7EQZQCN6rY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A4773134-null-poh2nf%7Emfn9jwqe%7E3g-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A4773134&amp;_sig=2Y0pLR8XGN6rY1\" target=\"_blank\" aria-label=\"Connect with James Walker, CISSP\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/jimwalker/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midSig=1Ds7EQZQCN6rY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A4773134-null-poh2nf%7Emfn9jwqe%7E3g-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A4773134&amp;_sig=2Y0pLR8XGN6rY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/nick-mehall?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1Ds7EQZQCN6rY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mfn9jwqe~3g-null-null&amp;eid=poh2nf-mfn9jwqe-3g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjQ4OGNlZDE0NDlkYWE4NjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZmNmZmE2MGZkZGNjMDJjYWJkOGVhYzI1MTMwMTU3MDE1YmVmMTJmYjRiNmU4ZTYsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQEZehGX7tzgGw/profile-displayphoto-shrink_400_400/B4EZXsZwvxHcAg-/0/1743427931475?e=2147483647&amp;v=beta&amp;t=I4censGTfLfOrPN0xloV-qZDKJjSvsKgDnwKarpmw-A\" alt=\"Nick Mehall’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Nick Mehall </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer | Chief… </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/nick-mehall/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midSig=1Ds7EQZQCN6rY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A168772231-null-poh2nf%7Emfn9jwqe%7E3g-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A168772231&amp;_sig=3AGF9vAQqN6rY1\" target=\"_blank\" aria-label=\"Connect with Nick Mehall\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/nick-mehall/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midSig=1Ds7EQZQCN6rY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A168772231-null-poh2nf%7Emfn9jwqe%7E3g-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A168772231&amp;_sig=3AGF9vAQqN6rY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/kevin-combs-50a89b2?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1Ds7EQZQCN6rY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mfn9jwqe~3g-null-null&amp;eid=poh2nf-mfn9jwqe-3g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjQ4OGNlZDE0NDlkYWE4NjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZmNmZmE2MGZkZGNjMDJjYWJkOGVhYzI1MTMwMTU3MDE1YmVmMTJmYjRiNmU4ZTYsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/C4D03AQFVuUIwosbDGA/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1597725198916?e=2147483647&amp;v=beta&amp;t=M175r7HRz5Ib-O5sda840eb-1GNYmsMOrqeIzAyGzmI\" alt=\"Kevin Combs’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Kevin Combs </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer at PS Fertility… </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/kevin-combs-50a89b2/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midSig=1Ds7EQZQCN6rY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A8168986-null-poh2nf%7Emfn9jwqe%7E3g-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A8168986&amp;_sig=1wK1mDW3iN6rY1\" target=\"_blank\" aria-label=\"Connect with Kevin Combs\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/kevin-combs-50a89b2/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midSig=1Ds7EQZQCN6rY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A8168986-null-poh2nf%7Emfn9jwqe%7E3g-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A8168986&amp;_sig=1wK1mDW3iN6rY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/williamdiaz?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1Ds7EQZQCN6rY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mfn9jwqe~3g-null-null&amp;eid=poh2nf-mfn9jwqe-3g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjQ4OGNlZDE0NDlkYWE4NjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZmNmZmE2MGZkZGNjMDJjYWJkOGVhYzI1MTMwMTU3MDE1YmVmMTJmYjRiNmU4ZTYsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/C4E03AQENE1C2-yPr9Q/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1517712822159?e=2147483647&amp;v=beta&amp;t=0apP4SiSxF7bJx3nF9HL01HjF6jtpKwUUolBxyOo3V4\" alt=\"Bill Diaz’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Bill Diaz </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer, Archer </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/williamdiaz/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midSig=1Ds7EQZQCN6rY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A14396419-null-poh2nf%7Emfn9jwqe%7E3g-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A14396419&amp;_sig=0bXbcwPLKN6rY1\" target=\"_blank\" aria-label=\"Connect with Bill Diaz\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/williamdiaz/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midSig=1Ds7EQZQCN6rY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A14396419-null-poh2nf%7Emfn9jwqe%7E3g-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A14396419&amp;_sig=0bXbcwPLKN6rY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/ralph-cuti%C3%A9-ba3226a3?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1Ds7EQZQCN6rY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mfn9jwqe~3g-null-null&amp;eid=poh2nf-mfn9jwqe-3g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjQ4OGNlZDE0NDlkYWE4NjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZmNmZmE2MGZkZGNjMDJjYWJkOGVhYzI1MTMwMTU3MDE1YmVmMTJmYjRiNmU4ZTYsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/C5603AQGrQZbtmsa2QA/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1626354798814?e=2147483647&amp;v=beta&amp;t=oHtbuoe7ohYjiuZZtUy_C1lMe8fs1WSzzjLnNISSXzs\" alt=\"Ralph Cutié’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Ralph Cutié </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Director and Chief Executive Officer </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/ralph-cuti%C3%A9-ba3226a3/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midSig=1Ds7EQZQCN6rY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A367827243-null-poh2nf%7Emfn9jwqe%7E3g-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A367827243&amp;_sig=1EO10x9DeN6rY1\" target=\"_blank\" aria-label=\"Connect with Ralph Cutié\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/ralph-cuti%C3%A9-ba3226a3/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midSig=1Ds7EQZQCN6rY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A367827243-null-poh2nf%7Emfn9jwqe%7E3g-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A367827243&amp;_sig=1EO10x9DeN6rY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"></td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 px-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button px-3\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/add-connections/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1Ds7EQZQCN6rY1&amp;trk=eml-email_pymk_02-see_more-0-cta&amp;trkEmail=eml-email_pymk_02-see_more-0-cta-null-poh2nf~mfn9jwqe~3g-null-null&amp;eid=poh2nf-mfn9jwqe-3g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjQ4OGNlZDE0NDlkYWE4NjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZmNmZmE2MGZkZGNjMDJjYWJkOGVhYzI1MTMwMTU3MDE1YmVmMTJmYjRiNmU4ZTYsMSwx\" target=\"_blank\" aria-label=\"See more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/add-connections/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1Ds7EQZQCN6rY1&amp;trk=eml-email_pymk_02-see_more-0-cta&amp;trkEmail=eml-email_pymk_02-see_more-0-cta-null-poh2nf~mfn9jwqe~3g-null-null&amp;eid=poh2nf-mfn9jwqe-3g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjQ4OGNlZDE0NDlkYWE4NjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZmNmZmE2MGZkZGNjMDJjYWJkOGVhYzI1MTMwMTU3MDE1YmVmMTJmYjRiNmU4ZTYsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> See more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-lg text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 20px; color: #114951;\"> Get the new LinkedIn desktop app </h2> </td> </tr> <tr> <td class=\"text-center pb-2\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <a href=\"https://apps.microsoft.com/store/detail/9WZDNCRFJ4Q7?launch=true&amp;cid=linkedin_email_upsell&amp;mode=full\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it from Microsoft\" src=\"https://static.licdn.com/aero-v1/sc/h/ejpkkpwvqks31a3cjqokb7fbm\" class=\"h-[40px] w-[112px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 112px;\" width=\"112\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-md text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 16px; color: #114951;\"> Also available on mobile </h2> </td> </tr> <tr> <td class=\"text-center\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <a href=\"https://itunes.apple.com/us/app/linkedin/id288429040?pt=10746&amp;ct=st_appsite_flagship&amp;mt=8\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Download on the App Store\" src=\"https://static.licdn.com/aero-v1/sc/h/76yzkd0h5kiv27lrd4yaenylk\" class=\"h-[40px] w-[120px] pr-1\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 120px; padding-right: 8px;\" width=\"120\" height=\"40\"> </a> <a href=\"https://play.google.com/store/apps/details?id=com.linkedin.android&amp;referrer=st_appsite_flagship\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it on Google Play\" src=\"https://static.licdn.com/aero-v1/sc/h/142qudwblp58zwmc9vkqfplug\" class=\"h-[40px] w-[134px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 134px;\" width=\"134\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px;\"><hr class=\"border-none bg-[#e0dfdd] h-[1px]\" style=\"height: 1px; border-style: none; background-color: #e0dfdd;\"></td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" data-test-id=\"email-footer__intended\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1Ds7EQZQCN6rY1&amp;trk=eml-email_pymk_02-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_pymk_02-SecurityHelp-0-footerglimmer-null-poh2nf~mfn9jwqe~3g-null-null&amp;eid=poh2nf-mfn9jwqe-3g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjQ4OGNlZDE0NDlkYWE4NjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZmNmZmE2MGZkZGNjMDJjYWJkOGVhYzI1MTMwMTU3MDE1YmVmMTJmYjRiNmU4ZTYsMSwx\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving People You May Know notification emails.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1Ds7EQZQCN6rY1&amp;trk=eml-email_pymk_02-unsubscribe-0-footerGlimmer&amp;trkEmail=eml-email_pymk_02-unsubscribe-0-footerGlimmer-null-poh2nf~mfn9jwqe~3g-null-null&amp;eid=poh2nf-mfn9jwqe-3g&amp;loid=AQEwhDC_Sf9tLgAAAZlVJaTsk3zdVHrBQyJwY6OpwgeAyXPL-T44TLilkAxxk9HYFN29iJPzjjdLsY3qNA_jt-2oMBIIhq1fdfMy\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Unsubscribe</a>   ·   <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1Ds7EQZQCN6rY1&amp;trk=eml-email_pymk_02-help-0-footerglimmer&amp;trkEmail=eml-email_pymk_02-help-0-footerglimmer-null-poh2nf~mfn9jwqe~3g-null-null&amp;eid=poh2nf-mfn9jwqe-3g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjQ4OGNlZDE0NDlkYWE4NjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZmNmZmE2MGZkZGNjMDJjYWJkOGVhYzI1MTMwMTU3MDE1YmVmMTJmYjRiNmU4ZTYsMSwx\" target=\"_blank\" data-test-help-link class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1Ds7EQZQCN6rY1&amp;trk=eml-email_pymk_02-footer-0-logoGlimmer&amp;trkEmail=eml-email_pymk_02-footer-0-logoGlimmer-null-poh2nf~mfn9jwqe~3g-null-null&amp;eid=poh2nf-mfn9jwqe-3g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjQ4OGNlZDE0NDlkYWE4NjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZmNmZmE2MGZkZGNjMDJjYWJkOGVhYzI1MTMwMTU3MDE1YmVmMTJmYjRiNmU4ZTYsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/aero-v1/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFtYmpscWQzRmxMVE5uOlpXMWhhV3hmY0hsdGExOHdNZz09Og==.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','Do you know Angelica Connor?\r\n\r\nYes, connect: https://www.linkedin.com/comm/mynetwork/send-invite/angelicaconnor/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&midSig=1Ds7EQZQCN6rY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A617056094-null-poh2nf%7Emfn9jwqe%7E3g-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A617056094&_sig=2Sbvn_XpuN6rY1\r\n\r\n\r\nMore people you may know\r\n            \r\n    Alyssa Steele\r\nBoard Director, Chief Executive Officer, Commercial Leader\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/alyssa-steele-4139182/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&midSig=1Ds7EQZQCN6rY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A8246607-null-poh2nf%7Emfn9jwqe%7E3g-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A8246607&_sig=2KtAe0_p6N6rY1\r\n            \r\n    James Walker, CISSP\r\nChief Executive Officer at CloudHesive\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/jimwalker/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&midSig=1Ds7EQZQCN6rY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A4773134-null-poh2nf%7Emfn9jwqe%7E3g-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A4773134&_sig=2Y0pLR8XGN6rY1\r\n            \r\n    Nick Mehall\r\nChief Executive Officer | Chief Financial Officer | Consumer Products | Distribution\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/nick-mehall/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&midSig=1Ds7EQZQCN6rY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A168772231-null-poh2nf%7Emfn9jwqe%7E3g-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A168772231&_sig=3AGF9vAQqN6rY1\r\n            \r\n    Kevin Combs\r\nChief Executive Officer at PS Fertility Inc\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/kevin-combs-50a89b2/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&midSig=1Ds7EQZQCN6rY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A8168986-null-poh2nf%7Emfn9jwqe%7E3g-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A8168986&_sig=1wK1mDW3iN6rY1\r\n            \r\n    Bill Diaz\r\nChief Executive Officer, Archer\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/williamdiaz/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&midSig=1Ds7EQZQCN6rY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A14396419-null-poh2nf%7Emfn9jwqe%7E3g-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A14396419&_sig=0bXbcwPLKN6rY1\r\n\r\nSee more people you might know:https://www.linkedin.com/comm/mynetwork/add-connections/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&midToken=AQE-iPshthTClw&midSig=1Ds7EQZQCN6rY1&trk=eml-email_pymk_02-see_more-0-cta~text&trkEmail=eml-email_pymk_02-see_more-0-cta~text-null-poh2nf~mfn9jwqe~3g-null-null&eid=poh2nf-mfn9jwqe-3g&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjQ4OGNlZDE0NDlkYWE4NjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZmNmZmE2MGZkZGNjMDJjYWJkOGVhYzI1MTMwMTU3MDE1YmVmMTJmYjRiNmU4ZTYsMSwx\r\n      \r\n\r\n----------------------------------------\r\n\r\nThis email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\nLearn why we included this: https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&midToken=AQE-iPshthTClw&midSig=1Ds7EQZQCN6rY1&trk=eml-email_pymk_02-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_pymk_02-SecurityHelp-0-textfooterglimmer-null-poh2nf~mfn9jwqe~3g-null-null&eid=poh2nf-mfn9jwqe-3g&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjQ4OGNlZDE0NDlkYWE4NjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZmNmZmE2MGZkZGNjMDJjYWJkOGVhYzI1MTMwMTU3MDE1YmVmMTJmYjRiNmU4ZTYsMSwx\r\nYou are receiving People You May Know notification emails.\r\n\r\n\r\nUnsubscribe: https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&midToken=AQE-iPshthTClw&midSig=1Ds7EQZQCN6rY1&trk=eml-email_pymk_02-unsubscribe-0-textfooterglimmer&trkEmail=eml-email_pymk_02-unsubscribe-0-textfooterglimmer-null-poh2nf~mfn9jwqe~3g-null-null&eid=poh2nf-mfn9jwqe-3g&loid=AQEwhDC_Sf9tLgAAAZlVJaTsk3zdVHrBQyJwY6OpwgeAyXPL-T44TLilkAxxk9HYFN29iJPzjjdLsY3qNA_jt-2oMBIIhq1fdfMy\r\nHelp: https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B1im1IE7tRLWwAbTK33gT3Q%3D%3D&midToken=AQE-iPshthTClw&midSig=1Ds7EQZQCN6rY1&trk=eml-email_pymk_02-help-0-textfooterglimmer&trkEmail=eml-email_pymk_02-help-0-textfooterglimmer-null-poh2nf~mfn9jwqe~3g-null-null&eid=poh2nf-mfn9jwqe-3g&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjQ4OGNlZDE0NDlkYWE4NjZlN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZmNmZmE2MGZkZGNjMDJjYWJkOGVhYzI1MTMwMTU3MDE1YmVmMTJmYjRiNmU4ZTYsMSwx\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.\r\nLinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',0,0,0,0,0,0,'2025-09-17 00:49:15','2025-12-09 19:28:30','2025-12-09 19:28:30','2025-12-09 19:28:30',NULL,NULL,NULL),
(735,4,'<CAJO9__aa5s5ZiiRCck07uRkyMVhXxyp3rJVZOvdtie4=jio7Dg@mail.gmail.com>',NULL,NULL,'Next Steps - Forge Nano & Lithium Battery Co Collaboration','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Gentlemen,</div><div><br></div><div>It was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I&#39;ve outlined the key action items below:</div><div><br></div><div><ul><li>James to send the cell specification sheets as soon as possible.</li><li>LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.</li><li>James to send their term sheet template for throughput contracts.</li><li>We should discuss 301 exclusion support for manufacturing equipment.</li></ul></div><div><br></div><div>I look forward to our next conversation. </div><div><br></div><div>Best,</div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div></div>','Gentlemen,\r\n\r\nIt was a pleasure connecting with you yesterday. I am very excited about\r\nthe potential for a partnership between our companies. To maintain the\r\nmomentum from our discussion, I\'ve outlined the key action items below:\r\n\r\n\r\n   - James to send the cell specification sheets as soon as possible.\r\n   - LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for\r\n   benchmarking purposes.\r\n   - James to send their term sheet template for throughput contracts.\r\n   - We should discuss 301 exclusion support for manufacturing equipment.\r\n\r\n\r\nI look forward to our next conversation.\r\n\r\nBest,\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>',0,0,0,0,0,0,'2025-09-17 13:56:33','2025-12-09 19:28:31','2025-12-09 19:28:31','2025-12-09 19:28:31',NULL,NULL,NULL),
(736,4,'<6daaaed7eb94b8fa9e74ee0a51dcbeea@mavrix.one>',NULL,NULL,'Cell Information Benchmarking for Forge Nano','jordan@mavrix.one','jordan@mavrix.one','<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" /></head><body style=\'font-size: 10pt; font-family: Verdana,Geneva,sans-serif\'>\r\n<div class=\"pre\" style=\"margin: 0; padding: 0; font-family: monospace\"><br />Good morning team,</div>\r\n<div class=\"pre\" style=\"margin: 0; padding: 0; font-family: monospace\">&nbsp;</div>\r\n<div class=\"pre\" style=\"margin: 0; padding: 0; font-family: monospace\">Could you share with me any information on cells and quantities that we would be using in our drones for benchmarking purposes for Forge Nano? As per our conversation, a C rating would be helpful to provide.&nbsp; We are compiling a list internally on what we have produced in the past.&nbsp;&nbsp;</div>\r\n<div class=\"pre\" style=\"margin: 0; padding: 0; font-family: monospace\">&nbsp;</div>\r\n<div class=\"pre\" style=\"margin: 0; padding: 0; font-family: monospace\">Thank you,&nbsp;</div>\r\n<div class=\"pre\" style=\"margin: 0; padding: 0; font-family: monospace\"><br />\r\n<div id=\"signature\">-- <br />\r\n<div><span style=\"font-family: Helvetica, Arial;\">Jordan Wroblewski</span>\r\n<div style=\"font-family: Helvetica, Arial;\">VP, Business Development</div>\r\n<div style=\"font-family: Helvetica, Arial;\"><img class=\"v1imgAttach\" src=\"cid:cfb52ec99425c7b39e6e4fef81d8aac3@mavrix.one\" /></div>\r\n<div style=\"font-family: Helvetica, Arial;\"><a style=\"color: #00acff; background-color: transparent;\" href=\"http://mavrix1.com/\" rel=\"noopener noreferrer\">mavrix1.com</a></div>\r\n</div>\r\n<div>&nbsp;</div>\r\n</div>\r\n</div>\r\n</body></html>','Good morning team,\r\n\r\nCould you share with me any information on cells and quantities that we \r\nwould be using in our drones for benchmarking purposes for Forge Nano? \r\nAs per our conversation, a C rating would be helpful to provide.  We are \r\ncompiling a list internally on what we have produced in the past.\r\n\r\nThank you,\r\n\r\n-- \r\nJordan Wroblewski\r\nVP, Business Development\r\n\r\nmavrix1.com [1]\r\n\r\n\r\nLinks:\r\n------\r\n[1] http://mavrix1.com/',0,0,0,0,0,0,'2025-09-17 15:02:11','2025-12-09 19:28:31','2025-12-09 19:28:31','2025-12-09 19:28:31',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(737,4,'<0100019958ef6e88-c7dff428-7c6d-492b-a31f-e13bdf8e07cb-000000@email.amazonses.com>',NULL,NULL,'Discover Hispanic-owned businesses','no-reply@business.amazon.com','Amazon Business','<!doctype html>\r\n<html lang=\"en-US\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\">\r\n <head>\r\n  <title>Discover Hispanic-owned businesses</title><!--[if !mso]><!-- -->\r\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><!--<![endif]-->\r\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\r\n  <style type=\"text/css\">#outlook a { padding:0; }           body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block; }</style><!--[if mso]>                    <xml>                      <o:OfficeDocumentSettings xmlns:o=\"urn:schemas-microsoft-com:office:office\">                    <o:AllowPNG/>                          <o:PixelsPerInch>96</o:PixelsPerInch>                      </o:OfficeDocumentSettings>                   <w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\">               <w:DontUseAdvancedTypographyReadingMail/>             </w:WordDocument>                  </xml>                        <style type=\"text/css\">             table { border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt; }             .mj-outlook-group-fix { width:100% !important; }           </style>                  <![endif]--><!--[if !mso]><!-->\r\n  <link href=\"https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <link href=\"https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <style type=\"text/css\">@import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);</style><!--<![endif]-->\r\n  <style type=\"text/css\">@media only screen and (min-width:641px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-52 { width:52% !important; max-width: 52%; } .mj-column-per-48 { width:48% !important; max-width: 48%; } .mj-column-per-35 { width:35% !important; max-width: 35%; } .mj-column-per-65 { width:65% !important; max-width: 65%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }</style>\r\n  <style type=\"text/css\">.links-FFFFFF-underline-bold a { color: #FFFFFF; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .mso-button-dark-mode a {background: transparent !important;} .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .links-161D26 a { color: #161D26; text-decoration: none; } .links-161D26-bold a { color: #161D26; text-decoration: none; font-weight: bold; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:641px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-154px { max-width: 154px !important} .padding-5px-24px-24px-40px { padding: 5px 24px 24px 40px !important} .padding-0px-32px-0px-0px { padding: 0px 32px 0px 0px !important} .font-size-32px { font-size: 32px !important} .padding-30px-0px-20px-0px { padding: 30px 0px 20px 0px !important} .padding-0px-40px-0px-0px { padding: 0px 40px 0px 0px !important} .max-width-257px { max-width: 257px !important} .padding-0px-40px-0px-40px { padding: 0px 40px 0px 40px !important} .height-20px { height: 20px !important} .line-height-20px { line-height: 20px !important} .padding-0px-40px-20px-40px { padding: 0px 40px 20px 40px !important} .font-size-20px { font-size: 20px !important} .padding-0px-40px-10px-40px { padding: 0px 40px 10px 40px !important} .padding-0px-10px-0px-16px { padding: 0px 10px 0px 16px !important} .padding-8px-0px-0px-0px { padding: 8px 0px 0px 0px !important} .padding-4px-40px-10px-40px { padding: 4px 40px 10px 40px !important} .padding-20px-40px-0px-40px { padding: 20px 40px 0px 40px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }</style>\r\n  <style type=\"text/css\">ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 641px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}</style><!--[if mso]>             <style>                 .hide-on-mobile {display:block !important}             </style>         <![endif]--><!--[if mso]>                 <style>                              .mso-font-size-32px { font-size: 32px !important; } .mso-font-size-20px { font-size: 20px !important; }                 </style>             <![endif]-->\r\n  <style>[class~=\"x_body\"] { width: 99.9% }</style>\r\n </head>\r\n <body style=\"word-spacing:normal;background-color:#FFFFFF;\" class=\"body\" id=\"body\">\r\n  <div>\r\n   <p><img alt=\"\" src=\"http://elinks.business.amazon.com/CI0/0100019958ef6e88-c7dff428-7c6d-492b-a31f-e13bdf8e07cb-000000/5almV47pvIIqnz4dMH48GESWdGISKNySyvetnOV2neU=423\" style=\"display: none; width: 1px; height: 1px;\">\r\n</p>\r\n  </div><!--[if !mso 9]><!-->\r\n  <div id=\"emailPreHeader\" style=\"display: none;\">\r\n   Celebrate small and diverse sellers﻿.\r\n  </div>\r\n  <div style=\"display: none;\">\r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  </div><!--<![endif]-->\r\n  <div style=\"background-color:#FFFFFF;background-position:center center;background-size:auto;background-repeat:repeat;\" id=\"main\">\r\n   <!--[if mso]>\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><![endif]--><!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:600px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:16px 16px 14px 16px;text-align:center;vertical-align:top;mso-padding-alt:14px 0px 14px 40px;\" class=\"block-grid padding-14px-0px-14px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n              <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:middle;width:280px;\" ><![endif]-->\r\n              <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n               <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n                <tbody>\r\n                 <tr>\r\n                  <td class=\"padding-0px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 0px 0px;word-break:break-word;mso-padding-alt:0px 0px 0px 0px;text-align:left;\">\r\n                   <div style=\"margin:0 auto 0 0;max-width:80%;\" class=\"max-width-154px\">\r\n                    <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%3Fref_=b2b_sow_e_events_sg_ABHHM25_250917/1/0100019958ef6e88-c7dff428-7c6d-492b-a31f-e13bdf8e07cb-000000/WD0GqfeyEfLnX7D7ysHj_0tcteYiz-uj2OUWItypwY8=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business\" height=\"auto\" width=\"154\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-2color2x.png\" style=\"border:none;border-radius:0px;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                   </div></td>\r\n                 </tr>\r\n                </tbody>\r\n               </table>\r\n              </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:middle;width:280px;\" ><![endif]-->\r\n              <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n               <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n                <tbody>\r\n                 <tr>\r\n                  <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                   <div style=\"line-height:0px;height:0px;mso-line-height-alt:0px;\">\r\n                    &nbsp;\r\n                   </div></td>\r\n                 </tr>\r\n                </tbody>\r\n               </table>\r\n              </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:600px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:32px 16px 24px 16px;text-align:center;vertical-align:top;mso-padding-alt:5px 24px 24px 40px;\" class=\"block-grid padding-5px-24px-24px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:278.72px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-52 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td style=\"border-radius:0px;vertical-align:top;padding:0px 0px 20px 0px;mso-padding-alt:0px 32px 0px 0px;\" class=\"padding-0px-32px-0px-0px\">\r\n                  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                   <tbody>\r\n                    <tr>\r\n                     <td class=\"padding-30px-0px-20px-0px text-container\" style=\"font-size:0px;padding:32px 0px 20px 0px;word-break:break-word;mso-padding-alt:30px 0px 20px 0px;text-align:left;\">\r\n                      <div class=\"links-FFFFFF-underline-bold\">\r\n                       <div style=\"font-family:\'Ember Modern Display\', Arial, sans-serif;font-size:28px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:2.375em;color:#161D26;\" class=\"mso-font-size-32px font-size-32px\">\r\n                        <p style=\"margin: 0;\">Celebrate Hispanic Heritage Month</p>\r\n                       </div>\r\n                      </div></td>\r\n                    </tr>\r\n                    <tr>\r\n                     <td valign=\"middle\" class=\"padding-0px-40px-0px-0px button-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;mso-padding-alt:0px 40px 0px 0px;text-align:left;\">\r\n                      <div>\r\n                       <!--[if mso]>\r\n<table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\">\r\n<tr>\r\n<td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_sg_ABHHM25_250917%26return_to=%2Fl%2F118581420011/1/0100019958ef6e88-c7dff428-7c6d-492b-a31f-e13bdf8e07cb-000000/zTMga-kYyRZ7XA3fgGDP0TfBG1lH8qcfCy_-iiyW9aY=423\" fillcolor=\"#FFD814\" arcsize=\"58%\" style=\"v-text-anchor:middle;width:90pt;height:32.25pt;\" stroke=\"f\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_sg_ABHHM25_250917%26return_to=%2Fl%2F118581420011/1/0100019958ef6e88-c7dff428-7c6d-492b-a31f-e13bdf8e07cb-000000/zTMga-kYyRZ7XA3fgGDP0TfBG1lH8qcfCy_-iiyW9aY=423\" style=\"display: inline-block; background: #FFD814; color: #161D26; font-family: \'Amber Ember\', Arial, sans-serif; font-size: 16px; font-weight: normal; line-height: 1.2; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 12px 24px 12px 24px; mso-padding-alt: 0px; border-radius: 25px; border-left: 0 none #FFFFFF; border-right: 0 none #FFFFFF; border-top: 0 none #FFFFFF; border-bottom: 0 none #FFFFFF; mso-border-alt: none; box-sizing: border-box;\" target=\"_blank\" width=\"120\">Shop now </a><!--[if mso]></center></a:textbox></a:roundrect>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                      </div></td>\r\n                    </tr>\r\n                   </tbody>\r\n                  </table></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:257.28px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-48 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\">\r\n                  <div style=\"margin:0 auto;\" class=\"max-width-257px\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_sg_ABHHM25_250917%26return_to=%2Fl%2F118581420011/2/0100019958ef6e88-c7dff428-7c6d-492b-a31f-e13bdf8e07cb-000000/5B-P-Oc1vceM_UxGQD7Gq5vUusvjbktP8fmmt0bRyhI=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Hispanic heritage month\" height=\"auto\" width=\"257\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/SocialGoodEvents/HHM25/EMAIL/US-EN_AB_HHM25_P1_108_Email_Banner_Small_686x444.jpg\" style=\"border:none;border-radius:16px;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:600px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;mso-padding-alt:0px 0px 0px 0px;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:600px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                 <div style=\"line-height:12px;height:12px;mso-line-height-alt:12px;\">\r\n                  &nbsp;\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:600px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:0px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:0px 40px 0px 40px;\" class=\"block-grid padding-0px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:520px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                  <div class=\"links-007185-bold\">\r\n                   <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:normal;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.375em;color:#222D3A;\">\r\n                    <p style=\"margin: 0 0 0px 0;\">Amazon Business makes it simple to <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Fen%2Fsolutions%2Fresponsible-purchasing%2Fsupplier-diversity%3Fref_=b2b_sow_e_events_sg_ABHHM25_250917/1/0100019958ef6e88-c7dff428-7c6d-492b-a31f-e13bdf8e07cb-000000/uNN2-fq8F5IpoVRdpEGulAHlhpgWmoKw39F6L9dv5dY=423\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(0, 113, 133); text-decoration: none; font-weight: 700;\">diversify your supply chain </a>with business supplies from credentialed small and diverse sellers. Shop from our featured Hispanic-owned businesses, such as South Gate Pack N Ship, Gulf Coast Avionics, and Cymbal Communications. Find small and diverse sellers by looking for seller credentials beneath the \"add to cart\" button.&nbsp;</p>\r\n                   </div>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:600px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;mso-padding-alt:0px 0px 0px 0px;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:600px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                 <div style=\"line-height:30px;height:30px;mso-line-height-alt:30px;\">\r\n                  &nbsp;\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:600px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:600px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                 <div style=\"line-height:24px;height:24px;mso-line-height-alt:20px;\" class=\"height-20px line-height-20px\">\r\n                  &nbsp;\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:600px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:0px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:0px 40px 20px 40px;\" class=\"block-grid padding-0px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:520px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                  <div class=\"links-161D26\">\r\n                   <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                    <p style=\"margin: 0;\">Featured entrepreneurs&nbsp;</p>\r\n                   </div>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:600px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:0px 16px 10px 16px;text-align:center;vertical-align:top;mso-padding-alt:0px 40px 10px 40px;\" class=\"block-grid padding-0px-40px-10px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:520px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n              <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:182px;\" ><![endif]-->\r\n              <div class=\"mj-column-per-35 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:35%;\">\r\n               <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                <tbody>\r\n                 <tr>\r\n                  <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\">\r\n                   <div style=\"margin:0 auto;max-width:182px;\">\r\n                    <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_sg_ABHHM25_250917%26return_to=%2FSouthGatePackNShip/1/0100019958ef6e88-c7dff428-7c6d-492b-a31f-e13bdf8e07cb-000000/odAls6dfTD9ALg9keArgHjY6kIBu0DNyZGif9wlbJwA=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Cesar Carranza, Owner\" height=\"auto\" width=\"182\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/SocialGoodEvents/HHM25/Storefront/US-EN_AB_HHM25_P1_148_SF_Carousel_Tile_400x267.png\" style=\"border:none;border-radius:0px;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                   </div></td>\r\n                 </tr>\r\n                </tbody>\r\n               </table>\r\n              </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:middle;width:338px;\" ><![endif]-->\r\n              <div class=\"mj-column-per-65 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:65%;\">\r\n               <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                <tbody>\r\n                 <tr>\r\n                  <td style=\"border-radius:0px;vertical-align:middle;padding:0px 0px 0px 16px;mso-padding-alt:0px 10px 0px 16px;\" class=\"padding-0px-10px-0px-16px\">\r\n                   <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                    <tbody>\r\n                     <tr>\r\n                      <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                       <div class=\"links-161D26-bold\">\r\n                        <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.75em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                         <p style=\"margin: 0;\">South Gate Pack N Ship</p>\r\n                        </div>\r\n                       </div></td>\r\n                     </tr>\r\n                     <tr>\r\n                      <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                       <div class=\"links-007185-bold\">\r\n                        <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:13px;font-weight:normal;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.125em;color:#222D3A;\">\r\n                         <p style=\"margin: 0;\">\"The seller certification program and Fulfillment by Amazon have enabled our small retail business to reach customers nationwide.\"</p>\r\n                         <p style=\"margin: 0;\">Cesar Carranza, Owner</p>\r\n                        </div>\r\n                       </div></td>\r\n                     </tr>\r\n                     <tr>\r\n                      <td class=\"padding-8px-0px-0px-0px text-container\" style=\"font-size:0px;padding:4px 0px 0px 0px;word-break:break-word;mso-padding-alt:8px 0px 0px 0px;text-align:left;\">\r\n                       <div class=\"links-007185-bold\">\r\n                        <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:normal;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.375em;color:#222D3A;\">\r\n                         <p style=\"margin: 0;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_sg_ABHHM25_250917%26return_to=%2FSouthGatePackNShip/2/0100019958ef6e88-c7dff428-7c6d-492b-a31f-e13bdf8e07cb-000000/bCjS40RJ7O-9Yg3eVs355jNqIr3jR0hwR77DOFbaXHc=423\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(0, 113, 133); text-decoration: none; font-weight: 700;\">Shop Office supplies</a></p>\r\n                        </div>\r\n                       </div></td>\r\n                     </tr>\r\n                    </tbody>\r\n                   </table></td>\r\n                 </tr>\r\n                </tbody>\r\n               </table>\r\n              </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:600px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:4px 16px 10px 16px;text-align:center;vertical-align:top;mso-padding-alt:4px 40px 10px 40px;\" class=\"block-grid padding-4px-40px-10px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:520px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n              <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:182px;\" ><![endif]-->\r\n              <div class=\"mj-column-per-35 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:35%;\">\r\n               <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                <tbody>\r\n                 <tr>\r\n                  <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\">\r\n                   <div style=\"margin:0 auto;max-width:182px;\">\r\n                    <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_sg_ABHHM25_250917%26return_to=%2FGulfCoastAvionicsCorp/1/0100019958ef6e88-c7dff428-7c6d-492b-a31f-e13bdf8e07cb-000000/eo8b4Kidf9znH_vjj6FnTJtFKjuN9hEKP2oV1rKtHX0=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Eduardo Reed, Marketing &amp; E-Commerce Director\" height=\"auto\" width=\"182\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/SocialGoodEvents/HHM25/Storefront/US-EN_AB_HHM25_P1_147_SF_Carousel_Tile_400x267.png\" style=\"border:none;border-radius:0px;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                   </div></td>\r\n                 </tr>\r\n                </tbody>\r\n               </table>\r\n              </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:middle;width:338px;\" ><![endif]-->\r\n              <div class=\"mj-column-per-65 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:65%;\">\r\n               <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                <tbody>\r\n                 <tr>\r\n                  <td style=\"border-radius:0px;vertical-align:middle;padding:0px 0px 0px 16px;mso-padding-alt:0px 10px 0px 16px;\" class=\"padding-0px-10px-0px-16px\">\r\n                   <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                    <tbody>\r\n                     <tr>\r\n                      <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                       <div class=\"links-161D26-bold\">\r\n                        <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.75em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                         <p style=\"margin: 0;\">Gulf Coast Avionics Corp.</p>\r\n                        </div>\r\n                       </div></td>\r\n                     </tr>\r\n                     <tr>\r\n                      <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                       <div class=\"links-007185-bold\">\r\n                        <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:13px;font-weight:normal;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.125em;color:#222D3A;\">\r\n                         <p style=\"margin: 0;\">\"By using fulfillment through FBA, we\'re delivering our products quickly and efficiently, making them more accessible than ever.\"</p>\r\n                         <p style=\"margin: 0;\">Eduardo Reed, Marketing &amp; E-Commerce Director</p>\r\n                        </div>\r\n                       </div></td>\r\n                     </tr>\r\n                     <tr>\r\n                      <td class=\"padding-8px-0px-0px-0px text-container\" style=\"font-size:0px;padding:4px 0px 0px 0px;word-break:break-word;mso-padding-alt:8px 0px 0px 0px;text-align:left;\">\r\n                       <div class=\"links-007185-bold\">\r\n                        <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:normal;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.375em;color:#222D3A;\">\r\n                         <p style=\"margin: 0;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_sg_ABHHM25_250917%26return_to=%2FGulfCoastAvionicsCorp/2/0100019958ef6e88-c7dff428-7c6d-492b-a31f-e13bdf8e07cb-000000/LLwQsblKR_5Tryapq9PDiE6svykpYUWe-rfdXZkC2Vg=423\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(0, 113, 133); text-decoration: none; font-weight: 700;\">Shop Avionics equipment</a></p>\r\n                        </div>\r\n                       </div></td>\r\n                     </tr>\r\n                    </tbody>\r\n                   </table></td>\r\n                 </tr>\r\n                </tbody>\r\n               </table>\r\n              </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:600px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:4px 16px 10px 16px;text-align:center;vertical-align:top;mso-padding-alt:4px 40px 10px 40px;\" class=\"block-grid padding-4px-40px-10px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:520px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n              <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:182px;\" ><![endif]-->\r\n              <div class=\"mj-column-per-35 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:35%;\">\r\n               <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:transparent;border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                <tbody>\r\n                 <tr>\r\n                  <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\">\r\n                   <div style=\"margin:0 auto;max-width:182px;\">\r\n                    <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_sg_ABHHM25_250917%26return_to=%2FCymbalCommunications/1/0100019958ef6e88-c7dff428-7c6d-492b-a31f-e13bdf8e07cb-000000/9WOVetel7DrRuF9YxYqjDgY2s_TAgy9OoG8_EApOwAs=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Debbie Balanza, Owner\" height=\"auto\" width=\"182\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/SocialGoodEvents/HHM25/Storefront/US-EN_AB_HHM25_P1_149_SF_Carousel_Tile_400x267.png\" style=\"border:none;border-radius:0px;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                   </div></td>\r\n                 </tr>\r\n                </tbody>\r\n               </table>\r\n              </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:middle;width:338px;\" ><![endif]-->\r\n              <div class=\"mj-column-per-65 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:65%;\">\r\n               <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                <tbody>\r\n                 <tr>\r\n                  <td style=\"border-radius:0px;vertical-align:middle;padding:0px 0px 0px 16px;mso-padding-alt:0px 10px 0px 16px;\" class=\"padding-0px-10px-0px-16px\">\r\n                   <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                    <tbody>\r\n                     <tr>\r\n                      <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                       <div class=\"links-161D26-bold\">\r\n                        <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.75em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                         <p style=\"margin: 0;\">Cymbal Communications</p>\r\n                        </div>\r\n                       </div></td>\r\n                     </tr>\r\n                     <tr>\r\n                      <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                       <div class=\"links-007185-bold\">\r\n                        <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:13px;font-weight:normal;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.125em;color:#222D3A;\">\r\n                         <p style=\"margin: 0;\">\"Due to Amazon seller certifications, Cymbal Communications has grown significantly as we are able to reach new customers looking for businesses that are 889 compliant.\"</p>\r\n                         <p style=\"margin: 0;\">Debbie Balanza, Owner</p>\r\n                        </div>\r\n                       </div></td>\r\n                     </tr>\r\n                     <tr>\r\n                      <td class=\"padding-8px-0px-0px-0px text-container\" style=\"font-size:0px;padding:4px 0px 0px 0px;word-break:break-word;mso-padding-alt:8px 0px 0px 0px;text-align:left;\">\r\n                       <div class=\"links-007185-bold\">\r\n                        <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:normal;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.375em;color:#222D3A;\">\r\n                         <p style=\"margin: 0;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_sg_ABHHM25_250917%26return_to=%2FCymbalCommunications/2/0100019958ef6e88-c7dff428-7c6d-492b-a31f-e13bdf8e07cb-000000/Py7RQUwuSE8ccW9YqGJsL7dOLqSoRI5h2LqmVrslKis=423\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(0, 113, 133); text-decoration: none; font-weight: 700;\">Shop IT peripherals</a></p>\r\n                        </div>\r\n                       </div></td>\r\n                     </tr>\r\n                    </tbody>\r\n                   </table></td>\r\n                 </tr>\r\n                </tbody>\r\n               </table>\r\n              </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:600px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:20px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 0px 40px;\" class=\"block-grid padding-20px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:520px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td valign=\"middle\" class=\"button-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                  <div>\r\n                   <!--[if mso]>\r\n<table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\">\r\n<tr>\r\n<td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_sg_ABHHM25_250917%26return_to=%2Fl%2F118581420011/2/0100019958ef6e88-c7dff428-7c6d-492b-a31f-e13bdf8e07cb-000000/5B-P-Oc1vceM_UxGQD7Gq5vUusvjbktP8fmmt0bRyhI=423\" fillcolor=\"#FFFFFF\" arcsize=\"18%\" style=\"v-text-anchor:middle;width:87pt;height:33.75pt;\" strokecolor=\"#D5D9D9\" strokeweight=\"0.75pt\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_sg_ABHHM25_250917%26return_to=%2Fl%2F118581420011/3/0100019958ef6e88-c7dff428-7c6d-492b-a31f-e13bdf8e07cb-000000/RcUjtpfmZ1n9tUiuW--ctjjjtNr4dBSL90Oty4fExgg=423\" style=\"display: inline-block; background: #FFFFFF; color: #161D26; font-family: \'Amber Ember\', Arial, sans-serif; font-size: 16px; font-weight: normal; line-height: 1.2; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 12px 16px 12px 16px; mso-padding-alt: 0px; border-radius: 8px; border-left: 1px solid #D5D9D9; border-right: 1px solid #D5D9D9; border-top: 1px solid #D5D9D9; border-bottom: 1px solid #D5D9D9; mso-border-alt: none; box-sizing: border-box;\" target=\"_blank\" width=\"117\">Learn more </a><!--[if mso]></center></a:textbox></a:roundrect>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:600px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:600px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                 <div style=\"line-height:24px;height:24px;mso-line-height-alt:20px;\" class=\"height-20px line-height-20px\">\r\n                  &nbsp;\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:600px;\" width=\"600\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#161D26;background-color:#161D26;margin:0 auto;max-width:600px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#161D26;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\">\r\n            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n             <tbody>\r\n              <tr>\r\n               <td style=\"line-height:0;font-size:0;direction:rtl;\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:234px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-45 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-align-right social-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\"><!--[if mso | IE]>\r\n<table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" >\r\n<tr>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.facebook.com%2FAmazonBusiness%2F%3Fref_=b2b_sow_e_events_sg_ABHHM25_250917/1/0100019958ef6e88-c7dff428-7c6d-492b-a31f-e13bdf8e07cb-000000/aXHdj9YpsBujRqwi_LhPVBiwMl7znDlQKxd7rZhVbeo=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Facebook\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Facebook-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Ftwitter.com%2FAmazonBusiness%3Fref_=b2b_sow_e_events_sg_ABHHM25_250917/1/0100019958ef6e88-c7dff428-7c6d-492b-a31f-e13bdf8e07cb-000000/MNquja2NO5Wa_-Ad1yHWha0RONU3jimMcLZiC08Vk04=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Twitter\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Twitter-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.linkedin.com%2Fcompany%2Famazon-business%2F%3Fref_=b2b_sow_e_events_sg_ABHHM25_250917/1/0100019958ef6e88-c7dff428-7c6d-492b-a31f-e13bdf8e07cb-000000/lbQhfwRuQSm0Y_u7TszFh1wOMfvTDG6d07M9m0Odik8=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Linkedin\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-LinkedIn-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"padding-10px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 20px 0px;word-break:break-word;mso-padding-alt:10px 0px 0px 0px;text-align:right;\">\r\n                     <div style=\"margin:0 auto 0 0;max-width:163px;\" class=\"margin-0-0-0-auto\">\r\n                      <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2F%3Fref_=b2b_sow_e_events_sg_ABHHM25_250917%26ref_=b2b_sow_e_events_sg_ABHHM25_250917/1/0100019958ef6e88-c7dff428-7c6d-492b-a31f-e13bdf8e07cb-000000/-IzzxoiSFYFMNQ-MDH-vZHdTi3_okRhK1A1VfQp9odM=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business logo\" height=\"auto\" width=\"163\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-white2x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:286px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-55 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Fen%2Fcontact-us%3Fref_=b2b_sow_e_events_sg_ABHHM25_250917/1/0100019958ef6e88-c7dff428-7c6d-492b-a31f-e13bdf8e07cb-000000/74lbwaNbj2GknIpN-hF7oWFFEBUtbcGouptaCD3CA2k=423\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">Contact us</a> | <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fab%2Fmanage%2Faccount%2F%3Fref_=b2b_sow_e_events_sg_ABHHM25_250917/1/0100019958ef6e88-c7dff428-7c6d-492b-a31f-e13bdf8e07cb-000000/q0__Iu7_ChbvMiHSyoBWX3t7JqJ2ue1uMw1pgwouqtM=423\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">Manage account</a></p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\">If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Femail-preferences%2Fep%2FT3fOoI91L5orRRJxdwUzt6kXuzkCHKO0mUnre2awkT23HIrb8BluskSOww==%2F5894652495%2FBAKrUu82GyxQVovBF4rmpMOi1jsduI4XdNQEufIfQIH26AN43j0kn9eJrITs4inq6Q2bPiC*BzKhoswm*q7g4uosYfnwOvY1bLekYsdbK3FWvco%2BS2kliizMOfUZ1wOL7QkrYFspYC6Z0oE2Ez*tEO6HitZs9%2Bkhe8JTAmR9J0knA*qxhWZMQ3oJq*8givooHUYrjM7uD8ZJXvVSlvefT*7svbpsyu6FCcq5oYVgHxRJxHEqfIH9Rn8%2BCrRlKLl4UlXxxlF%2B7ZImANdlNQhrLKeqYeoWfI0VYs20WjTj*XGvwNEetuDxrKFUQ8I2RRH7RDaOZx8Uqj0O1*WH2e31TcjOJtRY5BdP*sRGB8ds%2BNkPk7Pz*gY=%2F*Fd*rQdRW1KVIcuv5Ql4MBGvPNUNMaO0hxmEYkMRKl9B%3Fref_=b2b_sow_e_events_sg_ABHHM25_250917/1/0100019958ef6e88-c7dff428-7c6d-492b-a31f-e13bdf8e07cb-000000/dCe1I-ZU-dS9mJqCwVDjg-08IFmg725KhVZp3UGpRqg=423\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">email preferences</a>.</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 30px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\">© 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210</p>\r\n                       <p style=\"margin: 0;\">&nbsp;</p>\r\n                       <p style=\"margin: 0;\">Reference: 5894652495</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n              </tr>\r\n             </tbody>\r\n            </table></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--><!--[if mso]>\r\n</table><![endif]-->\r\n  </div>\r\n </body>\r\n</html>\r\n','\r\n\r\n \r\n  Discover Hispanic-owned businesses\r\n  \r\n  \r\n  \r\n  #outlook a { padding:0; }           body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block; }\r\n  \r\n  \r\n  @import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);\r\n  @media only screen and (min-width:641px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-52 { width:52% !important; max-width: 52%; } .mj-column-per-48 { width:48% !important; max-width: 48%; } .mj-column-per-35 { width:35% !important; max-width: 35%; } .mj-column-per-65 { width:65% !important; max-width: 65%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }\r\n  .links-FFFFFF-underline-bold a { color: #FFFFFF; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .mso-button-dark-mode a {background: transparent !important;} .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .links-161D26 a { color: #161D26; text-decoration: none; } .links-161D26-bold a { color: #161D26; text-decoration: none; font-weight: bold; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:641px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-154px { max-width: 154px !important} .padding-5px-24px-24px-40px { padding: 5px 24px 24px 40px !important} .padding-0px-32px-0px-0px { padding: 0px 32px 0px 0px !important} .font-size-32px { font-size: 32px !important} .padding-30px-0px-20px-0px { padding: 30px 0px 20px 0px !important} .padding-0px-40px-0px-0px { padding: 0px 40px 0px 0px !important} .max-width-257px { max-width: 257px !important} .padding-0px-40px-0px-40px { padding: 0px 40px 0px 40px !important} .height-20px { height: 20px !important} .line-height-20px { line-height: 20px !important} .padding-0px-40px-20px-40px { padding: 0px 40px 20px 40px !important} .font-size-20px { font-size: 20px !important} .padding-0px-40px-10px-40px { padding: 0px 40px 10px 40px !important} .padding-0px-10px-0px-16px { padding: 0px 10px 0px 16px !important} .padding-8px-0px-0px-0px { padding: 8px 0px 0px 0px !important} .padding-4px-40px-10px-40px { padding: 4px 40px 10px 40px !important} .padding-20px-40px-0px-40px { padding: 20px 40px 0px 40px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }\r\n  ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 641px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}\r\n  [class~=\"x_body\"] { width: 99.9% }\r\n \r\n \r\n  \r\n   \r\n\r\n  \r\n  \r\n   Celebrate small and diverse sellers﻿.\r\n  \r\n  \r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  \r\n  \r\n   \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                   \r\n                 \r\n                \r\n               \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    &nbsp;\r\n                   \r\n                 \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        Celebrate Hispanic Heritage Month\r\n                       \r\n                      \r\n                    \r\n                    \r\n                     \r\n                      \r\n                        Shop now \r\n                      \r\n                    \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  &nbsp;\r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    Amazon Business makes it simple to diversify your supply chain with business supplies from credentialed small and diverse sellers. Shop from our featured Hispanic-owned businesses, such as South Gate Pack N Ship, Gulf Coast Avionics, and Cymbal Communications. Find small and diverse sellers by looking for seller credentials beneath the \"add to cart\" button.&nbsp;\r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  &nbsp;\r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  &nbsp;\r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    Featured entrepreneurs&nbsp;\r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                   \r\n                 \r\n                \r\n               \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         South Gate Pack N Ship\r\n                        \r\n                       \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \"The seller certification program and Fulfillment by Amazon have enabled our small retail business to reach customers nationwide.\"\r\n                         Cesar Carranza, Owner\r\n                        \r\n                       \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         Shop Office supplies\r\n                        \r\n                       \r\n                     \r\n                    \r\n                   \r\n                 \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                   \r\n                 \r\n                \r\n               \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         Gulf Coast Avionics Corp.\r\n                        \r\n                       \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \"By using fulfillment through FBA, we\'re delivering our products quickly and efficiently, making them more accessible than ever.\"\r\n                         Eduardo Reed, Marketing &amp; E-Commerce Director\r\n                        \r\n                       \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         Shop Avionics equipment\r\n                        \r\n                       \r\n                     \r\n                    \r\n                   \r\n                 \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                   \r\n                 \r\n                \r\n               \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         Cymbal Communications\r\n                        \r\n                       \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \"Due to Amazon seller certifications, Cymbal Communications has grown significantly as we are able to reach new customers looking for businesses that are 889 compliant.\"\r\n                         Debbie Balanza, Owner\r\n                        \r\n                       \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         Shop IT peripherals\r\n                        \r\n                       \r\n                     \r\n                    \r\n                   \r\n                 \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                    Learn more \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  &nbsp;\r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       Contact us | Manage account\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your email preferences.\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       © 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210\r\n                       &nbsp;\r\n                       Reference: 5894652495\r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n   \r\n  \r\n \r\n\r\n',0,0,0,0,0,0,'2025-09-17 18:28:30','2025-12-09 19:28:32','2025-12-09 19:28:32','2025-12-09 19:28:32',NULL,NULL,NULL),
(738,4,'<CABEiVunOOLzWymWgzuAJF6roAVoW=9cTPJo3JhoyfHMDMmzx0w@mail.gmail.com>',NULL,NULL,'Fwd: Fw: You\'re Invited: Aerospace, Defense, & Govt Services M&A Conference','jen@deeptechgtm.com','Jennifer Kay','<div dir=\"ltr\"><div>In case you&#39;re in DC this week ....</div><div><br></div><div><br></div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:517.609px;vertical-align:-webkit-baseline-middle;font-size:medium;font-family:Arial\"><tbody><tr style=\"margin:0px;padding:0px;border:0px;color:rgb(255,255,255)\"><td style=\"padding:0px;border:0px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:517.609px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:top\"><h2 color=\"#231e4a\" style=\"font-size:18px;line-height:1.38;margin:0px;color:rgb(35,30,74)\"><span>Jennifer</span><span> </span><span>Kay</span></h2><p color=\"#231e4a\" style=\"font-size:14px;line-height:22px;margin:0px;color:rgb(35,30,74)\"><span>Principal</span><span> | </span><span>Deep Tech Go to Market</span></p><p color=\"#231e4a\" style=\"font-size:14px;line-height:22px;margin:0px;color:rgb(35,30,74)\"><span>Offering commercial go to market for dual-use tech</span></p><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:472.609px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td height=\"30\" style=\"padding:0px;border:0px\"></td></tr><tr style=\"margin:0px;padding:0px;border:0px\"><td color=\"#231E4A\" width=\"auto\" height=\"1\" style=\"padding:0px;border-top:0px;border-right:0px;border-bottom:1px solid rgb(35,30,74);border-left:none;width:472.609px;display:block\"></td></tr><tr style=\"margin:0px;padding:0px;border:0px\"><td height=\"30\" style=\"padding:0px;border:0px\"></td></tr></tbody></table><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:472.609px;vertical-align:-webkit-baseline-middle\"><tbody><tr height=\"25\" style=\"margin:0px;padding:0px;border:0px;vertical-align:middle\"><td width=\"30\" style=\"padding:0px;border:0px;vertical-align:middle\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:30px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:bottom\"><span color=\"#231E4A\" width=\"11\" style=\"display:inline-block;background-color:rgb(35,30,74)\"><img src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/phone-icon-2x.png\" color=\"#231E4A\" alt=\"mobilePhone\" width=\"13\" style=\"border-style:none;display:block\"></span></td></tr></tbody></table></td><td style=\"padding:0px;border:0px;color:rgb(35,30,74)\"><a href=\"tel:615-630-8068\" color=\"#231e4a\" style=\"background-color:rgba(0,0,0,0);color:rgb(35,30,74);font-size:12px\" target=\"_blank\">615-630-8068</a></td></tr><tr height=\"25\" style=\"margin:0px;padding:0px;border:0px;vertical-align:middle\"><td width=\"30\" style=\"padding:0px;border:0px;vertical-align:middle\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:30px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:bottom\"><span color=\"#231E4A\" width=\"11\" style=\"display:inline-block;background-color:rgb(35,30,74)\"><img src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/email-icon-2x.png\" color=\"#231E4A\" alt=\"emailAddress\" width=\"13\" style=\"border-style:none;display:block\"></span></td></tr></tbody></table></td><td style=\"padding:0px;border:0px\"><a href=\"mailto:Jen@DeepTechGTM.com\" color=\"#231e4a\" style=\"background-color:rgba(0,0,0,0);color:rgb(35,30,74);font-size:12px\" target=\"_blank\">Jen@DeepTechGTM.com</a></td></tr><tr height=\"25\" style=\"margin:0px;padding:0px;border:0px;vertical-align:middle\"><td width=\"30\" style=\"padding:0px;border:0px;vertical-align:middle\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:30px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:bottom\"><span color=\"#231E4A\" width=\"11\" style=\"display:inline-block;background-color:rgb(35,30,74)\"><img src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/link-icon-2x.png\" color=\"#231E4A\" alt=\"website\" width=\"13\" style=\"border-style:none;display:block\"></span></td></tr></tbody></table></td><td style=\"padding:0px;border:0px\"><a href=\"https://deeptechgtm.com/\" color=\"#231e4a\" style=\"background-color:rgba(0,0,0,0);color:rgb(35,30,74);font-size:12px\" target=\"_blank\">DeepTechGTM.com</a></td></tr></tbody></table></td><td width=\"45\" style=\"padding:0px;border:0px\"><div></div></td></tr></tbody></table></td></tr><tr style=\"margin:0px;padding:0px;border:0px;color:rgb(255,255,255)\"></tr></tbody></table><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:546.609px;vertical-align:-webkit-baseline-middle;font-size:medium;font-family:Arial\"><tbody><tr style=\"margin:0px;padding:0px;border:0px;color:rgb(255,255,255)\"><td style=\"padding:0px;border:0px\"><br></td></tr></tbody></table></div></div></div><br><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">Thomas, John M.</strong> <span dir=\"auto\">&lt;<a href=\"mailto:john.thomas@pillsburylaw.com\">john.thomas@pillsburylaw.com</a>&gt;</span><br>Date: Tue, Sep 16, 2025 at 9:06 PM<br>Subject: Fw: You&#39;re Invited: Aerospace, Defense, &amp; Govt Services M&amp;A Conference<br>To: <a href=\"mailto:Jen@deeptechgtm.com\">Jen@deeptechgtm.com</a> &lt;<a href=\"mailto:Jen@deeptechgtm.com\">Jen@deeptechgtm.com</a>&gt;<br></div><br><br><div class=\"msg-5975724646640632048\">\r\n\r\n\r\n\r\n<div>\r\n<span style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:12pt\"></span>\r\n<div style=\"font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:12pt\" dir=\"auto\">\r\n<br>\r\n</div>\r\n<div dir=\"auto\" id=\"m_-5975724646640632048mail-editor-reference-message-container\"><br>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div id=\"m_-5975724646640632048divRplyFwdMsg\" style=\"font-size:11pt\"><strong>From:</strong> Pillsbury Winthrop Shaw Pittman &lt;<a href=\"mailto:announcements@pillsburylaw.com\" target=\"_blank\">announcements@pillsburylaw.com</a>&gt;<br>\r\n<strong>Sent:</strong> Thursday, September 4, 2025 8:00:39 AM<br>\r\n<strong>To:</strong> Thomas, John M. &lt;<a href=\"mailto:john.thomas@pillsburylaw.com\" target=\"_blank\">john.thomas@pillsburylaw.com</a>&gt;<br>\r\n<strong>Subject:</strong> You&#39;re Invited: Aerospace, Defense, &amp; Govt Services M&amp;A Conference<br>\r\n</div>\r\n<br>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<table role=\"presentation\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;margin:0px;padding:0px;word-break:keep-all;background:rgb(236,236,236)\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" align=\"center\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all;padding-top:20px\">\r\n<table role=\"presentation\" width=\"680\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;margin:0px;padding:0px;word-break:keep-all;background:rgb(255,255,255);min-width:680px;width:680px\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all\">\r\n<div id=\"m_-5975724646640632048col_01\" style=\"margin:0;padding:0\">\r\n<div id=\"m_-5975724646640632048blk_01\" style=\"margin:0;padding:0;display:table;width:100%\">\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" height=\"20\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all;font-size:1px;line-height:1px;height:20px\">\r\n </td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<div id=\"m_-5975724646640632048blk_02\" style=\"margin:0;padding:0;display:table;width:100%\">\r\n<table role=\"presentation\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" valign=\"top\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all;padding-left:20px;padding-right:20px\">\r\n<div id=\"m_-5975724646640632048txt_01\" style=\"margin:0;padding:0\">\r\n<h4 style=\"margin:0px 0px 20px;padding:0px;line-height:24px;font-family:Arial,sans-serif;font-weight:bold;font-size:22px;color:rgb(0,0,0)\">\r\n<span style=\"color:rgb(0,0,1)\">Pillsbury’s 25th Annual</span></h4>\r\n<h2 style=\"margin:0px 0px 20px;padding:0px;line-height:36px;font-family:Georgia,Times,&quot;Times New Roman&quot;,serif;font-weight:normal;font-size:36px;color:rgb(0,0,0)\">\r\n<span style=\"color:rgb(0,0,1)\">Aerospace, Defense and Government Services M&amp;A Conference</span></h2>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<div id=\"m_-5975724646640632048blk_03\" style=\"margin:0;padding:0;display:table;width:100%\">\r\n<table role=\"presentation\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" valign=\"top\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all;padding-left:20px;padding-right:20px;padding-bottom:10px\">\r\n<div id=\"m_-5975724646640632048img_01\" style=\"margin:0;padding:0\">\r\n<img src=\"https://notifications.pillsburylaw.com/45/5945/_images/istock-499779154-blue-25anniv-eb(3).jpg\" alt=\"\" width=\"640\" title=\"\" style=\"display:block;line-height:100%\"></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<div id=\"m_-5975724646640632048blk_04\" style=\"margin:0;padding:0;display:table;width:100%\">\r\n<table role=\"presentation\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" align=\"center\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all;padding-left:20px;padding-right:20px\">\r\n<table role=\"presentation\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all\">\r\n<tbody>\r\n<tr>\r\n<th width=\"400\" align=\"left\" valign=\"top\" style=\"font-weight:normal;width:400px\">\r\n<div id=\"m_-5975724646640632048txt_02\" style=\"margin:0;padding:0\">\r\n<p style=\"margin:0px 0px 20px;padding:0px;font-size:16px;line-height:26px;font-family:Arial,sans-serif;color:rgb(0,0,0)\">\r\n<span><span style=\"color:rgb(195,136,79)\"><strong>Leading Strategies for Successful M&amp;A Outcomes<br>\r\n</strong></span></span>Join an exclusive gathering of industry leaders, visionaries, and decision-makers at Pillsbury’s 25th Annual Aerospace, Defense and Government Services M&amp;A Conference. As the ADG sector continues to evolve amid shifting administrative\r\n priorities and policies, forward-thinking companies and private equity sponsors are forging new pathways to create value and build strategic growth.</p>\r\n</div>\r\n</th>\r\n<th width=\"40\" style=\"font-weight:normal;font-size:1px;line-height:1px;width:40px\">\r\n </th>\r\n<th width=\"200\" align=\"center\" valign=\"top\" style=\"font-weight:normal;width:200px\">\r\n<div id=\"m_-5975724646640632048col_02\" style=\"margin:0;padding:0\">\r\n<div id=\"m_-5975724646640632048blk_05\" style=\"margin:0;padding:0;display:table;width:100%\">\r\n<table role=\"presentation\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" valign=\"center\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all;padding-bottom:20px\">\r\n<table role=\"presentation\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"border-collapse:collapse;margin:0px;padding:0px;word-break:keep-all;background:rgb(66,104,143);border-radius:6px\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" align=\"center\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all;padding-top:8px;padding-left:5px;padding-bottom:9px;padding-right:5px\">\r\n<div id=\"m_-5975724646640632048txt_03\" style=\"margin:0;padding:0\">\r\n<p style=\"margin:0px;padding:0px;font-size:15px;line-height:18px;font-family:Arial,sans-serif;color:rgb(255,255,255);font-weight:normal\">\r\n<a title=\"Landing Pages/ RSVP prefilled\" rel=\"noopener\" href=\"https://notifications.pillsburylaw.com/e/o70qaub5qe9doog/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" style=\"color:rgb(255,255,255);text-decoration:none;display:block;font-weight:normal\" target=\"_blank\"><strong>REGISTER\r\n NOW</strong></a></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<div id=\"m_-5975724646640632048blk_06\" style=\"margin:0;padding:0;display:table;width:100%\">\r\n<table role=\"presentation\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" valign=\"center\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all;padding-bottom:20px\">\r\n<table role=\"presentation\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"border-collapse:collapse;margin:0px;padding:0px;word-break:keep-all;background:rgb(255,255,254);border-radius:6px\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" align=\"center\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all;padding-top:8px;padding-left:5px;padding-bottom:9px;padding-right:5px\">\r\n<div id=\"m_-5975724646640632048txt_04\" style=\"margin:0;padding:0\">\r\n<p style=\"margin:0px;padding:0px;font-size:15px;line-height:18px;font-family:Arial,sans-serif;color:rgb(0,0,1);font-weight:normal\">\r\n<strong>October 9, 2025<br>\r\n</strong>7:00 – 10:45am ET</p>\r\n<p style=\"margin:0px;padding:0px;font-size:15px;line-height:18px;font-family:Arial,sans-serif;color:rgb(0,0,1);font-weight:normal\">\r\n<br>\r\n<strong></strong><strong>The Ritz-Carlton, Tysons</strong><br>\r\n1700 Tysons Boulevard<br>\r\nMcLean, VA 22102</p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<div id=\"m_-5975724646640632048blk_07\" style=\"margin:0;padding:0;display:table;width:100%\">\r\n<table role=\"presentation\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" align=\"left\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all;padding-left:20px;padding-right:20px\">\r\n<div id=\"m_-5975724646640632048txt_05\" style=\"margin:0;padding:0\">\r\n<p style=\"margin:0px 0px 20px;padding:0px;font-size:16px;line-height:26px;font-family:Arial,sans-serif;color:rgb(0,0,0)\">\r\nFrom AI and space innovation to cyber defense and next-gen defense systems, the sector is entering a new era defined by scale, speed, and mission-critical technologies. And, despite some significant headwinds—from the new SBA rules, DOGE created uncertainty,\r\n tariffs, supply chain disruptions to the FAR Overhaul—deal momentum is rebounding.  </p>\r\n<p style=\"margin:0px 0px 20px;padding:0px;font-size:16px;line-height:26px;font-family:Arial,sans-serif;color:rgb(0,0,0)\">\r\nThis year’s program will feature in-depth discussions with leading executives, PE investors, and investment banking advisors as we explore key market trends, deal drivers, and regulatory developments shaping M&amp;A outcomes in the ADG sector. This is the moment\r\n where strategic foresight becomes a competitive advantage. We look forward to seeing you at the M&amp;A event of the year. Attendance is invitation-only and limited to industry executives.<br>\r\n<strong><strong></strong></strong></p>\r\n<p style=\"margin:0px 0px 20px;padding:0px;font-size:16px;line-height:26px;font-family:Arial,sans-serif;color:rgb(0,0,0)\">\r\n<strong>Agenda</strong><br>\r\n<span style=\"color:rgb(153,84,0)\"><strong><strong><span style=\"color:rgb(0,0,0)\">8:00am |</span>\r\n<span style=\"color:rgb(195,136,79)\">Opening Remarks</span></strong><br>\r\n</strong></span><a rel=\"noopener\" href=\"https://notifications.pillsburylaw.com/e/fmuqqybxsiqc0ja/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" style=\"color:rgb(66,104,143);text-decoration:none\" target=\"_blank\"><strong>Craig Chason</strong></a>, Corporate/M&amp;A\r\n Partner, Pillsbury</p>\r\n<p style=\"margin:0px 0px 20px;padding:0px;font-size:16px;line-height:26px;font-family:Arial,sans-serif;color:rgb(0,0,0)\">\r\n<strong><strong>8:10 – 8:30am |<span style=\"color:rgb(195,136,79)\"> Industry Update</span></strong></strong><br>\r\n<a rel=\"noopener\" href=\"https://notifications.pillsburylaw.com/e/rg02ez0nl0c0qg/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" style=\"color:rgb(66,104,143);text-decoration:none\" target=\"_blank\"><strong>Jonathan Siegmann</strong></a>, Managing Director, Aerospace\r\n &amp; Defense, Stifel</p>\r\n<p style=\"margin:0px 0px 20px;padding:0px;font-size:16px;line-height:26px;font-family:Arial,sans-serif;color:rgb(0,0,0)\">\r\n<span style=\"color:rgb(153,84,0)\"><strong><strong><span style=\"color:rgb(0,0,0)\">8:30 – 9:15am |</span>\r\n<span style=\"color:rgb(195,136,79)\">CEO Panel</span></strong><br>\r\n</strong></span><span style=\"color:rgb(0,0,1)\"><strong><a rel=\"noopener\" href=\"https://notifications.pillsburylaw.com/e/pwuu4uui9vly8g/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" style=\"color:rgb(66,104,143);text-decoration:none\" target=\"_blank\">Carey Smith</a></strong></span>,\r\n Chair, President and CEO, Parsons<br>\r\n<span style=\"color:rgb(0,0,1)\"><strong><a rel=\"noopener\" href=\"https://notifications.pillsburylaw.com/e/vse2h7qix9isvhw/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" style=\"color:rgb(66,104,143);text-decoration:none\" target=\"_blank\">John Mengucci</a></strong></span>,\r\n President and CEO, CACI<br>\r\n<span style=\"color:rgb(0,0,1)\"><strong><a rel=\"noopener\" href=\"https://notifications.pillsburylaw.com/e/hku4cagjwrcf4w/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" style=\"color:rgb(66,104,143);text-decoration:none\" target=\"_blank\">John Hassoun</a></strong></span>,\r\n President and CEO, VTG</p>\r\n<p style=\"margin:0px 0px 20px;padding:0px;font-size:16px;line-height:26px;font-family:Arial,sans-serif;color:rgb(0,0,0)\">\r\n<span style=\"color:rgb(153,84,0)\"><strong><strong><span style=\"color:rgb(0,0,0)\">9:15 – 10:00am |</span>\r\n<span style=\"color:rgb(195,136,79)\">Investment Banker Panel</span></strong><br>\r\n</strong></span><strong><span style=\"color:rgb(0,0,1)\"><a rel=\"noopener\" href=\"https://notifications.pillsburylaw.com/e/tekit7xop1tcerq/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" style=\"color:rgb(66,104,143);text-decoration:none\" target=\"_blank\">Jean Stack</a></span></strong>,\r\n Managing Director, Baird<br>\r\n<strong><span style=\"color:rgb(0,0,1)\"><a rel=\"noopener\" href=\"https://notifications.pillsburylaw.com/e/lpeia3vaknmpuqa/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" style=\"color:rgb(66,104,143);text-decoration:none\" target=\"_blank\">Kevin DeSanto</a></span></strong>,\r\n Co-Founder and Managing Director, KippsDeSanto<br>\r\n<span style=\"color:rgb(0,0,1)\"><strong><a rel=\"noopener\" href=\"https://notifications.pillsburylaw.com/e/ukk2hkl50yuousa/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" style=\"color:rgb(66,104,143);text-decoration:none\" target=\"_blank\">Sam Maness</a></strong></span>,\r\n Managing Director, Raymond James<br>\r\n<span style=\"color:rgb(0,0,1)\"><strong><a rel=\"noopener\" href=\"https://notifications.pillsburylaw.com/e/2hec0nrkalviqiq/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" style=\"color:rgb(66,104,143);text-decoration:none\" target=\"_blank\">Greg Nossaman</a></strong></span>,\r\n Co-Founder and Managing Director, G Squared Capital Partners<br>\r\n<span style=\"color:rgb(0,0,1)\"><strong><a rel=\"noopener\" href=\"https://notifications.pillsburylaw.com/e/lw0o8kiwkerng/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" style=\"color:rgb(66,104,143);text-decoration:none\" target=\"_blank\">Tom Peltier</a></strong></span>,\r\n Managing Director, Progress Partners</p>\r\n<p style=\"margin:0px 0px 20px;padding:0px;font-size:16px;line-height:26px;font-family:Arial,sans-serif;color:rgb(0,0,0)\">\r\n<span style=\"color:rgb(153,84,0)\"><strong><strong><span style=\"color:rgb(0,0,0)\">10:00 – 10:45am |</span>\r\n<span style=\"color:rgb(195,136,79)\">Buy Side Panel</span></strong><br>\r\n</strong></span><span style=\"color:rgb(0,0,1)\"><strong><a rel=\"noopener\" href=\"https://notifications.pillsburylaw.com/e/jwkol4dvkfgbjca/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" style=\"color:rgb(66,104,143);text-decoration:none\" target=\"_blank\">Morgan\r\n Higgins</a></strong></span>, Partner, Blue Delta Capital Partners<br>\r\n<span style=\"color:rgb(0,0,1)\"><strong><a rel=\"noopener\" href=\"https://notifications.pillsburylaw.com/e/isuepm3li0qcnww/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" style=\"color:rgb(66,104,143);text-decoration:none\" target=\"_blank\">Brandon Levitan</a></strong></span>,\r\n Managing Director, Madison Dearborn Partners<br>\r\n<strong><span style=\"color:rgb(0,0,1)\"><a rel=\"noopener\" href=\"https://notifications.pillsburylaw.com/e/s60iu2zheopcqvw/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" style=\"color:rgb(66,104,143);text-decoration:none\" target=\"_blank\">Devin Talbott</a></span>,</strong>\r\n Founder and CEO, Enlightenment Capital  <br>\r\n<span style=\"color:rgb(0,0,1)\"><strong><a rel=\"noopener\" href=\"https://notifications.pillsburylaw.com/e/uk06fssg8uwfzra/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" style=\"color:rgb(66,104,143);text-decoration:none\" target=\"_blank\">Marybeth Wootton</a></strong></span>,\r\n Executive Advisor, Falfurrias Capital</p>\r\n<p style=\"margin:0px 0px 20px;padding:0px;font-size:16px;line-height:26px;font-family:Arial,sans-serif;color:rgb(0,0,0)\">\r\n<strong><strong>Moderators</strong></strong><br>\r\n<a href=\"https://notifications.pillsburylaw.com/e/fmuqqybxsiqc0ja/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" style=\"color:rgb(66,104,143);text-decoration:none\" target=\"_blank\"><strong></strong></a><strong><a rel=\"noopener\" href=\"https://notifications.pillsburylaw.com/e/fmuqqybxsiqc0ja/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" style=\"color:rgb(66,104,143);text-decoration:none\" target=\"_blank\">Craig\r\n Chason</a></strong>, Corporate/M&amp;A Partner, Pillsbury<br>\r\n<a rel=\"noopener\" href=\"https://notifications.pillsburylaw.com/e/auaf5q8rnmynnq/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" style=\"color:rgb(66,104,143);text-decoration:none\" target=\"_blank\"><strong>Ellen Grady</strong></a>, Corporate/M&amp;A Partner, Pillsbury<br>\r\n<a rel=\"noopener\" href=\"https://notifications.pillsburylaw.com/e/pmem1sajoozcctw/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" style=\"color:rgb(66,104,143);text-decoration:none\" target=\"_blank\"><strong>Matt Swartz</strong></a>, Corporate/M&amp;A Partner, Pillsbury<br>\r\n<a rel=\"noopener\" href=\"https://notifications.pillsburylaw.com/e/nbeqnzrhdp7mqpw/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" style=\"color:rgb(66,104,143);text-decoration:none\" target=\"_blank\"><span style=\"color:rgb(66,104,143)\"><strong>Adam Strach</strong></span></a>,\r\n Managing Director, Prosperity Partners<br>\r\n<span><a rel=\"noopener\" href=\"https://notifications.pillsburylaw.com/e/dl0agvwngotepog/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" style=\"color:rgb(66,104,143);text-decoration:none\" target=\"_blank\"><span style=\"color:rgb(66,104,143)\"><strong>Greg Wheeless</strong></span></a>,\r\n Senior Vice President, Truist</span></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<div id=\"m_-5975724646640632048blk_08\" style=\"margin:0;padding:0;display:table;width:100%\">\r\n<table role=\"presentation\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" align=\"left\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all;padding-left:20px;padding-right:20px\">\r\n<div id=\"m_-5975724646640632048txt_06\" style=\"margin:0;padding:0\">\r\n<p dir=\"ltr\" style=\"margin:0px 0px 20px;padding:0px;line-height:26px;font-family:Arial,sans-serif;color:rgb(0,0,0);font-size:14px;text-align:left\">\r\n<em>*Guests from competing commercial banks, law firms and wealth managers are not permitted to attend. Limited select service providers will be permitted by invitation only.</em></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<div id=\"m_-5975724646640632048blk_09\" style=\"margin:0;padding:0;display:table;width:100%\">\r\n<table role=\"presentation\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" align=\"center\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all;padding-left:20px;padding-right:20px\">\r\n<table role=\"presentation\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all\">\r\n<tbody>\r\n<tr>\r\n<th width=\"200\" align=\"center\" valign=\"top\" style=\"font-weight:normal;padding-bottom:10px;width:200px\">\r\n<div id=\"m_-5975724646640632048col_03\" style=\"margin:0;padding:0\">\r\n<div id=\"m_-5975724646640632048blk_10\" style=\"margin:0;padding:0;display:table;width:100%\">\r\n<table role=\"presentation\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" align=\"center\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all;padding-bottom:10px\">\r\n<div id=\"m_-5975724646640632048img_02\" style=\"margin:0;padding:0\">\r\n<img src=\"https://notifications.pillsburylaw.com/45/5945/_images/pillsbury-color150.png\" alt=\"\" width=\"200\" title=\"\" style=\"display:block;line-height:100%\">\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</th>\r\n<th width=\"20\" style=\"font-weight:normal;font-size:1px;line-height:1px;width:20px\">\r\n </th>\r\n<th width=\"200\" align=\"center\" valign=\"top\" style=\"font-weight:normal;padding-bottom:10px;width:200px\">\r\n<div id=\"m_-5975724646640632048col_04\" style=\"margin:0;padding:0\">\r\n<div id=\"m_-5975724646640632048blk_11\" style=\"margin:0;padding:0;display:table;width:100%\">\r\n<table role=\"presentation\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" align=\"center\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all;padding-bottom:10px\">\r\n<div id=\"m_-5975724646640632048img_03\" style=\"margin:0;padding:0\">\r\n<img src=\"https://notifications.pillsburylaw.com/45/5945/_images/truist-logo.jpg\" alt=\"\" width=\"200\" title=\"\" style=\"display:block;line-height:100%\">\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</th>\r\n<th width=\"20\" style=\"font-weight:normal;font-size:1px;line-height:1px;width:20px\">\r\n </th>\r\n<th width=\"200\" align=\"center\" valign=\"top\" style=\"font-weight:normal;padding-bottom:10px;width:200px\">\r\n<div id=\"m_-5975724646640632048col_05\" style=\"margin:0;padding:0\">\r\n<div id=\"m_-5975724646640632048blk_12\" style=\"margin:0;padding:0;display:table;width:100%\">\r\n<table role=\"presentation\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" align=\"center\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all;padding-bottom:10px\">\r\n<div id=\"m_-5975724646640632048img_04\" style=\"margin:0;padding:0\">\r\n<img src=\"https://notifications.pillsburylaw.com/45/5945/_images/prosperity-partners-logo-rgb(1).jpg\" alt=\"\" width=\"200\" title=\"\" style=\"display:block;line-height:100%\">\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<div id=\"m_-5975724646640632048blk_13\" style=\"margin:0;padding:0;display:table;width:100%\">\r\n<table role=\"presentation\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" align=\"center\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all;padding-left:20px;padding-right:20px\">\r\n<table role=\"presentation\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all\">\r\n<tbody>\r\n<tr>\r\n<th width=\"200\" align=\"center\" valign=\"top\" style=\"font-weight:normal;padding-bottom:10px;width:200px\">\r\n<div id=\"m_-5975724646640632048col_06\" style=\"margin:0;padding:0\">\r\n<div id=\"m_-5975724646640632048blk_14\" style=\"margin:0;padding:0;display:table;width:100%\">\r\n<table role=\"presentation\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" align=\"center\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all;padding-bottom:10px\">\r\n<div id=\"m_-5975724646640632048img_05\" style=\"margin:0;padding:0\">\r\n<img src=\"https://notifications.pillsburylaw.com/45/5945/_images/goldman-sachs-logo(2).jpg\" alt=\"\" width=\"200\" title=\"\" style=\"display:block;line-height:100%\">\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</th>\r\n<th width=\"20\" style=\"font-weight:normal;font-size:1px;line-height:1px;width:20px\">\r\n </th>\r\n<th width=\"200\" align=\"center\" valign=\"top\" style=\"font-weight:normal;padding-bottom:10px;width:200px\">\r\n<div id=\"m_-5975724646640632048col_07\" style=\"margin:0;padding:0\">\r\n<div id=\"m_-5975724646640632048blk_15\" style=\"margin:0;padding:0;display:table;width:100%\">\r\n<table role=\"presentation\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" align=\"center\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all;padding-bottom:10px\">\r\n<div id=\"m_-5975724646640632048img_06\" style=\"margin:0;padding:0\">\r\n<img src=\"https://notifications.pillsburylaw.com/45/5945/_images/jpmorgan-wealth-management(2).png\" alt=\"\" width=\"200\" title=\"\" style=\"display:block;line-height:100%\">\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</th>\r\n<th width=\"20\" style=\"font-weight:normal;font-size:1px;line-height:1px;width:20px\">\r\n </th>\r\n<th width=\"200\" align=\"center\" valign=\"top\" style=\"font-weight:normal;padding-bottom:10px;width:200px\">\r\n<div id=\"m_-5975724646640632048col_08\" style=\"margin:0;padding:0\">\r\n<div id=\"m_-5975724646640632048blk_16\" style=\"margin:0;padding:0;display:table;width:100%\">\r\n<table role=\"presentation\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" align=\"center\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all;padding-bottom:10px\">\r\n<div id=\"m_-5975724646640632048img_07\" style=\"margin:0;padding:0\">\r\n<img src=\"https://notifications.pillsburylaw.com/45/5945/_images/merrill-lkup1-cmyk-poh(1).jpg\" alt=\"\" width=\"200\" title=\"\" style=\"display:block;line-height:100%\">\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<div id=\"m_-5975724646640632048blk_17\" style=\"margin:0;padding:0;display:table;width:100%\">\r\n<table role=\"presentation\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" align=\"center\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all;padding-left:20px;padding-right:20px\">\r\n<table role=\"presentation\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"160\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all;width:160px;width:160px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" valign=\"top\" width=\"40\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all;padding-bottom:20px;width:40px\">\r\n<div id=\"m_-5975724646640632048img_08\" style=\"margin:0;padding:0\"><a href=\"https://notifications.pillsburylaw.com/email_handler.aspx?sid=b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a&amp;redirect=mailto%3a%3fsubject%3dYou%27re+Invited%3a+Aerospace%2c+Defense%2c+%26+Govt+Services+M%26A+Conference(1)%26body%3dhttps%3a%2f%2fnotifications.pillsburylaw.com%2f45%2f5945%2fseptember-2025%2fyou-re-invited--aerospace--defense--and-govt-services-manda-conference(1).asp&amp;checksum=8512ECC2\" style=\"color:rgb(66,104,143);text-decoration:none\" target=\"_blank\"><img src=\"https://notifications.pillsburylaw.com/45/5945/_images/mail.png\" alt=\"Email\" width=\"40\" height=\"40\" style=\"display:block;line-height:100%;border:0px;text-decoration:none\"></a></div>\r\n</td>\r\n<td align=\"left\" valign=\"top\" width=\"40\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all;padding-bottom:20px;padding-left:20px;width:40px\">\r\n<div id=\"m_-5975724646640632048img_09\" style=\"margin:0;padding:0\"><a href=\"https://notifications.pillsburylaw.com/e/jyugkkbfcat1ztq/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" style=\"color:rgb(66,104,143);text-decoration:none\" target=\"_blank\"><img src=\"https://notifications.pillsburylaw.com/45/5945/_images/linkedin.png\" alt=\"LinkedIn\" width=\"40\" height=\"40\" style=\"display:block;line-height:100%;border:0px;text-decoration:none\"></a></div>\r\n</td>\r\n<td align=\"left\" valign=\"top\" width=\"40\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all;padding-bottom:20px;padding-left:20px;width:40px\">\r\n<div id=\"m_-5975724646640632048img_10\" style=\"margin:0;padding:0\"><a href=\"https://notifications.pillsburylaw.com/e/nk2nyrv3giqt7q/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" style=\"color:rgb(66,104,143);text-decoration:none\" target=\"_blank\"><img src=\"https://notifications.pillsburylaw.com/45/5945/_images/twitter.png\" alt=\"Twitter\" width=\"40\" height=\"40\" title=\"Twitter\" style=\"display:block;line-height:100%;border:0px;text-decoration:none\"></a></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<div id=\"m_-5975724646640632048blk_18\" style=\"margin:0;padding:0;display:table;width:100%\">\r\n<table role=\"presentation\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;margin:0px;padding:0px;word-break:keep-all;background:rgb(236,236,236)\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" align=\"left\" style=\"border-collapse:collapse;margin:0;padding:0;word-break:keep-all;padding-left:20px;padding-right:20px;padding-top:10px;padding-bottom:10px\">\r\n<div id=\"m_-5975724646640632048txt_07\" style=\"margin:0;padding:0\">\r\n<p style=\"margin:0px;padding:0px;font-size:11px;line-height:14px;font-family:Arial,sans-serif;color:rgb(0,0,0)\">\r\nPillsbury Winthrop Shaw Pittman LLP | <a href=\"https://notifications.pillsburylaw.com/e/y5ucijmectzmwsa/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" style=\"color:rgb(66,104,143);text-decoration:none;font-size:11px;line-height:14px;font-family:Arial,sans-serif\" target=\"_blank\">\r\nView in Browser</a><br>\r\n© 2025 Pillsbury Winthrop Shaw Pittman LLP. All rights reserved.<br>\r\n7900 Tysons One Place, Suite 500, Tysons, VA 22102, USA<br>\r\n<a href=\"https://notifications.pillsburylaw.com/e/5aumdwiv8ysefxq/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" rel=\"noopener\" style=\"color:rgb(66,104,143);text-decoration:none;font-size:11px;line-height:14px;font-family:Arial,sans-serif\" target=\"_blank\">Privacy\r\n Policy</a> | <a href=\"https://notifications.pillsburylaw.com/e/6fe21u7upl0ojeq/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" rel=\"noopener\" style=\"color:rgb(66,104,143);text-decoration:none;font-size:11px;line-height:14px;font-family:Arial,sans-serif\" target=\"_blank\">\r\nCookie Policy</a> | <a href=\"https://notifications.pillsburylaw.com/email_handler.aspx?sid=b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a&amp;redirect=%2f5%2f4384%2flanding-pages%2fpreferences---(prefill)-2021.asp&amp;checksum=95279C42\" style=\"color:rgb(66,104,143);text-decoration:none;font-size:11px;line-height:14px;font-family:Arial,sans-serif\" target=\"_blank\">\r\nManage Your Email Preferences</a> | <a href=\"https://notifications.pillsburylaw.com/e/sa0gbsm8uf2ofaw/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" rel=\"noopener\" style=\"color:rgb(66,104,143);text-decoration:none;font-size:11px;line-height:14px;font-family:Arial,sans-serif\" target=\"_blank\">\r\nUnsubscribe</a></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<div style=\"display:none\">\r\n<p style=\"display:none\"><a title=\"Landing Pages/LandingPage\" href=\"https://notifications.pillsburylaw.com/e/z40utksijqnwdbq/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a\" target=\"_blank\"></a></p>\r\n</div>\r\n<div id=\"m_-5975724646640632048_t\"><img src=\"https://pillsburylaw.vuturevx.com/email/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a/analytics.gif\" width=\"1\" height=\"1\" border=\"0\" style=\"display:none\">\r\n</div>\r\n<br>\r\n</div>\r\n \r\n<table class=\"m_-5975724646640632048ImprintUniqueIDTable\" style=\"WIDTH:100%;BORDER-COLLAPSE:collapse\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n  <tbody>\r\n  <tr>\r\n    <td><font style=\"font-family:calibri;font-size:11pt;color:#c9252c;font-weight:bold\">John</font><font style=\"font-family:calibri;font-size:11pt;color:#c9252c;font-weight:bold\"><font style=\"font-family:calibri;font-size:11pt;color:#c9252c;font-weight:bold\"> </font><font style=\"font-family:calibri;font-size:11pt;color:#c9252c;font-weight:bold\">M.</font></font><font style=\"font-family:calibri;font-size:11pt;color:#c9252c;font-weight:bold\"> Thomas</font><font style=\"font-family:calibri;font-size:11pt;color:#c9252c\"> | Pillsbury Winthrop Shaw Pittman LLP</font></td></tr>\r\n  <tr>\r\n    <td><font style=\"font-family:calibri;font-size:11pt;color:#000000\">Senior Policy Advisor</font></td></tr>\r\n  <tr>\r\n    <td><font style=\"font-family:calibri;font-size:11pt;color:#000000\">1200 Seventeenth Street NW</font><font style=\"font-family:calibri;font-size:11pt;color:#c9252c\"> | </font><font style=\"font-family:calibri;font-size:11pt;color:#000000\">Washington</font><font style=\"font-family:calibri;font-size:11pt;color:#000000\">, </font><font style=\"font-family:calibri;font-size:11pt;color:#000000\">DC</font><font style=\"font-family:calibri;font-size:11pt;color:#000000\"> </font><font style=\"font-family:calibri;font-size:11pt;color:#000000\">20036-3006</font></td></tr>\r\n  <tr>\r\n    <td><font style=\"font-family:calibri;font-size:11pt;color:#000000\"></font></td></tr>\r\n  <tr>\r\n    <td><font style=\"font-family:calibri;font-size:11pt;color:#c9252c\">t </font><font style=\"font-family:calibri;font-size:11pt;color:#000000\">+1.202.663.8025</font><font style=\"font-family:calibri;font-size:11pt;color:#000000\"></font></td></tr>\r\n  <tr>\r\n    <td><font style=\"font-family:calibri;font-size:11pt;color:#000000;text-decoration:none\"><span style=\"font-family:calibri;font-size:11pt;color:#000000;text-decoration:none\"><a href=\"mailto:john.thomas@pillsburylaw.com\" title=\"Click to send email to Thomas, John M.\" style=\"font-family:calibri;font-size:11pt;color:#000000;text-decoration:none\" target=\"_blank\"><span style=\"font-family:calibri;font-size:11pt;color:#000000;text-decoration:none\">john.thomas@pillsburylaw.com</span></a></span></font><font style=\"font-family:calibri;font-size:11pt;color:#c9252c;text-decoration:none\"> | </font><span style=\"font-family:calibri;font-size:11pt;color:#000000;text-decoration:none\"><a href=\"https://www.pillsburylaw.com\" title=\"\" style=\"font-family:calibri;font-size:11pt;color:#000000;text-decoration:none\" target=\"_blank\"><span style=\"font-family:calibri;font-size:11pt;color:#000000;text-decoration:none\">pillsburylaw.com</span></a></span></td></tr>\r\n  <tr>\r\n    <td><font style=\"font-family:calibri;font-size:11pt;color:#000000\"></font></td></tr>\r\n  <tr>\r\n    <td></td></tr>\r\n  <tr>\r\n    <td><font style=\"font-family:calibri;font-size:11pt;color:#000000;font-weight:bold\"></font></td></tr></tbody></table><br> \r\n\r\n\r\n\r\n\r\n   <br>\r\n   <br>\r\n\r\n The contents of this message, together with any attachments, are intended only for the use of the individual or entity to which they are addressed and may contain information that is legally privileged, confidential and exempt from disclosure. If you are not the intended recipient, you are hereby notified that any dissemination, distribution, or copying of this message, or any attachment, is strictly prohibited. If you have received this message in error, please notify the original sender or the Pillsbury Winthrop Shaw Pittman Service Desk at Tel: 800-477-0770, Option 1, immediately by telephone and delete this message, along with any attachments, from your computer. Nothing in this message may be construed as a digital or electronic signature of any employee of Pillsbury Winthrop Shaw Pittman. Thank you.  <pre>    \r\n</pre></div>\r\n</div></div><img src=\"https://d2LSMm04.na1.hs-salescrm-engage.com/Cto/2O+23284/d2LSMm04/R5Q8b48CrN56kt9Z2fDDXW3yNtYt1-XyYxW1S1PGw1W-VH4W1GdtC53BKrvCW1Vp-Tp24SDgJW20YxZr22VWWjf1Q2MDY12\" alt=\"\" height=\"1\" width=\"1\" style=\"display: none !important;\"><div></div><div id=\"data-hbsasc-v0-69956bb7-78a9-450c-b3f0-bd62bdc5e4c2\"></div></div>','In case you\'re in DC this week ....\r\n\r\n\r\n\r\nJennifer Kay\r\n\r\nPrincipal | Deep Tech Go to Market\r\n\r\nOffering commercial go to market for dual-use tech\r\n[image: mobilePhone] 615-630-8068\r\n[image: emailAddress] Jen@DeepTechGTM.com\r\n[image: website] DeepTechGTM.com <https://deeptechgtm.com/>\r\n\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: Thomas, John M. <john.thomas@pillsburylaw.com>\r\nDate: Tue, Sep 16, 2025 at 9:06 PM\r\nSubject: Fw: You\'re Invited: Aerospace, Defense, & Govt Services M&A\r\nConference\r\nTo: Jen@deeptechgtm.com <Jen@deeptechgtm.com>\r\n\r\n\r\n\r\n\r\n------------------------------\r\n*From:* Pillsbury Winthrop Shaw Pittman <announcements@pillsburylaw.com>\r\n*Sent:* Thursday, September 4, 2025 8:00:39 AM\r\n*To:* Thomas, John M. <john.thomas@pillsburylaw.com>\r\n*Subject:* You\'re Invited: Aerospace, Defense, & Govt Services M&A\r\nConference\r\n\r\n\r\nPillsbury’s 25th Annual Aerospace, Defense and Government Services M&A\r\nConference\r\n\r\n\r\n*Leading Strategies for Successful M&A Outcomes *Join an exclusive\r\ngathering of industry leaders, visionaries, and decision-makers at\r\nPillsbury’s 25th Annual Aerospace, Defense and Government Services M&A\r\nConference. As the ADG sector continues to evolve amid shifting\r\nadministrative priorities and policies, forward-thinking companies and\r\nprivate equity sponsors are forging new pathways to create value and build\r\nstrategic growth.\r\n\r\n\r\n*REGISTER NOW*\r\n<https://notifications.pillsburylaw.com/e/o70qaub5qe9doog/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>\r\n\r\n\r\n*October 9, 2025 *7:00 – 10:45am ET\r\n\r\n\r\n*The Ritz-Carlton, Tysons*\r\n1700 Tysons Boulevard\r\nMcLean, VA 22102\r\n\r\nFrom AI and space innovation to cyber defense and next-gen defense systems,\r\nthe sector is entering a new era defined by scale, speed, and\r\nmission-critical technologies. And, despite some significant headwinds—from\r\nthe new SBA rules, DOGE created uncertainty, tariffs, supply chain\r\ndisruptions to the FAR Overhaul—deal momentum is rebounding.\r\n\r\nThis year’s program will feature in-depth discussions with leading\r\nexecutives, PE investors, and investment banking advisors as we explore key\r\nmarket trends, deal drivers, and regulatory developments shaping M&A\r\noutcomes in the ADG sector. This is the moment where strategic foresight\r\nbecomes a competitive advantage. We look forward to seeing you at the M&A\r\nevent of the year. Attendance is invitation-only and limited to industry\r\nexecutives.\r\n\r\n*Agenda*\r\n\r\n*8:00am | Opening Remarks **Craig Chason*\r\n<https://notifications.pillsburylaw.com/e/fmuqqybxsiqc0ja/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>,\r\nCorporate/M&A Partner, Pillsbury\r\n\r\n*8:10 – 8:30am | Industry Update*\r\n*Jonathan Siegmann*\r\n<https://notifications.pillsburylaw.com/e/rg02ez0nl0c0qg/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>,\r\nManaging Director, Aerospace & Defense, Stifel\r\n\r\n\r\n*8:30 – 9:15am | CEO Panel **Carey Smith\r\n<https://notifications.pillsburylaw.com/e/pwuu4uui9vly8g/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>*,\r\nChair, President and CEO, Parsons\r\n*John Mengucci\r\n<https://notifications.pillsburylaw.com/e/vse2h7qix9isvhw/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>*,\r\nPresident and CEO, CACI\r\n*John Hassoun\r\n<https://notifications.pillsburylaw.com/e/hku4cagjwrcf4w/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>*,\r\nPresident and CEO, VTG\r\n\r\n\r\n*9:15 – 10:00am | Investment Banker Panel **Jean Stack\r\n<https://notifications.pillsburylaw.com/e/tekit7xop1tcerq/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>*,\r\nManaging Director, Baird\r\n*Kevin DeSanto\r\n<https://notifications.pillsburylaw.com/e/lpeia3vaknmpuqa/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>*,\r\nCo-Founder and Managing Director, KippsDeSanto\r\n*Sam Maness\r\n<https://notifications.pillsburylaw.com/e/ukk2hkl50yuousa/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>*,\r\nManaging Director, Raymond James\r\n*Greg Nossaman\r\n<https://notifications.pillsburylaw.com/e/2hec0nrkalviqiq/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>*,\r\nCo-Founder and Managing Director, G Squared Capital Partners\r\n*Tom Peltier\r\n<https://notifications.pillsburylaw.com/e/lw0o8kiwkerng/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>*,\r\nManaging Director, Progress Partners\r\n\r\n\r\n*10:00 – 10:45am | Buy Side Panel **Morgan Higgins\r\n<https://notifications.pillsburylaw.com/e/jwkol4dvkfgbjca/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>*,\r\nPartner, Blue Delta Capital Partners\r\n*Brandon Levitan\r\n<https://notifications.pillsburylaw.com/e/isuepm3li0qcnww/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>*,\r\nManaging Director, Madison Dearborn Partners\r\n*Devin Talbott\r\n<https://notifications.pillsburylaw.com/e/s60iu2zheopcqvw/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>,*\r\nFounder and CEO, Enlightenment Capital\r\n*Marybeth Wootton\r\n<https://notifications.pillsburylaw.com/e/uk06fssg8uwfzra/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>*,\r\nExecutive Advisor, Falfurrias Capital\r\n\r\n*Moderators*\r\n<https://notifications.pillsburylaw.com/e/fmuqqybxsiqc0ja/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>*Craig\r\nChason\r\n<https://notifications.pillsburylaw.com/e/fmuqqybxsiqc0ja/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>*,\r\nCorporate/M&A Partner, Pillsbury\r\n*Ellen Grady*\r\n<https://notifications.pillsburylaw.com/e/auaf5q8rnmynnq/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>,\r\nCorporate/M&A Partner, Pillsbury\r\n*Matt Swartz*\r\n<https://notifications.pillsburylaw.com/e/pmem1sajoozcctw/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>,\r\nCorporate/M&A Partner, Pillsbury\r\n*Adam Strach*\r\n<https://notifications.pillsburylaw.com/e/nbeqnzrhdp7mqpw/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>,\r\nManaging Director, Prosperity Partners\r\n*Greg Wheeless*\r\n<https://notifications.pillsburylaw.com/e/dl0agvwngotepog/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>,\r\nSenior Vice President, Truist\r\n\r\n**Guests from competing commercial banks, law firms and wealth managers are\r\nnot permitted to attend. Limited select service providers will be permitted\r\nby invitation only.*\r\n\r\n\r\n\r\n\r\n[image: Email]\r\n<https://notifications.pillsburylaw.com/email_handler.aspx?sid=b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a&redirect=mailto%3a%3fsubject%3dYou%27re+Invited%3a+Aerospace%2c+Defense%2c+%26+Govt+Services+M%26A+Conference(1)%26body%3dhttps%3a%2f%2fnotifications.pillsburylaw.com%2f45%2f5945%2fseptember-2025%2fyou-re-invited--aerospace--defense--and-govt-services-manda-conference(1).asp&checksum=8512ECC2>\r\n[image: LinkedIn]\r\n<https://notifications.pillsburylaw.com/e/jyugkkbfcat1ztq/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>\r\n[image: Twitter]\r\n<https://notifications.pillsburylaw.com/e/nk2nyrv3giqt7q/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>\r\n\r\nPillsbury Winthrop Shaw Pittman LLP | View in Browser\r\n<https://notifications.pillsburylaw.com/e/y5ucijmectzmwsa/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>\r\n© 2025 Pillsbury Winthrop Shaw Pittman LLP. All rights reserved.\r\n7900 Tysons One Place, Suite 500, Tysons, VA 22102, USA\r\nPrivacy Policy\r\n<https://notifications.pillsburylaw.com/e/5aumdwiv8ysefxq/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>\r\n| Cookie Policy\r\n<https://notifications.pillsburylaw.com/e/6fe21u7upl0ojeq/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>\r\n| Manage Your Email Preferences\r\n<https://notifications.pillsburylaw.com/email_handler.aspx?sid=b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a&redirect=%2f5%2f4384%2flanding-pages%2fpreferences---(prefill)-2021.asp&checksum=95279C42>\r\n| Unsubscribe\r\n<https://notifications.pillsburylaw.com/e/sa0gbsm8uf2ofaw/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>\r\n\r\n<https://notifications.pillsburylaw.com/e/z40utksijqnwdbq/b5f2b846-13c6-4812-b4b4-0e0b4d17ac3a>\r\n\r\nJohn M. Thomas | Pillsbury Winthrop Shaw Pittman LLP\r\nSenior Policy Advisor\r\n1200 Seventeenth Street NW | Washington, DC 20036-3006\r\nt +1.202.663.8025\r\njohn.thomas@pillsburylaw.com | pillsburylaw.com\r\n<https://www.pillsburylaw.com>\r\n\r\n\r\n\r\nThe contents of this message, together with any attachments, are intended\r\nonly for the use of the individual or entity to which they are addressed\r\nand may contain information that is legally privileged, confidential and\r\nexempt from disclosure. If you are not the intended recipient, you are\r\nhereby notified that any dissemination, distribution, or copying of this\r\nmessage, or any attachment, is strictly prohibited. If you have received\r\nthis message in error, please notify the original sender or the Pillsbury\r\nWinthrop Shaw Pittman Service Desk at Tel: 800-477-0770, Option 1,\r\nimmediately by telephone and delete this message, along with any\r\nattachments, from your computer. Nothing in this message may be construed\r\nas a digital or electronic signature of any employee of Pillsbury Winthrop\r\nShaw Pittman. Thank you.',0,0,0,0,0,0,'2025-09-17 18:52:35','2025-12-09 19:28:32','2025-12-09 19:28:32','2025-12-09 19:28:32',NULL,NULL,NULL),
(739,4,' <SA1PR18MB4824A815225D11DE988C6117A117A@SA1PR18MB4824.namprd18.prod.outlook.com>',NULL,NULL,'Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration','jtrevey@forgenano.com','James Trevey','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nJordan,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nThanks for moving quickly here. I got bogged down today but better late than never.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<ul style=\"margin-top: 0px; margin-bottom: 0px; list-style-type: disc;\" data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:false,&quot;unorderedStyleType&quot;:1}\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\" class=\"elementToProof\">SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)</div>\r\n</li><ul style=\"margin-top: 0px; margin-bottom: 0px; list-style-type: circle;\" data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:true}\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\" class=\"elementToProof\">This cell has a 100% US supply chain already</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\" class=\"elementToProof\">This cell can be made in the <u>millions</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\" class=\"elementToProof\">SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)</div>\r\n</li><ul style=\"margin-top: 0px; margin-bottom: 0px; list-style-type: circle;\" data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:true}\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\" class=\"elementToProof\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\" class=\"elementToProof\">This cell can be made in the <u>millions\r\n</u>next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\" class=\"elementToProof\">SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.</div>\r\n</li><ul style=\"margin-top: 0px; margin-bottom: 0px; list-style-type: circle;\" data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:true}\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\" class=\"elementToProof\">This cell can be made in the <u>thousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\" class=\"elementToProof\">SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)</div>\r\n</li><ul style=\"margin-top: 0px; margin-bottom: 0px; list-style-type: circle;\" data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:true}\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\" class=\"elementToProof\">This cell can be made in the <u>millions</u>&nbsp;next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these</div>\r\n</li></ul>\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\" class=\"elementToProof\">SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)</div>\r\n</li><ul style=\"margin-top: 0px; margin-bottom: 0px; list-style-type: circle;\" data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:true}\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\" class=\"elementToProof\">This cell can be made in the <u>thousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n</ul>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nI will check with my people on 301 asap.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nI look forward to our next communication.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nJames</div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<hr style=\"display: inline-block; width: 98%;\">\r\n<div style=\"font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 17, 2025 7:56 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;jtrevey@forgenano.com&gt;; Daniel &lt;dansheridanmusic@gmail.com&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration </div>\r\n<div style=\"font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr;\">Gentlemen,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">It was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:</div>\r\n<div style=\"direction: ltr;\" class=\"elementToProof\"><br>\r\n</div>\r\n<ul style=\"direction: ltr;\">\r\n<li style=\"direction: ltr;\">James to&nbsp;send the cell specification sheets as soon as possible.</li><li style=\"direction: ltr;\">LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.</li><li style=\"direction: ltr;\">James to&nbsp;send their term sheet template for throughput contracts.</li><li style=\"direction: ltr;\">We should discuss 301 exclusion support for manufacturing equipment.</li></ul>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">I look forward to our next conversation.&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Best,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; color: black;\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: black;\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: blue;\"><u>jordan<a style=\"color: blue; margin: 0px;\" class=\"OWAAutoLink\" id=\"OWAfde28f8c-4259-88d0-1359-90b32c84206d\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: rgb(5, 99, 193);\"><a style=\"margin-top: 0px; margin-bottom: 0px;\" data-auth=\"NotApplicable\" class=\"OWAAutoLink\" id=\"OWAcfbb2462-d011-b7f2-3b54-f72188fcdb08\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&amp;typo=1\">Lithium\r\n Battery Company</a></span></p>\r\n</body>\r\n</html>','Jordan,\r\n\r\nThanks for moving quickly here. I got bogged down today but better late than never.\r\n\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:\r\n\r\n\r\n  *\r\nSC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)\r\n     *\r\nThis cell has a 100% US supply chain already\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the thousands next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these\r\n  *\r\nSC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the thousands next year by our partner in the EU, until our factory is online in 2027\r\n\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.\r\n\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.\r\n\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret meeting on November 5th in DC?\r\n\r\nI will check with my people on 301 asap.\r\n\r\nI look forward to our next communication.\r\n\r\nJames\r\n\r\n\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\nSent: Wednesday, September 17, 2025 7:56 AM\r\nTo: James Trevey <jtrevey@forgenano.com>; Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\nSubject: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nGentlemen,\r\n\r\nIt was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:\r\n\r\n\r\n  *   James to send the cell specification sheets as soon as possible.\r\n  *   LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.\r\n  *   James to send their term sheet template for throughput contracts.\r\n  *   We should discuss 301 exclusion support for manufacturing equipment.\r\n\r\nI look forward to our next conversation.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&typo=1>',0,0,0,0,0,0,'2025-09-17 22:58:56','2025-12-09 19:28:34','2025-12-09 19:28:34','2025-12-09 19:28:34',NULL,NULL,NULL),
(740,4,'<2081640532.12292559.1758156541488@lor1-app80268.prod.linkedin.com>',NULL,NULL,'Groisman, LLC Founder recently posted','updates-noreply@linkedin.com','LinkedIn','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n              @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n            </style> <style>\r\n            @media (max-width: 480px) { .inline-button, .inline-button table { display: none !important; }\r\n            .full-width-button, .full-width-button table { display: table !important; } }\r\n          </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n            \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n            \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">Today I had the honor of delivering the invocation at the investiture of my…</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-top: 0px; margin-bottom: 0px; margin-left: auto; margin-right: auto; width: 512px; max-width: 512px; padding: 0px;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"bg-color-background-container \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-header-0-home_glimmer_static_badging_with_count&amp;trkEmail=eml-email_network_conversations_01-header-0-home_glimmer_static_badging_with_count-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img class=\"h-[37px] w-[101px]\" alt=\"LinkedIn\" src=\"https://static.licdn.com/sc/h/2fp5x7ci191mxbdy1eynscn59\" data-test-header-static-badging-img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 37px; width: 101px;\" width=\"101\" height=\"37\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" data-test-header-notification-badges style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/messaging/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-header-0-messaging_glimmer&amp;trkEmail=eml-email_network_conversations_01-header-0-messaging_glimmer-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Messaging icon\" src=\"https://static.licdn.com/sc/h/ekkp8yi9j4xx65umpdz3rdmbp\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-header-0-my_network_glimmer&amp;trkEmail=eml-email_network_conversations_01-header-0-my_network_glimmer-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Mynetwork icon\" src=\"https://static.licdn.com/sc/h/4yxfb6j5ycpjfjgehfqgmdx9w\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/notifications/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-header-0-notifications_glimmer&amp;trkEmail=eml-email_network_conversations_01-header-0-notifications_glimmer-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Notifications icon\" src=\"https://static.licdn.com/sc/h/eh1e9j5bszh6p379hn269p3ps\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"p-0 !pb-0 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0px; padding-bottom: 0px !important;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372338238352670720?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372338238352670720?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"actor-card-default\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQF32MhIvN8dDQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1712572239292?e=2147483647&amp;v=beta&amp;t=frxTXyCFprmNjhsL7duaRlUmer1OmDLnPF1W7lbmVWg\" alt=\"Gabriel Groisman\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%); display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Gabriel Groisman </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> Founder of Groisman, LLC, Host of Standpoint with… </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> <td class=\"!w-[80px]\" data-test-id=\"network-post-follow-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 80px !important;\" width=\"80\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=groisman&amp;entityUrn=ADoAAACMT48BZnKk59TIP1yfkn1iIC2egUiSNFc&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" aria-label=\"Follow\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-tertiary-emphasis border-none button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: none; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=groisman&amp;entityUrn=ADoAAACMT48BZnKk59TIP1yfkn1iIC2egUiSNFc&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline \" style=\"text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 text-md leading-regular text-system-gray-90\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> Today I had the honor of delivering the invocation at the investiture of my dear friend, Judge Marlon Weiss.… </span> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372338238352670720?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-truncated~share~message-0-see~more&amp;trkEmail=eml-email_network_conversations_01-truncated~share~message-0-see~more-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <span data-test-id=\"truncated-message-see-more\" class=\"text-color-link font-bold\" style=\"font-weight: 600; color: #0a66c2;\"> see more </span> </a> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"w-auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: auto;\"> <tbody> <tr> <td class=\"pr-0.5\" data-test-reaction=\"LIKE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/91tdscn0h1aaoefui9crf11j6\" alt=\"LIKE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"PRAISE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/adig5urqxi03qzuy6iyjfm1b5\" alt=\"PRAISE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"EMPATHY\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/evs2x5zfnz5g0xrc6u22treq2\" alt=\"EMPATHY\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"reactions-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 27 </td> <td class=\"px-0.5\" data-test-id=\"separator\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\">·</td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"comments-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 4 Comments </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button w-full koshin__button-with-full-width\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372338238352670720?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; width: 100% !important; display: block !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372338238352670720?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; width: 100% !important; display: block !important;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr><td class=\"h-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 16px;\" height=\"16\"></td></tr> <tr> <td class=\"rounded-md\" data-test-id=\"network-post-update-card\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372338238352670720?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image&amp;trkEmail=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"block w-full h-full\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block; height: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-cool-gray-20 rounded-md\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; background-color: #edf3f8;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-center bg-no-repeat auto pt-[71%] pb-[71%] bg-system-gray-40\" align=\"center\" data-test-id=\"update-card-container\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #cfcfcf; background-position: center; background-repeat: no-repeat; padding-top: 71%; padding-bottom: 71%; background-size: cover; background-image: url(&quot;https://media.licdn.com/dms/image/v2/D4E22AQEgztZpKra_qg/feedshare-shrink_2048_1536/B4EZk_OinfK0A0-/0/1757702405836?e=1761177600&amp;v=beta&amp;t=-1B_0Rc6N_-RATEyUdv0HFXN1liKpGbXGn9wibiEhzc&quot;);\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"h-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 100%;\" height=\"100%\"> <tbody> <tr> <td align=\"center\" class=\"overflow-hidden\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; overflow: hidden;\"> <img class=\"w-[448px] h-[252px] hidden hidden\" src=\"https://media.licdn.com/dms/image/v2/D4E22AQEgztZpKra_qg/feedshare-shrink_2048_1536/B4EZk_OinfK0A0-/0/1757702405836?e=1761177600&amp;v=beta&amp;t=-1B_0Rc6N_-RATEyUdv0HFXN1liKpGbXGn9wibiEhzc\" alt=\"View image\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: none; height: 252px; width: 448px;\" width=\"448\" height=\"252\"> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372254069500903424?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372254069500903424?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"actor-card-default\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://static.licdn.com/sc/h/4eby4moebno1i6r34if7lud8o\" alt=\"Francisco Gonzalez\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%); display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Francisco Gonzalez </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> Connecting You With Innovators Across the World… </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> <td class=\"!w-[80px]\" data-test-id=\"network-post-follow-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 80px !important;\" width=\"80\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=fgonzalez1978&amp;entityUrn=ADoAAAA-9xYBnbuef3eUx2FD1R3xAOC9l68iA98&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" aria-label=\"Follow\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-tertiary-emphasis border-none button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: none; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=fgonzalez1978&amp;entityUrn=ADoAAAA-9xYBnbuef3eUx2FD1R3xAOC9l68iA98&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline \" style=\"text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 text-md leading-regular text-system-gray-90\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> Appreciate this coverage in The Dispatch about my friend Charlie Kirk and for my friend John McCormack… </span> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372254069500903424?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-truncated~share~message-0-see~more&amp;trkEmail=eml-email_network_conversations_01-truncated~share~message-0-see~more-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <span data-test-id=\"truncated-message-see-more\" class=\"text-color-link font-bold\" style=\"font-weight: 600; color: #0a66c2;\"> see more </span> </a> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"w-auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: auto;\"> <tbody> <tr> <td class=\"pr-0.5\" data-test-reaction=\"LIKE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/91tdscn0h1aaoefui9crf11j6\" alt=\"LIKE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"EMPATHY\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/evs2x5zfnz5g0xrc6u22treq2\" alt=\"EMPATHY\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"APPRECIATION\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/bud8l3bhm0ajpycdwjvaha2l1\" alt=\"APPRECIATION\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"reactions-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 12 </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button w-full koshin__button-with-full-width\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372254069500903424?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; width: 100% !important; display: block !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372254069500903424?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; width: 100% !important; display: block !important;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr><td class=\"h-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 16px;\" height=\"16\"></td></tr> <tr> <td class=\"rounded-md\" data-test-id=\"network-post-update-card\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372254069500903424?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image&amp;trkEmail=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"block w-full h-full\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block; height: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-cool-gray-20 rounded-md\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; background-color: #edf3f8;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-center bg-no-repeat h-[252px] bg-system-gray-40\" align=\"center\" data-test-id=\"update-card-container\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 252px; background-color: #cfcfcf; background-position: center; background-repeat: no-repeat; background-size: cover; background-image: url(&quot;https://media.licdn.com/dms/image/sync/v2/D4E27AQG8pgJI4IFIvw/articleshare-shrink_1280_800/B4EZk.Bzh2GwAQ-/0/1757682284996?e=1758762000&amp;v=beta&amp;t=zamnEUpYHV2y4weQwus7sQTbxXRE_vhmQy6itb7o3Ao&quot;);\" height=\"252\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"h-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 100%;\" height=\"100%\"> <tbody> <tr> <td align=\"center\" class=\"overflow-hidden\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; overflow: hidden;\"> <img class=\"w-[448px] h-[252px] hidden hidden\" src=\"https://media.licdn.com/dms/image/sync/v2/D4E27AQG8pgJI4IFIvw/articleshare-shrink_1280_800/B4EZk.Bzh2GwAQ-/0/1757682284996?e=1758762000&amp;v=beta&amp;t=zamnEUpYHV2y4weQwus7sQTbxXRE_vhmQy6itb7o3Ao\" alt=\"View image\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: none; height: 252px; width: 448px;\" width=\"448\" height=\"252\"> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"p-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 16px;\"> <p class=\"text-md font-bold leading-regular text-black\" style=\"margin: 0; font-size: 16px; font-weight: 600; line-height: 1.25; color: #000000;\"> The Face of the Young Right </p> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372466772672798722?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372466772672798722?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"actor-card-default\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://media.licdn.com/dms/image/v2/D4D03AQECXBguFLRxEQ/profile-displayphoto-shrink_400_400/B4DZVRwr6ZHYAk-/0/1740833473141?e=2147483647&amp;v=beta&amp;t=oDjAAK3-UUlhLQbwTskDU1XCaS7w-B-tDimtjV6Or08\" alt=\"Bernie Navarro\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%); display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Bernie Navarro </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> President at Benworth Capital, a private money lender </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> <td class=\"!w-[80px]\" data-test-id=\"network-post-follow-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 80px !important;\" width=\"80\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=bernienavarro&amp;entityUrn=ADoAAAKjgkkBZ_FUzEXNaNwOMmJN9a2D_AoBc5Q&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" aria-label=\"Follow\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-tertiary-emphasis border-none button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: none; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=bernienavarro&amp;entityUrn=ADoAAAKjgkkBZ_FUzEXNaNwOMmJN9a2D_AoBc5Q&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline \" style=\"text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 text-md leading-regular text-system-gray-90\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> Governor…you make us proud! 🇵🇷 🇵🇷 🇵🇷 </span> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"w-auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: auto;\"> <tbody> <tr> <td class=\"pr-0.5\" data-test-reaction=\"LIKE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/91tdscn0h1aaoefui9crf11j6\" alt=\"LIKE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"PRAISE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/adig5urqxi03qzuy6iyjfm1b5\" alt=\"PRAISE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"EMPATHY\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/evs2x5zfnz5g0xrc6u22treq2\" alt=\"EMPATHY\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"reactions-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 58 </td> <td class=\"px-0.5\" data-test-id=\"separator\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\">·</td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"comments-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 4 Comments </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button w-full koshin__button-with-full-width\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372466772672798722?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; width: 100% !important; display: block !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372466772672798722?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; width: 100% !important; display: block !important;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr><td class=\"h-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 16px;\" height=\"16\"></td></tr> <tr> <td class=\"reshare-root-post rounded-md overflow-hidden border-1 border-solid border-system-gray-30\" data-test-id=\"reshare-root-post\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; overflow: hidden; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pt-2 px-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 16px; padding-right: 16px; padding-top: 16px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372394960257515521?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"reshare-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"actor-card-default\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://media.licdn.com/dms/image/v2/C560BAQGH8f-NEEH-lA/company-logo_100_100/company-logo_100_100/0/1631339291544?e=1761177600&amp;v=beta&amp;t=3C-GVeqQ_ze76wNrrhR07SyFsyb8qSSNAncHkKGEpMs\" alt=\"Benworth Capital\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; background-color: #eae6df; display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Benworth Capital </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> 2,021 followers </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"p-2 text-md leading-regular text-system-gray-90\" colspan=\"1\" valign=\"top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> Thank you Governor Gonzalez (Jenniffer González Colón) for your kind words and thoughtful discussion. </span> </td> </tr> <tr> <td class=\"rounded-md rounded-t-none\" data-test-id=\"network-post-update-card\" colspan=\"1\" valign=\"top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-top-left-radius: 0px; border-top-right-radius: 0px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372394960257515521?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image&amp;trkEmail=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"block w-full h-full\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block; height: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-cool-gray-20 rounded-md\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; background-color: #edf3f8;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-center bg-no-repeat auto pt-[71%] pb-[71%] bg-system-gray-40\" align=\"center\" data-test-id=\"update-card-container\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #cfcfcf; background-position: center; background-repeat: no-repeat; padding-top: 71%; padding-bottom: 71%; background-size: cover; background-image: url(&quot;https://media.licdn.com/dms/image/v2/D4E22AQET7GEmNBDW5Q/feedshare-shrink_2048_1536/B4EZlACJffHEAw-/0/1757715929915?e=1761177600&amp;v=beta&amp;t=_kFbyg1p32jav_Cjp0bZB9JhF-yrgENvEQmZiqjCidM&quot;);\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"h-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 100%;\" height=\"100%\"> <tbody> <tr> <td align=\"center\" class=\"overflow-hidden\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; overflow: hidden;\"> <img class=\"w-[448px] h-[252px] hidden hidden\" src=\"https://media.licdn.com/dms/image/v2/D4E22AQET7GEmNBDW5Q/feedshare-shrink_2048_1536/B4EZlACJffHEAw-/0/1757715929915?e=1761177600&amp;v=beta&amp;t=_kFbyg1p32jav_Cjp0bZB9JhF-yrgENvEQmZiqjCidM\" alt=\"View image\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: none; height: 252px; width: 448px;\" width=\"448\" height=\"252\"> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7371162789991587840?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7371162789991587840?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"actor-card-default\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://media.licdn.com/dms/image/v2/C5603AQEdMPKQ590EMA/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1658933600516?e=2147483647&amp;v=beta&amp;t=5kP1BWfyyMaevB8dzKxCc8zK9VkmeQfPq6QHBOokZGw\" alt=\"Ricky Caplin\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%); display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Ricky Caplin </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> Founder and Chairman, Caplin Ventures </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> <td class=\"!w-[80px]\" data-test-id=\"network-post-follow-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 80px !important;\" width=\"80\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=ricky-caplin-3b6b9a4&amp;entityUrn=ADoAAADjIroBmRSmReaP5PBiETMH9Gc0xtmBIEw&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" aria-label=\"Follow\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-tertiary-emphasis border-none button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: none; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=ricky-caplin-3b6b9a4&amp;entityUrn=ADoAAADjIroBmRSmReaP5PBiETMH9Gc0xtmBIEw&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline \" style=\"text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 text-md leading-regular text-system-gray-90\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> And we know that in all things God works for the good of those who love him, who have been called according… </span> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7371162789991587840?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-truncated~share~message-0-see~more&amp;trkEmail=eml-email_network_conversations_01-truncated~share~message-0-see~more-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <span data-test-id=\"truncated-message-see-more\" class=\"text-color-link font-bold\" style=\"font-weight: 600; color: #0a66c2;\"> see more </span> </a> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"w-auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: auto;\"> <tbody> <tr> <td class=\"pr-0.5\" data-test-reaction=\"LIKE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/91tdscn0h1aaoefui9crf11j6\" alt=\"LIKE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"EMPATHY\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/evs2x5zfnz5g0xrc6u22treq2\" alt=\"EMPATHY\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"APPRECIATION\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/bud8l3bhm0ajpycdwjvaha2l1\" alt=\"APPRECIATION\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"reactions-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 47 </td> <td class=\"px-0.5\" data-test-id=\"separator\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\">·</td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"comments-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 1 Comment </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button w-full koshin__button-with-full-width\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7371162789991587840?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; width: 100% !important; display: block !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7371162789991587840?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; width: 100% !important; display: block !important;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372222498836213760?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372222498836213760?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"actor-card-default\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://media.licdn.com/dms/image/v2/C4D03AQHu8LUAC1t6eQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1647479936568?e=2147483647&amp;v=beta&amp;t=PvODbaYcpOyey-rr563sfAv6AyW8czEaXS9IBkQijhs\" alt=\"Harry Baum\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%); display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Harry Baum </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> owner at Biz To Biz Networking </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> <td class=\"!w-[80px]\" data-test-id=\"network-post-follow-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 80px !important;\" width=\"80\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=biztobiznetwork&amp;entityUrn=ADoAAAGpy_IBHoGxTtzjC9dgV4FIsna_iHYN3ds&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" aria-label=\"Follow\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-tertiary-emphasis border-none button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: none; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=biztobiznetwork&amp;entityUrn=ADoAAAGpy_IBHoGxTtzjC9dgV4FIsna_iHYN3ds&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline \" style=\"text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 text-md leading-regular text-system-gray-90\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> Monday, Sept. 15th, join Biz To Biz Networking in Boca Raton at Corvina Seafood Grill! Let’s make Brand NEW… </span> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372222498836213760?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-truncated~share~message-0-see~more&amp;trkEmail=eml-email_network_conversations_01-truncated~share~message-0-see~more-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <span data-test-id=\"truncated-message-see-more\" class=\"text-color-link font-bold\" style=\"font-weight: 600; color: #0a66c2;\"> see more </span> </a> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"w-auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: auto;\"> <tbody> <tr> <td class=\"pr-0.5\" data-test-reaction=\"LIKE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/91tdscn0h1aaoefui9crf11j6\" alt=\"LIKE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"reactions-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 2 </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button w-full koshin__button-with-full-width\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372222498836213760?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; width: 100% !important; display: block !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372222498836213760?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; width: 100% !important; display: block !important;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr><td class=\"h-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 16px;\" height=\"16\"></td></tr> <tr> <td class=\"rounded-md\" data-test-id=\"network-post-update-card\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372222498836213760?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image&amp;trkEmail=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"block w-full h-full\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block; height: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-cool-gray-20 rounded-md\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; background-color: #edf3f8;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-center bg-no-repeat h-[252px] bg-system-gray-40\" align=\"center\" data-test-id=\"update-card-container\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 252px; background-color: #cfcfcf; background-position: center; background-repeat: no-repeat; background-size: cover; background-image: url(&quot;https://media.licdn.com/dms/image/v2/D4E22AQF-69zaUq6iAQ/feedshare-shrink_2048_1536/B4EZk5fd42KYAw-/0/1757606175128?e=1761177600&amp;v=beta&amp;t=6mxlvT7056TR0eStUFLaf9v2C1liDD0L4r-JXU9ivZQ&quot;);\" height=\"252\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"h-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 100%;\" height=\"100%\"> <tbody> <tr> <td align=\"center\" class=\"overflow-hidden\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; overflow: hidden;\"> <img class=\"w-[448px] h-[252px] hidden hidden\" src=\"https://media.licdn.com/dms/image/v2/D4E22AQF-69zaUq6iAQ/feedshare-shrink_2048_1536/B4EZk5fd42KYAw-/0/1757606175128?e=1761177600&amp;v=beta&amp;t=6mxlvT7056TR0eStUFLaf9v2C1liDD0L4r-JXU9ivZQ\" alt=\"View image\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: none; height: 252px; width: 448px;\" width=\"448\" height=\"252\"> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"pt-4 pb-2 px-3 bg-color-background-canvas\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding-left: 24px; padding-right: 24px; padding-bottom: 16px; padding-top: 32px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-footer_promo-0-footer_see_all&amp;trkEmail=eml-email_network_conversations_01-footer_promo-0-footer_see_all-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" aria-label=\"See more on LinkedIn\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-footer_promo-0-footer_see_all&amp;trkEmail=eml-email_network_conversations_01-footer_promo-0-footer_see_all-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> See more on LinkedIn </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-lg text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 20px; color: #114951;\"> Get the new LinkedIn desktop app </h2> </td> </tr> <tr> <td class=\"text-center pb-2\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <a href=\"https://apps.microsoft.com/store/detail/9WZDNCRFJ4Q7?launch=true&amp;cid=linkedin_email_upsell&amp;mode=full\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it from Microsoft\" src=\"https://static.licdn.com/sc/h/ejpkkpwvqks31a3cjqokb7fbm\" class=\"h-[40px] w-[112px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 112px;\" width=\"112\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-md text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 16px; color: #114951;\"> Also available on mobile </h2> </td> </tr> <tr> <td class=\"text-center\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <a href=\"https://itunes.apple.com/us/app/linkedin/id288429040?pt=10746&amp;ct=st_appsite_flagship&amp;mt=8\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Download on the App Store\" src=\"https://static.licdn.com/sc/h/76yzkd0h5kiv27lrd4yaenylk\" class=\"h-[40px] w-[120px] pr-1\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 120px; padding-right: 8px;\" width=\"120\" height=\"40\"> </a> <a href=\"https://play.google.com/store/apps/details?id=com.linkedin.android&amp;referrer=st_appsite_flagship\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it on Google Play\" src=\"https://static.licdn.com/sc/h/142qudwblp58zwmc9vkqfplug\" class=\"h-[40px] w-[134px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 134px;\" width=\"134\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px;\"><hr class=\"border-none bg-[#e0dfdd] h-[1px]\" style=\"height: 1px; border-style: none; background-color: #e0dfdd;\"></td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" data-test-id=\"email-footer__intended\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_network_conversations_01-SecurityHelp-0-footerglimmer-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving Network Conversations emails. Some content may be automatically translated based on <a href=\"https://www.linkedin.com/mypreferences/d/language-for-translation\" target=\"_blank\" class=\"link-no-visited-state\" data-tracking-will-navigate data-tracking-control-name=\"email_network_conversations_content_settings_link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-weight: 600; color: #0a66c2;\">your settings</a>.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/mypreferences/u/emailunsub?action=updateEmailSubscription&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-unsubscribe-0-footerGlimmer&amp;trkEmail=eml-email_network_conversations_01-unsubscribe-0-footerGlimmer-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;loid=AQEgCgG8YPP96QAAAZlaS8vTyIaw1iR-yUKo5cYp6oHD7lVYbAgKvzieMsCatvNYqKhNYKvLYdMw4UAArtd6Lm710VGaFX2Thxga7f3kJMtJtnhcnA9x\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Unsubscribe</a>   ·   <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-help-0-footerglimmer&amp;trkEmail=eml-email_network_conversations_01-help-0-footerglimmer-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" data-test-help-link class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=0whnBJnQph7XY1&amp;trk=eml-email_network_conversations_01-footer-0-logoGlimmer&amp;trkEmail=eml-email_network_conversations_01-footer-0-logoGlimmer-null-poh2nf~mfoozrnq~h3-null-null&amp;eid=poh2nf-mfoozrnq-h3&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFtYjI5NmNtNXhMV2d6OlpXMWhhV3hmYm1WMGQyOXlhMTlqYjI1MlpYSnpZWFJwYjI1elh6QXg6.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','Gabriel Groisman shared a post: Today I had the honor of delivering the invocation at the investiture of my dear friend, Judge Marlon Weiss.\r\n\r\nIt was a privilege to share words of…\r\nLIKE PRAISE EMPATHY 27, 4 Comments\r\n\r\n\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7372338238352670720?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&midToken=AQE-iPshthTClw&midSig=0whnBJnQph7XY1&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~mfoozrnq~h3-null-null&eid=poh2nf-mfoozrnq-h3&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\r\n        \r\n\r\n\r\n\r\n          \r\n        \r\n\r\n          Francisco Gonzalez shared a post: Appreciate this coverage in The Dispatch about my friend Charlie Kirk and for my friend John McCormack including my voice in this article. \r\n\r\nMay…\r\nLIKE EMPATHY APPRECIATION 12\r\nThe Face of the Young Right\r\n\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7372254069500903424?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&midToken=AQE-iPshthTClw&midSig=0whnBJnQph7XY1&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~mfoozrnq~h3-null-null&eid=poh2nf-mfoozrnq-h3&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\r\n        \r\n\r\n\r\n\r\n          \r\n        \r\n\r\n          Bernie Navarro shared a post: Governor…you make us proud! 🇵🇷 🇵🇷 🇵🇷\r\nLIKE PRAISE EMPATHY 58, 4 Comments\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7372466772672798722?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&midToken=AQE-iPshthTClw&midSig=0whnBJnQph7XY1&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~mfoozrnq~h3-null-null&eid=poh2nf-mfoozrnq-h3&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\r\n        \r\n\r\n\r\n\r\n          \r\n        \r\n\r\n          Ricky Caplin shared a post: And we know that in all things God works for the good of those who love him, who have been called according to his purpose - Romans 8:28\r\nLIKE EMPATHY APPRECIATION 47, 1 Comment\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7371162789991587840?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&midToken=AQE-iPshthTClw&midSig=0whnBJnQph7XY1&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~mfoozrnq~h3-null-null&eid=poh2nf-mfoozrnq-h3&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\r\n        \r\n\r\n\r\n\r\n          \r\n        \r\n\r\n          Harry Baum shared a post: Monday, Sept. 15th, join Biz To Biz Networking in Boca Raton at Corvina Seafood Grill! Let’s make Brand NEW Business Connections! 5:30-7:30pm $10 a…\r\nLIKE 2\r\n\r\n\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7372222498836213760?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&midToken=AQE-iPshthTClw&midSig=0whnBJnQph7XY1&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~mfoozrnq~h3-null-null&eid=poh2nf-mfoozrnq-h3&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\r\n        \r\n\r\n\r\nSee more on LinkedIn: https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&midToken=AQE-iPshthTClw&midSig=0whnBJnQph7XY1&trk=eml-email_network_conversations_01-footer_promo-0-footer_see_all&trkEmail=eml-email_network_conversations_01-footer_promo-0-footer_see_all-null-poh2nf~mfoozrnq~h3-null-null&eid=poh2nf-mfoozrnq-h3&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\r\n\r\n----------------------------------------\r\n\r\nThis email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\nLearn why we included this: https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&midToken=AQE-iPshthTClw&midSig=0whnBJnQph7XY1&trk=eml-email_network_conversations_01-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_network_conversations_01-SecurityHelp-0-textfooterglimmer-null-poh2nf~mfoozrnq~h3-null-null&eid=poh2nf-mfoozrnq-h3&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\r\nYou are receiving Network Conversations emails. Some content may be automatically translated based on\r\n      <a href=\"https://www.linkedin.com/mypreferences/d/language-for-translation\" target=\"_blank\" class=\"link-no-visited-state\" data-tracking-will-navigate data-tracking-control-name=\"email_network_conversations_content_settings_link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-weight: 600; color: #0a66c2;\">your settings</a>.\r\n\r\n\r\nUnsubscribe: https://www.linkedin.com/comm/mypreferences/u/emailunsub?action=updateEmailSubscription&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&midToken=AQE-iPshthTClw&midSig=0whnBJnQph7XY1&trk=eml-email_network_conversations_01-unsubscribe-0-textfooterglimmer&trkEmail=eml-email_network_conversations_01-unsubscribe-0-textfooterglimmer-null-poh2nf~mfoozrnq~h3-null-null&eid=poh2nf-mfoozrnq-h3&loid=AQEgCgG8YPP96QAAAZlaS8vTyIaw1iR-yUKo5cYp6oHD7lVYbAgKvzieMsCatvNYqKhNYKvLYdMw4UAArtd6Lm710VGaFX2Thxga7f3kJMtJtnhcnA9x\r\nHelp: https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B9ASJRqe8Sj698MkYrCNFwA%3D%3D&midToken=AQE-iPshthTClw&midSig=0whnBJnQph7XY1&trk=eml-email_network_conversations_01-help-0-textfooterglimmer&trkEmail=eml-email_network_conversations_01-help-0-textfooterglimmer-null-poh2nf~mfoozrnq~h3-null-null&eid=poh2nf-mfoozrnq-h3&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjU4YWM4ZDU0NTk5YTc4ZjZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiNGJjZDU3ODg3ZjZiYzEwYTZiYjFlNTk1NjViZTIzYTBjN2EzOTQ5MWNhOWI0ZDcsMSwx\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.\r\nLinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',0,0,0,0,0,0,'2025-09-18 00:49:01','2025-12-09 19:28:34','2025-12-09 19:28:34','2025-12-09 19:28:34',NULL,NULL,NULL),
(741,4,'<010001995cedb592-83ddd64a-9f96-4dc5-a8fc-ddc6352f2a2d-000000@email.amazonses.com>',NULL,NULL,'Your exclusive Prime Big Deal Days offer','no-reply@business.amazon.com','Amazon Business','<!doctype html>\r\n<html lang=\"en-US\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\">\r\n <head>\r\n  <title>Your exclusive Prime Big Deal Days offer</title><!--[if !mso]><!-- -->\r\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><!--<![endif]-->\r\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\r\n  <style type=\"text/css\">#outlook a { padding:0; }           body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block; }</style><!--[if mso]>                    <xml>                      <o:OfficeDocumentSettings xmlns:o=\"urn:schemas-microsoft-com:office:office\">                    <o:AllowPNG/>                          <o:PixelsPerInch>96</o:PixelsPerInch>                      </o:OfficeDocumentSettings>                   <w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\">               <w:DontUseAdvancedTypographyReadingMail/>             </w:WordDocument>                  </xml>                        <style type=\"text/css\">             table { border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt; }             .mj-outlook-group-fix { width:100% !important; }           </style>                  <![endif]--><!--[if !mso]><!-->\r\n  <link href=\"https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <link href=\"https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <style type=\"text/css\">@import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);</style><!--<![endif]-->\r\n  <style type=\"text/css\">@media only screen and (min-width:641px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }</style>\r\n  <style type=\"text/css\">.movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                .links-232F3E-underline-bold a { color: #232F3E; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .mso-button-dark-mode a {background: transparent !important;} .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .links-161D26-underline a { color: #161D26; text-decoration: underline; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:641px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-165px { max-width: 165px !important} .padding-32px-40px-20px-40px { padding: 32px 40px 20px 40px !important} .font-size-36px { font-size: 36px !important} .padding-0px-40px-24px-40px { padding: 0px 40px 24px 40px !important} .max-width-640px { max-width: 640px !important} .padding-0px-40px-0px-40px { padding: 0px 40px 0px 40px !important} .padding-24px-40px-0px-40px { padding: 24px 40px 0px 40px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }</style>\r\n  <style type=\"text/css\">ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 641px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}</style><!--[if mso]>             <style>                 .hide-on-mobile {display:block !important}             </style>         <![endif]--><!--[if mso]>                 <style>                              .mso-font-size-36px { font-size: 36px !important; }                 </style>             <![endif]-->\r\n  <style>[class~=\"x_body\"] { width: 99.9% }</style>\r\n </head>\r\n <body style=\"word-spacing:normal;background-color:#FFFFFF;\" class=\"body\" id=\"body\">\r\n  <div>\r\n   <p><img alt=\"\" src=\"http://elinks.business.amazon.com/CI0/010001995cedb592-83ddd64a-9f96-4dc5-a8fc-ddc6352f2a2d-000000/-8mhSTp0uk2ZgU7bHZBcBZRfP4Qkjm-ohGk6tgkICsk=423\" style=\"display: none; width: 1px; height: 1px;\">\r\n</p>\r\n  </div><!--[if !mso 9]><!-->\r\n  <div id=\"emailPreHeader\" style=\"display: none;\">\r\n   Get $50 back in rewards when you sign up\r\n  </div>\r\n  <div style=\"display: none;\">\r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  </div><!--<![endif]-->\r\n  <div style=\"background-color:#FFFFFF;background-position:center center;background-size:auto;background-repeat:repeat;\" id=\"main\">\r\n   <!--[if mso]>\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><![endif]--><!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:16px 16px 14px 16px;text-align:center;vertical-align:top;mso-padding-alt:14px 0px 14px 40px;\" class=\"block-grid padding-14px-0px-14px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:600px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n              <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:middle;width:300px;\" ><![endif]-->\r\n              <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n               <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n                <tbody>\r\n                 <tr>\r\n                  <td class=\"padding-0px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 0px 0px;word-break:break-word;mso-padding-alt:0px 0px 0px 0px;text-align:left;\">\r\n                   <div style=\"margin:0 auto 0 0;\" class=\"max-width-165px\">\r\n                    <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%3Fref_=b2b_life_e1_pbdd25_bp_us_kronos_50back/1/010001995cedb592-83ddd64a-9f96-4dc5-a8fc-ddc6352f2a2d-000000/KIvyazU1qUrpw9nOGUfpVJaAwzIq2FwKEWGsr-Tjick=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business\" height=\"auto\" width=\"165\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-2color2x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                   </div></td>\r\n                 </tr>\r\n                </tbody>\r\n               </table>\r\n              </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:middle;width:300px;\" ><![endif]-->\r\n              <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n               <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n                <tbody>\r\n                 <tr>\r\n                  <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                   <div style=\"line-height:0px;height:0px;mso-line-height-alt:0px;\">\r\n                    &nbsp;\r\n                   </div></td>\r\n                 </tr>\r\n                </tbody>\r\n               </table>\r\n              </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:32px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:32px 40px 20px 40px;\" class=\"block-grid padding-32px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-232F3E-underline-bold\">\r\n                  <div style=\"font-family:\'Ember Modern Display\', Arial, sans-serif;font-size:28px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:2.688em;color:#161D26;\" class=\"mso-font-size-36px font-size-36px\">\r\n                   <p style=\"margin: 0 0 0px 0;\">Just in time for Prime Big Deal Days. Sign up, get $50 back in rewards</p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 16px 24px 16px;text-align:center;vertical-align:top;mso-padding-alt:0px 40px 24px 40px;\" class=\"block-grid padding-0px-40px-24px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td valign=\"middle\" class=\"button-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div>\r\n                  <!--[if mso]>\r\n<table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\">\r\n<tr>\r\n<td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_life_e1_pbdd25_bp_us_kronos_50back%26return_to=%252Fab%252Fincentives%252Factivate%253FcampaignId%253De7e2c3d8-02c8-4c6a-b490-2e4e59bf6a4e%2526fwd%253D%252Fbusinessprime/1/010001995cedb592-83ddd64a-9f96-4dc5-a8fc-ddc6352f2a2d-000000/y9BN0v-5-HuISiJ33wCYo-9gUrVdre87724jdoQh8lE=423\" fillcolor=\"#FFD814\" arcsize=\"58%\" style=\"v-text-anchor:middle;width:76.5pt;height:32.25pt;\" stroke=\"f\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_life_e1_pbdd25_bp_us_kronos_50back%26return_to=%252Fab%252Fincentives%252Factivate%253FcampaignId%253De7e2c3d8-02c8-4c6a-b490-2e4e59bf6a4e%2526fwd%253D%252Fbusinessprime/1/010001995cedb592-83ddd64a-9f96-4dc5-a8fc-ddc6352f2a2d-000000/y9BN0v-5-HuISiJ33wCYo-9gUrVdre87724jdoQh8lE=423\" style=\"display: inline-block; background: #FFD814; color: #161D26; font-family: \'Amber Ember\', Arial, sans-serif; font-size: 16px; font-weight: normal; line-height: 1.2; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 12px 24px 12px 24px; mso-padding-alt: 0px; border-radius: 25px; border-left: 0 none #FFFFFF; border-right: 0 none #FFFFFF; border-top: 0 none #FFFFFF; border-bottom: 0 none #FFFFFF; mso-border-alt: none; box-sizing: border-box;\" target=\"_blank\" width=\"102\">Sign up </a><!--[if mso]></center></a:textbox></a:roundrect>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\">\r\n                  <div style=\"margin:0 auto;\" class=\"max-width-640px\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_life_e1_pbdd25_bp_us_kronos_50back%26return_to=%252Fab%252Fincentives%252Factivate%253FcampaignId%253De7e2c3d8-02c8-4c6a-b490-2e4e59bf6a4e%2526fwd%253D%252Fbusinessprime/2/010001995cedb592-83ddd64a-9f96-4dc5-a8fc-ddc6352f2a2d-000000/uAafk-6BRnnWNTTYP0auYBIMwXF6i2qPnYR4L74maUM=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Just in time for Prime Big Deal Days. Sign up, get $50 back in rewards.\" height=\"auto\" width=\"640\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/HVE/PBDD25/Email/US-EN_AB_PBDD25_P1_182_Email_Wide_1280x460.jpg\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"[object Object]\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;mso-padding-alt:0px 0px 0px 0px;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                  <div style=\"line-height:24px;height:24px;mso-line-height-alt:24px;\">\r\n                   &nbsp;\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:0px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:0px 40px 0px 40px;\" class=\"block-grid padding-0px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                  <div class=\"links-007185-bold\">\r\n                   <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:normal;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.375em;color:#222D3A;\">\r\n                    <p style=\"margin: 0 0 0px 0;\">To celebrate this year\'s Prime Big Deal Days on October 7-8, <span style=\"font-weight: bold;\">customers who sign up for the Duo plan will also earn $50 back in Business Prime Rewards.&nbsp;</span></p>\r\n                    <p style=\"margin: 0 0 0px 0;\">&nbsp;</p>\r\n                    <p style=\"margin: 0 0 0px 0;\">Join today to enjoy fast, free Business Delivery on early Prime Big Deal Days offers.</p>\r\n                   </div>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:24px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:24px 40px 0px 40px;\" class=\"block-grid padding-24px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td valign=\"middle\" class=\"button-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                  <div>\r\n                   <!--[if mso]>\r\n<table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\">\r\n<tr>\r\n<td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_life_e1_pbdd25_bp_us_kronos_50back%26return_to=%252Fab%252Fincentives%252Factivate%253FcampaignId%253De7e2c3d8-02c8-4c6a-b490-2e4e59bf6a4e%2526fwd%253D%252Fbusinessprime/2/010001995cedb592-83ddd64a-9f96-4dc5-a8fc-ddc6352f2a2d-000000/uAafk-6BRnnWNTTYP0auYBIMwXF6i2qPnYR4L74maUM=423\" fillcolor=\"#FFFFFF\" arcsize=\"17%\" style=\"v-text-anchor:middle;width:65.25pt;height:34.5pt;\" strokecolor=\"#D5D9D9\" strokeweight=\"1.5pt\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_life_e1_pbdd25_bp_us_kronos_50back%26return_to=%252Fab%252Fincentives%252Factivate%253FcampaignId%253De7e2c3d8-02c8-4c6a-b490-2e4e59bf6a4e%2526fwd%253D%252Fbusinessprime/3/010001995cedb592-83ddd64a-9f96-4dc5-a8fc-ddc6352f2a2d-000000/Cfv58ACcpsy-Cs_PeZXkYhiSa1OuXfecxGsY5QubQM8=423\" style=\"display: inline-block; background: #FFFFFF; color: #161D26; font-family: \'Amber Ember\', Arial, sans-serif; font-size: 16px; font-weight: normal; line-height: 1.2; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 12px 16px 12px 16px; mso-padding-alt: 0px; border-radius: 8px; border-left: 2px solid #D5D9D9; border-right: 2px solid #D5D9D9; border-top: 2px solid #D5D9D9; border-bottom: 2px solid #D5D9D9; mso-border-alt: none; box-sizing: border-box;\" target=\"_blank\" width=\"89\">Sign up </a><!--[if mso]></center></a:textbox></a:roundrect>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;mso-padding-alt:0px 0px 0px 0px;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                 <div style=\"line-height:30px;height:30px;mso-line-height-alt:30px;\">\r\n                  &nbsp;\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3f4492e978609435.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=56069e11-c409-46c6-9bee-56d74afa6b32&amp;mi_campaignId=8534362679&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=1&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=56069e11-c409-46c6-9bee-56d74afa6b32&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_life_e1_pbdd25_bp_us_kronos_50back\">\r\n                  </div></td>\r\n                </tr>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=56069e11-c409-46c6-9bee-56d74afa6b32%26mi_campaignId=8534362679%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=1%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=56069e11-c409-46c6-9bee-56d74afa6b32%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_life_e1_pbdd25_bp_us_kronos_50back%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001995cedb592-83ddd64a-9f96-4dc5-a8fc-ddc6352f2a2d-000000/Q8LymAgZ5xPmrY-BKdBKWHxM1dVNpfMUOtjIuVFfwYk=423\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=56069e11-c409-46c6-9bee-56d74afa6b32&amp;mi_campaignId=8534362679&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=1&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=56069e11-c409-46c6-9bee-56d74afa6b32&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_life_e1_pbdd25_bp_us_kronos_50back\"></a>\r\n                  </div></td>\r\n                </tr>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=56069e11-c409-46c6-9bee-56d74afa6b32%26mi_campaignId=8534362679%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=2%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=56069e11-c409-46c6-9bee-56d74afa6b32%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_life_e1_pbdd25_bp_us_kronos_50back%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001995cedb592-83ddd64a-9f96-4dc5-a8fc-ddc6352f2a2d-000000/2uLZn2XclEPmZuBH0v9pMvlhjqLZjQTeez-szKHj3vg=423\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=56069e11-c409-46c6-9bee-56d74afa6b32&amp;mi_campaignId=8534362679&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=2&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=56069e11-c409-46c6-9bee-56d74afa6b32&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_life_e1_pbdd25_bp_us_kronos_50back\"></a>\r\n                  </div></td>\r\n                </tr>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=56069e11-c409-46c6-9bee-56d74afa6b32%26mi_campaignId=8534362679%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=3%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=56069e11-c409-46c6-9bee-56d74afa6b32%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_life_e1_pbdd25_bp_us_kronos_50back%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001995cedb592-83ddd64a-9f96-4dc5-a8fc-ddc6352f2a2d-000000/iv48Qb11ato1yjNLWthipFTIJ9YvhxXk-lFMrjvpiMo=423\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=56069e11-c409-46c6-9bee-56d74afa6b32&amp;mi_campaignId=8534362679&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=3&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=56069e11-c409-46c6-9bee-56d74afa6b32&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_life_e1_pbdd25_bp_us_kronos_50back\"></a>\r\n                  </div></td>\r\n                </tr>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=56069e11-c409-46c6-9bee-56d74afa6b32%26mi_campaignId=8534362679%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=4%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=56069e11-c409-46c6-9bee-56d74afa6b32%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_life_e1_pbdd25_bp_us_kronos_50back%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001995cedb592-83ddd64a-9f96-4dc5-a8fc-ddc6352f2a2d-000000/7euSrAnqUJRtrloGFB5RWhe6HwrJ9pLjzmr8Y2SVqaU=423\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=56069e11-c409-46c6-9bee-56d74afa6b32&amp;mi_campaignId=8534362679&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=4&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=56069e11-c409-46c6-9bee-56d74afa6b32&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_life_e1_pbdd25_bp_us_kronos_50back\"></a>\r\n                  </div></td>\r\n                </tr>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=56069e11-c409-46c6-9bee-56d74afa6b32%26mi_campaignId=8534362679%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=5%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=56069e11-c409-46c6-9bee-56d74afa6b32%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_life_e1_pbdd25_bp_us_kronos_50back%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001995cedb592-83ddd64a-9f96-4dc5-a8fc-ddc6352f2a2d-000000/ojwpQvv8RTHPecPUO91JaaV81MO8ck3HKe-Bm89sovk=423\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=56069e11-c409-46c6-9bee-56d74afa6b32&amp;mi_campaignId=8534362679&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=5&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=56069e11-c409-46c6-9bee-56d74afa6b32&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_life_e1_pbdd25_bp_us_kronos_50back\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <!--[if !mso]><!-->\r\n              <tbody>\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3f4492e978609435.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=56069e11-c409-46c6-9bee-56d74afa6b32&amp;mi_campaignId=8534362679&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=1&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=56069e11-c409-46c6-9bee-56d74afa6b32&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_life_e1_pbdd25_bp_us_kronos_50back\">\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=56069e11-c409-46c6-9bee-56d74afa6b32%26mi_campaignId=8534362679%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=1%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=56069e11-c409-46c6-9bee-56d74afa6b32%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_life_e1_pbdd25_bp_us_kronos_50back%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001995cedb592-83ddd64a-9f96-4dc5-a8fc-ddc6352f2a2d-000000/9AeSlerPiKRL6bbMQswQ5PbYLJPHgB7LA15UCkScSwY=423\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=56069e11-c409-46c6-9bee-56d74afa6b32&amp;mi_campaignId=8534362679&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=1&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=56069e11-c409-46c6-9bee-56d74afa6b32&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_life_e1_pbdd25_bp_us_kronos_50back\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=56069e11-c409-46c6-9bee-56d74afa6b32%26mi_campaignId=8534362679%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=2%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=56069e11-c409-46c6-9bee-56d74afa6b32%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_life_e1_pbdd25_bp_us_kronos_50back%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001995cedb592-83ddd64a-9f96-4dc5-a8fc-ddc6352f2a2d-000000/zU9rerOoNKJlmiTAl2Kg2SUa2mHlRpmeCxbSX-7m5d4=423\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=56069e11-c409-46c6-9bee-56d74afa6b32&amp;mi_campaignId=8534362679&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=2&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=56069e11-c409-46c6-9bee-56d74afa6b32&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_life_e1_pbdd25_bp_us_kronos_50back\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=56069e11-c409-46c6-9bee-56d74afa6b32%26mi_campaignId=8534362679%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=3%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=56069e11-c409-46c6-9bee-56d74afa6b32%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_life_e1_pbdd25_bp_us_kronos_50back%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001995cedb592-83ddd64a-9f96-4dc5-a8fc-ddc6352f2a2d-000000/e1nRGPeK55cUunSIcVnACqz324kA-ttjgg52lrXT4-k=423\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=56069e11-c409-46c6-9bee-56d74afa6b32&amp;mi_campaignId=8534362679&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=3&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=56069e11-c409-46c6-9bee-56d74afa6b32&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_life_e1_pbdd25_bp_us_kronos_50back\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=56069e11-c409-46c6-9bee-56d74afa6b32%26mi_campaignId=8534362679%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=4%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=56069e11-c409-46c6-9bee-56d74afa6b32%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_life_e1_pbdd25_bp_us_kronos_50back%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001995cedb592-83ddd64a-9f96-4dc5-a8fc-ddc6352f2a2d-000000/bSO-YB-PWbgKctQHGRSLMq3IDKwLHpEIhPyTB-LcEvw=423\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=56069e11-c409-46c6-9bee-56d74afa6b32&amp;mi_campaignId=8534362679&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=4&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=56069e11-c409-46c6-9bee-56d74afa6b32&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_life_e1_pbdd25_bp_us_kronos_50back\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=56069e11-c409-46c6-9bee-56d74afa6b32%26mi_campaignId=8534362679%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=5%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=56069e11-c409-46c6-9bee-56d74afa6b32%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_life_e1_pbdd25_bp_us_kronos_50back%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001995cedb592-83ddd64a-9f96-4dc5-a8fc-ddc6352f2a2d-000000/gY7EwJ_nzibKutsdK60_eKS02JCtNvPCsNgt7_sRhV8=423\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=56069e11-c409-46c6-9bee-56d74afa6b32&amp;mi_campaignId=8534362679&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=5&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=56069e11-c409-46c6-9bee-56d74afa6b32&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_life_e1_pbdd25_bp_us_kronos_50back\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]-->\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F7F7F7;background-color:#F7F7F7;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F7F7F7;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><!--[if !mso]><!-- --><p style=\"border-top:solid 1px #D5D9D9;font-size:1px;margin:0 auto;width:100%;text-align:center;\"></p><!--<![endif]--><!--Divider--><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-top:solid 1px #D5D9D9;font-size:1px;margin:0 auto;width:640px;text-align:center;\" role=\"presentation\" width=\"640px\" >\r\n<tr>\r\n<td style=\"height:0;line-height:0;\"> &nbsp; </td>\r\n</tr>\r\n</table><![endif]--></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F5F3EF;background-color:#F5F3EF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F5F3EF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-161D26-underline\">\r\n                  <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#222D3A;\">\r\n                   <p style=\"margin: 0;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fgp%2Fhelp%2Fcustomer%2Fdisplay.html%3Fref_=b2b_life_e1_pbdd25_bp_us_kronos_50back%26nodeId=TcqbDfSE0qpqvXei6k/1/010001995cedb592-83ddd64a-9f96-4dc5-a8fc-ddc6352f2a2d-000000/V-0zECAeLZV82x89_1AZSR_AiUeanhMOUZZHzv-OOE0=423\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(22, 29, 38); text-decoration: underline;\">Terms and Conditions apply</a>. Offer expires October 8, 2025 at 11:59pm PT. Max reward for this offer is $50. Don\'t have a Prime membership? Try Business Prime Essentials free for 30-days. Please note that product prices and availability are subject to change. Prices and availability were accurate at the time this email was sent. However, they may differ from those you see when you visit Amazon.com.</p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#161D26;background-color:#161D26;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#161D26;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\">\r\n            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n             <tbody>\r\n              <tr>\r\n               <td style=\"line-height:0;font-size:0;direction:rtl;\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:252px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-45 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-align-right social-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\"><!--[if mso | IE]>\r\n<table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" >\r\n<tr>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.facebook.com%2FAmazonBusiness%2F%3Fref_=b2b_life_e1_pbdd25_bp_us_kronos_50back/1/010001995cedb592-83ddd64a-9f96-4dc5-a8fc-ddc6352f2a2d-000000/wZAG5QqgGAu6zPWEZuFKRLL7kovuMXTfldOxsFhZkE4=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Facebook\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Facebook-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Ftwitter.com%2FAmazonBusiness%3Fref_=b2b_life_e1_pbdd25_bp_us_kronos_50back/1/010001995cedb592-83ddd64a-9f96-4dc5-a8fc-ddc6352f2a2d-000000/YeIplfl3aTq2sEImHpMeDNqeuuO31hvaaNarQD7kNh8=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Twitter\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Twitter-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.linkedin.com%2Fcompany%2Famazon-business%2F%3Fref_=b2b_life_e1_pbdd25_bp_us_kronos_50back/1/010001995cedb592-83ddd64a-9f96-4dc5-a8fc-ddc6352f2a2d-000000/V6eMxQONlx7Yv57XaNR_3bNmTwbnRnZx62Q82F3-f6w=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Linkedin\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-LinkedIn-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"padding-10px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 20px 0px;word-break:break-word;mso-padding-alt:10px 0px 0px 0px;text-align:right;\">\r\n                     <div style=\"margin:0 auto 0 0;max-width:163px;\" class=\"margin-0-0-0-auto\">\r\n                      <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2F%3Fref_=b2b_life_e1_pbdd25_bp_us_kronos_50back%26ref_=b2b_life_e1_pbdd25_bp_us_kronos_50back/1/010001995cedb592-83ddd64a-9f96-4dc5-a8fc-ddc6352f2a2d-000000/jv1LlFGnuheBaixrVvn0I0jbn14HAZ45uZ92MqBJtgc=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business logo\" height=\"auto\" width=\"163\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-white2x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:308px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-55 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Fen%2Fcontact-us%3Fref_=b2b_life_e1_pbdd25_bp_us_kronos_50back/1/010001995cedb592-83ddd64a-9f96-4dc5-a8fc-ddc6352f2a2d-000000/gz6DF55KhQdSIguF62HVgImEsCsanOrNEukDTTb0VDE=423\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">Contact us</a> | <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fab%2Fmanage%2Faccount%2F%3Fref_=b2b_life_e1_pbdd25_bp_us_kronos_50back/1/010001995cedb592-83ddd64a-9f96-4dc5-a8fc-ddc6352f2a2d-000000/aCbwXhH0ckYoHZCqw3r_bfVXphWqXIkYuoGCk3_H_AQ=423\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">Manage account</a></p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\">If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Femail-preferences%2Fep%2Ficw1tEKPSo4UNQPJXxxw7fYkvLnxN1yMTx5I*mk9fv%2B1Tp0cUGb*su3bVQ==%2F8534362679%2FzJ7UA99RaszWQKZAnt8%2BJHo%2BTZ2aiuaIRdd5fc2AdoHOYWzpB%2BXke13h4zEDutVktuyX7OXyRMpyB8CUNekpiEUOh5uSTCtJ5hRgjo1%2B1gMi2Ll3SILOgzaMIruKxUHOyK9RbTfxPqm6c6qlcG2rxAX021L%2BcdOr1i3u5Rn*CWyFPDTqYWKYwq0WFCuHSGohcoCTz*u5lsffuv*XT7JJ4o2LhU9%2BZ7lypwo*4KfIC6VR%2Bx4gUx0RBB0GuFtdTUKjAopSR0v8B5Zc8d1F3d8rT2A36vUPllm*aHUK2rsFpUhHjebP1gSLcuA2xM3oZfZ7u6Mbg7Gn2fwjnLYoS%2BbwWBKlsT5gjEdcVbUX3rrcRcKX%2B64%2BE6Y=%2FsAwW4oq*PF1jGOxuaqCg972Mu%2BpQkRbM50sSxyi*T6Yt%3Fref_=b2b_life_e1_pbdd25_bp_us_kronos_50back/1/010001995cedb592-83ddd64a-9f96-4dc5-a8fc-ddc6352f2a2d-000000/EQB5JfWlhzoTUtCUAZnq2VRbrQqR7ubRW-EPfpbhRLk=423\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">email preferences</a>.</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 30px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\">© 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210</p>\r\n                       <p style=\"margin: 0;\">&nbsp;</p>\r\n                       <p style=\"margin: 0;\">Reference: 8534362679</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n              </tr>\r\n             </tbody>\r\n            </table></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--><!--[if mso]>\r\n</table><![endif]-->\r\n  </div>\r\n </body>\r\n</html>\r\n','\r\n\r\n \r\n  Your exclusive Prime Big Deal Days offer\r\n  \r\n  \r\n  \r\n  #outlook a { padding:0; }           body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block; }\r\n  \r\n  \r\n  @import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);\r\n  @media only screen and (min-width:641px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }\r\n  .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                .links-232F3E-underline-bold a { color: #232F3E; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .mso-button-dark-mode a {background: transparent !important;} .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .links-161D26-underline a { color: #161D26; text-decoration: underline; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:641px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-165px { max-width: 165px !important} .padding-32px-40px-20px-40px { padding: 32px 40px 20px 40px !important} .font-size-36px { font-size: 36px !important} .padding-0px-40px-24px-40px { padding: 0px 40px 24px 40px !important} .max-width-640px { max-width: 640px !important} .padding-0px-40px-0px-40px { padding: 0px 40px 0px 40px !important} .padding-24px-40px-0px-40px { padding: 24px 40px 0px 40px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }\r\n  ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 641px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}\r\n  [class~=\"x_body\"] { width: 99.9% }\r\n \r\n \r\n  \r\n   \r\n\r\n  \r\n  \r\n   Get $50 back in rewards when you sign up\r\n  \r\n  \r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  \r\n  \r\n   \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                   \r\n                 \r\n                \r\n               \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    &nbsp;\r\n                   \r\n                 \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   Just in time for Prime Big Deal Days. Sign up, get $50 back in rewards\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                   Sign up \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   &nbsp;\r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    To celebrate this year\'s Prime Big Deal Days on October 7-8, customers who sign up for the Duo plan will also earn $50 back in Business Prime Rewards.&nbsp;\r\n                    &nbsp;\r\n                    Join today to enjoy fast, free Business Delivery on early Prime Big Deal Days offers.\r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                    Sign up \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  &nbsp;\r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   Terms and Conditions apply. Offer expires October 8, 2025 at 11:59pm PT. Max reward for this offer is $50. Don\'t have a Prime membership? Try Business Prime Essentials free for 30-days. Please note that product prices and availability are subject to change. Prices and availability were accurate at the time this email was sent. However, they may differ from those you see when you visit Amazon.com.\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       Contact us | Manage account\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your email preferences.\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       © 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210\r\n                       &nbsp;\r\n                       Reference: 8534362679\r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n   \r\n  \r\n \r\n\r\n',0,0,0,0,0,0,'2025-09-18 13:05:06','2025-12-09 19:28:35','2025-12-09 19:28:35','2025-12-09 19:28:35',NULL,NULL,NULL),
(742,4,'<CAGgBgfAe8KjzC1B6LVXudLOTTf_11XJd_qQ1k_GG4A7L9BtABw@mail.gmail.com>',NULL,NULL,'Business Question: SMT Assembly (09/18/25 1025)','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">Rick:</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">I&#39;m going to format the subject line like this for business-specific things outside of my design efforts going forward.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">What&#39;s the ETA on your surface-mount line being up and running?</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">In the meantime, I will try to get assembly quotes, very low priority, from the USA, mainland China, and Taiwan.  I&#39;ll try to target getting quotes for 100, 500, and 1000 pieces.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">For the GPS module, I currently have a no-bid from mainland China, they can&#39;t sell us the GPS module we&#39;ve chosen.  I&#39;m negotiating pricing with Taiwan.<br></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">These efforts are to start to lay down a pre-production model, not to be confused with prototypes.  A prototype is intended to solve a problem or test an idea.  A pre-production model is to prove we&#39;re ready to go to production, to make sure everything is in order.  A pre-production run of 1-10 units is always prudent.  It is also good to build 1-10% of the production quantity needed, because it might go to a different contract manufacting house, and their strengths and weaknesses want to be something you understand.<br></div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><div><font face=\"courier new, monospace\">Regards,</font></div><div><font face=\"courier new, monospace\">Thomas Pownall</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">CADX Services, Inc.</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Tel: 585-624-1491 X101</font></div><div><font face=\"courier new, monospace\">Fax: 585-582-1101</font></div><div><font face=\"courier new, monospace\">E-Mail: <a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a></font></div><div><font face=\"courier new, monospace\">Web: <a href=\"http://www.cadxservices.com\" target=\"_blank\">http://www.cadxservices.com</a></font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\">**************** Confidentiality Statement ****************</font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Privileged/Confidential Information may be contained in this</font></div><div><font face=\"courier new, monospace\">message. If you are not the addressee indicated in this message</font></div><div><font face=\"courier new, monospace\">(or responsible for delivery of the message to such person),</font></div><div><font face=\"courier new, monospace\">you may not copy or deliver this message to anyone. In such</font></div><div><font face=\"courier new, monospace\">case, you should destroy this message, and notify us</font></div><div><font face=\"courier new, monospace\">immediately. If you or your employer does not consent to</font></div><div><font face=\"courier new, monospace\">Internet email messages of this kind, please advise us</font></div><div><font face=\"courier new, monospace\">immediately. Opinions, conclusions and other information</font></div><div><font face=\"courier new, monospace\">expressed in this message are not given or endorsed by my firm</font></div><div><font face=\"courier new, monospace\">or employer unless otherwise indicated by an authorized</font></div><div><font face=\"courier new, monospace\">representative independent of this message.</font></div></div></div></div></div></div></div>','Rick:\r\n\r\nI\'m going to format the subject line like this for business-specific things\r\noutside of my design efforts going forward.\r\n\r\nWhat\'s the ETA on your surface-mount line being up and running?\r\n\r\nIn the meantime, I will try to get assembly quotes, very low priority, from\r\nthe USA, mainland China, and Taiwan.  I\'ll try to target getting quotes for\r\n100, 500, and 1000 pieces.\r\n\r\nFor the GPS module, I currently have a no-bid from mainland China, they\r\ncan\'t sell us the GPS module we\'ve chosen.  I\'m negotiating pricing with\r\nTaiwan.\r\n\r\nThese efforts are to start to lay down a pre-production model, not to be\r\nconfused with prototypes.  A prototype is intended to solve a problem or\r\ntest an idea.  A pre-production model is to prove we\'re ready to go to\r\nproduction, to make sure everything is in order.  A pre-production run of\r\n1-10 units is always prudent.  It is also good to build 1-10% of the\r\nproduction quantity needed, because it might go to a different contract\r\nmanufacting house, and their strengths and weaknesses want to be something\r\nyou understand.\r\n\r\nRegards,\r\nThomas Pownall\r\n\r\nCADX Services, Inc.\r\n\r\nTel: 585-624-1491 X101\r\nFax: 585-582-1101\r\nE-Mail: tpownall@cadxservices.com\r\nWeb: http://www.cadxservices.com\r\n\r\n***********************************************************\r\n**************** Confidentiality Statement ****************\r\n***********************************************************\r\n\r\nPrivileged/Confidential Information may be contained in this\r\nmessage. If you are not the addressee indicated in this message\r\n(or responsible for delivery of the message to such person),\r\nyou may not copy or deliver this message to anyone. In such\r\ncase, you should destroy this message, and notify us\r\nimmediately. If you or your employer does not consent to\r\nInternet email messages of this kind, please advise us\r\nimmediately. Opinions, conclusions and other information\r\nexpressed in this message are not given or endorsed by my firm\r\nor employer unless otherwise indicated by an authorized\r\nrepresentative independent of this message.',0,0,0,0,0,0,'2025-09-18 14:27:27','2025-12-09 19:28:35','2025-12-09 19:28:35','2025-12-09 19:28:35',NULL,NULL,NULL),
(743,4,'<CAJO9__ZahkcdMLYO-agvGm-Mp6YewekBk2y=wBiDVUpAfvMVSA@mail.gmail.com>',NULL,NULL,'Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Hi James,</div><div><br></div><div><br></div>Thank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information to optimize our collaboration and planning:<br><br>Please share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.<br><br>Indicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.<br><br>Identify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.<br><br>Outline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.<br><br>Clarify your minimum order quantities and expected pricing for each product line.<br><br>Please also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.<br><br>Importantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted commercial timelines, and expected pricing.<br><br>Additionally, for reference, these are LBC’s most popular cells we&#39;ve made module and packs for:<br><br>18650:<br><br>NMC: TNL-ITR18650-2600P<br><br>LFP: SW18650-26HPA<br><br>LFP: IFR18650-2000mAh<br><br>21700:<br><br>NMC: INR21700-50S<br><br>NMC: INR21700-4000<br><br>Providing this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.<div><br></div><div>In terms of the shows you mentioned, we are getting our schedules aligned so we can attend.  What&#39;s the &quot;secret meeting&quot; in Nov? <br><br>We look forward to your prompt response so we can efficiently move to the next stages.<div><br></div><div><br></div><div><div>Talk soon, </div><div><br><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div></div></div></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Sep 17, 2025 at 7:00 PM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"msg-2971314181662825399\">\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nThanks for moving quickly here. I got bogged down today but better late than never. </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nAttached you&#39;ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<ul style=\"margin-top:0px;margin-bottom:0px;list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won&#39;t tell us the application)</div>\r\n</li><ul style=\"margin-top:0px;margin-bottom:0px;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell has a 100% US supply chain already</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell can be made in the <u>millions</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)</div>\r\n</li><ul style=\"margin-top:0px;margin-bottom:0px;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell can be made in the <u>millions\r\n</u>next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.</div>\r\n</li><ul style=\"margin-top:0px;margin-bottom:0px;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell can be made in the <u>thousands</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)</div>\r\n</li><ul style=\"margin-top:0px;margin-bottom:0px;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell can be made in the <u>millions</u> next year by our partner in the EU. As we show adoption, we&#39;ll expand our factory to build these</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)</div>\r\n</li><ul style=\"margin-top:0px;margin-bottom:0px;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell can be made in the <u>thousands</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n</ul>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all. </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI will check with my people on 301 asap.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI look forward to our next communication.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, September 17, 2025 7:56 AM<br>\r\n<b>To:</b> James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;; Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Gentlemen,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">It was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I&#39;ve outlined the key action items below:</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<ul style=\"direction:ltr\">\r\n<li style=\"direction:ltr\">James to send the cell specification sheets as soon as possible.</li><li style=\"direction:ltr\">LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.</li><li style=\"direction:ltr\">James to send their term sheet template for throughput contracts.</li><li style=\"direction:ltr\">We should discuss 301 exclusion support for manufacturing equipment.</li></ul>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I look forward to our next conversation. </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a style=\"color:blue;margin:0px\" id=\"m_-2971314181662825399OWAfde28f8c-4259-88d0-1359-90b32c84206d\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_-2971314181662825399OWAcfbb2462-d011-b7f2-3b54-f72188fcdb08\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n\r\n</div></blockquote></div>','Hi James,\r\n\r\n\r\nThank you for continuing discussions regarding our strategic partnership.\r\nAs we prepare for module and pack production to support your battery cell\r\nneeds, we would appreciate your assistance in providing several key pieces\r\nof information to optimize our collaboration and planning:\r\n\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650,\r\n21700) you expect to require over the next 1–5 years, broken out by project\r\nor customer segment where feasible.\r\n\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and\r\nproduction volumes to help us align our development and manufacturing\r\ntimelines.\r\n\r\nIdentify any major offtake agreements, anchor customers, or significant\r\nopportunities in your commercial pipeline that could impact forecasted\r\ndemand for modules or packs.\r\n\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and\r\nspecify any technical or certification requirements for modules/packs\r\nrelated to these segments.\r\n\r\nClarify your minimum order quantities and expected pricing for each product\r\nline.\r\n\r\nPlease also provide information about any flexibility in volume commitments\r\nthat may be necessary in case project requirements or customer needs adjust\r\nmid-term.\r\n\r\nImportantly, we would like to request information on any current or\r\nforthcoming cells with a minimum continuous discharge rating of 15C or\r\nhigher. For these cells, please provide specifications, target\r\napplications, anticipated volume requirements, forecasted commercial\r\ntimelines, and expected pricing.\r\n\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made\r\nmodule and packs for:\r\n\r\n18650:\r\n\r\nNMC: TNL-ITR18650-2600P\r\n\r\nLFP: SW18650-26HPA\r\n\r\nLFP: IFR18650-2000mAh\r\n\r\n21700:\r\n\r\nNMC: INR21700-50S\r\n\r\nNMC: INR21700-4000\r\n\r\nProviding this information will enable LBC to ensure maximum alignment,\r\ntimely scale-up, and the most competitive solutions to support your growth\r\nacross all high-value sectors.\r\n\r\nIn terms of the shows you mentioned, we are getting our schedules aligned\r\nso we can attend.  What\'s the \"secret meeting\" in Nov?\r\n\r\nWe look forward to your prompt response so we can efficiently move to the\r\nnext stages.\r\n\r\n\r\nTalk soon,\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Wed, Sep 17, 2025 at 7:00 PM James Trevey <jtrevey@forgenano.com> wrote:\r\n\r\n> Jordan,\r\n>\r\n> Thanks for moving quickly here. I got bogged down today but better late\r\n> than never.\r\n>\r\n> Attached you\'ll find data sheets for all (5) of our products, including\r\n> both 18650 and 21700. Below is a quick summary:\r\n>\r\n>\r\n>    - SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation\r\n>    (they won\'t tell us the application)\r\n>    - This cell has a 100% US supply chain already\r\n>       - This cell can be made in the *millions* next year by our partner\r\n>       in the EU, until our factory is online in 2027\r\n>       - SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse\r\n>    engineered from MIL-PRF-32383)\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the *millions *next year by our partner\r\n>       in the EU, until our factory is online in 2027\r\n>       - SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the *thousands* next year by our partner\r\n>       in the EU, until our factory is online in 2027\r\n>       - SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum\r\n>    case and tabless design, super lightweight)\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the *millions* next year by our partner\r\n>       in the EU. As we show adoption, we\'ll expand our factory to build these\r\n>       - SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse\r\n>    engineered from MIL-PRF-32565)\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the *thousands* next year by our partner\r\n>       in the EU, until our factory is online in 2027\r\n>\r\n>\r\n> We can also get 80mmx300mm pouch cells made by our EU partner, if needed.\r\n>\r\n> Regarding the term sheet, please see the attached template that I put\r\n> together but needs input from you all.\r\n>\r\n> Maybe we line up another discussion for next week to continue our\r\n> alignment path? Also, are any of you planning to attend The Battery Show in\r\n> Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores\r\n> in Nashville? in October? Or the secret meeting on November 5th in DC?\r\n>\r\n> I will check with my people on 301 asap.\r\n>\r\n> I look forward to our next communication.\r\n>\r\n> James\r\n>\r\n>\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Wednesday, September 17, 2025 7:56 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>; Daniel <\r\n> dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan\r\n> Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Gentlemen,\r\n>\r\n> It was a pleasure connecting with you yesterday. I am very excited about\r\n> the potential for a partnership between our companies. To maintain the\r\n> momentum from our discussion, I\'ve outlined the key action items below:\r\n>\r\n>\r\n>    - James to send the cell specification sheets as soon as possible.\r\n>    - LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for\r\n>    benchmarking purposes.\r\n>    - James to send their term sheet template for throughput contracts.\r\n>    - We should discuss 301 exclusion support for manufacturing equipment.\r\n>\r\n>\r\n> I look forward to our next conversation.\r\n>\r\n> Best,\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&typo=1>\r\n>',0,0,0,0,0,0,'2025-09-18 17:03:53','2025-12-09 19:28:35','2025-12-09 19:28:35','2025-12-09 19:28:35',NULL,NULL,NULL),
(744,4,' <BN2P110MB1624B4D4D7DD718D791AC8C6FB16A@BN2P110MB1624.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'hello from fred','piasecki_fw@piasecki.com','\"Fred W. Piasecki\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:x=\"urn:schemas-microsoft-com:office:excel\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle17\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Rick,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Pleasure to meet you.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Was very interested in your mission and think PiAC may have some ready projects in you scan.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Can we exchange a PDEA for furhet dialog and or visit to PiAC???<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">THX<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:navy\">Fred W. Piasecki<br>\r\nCTO-COB<br>\r\n</span><b><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:maroon\">Piasecki Aircraft Corp.</span></b><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:navy\"><br>\r\n110 Stewart Huston Drive<br>\r\nCoatesville, PA 19320</span><span style=\"font-size:11.0pt;mso-ligatures:none\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><a href=\"mailto:piasecki_fw@piasecki.com\"><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:#0563C1\">piasecki_fw@piasecki.com</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:navy\">610-521-5700 x107&nbsp;&nbsp;&nbsp; Cell 610-304-6689<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><a href=\"http://www.piasecki.com/\"><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:blue\">www.piasecki.com</span></a><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:navy\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><a href=\"https://americanhelicopter.museum/\"><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:blue\">https://americanhelicopter.museum/</span></a><span style=\"font-family:&quot;Arial&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#1F497D\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#1F497D\">PIASECKI PROPRIETARY AND SBIR INFORMATION This message is intended solely for the use of the addressee(s), is intended to be confidential, and may contain information\r\n that is PiAC Proprietary and/or SBIR Data. If you have received this message in error, please immediately notify the sender and delete all copies of this email message along with all attachments.\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#1F497D\">All information, technical data, or other data contained in this e-mail, including all attachments, is to be protected as trade secret information, and shall be\r\n considered marked &#8220;Proprietary and Company Confidential,&#8221; and all SBIR Data contained in this e-mail is subject to DFARS clause 252.227-7018, if transmitted to the Government, regardless of whether formally marked as such. The information, technical data,\r\n or other data contained in this e-mail shall not be disclosed or released to individuals who are not authorized to receive it, and shall not be used for any purposes other than those authorized pursuant to an agreement between PiAC and the receiving party.\r\n This marking may not be removed from this e-mail. </span><span style=\"color:#002060\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#1F497D\">&nbsp;</span><span style=\"color:#002060\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#1F497D\">This email and any files transmitted with it are confidential and Piasecki Proprietary and intended solely for the use of the individual or entity to whom they are\r\n addressed. If you have received this email in error please notify the system manager.</span><span style=\"color:#002060\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div style=\"font-size:8pt; font-family: \'Calibri\',sans-serif;\">\r\n<hr>\r\nThe information contained in this e-mail and any attachments from Piasecki Aircraft Corporation may contain confidential and/or proprietary information, and is intended only for the named recipient to whom it was originally addressed. If you are not the intended\r\n recipient, any disclosure, distribution, or copying of this e-mail or its attachments is strictly prohibited. If you have received this e-mail in error, please notify the sender immediately by return e-mail and permanently delete the e-mail and any attachments.</div>\r\n</body>\r\n</html>','Rick,\r\nPleasure to meet you.\r\nWas very interested in your mission and think PiAC may have some ready projects in you scan.\r\nCan we exchange a PDEA for furhet dialog and or visit to PiAC???\r\n\r\nTHX\r\n\r\nFred W. Piasecki\r\nCTO-COB\r\nPiasecki Aircraft Corp.\r\n110 Stewart Huston Drive\r\nCoatesville, PA 19320\r\npiasecki_fw@piasecki.com<mailto:piasecki_fw@piasecki.com>\r\n610-521-5700 x107    Cell 610-304-6689\r\nwww.piasecki.com<http://www.piasecki.com/>\r\nhttps://americanhelicopter.museum/\r\n\r\n\r\nPIASECKI PROPRIETARY AND SBIR INFORMATION This message is intended solely for the use of the addressee(s), is intended to be confidential, and may contain information that is PiAC Proprietary and/or SBIR Data. If you have received this message in error, please immediately notify the sender and delete all copies of this email message along with all attachments.\r\n\r\nAll information, technical data, or other data contained in this e-mail, including all attachments, is to be protected as trade secret information, and shall be considered marked \"Proprietary and Company Confidential,\" and all SBIR Data contained in this e-mail is subject to DFARS clause 252.227-7018, if transmitted to the Government, regardless of whether formally marked as such. The information, technical data, or other data contained in this e-mail shall not be disclosed or released to individuals who are not authorized to receive it, and shall not be used for any purposes other than those authorized pursuant to an agreement between PiAC and the receiving party. This marking may not be removed from this e-mail.\r\n\r\nThis email and any files transmitted with it are confidential and Piasecki Proprietary and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager.\r\n\r\n________________________________\r\nThe information contained in this e-mail and any attachments from Piasecki Aircraft Corporation may contain confidential and/or proprietary information, and is intended only for the named recipient to whom it was originally addressed. If you are not the intended recipient, any disclosure, distribution, or copying of this e-mail or its attachments is strictly prohibited. If you have received this e-mail in error, please notify the sender immediately by return e-mail and permanently delete the e-mail and any attachments.',0,0,0,0,0,0,'2025-09-18 17:47:00','2025-12-09 19:28:36','2025-12-09 19:28:36','2025-12-09 19:28:36',NULL,NULL,NULL),
(745,4,'<0346129c-16db-49d2-85aa-127b0db35421@mavrix.one>',NULL,NULL,'Newest Cash Flow Update','katherine@mavrix.one','Katherine Aponte','Please see the attached for the updated cash flow, thanks!\r\n\r\n\r\n-Katy','Please see the attached for the updated cash flow, thanks!\r\n\r\n\r\n-Katy',0,0,0,0,0,0,'2025-09-18 22:56:23','2025-12-09 19:28:36','2025-12-09 19:28:36','2025-12-09 19:28:36',NULL,NULL,NULL),
(746,4,'<1332598363.15719948.1758242922913@lor1-app51891.prod.linkedin.com>',NULL,NULL,'=?UTF-8?Q?=F0=9F=92=AC_Mavrix,_add_Dan_Gaertner_-_Chief_Executive_Officer?=','messages-noreply@linkedin.com','LinkedIn','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n              @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n            </style> <style>\r\n            @media (max-width: 480px) { .inline-button, .inline-button table { display: none !important; }\r\n            .full-width-button, .full-width-button table { display: table !important; } }\r\n          </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n            \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n            \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> <script type=\"application/ld+json\">\r\n    { \"@context\": \"http://schema.org\", \"@type\": \"EmailMessage\", \"potentialAction\": { \"@type\": \"ViewAction\", \"url\": \"https://www.linkedin.com/comm/mynetwork/send-invite/dangaertner/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midSig=3WqQLeTnTM9bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A22282909-null-poh2nf%7Emfq4fm2n%7Ew6-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A22282909&amp;_sig=0s7Mqpbw_M9bY1\",\r\n    \"name\": \"Connect\" }, \"description\": \"Connect with Dan\", \"publisher\": { \"@type\": \"Organization\", \"name\":\r\n    \"LinkedIn\", \"url\": \"https://www.linkedin.com/\" } }\r\n  </script> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">Chief Executive Officer at onPhase</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-left: auto; margin-right: auto; margin-top: 0px; margin-bottom: 0px; width: 512px; max-width: 512px; padding: 0px;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"bg-color-background-container \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3WqQLeTnTM9bY1&amp;trk=eml-email_pymk_02-header-0-home_glimmer_static_badging_with_count&amp;trkEmail=eml-email_pymk_02-header-0-home_glimmer_static_badging_with_count-null-poh2nf~mfq4fm2n~w6-null-null&amp;eid=poh2nf-mfq4fm2n-w6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4YmNjZDk0MzliYWM4YzZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNWRkODA1OGE1ZDU5ZjFmMDkxNDlmNzU1ZGQyMmZiNTFhZmQ2ZGI2ZWUxZWRiMTAsMSwx\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img class=\"h-[37px] w-[101px]\" alt=\"LinkedIn\" src=\"https://static.licdn.com/aero-v1/sc/h/2fp5x7ci191mxbdy1eynscn59\" data-test-header-static-badging-img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 37px; width: 101px;\" width=\"101\" height=\"37\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" data-test-header-notification-badges style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/messaging/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3WqQLeTnTM9bY1&amp;trk=eml-email_pymk_02-header-0-messaging_glimmer&amp;trkEmail=eml-email_pymk_02-header-0-messaging_glimmer-null-poh2nf~mfq4fm2n~w6-null-null&amp;eid=poh2nf-mfq4fm2n-w6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4YmNjZDk0MzliYWM4YzZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNWRkODA1OGE1ZDU5ZjFmMDkxNDlmNzU1ZGQyMmZiNTFhZmQ2ZGI2ZWUxZWRiMTAsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Messaging icon\" src=\"https://static.licdn.com/aero-v1/sc/h/ekkp8yi9j4xx65umpdz3rdmbp\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3WqQLeTnTM9bY1&amp;trk=eml-email_pymk_02-header-0-my_network_glimmer&amp;trkEmail=eml-email_pymk_02-header-0-my_network_glimmer-null-poh2nf~mfq4fm2n~w6-null-null&amp;eid=poh2nf-mfq4fm2n-w6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4YmNjZDk0MzliYWM4YzZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNWRkODA1OGE1ZDU5ZjFmMDkxNDlmNzU1ZGQyMmZiNTFhZmQ2ZGI2ZWUxZWRiMTAsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Mynetwork icon\" src=\"https://static.licdn.com/aero-v1/sc/h/4yxfb6j5ycpjfjgehfqgmdx9w\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/notifications/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3WqQLeTnTM9bY1&amp;trk=eml-email_pymk_02-header-0-notifications_glimmer&amp;trkEmail=eml-email_pymk_02-header-0-notifications_glimmer-null-poh2nf~mfq4fm2n~w6-null-null&amp;eid=poh2nf-mfq4fm2n-w6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4YmNjZDk0MzliYWM4YzZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNWRkODA1OGE1ZDU5ZjFmMDkxNDlmNzU1ZGQyMmZiNTFhZmQ2ZGI2ZWUxZWRiMTAsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Notifications icon\" src=\"https://static.licdn.com/aero-v1/sc/h/eh1e9j5bszh6p379hn269p3ps\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"px-0 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 0px; padding-right: 0px; padding-bottom: 24px;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"pymk-hero-banner\"> <td class=\"px-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"px-3 py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px; padding-left: 24px; padding-right: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/in/dangaertner?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3WqQLeTnTM9bY1&amp;trk=eml-email_pymk_02-pymk_hero-0-profile_name_link&amp;trkEmail=eml-email_pymk_02-pymk_hero-0-profile_name_link-null-poh2nf~mfq4fm2n~w6-null-null&amp;eid=poh2nf-mfq4fm2n-w6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4YmNjZDk0MzliYWM4YzZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNWRkODA1OGE1ZDU5ZjFmMDkxNDlmNzU1ZGQyMmZiNTFhZmQ2ZGI2ZWUxZWRiMTAsMSwx\" target=\"_blank\" class=\"text-system-gray-90\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #282828;\"> <h2 class=\"text-lg font-semibold leading-regular\" data-test-id=\"pymk-hero_header\" style=\"margin: 0; font-size: 20px; font-weight: 600; line-height: 1.25;\"> Do you know Dan? </h2> </a> </td> </tr> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <h4 class=\"text-sm text-system-gray-90 leading-regular\" data-test-id=\"pymk-hero_subheader\" style=\"margin: 0; font-weight: 500; font-size: 14px; line-height: 1.25; color: #282828;\"> Request to connect with members you know and trust </h4> </td> </tr> <tr> <td class=\"pt-[10px]\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 10px;\"> <a href=\"https://www.linkedin.com/comm/in/dangaertner?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3WqQLeTnTM9bY1&amp;trk=eml-email_pymk_02-pymk_hero-0-profile_image&amp;trkEmail=eml-email_pymk_02-pymk_hero-0-profile_image-null-poh2nf~mfq4fm2n~w6-null-null&amp;eid=poh2nf-mfq4fm2n-w6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4YmNjZDk0MzliYWM4YzZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNWRkODA1OGE1ZDU5ZjFmMDkxNDlmNzU1ZGQyMmZiNTFhZmQ2ZGI2ZWUxZWRiMTAsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px]\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQEEuQh7xnTPqg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1719718305607?e=2147483647&amp;v=beta&amp;t=6Um88_7hDLo9sV67i8_0IUNBDk5YR1yKfKvBP234_6A\" alt=\"Dan Gaertner’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </a> </td> </tr> <tr> <td class=\"pt-[10px]\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 10px;\"> <a href=\"https://www.linkedin.com/comm/in/dangaertner?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3WqQLeTnTM9bY1&amp;trk=eml-email_pymk_02-pymk_hero-0-profile_name_link&amp;trkEmail=eml-email_pymk_02-pymk_hero-0-profile_name_link-null-poh2nf~mfq4fm2n~w6-null-null&amp;eid=poh2nf-mfq4fm2n-w6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4YmNjZDk0MzliYWM4YzZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNWRkODA1OGE1ZDU5ZjFmMDkxNDlmNzU1ZGQyMmZiNTFhZmQ2ZGI2ZWUxZWRiMTAsMSwx\" target=\"_blank\" class=\"text-system-gray-90\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #282828;\"> <h2 class=\"text-lg font-semibold leading-regular\" style=\"margin: 0; font-size: 20px; font-weight: 600; line-height: 1.25;\"> Dan Gaertner </h2> </a> </td> </tr> <tr> <td class=\"text-xs text-system-gray-90 leading-regular pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px; font-size: 12px; line-height: 1.25; color: #282828;\"> Chief Executive Officer at onPhase </td> </tr> <tr> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/dangaertner/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midSig=3WqQLeTnTM9bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A22282909-null-poh2nf%7Emfq4fm2n%7Ew6-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A22282909&amp;_sig=0s7Mqpbw_M9bY1\" target=\"_blank\" aria-label=\"Connect\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid w-[100vw] max-w-[400px]\" data-test-id=\"pymk-hero_default-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; width: 100vw; max-width: 400px; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/dangaertner/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midSig=3WqQLeTnTM9bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A22282909-null-poh2nf%7Emfq4fm2n%7Ew6-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A22282909&amp;_sig=0s7Mqpbw_M9bY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"pymk-section-header\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <h2 class=\"text-lg font-semibold leading-regular text-system-gray-90 text-center\" style=\"margin: 0; text-align: center; font-size: 20px; font-weight: 600; line-height: 1.25; color: #282828;\"> More people you may know </h2> </td> </tr> <tr data-test-id=\"pymk-section-body\"> <td align=\"center\" class=\"pt-1.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"></td> <td class=\"pr-1 w-[400px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 400px; padding-right: 8px;\" width=\"400\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"w-1/2 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/donovan-campbell-9551a84?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3WqQLeTnTM9bY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mfq4fm2n~w6-null-null&amp;eid=poh2nf-mfq4fm2n-w6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4YmNjZDk0MzliYWM4YzZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNWRkODA1OGE1ZDU5ZjFmMDkxNDlmNzU1ZGQyMmZiNTFhZmQ2ZGI2ZWUxZWRiMTAsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/D5603AQE6dTFkwRuAgQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1686232366909?e=2147483647&amp;v=beta&amp;t=KpLYr7faWC7zqEfLArZxMTyHRQ1zV79SjH5xSUhQHdU\" alt=\"Donovan Campbell’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Donovan Campbell </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer, MedBridge </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/donovan-campbell-9551a84/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midSig=3WqQLeTnTM9bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A12415313-null-poh2nf%7Emfq4fm2n%7Ew6-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A12415313&amp;_sig=20CcWH7PPM9bY1\" target=\"_blank\" aria-label=\"Connect with Donovan Campbell\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/donovan-campbell-9551a84/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midSig=3WqQLeTnTM9bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A12415313-null-poh2nf%7Emfq4fm2n%7Ew6-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A12415313&amp;_sig=20CcWH7PPM9bY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"w-1/2 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/carwin-martinez?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3WqQLeTnTM9bY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mfq4fm2n~w6-null-null&amp;eid=poh2nf-mfq4fm2n-w6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4YmNjZDk0MzliYWM4YzZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNWRkODA1OGE1ZDU5ZjFmMDkxNDlmNzU1ZGQyMmZiNTFhZmQ2ZGI2ZWUxZWRiMTAsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/D5603AQGegseIOxT_yQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1708441273897?e=2147483647&amp;v=beta&amp;t=mCbQ5ZUYLwtzLnx6nIMz2ciQ9yWDTW1a3ghXULjUWOY\" alt=\"Carwin Martinez’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Carwin Martinez </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Founder and Chief Executive Officer |… </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/carwin-martinez/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midSig=3WqQLeTnTM9bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A783842101-null-poh2nf%7Emfq4fm2n%7Ew6-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A783842101&amp;_sig=3PvHcrnEjM9bY1\" target=\"_blank\" aria-label=\"Connect with Carwin Martinez\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/carwin-martinez/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midSig=3WqQLeTnTM9bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A783842101-null-poh2nf%7Emfq4fm2n%7Ew6-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A783842101&amp;_sig=3PvHcrnEjM9bY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/scott-price-cpa-cisa-cia-4348673?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3WqQLeTnTM9bY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mfq4fm2n~w6-null-null&amp;eid=poh2nf-mfq4fm2n-w6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4YmNjZDk0MzliYWM4YzZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNWRkODA1OGE1ZDU5ZjFmMDkxNDlmNzU1ZGQyMmZiNTFhZmQ2ZGI2ZWUxZWRiMTAsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/C4E03AQHq5iBQ7ZQyog/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1625154840927?e=2147483647&amp;v=beta&amp;t=7wZkDLcQWeXgpa7lmyUq7I8aXcvwkqbvCObETbfAK1o\" alt=\"Scott Price, CPA, CISA, CIA’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Scott Price, CPA, CISA, CIA </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Founder and Chief Executive Officer </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/scott-price-cpa-cisa-cia-4348673/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midSig=3WqQLeTnTM9bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A11085736-null-poh2nf%7Emfq4fm2n%7Ew6-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A11085736&amp;_sig=2loQf_OoPM9bY1\" target=\"_blank\" aria-label=\"Connect with Scott Price, CPA, CISA, CIA\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/scott-price-cpa-cisa-cia-4348673/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midSig=3WqQLeTnTM9bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A11085736-null-poh2nf%7Emfq4fm2n%7Ew6-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A11085736&amp;_sig=2loQf_OoPM9bY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/rob-jay-scionhealth?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3WqQLeTnTM9bY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mfq4fm2n~w6-null-null&amp;eid=poh2nf-mfq4fm2n-w6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4YmNjZDk0MzliYWM4YzZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNWRkODA1OGE1ZDU5ZjFmMDkxNDlmNzU1ZGQyMmZiNTFhZmQ2ZGI2ZWUxZWRiMTAsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/C4D03AQHZD6OP0-9_Jg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1648825635059?e=2147483647&amp;v=beta&amp;t=UnHax8mhRQyy1L-8qoeJw4WolYbMIt25c5qfVSBijR4\" alt=\"Rob Jay’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Rob Jay </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer at ScionHealth </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/rob-jay-scionhealth/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midSig=3WqQLeTnTM9bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A33617988-null-poh2nf%7Emfq4fm2n%7Ew6-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A33617988&amp;_sig=1xv6CXpGTM9bY1\" target=\"_blank\" aria-label=\"Connect with Rob Jay\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/rob-jay-scionhealth/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midSig=3WqQLeTnTM9bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A33617988-null-poh2nf%7Emfq4fm2n%7Ew6-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A33617988&amp;_sig=1xv6CXpGTM9bY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/aaron-joshua-shuster-2a5b41223?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3WqQLeTnTM9bY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mfq4fm2n~w6-null-null&amp;eid=poh2nf-mfq4fm2n-w6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4YmNjZDk0MzliYWM4YzZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNWRkODA1OGE1ZDU5ZjFmMDkxNDlmNzU1ZGQyMmZiNTFhZmQ2ZGI2ZWUxZWRiMTAsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/C5603AQH_Z7GdPvO65A/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1634593517643?e=2147483647&amp;v=beta&amp;t=D3EE_Pf0l9trt2QKn83iV9-MjfbfgR4j-kHBDpqZ4Qc\" alt=\"Aaron Joshua Shuster’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Aaron Joshua Shuster </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/aaron-joshua-shuster-2a5b41223/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midSig=3WqQLeTnTM9bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A943407197-null-poh2nf%7Emfq4fm2n%7Ew6-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A943407197&amp;_sig=3TjvOw5cvM9bY1\" target=\"_blank\" aria-label=\"Connect with Aaron Joshua Shuster\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/aaron-joshua-shuster-2a5b41223/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midSig=3WqQLeTnTM9bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A943407197-null-poh2nf%7Emfq4fm2n%7Ew6-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A943407197&amp;_sig=3TjvOw5cvM9bY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/cristiano-r-amon?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3WqQLeTnTM9bY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mfq4fm2n~w6-null-null&amp;eid=poh2nf-mfq4fm2n-w6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4YmNjZDk0MzliYWM4YzZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNWRkODA1OGE1ZDU5ZjFmMDkxNDlmNzU1ZGQyMmZiNTFhZmQ2ZGI2ZWUxZWRiMTAsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/D5603AQFQnOXGgHZuqg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1703116651676?e=2147483647&amp;v=beta&amp;t=KSWs0c2uXJp7JK_auIFvVmUbOpEwx3QIZfYsXGEC-yM\" alt=\"Cristiano R. Amon’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Cristiano R. Amon </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> President and Chief Executive Officer… </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/cristiano-r-amon/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midSig=3WqQLeTnTM9bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A2377924-null-poh2nf%7Emfq4fm2n%7Ew6-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A2377924&amp;_sig=1_1qbyeSzM9bY1\" target=\"_blank\" aria-label=\"Connect with Cristiano R. Amon\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/cristiano-r-amon/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midSig=3WqQLeTnTM9bY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A2377924-null-poh2nf%7Emfq4fm2n%7Ew6-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A2377924&amp;_sig=1_1qbyeSzM9bY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"></td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 px-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button px-3\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/add-connections/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3WqQLeTnTM9bY1&amp;trk=eml-email_pymk_02-see_more-0-cta&amp;trkEmail=eml-email_pymk_02-see_more-0-cta-null-poh2nf~mfq4fm2n~w6-null-null&amp;eid=poh2nf-mfq4fm2n-w6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4YmNjZDk0MzliYWM4YzZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNWRkODA1OGE1ZDU5ZjFmMDkxNDlmNzU1ZGQyMmZiNTFhZmQ2ZGI2ZWUxZWRiMTAsMSwx\" target=\"_blank\" aria-label=\"See more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/add-connections/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3WqQLeTnTM9bY1&amp;trk=eml-email_pymk_02-see_more-0-cta&amp;trkEmail=eml-email_pymk_02-see_more-0-cta-null-poh2nf~mfq4fm2n~w6-null-null&amp;eid=poh2nf-mfq4fm2n-w6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4YmNjZDk0MzliYWM4YzZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNWRkODA1OGE1ZDU5ZjFmMDkxNDlmNzU1ZGQyMmZiNTFhZmQ2ZGI2ZWUxZWRiMTAsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> See more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-lg text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 20px; color: #114951;\"> Get the new LinkedIn desktop app </h2> </td> </tr> <tr> <td class=\"text-center pb-2\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <a href=\"https://apps.microsoft.com/store/detail/9WZDNCRFJ4Q7?launch=true&amp;cid=linkedin_email_upsell&amp;mode=full\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it from Microsoft\" src=\"https://static.licdn.com/aero-v1/sc/h/ejpkkpwvqks31a3cjqokb7fbm\" class=\"h-[40px] w-[112px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 112px;\" width=\"112\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-md text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 16px; color: #114951;\"> Also available on mobile </h2> </td> </tr> <tr> <td class=\"text-center\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <a href=\"https://itunes.apple.com/us/app/linkedin/id288429040?pt=10746&amp;ct=st_appsite_flagship&amp;mt=8\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Download on the App Store\" src=\"https://static.licdn.com/aero-v1/sc/h/76yzkd0h5kiv27lrd4yaenylk\" class=\"h-[40px] w-[120px] pr-1\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 120px; padding-right: 8px;\" width=\"120\" height=\"40\"> </a> <a href=\"https://play.google.com/store/apps/details?id=com.linkedin.android&amp;referrer=st_appsite_flagship\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it on Google Play\" src=\"https://static.licdn.com/aero-v1/sc/h/142qudwblp58zwmc9vkqfplug\" class=\"h-[40px] w-[134px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 134px;\" width=\"134\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px;\"><hr class=\"border-none bg-[#e0dfdd] h-[1px]\" style=\"height: 1px; border-style: none; background-color: #e0dfdd;\"></td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" data-test-id=\"email-footer__intended\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3WqQLeTnTM9bY1&amp;trk=eml-email_pymk_02-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_pymk_02-SecurityHelp-0-footerglimmer-null-poh2nf~mfq4fm2n~w6-null-null&amp;eid=poh2nf-mfq4fm2n-w6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4YmNjZDk0MzliYWM4YzZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNWRkODA1OGE1ZDU5ZjFmMDkxNDlmNzU1ZGQyMmZiNTFhZmQ2ZGI2ZWUxZWRiMTAsMSwx\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving People You May Know notification emails.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3WqQLeTnTM9bY1&amp;trk=eml-email_pymk_02-unsubscribe-0-footerGlimmer&amp;trkEmail=eml-email_pymk_02-unsubscribe-0-footerGlimmer-null-poh2nf~mfq4fm2n~w6-null-null&amp;eid=poh2nf-mfq4fm2n-w6&amp;loid=AQHH_HG3yZYWPQAAAZlfcd7p3D-GuE-S7Cau47yv5mvKxXOMwqfruvFUq5ocvA9PdpUCaVC3SpfyuRqfT2SVsw0xn0YC1KKc8R1T\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Unsubscribe</a>   ·   <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3WqQLeTnTM9bY1&amp;trk=eml-email_pymk_02-help-0-footerglimmer&amp;trkEmail=eml-email_pymk_02-help-0-footerglimmer-null-poh2nf~mfq4fm2n~w6-null-null&amp;eid=poh2nf-mfq4fm2n-w6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4YmNjZDk0MzliYWM4YzZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNWRkODA1OGE1ZDU5ZjFmMDkxNDlmNzU1ZGQyMmZiNTFhZmQ2ZGI2ZWUxZWRiMTAsMSwx\" target=\"_blank\" data-test-help-link class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3WqQLeTnTM9bY1&amp;trk=eml-email_pymk_02-footer-0-logoGlimmer&amp;trkEmail=eml-email_pymk_02-footer-0-logoGlimmer-null-poh2nf~mfq4fm2n~w6-null-null&amp;eid=poh2nf-mfq4fm2n-w6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4YmNjZDk0MzliYWM4YzZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNWRkODA1OGE1ZDU5ZjFmMDkxNDlmNzU1ZGQyMmZiNTFhZmQ2ZGI2ZWUxZWRiMTAsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/aero-v1/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFtY1RSbWJUSnVMWGMyOlpXMWhhV3hmY0hsdGExOHdNZz09Og==.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','Do you know Dan Gaertner?\r\n\r\nYes, connect: https://www.linkedin.com/comm/mynetwork/send-invite/dangaertner/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&midSig=3WqQLeTnTM9bY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A22282909-null-poh2nf%7Emfq4fm2n%7Ew6-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A22282909&_sig=0s7Mqpbw_M9bY1\r\n\r\n\r\nMore people you may know\r\n            \r\n    Donovan Campbell\r\nChief Executive Officer, MedBridge\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/donovan-campbell-9551a84/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&midSig=3WqQLeTnTM9bY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A12415313-null-poh2nf%7Emfq4fm2n%7Ew6-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A12415313&_sig=20CcWH7PPM9bY1\r\n            \r\n    Carwin Martinez\r\nFounder and Chief Executive Officer | Marketing Campaigns, Advertising Campaigns\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/carwin-martinez/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&midSig=3WqQLeTnTM9bY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A783842101-null-poh2nf%7Emfq4fm2n%7Ew6-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A783842101&_sig=3PvHcrnEjM9bY1\r\n            \r\n    Scott Price, CPA, CISA, CIA\r\nFounder and Chief Executive Officer\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/scott-price-cpa-cisa-cia-4348673/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&midSig=3WqQLeTnTM9bY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A11085736-null-poh2nf%7Emfq4fm2n%7Ew6-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A11085736&_sig=2loQf_OoPM9bY1\r\n            \r\n    Rob Jay\r\nChief Executive Officer at ScionHealth\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/rob-jay-scionhealth/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&midSig=3WqQLeTnTM9bY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A33617988-null-poh2nf%7Emfq4fm2n%7Ew6-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A33617988&_sig=1xv6CXpGTM9bY1\r\n            \r\n    Aaron Joshua Shuster\r\nChief Executive Officer\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/aaron-joshua-shuster-2a5b41223/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&midSig=3WqQLeTnTM9bY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A943407197-null-poh2nf%7Emfq4fm2n%7Ew6-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A943407197&_sig=3TjvOw5cvM9bY1\r\n\r\nSee more people you might know:https://www.linkedin.com/comm/mynetwork/add-connections/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&midToken=AQE-iPshthTClw&midSig=3WqQLeTnTM9bY1&trk=eml-email_pymk_02-see_more-0-cta~text&trkEmail=eml-email_pymk_02-see_more-0-cta~text-null-poh2nf~mfq4fm2n~w6-null-null&eid=poh2nf-mfq4fm2n-w6&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4YmNjZDk0MzliYWM4YzZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNWRkODA1OGE1ZDU5ZjFmMDkxNDlmNzU1ZGQyMmZiNTFhZmQ2ZGI2ZWUxZWRiMTAsMSwx\r\n      \r\n\r\n----------------------------------------\r\n\r\nThis email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\nLearn why we included this: https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&midToken=AQE-iPshthTClw&midSig=3WqQLeTnTM9bY1&trk=eml-email_pymk_02-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_pymk_02-SecurityHelp-0-textfooterglimmer-null-poh2nf~mfq4fm2n~w6-null-null&eid=poh2nf-mfq4fm2n-w6&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4YmNjZDk0MzliYWM4YzZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNWRkODA1OGE1ZDU5ZjFmMDkxNDlmNzU1ZGQyMmZiNTFhZmQ2ZGI2ZWUxZWRiMTAsMSwx\r\nYou are receiving People You May Know notification emails.\r\n\r\n\r\nUnsubscribe: https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&midToken=AQE-iPshthTClw&midSig=3WqQLeTnTM9bY1&trk=eml-email_pymk_02-unsubscribe-0-textfooterglimmer&trkEmail=eml-email_pymk_02-unsubscribe-0-textfooterglimmer-null-poh2nf~mfq4fm2n~w6-null-null&eid=poh2nf-mfq4fm2n-w6&loid=AQHH_HG3yZYWPQAAAZlfcd7p3D-GuE-S7Cau47yv5mvKxXOMwqfruvFUq5ocvA9PdpUCaVC3SpfyuRqfT2SVsw0xn0YC1KKc8R1T\r\nHelp: https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3Btw5Ne0CAQfe7NNGY9ZI4dg%3D%3D&midToken=AQE-iPshthTClw&midSig=3WqQLeTnTM9bY1&trk=eml-email_pymk_02-help-0-textfooterglimmer&trkEmail=eml-email_pymk_02-help-0-textfooterglimmer-null-poh2nf~mfq4fm2n~w6-null-null&eid=poh2nf-mfq4fm2n-w6&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4YmNjZDk0MzliYWM4YzZjN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNWRkODA1OGE1ZDU5ZjFmMDkxNDlmNzU1ZGQyMmZiNTFhZmQ2ZGI2ZWUxZWRiMTAsMSwx\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.\r\nLinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',0,0,0,0,0,0,'2025-09-19 00:48:42','2025-12-09 19:28:37','2025-12-09 19:28:37','2025-12-09 19:28:37',NULL,NULL,NULL),
(747,4,'<466248709ff110d7a9673f58effae41b@mavrix.one>',NULL,NULL,'You\'ve been invited to \"Special Ops: Weekly Recon & Brief\"','leslie@mavrix.one','leslie@mavrix.one','*Special Ops: Weekly Recon & Brief*\r\n\r\nWhen: 2025-09-19 10:00 - 10:30 (America/New York)\r\nRepeats: Every 1 week(s), forever\r\n\r\nInvitees: leslie@mavrix.one,\r\n  Katherine <katherine@mavrix.one>,\r\n  Tony <Tony@mavrix.one>,\r\n  Brian <brian@mavrix.one>,\r\n  Rick <rick@mavrix.one>,\r\n  Nathan@mavrix.one,\r\n  Jarrett <jarrett@mavrix.one>\r\n\r\nLeadership Team alignment ahead of Weekly HQ Update:  Share critical updates, \r\nprepare to align on strategy and communication.  (May only need a few \r\nminutes.)\r\n\r\nPlease find attached an iCalendar file with all the event details which you \r\ncan import to your calendar application.','*Special Ops: Weekly Recon & Brief*\r\n\r\nWhen: 2025-09-19 10:00 - 10:30 (America/New York)\r\nRepeats: Every 1 week(s), forever\r\n\r\nInvitees: leslie@mavrix.one,\r\n  Katherine <katherine@mavrix.one>,\r\n  Tony <Tony@mavrix.one>,\r\n  Brian <brian@mavrix.one>,\r\n  Rick <rick@mavrix.one>,\r\n  Nathan@mavrix.one,\r\n  Jarrett <jarrett@mavrix.one>\r\n\r\nLeadership Team alignment ahead of Weekly HQ Update:  Share critical updates, \r\nprepare to align on strategy and communication.  (May only need a few \r\nminutes.)\r\n\r\nPlease find attached an iCalendar file with all the event details which you \r\ncan import to your calendar application.',0,0,0,0,0,0,'2025-09-19 02:51:56','2025-12-09 19:28:37','2025-12-09 19:28:37','2025-12-09 19:28:37',NULL,NULL,NULL),
(748,4,'<819e90a0b52437190df993b750fc900a@mavrix.one>',NULL,NULL,'\"Special Ops: Weekly Recon & Brief\" has been updated','leslie@mavrix.one','leslie@mavrix.one','*Special Ops: Weekly Recon & Brief*\r\n\r\nWhen: 2025-09-19 10:00 - 10:30 (America/New York)\r\nRepeats: Every 1 week(s), forever\r\n\r\nInvitees: leslie@mavrix.one,\r\n  Katherine <katherine@mavrix.one>,\r\n  Tony <Tony@mavrix.one>,\r\n  Brian <brian@mavrix.one>,\r\n  Rick <rick@mavrix.one>,\r\n  Nathan@mavrix.one,\r\n  Jarrett <jarrett@mavrix.one>\r\n\r\nPlease find attached an iCalendar file with the updated event details which \r\nyou can import to your calendar application.','*Special Ops: Weekly Recon & Brief*\r\n\r\nWhen: 2025-09-19 10:00 - 10:30 (America/New York)\r\nRepeats: Every 1 week(s), forever\r\n\r\nInvitees: leslie@mavrix.one,\r\n  Katherine <katherine@mavrix.one>,\r\n  Tony <Tony@mavrix.one>,\r\n  Brian <brian@mavrix.one>,\r\n  Rick <rick@mavrix.one>,\r\n  Nathan@mavrix.one,\r\n  Jarrett <jarrett@mavrix.one>\r\n\r\nPlease find attached an iCalendar file with the updated event details which \r\nyou can import to your calendar application.',0,0,0,0,0,0,'2025-09-19 02:54:46','2025-12-09 19:28:37','2025-12-09 19:28:37','2025-12-09 19:28:37',NULL,NULL,NULL),
(749,4,'<1247135095.20189896.1758293596979@lor1-app92173.prod.linkedin.com>',NULL,NULL,'Mavrix, follow Ryan Reynolds - Co-Founder at The Creative Ladder','messages-noreply@linkedin.com','LinkedIn','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n              @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n            </style> <style>\r\n            @media (max-width: 480px) { .inline-button, .inline-button table { display: none !important; }\r\n            .full-width-button, .full-width-button table { display: table !important; } }\r\n          </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n            \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n            \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">See your recommendations</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-left: auto; margin-right: auto; margin-top: 0px; margin-bottom: 0px; width: 512px; max-width: 512px; padding: 0px;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"bg-color-background-container \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2B3xbcmlYZabY1&amp;trk=eml-email_edge_discover_01-header-0-home_glimmer_static_badging_with_count&amp;trkEmail=eml-email_edge_discover_01-header-0-home_glimmer_static_badging_with_count-null-poh2nf~mfqyfv3d~c6-null-null&amp;eid=poh2nf-mfqyfv3d-c6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4NmNkZDU0ODlmYWE4OTY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiM2JlZjA3M2JlZWJjMjFjZTlkZWRmYmJlOTVhYzgxNTA1NjU3ZjVhNWRlZmFiOGYsMSwx\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img class=\"h-[37px] w-[101px]\" alt=\"LinkedIn\" src=\"https://static.licdn.com/aero-v1/sc/h/2fp5x7ci191mxbdy1eynscn59\" data-test-header-static-badging-img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 37px; width: 101px;\" width=\"101\" height=\"37\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" data-test-header-notification-badges style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/messaging/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2B3xbcmlYZabY1&amp;trk=eml-email_edge_discover_01-header-0-messaging_glimmer&amp;trkEmail=eml-email_edge_discover_01-header-0-messaging_glimmer-null-poh2nf~mfqyfv3d~c6-null-null&amp;eid=poh2nf-mfqyfv3d-c6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4NmNkZDU0ODlmYWE4OTY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiM2JlZjA3M2JlZWJjMjFjZTlkZWRmYmJlOTVhYzgxNTA1NjU3ZjVhNWRlZmFiOGYsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Messaging icon\" src=\"https://static.licdn.com/aero-v1/sc/h/ekkp8yi9j4xx65umpdz3rdmbp\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2B3xbcmlYZabY1&amp;trk=eml-email_edge_discover_01-header-0-my_network_glimmer&amp;trkEmail=eml-email_edge_discover_01-header-0-my_network_glimmer-null-poh2nf~mfqyfv3d~c6-null-null&amp;eid=poh2nf-mfqyfv3d-c6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4NmNkZDU0ODlmYWE4OTY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiM2JlZjA3M2JlZWJjMjFjZTlkZWRmYmJlOTVhYzgxNTA1NjU3ZjVhNWRlZmFiOGYsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Mynetwork icon\" src=\"https://static.licdn.com/aero-v1/sc/h/4yxfb6j5ycpjfjgehfqgmdx9w\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/notifications/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2B3xbcmlYZabY1&amp;trk=eml-email_edge_discover_01-header-0-notifications_glimmer&amp;trkEmail=eml-email_edge_discover_01-header-0-notifications_glimmer-null-poh2nf~mfqyfv3d~c6-null-null&amp;eid=poh2nf-mfqyfv3d-c6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4NmNkZDU0ODlmYWE4OTY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiM2JlZjA3M2JlZWJjMjFjZTlkZWRmYmJlOTVhYzgxNTA1NjU3ZjVhNWRlZmFiOGYsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Notifications icon\" src=\"https://static.licdn.com/aero-v1/sc/h/eh1e9j5bszh6p379hn269p3ps\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"px-3 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px; padding-bottom: 24px;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <h2 class=\"text-lg leading-regular\" data-test-id=\"follow-recommendation-header\" style=\"margin: 0; font-weight: 500; font-size: 20px; line-height: 1.25;\"> Mavrix, add interesting content to your feed. Here are a few recommendations to get started. </h2> </td> </tr> <tr data-test-id=\"follow-recommendation-section\"> <td align=\"center\" class=\"pt-1.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" class=\"pr-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/vancityreynolds?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2B3xbcmlYZabY1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A949736145&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A949736145-null-poh2nf~mfqyfv3d~c6-null-null&amp;eid=poh2nf-mfqyfv3d-c6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4NmNkZDU0ODlmYWE4OTY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiM2JlZjA3M2JlZWJjMjFjZTlkZWRmYmJlOTVhYzgxNTA1NjU3ZjVhNWRlZmFiOGYsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/C5603AQGOBfXsKX8U5Q/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1636498355197?e=2147483647&amp;v=beta&amp;t=yB_Diaa_hSWisnlMCcTOKPUpj2QuNDTbkg2Qpebme3k\" alt=\"Ryan Reynolds’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/vancityreynolds?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2B3xbcmlYZabY1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A949736145&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A949736145-null-poh2nf~mfqyfv3d~c6-null-null&amp;eid=poh2nf-mfqyfv3d-c6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4NmNkZDU0ODlmYWE4OTY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiM2JlZjA3M2JlZWJjMjFjZTlkZWRmYmJlOTVhYzgxNTA1NjU3ZjVhNWRlZmFiOGYsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Ryan Reynolds </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> Part-Time Actor, Business Owner </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 3,664,668 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=vancityreynolds&amp;entityUrn=ADoAADib0tEBlWQkveTVdAmc8V2ROoDzB32jDrk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midSig=2B3xbcmlYZabY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A949736145-null-poh2nf%7Emfqyfv3d%7Ec6-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A949736145\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=vancityreynolds&amp;entityUrn=ADoAADib0tEBlWQkveTVdAmc8V2ROoDzB32jDrk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midSig=2B3xbcmlYZabY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A949736145-null-poh2nf%7Emfqyfv3d%7Ec6-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A949736145\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=vancityreynolds&amp;entityUrn=ADoAADib0tEBlWQkveTVdAmc8V2ROoDzB32jDrk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midSig=2B3xbcmlYZabY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A949736145-null-poh2nf%7Emfqyfv3d%7Ec6-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A949736145\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=vancityreynolds&amp;entityUrn=ADoAADib0tEBlWQkveTVdAmc8V2ROoDzB32jDrk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midSig=2B3xbcmlYZabY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A949736145-null-poh2nf%7Emfqyfv3d%7Ec6-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A949736145\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/olivia-gallucci?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2B3xbcmlYZabY1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A779022357&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A779022357-null-poh2nf~mfqyfv3d~c6-null-null&amp;eid=poh2nf-mfqyfv3d-c6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4NmNkZDU0ODlmYWE4OTY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiM2JlZjA3M2JlZWJjMjFjZTlkZWRmYmJlOTVhYzgxNTA1NjU3ZjVhNWRlZmFiOGYsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/D5603AQHy4LabtMyr-Q/profile-displayphoto-shrink_400_400/B56ZX8HrbnHEAk-/0/1743691626623?e=2147483647&amp;v=beta&amp;t=Dm3hmC-npFdQxdaiTKX_jVG7KiemELWGtynTQzsPo9Q\" alt=\"Olivia Gallucci’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/olivia-gallucci?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2B3xbcmlYZabY1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A779022357&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A779022357-null-poh2nf~mfqyfv3d~c6-null-null&amp;eid=poh2nf-mfqyfv3d-c6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4NmNkZDU0ODlmYWE4OTY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiM2JlZjA3M2JlZWJjMjFjZTlkZWRmYmJlOTVhYzgxNTA1NjU3ZjVhNWRlZmFiOGYsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Olivia Gallucci </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> Security Engineer @ Datadog |  macOS Internals | Free(dom) &amp; Open Source… </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 8,511 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=olivia-gallucci&amp;entityUrn=ADoAAC5u8BUBnUOsZNK_X8SyGN_ymc8z_CXOr7A&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midSig=2B3xbcmlYZabY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A779022357-null-poh2nf%7Emfqyfv3d%7Ec6-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A779022357\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=olivia-gallucci&amp;entityUrn=ADoAAC5u8BUBnUOsZNK_X8SyGN_ymc8z_CXOr7A&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midSig=2B3xbcmlYZabY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A779022357-null-poh2nf%7Emfqyfv3d%7Ec6-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A779022357\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=olivia-gallucci&amp;entityUrn=ADoAAC5u8BUBnUOsZNK_X8SyGN_ymc8z_CXOr7A&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midSig=2B3xbcmlYZabY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A779022357-null-poh2nf%7Emfqyfv3d%7Ec6-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A779022357\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=olivia-gallucci&amp;entityUrn=ADoAAC5u8BUBnUOsZNK_X8SyGN_ymc8z_CXOr7A&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midSig=2B3xbcmlYZabY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A779022357-null-poh2nf%7Emfqyfv3d%7Ec6-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A779022357\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/vivekgramaswamy?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2B3xbcmlYZabY1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A11647502&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A11647502-null-poh2nf~mfqyfv3d~c6-null-null&amp;eid=poh2nf-mfqyfv3d-c6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4NmNkZDU0ODlmYWE4OTY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiM2JlZjA3M2JlZWJjMjFjZTlkZWRmYmJlOTVhYzgxNTA1NjU3ZjVhNWRlZmFiOGYsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/D5603AQGnZ7wP8eYkVg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1729627599351?e=2147483647&amp;v=beta&amp;t=cr4sKDKVB0qGtCLBfaeZ39Zp6lhw4QoMZNR1b_0W9PQ\" alt=\"Vivek Ramaswamy’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/vivekgramaswamy?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2B3xbcmlYZabY1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A11647502&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A11647502-null-poh2nf~mfqyfv3d~c6-null-null&amp;eid=poh2nf-mfqyfv3d-c6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4NmNkZDU0ODlmYWE4OTY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiM2JlZjA3M2JlZWJjMjFjZTlkZWRmYmJlOTVhYzgxNTA1NjU3ZjVhNWRlZmFiOGYsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Vivek Ramaswamy </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> Stand for TRUTH. </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 699,055 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=vivekgramaswamy&amp;entityUrn=ADoAAACxug4BI-dQGCh9XUp_-w0QGRY1C4EilBA&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midSig=2B3xbcmlYZabY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A11647502-null-poh2nf%7Emfqyfv3d%7Ec6-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A11647502\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=vivekgramaswamy&amp;entityUrn=ADoAAACxug4BI-dQGCh9XUp_-w0QGRY1C4EilBA&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midSig=2B3xbcmlYZabY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A11647502-null-poh2nf%7Emfqyfv3d%7Ec6-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A11647502\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=vivekgramaswamy&amp;entityUrn=ADoAAACxug4BI-dQGCh9XUp_-w0QGRY1C4EilBA&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midSig=2B3xbcmlYZabY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A11647502-null-poh2nf%7Emfqyfv3d%7Ec6-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A11647502\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=vivekgramaswamy&amp;entityUrn=ADoAAACxug4BI-dQGCh9XUp_-w0QGRY1C4EilBA&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midSig=2B3xbcmlYZabY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A11647502-null-poh2nf%7Emfqyfv3d%7Ec6-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A11647502\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/williamhgates?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2B3xbcmlYZabY1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A251749025&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A251749025-null-poh2nf~mfqyfv3d~c6-null-null&amp;eid=poh2nf-mfqyfv3d-c6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4NmNkZDU0ODlmYWE4OTY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiM2JlZjA3M2JlZWJjMjFjZTlkZWRmYmJlOTVhYzgxNTA1NjU3ZjVhNWRlZmFiOGYsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/D5603AQF-RYZP55jmXA/profile-displayphoto-shrink_400_400/B56ZRi8g.aGsAg-/0/1736826818802?e=2147483647&amp;v=beta&amp;t=r6LJYwKPrJzfFDXVG8qAOoklQnqvEN855sHJ1NxhEAo\" alt=\"Bill Gates’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/williamhgates?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2B3xbcmlYZabY1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A251749025&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A251749025-null-poh2nf~mfqyfv3d~c6-null-null&amp;eid=poh2nf-mfqyfv3d-c6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4NmNkZDU0ODlmYWE4OTY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiM2JlZjA3M2JlZWJjMjFjZTlkZWRmYmJlOTVhYzgxNTA1NjU3ZjVhNWRlZmFiOGYsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Bill Gates </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> Chair, Gates Foundation and Founder, Breakthrough Energy </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 38,801,407 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=williamhgates&amp;entityUrn=ADoAAA8BYqEB2zNK8febp2b0sSdPQSEqLm_ypFc&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midSig=2B3xbcmlYZabY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A251749025-null-poh2nf%7Emfqyfv3d%7Ec6-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A251749025\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=williamhgates&amp;entityUrn=ADoAAA8BYqEB2zNK8febp2b0sSdPQSEqLm_ypFc&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midSig=2B3xbcmlYZabY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A251749025-null-poh2nf%7Emfqyfv3d%7Ec6-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A251749025\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=williamhgates&amp;entityUrn=ADoAAA8BYqEB2zNK8febp2b0sSdPQSEqLm_ypFc&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midSig=2B3xbcmlYZabY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A251749025-null-poh2nf%7Emfqyfv3d%7Ec6-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A251749025\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=williamhgates&amp;entityUrn=ADoAAA8BYqEB2zNK8febp2b0sSdPQSEqLm_ypFc&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midSig=2B3xbcmlYZabY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A251749025-null-poh2nf%7Emfqyfv3d%7Ec6-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A251749025\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/withsandra?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2B3xbcmlYZabY1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A343828803&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A343828803-null-poh2nf~mfqyfv3d~c6-null-null&amp;eid=poh2nf-mfqyfv3d-c6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4NmNkZDU0ODlmYWE4OTY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiM2JlZjA3M2JlZWJjMjFjZTlkZWRmYmJlOTVhYzgxNTA1NjU3ZjVhNWRlZmFiOGYsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQFVe3BivGm0tA/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1704920516785?e=2147483647&amp;v=beta&amp;t=Dz4hNvpqc_mrgDA2MESaW3Nz9RBR6IxjFT2Z7Ii15HY\" alt=\"Sandra L.’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/withsandra?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2B3xbcmlYZabY1&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A343828803&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A343828803-null-poh2nf~mfqyfv3d~c6-null-null&amp;eid=poh2nf-mfqyfv3d-c6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4NmNkZDU0ODlmYWE4OTY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiM2JlZjA3M2JlZWJjMjFjZTlkZWRmYmJlOTVhYzgxNTA1NjU3ZjVhNWRlZmFiOGYsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Sandra L. </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> Cybersecurity Practitioner &amp; Mentor 👩🏻💻 (150k Subs • 50m+ Views 🌟) </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 201,184 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=withsandra&amp;entityUrn=ADoAABR-aUMBWzCvtt12XhfyM4svBBOlDWOotBU&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midSig=2B3xbcmlYZabY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A343828803-null-poh2nf%7Emfqyfv3d%7Ec6-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A343828803\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=withsandra&amp;entityUrn=ADoAABR-aUMBWzCvtt12XhfyM4svBBOlDWOotBU&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midSig=2B3xbcmlYZabY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A343828803-null-poh2nf%7Emfqyfv3d%7Ec6-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A343828803\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=withsandra&amp;entityUrn=ADoAABR-aUMBWzCvtt12XhfyM4svBBOlDWOotBU&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midSig=2B3xbcmlYZabY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A343828803-null-poh2nf%7Emfqyfv3d%7Ec6-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A343828803\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=withsandra&amp;entityUrn=ADoAABR-aUMBWzCvtt12XhfyM4svBBOlDWOotBU&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midSig=2B3xbcmlYZabY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A343828803-null-poh2nf%7Emfqyfv3d%7Ec6-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A343828803\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/discovery-see-all/?usecase=EMAIL_MIXED_RECOMMENDATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2B3xbcmlYZabY1&amp;trk=eml-email_edge_discover_01-see_more-0-cta~text&amp;trkEmail=eml-email_edge_discover_01-see_more-0-cta~text-null-poh2nf~mfqyfv3d~c6-null-null&amp;eid=poh2nf-mfqyfv3d-c6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4NmNkZDU0ODlmYWE4OTY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiM2JlZjA3M2JlZWJjMjFjZTlkZWRmYmJlOTVhYzgxNTA1NjU3ZjVhNWRlZmFiOGYsMSwx\" target=\"_blank\" aria-label=\"See all\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/discovery-see-all/?usecase=EMAIL_MIXED_RECOMMENDATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2B3xbcmlYZabY1&amp;trk=eml-email_edge_discover_01-see_more-0-cta~text&amp;trkEmail=eml-email_edge_discover_01-see_more-0-cta~text-null-poh2nf~mfqyfv3d~c6-null-null&amp;eid=poh2nf-mfqyfv3d-c6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4NmNkZDU0ODlmYWE4OTY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiM2JlZjA3M2JlZWJjMjFjZTlkZWRmYmJlOTVhYzgxNTA1NjU3ZjVhNWRlZmFiOGYsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> See all </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-lg text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 20px; color: #114951;\"> Get the new LinkedIn desktop app </h2> </td> </tr> <tr> <td class=\"text-center pb-2\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <a href=\"https://apps.microsoft.com/store/detail/9WZDNCRFJ4Q7?launch=true&amp;cid=linkedin_email_upsell&amp;mode=full\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it from Microsoft\" src=\"https://static.licdn.com/aero-v1/sc/h/ejpkkpwvqks31a3cjqokb7fbm\" class=\"h-[40px] w-[112px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 112px;\" width=\"112\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-md text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 16px; color: #114951;\"> Also available on mobile </h2> </td> </tr> <tr> <td class=\"text-center\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <a href=\"https://itunes.apple.com/us/app/linkedin/id288429040?pt=10746&amp;ct=st_appsite_flagship&amp;mt=8\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Download on the App Store\" src=\"https://static.licdn.com/aero-v1/sc/h/76yzkd0h5kiv27lrd4yaenylk\" class=\"h-[40px] w-[120px] pr-1\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 120px; padding-right: 8px;\" width=\"120\" height=\"40\"> </a> <a href=\"https://play.google.com/store/apps/details?id=com.linkedin.android&amp;referrer=st_appsite_flagship\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it on Google Play\" src=\"https://static.licdn.com/aero-v1/sc/h/142qudwblp58zwmc9vkqfplug\" class=\"h-[40px] w-[134px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 134px;\" width=\"134\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px;\"><hr class=\"border-none bg-[#e0dfdd] h-[1px]\" style=\"height: 1px; border-style: none; background-color: #e0dfdd;\"></td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" data-test-id=\"email-footer__intended\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2B3xbcmlYZabY1&amp;trk=eml-email_edge_discover_01-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_edge_discover_01-SecurityHelp-0-footerglimmer-null-poh2nf~mfqyfv3d~c6-null-null&amp;eid=poh2nf-mfqyfv3d-c6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4NmNkZDU0ODlmYWE4OTY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiM2JlZjA3M2JlZWJjMjFjZTlkZWRmYmJlOTVhYzgxNTA1NjU3ZjVhNWRlZmFiOGYsMSwx\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving People You May Know notification emails.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2B3xbcmlYZabY1&amp;trk=eml-email_edge_discover_01-unsubscribe-0-footerGlimmer&amp;trkEmail=eml-email_edge_discover_01-unsubscribe-0-footerGlimmer-null-poh2nf~mfqyfv3d~c6-null-null&amp;eid=poh2nf-mfqyfv3d-c6&amp;loid=AQEB9bNVlQvBjQAAAZlidxkb3y89h_jmgcBSRqT_FSIWcXqLbft8_2gd9_45KTlhsqnjP6wIIc5FlqVThY4RWbmdqtr-gQO6rYNy\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Unsubscribe</a>   ·   <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2B3xbcmlYZabY1&amp;trk=eml-email_edge_discover_01-help-0-footerglimmer&amp;trkEmail=eml-email_edge_discover_01-help-0-footerglimmer-null-poh2nf~mfqyfv3d~c6-null-null&amp;eid=poh2nf-mfqyfv3d-c6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4NmNkZDU0ODlmYWE4OTY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiM2JlZjA3M2JlZWJjMjFjZTlkZWRmYmJlOTVhYzgxNTA1NjU3ZjVhNWRlZmFiOGYsMSwx\" target=\"_blank\" data-test-help-link class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2B3xbcmlYZabY1&amp;trk=eml-email_edge_discover_01-footer-0-logoGlimmer&amp;trkEmail=eml-email_edge_discover_01-footer-0-logoGlimmer-null-poh2nf~mfqyfv3d~c6-null-null&amp;eid=poh2nf-mfqyfv3d-c6&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4NmNkZDU0ODlmYWE4OTY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiM2JlZjA3M2JlZWJjMjFjZTlkZWRmYmJlOTVhYzgxNTA1NjU3ZjVhNWRlZmFiOGYsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/aero-v1/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFtY1hsbWRqTmtMV00yOlpXMWhhV3hmWldSblpWOWthWE5qYjNabGNsOHdNUT09Og==.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','Mavrix, add interesting content to your feed. Here are a few recommendations to get started.\r\n\r\n\r\nhttps://www.linkedin.com/comm/mynetwork/discovery-see-all/?usecase=EMAIL_MIXED_RECOMMENDATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&midToken=AQE-iPshthTClw&midSig=2B3xbcmlYZabY1&trk=eml-email_edge_discover_01-see_all-0-cta~text&trkEmail=eml-email_edge_discover_01-see_all-0-cta~text-null-poh2nf~mfqyfv3d~c6-null-null&eid=poh2nf-mfqyfv3d-c6&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4NmNkZDU0ODlmYWE4OTY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiM2JlZjA3M2JlZWJjMjFjZTlkZWRmYmJlOTVhYzgxNTA1NjU3ZjVhNWRlZmFiOGYsMSwx\r\n      \r\n\r\n----------------------------------------\r\n\r\nThis email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\nLearn why we included this: https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&midToken=AQE-iPshthTClw&midSig=2B3xbcmlYZabY1&trk=eml-email_edge_discover_01-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_edge_discover_01-SecurityHelp-0-textfooterglimmer-null-poh2nf~mfqyfv3d~c6-null-null&eid=poh2nf-mfqyfv3d-c6&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4NmNkZDU0ODlmYWE4OTY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiM2JlZjA3M2JlZWJjMjFjZTlkZWRmYmJlOTVhYzgxNTA1NjU3ZjVhNWRlZmFiOGYsMSwx\r\nYou are receiving People You May Know notification emails.\r\n\r\n\r\nUnsubscribe: https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&midToken=AQE-iPshthTClw&midSig=2B3xbcmlYZabY1&trk=eml-email_edge_discover_01-unsubscribe-0-textfooterglimmer&trkEmail=eml-email_edge_discover_01-unsubscribe-0-textfooterglimmer-null-poh2nf~mfqyfv3d~c6-null-null&eid=poh2nf-mfqyfv3d-c6&loid=AQEB9bNVlQvBjQAAAZlidxkb3y89h_jmgcBSRqT_FSIWcXqLbft8_2gd9_45KTlhsqnjP6wIIc5FlqVThY4RWbmdqtr-gQO6rYNy\r\nHelp: https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BPQJ9zP0nST6aqU6ZS%2BByog%3D%3D&midToken=AQE-iPshthTClw&midSig=2B3xbcmlYZabY1&trk=eml-email_edge_discover_01-help-0-textfooterglimmer&trkEmail=eml-email_edge_discover_01-help-0-textfooterglimmer-null-poh2nf~mfqyfv3d~c6-null-null&eid=poh2nf-mfqyfv3d-c6&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjY4NmNkZDU0ODlmYWE4OTY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThiM2JlZjA3M2JlZWJjMjFjZTlkZWRmYmJlOTVhYzgxNTA1NjU3ZjVhNWRlZmFiOGYsMSwx\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.\r\nLinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',0,0,0,0,0,0,'2025-09-19 14:53:16','2025-12-09 19:28:38','2025-12-09 19:28:38','2025-12-09 19:28:38',NULL,NULL,NULL),
(750,4,'<cfd27f18dea836a08d6a494e23c63164@mavrix.one>',NULL,NULL,'\"Special Ops: Weekly Recon & Brief\" has been cancelled','leslie@mavrix.one','leslie@mavrix.one','*Special Ops: Weekly Recon & Brief*\r\n\r\nWhen: 2025-09-19 10:00 - 10:30 (America/New York)\r\n\r\n** The message only refers to this single occurrence **\r\n\r\nInvitees: leslie@mavrix.one,\r\n  Katherine <katherine@mavrix.one>,\r\n  Tony <Tony@mavrix.one>,\r\n  Brian <brian@mavrix.one>,\r\n  Rick <rick@mavrix.one>,\r\n  Nathan@mavrix.one,\r\n  Jarrett <jarrett@mavrix.one>\r\n\r\nThe event has been cancelled by leslie@mavrix.one.\r\n\r\nPlease find attached an iCalendar file with the updated event details.','*Special Ops: Weekly Recon & Brief*\r\n\r\nWhen: 2025-09-19 10:00 - 10:30 (America/New York)\r\n\r\n** The message only refers to this single occurrence **\r\n\r\nInvitees: leslie@mavrix.one,\r\n  Katherine <katherine@mavrix.one>,\r\n  Tony <Tony@mavrix.one>,\r\n  Brian <brian@mavrix.one>,\r\n  Rick <rick@mavrix.one>,\r\n  Nathan@mavrix.one,\r\n  Jarrett <jarrett@mavrix.one>\r\n\r\nThe event has been cancelled by leslie@mavrix.one.\r\n\r\nPlease find attached an iCalendar file with the updated event details.',0,0,0,0,0,0,'2025-09-19 15:25:14','2025-12-09 19:28:38','2025-12-09 19:28:38','2025-12-09 19:28:38',NULL,NULL,NULL),
(751,4,'<BoBlGY1LTJyK7y05jWz9Uw@geopod-ismtpd-12>',NULL,NULL,'Confirm your email address','help@stickermule.com','Sticker Mule','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\"><head></head><body>\r\n<p>\r\n    Hi Rick,\r\n  </p>\r\n<p>\r\n    To complete the signup process, confirm your email address by clicking the link below. You can also opt-in to exclusive deals on custom stickers and more.\r\n  </p>\r\n<p>\r\n<a data-click-track-id=\"9207\" href=\"https://u21395112.ct.sendgrid.net/ls/click?upn=u001.xGC-2FxGNTjPjtrKvApQfpk5LFSuxVrfDNLvaZ6hdeRINH7dQkT-2BwvBEekNTKoTmXeBaspmI5CDwQKztCG8qjeD0nNjxcc-2FGc0edkenYLXBA6ysiepFihm-2Bb6WgACTPut-2BUA7MC83gc89bRQD5xOmp8pXbzCu01VHK86leyoP5agm5lnrdZL19UyiEHGT1HwXS8EqHnExH67IYbET25R3Q76kyK1B7EdIL8RjvKsESSmQJOdB71W-2F5m9AIUtgCC89m0m-2F4B2UFaa4kKBHq44Fnrt4uE0LAw8vvej7HkFX-2BNQKD5N7mtm6pYGpqE6LbY7r4mn1qrYKMDZ6PLWCmP0DOSEZd-2FCp2QnChh540U-2BUQe9B45d3HUsMcj7R0b909LmUGF1RkX9x7PXFA-2BJTUV368DjVvQoUh-2B0KR-2Be4xho44xdc4lx7WghlWCw1Qrp7Ft7BAfZvfv0VQm-2BcM-2Bpy9DFQA8WgcbfmdeBVd1zijecUYlF5DsbJd1ARxPCJ6Q0CHj6p5-2BZvj1-2FLIrdmRvUxec0nphA-3D-3D9wnJ_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2FH8JYequk7PI1FJyXsHyK64apahp5v9uKJWjdUevvZQp9X3Q5YEkBzM1BWIEf74oNd5e-2F5lImBnYyZvXQJUN8-2FVohe-2Fhiyj0zQM5zvmQsqM-2BZIWGLIYZ2ANoO5YhXO-2Bp0t9U0o31Uvjnb5uci7N8ahRDOUNclU-2Fq-2FXo-2BST0Ch5uyIUYhy-2F8kWpgslpKwzR5nV9czMcfKckRpjNcyXa-2Fvic0BHMwEivE00Ydz2t6YKHSfEmuVqAdPyPD-2FoJ4RgyC4ZeuzpYwFq241j008ARECiJXT0nQYmfTXrZW3lkrtjEbM9c7xWLWOahiCg5-2Be6GiulMYyMnYATyPgBVxzLz20SMuWaCE3LFKpa8-2Bt69WJCCp9WopptxOkS94-2FfHx3Du9jJx13ABuLkT0JmqK1ydanX4-2FunHgdtpa9PTLq7ElknKyq0ThihDMGn86QTArqU6L50a4L4N4kwNkKLW8Jph-2F-2BP2\">Confirm your email address</a>\r\n<br/>\r\n<a data-click-track-id=\"6172\" href=\"https://u21395112.ct.sendgrid.net/ls/click?upn=u001.xGC-2FxGNTjPjtrKvApQfpk5LFSuxVrfDNLvaZ6hdeRINH7dQkT-2BwvBEekNTKoTmXeBaspmI5CDwQKztCG8qjeD0nNjxcc-2FGc0edkenYLXBA6ysiepFihm-2Bb6WgACTPut-2BUA7MC83gc89bRQD5xOmp8pXbzCu01VHK86leyoP5agm5lnrdZL19UyiEHGT1HwXS8EqHnExH67IYbET25R3Q76kyK1B7EdIL8RjvKsESSmQJOdB71W-2F5m9AIUtgCC89m0m-2F4B2UFaa4kKBHq44Fnrt4uE0LAw8vvej7HkFX-2BNQKD5N7mtm6pYGpqE6LbY7r4mn1qrYKMDZ6PLWCmP0DOSEZd-2FCp2QnChh540U-2BUQe9B45d3HUsMcj7R0b909LmUGZkL9yZrha-2FdoOgtrFVsApeDsXkFZZ8RPGTec-2FHAIkY-2Fz7emXG53eKgIYOH20SCnx5Z5BvEYSda54cV1VYP5azYpFpuYLDAK8o-2FsV5shc93ToUS-2FWDZUrkpp084DzNv3n-2FATC-2BpqKP5WwadGI0sRnow-3D-3DoQpm_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2FH8JYequk7PI1FJyXsHyK64apahp5v9uKJWjdUevvZQp9X3Q5YEkBzM1BWIEf74oNd5e-2F5lImBnYyZvXQJUN8-2FVohe-2Fhiyj0zQM5zvmQsqM-2BZIWGLIYZ2ANoO5YhXO-2Bp0t9U0o31Uvjnb5uci7N8ahRDOUNclU-2Fq-2FXo-2BST0Ch5uyIUYhy-2F8kWpgslpKwzR5nV9czMcfKckRpjNcyXa-2Fvic0BHMwEivE00Ydz2t6YKHSfEmuVqAdPyPD-2FoJ4RgyC4ZeuzpYwFq241j008ARECiJXT0nQYmfTXrZW3lkrtjEbJojb0sPxUQnOW9zjq-2FRP26Pn-2Fxu7UI1RR5ii13VAbDEsSwOPMuY7P4RnJUu3CE1-2BExTuwq9kVK3fnxp-2BABZ4DpZqGJ3AhudiipFGCw-2FWcL-2Ft-2Bx054K1sIyGIWnsDYQaXjtJAqx18yidkdcFNYMVVWmCj58ZeHJ1XSNa1kztbyKH\">Confirm your email address and sign up for deals</a>\r\n</p>\r\n<p>\r\n    Thanks,<br/>\r\n    Sticker Mule\r\n  </p>\r\n<img src=\"https://u21395112.ct.sendgrid.net/wf/open?upn=u001.D6mC8SG6iITw2GIzPjAtw3VnKGws73w4Kg-2Fn2LF1yNJAVWEWLE522ypl4IwCde54ayYufjpg0qQI-2F-2BotGxFSlvS7Uwx9156SpmD7TwM9X4vzzAoL1MrWA8TjhMRz-2FhgTWX4S18Eu426w6CXLKRVYHIN6wj9XF1aya0X7QW1d1rrhcaAzoUzHQiJKDlmqMTjwTk81wrpZEVHbUFjZX-2B-2FR9ZTDIBm2Wpli6jdCfPnjrakxEweuB6Z2ZoGz0nh3C9xtIcE4YG1w4-2BUEgkQO-2BdjXL8V0l4O3WaqEsp8ENTM549-2BTl62EMmNgneKU1bSzbdtxgi7zOGwK7MGWSdcUqtToq-2FHxyWfHrn56fek9DvI-2Fu8F2y0XlbSzk9usZExySn9oDfnXk4pt-2FllUUWO6Mkh9r14WnwYGUJC6b5Zw0BxhLOR3eK-2Be1TmEbB4nN27DejoE1IYEFcUW7iTmew7h80GGtwZJ5qkH2QE1UZ0YBj0Nv6mAvOmK6ax1iOoCGKkat4ZA2\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/></body>\r\n</html>','Hi Rick,\r\n\r\nTo complete the signup process, confirm your email address by clicking the link below. You can also opt-in to exclusive deals on custom stickers and more.\r\n\r\nhttps://u21395112.ct.sendgrid.net/ls/click?upn=u001.xGC-2FxGNTjPjtrKvApQfpk5LFSuxVrfDNLvaZ6hdeRINH7dQkT-2BwvBEekNTKoTmXeBaspmI5CDwQKztCG8qjeD0nNjxcc-2FGc0edkenYLXBA6ysiepFihm-2Bb6WgACTPut-2BUA7MC83gc89bRQD5xOmp8pXbzCu01VHK86leyoP5agm5lnrdZL19UyiEHGT1HwXS8EqHnExH67IYbET25R3Q76kyK1B7EdIL8RjvKsESSmQJOdB71W-2F5m9AIUtgCC89m0m-2F4B2UFaa4kKBHq44Fnrt4uE0LAw8vvej7HkFX-2BNQKD5N7mtm6pYGpqE6LbY7r4mn1qrYKMDZ6PLWCmP0DOSEZd-2FCp2QnChh540U-2BUQe9B45d3HUsMcj7R0b909LmUGXL3-2BrCrJks-2BBx2iUvK-2BR9g-3D-3D-trd_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2FH8JYequk7PI1FJyXsHyK64apahp5v9uKJWjdUevvZQp9X3Q5YEkBzM1BWIEf74oNd5e-2F5lImBnYyZvXQJUN8-2FVohe-2Fhiyj0zQM5zvmQsqM-2BZIWGLIYZ2ANoO5YhXO-2Bp0t9U0o31Uvjnb5uci7N8ahRDOUNclU-2Fq-2FXo-2BST0Ch5uyIUYhy-2F8kWpgslpKwzR5nV9czMcfKckRpjNcyXa-2Fvic0BHMwEivE00Ydz2t6YKHSfEmuVqAdPyPD-2FoJ4RgyC4ZeuzpYwFq241j008ARECiJXT0nQYmfTXrZW3lkrtjEbAdLPTq0Zzjp-2B8G7NL6j3ceIbaXO1VqEoPjvUmu50bkMvFu8DfacVXRbLTA3bN6EXQxNx-2B8TC-2FrsZXi0Z-2BGdGnhm5CZuf1iXyj-2BxGWE2Oys-2BcIsWAiSPIhyGokP2YrgSPvbJ5qm1okZ9pg31AWxA2V2wv8PdajREgJ1ciUCw98sn\r\nhttps://u21395112.ct.sendgrid.net/ls/click?upn=u001.xGC-2FxGNTjPjtrKvApQfpk5LFSuxVrfDNLvaZ6hdeRINH7dQkT-2BwvBEekNTKoTmXeBaspmI5CDwQKztCG8qjeD0nNjxcc-2FGc0edkenYLXBA6ysiepFihm-2Bb6WgACTPut-2BUA7MC83gc89bRQD5xOmp8pXbzCu01VHK86leyoP5agm5lnrdZL19UyiEHGT1HwXS8EqHnExH67IYbET25R3Q76kyK1B7EdIL8RjvKsESSmQJOdB71W-2F5m9AIUtgCC89m0m-2F4B2UFaa4kKBHq44Fnrt4uE0LAw8vvej7HkFX-2BNQKD5N7mtm6pYGpqE6LbY7r4mn1qrYKMDZ6PLWCmP0DOSEZd-2FCp2QnChh540U-2BUQe9B45d3HUsMcj7R0b909LmUGZkL9yZrha-2FdoOgtrFVsApftPFjzHOQNo8tdHc2w-2BWLw-3D-330_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi-2FH8JYequk7PI1FJyXsHyK64apahp5v9uKJWjdUevvZQp9X3Q5YEkBzM1BWIEf74oNd5e-2F5lImBnYyZvXQJUN8-2FVohe-2Fhiyj0zQM5zvmQsqM-2BZIWGLIYZ2ANoO5YhXO-2Bp0t9U0o31Uvjnb5uci7N8ahRDOUNclU-2Fq-2FXo-2BST0Ch5uyIUYhy-2F8kWpgslpKwzR5nV9czMcfKckRpjNcyXa-2Fvic0BHMwEivE00Ydz2t6YKHSfEmuVqAdPyPD-2FoJ4RgyC4ZeuzpYwFq241j008ARECiJXT0nQYmfTXrZW3lkrtjEbMvNNOUFg58A1k6OmJsdM2IqmXdyU5Q4uuKx-2B2SefenG0UPklsJEnkNhEwbmeYfpWiV0sDtLODGXo8fCRMsxsvi7zY9HI2bwG42HjfQyPDEcfGM-2Bc0S7GfQqv4mIN3UeFGSmfgOP1EU9kGQloM4-2FKg33HeaKsDhF8SywAMayA8TU\r\n\r\nThanks,\r\nSticker Mule',0,0,0,0,0,0,'2025-09-19 16:20:58','2025-12-09 19:28:38','2025-12-09 19:28:38','2025-12-09 19:28:38',NULL,NULL,NULL),
(752,4,'<DhOuDQxSQk-7jEYACq3p4Q@geopod-ismtpd-28>',NULL,NULL,'Your cart has been saved!','help@stickermule.com','Sticker Mule','<!DOCTYPE html>\r\n<html lang=\"en-US\" xml:lang=\"en-US\" xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n    <meta http-equiv=\"Content-Language\" content=\"en-US\">\r\n<title dir=\"auto\">Your cart has been saved!</title>\r\n</head>\r\n<body><span class=\"vero-preheader\" style=\"display:none;font-size:1px;color:#333333;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;\">Complete your order today. </span><div class=\"vero-zwnj-nbsp-padding\" style=\"display:none;max-height:0px;overflow:hidden;\">‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ </div>\r\n    <div style=\"display: none; max-height: 0px; overflow: hidden;\"></div>\r\n    \r\n    <p>\r\n        \r\n            Hello,\r\n        \r\n    </p>\r\n    <div class=\"vero-editable\">\r\n<p>We saved some items you left in your cart.<br><a href=\"https://u10257537.ct.sendgrid.net/ls/click?upn=u001.Bnqg3Ic6NvfrL518iHt5g9f0Qko8cBeZDxvCnfK6rb0Of6jscCb6w-2BeswJberJc4fSiaeyEkpWt5GxLYdTpN3Z03K35-2FsFkld447tMeSEdhKZnvaB0mfJ8okBNs0Xesd3Nno6ISvLRJJS95dlnrgCvgwESykJGzHaamxSmoWIxi6MfY1G2aA3jnBwXH6w-2BAFdr2SstM5nMIrUdYAbEnlCGJrlOD-2FBz85dpSCDVOrAPDCY5dGqo4JFw2ArOhruaxOFEf0JIk7KrVQeFWIe-2F2UoSRVft3Eo7hULH0Vu9yqLFwFcgHSAc-2BcqS-2F6u6YwpOlmL1HjielwSFfoBLU-2FcWHOe0H0SYAXq-2BKx5-2F5FIWoaEYsYkd7NmuxzoFjbGnbP74k05h13ss5DS6yaqjisTL7afA-3D-3Djn87_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi8ZaxgHC19GnFNeKf3xB6-2BCFDlwXSEoA7z4XR5EjiKVTz4bt93-2BxV0zbv3aknhsVU2li2F4fq2Jt-2BFukiMxYrp9rsuLtdeFXQyZS8cTGR8pskEntsdOE3-2BMKTbBixrsjbPcfSnx4pfzfkjqQ81FBP-2FM3LRtUnJ7VekytRp5V6Ikr-2Fy95iowtk-2BCjgOe-2BBasRsjdOreeJrxHbHyytckBcOuvzdEIxROlizvwisufTSVVB80mPJTnS9T3kxkYsMiiIfbAjmCB7LuUuZZktEbm8ODJnfzfNZCB9tpVlpEr3Rltc2uDI0j2XV4gKXH0zmfaiXWXxbj3z-2Bd2wqiHNrUKk-2FJA5c1qBJ8FYJNCJaYFpmJ-2FhVhG0ZtS2Q4R-2F6YHTLNQasmb9LqWTqP3oQ6Rg11tHPiXd2uyicFT1MGWWA08qmEIxkq-2B-2BkGrDVzum5DZqljSsFzKLvgYXwGGS8Zsrj22n4nyyv5O8R9zFoAlwCisYVxa-2B6y8JWz9c-2BAf196uFTf3bnSDK0XtGSx8waM-2F84jv2KpLVWSKkfuAAnLJ4A0js0yJyHh34CXhWMsSR6ViXxf0f25YkmSuEGVDvshnGX1fx7yhy7tN9oC8aR5QXDPZrdpymGeC5EZbQSwKQjutZ4tL-2FsIih3ojec2YKjnWMdGmEYPSn7qeprUwRZt8NDGFPzPFBF8rkb1TZiN6EMTb0pffSiVWJ19E5NQmWAH9Up9-2BWx2ihRcsrgwLdwueLPiA6kD-2BrbryAZxjqIeEor29w1fsLoY6x9w-2Bg1LqJdrEzSAIn16EpzVT4GmRb5DEccO126eRA11aZXWrm8lCq2aO0ITxMvQQv0hrjAASot2qAAHiYzs-2F\"></a></p>\r\n<p><a href=\"https://u10257537.ct.sendgrid.net/ls/click?upn=u001.Bnqg3Ic6NvfrL518iHt5g9f0Qko8cBeZDxvCnfK6rb0Of6jscCb6w-2BeswJberJc4fSiaeyEkpWt5GxLYdTpN3Z03K35-2FsFkld447tMeSEdhKZnvaB0mfJ8okBNs0Xesd3Nno6ISvLRJJS95dlnrgCvgwESykJGzHaamxSmoWIxi6MfY1G2aA3jnBwXH6w-2BAFdr2SstM5nMIrUdYAbEnlCGJrlOD-2FBz85dpSCDVOrAPDCY5dGqo4JFw2ArOhruaxOFEf0JIk7KrVQeFWIe-2F2UoSRVft3Eo7hULH0Vu9yqLFwFcgHSAc-2BcqS-2F6u6YwpOlmL1HjielwSFfoBLU-2FcWHOe0H0SYAXq-2BKx5-2F5FIWoaEYsYkd7NmuxzoFjbGnbP74k05h13ss5DS6yaqjisTL7afA-3D-3DNhhU_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi8ZaxgHC19GnFNeKf3xB6-2BCFDlwXSEoA7z4XR5EjiKVTz4bt93-2BxV0zbv3aknhsVU2li2F4fq2Jt-2BFukiMxYrp9rsuLtdeFXQyZS8cTGR8pskEntsdOE3-2BMKTbBixrsjbPcfSnx4pfzfkjqQ81FBP-2FM3LRtUnJ7VekytRp5V6Ikr-2Fy95iowtk-2BCjgOe-2BBasRsjdOreeJrxHbHyytckBcOuvzdEIxROlizvwisufTSVVB80mPJTnS9T3kxkYsMiiIfbAjmCB7LuUuZZktEbm8ODJnfzfNZCB9tpVlpEr3Rltc2uDI0j2XV4gKXH0zmfaiXWXxbj3z-2Bd2wqiHNrUKk-2FJA5c1qBJ8FYJNCJaYFpmJ-2FhVhG0ZtS2Q4R-2F6YHTLNQasmb9LqWTqP3oQ6Rg11tHPiXd2uyicFT1MGWWA08qmEIxkq-2B-2BkGrDVzum5DZqljSsFzKLvgYXwGGS8Zsrj22n4nyyv5O8R9zFoAlwCisYVxa-2B6y8JWz9c-2BAf196uFTf3bnSDK0XtGSx8waM-2F84jv2KpLVWSKkfuAAnLJ4A0js0yJyHh34CXhWMsSR6ViXxf0f25YkmSuEGVDvshnGX1fx7yhy7tN9oC8aR5QXDPZrdpymGeC5EZbQSwKQjutZ4tL-2FsIte1sKJqwOt-2Fua-2FRWOGEykF41XJnO9dMgnoZHi6nhn1kTSUGvhMy5mbJQvhew38v1s4qG5ZB96pYrScvy5-2BrofbR81lZaSczOE3lhbj4Qpo9p2TsQxCRfd4e0JNWGvNdB0yNCH29fkHWNWWnQ9yGdI1x2fLiu-2Bvks3qLmTGNhIToRMEf0MFpArvPI9u76WkABlhO0I4q1Zppg48hXOjXpr\">Complete your order today</a></p>\r\n<p>In your cart, you left:</p>\r\n<p>   ( )<br></p>\r\n<p>Anthony<br>Cofounder, <a href=\"https://u10257537.ct.sendgrid.net/ls/click?upn=u001.KoK1OhsrNDpg3-2F7dkXLj-2BElqoyWwxcDSRCF56pHQcuFEfybd3hZVeMSJ5-2BQZXrlxDdn0frVSQT-2BhcSpMtLfPRBIqB9-2F9o3odFdYiuXBluhQEq6NQYCdWVhv9vTnWoJLQuCLDacSyjGgUYnmJkHzCC0ms5VvOQS9b4NJgvoJZHYfDJT4BVpbHO9lfWNWkVqIYyg1kUTZvW1lCY2H-2FXoHTQuudjIuO8gsGJ3AJxS-2FZXxKERl20wACEPnYhv-2F9uJrlYh0vQCw-2BfGFdY42zyMz1WQ4xl1uZ5wmZBPlcaGipgYyhYfDWG1UKNjwyAuUY-2FYi32FZQp8D0l-2BstI6ajAAVJHQb2gIAInkpGBR5WWD944otEH28mZzY-2F5pK92HTtjrEcv5Kmi_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi8ZaxgHC19GnFNeKf3xB6-2BCFDlwXSEoA7z4XR5EjiKVTz4bt93-2BxV0zbv3aknhsVU2li2F4fq2Jt-2BFukiMxYrp9rsuLtdeFXQyZS8cTGR8pskEntsdOE3-2BMKTbBixrsjbPcfSnx4pfzfkjqQ81FBP-2FM3LRtUnJ7VekytRp5V6Ikr-2Fy95iowtk-2BCjgOe-2BBasRsjdOreeJrxHbHyytckBcOuvzdEIxROlizvwisufTSVVB80mPJTnS9T3kxkYsMiiIfbAjmCB7LuUuZZktEbm8ODJnfzfNZCB9tpVlpEr3Rltc2uDI0j2XV4gKXH0zmfaiXWXxbj3z-2Bd2wqiHNrUKk-2FJA5c1qBJ8FYJNCJaYFpmJ-2FhVhG0ZtS2Q4R-2F6YHTLNQasmb9LqWTqP3oQ6Rg11tHPiXd2uyicFT1MGWWA08qmEIxkq-2B-2BkGrDVzum5DZqljSsFzKLvgYXwGGS8Zsrj22n4nyyv5O8R9zFoAlwCisYVxa-2B6y8JWz9c-2BAf196uFTf3bnSDK0XtGSx8waM-2F84jv2KpLVWSKkfuAAnLJ4A0js0yJyHh34CXhWMsSR6ViXxf0f25YkmSuEGVDvshnGX1fx7yhy7tN9oC8aR5QXDPZrdpymGeC5EZbQSwKQjutZ4tL-2FsKs7LoB-2FjC8liSdmvSR9e-2B39LAOMTC-2BR4lugv3slddCTwMYYTY3GMdXS6ev31l8DTi4ngSjeqplkWXOZkAxJHl64gRfJKPLwisZ5ov-2BPtSmVC1BFdSHyaPKNtQlzY6JLcKqtMFxPWH3qhle9jCtqDSwpck-2Bvd3o74L7cPctFabfpEnrvP-2Bf4uyyCTDKvV7iDn4Il43if0vPTPK-2Fa7f3NyCf\">Sticker Mule</a></p>\r\n<p><br></p>\r\n<br><p><span style=\"font-size: 10px;\">-- <br> Sticker Mule, 336 Forest Ave, Amsterdam, NY 12010<br><a href=\"https://u10257537.ct.sendgrid.net/ls/click?upn=u001.Bnqg3Ic6NvfrL518iHt5g9f0Qko8cBeZDxvCnfK6rb3rsUrf457rfUWSUsc0KJk8M-2Bs5GUzl52dmrJB87p3C10oUFbpHsXBCwSuP3q5qfmKuEvXGIk6Isrs2T-2BOPKYKSKNFx4GVamLfOSaNIeScGDqotNvdeG4Y2mcXLWgAQqmk-2FBYG3x7lacr3KgliI1zc1C0FxSYYr8VnqfcY8-2Fjat2-2Bueja-2Fi94C-2BApCkXOT6ZzOwNYq5ddwl2c6u3920Nvn-2B720WmOIrw2OtJmrxCEK-2F3nsAd6QC77qk77cZ7seAfBeFEz2yrvPcty2rjhMx7MdglQ02-2F-2BjAqkWfpvJ76sABpZqYSuVzU4Qbb6ap8B4-2Bo-2FfacHtsjrw-2FXDueXbLBfX3JYsvm4Uzft-2BXf2yP15et84A-3D-3DdOUW_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi8ZaxgHC19GnFNeKf3xB6-2BCFDlwXSEoA7z4XR5EjiKVTz4bt93-2BxV0zbv3aknhsVU2li2F4fq2Jt-2BFukiMxYrp9rsuLtdeFXQyZS8cTGR8pskEntsdOE3-2BMKTbBixrsjbPcfSnx4pfzfkjqQ81FBP-2FM3LRtUnJ7VekytRp5V6Ikr-2Fy95iowtk-2BCjgOe-2BBasRsjdOreeJrxHbHyytckBcOuvzdEIxROlizvwisufTSVVB80mPJTnS9T3kxkYsMiiIfbAjmCB7LuUuZZktEbm8ODJnfzfNZCB9tpVlpEr3Rltc2uDI0j2XV4gKXH0zmfaiXWXxbj3z-2Bd2wqiHNrUKk-2FJA5c1qBJ8FYJNCJaYFpmJ-2FhVhG0ZtS2Q4R-2F6YHTLNQasmb9LqWTqP3oQ6Rg11tHPiXd2uyicFT1MGWWA08qmEIxkq-2B-2BkGrDVzum5DZqljSsFzKLvgYXwGGS8Zsrj22n4nyyv5O8R9zFoAlwCisYVxa-2B6y8JWz9c-2BAf196uFTf3bnSDK0XtGSx8waM-2F84jv2KpLVWSKkfuAAnLJ4A0js0yJyHh34CXhWMsSR6ViXxf0f25YkmSuEGVDvshnGX1fx7yhy7tN9oC8aR5QXDPZrdpymGeC5EZbQSwKQjutZ4tL-2FsIXAkSOsmyWMSw-2FC-2BXEu-2BMfL3sT7nqVkI-2BKwDmile-2BVVvLjvihMMREAKGnFbOuvRI3HmPaF7iRLZUoVVp-2BU3geaF02V4H4f8wyL4zBXw5pSPeYVKGb0vJ2bynvW3GO9Rx0VgPkQvo-2Bt7PUy6yBYWohd26dYpNWeUqbYPcaGSvZGIOkeh1r2hsK29O8xarAor6Ljq76lgnLDyfFW21JjSmv7\">Privacy Policy</a> | <a href=\"https://u10257537.ct.sendgrid.net/ls/click?upn=u001.Bnqg3Ic6NvfrL518iHt5gxE-2BrWDxM7PNs-2FvxPF4oKkuV4-2BTOFcZD5Ws7FVOA9BXkWPVWenaBrRM1FRnhFsSI1ngDILusKwrf5wpSalzD6QwF-2FY7AbNkul7unYmNdeRCftEPFuz8AR6-2FxKy-2F5kJo23rH5fOR8AlUKfVw-2BHKxDqAhhcFLoQURrhYPaL-2BMNTL7DXLMCEU20cOGB5fsEXoafamuO0WNOHXz9ugmghBUOYFeuPNusFk5BZFAt9j7TPJ8LbOuTd3XW9NTclZ7kDzGFIFarUZs7-2BrOVdPnomcyAvR9J9i2JRlN9Yvh2zhVY1q0vUPmGQI-2FmadnLdSXVF2VQN-2F8FhLKUcbP9VyNgDEOuQBQgjL3ZDV-2B3cpMuGzyb3cTWI2WlH1xu6hkU5is1nKZ6-2ByNaqVaA6rtEAotpGAS7U3TnXuGUmyoaWyeHKfcKKo-2B3Mg-2BYYg6QH8KiTPttm-2BIFiw-3D-3D5lI5_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi8ZaxgHC19GnFNeKf3xB6-2BCFDlwXSEoA7z4XR5EjiKVTz4bt93-2BxV0zbv3aknhsVU2li2F4fq2Jt-2BFukiMxYrp9rsuLtdeFXQyZS8cTGR8pskEntsdOE3-2BMKTbBixrsjbPcfSnx4pfzfkjqQ81FBP-2FM3LRtUnJ7VekytRp5V6Ikr-2Fy95iowtk-2BCjgOe-2BBasRsjdOreeJrxHbHyytckBcOuvzdEIxROlizvwisufTSVVB80mPJTnS9T3kxkYsMiiIfbAjmCB7LuUuZZktEbm8ODJnfzfNZCB9tpVlpEr3Rltc2uDI0j2XV4gKXH0zmfaiXWXxbj3z-2Bd2wqiHNrUKk-2FJA5c1qBJ8FYJNCJaYFpmJ-2FhVhG0ZtS2Q4R-2F6YHTLNQasmb9LqWTqP3oQ6Rg11tHPiXd2uyicFT1MGWWA08qmEIxkq-2B-2BkGrDVzum5DZqljSsFzKLvgYXwGGS8Zsrj22n4nyyv5O8R9zFoAlwCisYVxa-2B6y8JWz9c-2BAf196uFTf3bnSDK0XtGSx8waM-2F84jv2KpLVWSKkfuAAnLJ4A0js0yJyHh34CXhWMsSR6ViXxf0f25YkmSuEGVDvshnGX1fx7yhy7tN9oC8aR5QXDPZrdpymGeC5EZbQSwKQjutZ4tL-2FsIlQqHa3d7fz4vNyA8rA0pCo4FfhvYsYDzCxCtFrWYyqmKPxHFyVxRtxbjPSBj0YMVQn2N0oJZ5plxL9b8odMDThwDbiV4WYT3On6hmi378gIS1kKR-2FCMYq5KrmnGddwwcfWbsA-2F3WsqKiz1ZLVuFZkQ7-2BKdCObye9P9Qo-2BHOGcRk93ddk5g0mUCR48U4yLhTta5eHT8-2FVWKSbC9MyW1VoN\">Unsubscribe</a></span></p>\r\n</div>\r\n<img src=\"https://u10257537.ct.sendgrid.net/wf/open?upn=u001.D6mC8SG6iITw2GIzPjAtw3VnKGws73w4Kg-2Fn2LF1yNJNQul9nwQbr-2BJHHeyzeoS1Dun7Cs2VPbgzU0d48EVBpwr9-2BBqXRtqrwuP1-2Bd2Ev9L9h8EsEjy8Nkf5tfSGqBLH8FwVsu9upwIupUXIZ-2BAj9Akknx7w9ez3Fs5bxbrukNN6hn9kXjyzI84V9966uO-2FSTwCGG12behUO7ed7WPkf2NW9QE-2FIirakRysvgYV5qn7wwEKQ-2Ft9Lxa0BfU4fkgC7PyNelhx4LWNjOzw2jC99APytlCTKcnjvowmft9nme30ycN83ch1OqTwA3AmHbZ3hGEZYhccOZeFSJmhIxmLKMblfPF-2F9okDC-2Fn1GcKWkbc2JL3Sy4zFqFwAZHDptJaszc36GLUd8F4OuNzCSKnKfIGoqia17FOjmDnerRHA-2FvV3Yi3xkyWSirwgmYHQMRpoZuuUm8uTwYD56FcW-2FXmJl8m3-2FfJBi4E-2FsUeLZZQHIOmm3R0NtEeqx46fmo8c-2FcWxjKXAFITtaN7vyg7qCHMHvRJF4PbDNL57rGpAAb9vf-2BZ6hrsuj5GgBJSSx46NrnQOkP5Z6KCnHFumcMfpsmVXL7HUHADSLRzJMIBGV7j2UnGP7cU43s5sMXrtaBdhF2OPH00YOWY8bAQhkec-2BrD7veYFf3PbEqR9-2FnbhVSjo16O1rQLdWKqYHH9b5R69Aj6w36zrbslvKeupmjQuqvjt4HTQa-2FO-2F06BokJNnug4QUyj8q-2BckuDvCNSB92QK7CksIuLgWrH6THYmYbY7v0a5gAOxQ-2Fri54m8VyC4lOVLS7sMGjTTn2h1vwkeEvaSVPIyvi68X2Ug-2BGEYsG0OLW6hocnJkrnEXZgTWnqeYo5HqLoUKrU-2FNsMvUs-2B8QVzepl1Y1tD\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/></body>\r\n</html>','Complete your order today. ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌\r\n\r\nHello,\r\n\r\nWe saved some items you left in your cart.\r\n\r\nComplete your order today ( https://www.stickermule.com/cart?utm_source=vero&utm_medium=email&utm_content=control&utm_campaign=Abandonment%20email%20%231&utm_term=Workflow&vero_id=1084794929&vero_conv=uareJnyCKT0v3RPlK-sFJjTo6nFTkfa9W8JDqUI6P4rjtKWpa8GISSw3G8_GSQH5HDUDtCw1DWYsz7ywZnhuTLuQ-M9DF_o7nbkE_uYe4-JK )\r\n\r\nIn your cart, you left:\r\n\r\n( )\r\n\r\nAnthony\r\nCofounder, Sticker Mule ( http://www.stickermule.com/?utm_source=vero&utm_medium=email&utm_content=control&utm_campaign=Abandonment%20email%20%231&utm_term=Workflow&vero_id=1084794929&vero_conv=uareJnyCKT0v3RPlK-sFJjTo6nFTkfa9W8JDqUI6P4rjtKWpa8GISSw3G8_GSQH5HDUDtCw1DWYsz7ywZnhuTLuQ-M9DF_o7nbkE_uYe4-JK )\r\n\r\n--\r\nSticker Mule, 336 Forest Ave, Amsterdam, NY 12010\r\nPrivacy Policy ( https://www.stickermule.com/legal/privacy?utm_source=vero&utm_medium=email&utm_content=control&utm_campaign=Abandonment%20email%20%231&utm_term=Workflow&vero_id=1084794929&vero_conv=uareJnyCKT0v3RPlK-sFJjTo6nFTkfa9W8JDqUI6P4rjtKWpa8GISSw3G8_GSQH5HDUDtCw1DWYsz7ywZnhuTLuQ-M9DF_o7nbkE_uYe4-JK ) | Unsubscribe ( https://stickermule.com/notify/subscriptions/unsubscribe?vero_user_id=1084794929&utm_source=vero&utm_medium=email&utm_content=control&utm_campaign=Abandonment%20email%20%231&utm_term=Workflow&vero_id=1084794929&vero_conv=uareJnyCKT0v3RPlK-sFJjTo6nFTkfa9W8JDqUI6P4rjtKWpa8GISSw3G8_GSQH5HDUDtCw1DWYsz7ywZnhuTLuQ-M9DF_o7nbkE_uYe4-JK )',0,0,0,0,0,0,'2025-09-19 17:25:32','2025-12-09 19:28:39','2025-12-09 19:28:39','2025-12-09 19:28:39',NULL,NULL,NULL),
(753,4,'<CAGOCFXjefu6Zh5LOnm+Yrt7aY=QA+G+VSoAYBAtf3a6fzFMDbg@mail.gmail.com>',NULL,NULL,'Re: FL State Sales Tax','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Hi Everyone,<br><br>This letter can be sent to all vendors and be used for any purchases for our factory so we are tax exempt on sales tax. <br><br>The equipment we purchased from China might have Florida Sales tax built into the billing for Cargo Brokers.  I have sent them a copy of the certificate to see what can be done for the shipping and state level costs.   As far as tariffs this would not help us offset any charges.    </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Sep 19, 2025 at 1:29 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Hi gents,</div><div><br></div><div>Following up on this.  Can you get me a receipt for this?  </div><div><br></div><div>Thanks, </div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Sep 17, 2025 at 1:23 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Hi guys,</div><div><br></div><div>I was speaking with Robert and he was saying we need to send in the request for the reimbursement.  </div><div><br></div>What we still need:<br><br><ul><li>Additional documentation – preferably a receipt—that also shows the FL tax paid. Note I did confirm that FL state tax is required to be paid for this purchase, so there should be documentation somewhere that that was paid.</li><li>Timing of purchase – the Bluesea invoice seems to show that an initial payment was made, then a second payment came later. We may need to dig up receipts for both payments, or if the tax was paid only at the time of last payment, then we would only need that one.</li></ul><div>Let me know if anything has come across your plate noting otherwise.  Worth a check as it would be a $131,794.86 reimbursement. </div><div><br></div><div>Best,</div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div></div>\r\n</blockquote></div>\r\n</blockquote></div>','Hi Everyone,\r\n\r\nThis letter can be sent to all vendors and be used for any purchases for\r\nour factory so we are tax exempt on sales tax.\r\n\r\nThe equipment we purchased from China might have Florida Sales tax built\r\ninto the billing for Cargo Brokers.  I have sent them a copy of the\r\ncertificate to see what can be done for the shipping and state level\r\ncosts.   As far as tariffs this would not help us offset any charges.\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Fri, Sep 19, 2025 at 1:29 PM Jordan Wroblewski <\r\njordan@lithiumbatterycompany.com> wrote:\r\n\r\n> Hi gents,\r\n>\r\n> Following up on this.  Can you get me a receipt for this?\r\n>\r\n> Thanks,\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company <http://lithiumbatterycompany.com>\r\n>\r\n>\r\n> On Wed, Sep 17, 2025 at 1:23 PM Jordan Wroblewski <\r\n> jordan@lithiumbatterycompany.com> wrote:\r\n>\r\n>> Hi guys,\r\n>>\r\n>> I was speaking with Robert and he was saying we need to send in the\r\n>> request for the reimbursement.\r\n>>\r\n>> What we still need:\r\n>>\r\n>>\r\n>>    - Additional documentation – preferably a receipt—that also shows the\r\n>>    FL tax paid. Note I did confirm that FL state tax is required to be paid\r\n>>    for this purchase, so there should be documentation somewhere that that was\r\n>>    paid.\r\n>>    - Timing of purchase – the Bluesea invoice seems to show that an\r\n>>    initial payment was made, then a second payment came later. We may need to\r\n>>    dig up receipts for both payments, or if the tax was paid only at the time\r\n>>    of last payment, then we would only need that one.\r\n>>\r\n>> Let me know if anything has come across your plate noting otherwise.\r\n>> Worth a check as it would be a $131,794.86 reimbursement.\r\n>>\r\n>> Best,\r\n>>\r\n>>\r\n>> Jordan G. Wroblewski\r\n>>\r\n>> Partner | President\r\n>>\r\n>> Lithium Battery Company\r\n>>\r\n>> Direct: (917) 266-5336\r\n>>\r\n>> *jordan@lithiumbatterycompany.com\r\n>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>\r\n>> Lithium Battery Company <http://lithiumbatterycompany.com>\r\n>>\r\n>',0,0,0,0,0,0,'2025-09-19 18:13:49','2025-12-09 19:28:39','2025-12-09 19:28:39','2025-12-09 19:28:39',NULL,NULL,NULL),
(754,4,'<CABEiVunwqZjhbCDc-4B2FE=6b266A3Msno_ib_rWELcYh1fzKw@mail.gmail.com>',NULL,NULL,'Tectonic European Defense Summit in Paris','jen@deeptechgtm.com','Jennifer Kay','<div dir=\"ltr\"><div>Hi Rick,</div><div class=\"gmail_quote gmail_quote_container\"><br><div dir=\"ltr\"><div>I have an open line of comms with the event team and they need speakers for the below panels. Do you have any speaker suggestions from the Mavrix portfolio? Please keep this close hold and don&#39;t distribute. I want to go back to the event team with a slate of suggestions that includes Teleidoscope, maybe a few Irregulars and anyone in your portfolio who would make good contributions.</div><div class=\"gmail_quote\"><div dir=\"ltr\"><div><br></div><div><a href=\"https://www.tectonicdefense.com/event/tectonic-european-defense-summit/\" target=\"_blank\">https://www.tectonicdefense.com/event/tectonic-european-defense-summit/</a></div><div><br></div><div><br></div><div><p dir=\"ltr\" style=\"color:rgb(0,0,0);line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">European Defense Beyond Ukraine</span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">What threats lie ahead for Europe, and how can lessons from Ukraine prepare us for them?</span></p><p dir=\"ltr\" style=\"color:rgb(0,0,0);line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Leaning In: Investing Big in European Defense</span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Capital is pouring into European defense tech. Where is it going, and what’s driving the surge?</span></p><p dir=\"ltr\" style=\"color:rgb(0,0,0);line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Life on the Frontline: European Defense on the Russian Border</span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Voices from the Baltics and Eastern Europe on readiness, resilience, and how to build tech under constant threat from Russia.</span></p><p dir=\"ltr\" style=\"color:rgb(0,0,0);line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">How to Spot Bullshit: Sorting the Lethal from the Hype</span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Investors cut through the noise to expose what’s real and what’s just a glossy pitch.</span></p><p dir=\"ltr\" style=\"color:rgb(0,0,0);line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Cheap and Cheerful: Scaling Up Mass Drone Production</span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">How Europe can build drones that are fast, affordable, and effective at scale.</span></p><p dir=\"ltr\" style=\"color:rgb(0,0,0);line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">European Defense in a Trump World</span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">What a second Trump presidency could mean for NATO, transatlantic ties, and European self-reliance.</span></p><p dir=\"ltr\" style=\"color:rgb(0,0,0);line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Frenemies: The Trouble with Strategic Autonomy</span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Cooperation versus independence—how Europe balances unity with sovereignty.</span></p><p dir=\"ltr\" style=\"color:rgb(0,0,0);line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Ukraine Beyond the War</span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">How can Ukraine’s battle-forged defense industry help bolster Europe’s security?</span></p><p dir=\"ltr\" style=\"color:rgb(0,0,0);line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Crossing the Valley of Death</span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Why European defense tech struggles to scale and how to reform acquisition.</span></p><p dir=\"ltr\" style=\"color:rgb(0,0,0);line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">The Race to Automate: Automation Beyond FPV Drones</span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Beyond FPV drones, what’s next for autonomy on the battlefield?</span></p><p dir=\"ltr\" style=\"color:rgb(0,0,0);line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Autonomy at Sea: The Power of Maritime Drones in Europe</span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Maritime drones are changing naval power in Europe, from the North Sea to the Black Sea.</span></p><p dir=\"ltr\" style=\"color:rgb(0,0,0);line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">On the Ground: AI on the Battlefield</span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">How AI is already shaping tactics, decision-making, planning, and soldiering.</span></p><p dir=\"ltr\" style=\"color:rgb(0,0,0);line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Working Together: Innovation across Europe and NATO</span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Innovation at the speed of alliances—how to leverage the NATO alliance to bolster innovation.</span></p><p dir=\"ltr\" style=\"color:rgb(0,0,0);line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">The First Line of Defense: European Missile and Drone Defense </span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Europe’s race to scale missile and drone defenses before the next wave of attacks.</span></p><span style=\"color:rgb(0,0,0);font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Investing in Space</span><span style=\"color:rgb(0,0,0);font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"color:rgb(0,0,0);font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Why space tech is becoming indispensable for European defense.</span></div><div><span style=\"color:rgb(0,0,0);font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span></div><div><span style=\"color:rgb(0,0,0);font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span></div><div><span style=\"color:rgb(0,0,0);font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:517.609px;vertical-align:-webkit-baseline-middle;font-size:medium;font-family:Arial\"><tbody><tr style=\"margin:0px;padding:0px;border:0px;color:rgb(255,255,255)\"><td style=\"padding:0px;border:0px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:517.609px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:top\"><h2 color=\"#231e4a\" style=\"font-size:18px;line-height:1.38;margin:0px;color:rgb(35,30,74)\"><span>Jennifer</span><span> </span><span>Kay</span></h2><p color=\"#231e4a\" style=\"font-size:14px;line-height:22px;margin:0px;color:rgb(35,30,74)\"><span>Principal</span><span> | </span><span>Deep Tech Go to Market</span></p><p color=\"#231e4a\" style=\"font-size:14px;line-height:22px;margin:0px;color:rgb(35,30,74)\"><span>Offering commercial go to market for dual-use tech</span></p><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:472.609px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td height=\"30\" style=\"padding:0px;border:0px\"></td></tr><tr style=\"margin:0px;padding:0px;border:0px\"><td color=\"#231E4A\" width=\"auto\" height=\"1\" style=\"padding:0px;border-top:0px;border-right:0px;border-bottom:1px solid rgb(35,30,74);border-left:none;width:472.609px;display:block\"></td></tr><tr style=\"margin:0px;padding:0px;border:0px\"><td height=\"30\" style=\"padding:0px;border:0px\"></td></tr></tbody></table><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:472.609px;vertical-align:-webkit-baseline-middle\"><tbody><tr height=\"25\" style=\"margin:0px;padding:0px;border:0px;vertical-align:middle\"><td width=\"30\" style=\"padding:0px;border:0px;vertical-align:middle\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:30px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:bottom\"><span color=\"#231E4A\" width=\"11\" style=\"display:inline-block;background-color:rgb(35,30,74)\"><img src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/phone-icon-2x.png\" color=\"#231E4A\" alt=\"mobilePhone\" width=\"13\" style=\"border-style:none;display:block\"></span></td></tr></tbody></table></td><td style=\"padding:0px;border:0px;color:rgb(35,30,74)\"><a href=\"tel:615-630-8068\" color=\"#231e4a\" style=\"background-color:rgba(0,0,0,0);color:rgb(35,30,74);font-size:12px\" target=\"_blank\">615-630-8068</a></td></tr><tr height=\"25\" style=\"margin:0px;padding:0px;border:0px;vertical-align:middle\"><td width=\"30\" style=\"padding:0px;border:0px;vertical-align:middle\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:30px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:bottom\"><span color=\"#231E4A\" width=\"11\" style=\"display:inline-block;background-color:rgb(35,30,74)\"><img src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/email-icon-2x.png\" color=\"#231E4A\" alt=\"emailAddress\" width=\"13\" style=\"border-style:none;display:block\"></span></td></tr></tbody></table></td><td style=\"padding:0px;border:0px\"><a href=\"mailto:Jen@DeepTechGTM.com\" color=\"#231e4a\" style=\"background-color:rgba(0,0,0,0);color:rgb(35,30,74);font-size:12px\" target=\"_blank\">Jen@DeepTechGTM.com</a></td></tr><tr height=\"25\" style=\"margin:0px;padding:0px;border:0px;vertical-align:middle\"><td width=\"30\" style=\"padding:0px;border:0px;vertical-align:middle\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:30px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:bottom\"><span color=\"#231E4A\" width=\"11\" style=\"display:inline-block;background-color:rgb(35,30,74)\"><img src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/link-icon-2x.png\" color=\"#231E4A\" alt=\"website\" width=\"13\" style=\"border-style:none;display:block\"></span></td></tr></tbody></table></td><td style=\"padding:0px;border:0px\"><a href=\"https://deeptechgtm.com/\" color=\"#231e4a\" style=\"background-color:rgba(0,0,0,0);color:rgb(35,30,74);font-size:12px\" target=\"_blank\">DeepTechGTM.com</a></td></tr></tbody></table></td><td width=\"45\" style=\"padding:0px;border:0px\"><div></div></td></tr></tbody></table></td></tr><tr style=\"margin:0px;padding:0px;border:0px;color:rgb(255,255,255)\"></tr></tbody></table><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:546.609px;vertical-align:-webkit-baseline-middle;font-size:medium;font-family:Arial\"><tbody><tr style=\"margin:0px;padding:0px;border:0px;color:rgb(255,255,255)\"><td style=\"padding:0px;border:0px\"><br></td></tr></tbody></table></div></div></div><div></div></div>\r\n</div><div></div></div>\r\n</div><img src=\"https://d2LSMm04.na1.hs-salescrm-engage.com/Cto/2O+23284/d2LSMm04/R5Q8b48CrN56kt9Z2fJzkW23gKR53yN2ByW25dSzp1W_nDlW1GBbDc1T-HxxW22X_Fb1N6PRZW24S76122VWWjf1Q2MDY12\" alt=\"\" height=\"1\" width=\"1\" style=\"display: none !important;\"><div></div><div id=\"data-hbsasc-v0-829b32d3-3ed2-4adb-98d3-1914eda0f472\"></div></div>','Hi Rick,\r\n\r\nI have an open line of comms with the event team and they need speakers for\r\nthe below panels. Do you have any speaker suggestions from the Mavrix\r\nportfolio? Please keep this close hold and don\'t distribute. I want to go\r\nback to the event team with a slate of suggestions that includes\r\nTeleidoscope, maybe a few Irregulars and anyone in your portfolio who would\r\nmake good contributions.\r\n\r\nhttps://www.tectonicdefense.com/event/tectonic-european-defense-summit/\r\n\r\n\r\nEuropean Defense Beyond Ukraine\r\nWhat threats lie ahead for Europe, and how can lessons from Ukraine prepare\r\nus for them?\r\n\r\nLeaning In: Investing Big in European Defense\r\nCapital is pouring into European defense tech. Where is it going, and\r\nwhat’s driving the surge?\r\n\r\nLife on the Frontline: European Defense on the Russian Border\r\nVoices from the Baltics and Eastern Europe on readiness, resilience, and\r\nhow to build tech under constant threat from Russia.\r\n\r\nHow to Spot Bullshit: Sorting the Lethal from the Hype\r\nInvestors cut through the noise to expose what’s real and what’s just a\r\nglossy pitch.\r\n\r\nCheap and Cheerful: Scaling Up Mass Drone Production\r\nHow Europe can build drones that are fast, affordable, and effective at\r\nscale.\r\n\r\nEuropean Defense in a Trump World\r\nWhat a second Trump presidency could mean for NATO, transatlantic ties, and\r\nEuropean self-reliance.\r\n\r\nFrenemies: The Trouble with Strategic Autonomy\r\nCooperation versus independence—how Europe balances unity with sovereignty.\r\n\r\nUkraine Beyond the War\r\nHow can Ukraine’s battle-forged defense industry help bolster Europe’s\r\nsecurity?\r\n\r\nCrossing the Valley of Death\r\nWhy European defense tech struggles to scale and how to reform acquisition.\r\n\r\nThe Race to Automate: Automation Beyond FPV Drones\r\nBeyond FPV drones, what’s next for autonomy on the battlefield?\r\n\r\nAutonomy at Sea: The Power of Maritime Drones in Europe\r\nMaritime drones are changing naval power in Europe, from the North Sea to\r\nthe Black Sea.\r\n\r\nOn the Ground: AI on the Battlefield\r\nHow AI is already shaping tactics, decision-making, planning, and\r\nsoldiering.\r\n\r\nWorking Together: Innovation across Europe and NATO\r\nInnovation at the speed of alliances—how to leverage the NATO alliance to\r\nbolster innovation.\r\n\r\nThe First Line of Defense: European Missile and Drone Defense\r\nEurope’s race to scale missile and drone defenses before the next wave of\r\nattacks.\r\nInvesting in Space\r\nWhy space tech is becoming indispensable for European defense.\r\n\r\n\r\n\r\nJennifer Kay\r\n\r\nPrincipal | Deep Tech Go to Market\r\n\r\nOffering commercial go to market for dual-use tech\r\n[image: mobilePhone] 615-630-8068\r\n[image: emailAddress] Jen@DeepTechGTM.com\r\n[image: website] DeepTechGTM.com <https://deeptechgtm.com/>',0,0,0,0,0,0,'2025-09-19 18:45:15','2025-12-09 19:28:40','2025-12-09 19:28:40','2025-12-09 19:28:40',NULL,NULL,NULL),
(755,4,'<CAGgBgfD_xXn6gCdUQ3UUm1G-NAwcSVJthm0=xw3GZ0EGZtDj+w@mail.gmail.com>',NULL,NULL,'Funding Update (09/19/24 1530)','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">Rick:</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">That&#39;s awesome news, and I really appreciate your efforts to move forward.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">In order to maintain momentum we need to have some money now if at all possible, like $20K.  This would allow me to do several things:</div><br>1. Launch some much-needed prototypes<br>2. Pay for a portion of the software development<br>3. Continue development efforts without a 3-week lull<br><br>I don&#39;t feel comfortable continuing to fund this myself, because if I do then at that point I don&#39;t feel like this is someone else&#39;s vision anymore.  The original agreement was that you were bringing in the financials and the vision, and in exchange we would provide the brains to fulfill the mission statement -- capture the capabilities of drone electronics currently on the market, then move the designs to an all-American supply chain.  As it is, we&#39;ve already exceeded the scope of the original proposal.   <br><br>I don&#39;t want to have to deviate Joel to something else in order to make money.  The rest of the team I can divert, but that doesn&#39;t usually pay the bills for 30 days or so, which is why I need you to fill this gap while also fulfilling your October promise.<br><br>Can you do some brainstorming and see what you can come up with?<br><br>Launching alpha prototypes and development boards would allow us to get some hardware here that would be our first pass to debug and start the product line and get us some examples of products for you guys to start to share for marketing.<br><br><div class=\"gmail_default\" style=\"font-size:small\"></div><img src=\"cid:ii_mfr0padg0\" alt=\"image.png\" width=\"734\" height=\"541\" style=\"margin-right: 0px;\"><br><br></div><div>That board contains the Chinese OSD, our new interpretation of doing OSD without that part, the new 14S power supply, a new way to do RGB lighting on the drone wings, and simultaneous comparison between our OSD and the Chinese OSD using the same video source, and a development CPU that is the beginning of our test fixture.  it allows us to simulate being a FCC feeding data for the OSD and generating simulations for SA, telemetry and Tramp.<br></div><div><span class=\"gmail_default\" style=\"font-size:small\"><br></span></div><div><span class=\"gmail_default\" style=\"font-size:small\">I&#39;m expecting to finish this board today, and I want to be able to send it out for fab.</span></div><div><div class=\"gmail_default\" style=\"font-size:small\"></div><img src=\"cid:ii_mfr0qfng1\" alt=\"image.png\" width=\"736\" height=\"525\" style=\"margin-right: 0px;\"><br><br><div class=\"gmail_default\" style=\"font-size:small\">That&#39;s me augmenting the back side of the FCC board to put a 14S power supply and a Chinese OSD chip in so we can have almost exactly the features on the Ukrainian board you showed me.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">On the FCC alpha prototype, I figured that would be a sellable item sooner if I took the Ukrainian approach temporarily -- it gives you a product that can be sold while we&#39;re waiting for our own OSD module.  That&#39;s why the back-side is all torn up -- it has the Chinese OSD chip, and a new power supply layout that gets you up to 8S with the potential of going up to 14S -- most of the parts can handle 14S, still hunting for a couple of smaller components.  I found a source in China to get the AT7456 OSD chip in the 100-piece quantity.  <br></div><br>I&#39;ll probably create this board in two different forms -- a small show-piece in the 30mm mounting scheme (which we have no idea if it&#39;ll work or not and we won&#39;t be able to debug it well since it&#39;s small and compact), and another version that is twice the size and more spread-out that I can probably hand assemble which will be easier to debug and will result in faster answers.<br><br>As you can see, I&#39;m juggling a lot of competing thoughts, so I&#39;m asking you to help out so I don&#39;t have to put anything on the shelf and figure out something else to focus my attention on in order to keep paying the bills.<br><br></div><div><div class=\"gmail_default\" style=\"font-size:small\">See what happens when I&#39;m left unsupervised for 2 days?  The things we accomplish in that time typically take other design companies a month or two to struggle though.</div></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">By the way, you owe me information on NDAA and how people are either getting around, getting exempt from, or working with that standard.<br class=\"gmail-Apple-interchange-newline\"></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><div><font face=\"courier new, monospace\">Regards,</font></div><div><font face=\"courier new, monospace\">Thomas Pownall</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">CADX Services, Inc.</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Tel: 585-624-1491 X101</font></div><div><font face=\"courier new, monospace\">Fax: 585-582-1101</font></div><div><font face=\"courier new, monospace\">E-Mail: <a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a></font></div><div><font face=\"courier new, monospace\">Web: <a href=\"http://www.cadxservices.com\" target=\"_blank\">http://www.cadxservices.com</a></font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\">**************** Confidentiality Statement ****************</font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Privileged/Confidential Information may be contained in this</font></div><div><font face=\"courier new, monospace\">message. If you are not the addressee indicated in this message</font></div><div><font face=\"courier new, monospace\">(or responsible for delivery of the message to such person),</font></div><div><font face=\"courier new, monospace\">you may not copy or deliver this message to anyone. In such</font></div><div><font face=\"courier new, monospace\">case, you should destroy this message, and notify us</font></div><div><font face=\"courier new, monospace\">immediately. If you or your employer does not consent to</font></div><div><font face=\"courier new, monospace\">Internet email messages of this kind, please advise us</font></div><div><font face=\"courier new, monospace\">immediately. Opinions, conclusions and other information</font></div><div><font face=\"courier new, monospace\">expressed in this message are not given or endorsed by my firm</font></div><div><font face=\"courier new, monospace\">or employer unless otherwise indicated by an authorized</font></div><div><font face=\"courier new, monospace\">representative independent of this message.</font></div></div></div></div></div></div></div>','Rick:\r\n\r\nThat\'s awesome news, and I really appreciate your efforts to move forward.\r\n\r\nIn order to maintain momentum we need to have some money now if at all\r\npossible, like $20K.  This would allow me to do several things:\r\n\r\n1. Launch some much-needed prototypes\r\n2. Pay for a portion of the software development\r\n3. Continue development efforts without a 3-week lull\r\n\r\nI don\'t feel comfortable continuing to fund this myself, because if I do\r\nthen at that point I don\'t feel like this is someone else\'s vision\r\nanymore.  The original agreement was that you were bringing in the\r\nfinancials and the vision, and in exchange we would provide the brains to\r\nfulfill the mission statement -- capture the capabilities of drone\r\nelectronics currently on the market, then move the designs to an\r\nall-American supply chain.  As it is, we\'ve already exceeded the scope of\r\nthe original proposal.\r\n\r\nI don\'t want to have to deviate Joel to something else in order to make\r\nmoney.  The rest of the team I can divert, but that doesn\'t usually pay the\r\nbills for 30 days or so, which is why I need you to fill this gap while\r\nalso fulfilling your October promise.\r\n\r\nCan you do some brainstorming and see what you can come up with?\r\n\r\nLaunching alpha prototypes and development boards would allow us to get\r\nsome hardware here that would be our first pass to debug and start the\r\nproduct line and get us some examples of products for you guys to start to\r\nshare for marketing.\r\n\r\n[image: image.png]\r\n\r\nThat board contains the Chinese OSD, our new interpretation of doing OSD\r\nwithout that part, the new 14S power supply, a new way to do RGB lighting\r\non the drone wings, and simultaneous comparison between our OSD and the\r\nChinese OSD using the same video source, and a development CPU that is the\r\nbeginning of our test fixture.  it allows us to simulate being a FCC\r\nfeeding data for the OSD and generating simulations for SA, telemetry and\r\nTramp.\r\n\r\nI\'m expecting to finish this board today, and I want to be able to send it\r\nout for fab.\r\n[image: image.png]\r\n\r\nThat\'s me augmenting the back side of the FCC board to put a 14S power\r\nsupply and a Chinese OSD chip in so we can have almost exactly the features\r\non the Ukrainian board you showed me.\r\n\r\nOn the FCC alpha prototype, I figured that would be a sellable item sooner\r\nif I took the Ukrainian approach temporarily -- it gives you a product that\r\ncan be sold while we\'re waiting for our own OSD module.  That\'s why the\r\nback-side is all torn up -- it has the Chinese OSD chip, and a new power\r\nsupply layout that gets you up to 8S with the potential of going up to 14S\r\n-- most of the parts can handle 14S, still hunting for a couple of smaller\r\ncomponents.  I found a source in China to get the AT7456 OSD chip in the\r\n100-piece quantity.\r\n\r\nI\'ll probably create this board in two different forms -- a small\r\nshow-piece in the 30mm mounting scheme (which we have no idea if it\'ll work\r\nor not and we won\'t be able to debug it well since it\'s small and compact),\r\nand another version that is twice the size and more spread-out that I can\r\nprobably hand assemble which will be easier to debug and will result in\r\nfaster answers.\r\n\r\nAs you can see, I\'m juggling a lot of competing thoughts, so I\'m asking you\r\nto help out so I don\'t have to put anything on the shelf and figure out\r\nsomething else to focus my attention on in order to keep paying the bills.\r\n\r\nSee what happens when I\'m left unsupervised for 2 days?  The things we\r\naccomplish in that time typically take other design companies a month or\r\ntwo to struggle though.\r\n\r\nBy the way, you owe me information on NDAA and how people are either\r\ngetting around, getting exempt from, or working with that standard.\r\n\r\nRegards,\r\nThomas Pownall\r\n\r\nCADX Services, Inc.\r\n\r\nTel: 585-624-1491 X101\r\nFax: 585-582-1101\r\nE-Mail: tpownall@cadxservices.com\r\nWeb: http://www.cadxservices.com\r\n\r\n***********************************************************\r\n**************** Confidentiality Statement ****************\r\n***********************************************************\r\n\r\nPrivileged/Confidential Information may be contained in this\r\nmessage. If you are not the addressee indicated in this message\r\n(or responsible for delivery of the message to such person),\r\nyou may not copy or deliver this message to anyone. In such\r\ncase, you should destroy this message, and notify us\r\nimmediately. If you or your employer does not consent to\r\nInternet email messages of this kind, please advise us\r\nimmediately. Opinions, conclusions and other information\r\nexpressed in this message are not given or endorsed by my firm\r\nor employer unless otherwise indicated by an authorized\r\nrepresentative independent of this message.',0,0,0,0,0,0,'2025-09-19 19:30:24','2025-12-09 19:28:40','2025-12-09 19:28:40','2025-12-09 19:28:40',NULL,NULL,NULL),
(756,4,'<1715380268.21258881.1758329862697@lor1-app94602.prod.linkedin.com>',NULL,NULL,'Calpine Finance Department Manager recently posted','updates-noreply@linkedin.com','LinkedIn','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n              @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n            </style> <style>\r\n            @media (max-width: 480px) { .inline-button, .inline-button table { display: none !important; }\r\n            .full-width-button, .full-width-button table { display: table !important; } }\r\n          </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n            \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n            \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">You need to hear this. I couldn’t stop crying</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-top: 0px; margin-bottom: 0px; margin-left: auto; margin-right: auto; width: 512px; max-width: 512px; padding: 0px;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"bg-color-background-container \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-header-0-home_glimmer_static_badging_with_count&amp;trkEmail=eml-email_network_conversations_01-header-0-home_glimmer_static_badging_with_count-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img class=\"h-[37px] w-[101px]\" alt=\"LinkedIn\" src=\"https://static.licdn.com/sc/h/2fp5x7ci191mxbdy1eynscn59\" data-test-header-static-badging-img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 37px; width: 101px;\" width=\"101\" height=\"37\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" data-test-header-notification-badges style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/messaging/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-header-0-messaging_glimmer&amp;trkEmail=eml-email_network_conversations_01-header-0-messaging_glimmer-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Messaging icon\" src=\"https://static.licdn.com/sc/h/ekkp8yi9j4xx65umpdz3rdmbp\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-header-0-my_network_glimmer&amp;trkEmail=eml-email_network_conversations_01-header-0-my_network_glimmer-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Mynetwork icon\" src=\"https://static.licdn.com/sc/h/4yxfb6j5ycpjfjgehfqgmdx9w\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/notifications/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-header-0-notifications_glimmer&amp;trkEmail=eml-email_network_conversations_01-header-0-notifications_glimmer-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Notifications icon\" src=\"https://static.licdn.com/sc/h/eh1e9j5bszh6p379hn269p3ps\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"p-0 !pb-0 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0px; padding-bottom: 0px !important;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372873485230063616?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372873485230063616?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"actor-card-default\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQG27YJGuyywPQ/profile-displayphoto-scale_400_400/B4EZlNnUDZIUAk-/0/1757943777329?e=2147483647&amp;v=beta&amp;t=bqRc1slIFBw9WQ7-c4T8NDhoL7sZWHD7OLjOPyqhoKU\" alt=\"Linda Gorgis\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%); display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Linda Gorgis </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> Finance Department Manager </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> <td class=\"!w-[80px]\" data-test-id=\"network-post-follow-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 80px !important;\" width=\"80\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=bngorgis&amp;entityUrn=ADoAAAajknMBU_inA_y4MjTFjvpbclFF36cbLcc&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" aria-label=\"Follow\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-tertiary-emphasis border-none button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: none; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=bngorgis&amp;entityUrn=ADoAAAajknMBU_inA_y4MjTFjvpbclFF36cbLcc&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline \" style=\"text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 text-md leading-regular text-system-gray-90\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> You need to hear this. I couldn’t stop crying </span> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button w-full koshin__button-with-full-width\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372873485230063616?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; width: 100% !important; display: block !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372873485230063616?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; width: 100% !important; display: block !important;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr><td class=\"h-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 16px;\" height=\"16\"></td></tr> <tr> <td class=\"rounded-md\" data-test-id=\"network-post-update-card\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372873485230063616?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image&amp;trkEmail=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"block w-full h-full\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block; height: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-cool-gray-20 rounded-md\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; background-color: #edf3f8;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-center bg-no-repeat h-[252px] bg-system-gray-40\" align=\"center\" data-test-id=\"update-card-container\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 252px; background-color: #cfcfcf; background-position: center; background-repeat: no-repeat; background-size: cover; background-image: url(&quot;https://media.licdn.com/dms/image/sync/v2/D5627AQG6nQLwZwNtng/articleshare-shrink_800/B56ZlDF8vcI8AI-/0/1757767257459?e=1758934800&amp;v=beta&amp;t=eWMeVxcc4IbsD2vyeBNrGPuMmTJrIcIvoqRgjaFvwH4&quot;);\" height=\"252\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"h-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 100%;\" height=\"100%\"> <tbody> <tr> <td align=\"center\" class=\"overflow-hidden\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; overflow: hidden;\"> <img class=\"w-[72px] h-[72px] block hidden\" src=\"https://static.licdn.com/sc/h/3l34msl8zlfabuxswu8otl4fl\" alt=\"Play video\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: none; height: 72px; width: 72px;\" width=\"72\" height=\"72\"> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"p-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 16px;\"> <p class=\"text-md font-bold leading-regular text-black\" style=\"margin: 0; font-size: 16px; font-weight: 600; line-height: 1.25; color: #000000;\"> Ed Sheeran – Rest in Peace, Charlie Kirk | Heartfelt Tribute Song </p> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7371886935457447936?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7371886935457447936?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"actor-card-default\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://media.licdn.com/dms/image/v2/C5603AQEGVXg8LD0wEA/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1619832147973?e=2147483647&amp;v=beta&amp;t=BdCGU2CAdDTg-wdiFzCgl4WqPa4LWO64Gq12gjInNqU\" alt=\"Sean Myers\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%); display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Sean Myers </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> Land Developer, Florida Residential Construction… </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> <td class=\"!w-[80px]\" data-test-id=\"network-post-follow-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 80px !important;\" width=\"80\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=seanmyers1&amp;entityUrn=ADoAAAAYj9ABtJqXrUqtwDKI-eLvVUBuF6r4zjs&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" aria-label=\"Follow\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-tertiary-emphasis border-none button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: none; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=seanmyers1&amp;entityUrn=ADoAAAAYj9ABtJqXrUqtwDKI-eLvVUBuF6r4zjs&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline \" style=\"text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 text-md leading-regular text-system-gray-90\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> My fellow Toastmasters, Maria Garaitonandia - Communication Strategist officially launched her first e-book… </span> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7371886935457447936?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-truncated~share~message-0-see~more&amp;trkEmail=eml-email_network_conversations_01-truncated~share~message-0-see~more-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <span data-test-id=\"truncated-message-see-more\" class=\"text-color-link font-bold\" style=\"font-weight: 600; color: #0a66c2;\"> see more </span> </a> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"w-auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: auto;\"> <tbody> <tr> <td class=\"pr-0.5\" data-test-reaction=\"LIKE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/91tdscn0h1aaoefui9crf11j6\" alt=\"LIKE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"EMPATHY\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/evs2x5zfnz5g0xrc6u22treq2\" alt=\"EMPATHY\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"reactions-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 2 </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button w-full koshin__button-with-full-width\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7371886935457447936?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; width: 100% !important; display: block !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7371886935457447936?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; width: 100% !important; display: block !important;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr><td class=\"h-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 16px;\" height=\"16\"></td></tr> <tr> <td class=\"rounded-md\" data-test-id=\"network-post-update-card\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7371886935457447936?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image&amp;trkEmail=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"block w-full h-full\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block; height: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-cool-gray-20 rounded-md\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; background-color: #edf3f8;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-center bg-no-repeat h-[252px] bg-system-gray-40\" align=\"center\" data-test-id=\"update-card-container\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 252px; background-color: #cfcfcf; background-position: center; background-repeat: no-repeat; background-size: cover; background-image: url(&quot;https://media.licdn.com/dms/image/sync/v2/D4E27AQFnRWJ6AHLE5A/articleshare-shrink_800/B4EZk4zjU.KkAI-/0/1757594663186?e=1758934800&amp;v=beta&amp;t=VQXaqXmnyNwsDpan6ZLH2cMlmaJAV5vF-14RgeC3ofc&quot;);\" height=\"252\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"h-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 100%;\" height=\"100%\"> <tbody> <tr> <td align=\"center\" class=\"overflow-hidden\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; overflow: hidden;\"> <img class=\"w-[448px] h-[252px] hidden hidden\" src=\"https://media.licdn.com/dms/image/sync/v2/D4E27AQFnRWJ6AHLE5A/articleshare-shrink_800/B4EZk4zjU.KkAI-/0/1757594663186?e=1758934800&amp;v=beta&amp;t=VQXaqXmnyNwsDpan6ZLH2cMlmaJAV5vF-14RgeC3ofc\" alt=\"View image\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: none; height: 252px; width: 448px;\" width=\"448\" height=\"252\"> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"p-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 16px;\"> <p class=\"text-md font-bold leading-regular text-black\" style=\"margin: 0; font-size: 16px; font-weight: 600; line-height: 1.25; color: #000000;\"> Untangling Communication </p> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7371158921765629952?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7371158921765629952?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"actor-card-default\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://media.licdn.com/dms/image/v2/C4E03AQFbFmNJneliZg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1606785551680?e=2147483647&amp;v=beta&amp;t=cN39yJcU82FhEWXXxknRNTvL4O6DwwCVKIdnLwZqpYw\" alt=\"tom wallace\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%); display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> tom wallace </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> Managing Partner at Florida Funders </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> <td class=\"!w-[80px]\" data-test-id=\"network-post-follow-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 80px !important;\" width=\"80\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=tom-wallace-568412&amp;entityUrn=ADoAAAAPkaABpvuW1IcjB1EKb4c0JbUfwKRp2ZM&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" aria-label=\"Follow\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-tertiary-emphasis border-none button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: none; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=tom-wallace-568412&amp;entityUrn=ADoAAAAPkaABpvuW1IcjB1EKb4c0JbUfwKRp2ZM&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline \" style=\"text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"w-auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: auto;\"> <tbody> <tr> <td class=\"pr-0.5\" data-test-reaction=\"LIKE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/91tdscn0h1aaoefui9crf11j6\" alt=\"LIKE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"reactions-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 4 </td> <td class=\"px-0.5\" data-test-id=\"separator\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\">·</td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"comments-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 1 Comment </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button w-full koshin__button-with-full-width\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7371158921765629952?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; width: 100% !important; display: block !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7371158921765629952?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; width: 100% !important; display: block !important;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr><td class=\"h-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 16px;\" height=\"16\"></td></tr> <tr> <td class=\"rounded-md\" data-test-id=\"network-post-update-card\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7371158921765629952?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image&amp;trkEmail=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"block w-full h-full\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block; height: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-cool-gray-20 rounded-md\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; background-color: #edf3f8;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-center bg-no-repeat auto pt-[71%] pb-[71%] bg-system-gray-40\" align=\"center\" data-test-id=\"update-card-container\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #cfcfcf; background-position: center; background-repeat: no-repeat; padding-top: 71%; padding-bottom: 71%; background-size: cover; background-image: url(&quot;https://media.licdn.com/dms/image/v2/D4E22AQGBufp5twOeRw/feedshare-shrink_1280/B4EZkud.tBKQAs-/0/1757421235645?e=1761177600&amp;v=beta&amp;t=R1pRD1YC22DXCpAyPoAD1xwGODuAvx1S3NzEzyuV0hw&quot;);\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"h-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 100%;\" height=\"100%\"> <tbody> <tr> <td align=\"center\" class=\"overflow-hidden\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; overflow: hidden;\"> <img class=\"w-[448px] h-[252px] hidden hidden\" src=\"https://media.licdn.com/dms/image/v2/D4E22AQGBufp5twOeRw/feedshare-shrink_1280/B4EZkud.tBKQAs-/0/1757421235645?e=1761177600&amp;v=beta&amp;t=R1pRD1YC22DXCpAyPoAD1xwGODuAvx1S3NzEzyuV0hw\" alt=\"View image\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: none; height: 252px; width: 448px;\" width=\"448\" height=\"252\"> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372982752092069888?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372982752092069888?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"actor-card-default\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQG1pDcN-pe7iQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1677101735945?e=2147483647&amp;v=beta&amp;t=CFBn9C6fyw3cLZdtfv82PtVaz9Snsi_--mfwc97Y9Z8\" alt=\"Thompson Whitney Blake\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%); display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Thompson Whitney Blake </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> CEO, Blake Investment Partners </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> <td class=\"!w-[80px]\" data-test-id=\"network-post-follow-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 80px !important;\" width=\"80\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=twblake&amp;entityUrn=ADoAABGl3aYBmDP6gSb2bS0i5k6aEIBpPZKgyBk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" aria-label=\"Follow\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-tertiary-emphasis border-none button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: none; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=twblake&amp;entityUrn=ADoAABGl3aYBmDP6gSb2bS0i5k6aEIBpPZKgyBk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline \" style=\"text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 text-md leading-regular text-system-gray-90\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> https://lnkd.in/e8RCq6t7 </span> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"w-auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: auto;\"> <tbody> <tr> <td class=\"pr-0.5\" data-test-reaction=\"LIKE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/91tdscn0h1aaoefui9crf11j6\" alt=\"LIKE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"PRAISE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/adig5urqxi03qzuy6iyjfm1b5\" alt=\"PRAISE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"reactions-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 27 </td> <td class=\"px-0.5\" data-test-id=\"separator\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\">·</td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"comments-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 4 Comments </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button w-full koshin__button-with-full-width\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372982752092069888?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; width: 100% !important; display: block !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372982752092069888?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; width: 100% !important; display: block !important;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr><td class=\"h-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 16px;\" height=\"16\"></td></tr> <tr> <td class=\"rounded-md\" data-test-id=\"network-post-update-card\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7372982752092069888?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image&amp;trkEmail=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"block w-full h-full\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block; height: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-cool-gray-20 rounded-md\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; background-color: #edf3f8;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-center bg-no-repeat h-[252px] bg-system-gray-40\" align=\"center\" data-test-id=\"update-card-container\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 252px; background-color: #cfcfcf; background-position: center; background-repeat: no-repeat; background-size: cover; background-image: url(&quot;https://media.licdn.com/dms/image/sync/v2/D4E27AQGLy6E6L-E9Dg/articleshare-shrink_800/B4EZlIYuJjHoAI-/0/1757856064358?e=1758934800&amp;v=beta&amp;t=VYESwun1YS9WgJMoPYf6Pj7Wr74Y-Fw136gZM26QMe8&quot;);\" height=\"252\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"h-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 100%;\" height=\"100%\"> <tbody> <tr> <td align=\"center\" class=\"overflow-hidden\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; overflow: hidden;\"> <img class=\"w-[448px] h-[252px] hidden hidden\" src=\"https://media.licdn.com/dms/image/sync/v2/D4E27AQGLy6E6L-E9Dg/articleshare-shrink_800/B4EZlIYuJjHoAI-/0/1757856064358?e=1758934800&amp;v=beta&amp;t=VYESwun1YS9WgJMoPYf6Pj7Wr74Y-Fw136gZM26QMe8\" alt=\"View image\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: none; height: 252px; width: 448px;\" width=\"448\" height=\"252\"> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"p-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 16px;\"> <p class=\"text-md font-bold leading-regular text-black\" style=\"margin: 0; font-size: 16px; font-weight: 600; line-height: 1.25; color: #000000;\"> Florida investor offers $30M for Charleston’s evacuated Dockside condo complex </p> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7369783025531920384?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7369783025531920384?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"actor-card-default\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQH3VgzE88Hy3Q/profile-displayphoto-scale_400_400/B4EZfvoqodGwAg-/0/1752072105267?e=2147483647&amp;v=beta&amp;t=Z65pFiWRb93jdo8XQ0pZVAVL-TcTy33m6urCN3JnU9k\" alt=\"Tim Vanderhoof, MEDP, QPCR\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%); display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Tim Vanderhoof, MEDP, QPCR </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> Vice President, Real Estate Acquisition, Cielo Digital… </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> <td class=\"!w-[80px]\" data-test-id=\"network-post-follow-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 80px !important;\" width=\"80\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=timvanderhoof&amp;entityUrn=ADoAAAOcZRwBieO9-6AZs7bHQME8aZ4ibD6--VI&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" aria-label=\"Follow\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-tertiary-emphasis border-none button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: none; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=timvanderhoof&amp;entityUrn=ADoAAAOcZRwBieO9-6AZs7bHQME8aZ4ibD6--VI&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline \" style=\"text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 text-md leading-regular text-system-gray-90\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> SMRs Stay in Play A new federal tax law may have pulled the rug out from under solar and wind—but it left… </span> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7369783025531920384?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-truncated~share~message-0-see~more&amp;trkEmail=eml-email_network_conversations_01-truncated~share~message-0-see~more-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <span data-test-id=\"truncated-message-see-more\" class=\"text-color-link font-bold\" style=\"font-weight: 600; color: #0a66c2;\"> see more </span> </a> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"w-auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: auto;\"> <tbody> <tr> <td class=\"pr-0.5\" data-test-reaction=\"LIKE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/91tdscn0h1aaoefui9crf11j6\" alt=\"LIKE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"reactions-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 2 </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button w-full koshin__button-with-full-width\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7369783025531920384?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; width: 100% !important; display: block !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7369783025531920384?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; width: 100% !important; display: block !important;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr><td class=\"h-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 16px;\" height=\"16\"></td></tr> <tr> <td class=\"rounded-md\" data-test-id=\"network-post-update-card\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7369783025531920384?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image&amp;trkEmail=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"block w-full h-full\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block; height: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-cool-gray-20 rounded-md\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; background-color: #edf3f8;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-center bg-no-repeat h-[252px] bg-system-gray-40\" align=\"center\" data-test-id=\"update-card-container\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 252px; background-color: #cfcfcf; background-position: center; background-repeat: no-repeat; background-size: cover; background-image: url(&quot;https://media.licdn.com/dms/image/sync/v2/D5627AQEfsbl1i4r-9g/articleshare-shrink_1280_800/B56ZiF4rFKHkAY-/0/1754592884231?e=1758934800&amp;v=beta&amp;t=9XqIvTmqRuIln6MV7Tero9ABQl34UIaxsrTy1HkyKLY&quot;);\" height=\"252\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"h-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 100%;\" height=\"100%\"> <tbody> <tr> <td align=\"center\" class=\"overflow-hidden\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; overflow: hidden;\"> <img class=\"w-[448px] h-[252px] hidden hidden\" src=\"https://media.licdn.com/dms/image/sync/v2/D5627AQEfsbl1i4r-9g/articleshare-shrink_1280_800/B56ZiF4rFKHkAY-/0/1754592884231?e=1758934800&amp;v=beta&amp;t=9XqIvTmqRuIln6MV7Tero9ABQl34UIaxsrTy1HkyKLY\" alt=\"View image\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: none; height: 252px; width: 448px;\" width=\"448\" height=\"252\"> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"p-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 16px;\"> <p class=\"text-md font-bold leading-regular text-black\" style=\"margin: 0; font-size: 16px; font-weight: 600; line-height: 1.25; color: #000000;\"> Powering the Next Generation of Projects </p> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"pt-4 pb-2 px-3 bg-color-background-canvas\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding-left: 24px; padding-right: 24px; padding-bottom: 16px; padding-top: 32px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-footer_promo-0-footer_see_all&amp;trkEmail=eml-email_network_conversations_01-footer_promo-0-footer_see_all-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" aria-label=\"See more on LinkedIn\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-footer_promo-0-footer_see_all&amp;trkEmail=eml-email_network_conversations_01-footer_promo-0-footer_see_all-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> See more on LinkedIn </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-lg text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 20px; color: #114951;\"> Get the new LinkedIn desktop app </h2> </td> </tr> <tr> <td class=\"text-center pb-2\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <a href=\"https://apps.microsoft.com/store/detail/9WZDNCRFJ4Q7?launch=true&amp;cid=linkedin_email_upsell&amp;mode=full\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it from Microsoft\" src=\"https://static.licdn.com/sc/h/ejpkkpwvqks31a3cjqokb7fbm\" class=\"h-[40px] w-[112px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 112px;\" width=\"112\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-md text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 16px; color: #114951;\"> Also available on mobile </h2> </td> </tr> <tr> <td class=\"text-center\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <a href=\"https://itunes.apple.com/us/app/linkedin/id288429040?pt=10746&amp;ct=st_appsite_flagship&amp;mt=8\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Download on the App Store\" src=\"https://static.licdn.com/sc/h/76yzkd0h5kiv27lrd4yaenylk\" class=\"h-[40px] w-[120px] pr-1\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 120px; padding-right: 8px;\" width=\"120\" height=\"40\"> </a> <a href=\"https://play.google.com/store/apps/details?id=com.linkedin.android&amp;referrer=st_appsite_flagship\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it on Google Play\" src=\"https://static.licdn.com/sc/h/142qudwblp58zwmc9vkqfplug\" class=\"h-[40px] w-[134px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 134px;\" width=\"134\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px;\"><hr class=\"border-none bg-[#e0dfdd] h-[1px]\" style=\"height: 1px; border-style: none; background-color: #e0dfdd;\"></td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" data-test-id=\"email-footer__intended\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_network_conversations_01-SecurityHelp-0-footerglimmer-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving Network Conversations emails. Some content may be automatically translated based on <a href=\"https://www.linkedin.com/mypreferences/d/language-for-translation\" target=\"_blank\" class=\"link-no-visited-state\" data-tracking-will-navigate data-tracking-control-name=\"email_network_conversations_content_settings_link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-weight: 600; color: #0a66c2;\">your settings</a>.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/mypreferences/u/emailunsub?action=updateEmailSubscription&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-unsubscribe-0-footerGlimmer&amp;trkEmail=eml-email_network_conversations_01-unsubscribe-0-footerGlimmer-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;loid=AQHa4Y6x5HhiRwAAAZlkoHf-JfZr9zttzyO8S8V2ufB0_AAC86QcGhhp3K-CiEM-vD_B5AgAa4hQ2q12U7Ut1JoCgYs2z57uPgtsGZC-Ym8Isd_LxVya\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Unsubscribe</a>   ·   <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-help-0-footerglimmer&amp;trkEmail=eml-email_network_conversations_01-help-0-footerglimmer-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" data-test-help-link class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3gJlzO-RSpaHY1&amp;trk=eml-email_network_conversations_01-footer-0-logoGlimmer&amp;trkEmail=eml-email_network_conversations_01-footer-0-logoGlimmer-null-poh2nf~mfrjvgc4~4g-null-null&amp;eid=poh2nf-mfrjvgc4-4g&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFtY21wMloyTTBMVFJuOlpXMWhhV3hmYm1WMGQyOXlhMTlqYjI1MlpYSnpZWFJwYjI1elh6QXg6.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','Linda Gorgis shared a post: You need to hear this. I couldn’t stop crying\r\n\r\nEd Sheeran – Rest in Peace, Charlie Kirk | Heartfelt Tribute Song\r\n\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7372873485230063616?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&midToken=AQE-iPshthTClw&midSig=3gJlzO-RSpaHY1&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~mfrjvgc4~4g-null-null&eid=poh2nf-mfrjvgc4-4g&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\r\n        \r\n\r\n\r\n\r\n          \r\n        \r\n\r\n          Sean Myers shared a post: My fellow Toastmasters, Maria Garaitonandia - Communication Strategist  officially launched her first e-book this week!\r\n\r\nGrab yoor copy on Amazon…\r\nLIKE EMPATHY 2\r\nUntangling Communication\r\n\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7371886935457447936?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&midToken=AQE-iPshthTClw&midSig=3gJlzO-RSpaHY1&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~mfrjvgc4~4g-null-null&eid=poh2nf-mfrjvgc4-4g&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\r\n        \r\n\r\n\r\n\r\n          \r\n        \r\n\r\n          tom wallace shared a post: \r\nLIKE 4, 1 Comment\r\n\r\n\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7371158921765629952?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&midToken=AQE-iPshthTClw&midSig=3gJlzO-RSpaHY1&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~mfrjvgc4~4g-null-null&eid=poh2nf-mfrjvgc4-4g&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\r\n        \r\n\r\n\r\n\r\n          \r\n        \r\n\r\n          Thompson Whitney Blake shared a post: https://lnkd.in/e8RCq6t7\r\nLIKE PRAISE 27, 4 Comments\r\nFlorida investor offers $30M for Charleston’s evacuated Dockside condo complex\r\n\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7372982752092069888?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&midToken=AQE-iPshthTClw&midSig=3gJlzO-RSpaHY1&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~mfrjvgc4~4g-null-null&eid=poh2nf-mfrjvgc4-4g&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\r\n        \r\n\r\n\r\n\r\n          \r\n        \r\n\r\n          Tim Vanderhoof, MEDP, QPCR shared a post: SMRs Stay in Play\r\nA new federal tax law may have pulled the rug out from under solar and wind—but it left nuclear energy standing tall. That’s good…\r\nLIKE 2\r\nPowering the Next Generation of Projects\r\n\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7369783025531920384?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&midToken=AQE-iPshthTClw&midSig=3gJlzO-RSpaHY1&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~mfrjvgc4~4g-null-null&eid=poh2nf-mfrjvgc4-4g&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\r\n        \r\n\r\n\r\nSee more on LinkedIn: https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&midToken=AQE-iPshthTClw&midSig=3gJlzO-RSpaHY1&trk=eml-email_network_conversations_01-footer_promo-0-footer_see_all&trkEmail=eml-email_network_conversations_01-footer_promo-0-footer_see_all-null-poh2nf~mfrjvgc4~4g-null-null&eid=poh2nf-mfrjvgc4-4g&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\r\n\r\n----------------------------------------\r\n\r\nThis email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\nLearn why we included this: https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&midToken=AQE-iPshthTClw&midSig=3gJlzO-RSpaHY1&trk=eml-email_network_conversations_01-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_network_conversations_01-SecurityHelp-0-textfooterglimmer-null-poh2nf~mfrjvgc4~4g-null-null&eid=poh2nf-mfrjvgc4-4g&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\r\nYou are receiving Network Conversations emails. Some content may be automatically translated based on\r\n      <a href=\"https://www.linkedin.com/mypreferences/d/language-for-translation\" target=\"_blank\" class=\"link-no-visited-state\" data-tracking-will-navigate data-tracking-control-name=\"email_network_conversations_content_settings_link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-weight: 600; color: #0a66c2;\">your settings</a>.\r\n\r\n\r\nUnsubscribe: https://www.linkedin.com/comm/mypreferences/u/emailunsub?action=updateEmailSubscription&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&midToken=AQE-iPshthTClw&midSig=3gJlzO-RSpaHY1&trk=eml-email_network_conversations_01-unsubscribe-0-textfooterglimmer&trkEmail=eml-email_network_conversations_01-unsubscribe-0-textfooterglimmer-null-poh2nf~mfrjvgc4~4g-null-null&eid=poh2nf-mfrjvgc4-4g&loid=AQHa4Y6x5HhiRwAAAZlkoHf-JfZr9zttzyO8S8V2ufB0_AAC86QcGhhp3K-CiEM-vD_B5AgAa4hQ2q12U7Ut1JoCgYs2z57uPgtsGZC-Ym8Isd_LxVya\r\nHelp: https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BRriUK3aATj2RKypNVdKvPg%3D%3D&midToken=AQE-iPshthTClw&midSig=3gJlzO-RSpaHY1&trk=eml-email_network_conversations_01-help-0-textfooterglimmer&trkEmail=eml-email_network_conversations_01-help-0-textfooterglimmer-null-poh2nf~mfrjvgc4~4g-null-null&eid=poh2nf-mfrjvgc4-4g&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjc4ZGM3ZDg0NzliYWY4OTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNGY4ZGY0MThjZjNiYjIxMjI4OTUxYmJkOTg1YzA1YmFiMWQ2ZTEwMzk4NjM3MTMsMSwx\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.\r\nLinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',0,0,0,0,0,0,'2025-09-20 00:57:42','2025-12-09 19:28:40','2025-12-09 19:28:40','2025-12-09 19:28:40',NULL,NULL,NULL),
(757,4,' <BYAPR14MB3000DED50F71FB84D109CD4FFD10A@BYAPR14MB3000.namprd14.prod.outlook.com>',NULL,NULL,'SL Updates','AValkenburg@strategic-logix.com','Andrew Valkenburg','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n</head>\r\n<body>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nRick,</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<br>\r\n</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nGreat seeing you this week! Glad yall are doing well.</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<br>\r\n</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nOver the past couple months, Strategic Logix and the RRSL gained significant traction and hit some of the milestones we had briefed you were upcoming.</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<br>\r\n</div>\r\n<ol start=\"1\" data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:false,&quot;orderedStyleType&quot;:1}\" style=\"list-style-type: decimal;\">\r\n<li style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<div dir=\"ltr\" role=\"presentation\">PBAS Win - Waiting on award letter to understand delivery schedule. 4 companies total won tranche 1. We featured the longest flight times, largest payload capacities, best terminal guidance, only target recognition, only mothership\r\n capable drone, only US Fiber Capable Drone, and only Swarm Capable drone as well as our new SOS (Swarm of Swarms)</div>\r\n</li><li style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<div dir=\"ltr\" role=\"presentation\">UAS for US Army Win - Waiting on the LOI to begin production for 10,000 units. We were the best priced by over $1,000 per unit and the only pure US Made Drone that submitted. This offering includes our new Anti Jam - Anti\r\n Intercept Radios</div>\r\n</li><li style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<div dir=\"ltr\" role=\"presentation\">Official Drone&nbsp;of US Army Aviation Center of Excellence - 2,000 Units purchased plus add ons for 2 years of training, innovation, integrations, and lethality courses for new 15E-W MOS and the Drone Operators Course</div>\r\n</li><li style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<div dir=\"ltr\" role=\"presentation\">Competition Wins: RRSLs won 2 more DOD Competitions, is the only 7&quot; drone competing on the long range course for Crucible, and is competing Oct 8-9 at DCOMP.</div>\r\n</li><li style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<div dir=\"ltr\" role=\"presentation\">US Army opened a solicitation for 1M RRSLs delivered over the next few years.</div>\r\n</li><li style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<div dir=\"ltr\" role=\"presentation\">RRSL-X: We have 5x of these packages on order representing 5,000 drones for the US Army</div>\r\n</li><li style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<div dir=\"ltr\" role=\"presentation\">USMC - Gained significant ground with the&nbsp;Marine Corps. We have several hundred now at both Drone Training Courses. Our main use case with USMC is Fiber with the RRSL-F</div>\r\n</li><li style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<div dir=\"ltr\" role=\"presentation\">National Guard Bureau has scheduled us for NGREA Funding for FY27 for 1,000 drones for each state.</div>\r\n</li><li style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<div dir=\"ltr\" role=\"presentation\">We officially hit the most fielded drone in the US Army&nbsp;</div>\r\n</li><li style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<div dir=\"ltr\" role=\"presentation\">Asked by PM UAS to submit an SRR platform to undercut the current options</div>\r\n</li></ol>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nI know you\'ve seen the docs on the platform and the coalition of small businesses, but if you need any other updates let me know. If you need any financials, Jeremy has some pretty updated numbers given the recent interest from that Airo Group I told you about.</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<br>\r\n</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nAndrew</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\" data-applydefaultfontstyles=\"true\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" dir=\"ltr\">\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<br>\r\n</div>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" id=\"ms-outlook-mobile-signature\">\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nVery Respectfully,</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<br>\r\n</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nAndrew J. Valkenburg</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nChief Operations Officer | Partner</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nStrategic Logix, LLC</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<br>\r\n</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n484-225-9132</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nAValkenburg@Strategic-Logix.com</div>\r\n</div>\r\n</body>\r\n</html>','Rick,\r\n\r\nGreat seeing you this week! Glad yall are doing well.\r\n\r\nOver the past couple months, Strategic Logix and the RRSL gained significant traction and hit some of the milestones we had briefed you were upcoming.\r\n\r\n\r\n  1.\r\nPBAS Win - Waiting on award letter to understand delivery schedule. 4 companies total won tranche 1. We featured the longest flight times, largest payload capacities, best terminal guidance, only target recognition, only mothership capable drone, only US Fiber Capable Drone, and only Swarm Capable drone as well as our new SOS (Swarm of Swarms)\r\n  2.\r\nUAS for US Army Win - Waiting on the LOI to begin production for 10,000 units. We were the best priced by over $1,000 per unit and the only pure US Made Drone that submitted. This offering includes our new Anti Jam - Anti Intercept Radios\r\n  3.\r\nOfficial Drone of US Army Aviation Center of Excellence - 2,000 Units purchased plus add ons for 2 years of training, innovation, integrations, and lethality courses for new 15E-W MOS and the Drone Operators Course\r\n  4.\r\nCompetition Wins: RRSLs won 2 more DOD Competitions, is the only 7\" drone competing on the long range course for Crucible, and is competing Oct 8-9 at DCOMP.\r\n  5.\r\nUS Army opened a solicitation for 1M RRSLs delivered over the next few years.\r\n  6.\r\nRRSL-X: We have 5x of these packages on order representing 5,000 drones for the US Army\r\n  7.\r\nUSMC - Gained significant ground with the Marine Corps. We have several hundred now at both Drone Training Courses. Our main use case with USMC is Fiber with the RRSL-F\r\n  8.\r\nNational Guard Bureau has scheduled us for NGREA Funding for FY27 for 1,000 drones for each state.\r\n  9.\r\nWe officially hit the most fielded drone in the US Army\r\n  10.\r\nAsked by PM UAS to submit an SRR platform to undercut the current options\r\n\r\nI know you\'ve seen the docs on the platform and the coalition of small businesses, but if you need any other updates let me know. If you need any financials, Jeremy has some pretty updated numbers given the recent interest from that Airo Group I told you about.\r\n\r\nAndrew\r\n\r\nVery Respectfully,\r\n\r\nAndrew J. Valkenburg\r\nChief Operations Officer | Partner\r\nStrategic Logix, LLC\r\n\r\n484-225-9132\r\nAValkenburg@Strategic-Logix.com',0,0,0,0,0,0,'2025-09-20 13:46:08','2025-12-09 19:28:41','2025-12-09 19:28:41','2025-12-09 19:28:41',NULL,NULL,NULL),
(758,4,' <BN2P110MB097762796E18BC3F7D0D38A3A010A@BN2P110MB0977.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'RE: Thanks for the ride!','mike@dpiuav.com','Michael Piasecki','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Segoe UI\";\r\n	panose-1:2 11 5 2 4 2 4 2 2 3;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\nspan.EmailStyle19\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Rick, <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">I am glad you were with me as I clearly was missing all the turns. Please have your legal review the NDA. If you can give me addresses and names I&#8217;ll fill it out for you. Please know that I wish PIAC and my\r\n brothers all the best but to some extent we can be competition. This doesn&#8217;t have to be the case always as you probably already know that the Aerospace/Defense Industry is quite &#8220;loose&#8221; that way. Nonetheless, we keep proprietary things fire walled from each\r\n other. <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">We need to expand our dual use tech and want to pitch it to you and your CEO as we have great reason to believe the huge potential of our systems.\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Respectfully,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Michael<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Michael Piasecki<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">President<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">DPI UAV Systems<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">600 W. 2<sup>nd</sup> St., Essington, PA 19029<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Office: (610) 521-6115 x 202<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Mobile: (215) 439-2036<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\"><a href=\"http://www.dpiuav.com/\"><span style=\"color:#0563C1\">www.dpiuav.com</span></a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060\"><a href=\"https://youtu.be/4ihY-IiAfXI\"><span style=\"color:#0563C1\">https://youtu.be/4ihY-IiAfXI</span></a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\">Extending Man\'s Reach with Unmanned Helicopters</span></b><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060\"><img border=\"0\" width=\"222\" height=\"70\" style=\"width:2.3125in;height:.7291in\" id=\"Picture_x0020_2\" src=\"cid:image001.jpg@01DC2A20.E565B400\" alt=\"DPI-logo-4-April28-blue-full\"></span><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">This is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information. No one else\r\n may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is appreciated.<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Friday, September 19, 2025 12:24 PM<br>\r\n<b>To:</b> Info &lt;Info@dpiuav.com&gt;<br>\r\n<b>Subject:</b> Thanks for the ride!<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\" width=\"100%\" style=\"width:100.0%\">\r\n<tbody>\r\n<tr>\r\n<td width=\"0\" style=\"width:.3pt;background:#A6A6A6;padding:5.25pt 1.5pt 5.25pt 1.5pt\">\r\n</td>\r\n<td width=\"100%\" style=\"width:100.0%;background:#EAEAEA;padding:5.25pt 3.75pt 5.25pt 11.25pt;aspect-ratio: revert !important;background:revert !important;block-size: revert !important;border:revert !important;bottom: revert !important;color:revert !important;color-scheme: revert !important;content-visibility: revert !important;cursor:revert !important;direction:revert !important;display:revert !important;font-size:revert !important;height:revert !important;hyphens: revert !important;letter-spacing:revert !important;line-height:revert !important;margin:revert !important;opacity: revert !important;order: revert !important;outline: revert !important;overflow:revert !important;padding:revert !important;position:revert !important;resize: revert !important;rotate: revert !important;scale: revert !important;tab-size: revert !important;table-layout:revert !important;text-align:revert !important;text-indent:revert !important;text-orientation: revert !important;text-overflow: revert !important;text-shadow:revert !important;text-transform:revert !important;text-wrap: revert !important;top:revert !important;transition: revert !important;user-select: revert !important;vertical-align:revert !important;visibility:revert !important;white-space:revert !important;width:revert !important;word-break:revert !important;word-spacing:revert !important;writing-mode:revert !important;zoom: revert !important\">\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-element:frame;mso-element-frame-hspace:2.25pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:column;mso-height-rule:exactly\">\r\n<span style=\"font-size:9.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#212121\">You don\'t often get email from\r\n<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>. <a href=\"https://aka.ms/LearnAboutSenderIdentification\">\r\nLearn why this is important</a> <o:p></o:p></span></p>\r\n</div>\r\n</td>\r\n<td width=\"75\" style=\"width:56.25pt;background:#EAEAEA;padding:5.25pt 3.75pt 5.25pt 3.75pt;aspect-ratio: revert !important;background:revert !important;block-size: revert !important;border:revert !important;bottom: revert !important;color:revert !important;color-scheme: revert !important;content-visibility: revert !important;cursor:revert !important;direction:revert !important;display:revert !important;font-size:revert !important;height:revert !important;hyphens: revert !important;letter-spacing:revert !important;line-height:revert !important;margin:revert !important;opacity: revert !important;order: revert !important;outline: revert !important;overflow:revert !important;padding:revert !important;position:revert !important;resize: revert !important;rotate: revert !important;scale: revert !important;tab-size: revert !important;table-layout:revert !important;text-align:revert !important;text-indent:revert !important;text-orientation: revert !important;text-overflow: revert !important;text-shadow:revert !important;text-transform:revert !important;text-wrap: revert !important;top:revert !important;transition: revert !important;user-select: revert !important;vertical-align:revert !important;visibility:revert !important;white-space:revert !important;width:revert !important;word-break:revert !important;word-spacing:revert !important;writing-mode:revert !important;zoom: revert !important;align: left !important\">\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<div>\r\n<div id=\"bloop_customfont\">\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Mike,<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Just getting back to some normalcy here at home.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thank you for the ride to the airport and the opportunity to chat, and&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">YES, I would love to talk in more depth.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Actually, your brother emailed yesterday as well and I just responded.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I think a trip to Philly is in store for my CEO and myself.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">That said, do you want our NDA or&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">do you have something you&#8217;d like us to sign.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Really excited about the possibilities here!<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thank so much,<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://mavrix.one\">https://mavrix.one</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"Picture_x0020_1\" src=\"cid:image002.png@01DC2A20.E565B400\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','Rick,\r\n\r\nI am glad you were with me as I clearly was missing all the turns. Please have your legal review the NDA. If you can give me addresses and names I\'ll fill it out for you. Please know that I wish PIAC and my brothers all the best but to some extent we can be competition. This doesn\'t have to be the case always as you probably already know that the Aerospace/Defense Industry is quite \"loose\" that way. Nonetheless, we keep proprietary things fire walled from each other.\r\n\r\nWe need to expand our dual use tech and want to pitch it to you and your CEO as we have great reason to believe the huge potential of our systems.\r\n\r\nRespectfully,\r\nMichael\r\n\r\n\r\nMichael Piasecki\r\nPresident\r\nDPI UAV Systems\r\n600 W. 2nd St., Essington, PA 19029\r\nOffice: (610) 521-6115 x 202\r\nMobile: (215) 439-2036\r\nwww.dpiuav.com<http://www.dpiuav.com/>\r\nhttps://youtu.be/4ihY-IiAfXI\r\n\r\n\r\nExtending Man\'s Reach with Unmanned Helicopters\r\n[DPI-logo-4-April28-blue-full]\r\n\r\nThis is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is appreciated.\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, September 19, 2025 12:24 PM\r\nTo: Info <Info@dpiuav.com>\r\nSubject: Thanks for the ride!\r\n\r\nYou don\'t often get email from rick@mavrix.one<mailto:rick@mavrix.one>. Learn why this is important<https://aka.ms/LearnAboutSenderIdentification>\r\nHi Mike,\r\nJust getting back to some normalcy here at home.\r\nThank you for the ride to the airport and the opportunity to chat, and\r\nYES, I would love to talk in more depth.\r\nActually, your brother emailed yesterday as well and I just responded.\r\nI think a trip to Philly is in store for my CEO and myself.\r\nThat said, do you want our NDA or\r\ndo you have something you\'d like us to sign.\r\nReally excited about the possibilities here!\r\nThank so much,\r\nRick\r\nRick Mislan, PhD\r\nhttps://mavrix.one\r\n[cid:image002.png@01DC2A20.E565B400]',0,0,0,0,0,0,'2025-09-20 15:31:20','2025-12-09 19:28:41','2025-12-09 19:28:41','2025-12-09 19:28:41',NULL,NULL,NULL),
(759,4,'<4zydBneqRc6B-eNe2M72dg@geopod-ismtpd-24>',NULL,NULL,'Your cart is about to expire =?UTF-8?B?8J+YsQ==?=','help@stickermule.com','Sticker Mule','<!DOCTYPE html>\r\n<html lang=\"en-US\" xml:lang=\"en-US\" xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n    <meta http-equiv=\"Content-Language\" content=\"en-US\">\r\n<title dir=\"auto\">Your cart is about to expire 😱</title>\r\n</head>\r\n<body>\r\n    <div style=\"display: none; max-height: 0px; overflow: hidden;\"></div>\r\n    \r\n    <p>\r\n        \r\n            Hello,\r\n        \r\n    </p>\r\n    <div class=\"vero-editable\">\r\n<meta charset=\"utf-8\">Your cart will expire soon.<br><br><a class=\"ProsemirrorEditor-link\" href=\"https://u10257537.ct.sendgrid.net/ls/click?upn=u001.Bnqg3Ic6NvfrL518iHt5g9f0Qko8cBeZDxvCnfK6rb0Of6jscCb6w-2BeswJberJc4fSiaeyEkpWt5GxLYdTpN3Z03K35-2FsFkld447tMeSEdhKZnvaB0mfJ8okBNs0Xesd56a9wO2OmGNR9SEgV9MBR-2FBti8GdYvtpF830kobs9O0IeEVfiCZrFVO-2B330-2F-2FqlLC7d7OzFXJti-2B-2FTim9V7-2FRGyTKHPCaovkqWgceFHjB19dlj-2B8x6w2Q198wxFuL7-2BUBAnEhifnE63MewEvmT3VacBTEoyZQd596WQYTEReR6Gg9Jly7LSpuFgKMSLYVb-2FG-2BQH3kB0TFz0fTf-2BNGBJjp9-2Fx2YHprh343OJzcCGBWwZlB8o7LOnHtNQZPUi5SlsJfJpy_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi8ZaxgHC19GnFNeKf3xB6-2BCAZ4tMTB2xh0qfIJ78-2BXjbjoG6Kuzn3A8Kp1FOMRN-2B9vizgAiqH0Qs0NfCXWifkfvxrJcXt3YCWCDewey89ZAj5q6-2FiYlI5KHlgBPMryLLqIRoEiwxHiGhTAt5EHjvkjlzGCBcuBvL1Ee5pPFbvghbxwMHoTkN-2FwAUgzxrGu4RX0OA5iC7v9LM3GlWhah96-2BpXD7VzDwY6-2F7fHwT67sYz0vVpH5eDcSyBr31MuoSyhf0dAtR5vm-2FFNgn1fq3aAzOAUtxmSs0WKBjtCtEZz-2B0UN-2F9AqwaMybgMJAIyWnpFPZmRpjSc-2BbmxmgH2aStawK4-2BayEQ12zXR725nmZtQVFv8XPkbxa5o4vK23-2F-2FjLLA1TqcovLV92L7OaXMEXMUp-2FC7apEwFBIuzyyZ6MGMEwsjM0IKy-2BNoE8By77VunDJ6urjZmdRG0TFgAMn2lLUBx366r74R9BljTSNU-2FQF5eNDhStVYeINO70Js8wSkDbshdSjO3RvMkKN9PE9GHpP6pZU3KOuhJmuHDrFV7-2BsK7wJrO9-2FvzCCLUVuiRmauimXe5iuqWaLTEAVV2VH5XiGG-2BRlwht9gBzmMgdv0kpqKE0A-2FATzy4u9bHBD1Lga932JEwVeasQk3-2F-2BMJSYlLjd0SNAFeN67MGppYd4lPTPrFG3iZu-2FofsAyDHhGk7QZaG1qAUqyqbLaFn9-2FMDDBvEEjNVHBCjlznOTosmsC3fWl-2FcSO-2BC8u-2FUpTb4hE-2BshboTdPiYPcred2RBM4gNvuYeA-2FusyFf5b-2FSr7gRlA5pZFu39eHREwPOT5ZnzsWWTgci-2BbQG3hA-3D\">Complete your order now</a><br><br>In your cart, you left:<br><br>    ( )<br><br><br>Anthony<br>Cofounder, <a href=\"https://u10257537.ct.sendgrid.net/ls/click?upn=u001.KoK1OhsrNDpg3-2F7dkXLj-2BElqoyWwxcDSRCF56pHQcuFEfybd3hZVeMSJ5-2BQZXrlxDdn0frVSQT-2BhcSpMtLfPRBIqB9-2F9o3odFdYiuXBluhQEq6NQYCdWVhv9vTnWoJLQoXz7gFEuvomOaU2yTCtKTBGcUvVNZUwJBoPmGy1PZPcFQwvkNQgW54-2B5LykImnjE5JV-2BTCCMFI-2BIiODTPMeqdQbh9ZXz3gB7sNBLK-2Fmp7hZC5nn9SnUVYDyJj715R9yHeRS8ad7xO9n1VE00d17MKLbHwPpnZuka4C5VwE5-2FMRUeaCyf-2BagMO5O6lg1CVGfWxv76w65Dh8cPtUYY7Vu-2FrhaAKk3gMuuj-2BUjsU1m6Xpg-2B-2FqJFXqKve2HlFixnbHBSZeKc_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi8ZaxgHC19GnFNeKf3xB6-2BCAZ4tMTB2xh0qfIJ78-2BXjbjoG6Kuzn3A8Kp1FOMRN-2B9vizgAiqH0Qs0NfCXWifkfvxrJcXt3YCWCDewey89ZAj5q6-2FiYlI5KHlgBPMryLLqIRoEiwxHiGhTAt5EHjvkjlzGCBcuBvL1Ee5pPFbvghbxwMHoTkN-2FwAUgzxrGu4RX0OA5iC7v9LM3GlWhah96-2BpXD7VzDwY6-2F7fHwT67sYz0vVpH5eDcSyBr31MuoSyhf0dAtR5vm-2FFNgn1fq3aAzOAUtxmSs0WKBjtCtEZz-2B0UN-2F9AqwaMybgMJAIyWnpFPZmRpjSc-2BbmxmgH2aStawK4-2BayEQ12zXR725nmZtQVFv8XPkbxa5o4vK23-2F-2FjLLA1TqcovLV92L7OaXMEXMUp-2FC7apEwFBIuzyyZ6MGMEwsjM0IKy-2BNoE8By77VunDJ6urjZmdRG0TFgAMn2lLUBx366r74R9BljTSNU-2FQF5eNDhStVYeINO70Js8wSkDbshdSjO3RvMkKN9PE9GHpP6pZU3KOuhJmuHDrFV7-2BsK7wJrO9-2FvzCCLUVuiRmauimXe5iuqWaLTEAVV2VH5XiGG-2BRlwht9gBzmMgdv0kpqKE0A-2FATzy4u9bHBD1Lga932JEwVeuTL6XJIu-2By6PskbLLZZGYk2KS4hSIheRZH5-2BQYBMfmwnnQ18yK-2BoYjrTNXnmiU2fNy8UvW7T5-2FBY9MPpiG1pxcdGyeuj7vK4y-2BL1SccFuUFvglTBzVDBnuZ1UqaBdmDcbXiaKlUNohYxyEw3X84GIdGRVntwhclcmJcI92x18U1MXP6IvURBjh97y7DMylp4-3D\">Sticker Mule</a><br><p><br></p>\r\n<br><p><span style=\"font-size: 10px;\">-- <br> Sticker Mule, 336 Forest Ave, Amsterdam, NY 12010<br><a href=\"https://u10257537.ct.sendgrid.net/ls/click?upn=u001.Bnqg3Ic6NvfrL518iHt5g9f0Qko8cBeZDxvCnfK6rb3rsUrf457rfUWSUsc0KJk8M-2Bs5GUzl52dmrJB87p3C10oUFbpHsXBCwSuP3q5qfmKuEvXGIk6Isrs2T-2BOPKYKSKNFx4GVamLfOSaNIeScGDg9z9cmue5FA4goT1aC72-2B1cIHUu762tP9g68HV9kadHwnT3xX6xBgy1lW9c3ouak62kQwRx0H4SVB37gDY2iI1eEwX562rzcb26-2BWjRhuZ8KMWn5zCWlGkQ6GFKCrWMpyERNfpRASnpYmG9-2Bo4qcyT9nyk0SYZD1Ho5VUh8-2BGdBnzQi3b1pkEoT2EkqIY29Zy1fD6EYry7csORRpNqaEqObBqzDUMejs4YK8VgJKS-2BrqOnJrG12GDFtGXCH5hc-2BLA-3D-3DkSoi_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi8ZaxgHC19GnFNeKf3xB6-2BCAZ4tMTB2xh0qfIJ78-2BXjbjoG6Kuzn3A8Kp1FOMRN-2B9vizgAiqH0Qs0NfCXWifkfvxrJcXt3YCWCDewey89ZAj5q6-2FiYlI5KHlgBPMryLLqIRoEiwxHiGhTAt5EHjvkjlzGCBcuBvL1Ee5pPFbvghbxwMHoTkN-2FwAUgzxrGu4RX0OA5iC7v9LM3GlWhah96-2BpXD7VzDwY6-2F7fHwT67sYz0vVpH5eDcSyBr31MuoSyhf0dAtR5vm-2FFNgn1fq3aAzOAUtxmSs0WKBjtCtEZz-2B0UN-2F9AqwaMybgMJAIyWnpFPZmRpjSc-2BbmxmgH2aStawK4-2BayEQ12zXR725nmZtQVFv8XPkbxa5o4vK23-2F-2FjLLA1TqcovLV92L7OaXMEXMUp-2FC7apEwFBIuzyyZ6MGMEwsjM0IKy-2BNoE8By77VunDJ6urjZmdRG0TFgAMn2lLUBx366r74R9BljTSNU-2FQF5eNDhStVYeINO70Js8wSkDbshdSjO3RvMkKN9PE9GHpP6pZU3KOuhJmuHDrFV7-2BsK7wJrO9-2FvzCCLUVuiRmauimXe5iuqWaLTEAVV2VH5XiGG-2BRlwht9gBzmMgdv0kpqKE0A-2FATzy4u9bHBD1Lga932JEwVfyqI-2BoFIRlCPkrlKYlxWS7PAvFaIv94FfFVX7uipS1NO3pmcTOFLKvrQyNTVjdVwQ9aEluUbOy7pH84xoN044uY2ioIPRMSowGix9pPqzVxqXVZ3BLsOBPHWDvh1rmfAqN-2FrnZAQc9lC50iY7jqQIH-2F380OH8GPrcDw1QPK-2FD3w7F2PwiZB-2FR4WacwJaVyIPE-3D\">Privacy Policy</a> | <a href=\"https://u10257537.ct.sendgrid.net/ls/click?upn=u001.Bnqg3Ic6NvfrL518iHt5gxE-2BrWDxM7PNs-2FvxPF4oKkuV4-2BTOFcZD5Ws7FVOA9BXkWPVWenaBrRM1FRnhFsSI1ngDILusKwrf5wpSalzD6QwF-2FY7AbNkul7unYmNdeRCftEPFuz8AR6-2FxKy-2F5kJo23rH5fOR8AlUKfVw-2BHKxDqAhhcFLoQURrhYPaL-2BMNTL7D1RJ3kp8oUBffq3JqXjDV2NEcc2TTdtqhA8IQAKbUx90MIySXk46OBLr6-2Bldyj0XTNJRc5HAElRsAedRGxHGTlX4ZDjfCz0mYqIPM0zRC-2F9aCdekIGqPyT7H-2FLviH4lVyE09TX1iyL2OEpL3wTydSXsz0Ofng6uedrtxqN97vvCQl1nCendfrqebKF39JremiDcN2-2FJgdnCcA7wccnrTNMrvxyY8jUB-2F4Q-2Bb8vLETT-2B8OpDqAe6MKgwSuo8kcnqfjqdVQ_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi8ZaxgHC19GnFNeKf3xB6-2BCAZ4tMTB2xh0qfIJ78-2BXjbjoG6Kuzn3A8Kp1FOMRN-2B9vizgAiqH0Qs0NfCXWifkfvxrJcXt3YCWCDewey89ZAj5q6-2FiYlI5KHlgBPMryLLqIRoEiwxHiGhTAt5EHjvkjlzGCBcuBvL1Ee5pPFbvghbxwMHoTkN-2FwAUgzxrGu4RX0OA5iC7v9LM3GlWhah96-2BpXD7VzDwY6-2F7fHwT67sYz0vVpH5eDcSyBr31MuoSyhf0dAtR5vm-2FFNgn1fq3aAzOAUtxmSs0WKBjtCtEZz-2B0UN-2F9AqwaMybgMJAIyWnpFPZmRpjSc-2BbmxmgH2aStawK4-2BayEQ12zXR725nmZtQVFv8XPkbxa5o4vK23-2F-2FjLLA1TqcovLV92L7OaXMEXMUp-2FC7apEwFBIuzyyZ6MGMEwsjM0IKy-2BNoE8By77VunDJ6urjZmdRG0TFgAMn2lLUBx366r74R9BljTSNU-2FQF5eNDhStVYeINO70Js8wSkDbshdSjO3RvMkKN9PE9GHpP6pZU3KOuhJmuHDrFV7-2BsK7wJrO9-2FvzCCLUVuiRmauimXe5iuqWaLTEAVV2VH5XiGG-2BRlwht9gBzmMgdv0kpqKE0A-2FATzy4u9bHBD1Lga932JEwVf7qho-2BwcNQhD-2BvttuHoUOK5-2FbcOd8hbygsPadumJ1XMaaFdjXJpm0inaBbx2YWbDSvHGbD7PZ3gCC2FVYkzRG5FHe2qa3U-2F1i8dNWBlqPE5qGkFxNvb9DOrWVySJ2BbRO12kHIflmv7Wznrpe9VIZ1RwGI3SsSRzXMXvH4b2tKCsMJ4Ddy88ulBetWCf-2BPJXc-3D\">Unsubscribe</a></span></p>\r\n</div>\r\n<img src=\"https://u10257537.ct.sendgrid.net/wf/open?upn=u001.D6mC8SG6iITw2GIzPjAtw3VnKGws73w4Kg-2Fn2LF1yNJNQul9nwQbr-2BJHHeyzeoS1crRVFAGscpkYcLYanM0CbDAEgTAV4b9nn8gV6qbWoH9qyPLLgQiYudpAj2dpsd-2BtPP-2FlrRdJ7iqJm17BSXIhMkh4m1-2FKkc2-2F4PwmEhSlA9Yx09JM63m9RrftEs9kNl8rkr4ZLUwmyjzncPykmwufIhnsoD-2B2-2B6wsrVUIx1AH45c4LCKK-2BNlpLmFx94A3P5rcQc-2BoecKOOBVyOi-2FC77dryqxsnRjPGiTxa-2FuMuWvrf68AyoPx2qyDDKwOI53UQw4vXfmiFTHoElHtbXaIzIY5sPuwIsE1q50KZE-2Fj3dxcouafmMI7NrDy8uc7qlTjkXtSRv7feJZ0KOHyqnoFiSnbZyavcy1ZGi150-2FooA5wmruHUziGZ3LnFgosupjJhYjmnwjklmCJgxbYvV40ZNkSuCnRaDpAPUqG-2FX0RxvnBnHjzhXxTKebh2VZXbEDypq7fCnDaIUk6TpvXKOgczII69L2y0cRoDJrqVzvcL7E19eSozFIrqE3mDkmrIKGPsl5QUYixLlFCMRP-2BTrnEfOS-2FzLNUljgxNOFVFvhabhrG26dsDQW5-2BInpMy6g6bDaQS63FMogskqOEh5TkyU50-2FKeBjSfKBKZjEzxGa7HUd0Q4tXlS5xxIYg-2FujtxBs5lyyLkLECYtZbBfh5YSOD69mzd-2FpbEti-2BryXMkb-2F-2BiDz6ZgZwTxLjN1Hhi4cwrDx-2F5N5cmlGMvrmLyBycwmW9K8AzMn1RdTYIp9MccSBEL94MWH-2B-2B3PHL9Ysr1lYKfv8VEoUk4vAGdbNbQBZUeY-2BQZlpgwKcvnnKHEEuShG8V2lX1ESqapgTjIpOLC8PJnQpVVwwCF6\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/></body>\r\n</html>','Hello,\r\n\r\nYour cart will expire soon.\r\n\r\nComplete your order now ( https://www.stickermule.com/cart?utm_source=vero&utm_medium=email&utm_content=control&utm_campaign=Email%202&utm_term=Workflow&vero_id=1084794929&vero_conv=uareJnyCKT0v3RPlK-sFJjTo6nFTkfa9W8JDqUI6P4rjtKWpa8GISSw3G8_GSQH5HDUDtCw1DWYsz7ywZnhuTLuQ-M9DF_o7nbkN_ucY6-dSFA%3D%3D )\r\n\r\nIn your cart, you left:\r\n\r\n( )\r\n\r\nAnthony\r\nCofounder, Sticker Mule ( http://www.stickermule.com/?utm_source=vero&utm_medium=email&utm_content=control&utm_campaign=Email%202&utm_term=Workflow&vero_id=1084794929&vero_conv=uareJnyCKT0v3RPlK-sFJjTo6nFTkfa9W8JDqUI6P4rjtKWpa8GISSw3G8_GSQH5HDUDtCw1DWYsz7ywZnhuTLuQ-M9DF_o7nbkN_ucY6-dSFA%3D%3D )\r\n\r\n--\r\nSticker Mule, 336 Forest Ave, Amsterdam, NY 12010\r\nPrivacy Policy ( https://www.stickermule.com/legal/privacy?utm_source=vero&utm_medium=email&utm_content=control&utm_campaign=Email%202&utm_term=Workflow&vero_id=1084794929&vero_conv=uareJnyCKT0v3RPlK-sFJjTo6nFTkfa9W8JDqUI6P4rjtKWpa8GISSw3G8_GSQH5HDUDtCw1DWYsz7ywZnhuTLuQ-M9DF_o7nbkN_ucY6-dSFA%3D%3D ) | Unsubscribe ( https://stickermule.com/notify/subscriptions/unsubscribe?vero_user_id=1084794929&utm_source=vero&utm_medium=email&utm_content=control&utm_campaign=Email%202&utm_term=Workflow&vero_id=1084794929&vero_conv=uareJnyCKT0v3RPlK-sFJjTo6nFTkfa9W8JDqUI6P4rjtKWpa8GISSw3G8_GSQH5HDUDtCw1DWYsz7ywZnhuTLuQ-M9DF_o7nbkN_ucY6-dSFA%3D%3D )',0,0,0,0,0,0,'2025-09-20 17:25:29','2025-12-09 19:28:41','2025-12-09 19:28:41','2025-12-09 19:28:41',NULL,NULL,NULL),
(760,4,'<calendar-1b382d24-c833-4814-9ad8-12e8cba96693@google.com>',NULL,NULL,'Updated invitation: Rick/Jen catchup @ Thu Sep 25, 2025 10am - 11am (CDT) (rick@mavrix.one)','jen@deeptechgtm.com','Jennifer Kay','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v144/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v118/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventRescheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"549unp18tafj5tvomfiaapuo0m\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Rick/Jen catchup</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NTQ5dW5wMTh0YWZqNXR2b21maWFhcHVvMG0gcmlja0BtYXZyaXgub25l&amp;tok=MTkjamVuQGRlZXB0ZWNoZ3RtLmNvbWE5NDM3YjRmOTc0M2NiNmEyYjY1OTZhM2U4NDIzNzZlNGVkZTkyNDE&amp;ctz=America%2FChicago&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250925T150000Z\"></time><time itemprop=\"endDate\" datetime=\"20250925T160000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">Join with Google Meet – You have been invited by Jennifer Kay to attend an event named Rick/Jen catchup on Thursday Sep 25, 2025 ⋅ 10am – 11am (Central Time - Chicago).</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"background-color: #e6f4ea;color: #0d5327;padding: 12px 32px; border-radius: 8px;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px;text-align: left;\" class=\"info-bar-inner\"><span style=\"font-weight: 700;\">This event has been updated</span><br/><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Thing/Clock\"><meta itemprop=\"description\" content=\"Time updated\"/></span><div style=\"\"><span style=\"font-weight: 700;\">Changed:</span> time</div></td></tr></tbody></table><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"12\" style=\"height:12px;\"><![endif]--><div style=\"height:12px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:28px;\"><a href=\"https://meet.google.com/jdr-urns-ksr?hs=224\" class=\"primary-button-text\" style=\"display: inline-block;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"display: inline-block\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"background-color: #1a73e8; cursor: auto; padding: 10px 25px; border: none; border-radius: 4px; margin: 0;\" class=\"primary-button\"><!--[if mso]><a href=\"https://meet.google.com/jdr-urns-ksr?hs=224\" class=\"primary-button-text\" target=\"_blank\"><![endif]--><span class=\"primary-button-text\" style=\"font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\">Join with Google Meet</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Meeting link</h2></td></tr></table><!-- Use grey text for the Meet link--><div><a style=\"display: inline-block;;color: #70757a; text-decoration: none;\" class=\"secondary-text underline-on-hover\" href=\"https://meet.google.com/jdr-urns-ksr?hs=224\">meet.google.com/jdr-urns-ksr</a></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Join by phone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(US) </span><a href=\"tel:+1-585-437-4405%3B522453674%23\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+1 585-437-4405</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">PIN: 522453674</span><br><br><a href=\"https://tel.meet/jdr-urns-ksr?pin=7722961069243&amp;hs=0\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">More phone numbers</a><br></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250925T150000Z\"></time><time itemprop=\"endDate\" datetime=\"20250925T160000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td><td style=\"width: 8px;\"></td><td style=\"padding-top: 2px; padding-bottom: 3px;\"><div style=\"background-color: #1e8e3e; border-radius: 10px; padding: 1px 5px; line-height: 13px;\"><span style=\"color: white; font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; vertical-align: top;\">CHANGED</span></div></td></tr></table><span>Thursday Sep 25, 2025 ⋅ 10am – 11am (Central Time - Chicago)<br/><span style=\"text-decoration: line-through;\"><del><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;font-size: 0; display: block;\">Old: </span>Friday Sep 19, 2025 ⋅ 2pm – 2:30pm (Central Time - Chicago)</del></span></span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jen@deeptechgtm.com\">Jennifer Kay</a></span><meta itemprop=\"email\" content=\"jen@deeptechgtm.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Jennifer Kay\"/><meta itemprop=\"email\" content=\"jen@deeptechgtm.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NTQ5dW5wMTh0YWZqNXR2b21maWFhcHVvMG0gcmlja0BtYXZyaXgub25l&amp;tok=MTkjamVuQGRlZXB0ZWNoZ3RtLmNvbWE5NDM3YjRmOTc0M2NiNmEyYjY1OTZhM2U4NDIzNzZlNGVkZTkyNDE&amp;ctz=America%2FChicago&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NTQ5dW5wMTh0YWZqNXR2b21maWFhcHVvMG0gcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MTkjamVuQGRlZXB0ZWNoZ3RtLmNvbWE5NDM3YjRmOTc0M2NiNmEyYjY1OTZhM2U4NDIzNzZlNGVkZTkyNDE&amp;ctz=America%2FChicago&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NTQ5dW5wMTh0YWZqNXR2b21maWFhcHVvMG0gcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MTkjamVuQGRlZXB0ZWNoZ3RtLmNvbWE5NDM3YjRmOTc0M2NiNmEyYjY1OTZhM2U4NDIzNzZlNGVkZTkyNDE&amp;ctz=America%2FChicago&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NTQ5dW5wMTh0YWZqNXR2b21maWFhcHVvMG0gcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MTkjamVuQGRlZXB0ZWNoZ3RtLmNvbWE5NDM3YjRmOTc0M2NiNmEyYjY1OTZhM2U4NDIzNzZlNGVkZTkyNDE&amp;ctz=America%2FChicago&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NTQ5dW5wMTh0YWZqNXR2b21maWFhcHVvMG0gcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MTkjamVuQGRlZXB0ZWNoZ3RtLmNvbWE5NDM3YjRmOTc0M2NiNmEyYjY1OTZhM2U4NDIzNzZlNGVkZTkyNDE&amp;ctz=America%2FChicago&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NTQ5dW5wMTh0YWZqNXR2b21maWFhcHVvMG0gcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MTkjamVuQGRlZXB0ZWNoZ3RtLmNvbWE5NDM3YjRmOTc0M2NiNmEyYjY1OTZhM2U4NDIzNzZlNGVkZTkyNDE&amp;ctz=America%2FChicago&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NTQ5dW5wMTh0YWZqNXR2b21maWFhcHVvMG0gcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MTkjamVuQGRlZXB0ZWNoZ3RtLmNvbWE5NDM3YjRmOTc0M2NiNmEyYjY1OTZhM2U4NDIzNzZlNGVkZTkyNDE&amp;ctz=America%2FChicago&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NTQ5dW5wMTh0YWZqNXR2b21maWFhcHVvMG0gcmlja0BtYXZyaXgub25l&amp;tok=MTkjamVuQGRlZXB0ZWNoZ3RtLmNvbWE5NDM3YjRmOTc0M2NiNmEyYjY1OTZhM2U4NDIzNzZlNGVkZTkyNDE&amp;ctz=America%2FChicago&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NTQ5dW5wMTh0YWZqNXR2b21maWFhcHVvMG0gcmlja0BtYXZyaXgub25l&amp;tok=MTkjamVuQGRlZXB0ZWNoZ3RtLmNvbWE5NDM3YjRmOTc0M2NiNmEyYjY1OTZhM2U4NDIzNzZlNGVkZTkyNDE&amp;ctz=America%2FChicago&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','This event has been updated\r\nChanged: time\r\n\r\n\r\nRick/Jen catchup\r\nThursday Sep 25, 2025 ⋅ 10am – 11am\r\nCentral Time - Chicago\r\n\r\nJoin with Google Meet\r\nhttps://meet.google.com/jdr-urns-ksr?hs=224\r\n\r\n\r\n	\r\nJoin by phone\r\n(US) +1 585-437-4405\r\nPIN: 522453674\r\n\r\nMore phone numbers\r\nhttps://tel.meet/jdr-urns-ksr?pin=7722961069243&hs=0\r\n\r\n\r\nOrganizer\r\nJennifer Kay\r\njen@deeptechgtm.com\r\n\r\nGuests\r\nJennifer Kay - organizer\r\nrick@mavrix.one\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=NTQ5dW5wMTh0YWZqNXR2b21maWFhcHVvMG0gcmlja0BtYXZyaXgub25l&tok=MTkjamVuQGRlZXB0ZWNoZ3RtLmNvbWE5NDM3YjRmOTc0M2NiNmEyYjY1OTZhM2U4NDIzNzZlNGVkZTkyNDE&ctz=America%2FChicago&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=NTQ5dW5wMTh0YWZqNXR2b21maWFhcHVvMG0gcmlja0BtYXZyaXgub25l&tok=MTkjamVuQGRlZXB0ZWNoZ3RtLmNvbWE5NDM3YjRmOTc0M2NiNmEyYjY1OTZhM2U4NDIzNzZlNGVkZTkyNDE&ctz=America%2FChicago&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-09-22 17:01:24','2025-12-09 19:28:42','2025-12-09 19:28:42','2025-12-09 19:28:42',NULL,NULL,NULL),
(761,4,'<CABEiVu=BHCApqCEc4kM7QcPre-Y8nc=7smHC2YUDVetnh=FVRg@mail.gmail.com>',NULL,NULL,'M&A Oppty - Zenith Firearms & Aerotech','jen@deeptechgtm.com','Jennifer Kay','<div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\"><div>PFA material on a company run by a close friend and colleague: <a href=\"https://zenithfirearms.com/\">Zenith Firearms</a> and <a href=\"https://zenithaerotech.com/\">Zenith Aerotech</a>.</div><div><br></div><div>There are 2 deals here.</div><div><br></div><div>1. They&#39;re looking for $10-20M to get out from under some financing arrangements that are limiting their growth.  </div><div><br></div><div>2. Additionally, they&#39;re interested in M&amp;A of Zenith Aerotech; this is the tethered drone company. They have a very strong pipeline for 2026 on the drone. Its uniqueness is in the power management system, around which they have IP.</div><div><br></div><div>Strategically, y&#39;all might consider an acquisition of Aerotech then installing the right market-focused C-suite. The current owner has ties to the Arab states and Israel; my POC is well connected to big Army, AFSOC and FLE. These channels combined with Mavrix&#39;s reach could make for a very interesting go to market approach.</div><div><br></div><div>The company is co-located in the same space as Zenith Firearms, in Charlottesville. It could stay there or be relocated to a more convenient location. </div><div><br></div><div>Tech overview:</div><div><span id=\"m_-3205651473208130304gmail-docs-internal-guid-acb8989a-7fff-d5fc-9ba1-266164347d03\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\"></p><ul><li><span style=\"font-size:10pt;font-family:Arial,sans-serif;color:rgb(0,0,0);background-color:transparent;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-align:baseline\">Uniqueness: power output and efficiency. The Army requirement is to run on a 2kw generator, but this draws only 1.2 kw with a payload. Power mgmt is very hard to do on a tethered drone; this is the core benefit of Zenith and where they have IP. </span></li><li><span style=\"font-size:10pt;font-family:Arial,sans-serif;color:rgb(0,0,0);background-color:transparent;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-align:baseline\">Can do heavy and light antenna on the same drone. </span></li><li><span style=\"background-color:transparent;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;font-size:10pt;font-family:Arial,sans-serif;color:rgb(0,0,0);vertical-align:baseline\">Can comm 20-mi radius encrypted / securely, up to 400 ft. The drone and ground power can go above 400 ft but that&#39;s the FAA limit. </span><span style=\"background-color:transparent;color:rgb(0,0,0);font-family:Arial,sans-serif;font-size:10pt\">Most users need 200-300 ft. </span></li><li><span style=\"font-size:10pt;font-family:Arial,sans-serif;color:rgb(0,0,0);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">It is highly stable. Key feedback from users is about how stable and steady it is in the air. </span></li><li>$150k price point.</li></ul><p></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\"><br></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\"><br></p><p style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\">Let&#39;s discuss.</p><p style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\"><br></p><p style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\">Thank you,</p><p style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\">Jen</p><p style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\"><br></p><p style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\"><br></p></span><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:517.609px;vertical-align:-webkit-baseline-middle;font-size:medium;font-family:Arial\"><tbody><tr style=\"margin:0px;padding:0px;border:0px;color:rgb(255,255,255)\"><td style=\"padding:0px;border:0px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:517.609px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:top\"><h2 color=\"#231e4a\" style=\"font-size:18px;line-height:1.38;margin:0px;color:rgb(35,30,74)\"><span>Jennifer</span><span> </span><span>Kay</span></h2><p color=\"#231e4a\" style=\"font-size:14px;line-height:22px;margin:0px;color:rgb(35,30,74)\"><span>Principal</span><span> | </span><span>Deep Tech Go to Market</span></p><p color=\"#231e4a\" style=\"font-size:14px;line-height:22px;margin:0px;color:rgb(35,30,74)\"><span>Offering commercial go to market for dual-use tech</span></p><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:472.609px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td height=\"30\" style=\"padding:0px;border:0px\"></td></tr><tr style=\"margin:0px;padding:0px;border:0px\"><td color=\"#231E4A\" width=\"auto\" height=\"1\" style=\"padding:0px;border-top:0px;border-right:0px;border-bottom:1px solid rgb(35,30,74);border-left:none;width:472.609px;display:block\"></td></tr><tr style=\"margin:0px;padding:0px;border:0px\"><td height=\"30\" style=\"padding:0px;border:0px\"></td></tr></tbody></table><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:472.609px;vertical-align:-webkit-baseline-middle\"><tbody><tr height=\"25\" style=\"margin:0px;padding:0px;border:0px;vertical-align:middle\"><td width=\"30\" style=\"padding:0px;border:0px;vertical-align:middle\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:30px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:bottom\"><span color=\"#231E4A\" width=\"11\" style=\"display:inline-block;background-color:rgb(35,30,74)\"><img src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/phone-icon-2x.png\" color=\"#231E4A\" alt=\"mobilePhone\" width=\"13\" style=\"border-style:none;display:block\"></span></td></tr></tbody></table></td><td style=\"padding:0px;border:0px;color:rgb(35,30,74)\"><a href=\"tel:615-630-8068\" color=\"#231e4a\" style=\"background-color:rgba(0,0,0,0);color:rgb(35,30,74);font-size:12px\" target=\"_blank\">615-630-8068</a></td></tr><tr height=\"25\" style=\"margin:0px;padding:0px;border:0px;vertical-align:middle\"><td width=\"30\" style=\"padding:0px;border:0px;vertical-align:middle\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:30px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:bottom\"><span color=\"#231E4A\" width=\"11\" style=\"display:inline-block;background-color:rgb(35,30,74)\"><img src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/email-icon-2x.png\" color=\"#231E4A\" alt=\"emailAddress\" width=\"13\" style=\"border-style:none;display:block\"></span></td></tr></tbody></table></td><td style=\"padding:0px;border:0px\"><a href=\"mailto:Jen@DeepTechGTM.com\" color=\"#231e4a\" style=\"background-color:rgba(0,0,0,0);color:rgb(35,30,74);font-size:12px\" target=\"_blank\">Jen@DeepTechGTM.com</a></td></tr><tr height=\"25\" style=\"margin:0px;padding:0px;border:0px;vertical-align:middle\"><td width=\"30\" style=\"padding:0px;border:0px;vertical-align:middle\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:30px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:bottom\"><span color=\"#231E4A\" width=\"11\" style=\"display:inline-block;background-color:rgb(35,30,74)\"><img src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/link-icon-2x.png\" color=\"#231E4A\" alt=\"website\" width=\"13\" style=\"border-style:none;display:block\"></span></td></tr></tbody></table></td><td style=\"padding:0px;border:0px\"><a href=\"https://deeptechgtm.com/\" color=\"#231e4a\" style=\"background-color:rgba(0,0,0,0);color:rgb(35,30,74);font-size:12px\" target=\"_blank\">DeepTechGTM.com</a></td></tr></tbody></table></td><td width=\"45\" style=\"padding:0px;border:0px\"><div></div></td></tr></tbody></table></td></tr><tr style=\"margin:0px;padding:0px;border:0px;color:rgb(255,255,255)\"></tr></tbody></table><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:546.609px;vertical-align:-webkit-baseline-middle;font-size:medium;font-family:Arial\"><tbody><tr style=\"margin:0px;padding:0px;border:0px;color:rgb(255,255,255)\"><td style=\"padding:0px;border:0px\"><br></td></tr></tbody></table></div></div></div><br><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">Tony Williams</strong> <span dir=\"auto\">&lt;<a href=\"mailto:tony@zqcus.com\" target=\"_blank\">tony@zqcus.com</a>&gt;</span><br>Date: Wed, Aug 13, 2025 at 4:46 PM<br>Subject: Company Profile<br>To: Jennifer Kay &lt;<a href=\"mailto:jen@deeptechgtm.com\" target=\"_blank\">jen@deeptechgtm.com</a>&gt;<br></div><br><br><div>\r\n\r\n\r\n\r\n\r\n\r\n<div lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">The latest and greatest.  Thanks for your patience and willingness to help out.<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">V/r,<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Tony<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><u></u> <u></u></span></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:12.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\">Tony Williams</span></b><span style=\"font-size:12.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\">Chief Operating Officer<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:8.0pt\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\">757-775-5722<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:8.0pt\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\"><img width=\"200\" height=\"64\" style=\"width:2.0833in;height:.6666in\" id=\"m_-3205651473208130304m_-6868055633956122728Picture_x0020_5\" src=\"cid:ii_1990f1ad9284cff311\" alt=\"A black text on a white background\r\n\r\nDescription automatically generated\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><a href=\"https://zenithaerotech.com/\" title=\"&quot;Original URL:\r\nhttps://zenithaerotech.com/\r\n\r\nClick to follow link.&quot;\" target=\"_blank\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black;text-decoration:none\"><img border=\"0\" width=\"78\" height=\"51\" style=\"width:.8125in;height:.5312in\" id=\"m_-3205651473208130304m_-6868055633956122728Picture_x0020_4\" src=\"cid:ii_1990f1ad9295b006a2\" alt=\"A blue and grey logo\r\n\r\nDescription automatically generated\"></span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3.0pt\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#1d1d1d\">ZENITH AEROTECH &amp; ZENITH FIREARMS</span><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3.0pt\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#1d1d1d\">Let&#39;s connect!</span><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><a href=\"https://www.facebook.com/zenithaerotech/\" title=\"&quot;Original URL:\r\nhttps://www.facebook.com/zenithaerotech/\r\n\r\nClick to follow link.&quot;\" target=\"_blank\"><span style=\"font-size:9.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#1d1d1d;text-decoration:none\"><img border=\"0\" width=\"23\" height=\"23\" style=\"width:.2395in;height:.2395in\" id=\"m_-3205651473208130304m_-6868055633956122728Picture_x0020_3\" src=\"cid:ii_1990f1ad929692e333\" alt=\"signature_375351091\"></span></a><span style=\"font-size:7.5pt;font-family:&quot;Calibri&quot;,sans-serif;color:#1d1d1d\">   </span><a href=\"https://www.instagram.com/zenithaerotech1/\" title=\"&quot;Original URL:\r\nhttps://www.instagram.com/zenithaerotech1/\r\n\r\nClick to follow link.&quot;\" target=\"_blank\"><span style=\"font-size:9.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#1d1d1d;text-decoration:none\"><img border=\"0\" width=\"24\" height=\"24\" style=\"width:.25in;height:.25in\" id=\"m_-3205651473208130304m_-6868055633956122728Picture_x0020_2\" src=\"cid:ii_1990f1ad9297745b44\" alt=\"signature_2022594031\"></span></a><span style=\"font-size:7.5pt;font-family:&quot;Calibri&quot;,sans-serif;color:#1d1d1d\">   </span><a href=\"https://www.linkedin.com/company/zenith-aerotech\" title=\"&quot;Original URL:\r\nhttps://www.linkedin.com/company/zenith-aerotech\r\n\r\nClick to follow link.&quot;\" target=\"_blank\"><span style=\"font-size:9.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#1d1d1d;text-decoration:none\"><img border=\"0\" width=\"23\" height=\"23\" style=\"width:.2395in;height:.2395in\" id=\"m_-3205651473208130304m_-6868055633956122728Picture_x0020_1\" src=\"cid:ii_1990f1ad929855d355\" alt=\"signature_1431513409\"></span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3.0pt\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\"> <u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#1d1d1d\">The information transmitted is intended only for the person or entity to which it is addressed and may contain confidential and/or privileged material. If you\r\n are not the intended recipient, please contact the sender immediately and destroy the material in its entirety, whether electronic or hard copy. You are notified that any review, retransmission, dissemination or other use of, or taking of any action in reliance\r\n upon, this information by persons or entities other than the intended recipient is prohibited.</span><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\"><u></u> <u></u></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12.0pt\"><u></u> <u></u></span></p>\r\n</div>\r\n</div>\r\n\r\n</div></div><div></div></div>\r\n</div><img src=\"https://d2LSMm04.na1.hs-salescrm-engage.com/Cto/2O+23284/d2LSMm04/R5Q8b48CrN56kt9Z2fCX-W1V1BBL3DNtnYW1--3v51W-yZhW1GyZgg3DH-MqW1ZkWR-1NtY1XW1-Z_sf22VWWjf1Q2MDY12\" alt=\"\" height=\"1\" width=\"1\" style=\"display: none !important;\"><div></div><div id=\"data-hbsasc-v0-3eea5d08-61a5-49db-b63e-74950a4d1614\"></div></div>','Hi Rick,\r\n\r\nPFA material on a company run by a close friend and colleague: Zenith\r\nFirearms <https://zenithfirearms.com/> and Zenith Aerotech\r\n<https://zenithaerotech.com/>.\r\n\r\nThere are 2 deals here.\r\n\r\n1. They\'re looking for $10-20M to get out from under some financing\r\narrangements that are limiting their growth.\r\n\r\n2. Additionally, they\'re interested in M&A of Zenith Aerotech; this is the\r\ntethered drone company. They have a very strong pipeline for 2026 on the\r\ndrone. Its uniqueness is in the power management system, around which they\r\nhave IP.\r\n\r\nStrategically, y\'all might consider an acquisition of Aerotech then\r\ninstalling the right market-focused C-suite. The current owner has ties to\r\nthe Arab states and Israel; my POC is well connected to big Army, AFSOC and\r\nFLE. These channels combined with Mavrix\'s reach could make for a very\r\ninteresting go to market approach.\r\n\r\nThe company is co-located in the same space as Zenith Firearms, in\r\nCharlottesville. It could stay there or be relocated to a more convenient\r\nlocation.\r\n\r\nTech overview:\r\n\r\n\r\n   - Uniqueness: power output and efficiency. The Army requirement is to\r\n   run on a 2kw generator, but this draws only 1.2 kw with a payload. Power\r\n   mgmt is very hard to do on a tethered drone; this is the core benefit of\r\n   Zenith and where they have IP.\r\n   - Can do heavy and light antenna on the same drone.\r\n   - Can comm 20-mi radius encrypted / securely, up to 400 ft. The drone\r\n   and ground power can go above 400 ft but that\'s the FAA limit. Most\r\n   users need 200-300 ft.\r\n   - It is highly stable. Key feedback from users is about how stable and\r\n   steady it is in the air.\r\n   - $150k price point.\r\n\r\n\r\n\r\nLet\'s discuss.\r\n\r\n\r\nThank you,\r\n\r\nJen\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nJennifer Kay\r\n\r\nPrincipal | Deep Tech Go to Market\r\n\r\nOffering commercial go to market for dual-use tech\r\n[image: mobilePhone] 615-630-8068\r\n[image: emailAddress] Jen@DeepTechGTM.com\r\n[image: website] DeepTechGTM.com <https://deeptechgtm.com/>\r\n\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: Tony Williams <tony@zqcus.com>\r\nDate: Wed, Aug 13, 2025 at 4:46 PM\r\nSubject: Company Profile\r\nTo: Jennifer Kay <jen@deeptechgtm.com>\r\n\r\n\r\nThe latest and greatest.  Thanks for your patience and willingness to help\r\nout.\r\n\r\n\r\n\r\nV/r,\r\n\r\n\r\n\r\nTony\r\n\r\n\r\n\r\n*Tony Williams*\r\n\r\nChief Operating Officer\r\n\r\n757-775-5722\r\n\r\n[image: A black text on a white background Description automatically\r\ngenerated]\r\n\r\n[image: A blue and grey logo Description automatically generated]\r\n<https://zenithaerotech.com/>\r\n\r\n\r\n\r\nZENITH AEROTECH & ZENITH FIREARMS\r\n\r\nLet\'s connect!\r\n\r\n[image: signature_375351091]\r\n<https://www.facebook.com/zenithaerotech/>   [image:\r\nsignature_2022594031] <https://www.instagram.com/zenithaerotech1/>   [image:\r\nsignature_1431513409] <https://www.linkedin.com/company/zenith-aerotech>\r\n\r\n\r\n\r\nThe information transmitted is intended only for the person or entity to\r\nwhich it is addressed and may contain confidential and/or privileged\r\nmaterial. If you are not the intended recipient, please contact the sender\r\nimmediately and destroy the material in its entirety, whether electronic or\r\nhard copy. You are notified that any review, retransmission, dissemination\r\nor other use of, or taking of any action in reliance upon, this information\r\nby persons or entities other than the intended recipient is prohibited.',0,0,0,0,0,0,'2025-09-22 17:21:56','2025-12-09 19:28:47','2025-12-09 19:28:47','2025-12-09 19:28:47',NULL,NULL,NULL),
(762,4,'<010001997295aa47-3e40d9c7-c2be-492c-b836-90eac5e3ed4c-000000@email.amazonses.com>',NULL,NULL,'Thousands of Prime Big Deal Days deals arrive soon','no-reply@business.amazon.com','Amazon Business','<!doctype html>\r\n<html lang=\"en-US\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\">\r\n <head>\r\n  <title>Thousands of Prime Big Deal Days deals arrive soon</title><!--[if !mso]><!-- -->\r\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><!--<![endif]-->\r\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\r\n  <style type=\"text/css\">#outlook a { padding:0; }           body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block; }</style><!--[if mso]>                    <xml>                      <o:OfficeDocumentSettings xmlns:o=\"urn:schemas-microsoft-com:office:office\">                    <o:AllowPNG/>                          <o:PixelsPerInch>96</o:PixelsPerInch>                      </o:OfficeDocumentSettings>                   <w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\">               <w:DontUseAdvancedTypographyReadingMail/>             </w:WordDocument>                  </xml>                        <style type=\"text/css\">             table { border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt; }             .mj-outlook-group-fix { width:100% !important; }           </style>                  <![endif]--><!--[if !mso]><!-->\r\n  <link href=\"https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <link href=\"https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <style type=\"text/css\">@import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);</style><!--<![endif]-->\r\n  <style type=\"text/css\">@media only screen and (min-width:641px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-52 { width:52% !important; max-width: 52%; } .mj-column-per-48 { width:48% !important; max-width: 48%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }</style>\r\n  <style type=\"text/css\">.movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                .links-FFFFFF-underline-bold a { color: #FFFFFF; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .mso-button-dark-mode a {background: transparent !important;} .links-161D26-underline a { color: #161D26; text-decoration: underline; } .links-161D26 a { color: #161D26; text-decoration: none; } .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:641px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-165px { max-width: 165px !important} .padding-5px-24px-24px-40px { padding: 5px 24px 24px 40px !important} .padding-0px-32px-0px-0px { padding: 0px 32px 0px 0px !important} .font-size-36px { font-size: 36px !important} .padding-30px-0px-20px-0px { padding: 30px 0px 20px 0px !important} .padding-0px-40px-0px-0px { padding: 0px 40px 0px 0px !important} .max-width-276px { max-width: 276px !important} .padding-12px-40px-12px-40px { padding: 12px 40px 12px 40px !important} .padding-20px-40px-0px-40px { padding: 20px 40px 0px 40px !important} .font-size-18px { font-size: 18px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .font-size-20px { font-size: 20px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }</style>\r\n  <style type=\"text/css\">ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 641px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}</style><!--[if mso]>             <style>                 .hide-on-mobile {display:block !important}             </style>         <![endif]--><!--[if mso]>                 <style>                              .mso-font-size-36px { font-size: 36px !important; } .mso-font-size-18px { font-size: 18px !important; } .mso-font-size-20px { font-size: 20px !important; }                 </style>             <![endif]-->\r\n  <style>[class~=\"x_body\"] { width: 99.9% }               @supports(--css:variables) {                         td[style*=\"border-radius\"] { -webkit-filter: drop-shadow(0 0 1px transparent); }             }</style>\r\n </head>\r\n <body style=\"word-spacing:normal;background-color:#FFFFFF;\" class=\"body\" id=\"body\">\r\n  <div>\r\n   <p><img alt=\"\" src=\"http://elinks.business.amazon.com/CI0/010001997295aa47-3e40d9c7-c2be-492c-b836-90eac5e3ed4c-000000/uJCvNUPwINpXZzWuEhzLdMcsIeyTykWcJ_JKIm5MLXs=423\" style=\"display: none; width: 1px; height: 1px;\">\r\n</p>\r\n  </div><!--[if !mso 9]><!-->\r\n  <div id=\"emailPreHeader\" style=\"display: none;\">\r\n   Get your cart ready\r\n  </div>\r\n  <div style=\"display: none;\">\r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  </div><!--<![endif]-->\r\n  <div style=\"background-color:#FFFFFF;background-position:center center;background-size:auto;background-repeat:repeat;\" id=\"main\">\r\n   <!--[if mso]>\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><![endif]--><!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:16px 16px 14px 16px;text-align:center;vertical-align:top;mso-padding-alt:14px 0px 14px 40px;\" class=\"block-grid padding-14px-0px-14px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:600px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n              <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:middle;width:300px;\" ><![endif]-->\r\n              <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n               <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n                <tbody>\r\n                 <tr>\r\n                  <td class=\"padding-0px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 0px 0px;word-break:break-word;mso-padding-alt:0px 0px 0px 0px;text-align:left;\">\r\n                   <div style=\"margin:0 auto 0 0;max-width:80%;\" class=\"max-width-165px\">\r\n                    <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%3Fref_=b2b_sow_e_events_hve_abpbdd25_250922/1/010001997295aa47-3e40d9c7-c2be-492c-b836-90eac5e3ed4c-000000/RNMyNn1zBCUMRtCi8BE439ZihPfeV19iW9GMYYmtglI=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business\" height=\"auto\" width=\"165\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-2color2x.png\" style=\"border:none;border-radius:0px;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                   </div></td>\r\n                 </tr>\r\n                </tbody>\r\n               </table>\r\n              </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:middle;width:300px;\" ><![endif]-->\r\n              <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n               <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n                <tbody>\r\n                 <tr>\r\n                  <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                   <div style=\"line-height:0px;height:0px;mso-line-height-alt:0px;\">\r\n                    &nbsp;\r\n                   </div></td>\r\n                 </tr>\r\n                </tbody>\r\n               </table>\r\n              </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:32px 16px 24px 16px;text-align:center;vertical-align:top;mso-padding-alt:5px 24px 24px 40px;\" class=\"block-grid padding-5px-24px-24px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:299.52px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-52 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td style=\"border-radius:0px;vertical-align:top;padding:0px 0px 20px 0px;mso-padding-alt:0px 32px 0px 0px;\" class=\"padding-0px-32px-0px-0px\">\r\n                  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                   <tbody>\r\n                    <tr>\r\n                     <td class=\"padding-30px-0px-20px-0px text-container\" style=\"font-size:0px;padding:32px 0px 20px 0px;word-break:break-word;mso-padding-alt:30px 0px 20px 0px;text-align:left;\">\r\n                      <div class=\"links-FFFFFF-underline-bold\">\r\n                       <div style=\"font-family:\'Ember Modern Display\', Arial, sans-serif;font-size:28px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:2.688em;color:#161D26;\" class=\"mso-font-size-36px font-size-36px\">\r\n                        <p style=\"margin: 0;\">Prime Big Deal Days is coming October 7–8</p>\r\n                       </div>\r\n                      </div></td>\r\n                    </tr>\r\n                    <tr>\r\n                     <td valign=\"middle\" class=\"padding-0px-40px-0px-0px button-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;mso-padding-alt:0px 40px 0px 0px;text-align:left;\">\r\n                      <div>\r\n                       <!--[if mso]>\r\n<table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\">\r\n<tr>\r\n<td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_hve_abpbdd25_250922%26return_to=%2Fprimebigdealdays/1/010001997295aa47-3e40d9c7-c2be-492c-b836-90eac5e3ed4c-000000/oTW0Os-Dg8Zkd_j9MGcP-s1vjwZeLvA-8zeGbvB9ZSg=423\" fillcolor=\"#FFD814\" arcsize=\"58%\" style=\"v-text-anchor:middle;width:125.25pt;height:32.25pt;\" stroke=\"f\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_hve_abpbdd25_250922%26return_to=%2Fprimebigdealdays/1/010001997295aa47-3e40d9c7-c2be-492c-b836-90eac5e3ed4c-000000/oTW0Os-Dg8Zkd_j9MGcP-s1vjwZeLvA-8zeGbvB9ZSg=423\" style=\"display: inline-block; background: #FFD814; color: #161D26; font-family: \'Amber Ember\', Arial, sans-serif; font-size: 16px; font-weight: normal; line-height: 1.2; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 12px 24px 12px 24px; mso-padding-alt: 0px; border-radius: 25px; border-left: 0 none #FFFFFF; border-right: 0 none #FFFFFF; border-top: 0 none #FFFFFF; border-bottom: 0 none #FFFFFF; mso-border-alt: none; box-sizing: border-box;\" target=\"_blank\" width=\"167\">Shop early deals </a><!--[if mso]></center></a:textbox></a:roundrect>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                      </div></td>\r\n                    </tr>\r\n                   </tbody>\r\n                  </table></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:276.48px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-48 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\">\r\n                  <div style=\"margin:0 auto;\" class=\"max-width-276px\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_hve_abpbdd25_250922%26return_to=%2Fprimebigdealdays/2/010001997295aa47-3e40d9c7-c2be-492c-b836-90eac5e3ed4c-000000/dWGM6gPW7Ix7E-xrkKWQiheLs4v5E53R37D4Tiwsn_c=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Image of two Amazon packages\" height=\"auto\" width=\"276\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/HVE/PBDD25/Email/US-EN_AB_PBDD25_P3_336_Email_Small_686x444.jpg\" style=\"border:none;border-radius:16px;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#F5F3EF;background-color:#F5F3EF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F5F3EF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:12px 16px 12px 16px;text-align:center;vertical-align:top;mso-padding-alt:12px 40px 12px 40px;\" class=\"block-grid padding-12px-40px-12px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                  <div class=\"links-161D26-underline\">\r\n                   <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:normal;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.375em;color:#222D3A;\">\r\n                    <p style=\"margin: 0;\">Prime Big Deal Days deals are included with Business Prime. Discover early savings today and get your cart ready.</p>\r\n                   </div>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3f4492e978609435.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=0dc46175-c859-4637-889b-c84ec88df50d&amp;mi_campaignId=1183216741&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=1&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=0dc46175-c859-4637-889b-c84ec88df50d&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250922\">\r\n                  </div></td>\r\n                </tr>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=0dc46175-c859-4637-889b-c84ec88df50d%26mi_campaignId=1183216741%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=1%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=0dc46175-c859-4637-889b-c84ec88df50d%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250922%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001997295aa47-3e40d9c7-c2be-492c-b836-90eac5e3ed4c-000000/MWcDrACdhXWtTarbWNBvTqD7UlFEJ0Nnu4xr_p-4ePk=423\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=0dc46175-c859-4637-889b-c84ec88df50d&amp;mi_campaignId=1183216741&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=1&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=0dc46175-c859-4637-889b-c84ec88df50d&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250922\"></a>\r\n                  </div></td>\r\n                </tr>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=0dc46175-c859-4637-889b-c84ec88df50d%26mi_campaignId=1183216741%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=2%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=0dc46175-c859-4637-889b-c84ec88df50d%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250922%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001997295aa47-3e40d9c7-c2be-492c-b836-90eac5e3ed4c-000000/mGZCWcLpzqX7fc4LzBQTYx24jtOXxX0kW9dvu1ESbwA=423\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=0dc46175-c859-4637-889b-c84ec88df50d&amp;mi_campaignId=1183216741&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=2&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=0dc46175-c859-4637-889b-c84ec88df50d&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250922\"></a>\r\n                  </div></td>\r\n                </tr>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=0dc46175-c859-4637-889b-c84ec88df50d%26mi_campaignId=1183216741%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=3%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=0dc46175-c859-4637-889b-c84ec88df50d%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250922%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001997295aa47-3e40d9c7-c2be-492c-b836-90eac5e3ed4c-000000/6-DXxre3Lkst3beWV4HuaLGv-giEHZeJ-SUEkfJLtXs=423\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=0dc46175-c859-4637-889b-c84ec88df50d&amp;mi_campaignId=1183216741&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=3&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=0dc46175-c859-4637-889b-c84ec88df50d&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250922\"></a>\r\n                  </div></td>\r\n                </tr>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=0dc46175-c859-4637-889b-c84ec88df50d%26mi_campaignId=1183216741%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=4%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=0dc46175-c859-4637-889b-c84ec88df50d%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250922%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001997295aa47-3e40d9c7-c2be-492c-b836-90eac5e3ed4c-000000/_7dxT5pyqMI8LY8OaSprBZsCVIv3QS83egbvPGl1GsI=423\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=0dc46175-c859-4637-889b-c84ec88df50d&amp;mi_campaignId=1183216741&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=4&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=0dc46175-c859-4637-889b-c84ec88df50d&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250922\"></a>\r\n                  </div></td>\r\n                </tr>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=0dc46175-c859-4637-889b-c84ec88df50d%26mi_campaignId=1183216741%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=5%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=0dc46175-c859-4637-889b-c84ec88df50d%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250922%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001997295aa47-3e40d9c7-c2be-492c-b836-90eac5e3ed4c-000000/jD5jXTwPXGNjhTZuJXHKxWNnB6bjBqUSOBD2vmVREEg=423\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=0dc46175-c859-4637-889b-c84ec88df50d&amp;mi_campaignId=1183216741&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=5&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=0dc46175-c859-4637-889b-c84ec88df50d&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250922\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <!--[if !mso]><!-->\r\n              <tbody>\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3f4492e978609435.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=0dc46175-c859-4637-889b-c84ec88df50d&amp;mi_campaignId=1183216741&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=1&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=0dc46175-c859-4637-889b-c84ec88df50d&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250922\">\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=0dc46175-c859-4637-889b-c84ec88df50d%26mi_campaignId=1183216741%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=1%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=0dc46175-c859-4637-889b-c84ec88df50d%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250922%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001997295aa47-3e40d9c7-c2be-492c-b836-90eac5e3ed4c-000000/k9VicrNHVqNK1QRqhj1OkL5dNNFHMT74XojF0BthNnM=423\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=0dc46175-c859-4637-889b-c84ec88df50d&amp;mi_campaignId=1183216741&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=1&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=0dc46175-c859-4637-889b-c84ec88df50d&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250922\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=0dc46175-c859-4637-889b-c84ec88df50d%26mi_campaignId=1183216741%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=2%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=0dc46175-c859-4637-889b-c84ec88df50d%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250922%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001997295aa47-3e40d9c7-c2be-492c-b836-90eac5e3ed4c-000000/f3DAwHcDgP-JriECd_B4haFNL20t6wDE048n8yUMLhU=423\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=0dc46175-c859-4637-889b-c84ec88df50d&amp;mi_campaignId=1183216741&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=2&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=0dc46175-c859-4637-889b-c84ec88df50d&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250922\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=0dc46175-c859-4637-889b-c84ec88df50d%26mi_campaignId=1183216741%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=3%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=0dc46175-c859-4637-889b-c84ec88df50d%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250922%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001997295aa47-3e40d9c7-c2be-492c-b836-90eac5e3ed4c-000000/CejUMCpZt6ZOhU3dO8fu2gA4mdXiZAqD_gdOs6NDeRQ=423\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=0dc46175-c859-4637-889b-c84ec88df50d&amp;mi_campaignId=1183216741&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=3&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=0dc46175-c859-4637-889b-c84ec88df50d&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250922\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=0dc46175-c859-4637-889b-c84ec88df50d%26mi_campaignId=1183216741%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=4%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=0dc46175-c859-4637-889b-c84ec88df50d%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250922%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001997295aa47-3e40d9c7-c2be-492c-b836-90eac5e3ed4c-000000/vZtX8a_3f6TyCSrZut0ya0lB-riU0KO0XSmiKDwUcuA=423\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=0dc46175-c859-4637-889b-c84ec88df50d&amp;mi_campaignId=1183216741&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=4&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=0dc46175-c859-4637-889b-c84ec88df50d&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250922\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=0dc46175-c859-4637-889b-c84ec88df50d%26mi_campaignId=1183216741%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=5%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=0dc46175-c859-4637-889b-c84ec88df50d%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250922%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001997295aa47-3e40d9c7-c2be-492c-b836-90eac5e3ed4c-000000/oZAhAUMCMwagJEiADtQF1TTAbCwqYxXzlgJKuZjZzW8=423\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=0dc46175-c859-4637-889b-c84ec88df50d&amp;mi_campaignId=1183216741&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=5&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=0dc46175-c859-4637-889b-c84ec88df50d&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250922\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]-->\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 0px 40px;\" class=\"block-grid padding-20px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-161D26\">\r\n                  <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.375em;color:#161D26;\" class=\"mso-font-size-18px font-size-18px\">\r\n                   <p style=\"margin: 0;\"><span>Find more ways to save</span></p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\">\r\n             <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"line-height:0;font-size:0;direction:ltr;\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n                 <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n                  <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:280px;\" ><![endif]-->\r\n                  <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:50%;\">\r\n                   <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                    <tbody>\r\n                     <tr>\r\n                      <td style=\"border-radius:0px;vertical-align:top;padding:0px 8px 12px 0px;mso-padding-alt:0px 8px 12px 0px;\">\r\n                       <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                        <tbody>\r\n                         <tr>\r\n                          <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:left;\">\r\n                           <div style=\"margin:0 auto 0 0;max-width:272px;\">\r\n                            <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_hve_abpbdd25_250922%26return_to=%2Fab%2Fbusiness-discounts/1/010001997295aa47-3e40d9c7-c2be-492c-b836-90eac5e3ed4c-000000/zKvMdHIaPsZCRyNRC94GdZRho7l3rlPvUtdz7pgPE5E=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Business Savings Guide icon\" height=\"auto\" width=\"272\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/HVE/PD25/US-EN/Offsite/Email/US-EN_AB_PD25_AdHoc_002_Email_Small_Image_BSG_400x267.jpg\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                           </div></td>\r\n                         </tr>\r\n                         <tr>\r\n                          <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                           <div class=\"links-161D26\">\r\n                            <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                             <p style=\"margin: 0;\">Business Savings Guide</p>\r\n                            </div>\r\n                           </div></td>\r\n                         </tr>\r\n                         <tr>\r\n                          <td class=\"text-container\" style=\"font-size:0px;padding:5px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                           <div class=\"links-007185-bold\">\r\n                            <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.188em;color:#222D3A;\">\r\n                             <p style=\"margin: 0;\">Save on business-only prices on thousands of items.&nbsp;</p>\r\n                            </div>\r\n                           </div></td>\r\n                         </tr>\r\n                        </tbody>\r\n                       </table></td>\r\n                     </tr>\r\n                    </tbody>\r\n                   </table>\r\n                  </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:280px;\" ><![endif]-->\r\n                  <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:50%;\">\r\n                   <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                    <tbody>\r\n                     <tr>\r\n                      <td style=\"border-radius:3px;vertical-align:top;padding:0px 0px 12px 8px;mso-padding-alt:0px 0px 12px 8px;\">\r\n                       <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                        <tbody>\r\n                         <tr>\r\n                          <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:left;\">\r\n                           <div style=\"margin:0 auto 0 0;max-width:272px;\">\r\n                            <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_hve_abpbdd25_250922%26return_to=%2Fquantitydiscounts/1/010001997295aa47-3e40d9c7-c2be-492c-b836-90eac5e3ed4c-000000/gjMu0R3F8PLd7dyEVT0Zc2LhwgR-Q87JlSnHCGMSDHQ=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Quantity Discounts icon\" height=\"auto\" width=\"272\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/HVE/PD25/US-EN/Offsite/Email/US-EN_AB_PD25_AdHoc_001_Email_Small_Image_QD_400x267.jpg\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                           </div></td>\r\n                         </tr>\r\n                         <tr>\r\n                          <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                           <div class=\"links-161D26\">\r\n                            <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                             <p style=\"margin: 0;\">Quantity Discounts</p>\r\n                            </div>\r\n                           </div></td>\r\n                         </tr>\r\n                         <tr>\r\n                          <td class=\"text-container\" style=\"font-size:0px;padding:5px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                           <div class=\"links-007185-bold\">\r\n                            <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.188em;color:#161D26;\">\r\n                             <p style=\"margin: 0;\">Explore volume discounts that give you the lowest price per unit.</p>\r\n                            </div>\r\n                           </div></td>\r\n                         </tr>\r\n                        </tbody>\r\n                       </table></td>\r\n                     </tr>\r\n                    </tbody>\r\n                   </table>\r\n                  </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                 </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n               </tr>\r\n              </tbody>\r\n             </table></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F7F7F7;background-color:#F7F7F7;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F7F7F7;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><!--[if !mso]><!-- --><p style=\"border-top:solid 1px #D5D9D9;font-size:1px;margin:0 auto;width:100%;text-align:center;\"></p><!--<![endif]--><!--Divider--><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-top:solid 1px #D5D9D9;font-size:1px;margin:0 auto;width:640px;text-align:center;\" role=\"presentation\" width=\"640px\" >\r\n<tr>\r\n<td style=\"height:0;line-height:0;\"> &nbsp; </td>\r\n</tr>\r\n</table><![endif]--></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F5F3EF;background-color:#F5F3EF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F5F3EF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-161D26-underline\">\r\n                  <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#222D3A;\">\r\n                   <p style=\"margin: 0;\">Please note that product prices and availability are subject to change. Prices and availability were accurate at the time this email was sent. However, they may differ from those you see when you visit Amazon.com.</p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#161D26;background-color:#161D26;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#161D26;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\">\r\n            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n             <tbody>\r\n              <tr>\r\n               <td style=\"line-height:0;font-size:0;direction:rtl;\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:252px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-45 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-align-right social-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\"><!--[if mso | IE]>\r\n<table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" >\r\n<tr>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.facebook.com%2FAmazonBusiness%2F%3Fref_=b2b_sow_e_events_hve_abpbdd25_250922/1/010001997295aa47-3e40d9c7-c2be-492c-b836-90eac5e3ed4c-000000/W7_uZWLHw2aVikmB1o-gKOb7nMFjDV4TlLwIqwUDIV4=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Facebook\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Facebook-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Ftwitter.com%2FAmazonBusiness%3Fref_=b2b_sow_e_events_hve_abpbdd25_250922/1/010001997295aa47-3e40d9c7-c2be-492c-b836-90eac5e3ed4c-000000/KnsfIFWKirQdcuKUMrQ1gdN7UZoIZ-Pi49zuBALyanI=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Twitter\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Twitter-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.linkedin.com%2Fcompany%2Famazon-business%2F%3Fref_=b2b_sow_e_events_hve_abpbdd25_250922/1/010001997295aa47-3e40d9c7-c2be-492c-b836-90eac5e3ed4c-000000/8orFOzJQacaCRKgvYfO8C_yRCdA3JNVu3Ce1k7voV_4=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Linkedin\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-LinkedIn-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"padding-10px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 20px 0px;word-break:break-word;mso-padding-alt:10px 0px 0px 0px;text-align:right;\">\r\n                     <div style=\"margin:0 auto 0 0;max-width:163px;\" class=\"margin-0-0-0-auto\">\r\n                      <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2F%3Fref_=b2b_sow_e_events_hve_abpbdd25_250922%26ref_=b2b_sow_e_events_hve_abpbdd25_250922/1/010001997295aa47-3e40d9c7-c2be-492c-b836-90eac5e3ed4c-000000/v8I6Rh2X63TjRBlgl6KsxoCCDkXz8Y76BjlGeNjhc6M=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business logo\" height=\"auto\" width=\"163\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-white2x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:308px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-55 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Fen%2Fcontact-us%3Fref_=b2b_sow_e_events_hve_abpbdd25_250922/1/010001997295aa47-3e40d9c7-c2be-492c-b836-90eac5e3ed4c-000000/MzNC2Q6JR0lN-Jn0Vo-aFjYMIPLFBubD5fPt2-yh05Q=423\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">Contact us</a> | <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fab%2Fmanage%2Faccount%2F%3Fref_=b2b_sow_e_events_hve_abpbdd25_250922/1/010001997295aa47-3e40d9c7-c2be-492c-b836-90eac5e3ed4c-000000/u-MdRRcYFS9yhkFO2-t3X8SrqEHEYW2Vx5IwT7x-hdg=423\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">Manage account</a></p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\">If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Femail-preferences%2Fep%2FSLhiT07PO1SoMz2fnePf6m*vFg9KhhtRN1LjiA8uciWAra%2BEaQQuJM1DJw==%2F1183216741%2FDvjxQCm9HTxL%2Bo82veXOE3II6Fxg46aMiOh5fnbQXj84OBiuuCjPh7HEgWqwQ2eVbXFPmWgc6uqtpcYQ3zs06yxIyGyjTdmGyh1DWQvdyKIqWFif10snHHB62J8UZZNC%2BHN0mIJJuvLjrJuHXtFcnYtarFbnGw0UUrba%2BZWxiIvvLqxxJwpsZAWB8Dwxd3ZOfhGs2nSGukgxGgm1Px71J0en1IvmyZfyKhcRpYcWf6s*2YZ*TivKriELUHpprJfVGPg3s*gWkYsY8xr7bQr0kaOqI0LjtkDM813Yrv6Z9Bu0OoaEvm1%2BvFG1GeqHsd%2BZHg87df6VLNcnynXaz7KjGlKmMOmYyJut8di6WwkN4MDPhKx74B8=%2F%2B6lVyN8DNdw7Cb*mwaIVhLjAi7Lzo%2BhjxACE6vRKwvRJ%3Fref_=b2b_sow_e_events_hve_abpbdd25_250922/1/010001997295aa47-3e40d9c7-c2be-492c-b836-90eac5e3ed4c-000000/jFJqLw-TBDi4R7G1Fbtv_5VA8W949w9Dt_wRe2aeZds=423\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">email preferences</a>.</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 30px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\">© 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210</p>\r\n                       <p style=\"margin: 0;\">&nbsp;</p>\r\n                       <p style=\"margin: 0;\">Reference: 1183216741</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n              </tr>\r\n             </tbody>\r\n            </table></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--><!--[if mso]>\r\n</table><![endif]-->\r\n  </div>\r\n </body>\r\n</html>\r\n','\r\n\r\n \r\n  Thousands of Prime Big Deal Days deals arrive soon\r\n  \r\n  \r\n  \r\n  #outlook a { padding:0; }           body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block; }\r\n  \r\n  \r\n  @import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);\r\n  @media only screen and (min-width:641px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-52 { width:52% !important; max-width: 52%; } .mj-column-per-48 { width:48% !important; max-width: 48%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }\r\n  .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                .links-FFFFFF-underline-bold a { color: #FFFFFF; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .mso-button-dark-mode a {background: transparent !important;} .links-161D26-underline a { color: #161D26; text-decoration: underline; } .links-161D26 a { color: #161D26; text-decoration: none; } .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:641px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-165px { max-width: 165px !important} .padding-5px-24px-24px-40px { padding: 5px 24px 24px 40px !important} .padding-0px-32px-0px-0px { padding: 0px 32px 0px 0px !important} .font-size-36px { font-size: 36px !important} .padding-30px-0px-20px-0px { padding: 30px 0px 20px 0px !important} .padding-0px-40px-0px-0px { padding: 0px 40px 0px 0px !important} .max-width-276px { max-width: 276px !important} .padding-12px-40px-12px-40px { padding: 12px 40px 12px 40px !important} .padding-20px-40px-0px-40px { padding: 20px 40px 0px 40px !important} .font-size-18px { font-size: 18px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .font-size-20px { font-size: 20px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }\r\n  ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 641px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}\r\n  [class~=\"x_body\"] { width: 99.9% }               @supports(--css:variables) {                         td[style*=\"border-radius\"] { -webkit-filter: drop-shadow(0 0 1px transparent); }             }\r\n \r\n \r\n  \r\n   \r\n\r\n  \r\n  \r\n   Get your cart ready\r\n  \r\n  \r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  \r\n  \r\n   \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                   \r\n                 \r\n                \r\n               \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    &nbsp;\r\n                   \r\n                 \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        Prime Big Deal Days is coming October 7–8\r\n                       \r\n                      \r\n                    \r\n                    \r\n                     \r\n                      \r\n                        Shop early deals \r\n                      \r\n                    \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    Prime Big Deal Days deals are included with Business Prime. Discover early savings today and get your cart ready.\r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   Find more ways to save\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                           \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             Business Savings Guide\r\n                            \r\n                           \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             Save on business-only prices on thousands of items.&nbsp;\r\n                            \r\n                           \r\n                         \r\n                        \r\n                       \r\n                     \r\n                    \r\n                   \r\n                  \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                           \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             Quantity Discounts\r\n                            \r\n                           \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             Explore volume discounts that give you the lowest price per unit.\r\n                            \r\n                           \r\n                         \r\n                        \r\n                       \r\n                     \r\n                    \r\n                   \r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   Please note that product prices and availability are subject to change. Prices and availability were accurate at the time this email was sent. However, they may differ from those you see when you visit Amazon.com.\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       Contact us | Manage account\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your email preferences.\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       © 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210\r\n                       &nbsp;\r\n                       Reference: 1183216741\r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n   \r\n  \r\n \r\n\r\n',0,0,0,0,0,0,'2025-09-22 18:00:35','2025-12-09 19:28:47','2025-12-09 19:28:47','2025-12-09 19:28:47',NULL,NULL,NULL),
(763,4,'<CABEiVun--JW-Q3OfNo-aCSPWf4DhSoVRGj8YFAdv9mcaSpYUUQ@mail.gmail.com>',NULL,NULL,'Re: Tectonic European Defense Summit in Paris','jen@deeptechgtm.com','Jennifer Kay','<div dir=\"auto\">Which topic are you thinking? Yes, Wednesday is fine. </div><div dir=\"auto\"><br></div><div dir=\"auto\"><br clear=\"all\"><br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:517.609px;vertical-align:-webkit-baseline-middle;font-size:medium;font-family:Arial\"><tbody><tr style=\"margin:0px;padding:0px;border:0px;color:rgb(255,255,255)\"><td style=\"padding:0px;border:0px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:517.609px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:top\"><h2 color=\"#231e4a\" style=\"font-size:18px;line-height:1.38;margin:0px;color:rgb(35,30,74)\"><span>Jennifer</span><span> </span><span>Kay</span></h2><p color=\"#231e4a\" style=\"font-size:14px;line-height:22px;margin:0px;color:rgb(35,30,74)\"><span>Principal</span><span> | </span><span>Deep Tech Go to Market</span></p><p color=\"#231e4a\" style=\"font-size:14px;line-height:22px;margin:0px;color:rgb(35,30,74)\"><span>Offering commercial go to market for dual-use tech</span></p><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:472.609px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td height=\"30\" style=\"padding:0px;border:0px\"></td></tr><tr style=\"margin:0px;padding:0px;border:0px\"><td color=\"#231E4A\" width=\"auto\" height=\"1\" style=\"padding:0px;border-top:0px;border-right:0px;border-bottom:1px solid rgb(35,30,74);border-left:none;width:472.609px;display:block\"></td></tr><tr style=\"margin:0px;padding:0px;border:0px\"><td height=\"30\" style=\"padding:0px;border:0px\"></td></tr></tbody></table><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:472.609px;vertical-align:-webkit-baseline-middle\"><tbody><tr height=\"25\" style=\"margin:0px;padding:0px;border:0px;vertical-align:middle\"><td width=\"30\" style=\"padding:0px;border:0px;vertical-align:middle\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:30px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:bottom\"><span color=\"#231E4A\" width=\"11\" style=\"display:inline-block;background-color:rgb(35,30,74)\"><img src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/phone-icon-2x.png\" color=\"#231E4A\" alt=\"mobilePhone\" width=\"13\" style=\"border-style:none;display:block\"></span></td></tr></tbody></table></td><td style=\"padding:0px;border:0px;color:rgb(35,30,74)\"><a href=\"tel:615-630-8068\" color=\"#231e4a\" style=\"background-color:rgba(0,0,0,0);color:rgb(35,30,74);font-size:12px\" target=\"_blank\">615-630-8068</a></td></tr><tr height=\"25\" style=\"margin:0px;padding:0px;border:0px;vertical-align:middle\"><td width=\"30\" style=\"padding:0px;border:0px;vertical-align:middle\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:30px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:bottom\"><span color=\"#231E4A\" width=\"11\" style=\"display:inline-block;background-color:rgb(35,30,74)\"><img src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/email-icon-2x.png\" color=\"#231E4A\" alt=\"emailAddress\" width=\"13\" style=\"border-style:none;display:block\"></span></td></tr></tbody></table></td><td style=\"padding:0px;border:0px\"><a href=\"mailto:Jen@DeepTechGTM.com\" color=\"#231e4a\" style=\"background-color:rgba(0,0,0,0);color:rgb(35,30,74);font-size:12px\" target=\"_blank\">Jen@DeepTechGTM.com</a></td></tr><tr height=\"25\" style=\"margin:0px;padding:0px;border:0px;vertical-align:middle\"><td width=\"30\" style=\"padding:0px;border:0px;vertical-align:middle\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:30px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:bottom\"><span color=\"#231E4A\" width=\"11\" style=\"display:inline-block;background-color:rgb(35,30,74)\"><img src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/link-icon-2x.png\" color=\"#231E4A\" alt=\"website\" width=\"13\" style=\"border-style:none;display:block\"></span></td></tr></tbody></table></td><td style=\"padding:0px;border:0px\"><a href=\"https://deeptechgtm.com/\" color=\"#231e4a\" style=\"background-color:rgba(0,0,0,0);color:rgb(35,30,74);font-size:12px\" target=\"_blank\">DeepTechGTM.com</a></td></tr></tbody></table></td><td width=\"45\" style=\"padding:0px;border:0px\"><div></div></td></tr></tbody></table></td></tr><tr style=\"margin:0px;padding:0px;border:0px;color:rgb(255,255,255)\"></tr></tbody></table><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:546.609px;vertical-align:-webkit-baseline-middle;font-size:medium;font-family:Arial\"><tbody><tr style=\"margin:0px;padding:0px;border:0px;color:rgb(255,255,255)\"><td style=\"padding:0px;border:0px\"><br></td></tr></tbody></table></div></div></div></div><div><br></div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Sep 22, 2025 at 5:05 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\">\r\n    <div id=\"m_-1657924029976173215bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Hi Jen,</div><div id=\"m_-1657924029976173215bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">I think our guy would be able to do this.</div><div id=\"m_-1657924029976173215bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">But I can confirm Wednesday.</div><div id=\"m_-1657924029976173215bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Will that work?</div><div id=\"m_-1657924029976173215bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Rick  </div> <div id=\"m_-1657924029976173215bloop_sign_1758578583756994048\">\r\n        \r\n     \r\n    <br>\r\n     \r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD, </span><div style=\"font-family:Helvetica,Arial\">Founder, CTO</div><div style=\"font-family:Helvetica,Arial\"><div><div><img src=\"cid:ii_19973b86800736203531\" style=\"width:108px;max-width:100%\"><br></div><div><a href=\"https://mavrix1.com/\" target=\"_blank\">https://mavrix1.com</a></div></div><div><br></div></div></div></div> <br><p>On September 19, 2025 at 2:46:33 PM, Jennifer Kay (<a href=\"mailto:jen@deeptechgtm.com\" target=\"_blank\">jen@deeptechgtm.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><p dir=\"ltr\" style=\"color:rgb(0,0,0);font-family:UICTFontTextStyleBody;font-size:14px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">European Defense Beyond Ukraine</span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">What threats lie ahead for Europe, and how can lessons from Ukraine prepare us for them?</span></p><p dir=\"ltr\" style=\"color:rgb(0,0,0);font-family:UICTFontTextStyleBody;font-size:14px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Leaning In: Investing Big in European Defense</span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Capital is pouring into European defense tech. Where is it going, and what’s driving the surge?</span></p><p dir=\"ltr\" style=\"color:rgb(0,0,0);font-family:UICTFontTextStyleBody;font-size:14px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Life on the Frontline: European Defense on the Russian Border</span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Voices from the Baltics and Eastern Europe on readiness, resilience, and how to build tech under constant threat from Russia.</span></p><p dir=\"ltr\" style=\"color:rgb(0,0,0);font-family:UICTFontTextStyleBody;font-size:14px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">How to Spot Bullshit: Sorting the Lethal from the Hype</span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Investors cut through the noise to expose what’s real and what’s just a glossy pitch.</span></p><p dir=\"ltr\" style=\"color:rgb(0,0,0);font-family:UICTFontTextStyleBody;font-size:14px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Cheap and Cheerful: Scaling Up Mass Drone Production</span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">How Europe can build drones that are fast, affordable, and effective at scale.</span></p><p dir=\"ltr\" style=\"color:rgb(0,0,0);font-family:UICTFontTextStyleBody;font-size:14px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">European Defense in a Trump World</span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">What a second Trump presidency could mean for NATO, transatlantic ties, and European self-reliance.</span></p><p dir=\"ltr\" style=\"color:rgb(0,0,0);font-family:UICTFontTextStyleBody;font-size:14px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Frenemies: The Trouble with Strategic Autonomy</span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Cooperation versus independence—how Europe balances unity with sovereignty.</span></p><p dir=\"ltr\" style=\"color:rgb(0,0,0);font-family:UICTFontTextStyleBody;font-size:14px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Ukraine Beyond the War</span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">How can Ukraine’s battle-forged defense industry help bolster Europe’s security?</span></p><p dir=\"ltr\" style=\"color:rgb(0,0,0);font-family:UICTFontTextStyleBody;font-size:14px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Crossing the Valley of Death</span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Why European defense tech struggles to scale and how to reform acquisition.</span></p><p dir=\"ltr\" style=\"color:rgb(0,0,0);font-family:UICTFontTextStyleBody;font-size:14px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">The Race to Automate: Automation Beyond FPV Drones</span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Beyond FPV drones, what’s next for autonomy on the battlefield?</span></p><p dir=\"ltr\" style=\"color:rgb(0,0,0);font-family:UICTFontTextStyleBody;font-size:14px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Autonomy at Sea: The Power of Maritime Drones in Europe</span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Maritime drones are changing naval power in Europe, from the North Sea to the Black Sea.</span></p><p dir=\"ltr\" style=\"color:rgb(0,0,0);font-family:UICTFontTextStyleBody;font-size:14px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">On the Ground: AI on the Battlefield</span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">How AI is already shaping tactics, decision-making, planning, and soldiering.</span></p><p dir=\"ltr\" style=\"color:rgb(0,0,0);font-family:UICTFontTextStyleBody;font-size:14px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Working Together: Innovation across Europe and NATO</span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Innovation at the speed of alliances—how to leverage the NATO alliance to bolster innovation.</span></p><p dir=\"ltr\" style=\"color:rgb(0,0,0);font-family:UICTFontTextStyleBody;font-size:14px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;line-height:1.38;margin-top:0pt;margin-bottom:9pt\"><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">The First Line of Defense: European Missile and Drone Defense<span> </span></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Europe’s race to scale missile and drone defenses before the next wave of attacks.</span></p><span style=\"color:rgb(0,0,0);font-style:normal;font-variant-caps:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Investing in Space</span><span style=\"color:rgb(0,0,0);font-style:normal;font-variant-caps:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;font-size:9pt;font-family:Arial,sans-serif;font-weight:700;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\"><br></span><span style=\"color:rgb(0,0,0);font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;font-size:9pt;font-family:Arial,sans-serif;font-variant-alternates:normal;font-variant-numeric:normal;font-variant-east-asian:normal;vertical-align:baseline\">Why space tech is becoming indispensable for European defense.</span></div></span></blockquote>\r\n\r\n\r\n</blockquote></div></div>','Which topic are you thinking? Yes, Wednesday is fine.\r\n\r\n\r\n\r\nJennifer Kay\r\n\r\nPrincipal | Deep Tech Go to Market\r\n\r\nOffering commercial go to market for dual-use tech\r\n[image: mobilePhone] 615-630-8068\r\n[image: emailAddress] Jen@DeepTechGTM.com\r\n[image: website] DeepTechGTM.com <https://deeptechgtm.com/>\r\n\r\n\r\n\r\nOn Mon, Sep 22, 2025 at 5:05 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> Hi Jen,\r\n> I think our guy would be able to do this.\r\n> But I can confirm Wednesday.\r\n> Will that work?\r\n> Rick\r\n>\r\n> Rick Mislan, PhD,\r\n> Founder, CTO\r\n>\r\n> https://mavrix1.com\r\n>\r\n>\r\n> On September 19, 2025 at 2:46:33 PM, Jennifer Kay (jen@deeptechgtm.com)\r\n> wrote:\r\n>\r\n> European Defense Beyond Ukraine\r\n> What threats lie ahead for Europe, and how can lessons from Ukraine\r\n> prepare us for them?\r\n>\r\n> Leaning In: Investing Big in European Defense\r\n> Capital is pouring into European defense tech. Where is it going, and\r\n> what’s driving the surge?\r\n>\r\n> Life on the Frontline: European Defense on the Russian Border\r\n> Voices from the Baltics and Eastern Europe on readiness, resilience, and\r\n> how to build tech under constant threat from Russia.\r\n>\r\n> How to Spot Bullshit: Sorting the Lethal from the Hype\r\n> Investors cut through the noise to expose what’s real and what’s just a\r\n> glossy pitch.\r\n>\r\n> Cheap and Cheerful: Scaling Up Mass Drone Production\r\n> How Europe can build drones that are fast, affordable, and effective at\r\n> scale.\r\n>\r\n> European Defense in a Trump World\r\n> What a second Trump presidency could mean for NATO, transatlantic ties,\r\n> and European self-reliance.\r\n>\r\n> Frenemies: The Trouble with Strategic Autonomy\r\n> Cooperation versus independence—how Europe balances unity with sovereignty.\r\n>\r\n> Ukraine Beyond the War\r\n> How can Ukraine’s battle-forged defense industry help bolster Europe’s\r\n> security?\r\n>\r\n> Crossing the Valley of Death\r\n> Why European defense tech struggles to scale and how to reform acquisition.\r\n>\r\n> The Race to Automate: Automation Beyond FPV Drones\r\n> Beyond FPV drones, what’s next for autonomy on the battlefield?\r\n>\r\n> Autonomy at Sea: The Power of Maritime Drones in Europe\r\n> Maritime drones are changing naval power in Europe, from the North Sea to\r\n> the Black Sea.\r\n>\r\n> On the Ground: AI on the Battlefield\r\n> How AI is already shaping tactics, decision-making, planning, and\r\n> soldiering.\r\n>\r\n> Working Together: Innovation across Europe and NATO\r\n> Innovation at the speed of alliances—how to leverage the NATO alliance to\r\n> bolster innovation.\r\n>\r\n> The First Line of Defense: European Missile and Drone Defense\r\n> Europe’s race to scale missile and drone defenses before the next wave of\r\n> attacks.\r\n> Investing in Space\r\n> Why space tech is becoming indispensable for European defense.\r\n>\r\n>',0,0,0,0,0,0,'2025-09-22 23:18:21','2025-12-09 19:28:48','2025-12-09 19:28:48','2025-12-09 19:28:48',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(764,4,'<598298091.38506701.1758589602893@lor1-app76197.prod.linkedin.com>',NULL,NULL,'South Tampa Chamber of Commerce President & CEO recently posted','updates-noreply@linkedin.com','LinkedIn','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n              @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n            </style> <style>\r\n            @media (max-width: 480px) { .inline-button, .inline-button table { display: none !important; }\r\n            .full-width-button, .full-width-button table { display: table !important; } }\r\n          </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n            \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n            \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">The 2025 Tampa Air Force Ball was truly a night to remember! 🇺🇸✈️ It was an…</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-top: 0px; margin-bottom: 0px; margin-left: auto; margin-right: auto; width: 512px; max-width: 512px; padding: 0px;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"bg-color-background-container \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-header-0-home_glimmer_static_badging_with_count&amp;trkEmail=eml-email_network_conversations_01-header-0-home_glimmer_static_badging_with_count-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img class=\"h-[37px] w-[101px]\" alt=\"LinkedIn\" src=\"https://static.licdn.com/sc/h/2fp5x7ci191mxbdy1eynscn59\" data-test-header-static-badging-img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 37px; width: 101px;\" width=\"101\" height=\"37\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" data-test-header-notification-badges style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/messaging/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-header-0-messaging_glimmer&amp;trkEmail=eml-email_network_conversations_01-header-0-messaging_glimmer-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Messaging icon\" src=\"https://static.licdn.com/sc/h/ekkp8yi9j4xx65umpdz3rdmbp\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-header-0-my_network_glimmer&amp;trkEmail=eml-email_network_conversations_01-header-0-my_network_glimmer-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Mynetwork icon\" src=\"https://static.licdn.com/sc/h/4yxfb6j5ycpjfjgehfqgmdx9w\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/notifications/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-header-0-notifications_glimmer&amp;trkEmail=eml-email_network_conversations_01-header-0-notifications_glimmer-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Notifications icon\" src=\"https://static.licdn.com/sc/h/eh1e9j5bszh6p379hn269p3ps\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"p-0 !pb-0 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0px; padding-bottom: 0px !important;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7373529728802107392?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7373529728802107392?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"actor-card-default\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://static.licdn.com/sc/h/4eby4moebno1i6r34if7lud8o\" alt=\"Kelly Flannery, IOM, FCCP\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%); display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Kelly Flannery, IOM, FCCP </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> I have the best job in the world as the CEO of the… </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> <td class=\"!w-[80px]\" data-test-id=\"network-post-follow-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 80px !important;\" width=\"80\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=kellyaflannery&amp;entityUrn=ADoAAAHSLwsB3tMwSHjBVHfX-d-JsL1rSS6bCzg&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" aria-label=\"Follow\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-tertiary-emphasis border-none button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: none; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=kellyaflannery&amp;entityUrn=ADoAAAHSLwsB3tMwSHjBVHfX-d-JsL1rSS6bCzg&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline \" style=\"text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 text-md leading-regular text-system-gray-90\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> The 2025 Tampa Air Force Ball was truly a night to remember! 🇺🇸✈️ It was an honor to serve as Civilian… </span> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7373529728802107392?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-truncated~share~message-0-see~more&amp;trkEmail=eml-email_network_conversations_01-truncated~share~message-0-see~more-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <span data-test-id=\"truncated-message-see-more\" class=\"text-color-link font-bold\" style=\"font-weight: 600; color: #0a66c2;\"> see more </span> </a> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"w-auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: auto;\"> <tbody> <tr> <td class=\"pr-0.5\" data-test-reaction=\"LIKE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/91tdscn0h1aaoefui9crf11j6\" alt=\"LIKE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"PRAISE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/adig5urqxi03qzuy6iyjfm1b5\" alt=\"PRAISE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"EMPATHY\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/evs2x5zfnz5g0xrc6u22treq2\" alt=\"EMPATHY\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"reactions-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 21 </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button w-full koshin__button-with-full-width\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7373529728802107392?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; width: 100% !important; display: block !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7373529728802107392?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; width: 100% !important; display: block !important;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr><td class=\"h-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 16px;\" height=\"16\"></td></tr> <tr> <td class=\"rounded-md\" data-test-id=\"network-post-update-card\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7373529728802107392?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image&amp;trkEmail=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"block w-full h-full\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block; height: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-cool-gray-20 rounded-md\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; background-color: #edf3f8;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-center bg-no-repeat h-[252px] bg-system-gray-40\" align=\"center\" data-test-id=\"update-card-container\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 252px; background-color: #cfcfcf; background-position: center; background-repeat: no-repeat; background-size: cover; background-image: url(&quot;https://media.licdn.com/dms/image/v2/D4E22AQEgt-30p46LWQ/feedshare-shrink_800/B4EZlQKNekK0Ak-/0/1757986478860?e=1761782400&amp;v=beta&amp;t=Gg123eGiappOa_75x4fKwB73Wl2oy6Xk8illD7OtYZw&quot;);\" height=\"252\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"h-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 100%;\" height=\"100%\"> <tbody> <tr> <td align=\"center\" class=\"overflow-hidden\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; overflow: hidden;\"> <img class=\"w-[448px] h-[252px] hidden hidden\" src=\"https://media.licdn.com/dms/image/v2/D4E22AQEgt-30p46LWQ/feedshare-shrink_800/B4EZlQKNekK0Ak-/0/1757986478860?e=1761782400&amp;v=beta&amp;t=Gg123eGiappOa_75x4fKwB73Wl2oy6Xk8illD7OtYZw\" alt=\"View image\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: none; height: 252px; width: 448px;\" width=\"448\" height=\"252\"> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7374052759098105857?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7374052759098105857?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"actor-card-default\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://media.licdn.com/dms/image/v2/C5603AQEdMPKQ590EMA/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1658933600516?e=2147483647&amp;v=beta&amp;t=5kP1BWfyyMaevB8dzKxCc8zK9VkmeQfPq6QHBOokZGw\" alt=\"Ricky Caplin\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%); display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Ricky Caplin </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> Founder and Chairman, Caplin Ventures </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> <td class=\"!w-[80px]\" data-test-id=\"network-post-follow-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 80px !important;\" width=\"80\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=ricky-caplin-3b6b9a4&amp;entityUrn=ADoAAADjIroBmRSmReaP5PBiETMH9Gc0xtmBIEw&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" aria-label=\"Follow\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-tertiary-emphasis border-none button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: none; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=ricky-caplin-3b6b9a4&amp;entityUrn=ADoAAADjIroBmRSmReaP5PBiETMH9Gc0xtmBIEw&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline \" style=\"text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 text-md leading-regular text-system-gray-90\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> Tough loss for the Jags, but it was still a great day spending time with my friends, Anson Frericks, Vivek… </span> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7374052759098105857?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-truncated~share~message-0-see~more&amp;trkEmail=eml-email_network_conversations_01-truncated~share~message-0-see~more-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <span data-test-id=\"truncated-message-see-more\" class=\"text-color-link font-bold\" style=\"font-weight: 600; color: #0a66c2;\"> see more </span> </a> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"w-auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: auto;\"> <tbody> <tr> <td class=\"pr-0.5\" data-test-reaction=\"LIKE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/91tdscn0h1aaoefui9crf11j6\" alt=\"LIKE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"PRAISE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/adig5urqxi03qzuy6iyjfm1b5\" alt=\"PRAISE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"EMPATHY\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/evs2x5zfnz5g0xrc6u22treq2\" alt=\"EMPATHY\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"reactions-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 114 </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button w-full koshin__button-with-full-width\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7374052759098105857?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; width: 100% !important; display: block !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7374052759098105857?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; width: 100% !important; display: block !important;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr><td class=\"h-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 16px;\" height=\"16\"></td></tr> <tr> <td class=\"rounded-md\" data-test-id=\"network-post-update-card\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7374052759098105857?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image&amp;trkEmail=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"block w-full h-full\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block; height: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-cool-gray-20 rounded-md\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; background-color: #edf3f8;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-center bg-no-repeat auto pt-[71%] pb-[71%] bg-system-gray-40\" align=\"center\" data-test-id=\"update-card-container\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #cfcfcf; background-position: center; background-repeat: no-repeat; padding-top: 71%; padding-bottom: 71%; background-size: cover; background-image: url(&quot;https://media.licdn.com/dms/image/v2/D4E22AQFJYsy8qI7_pQ/feedshare-shrink_2048_1536/B4EZlXdoF7GYAw-/0/1758109043479?e=1761782400&amp;v=beta&amp;t=BWIS0s3lcthYzkQhZ4_9Fpgf9bI2scdfX0jC8oxqrC8&quot;);\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"h-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 100%;\" height=\"100%\"> <tbody> <tr> <td align=\"center\" class=\"overflow-hidden\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; overflow: hidden;\"> <img class=\"w-[448px] h-[252px] hidden hidden\" src=\"https://media.licdn.com/dms/image/v2/D4E22AQFJYsy8qI7_pQ/feedshare-shrink_2048_1536/B4EZlXdoF7GYAw-/0/1758109043479?e=1761782400&amp;v=beta&amp;t=BWIS0s3lcthYzkQhZ4_9Fpgf9bI2scdfX0jC8oxqrC8\" alt=\"View image\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: none; height: 252px; width: 448px;\" width=\"448\" height=\"252\"> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7374192240425848832?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7374192240425848832?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"actor-card-default\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQGs7jn75vvz8w/profile-displayphoto-shrink_400_400/B4EZdBGfJjG4Ag-/0/1749143909362?e=2147483647&amp;v=beta&amp;t=2jru_zRZfiGRJnApk5wLcfdZRuxWo_DMz9ELHfuvSPw\" alt=\"Carmen Dawson\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%); display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Carmen Dawson </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> Innovation Aggregation and Management - Broadband… </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> <td class=\"!w-[80px]\" data-test-id=\"network-post-follow-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 80px !important;\" width=\"80\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=activatingdream&amp;entityUrn=ADoAAACeLwUBB4U0VaIK7ldBo58rAEv6gYaWgbI&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" aria-label=\"Follow\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-tertiary-emphasis border-none button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: none; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=activatingdream&amp;entityUrn=ADoAAACeLwUBB4U0VaIK7ldBo58rAEv6gYaWgbI&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline \" style=\"text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 text-md leading-regular text-system-gray-90\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> Seems note worthy! </span> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"w-auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: auto;\"> <tbody> <tr> <td class=\"pr-0.5\" data-test-reaction=\"LIKE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/91tdscn0h1aaoefui9crf11j6\" alt=\"LIKE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"reactions-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 1 </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button w-full koshin__button-with-full-width\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7374192240425848832?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; width: 100% !important; display: block !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7374192240425848832?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; width: 100% !important; display: block !important;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7374086017407934464?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7374086017407934464?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"actor-card-default\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://static.licdn.com/sc/h/4eby4moebno1i6r34if7lud8o\" alt=\"Francisco Gonzalez\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%); display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Francisco Gonzalez </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> Connecting You With Innovators Across the World… </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> <td class=\"!w-[80px]\" data-test-id=\"network-post-follow-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 80px !important;\" width=\"80\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=fgonzalez1978&amp;entityUrn=ADoAAAA-9xYBnbuef3eUx2FD1R3xAOC9l68iA98&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" aria-label=\"Follow\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-tertiary-emphasis border-none button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: none; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=fgonzalez1978&amp;entityUrn=ADoAAAA-9xYBnbuef3eUx2FD1R3xAOC9l68iA98&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline \" style=\"text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 text-md leading-regular text-system-gray-90\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> Thank you to National Review for publishing my tribute to Charlie Kirk. I never tired of telling people two… </span> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7374086017407934464?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-truncated~share~message-0-see~more&amp;trkEmail=eml-email_network_conversations_01-truncated~share~message-0-see~more-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <span data-test-id=\"truncated-message-see-more\" class=\"text-color-link font-bold\" style=\"font-weight: 600; color: #0a66c2;\"> see more </span> </a> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"w-auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: auto;\"> <tbody> <tr> <td class=\"pr-0.5\" data-test-reaction=\"LIKE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/91tdscn0h1aaoefui9crf11j6\" alt=\"LIKE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"PRAISE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/adig5urqxi03qzuy6iyjfm1b5\" alt=\"PRAISE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"EMPATHY\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/evs2x5zfnz5g0xrc6u22treq2\" alt=\"EMPATHY\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"reactions-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 48 </td> <td class=\"px-0.5\" data-test-id=\"separator\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\">·</td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"comments-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 4 Comments </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button w-full koshin__button-with-full-width\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7374086017407934464?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; width: 100% !important; display: block !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7374086017407934464?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; width: 100% !important; display: block !important;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr><td class=\"h-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 16px;\" height=\"16\"></td></tr> <tr> <td class=\"rounded-md\" data-test-id=\"network-post-update-card\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7374086017407934464?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image&amp;trkEmail=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"block w-full h-full\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block; height: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-cool-gray-20 rounded-md\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; background-color: #edf3f8;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-center bg-no-repeat h-[252px] bg-system-gray-40\" align=\"center\" data-test-id=\"update-card-container\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 252px; background-color: #cfcfcf; background-position: center; background-repeat: no-repeat; background-size: cover; background-image: url(&quot;https://media.licdn.com/dms/image/sync/v2/D4E27AQGf4YGE2_f-Pw/articleshare-shrink_800/B4EZlYDpZ6IQAI-/0/1758118975438?e=1759197600&amp;v=beta&amp;t=ohdLwXH8b5wUidfMoVEfmizQJu_PffsHgb9-ZWppv2M&quot;);\" height=\"252\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"h-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 100%;\" height=\"100%\"> <tbody> <tr> <td align=\"center\" class=\"overflow-hidden\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; overflow: hidden;\"> <img class=\"w-[448px] h-[252px] hidden hidden\" src=\"https://media.licdn.com/dms/image/sync/v2/D4E27AQGf4YGE2_f-Pw/articleshare-shrink_800/B4EZlYDpZ6IQAI-/0/1758118975438?e=1759197600&amp;v=beta&amp;t=ohdLwXH8b5wUidfMoVEfmizQJu_PffsHgb9-ZWppv2M\" alt=\"View image\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: none; height: 252px; width: 448px;\" width=\"448\" height=\"252\"> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"p-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 16px;\"> <p class=\"text-md font-bold leading-regular text-black\" style=\"margin: 0; font-size: 16px; font-weight: 600; line-height: 1.25; color: #000000;\"> Charlie Kirk: A Witness of Faith, Truth, and Courage </p> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7373369026867101696?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7373369026867101696?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"actor-card-default\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://media.licdn.com/dms/image/v2/D5603AQGODBlfjBvL-A/profile-displayphoto-scale_400_400/B56ZhcsWpAG0Ag-/0/1753901792908?e=2147483647&amp;v=beta&amp;t=L14AYUt2JAe7cJZkT0g1HWqqwU9HnO0OT3oxYIU233g\" alt=\"Blake Newman\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%); display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Blake Newman </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> Miami, FL </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> <td class=\"!w-[80px]\" data-test-id=\"network-post-follow-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 80px !important;\" width=\"80\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=blakernewman&amp;entityUrn=ADoAAC9asiABSWnDBqs9G7wTYJnJptT55IGbzNw&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" aria-label=\"Follow\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-tertiary-emphasis border-none button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: none; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=blakernewman&amp;entityUrn=ADoAAC9asiABSWnDBqs9G7wTYJnJptT55IGbzNw&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network_post-0-follow_cta&amp;trkEmail=eml-email_network_conversations_01-network_post-0-follow_cta-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline \" style=\"text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 text-md leading-regular text-system-gray-90\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> Why settle for average when your car wash projects deserve speed, precision, and national firepower? ✅ 110+… </span> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7373369026867101696?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-truncated~share~message-0-see~more&amp;trkEmail=eml-email_network_conversations_01-truncated~share~message-0-see~more-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <span data-test-id=\"truncated-message-see-more\" class=\"text-color-link font-bold\" style=\"font-weight: 600; color: #0a66c2;\"> see more </span> </a> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"w-auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: auto;\"> <tbody> <tr> <td class=\"pr-0.5\" data-test-reaction=\"LIKE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/91tdscn0h1aaoefui9crf11j6\" alt=\"LIKE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"pr-0.5\" data-test-reaction=\"PRAISE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/adig5urqxi03qzuy6iyjfm1b5\" alt=\"PRAISE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"reactions-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 8 </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button w-full koshin__button-with-full-width\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7373369026867101696?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; width: 100% !important; display: block !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7373369026867101696?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; width: 100% !important; display: block !important;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"pt-4 pb-2 px-3 bg-color-background-canvas\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding-left: 24px; padding-right: 24px; padding-bottom: 16px; padding-top: 32px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-footer_promo-0-footer_see_all&amp;trkEmail=eml-email_network_conversations_01-footer_promo-0-footer_see_all-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" aria-label=\"See more on LinkedIn\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-footer_promo-0-footer_see_all&amp;trkEmail=eml-email_network_conversations_01-footer_promo-0-footer_see_all-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> See more on LinkedIn </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-lg text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 20px; color: #114951;\"> Get the new LinkedIn desktop app </h2> </td> </tr> <tr> <td class=\"text-center pb-2\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <a href=\"https://apps.microsoft.com/store/detail/9WZDNCRFJ4Q7?launch=true&amp;cid=linkedin_email_upsell&amp;mode=full\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it from Microsoft\" src=\"https://static.licdn.com/sc/h/ejpkkpwvqks31a3cjqokb7fbm\" class=\"h-[40px] w-[112px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 112px;\" width=\"112\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-md text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 16px; color: #114951;\"> Also available on mobile </h2> </td> </tr> <tr> <td class=\"text-center\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <a href=\"https://itunes.apple.com/us/app/linkedin/id288429040?pt=10746&amp;ct=st_appsite_flagship&amp;mt=8\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Download on the App Store\" src=\"https://static.licdn.com/sc/h/76yzkd0h5kiv27lrd4yaenylk\" class=\"h-[40px] w-[120px] pr-1\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 120px; padding-right: 8px;\" width=\"120\" height=\"40\"> </a> <a href=\"https://play.google.com/store/apps/details?id=com.linkedin.android&amp;referrer=st_appsite_flagship\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it on Google Play\" src=\"https://static.licdn.com/sc/h/142qudwblp58zwmc9vkqfplug\" class=\"h-[40px] w-[134px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 134px;\" width=\"134\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px;\"><hr class=\"border-none bg-[#e0dfdd] h-[1px]\" style=\"height: 1px; border-style: none; background-color: #e0dfdd;\"></td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" data-test-id=\"email-footer__intended\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_network_conversations_01-SecurityHelp-0-footerglimmer-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving Network Conversations emails. Some content may be automatically translated based on <a href=\"https://www.linkedin.com/mypreferences/d/language-for-translation\" target=\"_blank\" class=\"link-no-visited-state\" data-tracking-will-navigate data-tracking-control-name=\"email_network_conversations_content_settings_link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-weight: 600; color: #0a66c2;\">your settings</a>.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/mypreferences/u/emailunsub?action=updateEmailSubscription&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-unsubscribe-0-footerGlimmer&amp;trkEmail=eml-email_network_conversations_01-unsubscribe-0-footerGlimmer-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;loid=AQHh0a9m3zDQDAAAAZl0G8oPcU7SpWezaXDw6R--JcH9-jc_RDOdW0BULKDURLCZPNJPofBnCfX7lYr7mKR58n7QofLF2h2L33pApwjAOmFVqo9No5Rg\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Unsubscribe</a>   ·   <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-help-0-footerglimmer&amp;trkEmail=eml-email_network_conversations_01-help-0-footerglimmer-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" data-test-help-link class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2ZCBLo9H22eXY1&amp;trk=eml-email_network_conversations_01-footer-0-logoGlimmer&amp;trkEmail=eml-email_network_conversations_01-footer-0-logoGlimmer-null-poh2nf~mfvu70lr~ii-null-null&amp;eid=poh2nf-mfvu70lr-ii&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFtZG5VM01HeHlMV2xwOlpXMWhhV3hmYm1WMGQyOXlhMTlqYjI1MlpYSnpZWFJwYjI1elh6QXg6.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','Kelly Flannery, IOM, FCCP shared a post: The 2025 Tampa Air Force Ball was truly a night to remember! 🇺🇸✈️\r\n\r\nIt was an honor to serve as Civilian Chair for the 5th time as we welcomed 1,000…\r\nLIKE PRAISE EMPATHY 21\r\n\r\n\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7373529728802107392?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&midToken=AQE-iPshthTClw&midSig=2ZCBLo9H22eXY1&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~mfvu70lr~ii-null-null&eid=poh2nf-mfvu70lr-ii&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\r\n        \r\n\r\n\r\n\r\n          \r\n        \r\n\r\n          Ricky Caplin shared a post: Tough loss for the Jags, but it was still a great day spending time with my friends, Anson Frericks, Vivek Ramaswamy, and Jay Shah. Grateful for good…\r\nLIKE PRAISE EMPATHY 114\r\n\r\n\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7374052759098105857?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&midToken=AQE-iPshthTClw&midSig=2ZCBLo9H22eXY1&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~mfvu70lr~ii-null-null&eid=poh2nf-mfvu70lr-ii&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\r\n        \r\n\r\n\r\n\r\n          \r\n        \r\n\r\n          Carmen Dawson shared a post: Seems note worthy!\r\nLIKE 1\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7374192240425848832?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&midToken=AQE-iPshthTClw&midSig=2ZCBLo9H22eXY1&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~mfvu70lr~ii-null-null&eid=poh2nf-mfvu70lr-ii&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\r\n        \r\n\r\n\r\n\r\n          \r\n        \r\n\r\n          Francisco Gonzalez shared a post: Thank you to National Review for publishing my tribute to Charlie Kirk. I never tired of telling people two things over the past number of years:…\r\nLIKE PRAISE EMPATHY 48, 4 Comments\r\nCharlie Kirk: A Witness of Faith, Truth, and Courage\r\n\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7374086017407934464?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&midToken=AQE-iPshthTClw&midSig=2ZCBLo9H22eXY1&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~mfvu70lr~ii-null-null&eid=poh2nf-mfvu70lr-ii&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\r\n        \r\n\r\n\r\n\r\n          \r\n        \r\n\r\n          Blake Newman shared a post: Why settle for average when your car wash projects deserve speed, precision, and national firepower?\r\n\r\n✅ 110+ Projects Completed Last Year - trusted…\r\nLIKE PRAISE 8\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7373369026867101696?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&midToken=AQE-iPshthTClw&midSig=2ZCBLo9H22eXY1&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~mfvu70lr~ii-null-null&eid=poh2nf-mfvu70lr-ii&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\r\n        \r\n\r\n\r\nSee more on LinkedIn: https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&midToken=AQE-iPshthTClw&midSig=2ZCBLo9H22eXY1&trk=eml-email_network_conversations_01-footer_promo-0-footer_see_all&trkEmail=eml-email_network_conversations_01-footer_promo-0-footer_see_all-null-poh2nf~mfvu70lr~ii-null-null&eid=poh2nf-mfvu70lr-ii&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\r\n\r\n----------------------------------------\r\n\r\nThis email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\nLearn why we included this: https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&midToken=AQE-iPshthTClw&midSig=2ZCBLo9H22eXY1&trk=eml-email_network_conversations_01-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_network_conversations_01-SecurityHelp-0-textfooterglimmer-null-poh2nf~mfvu70lr~ii-null-null&eid=poh2nf-mfvu70lr-ii&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\r\nYou are receiving Network Conversations emails. Some content may be automatically translated based on\r\n      <a href=\"https://www.linkedin.com/mypreferences/d/language-for-translation\" target=\"_blank\" class=\"link-no-visited-state\" data-tracking-will-navigate data-tracking-control-name=\"email_network_conversations_content_settings_link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-weight: 600; color: #0a66c2;\">your settings</a>.\r\n\r\n\r\nUnsubscribe: https://www.linkedin.com/comm/mypreferences/u/emailunsub?action=updateEmailSubscription&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&midToken=AQE-iPshthTClw&midSig=2ZCBLo9H22eXY1&trk=eml-email_network_conversations_01-unsubscribe-0-textfooterglimmer&trkEmail=eml-email_network_conversations_01-unsubscribe-0-textfooterglimmer-null-poh2nf~mfvu70lr~ii-null-null&eid=poh2nf-mfvu70lr-ii&loid=AQHh0a9m3zDQDAAAAZl0G8oPcU7SpWezaXDw6R--JcH9-jc_RDOdW0BULKDURLCZPNJPofBnCfX7lYr7mKR58n7QofLF2h2L33pApwjAOmFVqo9No5Rg\r\nHelp: https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3B%2FWueRC0NQUyug7vhtKKIPw%3D%3D&midToken=AQE-iPshthTClw&midSig=2ZCBLo9H22eXY1&trk=eml-email_network_conversations_01-help-0-textfooterglimmer&trkEmail=eml-email_network_conversations_01-help-0-textfooterglimmer-null-poh2nf~mfvu70lr~ii-null-null&eid=poh2nf-mfvu70lr-ii&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjE4N2M3ZDY0MTliYWQ4YjY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkYWNlYzY1NGEzYThiOTNmMThmNzllOTg1OTNhOGI4MWY0YzZlNjEwY2FkMGU3ZTIsMSwx\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.\r\nLinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',0,0,0,0,0,0,'2025-09-23 01:06:42','2025-12-09 19:28:48','2025-12-09 19:28:48','2025-12-09 19:28:48',NULL,NULL,NULL),
(765,4,'<CABEiVumkv+x9YYBJBmm7rxg3LsLZgMdVOYjPyYoNAsyP87_Mag@mail.gmail.com>',NULL,NULL,'Re: M&A Oppty - Zenith Firearms & Aerotech','jen@deeptechgtm.com','Jennifer Kay','<div dir=\"ltr\"><div dir=\"ltr\"><div>I&#39;m not working today in observance of the Jewish holiday but I&#39;m happy to connect you directly with my POC at Zenith, Tony Williams. He is a highly trusted friend, mentor, colleague.</div><div><br></div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:517.609px;vertical-align:-webkit-baseline-middle;font-size:medium;font-family:Arial\"><tbody><tr style=\"margin:0px;padding:0px;border:0px;color:rgb(255,255,255)\"><td style=\"padding:0px;border:0px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:517.609px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:top\"><h2 color=\"#231e4a\" style=\"font-size:18px;line-height:1.38;margin:0px;color:rgb(35,30,74)\"><span>Jennifer</span><span> </span><span>Kay</span></h2><p color=\"#231e4a\" style=\"font-size:14px;line-height:22px;margin:0px;color:rgb(35,30,74)\"><span>Principal</span><span> | </span><span>Deep Tech Go to Market</span></p><p color=\"#231e4a\" style=\"font-size:14px;line-height:22px;margin:0px;color:rgb(35,30,74)\"><span>Offering commercial go to market for dual-use tech</span></p><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:472.609px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td height=\"30\" style=\"padding:0px;border:0px\"></td></tr><tr style=\"margin:0px;padding:0px;border:0px\"><td color=\"#231E4A\" width=\"auto\" height=\"1\" style=\"padding:0px;border-top:0px;border-right:0px;border-bottom:1px solid rgb(35,30,74);border-left:none;width:472.609px;display:block\"></td></tr><tr style=\"margin:0px;padding:0px;border:0px\"><td height=\"30\" style=\"padding:0px;border:0px\"></td></tr></tbody></table><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:472.609px;vertical-align:-webkit-baseline-middle\"><tbody><tr height=\"25\" style=\"margin:0px;padding:0px;border:0px;vertical-align:middle\"><td width=\"30\" style=\"padding:0px;border:0px;vertical-align:middle\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:30px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:bottom\"><span color=\"#231E4A\" width=\"11\" style=\"display:inline-block;background-color:rgb(35,30,74)\"><img src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/phone-icon-2x.png\" color=\"#231E4A\" alt=\"mobilePhone\" width=\"13\" style=\"border-style: none; display: block;\"></span></td></tr></tbody></table></td><td style=\"padding:0px;border:0px;color:rgb(35,30,74)\"><a href=\"tel:615-630-8068\" color=\"#231e4a\" style=\"background-color:rgba(0,0,0,0);color:rgb(35,30,74);font-size:12px\" target=\"_blank\">615-630-8068</a></td></tr><tr height=\"25\" style=\"margin:0px;padding:0px;border:0px;vertical-align:middle\"><td width=\"30\" style=\"padding:0px;border:0px;vertical-align:middle\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:30px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:bottom\"><span color=\"#231E4A\" width=\"11\" style=\"display:inline-block;background-color:rgb(35,30,74)\"><img src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/email-icon-2x.png\" color=\"#231E4A\" alt=\"emailAddress\" width=\"13\" style=\"border-style: none; display: block;\"></span></td></tr></tbody></table></td><td style=\"padding:0px;border:0px\"><a href=\"mailto:Jen@DeepTechGTM.com\" color=\"#231e4a\" style=\"background-color:rgba(0,0,0,0);color:rgb(35,30,74);font-size:12px\" target=\"_blank\">Jen@DeepTechGTM.com</a></td></tr><tr height=\"25\" style=\"margin:0px;padding:0px;border:0px;vertical-align:middle\"><td width=\"30\" style=\"padding:0px;border:0px;vertical-align:middle\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:30px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:bottom\"><span color=\"#231E4A\" width=\"11\" style=\"display:inline-block;background-color:rgb(35,30,74)\"><img src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/link-icon-2x.png\" color=\"#231E4A\" alt=\"website\" width=\"13\" style=\"border-style: none; display: block;\"></span></td></tr></tbody></table></td><td style=\"padding:0px;border:0px\"><a href=\"https://deeptechgtm.com/\" color=\"#231e4a\" style=\"background-color:rgba(0,0,0,0);color:rgb(35,30,74);font-size:12px\" target=\"_blank\">DeepTechGTM.com</a></td></tr></tbody></table></td><td width=\"45\" style=\"padding:0px;border:0px\"><div></div></td></tr></tbody></table></td></tr><tr style=\"margin:0px;padding:0px;border:0px;color:rgb(255,255,255)\"></tr></tbody></table><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:546.609px;vertical-align:-webkit-baseline-middle;font-size:medium;font-family:Arial\"><tbody><tr style=\"margin:0px;padding:0px;border:0px;color:rgb(255,255,255)\"><td style=\"padding:0px;border:0px\"><br></td></tr></tbody></table></div></div></div><br><div></div></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Sep 23, 2025 at 8:13 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">Let’s discuss.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">I can send an NDA…</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Let me know.</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Thanks!</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Rick</div> <br> <div class=\"gmail_signature\">\r\n        \r\n     \r\n    <br>\r\n     \r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD, </span><div style=\"font-family:Helvetica,Arial\">Founder, CTO</div><div style=\"font-family:Helvetica,Arial\"><div><div><img src=\"cid:ii_19976b9266cfcc4344d6\" style=\"max-width: 99%;\"><br></div><div><a href=\"https://mavrix1.com/\" target=\"_blank\">https://mavrix1.com</a></div></div><div><br></div></div></div></div> <br><p>On September 22, 2025 at 1:23:19 PM, Jennifer Kay (<a href=\"mailto:jen@deeptechgtm.com\" target=\"_blank\">jen@deeptechgtm.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div class=\"gmail_quote\"><div dir=\"ltr\"><div>PFA material on a company run by a close friend and colleague: <a href=\"https://zenithfirearms.com/\" target=\"_blank\">Zenith Firearms</a> and <a href=\"https://zenithaerotech.com/\" target=\"_blank\">Zenith Aerotech</a>.</div><div><br></div><div>There are 2 deals here.</div><div><br></div><div>1. They&#39;re looking for $10-20M to get out from under some financing arrangements that are limiting their growth.  </div><div><br></div><div>2. Additionally, they&#39;re interested in M&amp;A of Zenith Aerotech; this is the tethered drone company. They have a very strong pipeline for 2026 on the drone. Its uniqueness is in the power management system, around which they have IP.</div><div><br></div><div>Strategically, y&#39;all might consider an acquisition of Aerotech then installing the right market-focused C-suite. The current owner has ties to the Arab states and Israel; my POC is well connected to big Army, AFSOC and FLE. These channels combined with Mavrix&#39;s reach could make for a very interesting go to market approach.</div><div><br></div><div>The company is co-located in the same space as Zenith Firearms, in Charlottesville. It could stay there or be relocated to a more convenient location. </div><div><br></div><div>Tech overview:</div><div><span id=\"m_-7931219684639164584m_-3205651473208130304gmail-docs-internal-guid-acb8989a-7fff-d5fc-9ba1-266164347d03\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\"></p><ul><li><span style=\"font-size:10pt;font-family:Arial,sans-serif;color:rgb(0,0,0);background-color:transparent;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-align:baseline\">Uniqueness: power output and efficiency. The Army requirement is to run on a 2kw generator, but this draws only 1.2 kw with a payload. Power mgmt is very hard to do on a tethered drone; this is the core benefit of Zenith and where they have IP. </span></li><li><span style=\"font-size:10pt;font-family:Arial,sans-serif;color:rgb(0,0,0);background-color:transparent;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-align:baseline\">Can do heavy and light antenna on the same drone. </span></li><li><span style=\"background-color:transparent;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;font-size:10pt;font-family:Arial,sans-serif;color:rgb(0,0,0);vertical-align:baseline\">Can comm 20-mi radius encrypted / securely, up to 400 ft. The drone and ground power can go above 400 ft but that&#39;s the FAA limit. </span><span style=\"background-color:transparent;color:rgb(0,0,0);font-family:Arial,sans-serif;font-size:10pt\">Most users need 200-300 ft. </span></li><li><span style=\"font-size:10pt;font-family:Arial,sans-serif;color:rgb(0,0,0);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap\">It is highly stable. Key feedback from users is about how stable and steady it is in the air. </span></li><li>$150k price point.</li></ul><p></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\"><br></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\"><br></p><p style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\">Let&#39;s discuss.</p><p style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\"><br></p><p style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\">Thank you,</p><p style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\">Jen</p><p style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\"><br></p><p style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\"><br></p></span><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:517.609px;vertical-align:-webkit-baseline-middle;font-size:medium;font-family:Arial\"><tbody><tr style=\"margin:0px;padding:0px;border:0px;color:rgb(255,255,255)\"><td style=\"padding:0px;border:0px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:517.609px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:top\"><h2 color=\"#231e4a\" style=\"font-size:18px;line-height:1.38;margin:0px;color:rgb(35,30,74)\"><span>Jennifer</span><span> </span><span>Kay</span></h2><p color=\"#231e4a\" style=\"font-size:14px;line-height:22px;margin:0px;color:rgb(35,30,74)\"><span>Principal</span><span> | </span><span>Deep Tech Go to Market</span></p><p color=\"#231e4a\" style=\"font-size:14px;line-height:22px;margin:0px;color:rgb(35,30,74)\"><span>Offering commercial go to market for dual-use tech</span></p><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:472.609px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td height=\"30\" style=\"padding:0px;border:0px\"></td></tr><tr style=\"margin:0px;padding:0px;border:0px\"><td color=\"#231E4A\" width=\"auto\" height=\"1\" style=\"padding:0px;border-top:0px;border-right:0px;border-bottom:1px solid rgb(35,30,74);border-left:none;width:472.609px;display:block\"></td></tr><tr style=\"margin:0px;padding:0px;border:0px\"><td height=\"30\" style=\"padding:0px;border:0px\"></td></tr></tbody></table><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:472.609px;vertical-align:-webkit-baseline-middle\"><tbody><tr height=\"25\" style=\"margin:0px;padding:0px;border:0px;vertical-align:middle\"><td width=\"30\" style=\"padding:0px;border:0px;vertical-align:middle\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:30px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:bottom\"><span color=\"#231E4A\" width=\"11\" style=\"display:inline-block;background-color:rgb(35,30,74)\"><img src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/phone-icon-2x.png\" color=\"#231E4A\" alt=\"mobilePhone\" width=\"13\" style=\"border-style: none; display: block;\"></span></td></tr></tbody></table></td><td style=\"padding:0px;border:0px;color:rgb(35,30,74)\"><a href=\"tel:615-630-8068\" color=\"#231e4a\" style=\"background-color:rgba(0,0,0,0);color:rgb(35,30,74);font-size:12px\" target=\"_blank\">615-630-8068</a></td></tr><tr height=\"25\" style=\"margin:0px;padding:0px;border:0px;vertical-align:middle\"><td width=\"30\" style=\"padding:0px;border:0px;vertical-align:middle\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:30px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:bottom\"><span color=\"#231E4A\" width=\"11\" style=\"display:inline-block;background-color:rgb(35,30,74)\"><img src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/email-icon-2x.png\" color=\"#231E4A\" alt=\"emailAddress\" width=\"13\" style=\"border-style: none; display: block;\"></span></td></tr></tbody></table></td><td style=\"padding:0px;border:0px\"><a href=\"mailto:Jen@DeepTechGTM.com\" color=\"#231e4a\" style=\"background-color:rgba(0,0,0,0);color:rgb(35,30,74);font-size:12px\" target=\"_blank\">Jen@DeepTechGTM.com</a></td></tr><tr height=\"25\" style=\"margin:0px;padding:0px;border:0px;vertical-align:middle\"><td width=\"30\" style=\"padding:0px;border:0px;vertical-align:middle\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:30px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:bottom\"><span color=\"#231E4A\" width=\"11\" style=\"display:inline-block;background-color:rgb(35,30,74)\"><img src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/link-icon-2x.png\" color=\"#231E4A\" alt=\"website\" width=\"13\" style=\"border-style: none; display: block;\"></span></td></tr></tbody></table></td><td style=\"padding:0px;border:0px\"><a href=\"https://deeptechgtm.com/\" color=\"#231e4a\" style=\"background-color:rgba(0,0,0,0);color:rgb(35,30,74);font-size:12px\" target=\"_blank\">DeepTechGTM.com</a></td></tr></tbody></table></td><td width=\"45\" style=\"padding:0px;border:0px\"><div></div></td></tr></tbody></table></td></tr><tr style=\"margin:0px;padding:0px;border:0px;color:rgb(255,255,255)\"></tr></tbody></table><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:546.609px;vertical-align:-webkit-baseline-middle;font-size:medium;font-family:Arial\"><tbody><tr style=\"margin:0px;padding:0px;border:0px;color:rgb(255,255,255)\"><td style=\"padding:0px;border:0px\"><br></td></tr></tbody></table></div></div></div><br><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">Tony Williams</strong> <span dir=\"auto\">&lt;<a href=\"mailto:tony@zqcus.com\" target=\"_blank\">tony@zqcus.com</a>&gt;</span><br>Date: Wed, Aug 13, 2025 at 4:46 PM<br>Subject: Company Profile<br>To: Jennifer Kay &lt;<a href=\"mailto:jen@deeptechgtm.com\" target=\"_blank\">jen@deeptechgtm.com</a>&gt;<br></div><br><br><div>\r\n\r\n\r\n\r\n\r\n\r\n<div lang=\"EN-US\" style=\"overflow-wrap: break-word;\">\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt\">The latest and greatest.  Thanks for your patience and willingness to help out.<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt\">V/r,<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt\">Tony<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt\"><u></u> <u></u></span></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:black\">Tony Williams</span></b><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:black\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:black\">Chief Operating Officer<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:8pt\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:black\">757-775-5722<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:8pt\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:black\"><img width=\"200\" height=\"64\" style=\"width: 2.0833in; height: 0.6666in;\" id=\"m_-7931219684639164584m_-3205651473208130304m_-6868055633956122728Picture_x0020_5\" src=\"cid:ii_19976b9266c4cff311\" alt=\"A black text on a white background\r\n\r\nDescription automatically generated\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><a href=\"https://zenithaerotech.com/\" title=\"&quot;Original URL:\r\nhttps://zenithaerotech.com/\r\n\r\nClick to follow link.&quot;\" target=\"_blank\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:black;text-decoration:none\"><img border=\"0\" width=\"78\" height=\"51\" style=\"width: 0.8125in; height: 0.5312in;\" id=\"m_-7931219684639164584m_-3205651473208130304m_-6868055633956122728Picture_x0020_4\" src=\"cid:ii_19976b9266c5b006a2\" alt=\"A blue and grey logo\r\n\r\nDescription automatically generated\"></span></a><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:black\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:black\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3pt\"><span style=\"font-family:Calibri,sans-serif;color:rgb(29,29,29)\">ZENITH AEROTECH &amp; ZENITH FIREARMS</span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:black\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3pt\"><span style=\"font-family:Calibri,sans-serif;color:rgb(29,29,29)\">Let&#39;s connect!</span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:black\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><a href=\"https://www.facebook.com/zenithaerotech/\" title=\"&quot;Original URL:\r\nhttps://www.facebook.com/zenithaerotech/\r\n\r\nClick to follow link.&quot;\" target=\"_blank\"><span style=\"font-size:9pt;font-family:Calibri,sans-serif;color:rgb(29,29,29);text-decoration:none\"><img border=\"0\" width=\"23\" height=\"23\" style=\"width: 0.2395in; height: 0.2395in;\" id=\"m_-7931219684639164584m_-3205651473208130304m_-6868055633956122728Picture_x0020_3\" src=\"cid:ii_19976b9266c692e333\" alt=\"signature_375351091\"></span></a><span style=\"font-size:7.5pt;font-family:Calibri,sans-serif;color:rgb(29,29,29)\">   </span><a href=\"https://www.instagram.com/zenithaerotech1/\" title=\"&quot;Original URL:\r\nhttps://www.instagram.com/zenithaerotech1/\r\n\r\nClick to follow link.&quot;\" target=\"_blank\"><span style=\"font-size:9pt;font-family:Calibri,sans-serif;color:rgb(29,29,29);text-decoration:none\"><img border=\"0\" width=\"24\" height=\"24\" style=\"width: 0.25in; height: 0.25in;\" id=\"m_-7931219684639164584m_-3205651473208130304m_-6868055633956122728Picture_x0020_2\" src=\"cid:ii_19976b9266c7745b44\" alt=\"signature_2022594031\"></span></a><span style=\"font-size:7.5pt;font-family:Calibri,sans-serif;color:rgb(29,29,29)\">   </span><a href=\"https://www.linkedin.com/company/zenith-aerotech\" title=\"&quot;Original URL:\r\nhttps://www.linkedin.com/company/zenith-aerotech\r\n\r\nClick to follow link.&quot;\" target=\"_blank\"><span style=\"font-size:9pt;font-family:Calibri,sans-serif;color:rgb(29,29,29);text-decoration:none\"><img border=\"0\" width=\"23\" height=\"23\" style=\"width: 0.2395in; height: 0.2395in;\" id=\"m_-7931219684639164584m_-3205651473208130304m_-6868055633956122728Picture_x0020_1\" src=\"cid:ii_19976b9266c855d355\" alt=\"signature_1431513409\"></span></a><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:black\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3pt\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:black\"> <u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9pt;font-family:Calibri,sans-serif;color:rgb(29,29,29)\">The information transmitted is intended only for the person or entity to which it is addressed and may contain confidential and/or privileged material. If you\r\n are not the intended recipient, please contact the sender immediately and destroy the material in its entirety, whether electronic or hard copy. You are notified that any review, retransmission, dissemination or other use of, or taking of any action in reliance\r\n upon, this information by persons or entities other than the intended recipient is prohibited.</span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:black\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12pt\"><u></u> <u></u></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:12pt\"><u></u> <u></u></span></p>\r\n</div>\r\n</div>\r\n\r\n</div></div><div></div></div>\r\n</div><div></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div><img src=\"https://d2LSMm04.na1.hs-salescrm-engage.com/Cto/2O+23284/d2LSMm04/R5Q8b48CrN56kt9Z2fJcrW1-YtDV3LHg-1W3F6cmh1X0-M3W1Gy2y63LCybZW1Z0qQN25d557W3C80nD22VWWjf1Q2MDY12\" alt=\"\" height=\"1\" width=\"1\" style=\"display: none !important;\"><div></div><div id=\"data-hbsasc-v0-49e31240-e202-42d5-9abd-e5eed1ce60f9\"></div></div>','I\'m not working today in observance of the Jewish holiday but I\'m happy to\r\nconnect you directly with my POC at Zenith, Tony Williams. He is a highly\r\ntrusted friend, mentor, colleague.\r\n\r\n\r\nJennifer Kay\r\n\r\nPrincipal | Deep Tech Go to Market\r\n\r\nOffering commercial go to market for dual-use tech\r\n[image: mobilePhone] 615-630-8068\r\n[image: emailAddress] Jen@DeepTechGTM.com\r\n[image: website] DeepTechGTM.com <https://deeptechgtm.com/>\r\n\r\n\r\n\r\nOn Tue, Sep 23, 2025 at 8:13 AM Rick <rick@mavrix.one> wrote:\r\n\r\n> Let’s discuss.\r\n> I can send an NDA…\r\n> Let me know.\r\n> Thanks!\r\n> Rick\r\n>\r\n>\r\n> Rick Mislan, PhD,\r\n> Founder, CTO\r\n>\r\n> https://mavrix1.com\r\n>\r\n>\r\n> On September 22, 2025 at 1:23:19 PM, Jennifer Kay (jen@deeptechgtm.com)\r\n> wrote:\r\n>\r\n> Hi Rick,\r\n>\r\n> PFA material on a company run by a close friend and colleague: Zenith\r\n> Firearms <https://zenithfirearms.com/> and Zenith Aerotech\r\n> <https://zenithaerotech.com/>.\r\n>\r\n> There are 2 deals here.\r\n>\r\n> 1. They\'re looking for $10-20M to get out from under some financing\r\n> arrangements that are limiting their growth.\r\n>\r\n> 2. Additionally, they\'re interested in M&A of Zenith Aerotech; this is the\r\n> tethered drone company. They have a very strong pipeline for 2026 on the\r\n> drone. Its uniqueness is in the power management system, around which they\r\n> have IP.\r\n>\r\n> Strategically, y\'all might consider an acquisition of Aerotech then\r\n> installing the right market-focused C-suite. The current owner has ties to\r\n> the Arab states and Israel; my POC is well connected to big Army, AFSOC and\r\n> FLE. These channels combined with Mavrix\'s reach could make for a very\r\n> interesting go to market approach.\r\n>\r\n> The company is co-located in the same space as Zenith Firearms, in\r\n> Charlottesville. It could stay there or be relocated to a more convenient\r\n> location.\r\n>\r\n> Tech overview:\r\n>\r\n>\r\n>    - Uniqueness: power output and efficiency. The Army requirement is to\r\n>    run on a 2kw generator, but this draws only 1.2 kw with a payload. Power\r\n>    mgmt is very hard to do on a tethered drone; this is the core benefit of\r\n>    Zenith and where they have IP.\r\n>    - Can do heavy and light antenna on the same drone.\r\n>    - Can comm 20-mi radius encrypted / securely, up to 400 ft. The drone\r\n>    and ground power can go above 400 ft but that\'s the FAA limit. Most\r\n>    users need 200-300 ft.\r\n>    - It is highly stable. Key feedback from users is about how stable and\r\n>    steady it is in the air.\r\n>    - $150k price point.\r\n>\r\n>\r\n>\r\n> Let\'s discuss.\r\n>\r\n>\r\n> Thank you,\r\n>\r\n> Jen\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n> Jennifer Kay\r\n>\r\n> Principal | Deep Tech Go to Market\r\n>\r\n> Offering commercial go to market for dual-use tech\r\n> [image: mobilePhone] 615-630-8068\r\n> [image: emailAddress] Jen@DeepTechGTM.com\r\n> [image: website] DeepTechGTM.com <https://deeptechgtm.com/>\r\n>\r\n>\r\n>\r\n> ---------- Forwarded message ---------\r\n> From: Tony Williams <tony@zqcus.com>\r\n> Date: Wed, Aug 13, 2025 at 4:46 PM\r\n> Subject: Company Profile\r\n> To: Jennifer Kay <jen@deeptechgtm.com>\r\n>\r\n>\r\n> The latest and greatest.  Thanks for your patience and willingness to help\r\n> out.\r\n>\r\n>\r\n>\r\n> V/r,\r\n>\r\n>\r\n>\r\n> Tony\r\n>\r\n>\r\n>\r\n> *Tony Williams*\r\n>\r\n> Chief Operating Officer\r\n>\r\n> 757-775-5722\r\n>\r\n> [image: A black text on a white background Description automatically\r\n> generated]\r\n>\r\n> [image: A blue and grey logo Description automatically generated]\r\n> <https://zenithaerotech.com/>\r\n>\r\n>\r\n>\r\n> ZENITH AEROTECH & ZENITH FIREARMS\r\n>\r\n> Let\'s connect!\r\n>\r\n> [image: signature_375351091] <https://www.facebook.com/zenithaerotech/>   [image:\r\n> signature_2022594031] <https://www.instagram.com/zenithaerotech1/>   [image:\r\n> signature_1431513409] <https://www.linkedin.com/company/zenith-aerotech>\r\n>\r\n>\r\n>\r\n> The information transmitted is intended only for the person or entity to\r\n> which it is addressed and may contain confidential and/or privileged\r\n> material. If you are not the intended recipient, please contact the sender\r\n> immediately and destroy the material in its entirety, whether electronic or\r\n> hard copy. You are notified that any review, retransmission, dissemination\r\n> or other use of, or taking of any action in reliance upon, this information\r\n> by persons or entities other than the intended recipient is prohibited.\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>',0,0,0,0,0,0,'2025-09-23 13:18:22','2025-12-09 19:28:49','2025-12-09 19:28:49','2025-12-09 19:28:49',NULL,NULL,NULL),
(766,4,'<CAEq9qUbV3z7XyUN4RJ2_sxEnfP4U-8wwcRZFczowzDwVfKBKxg@mail.gmail.com>',NULL,NULL,'Grafik: Request for Information','ian@grafik.com','Ian Olsen','<div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>Apologies for the late reply. Thanks for reaching out to Grafik. We&#39;re happy to talk through your branding &amp; campaign needs soup to nuts. We have some openings tomorrow at 10 or 10:30am, or Thursday between 2-5pm ET. Let me know if that works on your end and we can get it on the books.</div><div><br></div><div>Look forward to hearing from you soon.</div><div><br></div><div>Thanks,</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal\"><br><font color=\"#222222\" face=\"arial, sans-serif\"><b>Ian Olsen</b></font><br></p><p style=\"margin:0px 0px 2px;line-height:normal\"><font color=\"#222222\" face=\"arial, sans-serif\"><span>Business Development Manager</span></font><span style=\"color:rgb(34,34,34);font-family:arial,sans-serif\">  •<span>  </span><b>P</b> (</span><font color=\"#222222\" face=\"arial, sans-serif\"><span>703) 249-9771</span></font></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><b style=\"font-family:arial,sans-serif\">Grafik</b><span style=\"font-family:&quot;Helvetica Neue&quot;\">  •  Philadelphia  •  </span><span style=\"font-family:&quot;Helvetica Neue&quot;\">Washington, D.C.</span><br></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><span style=\"font-family:arial,sans-serif\"><b><a href=\"https://grafik.agency/\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">instagram</font></a>   <a href=\"https://linkedin.com/company/grafik\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">linkedin</font></a></font></font><font color=\"#3db3b5\"> </font></b></span></p></div></div></div><img src=\"https://c3chr04.na1.hs-salescrm-engage.com/Cto/F9+23284/c3chr04/R5Q8b47KQW174dQh1kP6pbW24WCQL1N32sHW3z7rSl1Y_5whW3K2yF71GzPvyW1_jPSx1Q3kFdW1WGRFV1Z0NBmf1-_dqx12\" alt=\"\" height=\"1\" width=\"1\" style=\"display: none !important;\"><div></div><div id=\"data-hbsasc-v0-cd3a4c52-d4aa-4b91-a46c-b3d1e802edb1\"></div></div>','Hi Rick,\r\n\r\nApologies for the late reply. Thanks for reaching out to Grafik. We\'re\r\nhappy to talk through your branding & campaign needs soup to nuts. We have\r\nsome openings tomorrow at 10 or 10:30am, or Thursday between 2-5pm ET. Let\r\nme know if that works on your end and we can get it on the books.\r\n\r\nLook forward to hearing from you soon.\r\n\r\nThanks,\r\n\r\n\r\n*Ian Olsen*\r\n\r\nBusiness Development Manager  •  *P* (703) 249-9771\r\n\r\n*Grafik*  •  Philadelphia  •  Washington, D.C.\r\n\r\n*grafik.agency <https://grafik.agency/>   instagram\r\n<https://instagram.com/grafikagency>   linkedin\r\n<https://linkedin.com/company/grafik> *',0,0,0,0,0,0,'2025-09-23 13:30:43','2025-12-09 19:28:49','2025-12-09 19:28:49','2025-12-09 19:28:49',NULL,NULL,NULL),
(767,4,'<799f97396bd0d635c1c9effaf2ca9804@mavrix.one>',NULL,NULL,'Tiffany Griffin Resume','carson@mavrix.one','carson@mavrix.one','Howdy Rick,\r\n\r\nForwarding Tiffany’s resume.  She is looking for a role that utilizes \r\nher MBA.','Howdy Rick,\r\n\r\nForwarding Tiffany’s resume.  She is looking for a role that utilizes \r\nher MBA.',0,0,0,0,0,0,'2025-09-23 15:13:21','2025-12-09 19:28:50','2025-12-09 19:28:50','2025-12-09 19:28:50',NULL,NULL,NULL),
(768,4,'<CAEq9qUb3QFH8wGmC3p7+0+CJu7O5R2i1t3PrmGa2kqyjC2Z5bQ@mail.gmail.com>',NULL,NULL,'Re: Grafik: Request for Information','ian@grafik.com','Ian Olsen','<div dir=\"ltr\"><div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>Next week looks good on our end. We can do Monday 1-3:30pm or Wednesday is mostly open. </div><div><br></div><div>Let me know what works for you.</div><div><br></div><div>Thanks,</div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal\"><br><font color=\"#222222\" face=\"arial, sans-serif\"><b>Ian Olsen</b></font><br></p><p style=\"margin:0px 0px 2px;line-height:normal\"><font color=\"#222222\" face=\"arial, sans-serif\"><span>Business Development Manager</span></font><span style=\"color:rgb(34,34,34);font-family:arial,sans-serif\">  •<span>  </span><b>P</b> (</span><font color=\"#222222\" face=\"arial, sans-serif\"><span>703) 249-9771</span></font></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><b style=\"font-family:arial,sans-serif\">Grafik</b><span style=\"font-family:&quot;Helvetica Neue&quot;\">  •  Philadelphia  •  </span><span style=\"font-family:&quot;Helvetica Neue&quot;\">Washington, D.C.</span><br></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><span style=\"font-family:arial,sans-serif\"><b><a href=\"https://grafik.agency/\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">instagram</font></a>   <a href=\"https://linkedin.com/company/grafik\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">linkedin</font></a></font></font><font color=\"#3db3b5\"> </font></b></span></p></div></div></div><br><div></div></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Sep 23, 2025 at 10:28 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div id=\"m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Hi Ian,</div><div id=\"m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thanks for the response.</div><div id=\"m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">It was quick enough. </div><div id=\"m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">How does next week look?</div><div id=\"m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thanks again,</div><div id=\"m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Rick</div> <br> <div id=\"m_-5563736346807328379bloop_sign_1758637591710331904\">\r\n        \r\n     \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n     \r\n</div> <br><p>On September 23, 2025 at 09:31:55, Ian Olsen (<a href=\"mailto:ian@grafik.com\" target=\"_blank\">ian@grafik.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>Apologies for the late reply. Thanks for reaching out to Grafik. We&#39;re happy to talk through your branding &amp; campaign needs soup to nuts. We have some openings tomorrow at 10 or 10:30am, or Thursday between 2-5pm ET. Let me know if that works on your end and we can get it on the books.</div><div><br></div><div>Look forward to hearing from you soon.</div><div><br></div><div>Thanks,</div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal\"><br><font color=\"#222222\" face=\"arial, sans-serif\"><b>Ian Olsen</b></font><br></p><p style=\"margin:0px 0px 2px;line-height:normal\"><font color=\"#222222\" face=\"arial, sans-serif\"><span>Business Development Manager</span></font><span style=\"color:rgb(34,34,34);font-family:arial,sans-serif\">  •<span>  </span><b>P</b> (</span><font color=\"#222222\" face=\"arial, sans-serif\"><span>703) 249-9771</span></font></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><b style=\"font-family:arial,sans-serif\">Grafik</b><span style=\"font-family:&quot;Helvetica Neue&quot;\">  •  Philadelphia  •  </span><span style=\"font-family:&quot;Helvetica Neue&quot;\">Washington, D.C.</span><br></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><span style=\"font-family:arial,sans-serif\"><b><a href=\"https://grafik.agency/\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">instagram</font></a>   <a href=\"https://linkedin.com/company/grafik\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">linkedin</font></a></font></font><font color=\"#3db3b5\"> </font></b></span></p></div></div></div><div></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div><img src=\"https://c3chr04.na1.hs-salescrm-engage.com/Cto/F9+23284/c3chr04/R5Q8b47KQW174dQh1krQCgW1Q6Bkh1N32bwW22Ypcz3JKB53W3JJMlf1GbL73W24WxTm1XnxxhW3Gn2QN1Z0NBmf1-_dqx12\" alt=\"\" height=\"1\" width=\"1\" style=\"display: none !important;\"><div></div><div id=\"data-hbsasc-v0-c3faf8d7-3cf9-4614-9d98-4bfc08e18b7e\"></div></div>','Hi Rick,\r\n\r\nNext week looks good on our end. We can do Monday 1-3:30pm or Wednesday is\r\nmostly open.\r\n\r\nLet me know what works for you.\r\n\r\nThanks,\r\n\r\n\r\n*Ian Olsen*\r\n\r\nBusiness Development Manager  •  *P* (703) 249-9771\r\n\r\n*Grafik*  •  Philadelphia  •  Washington, D.C.\r\n\r\n*grafik.agency <https://grafik.agency/>   instagram\r\n<https://instagram.com/grafikagency>   linkedin\r\n<https://linkedin.com/company/grafik> *\r\n\r\n\r\nOn Tue, Sep 23, 2025 at 10:28 AM Rick <rick@mavrix.one> wrote:\r\n\r\n> Hi Ian,\r\n> Thanks for the response.\r\n> It was quick enough.\r\n> How does next week look?\r\n> Thanks again,\r\n> Rick\r\n>\r\n> Rick Mislan, PhD\r\n> https://mavrix.one\r\n> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>\r\n> On September 23, 2025 at 09:31:55, Ian Olsen (ian@grafik.com) wrote:\r\n>\r\n> Hi Rick,\r\n>\r\n> Apologies for the late reply. Thanks for reaching out to Grafik. We\'re\r\n> happy to talk through your branding & campaign needs soup to nuts. We have\r\n> some openings tomorrow at 10 or 10:30am, or Thursday between 2-5pm ET. Let\r\n> me know if that works on your end and we can get it on the books.\r\n>\r\n> Look forward to hearing from you soon.\r\n>\r\n> Thanks,\r\n>\r\n>\r\n> *Ian Olsen*\r\n>\r\n> Business Development Manager  •  *P* (703) 249-9771\r\n>\r\n> *Grafik*  •  Philadelphia  •  Washington, D.C.\r\n>\r\n> *grafik.agency <https://grafik.agency/>   instagram\r\n> <https://instagram.com/grafikagency>   linkedin\r\n> <https://linkedin.com/company/grafik> *\r\n>\r\n>',0,0,0,0,0,0,'2025-09-23 15:41:32','2025-12-09 19:28:50','2025-12-09 19:28:50','2025-12-09 19:28:50',NULL,NULL,NULL),
(769,4,'<0100019977414fb1-b14bbb98-65dd-4834-9306-2b9e887b7488-000000@email.amazonses.com>',NULL,NULL,'Start planning for Prime Big Deal Days with business-only savings','no-reply@business.amazon.com','Amazon Business','<!doctype html>\r\n<html lang=\"en-US\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\">\r\n <head>\r\n  <title>Start planning for Prime Big Deal Days with business-only savings</title><!--[if !mso]><!-- -->\r\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><!--<![endif]-->\r\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\r\n  <style type=\"text/css\">#outlook a { padding:0; }           body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block; }</style><!--[if mso]>                    <xml>                      <o:OfficeDocumentSettings xmlns:o=\"urn:schemas-microsoft-com:office:office\">                    <o:AllowPNG/>                          <o:PixelsPerInch>96</o:PixelsPerInch>                      </o:OfficeDocumentSettings>                   <w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\">               <w:DontUseAdvancedTypographyReadingMail/>             </w:WordDocument>                  </xml>                        <style type=\"text/css\">             table { border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt; }             .mj-outlook-group-fix { width:100% !important; }           </style>                  <![endif]--><!--[if !mso]><!-->\r\n  <link href=\"https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <link href=\"https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <style type=\"text/css\">@import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);</style><!--<![endif]-->\r\n  <style type=\"text/css\">@media only screen and (min-width:641px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }</style>\r\n  <style type=\"text/css\">.links-232F3E-underline-bold a { color: #232F3E; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .mso-button-dark-mode a {background: transparent !important;} .links-161D26 a { color: #161D26; text-decoration: none; } .links-161D26-underline a { color: #161D26; text-decoration: underline; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:641px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-165px { max-width: 165px !important} .padding-32px-40px-20px-40px { padding: 32px 40px 20px 40px !important} .font-size-36px { font-size: 36px !important} .max-width-640px { max-width: 640px !important} .padding-0px-40px-0px-40px { padding: 0px 40px 0px 40px !important} .padding-24px-40px-0px-40px { padding: 24px 40px 0px 40px !important} .padding-20px-40px-0px-40px { padding: 20px 40px 0px 40px !important} .font-size-18px { font-size: 18px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .font-size-20px { font-size: 20px !important} .padding-20px-40px-32px-40px { padding: 20px 40px 32px 40px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }</style>\r\n  <style type=\"text/css\">ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 641px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}</style><!--[if mso]>             <style>                 .hide-on-mobile {display:block !important}             </style>         <![endif]--><!--[if mso]>                 <style>                              .mso-font-size-36px { font-size: 36px !important; } .mso-font-size-18px { font-size: 18px !important; } .mso-font-size-20px { font-size: 20px !important; }                 </style>             <![endif]-->\r\n  <style>[class~=\"x_body\"] { width: 99.9% }               @supports(--css:variables) {                         td[style*=\"border-radius\"] { -webkit-filter: drop-shadow(0 0 1px transparent); }             }</style>\r\n </head>\r\n <body style=\"word-spacing:normal;background-color:#FFFFFF;\" class=\"body\" id=\"body\">\r\n  <div>\r\n   <p><img alt=\"\" src=\"http://elinks.business.amazon.com/CI0/0100019977414fb1-b14bbb98-65dd-4834-9306-2b9e887b7488-000000/2uBu8LzElc0P3weFzQIAdyGu_-Ug130qgXL0RkmvkiI=423\" style=\"display: none; width: 1px; height: 1px;\">\r\n</p>\r\n  </div><!--[if !mso 9]><!-->\r\n  <div id=\"emailPreHeader\" style=\"display: none;\">\r\n   Prepare early and save on business essentials\r\n  </div>\r\n  <div style=\"display: none;\">\r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  </div><!--<![endif]-->\r\n  <div style=\"background-color:#FFFFFF;background-position:center center;background-size:auto;background-repeat:repeat;\" id=\"main\">\r\n   <!--[if mso]>\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><![endif]--><!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:16px 16px 14px 16px;text-align:center;vertical-align:top;mso-padding-alt:14px 0px 14px 40px;\" class=\"block-grid padding-14px-0px-14px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:600px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n             <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:middle;width:300px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"padding-0px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 0px 0px;word-break:break-word;mso-padding-alt:0px 0px 0px 0px;text-align:left;\">\r\n                  <div style=\"margin:0 auto 0 0;\" class=\"max-width-165px\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com/1/0100019977414fb1-b14bbb98-65dd-4834-9306-2b9e887b7488-000000/KurHDPFxuepE3W7w9dVajfADmVnJvSc9wzGCeu0LsF4=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business\" height=\"auto\" width=\"165\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-2color2x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:middle;width:300px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                  <div style=\"line-height:0px;height:0px;mso-line-height-alt:0px;\">\r\n                   &nbsp;\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:32px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:32px 40px 20px 40px;\" class=\"block-grid padding-32px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                  <div class=\"links-232F3E-underline-bold\">\r\n                   <div style=\"font-family:\'Ember Modern Display\', Arial, sans-serif;font-size:28px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:2.688em;color:#161D26;\" class=\"mso-font-size-36px font-size-36px\">\r\n                    <p style=\"margin: 0;\">Shop new business-only savings</p>\r\n                   </div>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\">\r\n                  <div style=\"margin:0 auto;\" class=\"max-width-640px\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Freturn_to=%2Fab%2Fbusiness-discounts%26ref_=b2b_sow_e_us_bsg_pbdd_1/1/0100019977414fb1-b14bbb98-65dd-4834-9306-2b9e887b7488-000000/hqCWFBWpp12kpDRUvTlUXbYHWg4aWWPx2U6WxZrFTvc=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Business Savings Guide\" height=\"auto\" width=\"640\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/Images/EmailHeaders-25/Email-Hero-Wide-Office-5.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;mso-padding-alt:0px 0px 0px 0px;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                 <div style=\"line-height:12px;height:12px;mso-line-height-alt:12px;\">\r\n                  &nbsp;\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:0px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:0px 40px 0px 40px;\" class=\"block-grid padding-0px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                  <div class=\"links-007185-bold\">\r\n                   <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:normal;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.375em;color:#222D3A;\">\r\n                    <p style=\"margin: 0 0 0px 0;\">As an Amazon Business customer, explore our Business Savings Guide, packed with thousands of must-have essentials with business-only pricing.</p>\r\n                   </div>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:24px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:24px 40px 0px 40px;\" class=\"block-grid padding-24px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td valign=\"middle\" class=\"button-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                  <div>\r\n                   <!--[if mso]>\r\n<table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\">\r\n<tr>\r\n<td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Freturn_to=%2Fab%2Fbusiness-discounts%26ref_=b2b_sow_e_us_bsg_pbdd_1/1/0100019977414fb1-b14bbb98-65dd-4834-9306-2b9e887b7488-000000/hqCWFBWpp12kpDRUvTlUXbYHWg4aWWPx2U6WxZrFTvc=423\" fillcolor=\"#FFD814\" arcsize=\"58%\" style=\"v-text-anchor:middle;width:197.25pt;height:32.25pt;\" stroke=\"f\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Freturn_to=%2Fab%2Fbusiness-discounts%26ref_=b2b_sow_e_us_bsg_pbdd_1/2/0100019977414fb1-b14bbb98-65dd-4834-9306-2b9e887b7488-000000/UMK0SQ_pxqznvJVwE-7fy65XoRxbLvkL9hbzN4gXwRk=423\" style=\"display: inline-block; background: #FFD814; color: #161D26; font-family: \'Amber Ember\', Arial, sans-serif; font-size: 16px; font-weight: normal; line-height: 1.2; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 12px 24px 12px 24px; mso-padding-alt: 0px; border-radius: 25px; mso-border-alt: none; box-sizing: border-box;\" target=\"_blank\" width=\"263\">Explore business-only savings </a><!--[if mso]></center></a:textbox></a:roundrect>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;mso-padding-alt:0px 0px 0px 0px;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                 <div style=\"line-height:30px;height:30px;mso-line-height-alt:30px;\">\r\n                  &nbsp;\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:20px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 0px 40px;\" class=\"block-grid padding-20px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                  <div class=\"links-161D26\">\r\n                   <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.375em;color:#161D26;\" class=\"mso-font-size-18px font-size-18px\">\r\n                    <p style=\"margin: 0;\">Shop by aisle</p>\r\n                   </div>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\">\r\n             <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"line-height:0;font-size:0;direction:ltr;\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n                 <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n                  <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:280px;\" ><![endif]-->\r\n                  <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:50%;\">\r\n                   <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                    <tbody>\r\n                     <tr>\r\n                      <td style=\"border-radius:0px;vertical-align:top;padding:0px 8px 12px 0px;mso-padding-alt:0px 8px 12px 0px;\">\r\n                       <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                        <tbody>\r\n                         <tr>\r\n                          <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:left;\">\r\n                           <div style=\"margin:0 auto 0 0;max-width:272px;\">\r\n                            <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Freturn_to=%2Fab%2Fbusiness-discounts%3Fcategories=2%26ref_=b2b_sow_e_us_bsg_pbdd_1/1/0100019977414fb1-b14bbb98-65dd-4834-9306-2b9e887b7488-000000/rfx7egLOxAzAnVYhkrihUOZPz9aPb8f9kvIYWuyR-yE=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Logitech\" height=\"auto\" width=\"272\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/HVE/PBDD25/Email/US-EN_AB_PBDD25_P1_185_Email_Small_686x444.jpg\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                           </div></td>\r\n                         </tr>\r\n                         <tr>\r\n                          <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                           <div class=\"links-161D26\">\r\n                            <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                             <p style=\"margin: 0;\">Laptops and accessories</p>\r\n                            </div>\r\n                           </div></td>\r\n                         </tr>\r\n                        </tbody>\r\n                       </table></td>\r\n                     </tr>\r\n                    </tbody>\r\n                   </table>\r\n                  </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:280px;\" ><![endif]-->\r\n                  <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:50%;\">\r\n                   <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                    <tbody>\r\n                     <tr>\r\n                      <td style=\"border-radius:3px;vertical-align:top;padding:0px 0px 12px 8px;mso-padding-alt:0px 0px 12px 8px;\">\r\n                       <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                        <tbody>\r\n                         <tr>\r\n                          <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:left;\">\r\n                           <div style=\"margin:0 auto 0 0;max-width:272px;\">\r\n                            <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Freturn_to=%2Fab%2Fbusiness-discounts%3Fcategories=1%26ref_=b2b_sow_e_us_bsg_pbdd_1/1/0100019977414fb1-b14bbb98-65dd-4834-9306-2b9e887b7488-000000/lJtADwHUJ4K1uuQsG8wEoUWZbMOFgZ2btZgLxAxLjRA=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Block\" height=\"auto\" width=\"272\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/HVE/PBDD25/Email/US-EN_AB_PBDD25_P1_189_Email_Small_686x444.jpg\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                           </div></td>\r\n                         </tr>\r\n                         <tr>\r\n                          <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                           <div class=\"links-161D26\">\r\n                            <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                             <p style=\"margin: 0;\">Coffee and appliances</p>\r\n                            </div>\r\n                           </div></td>\r\n                         </tr>\r\n                        </tbody>\r\n                       </table></td>\r\n                     </tr>\r\n                    </tbody>\r\n                   </table>\r\n                  </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                 </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n               </tr>\r\n              </tbody>\r\n             </table></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n              <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:280px;\" ><![endif]-->\r\n              <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:50%;\">\r\n               <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                <tbody>\r\n                 <tr>\r\n                  <td style=\"border-radius:0px;vertical-align:top;padding:0px 8px 12px 0px;mso-padding-alt:0px 8px 12px 0px;\">\r\n                   <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                    <tbody>\r\n                     <tr>\r\n                      <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:left;\">\r\n                       <div style=\"margin:0 auto 0 0;max-width:272px;\">\r\n                        <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Freturn_to=%2Fab%2Fbusiness-discounts%3Fcategories=5%26ref_=b2b_sow_e_us_bsg_pbdd_1/1/0100019977414fb1-b14bbb98-65dd-4834-9306-2b9e887b7488-000000/2FzEV1-vZ76pBC86XlQHOTFDvPiGMg7kEUhrlfsZJIw=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Notebooks and pens\" height=\"auto\" width=\"272\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/HVE/PBDD25/Email/US-ES_AB_PBDD25_P1_187_Email_Small_686x444.jpg\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                       </div></td>\r\n                     </tr>\r\n                     <tr>\r\n                      <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                       <div class=\"links-161D26\">\r\n                        <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                         <p style=\"margin: 0;\">Notebooks and pens</p>\r\n                        </div>\r\n                       </div></td>\r\n                     </tr>\r\n                    </tbody>\r\n                   </table></td>\r\n                 </tr>\r\n                </tbody>\r\n               </table>\r\n              </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:280px;\" ><![endif]-->\r\n              <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:50%;\">\r\n               <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                <tbody>\r\n                 <tr>\r\n                  <td style=\"border-radius:0px;vertical-align:top;padding:0px 0px 12px 8px;mso-padding-alt:0px 0px 12px 8px;\">\r\n                   <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                    <tbody>\r\n                     <tr>\r\n                      <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:left;\">\r\n                       <div style=\"margin:0 auto 0 0;max-width:272px;\">\r\n                        <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Freturn_to=%2Fab%2Fbusiness-discounts%3Fcategories=4%26ref_=b2b_sow_e_us_bsg_pbdd_1/1/0100019977414fb1-b14bbb98-65dd-4834-9306-2b9e887b7488-000000/Ivvqupty6gQtg-XyvWOWvLuo06xOnsQJz5Xvpsv1hlE=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Lights and electrical\" height=\"auto\" width=\"272\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/HVE/PBDD25/Email/US-EN_AB_PBDD25_P3_333_Email_Small_686x444.jpg\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                       </div></td>\r\n                     </tr>\r\n                     <tr>\r\n                      <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                       <div class=\"links-161D26\">\r\n                        <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                         <p style=\"margin: 0;\">Lights and electrical</p>\r\n                        </div>\r\n                       </div></td>\r\n                     </tr>\r\n                    </tbody>\r\n                   </table></td>\r\n                 </tr>\r\n                </tbody>\r\n               </table>\r\n              </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:20px 16px 32px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 32px 40px;\" class=\"block-grid padding-20px-40px-32px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td valign=\"middle\" class=\"button-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                  <div>\r\n                   <!--[if mso]>\r\n<table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\">\r\n<tr>\r\n<td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Freturn_to=%2Fab%2Fbusiness-discounts%26ref_=b2b_sow_e_us_bsg_pbdd_1/2/0100019977414fb1-b14bbb98-65dd-4834-9306-2b9e887b7488-000000/UMK0SQ_pxqznvJVwE-7fy65XoRxbLvkL9hbzN4gXwRk=423\" fillcolor=\"#FFFFFF\" arcsize=\"18%\" style=\"v-text-anchor:middle;width:185.25pt;height:33.75pt;\" strokecolor=\"#D5D9D9\" strokeweight=\"0.75pt\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Freturn_to=%2Fab%2Fbusiness-discounts%26ref_=b2b_sow_e_us_bsg_pbdd_1/3/0100019977414fb1-b14bbb98-65dd-4834-9306-2b9e887b7488-000000/Vqxqg_LASGx9zeT8zzfk8uCysIBp8KvkwPaGK2g3vWQ=423\" style=\"display: inline-block; background: #FFFFFF; color: #161D26; font-family: \'Amber Ember\', Arial, sans-serif; font-size: 16px; font-weight: normal; line-height: 1.2; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 12px 16px 12px 16px; mso-padding-alt: 0px; border-radius: 8px; border-left: 1px solid #D5D9D9; border-right: 1px solid #D5D9D9; border-top: 1px solid #D5D9D9; border-bottom: 1px solid #D5D9D9; mso-border-alt: none; box-sizing: border-box;\" target=\"_blank\" width=\"248\">Explore business-only savings </a><!--[if mso]></center></a:textbox></a:roundrect>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 0px 40px;\" class=\"block-grid padding-20px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-161D26\">\r\n                  <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.375em;color:#161D26;\" class=\"mso-font-size-18px font-size-18px\">\r\n                   <p style=\"margin: 0;\">More ways to save</p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\">\r\n             <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"line-height:0;font-size:0;direction:ltr;\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n                 <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n                  <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:280px;\" ><![endif]-->\r\n                  <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:50%;\">\r\n                   <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                    <tbody>\r\n                     <tr>\r\n                      <td style=\"border-radius:0px;vertical-align:top;padding:0px 8px 12px 0px;mso-padding-alt:0px 8px 12px 0px;\">\r\n                       <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                        <tbody>\r\n                         <tr>\r\n                          <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:left;\">\r\n                           <div style=\"margin:0 auto 0 0;max-width:272px;\">\r\n                            <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Freturn_to=%2Fl%2F19633587011%26ref_=b2b_sow_e_us_bsg_pbdd_1/1/0100019977414fb1-b14bbb98-65dd-4834-9306-2b9e887b7488-000000/QLV3neb_rqfLHcwYi6N3XSpcLAt5MJ54_ztOel5ZDpg=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Classroom Supplies\" height=\"auto\" width=\"272\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/HVE/PBDD25/Email/US-EN_AB_PBDD25_P3_335_Email_Small_686x444.jpg\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                           </div></td>\r\n                         </tr>\r\n                         <tr>\r\n                          <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                           <div class=\"links-161D26\">\r\n                            <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                             <p style=\"margin: 0;\">Quantity Discounts</p>\r\n                            </div>\r\n                           </div></td>\r\n                         </tr>\r\n                         <tr>\r\n                          <td class=\"text-container\" style=\"font-size:0px;padding:5px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                           <div class=\"links-007185-bold\">\r\n                            <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.188em;color:#222D3A;\">\r\n                             <p style=\"margin: 0;\">Explore volume discounts that give you the lowest price per unit.</p>\r\n                            </div>\r\n                           </div></td>\r\n                         </tr>\r\n                        </tbody>\r\n                       </table></td>\r\n                     </tr>\r\n                    </tbody>\r\n                   </table>\r\n                  </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:280px;\" ><![endif]-->\r\n                  <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:50%;\">\r\n                   <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                    <tbody>\r\n                     <tr>\r\n                      <td style=\"border-radius:3px;vertical-align:top;padding:0px 0px 12px 8px;mso-padding-alt:0px 0px 12px 8px;\">\r\n                       <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                        <tbody>\r\n                         <tr>\r\n                          <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:left;\">\r\n                           <div style=\"margin:0 auto 0 0;max-width:272px;\">\r\n                            <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Freturn_to=%2Fl%2F21482319011%26ref_=b2b_sow_e_us_bsg_pbdd_1/1/0100019977414fb1-b14bbb98-65dd-4834-9306-2b9e887b7488-000000/DExABzeGaiIh4d2Vf2yiLQTZcAmm1qnWr9WR7KAUBJg=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Books\" height=\"auto\" width=\"272\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/HVE/PBDD25/Email/US-ES_AB_PBDD25_P1_179_Email_Small_686x444.jpg\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                           </div></td>\r\n                         </tr>\r\n                         <tr>\r\n                          <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                           <div class=\"links-161D26\">\r\n                            <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                             <p style=\"margin: 0;\">Business Bulk Essentials</p>\r\n                            </div>\r\n                           </div></td>\r\n                         </tr>\r\n                         <tr>\r\n                          <td class=\"text-container\" style=\"font-size:0px;padding:5px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                           <div class=\"links-007185-bold\">\r\n                            <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.188em;color:#161D26;\">\r\n                             <p style=\"margin: 0;\">Maximize savings and minimize reorders with bulk purchase options.</p>\r\n                            </div>\r\n                           </div></td>\r\n                         </tr>\r\n                        </tbody>\r\n                       </table></td>\r\n                     </tr>\r\n                    </tbody>\r\n                   </table>\r\n                  </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                 </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n               </tr>\r\n              </tbody>\r\n             </table></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F7F7F7;background-color:#F7F7F7;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F7F7F7;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><!--[if !mso]><!-- --><p style=\"border-top:solid 1px #D5D9D9;font-size:1px;margin:0 auto;width:100%;text-align:center;\"></p><!--<![endif]--><!--Divider--><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-top:solid 1px #D5D9D9;font-size:1px;margin:0 auto;width:640px;text-align:center;\" role=\"presentation\" width=\"640px\" >\r\n<tr>\r\n<td style=\"height:0;line-height:0;\"> &nbsp; </td>\r\n</tr>\r\n</table><![endif]--></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F5F3EF;background-color:#F5F3EF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F5F3EF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-161D26-underline\">\r\n                  <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#222D3A;\">\r\n                   <p style=\"margin: 0;\">Please note that product prices and availability are subject to change. Prices and availability were accurate at the time this email was sent; however, they may differ from those you see when you visit Amazon.com.</p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#161D26;background-color:#161D26;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#161D26;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\">\r\n            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n             <tbody>\r\n              <tr>\r\n               <td style=\"line-height:0;font-size:0;direction:rtl;\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:252px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-45 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-align-right social-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\"><!--[if mso | IE]>\r\n<table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" >\r\n<tr>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.facebook.com%2FAmazonBusiness%2F/1/0100019977414fb1-b14bbb98-65dd-4834-9306-2b9e887b7488-000000/avgU4gJPQnCIER-E6W8QGudW_Dzxr-nXs0b00BpfxhM=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Facebook\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Facebook-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Ftwitter.com%2FAmazonBusiness/1/0100019977414fb1-b14bbb98-65dd-4834-9306-2b9e887b7488-000000/sxXCPmbUq16j-L2y_1rYEKjKaeggSNBSj7EvH8rpZto=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Twitter\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Twitter-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.linkedin.com%2Fcompany%2Famazon-business%2F/1/0100019977414fb1-b14bbb98-65dd-4834-9306-2b9e887b7488-000000/ifhqZxUAGtS99hMj_7FcX0tn7mungK4Ck9LHrTkVU40=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Linkedin\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-LinkedIn-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"padding-10px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 20px 0px;word-break:break-word;mso-padding-alt:10px 0px 0px 0px;text-align:right;\">\r\n                     <div style=\"margin:0 auto 0 0;max-width:163px;\" class=\"margin-0-0-0-auto\">\r\n                      <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2F%3Fref_=b2b_sow_e_us_bsg_pbdd_1/1/0100019977414fb1-b14bbb98-65dd-4834-9306-2b9e887b7488-000000/yQgpPE_Vxca-Isv9L-puqyk_58J2yU9dVt4hjIFlDa8=423\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business logo\" height=\"auto\" width=\"163\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-white2x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:308px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-55 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Fen%2Fcontact-us/1/0100019977414fb1-b14bbb98-65dd-4834-9306-2b9e887b7488-000000/ANkkJYh902kIdL4SvYwWgnt1L77-Jn95Y6PdGSyfiP8=423\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">Contact us</a> | <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fab%2Fmanage%2Faccount%2F/1/0100019977414fb1-b14bbb98-65dd-4834-9306-2b9e887b7488-000000/I4O39H6Tz2OxSkNZNt3NjOvNqyNB7ufnW-Gj1e2zCtE=423\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">Manage account</a></p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\">If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Femail-preferences%2Fep%2FM6ylwuWZ*dDoUmANIw84x%2BCd3%2BAAIiem*43be%2BKnMW0w1j8Qo01PJUY6Ew==%2F9781298589%2FhsjCHt3q5RyDv6HxgnUJadWBLvhLaSYG%2BqCMHwWvful*fv9yHsdxPwISz7Ipax9EpGHgDyxgiKvVbaxZITyeTB38kZQj9RrO64kDmFWDx03FLDlKg0oixvJ4t8dptvoXpT1aHIp5F9ks6H36*IvaqIr2IiO%2B5wC59hVmLoKwLjpfnMc60ZhTHZqAyj5JSrIKX89xdDaoJzh*HIGFi1GRsDUAohM*1%2BpliDWLKU8Cj2FQi5CL3mKTPEAMCRUNcwFR5rA4hpkZBFyPqzok7iNBfm%2B3svxM1GFVudevWrMPG2DsZAiSF1lCWbjCJsQJf5Ie3IypV5iKFHunf6zDxJkqw9jRKhsQ7JOH%2BR5qkNsiIDg6V8kYa2A=%2FYeTswGGWvqtFGJKP%2B%2B86XZdoqoBeNvDYH33vfCbh3uqb/1/0100019977414fb1-b14bbb98-65dd-4834-9306-2b9e887b7488-000000/FK6w8KQ8iFmQRP3J64px95frgTIJUY244-sq3LPWYuE=423\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">email preferences</a>.</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 30px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\">© 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210</p>\r\n                       <p style=\"margin: 0;\">&nbsp;</p>\r\n                       <p style=\"margin: 0;\">Reference: 9781298589</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n              </tr>\r\n             </tbody>\r\n            </table></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--><!--[if mso]>\r\n</table><![endif]-->\r\n  </div>\r\n </body>\r\n</html>\r\n','\r\n\r\n \r\n  Start planning for Prime Big Deal Days with business-only savings\r\n  \r\n  \r\n  \r\n  #outlook a { padding:0; }           body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block; }\r\n  \r\n  \r\n  @import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);\r\n  @media only screen and (min-width:641px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }\r\n  .links-232F3E-underline-bold a { color: #232F3E; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .mso-button-dark-mode a {background: transparent !important;} .links-161D26 a { color: #161D26; text-decoration: none; } .links-161D26-underline a { color: #161D26; text-decoration: underline; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:641px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-165px { max-width: 165px !important} .padding-32px-40px-20px-40px { padding: 32px 40px 20px 40px !important} .font-size-36px { font-size: 36px !important} .max-width-640px { max-width: 640px !important} .padding-0px-40px-0px-40px { padding: 0px 40px 0px 40px !important} .padding-24px-40px-0px-40px { padding: 24px 40px 0px 40px !important} .padding-20px-40px-0px-40px { padding: 20px 40px 0px 40px !important} .font-size-18px { font-size: 18px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .font-size-20px { font-size: 20px !important} .padding-20px-40px-32px-40px { padding: 20px 40px 32px 40px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }\r\n  ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 641px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}\r\n  [class~=\"x_body\"] { width: 99.9% }               @supports(--css:variables) {                         td[style*=\"border-radius\"] { -webkit-filter: drop-shadow(0 0 1px transparent); }             }\r\n \r\n \r\n  \r\n   \r\n\r\n  \r\n  \r\n   Prepare early and save on business essentials\r\n  \r\n  \r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  \r\n  \r\n   \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   &nbsp;\r\n                  \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    Shop new business-only savings\r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  &nbsp;\r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    As an Amazon Business customer, explore our Business Savings Guide, packed with thousands of must-have essentials with business-only pricing.\r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                    Explore business-only savings \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  &nbsp;\r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    Shop by aisle\r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                           \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             Laptops and accessories\r\n                            \r\n                           \r\n                         \r\n                        \r\n                       \r\n                     \r\n                    \r\n                   \r\n                  \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                           \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             Coffee and appliances\r\n                            \r\n                           \r\n                         \r\n                        \r\n                       \r\n                     \r\n                    \r\n                   \r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                       \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         Notebooks and pens\r\n                        \r\n                       \r\n                     \r\n                    \r\n                   \r\n                 \r\n                \r\n               \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                       \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         Lights and electrical\r\n                        \r\n                       \r\n                     \r\n                    \r\n                   \r\n                 \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                    Explore business-only savings \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   More ways to save\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                           \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             Quantity Discounts\r\n                            \r\n                           \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             Explore volume discounts that give you the lowest price per unit.\r\n                            \r\n                           \r\n                         \r\n                        \r\n                       \r\n                     \r\n                    \r\n                   \r\n                  \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                           \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             Business Bulk Essentials\r\n                            \r\n                           \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             Maximize savings and minimize reorders with bulk purchase options.\r\n                            \r\n                           \r\n                         \r\n                        \r\n                       \r\n                     \r\n                    \r\n                   \r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   Please note that product prices and availability are subject to change. Prices and availability were accurate at the time this email was sent; however, they may differ from those you see when you visit Amazon.com.\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       Contact us | Manage account\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your email preferences.\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       © 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210\r\n                       &nbsp;\r\n                       Reference: 9781298589\r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n   \r\n  \r\n \r\n\r\n',0,0,0,0,0,0,'2025-09-23 15:46:33','2025-12-09 19:28:50','2025-12-09 19:28:50','2025-12-09 19:28:50',NULL,NULL,NULL),
(770,4,'<366933348.942624.1758674916000@lor1-app85306.prod.linkedin.com>',NULL,NULL,'=?UTF-8?Q?=F0=9F=92=AC_Mavrix,_add_Bob_T._-_Chief_Executive_Officer?=','messages-noreply@linkedin.com','LinkedIn','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n              @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n            </style> <style>\r\n            @media (max-width: 480px) { .inline-button, .inline-button table { display: none !important; }\r\n            .full-width-button, .full-width-button table { display: table !important; } }\r\n          </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n            \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n            \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> <script type=\"application/ld+json\">\r\n    { \"@context\": \"http://schema.org\", \"@type\": \"EmailMessage\", \"potentialAction\": { \"@type\": \"ViewAction\", \"url\": \"https://www.linkedin.com/comm/mynetwork/send-invite/bobtrinh/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midSig=2FHYfChPAggrY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A3171303-null-poh2nf%7Emfx9mv77%7Ewq-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A3171303&amp;_sig=36Rh7PYzgggrY1\",\r\n    \"name\": \"Connect\" }, \"description\": \"Connect with Bob\", \"publisher\": { \"@type\": \"Organization\", \"name\":\r\n    \"LinkedIn\", \"url\": \"https://www.linkedin.com/\" } }\r\n  </script> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">Chief Executive Officer at The Villages Health</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-left: auto; margin-right: auto; margin-top: 0px; margin-bottom: 0px; width: 512px; max-width: 512px; padding: 0px;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"bg-color-background-container \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2FHYfChPAggrY1&amp;trk=eml-email_pymk_02-header-0-home_glimmer_static_badging_with_count&amp;trkEmail=eml-email_pymk_02-header-0-home_glimmer_static_badging_with_count-null-poh2nf~mfx9mv77~wq-null-null&amp;eid=poh2nf-mfx9mv77-wq&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjI4OGNhZDk0MDljYWE4YjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNWNmZmI1MTlkZWZhMTM3N2JlNmM0ZTVjZTdhMDNiZGY5NjM0MjBlNTQ1NGNmYTAsMSwx\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img class=\"h-[37px] w-[101px]\" alt=\"LinkedIn\" src=\"https://static.licdn.com/aero-v1/sc/h/2fp5x7ci191mxbdy1eynscn59\" data-test-header-static-badging-img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 37px; width: 101px;\" width=\"101\" height=\"37\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" data-test-header-notification-badges style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/messaging/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2FHYfChPAggrY1&amp;trk=eml-email_pymk_02-header-0-messaging_glimmer&amp;trkEmail=eml-email_pymk_02-header-0-messaging_glimmer-null-poh2nf~mfx9mv77~wq-null-null&amp;eid=poh2nf-mfx9mv77-wq&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjI4OGNhZDk0MDljYWE4YjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNWNmZmI1MTlkZWZhMTM3N2JlNmM0ZTVjZTdhMDNiZGY5NjM0MjBlNTQ1NGNmYTAsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Messaging icon\" src=\"https://static.licdn.com/aero-v1/sc/h/ekkp8yi9j4xx65umpdz3rdmbp\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2FHYfChPAggrY1&amp;trk=eml-email_pymk_02-header-0-my_network_glimmer&amp;trkEmail=eml-email_pymk_02-header-0-my_network_glimmer-null-poh2nf~mfx9mv77~wq-null-null&amp;eid=poh2nf-mfx9mv77-wq&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjI4OGNhZDk0MDljYWE4YjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNWNmZmI1MTlkZWZhMTM3N2JlNmM0ZTVjZTdhMDNiZGY5NjM0MjBlNTQ1NGNmYTAsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Mynetwork icon\" src=\"https://static.licdn.com/aero-v1/sc/h/4yxfb6j5ycpjfjgehfqgmdx9w\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/notifications/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2FHYfChPAggrY1&amp;trk=eml-email_pymk_02-header-0-notifications_glimmer&amp;trkEmail=eml-email_pymk_02-header-0-notifications_glimmer-null-poh2nf~mfx9mv77~wq-null-null&amp;eid=poh2nf-mfx9mv77-wq&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjI4OGNhZDk0MDljYWE4YjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNWNmZmI1MTlkZWZhMTM3N2JlNmM0ZTVjZTdhMDNiZGY5NjM0MjBlNTQ1NGNmYTAsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Notifications icon\" src=\"https://static.licdn.com/aero-v1/sc/h/eh1e9j5bszh6p379hn269p3ps\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"px-0 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 0px; padding-right: 0px; padding-bottom: 24px;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"pymk-hero-banner\"> <td class=\"px-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"px-3 py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px; padding-left: 24px; padding-right: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/in/bobtrinh?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2FHYfChPAggrY1&amp;trk=eml-email_pymk_02-pymk_hero-0-profile_name_link&amp;trkEmail=eml-email_pymk_02-pymk_hero-0-profile_name_link-null-poh2nf~mfx9mv77~wq-null-null&amp;eid=poh2nf-mfx9mv77-wq&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjI4OGNhZDk0MDljYWE4YjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNWNmZmI1MTlkZWZhMTM3N2JlNmM0ZTVjZTdhMDNiZGY5NjM0MjBlNTQ1NGNmYTAsMSwx\" target=\"_blank\" class=\"text-system-gray-90\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #282828;\"> <h2 class=\"text-lg font-semibold leading-regular\" data-test-id=\"pymk-hero_header\" style=\"margin: 0; font-size: 20px; font-weight: 600; line-height: 1.25;\"> Do you know Bob? </h2> </a> </td> </tr> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <h4 class=\"text-sm text-system-gray-90 leading-regular\" data-test-id=\"pymk-hero_subheader\" style=\"margin: 0; font-weight: 500; font-size: 14px; line-height: 1.25; color: #282828;\"> Request to connect with members you know and trust </h4> </td> </tr> <tr> <td class=\"pt-[10px]\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 10px;\"> <a href=\"https://www.linkedin.com/comm/in/bobtrinh?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2FHYfChPAggrY1&amp;trk=eml-email_pymk_02-pymk_hero-0-profile_image&amp;trkEmail=eml-email_pymk_02-pymk_hero-0-profile_image-null-poh2nf~mfx9mv77~wq-null-null&amp;eid=poh2nf-mfx9mv77-wq&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjI4OGNhZDk0MDljYWE4YjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNWNmZmI1MTlkZWZhMTM3N2JlNmM0ZTVjZTdhMDNiZGY5NjM0MjBlNTQ1NGNmYTAsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px]\" src=\"https://media.licdn.com/dms/image/v2/C4D03AQFf8ZkgWDF-Ng/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1516280809226?e=2147483647&amp;v=beta&amp;t=hp6AI9ODDEpVkjd_A1hUucUd7TPqPUt__hBliG42F-M\" alt=\"Bob T.’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </a> </td> </tr> <tr> <td class=\"pt-[10px]\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 10px;\"> <a href=\"https://www.linkedin.com/comm/in/bobtrinh?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2FHYfChPAggrY1&amp;trk=eml-email_pymk_02-pymk_hero-0-profile_name_link&amp;trkEmail=eml-email_pymk_02-pymk_hero-0-profile_name_link-null-poh2nf~mfx9mv77~wq-null-null&amp;eid=poh2nf-mfx9mv77-wq&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjI4OGNhZDk0MDljYWE4YjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNWNmZmI1MTlkZWZhMTM3N2JlNmM0ZTVjZTdhMDNiZGY5NjM0MjBlNTQ1NGNmYTAsMSwx\" target=\"_blank\" class=\"text-system-gray-90\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #282828;\"> <h2 class=\"text-lg font-semibold leading-regular\" style=\"margin: 0; font-size: 20px; font-weight: 600; line-height: 1.25;\"> Bob T. </h2> </a> </td> </tr> <tr> <td class=\"text-xs text-system-gray-90 leading-regular pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px; font-size: 12px; line-height: 1.25; color: #282828;\"> Chief Executive Officer at The Villages Health </td> </tr> <tr> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/bobtrinh/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midSig=2FHYfChPAggrY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A3171303-null-poh2nf%7Emfx9mv77%7Ewq-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A3171303&amp;_sig=36Rh7PYzgggrY1\" target=\"_blank\" aria-label=\"Connect\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid w-[100vw] max-w-[400px]\" data-test-id=\"pymk-hero_default-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; width: 100vw; max-width: 400px; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/bobtrinh/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midSig=2FHYfChPAggrY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A3171303-null-poh2nf%7Emfx9mv77%7Ewq-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A3171303&amp;_sig=36Rh7PYzgggrY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"pymk-section-header\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <h2 class=\"text-lg font-semibold leading-regular text-system-gray-90 text-center\" style=\"margin: 0; text-align: center; font-size: 20px; font-weight: 600; line-height: 1.25; color: #282828;\"> More people you may know </h2> </td> </tr> <tr data-test-id=\"pymk-section-body\"> <td align=\"center\" class=\"pt-1.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"></td> <td class=\"pr-1 w-[400px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 400px; padding-right: 8px;\" width=\"400\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"w-1/2 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/chuck-shaffer-0504276?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2FHYfChPAggrY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mfx9mv77~wq-null-null&amp;eid=poh2nf-mfx9mv77-wq&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjI4OGNhZDk0MDljYWE4YjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNWNmZmI1MTlkZWZhMTM3N2JlNmM0ZTVjZTdhMDNiZGY5NjM0MjBlNTQ1NGNmYTAsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQGBADA1DAedXw/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1714914797056?e=2147483647&amp;v=beta&amp;t=OVSUT5akb42LwJuhydZiDbj7_MdARpBOdtqP6689DXI\" alt=\"Chuck Shaffer’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Chuck Shaffer </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer at Seacoast Bank </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/chuck-shaffer-0504276/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midSig=2FHYfChPAggrY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A18964860-null-poh2nf%7Emfx9mv77%7Ewq-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A18964860&amp;_sig=1eeY38vP8ggrY1\" target=\"_blank\" aria-label=\"Connect with Chuck Shaffer\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/chuck-shaffer-0504276/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midSig=2FHYfChPAggrY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A18964860-null-poh2nf%7Emfx9mv77%7Ewq-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A18964860&amp;_sig=1eeY38vP8ggrY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"w-1/2 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/mike-o-kronley-32173715?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2FHYfChPAggrY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mfx9mv77~wq-null-null&amp;eid=poh2nf-mfx9mv77-wq&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjI4OGNhZDk0MDljYWE4YjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNWNmZmI1MTlkZWZhMTM3N2JlNmM0ZTVjZTdhMDNiZGY5NjM0MjBlNTQ1NGNmYTAsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/C4E03AQE0xm5cVTEYXw/profile-displayphoto-shrink_200_200/profile-displayphoto-shrink_200_200/0/1553092069728?e=2147483647&amp;v=beta&amp;t=dLW1jA06zkNMIrIRWNcDTQ6O3rAf_MD-ARPSKGi4MzM\" alt=\"Mike O&amp;#39;Kronley’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Mike O\'Kronley </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer at Novonix Group </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/mike-o-kronley-32173715/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midSig=2FHYfChPAggrY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A52578313-null-poh2nf%7Emfx9mv77%7Ewq-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A52578313&amp;_sig=0jCfPy3G8ggrY1\" target=\"_blank\" aria-label=\"Connect with Mike O&amp;#39;Kronley\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/mike-o-kronley-32173715/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midSig=2FHYfChPAggrY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A52578313-null-poh2nf%7Emfx9mv77%7Ewq-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A52578313&amp;_sig=0jCfPy3G8ggrY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/rodrigo-caserta?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2FHYfChPAggrY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mfx9mv77~wq-null-null&amp;eid=poh2nf-mfx9mv77-wq&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjI4OGNhZDk0MDljYWE4YjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNWNmZmI1MTlkZWZhMTM3N2JlNmM0ZTVjZTdhMDNiZGY5NjM0MjBlNTQ1NGNmYTAsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/C4D03AQFeIhyTg5AH_Q/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1656820327178?e=2147483647&amp;v=beta&amp;t=boInbN93l932vG2M6pnVPiEXMvP1LcwZk3ky22fUVH4\" alt=\"Rodrigo Caserta’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Rodrigo Caserta </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer at Avanade </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/rodrigo-caserta/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midSig=2FHYfChPAggrY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A443027-null-poh2nf%7Emfx9mv77%7Ewq-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A443027&amp;_sig=0VTU9P3roggrY1\" target=\"_blank\" aria-label=\"Connect with Rodrigo Caserta\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/rodrigo-caserta/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midSig=2FHYfChPAggrY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A443027-null-poh2nf%7Emfx9mv77%7Ewq-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A443027&amp;_sig=0VTU9P3roggrY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/karthik-narain?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2FHYfChPAggrY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mfx9mv77~wq-null-null&amp;eid=poh2nf-mfx9mv77-wq&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjI4OGNhZDk0MDljYWE4YjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNWNmZmI1MTlkZWZhMTM3N2JlNmM0ZTVjZTdhMDNiZGY5NjM0MjBlNTQ1NGNmYTAsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/D5603AQHYZ5qakKp0eg/profile-displayphoto-scale_400_400/B56Zl33TDzHAAg-/0/1758652609295?e=2147483647&amp;v=beta&amp;t=I85jP7hwqhdPYLRC1g-G02A_btZttmSm4jPB8GEN9MU\" alt=\"Karthik Narain’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Karthik Narain </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Technology and AI Executive </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/karthik-narain/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midSig=2FHYfChPAggrY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A14282920-null-poh2nf%7Emfx9mv77%7Ewq-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A14282920&amp;_sig=18tYWTfZEggrY1\" target=\"_blank\" aria-label=\"Connect with Karthik Narain\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/karthik-narain/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midSig=2FHYfChPAggrY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A14282920-null-poh2nf%7Emfx9mv77%7Ewq-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A14282920&amp;_sig=18tYWTfZEggrY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/ty-taplin-mba-mha-4050844b?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2FHYfChPAggrY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mfx9mv77~wq-null-null&amp;eid=poh2nf-mfx9mv77-wq&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjI4OGNhZDk0MDljYWE4YjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNWNmZmI1MTlkZWZhMTM3N2JlNmM0ZTVjZTdhMDNiZGY5NjM0MjBlNTQ1NGNmYTAsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/D5603AQGOLAqmZLwRQQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1724203539077?e=2147483647&amp;v=beta&amp;t=eEpDzoMOjAyky0cVT6jg3KHYbQ0xBrmqJ86RZypztls\" alt=\"Ty Taplin, MBA, MHA’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Ty Taplin, MBA, MHA </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer at Reunion… </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/ty-taplin-mba-mha-4050844b/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midSig=2FHYfChPAggrY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A176346437-null-poh2nf%7Emfx9mv77%7Ewq-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A176346437&amp;_sig=1FHBQmMgkggrY1\" target=\"_blank\" aria-label=\"Connect with Ty Taplin, MBA, MHA\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/ty-taplin-mba-mha-4050844b/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midSig=2FHYfChPAggrY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A176346437-null-poh2nf%7Emfx9mv77%7Ewq-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A176346437&amp;_sig=1FHBQmMgkggrY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/andylowery?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2FHYfChPAggrY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mfx9mv77~wq-null-null&amp;eid=poh2nf-mfx9mv77-wq&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjI4OGNhZDk0MDljYWE4YjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNWNmZmI1MTlkZWZhMTM3N2JlNmM0ZTVjZTdhMDNiZGY5NjM0MjBlNTQ1NGNmYTAsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/D5603AQFSMLzuBpZDfg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1706228951017?e=2147483647&amp;v=beta&amp;t=NpbGxVSDAiSNX-9RuKbzNPuSoh0tadNnTbUXG-B73Qw\" alt=\"Andy Lowery’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Andy Lowery </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer at Epirus </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/andylowery/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midSig=2FHYfChPAggrY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A479911980-null-poh2nf%7Emfx9mv77%7Ewq-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A479911980&amp;_sig=1eW6pdNn4ggrY1\" target=\"_blank\" aria-label=\"Connect with Andy Lowery\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/andylowery/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midSig=2FHYfChPAggrY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A479911980-null-poh2nf%7Emfx9mv77%7Ewq-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A479911980&amp;_sig=1eW6pdNn4ggrY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"></td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 px-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button px-3\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/add-connections/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2FHYfChPAggrY1&amp;trk=eml-email_pymk_02-see_more-0-cta&amp;trkEmail=eml-email_pymk_02-see_more-0-cta-null-poh2nf~mfx9mv77~wq-null-null&amp;eid=poh2nf-mfx9mv77-wq&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjI4OGNhZDk0MDljYWE4YjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNWNmZmI1MTlkZWZhMTM3N2JlNmM0ZTVjZTdhMDNiZGY5NjM0MjBlNTQ1NGNmYTAsMSwx\" target=\"_blank\" aria-label=\"See more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/add-connections/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2FHYfChPAggrY1&amp;trk=eml-email_pymk_02-see_more-0-cta&amp;trkEmail=eml-email_pymk_02-see_more-0-cta-null-poh2nf~mfx9mv77~wq-null-null&amp;eid=poh2nf-mfx9mv77-wq&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjI4OGNhZDk0MDljYWE4YjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNWNmZmI1MTlkZWZhMTM3N2JlNmM0ZTVjZTdhMDNiZGY5NjM0MjBlNTQ1NGNmYTAsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> See more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-lg text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 20px; color: #114951;\"> Get the new LinkedIn desktop app </h2> </td> </tr> <tr> <td class=\"text-center pb-2\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <a href=\"https://apps.microsoft.com/store/detail/9WZDNCRFJ4Q7?launch=true&amp;cid=linkedin_email_upsell&amp;mode=full\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it from Microsoft\" src=\"https://static.licdn.com/aero-v1/sc/h/ejpkkpwvqks31a3cjqokb7fbm\" class=\"h-[40px] w-[112px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 112px;\" width=\"112\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-md text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 16px; color: #114951;\"> Also available on mobile </h2> </td> </tr> <tr> <td class=\"text-center\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <a href=\"https://itunes.apple.com/us/app/linkedin/id288429040?pt=10746&amp;ct=st_appsite_flagship&amp;mt=8\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Download on the App Store\" src=\"https://static.licdn.com/aero-v1/sc/h/76yzkd0h5kiv27lrd4yaenylk\" class=\"h-[40px] w-[120px] pr-1\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 120px; padding-right: 8px;\" width=\"120\" height=\"40\"> </a> <a href=\"https://play.google.com/store/apps/details?id=com.linkedin.android&amp;referrer=st_appsite_flagship\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it on Google Play\" src=\"https://static.licdn.com/aero-v1/sc/h/142qudwblp58zwmc9vkqfplug\" class=\"h-[40px] w-[134px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 134px;\" width=\"134\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px;\"><hr class=\"border-none bg-[#e0dfdd] h-[1px]\" style=\"height: 1px; border-style: none; background-color: #e0dfdd;\"></td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" data-test-id=\"email-footer__intended\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2FHYfChPAggrY1&amp;trk=eml-email_pymk_02-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_pymk_02-SecurityHelp-0-footerglimmer-null-poh2nf~mfx9mv77~wq-null-null&amp;eid=poh2nf-mfx9mv77-wq&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjI4OGNhZDk0MDljYWE4YjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNWNmZmI1MTlkZWZhMTM3N2JlNmM0ZTVjZTdhMDNiZGY5NjM0MjBlNTQ1NGNmYTAsMSwx\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving People You May Know notification emails.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2FHYfChPAggrY1&amp;trk=eml-email_pymk_02-unsubscribe-0-footerGlimmer&amp;trkEmail=eml-email_pymk_02-unsubscribe-0-footerGlimmer-null-poh2nf~mfx9mv77~wq-null-null&amp;eid=poh2nf-mfx9mv77-wq&amp;loid=AQEUe5mJ5EsBlgAAAZl5MZBe4fYXg8eGx7duQtNlBm5c5a5uHswiL4ZTxaezXhtH3jfAr910B-p9zKOqLRgFIPk13BKPGns_p-nP\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Unsubscribe</a>   ·   <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2FHYfChPAggrY1&amp;trk=eml-email_pymk_02-help-0-footerglimmer&amp;trkEmail=eml-email_pymk_02-help-0-footerglimmer-null-poh2nf~mfx9mv77~wq-null-null&amp;eid=poh2nf-mfx9mv77-wq&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjI4OGNhZDk0MDljYWE4YjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNWNmZmI1MTlkZWZhMTM3N2JlNmM0ZTVjZTdhMDNiZGY5NjM0MjBlNTQ1NGNmYTAsMSwx\" target=\"_blank\" data-test-help-link class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2FHYfChPAggrY1&amp;trk=eml-email_pymk_02-footer-0-logoGlimmer&amp;trkEmail=eml-email_pymk_02-footer-0-logoGlimmer-null-poh2nf~mfx9mv77~wq-null-null&amp;eid=poh2nf-mfx9mv77-wq&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjI4OGNhZDk0MDljYWE4YjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNWNmZmI1MTlkZWZhMTM3N2JlNmM0ZTVjZTdhMDNiZGY5NjM0MjBlNTQ1NGNmYTAsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/aero-v1/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFtZURsdGRqYzNMWGR4OlpXMWhhV3hmY0hsdGExOHdNZz09Og==.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','Do you know Bob T.?\r\n\r\nYes, connect: https://www.linkedin.com/comm/mynetwork/send-invite/bobtrinh/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&midSig=2FHYfChPAggrY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A3171303-null-poh2nf%7Emfx9mv77%7Ewq-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A3171303&_sig=36Rh7PYzgggrY1\r\n\r\n\r\nMore people you may know\r\n            \r\n    Chuck Shaffer\r\nChief Executive Officer at Seacoast Bank\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/chuck-shaffer-0504276/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&midSig=2FHYfChPAggrY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A18964860-null-poh2nf%7Emfx9mv77%7Ewq-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A18964860&_sig=1eeY38vP8ggrY1\r\n            \r\n    Mike O\'Kronley\r\nChief Executive Officer at Novonix Group\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/mike-o-kronley-32173715/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&midSig=2FHYfChPAggrY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A52578313-null-poh2nf%7Emfx9mv77%7Ewq-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A52578313&_sig=0jCfPy3G8ggrY1\r\n            \r\n    Rodrigo Caserta\r\nChief Executive Officer at Avanade\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/rodrigo-caserta/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&midSig=2FHYfChPAggrY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A443027-null-poh2nf%7Emfx9mv77%7Ewq-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A443027&_sig=0VTU9P3roggrY1\r\n            \r\n    Karthik Narain\r\nTechnology and AI Executive\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/karthik-narain/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&midSig=2FHYfChPAggrY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A14282920-null-poh2nf%7Emfx9mv77%7Ewq-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A14282920&_sig=18tYWTfZEggrY1\r\n            \r\n    Ty Taplin, MBA, MHA\r\nChief Executive Officer at Reunion Hospital Arlington\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/ty-taplin-mba-mha-4050844b/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&midSig=2FHYfChPAggrY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A176346437-null-poh2nf%7Emfx9mv77%7Ewq-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A176346437&_sig=1FHBQmMgkggrY1\r\n\r\nSee more people you might know:https://www.linkedin.com/comm/mynetwork/add-connections/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&midToken=AQE-iPshthTClw&midSig=2FHYfChPAggrY1&trk=eml-email_pymk_02-see_more-0-cta~text&trkEmail=eml-email_pymk_02-see_more-0-cta~text-null-poh2nf~mfx9mv77~wq-null-null&eid=poh2nf-mfx9mv77-wq&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjI4OGNhZDk0MDljYWE4YjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNWNmZmI1MTlkZWZhMTM3N2JlNmM0ZTVjZTdhMDNiZGY5NjM0MjBlNTQ1NGNmYTAsMSwx\r\n      \r\n\r\n----------------------------------------\r\n\r\nThis email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\nLearn why we included this: https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&midToken=AQE-iPshthTClw&midSig=2FHYfChPAggrY1&trk=eml-email_pymk_02-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_pymk_02-SecurityHelp-0-textfooterglimmer-null-poh2nf~mfx9mv77~wq-null-null&eid=poh2nf-mfx9mv77-wq&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjI4OGNhZDk0MDljYWE4YjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNWNmZmI1MTlkZWZhMTM3N2JlNmM0ZTVjZTdhMDNiZGY5NjM0MjBlNTQ1NGNmYTAsMSwx\r\nYou are receiving People You May Know notification emails.\r\n\r\n\r\nUnsubscribe: https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&midToken=AQE-iPshthTClw&midSig=2FHYfChPAggrY1&trk=eml-email_pymk_02-unsubscribe-0-textfooterglimmer&trkEmail=eml-email_pymk_02-unsubscribe-0-textfooterglimmer-null-poh2nf~mfx9mv77~wq-null-null&eid=poh2nf-mfx9mv77-wq&loid=AQEUe5mJ5EsBlgAAAZl5MZBe4fYXg8eGx7duQtNlBm5c5a5uHswiL4ZTxaezXhtH3jfAr910B-p9zKOqLRgFIPk13BKPGns_p-nP\r\nHelp: https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3B4UlVR3POSuyeMaUHK%2B6H2Q%3D%3D&midToken=AQE-iPshthTClw&midSig=2FHYfChPAggrY1&trk=eml-email_pymk_02-help-0-textfooterglimmer&trkEmail=eml-email_pymk_02-help-0-textfooterglimmer-null-poh2nf~mfx9mv77~wq-null-null&eid=poh2nf-mfx9mv77-wq&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVmYjI4OGNhZDk0MDljYWE4YjZiN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlNWNmZmI1MTlkZWZhMTM3N2JlNmM0ZTVjZTdhMDNiZGY5NjM0MjBlNTQ1NGNmYTAsMSwx\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.\r\nLinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',0,0,0,0,0,0,'2025-09-24 00:48:35','2025-12-09 19:28:51','2025-12-09 19:28:51','2025-12-09 19:28:51',NULL,NULL,NULL),
(771,4,'<CAB-aNmof2qgVBOTbXaMnOYmgX2G0K44KJk0Eu7CaH6fLJpYiPA@mail.gmail.com>',NULL,NULL,'Intro E-mail to Rick Mislan - Rebirth of American UAS Manufacturing','thagen@canallc.com','Terry Hagen','<div dir=\"ltr\"><div dir=\"ltr\"><div>Hi Rick, Rob, and Chris,</div><div><br></div><div>Rick, it was great meeting you last week at the U.S. Army UAS Industry Day! For intros, Rob is my boss here at CANA and Chris is our Director of Innovation and Strategy. Rob has been closely tracking manufacturing efforts, particularly those related to UAS innovation.</div><div><br></div><div>Rob and Chris, I&#39;d like to introduce you to Rick Mislan. Rick is a professor at the Rochester Institute of Technology (RIT) and a retired Army Electronic Warfare officer with a background in supporting special operations. He is also the CEO of MAVRIX ONE and is leading an impressive effort to rebuild American manufacturing, specifically focused on the UAS ecosystem. Rick has helped raise approximately $1.5 billion in capital to redevelop UAS-related manufacturing in the U.S.</div><div><br></div><div>I believe there are significant opportunities for us to discuss. I&#39;d like to schedule a call for us to explore these further.  Chris is traveling this week so next week will work better.  Tues and Thurs usually work best for us.</div><div><br></div><div>Contact information:</div><div>Rick Mislan, CEO Mavrix One</div><div>rick@mavrix.one</div><div>585.797.9473</div><div><a href=\"https://mavrix1.com\">https://mavrix1.com</a></div><div><a href=\"https://www.linkedin.com/in/rmislan/\">https://www.linkedin.com/in/rmislan/</a></div><div><br></div><div>Rob Cranston</div><div>President &amp; CEO CANA</div><div><a href=\"mailto:rcranston@canallc.com\">rcranston@canallc.com</a></div><div>(703) 317-7378 Mobile</div><div><a href=\"https://www.linkedin.com/in/rob-cranston-ab8aba/\">https://www.linkedin.com/in/rob-cranston-ab8aba/</a></div><div><br></div><div>Chris Cichy</div><div>Director of Innovation &amp; Strategy</div><div><a href=\"mailto:ccichy@canallc.com\">ccichy@canallc.com</a></div><div>(951) 225-2419 Mobile</div><div><a href=\"https://www.linkedin.com/in/christopher-cichy-31399391/\">https://www.linkedin.com/in/christopher-cichy-31399391/</a></div><div><br></div><div>Best regards,</div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div><span style=\"color:#2196f3ff\"><b>Terry Hagen</b></span><b> </b></div><div><b>Principal Logistics Analyst </b></div><div><span style=\"color:#2196f3ff\"><b><br></b></span></div><div><b></b><span style=\"color:#2196f3ff\"><b>Mobile: </b></span><b>(760) 669-9531 </b></div><div><span style=\"color:#2196f3ff\"><b>Email:</b></span><b> <a href=\"mailto:thagen@canallc.com\" target=\"_blank\">thagen@canallc.com</a></b></div></div></div></div></div>\r\n</div>\r\n\r\n<br>\r\n<span><span style=\"white-space:pre-wrap\"><b><span style=\"font-weight:400;font-style:normal\"><span><span><span></span></span></span></span></b></span></span><div style=\"text-align:left\"><span><span style=\"white-space:pre-wrap\"><b><span style=\"font-weight:400;font-style:normal\"></span></b></span></span><span style=\"font-weight:400;font-style:normal;text-decoration:none\"><b>CANA LLC</b></span><br><span style=\"font-weight:400;font-style:normal;text-decoration:none\"></span><span style=\"font-weight:400;font-style:normal;text-decoration:none\">7371 Atlas Walk Way</span><br><span style=\"font-weight:400;font-style:normal;text-decoration:none\"></span><span style=\"font-weight:400;font-style:normal;text-decoration:none\">Gainesville, Virginia 20155</span><br><span style=\"font-weight:400;font-style:normal;text-decoration:none\"></span><span style=\"font-weight:400;font-style:normal;text-decoration:none\">Telephone (703) 317-7378</span><br><span style=\"font-weight:400;font-style:normal;text-decoration:none\"></span><span style=\"font-weight:400;font-style:normal;text-decoration:none\">Facsimile (571) 248-2563</span><span style=\"font-weight:700;font-style:normal;text-decoration:none\"></span><span style=\"font-weight:700;font-style:normal;text-decoration:none\"><a href=\"http://www.canallc.com\" target=\"_blank\"><br>www.canallc.com<span style=\"background-color:black\"><span><span style=\"background-color:white\"></span></span></span></a></span>\r\n\r\n</div><div style=\"text-align:center\"><span><span style=\"white-space:pre-wrap\"><b><span style=\"font-weight:400;font-style:normal\"><a href=\"http://www.canallc.com\" target=\"_blank\"><img src=\"https://static.wixstatic.com/media/099e36_3928109bf3e24e7ba137cc3ab390da1d~mv2.png/v1/fill/w_250,h_144,al_c,enc_auto/CANA-Color250_email1.png\" alt=\"http://www.canallc.com\"></a><br></span></b></span></span></div><div><font size=\"2\"><span style=\"color:gray\"><span style=\"font-family:Arial\"><span style=\"white-space:pre-wrap\"></span></span></span></font><hr><font size=\"2\"><span style=\"color:gray\"><span style=\"font-family:Arial\"><span style=\"white-space:pre-wrap\">LEGAL DISCLAIMER: The information in this email is confidential and may be legally privileged. It is intended solely for the addressee. Access to this email by anyone else is unauthorized. If you are not the intended recipient, any disclosure, copying, distribution or any action taken or omitted to be taken in reliance on it, is strictly prohibited and may be unlawful.</span></span></span></font></div><div style=\"text-align:center\"><font size=\"2\"><span style=\"color:gray\"><span style=\"font-family:Arial\"><span style=\"white-space:pre-wrap\"><img src=\"https://static.wixstatic.com/media/099e36_84c7a7b51b584a40a33b1c86fe2c266c~mv2.png/v1/fill/w_250,h_121,al_c,enc_auto/Powered-by-CANA-Analytics-registeredTM250_email.png\"><br></span></span></span></font><span style=\"background-color:white\"><span></span></span></div>','Hi Rick, Rob, and Chris,\r\n\r\nRick, it was great meeting you last week at the U.S. Army UAS Industry Day!\r\nFor intros, Rob is my boss here at CANA and Chris is our Director of\r\nInnovation and Strategy. Rob has been closely tracking manufacturing\r\nefforts, particularly those related to UAS innovation.\r\n\r\nRob and Chris, I\'d like to introduce you to Rick Mislan. Rick is a\r\nprofessor at the Rochester Institute of Technology (RIT) and a retired Army\r\nElectronic Warfare officer with a background in supporting special\r\noperations. He is also the CEO of MAVRIX ONE and is leading an impressive\r\neffort to rebuild American manufacturing, specifically focused on the UAS\r\necosystem. Rick has helped raise approximately $1.5 billion in capital to\r\nredevelop UAS-related manufacturing in the U.S.\r\n\r\nI believe there are significant opportunities for us to discuss. I\'d like\r\nto schedule a call for us to explore these further.  Chris is traveling\r\nthis week so next week will work better.  Tues and Thurs usually work best\r\nfor us.\r\n\r\nContact information:\r\nRick Mislan, CEO Mavrix One\r\nrick@mavrix.one\r\n585.797.9473\r\nhttps://mavrix1.com\r\nhttps://www.linkedin.com/in/rmislan/\r\n\r\nRob Cranston\r\nPresident & CEO CANA\r\nrcranston@canallc.com\r\n(703) 317-7378 Mobile\r\nhttps://www.linkedin.com/in/rob-cranston-ab8aba/\r\n\r\nChris Cichy\r\nDirector of Innovation & Strategy\r\nccichy@canallc.com\r\n(951) 225-2419 Mobile\r\nhttps://www.linkedin.com/in/christopher-cichy-31399391/\r\n\r\nBest regards,\r\n\r\n*Terry Hagen*\r\n*Principal Logistics Analyst *\r\n\r\n*Mobile: **(760) 669-9531 *\r\n*Email:** thagen@canallc.com <thagen@canallc.com>*\r\n\r\n-- \r\n*****CANA LLC*\r\n7371 Atlas Walk Way\r\nGainesville, Virginia 20155\r\nTelephone \r\n(703) 317-7378\r\nFacsimile (571) 248-2563\r\nwww.canallc.com \r\n<http://www.canallc.com>\r\n\r\n\r\n* <http://www.canallc.com>\r\n*\r\nLEGAL DISCLAIMER: \r\nThe information in this email is confidential and may be legally \r\nprivileged. It is intended solely for the addressee. Access to this email \r\nby anyone else is unauthorized. If you are not the intended recipient, any \r\ndisclosure, copying, distribution or any action taken or omitted to be \r\ntaken in reliance on it, is strictly prohibited and may be unlawful.',0,0,0,0,0,0,'2025-09-24 09:07:11','2025-12-09 19:28:51','2025-12-09 19:28:51','2025-12-09 19:28:51',NULL,NULL,NULL),
(772,4,'<010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000@email.amazonses.com>',NULL,NULL,'Top deals for business: Rick, save with limited-time deals','no-reply@business.amazon.com','Amazon Business','<!doctype html>\r\n<html lang=\"en-US\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\">\r\n <head>\r\n  <title>Top deals for business: Rick, save with limited-time deals</title><!--[if !mso]><!-- -->\r\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><!--<![endif]-->\r\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\r\n  <style type=\"text/css\">#outlook a { padding:0; }           body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block;margin:13px 0; }</style><!--[if mso]>                    <xml>                      <o:OfficeDocumentSettings xmlns:o=\"urn:schemas-microsoft-com:office:office\">                    <o:AllowPNG/>                          <o:PixelsPerInch>96</o:PixelsPerInch>                      </o:OfficeDocumentSettings>                   <w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\">               <w:DontUseAdvancedTypographyReadingMail/>             </w:WordDocument>                  </xml>                        <style type=\"text/css\">             table { border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt; }             .mj-outlook-group-fix { width:100% !important; }           </style>                  <![endif]--><!--[if !mso]><!-->\r\n  <link href=\"https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <link href=\"https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <style type=\"text/css\">@import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);</style><!--<![endif]-->\r\n  <style type=\"text/css\">@media only screen and (min-width:641px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-18 { width:18% !important; max-width: 18%; } .mj-column-per-82 { width:82% !important; max-width: 82%; } .mj-column-per-48 { width:48% !important; max-width: 48%; } .mj-column-per-52 { width:52% !important; max-width: 52%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }</style>\r\n  <style type=\"text/css\">.movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                .links-232F3E-underline-bold a { color: #232F3E; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .mso-button-dark-mode a {background: transparent !important;} .links-161D26 a { color: #161D26; text-decoration: none; } .links-161D26-underline a { color: #161D26; text-decoration: underline; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:641px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-165px { max-width: 165px !important} .padding-32px-40px-20px-40px { padding: 32px 40px 20px 40px !important} .font-size-36px { font-size: 36px !important} .padding-0px-40px-0px-40px { padding: 0px 40px 0px 40px !important} .padding-24px-40px-0px-40px { padding: 24px 40px 0px 40px !important} .padding-20px-40px-0px-40px { padding: 20px 40px 0px 40px !important} .font-size-18px { font-size: 18px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .font-size-20px { font-size: 20px !important} .padding-24px-40px-24px-40px { padding: 24px 40px 24px 40px !important} .padding-25px-20px-25px-20px { padding: 25px 20px 25px 20px !important} .padding-0px-10px-0px-0px { padding: 0px 10px 0px 0px !important} .max-width-129px { max-width: 129px !important} .padding-0px-5px-0px-5px { padding: 0px 5px 0px 5px !important} .max-width-140px { max-width: 140px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }</style>\r\n  <style type=\"text/css\">p{margin: 0 0;}ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 641px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}</style><!--[if mso]>             <style>                 .hide-on-mobile {display:block !important}             </style>         <![endif]--><!--[if mso]>                 <style>                              .mso-font-size-36px { font-size: 36px !important; } .mso-font-size-18px { font-size: 18px !important; } .mso-font-size-20px { font-size: 20px !important; }                 </style>             <![endif]-->\r\n  <style>[class~=\"x_body\"] { width: 99.9% }               @supports(--css:variables) {                         td[style*=\"border-radius\"] { -webkit-filter: drop-shadow(0 0 1px transparent); }             }</style>\r\n </head>\r\n <body style=\"word-spacing:normal;background-color:#FFFFFF;\" class=\"body\" id=\"body\">\r\n  <div>\r\n   <p><img alt=\"\" src=\"http://elinks.business.amazon.com/CI0/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/lbVe8OwJTtMue6UlN5HSb_JVRVTqSpO8AuRAinrm7Ng=424\" style=\"display: none; width: 1px; height: 1px;\">\r\n</p>\r\n  </div><!--[if !mso 9]><!-->\r\n  <div id=\"emailPreHeader\" style=\"display: none;\">\r\n   Enjoy savings with limited-time deals recommended for businesses like yours﻿.\r\n  </div>\r\n  <div style=\"display: none;\">\r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  </div><!--<![endif]-->\r\n  <div style=\"background-color:#FFFFFF;background-position:center center;background-size:auto;background-repeat:repeat;\" id=\"main\">\r\n   <!--[if mso]>\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><![endif]--><!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:16px 16px 14px 16px;text-align:center;vertical-align:top;mso-padding-alt:14px 0px 14px 40px;\" class=\"block-grid padding-14px-0px-14px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:600px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n             <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:middle;width:300px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"padding-0px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 0px 0px;word-break:break-word;mso-padding-alt:0px 0px 0px 0px;text-align:left;\">\r\n                  <div style=\"margin:0 auto 0 0;\" class=\"max-width-165px\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/NoPTadVByLk6wg2C8fzO7NYSc59jt73WHbi_0RJKDwg=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business\" height=\"auto\" width=\"165\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-2color2x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:middle;width:300px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                  <div style=\"line-height:0px;height:0px;mso-line-height-alt:0px;\">\r\n                   &nbsp;\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:32px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:32px 40px 20px 40px;\" class=\"block-grid padding-32px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-232F3E-underline-bold\">\r\n                  <div style=\"font-family:\'Ember Modern Display\', Arial, sans-serif;font-size:28px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:2.688em;color:#161D26;\" class=\"mso-font-size-36px font-size-36px\">\r\n                   <p style=\"margin: 0 0;\">Top deals for business</p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;mso-padding-alt:0px 0px 0px 0px;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                 <div style=\"line-height:12px;height:12px;mso-line-height-alt:12px;\">\r\n                  &nbsp;\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:0px 40px 0px 40px;\" class=\"block-grid padding-0px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-007185-bold\">\r\n                  <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.375em;color:#222D3A;\">\r\n                   <p style=\"margin: 0 0;\">Enjoy savings with limited-time deals recommended for businesses like yours.</p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:24px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:24px 40px 0px 40px;\" class=\"block-grid padding-24px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td valign=\"middle\" class=\"button-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div>\r\n                  <!--[if mso]>\r\n<table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\">\r\n<tr>\r\n<td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26return_to=%2Fgp%2Fgoldbox%2F/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/ubn6EBCTinNO-WBqUEm8RffS3w0PeiN8Gaz01_J62ug=424\" fillcolor=\"#FFD814\" arcsize=\"58%\" style=\"v-text-anchor:middle;width:95.25pt;height:32.25pt;\" stroke=\"f\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26return_to=%2Fgp%2Fgoldbox%2F/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/ubn6EBCTinNO-WBqUEm8RffS3w0PeiN8Gaz01_J62ug=424\" style=\"display: inline-block; background: #FFD814; color: #161D26; font-family: \'Amber Ember\', Arial, sans-serif; font-size: 16px; font-weight: normal; line-height: 1.2; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 12px 24px 12px 24px; mso-padding-alt: 0px; border-radius: 25px; mso-border-alt: none; box-sizing: border-box;\" target=\"_blank\" width=\"127\">Shop deals </a><!--[if mso]></center></a:textbox></a:roundrect>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;mso-padding-alt:0px 0px 0px 0px;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                 <div style=\"line-height:30px;height:30px;mso-line-height-alt:30px;\">\r\n                  &nbsp;\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3f4492e978609435.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=783f7ee1-b2cb-4b1f-a07c-18368c8697f6&amp;mi_campaignId=3078545324&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=1&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=783f7ee1-b2cb-4b1f-a07c-18368c8697f6&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_tri_per_topdeals_ssr_250409\">\r\n                 </div></td>\r\n               </tr>\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=783f7ee1-b2cb-4b1f-a07c-18368c8697f6%26mi_campaignId=3078545324%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=1%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=783f7ee1-b2cb-4b1f-a07c-18368c8697f6%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/Gp4GTngfrcn63ddkLaqxh3lgfzNYtdy4irpqfi3IKW0=424\" style=\"text-decoration: none; color: #827AF0; display: block;\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=783f7ee1-b2cb-4b1f-a07c-18368c8697f6&amp;mi_campaignId=3078545324&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=1&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=783f7ee1-b2cb-4b1f-a07c-18368c8697f6&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_tri_per_topdeals_ssr_250409\"></a>\r\n                 </div></td>\r\n               </tr>\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=783f7ee1-b2cb-4b1f-a07c-18368c8697f6%26mi_campaignId=3078545324%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=2%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=783f7ee1-b2cb-4b1f-a07c-18368c8697f6%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/MS6kLaNcJgIpTz_FGIgj8IYlUIoQYyPP44g0yhuV4H4=424\" style=\"text-decoration: none; color: #827AF0; display: block;\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=783f7ee1-b2cb-4b1f-a07c-18368c8697f6&amp;mi_campaignId=3078545324&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=2&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=783f7ee1-b2cb-4b1f-a07c-18368c8697f6&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_tri_per_topdeals_ssr_250409\"></a>\r\n                 </div></td>\r\n               </tr>\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=783f7ee1-b2cb-4b1f-a07c-18368c8697f6%26mi_campaignId=3078545324%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=3%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=783f7ee1-b2cb-4b1f-a07c-18368c8697f6%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/o4Q9DnESvbnXluGXKBqrlwN07jKMWLgJGxnmBtM41sA=424\" style=\"text-decoration: none; color: #827AF0; display: block;\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=783f7ee1-b2cb-4b1f-a07c-18368c8697f6&amp;mi_campaignId=3078545324&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=3&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=783f7ee1-b2cb-4b1f-a07c-18368c8697f6&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_tri_per_topdeals_ssr_250409\"></a>\r\n                 </div></td>\r\n               </tr>\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=783f7ee1-b2cb-4b1f-a07c-18368c8697f6%26mi_campaignId=3078545324%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=4%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=783f7ee1-b2cb-4b1f-a07c-18368c8697f6%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/sJIluToBE_H0vK_swLrPay2KTvj-8gW3kQHoCxpqj_o=424\" style=\"text-decoration: none; color: #827AF0; display: block;\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=783f7ee1-b2cb-4b1f-a07c-18368c8697f6&amp;mi_campaignId=3078545324&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=4&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=783f7ee1-b2cb-4b1f-a07c-18368c8697f6&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_tri_per_topdeals_ssr_250409\"></a>\r\n                 </div></td>\r\n               </tr>\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=783f7ee1-b2cb-4b1f-a07c-18368c8697f6%26mi_campaignId=3078545324%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=5%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=783f7ee1-b2cb-4b1f-a07c-18368c8697f6%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/7ktxeJU9o-1yTXBftL5cY3_IHdkEH68lfCBoX-cHggQ=424\" style=\"text-decoration: none; color: #827AF0; display: block;\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=783f7ee1-b2cb-4b1f-a07c-18368c8697f6&amp;mi_campaignId=3078545324&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=5&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=783f7ee1-b2cb-4b1f-a07c-18368c8697f6&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_tri_per_topdeals_ssr_250409\"></a>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <!--[if !mso]><!-->\r\n              <tbody>\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3f4492e978609435.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=783f7ee1-b2cb-4b1f-a07c-18368c8697f6&amp;mi_campaignId=3078545324&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=1&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=783f7ee1-b2cb-4b1f-a07c-18368c8697f6&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_tri_per_topdeals_ssr_250409\">\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=783f7ee1-b2cb-4b1f-a07c-18368c8697f6%26mi_campaignId=3078545324%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=1%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=783f7ee1-b2cb-4b1f-a07c-18368c8697f6%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/hVPaK3ekMVBQ3nIzi3uin4H8CPF8TXVP5ChP1zq3hxI=424\" style=\"text-decoration: none; color: #827AF0; display: block;\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=783f7ee1-b2cb-4b1f-a07c-18368c8697f6&amp;mi_campaignId=3078545324&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=1&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=783f7ee1-b2cb-4b1f-a07c-18368c8697f6&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_tri_per_topdeals_ssr_250409\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=783f7ee1-b2cb-4b1f-a07c-18368c8697f6%26mi_campaignId=3078545324%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=2%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=783f7ee1-b2cb-4b1f-a07c-18368c8697f6%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/sy9hwmHlGbgUGbbIL9aaXS6e0JFxH5nwdppXwSUi8IM=424\" style=\"text-decoration: none; color: #827AF0; display: block;\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=783f7ee1-b2cb-4b1f-a07c-18368c8697f6&amp;mi_campaignId=3078545324&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=2&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=783f7ee1-b2cb-4b1f-a07c-18368c8697f6&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_tri_per_topdeals_ssr_250409\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=783f7ee1-b2cb-4b1f-a07c-18368c8697f6%26mi_campaignId=3078545324%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=3%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=783f7ee1-b2cb-4b1f-a07c-18368c8697f6%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/-XmQKhi5WojbkQS1HP_EI8rxWC5tTkJcuF1vVHLxX9o=424\" style=\"text-decoration: none; color: #827AF0; display: block;\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=783f7ee1-b2cb-4b1f-a07c-18368c8697f6&amp;mi_campaignId=3078545324&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=3&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=783f7ee1-b2cb-4b1f-a07c-18368c8697f6&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_tri_per_topdeals_ssr_250409\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=783f7ee1-b2cb-4b1f-a07c-18368c8697f6%26mi_campaignId=3078545324%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=4%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=783f7ee1-b2cb-4b1f-a07c-18368c8697f6%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/BE3iLZ9hKSXr3cI6uE3FJq46M36B6fiWCgJKBCSJQ5g=424\" style=\"text-decoration: none; color: #827AF0; display: block;\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=783f7ee1-b2cb-4b1f-a07c-18368c8697f6&amp;mi_campaignId=3078545324&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=4&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=783f7ee1-b2cb-4b1f-a07c-18368c8697f6&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_tri_per_topdeals_ssr_250409\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=783f7ee1-b2cb-4b1f-a07c-18368c8697f6%26mi_campaignId=3078545324%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=5%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=783f7ee1-b2cb-4b1f-a07c-18368c8697f6%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/340zLcpXGVL6P8MCA-2Y2YAvejdpAimcdnosjUokmJE=424\" style=\"text-decoration: none; color: #827AF0; display: block;\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=783f7ee1-b2cb-4b1f-a07c-18368c8697f6&amp;mi_campaignId=3078545324&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=5&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=783f7ee1-b2cb-4b1f-a07c-18368c8697f6&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_tri_per_topdeals_ssr_250409\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]-->\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 0px 40px;\" class=\"block-grid padding-20px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-161D26\">\r\n                  <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.375em;color:#161D26;\" class=\"mso-font-size-18px font-size-18px\">\r\n                   <p style=\"margin: 0 0;\"><span style=\"font-size: 18px;\">Discover more ways to save</span></p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\">\r\n            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n             <tbody>\r\n              <tr>\r\n               <td style=\"line-height:0;font-size:0;direction:ltr;\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n                 <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:280px;\" ><![endif]-->\r\n                 <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:50%;\">\r\n                  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                   <tbody>\r\n                    <tr>\r\n                     <td style=\"border-radius:0px;vertical-align:top;padding:0px 8px 12px 0px;mso-padding-alt:0px 8px 12px 0px;\">\r\n                      <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:left;\">\r\n                          <div style=\"margin:0 auto 0 0;max-width:272px;\">\r\n                           <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26return_to=%2Fgp%2Fsavingshub/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/oopfqvNfJN8EwhXfSBmvMKhaJq2-oTzHpmL2un1lTqY=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Image of laptop\" height=\"auto\" width=\"272\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/Images/Approved-ASIN-Images-500x500/Email-ASIN-Image-32-500x500.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                          </div></td>\r\n                        </tr>\r\n                        <tr>\r\n                         <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                          <div class=\"links-161D26\">\r\n                           <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                            <p style=\"margin: 0 0;\">Savings for you</p>\r\n                           </div>\r\n                          </div></td>\r\n                        </tr>\r\n                        <tr>\r\n                         <td class=\"text-container\" style=\"font-size:0px;padding:5px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                          <div class=\"links-007185-bold\">\r\n                           <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.188em;color:#222D3A;\">\r\n                            <p style=\"margin: 0 0;\">Save more with deals, discounts, and exclusive business pricing.</p>\r\n                           </div>\r\n                          </div></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table></td>\r\n                    </tr>\r\n                   </tbody>\r\n                  </table>\r\n                 </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:280px;\" ><![endif]-->\r\n                 <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:50%;\">\r\n                  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                   <tbody>\r\n                    <tr>\r\n                     <td style=\"border-radius:3px;vertical-align:top;padding:0px 0px 12px 8px;mso-padding-alt:0px 0px 12px 8px;\">\r\n                      <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:left;\">\r\n                          <div style=\"margin:0 auto 0 0;max-width:272px;\">\r\n                           <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26return_to=%2Fab%2Fbusiness-discounts/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/iuBR8RF_YRU5aOrRmCE9htmTjSagnp0pywMYnajZkbs=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Image of printer paper\" height=\"auto\" width=\"272\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/Images/Approved-ASIN-Images-500x500/Email-ASIN-Image-20-500x500.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                          </div></td>\r\n                        </tr>\r\n                        <tr>\r\n                         <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                          <div class=\"links-161D26\">\r\n                           <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                            <p style=\"margin: 0 0;\">Business Savings Guide</p>\r\n                           </div>\r\n                          </div></td>\r\n                        </tr>\r\n                        <tr>\r\n                         <td class=\"text-container\" style=\"font-size:0px;padding:5px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                          <div class=\"links-007185-bold\">\r\n                           <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.188em;color:#161D26;\">\r\n                            <p style=\"margin: 0 0;\">See the most popular business discounts.</p>\r\n                           </div>\r\n                          </div></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table></td>\r\n                    </tr>\r\n                   </tbody>\r\n                  </table>\r\n                 </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n              </tr>\r\n             </tbody>\r\n            </table></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n             <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:280px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:50%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td style=\"border-radius:0px;vertical-align:top;padding:0px 8px 12px 0px;mso-padding-alt:0px 8px 12px 0px;\">\r\n                  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                   <tbody>\r\n                    <tr>\r\n                     <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:left;\">\r\n                      <div style=\"margin:0 auto 0 0;max-width:272px;\">\r\n                       <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26return_to=%2Fcasepacks/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/In3O3qGcaLvOb-T1gBQV9aX8aqfV4b7s-eWWS9ijgBY=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Image of disposable cups\" height=\"auto\" width=\"272\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/Images/Approved-ASIN-Images-500x500/Email-ASIN-Image-28-500x500.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                      </div></td>\r\n                    </tr>\r\n                    <tr>\r\n                     <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                      <div class=\"links-161D26\">\r\n                       <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                        <p style=\"margin: 0 0;\">Buy wholesale</p>\r\n                       </div>\r\n                      </div></td>\r\n                    </tr>\r\n                    <tr>\r\n                     <td class=\"text-container\" style=\"font-size:0px;padding:5px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                      <div class=\"links-007185-bold\">\r\n                       <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.188em;color:#222D3A;\">\r\n                        <p style=\"margin: 0 0;\">Save in bulk with case packs and streamline bulk purchasing.</p>\r\n                       </div>\r\n                      </div></td>\r\n                    </tr>\r\n                   </tbody>\r\n                  </table></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:280px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:50%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td style=\"border-radius:0px;vertical-align:top;padding:0px 0px 12px 8px;mso-padding-alt:0px 0px 12px 8px;\">\r\n                  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                   <tbody>\r\n                    <tr>\r\n                     <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:left;\">\r\n                      <div style=\"margin:0 auto 0 0;max-width:272px;\">\r\n                       <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26return_to=%2Fquantitydiscounts/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/eShpqABIyGRSR-2GGIvNSNb9RaVtk0CFs1E2NlXP_78=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Image of Amazon packages\" height=\"auto\" width=\"272\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/Images/Approved-ASIN-Images-500x500/Email-ASIN-Image-11-500x500.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                      </div></td>\r\n                    </tr>\r\n                    <tr>\r\n                     <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                      <div class=\"links-161D26\">\r\n                       <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                        <p style=\"margin: 0 0;\">Buy more, save more</p>\r\n                       </div>\r\n                      </div></td>\r\n                    </tr>\r\n                    <tr>\r\n                     <td class=\"text-container\" style=\"font-size:0px;padding:5px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                      <div class=\"links-007185-bold\">\r\n                       <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.188em;color:#222D3A;\">\r\n                        <p style=\"margin: 0 0;\">Save with Quantity Discounts starting as low as two items.</p>\r\n                       </div>\r\n                      </div></td>\r\n                    </tr>\r\n                   </tbody>\r\n                  </table></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F7F7F7;background-color:#F7F7F7;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F7F7F7;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><!--[if !mso]><!-- --><p style=\"border-top: solid 1px #D5D9D9; font-size: 1px; margin: 0 auto; width: 100%; text-align: center;\"></p><!--<![endif]--><!--Divider--><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-top:solid 1px #D5D9D9;font-size:1px;margin:0 auto;width:640px;text-align:center;\" role=\"presentation\" width=\"640px\" >\r\n<tr>\r\n<td style=\"height:0;line-height:0;\"> &nbsp; </td>\r\n</tr>\r\n</table><![endif]--></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F5F3EF;background-color:#F5F3EF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F5F3EF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:16px 16px 16px 16px;text-align:center;vertical-align:top;mso-padding-alt:24px 40px 24px 40px;\" class=\"block-grid padding-24px-40px-24px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"background-color:#FFFFFF;border-radius:7px;vertical-align:top;padding:24px 24px 24px 24px;mso-padding-alt:25px 20px 25px 20px;\" class=\"padding-25px-20px-25px-20px\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td>\r\n                     <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:100%;\" class=\"section\">\r\n                      <tbody>\r\n                       <tr>\r\n                        <td align=\"center\" style=\"font-size:0px;text-align:center;vertical-align:top;padding:0px;word-break:break-word;\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:middle;width:93.6px;\" ><![endif]-->\r\n                         <div class=\"mj-column-per-18 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                              <div style=\"margin:0 auto 0 0;max-width:93px;\">\r\n                              <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Fen%2Ffind-solutions%2Fmobile-app%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26ref_=b2b_adp_e_abapp_body/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/pYMd_3JOJQ6YDoTNUwkvmWAszfZ1ZTe6_RN50Iavzjg=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Mobile App\" height=\"auto\" width=\"93\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/WhiteBackground/AB-Icon-Mobile-App-white-circle10x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                              </div></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table>\r\n                         </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:middle;width:426.4px;\" ><![endif]-->\r\n                         <div class=\"mj-column-per-82 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"border-radius:0px;vertical-align:middle;padding:0 0 0 20px;\">\r\n                              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                              <tbody>\r\n                              <tr>\r\n                              <td class=\"padding-0px-0px-0px-0px text-container\" style=\"font-size:0px;padding:16px 0px 0px 0px;word-break:break-word;mso-padding-alt:0px 0px 0px 0px;text-align:left;\">\r\n                              <div class=\"links-161D26-underline\">\r\n                              <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.375em;color:#161D26;\" class=\"mso-font-size-18px font-size-18px\">\r\n                              <p style=\"margin: 0 0;\"><strong><span style=\"font-family: \'Amber Ember\', Arial, sans-serif;\">Download the Amazon Business Mobile App</span></strong></p>\r\n                              </div>\r\n                              </div></td>\r\n                              </tr>\r\n                              <tr>\r\n                              <td class=\"text-container\" style=\"font-size:0px;padding:8px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                              <div class=\"links-161D26-underline\">\r\n                              <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.188em;color:#161D26;\">\r\n                              <p style=\"margin: 0 0;\"><span style=\"font-family: \'Amber Ember\', Arial, sans-serif; font-size: 16px;\">Separate your business and personal buying with a convenient and secure shopping experience.</span></p>\r\n                              </div>\r\n                              </div></td>\r\n                              </tr>\r\n                              </tbody>\r\n                              </table></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table>\r\n                         </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n                       </tr>\r\n                      </tbody>\r\n                     </table></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td>\r\n                     <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:100%;\" class=\"section\">\r\n                      <tbody>\r\n                       <tr>\r\n                        <td align=\"center\" style=\"font-size:0px;text-align:center;vertical-align:top;padding:24px 0px 0px 10px;word-break:break-word;\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:510px;\" ><![endif]-->\r\n                         <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n                          <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:244px;\" ><![endif]-->\r\n                          <div class=\"mj-column-per-48 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:48%;\">\r\n                           <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                            <tbody>\r\n                             <tr>\r\n                              <td style=\"border-radius:0px;vertical-align:top;padding:0px 0 0 0;\">\r\n                              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                              <tbody>\r\n                              <tr>\r\n                              <td class=\"padding-0px-10px-0px-0px img-container\" style=\"font-size:0px;padding:0px 15px 0px 0px;word-break:break-word;mso-padding-alt:0px 10px 0px 0px;text-align:right;\">\r\n                              <div style=\"margin:0 0 0 auto;max-width:90%;\" class=\"max-width-129px\">\r\n                              <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fapps.apple.com%2Fus%2Fapp%2Famazon-business%2Fid1498197033%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26pt=17789%26ct=em_body%26mt=8/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/3zFLbn3SkRGdFvIn6ei3JvvMH-s2xj4vUxHwfDECYJk=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"App Store\" height=\"auto\" width=\"129\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/EBR/Download_on_the_App_Store_Badge_US_blk_092917.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                              </div></td>\r\n                              </tr>\r\n                              </tbody>\r\n                              </table></td>\r\n                             </tr>\r\n                            </tbody>\r\n                           </table>\r\n                          </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:265px;\" ><![endif]-->\r\n                          <div class=\"mj-column-per-52 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:52%;\">\r\n                           <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                            <tbody>\r\n                             <tr>\r\n                              <td class=\"padding-0px-5px-0px-5px img-container\" style=\"font-size:0px;padding:0px 20px 0px 5px;word-break:break-word;mso-padding-alt:0px 5px 0px 5px;text-align:left;\">\r\n                              <div style=\"margin:0 auto 0 0;max-width:96%;\" class=\"max-width-140px\">\r\n                              <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fplay.google.com%2Fstore%2Fapps%2Fdetails%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26id=com.amazon.mShop.android.business.shopping%26referrer=utm_source%253Damazon_business%2526utm_campaign%253Dem_body/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/t6Jr16x0NSlRwCczEi4a92JK50o-l_baeYGsMDxCfkY=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Google Play\" height=\"auto\" width=\"140\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/EBR/GooglePlayIcon-US.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                              </div></td>\r\n                             </tr>\r\n                            </tbody>\r\n                           </table>\r\n                          </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                         </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n                       </tr>\r\n                      </tbody>\r\n                     </table></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F7F7F7;background-color:#F7F7F7;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F7F7F7;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><!--[if !mso]><!-- --><p style=\"border-top: solid 1px #D5D9D9; font-size: 1px; margin: 0 auto; width: 100%; text-align: center;\"></p><!--<![endif]--><!--Divider--><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-top:solid 1px #D5D9D9;font-size:1px;margin:0 auto;width:640px;text-align:center;\" role=\"presentation\" width=\"640px\" >\r\n<tr>\r\n<td style=\"height:0;line-height:0;\"> &nbsp; </td>\r\n</tr>\r\n</table><![endif]--></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F5F3EF;background-color:#F5F3EF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F5F3EF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-161D26-underline\">\r\n                  <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#222D3A;\">\r\n                   <p style=\"margin: 0 0;\">Please note that product prices and availability are subject to change. Prices and availability were accurate at the time this email was sent. However, they may differ from those you see when you visit Amazon.com.</p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#161D26;background-color:#161D26;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#161D26;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\">\r\n            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n             <tbody>\r\n              <tr>\r\n               <td style=\"line-height:0;font-size:0;direction:rtl;\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:252px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-45 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-align-right social-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\"><!--[if mso | IE]>\r\n<table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" >\r\n<tr>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.facebook.com%2FAmazonBusiness%2F%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/CJr9_sckkvNXig39M0CxXdx7QQJqEwXopxDxUn1O1-4=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Facebook\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Facebook-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Ftwitter.com%2FAmazonBusiness%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/5BLRO0RWADeIM0odv3cd-PUnIefrk_fO7dJl4VVkzdg=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Twitter\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Twitter-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.linkedin.com%2Fcompany%2Famazon-business%2F%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/dQgO37j0ildf8Z5hNWg2Z0mX6cqOCRnC-lW_Pg2-vjA=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Linkedin\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-LinkedIn-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"padding-10px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 20px 0px;word-break:break-word;mso-padding-alt:10px 0px 0px 0px;text-align:right;\">\r\n                     <div style=\"margin:0 auto 0 0;max-width:163px;\" class=\"margin-0-0-0-auto\">\r\n                      <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2F%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26ref_=b2b_sow_e_tri_per_topdeals_ssr_250409/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/dPkSN_Bu5rfXHpxplcHDirHnuwwu4ABn714WEDa2gIw=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business logo\" height=\"auto\" width=\"163\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-white2x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:308px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-55 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0 0;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Fen%2Fcontact-us%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/OYpVxct1NDZO4ikPXqqWbp3Q_egB1XmxV0RDGdVZidg=424\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">Contact us</a> | <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fab%2Fmanage%2Faccount%2F%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/ZKKHbPyWuBKwM5uc3pzhcKa9Aq7JwHmu7peYU8c_Yqo=424\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">Manage account</a></p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0 0;\">If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Femail-preferences%2Fep%2FjUgC18IFZroTg*2P9yijVfUncnOAVw0vLjMKqkgCJLCCCnUWyLgc%2BAnFHw==%2F3078545324%2FrzIgeiaba6*lyFy9DegGzT6AuasyBk6MbnFFfMDHiCTowlgA2vcCCfKRSaTWYs88r7dXpWL*ZTOP8lwj8qwwnZ*Rz0qa6NebnhxjZZNEfR1SSFr4aGAqzIYSkroV541SN1qT94sdjfwjjp6AwbNts*MRPrs9x1u3zl8Sz2E0hr3GWF8fx3216nKPP*Br3AG%2BLXRjWUaoKk18aB4o42690VIGf6tmpXI0gYsHolerd1ETYnQsp0bZcm4*WHfSA5gp1EUwq%2BPRl2iUyMNPy%2BWcxKZVhy765maJ%2BlxH1f1s21bpfNZOzAaWhZmIpPPDMYXT%2Bs5IZM4L75O6S3dSfFiEUJVaSiB8h956NzUY8jMWrvFUFrrYbV8=%2FXiwMiY75tbN9DgbdX2m*5oj%2Bxkpl0EwFKUt1bf8C9yor%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409/1/010001997ba565d2-a6265c5c-8e31-4ed1-b7f7-4c4c714a6480-000000/7LBD4HyQrTAXIGCxKKzlN1Y-1dN_NZNB49V5g_QvddY=424\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">email preferences</a>.</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 30px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0 0;\">© 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210</p>\r\n                       <p style=\"margin: 0 0;\">&nbsp;</p>\r\n                       <p style=\"margin: 0 0;\">Reference: 3078545324</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n              </tr>\r\n             </tbody>\r\n            </table></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--><!--[if mso]>\r\n</table><![endif]-->\r\n  </div>\r\n </body>\r\n</html>\r\n','\r\n\r\n \r\n  Top deals for business: Rick, save with limited-time deals\r\n  \r\n  \r\n  \r\n  #outlook a { padding:0; }           body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block;margin:13px 0; }\r\n  \r\n  \r\n  @import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);\r\n  @media only screen and (min-width:641px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-18 { width:18% !important; max-width: 18%; } .mj-column-per-82 { width:82% !important; max-width: 82%; } .mj-column-per-48 { width:48% !important; max-width: 48%; } .mj-column-per-52 { width:52% !important; max-width: 52%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }\r\n  .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                .links-232F3E-underline-bold a { color: #232F3E; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .mso-button-dark-mode a {background: transparent !important;} .links-161D26 a { color: #161D26; text-decoration: none; } .links-161D26-underline a { color: #161D26; text-decoration: underline; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:641px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-165px { max-width: 165px !important} .padding-32px-40px-20px-40px { padding: 32px 40px 20px 40px !important} .font-size-36px { font-size: 36px !important} .padding-0px-40px-0px-40px { padding: 0px 40px 0px 40px !important} .padding-24px-40px-0px-40px { padding: 24px 40px 0px 40px !important} .padding-20px-40px-0px-40px { padding: 20px 40px 0px 40px !important} .font-size-18px { font-size: 18px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .font-size-20px { font-size: 20px !important} .padding-24px-40px-24px-40px { padding: 24px 40px 24px 40px !important} .padding-25px-20px-25px-20px { padding: 25px 20px 25px 20px !important} .padding-0px-10px-0px-0px { padding: 0px 10px 0px 0px !important} .max-width-129px { max-width: 129px !important} .padding-0px-5px-0px-5px { padding: 0px 5px 0px 5px !important} .max-width-140px { max-width: 140px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }\r\n  p{margin: 0 0;}ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 641px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}\r\n  [class~=\"x_body\"] { width: 99.9% }               @supports(--css:variables) {                         td[style*=\"border-radius\"] { -webkit-filter: drop-shadow(0 0 1px transparent); }             }\r\n \r\n \r\n  \r\n   \r\n\r\n  \r\n  \r\n   Enjoy savings with limited-time deals recommended for businesses like yours﻿.\r\n  \r\n  \r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  \r\n  \r\n   \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   &nbsp;\r\n                  \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   Top deals for business\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  &nbsp;\r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   Enjoy savings with limited-time deals recommended for businesses like yours.\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                   Shop deals \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  &nbsp;\r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   Discover more ways to save\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                          \r\n                        \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            Savings for you\r\n                           \r\n                          \r\n                        \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            Save more with deals, discounts, and exclusive business pricing.\r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                    \r\n                   \r\n                  \r\n                 \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                          \r\n                        \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            Business Savings Guide\r\n                           \r\n                          \r\n                        \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            See the most popular business discounts.\r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                    \r\n                   \r\n                  \r\n                 \r\n                \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                      \r\n                    \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        Buy wholesale\r\n                       \r\n                      \r\n                    \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        Save in bulk with case packs and streamline bulk purchasing.\r\n                       \r\n                      \r\n                    \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                      \r\n                    \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        Buy more, save more\r\n                       \r\n                      \r\n                    \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        Save with Quantity Discounts starting as low as two items.\r\n                       \r\n                      \r\n                    \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                              \r\n                              \r\n                              \r\n                            \r\n                           \r\n                          \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              Download the Amazon Business Mobile App\r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              Separate your business and personal buying with a convenient and secure shopping experience.\r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                            \r\n                           \r\n                          \r\n                         \r\n                       \r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                          \r\n                           \r\n                            \r\n                             \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                             \r\n                            \r\n                           \r\n                          \r\n                          \r\n                           \r\n                            \r\n                             \r\n                              \r\n                              \r\n                              \r\n                              \r\n                             \r\n                            \r\n                           \r\n                          \r\n                         \r\n                       \r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   Please note that product prices and availability are subject to change. Prices and availability were accurate at the time this email was sent. However, they may differ from those you see when you visit Amazon.com.\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       Contact us | Manage account\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your email preferences.\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       © 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210\r\n                       &nbsp;\r\n                       Reference: 3078545324\r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n   \r\n  \r\n \r\n\r\n',0,0,0,0,0,0,'2025-09-24 12:14:21','2025-12-09 19:28:51','2025-12-09 19:28:51','2025-12-09 19:28:51',NULL,NULL,NULL),
(773,4,'<CAGgBgfC4eAT6pdPf+U=O=Nsatb9SFOoza1wjRh3Vt09QmSExcg@mail.gmail.com>',NULL,NULL,'Fwd: HAAS Late Model Machining Centers and Lathes Available Immediately','tpownall@cadx-pcb.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">Here is some equipment you could use.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">-- Tom</div><div class=\"gmail_default\" style=\"font-size:small\"></div></div><div><br></div><br><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">Prestige Equipment</strong> <span dir=\"auto\">&lt;<a href=\"mailto:scott@prestigeequipment.com\">scott@prestigeequipment.com</a>&gt;</span><br>Date: Mon, Sep 22, 2025 at 1:26 PM<br>Subject: HAAS Late Model Machining Centers and Lathes Available Immediately<br>To:  &lt;<a href=\"mailto:tpownall@cadx-pcb.com\">tpownall@cadx-pcb.com</a>&gt;<br></div><br><br><div class=\"msg-7777394078950100749\"><p style=\"font-size:1px;color:#ffffff\">2018 HAAS VF-11/40 CNC VMC, HAAS VF-3YT/50 4-Axis CNC VMC, HAAS VF-5/50XT CNC VMC, HAAS EC-1600 YZT HMC, HAAS VF-6/50 CNC VMC, 2018 HAAS ST30 CNC Turning Center, HAAS VF-6/50 CNC VMC, 2018 HAAS VF-2SS CNC VMC</p><div><div><div><div id=\"m_-7777394078950100749dvMailPreviewBox\"><div><a href=\"http://url2713.prestigeequipment.com/asm/unsubscribe/?user_id=10212469&amp;data=1ZemMqelxVzkFu5ImzP-cJs9nQ1fVYsvrtsdvAt5UFhoMDAwdTAwMN5u58aAbn9UKvQ-L01x-pY3K07Q0dkyh-MVAFBGy3VZfBx0S2UbbgNEnUR8qu7TT3KmCy__CMLvRZ2oMqUjroDFPIRPIkxdKmbuBeJc3K6bGWwrddvCkWlwmxjsaD98pAZnJUGhKNsJCDqtV315-wghnSBKl0c-Z1tSr8FwrGKnUhpvWh9FgiD8r1JKlSAAdB2ykVZ4pQ79i5SqKjNPvStMAwLSsWZIglSWZLA057XlqubzsQnnjToKqZXg035YoF3q4UoyiF5l46KNAcibaXdLxFfEpFTaSlCyze5wJEIA46VqwSp5uiVC0BYx4wLKSgr5k4xJe1CpX0_re3CLuIuAiFP-ubrnZ4p3rD8sTYg0nNKZHjKq_kiZi_g7O6rk0WYILP2IwqUe1inEhhOcp92SkfHMe4-NnqEEwXLsKjaHtge9Qz-_TJHEIZRkvzE50vx1RUn4D2tGPkQQfZUhx9pQLeKTvhsUKrPZV3Y3FOt7tWBMXQARbKRAxinTgDKiregZg6adXuI6XYbK6JtDpHnE25Gi2U-BP2dUeVXx04zrA8oB18ukwvVpkH0DBzeNq_bQbmLZAmx1kDURPm4LuQLz7AGqwEH-2EiI3uZGwXsw\" target=\"_blank\"></a><u></u><div style=\"width:100%;font-family:&#39;trebuchet ms&#39;,&#39;lucida grande&#39;,&#39;lucida sans unicode&#39;,&#39;lucida sans&#39;,tahoma,sans-serif;padding:0;Margin:0\"><div style=\"background-color:#f0f0f0\"><div style=\"display:none;font-size:1px;color:#333333;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden\">͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌  </div><table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse;border-spacing:0px;padding:0;Margin:0;width:100%;height:100%;background-repeat:repeat;background-position:center top;background-color:#f0f0f0\"><tbody><tr style=\"border-collapse:collapse\"><td valign=\"top\" style=\"padding:0;Margin:0\"><table align=\"center\"><tbody><tr><td><font face=\"arial,verdana\" size=\"1\">Having trouble viewing this email? <a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.YZa2-2Fv95qyaQ0Esd0DqHPseu6wZUcWbsNdJ5oijrR5vPQvMAZAJSp-2B-2FHtToOUzy91Z6i2WCqlu6QVGFHa3v4-2FmHS1tBSiH4d2nfJjlge3PNE0vNsL6dFwW9-2FClNDGQXIqcRtQFX31x4WM6sHjF-2FTtBNQITR7A7MkPG9-2BPRTM34oaAzAi8t4ux5z6WUT385joUkqk_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2Bb8-2BhVSuBVVwaLS0cEXSl567RLAbx1WnR18gXRYxi01cqqPZEOiLb-2BuUCOHgRmvFbgl261Xh-2BSQQhUoXk65J0cJU9354hG71cqc2h6BUrbe-2FOVErGw5PkQRDgjsGQ-2BrlYBkcRX2G3gHWdtTCqD8ZFrpCF6QBuxeCfpSe003TTdxV5mWYe4EEDGSkn0D6ig-2FQKLsXpXkCodkvgxTnYvUXQd\" target=\"_blank\">View in web browser</a></font></td></tr></tbody></table><table class=\"m_-7777394078950100749es-header\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"border-collapse:collapse;border-spacing:0px;table-layout:fixed!important;width:100%;background-color:transparent;background-repeat:repeat;background-position:center\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" style=\"padding:0;Margin:0\"><table class=\"m_-7777394078950100749es-header-body\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#E9EAEB\" align=\"center\" style=\"border-collapse:collapse;border-spacing:0px;background-color:#fff;width:600px\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"left\" style=\"padding:0;Margin:0\"><table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"border-collapse:collapse;border-spacing:0px\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"left\" style=\"padding:0px;padding-bottom:0px;Margin:0;width:600px\"><table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" role=\"presentation\" style=\"border-collapse:collapse;border-spacing:0px\"><tbody><tr><td align=\"center\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:590px;background-color:#fff;border-bottom:medium solid #186997\"><tbody><tr><td align=\"center\" valign=\"top\" style=\"font-size:0;padding:0px\"><div style=\"display:inline-block;vertical-align:top\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" role=\"presentation\" style=\"width:150px\"><tbody><tr><td align=\"Center\" valign=\"top\" style=\"padding:5px;padding-left:5px;padding-right:5px\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6E6RJNpN1XitjoQ-2FPLJOjbTwFpuVUdxuiEDdQglcL629H-2BMI3zRumaeRagK3Kqj3JNbVhUW5wU7mxy6jh3X5MO7KtbAwDg6YR1CiwQMbo0inQ-3D-3DxjiN_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2F9Ln4GVwiExN5BztEOsENRHJgG91Rd9vAq88N91tvW73mQ67byKIlvQiGKguNTpHUYwvzZvk0g9FrJNsXtx5a7avcDNGl6C61-2BPLsKrUMIdhgzuOpB2jVJ3EWMmT4Pq9CDaH-2Bz-2FegtCXLmdjo6YrZ8ZyoTViESOh-2FbNTdjrnTXUdlmyRoDVhro8FWtCXMmXOgqhTYimptJUsUXoqwdN-2Fu4\" target=\"_blank\"><img src=\"https://www.prestigeequipment.com/r2d_images/prestige+equipment+logo185x100.png\" alt=\"Prestige Equipment\" width=\"130\" height=\"70\"></a></td></tr></tbody></table></div><div style=\"display:inline-block;vertical-align:top\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" role=\"presentation\" style=\"width:400px\"><tbody><tr><td align=\"left\" valign=\"top\" style=\"padding-bottom:0px;padding-top:5px;padding-left:10px;padding-right:10px\"><h4 style=\"text-align:right;font-family:oswald,robot,sans-serif;font-weight:normal;font-size:17px;line-height:22px;color:#000;margin:0;padding:0\"><a href=\"mailto:scott@prestigeequipment.com\" style=\"text-decoration:none;color:#000;font-size:17px;line-height:25px;font-weight:normal;text-transform:uppercase\" target=\"_blank\"><strong>CONTACT SCOTT LINZER</strong></a><br><a href=\"mailto:scott@prestigeequipment.com\" style=\"text-decoration:none;color:#2d2d2d;font-size:13px\" target=\"_blank\">scott@prestigeequipment.com</a><br><a href=\"tel:6312495566\" style=\"text-decoration:none;color:#2d2d2d;font-size:13px\" target=\"_blank\"> O: 631-249-5566 | </a><a href=\"tel:5169728791\" style=\"text-decoration:none;color:#2d2d2d;font-size:13px\" target=\"_blank\">M: 516-972-8791</a></h4></td></tr></tbody></table></div></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"m_-7777394078950100749es-header\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"border-collapse:collapse;border-spacing:0px;table-layout:fixed!important;width:100%;background-color:transparent;background-repeat:repeat;background-position:center top\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" style=\"padding:0;Margin:0\"><table class=\"m_-7777394078950100749es-header-body\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#ffffff\" align=\"center\" style=\"border-collapse:collapse;border-spacing:0px;background-color:#ffffff;width:600px\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"left\" style=\"padding:0;Margin:0\"><table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"border-collapse:collapse;border-spacing:0px\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"left\" style=\"padding:0;Margin:0;width:600px\"><table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" role=\"presentation\" style=\"border-collapse:collapse;border-spacing:0px\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" style=\"padding-top:5px;Margin:0;font-size:0px\"><a style=\"text-decoration:none;color:#f9667e;font-size:14px\"><img src=\"https://www.prestigeequipment.com/flyers/featureflyers/8-haasheader4.png\" style=\"display:block;border:0;outline:none;text-decoration:none\" width=\"600\" class=\"m_-7777394078950100749adapt-img\" height=\"auto\" alt=\"\"></a></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><table cellpadding=\"0\" cellspacing=\"0\" class=\"m_-7777394078950100749weeklyspecs\" align=\"center\" style=\"border-collapse:collapse;border-spacing:0px;table-layout:fixed!important;width:100%\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" style=\"padding:0;Margin:0\"><table class=\"m_-7777394078950100749weeklyspecs\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;background-color:#ffffff;width:600px\" bgcolor=\"#ffffff\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"left\" style=\"Margin:0;padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px\"><table style=\"margin-bottom:0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tbody><tr><td valign=\"top\" style=\"width:600px;height:auto\"><table style=\"width:100%;margin-bottom:0\" cellspacing=\"0\"><tbody><tr><td valign=\"top\" style=\"width:590px;padding-top:5px;height:auto\"><table width=\"100%\" style=\"margin-bottom:0\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td align=\"center\" style=\"padding:0;width:590px;color:#000000;font-size:16px;font-family:&#39;Helvetica Neue&#39;,Helvetica,Arial,sans-serif;height:auto\" valign=\"top\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"590\"><tbody><tr><td><table width=\"auto\" border=\"0\"><tbody><tr><td scope=\"col\"><table width=\"285\" border=\"0\"><tbody><tr><td align=\"center\" valign=\"top\" style=\"background-color:#eeeeee\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamyLuOpuBlePnf4SfD5v-2BhFr1jCTkFIKBodlI3tfddomhdHovm-2BCCxfPpuZjRaZP5SnjZLqt-2Fw1iNDbFN-2Fro098l6N3qScDRfmZpvh-2BhnjGCCw-3D-3DZ4e__xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n99nIF5D7uoxHnUpJVlcP8JfB0gSvdZpbVr3sHtAItYr5eMZEh73FO1XaRMFRcE4It2ZbWwkQbjVfkMOQsCiKxEq0hurNihRNr9UFVVWWCwdGRbVkvjlCd9VGJ83si2jUtidboDEU21yhk0oWGpX6jCXIXtz9n-2Be03O-2Bljz8nXZX4kOFLTdSzAR2iUfH18q0v6O7BqQ7-2BqJEOm01lCgetCDc\" style=\"text-decoration:none;color:#fff\" target=\"_blank\"><img class=\"m_-7777394078950100749weekly-img\" src=\"https://www.prestigeequipment.com/flyers/FeatureFlyers/8-44347.png\" border=\"0\" style=\"width:285px;height:275px\" width=\"285\" height=\"275\" align=\"center\" hspace=\"0\" vspace=\"0\" alt=\"\"></a></td></tr><tr><td scope=\"col\" style=\"text-align:center;font-size:18px;color:#000000;line-height:25px;font-family:oswald,robot,sans-serif;font-style:normal;font-weight:normal;padding:8px;background-color:#ebebeb\"><strong>HAAS VF-11/40 CNC VERTICAL MACHINING CENTER</strong><br>X-120&quot;, Y-40&quot;, Z-30&quot;, 15K RPM, TSC, Probe, 40 ATC, BT-40, TSC, Haas CNC, 2018, #44347<br><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamyLuOpuBlePnf4SfD5v-2BhFr1jCTkFIKBodlI3tfddomhdHovm-2BCCxfPpuZjRaZP5SnjZLqt-2Fw1iNDbFN-2Fro098l6N3qScDRfmZpvh-2BhnjGCCw-3D-3DviGj_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98159Dy9uPqgN2yABfpQLTcERg-2FzPBsI6y0qUuWG0IShjC3EGqwrqXO5aaLb6-2FTorav2itstz5ptAX-2FNiTFyipbm4MeHyAoNEqXE0lM1usOWaKt6zb0cUufOk416ltEmhJNjAh-2B8sjCiCo51cLRdlbA4tO8c1PO8UiiMSjbMEOzshpT3HgOGiFnuL5qUtmbfpLEy9mGxL2T5vCeZSEfjXPK\" style=\"color:#ac191c;text-decoration:underline\" target=\"_blank\">VIEW FULL DETAILS</a></td></tr></tbody></table></td><td scope=\"col\"><table width=\"285\" border=\"0\"><tbody><tr><td align=\"center\" valign=\"top\" style=\"background-color:#eeeeee\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamzH356J0-2B8YZzi6orzP56P0YJyeLbROr0L9z6uCD5nGubCgqDSANrObYdft9fH4hRnd-2BiSrh8Q8JmrZAPXmfcI-2BZBI79U35QP-2FFyL7Oqmf4zw-3D-3DnL23_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98K2Hj7-2BH4bsPPxXRWD-2F6gJ4cwUy9efLv8QdbNmga-2FjpSRRm9UhJJFnmqVxgB4gSEb08AeSwCh0iZCRxplYi5EqOJ5tL1W8IDv0P-2F0568j7D4SWuv6r5FnxmA48PRtI0JMOmy4piCDQligJB8nR9yd-2BxwH4Rpke-2Bew1U73jET009rBpJPLdy9nwBxOcvsZ64B-2FMmJVG1WYGslujKmagOkFh\" style=\"text-decoration:none;color:#fff\" target=\"_blank\"><img class=\"m_-7777394078950100749weekly-img\" src=\"https://www.prestigeequipment.com/flyers/FeatureFlyers/8-44317.png\" border=\"0\" style=\"width:285px;height:275px\" width=\"285\" height=\"275\" align=\"center\" hspace=\"0\" vspace=\"0\" alt=\"\"></a></td></tr><tr><td scope=\"col\" style=\"text-align:center;font-size:18px;color:#000000;line-height:25px;font-family:oswald,robot,sans-serif;font-style:normal;font-weight:normal;padding:8px;background-color:#ebebeb\"><strong>HAAS VF-3YT/50 4-AXIS CNC VERTICAL MACHINING CENTER</strong><br>X-40&quot;, Y-26&quot;, 30 Sta. Side Mounted ATC, Wireless Probe, Pre-Wired 4th Axis , 10,000 RPM, 2011, #44317<br><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamzH356J0-2B8YZzi6orzP56P0YJyeLbROr0L9z6uCD5nGubCgqDSANrObYdft9fH4hRnd-2BiSrh8Q8JmrZAPXmfcI-2BZBI79U35QP-2FFyL7Oqmf4zw-3D-3D_KP4_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2BKLaJtzUsofBqouVqlscFl0B7mELeWqRPFCab2kkTPKwCWZIa8oI95DoiweBjkXidwzMDTafvuLEUH-2FiU-2Fn6j4AnyG9ZpJNyZj6zVLc0l-2BKemZy2VBgsqYwZgXMFoqu4Zw79-2Bq4uj2iaEbfsWWIQbGbhCRDKEzopx2SwE5Wmm9sRE7INkzOIs9qFAQPB9ARnjmcZHZJLEwN0M1SpRebVKI\" style=\"color:#ac191c;text-decoration:underline\" target=\"_blank\">VIEW FULL DETAILS</a></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><table cellpadding=\"0\" cellspacing=\"0\" class=\"m_-7777394078950100749weeklyspecs\" align=\"center\" style=\"border-collapse:collapse;border-spacing:0px;table-layout:fixed!important;width:100%\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" style=\"padding:0;Margin:0\"><table class=\"m_-7777394078950100749weeklyspecs\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;background-color:#ffffff;width:600px\" bgcolor=\"#ffffff\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"left\" style=\"Margin:0;padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px\"><table style=\"margin-bottom:0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tbody><tr><td valign=\"top\" style=\"width:600px;height:auto\"><table style=\"width:100%;margin-bottom:0\" cellspacing=\"0\"><tbody><tr><td valign=\"top\" style=\"width:590px;padding-top:5px;height:auto\"><table width=\"100%\" style=\"margin-bottom:0\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td align=\"center\" style=\"padding:0;width:590px;color:#000000;font-size:16px;font-family:&#39;Helvetica Neue&#39;,Helvetica,Arial,sans-serif;height:auto\" valign=\"top\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"590\"><tbody><tr><td><table width=\"auto\" border=\"0\"><tbody><tr><td scope=\"col\"><table width=\"285\" border=\"0\"><tbody><tr><td align=\"center\" valign=\"top\" style=\"background-color:#eeeeee\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamyEGe6ppo3IPxlPhH1No9JgGXBTzcgHs9fM9-2FfCNnJtPTjKA80l3FAJAQWjRFfOnd6C0sc58EcS0bVp4qYYhEXVJlcylSsglutTkcljiSh6Pg-3D-3Dx3oe_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FtU0STLbDL1KMuueHTWffLBAIANsg058QsI10fBwEkemWaVKs9lNYMuW2SzOV7n4yF801diT3ztvYUcYz-2BxLA5-2B2S8GNjc7yHuahD4DAl-2FcRLg0Oj9Ib0aBHbeOW00aZkQPqXMbST3ihkz8bEX8ccahH4sn628NoiAknH3obbERquXV3XBImQgc9xvy2zAqFwTNyBl2sEiebTw-2BHsaLp6z\" style=\"text-decoration:none;color:#fff\" target=\"_blank\"><img class=\"m_-7777394078950100749weekly-img\" src=\"https://www.prestigeequipment.com/flyers/FeatureFlyers/8-44302.png\" border=\"0\" style=\"width:285px;height:275px\" width=\"285\" height=\"275\" align=\"center\" hspace=\"0\" vspace=\"0\" alt=\"\"></a></td></tr><tr><td scope=\"col\" style=\"text-align:center;font-size:18px;color:#000000;line-height:25px;font-family:oswald,robot,sans-serif;font-style:normal;font-weight:normal;padding:8px;background-color:#ebebeb\"><strong>HAAS VF-5/50XT CNC VERTICAL MACHINING CENTER</strong><br>X-60&quot;, Y-26&quot; Z-25&quot;, #50 Taper, 7,500 RPM, 4th/5th Axis Ready, 30 ATC, Chip Auger, Haas CNC, #44302<br><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamyEGe6ppo3IPxlPhH1No9JgGXBTzcgHs9fM9-2FfCNnJtPTjKA80l3FAJAQWjRFfOnd6C0sc58EcS0bVp4qYYhEXVJlcylSsglutTkcljiSh6Pg-3D-3D3MA__xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2BTXgDNyV5GVGY-2BmGohiku88BcgP7OLVEknp8bsupbSRmAjcpgWh6m-2FMclLINcM9kiLNYzEgZMb8HKZzbRno4bNwqF-2FKdTwrcTcj24dY80rvBf-2ByjDaB0UurhC66izVtUZb5W-2B42fyCwrmcCTiF-2F2BooKCIy1Jm9ZGxZ2ezLNOoRGGX5OfM0Ux8O26oUThs1vMUQ82PXsvFQPWALLvQb4Js\" style=\"color:#ac191c;text-decoration:underline\" target=\"_blank\">VIEW FULL DETAILS</a></td></tr></tbody></table></td><td scope=\"col\"><table width=\"285\" border=\"0\"><tbody><tr><td align=\"center\" valign=\"top\" style=\"background-color:#eeeeee\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3tovCKvewOMYeyHinOEAM-2F2ezxiiTgZhvhZTw0BwhLvtdJTjyqia3rVnxyVMs8THy3498cmuP9qg1W-2BZe-2BDb7EoPxkLi-2FoQn9-2BQSAz5RPYbXuXKSJVMvrtoQ-2FB0Y3wZ5esjuqsTHYtMcaGYnG6WIdpgNjoP7kKvZBHPxyaOWBjY8-3DEJhy_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2BrtFnqrZ5TbjUahSA2D4wwtfCAX7qqN3-2FpL9Mecp2ioKb4pJvplmefSpXg09u9aXgRr1SBIQxXdoQ-2F1njXtfKSraOY2aGAVIolkhwX8wAQK4Ov4erw5HrMLlUJKqGYbZeSjGfPezer-2BjWxRAXNXhoTHj4AFKTWNfcLNV46-2F4RgGm4IXc8EEfvHoCf-2B36iLxdGcNHOyanhZpz0RnkR7PJzU\" style=\"text-decoration:none;color:#fff\" target=\"_blank\"><img class=\"m_-7777394078950100749weekly-img\" src=\"https://www.prestigeequipment.com/flyers/FeatureFlyers/8-44301.png\" border=\"0\" style=\"width:285px;height:275px\" width=\"285\" height=\"275\" align=\"center\" hspace=\"0\" vspace=\"0\" alt=\"\"></a></td></tr><tr><td scope=\"col\" style=\"text-align:center;font-size:18px;color:#000000;line-height:25px;font-family:oswald,robot,sans-serif;font-style:normal;font-weight:normal;padding:8px;background-color:#ebebeb\"><strong>HAAS EC-1600 YZT HORIZONTAL MACHINING CENTER</strong><br>X-64&quot;, Y-50&quot;, Z-40&quot;, 30&quot; Rotary Platter, 64&quot; x 32&quot; Table, 10K RPM, TSC, 30 HP, 2013, #44301<br><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3tovCKvewOMYeyHinOEAM-2F2ezxiiTgZhvhZTw0BwhLvtdJTjyqia3rVnxyVMs8THy3498cmuP9qg1W-2BZe-2BDb7EoPxkLi-2FoQn9-2BQSAz5RPYbXuXKSJVMvrtoQ-2FB0Y3wZ5esjuqsTHYtMcaGYnG6WIdpgNjoP7kKvZBHPxyaOWBjY8-3Ds-qt_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98K1NRcskFivWGivuw4ANxUDiExM1SOR0DKub3tYtxv0ErQW7lO4cGx9Zwnn0sv1nvToUHh145ju-2Fi-2B21CIEldjb7sYF4iHAzGgPqCc1BPKX-2BZ9oFbIUOH0NcXNIP1ET1zqtBczQfQUnfvIyJ2u8LgX5olCS83Ojqg1x4vJ62n9BXO-2By-2BqS3RJpOaxcaooNg04mwoUxwqFw1-2FCufBfydRv2\" style=\"color:#ac191c;text-decoration:underline\" target=\"_blank\">VIEW FULL DETAILS</a></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><table cellpadding=\"0\" cellspacing=\"0\" class=\"m_-7777394078950100749weeklyspecs\" align=\"center\" style=\"border-collapse:collapse;border-spacing:0px;table-layout:fixed!important;width:100%\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" style=\"padding:0;Margin:0\"><table class=\"m_-7777394078950100749weeklyspecs\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;background-color:#ffffff;width:600px\" bgcolor=\"#ffffff\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"left\" style=\"Margin:0;padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px\"><table style=\"margin-bottom:0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tbody><tr><td valign=\"top\" style=\"width:600px;height:auto\"><table style=\"width:100%;margin-bottom:0\" cellspacing=\"0\"><tbody><tr><td valign=\"top\" style=\"width:590px;padding-top:5px;height:auto\"><table width=\"100%\" style=\"margin-bottom:0\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td align=\"center\" style=\"padding:0;width:590px;color:#000000;font-size:16px;font-family:&#39;Helvetica Neue&#39;,Helvetica,Arial,sans-serif;height:auto\" valign=\"top\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"590\"><tbody><tr><td><table width=\"auto\" border=\"0\"><tbody><tr><td scope=\"col\"><table width=\"285\" border=\"0\"><tbody><tr><td align=\"center\" valign=\"top\" style=\"background-color:#eeeeee\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamxkiUGS2Xkuxd80KifDHiuH-2B5PKBCWSvcpAFQqnYOJZB23m5Wbpm12dcMeHxQ-2Fo00jB1HWXzhwJn8dkup9OByNdQNYQfTwWeDa-2FZsDAqKPTbw-3D-3DHvYe_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FQsd9c-2ByMjBW7VqtpnT2lQrDWvj4LekJ0H1LDoigPBi0P45r-2Bx49f-2FlI6MAoxRgHlwEzLKKb4tBDYkvaVrAR35499ehUP-2FYIjeCOWnQiX79QzcBcxIGjZO8-2BwBK8x1H5JZ6Xl3anYfs4V7bKxb0QeBIvqu9MCFhNJL2fLeSPQlRy9bgVTBW2evXuxJphICVmrsuFmggWT5p6RL6tdtMJg1\" style=\"text-decoration:none;color:#fff\" target=\"_blank\"><img class=\"m_-7777394078950100749weekly-img\" src=\"https://www.prestigeequipment.com/flyers/FeatureFlyers/8-44300.png\" border=\"0\" style=\"width:285px;height:275px\" width=\"285\" height=\"275\" align=\"center\" hspace=\"0\" vspace=\"0\" alt=\"\"></a></td></tr><tr><td scope=\"col\" style=\"text-align:center;font-size:18px;color:#000000;line-height:25px;font-family:oswald,robot,sans-serif;font-style:normal;font-weight:normal;padding:8px;background-color:#ebebeb\"><strong>HAAS VF-6/50 CNC VERTICAL MACHINING CENTER</strong><br>X-64&quot;, Y-32&quot;, Z-30&quot;, 64&quot; x 28&quot; Table, 10K RPM, 30-ATC, TSC, 4th &amp; 5th Axis Ready, Haas CNC, 2011, #44300<br><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamxkiUGS2Xkuxd80KifDHiuH-2B5PKBCWSvcpAFQqnYOJZB23m5Wbpm12dcMeHxQ-2Fo00jB1HWXzhwJn8dkup9OByNdQNYQfTwWeDa-2FZsDAqKPTbw-3D-3DDHVf_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98Rc7r-2FG8PUcXZDi301mNzlNpOgvqqkzuFooEfFd1DQ-2Fw6wtBkLoCvj30EPYk8L-2FMflRdcgM1SpRBuTRjARkIZwTVX6DgNys-2FbcJITor4s0HqHDx6iU7nVuuAAplLsN8kYxzPeLHT97y2ZIPphDFUT0ZL4P-2FGKMjSujBosypMygVeae2zz1nFK-2FbRff0J2ViGzMJ-2BsqQPinHfymWDONg0p-2F\" style=\"color:#ac191c;text-decoration:underline\" target=\"_blank\">VIEW FULL DETAILS</a></td></tr></tbody></table></td><td scope=\"col\"><table width=\"285\" border=\"0\"><tbody><tr><td align=\"center\" valign=\"top\" style=\"background-color:#eeeeee\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6G1rOkM4-2BTOB9NWrPdfi-2FOWtfCNSM2ktA6mzusbaQv-2F81qcJAc0jDWmAZK-2B2bCTvV5K-2F6Ax7blAOr7nlb3QFbatZUauvVWNLqh-2BF-2FFp2y1Za-2BesRuEkUsM5zhoGiYdKWBpqJGnFRyz-2FXsY-2B9WEo3WB42GTi_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98a-2BQ0a3a-2FZBPYIvnRWEQ2dyj7s3-2BUKq-2B-2FimaNwsI-2B98dV-2F77oDo-2FYVGgJSZUUIabFTTWw-2B0t1XTg-2FiYEKROuZtC0YJmQoF5TUclpPwQee9NCJHUs4esAFijZp9xzASzIu9TRf0J8Dhh5Ud50y3GE08qWuc35UNJRZHxvt-2FpYrdTM2MxmOeQwMsV5slQ0WRO4l728Rond6doT-2Bv9-2Bx2TOVI\" style=\"text-decoration:none;color:#fff\" target=\"_blank\"><img class=\"m_-7777394078950100749weekly-img\" src=\"https://www.prestigeequipment.com/flyers/FeatureFlyers/8-44220.png\" border=\"0\" style=\"width:285px;height:275px\" width=\"285\" height=\"275\" align=\"center\" hspace=\"0\" vspace=\"0\" alt=\"\"></a></td></tr><tr><td scope=\"col\" style=\"text-align:center;font-size:18px;color:#000000;line-height:25px;font-family:oswald,robot,sans-serif;font-style:normal;font-weight:normal;padding:8px;background-color:#ebebeb\"><strong>HAAS ST30 CNC TURNING CENTER</strong><br>21&quot; Swing, 32.5&quot; Centers, <br>V12 Turret, Tailstock, Chip Conveyor, Steadies, Haas CNC Control, 2018, #44220<br><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6G1rOkM4-2BTOB9NWrPdfi-2FOWtfCNSM2ktA6mzusbaQv-2F81qcJAc0jDWmAZK-2B2bCTvV5K-2F6Ax7blAOr7nlb3QFbatZUauvVWNLqh-2BF-2FFp2y1Za-2BesRuEkUsM5zhoGiYdKWBpqJGnFRyz-2FXsY-2B9WEo3WB4-Etn_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2B8AhhSWa-2FabAsPK7tmeKKHz0gKPh42XNRdpc81ZbPl2yNRy8bOhUBFxH5E0hQ1fzylntM2N7M4m5T6s45NoIXlirsANTlJKH7dU8-2BfDxehLlgF400bW-2BQSI0GM2hSCVnWnCmq-2FPqr2cuK36BMzcc789zXbjbtETDv2Ss4DqEZqKF5wK8Onh0MWSPsh3U6ivvbWdIOJyeiEXrCsJlw7EcNq\" style=\"color:#ac191c;text-decoration:underline\" target=\"_blank\">VIEW VIDEO / VIEW FULL DETAILS</a></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><table cellpadding=\"0\" cellspacing=\"0\" class=\"m_-7777394078950100749weeklyspecs\" align=\"center\" style=\"border-collapse:collapse;border-spacing:0px;table-layout:fixed!important;width:100%\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" style=\"padding:0;Margin:0\"><table class=\"m_-7777394078950100749weeklyspecs\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;background-color:#ffffff;width:600px\" bgcolor=\"#ffffff\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"left\" style=\"Margin:0;padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px\"><table style=\"margin-bottom:0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tbody><tr><td valign=\"top\" style=\"width:600px;height:auto\"><table style=\"width:100%;margin-bottom:0\" cellspacing=\"0\"><tbody><tr><td valign=\"top\" style=\"width:590px;padding-top:5px;height:auto\"><table width=\"100%\" style=\"margin-bottom:0\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td align=\"center\" style=\"padding:0;width:590px;color:#000000;font-size:16px;font-family:&#39;Helvetica Neue&#39;,Helvetica,Arial,sans-serif;height:auto\" valign=\"top\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"590\"><tbody><tr><td><table width=\"auto\" border=\"0\"><tbody><tr><td scope=\"col\"><table width=\"285\" border=\"0\"><tbody><tr><td align=\"center\" valign=\"top\" style=\"background-color:#eeeeee\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamzCdBKD88F-2FsXMhtUbgGNlyvshim1Osyxi0U74B30s02HRPjx9pF7-2BSv1-2BDRodqURLc4sbUnQj7hAOjXZUKC2LaUjcv5JIMFbpuT5F-2FJW8S5Q-3D-3D-EMh_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FAnqi6IwK4l8kbm8JHQ1MXIp-2FJ0iR4dNwSdl2bAmhybzvINA1dznALMIC1J2MSHB4TYuulFfyQ7vWec-2BIetIscQujwrtNJZG7fs9TFv5mTFqLw6l30D-2BMcjzRKxCfNE7HlGd-2FsEDM7fk5k6lyVyOOnFIyBqF30-2By1vK9e7P9nRL1zK1ptXEn383zgMlTzkLDqCGt1aHltW-2F71SBpf-2B8-2BZD\" style=\"text-decoration:none;color:#fff\" target=\"_blank\"><img class=\"m_-7777394078950100749weekly-img\" src=\"https://www.prestigeequipment.com/flyers/FeatureFlyers/8-44051.png\" border=\"0\" style=\"width:285px;height:275px\" width=\"285\" height=\"275\" align=\"center\" hspace=\"0\" vspace=\"0\" alt=\"\"></a></td></tr><tr><td scope=\"col\" style=\"text-align:center;font-size:18px;color:#000000;line-height:25px;font-family:oswald,robot,sans-serif;font-style:normal;font-weight:normal;padding:8px;background-color:#ebebeb\"><strong>HAAS VF-6/50 CNC VERTICAL MACHINING CENTER</strong><br>X-64&quot;, Y-32&quot;, Z-30&quot;, 7,500 RPM, CAT 50, 30-ATC, 2-APC, Chip Conveyor, Haas CNC, 2012, #44051<br><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamzCdBKD88F-2FsXMhtUbgGNlyvshim1Osyxi0U74B30s02HRPjx9pF7-2BSv1-2BDRodqURLc4sbUnQj7hAOjXZUKC2LaUjcv5JIMFbpuT5F-2FJW8S5Q-3D-3DOdZH_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2BoqpumL-2B9lVQTV18hJSH-2FuqJ3kVF1WYIRsXrvErdpkdDeqo1j8quv4CzXnsmQifCyV2agYGv8GJ1j7sLZORJic1KwzMB7uyVx65yvWe0vyTPJ3FskEwCbh73geo9J0p0o11Hq8-2Fy-2BvHnuX7lCsyJkwUAM-2BUJW-2FXFWh4XdBt11asebt6v-2BZFF4YKPaq5PHMTm4TsO0S23OfDYVjy7orzIIp\" style=\"color:#ac191c;text-decoration:underline\" target=\"_blank\">VIEW VIDEO / VIEW FULL DETAILS</a></td></tr></tbody></table></td><td scope=\"col\"><table width=\"285\" border=\"0\"><tbody><tr><td align=\"center\" valign=\"top\" style=\"background-color:#eeeeee\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamwn6fGxW57ySINpnpQyONRXp3YrPDp5MRVoyjSj0jP9-2B0rwkcenWkFYYfK1uv3ekxdYuJh7bY5sNvSWS5CQYKbFtbEcAYWIXYj0ChtZr3rjBA-3D-3DvF6H_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98c2S4w05Cn-2BLHUIZ-2Fp9P-2BEOAeEhLBtXMj1Gh96JluMvzTtg87ZCWVAVsZbJ80TM-2BYEbqGJ3PA9AIZeOpoWtckxJnRSf4aGq1hFnHtUcOaUxvwgi3DytlTti5nFM1xuc4xxePOcL-2F7kUOBcfXO62acco4DHsjLBTzptwaxCjp0tUoXZQ7abJPwwBLzDtXhWCPvFUU-2BFb1GuUhIVzs10S34Y\" style=\"text-decoration:none;color:#fff\" target=\"_blank\"><img class=\"m_-7777394078950100749weekly-img\" src=\"https://www.prestigeequipment.com/flyers/FeatureFlyers/8-43584.png\" border=\"0\" style=\"width:285px;height:275px\" width=\"285\" height=\"275\" align=\"center\" hspace=\"0\" vspace=\"0\" alt=\"\"></a></td></tr><tr><td scope=\"col\" style=\"text-align:center;font-size:18px;color:#000000;line-height:25px;font-family:oswald,robot,sans-serif;font-style:normal;font-weight:normal;padding:8px;background-color:#ebebeb\"><strong>HAAS VF-2SS CNC <br>VERTICAL MACHINING CENTER</strong><br>30 Station Side Mount ATC, Renishaw Probe, Low Hours, Like New, 2018, #43584<br><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamwn6fGxW57ySINpnpQyONRXp3YrPDp5MRVoyjSj0jP9-2B0rwkcenWkFYYfK1uv3ekxdYuJh7bY5sNvSWS5CQYKbFtbEcAYWIXYj0ChtZr3rjBA-3D-3D0yv0_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FqKKXJNzLfcL-2Fhlh4uKj0dsYl0L8I6p4wCu8D9aDS-2FPfAQE2bLmQiuL-2FBdK1oWZEc-2Ft9EcD4qACYe7dPIetntpgpfbb-2BlClktYmgnCJU3wSnCOnPVZo4w-2FVFx-2BwvHa1NaceHXO37nXEYGl99x22J0FdNS0hd3ChuOWXuykNNmpXJvV99RMqXrkC5Yt-2Bo-2BtVXWejnNSarrLH7fCk1X-2BE7ke\" style=\"color:#ac191c;text-decoration:underline\" target=\"_blank\">VIEW VIDEO / VIEW FULL DETAILS</a></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><table cellpadding=\"0\" cellspacing=\"0\" class=\"m_-7777394078950100749es-content\" align=\"center\" style=\"border-collapse:collapse;border-spacing:0px;table-layout:fixed!important;width:100%\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" style=\"padding:0;Margin:0\"><table class=\"m_-7777394078950100749es-content-body\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;background-color:#186997;width:600px\" bgcolor=\"#186997\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"left\" style=\"Margin:0;padding-top:5px;padding-bottom:5px\"><table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:collapse;border-spacing:0px\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" valign=\"top\" style=\"padding:0;Margin:0;width:580px\"><table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"border-collapse:collapse;border-spacing:0px\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" class=\"m_-7777394078950100749es-m-txt-c\" style=\"padding:10px;Margin:0\"><p style=\"Margin:0;font-family:oswald,robot,sans-serif;line-height:33px;color:#ffffff;font-size:27px\"><a href=\"mailto:scott@prestigeequipment.com\" style=\"text-decoration:none;color:#ffffff;line-height:33px;font-size:27px\" target=\"_blank\"><b style=\"font-size:27px;line-height:33px;color:#ffffff\"><strong>CONTACT SCOTT LINZER FOR MORE INFORMATION</strong><br></b></a><a href=\"mailto:scott@prestigeequipment.com\" style=\"text-decoration:none;color:#ffffff;font-size:20px;font-family:oswald,robot,sans-serif\" target=\"_blank\">scott@prestigeequipment.com | </a><a href=\"tel:6312495566\" style=\"text-decoration:none;color:#ffffff;font-size:19px;line-height:23px;font-family:oswald,robot,sans-serif\" target=\"_blank\">O: 631-249-5566 | </a><a href=\"tel:5169728791\" style=\"text-decoration:none;color:#ffffff;font-size:19px;line-height:23px;font-family:oswald,robot,sans-serif\" target=\"_blank\">M: 516-972-8791</a></p></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><table cellpadding=\"0\" cellspacing=\"0\" class=\"m_-7777394078950100749es-content\" align=\"center\" style=\"border-collapse:collapse;border-spacing:0px;table-layout:fixed!important;width:100%\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" style=\"padding:0;Margin:0\"><table class=\"m_-7777394078950100749es-content-body\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;background-color:#fff;width:600px\" bgcolor=\"#fff\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" style=\"Margin:0;padding-top:5px;padding-bottom:0px;padding-left:10px;padding-right:10px\"><table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:collapse;border-spacing:0px\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" valign=\"top\" style=\"padding:0;Margin:0;width:580px\"><table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"border-collapse:collapse;border-spacing:0px\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" class=\"m_-7777394078950100749es-m-txt-c\" style=\"padding:0px;Margin:0;background-color:#fff\"><p style=\"Margin:0;font-family:oswald,robot,sans-serif;line-height:50px;color:#00000;font-size:40px\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6E6oCSy3P3qwEEyjHSbcR1BHYk0ylK2EUaPdAsdL-2BZeXP2cGbni16Q2nQONn6zSyYXC3CgrP1dkj835eeg9c0izy-2FJbCG2AeYuWyX50EFQPI-2BzAjMkf59hvOljKXkPHdoY-3DU4d8_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98PpBK-2FyuNfXmjKsBUszMDQs8x8x8JPS0Kxn7KqNrOnS-2BrwzQpSSYWBqveHW9yrMcX8FGIZaWarPZ-2FK0HFip-2F2fitj2m3WxZFFVzEcpc-2FceuUE4dqF2ZC07kYWumRtI4wyo79TXlY04RvX66XWraYQMEmqOT-2BcBKBvkGj2-2FzRtV-2BcU1tPCxyk0Hnhs2PKqkU1Bw0ePDUHQ-2FvwIU8lKZRA27\" style=\"text-decoration:none;color:#000000;font-size:40px;line-height:50px\" target=\"_blank\"><span style=\"color:#000;font-size:40px;line-height:45px\"><strong>What Do </strong></span></a><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6E6oCSy3P3qwEEyjHSbcR1BHYk0ylK2EUaPdAsdL-2BZeXP2cGbni16Q2nQONn6zSyYXC3CgrP1dkj835eeg9c0izy-2FJbCG2AeYuWyX50EFQPI-2BzAjMkf59hvOljKXkPHdoY-3DzfJN_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98CvdyXLvUMU4yP-2BtRN8fHBCN9XCUcivasqX0gg4QjLvlCn02j69sMUbadYNVsXgjUXwMCRW7X2UX71Wnmh2rvQ0YwU8DSInnWck3DVNJy9o5cTgf8DeKQAql549YkbpU1FdNYhgWA2d2LeSAwfMQJs1P4KPDm-2FMuTR62RHjNvdT6M1Xb3LOJFXzIZB9oP-2FnH4RLLKZVZHdiM4XGrol-2Btjd\" style=\"color:#186997;text-decoration:underline\" target=\"_blank\"><span style=\"color:#186997;font-size:40px;line-height:50px\"><strong><u>YOU</u></strong></span></a><span style=\"color:#000;font-size:40px;line-height:50px\"><strong> Have For Sale?</strong></span></p><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6E6oCSy3P3qwEEyjHSbcR1BHYk0ylK2EUaPdAsdL-2BZeXP2cGbni16Q2nQONn6zSyYXC3CgrP1dkj835eeg9c0izy-2FJbCG2AeYuWyX50EFQPI-2BzAjMkf59hvOljKXkPHdoY-3Dl3r6_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n99TXiKuPVHaZ03oJDstTcZDrmv8SWiANuxl6gBUrDBV2XfQG61eR8xYQ04mWOxVuHXS2iWtK43qY95kZcn-2FTJ-2FjauNM2dT-2FBEhTHPrPjZoD-2FBWTVljzCBOWDHI-2B8-2F0myPFHvkCOdygKXaVBs0KqNjSjJQEuxQC9RA89937mdpHia0eBHh-2FYL-2Feife85CJe1VIxRGq3g1Wep07XOPXVvQWrz\" style=\"Margin:0;font-family:oswald,robot,sans-serif;font-size:20px;line-height:35px;text-decoration:none\" target=\"_blank\"><span style=\"color:#000;font-size:20px;line-height:30px\">We Specialize in Purchasing All Types Of Industrial Machinery, Entire Facilities and Industrial Real Estate. Get Started Now!</span></a></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><table cellpadding=\"0\" cellspacing=\"0\" class=\"m_-7777394078950100749es-content\" align=\"center\" style=\"border-collapse:collapse;border-spacing:0px;table-layout:fixed!important;width:100%\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" style=\"padding:0;Margin:0\"><table class=\"m_-7777394078950100749es-content-body\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;background-color:#fff;width:600px\" bgcolor=\"#fff\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"left\" style=\"Margin:0;padding-top:10px;padding-bottom:10px;padding-left:100px;padding-right:100px\"><table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:collapse;border-spacing:0px\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" valign=\"top\" style=\"padding:0;Margin:0;width:500px\"><table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"border-collapse:collapse;border-spacing:0px\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" class=\"m_-7777394078950100749es-m-txt-c\" style=\"padding:5px;Margin:0;background-color:#000\"><p style=\"Margin:0;font-family:oswald,robot,sans-serif;color:#fff;font-size:20px;line-height:25px;padding:5px\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6E6oCSy3P3qwEEyjHSbcR1BHYk0ylK2EUaPdAsdL-2BZeXP2cGbni16Q2nQONn6zSyYXC3CgrP1dkj835eeg9c0izy-2FJbCG2AeYuWyX50EFQPI-2BzAjMkf59hvOljKXkPHdoY-3D-BMB_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FNe2e8eWBkpFQq-2FjkVlLvZT7-2BWANNYcWn5epGoN9kHSxvXZTzzbXC9W-2B4xpnKbsROz-2Bdt0l1JlOu23n2vFQLv-2BawSJWXyioqh7YWCOnjQm8AxE88ndj1Cyt-2FNvKN0a3DLZddvwcB0FcahoyflPDKaSiis76-2BtnLhKWDlBgu8zRwFcsPGeX4Lcflkt6p28ExkSJZg1KBFUMuXGTVZiHIVzk\" style=\"text-decoration:none;color:#fff;font-size:20px;line-height:25px;display:block\" target=\"_blank\">SELL YOUR MACHINERY</a></p></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"m_-7777394078950100749es-header\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"border-collapse:collapse;border-spacing:0px;table-layout:fixed!important;width:100%;background-color:transparent;background-repeat:repeat;background-position:center top\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" style=\"padding:0;Margin:0\"><table class=\"m_-7777394078950100749es-header-body\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#292929\" align=\"center\" style=\"border-collapse:collapse;border-spacing:0px;background-color:#292929;width:600px\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"left\" style=\"padding:0;Margin:0\"><table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"border-collapse:collapse;border-spacing:0px\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"left\" style=\"padding:0;Margin:0;width:600px\"><table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" role=\"presentation\" style=\"border-collapse:collapse;border-spacing:0px\"><tbody><tr style=\"border-collapse:collapse\"></tr><tr style=\"border-collapse:collapse\"><td align=\"center\" style=\"Margin:0;padding-bottom:20px;padding-top:20px;padding-left:20px;padding-right:20px;font-size:0px\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.YZa2-2Fv95qyaQ0Esd0DqHPseu6wZUcWbsNdJ5oijrR5s1ui7hWsVSf9yZfOZ6R210cvFKjzcRVGxEBdy4e4oUzz3514WCQMNeljRjlGJsCLwGjPEqvE8Anc-2BjEHrT7C4UfW-2BcUZXarW8uV2MZeNQ7Xw-3D-3DsnnO_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n99RCidRv9Y3ISafViKGK7vNMHKfXbz0jbpTCWu5jN8eDOHmH0516F9C2J3pn0ukc9PXg6AXS4EljGf9bs8cno7-2BXx049mIkpjvKs7vxCqR7U1GvMQ3-2FsCqJVKWWERajCAW1TocX6qJZSzfpVNQtX-2B9EZt7-2By-2FF3-2Bdu1pg-2B7-2FySCnPbFtBecrHaxJ-2FpGmGcyH-2FU-2F5puIMivrPgGORYfcxUjb\" style=\"text-decoration:none;color:#f9667e;font-size:14px\" target=\"_blank\"><img src=\"http://www.prestigeequipment.com/r2d_images/prestigeequipmentlogo.jpg\" alt=\"\" style=\"display:block;border:0;outline:none;text-decoration:none\" width=\"200\" height=\"auto\"></a></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><table cellpadding=\"0\" cellspacing=\"0\" class=\"m_-7777394078950100749es-footer\" align=\"center\" style=\"border-collapse:collapse;border-spacing:0px;table-layout:fixed!important;width:100%;background-color:transparent;background-repeat:repeat;background-position:center top\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" style=\"padding:0;Margin:0\"><table class=\"m_-7777394078950100749es-footer-body\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"border-collapse:collapse;border-spacing:0px;background-color:transparent;width:600px\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"left\" style=\"Margin:0;padding-top:20px;padding-bottom:5px;padding-left:20px;padding-right:20px\"><table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"border-collapse:collapse;border-spacing:0px\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"left\" style=\"padding:0;Margin:0;width:560px\"><table style=\"border-collapse:collapse;border-spacing:0px;background-position:center top\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" role=\"presentation\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" style=\"padding:0;Margin:0;padding-bottom:15px;font-size:0\"><table cellpadding=\"0\" cellspacing=\"0\" class=\"m_-7777394078950100749es-table-not-adapt m_-7777394078950100749es-social\" role=\"presentation\" style=\"border-collapse:collapse;border-spacing:0px\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" valign=\"top\" style=\"padding:0;Margin:0;padding-right:10px\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9Jz3zjwieyJiFjkU1fFIuufD0a-2Bz0DtiY1KWMz0lEx4KGZ-2FTyk2Vzg3wbgumErZX97XLINv6Afj-2BH87yxWvF5y6nlZWT17luq-2F1dKHWI991SGNgG8DGO0-2Bi5Mt-2FIoYytqqdyx-2BZJS-2BlRA-2FWfHNBSzkwk-3DdA2r_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2BuEBT2T9P80Z54-2Bwz75t6QjJHaktLV5mOVXcxvMvJzK00vXoC9POf1PKlb5nGAlF4hyzo5LtZak1QcQI0WhCreozVLHZZ2pISRL0guEPeuowgmmA-2Fp0cLxUqh0-2F5FqXi3px8WenxipvDRrJ8JYk9eFjdMwfz4gai12R3jh3pRyBEd0PT4C3PeVk0F2SacpDb02fEc3oSvpXg0Cd8wUPPE7\" style=\"text-decoration:none;color:#f9667e;font-size:14px\" target=\"_blank\"><img title=\"Facebook\" src=\"https://dccld.stripocdn.email/content/assets/img/social-icons/logo-black/facebook-logo-black.png\" alt=\"Fb\" height=\"32\" width=\"32\" style=\"display:block;border:0;outline:none;text-decoration:none\"></a></td><td align=\"center\" valign=\"top\" style=\"padding:0;Margin:0;padding-right:10px\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9J-2FYv5jvGctGIq8NeI6NupK9pUgnH5WK47Gzu4pxRn6Bp2GFkni4YbxtqgYMMZ7NVr6ESRA2mwr-2Fw7RUSev0PQS-2F0Hpw0hkrRf2fJMyRTYkA3z-2BZrESPzdfvHCOtX3G7k7Q-3D-3DCGRG_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FBpUhmkyjJZcnxzN2qOG9x8DwZ8SpI6QEjdtQPCceDNzzvB4nbrKEFBpIo2-2FglWxljdesSTUL1ayVyx911oXvSOzsCPITXiDvf7Xp-2FvHlVRHWlvY7VAGe-2BtTDCSXCKJfqwJp0d83jO-2Bg2iL6GOTt03P76RlbvPPqo6L0VKtBO3xzKBE6pMYMyNXpWgVfco19VAmyFl9q4hAqgCkuxPLAIS\" style=\"text-decoration:none;color:#f9667e;font-size:14px\" target=\"_blank\"><img title=\"Twitter\" src=\"https://dccld.stripocdn.email/content/assets/img/social-icons/logo-black/twitter-logo-black.png\" alt=\"Tw\" height=\"32\" width=\"32\" style=\"display:block;border:0;outline:none;text-decoration:none\"></a></td><td align=\"center\" valign=\"top\" style=\"padding:0;Margin:0;padding-right:10px\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9Jwnk8LukbCGrW8NY7quF6Z13h38WvTrR-2BeCit6cHlknKzpYvUxqwMLc5PyEeTiT09p92Sq9b6sJEUha4UxG-2B8BIAYgIEZinoLhxQsrCMnwTYLLBrwH0050mK6I0ih9GGic-2BZ7ETRuxs-2BnPVZCddCZxQ-3Dj_WL_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FFzOO3K1jMVGmtOszdwySTqpr36AllTtr4L1kFG8QRKrdzuqCOwXjGs4ZFwQ21GTdSsPwrhUIeheFQyiWdx-2BTMvp1GBVtvNSWXUlsPotD6OHyLs2XeDPrSK5L3w2N4rVXhlJJSBTYavYXJVG68rei4BBuqEQMgQsmid9NOn-2BoYuE0-2FdWOtuP-2B8ePQHSEnCqm-2Bjvk0TEhIiRo2J0nQWeoa6\" style=\"text-decoration:none;color:#f9667e;font-size:14px\" target=\"_blank\"><img title=\"Youtube\" src=\"https://dccld.stripocdn.email/content/assets/img/social-icons/logo-black/youtube-logo-black.png\" alt=\"Yt\" height=\"32\" width=\"32\" style=\"display:block;border:0;outline:none;text-decoration:none\"></a></td><td align=\"center\" valign=\"top\" style=\"padding-right:10px;Margin:0\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9J-2BGYKMKHGuWL9fJq6hIQuE3EQqt8U-2BnTv4c7hpyJmdIv5Vty-2BvLKBwJI1ujXHOKPcP8-2FSYCgdFkC66EaF1fVLjtVnfbGXiiYBWOaU4Dt-2F4XF5AQ7Y-2FY9vk6gn5WJf6hF2YM7Pxl1klxMlCIPhtz3bM8-3DGblY_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9919QevEhTndp2I02Ck-2BIP-2BIB1HMti-2B1PmfiFBAkMNdfWoc3mnhczl9lTaa0zIZ7iysJRgFaMcDEbylDCH-2FxqVz4wxMJXknb34lUxO-2By8F-2FxCvdIT3THnZ-2Fu57Fy2W-2B7YYV6neaBF-2F-2FY45kCekUmy5Q3Zh9j5Bx-2FXQAJK-2FxogKJdKbOeEd1Pm7zngcATda8L9iUmIIQDnqVVxR6cfTeFzsI\" style=\"text-decoration:none;color:#f9667e;font-size:14px\" target=\"_blank\"><img title=\"Instagram\" src=\"https://dccld.stripocdn.email/content/assets/img/social-icons/logo-black/instagram-logo-black.png\" alt=\"Ig\" height=\"32\" width=\"32\" style=\"display:block;border:0;outline:none;text-decoration:none\"></a></td><td align=\"center\" valign=\"top\" style=\"padding:0;Margin:0\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9J7UyYtZId0e9dDa0v9Ta92HiWw77WRZ4X5zqgqo3KTWGUs9oJ7PXi6fynh4pl9aJMVYfjY2fzznx87bB5T2hZGcDSzVxYC4ZtzTaKFYn-2BMhphAw8H1RDSHi0chA5fdER-2FtrecUUuFttqgPC4tNvxOrf5xI5zTep3y8LQE1AOYY3yTRtE_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2B6mCHT4Ggv6-2BKyHJAdzBmmV98tf1VZuHz8KKkxZ9wtNqkjizS0ZNAZrvShEQzHbm25D-2B6ODo0d8efSi3unQpvqYBJeJSWpSbURkXc6WaQVmU9ml510GpMUO0qKwBQDnJNjQ1XJ7SvMae0xAgkad-2F51Dlomt85xiB9nT2N9jFmtr7hcKGP5YNUVlhQIzLlvb3I0Daelyq4NtzfO0W0WMiRH\" style=\"text-decoration:none;color:#f9667e;font-size:14px\" target=\"_blank\"><img title=\"linkedin\" src=\"https://www.prestigeequipment.com/r2d_images/linkedin-logo.png\" alt=\"In\" height=\"32\" width=\"32\" style=\"display:block;border:0;outline:none;text-decoration:none\"></a></td></tr></tbody></table></td></tr><tr style=\"border-collapse:collapse\"><td align=\"center\" style=\"padding:0;Margin:0\"><a href=\"http://../../../../OneDrive%20-%20Prestige%20Equipment/Desktop/http://url2713.prestigeequipment.com/asm/unsubscribe/?user_id=10212469&amp;data=1ZemMqelxVzkFu5ImzP-cJs9nQ1fVYsvrtsdvAt5UFhoMDAwdTAwMN5u58aAbn9UKvQ-L01x-pY3K07Q0dkyh-MVAFBGy3VZfBx0S2UbbgNEnUR8qu7TT3KmCy__CMLvRZ2oMqUjroDFPIRPIkxdKmbuBeJc3K6bGWwrddvCkWlwmxjsaD98pAZnJUGhKNsJCDqtV315-wghnSBKl0c-Z1tSr8FwrGKnUhpvWh9FgiD8r1JKlSAAdB2ykVZ4pQ79i5SqKjNPvStMAwLSsWZIglSWZLA057XlqubzsQnnjToKqZXg035YoF3q4UoyiF5l46KNAcibaXdLxFfEpFTaSlCyze5wJEIA46VqwSp5uiVC0BYx4wLKSgr5k4xJe1CpX0_re3CLuIuAiFP-ubrnZ4p3rD8sTYg0nNKZHjKq_kiZi_g7O6rk0WYILP2IwqUe1inEhhOcp92SkfHMe4-NnqEEwXLsKjaHtge9Qz-_TJHEIZRkvzE50vx1RUn4D2tGPkQQfZUhx9pQLeKTvhsUKrPZV3Y3FOt7tWBMXQARbKRAxinTgDKiregZg6adXuI6XYbK6JtDpHnE25Gi2U-BP2dUeVXx04zrA8oB18ukwvVpkH0DBzeNq_bQbmLZAmx1kDURPm4LuQLz7AGqwEH-2EiI3uZGwXsw\" target=\"_blank\"></a><p style=\"Margin:0;font-family:oswald,robot,sans-serif;line-height:21px;color:#333333;font-size:14px\">Prestige Equipment  |  <a href=\"mailto:sales@prestigeequipment.com\" style=\"text-decoration:underline;color:#333333;font-size:14px;font-family:Oswald,Robot,sans-serif\" target=\"_blank\">sales@prestigeequipment.com<br></a>35 Pinelawn Road, Melville, NY 11747  |  631-249-5566</p><br></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><table cellpadding=\"0\" cellspacing=\"0\" class=\"m_-7777394078950100749es-footer\" align=\"center\" style=\"border-collapse:collapse;border-spacing:0px;table-layout:fixed!important;width:100%;background-color:transparent;background-repeat:repeat;background-position:center top\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" style=\"padding:0;Margin:0\"><table class=\"m_-7777394078950100749es-footer-body\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"border-collapse:collapse;border-spacing:0px;background-color:transparent;width:600px\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" style=\"Margin:0;padding-top:10px;padding-bottom:0px;padding-left:0px;padding-right:0px\"><table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"border-collapse:collapse;border-spacing:0px\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" style=\"padding:0;Margin:0;width:600px\"><table style=\"border-collapse:collapse;border-spacing:0px;background-position:center top\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" role=\"presentation\"><tbody><tr style=\"border-collapse:collapse\"></tr><tr style=\"border-collapse:collapse\"><td align=\"center\" style=\"padding:0;Margin:0\"><p style=\"Margin:0;font-family:oswald,robot,sans-serif;line-height:21px;color:#333333;font-size:14px\">Proud Members Of:</p></td></tr><tr><td align=\"center\" style=\"padding:0;Margin:0;padding-bottom:0px;font-size:0\"><table cellpadding=\"0\" cellspacing=\"0\" class=\"m_-7777394078950100749es-table-not-adapt m_-7777394078950100749es-social\" role=\"presentation\" style=\"border-collapse:collapse;border-spacing:0px\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" valign=\"top\" style=\"padding:0;Margin:0;padding-right:10px\"><a style=\"text-decoration:none;color:#f9667e;font-size:14px\"><img title=\"mdna\" src=\"https://www.prestigeequipment.com/r2d_images/mdna3.png\" alt=\"mdna\" height=\"38\" width=\"38\" style=\"display:block;border:0;outline:none;text-decoration:none\"></a></td><td align=\"center\" valign=\"top\" style=\"padding:0;Margin:0;padding-right:10px\"><a style=\"text-decoration:none;color:#f9667e;font-size:14px\"><img title=\"IAA\" src=\"https://www.prestigeequipment.com/r2d_images/IAA4.png\" alt=\"IAA\" height=\"38\" width=\"38\" style=\"display:block;border:0;outline:none;text-decoration:none\"></a></td><td align=\"center\" valign=\"top\" style=\"padding:0;Margin:0;padding-right:10px\"><a style=\"text-decoration:none;color:#f9667e;font-size:14px\"><img title=\"nysaa\" src=\"https://www.prestigeequipment.com/r2d_images/nysaa.png\" alt=\"nysaa\" height=\"38\" width=\"38\" style=\"display:block;border:0;outline:none;text-decoration:none\"></a></td><td align=\"center\" valign=\"top\" style=\"padding:0;Margin:0;padding-right:10px\"><a style=\"text-decoration:none;color:#f9667e;font-size:14px\"><img title=\"mdna\" src=\"https://www.prestigeequipment.com/r2d_images/fma.png\" alt=\"fma\" height=\"38\" width=\"38\" style=\"display:block;border:0;outline:none;text-decoration:none\"></a></td><td align=\"center\" valign=\"top\" style=\"padding:0;Margin:0;padding-right:10px\"><a style=\"text-decoration:none;color:#f9667e;font-size:14px\"><img title=\"amt\" src=\"https://www.prestigeequipment.com/r2d_images/amt.png\" alt=\"amt\" height=\"38\" width=\"38\" style=\"display:block;border:0;outline:none;text-decoration:none\"></a></td><td align=\"center\" valign=\"top\" style=\"padding:0;Margin:0;padding-right:10px\"><a style=\"text-decoration:none;color:#f9667e;font-size:14px\"><img title=\"amea\" src=\"https://www.prestigeequipment.com/r2d_images/amea.png\" alt=\"amea\" height=\"38\" width=\"38\" style=\"display:block;border:0;outline:none;text-decoration:none\"></a></td><td align=\"center\" valign=\"top\" style=\"padding:0;Margin:0;padding-right:10px\"><a style=\"text-decoration:none;color:#f9667e;font-size:14px\"><img title=\"eamtm\" src=\"https://www.prestigeequipment.com/r2d_images/eamtmn.png\" alt=\"eamtm\" height=\"38\" width=\"38\" style=\"display:block;border:0;outline:none;text-decoration:none\"></a></td><td align=\"center\" valign=\"top\" style=\"padding:0;Margin:0;padding-right:0px\"><a style=\"text-decoration:none;color:#f9667e;font-size:14px\"><img title=\"eamtm\" src=\"https://www.prestigeequipment.com/r2d_images/aisc2.png\" alt=\"aisc\" height=\"38\" width=\"38\" style=\"display:block;border:0;outline:none;text-decoration:none\"></a></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><table cellpadding=\"0\" cellspacing=\"0\" class=\"m_-7777394078950100749es-footer\" align=\"center\" style=\"border-collapse:collapse;border-spacing:0px;table-layout:fixed!important;width:100%;background-color:transparent;background-repeat:repeat;background-position:center top\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" style=\"padding:0;Margin:0\"><table class=\"m_-7777394078950100749es-footer-body\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"border-collapse:collapse;border-spacing:0px;background-color:transparent;width:600px\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"left\" style=\"Margin:0;padding-top:5px;padding-bottom:5px;padding-left:20px;padding-right:20px\"><table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"border-collapse:collapse;border-spacing:0px\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"left\" style=\"padding:0;Margin:0;width:560px\"><table style=\"border-collapse:collapse;border-spacing:0px;background-position:center top\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" role=\"presentation\"><tbody><tr style=\"border-collapse:collapse\"><td align=\"center\" style=\"padding:0;Margin:0\"><p style=\"Margin:0;font-family:oswald,robot,sans-serif;line-height:21px;color:#333333;font-size:12px\">You are receiving this email because you opted in at <a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.YZa2-2Fv95qyaQ0Esd0DqHPseu6wZUcWbsNdJ5oijrR5sExkuusJt5azpJcfKQq56G6WJ06bhBs29YCqIdLmKlDY1EJFwT3BYopvdlTcnRsvErgBeRfQctFlRTn6UfK2H2iathzyc3jfPlzGwAWgVAZg-3D-3D1UTQ_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n99XmV1HXmEhYdZIMHR7V2ChlG3G64I2c1Zfb7Va79o5IHfN5xIepHC5fhQ58KwBFl04CIpVTtzve-2BP2xYY3keKzLx78ZAboO5OBg5-2Bydgao9PjTtCYw4iIsEGGKS0Ap7OOhM4wzwVNiBjOAaNLCXMcInL8CCiGxz06ARwqtCdoMoVwZcwf9c1QlAAWFTCEPZgZuqPnFwjJELiNK7sT-2FzKCd\" style=\"text-decoration:underline;color:#333333;font-size:12px;font-family:Oswald,Robot,sans-serif\" target=\"_blank\">prestigeequipment.com</a>. If you don&#39;t want to receive these emails in the future, please <a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.YZa2-2Fv95qyaQ0Esd0DqHPhUfzttN13nfTXFbfaY-2FTitJpfh9uvSqrEef3LeLhzKlMIINZ2o4rWLRfYYRKyxDEH-2B6J9VHNO-2FvOKeO4fNpjE0AApOPTsuU8Vg9CN146nq30r-2BQcCHmobr01LI24Uv756njSTcmGCV0YQ8ElAsLpGey6HZiKj4wjw7UkIwmX65eOo5sf8Ijw8YWhGL9HoNEqg-3D-3DsebQ_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FFHFOkN9PnNSN9Ra95L3qEaX0AFW-2BZbqatpuzMySWNkZw9ALEzsrZMfYSC4jSW523s-2FoFUhSTr8e3ejKK8tvht2X4FJ5fLq-2Fp2sZ1YFoxNHMZivELOKpbCfRxbn1VcE-2FeBBuSMvQ9GejXTatT85jMQvx8ZW2sK6sTKYX972myBfdqn1SeAmxVBYA6bElERzryRG1bfwt9JtoKEZOE2sO1M\" style=\"text-decoration:underline;color:#333333;font-size:12px;font-family:Oswald,Robot,sans-serif\" target=\"_blank\">Update Your Subscription Preferences</a> or <a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.YZa2-2Fv95qyaQ0Esd0DqHPhUfzttN13nfTXFbfaY-2FTitJpfh9uvSqrEef3LeLhzKlMIINZ2o4rWLRfYYRKyxDEGnegSZEPYSUmh3UiFsJEjIPLiMYyIY1WfmzRn-2BBRQO5xedMiaW-2FNK70OajGwAvMqAS3XwLgCRiuUrcZPXUkAeg5NQu3Cvq17KNMmdo-2FpaU5TELp_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2BwwpcDaf5-2F8r2xnmoMPiQolH-2BxC2f1ma-2B8EoQ2r9hKeygLPW4FfNMss91GR43-2BxhXHTpV1cp2t1lPjCOhqDwe7lsGPdU1ofJTepmfQS0kYz5bYE-2FULNUL8dtAxvN3oS5dLKn3BnwfYhMXm1cAeaRXdO0M15dzcH2xWnOkkZr5bJNv8G-2BXZPO7kprcWDBECex91xwYokid-2BkSakRsBw0mgV\" style=\"text-decoration:underline;color:#333333;font-size:12px;font-family:Oswald,Robot,sans-serif\" target=\"_blank\">Unsubscribe</a></p></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></div><img src=\"http://url2713.prestigeequipment.com/wf/open?upn=u001.-2B6MaJt17dnaQqSuondI-2BHiKNXV3SoYM9f83ZrUVfPDA-2FVD5btMRH9NbrR7YlFilt11cdWaQxI-2FlLk1t8hlnNXg6rY6XTiYQ1Oc0LlOkCQoh5k1kF1QUFaYYKWxLfqCc2-2BdBg54yqqaJdAG3-2FDDt-2F45hjgt3AeuddYpEU2w6tx1wkJykMpjroK68BRbf-2Fzdg3h1l2Vp-2BdAwWjkjXm3r6wdmyE9KtMqGOiP8s9B4Cn8CE3AUYKAo79d2ZWFjfluYU3hA8pTJ9olRoGJLL4VvXHL7ds3ri7xbJVzHSDVc3PLtvVTAuWGdLxBrwiZNzoFjnvCf77pR0Gh3ifsXp8YnKCcUjADueeVhYaKLPwy7F0j-2FkPjzBhwPR9jedzg-2B5MX8bQFOgQJ-2BEDrlm9-2BPbx4znflL5sKxQuVnnJCTpvmqug9XdmQlCHBlxEpokDUhECs7ApjfoW-2BEvwApBXG20o46YdsJ9yT-2BIKVcF74-2FXVuWGn51h1QZQ3Si9Tbo1uOElSJwDC\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important\"></div></div></div></div></div></div></div></div></div>','Here is some equipment you could use.\r\n\r\n-- Tom\r\n\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: Prestige Equipment <scott@prestigeequipment.com>\r\nDate: Mon, Sep 22, 2025 at 1:26 PM\r\nSubject: HAAS Late Model Machining Centers and Lathes Available Immediately\r\nTo: <tpownall@cadx-pcb.com>\r\n\r\n\r\n2018 HAAS VF-11/40 CNC VMC, HAAS VF-3YT/50 4-Axis CNC VMC, HAAS VF-5/50XT\r\nCNC VMC, HAAS EC-1600 YZT HMC, HAAS VF-6/50 CNC VMC, 2018 HAAS ST30 CNC\r\nTurning Center, HAAS VF-6/50 CNC VMC, 2018 HAAS VF-2SS CNC VMC\r\n<http://url2713.prestigeequipment.com/asm/unsubscribe/?user_id=10212469&data=1ZemMqelxVzkFu5ImzP-cJs9nQ1fVYsvrtsdvAt5UFhoMDAwdTAwMN5u58aAbn9UKvQ-L01x-pY3K07Q0dkyh-MVAFBGy3VZfBx0S2UbbgNEnUR8qu7TT3KmCy__CMLvRZ2oMqUjroDFPIRPIkxdKmbuBeJc3K6bGWwrddvCkWlwmxjsaD98pAZnJUGhKNsJCDqtV315-wghnSBKl0c-Z1tSr8FwrGKnUhpvWh9FgiD8r1JKlSAAdB2ykVZ4pQ79i5SqKjNPvStMAwLSsWZIglSWZLA057XlqubzsQnnjToKqZXg035YoF3q4UoyiF5l46KNAcibaXdLxFfEpFTaSlCyze5wJEIA46VqwSp5uiVC0BYx4wLKSgr5k4xJe1CpX0_re3CLuIuAiFP-ubrnZ4p3rD8sTYg0nNKZHjKq_kiZi_g7O6rk0WYILP2IwqUe1inEhhOcp92SkfHMe4-NnqEEwXLsKjaHtge9Qz-_TJHEIZRkvzE50vx1RUn4D2tGPkQQfZUhx9pQLeKTvhsUKrPZV3Y3FOt7tWBMXQARbKRAxinTgDKiregZg6adXuI6XYbK6JtDpHnE25Gi2U-BP2dUeVXx04zrA8oB18ukwvVpkH0DBzeNq_bQbmLZAmx1kDURPm4LuQLz7AGqwEH-2EiI3uZGwXsw>\r\n͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌\r\n͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌\r\n͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌\r\n͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌\r\n͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌\r\n͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌\r\n͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌\r\n͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌\r\n͏‌ ͏‌\r\n\r\nHaving trouble viewing this email? View in web browser\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.YZa2-2Fv95qyaQ0Esd0DqHPseu6wZUcWbsNdJ5oijrR5vPQvMAZAJSp-2B-2FHtToOUzy91Z6i2WCqlu6QVGFHa3v4-2FmHS1tBSiH4d2nfJjlge3PNE0vNsL6dFwW9-2FClNDGQXIqcRtQFX31x4WM6sHjF-2FTtBNQITR7A7MkPG9-2BPRTM34oaAzAi8t4ux5z6WUT385joUkqk_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2Bb8-2BhVSuBVVwaLS0cEXSl567RLAbx1WnR18gXRYxi01cqqPZEOiLb-2BuUCOHgRmvFbgl261Xh-2BSQQhUoXk65J0cJU9354hG71cqc2h6BUrbe-2FOVErGw5PkQRDgjsGQ-2BrlYBkcRX2G3gHWdtTCqD8ZFrpCF6QBuxeCfpSe003TTdxV5mWYe4EEDGSkn0D6ig-2FQKLsXpXkCodkvgxTnYvUXQd>\r\n\r\n[image: Prestige Equipment]\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6E6RJNpN1XitjoQ-2FPLJOjbTwFpuVUdxuiEDdQglcL629H-2BMI3zRumaeRagK3Kqj3JNbVhUW5wU7mxy6jh3X5MO7KtbAwDg6YR1CiwQMbo0inQ-3D-3DxjiN_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2F9Ln4GVwiExN5BztEOsENRHJgG91Rd9vAq88N91tvW73mQ67byKIlvQiGKguNTpHUYwvzZvk0g9FrJNsXtx5a7avcDNGl6C61-2BPLsKrUMIdhgzuOpB2jVJ3EWMmT4Pq9CDaH-2Bz-2FegtCXLmdjo6YrZ8ZyoTViESOh-2FbNTdjrnTXUdlmyRoDVhro8FWtCXMmXOgqhTYimptJUsUXoqwdN-2Fu4>\r\n*CONTACT SCOTT LINZER* <scott@prestigeequipment.com>\r\nscott@prestigeequipment.com\r\n O: 631-249-5566 |  <6312495566>M: 516-972-8791 <5169728791>\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamyLuOpuBlePnf4SfD5v-2BhFr1jCTkFIKBodlI3tfddomhdHovm-2BCCxfPpuZjRaZP5SnjZLqt-2Fw1iNDbFN-2Fro098l6N3qScDRfmZpvh-2BhnjGCCw-3D-3DZ4e__xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n99nIF5D7uoxHnUpJVlcP8JfB0gSvdZpbVr3sHtAItYr5eMZEh73FO1XaRMFRcE4It2ZbWwkQbjVfkMOQsCiKxEq0hurNihRNr9UFVVWWCwdGRbVkvjlCd9VGJ83si2jUtidboDEU21yhk0oWGpX6jCXIXtz9n-2Be03O-2Bljz8nXZX4kOFLTdSzAR2iUfH18q0v6O7BqQ7-2BqJEOm01lCgetCDc>\r\n*HAAS VF-11/40 CNC VERTICAL MACHINING CENTER*\r\nX-120\", Y-40\", Z-30\", 15K RPM, TSC, Probe, 40 ATC, BT-40, TSC, Haas CNC,\r\n2018, #44347\r\nVIEW FULL DETAILS\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamyLuOpuBlePnf4SfD5v-2BhFr1jCTkFIKBodlI3tfddomhdHovm-2BCCxfPpuZjRaZP5SnjZLqt-2Fw1iNDbFN-2Fro098l6N3qScDRfmZpvh-2BhnjGCCw-3D-3DviGj_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98159Dy9uPqgN2yABfpQLTcERg-2FzPBsI6y0qUuWG0IShjC3EGqwrqXO5aaLb6-2FTorav2itstz5ptAX-2FNiTFyipbm4MeHyAoNEqXE0lM1usOWaKt6zb0cUufOk416ltEmhJNjAh-2B8sjCiCo51cLRdlbA4tO8c1PO8UiiMSjbMEOzshpT3HgOGiFnuL5qUtmbfpLEy9mGxL2T5vCeZSEfjXPK>\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamzH356J0-2B8YZzi6orzP56P0YJyeLbROr0L9z6uCD5nGubCgqDSANrObYdft9fH4hRnd-2BiSrh8Q8JmrZAPXmfcI-2BZBI79U35QP-2FFyL7Oqmf4zw-3D-3DnL23_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98K2Hj7-2BH4bsPPxXRWD-2F6gJ4cwUy9efLv8QdbNmga-2FjpSRRm9UhJJFnmqVxgB4gSEb08AeSwCh0iZCRxplYi5EqOJ5tL1W8IDv0P-2F0568j7D4SWuv6r5FnxmA48PRtI0JMOmy4piCDQligJB8nR9yd-2BxwH4Rpke-2Bew1U73jET009rBpJPLdy9nwBxOcvsZ64B-2FMmJVG1WYGslujKmagOkFh>\r\n*HAAS VF-3YT/50 4-AXIS CNC VERTICAL MACHINING CENTER*\r\nX-40\", Y-26\", 30 Sta. Side Mounted ATC, Wireless Probe, Pre-Wired 4th Axis\r\n, 10,000 RPM, 2011, #44317\r\nVIEW FULL DETAILS\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamzH356J0-2B8YZzi6orzP56P0YJyeLbROr0L9z6uCD5nGubCgqDSANrObYdft9fH4hRnd-2BiSrh8Q8JmrZAPXmfcI-2BZBI79U35QP-2FFyL7Oqmf4zw-3D-3D_KP4_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2BKLaJtzUsofBqouVqlscFl0B7mELeWqRPFCab2kkTPKwCWZIa8oI95DoiweBjkXidwzMDTafvuLEUH-2FiU-2Fn6j4AnyG9ZpJNyZj6zVLc0l-2BKemZy2VBgsqYwZgXMFoqu4Zw79-2Bq4uj2iaEbfsWWIQbGbhCRDKEzopx2SwE5Wmm9sRE7INkzOIs9qFAQPB9ARnjmcZHZJLEwN0M1SpRebVKI>\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamyEGe6ppo3IPxlPhH1No9JgGXBTzcgHs9fM9-2FfCNnJtPTjKA80l3FAJAQWjRFfOnd6C0sc58EcS0bVp4qYYhEXVJlcylSsglutTkcljiSh6Pg-3D-3Dx3oe_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FtU0STLbDL1KMuueHTWffLBAIANsg058QsI10fBwEkemWaVKs9lNYMuW2SzOV7n4yF801diT3ztvYUcYz-2BxLA5-2B2S8GNjc7yHuahD4DAl-2FcRLg0Oj9Ib0aBHbeOW00aZkQPqXMbST3ihkz8bEX8ccahH4sn628NoiAknH3obbERquXV3XBImQgc9xvy2zAqFwTNyBl2sEiebTw-2BHsaLp6z>\r\n*HAAS VF-5/50XT CNC VERTICAL MACHINING CENTER*\r\nX-60\", Y-26\" Z-25\", #50 Taper, 7,500 RPM, 4th/5th Axis Ready, 30 ATC, Chip\r\nAuger, Haas CNC, #44302\r\nVIEW FULL DETAILS\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamyEGe6ppo3IPxlPhH1No9JgGXBTzcgHs9fM9-2FfCNnJtPTjKA80l3FAJAQWjRFfOnd6C0sc58EcS0bVp4qYYhEXVJlcylSsglutTkcljiSh6Pg-3D-3D3MA__xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2BTXgDNyV5GVGY-2BmGohiku88BcgP7OLVEknp8bsupbSRmAjcpgWh6m-2FMclLINcM9kiLNYzEgZMb8HKZzbRno4bNwqF-2FKdTwrcTcj24dY80rvBf-2ByjDaB0UurhC66izVtUZb5W-2B42fyCwrmcCTiF-2F2BooKCIy1Jm9ZGxZ2ezLNOoRGGX5OfM0Ux8O26oUThs1vMUQ82PXsvFQPWALLvQb4Js>\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3tovCKvewOMYeyHinOEAM-2F2ezxiiTgZhvhZTw0BwhLvtdJTjyqia3rVnxyVMs8THy3498cmuP9qg1W-2BZe-2BDb7EoPxkLi-2FoQn9-2BQSAz5RPYbXuXKSJVMvrtoQ-2FB0Y3wZ5esjuqsTHYtMcaGYnG6WIdpgNjoP7kKvZBHPxyaOWBjY8-3DEJhy_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2BrtFnqrZ5TbjUahSA2D4wwtfCAX7qqN3-2FpL9Mecp2ioKb4pJvplmefSpXg09u9aXgRr1SBIQxXdoQ-2F1njXtfKSraOY2aGAVIolkhwX8wAQK4Ov4erw5HrMLlUJKqGYbZeSjGfPezer-2BjWxRAXNXhoTHj4AFKTWNfcLNV46-2F4RgGm4IXc8EEfvHoCf-2B36iLxdGcNHOyanhZpz0RnkR7PJzU>\r\n*HAAS EC-1600 YZT HORIZONTAL MACHINING CENTER*\r\nX-64\", Y-50\", Z-40\", 30\" Rotary Platter, 64\" x 32\" Table, 10K RPM, TSC, 30\r\nHP, 2013, #44301\r\nVIEW FULL DETAILS\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3tovCKvewOMYeyHinOEAM-2F2ezxiiTgZhvhZTw0BwhLvtdJTjyqia3rVnxyVMs8THy3498cmuP9qg1W-2BZe-2BDb7EoPxkLi-2FoQn9-2BQSAz5RPYbXuXKSJVMvrtoQ-2FB0Y3wZ5esjuqsTHYtMcaGYnG6WIdpgNjoP7kKvZBHPxyaOWBjY8-3Ds-qt_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98K1NRcskFivWGivuw4ANxUDiExM1SOR0DKub3tYtxv0ErQW7lO4cGx9Zwnn0sv1nvToUHh145ju-2Fi-2B21CIEldjb7sYF4iHAzGgPqCc1BPKX-2BZ9oFbIUOH0NcXNIP1ET1zqtBczQfQUnfvIyJ2u8LgX5olCS83Ojqg1x4vJ62n9BXO-2By-2BqS3RJpOaxcaooNg04mwoUxwqFw1-2FCufBfydRv2>\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamxkiUGS2Xkuxd80KifDHiuH-2B5PKBCWSvcpAFQqnYOJZB23m5Wbpm12dcMeHxQ-2Fo00jB1HWXzhwJn8dkup9OByNdQNYQfTwWeDa-2FZsDAqKPTbw-3D-3DHvYe_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FQsd9c-2ByMjBW7VqtpnT2lQrDWvj4LekJ0H1LDoigPBi0P45r-2Bx49f-2FlI6MAoxRgHlwEzLKKb4tBDYkvaVrAR35499ehUP-2FYIjeCOWnQiX79QzcBcxIGjZO8-2BwBK8x1H5JZ6Xl3anYfs4V7bKxb0QeBIvqu9MCFhNJL2fLeSPQlRy9bgVTBW2evXuxJphICVmrsuFmggWT5p6RL6tdtMJg1>\r\n*HAAS VF-6/50 CNC VERTICAL MACHINING CENTER*\r\nX-64\", Y-32\", Z-30\", 64\" x 28\" Table, 10K RPM, 30-ATC, TSC, 4th & 5th Axis\r\nReady, Haas CNC, 2011, #44300\r\nVIEW FULL DETAILS\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamxkiUGS2Xkuxd80KifDHiuH-2B5PKBCWSvcpAFQqnYOJZB23m5Wbpm12dcMeHxQ-2Fo00jB1HWXzhwJn8dkup9OByNdQNYQfTwWeDa-2FZsDAqKPTbw-3D-3DDHVf_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98Rc7r-2FG8PUcXZDi301mNzlNpOgvqqkzuFooEfFd1DQ-2Fw6wtBkLoCvj30EPYk8L-2FMflRdcgM1SpRBuTRjARkIZwTVX6DgNys-2FbcJITor4s0HqHDx6iU7nVuuAAplLsN8kYxzPeLHT97y2ZIPphDFUT0ZL4P-2FGKMjSujBosypMygVeae2zz1nFK-2FbRff0J2ViGzMJ-2BsqQPinHfymWDONg0p-2F>\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6G1rOkM4-2BTOB9NWrPdfi-2FOWtfCNSM2ktA6mzusbaQv-2F81qcJAc0jDWmAZK-2B2bCTvV5K-2F6Ax7blAOr7nlb3QFbatZUauvVWNLqh-2BF-2FFp2y1Za-2BesRuEkUsM5zhoGiYdKWBpqJGnFRyz-2FXsY-2B9WEo3WB42GTi_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98a-2BQ0a3a-2FZBPYIvnRWEQ2dyj7s3-2BUKq-2B-2FimaNwsI-2B98dV-2F77oDo-2FYVGgJSZUUIabFTTWw-2B0t1XTg-2FiYEKROuZtC0YJmQoF5TUclpPwQee9NCJHUs4esAFijZp9xzASzIu9TRf0J8Dhh5Ud50y3GE08qWuc35UNJRZHxvt-2FpYrdTM2MxmOeQwMsV5slQ0WRO4l728Rond6doT-2Bv9-2Bx2TOVI>\r\n*HAAS ST30 CNC TURNING CENTER*\r\n21\" Swing, 32.5\" Centers,\r\nV12 Turret, Tailstock, Chip Conveyor, Steadies, Haas CNC Control, 2018,\r\n#44220\r\nVIEW VIDEO / VIEW FULL DETAILS\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6G1rOkM4-2BTOB9NWrPdfi-2FOWtfCNSM2ktA6mzusbaQv-2F81qcJAc0jDWmAZK-2B2bCTvV5K-2F6Ax7blAOr7nlb3QFbatZUauvVWNLqh-2BF-2FFp2y1Za-2BesRuEkUsM5zhoGiYdKWBpqJGnFRyz-2FXsY-2B9WEo3WB4-Etn_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2B8AhhSWa-2FabAsPK7tmeKKHz0gKPh42XNRdpc81ZbPl2yNRy8bOhUBFxH5E0hQ1fzylntM2N7M4m5T6s45NoIXlirsANTlJKH7dU8-2BfDxehLlgF400bW-2BQSI0GM2hSCVnWnCmq-2FPqr2cuK36BMzcc789zXbjbtETDv2Ss4DqEZqKF5wK8Onh0MWSPsh3U6ivvbWdIOJyeiEXrCsJlw7EcNq>\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamzCdBKD88F-2FsXMhtUbgGNlyvshim1Osyxi0U74B30s02HRPjx9pF7-2BSv1-2BDRodqURLc4sbUnQj7hAOjXZUKC2LaUjcv5JIMFbpuT5F-2FJW8S5Q-3D-3D-EMh_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FAnqi6IwK4l8kbm8JHQ1MXIp-2FJ0iR4dNwSdl2bAmhybzvINA1dznALMIC1J2MSHB4TYuulFfyQ7vWec-2BIetIscQujwrtNJZG7fs9TFv5mTFqLw6l30D-2BMcjzRKxCfNE7HlGd-2FsEDM7fk5k6lyVyOOnFIyBqF30-2By1vK9e7P9nRL1zK1ptXEn383zgMlTzkLDqCGt1aHltW-2F71SBpf-2B8-2BZD>\r\n*HAAS VF-6/50 CNC VERTICAL MACHINING CENTER*\r\nX-64\", Y-32\", Z-30\", 7,500 RPM, CAT 50, 30-ATC, 2-APC, Chip Conveyor, Haas\r\nCNC, 2012, #44051\r\nVIEW VIDEO / VIEW FULL DETAILS\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamzCdBKD88F-2FsXMhtUbgGNlyvshim1Osyxi0U74B30s02HRPjx9pF7-2BSv1-2BDRodqURLc4sbUnQj7hAOjXZUKC2LaUjcv5JIMFbpuT5F-2FJW8S5Q-3D-3DOdZH_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2BoqpumL-2B9lVQTV18hJSH-2FuqJ3kVF1WYIRsXrvErdpkdDeqo1j8quv4CzXnsmQifCyV2agYGv8GJ1j7sLZORJic1KwzMB7uyVx65yvWe0vyTPJ3FskEwCbh73geo9J0p0o11Hq8-2Fy-2BvHnuX7lCsyJkwUAM-2BUJW-2FXFWh4XdBt11asebt6v-2BZFF4YKPaq5PHMTm4TsO0S23OfDYVjy7orzIIp>\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamwn6fGxW57ySINpnpQyONRXp3YrPDp5MRVoyjSj0jP9-2B0rwkcenWkFYYfK1uv3ekxdYuJh7bY5sNvSWS5CQYKbFtbEcAYWIXYj0ChtZr3rjBA-3D-3DvF6H_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98c2S4w05Cn-2BLHUIZ-2Fp9P-2BEOAeEhLBtXMj1Gh96JluMvzTtg87ZCWVAVsZbJ80TM-2BYEbqGJ3PA9AIZeOpoWtckxJnRSf4aGq1hFnHtUcOaUxvwgi3DytlTti5nFM1xuc4xxePOcL-2F7kUOBcfXO62acco4DHsjLBTzptwaxCjp0tUoXZQ7abJPwwBLzDtXhWCPvFUU-2BFb1GuUhIVzs10S34Y>\r\n\r\n*HAAS VF-2SS CNC VERTICAL MACHINING CENTER*\r\n30 Station Side Mount ATC, Renishaw Probe, Low Hours, Like New, 2018, #43584\r\nVIEW VIDEO / VIEW FULL DETAILS\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamwn6fGxW57ySINpnpQyONRXp3YrPDp5MRVoyjSj0jP9-2B0rwkcenWkFYYfK1uv3ekxdYuJh7bY5sNvSWS5CQYKbFtbEcAYWIXYj0ChtZr3rjBA-3D-3D0yv0_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FqKKXJNzLfcL-2Fhlh4uKj0dsYl0L8I6p4wCu8D9aDS-2FPfAQE2bLmQiuL-2FBdK1oWZEc-2Ft9EcD4qACYe7dPIetntpgpfbb-2BlClktYmgnCJU3wSnCOnPVZo4w-2FVFx-2BwvHa1NaceHXO37nXEYGl99x22J0FdNS0hd3ChuOWXuykNNmpXJvV99RMqXrkC5Yt-2Bo-2BtVXWejnNSarrLH7fCk1X-2BE7ke>\r\n\r\n\r\n*CONTACT SCOTT LINZER FOR MORE INFORMATION* <scott@prestigeequipment.com>\r\nscott@prestigeequipment.com |  <scott@prestigeequipment.com>O:\r\n631-249-5566 |  <6312495566>M: 516-972-8791 <5169728791>\r\n\r\n*What Do *\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6E6oCSy3P3qwEEyjHSbcR1BHYk0ylK2EUaPdAsdL-2BZeXP2cGbni16Q2nQONn6zSyYXC3CgrP1dkj835eeg9c0izy-2FJbCG2AeYuWyX50EFQPI-2BzAjMkf59hvOljKXkPHdoY-3DU4d8_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98PpBK-2FyuNfXmjKsBUszMDQs8x8x8JPS0Kxn7KqNrOnS-2BrwzQpSSYWBqveHW9yrMcX8FGIZaWarPZ-2FK0HFip-2F2fitj2m3WxZFFVzEcpc-2FceuUE4dqF2ZC07kYWumRtI4wyo79TXlY04RvX66XWraYQMEmqOT-2BcBKBvkGj2-2FzRtV-2BcU1tPCxyk0Hnhs2PKqkU1Bw0ePDUHQ-2FvwIU8lKZRA27>\r\n*YOU*\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6E6oCSy3P3qwEEyjHSbcR1BHYk0ylK2EUaPdAsdL-2BZeXP2cGbni16Q2nQONn6zSyYXC3CgrP1dkj835eeg9c0izy-2FJbCG2AeYuWyX50EFQPI-2BzAjMkf59hvOljKXkPHdoY-3DzfJN_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98CvdyXLvUMU4yP-2BtRN8fHBCN9XCUcivasqX0gg4QjLvlCn02j69sMUbadYNVsXgjUXwMCRW7X2UX71Wnmh2rvQ0YwU8DSInnWck3DVNJy9o5cTgf8DeKQAql549YkbpU1FdNYhgWA2d2LeSAwfMQJs1P4KPDm-2FMuTR62RHjNvdT6M1Xb3LOJFXzIZB9oP-2FnH4RLLKZVZHdiM4XGrol-2Btjd>*\r\nHave For Sale?*\r\nWe Specialize in Purchasing All Types Of Industrial Machinery, Entire\r\nFacilities and Industrial Real Estate. Get Started Now!\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6E6oCSy3P3qwEEyjHSbcR1BHYk0ylK2EUaPdAsdL-2BZeXP2cGbni16Q2nQONn6zSyYXC3CgrP1dkj835eeg9c0izy-2FJbCG2AeYuWyX50EFQPI-2BzAjMkf59hvOljKXkPHdoY-3Dl3r6_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n99TXiKuPVHaZ03oJDstTcZDrmv8SWiANuxl6gBUrDBV2XfQG61eR8xYQ04mWOxVuHXS2iWtK43qY95kZcn-2FTJ-2FjauNM2dT-2FBEhTHPrPjZoD-2FBWTVljzCBOWDHI-2B8-2F0myPFHvkCOdygKXaVBs0KqNjSjJQEuxQC9RA89937mdpHia0eBHh-2FYL-2Feife85CJe1VIxRGq3g1Wep07XOPXVvQWrz>\r\n\r\nSELL YOUR MACHINERY\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6E6oCSy3P3qwEEyjHSbcR1BHYk0ylK2EUaPdAsdL-2BZeXP2cGbni16Q2nQONn6zSyYXC3CgrP1dkj835eeg9c0izy-2FJbCG2AeYuWyX50EFQPI-2BzAjMkf59hvOljKXkPHdoY-3D-BMB_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FNe2e8eWBkpFQq-2FjkVlLvZT7-2BWANNYcWn5epGoN9kHSxvXZTzzbXC9W-2B4xpnKbsROz-2Bdt0l1JlOu23n2vFQLv-2BawSJWXyioqh7YWCOnjQm8AxE88ndj1Cyt-2FNvKN0a3DLZddvwcB0FcahoyflPDKaSiis76-2BtnLhKWDlBgu8zRwFcsPGeX4Lcflkt6p28ExkSJZg1KBFUMuXGTVZiHIVzk>\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.YZa2-2Fv95qyaQ0Esd0DqHPseu6wZUcWbsNdJ5oijrR5s1ui7hWsVSf9yZfOZ6R210cvFKjzcRVGxEBdy4e4oUzz3514WCQMNeljRjlGJsCLwGjPEqvE8Anc-2BjEHrT7C4UfW-2BcUZXarW8uV2MZeNQ7Xw-3D-3DsnnO_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n99RCidRv9Y3ISafViKGK7vNMHKfXbz0jbpTCWu5jN8eDOHmH0516F9C2J3pn0ukc9PXg6AXS4EljGf9bs8cno7-2BXx049mIkpjvKs7vxCqR7U1GvMQ3-2FsCqJVKWWERajCAW1TocX6qJZSzfpVNQtX-2B9EZt7-2By-2FF3-2Bdu1pg-2B7-2FySCnPbFtBecrHaxJ-2FpGmGcyH-2FU-2F5puIMivrPgGORYfcxUjb>\r\n[image: Fb]\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9Jz3zjwieyJiFjkU1fFIuufD0a-2Bz0DtiY1KWMz0lEx4KGZ-2FTyk2Vzg3wbgumErZX97XLINv6Afj-2BH87yxWvF5y6nlZWT17luq-2F1dKHWI991SGNgG8DGO0-2Bi5Mt-2FIoYytqqdyx-2BZJS-2BlRA-2FWfHNBSzkwk-3DdA2r_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2BuEBT2T9P80Z54-2Bwz75t6QjJHaktLV5mOVXcxvMvJzK00vXoC9POf1PKlb5nGAlF4hyzo5LtZak1QcQI0WhCreozVLHZZ2pISRL0guEPeuowgmmA-2Fp0cLxUqh0-2F5FqXi3px8WenxipvDRrJ8JYk9eFjdMwfz4gai12R3jh3pRyBEd0PT4C3PeVk0F2SacpDb02fEc3oSvpXg0Cd8wUPPE7>\r\n[image:\r\nTw]\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9J-2FYv5jvGctGIq8NeI6NupK9pUgnH5WK47Gzu4pxRn6Bp2GFkni4YbxtqgYMMZ7NVr6ESRA2mwr-2Fw7RUSev0PQS-2F0Hpw0hkrRf2fJMyRTYkA3z-2BZrESPzdfvHCOtX3G7k7Q-3D-3DCGRG_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FBpUhmkyjJZcnxzN2qOG9x8DwZ8SpI6QEjdtQPCceDNzzvB4nbrKEFBpIo2-2FglWxljdesSTUL1ayVyx911oXvSOzsCPITXiDvf7Xp-2FvHlVRHWlvY7VAGe-2BtTDCSXCKJfqwJp0d83jO-2Bg2iL6GOTt03P76RlbvPPqo6L0VKtBO3xzKBE6pMYMyNXpWgVfco19VAmyFl9q4hAqgCkuxPLAIS>\r\n[image:\r\nYt]\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9Jwnk8LukbCGrW8NY7quF6Z13h38WvTrR-2BeCit6cHlknKzpYvUxqwMLc5PyEeTiT09p92Sq9b6sJEUha4UxG-2B8BIAYgIEZinoLhxQsrCMnwTYLLBrwH0050mK6I0ih9GGic-2BZ7ETRuxs-2BnPVZCddCZxQ-3Dj_WL_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FFzOO3K1jMVGmtOszdwySTqpr36AllTtr4L1kFG8QRKrdzuqCOwXjGs4ZFwQ21GTdSsPwrhUIeheFQyiWdx-2BTMvp1GBVtvNSWXUlsPotD6OHyLs2XeDPrSK5L3w2N4rVXhlJJSBTYavYXJVG68rei4BBuqEQMgQsmid9NOn-2BoYuE0-2FdWOtuP-2B8ePQHSEnCqm-2Bjvk0TEhIiRo2J0nQWeoa6>\r\n[image:\r\nIg]\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9J-2BGYKMKHGuWL9fJq6hIQuE3EQqt8U-2BnTv4c7hpyJmdIv5Vty-2BvLKBwJI1ujXHOKPcP8-2FSYCgdFkC66EaF1fVLjtVnfbGXiiYBWOaU4Dt-2F4XF5AQ7Y-2FY9vk6gn5WJf6hF2YM7Pxl1klxMlCIPhtz3bM8-3DGblY_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9919QevEhTndp2I02Ck-2BIP-2BIB1HMti-2B1PmfiFBAkMNdfWoc3mnhczl9lTaa0zIZ7iysJRgFaMcDEbylDCH-2FxqVz4wxMJXknb34lUxO-2By8F-2FxCvdIT3THnZ-2Fu57Fy2W-2B7YYV6neaBF-2F-2FY45kCekUmy5Q3Zh9j5Bx-2FXQAJK-2FxogKJdKbOeEd1Pm7zngcATda8L9iUmIIQDnqVVxR6cfTeFzsI>\r\n[image:\r\nIn]\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9J7UyYtZId0e9dDa0v9Ta92HiWw77WRZ4X5zqgqo3KTWGUs9oJ7PXi6fynh4pl9aJMVYfjY2fzznx87bB5T2hZGcDSzVxYC4ZtzTaKFYn-2BMhphAw8H1RDSHi0chA5fdER-2FtrecUUuFttqgPC4tNvxOrf5xI5zTep3y8LQE1AOYY3yTRtE_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2B6mCHT4Ggv6-2BKyHJAdzBmmV98tf1VZuHz8KKkxZ9wtNqkjizS0ZNAZrvShEQzHbm25D-2B6ODo0d8efSi3unQpvqYBJeJSWpSbURkXc6WaQVmU9ml510GpMUO0qKwBQDnJNjQ1XJ7SvMae0xAgkad-2F51Dlomt85xiB9nT2N9jFmtr7hcKGP5YNUVlhQIzLlvb3I0Daelyq4NtzfO0W0WMiRH>\r\n<http://../../../../OneDrive%20-%20Prestige%20Equipment/Desktop/http://url2713.prestigeequipment.com/asm/unsubscribe/?user_id=10212469&data=1ZemMqelxVzkFu5ImzP-cJs9nQ1fVYsvrtsdvAt5UFhoMDAwdTAwMN5u58aAbn9UKvQ-L01x-pY3K07Q0dkyh-MVAFBGy3VZfBx0S2UbbgNEnUR8qu7TT3KmCy__CMLvRZ2oMqUjroDFPIRPIkxdKmbuBeJc3K6bGWwrddvCkWlwmxjsaD98pAZnJUGhKNsJCDqtV315-wghnSBKl0c-Z1tSr8FwrGKnUhpvWh9FgiD8r1JKlSAAdB2ykVZ4pQ79i5SqKjNPvStMAwLSsWZIglSWZLA057XlqubzsQnnjToKqZXg035YoF3q4UoyiF5l46KNAcibaXdLxFfEpFTaSlCyze5wJEIA46VqwSp5uiVC0BYx4wLKSgr5k4xJe1CpX0_re3CLuIuAiFP-ubrnZ4p3rD8sTYg0nNKZHjKq_kiZi_g7O6rk0WYILP2IwqUe1inEhhOcp92SkfHMe4-NnqEEwXLsKjaHtge9Qz-_TJHEIZRkvzE50vx1RUn4D2tGPkQQfZUhx9pQLeKTvhsUKrPZV3Y3FOt7tWBMXQARbKRAxinTgDKiregZg6adXuI6XYbK6JtDpHnE25Gi2U-BP2dUeVXx04zrA8oB18ukwvVpkH0DBzeNq_bQbmLZAmx1kDURPm4LuQLz7AGqwEH-2EiI3uZGwXsw>\r\n\r\nPrestige Equipment  |  sales@prestigeequipment.com\r\n35 Pinelawn Road, Melville, NY 11747  |  631-249-5566\r\n\r\nProud Members Of:\r\n[image: mdna] [image: IAA] [image: nysaa] [image: fma] [image: amt] [image:\r\namea] [image: eamtm] [image: aisc]\r\n\r\nYou are receiving this email because you opted in at prestigeequipment.com\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.YZa2-2Fv95qyaQ0Esd0DqHPseu6wZUcWbsNdJ5oijrR5sExkuusJt5azpJcfKQq56G6WJ06bhBs29YCqIdLmKlDY1EJFwT3BYopvdlTcnRsvErgBeRfQctFlRTn6UfK2H2iathzyc3jfPlzGwAWgVAZg-3D-3D1UTQ_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n99XmV1HXmEhYdZIMHR7V2ChlG3G64I2c1Zfb7Va79o5IHfN5xIepHC5fhQ58KwBFl04CIpVTtzve-2BP2xYY3keKzLx78ZAboO5OBg5-2Bydgao9PjTtCYw4iIsEGGKS0Ap7OOhM4wzwVNiBjOAaNLCXMcInL8CCiGxz06ARwqtCdoMoVwZcwf9c1QlAAWFTCEPZgZuqPnFwjJELiNK7sT-2FzKCd>.\r\nIf you don\'t want to receive these emails in the future, please Update Your\r\nSubscription Preferences\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.YZa2-2Fv95qyaQ0Esd0DqHPhUfzttN13nfTXFbfaY-2FTitJpfh9uvSqrEef3LeLhzKlMIINZ2o4rWLRfYYRKyxDEH-2B6J9VHNO-2FvOKeO4fNpjE0AApOPTsuU8Vg9CN146nq30r-2BQcCHmobr01LI24Uv756njSTcmGCV0YQ8ElAsLpGey6HZiKj4wjw7UkIwmX65eOo5sf8Ijw8YWhGL9HoNEqg-3D-3DsebQ_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FFHFOkN9PnNSN9Ra95L3qEaX0AFW-2BZbqatpuzMySWNkZw9ALEzsrZMfYSC4jSW523s-2FoFUhSTr8e3ejKK8tvht2X4FJ5fLq-2Fp2sZ1YFoxNHMZivELOKpbCfRxbn1VcE-2FeBBuSMvQ9GejXTatT85jMQvx8ZW2sK6sTKYX972myBfdqn1SeAmxVBYA6bElERzryRG1bfwt9JtoKEZOE2sO1M>\r\n or Unsubscribe\r\n<http://url2713.prestigeequipment.com/ls/click?upn=u001.YZa2-2Fv95qyaQ0Esd0DqHPhUfzttN13nfTXFbfaY-2FTitJpfh9uvSqrEef3LeLhzKlMIINZ2o4rWLRfYYRKyxDEGnegSZEPYSUmh3UiFsJEjIPLiMYyIY1WfmzRn-2BBRQO5xedMiaW-2FNK70OajGwAvMqAS3XwLgCRiuUrcZPXUkAeg5NQu3Cvq17KNMmdo-2FpaU5TELp_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2BwwpcDaf5-2F8r2xnmoMPiQolH-2BxC2f1ma-2B8EoQ2r9hKeygLPW4FfNMss91GR43-2BxhXHTpV1cp2t1lPjCOhqDwe7lsGPdU1ofJTepmfQS0kYz5bYE-2FULNUL8dtAxvN3oS5dLKn3BnwfYhMXm1cAeaRXdO0M15dzcH2xWnOkkZr5bJNv8G-2BXZPO7kprcWDBECex91xwYokid-2BkSakRsBw0mgV>',0,0,0,0,0,0,'2025-09-24 14:36:22','2025-12-09 19:28:52','2025-12-09 19:28:52','2025-12-09 19:28:52',NULL,NULL,NULL),
(774,4,'<20250924144943.c9391b34530c8454@emails.leatherman.com>',NULL,NULL,'=?UTF-8?q?Don=E2=80=99t_Miss_Out_on_Weekend_Savings.?=','Leatherman@emails.leatherman.com','Leatherman','<!DOCTYPE html>\r\n<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\"><head><title> Don&#8217;t Miss Out on Weekend Savings.</title><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><!--[if mso]>\r\n<xml><w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\"><w:DontUseAdvancedTypographyReadingMail/></w:WordDocument>\r\n<o:OfficeDocumentSettings><o:PixelsPerInch>96</o:PixelsPerInch><o:AllowPNG/></o:OfficeDocumentSettings></xml>\r\n<![endif]--><style>\r\n*{box-sizing:border-box}body{margin:0;padding:0}a[x-apple-data-detectors]{color:inherit!important;text-decoration:inherit!important}#MessageViewBody a{color:inherit;text-decoration:none}p{line-height:inherit}.desktop_hide,.desktop_hide table{mso-hide:all;display:none;max-height:0;overflow:hidden}.image_block img+div{display:none}sub,sup{font-size:75%;line-height:0} @media (max-width:620px){.mobile_hide{display:none}.row-content{width:100%!important}.stack .column{width:100%;display:block}.mobile_hide{min-height:0;max-height:0;max-width:0;overflow:hidden;font-size:0}.desktop_hide,.desktop_hide table{display:table!important;max-height:none!important}.row-3 .column-1 .block-2.paragraph_block td.pad>div{font-size:15px!important}.row-3 .column-1 .block-1.heading_block h1{font-size:20px!important}.row-3 .column-1 .block-3.button_block span{font-size:10px!important;line-height:20px!important}.row-5 .column-1{padding:0!important}}\r\n</style><!--[if mso ]><style>sup, sub { font-size: 100% !important; } sup { mso-text-raise:10% } sub { mso-text-raise:-10% }</style> <![endif]--><!--[if true]><style>.forceBgColor{background-color: white !important}</style><![endif]--></head><body class=\"body forceBgColor\" style=\"background-color:transparent;margin:0;padding:0;-webkit-text-size-adjust:none;text-size-adjust:none\"><span style=\"color: transparent; display: none !important; font-size: 0px; line-height: 0px; height: 0; max-height: 0; max-width: 0; opacity: 0; overflow: hidden; mso-hide: all; visibility: hidden; width: 0;\">Bonus points and sale access &#8211; only for Insiders</span><div style=\"display: none; max-height: 0px; overflow: hidden;\">&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&nbsp; </div><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/CgxoqE1BKlemu9sZFygSIKEB1TSHdAoMFzJh4_xfX_C_aGh_q8wbxgDKgfrKZjaNMVip7UEBNdpBagxoR0_g78-WAAdi9-TIAQGAAgM.H89Qf0JS0c3HtA/click\" xnpe-attr=\"notextnorew\"><img width=\"1\" height=\"1\" alt=\"\" src=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/CgxoqE1BKlemu9sZFygSIKEB1TSHdAoMFzJh4_xfX_C_aGh_q8wbxgDKgfrKZjaNMVip7UEBNdpBagxoR0_g78-WAAdi9-SAAgM.xIjMnJLlLi1o4g/open\"></a><table class=\"nl-container\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:transparent\"><tbody><tr><td><table class=\"row row-1\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:600px\">\r\n<a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUljIeNWkvYSLR9wo8fGf-PgP-zMy6lefkT7GcKrx16k0s16pbYwZJSUFxVb6-uXl5Xo5qYklGalFuYl5esn5ufoFiempxfoIQd3MvOLMlNQi3aLU8sSilGLdgqL89KLEXPvSktz44vzSouRUWxdjM1M1ED83NSWzNNc2NTcxMwcskJyYW5CYmZ5na2RqYGlkEh8MZMeHFsQ75eeVFsf7JBaXxDsn5kDUZqYQUGUYsfKtI6PpLUcrAS6m0mIhrqSc_PzcotTE5AwrbqBIrhAr2GYrFSAnWUgOv2lRofr6SfkplfoliUk5qfolEHaRfkkKRCTaMBZTEJsImJ2SWQbGiUlWpubGKRbmZgaGickpyYbmKTVgRwG9Z1WUmZztkJtYVpRZoZefl1qTbGZpaWCelJJsaZRkmmJumMWT4e7_4P35aQzsSd-fNDAxAwDFnqbf.yfROJg-_ty7k6g/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/Logo%20%282%29_2.png\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt=\"Reward Yourself\" title=\"Reward Yourself\" height=\"auto\"></a></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-2 mobile_hide\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#393c43;background-size:auto;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:10px;vertical-align:top\"><table class=\"heading_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"padding-left:40px;padding-right:40px;padding-top:20px;text-align:center;width:100%\"><h1 style=\"margin:0;color:#fff;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:34px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:41px\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">&#160;LAST CHANCE TO EARN YOUR BONUS POINTS</span></h1></td></tr></table><table class=\"paragraph_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:25px\"><div style=\"color:#fff;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:18px;font-weight:400;letter-spacing:0;line-height:1.2;text-align:center;mso-line-height-alt:22px\"><p style=\"margin:0;margin-bottom:16px\">\r\nInsiders are gearing up for exclusive discounts this weekend. Don\'t miss out.</p><p style=\"margin:0\">Join now, and you&#8217;ll be ready when the savings begin &#8212; plus, <strong>you&#8217;ll earn 250 bonus points just for completing your profile</strong>.</p></div></td></tr></table><table class=\"button_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"20\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\">\r\n<a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUljIeNWkvYSLR9wo8fGf-PgP-zMy6lefkT7GcKrx16k0s16pbYwZJSUFxVb6-uXl5Xo5qYklGalFuYl5esn5ufoFiempxfoIQd3MvOLMlNQi3aLU8sSilGLdgqL89KLEXPvSktz44vzSouRUWxdjM1M1ED83NSWzNNc2NTcxMwcskJyYW5CYmZ5na2RqYGlkEh8MZMeHFsQ75eeVFsf7JBaXxDsn5kDUZqYQUGUYsfKtI6PpLUcrAS6m0mIhrqSc_PzcotTE5AwrbqBIrhAr2GYrFSAnWUgOv2lRIfr6SfkplfoliUk5qfolEHaRfkkKRCTaKBZTEIsy41goNyWzTD8xycrU3DjFwtzMwDAxOSXZ0DylBuwmoO-sijKTsx1yE8uKMiv08vNSa5LNLC0NzJNSki2NkkxTzA2zeDLc_R-8Pz-NgT3p-5MGJmYAD0ymWA.NF8_fR11p-uWjQ/click\" target=\"_blank\" style=\"color:#393c43;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUljIeNWkvYSLR9wo8fGf-PgP-zMy6lefkT7GcKrx16k0s16pbYwZJSUFxVb6-uXl5Xo5qYklGalFuYl5esn5ufoFiempxfoIQd3MvOLMlNQi3aLU8sSilGLdgqL89KLEXPvSktz44vzSouRUWxdjM1M1ED83NSWzNNc2NTcxMwcskJyYW5CYmZ5na2RqYGlkEh8MZMeHFsQ75eeVFsf7JBaXxDsn5kDUZqYQUGUYsfKtI6PpLUcrAS6m0mIhrqSc_PzcotTE5AwrbqBIrhAr2GYrFSAnWUgOv2lJVqbmxikW5mYGhonJKcmG5ik1YN1Ad1gVZSZnO-QmlhVlVujl56XWJJtZWhqYJ6UkWxolmaaYG2bxZLj7P3h_fhoDe9L3Jw1MzAAimYeI.92S0o8YzaKy5bQ/click\"  style=\"height:40px;width:228px;v-text-anchor:middle;\" arcsize=\"0%\" fillcolor=\"#ffcf06\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"0px\" color=\"#ffcf06\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#393c43;font-family:\'Trebuchet MS\', Tahoma, sans-serif;font-size:15px\">\r\n<![endif]-->\r\n<span class=\"button\" style=\"background-color: #ffcf06; mso-shading: transparent; border-bottom: 0px solid transparent; border-left: 0px solid transparent; border-radius: 0px; border-right: 0px solid transparent; border-top: 0px solid transparent; color: #393c43; display: inline-block; font-family: \'Trebuchet MS\',\'Lucida Grande\', \'Lucida Sans Unicode\', \'Lucida Sans\', Tahoma, sans-serif; font-size: 15px; font-weight: 700; mso-border-alt: none; padding-bottom: 5px; padding-top: 5px; padding-left: 20px; padding-right: 20px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 30px;\">BECOME AN INSIDER TODAY</span></span>\r\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table><div class=\"spacer_block block-4\" style=\"height:40px;line-height:40px;font-size:1px\">&#8202;</div></td></tr></tbody></table></td></tr></tbody></table><!--[if !mso]><!--><table class=\"row row-3 desktop_hide\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden;background-color:#393c43;background-size:auto;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:10px;vertical-align:top\"><table class=\"heading_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tr><td class=\"pad\" style=\"padding-left:20px;padding-right:20px;padding-top:10px;text-align:center;width:100%\"><h1 style=\"margin:0;color:#fff;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:26px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:31px\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">YOUR INSIDER ADVANTAGE STARTS HERE</span></h1></td></tr></table><table class=\"paragraph_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tr><td class=\"pad\" style=\"padding-bottom:15px;padding-left:30px;padding-right:30px;padding-top:20px\"><div style=\"color:#fff;direction:ltr;font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;font-size:16px;font-weight:400;letter-spacing:0;line-height:1.2;text-align:center;mso-line-height-alt:19px\"><p style=\"margin:0;margin-bottom:16px\">Insiders are gearing up for exclusive discounts this weekend. Don\'t miss out.</p><p style=\"margin:0\">Join now, and you&#8217;ll be ready when the savings begin &#8212; plus, <strong>you&#8217;ll earn 250 bonus points just for completing your profile</strong>.</p></div></td></tr></table><table class=\"button_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"10\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUljIeNWkvYSLR9wo8fGf-PgP-zMy6lefkT7GcKrx16k0s16pbYwZJSUFxVb6-uXl5Xo5qYklGalFuYl5esn5ufoFiempxfoIQd3MvOLMlNQi3aLU8sSilGLdgqL89KLEXPvSktz44vzSouRUWxdjM1M1ED83NSWzNNc2NTcxMwcskJyYW5CYmZ5na2RqYGlkEh8MZMeHFsQ75eeVFsf7JBaXxDsn5kDUZqYQUGUYsfKtI6PpLUcrAS6m0mIhrqSc_PzcotTE5AwrbqBIrhAr2GYrFSAnWUgOv2lRIfr6SfkplfoliUk5qfolEHaRfkkKRCTaOBZTEIcyMDcls0w_McnK1Nw4xcLczMAwMTkl2dA8pQbsJqDvrIoyk7MdchPLijIr9PLzUmuSzSwtDcyTUpItjZJMU8wNs3gy3P0fvD8_jYE96fuTBiZmAA_Oplk.hf6eQZc4eKXpBQ/click\" target=\"_blank\" style=\"color:#393c43;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUljIeNWkvYSLR9wo8fGf-PgP-zMy6lefkT7GcKrx16k0s16pbYwZJSUFxVb6-uXl5Xo5qYklGalFuYl5esn5ufoFiempxfoIQd3MvOLMlNQi3aLU8sSilGLdgqL89KLEXPvSktz44vzSouRUWxdjM1M1ED83NSWzNNc2NTcxMwcskJyYW5CYmZ5na2RqYGlkEh8MZMeHFsQ75eeVFsf7JBaXxDsn5kDUZqYQUGUYsfKtI6PpLUcrAS6m0mIhrqSc_PzcotTE5AwrbqBIrhAr2GYrFSAnWUgOv2lJVqbmxikW5mYGhonJKcmG5ik1YN1Ad1gVZSZnO-QmlhVlVujl56XWJJtZWhqYJ6UkWxolmaaYG2bxZLj7P3h_fhoDe9L3Jw1MzAAimYeI.92S0o8YzaKy5bQ/click\"  style=\"height:32px;width:194px;v-text-anchor:middle;\" arcsize=\"0%\" fillcolor=\"#ffcf06\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"0px\" color=\"#ffcf06\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#393c43;font-family:sans-serif;font-size:11px\">\r\n<![endif]-->\r\n<span class=\"button\" style=\"background-color: #ffcf06; mso-shading: transparent; border-bottom: 0px solid transparent; border-left: 0px solid transparent; border-radius: 0px; border-right: 0px solid transparent; border-top: 0px solid transparent; color: #393c43; display: inline-block; font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size: 11px; font-weight: 700; mso-border-alt: none; padding-bottom: 5px; padding-top: 5px; padding-left: 20px; padding-right: 20px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 22px;\">BECOME AN INSIDER TODAY</span></span>\r\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><!--<![endif]--><table class=\"row row-4\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"html_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div style=\"font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;text-align:center\" align=\"center\"><table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#393b42\" align=\"center\" width=\"100%\" style=\"width: 100%; padding: 10px 0px;\"><tbody><tr><td align=\"center\">\r\n\r\n        <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\"><tbody><tr align=\"center\"><td colspan=\"5\"></td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zs8rBVEcBXA_knreQrNRlBRL8-7MmB9mSnksbJSFlLxet-_9wVxz71zNXO9RCisrW3tL-SPsLKSsbKwUW7FTsvB6FhbYnfPpLI41cd5775-YSnXEg6dPjN-u0vTw8nbsuufm-ONmMzwdbaXG7JQJQu12uyby0sBWAapGtUKSg0l5oSA3WstyEquS7ecqM5jpXBtTAM3mnOkfliLPBJsD1yOzQKgduZzY_gwP7dhlnk3IJnDfDaIgAHf94qXeGzzUk-FK325pVYjUWhUcaJoMdURZA1yBkMlUp1Br3Auc2PPxqtjK8doOXtD5bomXoTR4EaTc2EOIaLaPDBDJkfnOBTLsWxp-8zf-Jd3MROv_xY80vCYCkgTRDJuNQscFyqgbsYPubyxYUgiazStoFWKvpnN-QMM4diLCaOyRgEXudjVdWnl8vTvrGSTvz0d9_V_QCZpE.UMR9UNK_7hlrng/click\" data-msdyn-tracking-id=\"060e7af814e081672338229931\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/c9ecf696-8d9b-11f0-a760-e2c73f792b8b\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"Instagram\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zr1Lw0AYBvBWEaF2kCyCggi6ppfvmIDQ6uAiOIgglnpc7i7mzCVXkusXFNTJydXdUfwj3ByK4OTiJOgqugniYGkHBxXe4Xl-PMOrLF0WH6wzWSrPGej5C8L3myg6vr5buC0MTj8HoXM-fxBJ2cx9ADqdTkWyWIq4gkUCqpwiGdEsQSmUQvB8GSY56aVJLCFnaczImmVik-CQqppmEdXCJlY900Oqrdlh6FA6vFDfu3qtFe3Hmj9bmmjlSingQiQZRTjyZ4aSKFM0QYz7K8OClUXD1jzDgjvsMIW7Tbgu0lYOt1Au4QbifL8LQCBID0gUcArkOGdAkrHUrcZv_EtGmbD2_4sfqZsNgALfdk2y6jqajjDBukv6o78hI37GcFxNUDtj3YpIaR87nqe5AcGeEdjE1Y_K0eb209v9RWE6-Hg5mZj8BhIckNo.r4EU7SDQ5a288g/click\" data-msdyn-tracking-id=\"55a2adb6bbc371672338239108\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/c9ef9996-8d9b-11f0-a760-e2c73f792b8b\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"TikTok\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zr1Lw0AYBvC2IkLtIFkEBRF0NL3kmo8mULA6uBQcRBBFjsvd1Zz5uJpcv6CgTk6u7o7iH-HmUAQnFydBV9FNEAdrO3RQt-f58fLyKIuX2QfjTOYLsxA_fyH0fuP7x9d387eZ_ulnv26dzx35UjZSF4B2u12sY8I8IYIiERGoMSx9lkQ4BksoSmk3jgKJqIiFlAkmQUVbGXPI44DTSolAi8ISUw1bt1XDqJdVx7SIig3N0izbwRDW9Z2r12rWfKy6M_lcM1XyXihElDBMfHd6IJEyySLMQ3d5UIiyAE3NgQba4gcx2m6gNRE3U1TDqUTrOAx3OwB4gnaBxF7IgBzlBEg6kj1j_zf-JcNMeev_i7H8PMWea9olWrYtTceEEt2mveFuxKmbcBKsRriV8E5RxKxHLMfRbI8SB3omtfXDgr-x-fR2f5GZ8j5eTnIT3wUrllo.qjO1xQ5jC6NFlw/click\" data-msdyn-tracking-id=\"1c347b64588db1672338250130\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/c9ea5e2c-8d9b-11f0-a760-e2c73f792b8b\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"Facebook\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zr1Lw0AABfBWEaF2kC6Cggg6ml6SJrkmULA6uFQcRBBLOS53F3M2yZXk0g8oqJOTq7uj-Ee4ORTBycVJ0FV0E8TB0g4d1O29H294hZWr7KNxLnP5BR2_fCP0cev7Jzf3S3eZwdnXwLMuFnu-lK3EAaDT6RR7IpWpy4pEhCBNWAxqDEufxSGOdhjleBWFCe1FYVMiKiIhZYxJs6KuTzjgUZPTilcuUYsyVYHY8xQD6qZilzRDoSrRy2WoQ8vytIPrt2rWfKo687mpNCnk3ECIMGaY-M7cUMLCDAsxD5y1YSGFZd1Ubd1Ae_woQvsttCmiNEE1nEi0hYPgsAuAK2gPSOwGDMhxjoGkY6kbjd_4l4wy5e3_FxOpmw2AXceEJVqGlqphQokGaX_0G3HqxJw0N0Lcjnm3KCLWJ5Ztq9ClxNZdk0LtOO9v7z6_P1xmZt3P19Op6R9gbZpD.dV3HQD6Cif8c8g/click\" data-msdyn-tracking-id=\"05f4617e605a71672338263640\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/c9f1e372-8d9b-11f0-a760-e2c73f792b8b\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"YouTube\"></a>\r\n              </td>\r\n\r\n              <td colspan=\"6\"></td>\r\n            </tr></tbody></table></td>\r\n    </tr></tbody></table></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-5\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;vertical-align:top\"><table class=\"html_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div style=\"font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;text-align:center\" align=\"center\"><div data-section=\"true\" class=\"footer-container\" style=\"font-family: Arial, Verdana, sans-serif; color: #ffffff; background-color: #393b42; margin: 0; border-radius: 0;\" data-protected=\"false\">\r\n\r\n  <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse; background-color: #393b42;\"><tr><td align=\"center\" style=\"padding: 10px 0; text-align: center;\">\r\n\r\n        <div style=\"display: inline-block; text-align: center;\">\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzr1Lw0AYBnBbEaF2kC6Cggg6ml6SNkkTKFgdXAQHEUQpx33VnLnLleTaWiioIDi5ujuKf4SbQxGcXJwEXUU3QRws7aCgwwvP84MH3sLCZeahfKZz-RkbPX9B-H4ThkfXd3O3Y_2Tz37DPZ89zYRaN9MAgE6nUxQM6ZAlEsVFoiRoKsEJZyloJryNSNcYQrcYaikWoUxpN5aRhlTFSusEkahqLv-w4HHEabViYselZWZgx3ONcoXYhl8qmYaLG57PzJKHfGLtXL3WMs5jLZjOZVtpIYeFUjJhiITB1EBkYYJJxEWwNCikMG87pm-X4Rbfj-F2E66quJXCDZRquIaE2I0AwIp2gUZYMKBHOQGajmTPqf_F_2SYKW8PbzS16r8YDSoOHK9EK55rWohQYnm0N3wVchoknEQrErUTflhUMesR1_dND1Pi29ihnnWQD9c3n97uL8Ym8cfLcXb8G-IbmXs.ERaPC_qjPvdWig/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #ffffff; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Privacy Policy</u></strong>\r\n          </a>\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzsFLG0EUBnCjFCF6KLkUKhQPXrOTWbNZd0E0G5PYbqPSGJFIGGZnJrurszOb3Vkbi9D21FOvvfdY-j_orQcpeOqlp0K9SnsriAdDcmjBHh587wfv8RUWP-a-ld-p_PwjHf-8Rej3eRC8_vx14cvUxdubi37l_eOzXKBUnNoAZOlykVChMeFrHpcyShgmgUZkBDjDKmBJhEVRScmLcSJpRlQoBWCg5g_loA4dl7Mos9Ju48RvP3XrDtxtb9KqbDVePQvKaNjfRzWEmwEarLz0hv6G6_cTt3uIt1p7YWx26s4WjR0y-gWrnc3GYHdQelHf6zZb2g7qS-jwCne3o8wHRIqUCbXGsfBXmYD7n66rOeN71X6Yn87SQv5vdXtuJFHhAYtwyO2l0UIKT3SjZOll1A59gToxcqTIUvQcpwrVMOfdIwA8SU-Awh5nQE1yAhSdyIHRu4__k3Gm4fF4Jqew9w_jA73n2Ya5TFfMSgliQgk06em4KgqpnYTkaD3Cx0k41KRgp6RiWSXTo8TSPYOa8HA-aG7_-HX5YWrW-3P1ZnrmDne2ruk.fvT0ScefI4e_hQ/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #ffffff; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Manage Preferences</u></strong>\r\n          </a>\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzsFLG0EUBnCjlEL0ILkUWigevGYnk2Sz7kKp2ZhEu41KY0QiYZidmeyuzs5sdmc1iqA9efLau0fp_9DePIjgqZeeCu216K1QemhIDi20hwff-8F7fLmFy8yn8rnKzj0p4q-_EHr46Pun72-fXU_dvP15069cPP2Q8ZWKEguANCnlCRUaE57mcinDmGHia0SGgDOsfBaHWOSVlDwfxZKmRAVSAAZq3lAO6tB2OAtTM-k2jrz2mlO34VZ7lVZlq3H8yi-jYX8H1RBu-miwdOgOvRXH68dOdw-vt7aDyOjU7XUa2WT0C1Y7q43B1qDwpr7dbba0TdSX0OYV7myEqQeIFAkT6iXHwnvBBNy5-l7N6J-r1nx2Ok1y2T_VrdmRhLlHLMQBtxZHC8k9L-oFs1hG7cATqBMhW4o0Qa9xolANc97dB8CV9Ago7HIG1CTHQNGJ7Oq9f_F_Ms40OBjP5BT2_mK8W-q5lm6U6JJRKUBMKIEGPRlXRQG14oDsL4f4IA6GmhTshFRMs2C4lJhFV6cG3Jvzmxtf7u_eTT12f3w7m575DXgFruo.VFYqEcO1go8nLQ/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #ffffff; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Unsubscribe</u></strong>\r\n          </a>\r\n\r\n        </div>\r\n\r\n      </td>\r\n    </tr></table><table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse; background-color: #393b42;\"><tr><td align=\"center\" style=\"padding: 0; text-align: center;\">\r\n        <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse;\"><tr><td align=\"center\" style=\"text-align: center; padding: 10px 30px;\">\r\n              <div style=\"font-size: 11px; color: #ffffff; text-align: center;\">\r\n\r\n                <p>This email was sent to Rick@mavrix.one</p>\r\n\r\n                <p>by <strong>Leatherman Tool Group, Inc.</strong></p>\r\n\r\n                <p>12106 NE Ainsworth Circle <br>Portland, Oregon 97220</p>\r\n\r\n                <p style=\"display: none;\">Preference Center (PLACEHOLDER)</p>\r\n\r\n                <p style=\"line-height: 1.25;\">&#169; 2025 Leatherman Tool Group, Inc. All Rights Reserved.</p>\r\n                <br></div>\r\n            </td>\r\n          </tr></table></td>\r\n    </tr></table></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><!-- End --></body></html>','[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUljIeNWkvYSLR9wo8fGf-PgP-zMy6lefkT7GcKrx16k0s16pbYwZJSUFxVb6-uXl5Xo5qYklGalFuYl5esn5ufoFiempxfoIQd3MvOLMlNQi3aLU8sSilGLdgqL89KLEXPvSktz44vzSouRUWxdjM1M1ED83NSWzNNc2NTcxMwcskJyYW5CYmZ5na2RqYGlkEh8MZMeHFsQ75eeVFsf7JBaXxDsn5kDUZqYQUGUYsfKtI6PpLUcrAS6m0mIhrqSc_PzcotTE5AwrbqBIrhAr2GYrFSAnWUgOv2lRofr6SfkplfoliUk5qfolEHaRfkkKRCTaMBZTEJsImJ2SWQbGiUlWpubGKRbmZgaGickpyYbmKTVgRwG9Z1WUmZztkJtYVpRZoZefl1qTbGZpaWCelJJsaZRkmmJumMWT4e7_4P35aQzsSd-fNDAxAwDFnqbf.yfROJg-_ty7k6g/click]\r\n\r\n# LAST CHANCE TO EARN YOUR BONUS POINTS\r\n\r\nInsiders are gearing up for exclusive discounts this weekend. Don\'t miss out.\r\n\r\nJoin now, and you’ll be ready when the savings begin — plus, *you’ll earn 250 bonus points just for completing your profile*.\r\n\r\nBECOME AN INSIDER TODAY [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUljIeNWkvYSLR9wo8fGf-PgP-zMy6lefkT7GcKrx16k0s16pbYwZJSUFxVb6-uXl5Xo5qYklGalFuYl5esn5ufoFiempxfoIQd3MvOLMlNQi3aLU8sSilGLdgqL89KLEXPvSktz44vzSouRUWxdjM1M1ED83NSWzNNc2NTcxMwcskJyYW5CYmZ5na2RqYGlkEh8MZMeHFsQ75eeVFsf7JBaXxDsn5kDUZqYQUGUYsfKtI6PpLUcrAS6m0mIhrqSc_PzcotTE5AwrbqBIrhAr2GYrFSAnWUgOv2lRIfr6SfkplfoliUk5qfolEHaRfkkKRCTaKBZTEIsy41goNyWzTD8xycrU3DjFwtzMwDAxOSXZ0DylBuwmoO-sijKTsx1yE8uKMiv08vNSa5LNLC0NzJNSki2NkkxTzA2zeDLc_R-8Pz-NgT3p-5MGJmYAD0ymWA.NF8_fR11p-uWjQ/click]\r\n\r\n# YOUR INSIDER ADVANTAGE STARTS HERE\r\n\r\nInsiders are gearing up for exclusive discounts this weekend. Don\'t miss out.\r\n\r\nJoin now, and you’ll be ready when the savings begin — plus, *you’ll earn 250 bonus points just for completing your profile*.\r\n\r\nBECOME AN INSIDER TODAY [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUljIeNWkvYSLR9wo8fGf-PgP-zMy6lefkT7GcKrx16k0s16pbYwZJSUFxVb6-uXl5Xo5qYklGalFuYl5esn5ufoFiempxfoIQd3MvOLMlNQi3aLU8sSilGLdgqL89KLEXPvSktz44vzSouRUWxdjM1M1ED83NSWzNNc2NTcxMwcskJyYW5CYmZ5na2RqYGlkEh8MZMeHFsQ75eeVFsf7JBaXxDsn5kDUZqYQUGUYsfKtI6PpLUcrAS6m0mIhrqSc_PzcotTE5AwrbqBIrhAr2GYrFSAnWUgOv2lRIfr6SfkplfoliUk5qfolEHaRfkkKRCTaOBZTEIcyMDcls0w_McnK1Nw4xcLczMAwMTkl2dA8pQbsJqDvrIoyk7MdchPLijIr9PLzUmuSzSwtDcyTUpItjZJMU8wNs3gy3P0fvD8_jYE96fuTBiZmAA_Oplk.hf6eQZc4eKXpBQ/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zs8rBVEcBXA_knreQrNRlBRL8-7MmB9mSnksbJSFlLxet-_9wVxz71zNXO9RCisrW3tL-SPsLKSsbKwUW7FTsvB6FhbYnfPpLI41cd5775-YSnXEg6dPjN-u0vTw8nbsuufm-ONmMzwdbaXG7JQJQu12uyby0sBWAapGtUKSg0l5oSA3WstyEquS7ecqM5jpXBtTAM3mnOkfliLPBJsD1yOzQKgduZzY_gwP7dhlnk3IJnDfDaIgAHf94qXeGzzUk-FK325pVYjUWhUcaJoMdURZA1yBkMlUp1Br3Auc2PPxqtjK8doOXtD5bomXoTR4EaTc2EOIaLaPDBDJkfnOBTLsWxp-8zf-Jd3MROv_xY80vCYCkgTRDJuNQscFyqgbsYPubyxYUgiazStoFWKvpnN-QMM4diLCaOyRgEXudjVdWnl8vTvrGSTvz0d9_V_QCZpE.UMR9UNK_7hlrng/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zr1Lw0AYBvBWEaF2kCyCggi6ppfvmIDQ6uAiOIgglnpc7i7mzCVXkusXFNTJydXdUfwj3ByK4OTiJOgqugniYGkHBxXe4Xl-PMOrLF0WH6wzWSrPGej5C8L3myg6vr5buC0MTj8HoXM-fxBJ2cx9ADqdTkWyWIq4gkUCqpwiGdEsQSmUQvB8GSY56aVJLCFnaczImmVik-CQqppmEdXCJlY900Oqrdlh6FA6vFDfu3qtFe3Hmj9bmmjlSingQiQZRTjyZ4aSKFM0QYz7K8OClUXD1jzDgjvsMIW7Tbgu0lYOt1Au4QbifL8LQCBID0gUcArkOGdAkrHUrcZv_EtGmbD2_4sfqZsNgALfdk2y6jqajjDBukv6o78hI37GcFxNUDtj3YpIaR87nqe5AcGeEdjE1Y_K0eb209v9RWE6-Hg5mZj8BhIckNo.r4EU7SDQ5a288g/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zr1Lw0AYBvC2IkLtIFkEBRF0NL3kmo8mULA6uBQcRBBFjsvd1Zz5uJpcv6CgTk6u7o7iH-HmUAQnFydBV9FNEAdrO3RQt-f58fLyKIuX2QfjTOYLsxA_fyH0fuP7x9d387eZ_ulnv26dzx35UjZSF4B2u12sY8I8IYIiERGoMSx9lkQ4BksoSmk3jgKJqIiFlAkmQUVbGXPI44DTSolAi8ISUw1bt1XDqJdVx7SIig3N0izbwRDW9Z2r12rWfKy6M_lcM1XyXihElDBMfHd6IJEyySLMQ3d5UIiyAE3NgQba4gcx2m6gNRE3U1TDqUTrOAx3OwB4gnaBxF7IgBzlBEg6kj1j_zf-JcNMeev_i7H8PMWea9olWrYtTceEEt2mveFuxKmbcBKsRriV8E5RxKxHLMfRbI8SB3omtfXDgr-x-fR2f5GZ8j5eTnIT3wUrllo.qjO1xQ5jC6NFlw/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zr1Lw0AABfBWEaF2kC6Cggg6ml6SJrkmULA6uFQcRBBLOS53F3M2yZXk0g8oqJOTq7uj-Ee4ORTBycVJ0FV0E8TB0g4d1O29H294hZWr7KNxLnP5BR2_fCP0cev7Jzf3S3eZwdnXwLMuFnu-lK3EAaDT6RR7IpWpy4pEhCBNWAxqDEufxSGOdhjleBWFCe1FYVMiKiIhZYxJs6KuTzjgUZPTilcuUYsyVYHY8xQD6qZilzRDoSrRy2WoQ8vytIPrt2rWfKo687mpNCnk3ECIMGaY-M7cUMLCDAsxD5y1YSGFZd1Ubd1Ae_woQvsttCmiNEE1nEi0hYPgsAuAK2gPSOwGDMhxjoGkY6kbjd_4l4wy5e3_FxOpmw2AXceEJVqGlqphQokGaX_0G3HqxJw0N0Lcjnm3KCLWJ5Ztq9ClxNZdk0LtOO9v7z6_P1xmZt3P19Op6R9gbZpD.dV3HQD6Cif8c8g/click] \r\n\r\n*Privacy Policy* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzr1Lw0AYBnBbEaF2kC6Cggg6ml6SNkkTKFgdXAQHEUQpx33VnLnLleTaWiioIDi5ujuKf4SbQxGcXJwEXUU3QRws7aCgwwvP84MH3sLCZeahfKZz-RkbPX9B-H4ThkfXd3O3Y_2Tz37DPZ89zYRaN9MAgE6nUxQM6ZAlEsVFoiRoKsEJZyloJryNSNcYQrcYaikWoUxpN5aRhlTFSusEkahqLv-w4HHEabViYselZWZgx3ONcoXYhl8qmYaLG57PzJKHfGLtXL3WMs5jLZjOZVtpIYeFUjJhiITB1EBkYYJJxEWwNCikMG87pm-X4Rbfj-F2E66quJXCDZRquIaE2I0AwIp2gUZYMKBHOQGajmTPqf_F_2SYKW8PbzS16r8YDSoOHK9EK55rWohQYnm0N3wVchoknEQrErUTflhUMesR1_dND1Pi29ihnnWQD9c3n97uL8Ym8cfLcXb8G-IbmXs.ERaPC_qjPvdWig/click] *Manage Preferences* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzsFLG0EUBnCjFCF6KLkUKhQPXrOTWbNZd0E0G5PYbqPSGJFIGGZnJrurszOb3Vkbi9D21FOvvfdY-j_orQcpeOqlp0K9SnsriAdDcmjBHh587wfv8RUWP-a-ld-p_PwjHf-8Rej3eRC8_vx14cvUxdubi37l_eOzXKBUnNoAZOlykVChMeFrHpcyShgmgUZkBDjDKmBJhEVRScmLcSJpRlQoBWCg5g_loA4dl7Mos9Ju48RvP3XrDtxtb9KqbDVePQvKaNjfRzWEmwEarLz0hv6G6_cTt3uIt1p7YWx26s4WjR0y-gWrnc3GYHdQelHf6zZb2g7qS-jwCne3o8wHRIqUCbXGsfBXmYD7n66rOeN71X6Yn87SQv5vdXtuJFHhAYtwyO2l0UIKT3SjZOll1A59gToxcqTIUvQcpwrVMOfdIwA8SU-Awh5nQE1yAhSdyIHRu4__k3Gm4fF4Jqew9w_jA73n2Ya5TFfMSgliQgk06em4KgqpnYTkaD3Cx0k41KRgp6RiWSXTo8TSPYOa8HA-aG7_-HX5YWrW-3P1ZnrmDne2ruk.fvT0ScefI4e_hQ/click] *Unsubscribe* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzsFLG0EUBnCjlEL0ILkUWigevGYnk2Sz7kKp2ZhEu41KY0QiYZidmeyuzs5sdmc1iqA9efLau0fp_9DePIjgqZeeCu216K1QemhIDi20hwff-8F7fLmFy8yn8rnKzj0p4q-_EHr46Pun72-fXU_dvP15069cPP2Q8ZWKEguANCnlCRUaE57mcinDmGHia0SGgDOsfBaHWOSVlDwfxZKmRAVSAAZq3lAO6tB2OAtTM-k2jrz2mlO34VZ7lVZlq3H8yi-jYX8H1RBu-miwdOgOvRXH68dOdw-vt7aDyOjU7XUa2WT0C1Y7q43B1qDwpr7dbba0TdSX0OYV7myEqQeIFAkT6iXHwnvBBNy5-l7N6J-r1nx2Ok1y2T_VrdmRhLlHLMQBtxZHC8k9L-oFs1hG7cATqBMhW4o0Qa9xolANc97dB8CV9Ago7HIG1CTHQNGJ7Oq9f_F_Ms40OBjP5BT2_mK8W-q5lm6U6JJRKUBMKIEGPRlXRQG14oDsL4f4IA6GmhTshFRMs2C4lJhFV6cG3Jvzmxtf7u_eTT12f3w7m575DXgFruo.VFYqEcO1go8nLQ/click] \r\n\r\nThis email was sent to Rick@mavrix.one\r\n\r\nby *Leatherman Tool Group, Inc.*\r\n\r\n12106 NE Ainsworth Circle \r\nPortland, Oregon 97220\r\n\r\n© 2025 Leatherman Tool Group, Inc. All Rights Reserved.',0,0,0,0,0,0,'2025-09-24 14:49:43','2025-12-09 19:28:52','2025-12-09 19:28:52','2025-12-09 19:28:52',NULL,NULL,NULL),
(775,4,' <SA1PR18MB48244E5E510A12C47D94BE3CA11CA@SA1PR18MB4824.namprd18.prod.outlook.com>',NULL,NULL,'Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration','jtrevey@forgenano.com','James Trevey','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nHey Jordan,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nThank you for the quick follow up.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we\'ve decided we\'d like to provide information on additional products to you which are typically not on the menu but I have details\r\n to sort first.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nRegarding shows, happy to discuss when ready. We\'ll be at The Battery Show in 2 weeks, which I think you should consider attending and I\'d be happy to connect while there.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nJames</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b> Thursday, September 18, 2025 11:03 AM<br>\r\n<b>To:</b> James Trevey &lt;jtrevey@forgenano.com&gt;<br>\r\n<b>Cc:</b> Daniel &lt;dansheridanmusic@gmail.com&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div>Hi James,</div>\r\n<div><br>\r\n</div>\r\n<div><br>\r\n</div>\r\nThank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information to optimize our collaboration\r\n and planning:<br>\r\n<br>\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.<br>\r\n<br>\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.<br>\r\n<br>\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.<br>\r\n<br>\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.<br>\r\n<br>\r\nClarify your minimum order quantities and expected pricing for each product line.<br>\r\n<br>\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.<br>\r\n<br>\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted\r\n commercial timelines, and expected pricing.<br>\r\n<br>\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made module and packs for:<br>\r\n<br>\r\n18650:<br>\r\n<br>\r\nNMC: TNL-ITR18650-2600P<br>\r\n<br>\r\nLFP: SW18650-26HPA<br>\r\n<br>\r\nLFP: IFR18650-2000mAh<br>\r\n<br>\r\n21700:<br>\r\n<br>\r\nNMC: INR21700-50S<br>\r\n<br>\r\nNMC: INR21700-4000<br>\r\n<br>\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.\r\n<div><br>\r\n</div>\r\n<div>In terms of the shows you mentioned, we are getting our schedules aligned so we can attend.&nbsp; What\'s the &quot;secret meeting&quot; in Nov?&nbsp;<br>\r\n<br>\r\nWe look forward to your prompt response so we can efficiently move to the next stages.\r\n<div><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div>\r\n<div>Talk soon,&nbsp;</div>\r\n<div><br>\r\n<div>\r\n<div dir=\"ltr\" class=\"x_gmail_signature\" data-smartmail=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n<div class=\"x_gmail_quote x_gmail_quote_container\">\r\n<div dir=\"ltr\" class=\"x_gmail_attr\">On Wed, Sep 17, 2025 at 7:00 PM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote class=\"x_gmail_quote\" style=\"margin:0px 0px 0px 0.8ex; border-left:1px solid rgb(204,204,204); padding-left:1ex\">\r\n<div class=\"x_msg-2971314181662825399\">\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nThanks for moving quickly here. I got bogged down today but better late than never.&nbsp;</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<ul style=\"margin-top:0px; margin-bottom:0px; list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)</div>\r\n</li><ul style=\"margin-top:0px; margin-bottom:0px; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell has a 100% US supply chain already</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell can be made in the <u>millions</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)</div>\r\n</li><ul style=\"margin-top:0px; margin-bottom:0px; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell can be made in the <u>millions </u>next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.</div>\r\n</li><ul style=\"margin-top:0px; margin-bottom:0px; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell can be made in the <u>thousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)</div>\r\n</li><ul style=\"margin-top:0px; margin-bottom:0px; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell can be made in the <u>millions</u>&nbsp;next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)</div>\r\n</li><ul style=\"margin-top:0px; margin-bottom:0px; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell can be made in the <u>thousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n</ul>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.&nbsp;</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI will check with my people on 301 asap.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI look forward to our next communication.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJames</div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block; width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 17, 2025 7:56 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;; Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron\r\n &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Gentlemen,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">It was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<ul style=\"direction:ltr\">\r\n<li style=\"direction:ltr\">James to&nbsp;send the cell specification sheets as soon as possible.</li><li style=\"direction:ltr\">LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.</li><li style=\"direction:ltr\">James to&nbsp;send their term sheet template for throughput contracts.</li><li style=\"direction:ltr\">We should discuss 301 exclusion support for manufacturing equipment.</li></ul>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I look forward to our next conversation.&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_-2971314181662825399OWAfde28f8c-4259-88d0-1359-90b32c84206d\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_-2971314181662825399OWAcfbb2462-d011-b7f2-3b54-f72188fcdb08\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Hey Jordan,\r\n\r\nThank you for the quick follow up.\r\n\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we\'ve decided we\'d like to provide information on additional products to you which are typically not on the menu but I have details to sort first.\r\n\r\nRegarding shows, happy to discuss when ready. We\'ll be at The Battery Show in 2 weeks, which I think you should consider attending and I\'d be happy to connect while there.\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\nSent: Thursday, September 18, 2025 11:03 AM\r\nTo: James Trevey <jtrevey@forgenano.com>\r\nCc: Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\n\r\nThank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information to optimize our collaboration and planning:\r\n\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.\r\n\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.\r\n\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.\r\n\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.\r\n\r\nClarify your minimum order quantities and expected pricing for each product line.\r\n\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.\r\n\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted commercial timelines, and expected pricing.\r\n\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made module and packs for:\r\n\r\n18650:\r\n\r\nNMC: TNL-ITR18650-2600P\r\n\r\nLFP: SW18650-26HPA\r\n\r\nLFP: IFR18650-2000mAh\r\n\r\n21700:\r\n\r\nNMC: INR21700-50S\r\n\r\nNMC: INR21700-4000\r\n\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.\r\n\r\nIn terms of the shows you mentioned, we are getting our schedules aligned so we can attend.  What\'s the \"secret meeting\" in Nov?\r\n\r\nWe look forward to your prompt response so we can efficiently move to the next stages.\r\n\r\n\r\nTalk soon,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&typo=1>\r\n\r\n\r\nOn Wed, Sep 17, 2025 at 7:00 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nJordan,\r\n\r\nThanks for moving quickly here. I got bogged down today but better late than never.\r\n\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:\r\n\r\n\r\n  *\r\nSC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)\r\n     *\r\nThis cell has a 100% US supply chain already\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the thousands next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these\r\n  *\r\nSC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the thousands next year by our partner in the EU, until our factory is online in 2027\r\n\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.\r\n\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.\r\n\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret meeting on November 5th in DC?\r\n\r\nI will check with my people on 301 asap.\r\n\r\nI look forward to our next communication.\r\n\r\nJames\r\n\r\n\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Wednesday, September 17, 2025 7:56 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>; Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nGentlemen,\r\n\r\nIt was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:\r\n\r\n\r\n  *   James to send the cell specification sheets as soon as possible.\r\n  *   LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.\r\n  *   James to send their term sheet template for throughput contracts.\r\n  *   We should discuss 301 exclusion support for manufacturing equipment.\r\n\r\nI look forward to our next conversation.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&typo=1>\r\n',0,0,0,0,0,0,'2025-09-24 15:58:39','2025-12-09 19:28:52','2025-12-09 19:28:52','2025-12-09 19:28:52',NULL,NULL,NULL),
(776,4,'<CAGG9xVdLqs8GdSa7AsevHgtg9-rgn1txO91wzN1cG7H-0+n83g@mail.gmail.com>',NULL,NULL,'Tectonic Summit - Mavrix Questions','colmbfield@gmail.com','Michael Field','<div dir=\"ltr\">Good morning gentlemen,<div><br></div><div>I appreciate the time that both of you have invested in speaking with me over the past month.  </div><div><br></div><div>With regards to my interest in attending the Tectonic Summit in November, my specific questions to help me determine if I would be an optimum participant are:</div><div><br></div><div>1.  What specifically do you envision my task and purpose would be?</div><div>*  -  Would this be akin to beginning to forge relationships with Governmental organizations (NATO, Non-NATO, Militaries) and Defense related industries in the sphere of what Mavrix1 can provide for them or vice versa?</div><div>*  -  Would this be for basically throwing down the marker of, &quot;Hey, we are Mavrix1 and we are going to dominate the battlespace with our soon to come to market technology?&quot;  &quot;Let me give you the teaser of Mavrix1 and follow up with specific capabilities presentations from our subject matter experts in the very near future?&quot;</div><div>*  -  Would this be akin to being a Coalition Brand Ambassador for the company?</div><div>2.  Would anyone else from the company be attending and/or has attended this conference in the past?</div><div>3.  You had mentioned something about possible panel member?  I&#39;m not sure what the potential scope of topics, etc would be as I&#39;m not that familiar with the multitude of your products yet, etc.  I would be a bit hesitant on this one.</div><div>4.  I see that it is a (2) day conference with an entrance fee and typical expenses (hotel, flight, food) which could be economized as best as possible along with assuming some type of advisement/consult fee for the preparation, attendance, and follow ups.  How do you envision this portion?</div><div><br></div><div>As we have discussed, I&#39;m in a period where I&#39;ve recently retired from both my military career (36 year Colonel) and civilian Police Officer (27 years) and beginning to do some traveling while setting up my new house.  I&#39;m not certain whether or not I&#39;m willing to entertain going back to work full time in an office vice doing something with some better flexibility but keeps the mind engaged.  I want to be fully transparent with both of you because you have the vision and can better determine the how&#39;s and where&#39;s folks might fit into Mavrix&#39;s future.</div><div><br></div><div>I&#39;m open to your thoughts and follow on discussions but also realize you need to make some short term decisions specifically in this matter.</div><div><br></div><div>Respectfully,</div><div>Mike Field</div></div>','Good morning gentlemen,\r\n\r\nI appreciate the time that both of you have invested in speaking with me\r\nover the past month.\r\n\r\nWith regards to my interest in attending the Tectonic Summit in November,\r\nmy specific questions to help me determine if I would be an optimum\r\nparticipant are:\r\n\r\n1.  What specifically do you envision my task and purpose would be?\r\n*  -  Would this be akin to beginning to forge relationships with\r\nGovernmental organizations (NATO, Non-NATO, Militaries) and Defense related\r\nindustries in the sphere of what Mavrix1 can provide for them or vice versa?\r\n*  -  Would this be for basically throwing down the marker of, \"Hey, we are\r\nMavrix1 and we are going to dominate the battlespace with our soon to come\r\nto market technology?\"  \"Let me give you the teaser of Mavrix1 and follow\r\nup with specific capabilities presentations from our subject matter experts\r\nin the very near future?\"\r\n*  -  Would this be akin to being a Coalition Brand Ambassador for the\r\ncompany?\r\n2.  Would anyone else from the company be attending and/or has attended\r\nthis conference in the past?\r\n3.  You had mentioned something about possible panel member?  I\'m not sure\r\nwhat the potential scope of topics, etc would be as I\'m not that familiar\r\nwith the multitude of your products yet, etc.  I would be a bit hesitant on\r\nthis one.\r\n4.  I see that it is a (2) day conference with an entrance fee and typical\r\nexpenses (hotel, flight, food) which could be economized as best as\r\npossible along with assuming some type of advisement/consult fee for the\r\npreparation, attendance, and follow ups.  How do you envision this portion?\r\n\r\nAs we have discussed, I\'m in a period where I\'ve recently retired from both\r\nmy military career (36 year Colonel) and civilian Police Officer (27 years)\r\nand beginning to do some traveling while setting up my new house.  I\'m not\r\ncertain whether or not I\'m willing to entertain going back to work full\r\ntime in an office vice doing something with some better flexibility but\r\nkeeps the mind engaged.  I want to be fully transparent with both of you\r\nbecause you have the vision and can better determine the how\'s and where\'s\r\nfolks might fit into Mavrix\'s future.\r\n\r\nI\'m open to your thoughts and follow on discussions but also realize you\r\nneed to make some short term decisions specifically in this matter.\r\n\r\nRespectfully,\r\nMike Field',0,0,0,0,0,0,'2025-09-24 16:01:56','2025-12-09 19:28:53','2025-12-09 19:28:53','2025-12-09 19:28:53',NULL,NULL,NULL),
(777,4,'<CAJO9__bmoW4XK8jV1xs64hAhDunN9p2kO1Dvfzsi-Xn2qnpPQQ@mail.gmail.com>',NULL,NULL,'Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Hi James,</div><div><br></div><div>Thank you for the follow up.  You were on my list to contact today!  </div><div><br></div><div>Would that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...</div><div><br></div><div>I will let you know if I will be able to make it up to Detroit for The Battery Show.  </div><div><br></div><div>Looking forward to seeing the deck.</div><div><br></div><div>All the best, </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Sep 24, 2025 at 11:59 AM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"msg-6814561645313625911\">\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nHey Jordan,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nThank you for the quick follow up. </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we&#39;ve decided we&#39;d like to provide information on additional products to you which are typically not on the menu but I have details\r\n to sort first. </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nRegarding shows, happy to discuss when ready. We&#39;ll be at The Battery Show in 2 weeks, which I think you should consider attending and I&#39;d be happy to connect while there. </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<div id=\"m_-6814561645313625911appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div id=\"m_-6814561645313625911divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Thursday, September 18, 2025 11:03 AM<br>\r\n<b>To:</b> James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</font>\r\n<div> </div>\r\n</div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div>Hi James,</div>\r\n<div><br>\r\n</div>\r\n<div><br>\r\n</div>\r\nThank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information to optimize our collaboration\r\n and planning:<br>\r\n<br>\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.<br>\r\n<br>\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.<br>\r\n<br>\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.<br>\r\n<br>\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.<br>\r\n<br>\r\nClarify your minimum order quantities and expected pricing for each product line.<br>\r\n<br>\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.<br>\r\n<br>\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted\r\n commercial timelines, and expected pricing.<br>\r\n<br>\r\nAdditionally, for reference, these are LBC’s most popular cells we&#39;ve made module and packs for:<br>\r\n<br>\r\n18650:<br>\r\n<br>\r\nNMC: TNL-ITR18650-2600P<br>\r\n<br>\r\nLFP: SW18650-26HPA<br>\r\n<br>\r\nLFP: IFR18650-2000mAh<br>\r\n<br>\r\n21700:<br>\r\n<br>\r\nNMC: INR21700-50S<br>\r\n<br>\r\nNMC: INR21700-4000<br>\r\n<br>\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.\r\n<div><br>\r\n</div>\r\n<div>In terms of the shows you mentioned, we are getting our schedules aligned so we can attend.  What&#39;s the &quot;secret meeting&quot; in Nov? <br>\r\n<br>\r\nWe look forward to your prompt response so we can efficiently move to the next stages.\r\n<div><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div>\r\n<div>Talk soon, </div>\r\n<div><br>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n<div>\r\n<div dir=\"ltr\">On Wed, Sep 17, 2025 at 7:00 PM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div>\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nThanks for moving quickly here. I got bogged down today but better late than never. </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nAttached you&#39;ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<ul style=\"margin-top:0px;margin-bottom:0px;list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won&#39;t tell us the application)</div>\r\n</li><ul style=\"margin-top:0px;margin-bottom:0px;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell has a 100% US supply chain already</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell can be made in the <u>millions</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)</div>\r\n</li><ul style=\"margin-top:0px;margin-bottom:0px;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell can be made in the <u>millions </u>next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.</div>\r\n</li><ul style=\"margin-top:0px;margin-bottom:0px;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell can be made in the <u>thousands</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)</div>\r\n</li><ul style=\"margin-top:0px;margin-bottom:0px;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell can be made in the <u>millions</u> next year by our partner in the EU. As we show adoption, we&#39;ll expand our factory to build these</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)</div>\r\n</li><ul style=\"margin-top:0px;margin-bottom:0px;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell can be made in the <u>thousands</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n</ul>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all. </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI will check with my people on 301 asap.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI look forward to our next communication.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, September 17, 2025 7:56 AM<br>\r\n<b>To:</b> James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;; Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron\r\n &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Gentlemen,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">It was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I&#39;ve outlined the key action items below:</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<ul style=\"direction:ltr\">\r\n<li style=\"direction:ltr\">James to send the cell specification sheets as soon as possible.</li><li style=\"direction:ltr\">LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.</li><li style=\"direction:ltr\">James to send their term sheet template for throughput contracts.</li><li style=\"direction:ltr\">We should discuss 301 exclusion support for manufacturing equipment.</li></ul>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I look forward to our next conversation. </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a id=\"m_-6814561645313625911x_m_-2971314181662825399OWAfde28f8c-4259-88d0-1359-90b32c84206d\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a id=\"m_-6814561645313625911x_m_-2971314181662825399OWAcfbb2462-d011-b7f2-3b54-f72188fcdb08\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&amp;typo=1\" style=\"margin-top:0px;margin-bottom:0px\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n</div></blockquote></div>','Hi James,\r\n\r\nThank you for the follow up.  You were on my list to contact today!\r\n\r\nWould that additional product list include a prismatic cell? I have a\r\nclient who needs 150MWh a year and they want a domestic 314Ah cell...\r\n\r\nI will let you know if I will be able to make it up to Detroit for The\r\nBattery Show.\r\n\r\nLooking forward to seeing the deck.\r\n\r\nAll the best,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Wed, Sep 24, 2025 at 11:59 AM James Trevey <jtrevey@forgenano.com> wrote:\r\n\r\n> Hey Jordan,\r\n>\r\n> Thank you for the quick follow up.\r\n>\r\n> I am working on a compiled deck for you to address the below requests and\r\n> aiming for end of this week. After speaking with my team, we\'ve decided\r\n> we\'d like to provide information on additional products to you which are\r\n> typically not on the menu but I have details to sort first.\r\n>\r\n> Regarding shows, happy to discuss when ready. We\'ll be at The Battery Show\r\n> in 2 weeks, which I think you should consider attending and I\'d be happy to\r\n> connect while there.\r\n>\r\n> James\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Thursday, September 18, 2025 11:03 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n> Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Hi James,\r\n>\r\n>\r\n> Thank you for continuing discussions regarding our strategic partnership.\r\n> As we prepare for module and pack production to support your battery cell\r\n> needs, we would appreciate your assistance in providing several key pieces\r\n> of information to optimize our collaboration and planning:\r\n>\r\n> Please share detailed volume forecasts for each cell type (e.g., 18650,\r\n> 21700) you expect to require over the next 1–5 years, broken out by project\r\n> or customer segment where feasible.\r\n>\r\n> Indicate your anticipated ramp-up schedule for sample, engineering, and\r\n> production volumes to help us align our development and manufacturing\r\n> timelines.\r\n>\r\n> Identify any major offtake agreements, anchor customers, or significant\r\n> opportunities in your commercial pipeline that could impact forecasted\r\n> demand for modules or packs.\r\n>\r\n> Outline target applications (energy storage, drones, EVs, DOD, etc.) and\r\n> specify any technical or certification requirements for modules/packs\r\n> related to these segments.\r\n>\r\n> Clarify your minimum order quantities and expected pricing for each\r\n> product line.\r\n>\r\n> Please also provide information about any flexibility in volume\r\n> commitments that may be necessary in case project requirements or customer\r\n> needs adjust mid-term.\r\n>\r\n> Importantly, we would like to request information on any current or\r\n> forthcoming cells with a minimum continuous discharge rating of 15C or\r\n> higher. For these cells, please provide specifications, target\r\n> applications, anticipated volume requirements, forecasted commercial\r\n> timelines, and expected pricing.\r\n>\r\n> Additionally, for reference, these are LBC’s most popular cells we\'ve made\r\n> module and packs for:\r\n>\r\n> 18650:\r\n>\r\n> NMC: TNL-ITR18650-2600P\r\n>\r\n> LFP: SW18650-26HPA\r\n>\r\n> LFP: IFR18650-2000mAh\r\n>\r\n> 21700:\r\n>\r\n> NMC: INR21700-50S\r\n>\r\n> NMC: INR21700-4000\r\n>\r\n> Providing this information will enable LBC to ensure maximum alignment,\r\n> timely scale-up, and the most competitive solutions to support your growth\r\n> across all high-value sectors.\r\n>\r\n> In terms of the shows you mentioned, we are getting our schedules aligned\r\n> so we can attend.  What\'s the \"secret meeting\" in Nov?\r\n>\r\n> We look forward to your prompt response so we can efficiently move to the\r\n> next stages.\r\n>\r\n>\r\n> Talk soon,\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&typo=1>\r\n>\r\n>\r\n> On Wed, Sep 17, 2025 at 7:00 PM James Trevey <jtrevey@forgenano.com>\r\n> wrote:\r\n>\r\n> Jordan,\r\n>\r\n> Thanks for moving quickly here. I got bogged down today but better late\r\n> than never.\r\n>\r\n> Attached you\'ll find data sheets for all (5) of our products, including\r\n> both 18650 and 21700. Below is a quick summary:\r\n>\r\n>\r\n>    - SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation\r\n>    (they won\'t tell us the application)\r\n>    - This cell has a 100% US supply chain already\r\n>       - This cell can be made in the *millions* next year by our partner\r\n>       in the EU, until our factory is online in 2027\r\n>       - SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse\r\n>    engineered from MIL-PRF-32383)\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the *millions *next year by our partner\r\n>       in the EU, until our factory is online in 2027\r\n>       - SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the *thousands* next year by our partner\r\n>       in the EU, until our factory is online in 2027\r\n>       - SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum\r\n>    case and tabless design, super lightweight)\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the *millions* next year by our partner\r\n>       in the EU. As we show adoption, we\'ll expand our factory to build these\r\n>       - SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse\r\n>    engineered from MIL-PRF-32565)\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the *thousands* next year by our partner\r\n>       in the EU, until our factory is online in 2027\r\n>\r\n>\r\n> We can also get 80mmx300mm pouch cells made by our EU partner, if needed.\r\n>\r\n> Regarding the term sheet, please see the attached template that I put\r\n> together but needs input from you all.\r\n>\r\n> Maybe we line up another discussion for next week to continue our\r\n> alignment path? Also, are any of you planning to attend The Battery Show in\r\n> Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores\r\n> in Nashville? in October? Or the secret meeting on November 5th in DC?\r\n>\r\n> I will check with my people on 301 asap.\r\n>\r\n> I look forward to our next communication.\r\n>\r\n> James\r\n>\r\n>\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Wednesday, September 17, 2025 7:56 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>; Daniel <\r\n> dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan\r\n> Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Gentlemen,\r\n>\r\n> It was a pleasure connecting with you yesterday. I am very excited about\r\n> the potential for a partnership between our companies. To maintain the\r\n> momentum from our discussion, I\'ve outlined the key action items below:\r\n>\r\n>\r\n>    - James to send the cell specification sheets as soon as possible.\r\n>    - LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for\r\n>    benchmarking purposes.\r\n>    - James to send their term sheet template for throughput contracts.\r\n>    - We should discuss 301 exclusion support for manufacturing equipment.\r\n>\r\n>\r\n> I look forward to our next conversation.\r\n>\r\n> Best,\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&typo=1>\r\n>\r\n>',0,0,0,0,0,0,'2025-09-24 16:07:27','2025-12-09 19:28:53','2025-12-09 19:28:53','2025-12-09 19:28:53',NULL,NULL,NULL),
(778,4,'<CAJO9__ZA1h+k=uUzbphaTRXCruJ8sYUpXdUyMgGKKFFzhZe1cA@mail.gmail.com>',NULL,NULL,'Battery Build with One.Ai','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Hello Team,</div><div><br></div><div>Earlier this week, I had a conversation with the One.Ai team - a battery cell manufacturer in Michigan regarding their grid module.</div><div><br></div><div>I have attached the work instructions for the module for your review. </div><div><br></div><div>Initially, they would need approximately 50 units, with the first 17 ready to ship by December 9. All necessary parts for the build would be consigned to us.</div><div><br></div><div>Let me know your thoughts on timing for this project.  This would be the tip of the iceberg. </div><div><br></div><div>Best regards,</div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div></div>','Hello Team,\r\n\r\nEarlier this week, I had a conversation with the One.Ai team - a battery\r\ncell manufacturer in Michigan regarding their grid module.\r\n\r\nI have attached the work instructions for the module for your review.\r\n\r\nInitially, they would need approximately 50 units, with the first 17 ready\r\nto ship by December 9. All necessary parts for the build would be consigned\r\nto us.\r\n\r\nLet me know your thoughts on timing for this project.  This would be the\r\ntip of the iceberg.\r\n\r\nBest regards,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>',0,0,0,0,0,0,'2025-09-24 16:45:59','2025-12-09 19:29:02','2025-12-09 19:29:02','2025-12-09 19:29:02',NULL,NULL,NULL),
(779,4,' <SA1PR18MB482484921D343CAE13E6AF21A11CA@SA1PR18MB4824.namprd18.prod.outlook.com>',NULL,NULL,'Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration','jtrevey@forgenano.com','James Trevey','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nJordan,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nI also have a verbal matter we can discuss soon. Once I\'ve got the deck ready I\'ll find time for a short call with you.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nTalk soon.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nJames</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b> Wednesday, September 24, 2025 10:07 AM<br>\r\n<b>To:</b> James Trevey &lt;jtrevey@forgenano.com&gt;<br>\r\n<b>Cc:</b> Daniel &lt;dansheridanmusic@gmail.com&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div>Hi James,</div>\r\n<div><br>\r\n</div>\r\n<div>Thank you for the follow up.&nbsp; You were on my list to contact today!&nbsp;&nbsp;</div>\r\n<div><br>\r\n</div>\r\n<div>Would that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...</div>\r\n<div><br>\r\n</div>\r\n<div>I will let you know if I will be able to make it up to Detroit for The Battery Show.&nbsp;&nbsp;</div>\r\n<div><br>\r\n</div>\r\n<div>Looking forward to seeing the deck.</div>\r\n<div><br>\r\n</div>\r\n<div>All the best,&nbsp;</div>\r\n<div>\r\n<div dir=\"ltr\" class=\"x_gmail_signature\" data-smartmail=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\"><br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n</div>\r\n<br>\r\n<div class=\"x_gmail_quote x_gmail_quote_container\">\r\n<div dir=\"ltr\" class=\"x_gmail_attr\">On Wed, Sep 24, 2025 at 11:59 AM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote class=\"x_gmail_quote\" style=\"margin:0px 0px 0px 0.8ex; border-left:1px solid rgb(204,204,204); padding-left:1ex\">\r\n<div class=\"x_msg-6814561645313625911\">\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nHey Jordan,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nThank you for the quick follow up.&nbsp;</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we\'ve decided we\'d like to provide information on additional products to you which are typically not on the menu but I have details\r\n to sort first.&nbsp;</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nRegarding shows, happy to discuss when ready. We\'ll be at The Battery Show in 2 weeks, which I think you should consider attending and I\'d be happy to connect while there.&nbsp;</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJames</div>\r\n<div id=\"x_m_-6814561645313625911appendonsend\"></div>\r\n<hr style=\"display:inline-block; width:98%\">\r\n<div id=\"x_m_-6814561645313625911divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Thursday, September 18, 2025 11:03 AM<br>\r\n<b>To:</b> James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div>Hi James,</div>\r\n<div><br>\r\n</div>\r\n<div><br>\r\n</div>\r\nThank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information to optimize our collaboration\r\n and planning:<br>\r\n<br>\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.<br>\r\n<br>\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.<br>\r\n<br>\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.<br>\r\n<br>\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.<br>\r\n<br>\r\nClarify your minimum order quantities and expected pricing for each product line.<br>\r\n<br>\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.<br>\r\n<br>\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted\r\n commercial timelines, and expected pricing.<br>\r\n<br>\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made module and packs for:<br>\r\n<br>\r\n18650:<br>\r\n<br>\r\nNMC: TNL-ITR18650-2600P<br>\r\n<br>\r\nLFP: SW18650-26HPA<br>\r\n<br>\r\nLFP: IFR18650-2000mAh<br>\r\n<br>\r\n21700:<br>\r\n<br>\r\nNMC: INR21700-50S<br>\r\n<br>\r\nNMC: INR21700-4000<br>\r\n<br>\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.\r\n<div><br>\r\n</div>\r\n<div>In terms of the shows you mentioned, we are getting our schedules aligned so we can attend.&nbsp; What\'s the &quot;secret meeting&quot; in Nov?&nbsp;<br>\r\n<br>\r\nWe look forward to your prompt response so we can efficiently move to the next stages.\r\n<div><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div>\r\n<div>Talk soon,&nbsp;</div>\r\n<div><br>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n<div>\r\n<div dir=\"ltr\">On Wed, Sep 17, 2025 at 7:00 PM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; border-left:1px solid rgb(204,204,204); padding-left:1ex\">\r\n<div>\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nThanks for moving quickly here. I got bogged down today but better late than never.&nbsp;</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<ul style=\"margin-top:0px; margin-bottom:0px; list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)</div>\r\n</li><ul style=\"margin-top:0px; margin-bottom:0px; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell has a 100% US supply chain already</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell can be made in the <u>millions</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)</div>\r\n</li><ul style=\"margin-top:0px; margin-bottom:0px; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell can be made in the <u>millions </u>next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.</div>\r\n</li><ul style=\"margin-top:0px; margin-bottom:0px; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell can be made in the <u>thousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)</div>\r\n</li><ul style=\"margin-top:0px; margin-bottom:0px; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell can be made in the <u>millions</u>&nbsp;next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)</div>\r\n</li><ul style=\"margin-top:0px; margin-bottom:0px; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell can be made in the <u>thousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n</ul>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.&nbsp;</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI will check with my people on 301 asap.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI look forward to our next communication.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJames</div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block; width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 17, 2025 7:56 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;; Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron\r\n &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Gentlemen,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">It was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<ul style=\"direction:ltr\">\r\n<li style=\"direction:ltr\">James to&nbsp;send the cell specification sheets as soon as possible.</li><li style=\"direction:ltr\">LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.</li><li style=\"direction:ltr\">James to&nbsp;send their term sheet template for throughput contracts.</li><li style=\"direction:ltr\">We should discuss 301 exclusion support for manufacturing equipment.</li></ul>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I look forward to our next conversation.&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_-6814561645313625911x_m_-2971314181662825399OWAfde28f8c-4259-88d0-1359-90b32c84206d\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_-6814561645313625911x_m_-2971314181662825399OWAcfbb2462-d011-b7f2-3b54-f72188fcdb08\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Jordan,\r\n\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating.\r\n\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?\r\n\r\nI also have a verbal matter we can discuss soon. Once I\'ve got the deck ready I\'ll find time for a short call with you.\r\n\r\nTalk soon.\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\nSent: Wednesday, September 24, 2025 10:07 AM\r\nTo: James Trevey <jtrevey@forgenano.com>\r\nCc: Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nThank you for the follow up.  You were on my list to contact today!\r\n\r\nWould that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...\r\n\r\nI will let you know if I will be able to make it up to Detroit for The Battery Show.\r\n\r\nLooking forward to seeing the deck.\r\n\r\nAll the best,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&typo=1>\r\n\r\n\r\nOn Wed, Sep 24, 2025 at 11:59 AM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nHey Jordan,\r\n\r\nThank you for the quick follow up.\r\n\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we\'ve decided we\'d like to provide information on additional products to you which are typically not on the menu but I have details to sort first.\r\n\r\nRegarding shows, happy to discuss when ready. We\'ll be at The Battery Show in 2 weeks, which I think you should consider attending and I\'d be happy to connect while there.\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Thursday, September 18, 2025 11:03 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\n\r\nThank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information to optimize our collaboration and planning:\r\n\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.\r\n\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.\r\n\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.\r\n\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.\r\n\r\nClarify your minimum order quantities and expected pricing for each product line.\r\n\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.\r\n\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted commercial timelines, and expected pricing.\r\n\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made module and packs for:\r\n\r\n18650:\r\n\r\nNMC: TNL-ITR18650-2600P\r\n\r\nLFP: SW18650-26HPA\r\n\r\nLFP: IFR18650-2000mAh\r\n\r\n21700:\r\n\r\nNMC: INR21700-50S\r\n\r\nNMC: INR21700-4000\r\n\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.\r\n\r\nIn terms of the shows you mentioned, we are getting our schedules aligned so we can attend.  What\'s the \"secret meeting\" in Nov?\r\n\r\nWe look forward to your prompt response so we can efficiently move to the next stages.\r\n\r\n\r\nTalk soon,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&typo=1>\r\n\r\n\r\nOn Wed, Sep 17, 2025 at 7:00 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nJordan,\r\n\r\nThanks for moving quickly here. I got bogged down today but better late than never.\r\n\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:\r\n\r\n\r\n  *\r\nSC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)\r\n     *\r\nThis cell has a 100% US supply chain already\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the thousands next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these\r\n  *\r\nSC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the thousands next year by our partner in the EU, until our factory is online in 2027\r\n\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.\r\n\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.\r\n\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret meeting on November 5th in DC?\r\n\r\nI will check with my people on 301 asap.\r\n\r\nI look forward to our next communication.\r\n\r\nJames\r\n\r\n\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Wednesday, September 17, 2025 7:56 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>; Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nGentlemen,\r\n\r\nIt was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:\r\n\r\n\r\n  *   James to send the cell specification sheets as soon as possible.\r\n  *   LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.\r\n  *   James to send their term sheet template for throughput contracts.\r\n  *   We should discuss 301 exclusion support for manufacturing equipment.\r\n\r\nI look forward to our next conversation.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&typo=1>\r\n',0,0,0,0,0,0,'2025-09-24 16:49:31','2025-12-09 19:29:02','2025-12-09 19:29:02','2025-12-09 19:29:02',NULL,NULL,NULL),
(780,4,'<CAGOCFXhhTUYt+DwW9bWbLRcM9D9=Yg9ZYoV+GnenF=WEsCPKGg@mail.gmail.com>',NULL,NULL,'Fwd: Introduction - Bradenton Area EDC','Nathan@lithiumbatterycompany.com','Nathan Staron','<div><br clear=\"all\"><br clear=\"all\"><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-size:10px;font-family:Inter,sans-serif;color:rgb(0,0,0)\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;line-height:16px;font-family:Inter,sans-serif\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:medium;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px;font-family:Inter,sans-serif\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:medium;border-collapse:collapse;display:revert;font-family:Inter,sans-serif\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px;font-family:Inter,sans-serif\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td align=\"left\" valign=\"middle\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\" style=\"font-family:Inter,sans-serif\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block; font-family: Inter, sans-serif;\"></a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:0px 0px 10px;font-family:Inter,sans-serif\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:15px 0px 0px;font-family:Inter,sans-serif\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td align=\"left\" valign=\"middle\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-weight:bold;font-size:20px;font-family:Inter,sans-serif\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:medium;border-collapse:collapse;padding-left:5px;font-family:Inter,sans-serif\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block; font-family: Inter, sans-serif;\"></td></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-size:12px;font-family:Inter,sans-serif\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-weight:bold;font-size:12px;font-family:Inter,sans-serif\">Lithium Battery Company</span></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-weight:bold;font-size:12px;font-family:Inter,sans-serif\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"font-size:12px;font-family:Inter,sans-serif;color:rgb(0,0,0)\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><span style=\"font-weight:bold;font-size:12px;font-family:Inter,sans-serif\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"font-size:12px;font-family:Inter,sans-serif;color:rgb(0,0,0)\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"font-family:Inter,sans-serif;color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:5px 0px 0px;font-family:Inter,sans-serif\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;display:flex;font-weight:bold;font-family:Inter,sans-serif\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:0% 0% repeat rgb(0,0,0);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block;font-family:Inter,sans-serif;color:rgb(255,255,255)\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:medium;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert;font-family:Inter,sans-serif\"><div style=\"max-height:0px;overflow:visible;font-family:Inter,sans-serif\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px; font-family: Inter, sans-serif;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px; font-family: Inter, sans-serif;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td align=\"left\" valign=\"top\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><tbody style=\"font-family:Inter,sans-serif\"><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"></tr></tbody></table></td></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"></tr><tr style=\"border:medium;border-collapse:collapse;font-family:Inter,sans-serif\"><td style=\"border:medium;border-collapse:collapse;padding:10px 0px 0px;font-family:Inter,sans-serif\"><a style=\"font-family:Inter,sans-serif\"></a></td></tr></tbody></table></div></div></div></div></div><div><br></div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">Kevin Campos</strong> <span dir=\"auto\">&lt;<a href=\"mailto:Kcampos@tampabayedc.com\">Kcampos@tampabayedc.com</a>&gt;</span><br>Date: Wed, Sep 24, 2025 at 11:43 AM<br>Subject: Introduction - Bradenton Area EDC<br>To: Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\">nathan@lithiumbatterycompany.com</a>&gt;, <a href=\"mailto:yanetl@bradentonareaedc.com\">yanetl@bradentonareaedc.com</a> &lt;<a href=\"mailto:yanetl@bradentonareaedc.com\">yanetl@bradentonareaedc.com</a>&gt;, <a href=\"mailto:elizabethc@bradentonareaedc.com\">elizabethc@bradentonareaedc.com</a> &lt;<a href=\"mailto:elizabethc@bradentonareaedc.com\">elizabethc@bradentonareaedc.com</a>&gt;<br></div><br><br>\r\n\r\n\r\n\r\n\r\n\r\n<div lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"overflow-wrap: break-word;\">\r\n<div class=\"m_-412717371029196638WordSection1\">\r\n<p class=\"MsoNormal\">Hello Nathan, <u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\">As discussed, I wanted to connect to the EDC in Manatee County for your Parrish, FL location.\r\n<u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\"><a id=\"m_-412717371029196638OWAAM17B2DEE5A4C34F5CB283A2569514D12A\" href=\"mailto:yanetl@bradentonareaedc.com\" target=\"_blank\"><span style=\"font-family:Aptos,sans-serif;text-decoration:none\">@yanetl@bradentonareaedc.com</span></a> and\r\n<a id=\"m_-412717371029196638OWAAME1D47600030A45EE808DC68FC8B9B276\" href=\"mailto:elizabethc@bradentonareaedc.com\" target=\"_blank\">\r\n<span style=\"font-family:Aptos,sans-serif;text-decoration:none\">@elizabethc@bradentonareaedc.com</span></a> thanks for taking my call. Could you connect with Nathan Staron when you have a chance? I have included him on this email and they are expanding into\r\n that area. <u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\" style=\"background:0% 0% repeat white\"><b><span style=\"font-size:11pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(83,129,53)\">Kevin Campos, FCWP</span></b><span style=\"font-size:14pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(31,73,125)\"><br>\r\n</span><span style=\"font-size:10pt;font-family:Calibri,sans-serif;color:black\">ECONOMIC DEVELOPMENT MANAGER<br>\r\n</span><b><span style=\"font-size:10pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(83,129,53)\">TAMPA BAY ECONOMIC DEVELOPMENT COUNCIL</span></b><span style=\"font-family:Calibri,sans-serif\"><u style=\"font-family:Calibri,sans-serif\"></u><u style=\"font-family:Calibri,sans-serif\"></u></span></p>\r\n<p class=\"MsoNormal\" style=\"background:0% 0% repeat white\"><span style=\"font-size:9pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(31,73,125)\"><a href=\"https://www.google.com/maps/search/101+E.+Kennedy+Blvd.,+Suite+2000,+Tampa,+FL+33602?entry=gmail&amp;source=g\" style=\"font-family:&quot;Times New Roman&quot;,serif\">101 E. Kennedy Blvd., Suite 2000, Tampa, FL 33602</a></span><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"><u style=\"font-family:Calibri,sans-serif\"></u><u style=\"font-family:Calibri,sans-serif\"></u></span></p>\r\n<p class=\"MsoNormal\" style=\"background:0% 0% repeat white\"><b><span style=\"font-size:9pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(83,129,53)\">O:</span></b><span style=\"font-size:9pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(31,73,125)\"> 813.518.2662\r\n I </span><b><span style=\"font-size:9pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(83,129,53)\">M</span></b><span style=\"font-size:9pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(31,73,125)\">: 813.763.0307</span><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"><u style=\"font-family:Calibri,sans-serif\"></u><u style=\"font-family:Calibri,sans-serif\"></u></span></p>\r\n<p class=\"MsoNormal\" style=\"background:0% 0% repeat white\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:rgb(36,36,36)\"><a href=\"mailto:kcampos@tampabayedc.com\" target=\"_blank\" style=\"font-family:Calibri,sans-serif\"><span style=\"font-family:Calibri,sans-serif;color:blue\">kcampos@tampabayedc.com</span></a></span><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"><u style=\"font-family:Calibri,sans-serif\"></u><u style=\"font-family:Calibri,sans-serif\"></u></span></p>\r\n<p class=\"MsoNormal\" style=\"background:0% 0% repeat white\"><span style=\"color:black\"><a href=\"https://tampabayedc.com/uncharted/\" title=\"&quot;https://tampabayedc.com/uncharted/&quot;\" target=\"_blank\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;text-decoration:none;color:blue\"><img border=\"0\" width=\"320\" height=\"130\" style=\"width: 3.3333in; height: 1.3583in; font-family: Calibri, sans-serif;\" id=\"m_-412717371029196638_x0000_i1025\"></span></a></span><span><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:black\"> </span><u></u><u></u></p>\r\n</div>\r\n</div>\r\n\r\n</div></div>','<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: Kevin Campos <Kcampos@tampabayedc.com>\r\nDate: Wed, Sep 24, 2025 at 11:43 AM\r\nSubject: Introduction - Bradenton Area EDC\r\nTo: Nathan Staron <nathan@lithiumbatterycompany.com>,\r\nyanetl@bradentonareaedc.com <yanetl@bradentonareaedc.com>,\r\nelizabethc@bradentonareaedc.com <elizabethc@bradentonareaedc.com>\r\n\r\n\r\nHello Nathan,\r\n\r\n\r\n\r\nAs discussed, I wanted to connect to the EDC in Manatee County for your\r\nParrish, FL location.\r\n\r\n\r\n\r\n@yanetl@bradentonareaedc.com <yanetl@bradentonareaedc.com> and\r\n@elizabethc@bradentonareaedc.com <elizabethc@bradentonareaedc.com> thanks\r\nfor taking my call. Could you connect with Nathan Staron when you have a\r\nchance? I have included him on this email and they are expanding into that\r\narea.\r\n\r\n\r\n\r\n*Kevin Campos, FCWP*\r\nECONOMIC DEVELOPMENT MANAGER\r\n*TAMPA BAY ECONOMIC DEVELOPMENT COUNCIL*\r\n\r\n101 E. Kennedy Blvd., Suite 2000, Tampa, FL 33602\r\n<https://www.google.com/maps/search/101+E.+Kennedy+Blvd.,+Suite+2000,+Tampa,+FL+33602?entry=gmail&source=g>\r\n\r\n*O:* 813.518.2662 I *M*: 813.763.0307\r\n\r\nkcampos@tampabayedc.com\r\n\r\n<https://tampabayedc.com/uncharted/>',0,0,0,0,0,0,'2025-09-24 17:40:15','2025-12-09 19:29:03','2025-12-09 19:29:03','2025-12-09 19:29:03',NULL,NULL,NULL),
(781,4,'<CAJO9__ZVPzOF9p7o4suPYwaEQtcS0cuPR7mme3dAS-jtweDd=g@mail.gmail.com>',NULL,NULL,'Fortress Power - Update','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Good afternoon Team,</div><div><br></div><div>I had a productive call with Fortress Power today.</div><div><br></div><div>They remain on track to produce 150MW of power in their first year, utilizing a 314Ah battery cell. Following the Re+ show, they plan to transition to a domestically sourced cell and have requested our assistance with procurement. I have already contacted several domestic cell manufacturing companies.</div><div><br></div><div>They are also interested in a complete domestic solution.  See attached build. </div><div><br></div><div>Additionally, I have requested their complete build Standard Operating Procedure (SOP), including labor hours, pricing, and budget. This information will be valuable for benchmarking as we continue to develop our pricing model... Due to the upcoming Chinese holiday, I anticipate receiving this information by October 9th.</div><div><br></div><div>Let me know if you have any questions. </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div></div>','Good afternoon Team,\r\n\r\nI had a productive call with Fortress Power today.\r\n\r\nThey remain on track to produce 150MW of power in their first year,\r\nutilizing a 314Ah battery cell. Following the Re+ show, they plan to\r\ntransition to a domestically sourced cell and have requested our assistance\r\nwith procurement. I have already contacted several domestic cell\r\nmanufacturing companies.\r\n\r\nThey are also interested in a complete domestic solution.  See attached\r\nbuild.\r\n\r\nAdditionally, I have requested their complete build Standard Operating\r\nProcedure (SOP), including labor hours, pricing, and budget. This\r\ninformation will be valuable for benchmarking as we continue to develop our\r\npricing model... Due to the upcoming Chinese holiday, I anticipate\r\nreceiving this information by October 9th.\r\n\r\nLet me know if you have any questions.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>',0,0,0,0,0,0,'2025-09-24 17:53:45','2025-12-09 19:29:04','2025-12-09 19:29:04','2025-12-09 19:29:04',NULL,NULL,NULL),
(782,4,'<CAEq9qUbPkakYji4q-t0C39dKoHMOa2P6hLw8VY5FTBV_naYRjg@mail.gmail.com>',NULL,NULL,'Re: Grafik: Request for Information','ian@grafik.com','Ian Olsen','<div dir=\"ltr\"><div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>Let&#39;s do 3-3:30pm. I can shoot over an invite here shortly!<br><br>Much appreciated, glad we can work it out.</div><div><br></div><div>Look forward to chatting,</div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal\"><br><font color=\"#222222\" face=\"arial, sans-serif\"><b>Ian Olsen</b></font><br></p><p style=\"margin:0px 0px 2px;line-height:normal\"><font color=\"#222222\" face=\"arial, sans-serif\"><span>Business Development Manager</span></font><span style=\"color:rgb(34,34,34);font-family:arial,sans-serif\">  •<span>  </span><b>P</b> (</span><font color=\"#222222\" face=\"arial, sans-serif\"><span>703) 249-9771</span></font></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><b style=\"font-family:arial,sans-serif\">Grafik</b><span style=\"font-family:&quot;Helvetica Neue&quot;\">  •  Philadelphia  •  </span><span style=\"font-family:&quot;Helvetica Neue&quot;\">Washington, D.C.</span><br></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><span style=\"font-family:arial,sans-serif\"><b><a href=\"https://grafik.agency/\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">instagram</font></a>   <a href=\"https://linkedin.com/company/grafik\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">linkedin</font></a></font></font><font color=\"#3db3b5\"> </font></b></span></p></div></div></div><br><div></div></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Sep 24, 2025 at 3:30 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"> Can we still take tomorrow 2-5: <br>Sometime in that range???<br>Sorry for the confusion.<br>Thanks!<br>Rick <br> <br><p>On September 23, 2025 at 11:42:41, Ian Olsen (<a href=\"mailto:ian@grafik.com\" target=\"_blank\">ian@grafik.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>Next week looks good on our end. We can do Monday 1-3:30pm or Wednesday is mostly open. </div><div><br></div><div>Let me know what works for you.</div><div><br></div><div>Thanks,</div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal\"><br><font color=\"#222222\" face=\"arial, sans-serif\"><b>Ian Olsen</b></font><br></p><p style=\"margin:0px 0px 2px;line-height:normal\"><font color=\"#222222\" face=\"arial, sans-serif\"><span>Business Development Manager</span></font><span style=\"color:rgb(34,34,34);font-family:arial,sans-serif\">  •<span>  </span><b>P</b> (</span><font color=\"#222222\" face=\"arial, sans-serif\"><span>703) 249-9771</span></font></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><b style=\"font-family:arial,sans-serif\">Grafik</b><span style=\"font-family:&quot;Helvetica Neue&quot;\">  •  Philadelphia  •  </span><span style=\"font-family:&quot;Helvetica Neue&quot;\">Washington, D.C.</span><br></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><span style=\"font-family:arial,sans-serif\"><b><a href=\"https://grafik.agency/\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">instagram</font></a>   <a href=\"https://linkedin.com/company/grafik\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">linkedin</font></a></font></font><font color=\"#3db3b5\"> </font></b></span></p></div></div></div><br><div></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Sep 23, 2025 at 10:28 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n\r\n    <div id=\"m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Hi Ian,</div><div id=\"m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thanks for the response.</div><div id=\"m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">It was quick enough. </div><div id=\"m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">How does next week look?</div><div id=\"m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thanks again,</div><div id=\"m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Rick</div> <br> <div id=\"m_-2301860473099566765m_-5563736346807328379bloop_sign_1758637591710331904\">\r\n\r\n         \r\n      \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n\r\n      \r\n</div> <br><p>On September 23, 2025 at 09:31:55, Ian Olsen (<a href=\"mailto:ian@grafik.com\" target=\"_blank\">ian@grafik.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>Apologies for the late reply. Thanks for reaching out to Grafik. We&#39;re happy to talk through your branding &amp; campaign needs soup to nuts. We have some openings tomorrow at 10 or 10:30am, or Thursday between 2-5pm ET. Let me know if that works on your end and we can get it on the books.</div><div><br></div><div>Look forward to hearing from you soon.</div><div><br></div><div>Thanks,</div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal\"><br><font color=\"#222222\" face=\"arial, sans-serif\"><b>Ian Olsen</b></font><br></p><p style=\"margin:0px 0px 2px;line-height:normal\"><font color=\"#222222\" face=\"arial, sans-serif\"><span>Business Development Manager</span></font><span style=\"color:rgb(34,34,34);font-family:arial,sans-serif\">  •<span>  </span><b>P</b> (</span><font color=\"#222222\" face=\"arial, sans-serif\"><span>703) 249-9771</span></font></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><b style=\"font-family:arial,sans-serif\">Grafik</b><span style=\"font-family:&quot;Helvetica Neue&quot;\">  •  Philadelphia  •  </span><span style=\"font-family:&quot;Helvetica Neue&quot;\">Washington, D.C.</span><br></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><span style=\"font-family:arial,sans-serif\"><b><a href=\"https://grafik.agency/\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">instagram</font></a>   <a href=\"https://linkedin.com/company/grafik\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">linkedin</font></a></font></font><font color=\"#3db3b5\"> </font></b></span></p></div></div></div><div></div></div>\r\n\r\n</div></div></span></blockquote>\r\n\r\n\r\n\r\n\r\n\r\n</blockquote></div><div></div></div>\r\n\r\n</div></div></span></blockquote></blockquote></div><img src=\"https://c3chr04.na1.hs-salescrm-engage.com/Cto/F9+23284/c3chr04/R5Q8b47KQW174dQh1kQnsgW3C6vB320TTh4W3LDP5q1Q68ztW25d0xB1G9Wn6W1QsWFK3z8hH2W22z0GD1Z0NBmf1-_dqx12\" alt=\"\" height=\"1\" width=\"1\" style=\"display: none !important;\"><div></div><div id=\"data-hbsasc-v0-f0a73054-d677-4c93-b7a3-427e281c6c20\"></div></div>','Hi Rick,\r\n\r\nLet\'s do 3-3:30pm. I can shoot over an invite here shortly!\r\n\r\nMuch appreciated, glad we can work it out.\r\n\r\nLook forward to chatting,\r\n\r\n\r\n*Ian Olsen*\r\n\r\nBusiness Development Manager  •  *P* (703) 249-9771\r\n\r\n*Grafik*  •  Philadelphia  •  Washington, D.C.\r\n\r\n*grafik.agency <https://grafik.agency/>   instagram\r\n<https://instagram.com/grafikagency>   linkedin\r\n<https://linkedin.com/company/grafik> *\r\n\r\n\r\nOn Wed, Sep 24, 2025 at 3:30 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> Can we still take tomorrow 2-5:\r\n> Sometime in that range???\r\n> Sorry for the confusion.\r\n> Thanks!\r\n> Rick\r\n>\r\n> On September 23, 2025 at 11:42:41, Ian Olsen (ian@grafik.com) wrote:\r\n>\r\n> Hi Rick,\r\n>\r\n> Next week looks good on our end. We can do Monday 1-3:30pm or Wednesday is\r\n> mostly open.\r\n>\r\n> Let me know what works for you.\r\n>\r\n> Thanks,\r\n>\r\n>\r\n> *Ian Olsen*\r\n>\r\n> Business Development Manager  •  *P* (703) 249-9771\r\n>\r\n> *Grafik*  •  Philadelphia  •  Washington, D.C.\r\n>\r\n> *grafik.agency <https://grafik.agency/>   instagram\r\n> <https://instagram.com/grafikagency>   linkedin\r\n> <https://linkedin.com/company/grafik> *\r\n>\r\n>\r\n> On Tue, Sep 23, 2025 at 10:28 AM Rick <rick@mavrix.one> wrote:\r\n>\r\n>> Hi Ian,\r\n>> Thanks for the response.\r\n>> It was quick enough.\r\n>> How does next week look?\r\n>> Thanks again,\r\n>> Rick\r\n>>\r\n>> Rick Mislan, PhD\r\n>> https://mavrix.one\r\n>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>\r\n>> On September 23, 2025 at 09:31:55, Ian Olsen (ian@grafik.com) wrote:\r\n>>\r\n>> Hi Rick,\r\n>>\r\n>> Apologies for the late reply. Thanks for reaching out to Grafik. We\'re\r\n>> happy to talk through your branding & campaign needs soup to nuts. We have\r\n>> some openings tomorrow at 10 or 10:30am, or Thursday between 2-5pm ET. Let\r\n>> me know if that works on your end and we can get it on the books.\r\n>>\r\n>> Look forward to hearing from you soon.\r\n>>\r\n>> Thanks,\r\n>>\r\n>>\r\n>> *Ian Olsen*\r\n>>\r\n>> Business Development Manager  •  *P* (703) 249-9771\r\n>>\r\n>> *Grafik*  •  Philadelphia  •  Washington, D.C.\r\n>>\r\n>> *grafik.agency <https://grafik.agency/>   instagram\r\n>> <https://instagram.com/grafikagency>   linkedin\r\n>> <https://linkedin.com/company/grafik> *\r\n>>\r\n>>',0,0,0,0,0,0,'2025-09-24 19:46:07','2025-12-09 19:29:04','2025-12-09 19:29:04','2025-12-09 19:29:04',NULL,NULL,NULL),
(783,4,'<calendar-e5dbe1a2-4816-4892-9174-32f3ff7cd6b4@google.com>',NULL,NULL,'Invitation: Grafik & Mavrix1 @ Thu Sep 25, 2025 3pm - 3:30pm (EDT) (rick@mavrix.one)','ian@grafik.com','Ian Olsen','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v153/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v144/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v118/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation from Ian Olsen\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"5uvvs28cs255ervq6qhg2mkd9f\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Grafik &amp; Mavrix1</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NXV2dnMyOGNzMjU1ZXJ2cTZxaGcybWtkOWYgcmlja0BtYXZyaXgub25l&amp;tok=MTQjaWFuQGdyYWZpay5jb20zMzcwZGFiZTgzNmEyMDQxNzQyYzM5NjQ4MzMxZTEwNDllNmVmZmNj&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250925T190000Z\"></time><time itemprop=\"endDate\" datetime=\"20250925T193000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">You have been invited by Ian Olsen to attend an event named Grafik &amp; Mavrix1 on Thursday Sep 25, 2025 ⋅ 3pm – 3:30pm (Eastern Time - New York).</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><a href=\"https://us02web.zoom.us/j/8204902626?pwd=aEE0VFZNOTBTNDh4ZzZncnJZQUZPZz09&amp;omn=85097062892&amp;jst=2\" style=\"color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">Join Zoom Meeting</a><br><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/JoinAction\"><span itemprop=\"name\" content=\"us02web.zoom.us/j/8204902626?pwd...\"><span itemprop=\"target\" itemscope itemtype=\"http://schema.org/EntryPoint\"><span itemprop=\"url\" content=\"https://us02web.zoom.us/j/8204902626?pwd=aEE0VFZNOTBTNDh4ZzZncnJZQUZPZz09&amp;omn=85097062892&amp;jst=2\"><span itemprop=\"httpMethod\" content=\"GET\"><a href=\"https://us02web.zoom.us/j/8204902626?pwd=aEE0VFZNOTBTNDh4ZzZncnJZQUZPZz09&amp;omn=85097062892&amp;jst=2\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">us02web.zoom.us/j/8204902626?pwd...</a></span></span></span></span></span> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">ID: 8204902626</span><br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">passcode: 973635</span><br><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Join by phone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(US) </span><a href=\"tel:+12532158782,,8204902626#\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+1 253-215-8782</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">passcode: 973635</span><br><br><a href=\"https://www.google.com/url?q=https://applications.zoom.us/addon/invitation/detail?meetingUuid%3DSlXAW9ctS%252FKthP%252FxeZptWA%253D%253D%26signature%3Da1b7d256ba9119bba02255d9c6271bcf9efaf441b5a728f9cb60fe97401c0693%26v%3D1&amp;sa=D&amp;source=calendar&amp;usg=AOvVaw1CGYS4y8vEwS7Gy3-TlVMG\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">Joining instructions</a><br><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Joining notes</h2></td></tr></table>------------<br><a href=\"https://www.google.com/url?q=https%3A%2F%2Fsupport.zoom.us%2Fhc%2Fen-us%2Farticles%2F360020187492-Zoom-for-GSuite-add-on-Troubleshooting%23h_01FRGZTWJYRGRDMPQW4N041QF7&amp;sa=D&amp;source=calendar&amp;ust=1759175220000000&amp;usg=AOvVaw3phiK4nmNldm6SHfys56Mu\" target=\"_blank\">Zoom for G Suite Add-On Help</a><br>------------<br><br>Meeting host: <a href=\"mailto:ian@grafik.com\" target=\"_blank\">ian@grafik.com</a><br><br>Join Zoom Meeting: <br><a href=\"https://www.google.com/url?q=https%3A%2F%2Fus02web.zoom.us%2Fj%2F8204902626%3Fpwd%3DaEE0VFZNOTBTNDh4ZzZncnJZQUZPZz09%26omn%3D85097062892%26jst%3D2&amp;sa=D&amp;source=calendar&amp;ust=1759175220000000&amp;usg=AOvVaw0MO25RKFoD_tBhFz5NZJRh\" target=\"_blank\">https://us02web.zoom.us/j/8204902626?pwd=aEE0VFZNOTBTNDh4ZzZncnJZQUZPZz09&amp;omn=85097062892&amp;jst=2</a></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250925T190000Z\"></time><time itemprop=\"endDate\" datetime=\"20250925T193000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Thursday Sep 25, 2025 ⋅ 3pm – 3:30pm (Eastern Time - New York)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:ian@grafik.com\">Ian Olsen</a></span><meta itemprop=\"email\" content=\"ian@grafik.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Ian Olsen\"/><meta itemprop=\"email\" content=\"ian@grafik.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:tanya@grafik.com\">Tanya Nazarian</a></span><meta itemprop=\"email\" content=\"tanya@grafik.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NXV2dnMyOGNzMjU1ZXJ2cTZxaGcybWtkOWYgcmlja0BtYXZyaXgub25l&amp;tok=MTQjaWFuQGdyYWZpay5jb20zMzcwZGFiZTgzNmEyMDQxNzQyYzM5NjQ4MzMxZTEwNDllNmVmZmNj&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NXV2dnMyOGNzMjU1ZXJ2cTZxaGcybWtkOWYgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MTQjaWFuQGdyYWZpay5jb20zMzcwZGFiZTgzNmEyMDQxNzQyYzM5NjQ4MzMxZTEwNDllNmVmZmNj&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NXV2dnMyOGNzMjU1ZXJ2cTZxaGcybWtkOWYgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MTQjaWFuQGdyYWZpay5jb20zMzcwZGFiZTgzNmEyMDQxNzQyYzM5NjQ4MzMxZTEwNDllNmVmZmNj&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NXV2dnMyOGNzMjU1ZXJ2cTZxaGcybWtkOWYgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MTQjaWFuQGdyYWZpay5jb20zMzcwZGFiZTgzNmEyMDQxNzQyYzM5NjQ4MzMxZTEwNDllNmVmZmNj&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NXV2dnMyOGNzMjU1ZXJ2cTZxaGcybWtkOWYgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MTQjaWFuQGdyYWZpay5jb20zMzcwZGFiZTgzNmEyMDQxNzQyYzM5NjQ4MzMxZTEwNDllNmVmZmNj&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NXV2dnMyOGNzMjU1ZXJ2cTZxaGcybWtkOWYgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MTQjaWFuQGdyYWZpay5jb20zMzcwZGFiZTgzNmEyMDQxNzQyYzM5NjQ4MzMxZTEwNDllNmVmZmNj&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NXV2dnMyOGNzMjU1ZXJ2cTZxaGcybWtkOWYgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MTQjaWFuQGdyYWZpay5jb20zMzcwZGFiZTgzNmEyMDQxNzQyYzM5NjQ4MzMxZTEwNDllNmVmZmNj&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NXV2dnMyOGNzMjU1ZXJ2cTZxaGcybWtkOWYgcmlja0BtYXZyaXgub25l&amp;tok=MTQjaWFuQGdyYWZpay5jb20zMzcwZGFiZTgzNmEyMDQxNzQyYzM5NjQ4MzMxZTEwNDllNmVmZmNj&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NXV2dnMyOGNzMjU1ZXJ2cTZxaGcybWtkOWYgcmlja0BtYXZyaXgub25l&amp;tok=MTQjaWFuQGdyYWZpay5jb20zMzcwZGFiZTgzNmEyMDQxNzQyYzM5NjQ4MzMxZTEwNDllNmVmZmNj&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','Grafik & Mavrix1\r\nThursday Sep 25, 2025 ⋅ 3pm – 3:30pm\r\nEastern Time - New York\r\n\r\n	\r\nJoin Zoom Meeting\r\nhttps://us02web.zoom.us/j/8204902626?pwd=aEE0VFZNOTBTNDh4ZzZncnJZQUZPZz09&omn=85097062892&jst=2\r\n	\r\nJoin by phone\r\n(US) +1 253-215-8782\r\npasscode: 973635\r\n\r\nJoining instructions\r\nhttps://www.google.com/url?q=https://applications.zoom.us/addon/invitation/detail?meetingUuid%3DSlXAW9ctS%252FKthP%252FxeZptWA%253D%253D%26signature%3Da1b7d256ba9119bba02255d9c6271bcf9efaf441b5a728f9cb60fe97401c0693%26v%3D1&sa=D&source=calendar&usg=AOvVaw1CGYS4y8vEwS7Gy3-TlVMG\r\n	\r\nJoining notes\r\n------------\r\nZoom for G Suite Add-On Help\r\n------------\r\n\r\nMeeting host: ian@grafik.com\r\n\r\nJoin Zoom Meeting:\r\nhttps://us02web.zoom.us/j/8204902626?pwd=aEE0VFZNOTBTNDh4ZzZncnJZQUZPZz09&omn=85097062892&jst=2\r\n\r\n\r\nOrganizer\r\nIan Olsen\r\nian@grafik.com\r\n\r\nGuests\r\nIan Olsen - organizer\r\nrick@mavrix.one\r\nTanya Nazarian\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=NXV2dnMyOGNzMjU1ZXJ2cTZxaGcybWtkOWYgcmlja0BtYXZyaXgub25l&tok=MTQjaWFuQGdyYWZpay5jb20zMzcwZGFiZTgzNmEyMDQxNzQyYzM5NjQ4MzMxZTEwNDllNmVmZmNj&ctz=America%2FNew_York&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=NXV2dnMyOGNzMjU1ZXJ2cTZxaGcybWtkOWYgcmlja0BtYXZyaXgub25l&tok=MTQjaWFuQGdyYWZpay5jb20zMzcwZGFiZTgzNmEyMDQxNzQyYzM5NjQ4MzMxZTEwNDllNmVmZmNj&ctz=America%2FNew_York&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-09-24 19:47:03','2025-12-09 19:29:04','2025-12-09 19:29:04','2025-12-09 19:29:04',NULL,NULL,NULL),
(784,4,'<calendar-f51f867e-55f5-4c4c-94f6-ee2777ee4f9c@google.com>',NULL,NULL,'Updated invitation: Grafik & Mavrix1 @ Thu Sep 25, 2025 3pm - 3:30pm (EDT) (rick@mavrix.one)','ian@grafik.com','Ian Olsen','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v153/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v144/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v118/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventRescheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"5uvvs28cs255ervq6qhg2mkd9f\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Grafik &amp; Mavrix1</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NXV2dnMyOGNzMjU1ZXJ2cTZxaGcybWtkOWYgcmlja0BtYXZyaXgub25l&amp;tok=MTQjaWFuQGdyYWZpay5jb20zMzcwZGFiZTgzNmEyMDQxNzQyYzM5NjQ4MzMxZTEwNDllNmVmZmNj&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250925T190000Z\"></time><time itemprop=\"endDate\" datetime=\"20250925T193000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">You have been invited by Ian Olsen to attend an event named Grafik &amp; Mavrix1 on Thursday Sep 25, 2025 ⋅ 3pm – 3:30pm (Eastern Time - New York).</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"background-color: #e6f4ea;color: #0d5327;padding: 12px 32px; border-radius: 8px;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px;text-align: left;\" class=\"info-bar-inner\"><span style=\"font-weight: 700;\">This event has been updated</span><br/><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Thing/Video\"><meta itemprop=\"description\" content=\"Video call link updated\"/></span><div style=\"\"><span style=\"font-weight: 700;\">Changed:</span> conferencing</div></td></tr></tbody></table><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"12\" style=\"height:12px;\"><![endif]--><div style=\"height:12px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><a href=\"https://us02web.zoom.us/j/8204902626?pwd=aEE0VFZNOTBTNDh4ZzZncnJZQUZPZz09&amp;omn=85097062892&amp;jst=2\" style=\"color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">Join Zoom Meeting</a><br><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/JoinAction\"><span itemprop=\"name\" content=\"us02web.zoom.us/j/8204902626?pwd...\"><span itemprop=\"target\" itemscope itemtype=\"http://schema.org/EntryPoint\"><span itemprop=\"url\" content=\"https://us02web.zoom.us/j/8204902626?pwd=aEE0VFZNOTBTNDh4ZzZncnJZQUZPZz09&amp;omn=85097062892&amp;jst=2\"><span itemprop=\"httpMethod\" content=\"GET\"><a href=\"https://us02web.zoom.us/j/8204902626?pwd=aEE0VFZNOTBTNDh4ZzZncnJZQUZPZz09&amp;omn=85097062892&amp;jst=2\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">us02web.zoom.us/j/8204902626?pwd...</a></span></span></span></span></span> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">ID: 8204902626</span><br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">passcode: 973635</span><br><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Join by phone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(US) </span><a href=\"tel:+12532158782,,8204902626#\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+1 253-215-8782</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">passcode: 973635</span><br><br><a href=\"https://www.google.com/url?q=https://applications.zoom.us/addon/invitation/detail?meetingUuid%3DSlXAW9ctS%252FKthP%252FxeZptWA%253D%253D%26signature%3Da1b7d256ba9119bba02255d9c6271bcf9efaf441b5a728f9cb60fe97401c0693%26v%3D1&amp;sa=D&amp;source=calendar&amp;usg=AOvVaw1CGYS4y8vEwS7Gy3-TlVMG\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">Joining instructions</a><br><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Joining notes</h2></td></tr></table>Meeting host: <a href=\"mailto:ian@grafik.com\" target=\"_blank\">ian@grafik.com</a><br><br>Join Zoom Meeting: <br><a href=\"https://www.google.com/url?q=https%3A%2F%2Fus02web.zoom.us%2Fj%2F8204902626%3Fpwd%3DaEE0VFZNOTBTNDh4ZzZncnJZQUZPZz09%26omn%3D85097062892%26jst%3D2&amp;sa=D&amp;source=calendar&amp;ust=1759175220000000&amp;usg=AOvVaw0MO25RKFoD_tBhFz5NZJRh\" target=\"_blank\">https://us02web.zoom.us/j/8204902626?pwd=aEE0VFZNOTBTNDh4ZzZncnJZQUZPZz09&amp;omn=85097062892&amp;jst=2</a></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250925T190000Z\"></time><time itemprop=\"endDate\" datetime=\"20250925T193000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Thursday Sep 25, 2025 ⋅ 3pm – 3:30pm (Eastern Time - New York)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:ian@grafik.com\">Ian Olsen</a></span><meta itemprop=\"email\" content=\"ian@grafik.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Ian Olsen\"/><meta itemprop=\"email\" content=\"ian@grafik.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:tanya@grafik.com\">Tanya Nazarian</a></span><meta itemprop=\"email\" content=\"tanya@grafik.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NXV2dnMyOGNzMjU1ZXJ2cTZxaGcybWtkOWYgcmlja0BtYXZyaXgub25l&amp;tok=MTQjaWFuQGdyYWZpay5jb20zMzcwZGFiZTgzNmEyMDQxNzQyYzM5NjQ4MzMxZTEwNDllNmVmZmNj&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NXV2dnMyOGNzMjU1ZXJ2cTZxaGcybWtkOWYgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MTQjaWFuQGdyYWZpay5jb20zMzcwZGFiZTgzNmEyMDQxNzQyYzM5NjQ4MzMxZTEwNDllNmVmZmNj&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NXV2dnMyOGNzMjU1ZXJ2cTZxaGcybWtkOWYgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MTQjaWFuQGdyYWZpay5jb20zMzcwZGFiZTgzNmEyMDQxNzQyYzM5NjQ4MzMxZTEwNDllNmVmZmNj&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NXV2dnMyOGNzMjU1ZXJ2cTZxaGcybWtkOWYgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MTQjaWFuQGdyYWZpay5jb20zMzcwZGFiZTgzNmEyMDQxNzQyYzM5NjQ4MzMxZTEwNDllNmVmZmNj&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NXV2dnMyOGNzMjU1ZXJ2cTZxaGcybWtkOWYgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MTQjaWFuQGdyYWZpay5jb20zMzcwZGFiZTgzNmEyMDQxNzQyYzM5NjQ4MzMxZTEwNDllNmVmZmNj&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NXV2dnMyOGNzMjU1ZXJ2cTZxaGcybWtkOWYgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MTQjaWFuQGdyYWZpay5jb20zMzcwZGFiZTgzNmEyMDQxNzQyYzM5NjQ4MzMxZTEwNDllNmVmZmNj&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NXV2dnMyOGNzMjU1ZXJ2cTZxaGcybWtkOWYgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MTQjaWFuQGdyYWZpay5jb20zMzcwZGFiZTgzNmEyMDQxNzQyYzM5NjQ4MzMxZTEwNDllNmVmZmNj&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NXV2dnMyOGNzMjU1ZXJ2cTZxaGcybWtkOWYgcmlja0BtYXZyaXgub25l&amp;tok=MTQjaWFuQGdyYWZpay5jb20zMzcwZGFiZTgzNmEyMDQxNzQyYzM5NjQ4MzMxZTEwNDllNmVmZmNj&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NXV2dnMyOGNzMjU1ZXJ2cTZxaGcybWtkOWYgcmlja0BtYXZyaXgub25l&amp;tok=MTQjaWFuQGdyYWZpay5jb20zMzcwZGFiZTgzNmEyMDQxNzQyYzM5NjQ4MzMxZTEwNDllNmVmZmNj&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','This event has been updated\r\nChanged: conferencing\r\n\r\n\r\nGrafik & Mavrix1\r\nThursday Sep 25, 2025 ⋅ 3pm – 3:30pm\r\nEastern Time - New York\r\n\r\n	\r\nJoin Zoom Meeting\r\nhttps://us02web.zoom.us/j/8204902626?pwd=aEE0VFZNOTBTNDh4ZzZncnJZQUZPZz09&omn=85097062892&jst=2\r\n	\r\nJoin by phone\r\n(US) +1 253-215-8782\r\npasscode: 973635\r\n\r\nJoining instructions\r\nhttps://www.google.com/url?q=https://applications.zoom.us/addon/invitation/detail?meetingUuid%3DSlXAW9ctS%252FKthP%252FxeZptWA%253D%253D%26signature%3Da1b7d256ba9119bba02255d9c6271bcf9efaf441b5a728f9cb60fe97401c0693%26v%3D1&sa=D&source=calendar&usg=AOvVaw1CGYS4y8vEwS7Gy3-TlVMG\r\n	\r\nJoining notes\r\nMeeting host: ian@grafik.com\r\n\r\nJoin Zoom Meeting:\r\nhttps://us02web.zoom.us/j/8204902626?pwd=aEE0VFZNOTBTNDh4ZzZncnJZQUZPZz09&omn=85097062892&jst=2\r\n\r\n\r\nOrganizer\r\nIan Olsen\r\nian@grafik.com\r\n\r\nGuests\r\nIan Olsen - organizer\r\nrick@mavrix.one\r\nTanya Nazarian\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=NXV2dnMyOGNzMjU1ZXJ2cTZxaGcybWtkOWYgcmlja0BtYXZyaXgub25l&tok=MTQjaWFuQGdyYWZpay5jb20zMzcwZGFiZTgzNmEyMDQxNzQyYzM5NjQ4MzMxZTEwNDllNmVmZmNj&ctz=America%2FNew_York&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=NXV2dnMyOGNzMjU1ZXJ2cTZxaGcybWtkOWYgcmlja0BtYXZyaXgub25l&tok=MTQjaWFuQGdyYWZpay5jb20zMzcwZGFiZTgzNmEyMDQxNzQyYzM5NjQ4MzMxZTEwNDllNmVmZmNj&ctz=America%2FNew_York&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-09-24 19:47:08','2025-12-09 19:29:05','2025-12-09 19:29:05','2025-12-09 19:29:05',NULL,NULL,NULL),
(785,4,'<CAJO9__Y3yOPELHLHs-uBMAYoua+eCqL+UkEyKvggcLBc1a6GRw@mail.gmail.com>',NULL,NULL,'Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Hello James,</div><div><br></div><div>Understood and thank you for the explanation.  </div><div><br></div><div>Looking forward to our discussion.</div><div><br></div><div>Best, </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Sep 24, 2025 at 12:50 PM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"msg-6731695796886099318\">\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating. </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI also have a verbal matter we can discuss soon. Once I&#39;ve got the deck ready I&#39;ll find time for a short call with you.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nTalk soon.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<div id=\"m_-6731695796886099318appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div id=\"m_-6731695796886099318divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, September 24, 2025 10:07 AM<br>\r\n<b>To:</b> James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</font>\r\n<div> </div>\r\n</div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div>Hi James,</div>\r\n<div><br>\r\n</div>\r\n<div>Thank you for the follow up.  You were on my list to contact today!  </div>\r\n<div><br>\r\n</div>\r\n<div>Would that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...</div>\r\n<div><br>\r\n</div>\r\n<div>I will let you know if I will be able to make it up to Detroit for The Battery Show.  </div>\r\n<div><br>\r\n</div>\r\n<div>Looking forward to seeing the deck.</div>\r\n<div><br>\r\n</div>\r\n<div>All the best, </div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n</div>\r\n<br>\r\n<div>\r\n<div dir=\"ltr\">On Wed, Sep 24, 2025 at 11:59 AM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div>\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nHey Jordan,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nThank you for the quick follow up. </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we&#39;ve decided we&#39;d like to provide information on additional products to you which are typically not on the menu but I have details\r\n to sort first. </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nRegarding shows, happy to discuss when ready. We&#39;ll be at The Battery Show in 2 weeks, which I think you should consider attending and I&#39;d be happy to connect while there. </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<div id=\"m_-6731695796886099318x_m_-6814561645313625911appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div id=\"m_-6731695796886099318x_m_-6814561645313625911divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Thursday, September 18, 2025 11:03 AM<br>\r\n<b>To:</b> James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</font>\r\n<div> </div>\r\n</div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div>Hi James,</div>\r\n<div><br>\r\n</div>\r\n<div><br>\r\n</div>\r\nThank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information to optimize our collaboration\r\n and planning:<br>\r\n<br>\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.<br>\r\n<br>\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.<br>\r\n<br>\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.<br>\r\n<br>\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.<br>\r\n<br>\r\nClarify your minimum order quantities and expected pricing for each product line.<br>\r\n<br>\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.<br>\r\n<br>\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted\r\n commercial timelines, and expected pricing.<br>\r\n<br>\r\nAdditionally, for reference, these are LBC’s most popular cells we&#39;ve made module and packs for:<br>\r\n<br>\r\n18650:<br>\r\n<br>\r\nNMC: TNL-ITR18650-2600P<br>\r\n<br>\r\nLFP: SW18650-26HPA<br>\r\n<br>\r\nLFP: IFR18650-2000mAh<br>\r\n<br>\r\n21700:<br>\r\n<br>\r\nNMC: INR21700-50S<br>\r\n<br>\r\nNMC: INR21700-4000<br>\r\n<br>\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.\r\n<div><br>\r\n</div>\r\n<div>In terms of the shows you mentioned, we are getting our schedules aligned so we can attend.  What&#39;s the &quot;secret meeting&quot; in Nov? <br>\r\n<br>\r\nWe look forward to your prompt response so we can efficiently move to the next stages.\r\n<div><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div>\r\n<div>Talk soon, </div>\r\n<div><br>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n<div>\r\n<div dir=\"ltr\">On Wed, Sep 17, 2025 at 7:00 PM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div>\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nThanks for moving quickly here. I got bogged down today but better late than never. </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nAttached you&#39;ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<ul style=\"margin-top:0px;margin-bottom:0px;list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won&#39;t tell us the application)</div>\r\n</li><ul style=\"margin-top:0px;margin-bottom:0px;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell has a 100% US supply chain already</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell can be made in the <u>millions</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)</div>\r\n</li><ul style=\"margin-top:0px;margin-bottom:0px;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell can be made in the <u>millions </u>next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.</div>\r\n</li><ul style=\"margin-top:0px;margin-bottom:0px;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell can be made in the <u>thousands</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)</div>\r\n</li><ul style=\"margin-top:0px;margin-bottom:0px;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell can be made in the <u>millions</u> next year by our partner in the EU. As we show adoption, we&#39;ll expand our factory to build these</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)</div>\r\n</li><ul style=\"margin-top:0px;margin-bottom:0px;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">This cell can be made in the <u>thousands</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n</ul>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all. </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI will check with my people on 301 asap.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI look forward to our next communication.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, September 17, 2025 7:56 AM<br>\r\n<b>To:</b> James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;; Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron\r\n &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Gentlemen,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">It was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I&#39;ve outlined the key action items below:</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<ul style=\"direction:ltr\">\r\n<li style=\"direction:ltr\">James to send the cell specification sheets as soon as possible.</li><li style=\"direction:ltr\">LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.</li><li style=\"direction:ltr\">James to send their term sheet template for throughput contracts.</li><li style=\"direction:ltr\">We should discuss 301 exclusion support for manufacturing equipment.</li></ul>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I look forward to our next conversation. </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a id=\"m_-6731695796886099318x_m_-6814561645313625911x_m_-2971314181662825399OWAfde28f8c-4259-88d0-1359-90b32c84206d\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a id=\"m_-6731695796886099318x_m_-6814561645313625911x_m_-2971314181662825399OWAcfbb2462-d011-b7f2-3b54-f72188fcdb08\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&amp;typo=1\" style=\"margin-top:0px;margin-bottom:0px\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n</div></blockquote></div>','Hello James,\r\n\r\nUnderstood and thank you for the explanation.\r\n\r\nLooking forward to our discussion.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Wed, Sep 24, 2025 at 12:50 PM James Trevey <jtrevey@forgenano.com> wrote:\r\n\r\n> Jordan,\r\n>\r\n> Unfortunately, there is not a large prismatic on our list. I could\r\n> potentially license a design to make one, but it would take a lot of\r\n> coordinating.\r\n>\r\n> It would be super helpful if you are able to compile a deck for us which\r\n> has your prospective cell demand schedule now and for the next few years,\r\n> as well as what your qualification schedule looks like (maybe program\r\n> based?). Maybe by cell type?\r\n>\r\n> I also have a verbal matter we can discuss soon. Once I\'ve got the deck\r\n> ready I\'ll find time for a short call with you.\r\n>\r\n> Talk soon.\r\n>\r\n> James\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Wednesday, September 24, 2025 10:07 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n> Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Hi James,\r\n>\r\n> Thank you for the follow up.  You were on my list to contact today!\r\n>\r\n> Would that additional product list include a prismatic cell? I have a\r\n> client who needs 150MWh a year and they want a domestic 314Ah cell...\r\n>\r\n> I will let you know if I will be able to make it up to Detroit for The\r\n> Battery Show.\r\n>\r\n> Looking forward to seeing the deck.\r\n>\r\n> All the best,\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&typo=1>\r\n>\r\n>\r\n> On Wed, Sep 24, 2025 at 11:59 AM James Trevey <jtrevey@forgenano.com>\r\n> wrote:\r\n>\r\n> Hey Jordan,\r\n>\r\n> Thank you for the quick follow up.\r\n>\r\n> I am working on a compiled deck for you to address the below requests and\r\n> aiming for end of this week. After speaking with my team, we\'ve decided\r\n> we\'d like to provide information on additional products to you which are\r\n> typically not on the menu but I have details to sort first.\r\n>\r\n> Regarding shows, happy to discuss when ready. We\'ll be at The Battery Show\r\n> in 2 weeks, which I think you should consider attending and I\'d be happy to\r\n> connect while there.\r\n>\r\n> James\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Thursday, September 18, 2025 11:03 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n> Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Hi James,\r\n>\r\n>\r\n> Thank you for continuing discussions regarding our strategic partnership.\r\n> As we prepare for module and pack production to support your battery cell\r\n> needs, we would appreciate your assistance in providing several key pieces\r\n> of information to optimize our collaboration and planning:\r\n>\r\n> Please share detailed volume forecasts for each cell type (e.g., 18650,\r\n> 21700) you expect to require over the next 1–5 years, broken out by project\r\n> or customer segment where feasible.\r\n>\r\n> Indicate your anticipated ramp-up schedule for sample, engineering, and\r\n> production volumes to help us align our development and manufacturing\r\n> timelines.\r\n>\r\n> Identify any major offtake agreements, anchor customers, or significant\r\n> opportunities in your commercial pipeline that could impact forecasted\r\n> demand for modules or packs.\r\n>\r\n> Outline target applications (energy storage, drones, EVs, DOD, etc.) and\r\n> specify any technical or certification requirements for modules/packs\r\n> related to these segments.\r\n>\r\n> Clarify your minimum order quantities and expected pricing for each\r\n> product line.\r\n>\r\n> Please also provide information about any flexibility in volume\r\n> commitments that may be necessary in case project requirements or customer\r\n> needs adjust mid-term.\r\n>\r\n> Importantly, we would like to request information on any current or\r\n> forthcoming cells with a minimum continuous discharge rating of 15C or\r\n> higher. For these cells, please provide specifications, target\r\n> applications, anticipated volume requirements, forecasted commercial\r\n> timelines, and expected pricing.\r\n>\r\n> Additionally, for reference, these are LBC’s most popular cells we\'ve made\r\n> module and packs for:\r\n>\r\n> 18650:\r\n>\r\n> NMC: TNL-ITR18650-2600P\r\n>\r\n> LFP: SW18650-26HPA\r\n>\r\n> LFP: IFR18650-2000mAh\r\n>\r\n> 21700:\r\n>\r\n> NMC: INR21700-50S\r\n>\r\n> NMC: INR21700-4000\r\n>\r\n> Providing this information will enable LBC to ensure maximum alignment,\r\n> timely scale-up, and the most competitive solutions to support your growth\r\n> across all high-value sectors.\r\n>\r\n> In terms of the shows you mentioned, we are getting our schedules aligned\r\n> so we can attend.  What\'s the \"secret meeting\" in Nov?\r\n>\r\n> We look forward to your prompt response so we can efficiently move to the\r\n> next stages.\r\n>\r\n>\r\n> Talk soon,\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&typo=1>\r\n>\r\n>\r\n> On Wed, Sep 17, 2025 at 7:00 PM James Trevey <jtrevey@forgenano.com>\r\n> wrote:\r\n>\r\n> Jordan,\r\n>\r\n> Thanks for moving quickly here. I got bogged down today but better late\r\n> than never.\r\n>\r\n> Attached you\'ll find data sheets for all (5) of our products, including\r\n> both 18650 and 21700. Below is a quick summary:\r\n>\r\n>\r\n>    - SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation\r\n>    (they won\'t tell us the application)\r\n>    - This cell has a 100% US supply chain already\r\n>       - This cell can be made in the *millions* next year by our partner\r\n>       in the EU, until our factory is online in 2027\r\n>       - SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse\r\n>    engineered from MIL-PRF-32383)\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the *millions *next year by our partner\r\n>       in the EU, until our factory is online in 2027\r\n>       - SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the *thousands* next year by our partner\r\n>       in the EU, until our factory is online in 2027\r\n>       - SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum\r\n>    case and tabless design, super lightweight)\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the *millions* next year by our partner\r\n>       in the EU. As we show adoption, we\'ll expand our factory to build these\r\n>       - SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse\r\n>    engineered from MIL-PRF-32565)\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the *thousands* next year by our partner\r\n>       in the EU, until our factory is online in 2027\r\n>\r\n>\r\n> We can also get 80mmx300mm pouch cells made by our EU partner, if needed.\r\n>\r\n> Regarding the term sheet, please see the attached template that I put\r\n> together but needs input from you all.\r\n>\r\n> Maybe we line up another discussion for next week to continue our\r\n> alignment path? Also, are any of you planning to attend The Battery Show in\r\n> Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores\r\n> in Nashville? in October? Or the secret meeting on November 5th in DC?\r\n>\r\n> I will check with my people on 301 asap.\r\n>\r\n> I look forward to our next communication.\r\n>\r\n> James\r\n>\r\n>\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Wednesday, September 17, 2025 7:56 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>; Daniel <\r\n> dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan\r\n> Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Gentlemen,\r\n>\r\n> It was a pleasure connecting with you yesterday. I am very excited about\r\n> the potential for a partnership between our companies. To maintain the\r\n> momentum from our discussion, I\'ve outlined the key action items below:\r\n>\r\n>\r\n>    - James to send the cell specification sheets as soon as possible.\r\n>    - LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for\r\n>    benchmarking purposes.\r\n>    - James to send their term sheet template for throughput contracts.\r\n>    - We should discuss 301 exclusion support for manufacturing equipment.\r\n>\r\n>\r\n> I look forward to our next conversation.\r\n>\r\n> Best,\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&typo=1>\r\n>\r\n>',0,0,0,0,0,0,'2025-09-24 19:50:21','2025-12-09 19:29:05','2025-12-09 19:29:05','2025-12-09 19:29:05',NULL,NULL,NULL),
(786,4,'<calendar-24330f65-fa35-4001-897c-1bc69b19e1de@google.com>',NULL,NULL,'Updated invitation: Rick/Jen catchup @ Thu Sep 25, 2025 8:30am - 9:30am (CDT) (rick@mavrix.one)','jen@deeptechgtm.com','Jennifer Kay','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v153/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v144/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v118/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventRescheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"549unp18tafj5tvomfiaapuo0m\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Rick/Jen catchup</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NTQ5dW5wMTh0YWZqNXR2b21maWFhcHVvMG0gcmlja0BtYXZyaXgub25l&amp;tok=MTkjamVuQGRlZXB0ZWNoZ3RtLmNvbWE5NDM3YjRmOTc0M2NiNmEyYjY1OTZhM2U4NDIzNzZlNGVkZTkyNDE&amp;ctz=America%2FChicago&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250925T133000Z\"></time><time itemprop=\"endDate\" datetime=\"20250925T143000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">Join with Google Meet – You have been invited by Jennifer Kay to attend an event named Rick/Jen catchup on Thursday Sep 25, 2025 ⋅ 8:30am – 9:30am (Central Time - Chicago).</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"background-color: #e6f4ea;color: #0d5327;padding: 12px 32px; border-radius: 8px;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px;text-align: left;\" class=\"info-bar-inner\"><span style=\"font-weight: 700;\">This event has been updated</span><br/><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Thing/Clock\"><meta itemprop=\"description\" content=\"Time updated\"/></span><div style=\"\"><span style=\"font-weight: 700;\">Changed:</span> time</div></td></tr></tbody></table><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"12\" style=\"height:12px;\"><![endif]--><div style=\"height:12px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:28px;\"><a href=\"https://meet.google.com/jdr-urns-ksr?hs=224\" class=\"primary-button-text\" style=\"display: inline-block;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"display: inline-block\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"background-color: #1a73e8; cursor: auto; padding: 10px 25px; border: none; border-radius: 4px; margin: 0;\" class=\"primary-button\"><!--[if mso]><a href=\"https://meet.google.com/jdr-urns-ksr?hs=224\" class=\"primary-button-text\" target=\"_blank\"><![endif]--><span class=\"primary-button-text\" style=\"font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\">Join with Google Meet</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Meeting link</h2></td></tr></table><!-- Use grey text for the Meet link--><div><a style=\"display: inline-block;;color: #70757a; text-decoration: none;\" class=\"secondary-text underline-on-hover\" href=\"https://meet.google.com/jdr-urns-ksr?hs=224\">meet.google.com/jdr-urns-ksr</a></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Join by phone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(US) </span><a href=\"tel:+1-585-437-4405%3B522453674%23\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+1 585-437-4405</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">PIN: 522453674</span><br><br><a href=\"https://tel.meet/jdr-urns-ksr?pin=7722961069243&amp;hs=0\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">More phone numbers</a><br></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20250925T133000Z\"></time><time itemprop=\"endDate\" datetime=\"20250925T143000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td><td style=\"width: 8px;\"></td><td style=\"padding-top: 2px; padding-bottom: 3px;\"><div style=\"background-color: #1e8e3e; border-radius: 10px; padding: 1px 5px; line-height: 13px;\"><span style=\"color: white; font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; vertical-align: top;\">CHANGED</span></div></td></tr></table><span>Thursday Sep 25, 2025 ⋅ 8:30am – 9:30am (Central Time - Chicago)<br/><span style=\"text-decoration: line-through;\"><del><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;font-size: 0; display: block;\">Old: </span>Thursday Sep 25, 2025 ⋅ 10am – 11am (Central Time - Chicago)</del></span></span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jen@deeptechgtm.com\">Jennifer Kay</a></span><meta itemprop=\"email\" content=\"jen@deeptechgtm.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Jennifer Kay\"/><meta itemprop=\"email\" content=\"jen@deeptechgtm.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NTQ5dW5wMTh0YWZqNXR2b21maWFhcHVvMG0gcmlja0BtYXZyaXgub25l&amp;tok=MTkjamVuQGRlZXB0ZWNoZ3RtLmNvbWE5NDM3YjRmOTc0M2NiNmEyYjY1OTZhM2U4NDIzNzZlNGVkZTkyNDE&amp;ctz=America%2FChicago&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NTQ5dW5wMTh0YWZqNXR2b21maWFhcHVvMG0gcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MTkjamVuQGRlZXB0ZWNoZ3RtLmNvbWE5NDM3YjRmOTc0M2NiNmEyYjY1OTZhM2U4NDIzNzZlNGVkZTkyNDE&amp;ctz=America%2FChicago&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NTQ5dW5wMTh0YWZqNXR2b21maWFhcHVvMG0gcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MTkjamVuQGRlZXB0ZWNoZ3RtLmNvbWE5NDM3YjRmOTc0M2NiNmEyYjY1OTZhM2U4NDIzNzZlNGVkZTkyNDE&amp;ctz=America%2FChicago&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NTQ5dW5wMTh0YWZqNXR2b21maWFhcHVvMG0gcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MTkjamVuQGRlZXB0ZWNoZ3RtLmNvbWE5NDM3YjRmOTc0M2NiNmEyYjY1OTZhM2U4NDIzNzZlNGVkZTkyNDE&amp;ctz=America%2FChicago&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NTQ5dW5wMTh0YWZqNXR2b21maWFhcHVvMG0gcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MTkjamVuQGRlZXB0ZWNoZ3RtLmNvbWE5NDM3YjRmOTc0M2NiNmEyYjY1OTZhM2U4NDIzNzZlNGVkZTkyNDE&amp;ctz=America%2FChicago&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NTQ5dW5wMTh0YWZqNXR2b21maWFhcHVvMG0gcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MTkjamVuQGRlZXB0ZWNoZ3RtLmNvbWE5NDM3YjRmOTc0M2NiNmEyYjY1OTZhM2U4NDIzNzZlNGVkZTkyNDE&amp;ctz=America%2FChicago&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=NTQ5dW5wMTh0YWZqNXR2b21maWFhcHVvMG0gcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MTkjamVuQGRlZXB0ZWNoZ3RtLmNvbWE5NDM3YjRmOTc0M2NiNmEyYjY1OTZhM2U4NDIzNzZlNGVkZTkyNDE&amp;ctz=America%2FChicago&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NTQ5dW5wMTh0YWZqNXR2b21maWFhcHVvMG0gcmlja0BtYXZyaXgub25l&amp;tok=MTkjamVuQGRlZXB0ZWNoZ3RtLmNvbWE5NDM3YjRmOTc0M2NiNmEyYjY1OTZhM2U4NDIzNzZlNGVkZTkyNDE&amp;ctz=America%2FChicago&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=NTQ5dW5wMTh0YWZqNXR2b21maWFhcHVvMG0gcmlja0BtYXZyaXgub25l&amp;tok=MTkjamVuQGRlZXB0ZWNoZ3RtLmNvbWE5NDM3YjRmOTc0M2NiNmEyYjY1OTZhM2U4NDIzNzZlNGVkZTkyNDE&amp;ctz=America%2FChicago&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','This event has been updated\r\nChanged: time\r\n\r\n\r\nRick/Jen catchup\r\nThursday Sep 25, 2025 ⋅ 8:30am – 9:30am\r\nCentral Time - Chicago\r\n\r\nJoin with Google Meet\r\nhttps://meet.google.com/jdr-urns-ksr?hs=224\r\n\r\n\r\n	\r\nJoin by phone\r\n(US) +1 585-437-4405\r\nPIN: 522453674\r\n\r\nMore phone numbers\r\nhttps://tel.meet/jdr-urns-ksr?pin=7722961069243&hs=0\r\n\r\n\r\nOrganizer\r\nJennifer Kay\r\njen@deeptechgtm.com\r\n\r\nGuests\r\nJennifer Kay - organizer\r\nrick@mavrix.one\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=NTQ5dW5wMTh0YWZqNXR2b21maWFhcHVvMG0gcmlja0BtYXZyaXgub25l&tok=MTkjamVuQGRlZXB0ZWNoZ3RtLmNvbWE5NDM3YjRmOTc0M2NiNmEyYjY1OTZhM2U4NDIzNzZlNGVkZTkyNDE&ctz=America%2FChicago&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=NTQ5dW5wMTh0YWZqNXR2b21maWFhcHVvMG0gcmlja0BtYXZyaXgub25l&tok=MTkjamVuQGRlZXB0ZWNoZ3RtLmNvbWE5NDM3YjRmOTc0M2NiNmEyYjY1OTZhM2U4NDIzNzZlNGVkZTkyNDE&ctz=America%2FChicago&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-09-24 19:56:51','2025-12-09 19:29:06','2025-12-09 19:29:06','2025-12-09 19:29:06',NULL,NULL,NULL),
(787,4,'<CAGOCFXhOuLk2zVSt+GjwMWoqV9qzoizRCUoZqzD8vhavg5_S2A@mail.gmail.com>',NULL,NULL,'Re: Introduction - Bradenton Area EDC','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Good Afternoon Elizabeth,</div><div><br></div><div>Thank you for your prompt response and for the kind welcome. It was a pleasure e-meeting you as well.</div><div><br></div><div>I would like to introduce Brian Stufflebean and Rick Mislan, who are the project leads for our expansion into Parrish, FL. They will be instrumental in the development of our new location, and I believe it would be beneficial for them to connect with you directly.</div><div><br></div><div>Regarding setting up a meeting, I agree that it would be valuable to discuss the project further. We would be happy to coordinate a time that works best for everyone next week. As you mentioned, Tuesday and Wednesday work well for you, and we can certainly align with that.</div><div><br></div><div>Please let us know what specific times on Tuesday or Wednesday next week would be most convenient for you and Yanet, and we will make sure to schedule a call or meeting accordingly. We look forward to the opportunity to collaborate.</div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Sep 24, 2025 at 3:54 PM Elizabeth Cordes &lt;<a href=\"mailto:elizabethc@bradentonareaedc.com\">elizabethc@bradentonareaedc.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"msg-8707086132752645063\">\r\n\r\n\r\n\r\n\r\n\r\n<div lang=\"EN-US\" style=\"overflow-wrap: break-word;\">\r\n<div class=\"m_-8707086132752645063WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">Hi Kevin,<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">Thank you very much for the introduction! It is a pleasure to e-meet you, Nathan. I would very much like to set up a call or meeting to discuss your project further. Please\r\n let me know a day and time that would work best for you. We have good availability Tuesday and Wednesday next week. I look forward to working with you.<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">Kindest regards,<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"><u></u> <u></u></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:16pt;font-family:Calibri,sans-serif;color:rgb(0,121,161)\">Elizabeth Cordes</span></b><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:14pt;font-family:Calibri,sans-serif\">Director of Business Recruitment &amp; Expansion</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:14pt;font-family:Calibri,sans-serif;color:rgb(33,33,33)\">Bradenton Area Economic Development Corporation</span></b><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Calibri,sans-serif\"><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkMgQprkW6N3_xK6lZ3n4W78Vp4V2FPPZMN1pH5g_5RF2hW6Xrxnm5t7Fv5W51TlCL1hWFT2W2t1-jW95-QDtW23ZZ4Z26SxbdW80J32Y41q9JtW6hmwKm3MPtmCN6rGfZyZfdg5W6GTJH549k0_CW5QBgQZ5-9hq7W6z25h66Mkt7-W6sMZ9w17jFJLVX1w2c8Z6Ml7W2nHyKy4rhB6GW67Nv3N507PkcW5WS6f664GLZKW8T7Qq11dt2Y5W8RsQG-7Fl9MCW2f04G02B-7Q1V9x_Y17f2w41W3cYcDk5HwLw-W3qcd1j30bMqNW5N7NG23bzpxtW3XsGym4V_yxpW4tdrDW1q_SzgVTgQdg3LrL87W4Jr5td38zsqNW8HqHyM4xr_H2W42lq8M6-tqpFVrrr3d4T5tYvW72tN838D1l-cW8pmG5S1ZVm0vW5NB9_w9j1bx_N8p_9C0GbV3lW1KC46245cX4BN1Rdf_VHB0ZBW4flsr83B7wPnW8LfHCZ6GCNbkW64v1XG3lW3FpVFWvKP2kmV44W5mPkj22LhTTFW5LSnhS4q--gzW7rT7MH6xNcPVN19Cm6s-gjlMW79ZTbp9hPsF5W8lrX-g5CbKmyN1D6r81Zk11jW6xygMd6YpVkCW8NRyPt2gX2S_W5RvZ4L3VjGdDW58DwQS3Lzc3RW3t_1Lf2Ct9KZW1K9cL83Vplp5VLPR7w3GjX82W33CMZT3c3RlyW37CKRW4wcS5LW5tn8Ss25BfcfW6VRPWz8268WGW2C8kpQ2TlKMwN2kZ-QrM-DFxW4vb7rH19bDQ0N2vnVF94XgW5W8bnb_y8bmYTtVWXWTn6mwJn_W4X5h_664JmhZW2sQlD96rnQnjW4Xm0ZD54jXhPW2b8ktr2J6V5gW9h9QW06XMnd5W3TLzdh78k_b2W8S4gxY2PZsp6W5HY7s52JSyRpW3xx6Mq6T5F92W1vJgzP35XmJJW67PYyH39yBY2MJ5BTVH7mFcW3YwsRJ3DrZVNW6-T62t8FPLqCW1PW8ym1XZRCBN7mFLsJ1kDshW3yfdH28P87wwW3PLlSY8_By4JVJ-tDt12J_DSW77SfZv9cpBjtVVD7ZL6FDfM-W5QJFXq3rWNCmVw-0L31-6FlvW2ZNZtL3M8gJpN8PwR2hMMD2KW6C2y3S1g7yg1W7dBJKg71SQbTW1Fg4Vb4C5DjQW4dNvqQ17zKGQW3G68wV681nWKW6XQbRS1XXPtwW1kvlKN4Sq8BnW11ymrT8jk2lLW8vwVv324KMKpW4ZR4hj27_0VYW3rGD-z6l95RLN5lnHXFLlpnKW1gjM6461CFZbW7Ynz0C8ZzV1cW6ZxtxY5qZyP8W2jXC6L1J9mJpW3cHNM96FmMczW5z7xQ_59m6zNN1sTgyBhYGW5T_2Qn76l93NW3csdg46GvyWVW5Gp9lS3Lgst1W76Xkw949HzP2W5z48gd1wt76qVmrRKD7qF317W5M4Bxl3G5zdjW74p33T1HBXhNW7117hz1H2rwRf6H-mQF04\" target=\"_blank\"><span style=\"color:rgb(5,99,193)\">5840\r\n 26<sup>th</sup> Street West, 26 West Center, Suite 232, Bradenton, FL 34207</span></a></span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:Calibri,sans-serif;color:rgb(0,121,161)\">Email:</span></b><span style=\"font-family:Calibri,sans-serif\">\r\n<a href=\"mailto:ElizabethC@BradentonAreaEDC.com\" target=\"_blank\"><span style=\"color:rgb(5,99,193)\">ElizabethC@BradentonAreaEDC.com</span></a></span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:Calibri,sans-serif;color:rgb(0,121,161)\">Phone: </span></b><span style=\"font-family:Calibri,sans-serif\">941-803-9033</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:Calibri,sans-serif;color:rgb(0,121,161)\">Cell: </span></b><span style=\"font-family:Calibri,sans-serif\">716-908-6134<b><span style=\"color:black\"><br>\r\n</span></b></span><span style=\"color:rgb(33,33,33)\"><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3pdW2fMpC-8rn8LfW4L1Rk04jBdxRW3Z4zsj3yX81HW8TwyXV3lc4QrW8HHfpD1LnRcnW3VMtj54CTCj2VCyjKC6j9YTyW2XQZVw4w83pJW3NktFp4vHXy4VRvglH2hNfBQW40g7XY2VPpBDTbvl15MTwL0W2K-8WN3kRvy9W8xtjZf3cMyFFW11pnr85HKkpWW64sY5L1D_YCbW95_w_L1whkRkW21h9qF4hwy39VjRW4r5MtnGWN4gjZl0M47MyW5srz3K8xM5ccW9cHWMp4ThMGyf80M8DP04\" title=\"http://www.bradentonareaedc.com/\" target=\"_blank\"><span style=\"font-family:Calibri,sans-serif;color:purple\">BradentonAreaEDC.com</span></a></span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Calibri,sans-serif\"> </span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3kvW2LTpSn28K3myW5ytqq07mdVxbW44r6315ffbyKW7-vzDZ2z2mBSW546FP457rF6yW1wy11k7WlwmvW47FpQg5m_ZcBW8FjNnV4fg-7SW6QCkRk3vtYkxW6pwtrr86p_0DW96skzR53M83SW2KtJt81bqHBBW7l2b1B3-XFhgW2GX8g-2Rf2rkW8Hg5MP1y4rDnW94CL8S15_LMFW1pMc7B4j-V_YW4hSwWw3SFs8xN6Fh1Hr-Df94W4shHsV6Mm1MdVQG3sH7W-JnHW9hxJ-56mttg0f5nQ08M04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width: 0.3666in; height: 0.3666in;\" id=\"m_-8707086132752645063Picture_x0020_49\" src=\"cid:ii_1997daeb7104cff311\"></span></a>    \r\n<a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3kKN20Nn22df6lGW7xMF8J18H1JlW6_TqNH3TT6JHN4rbbsrhPdp8W5p42q254pFkjTrzhg3kmzHTN1-Mj7bL-BbwW3jDNyf8TLyhRN8xcPJmK3-dqW94nCXJ2HFC8RW6RdNDy3Z4fV9N8nkrPrHpWB9N9cW7tJj95_HN55MK4WYSc7DW76Gz184kzqJlW3VNzj-8h_NdGV54qHV8sbj4JW3b8cM962ZZWwVS8VjP5hV3HmW4PT25x5bS2hHV8wfXF20q1L0W5VdRbm7RtQq7W7DtSqN3FZnw3W6tZym872H8F6f35-lSP04\" target=\"_blank\">\r\n<span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"34\" height=\"34\" style=\"width: 0.3583in; height: 0.3583in;\" id=\"m_-8707086132752645063Picture_x0020_48\" src=\"cid:ii_1997daeb7105b16b22\"></span></a>     <a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jll2-6qcW7Y8-PT6lZ3pCMqbbSN8mkKxV9fCNY7kHs-vW56ClNt1t7_7vW5cM_kQ2XDRHMN2vVC6crxJ0xW7Ztrcf1nQky4VnD4VM23JZLrW2C7t1Q4lkj6HW8YpS837PvmKBW8yhhQF88LsjzW8hhtSk4kfFF5VkXFfG4Tq_CZW2_dRtm97tDNzW1CnNR46NLkNqW7xtdT88lWpKlVzF0Ph8P9XCgW8crkRT5zKCmZW2VjqKK501H32W4rqcrR7-5bDzW3kzZlz3gnpmpW81BsBL6VRZp4W42ZFpp48XZr-W3c4y402Jp88JW8777p511-Q5SW4w8Kl_6Jg5PsVZvFVp6-y25Qf7Vlg6404\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width: 0.3666in; height: 0.3666in;\" id=\"m_-8707086132752645063Picture_x0020_47\" src=\"cid:ii_1997daeb710692e333\"></span></a>     <a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3ldN8c_2MHWFgXBW4Y6zx75gpCBNN4-p18vrbzX-W3qRHXM4Cv-vlW47cWHS1XchDWW6-l31J6y8-jGW76ftXv6l6rGjW3Q1kvS3CxpVSW6bWpHq5m3ppXW1l4hd74Zh346W7mg9hr92WLfGW6GpVTY4_Q7XHW19mnzl4hctNrN6tvS-8ls8CrW49sp2p6B_jY8VF2Nr47jK_D1W2b_cNt1VHgB6N4HGfG8TcYh3W14Qclk18kkPGW2WQkjz5Zz3y4W33Jp8r56p3J8W1mQr292HxSj4N5-tJVl_GBK2N4H57mvDqhngf60Rt8R04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width: 0.3666in; height: 0.3666in;\" id=\"m_-8707086132752645063Picture_x0020_46\" src=\"cid:ii_1997daeb7107745b44\"></span></a>     <a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3prW3Fhp5j2FMNcmW6t5xpf95jXTKW5K75MS2V3KDVW5L6l4g2jgkpJN3VXYPKjtqS0W89bMGZ90r59tW35XcYp7gBjwVW5fxKWJ56ZDG3W2xBc0q1w_ll7W26GlLx7pF_S5W61Lstq2lwPZwW93GJWb7PvwLJW7F3rh07Tp4ltW5gDCYb8sFlxwW8H9ZCr8Cq0P6W47dVlJ1cRZ2JW6WcjNn2BSkmJW61g0yr5LR5LVW8X6N8l3k8h0sW6_mMX46lTskMW12nhWK86-kmvN8JCXpQZ3VPLf7Q7x5b04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width: 0.3666in; height: 0.3666in;\" id=\"m_-8707086132752645063Picture_x0020_45\" src=\"cid:ii_1997daeb710855d355\"></span></a><u></u><u></u></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"><u></u> <u></u></span></p>\r\n<div>\r\n<div style=\"border-right:none;border-bottom:none;border-left:none;border-top:1pt solid rgb(225,225,225);padding:3pt 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">From:</span></b><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"> Kevin Campos &lt;<a href=\"mailto:Kcampos@tampabayedc.com\" target=\"_blank\">Kcampos@tampabayedc.com</a>&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, September 24, 2025 11:44 AM<br>\r\n<b>To:</b> Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Yanet Lopez &lt;<a href=\"mailto:yanetl@bradentonareaedc.com\" target=\"_blank\">yanetl@bradentonareaedc.com</a>&gt;; Elizabeth Cordes &lt;<a href=\"mailto:elizabethc@bradentonareaedc.com\" target=\"_blank\">elizabethc@bradentonareaedc.com</a>&gt;<br>\r\n<b>Subject:</b> Introduction - Bradenton Area EDC<u></u><u></u></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\">Hello Nathan, <u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\">As discussed, I wanted to connect to the EDC in Manatee County for your Parrish, FL location.\r\n<u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\"><a id=\"m_-8707086132752645063OWAAM17B2DEE5A4C34F5CB283A2569514D12A\" href=\"mailto:yanetl@bradentonareaedc.com\" target=\"_blank\"><span style=\"font-family:Aptos,sans-serif;text-decoration:none\">@yanetl@bradentonareaedc.com</span></a> and\r\n<a id=\"m_-8707086132752645063OWAAME1D47600030A45EE808DC68FC8B9B276\" href=\"mailto:elizabethc@bradentonareaedc.com\" target=\"_blank\">\r\n<span style=\"font-family:Aptos,sans-serif;text-decoration:none\">@elizabethc@bradentonareaedc.com</span></a> thanks for taking my call. Could you connect with Nathan Staron when you have a chance? I have included him on this email and they are expanding into\r\n that area. <u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\" style=\"background:white\"><b><span style=\"font-size:11pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(83,129,53)\">Kevin Campos, FCWP</span></b><span style=\"font-size:14pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(31,73,125)\"><br>\r\n</span><span style=\"font-size:10pt;font-family:Calibri,sans-serif;color:black\">ECONOMIC DEVELOPMENT MANAGER<br>\r\n</span><b><span style=\"font-size:10pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(83,129,53)\">TAMPA BAY ECONOMIC DEVELOPMENT COUNCIL</span></b><span style=\"font-family:Calibri,sans-serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\" style=\"background:white\"><span style=\"font-size:9pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(31,73,125)\">101 E. Kennedy Blvd., Suite 2000, Tampa, FL 33602</span><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\" style=\"background:white\"><b><span style=\"font-size:9pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(83,129,53)\">O:</span></b><span style=\"font-size:9pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(31,73,125)\"> 813.518.2662\r\n I </span><b><span style=\"font-size:9pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(83,129,53)\">M</span></b><span style=\"font-size:9pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(31,73,125)\">: 813.763.0307</span><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\" style=\"background:white\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:rgb(36,36,36)\"><a href=\"mailto:kcampos@tampabayedc.com\" target=\"_blank\"><span style=\"color:blue\">kcampos@tampabayedc.com</span></a></span><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\" style=\"background:white\"><span style=\"color:black\"><u></u><img width=\"320\" height=\"130\" style=\"width: 3.3333in; height: 1.35in;\" src=\"cid:ii_1997daeb7109374b66\"><u></u></span><span><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:black\"> </span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span><img border=\"0\" width=\"1\" height=\"1\" style=\"width: 0.0083in; height: 0.0083in;\" id=\"m_-8707086132752645063_x0000_i1025\" src=\"https://d152-C04.na1.hs-sales-engage.com/Cto/V+23284/d152-C04/R5R8b49ndN6J62ww2fDxhW3H3BGf1_kD4WW22X8j_1X0-tSW1Gc_9Z3BKrqGW1_jQ5T1XmJSdW20WV7w1V0Nlnn1V3ftj4W1\"></span><span><u></u><u></u></span></p>\r\n</div>\r\n</div>\r\n\r\n</div></blockquote></div>','Good Afternoon Elizabeth,\r\n\r\nThank you for your prompt response and for the kind welcome. It was a\r\npleasure e-meeting you as well.\r\n\r\nI would like to introduce Brian Stufflebean and Rick Mislan, who are the\r\nproject leads for our expansion into Parrish, FL. They will be instrumental\r\nin the development of our new location, and I believe it would be\r\nbeneficial for them to connect with you directly.\r\n\r\nRegarding setting up a meeting, I agree that it would be valuable to\r\ndiscuss the project further. We would be happy to coordinate a time that\r\nworks best for everyone next week. As you mentioned, Tuesday and Wednesday\r\nwork well for you, and we can certainly align with that.\r\n\r\nPlease let us know what specific times on Tuesday or Wednesday next week\r\nwould be most convenient for you and Yanet, and we will make sure to\r\nschedule a call or meeting accordingly. We look forward to the opportunity\r\nto collaborate.\r\n\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Wed, Sep 24, 2025 at 3:54 PM Elizabeth Cordes <\r\nelizabethc@bradentonareaedc.com> wrote:\r\n\r\n> Hi Kevin,\r\n>\r\n>\r\n>\r\n> Thank you very much for the introduction! It is a pleasure to e-meet you,\r\n> Nathan. I would very much like to set up a call or meeting to discuss your\r\n> project further. Please let me know a day and time that would work best for\r\n> you. We have good availability Tuesday and Wednesday next week. I look\r\n> forward to working with you.\r\n>\r\n>\r\n>\r\n> Kindest regards,\r\n>\r\n>\r\n>\r\n> *Elizabeth Cordes*\r\n>\r\n> Director of Business Recruitment & Expansion\r\n>\r\n> *Bradenton Area Economic Development Corporation*\r\n>\r\n> 5840 26th Street West, 26 West Center, Suite 232, Bradenton, FL 34207\r\n> <https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkMgQprkW6N3_xK6lZ3n4W78Vp4V2FPPZMN1pH5g_5RF2hW6Xrxnm5t7Fv5W51TlCL1hWFT2W2t1-jW95-QDtW23ZZ4Z26SxbdW80J32Y41q9JtW6hmwKm3MPtmCN6rGfZyZfdg5W6GTJH549k0_CW5QBgQZ5-9hq7W6z25h66Mkt7-W6sMZ9w17jFJLVX1w2c8Z6Ml7W2nHyKy4rhB6GW67Nv3N507PkcW5WS6f664GLZKW8T7Qq11dt2Y5W8RsQG-7Fl9MCW2f04G02B-7Q1V9x_Y17f2w41W3cYcDk5HwLw-W3qcd1j30bMqNW5N7NG23bzpxtW3XsGym4V_yxpW4tdrDW1q_SzgVTgQdg3LrL87W4Jr5td38zsqNW8HqHyM4xr_H2W42lq8M6-tqpFVrrr3d4T5tYvW72tN838D1l-cW8pmG5S1ZVm0vW5NB9_w9j1bx_N8p_9C0GbV3lW1KC46245cX4BN1Rdf_VHB0ZBW4flsr83B7wPnW8LfHCZ6GCNbkW64v1XG3lW3FpVFWvKP2kmV44W5mPkj22LhTTFW5LSnhS4q--gzW7rT7MH6xNcPVN19Cm6s-gjlMW79ZTbp9hPsF5W8lrX-g5CbKmyN1D6r81Zk11jW6xygMd6YpVkCW8NRyPt2gX2S_W5RvZ4L3VjGdDW58DwQS3Lzc3RW3t_1Lf2Ct9KZW1K9cL83Vplp5VLPR7w3GjX82W33CMZT3c3RlyW37CKRW4wcS5LW5tn8Ss25BfcfW6VRPWz8268WGW2C8kpQ2TlKMwN2kZ-QrM-DFxW4vb7rH19bDQ0N2vnVF94XgW5W8bnb_y8bmYTtVWXWTn6mwJn_W4X5h_664JmhZW2sQlD96rnQnjW4Xm0ZD54jXhPW2b8ktr2J6V5gW9h9QW06XMnd5W3TLzdh78k_b2W8S4gxY2PZsp6W5HY7s52JSyRpW3xx6Mq6T5F92W1vJgzP35XmJJW67PYyH39yBY2MJ5BTVH7mFcW3YwsRJ3DrZVNW6-T62t8FPLqCW1PW8ym1XZRCBN7mFLsJ1kDshW3yfdH28P87wwW3PLlSY8_By4JVJ-tDt12J_DSW77SfZv9cpBjtVVD7ZL6FDfM-W5QJFXq3rWNCmVw-0L31-6FlvW2ZNZtL3M8gJpN8PwR2hMMD2KW6C2y3S1g7yg1W7dBJKg71SQbTW1Fg4Vb4C5DjQW4dNvqQ17zKGQW3G68wV681nWKW6XQbRS1XXPtwW1kvlKN4Sq8BnW11ymrT8jk2lLW8vwVv324KMKpW4ZR4hj27_0VYW3rGD-z6l95RLN5lnHXFLlpnKW1gjM6461CFZbW7Ynz0C8ZzV1cW6ZxtxY5qZyP8W2jXC6L1J9mJpW3cHNM96FmMczW5z7xQ_59m6zNN1sTgyBhYGW5T_2Qn76l93NW3csdg46GvyWVW5Gp9lS3Lgst1W76Xkw949HzP2W5z48gd1wt76qVmrRKD7qF317W5M4Bxl3G5zdjW74p33T1HBXhNW7117hz1H2rwRf6H-mQF04>\r\n>\r\n> *Email:* ElizabethC@BradentonAreaEDC.com\r\n>\r\n> *Phone: *941-803-9033\r\n>\r\n> *Cell: *716-908-6134\r\n> BradentonAreaEDC.com\r\n> <https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3pdW2fMpC-8rn8LfW4L1Rk04jBdxRW3Z4zsj3yX81HW8TwyXV3lc4QrW8HHfpD1LnRcnW3VMtj54CTCj2VCyjKC6j9YTyW2XQZVw4w83pJW3NktFp4vHXy4VRvglH2hNfBQW40g7XY2VPpBDTbvl15MTwL0W2K-8WN3kRvy9W8xtjZf3cMyFFW11pnr85HKkpWW64sY5L1D_YCbW95_w_L1whkRkW21h9qF4hwy39VjRW4r5MtnGWN4gjZl0M47MyW5srz3K8xM5ccW9cHWMp4ThMGyf80M8DP04>\r\n>\r\n>\r\n>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3kvW2LTpSn28K3myW5ytqq07mdVxbW44r6315ffbyKW7-vzDZ2z2mBSW546FP457rF6yW1wy11k7WlwmvW47FpQg5m_ZcBW8FjNnV4fg-7SW6QCkRk3vtYkxW6pwtrr86p_0DW96skzR53M83SW2KtJt81bqHBBW7l2b1B3-XFhgW2GX8g-2Rf2rkW8Hg5MP1y4rDnW94CL8S15_LMFW1pMc7B4j-V_YW4hSwWw3SFs8xN6Fh1Hr-Df94W4shHsV6Mm1MdVQG3sH7W-JnHW9hxJ-56mttg0f5nQ08M04>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3kKN20Nn22df6lGW7xMF8J18H1JlW6_TqNH3TT6JHN4rbbsrhPdp8W5p42q254pFkjTrzhg3kmzHTN1-Mj7bL-BbwW3jDNyf8TLyhRN8xcPJmK3-dqW94nCXJ2HFC8RW6RdNDy3Z4fV9N8nkrPrHpWB9N9cW7tJj95_HN55MK4WYSc7DW76Gz184kzqJlW3VNzj-8h_NdGV54qHV8sbj4JW3b8cM962ZZWwVS8VjP5hV3HmW4PT25x5bS2hHV8wfXF20q1L0W5VdRbm7RtQq7W7DtSqN3FZnw3W6tZym872H8F6f35-lSP04>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jll2-6qcW7Y8-PT6lZ3pCMqbbSN8mkKxV9fCNY7kHs-vW56ClNt1t7_7vW5cM_kQ2XDRHMN2vVC6crxJ0xW7Ztrcf1nQky4VnD4VM23JZLrW2C7t1Q4lkj6HW8YpS837PvmKBW8yhhQF88LsjzW8hhtSk4kfFF5VkXFfG4Tq_CZW2_dRtm97tDNzW1CnNR46NLkNqW7xtdT88lWpKlVzF0Ph8P9XCgW8crkRT5zKCmZW2VjqKK501H32W4rqcrR7-5bDzW3kzZlz3gnpmpW81BsBL6VRZp4W42ZFpp48XZr-W3c4y402Jp88JW8777p511-Q5SW4w8Kl_6Jg5PsVZvFVp6-y25Qf7Vlg6404>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3ldN8c_2MHWFgXBW4Y6zx75gpCBNN4-p18vrbzX-W3qRHXM4Cv-vlW47cWHS1XchDWW6-l31J6y8-jGW76ftXv6l6rGjW3Q1kvS3CxpVSW6bWpHq5m3ppXW1l4hd74Zh346W7mg9hr92WLfGW6GpVTY4_Q7XHW19mnzl4hctNrN6tvS-8ls8CrW49sp2p6B_jY8VF2Nr47jK_D1W2b_cNt1VHgB6N4HGfG8TcYh3W14Qclk18kkPGW2WQkjz5Zz3y4W33Jp8r56p3J8W1mQr292HxSj4N5-tJVl_GBK2N4H57mvDqhngf60Rt8R04>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3prW3Fhp5j2FMNcmW6t5xpf95jXTKW5K75MS2V3KDVW5L6l4g2jgkpJN3VXYPKjtqS0W89bMGZ90r59tW35XcYp7gBjwVW5fxKWJ56ZDG3W2xBc0q1w_ll7W26GlLx7pF_S5W61Lstq2lwPZwW93GJWb7PvwLJW7F3rh07Tp4ltW5gDCYb8sFlxwW8H9ZCr8Cq0P6W47dVlJ1cRZ2JW6WcjNn2BSkmJW61g0yr5LR5LVW8X6N8l3k8h0sW6_mMX46lTskMW12nhWK86-kmvN8JCXpQZ3VPLf7Q7x5b04>\r\n>\r\n>\r\n>\r\n> *From:* Kevin Campos <Kcampos@tampabayedc.com>\r\n> *Sent:* Wednesday, September 24, 2025 11:44 AM\r\n> *To:* Nathan Staron <nathan@lithiumbatterycompany.com>; Yanet Lopez <\r\n> yanetl@bradentonareaedc.com>; Elizabeth Cordes <\r\n> elizabethc@bradentonareaedc.com>\r\n> *Subject:* Introduction - Bradenton Area EDC\r\n>\r\n>\r\n>\r\n> Hello Nathan,\r\n>\r\n>\r\n>\r\n> As discussed, I wanted to connect to the EDC in Manatee County for your\r\n> Parrish, FL location.\r\n>\r\n>\r\n>\r\n> @yanetl@bradentonareaedc.com <yanetl@bradentonareaedc.com> and\r\n> @elizabethc@bradentonareaedc.com <elizabethc@bradentonareaedc.com> thanks\r\n> for taking my call. Could you connect with Nathan Staron when you have a\r\n> chance? I have included him on this email and they are expanding into that\r\n> area.\r\n>\r\n>\r\n>\r\n> *Kevin Campos, FCWP*\r\n> ECONOMIC DEVELOPMENT MANAGER\r\n> *TAMPA BAY ECONOMIC DEVELOPMENT COUNCIL*\r\n>\r\n> 101 E. Kennedy Blvd., Suite 2000, Tampa, FL 33602\r\n>\r\n> *O:* 813.518.2662 I *M*: 813.763.0307\r\n>\r\n> kcampos@tampabayedc.com\r\n>\r\n>\r\n>\r\n>',0,0,0,0,0,0,'2025-09-24 21:47:11','2025-12-09 19:29:06','2025-12-09 19:29:06','2025-12-09 19:29:06',NULL,NULL,NULL),
(788,4,'<1758814209019.b322d882-f463-4de9-9749-c5878636c046@bf03.hubspotemail.net>',NULL,NULL,'Repositioning Mantech: A future-ready mission technology brand','info@grafik.com','The Grafik Team','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional //EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:v=\"urn:schemas-microsoft-com:vml\" lang=\"en\"><head>\r\n    <title>Repositioning Mantech: A future-ready mission technology brand</title>\r\n    <meta property=\"og:title\" content=\"Repositioning Mantech: A future-ready mission technology brand\">\r\n    <meta name=\"twitter:title\" content=\"Repositioning Mantech: A future-ready mission technology brand\">\r\n    \r\n    \r\n    \r\n<meta name=\"x-apple-disable-message-reformatting\">\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\r\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <!--[if gte mso 9]>\r\n  <xml>\r\n    <o:OfficeDocumentSettings>\r\n      <o:AllowPNG/>\r\n      <o:PixelsPerInch>96</o:PixelsPerInch>\r\n    </o:OfficeDocumentSettings>\r\n    <w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\">\r\n      <w:DontUseAdvancedTypographyReadingMail/>\r\n    </w:WordDocument>\r\n  </xml>\r\n  \r\n  <style>\r\n    ul > li {\r\n      text-indent: -1em;\r\n    }\r\n  </style>\r\n<![endif]-->\r\n<!--[if mso]>\r\n<style type=\"text/css\">\r\n body, td {font-family: Arial, Helvetica, sans-serif;}\r\n .hse-body-wrapper-table {background-color: #ffece7;}\r\n</style>\r\n<![endif]-->\r\n<!--[if mso | IE]>\r\n  <style type=\"text/css\">\r\n    .hse-column-container { border: none !important; padding: 0 !important; }\r\n  </style>\r\n<![endif]-->\r\n    \r\n      \r\n  \r\n  \r\n    \r\n  <meta name=\"generator\" content=\"HubSpot\"><meta property=\"og:url\" content=\"http://grafik-7.hs-sites.com/repositioning-mantech-a-future-ready-mission-tech-brand\"><meta name=\"robots\" content=\"noindex,follow\"><!--[if !((mso)|(IE))]><!-- --><style type=\"text/css\">@media only screen and (max-width:639px){img.stretch-on-mobile,.hs_rss_email_entries_table img,.hs-stretch-cta .hs-cta-img{height:auto !important;width:100% !important}\r\n.display_block_on_small_screens{display:block}.hs_padded{padding-left:20px !important;padding-right:20px !important}\r\n.hs-hm,table.hs-hm{display:none}.hs-hd{display:block !important}table.hs-hd{display:table !important}\r\n}@media only screen and (max-width:639px){.hse-border-m{border-left:1px solid #ccc !important;border-right:1px solid #ccc !important;box-sizing:border-box}\r\n.hse-border-bottom-m{border-bottom:1px solid #ccc !important}.hse-border-top-m{border-top:1px solid #ccc !important}\r\n.hse-border-top-hm{border-top:none !important}.hse-border-bottom-hm{border-bottom:none !important}\r\n}.moz-text-html .hse-column-container{max-width:600px !important;width:600px !important}\r\n.moz-text-html .hse-column{display:table-cell;vertical-align:top}.moz-text-html .hse-section .hse-size-6{max-width:300px !important;width:300px !important}\r\n.moz-text-html .hse-section .hse-size-12{max-width:600px !important;width:600px !important}\r\n@media only screen and (min-width:640px){.hse-column-container{max-width:600px !important;width:600px !important}\r\n.hse-column{display:table-cell;vertical-align:top}.hse-section .hse-size-6{max-width:300px !important;width:300px !important}\r\n.hse-section .hse-size-12{max-width:600px !important;width:600px !important} }@media only screen and (max-width:639px){.hse-body-wrapper-td{padding-top:20px !important}\r\n#section_1756346635501 .hse-column-container{background-color:transparent !important}\r\n#section_1756346635501 .hse-column-container{background-color:transparent !important}\r\n}@media only screen and (max-width:639px){ #section-0 .hse-column-container{padding-top:0px !important;padding-bottom:0px !important}\r\n#section-0 .hse-column-container{background-color:#fafafa !important} }@media only screen and (max-width:639px){.hse-body-wrapper-td{padding-bottom:20px !important}\r\n#section_1744379431619 .hse-column-container{background-color:#151515 !important}\r\n}</style><!--<![endif]--><style type=\"text/css\">#hs_body #hs_cos_wrapper_main a[x-apple-data-detectors]{color:inherit !important;text-decoration:none !important;font-size:inherit !important;font-family:inherit !important;font-weight:inherit !important;line-height:inherit !important}\r\na{text-decoration:underline}p{margin:0}body{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale}\r\ntable{border-spacing:0;mso-table-lspace:0;mso-table-rspace:0}table,td{border-collapse:collapse}\r\nimg{-ms-interpolation-mode:bicubic}p,a,li,td,blockquote{mso-line-height-rule:exactly}\r\n.ShadowHTML p,.sh-modified-inline p{margin:0}</style></head>\r\n  <body id=\"hs_body\" bgcolor=\"#ffece7\" style=\"margin:0 !important; padding:0 !important; font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word\">\r\n    <div id=\"preview_text\" style=\"display:none;font-size:1px;color:#ffece7;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;\" lang=\"en\">The latest insights and client stories from Grafik, a branding and marketing agency that helps inspire new possibilities.</div>\r\n    \r\n<!--[if gte mso 9]>\r\n<v:background xmlns:v=\"urn:schemas-microsoft-com:vml\" fill=\"t\">\r\n    <v:fill type=\"tile\" size=\"100%,100%\" color=\"#ffffff\"/>\r\n</v:background>\r\n<![endif]-->\r\n    <div class=\"hse-body-background\" lang=\"en\" style=\"background-color:#ffece7\" bgcolor=\"#ffece7\">\r\n      <table role=\"presentation\" class=\"hse-body-wrapper-table\" cellpadding=\"0\" cellspacing=\"0\" style=\"margin:0; padding:0; width:100% !important; min-width:320px !important; height:100% !important\" width=\"100%\" height=\"100%\">\r\n        <tbody><tr>\r\n          <td class=\"hse-body-wrapper-td\" valign=\"top\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding-top:20px; padding-bottom:20px\">\r\n            <div id=\"hs_cos_wrapper_main\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_dnd_area\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"dnd_area\">  <div id=\"section_1756346635501\" class=\"hse-section hse-section-first\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\r\n      <tr>\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column_1756346635501_0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module_17563466354982\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div style=\"overflow:hidden\">\r\n  <table role=\"presentation\" class=\"hse-pre-header hse-secondary\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"text-align:right; font-family:Arial, sans-serif; font-size:12px; line-height:135%; color:#23496d; margin-bottom:0; padding:0\" align=\"right\">\r\n    <tbody>\r\n      <tr>\r\n        <td align=\"right\" valign=\"top\" style=\"color:#151515; word-break:break-word; text-align:right; font-family:Arial, sans-serif; font-size:12px; padding:10px 0; margin-bottom:0; line-height:135%\">\r\n          <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz985kBVzW7lCGcx6lZ3lmW1J7hXk5qxmv1M_grGFqSJVLW1VVgz-7RLvJqW5W2lHF6Vksr0W4Y_cx33ML799W7dQgSK2Yw3q6W5bvDSN8DQLn0Mpy_g632H7MN8pPJFSjPhn-W3Ccyz97bfzksW3JCHM088CBQFW8y-ncd6T7VkrVyW6fF6xFfm5W4HD0sm2zkLgyW1rz4tb2Yk9GfW6v4Wqv2SJGSYW81PsgD1twyBbW6w1XdT6wWsTkW3RphQ61H78RtW4K1C2r1GTLqSW622sQM48R59PW1PTm_r46F0CwW4YTcgD3pVKVRW7sq95m2GzmQvW776_6P21cnrYN34gVsMrks0TW53krfB3dHWNxW4Zsgc43Tw-BKW8BMkHq631kDdW1FVlvj4fXHFVW5TLL747zMW9jW5VY-XF4JssX1W5tLRxF2PMy4zW21Z1F77M_2tQW80wjBd8YV12tW3rJNN47q7NV8VTpZhj7KyMM0W3wdrqS1Gpcz2W34y7r36Wp_9TW3lP4zY4lj9tgf3QzXL204\" style=\"color:#151515; font-weight:normal; text-decoration:none; font-style:normal\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"OmqbXdrs\" target=\"_blank\">View in browser</a>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n</div></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section-0\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#FAFAFA\" bgcolor=\"#FAFAFA\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#FAFAFA\">\r\n      <tr style=\"background-color:#FAFAFA;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-0-0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module_17443761811201\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\" valign=\"top\" style=\"font-family:Helvetica, Arial, sans-serif; color:#151515; word-break:break-word; text-align:center; padding:0px; font-size:0px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz8z3m2nnW69sMD-6lZ3lZVd-dDP3_802gW4HL4D-10hZ_8W111L3q5NX8S9W1wgHX48GKbSVW24x02L7hNbKwW7XB9MB8fh63xW5gPSfG82CBwxW7N8L3d1frbQcW35_2lr3DK5MfW24dzQQ2HrNBmW3F2DHQ1SpMyDW2DCVRn1SnYjYW2PFgzJ2_p5pCW35C7nf31s05FW45yvkQ6c7xpBW99WVj956jdP1W8zgK4-6kRTLgW5kSnbm1tHrSPW481H401NfMczW7n8_DX4Yv1B6d5GZR-04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"jBtPrh1/\">\r\n        <img alt=\"\" src=\"https://hs-505301.f.hubspotemail.net/hub/505301/hubfs/Header-1.jpg?width=1200&amp;upscale=true&amp;name=Header-1.jpg\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"600\" align=\"middle\" class=\"stretch-on-mobile\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n<div id=\"hs_cos_wrapper_module_17443764897162\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\" valign=\"top\" style=\"font-family:Helvetica, Arial, sans-serif; color:#151515; word-break:break-word; text-align:center; padding:0px; font-size:0px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz983m2nnW7lCdLW6lZ3mjW1kV7rC8MNNzdW1XrXy_379Vw5VR1nY_3Gdwg0W34SKqH7MH8M_W2WBmq_6HLgjgW3ll2YT7PVb8VW92p_V07VDXrBW4xLtvy3_K1BNW1H_lvh7H21C1W48Gpnn6G5glDW6kPHD41hX5RkN3hnXFFfrMcwW7ZYGTX43drHWW3qNsyW5J-MLMW2_WJhS5TCsyLW64WwSM8XhqsfW1xn8WM9j_h7XW4vf4lq4n0nwcN53LG1hYJWG2W37q6VJ2RVdtRW2Qk0_C15wmS9W7wJy4r1NG2WkW8Mp7VS7cTSZTW3r2S0s3g096Kf8C3jtY04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"chiDLEKw\">\r\n        <img alt=\"mantech-newsletter-hero\" src=\"https://hs-505301.f.hubspotemail.net/hub/505301/hubfs/mantech-newsletter-hero.jpg?width=1200&amp;upscale=true&amp;name=mantech-newsletter-hero.jpg\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"600\" align=\"middle\" class=\"stretch-on-mobile\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_17512913206711\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17512913206711_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h2 style=\"margin:0; font-family:Helvetica, Arial, sans-serif; font-size:36px; line-height:125%\"><span style=\"font-size: 32px;\"><strong>Advancing a legacy mission technology leader</strong></span></h2></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:0px 20px 10px\"><div id=\"hs_cos_wrapper_module_17443765430663\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17443765430663_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"font-size:18px; line-height:150%\" data-start=\"595\" data-end=\"1089\">Following its acquisition by Carlyle\'s Global Private Equity, Mantech set out to evolve from an engineering-first systems integrator into a digital-forward national security technology leader. To guide them through a repositioning effort, Mantech turned to Grafik. Our lead strategists and designers helped elevate the brand identity with new messaging, a new brand mantra, refined logo and design vocabulary. Our work honored Mantech’s 50+ year legacy while signaling a future-focused strategy. The refreshed brand came to life internally through employee launch kits and externally through a Metro Center station takeover, generating nearly 2 million impressions in four weeks.</p>\r\n<p style=\"font-size:18px; line-height:150%\" data-start=\"595\" data-end=\"1089\"><br>Read the <span style=\"text-decoration: underline;\"><span style=\"color: #ff0201;\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz983m2nnW7lCdLW6lZ3kzN7YB94M-K0ZyW6syHYy331rjYW3zHz851N6-4hW8_cKz_8kvsbJW8bW1tq79CjD6W1JX7Pr4ZdXkPW4lnrtv4D7Zl9W261LH37C8wvJW1TVnX56ncNhkW4lD0wl8r2c5kW8wJ7CX986XKmW2r2SYw8L6gklW6CS83-7zJ-Q6W1tQdzX17Jv4NW64wtY154m8bnW4Vf-B44LKrwlVRrgFH1rJPWfVZYC2W3TVFLZW1rvv6C8b0HL3W49-VyH7z-CbWW4yj-7H4Y6rL1VNXH3c592tnsW4Qc1_K4bBT8KW8Ysh2H2rpfxGf5ZFbq-04\" style=\"text-decoration:none; color:#ff0201; font-weight:bold\" rel=\"noopener\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"jH646qXC\" target=\"_blank\">full case study</a></span></span> to see how Grafik helped position Mantech as a digital-first force ready to meet the mission demands of tomorrow.</p></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_17443767079664\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#ff2d0f\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; border-radius:0px; cursor:auto; background-color:#ff2d0f; mso-padding-alt:20px 26px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz983m2nnW7lCdLW6lZ3lgW45QjF77ynYWBW5t5Mmq42-hBvW1cNZnf4jkxTrV4Zdfg2kdtYZV6RGmd3JS61cW294Gxf1BYQB2W6JPgJC1zZ0f5W2nf3px4BlRn9W2Q2V6R7qG9YsW1R7lRd8rqkWqW7LWHF18PK1QxW2kly-X3gn_rfW7Ng9yR3JkfHZW50RXVL4JHsJcW6WYfQ52D5DnzV73yqb8tHD_yW4gfgMD5C9qmFW35Zw2S6wyc19W3r4PjQ2pSkNHW1LLcwy6M5CV1W2VM7Lk3KQRDGN8l5tvVDmZ2xW5fZP5t402G2VW6j1qvV37383kf6lTRy204\" target=\"_blank\" style=\"color:#00a4bd; font-size:14px; font-family:Arial, sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:20px 26px; display:block\" data-hs-link-id=\"2\" data-hs-link-id-v2=\"97EEtICE\">\r\n          <strong style=\"color:#FFFFFF;font-weight:bold;text-decoration:none;font-style:normal;\">CONTINUE READING</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_174437748374110\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table role=\"none\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"vertical-align:top\" width=\"100%\">\r\n  <tbody><tr>\r\n    <td align=\"center\" style=\"font-family:Helvetica, Arial, sans-serif; color:#151515; font-size:0; word-break:break-word\">\r\n      <p style=\"font-size:1px;border-top:1px solid #000000;width:100%;margin:0 auto;\"></p>\r\n      <!--[if mso]>\r\n        <table role=\"none\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-size:1px;border-top:1px solid #000000;width:560px;\">\r\n          <tr>\r\n            <td style=\"height:0;line-height:0\">&nbsp;</td>\r\n          </tr>\r\n        </table>\r\n      <![endif]-->\r\n    </td>\r\n  </tr>\r\n</tbody></table></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_174437749928911\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_174437749928911_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h1 style=\"margin:0; line-height:125%; font-size:36px; text-align:center\" align=\"center\"><span style=\"font-weight: black;\">THE LATEST</span></h1></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"module_1744377921294\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#FAFAFA; padding-bottom:20px\" bgcolor=\"#FAFAFA\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#FAFAFA\">\r\n      <tr style=\"background-color:#FAFAFA;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:300px;padding-bottom:20px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"300\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:300px\">\r\n<![endif]-->\r\n<div id=\"module_1744377921294_0\" class=\"hse-column hse-size-6\">\r\n  <div id=\"hs_cos_wrapper_module_174437792128618\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Helvetica, Arial, sans-serif; color:#151515; word-break:break-word; text-align:center; padding:10px 20px; font-size:0px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz9s3m2nnW7Y8-PT6lZ3lrW6-tqSt5HVZDbW5vMZrC2NPMMNVqJQRw2Wf1qFW37J5rW2TH3g4W3-V2Qn6fGwrCW7pm9Lk5JTQp7W6xBN9r7kjzrxW8dQPvw8Sp_2wW3tp9_l7MCm7rW97NvPc8-p0l7W51vC6f69d93pW8l5TLZ3QXwBPW4Z897w7B3yzFW1l8HQH4wWLbyW6t2kHq5BzFwrW8ZV0M-8xLPQBW3czvCg5NcyTTW25w0j47_2TfnW2SBj1c5MDvdJW8VNwVh3JSyQkVy0mZC7CTPLrW7fS4796VX_D8W5R0DWw6bPp4KW20nbX322Dq9nW74WxwL5dYzngW4tMbtz1GR-7gf5P2WMC04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"hT90jYiv\">\r\n        <img alt=\"3b29f1c1-0854-4364-a8be-e4797737a03c\" src=\"https://hs-505301.f.hubspotemail.net/hub/505301/hubfs/3b29f1c1-0854-4364-a8be-e4797737a03c.jpg?width=520&amp;upscale=true&amp;name=3b29f1c1-0854-4364-a8be-e4797737a03c.jpg\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"260\" align=\"middle\" class=\"stretch-on-mobile\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:300px;padding-bottom:20px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"300\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:300px\">\r\n<![endif]-->\r\n<div id=\"module_1744377921294_1\" class=\"hse-column hse-size-6\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_174437792128619\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_174437792128619_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h3 style=\"margin:0; font-size:20px; line-height:125%\">UX that fuels your B2B tech pipeline</h3>\r\n<div style=\"line-height:125%\">\r\n<div dir=\"auto\" data-message-author-role=\"assistant\" data-message-id=\"fb62dc7e-6d1f-4f1f-a0e6-a9b2d3f7139d\" data-message-model-slug=\"gpt-4o\" style=\"line-height:125%\">\r\n<p data-start=\"634\" data-end=\"866\" style=\"line-height:125%\">&nbsp;</p>\r\n<p style=\"line-height:150%\" data-start=\"634\" data-end=\"866\">In tech sales, user experience is no longer just a design issue—it’s a revenue driver. See how a streamlined UX can shorten complex buying cycles, build trust, and influence high-stakes decisions.</p>\r\n</div>\r\n</div></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_174437792128620\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#ff2d0f\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; border-radius:0px; cursor:auto; background-color:#ff2d0f; mso-padding-alt:20px 26px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz9s3m2nnW7Y8-PT6lZ3kWW7WltCx3FTl94W7_KpFR7Zs7N3W2fNWs65l5QLJW7W6sN-2BRfV6W7cjd7s3_rcrXW8kbvDC4WLdfvW1yPc0z7BL8kbW12vY0q5fWj4hVshzPJ181ShKW7q2B2b2pCdzcN4n2FjdHLwvNW5ntJWZ18_JKZW2t0MBH2SM3cnN8wvkkFHmC2hW8xsrfS8B0D_1W7JQn8H3zz1-8N8Y-Sx-h9RzJW6GQ2GF59MGZtW4fthwb4RWZ8CVsm8rh8FTvj3W7KsSh-2bLSTpVyXKGL1Y_fr8W63V9Vw3s7-svW1sVlG988926tW1n8cgC1r3fvCW3jQMdr5xHZXkf6Y8Wmz04\" target=\"_blank\" style=\"color:#00a4bd; font-size:14px; font-family:Arial, sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:20px 26px; display:block\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"gwr1xjch\">\r\n          <strong style=\"color:#FFFFFF;font-weight:bold;text-decoration:none;font-style:normal;\">READ MORE</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"module_1749607916924\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#FAFAFA; padding-bottom:20px\" bgcolor=\"#FAFAFA\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#FAFAFA\">\r\n      <tr style=\"background-color:#FAFAFA;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:300px;padding-bottom:20px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"300\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:300px\">\r\n<![endif]-->\r\n<div id=\"module_1749607916924_0\" class=\"hse-column hse-size-6\">\r\n  <div id=\"hs_cos_wrapper_module_17496079169191\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Helvetica, Arial, sans-serif; color:#151515; word-break:break-word; text-align:center; padding:10px 20px; font-size:0px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz9M3m2nnW8wLKSR6lZ3mfW5VHHD44Xr261W4gPJLp3VNthxW4qQfrs5vCXn0W7Cv4Vw1Fnq_9N3Fdr1vLXPn_W1hCnGM5_W69wVhbt4C3p_DQhW60PrQm2_5CWPW4HqZwy6xRTpBW6z4ZFv69GDWMW8wrxJm87mjRxVXJplp4nwF2sW7T_c0V2r4bN9W8Ng67n2478BVW4G9vzB17x2XLW2-fw6T2kF85YW8FzP2g7zDKSYW1y1klc5WS6kpW2SM8b17M_3N5N8DWHNc6gwy3W4DHZ0B683gYRW5Y0Lnj6lP1dZN8HwHdrHtskLW62LKZV3pNMdBW3BX3928Hz8X3W3hDrLR95GDYnW93xSh381HyGyW7rVyQw5lRJh9f7Z8pQP04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"F0w5NIDC\">\r\n        <img alt=\"AMAA blog preview\" src=\"https://hs-505301.f.hubspotemail.net/hub/505301/hubfs/AMAA%20blog%20preview.png?width=520&amp;upscale=true&amp;name=AMAA%20blog%20preview.png\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"260\" align=\"middle\" class=\"stretch-on-mobile\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:300px;padding-bottom:20px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"300\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:300px\">\r\n<![endif]-->\r\n<div id=\"module_1749607916924_1\" class=\"hse-column hse-size-6\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_17496079169192\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17496079169192_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h3 style=\"font-size:17px; margin:0; font-weight:bold; line-height:125%\"><span style=\"font-size: 20px;\">Positioning your brand to grow and exit</span></h3>\r\n<div style=\"line-height:125%\">\r\n<div dir=\"auto\" data-message-author-role=\"assistant\" data-message-id=\"66e6ea22-114d-4647-88a7-bca24f60d3db\" data-message-model-slug=\"gpt-4o\" style=\"line-height:125%\">\r\n<p data-start=\"0\" data-end=\"214\" data-is-last-node=\"\" data-is-only-node=\"\" style=\"line-height:125%\">&nbsp;</p>\r\n<p style=\"line-height:150%\" data-start=\"0\" data-end=\"214\" data-is-last-node=\"\" data-is-only-node=\"\">CMOs navigating mergers and acquisitions face a unique branding challenge: balancing legacy value with future vision. If you’re brand is primed for growth or looking toward an exit, read out takeaways here.</p>\r\n</div>\r\n</div></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_17496079169193\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#ff2d0f\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; border-radius:0px; cursor:auto; background-color:#ff2d0f; mso-padding-alt:20px 26px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz9M3m2nnW8wLKSR6lZ3lYW8SNnZg8dYPn_W8yJ9y47XcvhRW1N2P_c5xFQRKVmsBf41c2HWvW2QWqX17C2DJvW3rdXyH4QPCqTM3gjJYGpdcvW1CNwFy5VFWL2V9CV4j1Mc8r4W75pCLm6WKzKCW2N9vzP3-PL_yW25zTV36t3v0BW42fgMD4ZWYWYW6HCKgz6CM7JHW6sf6Qd1HbZZvN8cpS5dsKzM_Vl3L6v1tb9Q0N2XplSh9JLryW1k_WPv5SW9ngW7FpDFP1FnpQFVmn0mm13vCG_W74KdTt8fPkd_W6GRkwv3WKMRbW2RYMNh7MbHqrW2029CT6S3C9jW8XhHHm5QP4VyW69cJcZ5VFPjSW7yc39t6XQ8myf8pFlzH04\" target=\"_blank\" style=\"color:#00a4bd; font-size:14px; font-family:Arial, sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:20px 26px; display:block\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"xEhucyde\">\r\n          <strong style=\"color:#FFFFFF;font-weight:bold;text-decoration:none;font-style:normal;\">READ MORE</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"module_1744377826116\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#FAFAFA; padding-bottom:20px\" bgcolor=\"#FAFAFA\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#FAFAFA\">\r\n      <tr style=\"background-color:#FAFAFA;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:300px;padding-bottom:20px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"300\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:300px\">\r\n<![endif]-->\r\n<div id=\"module_1744377826116_0\" class=\"hse-column hse-size-6\">\r\n  <div id=\"hs_cos_wrapper_module_174437782611115\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Helvetica, Arial, sans-serif; color:#151515; word-break:break-word; text-align:center; padding:10px 20px; font-size:0px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz9s3m2nnW7Y8-PT6lZ3n3VlK31L1TWvdfMcCGt-HcBK6W4W6X-B2L41TCW24Xn462DLkHZW22n0nN3gt0GJVxdd-N20gzXrW3qcqZz1TzL4cW2-GS7y7T681WW6x5FRx8GVz1bVprVT93FQ4RzW2_61K04440HyW7GWKWx4qL2QFW7FTN5F8wslQlW896S__1m9ZQJW6Cgdcr7BwSZgW78CrQW8tmc61W4CfrNG6_S1nxW7KQytz7k8vBYN8TMxS2B_KRtW6Dy2-c7dvx69W2jSQb13FSqSnW2nj_wN53dMgtW913tYB1XX8FxW3cWSLY5vKXJfW304gTl6QC35PW3XF5sb73twN-f3jYmZ204\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"NYmKLcjM\">\r\n        <img alt=\"FlowerLady_600x600\" src=\"https://hs-505301.f.hubspotemail.net/hub/505301/hubfs/FlowerLady_600x600.jpg?width=520&amp;upscale=true&amp;name=FlowerLady_600x600.jpg\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"260\" align=\"middle\" class=\"stretch-on-mobile\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:300px;padding-bottom:20px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"300\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:300px\">\r\n<![endif]-->\r\n<div id=\"module_1744377826116_1\" class=\"hse-column hse-size-6\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_174437782611116\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_174437782611116_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h3 style=\"margin:0; font-size:20px; line-height:125%\">Modernizing member value to attract tomorrow’s leaders</h3>\r\n<div style=\"line-height:125%\">\r\n<div dir=\"auto\" data-message-author-role=\"assistant\" data-message-id=\"fb62dc7e-6d1f-4f1f-a0e6-a9b2d3f7139d\" data-message-model-slug=\"gpt-4o\" style=\"line-height:125%\">\r\n<h3 style=\"margin:0; font-weight:normal; font-size:15px; line-height:150%\" data-start=\"0\" data-end=\"178\">&nbsp;</h3>\r\n<h3 style=\"margin:0; font-weight:normal; font-size:15px; line-height:150%\" data-start=\"0\" data-end=\"178\">Trade associations can’t afford to rest on reputation. To stay relevant, they must modernize their brands, clarify value, and strengthen member trust. Discover the key strategies driving meaningful transformation.</h3>\r\n<span style=\"font-weight: normal;\"> </span></div>\r\n<span style=\"font-weight: normal;\"> </span></div></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_174437782611117\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#ff2d0f\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; border-radius:0px; cursor:auto; background-color:#ff2d0f; mso-padding-alt:20px 26px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz9s3m2nnW7Y8-PT6lZ3mVW6wJKC_8QgzQTW1gy55c1VWB_4W178J8R8nXKd6W4HxC_M1S4-rKN81dcK-C-FhwW7rVHTg475XPmW5GJXHw21s94ZV2sm4Z72JvPmW3FzYx71hCdRDV3My2v1HTX0nW1dJjnx1YS7qrW8qsnjH1Plbf6W2MZ22_5XkykcW65FHPs4Jt35dW7MH7zC3GPpPcW5dV9sJ7lrvL0W6-NZV_3TLS4YW6xGZ0X7RztmdW48_xcz6c6SJ1W1T51nn8wg2ZcW8t-jRm2B4089W39jZqW62GFWgW9k14WP2SDFqzN7pPCY6CjmXzN6WsRwNpN4JJW7-fW486FhTYnf8LxgcK04\" target=\"_blank\" style=\"color:#00a4bd; font-size:14px; font-family:Arial, sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:20px 26px; display:block\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"fral1h9N\">\r\n          <strong style=\"color:#FFFFFF;font-weight:bold;text-decoration:none;font-style:normal;\">READ MORE</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section_1744378936328\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container hse-no-stack-row\" style=\"min-width:280px; max-width:600px; margin:0 auto; border-collapse:separate; display:table; width:100%; background-color:#151515; padding-top:10px\" bgcolor=\"#151515\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" class=\"hse-no-stack-row\" width=\"600\" bgcolor=\"#151515\">\r\n      <tr style=\"background-color:#151515;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:300px;padding-top:10px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"300\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:300px\">\r\n<![endif]-->\r\n<div id=\"column_1744378936328_0\" class=\"hse-column hse-size-6 hse-no-stack\" style=\"display:table-cell; vertical-align:top; max-width:300px; width:50%\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"table-layout:fixed\"><tbody><tr><td style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_174437895484027\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_174437895484027_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h3 style=\"font-size:17px; margin:0; line-height:125%\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz8z3m2nnW69sMD-6lZ3q0N7xpC7xzf97FW7J59Qw8Y1dNGW1Nc0MY8HwZWjW1YtzNv18LXp0W2xh82-4TqHXtW2QG8QN1vY7-LN6HX5w9YxnJqW2pC9ZJ5NVDXvW6Jb-7z2-t8YBVw1kDJ6KhSjWW4HD-Yk732qcQW8_fBn18lY8glW7kMtgf4pzbcmVX8qKZ8Tc0dsW5MH1S93GvRMmW8-Y-W83jthkWW7yxntX7pYXMJN46qW2qDqgwkW599zRf4CwqkhV4pmhw88-McNf34KNxH04\" rel=\"noopener\" style=\"color:#151515; text-decoration:none\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"vvipHQuv\" target=\"_blank\"><span style=\"color: #ffffff;\">Grafik.agency</span></a></h3></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:300px;padding-top:10px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"300\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:300px\">\r\n<![endif]-->\r\n<div id=\"column_1745512888290_0\" class=\"hse-column hse-size-6 hse-no-stack\" style=\"display:table-cell; vertical-align:top; max-width:300px; width:50%\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"table-layout:fixed\"><tbody><tr><td style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_174437918732829\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_174437918732829_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"text-align:right; line-height:175%\" align=\"right\"><span style=\"color: #ffffff;\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz983m2nnW7lCdLW6lZ3n-VQtTV37_zW2PW62s8gj30K2_9W6vqhqF2WgZfvW4XdfjB8xhV-dVRzh672W9yl_N3smhwjsHNxNW1YWm2p4cpK0PW4GlQV52l396pW4PgFr06QB810N33-MVMtwrJCW17YyN18sqMF_VcFfQ-1crY7yW8t87zM44tpwbW8n5fz12m2CHbW98bcfk2MzSzLW44gyrn47L_PzW3s-vNZ4nBV52W5Q2zq04rjRR8W1DBR6J8CJN7CW1MtvKL2c_H3_W1vplqd301176N1tGBp18YJkQW6gZxlw4nNWtfW4FlmSv92Ff9Jf5lh7Zv04\" style=\"text-decoration:underline; color:#ffffff\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"pBQ+yHPN\" target=\"_blank\"><span style=\"color: #ffffff;\">LinkedIn</span></a></span></p>\r\n<p style=\"text-align:right; line-height:175%\" align=\"right\"><span style=\"color: #ffffff;\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz983m2nnW7lCdLW6lZ3lPW2rS2MC3Z6k84W5X6gF58TWK6RW3nwH9J4YH4C2W5xLJVb2bkG3qW8dPyr66Mwg5fW178TLX1cBrNWV8BBtf2GQBWrMj71XFTgFPPW5ch_0N89sLCHW5fGpGB1kWjYMW5SCFnF1Zn_p9W36lYhP49wX6DW2fZRCS6Mx78SN3d1fY6LWMhDW3YPMqP2h2wFGW6hrwhV7r9WL7W4cLCPk7T-PNcW4W8H2D4lQlc9W5mKY-T1WzTPbN8GhTN2bJ7tGW1jhsCd85DyVPW5x4rFN94m_WtW7VYbMR51QrWJW3VRY9H6PMgR5f2p5tYM04\" style=\"text-decoration:underline; color:#ffffff\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"pfSNRZcW\" target=\"_blank\"><span style=\"color: #ffffff;\">Instagram</span></a></span></p>\r\n<p style=\"text-align:right; line-height:175%\" align=\"right\"><span style=\"color: #ffffff;\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz983m2nnW7lCdLW6lZ3nRW64tLJS6b4BCNW7LSDKr4c4R-8W4vj-Wc6SbVp5W5s6cvz5FxQj3W9l4gkR3pLTqcN60yX9mJdcK_W1BRBF57Jcj_KW1kR_7r8B3yF1MVcpc0G6jrnW3FG5DL8CJq6VW8bvqPq3nBNY6W3GSrbg79HVpDW6vq3Ql7rsq4yW5xMTPp2D7y6_VQBX8k5JL9g7W7CFvbs2SYZkmW8DMlQD8Nz86NW2hgxGj2q0z55V1hSPY926CdXW82pkyY6MsfMDW7ZMXFP3PRmx7MSJtzS6620rW23fMn_4pFTQXN6y4c2FN5snjf3v6r8404\" style=\"color:#ffffff; text-decoration:underline\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"fEH59q0m\" target=\"_blank\"><span style=\"color: #ffffff;\">Bluesky</span></a></span></p></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section_1744379285686\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#151515; padding-bottom:30px; padding-top:30px\" bgcolor=\"#151515\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#151515\">\r\n      <tr style=\"background-color:#151515;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-bottom:30px; padding-top:30px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column_1744379285686_0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module_174437930076231\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Helvetica, Arial, sans-serif; color:#151515; word-break:break-word; text-align:center; padding:10px 20px; font-size:0px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz8z3m2nnW69sMD-6lZ3m4W64dJtn11VkrJN8WnVXSjnHPKW3_ddT73QQDXKMfhHNK-JFr0W3gvvHS4MsrwvW4lP1rX6Sj-zDW7c1H8f8Rxy5NW8Stys54qNmxlN2dRdWqPxFMTVyNyxP4MVl8SW3ZX2cd7DCj0NW8Mg6fK6_DrGTW2RYtGP8GKw40W53pRRB7sSmp4N5bFHDdBw3b8W2bvFDr1kR1kpW8CL1rB7dk3GYW19jwrN8zJ4MJN52fcCG_gcVhW8rh-vw7-ZQWkf6fPFdW04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"2\" data-hs-link-id-v2=\"+laaOanV\">\r\n        <img alt=\"grafik-roundup-footer-logo\" src=\"https://hs-505301.f.hubspotemail.net/hub/505301/hubfs/grafik-roundup-footer-logo.gif?width=1120&amp;upscale=true&amp;name=grafik-roundup-footer-logo.gif\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"560\" align=\"middle\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section_1744379431619\" class=\"hse-section hse-section-last\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#151515; padding-bottom:10px\" bgcolor=\"#151515\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#151515\">\r\n      <tr style=\"background-color:#151515;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-bottom:10px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column_1744379431619_0\" class=\"hse-column hse-size-12\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_174437944185634\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_174437944185634_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"line-height:125%; text-align:center\" align=\"center\"><span style=\"color: #ffffff;\">© 2025&nbsp;Grafik. All rights reserved.</span></p></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_17455084551821\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table role=\"presentation\" class=\"hse-footer hse-secondary\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family:Arial, sans-serif; font-size:12px; line-height:135%; color:#23496d; margin-bottom:0; padding:0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\" valign=\"top\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; text-align:center; margin-bottom:0; line-height:135%; padding:10px 20px\">\r\n          <p><span style=\"color: #ffffff;\">Grafik</span>, <span style=\"color: #ffffff;\">8045 Leesburg Pike</span>, <span style=\"color: #ffffff;\">Suite 503</span>, <span style=\"color: #ffffff;\">Vienna</span>,<span style=\"color: #ffffff;\">VA</span>,<span style=\"color: #ffffff;\">22182</span>,<span style=\"color: #ffffff;\">United States</span>,<span style=\"color: #ffffff;\"></span></p>\r\n<p><span style=\"color: #ffffff;\"><a href=\"https://hs-505301.s.hubspotemail.net/hs/preferences-center/en/direct?data=W2nXS-N30h-zFW2t78bG30tzQdW47KhZR30r2ttW2sDbfY25gDPrW4fM9fL4hfcWZW2YxXCl2nSfKbW1Lgxs-2CZZx5W36Cn-J3bbp1PW1XwcDr1SfXlyW3FdXHv3M0F71W3-14Xt3SNCsbW2TJHhy4cHZNVW3XF5gR2p4C19W2MVS0L2KJcXfW1SkhqJ2z_W0zW3GM7H52xXRgYW1Zm8TS2TpSD-W3484vM2zNnF4W22X_yc3D_byvW4t8zqN3NMhfDW2y3mmy2nGkhtW20Z1S62r1skkW2x_gcp1Xt_4hW4mrc_32sZz3dW4fhx8m3ZM7YnW4kK0g_2FzzZzW38n7gq3LM-8HW386tzV4t2GyRW3zkvct2TjpPlW3SJQsc38gP5hW2TvQvp4tt-MKW4pn6bl3F6F0ZW36xkSQ3T3RwgW34Gyy-1Ncm-bW2xNy3w1Ly3XVW2sW7D24mDkkXW1BxHFf47PsJMW1-X-CF2TG9gvW41-y7m2CvzLrW45FNn-4cGPFSW25nrMn2zv06HW45pqfM2FMvXZW2KpNgJ2PSX7zW3h_m9B1Nf1ByW1QyWf03yZ-hzW2-s34q2RNYjLW2FtWjr4fHSKPW2Yyj6L2zNKgfW4h9-TL43HYkPf3M9mc704&amp;utm_source=hs_automation&amp;utm_medium=email&amp;utm_content=378010989&amp;_hsenc=p2ANqtz--PWZxvKXZuJGpJPiAt2iN5S3h72TgQyXR2rmaar6ftjGL4HVQ6hQySOMRj4WZktJtbDLz-iKQNuGBQcej1N4GIuMy1sQ&amp;_hsmi=378010989\" style=\"color:#ffffff\" data-unsubscribe=\"true\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"SFRZzEXk\" target=\"_blank\">Unsubscribe</a> <a href=\"https://hs-505301.s.hubspotemail.net/hs/preferences-center/en/page?data=W2nXS-N30h-zFW2t78bG30tzQdW47KhZR30r2ttW2sDbfY25gDPrW4fM9fL4hfcWZW2YxXCl2nSfKbW1Lgxs-2CZZx5W36Cn-J3bbp1PW1XwcDr1SfXlyW3FdXHv3M0F71W3-14Xt3SNCsbW2TJHhy4cHZNVW3XF5gR2p4C19W2MVS0L2KJcXfW1SkhqJ2z_W0zW3GM7H52xXRgYW1Zm8TS2TpSD-W3484vM2zNnF4W22X_yc3D_byvW4t8zqN3NMhfDW2y3mmy2nGkhtW20Z1S62r1skkW2x_gcp1Xt_4hW4mrc_32sZz3dW4fhx8m3ZM7YnW4kK0g_2FzzZzW38n7gq3LM-8HW386tzV4t2GyRW3zkvct2TjpPlW3SJQsc38gP5hW2TvQvp4tt-MKW4pn6bl3F6F0ZW36xkSQ3T3RwgW34Gyy-1Ncm-bW2xNy3w1Ly3XVW2sW7D24mDkkXW1BxHFf47PsJMW1-X-CF2TG9gvW41-y7m2CvzLrW45FNn-4cGPFSW25nrMn2zv06HW45pqfM2FMvXZW2KpNgJ2PSX7zW3h_m9B1Nf1ByW1QyWf03yZ-hzW2-s34q2RNYjLW2FtWjr4fHSKPW2Yyj6L2zNKgfW4h9-TL43HYkPf3M9mc704&amp;utm_source=hs_automation&amp;utm_medium=email&amp;utm_content=378010989&amp;_hsenc=p2ANqtz--PWZxvKXZuJGpJPiAt2iN5S3h72TgQyXR2rmaar6ftjGL4HVQ6hQySOMRj4WZktJtbDLz-iKQNuGBQcej1N4GIuMy1sQ&amp;_hsmi=378010989\" style=\"color:#ffffff\" data-unsubscribe=\"true\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"qjPJqCop\" target=\"_blank\">Manage Preferences</a></span></p>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div></div>\r\n          </td>\r\n        </tr>\r\n      </tbody></table>\r\n    </div>\r\n  \r\n<img src=\"https://c3chr04.na1.hubspotlinks.com/Cto/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJW99fyXZ8fYGwf1z2\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"display:none!important;min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important\"></body></html>','The latest insights and client stories from Grafik, a branding and marketing agency that helps inspire new possibilities.\r\n\r\nView in browser (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz8T5jMY8W6N1X8z6lZ3pkW6hbCkX3Lj8dpW4D13G03XM2RMVQRYTQ2fPHwdW8JC5g38pkjHWW4_XLYK6GRQwCW4VyGS18NMv0FW4VtRwQ5s6wCyW3SpLxn5pG_yDW2Qnrh37PKKrmW2JgT-816sr4jW1LKBpp3Y9VsKW8HF9Hr47n96JW9d6_GR1GkC-nW3FtTKr95M9_mN2mwCg61Mj-hW8FwNR26STxljW982GSx3Z1vmcW3ZQ4WL2bsTxsW1xzd-J3mX56nW2k8jLq3S_2dDW2mpVwP4C_PrbN1rlYypZsFz0W5TKT6m1FQLlCW7V15hj9d5v9QVNFgMs61gSMDV658_N4sF7llW4PvHJk1fVqJNW7k2r9N58jqNtN8ZcH3DRktSFTXXM-82NfZGW1Q60rP7mgBwtW4TN99h58f2hkW4Vj3x11ffNW7W3n7Fw_6LMVn3N2GMxzyZJ1zWW2K_FwQ1NJHX2W4XbWKY4YGxLQW4QjDMQ2z1f_jf7B05Gv04 )\r\n\r\nmantech-newsletter-hero (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz983lcq-W7lCdLW6lZ3mgW2YvxzR27myQJW7nNyrd3qthz-W7Xq1SH7SF5pNW59N6P-1DTPz2W7YsdW75hyVs2Vtz_gg3q6f6fW8lg7fR8CP0mkVlhzxb3R08Y9W2gHRt-1jKLZpVc_f8p2LVBYCW84K-C959nfMcW5_dHhQ4r6rCfW77__231RL-mpW26_rZt4rsvHNW3CDCBB7M5JMTW4lcKfg4jvjWJW89lMpV4JQVrCW7_QgBX5JrRHVW1JYD2P1bjgn-W7Pw7TP82NcXHW44RcKy7KzPK9W8P43BK6H5KSGW6sKlM3650th9W8YyxmC3GFVmCf46tHkF04 )\r\n\r\nAdvancing a legacy mission technology leader\r\n\r\nFollowing its acquisition by Carlyle\'s Global Private Equity, Mantech set out to evolve from an engineering-first systems integrator into a digital-forward national security technology leader. To guide them through a repositioning effort, Mantech turned to Grafik. Our lead strategists and designers helped elevate the brand identity with new messaging, a new brand mantra, refined logo and design vocabulary. Our work honored Mantech’s 50+ year legacy while signaling a future-focused strategy. The refreshed brand came to life internally through employee launch kits and externally through a Metro Center station takeover, generating nearly 2 million impressions in four weeks.\r\n\r\nRead the full case study (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz983lcq-W7lCdLW6lZ3mgW2YvxzR27myQJW7nNyrd3qthz-W7Xq1SH7SF5pNW59N6P-1DTPz2W7YsdW75hyVs2Vtz_gg3q6f6fW8lg7fR8CP0mkVlhzxb3R08Y9W2gHRt-1jKLZpVc_f8p2LVBYCW84K-C959nfMcW5_dHhQ4r6rCfW77__231RL-mpW26_rZt4rsvHNW3CDCBB7M5JMTW4lcKfg4jvjWJW89lMpV4JQVrCW7_QgBX5JrRHVW1JYD2P1bjgn-W7Pw7TP82NcXHW44RcKy7KzPK9W8P43BK6H5KSGW6sKlM3650th9W8YyxmC3GFVmCf46tHkF04 ) to see how Grafik helped position Mantech as a digital-first force ready to meet the mission demands of tomorrow.\r\n\r\nCONTINUE READING\r\n(https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz983lcq-W7lCdLW6lZ3mgW2YvxzR27myQJW7nNyrd3qthz-W7Xq1SH7SF5pNW59N6P-1DTPz2W7YsdW75hyVs2Vtz_gg3q6f6fW8lg7fR8CP0mkVlhzxb3R08Y9W2gHRt-1jKLZpVc_f8p2LVBYCW84K-C959nfMcW5_dHhQ4r6rCfW77__231RL-mpW26_rZt4rsvHNW3CDCBB7M5JMTW4lcKfg4jvjWJW89lMpV4JQVrCW7_QgBX5JrRHVW1JYD2P1bjgn-W7Pw7TP82NcXHW44RcKy7KzPK9W8P43BK6H5KSGW6sKlM3650th9W8YyxmC3GFVmCf46tHkF04 )\r\n\r\nTHE LATEST\r\n\r\n3b29f1c1-0854-4364-a8be-e4797737a03c (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz983lcq-W7lCdLW6lZ3nYW2vT-Kn6PWyb3W5-7ThN42JsTBW1RSflK5PVXc_W3hQ_xx1_5z3XW89wWMw17DcLyW3jwcct1xrGYXW1DQNyR7-q3-0W4qB1XG51tzmKW5Zx_l36BZWR2W8MlcM92mN1KwW8Xqywy3RQMhJW4ySckW6h5HqyW5twN6C6psyDFW7CvpLG1ylHTFW8p6D9z3_MXW4W5yMw5D5T5-fVW8tGJG32wZ68vN4gydtyb-cqCVjP3l75WLm-sN8sg5dM3M9z2W8lMMvP5XgjD2N1YbK016sgPGW7QYqHb8flqzZVqyB0H445m4Zf6CFWJ204 )\r\n\r\nUX that fuels your B2B tech pipeline\r\n\r\nIn tech sales, user experience is no longer just a design issue—it’s a revenue driver. See how a streamlined UX can shorten complex buying cycles, build trust, and influence high-stakes decisions.\r\n\r\nREAD MORE\r\n(https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz983lcq-W7lCdLW6lZ3nYW2vT-Kn6PWyb3W5-7ThN42JsTBW1RSflK5PVXc_W3hQ_xx1_5z3XW89wWMw17DcLyW3jwcct1xrGYXW1DQNyR7-q3-0W4qB1XG51tzmKW5Zx_l36BZWR2W8MlcM92mN1KwW8Xqywy3RQMhJW4ySckW6h5HqyW5twN6C6psyDFW7CvpLG1ylHTFW8p6D9z3_MXW4W5yMw5D5T5-fVW8tGJG32wZ68vN4gydtyb-cqCVjP3l75WLm-sN8sg5dM3M9z2W8lMMvP5XgjD2N1YbK016sgPGW7QYqHb8flqzZVqyB0H445m4Zf6CFWJ204 )\r\n\r\nAMAA blog preview (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz9s3lcq-W7Y8-PT6lZ3ncW3MKKWH20fP5hVYlPYH2Bky_5W4-MnRm2ZkJgzVlxVcY5GqsPHW8mRQ1W47J2m2W11F71J55ZmS-VSNRlQ6GSVqhW1sfdGS8gphj9VMkKST7J-D_PW1v1JYb6k15VzW60f-Hy4G0-WfW47pP-62cCZw2W7HX3DR95HMpRW2vdwpr34gD7yW8sc8wv4DYZ0HN2N5w85H_KwlW3MFKHX8Xktx7N7TsB7rY0mFDW6jWWDY4-hqDqW9bKxMN4cH3_gW4x7MMk6M2vnCW2fqgfb1RFWXHW1WyFfd8xdhRtW1Q6VGT8P1bM4W1Czktq7hqlV6W1Bvcvy2dBghjf2b3jDF04 )\r\n\r\nPositioning your brand to grow and exit\r\n\r\nCMOs navigating mergers and acquisitions face a unique branding challenge: balancing legacy value with future vision. If you’re brand is primed for growth or looking toward an exit, read out takeaways here.\r\n\r\nREAD MORE\r\n(https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz9s3lcq-W7Y8-PT6lZ3ncW3MKKWH20fP5hVYlPYH2Bky_5W4-MnRm2ZkJgzVlxVcY5GqsPHW8mRQ1W47J2m2W11F71J55ZmS-VSNRlQ6GSVqhW1sfdGS8gphj9VMkKST7J-D_PW1v1JYb6k15VzW60f-Hy4G0-WfW47pP-62cCZw2W7HX3DR95HMpRW2vdwpr34gD7yW8sc8wv4DYZ0HN2N5w85H_KwlW3MFKHX8Xktx7N7TsB7rY0mFDW6jWWDY4-hqDqW9bKxMN4cH3_gW4x7MMk6M2vnCW2fqgfb1RFWXHW1WyFfd8xdhRtW1Q6VGT8P1bM4W1Czktq7hqlV6W1Bvcvy2dBghjf2b3jDF04 )\r\n\r\nFlowerLady_600x600 (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz9s3lcq-W7Y8-PT6lZ3nDW8tpJFz6J3-xpW89Mhhj4-gPHmW1cGv9d61MTB9W8pLH833MjKspN29J13mbPggzW96QxCP8D6nZyVY0Mx75gzTTpW6r6Stg3MCJLtW8QpCMQ3pLWdCW6RV3dK8Xwx2SW1Sl6Cf6rLvHHW8Hs5NW2D0XYKW7PLw1_1r5-qWW9bGvcS8y0BgwW3kX-N_93JDv6W5Bvsvp98-1plW1Kh79F4VDyVXW4y973F4x7Z9HW4YLN2M5rQSDVN6pM-d-lk-PYMHTc5P2v2VfW6vG9PM4TZZbfW4mH4-L6C6-8wW3l8JWP99SCwmW8ztmC62BtWqGW7kVWdB4WjYSrf4FqhRR04 )\r\n\r\nModernizing member value to attract tomorrow’s leaders\r\n\r\nTrade associations can’t afford to rest on reputation. To stay relevant, they must modernize their brands, clarify value, and strengthen member trust. Discover the key strategies driving meaningful transformation.\r\n\r\nREAD MORE\r\n(https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz9s3lcq-W7Y8-PT6lZ3nDW8tpJFz6J3-xpW89Mhhj4-gPHmW1cGv9d61MTB9W8pLH833MjKspN29J13mbPggzW96QxCP8D6nZyVY0Mx75gzTTpW6r6Stg3MCJLtW8QpCMQ3pLWdCW6RV3dK8Xwx2SW1Sl6Cf6rLvHHW8Hs5NW2D0XYKW7PLw1_1r5-qWW9bGvcS8y0BgwW3kX-N_93JDv6W5Bvsvp98-1plW1Kh79F4VDyVXW4y973F4x7Z9HW4YLN2M5rQSDVN6pM-d-lk-PYMHTc5P2v2VfW6vG9PM4TZZbfW4mH4-L6C6-8wW3l8JWP99SCwmW8ztmC62BtWqGW7kVWdB4WjYSrf4FqhRR04 )\r\n\r\nGrafik.agency (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz8z3lcq-W69sMD-6lZ3pmW741LvR4vlMvdW3B2m734Jj9wYW82x5Tw2qcs68W1XdB2H6F70j8W6zF0gL7X6TjQW9kFRJX3cBCSmW2QqQz849GdVKW3FZnSd5CFWdpW8cXSfF4-dZJbW2CVp6_5SFK4KW2m3Z3x2TTYC2W3CZWsy5LgL4KW1_5JdN4WrzwBW98Pm9W1pwnqNW2Z0LvY4TFcHwW1lrMnp2cjzxGN1TKKStBg3__W5H5z_S3gk3CpW7ggTRB3zdBjzW4CwmVr4mzKvKf3Prwvj04 )\r\n\r\nLinkedIn (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz8T3lcq-W6N1vHY6lZ3mMW7q1b5r6zJXjVW5cwVbH2Vm6CDW32m66N139S2hW1wmGs72f3TX7W3WVg1K6Qg1xdW12K6Rt8t1xhcW13pnnC4q5sQ9W7cKCc-4ZmWQRW5pHZqR9ldrVCVSkbWG6bMcL-W6Kn3wQ3MRxGRW7NFQd65WVG5vW31X2kS9lgdK6W7x4yNZ5WLKhVW7gSpmr1xDrgKW5pyQkM3Fh6dhW3HWdCK15HZTNW5jvdyd5GPpxRW5Vdpw-84FrQgW4VbdMD5_92f2W8t2JlP8z-C-BW3DdrWk5MkJkXf50cCdj04 )\r\n\r\nInstagram (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz8T3lcq-W6N1vHY6lZ3lZN1G5v_G5ygWjW8RPFb62vQxz_W6_yWVk94CMg4W21CD5Z6VbqNnW6plC_K4x301RW6k4pbY3fp2b3W3w0t112sQCKpN3jD3CttRDYTW7tQCNN3-_JLGN5bnsFMCj2C4W4hJT4S6nVswrN8_JVtt3Y2sGW5QzjSx8x39tSW7_Xjt41QdCF5W92Y9xF4ftJt5W77VKMC3G879kV-hJ-86yG_rQW5y_Dtd7gC-GMW4XMDJq2lhvMVMFdB8Z8_vSTW50fzx41s8ZNmW2Lg36J2Z00mQf8BSBT804 )\r\n\r\nBluesky (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz983lcq-W7lCdLW6lZ3kzW69lcWy64ShH8W4VM9g668KB8qW9knRXq96PqmYW3W3Kf232tb38N25QtDxsMkFkW8HrdJF5TpR-NW65zwFn6bKcfNW5FhCnN6VC_SfN13gypWZd3DTW1fmY1_52QRxPN2mNDWWlp6ZCM33Qfy1CpQLW384YHB3hm7gfW7z8xxG8XnvdNN7MtSCH4c-ccN1vBLmP1m2TmW5zLhkh5FTbK9W17tj5c1vySqSMv6Jt0LLSRYW2hHKs76YydHGW4xBjRq67YvHmW8fhMMh63cm05W8kbK5S8GJ1RPW8MtPjv6CgPC9f3DzRNP04 )\r\n\r\ngrafik-roundup-footer-logo (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VWLH5l4PnL-tW8xWgrZ4ZpDmYW2z6fd_5CVvpJN99fz8z3lcq-W69sMD-6lZ3pmW741LvR4vlMvdW3B2m734Jj9wYW82x5Tw2qcs68W1XdB2H6F70j8W6zF0gL7X6TjQW9kFRJX3cBCSmW2QqQz849GdVKW3FZnSd5CFWdpW8cXSfF4-dZJbW2CVp6_5SFK4KW2m3Z3x2TTYC2W3CZWsy5LgL4KW1_5JdN4WrzwBW98Pm9W1pwnqNW2Z0LvY4TFcHwW1lrMnp2cjzxGN1TKKStBg3__W5H5z_S3gk3CpW7ggTRB3zdBjzW4CwmVr4mzKvKf3Prwvj04 )\r\n\r\n© 2025 Grafik. All rights reserved.\r\n\r\nGrafik, 8045 Leesburg Pike, Suite 503, Vienna,VA,22182,United States,\r\n\r\nUnsubscribe (https://hs-505301.s.hubspotemail.net/hs/preferences-center/en/direct?data=W2nXS-N30h-zFW2t78bG30tzQdW47KhZR30r2ttW2sDbfY25gDPrW4fM9fL4hfcWZW2YxXCl2nSfKbW1Lgxs-2CZZx5W36Cn-J3bbp1PW1XwcDr1SfXlyW3FdXHv3M0F71W3-14Xt3SNCsbW2TJHhy4cHZNVW3XF5gR2p4C19W2MVS0L2KJcXfW1SkhqJ2z_W0zW3GM7H52xXRgYW1Zm8TS2TpSD-W3484vM2zNnF4W22X_yc3D_byvW4t8zqN3NMhfDW2y3mmy2nGkhtW20Z1S62r1skkW2x_gcp1Xt_4hW4mrc_32sZz3dW4fhx8m3ZM7YnW4kK0g_2FzzZzW38n7gq3LM-8HW386tzV4t2GyRW3zkvct2TjpPlW3SJQsc38gP5hW2TvQvp4tt-MKW4pn6bl3F6F0ZW36xkSQ3T3RwgW34Gyy-1Ncm-bW2xNy3w1Ly3XVW2sW7D24mDkkXW1BxHFf47PsJMW1-X-CF2TG9gvW41-y7m2CvzLrW45FNn-4cGPFSW25nrMn2zv06HW45pqfM2FMvXZW2KpNgJ2PSX7zW3h_m9B1Nf1ByW1QyWf03yZ-hzW2-s34q2RNYjLW2FtWjr4fHSKPW2Yyj6L2zNKgfW4h9-TL43HYkPf3M9mc704&_hsenc=p2ANqtz-_iTHd1apoVlAwAPkgbiEozc20FdUGHDwf6Xdtjq6SWNB2GwFsZNUYuyxxEgMQwZPS5KNnbQNuSrukKHcg_81D8qCe5EQ&_hsmi=378010989 ) Manage Preferences (https://hs-505301.s.hubspotemail.net/hs/preferences-center/en/page?data=W2nXS-N30h-zFW2t78bG30tzQdW47KhZR30r2ttW2sDbfY25gDPrW4fM9fL4hfcWZW2YxXCl2nSfKbW1Lgxs-2CZZx5W36Cn-J3bbp1PW1XwcDr1SfXlyW3FdXHv3M0F71W3-14Xt3SNCsbW2TJHhy4cHZNVW3XF5gR2p4C19W2MVS0L2KJcXfW1SkhqJ2z_W0zW3GM7H52xXRgYW1Zm8TS2TpSD-W3484vM2zNnF4W22X_yc3D_byvW4t8zqN3NMhfDW2y3mmy2nGkhtW20Z1S62r1skkW2x_gcp1Xt_4hW4mrc_32sZz3dW4fhx8m3ZM7YnW4kK0g_2FzzZzW38n7gq3LM-8HW386tzV4t2GyRW3zkvct2TjpPlW3SJQsc38gP5hW2TvQvp4tt-MKW4pn6bl3F6F0ZW36xkSQ3T3RwgW34Gyy-1Ncm-bW2xNy3w1Ly3XVW2sW7D24mDkkXW1BxHFf47PsJMW1-X-CF2TG9gvW41-y7m2CvzLrW45FNn-4cGPFSW25nrMn2zv06HW45pqfM2FMvXZW2KpNgJ2PSX7zW3h_m9B1Nf1ByW1QyWf03yZ-hzW2-s34q2RNYjLW2FtWjr4fHSKPW2Yyj6L2zNKgfW4h9-TL43HYkPf3M9mc704&_hsenc=p2ANqtz-_iTHd1apoVlAwAPkgbiEozc20FdUGHDwf6Xdtjq6SWNB2GwFsZNUYuyxxEgMQwZPS5KNnbQNuSrukKHcg_81D8qCe5EQ&_hsmi=378010989 )',0,0,0,0,0,0,'2025-09-25 15:30:09','2025-12-09 19:29:06','2025-12-09 19:29:06','2025-12-09 19:29:06',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(789,4,' <BN7PR04MB4259107CE256BBCA3A62605DA81FA@BN7PR04MB4259.namprd04.prod.outlook.com>',NULL,NULL,'RE: Introduction - Bradenton Area EDC','elizabethc@bradentonareaedc.com','Elizabeth Cordes','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\nspan.EmailStyle18\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Calibri\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Hi Nathan,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">It is a pleasure to e-meet both of you, Brian and Rick!<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Let’s do a call on Wednesday, October 1 at 10am? If a site has already been selected for the project, we are happy to meet you at the site as well. Please let me know what\r\n works best for you.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Kindest regards,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:16.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#0079A1\">Elizabeth Cordes</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:14.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Director of Business Recruitment &amp; Expansion</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:14.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#212121\">Bradenton Area Economic Development Corporation</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkMgQprkW6N3_xK6lZ3lGW1MLz698CDR_dW7KlxwB1Dm18nW7ddBb_2MZrt3MSCRlbwgp39W4Q9-RD2vRWG1W8-Y5LS3HSXLwW8nCVqk5fVTFKW3JnxyC8hRCJDN26VyccGVNCWW4RVC_Q32W7YcN46VqW-CLVf7W4G3fH24MdWskW8jWC6J3vYdXjW1rnH5J70d1WmW8Vm3Dw7M9vVfW3k7SZr7K581tW2d_tNx2blRW1W8vQFPg194f1pW745Sc07dDh2QW7x1HFq5drc8gW4_0gCq3JlNskN49WTRsV8MzzVXJbgf80mlcyW1fz5YY3Mp1LkW4Vt5v16zLqRvW6Wmw417BztgKW96rr5P6-BWxkW1p_vxh2Gd8D1W8mmfdQ6Wtfc2Vztx7x2bJ1VzVwLzrY55KqyBW8Zh09M3hVZCrN1LyY3Mhx7F0W7RdCs9983zhbW5Tt4sK24Ys9YW5GfD5y1ngpSHW6hBzJQ7yzm11W6nFQ0z6yW9L_W7YtGCm5Bl1YBW9cndyy27mBB5W9dl4yl6b8sJ6W3kN-TJ3DLF3CV-FZzZ3pzjBtN8rQXxHpfbyBW78VjqL39Pzk8W2z0_MZ7kS4h6W9jL6m_76R32wW8KC4vj3t2PX5W86MgfS2KTrMHW6jp1FL65D_4nW31GjFc5xY1WRW6bhj838NG8HgW83tWzt6CGyszW2VlvRx43HfR1W60vb6x9jHlQVW3ntlmv6NvJtqW56y5jF5wBR5MVzfVmv8KYT3WW2f1jb-7z4WksW5zWMfZ94ylf5VLN88z4Lbcv3W7Mr3HX7lWWF1W2hYvZG5j5wQFW4N1JJx68TfQZW3TxTP54JTNLFW32s64R1R-42rW3YWbcZ6XswB-W70gXks28TBPjV_d0Qd7NJVbxW9dbNJL1H6Z8DVbbYwQ6YRvx3W2nGwd92-rGl1W7sLv5-65rRV2N3MP3VDwCqmQW52w7p94qkb4PW77n0jq6sZXgKW7_4S-w1CNV9LW35nSt63rmN6zN2NLFjfjGGZcW45fM4R5mTyXDW5ksmqV48GnLSMMx_vhnnrDsW83lSym92TksvVnfRGf1VFgDBW4Kj_wK4ZfT5VW1vKY7C4Jr27XW5GTQrZ337FzmW65cHrc7WMPrDW1M52px6ZLD7jW18Bb0h4hbSbTW7ChQsX2NLRHzW21RX7s2Wq6jtW17m1n36M5q1sW6YmgLx6NMKTjW7SXzMF2xw92PN2CBvBvQk16-W6kbJ8S2-PcYzW1SZzhN8dL8L0VWK0dh8kzNGMV1MBJ73Rx24XN7wx5-lNq1QqW7Hq2xB6xsdzfW42WCnx7Dd08FW6fqVGq7mkQhsV22Gmc1c2JWkW5dPNFD1jMnRyW34GKJz5H1Q25W1HfcFq3mGM5hN2LtnF4s2KC9W59smrS7RtrBKVdDyGB3wJ_kCW5myTxJ3mDDN0W2qy3bG4pWlpjW2rYrlS8W-QDzW86rRNL2y9YKHW2xtb193SWTbPW5dhxyk1RyqZxW2Y2DCC6q6FJqf8_yFYH04\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0563C1\">5840\r\n 26<sup>th</sup> Street West, 26 West Center, Suite 232, Bradenton, FL 34207</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0079A1\">Email:</span></b><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">\r\n</span><a href=\"mailto:ElizabethC@BradentonAreaEDC.com\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0563C1\">ElizabethC@BradentonAreaEDC.com</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0079A1\">Phone:&nbsp;</span></b><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">941-803-9033</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0079A1\">Cell:&nbsp;</span></b><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">716-908-6134<b><span style=\"color:black\"><br>\r\n</span></b></span><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3nXN7tdxLBlNx75W8xTw1W5DhfbhW441nBQ5flSdWW1W5VB84k1hq6W5DP1bD7-6pDdN3JJXHKDQhG6W6F8Z0v1DPL-rW5XLxSr10k5y6W4X4MJk7Lg70zW48HB187YtmJ2W2LbV_r9gRyPkW4ZWZHp93RVGKW6vSKF09lmCQQN36f4yhCXRKpW7FXrTY7qRgjrN8lSmJWC2plBW4fk0J61SNM-wW956br920QrGTW7fy1bt7_hznnN4y6W8bWkRTPW6XcKtD4Bm82tVSDv9m3Wq6lrf6S0G_q04\" title=\"http://www.bradentonareaedc.com/\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:purple\">BradentonAreaEDC.com</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3pVW3Xzpfn1qRjLMW5Yhxmp1Pxt3DW59LYYP267B9QV5LZ0Q2PN0dpN7tFxHjxQKX5W38_Rnl3Q86yyW91Q5hg2WKf4lW8m8r5231JtVNW4YG5RP1xk_M6W9lzZRb2_NGm5W8FhBpv73B4GrW6dPPGS35gv1tW6WD8Qs96Q9rhW1q0WT03TFlBpW4b67Dz2BfvjKW3p8F4f2bWXvpW1rg8tt2PTPhvW5p3VMj7BsWWDW6ZF60-3VHMcdW6sxRW9927zRGW48Nrc64DdFMjW5t24ZP5WzdCXf6V22Cs04\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width:.3666in;height:.3666in\" id=\"Picture_x0020_49\" src=\"cid:image001.png@01DC2E12.536DDC30\"></span></a>&nbsp;&nbsp;&nbsp;&nbsp;\r\n<a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3p0VN1MnL7r2s16N48wVx_W_rwBW55QSbn2s3NhpW1XFW5C2w5y44W1PkDx646JStpW9d_L9p2rCZVHW7cSBmH7VJ3X6W3g6rSx5NT4sBW2N1myD4DD9jvW1mTlH43YjvBJW8K-CNL1MXzzzW71xrwN2rYQ4KW5ZzYJy2fktV0W15DrMn41FKyXN241jWrtZQfJW55jlpX1DVFQHV8LQgz4nPLpvW23dQM9434CD3W208qVY1LjDnQW4vDQ6N1ftljcW2FjLVy6hX9LCW8dTH516gWwpgW38_z1X87VcmbN13hn7WNVP-NdCTyFW04\">\r\n<span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"34\" height=\"34\" style=\"width:.3583in;height:.3583in\" id=\"Picture_x0020_48\" src=\"cid:image002.png@01DC2E12.536DDC30\"></span></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jll2-6qcW7Y8-PT6lZ3lNW5Z3Yrg9cmyL9W6bY7rJ24YzJdW1Gn3Lc2_xDMgW3JK3Jm1mS-yJW5Q_FYz6PbJv_W19PL1C2y4cJvW868dxG92wPvQW4mLRwM8BBXcDW1WgVZF4KjBnqW6y18KG67qFC5W8Xb-Dy1YXlBpW6h5hm-5P4cV8W6mKr4122QG3kW2ZCL8M1dZq2NW3Kt4hD57RNZRW8r3w_C6l8YMPW61xcm51t8VBQW4nhDL_288X9NN2r6nwRwRM-QW3RZ6SD3r4Y_qN68BMcNhDd2vW53Cw_22CQ3wfW3gYHgq8C8xp1W6vFb385DpXx1W3Mr_yW2XkGgjW6RB88k3DRG7Yf55M55g04\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width:.3666in;height:.3666in\" id=\"Picture_x0020_47\" src=\"cid:image003.png@01DC2E12.536DDC30\"></span></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3kHW6Ht2nV36fbHJW4jPksh1wlSZYF7pqflbN198W8VvCN21FZ8CBW7MDjP24DG4YPW1ky1M-61fVQlW3F2s7-7f6_4VW2fHfk64bLm7gW7MWm4-2pVY5qW6d7HWS1tSlh2W5YGW4W36H2T7W7G_wWp6hdqsGW30RV8L3XRXbkW97ch1r3SlYC9Vl0RQW9h45klW8l5bN-7bjfhXW7LNLgV70ZzVtW3q8kVr4djzMcW8Dt-6b2KDZymW6H0yT_7bKcr0W2GV-qK8Qx6JTW8F1YwK6NCMKFW9jmKpd8JrMDNVNdxz01fGY3Wf5d_9ls04\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width:.3666in;height:.3666in\" id=\"Picture_x0020_46\" src=\"cid:image004.png@01DC2E12.536DDC30\"></span></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3m9Vb4NYS66VRVXW8XybLC8J19scW3P_pxs5z0_nSN6rWPfdDm2trW14CCRL40V8DXW90NXRy53n14DW4nqsQX9hGhtyMqPf07rTGC3VWZkXq4_FcXRW43vCwk24vftVW8wYHdZ74qM9VW60NppJ2pMvFhW5yBSxv4BsPTSW7wbR6g6y_bRSW9b47nx1Xvz74W4Mr6v096VQv8W6kJp7m5TM0W6W1by-0h8FBjDrW8j0_3649DbZVTjLsC1-07M7W1PHMNx6qWZbcW8RM1MV4T3p6zf6tVq5F04\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width:.3666in;height:.3666in\" id=\"Picture_x0020_45\" src=\"cid:image005.png@01DC2E12.536DDC30\"></span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Nathan Staron &lt;Nathan@lithiumbatterycompany.com&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, September 24, 2025 5:47 PM<br>\r\n<b>To:</b> Elizabeth Cordes &lt;elizabethc@bradentonareaedc.com&gt;; Yanet Lopez &lt;yanetl@bradentonareaedc.com&gt;<br>\r\n<b>Cc:</b> Kevin Campos &lt;Kcampos@tampabayedc.com&gt;; Brian Stufflebean &lt;brian@mavrix.one&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Introduction - Bradenton Area EDC<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">Good Afternoon Elizabeth,<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Thank you for your prompt response and for the kind welcome. It was a pleasure e-meeting you as well.<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">I would like to introduce Brian Stufflebean and Rick Mislan, who are the project leads for our expansion into Parrish, FL. They will be instrumental in the development of our new location, and I believe it would be beneficial for them to\r\n connect with you directly.<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Regarding setting up a meeting, I agree that it would be valuable to discuss the project further. We would be happy to coordinate a time that works best for everyone next week. As you mentioned, Tuesday and Wednesday work well for you,\r\n and we can certainly align with that.<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Please let us know what specific times on Tuesday or Wednesday next week would be most convenient for you and Yanet, and we will make sure to schedule a call or meeting accordingly. We look forward to the opportunity to collaborate.<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\" style=\"border:solid #E2E2E2 1.0pt;padding:2.25pt 6.0pt 6.0pt 6.0pt;border-radius:5px\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mKW8HRTpJ4J04PDW37wl0Y7Y-_fZW186VyT5_Db6GW95yYQ_288R19W7yqL2t6Mn_HhW6lB4CJ12klSPW3RB7pV6f--KMW3-hGWf5kwhWdW4yGKrV5DdXLjW126l8-3Q88_4W37t4-W88ptC-W6CKNr_6lK9dXN2C3v7YGny2fW5pfR6y6Wmk7gW2Jw-Zt2YB6mhW4xkqXt65s0Z7W40_Tb_3pvYLqW1rl31446rTRSW8MtJH46sXcSpW83x4sW4bnWqqW4Q4WPs8Yk0QkW57tT_L208xMff6pFMkb04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"23\" style=\"width:.25in;height:.2416in\" id=\"_x0000_i1040\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\"></span></a><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3l4N6VvrVBKF5WQW56Kg9c5SF2Q9N564SNPBmh1TW8ZB8KN1X9TSRW6yR9Tl4fNQGtW7vXYHz8VhMdxW8P-Pv15DC-z5W1-2MP34KKZDwW2Bzqfx8N3Y87W5C7l8r2sDX99W99mblX8dcgfbW1sq5pQ9dY3XmW7rNPy74p-xTGVJ1Bdy1nF-sNW4wRT_b70hm13W6pC7YD6nMgCdW93GyNY2yFCtPMJ9l7y4pm1DW2FWJzD6mCH9WW6XtVNG10nYSpW1kfp243YNJjlW1T19FR46hlgHf163jHC04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"22\" style=\"width:.25in;height:.2333in\" id=\"_x0000_i1039\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\"></span></a><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3pQN1S45LCmGrz0VcB7FK39dxN7Vf2srt8bQhcQVsqC565DgRPrW50dtWG5z70s7W8CWskF6ZmwmgVTGb-L6kzlK6VDW3tf8N_1v2W3gG3Z-2_FHgWW6L9lFV46ycJtW3B9D3j2zNpz1W6nfLWy3c8gyrW605trZ4trMK0W7rpP1W7_5fs7W77NH621f9qXGW1trpSF6dM7XcW8wYnNs8YJ2jxW19gv0v4cPy7LW2bm28W787m0jVhGyP67Cm9ZZW2xVy6x7tFlgkW5d8Tr-385pFRW6wY-hZ6tzSG6W3zndmc7VQ1bDdNR_Yj04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"22\" style=\"width:.25in;height:.2333in\" id=\"_x0000_i1038\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\"></span></a><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3pdW4YTQLY5WC4FNVPHSMC8n4CsgW8s6rF98BLQDpW7LR_317mmrlkW8_xpXq3GCr04VJB88M4Ntt_9W4-wyQx4mJQkJW62_k4h2xdHh4VWQZkb57wrjnW347vg45zLB2TVtW9wQ3WcKHTVVBqF630gvjSW8pZZZT7p7QRRW92gZhs5_kZ3mW4HjWzV7L7QqkW99S_C51wPDYjW32s4NY7Nv26hW98ZwqH2YCCcpW60_nqt4YXC4kN5N7PPjDTmrTW8p44Jl7-2NlMW5B2v_r1tkzbvW4x1Dl87YybzXVW8vcd5bgCtKf2WX11g04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"22\" style=\"width:.25in;height:.2333in\" id=\"_x0000_i1037\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\"></span></a><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3pSW5Bf5Yd4rCPHdW8sMtW98BdBmgW27tHg36KmVF-W7N14zZ5wwbgXW3p3b4l7b-ZwNW23KPpR5SrkrpW5mllYr3G30xcW6Qz5zR2Wp_TVVq1JYY2BNlnVW8YjKtl1RwZLHW3g2FfH3_83HKN9kHm1lXSPvsW2vB8Xd23NX-qW4gGYnB7nzJSNVTYdPL3Jk7tMW8MyGXl2NrqhPW4zsBN45dwZlDW7VZ4xH85PgxxW80cy4l93n5ZJW2cf9QX5RdsYhN2FHcYZJDMljW7tJ69X5XWzm5W6_GDM65_1MJqW6pFSHN7GGsV5f4NNQbW04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"22\" style=\"width:.25in;height:.2333in\" id=\"_x0000_i1036\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\"></span></a><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"8\" style=\"width:6.0pt;padding:0in 0in 0in 0in;display:revert\">\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\">&nbsp;<o:p></o:p></span></p>\r\n</td>\r\n<td valign=\"top\" style=\"border:solid #E2E2E2 1.0pt;padding:11.25pt 11.25pt 11.25pt 11.25pt;border-radius:5px\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"width:100.0%;border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"width:100.0%;border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mKW8HRTpJ4J04PDW37wl0Y7Y-_fZW186VyT5_Db6GW95yYQ_288R19W7yqL2t6Mn_HhW6lB4CJ12klSPW3RB7pV6f--KMW3-hGWf5kwhWdW4yGKrV5DdXLjW126l8-3Q88_4W37t4-W88ptC-W6CKNr_6lK9dXN2C3v7YGny2fW5pfR6y6Wmk7gW2Jw-Zt2YB6mhW4xkqXt65s0Z7W40_Tb_3pvYLqW1rl31446rTRSW8MtJH46sXcSpW83x4sW4bnWqqW4Q4WPs8Yk0QkW57tT_L208xMff6pFMkb04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"170\" height=\"34\" style=\"width:1.775in;height:.3583in\" id=\"_x0000_i1035\" src=\"https://app.customesignature.com/upload/signature/11122/11122.png\"></span></a><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 7.5pt 0in\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:11.25pt 0in 0in 0in\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:15.0pt;mso-ligatures:standardcontextual\">NATHAN A. STARON</span></b><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td style=\"padding:0in 0in 0in 3.75pt\">\r\n<p class=\"MsoNormal\"><img border=\"0\" width=\"15\" height=\"15\" style=\"width:.1583in;height:.1583in\" id=\"_x0000_i1034\" src=\"https://app.customesignature.com/images/verify.gif\"><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;mso-ligatures:standardcontextual\">Founder / CEO</span><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:9.0pt;mso-ligatures:standardcontextual\">Lithium Battery Company</span></b><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:9.0pt;mso-ligatures:standardcontextual\">Cell Phone</span></b><span style=\"mso-ligatures:standardcontextual\">&nbsp;</span><a href=\"tel:813-504-0074\" target=\"_blank\"><span style=\"font-size:9.0pt;color:black;mso-ligatures:standardcontextual\">813-504-0074</span></a><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:9.0pt;mso-ligatures:standardcontextual\">Phone</span></b><span style=\"mso-ligatures:standardcontextual\">&nbsp;</span><a href=\"tel:844-GET-LITHIUM\" target=\"_blank\"><span style=\"font-size:9.0pt;color:black;mso-ligatures:standardcontextual\">844-GET-LITHIUM</span></a><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\"><span style=\"color:black;mso-ligatures:standardcontextual\">Nathan@lithiumbatterycompany.com</span></a><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in 0in\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in;display:flex\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3pcW3GJtyC7zkdnwW6y_zVy4sQ_wKW694R1T3VGfDFW3lZf7J3lRFPVW3xgqsm8frxF0W1LvnmW6fNxShW2XbVq58rwRvVVXTRl72kL8bTW5M3pDZ81G679W4t6LFR6B0P91W8dntfw5kFdK4W7KGF9W6rkSBcMF_l5mcqJ47W6ykXW53DfLJFW4HLKBn65J0LBW4CjHd66XSNgzN6PzrJgKTJs9VK9KwV3lPL88N32G8k_Qc8tXW78dCbp1Vqc0fW7YvzCP140tqwW70pTCh5hLZzvW4g4V1T6YfxTlW2mwQ9N6rP6GCf6Y7n0M04\" target=\"_blank\"><b><span style=\"font-size:9.0pt;color:white;background:black;mso-ligatures:standardcontextual\">Schedule\r\n A Zoom</span></b></a><b><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td style=\"padding:0in 0in 0in 11.25pt;display:revert\">\r\n<div>\r\n<p class=\"MsoNormal\"><img border=\"0\" width=\"140\" height=\"140\" style=\"width:1.4583in;height:1.4583in\" id=\"_x0000_i1033\" src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\"><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><img border=\"0\" width=\"140\" height=\"140\" style=\"width:1.4583in;height:1.4583in\" id=\"_x0000_i1032\" src=\"https://app.customesignature.com/upload/signature/gifs/giphyy-1.gif\"><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" style=\"padding:0in 0in 0in 0in\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:7.5pt 0in 0in 0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">On Wed, Sep 24, 2025 at 3:54<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM Elizabeth Cordes &lt;<a href=\"mailto:elizabethc@bradentonareaedc.com\">elizabethc@bradentonareaedc.com</a>&gt; wrote:<o:p></o:p></p>\r\n</div>\r\n<blockquote style=\"border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Hi Kevin,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Thank you very much for the introduction! It is a pleasure to e-meet you, Nathan. I would very much like to set up\r\n a call or meeting to discuss your project further. Please let me know a day and time that would work best for you. We have good availability Tuesday and Wednesday next week. I look forward to working with you.</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Kindest regards,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:16.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#0079A1\">Elizabeth Cordes</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Director of Business Recruitment &amp; Expansion</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:14.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#212121\">Bradenton Area Economic Development Corporation</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkMgQprkW6N3_xK6lZ3lGW1MLz698CDR_dW7KlxwB1Dm18nW7ddBb_2MZrt3MSCRlbwgp39W4Q9-RD2vRWG1W8-Y5LS3HSXLwW8nCVqk5fVTFKW3JnxyC8hRCJDN26VyccGVNCWW4RVC_Q32W7YcN46VqW-CLVf7W4G3fH24MdWskW8jWC6J3vYdXjW1rnH5J70d1WmW8Vm3Dw7M9vVfW3k7SZr7K581tW2d_tNx2blRW1W8vQFPg194f1pW745Sc07dDh2QW7x1HFq5drc8gW4_0gCq3JlNskN49WTRsV8MzzVXJbgf80mlcyW1fz5YY3Mp1LkW4Vt5v16zLqRvW6Wmw417BztgKW96rr5P6-BWxkW1p_vxh2Gd8D1W8mmfdQ6Wtfc2Vztx7x2bJ1VzVwLzrY55KqyBW8Zh09M3hVZCrN1LyY3Mhx7F0W7RdCs9983zhbW5Tt4sK24Ys9YW5GfD5y1ngpSHW6hBzJQ7yzm11W6nFQ0z6yW9L_W7YtGCm5Bl1YBW9cndyy27mBB5W9dl4yl6b8sJ6W3kN-TJ3DLF3CV-FZzZ3pzjBtN8rQXxHpfbyBW78VjqL39Pzk8W2z0_MZ7kS4h6W9jL6m_76R32wW8KC4vj3t2PX5W86MgfS2KTrMHW6jp1FL65D_4nW31GjFc5xY1WRW6bhj838NG8HgW83tWzt6CGyszW2VlvRx43HfR1W60vb6x9jHlQVW3ntlmv6NvJtqW56y5jF5wBR5MVzfVmv8KYT3WW2f1jb-7z4WksW5zWMfZ94ylf5VLN88z4Lbcv3W7Mr3HX7lWWF1W2hYvZG5j5wQFW4N1JJx68TfQZW3TxTP54JTNLFW32s64R1R-42rW3YWbcZ6XswB-W70gXks28TBPjV_d0Qd7NJVbxW9dbNJL1H6Z8DVbbYwQ6YRvx3W2nGwd92-rGl1W7sLv5-65rRV2N3MP3VDwCqmQW52w7p94qkb4PW77n0jq6sZXgKW7_4S-w1CNV9LW35nSt63rmN6zN2NLFjfjGGZcW45fM4R5mTyXDW5ksmqV48GnLSMMx_vhnnrDsW83lSym92TksvVnfRGf1VFgDBW4Kj_wK4ZfT5VW1vKY7C4Jr27XW5GTQrZ337FzmW65cHrc7WMPrDW1M52px6ZLD7jW18Bb0h4hbSbTW7ChQsX2NLRHzW21RX7s2Wq6jtW17m1n36M5q1sW6YmgLx6NMKTjW7SXzMF2xw92PN2CBvBvQk16-W6kbJ8S2-PcYzW1SZzhN8dL8L0VWK0dh8kzNGMV1MBJ73Rx24XN7wx5-lNq1QqW7Hq2xB6xsdzfW42WCnx7Dd08FW6fqVGq7mkQhsV22Gmc1c2JWkW5dPNFD1jMnRyW34GKJz5H1Q25W1HfcFq3mGM5hN2LtnF4s2KC9W59smrS7RtrBKVdDyGB3wJ_kCW5myTxJ3mDDN0W2qy3bG4pWlpjW2rYrlS8W-QDzW86rRNL2y9YKHW2xtb193SWTbPW5dhxyk1RyqZxW2Y2DCC6q6FJqf8_yFYH04\" target=\"_blank\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0563C1\">5840\r\n 26<sup>th</sup> Street West, 26 West Center, Suite 232, Bradenton, FL 34207</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0079A1\">Email:</span></b><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">\r\n</span><a href=\"mailto:ElizabethC@BradentonAreaEDC.com\" target=\"_blank\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0563C1\">ElizabethC@BradentonAreaEDC.com</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0079A1\">Phone:&nbsp;</span></b><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">941-803-9033</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0079A1\">Cell:&nbsp;</span></b><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">716-908-6134<b><span style=\"color:black\"><br>\r\n</span></b></span><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3nXN7tdxLBlNx75W8xTw1W5DhfbhW441nBQ5flSdWW1W5VB84k1hq6W5DP1bD7-6pDdN3JJXHKDQhG6W6F8Z0v1DPL-rW5XLxSr10k5y6W4X4MJk7Lg70zW48HB187YtmJ2W2LbV_r9gRyPkW4ZWZHp93RVGKW6vSKF09lmCQQN36f4yhCXRKpW7FXrTY7qRgjrN8lSmJWC2plBW4fk0J61SNM-wW956br920QrGTW7fy1bt7_hznnN4y6W8bWkRTPW6XcKtD4Bm82tVSDv9m3Wq6lrf6S0G_q04\" target=\"_blank\" title=\"http://www.bradentonareaedc.com/\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:purple\">BradentonAreaEDC.com</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3pVW3Xzpfn1qRjLMW5Yhxmp1Pxt3DW59LYYP267B9QV5LZ0Q2PN0dpN7tFxHjxQKX5W38_Rnl3Q86yyW91Q5hg2WKf4lW8m8r5231JtVNW4YG5RP1xk_M6W9lzZRb2_NGm5W8FhBpv73B4GrW6dPPGS35gv1tW6WD8Qs96Q9rhW1q0WT03TFlBpW4b67Dz2BfvjKW3p8F4f2bWXvpW1rg8tt2PTPhvW5p3VMj7BsWWDW6ZF60-3VHMcdW6sxRW9927zRGW48Nrc64DdFMjW5t24ZP5WzdCXf6V22Cs04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width:.3666in;height:.3666in\" id=\"m_-8707086132752645063Picture_x0020_49\" src=\"cid:image001.png@01DC2E12.536DDC30\"></span></a>&nbsp;&nbsp;&nbsp;&nbsp;\r\n<a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3p0VN1MnL7r2s16N48wVx_W_rwBW55QSbn2s3NhpW1XFW5C2w5y44W1PkDx646JStpW9d_L9p2rCZVHW7cSBmH7VJ3X6W3g6rSx5NT4sBW2N1myD4DD9jvW1mTlH43YjvBJW8K-CNL1MXzzzW71xrwN2rYQ4KW5ZzYJy2fktV0W15DrMn41FKyXN241jWrtZQfJW55jlpX1DVFQHV8LQgz4nPLpvW23dQM9434CD3W208qVY1LjDnQW4vDQ6N1ftljcW2FjLVy6hX9LCW8dTH516gWwpgW38_z1X87VcmbN13hn7WNVP-NdCTyFW04\" target=\"_blank\">\r\n<span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"34\" height=\"34\" style=\"width:.3583in;height:.3583in\" id=\"m_-8707086132752645063Picture_x0020_48\" src=\"cid:image002.png@01DC2E12.536DDC30\"></span></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jll2-6qcW7Y8-PT6lZ3lNW5Z3Yrg9cmyL9W6bY7rJ24YzJdW1Gn3Lc2_xDMgW3JK3Jm1mS-yJW5Q_FYz6PbJv_W19PL1C2y4cJvW868dxG92wPvQW4mLRwM8BBXcDW1WgVZF4KjBnqW6y18KG67qFC5W8Xb-Dy1YXlBpW6h5hm-5P4cV8W6mKr4122QG3kW2ZCL8M1dZq2NW3Kt4hD57RNZRW8r3w_C6l8YMPW61xcm51t8VBQW4nhDL_288X9NN2r6nwRwRM-QW3RZ6SD3r4Y_qN68BMcNhDd2vW53Cw_22CQ3wfW3gYHgq8C8xp1W6vFb385DpXx1W3Mr_yW2XkGgjW6RB88k3DRG7Yf55M55g04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width:.3666in;height:.3666in\" id=\"m_-8707086132752645063Picture_x0020_47\" src=\"cid:image003.png@01DC2E12.536DDC30\"></span></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3kHW6Ht2nV36fbHJW4jPksh1wlSZYF7pqflbN198W8VvCN21FZ8CBW7MDjP24DG4YPW1ky1M-61fVQlW3F2s7-7f6_4VW2fHfk64bLm7gW7MWm4-2pVY5qW6d7HWS1tSlh2W5YGW4W36H2T7W7G_wWp6hdqsGW30RV8L3XRXbkW97ch1r3SlYC9Vl0RQW9h45klW8l5bN-7bjfhXW7LNLgV70ZzVtW3q8kVr4djzMcW8Dt-6b2KDZymW6H0yT_7bKcr0W2GV-qK8Qx6JTW8F1YwK6NCMKFW9jmKpd8JrMDNVNdxz01fGY3Wf5d_9ls04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width:.3666in;height:.3666in\" id=\"m_-8707086132752645063Picture_x0020_46\" src=\"cid:image004.png@01DC2E12.536DDC30\"></span></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3m9Vb4NYS66VRVXW8XybLC8J19scW3P_pxs5z0_nSN6rWPfdDm2trW14CCRL40V8DXW90NXRy53n14DW4nqsQX9hGhtyMqPf07rTGC3VWZkXq4_FcXRW43vCwk24vftVW8wYHdZ74qM9VW60NppJ2pMvFhW5yBSxv4BsPTSW7wbR6g6y_bRSW9b47nx1Xvz74W4Mr6v096VQv8W6kJp7m5TM0W6W1by-0h8FBjDrW8j0_3649DbZVTjLsC1-07M7W1PHMNx6qWZbcW8RM1MV4T3p6zf6tVq5F04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width:.3666in;height:.3666in\" id=\"m_-8707086132752645063Picture_x0020_45\" src=\"cid:image005.png@01DC2E12.536DDC30\"></span></a><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Kevin Campos &lt;</span><a href=\"mailto:Kcampos@tampabayedc.com\" target=\"_blank\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Kcampos@tampabayedc.com</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, September 24, 2025 11:44 AM<br>\r\n<b>To:</b> Nathan Staron &lt;</span><a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">nathan@lithiumbatterycompany.com</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;;\r\n Yanet Lopez &lt;</span><a href=\"mailto:yanetl@bradentonareaedc.com\" target=\"_blank\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">yanetl@bradentonareaedc.com</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;; Elizabeth\r\n Cordes &lt;</span><a href=\"mailto:elizabethc@bradentonareaedc.com\" target=\"_blank\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">elizabethc@bradentonareaedc.com</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;<br>\r\n<b>Subject:</b> Introduction - Bradenton Area EDC</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Hello Nathan,\r\n<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">As discussed, I wanted to connect to the EDC in Manatee County for your Parrish, FL location.\r\n<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"mailto:yanetl@bradentonareaedc.com\" target=\"_blank\"><span style=\"text-decoration:none\">@yanetl@bradentonareaedc.com</span></a> and\r\n<a href=\"mailto:elizabethc@bradentonareaedc.com\" target=\"_blank\"><span style=\"text-decoration:none\">@elizabethc@bradentonareaedc.com</span></a> thanks for taking my call. Could you connect with Nathan Staron when you have a chance? I have included him on this\r\n email and they are expanding into that area. <o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;background:white\">\r\n<b><span style=\"font-size:11.0pt;font-family:&quot;Times New Roman&quot;,serif;color:#538135\">Kevin Campos, FCWP</span></b><span style=\"font-size:14.0pt;font-family:&quot;Times New Roman&quot;,serif;color:#1F497D\"><br>\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\">ECONOMIC DEVELOPMENT MANAGER<br>\r\n</span><b><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif;color:#538135\">TAMPA BAY ECONOMIC DEVELOPMENT COUNCIL</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;background:white\">\r\n<span style=\"font-size:9.0pt;font-family:&quot;Times New Roman&quot;,serif;color:#1F497D\">101 E. Kennedy Blvd., Suite 2000, Tampa, FL 33602</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;background:white\">\r\n<b><span lang=\"PT-BR\" style=\"font-size:9.0pt;font-family:&quot;Times New Roman&quot;,serif;color:#538135\">O:</span></b><span lang=\"PT-BR\" style=\"font-size:9.0pt;font-family:&quot;Times New Roman&quot;,serif;color:#1F497D\">&nbsp;813.518.2662 I\r\n</span><b><span lang=\"PT-BR\" style=\"font-size:9.0pt;font-family:&quot;Times New Roman&quot;,serif;color:#538135\">M</span></b><span lang=\"PT-BR\" style=\"font-size:9.0pt;font-family:&quot;Times New Roman&quot;,serif;color:#1F497D\">: 813.763.0307</span><span lang=\"PT-BR\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;background:white\">\r\n<span style=\"color:black\"><a href=\"mailto:kcampos@tampabayedc.com\" target=\"_blank\"><span lang=\"PT-BR\" style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">kcampos@tampabayedc.com</span></a></span><span lang=\"PT-BR\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;background:white\">\r\n<span style=\"color:black\"><img border=\"0\" width=\"320\" height=\"130\" style=\"width:3.3333in;height:1.35in\" id=\"Picture_x0020_1\" src=\"cid:image006.png@01DC2E12.536DDC30\"></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n<p class=\"MsoNormal\"><img border=\"0\" width=\"1\" height=\"1\" style=\"width:.0083in;height:.0083in\" id=\"_x0000_i1025\" src=\"https://d152-C04.na1.hs-sales-engage.com/Cto/V+23284/d152-C04/R5R8b49ndN6J62ww2fJvtW1N4Kn33F4xTzW3BNN5Z1X0F7ZW1Gy6Bh3LCy1vW20Wx_43DN7vHW3K2R1w1V0Nlnn1V3ftj4W1\"><o:p></o:p></p>\r\n</div>\r\n</body>\r\n</html>\r\n','Hi Nathan,\r\n\r\nIt is a pleasure to e-meet both of you, Brian and Rick!\r\n\r\nLet’s do a call on Wednesday, October 1 at 10am? If a site has already been selected for the project, we are happy to meet you at the site as well. Please let me know what works best for you.\r\n\r\nKindest regards,\r\n\r\nElizabeth Cordes\r\nDirector of Business Recruitment & Expansion\r\nBradenton Area Economic Development Corporation\r\n5840 26th Street West, 26 West Center, Suite 232, Bradenton, FL 34207<https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkMgQprkW6N3_xK6lZ3lGW1MLz698CDR_dW7KlxwB1Dm18nW7ddBb_2MZrt3MSCRlbwgp39W4Q9-RD2vRWG1W8-Y5LS3HSXLwW8nCVqk5fVTFKW3JnxyC8hRCJDN26VyccGVNCWW4RVC_Q32W7YcN46VqW-CLVf7W4G3fH24MdWskW8jWC6J3vYdXjW1rnH5J70d1WmW8Vm3Dw7M9vVfW3k7SZr7K581tW2d_tNx2blRW1W8vQFPg194f1pW745Sc07dDh2QW7x1HFq5drc8gW4_0gCq3JlNskN49WTRsV8MzzVXJbgf80mlcyW1fz5YY3Mp1LkW4Vt5v16zLqRvW6Wmw417BztgKW96rr5P6-BWxkW1p_vxh2Gd8D1W8mmfdQ6Wtfc2Vztx7x2bJ1VzVwLzrY55KqyBW8Zh09M3hVZCrN1LyY3Mhx7F0W7RdCs9983zhbW5Tt4sK24Ys9YW5GfD5y1ngpSHW6hBzJQ7yzm11W6nFQ0z6yW9L_W7YtGCm5Bl1YBW9cndyy27mBB5W9dl4yl6b8sJ6W3kN-TJ3DLF3CV-FZzZ3pzjBtN8rQXxHpfbyBW78VjqL39Pzk8W2z0_MZ7kS4h6W9jL6m_76R32wW8KC4vj3t2PX5W86MgfS2KTrMHW6jp1FL65D_4nW31GjFc5xY1WRW6bhj838NG8HgW83tWzt6CGyszW2VlvRx43HfR1W60vb6x9jHlQVW3ntlmv6NvJtqW56y5jF5wBR5MVzfVmv8KYT3WW2f1jb-7z4WksW5zWMfZ94ylf5VLN88z4Lbcv3W7Mr3HX7lWWF1W2hYvZG5j5wQFW4N1JJx68TfQZW3TxTP54JTNLFW32s64R1R-42rW3YWbcZ6XswB-W70gXks28TBPjV_d0Qd7NJVbxW9dbNJL1H6Z8DVbbYwQ6YRvx3W2nGwd92-rGl1W7sLv5-65rRV2N3MP3VDwCqmQW52w7p94qkb4PW77n0jq6sZXgKW7_4S-w1CNV9LW35nSt63rmN6zN2NLFjfjGGZcW45fM4R5mTyXDW5ksmqV48GnLSMMx_vhnnrDsW83lSym92TksvVnfRGf1VFgDBW4Kj_wK4ZfT5VW1vKY7C4Jr27XW5GTQrZ337FzmW65cHrc7WMPrDW1M52px6ZLD7jW18Bb0h4hbSbTW7ChQsX2NLRHzW21RX7s2Wq6jtW17m1n36M5q1sW6YmgLx6NMKTjW7SXzMF2xw92PN2CBvBvQk16-W6kbJ8S2-PcYzW1SZzhN8dL8L0VWK0dh8kzNGMV1MBJ73Rx24XN7wx5-lNq1QqW7Hq2xB6xsdzfW42WCnx7Dd08FW6fqVGq7mkQhsV22Gmc1c2JWkW5dPNFD1jMnRyW34GKJz5H1Q25W1HfcFq3mGM5hN2LtnF4s2KC9W59smrS7RtrBKVdDyGB3wJ_kCW5myTxJ3mDDN0W2qy3bG4pWlpjW2rYrlS8W-QDzW86rRNL2y9YKHW2xtb193SWTbPW5dhxyk1RyqZxW2Y2DCC6q6FJqf8_yFYH04>\r\nEmail: ElizabethC@BradentonAreaEDC.com<mailto:ElizabethC@BradentonAreaEDC.com>\r\nPhone: 941-803-9033\r\nCell: 716-908-6134\r\nBradentonAreaEDC.com<https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3nXN7tdxLBlNx75W8xTw1W5DhfbhW441nBQ5flSdWW1W5VB84k1hq6W5DP1bD7-6pDdN3JJXHKDQhG6W6F8Z0v1DPL-rW5XLxSr10k5y6W4X4MJk7Lg70zW48HB187YtmJ2W2LbV_r9gRyPkW4ZWZHp93RVGKW6vSKF09lmCQQN36f4yhCXRKpW7FXrTY7qRgjrN8lSmJWC2plBW4fk0J61SNM-wW956br920QrGTW7fy1bt7_hznnN4y6W8bWkRTPW6XcKtD4Bm82tVSDv9m3Wq6lrf6S0G_q04>\r\n\r\n[cid:image001.png@01DC2E12.536DDC30]<https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3pVW3Xzpfn1qRjLMW5Yhxmp1Pxt3DW59LYYP267B9QV5LZ0Q2PN0dpN7tFxHjxQKX5W38_Rnl3Q86yyW91Q5hg2WKf4lW8m8r5231JtVNW4YG5RP1xk_M6W9lzZRb2_NGm5W8FhBpv73B4GrW6dPPGS35gv1tW6WD8Qs96Q9rhW1q0WT03TFlBpW4b67Dz2BfvjKW3p8F4f2bWXvpW1rg8tt2PTPhvW5p3VMj7BsWWDW6ZF60-3VHMcdW6sxRW9927zRGW48Nrc64DdFMjW5t24ZP5WzdCXf6V22Cs04>     [cid:image002.png@01DC2E12.536DDC30] <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3p0VN1MnL7r2s16N48wVx_W_rwBW55QSbn2s3NhpW1XFW5C2w5y44W1PkDx646JStpW9d_L9p2rCZVHW7cSBmH7VJ3X6W3g6rSx5NT4sBW2N1myD4DD9jvW1mTlH43YjvBJW8K-CNL1MXzzzW71xrwN2rYQ4KW5ZzYJy2fktV0W15DrMn41FKyXN241jWrtZQfJW55jlpX1DVFQHV8LQgz4nPLpvW23dQM9434CD3W208qVY1LjDnQW4vDQ6N1ftljcW2FjLVy6hX9LCW8dTH516gWwpgW38_z1X87VcmbN13hn7WNVP-NdCTyFW04>      [cid:image003.png@01DC2E12.536DDC30] <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jll2-6qcW7Y8-PT6lZ3lNW5Z3Yrg9cmyL9W6bY7rJ24YzJdW1Gn3Lc2_xDMgW3JK3Jm1mS-yJW5Q_FYz6PbJv_W19PL1C2y4cJvW868dxG92wPvQW4mLRwM8BBXcDW1WgVZF4KjBnqW6y18KG67qFC5W8Xb-Dy1YXlBpW6h5hm-5P4cV8W6mKr4122QG3kW2ZCL8M1dZq2NW3Kt4hD57RNZRW8r3w_C6l8YMPW61xcm51t8VBQW4nhDL_288X9NN2r6nwRwRM-QW3RZ6SD3r4Y_qN68BMcNhDd2vW53Cw_22CQ3wfW3gYHgq8C8xp1W6vFb385DpXx1W3Mr_yW2XkGgjW6RB88k3DRG7Yf55M55g04>      [cid:image004.png@01DC2E12.536DDC30] <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3kHW6Ht2nV36fbHJW4jPksh1wlSZYF7pqflbN198W8VvCN21FZ8CBW7MDjP24DG4YPW1ky1M-61fVQlW3F2s7-7f6_4VW2fHfk64bLm7gW7MWm4-2pVY5qW6d7HWS1tSlh2W5YGW4W36H2T7W7G_wWp6hdqsGW30RV8L3XRXbkW97ch1r3SlYC9Vl0RQW9h45klW8l5bN-7bjfhXW7LNLgV70ZzVtW3q8kVr4djzMcW8Dt-6b2KDZymW6H0yT_7bKcr0W2GV-qK8Qx6JTW8F1YwK6NCMKFW9jmKpd8JrMDNVNdxz01fGY3Wf5d_9ls04>      [cid:image005.png@01DC2E12.536DDC30] <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3m9Vb4NYS66VRVXW8XybLC8J19scW3P_pxs5z0_nSN6rWPfdDm2trW14CCRL40V8DXW90NXRy53n14DW4nqsQX9hGhtyMqPf07rTGC3VWZkXq4_FcXRW43vCwk24vftVW8wYHdZ74qM9VW60NppJ2pMvFhW5yBSxv4BsPTSW7wbR6g6y_bRSW9b47nx1Xvz74W4Mr6v096VQv8W6kJp7m5TM0W6W1by-0h8FBjDrW8j0_3649DbZVTjLsC1-07M7W1PHMNx6qWZbcW8RM1MV4T3p6zf6tVq5F04>\r\n\r\nFrom: Nathan Staron <Nathan@lithiumbatterycompany.com>\r\nSent: Wednesday, September 24, 2025 5:47 PM\r\nTo: Elizabeth Cordes <elizabethc@bradentonareaedc.com>; Yanet Lopez <yanetl@bradentonareaedc.com>\r\nCc: Kevin Campos <Kcampos@tampabayedc.com>; Brian Stufflebean <brian@mavrix.one>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Introduction - Bradenton Area EDC\r\n\r\nGood Afternoon Elizabeth,\r\n\r\nThank you for your prompt response and for the kind welcome. It was a pleasure e-meeting you as well.\r\n\r\nI would like to introduce Brian Stufflebean and Rick Mislan, who are the project leads for our expansion into Parrish, FL. They will be instrumental in the development of our new location, and I believe it would be beneficial for them to connect with you directly.\r\n\r\nRegarding setting up a meeting, I agree that it would be valuable to discuss the project further. We would be happy to coordinate a time that works best for everyone next week. As you mentioned, Tuesday and Wednesday work well for you, and we can certainly align with that.\r\n\r\nPlease let us know what specific times on Tuesday or Wednesday next week would be most convenient for you and Yanet, and we will make sure to schedule a call or meeting accordingly. We look forward to the opportunity to collaborate.\r\n\r\n\r\n\r\n[https://app.customesignature.com/images/social/animation/4/web-icon.gif]<https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mKW8HRTpJ4J04PDW37wl0Y7Y-_fZW186VyT5_Db6GW95yYQ_288R19W7yqL2t6Mn_HhW6lB4CJ12klSPW3RB7pV6f--KMW3-hGWf5kwhWdW4yGKrV5DdXLjW126l8-3Q88_4W37t4-W88ptC-W6CKNr_6lK9dXN2C3v7YGny2fW5pfR6y6Wmk7gW2Jw-Zt2YB6mhW4xkqXt65s0Z7W40_Tb_3pvYLqW1rl31446rTRSW8MtJH46sXcSpW83x4sW4bnWqqW4Q4WPs8Yk0QkW57tT_L208xMff6pFMkb04>\r\n[https://app.customesignature.com/images/social/animation/4/insta-icon.gif]<https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3l4N6VvrVBKF5WQW56Kg9c5SF2Q9N564SNPBmh1TW8ZB8KN1X9TSRW6yR9Tl4fNQGtW7vXYHz8VhMdxW8P-Pv15DC-z5W1-2MP34KKZDwW2Bzqfx8N3Y87W5C7l8r2sDX99W99mblX8dcgfbW1sq5pQ9dY3XmW7rNPy74p-xTGVJ1Bdy1nF-sNW4wRT_b70hm13W6pC7YD6nMgCdW93GyNY2yFCtPMJ9l7y4pm1DW2FWJzD6mCH9WW6XtVNG10nYSpW1kfp243YNJjlW1T19FR46hlgHf163jHC04>\r\n[https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif]<https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3pQN1S45LCmGrz0VcB7FK39dxN7Vf2srt8bQhcQVsqC565DgRPrW50dtWG5z70s7W8CWskF6ZmwmgVTGb-L6kzlK6VDW3tf8N_1v2W3gG3Z-2_FHgWW6L9lFV46ycJtW3B9D3j2zNpz1W6nfLWy3c8gyrW605trZ4trMK0W7rpP1W7_5fs7W77NH621f9qXGW1trpSF6dM7XcW8wYnNs8YJ2jxW19gv0v4cPy7LW2bm28W787m0jVhGyP67Cm9ZZW2xVy6x7tFlgkW5d8Tr-385pFRW6wY-hZ6tzSG6W3zndmc7VQ1bDdNR_Yj04>\r\n[https://app.customesignature.com/images/social/animation/4/facebook-icon.gif]<https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3pdW4YTQLY5WC4FNVPHSMC8n4CsgW8s6rF98BLQDpW7LR_317mmrlkW8_xpXq3GCr04VJB88M4Ntt_9W4-wyQx4mJQkJW62_k4h2xdHh4VWQZkb57wrjnW347vg45zLB2TVtW9wQ3WcKHTVVBqF630gvjSW8pZZZT7p7QRRW92gZhs5_kZ3mW4HjWzV7L7QqkW99S_C51wPDYjW32s4NY7Nv26hW98ZwqH2YCCcpW60_nqt4YXC4kN5N7PPjDTmrTW8p44Jl7-2NlMW5B2v_r1tkzbvW4x1Dl87YybzXVW8vcd5bgCtKf2WX11g04>\r\n[https://app.customesignature.com/images/social/animation/4/youtube-icon.gif]<https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3pSW5Bf5Yd4rCPHdW8sMtW98BdBmgW27tHg36KmVF-W7N14zZ5wwbgXW3p3b4l7b-ZwNW23KPpR5SrkrpW5mllYr3G30xcW6Qz5zR2Wp_TVVq1JYY2BNlnVW8YjKtl1RwZLHW3g2FfH3_83HKN9kHm1lXSPvsW2vB8Xd23NX-qW4gGYnB7nzJSNVTYdPL3Jk7tMW8MyGXl2NrqhPW4zsBN45dwZlDW7VZ4xH85PgxxW80cy4l93n5ZJW2cf9QX5RdsYhN2FHcYZJDMljW7tJ69X5XWzm5W6_GDM65_1MJqW6pFSHN7GGsV5f4NNQbW04>\r\n\r\n[https://app.customesignature.com/upload/signature/11122/11122.png]<https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mKW8HRTpJ4J04PDW37wl0Y7Y-_fZW186VyT5_Db6GW95yYQ_288R19W7yqL2t6Mn_HhW6lB4CJ12klSPW3RB7pV6f--KMW3-hGWf5kwhWdW4yGKrV5DdXLjW126l8-3Q88_4W37t4-W88ptC-W6CKNr_6lK9dXN2C3v7YGny2fW5pfR6y6Wmk7gW2Jw-Zt2YB6mhW4xkqXt65s0Z7W40_Tb_3pvYLqW1rl31446rTRSW8MtJH46sXcSpW83x4sW4bnWqqW4Q4WPs8Yk0QkW57tT_L208xMff6pFMkb04>\r\nNATHAN A. STARON\r\n[https://app.customesignature.com/images/verify.gif]\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074<tel:813-504-0074>\r\nPhone 844-GET-LITHIUM<tel:844-GET-LITHIUM>\r\nNathan@lithiumbatterycompany.com<mailto:Nathan@lithiumbatterycompany.com>\r\nSchedule A Zoom<https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3pcW3GJtyC7zkdnwW6y_zVy4sQ_wKW694R1T3VGfDFW3lZf7J3lRFPVW3xgqsm8frxF0W1LvnmW6fNxShW2XbVq58rwRvVVXTRl72kL8bTW5M3pDZ81G679W4t6LFR6B0P91W8dntfw5kFdK4W7KGF9W6rkSBcMF_l5mcqJ47W6ykXW53DfLJFW4HLKBn65J0LBW4CjHd66XSNgzN6PzrJgKTJs9VK9KwV3lPL88N32G8k_Qc8tXW78dCbp1Vqc0fW7YvzCP140tqwW70pTCh5hLZzvW4g4V1T6YfxTlW2mwQ9N6rP6GCf6Y7n0M04>\r\n[https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg]\r\n[https://app.customesignature.com/upload/signature/gifs/giphyy-1.gif]\r\n\r\n\r\nOn Wed, Sep 24, 2025 at 3:54 PM Elizabeth Cordes <elizabethc@bradentonareaedc.com<mailto:elizabethc@bradentonareaedc.com>> wrote:\r\nHi Kevin,\r\n\r\nThank you very much for the introduction! It is a pleasure to e-meet you, Nathan. I would very much like to set up a call or meeting to discuss your project further. Please let me know a day and time that would work best for you. We have good availability Tuesday and Wednesday next week. I look forward to working with you.\r\n\r\nKindest regards,\r\n\r\nElizabeth Cordes\r\nDirector of Business Recruitment & Expansion\r\nBradenton Area Economic Development Corporation\r\n5840 26th Street West, 26 West Center, Suite 232, Bradenton, FL 34207<https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkMgQprkW6N3_xK6lZ3lGW1MLz698CDR_dW7KlxwB1Dm18nW7ddBb_2MZrt3MSCRlbwgp39W4Q9-RD2vRWG1W8-Y5LS3HSXLwW8nCVqk5fVTFKW3JnxyC8hRCJDN26VyccGVNCWW4RVC_Q32W7YcN46VqW-CLVf7W4G3fH24MdWskW8jWC6J3vYdXjW1rnH5J70d1WmW8Vm3Dw7M9vVfW3k7SZr7K581tW2d_tNx2blRW1W8vQFPg194f1pW745Sc07dDh2QW7x1HFq5drc8gW4_0gCq3JlNskN49WTRsV8MzzVXJbgf80mlcyW1fz5YY3Mp1LkW4Vt5v16zLqRvW6Wmw417BztgKW96rr5P6-BWxkW1p_vxh2Gd8D1W8mmfdQ6Wtfc2Vztx7x2bJ1VzVwLzrY55KqyBW8Zh09M3hVZCrN1LyY3Mhx7F0W7RdCs9983zhbW5Tt4sK24Ys9YW5GfD5y1ngpSHW6hBzJQ7yzm11W6nFQ0z6yW9L_W7YtGCm5Bl1YBW9cndyy27mBB5W9dl4yl6b8sJ6W3kN-TJ3DLF3CV-FZzZ3pzjBtN8rQXxHpfbyBW78VjqL39Pzk8W2z0_MZ7kS4h6W9jL6m_76R32wW8KC4vj3t2PX5W86MgfS2KTrMHW6jp1FL65D_4nW31GjFc5xY1WRW6bhj838NG8HgW83tWzt6CGyszW2VlvRx43HfR1W60vb6x9jHlQVW3ntlmv6NvJtqW56y5jF5wBR5MVzfVmv8KYT3WW2f1jb-7z4WksW5zWMfZ94ylf5VLN88z4Lbcv3W7Mr3HX7lWWF1W2hYvZG5j5wQFW4N1JJx68TfQZW3TxTP54JTNLFW32s64R1R-42rW3YWbcZ6XswB-W70gXks28TBPjV_d0Qd7NJVbxW9dbNJL1H6Z8DVbbYwQ6YRvx3W2nGwd92-rGl1W7sLv5-65rRV2N3MP3VDwCqmQW52w7p94qkb4PW77n0jq6sZXgKW7_4S-w1CNV9LW35nSt63rmN6zN2NLFjfjGGZcW45fM4R5mTyXDW5ksmqV48GnLSMMx_vhnnrDsW83lSym92TksvVnfRGf1VFgDBW4Kj_wK4ZfT5VW1vKY7C4Jr27XW5GTQrZ337FzmW65cHrc7WMPrDW1M52px6ZLD7jW18Bb0h4hbSbTW7ChQsX2NLRHzW21RX7s2Wq6jtW17m1n36M5q1sW6YmgLx6NMKTjW7SXzMF2xw92PN2CBvBvQk16-W6kbJ8S2-PcYzW1SZzhN8dL8L0VWK0dh8kzNGMV1MBJ73Rx24XN7wx5-lNq1QqW7Hq2xB6xsdzfW42WCnx7Dd08FW6fqVGq7mkQhsV22Gmc1c2JWkW5dPNFD1jMnRyW34GKJz5H1Q25W1HfcFq3mGM5hN2LtnF4s2KC9W59smrS7RtrBKVdDyGB3wJ_kCW5myTxJ3mDDN0W2qy3bG4pWlpjW2rYrlS8W-QDzW86rRNL2y9YKHW2xtb193SWTbPW5dhxyk1RyqZxW2Y2DCC6q6FJqf8_yFYH04>\r\nEmail: ElizabethC@BradentonAreaEDC.com<mailto:ElizabethC@BradentonAreaEDC.com>\r\nPhone: 941-803-9033\r\nCell: 716-908-6134\r\nBradentonAreaEDC.com<https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3nXN7tdxLBlNx75W8xTw1W5DhfbhW441nBQ5flSdWW1W5VB84k1hq6W5DP1bD7-6pDdN3JJXHKDQhG6W6F8Z0v1DPL-rW5XLxSr10k5y6W4X4MJk7Lg70zW48HB187YtmJ2W2LbV_r9gRyPkW4ZWZHp93RVGKW6vSKF09lmCQQN36f4yhCXRKpW7FXrTY7qRgjrN8lSmJWC2plBW4fk0J61SNM-wW956br920QrGTW7fy1bt7_hznnN4y6W8bWkRTPW6XcKtD4Bm82tVSDv9m3Wq6lrf6S0G_q04>\r\n\r\n[cid:image001.png@01DC2E12.536DDC30]<https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3pVW3Xzpfn1qRjLMW5Yhxmp1Pxt3DW59LYYP267B9QV5LZ0Q2PN0dpN7tFxHjxQKX5W38_Rnl3Q86yyW91Q5hg2WKf4lW8m8r5231JtVNW4YG5RP1xk_M6W9lzZRb2_NGm5W8FhBpv73B4GrW6dPPGS35gv1tW6WD8Qs96Q9rhW1q0WT03TFlBpW4b67Dz2BfvjKW3p8F4f2bWXvpW1rg8tt2PTPhvW5p3VMj7BsWWDW6ZF60-3VHMcdW6sxRW9927zRGW48Nrc64DdFMjW5t24ZP5WzdCXf6V22Cs04>     [cid:image002.png@01DC2E12.536DDC30] <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3p0VN1MnL7r2s16N48wVx_W_rwBW55QSbn2s3NhpW1XFW5C2w5y44W1PkDx646JStpW9d_L9p2rCZVHW7cSBmH7VJ3X6W3g6rSx5NT4sBW2N1myD4DD9jvW1mTlH43YjvBJW8K-CNL1MXzzzW71xrwN2rYQ4KW5ZzYJy2fktV0W15DrMn41FKyXN241jWrtZQfJW55jlpX1DVFQHV8LQgz4nPLpvW23dQM9434CD3W208qVY1LjDnQW4vDQ6N1ftljcW2FjLVy6hX9LCW8dTH516gWwpgW38_z1X87VcmbN13hn7WNVP-NdCTyFW04>      [cid:image003.png@01DC2E12.536DDC30] <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jll2-6qcW7Y8-PT6lZ3lNW5Z3Yrg9cmyL9W6bY7rJ24YzJdW1Gn3Lc2_xDMgW3JK3Jm1mS-yJW5Q_FYz6PbJv_W19PL1C2y4cJvW868dxG92wPvQW4mLRwM8BBXcDW1WgVZF4KjBnqW6y18KG67qFC5W8Xb-Dy1YXlBpW6h5hm-5P4cV8W6mKr4122QG3kW2ZCL8M1dZq2NW3Kt4hD57RNZRW8r3w_C6l8YMPW61xcm51t8VBQW4nhDL_288X9NN2r6nwRwRM-QW3RZ6SD3r4Y_qN68BMcNhDd2vW53Cw_22CQ3wfW3gYHgq8C8xp1W6vFb385DpXx1W3Mr_yW2XkGgjW6RB88k3DRG7Yf55M55g04>      [cid:image004.png@01DC2E12.536DDC30] <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3kHW6Ht2nV36fbHJW4jPksh1wlSZYF7pqflbN198W8VvCN21FZ8CBW7MDjP24DG4YPW1ky1M-61fVQlW3F2s7-7f6_4VW2fHfk64bLm7gW7MWm4-2pVY5qW6d7HWS1tSlh2W5YGW4W36H2T7W7G_wWp6hdqsGW30RV8L3XRXbkW97ch1r3SlYC9Vl0RQW9h45klW8l5bN-7bjfhXW7LNLgV70ZzVtW3q8kVr4djzMcW8Dt-6b2KDZymW6H0yT_7bKcr0W2GV-qK8Qx6JTW8F1YwK6NCMKFW9jmKpd8JrMDNVNdxz01fGY3Wf5d_9ls04>      [cid:image005.png@01DC2E12.536DDC30] <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3m9Vb4NYS66VRVXW8XybLC8J19scW3P_pxs5z0_nSN6rWPfdDm2trW14CCRL40V8DXW90NXRy53n14DW4nqsQX9hGhtyMqPf07rTGC3VWZkXq4_FcXRW43vCwk24vftVW8wYHdZ74qM9VW60NppJ2pMvFhW5yBSxv4BsPTSW7wbR6g6y_bRSW9b47nx1Xvz74W4Mr6v096VQv8W6kJp7m5TM0W6W1by-0h8FBjDrW8j0_3649DbZVTjLsC1-07M7W1PHMNx6qWZbcW8RM1MV4T3p6zf6tVq5F04>\r\n\r\nFrom: Kevin Campos <Kcampos@tampabayedc.com<mailto:Kcampos@tampabayedc.com>>\r\nSent: Wednesday, September 24, 2025 11:44 AM\r\nTo: Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Yanet Lopez <yanetl@bradentonareaedc.com<mailto:yanetl@bradentonareaedc.com>>; Elizabeth Cordes <elizabethc@bradentonareaedc.com<mailto:elizabethc@bradentonareaedc.com>>\r\nSubject: Introduction - Bradenton Area EDC\r\n\r\nHello Nathan,\r\n\r\nAs discussed, I wanted to connect to the EDC in Manatee County for your Parrish, FL location.\r\n\r\n@yanetl@bradentonareaedc.com<mailto:yanetl@bradentonareaedc.com> and @elizabethc@bradentonareaedc.com<mailto:elizabethc@bradentonareaedc.com> thanks for taking my call. Could you connect with Nathan Staron when you have a chance? I have included him on this email and they are expanding into that area.\r\n\r\nKevin Campos, FCWP\r\nECONOMIC DEVELOPMENT MANAGER\r\nTAMPA BAY ECONOMIC DEVELOPMENT COUNCIL\r\n101 E. Kennedy Blvd., Suite 2000, Tampa, FL 33602\r\nO: 813.518.2662 I M: 813.763.0307\r\nkcampos@tampabayedc.com<mailto:kcampos@tampabayedc.com>\r\n[cid:image006.png@01DC2E12.536DDC30]\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-09-25 16:03:36','2025-12-09 19:29:07','2025-12-09 19:29:07','2025-12-09 19:29:07',NULL,NULL,NULL),
(790,4,'<0100019981a4c0ab-c13ea0f5-2dde-4e83-ab2b-51e2ce24fcab-000000@email.amazonses.com>',NULL,NULL,'Access Amazon Business Anytime, Anywhere','no-reply@business.amazon.com','Amazon Business','<!doctype html>\r\n<html lang=\"en-US\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\">\r\n <head>\r\n  <title>Access Amazon Business Anytime, Anywhere</title><!--[if !mso]><!-- -->\r\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><!--<![endif]-->\r\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\r\n  <style type=\"text/css\">#outlook a { padding:0; }           body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block; }</style><!--[if mso]>                    <xml>                      <o:OfficeDocumentSettings xmlns:o=\"urn:schemas-microsoft-com:office:office\">                    <o:AllowPNG/>                          <o:PixelsPerInch>96</o:PixelsPerInch>                      </o:OfficeDocumentSettings>                   <w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\">               <w:DontUseAdvancedTypographyReadingMail/>             </w:WordDocument>                  </xml>                        <style type=\"text/css\">             table { border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt; }             .mj-outlook-group-fix { width:100% !important; }           </style>                  <![endif]--><!--[if !mso]><!-->\r\n  <link href=\"https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <link href=\"https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <style type=\"text/css\">@import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);</style><!--<![endif]-->\r\n  <style type=\"text/css\">@media only screen and (min-width:641px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-20 { width:20% !important; max-width: 20%; } .mj-column-per-80 { width:80% !important; max-width: 80%; } .mj-column-per-18 { width:18% !important; max-width: 18%; } .mj-column-per-82 { width:82% !important; max-width: 82%; } .mj-column-per-48 { width:48% !important; max-width: 48%; } .mj-column-per-52 { width:52% !important; max-width: 52%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }</style>\r\n  <style type=\"text/css\">.links-232F3E-underline-bold a { color: #232F3E; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .mso-button-dark-mode a {background: transparent !important;} .links-161D26-bold a { color: #161D26; text-decoration: none; font-weight: bold; } .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .links-161D26-underline a { color: #161D26; text-decoration: underline; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:641px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-165px { max-width: 165px !important} .padding-32px-40px-20px-40px { padding: 32px 40px 20px 40px !important} .font-size-36px { font-size: 36px !important} .padding-0px-40px-24px-40px { padding: 0px 40px 24px 40px !important} .padding-0px-20px-0px-20px { padding: 0px 20px 0px 20px !important} .font-size-20px { font-size: 20px !important} .padding-20px-40px-0px-40px { padding: 20px 40px 0px 40px !important} .padding-24px-40px-24px-40px { padding: 24px 40px 24px 40px !important} .padding-25px-20px-25px-20px { padding: 25px 20px 25px 20px !important} .font-size-18px { font-size: 18px !important} .padding-0px-10px-0px-0px { padding: 0px 10px 0px 0px !important} .max-width-129px { max-width: 129px !important} .padding-0px-5px-0px-5px { padding: 0px 5px 0px 5px !important} .max-width-140px { max-width: 140px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }</style>\r\n  <style type=\"text/css\">ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 641px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}</style><!--[if mso]>             <style>                 .hide-on-mobile {display:block !important}             </style>         <![endif]--><!--[if mso]>                 <style>                              .mso-font-size-36px { font-size: 36px !important; } .mso-font-size-20px { font-size: 20px !important; } .mso-font-size-18px { font-size: 18px !important; }                 </style>             <![endif]-->\r\n  <style>[class~=\"x_body\"] { width: 99.9% }               @supports(--css:variables) {                         td[style*=\"border-radius\"] { -webkit-filter: drop-shadow(0 0 1px transparent); }             }</style>\r\n </head>\r\n <body style=\"word-spacing:normal;background-color:#FFFFFF;\" class=\"body\" id=\"body\">\r\n  <div>\r\n   <p><img alt=\"\" src=\"http://elinks.business.amazon.com/CI0/0100019981a4c0ab-c13ea0f5-2dde-4e83-ab2b-51e2ce24fcab-000000/7_fOvGXQ5PS3u_3GDxNTq8MHyMMzSNkNswbm6Xd4H8E=424\" style=\"display: none; width: 1px; height: 1px;\">\r\n</p>\r\n  </div><!--[if !mso 9]><!-->\r\n  <div id=\"emailPreHeader\" style=\"display: none;\">\r\n   Take control of your business purchasing,﻿ wherever you are﻿.\r\n  </div>\r\n  <div style=\"display: none;\">\r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  </div><!--<![endif]-->\r\n  <div style=\"background-color:#FFFFFF;background-position:center center;background-size:auto;background-repeat:repeat;\" id=\"main\">\r\n   <!--[if mso]>\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><![endif]--><!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:16px 16px 14px 16px;text-align:center;vertical-align:top;mso-padding-alt:14px 0px 14px 40px;\" class=\"block-grid padding-14px-0px-14px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:600px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n              <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:middle;width:300px;\" ><![endif]-->\r\n              <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n               <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n                <tbody>\r\n                 <tr>\r\n                  <td class=\"padding-0px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 0px 0px;word-break:break-word;mso-padding-alt:0px 0px 0px 0px;text-align:left;\">\r\n                   <div style=\"margin:0 auto 0 0;\" class=\"max-width-165px\">\r\n                    <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%3Fref_=b2b_ssr_life_MA_E1_us_1224/1/0100019981a4c0ab-c13ea0f5-2dde-4e83-ab2b-51e2ce24fcab-000000/ZltgqQNjxP2XQuZca_G9VZ0bVoRpaXf2bX_u6Z1p1pY=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business\" height=\"auto\" width=\"165\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-2color2x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                   </div></td>\r\n                 </tr>\r\n                </tbody>\r\n               </table>\r\n              </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:middle;width:300px;\" ><![endif]-->\r\n              <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n               <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n                <tbody>\r\n                 <tr>\r\n                  <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                   <div style=\"line-height:0px;height:0px;mso-line-height-alt:0px;\">\r\n                    &nbsp;\r\n                   </div></td>\r\n                 </tr>\r\n                </tbody>\r\n               </table>\r\n              </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:32px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:32px 40px 20px 40px;\" class=\"block-grid padding-32px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-232F3E-underline-bold\">\r\n                  <div style=\"font-family:\'Ember Modern Display\', Arial, sans-serif;font-size:28px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:2.688em;color:#161D26;\" class=\"mso-font-size-36px font-size-36px\">\r\n                   <p style=\"margin: 0 0 0px 0;\">Separate your business and personal buying with the mobile app built for business</p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 16px 24px 16px;text-align:center;vertical-align:top;mso-padding-alt:0px 40px 24px 40px;\" class=\"block-grid padding-0px-40px-24px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td valign=\"middle\" class=\"button-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div>\r\n                  <!--[if mso]>\r\n<table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\">\r\n<tr>\r\n<td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Fen%2Ffind-solutions%2Fmobile-app%3Fref_=b2b_ssr_life_MA_E1_us_1224/1/0100019981a4c0ab-c13ea0f5-2dde-4e83-ab2b-51e2ce24fcab-000000/wAtkHx4GCUNfRi28gPOhp4ITqzExyu-Qw_R5GHhZ9pI=424\" fillcolor=\"#FFD814\" arcsize=\"58%\" style=\"v-text-anchor:middle;width:117.75pt;height:32.25pt;\" stroke=\"f\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Fen%2Ffind-solutions%2Fmobile-app%3Fref_=b2b_ssr_life_MA_E1_us_1224/2/0100019981a4c0ab-c13ea0f5-2dde-4e83-ab2b-51e2ce24fcab-000000/U0V4Lp34MlEHvQZeWLdOyUEPYjxmHEm9b3GsndvrYwM=424\" style=\"display: inline-block; background: #FFD814; color: #161D26; font-family: \'Amber Ember\', Arial, sans-serif; font-size: 16px; font-weight: normal; line-height: 1.2; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 12px 24px 12px 24px; mso-padding-alt: 0px; border-radius: 25px; mso-border-alt: none; box-sizing: border-box;\" target=\"_blank\" width=\"157\">Download now </a><!--[if mso]></center></a:textbox></a:roundrect>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                 <div style=\"line-height:20px;height:20px;mso-line-height-alt:20px;\">\r\n                  &nbsp;\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:12px 40px 12px 30px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:570px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n             <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:middle;width:114px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-20 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:20%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\">\r\n                  <div style=\"margin:0 auto;max-width:114px;\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Fen%2Ffind-solutions%2Fmobile-app%3Fref_=b2b_ssr_life_MA_E1_us_1224/3/0100019981a4c0ab-c13ea0f5-2dde-4e83-ab2b-51e2ce24fcab-000000/bWOa7JNG0XDXK1djZsQQYAnBF18kRIFAQ9-abLkqYF4=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"On-the-go purchasing\" height=\"auto\" width=\"114\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/WhiteBackground/AB-Icon-Subvertical-Materials-white-circle10x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:middle;width:456px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-80 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:80%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td style=\"border-radius:0px;vertical-align:middle;padding:0px 16px 0px 16px;mso-padding-alt:0px 20px 0px 20px;\" class=\"padding-0px-20px-0px-20px\">\r\n                  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                   <tbody>\r\n                    <tr>\r\n                     <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                      <div class=\"links-161D26-bold\">\r\n                       <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.75em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                        <p style=\"margin: 0;\">On-the-go purchasing</p>\r\n                       </div>\r\n                      </div></td>\r\n                    </tr>\r\n                    <tr>\r\n                     <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                      <div class=\"links-007185-bold\">\r\n                       <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.375em;color:#222D3A;\">\r\n                        <p style=\"margin: 0;\">Place orders and manage your business buying anytime, anywhere.</p>\r\n                       </div>\r\n                      </div></td>\r\n                    </tr>\r\n                   </tbody>\r\n                  </table></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:12px 40px 12px 30px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:570px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n             <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:middle;width:114px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-20 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:20%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\">\r\n                  <div style=\"margin:0 auto;max-width:114px;\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Fen%2Ffind-solutions%2Fmobile-app%3Fref_=b2b_ssr_life_MA_E1_us_1224/4/0100019981a4c0ab-c13ea0f5-2dde-4e83-ab2b-51e2ce24fcab-000000/7dUyk9N9iRQEE8ECM4WNT78EltiEDEFehWcO8gWaouM=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Real-time tracking\" height=\"auto\" width=\"114\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/WhiteBackground/AB-Icon-Analytics-white-circle10x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:middle;width:456px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-80 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:80%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td style=\"border-radius:0px;vertical-align:middle;padding:0px 16px 0px 16px;mso-padding-alt:0px 20px 0px 20px;\" class=\"padding-0px-20px-0px-20px\">\r\n                  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                   <tbody>\r\n                    <tr>\r\n                     <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                      <div class=\"links-161D26-bold\">\r\n                       <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.75em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                        <p style=\"margin: 0;\">Real-time tracking</p>\r\n                       </div>\r\n                      </div></td>\r\n                    </tr>\r\n                    <tr>\r\n                     <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                      <div class=\"links-007185-bold\">\r\n                       <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.375em;color:#222D3A;\">\r\n                        <p style=\"margin: 0;\">Monitor shipments, track spending, and view account analytics instantly from your mobile device.</p>\r\n                       </div>\r\n                      </div></td>\r\n                    </tr>\r\n                   </tbody>\r\n                  </table></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:12px 40px 12px 30px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:570px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n             <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:middle;width:114px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-20 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:20%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\">\r\n                  <div style=\"margin:0 auto;max-width:114px;\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Fen%2Ffind-solutions%2Fmobile-app%3Fref_=b2b_ssr_life_MA_E1_us_1224/5/0100019981a4c0ab-c13ea0f5-2dde-4e83-ab2b-51e2ce24fcab-000000/lzvzMM8AU1YWrHwKKuWTM8Qa0pk3JRSVsEzHpdjapeo=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Streamlined approvals\" height=\"auto\" width=\"114\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/WhiteBackground/AB-Icon-Guided-Buying-white-circle10x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:middle;width:456px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-80 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:80%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td style=\"border-radius:0px;vertical-align:middle;padding:0px 16px 0px 16px;mso-padding-alt:0px 20px 0px 20px;\" class=\"padding-0px-20px-0px-20px\">\r\n                  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                   <tbody>\r\n                    <tr>\r\n                     <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                      <div class=\"links-161D26-bold\">\r\n                       <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.75em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                        <p style=\"margin: 0;\">Streamlined approvals</p>\r\n                       </div>\r\n                      </div></td>\r\n                    </tr>\r\n                    <tr>\r\n                     <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                      <div class=\"links-007185-bold\">\r\n                       <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.375em;color:#222D3A;\">\r\n                        <p style=\"margin: 0;\">Review and approve purchase requests quickly, keeping your business moving even when you\'re away from your desk.</p>\r\n                       </div>\r\n                      </div></td>\r\n                    </tr>\r\n                   </tbody>\r\n                  </table></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 0px 40px;\" class=\"block-grid padding-20px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td valign=\"middle\" class=\"button-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div>\r\n                  <!--[if mso]>\r\n<table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\">\r\n<tr>\r\n<td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Fen%2Ffind-solutions%2Fmobile-app%3Fref_=b2b_ssr_life_MA_E1_us_1224/6/0100019981a4c0ab-c13ea0f5-2dde-4e83-ab2b-51e2ce24fcab-000000/T_ss-cPt-n7swkIvXmlVb1UPX2KAm07lYABVkwHydvw=424\" fillcolor=\"#FFFFFF\" arcsize=\"18%\" style=\"v-text-anchor:middle;width:87pt;height:33.75pt;\" strokecolor=\"#D5D9D9\" strokeweight=\"0.75pt\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Fen%2Ffind-solutions%2Fmobile-app%3Fref_=b2b_ssr_life_MA_E1_us_1224/7/0100019981a4c0ab-c13ea0f5-2dde-4e83-ab2b-51e2ce24fcab-000000/fQrUY2udjrCwheigouP2N4bAkxR06f6-ZtVr67qUIrA=424\" style=\"display: inline-block; background: #FFFFFF; color: #161D26; font-family: \'Amber Ember\', Arial, sans-serif; font-size: 16px; font-weight: normal; line-height: 1.2; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 12px 16px 12px 16px; mso-padding-alt: 0px; border-radius: 8px; border-left: 1px solid #D5D9D9; border-right: 1px solid #D5D9D9; border-top: 1px solid #D5D9D9; border-bottom: 1px solid #D5D9D9; mso-border-alt: none; box-sizing: border-box;\" target=\"_blank\" width=\"117\">Learn more </a><!--[if mso]></center></a:textbox></a:roundrect>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                 <div style=\"line-height:20px;height:20px;mso-line-height-alt:20px;\">\r\n                  &nbsp;\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F7F7F7;background-color:#F7F7F7;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F7F7F7;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><!--[if !mso]><!-- --><p style=\"border-top:solid 1px #D5D9D9;font-size:1px;margin:0 auto;width:100%;text-align:center;\"></p><!--<![endif]--><!--Divider--><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-top:solid 1px #D5D9D9;font-size:1px;margin:0 auto;width:640px;text-align:center;\" role=\"presentation\" width=\"640px\" >\r\n<tr>\r\n<td style=\"height:0;line-height:0;\"> &nbsp; </td>\r\n</tr>\r\n</table><![endif]--></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F5F3EF;background-color:#F5F3EF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F5F3EF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:16px 16px 16px 16px;text-align:center;vertical-align:top;mso-padding-alt:24px 40px 24px 40px;\" class=\"block-grid padding-24px-40px-24px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"background-color:#FFFFFF;border-radius:7px;vertical-align:top;padding:24px 24px 24px 24px;mso-padding-alt:25px 20px 25px 20px;\" class=\"padding-25px-20px-25px-20px\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td>\r\n                     <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:100%;\" class=\"section\">\r\n                      <tbody>\r\n                       <tr>\r\n                        <td align=\"center\" style=\"font-size:0px;text-align:center;vertical-align:top;padding:0px;word-break:break-word;\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:middle;width:93.6px;\" ><![endif]-->\r\n                         <div class=\"mj-column-per-18 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                              <div style=\"margin:0 auto 0 0;max-width:93px;\">\r\n                              <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Fen%2Ffind-solutions%2Fmobile-app%3Fref_=b2b_ssr_life_MA_E1_us_1224%26ref_=b2b_adp_e_abapp_body/1/0100019981a4c0ab-c13ea0f5-2dde-4e83-ab2b-51e2ce24fcab-000000/DZUCS9CtdWgMB2jm357wC1u8843ZlUxQTrPFfW8abB8=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Mobile App\" height=\"auto\" width=\"93\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/WhiteBackground/AB-Icon-Mobile-App-white-circle10x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                              </div></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table>\r\n                         </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:middle;width:426.4px;\" ><![endif]-->\r\n                         <div class=\"mj-column-per-82 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"border-radius:0px;vertical-align:middle;padding:0 0 0 20px;\">\r\n                              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                              <tbody>\r\n                              <tr>\r\n                              <td class=\"padding-0px-0px-0px-0px text-container\" style=\"font-size:0px;padding:16px 0px 0px 0px;word-break:break-word;mso-padding-alt:0px 0px 0px 0px;text-align:left;\">\r\n                              <div class=\"links-161D26-underline\">\r\n                              <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.375em;color:#161D26;\" class=\"mso-font-size-18px font-size-18px\">\r\n                              <p style=\"margin: 0;\"><strong><span style=\"font-family: \'Amber Ember\', Arial, sans-serif;\">Download the Amazon Business Mobile App</span></strong></p>\r\n                              </div>\r\n                              </div></td>\r\n                              </tr>\r\n                              <tr>\r\n                              <td class=\"text-container\" style=\"font-size:0px;padding:8px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                              <div class=\"links-161D26-underline\">\r\n                              <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.188em;color:#161D26;\">\r\n                              <p style=\"margin: 0;\"><span style=\"font-family: \'Amber Ember\', Arial, sans-serif; font-size: 16px;\">Separate your business and personal buying with a convenient and secure shopping experience.</span></p>\r\n                              </div>\r\n                              </div></td>\r\n                              </tr>\r\n                              </tbody>\r\n                              </table></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table>\r\n                         </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n                       </tr>\r\n                      </tbody>\r\n                     </table></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td>\r\n                     <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:100%;\" class=\"section\">\r\n                      <tbody>\r\n                       <tr>\r\n                        <td align=\"center\" style=\"font-size:0px;text-align:center;vertical-align:top;padding:24px 0px 0px 10px;word-break:break-word;\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:510px;\" ><![endif]-->\r\n                         <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n                          <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:244px;\" ><![endif]-->\r\n                          <div class=\"mj-column-per-48 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:48%;\">\r\n                           <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                            <tbody>\r\n                             <tr>\r\n                              <td style=\"border-radius:0px;vertical-align:top;padding:0px 0 0 0;\">\r\n                              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                              <tbody>\r\n                              <tr>\r\n                              <td class=\"padding-0px-10px-0px-0px img-container\" style=\"font-size:0px;padding:0px 15px 0px 0px;word-break:break-word;mso-padding-alt:0px 10px 0px 0px;text-align:right;\">\r\n                              <div style=\"margin:0 0 0 auto;max-width:90%;\" class=\"max-width-129px\">\r\n                              <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fapps.apple.com%2Fus%2Fapp%2Famazon-business%2Fid1498197033%3Fref_=b2b_ssr_life_MA_E1_us_1224%26pt=17789%26ct=em_body%26mt=8/1/0100019981a4c0ab-c13ea0f5-2dde-4e83-ab2b-51e2ce24fcab-000000/kEyxzj26Js2oXuBwjOhEBufcQxuC-NvJjvKI_D1UaL4=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"App Store\" height=\"auto\" width=\"129\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/EBR/Download_on_the_App_Store_Badge_US_blk_092917.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                              </div></td>\r\n                              </tr>\r\n                              </tbody>\r\n                              </table></td>\r\n                             </tr>\r\n                            </tbody>\r\n                           </table>\r\n                          </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:265px;\" ><![endif]-->\r\n                          <div class=\"mj-column-per-52 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:52%;\">\r\n                           <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                            <tbody>\r\n                             <tr>\r\n                              <td class=\"padding-0px-5px-0px-5px img-container\" style=\"font-size:0px;padding:0px 20px 0px 5px;word-break:break-word;mso-padding-alt:0px 5px 0px 5px;text-align:left;\">\r\n                              <div style=\"margin:0 auto 0 0;max-width:96%;\" class=\"max-width-140px\">\r\n                              <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fplay.google.com%2Fstore%2Fapps%2Fdetails%3Fref_=b2b_ssr_life_MA_E1_us_1224%26id=com.amazon.mShop.android.business.shopping%26referrer=utm_source%253Damazon_business%2526utm_campaign%253Dem_body/1/0100019981a4c0ab-c13ea0f5-2dde-4e83-ab2b-51e2ce24fcab-000000/NZb6HP8_r24sX9oJFVLlzk2YsSuXEDQlWDFl-uMXRZc=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Google Play\" height=\"auto\" width=\"140\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/EBR/GooglePlayIcon-US.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                              </div></td>\r\n                             </tr>\r\n                            </tbody>\r\n                           </table>\r\n                          </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                         </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n                       </tr>\r\n                      </tbody>\r\n                     </table></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#161D26;background-color:#161D26;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#161D26;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\">\r\n            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n             <tbody>\r\n              <tr>\r\n               <td style=\"line-height:0;font-size:0;direction:rtl;\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:252px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-45 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-align-right social-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\"><!--[if mso | IE]>\r\n<table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" >\r\n<tr>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.facebook.com%2FAmazonBusiness%2F%3Fref_=b2b_ssr_life_MA_E1_us_1224/1/0100019981a4c0ab-c13ea0f5-2dde-4e83-ab2b-51e2ce24fcab-000000/K-3QsZcjpYsy7pdhlPwsJBVeA1nFE9mXGtqhdgZcPe0=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Facebook\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Facebook-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Ftwitter.com%2FAmazonBusiness%3Fref_=b2b_ssr_life_MA_E1_us_1224/1/0100019981a4c0ab-c13ea0f5-2dde-4e83-ab2b-51e2ce24fcab-000000/_j3HhTuiqq99OsRAwZSeLz-gH2-7Z7UDnFsbinXWbrE=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Twitter\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Twitter-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.linkedin.com%2Fcompany%2Famazon-business%2F%3Fref_=b2b_ssr_life_MA_E1_us_1224/1/0100019981a4c0ab-c13ea0f5-2dde-4e83-ab2b-51e2ce24fcab-000000/7CvMZMZQgjxbdQK8L18CCh94HEfqltwGUoPhGdvLtv4=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Linkedin\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-LinkedIn-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"padding-10px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 20px 0px;word-break:break-word;mso-padding-alt:10px 0px 0px 0px;text-align:right;\">\r\n                     <div style=\"margin:0 auto 0 0;max-width:163px;\" class=\"margin-0-0-0-auto\">\r\n                      <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2F%3Fref_=b2b_ssr_life_MA_E1_us_1224%26ref_=b2b_ssr_life_MA_E1_us_1224/1/0100019981a4c0ab-c13ea0f5-2dde-4e83-ab2b-51e2ce24fcab-000000/4zdmmpcH-Z63sdLnz1cQtmNgcgoFSnQ6ji5tex11q2I=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business logo\" height=\"auto\" width=\"163\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-white2x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:308px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-55 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0 0 0px 0;\"><a style=\"color: rgb(255, 255, 255); text-decoration: underline;\" href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fb%3Fref_=b2b_ssr_life_MA_E1_us_1224%26node=17892390011/1/0100019981a4c0ab-c13ea0f5-2dde-4e83-ab2b-51e2ce24fcab-000000/yVprez09IKtzLSg5om2WV6tdyVm8hb1w8RXj45a-hEI=424\" target=\"_blank\" rel=\"noopener\">Contact us</a></p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0 0 0px 0;\">If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your <a style=\"color: rgb(255, 255, 255); text-decoration: underline;\" href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Femail-preferences%2Fep%2FSLI3fw3aIgBFbHHf5G6Kln1ZjiSogEF2cLLSgkYF3a%2B2gNPHo*z7Z0y*SQ==%2F1898066563%2FdK7AI98GvPBxp8m6hK*grXGZNwFBgFan4fJzm2gwnb6CNPGHRBZVtYmhj5cuz21QsOpsZK1SCRbewj0pIS0f3wsv%2BYskWReg*n7B63sGV8*vYOHLwpO0270Jt8JxMmGucMypRA221WCW8qi1JSZQZNmslszCVtPs5gUCyhczYopbqhuW*7datpOcNtCoYALzt1lR4*T4lxfeDBQvJbIZBeNWdUNDwH2eNP9Md2pByYtZtaBiYfP1j*Cje8SDIAcHMeXYoHn*xihOhRbxQllBlV7RKUkN0KFQyyyheuy5auRIZHC%2BCixCZRQUOGjIi72uDFrri9kRf%2B4X%2BGPvBbyHTLdZmdhnIPMq8pIkxG100gkxUlAI83U=%2FUGMa4rt3ghheSYgczI3F19raQ*8nGv0SQPRlMaxBcvCj%3Fref_=b2b_ssr_life_MA_E1_us_1224/1/0100019981a4c0ab-c13ea0f5-2dde-4e83-ab2b-51e2ce24fcab-000000/8UTA-MTIFX-E8e9atDRwD6rlhNCCI4_8AsGjqS_Vadg=424\" target=\"_blank\" rel=\"noopener\">email preferences.</a></p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 30px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0 0 0px 0;\">© 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210</p>\r\n                       <p style=\"margin: 0 0 0px 0;\">&nbsp;</p>\r\n                       <p style=\"margin: 0 0 0px 0;\">Reference: 1898066563</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n              </tr>\r\n             </tbody>\r\n            </table></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--><!--[if mso]>\r\n</table><![endif]-->\r\n  </div>\r\n </body>\r\n</html>\r\n','\r\n\r\n \r\n  Access Amazon Business Anytime, Anywhere\r\n  \r\n  \r\n  \r\n  #outlook a { padding:0; }           body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block; }\r\n  \r\n  \r\n  @import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);\r\n  @media only screen and (min-width:641px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-20 { width:20% !important; max-width: 20%; } .mj-column-per-80 { width:80% !important; max-width: 80%; } .mj-column-per-18 { width:18% !important; max-width: 18%; } .mj-column-per-82 { width:82% !important; max-width: 82%; } .mj-column-per-48 { width:48% !important; max-width: 48%; } .mj-column-per-52 { width:52% !important; max-width: 52%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }\r\n  .links-232F3E-underline-bold a { color: #232F3E; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .mso-button-dark-mode a {background: transparent !important;} .links-161D26-bold a { color: #161D26; text-decoration: none; font-weight: bold; } .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .links-161D26-underline a { color: #161D26; text-decoration: underline; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:641px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-165px { max-width: 165px !important} .padding-32px-40px-20px-40px { padding: 32px 40px 20px 40px !important} .font-size-36px { font-size: 36px !important} .padding-0px-40px-24px-40px { padding: 0px 40px 24px 40px !important} .padding-0px-20px-0px-20px { padding: 0px 20px 0px 20px !important} .font-size-20px { font-size: 20px !important} .padding-20px-40px-0px-40px { padding: 20px 40px 0px 40px !important} .padding-24px-40px-24px-40px { padding: 24px 40px 24px 40px !important} .padding-25px-20px-25px-20px { padding: 25px 20px 25px 20px !important} .font-size-18px { font-size: 18px !important} .padding-0px-10px-0px-0px { padding: 0px 10px 0px 0px !important} .max-width-129px { max-width: 129px !important} .padding-0px-5px-0px-5px { padding: 0px 5px 0px 5px !important} .max-width-140px { max-width: 140px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }\r\n  ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 641px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}\r\n  [class~=\"x_body\"] { width: 99.9% }               @supports(--css:variables) {                         td[style*=\"border-radius\"] { -webkit-filter: drop-shadow(0 0 1px transparent); }             }\r\n \r\n \r\n  \r\n   \r\n\r\n  \r\n  \r\n   Take control of your business purchasing,﻿ wherever you are﻿.\r\n  \r\n  \r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  \r\n  \r\n   \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                   \r\n                 \r\n                \r\n               \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    &nbsp;\r\n                   \r\n                 \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   Separate your business and personal buying with the mobile app built for business\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                   Download now \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  &nbsp;\r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        On-the-go purchasing\r\n                       \r\n                      \r\n                    \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        Place orders and manage your business buying anytime, anywhere.\r\n                       \r\n                      \r\n                    \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        Real-time tracking\r\n                       \r\n                      \r\n                    \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        Monitor shipments, track spending, and view account analytics instantly from your mobile device.\r\n                       \r\n                      \r\n                    \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        Streamlined approvals\r\n                       \r\n                      \r\n                    \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        Review and approve purchase requests quickly, keeping your business moving even when you\'re away from your desk.\r\n                       \r\n                      \r\n                    \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                   Learn more \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  &nbsp;\r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                              \r\n                              \r\n                              \r\n                            \r\n                           \r\n                          \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              Download the Amazon Business Mobile App\r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              Separate your business and personal buying with a convenient and secure shopping experience.\r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                            \r\n                           \r\n                          \r\n                         \r\n                       \r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                          \r\n                           \r\n                            \r\n                             \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                             \r\n                            \r\n                           \r\n                          \r\n                          \r\n                           \r\n                            \r\n                             \r\n                              \r\n                              \r\n                              \r\n                              \r\n                             \r\n                            \r\n                           \r\n                          \r\n                         \r\n                       \r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       Contact us\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your email preferences.\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       © 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210\r\n                       &nbsp;\r\n                       Reference: 1898066563\r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n   \r\n  \r\n \r\n\r\n',0,0,0,0,0,0,'2025-09-25 16:11:22','2025-12-09 19:29:07','2025-12-09 19:29:07','2025-12-09 19:29:07',NULL,NULL,NULL),
(791,4,'<20250925174702.Horde.1WnFV_Wgg3c1tIsw2CjVD9h@mavrix1.aponte.to>',NULL,NULL,'Re: Fwd: HAAS Late Model Machining Centers and Lathes Available Immediately','jason@mavrix.one','Jason Blick','<!DOCTYPE html>\r\n<html><meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\"><body>\r\n<p style=\"margin:0;\">Hey Rick,</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\">Sorry for the late response, this email got flagged for spam because of the link. But I would say that the ST30 could potentially be lucrative at the right price point, would you like me to reach out to this vendor and see what their offerings are?</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\">Regards,</p><p style=\"margin:0;\">Jason</p><p style=\"margin:0;\"> </p><div class=\"quote\"><p style=\"margin:0;\">\"Rick\" rick@mavrix.one – September 24, 2025 11:01 AM<br> </p><blockquote><p style=\"margin:0;\">Anything here fit our needs?<br><br> </p><p style=\"margin:0;\"><br> </p><p style=\"margin:0;\">Rick Mislan, PhD, </p><p style=\"margin:0;\">Founder, CTO</p><p style=\"margin:0;\"><a href=\"http://mavrix1.com/\">mavrix1.com</a></p><p style=\"margin:0;\">CONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.</p><p style=\"margin:0;\">On September 24, 2025 at 10:36:22 AM, Thomas Pownall (<a href=\"/apps/mail/mailto?to=tpownall@cadx-pcb.com\">tpownall@cadx-pcb.com</a>) wrote:</p><blockquote><p style=\"margin:0;\">Here is some equipment you could use.</p><p style=\"margin:0;\">-- Tom</p><p style=\"margin:0;\"><br><br> </p><p style=\"margin:0;\">---------- Forwarded message ---------<br>From: <strong>Prestige Equipment</strong> &lt;<a href=\"/apps/mail/mailto?to=scott@prestigeequipment.com\">scott@prestigeequipment.com</a>&gt;<br>Date: Mon, Sep 22, 2025 at 1:26 PM<br>Subject: HAAS Late Model Machining Centers and Lathes Available Immediately<br>To: &lt;<a href=\"/apps/mail/mailto?to=tpownall@cadx-pcb.com\">tpownall@cadx-pcb.com</a>&gt;<br> </p><p style=\"margin:0;\"><br><br> </p><p style=\"margin:0;\">2018 HAAS VF-11/40 CNC VMC, HAAS VF-3YT/50 4-Axis CNC VMC, HAAS VF-5/50XT CNC VMC, HAAS EC-1600 YZT HMC, HAAS VF-6/50 CNC VMC, 2018 HAAS ST30 CNC Turning Center, HAAS VF-6/50 CNC VMC, 2018 HAAS VF-2SS CNC VMC</p><p style=\"margin:0;\">͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ </p><p style=\"margin:0;\">Having trouble viewing this email? <a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.YZa2-2Fv95qyaQ0Esd0DqHPseu6wZUcWbsNdJ5oijrR5vPQvMAZAJSp-2B-2FHtToOUzy91Z6i2WCqlu6QVGFHa3v4-2FmHS1tBSiH4d2nfJjlge3PNE0vNsL6dFwW9-2FClNDGQXIqcRtQFX31x4WM6sHjF-2FTtBNQITR7A7MkPG9-2BPRTM34oaAzAi8t4ux5z6WUT385joUkqk_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2Bb8-2BhVSuBVVwaLS0cEXSl567RLAbx1WnR18gXRYxi01cqqPZEOiLb-2BuUCOHgRmvFbgl261Xh-2BSQQhUoXk65J0cJU9354hG71cqc2h6BUrbe-2FOVErGw5PkQRDgjsGQ-2BrlYBkcRX2G3gHWdtTCqD8ZFrpCF6QBuxeCfpSe003TTdxV5mWYe4EEDGSkn0D6ig-2FQKLsXpXkCodkvgxTnYvUXQd\">View in web browser</a></p><p style=\"margin:0;text-align:center;\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6E6RJNpN1XitjoQ-2FPLJOjbTwFpuVUdxuiEDdQglcL629H-2BMI3zRumaeRagK3Kqj3JNbVhUW5wU7mxy6jh3X5MO7KtbAwDg6YR1CiwQMbo0inQ-3D-3DxjiN_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2F9Ln4GVwiExN5BztEOsENRHJgG91Rd9vAq88N91tvW73mQ67byKIlvQiGKguNTpHUYwvzZvk0g9FrJNsXtx5a7avcDNGl6C61-2BPLsKrUMIdhgzuOpB2jVJ3EWMmT4Pq9CDaH-2Bz-2FegtCXLmdjo6YrZ8ZyoTViESOh-2FbNTdjrnTXUdlmyRoDVhro8FWtCXMmXOgqhTYimptJUsUXoqwdN-2Fu4\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"Prestige Equipment\" width=\"130\" height=\"70\"></a></p><h4 style=\"text-align:right;\"><a href=\"/apps/mail/mailto?to=scott@prestigeequipment.com\"><strong>CONTACT SCOTT LINZER</strong></a><br><a href=\"/apps/mail/mailto?to=scott@prestigeequipment.com\">scott@prestigeequipment.com</a><br> O: 631-249-5566 | M: 516-972-8791</h4><figure class=\"image\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"\" width=\"600\"></figure><p style=\"margin:0;text-align:center;\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamyLuOpuBlePnf4SfD5v-2BhFr1jCTkFIKBodlI3tfddomhdHovm-2BCCxfPpuZjRaZP5SnjZLqt-2Fw1iNDbFN-2Fro098l6N3qScDRfmZpvh-2BhnjGCCw-3D-3DZ4e__xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n99nIF5D7uoxHnUpJVlcP8JfB0gSvdZpbVr3sHtAItYr5eMZEh73FO1XaRMFRcE4It2ZbWwkQbjVfkMOQsCiKxEq0hurNihRNr9UFVVWWCwdGRbVkvjlCd9VGJ83si2jUtidboDEU21yhk0oWGpX6jCXIXtz9n-2Be03O-2Bljz8nXZX4kOFLTdSzAR2iUfH18q0v6O7BqQ7-2BqJEOm01lCgetCDc\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"\" width=\"285\" height=\"275\"></a></p><p style=\"margin:0;text-align:center;\"><strong>HAAS VF-11/40 CNC VERTICAL MACHINING CENTER</strong><br>X-120\", Y-40\", Z-30\", 15K RPM, TSC, Probe, 40 ATC, BT-40, TSC, Haas CNC, 2018, #44347<br><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamyLuOpuBlePnf4SfD5v-2BhFr1jCTkFIKBodlI3tfddomhdHovm-2BCCxfPpuZjRaZP5SnjZLqt-2Fw1iNDbFN-2Fro098l6N3qScDRfmZpvh-2BhnjGCCw-3D-3DviGj_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98159Dy9uPqgN2yABfpQLTcERg-2FzPBsI6y0qUuWG0IShjC3EGqwrqXO5aaLb6-2FTorav2itstz5ptAX-2FNiTFyipbm4MeHyAoNEqXE0lM1usOWaKt6zb0cUufOk416ltEmhJNjAh-2B8sjCiCo51cLRdlbA4tO8c1PO8UiiMSjbMEOzshpT3HgOGiFnuL5qUtmbfpLEy9mGxL2T5vCeZSEfjXPK\"><u>VIEW FULL DETAILS</u></a></p><p style=\"margin:0;text-align:center;\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamzH356J0-2B8YZzi6orzP56P0YJyeLbROr0L9z6uCD5nGubCgqDSANrObYdft9fH4hRnd-2BiSrh8Q8JmrZAPXmfcI-2BZBI79U35QP-2FFyL7Oqmf4zw-3D-3DnL23_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98K2Hj7-2BH4bsPPxXRWD-2F6gJ4cwUy9efLv8QdbNmga-2FjpSRRm9UhJJFnmqVxgB4gSEb08AeSwCh0iZCRxplYi5EqOJ5tL1W8IDv0P-2F0568j7D4SWuv6r5FnxmA48PRtI0JMOmy4piCDQligJB8nR9yd-2BxwH4Rpke-2Bew1U73jET009rBpJPLdy9nwBxOcvsZ64B-2FMmJVG1WYGslujKmagOkFh\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"\" width=\"285\" height=\"275\"></a></p><p style=\"margin:0;text-align:center;\"><strong>HAAS VF-3YT/50 4-AXIS CNC VERTICAL MACHINING CENTER</strong><br>X-40\", Y-26\", 30 Sta. Side Mounted ATC, Wireless Probe, Pre-Wired 4th Axis , 10,000 RPM, 2011, #44317<br><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamzH356J0-2B8YZzi6orzP56P0YJyeLbROr0L9z6uCD5nGubCgqDSANrObYdft9fH4hRnd-2BiSrh8Q8JmrZAPXmfcI-2BZBI79U35QP-2FFyL7Oqmf4zw-3D-3D_KP4_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2BKLaJtzUsofBqouVqlscFl0B7mELeWqRPFCab2kkTPKwCWZIa8oI95DoiweBjkXidwzMDTafvuLEUH-2FiU-2Fn6j4AnyG9ZpJNyZj6zVLc0l-2BKemZy2VBgsqYwZgXMFoqu4Zw79-2Bq4uj2iaEbfsWWIQbGbhCRDKEzopx2SwE5Wmm9sRE7INkzOIs9qFAQPB9ARnjmcZHZJLEwN0M1SpRebVKI\"><u>VIEW FULL DETAILS</u></a></p><p style=\"margin:0;text-align:center;\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamyEGe6ppo3IPxlPhH1No9JgGXBTzcgHs9fM9-2FfCNnJtPTjKA80l3FAJAQWjRFfOnd6C0sc58EcS0bVp4qYYhEXVJlcylSsglutTkcljiSh6Pg-3D-3Dx3oe_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FtU0STLbDL1KMuueHTWffLBAIANsg058QsI10fBwEkemWaVKs9lNYMuW2SzOV7n4yF801diT3ztvYUcYz-2BxLA5-2B2S8GNjc7yHuahD4DAl-2FcRLg0Oj9Ib0aBHbeOW00aZkQPqXMbST3ihkz8bEX8ccahH4sn628NoiAknH3obbERquXV3XBImQgc9xvy2zAqFwTNyBl2sEiebTw-2BHsaLp6z\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"\" width=\"285\" height=\"275\"></a></p><p style=\"margin:0;text-align:center;\"><strong>HAAS VF-5/50XT CNC VERTICAL MACHINING CENTER</strong><br>X-60\", Y-26\" Z-25\", #50 Taper, 7,500 RPM, 4th/5th Axis Ready, 30 ATC, Chip Auger, Haas CNC, #44302<br><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamyEGe6ppo3IPxlPhH1No9JgGXBTzcgHs9fM9-2FfCNnJtPTjKA80l3FAJAQWjRFfOnd6C0sc58EcS0bVp4qYYhEXVJlcylSsglutTkcljiSh6Pg-3D-3D3MA__xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2BTXgDNyV5GVGY-2BmGohiku88BcgP7OLVEknp8bsupbSRmAjcpgWh6m-2FMclLINcM9kiLNYzEgZMb8HKZzbRno4bNwqF-2FKdTwrcTcj24dY80rvBf-2ByjDaB0UurhC66izVtUZb5W-2B42fyCwrmcCTiF-2F2BooKCIy1Jm9ZGxZ2ezLNOoRGGX5OfM0Ux8O26oUThs1vMUQ82PXsvFQPWALLvQb4Js\"><u>VIEW FULL DETAILS</u></a></p><p style=\"margin:0;text-align:center;\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3tovCKvewOMYeyHinOEAM-2F2ezxiiTgZhvhZTw0BwhLvtdJTjyqia3rVnxyVMs8THy3498cmuP9qg1W-2BZe-2BDb7EoPxkLi-2FoQn9-2BQSAz5RPYbXuXKSJVMvrtoQ-2FB0Y3wZ5esjuqsTHYtMcaGYnG6WIdpgNjoP7kKvZBHPxyaOWBjY8-3DEJhy_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2BrtFnqrZ5TbjUahSA2D4wwtfCAX7qqN3-2FpL9Mecp2ioKb4pJvplmefSpXg09u9aXgRr1SBIQxXdoQ-2F1njXtfKSraOY2aGAVIolkhwX8wAQK4Ov4erw5HrMLlUJKqGYbZeSjGfPezer-2BjWxRAXNXhoTHj4AFKTWNfcLNV46-2F4RgGm4IXc8EEfvHoCf-2B36iLxdGcNHOyanhZpz0RnkR7PJzU\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"\" width=\"285\" height=\"275\"></a></p><p style=\"margin:0;text-align:center;\"><strong>HAAS EC-1600 YZT HORIZONTAL MACHINING CENTER</strong><br>X-64\", Y-50\", Z-40\", 30\" Rotary Platter, 64\" x 32\" Table, 10K RPM, TSC, 30 HP, 2013, #44301<br><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3tovCKvewOMYeyHinOEAM-2F2ezxiiTgZhvhZTw0BwhLvtdJTjyqia3rVnxyVMs8THy3498cmuP9qg1W-2BZe-2BDb7EoPxkLi-2FoQn9-2BQSAz5RPYbXuXKSJVMvrtoQ-2FB0Y3wZ5esjuqsTHYtMcaGYnG6WIdpgNjoP7kKvZBHPxyaOWBjY8-3Ds-qt_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98K1NRcskFivWGivuw4ANxUDiExM1SOR0DKub3tYtxv0ErQW7lO4cGx9Zwnn0sv1nvToUHh145ju-2Fi-2B21CIEldjb7sYF4iHAzGgPqCc1BPKX-2BZ9oFbIUOH0NcXNIP1ET1zqtBczQfQUnfvIyJ2u8LgX5olCS83Ojqg1x4vJ62n9BXO-2By-2BqS3RJpOaxcaooNg04mwoUxwqFw1-2FCufBfydRv2\"><u>VIEW FULL DETAILS</u></a></p><p style=\"margin:0;text-align:center;\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamxkiUGS2Xkuxd80KifDHiuH-2B5PKBCWSvcpAFQqnYOJZB23m5Wbpm12dcMeHxQ-2Fo00jB1HWXzhwJn8dkup9OByNdQNYQfTwWeDa-2FZsDAqKPTbw-3D-3DHvYe_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FQsd9c-2ByMjBW7VqtpnT2lQrDWvj4LekJ0H1LDoigPBi0P45r-2Bx49f-2FlI6MAoxRgHlwEzLKKb4tBDYkvaVrAR35499ehUP-2FYIjeCOWnQiX79QzcBcxIGjZO8-2BwBK8x1H5JZ6Xl3anYfs4V7bKxb0QeBIvqu9MCFhNJL2fLeSPQlRy9bgVTBW2evXuxJphICVmrsuFmggWT5p6RL6tdtMJg1\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"\" width=\"285\" height=\"275\"></a></p><p style=\"margin:0;text-align:center;\"><strong>HAAS VF-6/50 CNC VERTICAL MACHINING CENTER</strong><br>X-64\", Y-32\", Z-30\", 64\" x 28\" Table, 10K RPM, 30-ATC, TSC, 4th &amp; 5th Axis Ready, Haas CNC, 2011, #44300<br><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamxkiUGS2Xkuxd80KifDHiuH-2B5PKBCWSvcpAFQqnYOJZB23m5Wbpm12dcMeHxQ-2Fo00jB1HWXzhwJn8dkup9OByNdQNYQfTwWeDa-2FZsDAqKPTbw-3D-3DDHVf_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98Rc7r-2FG8PUcXZDi301mNzlNpOgvqqkzuFooEfFd1DQ-2Fw6wtBkLoCvj30EPYk8L-2FMflRdcgM1SpRBuTRjARkIZwTVX6DgNys-2FbcJITor4s0HqHDx6iU7nVuuAAplLsN8kYxzPeLHT97y2ZIPphDFUT0ZL4P-2FGKMjSujBosypMygVeae2zz1nFK-2FbRff0J2ViGzMJ-2BsqQPinHfymWDONg0p-2F\"><u>VIEW FULL DETAILS</u></a></p><p style=\"margin:0;text-align:center;\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6G1rOkM4-2BTOB9NWrPdfi-2FOWtfCNSM2ktA6mzusbaQv-2F81qcJAc0jDWmAZK-2B2bCTvV5K-2F6Ax7blAOr7nlb3QFbatZUauvVWNLqh-2BF-2FFp2y1Za-2BesRuEkUsM5zhoGiYdKWBpqJGnFRyz-2FXsY-2B9WEo3WB42GTi_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98a-2BQ0a3a-2FZBPYIvnRWEQ2dyj7s3-2BUKq-2B-2FimaNwsI-2B98dV-2F77oDo-2FYVGgJSZUUIabFTTWw-2B0t1XTg-2FiYEKROuZtC0YJmQoF5TUclpPwQee9NCJHUs4esAFijZp9xzASzIu9TRf0J8Dhh5Ud50y3GE08qWuc35UNJRZHxvt-2FpYrdTM2MxmOeQwMsV5slQ0WRO4l728Rond6doT-2Bv9-2Bx2TOVI\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"\" width=\"285\" height=\"275\"></a></p><p style=\"margin:0;text-align:center;\"><strong>HAAS ST30 CNC TURNING CENTER</strong><br>21\" Swing, 32.5\" Centers,<br>V12 Turret, Tailstock, Chip Conveyor, Steadies, Haas CNC Control, 2018, #44220<br><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6G1rOkM4-2BTOB9NWrPdfi-2FOWtfCNSM2ktA6mzusbaQv-2F81qcJAc0jDWmAZK-2B2bCTvV5K-2F6Ax7blAOr7nlb3QFbatZUauvVWNLqh-2BF-2FFp2y1Za-2BesRuEkUsM5zhoGiYdKWBpqJGnFRyz-2FXsY-2B9WEo3WB4-Etn_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2B8AhhSWa-2FabAsPK7tmeKKHz0gKPh42XNRdpc81ZbPl2yNRy8bOhUBFxH5E0hQ1fzylntM2N7M4m5T6s45NoIXlirsANTlJKH7dU8-2BfDxehLlgF400bW-2BQSI0GM2hSCVnWnCmq-2FPqr2cuK36BMzcc789zXbjbtETDv2Ss4DqEZqKF5wK8Onh0MWSPsh3U6ivvbWdIOJyeiEXrCsJlw7EcNq\"><u>VIEW VIDEO / VIEW FULL DETAILS</u></a></p><p style=\"margin:0;text-align:center;\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamzCdBKD88F-2FsXMhtUbgGNlyvshim1Osyxi0U74B30s02HRPjx9pF7-2BSv1-2BDRodqURLc4sbUnQj7hAOjXZUKC2LaUjcv5JIMFbpuT5F-2FJW8S5Q-3D-3D-EMh_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FAnqi6IwK4l8kbm8JHQ1MXIp-2FJ0iR4dNwSdl2bAmhybzvINA1dznALMIC1J2MSHB4TYuulFfyQ7vWec-2BIetIscQujwrtNJZG7fs9TFv5mTFqLw6l30D-2BMcjzRKxCfNE7HlGd-2FsEDM7fk5k6lyVyOOnFIyBqF30-2By1vK9e7P9nRL1zK1ptXEn383zgMlTzkLDqCGt1aHltW-2F71SBpf-2B8-2BZD\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"\" width=\"285\" height=\"275\"></a></p><p style=\"margin:0;text-align:center;\"><strong>HAAS VF-6/50 CNC VERTICAL MACHINING CENTER</strong><br>X-64\", Y-32\", Z-30\", 7,500 RPM, CAT 50, 30-ATC, 2-APC, Chip Conveyor, Haas CNC, 2012, #44051<br><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamzCdBKD88F-2FsXMhtUbgGNlyvshim1Osyxi0U74B30s02HRPjx9pF7-2BSv1-2BDRodqURLc4sbUnQj7hAOjXZUKC2LaUjcv5JIMFbpuT5F-2FJW8S5Q-3D-3DOdZH_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2BoqpumL-2B9lVQTV18hJSH-2FuqJ3kVF1WYIRsXrvErdpkdDeqo1j8quv4CzXnsmQifCyV2agYGv8GJ1j7sLZORJic1KwzMB7uyVx65yvWe0vyTPJ3FskEwCbh73geo9J0p0o11Hq8-2Fy-2BvHnuX7lCsyJkwUAM-2BUJW-2FXFWh4XdBt11asebt6v-2BZFF4YKPaq5PHMTm4TsO0S23OfDYVjy7orzIIp\"><u>VIEW VIDEO / VIEW FULL DETAILS</u></a></p><p style=\"margin:0;text-align:center;\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamwn6fGxW57ySINpnpQyONRXp3YrPDp5MRVoyjSj0jP9-2B0rwkcenWkFYYfK1uv3ekxdYuJh7bY5sNvSWS5CQYKbFtbEcAYWIXYj0ChtZr3rjBA-3D-3DvF6H_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98c2S4w05Cn-2BLHUIZ-2Fp9P-2BEOAeEhLBtXMj1Gh96JluMvzTtg87ZCWVAVsZbJ80TM-2BYEbqGJ3PA9AIZeOpoWtckxJnRSf4aGq1hFnHtUcOaUxvwgi3DytlTti5nFM1xuc4xxePOcL-2F7kUOBcfXO62acco4DHsjLBTzptwaxCjp0tUoXZQ7abJPwwBLzDtXhWCPvFUU-2BFb1GuUhIVzs10S34Y\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"\" width=\"285\" height=\"275\"></a></p><p style=\"margin:0;text-align:center;\"><strong>HAAS VF-2SS CNC</strong><br><strong>VERTICAL MACHINING CENTER</strong><br>30 Station Side Mount ATC, Renishaw Probe, Low Hours, Like New, 2018, #43584<br><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamwn6fGxW57ySINpnpQyONRXp3YrPDp5MRVoyjSj0jP9-2B0rwkcenWkFYYfK1uv3ekxdYuJh7bY5sNvSWS5CQYKbFtbEcAYWIXYj0ChtZr3rjBA-3D-3D0yv0_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FqKKXJNzLfcL-2Fhlh4uKj0dsYl0L8I6p4wCu8D9aDS-2FPfAQE2bLmQiuL-2FBdK1oWZEc-2Ft9EcD4qACYe7dPIetntpgpfbb-2BlClktYmgnCJU3wSnCOnPVZo4w-2FVFx-2BwvHa1NaceHXO37nXEYGl99x22J0FdNS0hd3ChuOWXuykNNmpXJvV99RMqXrkC5Yt-2Bo-2BtVXWejnNSarrLH7fCk1X-2BE7ke\"><u>VIEW VIDEO / VIEW FULL DETAILS</u></a></p><p style=\"margin:0;text-align:center;\"><a href=\"/apps/mail/mailto?to=scott@prestigeequipment.com\"><strong>CONTACT SCOTT LINZER FOR MORE INFORMATION</strong></a><br><a href=\"/apps/mail/mailto?to=scott@prestigeequipment.com\">scott@prestigeequipment.com | </a>O: 631-249-5566 | M: 516-972-8791</p><p style=\"margin:0;text-align:center;\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6E6oCSy3P3qwEEyjHSbcR1BHYk0ylK2EUaPdAsdL-2BZeXP2cGbni16Q2nQONn6zSyYXC3CgrP1dkj835eeg9c0izy-2FJbCG2AeYuWyX50EFQPI-2BzAjMkf59hvOljKXkPHdoY-3DU4d8_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98PpBK-2FyuNfXmjKsBUszMDQs8x8x8JPS0Kxn7KqNrOnS-2BrwzQpSSYWBqveHW9yrMcX8FGIZaWarPZ-2FK0HFip-2F2fitj2m3WxZFFVzEcpc-2FceuUE4dqF2ZC07kYWumRtI4wyo79TXlY04RvX66XWraYQMEmqOT-2BcBKBvkGj2-2FzRtV-2BcU1tPCxyk0Hnhs2PKqkU1Bw0ePDUHQ-2FvwIU8lKZRA27\"><span style=\"color:#000;\"><strong>What Do</strong></span></a> <a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6E6oCSy3P3qwEEyjHSbcR1BHYk0ylK2EUaPdAsdL-2BZeXP2cGbni16Q2nQONn6zSyYXC3CgrP1dkj835eeg9c0izy-2FJbCG2AeYuWyX50EFQPI-2BzAjMkf59hvOljKXkPHdoY-3DzfJN_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98CvdyXLvUMU4yP-2BtRN8fHBCN9XCUcivasqX0gg4QjLvlCn02j69sMUbadYNVsXgjUXwMCRW7X2UX71Wnmh2rvQ0YwU8DSInnWck3DVNJy9o5cTgf8DeKQAql549YkbpU1FdNYhgWA2d2LeSAwfMQJs1P4KPDm-2FMuTR62RHjNvdT6M1Xb3LOJFXzIZB9oP-2FnH4RLLKZVZHdiM4XGrol-2Btjd\"><span style=\"color:#186997;\"><strong><u>YOU</u></strong></span></a> <span style=\"color:#000;\"><strong>Have For Sale?</strong></span></p><p style=\"margin:0;text-align:center;\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6E6oCSy3P3qwEEyjHSbcR1BHYk0ylK2EUaPdAsdL-2BZeXP2cGbni16Q2nQONn6zSyYXC3CgrP1dkj835eeg9c0izy-2FJbCG2AeYuWyX50EFQPI-2BzAjMkf59hvOljKXkPHdoY-3Dl3r6_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n99TXiKuPVHaZ03oJDstTcZDrmv8SWiANuxl6gBUrDBV2XfQG61eR8xYQ04mWOxVuHXS2iWtK43qY95kZcn-2FTJ-2FjauNM2dT-2FBEhTHPrPjZoD-2FBWTVljzCBOWDHI-2B8-2F0myPFHvkCOdygKXaVBs0KqNjSjJQEuxQC9RA89937mdpHia0eBHh-2FYL-2Feife85CJe1VIxRGq3g1Wep07XOPXVvQWrz\"><span style=\"color:#000;\">We Specialize in Purchasing All Types Of Industrial Machinery, Entire Facilities and Industrial Real Estate. Get Started Now!</span></a></p><p style=\"margin:0;text-align:center;\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6E6oCSy3P3qwEEyjHSbcR1BHYk0ylK2EUaPdAsdL-2BZeXP2cGbni16Q2nQONn6zSyYXC3CgrP1dkj835eeg9c0izy-2FJbCG2AeYuWyX50EFQPI-2BzAjMkf59hvOljKXkPHdoY-3D-BMB_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FNe2e8eWBkpFQq-2FjkVlLvZT7-2BWANNYcWn5epGoN9kHSxvXZTzzbXC9W-2B4xpnKbsROz-2Bdt0l1JlOu23n2vFQLv-2BawSJWXyioqh7YWCOnjQm8AxE88ndj1Cyt-2FNvKN0a3DLZddvwcB0FcahoyflPDKaSiis76-2BtnLhKWDlBgu8zRwFcsPGeX4Lcflkt6p28ExkSJZg1KBFUMuXGTVZiHIVzk\">SELL YOUR MACHINERY</a></p><figure class=\"image\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"\" width=\"200\"></figure><figure class=\"image\"><img style=\"aspect-ratio:32/32;\" src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"Fb\" width=\"32\" height=\"32\"></figure><figure class=\"image\"><img style=\"aspect-ratio:32/32;\" src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"Tw\" width=\"32\" height=\"32\"></figure><figure class=\"image\"><img style=\"aspect-ratio:32/32;\" src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"Yt\" width=\"32\" height=\"32\"></figure><figure class=\"image\"><img style=\"aspect-ratio:32/32;\" src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"Ig\" width=\"32\" height=\"32\"></figure><figure class=\"image\"><img style=\"aspect-ratio:32/32;\" src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"In\" width=\"32\" height=\"32\"></figure><p style=\"margin:0;text-align:center;\">Prestige Equipment  |  <a href=\"/apps/mail/mailto?to=sales@prestigeequipment.com\"><u>sales@prestigeequipment.com</u></a><br>35 Pinelawn Road, Melville, NY 11747  |  631-249-5566</p><p style=\"margin:0;text-align:center;\"><br> </p><p style=\"margin:0;text-align:center;\">Proud Members Of:</p><figure class=\"image\"><img style=\"aspect-ratio:38/38;\" src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"mdna\" width=\"38\" height=\"38\"></figure><figure class=\"image\"><img style=\"aspect-ratio:38/38;\" src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"IAA\" width=\"38\" height=\"38\"></figure><figure class=\"image\"><img style=\"aspect-ratio:38/38;\" src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"nysaa\" width=\"38\" height=\"38\"></figure><figure class=\"image\"><img style=\"aspect-ratio:38/38;\" src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"fma\" width=\"38\" height=\"38\"></figure><figure class=\"image\"><img style=\"aspect-ratio:38/38;\" src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"amt\" width=\"38\" height=\"38\"></figure><figure class=\"image\"><img style=\"aspect-ratio:38/38;\" src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"amea\" width=\"38\" height=\"38\"></figure><figure class=\"image\"><img style=\"aspect-ratio:38/38;\" src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"eamtm\" width=\"38\" height=\"38\"></figure><figure class=\"image\"><img style=\"aspect-ratio:38/38;\" src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"aisc\" width=\"38\" height=\"38\"></figure><p style=\"margin:0;text-align:center;\">You are receiving this email because you opted in at <a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.YZa2-2Fv95qyaQ0Esd0DqHPseu6wZUcWbsNdJ5oijrR5sExkuusJt5azpJcfKQq56G6WJ06bhBs29YCqIdLmKlDY1EJFwT3BYopvdlTcnRsvErgBeRfQctFlRTn6UfK2H2iathzyc3jfPlzGwAWgVAZg-3D-3D1UTQ_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n99XmV1HXmEhYdZIMHR7V2ChlG3G64I2c1Zfb7Va79o5IHfN5xIepHC5fhQ58KwBFl04CIpVTtzve-2BP2xYY3keKzLx78ZAboO5OBg5-2Bydgao9PjTtCYw4iIsEGGKS0Ap7OOhM4wzwVNiBjOAaNLCXMcInL8CCiGxz06ARwqtCdoMoVwZcwf9c1QlAAWFTCEPZgZuqPnFwjJELiNK7sT-2FzKCd\"><u>prestigeequipment.com</u></a>. If you don\'t want to receive these emails in the future, please <a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.YZa2-2Fv95qyaQ0Esd0DqHPhUfzttN13nfTXFbfaY-2FTitJpfh9uvSqrEef3LeLhzKlMIINZ2o4rWLRfYYRKyxDEH-2B6J9VHNO-2FvOKeO4fNpjE0AApOPTsuU8Vg9CN146nq30r-2BQcCHmobr01LI24Uv756njSTcmGCV0YQ8ElAsLpGey6HZiKj4wjw7UkIwmX65eOo5sf8Ijw8YWhGL9HoNEqg-3D-3DsebQ_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FFHFOkN9PnNSN9Ra95L3qEaX0AFW-2BZbqatpuzMySWNkZw9ALEzsrZMfYSC4jSW523s-2FoFUhSTr8e3ejKK8tvht2X4FJ5fLq-2Fp2sZ1YFoxNHMZivELOKpbCfRxbn1VcE-2FeBBuSMvQ9GejXTatT85jMQvx8ZW2sK6sTKYX972myBfdqn1SeAmxVBYA6bElERzryRG1bfwt9JtoKEZOE2sO1M\"><u>Update Your Subscription Preferences</u></a> or <a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.YZa2-2Fv95qyaQ0Esd0DqHPhUfzttN13nfTXFbfaY-2FTitJpfh9uvSqrEef3LeLhzKlMIINZ2o4rWLRfYYRKyxDEGnegSZEPYSUmh3UiFsJEjIPLiMYyIY1WfmzRn-2BBRQO5xedMiaW-2FNK70OajGwAvMqAS3XwLgCRiuUrcZPXUkAeg5NQu3Cvq17KNMmdo-2FpaU5TELp_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2BwwpcDaf5-2F8r2xnmoMPiQolH-2BxC2f1ma-2B8EoQ2r9hKeygLPW4FfNMss91GR43-2BxhXHTpV1cp2t1lPjCOhqDwe7lsGPdU1ofJTepmfQS0kYz5bYE-2FULNUL8dtAxvN3oS5dLKn3BnwfYhMXm1cAeaRXdO0M15dzcH2xWnOkkZr5bJNv8G-2BXZPO7kprcWDBECex91xwYokid-2BkSakRsBw0mgV\"><u>Unsubscribe</u></a></p><p style=\"margin:0;\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"\" width=\"1\" height=\"1\"></p></blockquote></blockquote></div>\r\n</body></html>','Hey Rick,\r\n \r\nSorry for the late response, this email got flagged for spam because of the\r\nlink. But I would say that the ST30 could potentially be lucrative at the\r\nright price point, would you like me to reach out to this vendor and see\r\nwhat their offerings are?\r\n \r\nRegards,\r\nJason\r\n \r\n\"Rick\" rick@mavrix.one – September 24, 2025 11:01 AM \r\n\r\n> Anything here fit our needs? \r\n>  \r\n> Rick Mislan, PhD, \r\n> Founder, CTO\r\n> mavrix1.com\r\n> CONFIDENTIALITY NOTICE: This communication is confidential and intended\r\n> only for the intended recipient.  If you are not the intended recipient,\r\n> you may not copy, disclose, or distribute this message to anyone else;\r\n> any such actions may be unlawful. If you have received this\r\n> communication in error, please contact the sender of the message to\r\n> inform him or her of the error.\r\n> On September 24, 2025 at 10:36:22 AM, Thomas Pownall\r\n> (tpownall@cadx-pcb.com) wrote:\r\n>\r\n>> Here is some equipment you could use.\r\n>> -- Tom\r\n>>  \r\n>> ---------- Forwarded message ---------From: Prestige Equipment\r\n>> <scott@prestigeequipment.com>Date: Mon, Sep 22, 2025 at\r\n1:26 PMSubject:\r\n>> HAAS Late Model Machining Centers and Lathes Available ImmediatelyTo:\r\n>> <tpownall@cadx-pcb.com> \r\n>>  \r\n>> 2018 HAAS VF-11/40 CNC VMC, HAAS VF-3YT/50 4-Axis CNC VMC, HAAS\r\n>> VF-5/50XT CNC VMC, HAAS EC-1600 YZT HMC, HAAS VF-6/50 CNC VMC, 2018\r\n>> HAAS ST30 CNC Turning Center, HAAS VF-6/50 CNC VMC, 2018 HAAS VF-2SS\r\n>> CNC VMC\r\n>>\r\n͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ \r\n>> Having trouble viewing this email? View in web browser\r\n>>\r\n>> CONTACT SCOTT LINZER[1]\r\n>> Scott@prestigeequipment.com[1]\r\n>>  O: 631-249-5566 | M: 516-972-8791\r\n>>\r\n>> HAAS VF-11/40 CNC VERTICAL MACHINING CENTERX-120\", Y-40\", Z-30\", 15K\r\n>> RPM, TSC, Probe, 40 ATC, BT-40, TSC, Haas CNC, 2018, #44347VIEW FULL\r\n>> DETAILS\r\n>>\r\n>> HAAS VF-3YT/50 4-AXIS CNC VERTICAL MACHINING CENTERX-40\", Y-26\", 30\r\n>> Sta. Side Mounted ATC, Wireless Probe, Pre-Wired 4th Axis , 10,000 RPM,\r\n>> 2011, #44317VIEW FULL DETAILS\r\n>>\r\n>> HAAS VF-5/50XT CNC VERTICAL MACHINING CENTERX-60\", Y-26\" Z-25\", #50\r\n>> Taper, 7,500 RPM, 4th/5th Axis Ready, 30 ATC, Chip Auger, Haas CNC,\r\n>> #44302VIEW FULL DETAILS\r\n>>\r\n>> HAAS EC-1600 YZT HORIZONTAL MACHINING CENTERX-64\", Y-50\", Z-40\", 30\"\r\n>> Rotary Platter, 64\" x 32\" Table, 10K RPM, TSC, 30 HP, 2013, #44301VIEW\r\n>> FULL DETAILS\r\n>>\r\n>> HAAS VF-6/50 CNC VERTICAL MACHINING CENTERX-64\", Y-32\", Z-30\", 64\" x\r\n>> 28\" Table, 10K RPM, 30-ATC, TSC, 4th & 5th Axis Ready, Haas CNC, 2011,\r\n>> #44300VIEW FULL DETAILS\r\n>>\r\n>> HAAS ST30 CNC TURNING CENTER21\" Swing, 32.5\" Centers,V12 Turret,\r\n>> Tailstock, Chip Conveyor, Steadies, Haas CNC Control, 2018, #44220VIEW\r\n>> VIDEO / VIEW FULL DETAILS\r\n>>\r\n>> HAAS VF-6/50 CNC VERTICAL MACHINING CENTERX-64\", Y-32\", Z-30\", 7,500\r\n>> RPM, CAT 50, 30-ATC, 2-APC, Chip Conveyor, Haas CNC, 2012, #44051VIEW\r\n>> VIDEO / VIEW FULL DETAILS\r\n>>\r\n>> HAAS VF-2SS CNCVERTICAL MACHINING CENTER30 Station Side Mount ATC,\r\n>> Renishaw Probe, Low Hours, Like New, 2018, #43584VIEW VIDEO / VIEW FULL\r\n>> DETAILS\r\n>> CONTACT SCOTT LINZER FOR MORE\r\n>> INFORMATIONscott@prestigeequipment.com | O: 631-249-5566 | M:\r\n>> 516-972-8791\r\n>> What Do YOU Have For Sale?\r\n>> We Specialize in Purchasing All Types Of Industrial Machinery, Entire\r\n>> Facilities and Industrial Real Estate. Get Started Now!\r\n>> SELL YOUR MACHINERY\r\n>> Prestige Equipment  |  sales@prestigeequipment.com35 Pinelawn Road,\r\n>> Melville, NY 11747  |  631-249-5566\r\n>>  \r\n>> Proud Members Of:\r\n>> You are receiving this email because you opted in\r\n>> at prestigeequipment.com. If you don\'t want to receive these emails in\r\n>> the future, please Update Your Subscription\r\nPreferences or Unsubscribe\r\n\r\n\r\n\r\nLinks:\r\n------\r\n[1] /apps/mail/mailto?to=scott@prestigeequipment.com',0,0,0,0,0,0,'2025-09-25 17:47:02','2025-12-09 19:29:07','2025-12-09 19:29:07','2025-12-09 19:29:07',NULL,NULL,NULL),
(792,4,'<20250925175530.Horde.CQ-xw8128BvuVs1FkEkZUqC@mavrix1.aponte.to>',NULL,NULL,'Re: Fwd: HAAS Late Model Machining Centers and Lathes Available Immediately','jason@mavrix.one','Jason Blick','<!DOCTYPE html>\r\n<html><meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\"><body>\r\n<p style=\"margin:0;\">Harrison messaged me yesterday and said that he would be unavailable the rest of this week, but that he would reach out shortly about setting something up for next week.</p><p style=\"margin:0;\"> </p><div class=\"quote\"><p style=\"margin:0;\">\"Rick\" rick@mavrix.one – September 25, 2025 1:47 PM<br> </p><blockquote><p style=\"margin:0;\">No I was just sharing.  I think we’re buying new.  </p><p style=\"margin:0;\">Any updates on Harrison?<br><br> </p><p style=\"margin:0;\"><br> </p><p style=\"margin:0;\">Rick Mislan, PhD, </p><p style=\"margin:0;\">Founder, CTO</p><p style=\"margin:0;\"><a href=\"http://mavrix1.com/\">mavrix1.com</a></p><p style=\"margin:0;\">CONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.</p><p style=\"margin:0;\">On September 25, 2025 at 1:47:02 PM, Jason Blick (<a href=\"/apps/mail/mailto?to=jason@mavrix.one\">jason@mavrix.one</a>) wrote:</p><blockquote><p style=\"margin:0;\">Hey Rick,</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\">Sorry for the late response, this email got flagged for spam because of the link. But I would say that the ST30 could potentially be lucrative at the right price point, would you like me to reach out to this vendor and see what their offerings are?</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\">Regards,</p><p style=\"margin:0;\">Jason</p><p style=\"margin:0;\"> </p><div class=\"quote\"><p style=\"margin:0;\">\"Rick\" rick@mavrix.one – September 24, 2025 11:01 AM<br> </p><blockquote><p style=\"margin:0;\">Anything here fit our needs?<br><br> </p><p style=\"margin:0;\"><br> </p><p style=\"margin:0;\">Rick Mislan, PhD, </p><p style=\"margin:0;\">Founder, CTO</p><p style=\"margin:0;\"><a href=\"http://mavrix1.com/\">mavrix1.com</a></p><p style=\"margin:0;\">CONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.</p><p style=\"margin:0;\">On September 24, 2025 at 10:36:22 AM, Thomas Pownall (<a href=\"https:/apps/mail/mailto?to=tpownall@cadx-pcb.com\">tpownall@cadx-pcb.com</a>) wrote:</p><blockquote><p style=\"margin:0;\">Here is some equipment you could use.</p><p style=\"margin:0;\">-- Tom</p><p style=\"margin:0;\"><br><br> </p><p style=\"margin:0;\">---------- Forwarded message ---------<br>From: <strong>Prestige Equipment</strong> &lt;<a href=\"https:/apps/mail/mailto?to=scott@prestigeequipment.com\">scott@prestigeequipment.com</a>&gt;<br>Date: Mon, Sep 22, 2025 at 1:26 PM<br>Subject: HAAS Late Model Machining Centers and Lathes Available Immediately<br>To: &lt;<a href=\"https:/apps/mail/mailto?to=tpownall@cadx-pcb.com\">tpownall@cadx-pcb.com</a>&gt;<br> </p><p style=\"margin:0;\"><br><br> </p><p style=\"margin:0;\">2018 HAAS VF-11/40 CNC VMC, HAAS VF-3YT/50 4-Axis CNC VMC, HAAS VF-5/50XT CNC VMC, HAAS EC-1600 YZT HMC, HAAS VF-6/50 CNC VMC, 2018 HAAS ST30 CNC Turning Center, HAAS VF-6/50 CNC VMC, 2018 HAAS VF-2SS CNC VMC</p><p style=\"margin:0;\">͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ </p><p style=\"margin:0;\">Having trouble viewing this email? <a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.YZa2-2Fv95qyaQ0Esd0DqHPseu6wZUcWbsNdJ5oijrR5vPQvMAZAJSp-2B-2FHtToOUzy91Z6i2WCqlu6QVGFHa3v4-2FmHS1tBSiH4d2nfJjlge3PNE0vNsL6dFwW9-2FClNDGQXIqcRtQFX31x4WM6sHjF-2FTtBNQITR7A7MkPG9-2BPRTM34oaAzAi8t4ux5z6WUT385joUkqk_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2Bb8-2BhVSuBVVwaLS0cEXSl567RLAbx1WnR18gXRYxi01cqqPZEOiLb-2BuUCOHgRmvFbgl261Xh-2BSQQhUoXk65J0cJU9354hG71cqc2h6BUrbe-2FOVErGw5PkQRDgjsGQ-2BrlYBkcRX2G3gHWdtTCqD8ZFrpCF6QBuxeCfpSe003TTdxV5mWYe4EEDGSkn0D6ig-2FQKLsXpXkCodkvgxTnYvUXQd\">View in web browser</a></p><p style=\"margin:0;text-align:center;\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6E6RJNpN1XitjoQ-2FPLJOjbTwFpuVUdxuiEDdQglcL629H-2BMI3zRumaeRagK3Kqj3JNbVhUW5wU7mxy6jh3X5MO7KtbAwDg6YR1CiwQMbo0inQ-3D-3DxjiN_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2F9Ln4GVwiExN5BztEOsENRHJgG91Rd9vAq88N91tvW73mQ67byKIlvQiGKguNTpHUYwvzZvk0g9FrJNsXtx5a7avcDNGl6C61-2BPLsKrUMIdhgzuOpB2jVJ3EWMmT4Pq9CDaH-2Bz-2FegtCXLmdjo6YrZ8ZyoTViESOh-2FbNTdjrnTXUdlmyRoDVhro8FWtCXMmXOgqhTYimptJUsUXoqwdN-2Fu4\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"Prestige Equipment\" width=\"130\" height=\"70\"></a></p><h4 style=\"text-align:right;\"><a href=\"https:/apps/mail/mailto?to=scott@prestigeequipment.com\"><strong>CONTACT SCOTT LINZER</strong></a><br><a href=\"https:/apps/mail/mailto?to=scott@prestigeequipment.com\">scott@prestigeequipment.com</a><br> O: 631-249-5566 | M: 516-972-8791</h4><p style=\"margin:0;\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"\" width=\"600\"></p><p style=\"margin:0;text-align:center;\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamyLuOpuBlePnf4SfD5v-2BhFr1jCTkFIKBodlI3tfddomhdHovm-2BCCxfPpuZjRaZP5SnjZLqt-2Fw1iNDbFN-2Fro098l6N3qScDRfmZpvh-2BhnjGCCw-3D-3DZ4e__xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n99nIF5D7uoxHnUpJVlcP8JfB0gSvdZpbVr3sHtAItYr5eMZEh73FO1XaRMFRcE4It2ZbWwkQbjVfkMOQsCiKxEq0hurNihRNr9UFVVWWCwdGRbVkvjlCd9VGJ83si2jUtidboDEU21yhk0oWGpX6jCXIXtz9n-2Be03O-2Bljz8nXZX4kOFLTdSzAR2iUfH18q0v6O7BqQ7-2BqJEOm01lCgetCDc\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"\" width=\"285\" height=\"275\"></a></p><p style=\"margin:0;text-align:center;\"><strong>HAAS VF-11/40 CNC VERTICAL MACHINING CENTER</strong><br>X-120\", Y-40\", Z-30\", 15K RPM, TSC, Probe, 40 ATC, BT-40, TSC, Haas CNC, 2018, #44347<br><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamyLuOpuBlePnf4SfD5v-2BhFr1jCTkFIKBodlI3tfddomhdHovm-2BCCxfPpuZjRaZP5SnjZLqt-2Fw1iNDbFN-2Fro098l6N3qScDRfmZpvh-2BhnjGCCw-3D-3DviGj_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98159Dy9uPqgN2yABfpQLTcERg-2FzPBsI6y0qUuWG0IShjC3EGqwrqXO5aaLb6-2FTorav2itstz5ptAX-2FNiTFyipbm4MeHyAoNEqXE0lM1usOWaKt6zb0cUufOk416ltEmhJNjAh-2B8sjCiCo51cLRdlbA4tO8c1PO8UiiMSjbMEOzshpT3HgOGiFnuL5qUtmbfpLEy9mGxL2T5vCeZSEfjXPK\"><u>VIEW FULL DETAILS</u></a></p><p style=\"margin:0;text-align:center;\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamzH356J0-2B8YZzi6orzP56P0YJyeLbROr0L9z6uCD5nGubCgqDSANrObYdft9fH4hRnd-2BiSrh8Q8JmrZAPXmfcI-2BZBI79U35QP-2FFyL7Oqmf4zw-3D-3DnL23_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98K2Hj7-2BH4bsPPxXRWD-2F6gJ4cwUy9efLv8QdbNmga-2FjpSRRm9UhJJFnmqVxgB4gSEb08AeSwCh0iZCRxplYi5EqOJ5tL1W8IDv0P-2F0568j7D4SWuv6r5FnxmA48PRtI0JMOmy4piCDQligJB8nR9yd-2BxwH4Rpke-2Bew1U73jET009rBpJPLdy9nwBxOcvsZ64B-2FMmJVG1WYGslujKmagOkFh\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"\" width=\"285\" height=\"275\"></a></p><p style=\"margin:0;text-align:center;\"><strong>HAAS VF-3YT/50 4-AXIS CNC VERTICAL MACHINING CENTER</strong><br>X-40\", Y-26\", 30 Sta. Side Mounted ATC, Wireless Probe, Pre-Wired 4th Axis , 10,000 RPM, 2011, #44317<br><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamzH356J0-2B8YZzi6orzP56P0YJyeLbROr0L9z6uCD5nGubCgqDSANrObYdft9fH4hRnd-2BiSrh8Q8JmrZAPXmfcI-2BZBI79U35QP-2FFyL7Oqmf4zw-3D-3D_KP4_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2BKLaJtzUsofBqouVqlscFl0B7mELeWqRPFCab2kkTPKwCWZIa8oI95DoiweBjkXidwzMDTafvuLEUH-2FiU-2Fn6j4AnyG9ZpJNyZj6zVLc0l-2BKemZy2VBgsqYwZgXMFoqu4Zw79-2Bq4uj2iaEbfsWWIQbGbhCRDKEzopx2SwE5Wmm9sRE7INkzOIs9qFAQPB9ARnjmcZHZJLEwN0M1SpRebVKI\"><u>VIEW FULL DETAILS</u></a></p><p style=\"margin:0;text-align:center;\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamyEGe6ppo3IPxlPhH1No9JgGXBTzcgHs9fM9-2FfCNnJtPTjKA80l3FAJAQWjRFfOnd6C0sc58EcS0bVp4qYYhEXVJlcylSsglutTkcljiSh6Pg-3D-3Dx3oe_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FtU0STLbDL1KMuueHTWffLBAIANsg058QsI10fBwEkemWaVKs9lNYMuW2SzOV7n4yF801diT3ztvYUcYz-2BxLA5-2B2S8GNjc7yHuahD4DAl-2FcRLg0Oj9Ib0aBHbeOW00aZkQPqXMbST3ihkz8bEX8ccahH4sn628NoiAknH3obbERquXV3XBImQgc9xvy2zAqFwTNyBl2sEiebTw-2BHsaLp6z\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"\" width=\"285\" height=\"275\"></a></p><p style=\"margin:0;text-align:center;\"><strong>HAAS VF-5/50XT CNC VERTICAL MACHINING CENTER</strong><br>X-60\", Y-26\" Z-25\", #50 Taper, 7,500 RPM, 4th/5th Axis Ready, 30 ATC, Chip Auger, Haas CNC, #44302<br><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamyEGe6ppo3IPxlPhH1No9JgGXBTzcgHs9fM9-2FfCNnJtPTjKA80l3FAJAQWjRFfOnd6C0sc58EcS0bVp4qYYhEXVJlcylSsglutTkcljiSh6Pg-3D-3D3MA__xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2BTXgDNyV5GVGY-2BmGohiku88BcgP7OLVEknp8bsupbSRmAjcpgWh6m-2FMclLINcM9kiLNYzEgZMb8HKZzbRno4bNwqF-2FKdTwrcTcj24dY80rvBf-2ByjDaB0UurhC66izVtUZb5W-2B42fyCwrmcCTiF-2F2BooKCIy1Jm9ZGxZ2ezLNOoRGGX5OfM0Ux8O26oUThs1vMUQ82PXsvFQPWALLvQb4Js\"><u>VIEW FULL DETAILS</u></a></p><p style=\"margin:0;text-align:center;\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3tovCKvewOMYeyHinOEAM-2F2ezxiiTgZhvhZTw0BwhLvtdJTjyqia3rVnxyVMs8THy3498cmuP9qg1W-2BZe-2BDb7EoPxkLi-2FoQn9-2BQSAz5RPYbXuXKSJVMvrtoQ-2FB0Y3wZ5esjuqsTHYtMcaGYnG6WIdpgNjoP7kKvZBHPxyaOWBjY8-3DEJhy_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2BrtFnqrZ5TbjUahSA2D4wwtfCAX7qqN3-2FpL9Mecp2ioKb4pJvplmefSpXg09u9aXgRr1SBIQxXdoQ-2F1njXtfKSraOY2aGAVIolkhwX8wAQK4Ov4erw5HrMLlUJKqGYbZeSjGfPezer-2BjWxRAXNXhoTHj4AFKTWNfcLNV46-2F4RgGm4IXc8EEfvHoCf-2B36iLxdGcNHOyanhZpz0RnkR7PJzU\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"\" width=\"285\" height=\"275\"></a></p><p style=\"margin:0;text-align:center;\"><strong>HAAS EC-1600 YZT HORIZONTAL MACHINING CENTER</strong><br>X-64\", Y-50\", Z-40\", 30\" Rotary Platter, 64\" x 32\" Table, 10K RPM, TSC, 30 HP, 2013, #44301<br><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3tovCKvewOMYeyHinOEAM-2F2ezxiiTgZhvhZTw0BwhLvtdJTjyqia3rVnxyVMs8THy3498cmuP9qg1W-2BZe-2BDb7EoPxkLi-2FoQn9-2BQSAz5RPYbXuXKSJVMvrtoQ-2FB0Y3wZ5esjuqsTHYtMcaGYnG6WIdpgNjoP7kKvZBHPxyaOWBjY8-3Ds-qt_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98K1NRcskFivWGivuw4ANxUDiExM1SOR0DKub3tYtxv0ErQW7lO4cGx9Zwnn0sv1nvToUHh145ju-2Fi-2B21CIEldjb7sYF4iHAzGgPqCc1BPKX-2BZ9oFbIUOH0NcXNIP1ET1zqtBczQfQUnfvIyJ2u8LgX5olCS83Ojqg1x4vJ62n9BXO-2By-2BqS3RJpOaxcaooNg04mwoUxwqFw1-2FCufBfydRv2\"><u>VIEW FULL DETAILS</u></a></p><p style=\"margin:0;text-align:center;\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamxkiUGS2Xkuxd80KifDHiuH-2B5PKBCWSvcpAFQqnYOJZB23m5Wbpm12dcMeHxQ-2Fo00jB1HWXzhwJn8dkup9OByNdQNYQfTwWeDa-2FZsDAqKPTbw-3D-3DHvYe_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FQsd9c-2ByMjBW7VqtpnT2lQrDWvj4LekJ0H1LDoigPBi0P45r-2Bx49f-2FlI6MAoxRgHlwEzLKKb4tBDYkvaVrAR35499ehUP-2FYIjeCOWnQiX79QzcBcxIGjZO8-2BwBK8x1H5JZ6Xl3anYfs4V7bKxb0QeBIvqu9MCFhNJL2fLeSPQlRy9bgVTBW2evXuxJphICVmrsuFmggWT5p6RL6tdtMJg1\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"\" width=\"285\" height=\"275\"></a></p><p style=\"margin:0;text-align:center;\"><strong>HAAS VF-6/50 CNC VERTICAL MACHINING CENTER</strong><br>X-64\", Y-32\", Z-30\", 64\" x 28\" Table, 10K RPM, 30-ATC, TSC, 4th &amp; 5th Axis Ready, Haas CNC, 2011, #44300<br><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamxkiUGS2Xkuxd80KifDHiuH-2B5PKBCWSvcpAFQqnYOJZB23m5Wbpm12dcMeHxQ-2Fo00jB1HWXzhwJn8dkup9OByNdQNYQfTwWeDa-2FZsDAqKPTbw-3D-3DDHVf_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98Rc7r-2FG8PUcXZDi301mNzlNpOgvqqkzuFooEfFd1DQ-2Fw6wtBkLoCvj30EPYk8L-2FMflRdcgM1SpRBuTRjARkIZwTVX6DgNys-2FbcJITor4s0HqHDx6iU7nVuuAAplLsN8kYxzPeLHT97y2ZIPphDFUT0ZL4P-2FGKMjSujBosypMygVeae2zz1nFK-2FbRff0J2ViGzMJ-2BsqQPinHfymWDONg0p-2F\"><u>VIEW FULL DETAILS</u></a></p><p style=\"margin:0;text-align:center;\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6G1rOkM4-2BTOB9NWrPdfi-2FOWtfCNSM2ktA6mzusbaQv-2F81qcJAc0jDWmAZK-2B2bCTvV5K-2F6Ax7blAOr7nlb3QFbatZUauvVWNLqh-2BF-2FFp2y1Za-2BesRuEkUsM5zhoGiYdKWBpqJGnFRyz-2FXsY-2B9WEo3WB42GTi_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98a-2BQ0a3a-2FZBPYIvnRWEQ2dyj7s3-2BUKq-2B-2FimaNwsI-2B98dV-2F77oDo-2FYVGgJSZUUIabFTTWw-2B0t1XTg-2FiYEKROuZtC0YJmQoF5TUclpPwQee9NCJHUs4esAFijZp9xzASzIu9TRf0J8Dhh5Ud50y3GE08qWuc35UNJRZHxvt-2FpYrdTM2MxmOeQwMsV5slQ0WRO4l728Rond6doT-2Bv9-2Bx2TOVI\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"\" width=\"285\" height=\"275\"></a></p><p style=\"margin:0;text-align:center;\"><strong>HAAS ST30 CNC TURNING CENTER</strong><br>21\" Swing, 32.5\" Centers,<br>V12 Turret, Tailstock, Chip Conveyor, Steadies, Haas CNC Control, 2018, #44220<br><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6G1rOkM4-2BTOB9NWrPdfi-2FOWtfCNSM2ktA6mzusbaQv-2F81qcJAc0jDWmAZK-2B2bCTvV5K-2F6Ax7blAOr7nlb3QFbatZUauvVWNLqh-2BF-2FFp2y1Za-2BesRuEkUsM5zhoGiYdKWBpqJGnFRyz-2FXsY-2B9WEo3WB4-Etn_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2B8AhhSWa-2FabAsPK7tmeKKHz0gKPh42XNRdpc81ZbPl2yNRy8bOhUBFxH5E0hQ1fzylntM2N7M4m5T6s45NoIXlirsANTlJKH7dU8-2BfDxehLlgF400bW-2BQSI0GM2hSCVnWnCmq-2FPqr2cuK36BMzcc789zXbjbtETDv2Ss4DqEZqKF5wK8Onh0MWSPsh3U6ivvbWdIOJyeiEXrCsJlw7EcNq\"><u>VIEW VIDEO / VIEW FULL DETAILS</u></a></p><p style=\"margin:0;text-align:center;\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamzCdBKD88F-2FsXMhtUbgGNlyvshim1Osyxi0U74B30s02HRPjx9pF7-2BSv1-2BDRodqURLc4sbUnQj7hAOjXZUKC2LaUjcv5JIMFbpuT5F-2FJW8S5Q-3D-3D-EMh_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FAnqi6IwK4l8kbm8JHQ1MXIp-2FJ0iR4dNwSdl2bAmhybzvINA1dznALMIC1J2MSHB4TYuulFfyQ7vWec-2BIetIscQujwrtNJZG7fs9TFv5mTFqLw6l30D-2BMcjzRKxCfNE7HlGd-2FsEDM7fk5k6lyVyOOnFIyBqF30-2By1vK9e7P9nRL1zK1ptXEn383zgMlTzkLDqCGt1aHltW-2F71SBpf-2B8-2BZD\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"\" width=\"285\" height=\"275\"></a></p><p style=\"margin:0;text-align:center;\"><strong>HAAS VF-6/50 CNC VERTICAL MACHINING CENTER</strong><br>X-64\", Y-32\", Z-30\", 7,500 RPM, CAT 50, 30-ATC, 2-APC, Chip Conveyor, Haas CNC, 2012, #44051<br><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamzCdBKD88F-2FsXMhtUbgGNlyvshim1Osyxi0U74B30s02HRPjx9pF7-2BSv1-2BDRodqURLc4sbUnQj7hAOjXZUKC2LaUjcv5JIMFbpuT5F-2FJW8S5Q-3D-3DOdZH_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2BoqpumL-2B9lVQTV18hJSH-2FuqJ3kVF1WYIRsXrvErdpkdDeqo1j8quv4CzXnsmQifCyV2agYGv8GJ1j7sLZORJic1KwzMB7uyVx65yvWe0vyTPJ3FskEwCbh73geo9J0p0o11Hq8-2Fy-2BvHnuX7lCsyJkwUAM-2BUJW-2FXFWh4XdBt11asebt6v-2BZFF4YKPaq5PHMTm4TsO0S23OfDYVjy7orzIIp\"><u>VIEW VIDEO / VIEW FULL DETAILS</u></a></p><p style=\"margin:0;text-align:center;\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamwn6fGxW57ySINpnpQyONRXp3YrPDp5MRVoyjSj0jP9-2B0rwkcenWkFYYfK1uv3ekxdYuJh7bY5sNvSWS5CQYKbFtbEcAYWIXYj0ChtZr3rjBA-3D-3DvF6H_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98c2S4w05Cn-2BLHUIZ-2Fp9P-2BEOAeEhLBtXMj1Gh96JluMvzTtg87ZCWVAVsZbJ80TM-2BYEbqGJ3PA9AIZeOpoWtckxJnRSf4aGq1hFnHtUcOaUxvwgi3DytlTti5nFM1xuc4xxePOcL-2F7kUOBcfXO62acco4DHsjLBTzptwaxCjp0tUoXZQ7abJPwwBLzDtXhWCPvFUU-2BFb1GuUhIVzs10S34Y\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"\" width=\"285\" height=\"275\"></a></p><p style=\"margin:0;text-align:center;\"><strong>HAAS VF-2SS CNC</strong><br><strong>VERTICAL MACHINING CENTER</strong><br>30 Station Side Mount ATC, Renishaw Probe, Low Hours, Like New, 2018, #43584<br><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6GMvurW5PUadjzoInjUcvU3N4fIN3PqivERYjzw-2BYXoIEt5eLzBNJlqja8MUTumamwn6fGxW57ySINpnpQyONRXp3YrPDp5MRVoyjSj0jP9-2B0rwkcenWkFYYfK1uv3ekxdYuJh7bY5sNvSWS5CQYKbFtbEcAYWIXYj0ChtZr3rjBA-3D-3D0yv0_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FqKKXJNzLfcL-2Fhlh4uKj0dsYl0L8I6p4wCu8D9aDS-2FPfAQE2bLmQiuL-2FBdK1oWZEc-2Ft9EcD4qACYe7dPIetntpgpfbb-2BlClktYmgnCJU3wSnCOnPVZo4w-2FVFx-2BwvHa1NaceHXO37nXEYGl99x22J0FdNS0hd3ChuOWXuykNNmpXJvV99RMqXrkC5Yt-2Bo-2BtVXWejnNSarrLH7fCk1X-2BE7ke\"><u>VIEW VIDEO / VIEW FULL DETAILS</u></a></p><p style=\"margin:0;text-align:center;\"><a href=\"https:/apps/mail/mailto?to=scott@prestigeequipment.com\"><strong>CONTACT SCOTT LINZER FOR MORE INFORMATION</strong></a><br><a href=\"https:/apps/mail/mailto?to=scott@prestigeequipment.com\">scott@prestigeequipment.com | </a>O: 631-249-5566 | M: 516-972-8791</p><p style=\"margin:0;text-align:center;\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6E6oCSy3P3qwEEyjHSbcR1BHYk0ylK2EUaPdAsdL-2BZeXP2cGbni16Q2nQONn6zSyYXC3CgrP1dkj835eeg9c0izy-2FJbCG2AeYuWyX50EFQPI-2BzAjMkf59hvOljKXkPHdoY-3DU4d8_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98PpBK-2FyuNfXmjKsBUszMDQs8x8x8JPS0Kxn7KqNrOnS-2BrwzQpSSYWBqveHW9yrMcX8FGIZaWarPZ-2FK0HFip-2F2fitj2m3WxZFFVzEcpc-2FceuUE4dqF2ZC07kYWumRtI4wyo79TXlY04RvX66XWraYQMEmqOT-2BcBKBvkGj2-2FzRtV-2BcU1tPCxyk0Hnhs2PKqkU1Bw0ePDUHQ-2FvwIU8lKZRA27\"><span style=\"color:#000;\"><strong>What Do</strong></span></a> <a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6E6oCSy3P3qwEEyjHSbcR1BHYk0ylK2EUaPdAsdL-2BZeXP2cGbni16Q2nQONn6zSyYXC3CgrP1dkj835eeg9c0izy-2FJbCG2AeYuWyX50EFQPI-2BzAjMkf59hvOljKXkPHdoY-3DzfJN_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n98CvdyXLvUMU4yP-2BtRN8fHBCN9XCUcivasqX0gg4QjLvlCn02j69sMUbadYNVsXgjUXwMCRW7X2UX71Wnmh2rvQ0YwU8DSInnWck3DVNJy9o5cTgf8DeKQAql549YkbpU1FdNYhgWA2d2LeSAwfMQJs1P4KPDm-2FMuTR62RHjNvdT6M1Xb3LOJFXzIZB9oP-2FnH4RLLKZVZHdiM4XGrol-2Btjd\"><span style=\"color:#186997;\"><strong><u>YOU</u></strong></span></a> <span style=\"color:#000;\"><strong>Have For Sale?</strong></span></p><p style=\"margin:0;text-align:center;\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6E6oCSy3P3qwEEyjHSbcR1BHYk0ylK2EUaPdAsdL-2BZeXP2cGbni16Q2nQONn6zSyYXC3CgrP1dkj835eeg9c0izy-2FJbCG2AeYuWyX50EFQPI-2BzAjMkf59hvOljKXkPHdoY-3Dl3r6_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n99TXiKuPVHaZ03oJDstTcZDrmv8SWiANuxl6gBUrDBV2XfQG61eR8xYQ04mWOxVuHXS2iWtK43qY95kZcn-2FTJ-2FjauNM2dT-2FBEhTHPrPjZoD-2FBWTVljzCBOWDHI-2B8-2F0myPFHvkCOdygKXaVBs0KqNjSjJQEuxQC9RA89937mdpHia0eBHh-2FYL-2Feife85CJe1VIxRGq3g1Wep07XOPXVvQWrz\"><span style=\"color:#000;\">We Specialize in Purchasing All Types Of Industrial Machinery, Entire Facilities and Industrial Real Estate. Get Started Now!</span></a></p><p style=\"margin:0;text-align:center;\"><a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.aQBBsjgKhLK6V0-2BdjqJ9JxZCuAswLMb45PdamEHcQ6E6oCSy3P3qwEEyjHSbcR1BHYk0ylK2EUaPdAsdL-2BZeXP2cGbni16Q2nQONn6zSyYXC3CgrP1dkj835eeg9c0izy-2FJbCG2AeYuWyX50EFQPI-2BzAjMkf59hvOljKXkPHdoY-3D-BMB_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FNe2e8eWBkpFQq-2FjkVlLvZT7-2BWANNYcWn5epGoN9kHSxvXZTzzbXC9W-2B4xpnKbsROz-2Bdt0l1JlOu23n2vFQLv-2BawSJWXyioqh7YWCOnjQm8AxE88ndj1Cyt-2FNvKN0a3DLZddvwcB0FcahoyflPDKaSiis76-2BtnLhKWDlBgu8zRwFcsPGeX4Lcflkt6p28ExkSJZg1KBFUMuXGTVZiHIVzk\">SELL YOUR MACHINERY</a></p><p style=\"margin:0;\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"\" width=\"200\"> <img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"Fb\" width=\"32\" height=\"32\"> <img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"Tw\" width=\"32\" height=\"32\"> <img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"Yt\" width=\"32\" height=\"32\"> <img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"Ig\" width=\"32\" height=\"32\"> <img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"In\" width=\"32\" height=\"32\"></p><p style=\"margin:0;text-align:center;\">Prestige Equipment  |  <a href=\"https:/apps/mail/mailto?to=sales@prestigeequipment.com\"><u>sales@prestigeequipment.com</u></a><br>35 Pinelawn Road, Melville, NY 11747  |  631-249-5566</p><p style=\"margin:0;text-align:center;\"><br> </p><p style=\"margin:0;text-align:center;\">Proud Members Of:</p><p style=\"margin:0;\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"mdna\" width=\"38\" height=\"38\"> <img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"IAA\" width=\"38\" height=\"38\"> <img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"nysaa\" width=\"38\" height=\"38\"> <img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"fma\" width=\"38\" height=\"38\"> <img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"amt\" width=\"38\" height=\"38\"> <img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"amea\" width=\"38\" height=\"38\"> <img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"eamtm\" width=\"38\" height=\"38\"> <img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"aisc\" width=\"38\" height=\"38\"></p><p style=\"margin:0;text-align:center;\">You are receiving this email because you opted in at <a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.YZa2-2Fv95qyaQ0Esd0DqHPseu6wZUcWbsNdJ5oijrR5sExkuusJt5azpJcfKQq56G6WJ06bhBs29YCqIdLmKlDY1EJFwT3BYopvdlTcnRsvErgBeRfQctFlRTn6UfK2H2iathzyc3jfPlzGwAWgVAZg-3D-3D1UTQ_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n99XmV1HXmEhYdZIMHR7V2ChlG3G64I2c1Zfb7Va79o5IHfN5xIepHC5fhQ58KwBFl04CIpVTtzve-2BP2xYY3keKzLx78ZAboO5OBg5-2Bydgao9PjTtCYw4iIsEGGKS0Ap7OOhM4wzwVNiBjOAaNLCXMcInL8CCiGxz06ARwqtCdoMoVwZcwf9c1QlAAWFTCEPZgZuqPnFwjJELiNK7sT-2FzKCd\"><u>prestigeequipment.com</u></a>. If you don\'t want to receive these emails in the future, please <a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.YZa2-2Fv95qyaQ0Esd0DqHPhUfzttN13nfTXFbfaY-2FTitJpfh9uvSqrEef3LeLhzKlMIINZ2o4rWLRfYYRKyxDEH-2B6J9VHNO-2FvOKeO4fNpjE0AApOPTsuU8Vg9CN146nq30r-2BQcCHmobr01LI24Uv756njSTcmGCV0YQ8ElAsLpGey6HZiKj4wjw7UkIwmX65eOo5sf8Ijw8YWhGL9HoNEqg-3D-3DsebQ_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2FFHFOkN9PnNSN9Ra95L3qEaX0AFW-2BZbqatpuzMySWNkZw9ALEzsrZMfYSC4jSW523s-2FoFUhSTr8e3ejKK8tvht2X4FJ5fLq-2Fp2sZ1YFoxNHMZivELOKpbCfRxbn1VcE-2FeBBuSMvQ9GejXTatT85jMQvx8ZW2sK6sTKYX972myBfdqn1SeAmxVBYA6bElERzryRG1bfwt9JtoKEZOE2sO1M\"><u>Update Your Subscription Preferences</u></a> or <a href=\"http://url2713.prestigeequipment.com/ls/click?upn=u001.YZa2-2Fv95qyaQ0Esd0DqHPhUfzttN13nfTXFbfaY-2FTitJpfh9uvSqrEef3LeLhzKlMIINZ2o4rWLRfYYRKyxDEGnegSZEPYSUmh3UiFsJEjIPLiMYyIY1WfmzRn-2BBRQO5xedMiaW-2FNK70OajGwAvMqAS3XwLgCRiuUrcZPXUkAeg5NQu3Cvq17KNMmdo-2FpaU5TELp_xfAPFZjM3490a0hJfxY0BrR0e5YRPhNI-2BTAaB4qweInNz2ikewpfFDB9VrEGXjLCOPhgiIkESgAa8Nr1uvKzneKXQOxmzPa-2Bo7Gloo3-2F8b-2FQK4zI1njDcVUFoOii2tHuLfsRrH-2BwHHOsYA3-2FV8PI1fs-2BT1L0FUWCHBLOj4GAeLqmawg-2BCFV3nqUlrkyK8K8l7cQZmEktNAyb0jSCWNukcUuN6TnxmFuh2czEJ6vYvobS7nJcDsj1rwaN3AgJXoqQMQDsaW8a9ru2BVAugBNHixxttnAz17u59dlM01x6n9-2BwwpcDaf5-2F8r2xnmoMPiQolH-2BxC2f1ma-2B8EoQ2r9hKeygLPW4FfNMss91GR43-2BxhXHTpV1cp2t1lPjCOhqDwe7lsGPdU1ofJTepmfQS0kYz5bYE-2FULNUL8dtAxvN3oS5dLKn3BnwfYhMXm1cAeaRXdO0M15dzcH2xWnOkkZr5bJNv8G-2BXZPO7kprcWDBECex91xwYokid-2BkSakRsBw0mgV\"><u>Unsubscribe</u></a></p><p style=\"margin:0;\"><img src=\"/custom_apps/mail/img/blocked-image.png\" alt=\"\" width=\"1\" height=\"1\"></p></blockquote></blockquote></div></blockquote></blockquote></div>\r\n</body></html>','Harrison messaged me yesterday and said that he would be unavailable the\r\nrest of this week, but that he would reach out shortly about setting\r\nsomething up for next week.\r\n \r\n\"Rick\" rick@mavrix.one – September 25, 2025 1:47 PM \r\n\r\n> No I was just sharing.  I think we’re buying new.  \r\n> Any updates on Harrison? \r\n>  \r\n> Rick Mislan, PhD, \r\n> Founder, CTO\r\n> mavrix1.com\r\n> CONFIDENTIALITY NOTICE: This communication is confidential and intended\r\n> only for the intended recipient.  If you are not the intended recipient,\r\n> you may not copy, disclose, or distribute this message to anyone else;\r\n> any such actions may be unlawful. If you have received this\r\n> communication in error, please contact the sender of the message to\r\n> inform him or her of the error.\r\n> On September 25, 2025 at 1:47:02 PM, Jason Blick (jason@mavrix.one)\r\nwrote:\r\n>\r\n>> Hey Rick,\r\n>>  \r\n>> Sorry for the late response, this email got flagged for spam because of\r\n>> the link. But I would say that the ST30 could potentially be lucrative\r\n>> at the right price point, would you like me to reach out to this vendor\r\n>> and see what their offerings are?\r\n>>  \r\n>> Regards,\r\n>> Jason\r\n>>  \r\n>> \"Rick\" rick@mavrix.one – September 24, 2025 11:01 AM \r\n>>\r\n>>> Anything here fit our needs? \r\n>>>  \r\n>>> Rick Mislan, PhD, \r\n>>> Founder, CTO\r\n>>> mavrix1.com\r\n>>> CONFIDENTIALITY NOTICE: This communication is confidential and\r\n>>> intended only for the intended recipient.  If you are not the intended\r\n>>> recipient, you may not copy, disclose, or distribute this message to\r\n>>> anyone else; any such actions may be unlawful. If you have received\r\n>>> this communication in error, please contact the sender of the message\r\n>>> to inform him or her of the error.\r\n>>> On September 24, 2025 at 10:36:22 AM, Thomas Pownall\r\n>>> (tpownall@cadx-pcb.com) wrote:\r\n>>>\r\n>>>> Here is some equipment you could use.\r\n>>>> -- Tom\r\n>>>>  \r\n>>>> ---------- Forwarded message ---------From: Prestige Equipment\r\n>>>> <scott@prestigeequipment.com>Date: Mon, Sep 22, 2025 at\r\n>>>> 1:26 PMSubject: HAAS Late Model Machining Centers and Lathes\r\n>>>> Available ImmediatelyTo: <tpownall@cadx-pcb.com> \r\n>>>>  \r\n>>>> 2018 HAAS VF-11/40 CNC VMC, HAAS VF-3YT/50 4-Axis CNC VMC, HAAS\r\n>>>> VF-5/50XT CNC VMC, HAAS EC-1600 YZT HMC, HAAS VF-6/50 CNC VMC, 2018\r\n>>>> HAAS ST30 CNC Turning Center, HAAS VF-6/50 CNC VMC, 2018 HAAS VF-2SS\r\n>>>> CNC VMC\r\n>>>>\r\n͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ ͏‌ \r\n>>>> Having trouble viewing this email? View in web browser\r\n>>>>\r\n>>>> CONTACT SCOTT LINZER[1]\r\n>>>> Scott@prestigeequipment.com[1]\r\n>>>>  O: 631-249-5566 | M: 516-972-8791\r\n>>>>\r\n>>>> HAAS VF-11/40 CNC VERTICAL MACHINING CENTERX-120\", Y-40\", Z-30\", 15K\r\n>>>> RPM, TSC, Probe, 40 ATC, BT-40, TSC, Haas CNC, 2018, #44347VIEW FULL\r\n>>>> DETAILS\r\n>>>>\r\n>>>> HAAS VF-3YT/50 4-AXIS CNC VERTICAL MACHINING CENTERX-40\", Y-26\", 30\r\n>>>> Sta. Side Mounted ATC, Wireless Probe, Pre-Wired 4th Axis , 10,000\r\n>>>> RPM, 2011, #44317VIEW FULL DETAILS\r\n>>>>\r\n>>>> HAAS VF-5/50XT CNC VERTICAL MACHINING CENTERX-60\", Y-26\" Z-25\", #50\r\n>>>> Taper, 7,500 RPM, 4th/5th Axis Ready, 30 ATC, Chip Auger, Haas CNC,\r\n>>>> #44302VIEW FULL DETAILS\r\n>>>>\r\n>>>> HAAS EC-1600 YZT HORIZONTAL MACHINING CENTERX-64\", Y-50\", Z-40\", 30\"\r\n>>>> Rotary Platter, 64\" x 32\" Table, 10K RPM, TSC, 30 HP, 2013,\r\n>>>> #44301VIEW FULL DETAILS\r\n>>>>\r\n>>>> HAAS VF-6/50 CNC VERTICAL MACHINING CENTERX-64\", Y-32\", Z-30\", 64\" x\r\n>>>> 28\" Table, 10K RPM, 30-ATC, TSC, 4th & 5th Axis Ready, Haas CNC,\r\n>>>> 2011, #44300VIEW FULL DETAILS\r\n>>>>\r\n>>>> HAAS ST30 CNC TURNING CENTER21\" Swing, 32.5\" Centers,V12 Turret,\r\n>>>> Tailstock, Chip Conveyor, Steadies, Haas CNC Control, 2018,\r\n>>>> #44220VIEW VIDEO / VIEW FULL DETAILS\r\n>>>>\r\n>>>> HAAS VF-6/50 CNC VERTICAL MACHINING CENTERX-64\", Y-32\", Z-30\", 7,500\r\n>>>> RPM, CAT 50, 30-ATC, 2-APC, Chip Conveyor, Haas CNC, 2012, #44051VIEW\r\n>>>> VIDEO / VIEW FULL DETAILS\r\n>>>>\r\n>>>> HAAS VF-2SS CNCVERTICAL MACHINING CENTER30 Station Side Mount ATC,\r\n>>>> Renishaw Probe, Low Hours, Like New, 2018, #43584VIEW VIDEO / VIEW\r\n>>>> FULL DETAILS\r\n>>>> CONTACT SCOTT LINZER FOR MORE\r\n>>>> INFORMATIONscott@prestigeequipment.com | O: 631-249-5566 | M:\r\n>>>> 516-972-8791\r\n>>>> What Do YOU Have For Sale?\r\n>>>> We Specialize in Purchasing All Types Of Industrial Machinery, Entire\r\n>>>> Facilities and Industrial Real Estate. Get Started Now!\r\n>>>> SELL YOUR MACHINERY\r\n>>>>\r\n>>>> Prestige Equipment  |  sales@prestigeequipment.com35 Pinelawn Road,\r\n>>>> Melville, NY 11747  |  631-249-5566\r\n>>>>  \r\n>>>> Proud Members Of:\r\n>>>>\r\n>>>> You are receiving this email because you opted in\r\n>>>> at prestigeequipment.com. If you don\'t want to receive these emails\r\n>>>> in the future, please Update Your Subscription\r\n>>>> Preferences or Unsubscribe\r\n\r\n\r\n\r\nLinks:\r\n------\r\n[1] https:/apps/mail/mailto?to=scott@prestigeequipment.com',0,0,0,0,0,0,'2025-09-25 17:55:30','2025-12-09 19:29:08','2025-12-09 19:29:08','2025-12-09 19:29:08',NULL,NULL,NULL),
(793,4,'<209FC25D-1F75-43EC-BE4F-F69E15DB246F@mavrix.one>',NULL,NULL,'Re: Battery Build with One.Ai','Brian@mavrix.one','Brian Stufflebean','\r\n--Apple-Mail=_47A245C6-0317-40C6-A320-8F3209862432\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Type: text/html;\r\n	charset=utf-8\r\n\r\n<html><head><meta http-equiv=3D\"content-type\" content=3D\"text/html; =\r\ncharset=3Dutf-8\"></head><body style=3D\"overflow-wrap: break-word; =\r\n-webkit-nbsp-mode: space; line-break: after-white-space;\"><span =\r\nstyle=3D\"font-size: 14px;\">Jordan,</span><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: 14px;\">Has there =\r\nbeen any discussion about pricing and total order =\r\nsize/</span></div><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: =\r\n14px;\">Nathan,</span></div><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: 14px;\">Know how =\r\nbusy you have been, have you reviewed the presentation yet? Are we able =\r\nto produce these, assume you will have to give feedback on the pricing =\r\nmodel based on the specs.&nbsp;</span></div><div><span style=3D\"font-size:=\r\n 14px;\"><br></span></div><div><span style=3D\"font-size: 14px;\">Also, on =\r\nthe delivery time=E2=80=A6</span></div><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><div><b>Brian C. Stufflebean</b><br>CEO, =\r\nCo-Founder<br><div><b>(941)545-4153 Direct</b></div><div><span =\r\nstyle=3D\"font-size: 11px;\">(866)896-2423 =\r\nFax</span></div></div><span></span><br =\r\nclass=3D\"Apple-interchange-newline\"><span><img =\r\nalt=3D\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" =\r\nsrc=3D\"cid:5F7CCC4E-5AB1-4A1B-920C-63E3295BED7D\"></span><div><br =\r\nclass=3D\"Apple-interchange-newline\"><br =\r\nclass=3D\"Apple-interchange-newline\"><a =\r\nhref=3D\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div><br><a =\r\nhref=3D\"https://mavrix1.com\">https://mavrix1.com/</a></div><div><br></div>=\r\n</div><div><span style=3D\"font-size: 14px;\"><br></span></div><div><span =\r\nstyle=3D\"font-size: 14px;\"><br></span><div><div><br><blockquote =\r\ntype=3D\"cite\"><div>On Sep 24, 2025, at 12:45=E2=80=AFPM, Jordan =\r\nWroblewski &lt;Jordan@lithiumbatterycompany.com&gt; wrote:</div><br =\r\nclass=3D\"Apple-interchange-newline\"><div><div dir=3D\"ltr\"><div>Hello =\r\nTeam,</div><div><br></div><div>Earlier this week, I had a conversation =\r\nwith the One.Ai team - a battery cell manufacturer in Michigan regarding =\r\ntheir grid module.</div><div><br></div><div>I have attached the work =\r\ninstructions for the module for your =\r\nreview.&nbsp;</div><div><br></div><div>Initially, they&nbsp;would need =\r\napproximately 50 units, with the first 17 ready to ship by December 9. =\r\nAll necessary parts for the build would be consigned to =\r\nus.</div><div><br></div><div>Let me know&nbsp;your thoughts on timing =\r\nfor this project.&nbsp; This would be the tip of the =\r\niceberg.&nbsp;</div><div><br></div><div>Best =\r\nregards,</div><div><br></div><div><div dir=3D\"ltr\" =\r\nclass=3D\"gmail_signature\" data-smartmail=3D\"gmail_signature\"><div =\r\ndir=3D\"ltr\"><div style=3D\"margin: 0in;\"><span style=3D\"font-family: =\r\nArial, sans-serif;\"><br></span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif;\">Jordan G. =\r\nWroblewski</span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif; font-size: 9pt;\">Partner | =\r\nPresident&nbsp;<br></span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif; font-size: 10pt;\">Lithium =\r\nBattery Company</span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif; font-size: 10pt;\">Direct: (917) =\r\n266-5336<br></span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<=\r\na href=3D\"mailto:Jarrett.brownfield@trackmastermobility.com\" =\r\nstyle=3D\"color:blue;margin:0px\" =\r\ntarget=3D\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div =\r\nstyle=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><=\r\na href=3D\"http://lithiumbatterycompany.com/\" target=3D\"_blank\">Lithium =\r\nBattery Company</a></span></div></div></div></div></div>\r\n<span id=3D\"cid:f_mfy7setv0\">&lt;Horizontal Module Work Instructions - =\r\n52S 2P (2).pptx&gt;</span></div></blockquote></div><br><div>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; orphans: auto; text-align: start; text-indent: 0px; =\r\ntext-transform: none; white-space: normal; widows: auto; word-spacing: =\r\n0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><font size=3D\"2\">Best =\r\nregards,</font></div><div style=3D\"font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><font =\r\nsize=3D\"2\"><br></font></div><div style=3D\"font-family: Helvetica; =\r\nfont-size: 12px; font-style: normal; font-variant-caps: normal; =\r\nfont-weight: 400; letter-spacing: normal; orphans: auto; text-align: =\r\nstart; text-indent: 0px; text-transform: none; white-space: normal; =\r\nwidows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\" style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><b>Brian C. =\r\nStufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 =\r\nDirect</b></div><div style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><span style=3D\"font-size: =\r\n11px;\">(866)896-2423 Fax</span></div></div><span style=3D\"caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0); font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"></span><br class=3D\"Apple-interchange-newline\"><span><img =\r\nalt=3D\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" =\r\nsrc=3D\"cid:CB596987-D3CC-4C61-B9D3-CE1C1DF1C723\"></span><meta =\r\ncharset=3D\"UTF-8\"><div style=3D\"font-family: Helvetica; font-size: 12px; =\r\nfont-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br =\r\nclass=3D\"Apple-interchange-newline\"><br =\r\nclass=3D\"Apple-interchange-newline\"><a =\r\nhref=3D\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a =\r\nhref=3D\"https://mavrix1.com\">https://mavrix1.com/</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY =\r\nNOTICE:</b><span style=3D\"font-family: Helvetica; font-style: normal; =\r\nfont-weight: 400; font-size: =\r\n12px;\">&nbsp;This&nbsp;communication&nbsp;is =\r\nconfidential&nbsp;and&nbsp;intended only for the =\r\nintended&nbsp;recipient.&nbsp;&nbsp;If you are not the =\r\nintended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, =\r\nor&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any =\r\nsuch&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this =\r\ncommunication&nbsp;in error,&nbsp;please contact the sender =\r\nof&nbsp;the&nbsp;message to inform him or her of =\r\nthe&nbsp;error.<br><br></span></div>\r\n</div>\r\n<br></div></div></body></html>=\r\n\r\n--Apple-Mail=_47A245C6-0317-40C6-A320-8F3209862432\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\r\nContent-Type: image/png;\r\n	x-unix-mode=0666;\r\n	name=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\"\r\nContent-Id: <5F7CCC4E-5AB1-4A1B-920C-63E3295BED7D>\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGwAAAAYCAYAAAAf1RgaAAAAAXNSR0IArs4c6QAAAIRlWElmTU0A\r\nKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdp\r\nAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAGyg\r\nAwAEAAAAAQAAABgAAAAABrPxEgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5h\r\nZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9\r\nIlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9y\r\nZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6\r\nYWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZm\r\nLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgog\r\nICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAA\r\nC6FJREFUaAXtWnuMVUcZnznPe/fuZYEtDxHCQ1ADBNuuAlKh24dRaqURWFotj5haKAn9SxOaauRi\r\nxEBsMMFSAmnUCDTKWtDioyEm3RLKq6VKC7Rg20VA5Lmwz3vPa8bfN+ecu+fevbugjQQrX5g735n5\r\nvm++13wz5yyc3YKb0gP19a8YTU33+NNmbx0puHjJtGsm+U7beoMxyRsaGrUJE45JxlbclMp/1JXK\r\nsZWM5XLwP6PG6+tzOgVr8tzN0wWTjRq3hojAw6TU+EfdGf9T9uVyGsutQNC4nDpn8zz0m7lmWEwE\r\njm6mbd/r3MCnzNk6DlEbyRFCqfNbAbyBEeaBlJzrkula1mOFQ683fvMcLT917tblGF8dbTgmhe8a\r\nZsbyvY4NhsbEdwy7ZrHntDHOtBuo7q2lGLyvGSnmOe2/fH3S3//EGhGsOZuf03RrKRMC/3wBL30f\r\n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\r\n--Apple-Mail=_47A245C6-0317-40C6-A320-8F3209862432\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\r\nContent-Type: image/png;\r\n	name=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\"\r\nContent-Id: <CB596987-D3CC-4C61-B9D3-CE1C1DF1C723>\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGwAAAAYCAYAAAAf1RgaAAAAAXNSR0IArs4c6QAAAIRlWElmTU0A\r\nKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdp\r\nAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAGyg\r\nAwAEAAAAAQAAABgAAAAABrPxEgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5h\r\nZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9\r\nIlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9y\r\nZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6\r\nYWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZm\r\nLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgog\r\nICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAA\r\nC6FJREFUaAXtWnuMVUcZnznPe/fuZYEtDxHCQ1ADBNuuAlKh24dRaqURWFotj5haKAn9SxOaauRi\r\nxEBsMMFSAmnUCDTKWtDioyEm3RLKq6VKC7Rg20VA5Lmwz3vPa8bfN+ecu+fevbugjQQrX5g735n5\r\nvm++13wz5yyc3YKb0gP19a8YTU33+NNmbx0puHjJtGsm+U7beoMxyRsaGrUJE45JxlbclMp/1JXK\r\nsZWM5XLwP6PG6+tzOgVr8tzN0wWTjRq3hojAw6TU+EfdGf9T9uVyGsutQNC4nDpn8zz0m7lmWEwE\r\njm6mbd/r3MCnzNk6DlEbyRFCqfNbAbyBEeaBlJzrkula1mOFQ683fvMcLT917tblGF8dbTgmhe8a\r\nZsbyvY4NhsbEdwy7ZrHntDHOtBuo7q2lGLyvGSnmOe2/fH3S3//EGhGsOZuf03RrKRMC/3wBL30f\r\n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\r\n--Apple-Mail=_47A245C6-0317-40C6-A320-8F3209862432--','Jordan,\r\n\r\nHas there been any discussion about pricing and total order size/\r\n\r\n\r\nNathan,\r\n\r\nKnow how busy you have been, have you reviewed the presentation yet? Are we able to produce these, assume you will have to give feedback on the pricing model based on the specs. \r\n\r\nAlso, on the delivery time…\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n￼\r\n\r\n\r\nbrian@mavrix.one <mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n> On Sep 24, 2025, at 12:45 PM, Jordan Wroblewski <Jordan@lithiumbatterycompany.com> wrote:\r\n> \r\n> Hello Team,\r\n> \r\n> Earlier this week, I had a conversation with the One.Ai team - a battery cell manufacturer in Michigan regarding their grid module.\r\n> \r\n> I have attached the work instructions for the module for your review. \r\n> \r\n> Initially, they would need approximately 50 units, with the first 17 ready to ship by December 9. All necessary parts for the build would be consigned to us.\r\n> \r\n> Let me know your thoughts on timing for this project.  This would be the tip of the iceberg. \r\n> \r\n> Best regards,\r\n> \r\n> \r\n> Jordan G. Wroblewski\r\n> Partner | President \r\n> Lithium Battery Company\r\n> Direct: (917) 266-5336\r\n> jordan@lithiumbatterycompany.com <mailto:Jarrett.brownfield@trackmastermobility.com>\r\n> Lithium Battery Company <http://lithiumbatterycompany.com/><Horizontal Module Work Instructions - 52S 2P (2).pptx>\r\n\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n￼\r\n\r\n\r\nbrian@mavrix.one <mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-09-25 21:28:11','2025-12-09 19:29:08','2025-12-09 19:29:08','2025-12-09 19:29:08',NULL,NULL,NULL),
(794,4,'<CAGOCFXg5trrm3s3q1a_1wGTC0CuPF7f-UJkVPXsK+UMeKXPwSg@mail.gmail.com>',NULL,NULL,'Re: Battery Build with One.Ai','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Brian,</div><div><br></div><div>Yes, I have reviewed the file, and I am confident that we can manufacture this battery using our prismatic machine.</div><div><br></div><div>Regarding the pricing model, this is an area where we currently need some assistance. Jarrett has done excellent work in breaking down costs per kWh on the assembly lines. However, our current model does not fully reflect battery production at full capacity, which would allow us to offer more competitive costs to our customers. Presently, we are using a pricing model that is suitable for our initial customers, reflecting a higher manufacturing cost. As we expand our customer base, we aim to transition to more competitive pricing.</div><div><br></div><div>Jordan has been doing a tremendous job in identifying potential customers and companies that require our services. Where we need help now is with a well-rounded sales professional who can develop more dynamic pricing strategies. This would involve looking at our overall capacity and work orders rather than maintaining pricing that is higher due to being based on our initial customers. To that end, I would like to activate John Kellum to investigate this further.</div><div><br></div><div>We are seeing interest from customers who want to bring their own parts into the factory, as well as others who are interested in switching to domestically made cell suppliers. Given that we are currently at capacity, we need a dedicated team to delve deeper into pricing if we want to control costs effectively within the supply chain. Having the new building would be immensely beneficial right now, as it would allow us to get everyone in the same room to map all of this out.</div><div><br></div><div>We can always ask standard questions like, &quot;What is your current budget for the battery?&quot; and &quot;What are you currently paying?&quot; to assess if a customer is genuinely committed to USA manufacturing. This will help us differentiate between those who are truly invested in a domestically produced product and those who might be trying to leverage us for the same price as their Chinese suppliers. We are not looking to work with customers in the latter category unless they are willing to pay more for a USA-made product.  It&#39;s an uphill battle with these companies that have been taking advantage of cheap Chinese labor for years and have a hard time adjusting their pricing, even though they are making a killing on profit margin.  </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Sep 25, 2025 at 5:29 PM Brian Stufflebean &lt;Brian@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div><span style=\"font-size:14px\">Jordan,</span><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Has there been any discussion about pricing and total order size/</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Nathan,</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Know how busy you have been, have you reviewed the presentation yet? Are we able to produce these, assume you will have to give feedback on the pricing model based on the specs. </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Also, on the delivery time…</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\"><br></span></div><div><div><b>Brian C. Stufflebean</b><br>CEO, Co-Founder<br><div><b>(941)545-4153 Direct</b></div><div><span style=\"font-size:11px\">(866)896-2423 Fax</span></div></div><span></span><br><span><img alt=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" src=\"cid:ii_19982ef076b4a653afc1\"></span><div><br><br><a href=\"mailto:brian@mavrix.one\" target=\"_blank\">brian@mavrix.one</a></div><div><br><a href=\"https://mavrix1.com\" target=\"_blank\">https://mavrix1.com/</a></div><div><br></div></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\"><br></span><div><div><br><blockquote type=\"cite\"><div>On Sep 24, 2025, at 12:45 PM, Jordan Wroblewski &lt;<a href=\"mailto:Jordan@lithiumbatterycompany.com\" target=\"_blank\">Jordan@lithiumbatterycompany.com</a>&gt; wrote:</div><br><div><div dir=\"ltr\"><div>Hello Team,</div><div><br></div><div>Earlier this week, I had a conversation with the One.Ai team - a battery cell manufacturer in Michigan regarding their grid module.</div><div><br></div><div>I have attached the work instructions for the module for your review. </div><div><br></div><div>Initially, they would need approximately 50 units, with the first 17 ready to ship by December 9. All necessary parts for the build would be consigned to us.</div><div><br></div><div>Let me know your thoughts on timing for this project.  This would be the tip of the iceberg. </div><div><br></div><div>Best regards,</div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\"><br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt\">Partner | President <br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Lithium Battery Company</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Direct: (917) 266-5336<br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\">Lithium Battery Company</a></span></div></div></div></div></div>\r\n<span id=\"m_-7164650030758425114cid:f_mfy7setv0\">&lt;Horizontal Module Work Instructions - 52S 2P (2).pptx&gt;</span></div></blockquote></div><br><div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\">Best regards,</font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\" style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><b>Brian C. Stufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 Direct</b></div><div style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><span style=\"font-size:11px\">(866)896-2423 Fax</span></div></div><span style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"></span><br><span><img alt=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" src=\"cid:CB596987-D3CC-4C61-B9D3-CE1C1DF1C723\"></span><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><br><a href=\"mailto:brian@mavrix.one\" target=\"_blank\">brian@mavrix.one</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><a href=\"https://mavrix1.com\" target=\"_blank\">https://mavrix1.com/</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"> This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.<br><br></span></div>\r\n</div>\r\n<br></div></div></div></blockquote></div>','Brian,\r\n\r\nYes, I have reviewed the file, and I am confident that we can manufacture\r\nthis battery using our prismatic machine.\r\n\r\nRegarding the pricing model, this is an area where we currently need some\r\nassistance. Jarrett has done excellent work in breaking down costs per kWh\r\non the assembly lines. However, our current model does not fully reflect\r\nbattery production at full capacity, which would allow us to offer more\r\ncompetitive costs to our customers. Presently, we are using a pricing model\r\nthat is suitable for our initial customers, reflecting a higher\r\nmanufacturing cost. As we expand our customer base, we aim to transition to\r\nmore competitive pricing.\r\n\r\nJordan has been doing a tremendous job in identifying potential customers\r\nand companies that require our services. Where we need help now is with a\r\nwell-rounded sales professional who can develop more dynamic pricing\r\nstrategies. This would involve looking at our overall capacity and work\r\norders rather than maintaining pricing that is higher due to being based on\r\nour initial customers. To that end, I would like to activate John Kellum to\r\ninvestigate this further.\r\n\r\nWe are seeing interest from customers who want to bring their own parts\r\ninto the factory, as well as others who are interested in switching to\r\ndomestically made cell suppliers. Given that we are currently at capacity,\r\nwe need a dedicated team to delve deeper into pricing if we want to control\r\ncosts effectively within the supply chain. Having the new building would be\r\nimmensely beneficial right now, as it would allow us to get everyone in the\r\nsame room to map all of this out.\r\n\r\nWe can always ask standard questions like, \"What is your current budget for\r\nthe battery?\" and \"What are you currently paying?\" to assess if a customer\r\nis genuinely committed to USA manufacturing. This will help us\r\ndifferentiate between those who are truly invested in a domestically\r\nproduced product and those who might be trying to leverage us for the same\r\nprice as their Chinese suppliers. We are not looking to work with customers\r\nin the latter category unless they are willing to pay more for a USA-made\r\nproduct.  It\'s an uphill battle with these companies that have been taking\r\nadvantage of cheap Chinese labor for years and have a hard time adjusting\r\ntheir pricing, even though they are making a killing on profit margin.\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Thu, Sep 25, 2025 at 5:29 PM Brian Stufflebean <Brian@mavrix.one> wrote:\r\n\r\n> Jordan,\r\n>\r\n> Has there been any discussion about pricing and total order size/\r\n>\r\n>\r\n> Nathan,\r\n>\r\n> Know how busy you have been, have you reviewed the presentation yet? Are\r\n> we able to produce these, assume you will have to give feedback on the\r\n> pricing model based on the specs.\r\n>\r\n> Also, on the delivery time…\r\n>\r\n>\r\n> *Brian C. Stufflebean*\r\n> CEO, Co-Founder\r\n> *(941)545-4153 Direct*\r\n> (866)896-2423 Fax\r\n>\r\n> [image: CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png]\r\n>\r\n>\r\n> brian@mavrix.one\r\n>\r\n> https://mavrix1.com/\r\n>\r\n>\r\n>\r\n>\r\n> On Sep 24, 2025, at 12:45 PM, Jordan Wroblewski <\r\n> Jordan@lithiumbatterycompany.com> wrote:\r\n>\r\n> Hello Team,\r\n>\r\n> Earlier this week, I had a conversation with the One.Ai team - a battery\r\n> cell manufacturer in Michigan regarding their grid module.\r\n>\r\n> I have attached the work instructions for the module for your review.\r\n>\r\n> Initially, they would need approximately 50 units, with the first 17 ready\r\n> to ship by December 9. All necessary parts for the build would be consigned\r\n> to us.\r\n>\r\n> Let me know your thoughts on timing for this project.  This would be the\r\n> tip of the iceberg.\r\n>\r\n> Best regards,\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n> Partner | President\r\n> Lithium Battery Company\r\n> Direct: (917) 266-5336\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n> <Horizontal Module Work Instructions - 52S 2P (2).pptx>\r\n>\r\n>\r\n> Best regards,\r\n>\r\n>\r\n>\r\n> *Brian C. Stufflebean*\r\n> CEO, Co-Founder\r\n> *(941)545-4153 Direct*\r\n> (866)896-2423 Fax\r\n>\r\n> [image: CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png]\r\n>\r\n>\r\n> brian@mavrix.one\r\n>\r\n> https://mavrix1.com/\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n> *CONFIDENTIALITY NOTICE:* This communication is confidential and intended\r\n> only for the intended recipient.  If you are not the\r\n> intended recipient, you may not copy, disclose, or distribute this\r\n> message to anyone else; any such actions may be unlawful. If you\r\n> have received this communication in error, please contact the sender\r\n> of the message to inform him or her of the error.\r\n>\r\n>\r\n>',0,0,0,0,0,0,'2025-09-25 22:22:35','2025-12-09 19:29:08','2025-12-09 19:29:08','2025-12-09 19:29:08',NULL,NULL,NULL),
(795,4,'<BN0PR04MB80141F074AF0F902C0B50B36C01EA@BN0PR04MB8014.namprd04.prod.outlook.com>',NULL,NULL,'Re: [EXTERNAL] NDA','AHoyen@IGIus.com','Andrew Hoyen','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:0 0 0 0 0 0 0 0 0 0;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;\r\n	panose-1:2 11 0 4 2 2 2 2 2 4;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:10.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\nspan.EmailStyle18\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Send back an executed copy.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n\n\n\n<p style=\"FONT-SIZE: 10pt; MARGIN-BOTTOM: 5pt; FONT-FAMILY: ARIAL; MARGIN-TOP: 0pt\">\n</p><table style=\"WIDTH: 460px\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n  <tbody>\n  <tr>\n    <td style=\"FONT-SIZE: 8pt; FONT-FAMILY: Arial; WIDTH: 290px; COLOR: #005463; PADDING-BOTTOM: 5px\" valign=\"bottom\" colspan=\"2\"><strong style=\"FONT-SIZE: 12pt; COLOR: #005463\">Andrew Hoyen</strong></td>\n    <td style=\"FONT-SIZE: 10pt; FONT-FAMILY: Arial; WIDTH: 170px; PADDING-BOTTOM: 5px\" valign=\"middle\" rowspan=\"2\" align=\"left\"><img style=\"HEIGHT: 85px; WIDTH: 220px\" border=\"0\" src=\"https://igi-services.s3.us-east-1.amazonaws.com/IGIC.png\" width=\"220\" height=\"85\"></td></tr>\n  <tr>\n    <td style=\"FONT-SIZE: 10pt; FONT-FAMILY: Arial; WIDTH: 240px; COLOR: #2c2c2c; PADDING-BOTTOM: 5px\" valign=\"top\">President &amp; COO</td>\n    <td style=\"FONT-SIZE: 10pt; FONT-FAMILY: Arial; WIDTH: 50px; PADDING-BOTTOM: 5px\" valign=\"top\"></td></tr>\n  <tr>\n    <td style=\"FONT-SIZE: 10pt; BORDER-TOP: #005463 1px solid; FONT-FAMILY: Arial; WIDTH: 240px; PADDING-BOTTOM: 10px; PADDING-TOP: 5px\" valign=\"top\"><span style=\"COLOR: #2c2c2c\">p: <a style=\"TEXT-DECORATION: none; COLOR: #2c2c2c\" href=\"tel:585-485-5770\">585-485-5770</a><br>e: <a style=\"TEXT-DECORATION: none; COLOR: #2c2c2c\" href=\"mailto:AHoyen@IGIus.com\">AHoyen@IGIus.com</a></span></td>\n    <td style=\"FONT-SIZE: 10pt; BORDER-TOP: #005463 1px solid; FONT-FAMILY: Arial; WIDTH: 50px; PADDING-BOTTOM: 10px; PADDING-TOP: 5px\" valign=\"top\"><span style=\"COLOR: #fff\">.</span></td>\n    <td style=\"FONT-SIZE: 10pt; BORDER-TOP: #005463 1px solid; FONT-FAMILY: Arial; WIDTH: 170px; PADDING-BOTTOM: 10px; PADDING-TOP: 5px; PADDING-LEFT: 10px\" valign=\"top\"><span style=\"COLOR: #2c2c2c\"><strong>IGI \n      Cybersecurity<br></strong>175 Sully\'s Trail, Suite 202<br>Pittsford, NY \n      14534</span><span style=\"COLOR: #fff\">.</span></td></tr>\n  <tr>\n    <td style=\"FONT-SIZE: 10pt; FONT-FAMILY: Arial; WIDTH: 240px; COLOR: #36c2cc; PADDING-BOTTOM: 15px\" valign=\"middle\"><a class=\"socialLink\" style=\"COLOR: #36c2cc\" href=\"https://www.facebook.com/IGIcyber\"><img class=\"socialLink\" border=\"0\" src=\"https://igi-services.s3.us-east-1.amazonaws.com/sig-fb-20.png\"></a>&nbsp;&nbsp;<a class=\"socialLink\" style=\"COLOR: #36c2cc\" href=\"https://www.linkedin.com/in/andrewhoyen\"><img class=\"socialLink\" border=\"0\" src=\"https://igi-services.s3.us-east-1.amazonaws.com/sig-li-20.png\"></a>&nbsp; \n      <a class=\"socialLink\" style=\"COLOR: #36c2cc\" href=\"https://www.twitter.com/IGIcyber\"><img class=\"socialLink\" border=\"0\" src=\"https://igi-services.s3.us-east-1.amazonaws.com/sig-tw-20.png\"></a>&nbsp;&nbsp;<a class=\"socialLink\" style=\"COLOR: #36c2cc\" href=\"https://www.youtube.com/channel/UCiG5UZZcmYH72R7_sS8tuWA\"><img class=\"socialLink\" border=\"0\" src=\"https://igi-services.s3.us-east-1.amazonaws.com/sig-yt-20.png\"></a></td>\n    <td style=\"FONT-SIZE: 10pt; FONT-FAMILY: Arial; WIDTH: 50px; PADDING-BOTTOM: 15px\" valign=\"top\"></td>\n    <td style=\"FONT-SIZE: 10pt; FONT-FAMILY: Arial; WIDTH: 170px; PADDING-BOTTOM: 15px; PADDING-LEFT: 10px\" valign=\"middle\"><a title=\"\" style=\"TEXT-DECORATION: none\" href=\"https://igicybersecurity.com\"><strong style=\"COLOR: #36c2cc\">IGIcybersecurity.com</strong></a></td></tr></tbody></table>\n<p style=\"FONT-SIZE: 8pt; MARGIN-BOTTOM: 5pt; FONT-FAMILY: Arial; MARGIN-TOP: 0px\"><span style=\"FONT-SIZE: 9pt\">CONFIDENTIALITY NOTICE: The contents of this email \nmessage and any attachments are intended solely for the addressee(s) and may \ncontain confidential and/or privileged information and may be legally protected \nfrom disclosure. If you are not the intended recipient of this message or their \nagent, or if this message has been addressed to you in error, please immediately \nalert the sender by reply email and then delete this message and any \nattachments. If you are not the intended recipient, you are hereby notified that \nany use, dissemination, copying, or storage of this message or its attachments \nis strictly prohibited.</span></p>\n<p style=\"FONT-SIZE: 10pt; MARGIN-BOTTOM: 5pt; FONT-FAMILY: Arial; MARGIN-TOP: 0px\">&nbsp;</p>\n<div id=\"mail-editor-reference-message-container\">\r\n<div>\r\n<div>\r\n<div style=\"border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\"><b><span style=\"font-size:12.0pt;color:black\">From:\r\n</span></b><span style=\"font-size:12.0pt;color:black\">Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Date: </b>Thursday, September 25, 2025 at 7:28</span><span style=\"font-size:12.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"font-size:12.0pt;color:black\">AM<br>\r\n<b>To: </b>Andrew Hoyen &lt;AHoyen@IGIus.com&gt;<br>\r\n<b>Subject: </b>[EXTERNAL] NDA<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">NDA attached.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Please sign and return.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Thanks,<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Rick<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Rick Mislan, PhD,&nbsp;<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Founder, CTO<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><img width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"_x0000_i1025\" src=\"cid:43FFF810-A00E-496C-8EB6-AA9BC13DCAA4\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><a href=\"https://mavrix1.com/\">https://mavrix1.com</a><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">CONFIDENTIALITY NOTICE<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the\r\n designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are\r\n responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Send back an executed copy.\r\n\r\n\r\nAndrew Hoyen    [https://igi-services.s3.us-east-1.amazonaws.com/IGIC.png]\r\nPresident & COO\r\np: 585-485-5770<tel:585-485-5770>\r\ne: AHoyen@IGIus.com<mailto:AHoyen@IGIus.com>    .       IGI Cybersecurity\r\n175 Sully\'s Trail, Suite 202\r\nPittsford, NY 14534.\r\n[https://igi-services.s3.us-east-1.amazonaws.com/sig-fb-20.png]<https://www.facebook.com/IGIcyber>  [https://igi-services.s3.us-east-1.amazonaws.com/sig-li-20.png] <https://www.linkedin.com/in/andrewhoyen>   [https://igi-services.s3.us-east-1.amazonaws.com/sig-tw-20.png] <https://www.twitter.com/IGIcyber>   [https://igi-services.s3.us-east-1.amazonaws.com/sig-yt-20.png] <https://www.youtube.com/channel/UCiG5UZZcmYH72R7_sS8tuWA>                 IGIcybersecurity.com<https://igicybersecurity.com>\r\n\r\nCONFIDENTIALITY NOTICE: The contents of this email message and any attachments are intended solely for the addressee(s) and may contain confidential and/or privileged information and may be legally protected from disclosure. If you are not the intended recipient of this message or their agent, or if this message has been addressed to you in error, please immediately alert the sender by reply email and then delete this message and any attachments. If you are not the intended recipient, you are hereby notified that any use, dissemination, copying, or storage of this message or its attachments is strictly prohibited.\r\n\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nDate: Thursday, September 25, 2025 at 7:28 AM\r\nTo: Andrew Hoyen <AHoyen@IGIus.com>\r\nSubject: [EXTERNAL] NDA\r\nNDA attached.\r\nPlease sign and return.\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:43FFF810-A00E-496C-8EB6-AA9BC13DCAA4]\r\nhttps://mavrix1.com<https://mavrix1.com/>\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n',0,0,0,0,0,0,'2025-09-26 11:11:42','2025-12-09 19:29:09','2025-12-09 19:29:09','2025-12-09 19:29:09',NULL,NULL,NULL),
(796,4,'<9EBAB47B-14C7-4ACA-B6C5-0FE311725101@igius.com>',NULL,NULL,'Re: [EXTERNAL] Re: [EXTERNAL] NDA','AHoyen@IGIus.com','Andrew Hoyen','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n</head>\r\n<body dir=\"auto\">\r\n<div dir=\"ltr\"></div>\r\n<div dir=\"ltr\">NP. Let me know where I can help. &nbsp;</div>\r\n<div dir=\"ltr\"><br>\r\n\n\n\n<p style=\"FONT-SIZE: 10pt; MARGIN-BOTTOM: 5pt; FONT-FAMILY: ARIAL; MARGIN-TOP: 0pt\">\n</p><table style=\"WIDTH: 460px\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n  <tbody>\n  <tr>\n    <td style=\"FONT-SIZE: 8pt; FONT-FAMILY: Arial; WIDTH: 290px; COLOR: #005463; PADDING-BOTTOM: 5px\" valign=\"bottom\" colspan=\"2\"><strong style=\"FONT-SIZE: 12pt; COLOR: #005463\">Andrew Hoyen</strong></td>\n    <td style=\"FONT-SIZE: 10pt; FONT-FAMILY: Arial; WIDTH: 170px; PADDING-BOTTOM: 5px\" valign=\"middle\" rowspan=\"2\" align=\"left\"><img style=\"HEIGHT: 85px; WIDTH: 220px\" border=\"0\" src=\"https://igi-services.s3.us-east-1.amazonaws.com/IGIC.png\" width=\"220\" height=\"85\"></td></tr>\n  <tr>\n    <td style=\"FONT-SIZE: 10pt; FONT-FAMILY: Arial; WIDTH: 240px; COLOR: #2c2c2c; PADDING-BOTTOM: 5px\" valign=\"top\">President &amp; COO</td>\n    <td style=\"FONT-SIZE: 10pt; FONT-FAMILY: Arial; WIDTH: 50px; PADDING-BOTTOM: 5px\" valign=\"top\"></td></tr>\n  <tr>\n    <td style=\"FONT-SIZE: 10pt; BORDER-TOP: #005463 1px solid; FONT-FAMILY: Arial; WIDTH: 240px; PADDING-BOTTOM: 10px; PADDING-TOP: 5px\" valign=\"top\"><span style=\"COLOR: #2c2c2c\">p: <a style=\"TEXT-DECORATION: none; COLOR: #2c2c2c\" href=\"tel:585-485-5770\">585-485-5770</a><br>e: <a style=\"TEXT-DECORATION: none; COLOR: #2c2c2c\" href=\"mailto:AHoyen@IGIus.com\">AHoyen@IGIus.com</a></span></td>\n    <td style=\"FONT-SIZE: 10pt; BORDER-TOP: #005463 1px solid; FONT-FAMILY: Arial; WIDTH: 50px; PADDING-BOTTOM: 10px; PADDING-TOP: 5px\" valign=\"top\"><span style=\"COLOR: #fff\">.</span></td>\n    <td style=\"FONT-SIZE: 10pt; BORDER-TOP: #005463 1px solid; FONT-FAMILY: Arial; WIDTH: 170px; PADDING-BOTTOM: 10px; PADDING-TOP: 5px; PADDING-LEFT: 10px\" valign=\"top\"><span style=\"COLOR: #2c2c2c\"><strong>IGI \n      Cybersecurity<br></strong>175 Sully\'s Trail, Suite 202<br>Pittsford, NY \n      14534</span><span style=\"COLOR: #fff\">.</span></td></tr>\n  <tr>\n    <td style=\"FONT-SIZE: 10pt; FONT-FAMILY: Arial; WIDTH: 240px; COLOR: #36c2cc; PADDING-BOTTOM: 15px\" valign=\"middle\"><a class=\"socialLink\" style=\"COLOR: #36c2cc\" href=\"https://www.facebook.com/IGIcyber\"><img class=\"socialLink\" border=\"0\" src=\"https://igi-services.s3.us-east-1.amazonaws.com/sig-fb-20.png\"></a>&nbsp;&nbsp;<a class=\"socialLink\" style=\"COLOR: #36c2cc\" href=\"https://www.linkedin.com/in/andrewhoyen\"><img class=\"socialLink\" border=\"0\" src=\"https://igi-services.s3.us-east-1.amazonaws.com/sig-li-20.png\"></a>&nbsp; \n      <a class=\"socialLink\" style=\"COLOR: #36c2cc\" href=\"https://www.twitter.com/IGIcyber\"><img class=\"socialLink\" border=\"0\" src=\"https://igi-services.s3.us-east-1.amazonaws.com/sig-tw-20.png\"></a>&nbsp;&nbsp;<a class=\"socialLink\" style=\"COLOR: #36c2cc\" href=\"https://www.youtube.com/channel/UCiG5UZZcmYH72R7_sS8tuWA\"><img class=\"socialLink\" border=\"0\" src=\"https://igi-services.s3.us-east-1.amazonaws.com/sig-yt-20.png\"></a></td>\n    <td style=\"FONT-SIZE: 10pt; FONT-FAMILY: Arial; WIDTH: 50px; PADDING-BOTTOM: 15px\" valign=\"top\"></td>\n    <td style=\"FONT-SIZE: 10pt; FONT-FAMILY: Arial; WIDTH: 170px; PADDING-BOTTOM: 15px; PADDING-LEFT: 10px\" valign=\"middle\"><a title=\"\" style=\"TEXT-DECORATION: none\" href=\"https://igicybersecurity.com\"><strong style=\"COLOR: #36c2cc\">IGIcybersecurity.com</strong></a></td></tr></tbody></table>\n<p style=\"FONT-SIZE: 8pt; MARGIN-BOTTOM: 5pt; FONT-FAMILY: Arial; MARGIN-TOP: 0px\"><span style=\"FONT-SIZE: 9pt\">CONFIDENTIALITY NOTICE: The contents of this email \nmessage and any attachments are intended solely for the addressee(s) and may \ncontain confidential and/or privileged information and may be legally protected \nfrom disclosure. If you are not the intended recipient of this message or their \nagent, or if this message has been addressed to you in error, please immediately \nalert the sender by reply email and then delete this message and any \nattachments. If you are not the intended recipient, you are hereby notified that \nany use, dissemination, copying, or storage of this message or its attachments \nis strictly prohibited.</span></p>\n<p style=\"FONT-SIZE: 10pt; MARGIN-BOTTOM: 5pt; FONT-FAMILY: Arial; MARGIN-TOP: 0px\">&nbsp;</p>\n<blockquote type=\"cite\">On Sep 26, 2025, at 6:30 AM, Rick &lt;rick@mavrix.one&gt; wrote:<br>\r\n<br>\r\n</blockquote>\r\n</div>\r\n<blockquote type=\"cite\">\r\n<div dir=\"ltr\">﻿Thanks!<br>\r\nSo maybe a false alarm….<br>\r\nCFO is back and trying to earn his stripes today….<br>\r\nwe shall see…<br>\r\nI’ll keep you posted.<br>\r\nThanks for the discussion and time,<br>\r\nRick <br>\r\n<br>\r\n<p class=\"airmail_on\">On September 26, 2025 at 07:12:32, Andrew Hoyen (<a href=\"mailto:ahoyen@igius.com\">ahoyen@igius.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"clean_bq\"><span>\r\n<div lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div></div>\r\n<div><!--[if !mso]><![endif]--><!--[if gte mso 9]><xml>\r\n\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n\r\n<o:shapelayout v:ext=\"edit\">\r\n\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n\r\n</o:shapelayout></xml><![endif]-->\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Send back an executed copy.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p style=\"FONT-SIZE: 10pt; MARGIN-BOTTOM: 5pt; FONT-FAMILY: ARIAL; MARGIN-TOP: 0pt\">\r\n</p>\r\n<table style=\"WIDTH: 460px\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"FONT-SIZE: 8pt; FONT-FAMILY: Arial; WIDTH: 290px; COLOR: #005463; PADDING-BOTTOM: 5px\" valign=\"bottom\" colspan=\"2\">\r\n<strong style=\"FONT-SIZE: 12pt; COLOR: #005463\">Andrew Hoyen</strong></td>\r\n<td style=\"FONT-SIZE: 10pt; FONT-FAMILY: Arial; WIDTH: 170px; PADDING-BOTTOM: 5px\" valign=\"middle\" rowspan=\"2\" align=\"left\">\r\n<img style=\"HEIGHT: 85px; WIDTH: 220px\" border=\"0\" src=\"https://igi-services.s3.us-east-1.amazonaws.com/IGIC.png\" width=\"220\" height=\"85\" data-unique-identifier=\"\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"FONT-SIZE: 10pt; FONT-FAMILY: Arial; WIDTH: 240px; COLOR: #2c2c2c; PADDING-BOTTOM: 5px\" valign=\"top\">\r\nPresident &amp; COO</td>\r\n<td style=\"FONT-SIZE: 10pt; FONT-FAMILY: Arial; WIDTH: 50px; PADDING-BOTTOM: 5px\" valign=\"top\">\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"FONT-SIZE: 10pt; BORDER-TOP: #005463 1px solid; FONT-FAMILY: Arial; WIDTH: 240px; PADDING-BOTTOM: 10px; PADDING-TOP: 5px\" valign=\"top\">\r\n<span style=\"COLOR: #2c2c2c\">p: <a style=\"TEXT-DECORATION: none; COLOR: #2c2c2c\" href=\"tel:585-485-5770\">\r\n585-485-5770</a><br>\r\ne: <a style=\"TEXT-DECORATION: none; COLOR: #2c2c2c\" href=\"mailto:AHoyen@IGIus.com\">\r\nAHoyen@IGIus.com</a></span></td>\r\n<td style=\"FONT-SIZE: 10pt; BORDER-TOP: #005463 1px solid; FONT-FAMILY: Arial; WIDTH: 50px; PADDING-BOTTOM: 10px; PADDING-TOP: 5px\" valign=\"top\">\r\n<span style=\"COLOR: #fff\">.</span></td>\r\n<td style=\"FONT-SIZE: 10pt; BORDER-TOP: #005463 1px solid; FONT-FAMILY: Arial; WIDTH: 170px; PADDING-BOTTOM: 10px; PADDING-TOP: 5px; PADDING-LEFT: 10px\" valign=\"top\">\r\n<span style=\"COLOR: #2c2c2c\"><strong>IGI Cybersecurity<br>\r\n</strong>175 Sully\'s Trail, Suite 202<br>\r\nPittsford, NY 14534</span><span style=\"COLOR: #fff\">.</span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"FONT-SIZE: 10pt; FONT-FAMILY: Arial; WIDTH: 240px; COLOR: #36c2cc; PADDING-BOTTOM: 15px\" valign=\"middle\">\r\n<a class=\"socialLink\" style=\"COLOR: #36c2cc\" href=\"https://www.facebook.com/IGIcyber\"><img class=\"socialLink\" border=\"0\" src=\"https://igi-services.s3.us-east-1.amazonaws.com/sig-fb-20.png\" data-unique-identifier=\"\"></a>&nbsp;&nbsp;<a class=\"socialLink\" style=\"COLOR: #36c2cc\" href=\"https://www.linkedin.com/in/andrewhoyen\"><img class=\"socialLink\" border=\"0\" src=\"https://igi-services.s3.us-east-1.amazonaws.com/sig-li-20.png\" data-unique-identifier=\"\"></a>&nbsp;\r\n<a class=\"socialLink\" style=\"COLOR: #36c2cc\" href=\"https://www.twitter.com/IGIcyber\">\r\n<img class=\"socialLink\" border=\"0\" src=\"https://igi-services.s3.us-east-1.amazonaws.com/sig-tw-20.png\" data-unique-identifier=\"\"></a>&nbsp;&nbsp;<a class=\"socialLink\" style=\"COLOR: #36c2cc\" href=\"https://www.youtube.com/channel/UCiG5UZZcmYH72R7_sS8tuWA\"><img class=\"socialLink\" border=\"0\" src=\"https://igi-services.s3.us-east-1.amazonaws.com/sig-yt-20.png\" data-unique-identifier=\"\"></a></td>\r\n<td style=\"FONT-SIZE: 10pt; FONT-FAMILY: Arial; WIDTH: 50px; PADDING-BOTTOM: 15px\" valign=\"top\">\r\n</td>\r\n<td style=\"FONT-SIZE: 10pt; FONT-FAMILY: Arial; WIDTH: 170px; PADDING-BOTTOM: 15px; PADDING-LEFT: 10px\" valign=\"middle\">\r\n<a title=\"\" style=\"TEXT-DECORATION: none\" href=\"https://igicybersecurity.com\"><strong style=\"COLOR: #36c2cc\">IGIcybersecurity.com</strong></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"FONT-SIZE: 8pt; MARGIN-BOTTOM: 5pt; FONT-FAMILY: Arial; MARGIN-TOP: 0px\">\r\n<span style=\"FONT-SIZE: 9pt\">CONFIDENTIALITY NOTICE: The contents of this email message and any attachments are intended solely for the addressee(s) and may contain confidential and/or privileged information and may be legally protected from disclosure. If\r\n you are not the intended recipient of this message or their agent, or if this message has been addressed to you in error, please immediately alert the sender by reply email and then delete this message and any attachments. If you are not the intended recipient,\r\n you are hereby notified that any use, dissemination, copying, or storage of this message or its attachments is strictly prohibited.</span></p>\r\n<p style=\"FONT-SIZE: 10pt; MARGIN-BOTTOM: 5pt; FONT-FAMILY: Arial; MARGIN-TOP: 0px\">\r\n&nbsp;</p>\r\n<div id=\"mail-editor-reference-message-container\">\r\n<div>\r\n<div>\r\n<div style=\"border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\"><b><span style=\"font-size:12.0pt;color:black\">From:\r\n</span></b><span style=\"font-size:12.0pt;color:black\">Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Date: </b>Thursday, September 25, 2025 at 7:28</span><span style=\"font-size:12.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"font-size:12.0pt;color:black\">AM<br>\r\n<b>To: </b>Andrew Hoyen &lt;AHoyen@IGIus.com&gt;<br>\r\n<b>Subject: </b>[EXTERNAL] NDA<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">NDA attached.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Please sign and return.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Thanks,<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Rick<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Rick Mislan, PhD,&nbsp;<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Founder, CTO<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"></span></p>\r\n<div>&lt;43FFF810-A00E-496C-8EB6-AA9BC13DCAA4&gt;</div>\r\n<o:p></o:p>\r\n<p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><a href=\"https://mavrix1.com/\">https://mavrix1.com</a><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">CONFIDENTIALITY NOTICE<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the\r\n designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Helvetica\">Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are\r\n responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</blockquote>\r\n</body>\r\n</html>\r\n','NP. Let me know where I can help.\r\n\r\n\r\nAndrew Hoyen    [https://igi-services.s3.us-east-1.amazonaws.com/IGIC.png]\r\nPresident & COO\r\np: 585-485-5770<tel:585-485-5770>\r\ne: AHoyen@IGIus.com<mailto:AHoyen@IGIus.com>    .       IGI Cybersecurity\r\n175 Sully\'s Trail, Suite 202\r\nPittsford, NY 14534.\r\n[https://igi-services.s3.us-east-1.amazonaws.com/sig-fb-20.png]<https://www.facebook.com/IGIcyber>  [https://igi-services.s3.us-east-1.amazonaws.com/sig-li-20.png] <https://www.linkedin.com/in/andrewhoyen>   [https://igi-services.s3.us-east-1.amazonaws.com/sig-tw-20.png] <https://www.twitter.com/IGIcyber>   [https://igi-services.s3.us-east-1.amazonaws.com/sig-yt-20.png] <https://www.youtube.com/channel/UCiG5UZZcmYH72R7_sS8tuWA>                 IGIcybersecurity.com<https://igicybersecurity.com>\r\n\r\nCONFIDENTIALITY NOTICE: The contents of this email message and any attachments are intended solely for the addressee(s) and may contain confidential and/or privileged information and may be legally protected from disclosure. If you are not the intended recipient of this message or their agent, or if this message has been addressed to you in error, please immediately alert the sender by reply email and then delete this message and any attachments. If you are not the intended recipient, you are hereby notified that any use, dissemination, copying, or storage of this message or its attachments is strictly prohibited.\r\n\r\n\r\n\r\nOn Sep 26, 2025, at 6:30 AM, Rick <rick@mavrix.one> wrote:\r\n\r\n﻿Thanks!\r\nSo maybe a false alarm….\r\nCFO is back and trying to earn his stripes today….\r\nwe shall see…\r\nI’ll keep you posted.\r\nThanks for the discussion and time,\r\nRick\r\n\r\n\r\nOn September 26, 2025 at 07:12:32, Andrew Hoyen (ahoyen@igius.com<mailto:ahoyen@igius.com>) wrote:\r\nSend back an executed copy.\r\n\r\n\r\nAndrew Hoyen    [https://igi-services.s3.us-east-1.amazonaws.com/IGIC.png]\r\nPresident & COO\r\np: 585-485-5770<tel:585-485-5770>\r\ne: AHoyen@IGIus.com<mailto:AHoyen@IGIus.com>    .       IGI Cybersecurity\r\n175 Sully\'s Trail, Suite 202\r\nPittsford, NY 14534.\r\n[https://igi-services.s3.us-east-1.amazonaws.com/sig-fb-20.png]<https://www.facebook.com/IGIcyber>  [https://igi-services.s3.us-east-1.amazonaws.com/sig-li-20.png] <https://www.linkedin.com/in/andrewhoyen>   [https://igi-services.s3.us-east-1.amazonaws.com/sig-tw-20.png] <https://www.twitter.com/IGIcyber>   [https://igi-services.s3.us-east-1.amazonaws.com/sig-yt-20.png] <https://www.youtube.com/channel/UCiG5UZZcmYH72R7_sS8tuWA>                 IGIcybersecurity.com<https://igicybersecurity.com>\r\n\r\nCONFIDENTIALITY NOTICE: The contents of this email message and any attachments are intended solely for the addressee(s) and may contain confidential and/or privileged information and may be legally protected from disclosure. If you are not the intended recipient of this message or their agent, or if this message has been addressed to you in error, please immediately alert the sender by reply email and then delete this message and any attachments. If you are not the intended recipient, you are hereby notified that any use, dissemination, copying, or storage of this message or its attachments is strictly prohibited.\r\n\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nDate: Thursday, September 25, 2025 at 7:28 AM\r\nTo: Andrew Hoyen <AHoyen@IGIus.com>\r\nSubject: [EXTERNAL] NDA\r\nNDA attached.\r\nPlease sign and return.\r\nThanks,\r\nRick\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n<43FFF810-A00E-496C-8EB6-AA9BC13DCAA4>\r\nhttps://mavrix1.com<https://mavrix1.com/>\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n',0,0,0,0,0,0,'2025-09-26 11:41:31','2025-12-09 19:29:09','2025-12-09 19:29:09','2025-12-09 19:29:09',NULL,NULL,NULL),
(797,4,'<CAJO9__bsZ0CCebauiCXpZZAwOrHxFUc8urVpSW_PipEDL2k8yQ@mail.gmail.com>',NULL,NULL,'Re: Battery Build with One.Ai','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Good morning Brian,</div><div><br></div><div>This project is an immediate need for One.Ai, serving as a test run. We have not discussed pricing yet, but I plan to inquire about their budget for such builds.</div><div><br></div><div>I will inform them that we are capable of producing their module, but the December 9th delivery timeline may be ambitious.</div><div><br></div><div>Separately, One.Ai is also providing me with a quote for 150MW of power in a 314Ah cell for their project with Fortes Power.</div><div><br></div><div>A dynamic pricing model is essential for us to pursue these opportunities effectively. We have all the necessary information; now we just need to consolidate it.</div><div><br></div><div>Best regards,</div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Sep 25, 2025 at 6:23 PM Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Brian,</div><div><br></div><div>Yes, I have reviewed the file, and I am confident that we can manufacture this battery using our prismatic machine.</div><div><br></div><div>Regarding the pricing model, this is an area where we currently need some assistance. Jarrett has done excellent work in breaking down costs per kWh on the assembly lines. However, our current model does not fully reflect battery production at full capacity, which would allow us to offer more competitive costs to our customers. Presently, we are using a pricing model that is suitable for our initial customers, reflecting a higher manufacturing cost. As we expand our customer base, we aim to transition to more competitive pricing.</div><div><br></div><div>Jordan has been doing a tremendous job in identifying potential customers and companies that require our services. Where we need help now is with a well-rounded sales professional who can develop more dynamic pricing strategies. This would involve looking at our overall capacity and work orders rather than maintaining pricing that is higher due to being based on our initial customers. To that end, I would like to activate John Kellum to investigate this further.</div><div><br></div><div>We are seeing interest from customers who want to bring their own parts into the factory, as well as others who are interested in switching to domestically made cell suppliers. Given that we are currently at capacity, we need a dedicated team to delve deeper into pricing if we want to control costs effectively within the supply chain. Having the new building would be immensely beneficial right now, as it would allow us to get everyone in the same room to map all of this out.</div><div><br></div><div>We can always ask standard questions like, &quot;What is your current budget for the battery?&quot; and &quot;What are you currently paying?&quot; to assess if a customer is genuinely committed to USA manufacturing. This will help us differentiate between those who are truly invested in a domestically produced product and those who might be trying to leverage us for the same price as their Chinese suppliers. We are not looking to work with customers in the latter category unless they are willing to pay more for a USA-made product.  It&#39;s an uphill battle with these companies that have been taking advantage of cheap Chinese labor for years and have a hard time adjusting their pricing, even though they are making a killing on profit margin.  </div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_6832513925179486777_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Sep 25, 2025 at 5:29 PM Brian Stufflebean &lt;Brian@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div><span style=\"font-size:14px\">Jordan,</span><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Has there been any discussion about pricing and total order size/</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Nathan,</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Know how busy you have been, have you reviewed the presentation yet? Are we able to produce these, assume you will have to give feedback on the pricing model based on the specs. </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Also, on the delivery time…</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\"><br></span></div><div><div><b>Brian C. Stufflebean</b><br>CEO, Co-Founder<br><div><b>(941)545-4153 Direct</b></div><div><span style=\"font-size:11px\">(866)896-2423 Fax</span></div></div><span></span><br><span><img alt=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" src=\"cid:ii_19982ef076b4a653afc1\"></span><div><br><br><a href=\"mailto:brian@mavrix.one\" target=\"_blank\">brian@mavrix.one</a></div><div><br><a href=\"https://mavrix1.com\" target=\"_blank\">https://mavrix1.com/</a></div><div><br></div></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\"><br></span><div><div><br><blockquote type=\"cite\"><div>On Sep 24, 2025, at 12:45 PM, Jordan Wroblewski &lt;<a href=\"mailto:Jordan@lithiumbatterycompany.com\" target=\"_blank\">Jordan@lithiumbatterycompany.com</a>&gt; wrote:</div><br><div><div dir=\"ltr\"><div>Hello Team,</div><div><br></div><div>Earlier this week, I had a conversation with the One.Ai team - a battery cell manufacturer in Michigan regarding their grid module.</div><div><br></div><div>I have attached the work instructions for the module for your review. </div><div><br></div><div>Initially, they would need approximately 50 units, with the first 17 ready to ship by December 9. All necessary parts for the build would be consigned to us.</div><div><br></div><div>Let me know your thoughts on timing for this project.  This would be the tip of the iceberg. </div><div><br></div><div>Best regards,</div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\"><br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt\">Partner | President <br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Lithium Battery Company</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Direct: (917) 266-5336<br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\">Lithium Battery Company</a></span></div></div></div></div></div>\r\n<span id=\"m_6832513925179486777m_-7164650030758425114cid:f_mfy7setv0\">&lt;Horizontal Module Work Instructions - 52S 2P (2).pptx&gt;</span></div></blockquote></div><br><div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\">Best regards,</font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\" style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><b>Brian C. Stufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 Direct</b></div><div style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><span style=\"font-size:11px\">(866)896-2423 Fax</span></div></div><span style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"></span><br><span><img alt=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" src=\"cid:ii_199863ba5744a653afc1\"></span><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><br><a href=\"mailto:brian@mavrix.one\" target=\"_blank\">brian@mavrix.one</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><a href=\"https://mavrix1.com\" target=\"_blank\">https://mavrix1.com/</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"> This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.<br><br></span></div>\r\n</div>\r\n<br></div></div></div></blockquote></div>\r\n</blockquote></div>','Good morning Brian,\r\n\r\nThis project is an immediate need for One.Ai, serving as a test run. We\r\nhave not discussed pricing yet, but I plan to inquire about their budget\r\nfor such builds.\r\n\r\nI will inform them that we are capable of producing their module, but the\r\nDecember 9th delivery timeline may be ambitious.\r\n\r\nSeparately, One.Ai is also providing me with a quote for 150MW of power in\r\na 314Ah cell for their project with Fortes Power.\r\n\r\nA dynamic pricing model is essential for us to pursue these opportunities\r\neffectively. We have all the necessary information; now we just need to\r\nconsolidate it.\r\n\r\nBest regards,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Thu, Sep 25, 2025 at 6:23 PM Nathan Staron <\r\nNathan@lithiumbatterycompany.com> wrote:\r\n\r\n> Brian,\r\n>\r\n> Yes, I have reviewed the file, and I am confident that we can manufacture\r\n> this battery using our prismatic machine.\r\n>\r\n> Regarding the pricing model, this is an area where we currently need some\r\n> assistance. Jarrett has done excellent work in breaking down costs per kWh\r\n> on the assembly lines. However, our current model does not fully reflect\r\n> battery production at full capacity, which would allow us to offer more\r\n> competitive costs to our customers. Presently, we are using a pricing model\r\n> that is suitable for our initial customers, reflecting a higher\r\n> manufacturing cost. As we expand our customer base, we aim to transition to\r\n> more competitive pricing.\r\n>\r\n> Jordan has been doing a tremendous job in identifying potential customers\r\n> and companies that require our services. Where we need help now is with a\r\n> well-rounded sales professional who can develop more dynamic pricing\r\n> strategies. This would involve looking at our overall capacity and work\r\n> orders rather than maintaining pricing that is higher due to being based on\r\n> our initial customers. To that end, I would like to activate John Kellum to\r\n> investigate this further.\r\n>\r\n> We are seeing interest from customers who want to bring their own parts\r\n> into the factory, as well as others who are interested in switching to\r\n> domestically made cell suppliers. Given that we are currently at capacity,\r\n> we need a dedicated team to delve deeper into pricing if we want to control\r\n> costs effectively within the supply chain. Having the new building would be\r\n> immensely beneficial right now, as it would allow us to get everyone in the\r\n> same room to map all of this out.\r\n>\r\n> We can always ask standard questions like, \"What is your current budget\r\n> for the battery?\" and \"What are you currently paying?\" to assess if a\r\n> customer is genuinely committed to USA manufacturing. This will help us\r\n> differentiate between those who are truly invested in a domestically\r\n> produced product and those who might be trying to leverage us for the same\r\n> price as their Chinese suppliers. We are not looking to work with customers\r\n> in the latter category unless they are willing to pay more for a USA-made\r\n> product.  It\'s an uphill battle with these companies that have been taking\r\n> advantage of cheap Chinese labor for years and have a hard time adjusting\r\n> their pricing, even though they are making a killing on profit margin.\r\n>\r\n>\r\n> <https://lithiumbatterycompany.com/>\r\n> <https://www.instagram.com/lithiumbatteryco/>\r\n> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n> <https://www.facebook.com/LithiumBatteryCompany/>\r\n> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n> <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074\r\n> Phone 844-GET-LITHIUM\r\n> Nathan@lithiumbatterycompany.com\r\n> Schedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>\r\n>\r\n>\r\n> On Thu, Sep 25, 2025 at 5:29 PM Brian Stufflebean <Brian@mavrix.one>\r\n> wrote:\r\n>\r\n>> Jordan,\r\n>>\r\n>> Has there been any discussion about pricing and total order size/\r\n>>\r\n>>\r\n>> Nathan,\r\n>>\r\n>> Know how busy you have been, have you reviewed the presentation yet? Are\r\n>> we able to produce these, assume you will have to give feedback on the\r\n>> pricing model based on the specs.\r\n>>\r\n>> Also, on the delivery time…\r\n>>\r\n>>\r\n>> *Brian C. Stufflebean*\r\n>> CEO, Co-Founder\r\n>> *(941)545-4153 Direct*\r\n>> (866)896-2423 Fax\r\n>>\r\n>> [image: CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png]\r\n>>\r\n>>\r\n>> brian@mavrix.one\r\n>>\r\n>> https://mavrix1.com/\r\n>>\r\n>>\r\n>>\r\n>>\r\n>> On Sep 24, 2025, at 12:45 PM, Jordan Wroblewski <\r\n>> Jordan@lithiumbatterycompany.com> wrote:\r\n>>\r\n>> Hello Team,\r\n>>\r\n>> Earlier this week, I had a conversation with the One.Ai team - a battery\r\n>> cell manufacturer in Michigan regarding their grid module.\r\n>>\r\n>> I have attached the work instructions for the module for your review.\r\n>>\r\n>> Initially, they would need approximately 50 units, with the first 17\r\n>> ready to ship by December 9. All necessary parts for the build would be\r\n>> consigned to us.\r\n>>\r\n>> Let me know your thoughts on timing for this project.  This would be the\r\n>> tip of the iceberg.\r\n>>\r\n>> Best regards,\r\n>>\r\n>>\r\n>> Jordan G. Wroblewski\r\n>> Partner | President\r\n>> Lithium Battery Company\r\n>> Direct: (917) 266-5336\r\n>> *jordan@lithiumbatterycompany.com\r\n>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n>> <Horizontal Module Work Instructions - 52S 2P (2).pptx>\r\n>>\r\n>>\r\n>> Best regards,\r\n>>\r\n>>\r\n>>\r\n>> *Brian C. Stufflebean*\r\n>> CEO, Co-Founder\r\n>> *(941)545-4153 Direct*\r\n>> (866)896-2423 Fax\r\n>>\r\n>> [image: CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png]\r\n>>\r\n>>\r\n>> brian@mavrix.one\r\n>>\r\n>> https://mavrix1.com/\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>> *CONFIDENTIALITY NOTICE:* This communication is\r\n>> confidential and intended only for the intended recipient.  If you are not\r\n>> the intended recipient, you may not copy, disclose, or distribute this\r\n>> message to anyone else; any such actions may be unlawful. If you\r\n>> have received this communication in error, please contact the sender\r\n>> of the message to inform him or her of the error.\r\n>>\r\n>>\r\n>>',0,0,0,0,0,0,'2025-09-26 13:44:19','2025-12-09 19:29:09','2025-12-09 19:29:09','2025-12-09 19:29:09',NULL,NULL,NULL),
(798,4,'<CABEiVumA9PjKDo7yncCwKuaHZVzzpP6PqhOa9hrw5sQ28_puFQ@mail.gmail.com>',NULL,NULL,'Zenith intro to Mavrix','jen@deeptechgtm.com','Jennifer Kay','<div dir=\"auto\">Hello gentlemen,</div><div dir=\"auto\"><br></div><div dir=\"auto\">Y’all should know each other. </div><div dir=\"auto\"><br></div><div dir=\"auto\">Tony is a personal friend, trusted collaborator and head of Zenith Firearms and Zenith Aerotech. They’re interested in fundraising and/or M&amp;A events. </div><div dir=\"auto\"><br></div><div dir=\"auto\">Rick is the tech advisor for a large family office out of Florida that’s looking to invest in defense tech and supply chain. </div><div dir=\"auto\"><br></div><div dir=\"auto\">You are both terribly busy but I hope you can find 15 minutes to connect. I’ll also make sure to intro you the next time we’re in the same room, probably AUSA. </div><div dir=\"auto\"><br></div><div dir=\"auto\">Happy Friday!</div><div dir=\"auto\"><br></div><div dir=\"auto\">Warmly,</div><div dir=\"auto\"><br></div><div dir=\"auto\">Jen</div><div dir=\"auto\"><br></div><div dir=\"auto\"><br></div><div dir=\"auto\"><br></div><div dir=\"auto\"><br></div><div dir=\"auto\"><br clear=\"all\"><br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:517.609px;vertical-align:-webkit-baseline-middle;font-size:medium;font-family:Arial\"><tbody><tr style=\"margin:0px;padding:0px;border:0px;color:rgb(255,255,255)\"><td style=\"padding:0px;border:0px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:517.609px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:top\"><h2 color=\"#231e4a\" style=\"font-size:18px;line-height:1.38;margin:0px;color:rgb(35,30,74)\"><span>Jennifer</span><span> </span><span>Kay</span></h2><p color=\"#231e4a\" style=\"font-size:14px;line-height:22px;margin:0px;color:rgb(35,30,74)\"><span>Principal</span><span> | </span><span>Deep Tech Go to Market</span></p><p color=\"#231e4a\" style=\"font-size:14px;line-height:22px;margin:0px;color:rgb(35,30,74)\"><span>Offering commercial go to market for dual-use tech</span></p><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:472.609px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td height=\"30\" style=\"padding:0px;border:0px\"></td></tr><tr style=\"margin:0px;padding:0px;border:0px\"><td color=\"#231E4A\" width=\"auto\" height=\"1\" style=\"padding:0px;border-top:0px;border-right:0px;border-bottom:1px solid rgb(35,30,74);border-left:none;width:472.609px;display:block\"></td></tr><tr style=\"margin:0px;padding:0px;border:0px\"><td height=\"30\" style=\"padding:0px;border:0px\"></td></tr></tbody></table><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:472.609px;vertical-align:-webkit-baseline-middle\"><tbody><tr height=\"25\" style=\"margin:0px;padding:0px;border:0px;vertical-align:middle\"><td width=\"30\" style=\"padding:0px;border:0px;vertical-align:middle\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:30px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:bottom\"><span color=\"#231E4A\" width=\"11\" style=\"display:inline-block;background-color:rgb(35,30,74)\"><img src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/phone-icon-2x.png\" color=\"#231E4A\" alt=\"mobilePhone\" width=\"13\" style=\"border-style:none;display:block\"></span></td></tr></tbody></table></td><td style=\"padding:0px;border:0px;color:rgb(35,30,74)\"><a href=\"tel:615-630-8068\" color=\"#231e4a\" style=\"background-color:rgba(0,0,0,0);color:rgb(35,30,74);font-size:12px\" target=\"_blank\">615-630-8068</a></td></tr><tr height=\"25\" style=\"margin:0px;padding:0px;border:0px;vertical-align:middle\"><td width=\"30\" style=\"padding:0px;border:0px;vertical-align:middle\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:30px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:bottom\"><span color=\"#231E4A\" width=\"11\" style=\"display:inline-block;background-color:rgb(35,30,74)\"><img src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/email-icon-2x.png\" color=\"#231E4A\" alt=\"emailAddress\" width=\"13\" style=\"border-style:none;display:block\"></span></td></tr></tbody></table></td><td style=\"padding:0px;border:0px\"><a href=\"mailto:Jen@DeepTechGTM.com\" color=\"#231e4a\" style=\"background-color:rgba(0,0,0,0);color:rgb(35,30,74);font-size:12px\" target=\"_blank\">Jen@DeepTechGTM.com</a></td></tr><tr height=\"25\" style=\"margin:0px;padding:0px;border:0px;vertical-align:middle\"><td width=\"30\" style=\"padding:0px;border:0px;vertical-align:middle\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:30px;vertical-align:-webkit-baseline-middle\"><tbody><tr style=\"margin:0px;padding:0px;border:0px\"><td style=\"padding:0px;border:0px;vertical-align:bottom\"><span color=\"#231E4A\" width=\"11\" style=\"display:inline-block;background-color:rgb(35,30,74)\"><img src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/link-icon-2x.png\" color=\"#231E4A\" alt=\"website\" width=\"13\" style=\"border-style:none;display:block\"></span></td></tr></tbody></table></td><td style=\"padding:0px;border:0px\"><a href=\"https://deeptechgtm.com/\" color=\"#231e4a\" style=\"background-color:rgba(0,0,0,0);color:rgb(35,30,74);font-size:12px\" target=\"_blank\">DeepTechGTM.com</a></td></tr></tbody></table></td><td width=\"45\" style=\"padding:0px;border:0px\"><div></div></td></tr></tbody></table></td></tr><tr style=\"margin:0px;padding:0px;border:0px;color:rgb(255,255,255)\"></tr></tbody></table><table cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;border-spacing:0px;width:546.609px;vertical-align:-webkit-baseline-middle;font-size:medium;font-family:Arial\"><tbody><tr style=\"margin:0px;padding:0px;border:0px;color:rgb(255,255,255)\"><td style=\"padding:0px;border:0px\"><br></td></tr></tbody></table></div></div></div></div>','Hello gentlemen,\r\n\r\nY’all should know each other.\r\n\r\nTony is a personal friend, trusted collaborator and head of Zenith Firearms\r\nand Zenith Aerotech. They’re interested in fundraising and/or M&A events.\r\n\r\nRick is the tech advisor for a large family office out of Florida that’s\r\nlooking to invest in defense tech and supply chain.\r\n\r\nYou are both terribly busy but I hope you can find 15 minutes to connect.\r\nI’ll also make sure to intro you the next time we’re in the same room,\r\nprobably AUSA.\r\n\r\nHappy Friday!\r\n\r\nWarmly,\r\n\r\nJen\r\n\r\n\r\n\r\n\r\n\r\n\r\nJennifer Kay\r\n\r\nPrincipal | Deep Tech Go to Market\r\n\r\nOffering commercial go to market for dual-use tech\r\n[image: mobilePhone] 615-630-8068\r\n[image: emailAddress] Jen@DeepTechGTM.com\r\n[image: website] DeepTechGTM.com <https://deeptechgtm.com/>',0,0,0,0,0,0,'2025-09-26 14:19:51','2025-12-09 19:29:10','2025-12-09 19:29:10','2025-12-09 19:29:10',NULL,NULL,NULL),
(799,4,'<D4613450-CF8C-408E-BD7E-39C58500A924@zqcus.com>',NULL,NULL,'Re: Zenith intro to Mavrix','tony@zqcus.com','Tony Williams','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:0 0 0 0 0 0 0 0 0 0;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;\r\n	panose-1:2 11 0 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:wf_segoe-ui_normal;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nh2\r\n	{mso-style-priority:9;\r\n	mso-style-link:\"Heading 2 Char\";\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:18.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	font-weight:bold;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.Heading2Char\r\n	{mso-style-name:\"Heading 2 Char\";\r\n	mso-style-priority:9;\r\n	mso-style-link:\"Heading 2\";\r\n	font-family:\"Aptos Display\",sans-serif;\r\n	color:#0F4761;}\r\nspan.EmailStyle22\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Thanks for the kind words and intro Jen.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Hi Rick,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Thanks for the email and great meeting you as well.&nbsp; All is good here and hope the same on your end.&nbsp; I appreciate you finding time to chat.&nbsp; I am very flexible next week.&nbsp; Moving my daughter into her new\r\n place in Pennsylvania.&nbsp; So please let me know what is convenient for you.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Thanks again for your time and I look forward to our conversation.&nbsp; Have a great weekend.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">V/r,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Tony<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:black\">Tony Williams</span></b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:black\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:black\">Chief Operating Officer<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:8.0pt\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:black\">757-775-5722<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:8.0pt\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\"><img width=\"200\" height=\"64\" style=\"width:2.0833in;height:.6666in\" id=\"Picture_x0020_5\" src=\"cid:image001.png@01DC2EFD.9E6A4340\" alt=\"A black text on a white background\n\nDescription automatically generated\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><a href=\"https://zenithaerotech.com/\" title=\"&quot;Original URL:\nhttps://zenithaerotech.com/\n\nClick to follow link.&quot;\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black;text-decoration:none\"><img border=\"0\" width=\"78\" height=\"51\" style=\"width:.8125in;height:.5312in\" id=\"Picture_x0020_4\" src=\"cid:image002.jpg@01DC2EFD.9E6A4340\" alt=\"A blue and grey logo\n\nDescription automatically generated\"></span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3.0pt\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#1D1D1D\">ZENITH AEROTECH &amp; ZENITH FIREARMS</span><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3.0pt\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#1D1D1D\">Let\'s connect!</span><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><a href=\"https://www.facebook.com/zenithaerotech/\" title=\"&quot;Original URL:\nhttps://www.facebook.com/zenithaerotech/\n\nClick to follow link.&quot;\"><span style=\"font-size:9.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#1D1D1D;text-decoration:none\"><img border=\"0\" width=\"23\" height=\"23\" style=\"width:.2395in;height:.2395in\" id=\"Picture_x0020_3\" src=\"cid:image003.png@01DC2EFD.9E6A4340\" alt=\"signature_4069614607\"></span></a><span style=\"font-size:7.5pt;font-family:&quot;Calibri&quot;,sans-serif;color:#1D1D1D\">&nbsp;&nbsp;&nbsp;</span><a href=\"https://www.instagram.com/zenithaerotech1/\" title=\"&quot;Original URL:\nhttps://www.instagram.com/zenithaerotech1/\n\nClick to follow link.&quot;\"><span style=\"font-size:9.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#1D1D1D;text-decoration:none\"><img border=\"0\" width=\"24\" height=\"24\" style=\"width:.25in;height:.25in\" id=\"Picture_x0020_2\" src=\"cid:image004.png@01DC2EFD.9E6A4340\" alt=\"signature_2085850031\"></span></a><span style=\"font-size:7.5pt;font-family:&quot;Calibri&quot;,sans-serif;color:#1D1D1D\">&nbsp;&nbsp;&nbsp;</span><a href=\"https://www.linkedin.com/company/zenith-aerotech\" title=\"&quot;Original URL:\nhttps://www.linkedin.com/company/zenith-aerotech\n\nClick to follow link.&quot;\"><span style=\"font-size:9.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#1D1D1D;text-decoration:none\"><img border=\"0\" width=\"23\" height=\"23\" style=\"width:.2395in;height:.2395in\" id=\"Picture_x0020_1\" src=\"cid:image005.png@01DC2EFD.9E6A4340\" alt=\"signature_3761921877\"></span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3.0pt\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#1D1D1D\">The information transmitted is intended only for the person or entity to which it is addressed and may contain confidential and/or privileged material. If you\r\n are not the intended recipient, please contact the sender immediately and destroy the material in its entirety, whether electronic or hard copy. You are notified that any review, retransmission, dissemination or other use of, or taking of any action in reliance\r\n upon, this information by persons or entities other than the intended recipient is prohibited.</span><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div style=\"border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:black\">From:\r\n</span></b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:black\">Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Date: </b>Friday, September 26, 2025 at 2:56 PM<br>\r\n<b>To: </b>Tony Williams &lt;tony@zqcus.com&gt;, Jennifer Kay &lt;jen@deeptechgtm.com&gt;<br>\r\n<b>Subject: </b>Re: Zenith intro to Mavrix<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\" width=\"100%\" style=\"width:100.0%;aspect-ratio: revert !important;background:revert !important;block-size: revert !important;border:revert !important;bottom: revert !important;color:revert !important;color-scheme: revert !important;content-visibility: revert !important;cursor:revert !important;direction:revert !important;display:revert !important;font-size:revert !important;height:revert !important;hyphens: revert !important;letter-spacing:revert !important;line-height:revert !important;margin:revert !important;opacity: revert !important;order: revert !important;outline: revert !important;overflow:revert !important;padding:revert !important;position:revert !important;resize: revert !important;rotate: revert !important;scale: revert !important;tab-size: revert !important;table-layout:revert !important;text-align:revert !important;text-indent:revert !important;text-orientation: revert !important;text-overflow: revert !important;text-shadow:revert !important;text-transform:revert !important;text-wrap: revert !important;top:revert !important;transition: revert !important;user-select: revert !important;vertical-align:revert !important;visibility:revert !important;white-space:revert !important;width:revert !important;word-break:revert !important;word-spacing:revert !important;writing-mode:revert !important;zoom: revert !important;cellpadding: 0 !important;cellspacing: 0 !important;display:table !important;border-collapse:seperate !important;border-spacing: 0px 0px !important;float:none\">\r\n<tbody>\r\n<tr style=\"aspect-ratio: revert !important;background:revert !important;block-size: revert !important;border:revert !important;bottom: revert !important;color:revert !important;color-scheme: revert !important;content-visibility: revert !important;cursor:revert !important;direction:revert !important;display:revert !important;font-size:revert !important;height:revert !important;hyphens: revert !important;letter-spacing:revert !important;line-height:revert !important;margin:revert !important;opacity: revert !important;order: revert !important;outline: revert !important;overflow:revert !important;padding:revert !important;position:revert !important;resize: revert !important;rotate: revert !important;scale: revert !important;tab-size: revert !important;table-layout:revert !important;text-align:revert !important;text-indent:revert !important;text-orientation: revert !important;text-overflow: revert !important;text-shadow:revert !important;text-transform:revert !important;text-wrap: revert !important;top:revert !important;transition: revert !important;user-select: revert !important;vertical-align:revert !important;visibility:revert !important;white-space:revert !important;width:revert !important;word-break:revert !important;word-spacing:revert !important;writing-mode:revert !important;zoom: revert !important\">\r\n<td width=\"0\" style=\"width:.3pt;background:#A6A6A6;padding:5.25pt 1.5pt 5.25pt 1.5pt;aspect-ratio: revert !important;background:revert !important;block-size: revert !important;border:revert !important;bottom: revert !important;color:revert !important;color-scheme: revert !important;content-visibility: revert !important;cursor:revert !important;direction:revert !important;display:revert !important;font-size:revert !important;height:revert !important;hyphens: revert !important;letter-spacing:revert !important;line-height:revert !important;margin:revert !important;opacity: revert !important;order: revert !important;outline: revert !important;overflow:revert !important;padding:revert !important;position:revert !important;resize: revert !important;rotate: revert !important;scale: revert !important;tab-size: revert !important;table-layout:revert !important;text-align:revert !important;text-indent:revert !important;text-orientation: revert !important;text-overflow: revert !important;text-shadow:revert !important;text-transform:revert !important;text-wrap: revert !important;top:revert !important;transition: revert !important;user-select: revert !important;vertical-align:revert !important;visibility:revert !important;white-space:revert !important;width:revert !important;word-break:revert !important;word-spacing:revert !important;writing-mode:revert !important;zoom: revert !important;valign: middle !important\">\r\n</td>\r\n<td width=\"100%\" style=\"width:100.0%;background:#EAEAEA;padding:5.25pt 3.75pt 5.25pt 11.25pt;aspect-ratio: revert !important;background:revert !important;block-size: revert !important;border:revert !important;bottom: revert !important;color:revert !important;color-scheme: revert !important;content-visibility: revert !important;cursor:revert !important;direction:revert !important;display:revert !important;font-size:revert !important;height:revert !important;hyphens: revert !important;letter-spacing:revert !important;line-height:revert !important;margin:revert !important;opacity: revert !important;order: revert !important;outline: revert !important;overflow:revert !important;padding:revert !important;position:revert !important;resize: revert !important;rotate: revert !important;scale: revert !important;tab-size: revert !important;table-layout:revert !important;text-align:revert !important;text-indent:revert !important;text-orientation: revert !important;text-overflow: revert !important;text-shadow:revert !important;text-transform:revert !important;text-wrap: revert !important;top:revert !important;transition: revert !important;user-select: revert !important;vertical-align:revert !important;visibility:revert !important;white-space:revert !important;width:revert !important;word-break:revert !important;word-spacing:revert !important;writing-mode:revert !important;zoom: revert !important\">\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-element:frame;mso-element-frame-hspace:2.25pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:column;mso-height-rule:exactly\">\r\n<span style=\"font-size:9.0pt;font-family:wf_segoe-ui_normal;color:#212121\">You don\'t often get email from rick@mavrix.one.\r\n<a href=\"https://aka.ms/LearnAboutSenderIdentification\">Learn why this is important</a>\r\n<o:p></o:p></span></p>\r\n</div>\r\n</td>\r\n<td width=\"75\" style=\"width:56.25pt;background:#EAEAEA;padding:5.25pt 3.75pt 5.25pt 3.75pt;aspect-ratio: revert !important;background:revert !important;block-size: revert !important;border:revert !important;bottom: revert !important;color:revert !important;color-scheme: revert !important;content-visibility: revert !important;cursor:revert !important;direction:revert !important;display:revert !important;font-size:revert !important;height:revert !important;hyphens: revert !important;letter-spacing:revert !important;line-height:revert !important;margin:revert !important;opacity: revert !important;order: revert !important;outline: revert !important;overflow:revert !important;padding:revert !important;position:revert !important;resize: revert !important;rotate: revert !important;scale: revert !important;tab-size: revert !important;table-layout:revert !important;text-align:revert !important;text-indent:revert !important;text-orientation: revert !important;text-overflow: revert !important;text-shadow:revert !important;text-transform:revert !important;text-wrap: revert !important;top:revert !important;transition: revert !important;user-select: revert !important;vertical-align:revert !important;visibility:revert !important;white-space:revert !important;width:revert !important;word-break:revert !important;word-spacing:revert !important;writing-mode:revert !important;zoom: revert !important;align: left !important\">\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\">Hi Tony,<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\">Nice to meet you (virtually).<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\">Hope all is well in your world and would love to connect next week sometime.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\">Please let me know your availability.<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\">Thanks Jen,<o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\">Rick<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n<div id=\"bloop_sign_1758912789293390080\">\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\">Rick Mislan, PhD,&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\">Founder, CTO<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\"><img border=\"0\" width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"ATTACH_attach_6d6573736167655f315f31323736_35324141434136342d423436382d343238352d423543342d383338463637303746464343_35333544443832312d464239312d343942372d414135392d424242443643324143354235_0\" src=\"cid:image006.png@01DC2EFD.9E6A4340\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\">https://mavrix1.com<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><b><u><span style=\"font-size:9.0pt;font-family:Helvetica\">CONFIDENTIALITY NOTICE</span></u></b><span style=\"font-size:10.0pt;font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><i><span style=\"font-size:9.0pt;font-family:Helvetica\">This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely\r\n for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</span></i><span style=\"font-size:10.0pt;font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><i><span style=\"font-size:9.0pt;font-family:Helvetica\">If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</span></i><span style=\"font-size:10.0pt;font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><i><span style=\"font-size:9.0pt;font-family:Helvetica\">Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency.\r\n All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</span></i><span style=\"font-size:10.0pt;font-family:Helvetica\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"airmailon\"><span style=\"font-size:10.0pt;font-family:Helvetica\">On September 26, 2025 at 10:20:43, Jennifer Kay (<a href=\"mailto:jen@deeptechgtm.com\">jen@deeptechgtm.com</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\">Hello gentlemen,<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\">Y’all should know each other.&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\">Tony is a personal friend, trusted collaborator and head of Zenith Firearms and Zenith Aerotech. They’re interested in fundraising and/or M&amp;A events.&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\">Rick is the tech advisor for a large family office out of Florida that’s looking to invest in defense tech and supply chain.&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\">You are both terribly busy but I hope you can find 15 minutes to connect. I’ll also make sure to intro you the next time we’re in the same room, probably AUSA.&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\">Happy Friday!<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\">Warmly,<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\">Jen<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\"><br clear=\"all\">\r\n<br>\r\n<br>\r\n<o:p></o:p></span></p>\r\n<div>\r\n<div>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"518\" style=\"width:388.2pt;border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"518\" style=\"width:388.2pt;border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\" style=\"padding:0in 0in 0in 0in\">\r\n<h2 style=\"margin:0in\"><span style=\"font-size:13.5pt;font-family:Helvetica;color:#231E4A\">Jennifer&nbsp;Kay<o:p></o:p></span></h2>\r\n<p style=\"margin:0in;line-height:16.5pt\"><span style=\"font-size:10.5pt;font-family:Helvetica;color:#231E4A\">Principal&nbsp;|&nbsp;Deep Tech Go to Market<o:p></o:p></span></p>\r\n<p style=\"margin:0in;line-height:16.5pt\"><span style=\"font-size:10.5pt;font-family:Helvetica;color:#231E4A\">Offering commercial go to market for dual-use tech<o:p></o:p></span></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"473\" style=\"width:354.45pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\r\n<tbody>\r\n<tr style=\"height:22.5pt\">\r\n<td style=\"padding:0in 0in 0in 0in;height:22.5pt\"></td>\r\n</tr>\r\n<tr style=\"height:.75pt\">\r\n<td width=\"473\" style=\"width:354.45pt;border:none;border-bottom:solid #231E4A 1.0pt;padding:0in 0in 0in 0in;height:.75pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td style=\"padding:0in 0in 0in 0in;height:22.5pt\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\"><o:p>&nbsp;</o:p></span></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"473\" style=\"width:354.45pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\r\n<tbody>\r\n<tr style=\"height:18.75pt\">\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 0in 0in 0in;height:18.75pt\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"30\" style=\"width:22.5pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"bottom\" style=\"padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica;color:white;border:solid windowtext 1.0pt;padding:0in;background:#231E4A\"><img border=\"0\" width=\"13\" height=\"13\" style=\"width:.1354in;height:.1354in\" id=\"_x0000_i1027\" src=\"cid:~WRD1810.jpg\" alt=\"Image removed by sender. mobilePhone\"></span><span style=\"font-size:10.0pt;font-family:Helvetica\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td style=\"padding:0in 0in 0in 0in;height:18.75pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica;color:#231E4A\"><a href=\"tel:615-630-8068\" target=\"_blank\"><span style=\"font-size:9.0pt;color:#231E4A\">615-630-8068</span></a><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:18.75pt\">\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 0in 0in 0in;height:18.75pt\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"30\" style=\"width:22.5pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"bottom\" style=\"padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica;color:white;border:solid windowtext 1.0pt;padding:0in;background:#231E4A\"><img border=\"0\" width=\"13\" height=\"13\" style=\"width:.1354in;height:.1354in\" id=\"_x0000_i1026\" src=\"cid:~WRD1810.jpg\" alt=\"Image removed by sender. emailAddress\"></span><span style=\"font-size:10.0pt;font-family:Helvetica\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td style=\"padding:0in 0in 0in 0in;height:18.75pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\"><a href=\"mailto:Jen@DeepTechGTM.com\" target=\"_blank\"><span style=\"font-size:9.0pt;color:#231E4A\">Jen@DeepTechGTM.com</span></a><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:18.75pt\">\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 0in 0in 0in;height:18.75pt\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"30\" style=\"width:22.5pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"bottom\" style=\"padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica;color:white;border:solid windowtext 1.0pt;padding:0in;background:#231E4A\"><img border=\"0\" width=\"13\" height=\"13\" style=\"width:.1354in;height:.1354in\" id=\"_x0000_i1025\" src=\"cid:~WRD1810.jpg\" alt=\"Image removed by sender. website\"></span><span style=\"font-size:10.0pt;font-family:Helvetica\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td style=\"padding:0in 0in 0in 0in;height:18.75pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica\"><a href=\"https://deeptechgtm.com/\" target=\"_blank\"><span style=\"font-size:9.0pt;color:#231E4A\">DeepTechGTM.com</span></a><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"45\" style=\"width:33.75pt;padding:0in 0in 0in 0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:Helvetica;display:none\"><o:p>&nbsp;</o:p></span></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"547\" style=\"width:409.95pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n<div style=\"border:solid red 1.5pt;padding:8.0pt 8.0pt 8.0pt 8.0pt\">\r\n<p class=\"MsoNormal\"><strong><span style=\"font-size:10.5pt;font-family:Helvetica;color:red\">CAUTION: EXTERNAL EMAIL</span></strong><span style=\"font-size:10.5pt;font-family:Helvetica;color:red\"><br>\r\nThis email originated from outside of Zenith. Do not click links or open attachments unless you recognize the sender and know the content is safe.\r\n<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Thanks for the kind words and intro Jen.\r\n\r\nHi Rick,\r\n\r\nThanks for the email and great meeting you as well.  All is good here and hope the same on your end.  I appreciate you finding time to chat.  I am very flexible next week.  Moving my daughter into her new place in Pennsylvania.  So please let me know what is convenient for you.\r\n\r\nThanks again for your time and I look forward to our conversation.  Have a great weekend.\r\n\r\nV/r,\r\n\r\nTony\r\n\r\nTony Williams\r\nChief Operating Officer\r\n757-775-5722\r\n[A black text on a white background  Description automatically generated]\r\n[A blue and grey logo  Description automatically generated]<https://zenithaerotech.com/>\r\n\r\nZENITH AEROTECH & ZENITH FIREARMS\r\nLet\'s connect!\r\n[signature_4069614607]<https://www.facebook.com/zenithaerotech/>   [signature_2085850031] <https://www.instagram.com/zenithaerotech1/>    [signature_3761921877] <https://www.linkedin.com/company/zenith-aerotech>\r\n\r\nThe information transmitted is intended only for the person or entity to which it is addressed and may contain confidential and/or privileged material. If you are not the intended recipient, please contact the sender immediately and destroy the material in its entirety, whether electronic or hard copy. You are notified that any review, retransmission, dissemination or other use of, or taking of any action in reliance upon, this information by persons or entities other than the intended recipient is prohibited.\r\n\r\n\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nDate: Friday, September 26, 2025 at 2:56 PM\r\nTo: Tony Williams <tony@zqcus.com>, Jennifer Kay <jen@deeptechgtm.com>\r\nSubject: Re: Zenith intro to Mavrix\r\n\r\nYou don\'t often get email from rick@mavrix.one. Learn why this is important<https://aka.ms/LearnAboutSenderIdentification>\r\nHi Tony,\r\nNice to meet you (virtually).\r\nHope all is well in your world and would love to connect next week sometime.\r\nPlease let me know your availability.\r\nThanks Jen,\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:image006.png@01DC2EFD.9E6A4340]\r\nhttps://mavrix1.com\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\nOn September 26, 2025 at 10:20:43, Jennifer Kay (jen@deeptechgtm.com<mailto:jen@deeptechgtm.com>) wrote:\r\nHello gentlemen,\r\n\r\nY’all should know each other.\r\n\r\nTony is a personal friend, trusted collaborator and head of Zenith Firearms and Zenith Aerotech. They’re interested in fundraising and/or M&A events.\r\n\r\nRick is the tech advisor for a large family office out of Florida that’s looking to invest in defense tech and supply chain.\r\n\r\nYou are both terribly busy but I hope you can find 15 minutes to connect. I’ll also make sure to intro you the next time we’re in the same room, probably AUSA.\r\n\r\nHappy Friday!\r\n\r\nWarmly,\r\n\r\nJen\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nJennifer Kay\r\n\r\nPrincipal | Deep Tech Go to Market\r\n\r\nOffering commercial go to market for dual-use tech\r\n\r\n[Image removed by sender. mobilePhone]\r\n615-630-8068<tel:615-630-8068>\r\n[Image removed by sender. emailAddress]\r\nJen@DeepTechGTM.com<mailto:Jen@DeepTechGTM.com>\r\n[Image removed by sender. website]\r\nDeepTechGTM.com<https://deeptechgtm.com/>\r\n\r\nCAUTION: EXTERNAL EMAIL\r\nThis email originated from outside of Zenith. Do not click links or open attachments unless you recognize the sender and know the content is safe.\r\n',0,0,0,0,0,0,'2025-09-26 19:52:54','2025-12-09 19:29:10','2025-12-09 19:29:10','2025-12-09 19:29:10',NULL,NULL,NULL),
(800,4,'<CAGOCFXjSNi2-5bjaTEGsqsVyawnbwA4Ebt8=TNv9AGd4wkDVkw@mail.gmail.com>',NULL,NULL,'Re: Introduction - Bradenton Area EDC','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Hi Elizabeth,</div><div><br></div><div>Would you be able to send a Zoom link for the call that we have scheduled next week?</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Sep 25, 2025 at 12:03 PM Elizabeth Cordes &lt;<a href=\"mailto:elizabethc@bradentonareaedc.com\">elizabethc@bradentonareaedc.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"msg1590386045476668823\">\r\n\r\n\r\n\r\n\r\n\r\n<div lang=\"EN-US\" style=\"overflow-wrap: break-word;\">\r\n<div class=\"m_1590386045476668823WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">Hi Nathan,<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">It is a pleasure to e-meet both of you, Brian and Rick!<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">Let’s do a call on Wednesday, October 1 at 10am? If a site has already been selected for the project, we are happy to meet you at the site as well. Please let me know what\r\n works best for you.<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">Kindest regards,<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:16pt;font-family:Calibri,sans-serif;color:rgb(0,121,161)\">Elizabeth Cordes</span></b><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:14pt;font-family:Calibri,sans-serif\">Director of Business Recruitment &amp; Expansion</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:14pt;font-family:Calibri,sans-serif;color:rgb(33,33,33)\">Bradenton Area Economic Development Corporation</span></b><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkMgQprkW6N3_xK6lZ3lGW1MLz698CDR_dW7KlxwB1Dm18nW7ddBb_2MZrt3MSCRlbwgp39W4Q9-RD2vRWG1W8-Y5LS3HSXLwW8nCVqk5fVTFKW3JnxyC8hRCJDN26VyccGVNCWW4RVC_Q32W7YcN46VqW-CLVf7W4G3fH24MdWskW8jWC6J3vYdXjW1rnH5J70d1WmW8Vm3Dw7M9vVfW3k7SZr7K581tW2d_tNx2blRW1W8vQFPg194f1pW745Sc07dDh2QW7x1HFq5drc8gW4_0gCq3JlNskN49WTRsV8MzzVXJbgf80mlcyW1fz5YY3Mp1LkW4Vt5v16zLqRvW6Wmw417BztgKW96rr5P6-BWxkW1p_vxh2Gd8D1W8mmfdQ6Wtfc2Vztx7x2bJ1VzVwLzrY55KqyBW8Zh09M3hVZCrN1LyY3Mhx7F0W7RdCs9983zhbW5Tt4sK24Ys9YW5GfD5y1ngpSHW6hBzJQ7yzm11W6nFQ0z6yW9L_W7YtGCm5Bl1YBW9cndyy27mBB5W9dl4yl6b8sJ6W3kN-TJ3DLF3CV-FZzZ3pzjBtN8rQXxHpfbyBW78VjqL39Pzk8W2z0_MZ7kS4h6W9jL6m_76R32wW8KC4vj3t2PX5W86MgfS2KTrMHW6jp1FL65D_4nW31GjFc5xY1WRW6bhj838NG8HgW83tWzt6CGyszW2VlvRx43HfR1W60vb6x9jHlQVW3ntlmv6NvJtqW56y5jF5wBR5MVzfVmv8KYT3WW2f1jb-7z4WksW5zWMfZ94ylf5VLN88z4Lbcv3W7Mr3HX7lWWF1W2hYvZG5j5wQFW4N1JJx68TfQZW3TxTP54JTNLFW32s64R1R-42rW3YWbcZ6XswB-W70gXks28TBPjV_d0Qd7NJVbxW9dbNJL1H6Z8DVbbYwQ6YRvx3W2nGwd92-rGl1W7sLv5-65rRV2N3MP3VDwCqmQW52w7p94qkb4PW77n0jq6sZXgKW7_4S-w1CNV9LW35nSt63rmN6zN2NLFjfjGGZcW45fM4R5mTyXDW5ksmqV48GnLSMMx_vhnnrDsW83lSym92TksvVnfRGf1VFgDBW4Kj_wK4ZfT5VW1vKY7C4Jr27XW5GTQrZ337FzmW65cHrc7WMPrDW1M52px6ZLD7jW18Bb0h4hbSbTW7ChQsX2NLRHzW21RX7s2Wq6jtW17m1n36M5q1sW6YmgLx6NMKTjW7SXzMF2xw92PN2CBvBvQk16-W6kbJ8S2-PcYzW1SZzhN8dL8L0VWK0dh8kzNGMV1MBJ73Rx24XN7wx5-lNq1QqW7Hq2xB6xsdzfW42WCnx7Dd08FW6fqVGq7mkQhsV22Gmc1c2JWkW5dPNFD1jMnRyW34GKJz5H1Q25W1HfcFq3mGM5hN2LtnF4s2KC9W59smrS7RtrBKVdDyGB3wJ_kCW5myTxJ3mDDN0W2qy3bG4pWlpjW2rYrlS8W-QDzW86rRNL2y9YKHW2xtb193SWTbPW5dhxyk1RyqZxW2Y2DCC6q6FJqf8_yFYH04\" target=\"_blank\"><span style=\"font-family:Calibri,sans-serif;color:rgb(5,99,193)\">5840\r\n 26<sup>th</sup> Street West, 26 West Center, Suite 232, Bradenton, FL 34207</span></a><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:Calibri,sans-serif;color:rgb(0,121,161)\">Email:</span></b><span style=\"font-family:Calibri,sans-serif\">\r\n</span><a href=\"mailto:ElizabethC@BradentonAreaEDC.com\" target=\"_blank\"><span style=\"font-family:Calibri,sans-serif;color:rgb(5,99,193)\">ElizabethC@BradentonAreaEDC.com</span></a><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:Calibri,sans-serif;color:rgb(0,121,161)\">Phone: </span></b><span style=\"font-family:Calibri,sans-serif\">941-803-9033</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:Calibri,sans-serif;color:rgb(0,121,161)\">Cell: </span></b><span style=\"font-family:Calibri,sans-serif\">716-908-6134<b><span style=\"color:black\"><br>\r\n</span></b></span><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3nXN7tdxLBlNx75W8xTw1W5DhfbhW441nBQ5flSdWW1W5VB84k1hq6W5DP1bD7-6pDdN3JJXHKDQhG6W6F8Z0v1DPL-rW5XLxSr10k5y6W4X4MJk7Lg70zW48HB187YtmJ2W2LbV_r9gRyPkW4ZWZHp93RVGKW6vSKF09lmCQQN36f4yhCXRKpW7FXrTY7qRgjrN8lSmJWC2plBW4fk0J61SNM-wW956br920QrGTW7fy1bt7_hznnN4y6W8bWkRTPW6XcKtD4Bm82tVSDv9m3Wq6lrf6S0G_q04\" title=\"http://www.bradentonareaedc.com/\" target=\"_blank\"><span style=\"font-family:Calibri,sans-serif;color:purple\">BradentonAreaEDC.com</span></a><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Calibri,sans-serif\"> </span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3pVW3Xzpfn1qRjLMW5Yhxmp1Pxt3DW59LYYP267B9QV5LZ0Q2PN0dpN7tFxHjxQKX5W38_Rnl3Q86yyW91Q5hg2WKf4lW8m8r5231JtVNW4YG5RP1xk_M6W9lzZRb2_NGm5W8FhBpv73B4GrW6dPPGS35gv1tW6WD8Qs96Q9rhW1q0WT03TFlBpW4b67Dz2BfvjKW3p8F4f2bWXvpW1rg8tt2PTPhvW5p3VMj7BsWWDW6ZF60-3VHMcdW6sxRW9927zRGW48Nrc64DdFMjW5t24ZP5WzdCXf6V22Cs04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width: 0.3666in; height: 0.3666in;\" id=\"m_1590386045476668823Picture_x0020_49\" src=\"cid:ii_199879a682c4cff311\"></span></a>    \r\n<a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3p0VN1MnL7r2s16N48wVx_W_rwBW55QSbn2s3NhpW1XFW5C2w5y44W1PkDx646JStpW9d_L9p2rCZVHW7cSBmH7VJ3X6W3g6rSx5NT4sBW2N1myD4DD9jvW1mTlH43YjvBJW8K-CNL1MXzzzW71xrwN2rYQ4KW5ZzYJy2fktV0W15DrMn41FKyXN241jWrtZQfJW55jlpX1DVFQHV8LQgz4nPLpvW23dQM9434CD3W208qVY1LjDnQW4vDQ6N1ftljcW2FjLVy6hX9LCW8dTH516gWwpgW38_z1X87VcmbN13hn7WNVP-NdCTyFW04\" target=\"_blank\">\r\n<span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"34\" height=\"34\" style=\"width: 0.3583in; height: 0.3583in;\" id=\"m_1590386045476668823Picture_x0020_48\" src=\"cid:ii_199879a682c5b16b22\"></span></a>     <a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jll2-6qcW7Y8-PT6lZ3lNW5Z3Yrg9cmyL9W6bY7rJ24YzJdW1Gn3Lc2_xDMgW3JK3Jm1mS-yJW5Q_FYz6PbJv_W19PL1C2y4cJvW868dxG92wPvQW4mLRwM8BBXcDW1WgVZF4KjBnqW6y18KG67qFC5W8Xb-Dy1YXlBpW6h5hm-5P4cV8W6mKr4122QG3kW2ZCL8M1dZq2NW3Kt4hD57RNZRW8r3w_C6l8YMPW61xcm51t8VBQW4nhDL_288X9NN2r6nwRwRM-QW3RZ6SD3r4Y_qN68BMcNhDd2vW53Cw_22CQ3wfW3gYHgq8C8xp1W6vFb385DpXx1W3Mr_yW2XkGgjW6RB88k3DRG7Yf55M55g04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width: 0.3666in; height: 0.3666in;\" id=\"m_1590386045476668823Picture_x0020_47\" src=\"cid:ii_199879a682d692e333\"></span></a>     <a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3kHW6Ht2nV36fbHJW4jPksh1wlSZYF7pqflbN198W8VvCN21FZ8CBW7MDjP24DG4YPW1ky1M-61fVQlW3F2s7-7f6_4VW2fHfk64bLm7gW7MWm4-2pVY5qW6d7HWS1tSlh2W5YGW4W36H2T7W7G_wWp6hdqsGW30RV8L3XRXbkW97ch1r3SlYC9Vl0RQW9h45klW8l5bN-7bjfhXW7LNLgV70ZzVtW3q8kVr4djzMcW8Dt-6b2KDZymW6H0yT_7bKcr0W2GV-qK8Qx6JTW8F1YwK6NCMKFW9jmKpd8JrMDNVNdxz01fGY3Wf5d_9ls04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width: 0.3666in; height: 0.3666in;\" id=\"m_1590386045476668823Picture_x0020_46\" src=\"cid:ii_199879a682d7745b44\"></span></a>     <a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3m9Vb4NYS66VRVXW8XybLC8J19scW3P_pxs5z0_nSN6rWPfdDm2trW14CCRL40V8DXW90NXRy53n14DW4nqsQX9hGhtyMqPf07rTGC3VWZkXq4_FcXRW43vCwk24vftVW8wYHdZ74qM9VW60NppJ2pMvFhW5yBSxv4BsPTSW7wbR6g6y_bRSW9b47nx1Xvz74W4Mr6v096VQv8W6kJp7m5TM0W6W1by-0h8FBjDrW8j0_3649DbZVTjLsC1-07M7W1PHMNx6qWZbcW8RM1MV4T3p6zf6tVq5F04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width: 0.3666in; height: 0.3666in;\" id=\"m_1590386045476668823Picture_x0020_45\" src=\"cid:ii_199879a682d855d355\"></span></a><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"><u></u> <u></u></span></p>\r\n<div style=\"border-right:none;border-bottom:none;border-left:none;border-top:1pt solid rgb(225,225,225);padding:3pt 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">From:</span></b><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"> Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, September 24, 2025 5:47 PM<br>\r\n<b>To:</b> Elizabeth Cordes &lt;<a href=\"mailto:elizabethc@bradentonareaedc.com\" target=\"_blank\">elizabethc@bradentonareaedc.com</a>&gt;; Yanet Lopez &lt;<a href=\"mailto:yanetl@bradentonareaedc.com\" target=\"_blank\">yanetl@bradentonareaedc.com</a>&gt;<br>\r\n<b>Cc:</b> Kevin Campos &lt;<a href=\"mailto:Kcampos@tampabayedc.com\" target=\"_blank\">Kcampos@tampabayedc.com</a>&gt;; Brian Stufflebean &lt;brian@mavrix.one&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Introduction - Bradenton Area EDC<u></u><u></u></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">Good Afternoon Elizabeth,<u></u><u></u></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Thank you for your prompt response and for the kind welcome. It was a pleasure e-meeting you as well.<u></u><u></u></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">I would like to introduce Brian Stufflebean and Rick Mislan, who are the project leads for our expansion into Parrish, FL. They will be instrumental in the development of our new location, and I believe it would be beneficial for them to\r\n connect with you directly.<u></u><u></u></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Regarding setting up a meeting, I agree that it would be valuable to discuss the project further. We would be happy to coordinate a time that works best for everyone next week. As you mentioned, Tuesday and Wednesday work well for you,\r\n and we can certainly align with that.<u></u><u></u></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Please let us know what specific times on Tuesday or Wednesday next week would be most convenient for you and Yanet, and we will make sure to schedule a call or meeting accordingly. We look forward to the opportunity to collaborate.<u></u><u></u></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<div>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n</div>\r\n<div>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\" style=\"border:1pt solid rgb(226,226,226);padding:2.25pt 6pt 6pt;border-radius:5px\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mKW8HRTpJ4J04PDW37wl0Y7Y-_fZW186VyT5_Db6GW95yYQ_288R19W7yqL2t6Mn_HhW6lB4CJ12klSPW3RB7pV6f--KMW3-hGWf5kwhWdW4yGKrV5DdXLjW126l8-3Q88_4W37t4-W88ptC-W6CKNr_6lK9dXN2C3v7YGny2fW5pfR6y6Wmk7gW2Jw-Zt2YB6mhW4xkqXt65s0Z7W40_Tb_3pvYLqW1rl31446rTRSW8MtJH46sXcSpW83x4sW4bnWqqW4Q4WPs8Yk0QkW57tT_L208xMff6pFMkb04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"23\" style=\"width: 0.25in; height: 0.2416in;\" id=\"m_1590386045476668823_x0000_i1040\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\"></span></a><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3l4N6VvrVBKF5WQW56Kg9c5SF2Q9N564SNPBmh1TW8ZB8KN1X9TSRW6yR9Tl4fNQGtW7vXYHz8VhMdxW8P-Pv15DC-z5W1-2MP34KKZDwW2Bzqfx8N3Y87W5C7l8r2sDX99W99mblX8dcgfbW1sq5pQ9dY3XmW7rNPy74p-xTGVJ1Bdy1nF-sNW4wRT_b70hm13W6pC7YD6nMgCdW93GyNY2yFCtPMJ9l7y4pm1DW2FWJzD6mCH9WW6XtVNG10nYSpW1kfp243YNJjlW1T19FR46hlgHf163jHC04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"22\" style=\"width: 0.25in; height: 0.2333in;\" id=\"m_1590386045476668823_x0000_i1039\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\"></span></a><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3pQN1S45LCmGrz0VcB7FK39dxN7Vf2srt8bQhcQVsqC565DgRPrW50dtWG5z70s7W8CWskF6ZmwmgVTGb-L6kzlK6VDW3tf8N_1v2W3gG3Z-2_FHgWW6L9lFV46ycJtW3B9D3j2zNpz1W6nfLWy3c8gyrW605trZ4trMK0W7rpP1W7_5fs7W77NH621f9qXGW1trpSF6dM7XcW8wYnNs8YJ2jxW19gv0v4cPy7LW2bm28W787m0jVhGyP67Cm9ZZW2xVy6x7tFlgkW5d8Tr-385pFRW6wY-hZ6tzSG6W3zndmc7VQ1bDdNR_Yj04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"22\" style=\"width: 0.25in; height: 0.2333in;\" id=\"m_1590386045476668823_x0000_i1038\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\"></span></a><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3pdW4YTQLY5WC4FNVPHSMC8n4CsgW8s6rF98BLQDpW7LR_317mmrlkW8_xpXq3GCr04VJB88M4Ntt_9W4-wyQx4mJQkJW62_k4h2xdHh4VWQZkb57wrjnW347vg45zLB2TVtW9wQ3WcKHTVVBqF630gvjSW8pZZZT7p7QRRW92gZhs5_kZ3mW4HjWzV7L7QqkW99S_C51wPDYjW32s4NY7Nv26hW98ZwqH2YCCcpW60_nqt4YXC4kN5N7PPjDTmrTW8p44Jl7-2NlMW5B2v_r1tkzbvW4x1Dl87YybzXVW8vcd5bgCtKf2WX11g04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"22\" style=\"width: 0.25in; height: 0.2333in;\" id=\"m_1590386045476668823_x0000_i1037\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\"></span></a><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3pSW5Bf5Yd4rCPHdW8sMtW98BdBmgW27tHg36KmVF-W7N14zZ5wwbgXW3p3b4l7b-ZwNW23KPpR5SrkrpW5mllYr3G30xcW6Qz5zR2Wp_TVVq1JYY2BNlnVW8YjKtl1RwZLHW3g2FfH3_83HKN9kHm1lXSPvsW2vB8Xd23NX-qW4gGYnB7nzJSNVTYdPL3Jk7tMW8MyGXl2NrqhPW4zsBN45dwZlDW7VZ4xH85PgxxW80cy4l93n5ZJW2cf9QX5RdsYhN2FHcYZJDMljW7tJ69X5XWzm5W6_GDM65_1MJqW6pFSHN7GGsV5f4NNQbW04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"22\" style=\"width: 0.25in; height: 0.2333in;\" id=\"m_1590386045476668823_x0000_i1036\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\"></span></a><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"8\" style=\"width:6pt;padding:0in;display:revert\">\r\n<p class=\"MsoNormal\"><span> <u></u><u></u></span></p>\r\n</td>\r\n<td valign=\"top\" style=\"border:1pt solid rgb(226,226,226);padding:11.25pt;border-radius:5px\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"width:100%;border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"width:100%;border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mKW8HRTpJ4J04PDW37wl0Y7Y-_fZW186VyT5_Db6GW95yYQ_288R19W7yqL2t6Mn_HhW6lB4CJ12klSPW3RB7pV6f--KMW3-hGWf5kwhWdW4yGKrV5DdXLjW126l8-3Q88_4W37t4-W88ptC-W6CKNr_6lK9dXN2C3v7YGny2fW5pfR6y6Wmk7gW2Jw-Zt2YB6mhW4xkqXt65s0Z7W40_Tb_3pvYLqW1rl31446rTRSW8MtJH46sXcSpW83x4sW4bnWqqW4Q4WPs8Yk0QkW57tT_L208xMff6pFMkb04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"170\" height=\"34\" style=\"width: 1.775in; height: 0.3583in;\" id=\"m_1590386045476668823_x0000_i1035\" src=\"https://app.customesignature.com/upload/signature/11122/11122.png\"></span></a><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 7.5pt\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:11.25pt 0in 0in\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:15pt\">NATHAN A. STARON</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td style=\"padding:0in 0in 0in 3.75pt\">\r\n<p class=\"MsoNormal\"><img border=\"0\" width=\"15\" height=\"15\" style=\"width: 0.1583in; height: 0.1583in;\" id=\"m_1590386045476668823_x0000_i1034\" src=\"https://app.customesignature.com/images/verify.gif\"><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:9pt\">Founder / CEO</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:9pt\">Lithium Battery Company</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:9pt\">Cell Phone</span></b><span> </span><a href=\"tel:813-504-0074\" target=\"_blank\"><span style=\"font-size:9pt;color:black\">813-504-0074</span></a><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:9pt\">Phone</span></b><span> </span><a href=\"tel:844-GET-LITHIUM\" target=\"_blank\"><span style=\"font-size:9pt;color:black\">844-GET-LITHIUM</span></a><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<p class=\"MsoNormal\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\"><span style=\"color:black\">Nathan@lithiumbatterycompany.com</span></a><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in;display:flex\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3pcW3GJtyC7zkdnwW6y_zVy4sQ_wKW694R1T3VGfDFW3lZf7J3lRFPVW3xgqsm8frxF0W1LvnmW6fNxShW2XbVq58rwRvVVXTRl72kL8bTW5M3pDZ81G679W4t6LFR6B0P91W8dntfw5kFdK4W7KGF9W6rkSBcMF_l5mcqJ47W6ykXW53DfLJFW4HLKBn65J0LBW4CjHd66XSNgzN6PzrJgKTJs9VK9KwV3lPL88N32G8k_Qc8tXW78dCbp1Vqc0fW7YvzCP140tqwW70pTCh5hLZzvW4g4V1T6YfxTlW2mwQ9N6rP6GCf6Y7n0M04\" target=\"_blank\"><b><span style=\"font-size:9pt;color:white;background:black\">Schedule\r\n A Zoom</span></b></a><b><span><u></u><u></u></span></b></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td style=\"padding:0in 0in 0in 11.25pt;display:revert\">\r\n<div>\r\n<p class=\"MsoNormal\"><img border=\"0\" width=\"140\" height=\"140\" style=\"width: 1.4583in; height: 1.4583in;\" id=\"m_1590386045476668823_x0000_i1033\" src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\"><span><u></u><u></u></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><img border=\"0\" width=\"140\" height=\"140\" style=\"width: 1.4583in; height: 1.4583in;\" id=\"m_1590386045476668823_x0000_i1032\" src=\"https://app.customesignature.com/upload/signature/gifs/giphyy-1.gif\"><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" style=\"padding:0in\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:7.5pt 0in 0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n</div>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">On Wed, Sep 24, 2025 at 3:54<span style=\"font-family:Arial,sans-serif\"> </span>PM Elizabeth Cordes &lt;<a href=\"mailto:elizabethc@bradentonareaedc.com\" target=\"_blank\">elizabethc@bradentonareaedc.com</a>&gt; wrote:<u></u><u></u></p>\r\n</div>\r\n<blockquote style=\"border-top:none;border-right:none;border-bottom:none;border-left:1pt solid rgb(204,204,204);padding:0in 0in 0in 6pt;margin:5pt 0in 5pt 4.8pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">Hi Kevin,</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"> </span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">Thank you very much for the introduction! It is a pleasure to e-meet you, Nathan. I would very much like to set up\r\n a call or meeting to discuss your project further. Please let me know a day and time that would work best for you. We have good availability Tuesday and Wednesday next week. I look forward to working with you.</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"> </span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">Kindest regards,</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"> </span><u></u><u></u></p>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:16pt;font-family:Calibri,sans-serif;color:rgb(0,121,161)\">Elizabeth Cordes</span></b><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:14pt;font-family:Calibri,sans-serif\">Director of Business Recruitment &amp; Expansion</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:14pt;font-family:Calibri,sans-serif;color:rgb(33,33,33)\">Bradenton Area Economic Development Corporation</span></b><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkMgQprkW6N3_xK6lZ3lGW1MLz698CDR_dW7KlxwB1Dm18nW7ddBb_2MZrt3MSCRlbwgp39W4Q9-RD2vRWG1W8-Y5LS3HSXLwW8nCVqk5fVTFKW3JnxyC8hRCJDN26VyccGVNCWW4RVC_Q32W7YcN46VqW-CLVf7W4G3fH24MdWskW8jWC6J3vYdXjW1rnH5J70d1WmW8Vm3Dw7M9vVfW3k7SZr7K581tW2d_tNx2blRW1W8vQFPg194f1pW745Sc07dDh2QW7x1HFq5drc8gW4_0gCq3JlNskN49WTRsV8MzzVXJbgf80mlcyW1fz5YY3Mp1LkW4Vt5v16zLqRvW6Wmw417BztgKW96rr5P6-BWxkW1p_vxh2Gd8D1W8mmfdQ6Wtfc2Vztx7x2bJ1VzVwLzrY55KqyBW8Zh09M3hVZCrN1LyY3Mhx7F0W7RdCs9983zhbW5Tt4sK24Ys9YW5GfD5y1ngpSHW6hBzJQ7yzm11W6nFQ0z6yW9L_W7YtGCm5Bl1YBW9cndyy27mBB5W9dl4yl6b8sJ6W3kN-TJ3DLF3CV-FZzZ3pzjBtN8rQXxHpfbyBW78VjqL39Pzk8W2z0_MZ7kS4h6W9jL6m_76R32wW8KC4vj3t2PX5W86MgfS2KTrMHW6jp1FL65D_4nW31GjFc5xY1WRW6bhj838NG8HgW83tWzt6CGyszW2VlvRx43HfR1W60vb6x9jHlQVW3ntlmv6NvJtqW56y5jF5wBR5MVzfVmv8KYT3WW2f1jb-7z4WksW5zWMfZ94ylf5VLN88z4Lbcv3W7Mr3HX7lWWF1W2hYvZG5j5wQFW4N1JJx68TfQZW3TxTP54JTNLFW32s64R1R-42rW3YWbcZ6XswB-W70gXks28TBPjV_d0Qd7NJVbxW9dbNJL1H6Z8DVbbYwQ6YRvx3W2nGwd92-rGl1W7sLv5-65rRV2N3MP3VDwCqmQW52w7p94qkb4PW77n0jq6sZXgKW7_4S-w1CNV9LW35nSt63rmN6zN2NLFjfjGGZcW45fM4R5mTyXDW5ksmqV48GnLSMMx_vhnnrDsW83lSym92TksvVnfRGf1VFgDBW4Kj_wK4ZfT5VW1vKY7C4Jr27XW5GTQrZ337FzmW65cHrc7WMPrDW1M52px6ZLD7jW18Bb0h4hbSbTW7ChQsX2NLRHzW21RX7s2Wq6jtW17m1n36M5q1sW6YmgLx6NMKTjW7SXzMF2xw92PN2CBvBvQk16-W6kbJ8S2-PcYzW1SZzhN8dL8L0VWK0dh8kzNGMV1MBJ73Rx24XN7wx5-lNq1QqW7Hq2xB6xsdzfW42WCnx7Dd08FW6fqVGq7mkQhsV22Gmc1c2JWkW5dPNFD1jMnRyW34GKJz5H1Q25W1HfcFq3mGM5hN2LtnF4s2KC9W59smrS7RtrBKVdDyGB3wJ_kCW5myTxJ3mDDN0W2qy3bG4pWlpjW2rYrlS8W-QDzW86rRNL2y9YKHW2xtb193SWTbPW5dhxyk1RyqZxW2Y2DCC6q6FJqf8_yFYH04\" target=\"_blank\"><span style=\"font-family:Calibri,sans-serif;color:rgb(5,99,193)\">5840\r\n 26<sup>th</sup> Street West, 26 West Center, Suite 232, Bradenton, FL 34207</span></a><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:Calibri,sans-serif;color:rgb(0,121,161)\">Email:</span></b><span style=\"font-family:Calibri,sans-serif\">\r\n</span><a href=\"mailto:ElizabethC@BradentonAreaEDC.com\" target=\"_blank\"><span style=\"font-family:Calibri,sans-serif;color:rgb(5,99,193)\">ElizabethC@BradentonAreaEDC.com</span></a><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:Calibri,sans-serif;color:rgb(0,121,161)\">Phone: </span></b><span style=\"font-family:Calibri,sans-serif\">941-803-9033</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:Calibri,sans-serif;color:rgb(0,121,161)\">Cell: </span></b><span style=\"font-family:Calibri,sans-serif\">716-908-6134<b><span style=\"color:black\"><br>\r\n</span></b></span><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3nXN7tdxLBlNx75W8xTw1W5DhfbhW441nBQ5flSdWW1W5VB84k1hq6W5DP1bD7-6pDdN3JJXHKDQhG6W6F8Z0v1DPL-rW5XLxSr10k5y6W4X4MJk7Lg70zW48HB187YtmJ2W2LbV_r9gRyPkW4ZWZHp93RVGKW6vSKF09lmCQQN36f4yhCXRKpW7FXrTY7qRgjrN8lSmJWC2plBW4fk0J61SNM-wW956br920QrGTW7fy1bt7_hznnN4y6W8bWkRTPW6XcKtD4Bm82tVSDv9m3Wq6lrf6S0G_q04\" title=\"http://www.bradentonareaedc.com/\" target=\"_blank\"><span style=\"font-family:Calibri,sans-serif;color:purple\">BradentonAreaEDC.com</span></a><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Calibri,sans-serif\"> </span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3pVW3Xzpfn1qRjLMW5Yhxmp1Pxt3DW59LYYP267B9QV5LZ0Q2PN0dpN7tFxHjxQKX5W38_Rnl3Q86yyW91Q5hg2WKf4lW8m8r5231JtVNW4YG5RP1xk_M6W9lzZRb2_NGm5W8FhBpv73B4GrW6dPPGS35gv1tW6WD8Qs96Q9rhW1q0WT03TFlBpW4b67Dz2BfvjKW3p8F4f2bWXvpW1rg8tt2PTPhvW5p3VMj7BsWWDW6ZF60-3VHMcdW6sxRW9927zRGW48Nrc64DdFMjW5t24ZP5WzdCXf6V22Cs04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width: 0.3666in; height: 0.3666in;\" id=\"m_1590386045476668823m_-8707086132752645063Picture_x0020_49\" src=\"cid:ii_199879a682c4cff311\"></span></a>    \r\n<a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3p0VN1MnL7r2s16N48wVx_W_rwBW55QSbn2s3NhpW1XFW5C2w5y44W1PkDx646JStpW9d_L9p2rCZVHW7cSBmH7VJ3X6W3g6rSx5NT4sBW2N1myD4DD9jvW1mTlH43YjvBJW8K-CNL1MXzzzW71xrwN2rYQ4KW5ZzYJy2fktV0W15DrMn41FKyXN241jWrtZQfJW55jlpX1DVFQHV8LQgz4nPLpvW23dQM9434CD3W208qVY1LjDnQW4vDQ6N1ftljcW2FjLVy6hX9LCW8dTH516gWwpgW38_z1X87VcmbN13hn7WNVP-NdCTyFW04\" target=\"_blank\">\r\n<span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"34\" height=\"34\" style=\"width: 0.3583in; height: 0.3583in;\" id=\"m_1590386045476668823m_-8707086132752645063Picture_x0020_48\" src=\"cid:ii_199879a682c5b16b22\"></span></a>     <a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jll2-6qcW7Y8-PT6lZ3lNW5Z3Yrg9cmyL9W6bY7rJ24YzJdW1Gn3Lc2_xDMgW3JK3Jm1mS-yJW5Q_FYz6PbJv_W19PL1C2y4cJvW868dxG92wPvQW4mLRwM8BBXcDW1WgVZF4KjBnqW6y18KG67qFC5W8Xb-Dy1YXlBpW6h5hm-5P4cV8W6mKr4122QG3kW2ZCL8M1dZq2NW3Kt4hD57RNZRW8r3w_C6l8YMPW61xcm51t8VBQW4nhDL_288X9NN2r6nwRwRM-QW3RZ6SD3r4Y_qN68BMcNhDd2vW53Cw_22CQ3wfW3gYHgq8C8xp1W6vFb385DpXx1W3Mr_yW2XkGgjW6RB88k3DRG7Yf55M55g04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width: 0.3666in; height: 0.3666in;\" id=\"m_1590386045476668823m_-8707086132752645063Picture_x0020_47\" src=\"cid:ii_199879a682d692e333\"></span></a>     <a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3kHW6Ht2nV36fbHJW4jPksh1wlSZYF7pqflbN198W8VvCN21FZ8CBW7MDjP24DG4YPW1ky1M-61fVQlW3F2s7-7f6_4VW2fHfk64bLm7gW7MWm4-2pVY5qW6d7HWS1tSlh2W5YGW4W36H2T7W7G_wWp6hdqsGW30RV8L3XRXbkW97ch1r3SlYC9Vl0RQW9h45klW8l5bN-7bjfhXW7LNLgV70ZzVtW3q8kVr4djzMcW8Dt-6b2KDZymW6H0yT_7bKcr0W2GV-qK8Qx6JTW8F1YwK6NCMKFW9jmKpd8JrMDNVNdxz01fGY3Wf5d_9ls04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width: 0.3666in; height: 0.3666in;\" id=\"m_1590386045476668823m_-8707086132752645063Picture_x0020_46\" src=\"cid:ii_199879a682d7745b44\"></span></a>     <a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3m9Vb4NYS66VRVXW8XybLC8J19scW3P_pxs5z0_nSN6rWPfdDm2trW14CCRL40V8DXW90NXRy53n14DW4nqsQX9hGhtyMqPf07rTGC3VWZkXq4_FcXRW43vCwk24vftVW8wYHdZ74qM9VW60NppJ2pMvFhW5yBSxv4BsPTSW7wbR6g6y_bRSW9b47nx1Xvz74W4Mr6v096VQv8W6kJp7m5TM0W6W1by-0h8FBjDrW8j0_3649DbZVTjLsC1-07M7W1PHMNx6qWZbcW8RM1MV4T3p6zf6tVq5F04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width: 0.3666in; height: 0.3666in;\" id=\"m_1590386045476668823m_-8707086132752645063Picture_x0020_45\" src=\"cid:ii_199879a682d855d355\"></span></a><u></u><u></u></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"> </span><u></u><u></u></p>\r\n<div>\r\n<div style=\"border-right:none;border-bottom:none;border-left:none;border-top:1pt solid rgb(225,225,225);padding:3pt 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">From:</span></b><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"> Kevin Campos &lt;</span><a href=\"mailto:Kcampos@tampabayedc.com\" target=\"_blank\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">Kcampos@tampabayedc.com</span></a><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, September 24, 2025 11:44 AM<br>\r\n<b>To:</b> Nathan Staron &lt;</span><a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">nathan@lithiumbatterycompany.com</span></a><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">&gt;;\r\n Yanet Lopez &lt;</span><a href=\"mailto:yanetl@bradentonareaedc.com\" target=\"_blank\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">yanetl@bradentonareaedc.com</span></a><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">&gt;; Elizabeth\r\n Cordes &lt;</span><a href=\"mailto:elizabethc@bradentonareaedc.com\" target=\"_blank\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">elizabethc@bradentonareaedc.com</span></a><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">&gt;<br>\r\n<b>Subject:</b> Introduction - Bradenton Area EDC</span><u></u><u></u></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"> <u></u><u></u></p>\r\n<p class=\"MsoNormal\">Hello Nathan,\r\n<u></u><u></u></p>\r\n<p class=\"MsoNormal\"> <u></u><u></u></p>\r\n<p class=\"MsoNormal\">As discussed, I wanted to connect to the EDC in Manatee County for your Parrish, FL location.\r\n<u></u><u></u></p>\r\n<p class=\"MsoNormal\"> <u></u><u></u></p>\r\n<p class=\"MsoNormal\"><a href=\"mailto:yanetl@bradentonareaedc.com\" target=\"_blank\"><span style=\"text-decoration:none\">@yanetl@bradentonareaedc.com</span></a> and\r\n<a href=\"mailto:elizabethc@bradentonareaedc.com\" target=\"_blank\"><span style=\"text-decoration:none\">@elizabethc@bradentonareaedc.com</span></a> thanks for taking my call. Could you connect with Nathan Staron when you have a chance? I have included him on this\r\n email and they are expanding into that area. <u></u><u></u></p>\r\n<p class=\"MsoNormal\"> <u></u><u></u></p>\r\n<p class=\"MsoNormal\" style=\"background:white\">\r\n<b><span style=\"font-size:11pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(83,129,53)\">Kevin Campos, FCWP</span></b><span style=\"font-size:14pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(31,73,125)\"><br>\r\n</span><span style=\"font-size:10pt;font-family:Calibri,sans-serif;color:black\">ECONOMIC DEVELOPMENT MANAGER<br>\r\n</span><b><span style=\"font-size:10pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(83,129,53)\">TAMPA BAY ECONOMIC DEVELOPMENT COUNCIL</span></b><u></u><u></u></p>\r\n<p class=\"MsoNormal\" style=\"background:white\">\r\n<span style=\"font-size:9pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(31,73,125)\">101 E. Kennedy Blvd., Suite 2000, Tampa, FL 33602</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\" style=\"background:white\">\r\n<b><span lang=\"PT-BR\" style=\"font-size:9pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(83,129,53)\">O:</span></b><span lang=\"PT-BR\" style=\"font-size:9pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(31,73,125)\"> 813.518.2662 I\r\n</span><b><span lang=\"PT-BR\" style=\"font-size:9pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(83,129,53)\">M</span></b><span lang=\"PT-BR\" style=\"font-size:9pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(31,73,125)\">: 813.763.0307</span><span lang=\"PT-BR\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\" style=\"background:white\">\r\n<span style=\"color:black\"><a href=\"mailto:kcampos@tampabayedc.com\" target=\"_blank\"><span lang=\"PT-BR\" style=\"font-size:11pt;font-family:Calibri,sans-serif\">kcampos@tampabayedc.com</span></a></span><span lang=\"PT-BR\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\" style=\"background:white\">\r\n<span style=\"color:black\"><img border=\"0\" width=\"320\" height=\"130\" style=\"width: 3.3333in; height: 1.35in;\" id=\"m_1590386045476668823Picture_x0020_1\" src=\"cid:ii_199879a682d9374b66\"></span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:black\"> </span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n<p class=\"MsoNormal\"><img border=\"0\" width=\"1\" height=\"1\" style=\"width: 0.0083in; height: 0.0083in;\" id=\"m_1590386045476668823_x0000_i1025\" src=\"https://d152-C04.na1.hs-sales-engage.com/Cto/V+23284/d152-C04/R5R8b49ndN6J62ww2fJvtW1N4Kn33F4xTzW3BNN5Z1X0F7ZW1Gy6Bh3LCy1vW20Wx_43DN7vHW3K2R1w1V0Nlnn1V3ftj4W1\"><u></u><u></u></p>\r\n</div>\r\n</div>\r\n\r\n</div></blockquote></div>','Hi Elizabeth,\r\n\r\nWould you be able to send a Zoom link for the call that we have scheduled\r\nnext week?\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Thu, Sep 25, 2025 at 12:03 PM Elizabeth Cordes <\r\nelizabethc@bradentonareaedc.com> wrote:\r\n\r\n> Hi Nathan,\r\n>\r\n>\r\n>\r\n> It is a pleasure to e-meet both of you, Brian and Rick!\r\n>\r\n>\r\n>\r\n> Let’s do a call on Wednesday, October 1 at 10am? If a site has already\r\n> been selected for the project, we are happy to meet you at the site as\r\n> well. Please let me know what works best for you.\r\n>\r\n>\r\n>\r\n> Kindest regards,\r\n>\r\n>\r\n>\r\n> *Elizabeth Cordes*\r\n>\r\n> Director of Business Recruitment & Expansion\r\n>\r\n> *Bradenton Area Economic Development Corporation*\r\n>\r\n> 5840 26th Street West, 26 West Center, Suite 232, Bradenton, FL 34207\r\n> <https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkMgQprkW6N3_xK6lZ3lGW1MLz698CDR_dW7KlxwB1Dm18nW7ddBb_2MZrt3MSCRlbwgp39W4Q9-RD2vRWG1W8-Y5LS3HSXLwW8nCVqk5fVTFKW3JnxyC8hRCJDN26VyccGVNCWW4RVC_Q32W7YcN46VqW-CLVf7W4G3fH24MdWskW8jWC6J3vYdXjW1rnH5J70d1WmW8Vm3Dw7M9vVfW3k7SZr7K581tW2d_tNx2blRW1W8vQFPg194f1pW745Sc07dDh2QW7x1HFq5drc8gW4_0gCq3JlNskN49WTRsV8MzzVXJbgf80mlcyW1fz5YY3Mp1LkW4Vt5v16zLqRvW6Wmw417BztgKW96rr5P6-BWxkW1p_vxh2Gd8D1W8mmfdQ6Wtfc2Vztx7x2bJ1VzVwLzrY55KqyBW8Zh09M3hVZCrN1LyY3Mhx7F0W7RdCs9983zhbW5Tt4sK24Ys9YW5GfD5y1ngpSHW6hBzJQ7yzm11W6nFQ0z6yW9L_W7YtGCm5Bl1YBW9cndyy27mBB5W9dl4yl6b8sJ6W3kN-TJ3DLF3CV-FZzZ3pzjBtN8rQXxHpfbyBW78VjqL39Pzk8W2z0_MZ7kS4h6W9jL6m_76R32wW8KC4vj3t2PX5W86MgfS2KTrMHW6jp1FL65D_4nW31GjFc5xY1WRW6bhj838NG8HgW83tWzt6CGyszW2VlvRx43HfR1W60vb6x9jHlQVW3ntlmv6NvJtqW56y5jF5wBR5MVzfVmv8KYT3WW2f1jb-7z4WksW5zWMfZ94ylf5VLN88z4Lbcv3W7Mr3HX7lWWF1W2hYvZG5j5wQFW4N1JJx68TfQZW3TxTP54JTNLFW32s64R1R-42rW3YWbcZ6XswB-W70gXks28TBPjV_d0Qd7NJVbxW9dbNJL1H6Z8DVbbYwQ6YRvx3W2nGwd92-rGl1W7sLv5-65rRV2N3MP3VDwCqmQW52w7p94qkb4PW77n0jq6sZXgKW7_4S-w1CNV9LW35nSt63rmN6zN2NLFjfjGGZcW45fM4R5mTyXDW5ksmqV48GnLSMMx_vhnnrDsW83lSym92TksvVnfRGf1VFgDBW4Kj_wK4ZfT5VW1vKY7C4Jr27XW5GTQrZ337FzmW65cHrc7WMPrDW1M52px6ZLD7jW18Bb0h4hbSbTW7ChQsX2NLRHzW21RX7s2Wq6jtW17m1n36M5q1sW6YmgLx6NMKTjW7SXzMF2xw92PN2CBvBvQk16-W6kbJ8S2-PcYzW1SZzhN8dL8L0VWK0dh8kzNGMV1MBJ73Rx24XN7wx5-lNq1QqW7Hq2xB6xsdzfW42WCnx7Dd08FW6fqVGq7mkQhsV22Gmc1c2JWkW5dPNFD1jMnRyW34GKJz5H1Q25W1HfcFq3mGM5hN2LtnF4s2KC9W59smrS7RtrBKVdDyGB3wJ_kCW5myTxJ3mDDN0W2qy3bG4pWlpjW2rYrlS8W-QDzW86rRNL2y9YKHW2xtb193SWTbPW5dhxyk1RyqZxW2Y2DCC6q6FJqf8_yFYH04>\r\n>\r\n> *Email:* ElizabethC@BradentonAreaEDC.com\r\n>\r\n> *Phone: *941-803-9033\r\n>\r\n> *Cell: *716-908-6134\r\n> BradentonAreaEDC.com\r\n> <https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3nXN7tdxLBlNx75W8xTw1W5DhfbhW441nBQ5flSdWW1W5VB84k1hq6W5DP1bD7-6pDdN3JJXHKDQhG6W6F8Z0v1DPL-rW5XLxSr10k5y6W4X4MJk7Lg70zW48HB187YtmJ2W2LbV_r9gRyPkW4ZWZHp93RVGKW6vSKF09lmCQQN36f4yhCXRKpW7FXrTY7qRgjrN8lSmJWC2plBW4fk0J61SNM-wW956br920QrGTW7fy1bt7_hznnN4y6W8bWkRTPW6XcKtD4Bm82tVSDv9m3Wq6lrf6S0G_q04>\r\n>\r\n>\r\n>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3pVW3Xzpfn1qRjLMW5Yhxmp1Pxt3DW59LYYP267B9QV5LZ0Q2PN0dpN7tFxHjxQKX5W38_Rnl3Q86yyW91Q5hg2WKf4lW8m8r5231JtVNW4YG5RP1xk_M6W9lzZRb2_NGm5W8FhBpv73B4GrW6dPPGS35gv1tW6WD8Qs96Q9rhW1q0WT03TFlBpW4b67Dz2BfvjKW3p8F4f2bWXvpW1rg8tt2PTPhvW5p3VMj7BsWWDW6ZF60-3VHMcdW6sxRW9927zRGW48Nrc64DdFMjW5t24ZP5WzdCXf6V22Cs04>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3p0VN1MnL7r2s16N48wVx_W_rwBW55QSbn2s3NhpW1XFW5C2w5y44W1PkDx646JStpW9d_L9p2rCZVHW7cSBmH7VJ3X6W3g6rSx5NT4sBW2N1myD4DD9jvW1mTlH43YjvBJW8K-CNL1MXzzzW71xrwN2rYQ4KW5ZzYJy2fktV0W15DrMn41FKyXN241jWrtZQfJW55jlpX1DVFQHV8LQgz4nPLpvW23dQM9434CD3W208qVY1LjDnQW4vDQ6N1ftljcW2FjLVy6hX9LCW8dTH516gWwpgW38_z1X87VcmbN13hn7WNVP-NdCTyFW04>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jll2-6qcW7Y8-PT6lZ3lNW5Z3Yrg9cmyL9W6bY7rJ24YzJdW1Gn3Lc2_xDMgW3JK3Jm1mS-yJW5Q_FYz6PbJv_W19PL1C2y4cJvW868dxG92wPvQW4mLRwM8BBXcDW1WgVZF4KjBnqW6y18KG67qFC5W8Xb-Dy1YXlBpW6h5hm-5P4cV8W6mKr4122QG3kW2ZCL8M1dZq2NW3Kt4hD57RNZRW8r3w_C6l8YMPW61xcm51t8VBQW4nhDL_288X9NN2r6nwRwRM-QW3RZ6SD3r4Y_qN68BMcNhDd2vW53Cw_22CQ3wfW3gYHgq8C8xp1W6vFb385DpXx1W3Mr_yW2XkGgjW6RB88k3DRG7Yf55M55g04>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3kHW6Ht2nV36fbHJW4jPksh1wlSZYF7pqflbN198W8VvCN21FZ8CBW7MDjP24DG4YPW1ky1M-61fVQlW3F2s7-7f6_4VW2fHfk64bLm7gW7MWm4-2pVY5qW6d7HWS1tSlh2W5YGW4W36H2T7W7G_wWp6hdqsGW30RV8L3XRXbkW97ch1r3SlYC9Vl0RQW9h45klW8l5bN-7bjfhXW7LNLgV70ZzVtW3q8kVr4djzMcW8Dt-6b2KDZymW6H0yT_7bKcr0W2GV-qK8Qx6JTW8F1YwK6NCMKFW9jmKpd8JrMDNVNdxz01fGY3Wf5d_9ls04>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3m9Vb4NYS66VRVXW8XybLC8J19scW3P_pxs5z0_nSN6rWPfdDm2trW14CCRL40V8DXW90NXRy53n14DW4nqsQX9hGhtyMqPf07rTGC3VWZkXq4_FcXRW43vCwk24vftVW8wYHdZ74qM9VW60NppJ2pMvFhW5yBSxv4BsPTSW7wbR6g6y_bRSW9b47nx1Xvz74W4Mr6v096VQv8W6kJp7m5TM0W6W1by-0h8FBjDrW8j0_3649DbZVTjLsC1-07M7W1PHMNx6qWZbcW8RM1MV4T3p6zf6tVq5F04>\r\n>\r\n>\r\n>\r\n> *From:* Nathan Staron <Nathan@lithiumbatterycompany.com>\r\n> *Sent:* Wednesday, September 24, 2025 5:47 PM\r\n> *To:* Elizabeth Cordes <elizabethc@bradentonareaedc.com>; Yanet Lopez <\r\n> yanetl@bradentonareaedc.com>\r\n> *Cc:* Kevin Campos <Kcampos@tampabayedc.com>; Brian Stufflebean\r\n> <brian@mavrix.one>; Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Introduction - Bradenton Area EDC\r\n>\r\n>\r\n>\r\n> Good Afternoon Elizabeth,\r\n>\r\n>\r\n>\r\n> Thank you for your prompt response and for the kind welcome. It was a\r\n> pleasure e-meeting you as well.\r\n>\r\n>\r\n>\r\n> I would like to introduce Brian Stufflebean and Rick Mislan, who are the\r\n> project leads for our expansion into Parrish, FL. They will be instrumental\r\n> in the development of our new location, and I believe it would be\r\n> beneficial for them to connect with you directly.\r\n>\r\n>\r\n>\r\n> Regarding setting up a meeting, I agree that it would be valuable to\r\n> discuss the project further. We would be happy to coordinate a time that\r\n> works best for everyone next week. As you mentioned, Tuesday and Wednesday\r\n> work well for you, and we can certainly align with that.\r\n>\r\n>\r\n>\r\n> Please let us know what specific times on Tuesday or Wednesday next week\r\n> would be most convenient for you and Yanet, and we will make sure to\r\n> schedule a call or meeting accordingly. We look forward to the opportunity\r\n> to collaborate.\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mKW8HRTpJ4J04PDW37wl0Y7Y-_fZW186VyT5_Db6GW95yYQ_288R19W7yqL2t6Mn_HhW6lB4CJ12klSPW3RB7pV6f--KMW3-hGWf5kwhWdW4yGKrV5DdXLjW126l8-3Q88_4W37t4-W88ptC-W6CKNr_6lK9dXN2C3v7YGny2fW5pfR6y6Wmk7gW2Jw-Zt2YB6mhW4xkqXt65s0Z7W40_Tb_3pvYLqW1rl31446rTRSW8MtJH46sXcSpW83x4sW4bnWqqW4Q4WPs8Yk0QkW57tT_L208xMff6pFMkb04>\r\n>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3l4N6VvrVBKF5WQW56Kg9c5SF2Q9N564SNPBmh1TW8ZB8KN1X9TSRW6yR9Tl4fNQGtW7vXYHz8VhMdxW8P-Pv15DC-z5W1-2MP34KKZDwW2Bzqfx8N3Y87W5C7l8r2sDX99W99mblX8dcgfbW1sq5pQ9dY3XmW7rNPy74p-xTGVJ1Bdy1nF-sNW4wRT_b70hm13W6pC7YD6nMgCdW93GyNY2yFCtPMJ9l7y4pm1DW2FWJzD6mCH9WW6XtVNG10nYSpW1kfp243YNJjlW1T19FR46hlgHf163jHC04>\r\n>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3pQN1S45LCmGrz0VcB7FK39dxN7Vf2srt8bQhcQVsqC565DgRPrW50dtWG5z70s7W8CWskF6ZmwmgVTGb-L6kzlK6VDW3tf8N_1v2W3gG3Z-2_FHgWW6L9lFV46ycJtW3B9D3j2zNpz1W6nfLWy3c8gyrW605trZ4trMK0W7rpP1W7_5fs7W77NH621f9qXGW1trpSF6dM7XcW8wYnNs8YJ2jxW19gv0v4cPy7LW2bm28W787m0jVhGyP67Cm9ZZW2xVy6x7tFlgkW5d8Tr-385pFRW6wY-hZ6tzSG6W3zndmc7VQ1bDdNR_Yj04>\r\n>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3pdW4YTQLY5WC4FNVPHSMC8n4CsgW8s6rF98BLQDpW7LR_317mmrlkW8_xpXq3GCr04VJB88M4Ntt_9W4-wyQx4mJQkJW62_k4h2xdHh4VWQZkb57wrjnW347vg45zLB2TVtW9wQ3WcKHTVVBqF630gvjSW8pZZZT7p7QRRW92gZhs5_kZ3mW4HjWzV7L7QqkW99S_C51wPDYjW32s4NY7Nv26hW98ZwqH2YCCcpW60_nqt4YXC4kN5N7PPjDTmrTW8p44Jl7-2NlMW5B2v_r1tkzbvW4x1Dl87YybzXVW8vcd5bgCtKf2WX11g04>\r\n>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3pSW5Bf5Yd4rCPHdW8sMtW98BdBmgW27tHg36KmVF-W7N14zZ5wwbgXW3p3b4l7b-ZwNW23KPpR5SrkrpW5mllYr3G30xcW6Qz5zR2Wp_TVVq1JYY2BNlnVW8YjKtl1RwZLHW3g2FfH3_83HKN9kHm1lXSPvsW2vB8Xd23NX-qW4gGYnB7nzJSNVTYdPL3Jk7tMW8MyGXl2NrqhPW4zsBN45dwZlDW7VZ4xH85PgxxW80cy4l93n5ZJW2cf9QX5RdsYhN2FHcYZJDMljW7tJ69X5XWzm5W6_GDM65_1MJqW6pFSHN7GGsV5f4NNQbW04>\r\n>\r\n>\r\n>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mKW8HRTpJ4J04PDW37wl0Y7Y-_fZW186VyT5_Db6GW95yYQ_288R19W7yqL2t6Mn_HhW6lB4CJ12klSPW3RB7pV6f--KMW3-hGWf5kwhWdW4yGKrV5DdXLjW126l8-3Q88_4W37t4-W88ptC-W6CKNr_6lK9dXN2C3v7YGny2fW5pfR6y6Wmk7gW2Jw-Zt2YB6mhW4xkqXt65s0Z7W40_Tb_3pvYLqW1rl31446rTRSW8MtJH46sXcSpW83x4sW4bnWqqW4Q4WPs8Yk0QkW57tT_L208xMff6pFMkb04>\r\n>\r\n> *NATHAN A. STARON*\r\n>\r\n> Founder / CEO\r\n>\r\n> *Lithium Battery Company*\r\n>\r\n> *Cell Phone* 813-504-0074\r\n>\r\n> *Phone* 844-GET-LITHIUM\r\n>\r\n> Nathan@lithiumbatterycompany.com\r\n>\r\n> *Schedule A Zoom*\r\n> <https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3pcW3GJtyC7zkdnwW6y_zVy4sQ_wKW694R1T3VGfDFW3lZf7J3lRFPVW3xgqsm8frxF0W1LvnmW6fNxShW2XbVq58rwRvVVXTRl72kL8bTW5M3pDZ81G679W4t6LFR6B0P91W8dntfw5kFdK4W7KGF9W6rkSBcMF_l5mcqJ47W6ykXW53DfLJFW4HLKBn65J0LBW4CjHd66XSNgzN6PzrJgKTJs9VK9KwV3lPL88N32G8k_Qc8tXW78dCbp1Vqc0fW7YvzCP140tqwW70pTCh5hLZzvW4g4V1T6YfxTlW2mwQ9N6rP6GCf6Y7n0M04>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n> On Wed, Sep 24, 2025 at 3:54 PM Elizabeth Cordes <\r\n> elizabethc@bradentonareaedc.com> wrote:\r\n>\r\n> Hi Kevin,\r\n>\r\n>\r\n>\r\n> Thank you very much for the introduction! It is a pleasure to e-meet you,\r\n> Nathan. I would very much like to set up a call or meeting to discuss your\r\n> project further. Please let me know a day and time that would work best for\r\n> you. We have good availability Tuesday and Wednesday next week. I look\r\n> forward to working with you.\r\n>\r\n>\r\n>\r\n> Kindest regards,\r\n>\r\n>\r\n>\r\n> *Elizabeth Cordes*\r\n>\r\n> Director of Business Recruitment & Expansion\r\n>\r\n> *Bradenton Area Economic Development Corporation*\r\n>\r\n> 5840 26th Street West, 26 West Center, Suite 232, Bradenton, FL 34207\r\n> <https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkMgQprkW6N3_xK6lZ3lGW1MLz698CDR_dW7KlxwB1Dm18nW7ddBb_2MZrt3MSCRlbwgp39W4Q9-RD2vRWG1W8-Y5LS3HSXLwW8nCVqk5fVTFKW3JnxyC8hRCJDN26VyccGVNCWW4RVC_Q32W7YcN46VqW-CLVf7W4G3fH24MdWskW8jWC6J3vYdXjW1rnH5J70d1WmW8Vm3Dw7M9vVfW3k7SZr7K581tW2d_tNx2blRW1W8vQFPg194f1pW745Sc07dDh2QW7x1HFq5drc8gW4_0gCq3JlNskN49WTRsV8MzzVXJbgf80mlcyW1fz5YY3Mp1LkW4Vt5v16zLqRvW6Wmw417BztgKW96rr5P6-BWxkW1p_vxh2Gd8D1W8mmfdQ6Wtfc2Vztx7x2bJ1VzVwLzrY55KqyBW8Zh09M3hVZCrN1LyY3Mhx7F0W7RdCs9983zhbW5Tt4sK24Ys9YW5GfD5y1ngpSHW6hBzJQ7yzm11W6nFQ0z6yW9L_W7YtGCm5Bl1YBW9cndyy27mBB5W9dl4yl6b8sJ6W3kN-TJ3DLF3CV-FZzZ3pzjBtN8rQXxHpfbyBW78VjqL39Pzk8W2z0_MZ7kS4h6W9jL6m_76R32wW8KC4vj3t2PX5W86MgfS2KTrMHW6jp1FL65D_4nW31GjFc5xY1WRW6bhj838NG8HgW83tWzt6CGyszW2VlvRx43HfR1W60vb6x9jHlQVW3ntlmv6NvJtqW56y5jF5wBR5MVzfVmv8KYT3WW2f1jb-7z4WksW5zWMfZ94ylf5VLN88z4Lbcv3W7Mr3HX7lWWF1W2hYvZG5j5wQFW4N1JJx68TfQZW3TxTP54JTNLFW32s64R1R-42rW3YWbcZ6XswB-W70gXks28TBPjV_d0Qd7NJVbxW9dbNJL1H6Z8DVbbYwQ6YRvx3W2nGwd92-rGl1W7sLv5-65rRV2N3MP3VDwCqmQW52w7p94qkb4PW77n0jq6sZXgKW7_4S-w1CNV9LW35nSt63rmN6zN2NLFjfjGGZcW45fM4R5mTyXDW5ksmqV48GnLSMMx_vhnnrDsW83lSym92TksvVnfRGf1VFgDBW4Kj_wK4ZfT5VW1vKY7C4Jr27XW5GTQrZ337FzmW65cHrc7WMPrDW1M52px6ZLD7jW18Bb0h4hbSbTW7ChQsX2NLRHzW21RX7s2Wq6jtW17m1n36M5q1sW6YmgLx6NMKTjW7SXzMF2xw92PN2CBvBvQk16-W6kbJ8S2-PcYzW1SZzhN8dL8L0VWK0dh8kzNGMV1MBJ73Rx24XN7wx5-lNq1QqW7Hq2xB6xsdzfW42WCnx7Dd08FW6fqVGq7mkQhsV22Gmc1c2JWkW5dPNFD1jMnRyW34GKJz5H1Q25W1HfcFq3mGM5hN2LtnF4s2KC9W59smrS7RtrBKVdDyGB3wJ_kCW5myTxJ3mDDN0W2qy3bG4pWlpjW2rYrlS8W-QDzW86rRNL2y9YKHW2xtb193SWTbPW5dhxyk1RyqZxW2Y2DCC6q6FJqf8_yFYH04>\r\n>\r\n> *Email:* ElizabethC@BradentonAreaEDC.com\r\n>\r\n> *Phone: *941-803-9033\r\n>\r\n> *Cell: *716-908-6134\r\n> BradentonAreaEDC.com\r\n> <https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3nXN7tdxLBlNx75W8xTw1W5DhfbhW441nBQ5flSdWW1W5VB84k1hq6W5DP1bD7-6pDdN3JJXHKDQhG6W6F8Z0v1DPL-rW5XLxSr10k5y6W4X4MJk7Lg70zW48HB187YtmJ2W2LbV_r9gRyPkW4ZWZHp93RVGKW6vSKF09lmCQQN36f4yhCXRKpW7FXrTY7qRgjrN8lSmJWC2plBW4fk0J61SNM-wW956br920QrGTW7fy1bt7_hznnN4y6W8bWkRTPW6XcKtD4Bm82tVSDv9m3Wq6lrf6S0G_q04>\r\n>\r\n>\r\n>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3pVW3Xzpfn1qRjLMW5Yhxmp1Pxt3DW59LYYP267B9QV5LZ0Q2PN0dpN7tFxHjxQKX5W38_Rnl3Q86yyW91Q5hg2WKf4lW8m8r5231JtVNW4YG5RP1xk_M6W9lzZRb2_NGm5W8FhBpv73B4GrW6dPPGS35gv1tW6WD8Qs96Q9rhW1q0WT03TFlBpW4b67Dz2BfvjKW3p8F4f2bWXvpW1rg8tt2PTPhvW5p3VMj7BsWWDW6ZF60-3VHMcdW6sxRW9927zRGW48Nrc64DdFMjW5t24ZP5WzdCXf6V22Cs04>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3p0VN1MnL7r2s16N48wVx_W_rwBW55QSbn2s3NhpW1XFW5C2w5y44W1PkDx646JStpW9d_L9p2rCZVHW7cSBmH7VJ3X6W3g6rSx5NT4sBW2N1myD4DD9jvW1mTlH43YjvBJW8K-CNL1MXzzzW71xrwN2rYQ4KW5ZzYJy2fktV0W15DrMn41FKyXN241jWrtZQfJW55jlpX1DVFQHV8LQgz4nPLpvW23dQM9434CD3W208qVY1LjDnQW4vDQ6N1ftljcW2FjLVy6hX9LCW8dTH516gWwpgW38_z1X87VcmbN13hn7WNVP-NdCTyFW04>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jll2-6qcW7Y8-PT6lZ3lNW5Z3Yrg9cmyL9W6bY7rJ24YzJdW1Gn3Lc2_xDMgW3JK3Jm1mS-yJW5Q_FYz6PbJv_W19PL1C2y4cJvW868dxG92wPvQW4mLRwM8BBXcDW1WgVZF4KjBnqW6y18KG67qFC5W8Xb-Dy1YXlBpW6h5hm-5P4cV8W6mKr4122QG3kW2ZCL8M1dZq2NW3Kt4hD57RNZRW8r3w_C6l8YMPW61xcm51t8VBQW4nhDL_288X9NN2r6nwRwRM-QW3RZ6SD3r4Y_qN68BMcNhDd2vW53Cw_22CQ3wfW3gYHgq8C8xp1W6vFb385DpXx1W3Mr_yW2XkGgjW6RB88k3DRG7Yf55M55g04>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3kHW6Ht2nV36fbHJW4jPksh1wlSZYF7pqflbN198W8VvCN21FZ8CBW7MDjP24DG4YPW1ky1M-61fVQlW3F2s7-7f6_4VW2fHfk64bLm7gW7MWm4-2pVY5qW6d7HWS1tSlh2W5YGW4W36H2T7W7G_wWp6hdqsGW30RV8L3XRXbkW97ch1r3SlYC9Vl0RQW9h45klW8l5bN-7bjfhXW7LNLgV70ZzVtW3q8kVr4djzMcW8Dt-6b2KDZymW6H0yT_7bKcr0W2GV-qK8Qx6JTW8F1YwK6NCMKFW9jmKpd8JrMDNVNdxz01fGY3Wf5d_9ls04>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3m9Vb4NYS66VRVXW8XybLC8J19scW3P_pxs5z0_nSN6rWPfdDm2trW14CCRL40V8DXW90NXRy53n14DW4nqsQX9hGhtyMqPf07rTGC3VWZkXq4_FcXRW43vCwk24vftVW8wYHdZ74qM9VW60NppJ2pMvFhW5yBSxv4BsPTSW7wbR6g6y_bRSW9b47nx1Xvz74W4Mr6v096VQv8W6kJp7m5TM0W6W1by-0h8FBjDrW8j0_3649DbZVTjLsC1-07M7W1PHMNx6qWZbcW8RM1MV4T3p6zf6tVq5F04>\r\n>\r\n>\r\n>\r\n> *From:* Kevin Campos <Kcampos@tampabayedc.com>\r\n> *Sent:* Wednesday, September 24, 2025 11:44 AM\r\n> *To:* Nathan Staron <nathan@lithiumbatterycompany.com>; Yanet Lopez <\r\n> yanetl@bradentonareaedc.com>; Elizabeth Cordes <\r\n> elizabethc@bradentonareaedc.com>\r\n> *Subject:* Introduction - Bradenton Area EDC\r\n>\r\n>\r\n>\r\n> Hello Nathan,\r\n>\r\n>\r\n>\r\n> As discussed, I wanted to connect to the EDC in Manatee County for your\r\n> Parrish, FL location.\r\n>\r\n>\r\n>\r\n> @yanetl@bradentonareaedc.com <yanetl@bradentonareaedc.com> and\r\n> @elizabethc@bradentonareaedc.com <elizabethc@bradentonareaedc.com> thanks\r\n> for taking my call. Could you connect with Nathan Staron when you have a\r\n> chance? I have included him on this email and they are expanding into that\r\n> area.\r\n>\r\n>\r\n>\r\n> *Kevin Campos, FCWP*\r\n> ECONOMIC DEVELOPMENT MANAGER\r\n> *TAMPA BAY ECONOMIC DEVELOPMENT COUNCIL*\r\n>\r\n> 101 E. Kennedy Blvd., Suite 2000, Tampa, FL 33602\r\n>\r\n> *O:* 813.518.2662 I *M*: 813.763.0307\r\n>\r\n> kcampos@tampabayedc.com\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>',0,0,0,0,0,0,'2025-09-26 19:58:23','2025-12-09 19:29:11','2025-12-09 19:29:11','2025-12-09 19:29:11',NULL,NULL,NULL),
(801,4,' <BY5PR18MB3089DA68B014814999F80EEDEF1EA@BY5PR18MB3089.namprd18.prod.outlook.com>',NULL,NULL,'Follow Up','christopher.hawk@ixana.ai','Christopher Hawk','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nRick,&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nIt was great speaking with you at UAS industry day. To recap, I\'m the BD manager for Ixana; we do ultra-efficient data transfer and we are looking for a partner to do some development with on removing wires from drones and/or making them more modular or even\r\n facilitating swarming or multi-drone operations in RF denied environments.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nI\'d like to know how your business model is set up and how we are able to fit in.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nWould you have a few mins sometime next week get on a 15 min call?</div>\r\n<div class=\"elementToProof\" id=\"Signature\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<p style=\"margin-top: 1em; margin-bottom: 1em;\" class=\"elementToProof\">&nbsp;</p>\r\n<p style=\"margin-top: 1em; margin-bottom: 1em;\" class=\"elementToProof\">&nbsp;</p>\r\n<p style=\"margin-top: 1em; margin-bottom: 1em;\" class=\"elementToProof\">Respectfully,</p>\r\n<p style=\"margin-top: 1em; margin-bottom: 1em;\" class=\"elementToProof\">&nbsp;</p>\r\n<p style=\"margin-top: 1em; margin-bottom: 1em;\" class=\"elementToProof\">&nbsp;</p>\r\n<p style=\"margin-top: 1em; margin-bottom: 1em;\" class=\"elementToProof\">Christopher Hawk</p>\r\n<p style=\"margin-top: 1em; margin-bottom: 1em;\" class=\"elementToProof\">Ixana, Business Development Manager</p>\r\n<p style=\"margin-top: 1em; margin-bottom: 1em;\" class=\"elementToProof\">(C): (910) 745-3180 | (E): christopher.hawk@ixana.ai</p>\r\n<p style=\"margin-top: 1em; margin-bottom: 1em;\" class=\"elementToProof\">&nbsp;</p>\r\n</div>\r\n</body>\r\n</html>','Rick,\r\n\r\nIt was great speaking with you at UAS industry day. To recap, I\'m the BD manager for Ixana; we do ultra-efficient data transfer and we are looking for a partner to do some development with on removing wires from drones and/or making them more modular or even facilitating swarming or multi-drone operations in RF denied environments.\r\n\r\nI\'d like to know how your business model is set up and how we are able to fit in.\r\n\r\nWould you have a few mins sometime next week get on a 15 min call?\r\n\r\n\r\n\r\n\r\n\r\n\r\nRespectfully,\r\n\r\n\r\n\r\n\r\n\r\nChristopher Hawk\r\n\r\nIxana, Business Development Manager\r\n\r\n(C): (910) 745-3180 | (E): christopher.hawk@ixana.ai',0,0,0,0,0,0,'2025-09-26 20:28:47','2025-12-09 19:29:12','2025-12-09 19:29:12','2025-12-09 19:29:12',NULL,NULL,NULL),
(802,4,' <SA1PR18MB482452F09ACB8F9039FCE2B1A11EA@SA1PR18MB4824.namprd18.prod.outlook.com>',NULL,NULL,'Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration','jtrevey@forgenano.com','James Trevey','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nJordan,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nI won\'t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nI\'ll send to you as soon as I can next week.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nJames</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<hr style=\"display: inline-block; width: 98%;\">\r\n<div style=\"font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;James Trevey &lt;jtrevey@forgenano.com&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 24, 2025 10:49 AM<br>\r\n<b>To:</b>&nbsp;Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;dansheridanmusic@gmail.com&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration </div>\r\n<div style=\"font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nJordan,</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating.&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nI also have a verbal matter we can discuss soon. Once I\'ve got the deck ready I\'ll find time for a short call with you.</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nTalk soon.</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nJames</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div id=\"x_divRplyFwdMsg\">\r\n<div style=\"direction: ltr;\"><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: black;\"><b>From:</b>&nbsp;Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 24, 2025 10:07 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;jtrevey@forgenano.com&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;dansheridanmusic@gmail.com&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</span>\r\n</div>\r\n<div style=\"direction: ltr;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr;\">Hi James,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Thank you for the follow up.&nbsp; You were on my list to contact today!&nbsp;&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Would that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">I will let you know if I will be able to make it up to Detroit for The Battery Show.&nbsp;&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Looking forward to seeing the deck.</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">All the best,&nbsp;</div>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; color: black;\"><br>\r\n</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; color: black;\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: black;\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: blue;\"><u>jordan<a style=\"color: blue; margin: 0px;\" class=\"OWAAutoLink\" id=\"OWA90d54842-2faf-de90-7a8d-72df2faa57c2\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: rgb(5, 99, 193);\"><a style=\"margin-top: 0px; margin-bottom: 0px;\" class=\"OWAAutoLink\" id=\"OWA0e5fa4bd-9870-58c4-8622-78d4cf24a810\" data-auth=\"NotApplicable\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&amp;typo=1\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">On Wed, Sep 24, 2025 at 11:59 AM James Trevey &lt;<a class=\"OWAAutoLink\" id=\"OWAb7c381dc-96e5-45d0-b93e-e2aa9a01935f\" href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin: 0px 0px 0px 0.8ex; padding-left: 1ex; border-left: 1px solid rgb(204, 204, 204);\">\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nHey Jordan,</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nThank you for the quick follow up.&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we\'ve decided we\'d like to provide information on additional products to you which are typically not on the menu but I have details\r\n to sort first.&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nRegarding shows, happy to discuss when ready. We\'ll be at The Battery Show in 2 weeks, which I think you should consider attending and I\'d be happy to connect while there.&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nJames</div>\r\n<div id=\"x_x_m_-6814561645313625911appendonsend\"></div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div id=\"x_x_m_-6814561645313625911divRplyFwdMsg\">\r\n<div style=\"direction: ltr;\"><span style=\"font-family: Calibri, sans-serif; font-size: 11pt; color: black;\"><b>From:</b>&nbsp;Jordan Wroblewski &lt;<a class=\"OWAAutoLink\" id=\"OWAb0d22678-bda4-9932-d0a1-907e851cab2c\" href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Thursday, September 18, 2025 11:03 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a class=\"OWAAutoLink\" id=\"OWAe81f39b0-ec24-b743-ca24-424e13107033\" href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a class=\"OWAAutoLink\" id=\"OWA96c03181-9c79-378c-c150-ff2be9067492\" href=\"mailto:dansheridanmusic@gmail.com\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a class=\"OWAAutoLink\" id=\"OWA2cb5ce13-d9cd-8a95-6b1c-85d355dafacd\" href=\"mailto:nathan@lithiumbatterycompany.com\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</span>\r\n</div>\r\n<div style=\"direction: ltr;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr;\">Hi James,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Thank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information\r\n to optimize our collaboration and planning:<br>\r\n<br>\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.<br>\r\n<br>\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.<br>\r\n<br>\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.<br>\r\n<br>\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.<br>\r\n<br>\r\nClarify your minimum order quantities and expected pricing for each product line.<br>\r\n<br>\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.<br>\r\n<br>\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted\r\n commercial timelines, and expected pricing.<br>\r\n<br>\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made module and packs for:<br>\r\n<br>\r\n18650:<br>\r\n<br>\r\nNMC: TNL-ITR18650-2600P<br>\r\n<br>\r\nLFP: SW18650-26HPA<br>\r\n<br>\r\nLFP: IFR18650-2000mAh<br>\r\n<br>\r\n21700:<br>\r\n<br>\r\nNMC: INR21700-50S<br>\r\n<br>\r\nNMC: INR21700-4000<br>\r\n<br>\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.\r\n</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">In terms of the shows you mentioned, we are getting our schedules aligned so we can attend.&nbsp; What\'s the &quot;secret meeting&quot; in Nov?&nbsp;<br>\r\n<br>\r\nWe look forward to your prompt response so we can efficiently move to the next stages.\r\n</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Talk soon,&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; color: black;\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: black;\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: blue;\"><u>jordan<a style=\"color: blue; margin: 0px;\" class=\"OWAAutoLink\" id=\"OWAa894c5d9-0741-6243-3e0e-449171223bec\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: rgb(5, 99, 193);\"><a style=\"margin-top: 0px; margin-bottom: 0px;\" class=\"OWAAutoLink\" id=\"OWAc8a757c1-67b5-a167-3793-f15be7380064\" data-auth=\"NotApplicable\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&amp;typo=1\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">On Wed, Sep 17, 2025 at 7:00 PM James Trevey &lt;<a class=\"OWAAutoLink\" id=\"OWA13ecdc83-a950-da4e-3b8e-d04e2eb16671\" href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin: 0px 0px 0px 0.8ex; padding-left: 1ex; border-left: 1px solid rgb(204, 204, 204);\">\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nJordan,</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nThanks for moving quickly here. I got bogged down today but better late than never.&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<ul style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px; list-style-position: initial; list-style-type: disc;\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)</div>\r\n</li><ul style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px; list-style-position: initial; list-style-type: circle;\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell has a 100% US supply chain already</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell can be made in the <u>\r\nmillions</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)</div>\r\n</li><ul style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px; list-style-position: initial; list-style-type: circle;\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell can be made in the <u>\r\nmillions </u>next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.</div>\r\n</li><ul style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px; list-style-position: initial; list-style-type: circle;\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell can be made in the <u>\r\nthousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)</div>\r\n</li><ul style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px; list-style-position: initial; list-style-type: circle;\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell can be made in the <u>\r\nmillions</u>&nbsp;next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these</div>\r\n</li></ul>\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)</div>\r\n</li><ul style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px; list-style-position: initial; list-style-type: circle;\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell can be made in the <u>\r\nthousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n</ul>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nI will check with my people on 301 asap.</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nI look forward to our next communication.</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nJames</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: black;\">\r\n<br>\r\n</div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div style=\"direction: ltr; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: black;\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a class=\"OWAAutoLink\" id=\"OWA71ed3287-c884-92d5-1caa-92b1f1d318fa\" href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 17, 2025 7:56 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a class=\"OWAAutoLink\" id=\"OWA6cd87ac5-84e9-6287-add8-4d889a10f57e\" href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt;; Daniel &lt;<a class=\"OWAAutoLink\" id=\"OWA9ff34847-3c2d-d41b-7b1a-a902aba2b15b\" href=\"mailto:dansheridanmusic@gmail.com\">dansheridanmusic@gmail.com</a>&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a class=\"OWAAutoLink\" id=\"OWAe23dbbcf-6954-539a-4659-57f697029434\" href=\"mailto:nathan@lithiumbatterycompany.com\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction: ltr; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr;\">Gentlemen,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">It was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<ul style=\"direction: ltr;\">\r\n<li style=\"direction: ltr;\">James to&nbsp;send the cell specification sheets as soon as possible.</li><li style=\"direction: ltr;\">LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.</li><li style=\"direction: ltr;\">James to&nbsp;send their term sheet template for throughput contracts.</li><li style=\"direction: ltr;\">We should discuss 301 exclusion support for manufacturing equipment.</li></ul>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">I look forward to our next conversation.&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Best,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; color: black;\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: black;\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: blue;\"><u>jordan<a style=\"color: blue; margin: 0px;\" class=\"OWAAutoLink\" id=\"OWA57ab9852-a4df-04bc-6d07-5846e7a46499\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: rgb(5, 99, 193);\"><a style=\"margin-top: 0px; margin-bottom: 0px;\" class=\"OWAAutoLink\" data-auth=\"NotApplicable\" id=\"OWA01db43b7-0ffe-3df6-52fa-0845c64c7cef\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&amp;typo=1\">Lithium\r\n Battery Company</a></span></p>\r\n</blockquote>\r\n</blockquote>\r\n</body>\r\n</html>\r\n','Jordan,\r\n\r\nI won\'t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products.\r\n\r\nI\'ll send to you as soon as I can next week.\r\n\r\nJames\r\n\r\n\r\n\r\n\r\n________________________________\r\nFrom: James Trevey <jtrevey@forgenano.com>\r\nSent: Wednesday, September 24, 2025 10:49 AM\r\nTo: Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\nCc: Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nJordan,\r\n\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating.\r\n\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?\r\n\r\nI also have a verbal matter we can discuss soon. Once I\'ve got the deck ready I\'ll find time for a short call with you.\r\n\r\nTalk soon.\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\nSent: Wednesday, September 24, 2025 10:07 AM\r\nTo: James Trevey <jtrevey@forgenano.com>\r\nCc: Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nThank you for the follow up.  You were on my list to contact today!\r\n\r\nWould that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...\r\n\r\nI will let you know if I will be able to make it up to Detroit for The Battery Show.\r\n\r\nLooking forward to seeing the deck.\r\n\r\nAll the best,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&typo=1>\r\n\r\n\r\nOn Wed, Sep 24, 2025 at 11:59 AM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nHey Jordan,\r\n\r\nThank you for the quick follow up.\r\n\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we\'ve decided we\'d like to provide information on additional products to you which are typically not on the menu but I have details to sort first.\r\n\r\nRegarding shows, happy to discuss when ready. We\'ll be at The Battery Show in 2 weeks, which I think you should consider attending and I\'d be happy to connect while there.\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Thursday, September 18, 2025 11:03 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\n\r\nThank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information to optimize our collaboration and planning:\r\n\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.\r\n\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.\r\n\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.\r\n\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.\r\n\r\nClarify your minimum order quantities and expected pricing for each product line.\r\n\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.\r\n\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted commercial timelines, and expected pricing.\r\n\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made module and packs for:\r\n\r\n18650:\r\n\r\nNMC: TNL-ITR18650-2600P\r\n\r\nLFP: SW18650-26HPA\r\n\r\nLFP: IFR18650-2000mAh\r\n\r\n21700:\r\n\r\nNMC: INR21700-50S\r\n\r\nNMC: INR21700-4000\r\n\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.\r\n\r\nIn terms of the shows you mentioned, we are getting our schedules aligned so we can attend.  What\'s the \"secret meeting\" in Nov?\r\n\r\nWe look forward to your prompt response so we can efficiently move to the next stages.\r\n\r\n\r\nTalk soon,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&typo=1>\r\n\r\n\r\nOn Wed, Sep 17, 2025 at 7:00 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nJordan,\r\n\r\nThanks for moving quickly here. I got bogged down today but better late than never.\r\n\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:\r\n\r\n\r\n  *\r\nSC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)\r\n     *\r\nThis cell has a 100% US supply chain already\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the thousands next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these\r\n  *\r\nSC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the thousands next year by our partner in the EU, until our factory is online in 2027\r\n\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.\r\n\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.\r\n\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret meeting on November 5th in DC?\r\n\r\nI will check with my people on 301 asap.\r\n\r\nI look forward to our next communication.\r\n\r\nJames\r\n\r\n\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Wednesday, September 17, 2025 7:56 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>; Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nGentlemen,\r\n\r\nIt was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:\r\n\r\n\r\n  *   James to send the cell specification sheets as soon as possible.\r\n  *   LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.\r\n  *   James to send their term sheet template for throughput contracts.\r\n  *   We should discuss 301 exclusion support for manufacturing equipment.\r\n\r\nI look forward to our next conversation.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&typo=1>\r\n',0,0,0,0,0,0,'2025-09-26 20:58:30','2025-12-09 19:29:12','2025-12-09 19:29:12','2025-12-09 19:29:12',NULL,NULL,NULL),
(803,4,'<CH8PR13MB7267B7B4709E368FB6DAE4D1E81BA@CH8PR13MB7267.namprd13.prod.outlook.com>',NULL,NULL,'RE: Rick / intro to Century Mold','m.ricotta@CENTURYMOLD.COM','\"Ricotta, Matthew\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\n <head>\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n  <meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\"><!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]-->\n  <style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nh2\r\n	{mso-style-priority:9;\r\n	mso-style-link:\"Heading 2 Char\";\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:18.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	font-weight:bold;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.Heading2Char\r\n	{mso-style-name:\"Heading 2 Char\";\r\n	mso-style-priority:9;\r\n	mso-style-link:\"Heading 2\";\r\n	font-family:\"Aptos Display\",sans-serif;\r\n	color:#0F4761;}\r\nspan.EmailStyle23\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Calibri\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\n </head>\n <body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\n  <div class=\"WordSection1\">\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">Hi Rick,\n     <o:p></o:p></span></p>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">\n     <o:p>\n      &nbsp;\n     </o:p></span></p>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">Are you available Thursday afternoon? We have a customer in town until noon however we can be available in the afternoon.\n     <o:p></o:p></span></p>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">\n     <o:p>\n      &nbsp;\n     </o:p></span></p>\n   <div>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Matthew C. Ricotta</span><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Vice President of Sales Strategy &amp; Sales Operations\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Century Mold Co., Inc.\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">25 Vantage Point Drive\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Rochester, New York 14624\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Cell: (585) 507-1219\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\"><a href=\"mailto:m.ricotta@centurymold.com\">m.ricotta@centurymold.com</a>\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">\n      <o:p>\n       &nbsp;\n      </o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\"><img border=\"0\" width=\"225\" height=\"60\" style=\"width:2.3402in;height:.625in\" id=\"Picture_x0020_1298005977\" src=\"cid:image001.jpg@01DC3117.0BE729E0\"><span style=\"mso-ligatures:standardcontextual\">\n       <o:p></o:p></span></span></p>\n   </div>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">\n     <o:p>\n      &nbsp;\n     </o:p></span></p>\n   <div>\n    <div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\n     <p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt; <br><b>Sent:</b> Sunday, September 28, 2025 9:05 AM<br><b>To:</b> Blake, Elizabeth &lt;e.blake@centurymold.com&gt;; Rottier, Danielle &lt;danielle.rottier@centurymold.com&gt;; Ricotta, Matthew &lt;m.ricotta@CENTURYMOLD.COM&gt;<br><b>Subject:</b> RE: Rick / intro to Century Mold\n       <o:p></o:p></span></p>\n    </div>\n   </div>\n   <p class=\"MsoNormal\">\n    <o:p>\n     &nbsp;\n    </o:p></p>\n   <div id=\"dde62e0b9d2d3dbe0ad90ee1a0e018ac2c3f9fbc\">\n    <div id=\"3695363d23e92539dd775cf46042fb34a397127b\">\n     <p class=\"MsoNormal\" style=\"line-height:0%\"><span style=\"font-size:1.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:white\">Checking in again to see if there isn’t time this week to connect. Tuesday or Thursday or next week same days? Thanks! Rick Rick Mislan, PhD, Founder, CTO <a href=\"https://mavrix1.com\">https://mavrix1.com</a> CONFIDENTIALITY NOTICE Th \n       <o:p></o:p></span></p>\n    </div>\n    <p class=\"MsoNormal\"><span style=\"font-size:1.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:white\">sophospsmartbannerend </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n      <o:p></o:p></span></p>\n   </div>\n   <div>\n    <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Checking in again to see if there isn’t time this week to connect. \n      <o:p></o:p></span></p>\n   </div>\n   <div>\n    <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Tuesday or Thursday or next week same days? \n      <o:p></o:p></span></p>\n   </div>\n   <div>\n    <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks! \n      <o:p></o:p></span></p>\n   </div>\n   <div>\n    <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick \n      <o:p></o:p></span></p>\n   </div>\n   <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n     <o:p>\n      &nbsp;\n     </o:p></span></p>\n   <div>\n    <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n      <o:p>\n       &nbsp;\n      </o:p></span></p>\n    <div>\n     <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp; \n       <o:p></o:p></span></p>\n     <div>\n      <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO \n        <o:p></o:p></span></p>\n     </div>\n     <div>\n      <div>\n       <div>\n        <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"Picture_x0020_5\" src=\"cid:image002.png@01DC3117.0BE729E0\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n          <o:p></o:p></span></p>\n       </div>\n       <div>\n        <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://us-east-2.protection.sophos.com?d=mavrix1.com&amp;u=aHR0cHM6Ly9tYXZyaXgxLmNvbS8=&amp;i=NWE0MmE2M2EwYTczNDQxNzgwMzIzMmNj&amp;t=SVFyWGp6a2pXWUFzZENKTnRZd1NRVzU1TWU0R0VqZk9pRUd5ZlJOcWxRTT0=&amp;h=b38fb10393b8457b89f0ec8e5079b2e9&amp;s=AVNPUEhUT0NFTkNSWVBUSVZAh6YX1jEL4DWnGl5QCuub\">https://mavrix1.com</a>\n          <o:p></o:p></span></p>\n       </div>\n      </div>\n      <div>\n       <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n         <o:p>\n          &nbsp;\n         </o:p></span></p>\n      </div>\n      <div>\n       <div>\n        <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">CONFIDENTIALITY NOTICE \n          <o:p></o:p></span></p>\n       </div>\n       <div>\n        <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful. \n          <o:p></o:p></span></p>\n       </div>\n       <div>\n        <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n          <o:p>\n           &nbsp;\n          </o:p></span></p>\n       </div>\n       <div>\n        <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies. \n          <o:p></o:p></span></p>\n       </div>\n       <div>\n        <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n          <o:p>\n           &nbsp;\n          </o:p></span></p>\n       </div>\n       <div>\n        <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements. \n          <o:p></o:p></span></p>\n       </div>\n      </div>\n     </div>\n    </div>\n   </div>\n   <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n     <o:p>\n      &nbsp;\n     </o:p></span></p>\n   <p class=\"airmailon\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">On September 16, 2025 at 7:35:34 AM, Ricotta, Matthew (<a href=\"mailto:m.ricotta@centurymold.com\">m.ricotta@centurymold.com</a>) wrote:\n     <o:p></o:p></span></p>\n   <blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\n    <div>\n     <div>\n      <div>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Good Morning Rick, </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n         <o:p></o:p></span></p>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n         <o:p></o:p></span></p>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Nice to virtually meet you.&nbsp; RIT is a great place, I am a 2003 graduate and still actively involved with the university as I serve as a member of the National Council for Engineering Technology. </span> <span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n         <o:p></o:p></span></p>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n         <o:p></o:p></span></p>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">It would be great to connect sometime soon.&nbsp; We can have you over and show you around and then grab some lunch.&nbsp; Our building is only 15 minutes from RIT.&nbsp; Are there any dates and times that might work for you? </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n         <o:p></o:p></span></p>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n         <o:p></o:p></span></p>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><a id=\"OWAAM46FF9A5316C34FB2A8FCE827BF697C4A\" href=\"mailto:jen@deeptechgtm.com\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;text-decoration:none\">@Jennifer Kay</span></a>&nbsp; thanks for the connection. </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n         <o:p></o:p></span></p>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n         <o:p></o:p></span></p>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Best Regards, </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n         <o:p></o:p></span></p>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n         <o:p></o:p></span></p>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Matt </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n         <o:p></o:p></span></p>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n         <o:p></o:p></span></p>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n         <o:p></o:p></span></p>\n       <div>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Matthew C. Ricotta</span><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n          <o:p></o:p></span></p>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Vice President of Sales Strategy &amp; Sales Operations </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n          <o:p></o:p></span></p>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Century Mold Co., Inc. </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n          <o:p></o:p></span></p>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">25 Vantage Point Drive </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n          <o:p></o:p></span></p>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Rochester, New York 14624 </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n          <o:p></o:p></span></p>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Cell: (585) 507-1219 </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n          <o:p></o:p></span></p>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\"><a href=\"mailto:m.ricotta@centurymold.com\">m.ricotta@centurymold.com</a> </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n          <o:p></o:p></span></p>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n          <o:p></o:p></span></p>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><img border=\"0\" width=\"225\" height=\"60\" style=\"width:2.3402in;height:.625in\" id=\"Picture_x0020_640791774\" src=\"cid:image001.jpg@01DC3117.0BE729E0\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n          <o:p></o:p></span></p>\n       </div>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n         <o:p></o:p></span></p>\n       <div>\n        <div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\n         <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Jennifer Kay &lt;<a href=\"mailto:jen@deeptechgtm.com\">jen@deeptechgtm.com</a>&gt; <br><b>Sent:</b> Monday, September 15, 2025 8:56 PM<br><b>To:</b> Ricotta, Matthew &lt;<a href=\"mailto:m.ricotta@CENTURYMOLD.COM\">m.ricotta@CENTURYMOLD.COM</a>&gt;; Blake, Elizabeth &lt;<a href=\"mailto:e.blake@centurymold.com\">e.blake@centurymold.com</a>&gt;; Rottier, Danielle &lt;<a href=\"mailto:danielle.rottier@centurymold.com\">danielle.rottier@centurymold.com</a>&gt;; <a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a><br><b>Subject:</b> Rick / intro to Century Mold </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n           <o:p></o:p></span></p>\n        </div>\n       </div>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n         <o:p></o:p></span></p>\n       <div id=\"dde62e0b9d2d3dbe0ad90ee1a0e018ac2c3f9fbc\">\n        <div id=\"3695363d23e92539dd775cf46042fb34a397127b\">\n         <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;line-height:0%\"><span style=\"font-size:1.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:white\">Hi all, Team Century Mold (aka the best in the biz), please meet my friend and colleague Rick Mislan. In addition to teaching at RIT and living in your backyard, Rick is connected to a family office t </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n           <o:p></o:p></span></p>\n        </div>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:1.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:white\">sophospsmartbannerend </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n          <o:p></o:p></span></p>\n       </div>\n       <div>\n        <div>\n         <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi all, \n           <o:p></o:p></span></p>\n        </div>\n        <div>\n         <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n           <o:p></o:p></span></p>\n        </div>\n        <div>\n         <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Team Century Mold (aka the best in the biz), please meet my friend and colleague Rick Mislan. In addition to teaching at RIT and living in your backyard, Rick is connected to a family office that\'s recently secured&nbsp;a $1.5B fund that they are looking to deploy against hardening American supply chains for defense use cases, specifically focusing&nbsp;on autonomy and unmanned systems. \n           <o:p></o:p></span></p>\n        </div>\n        <div>\n         <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n           <o:p></o:p></span></p>\n        </div>\n        <div>\n         <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick may want to tour the Rochester plant and discuss other collaboration opportunities. I\'ll let y\'all take it from here! \n           <o:p></o:p></span></p>\n        </div>\n        <div>\n         <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n           <o:p></o:p></span></p>\n        </div>\n        <div>\n         <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks, \n           <o:p></o:p></span></p>\n        </div>\n        <div>\n         <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Jen \n           <o:p></o:p></span></p>\n        </div>\n        <div>\n         <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n           <o:p></o:p></span></p>\n        </div>\n        <div>\n         <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n           <o:p></o:p></span></p>\n        </div>\n        <div>\n         <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n           <o:p></o:p></span></p>\n        </div>\n        <div>\n         <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n           <o:p></o:p></span></p>\n        </div>\n        <div>\n         <div>\n          <div>\n           <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"518\" style=\"width:388.2pt;border-collapse:collapse\">\n            <tbody>\n             <tr>\n              <td style=\"padding:0in 0in 0in 0in\">\n               <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"518\" style=\"width:388.2pt;border-collapse:collapse\">\n                <tbody>\n                 <tr>\n                  <td valign=\"top\" style=\"padding:0in 0in 0in 0in\"><h2 style=\"margin:0in\"><span style=\"font-size:13.5pt;font-family:&quot;Helvetica&quot;,sans-serif;color:#231E4A\">Jennifer&nbsp;Kay </span><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">\n                     <o:p></o:p></span></h2><p style=\"margin:0in;line-height:16.5pt\"><span style=\"font-size:10.5pt;font-family:&quot;Helvetica&quot;,sans-serif;color:#231E4A\">Principal&nbsp;|&nbsp;Deep Tech Go to Market </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                     <o:p></o:p></span></p><p style=\"margin:0in;line-height:16.5pt\"><span style=\"font-size:10.5pt;font-family:&quot;Helvetica&quot;,sans-serif;color:#231E4A\">Offering commercial go to market for dual-use tech </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                     <o:p></o:p></span></p>\n                   <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"473\" style=\"width:354.45pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\n                    <tbody>\n                     <tr style=\"height:.25in\">\n                      <td style=\"padding:0in 0in 0in 0in;height:.25in\"></td>\n                     </tr>\n                     <tr style=\"height:.6pt\">\n                      <td width=\"473\" style=\"width:354.45pt;border:none;border-bottom:solid #231E4A 1.0pt;padding:0in 0in 0in 0in;height:.6pt\"></td>\n                     </tr>\n                     <tr style=\"height:.25in\">\n                      <td style=\"padding:0in 0in 0in 0in;height:.25in\"></td>\n                     </tr>\n                    </tbody>\n                   </table><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n                     <o:p></o:p></span></p>\n                   <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"473\" style=\"width:354.45pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\n                    <tbody>\n                     <tr style=\"height:15.0pt\">\n                      <td width=\"30\" style=\"width:22.5pt;padding:0in 0in 0in 0in;height:15.0pt\">\n                       <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"30\" style=\"width:22.5pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\n                        <tbody>\n                         <tr>\n                          <td valign=\"bottom\" style=\"padding:0in 0in 0in 0in\"><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:white;background:#231E4A\"><img border=\"0\" width=\"13\" height=\"13\" style=\"width:.1319in;height:.1319in\" id=\"_x0000_i1028\" src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/phone-icon-2x.png\" alt=\"mobilePhone\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                             <o:p></o:p></span></p></td>\n                         </tr>\n                        </tbody>\n                       </table></td>\n                      <td style=\"padding:0in 0in 0in 0in;height:15.0pt\"><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:#231E4A\"><a href=\"tel:615-630-8068\" target=\"_blank\"><span style=\"font-size:9.0pt;color:#231E4A\">615-630-8068</span></a> </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                         <o:p></o:p></span></p></td>\n                     </tr>\n                     <tr style=\"height:15.0pt\">\n                      <td width=\"30\" style=\"width:22.5pt;padding:0in 0in 0in 0in;height:15.0pt\">\n                       <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"30\" style=\"width:22.5pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\n                        <tbody>\n                         <tr>\n                          <td valign=\"bottom\" style=\"padding:0in 0in 0in 0in\"><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:white;background:#231E4A\"><img border=\"0\" width=\"13\" height=\"13\" style=\"width:.1319in;height:.1319in\" id=\"_x0000_i1027\" src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/email-icon-2x.png\" alt=\"emailAddress\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                             <o:p></o:p></span></p></td>\n                         </tr>\n                        </tbody>\n                       </table></td>\n                      <td style=\"padding:0in 0in 0in 0in;height:15.0pt\"><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"mailto:Jen@DeepTechGTM.com\" target=\"_blank\"><span style=\"font-size:9.0pt;color:#231E4A\">Jen@DeepTechGTM.com</span></a>\n                         <o:p></o:p></span></p></td>\n                     </tr>\n                     <tr style=\"height:15.0pt\">\n                      <td width=\"30\" style=\"width:22.5pt;padding:0in 0in 0in 0in;height:15.0pt\">\n                       <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"30\" style=\"width:22.5pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\n                        <tbody>\n                         <tr>\n                          <td valign=\"bottom\" style=\"padding:0in 0in 0in 0in\"><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:white;background:#231E4A\"><img border=\"0\" width=\"13\" height=\"13\" style=\"width:.1319in;height:.1319in\" id=\"_x0000_i1026\" src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/link-icon-2x.png\" alt=\"website\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                             <o:p></o:p></span></p></td>\n                         </tr>\n                        </tbody>\n                       </table></td>\n                      <td style=\"padding:0in 0in 0in 0in;height:15.0pt\"><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://us-east-2.protection.sophos.com?d=deeptechgtm.com&amp;u=aHR0cHM6Ly9kZWVwdGVjaGd0bS5jb20v&amp;i=NWE0MmE2M2EwYTczNDQxNzgwMzIzMmNj&amp;t=TldHT21pOVMrQnc1QS9EOEpwNmFMd2U2MFRIdURzb3E3UTlSaEFrU2tqYz0=&amp;h=3c9cbb7ae9ea477292738775fa990c2e&amp;s=AVNPUEhUT0NFTkNSWVBUSVbtVtDurjG3awJTMAs2DBBeJDosvMTyBzoEmpKDp9Qbtw\" target=\"_blank\"><span style=\"font-size:9.0pt;color:#231E4A\">DeepTechGTM.com</span></a>\n                         <o:p></o:p></span></p></td>\n                     </tr>\n                    </tbody>\n                   </table></td>\n                  <td width=\"45\" style=\"width:33.75pt;padding:0in 0in 0in 0in\"></td>\n                 </tr>\n                </tbody>\n               </table></td>\n             </tr>\n             <tr>\n              <td style=\"padding:0in 0in 0in 0in\"></td>\n             </tr>\n            </tbody>\n           </table>\n           <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n             <o:p></o:p></span></p>\n           <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"547\" style=\"width:409.95pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\n            <tbody>\n             <tr>\n              <td style=\"padding:0in 0in 0in 0in\"></td>\n             </tr>\n            </tbody>\n           </table>\n          </div>\n         </div>\n        </div>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"1\" height=\"1\" style=\"width:.0069in;height:.0069in\" id=\"_x0000_i1025\" src=\"https://d2LSMm04.na1.hs-salescrm-engage.com/Cto/2O+23284/d2LSMm04/R5Q8b48CrN56kt9Z2fD5tW3DNv9w1_jP7GW1V3GZL1W-WmZW1GzmYc3LCDCYW3M0g1n1N6TqrW3yRLx522VWWjf1Q2MDY12\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n          <o:p></o:p></span></p>\n       </div>\n      </div>\n     </div>\n    </div>\n   </blockquote>\n  </div>\n </body>\n</html>','Hi Rick,\r\n\r\nAre you available Thursday afternoon? We have a customer in town until noon however we can be available in the afternoon.\r\n\r\nMatthew C. Ricotta\r\nVice President of Sales Strategy & Sales Operations\r\nCentury Mold Co., Inc.\r\n25 Vantage Point Drive\r\nRochester, New York 14624\r\nCell: (585) 507-1219\r\nm.ricotta@centurymold.com<mailto:m.ricotta@centurymold.com>\r\n\r\n[cid:image001.jpg@01DC3117.0BE729E0]\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Sunday, September 28, 2025 9:05 AM\r\nTo: Blake, Elizabeth <e.blake@centurymold.com>; Rottier, Danielle <danielle.rottier@centurymold.com>; Ricotta, Matthew <m.ricotta@CENTURYMOLD.COM>\r\nSubject: RE: Rick / intro to Century Mold\r\n\r\n\r\nChecking in again to see if there isn’t time this week to connect.\r\nTuesday or Thursday or next week same days?\r\nThanks!\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:image002.png@01DC3117.0BE729E0]\r\nhttps://mavrix1.com<https://us-east-2.protection.sophos.com?d=mavrix1.com&u=aHR0cHM6Ly9tYXZyaXgxLmNvbS8=&i=NWE0MmE2M2EwYTczNDQxNzgwMzIzMmNj&t=SVFyWGp6a2pXWUFzZENKTnRZd1NRVzU1TWU0R0VqZk9pRUd5ZlJOcWxRTT0=&h=b38fb10393b8457b89f0ec8e5079b2e9&s=AVNPUEhUT0NFTkNSWVBUSVZAh6YX1jEL4DWnGl5QCuub>\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\nOn September 16, 2025 at 7:35:34 AM, Ricotta, Matthew (m.ricotta@centurymold.com<mailto:m.ricotta@centurymold.com>) wrote:\r\nGood Morning Rick,\r\n\r\nNice to virtually meet you.  RIT is a great place, I am a 2003 graduate and still actively involved with the university as I serve as a member of the National Council for Engineering Technology.\r\n\r\nIt would be great to connect sometime soon.  We can have you over and show you around and then grab some lunch.  Our building is only 15 minutes from RIT.  Are there any dates and times that might work for you?\r\n\r\n@Jennifer Kay<mailto:jen@deeptechgtm.com>  thanks for the connection.\r\n\r\nBest Regards,\r\n\r\nMatt\r\n\r\n\r\nMatthew C. Ricotta\r\nVice President of Sales Strategy & Sales Operations\r\nCentury Mold Co., Inc.\r\n25 Vantage Point Drive\r\nRochester, New York 14624\r\nCell: (585) 507-1219\r\nm.ricotta@centurymold.com<mailto:m.ricotta@centurymold.com>\r\n\r\n[cid:image001.jpg@01DC3117.0BE729E0]\r\n\r\nFrom: Jennifer Kay <jen@deeptechgtm.com<mailto:jen@deeptechgtm.com>>\r\nSent: Monday, September 15, 2025 8:56 PM\r\nTo: Ricotta, Matthew <m.ricotta@CENTURYMOLD.COM<mailto:m.ricotta@CENTURYMOLD.COM>>; Blake, Elizabeth <e.blake@centurymold.com<mailto:e.blake@centurymold.com>>; Rottier, Danielle <danielle.rottier@centurymold.com<mailto:danielle.rottier@centurymold.com>>; rick@mavrix.one<mailto:rick@mavrix.one>\r\nSubject: Rick / intro to Century Mold\r\n\r\nHi all, Team Century Mold (aka the best in the biz), please meet my friend and colleague Rick Mislan. In addition to teaching at RIT and living in your backyard, Rick is connected to a family office t\r\nsophospsmartbannerend\r\nHi all,\r\n\r\nTeam Century Mold (aka the best in the biz), please meet my friend and colleague Rick Mislan. In addition to teaching at RIT and living in your backyard, Rick is connected to a family office that\'s recently secured a $1.5B fund that they are looking to deploy against hardening American supply chains for defense use cases, specifically focusing on autonomy and unmanned systems.\r\n\r\nRick may want to tour the Rochester plant and discuss other collaboration opportunities. I\'ll let y\'all take it from here!\r\n\r\nThanks,\r\nJen\r\n\r\n\r\n\r\n\r\nJennifer Kay\r\n\r\nPrincipal | Deep Tech Go to Market\r\n\r\nOffering commercial go to market for dual-use tech\r\n\r\n[mobilePhone]\r\n615-630-8068<tel:615-630-8068>\r\n[emailAddress]\r\nJen@DeepTechGTM.com<mailto:Jen@DeepTechGTM.com>\r\n[website]\r\nDeepTechGTM.com<https://us-east-2.protection.sophos.com?d=deeptechgtm.com&u=aHR0cHM6Ly9kZWVwdGVjaGd0bS5jb20v&i=NWE0MmE2M2EwYTczNDQxNzgwMzIzMmNj&t=TldHT21pOVMrQnc1QS9EOEpwNmFMd2U2MFRIdURzb3E3UTlSaEFrU2tqYz0=&h=3c9cbb7ae9ea477292738775fa990c2e&s=AVNPUEhUT0NFTkNSWVBUSVbtVtDurjG3awJTMAs2DBBeJDosvMTyBzoEmpKDp9Qbtw>\r\n\r\n\r\n',0,0,0,0,0,0,'2025-09-29 11:59:52','2025-12-09 19:29:12','2025-12-09 19:29:12','2025-12-09 19:29:12',NULL,NULL,NULL),
(804,4,'<CAJO9__bjS4e5SgE65+aDRsXVTtho6HyuEx5DU1ctczs9J5VnaA@mail.gmail.com>',NULL,NULL,'Forge Nano Cells for our Products','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Hello Brian and Rick,</div><div><br></div><div>On Friday, I spoke with Elias about the most suitable Forge Nano cells for our products. After reviewing the battery data sheets, he identified the following cells as the most appropriate for our needs:</div><div><br></div><div>18650: SC3-18-2</div><div>21700: SC2-21-3</div><div><br></div><div>Elias confirmed that these two battery types should meet the requirements for most, if not all, of our future robotics projects.</div><div><br></div><div>I have attached a prospective cell demand schedule for your review. Please let me know if it aligns with your expectations. For your reference, the data sheets for both batteries are also attached.</div><div><br></div><div>Best regards, </div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div></div>','Hello Brian and Rick,\r\n\r\nOn Friday, I spoke with Elias about the most suitable Forge Nano cells for\r\nour products. After reviewing the battery data sheets, he identified the\r\nfollowing cells as the most appropriate for our needs:\r\n\r\n18650: SC3-18-2\r\n21700: SC2-21-3\r\n\r\nElias confirmed that these two battery types should meet the requirements\r\nfor most, if not all, of our future robotics projects.\r\n\r\nI have attached a prospective cell demand schedule for your review. Please\r\nlet me know if it aligns with your expectations. For your reference, the\r\ndata sheets for both batteries are also attached.\r\n\r\nBest regards,\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>',0,0,0,0,0,0,'2025-09-29 13:30:07','2025-12-09 19:29:14','2025-12-09 19:29:14','2025-12-09 19:29:14',NULL,NULL,NULL),
(805,4,' <BN2P110MB09774E1B4AE3BE47E56899AFA01BA@BN2P110MB0977.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'NDA and Follow up conversation','mike@dpiuav.com','Michael Piasecki','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle17\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Dear Rick, <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Just wanted to make certain that you received our NDA and wanted to estimate the timing of your visit or next step in conversation. Tethered Drones are not well understood, and funding lines are less than\r\n clear. I am sure that we could explain our value proposition if you don&#8217;t understand it.\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">If you would provide me the address and proper name of the company and designated signers &#8211; I would be happy to fill in the blanks.\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">Respectfully,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">Michael<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">Michael Piasecki<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">President<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">DPI UAV Systems<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">600 W. 2<sup>nd</sup> St., Essington, PA 19029<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">Office: (610) 521-6115 x 202<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">Mobile: (215) 439-2036<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\"><a href=\"http://www.dpiuav.com/\"><span style=\"color:#0563C1\">www.dpiuav.com</span></a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060;mso-ligatures:none\"><a href=\"https://youtu.be/4ihY-IiAfXI\"><span style=\"color:#0563C1\">https://youtu.be/4ihY-IiAfXI</span></a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black;mso-ligatures:none\">Extending Man\'s Reach with Unmanned Helicopters</span></b><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black;mso-ligatures:none\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060\"><img border=\"0\" width=\"222\" height=\"70\" style=\"width:2.3125in;height:.7291in\" id=\"Picture_x0020_2\" src=\"cid:image001.jpg@01DC3125.DB72FF50\" alt=\"DPI-logo-4-April28-blue-full\"></span><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">This is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information.\r\n No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is\r\n appreciated.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</body>\r\n</html>','Dear Rick,\r\n\r\nJust wanted to make certain that you received our NDA and wanted to estimate the timing of your visit or next step in conversation. Tethered Drones are not well understood, and funding lines are less than clear. I am sure that we could explain our value proposition if you don\'t understand it.\r\n\r\nIf you would provide me the address and proper name of the company and designated signers - I would be happy to fill in the blanks.\r\n\r\nRespectfully,\r\nMichael\r\n\r\n\r\nMichael Piasecki\r\nPresident\r\nDPI UAV Systems\r\n600 W. 2nd St., Essington, PA 19029\r\nOffice: (610) 521-6115 x 202\r\nMobile: (215) 439-2036\r\nwww.dpiuav.com<http://www.dpiuav.com/>\r\nhttps://youtu.be/4ihY-IiAfXI\r\n\r\n\r\nExtending Man\'s Reach with Unmanned Helicopters\r\n[DPI-logo-4-April28-blue-full]\r\n\r\nThis is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is appreciated.',0,0,0,0,0,0,'2025-09-29 13:48:32','2025-12-09 19:29:14','2025-12-09 19:29:14','2025-12-09 19:29:14',NULL,NULL,NULL),
(806,4,' <BN7PR04MB425976E0A7F2CBD3B70D60D6A81BA@BN7PR04MB4259.namprd04.prod.outlook.com>',NULL,NULL,'RE: Introduction - Bradenton Area EDC','elizabethc@bradentonareaedc.com','Elizabeth Cordes','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\nspan.EmailStyle18\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Calibri\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Hi Nathan,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Yes, I can send out a teams meeting for 10am on Wednesday.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Kindest regards,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:16.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#0079A1\">Elizabeth Cordes</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:14.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Director of Business Recruitment &amp; Expansion</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:14.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#212121\">Bradenton Area Economic Development Corporation</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkMgQprkW6N3_xK6lZ3nwW1S-NPm50p7sBN5f0h3dq66mwW2GjSSw8RL3CVW33xj8Y6ZhQnFW8B_6mK8qmplbW5WwK0G2G_YVjW53D6_Y5Lk4fvVmQ8Vw8LF52TW6SWrYl61h3rKW88LMvF2-kzyzW5KGNsg8xdCxqW7SHJmB1mjN5vW2rlG897WMDzPW1BBKw92tpVTKVlKvg21tHf5qW4jvFnR5gVsT3MQr1RZRJmQDV2qYRZ2DbLGtW8Y0zjf1lyTzKW8n51Cp1SdFPtW4pq5Lw2FGSYWW6Crnr3504Hj0W10_0d46CbZH_W8-HBD28HVTTkW2F9mQK32sfkTW3FLWsK19JPkhW3MQ1lR5X7CbRV6Z9tF5wT04rVwn70p6PvdcRW2VzMRk4LRwRsN8-G3Jvlkl8CW4V4b027z_kCDW2Zd_BF1MHsNYW3ywjF96_k7P1W6M6gG05qzvn-W41F7KZ4Db1QcN5g7tT-4VghbW3nCrDL2bxJk6W3ZL2M82j4gsdW6GQgCX1njbDCN2Vg3g-fsLBrN4MBKxPxWj04W4hTYTm4_HKgJW1pL0Pk7Rm0w3W9k8_zw5BmwTxW2RGgqD3tqn4WVqfbLr6yx4MDW7cyNSJ1ss5-JW5gx4wD3wkGmgW5SWj8V1dvcTPW8l1kLv7QhjKcW8HyBXt606-YTW3xCnj97FPhrTW70CBXf6rN35kW6xl5Dj8j5H4ZN59Cdybzf8CBVFd7jR7R5c3qW3hvzZk7jpr59W8lNnhD22ptJdW6Lw0n16sGsmhW5dGmbt4WkGWvVbj6zz65tgGkN1nDBR9hX-HkW3fSwQg74ZgV_W2D6ZgL5mk-zKW7phXVN9kpmNYW1_BYH63rC16PW2G6Gfs3cDS6MV9F1Zs4BKsP-VJzcnY50kKtFW6Yxvmg1xb-WPN5KZx62G62mPW5RJmJ_2BvZD2W1-nqhz6Fy7SlVFmXH33BVZdKW2M7NhB1S8dMkW4yz52j5JD9B9W5-B9R_4KQ7fbN3fVlwswDBHxW92JFwN9b8Yg6VXSf_p2bRBzhW1G5gh055Ct_QW5R4FWT7nD7x7W7Chzdk2N-vg-W2G71QP1Tr_vyW65Qbpj3DrZP5W4Yb_jX6H8-3KW4BmqYF6k76WbVyrg7p4Sv4HkW4707lL442SJbN8GZW2CT_tBWN69dn7h5mr1vW3xx5vl2fvhK6W9hRpkl7898Q2W7GkS315yQZbdW8-pkBM48xPKDN5hXhm15L98VW5Z9fT13YW2-8W8PJ__S36Rr3PW6v_mV13c3zwNW935XTC6S79VLW3pB2Cx7TZwhnW4sQYNH6Tfpw7VMRnth1NQNCqV7Mytm7SltwvW977vVP6jHYJJW8mGHDY8w_VKCN3Qrw7mhDR5cW2kP64g22X09pW4CyBgB5Rsxl1W6ZKSHd47fycGW38Z7WW2yF23ZV4Kx5Q5dDHs9W3T8tx16tFScBW6Npzg-7cgGfyW4_lZy44N5nk4W6SGTKN24Kl35W6MRlsh6GRQ-ff7ln0Xb04\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0563C1\">5840\r\n 26<sup>th</sup> Street West, 26 West Center, Suite 232, Bradenton, FL 34207</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0079A1\">Email:</span></b><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">\r\n</span><a href=\"mailto:ElizabethC@BradentonAreaEDC.com\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0563C1\">ElizabethC@BradentonAreaEDC.com</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0079A1\">Phone:&nbsp;</span></b><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">941-803-9033</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0079A1\">Cell:&nbsp;</span></b><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">716-908-6134<b><span style=\"color:black\"><br>\r\n</span></b></span><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3m-W76k8Rv54FzY3W63BPky6WGs-QW5x9xcn2NfXL4W6WZ3Kf3tQ4rBW8rpQNX1QTG8VW2LwzGK7SZC75VtGXvk6k9GT9W8_R1wR6qvv1tVZxx5_326Tw6W4qSM5g2_4MkkN5vNflCMwLm7W8VJgw58JF2KPW4QwYz-53l_yVW87Z2lm5MGqtmVFprTs65nwJNW1HgrpM2WL98PW59068W1F6XMSW2dz-8k8c7R2HW1cjHtb4rTWwNW8dVRgC88pgZwW6Hgq4K1yhmVwW6Kwqpb2Bp4B2f5Yb-8j04\" title=\"http://www.bradentonareaedc.com/\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:purple\">BradentonAreaEDC.com</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3p6N2V5ClRxKDqNW3V0CSr411rHwW4x7Q1n6v5ZdtW4cdF5X3RzMvfN3w5BSZ52f8CW2zFgNV3rFVJWVf_mT94WtzmnW8mLvhS1nLhKDW3hrW3L7DGtrkW6f1z5k7krj7-W1XXnQg6Wh_X3W7mXkSC2vTWFCW3025hb5_BgrCW8ffjRp5C1sYRW5dysm_2s5QpyW4-SZ4q7PZLdQW1Wm7Fx6X3LDkW6SkmB91b9lpgW1NXsd942s_6TW6R9Q8z2Lq9PxVMCCbj8t7v1VW68WCqm5WcDWMf4YbV0n04\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width:.3666in;height:.3666in\" id=\"Picture_x0020_49\" src=\"cid:image001.png@01DC3133.99C8F790\"></span></a>&nbsp;&nbsp;&nbsp;&nbsp;\r\n<a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3p0N2tbrpLpv0zGW7lgZD_7HqXS2W7Jd7xc4dJgXKN65K13ssyhcGW1fPc3j1-ZmpHW5vPPQj59bXbYW8zGLn89khJMnTmbQR5RL0mmW998sHc1Q34SfW2cCtwm8TPCxTW8mmHts6WfZzzW4c-8RK2ZtTTnN97gzHT25CMhW4kHZrC4mP_MmW7GBX6V7fsB7lW763S8H4-B75VW6GPpV94lLVjYN7vgPntJc_yXVGpdvh4Y0fnVW1gHxYQ2LVJWZW3KNyWp8ttP1BW6dc5CJ28FqW4W538pMv5YxvS1W48lNdV9gdGWtf9cdRH804\">\r\n<span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"34\" height=\"34\" style=\"width:.3583in;height:.3583in\" id=\"Picture_x0020_48\" src=\"cid:image002.png@01DC3133.99C8F790\"></span></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jll2-6qcW7Y8-PT6lZ3nTW3Z-SV59jMkVmW5tgXqZ7JHKv9W4ryhR783rk1GW3rytz87Vr1JVW5L-RV_3cnmDSW5T4pm87tJWYdW7zSkxH14YDMBMjj18k9XZvwW6SYfHr202pR6W1RZpxp7l_6HNW4F07Xn71Gn7lW8z3PnX5Tv4WnW2zJ15F2w42bcW4Z5LSF4Qt3d4VxVp_W3m9T0yW3j_GcX5GKXJ_W18Q0MH19-LHnW6X0GSd45R9XdW77YQp57kCFBNW3MHX_s7xGlQqW626HPP4zs8v4Vsjz9T88r5xbW72BRLF2rK2syW7DRrXh2j3Jm0W1nDKCn4ts2QrW4SRBrq1zfk0Rf62LNJK04\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width:.3666in;height:.3666in\" id=\"Picture_x0020_47\" src=\"cid:image003.png@01DC3133.99C8F790\"></span></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3l_V7Pfrt92N5r-W2YmJbl7c3p1-W7j7WVL2wTZvSW6MZQCJ8HYd-gW6JPhtm6RqfNDW9jbBxJ7-Jd-YVsNGTT8dGlmcW3fcBc45cng-yN5VnGZPWjvpjVGq1f-8K3tShW15h05j8xp1K4W3DCNKS2TWsrNN7BnB85G4h_TW1FtG5_38_jg6Vf21332z2fZtW5kGtX361x5mzW6XGG0r6Jm879W7c705f1nH8kwW6Q-Scy8JHSrzW5bryNC6Wh-Q8W1GgG0q8RgscYW3F8n_n8DQjbqW1dycfw1RGYGmN7h9wpWcBB67f5tTjl-04\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width:.3666in;height:.3666in\" id=\"Picture_x0020_46\" src=\"cid:image004.png@01DC3133.99C8F790\"></span></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3nZW8GfHlt2TtYMTW4Jrnjn81y2kbW45KjmM7T-BZxW1LJXHS8K0nzzMXzDCxvNLyjW19W7D010M48dW12Ryjl7j7p-5N1gwPZxhBZKmW4vjqrB7drS7CW695LPr6J3fdZW9lh7yb60cC6xW2rPxxD9lbMs-W2wHTZ73DH-BRW1vq4qZ3x_GskN25j83LX3gBsW2S5-t76M9d7LW6lQzcX8tb5gyW6XB1R441_ywQW8N7WwT2snj40W960BCZ5pBRpMVSP-lk7bsNxtW87Tn5P5PnzS-d7nDZb04\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width:.3666in;height:.3666in\" id=\"Picture_x0020_45\" src=\"cid:image005.png@01DC3133.99C8F790\"></span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Nathan Staron &lt;Nathan@lithiumbatterycompany.com&gt;\r\n<br>\r\n<b>Sent:</b> Friday, September 26, 2025 3:58 PM<br>\r\n<b>To:</b> Elizabeth Cordes &lt;elizabethc@bradentonareaedc.com&gt;<br>\r\n<b>Cc:</b> Yanet Lopez &lt;yanetl@bradentonareaedc.com&gt;; Kevin Campos &lt;Kcampos@tampabayedc.com&gt;; Brian Stufflebean &lt;brian@mavrix.one&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Introduction - Bradenton Area EDC<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">Hi Elizabeth,<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Would&nbsp;you be able to send a Zoom link for the call that we have scheduled next week?<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\" style=\"border:solid #E2E2E2 1.0pt;padding:2.25pt 6.0pt 6.0pt 6.0pt;border-radius:5px\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mQW5hlCW65stZ98W321SNk27pMfwW5dyd1R2SfzRkW5MZtyh3nMMhjW3-FMWX7H-C-vW2C-nd75TTqKNW4m_F606RQcShN5zVDNlxVfHXW41sPRg4z9170W4xCYyJ5glhH_W8BMRJF356C7_W1DjRVR804DPgW2D5Nn733vYT2W6RSkLk7nDRLQW6q0M2x2FYhcGN5vgZNDN5qDPW8DbCHf5qXv-ZThZx164g_LtW6n3YwK4MQLpqN1cBQwtD003vW14QgYq45FcDNW95vyf98TlbtBdJftdR04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"23\" style=\"width:.25in;height:.2416in\" id=\"_x0000_i1054\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\"></span></a><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mXW4j41G14h5s88V5p3FB6gHZ-ZN3c0Hx2mcxLRW78Jyg86sjG8xN31YDR5y37J8W19LfG84Hb3LVW8PQ4vC6B1ZGpW85pHg4373x59W50SJlV1-dk-yW95KG1g4JStdSW3t3gnL8PSVr0W3M_RlT1cym2FW5yQJ5b8vxkGVVY0_Xy4mDnbLW4tL7vp3DqwqFW9dbhgs783WB_Vvv6m_4vZXs5W5sZ06B5m8h1TW85Mx1Z2jnXRPW8ygB4019Vgp-W7qBypL26HQL1W4w1z6g6LsZjkf3Zsp5T04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"22\" style=\"width:.25in;height:.2333in\" id=\"_x0000_i1053\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\"></span></a><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3kPW4J0YGH6pYc-pW5pN4gj6N1-nlN8bf8mYBd5hYW8g162g80pVGbW35XHjv30P8W1V1PXzF9cg7_PV9bmyn4L9vc6W92KGhc32Wh2BW2T02HX6-gMsqN1HBS6lD7k36W3Cmwd62Q_nd0W1tS6Y23F_hW5W1303bj92zGD-W4SsDwJ1PQgX1W8-P0zh8Z7FS8N77BCJ8YGNJzW8yblDc4zr5cLW7SsMhl8yJ7HfW2KmYrW2hNGwxW6bByXR4CyzbcN1r1R22XHpLzW20nSBq5yjYP0W8j9J1n8_YH9RW8ZsfVJ7kjbwfdcLDf604\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"22\" style=\"width:.25in;height:.2333in\" id=\"_x0000_i1052\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\"></span></a><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3m_W6c9R_Q5mLnSyVCJkS45y4h6CN3kry02-Jt_9W642Vz23LDbwSW8l4M0V98zl9qVwncbk5Tmk56VQcXVL71k01-W7CCPvg1c2jwwW8pd1xV5zPdNCW2fN44w6GmR9MW8hp6-V2lrXMYW5lmTTf1nQFQ8W6Gt6xH2gqvsLW4ZDNRJ2QLhqQW8sqkk57htK8nW6Lrt6f5LnQPLVWbBKl566fV3W2DCGJv6TMyWvN6ZbcjkynYVsW6R2xH21m-HxRW5pLwRh8HrDZLW7j8Jgm3zs44XW7FcB5k7cZf3nN7LFp9rP86_jf3nLLkK04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"22\" style=\"width:.25in;height:.2333in\" id=\"_x0000_i1051\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\"></span></a><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3m1W1RnDgw4nX4s8N8-VdR1LJgzGW5QsF1F7vVSH9W48h1042HL2LDW36nqz46jq-d6W44lhVr582TWhW2Mv5Gc26kwdqW69j-cx4F7BJ_W3zRv2R8Ht8HpW8ddQJ08zg8dzW5DsNZQ4R2Mr3W7Qxj6V3KB4VmVdy5X078bJJhN8JjH_H8Xt_pW9gYK0Z44XbDzW7f-M5X7sDgplV5LMfj7NZ2hcW4_h57x2ttsDCF50SYjrhfpgW4GZ_d-1XRQfCN893sy_lT5XkW94fFYW6_vqM1W6wGGb649c4RjVNBl2J3ZQ90Jf3z2XHn04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"22\" style=\"width:.25in;height:.2333in\" id=\"_x0000_i1050\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\"></span></a><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"8\" style=\"width:6.0pt;padding:0in 0in 0in 0in;display:revert\">\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\">&nbsp;<o:p></o:p></span></p>\r\n</td>\r\n<td valign=\"top\" style=\"border:solid #E2E2E2 1.0pt;padding:11.25pt 11.25pt 11.25pt 11.25pt;border-radius:5px\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"width:100.0%;border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"width:100.0%;border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mQW5hlCW65stZ98W321SNk27pMfwW5dyd1R2SfzRkW5MZtyh3nMMhjW3-FMWX7H-C-vW2C-nd75TTqKNW4m_F606RQcShN5zVDNlxVfHXW41sPRg4z9170W4xCYyJ5glhH_W8BMRJF356C7_W1DjRVR804DPgW2D5Nn733vYT2W6RSkLk7nDRLQW6q0M2x2FYhcGN5vgZNDN5qDPW8DbCHf5qXv-ZThZx164g_LtW6n3YwK4MQLpqN1cBQwtD003vW14QgYq45FcDNW95vyf98TlbtBdJftdR04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"170\" height=\"34\" style=\"width:1.775in;height:.3583in\" id=\"_x0000_i1049\" src=\"https://app.customesignature.com/upload/signature/11122/11122.png\"></span></a><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 7.5pt 0in\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:11.25pt 0in 0in 0in\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:15.0pt;mso-ligatures:standardcontextual\">NATHAN A. STARON</span></b><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td style=\"padding:0in 0in 0in 3.75pt\">\r\n<p class=\"MsoNormal\"><img border=\"0\" width=\"15\" height=\"15\" style=\"width:.1583in;height:.1583in\" id=\"_x0000_i1048\" src=\"https://app.customesignature.com/images/verify.gif\"><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;mso-ligatures:standardcontextual\">Founder / CEO</span><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:9.0pt;mso-ligatures:standardcontextual\">Lithium Battery Company</span></b><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:9.0pt;mso-ligatures:standardcontextual\">Cell Phone</span></b><span style=\"mso-ligatures:standardcontextual\">&nbsp;<a href=\"tel:813-504-0074\" target=\"_blank\"><span style=\"font-size:9.0pt;color:black\">813-504-0074</span></a><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:9.0pt;mso-ligatures:standardcontextual\">Phone</span></b><span style=\"mso-ligatures:standardcontextual\">&nbsp;<a href=\"tel:844-GET-LITHIUM\" target=\"_blank\"><span style=\"font-size:9.0pt;color:black\">844-GET-LITHIUM</span></a><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\"><span style=\"color:black\">Nathan@lithiumbatterycompany.com</span></a><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in 0in\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in;display:flex\">\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\"><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3lDW2VLRlm7J62nHW7zjwsc2-Zyv0W52CBv366NwyHW7YmZ_q5d818kMbTZ8850bF7W1lp2yt4xYQckW35zwy918TsypW8fcMFW5F0BhvW5-Qlx32--mKTW7yYFpd4k1FWkW2q7-Qn76Fx1lW5-7yl-7VcRQJW82KTWk5P5m6bW7r4dLH2cfW5kW8Fw4S61Y_xTcW8sBVsc1tvjxdW4HkXTp8kWmTYW2NBgcx6y39JDW3KpvnJ2Kv-mzW8K75rL29tbxDN26qscbczTTdW6YDddy4g4RZrW31mF8s6hTNVqN2C5N65RDjVXf2jqhW-04\" target=\"_blank\"><b><span style=\"font-size:9.0pt;color:white;background:black\">Schedule\r\n A Zoom</span></b></a><b><o:p></o:p></b></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td style=\"padding:0in 0in 0in 11.25pt;display:revert\">\r\n<div>\r\n<p class=\"MsoNormal\"><img border=\"0\" width=\"140\" height=\"140\" style=\"width:1.4583in;height:1.4583in\" id=\"_x0000_i1047\" src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\"><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><img border=\"0\" width=\"140\" height=\"140\" style=\"width:1.4583in;height:1.4583in\" id=\"_x0000_i1046\" src=\"https://app.customesignature.com/upload/signature/gifs/giphyy-1.gif\"><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" style=\"padding:0in 0in 0in 0in\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:7.5pt 0in 0in 0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">On Thu, Sep 25, 2025 at 12:03<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM Elizabeth Cordes &lt;<a href=\"mailto:elizabethc@bradentonareaedc.com\">elizabethc@bradentonareaedc.com</a>&gt; wrote:<o:p></o:p></p>\r\n</div>\r\n<blockquote style=\"border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Hi Nathan,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">It is a pleasure to e-meet both of you, Brian and Rick!</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Let’s do a call on Wednesday, October 1 at 10am? If a site has already been selected for the project, we are happy\r\n to meet you at the site as well. Please let me know what works best for you.</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Kindest regards,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:16.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#0079A1\">Elizabeth Cordes</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Director of Business Recruitment &amp; Expansion</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:14.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#212121\">Bradenton Area Economic Development Corporation</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkMgQprkW6N3_xK6lZ3nwW1S-NPm50p7sBN5f0h3dq66mwW2GjSSw8RL3CVW33xj8Y6ZhQnFW8B_6mK8qmplbW5WwK0G2G_YVjW53D6_Y5Lk4fvVmQ8Vw8LF52TW6SWrYl61h3rKW88LMvF2-kzyzW5KGNsg8xdCxqW7SHJmB1mjN5vW2rlG897WMDzPW1BBKw92tpVTKVlKvg21tHf5qW4jvFnR5gVsT3MQr1RZRJmQDV2qYRZ2DbLGtW8Y0zjf1lyTzKW8n51Cp1SdFPtW4pq5Lw2FGSYWW6Crnr3504Hj0W10_0d46CbZH_W8-HBD28HVTTkW2F9mQK32sfkTW3FLWsK19JPkhW3MQ1lR5X7CbRV6Z9tF5wT04rVwn70p6PvdcRW2VzMRk4LRwRsN8-G3Jvlkl8CW4V4b027z_kCDW2Zd_BF1MHsNYW3ywjF96_k7P1W6M6gG05qzvn-W41F7KZ4Db1QcN5g7tT-4VghbW3nCrDL2bxJk6W3ZL2M82j4gsdW6GQgCX1njbDCN2Vg3g-fsLBrN4MBKxPxWj04W4hTYTm4_HKgJW1pL0Pk7Rm0w3W9k8_zw5BmwTxW2RGgqD3tqn4WVqfbLr6yx4MDW7cyNSJ1ss5-JW5gx4wD3wkGmgW5SWj8V1dvcTPW8l1kLv7QhjKcW8HyBXt606-YTW3xCnj97FPhrTW70CBXf6rN35kW6xl5Dj8j5H4ZN59Cdybzf8CBVFd7jR7R5c3qW3hvzZk7jpr59W8lNnhD22ptJdW6Lw0n16sGsmhW5dGmbt4WkGWvVbj6zz65tgGkN1nDBR9hX-HkW3fSwQg74ZgV_W2D6ZgL5mk-zKW7phXVN9kpmNYW1_BYH63rC16PW2G6Gfs3cDS6MV9F1Zs4BKsP-VJzcnY50kKtFW6Yxvmg1xb-WPN5KZx62G62mPW5RJmJ_2BvZD2W1-nqhz6Fy7SlVFmXH33BVZdKW2M7NhB1S8dMkW4yz52j5JD9B9W5-B9R_4KQ7fbN3fVlwswDBHxW92JFwN9b8Yg6VXSf_p2bRBzhW1G5gh055Ct_QW5R4FWT7nD7x7W7Chzdk2N-vg-W2G71QP1Tr_vyW65Qbpj3DrZP5W4Yb_jX6H8-3KW4BmqYF6k76WbVyrg7p4Sv4HkW4707lL442SJbN8GZW2CT_tBWN69dn7h5mr1vW3xx5vl2fvhK6W9hRpkl7898Q2W7GkS315yQZbdW8-pkBM48xPKDN5hXhm15L98VW5Z9fT13YW2-8W8PJ__S36Rr3PW6v_mV13c3zwNW935XTC6S79VLW3pB2Cx7TZwhnW4sQYNH6Tfpw7VMRnth1NQNCqV7Mytm7SltwvW977vVP6jHYJJW8mGHDY8w_VKCN3Qrw7mhDR5cW2kP64g22X09pW4CyBgB5Rsxl1W6ZKSHd47fycGW38Z7WW2yF23ZV4Kx5Q5dDHs9W3T8tx16tFScBW6Npzg-7cgGfyW4_lZy44N5nk4W6SGTKN24Kl35W6MRlsh6GRQ-ff7ln0Xb04\" target=\"_blank\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0563C1\">5840\r\n 26<sup>th</sup> Street West, 26 West Center, Suite 232, Bradenton, FL 34207</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0079A1\">Email:</span></b><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">\r\n</span><a href=\"mailto:ElizabethC@BradentonAreaEDC.com\" target=\"_blank\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0563C1\">ElizabethC@BradentonAreaEDC.com</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0079A1\">Phone:&nbsp;</span></b><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">941-803-9033</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0079A1\">Cell:&nbsp;</span></b><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">716-908-6134<b><span style=\"color:black\"><br>\r\n</span></b></span><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3m-W76k8Rv54FzY3W63BPky6WGs-QW5x9xcn2NfXL4W6WZ3Kf3tQ4rBW8rpQNX1QTG8VW2LwzGK7SZC75VtGXvk6k9GT9W8_R1wR6qvv1tVZxx5_326Tw6W4qSM5g2_4MkkN5vNflCMwLm7W8VJgw58JF2KPW4QwYz-53l_yVW87Z2lm5MGqtmVFprTs65nwJNW1HgrpM2WL98PW59068W1F6XMSW2dz-8k8c7R2HW1cjHtb4rTWwNW8dVRgC88pgZwW6Hgq4K1yhmVwW6Kwqpb2Bp4B2f5Yb-8j04\" target=\"_blank\" title=\"http://www.bradentonareaedc.com/\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:purple\">BradentonAreaEDC.com</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3p6N2V5ClRxKDqNW3V0CSr411rHwW4x7Q1n6v5ZdtW4cdF5X3RzMvfN3w5BSZ52f8CW2zFgNV3rFVJWVf_mT94WtzmnW8mLvhS1nLhKDW3hrW3L7DGtrkW6f1z5k7krj7-W1XXnQg6Wh_X3W7mXkSC2vTWFCW3025hb5_BgrCW8ffjRp5C1sYRW5dysm_2s5QpyW4-SZ4q7PZLdQW1Wm7Fx6X3LDkW6SkmB91b9lpgW1NXsd942s_6TW6R9Q8z2Lq9PxVMCCbj8t7v1VW68WCqm5WcDWMf4YbV0n04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width:.3666in;height:.3666in\" id=\"m_1590386045476668823Picture_x0020_49\" src=\"cid:image001.png@01DC3133.99C8F790\"></span></a>&nbsp;&nbsp;&nbsp;&nbsp;\r\n<a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3p0N2tbrpLpv0zGW7lgZD_7HqXS2W7Jd7xc4dJgXKN65K13ssyhcGW1fPc3j1-ZmpHW5vPPQj59bXbYW8zGLn89khJMnTmbQR5RL0mmW998sHc1Q34SfW2cCtwm8TPCxTW8mmHts6WfZzzW4c-8RK2ZtTTnN97gzHT25CMhW4kHZrC4mP_MmW7GBX6V7fsB7lW763S8H4-B75VW6GPpV94lLVjYN7vgPntJc_yXVGpdvh4Y0fnVW1gHxYQ2LVJWZW3KNyWp8ttP1BW6dc5CJ28FqW4W538pMv5YxvS1W48lNdV9gdGWtf9cdRH804\" target=\"_blank\">\r\n<span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"34\" height=\"34\" style=\"width:.3583in;height:.3583in\" id=\"m_1590386045476668823Picture_x0020_48\" src=\"cid:image002.png@01DC3133.99C8F790\"></span></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jll2-6qcW7Y8-PT6lZ3nTW3Z-SV59jMkVmW5tgXqZ7JHKv9W4ryhR783rk1GW3rytz87Vr1JVW5L-RV_3cnmDSW5T4pm87tJWYdW7zSkxH14YDMBMjj18k9XZvwW6SYfHr202pR6W1RZpxp7l_6HNW4F07Xn71Gn7lW8z3PnX5Tv4WnW2zJ15F2w42bcW4Z5LSF4Qt3d4VxVp_W3m9T0yW3j_GcX5GKXJ_W18Q0MH19-LHnW6X0GSd45R9XdW77YQp57kCFBNW3MHX_s7xGlQqW626HPP4zs8v4Vsjz9T88r5xbW72BRLF2rK2syW7DRrXh2j3Jm0W1nDKCn4ts2QrW4SRBrq1zfk0Rf62LNJK04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width:.3666in;height:.3666in\" id=\"m_1590386045476668823Picture_x0020_47\" src=\"cid:image003.png@01DC3133.99C8F790\"></span></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3l_V7Pfrt92N5r-W2YmJbl7c3p1-W7j7WVL2wTZvSW6MZQCJ8HYd-gW6JPhtm6RqfNDW9jbBxJ7-Jd-YVsNGTT8dGlmcW3fcBc45cng-yN5VnGZPWjvpjVGq1f-8K3tShW15h05j8xp1K4W3DCNKS2TWsrNN7BnB85G4h_TW1FtG5_38_jg6Vf21332z2fZtW5kGtX361x5mzW6XGG0r6Jm879W7c705f1nH8kwW6Q-Scy8JHSrzW5bryNC6Wh-Q8W1GgG0q8RgscYW3F8n_n8DQjbqW1dycfw1RGYGmN7h9wpWcBB67f5tTjl-04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width:.3666in;height:.3666in\" id=\"m_1590386045476668823Picture_x0020_46\" src=\"cid:image004.png@01DC3133.99C8F790\"></span></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3nZW8GfHlt2TtYMTW4Jrnjn81y2kbW45KjmM7T-BZxW1LJXHS8K0nzzMXzDCxvNLyjW19W7D010M48dW12Ryjl7j7p-5N1gwPZxhBZKmW4vjqrB7drS7CW695LPr6J3fdZW9lh7yb60cC6xW2rPxxD9lbMs-W2wHTZ73DH-BRW1vq4qZ3x_GskN25j83LX3gBsW2S5-t76M9d7LW6lQzcX8tb5gyW6XB1R441_ywQW8N7WwT2snj40W960BCZ5pBRpMVSP-lk7bsNxtW87Tn5P5PnzS-d7nDZb04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width:.3666in;height:.3666in\" id=\"m_1590386045476668823Picture_x0020_45\" src=\"cid:image005.png@01DC3133.99C8F790\"></span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Nathan Staron &lt;</span><a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Nathan@lithiumbatterycompany.com</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, September 24, 2025 5:47 PM<br>\r\n<b>To:</b> Elizabeth Cordes &lt;</span><a href=\"mailto:elizabethc@bradentonareaedc.com\" target=\"_blank\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">elizabethc@bradentonareaedc.com</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;;\r\n Yanet Lopez &lt;</span><a href=\"mailto:yanetl@bradentonareaedc.com\" target=\"_blank\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">yanetl@bradentonareaedc.com</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;<br>\r\n<b>Cc:</b> Kevin Campos &lt;</span><a href=\"mailto:Kcampos@tampabayedc.com\" target=\"_blank\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Kcampos@tampabayedc.com</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;; Brian\r\n Stufflebean &lt;</span><a href=\"mailto:brian@mavrix.one\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">brian@mavrix.one</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;; Rick Mislan &lt;</span><a href=\"mailto:rick@mavrix.one\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">rick@mavrix.one</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;<br>\r\n<b>Subject:</b> Re: Introduction - Bradenton Area EDC</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Good Afternoon Elizabeth,<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Thank you for your prompt response and for the kind welcome. It was a pleasure e-meeting you as well.<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">I would like to introduce Brian Stufflebean and Rick Mislan, who are the project leads for our expansion into Parrish, FL. They will be instrumental in the development of our new\r\n location, and I believe it would be beneficial for them to connect with you directly.<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Regarding setting up a meeting, I agree that it would be valuable to discuss the project further. We would be happy to coordinate a time that works best for everyone next week.\r\n As you mentioned, Tuesday and Wednesday work well for you, and we can certainly align with that.<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Please let us know what specific times on Tuesday or Wednesday next week would be most convenient for you and Yanet, and we will make sure to schedule a call or meeting accordingly.\r\n We look forward to the opportunity to collaborate.<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\" style=\"border:solid #E2E2E2 1.0pt;padding:2.25pt 6.0pt 6.0pt 6.0pt;border-radius:5px\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mQW5hlCW65stZ98W321SNk27pMfwW5dyd1R2SfzRkW5MZtyh3nMMhjW3-FMWX7H-C-vW2C-nd75TTqKNW4m_F606RQcShN5zVDNlxVfHXW41sPRg4z9170W4xCYyJ5glhH_W8BMRJF356C7_W1DjRVR804DPgW2D5Nn733vYT2W6RSkLk7nDRLQW6q0M2x2FYhcGN5vgZNDN5qDPW8DbCHf5qXv-ZThZx164g_LtW6n3YwK4MQLpqN1cBQwtD003vW14QgYq45FcDNW95vyf98TlbtBdJftdR04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"23\" style=\"width:.25in;height:.2416in\" id=\"_x0000_i1040\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\"></span></a><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mXW4j41G14h5s88V5p3FB6gHZ-ZN3c0Hx2mcxLRW78Jyg86sjG8xN31YDR5y37J8W19LfG84Hb3LVW8PQ4vC6B1ZGpW85pHg4373x59W50SJlV1-dk-yW95KG1g4JStdSW3t3gnL8PSVr0W3M_RlT1cym2FW5yQJ5b8vxkGVVY0_Xy4mDnbLW4tL7vp3DqwqFW9dbhgs783WB_Vvv6m_4vZXs5W5sZ06B5m8h1TW85Mx1Z2jnXRPW8ygB4019Vgp-W7qBypL26HQL1W4w1z6g6LsZjkf3Zsp5T04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"22\" style=\"width:.25in;height:.2333in\" id=\"_x0000_i1039\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\"></span></a><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3kPW4J0YGH6pYc-pW5pN4gj6N1-nlN8bf8mYBd5hYW8g162g80pVGbW35XHjv30P8W1V1PXzF9cg7_PV9bmyn4L9vc6W92KGhc32Wh2BW2T02HX6-gMsqN1HBS6lD7k36W3Cmwd62Q_nd0W1tS6Y23F_hW5W1303bj92zGD-W4SsDwJ1PQgX1W8-P0zh8Z7FS8N77BCJ8YGNJzW8yblDc4zr5cLW7SsMhl8yJ7HfW2KmYrW2hNGwxW6bByXR4CyzbcN1r1R22XHpLzW20nSBq5yjYP0W8j9J1n8_YH9RW8ZsfVJ7kjbwfdcLDf604\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"22\" style=\"width:.25in;height:.2333in\" id=\"_x0000_i1038\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\"></span></a><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3m_W6c9R_Q5mLnSyVCJkS45y4h6CN3kry02-Jt_9W642Vz23LDbwSW8l4M0V98zl9qVwncbk5Tmk56VQcXVL71k01-W7CCPvg1c2jwwW8pd1xV5zPdNCW2fN44w6GmR9MW8hp6-V2lrXMYW5lmTTf1nQFQ8W6Gt6xH2gqvsLW4ZDNRJ2QLhqQW8sqkk57htK8nW6Lrt6f5LnQPLVWbBKl566fV3W2DCGJv6TMyWvN6ZbcjkynYVsW6R2xH21m-HxRW5pLwRh8HrDZLW7j8Jgm3zs44XW7FcB5k7cZf3nN7LFp9rP86_jf3nLLkK04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"22\" style=\"width:.25in;height:.2333in\" id=\"_x0000_i1037\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\"></span></a><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3m1W1RnDgw4nX4s8N8-VdR1LJgzGW5QsF1F7vVSH9W48h1042HL2LDW36nqz46jq-d6W44lhVr582TWhW2Mv5Gc26kwdqW69j-cx4F7BJ_W3zRv2R8Ht8HpW8ddQJ08zg8dzW5DsNZQ4R2Mr3W7Qxj6V3KB4VmVdy5X078bJJhN8JjH_H8Xt_pW9gYK0Z44XbDzW7f-M5X7sDgplV5LMfj7NZ2hcW4_h57x2ttsDCF50SYjrhfpgW4GZ_d-1XRQfCN893sy_lT5XkW94fFYW6_vqM1W6wGGb649c4RjVNBl2J3ZQ90Jf3z2XHn04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"22\" style=\"width:.25in;height:.2333in\" id=\"_x0000_i1036\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\"></span></a><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"8\" style=\"width:6.0pt;padding:0in 0in 0in 0in;display:revert\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"mso-ligatures:standardcontextual\">&nbsp;<o:p></o:p></span></p>\r\n</td>\r\n<td valign=\"top\" style=\"border:solid #E2E2E2 1.0pt;padding:11.25pt 11.25pt 11.25pt 11.25pt;border-radius:5px\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"width:100.0%;border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"width:100.0%;border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mQW5hlCW65stZ98W321SNk27pMfwW5dyd1R2SfzRkW5MZtyh3nMMhjW3-FMWX7H-C-vW2C-nd75TTqKNW4m_F606RQcShN5zVDNlxVfHXW41sPRg4z9170W4xCYyJ5glhH_W8BMRJF356C7_W1DjRVR804DPgW2D5Nn733vYT2W6RSkLk7nDRLQW6q0M2x2FYhcGN5vgZNDN5qDPW8DbCHf5qXv-ZThZx164g_LtW6n3YwK4MQLpqN1cBQwtD003vW14QgYq45FcDNW95vyf98TlbtBdJftdR04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"170\" height=\"34\" style=\"width:1.775in;height:.3583in\" id=\"_x0000_i1035\" src=\"https://app.customesignature.com/upload/signature/11122/11122.png\"></span></a><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 7.5pt 0in\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:11.25pt 0in 0in 0in\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:15.0pt;mso-ligatures:standardcontextual\">NATHAN A. STARON</span></b><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td style=\"padding:0in 0in 0in 3.75pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><img border=\"0\" width=\"15\" height=\"15\" style=\"width:.1583in;height:.1583in\" id=\"_x0000_i1034\" src=\"https://app.customesignature.com/images/verify.gif\"><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:9.0pt;mso-ligatures:standardcontextual\">Founder / CEO</span><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:9.0pt;mso-ligatures:standardcontextual\">Lithium Battery Company</span></b><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:9.0pt;mso-ligatures:standardcontextual\">Cell Phone</span></b><span style=\"mso-ligatures:standardcontextual\">&nbsp;<a href=\"tel:813-504-0074\" target=\"_blank\"><span style=\"font-size:9.0pt;color:black\">813-504-0074</span></a><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:9.0pt;mso-ligatures:standardcontextual\">Phone</span></b><span style=\"mso-ligatures:standardcontextual\">&nbsp;<a href=\"tel:844-GET-LITHIUM\" target=\"_blank\"><span style=\"font-size:9.0pt;color:black\">844-GET-LITHIUM</span></a><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"mso-ligatures:standardcontextual\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\"><span style=\"color:black\">Nathan@lithiumbatterycompany.com</span></a><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in 0in\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in;display:flex\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"mso-ligatures:standardcontextual\"><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3lDW2VLRlm7J62nHW7zjwsc2-Zyv0W52CBv366NwyHW7YmZ_q5d818kMbTZ8850bF7W1lp2yt4xYQckW35zwy918TsypW8fcMFW5F0BhvW5-Qlx32--mKTW7yYFpd4k1FWkW2q7-Qn76Fx1lW5-7yl-7VcRQJW82KTWk5P5m6bW7r4dLH2cfW5kW8Fw4S61Y_xTcW8sBVsc1tvjxdW4HkXTp8kWmTYW2NBgcx6y39JDW3KpvnJ2Kv-mzW8K75rL29tbxDN26qscbczTTdW6YDddy4g4RZrW31mF8s6hTNVqN2C5N65RDjVXf2jqhW-04\" target=\"_blank\"><b><span style=\"font-size:9.0pt;color:white;background:black\">Schedule\r\n A Zoom</span></b></a><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td style=\"padding:0in 0in 0in 11.25pt;display:revert\">\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><img border=\"0\" width=\"140\" height=\"140\" style=\"width:1.4583in;height:1.4583in\" id=\"_x0000_i1033\" src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\"><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><img border=\"0\" width=\"140\" height=\"140\" style=\"width:1.4583in;height:1.4583in\" id=\"_x0000_i1032\" src=\"https://app.customesignature.com/upload/signature/gifs/giphyy-1.gif\"><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" style=\"padding:0in 0in 0in 0in\">\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:7.5pt 0in 0in 0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">On Wed, Sep 24, 2025 at 3:54<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM Elizabeth Cordes &lt;<a href=\"mailto:elizabethc@bradentonareaedc.com\" target=\"_blank\">elizabethc@bradentonareaedc.com</a>&gt;\r\n wrote:<o:p></o:p></p>\r\n</div>\r\n<blockquote style=\"border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Hi Kevin,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Thank you very much for the introduction! It is a pleasure to e-meet you, Nathan. I would very much like to set up\r\n a call or meeting to discuss your project further. Please let me know a day and time that would work best for you. We have good availability Tuesday and Wednesday next week. I look forward to working with you.</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Kindest regards,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:16.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#0079A1\">Elizabeth Cordes</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Director of Business Recruitment &amp; Expansion</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:14.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#212121\">Bradenton Area Economic Development Corporation</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkMgQprkW6N3_xK6lZ3nwW1S-NPm50p7sBN5f0h3dq66mwW2GjSSw8RL3CVW33xj8Y6ZhQnFW8B_6mK8qmplbW5WwK0G2G_YVjW53D6_Y5Lk4fvVmQ8Vw8LF52TW6SWrYl61h3rKW88LMvF2-kzyzW5KGNsg8xdCxqW7SHJmB1mjN5vW2rlG897WMDzPW1BBKw92tpVTKVlKvg21tHf5qW4jvFnR5gVsT3MQr1RZRJmQDV2qYRZ2DbLGtW8Y0zjf1lyTzKW8n51Cp1SdFPtW4pq5Lw2FGSYWW6Crnr3504Hj0W10_0d46CbZH_W8-HBD28HVTTkW2F9mQK32sfkTW3FLWsK19JPkhW3MQ1lR5X7CbRV6Z9tF5wT04rVwn70p6PvdcRW2VzMRk4LRwRsN8-G3Jvlkl8CW4V4b027z_kCDW2Zd_BF1MHsNYW3ywjF96_k7P1W6M6gG05qzvn-W41F7KZ4Db1QcN5g7tT-4VghbW3nCrDL2bxJk6W3ZL2M82j4gsdW6GQgCX1njbDCN2Vg3g-fsLBrN4MBKxPxWj04W4hTYTm4_HKgJW1pL0Pk7Rm0w3W9k8_zw5BmwTxW2RGgqD3tqn4WVqfbLr6yx4MDW7cyNSJ1ss5-JW5gx4wD3wkGmgW5SWj8V1dvcTPW8l1kLv7QhjKcW8HyBXt606-YTW3xCnj97FPhrTW70CBXf6rN35kW6xl5Dj8j5H4ZN59Cdybzf8CBVFd7jR7R5c3qW3hvzZk7jpr59W8lNnhD22ptJdW6Lw0n16sGsmhW5dGmbt4WkGWvVbj6zz65tgGkN1nDBR9hX-HkW3fSwQg74ZgV_W2D6ZgL5mk-zKW7phXVN9kpmNYW1_BYH63rC16PW2G6Gfs3cDS6MV9F1Zs4BKsP-VJzcnY50kKtFW6Yxvmg1xb-WPN5KZx62G62mPW5RJmJ_2BvZD2W1-nqhz6Fy7SlVFmXH33BVZdKW2M7NhB1S8dMkW4yz52j5JD9B9W5-B9R_4KQ7fbN3fVlwswDBHxW92JFwN9b8Yg6VXSf_p2bRBzhW1G5gh055Ct_QW5R4FWT7nD7x7W7Chzdk2N-vg-W2G71QP1Tr_vyW65Qbpj3DrZP5W4Yb_jX6H8-3KW4BmqYF6k76WbVyrg7p4Sv4HkW4707lL442SJbN8GZW2CT_tBWN69dn7h5mr1vW3xx5vl2fvhK6W9hRpkl7898Q2W7GkS315yQZbdW8-pkBM48xPKDN5hXhm15L98VW5Z9fT13YW2-8W8PJ__S36Rr3PW6v_mV13c3zwNW935XTC6S79VLW3pB2Cx7TZwhnW4sQYNH6Tfpw7VMRnth1NQNCqV7Mytm7SltwvW977vVP6jHYJJW8mGHDY8w_VKCN3Qrw7mhDR5cW2kP64g22X09pW4CyBgB5Rsxl1W6ZKSHd47fycGW38Z7WW2yF23ZV4Kx5Q5dDHs9W3T8tx16tFScBW6Npzg-7cgGfyW4_lZy44N5nk4W6SGTKN24Kl35W6MRlsh6GRQ-ff7ln0Xb04\" target=\"_blank\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0563C1\">5840\r\n 26<sup>th</sup> Street West, 26 West Center, Suite 232, Bradenton, FL 34207</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0079A1\">Email:</span></b><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">\r\n</span><a href=\"mailto:ElizabethC@BradentonAreaEDC.com\" target=\"_blank\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0563C1\">ElizabethC@BradentonAreaEDC.com</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0079A1\">Phone:&nbsp;</span></b><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">941-803-9033</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:#0079A1\">Cell:&nbsp;</span></b><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">716-908-6134<b><span style=\"color:black\"><br>\r\n</span></b></span><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3m-W76k8Rv54FzY3W63BPky6WGs-QW5x9xcn2NfXL4W6WZ3Kf3tQ4rBW8rpQNX1QTG8VW2LwzGK7SZC75VtGXvk6k9GT9W8_R1wR6qvv1tVZxx5_326Tw6W4qSM5g2_4MkkN5vNflCMwLm7W8VJgw58JF2KPW4QwYz-53l_yVW87Z2lm5MGqtmVFprTs65nwJNW1HgrpM2WL98PW59068W1F6XMSW2dz-8k8c7R2HW1cjHtb4rTWwNW8dVRgC88pgZwW6Hgq4K1yhmVwW6Kwqpb2Bp4B2f5Yb-8j04\" target=\"_blank\" title=\"http://www.bradentonareaedc.com/\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;color:purple\">BradentonAreaEDC.com</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3p6N2V5ClRxKDqNW3V0CSr411rHwW4x7Q1n6v5ZdtW4cdF5X3RzMvfN3w5BSZ52f8CW2zFgNV3rFVJWVf_mT94WtzmnW8mLvhS1nLhKDW3hrW3L7DGtrkW6f1z5k7krj7-W1XXnQg6Wh_X3W7mXkSC2vTWFCW3025hb5_BgrCW8ffjRp5C1sYRW5dysm_2s5QpyW4-SZ4q7PZLdQW1Wm7Fx6X3LDkW6SkmB91b9lpgW1NXsd942s_6TW6R9Q8z2Lq9PxVMCCbj8t7v1VW68WCqm5WcDWMf4YbV0n04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width:.3666in;height:.3666in\" id=\"m_1590386045476668823m_-8707086132752645063Picture_x0020_49\" src=\"cid:image001.png@01DC3133.99C8F790\"></span></a>&nbsp;&nbsp;&nbsp;&nbsp;\r\n<a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3p0N2tbrpLpv0zGW7lgZD_7HqXS2W7Jd7xc4dJgXKN65K13ssyhcGW1fPc3j1-ZmpHW5vPPQj59bXbYW8zGLn89khJMnTmbQR5RL0mmW998sHc1Q34SfW2cCtwm8TPCxTW8mmHts6WfZzzW4c-8RK2ZtTTnN97gzHT25CMhW4kHZrC4mP_MmW7GBX6V7fsB7lW763S8H4-B75VW6GPpV94lLVjYN7vgPntJc_yXVGpdvh4Y0fnVW1gHxYQ2LVJWZW3KNyWp8ttP1BW6dc5CJ28FqW4W538pMv5YxvS1W48lNdV9gdGWtf9cdRH804\" target=\"_blank\">\r\n<span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"34\" height=\"34\" style=\"width:.3583in;height:.3583in\" id=\"m_1590386045476668823m_-8707086132752645063Picture_x0020_48\" src=\"cid:image002.png@01DC3133.99C8F790\"></span></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jll2-6qcW7Y8-PT6lZ3nTW3Z-SV59jMkVmW5tgXqZ7JHKv9W4ryhR783rk1GW3rytz87Vr1JVW5L-RV_3cnmDSW5T4pm87tJWYdW7zSkxH14YDMBMjj18k9XZvwW6SYfHr202pR6W1RZpxp7l_6HNW4F07Xn71Gn7lW8z3PnX5Tv4WnW2zJ15F2w42bcW4Z5LSF4Qt3d4VxVp_W3m9T0yW3j_GcX5GKXJ_W18Q0MH19-LHnW6X0GSd45R9XdW77YQp57kCFBNW3MHX_s7xGlQqW626HPP4zs8v4Vsjz9T88r5xbW72BRLF2rK2syW7DRrXh2j3Jm0W1nDKCn4ts2QrW4SRBrq1zfk0Rf62LNJK04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width:.3666in;height:.3666in\" id=\"m_1590386045476668823m_-8707086132752645063Picture_x0020_47\" src=\"cid:image003.png@01DC3133.99C8F790\"></span></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3l_V7Pfrt92N5r-W2YmJbl7c3p1-W7j7WVL2wTZvSW6MZQCJ8HYd-gW6JPhtm6RqfNDW9jbBxJ7-Jd-YVsNGTT8dGlmcW3fcBc45cng-yN5VnGZPWjvpjVGq1f-8K3tShW15h05j8xp1K4W3DCNKS2TWsrNN7BnB85G4h_TW1FtG5_38_jg6Vf21332z2fZtW5kGtX361x5mzW6XGG0r6Jm879W7c705f1nH8kwW6Q-Scy8JHSrzW5bryNC6Wh-Q8W1GgG0q8RgscYW3F8n_n8DQjbqW1dycfw1RGYGmN7h9wpWcBB67f5tTjl-04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width:.3666in;height:.3666in\" id=\"m_1590386045476668823m_-8707086132752645063Picture_x0020_46\" src=\"cid:image004.png@01DC3133.99C8F790\"></span></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3nZW8GfHlt2TtYMTW4Jrnjn81y2kbW45KjmM7T-BZxW1LJXHS8K0nzzMXzDCxvNLyjW19W7D010M48dW12Ryjl7j7p-5N1gwPZxhBZKmW4vjqrB7drS7CW695LPr6J3fdZW9lh7yb60cC6xW2rPxxD9lbMs-W2wHTZ73DH-BRW1vq4qZ3x_GskN25j83LX3gBsW2S5-t76M9d7LW6lQzcX8tb5gyW6XB1R441_ywQW8N7WwT2snj40W960BCZ5pBRpMVSP-lk7bsNxtW87Tn5P5PnzS-d7nDZb04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width:.3666in;height:.3666in\" id=\"m_1590386045476668823m_-8707086132752645063Picture_x0020_45\" src=\"cid:image005.png@01DC3133.99C8F790\"></span></a><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Kevin Campos &lt;</span><a href=\"mailto:Kcampos@tampabayedc.com\" target=\"_blank\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Kcampos@tampabayedc.com</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, September 24, 2025 11:44 AM<br>\r\n<b>To:</b> Nathan Staron &lt;</span><a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">nathan@lithiumbatterycompany.com</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;;\r\n Yanet Lopez &lt;</span><a href=\"mailto:yanetl@bradentonareaedc.com\" target=\"_blank\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">yanetl@bradentonareaedc.com</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;; Elizabeth\r\n Cordes &lt;</span><a href=\"mailto:elizabethc@bradentonareaedc.com\" target=\"_blank\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">elizabethc@bradentonareaedc.com</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;<br>\r\n<b>Subject:</b> Introduction - Bradenton Area EDC</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Hello Nathan,\r\n<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">As discussed, I wanted to connect to the EDC in Manatee County for your Parrish, FL location.\r\n<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"mailto:yanetl@bradentonareaedc.com\" target=\"_blank\"><span style=\"text-decoration:none\">@yanetl@bradentonareaedc.com</span></a> and\r\n<a href=\"mailto:elizabethc@bradentonareaedc.com\" target=\"_blank\"><span style=\"text-decoration:none\">@elizabethc@bradentonareaedc.com</span></a> thanks for taking my call. Could you connect with Nathan Staron when you have a chance? I have included him on this\r\n email and they are expanding into that area. <o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;background:white\">\r\n<b><span style=\"font-size:11.0pt;font-family:&quot;Times New Roman&quot;,serif;color:#538135\">Kevin Campos, FCWP</span></b><span style=\"font-size:14.0pt;font-family:&quot;Times New Roman&quot;,serif;color:#1F497D\"><br>\r\n</span><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\">ECONOMIC DEVELOPMENT MANAGER<br>\r\n</span><b><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif;color:#538135\">TAMPA BAY ECONOMIC DEVELOPMENT COUNCIL</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;background:white\">\r\n<span style=\"font-size:9.0pt;font-family:&quot;Times New Roman&quot;,serif;color:#1F497D\">101 E. Kennedy Blvd., Suite 2000, Tampa, FL 33602</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;background:white\">\r\n<b><span lang=\"PT-BR\" style=\"font-size:9.0pt;font-family:&quot;Times New Roman&quot;,serif;color:#538135\">O:</span></b><span lang=\"PT-BR\" style=\"font-size:9.0pt;font-family:&quot;Times New Roman&quot;,serif;color:#1F497D\">&nbsp;813.518.2662 I\r\n</span><b><span lang=\"PT-BR\" style=\"font-size:9.0pt;font-family:&quot;Times New Roman&quot;,serif;color:#538135\">M</span></b><span lang=\"PT-BR\" style=\"font-size:9.0pt;font-family:&quot;Times New Roman&quot;,serif;color:#1F497D\">: 813.763.0307</span><span lang=\"PT-BR\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;background:white\">\r\n<span style=\"color:black\"><a href=\"mailto:kcampos@tampabayedc.com\" target=\"_blank\"><span lang=\"PT-BR\" style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">kcampos@tampabayedc.com</span></a></span><span lang=\"PT-BR\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;background:white\">\r\n<span style=\"color:black\"><img border=\"0\" width=\"320\" height=\"130\" style=\"width:3.3333in;height:1.35in\" id=\"m_1590386045476668823Picture_x0020_1\" src=\"cid:image006.png@01DC3133.99C8F790\"></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n<p class=\"MsoNormal\"><img border=\"0\" width=\"1\" height=\"1\" style=\"width:.0083in;height:.0083in\" id=\"_x0000_i1025\" src=\"https://d152-C04.na1.hs-sales-engage.com/Cto/V+23284/d152-C04/R5R8b49ndN6J62ww2fDrFW1SqHTW1YZqX0W20Z11c1XlTQbW1Gy2mF3BKmKCW1XnCGW1Z00wDW3GMn6f1V0Nlnn1V3ftj4W1\"><o:p></o:p></p>\r\n</div>\r\n</body>\r\n</html>\r\n','Hi Nathan,\r\n\r\nYes, I can send out a teams meeting for 10am on Wednesday.\r\n\r\nKindest regards,\r\n\r\nElizabeth Cordes\r\nDirector of Business Recruitment & Expansion\r\nBradenton Area Economic Development Corporation\r\n5840 26th Street West, 26 West Center, Suite 232, Bradenton, FL 34207<https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkMgQprkW6N3_xK6lZ3nwW1S-NPm50p7sBN5f0h3dq66mwW2GjSSw8RL3CVW33xj8Y6ZhQnFW8B_6mK8qmplbW5WwK0G2G_YVjW53D6_Y5Lk4fvVmQ8Vw8LF52TW6SWrYl61h3rKW88LMvF2-kzyzW5KGNsg8xdCxqW7SHJmB1mjN5vW2rlG897WMDzPW1BBKw92tpVTKVlKvg21tHf5qW4jvFnR5gVsT3MQr1RZRJmQDV2qYRZ2DbLGtW8Y0zjf1lyTzKW8n51Cp1SdFPtW4pq5Lw2FGSYWW6Crnr3504Hj0W10_0d46CbZH_W8-HBD28HVTTkW2F9mQK32sfkTW3FLWsK19JPkhW3MQ1lR5X7CbRV6Z9tF5wT04rVwn70p6PvdcRW2VzMRk4LRwRsN8-G3Jvlkl8CW4V4b027z_kCDW2Zd_BF1MHsNYW3ywjF96_k7P1W6M6gG05qzvn-W41F7KZ4Db1QcN5g7tT-4VghbW3nCrDL2bxJk6W3ZL2M82j4gsdW6GQgCX1njbDCN2Vg3g-fsLBrN4MBKxPxWj04W4hTYTm4_HKgJW1pL0Pk7Rm0w3W9k8_zw5BmwTxW2RGgqD3tqn4WVqfbLr6yx4MDW7cyNSJ1ss5-JW5gx4wD3wkGmgW5SWj8V1dvcTPW8l1kLv7QhjKcW8HyBXt606-YTW3xCnj97FPhrTW70CBXf6rN35kW6xl5Dj8j5H4ZN59Cdybzf8CBVFd7jR7R5c3qW3hvzZk7jpr59W8lNnhD22ptJdW6Lw0n16sGsmhW5dGmbt4WkGWvVbj6zz65tgGkN1nDBR9hX-HkW3fSwQg74ZgV_W2D6ZgL5mk-zKW7phXVN9kpmNYW1_BYH63rC16PW2G6Gfs3cDS6MV9F1Zs4BKsP-VJzcnY50kKtFW6Yxvmg1xb-WPN5KZx62G62mPW5RJmJ_2BvZD2W1-nqhz6Fy7SlVFmXH33BVZdKW2M7NhB1S8dMkW4yz52j5JD9B9W5-B9R_4KQ7fbN3fVlwswDBHxW92JFwN9b8Yg6VXSf_p2bRBzhW1G5gh055Ct_QW5R4FWT7nD7x7W7Chzdk2N-vg-W2G71QP1Tr_vyW65Qbpj3DrZP5W4Yb_jX6H8-3KW4BmqYF6k76WbVyrg7p4Sv4HkW4707lL442SJbN8GZW2CT_tBWN69dn7h5mr1vW3xx5vl2fvhK6W9hRpkl7898Q2W7GkS315yQZbdW8-pkBM48xPKDN5hXhm15L98VW5Z9fT13YW2-8W8PJ__S36Rr3PW6v_mV13c3zwNW935XTC6S79VLW3pB2Cx7TZwhnW4sQYNH6Tfpw7VMRnth1NQNCqV7Mytm7SltwvW977vVP6jHYJJW8mGHDY8w_VKCN3Qrw7mhDR5cW2kP64g22X09pW4CyBgB5Rsxl1W6ZKSHd47fycGW38Z7WW2yF23ZV4Kx5Q5dDHs9W3T8tx16tFScBW6Npzg-7cgGfyW4_lZy44N5nk4W6SGTKN24Kl35W6MRlsh6GRQ-ff7ln0Xb04>\r\nEmail: ElizabethC@BradentonAreaEDC.com<mailto:ElizabethC@BradentonAreaEDC.com>\r\nPhone: 941-803-9033\r\nCell: 716-908-6134\r\nBradentonAreaEDC.com<https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3m-W76k8Rv54FzY3W63BPky6WGs-QW5x9xcn2NfXL4W6WZ3Kf3tQ4rBW8rpQNX1QTG8VW2LwzGK7SZC75VtGXvk6k9GT9W8_R1wR6qvv1tVZxx5_326Tw6W4qSM5g2_4MkkN5vNflCMwLm7W8VJgw58JF2KPW4QwYz-53l_yVW87Z2lm5MGqtmVFprTs65nwJNW1HgrpM2WL98PW59068W1F6XMSW2dz-8k8c7R2HW1cjHtb4rTWwNW8dVRgC88pgZwW6Hgq4K1yhmVwW6Kwqpb2Bp4B2f5Yb-8j04>\r\n\r\n[cid:image001.png@01DC3133.99C8F790]<https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3p6N2V5ClRxKDqNW3V0CSr411rHwW4x7Q1n6v5ZdtW4cdF5X3RzMvfN3w5BSZ52f8CW2zFgNV3rFVJWVf_mT94WtzmnW8mLvhS1nLhKDW3hrW3L7DGtrkW6f1z5k7krj7-W1XXnQg6Wh_X3W7mXkSC2vTWFCW3025hb5_BgrCW8ffjRp5C1sYRW5dysm_2s5QpyW4-SZ4q7PZLdQW1Wm7Fx6X3LDkW6SkmB91b9lpgW1NXsd942s_6TW6R9Q8z2Lq9PxVMCCbj8t7v1VW68WCqm5WcDWMf4YbV0n04>     [cid:image002.png@01DC3133.99C8F790] <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3p0N2tbrpLpv0zGW7lgZD_7HqXS2W7Jd7xc4dJgXKN65K13ssyhcGW1fPc3j1-ZmpHW5vPPQj59bXbYW8zGLn89khJMnTmbQR5RL0mmW998sHc1Q34SfW2cCtwm8TPCxTW8mmHts6WfZzzW4c-8RK2ZtTTnN97gzHT25CMhW4kHZrC4mP_MmW7GBX6V7fsB7lW763S8H4-B75VW6GPpV94lLVjYN7vgPntJc_yXVGpdvh4Y0fnVW1gHxYQ2LVJWZW3KNyWp8ttP1BW6dc5CJ28FqW4W538pMv5YxvS1W48lNdV9gdGWtf9cdRH804>      [cid:image003.png@01DC3133.99C8F790] <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jll2-6qcW7Y8-PT6lZ3nTW3Z-SV59jMkVmW5tgXqZ7JHKv9W4ryhR783rk1GW3rytz87Vr1JVW5L-RV_3cnmDSW5T4pm87tJWYdW7zSkxH14YDMBMjj18k9XZvwW6SYfHr202pR6W1RZpxp7l_6HNW4F07Xn71Gn7lW8z3PnX5Tv4WnW2zJ15F2w42bcW4Z5LSF4Qt3d4VxVp_W3m9T0yW3j_GcX5GKXJ_W18Q0MH19-LHnW6X0GSd45R9XdW77YQp57kCFBNW3MHX_s7xGlQqW626HPP4zs8v4Vsjz9T88r5xbW72BRLF2rK2syW7DRrXh2j3Jm0W1nDKCn4ts2QrW4SRBrq1zfk0Rf62LNJK04>      [cid:image004.png@01DC3133.99C8F790] <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3l_V7Pfrt92N5r-W2YmJbl7c3p1-W7j7WVL2wTZvSW6MZQCJ8HYd-gW6JPhtm6RqfNDW9jbBxJ7-Jd-YVsNGTT8dGlmcW3fcBc45cng-yN5VnGZPWjvpjVGq1f-8K3tShW15h05j8xp1K4W3DCNKS2TWsrNN7BnB85G4h_TW1FtG5_38_jg6Vf21332z2fZtW5kGtX361x5mzW6XGG0r6Jm879W7c705f1nH8kwW6Q-Scy8JHSrzW5bryNC6Wh-Q8W1GgG0q8RgscYW3F8n_n8DQjbqW1dycfw1RGYGmN7h9wpWcBB67f5tTjl-04>      [cid:image005.png@01DC3133.99C8F790] <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3nZW8GfHlt2TtYMTW4Jrnjn81y2kbW45KjmM7T-BZxW1LJXHS8K0nzzMXzDCxvNLyjW19W7D010M48dW12Ryjl7j7p-5N1gwPZxhBZKmW4vjqrB7drS7CW695LPr6J3fdZW9lh7yb60cC6xW2rPxxD9lbMs-W2wHTZ73DH-BRW1vq4qZ3x_GskN25j83LX3gBsW2S5-t76M9d7LW6lQzcX8tb5gyW6XB1R441_ywQW8N7WwT2snj40W960BCZ5pBRpMVSP-lk7bsNxtW87Tn5P5PnzS-d7nDZb04>\r\n\r\nFrom: Nathan Staron <Nathan@lithiumbatterycompany.com>\r\nSent: Friday, September 26, 2025 3:58 PM\r\nTo: Elizabeth Cordes <elizabethc@bradentonareaedc.com>\r\nCc: Yanet Lopez <yanetl@bradentonareaedc.com>; Kevin Campos <Kcampos@tampabayedc.com>; Brian Stufflebean <brian@mavrix.one>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Introduction - Bradenton Area EDC\r\n\r\nHi Elizabeth,\r\n\r\nWould you be able to send a Zoom link for the call that we have scheduled next week?\r\n\r\n\r\n[https://app.customesignature.com/images/social/animation/4/web-icon.gif]<https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mQW5hlCW65stZ98W321SNk27pMfwW5dyd1R2SfzRkW5MZtyh3nMMhjW3-FMWX7H-C-vW2C-nd75TTqKNW4m_F606RQcShN5zVDNlxVfHXW41sPRg4z9170W4xCYyJ5glhH_W8BMRJF356C7_W1DjRVR804DPgW2D5Nn733vYT2W6RSkLk7nDRLQW6q0M2x2FYhcGN5vgZNDN5qDPW8DbCHf5qXv-ZThZx164g_LtW6n3YwK4MQLpqN1cBQwtD003vW14QgYq45FcDNW95vyf98TlbtBdJftdR04>\r\n[https://app.customesignature.com/images/social/animation/4/insta-icon.gif]<https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mXW4j41G14h5s88V5p3FB6gHZ-ZN3c0Hx2mcxLRW78Jyg86sjG8xN31YDR5y37J8W19LfG84Hb3LVW8PQ4vC6B1ZGpW85pHg4373x59W50SJlV1-dk-yW95KG1g4JStdSW3t3gnL8PSVr0W3M_RlT1cym2FW5yQJ5b8vxkGVVY0_Xy4mDnbLW4tL7vp3DqwqFW9dbhgs783WB_Vvv6m_4vZXs5W5sZ06B5m8h1TW85Mx1Z2jnXRPW8ygB4019Vgp-W7qBypL26HQL1W4w1z6g6LsZjkf3Zsp5T04>\r\n[https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif]<https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3kPW4J0YGH6pYc-pW5pN4gj6N1-nlN8bf8mYBd5hYW8g162g80pVGbW35XHjv30P8W1V1PXzF9cg7_PV9bmyn4L9vc6W92KGhc32Wh2BW2T02HX6-gMsqN1HBS6lD7k36W3Cmwd62Q_nd0W1tS6Y23F_hW5W1303bj92zGD-W4SsDwJ1PQgX1W8-P0zh8Z7FS8N77BCJ8YGNJzW8yblDc4zr5cLW7SsMhl8yJ7HfW2KmYrW2hNGwxW6bByXR4CyzbcN1r1R22XHpLzW20nSBq5yjYP0W8j9J1n8_YH9RW8ZsfVJ7kjbwfdcLDf604>\r\n[https://app.customesignature.com/images/social/animation/4/facebook-icon.gif]<https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3m_W6c9R_Q5mLnSyVCJkS45y4h6CN3kry02-Jt_9W642Vz23LDbwSW8l4M0V98zl9qVwncbk5Tmk56VQcXVL71k01-W7CCPvg1c2jwwW8pd1xV5zPdNCW2fN44w6GmR9MW8hp6-V2lrXMYW5lmTTf1nQFQ8W6Gt6xH2gqvsLW4ZDNRJ2QLhqQW8sqkk57htK8nW6Lrt6f5LnQPLVWbBKl566fV3W2DCGJv6TMyWvN6ZbcjkynYVsW6R2xH21m-HxRW5pLwRh8HrDZLW7j8Jgm3zs44XW7FcB5k7cZf3nN7LFp9rP86_jf3nLLkK04>\r\n[https://app.customesignature.com/images/social/animation/4/youtube-icon.gif]<https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3m1W1RnDgw4nX4s8N8-VdR1LJgzGW5QsF1F7vVSH9W48h1042HL2LDW36nqz46jq-d6W44lhVr582TWhW2Mv5Gc26kwdqW69j-cx4F7BJ_W3zRv2R8Ht8HpW8ddQJ08zg8dzW5DsNZQ4R2Mr3W7Qxj6V3KB4VmVdy5X078bJJhN8JjH_H8Xt_pW9gYK0Z44XbDzW7f-M5X7sDgplV5LMfj7NZ2hcW4_h57x2ttsDCF50SYjrhfpgW4GZ_d-1XRQfCN893sy_lT5XkW94fFYW6_vqM1W6wGGb649c4RjVNBl2J3ZQ90Jf3z2XHn04>\r\n\r\n[https://app.customesignature.com/upload/signature/11122/11122.png]<https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mQW5hlCW65stZ98W321SNk27pMfwW5dyd1R2SfzRkW5MZtyh3nMMhjW3-FMWX7H-C-vW2C-nd75TTqKNW4m_F606RQcShN5zVDNlxVfHXW41sPRg4z9170W4xCYyJ5glhH_W8BMRJF356C7_W1DjRVR804DPgW2D5Nn733vYT2W6RSkLk7nDRLQW6q0M2x2FYhcGN5vgZNDN5qDPW8DbCHf5qXv-ZThZx164g_LtW6n3YwK4MQLpqN1cBQwtD003vW14QgYq45FcDNW95vyf98TlbtBdJftdR04>\r\nNATHAN A. STARON\r\n[https://app.customesignature.com/images/verify.gif]\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074<tel:813-504-0074>\r\nPhone 844-GET-LITHIUM<tel:844-GET-LITHIUM>\r\nNathan@lithiumbatterycompany.com<mailto:Nathan@lithiumbatterycompany.com>\r\nSchedule A Zoom<https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3lDW2VLRlm7J62nHW7zjwsc2-Zyv0W52CBv366NwyHW7YmZ_q5d818kMbTZ8850bF7W1lp2yt4xYQckW35zwy918TsypW8fcMFW5F0BhvW5-Qlx32--mKTW7yYFpd4k1FWkW2q7-Qn76Fx1lW5-7yl-7VcRQJW82KTWk5P5m6bW7r4dLH2cfW5kW8Fw4S61Y_xTcW8sBVsc1tvjxdW4HkXTp8kWmTYW2NBgcx6y39JDW3KpvnJ2Kv-mzW8K75rL29tbxDN26qscbczTTdW6YDddy4g4RZrW31mF8s6hTNVqN2C5N65RDjVXf2jqhW-04>\r\n[https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg]\r\n[https://app.customesignature.com/upload/signature/gifs/giphyy-1.gif]\r\n\r\n\r\nOn Thu, Sep 25, 2025 at 12:03 PM Elizabeth Cordes <elizabethc@bradentonareaedc.com<mailto:elizabethc@bradentonareaedc.com>> wrote:\r\nHi Nathan,\r\n\r\nIt is a pleasure to e-meet both of you, Brian and Rick!\r\n\r\nLet’s do a call on Wednesday, October 1 at 10am? If a site has already been selected for the project, we are happy to meet you at the site as well. Please let me know what works best for you.\r\n\r\nKindest regards,\r\n\r\nElizabeth Cordes\r\nDirector of Business Recruitment & Expansion\r\nBradenton Area Economic Development Corporation\r\n5840 26th Street West, 26 West Center, Suite 232, Bradenton, FL 34207<https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkMgQprkW6N3_xK6lZ3nwW1S-NPm50p7sBN5f0h3dq66mwW2GjSSw8RL3CVW33xj8Y6ZhQnFW8B_6mK8qmplbW5WwK0G2G_YVjW53D6_Y5Lk4fvVmQ8Vw8LF52TW6SWrYl61h3rKW88LMvF2-kzyzW5KGNsg8xdCxqW7SHJmB1mjN5vW2rlG897WMDzPW1BBKw92tpVTKVlKvg21tHf5qW4jvFnR5gVsT3MQr1RZRJmQDV2qYRZ2DbLGtW8Y0zjf1lyTzKW8n51Cp1SdFPtW4pq5Lw2FGSYWW6Crnr3504Hj0W10_0d46CbZH_W8-HBD28HVTTkW2F9mQK32sfkTW3FLWsK19JPkhW3MQ1lR5X7CbRV6Z9tF5wT04rVwn70p6PvdcRW2VzMRk4LRwRsN8-G3Jvlkl8CW4V4b027z_kCDW2Zd_BF1MHsNYW3ywjF96_k7P1W6M6gG05qzvn-W41F7KZ4Db1QcN5g7tT-4VghbW3nCrDL2bxJk6W3ZL2M82j4gsdW6GQgCX1njbDCN2Vg3g-fsLBrN4MBKxPxWj04W4hTYTm4_HKgJW1pL0Pk7Rm0w3W9k8_zw5BmwTxW2RGgqD3tqn4WVqfbLr6yx4MDW7cyNSJ1ss5-JW5gx4wD3wkGmgW5SWj8V1dvcTPW8l1kLv7QhjKcW8HyBXt606-YTW3xCnj97FPhrTW70CBXf6rN35kW6xl5Dj8j5H4ZN59Cdybzf8CBVFd7jR7R5c3qW3hvzZk7jpr59W8lNnhD22ptJdW6Lw0n16sGsmhW5dGmbt4WkGWvVbj6zz65tgGkN1nDBR9hX-HkW3fSwQg74ZgV_W2D6ZgL5mk-zKW7phXVN9kpmNYW1_BYH63rC16PW2G6Gfs3cDS6MV9F1Zs4BKsP-VJzcnY50kKtFW6Yxvmg1xb-WPN5KZx62G62mPW5RJmJ_2BvZD2W1-nqhz6Fy7SlVFmXH33BVZdKW2M7NhB1S8dMkW4yz52j5JD9B9W5-B9R_4KQ7fbN3fVlwswDBHxW92JFwN9b8Yg6VXSf_p2bRBzhW1G5gh055Ct_QW5R4FWT7nD7x7W7Chzdk2N-vg-W2G71QP1Tr_vyW65Qbpj3DrZP5W4Yb_jX6H8-3KW4BmqYF6k76WbVyrg7p4Sv4HkW4707lL442SJbN8GZW2CT_tBWN69dn7h5mr1vW3xx5vl2fvhK6W9hRpkl7898Q2W7GkS315yQZbdW8-pkBM48xPKDN5hXhm15L98VW5Z9fT13YW2-8W8PJ__S36Rr3PW6v_mV13c3zwNW935XTC6S79VLW3pB2Cx7TZwhnW4sQYNH6Tfpw7VMRnth1NQNCqV7Mytm7SltwvW977vVP6jHYJJW8mGHDY8w_VKCN3Qrw7mhDR5cW2kP64g22X09pW4CyBgB5Rsxl1W6ZKSHd47fycGW38Z7WW2yF23ZV4Kx5Q5dDHs9W3T8tx16tFScBW6Npzg-7cgGfyW4_lZy44N5nk4W6SGTKN24Kl35W6MRlsh6GRQ-ff7ln0Xb04>\r\nEmail: ElizabethC@BradentonAreaEDC.com<mailto:ElizabethC@BradentonAreaEDC.com>\r\nPhone: 941-803-9033\r\nCell: 716-908-6134\r\nBradentonAreaEDC.com<https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3m-W76k8Rv54FzY3W63BPky6WGs-QW5x9xcn2NfXL4W6WZ3Kf3tQ4rBW8rpQNX1QTG8VW2LwzGK7SZC75VtGXvk6k9GT9W8_R1wR6qvv1tVZxx5_326Tw6W4qSM5g2_4MkkN5vNflCMwLm7W8VJgw58JF2KPW4QwYz-53l_yVW87Z2lm5MGqtmVFprTs65nwJNW1HgrpM2WL98PW59068W1F6XMSW2dz-8k8c7R2HW1cjHtb4rTWwNW8dVRgC88pgZwW6Hgq4K1yhmVwW6Kwqpb2Bp4B2f5Yb-8j04>\r\n\r\n[cid:image001.png@01DC3133.99C8F790]<https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3p6N2V5ClRxKDqNW3V0CSr411rHwW4x7Q1n6v5ZdtW4cdF5X3RzMvfN3w5BSZ52f8CW2zFgNV3rFVJWVf_mT94WtzmnW8mLvhS1nLhKDW3hrW3L7DGtrkW6f1z5k7krj7-W1XXnQg6Wh_X3W7mXkSC2vTWFCW3025hb5_BgrCW8ffjRp5C1sYRW5dysm_2s5QpyW4-SZ4q7PZLdQW1Wm7Fx6X3LDkW6SkmB91b9lpgW1NXsd942s_6TW6R9Q8z2Lq9PxVMCCbj8t7v1VW68WCqm5WcDWMf4YbV0n04>     [cid:image002.png@01DC3133.99C8F790] <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3p0N2tbrpLpv0zGW7lgZD_7HqXS2W7Jd7xc4dJgXKN65K13ssyhcGW1fPc3j1-ZmpHW5vPPQj59bXbYW8zGLn89khJMnTmbQR5RL0mmW998sHc1Q34SfW2cCtwm8TPCxTW8mmHts6WfZzzW4c-8RK2ZtTTnN97gzHT25CMhW4kHZrC4mP_MmW7GBX6V7fsB7lW763S8H4-B75VW6GPpV94lLVjYN7vgPntJc_yXVGpdvh4Y0fnVW1gHxYQ2LVJWZW3KNyWp8ttP1BW6dc5CJ28FqW4W538pMv5YxvS1W48lNdV9gdGWtf9cdRH804>      [cid:image003.png@01DC3133.99C8F790] <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jll2-6qcW7Y8-PT6lZ3nTW3Z-SV59jMkVmW5tgXqZ7JHKv9W4ryhR783rk1GW3rytz87Vr1JVW5L-RV_3cnmDSW5T4pm87tJWYdW7zSkxH14YDMBMjj18k9XZvwW6SYfHr202pR6W1RZpxp7l_6HNW4F07Xn71Gn7lW8z3PnX5Tv4WnW2zJ15F2w42bcW4Z5LSF4Qt3d4VxVp_W3m9T0yW3j_GcX5GKXJ_W18Q0MH19-LHnW6X0GSd45R9XdW77YQp57kCFBNW3MHX_s7xGlQqW626HPP4zs8v4Vsjz9T88r5xbW72BRLF2rK2syW7DRrXh2j3Jm0W1nDKCn4ts2QrW4SRBrq1zfk0Rf62LNJK04>      [cid:image004.png@01DC3133.99C8F790] <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3l_V7Pfrt92N5r-W2YmJbl7c3p1-W7j7WVL2wTZvSW6MZQCJ8HYd-gW6JPhtm6RqfNDW9jbBxJ7-Jd-YVsNGTT8dGlmcW3fcBc45cng-yN5VnGZPWjvpjVGq1f-8K3tShW15h05j8xp1K4W3DCNKS2TWsrNN7BnB85G4h_TW1FtG5_38_jg6Vf21332z2fZtW5kGtX361x5mzW6XGG0r6Jm879W7c705f1nH8kwW6Q-Scy8JHSrzW5bryNC6Wh-Q8W1GgG0q8RgscYW3F8n_n8DQjbqW1dycfw1RGYGmN7h9wpWcBB67f5tTjl-04>      [cid:image005.png@01DC3133.99C8F790] <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3nZW8GfHlt2TtYMTW4Jrnjn81y2kbW45KjmM7T-BZxW1LJXHS8K0nzzMXzDCxvNLyjW19W7D010M48dW12Ryjl7j7p-5N1gwPZxhBZKmW4vjqrB7drS7CW695LPr6J3fdZW9lh7yb60cC6xW2rPxxD9lbMs-W2wHTZ73DH-BRW1vq4qZ3x_GskN25j83LX3gBsW2S5-t76M9d7LW6lQzcX8tb5gyW6XB1R441_ywQW8N7WwT2snj40W960BCZ5pBRpMVSP-lk7bsNxtW87Tn5P5PnzS-d7nDZb04>\r\n\r\nFrom: Nathan Staron <Nathan@lithiumbatterycompany.com<mailto:Nathan@lithiumbatterycompany.com>>\r\nSent: Wednesday, September 24, 2025 5:47 PM\r\nTo: Elizabeth Cordes <elizabethc@bradentonareaedc.com<mailto:elizabethc@bradentonareaedc.com>>; Yanet Lopez <yanetl@bradentonareaedc.com<mailto:yanetl@bradentonareaedc.com>>\r\nCc: Kevin Campos <Kcampos@tampabayedc.com<mailto:Kcampos@tampabayedc.com>>; Brian Stufflebean <brian@mavrix.one<mailto:brian@mavrix.one>>; Rick Mislan <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSubject: Re: Introduction - Bradenton Area EDC\r\n\r\nGood Afternoon Elizabeth,\r\n\r\nThank you for your prompt response and for the kind welcome. It was a pleasure e-meeting you as well.\r\n\r\nI would like to introduce Brian Stufflebean and Rick Mislan, who are the project leads for our expansion into Parrish, FL. They will be instrumental in the development of our new location, and I believe it would be beneficial for them to connect with you directly.\r\n\r\nRegarding setting up a meeting, I agree that it would be valuable to discuss the project further. We would be happy to coordinate a time that works best for everyone next week. As you mentioned, Tuesday and Wednesday work well for you, and we can certainly align with that.\r\n\r\nPlease let us know what specific times on Tuesday or Wednesday next week would be most convenient for you and Yanet, and we will make sure to schedule a call or meeting accordingly. We look forward to the opportunity to collaborate.\r\n\r\n\r\n\r\n[https://app.customesignature.com/images/social/animation/4/web-icon.gif]<https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mQW5hlCW65stZ98W321SNk27pMfwW5dyd1R2SfzRkW5MZtyh3nMMhjW3-FMWX7H-C-vW2C-nd75TTqKNW4m_F606RQcShN5zVDNlxVfHXW41sPRg4z9170W4xCYyJ5glhH_W8BMRJF356C7_W1DjRVR804DPgW2D5Nn733vYT2W6RSkLk7nDRLQW6q0M2x2FYhcGN5vgZNDN5qDPW8DbCHf5qXv-ZThZx164g_LtW6n3YwK4MQLpqN1cBQwtD003vW14QgYq45FcDNW95vyf98TlbtBdJftdR04>\r\n[https://app.customesignature.com/images/social/animation/4/insta-icon.gif]<https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mXW4j41G14h5s88V5p3FB6gHZ-ZN3c0Hx2mcxLRW78Jyg86sjG8xN31YDR5y37J8W19LfG84Hb3LVW8PQ4vC6B1ZGpW85pHg4373x59W50SJlV1-dk-yW95KG1g4JStdSW3t3gnL8PSVr0W3M_RlT1cym2FW5yQJ5b8vxkGVVY0_Xy4mDnbLW4tL7vp3DqwqFW9dbhgs783WB_Vvv6m_4vZXs5W5sZ06B5m8h1TW85Mx1Z2jnXRPW8ygB4019Vgp-W7qBypL26HQL1W4w1z6g6LsZjkf3Zsp5T04>\r\n[https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif]<https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3kPW4J0YGH6pYc-pW5pN4gj6N1-nlN8bf8mYBd5hYW8g162g80pVGbW35XHjv30P8W1V1PXzF9cg7_PV9bmyn4L9vc6W92KGhc32Wh2BW2T02HX6-gMsqN1HBS6lD7k36W3Cmwd62Q_nd0W1tS6Y23F_hW5W1303bj92zGD-W4SsDwJ1PQgX1W8-P0zh8Z7FS8N77BCJ8YGNJzW8yblDc4zr5cLW7SsMhl8yJ7HfW2KmYrW2hNGwxW6bByXR4CyzbcN1r1R22XHpLzW20nSBq5yjYP0W8j9J1n8_YH9RW8ZsfVJ7kjbwfdcLDf604>\r\n[https://app.customesignature.com/images/social/animation/4/facebook-icon.gif]<https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3m_W6c9R_Q5mLnSyVCJkS45y4h6CN3kry02-Jt_9W642Vz23LDbwSW8l4M0V98zl9qVwncbk5Tmk56VQcXVL71k01-W7CCPvg1c2jwwW8pd1xV5zPdNCW2fN44w6GmR9MW8hp6-V2lrXMYW5lmTTf1nQFQ8W6Gt6xH2gqvsLW4ZDNRJ2QLhqQW8sqkk57htK8nW6Lrt6f5LnQPLVWbBKl566fV3W2DCGJv6TMyWvN6ZbcjkynYVsW6R2xH21m-HxRW5pLwRh8HrDZLW7j8Jgm3zs44XW7FcB5k7cZf3nN7LFp9rP86_jf3nLLkK04>\r\n[https://app.customesignature.com/images/social/animation/4/youtube-icon.gif]<https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3m1W1RnDgw4nX4s8N8-VdR1LJgzGW5QsF1F7vVSH9W48h1042HL2LDW36nqz46jq-d6W44lhVr582TWhW2Mv5Gc26kwdqW69j-cx4F7BJ_W3zRv2R8Ht8HpW8ddQJ08zg8dzW5DsNZQ4R2Mr3W7Qxj6V3KB4VmVdy5X078bJJhN8JjH_H8Xt_pW9gYK0Z44XbDzW7f-M5X7sDgplV5LMfj7NZ2hcW4_h57x2ttsDCF50SYjrhfpgW4GZ_d-1XRQfCN893sy_lT5XkW94fFYW6_vqM1W6wGGb649c4RjVNBl2J3ZQ90Jf3z2XHn04>\r\n\r\n[https://app.customesignature.com/upload/signature/11122/11122.png]<https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mQW5hlCW65stZ98W321SNk27pMfwW5dyd1R2SfzRkW5MZtyh3nMMhjW3-FMWX7H-C-vW2C-nd75TTqKNW4m_F606RQcShN5zVDNlxVfHXW41sPRg4z9170W4xCYyJ5glhH_W8BMRJF356C7_W1DjRVR804DPgW2D5Nn733vYT2W6RSkLk7nDRLQW6q0M2x2FYhcGN5vgZNDN5qDPW8DbCHf5qXv-ZThZx164g_LtW6n3YwK4MQLpqN1cBQwtD003vW14QgYq45FcDNW95vyf98TlbtBdJftdR04>\r\nNATHAN A. STARON\r\n[https://app.customesignature.com/images/verify.gif]\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074<tel:813-504-0074>\r\nPhone 844-GET-LITHIUM<tel:844-GET-LITHIUM>\r\nNathan@lithiumbatterycompany.com<mailto:Nathan@lithiumbatterycompany.com>\r\nSchedule A Zoom<https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3lDW2VLRlm7J62nHW7zjwsc2-Zyv0W52CBv366NwyHW7YmZ_q5d818kMbTZ8850bF7W1lp2yt4xYQckW35zwy918TsypW8fcMFW5F0BhvW5-Qlx32--mKTW7yYFpd4k1FWkW2q7-Qn76Fx1lW5-7yl-7VcRQJW82KTWk5P5m6bW7r4dLH2cfW5kW8Fw4S61Y_xTcW8sBVsc1tvjxdW4HkXTp8kWmTYW2NBgcx6y39JDW3KpvnJ2Kv-mzW8K75rL29tbxDN26qscbczTTdW6YDddy4g4RZrW31mF8s6hTNVqN2C5N65RDjVXf2jqhW-04>\r\n[https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg]\r\n[https://app.customesignature.com/upload/signature/gifs/giphyy-1.gif]\r\n\r\n\r\nOn Wed, Sep 24, 2025 at 3:54 PM Elizabeth Cordes <elizabethc@bradentonareaedc.com<mailto:elizabethc@bradentonareaedc.com>> wrote:\r\nHi Kevin,\r\n\r\nThank you very much for the introduction! It is a pleasure to e-meet you, Nathan. I would very much like to set up a call or meeting to discuss your project further. Please let me know a day and time that would work best for you. We have good availability Tuesday and Wednesday next week. I look forward to working with you.\r\n\r\nKindest regards,\r\n\r\nElizabeth Cordes\r\nDirector of Business Recruitment & Expansion\r\nBradenton Area Economic Development Corporation\r\n5840 26th Street West, 26 West Center, Suite 232, Bradenton, FL 34207<https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkMgQprkW6N3_xK6lZ3nwW1S-NPm50p7sBN5f0h3dq66mwW2GjSSw8RL3CVW33xj8Y6ZhQnFW8B_6mK8qmplbW5WwK0G2G_YVjW53D6_Y5Lk4fvVmQ8Vw8LF52TW6SWrYl61h3rKW88LMvF2-kzyzW5KGNsg8xdCxqW7SHJmB1mjN5vW2rlG897WMDzPW1BBKw92tpVTKVlKvg21tHf5qW4jvFnR5gVsT3MQr1RZRJmQDV2qYRZ2DbLGtW8Y0zjf1lyTzKW8n51Cp1SdFPtW4pq5Lw2FGSYWW6Crnr3504Hj0W10_0d46CbZH_W8-HBD28HVTTkW2F9mQK32sfkTW3FLWsK19JPkhW3MQ1lR5X7CbRV6Z9tF5wT04rVwn70p6PvdcRW2VzMRk4LRwRsN8-G3Jvlkl8CW4V4b027z_kCDW2Zd_BF1MHsNYW3ywjF96_k7P1W6M6gG05qzvn-W41F7KZ4Db1QcN5g7tT-4VghbW3nCrDL2bxJk6W3ZL2M82j4gsdW6GQgCX1njbDCN2Vg3g-fsLBrN4MBKxPxWj04W4hTYTm4_HKgJW1pL0Pk7Rm0w3W9k8_zw5BmwTxW2RGgqD3tqn4WVqfbLr6yx4MDW7cyNSJ1ss5-JW5gx4wD3wkGmgW5SWj8V1dvcTPW8l1kLv7QhjKcW8HyBXt606-YTW3xCnj97FPhrTW70CBXf6rN35kW6xl5Dj8j5H4ZN59Cdybzf8CBVFd7jR7R5c3qW3hvzZk7jpr59W8lNnhD22ptJdW6Lw0n16sGsmhW5dGmbt4WkGWvVbj6zz65tgGkN1nDBR9hX-HkW3fSwQg74ZgV_W2D6ZgL5mk-zKW7phXVN9kpmNYW1_BYH63rC16PW2G6Gfs3cDS6MV9F1Zs4BKsP-VJzcnY50kKtFW6Yxvmg1xb-WPN5KZx62G62mPW5RJmJ_2BvZD2W1-nqhz6Fy7SlVFmXH33BVZdKW2M7NhB1S8dMkW4yz52j5JD9B9W5-B9R_4KQ7fbN3fVlwswDBHxW92JFwN9b8Yg6VXSf_p2bRBzhW1G5gh055Ct_QW5R4FWT7nD7x7W7Chzdk2N-vg-W2G71QP1Tr_vyW65Qbpj3DrZP5W4Yb_jX6H8-3KW4BmqYF6k76WbVyrg7p4Sv4HkW4707lL442SJbN8GZW2CT_tBWN69dn7h5mr1vW3xx5vl2fvhK6W9hRpkl7898Q2W7GkS315yQZbdW8-pkBM48xPKDN5hXhm15L98VW5Z9fT13YW2-8W8PJ__S36Rr3PW6v_mV13c3zwNW935XTC6S79VLW3pB2Cx7TZwhnW4sQYNH6Tfpw7VMRnth1NQNCqV7Mytm7SltwvW977vVP6jHYJJW8mGHDY8w_VKCN3Qrw7mhDR5cW2kP64g22X09pW4CyBgB5Rsxl1W6ZKSHd47fycGW38Z7WW2yF23ZV4Kx5Q5dDHs9W3T8tx16tFScBW6Npzg-7cgGfyW4_lZy44N5nk4W6SGTKN24Kl35W6MRlsh6GRQ-ff7ln0Xb04>\r\nEmail: ElizabethC@BradentonAreaEDC.com<mailto:ElizabethC@BradentonAreaEDC.com>\r\nPhone: 941-803-9033\r\nCell: 716-908-6134\r\nBradentonAreaEDC.com<https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3m-W76k8Rv54FzY3W63BPky6WGs-QW5x9xcn2NfXL4W6WZ3Kf3tQ4rBW8rpQNX1QTG8VW2LwzGK7SZC75VtGXvk6k9GT9W8_R1wR6qvv1tVZxx5_326Tw6W4qSM5g2_4MkkN5vNflCMwLm7W8VJgw58JF2KPW4QwYz-53l_yVW87Z2lm5MGqtmVFprTs65nwJNW1HgrpM2WL98PW59068W1F6XMSW2dz-8k8c7R2HW1cjHtb4rTWwNW8dVRgC88pgZwW6Hgq4K1yhmVwW6Kwqpb2Bp4B2f5Yb-8j04>\r\n\r\n[cid:image001.png@01DC3133.99C8F790]<https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3p6N2V5ClRxKDqNW3V0CSr411rHwW4x7Q1n6v5ZdtW4cdF5X3RzMvfN3w5BSZ52f8CW2zFgNV3rFVJWVf_mT94WtzmnW8mLvhS1nLhKDW3hrW3L7DGtrkW6f1z5k7krj7-W1XXnQg6Wh_X3W7mXkSC2vTWFCW3025hb5_BgrCW8ffjRp5C1sYRW5dysm_2s5QpyW4-SZ4q7PZLdQW1Wm7Fx6X3LDkW6SkmB91b9lpgW1NXsd942s_6TW6R9Q8z2Lq9PxVMCCbj8t7v1VW68WCqm5WcDWMf4YbV0n04>     [cid:image002.png@01DC3133.99C8F790] <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3p0N2tbrpLpv0zGW7lgZD_7HqXS2W7Jd7xc4dJgXKN65K13ssyhcGW1fPc3j1-ZmpHW5vPPQj59bXbYW8zGLn89khJMnTmbQR5RL0mmW998sHc1Q34SfW2cCtwm8TPCxTW8mmHts6WfZzzW4c-8RK2ZtTTnN97gzHT25CMhW4kHZrC4mP_MmW7GBX6V7fsB7lW763S8H4-B75VW6GPpV94lLVjYN7vgPntJc_yXVGpdvh4Y0fnVW1gHxYQ2LVJWZW3KNyWp8ttP1BW6dc5CJ28FqW4W538pMv5YxvS1W48lNdV9gdGWtf9cdRH804>      [cid:image003.png@01DC3133.99C8F790] <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jll2-6qcW7Y8-PT6lZ3nTW3Z-SV59jMkVmW5tgXqZ7JHKv9W4ryhR783rk1GW3rytz87Vr1JVW5L-RV_3cnmDSW5T4pm87tJWYdW7zSkxH14YDMBMjj18k9XZvwW6SYfHr202pR6W1RZpxp7l_6HNW4F07Xn71Gn7lW8z3PnX5Tv4WnW2zJ15F2w42bcW4Z5LSF4Qt3d4VxVp_W3m9T0yW3j_GcX5GKXJ_W18Q0MH19-LHnW6X0GSd45R9XdW77YQp57kCFBNW3MHX_s7xGlQqW626HPP4zs8v4Vsjz9T88r5xbW72BRLF2rK2syW7DRrXh2j3Jm0W1nDKCn4ts2QrW4SRBrq1zfk0Rf62LNJK04>      [cid:image004.png@01DC3133.99C8F790] <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3l_V7Pfrt92N5r-W2YmJbl7c3p1-W7j7WVL2wTZvSW6MZQCJ8HYd-gW6JPhtm6RqfNDW9jbBxJ7-Jd-YVsNGTT8dGlmcW3fcBc45cng-yN5VnGZPWjvpjVGq1f-8K3tShW15h05j8xp1K4W3DCNKS2TWsrNN7BnB85G4h_TW1FtG5_38_jg6Vf21332z2fZtW5kGtX361x5mzW6XGG0r6Jm879W7c705f1nH8kwW6Q-Scy8JHSrzW5bryNC6Wh-Q8W1GgG0q8RgscYW3F8n_n8DQjbqW1dycfw1RGYGmN7h9wpWcBB67f5tTjl-04>      [cid:image005.png@01DC3133.99C8F790] <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3nZW8GfHlt2TtYMTW4Jrnjn81y2kbW45KjmM7T-BZxW1LJXHS8K0nzzMXzDCxvNLyjW19W7D010M48dW12Ryjl7j7p-5N1gwPZxhBZKmW4vjqrB7drS7CW695LPr6J3fdZW9lh7yb60cC6xW2rPxxD9lbMs-W2wHTZ73DH-BRW1vq4qZ3x_GskN25j83LX3gBsW2S5-t76M9d7LW6lQzcX8tb5gyW6XB1R441_ywQW8N7WwT2snj40W960BCZ5pBRpMVSP-lk7bsNxtW87Tn5P5PnzS-d7nDZb04>\r\n\r\nFrom: Kevin Campos <Kcampos@tampabayedc.com<mailto:Kcampos@tampabayedc.com>>\r\nSent: Wednesday, September 24, 2025 11:44 AM\r\nTo: Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Yanet Lopez <yanetl@bradentonareaedc.com<mailto:yanetl@bradentonareaedc.com>>; Elizabeth Cordes <elizabethc@bradentonareaedc.com<mailto:elizabethc@bradentonareaedc.com>>\r\nSubject: Introduction - Bradenton Area EDC\r\n\r\nHello Nathan,\r\n\r\nAs discussed, I wanted to connect to the EDC in Manatee County for your Parrish, FL location.\r\n\r\n@yanetl@bradentonareaedc.com<mailto:yanetl@bradentonareaedc.com> and @elizabethc@bradentonareaedc.com<mailto:elizabethc@bradentonareaedc.com> thanks for taking my call. Could you connect with Nathan Staron when you have a chance? I have included him on this email and they are expanding into that area.\r\n\r\nKevin Campos, FCWP\r\nECONOMIC DEVELOPMENT MANAGER\r\nTAMPA BAY ECONOMIC DEVELOPMENT COUNCIL\r\n101 E. Kennedy Blvd., Suite 2000, Tampa, FL 33602\r\nO: 813.518.2662 I M: 813.763.0307\r\nkcampos@tampabayedc.com<mailto:kcampos@tampabayedc.com>\r\n[cid:image006.png@01DC3133.99C8F790]\r\n\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-09-29 15:25:53','2025-12-09 19:29:15','2025-12-09 19:29:15','2025-12-09 19:29:15',NULL,NULL,NULL),
(807,4,' <BN7PR04MB42596995E4A5F2E5AA01DC1CA81BA@BN7PR04MB4259.namprd04.prod.outlook.com>',NULL,NULL,'Bradenton Area EDC/Lithium Battery Company Meeting','elizabethc@bradentonareaedc.com','Elizabeth Cordes','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Segoe UI\";\r\n	panose-1:2 11 5 2 4 2 4 2 2 3;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:#467886;\r\n	text-decoration:underline;}\r\nspan.me-email-text\r\n	{mso-style-name:me-email-text;}\r\nspan.me-email-text-secondary\r\n	{mso-style-name:me-email-text-secondary;}\r\nspan.EmailStyle20\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Calibri\",sans-serif;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div style=\"margin-bottom:.25in;overflow:hidden\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">________________________________________________________________________________</span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424;mso-ligatures:none\"><o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:9.0pt\">\r\n<p class=\"MsoNormal\"><span class=\"me-email-text\"><b><span style=\"font-size:18.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">Microsoft Teams</span></b></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<a href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\"><span style=\"font-size:10.5pt;color:#5B5FC7\">Need help?</span></a>\r\n<o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:4.5pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\"><a href=\"https://teams.microsoft.com/l/meetup-join/19%3ameeting_MDA5NmMzNTctNWQ4Mi00M2I5LWE0NmEtN2Q4NzhiZTkzZjcz%40thread.v2/0?context=%7b%22Tid%22%3a%22807d6b4d-8ba7-4de6-bb59-cce7ca883201%22%2c%22Oid%22%3a%22996d9f0b-cd57-4480-8be0-dc4de3fb7f7b%22%7d\" target=\"_blank\" title=\"Meeting join link\"><b><span style=\"font-size:15.0pt;color:#5B5FC7\">Join\r\n the meeting now</span></b></a> <o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:4.5pt\">\r\n<p class=\"MsoNormal\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">Meeting ID:\r\n</span></span><span class=\"me-email-text\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">290 449 908 249 8</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:.25in\">\r\n<p class=\"MsoNormal\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">Passcode:\r\n</span></span><span class=\"me-email-text\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">fh36FY7x</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:.25in\">\r\n<div class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<hr size=\"1\" width=\"100%\" align=\"center\">\r\n</span></div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">For organizers:\r\n</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\"><a href=\"https://teams.microsoft.com/meetingOptions/?organizerId=996d9f0b-cd57-4480-8be0-dc4de3fb7f7b&amp;tenantId=807d6b4d-8ba7-4de6-bb59-cce7ca883201&amp;threadId=19_meeting_MDA5NmMzNTctNWQ4Mi00M2I5LWE0NmEtN2Q4NzhiZTkzZjcz@thread.v2&amp;messageId=0&amp;language=en-US\" target=\"_blank\"><span style=\"font-size:10.5pt;color:#5B5FC7\">Meeting\r\n options</span></a> <o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:.25in;overflow:hidden\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">________________________________________________________________________________<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n</body>\r\n</html>','\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://teams.microsoft.com/l/meetup-join/19%3ameeting_MDA5NmMzNTctNWQ4Mi00M2I5LWE0NmEtN2Q4NzhiZTkzZjcz%40thread.v2/0?context=%7b%22Tid%22%3a%22807d6b4d-8ba7-4de6-bb59-cce7ca883201%22%2c%22Oid%22%3a%22996d9f0b-cd57-4480-8be0-dc4de3fb7f7b%22%7d>\r\nMeeting ID: 290 449 908 249 8\r\nPasscode: fh36FY7x\r\n________________________________\r\nFor organizers: Meeting options<https://teams.microsoft.com/meetingOptions/?organizerId=996d9f0b-cd57-4480-8be0-dc4de3fb7f7b&tenantId=807d6b4d-8ba7-4de6-bb59-cce7ca883201&threadId=19_meeting_MDA5NmMzNTctNWQ4Mi00M2I5LWE0NmEtN2Q4NzhiZTkzZjcz@thread.v2&messageId=0&language=en-US>\r\n________________________________________________________________________________',0,0,0,0,0,0,'2025-09-29 15:31:12','2025-12-09 19:29:15','2025-12-09 19:29:15','2025-12-09 19:29:15',NULL,NULL,NULL),
(808,4,'<10D27A18-3F3D-4653-B248-47F442837416@bavovna.ai>',NULL,NULL,'Re: Confirming','alm@bavovna.ai','Arthur McCallum','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\">thank you. yessir - its in my calendar.&nbsp;<br id=\"lineBreakAtBeginningOfMessage\"><div><br><blockquote type=\"cite\"><div>On Sep 29, 2025, at 12:33 PM, Rick &lt;rick@mavrix.one&gt; wrote:</div><br class=\"Apple-interchange-newline\"><div><meta charset=\"UTF-8\"><div id=\"bloop_customfont\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; margin: 0px;\">Hi Arthur,</div><div id=\"bloop_customfont\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; margin: 0px;\">Just confirming our call tomorrow at 11a.</div><div id=\"bloop_customfont\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; margin: 0px;\">Thanks again!</div><div id=\"bloop_customfont\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; margin: 0px;\">Rick</div><br style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><div id=\"bloop_sign_1759163582820399104\" class=\"bloop_sign\" style=\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"><div><br></div><div>Rick Mislan, PhD,&nbsp;</div><div>Founder, CTO</div><div><span id=\"cid:868BC10F-431E-4A67-8769-A899E5FDEAFA\">&lt;52AACA64-B468-4285-B5C4-838F6707FFCC&gt;</span></div><div><a href=\"https://mavrix1.com/\">https://mavrix1.com</a></div><div><br></div><div><font face=\"Helvetica\"><span style=\"font-size: 12px;\"><b><u>CONFIDENTIALITY NOTICE</u></b></span></font></div><div><font face=\"Helvetica\"><span style=\"font-size: 12px;\"><i>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</i></span></font></div><div><font face=\"Helvetica\"><span style=\"font-size: 12px;\"><i><br></i></span></font></div><div><font face=\"Helvetica\"><span style=\"font-size: 12px;\"><i>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</i></span></font></div><div><font face=\"Helvetica\"><span style=\"font-size: 12px;\"><i><br></i></span></font></div><div><font face=\"Helvetica\"><span style=\"font-size: 12px;\"><i>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</i></span></font></div></div></div></blockquote></div><br></body></html>','thank you. yessir - its in my calendar. \r\n\r\n> On Sep 29, 2025, at 12:33 PM, Rick <rick@mavrix.one> wrote:\r\n> \r\n> Hi Arthur,\r\n> Just confirming our call tomorrow at 11a.\r\n> Thanks again!\r\n> Rick\r\n> \r\n> \r\n> Rick Mislan, PhD, \r\n> Founder, CTO\r\n> <52AACA64-B468-4285-B5C4-838F6707FFCC>\r\n> https://mavrix1.com <https://mavrix1.com/>\r\n> \r\n> CONFIDENTIALITY NOTICE\r\n> This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n> \r\n> If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n> \r\n> Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.',0,0,0,0,0,0,'2025-09-29 16:58:15','2025-12-09 19:29:16','2025-12-09 19:29:16','2025-12-09 19:29:16',NULL,NULL,NULL),
(809,4,'<01000199966998c5-0e149ce5-56bd-4808-89b7-b8790f8ee14a-000000@email.amazonses.com>',NULL,NULL,'=?UTF-8?Q?Get_ready_for_Prime_Big_Deal_Days_on_October_7=E2=80=938?=','no-reply@business.amazon.com','Amazon Business','<!doctype html>\r\n<html lang=\"en-US\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\">\r\n <head>\r\n  <title>Get ready for Prime Big Deal Days on October 7–8</title><!--[if !mso]><!-- -->\r\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><!--<![endif]-->\r\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\r\n  <style type=\"text/css\">#outlook a { padding:0; }           body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block; }</style><!--[if mso]>                    <xml>                      <o:OfficeDocumentSettings xmlns:o=\"urn:schemas-microsoft-com:office:office\">                    <o:AllowPNG/>                          <o:PixelsPerInch>96</o:PixelsPerInch>                      </o:OfficeDocumentSettings>                   <w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\">               <w:DontUseAdvancedTypographyReadingMail/>             </w:WordDocument>                  </xml>                        <style type=\"text/css\">             table { border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt; }             .mj-outlook-group-fix { width:100% !important; }           </style>                  <![endif]--><!--[if !mso]><!-->\r\n  <link href=\"https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <link href=\"https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <style type=\"text/css\">@import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);</style><!--<![endif]-->\r\n  <style type=\"text/css\">@media only screen and (min-width:641px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-52 { width:52% !important; max-width: 52%; } .mj-column-per-48 { width:48% !important; max-width: 48%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }</style>\r\n  <style type=\"text/css\">.movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                .links-FFFFFF-underline-bold a { color: #FFFFFF; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .mso-button-dark-mode a {background: transparent !important;} .links-161D26-underline a { color: #161D26; text-decoration: underline; } .links-161D26 a { color: #161D26; text-decoration: none; } .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:641px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-165px { max-width: 165px !important} .padding-5px-24px-24px-40px { padding: 5px 24px 24px 40px !important} .padding-0px-32px-0px-0px { padding: 0px 32px 0px 0px !important} .font-size-36px { font-size: 36px !important} .padding-30px-0px-20px-0px { padding: 30px 0px 20px 0px !important} .padding-0px-40px-0px-0px { padding: 0px 40px 0px 0px !important} .max-width-276px { max-width: 276px !important} .padding-12px-40px-12px-40px { padding: 12px 40px 12px 40px !important} .padding-20px-40px-0px-40px { padding: 20px 40px 0px 40px !important} .font-size-18px { font-size: 18px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .font-size-20px { font-size: 20px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }</style>\r\n  <style type=\"text/css\">ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 641px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}</style><!--[if mso]>             <style>                 .hide-on-mobile {display:block !important}             </style>         <![endif]--><!--[if mso]>                 <style>                              .mso-font-size-36px { font-size: 36px !important; } .mso-font-size-18px { font-size: 18px !important; } .mso-font-size-20px { font-size: 20px !important; }                 </style>             <![endif]-->\r\n  <style>[class~=\"x_body\"] { width: 99.9% }               @supports(--css:variables) {                         td[style*=\"border-radius\"] { -webkit-filter: drop-shadow(0 0 1px transparent); }             }</style>\r\n </head>\r\n <body style=\"word-spacing:normal;background-color:#FFFFFF;\" class=\"body\" id=\"body\">\r\n  <div>\r\n   <p><img alt=\"\" src=\"http://elinks.business.amazon.com/CI0/01000199966998c5-0e149ce5-56bd-4808-89b7-b8790f8ee14a-000000/aDy3gH25rPk5SgNP5_9Iokpxs5_aVlTaBj71KMVAm3U=424\" style=\"display: none; width: 1px; height: 1px;\">\r\n</p>\r\n  </div><!--[if !mso 9]><!-->\r\n  <div id=\"emailPreHeader\" style=\"display: none;\">\r\n   Shop early deals\r\n  </div>\r\n  <div style=\"display: none;\">\r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  </div><!--<![endif]-->\r\n  <div style=\"background-color:#FFFFFF;background-position:center center;background-size:auto;background-repeat:repeat;\" id=\"main\">\r\n   <!--[if mso]>\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><![endif]--><!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:16px 16px 14px 16px;text-align:center;vertical-align:top;mso-padding-alt:14px 0px 14px 40px;\" class=\"block-grid padding-14px-0px-14px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:600px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n              <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:middle;width:300px;\" ><![endif]-->\r\n              <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n               <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n                <tbody>\r\n                 <tr>\r\n                  <td class=\"padding-0px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 0px 0px;word-break:break-word;mso-padding-alt:0px 0px 0px 0px;text-align:left;\">\r\n                   <div style=\"margin:0 auto 0 0;max-width:80%;\" class=\"max-width-165px\">\r\n                    <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%3Fref_=b2b_sow_e_events_hve_abpbdd25_250929/1/01000199966998c5-0e149ce5-56bd-4808-89b7-b8790f8ee14a-000000/H1YkpX0aQ_EJtQfTtg3cqMyC3KzqMg3SlICuFhlWoD4=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business\" height=\"auto\" width=\"165\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-2color2x.png\" style=\"border:none;border-radius:0px;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                   </div></td>\r\n                 </tr>\r\n                </tbody>\r\n               </table>\r\n              </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:middle;width:300px;\" ><![endif]-->\r\n              <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n               <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n                <tbody>\r\n                 <tr>\r\n                  <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                   <div style=\"line-height:0px;height:0px;mso-line-height-alt:0px;\">\r\n                    &nbsp;\r\n                   </div></td>\r\n                 </tr>\r\n                </tbody>\r\n               </table>\r\n              </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:32px 16px 24px 16px;text-align:center;vertical-align:top;mso-padding-alt:5px 24px 24px 40px;\" class=\"block-grid padding-5px-24px-24px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:299.52px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-52 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td style=\"border-radius:0px;vertical-align:top;padding:0px 0px 20px 0px;mso-padding-alt:0px 32px 0px 0px;\" class=\"padding-0px-32px-0px-0px\">\r\n                  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                   <tbody>\r\n                    <tr>\r\n                     <td class=\"padding-30px-0px-20px-0px text-container\" style=\"font-size:0px;padding:32px 0px 20px 0px;word-break:break-word;mso-padding-alt:30px 0px 20px 0px;text-align:left;\">\r\n                      <div class=\"links-FFFFFF-underline-bold\">\r\n                       <div style=\"font-family:\'Ember Modern Display\', Arial, sans-serif;font-size:28px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:2.688em;color:#161D26;\" class=\"mso-font-size-36px font-size-36px\">\r\n                        <p style=\"margin: 0;\">One week until Prime Big Deal Days</p>\r\n                       </div>\r\n                      </div></td>\r\n                    </tr>\r\n                    <tr>\r\n                     <td valign=\"middle\" class=\"padding-0px-40px-0px-0px button-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;mso-padding-alt:0px 40px 0px 0px;text-align:left;\">\r\n                      <div>\r\n                       <!--[if mso]>\r\n<table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\">\r\n<tr>\r\n<td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_hve_abpbdd25_250929%26return_to=%2Fprimebigdealdays/1/01000199966998c5-0e149ce5-56bd-4808-89b7-b8790f8ee14a-000000/WAlZQDvYGLTS96wDGanBjVcHJdUuSFujEmqecTdy0P4=424\" fillcolor=\"#FFD814\" arcsize=\"58%\" style=\"v-text-anchor:middle;width:125.25pt;height:32.25pt;\" stroke=\"f\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_hve_abpbdd25_250929%26return_to=%2Fprimebigdealdays/1/01000199966998c5-0e149ce5-56bd-4808-89b7-b8790f8ee14a-000000/WAlZQDvYGLTS96wDGanBjVcHJdUuSFujEmqecTdy0P4=424\" style=\"display: inline-block; background: #FFD814; color: #161D26; font-family: \'Amber Ember\', Arial, sans-serif; font-size: 16px; font-weight: normal; line-height: 1.2; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 12px 24px 12px 24px; mso-padding-alt: 0px; border-radius: 25px; border-left: 0 none #FFFFFF; border-right: 0 none #FFFFFF; border-top: 0 none #FFFFFF; border-bottom: 0 none #FFFFFF; mso-border-alt: none; box-sizing: border-box;\" target=\"_blank\" width=\"167\">Shop early deals </a><!--[if mso]></center></a:textbox></a:roundrect>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                      </div></td>\r\n                    </tr>\r\n                   </tbody>\r\n                  </table></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:276.48px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-48 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\">\r\n                  <div style=\"margin:0 auto;\" class=\"max-width-276px\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_hve_abpbdd25_250929%26return_to=%2Fprimebigdealdays/2/01000199966998c5-0e149ce5-56bd-4808-89b7-b8790f8ee14a-000000/gw1l4VvCBsiU9RVCbSMWL_hrXyYdWZD1S6zpFCSipd0=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon smile boxes stacked on blue pedestals with office supplies, plants, and books create a modern workspace scene.\" height=\"auto\" width=\"276\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/HVE/PBDD25/Email/US-EN_AB_PBDD25_P1_183_Email_Small_686x444.jpg\" style=\"border:none;border-radius:16px;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#F5F3EF;background-color:#F5F3EF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F5F3EF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:12px 16px 12px 16px;text-align:center;vertical-align:top;mso-padding-alt:12px 40px 12px 40px;\" class=\"block-grid padding-12px-40px-12px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                  <div class=\"links-161D26-underline\">\r\n                   <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:normal;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.375em;color:#222D3A;\">\r\n                    <p style=\"margin: 0;\">Prime Big Deal Days is October 7–8. Get ready to shop exclusive deals for Business Prime members.&nbsp;</p>\r\n                   </div>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3f4492e978609435.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=b6481f9c-b8a3-4219-bc3b-70d294a80231&amp;mi_campaignId=7698983159&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=1&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=b6481f9c-b8a3-4219-bc3b-70d294a80231&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250929\">\r\n                  </div></td>\r\n                </tr>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=b6481f9c-b8a3-4219-bc3b-70d294a80231%26mi_campaignId=7698983159%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=1%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=b6481f9c-b8a3-4219-bc3b-70d294a80231%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250929%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199966998c5-0e149ce5-56bd-4808-89b7-b8790f8ee14a-000000/5KcEqqIW6rrcZVr0Eb_MUHeOuNqsVQ2EGF8lXywd-jY=424\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=b6481f9c-b8a3-4219-bc3b-70d294a80231&amp;mi_campaignId=7698983159&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=1&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=b6481f9c-b8a3-4219-bc3b-70d294a80231&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250929\"></a>\r\n                  </div></td>\r\n                </tr>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=b6481f9c-b8a3-4219-bc3b-70d294a80231%26mi_campaignId=7698983159%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=2%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=b6481f9c-b8a3-4219-bc3b-70d294a80231%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250929%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199966998c5-0e149ce5-56bd-4808-89b7-b8790f8ee14a-000000/gtidPnntHuKdTGt5ppbWr-Hfbh17YhaRBvE9leT0Y7Y=424\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=b6481f9c-b8a3-4219-bc3b-70d294a80231&amp;mi_campaignId=7698983159&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=2&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=b6481f9c-b8a3-4219-bc3b-70d294a80231&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250929\"></a>\r\n                  </div></td>\r\n                </tr>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=b6481f9c-b8a3-4219-bc3b-70d294a80231%26mi_campaignId=7698983159%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=3%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=b6481f9c-b8a3-4219-bc3b-70d294a80231%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250929%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199966998c5-0e149ce5-56bd-4808-89b7-b8790f8ee14a-000000/IcfRJAJxsnUyN0x5nC28lbvA27kULR4Lgk978ad_lW0=424\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=b6481f9c-b8a3-4219-bc3b-70d294a80231&amp;mi_campaignId=7698983159&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=3&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=b6481f9c-b8a3-4219-bc3b-70d294a80231&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250929\"></a>\r\n                  </div></td>\r\n                </tr>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=b6481f9c-b8a3-4219-bc3b-70d294a80231%26mi_campaignId=7698983159%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=4%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=b6481f9c-b8a3-4219-bc3b-70d294a80231%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250929%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199966998c5-0e149ce5-56bd-4808-89b7-b8790f8ee14a-000000/ZURDbFVxGtidX4GL1_HOBDvu7aY_-nk3QbtxZnnFj48=424\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=b6481f9c-b8a3-4219-bc3b-70d294a80231&amp;mi_campaignId=7698983159&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=4&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=b6481f9c-b8a3-4219-bc3b-70d294a80231&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250929\"></a>\r\n                  </div></td>\r\n                </tr>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=b6481f9c-b8a3-4219-bc3b-70d294a80231%26mi_campaignId=7698983159%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=5%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=b6481f9c-b8a3-4219-bc3b-70d294a80231%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250929%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199966998c5-0e149ce5-56bd-4808-89b7-b8790f8ee14a-000000/glD2gNQQZftGffS5tFMM6Di803kYZFrFwniom0c9CZc=424\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=b6481f9c-b8a3-4219-bc3b-70d294a80231&amp;mi_campaignId=7698983159&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=5&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=b6481f9c-b8a3-4219-bc3b-70d294a80231&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250929\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <!--[if !mso]><!-->\r\n               <tbody>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3f4492e978609435.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=b6481f9c-b8a3-4219-bc3b-70d294a80231&amp;mi_campaignId=7698983159&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=1&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=b6481f9c-b8a3-4219-bc3b-70d294a80231&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250929\">\r\n                  </div></td>\r\n                </tr><!--<![endif]--><!--[if !mso]><!-->\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=b6481f9c-b8a3-4219-bc3b-70d294a80231%26mi_campaignId=7698983159%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=1%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=b6481f9c-b8a3-4219-bc3b-70d294a80231%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250929%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199966998c5-0e149ce5-56bd-4808-89b7-b8790f8ee14a-000000/xs4FCT5DML85Ia6r2NBOfqZU2d3PrAmPX--i2Nepk-c=424\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=b6481f9c-b8a3-4219-bc3b-70d294a80231&amp;mi_campaignId=7698983159&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=1&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=b6481f9c-b8a3-4219-bc3b-70d294a80231&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250929\"></a>\r\n                  </div></td>\r\n                </tr><!--<![endif]--><!--[if !mso]><!-->\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=b6481f9c-b8a3-4219-bc3b-70d294a80231%26mi_campaignId=7698983159%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=2%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=b6481f9c-b8a3-4219-bc3b-70d294a80231%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250929%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199966998c5-0e149ce5-56bd-4808-89b7-b8790f8ee14a-000000/6o7vqaFZi81y53gM-TVya1kyuEdRL9EZifnh36Tf82E=424\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=b6481f9c-b8a3-4219-bc3b-70d294a80231&amp;mi_campaignId=7698983159&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=2&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=b6481f9c-b8a3-4219-bc3b-70d294a80231&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250929\"></a>\r\n                  </div></td>\r\n                </tr><!--<![endif]--><!--[if !mso]><!-->\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=b6481f9c-b8a3-4219-bc3b-70d294a80231%26mi_campaignId=7698983159%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=3%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=b6481f9c-b8a3-4219-bc3b-70d294a80231%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250929%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199966998c5-0e149ce5-56bd-4808-89b7-b8790f8ee14a-000000/Aas_8zhmxxCROmHU7AOZ-j0wMBftWAAXmJwlfSMd7SI=424\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=b6481f9c-b8a3-4219-bc3b-70d294a80231&amp;mi_campaignId=7698983159&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=3&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=b6481f9c-b8a3-4219-bc3b-70d294a80231&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250929\"></a>\r\n                  </div></td>\r\n                </tr><!--<![endif]--><!--[if !mso]><!-->\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=b6481f9c-b8a3-4219-bc3b-70d294a80231%26mi_campaignId=7698983159%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=4%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=b6481f9c-b8a3-4219-bc3b-70d294a80231%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250929%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199966998c5-0e149ce5-56bd-4808-89b7-b8790f8ee14a-000000/y3KcwZg47z4LkjKKX3xNQv96SsFzd3TUDFA1EOl9T3o=424\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=b6481f9c-b8a3-4219-bc3b-70d294a80231&amp;mi_campaignId=7698983159&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=4&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=b6481f9c-b8a3-4219-bc3b-70d294a80231&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250929\"></a>\r\n                  </div></td>\r\n                </tr><!--<![endif]--><!--[if !mso]><!-->\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=b6481f9c-b8a3-4219-bc3b-70d294a80231%26mi_campaignId=7698983159%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=5%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=b6481f9c-b8a3-4219-bc3b-70d294a80231%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_events_hve_abpbdd25_250929%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199966998c5-0e149ce5-56bd-4808-89b7-b8790f8ee14a-000000/SBpwT2sBzCX-RT6xAzr330ZtH3eHxe2YubaFCXLoySw=424\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=b6481f9c-b8a3-4219-bc3b-70d294a80231&amp;mi_campaignId=7698983159&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=5&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=b6481f9c-b8a3-4219-bc3b-70d294a80231&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_events_hve_abpbdd25_250929\"></a>\r\n                  </div></td>\r\n                </tr><!--<![endif]-->\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 0px 40px;\" class=\"block-grid padding-20px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-161D26\">\r\n                  <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.375em;color:#161D26;\" class=\"mso-font-size-18px font-size-18px\">\r\n                   <p style=\"margin: 0;\"><span>Find more ways to save</span></p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\">\r\n             <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"line-height:0;font-size:0;direction:ltr;\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n                 <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n                  <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:280px;\" ><![endif]-->\r\n                  <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:50%;\">\r\n                   <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                    <tbody>\r\n                     <tr>\r\n                      <td style=\"border-radius:0px;vertical-align:top;padding:0px 8px 12px 0px;mso-padding-alt:0px 8px 12px 0px;\">\r\n                       <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                        <tbody>\r\n                         <tr>\r\n                          <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:left;\">\r\n                           <div style=\"margin:0 auto 0 0;max-width:272px;\">\r\n                            <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_hve_abpbdd25_250929%26return_to=%2Fab%2Fbusiness-discounts/1/01000199966998c5-0e149ce5-56bd-4808-89b7-b8790f8ee14a-000000/Mye9NFHzKQ5A27R8ak9iXs5sLW_b82l8IRKopufFsEc=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Business Savings Guide icon\" height=\"auto\" width=\"272\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/HVE/PD25/US-EN/Offsite/Email/US-EN_AB_PD25_AdHoc_002_Email_Small_Image_BSG_400x267.jpg\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                           </div></td>\r\n                         </tr>\r\n                         <tr>\r\n                          <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                           <div class=\"links-161D26\">\r\n                            <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                             <p style=\"margin: 0;\">Business Savings Guide</p>\r\n                            </div>\r\n                           </div></td>\r\n                         </tr>\r\n                         <tr>\r\n                          <td class=\"text-container\" style=\"font-size:0px;padding:5px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                           <div class=\"links-007185-bold\">\r\n                            <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.188em;color:#222D3A;\">\r\n                             <p style=\"margin: 0;\">Save on business-only prices on thousands of items.&nbsp;</p>\r\n                            </div>\r\n                           </div></td>\r\n                         </tr>\r\n                        </tbody>\r\n                       </table></td>\r\n                     </tr>\r\n                    </tbody>\r\n                   </table>\r\n                  </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:280px;\" ><![endif]-->\r\n                  <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:50%;\">\r\n                   <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                    <tbody>\r\n                     <tr>\r\n                      <td style=\"border-radius:3px;vertical-align:top;padding:0px 0px 12px 8px;mso-padding-alt:0px 0px 12px 8px;\">\r\n                       <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                        <tbody>\r\n                         <tr>\r\n                          <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:left;\">\r\n                           <div style=\"margin:0 auto 0 0;max-width:272px;\">\r\n                            <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_hve_abpbdd25_250929%26return_to=%2Fquantitydiscounts/1/01000199966998c5-0e149ce5-56bd-4808-89b7-b8790f8ee14a-000000/XKlXJFcuTLkEwxl5sAi2wtLxChEY5A1Is-kjf3CG5A0=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Quantity Discounts icon\" height=\"auto\" width=\"272\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/HVE/PD25/US-EN/Offsite/Email/US-EN_AB_PD25_AdHoc_001_Email_Small_Image_QD_400x267.jpg\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                           </div></td>\r\n                         </tr>\r\n                         <tr>\r\n                          <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                           <div class=\"links-161D26\">\r\n                            <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                             <p style=\"margin: 0;\">Quantity Discounts</p>\r\n                            </div>\r\n                           </div></td>\r\n                         </tr>\r\n                         <tr>\r\n                          <td class=\"text-container\" style=\"font-size:0px;padding:5px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                           <div class=\"links-007185-bold\">\r\n                            <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.188em;color:#161D26;\">\r\n                             <p style=\"margin: 0;\">Explore volume discounts that give you the lowest price per unit.</p>\r\n                            </div>\r\n                           </div></td>\r\n                         </tr>\r\n                        </tbody>\r\n                       </table></td>\r\n                     </tr>\r\n                    </tbody>\r\n                   </table>\r\n                  </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                 </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n               </tr>\r\n              </tbody>\r\n             </table></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F7F7F7;background-color:#F7F7F7;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F7F7F7;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><!--[if !mso]><!-- --><p style=\"border-top:solid 1px #D5D9D9;font-size:1px;margin:0 auto;width:100%;text-align:center;\"></p><!--<![endif]--><!--Divider--><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-top:solid 1px #D5D9D9;font-size:1px;margin:0 auto;width:640px;text-align:center;\" role=\"presentation\" width=\"640px\" >\r\n<tr>\r\n<td style=\"height:0;line-height:0;\"> &nbsp; </td>\r\n</tr>\r\n</table><![endif]--></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F5F3EF;background-color:#F5F3EF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F5F3EF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-161D26-underline\">\r\n                  <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#222D3A;\">\r\n                   <p style=\"margin: 0;\">Please note that product prices and availability are subject to change. Prices and availability were accurate at the time this email was sent. However, they may differ from those you see when you visit Amazon.com.</p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#161D26;background-color:#161D26;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#161D26;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\">\r\n            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n             <tbody>\r\n              <tr>\r\n               <td style=\"line-height:0;font-size:0;direction:rtl;\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:252px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-45 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-align-right social-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\"><!--[if mso | IE]>\r\n<table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" >\r\n<tr>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.facebook.com%2FAmazonBusiness%2F%3Fref_=b2b_sow_e_events_hve_abpbdd25_250929/1/01000199966998c5-0e149ce5-56bd-4808-89b7-b8790f8ee14a-000000/Gg2tabKCBaU_Qtio-gLQHuJ8_5T1i6lfdyLJzuPP8d0=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Facebook\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Facebook-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Ftwitter.com%2FAmazonBusiness%3Fref_=b2b_sow_e_events_hve_abpbdd25_250929/1/01000199966998c5-0e149ce5-56bd-4808-89b7-b8790f8ee14a-000000/kcKyElRrIw59D0F5A_IP2qaGKRlxRfyHG7RMHQVXrf4=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Twitter\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Twitter-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.linkedin.com%2Fcompany%2Famazon-business%2F%3Fref_=b2b_sow_e_events_hve_abpbdd25_250929/1/01000199966998c5-0e149ce5-56bd-4808-89b7-b8790f8ee14a-000000/4rXomYCmZZ1kVoCAhPavQxEDZ2RntzYmWLVLzO4x3-k=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Linkedin\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-LinkedIn-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"padding-10px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 20px 0px;word-break:break-word;mso-padding-alt:10px 0px 0px 0px;text-align:right;\">\r\n                     <div style=\"margin:0 auto 0 0;max-width:163px;\" class=\"margin-0-0-0-auto\">\r\n                      <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2F%3Fref_=b2b_sow_e_events_hve_abpbdd25_250929%26ref_=b2b_sow_e_events_hve_abpbdd25_250929/1/01000199966998c5-0e149ce5-56bd-4808-89b7-b8790f8ee14a-000000/Hpzz-N9_FMYu8WBIWA9Wzll8o55PyIq1Ghc761JRB4s=424\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business logo\" height=\"auto\" width=\"163\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-white2x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:308px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-55 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Fen%2Fcontact-us%3Fref_=b2b_sow_e_events_hve_abpbdd25_250929/1/01000199966998c5-0e149ce5-56bd-4808-89b7-b8790f8ee14a-000000/z-NENMOzA0OOawMZhp1a7B_uhcEfKwvIEFQV6KNbuOo=424\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">Contact us</a> | <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fab%2Fmanage%2Faccount%2F%3Fref_=b2b_sow_e_events_hve_abpbdd25_250929/1/01000199966998c5-0e149ce5-56bd-4808-89b7-b8790f8ee14a-000000/gedmrbkPT6LOkoo6UftKvkZC_LuLNefQGp4Jnl294Is=424\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">Manage account</a></p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\">If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Femail-preferences%2Fep%2F8rKlkfaBjpyv*km4SH6wN2KAJy0IhTfXdx1FKRgS%2BOO0rBmi0pwEJtVY0w==%2F7698983159%2FW9PqYyB2DW5aMbGawLh5RBUgq1G23jpt%2Bs*YA*GcvL79aKvPIk33T8v7T1HByob6b7DE010D8E1sUKdfwh8g0IR9Sy495xnLRM436ILMjNgOAKTxTRKcgGqtpQ6LRYC7FTQHqwa7GWcI5R6p6ZSDmeCTRhl0FVFPUSkojeW9Xz4BavewjSUtr8%2BTPJh1M7Do5%2BH9Sp4JPgJf1FcPIJEu26xFUGahoFpHhlptnA0XoLjZS3p58O*yWgUGpf9aaI0Y0DCajjve8Lzysshm9HEoVW7gM4INyPhXZfA2KN44o6MqU*0vY6UnnR7X7eMWNxSRg52REuaY1vTNtFJHMJq8oUB1s2oCiNWPib2H*RK0Qraw9mdgDr8=%2FY*nO0VWKXizCFyDxfwmlcoKDN6Dc8YbAa6Is9p0D7*FS%3Fref_=b2b_sow_e_events_hve_abpbdd25_250929/1/01000199966998c5-0e149ce5-56bd-4808-89b7-b8790f8ee14a-000000/FKF-pEqpKkxtc7dOp2C0Q2Y-lnEXBDIaaeruCzBsqQE=424\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">email preferences</a>.</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 30px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\">© 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210</p>\r\n                       <p style=\"margin: 0;\">&nbsp;</p>\r\n                       <p style=\"margin: 0;\">Reference: 7698983159</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n              </tr>\r\n             </tbody>\r\n            </table></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--><!--[if mso]>\r\n</table><![endif]-->\r\n  </div>\r\n </body>\r\n</html>\r\n','\r\n\r\n \r\n  Get ready for Prime Big Deal Days on October 7–8\r\n  \r\n  \r\n  \r\n  #outlook a { padding:0; }           body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block; }\r\n  \r\n  \r\n  @import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);\r\n  @media only screen and (min-width:641px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-52 { width:52% !important; max-width: 52%; } .mj-column-per-48 { width:48% !important; max-width: 48%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }\r\n  .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                .links-FFFFFF-underline-bold a { color: #FFFFFF; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .mso-button-dark-mode a {background: transparent !important;} .links-161D26-underline a { color: #161D26; text-decoration: underline; } .links-161D26 a { color: #161D26; text-decoration: none; } .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:641px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-165px { max-width: 165px !important} .padding-5px-24px-24px-40px { padding: 5px 24px 24px 40px !important} .padding-0px-32px-0px-0px { padding: 0px 32px 0px 0px !important} .font-size-36px { font-size: 36px !important} .padding-30px-0px-20px-0px { padding: 30px 0px 20px 0px !important} .padding-0px-40px-0px-0px { padding: 0px 40px 0px 0px !important} .max-width-276px { max-width: 276px !important} .padding-12px-40px-12px-40px { padding: 12px 40px 12px 40px !important} .padding-20px-40px-0px-40px { padding: 20px 40px 0px 40px !important} .font-size-18px { font-size: 18px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .font-size-20px { font-size: 20px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }\r\n  ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 641px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}\r\n  [class~=\"x_body\"] { width: 99.9% }               @supports(--css:variables) {                         td[style*=\"border-radius\"] { -webkit-filter: drop-shadow(0 0 1px transparent); }             }\r\n \r\n \r\n  \r\n   \r\n\r\n  \r\n  \r\n   Shop early deals\r\n  \r\n  \r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  \r\n  \r\n   \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                   \r\n                 \r\n                \r\n               \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    &nbsp;\r\n                   \r\n                 \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        One week until Prime Big Deal Days\r\n                       \r\n                      \r\n                    \r\n                    \r\n                     \r\n                      \r\n                        Shop early deals \r\n                      \r\n                    \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    Prime Big Deal Days is October 7–8. Get ready to shop exclusive deals for Business Prime members.&nbsp;\r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   Find more ways to save\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                           \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             Business Savings Guide\r\n                            \r\n                           \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             Save on business-only prices on thousands of items.&nbsp;\r\n                            \r\n                           \r\n                         \r\n                        \r\n                       \r\n                     \r\n                    \r\n                   \r\n                  \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                           \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             Quantity Discounts\r\n                            \r\n                           \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             Explore volume discounts that give you the lowest price per unit.\r\n                            \r\n                           \r\n                         \r\n                        \r\n                       \r\n                     \r\n                    \r\n                   \r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   Please note that product prices and availability are subject to change. Prices and availability were accurate at the time this email was sent. However, they may differ from those you see when you visit Amazon.com.\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       Contact us | Manage account\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your email preferences.\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       © 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210\r\n                       &nbsp;\r\n                       Reference: 7698983159\r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n   \r\n  \r\n \r\n\r\n',0,0,0,0,0,0,'2025-09-29 16:58:46','2025-12-09 19:29:16','2025-12-09 19:29:16','2025-12-09 19:29:16',NULL,NULL,NULL),
(810,4,'<FA4ABE76-8644-4A26-8082-60F14C1896B9@mavrix.one>',NULL,NULL,'Resumes of Consultants - Robert Raun and Kara Trem','Brian@mavrix.one','Brian Stufflebean','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=us-ascii\"></head><body style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"><div><span></span><meta charset=\"UTF-8\"><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br class=\"Apple-interchange-newline\"><br class=\"Apple-interchange-newline\"><a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a href=\"https://mavrix1.com\">https://mavrix1.com/</a></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family: Helvetica; font-style: normal; font-weight: 400; font-size: 12px;\">&nbsp;This&nbsp;communication&nbsp;is confidential&nbsp;and&nbsp;intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, or&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any such&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this communication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the&nbsp;message to inform him or her of the&nbsp;error.<br><br></span></div>\r\n</div>\r\n\r\n<br></body></html>','Please find attached the two individuals I mentioned to you this morning, I know you have already been introduced to Bob. \r\n\r\nBoth would be brought in on a consulting basis. \r\n\r\n\r\n￼￼\r\n\r\n\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n￼\r\n\r\n\r\nbrian@mavrix.one <mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-09-29 19:26:48','2025-12-09 19:29:17','2025-12-09 19:29:17','2025-12-09 19:29:17',NULL,NULL,NULL),
(811,4,' <BY5PR03MB4966D308FB44838C6D355D61E01BA@BY5PR03MB4966.namprd03.prod.outlook.com>',NULL,NULL,'Re: Workinman Interactive','matt.conheady@workinman.com','Matthew Conheady','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nRick, Dan,&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"margin-top: 1em; margin-bottom: 1em; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nI thought you’d enjoy seeing this. Our technical art team put together some visuals for you. They compiled a scene in Unreal Engine, added some rough models of quads, points of interest, and placeholder UI, then tied it all together with basic physics and lighting.\r\n They captured screenshots of the real-time graphics to share.</div>\r\n<div style=\"margin-top: 1em; margin-bottom: 1em; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nThis should give you a clear idea of how great your simulator could look. It’s definitely a leap ahead of what’s currently out there.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<img style=\"max-width: 1231px;\" size=\"698625\" id=\"image_0\" data-outlook-trace=\"F:1|T:1\" src=\"cid:f3dbf4ef-e1fb-470c-bd88-afdb416e1f10\"></div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<img style=\"max-width: 1231px;\" size=\"978779\" id=\"image_1\" data-outlook-trace=\"F:1|T:1\" src=\"cid:2f7bf465-dd40-420f-9520-d67b35b34c2d\"></div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"margin-top: 1em; margin-bottom: 1em; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nI apologize for missing the last meeting. I was down with a rough case of the flu last week but am back in action now.</div>\r\n<div style=\"margin-top: 1em; margin-bottom: 1em; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nPlease don’t hesitate to reach out if you have any further questions or would like revisions or additional detail on our preliminary proposal.</div>\r\n<div style=\"margin-top: 1em; margin-bottom: 1em; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nOur next available kickoff window would be at the beginning of November. Let me know if you’d like to schedule a call to cover any new details or developments. I’m looking forward to our next discussion and to moving this forward.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" id=\"Signature\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nBest,</div>\r\n<div class=\"elementToProof\"><span style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 16px; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);\"><b>Matt Conheady</b></span><br>\r\n<span style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 16px; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);\">Owner | Executive Producer<b><br>\r\n<br>\r\n</b></span><span style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 16px; color: rgb(243, 144, 29); background-color: rgb(255, 255, 255);\"><b>WORKINMAN</b></span><br>\r\n<span style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 16px; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);\"><i>We Make Awesome Games &amp; Experiences</i></span><br>\r\n<span style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 16px; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);\">Office: 585-662-5800</span><br>\r\n<span style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 16px; color: rgb(118, 113, 113); background-color: rgb(255, 255, 255);\"><u><a style=\"margin: 0px;\" rel=\"noopener noreferrer\" class=\"ContentPasted0 OWAAutoLink\" id=\"OWA6ec5a2c6-114a-2cc9-e8ff-2a7396c8c4db\" target=\"_blank\" href=\"http://www.workinman.com/\">workinman.com</a></u></span>\r\n</div>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Thursday, August 14, 2025 7:55 PM<br>\r\n<b>To:</b> Matthew Conheady &lt;matt.conheady@workinman.com&gt;; dan@mavrix.one &lt;dan@mavrix.one&gt;<br>\r\n<b>Cc:</b> Jason Arena &lt;jason@workinman.com&gt;<br>\r\n<b>Subject:</b> Re: Workinman Interactive</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nHI guys,</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nI just wanted to say thank you for the quick turnaround on this.&nbsp;</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nDan and I will chat it out a bit and get back to you for next steps.</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nAlso, attached is the executed NDA.&nbsp;</div>\r\nThank you!<br>\r\n<div id=\"x_bloop_sign_1755215633784292096\" class=\"x_bloop_sign\"><br>\r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD,&nbsp;</span>\r\n<div style=\"font-family:Helvetica,Arial\">Founder, CTO</div>\r\n<div style=\"font-family:Helvetica,Arial\">\r\n<div>\r\n<div><img class=\"x_composer_internal_attach\" style=\"max-width:99%\" data-outlook-trace=\"F:1|T:1\" src=\"cid:847FB525-1CC5-4EA6-9FC1-3EDAA880C6D4\"><br>\r\n</div>\r\n<div><a href=\"https://mavrix1.com/\">https://mavrix1.com</a></div>\r\n</div>\r\n<div><br>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On August 14, 2025 at 6:17:18 PM, Matthew Conheady (<a href=\"mailto:matt.conheady@workinman.com\">matt.conheady@workinman.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick and Dan,</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nAttached is the <b>signed NDA</b>&nbsp;and <b>price/scope estimate for the MVP software</b>.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nThe estimate should serve as a solid starting point for refining the requirements and tightening up the schedule and budgets.&nbsp;</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nLet us know if you have any&nbsp;questions, would like to jump on a call to walk through it, or you can annotate the document as needed and send back for revisions or answers.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nWe are able to staff this as early as September. Let us know what your thoughts&nbsp;are as far as your overall schedule and we can work to align.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nBest,</div>\r\n<div class=\"x_elementToProof\" id=\"x_Signature\">\r\n<div class=\"x_elementToProof\"><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><b>Matt Conheady</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Owner | Executive Producer<b><br>\r\n<br>\r\n</b></span><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(243,144,29); background-color:rgb(255,255,255)\"><b>WORKINMAN</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><i>We Make Awesome Games &amp; Experiences</i></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Office: 585-662-5800</span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(118,113,113); background-color:rgb(255,255,255)\"><u><a rel=\"noopener noreferrer\" class=\"x_ContentPasted0\" target=\"_blank\" href=\"http://www.workinman.com/\" style=\"margin:0px\">workinman.com</a></u></span>\r\n</div>\r\n</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Wednesday, August 13, 2025 9:18 AM<br>\r\n<b>To:</b> Matthew Conheady &lt;matt.conheady@workinman.com&gt;<br>\r\n<b>Cc:</b> Jason Arena &lt;jason@workinman.com&gt;<br>\r\n<b>Subject:</b> Re: Workinman Interactive</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nSee attached NDA.</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nPlease fill in the first page, &nbsp;initial all pages, and sign the final page.</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks again,</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div class=\"x_x_bloop_sign\" id=\"x_x_bloop_sign_1755090962669144064\"><br>\r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD,&nbsp;</span>\r\n<div style=\"font-family:Helvetica,Arial\">Founder, CTO</div>\r\n<div style=\"font-family:Helvetica,Arial\"><img class=\"x_x_composer_internal_attach\" data-outlook-trace=\"F:2|T:2\" src=\"cid:D57C5E34-6271-41A7-9766-B2C06CC40710\"><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial\"><a href=\"https://mavrix1.com\">https://mavrix1.com</a></div>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial\"><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_airmail_on\">On August 12, 2025 at 4:16:50 PM, Matthew Conheady (<a href=\"mailto:matt.conheady@workinman.com\">matt.conheady@workinman.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick!&nbsp;</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nI was great talking with you and Dan last week. We have been working away on that initial concept and estimate document and should be ready to send that over to you on Thursday of this week. Did you want me to send that to you at this e-mail or other business\r\n e-mails for you and Dan?</div>\r\n<div class=\"x_x_elementToProof\" id=\"x_x_Signature\">\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\"><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><b>Matt Conheady</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Owner | Executive Producer<b><br>\r\n<br>\r\n</b></span><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(243,144,29); background-color:rgb(255,255,255)\"><b>WORKINMAN</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><i>We Make Awesome Games &amp; Experiences</i></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Office: 585-662-5800</span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(118,113,113); background-color:rgb(255,255,255)\"><u><a rel=\"noopener noreferrer\" class=\"x_x_ContentPasted0\" target=\"_blank\" href=\"http://www.workinman.com/\" style=\"margin:0px\">workinman.com</a></u></span>\r\n</div>\r\n</div>\r\n<div id=\"x_x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Matthew Conheady &lt;matt.conheady@workinman.com&gt;<br>\r\n<b>Sent:</b> Tuesday, August 5, 2025 4:27 PM<br>\r\n<b>To:</b> Rick Mislan , PhD &lt;rick@mislan.com&gt;<br>\r\n<b>Cc:</b> Jason Arena &lt;jason@workinman.com&gt;<br>\r\n<b>Subject:</b> Re: Workinman Interactive</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div dir=\"ltr\">\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n1pm on Friday works for us. Talk to you then!&nbsp;</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHere are the Zoom details</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n__________________________________________________________________________________________________________</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nMatthew (Workinman) is inviting you to a scheduled Zoom meeting.</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nTopic: Workinman - ROV Sim game discussion</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nTime: Aug 8, 2025 01:00 PM Eastern Time (US and Canada)</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nJoin Zoom Meeting</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nhttps://us02web.zoom.us/j/86189302441</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nMeeting ID: 861 8930 2441</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n---</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nOne tap mobile</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n+19292056099,,86189302441# US (New York)</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n+16469313860,,86189302441# US</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n---</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nDial by your location</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 929 205 6099 US (New York)</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 646 931 3860 US</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 312 626 6799 US (Chicago)</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 301 715 8592 US (Washington DC)</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 305 224 1968 US</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 309 205 3325 US</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 253 205 0468 US</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 253 215 8782 US (Tacoma)</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 346 248 7799 US (Houston)</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 360 209 5623 US</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 386 347 5053 US</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 507 473 4847 US</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 564 217 2000 US</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 669 444 9171 US</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 669 900 6833 US (San Jose)</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 689 278 1000 US</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n• +1 719 359 4580 US</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nMeeting ID: 861 8930 2441</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nFind your local number: https://us02web.zoom.us/u/kcTuOrpraw</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" id=\"x_x_x_Signature\">\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\"><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><b>Matt Conheady</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Owner | Executive Producer<b><br>\r\n<br>\r\n</b></span><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(243,144,29); background-color:rgb(255,255,255)\"><b>WORKINMAN</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><i>We Make Awesome Games &amp; Experiences</i></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Office: 585-662-5800</span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(118,113,113); background-color:rgb(255,255,255)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_ContentPasted0 x_x_x_OWAAutoLink\" id=\"OWAae5683bb-cb08-f59c-25dc-72b43fc3da4c\" href=\"http://www.workinman.com/\" style=\"margin:0px\">workinman.com</a></u></span></div>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" id=\"x_x_x_appendonsend\"></div>\r\n<hr style=\"display:inline-block; width:98%\">\r\n<div class=\"x_x_x_elementToProof\" id=\"x_x_x_divRplyFwdMsg\">\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Calibri,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Rick Mislan , PhD &lt;rick@mislan.com&gt;<br>\r\n<b>Sent:</b>&nbsp;Tuesday, August 5, 2025 12:06 PM<br>\r\n<b>To:</b>&nbsp;Matthew Conheady &lt;matt.conheady@workinman.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Workinman Interactive</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\">Can we jump on a call Friday at 1p?</div>\r\n<div class=\"x_x_x_elementToProof\">Sorry, I’ve been traveling<br>\r\nThank you!</div>\r\n<div class=\"x_x_x_elementToProof\"><br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\"><br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\nRick Mislan, PhD</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\n<a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWAb926f85d-8995-e578-02f7-00c5a0c5314d\" href=\"http://www.mislan.com/\">www.mislan.com</a></div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\n[tel://(585) 797-9473](585) 797-9473</div>\r\n<p class=\"x_x_x_elementToProof\" style=\"color:rgb(0,0,0)\">On July 29, 2025 at 12:25:04 PM, Matthew Conheady (<a class=\"x_x_x_OWAAutoLink\" id=\"OWA9135b577-cb32-d293-7115-130026341730\" href=\"mailto:matt.conheady@workinman.com\" style=\"margin-top:0px; margin-bottom:0px\">matt.conheady@workinman.com</a>)\r\n wrote:</p>\r\n<blockquote class=\"x_x_x_elementToProof\">\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick,&nbsp;</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nGood times this week for me are:</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nWednesday and Thursday&nbsp;</div>\r\n<ul data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:true}\" style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\" class=\"x_x_x_elementToProof\" style=\"direction:ltr\">12pm to 5:30pm EST</div>\r\n</li></ul>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nFriday Morning</div>\r\n<ul data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:true}\" style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\" class=\"x_x_x_elementToProof\" style=\"direction:ltr\">10 am to 1pm EST</div>\r\n</li></ul>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nAnd then next all week</div>\r\n<ul data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:true}\" style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\" class=\"x_x_x_elementToProof\" style=\"direction:ltr\">12pm to 5:30pm EST</div>\r\n</li></ul>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" id=\"x_x_x_x_Signature\">\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\"><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><b>Matt Conheady</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Owner | Executive Producer<b><br>\r\n<br>\r\n</b></span><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(243,144,29); background-color:rgb(255,255,255)\"><b>WORKINMAN</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><i>We Make Awesome Games &amp; Experiences</i></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Office: 585-662-5800</span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(118,113,113); background-color:rgb(255,255,255)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_x_ContentPasted0 x_x_x_OWAAutoLink\" id=\"OWAc5f6cf87-1dd5-4f90-51ba-907941554ee6\" href=\"http://www.workinman.com/\" style=\"margin:0px\">workinman.com</a></u></span></div>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" id=\"x_x_x_x_appendonsend\"></div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div class=\"x_x_x_elementToProof\" id=\"x_x_x_x_divRplyFwdMsg\">\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Calibri,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Rick Mislan , PhD &lt;rick@mislan.com&gt;<br>\r\n<b>Sent:</b>&nbsp;Monday, July 28, 2025 6:52 PM<br>\r\n<b>To:</b>&nbsp;Matthew Conheady &lt;matt.conheady@workinman.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Workinman Interactive</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nHey Matthew,</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nSorry for the delay, we are still very interested in working with you and had a bit of team building work this week on our larger projects.</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nThat all said, I’m going to introduce Dan Rugg to this conversation and re-engage with you next week if possible.</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nPlease send some dates and times that would work for us.</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nThank you,</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nRick</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\nRick Mislan, PhD</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\n<a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA29350824-5ea3-a319-9da2-d483eee53d35\" href=\"http://www.mislan.com/\">www.mislan.com</a></div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\n[tel://(585)%20797-9473](585) 797-9473</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr\">On July 28, 2025 at 5:28:15 PM, Matthew Conheady (<a class=\"x_x_x_OWAAutoLink\" id=\"OWAb072bba9-c1e3-a60f-1e5d-afd57b98fd8d\" href=\"mailto:matt.conheady@workinman.com\" style=\"margin-top:0px; margin-bottom:0px\">matt.conheady@workinman.com</a>)\r\n wrote:</p>\r\n<blockquote class=\"x_x_x_elementToProof\">\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHi Rick!</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nI\'m following up on our call in regards to game development for a ROV simulator game. We are still very much interested in working with you on this.&nbsp;</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nI was wondering if you had a chance to compile a high-level list of requirements, direction, and business goals for the first iteration of the simulator? We would need thit to begin crafting a proposal.</div>\r\n<div class=\"x_x_x_elementToProof\" id=\"x_x_x_x_x_Signature\">\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nLet me know if you\'d like to jump on another call to discuss.</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nBest,</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\"><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><b>Matt Conheady</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Owner | Executive Producer<b><br>\r\n<br>\r\n</b></span><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(243,144,29); background-color:rgb(255,255,255)\"><b>WORKINMAN</b></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\"><i>We Make Awesome Games &amp; Experiences</i></span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(0,0,0); background-color:rgb(255,255,255)\">Office: 585-662-5800</span><br>\r\n<span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:16px; color:rgb(118,113,113); background-color:rgb(255,255,255)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_x_x_ContentPasted0 x_x_x_OWAAutoLink\" id=\"OWAe0652585-aff6-f8e2-b792-59fd59872a68\" href=\"http://www.workinman.com/\" style=\"margin:0px\">workinman.com</a></u></span></div>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" id=\"x_x_x_x_x_appendonsend\"></div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div class=\"x_x_x_elementToProof\" id=\"x_x_x_x_x_divRplyFwdMsg\">\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Calibri,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Jason Arena &lt;jxafaa@rit.edu&gt;<br>\r\n<b>Sent:</b>&nbsp;Tuesday, June 24, 2025 8:52 AM<br>\r\n<b>To:</b>&nbsp;Rick Mislan PhD &lt;rick@mislan.com&gt;<br>\r\n<b>Cc:</b>&nbsp;Workinman Interactive &lt;opportunity@workinman.com&gt;; Matthew Conheady &lt;matt.conheady@workinman.com&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Workinman Interactive</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\">Hi Rick!</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\">Sounds awesome! I’m cc’ing Matt C on this. &nbsp;I’m free everyday after 11:00</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\">Sent from my iPhone</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<blockquote class=\"x_x_x_elementToProof\">\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\">On Jun 24, 2025, at 8:37 AM, Rick Mislan , PhD &lt;rick@mislan.com&gt; wrote:<br>\r\n<br>\r\n</div>\r\n</blockquote>\r\n<blockquote class=\"x_x_x_elementToProof\">\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\">﻿</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nJason,</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nCan we schedule a call next week?</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nI’m in a new venture where&nbsp;</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nthe investors wants to develop&nbsp;</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\na drone flight simulator game&nbsp;</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nspecifically for collecting user data</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nand using that to build better drone products…</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nPlease let me know&nbsp;</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nif we can jump on a zoom&nbsp;</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nthis week or next.</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nThanks much!</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:Helvetica,Arial; font-size:13px\">\r\nRick</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\nRick Mislan, PhD</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\n<a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA6c87ec94-1952-3d0f-3163-a49c2ea8d6e9\" href=\"http://www.mislan.com/\">www.mislan.com</a></div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; font-family:&quot;helvetica Neue&quot;,helvetica; font-size:14px\">\r\n[tel://(585)%20797-9473](585) 797-9473</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr\"><br>\r\n</div>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr\">On June 24, 2025 at 8:12:06 AM, Workinman Interactive (<a class=\"x_x_x_OWAAutoLink\" id=\"OWA75251578-8422-15f3-4521-cfe093e2b576\" href=\"mailto:opportunity@workinman.com\" style=\"margin-top:0px; margin-bottom:0px\">opportunity@workinman.com</a>)\r\n wrote:</p>\r\n<blockquote class=\"x_x_x_elementToProof\">\r\n<div class=\"x_x_x_elementToProof\" style=\"background-color:rgb(255,255,255)\">\r\n<div class=\"x_x_x_elementToProof\" align=\"center\" style=\"direction:ltr; font-size:10px\">\r\n<span style=\"color:rgb(114,114,114)\">If you are not able to see this mail, click </span>\r\n<span style=\"color:rgb(1,164,198)\"><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA65ff5b9b-4dd9-1a5a-3113-bc64d1b9f3b1\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/mr/sh/SMJz09SDriOHVCvERqqB8vSnidXk/eUSi5oqtsSF7\" style=\"color:rgb(1,164,198)\">here</a></span></div>\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; background-color:rgb(255,255,255); width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(255,255,255); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(255,255,255); padding-top:20px\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"center\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:200px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; line-height:0px\"><span style=\"font-size:0px; color:rgb(255,255,255); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA66f32bf9-a32c-4d9c-2a42-41eb144915da\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeFuBnDUbVMwIGP52LehM/cf8aWw6mA19H\" style=\"color:rgb(255,255,255)\"><img data-unique-identifier=\"\" title=\"Workinman Interactive\" style=\"width:100%; display:block\" src=\"https://ehfas.img.ag.d.sendibm3.com/im/sh/G1V7WqIQLpmT.png?u=7xwQLFBtniwQn1M9aigqYDKglLFmSkK\"></a></u></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"left\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1; padding-top:20px; padding-bottom:20px; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"font-size:24px; color:rgb(89,89,89)\">We Make Awesome Games &amp; Apps</span></h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:30px; padding-bottom:30px\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"font-size:24px; color:rgb(255,255,255)\">WHAT\'S NEW WITH WORKINMAN INTERACTIVE:</span></h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(255,255,255); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:10px; padding-bottom:10px\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"center\" style=\"direction:ltr; line-height:30px; height:30px\">\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; line-height:30px; font-size:30px\">\r\n<span style=\"font-weight:normal\">­</span></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(89,89,89); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1; padding-top:10px; padding-bottom:10px; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1; margin:0px; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"font-family:Arial; color:rgb(255,255,255)\">New North Carolina Zoo App</span></h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(255,255,255); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:20px; padding-bottom:20px\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:50%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"center\" style=\"direction:ltr; line-height:0px; border-radius:8px\"><span style=\"font-size:0px; color:rgb(255,255,255); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWAacfe193e-87c4-a72d-b508-9a683a3e4db9\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeG13FMJYgX5mMENmJxHc/FUZ_0isJTQ1o\" style=\"color:rgb(255,255,255)\"><img data-unique-identifier=\"\" title=\"Making Digital Kiosks Click III: Beyond Information\" style=\"width:100%; border-radius:8px; display:block\" src=\"https://ehfas.img.ag.d.sendibm3.com/im/sh/9Op68GIgPhho.jpg?u=7xwQLFBtniwQnF53sMbCsWIsPwjj3uq\"></a></u></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n<th style=\"direction:ltr; vertical-align:top; width:50%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:left; line-height:1; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"font-size:20px\">A Modern, Accessible, and Educational Experience for All Zoo Visitors</span><br>\r\n&nbsp;</h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-bottom:20px\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:left; line-height:1.5; padding-top:15px; padding-bottom:15px; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">Workinman Interactive, in proud collaboration with the</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWAa8fcfc13-2b21-b56d-9d56-4648dfa3b8c9\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeG7uhV8VrhFGS3gWIFrs/1wN6eOemqsu1\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">North\r\n Carolina Zoo</a></u></span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">, is excited to announce the launch of the NCZoo app—now available on iOS and Android as of May 2025. Designed to enrich every visit to the\r\n Zoo, this cutting-edge app brings a fresh, interactive dimension to exploring wildlife, learning about conservation, and discovering STEM careers—all while making the Zoo experience more accessible and engaging for visitors of all ages and abilities.</span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">&nbsp;</span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA4293899f-485d-b3a2-3dd8-a508f84b1405\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGEm9dxT2rOkXszGGYS8/SMJ0IkYWjYcP\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Check\r\n out all the features the NCZoo app provides!</a></u></span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">&nbsp;</span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px\">Ready to make your park, zoo, or business more engaging?</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">\r\n</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWAabe499bd-4e1a-5923-1deb-82100d5b35ce\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGLdbmmQE1YEdiI0Er2O/4u7jtCv00Xki\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Contact\r\n us</a></u></span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">to unlock the next level of interactivity!</span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(89,89,89); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:10px; padding-bottom:10px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1; margin:0px; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; color:rgb(255,255,255)\">Games for Brands</span></h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(255,255,255); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:20px; padding-bottom:20px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:50%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"center\" style=\"direction:ltr; line-height:0px; border-radius:8px; color:rgb(59,63,68)\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:0px; color:rgb(255,255,255); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWAddf0d673-b198-96c4-0c70-976e17300d4b\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGSV3vbNPBhijXakD9ce/IBGbkTzxXQRB\" style=\"color:rgb(255,255,255)\"><img data-unique-identifier=\"\" style=\"width:100%; border-radius:8px; display:block\" src=\"https://ehfas.img.ag.d.sendibm3.com/im/sh/VlvB4aMPBy9f.jpg?u=7xwQLFBtniwQnLwW1BYO2fmyFFThMV6\"></a></u></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n<th style=\"direction:ltr; vertical-align:top; width:50%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:left; line-height:1; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"font-size:36px\">What to Do, What to Avoid</span></h2>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr; line-height:5px; height:5px\">\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; line-height:5px; font-family:arial,helvetica,sans-serif; font-size:5px\">\r\n<span style=\"font-weight:normal\">­</span></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-bottom:20px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:left; line-height:1.5; padding-top:15px; padding-bottom:15px; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">Branded games aren’t just a creative brief and a lengthy project. They’re a balancing act between honoring brand identity and making something people actually want to play.\r\n It\'s a synergism between design and marketing, playfulness and precision. When done well, a brand-integrated game becomes more than\r\n<i>just</i>&nbsp;a promotional tool. It becomes a story that players want to be part of.</span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">&nbsp;</span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA2592da57-4f06-e5ad-3651-e5dd1c0bda7a\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Here’s\r\n what to do, and what</a></u></span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA90ce7c3d-db11-f16c-dd56-a8bef0549799\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">\r\n</a></u></span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><i><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA728f35d7-be16-1daf-50ce-1c3714a4f948\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">not</a></u></i></span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWAe7e37e32-ae04-dbc7-6fc0-3ffa0a602964\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">\r\n</a></u></span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA234e462d-dfb2-ebf7-027a-b0481c35b894\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">to\r\n do, when designing branded games.</a></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(89,89,89); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:10px; padding-bottom:10px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"color:rgb(255,255,255)\">Game Design</span></h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(255,255,255); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:20px; padding-bottom:20px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:50%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"center\" style=\"direction:ltr; line-height:0px; border-radius:8px; color:rgb(59,63,68)\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:0px; color:rgb(255,255,255); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA21df8071-e134-db5d-f30b-f9a5c1ce2695\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGgDyDFHlW0gvCCE9knA/iMDvjtbwa753\" style=\"color:rgb(255,255,255)\"><img data-unique-identifier=\"\" style=\"width:100%; border-radius:8px; display:block\" src=\"https://ehfas.img.ag.d.sendibm3.com/im/sh/NGfPZb-DQ0eG.jpg?u=7xwQLFBtniwQnSnyA0VZCpH44YDff5M\"></a></u></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n<th style=\"direction:ltr; vertical-align:top; width:50%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:left; line-height:1; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\nCreating Better Digital Board Games</h2>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr; line-height:5px; height:5px\">\r\n<div class=\"x_x_x_elementToProof\" style=\"direction:ltr; line-height:5px; font-family:arial,helvetica,sans-serif; font-size:5px\">\r\n<span style=\"font-weight:normal\">­</span></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-bottom:20px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:left; line-height:1.5; padding-top:15px; padding-bottom:15px; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">Digitizing a board game isn’t just a technical task. It’s often a\r\n</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px\">translation challenge</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">. The mechanics are usually airtight. The audience is often built-in.\r\n But if the game doesn’t <i>feel</i>&nbsp;right once it’s digital—if it loses its rhythm, clarity, or atmosphere—your audience will notice. And they may not return.</span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">&nbsp;</span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">At Workinman, we can help studios and publishers translate beloved board games into dynamic digital experiences—without losing the essence of what makes them great. From\r\n AI tuning to UI design and atmosphere-building, we know how to turn cardboard and cardstock into something\r\n<i>truly</i>&nbsp;screen-worthy.</span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">&nbsp;</span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA086b0be5-f3d4-23b0-d133-17f093f99213\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGn5QM4EwgAB11Uy83NQ/pA0WH5Y_OhHf\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Read\r\n more!</a></u></span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">&nbsp;</span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:left; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px\">If you\'re ready to bring your game to life online,</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">\r\n</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA86dfb4ae-5038-398c-601d-d45ea1f33672\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGtwsUtC7qJf6qni6Lxg/WRTz3m_aq_gb\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">contact\r\n us</a></u></span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">\r\n</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px\">now to get started.</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\">&nbsp;</span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(249,160,44); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:10px; padding-bottom:10px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1.5; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"color:rgb(255,255,255)\">WHAT WE DO</span></h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(255,255,255); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:20px; padding-bottom:20px\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"font-size:22px\">Workinman Interactive is a full-service creative studio for cross-platform games and engaging apps.</span></h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:10px; padding-bottom:10px\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1.5; padding-top:15px; padding-bottom:15px; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA420bfb29-2be7-4ba0-ef03-56f5bc6c79d6\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsDhYHdOKPDMqP51WuUJq4/Kb-JAW4_rDR5\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Cross-Platform\r\n Games and Apps</a></u></span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA2a7649b0-2e9c-c612-1fad-dbd28b56ed43\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsE9szpoilJI0f8qujT3Y8/E627oifEgKIx\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Gamification</a></u></span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; font-weight:normal\"><br>\r\n</span><span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWAe8a648b6-4bb1-5ff0-1f62-aa875eda2593\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsEcDi2F77PDAvCgIYRnGC/1e0EzX4RBSOD\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">VR\r\n &amp; AR Experiences</a></u></span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA0e7b2f47-4488-0397-f531-b9cdf1f9613f\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsF4YQEfVTV8LBGVgNQWyG/BAoIYNd1mxIX\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Interactive\r\n Digital Exhibits</a></u></span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA3d906230-d752-b7cf-00ff-a55a1fd5a113\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsFWt8R5tpb3VRKL4CPGgK/Vpsh_R2QaPa-\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Educational\r\n Games &amp; eLearning</a></u></span></p>\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:16px; color:rgb(0,136,188)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA44f89156-50b5-5981-7891-2cf7e2a52a82\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsFzDqdWIBgyfhOAS1O0OO/t8za1-x1Rf0E\" style=\"color:rgb(0,136,188); margin-top:0px; margin-bottom:0px\">Companion\r\n Apps for Smart Toys &amp; Appliances</a></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(89,89,89); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:10px; padding-bottom:10px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<h2 class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1; margin:0px; font-family:arial,helvetica,sans-serif; font-size:32px; color:rgb(31,45,61)\">\r\n<span style=\"font-size:22px; color:rgb(255,255,255)\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWA204794ba-fb75-9460-b1ba-eaf38225ab32\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsGRYYpwgXmtpxRzpqMk6S/bevyJrJoW4cs\" style=\"color:rgb(255,255,255)\">CONTACT\r\n US TODAY FOR A FREE CONSULTATION</a></u></span></h2>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:30px; padding-bottom:30px; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top; color:rgb(59,63,68)\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:20px; color:rgb(255,255,255)\"><u><a class=\"x_x_x_OWAAutoLink\" id=\"OWA4dcce8ac-5807-45ee-b80f-3f172b60cb2c\" href=\"mailto:opportunity@workinman.com\" style=\"color:rgb(255,255,255); margin-top:0px; margin-bottom:0px\">opportunity@workinman.com</a></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; background-color:rgb(239,242,247); vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"direction:ltr; width:600px; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-top:20px; padding-bottom:20px\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<th style=\"direction:ltr; vertical-align:top; width:100%\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; padding-right:15px; padding-left:15px; vertical-align:top\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1.5; padding-top:15px; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-size:18px\">Workinman Interactive</span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1.5; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px; font-size:14px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-weight:normal\">1 East Avenue, 5th Floor, 14604, Rochester</span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1.5; padding-top:15px; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px; font-size:14px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-weight:normal\">This email was sent to rick@mislan.com</span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1.5; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px; font-size:14px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; font-weight:normal\">You\'ve received this email because you\'ve subscribed to our newsletter.</span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td align=\"left\" style=\"direction:ltr\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" style=\"direction:ltr; width:100%; table-layout:fixed; box-sizing:border-box; border-collapse:collapse; border-spacing:0px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr; text-align:center; line-height:1.5; padding-top:15px; padding-bottom:15px; vertical-align:top; word-break:break-word; color:rgb(59,63,68)\">\r\n<p class=\"x_x_x_elementToProof\" style=\"direction:ltr; text-align:center; line-height:1.5; margin:0px; font-size:14px\">\r\n<span style=\"font-family:arial,helvetica,sans-serif; color:rgb(249,160,44); font-weight:normal\"><u><a data-auth=\"NotApplicable\" class=\"x_x_x_OWAAutoLink\" id=\"OWAb8a2ccf2-68e2-4b47-2241-8df99351a702\" href=\"https://ehfas.r.ag.d.sendibm3.com/mk/un/v2/sh/SMJz09a0vkbXrIOuDazyHiLuyL9s/xQ7JJO10AbkG\" style=\"color:rgb(249,160,44); margin-top:0px; margin-bottom:0px\">Unsubscribe</a></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Rick, Dan,\r\n\r\nI thought you’d enjoy seeing this. Our technical art team put together some visuals for you. They compiled a scene in Unreal Engine, added some rough models of quads, points of interest, and placeholder UI, then tied it all together with basic physics and lighting. They captured screenshots of the real-time graphics to share.\r\nThis should give you a clear idea of how great your simulator could look. It’s definitely a leap ahead of what’s currently out there.\r\n\r\n[cid:f3dbf4ef-e1fb-470c-bd88-afdb416e1f10]\r\n\r\n[cid:2f7bf465-dd40-420f-9520-d67b35b34c2d]\r\n\r\nI apologize for missing the last meeting. I was down with a rough case of the flu last week but am back in action now.\r\nPlease don’t hesitate to reach out if you have any further questions or would like revisions or additional detail on our preliminary proposal.\r\nOur next available kickoff window would be at the beginning of November. Let me know if you’d like to schedule a call to cover any new details or developments. I’m looking forward to our next discussion and to moving this forward.\r\n\r\nBest,\r\nMatt Conheady\r\nOwner | Executive Producer\r\n\r\nWORKINMAN\r\nWe Make Awesome Games & Experiences\r\nOffice: 585-662-5800\r\nworkinman.com<http://www.workinman.com/>\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Thursday, August 14, 2025 7:55 PM\r\nTo: Matthew Conheady <matt.conheady@workinman.com>; dan@mavrix.one <dan@mavrix.one>\r\nCc: Jason Arena <jason@workinman.com>\r\nSubject: Re: Workinman Interactive\r\n\r\nHI guys,\r\nI just wanted to say thank you for the quick turnaround on this.\r\nDan and I will chat it out a bit and get back to you for next steps.\r\nAlso, attached is the executed NDA.\r\nThank you!\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:847FB525-1CC5-4EA6-9FC1-3EDAA880C6D4]\r\nhttps://mavrix1.com<https://mavrix1.com/>\r\n\r\n\r\n\r\nOn August 14, 2025 at 6:17:18 PM, Matthew Conheady (matt.conheady@workinman.com<mailto:matt.conheady@workinman.com>) wrote:\r\n\r\nHi Rick and Dan,\r\nAttached is the signed NDA and price/scope estimate for the MVP software.\r\n\r\nThe estimate should serve as a solid starting point for refining the requirements and tightening up the schedule and budgets.\r\nLet us know if you have any questions, would like to jump on a call to walk through it, or you can annotate the document as needed and send back for revisions or answers.\r\n\r\nWe are able to staff this as early as September. Let us know what your thoughts are as far as your overall schedule and we can work to align.\r\n\r\nBest,\r\nMatt Conheady\r\nOwner | Executive Producer\r\n\r\nWORKINMAN\r\nWe Make Awesome Games & Experiences\r\nOffice: 585-662-5800\r\nworkinman.com<http://www.workinman.com/>\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Wednesday, August 13, 2025 9:18 AM\r\nTo: Matthew Conheady <matt.conheady@workinman.com>\r\nCc: Jason Arena <jason@workinman.com>\r\nSubject: Re: Workinman Interactive\r\n\r\nSee attached NDA.\r\nPlease fill in the first page,  initial all pages, and sign the final page.\r\nThanks again,\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:D57C5E34-6271-41A7-9766-B2C06CC40710]\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\nOn August 12, 2025 at 4:16:50 PM, Matthew Conheady (matt.conheady@workinman.com<mailto:matt.conheady@workinman.com>) wrote:\r\n\r\nHi Rick!\r\n\r\nI was great talking with you and Dan last week. We have been working away on that initial concept and estimate document and should be ready to send that over to you on Thursday of this week. Did you want me to send that to you at this e-mail or other business e-mails for you and Dan?\r\n\r\nMatt Conheady\r\nOwner | Executive Producer\r\n\r\nWORKINMAN\r\nWe Make Awesome Games & Experiences\r\nOffice: 585-662-5800\r\nworkinman.com<http://www.workinman.com/>\r\n________________________________\r\nFrom: Matthew Conheady <matt.conheady@workinman.com>\r\nSent: Tuesday, August 5, 2025 4:27 PM\r\nTo: Rick Mislan , PhD <rick@mislan.com>\r\nCc: Jason Arena <jason@workinman.com>\r\nSubject: Re: Workinman Interactive\r\n\r\n1pm on Friday works for us. Talk to you then!\r\n\r\nHere are the Zoom details\r\n\r\n__________________________________________________________________________________________________________\r\n\r\nMatthew (Workinman) is inviting you to a scheduled Zoom meeting.\r\n\r\nTopic: Workinman - ROV Sim game discussion\r\nTime: Aug 8, 2025 01:00 PM Eastern Time (US and Canada)\r\nJoin Zoom Meeting\r\nhttps://us02web.zoom.us/j/86189302441\r\n\r\nMeeting ID: 861 8930 2441\r\n\r\n---\r\n\r\nOne tap mobile\r\n+19292056099,,86189302441# US (New York)\r\n+16469313860,,86189302441# US\r\n\r\n---\r\n\r\nDial by your location\r\n• +1 929 205 6099 US (New York)\r\n• +1 646 931 3860 US\r\n• +1 312 626 6799 US (Chicago)\r\n• +1 301 715 8592 US (Washington DC)\r\n• +1 305 224 1968 US\r\n• +1 309 205 3325 US\r\n• +1 253 205 0468 US\r\n• +1 253 215 8782 US (Tacoma)\r\n• +1 346 248 7799 US (Houston)\r\n• +1 360 209 5623 US\r\n• +1 386 347 5053 US\r\n• +1 507 473 4847 US\r\n• +1 564 217 2000 US\r\n• +1 669 444 9171 US\r\n• +1 669 900 6833 US (San Jose)\r\n• +1 689 278 1000 US\r\n• +1 719 359 4580 US\r\n\r\nMeeting ID: 861 8930 2441\r\n\r\nFind your local number: https://us02web.zoom.us/u/kcTuOrpraw\r\n\r\n\r\n\r\nMatt Conheady\r\nOwner | Executive Producer\r\n\r\nWORKINMAN\r\nWe Make Awesome Games & Experiences\r\nOffice: 585-662-5800\r\nworkinman.com<http://www.workinman.com/>\r\n________________________________\r\nFrom: Rick Mislan , PhD <rick@mislan.com>\r\nSent: Tuesday, August 5, 2025 12:06 PM\r\nTo: Matthew Conheady <matt.conheady@workinman.com>\r\nSubject: Re: Workinman Interactive\r\n\r\nCan we jump on a call Friday at 1p?\r\nSorry, I’ve been traveling\r\nThank you!\r\n\r\n\r\nRick Mislan, PhD\r\nwww.mislan.com<http://www.mislan.com/>\r\n[tel://(585) 797-9473](585) 797-9473\r\n\r\nOn July 29, 2025 at 12:25:04 PM, Matthew Conheady (matt.conheady@workinman.com<mailto:matt.conheady@workinman.com>) wrote:\r\n\r\nHi Rick,\r\n\r\nGood times this week for me are:\r\n\r\nWednesday and Thursday\r\n\r\n  *\r\n12pm to 5:30pm EST\r\n\r\nFriday Morning\r\n\r\n  *\r\n10 am to 1pm EST\r\n\r\nAnd then next all week\r\n\r\n  *\r\n12pm to 5:30pm EST\r\n\r\n\r\n\r\nMatt Conheady\r\nOwner | Executive Producer\r\n\r\nWORKINMAN\r\nWe Make Awesome Games & Experiences\r\nOffice: 585-662-5800\r\nworkinman.com<http://www.workinman.com/>\r\n________________________________\r\nFrom: Rick Mislan , PhD <rick@mislan.com>\r\nSent: Monday, July 28, 2025 6:52 PM\r\nTo: Matthew Conheady <matt.conheady@workinman.com>\r\nSubject: Re: Workinman Interactive\r\n\r\nHey Matthew,\r\nSorry for the delay, we are still very interested in working with you and had a bit of team building work this week on our larger projects.\r\nThat all said, I’m going to introduce Dan Rugg to this conversation and re-engage with you next week if possible.\r\nPlease send some dates and times that would work for us.\r\nThank you,\r\nRick\r\n\r\n\r\n\r\nRick Mislan, PhD\r\nwww.mislan.com<http://www.mislan.com/>\r\n[tel://(585)%20797-9473](585) 797-9473\r\n\r\n\r\nOn July 28, 2025 at 5:28:15 PM, Matthew Conheady (matt.conheady@workinman.com<mailto:matt.conheady@workinman.com>) wrote:\r\n\r\nHi Rick!\r\n\r\nI\'m following up on our call in regards to game development for a ROV simulator game. We are still very much interested in working with you on this.\r\nI was wondering if you had a chance to compile a high-level list of requirements, direction, and business goals for the first iteration of the simulator? We would need thit to begin crafting a proposal.\r\n\r\nLet me know if you\'d like to jump on another call to discuss.\r\n\r\nBest,\r\nMatt Conheady\r\nOwner | Executive Producer\r\n\r\nWORKINMAN\r\nWe Make Awesome Games & Experiences\r\nOffice: 585-662-5800\r\nworkinman.com<http://www.workinman.com/>\r\n________________________________\r\nFrom: Jason Arena <jxafaa@rit.edu>\r\nSent: Tuesday, June 24, 2025 8:52 AM\r\nTo: Rick Mislan PhD <rick@mislan.com>\r\nCc: Workinman Interactive <opportunity@workinman.com>; Matthew Conheady <matt.conheady@workinman.com>\r\nSubject: Re: Workinman Interactive\r\n\r\nHi Rick!\r\n\r\nSounds awesome! I’m cc’ing Matt C on this.  I’m free everyday after 11:00\r\n\r\n\r\nSent from my iPhone\r\n\r\nOn Jun 24, 2025, at 8:37 AM, Rick Mislan , PhD <rick@mislan.com> wrote:\r\n\r\n﻿\r\nJason,\r\nCan we schedule a call next week?\r\nI’m in a new venture where\r\nthe investors wants to develop\r\na drone flight simulator game\r\nspecifically for collecting user data\r\nand using that to build better drone products…\r\n\r\nPlease let me know\r\nif we can jump on a zoom\r\nthis week or next.\r\n\r\nThanks much!\r\nRick\r\n\r\nRick Mislan, PhD\r\nwww.mislan.com<http://www.mislan.com/>\r\n[tel://(585)%20797-9473](585) 797-9473\r\n\r\n\r\nOn June 24, 2025 at 8:12:06 AM, Workinman Interactive (opportunity@workinman.com<mailto:opportunity@workinman.com>) wrote:\r\n\r\nIf you are not able to see this mail, click here<https://ehfas.r.ag.d.sendibm3.com/mk/mr/sh/SMJz09SDriOHVCvERqqB8vSnidXk/eUSi5oqtsSF7>\r\n[https://ehfas.img.ag.d.sendibm3.com/im/sh/G1V7WqIQLpmT.png?u=7xwQLFBtniwQn1M9aigqYDKglLFmSkK]<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeFuBnDUbVMwIGP52LehM/cf8aWw6mA19H>\r\nWe Make Awesome Games & Apps\r\nWHAT\'S NEW WITH WORKINMAN INTERACTIVE:\r\n­\r\nNew North Carolina Zoo App\r\n[https://ehfas.img.ag.d.sendibm3.com/im/sh/9Op68GIgPhho.jpg?u=7xwQLFBtniwQnF53sMbCsWIsPwjj3uq]<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeG13FMJYgX5mMENmJxHc/FUZ_0isJTQ1o>\r\nA Modern, Accessible, and Educational Experience for All Zoo Visitors\r\n\r\n\r\nWorkinman Interactive, in proud collaboration with theNorth Carolina Zoo<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeG7uhV8VrhFGS3gWIFrs/1wN6eOemqsu1>, is excited to announce the launch of the NCZoo app—now available on iOS and Android as of May 2025. Designed to enrich every visit to the Zoo, this cutting-edge app brings a fresh, interactive dimension to exploring wildlife, learning about conservation, and discovering STEM careers—all while making the Zoo experience more accessible and engaging for visitors of all ages and abilities.\r\n\r\n\r\n\r\nCheck out all the features the NCZoo app provides!<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGEm9dxT2rOkXszGGYS8/SMJ0IkYWjYcP>\r\n\r\n\r\n\r\nReady to make your park, zoo, or business more engaging? Contact us<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGLdbmmQE1YEdiI0Er2O/4u7jtCv00Xki>to unlock the next level of interactivity!\r\n\r\nGames for Brands\r\n[https://ehfas.img.ag.d.sendibm3.com/im/sh/VlvB4aMPBy9f.jpg?u=7xwQLFBtniwQnLwW1BYO2fmyFFThMV6]<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGSV3vbNPBhijXakD9ce/IBGbkTzxXQRB>\r\nWhat to Do, What to Avoid\r\n­\r\n\r\nBranded games aren’t just a creative brief and a lengthy project. They’re a balancing act between honoring brand identity and making something people actually want to play. It\'s a synergism between design and marketing, playfulness and precision. When done well, a brand-integrated game becomes more than just a promotional tool. It becomes a story that players want to be part of.\r\n\r\n\r\n\r\nHere’s what to do, and what<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5> <https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5> not<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5> <https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5> to do, when designing branded games.<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGZMW4QKaLrCpMtUBSCu/-TdoD48gESZ5>\r\n\r\nGame Design\r\n[https://ehfas.img.ag.d.sendibm3.com/im/sh/NGfPZb-DQ0eG.jpg?u=7xwQLFBtniwQnSnyA0VZCpH44YDff5M]<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGgDyDFHlW0gvCCE9knA/iMDvjtbwa753>\r\nCreating Better Digital Board Games\r\n­\r\n\r\nDigitizing a board game isn’t just a technical task. It’s often a translation challenge. The mechanics are usually airtight. The audience is often built-in. But if the game doesn’t feel right once it’s digital—if it loses its rhythm, clarity, or atmosphere—your audience will notice. And they may not return.\r\n\r\n\r\n\r\nAt Workinman, we can help studios and publishers translate beloved board games into dynamic digital experiences—without losing the essence of what makes them great. From AI tuning to UI design and atmosphere-building, we know how to turn cardboard and cardstock into something truly screen-worthy.\r\n\r\n\r\n\r\nRead more!<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGn5QM4EwgAB11Uy83NQ/pA0WH5Y_OhHf>\r\n\r\n\r\n\r\nIf you\'re ready to bring your game to life online, contact us<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/SMK1E8tHeGtwsUtC7qJf6qni6Lxg/WRTz3m_aq_gb> now to get started.\r\n\r\nWHAT WE DO\r\nWorkinman Interactive is a full-service creative studio for cross-platform games and engaging apps.\r\n\r\nCross-Platform Games and Apps<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsDhYHdOKPDMqP51WuUJq4/Kb-JAW4_rDR5>\r\n\r\nGamification<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsE9szpoilJI0f8qujT3Y8/E627oifEgKIx>\r\nVR & AR Experiences<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsEcDi2F77PDAvCgIYRnGC/1e0EzX4RBSOD>\r\n\r\nInteractive Digital Exhibits<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsF4YQEfVTV8LBGVgNQWyG/BAoIYNd1mxIX>\r\n\r\nEducational Games & eLearning<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsFWt8R5tpb3VRKL4CPGgK/Vpsh_R2QaPa->\r\n\r\nCompanion Apps for Smart Toys & Appliances<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsFzDqdWIBgyfhOAS1O0OO/t8za1-x1Rf0E>\r\n\r\nCONTACT US TODAY FOR A FREE CONSULTATION<https://ehfas.r.ag.d.sendibm3.com/mk/cl/f/sh/1t6Af4OiGsGRYYpwgXmtpxRzpqMk6S/bevyJrJoW4cs>\r\n\r\nopportunity@workinman.com<mailto:opportunity@workinman.com>\r\n\r\nWorkinman Interactive\r\n\r\n1 East Avenue, 5th Floor, 14604, Rochester\r\n\r\nThis email was sent to rick@mislan.com\r\n\r\nYou\'ve received this email because you\'ve subscribed to our newsletter.\r\n\r\nUnsubscribe<https://ehfas.r.ag.d.sendibm3.com/mk/un/v2/sh/SMJz09a0vkbXrIOuDazyHiLuyL9s/xQ7JJO10AbkG>\r\n',0,0,0,0,0,0,'2025-09-29 19:47:10','2025-12-09 19:29:18','2025-12-09 19:29:18','2025-12-09 19:29:18',NULL,NULL,NULL),
(812,4,' <LV3P220MB10296FB81B165843A49011D1FF1BA@LV3P220MB1029.NAMP220.PROD.OUTLOOK.COM>',NULL,NULL,'Signed NDA','trip_mcingvale@hotmail.com','Trip McIngvale','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nRick- See attached.</div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nThanks</div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nTrip</div>\r\n</body>\r\n</html>','Rick- See attached.\r\n\r\nThanks\r\nTrip',0,0,0,0,0,0,'2025-09-29 19:48:49','2025-12-09 19:29:20','2025-12-09 19:29:20','2025-12-09 19:29:20',NULL,NULL,NULL),
(813,4,'<CH8PR13MB72677325B45ED80FC8407585E81BA@CH8PR13MB7267.namprd13.prod.outlook.com>',NULL,NULL,'RE: Rick / intro to Century Mold','m.ricotta@CENTURYMOLD.COM','\"Ricotta, Matthew\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\n <head>\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n  <meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\"><!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]-->\n  <style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nh2\r\n	{mso-style-priority:9;\r\n	mso-style-link:\"Heading 2 Char\";\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:18.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	font-weight:bold;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon0, li.airmailon0, div.airmailon0\r\n	{mso-style-name:airmailon;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.Heading2Char\r\n	{mso-style-name:\"Heading 2 Char\";\r\n	mso-style-priority:9;\r\n	mso-style-link:\"Heading 2\";\r\n	font-family:\"Aptos Display\",sans-serif;\r\n	color:#0F4761;}\r\nspan.EmailStyle24\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Calibri\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\n </head>\n <body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\n  <div class=\"WordSection1\">\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">How does 2pm Thursday work for you?&nbsp; Do you want to come to our place?\n     <o:p></o:p></span></p>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">\n     <o:p>\n      &nbsp;\n     </o:p></span></p>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Century Mold Co., Inc.\n     <o:p></o:p></span></p>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">25 Vantage Point Drive\n     <o:p></o:p></span></p>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Rochester, New York 14624\n     <o:p></o:p></span></p>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">\n     <o:p>\n      &nbsp;\n     </o:p></span></p>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">\n     <o:p>\n      &nbsp;\n     </o:p></span></p>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">\n     <o:p>\n      &nbsp;\n     </o:p></span></p>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">\n     <o:p>\n      &nbsp;\n     </o:p></span></p>\n   <div>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Matthew C. Ricotta</span><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Vice President of Sales Strategy &amp; Sales Operations\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Century Mold Co., Inc.\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">25 Vantage Point Drive\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Rochester, New York 14624\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Cell: (585) 507-1219\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\"><a href=\"mailto:m.ricotta@centurymold.com\">m.ricotta@centurymold.com</a>\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">\n      <o:p>\n       &nbsp;\n      </o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\"><img border=\"0\" width=\"225\" height=\"60\" style=\"width:2.3402in;height:.625in\" id=\"Picture_x0020_1615384104\" src=\"cid:image001.jpg@01DC315D.610B43C0\"><span style=\"mso-ligatures:standardcontextual\">\n       <o:p></o:p></span></span></p>\n   </div>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">\n     <o:p>\n      &nbsp;\n     </o:p></span></p>\n   <div>\n    <div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\n     <p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt; <br><b>Sent:</b> Monday, September 29, 2025 3:26 PM<br><b>To:</b> Ricotta, Matthew &lt;m.ricotta@CENTURYMOLD.COM&gt;; Blake, Elizabeth &lt;e.blake@centurymold.com&gt;; Rottier, Danielle &lt;danielle.rottier@centurymold.com&gt;<br><b>Subject:</b> RE: Rick / intro to Century Mold\n       <o:p></o:p></span></p>\n    </div>\n   </div>\n   <p class=\"MsoNormal\">\n    <o:p>\n     &nbsp;\n    </o:p></p>\n   <div id=\"dde62e0b9d2d3dbe0ad90ee1a0e018ac2c3f9fbc\">\n    <div id=\"3695363d23e92539dd775cf46042fb34a397127b\">\n     <p class=\"MsoNormal\" style=\"line-height:0%\"><span style=\"font-size:1.0pt;color:white\">I think that will work. Let me know what’s best. Thanks! Rick On September 29, 2025 at 08:00:38, Ricotta, Matthew (<a href=\"mailto:m.ricotta@centurymold.com\">m.ricotta@centurymold.com</a>) wrote: Hi Rick, Are you available Thursday afternoon? We h \n       <o:p></o:p></span></p>\n    </div>\n    <p class=\"MsoNormal\"><span style=\"font-size:1.0pt;color:white\">sophospsmartbannerend </span><o:p></o:p></p>\n   </div>\n   <p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">I think that will work.<br>\n     Let me know what’s best.<br>\n     Thanks!<br>\n     Rick <o:p></o:p></p>\n   <p class=\"airmailon\">On September 29, 2025 at 08:00:38, Ricotta, Matthew (<a href=\"mailto:m.ricotta@centurymold.com\">m.ricotta@centurymold.com</a>) wrote:<o:p></o:p></p>\n   <blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\n    <div>\n     <div>\n      <div>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">Hi Rick, </span><o:p></o:p></p>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">Are you available Thursday afternoon? We have a customer in town until noon however we can be available in the afternoon. </span><o:p></o:p></p>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n       <div>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Matthew C. Ricotta</span><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> </span><o:p></o:p></p>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Vice President of Sales Strategy &amp; Sales Operations </span><o:p></o:p></p>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Century Mold Co., Inc. </span><o:p></o:p></p>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">25 Vantage Point Drive </span><o:p></o:p></p>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Rochester, New York 14624 </span><o:p></o:p></p>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Cell: (585) 507-1219 </span><o:p></o:p></p>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\"><a href=\"mailto:m.ricotta@centurymold.com\">m.ricotta@centurymold.com</a> </span><o:p></o:p></p>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">&nbsp; </span><o:p></o:p></p>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\"><img border=\"0\" width=\"225\" height=\"60\" style=\"width:2.3402in;height:.625in\" id=\"Picture_x0020_1298005977\" src=\"cid:image001.jpg@01DC315D.610B43C0\"></span><o:p></o:p></p>\n       </div>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n       <div>\n        <div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\n         <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; <br><b>Sent:</b> Sunday, September 28, 2025 9:05 AM<br><b>To:</b> Blake, Elizabeth &lt;<a href=\"mailto:e.blake@centurymold.com\">e.blake@centurymold.com</a>&gt;; Rottier, Danielle &lt;<a href=\"mailto:danielle.rottier@centurymold.com\">danielle.rottier@centurymold.com</a>&gt;; Ricotta, Matthew &lt;<a href=\"mailto:m.ricotta@CENTURYMOLD.COM\">m.ricotta@CENTURYMOLD.COM</a>&gt;<br><b>Subject:</b> RE: Rick / intro to Century Mold </span><o:p></o:p></p>\n        </div>\n       </div>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp; <o:p></o:p></p>\n       <div id=\"dde62e0b9d2d3dbe0ad90ee1a0e018ac2c3f9fbc\">\n        <div id=\"3695363d23e92539dd775cf46042fb34a397127b\">\n         <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;line-height:0%\"><span style=\"font-size:1.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:white\">Checking in again to see if there isn’t time this week to connect. Tuesday or Thursday or next week same days? Thanks! Rick Rick Mislan, PhD, Founder, CTO <a href=\"https://us-east-2.protection.sophos.com?d=mavrix1.com&amp;u=aHR0cHM6Ly9tYXZyaXgxLmNvbQ==&amp;i=NWE0MmE2M2EwYTczNDQxNzgwMzIzMmNj&amp;t=OUh1c0pVeGZ5VStDYnA0NHZORjB0TU1PeTh5c0tyckdOU0I3S2Y0SWtkYz0=&amp;h=b8861dfc29a6481f8328da136291687b&amp;s=AVNPUEhUT0NFTkNSWVBUSVZAh6YX1jEL4DWnGl5QCuub\"> https://mavrix1.com</a> CONFIDENTIALITY NOTICE Th </span><o:p></o:p></p>\n        </div>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:1.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:white\">sophospsmartbannerend </span><o:p></o:p></p>\n       </div>\n       <div>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Checking in again to see if there isn’t time this week to connect. </span><o:p></o:p></p>\n       </div>\n       <div>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Tuesday or Thursday or next week same days? </span><o:p></o:p></p>\n       </div>\n       <div>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks! </span><o:p></o:p></p>\n       </div>\n       <div>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick </span><o:p></o:p></p>\n       </div>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n       <div>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n        <div>\n         <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp; </span><o:p></o:p></p>\n         <div>\n          <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO </span><o:p></o:p></p>\n         </div>\n         <div>\n          <div>\n           <div>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"Picture_x0020_5\" src=\"cid:image002.png@01DC315D.610B43C0\"></span><o:p></o:p></p>\n           </div>\n           <div>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://us-east-2.protection.sophos.com?d=mavrix1.com&amp;u=aHR0cHM6Ly9tYXZyaXgxLmNvbS8=&amp;i=NWE0MmE2M2EwYTczNDQxNzgwMzIzMmNj&amp;t=SVFyWGp6a2pXWUFzZENKTnRZd1NRVzU1TWU0R0VqZk9pRUd5ZlJOcWxRTT0=&amp;h=b38fb10393b8457b89f0ec8e5079b2e9&amp;s=AVNPUEhUT0NFTkNSWVBUSVZAh6YX1jEL4DWnGl5QCuub\">https://mavrix1.com</a> </span><o:p></o:p></p>\n           </div>\n          </div>\n          <div>\n           <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n          </div>\n          <div>\n           <div>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">CONFIDENTIALITY NOTICE </span><o:p></o:p></p>\n           </div>\n           <div>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful. </span><o:p></o:p></p>\n           </div>\n           <div>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n           </div>\n           <div>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies. </span><o:p></o:p></p>\n           </div>\n           <div>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n           </div>\n           <div>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements. </span><o:p></o:p></p>\n           </div>\n          </div>\n         </div>\n        </div>\n       </div>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n       <p class=\"airmailon0\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">On September 16, 2025 at 7:35:34 AM, Ricotta, Matthew (<a href=\"mailto:m.ricotta@centurymold.com\">m.ricotta@centurymold.com</a>) wrote: </span><o:p></o:p></p>\n       <blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\n        <div>\n         <div>\n          <div>\n           <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Good Morning Rick, </span><o:p></o:p></p>\n           <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n           <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Nice to virtually meet you.&nbsp; RIT is a great place, I am a 2003 graduate and still actively involved with the university as I serve as a member of the National Council for Engineering Technology. </span> <o:p></o:p></p>\n           <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n           <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">It would be great to connect sometime soon.&nbsp; We can have you over and show you around and then grab some lunch.&nbsp; Our building is only 15 minutes from RIT.&nbsp; Are there any dates and times that might work for you? </span><o:p></o:p></p>\n           <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n           <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><a id=\"OWAAM46FF9A5316C34FB2A8FCE827BF697C4A\" href=\"mailto:jen@deeptechgtm.com\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;text-decoration:none\">@Jennifer Kay</span></a>&nbsp; thanks for the connection. </span><o:p></o:p></p>\n           <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n           <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Best Regards, </span><o:p></o:p></p>\n           <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n           <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Matt </span><o:p></o:p></p>\n           <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n           <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n           <div>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Matthew C. Ricotta</span><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> </span><o:p></o:p></p>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Vice President of Sales Strategy &amp; Sales Operations </span><o:p></o:p></p>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Century Mold Co., Inc. </span><o:p></o:p></p>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">25 Vantage Point Drive </span><o:p></o:p></p>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Rochester, New York 14624 </span><o:p></o:p></p>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Cell: (585) 507-1219 </span><o:p></o:p></p>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\"><a href=\"mailto:m.ricotta@centurymold.com\">m.ricotta@centurymold.com</a> </span><o:p></o:p></p>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">&nbsp; </span><o:p></o:p></p>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><img border=\"0\" width=\"225\" height=\"60\" style=\"width:2.3402in;height:.625in\" id=\"Picture_x0020_640791774\" src=\"cid:image001.jpg@01DC315D.610B43C0\"></span><o:p></o:p></p>\n           </div>\n           <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n           <div>\n            <div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\n             <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Jennifer Kay &lt;<a href=\"mailto:jen@deeptechgtm.com\">jen@deeptechgtm.com</a>&gt; <br><b>Sent:</b> Monday, September 15, 2025 8:56 PM<br><b>To:</b> Ricotta, Matthew &lt;<a href=\"mailto:m.ricotta@CENTURYMOLD.COM\">m.ricotta@CENTURYMOLD.COM</a>&gt;; Blake, Elizabeth &lt;<a href=\"mailto:e.blake@centurymold.com\">e.blake@centurymold.com</a>&gt;; Rottier, Danielle &lt;<a href=\"mailto:danielle.rottier@centurymold.com\">danielle.rottier@centurymold.com</a>&gt;; <a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a><br><b>Subject:</b> Rick / intro to Century Mold </span><o:p></o:p></p>\n            </div>\n           </div>\n           <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n           <div id=\"dde62e0b9d2d3dbe0ad90ee1a0e018ac2c3f9fbc\">\n            <div id=\"3695363d23e92539dd775cf46042fb34a397127b\">\n             <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;line-height:0%\"><span style=\"font-size:1.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:white\">Hi all, Team Century Mold (aka the best in the biz), please meet my friend and colleague Rick Mislan. In addition to teaching at RIT and living in your backyard, Rick is connected to a family office t </span><o:p></o:p></p>\n            </div>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:1.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:white\">sophospsmartbannerend </span><o:p></o:p></p>\n           </div>\n           <div>\n            <div>\n             <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi all, </span><o:p></o:p></p>\n            </div>\n            <div>\n             <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n            </div>\n            <div>\n             <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Team Century Mold (aka the best in the biz), please meet my friend and colleague Rick Mislan. In addition to teaching at RIT and living in your backyard, Rick is connected to a family office that\'s recently secured&nbsp;a $1.5B fund that they are looking to deploy against hardening American supply chains for defense use cases, specifically focusing&nbsp;on autonomy and unmanned systems. </span><o:p></o:p></p>\n            </div>\n            <div>\n             <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n            </div>\n            <div>\n             <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick may want to tour the Rochester plant and discuss other collaboration opportunities. I\'ll let y\'all take it from here! </span><o:p></o:p></p>\n            </div>\n            <div>\n             <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n            </div>\n            <div>\n             <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks, </span><o:p></o:p></p>\n            </div>\n            <div>\n             <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Jen </span><o:p></o:p></p>\n            </div>\n            <div>\n             <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n            </div>\n            <div>\n             <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n            </div>\n            <div>\n             <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n            </div>\n            <div>\n             <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n            </div>\n            <div>\n             <div>\n              <div>\n               <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"518\" style=\"width:388.2pt;border-collapse:collapse\">\n                <tbody>\n                 <tr>\n                  <td style=\"padding:0in 0in 0in 0in\">\n                   <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"518\" style=\"width:388.2pt;border-collapse:collapse\">\n                    <tbody>\n                     <tr>\n                      <td valign=\"top\" style=\"padding:0in 0in 0in 0in\"><h2 style=\"margin:0in\"><span style=\"font-size:13.5pt;font-family:&quot;Helvetica&quot;,sans-serif;color:#231E4A\">Jennifer&nbsp;Kay </span><o:p></o:p></h2><p style=\"margin:0in;line-height:16.5pt\"><span style=\"font-size:10.5pt;font-family:&quot;Helvetica&quot;,sans-serif;color:#231E4A\">Principal&nbsp;|&nbsp;Deep Tech Go to Market </span><o:p></o:p></p><p style=\"margin:0in;line-height:16.5pt\"><span style=\"font-size:10.5pt;font-family:&quot;Helvetica&quot;,sans-serif;color:#231E4A\">Offering commercial go to market for dual-use tech </span><o:p></o:p></p>\n                       <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"473\" style=\"width:354.45pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\n                        <tbody>\n                         <tr style=\"height:.25in\">\n                          <td style=\"padding:0in 0in 0in 0in;height:.25in\"></td>\n                         </tr>\n                         <tr style=\"height:.6pt\">\n                          <td width=\"473\" style=\"width:354.45pt;border:none;border-bottom:solid #231E4A 1.0pt;padding:0in 0in 0in 0in;height:.6pt\"></td>\n                         </tr>\n                         <tr style=\"height:.25in\">\n                          <td style=\"padding:0in 0in 0in 0in;height:.25in\"></td>\n                         </tr>\n                        </tbody>\n                       </table><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n                       <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"473\" style=\"width:354.45pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\n                        <tbody>\n                         <tr style=\"height:15.0pt\">\n                          <td width=\"30\" style=\"width:22.5pt;padding:0in 0in 0in 0in;height:15.0pt\">\n                           <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"30\" style=\"width:22.5pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\n                            <tbody>\n                             <tr>\n                              <td valign=\"bottom\" style=\"padding:0in 0in 0in 0in\"><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:white;background:#231E4A\"><img border=\"0\" width=\"13\" height=\"13\" style=\"width:.1319in;height:.1319in\" id=\"_x0000_i1028\" src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/phone-icon-2x.png\" alt=\"mobilePhone\"></span><o:p></o:p></p></td>\n                             </tr>\n                            </tbody>\n                           </table></td>\n                          <td style=\"padding:0in 0in 0in 0in;height:15.0pt\"><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:#231E4A\"><a href=\"tel:615-630-8068\" target=\"_blank\"><span style=\"font-size:9.0pt;color:#231E4A\">615-630-8068</span></a> </span><o:p></o:p></p></td>\n                         </tr>\n                         <tr style=\"height:15.0pt\">\n                          <td width=\"30\" style=\"width:22.5pt;padding:0in 0in 0in 0in;height:15.0pt\">\n                           <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"30\" style=\"width:22.5pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\n                            <tbody>\n                             <tr>\n                              <td valign=\"bottom\" style=\"padding:0in 0in 0in 0in\"><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:white;background:#231E4A\"><img border=\"0\" width=\"13\" height=\"13\" style=\"width:.1319in;height:.1319in\" id=\"_x0000_i1027\" src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/email-icon-2x.png\" alt=\"emailAddress\"></span><o:p></o:p></p></td>\n                             </tr>\n                            </tbody>\n                           </table></td>\n                          <td style=\"padding:0in 0in 0in 0in;height:15.0pt\"><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"mailto:Jen@DeepTechGTM.com\" target=\"_blank\"><span style=\"font-size:9.0pt;color:#231E4A\">Jen@DeepTechGTM.com</span></a> </span><o:p></o:p></p></td>\n                         </tr>\n                         <tr style=\"height:15.0pt\">\n                          <td width=\"30\" style=\"width:22.5pt;padding:0in 0in 0in 0in;height:15.0pt\">\n                           <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"30\" style=\"width:22.5pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\n                            <tbody>\n                             <tr>\n                              <td valign=\"bottom\" style=\"padding:0in 0in 0in 0in\"><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:white;background:#231E4A\"><img border=\"0\" width=\"13\" height=\"13\" style=\"width:.1319in;height:.1319in\" id=\"_x0000_i1026\" src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/link-icon-2x.png\" alt=\"website\"></span><o:p></o:p></p></td>\n                             </tr>\n                            </tbody>\n                           </table></td>\n                          <td style=\"padding:0in 0in 0in 0in;height:15.0pt\"><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://us-east-2.protection.sophos.com?d=deeptechgtm.com&amp;u=aHR0cHM6Ly9kZWVwdGVjaGd0bS5jb20v&amp;i=NWE0MmE2M2EwYTczNDQxNzgwMzIzMmNj&amp;t=TldHT21pOVMrQnc1QS9EOEpwNmFMd2U2MFRIdURzb3E3UTlSaEFrU2tqYz0=&amp;h=3c9cbb7ae9ea477292738775fa990c2e&amp;s=AVNPUEhUT0NFTkNSWVBUSVbtVtDurjG3awJTMAs2DBBeJDosvMTyBzoEmpKDp9Qbtw\" target=\"_blank\"><span style=\"font-size:9.0pt;color:#231E4A\">DeepTechGTM.com</span></a> </span><o:p></o:p></p></td>\n                         </tr>\n                        </tbody>\n                       </table></td>\n                      <td width=\"45\" style=\"width:33.75pt;padding:0in 0in 0in 0in\"></td>\n                     </tr>\n                    </tbody>\n                   </table></td>\n                 </tr>\n                 <tr>\n                  <td style=\"padding:0in 0in 0in 0in\"></td>\n                 </tr>\n                </tbody>\n               </table>\n               <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; </span><o:p></o:p></p>\n               <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"547\" style=\"width:409.95pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\n                <tbody>\n                 <tr>\n                  <td style=\"padding:0in 0in 0in 0in\"></td>\n                 </tr>\n                </tbody>\n               </table>\n              </div>\n             </div>\n            </div>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"1\" height=\"1\" style=\"width:.0069in;height:.0069in\" id=\"_x0000_i1025\" src=\"https://d2LSMm04.na1.hs-salescrm-engage.com/Cto/2O+23284/d2LSMm04/R5Q8b48CrN56kt9Z2fD5tW3DNv9w1_jP7GW1V3GZL1W-WmZW1GzmYc3LCDCYW3M0g1n1N6TqrW3yRLx522VWWjf1Q2MDY12\"></span><o:p></o:p></p>\n           </div>\n          </div>\n         </div>\n        </div>\n       </blockquote>\n      </div>\n     </div>\n    </div>\n   </blockquote>\n  </div>\n </body>\n</html>','How does 2pm Thursday work for you?  Do you want to come to our place?\r\n\r\nCentury Mold Co., Inc.\r\n25 Vantage Point Drive\r\nRochester, New York 14624\r\n\r\n\r\n\r\n\r\nMatthew C. Ricotta\r\nVice President of Sales Strategy & Sales Operations\r\nCentury Mold Co., Inc.\r\n25 Vantage Point Drive\r\nRochester, New York 14624\r\nCell: (585) 507-1219\r\nm.ricotta@centurymold.com<mailto:m.ricotta@centurymold.com>\r\n\r\n[cid:image001.jpg@01DC315D.610B43C0]\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Monday, September 29, 2025 3:26 PM\r\nTo: Ricotta, Matthew <m.ricotta@CENTURYMOLD.COM>; Blake, Elizabeth <e.blake@centurymold.com>; Rottier, Danielle <danielle.rottier@centurymold.com>\r\nSubject: RE: Rick / intro to Century Mold\r\n\r\n\r\nI think that will work.\r\nLet me know what’s best.\r\nThanks!\r\nRick\r\n\r\nOn September 29, 2025 at 08:00:38, Ricotta, Matthew (m.ricotta@centurymold.com<mailto:m.ricotta@centurymold.com>) wrote:\r\nHi Rick,\r\n\r\nAre you available Thursday afternoon? We have a customer in town until noon however we can be available in the afternoon.\r\n\r\nMatthew C. Ricotta\r\nVice President of Sales Strategy & Sales Operations\r\nCentury Mold Co., Inc.\r\n25 Vantage Point Drive\r\nRochester, New York 14624\r\nCell: (585) 507-1219\r\nm.ricotta@centurymold.com<mailto:m.ricotta@centurymold.com>\r\n\r\n[cid:image001.jpg@01DC315D.610B43C0]\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Sunday, September 28, 2025 9:05 AM\r\nTo: Blake, Elizabeth <e.blake@centurymold.com<mailto:e.blake@centurymold.com>>; Rottier, Danielle <danielle.rottier@centurymold.com<mailto:danielle.rottier@centurymold.com>>; Ricotta, Matthew <m.ricotta@CENTURYMOLD.COM<mailto:m.ricotta@CENTURYMOLD.COM>>\r\nSubject: RE: Rick / intro to Century Mold\r\n\r\nChecking in again to see if there isn’t time this week to connect. Tuesday or Thursday or next week same days? Thanks! Rick Rick Mislan, PhD, Founder, CTO https://mavrix1.com<https://us-east-2.protection.sophos.com?d=mavrix1.com&u=aHR0cHM6Ly9tYXZyaXgxLmNvbQ==&i=NWE0MmE2M2EwYTczNDQxNzgwMzIzMmNj&t=OUh1c0pVeGZ5VStDYnA0NHZORjB0TU1PeTh5c0tyckdOU0I3S2Y0SWtkYz0=&h=b8861dfc29a6481f8328da136291687b&s=AVNPUEhUT0NFTkNSWVBUSVZAh6YX1jEL4DWnGl5QCuub> CONFIDENTIALITY NOTICE Th\r\nsophospsmartbannerend\r\nChecking in again to see if there isn’t time this week to connect.\r\nTuesday or Thursday or next week same days?\r\nThanks!\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:image002.png@01DC315D.610B43C0]\r\nhttps://mavrix1.com<https://us-east-2.protection.sophos.com?d=mavrix1.com&u=aHR0cHM6Ly9tYXZyaXgxLmNvbS8=&i=NWE0MmE2M2EwYTczNDQxNzgwMzIzMmNj&t=SVFyWGp6a2pXWUFzZENKTnRZd1NRVzU1TWU0R0VqZk9pRUd5ZlJOcWxRTT0=&h=b38fb10393b8457b89f0ec8e5079b2e9&s=AVNPUEhUT0NFTkNSWVBUSVZAh6YX1jEL4DWnGl5QCuub>\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\nOn September 16, 2025 at 7:35:34 AM, Ricotta, Matthew (m.ricotta@centurymold.com<mailto:m.ricotta@centurymold.com>) wrote:\r\nGood Morning Rick,\r\n\r\nNice to virtually meet you.  RIT is a great place, I am a 2003 graduate and still actively involved with the university as I serve as a member of the National Council for Engineering Technology.\r\n\r\nIt would be great to connect sometime soon.  We can have you over and show you around and then grab some lunch.  Our building is only 15 minutes from RIT.  Are there any dates and times that might work for you?\r\n\r\n@Jennifer Kay<mailto:jen@deeptechgtm.com>  thanks for the connection.\r\n\r\nBest Regards,\r\n\r\nMatt\r\n\r\n\r\nMatthew C. Ricotta\r\nVice President of Sales Strategy & Sales Operations\r\nCentury Mold Co., Inc.\r\n25 Vantage Point Drive\r\nRochester, New York 14624\r\nCell: (585) 507-1219\r\nm.ricotta@centurymold.com<mailto:m.ricotta@centurymold.com>\r\n\r\n[cid:image001.jpg@01DC315D.610B43C0]\r\n\r\nFrom: Jennifer Kay <jen@deeptechgtm.com<mailto:jen@deeptechgtm.com>>\r\nSent: Monday, September 15, 2025 8:56 PM\r\nTo: Ricotta, Matthew <m.ricotta@CENTURYMOLD.COM<mailto:m.ricotta@CENTURYMOLD.COM>>; Blake, Elizabeth <e.blake@centurymold.com<mailto:e.blake@centurymold.com>>; Rottier, Danielle <danielle.rottier@centurymold.com<mailto:danielle.rottier@centurymold.com>>; rick@mavrix.one<mailto:rick@mavrix.one>\r\nSubject: Rick / intro to Century Mold\r\n\r\nHi all, Team Century Mold (aka the best in the biz), please meet my friend and colleague Rick Mislan. In addition to teaching at RIT and living in your backyard, Rick is connected to a family office t\r\nsophospsmartbannerend\r\nHi all,\r\n\r\nTeam Century Mold (aka the best in the biz), please meet my friend and colleague Rick Mislan. In addition to teaching at RIT and living in your backyard, Rick is connected to a family office that\'s recently secured a $1.5B fund that they are looking to deploy against hardening American supply chains for defense use cases, specifically focusing on autonomy and unmanned systems.\r\n\r\nRick may want to tour the Rochester plant and discuss other collaboration opportunities. I\'ll let y\'all take it from here!\r\n\r\nThanks,\r\nJen\r\n\r\n\r\n\r\n\r\nJennifer Kay\r\n\r\nPrincipal | Deep Tech Go to Market\r\n\r\nOffering commercial go to market for dual-use tech\r\n\r\n[mobilePhone]\r\n615-630-8068<tel:615-630-8068>\r\n[emailAddress]\r\nJen@DeepTechGTM.com<mailto:Jen@DeepTechGTM.com>\r\n[website]\r\nDeepTechGTM.com<https://us-east-2.protection.sophos.com?d=deeptechgtm.com&u=aHR0cHM6Ly9kZWVwdGVjaGd0bS5jb20v&i=NWE0MmE2M2EwYTczNDQxNzgwMzIzMmNj&t=TldHT21pOVMrQnc1QS9EOEpwNmFMd2U2MFRIdURzb3E3UTlSaEFrU2tqYz0=&h=3c9cbb7ae9ea477292738775fa990c2e&s=AVNPUEhUT0NFTkNSWVBUSVbtVtDurjG3awJTMAs2DBBeJDosvMTyBzoEmpKDp9Qbtw>\r\n\r\n\r\n',0,0,0,0,0,0,'2025-09-29 20:23:24','2025-12-09 19:29:20','2025-12-09 19:29:20','2025-12-09 19:29:20',NULL,NULL,NULL),
(814,4,'<706939709.276669.1759193316834@lor1-app93643.prod.linkedin.com>',NULL,NULL,'=?UTF-8?Q?=F0=9F=92=AC_Mavrix,_add_Trevor_Baldw?= =?UTF-8?Q?in_-_Chief_Executive_Officer?=','messages-noreply@linkedin.com','LinkedIn','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n              @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n            </style> <style>\r\n            @media (max-width: 480px) { .inline-button, .inline-button table { display: none !important; }\r\n            .full-width-button, .full-width-button table { display: table !important; } }\r\n          </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n            \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n            \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> <script type=\"application/ld+json\">\r\n    { \"@context\": \"http://schema.org\", \"@type\": \"EmailMessage\", \"potentialAction\": { \"@type\": \"ViewAction\", \"url\": \"https://www.linkedin.com/comm/mynetwork/send-invite/trevor-baldwin-a4053212/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midSig=1LIpRRwgvgoHY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A43115088-null-poh2nf%7Emg5u9zte%7Ees-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A43115088&amp;_sig=2gEsBPuNPgoHY1\",\r\n    \"name\": \"Connect\" }, \"description\": \"Connect with Trevor\", \"publisher\": { \"@type\": \"Organization\", \"name\":\r\n    \"LinkedIn\", \"url\": \"https://www.linkedin.com/\" } }\r\n  </script> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">Chief Executive Officer at The Baldwin Group</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-left: auto; margin-right: auto; margin-top: 0px; margin-bottom: 0px; width: 512px; max-width: 512px; padding: 0px;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"bg-color-background-container \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1LIpRRwgvgoHY1&amp;trk=eml-email_pymk_02-header-0-home_glimmer_static_badging_with_count&amp;trkEmail=eml-email_pymk_02-header-0-home_glimmer_static_badging_with_count-null-poh2nf~mg5u9zte~es-null-null&amp;eid=poh2nf-mg5u9zte-es&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVlYjU4NmNkZDM0MDlmYWM4YzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkOWY4ZTk1NzkwZjg5MTY5MWRkOWFlNzUyM2VmYjU3YzRjNzZkODgzMDRjN2I1NjYsMSwx\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img class=\"h-[37px] w-[101px]\" alt=\"LinkedIn\" src=\"https://static.licdn.com/aero-v1/sc/h/2fp5x7ci191mxbdy1eynscn59\" data-test-header-static-badging-img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 37px; width: 101px;\" width=\"101\" height=\"37\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" data-test-header-notification-badges style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/messaging/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1LIpRRwgvgoHY1&amp;trk=eml-email_pymk_02-header-0-messaging_glimmer&amp;trkEmail=eml-email_pymk_02-header-0-messaging_glimmer-null-poh2nf~mg5u9zte~es-null-null&amp;eid=poh2nf-mg5u9zte-es&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVlYjU4NmNkZDM0MDlmYWM4YzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkOWY4ZTk1NzkwZjg5MTY5MWRkOWFlNzUyM2VmYjU3YzRjNzZkODgzMDRjN2I1NjYsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Messaging icon\" src=\"https://static.licdn.com/aero-v1/sc/h/ekkp8yi9j4xx65umpdz3rdmbp\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1LIpRRwgvgoHY1&amp;trk=eml-email_pymk_02-header-0-my_network_glimmer&amp;trkEmail=eml-email_pymk_02-header-0-my_network_glimmer-null-poh2nf~mg5u9zte~es-null-null&amp;eid=poh2nf-mg5u9zte-es&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVlYjU4NmNkZDM0MDlmYWM4YzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkOWY4ZTk1NzkwZjg5MTY5MWRkOWFlNzUyM2VmYjU3YzRjNzZkODgzMDRjN2I1NjYsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Mynetwork icon\" src=\"https://static.licdn.com/aero-v1/sc/h/4yxfb6j5ycpjfjgehfqgmdx9w\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/notifications/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1LIpRRwgvgoHY1&amp;trk=eml-email_pymk_02-header-0-notifications_glimmer&amp;trkEmail=eml-email_pymk_02-header-0-notifications_glimmer-null-poh2nf~mg5u9zte~es-null-null&amp;eid=poh2nf-mg5u9zte-es&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVlYjU4NmNkZDM0MDlmYWM4YzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkOWY4ZTk1NzkwZjg5MTY5MWRkOWFlNzUyM2VmYjU3YzRjNzZkODgzMDRjN2I1NjYsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Notifications icon\" src=\"https://static.licdn.com/aero-v1/sc/h/eh1e9j5bszh6p379hn269p3ps\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"px-0 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 0px; padding-right: 0px; padding-bottom: 24px;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"pymk-hero-banner\"> <td class=\"px-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"px-3 py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px; padding-left: 24px; padding-right: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/in/trevor-baldwin-a4053212?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1LIpRRwgvgoHY1&amp;trk=eml-email_pymk_02-pymk_hero-0-profile_name_link&amp;trkEmail=eml-email_pymk_02-pymk_hero-0-profile_name_link-null-poh2nf~mg5u9zte~es-null-null&amp;eid=poh2nf-mg5u9zte-es&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVlYjU4NmNkZDM0MDlmYWM4YzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkOWY4ZTk1NzkwZjg5MTY5MWRkOWFlNzUyM2VmYjU3YzRjNzZkODgzMDRjN2I1NjYsMSwx\" target=\"_blank\" class=\"text-system-gray-90\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #282828;\"> <h2 class=\"text-lg font-semibold leading-regular\" data-test-id=\"pymk-hero_header\" style=\"margin: 0; font-size: 20px; font-weight: 600; line-height: 1.25;\"> Do you know Trevor? </h2> </a> </td> </tr> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <h4 class=\"text-sm text-system-gray-90 leading-regular\" data-test-id=\"pymk-hero_subheader\" style=\"margin: 0; font-weight: 500; font-size: 14px; line-height: 1.25; color: #282828;\"> Request to connect with members you know and trust </h4> </td> </tr> <tr> <td class=\"pt-[10px]\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 10px;\"> <a href=\"https://www.linkedin.com/comm/in/trevor-baldwin-a4053212?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1LIpRRwgvgoHY1&amp;trk=eml-email_pymk_02-pymk_hero-0-profile_image&amp;trkEmail=eml-email_pymk_02-pymk_hero-0-profile_image-null-poh2nf~mg5u9zte~es-null-null&amp;eid=poh2nf-mg5u9zte-es&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVlYjU4NmNkZDM0MDlmYWM4YzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkOWY4ZTk1NzkwZjg5MTY5MWRkOWFlNzUyM2VmYjU3YzRjNzZkODgzMDRjN2I1NjYsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px]\" src=\"https://static.licdn.com/aero-v1/sc/h/4eby4moebno1i6r34if7lud8o\" alt=\"Trevor Baldwin’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </a> </td> </tr> <tr> <td class=\"pt-[10px]\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 10px;\"> <a href=\"https://www.linkedin.com/comm/in/trevor-baldwin-a4053212?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1LIpRRwgvgoHY1&amp;trk=eml-email_pymk_02-pymk_hero-0-profile_name_link&amp;trkEmail=eml-email_pymk_02-pymk_hero-0-profile_name_link-null-poh2nf~mg5u9zte~es-null-null&amp;eid=poh2nf-mg5u9zte-es&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVlYjU4NmNkZDM0MDlmYWM4YzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkOWY4ZTk1NzkwZjg5MTY5MWRkOWFlNzUyM2VmYjU3YzRjNzZkODgzMDRjN2I1NjYsMSwx\" target=\"_blank\" class=\"text-system-gray-90\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #282828;\"> <h2 class=\"text-lg font-semibold leading-regular\" style=\"margin: 0; font-size: 20px; font-weight: 600; line-height: 1.25;\"> Trevor Baldwin </h2> </a> </td> </tr> <tr> <td class=\"text-xs text-system-gray-90 leading-regular pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px; font-size: 12px; line-height: 1.25; color: #282828;\"> Chief Executive Officer at The Baldwin Group </td> </tr> <tr> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/trevor-baldwin-a4053212/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midSig=1LIpRRwgvgoHY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A43115088-null-poh2nf%7Emg5u9zte%7Ees-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A43115088&amp;_sig=2gEsBPuNPgoHY1\" target=\"_blank\" aria-label=\"Connect\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid w-[100vw] max-w-[400px]\" data-test-id=\"pymk-hero_default-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; width: 100vw; max-width: 400px; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/trevor-baldwin-a4053212/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midSig=1LIpRRwgvgoHY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A43115088-null-poh2nf%7Emg5u9zte%7Ees-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A43115088&amp;_sig=2gEsBPuNPgoHY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"pymk-section-header\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <h2 class=\"text-lg font-semibold leading-regular text-system-gray-90 text-center\" style=\"margin: 0; text-align: center; font-size: 20px; font-weight: 600; line-height: 1.25; color: #282828;\"> More people you may know </h2> </td> </tr> <tr data-test-id=\"pymk-section-body\"> <td align=\"center\" class=\"pt-1.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"></td> <td class=\"pr-1 w-[400px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 400px; padding-right: 8px;\" width=\"400\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"w-1/2 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/isinger?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1LIpRRwgvgoHY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mg5u9zte~es-null-null&amp;eid=poh2nf-mg5u9zte-es&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVlYjU4NmNkZDM0MDlmYWM4YzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkOWY4ZTk1NzkwZjg5MTY5MWRkOWFlNzUyM2VmYjU3YzRjNzZkODgzMDRjN2I1NjYsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/C4E03AQHz0gL3eu2ZNQ/profile-displayphoto-shrink_200_200/profile-displayphoto-shrink_200_200/0/1516315818203?e=2147483647&amp;v=beta&amp;t=hvhRugLoLH1fOjF9oGrUM9Z9LK81uqw3MOg5gTRuKJY\" alt=\"Ian Singer’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Ian Singer </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer at LibraryPass,… </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/isinger/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midSig=1LIpRRwgvgoHY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A10648139-null-poh2nf%7Emg5u9zte%7Ees-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A10648139&amp;_sig=1vE8yIe2ngoHY1\" target=\"_blank\" aria-label=\"Connect with Ian Singer\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/isinger/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midSig=1LIpRRwgvgoHY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A10648139-null-poh2nf%7Emg5u9zte%7Ees-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A10648139&amp;_sig=1vE8yIe2ngoHY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"w-1/2 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/jasonmonteleone?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1LIpRRwgvgoHY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mg5u9zte~es-null-null&amp;eid=poh2nf-mg5u9zte-es&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVlYjU4NmNkZDM0MDlmYWM4YzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkOWY4ZTk1NzkwZjg5MTY5MWRkOWFlNzUyM2VmYjU3YzRjNzZkODgzMDRjN2I1NjYsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQFaRMsEm1E03Q/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1690291888022?e=2147483647&amp;v=beta&amp;t=Z5AWXwyc94p3sZU41PJZaL2dl-PloFFj_WbHjlSxzT4\" alt=\"Jason Monteleone, CPA, CMA, MBA’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Jason Monteleone, CPA, CMA, MBA </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> President and Chief Executive Officer… </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/jasonmonteleone/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midSig=1LIpRRwgvgoHY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A12004124-null-poh2nf%7Emg5u9zte%7Ees-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A12004124&amp;_sig=11tQOOItXgoHY1\" target=\"_blank\" aria-label=\"Connect with Jason Monteleone, CPA, CMA, MBA\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/jasonmonteleone/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midSig=1LIpRRwgvgoHY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A12004124-null-poh2nf%7Emg5u9zte%7Ees-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A12004124&amp;_sig=11tQOOItXgoHY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/pnorth33?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1LIpRRwgvgoHY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mg5u9zte~es-null-null&amp;eid=poh2nf-mg5u9zte-es&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVlYjU4NmNkZDM0MDlmYWM4YzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkOWY4ZTk1NzkwZjg5MTY5MWRkOWFlNzUyM2VmYjU3YzRjNzZkODgzMDRjN2I1NjYsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQHCtQ0V-s9Llg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1699555813431?e=2147483647&amp;v=beta&amp;t=G1Ddue75x0ZnY4OApy0VgzI0hAhx4m8w6Mxh0oh7-Ns\" alt=\"Phillip North’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Phillip North </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer, Zelestra US </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/pnorth33/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midSig=1LIpRRwgvgoHY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A55911556-null-poh2nf%7Emg5u9zte%7Ees-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A55911556&amp;_sig=1Tfi0E50HgoHY1\" target=\"_blank\" aria-label=\"Connect with Phillip North\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/pnorth33/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midSig=1LIpRRwgvgoHY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A55911556-null-poh2nf%7Emg5u9zte%7Ees-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A55911556&amp;_sig=1Tfi0E50HgoHY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/ernest-j-nedder-256a109b?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1LIpRRwgvgoHY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mg5u9zte~es-null-null&amp;eid=poh2nf-mg5u9zte-es&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVlYjU4NmNkZDM0MDlmYWM4YzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkOWY4ZTk1NzkwZjg5MTY5MWRkOWFlNzUyM2VmYjU3YzRjNzZkODgzMDRjN2I1NjYsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQGE8bXzWZLPIA/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1718822014172?e=2147483647&amp;v=beta&amp;t=xN86-w48hX_AtHB96SpjBlE2KEwNKoQjoNmPxEq9GyQ\" alt=\"Ernest J. Nedder’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Ernest J. Nedder </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> Chief Executive Officer at RSM… </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/ernest-j-nedder-256a109b/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midSig=1LIpRRwgvgoHY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A357841506-null-poh2nf%7Emg5u9zte%7Ees-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A357841506&amp;_sig=0I92GHXULgoHY1\" target=\"_blank\" aria-label=\"Connect with Ernest J. Nedder\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/ernest-j-nedder-256a109b/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midSig=1LIpRRwgvgoHY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A357841506-null-poh2nf%7Emg5u9zte%7Ees-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A357841506&amp;_sig=0I92GHXULgoHY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/r-lawrence-moss?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1LIpRRwgvgoHY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mg5u9zte~es-null-null&amp;eid=poh2nf-mg5u9zte-es&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVlYjU4NmNkZDM0MDlmYWM4YzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkOWY4ZTk1NzkwZjg5MTY5MWRkOWFlNzUyM2VmYjU3YzRjNzZkODgzMDRjN2I1NjYsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/C4E03AQGvcPOORaxsmQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1647268033594?e=2147483647&amp;v=beta&amp;t=LEbUVBus7pbndQWyg4QPZGpQj9AJB3ECnacRgbQf1So\" alt=\"R. Lawrence Moss, MD, FACS, FAAP’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> R. Lawrence Moss, MD, FACS, FAAP </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> President &amp; Chief Executive Officer… </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/r-lawrence-moss/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midSig=1LIpRRwgvgoHY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A375717513-null-poh2nf%7Emg5u9zte%7Ees-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A375717513&amp;_sig=1yCjotY7HgoHY1\" target=\"_blank\" aria-label=\"Connect with R. Lawrence Moss, MD, FACS, FAAP\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/r-lawrence-moss/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midSig=1LIpRRwgvgoHY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A375717513-null-poh2nf%7Emg5u9zte%7Ees-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A375717513&amp;_sig=1yCjotY7HgoHY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"w-1/2 pt-1 pl-1\" data-test-id=\"pymk-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 50%; padding-left: 8px; padding-top: 8px;\" width=\"50%\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" data-test-id=\"pymk-entity\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1.5 border-1 border-solid border-system-gray-30 rounded-md p-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; border-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 8px; padding-bottom: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"top\" align=\"center\" class=\"h-[170px]\" data-test-id=\"small-view-header\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 170px;\" height=\"170\"> <a href=\"https://www.linkedin.com/comm/in/coryedmondson?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1LIpRRwgvgoHY1&amp;trk=eml-email_pymk_02-pymk_card-0-profile_link&amp;trkEmail=eml-email_pymk_02-pymk_card-0-profile_link-null-poh2nf~mg5u9zte~es-null-null&amp;eid=poh2nf-mg5u9zte-es&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVlYjU4NmNkZDM0MDlmYWM4YzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkOWY4ZTk1NzkwZjg5MTY5MWRkOWFlNzUyM2VmYjU3YzRjNzZkODgzMDRjN2I1NjYsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-12 h-12 w-[88px] h-[88px] align-top\" src=\"https://media.licdn.com/dms/image/v2/D5603AQG4tl0QIaqljg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1681296942159?e=2147483647&amp;v=beta&amp;t=dGgtVPhU1AsCV0nmrHpNiJaEIvI-fO2WKHBrmosrnEM\" alt=\"Cory Edmondson, MBA, FACHE’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 96px; width: 96px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"96\" height=\"96\"> </td> </tr> <tr> <td align=\"center\" class=\"pt-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular font-semibold text-system-gray-90\" style=\"margin: 0; font-size: 14px; font-weight: 600; line-height: 1.25; color: #282828;\"> Cory Edmondson, MBA, FACHE </p> </td> </tr> <tr> <td class=\"pt-0.5\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 4px;\"> <p class=\"text-sm leading-regular text-system-gray-90\" style=\"margin: 0; font-weight: 400; font-size: 14px; line-height: 1.25; color: #282828;\"> President/Chief Executive Officer </p> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td valign=\"bottom\" class=\"h-[70px]\" data-test-id=\"small-view-bottom\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 70px;\" height=\"70\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" align=\"center\" valign=\"bottom\" data-test-id=\"mutual-connections-small-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\">   </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/coryedmondson/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midSig=1LIpRRwgvgoHY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A392116942-null-poh2nf%7Emg5u9zte%7Ees-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A392116942&amp;_sig=2cVLONclDgoHY1\" target=\"_blank\" aria-label=\"Connect with Cory Edmondson, MBA, FACHE\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/send-invite/coryedmondson/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midSig=1LIpRRwgvgoHY1&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A392116942-null-poh2nf%7Emg5u9zte%7Ees-null-null&amp;trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A392116942&amp;_sig=2cVLONclDgoHY1\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Connect </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"></td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-2 px-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button px-3\" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/add-connections/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1LIpRRwgvgoHY1&amp;trk=eml-email_pymk_02-see_more-0-cta&amp;trkEmail=eml-email_pymk_02-see_more-0-cta-null-poh2nf~mg5u9zte~es-null-null&amp;eid=poh2nf-mg5u9zte-es&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVlYjU4NmNkZDM0MDlmYWM4YzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkOWY4ZTk1NzkwZjg5MTY5MWRkOWFlNzUyM2VmYjU3YzRjNzZkODgzMDRjN2I1NjYsMSwx\" target=\"_blank\" aria-label=\"See more\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/add-connections/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1LIpRRwgvgoHY1&amp;trk=eml-email_pymk_02-see_more-0-cta&amp;trkEmail=eml-email_pymk_02-see_more-0-cta-null-poh2nf~mg5u9zte~es-null-null&amp;eid=poh2nf-mg5u9zte-es&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVlYjU4NmNkZDM0MDlmYWM4YzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkOWY4ZTk1NzkwZjg5MTY5MWRkOWFlNzUyM2VmYjU3YzRjNzZkODgzMDRjN2I1NjYsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> See more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-lg text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 20px; color: #114951;\"> Get the new LinkedIn desktop app </h2> </td> </tr> <tr> <td class=\"text-center pb-2\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <a href=\"https://apps.microsoft.com/store/detail/9WZDNCRFJ4Q7?launch=true&amp;cid=linkedin_email_upsell&amp;mode=full\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it from Microsoft\" src=\"https://static.licdn.com/aero-v1/sc/h/ejpkkpwvqks31a3cjqokb7fbm\" class=\"h-[40px] w-[112px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 112px;\" width=\"112\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-md text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 16px; color: #114951;\"> Also available on mobile </h2> </td> </tr> <tr> <td class=\"text-center\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <a href=\"https://itunes.apple.com/us/app/linkedin/id288429040?pt=10746&amp;ct=st_appsite_flagship&amp;mt=8\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Download on the App Store\" src=\"https://static.licdn.com/aero-v1/sc/h/76yzkd0h5kiv27lrd4yaenylk\" class=\"h-[40px] w-[120px] pr-1\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 120px; padding-right: 8px;\" width=\"120\" height=\"40\"> </a> <a href=\"https://play.google.com/store/apps/details?id=com.linkedin.android&amp;referrer=st_appsite_flagship\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it on Google Play\" src=\"https://static.licdn.com/aero-v1/sc/h/142qudwblp58zwmc9vkqfplug\" class=\"h-[40px] w-[134px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 134px;\" width=\"134\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px;\"><hr class=\"border-none bg-[#e0dfdd] h-[1px]\" style=\"height: 1px; border-style: none; background-color: #e0dfdd;\"></td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" data-test-id=\"email-footer__intended\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1LIpRRwgvgoHY1&amp;trk=eml-email_pymk_02-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_pymk_02-SecurityHelp-0-footerglimmer-null-poh2nf~mg5u9zte~es-null-null&amp;eid=poh2nf-mg5u9zte-es&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVlYjU4NmNkZDM0MDlmYWM4YzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkOWY4ZTk1NzkwZjg5MTY5MWRkOWFlNzUyM2VmYjU3YzRjNzZkODgzMDRjN2I1NjYsMSwx\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving People You May Know notification emails.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1LIpRRwgvgoHY1&amp;trk=eml-email_pymk_02-unsubscribe-0-footerGlimmer&amp;trkEmail=eml-email_pymk_02-unsubscribe-0-footerGlimmer-null-poh2nf~mg5u9zte~es-null-null&amp;eid=poh2nf-mg5u9zte-es&amp;loid=AQHc-UGFuSrgNwAAAZmYF7t9Qlmd1uGWsU7q_7Phcd--LCABxy-anjdkJRf-VhWTagaE1cOEGXRMDXxsqRHcBrqDBlee0Zkqfkj1\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Unsubscribe</a>   ·   <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1LIpRRwgvgoHY1&amp;trk=eml-email_pymk_02-help-0-footerglimmer&amp;trkEmail=eml-email_pymk_02-help-0-footerglimmer-null-poh2nf~mg5u9zte~es-null-null&amp;eid=poh2nf-mg5u9zte-es&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVlYjU4NmNkZDM0MDlmYWM4YzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkOWY4ZTk1NzkwZjg5MTY5MWRkOWFlNzUyM2VmYjU3YzRjNzZkODgzMDRjN2I1NjYsMSwx\" target=\"_blank\" data-test-help-link class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=1LIpRRwgvgoHY1&amp;trk=eml-email_pymk_02-footer-0-logoGlimmer&amp;trkEmail=eml-email_pymk_02-footer-0-logoGlimmer-null-poh2nf~mg5u9zte~es-null-null&amp;eid=poh2nf-mg5u9zte-es&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVlYjU4NmNkZDM0MDlmYWM4YzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkOWY4ZTk1NzkwZjg5MTY5MWRkOWFlNzUyM2VmYjU3YzRjNzZkODgzMDRjN2I1NjYsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/aero-v1/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFuTlhVNWVuUmxMV1Z6OlpXMWhhV3hmY0hsdGExOHdNZz09Og==.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','Do you know Trevor Baldwin?\r\n\r\nYes, connect: https://www.linkedin.com/comm/mynetwork/send-invite/trevor-baldwin-a4053212/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&midSig=1LIpRRwgvgoHY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A43115088-null-poh2nf%7Emg5u9zte%7Ees-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A43115088&_sig=2gEsBPuNPgoHY1\r\n\r\n\r\nMore people you may know\r\n            \r\n    Ian Singer\r\nChief Executive Officer at LibraryPass, Inc.\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/isinger/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&midSig=1LIpRRwgvgoHY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A10648139-null-poh2nf%7Emg5u9zte%7Ees-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A10648139&_sig=1vE8yIe2ngoHY1\r\n            \r\n    Jason Monteleone, CPA, CMA, MBA\r\nPresident and Chief Executive Officer, Avania\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/jasonmonteleone/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&midSig=1LIpRRwgvgoHY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A12004124-null-poh2nf%7Emg5u9zte%7Ees-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A12004124&_sig=11tQOOItXgoHY1\r\n            \r\n    Phillip North\r\nChief Executive Officer, Zelestra US\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/pnorth33/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&midSig=1LIpRRwgvgoHY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A55911556-null-poh2nf%7Emg5u9zte%7Ees-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A55911556&_sig=1Tfi0E50HgoHY1\r\n            \r\n    Ernest J. Nedder\r\nChief Executive Officer at RSM International\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/ernest-j-nedder-256a109b/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&midSig=1LIpRRwgvgoHY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A357841506-null-poh2nf%7Emg5u9zte%7Ees-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A357841506&_sig=0I92GHXULgoHY1\r\n            \r\n    R. Lawrence Moss, MD, FACS, FAAP\r\nPresident & Chief Executive Officer, Nemours Children\'s Health\r\nhttps://www.linkedin.com/comm/mynetwork/send-invite/r-lawrence-moss/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&midSig=1LIpRRwgvgoHY1&midToken=AQE-iPshthTClw&trkEmail=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A375717513-null-poh2nf%7Emg5u9zte%7Ees-null-null&trk=eml-email_pymk_02-pymkCard-0-pymk_cta%3A+urn%3Ali%3Amember%3A375717513&_sig=1yCjotY7HgoHY1\r\n\r\nSee more people you might know:https://www.linkedin.com/comm/mynetwork/add-connections/?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&midToken=AQE-iPshthTClw&midSig=1LIpRRwgvgoHY1&trk=eml-email_pymk_02-see_more-0-cta~text&trkEmail=eml-email_pymk_02-see_more-0-cta~text-null-poh2nf~mg5u9zte~es-null-null&eid=poh2nf-mg5u9zte-es&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVlYjU4NmNkZDM0MDlmYWM4YzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkOWY4ZTk1NzkwZjg5MTY5MWRkOWFlNzUyM2VmYjU3YzRjNzZkODgzMDRjN2I1NjYsMSwx\r\n      \r\n\r\n----------------------------------------\r\n\r\nThis email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\nLearn why we included this: https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&midToken=AQE-iPshthTClw&midSig=1LIpRRwgvgoHY1&trk=eml-email_pymk_02-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_pymk_02-SecurityHelp-0-textfooterglimmer-null-poh2nf~mg5u9zte~es-null-null&eid=poh2nf-mg5u9zte-es&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVlYjU4NmNkZDM0MDlmYWM4YzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkOWY4ZTk1NzkwZjg5MTY5MWRkOWFlNzUyM2VmYjU3YzRjNzZkODgzMDRjN2I1NjYsMSwx\r\nYou are receiving People You May Know notification emails.\r\n\r\n\r\nUnsubscribe: https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&midToken=AQE-iPshthTClw&midSig=1LIpRRwgvgoHY1&trk=eml-email_pymk_02-unsubscribe-0-textfooterglimmer&trkEmail=eml-email_pymk_02-unsubscribe-0-textfooterglimmer-null-poh2nf~mg5u9zte~es-null-null&eid=poh2nf-mg5u9zte-es&loid=AQHc-UGFuSrgNwAAAZmYF7t9Qlmd1uGWsU7q_7Phcd--LCABxy-anjdkJRf-VhWTagaE1cOEGXRMDXxsqRHcBrqDBlee0Zkqfkj1\r\nHelp: https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_pymk_02%3BG8l2yUD4QSCZarADMLq0ag%3D%3D&midToken=AQE-iPshthTClw&midSig=1LIpRRwgvgoHY1&trk=eml-email_pymk_02-help-0-textfooterglimmer&trkEmail=eml-email_pymk_02-help-0-textfooterglimmer-null-poh2nf~mg5u9zte~es-null-null&eid=poh2nf-mg5u9zte-es&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExYmVlYjU4NmNkZDM0MDlmYWM4YzYyN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkOWY4ZTk1NzkwZjg5MTY5MWRkOWFlNzUyM2VmYjU3YzRjNzZkODgzMDRjN2I1NjYsMSwx\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.\r\nLinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',0,0,0,0,0,0,'2025-09-30 00:48:36','2025-12-09 19:29:21','2025-12-09 19:29:21','2025-12-09 19:29:21',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(815,4,'<CAGOCFXivW8qY=RDC3e5vZSG1iMigwvXgFoOD3uEuUAQiFKCDsw@mail.gmail.com>',NULL,NULL,'Re: Introduction - Bradenton Area EDC','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Elizabeth,</div><div><br></div><div>Received.  Thank you very much.  Talk to you tomorrow.  </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Sep 29, 2025 at 11:25 AM Elizabeth Cordes &lt;<a href=\"mailto:elizabethc@bradentonareaedc.com\">elizabethc@bradentonareaedc.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"msg-1432031112167248430\">\r\n\r\n\r\n\r\n\r\n\r\n<div lang=\"EN-US\" style=\"overflow-wrap: break-word;\">\r\n<div class=\"m_-1432031112167248430WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">Hi Nathan,<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">Yes, I can send out a teams meeting for 10am on Wednesday.<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">Kindest regards,<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:16pt;font-family:Calibri,sans-serif;color:rgb(0,121,161)\">Elizabeth Cordes</span></b><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:14pt;font-family:Calibri,sans-serif\">Director of Business Recruitment &amp; Expansion</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:14pt;font-family:Calibri,sans-serif;color:rgb(33,33,33)\">Bradenton Area Economic Development Corporation</span></b><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkMgQprkW6N3_xK6lZ3nwW1S-NPm50p7sBN5f0h3dq66mwW2GjSSw8RL3CVW33xj8Y6ZhQnFW8B_6mK8qmplbW5WwK0G2G_YVjW53D6_Y5Lk4fvVmQ8Vw8LF52TW6SWrYl61h3rKW88LMvF2-kzyzW5KGNsg8xdCxqW7SHJmB1mjN5vW2rlG897WMDzPW1BBKw92tpVTKVlKvg21tHf5qW4jvFnR5gVsT3MQr1RZRJmQDV2qYRZ2DbLGtW8Y0zjf1lyTzKW8n51Cp1SdFPtW4pq5Lw2FGSYWW6Crnr3504Hj0W10_0d46CbZH_W8-HBD28HVTTkW2F9mQK32sfkTW3FLWsK19JPkhW3MQ1lR5X7CbRV6Z9tF5wT04rVwn70p6PvdcRW2VzMRk4LRwRsN8-G3Jvlkl8CW4V4b027z_kCDW2Zd_BF1MHsNYW3ywjF96_k7P1W6M6gG05qzvn-W41F7KZ4Db1QcN5g7tT-4VghbW3nCrDL2bxJk6W3ZL2M82j4gsdW6GQgCX1njbDCN2Vg3g-fsLBrN4MBKxPxWj04W4hTYTm4_HKgJW1pL0Pk7Rm0w3W9k8_zw5BmwTxW2RGgqD3tqn4WVqfbLr6yx4MDW7cyNSJ1ss5-JW5gx4wD3wkGmgW5SWj8V1dvcTPW8l1kLv7QhjKcW8HyBXt606-YTW3xCnj97FPhrTW70CBXf6rN35kW6xl5Dj8j5H4ZN59Cdybzf8CBVFd7jR7R5c3qW3hvzZk7jpr59W8lNnhD22ptJdW6Lw0n16sGsmhW5dGmbt4WkGWvVbj6zz65tgGkN1nDBR9hX-HkW3fSwQg74ZgV_W2D6ZgL5mk-zKW7phXVN9kpmNYW1_BYH63rC16PW2G6Gfs3cDS6MV9F1Zs4BKsP-VJzcnY50kKtFW6Yxvmg1xb-WPN5KZx62G62mPW5RJmJ_2BvZD2W1-nqhz6Fy7SlVFmXH33BVZdKW2M7NhB1S8dMkW4yz52j5JD9B9W5-B9R_4KQ7fbN3fVlwswDBHxW92JFwN9b8Yg6VXSf_p2bRBzhW1G5gh055Ct_QW5R4FWT7nD7x7W7Chzdk2N-vg-W2G71QP1Tr_vyW65Qbpj3DrZP5W4Yb_jX6H8-3KW4BmqYF6k76WbVyrg7p4Sv4HkW4707lL442SJbN8GZW2CT_tBWN69dn7h5mr1vW3xx5vl2fvhK6W9hRpkl7898Q2W7GkS315yQZbdW8-pkBM48xPKDN5hXhm15L98VW5Z9fT13YW2-8W8PJ__S36Rr3PW6v_mV13c3zwNW935XTC6S79VLW3pB2Cx7TZwhnW4sQYNH6Tfpw7VMRnth1NQNCqV7Mytm7SltwvW977vVP6jHYJJW8mGHDY8w_VKCN3Qrw7mhDR5cW2kP64g22X09pW4CyBgB5Rsxl1W6ZKSHd47fycGW38Z7WW2yF23ZV4Kx5Q5dDHs9W3T8tx16tFScBW6Npzg-7cgGfyW4_lZy44N5nk4W6SGTKN24Kl35W6MRlsh6GRQ-ff7ln0Xb04\" target=\"_blank\"><span style=\"font-family:Calibri,sans-serif;color:rgb(5,99,193)\">5840\r\n 26<sup>th</sup> Street West, 26 West Center, Suite 232, Bradenton, FL 34207</span></a><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:Calibri,sans-serif;color:rgb(0,121,161)\">Email:</span></b><span style=\"font-family:Calibri,sans-serif\">\r\n</span><a href=\"mailto:ElizabethC@BradentonAreaEDC.com\" target=\"_blank\"><span style=\"font-family:Calibri,sans-serif;color:rgb(5,99,193)\">ElizabethC@BradentonAreaEDC.com</span></a><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:Calibri,sans-serif;color:rgb(0,121,161)\">Phone: </span></b><span style=\"font-family:Calibri,sans-serif\">941-803-9033</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:Calibri,sans-serif;color:rgb(0,121,161)\">Cell: </span></b><span style=\"font-family:Calibri,sans-serif\">716-908-6134<b><span style=\"color:black\"><br>\r\n</span></b></span><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3m-W76k8Rv54FzY3W63BPky6WGs-QW5x9xcn2NfXL4W6WZ3Kf3tQ4rBW8rpQNX1QTG8VW2LwzGK7SZC75VtGXvk6k9GT9W8_R1wR6qvv1tVZxx5_326Tw6W4qSM5g2_4MkkN5vNflCMwLm7W8VJgw58JF2KPW4QwYz-53l_yVW87Z2lm5MGqtmVFprTs65nwJNW1HgrpM2WL98PW59068W1F6XMSW2dz-8k8c7R2HW1cjHtb4rTWwNW8dVRgC88pgZwW6Hgq4K1yhmVwW6Kwqpb2Bp4B2f5Yb-8j04\" title=\"http://www.bradentonareaedc.com/\" target=\"_blank\"><span style=\"font-family:Calibri,sans-serif;color:purple\">BradentonAreaEDC.com</span></a><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Calibri,sans-serif\"> </span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3p6N2V5ClRxKDqNW3V0CSr411rHwW4x7Q1n6v5ZdtW4cdF5X3RzMvfN3w5BSZ52f8CW2zFgNV3rFVJWVf_mT94WtzmnW8mLvhS1nLhKDW3hrW3L7DGtrkW6f1z5k7krj7-W1XXnQg6Wh_X3W7mXkSC2vTWFCW3025hb5_BgrCW8ffjRp5C1sYRW5dysm_2s5QpyW4-SZ4q7PZLdQW1Wm7Fx6X3LDkW6SkmB91b9lpgW1NXsd942s_6TW6R9Q8z2Lq9PxVMCCbj8t7v1VW68WCqm5WcDWMf4YbV0n04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width: 0.3666in; height: 0.3666in;\" id=\"m_-1432031112167248430Picture_x0020_49\" src=\"cid:ii_1999abcab5b4cff311\"></span></a>    \r\n<a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3p0N2tbrpLpv0zGW7lgZD_7HqXS2W7Jd7xc4dJgXKN65K13ssyhcGW1fPc3j1-ZmpHW5vPPQj59bXbYW8zGLn89khJMnTmbQR5RL0mmW998sHc1Q34SfW2cCtwm8TPCxTW8mmHts6WfZzzW4c-8RK2ZtTTnN97gzHT25CMhW4kHZrC4mP_MmW7GBX6V7fsB7lW763S8H4-B75VW6GPpV94lLVjYN7vgPntJc_yXVGpdvh4Y0fnVW1gHxYQ2LVJWZW3KNyWp8ttP1BW6dc5CJ28FqW4W538pMv5YxvS1W48lNdV9gdGWtf9cdRH804\" target=\"_blank\">\r\n<span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"34\" height=\"34\" style=\"width: 0.3583in; height: 0.3583in;\" id=\"m_-1432031112167248430Picture_x0020_48\" src=\"cid:ii_1999abcab5b5b16b22\"></span></a>     <a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jll2-6qcW7Y8-PT6lZ3nTW3Z-SV59jMkVmW5tgXqZ7JHKv9W4ryhR783rk1GW3rytz87Vr1JVW5L-RV_3cnmDSW5T4pm87tJWYdW7zSkxH14YDMBMjj18k9XZvwW6SYfHr202pR6W1RZpxp7l_6HNW4F07Xn71Gn7lW8z3PnX5Tv4WnW2zJ15F2w42bcW4Z5LSF4Qt3d4VxVp_W3m9T0yW3j_GcX5GKXJ_W18Q0MH19-LHnW6X0GSd45R9XdW77YQp57kCFBNW3MHX_s7xGlQqW626HPP4zs8v4Vsjz9T88r5xbW72BRLF2rK2syW7DRrXh2j3Jm0W1nDKCn4ts2QrW4SRBrq1zfk0Rf62LNJK04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width: 0.3666in; height: 0.3666in;\" id=\"m_-1432031112167248430Picture_x0020_47\" src=\"cid:ii_1999abcab5b692e333\"></span></a>     <a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3l_V7Pfrt92N5r-W2YmJbl7c3p1-W7j7WVL2wTZvSW6MZQCJ8HYd-gW6JPhtm6RqfNDW9jbBxJ7-Jd-YVsNGTT8dGlmcW3fcBc45cng-yN5VnGZPWjvpjVGq1f-8K3tShW15h05j8xp1K4W3DCNKS2TWsrNN7BnB85G4h_TW1FtG5_38_jg6Vf21332z2fZtW5kGtX361x5mzW6XGG0r6Jm879W7c705f1nH8kwW6Q-Scy8JHSrzW5bryNC6Wh-Q8W1GgG0q8RgscYW3F8n_n8DQjbqW1dycfw1RGYGmN7h9wpWcBB67f5tTjl-04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width: 0.3666in; height: 0.3666in;\" id=\"m_-1432031112167248430Picture_x0020_46\" src=\"cid:ii_1999abcab5b7745b44\"></span></a>     <a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3nZW8GfHlt2TtYMTW4Jrnjn81y2kbW45KjmM7T-BZxW1LJXHS8K0nzzMXzDCxvNLyjW19W7D010M48dW12Ryjl7j7p-5N1gwPZxhBZKmW4vjqrB7drS7CW695LPr6J3fdZW9lh7yb60cC6xW2rPxxD9lbMs-W2wHTZ73DH-BRW1vq4qZ3x_GskN25j83LX3gBsW2S5-t76M9d7LW6lQzcX8tb5gyW6XB1R441_ywQW8N7WwT2snj40W960BCZ5pBRpMVSP-lk7bsNxtW87Tn5P5PnzS-d7nDZb04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width: 0.3666in; height: 0.3666in;\" id=\"m_-1432031112167248430Picture_x0020_45\" src=\"cid:ii_1999abcab5b855d355\"></span></a><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"><u></u> <u></u></span></p>\r\n<div style=\"border-right:none;border-bottom:none;border-left:none;border-top:1pt solid rgb(225,225,225);padding:3pt 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">From:</span></b><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"> Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt;\r\n<br>\r\n<b>Sent:</b> Friday, September 26, 2025 3:58 PM<br>\r\n<b>To:</b> Elizabeth Cordes &lt;<a href=\"mailto:elizabethc@bradentonareaedc.com\" target=\"_blank\">elizabethc@bradentonareaedc.com</a>&gt;<br>\r\n<b>Cc:</b> Yanet Lopez &lt;<a href=\"mailto:yanetl@bradentonareaedc.com\" target=\"_blank\">yanetl@bradentonareaedc.com</a>&gt;; Kevin Campos &lt;<a href=\"mailto:Kcampos@tampabayedc.com\" target=\"_blank\">Kcampos@tampabayedc.com</a>&gt;; Brian Stufflebean &lt;brian@mavrix.one&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Introduction - Bradenton Area EDC<u></u><u></u></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">Hi Elizabeth,<u></u><u></u></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Would you be able to send a Zoom link for the call that we have scheduled next week?<u></u><u></u></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<div>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n</div>\r\n<div>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\" style=\"border:1pt solid rgb(226,226,226);padding:2.25pt 6pt 6pt;border-radius:5px\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mQW5hlCW65stZ98W321SNk27pMfwW5dyd1R2SfzRkW5MZtyh3nMMhjW3-FMWX7H-C-vW2C-nd75TTqKNW4m_F606RQcShN5zVDNlxVfHXW41sPRg4z9170W4xCYyJ5glhH_W8BMRJF356C7_W1DjRVR804DPgW2D5Nn733vYT2W6RSkLk7nDRLQW6q0M2x2FYhcGN5vgZNDN5qDPW8DbCHf5qXv-ZThZx164g_LtW6n3YwK4MQLpqN1cBQwtD003vW14QgYq45FcDNW95vyf98TlbtBdJftdR04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"23\" style=\"width: 0.25in; height: 0.2416in;\" id=\"m_-1432031112167248430_x0000_i1054\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\"></span></a><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mXW4j41G14h5s88V5p3FB6gHZ-ZN3c0Hx2mcxLRW78Jyg86sjG8xN31YDR5y37J8W19LfG84Hb3LVW8PQ4vC6B1ZGpW85pHg4373x59W50SJlV1-dk-yW95KG1g4JStdSW3t3gnL8PSVr0W3M_RlT1cym2FW5yQJ5b8vxkGVVY0_Xy4mDnbLW4tL7vp3DqwqFW9dbhgs783WB_Vvv6m_4vZXs5W5sZ06B5m8h1TW85Mx1Z2jnXRPW8ygB4019Vgp-W7qBypL26HQL1W4w1z6g6LsZjkf3Zsp5T04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"22\" style=\"width: 0.25in; height: 0.2333in;\" id=\"m_-1432031112167248430_x0000_i1053\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\"></span></a><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3kPW4J0YGH6pYc-pW5pN4gj6N1-nlN8bf8mYBd5hYW8g162g80pVGbW35XHjv30P8W1V1PXzF9cg7_PV9bmyn4L9vc6W92KGhc32Wh2BW2T02HX6-gMsqN1HBS6lD7k36W3Cmwd62Q_nd0W1tS6Y23F_hW5W1303bj92zGD-W4SsDwJ1PQgX1W8-P0zh8Z7FS8N77BCJ8YGNJzW8yblDc4zr5cLW7SsMhl8yJ7HfW2KmYrW2hNGwxW6bByXR4CyzbcN1r1R22XHpLzW20nSBq5yjYP0W8j9J1n8_YH9RW8ZsfVJ7kjbwfdcLDf604\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"22\" style=\"width: 0.25in; height: 0.2333in;\" id=\"m_-1432031112167248430_x0000_i1052\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\"></span></a><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3m_W6c9R_Q5mLnSyVCJkS45y4h6CN3kry02-Jt_9W642Vz23LDbwSW8l4M0V98zl9qVwncbk5Tmk56VQcXVL71k01-W7CCPvg1c2jwwW8pd1xV5zPdNCW2fN44w6GmR9MW8hp6-V2lrXMYW5lmTTf1nQFQ8W6Gt6xH2gqvsLW4ZDNRJ2QLhqQW8sqkk57htK8nW6Lrt6f5LnQPLVWbBKl566fV3W2DCGJv6TMyWvN6ZbcjkynYVsW6R2xH21m-HxRW5pLwRh8HrDZLW7j8Jgm3zs44XW7FcB5k7cZf3nN7LFp9rP86_jf3nLLkK04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"22\" style=\"width: 0.25in; height: 0.2333in;\" id=\"m_-1432031112167248430_x0000_i1051\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\"></span></a><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3m1W1RnDgw4nX4s8N8-VdR1LJgzGW5QsF1F7vVSH9W48h1042HL2LDW36nqz46jq-d6W44lhVr582TWhW2Mv5Gc26kwdqW69j-cx4F7BJ_W3zRv2R8Ht8HpW8ddQJ08zg8dzW5DsNZQ4R2Mr3W7Qxj6V3KB4VmVdy5X078bJJhN8JjH_H8Xt_pW9gYK0Z44XbDzW7f-M5X7sDgplV5LMfj7NZ2hcW4_h57x2ttsDCF50SYjrhfpgW4GZ_d-1XRQfCN893sy_lT5XkW94fFYW6_vqM1W6wGGb649c4RjVNBl2J3ZQ90Jf3z2XHn04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"22\" style=\"width: 0.25in; height: 0.2333in;\" id=\"m_-1432031112167248430_x0000_i1050\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\"></span></a><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"8\" style=\"width:6pt;padding:0in;display:revert\">\r\n<p class=\"MsoNormal\"><span> <u></u><u></u></span></p>\r\n</td>\r\n<td valign=\"top\" style=\"border:1pt solid rgb(226,226,226);padding:11.25pt;border-radius:5px\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"width:100%;border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"width:100%;border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mQW5hlCW65stZ98W321SNk27pMfwW5dyd1R2SfzRkW5MZtyh3nMMhjW3-FMWX7H-C-vW2C-nd75TTqKNW4m_F606RQcShN5zVDNlxVfHXW41sPRg4z9170W4xCYyJ5glhH_W8BMRJF356C7_W1DjRVR804DPgW2D5Nn733vYT2W6RSkLk7nDRLQW6q0M2x2FYhcGN5vgZNDN5qDPW8DbCHf5qXv-ZThZx164g_LtW6n3YwK4MQLpqN1cBQwtD003vW14QgYq45FcDNW95vyf98TlbtBdJftdR04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"170\" height=\"34\" style=\"width: 1.775in; height: 0.3583in;\" id=\"m_-1432031112167248430_x0000_i1049\" src=\"https://app.customesignature.com/upload/signature/11122/11122.png\"></span></a><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 7.5pt\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:11.25pt 0in 0in\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:15pt\">NATHAN A. STARON</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td style=\"padding:0in 0in 0in 3.75pt\">\r\n<p class=\"MsoNormal\"><img border=\"0\" width=\"15\" height=\"15\" style=\"width: 0.1583in; height: 0.1583in;\" id=\"m_-1432031112167248430_x0000_i1048\" src=\"https://app.customesignature.com/images/verify.gif\"><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:9pt\">Founder / CEO</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:9pt\">Lithium Battery Company</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:9pt\">Cell Phone</span></b><span> <a href=\"tel:813-504-0074\" target=\"_blank\"><span style=\"font-size:9pt;color:black\">813-504-0074</span></a><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:9pt\">Phone</span></b><span> <a href=\"tel:844-GET-LITHIUM\" target=\"_blank\"><span style=\"font-size:9pt;color:black\">844-GET-LITHIUM</span></a><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<p class=\"MsoNormal\"><span><a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\"><span style=\"color:black\">Nathan@lithiumbatterycompany.com</span></a><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in;display:flex\">\r\n<p class=\"MsoNormal\"><span><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3lDW2VLRlm7J62nHW7zjwsc2-Zyv0W52CBv366NwyHW7YmZ_q5d818kMbTZ8850bF7W1lp2yt4xYQckW35zwy918TsypW8fcMFW5F0BhvW5-Qlx32--mKTW7yYFpd4k1FWkW2q7-Qn76Fx1lW5-7yl-7VcRQJW82KTWk5P5m6bW7r4dLH2cfW5kW8Fw4S61Y_xTcW8sBVsc1tvjxdW4HkXTp8kWmTYW2NBgcx6y39JDW3KpvnJ2Kv-mzW8K75rL29tbxDN26qscbczTTdW6YDddy4g4RZrW31mF8s6hTNVqN2C5N65RDjVXf2jqhW-04\" target=\"_blank\"><b><span style=\"font-size:9pt;color:white;background:black\">Schedule\r\n A Zoom</span></b></a><b><u></u><u></u></b></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td style=\"padding:0in 0in 0in 11.25pt;display:revert\">\r\n<div>\r\n<p class=\"MsoNormal\"><img border=\"0\" width=\"140\" height=\"140\" style=\"width: 1.4583in; height: 1.4583in;\" id=\"m_-1432031112167248430_x0000_i1047\" src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\"><span><u></u><u></u></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><img border=\"0\" width=\"140\" height=\"140\" style=\"width: 1.4583in; height: 1.4583in;\" id=\"m_-1432031112167248430_x0000_i1046\" src=\"https://app.customesignature.com/upload/signature/gifs/giphyy-1.gif\"><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" style=\"padding:0in\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:7.5pt 0in 0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n</div>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">On Thu, Sep 25, 2025 at 12:03<span style=\"font-family:Arial,sans-serif\"> </span>PM Elizabeth Cordes &lt;<a href=\"mailto:elizabethc@bradentonareaedc.com\" target=\"_blank\">elizabethc@bradentonareaedc.com</a>&gt; wrote:<u></u><u></u></p>\r\n</div>\r\n<blockquote style=\"border-top:none;border-right:none;border-bottom:none;border-left:1pt solid rgb(204,204,204);padding:0in 0in 0in 6pt;margin:5pt 0in 5pt 4.8pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">Hi Nathan,</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"> </span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">It is a pleasure to e-meet both of you, Brian and Rick!</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"> </span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">Let’s do a call on Wednesday, October 1 at 10am? If a site has already been selected for the project, we are happy\r\n to meet you at the site as well. Please let me know what works best for you.</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"> </span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">Kindest regards,</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"> </span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:16pt;font-family:Calibri,sans-serif;color:rgb(0,121,161)\">Elizabeth Cordes</span></b><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:14pt;font-family:Calibri,sans-serif\">Director of Business Recruitment &amp; Expansion</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:14pt;font-family:Calibri,sans-serif;color:rgb(33,33,33)\">Bradenton Area Economic Development Corporation</span></b><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkMgQprkW6N3_xK6lZ3nwW1S-NPm50p7sBN5f0h3dq66mwW2GjSSw8RL3CVW33xj8Y6ZhQnFW8B_6mK8qmplbW5WwK0G2G_YVjW53D6_Y5Lk4fvVmQ8Vw8LF52TW6SWrYl61h3rKW88LMvF2-kzyzW5KGNsg8xdCxqW7SHJmB1mjN5vW2rlG897WMDzPW1BBKw92tpVTKVlKvg21tHf5qW4jvFnR5gVsT3MQr1RZRJmQDV2qYRZ2DbLGtW8Y0zjf1lyTzKW8n51Cp1SdFPtW4pq5Lw2FGSYWW6Crnr3504Hj0W10_0d46CbZH_W8-HBD28HVTTkW2F9mQK32sfkTW3FLWsK19JPkhW3MQ1lR5X7CbRV6Z9tF5wT04rVwn70p6PvdcRW2VzMRk4LRwRsN8-G3Jvlkl8CW4V4b027z_kCDW2Zd_BF1MHsNYW3ywjF96_k7P1W6M6gG05qzvn-W41F7KZ4Db1QcN5g7tT-4VghbW3nCrDL2bxJk6W3ZL2M82j4gsdW6GQgCX1njbDCN2Vg3g-fsLBrN4MBKxPxWj04W4hTYTm4_HKgJW1pL0Pk7Rm0w3W9k8_zw5BmwTxW2RGgqD3tqn4WVqfbLr6yx4MDW7cyNSJ1ss5-JW5gx4wD3wkGmgW5SWj8V1dvcTPW8l1kLv7QhjKcW8HyBXt606-YTW3xCnj97FPhrTW70CBXf6rN35kW6xl5Dj8j5H4ZN59Cdybzf8CBVFd7jR7R5c3qW3hvzZk7jpr59W8lNnhD22ptJdW6Lw0n16sGsmhW5dGmbt4WkGWvVbj6zz65tgGkN1nDBR9hX-HkW3fSwQg74ZgV_W2D6ZgL5mk-zKW7phXVN9kpmNYW1_BYH63rC16PW2G6Gfs3cDS6MV9F1Zs4BKsP-VJzcnY50kKtFW6Yxvmg1xb-WPN5KZx62G62mPW5RJmJ_2BvZD2W1-nqhz6Fy7SlVFmXH33BVZdKW2M7NhB1S8dMkW4yz52j5JD9B9W5-B9R_4KQ7fbN3fVlwswDBHxW92JFwN9b8Yg6VXSf_p2bRBzhW1G5gh055Ct_QW5R4FWT7nD7x7W7Chzdk2N-vg-W2G71QP1Tr_vyW65Qbpj3DrZP5W4Yb_jX6H8-3KW4BmqYF6k76WbVyrg7p4Sv4HkW4707lL442SJbN8GZW2CT_tBWN69dn7h5mr1vW3xx5vl2fvhK6W9hRpkl7898Q2W7GkS315yQZbdW8-pkBM48xPKDN5hXhm15L98VW5Z9fT13YW2-8W8PJ__S36Rr3PW6v_mV13c3zwNW935XTC6S79VLW3pB2Cx7TZwhnW4sQYNH6Tfpw7VMRnth1NQNCqV7Mytm7SltwvW977vVP6jHYJJW8mGHDY8w_VKCN3Qrw7mhDR5cW2kP64g22X09pW4CyBgB5Rsxl1W6ZKSHd47fycGW38Z7WW2yF23ZV4Kx5Q5dDHs9W3T8tx16tFScBW6Npzg-7cgGfyW4_lZy44N5nk4W6SGTKN24Kl35W6MRlsh6GRQ-ff7ln0Xb04\" target=\"_blank\"><span style=\"font-family:Calibri,sans-serif;color:rgb(5,99,193)\">5840\r\n 26<sup>th</sup> Street West, 26 West Center, Suite 232, Bradenton, FL 34207</span></a><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:Calibri,sans-serif;color:rgb(0,121,161)\">Email:</span></b><span style=\"font-family:Calibri,sans-serif\">\r\n</span><a href=\"mailto:ElizabethC@BradentonAreaEDC.com\" target=\"_blank\"><span style=\"font-family:Calibri,sans-serif;color:rgb(5,99,193)\">ElizabethC@BradentonAreaEDC.com</span></a><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:Calibri,sans-serif;color:rgb(0,121,161)\">Phone: </span></b><span style=\"font-family:Calibri,sans-serif\">941-803-9033</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:Calibri,sans-serif;color:rgb(0,121,161)\">Cell: </span></b><span style=\"font-family:Calibri,sans-serif\">716-908-6134<b><span style=\"color:black\"><br>\r\n</span></b></span><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3m-W76k8Rv54FzY3W63BPky6WGs-QW5x9xcn2NfXL4W6WZ3Kf3tQ4rBW8rpQNX1QTG8VW2LwzGK7SZC75VtGXvk6k9GT9W8_R1wR6qvv1tVZxx5_326Tw6W4qSM5g2_4MkkN5vNflCMwLm7W8VJgw58JF2KPW4QwYz-53l_yVW87Z2lm5MGqtmVFprTs65nwJNW1HgrpM2WL98PW59068W1F6XMSW2dz-8k8c7R2HW1cjHtb4rTWwNW8dVRgC88pgZwW6Hgq4K1yhmVwW6Kwqpb2Bp4B2f5Yb-8j04\" title=\"http://www.bradentonareaedc.com/\" target=\"_blank\"><span style=\"font-family:Calibri,sans-serif;color:purple\">BradentonAreaEDC.com</span></a><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Calibri,sans-serif\"> </span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3p6N2V5ClRxKDqNW3V0CSr411rHwW4x7Q1n6v5ZdtW4cdF5X3RzMvfN3w5BSZ52f8CW2zFgNV3rFVJWVf_mT94WtzmnW8mLvhS1nLhKDW3hrW3L7DGtrkW6f1z5k7krj7-W1XXnQg6Wh_X3W7mXkSC2vTWFCW3025hb5_BgrCW8ffjRp5C1sYRW5dysm_2s5QpyW4-SZ4q7PZLdQW1Wm7Fx6X3LDkW6SkmB91b9lpgW1NXsd942s_6TW6R9Q8z2Lq9PxVMCCbj8t7v1VW68WCqm5WcDWMf4YbV0n04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width: 0.3666in; height: 0.3666in;\" id=\"m_-1432031112167248430m_1590386045476668823Picture_x0020_49\" src=\"cid:ii_1999abcab5b4cff311\"></span></a>    \r\n<a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3p0N2tbrpLpv0zGW7lgZD_7HqXS2W7Jd7xc4dJgXKN65K13ssyhcGW1fPc3j1-ZmpHW5vPPQj59bXbYW8zGLn89khJMnTmbQR5RL0mmW998sHc1Q34SfW2cCtwm8TPCxTW8mmHts6WfZzzW4c-8RK2ZtTTnN97gzHT25CMhW4kHZrC4mP_MmW7GBX6V7fsB7lW763S8H4-B75VW6GPpV94lLVjYN7vgPntJc_yXVGpdvh4Y0fnVW1gHxYQ2LVJWZW3KNyWp8ttP1BW6dc5CJ28FqW4W538pMv5YxvS1W48lNdV9gdGWtf9cdRH804\" target=\"_blank\">\r\n<span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"34\" height=\"34\" style=\"width: 0.3583in; height: 0.3583in;\" id=\"m_-1432031112167248430m_1590386045476668823Picture_x0020_48\" src=\"cid:ii_1999abcab5b5b16b22\"></span></a>     <a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jll2-6qcW7Y8-PT6lZ3nTW3Z-SV59jMkVmW5tgXqZ7JHKv9W4ryhR783rk1GW3rytz87Vr1JVW5L-RV_3cnmDSW5T4pm87tJWYdW7zSkxH14YDMBMjj18k9XZvwW6SYfHr202pR6W1RZpxp7l_6HNW4F07Xn71Gn7lW8z3PnX5Tv4WnW2zJ15F2w42bcW4Z5LSF4Qt3d4VxVp_W3m9T0yW3j_GcX5GKXJ_W18Q0MH19-LHnW6X0GSd45R9XdW77YQp57kCFBNW3MHX_s7xGlQqW626HPP4zs8v4Vsjz9T88r5xbW72BRLF2rK2syW7DRrXh2j3Jm0W1nDKCn4ts2QrW4SRBrq1zfk0Rf62LNJK04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width: 0.3666in; height: 0.3666in;\" id=\"m_-1432031112167248430m_1590386045476668823Picture_x0020_47\" src=\"cid:ii_1999abcab5b692e333\"></span></a>     <a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3l_V7Pfrt92N5r-W2YmJbl7c3p1-W7j7WVL2wTZvSW6MZQCJ8HYd-gW6JPhtm6RqfNDW9jbBxJ7-Jd-YVsNGTT8dGlmcW3fcBc45cng-yN5VnGZPWjvpjVGq1f-8K3tShW15h05j8xp1K4W3DCNKS2TWsrNN7BnB85G4h_TW1FtG5_38_jg6Vf21332z2fZtW5kGtX361x5mzW6XGG0r6Jm879W7c705f1nH8kwW6Q-Scy8JHSrzW5bryNC6Wh-Q8W1GgG0q8RgscYW3F8n_n8DQjbqW1dycfw1RGYGmN7h9wpWcBB67f5tTjl-04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width: 0.3666in; height: 0.3666in;\" id=\"m_-1432031112167248430m_1590386045476668823Picture_x0020_46\" src=\"cid:ii_1999abcab5b7745b44\"></span></a>     <a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3nZW8GfHlt2TtYMTW4Jrnjn81y2kbW45KjmM7T-BZxW1LJXHS8K0nzzMXzDCxvNLyjW19W7D010M48dW12Ryjl7j7p-5N1gwPZxhBZKmW4vjqrB7drS7CW695LPr6J3fdZW9lh7yb60cC6xW2rPxxD9lbMs-W2wHTZ73DH-BRW1vq4qZ3x_GskN25j83LX3gBsW2S5-t76M9d7LW6lQzcX8tb5gyW6XB1R441_ywQW8N7WwT2snj40W960BCZ5pBRpMVSP-lk7bsNxtW87Tn5P5PnzS-d7nDZb04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width: 0.3666in; height: 0.3666in;\" id=\"m_-1432031112167248430m_1590386045476668823Picture_x0020_45\" src=\"cid:ii_1999abcab5b855d355\"></span></a><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"> </span><u></u><u></u></p>\r\n<div style=\"border-right:none;border-bottom:none;border-left:none;border-top:1pt solid rgb(225,225,225);padding:3pt 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">From:</span></b><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"> Nathan Staron &lt;</span><a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">Nathan@lithiumbatterycompany.com</span></a><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, September 24, 2025 5:47 PM<br>\r\n<b>To:</b> Elizabeth Cordes &lt;</span><a href=\"mailto:elizabethc@bradentonareaedc.com\" target=\"_blank\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">elizabethc@bradentonareaedc.com</span></a><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">&gt;;\r\n Yanet Lopez &lt;</span><a href=\"mailto:yanetl@bradentonareaedc.com\" target=\"_blank\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">yanetl@bradentonareaedc.com</span></a><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">&gt;<br>\r\n<b>Cc:</b> Kevin Campos &lt;</span><a href=\"mailto:Kcampos@tampabayedc.com\" target=\"_blank\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">Kcampos@tampabayedc.com</span></a><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">&gt;; Brian\r\n Stufflebean &lt;</span><a href=\"mailto:brian@mavrix.one\" target=\"_blank\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">brian@mavrix.one</span></a><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">&gt;; Rick Mislan &lt;</span><a href=\"mailto:rick@mavrix.one\" target=\"_blank\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">rick@mavrix.one</span></a><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">&gt;<br>\r\n<b>Subject:</b> Re: Introduction - Bradenton Area EDC</span><u></u><u></u></p>\r\n</div>\r\n<p class=\"MsoNormal\"> <u></u><u></u></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">Good Afternoon Elizabeth,<u></u><u></u></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"> <u></u><u></u></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Thank you for your prompt response and for the kind welcome. It was a pleasure e-meeting you as well.<u></u><u></u></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"> <u></u><u></u></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">I would like to introduce Brian Stufflebean and Rick Mislan, who are the project leads for our expansion into Parrish, FL. They will be instrumental in the development of our new\r\n location, and I believe it would be beneficial for them to connect with you directly.<u></u><u></u></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"> <u></u><u></u></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Regarding setting up a meeting, I agree that it would be valuable to discuss the project further. We would be happy to coordinate a time that works best for everyone next week.\r\n As you mentioned, Tuesday and Wednesday work well for you, and we can certainly align with that.<u></u><u></u></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"> <u></u><u></u></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Please let us know what specific times on Tuesday or Wednesday next week would be most convenient for you and Yanet, and we will make sure to schedule a call or meeting accordingly.\r\n We look forward to the opportunity to collaborate.<u></u><u></u></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"> <u></u><u></u></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"> <u></u><u></u></p>\r\n<div>\r\n<p class=\"MsoNormal\"> <u></u><u></u></p>\r\n</div>\r\n<div>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\" style=\"border:1pt solid rgb(226,226,226);padding:2.25pt 6pt 6pt;border-radius:5px\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mQW5hlCW65stZ98W321SNk27pMfwW5dyd1R2SfzRkW5MZtyh3nMMhjW3-FMWX7H-C-vW2C-nd75TTqKNW4m_F606RQcShN5zVDNlxVfHXW41sPRg4z9170W4xCYyJ5glhH_W8BMRJF356C7_W1DjRVR804DPgW2D5Nn733vYT2W6RSkLk7nDRLQW6q0M2x2FYhcGN5vgZNDN5qDPW8DbCHf5qXv-ZThZx164g_LtW6n3YwK4MQLpqN1cBQwtD003vW14QgYq45FcDNW95vyf98TlbtBdJftdR04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"23\" style=\"width: 0.25in; height: 0.2416in;\" id=\"m_-1432031112167248430_x0000_i1040\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\"></span></a><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mXW4j41G14h5s88V5p3FB6gHZ-ZN3c0Hx2mcxLRW78Jyg86sjG8xN31YDR5y37J8W19LfG84Hb3LVW8PQ4vC6B1ZGpW85pHg4373x59W50SJlV1-dk-yW95KG1g4JStdSW3t3gnL8PSVr0W3M_RlT1cym2FW5yQJ5b8vxkGVVY0_Xy4mDnbLW4tL7vp3DqwqFW9dbhgs783WB_Vvv6m_4vZXs5W5sZ06B5m8h1TW85Mx1Z2jnXRPW8ygB4019Vgp-W7qBypL26HQL1W4w1z6g6LsZjkf3Zsp5T04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"22\" style=\"width: 0.25in; height: 0.2333in;\" id=\"m_-1432031112167248430_x0000_i1039\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\"></span></a><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3kPW4J0YGH6pYc-pW5pN4gj6N1-nlN8bf8mYBd5hYW8g162g80pVGbW35XHjv30P8W1V1PXzF9cg7_PV9bmyn4L9vc6W92KGhc32Wh2BW2T02HX6-gMsqN1HBS6lD7k36W3Cmwd62Q_nd0W1tS6Y23F_hW5W1303bj92zGD-W4SsDwJ1PQgX1W8-P0zh8Z7FS8N77BCJ8YGNJzW8yblDc4zr5cLW7SsMhl8yJ7HfW2KmYrW2hNGwxW6bByXR4CyzbcN1r1R22XHpLzW20nSBq5yjYP0W8j9J1n8_YH9RW8ZsfVJ7kjbwfdcLDf604\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"22\" style=\"width: 0.25in; height: 0.2333in;\" id=\"m_-1432031112167248430_x0000_i1038\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\"></span></a><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3m_W6c9R_Q5mLnSyVCJkS45y4h6CN3kry02-Jt_9W642Vz23LDbwSW8l4M0V98zl9qVwncbk5Tmk56VQcXVL71k01-W7CCPvg1c2jwwW8pd1xV5zPdNCW2fN44w6GmR9MW8hp6-V2lrXMYW5lmTTf1nQFQ8W6Gt6xH2gqvsLW4ZDNRJ2QLhqQW8sqkk57htK8nW6Lrt6f5LnQPLVWbBKl566fV3W2DCGJv6TMyWvN6ZbcjkynYVsW6R2xH21m-HxRW5pLwRh8HrDZLW7j8Jgm3zs44XW7FcB5k7cZf3nN7LFp9rP86_jf3nLLkK04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"22\" style=\"width: 0.25in; height: 0.2333in;\" id=\"m_-1432031112167248430_x0000_i1037\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\"></span></a><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3m1W1RnDgw4nX4s8N8-VdR1LJgzGW5QsF1F7vVSH9W48h1042HL2LDW36nqz46jq-d6W44lhVr582TWhW2Mv5Gc26kwdqW69j-cx4F7BJ_W3zRv2R8Ht8HpW8ddQJ08zg8dzW5DsNZQ4R2Mr3W7Qxj6V3KB4VmVdy5X078bJJhN8JjH_H8Xt_pW9gYK0Z44XbDzW7f-M5X7sDgplV5LMfj7NZ2hcW4_h57x2ttsDCF50SYjrhfpgW4GZ_d-1XRQfCN893sy_lT5XkW94fFYW6_vqM1W6wGGb649c4RjVNBl2J3ZQ90Jf3z2XHn04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"24\" height=\"22\" style=\"width: 0.25in; height: 0.2333in;\" id=\"m_-1432031112167248430_x0000_i1036\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\"></span></a><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"8\" style=\"width:6pt;padding:0in;display:revert\">\r\n<p class=\"MsoNormal\"><span> <u></u><u></u></span></p>\r\n</td>\r\n<td valign=\"top\" style=\"border:1pt solid rgb(226,226,226);padding:11.25pt;border-radius:5px\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"width:100%;border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"width:100%;border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mQW5hlCW65stZ98W321SNk27pMfwW5dyd1R2SfzRkW5MZtyh3nMMhjW3-FMWX7H-C-vW2C-nd75TTqKNW4m_F606RQcShN5zVDNlxVfHXW41sPRg4z9170W4xCYyJ5glhH_W8BMRJF356C7_W1DjRVR804DPgW2D5Nn733vYT2W6RSkLk7nDRLQW6q0M2x2FYhcGN5vgZNDN5qDPW8DbCHf5qXv-ZThZx164g_LtW6n3YwK4MQLpqN1cBQwtD003vW14QgYq45FcDNW95vyf98TlbtBdJftdR04\" target=\"_blank\"><span style=\"text-decoration:none\"><img border=\"0\" width=\"170\" height=\"34\" style=\"width: 1.775in; height: 0.3583in;\" id=\"m_-1432031112167248430_x0000_i1035\" src=\"https://app.customesignature.com/upload/signature/11122/11122.png\"></span></a><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 7.5pt\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:11.25pt 0in 0in\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:15pt\">NATHAN A. STARON</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td style=\"padding:0in 0in 0in 3.75pt\">\r\n<p class=\"MsoNormal\"><img border=\"0\" width=\"15\" height=\"15\" style=\"width: 0.1583in; height: 0.1583in;\" id=\"m_-1432031112167248430_x0000_i1034\" src=\"https://app.customesignature.com/images/verify.gif\"><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:9pt\">Founder / CEO</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:9pt\">Lithium Battery Company</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:9pt\">Cell Phone</span></b><span> <a href=\"tel:813-504-0074\" target=\"_blank\"><span style=\"font-size:9pt;color:black\">813-504-0074</span></a><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:9pt\">Phone</span></b><span> <a href=\"tel:844-GET-LITHIUM\" target=\"_blank\"><span style=\"font-size:9pt;color:black\">844-GET-LITHIUM</span></a><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<p class=\"MsoNormal\"><span><a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\"><span style=\"color:black\">Nathan@lithiumbatterycompany.com</span></a><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:3.75pt 0in 0in\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in;display:flex\">\r\n<p class=\"MsoNormal\"><span><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3lDW2VLRlm7J62nHW7zjwsc2-Zyv0W52CBv366NwyHW7YmZ_q5d818kMbTZ8850bF7W1lp2yt4xYQckW35zwy918TsypW8fcMFW5F0BhvW5-Qlx32--mKTW7yYFpd4k1FWkW2q7-Qn76Fx1lW5-7yl-7VcRQJW82KTWk5P5m6bW7r4dLH2cfW5kW8Fw4S61Y_xTcW8sBVsc1tvjxdW4HkXTp8kWmTYW2NBgcx6y39JDW3KpvnJ2Kv-mzW8K75rL29tbxDN26qscbczTTdW6YDddy4g4RZrW31mF8s6hTNVqN2C5N65RDjVXf2jqhW-04\" target=\"_blank\"><b><span style=\"font-size:9pt;color:white;background:black\">Schedule\r\n A Zoom</span></b></a><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td style=\"padding:0in 0in 0in 11.25pt;display:revert\">\r\n<div>\r\n<p class=\"MsoNormal\"><img border=\"0\" width=\"140\" height=\"140\" style=\"width: 1.4583in; height: 1.4583in;\" id=\"m_-1432031112167248430_x0000_i1033\" src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\"><span><u></u><u></u></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><img border=\"0\" width=\"140\" height=\"140\" style=\"width: 1.4583in; height: 1.4583in;\" id=\"m_-1432031112167248430_x0000_i1032\" src=\"https://app.customesignature.com/upload/signature/gifs/giphyy-1.gif\"><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" style=\"padding:0in\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:7.5pt 0in 0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"> <u></u><u></u></p>\r\n</div>\r\n<p class=\"MsoNormal\"> <u></u><u></u></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">On Wed, Sep 24, 2025 at 3:54<span style=\"font-family:Arial,sans-serif\"> </span>PM Elizabeth Cordes &lt;<a href=\"mailto:elizabethc@bradentonareaedc.com\" target=\"_blank\">elizabethc@bradentonareaedc.com</a>&gt;\r\n wrote:<u></u><u></u></p>\r\n</div>\r\n<blockquote style=\"border-top:none;border-right:none;border-bottom:none;border-left:1pt solid rgb(204,204,204);padding:0in 0in 0in 6pt;margin:5pt 0in 5pt 4.8pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">Hi Kevin,</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"> </span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">Thank you very much for the introduction! It is a pleasure to e-meet you, Nathan. I would very much like to set up\r\n a call or meeting to discuss your project further. Please let me know a day and time that would work best for you. We have good availability Tuesday and Wednesday next week. I look forward to working with you.</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"> </span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">Kindest regards,</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"> </span><u></u><u></u></p>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:16pt;font-family:Calibri,sans-serif;color:rgb(0,121,161)\">Elizabeth Cordes</span></b><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:14pt;font-family:Calibri,sans-serif\">Director of Business Recruitment &amp; Expansion</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:14pt;font-family:Calibri,sans-serif;color:rgb(33,33,33)\">Bradenton Area Economic Development Corporation</span></b><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkMgQprkW6N3_xK6lZ3nwW1S-NPm50p7sBN5f0h3dq66mwW2GjSSw8RL3CVW33xj8Y6ZhQnFW8B_6mK8qmplbW5WwK0G2G_YVjW53D6_Y5Lk4fvVmQ8Vw8LF52TW6SWrYl61h3rKW88LMvF2-kzyzW5KGNsg8xdCxqW7SHJmB1mjN5vW2rlG897WMDzPW1BBKw92tpVTKVlKvg21tHf5qW4jvFnR5gVsT3MQr1RZRJmQDV2qYRZ2DbLGtW8Y0zjf1lyTzKW8n51Cp1SdFPtW4pq5Lw2FGSYWW6Crnr3504Hj0W10_0d46CbZH_W8-HBD28HVTTkW2F9mQK32sfkTW3FLWsK19JPkhW3MQ1lR5X7CbRV6Z9tF5wT04rVwn70p6PvdcRW2VzMRk4LRwRsN8-G3Jvlkl8CW4V4b027z_kCDW2Zd_BF1MHsNYW3ywjF96_k7P1W6M6gG05qzvn-W41F7KZ4Db1QcN5g7tT-4VghbW3nCrDL2bxJk6W3ZL2M82j4gsdW6GQgCX1njbDCN2Vg3g-fsLBrN4MBKxPxWj04W4hTYTm4_HKgJW1pL0Pk7Rm0w3W9k8_zw5BmwTxW2RGgqD3tqn4WVqfbLr6yx4MDW7cyNSJ1ss5-JW5gx4wD3wkGmgW5SWj8V1dvcTPW8l1kLv7QhjKcW8HyBXt606-YTW3xCnj97FPhrTW70CBXf6rN35kW6xl5Dj8j5H4ZN59Cdybzf8CBVFd7jR7R5c3qW3hvzZk7jpr59W8lNnhD22ptJdW6Lw0n16sGsmhW5dGmbt4WkGWvVbj6zz65tgGkN1nDBR9hX-HkW3fSwQg74ZgV_W2D6ZgL5mk-zKW7phXVN9kpmNYW1_BYH63rC16PW2G6Gfs3cDS6MV9F1Zs4BKsP-VJzcnY50kKtFW6Yxvmg1xb-WPN5KZx62G62mPW5RJmJ_2BvZD2W1-nqhz6Fy7SlVFmXH33BVZdKW2M7NhB1S8dMkW4yz52j5JD9B9W5-B9R_4KQ7fbN3fVlwswDBHxW92JFwN9b8Yg6VXSf_p2bRBzhW1G5gh055Ct_QW5R4FWT7nD7x7W7Chzdk2N-vg-W2G71QP1Tr_vyW65Qbpj3DrZP5W4Yb_jX6H8-3KW4BmqYF6k76WbVyrg7p4Sv4HkW4707lL442SJbN8GZW2CT_tBWN69dn7h5mr1vW3xx5vl2fvhK6W9hRpkl7898Q2W7GkS315yQZbdW8-pkBM48xPKDN5hXhm15L98VW5Z9fT13YW2-8W8PJ__S36Rr3PW6v_mV13c3zwNW935XTC6S79VLW3pB2Cx7TZwhnW4sQYNH6Tfpw7VMRnth1NQNCqV7Mytm7SltwvW977vVP6jHYJJW8mGHDY8w_VKCN3Qrw7mhDR5cW2kP64g22X09pW4CyBgB5Rsxl1W6ZKSHd47fycGW38Z7WW2yF23ZV4Kx5Q5dDHs9W3T8tx16tFScBW6Npzg-7cgGfyW4_lZy44N5nk4W6SGTKN24Kl35W6MRlsh6GRQ-ff7ln0Xb04\" target=\"_blank\"><span style=\"font-family:Calibri,sans-serif;color:rgb(5,99,193)\">5840\r\n 26<sup>th</sup> Street West, 26 West Center, Suite 232, Bradenton, FL 34207</span></a><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:Calibri,sans-serif;color:rgb(0,121,161)\">Email:</span></b><span style=\"font-family:Calibri,sans-serif\">\r\n</span><a href=\"mailto:ElizabethC@BradentonAreaEDC.com\" target=\"_blank\"><span style=\"font-family:Calibri,sans-serif;color:rgb(5,99,193)\">ElizabethC@BradentonAreaEDC.com</span></a><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:Calibri,sans-serif;color:rgb(0,121,161)\">Phone: </span></b><span style=\"font-family:Calibri,sans-serif\">941-803-9033</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:Calibri,sans-serif;color:rgb(0,121,161)\">Cell: </span></b><span style=\"font-family:Calibri,sans-serif\">716-908-6134<b><span style=\"color:black\"><br>\r\n</span></b></span><a href=\"https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3m-W76k8Rv54FzY3W63BPky6WGs-QW5x9xcn2NfXL4W6WZ3Kf3tQ4rBW8rpQNX1QTG8VW2LwzGK7SZC75VtGXvk6k9GT9W8_R1wR6qvv1tVZxx5_326Tw6W4qSM5g2_4MkkN5vNflCMwLm7W8VJgw58JF2KPW4QwYz-53l_yVW87Z2lm5MGqtmVFprTs65nwJNW1HgrpM2WL98PW59068W1F6XMSW2dz-8k8c7R2HW1cjHtb4rTWwNW8dVRgC88pgZwW6Hgq4K1yhmVwW6Kwqpb2Bp4B2f5Yb-8j04\" title=\"http://www.bradentonareaedc.com/\" target=\"_blank\"><span style=\"font-family:Calibri,sans-serif;color:purple\">BradentonAreaEDC.com</span></a><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-family:Calibri,sans-serif\"> </span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3p6N2V5ClRxKDqNW3V0CSr411rHwW4x7Q1n6v5ZdtW4cdF5X3RzMvfN3w5BSZ52f8CW2zFgNV3rFVJWVf_mT94WtzmnW8mLvhS1nLhKDW3hrW3L7DGtrkW6f1z5k7krj7-W1XXnQg6Wh_X3W7mXkSC2vTWFCW3025hb5_BgrCW8ffjRp5C1sYRW5dysm_2s5QpyW4-SZ4q7PZLdQW1Wm7Fx6X3LDkW6SkmB91b9lpgW1NXsd942s_6TW6R9Q8z2Lq9PxVMCCbj8t7v1VW68WCqm5WcDWMf4YbV0n04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width: 0.3666in; height: 0.3666in;\" id=\"m_-1432031112167248430m_1590386045476668823m_-8707086132752645063Picture_x0020_49\" src=\"cid:ii_1999abcab5b4cff311\"></span></a>    \r\n<a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3p0N2tbrpLpv0zGW7lgZD_7HqXS2W7Jd7xc4dJgXKN65K13ssyhcGW1fPc3j1-ZmpHW5vPPQj59bXbYW8zGLn89khJMnTmbQR5RL0mmW998sHc1Q34SfW2cCtwm8TPCxTW8mmHts6WfZzzW4c-8RK2ZtTTnN97gzHT25CMhW4kHZrC4mP_MmW7GBX6V7fsB7lW763S8H4-B75VW6GPpV94lLVjYN7vgPntJc_yXVGpdvh4Y0fnVW1gHxYQ2LVJWZW3KNyWp8ttP1BW6dc5CJ28FqW4W538pMv5YxvS1W48lNdV9gdGWtf9cdRH804\" target=\"_blank\">\r\n<span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"34\" height=\"34\" style=\"width: 0.3583in; height: 0.3583in;\" id=\"m_-1432031112167248430m_1590386045476668823m_-8707086132752645063Picture_x0020_48\" src=\"cid:ii_1999abcab5b5b16b22\"></span></a>     <a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jll2-6qcW7Y8-PT6lZ3nTW3Z-SV59jMkVmW5tgXqZ7JHKv9W4ryhR783rk1GW3rytz87Vr1JVW5L-RV_3cnmDSW5T4pm87tJWYdW7zSkxH14YDMBMjj18k9XZvwW6SYfHr202pR6W1RZpxp7l_6HNW4F07Xn71Gn7lW8z3PnX5Tv4WnW2zJ15F2w42bcW4Z5LSF4Qt3d4VxVp_W3m9T0yW3j_GcX5GKXJ_W18Q0MH19-LHnW6X0GSd45R9XdW77YQp57kCFBNW3MHX_s7xGlQqW626HPP4zs8v4Vsjz9T88r5xbW72BRLF2rK2syW7DRrXh2j3Jm0W1nDKCn4ts2QrW4SRBrq1zfk0Rf62LNJK04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width: 0.3666in; height: 0.3666in;\" id=\"m_-1432031112167248430m_1590386045476668823m_-8707086132752645063Picture_x0020_47\" src=\"cid:ii_1999abcab5b692e333\"></span></a>     <a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3l_V7Pfrt92N5r-W2YmJbl7c3p1-W7j7WVL2wTZvSW6MZQCJ8HYd-gW6JPhtm6RqfNDW9jbBxJ7-Jd-YVsNGTT8dGlmcW3fcBc45cng-yN5VnGZPWjvpjVGq1f-8K3tShW15h05j8xp1K4W3DCNKS2TWsrNN7BnB85G4h_TW1FtG5_38_jg6Vf21332z2fZtW5kGtX361x5mzW6XGG0r6Jm879W7c705f1nH8kwW6Q-Scy8JHSrzW5bryNC6Wh-Q8W1GgG0q8RgscYW3F8n_n8DQjbqW1dycfw1RGYGmN7h9wpWcBB67f5tTjl-04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width: 0.3666in; height: 0.3666in;\" id=\"m_-1432031112167248430m_1590386045476668823m_-8707086132752645063Picture_x0020_46\" src=\"cid:ii_1999abcab5b7745b44\"></span></a>     <a href=\"https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3nZW8GfHlt2TtYMTW4Jrnjn81y2kbW45KjmM7T-BZxW1LJXHS8K0nzzMXzDCxvNLyjW19W7D010M48dW12Ryjl7j7p-5N1gwPZxhBZKmW4vjqrB7drS7CW695LPr6J3fdZW9lh7yb60cC6xW2rPxxD9lbMs-W2wHTZ73DH-BRW1vq4qZ3x_GskN25j83LX3gBsW2S5-t76M9d7LW6lQzcX8tb5gyW6XB1R441_ywQW8N7WwT2snj40W960BCZ5pBRpMVSP-lk7bsNxtW87Tn5P5PnzS-d7nDZb04\" target=\"_blank\"><span style=\"color:windowtext;text-decoration:none\"><img border=\"0\" width=\"35\" height=\"35\" style=\"width: 0.3666in; height: 0.3666in;\" id=\"m_-1432031112167248430m_1590386045476668823m_-8707086132752645063Picture_x0020_45\" src=\"cid:ii_1999abcab5b855d355\"></span></a><u></u><u></u></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"> </span><u></u><u></u></p>\r\n<div>\r\n<div style=\"border-right:none;border-bottom:none;border-left:none;border-top:1pt solid rgb(225,225,225);padding:3pt 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">From:</span></b><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"> Kevin Campos &lt;</span><a href=\"mailto:Kcampos@tampabayedc.com\" target=\"_blank\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">Kcampos@tampabayedc.com</span></a><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, September 24, 2025 11:44 AM<br>\r\n<b>To:</b> Nathan Staron &lt;</span><a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">nathan@lithiumbatterycompany.com</span></a><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">&gt;;\r\n Yanet Lopez &lt;</span><a href=\"mailto:yanetl@bradentonareaedc.com\" target=\"_blank\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">yanetl@bradentonareaedc.com</span></a><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">&gt;; Elizabeth\r\n Cordes &lt;</span><a href=\"mailto:elizabethc@bradentonareaedc.com\" target=\"_blank\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">elizabethc@bradentonareaedc.com</span></a><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">&gt;<br>\r\n<b>Subject:</b> Introduction - Bradenton Area EDC</span><u></u><u></u></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"> <u></u><u></u></p>\r\n<p class=\"MsoNormal\">Hello Nathan,\r\n<u></u><u></u></p>\r\n<p class=\"MsoNormal\"> <u></u><u></u></p>\r\n<p class=\"MsoNormal\">As discussed, I wanted to connect to the EDC in Manatee County for your Parrish, FL location.\r\n<u></u><u></u></p>\r\n<p class=\"MsoNormal\"> <u></u><u></u></p>\r\n<p class=\"MsoNormal\"><a href=\"mailto:yanetl@bradentonareaedc.com\" target=\"_blank\"><span style=\"text-decoration:none\">@yanetl@bradentonareaedc.com</span></a> and\r\n<a href=\"mailto:elizabethc@bradentonareaedc.com\" target=\"_blank\"><span style=\"text-decoration:none\">@elizabethc@bradentonareaedc.com</span></a> thanks for taking my call. Could you connect with Nathan Staron when you have a chance? I have included him on this\r\n email and they are expanding into that area. <u></u><u></u></p>\r\n<p class=\"MsoNormal\"> <u></u><u></u></p>\r\n<p class=\"MsoNormal\" style=\"background:white\">\r\n<b><span style=\"font-size:11pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(83,129,53)\">Kevin Campos, FCWP</span></b><span style=\"font-size:14pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(31,73,125)\"><br>\r\n</span><span style=\"font-size:10pt;font-family:Calibri,sans-serif;color:black\">ECONOMIC DEVELOPMENT MANAGER<br>\r\n</span><b><span style=\"font-size:10pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(83,129,53)\">TAMPA BAY ECONOMIC DEVELOPMENT COUNCIL</span></b><u></u><u></u></p>\r\n<p class=\"MsoNormal\" style=\"background:white\">\r\n<span style=\"font-size:9pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(31,73,125)\">101 E. Kennedy Blvd., Suite 2000, Tampa, FL 33602</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\" style=\"background:white\">\r\n<b><span lang=\"PT-BR\" style=\"font-size:9pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(83,129,53)\">O:</span></b><span lang=\"PT-BR\" style=\"font-size:9pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(31,73,125)\"> 813.518.2662 I\r\n</span><b><span lang=\"PT-BR\" style=\"font-size:9pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(83,129,53)\">M</span></b><span lang=\"PT-BR\" style=\"font-size:9pt;font-family:&quot;Times New Roman&quot;,serif;color:rgb(31,73,125)\">: 813.763.0307</span><span lang=\"PT-BR\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\" style=\"background:white\">\r\n<span style=\"color:black\"><a href=\"mailto:kcampos@tampabayedc.com\" target=\"_blank\"><span lang=\"PT-BR\" style=\"font-size:11pt;font-family:Calibri,sans-serif\">kcampos@tampabayedc.com</span></a></span><span lang=\"PT-BR\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\" style=\"background:white\">\r\n<span style=\"color:black\"><img border=\"0\" width=\"320\" height=\"130\" style=\"width: 3.3333in; height: 1.35in;\" id=\"m_-1432031112167248430m_1590386045476668823Picture_x0020_1\" src=\"cid:ii_1999abcab5b9374b66\"></span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:black\"> </span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"> <u></u><u></u></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n<p class=\"MsoNormal\"><img border=\"0\" width=\"1\" height=\"1\" style=\"width: 0.0083in; height: 0.0083in;\" id=\"m_-1432031112167248430_x0000_i1025\" src=\"https://d152-C04.na1.hs-sales-engage.com/Cto/V+23284/d152-C04/R5R8b49ndN6J62ww2fDrFW1SqHTW1YZqX0W20Z11c1XlTQbW1Gy2mF3BKmKCW1XnCGW1Z00wDW3GMn6f1V0Nlnn1V3ftj4W1\"><u></u><u></u></p>\r\n</div>\r\n</div>\r\n\r\n</div></blockquote></div>','Elizabeth,\r\n\r\nReceived.  Thank you very much.  Talk to you tomorrow.\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Mon, Sep 29, 2025 at 11:25 AM Elizabeth Cordes <\r\nelizabethc@bradentonareaedc.com> wrote:\r\n\r\n> Hi Nathan,\r\n>\r\n>\r\n>\r\n> Yes, I can send out a teams meeting for 10am on Wednesday.\r\n>\r\n>\r\n>\r\n> Kindest regards,\r\n>\r\n>\r\n>\r\n> *Elizabeth Cordes*\r\n>\r\n> Director of Business Recruitment & Expansion\r\n>\r\n> *Bradenton Area Economic Development Corporation*\r\n>\r\n> 5840 26th Street West, 26 West Center, Suite 232, Bradenton, FL 34207\r\n> <https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkMgQprkW6N3_xK6lZ3nwW1S-NPm50p7sBN5f0h3dq66mwW2GjSSw8RL3CVW33xj8Y6ZhQnFW8B_6mK8qmplbW5WwK0G2G_YVjW53D6_Y5Lk4fvVmQ8Vw8LF52TW6SWrYl61h3rKW88LMvF2-kzyzW5KGNsg8xdCxqW7SHJmB1mjN5vW2rlG897WMDzPW1BBKw92tpVTKVlKvg21tHf5qW4jvFnR5gVsT3MQr1RZRJmQDV2qYRZ2DbLGtW8Y0zjf1lyTzKW8n51Cp1SdFPtW4pq5Lw2FGSYWW6Crnr3504Hj0W10_0d46CbZH_W8-HBD28HVTTkW2F9mQK32sfkTW3FLWsK19JPkhW3MQ1lR5X7CbRV6Z9tF5wT04rVwn70p6PvdcRW2VzMRk4LRwRsN8-G3Jvlkl8CW4V4b027z_kCDW2Zd_BF1MHsNYW3ywjF96_k7P1W6M6gG05qzvn-W41F7KZ4Db1QcN5g7tT-4VghbW3nCrDL2bxJk6W3ZL2M82j4gsdW6GQgCX1njbDCN2Vg3g-fsLBrN4MBKxPxWj04W4hTYTm4_HKgJW1pL0Pk7Rm0w3W9k8_zw5BmwTxW2RGgqD3tqn4WVqfbLr6yx4MDW7cyNSJ1ss5-JW5gx4wD3wkGmgW5SWj8V1dvcTPW8l1kLv7QhjKcW8HyBXt606-YTW3xCnj97FPhrTW70CBXf6rN35kW6xl5Dj8j5H4ZN59Cdybzf8CBVFd7jR7R5c3qW3hvzZk7jpr59W8lNnhD22ptJdW6Lw0n16sGsmhW5dGmbt4WkGWvVbj6zz65tgGkN1nDBR9hX-HkW3fSwQg74ZgV_W2D6ZgL5mk-zKW7phXVN9kpmNYW1_BYH63rC16PW2G6Gfs3cDS6MV9F1Zs4BKsP-VJzcnY50kKtFW6Yxvmg1xb-WPN5KZx62G62mPW5RJmJ_2BvZD2W1-nqhz6Fy7SlVFmXH33BVZdKW2M7NhB1S8dMkW4yz52j5JD9B9W5-B9R_4KQ7fbN3fVlwswDBHxW92JFwN9b8Yg6VXSf_p2bRBzhW1G5gh055Ct_QW5R4FWT7nD7x7W7Chzdk2N-vg-W2G71QP1Tr_vyW65Qbpj3DrZP5W4Yb_jX6H8-3KW4BmqYF6k76WbVyrg7p4Sv4HkW4707lL442SJbN8GZW2CT_tBWN69dn7h5mr1vW3xx5vl2fvhK6W9hRpkl7898Q2W7GkS315yQZbdW8-pkBM48xPKDN5hXhm15L98VW5Z9fT13YW2-8W8PJ__S36Rr3PW6v_mV13c3zwNW935XTC6S79VLW3pB2Cx7TZwhnW4sQYNH6Tfpw7VMRnth1NQNCqV7Mytm7SltwvW977vVP6jHYJJW8mGHDY8w_VKCN3Qrw7mhDR5cW2kP64g22X09pW4CyBgB5Rsxl1W6ZKSHd47fycGW38Z7WW2yF23ZV4Kx5Q5dDHs9W3T8tx16tFScBW6Npzg-7cgGfyW4_lZy44N5nk4W6SGTKN24Kl35W6MRlsh6GRQ-ff7ln0Xb04>\r\n>\r\n> *Email:* ElizabethC@BradentonAreaEDC.com\r\n>\r\n> *Phone: *941-803-9033\r\n>\r\n> *Cell: *716-908-6134\r\n> BradentonAreaEDC.com\r\n> <https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3m-W76k8Rv54FzY3W63BPky6WGs-QW5x9xcn2NfXL4W6WZ3Kf3tQ4rBW8rpQNX1QTG8VW2LwzGK7SZC75VtGXvk6k9GT9W8_R1wR6qvv1tVZxx5_326Tw6W4qSM5g2_4MkkN5vNflCMwLm7W8VJgw58JF2KPW4QwYz-53l_yVW87Z2lm5MGqtmVFprTs65nwJNW1HgrpM2WL98PW59068W1F6XMSW2dz-8k8c7R2HW1cjHtb4rTWwNW8dVRgC88pgZwW6Hgq4K1yhmVwW6Kwqpb2Bp4B2f5Yb-8j04>\r\n>\r\n>\r\n>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3p6N2V5ClRxKDqNW3V0CSr411rHwW4x7Q1n6v5ZdtW4cdF5X3RzMvfN3w5BSZ52f8CW2zFgNV3rFVJWVf_mT94WtzmnW8mLvhS1nLhKDW3hrW3L7DGtrkW6f1z5k7krj7-W1XXnQg6Wh_X3W7mXkSC2vTWFCW3025hb5_BgrCW8ffjRp5C1sYRW5dysm_2s5QpyW4-SZ4q7PZLdQW1Wm7Fx6X3LDkW6SkmB91b9lpgW1NXsd942s_6TW6R9Q8z2Lq9PxVMCCbj8t7v1VW68WCqm5WcDWMf4YbV0n04>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3p0N2tbrpLpv0zGW7lgZD_7HqXS2W7Jd7xc4dJgXKN65K13ssyhcGW1fPc3j1-ZmpHW5vPPQj59bXbYW8zGLn89khJMnTmbQR5RL0mmW998sHc1Q34SfW2cCtwm8TPCxTW8mmHts6WfZzzW4c-8RK2ZtTTnN97gzHT25CMhW4kHZrC4mP_MmW7GBX6V7fsB7lW763S8H4-B75VW6GPpV94lLVjYN7vgPntJc_yXVGpdvh4Y0fnVW1gHxYQ2LVJWZW3KNyWp8ttP1BW6dc5CJ28FqW4W538pMv5YxvS1W48lNdV9gdGWtf9cdRH804>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jll2-6qcW7Y8-PT6lZ3nTW3Z-SV59jMkVmW5tgXqZ7JHKv9W4ryhR783rk1GW3rytz87Vr1JVW5L-RV_3cnmDSW5T4pm87tJWYdW7zSkxH14YDMBMjj18k9XZvwW6SYfHr202pR6W1RZpxp7l_6HNW4F07Xn71Gn7lW8z3PnX5Tv4WnW2zJ15F2w42bcW4Z5LSF4Qt3d4VxVp_W3m9T0yW3j_GcX5GKXJ_W18Q0MH19-LHnW6X0GSd45R9XdW77YQp57kCFBNW3MHX_s7xGlQqW626HPP4zs8v4Vsjz9T88r5xbW72BRLF2rK2syW7DRrXh2j3Jm0W1nDKCn4ts2QrW4SRBrq1zfk0Rf62LNJK04>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3l_V7Pfrt92N5r-W2YmJbl7c3p1-W7j7WVL2wTZvSW6MZQCJ8HYd-gW6JPhtm6RqfNDW9jbBxJ7-Jd-YVsNGTT8dGlmcW3fcBc45cng-yN5VnGZPWjvpjVGq1f-8K3tShW15h05j8xp1K4W3DCNKS2TWsrNN7BnB85G4h_TW1FtG5_38_jg6Vf21332z2fZtW5kGtX361x5mzW6XGG0r6Jm879W7c705f1nH8kwW6Q-Scy8JHSrzW5bryNC6Wh-Q8W1GgG0q8RgscYW3F8n_n8DQjbqW1dycfw1RGYGmN7h9wpWcBB67f5tTjl-04>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3nZW8GfHlt2TtYMTW4Jrnjn81y2kbW45KjmM7T-BZxW1LJXHS8K0nzzMXzDCxvNLyjW19W7D010M48dW12Ryjl7j7p-5N1gwPZxhBZKmW4vjqrB7drS7CW695LPr6J3fdZW9lh7yb60cC6xW2rPxxD9lbMs-W2wHTZ73DH-BRW1vq4qZ3x_GskN25j83LX3gBsW2S5-t76M9d7LW6lQzcX8tb5gyW6XB1R441_ywQW8N7WwT2snj40W960BCZ5pBRpMVSP-lk7bsNxtW87Tn5P5PnzS-d7nDZb04>\r\n>\r\n>\r\n>\r\n> *From:* Nathan Staron <Nathan@lithiumbatterycompany.com>\r\n> *Sent:* Friday, September 26, 2025 3:58 PM\r\n> *To:* Elizabeth Cordes <elizabethc@bradentonareaedc.com>\r\n> *Cc:* Yanet Lopez <yanetl@bradentonareaedc.com>; Kevin Campos <\r\n> Kcampos@tampabayedc.com>; Brian Stufflebean <brian@mavrix.one>; Rick\r\n> Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Introduction - Bradenton Area EDC\r\n>\r\n>\r\n>\r\n> Hi Elizabeth,\r\n>\r\n>\r\n>\r\n> Would you be able to send a Zoom link for the call that we have scheduled\r\n> next week?\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mQW5hlCW65stZ98W321SNk27pMfwW5dyd1R2SfzRkW5MZtyh3nMMhjW3-FMWX7H-C-vW2C-nd75TTqKNW4m_F606RQcShN5zVDNlxVfHXW41sPRg4z9170W4xCYyJ5glhH_W8BMRJF356C7_W1DjRVR804DPgW2D5Nn733vYT2W6RSkLk7nDRLQW6q0M2x2FYhcGN5vgZNDN5qDPW8DbCHf5qXv-ZThZx164g_LtW6n3YwK4MQLpqN1cBQwtD003vW14QgYq45FcDNW95vyf98TlbtBdJftdR04>\r\n>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mXW4j41G14h5s88V5p3FB6gHZ-ZN3c0Hx2mcxLRW78Jyg86sjG8xN31YDR5y37J8W19LfG84Hb3LVW8PQ4vC6B1ZGpW85pHg4373x59W50SJlV1-dk-yW95KG1g4JStdSW3t3gnL8PSVr0W3M_RlT1cym2FW5yQJ5b8vxkGVVY0_Xy4mDnbLW4tL7vp3DqwqFW9dbhgs783WB_Vvv6m_4vZXs5W5sZ06B5m8h1TW85Mx1Z2jnXRPW8ygB4019Vgp-W7qBypL26HQL1W4w1z6g6LsZjkf3Zsp5T04>\r\n>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3kPW4J0YGH6pYc-pW5pN4gj6N1-nlN8bf8mYBd5hYW8g162g80pVGbW35XHjv30P8W1V1PXzF9cg7_PV9bmyn4L9vc6W92KGhc32Wh2BW2T02HX6-gMsqN1HBS6lD7k36W3Cmwd62Q_nd0W1tS6Y23F_hW5W1303bj92zGD-W4SsDwJ1PQgX1W8-P0zh8Z7FS8N77BCJ8YGNJzW8yblDc4zr5cLW7SsMhl8yJ7HfW2KmYrW2hNGwxW6bByXR4CyzbcN1r1R22XHpLzW20nSBq5yjYP0W8j9J1n8_YH9RW8ZsfVJ7kjbwfdcLDf604>\r\n>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3m_W6c9R_Q5mLnSyVCJkS45y4h6CN3kry02-Jt_9W642Vz23LDbwSW8l4M0V98zl9qVwncbk5Tmk56VQcXVL71k01-W7CCPvg1c2jwwW8pd1xV5zPdNCW2fN44w6GmR9MW8hp6-V2lrXMYW5lmTTf1nQFQ8W6Gt6xH2gqvsLW4ZDNRJ2QLhqQW8sqkk57htK8nW6Lrt6f5LnQPLVWbBKl566fV3W2DCGJv6TMyWvN6ZbcjkynYVsW6R2xH21m-HxRW5pLwRh8HrDZLW7j8Jgm3zs44XW7FcB5k7cZf3nN7LFp9rP86_jf3nLLkK04>\r\n>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3m1W1RnDgw4nX4s8N8-VdR1LJgzGW5QsF1F7vVSH9W48h1042HL2LDW36nqz46jq-d6W44lhVr582TWhW2Mv5Gc26kwdqW69j-cx4F7BJ_W3zRv2R8Ht8HpW8ddQJ08zg8dzW5DsNZQ4R2Mr3W7Qxj6V3KB4VmVdy5X078bJJhN8JjH_H8Xt_pW9gYK0Z44XbDzW7f-M5X7sDgplV5LMfj7NZ2hcW4_h57x2ttsDCF50SYjrhfpgW4GZ_d-1XRQfCN893sy_lT5XkW94fFYW6_vqM1W6wGGb649c4RjVNBl2J3ZQ90Jf3z2XHn04>\r\n>\r\n>\r\n>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mQW5hlCW65stZ98W321SNk27pMfwW5dyd1R2SfzRkW5MZtyh3nMMhjW3-FMWX7H-C-vW2C-nd75TTqKNW4m_F606RQcShN5zVDNlxVfHXW41sPRg4z9170W4xCYyJ5glhH_W8BMRJF356C7_W1DjRVR804DPgW2D5Nn733vYT2W6RSkLk7nDRLQW6q0M2x2FYhcGN5vgZNDN5qDPW8DbCHf5qXv-ZThZx164g_LtW6n3YwK4MQLpqN1cBQwtD003vW14QgYq45FcDNW95vyf98TlbtBdJftdR04>\r\n>\r\n> *NATHAN A. STARON*\r\n>\r\n> Founder / CEO\r\n>\r\n> *Lithium Battery Company*\r\n>\r\n> *Cell Phone* 813-504-0074\r\n>\r\n> *Phone* 844-GET-LITHIUM\r\n>\r\n> Nathan@lithiumbatterycompany.com\r\n>\r\n> *Schedule A Zoom*\r\n> <https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3lDW2VLRlm7J62nHW7zjwsc2-Zyv0W52CBv366NwyHW7YmZ_q5d818kMbTZ8850bF7W1lp2yt4xYQckW35zwy918TsypW8fcMFW5F0BhvW5-Qlx32--mKTW7yYFpd4k1FWkW2q7-Qn76Fx1lW5-7yl-7VcRQJW82KTWk5P5m6bW7r4dLH2cfW5kW8Fw4S61Y_xTcW8sBVsc1tvjxdW4HkXTp8kWmTYW2NBgcx6y39JDW3KpvnJ2Kv-mzW8K75rL29tbxDN26qscbczTTdW6YDddy4g4RZrW31mF8s6hTNVqN2C5N65RDjVXf2jqhW-04>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n> On Thu, Sep 25, 2025 at 12:03 PM Elizabeth Cordes <\r\n> elizabethc@bradentonareaedc.com> wrote:\r\n>\r\n> Hi Nathan,\r\n>\r\n>\r\n>\r\n> It is a pleasure to e-meet both of you, Brian and Rick!\r\n>\r\n>\r\n>\r\n> Let’s do a call on Wednesday, October 1 at 10am? If a site has already\r\n> been selected for the project, we are happy to meet you at the site as\r\n> well. Please let me know what works best for you.\r\n>\r\n>\r\n>\r\n> Kindest regards,\r\n>\r\n>\r\n>\r\n> *Elizabeth Cordes*\r\n>\r\n> Director of Business Recruitment & Expansion\r\n>\r\n> *Bradenton Area Economic Development Corporation*\r\n>\r\n> 5840 26th Street West, 26 West Center, Suite 232, Bradenton, FL 34207\r\n> <https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkMgQprkW6N3_xK6lZ3nwW1S-NPm50p7sBN5f0h3dq66mwW2GjSSw8RL3CVW33xj8Y6ZhQnFW8B_6mK8qmplbW5WwK0G2G_YVjW53D6_Y5Lk4fvVmQ8Vw8LF52TW6SWrYl61h3rKW88LMvF2-kzyzW5KGNsg8xdCxqW7SHJmB1mjN5vW2rlG897WMDzPW1BBKw92tpVTKVlKvg21tHf5qW4jvFnR5gVsT3MQr1RZRJmQDV2qYRZ2DbLGtW8Y0zjf1lyTzKW8n51Cp1SdFPtW4pq5Lw2FGSYWW6Crnr3504Hj0W10_0d46CbZH_W8-HBD28HVTTkW2F9mQK32sfkTW3FLWsK19JPkhW3MQ1lR5X7CbRV6Z9tF5wT04rVwn70p6PvdcRW2VzMRk4LRwRsN8-G3Jvlkl8CW4V4b027z_kCDW2Zd_BF1MHsNYW3ywjF96_k7P1W6M6gG05qzvn-W41F7KZ4Db1QcN5g7tT-4VghbW3nCrDL2bxJk6W3ZL2M82j4gsdW6GQgCX1njbDCN2Vg3g-fsLBrN4MBKxPxWj04W4hTYTm4_HKgJW1pL0Pk7Rm0w3W9k8_zw5BmwTxW2RGgqD3tqn4WVqfbLr6yx4MDW7cyNSJ1ss5-JW5gx4wD3wkGmgW5SWj8V1dvcTPW8l1kLv7QhjKcW8HyBXt606-YTW3xCnj97FPhrTW70CBXf6rN35kW6xl5Dj8j5H4ZN59Cdybzf8CBVFd7jR7R5c3qW3hvzZk7jpr59W8lNnhD22ptJdW6Lw0n16sGsmhW5dGmbt4WkGWvVbj6zz65tgGkN1nDBR9hX-HkW3fSwQg74ZgV_W2D6ZgL5mk-zKW7phXVN9kpmNYW1_BYH63rC16PW2G6Gfs3cDS6MV9F1Zs4BKsP-VJzcnY50kKtFW6Yxvmg1xb-WPN5KZx62G62mPW5RJmJ_2BvZD2W1-nqhz6Fy7SlVFmXH33BVZdKW2M7NhB1S8dMkW4yz52j5JD9B9W5-B9R_4KQ7fbN3fVlwswDBHxW92JFwN9b8Yg6VXSf_p2bRBzhW1G5gh055Ct_QW5R4FWT7nD7x7W7Chzdk2N-vg-W2G71QP1Tr_vyW65Qbpj3DrZP5W4Yb_jX6H8-3KW4BmqYF6k76WbVyrg7p4Sv4HkW4707lL442SJbN8GZW2CT_tBWN69dn7h5mr1vW3xx5vl2fvhK6W9hRpkl7898Q2W7GkS315yQZbdW8-pkBM48xPKDN5hXhm15L98VW5Z9fT13YW2-8W8PJ__S36Rr3PW6v_mV13c3zwNW935XTC6S79VLW3pB2Cx7TZwhnW4sQYNH6Tfpw7VMRnth1NQNCqV7Mytm7SltwvW977vVP6jHYJJW8mGHDY8w_VKCN3Qrw7mhDR5cW2kP64g22X09pW4CyBgB5Rsxl1W6ZKSHd47fycGW38Z7WW2yF23ZV4Kx5Q5dDHs9W3T8tx16tFScBW6Npzg-7cgGfyW4_lZy44N5nk4W6SGTKN24Kl35W6MRlsh6GRQ-ff7ln0Xb04>\r\n>\r\n> *Email:* ElizabethC@BradentonAreaEDC.com\r\n>\r\n> *Phone: *941-803-9033\r\n>\r\n> *Cell: *716-908-6134\r\n> BradentonAreaEDC.com\r\n> <https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3m-W76k8Rv54FzY3W63BPky6WGs-QW5x9xcn2NfXL4W6WZ3Kf3tQ4rBW8rpQNX1QTG8VW2LwzGK7SZC75VtGXvk6k9GT9W8_R1wR6qvv1tVZxx5_326Tw6W4qSM5g2_4MkkN5vNflCMwLm7W8VJgw58JF2KPW4QwYz-53l_yVW87Z2lm5MGqtmVFprTs65nwJNW1HgrpM2WL98PW59068W1F6XMSW2dz-8k8c7R2HW1cjHtb4rTWwNW8dVRgC88pgZwW6Hgq4K1yhmVwW6Kwqpb2Bp4B2f5Yb-8j04>\r\n>\r\n>\r\n>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3p6N2V5ClRxKDqNW3V0CSr411rHwW4x7Q1n6v5ZdtW4cdF5X3RzMvfN3w5BSZ52f8CW2zFgNV3rFVJWVf_mT94WtzmnW8mLvhS1nLhKDW3hrW3L7DGtrkW6f1z5k7krj7-W1XXnQg6Wh_X3W7mXkSC2vTWFCW3025hb5_BgrCW8ffjRp5C1sYRW5dysm_2s5QpyW4-SZ4q7PZLdQW1Wm7Fx6X3LDkW6SkmB91b9lpgW1NXsd942s_6TW6R9Q8z2Lq9PxVMCCbj8t7v1VW68WCqm5WcDWMf4YbV0n04>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3p0N2tbrpLpv0zGW7lgZD_7HqXS2W7Jd7xc4dJgXKN65K13ssyhcGW1fPc3j1-ZmpHW5vPPQj59bXbYW8zGLn89khJMnTmbQR5RL0mmW998sHc1Q34SfW2cCtwm8TPCxTW8mmHts6WfZzzW4c-8RK2ZtTTnN97gzHT25CMhW4kHZrC4mP_MmW7GBX6V7fsB7lW763S8H4-B75VW6GPpV94lLVjYN7vgPntJc_yXVGpdvh4Y0fnVW1gHxYQ2LVJWZW3KNyWp8ttP1BW6dc5CJ28FqW4W538pMv5YxvS1W48lNdV9gdGWtf9cdRH804>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jll2-6qcW7Y8-PT6lZ3nTW3Z-SV59jMkVmW5tgXqZ7JHKv9W4ryhR783rk1GW3rytz87Vr1JVW5L-RV_3cnmDSW5T4pm87tJWYdW7zSkxH14YDMBMjj18k9XZvwW6SYfHr202pR6W1RZpxp7l_6HNW4F07Xn71Gn7lW8z3PnX5Tv4WnW2zJ15F2w42bcW4Z5LSF4Qt3d4VxVp_W3m9T0yW3j_GcX5GKXJ_W18Q0MH19-LHnW6X0GSd45R9XdW77YQp57kCFBNW3MHX_s7xGlQqW626HPP4zs8v4Vsjz9T88r5xbW72BRLF2rK2syW7DRrXh2j3Jm0W1nDKCn4ts2QrW4SRBrq1zfk0Rf62LNJK04>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3l_V7Pfrt92N5r-W2YmJbl7c3p1-W7j7WVL2wTZvSW6MZQCJ8HYd-gW6JPhtm6RqfNDW9jbBxJ7-Jd-YVsNGTT8dGlmcW3fcBc45cng-yN5VnGZPWjvpjVGq1f-8K3tShW15h05j8xp1K4W3DCNKS2TWsrNN7BnB85G4h_TW1FtG5_38_jg6Vf21332z2fZtW5kGtX361x5mzW6XGG0r6Jm879W7c705f1nH8kwW6Q-Scy8JHSrzW5bryNC6Wh-Q8W1GgG0q8RgscYW3F8n_n8DQjbqW1dycfw1RGYGmN7h9wpWcBB67f5tTjl-04>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3nZW8GfHlt2TtYMTW4Jrnjn81y2kbW45KjmM7T-BZxW1LJXHS8K0nzzMXzDCxvNLyjW19W7D010M48dW12Ryjl7j7p-5N1gwPZxhBZKmW4vjqrB7drS7CW695LPr6J3fdZW9lh7yb60cC6xW2rPxxD9lbMs-W2wHTZ73DH-BRW1vq4qZ3x_GskN25j83LX3gBsW2S5-t76M9d7LW6lQzcX8tb5gyW6XB1R441_ywQW8N7WwT2snj40W960BCZ5pBRpMVSP-lk7bsNxtW87Tn5P5PnzS-d7nDZb04>\r\n>\r\n>\r\n>\r\n> *From:* Nathan Staron <Nathan@lithiumbatterycompany.com>\r\n> *Sent:* Wednesday, September 24, 2025 5:47 PM\r\n> *To:* Elizabeth Cordes <elizabethc@bradentonareaedc.com>; Yanet Lopez <\r\n> yanetl@bradentonareaedc.com>\r\n> *Cc:* Kevin Campos <Kcampos@tampabayedc.com>; Brian Stufflebean <\r\n> brian@mavrix.one>; Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Introduction - Bradenton Area EDC\r\n>\r\n>\r\n>\r\n> Good Afternoon Elizabeth,\r\n>\r\n>\r\n>\r\n> Thank you for your prompt response and for the kind welcome. It was a\r\n> pleasure e-meeting you as well.\r\n>\r\n>\r\n>\r\n> I would like to introduce Brian Stufflebean and Rick Mislan, who are the\r\n> project leads for our expansion into Parrish, FL. They will be instrumental\r\n> in the development of our new location, and I believe it would be\r\n> beneficial for them to connect with you directly.\r\n>\r\n>\r\n>\r\n> Regarding setting up a meeting, I agree that it would be valuable to\r\n> discuss the project further. We would be happy to coordinate a time that\r\n> works best for everyone next week. As you mentioned, Tuesday and Wednesday\r\n> work well for you, and we can certainly align with that.\r\n>\r\n>\r\n>\r\n> Please let us know what specific times on Tuesday or Wednesday next week\r\n> would be most convenient for you and Yanet, and we will make sure to\r\n> schedule a call or meeting accordingly. We look forward to the opportunity\r\n> to collaborate.\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mQW5hlCW65stZ98W321SNk27pMfwW5dyd1R2SfzRkW5MZtyh3nMMhjW3-FMWX7H-C-vW2C-nd75TTqKNW4m_F606RQcShN5zVDNlxVfHXW41sPRg4z9170W4xCYyJ5glhH_W8BMRJF356C7_W1DjRVR804DPgW2D5Nn733vYT2W6RSkLk7nDRLQW6q0M2x2FYhcGN5vgZNDN5qDPW8DbCHf5qXv-ZThZx164g_LtW6n3YwK4MQLpqN1cBQwtD003vW14QgYq45FcDNW95vyf98TlbtBdJftdR04>\r\n>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mXW4j41G14h5s88V5p3FB6gHZ-ZN3c0Hx2mcxLRW78Jyg86sjG8xN31YDR5y37J8W19LfG84Hb3LVW8PQ4vC6B1ZGpW85pHg4373x59W50SJlV1-dk-yW95KG1g4JStdSW3t3gnL8PSVr0W3M_RlT1cym2FW5yQJ5b8vxkGVVY0_Xy4mDnbLW4tL7vp3DqwqFW9dbhgs783WB_Vvv6m_4vZXs5W5sZ06B5m8h1TW85Mx1Z2jnXRPW8ygB4019Vgp-W7qBypL26HQL1W4w1z6g6LsZjkf3Zsp5T04>\r\n>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3kPW4J0YGH6pYc-pW5pN4gj6N1-nlN8bf8mYBd5hYW8g162g80pVGbW35XHjv30P8W1V1PXzF9cg7_PV9bmyn4L9vc6W92KGhc32Wh2BW2T02HX6-gMsqN1HBS6lD7k36W3Cmwd62Q_nd0W1tS6Y23F_hW5W1303bj92zGD-W4SsDwJ1PQgX1W8-P0zh8Z7FS8N77BCJ8YGNJzW8yblDc4zr5cLW7SsMhl8yJ7HfW2KmYrW2hNGwxW6bByXR4CyzbcN1r1R22XHpLzW20nSBq5yjYP0W8j9J1n8_YH9RW8ZsfVJ7kjbwfdcLDf604>\r\n>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3m_W6c9R_Q5mLnSyVCJkS45y4h6CN3kry02-Jt_9W642Vz23LDbwSW8l4M0V98zl9qVwncbk5Tmk56VQcXVL71k01-W7CCPvg1c2jwwW8pd1xV5zPdNCW2fN44w6GmR9MW8hp6-V2lrXMYW5lmTTf1nQFQ8W6Gt6xH2gqvsLW4ZDNRJ2QLhqQW8sqkk57htK8nW6Lrt6f5LnQPLVWbBKl566fV3W2DCGJv6TMyWvN6ZbcjkynYVsW6R2xH21m-HxRW5pLwRh8HrDZLW7j8Jgm3zs44XW7FcB5k7cZf3nN7LFp9rP86_jf3nLLkK04>\r\n>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3m1W1RnDgw4nX4s8N8-VdR1LJgzGW5QsF1F7vVSH9W48h1042HL2LDW36nqz46jq-d6W44lhVr582TWhW2Mv5Gc26kwdqW69j-cx4F7BJ_W3zRv2R8Ht8HpW8ddQJ08zg8dzW5DsNZQ4R2Mr3W7Qxj6V3KB4VmVdy5X078bJJhN8JjH_H8Xt_pW9gYK0Z44XbDzW7f-M5X7sDgplV5LMfj7NZ2hcW4_h57x2ttsDCF50SYjrhfpgW4GZ_d-1XRQfCN893sy_lT5XkW94fFYW6_vqM1W6wGGb649c4RjVNBl2J3ZQ90Jf3z2XHn04>\r\n>\r\n>\r\n>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3mQW5hlCW65stZ98W321SNk27pMfwW5dyd1R2SfzRkW5MZtyh3nMMhjW3-FMWX7H-C-vW2C-nd75TTqKNW4m_F606RQcShN5zVDNlxVfHXW41sPRg4z9170W4xCYyJ5glhH_W8BMRJF356C7_W1DjRVR804DPgW2D5Nn733vYT2W6RSkLk7nDRLQW6q0M2x2FYhcGN5vgZNDN5qDPW8DbCHf5qXv-ZThZx164g_LtW6n3YwK4MQLpqN1cBQwtD003vW14QgYq45FcDNW95vyf98TlbtBdJftdR04>\r\n>\r\n> *NATHAN A. STARON*\r\n>\r\n> Founder / CEO\r\n>\r\n> *Lithium Battery Company*\r\n>\r\n> *Cell Phone* 813-504-0074\r\n>\r\n> *Phone* 844-GET-LITHIUM\r\n>\r\n> Nathan@lithiumbatterycompany.com\r\n>\r\n> *Schedule A Zoom*\r\n> <https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3lDW2VLRlm7J62nHW7zjwsc2-Zyv0W52CBv366NwyHW7YmZ_q5d818kMbTZ8850bF7W1lp2yt4xYQckW35zwy918TsypW8fcMFW5F0BhvW5-Qlx32--mKTW7yYFpd4k1FWkW2q7-Qn76Fx1lW5-7yl-7VcRQJW82KTWk5P5m6bW7r4dLH2cfW5kW8Fw4S61Y_xTcW8sBVsc1tvjxdW4HkXTp8kWmTYW2NBgcx6y39JDW3KpvnJ2Kv-mzW8K75rL29tbxDN26qscbczTTdW6YDddy4g4RZrW31mF8s6hTNVqN2C5N65RDjVXf2jqhW-04>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n> On Wed, Sep 24, 2025 at 3:54 PM Elizabeth Cordes <\r\n> elizabethc@bradentonareaedc.com> wrote:\r\n>\r\n> Hi Kevin,\r\n>\r\n>\r\n>\r\n> Thank you very much for the introduction! It is a pleasure to e-meet you,\r\n> Nathan. I would very much like to set up a call or meeting to discuss your\r\n> project further. Please let me know a day and time that would work best for\r\n> you. We have good availability Tuesday and Wednesday next week. I look\r\n> forward to working with you.\r\n>\r\n>\r\n>\r\n> Kindest regards,\r\n>\r\n>\r\n>\r\n> *Elizabeth Cordes*\r\n>\r\n> Director of Business Recruitment & Expansion\r\n>\r\n> *Bradenton Area Economic Development Corporation*\r\n>\r\n> 5840 26th Street West, 26 West Center, Suite 232, Bradenton, FL 34207\r\n> <https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkMgQprkW6N3_xK6lZ3nwW1S-NPm50p7sBN5f0h3dq66mwW2GjSSw8RL3CVW33xj8Y6ZhQnFW8B_6mK8qmplbW5WwK0G2G_YVjW53D6_Y5Lk4fvVmQ8Vw8LF52TW6SWrYl61h3rKW88LMvF2-kzyzW5KGNsg8xdCxqW7SHJmB1mjN5vW2rlG897WMDzPW1BBKw92tpVTKVlKvg21tHf5qW4jvFnR5gVsT3MQr1RZRJmQDV2qYRZ2DbLGtW8Y0zjf1lyTzKW8n51Cp1SdFPtW4pq5Lw2FGSYWW6Crnr3504Hj0W10_0d46CbZH_W8-HBD28HVTTkW2F9mQK32sfkTW3FLWsK19JPkhW3MQ1lR5X7CbRV6Z9tF5wT04rVwn70p6PvdcRW2VzMRk4LRwRsN8-G3Jvlkl8CW4V4b027z_kCDW2Zd_BF1MHsNYW3ywjF96_k7P1W6M6gG05qzvn-W41F7KZ4Db1QcN5g7tT-4VghbW3nCrDL2bxJk6W3ZL2M82j4gsdW6GQgCX1njbDCN2Vg3g-fsLBrN4MBKxPxWj04W4hTYTm4_HKgJW1pL0Pk7Rm0w3W9k8_zw5BmwTxW2RGgqD3tqn4WVqfbLr6yx4MDW7cyNSJ1ss5-JW5gx4wD3wkGmgW5SWj8V1dvcTPW8l1kLv7QhjKcW8HyBXt606-YTW3xCnj97FPhrTW70CBXf6rN35kW6xl5Dj8j5H4ZN59Cdybzf8CBVFd7jR7R5c3qW3hvzZk7jpr59W8lNnhD22ptJdW6Lw0n16sGsmhW5dGmbt4WkGWvVbj6zz65tgGkN1nDBR9hX-HkW3fSwQg74ZgV_W2D6ZgL5mk-zKW7phXVN9kpmNYW1_BYH63rC16PW2G6Gfs3cDS6MV9F1Zs4BKsP-VJzcnY50kKtFW6Yxvmg1xb-WPN5KZx62G62mPW5RJmJ_2BvZD2W1-nqhz6Fy7SlVFmXH33BVZdKW2M7NhB1S8dMkW4yz52j5JD9B9W5-B9R_4KQ7fbN3fVlwswDBHxW92JFwN9b8Yg6VXSf_p2bRBzhW1G5gh055Ct_QW5R4FWT7nD7x7W7Chzdk2N-vg-W2G71QP1Tr_vyW65Qbpj3DrZP5W4Yb_jX6H8-3KW4BmqYF6k76WbVyrg7p4Sv4HkW4707lL442SJbN8GZW2CT_tBWN69dn7h5mr1vW3xx5vl2fvhK6W9hRpkl7898Q2W7GkS315yQZbdW8-pkBM48xPKDN5hXhm15L98VW5Z9fT13YW2-8W8PJ__S36Rr3PW6v_mV13c3zwNW935XTC6S79VLW3pB2Cx7TZwhnW4sQYNH6Tfpw7VMRnth1NQNCqV7Mytm7SltwvW977vVP6jHYJJW8mGHDY8w_VKCN3Qrw7mhDR5cW2kP64g22X09pW4CyBgB5Rsxl1W6ZKSHd47fycGW38Z7WW2yF23ZV4Kx5Q5dDHs9W3T8tx16tFScBW6Npzg-7cgGfyW4_lZy44N5nk4W6SGTKN24Kl35W6MRlsh6GRQ-ff7ln0Xb04>\r\n>\r\n> *Email:* ElizabethC@BradentonAreaEDC.com\r\n>\r\n> *Phone: *941-803-9033\r\n>\r\n> *Cell: *716-908-6134\r\n> BradentonAreaEDC.com\r\n> <https://d152-C04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3m-W76k8Rv54FzY3W63BPky6WGs-QW5x9xcn2NfXL4W6WZ3Kf3tQ4rBW8rpQNX1QTG8VW2LwzGK7SZC75VtGXvk6k9GT9W8_R1wR6qvv1tVZxx5_326Tw6W4qSM5g2_4MkkN5vNflCMwLm7W8VJgw58JF2KPW4QwYz-53l_yVW87Z2lm5MGqtmVFprTs65nwJNW1HgrpM2WL98PW59068W1F6XMSW2dz-8k8c7R2HW1cjHtb4rTWwNW8dVRgC88pgZwW6Hgq4K1yhmVwW6Kwqpb2Bp4B2f5Yb-8j04>\r\n>\r\n>\r\n>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3p6N2V5ClRxKDqNW3V0CSr411rHwW4x7Q1n6v5ZdtW4cdF5X3RzMvfN3w5BSZ52f8CW2zFgNV3rFVJWVf_mT94WtzmnW8mLvhS1nLhKDW3hrW3L7DGtrkW6f1z5k7krj7-W1XXnQg6Wh_X3W7mXkSC2vTWFCW3025hb5_BgrCW8ffjRp5C1sYRW5dysm_2s5QpyW4-SZ4q7PZLdQW1Wm7Fx6X3LDkW6SkmB91b9lpgW1NXsd942s_6TW6R9Q8z2Lq9PxVMCCbj8t7v1VW68WCqm5WcDWMf4YbV0n04>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3p0N2tbrpLpv0zGW7lgZD_7HqXS2W7Jd7xc4dJgXKN65K13ssyhcGW1fPc3j1-ZmpHW5vPPQj59bXbYW8zGLn89khJMnTmbQR5RL0mmW998sHc1Q34SfW2cCtwm8TPCxTW8mmHts6WfZzzW4c-8RK2ZtTTnN97gzHT25CMhW4kHZrC4mP_MmW7GBX6V7fsB7lW763S8H4-B75VW6GPpV94lLVjYN7vgPntJc_yXVGpdvh4Y0fnVW1gHxYQ2LVJWZW3KNyWp8ttP1BW6dc5CJ28FqW4W538pMv5YxvS1W48lNdV9gdGWtf9cdRH804>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jll2-6qcW7Y8-PT6lZ3nTW3Z-SV59jMkVmW5tgXqZ7JHKv9W4ryhR783rk1GW3rytz87Vr1JVW5L-RV_3cnmDSW5T4pm87tJWYdW7zSkxH14YDMBMjj18k9XZvwW6SYfHr202pR6W1RZpxp7l_6HNW4F07Xn71Gn7lW8z3PnX5Tv4WnW2zJ15F2w42bcW4Z5LSF4Qt3d4VxVp_W3m9T0yW3j_GcX5GKXJ_W18Q0MH19-LHnW6X0GSd45R9XdW77YQp57kCFBNW3MHX_s7xGlQqW626HPP4zs8v4Vsjz9T88r5xbW72BRLF2rK2syW7DRrXh2j3Jm0W1nDKCn4ts2QrW4SRBrq1zfk0Rf62LNJK04>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/Jl22-6qcW7lCdLW6lZ3l_V7Pfrt92N5r-W2YmJbl7c3p1-W7j7WVL2wTZvSW6MZQCJ8HYd-gW6JPhtm6RqfNDW9jbBxJ7-Jd-YVsNGTT8dGlmcW3fcBc45cng-yN5VnGZPWjvpjVGq1f-8K3tShW15h05j8xp1K4W3DCNKS2TWsrNN7BnB85G4h_TW1FtG5_38_jg6Vf21332z2fZtW5kGtX361x5mzW6XGG0r6Jm879W7c705f1nH8kwW6Q-Scy8JHSrzW5bryNC6Wh-Q8W1GgG0q8RgscYW3F8n_n8DQjbqW1dycfw1RGYGmN7h9wpWcBB67f5tTjl-04>\r\n>\r\n> <https://d152-c04.na1.hs-sales-engage.com/Ctc/V+23284/d152-C04/JkM2-6qcW6N1vHY6lZ3nZW8GfHlt2TtYMTW4Jrnjn81y2kbW45KjmM7T-BZxW1LJXHS8K0nzzMXzDCxvNLyjW19W7D010M48dW12Ryjl7j7p-5N1gwPZxhBZKmW4vjqrB7drS7CW695LPr6J3fdZW9lh7yb60cC6xW2rPxxD9lbMs-W2wHTZ73DH-BRW1vq4qZ3x_GskN25j83LX3gBsW2S5-t76M9d7LW6lQzcX8tb5gyW6XB1R441_ywQW8N7WwT2snj40W960BCZ5pBRpMVSP-lk7bsNxtW87Tn5P5PnzS-d7nDZb04>\r\n>\r\n>\r\n>\r\n> *From:* Kevin Campos <Kcampos@tampabayedc.com>\r\n> *Sent:* Wednesday, September 24, 2025 11:44 AM\r\n> *To:* Nathan Staron <nathan@lithiumbatterycompany.com>; Yanet Lopez <\r\n> yanetl@bradentonareaedc.com>; Elizabeth Cordes <\r\n> elizabethc@bradentonareaedc.com>\r\n> *Subject:* Introduction - Bradenton Area EDC\r\n>\r\n>\r\n>\r\n> Hello Nathan,\r\n>\r\n>\r\n>\r\n> As discussed, I wanted to connect to the EDC in Manatee County for your\r\n> Parrish, FL location.\r\n>\r\n>\r\n>\r\n> @yanetl@bradentonareaedc.com <yanetl@bradentonareaedc.com> and\r\n> @elizabethc@bradentonareaedc.com <elizabethc@bradentonareaedc.com> thanks\r\n> for taking my call. Could you connect with Nathan Staron when you have a\r\n> chance? I have included him on this email and they are expanding into that\r\n> area.\r\n>\r\n>\r\n>\r\n> *Kevin Campos, FCWP*\r\n> ECONOMIC DEVELOPMENT MANAGER\r\n> *TAMPA BAY ECONOMIC DEVELOPMENT COUNCIL*\r\n>\r\n> 101 E. Kennedy Blvd., Suite 2000, Tampa, FL 33602\r\n>\r\n> *O:* 813.518.2662 I *M*: 813.763.0307\r\n>\r\n> kcampos@tampabayedc.com\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>',0,0,0,0,0,0,'2025-09-30 13:08:27','2025-12-09 19:29:21','2025-12-09 19:29:21','2025-12-09 19:29:21',NULL,NULL,NULL),
(816,4,'<010001999ae34db3-7ffd8ed7-7a8c-4943-93a2-efe82409734f-000000@email.amazonses.com>',NULL,NULL,'Prime Big Deal Days is here with business-only savings','no-reply@business.amazon.com','Amazon Business','<!doctype html>\r\n<html lang=\"en-US\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\">\r\n <head>\r\n  <title>Prime Big Deal Days is here with business-only savings</title><!--[if !mso]><!-- -->\r\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><!--<![endif]-->\r\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\r\n  <style type=\"text/css\">#outlook a { padding:0; }           body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block; }</style><!--[if mso]>                    <xml>                      <o:OfficeDocumentSettings xmlns:o=\"urn:schemas-microsoft-com:office:office\">                    <o:AllowPNG/>                          <o:PixelsPerInch>96</o:PixelsPerInch>                      </o:OfficeDocumentSettings>                   <w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\">               <w:DontUseAdvancedTypographyReadingMail/>             </w:WordDocument>                  </xml>                        <style type=\"text/css\">             table { border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt; }             .mj-outlook-group-fix { width:100% !important; }           </style>                  <![endif]--><!--[if !mso]><!-->\r\n  <link href=\"https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <link href=\"https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <style type=\"text/css\">@import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);</style><!--<![endif]-->\r\n  <style type=\"text/css\">@media only screen and (min-width:641px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }</style>\r\n  <style type=\"text/css\">.links-232F3E-underline-bold a { color: #232F3E; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .mso-button-dark-mode a {background: transparent !important;} .links-161D26 a { color: #161D26; text-decoration: none; } .links-161D26-underline a { color: #161D26; text-decoration: underline; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:641px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-165px { max-width: 165px !important} .padding-32px-40px-20px-40px { padding: 32px 40px 20px 40px !important} .font-size-36px { font-size: 36px !important} .max-width-640px { max-width: 640px !important} .padding-0px-40px-0px-40px { padding: 0px 40px 0px 40px !important} .padding-24px-40px-0px-40px { padding: 24px 40px 0px 40px !important} .padding-20px-40px-0px-40px { padding: 20px 40px 0px 40px !important} .font-size-20px { font-size: 20px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .padding-20px-40px-32px-40px { padding: 20px 40px 32px 40px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }</style>\r\n  <style type=\"text/css\">ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 641px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}</style><!--[if mso]>             <style>                 .hide-on-mobile {display:block !important}             </style>         <![endif]--><!--[if mso]>                 <style>                              .mso-font-size-36px { font-size: 36px !important; } .mso-font-size-20px { font-size: 20px !important; }                 </style>             <![endif]-->\r\n  <style>[class~=\"x_body\"] { width: 99.9% }               @supports(--css:variables) {                         td[style*=\"border-radius\"] { -webkit-filter: drop-shadow(0 0 1px transparent); }             }</style>\r\n </head>\r\n <body style=\"word-spacing:normal;background-color:#FFFFFF;\" class=\"body\" id=\"body\">\r\n  <div>\r\n   <p><img alt=\"\" src=\"http://elinks.business.amazon.com/CI0/010001999ae34db3-7ffd8ed7-7a8c-4943-93a2-efe82409734f-000000/H75kv4Po_e3bbaHNhHBJqTj9wTiLMI_gZeuB055l3Jw=425\" style=\"display: none; width: 1px; height: 1px;\">\r\n</p>\r\n  </div><!--[if !mso 9]><!-->\r\n  <div id=\"emailPreHeader\" style=\"display: none;\">\r\n   Explore now and save on business essentials\r\n  </div>\r\n  <div style=\"display: none;\">\r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  </div><!--<![endif]-->\r\n  <div style=\"background-color:#FFFFFF;background-position:center center;background-size:auto;background-repeat:repeat;\" id=\"main\">\r\n   <!--[if mso]>\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><![endif]--><!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:16px 16px 14px 16px;text-align:center;vertical-align:top;mso-padding-alt:14px 0px 14px 40px;\" class=\"block-grid padding-14px-0px-14px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:600px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n             <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:middle;width:300px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"padding-0px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 0px 0px;word-break:break-word;mso-padding-alt:0px 0px 0px 0px;text-align:left;\">\r\n                  <div style=\"margin:0 auto 0 0;\" class=\"max-width-165px\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com/1/010001999ae34db3-7ffd8ed7-7a8c-4943-93a2-efe82409734f-000000/RqPavOI9iJyPEZTo-W1MnO7mFX7lYug9T9k_08A-tWk=425\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business\" height=\"auto\" width=\"165\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-2color2x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:middle;width:300px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                  <div style=\"line-height:0px;height:0px;mso-line-height-alt:0px;\">\r\n                   &nbsp;\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:32px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:32px 40px 20px 40px;\" class=\"block-grid padding-32px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                  <div class=\"links-232F3E-underline-bold\">\r\n                   <div style=\"font-family:\'Ember Modern Display\', Arial, sans-serif;font-size:28px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:2.688em;color:#161D26;\" class=\"mso-font-size-36px font-size-36px\">\r\n                    <p style=\"margin: 0;\">Unlock new business-only savings&nbsp;</p>\r\n                   </div>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\">\r\n                  <div style=\"margin:0 auto;\" class=\"max-width-640px\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Freturn_to=%2Fab%2Fbusiness-discounts%26ref_=b2b_sow_e_us_bsg_pbdd_2/1/010001999ae34db3-7ffd8ed7-7a8c-4943-93a2-efe82409734f-000000/RGu5lhHpo3teQjqtcwSe9JpGrrSQ7a7f205YiNR7UEA=425\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Business Savings Guide\" height=\"auto\" width=\"640\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/Images/EmailHeaders-25/Email-Hero-Wide-Office-5.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;mso-padding-alt:0px 0px 0px 0px;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                 <div style=\"line-height:12px;height:12px;mso-line-height-alt:12px;\">\r\n                  &nbsp;\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:0px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:0px 40px 0px 40px;\" class=\"block-grid padding-0px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                  <div class=\"links-007185-bold\">\r\n                   <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:normal;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.375em;color:#222D3A;\">\r\n                    <p style=\"margin: 0 0 0px 0;\">Amazon Business provides more than just convenience—find great value on a wide range of essential business products at competitive prices.</p>\r\n                   </div>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:24px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:24px 40px 0px 40px;\" class=\"block-grid padding-24px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td valign=\"middle\" class=\"button-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                  <div>\r\n                   <!--[if mso]>\r\n<table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\">\r\n<tr>\r\n<td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Freturn_to=%2Fab%2Fbusiness-discounts%26ref_=b2b_sow_e_us_bsg_pbdd_2/1/010001999ae34db3-7ffd8ed7-7a8c-4943-93a2-efe82409734f-000000/RGu5lhHpo3teQjqtcwSe9JpGrrSQ7a7f205YiNR7UEA=425\" fillcolor=\"#FFD814\" arcsize=\"58%\" style=\"v-text-anchor:middle;width:197.25pt;height:32.25pt;\" stroke=\"f\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Freturn_to=%2Fab%2Fbusiness-discounts%26ref_=b2b_sow_e_us_bsg_pbdd_2/2/010001999ae34db3-7ffd8ed7-7a8c-4943-93a2-efe82409734f-000000/PfrC_JB6cNrjMuZm6xTwYDo_Hp2KmWzkcrO4exsNgmM=425\" style=\"display: inline-block; background: #FFD814; color: #161D26; font-family: \'Amber Ember\', Arial, sans-serif; font-size: 16px; font-weight: normal; line-height: 1.2; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 12px 24px 12px 24px; mso-padding-alt: 0px; border-radius: 25px; mso-border-alt: none; box-sizing: border-box;\" target=\"_blank\" width=\"263\">Explore business-only savings </a><!--[if mso]></center></a:textbox></a:roundrect>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;mso-padding-alt:0px 0px 0px 0px;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                 <div style=\"line-height:30px;height:30px;mso-line-height-alt:30px;\">\r\n                  &nbsp;\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:20px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 0px 40px;\" class=\"block-grid padding-20px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                  <div class=\"links-161D26\">\r\n                   <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#161D26;\" class=\"mso-font-size-20px font-size-20px\">\r\n                    <p style=\"margin: 0;\">Shop by aisle</p>\r\n                   </div>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\">\r\n             <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"line-height:0;font-size:0;direction:ltr;\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n                 <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n                  <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:280px;\" ><![endif]-->\r\n                  <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:50%;\">\r\n                   <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                    <tbody>\r\n                     <tr>\r\n                      <td style=\"border-radius:0px;vertical-align:top;padding:0px 8px 12px 0px;mso-padding-alt:0px 8px 12px 0px;\">\r\n                       <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                        <tbody>\r\n                         <tr>\r\n                          <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:left;\">\r\n                           <div style=\"margin:0 auto 0 0;max-width:272px;\">\r\n                            <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Freturn_to=%2Fab%2Fbusiness-discounts%3Fcategories=2%26ref_=b2b_sow_e_us_bsg_pbdd_2/1/010001999ae34db3-7ffd8ed7-7a8c-4943-93a2-efe82409734f-000000/5hnsMhjLVxWAMAzEa1K3LZ-89atytdvE2jz2UI_zpcg=425\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Logitech\" height=\"auto\" width=\"272\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/HVE/PBDD25/Email/US-EN_AB_PBDD25_P1_185_Email_Small_686x444.jpg\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                           </div></td>\r\n                         </tr>\r\n                         <tr>\r\n                          <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                           <div class=\"links-161D26\">\r\n                            <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                             <p style=\"margin: 0;\">Laptops and accessories</p>\r\n                            </div>\r\n                           </div></td>\r\n                         </tr>\r\n                        </tbody>\r\n                       </table></td>\r\n                     </tr>\r\n                    </tbody>\r\n                   </table>\r\n                  </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:280px;\" ><![endif]-->\r\n                  <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:50%;\">\r\n                   <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                    <tbody>\r\n                     <tr>\r\n                      <td style=\"border-radius:3px;vertical-align:top;padding:0px 0px 12px 8px;mso-padding-alt:0px 0px 12px 8px;\">\r\n                       <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                        <tbody>\r\n                         <tr>\r\n                          <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:left;\">\r\n                           <div style=\"margin:0 auto 0 0;max-width:272px;\">\r\n                            <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Freturn_to=%2Fab%2Fbusiness-discounts%3Fcategories=1%26ref_=b2b_sow_e_us_bsg_pbdd_2/1/010001999ae34db3-7ffd8ed7-7a8c-4943-93a2-efe82409734f-000000/C_36ummHsG1kG238M0koug8r_D0yTKd_vTMnw4DrmAY=425\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Block\" height=\"auto\" width=\"272\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/HVE/PBDD25/Email/US-EN_AB_PBDD25_P1_189_Email_Small_686x444.jpg\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                           </div></td>\r\n                         </tr>\r\n                         <tr>\r\n                          <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                           <div class=\"links-161D26\">\r\n                            <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                             <p style=\"margin: 0;\">Coffee and appliances</p>\r\n                            </div>\r\n                           </div></td>\r\n                         </tr>\r\n                        </tbody>\r\n                       </table></td>\r\n                     </tr>\r\n                    </tbody>\r\n                   </table>\r\n                  </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                 </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n               </tr>\r\n              </tbody>\r\n             </table></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n              <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:280px;\" ><![endif]-->\r\n              <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:50%;\">\r\n               <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                <tbody>\r\n                 <tr>\r\n                  <td style=\"border-radius:0px;vertical-align:top;padding:0px 8px 12px 0px;mso-padding-alt:0px 8px 12px 0px;\">\r\n                   <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                    <tbody>\r\n                     <tr>\r\n                      <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:left;\">\r\n                       <div style=\"margin:0 auto 0 0;max-width:272px;\">\r\n                        <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Freturn_to=%2Fab%2Fbusiness-discounts%3Fcategories=5%26ref_=b2b_sow_e_us_bsg_pbdd_2/1/010001999ae34db3-7ffd8ed7-7a8c-4943-93a2-efe82409734f-000000/EgAfMyybBrkPmowXScOG8igZ6_aGOJlBMpEPDvQAPwQ=425\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Notebooks and pens\" height=\"auto\" width=\"272\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/HVE/PBDD25/Email/US-ES_AB_PBDD25_P1_187_Email_Small_686x444.jpg\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                       </div></td>\r\n                     </tr>\r\n                     <tr>\r\n                      <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                       <div class=\"links-161D26\">\r\n                        <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                         <p style=\"margin: 0;\">Notebooks and pens</p>\r\n                        </div>\r\n                       </div></td>\r\n                     </tr>\r\n                    </tbody>\r\n                   </table></td>\r\n                 </tr>\r\n                </tbody>\r\n               </table>\r\n              </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:280px;\" ><![endif]-->\r\n              <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:50%;\">\r\n               <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                <tbody>\r\n                 <tr>\r\n                  <td style=\"border-radius:0px;vertical-align:top;padding:0px 0px 12px 8px;mso-padding-alt:0px 0px 12px 8px;\">\r\n                   <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                    <tbody>\r\n                     <tr>\r\n                      <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:left;\">\r\n                       <div style=\"margin:0 auto 0 0;max-width:272px;\">\r\n                        <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Freturn_to=%2Fab%2Fbusiness-discounts%3Fcategories=4%26ref_=b2b_sow_e_us_bsg_pbdd_2/1/010001999ae34db3-7ffd8ed7-7a8c-4943-93a2-efe82409734f-000000/kbrXZ3IwmfmJzL9XJTVk8jQ39dobcMeOWYr83xmKl_g=425\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Lights and electrical\" height=\"auto\" width=\"272\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/HVE/PBDD25/Email/US-EN_AB_PBDD25_P3_333_Email_Small_686x444.jpg\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                       </div></td>\r\n                     </tr>\r\n                     <tr>\r\n                      <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                       <div class=\"links-161D26\">\r\n                        <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                         <p style=\"margin: 0;\">Lights and electrical</p>\r\n                        </div>\r\n                       </div></td>\r\n                     </tr>\r\n                    </tbody>\r\n                   </table></td>\r\n                 </tr>\r\n                </tbody>\r\n               </table>\r\n              </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:20px 16px 32px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 32px 40px;\" class=\"block-grid padding-20px-40px-32px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td valign=\"middle\" class=\"button-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                  <div>\r\n                   <!--[if mso]>\r\n<table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\">\r\n<tr>\r\n<td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Freturn_to=%2Fab%2Fbusiness-discounts%26ref_=b2b_sow_e_us_bsg_pbdd_2/2/010001999ae34db3-7ffd8ed7-7a8c-4943-93a2-efe82409734f-000000/PfrC_JB6cNrjMuZm6xTwYDo_Hp2KmWzkcrO4exsNgmM=425\" fillcolor=\"#FFFFFF\" arcsize=\"18%\" style=\"v-text-anchor:middle;width:186pt;height:33.75pt;\" strokecolor=\"#D5D9D9\" strokeweight=\"0.75pt\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Freturn_to=%2Fab%2Fbusiness-discounts%26ref_=b2b_sow_e_us_bsg_pbdd_2/3/010001999ae34db3-7ffd8ed7-7a8c-4943-93a2-efe82409734f-000000/xVfthZGMgfizkihuDe3Lh3aV2zJVkEsq7BMCJZZd14E=425\" style=\"display: inline-block; background: #FFFFFF; color: #161D26; font-family: \'Amber Ember\', Arial, sans-serif; font-size: 16px; font-weight: normal; line-height: 1.2; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 12px 16px 12px 16px; mso-padding-alt: 0px; border-radius: 8px; border-left: 1px solid #D5D9D9; border-right: 1px solid #D5D9D9; border-top: 1px solid #D5D9D9; border-bottom: 1px solid #D5D9D9; mso-border-alt: none; box-sizing: border-box;\" target=\"_blank\" width=\"249\">Explore business-only savings </a><!--[if mso]></center></a:textbox></a:roundrect>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 0px 40px;\" class=\"block-grid padding-20px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-161D26\">\r\n                  <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#161D26;\" class=\"mso-font-size-20px font-size-20px\">\r\n                   <p style=\"margin: 0;\">More ways to save</p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\">\r\n             <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"line-height:0;font-size:0;direction:ltr;\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n                 <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n                  <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:280px;\" ><![endif]-->\r\n                  <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:50%;\">\r\n                   <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                    <tbody>\r\n                     <tr>\r\n                      <td style=\"border-radius:0px;vertical-align:top;padding:0px 8px 12px 0px;mso-padding-alt:0px 8px 12px 0px;\">\r\n                       <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                        <tbody>\r\n                         <tr>\r\n                          <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:left;\">\r\n                           <div style=\"margin:0 auto 0 0;max-width:272px;\">\r\n                            <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Freturn_to=%2Fl%2F19633587011%26ref_=b2b_sow_e_us_bsg_pbdd_2/1/010001999ae34db3-7ffd8ed7-7a8c-4943-93a2-efe82409734f-000000/4ITQwFaW8bynIlQUfvo50MtZZ6Uz1Nee3F_y1wHAlfQ=425\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Classroom Supplies\" height=\"auto\" width=\"272\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/HVE/PBDD25/Email/US-EN_AB_PBDD25_P3_335_Email_Small_686x444.jpg\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                           </div></td>\r\n                         </tr>\r\n                         <tr>\r\n                          <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                           <div class=\"links-161D26\">\r\n                            <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                             <p style=\"margin: 0;\">Quantity Discounts</p>\r\n                            </div>\r\n                           </div></td>\r\n                         </tr>\r\n                         <tr>\r\n                          <td class=\"text-container\" style=\"font-size:0px;padding:5px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                           <div class=\"links-007185-bold\">\r\n                            <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.188em;color:#222D3A;\">\r\n                             <p style=\"margin: 0;\">Explore volume discounts that give you the lowest price per unit.</p>\r\n                            </div>\r\n                           </div></td>\r\n                         </tr>\r\n                        </tbody>\r\n                       </table></td>\r\n                     </tr>\r\n                    </tbody>\r\n                   </table>\r\n                  </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:280px;\" ><![endif]-->\r\n                  <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:50%;\">\r\n                   <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                    <tbody>\r\n                     <tr>\r\n                      <td style=\"border-radius:3px;vertical-align:top;padding:0px 0px 12px 8px;mso-padding-alt:0px 0px 12px 8px;\">\r\n                       <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                        <tbody>\r\n                         <tr>\r\n                          <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:left;\">\r\n                           <div style=\"margin:0 auto 0 0;max-width:272px;\">\r\n                            <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Freturn_to=%2Fl%2F21482319011%26ref_=b2b_sow_e_us_bsg_pbdd_2/1/010001999ae34db3-7ffd8ed7-7a8c-4943-93a2-efe82409734f-000000/2bAtUfVxPS8b1q7_gbNN0u0XdJzi8sMIrndbXW1ytZI=425\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Books\" height=\"auto\" width=\"272\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/HVE/PBDD25/Email/US-ES_AB_PBDD25_P1_179_Email_Small_686x444.jpg\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                           </div></td>\r\n                         </tr>\r\n                         <tr>\r\n                          <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                           <div class=\"links-161D26\">\r\n                            <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                             <p style=\"margin: 0;\">Business Bulk Essentials</p>\r\n                            </div>\r\n                           </div></td>\r\n                         </tr>\r\n                         <tr>\r\n                          <td class=\"text-container\" style=\"font-size:0px;padding:5px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                           <div class=\"links-007185-bold\">\r\n                            <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.188em;color:#161D26;\">\r\n                             <p style=\"margin: 0;\">Maximize savings and minimize reorders with bulk purchase options.</p>\r\n                            </div>\r\n                           </div></td>\r\n                         </tr>\r\n                        </tbody>\r\n                       </table></td>\r\n                     </tr>\r\n                    </tbody>\r\n                   </table>\r\n                  </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                 </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n               </tr>\r\n              </tbody>\r\n             </table></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F7F7F7;background-color:#F7F7F7;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F7F7F7;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><!--[if !mso]><!-- --><p style=\"border-top:solid 1px #D5D9D9;font-size:1px;margin:0 auto;width:100%;text-align:center;\"></p><!--<![endif]--><!--Divider--><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-top:solid 1px #D5D9D9;font-size:1px;margin:0 auto;width:640px;text-align:center;\" role=\"presentation\" width=\"640px\" >\r\n<tr>\r\n<td style=\"height:0;line-height:0;\"> &nbsp; </td>\r\n</tr>\r\n</table><![endif]--></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F5F3EF;background-color:#F5F3EF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F5F3EF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-161D26-underline\">\r\n                  <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#222D3A;\">\r\n                   <p style=\"margin: 0;\">Please note that product prices and availability are subject to change. Prices and availability were accurate at the time this email was sent; however, they may differ from those you see when you visit Amazon.com.</p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#161D26;background-color:#161D26;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#161D26;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\">\r\n            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n             <tbody>\r\n              <tr>\r\n               <td style=\"line-height:0;font-size:0;direction:rtl;\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:252px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-45 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-align-right social-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\"><!--[if mso | IE]>\r\n<table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" >\r\n<tr>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.facebook.com%2FAmazonBusiness%2F/1/010001999ae34db3-7ffd8ed7-7a8c-4943-93a2-efe82409734f-000000/7zOzRawZsyFUyS7wRq8SeOYCM89pXtzf_QuNlnecaYw=425\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Facebook\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Facebook-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Ftwitter.com%2FAmazonBusiness/1/010001999ae34db3-7ffd8ed7-7a8c-4943-93a2-efe82409734f-000000/qnyrhKuJ16CQsMizYcqLWimWeeBRSIUgwZv_HRAtaWo=425\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Twitter\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Twitter-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.linkedin.com%2Fcompany%2Famazon-business%2F/1/010001999ae34db3-7ffd8ed7-7a8c-4943-93a2-efe82409734f-000000/5f1eopT5gCej1C-u5PoU-fywoURycCYlogzndLSxu9s=425\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Linkedin\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-LinkedIn-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"padding-10px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 20px 0px;word-break:break-word;mso-padding-alt:10px 0px 0px 0px;text-align:right;\">\r\n                     <div style=\"margin:0 auto 0 0;max-width:163px;\" class=\"margin-0-0-0-auto\">\r\n                      <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2F%3Fref_=b2b_sow_e_us_bsg_pbdd_2/1/010001999ae34db3-7ffd8ed7-7a8c-4943-93a2-efe82409734f-000000/m-O7azubvUKna3RxN5wbAGKZ09zLci6p-Nn6RuVzZyE=425\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business logo\" height=\"auto\" width=\"163\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-white2x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:308px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-55 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Fen%2Fcontact-us/1/010001999ae34db3-7ffd8ed7-7a8c-4943-93a2-efe82409734f-000000/mGiYCmAXJsIPN-3hT2KPgf5Kg43vvCAVQo74UczkONg=425\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">Contact us</a> | <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fab%2Fmanage%2Faccount%2F/1/010001999ae34db3-7ffd8ed7-7a8c-4943-93a2-efe82409734f-000000/S86I-52w8px0Dr8h_0OIwMD55UpjkEnJM5wrcpLR2l0=425\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">Manage account</a></p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\">If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Femail-preferences%2Fep%2FcKBrdiXBiRupIYgssJKR%2B90A8HfeKQRJlFR5I7pM6WQ8BA*sNJi24Qy1Pg==%2F3071934919%2Fu2ukRBHk2PjzAjFEqrxKxDdsB1wMYvzjI*Bu5YEmOySoG7ybdn7rZjO*3NJviXIcjIdjNCqBx%2B17YI63RN4260HovIIrjfudmSNCtizrh1lECop0N1VYjkAHXXPyvZ4j21G0VXk117**wlmxtD7nCEriKoAmciqsloIUNy*8sDjKAj5PViyKYuAYaZ5yacHJ2Q5Y0KB1zq0NpXIxZMU3CJQ4Zwk*pliPEmaP%2BQCkoT75qW6UbNUOqdq05GxlxhGk4MQUz7064O5P1Gyvq35C6oBmsh7Out%2BaOqlG0f0a6WBg3r1D0n2OAFRD4Y2AN9pVWSGRthFBF3v0NiOWnzC8gF*ASQDfGb2eDAmkmZq6dGZYRQ39f6U=%2FlTtsIxDStwX65Qvynev7psiSri4N*WgB4tj6ytkRi9JA/1/010001999ae34db3-7ffd8ed7-7a8c-4943-93a2-efe82409734f-000000/GPFCMVRawKrk98XbYVGmzIYhp59oaP-blYNA6rUdYzo=425\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">email preferences</a>.</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 30px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\">© 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210</p>\r\n                       <p style=\"margin: 0;\">&nbsp;</p>\r\n                       <p style=\"margin: 0;\">Reference: 3071934919</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n              </tr>\r\n             </tbody>\r\n            </table></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--><!--[if mso]>\r\n</table><![endif]-->\r\n  </div>\r\n </body>\r\n</html>\r\n','\r\n\r\n \r\n  Prime Big Deal Days is here with business-only savings\r\n  \r\n  \r\n  \r\n  #outlook a { padding:0; }           body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block; }\r\n  \r\n  \r\n  @import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);\r\n  @media only screen and (min-width:641px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }\r\n  .links-232F3E-underline-bold a { color: #232F3E; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .mso-button-dark-mode a {background: transparent !important;} .links-161D26 a { color: #161D26; text-decoration: none; } .links-161D26-underline a { color: #161D26; text-decoration: underline; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:641px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-165px { max-width: 165px !important} .padding-32px-40px-20px-40px { padding: 32px 40px 20px 40px !important} .font-size-36px { font-size: 36px !important} .max-width-640px { max-width: 640px !important} .padding-0px-40px-0px-40px { padding: 0px 40px 0px 40px !important} .padding-24px-40px-0px-40px { padding: 24px 40px 0px 40px !important} .padding-20px-40px-0px-40px { padding: 20px 40px 0px 40px !important} .font-size-20px { font-size: 20px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .padding-20px-40px-32px-40px { padding: 20px 40px 32px 40px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }\r\n  ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 641px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}\r\n  [class~=\"x_body\"] { width: 99.9% }               @supports(--css:variables) {                         td[style*=\"border-radius\"] { -webkit-filter: drop-shadow(0 0 1px transparent); }             }\r\n \r\n \r\n  \r\n   \r\n\r\n  \r\n  \r\n   Explore now and save on business essentials\r\n  \r\n  \r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  \r\n  \r\n   \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   &nbsp;\r\n                  \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    Unlock new business-only savings&nbsp;\r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  &nbsp;\r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    Amazon Business provides more than just convenience—find great value on a wide range of essential business products at competitive prices.\r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                    Explore business-only savings \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  &nbsp;\r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    Shop by aisle\r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                           \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             Laptops and accessories\r\n                            \r\n                           \r\n                         \r\n                        \r\n                       \r\n                     \r\n                    \r\n                   \r\n                  \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                           \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             Coffee and appliances\r\n                            \r\n                           \r\n                         \r\n                        \r\n                       \r\n                     \r\n                    \r\n                   \r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                       \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         Notebooks and pens\r\n                        \r\n                       \r\n                     \r\n                    \r\n                   \r\n                 \r\n                \r\n               \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                       \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         Lights and electrical\r\n                        \r\n                       \r\n                     \r\n                    \r\n                   \r\n                 \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                    Explore business-only savings \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   More ways to save\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                           \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             Quantity Discounts\r\n                            \r\n                           \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             Explore volume discounts that give you the lowest price per unit.\r\n                            \r\n                           \r\n                         \r\n                        \r\n                       \r\n                     \r\n                    \r\n                   \r\n                  \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                           \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             Business Bulk Essentials\r\n                            \r\n                           \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             Maximize savings and minimize reorders with bulk purchase options.\r\n                            \r\n                           \r\n                         \r\n                        \r\n                       \r\n                     \r\n                    \r\n                   \r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   Please note that product prices and availability are subject to change. Prices and availability were accurate at the time this email was sent; however, they may differ from those you see when you visit Amazon.com.\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       Contact us | Manage account\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your email preferences.\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       © 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210\r\n                       &nbsp;\r\n                       Reference: 3071934919\r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n   \r\n  \r\n \r\n\r\n',0,0,0,0,0,0,'2025-09-30 13:50:11','2025-12-09 19:29:21','2025-12-09 19:29:21','2025-12-09 19:29:21',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(817,4,'<2B74E3E6-ADDC-4824-AA11-03D7193ED594@mavrix.one>',NULL,NULL,'Fwd: Property Questions','Brian@mavrix.one','Brian Stufflebean','\r\n--Apple-Mail=_2D0BC83D-022E-4417-A61A-A453B30D6A03\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Type: text/html;\r\n	charset=utf-8\r\n\r\n<html><head><meta http-equiv=3D\"content-type\" content=3D\"text/html; =\r\ncharset=3Dutf-8\"></head><body style=3D\"overflow-wrap: break-word; =\r\n-webkit-nbsp-mode: space; line-break: after-white-space;\"><span =\r\nstyle=3D\"font-size: 14px;\">Wanted you both in on the loop of this, this =\r\nis a need for the bank line closing and the =\r\nlandlord.&nbsp;</span><div><br></div><div><br =\r\nid=3D\"lineBreakAtBeginningOfMessage\"><div><br><blockquote =\r\ntype=3D\"cite\"><div>Begin forwarded message:</div><br =\r\nclass=3D\"Apple-interchange-newline\"><div style=3D\"margin-top: 0px; =\r\nmargin-right: 0px; margin-bottom: 0px; margin-left: 0px;\"><span =\r\nstyle=3D\"font-family: -webkit-system-font, Helvetica Neue, Helvetica, =\r\nsans-serif; color:rgba(0, 0, 0, 1.0);\"><b>From: </b></span><span =\r\nstyle=3D\"font-family: -webkit-system-font, Helvetica Neue, Helvetica, =\r\nsans-serif;\">Shyla Lankford =\r\n&lt;slankford@lipscombinsurance.com&gt;<br></span></div><div =\r\nstyle=3D\"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =\r\nmargin-left: 0px;\"><span style=3D\"font-family: -webkit-system-font, =\r\nHelvetica Neue, Helvetica, sans-serif; color:rgba(0, 0, 0, =\r\n1.0);\"><b>Subject: </b></span><span style=3D\"font-family: =\r\n-webkit-system-font, Helvetica Neue, Helvetica, sans-serif;\"><b>Property =\r\nQuestions</b><br></span></div><div style=3D\"margin-top: 0px; =\r\nmargin-right: 0px; margin-bottom: 0px; margin-left: 0px;\"><span =\r\nstyle=3D\"font-family: -webkit-system-font, Helvetica Neue, Helvetica, =\r\nsans-serif; color:rgba(0, 0, 0, 1.0);\"><b>Date: </b></span><span =\r\nstyle=3D\"font-family: -webkit-system-font, Helvetica Neue, Helvetica, =\r\nsans-serif;\">September 30, 2025 at 10:09:11=E2=80=AFAM =\r\nEDT<br></span></div><div style=3D\"margin-top: 0px; margin-right: 0px; =\r\nmargin-bottom: 0px; margin-left: 0px;\"><span style=3D\"font-family: =\r\n-webkit-system-font, Helvetica Neue, Helvetica, sans-serif; =\r\ncolor:rgba(0, 0, 0, 1.0);\"><b>To: </b></span><span style=3D\"font-family: =\r\n-webkit-system-font, Helvetica Neue, Helvetica, sans-serif;\">Nathan =\r\nStaron &lt;nathan@lithiumbatterycompany.com&gt;, Brian Stufflebean =\r\n&lt;brian@mavrix.one&gt;, Jarrett Brownfield =\r\n&lt;jarrett@lithiumbatterycompany.com&gt;, Jarrett =\r\n&lt;jarrett@mavrix.one&gt;, \"jarrett@marvix.one\" =\r\n&lt;jarrett@marvix.one&gt;<br></span></div><div style=3D\"margin-top: =\r\n0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;\"><span =\r\nstyle=3D\"font-family: -webkit-system-font, Helvetica Neue, Helvetica, =\r\nsans-serif; color:rgba(0, 0, 0, 1.0);\"><b>Cc: </b></span><span =\r\nstyle=3D\"font-family: -webkit-system-font, Helvetica Neue, Helvetica, =\r\nsans-serif;\">Paxton Kelso =\r\n&lt;pkelso@lipscombinsurance.com&gt;<br></span></div><br><div><meta =\r\ncharset=3D\"UTF-8\"><div style=3D\"overflow-wrap: break-word; position: =\r\nrelative;\"><div class=3D\"WordSection1\" style=3D\"page: WordSection1; =\r\ncaret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; =\r\nfont-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; text-align: start; text-indent: 0px; =\r\ntext-transform: none; white-space: normal; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none;\"><div =\r\nstyle=3D\"margin: 0in; font-size: 12pt; font-family: Aptos, =\r\nsans-serif;\"><span style=3D\"font-size: =\r\n11pt;\">Nathan,<o:p></o:p></span></div><div style=3D\"margin: 0in; =\r\nfont-size: 12pt; font-family: Aptos, sans-serif;\"><span =\r\nstyle=3D\"font-size: 11pt;\"><o:p>&nbsp;</o:p></span></div><div =\r\nstyle=3D\"margin: 0in; font-size: 12pt; font-family: Aptos, =\r\nsans-serif;\"><span style=3D\"font-size: 11pt;\">We are working with the =\r\nmarkets to get your property coverage placed.&nbsp; They are asking for =\r\nsome clarification on a few items.&nbsp; Below are the limits that we =\r\nare working on placing and the questions they are asking.&nbsp; Please =\r\nadvised.<o:p></o:p></span></div><div style=3D\"margin: 0in; font-size: =\r\n12pt; font-family: Aptos, sans-serif;\"><span style=3D\"font-size: =\r\n11pt;\"><o:p>&nbsp;</o:p></span></div><div style=3D\"margin: 0in; =\r\nfont-size: 12pt; font-family: Aptos, sans-serif;\"><b><u><span =\r\nstyle=3D\"font-size: 11pt;\">Limits<o:p></o:p></span></u></b></div><div =\r\nstyle=3D\"margin: 0in; font-size: 12pt; font-family: Aptos, =\r\nsans-serif;\"><span style=3D\"font-size: =\r\n11pt;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=\r\nnbsp;&nbsp;&nbsp;&nbsp; Business Personal Property (BPP):&nbsp; =\r\n$3,000,000<o:p></o:p></span></div><div style=3D\"margin: 0in; font-size: =\r\n12pt; font-family: Aptos, sans-serif;\"><span style=3D\"font-size: =\r\n11pt;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=\r\nnbsp;&nbsp;&nbsp;&nbsp; Tenants Improvements &amp; Betterments: =\r\n$25,000<o:p></o:p></span></div><div style=3D\"margin: 0in; font-size: =\r\n12pt; font-family: Aptos, sans-serif;\"><span style=3D\"font-size: =\r\n11pt;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=\r\nnbsp;&nbsp;&nbsp;&nbsp; Business Income/Interruption:&nbsp; =\r\n$10,000,000<o:p></o:p></span></div><div style=3D\"margin: 0in; font-size: =\r\n12pt; font-family: Aptos, sans-serif;\"><span style=3D\"font-size: =\r\n11pt;\"><o:p>&nbsp;</o:p></span></div><div style=3D\"margin: 0in; =\r\nfont-size: 12pt; font-family: Aptos, sans-serif;\"><b><u><span =\r\nstyle=3D\"font-size: 11pt;\">Questions<o:p></o:p></span></u></b></div><ol =\r\nstart=3D\"1\" type=3D\"1\" style=3D\"margin-bottom: 0in; margin-top: =\r\n0in;\"><li class=3D\"MsoListParagraph\" style=3D\"margin: 0in; font-size: =\r\n12pt; font-family: Aptos, sans-serif;\"><span style=3D\"font-size: =\r\n11pt;\">Please confirm if the BPP limit above includes stock or is just =\r\nmachinery. If it includes both, please break down the values between the =\r\ntwo.<o:p></o:p></span></li><li class=3D\"MsoListParagraph\" style=3D\"margin:=\r\n 0in; font-size: 12pt; font-family: Aptos, sans-serif;\"><span =\r\nstyle=3D\"font-size: 11pt;\">Have you started any operations in the 3900 =\r\nCoachman location?&nbsp; If so, what processing are currently =\r\noperational?<o:p></o:p></span></li><li class=3D\"MsoListParagraph\" =\r\nstyle=3D\"margin: 0in; font-size: 12pt; font-family: Aptos, =\r\nsans-serif;\"><span style=3D\"font-size: 11pt;\">Details on your production =\r\nprocess?<o:p></o:p></span></li><li class=3D\"MsoListParagraph\" =\r\nstyle=3D\"margin: 0in; font-size: 12pt; font-family: Aptos, =\r\nsans-serif;\"><span style=3D\"font-size: 11pt;\">Amount of raw/finished =\r\nmaterial warehoused on site?<o:p></o:p></span></li><li =\r\nclass=3D\"MsoListParagraph\" style=3D\"margin: 0in; font-size: 12pt; =\r\nfont-family: Aptos, sans-serif;\"><span style=3D\"font-size: =\r\n11pt;\">Protections in place to prevent/mitigate loss? Especially losses =\r\ndue to fire/explosion.<o:p></o:p></span></li><li =\r\nclass=3D\"MsoListParagraph\" style=3D\"margin: 0in; font-size: 12pt; =\r\nfont-family: Aptos, sans-serif;\"><span style=3D\"font-size: 11pt;\">Do you =\r\nhave any Business Interruption redundancies in =\r\nplace?<o:p></o:p></span></li><li class=3D\"MsoListParagraph\" =\r\nstyle=3D\"margin: 0in; font-size: 12pt; font-family: Aptos, =\r\nsans-serif;\"><span style=3D\"font-size: 11pt;\">Are you using any =\r\nspecialized manufacturing equipment? If yes, what is the wait time to =\r\nreplace this equipment?<o:p></o:p></span></li><li =\r\nclass=3D\"MsoListParagraph\" style=3D\"margin: 0in; font-size: 12pt; =\r\nfont-family: Aptos, sans-serif;\"><span style=3D\"font-size: 11pt;\">The 7 =\r\nmonths of coverage that you had for the S West Shore location, was any =\r\nmanufacturing of batteries completed at this =\r\nlocation?<o:p></o:p></span></li><li class=3D\"MsoListParagraph\" =\r\nstyle=3D\"margin: 0in; font-size: 12pt; font-family: Aptos, =\r\nsans-serif;\"><span style=3D\"font-size: 11pt;\">Do you store completed =\r\nbatteries on site? If so, how long for and are they fully =\r\ncharged?<o:p></o:p></span></li><li class=3D\"MsoListParagraph\" =\r\nstyle=3D\"margin: 0in; font-size: 12pt; font-family: Aptos, =\r\nsans-serif;\"><span style=3D\"font-size: 11pt;\">Any damage to the building =\r\nfrom recent storms.<o:p></o:p></span></li></ol><div style=3D\"margin: =\r\n0in; font-size: 12pt; font-family: Aptos, sans-serif;\"><span =\r\nstyle=3D\"font-size: 11pt;\"><o:p>&nbsp;</o:p></span></div><div =\r\nstyle=3D\"margin: 0in; font-size: 12pt; font-family: Aptos, =\r\nsans-serif;\"><span style=3D\"font-size: 11pt;\">The underwriters are also =\r\nrequesting a business income worksheet.&nbsp; If you could answer the =\r\nquestions above first and then work on the worksheet that would be =\r\nbest.&nbsp; This is the link to complete the worksheet:</span><span =\r\nstyle=3D\"font-size: 11pt;\"><a =\r\nhref=3D\"https://chubbweb.chubb.com/chubbtraining/myBI.html\" =\r\nstyle=3D\"color: rgb(70, 120, 134); text-decoration: =\r\nunderline;\">https://chubbweb.chubb.com/chubbtraining/myBI.html</a></span><=\r\nspan style=3D\"font-size: 11pt;\"><o:p></o:p></span></div><div =\r\nstyle=3D\"margin: 0in; font-size: 12pt; font-family: Aptos, =\r\nsans-serif;\"><span style=3D\"font-size: =\r\n11pt;\"><o:p>&nbsp;</o:p></span></div><div style=3D\"margin: 0in; =\r\nfont-size: 12pt; font-family: Aptos, sans-serif;\"><span =\r\nstyle=3D\"font-size: 11pt;\"><o:p>&nbsp;</o:p></span></div><div =\r\nstyle=3D\"margin: 0in; font-size: 12pt; font-family: Aptos, =\r\nsans-serif;\"><o:p>&nbsp;</o:p></div><div style=3D\"margin: 0in; =\r\nfont-size: 12pt; font-family: Aptos, sans-serif; background: =\r\nwhite;\"><span style=3D\"font-size: 10pt; color: rgb(31, 73, =\r\n125);\">Enjoyed your service today? Please feel free to leave a Google =\r\nreview<span class=3D\"Apple-converted-space\">&nbsp;</span></span><span =\r\nstyle=3D\"font-size: 10pt; font-family: &quot;Segoe UI Emoji&quot;, =\r\nsans-serif; color: rgb(31, 73, 125);\">=F0=9F=98=8A</span><span =\r\nstyle=3D\"font-size: 10pt; font-family: &quot;Segoe UI Emoji&quot;, =\r\nsans-serif; color: rgb(31, 73, 125);\"><o:p></o:p></span></div><div =\r\nstyle=3D\"margin: 0in; font-size: 12pt; font-family: Aptos, sans-serif; =\r\nbackground: white;\"><span style=3D\"color: rgb(33, 94, 153);\"><a =\r\nhref=3D\"https://g.page/r/CTny7Gwm4BDNEB0/review\" style=3D\"color: rgb(70, =\r\n120, 134); text-decoration: underline;\"><span style=3D\"color: =\r\nblue;\">https://g.page/r/CTny7Gwm4BDNEB0/review</span></a></span><span =\r\nstyle=3D\"font-size: 10pt;\"><o:p></o:p></span></div><div style=3D\"margin: =\r\n0in; font-size: 12pt; font-family: Aptos, =\r\nsans-serif;\"><o:p>&nbsp;</o:p></div><div style=3D\"margin: 0in; =\r\nfont-size: 12pt; font-family: Aptos, =\r\nsans-serif;\"><o:p>&nbsp;</o:p></div><div style=3D\"margin: 0in; =\r\nfont-size: 12pt; font-family: Aptos, sans-serif;\"><img border=3D\"0\" =\r\nheight=3D\"53\" id=3D\"Picture_x0020_4\" alt=3D\"image001.png\" style=3D\"width: =\r\n2.5625in; height: 0.552in;\" =\r\nsrc=3D\"cid:image001.png@01DC31E9.D9707880\">&nbsp; &nbsp;<span =\r\nstyle=3D\"font-size: 10pt; font-family: Gisha, sans-serif; color: rgb(31, =\r\n73, 125);\">CA License #OC69197</span><o:p></o:p></div><div =\r\nstyle=3D\"margin: 0in; font-size: 12pt; font-family: Aptos, =\r\nsans-serif;\"><span style=3D\"font-family: Arial, sans-serif; color: =\r\nrgb(31, 73, =\r\n125);\">=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=\r\n=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=\r\n=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=\r\n=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=\r\n=84=E2=96=84</span><span style=3D\"font-family: Arial, =\r\nsans-serif;\"><o:p></o:p></span></div><div style=3D\"margin: 0in; =\r\nfont-size: 12pt; font-family: Aptos, sans-serif;\"><b><span =\r\nstyle=3D\"font-size: 18pt; font-family: &quot;Iskoola Pota&quot;, =\r\nsans-serif; color: rgb(54, 95, 145);\">Shyla Lankford, CRIS, =\r\nNcAM</span></b><span style=3D\"font-size: 18pt; font-family: =\r\n&quot;Iskoola Pota&quot;, sans-serif; color: rgb(54, 95, =\r\n145);\"><o:p></o:p></span></div><div style=3D\"margin: 0in; font-size: =\r\n12pt; font-family: Aptos, sans-serif;\"><span style=3D\"position: =\r\nabsolute; z-index: 251659264; margin-left: 257px; margin-top: 4px; =\r\nwidth: 63px; height: 63px;\"><a =\r\nhref=3D\"https://www.irmi.com/certifications/construction-risk-insurance-sp=\r\necialist\" style=3D\"color: rgb(70, 120, 134); text-decoration: =\r\nunderline;\"><img border=3D\"0\" height=3D\"63\" title=3D\"\" =\r\nv:shapes=3D\"Picture_x0020_5\" style=3D\"width: 0.6562in; height: =\r\n0.6562in;\" alt=3D\"image009.png\" =\r\nsrc=3D\"cid:image009.png@01DC31E9.DF1D69A0\"></a></span><span lang=3D\"ES-US\"=\r\n style=3D\"font-size: 10pt; font-family: Gisha, sans-serif; color: =\r\nrgb(31, 73, 125);\">Chief Operating Officer / =\r\nPartner<o:p></o:p></span></div><div style=3D\"margin: 0in; font-size: =\r\n12pt; font-family: Aptos, sans-serif;\"><span lang=3D\"ES-US\" =\r\nstyle=3D\"font-size: 10pt; font-family: Gisha, sans-serif; color: rgb(31, =\r\n73, 125);\">CA License =\r\n#4270591&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=\r\nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<o:p></o:p></span></div><div style=3D\"margin: =\r\n0in; font-size: 12pt; font-family: Aptos, sans-serif;\"><span =\r\nlang=3D\"ES-US\" style=3D\"font-size: 10pt; font-family: Arial, sans-serif; =\r\ncolor: rgb(31, 73, 125);\">&nbsp;&nbsp;<span =\r\nclass=3D\"Apple-converted-space\">&nbsp;</span></span><span lang=3D\"ES-US\" =\r\nstyle=3D\"font-size: 10pt; font-family: Gisha, sans-serif; color: rgb(31, =\r\n73, 125);\">D:</span><span lang=3D\"ES-US\" style=3D\"font-size: 10pt; =\r\ncolor: rgb(31, 73, 125);\">&nbsp;&nbsp;</span><span lang=3D\"ES-US\" =\r\nstyle=3D\"font-size: 10pt; font-family: Gisha, sans-serif; color: rgb(31, =\r\n73, 125);\"><span =\r\nclass=3D\"Apple-converted-space\">&nbsp;</span>214.420.5206<o:p></o:p></span=\r\n></div><div style=3D\"margin: 0in; font-size: 12pt; font-family: Aptos, =\r\nsans-serif;\"><span lang=3D\"ES-US\" style=3D\"font-size: 10pt; font-family: =\r\nGisha, sans-serif; color: rgb(31, 73, 125);\">&nbsp;&nbsp; C:&nbsp;&nbsp; =\r\n972.984.8677<o:p></o:p></span></div><div style=3D\"margin: 0in; =\r\nfont-size: 12pt; font-family: Aptos, sans-serif;\"><span lang=3D\"ES-US\" =\r\nstyle=3D\"font-size: 10pt; font-family: Arial, sans-serif; color: rgb(31, =\r\n73, 125);\">&nbsp;&nbsp;<span =\r\nclass=3D\"Apple-converted-space\">&nbsp;</span></span><span lang=3D\"ES-US\" =\r\nstyle=3D\"font-size: 10pt; font-family: Gisha, sans-serif; color: rgb(31, =\r\n73, 125);\">E:</span><span lang=3D\"ES-US\" style=3D\"font-size: 10pt; =\r\ncolor: rgb(31, 73, 125);\">&nbsp;&nbsp;</span><span lang=3D\"ES-US\" =\r\nstyle=3D\"font-size: 10pt; font-family: Gisha, sans-serif; color: rgb(31, =\r\n73, 125);\"><span class=3D\"Apple-converted-space\">&nbsp;</span></span><a =\r\nhref=3D\"mailto:slankford@lipscombinsurance.com\" style=3D\"color: rgb(70, =\r\n120, 134); text-decoration: underline;\"><span lang=3D\"ES-US\" =\r\nstyle=3D\"font-size: 10pt; font-family: Gisha, sans-serif; color: =\r\nblue;\">slankford@lipscombinsurance.com</span></a><u><span lang=3D\"ES-US\" =\r\nstyle=3D\"font-size: 10pt; font-family: Gisha, sans-serif; color: =\r\nblue;\"><o:p></o:p></span></u></div><div style=3D\"margin: 0in; font-size: =\r\n12pt; font-family: Aptos, sans-serif;\"><span lang=3D\"ES-US\" =\r\nstyle=3D\"font-size: 10pt; font-family: Arial, sans-serif; color: rgb(31, =\r\n73, 125);\"><o:p>&nbsp;</o:p></span></div><div style=3D\"margin: 0in; =\r\nfont-size: 12pt; font-family: Aptos, sans-serif;\"><span =\r\nstyle=3D\"font-size: 10pt; font-family: Gisha, sans-serif; color: rgb(31, =\r\n73, 125);\">5429 Lyndon B Johnson FWY, STE 450</span><span =\r\nstyle=3D\"font-size: 10pt; color: rgb(31, 73, =\r\n125);\">&nbsp;&nbsp;</span><span style=3D\"font-size: 10pt; font-family: =\r\nGisha, sans-serif; color: rgb(31, 73, 125);\"><span =\r\nclass=3D\"Apple-converted-space\">&nbsp;</span>|</span><span =\r\nstyle=3D\"font-size: 10pt; color: rgb(31, 73, =\r\n125);\">&nbsp;&nbsp;</span><span style=3D\"font-size: 10pt; font-family: =\r\nGisha, sans-serif; color: rgb(31, 73, 125);\"><span =\r\nclass=3D\"Apple-converted-space\">&nbsp;</span>Dallas, TX =\r\n75240<o:p></o:p></span></div><div style=3D\"margin: 0in; font-size: 12pt; =\r\nfont-family: Aptos, sans-serif;\"><span style=3D\"font-size: 10pt; =\r\nfont-family: Gisha, sans-serif; color: rgb(31, 73, =\r\n125);\"><o:p>&nbsp;</o:p></span></div><div style=3D\"margin: 0in; =\r\nfont-size: 12pt; font-family: Aptos, =\r\nsans-serif;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span =\r\nclass=3D\"Apple-converted-space\">&nbsp;</span><a =\r\nhref=3D\"http://www.linkedin.com/company/lipscomb-&amp;-cathey/\" =\r\nstyle=3D\"color: rgb(70, 120, 134); text-decoration: underline;\"><span =\r\nstyle=3D\"color: rgb(5, 99, 193); text-decoration: none;\"><img border=3D\"0\"=\r\n height=3D\"45\" id=3D\"Picture_x0020_3\" style=3D\"width: 0.4479in; height: =\r\n0.4687in;\" alt=3D\"image004.jpg\" =\r\nsrc=3D\"cid:image004.jpg@01DC31E9.D9707880\"></span></a>&nbsp;&nbsp;<a =\r\nhref=3D\"http://www.facebook.com/lipscombinsurance\" style=3D\"color: =\r\nrgb(70, 120, 134); text-decoration: underline;\"><span style=3D\"color: =\r\nrgb(5, 99, 193); text-decoration: none;\"><img border=3D\"0\" height=3D\"45\" =\r\nid=3D\"Picture_x0020_2\" style=3D\"width: 0.4895in; height: 0.4687in;\" =\r\nalt=3D\"image005.jpg\" =\r\nsrc=3D\"cid:image005.jpg@01DC31E9.D9707880\"></span></a>&nbsp;&nbsp;&nbsp;<a=\r\n href=3D\"https://clientportal.vertafore.com/\" style=3D\"color: rgb(70, =\r\n120, 134); text-decoration: underline;\"><span style=3D\"color: rgb(5, 99, =\r\n193); text-decoration: none;\"><img border=3D\"0\" height=3D\"45\" =\r\nid=3D\"Picture_x0020_1\" alt=3D\"image006.png\" style=3D\"width: 0.4687in; =\r\nheight: 0.4687in;\" =\r\nsrc=3D\"cid:image006.png@01DC31E9.D9707880\"></span></a>&nbsp;&nbsp; =\r\n&nbsp;<a =\r\nhref=3D\"https://app.agencyzoom.com/integration/email/email-setting/schedul=\r\ner-index?config_id=3D910c511e-3da6-457b-ab0b-3ec40da73ace\" style=3D\"color:=\r\n rgb(70, 120, 134); text-decoration: underline;\"><span style=3D\"color: =\r\nrgb(5, 99, 193); text-decoration: none;\"><img border=3D\"0\" height=3D\"48\" =\r\nid=3D\"Picture_x0020_5\" style=3D\"width: 0.5in; height: 0.5in;\" =\r\nalt=3D\"image007.png\" =\r\nsrc=3D\"cid:image007.png@01DC31E9.D9707880\"></span></a>&nbsp;&nbsp;&nbsp;<a=\r\n href=3D\"x-msg://2/paymypremiums.com/Lipscomb\" style=3D\"color: rgb(70, =\r\n120, 134); text-decoration: underline;\"><span style=3D\"font-family: =\r\nCalibri, sans-serif; color: windowtext; text-decoration: none;\"><img =\r\nborder=3D\"0\" height=3D\"44\" id=3D\"Picture_x0020_6\" style=3D\"width: =\r\n1.3437in; height: 0.4583in;\" alt=3D\"image008.png\" =\r\nsrc=3D\"cid:image008.png@01DC31E9.D9707880\"></span></a><span =\r\nstyle=3D\"font-size: 11pt; font-family: Calibri, =\r\nsans-serif;\"><o:p></o:p></span></div><div style=3D\"margin: 0in; =\r\nfont-size: 12pt; font-family: Aptos, sans-serif;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif; color: rgb(31, 73, =\r\n125);\">=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=\r\n=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=\r\n=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=\r\n=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=84=E2=96=\r\n=84=E2=96=84</span></div></div></div></div></blockquote></div><br><div>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; orphans: auto; text-align: start; text-indent: 0px; =\r\ntext-transform: none; white-space: normal; widows: auto; word-spacing: =\r\n0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><font size=3D\"2\">Best =\r\nregards,</font></div><div style=3D\"font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><font =\r\nsize=3D\"2\"><br></font></div><div style=3D\"font-family: Helvetica; =\r\nfont-size: 12px; font-style: normal; font-variant-caps: normal; =\r\nfont-weight: 400; letter-spacing: normal; orphans: auto; text-align: =\r\nstart; text-indent: 0px; text-transform: none; white-space: normal; =\r\nwidows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\" style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><b>Brian C. =\r\nStufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 =\r\nDirect</b></div><div style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><span style=3D\"font-size: =\r\n11px;\">(866)896-2423 Fax</span></div></div><span style=3D\"caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0); font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"></span><br class=3D\"Apple-interchange-newline\"><span><img =\r\nalt=3D\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" =\r\nsrc=3D\"cid:CB596987-D3CC-4C61-B9D3-CE1C1DF1C723\"></span><meta =\r\ncharset=3D\"UTF-8\"><div style=3D\"font-family: Helvetica; font-size: 12px; =\r\nfont-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br =\r\nclass=3D\"Apple-interchange-newline\"><br =\r\nclass=3D\"Apple-interchange-newline\"><a =\r\nhref=3D\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a =\r\nhref=3D\"https://mavrix1.com\">https://mavrix1.com/</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY =\r\nNOTICE:</b><span style=3D\"font-family: Helvetica; font-style: normal; =\r\nfont-weight: 400; font-size: =\r\n12px;\">&nbsp;This&nbsp;communication&nbsp;is =\r\nconfidential&nbsp;and&nbsp;intended only for the =\r\nintended&nbsp;recipient.&nbsp;&nbsp;If you are not the =\r\nintended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, =\r\nor&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any =\r\nsuch&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this =\r\ncommunication&nbsp;in error,&nbsp;please contact the sender =\r\nof&nbsp;the&nbsp;message to inform him or her of =\r\nthe&nbsp;error.<br><br></span></div>\r\n</div>\r\n<br></div></body></html>=\r\n\r\n--Apple-Mail=_2D0BC83D-022E-4417-A61A-A453B30D6A03\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=image001.png\r\nContent-Type: image/png;\r\n	x-unix-mode=0644;\r\n	name=\"image001.png\"\r\nContent-Id: <image001.png@01DC31E9.D9707880>\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAPYAAAA1CAYAAABybhbSAAAAAXNSR0IArs4c6QAAAAlwSFlzAAAO\r\nxAAADsQBlSsOGwAAABl0RVh0U29mdHdhcmUATWljcm9zb2Z0IE9mZmljZX/tNXEAACqFSURBVHhe\r\n7Z0HmFXVtfjXOffcMg0Yhip2kSaWhy0YjVEUY0w0PkVjixpjL1hijeR4rRH1aWyxxUJiwxITSxIs\r\nYIySxK4jDMOAUaPSh2HKbae8397nDs7AlHNnEOf/f3d/32WGuXvvtdvaa+1VLTnqyn3FtEzxvKbk\r\nGPcfsoGLvXJlVJYPmSiWxMWRNcD4ZxgQdnVkvCRkuDieG6b+2jpWbKmUyKfJEZnGgtqtU9muK9tZ\r\nxDlAPH8H8d3dxDC20lU8fxX/vieGfCKG+QHr9pY41rvJ8Znm3sBrbWvXxXcAyCTxjQniuROBu434\r\nvvBZJBHrX3xXK4Y/W9LWWxsM5twBMRmc2i2Aa44D7reAu7n4nhrWIjHNfzHfD8UxZ4uz9ZvJ8fML\r\n25M2C2N/Hq+QxuyunDlLstnPkuON+b1ZN7t6bERitd8RMaPsxRLO1wfd9WfPHWBJZf3ujCFBGxa3\r\ngGKaBu3+I7/bemEyOV8vUF8slsRKXxYrKpJq/NK2fzkimbyysIl2N6svt+kn0cZXJFEZkeZV/6H6\r\nZt010d9b8ivaHCTZVKjqayu5OZFmv95elHhN3NSdyVHGXwvpwJ7nHyixxJUgzy4SiQdN1QHX9wtL\r\nY5kDQbB91a/6/+rvEWcZCPmSeM6M5Ci3IHiqF9u2DTnu2pPEkzPFNHYSq0RAJPpWcB1+4T9mZBsQ\r\nLI/kni0JZ4ldG39WvPTdyTHG24XMsbWu/WbLIOnffypIfSyHdUv6D2D5zEnP1wrgGsAV/ygx1VwX\r\nL2SuM+TL+luTe5WuKRhuY3qMxMqDM2cYLXaNuz3IuLjgflobWDVXS0nlJYxTpHHVS/x5/277qvii\r\nTIyK5yVe3l9ctb4FFnXGjl28wK4xbk6O8e8usPVGqW5JLh1sJOjw9UBMKXLTCJwBhcHwU3psTkYk\r\nxkHXJ72boqpEOIy+V0n9g9nsg+0FLVcnR/vTumuqEazGOFcSpTdzkIPqCqlymhKrC+mrCy+X4VTK\r\nVhJNmPpAiTEEpDhavMjRdp07RxznMg7r3FAwq/2xcux1d4sV30tTZoNJBHAV0nyxTh/DxYr113OM\r\nWMPEipwsOTnRrvXuFjMzLTnSrA8DMz/Xg6Vy4K0SjW8h6qAqpFbInE03MQY137Zlc+ZaGsxVtgX2\r\nVTJ84NF2TeYsDvYrYWHqepblBvuaVftaKl7z7fz1+wX1ka9s1/kTuHwvFIbMuqi/hqUCPmvdxDj6\r\n60s7qs5XyKLOmF4rbzQE4C57fuNWybHeJSFbF1Rt70HXbV2esBItLTJENYzFZHnakdSrKy7s9iLk\r\nhKwtG5ZSt5uCke+79WeI+RnUVYfc99NQ7Zs48S0sZufYbWrEs8QzEqz6vhzY3TWixCsut2ua60C0\r\nh7qCatdE9pBo9Ga90erjen+A7Z4Bkr4vT1zx72QyuXZ9YOVisHLbQi23FyfyPRp8j00eqvsv7fdd\r\nWbNiT37rFrHhDvaTRMljUK8qDdPJZhnzTBBoJlzAe8mRxmdtx8xB3lRcWGXH+aGYcjjINoxDZnG4\r\nz2Qc+9u1qTPgUF7ubnWBezrjvTM4oFwiLrenk5sJN/KUWK6C+0k7uDX+1sCcABdzBH8/TB1t2o5l\r\njWfZ81LHJccZj3YHs8Pvsy3sT+mBdk3LCezPg4X0odnpgY13Sywa+YqrK+R8cV5YOpD7S0k331EA\r\nbG4QYwfmfwgXoSHxxMV2beavcGqzC+ij06oHDLlhXyMiU3zX38P1I6NzWT+eyDOOLkckZkh28tDp\r\nCyzTf53j/eSfl1zc4X63RewNMa4N24einL6kkqOdywvt2K5NnyZm/Ha4EUVmpnEQHk1OXA2Z6KQY\r\n/oX61s/lfPGyF7FRNwY1uUvGJ9s1CvoxPgIj1OcxWNNBIOWPQcqfS9MqS5zYnSJwGl0ULpIdJGY9\r\nBRL30xeQk3tNDO/c5LbuO/wngLtOAeGgpDlFTWeB5Ffw5j1LwzTNcimpGMXb9YdgapeIbdf4h0qi\r\n7E7N5ivEzmZmM98LYOffXTvfdeGOMaAQGUUlnrTruAA942aJRHejj4jES35v16SW0b7bC2W9Can9\r\nVVyCadzAGr6QHJlZFnqfKxsukETFLow/dJP1KirEFvmcS+WaQjuxayM/ZeC/1dxTNnM27XuF2FDn\r\n3UujkaQVkQPiUUMyMFFZjoE6Gm6rREO/yCDclrE9dbbP5PzTDhw+/cWWnGu/uuLSdoSkbyN2gFeG\r\nXR0fiKBICa1Cl+Qo/y67JnugWGUHw/5tI5WNE2jcoXDQrh7WT6zl39aH3cksTo7x8kgdDhwHcgU1\r\nb7er/d/DM2yWHO92+azhkolDbR4FOfppBM6ln5Q3lxydPKaK7QxXQPKVIFsSmDPp4yHJ1Q+S5dFp\r\nMqbzg85lMBQZ0336tAQH8l55+LJT23Ij3UFPjnTfsKsbvyvR/o9ArX7EmpliWL/lbzskxxfw5lbw\r\n3ewcybo7SmnFIEmtuRXYP+4OvvoeweooiUVsPQ8v9yac3SZcUiPCtG1fRzNhPcIBLv77uSR/Dtcy\r\nli0cq4R4PRUq7jPo+qmlsciNiZhhrWmBkmXUuAyYuCyvJMXEBaNWV726C51ogjoRzdBWlBr7m0Zk\r\n0qQh11/w8rKLb2mdX48mVfgCflMtjL9D8UFsnsSetwknqeOBJOpjfFWa/5IHW88KEt7VtFSfrktV\r\nw08lVqGkz+oieVtWLjm2EKRu27mSKtuv1U+SwYlhyb3MrjUBrnURMoSBwVs681JydO4USbbnRrob\r\nuvoeBE7Z1Q1Hc9JeY213lkT5FpzC06Av08O013UUd+Rm/8xvf6Tdzbxzj4Qlf4w3+zPd9mH5v2Ee\r\nJZJqqocjmypG9DF9yjd2MWRVANewpPFLxRkWrC0AqS8cWGFOT6V9Wd3M61PPwQChm3lpVcnwHY6T\r\nAZvuo/+aafxMVi7+kzQue5MXFHIK6jXQJmaJOaDMvJm+4rNXXHy9Xt6NvRYbFZ7p8YhTsjugotDr\r\nFPbyktVS1VjHJu0IJdvark6PTI43676OsQaqljWn5iXPsP3eOcmJVb3gJ0G0vUoVQneJ1HZ1C1xJ\r\nxXFaCqze1KnsGaEEkp0sgkbumsxpCAzhgpwIarKT7bkVt3T53Fm3L1/6wwb/wq5tOkUS/cYiMLzV\r\nrs7NyV+QHUJGwEndMrQSbKfhXyK5cf+SaG1Fz/eqlR4W1gOc0jCJmdvnZTIrC5p3HtT+Q64/sCxh\r\nTG9GvuxwJbReTR7bk+i/tYw/+AWxQO6mpf+CartSPmRXGb79GfLZW9fJx69fhrwV4T595dhS1Uf/\r\nUvNXIPdHIPdz/38jtm/uEEiZlfrG6xR52BSHN+8MHjA38alAsPSMXWdcLJJ+A5Y3tKQ51NGoqEd9\r\nZO2ot9HJzoXtfyNUu95WilXsKpHYYC3ZzqaeS+5kLOxtl8kx5lv2gswciZRNkog5kucOOnh5K3S/\r\nvh+IhTznDMmlZktJ+Wbir/kVf4D6r19AphEIy67Tz4iWhteTo7177M/nDZam3hxjI2K/BoagRwlV\r\nEuky7Ba2krh5LcK34CllGk+Gatum0kFxuyTjld+qaE7ObaXUQQXPycnWe93IsU3LP+/fXNwM9EmB\r\ngQ0vH7oLNCHNEuQlavk+cxzxOHeUaZi/3m03e1ZvVqTQufSwPpLOxhLerIURNRB1HOqgwzRS5zBW\r\niTjoertg1+orbhdjzcFS0n9vMbPb0e45NnCpvUAUAvD21TpBRSYcLguHKxSViSzj/T6PJa/lpP0z\r\nePd2U2LWLvBYwS5JYTr27rru5vvReVWg4l7+1Mu+vmpuyMusxyQuQ+7BlrEFIbbSfFAQvM2x52d/\r\ny7qcJNHYqUjaH0fSvr4wyrJug1oPlEwqhwHPWXoQKVGqx54VV8tSx8gQ58PQHbjWAPauEvlIoD1J\r\nN/1NBlXcFuYF1hZGun/pYQPKZGRDU3ukbq3jMzYDDt93UoCKcIcolZwnzcvVMeb/Eda7jQZWnexm\r\nuPPKctnaW1x6QB9HbLXvPqxramcEFQ2hFt+zNhfTn8TVdSIrMDCQdGceBum6lLgqVsp+reWHMixy\r\nAxKKn3HIIrQdyu+BGmstx5Zn7fWispyKI1B6YDex1K4Tbu70rwLpdadlkNoYVGlqo5TQbSMVVFaq\r\nKBGrZyLhLvg52Mk4rQ81e6+oqHg9Z4nd6AWonSaDuJuhWrvTnlu+E3uy9ja350WmSEnJoYGYOHM9\r\nb/H38gPquZpWs/NmDJXbVqE3IVBLqjOF/huqic4/WfXVOMP2g77wv9vgZZtmSIs5HrUvniQTjn5P\r\ntj90lnz0LDJKpwXkxpSAT1A6nrZSiSHNPKJvI7aSUiP4w+LpdVYx3JphqRgIyzi4CqnTzW9DrS8L\r\n854M3qq506D2d4uXOowb+btsXCXEupz2agDKCiLGmsbA6YAXUmJKRa3MCJdA5Exo+4/smvRhUKFO\r\nTGdbn/psjKn1WhunwKV9PYDamPyaig3p2YWB1qMBFdIFXBIzQe4xMmC1kuppww+lFZGod0vAgjfO\r\nl8H9ry6UQnY4d22IlGuB6sJ1aWTpRgKnOQzIqIxEI1COilIZ2WCo05zjSXVC2PXdI35LGRfUhPR6\r\nOhAlNGtCjjhIho77GS+nfjJg8/1ku0Oek3nPHsJ3MJ7RsrVIrd7dhroF2pQWhHBM6/t9G7EDzAlv\r\neaarr31Tr5ZsywxpyFyR3DW8RZbqAoEOOl314VCN/aUp91xSJsNL1FopxI6CjiB3YOokfrZM0s53\r\nOHTHser/xWcEF8Kzdl12QseUm7Eorl69dT3pH/Yw9Lqe4QdGJ9p6LLdZr/v7qoPttKGHLl7hJqZt\r\nBoIK6QmQ5A9S2v9QqOGFdrUzE9XhO2I5/4OefhNtsSbeGT2hkB3ON8IWOtkFvNV3LWQ9UBtuxlgO\r\nZjGvB7nLuIiOt+eln0yOyz0Xqp+SVDn3bNW69lYubHfJgFGy/Y9mYXPUXz5/92aE7f+U0QfMkB0O\r\nmyMfPj2J4daD8NwLikvkrva5SNsitwPdwPNjYN9GbG15xuM63fwIrHWKW66LG5XKvqR5834JwvxH\r\nzPQcEAuTzN4RquT8Kz0JpM7rlDZWA+K/bc8tu0MGNt+P9doxEi8bLC3eBVwO563XzOOtr9g4bSZr\r\n7kWdG0Idhl5XQg6gjUEUYvvKhLNn1mLrjsP399Z/UnPylCahZxR7bbeOdy77vQ/IMkDcxulIwW+X\r\nSOR4zXpms/cmx/pzer0U7TooXE8WWAS6d9jzvJUSt1hHJdnyMFiRcIit4a9jJQeLj3eJjNr/fjSg\r\n9fLOIztLtjkQ2bw3c0/Z4fDZfEDuP0yWdMNSqRg6FoR/WOrmnIbU/G3tz6J75aPY8T6O2CCl4bdI\r\nbvTJ4ZX/bRFuwx6BrnrTb/Q6/1y80Q4CeQawwsGBX7fUVy6UgQ01XFJjOLD7QZW2Qb2z6Gsfqem8\r\nKVnkFLEEtubY0Fe7I4D7eW/g2jXeOEjL5MBJxvlEKqJYzfUOsRnTp3aNcylajN8gpJpEd/vqp1W6\r\n+XPkAxeFeVL1Zk4FtfXGPCHOgmt58m3Ffm8Rti1X+nqqV581jLI1/YZ/W2r+cgw665X4yvACpKRW\r\nL5T3H58oO0z5G8j9qnz0zKFcAA9oPXdq9cew3l+hsX4rgDZ9G7GDleISWqxY1oIsz8IusqrXG6uh\r\ntnC4yVfYC/xaEBsXyI7XVl8ANZGHOLTXcSBKoKK3gAw/LGS8PakbjM14nKv9FE5CP5AEuN6UnvSl\r\n10x5pB199W08QWL67ZuRGbjKKl659+XRaXfT91FwPt8RP53n0vzzutJv9x5o4T0oYmPXmMtYTxA7\r\nvJ36YEmvXu6XfYr56HZKB916zN0cfk8ty0HuifLlB49wVzYjtonrY5Jq+Eze/t142enIN2SX49+X\r\nbNOX8v6Te4qTXsnrTwnUAmFaXBkU5vy6/xcQu/AVL7SFVTPdXlSKS2TzWd1ItLvs2a7zEKBZowOX\r\nR6Ui66Q4zl2ohs5GtbMJLPkPsGufnhzlQI16VpDmV0hV2UHJcf5jXfYQca5FX3wMp6UMSfDhvGeV\r\ndBl9fQ/KMdf+Buq/r3YiSTev4KJA5bNhrL+U6zA669Mkkn0X3XZcmlc/xTif6MEov9YmCPX6S9Qd\r\npfdbSbJClsdWJ3P7Db5hbjwq2wXmo0oGG+H93CyL/36BjJ48gzd0Rr6svhd2/HMYIoe396bSf8Q+\r\nmkqrNzWWTapVoHJrU0oT2Jk78oc2iG24G9wXO+REv8lqUM+doDhTQbIIKzIRdvo2SZv3IaVdUsi4\r\nMHIolaGYOlpW/7zb5987a68oj13rnsxheF4jhhIU1RJQIYvzSYFsuV0b/YEMr7yWOWyPNL4Gwd97\r\nncLFaws2d6okEvdplU287CK7NrsF5qWXAvfjMPPFWYOLS5mAxg7Ufag3u+ueSvvlYdqHraNNZWuy\r\nN9P/uWLx7t5Al8b68MMj5Hpto26SdagMvBA704J0PGO0jg9nc/IzwjYEmk+KFSuVpfN+p00mtvz2\r\n9bLJTudKpuk//DeL6/gI7o+MLPnoPllSfb9sO+ku2XHK6/LRHw+UlvoFMGIoauhLcQCO7z4eILZW\r\nK/mVCCpO1IK20AIn1Btm9sV13QvDbl6fqGdiQ25i4+15VSAHftWRqySeOcdeGHtBDPcFJOAfyOBl\r\ni5JV6zto2L/8pSFHXLOtJMzvgNTn8BYMTAyzKawKBArWecFJ5QUQEffJkt9o3Ww0/t/UnmQv8B6l\r\njyc4zB8o9nndHgKX0caRsPLf5qwfw5j31hcJxlP4UqO7l6ldwh3j/9ae37yFlJRO0/rnWPxI9n4y\r\nhjgPAPcpjHLeXzcyS2COWvJfaPyOxEbgWA5zxVpBXDZ1JpzC01/LXlZ410tD05zkOLMru4Cegw5w\r\nejCX+/FK+dttR56OrJGg7iBMaL/Hfu+p9y6bYtP9u7pt36bC7FUXzplkTp9VWWFMrm8MPJTV5WVB\r\nH5bOf0RWffw8Vma7SmklPia8oVMNtVpIlmmE3rDd8547GBNTrND8nKb2ahgDyg2hrxfx9Ho7j9jK\r\nUNUYKtHS+8MPjpFEURc0rzycNu38hsP38c3X1AhWndpJEj6ssH8SiFLK1TmY1Toeanq8GBlXVgxZ\r\nZK+QFlavgXVS70jIlF8lx16T4CVN4AFeNqYydtDXr4OE+Hgsp7q1NYe9xAMttYTdJOBBdDMdRME0\r\nT0OFchpKy6V2rSzhKAET2B6BojAswisMDIa6R+NYMuTPomIFmxuewUzpvjCUjcAAv4QN/xi9yc1i\r\nGf05oJVcaOcz7vO5zP5tL4goeUarTKNKouWDechtqu0CWiXrbu5LyWXPZQ54l309JTmCC3fE12id\r\npy42wySIRPzB0DNQa67U9dpgSRsneRjM/BS7hbwuPHRP3KHGaU0p/53yEmMAP9sgd5k2J1396UtS\r\n/8lLukMNFiGilVB6bENT79X/eYVtY0+wsSnndDSlBHVjBh8AJeDhhviqdH9ptaurVSeKmejK+KeE\r\n75sqA4qSqgw9bQPDFDWJdMsAEdVHYSaloeFQEbYPigCVroaV9v2fwlYdwkpuCzVTFlX4x5nBO6p1\r\nhfV0+SdQxwVFh9hxiZ6S+gUUJrT9t/Jm4mL5B3BRjxF+yIiN0AgUjQ+FggZWb2vhKGZK3SmKQPD3\r\nbEuW3SYkk3tHclTuhTBI3bouwH0AjuHvkvV4Y5uHaUm+MnU1ZEvGsuVXfbWdJ7+7rnpPPyyZ+htx\r\nBCmckjqcOYKxBHvbrE5pb4vSZ1bq/lqasN0OUyrZOIczyTj0vhVy7lkDZZjiOY3IU9jv7HSQutNn\r\nV1ejeXXJhR/vM+T6KRFXnulXZpQ14rLZWhSVjuC21XFRRih8n5eGVzCNrOM35xz/8JdXTNMExcLq\r\npkOD+zDLo7gSWMY3u1yYRmmSKv9EHgtx6Fx9qH51Je8maWl5huADGfyWmsK363nNILBe7kIC7k2T\r\nlDUBCvYt3G4mwvoMhRKPYv/RVLS9xJSeXBaDFG9z2GfxvmWDC9ebAxf+KoNBRvxqOIT9YPOI2+UT\r\nocVVttdK5xGQB6Wnj0QW8Gz4lMvnbzymZifHp7FT71nhQGIHn/sZcoUkaroDxMUUV11ovrcNPbaa\r\nNOWgUAuBjbRfXhQjO4snwlJCxfQMqGUt1mfOVxeU/37POmnTqiRRL83OiZJqiTO+f4fqr7EkhTff\r\nqZJpwXqs89gbnfTlcZl+whP0w+RIuJZeltnLLn7pOwOu+25ZSeS+gRXGji0I0zIMqStSqUCqqyjO\r\n/a+EZc1p//2mZveUV1dfSrDLoFi9C8amQkx1fdvl7X0fLDSkGiwyPMjqgA8J4eLcy/Vt1zxQ22QU\r\n1V1LeaHmA/h/YG3Wuu6NlQ2Bu15ogWiXw1RmlVR4Kv9RppT9JZGOg85QON00R6CDAi7HcKsSyEhy\r\nsPGiPgKiD+JH6w3ltnduKYS6rQ8/H5SCAICrww2um1rsFa5PwvkK31/exfLhnu+bUnj0bh3aTutv\r\nqy99a4+UvYdXWXqWZZon42k+Er8PvL6UMKw9ikctQ9Z+l5NFDc3ePY3Scvsbq5NqHdaWoror5PHq\r\nWIca/jCFBNOuWoDoG+4AhR1DR0K7sG2L9Xq2Am9kQMwlMh13ztvw/JoEyTzAMI3tkJ6Pbtuj4/q1\r\nGcOv9k35a6Mff+WNJee2Q+jWukXE7tk+FFsVV+BrWYHnM8kUzsDKNFWbp+4xzC5tFUwpVu2NJe0p\r\nc2eDKCL217I9xU6LK7BhViAsIq8LrYjYG2b9i70UV6BPrUARsfvUdhQHU1yBDbMCRcTeMOtY7KW4\r\nAn1qBYqI3ae2oziY4gpsmBUoIvaGWcdiL8UV6FMrUETsPrUdxcH8X1wBe+WAqMz7IpGPD79BlqCI\r\n2BtkGb/ZToIkBA37YWNOjmhsJLOjXgofcabrsdtzV8Zl8CY7k9+LuGCRsYEduTY3VZYzytD6M377\r\nCDPLd7GQexujmh6b/2pYlZvsgrnmLoAYA6yt8rD4oQzkzU+JqKNgvZOHtUEyxGJCPIwwxnsAZAy2\r\n4zsBSwX2UFNswFdA5UBfiFnt61jNFW4b38Hy6lxv4hB5JrIPc8QApXGQDKkoxXWXeHjK6cdQZsJv\r\nSNZ8hfX8tCenq4jYPVm1vtamsvEE4qHfq1MOx5Vpee1P+AfH3p4XHSHlmGunStWwUzngY/D050fe\r\nfHxtmDDMHZWXU+CqisGt9297YeJxMVK3BvHmwhXbHmvKMXVTZdDwUznUoyWOSUZrKuPOYMXdj3Gt\r\nnSmZzC2BrX3hBXfNvfFsO53xT+ZSrNTON+uHQJuSDzfcaC8iB7qbvU95BBYOTZnqepvhX/FzLsIf\r\nE4oUF2HQTyeeVGaj2tlmi3zwhL3xEzhZBS1nPf8ifo4874Vl8ywidk92qA+1wVe6RKIVl3HgAgRT\r\n0St9/xf2ypWPdeRDHmbo2KiXyTHXPI7300G6vvJsa1mznIO3GBjEScMbTofw8FUyPA6jP5KDWkWC\r\nhi2pfTGx1Y7Dc+wcnEyU3XuXRQeoOGYhIYfLDwqS7MEEtDQQbojAD76vKCTw+MKQ4VBscoThHBMr\r\nIV58XFHzi6l3LLDOBtYfuoPV+r392uf9ZPhWNxAc7BQdOlqVrHIPSH2OsyJz89I6/KdpqjDBxIE3\r\nt8F7jJjpxqFcbofaC92Zsjp1DtFvcYYJV7hEjmLMNxO2OPDYU15l6TWrAgcbfzV/URFeoeQGcKDi\r\n0UQFmUzVLX04fNHh9kLr97I6fXFy13AXZhGxw+1L361lVZzOodsKF0jG6H8K27g5LrKjZTnup1U+\r\nzhY9KJZztZT0O0iH+3VdkNmdhjfCix1HSfGU08hQfJL3JRjUubi67gYV3IQxPWnX1J+Ck9G9XY5g\r\nUO5GuI2DNGIpWOJfBvv7ct5ZZJ2meVg5PODEOI94ADvrcM+xkqft2saTVAbM7marc24N2/J5LqIJ\r\n+iLMtDSDWA/iT/84iQo+bO8TALzqeAnhj7cjG+jhUNgTQbghwDxCBvgT7OrMwYFHYDeXV41xPhfI\r\nTUFyCRXiJDsbF5s78Bx8PTneW4/bgFXflNzre4hLAAjD/L6OKWeZx0ql8V3ypR3Pmr7SHcwiYne3\r\nQn34ex3ZJFZxYRABRz7h0JyCky7hljyLA3GpXW3N4I2mXPBCF5CUoFpyEkEUFKIth9XdLwib1Lkz\r\nSuDGmXvUrq6eKeaEJJT1QsZCLhoT2J17vgFrOOP9iQ5d7DpLCdE0mWSIXUZszcN6GLnC4zKo5Wod\r\nIMIlAmsIh33e0gmJuc9IrHSC5kLc3GyQ7czkttk8cq4/x/z6vUX/b5HP7XaeHDdzeR2Ov/xIqPof\r\n7br0xORIM4gT3EEhCcKRGqlVcYhW6HrnJcfk8hdux2uaf8sTwMKdCaVXLrxXSaRkdxB8U55brR6G\r\nXe5pEbFDH/k+WNGqOAPqPCxw3vUfJMDDLFIhPQt7dyhsNGxry4l8cWdBI3esLWlfgd+3ejc/HTYW\r\nmoKRHD8ebMlezhgeCny9uylpa7jECayo46Zl/twdUrftTSVS5P+XQIEfYIwLugOlv2/MXA53sHuQ\r\nzy39V1n52sHJiRNDO2TnEW4K4atmwCUcR8CIbaXFAWk7zgKiLy6RuwIxo0NkneyPCCM1K9RY85Xw\r\n8X+RLKavcondRh/1xFX/S5j2RcQOs0p9sA4HmpBFsHiKWmdTqySSjxJqWUko4CHc7sSjMy6GlVRU\r\nuxBJdUBG1HvXMIb1ZOqhkDogYXw4ggqWKVU9ghUSqe3PYcENglbqNMK55cToPaEQpG43tkEVJ8nK\r\nRiT3JWNhy39CgMhbOgwi6ZpnEWWVxAeKO8gmC0XqVph5/3GEmOFLEbHDr1Xfqhk1z4UqE5uNYRme\r\nkkJrdhCq8r69wHxGB0eMl24uXrM6EAErGKZYziJxrdUgwAAuhx8Sd+0M1Gd3byj1WbshJBCMuYQY\r\n8uAQTOtAu9Y8XbIj7/laYDWah0Bhgwj8mRzz6ZkkXa9x1eqcvTyiEsw/CJttILxWnNHUtnPTQScH\r\nNk7RIUgzLZ9JRezGEK+FMDsUqk4RsUMtU9+qpIVVYp0dCH9Sy6Tc+3W7N3DOuAZd8KGw0wQ8FEIu\r\n+b8NG2xf5QO3a7gIYomr6NuEIt0h0boz7AXWAnTIH7ASUH+PqK5Ic8VZSXgmxPAlS/PRXwpaKPVe\r\n5uJQsK4AFnKByJ0S07BqCaoILLMJ2TtuyI5i61cR/Q9YVo9gsT57atVSjlR4hom0vpdRbxznr6j1\r\nmpFcq7hte6438crGTfnb1oHazn9qgyVTCLnCRcQOuVB9qpoTvRDqExhR+N6NOppnm6IS2ZF+5wmi\r\nix7BG5wkBs1ErnSvDTsH2Mqr7dqGfkS/PA8VjSUxczsQg49P6lelkgIpdEA/2IWoegu4X9i11lIO\r\ncTXs+yz5sv6PWFGFMx55+PIr5airKtAhE9tdRXs1xwOLT1tYPIMVzKjW530B4i9FtfYBuPmSLJVn\r\nknvp8EhdF4M+A3XgGlkeXSRjeofYiuLbtT6RSU0Md/xNldCxXQgp0yOFE6mYCVrLnIjt1jt43U1v\r\n3e+LiF3oin3D9VGFqPzfBANUcqr0UnGGImHtwD7D8cj6kZ3CoQL7jPOg2or97FR6u+60kqO8i+y6\r\nFNFIcz8IKBK5xn2yTBKHmw8IyNFRiQXNCBG5DagTH9/DQs09ngQGNQT7Px21zJzuliuZTKqb4ud2\r\nTe73tAWW9206raIv+vN5apD9vTNYpnuiDM/OIx7+mV3BssdiAFNTi35YFSNLTNPuYgV2N+zge9+A\r\ne1FdmZVkXFVWNW3Xl4tRJ1NQyQrZoCJih1vU/6u13NxFWJcFYXt976bk+CUdpq4Fid9HqPM0seIP\r\ng50mwH3T2ZywKwpZNiiQojRrI4lyOQykPRZaBLjOpKt4H5O4gCiqnmwOy69S0e4KW10OvDEcchIi\r\npPZCkIbaq/sSCJ9as5i46I+BZckAna7YBWn87LYgkDLeQNpvILhaC2scf/sz+t09O4V1xBRfjr6G\r\ncP/awqt9Qunuh9Z5jdYc6apjK6rYgTZ1veVaUBdRadWzPRJC9mZoRYrdm9XbyG1h90j+ZhH3XL2t\r\n09VQqa5T8FrOeRhDTObtWgGbTNx04o/3IhUPbfOJBNQBVlI79/W2S4Caa2u4BJVu6EiMR0pge6+h\r\nzvd6skztYeke5rZFHPS7W6P3voZLBvPMRAJjj05h6VxgNVBNFVpZJSS0nCH0V4imYL0p6Ki1USzE\r\ntEktDwLHWtYOsU1ZwPxzXHRgtrdjT9agN22KiN2b1dvYbZ3INPJulWiDDsO3yNjxe4bQ+R7q/C8E\r\nsTW4COLExPOaf87h61kSvhBzhWIutu1Lj8LGfHvYUCip7MlltEkhduMhwOgqUHhg2UeTlXNnLi4Q\r\nVr7NM2UIWgEQrINiCEYmxl48HxIkWphMjYJS8qzXo2Xtilwgr6LzF6+nUqxctZQMMh+B+DtxmRxm\r\nVzdeRoKFgoyFwq5FR/WKiN2b1duIbaGG2ymdqXa2UM4KidIx/ITl7aYoU00VFF/9NI0zoDS39jYv\r\ndlcQ89QRqbY5DgpZhqpaHf7QDiHdTaft9+p9jgRfpS2GTTfiUkIM9s4s5HxXJUA8L2hvnInjyT3J\r\n5Pz2qSoLAe6Tq029oVW6H/H/uG5TZadvL/ceYzg7Yem2GQg+Dcp9WSEgelO3iNi9Wb2N2jZyuc4I\r\nqpA0l3kG08LPOCzdBx1XeZt9f3cugd2Q0vIebj4fqk06oY6LZnFjsSPIwvI8F8CHPZqiYWwZsKh+\r\nE/xE5+aW1f42Ulp6JFlGX+gqS2jXY4D916lk/Qyul53ngXLGzRFjwTvanDSaGC9H1V5Hox5xL7hX\r\n/gSz0h9ouOnUCrLh4EnXwVZY7n2Saj4HdnwT3uCXIvOYxzwVl1Vwsau9wRKLjg/r5VVE7IKXeOM3\r\ngJ3dkYMxJVDXuIuSo51DCxkF7bcQL1JDGzJFmqfYdblbsG9eL5EiB/YEVE7364R/ce9cu9Y5m4NU\r\nUF5qbKOnconAfipck7c6Y8N1hsuS+AMalutNRZ99Vo9gRWOko9RI9U/53RXLJYmpegclSFIfOROB\r\n1mta0h6Nk0KYhHrZdy8PTGHDFeZ3LKx/4Nii86jJ+Z0lWFA25PY8/2dI+1/Qkn3L+B1eWmPJe3Y9\r\nbHmHQs+ORgFMjGuwN3dzQ9nLLdtnZul43EXEDref32wtFzPRONRaFd/HgqmwwkH4xJ6fmyEliVMQ\r\nNpVLyv0FbOH6OdtMbxaH5x/iRSdi3EJSQHMmLoqzQIQHCGwwp6uc4bxvx3KAz+IAozNXGizN5Xau\r\nO7esF4H1L2DtzmWDMCsWwPL9+zGumRM4e3RcQNBxOI8AC0s1VXTiee/aQHXWeYFa/gP9/plQbVSE\r\nVI3GLxFjwj7kKr9Vyqy/YETSmmG0XSe4wEZl+SDUcFwMUetw7ZeuWPBU07XYbnfp954c5/7Zntdy\r\nMjKOe7WXlhiXid/vGMbxCL8/j/33/LygcC1MLZizLKVx2AuYU9gL9oO2youzsf5Abvf1qH7gEFS2\r\nJ7YHpOJ0WoqIXRiObPTavK1ho6OHBI4LmU+kwprRI51o1PsfrK5O4EDGOCQn2NVpsmWadW0npKir\r\nXf1vpOhb3qpdFJWqJhIl0oc7WWKZlZiq4lZpvg0SfWV8Yij/YdkFS7HxCKYCzyNtv95yCVL7Fztb\r\nMIRcX9ivtewvQ43bOLjHt4OV84HlL6LtOyD6V7CUas03dkVWMB63S2DljWWyZDgN4cqoxkK9e+za\r\nljUggEpdPBi2XDmFPCzN2SUYvnwIp6EipjABQ90W0cAPfAjPmMhIrbdXJZdpFid9GUh9a5gDQUrl\r\n+/AZX4axz008p+gHBx2RS3lOXQryAlenLFYZ2lTixQTSdpVOeZMg+2k+hVo23YCc5NdI9J/vmO0v\r\n2Yan1vP6Akg7K4qIHWZnvqE6+ST3t4syMlOInc1MzyehK3hEIO0Ce77zqPSrIsl7JC7u8um2/YvD\r\nlLCrHXKPH4EaKPdTKMpDHPCpOrpIlBy1ifIq2ilB2K5BGl/tJMJHMRL8X+GCktZ7ZF/1s1eCQM91\r\nN8ggxlf2BFjNh+hzKnPcH+QpbQNrt/awtKAqf3GABz6w3EwSaTyHPXwhAspjpC6eC7yLQJyjoNyk\r\n4S3HSQSnF9/fP/9mD5BKs9v5ABDZVCMXy1Mg2PQwftjt1nWM/ye7etWr4lWeDvpywRIpJqpkfSXA\r\nNdFzt24Da9q6vmo9fa8O+E8TmupupXXoVDjosAmGDrKh7gfsc4ul766Ao/bHu4roJWxb1hXnfbKP\r\nYm3Z0+K650NJZ/KmVd5Urkw5gpPb8fsStvVVOINXedMNIcjCTpKzduPAbAXiYn2GwEq913F/4G91\r\n/CTySAR1kvOP5Lbuu4UOLxAIubO1DXzWUDrfAJYPLD8PS1E0Q8HygWW9hbR9bnJM9r1OD3o3g4Bb\r\n+YTxnon32zTx09/CWWNfqCSCOHcCTQdpQxafFJ4qlpu4KuYZvtvmG8ltlTqte5llR+B5VzdggPAr\r\nLOGmy7O1O0rOH4/MZCL9JZgnnA+3o4l9vBI6RmJzodw18kVpdeCiGgamNsDRdP9/AfApTFwUgQef\r\nAAAAAElFTkSuQmCC\r\n--Apple-Mail=_2D0BC83D-022E-4417-A61A-A453B30D6A03\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=image009.png\r\nContent-Type: image/png;\r\n	x-unix-mode=0644;\r\n	name=\"image009.png\"\r\nContent-Id: <image009.png@01DC31E9.DF1D69A0>\r\n\r\n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\r\n--Apple-Mail=_2D0BC83D-022E-4417-A61A-A453B30D6A03\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=image004.jpg\r\nContent-Type: image/jpeg;\r\n	x-unix-mode=0644;\r\n	name=\"image004.jpg\"\r\nContent-Id: <image004.jpg@01DC31E9.D9707880>\r\n\r\n/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAoHBwkHBgoJCAkLCwoMDxkQDw4ODx4WFxIZJCAmJSMg\r\nIyIoLTkwKCo2KyIjMkQyNjs9QEBAJjBGS0U+Sjk/QD3/2wBDAQsLCw8NDx0QEB09KSMpPT09PT09\r\nPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT3/wAARCAAtACsDASIA\r\nAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQA\r\nAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3\r\nODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWm\r\np6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEA\r\nAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSEx\r\nBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElK\r\nU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3\r\nuLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD12/1C\r\n30yze6u5BHEg5J7n0A7mvOdX8faheyMlh/ocHYgAyH6nt+H51H451p9S1p7VG/0a0OwAdC/8R/p+\r\nFQaT4Ul1bQ7jUUuo4xDuxGwznaMnJ7V6FKjCEVOp1PIxGIqVZunS2RmPq2ou+97+7LevnN/jWlp3\r\njPWNPcZuTcx945/mz+PUVgg5GaWutwi1Zo8+NWcXdNnsOgeI7TxBbF4MxzJ/rIWPK+/uPetevEtK\r\n1KbSNRhvLcndGfmX+8vcH617RbzpdW0U8RzHKodT7EZrzMRR9m9Nme3g8T7aNpbo8OmcyTyO3LM5\r\nY/Umur8M6Laah4Z1O5uBL5kW/G2VlU4TIyAcHn1rB17T20zXLu2YEBZCye6nkfzrp/CN3bweEtVj\r\nmnijkcybVZwCf3Y6Cu6rJ+zTj5Hl4eKVVxn5j9N8NaLN4Oh1K/DxMY98syuc8N2HTnp0p9x4Z0PV\r\nvDkl/oYeN41YqSzcleqsDSfbbX/hVwtvtMPn+QB5W8bs7/TrT/CF7bQeDbuKa5hjkZpcI7gE/KO1\r\nYNzScrvc6oqk3GDitY/icADkZr1rwdMzeFLDcCcIVz7BiB/KvJUBIVVBLHAAHc17VodidM0S0tG+\r\n9FGA3+91P6k1WMa5UjPLU3NvyMrxd4XGu2yzW21b2EYUngOv90/0NeXXFvLaztDcRNHKhwyOMEV7\r\nrVPUNIsdVQLfWsc2OhYcj6HqKwo4l01yvY68TglVfNF2Z4lgdaMAkcc16i3w90VnyFuFH90SnFae\r\nneGdK0pw9rZoJR0kf5mH4np+FdDxkLaI445bVb1aOW8GeEJVnj1PU4ygT5oIWHOf7zDt7Cu+oorh\r\nqVHUldnq0aMaMeWJ/9k=\r\n--Apple-Mail=_2D0BC83D-022E-4417-A61A-A453B30D6A03\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=image005.jpg\r\nContent-Type: image/jpeg;\r\n	x-unix-mode=0644;\r\n	name=\"image005.jpg\"\r\nContent-Id: <image005.jpg@01DC31E9.D9707880>\r\n\r\n/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAoHBwkHBgoJCAkLCwoMDxkQDw4ODx4WFxIZJCAmJSMg\r\nIyIoLTkwKCo2KyIjMkQyNjs9QEBAJjBGS0U+Sjk/QD3/2wBDAQsLCw8NDx0QEB09KSMpPT09PT09\r\nPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT3/wAARCAAtAC8DASIA\r\nAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQA\r\nAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3\r\nODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWm\r\np6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEA\r\nAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSEx\r\nBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElK\r\nU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3\r\nuLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD2auQ8\r\nQeO4rCV7XTUW4nU4aRj8iH09zU/jnXH0zTFtrd9txdZG4dVQdT/SvMuldVCipLmkYVajWiNW58U6\r\nzdOWfUZkz2iOwfpRb+J9ZtnDJqM7Y7SNvH60zQNHfXdUS0V/LXaXd8Zwo9PfkVseJfDWmaLYM1vf\r\nPJdq6gxO65we+AM10t00+SxkuZrmubOgePY7uVLbVUSCVjhZl+4x9/T+VdlXhXWvSPAWuPf2L2Nw\r\n5aa2A2MTyydvy6flXPXoKK5omtKo27M534gTNJ4mKHpFCgH45P8AWuZrrviLZNFq9vdgfJPFsJ/2\r\nlP8AgRXI100X7iManxM7r4dw2H7yXzP+Jj8ylN3/ACz+XnH1qDxzb6Oss80UudVaRA8e88DHp9MV\r\nW+Hf/Iwy/wDXu3/oS1Q8Zf8AI13v1X/0AVko/vnqW3+7MSuh8CytF4pgUE4kR1b6Yz/Suerqfh9Z\r\nNPr73OPkt4jk/wC03AH5ZrWq/cZEPiR3eu6PFrmlyWsh2t96N/7jDoa8jv7C50y7e2vIzHKv5MPU\r\nHuK9tqnqOlWerQeVfQJKo6E9V+h6iuKjW9no9joqU+bU8f0/UrrS7gz2UxikK7SwAPH4/SmXl5Pf\r\n3T3N1J5kz43NgDOBjtXd3Pw3tGYtbX00S/3XUPj8eKS2+G1srA3F/NIv91ECfrzXV7eluY+ynscL\r\nZ2VxqF0ltaRNLM54UfzPoPevWvD2iR6Dpi26kPKx3SuB95v8B0FWNN0ey0iHy7G3WMH7zdWb6nqa\r\nu1y1q3PotjanT5dWf//Z\r\n--Apple-Mail=_2D0BC83D-022E-4417-A61A-A453B30D6A03\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=image006.png\r\nContent-Type: image/png;\r\n	x-unix-mode=0644;\r\n	name=\"image006.png\"\r\nContent-Id: <image006.png@01DC31E9.D9707880>\r\n\r\n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\r\n--Apple-Mail=_2D0BC83D-022E-4417-A61A-A453B30D6A03\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=image007.png\r\nContent-Type: image/png;\r\n	x-unix-mode=0644;\r\n	name=\"image007.png\"\r\nContent-Id: <image007.png@01DC31E9.D9707880>\r\n\r\niVBORw0KGgoAAAANSUhEUgAAA+gAAAPoCAYAAABNo9TkAAiC2WNhQlgACILZanVtYgAAAB5qdW1k\r\nYzJwYQARABCAAACqADibcQNjMnBhAAAIgrNqdW1iAAAATWp1bWRjMm1hABEAEIAAAKoAOJtxA2Fk\r\nb2JlOnVybjp1dWlkOmVmY2E5ZDZlLTk2ZjktNDI2Ni1iNWU0LTA1Nzg3NTJlMDQ4ZgAACE5kanVt\r\nYgAAAClqdW1kYzJhcwARABCAAACqADibcQNjMnBhLmFzc2VydGlvbnMAAAhJo2p1bWIAAAA3anVt\r\nZEDLDDK7ikidpwsq1vR/Q2kDYzJwYS50aHVtYm5haWwuaW5ncmVkaWVudC5wbmcAAAAAE2JmZGIA\r\naW1hZ2UvcG5nAAAISVFiaWRiiVBORw0KGgoAAAANSUhEUgAAA+gAAAPoCAYAAABNo9TkAAhJEElE\r\nQVR4Ae3AA6AkWZbG8f937o3IzKdyS2Oubdu2bdu2bdu2bWmMnpZKr54yMyLu+Xa3anqmhztr1a9y\r\n1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVX\r\nXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVdd\r\nddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVV\r\nV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVX\r\nXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/Xej\r\nctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVV\r\nV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVX\r\nXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXV\r\nVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVV\r\nV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13\r\no3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXV\r\nVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVV\r\nV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV111\r\n1VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXV\r\nVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9\r\nd6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV111\r\n1VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LV\r\nVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVdd\r\nddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV111\r\n1VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX\r\n/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVdd\r\nddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny\r\n1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVX\r\nXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVdd\r\nddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVV\r\nV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVX\r\nXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/Xej\r\nctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVV\r\nV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVX\r\nXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXV\r\nVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVV\r\nV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13\r\no3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXV\r\nVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVV\r\nV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV111\r\n1VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXV\r\nVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9\r\nd6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV111\r\n1VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LV\r\nVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVdd\r\nddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV111\r\n1VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX\r\n/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVdd\r\nddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny\r\n1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVX\r\nXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVdd\r\nddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVV\r\nV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVX\r\nXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/Xej\r\nctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVV\r\nV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVX\r\nXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXV\r\nVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVV\r\nV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13\r\no3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXV\r\nVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVV\r\nV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV111\r\n1VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXV\r\nVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV1111VVXXXXVVVf9\r\nd6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LVVVddddVVV111\r\n1VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVddddVVV/13o3LV\r\nVVddddVVV1111VVXXXXVVVf9d6Ny1VVXXXXVVVddddVVV1111VVX/XejctVVV1111VVXXXXVVVdd\r\nddVVV/13o3LVVVddddVVV1111VX/B+RqjYCU1DAAGBDuenM/ac5VV1111f9AiKuuuuqqq6666qqr\r\nrvofaH3ptxnHJ2q+9a5E6YGACLBwNpon5KTS232VMmnTwGQrQTYYW4gQhOQiEQKDSz/nqquuuup/\r\nEMRVV1111VVXXXXVVVf9D7FerQFJSkAlSomIUltrfUvXhFQoawkXyYIGNDuzZaqZYugEM0eUIllS\r\nNqcn5yQ0FkUWaDgbbinSceEOc/phRARXXXXVVf9NEFddddVVV1111VVXXfXfbBgGZGQZ7ALaNpxe\r\nLY92jg6PjrX0qSlzozmb8ZiZ4zSOQ9oHUtnv+7qeLzb6xWLjWKaP7+/tnVgtlz2hSRGt63otNhZj\r\nrfUopFXfdcO87/f7UvYkDm0ftDYeCI0inJnYCeB+Pueqq6666r8A4qqrrrrqqquuuuqqq/4bjcOI\r\nKDIj6eykODGNw0sf7O2+/DSsz8wXWzuln508OlptXrhwweM4DOk21K4/2tjcvLvUeq6UqMM4XHfr\r\n059xw+6Fi1vHd3Z07TXXTIuNjay19vfce8+xf3jc4xfjuPawXucwrI11tLW1feG6666766EPe/hT\r\nHvKQh/7p1tbGE9u0vthaTqGwwf1szlVXXXXVfwHEVVddddVVV1111VVX/TcZh4F61DFtDuHMXoqT\r\ny6OjFz/c232D2ax7ucXm9s5yNezc+oxnHH/6U582u3DunMf1agwYZxsb65se/vDbX+KlXursrU99\r\n8rV/+Pu/96Acx43XeM3XXj76MY+5uLm1Mzrb5lOe9PiTv/3rv7bzjNtu6yzJNq01xmH0er2aVqvV\r\nEKXfu/GWh/zdK73Kq/7cq77aq/7eyRPHn74+2juIWnN57yHHbrmGq6666qr/ZIirrrrqqquuuuqq\r\nq/7fs022JmMkYRnbYCMJQLYJhaVAEgAgS+LfYhoGsi6JtpCdG+Bbjg4PX/Jw/+BVt7a2X6l05aF3\r\n3nb7xp/8yZ/Mnn7rM+p6WNPWAwe7F7137jwX9vc9P3nq0ju/27ssf+nnfvbYiePHNl7sJV6Mbra5\r\nfvM3f7PDo8O98sd/+Lsbf/oHv98dHhxovthkNlswXyzY3Nik63uQGIaBc2fPc++9940HR0d3POih\r\nD/+9N3qTN/2p137t1/7jCJ19wve8Wz7ynb/RbVzQb8+56qqrrvpPgrjqqquuuuqqq6666v+UcVwh\r\nkA0gACQBAAKMHE4lxoDkNAbZBLgIqkK9UJfOyHQISdKAWGNGyQ1ogkTcz30/518yjQMggbHdgx+9\r\nPDp6k72LF15pc+fEo7pabn7i3/3N5p/84R/rvkuXGFuyWi7Z373Anbfdxvl77yNV/Hbv+q57j3zM\r\nI/nD3//dndd+vdfVXXfezXq9piviztufyu7FC+zs7HDtddezmM9ZL9fcfdc9nD97lsODPfq+48Tp\r\n05w4eZqun3Px/AVuu+P2w6PV+Pev8hqv9SPv+97v94snz5x6xrg8HFIzS82z+Zyrrrrqqv8EVK66\r\n6qqrrrrqqquu+l9vGtfYCIEkcAoowgXAtgFACWqmYZu0wcimGM9stkupJ4yuPTpaXn+4XO2sVqvq\r\nNnUlirq+350v5vctFosLXVcuCJ+180AwYRKsYb1yP5vzgozDGhvASBTwNeMwvObB/sFbbu4cv6WE\r\nTv7Nn/7R4s//9M+ZKEiFg92L3HvvvRwc7B3NFouj0vftMY998eW7vvu77a+G9YnFxnzraU99crnn\r\nznuwG09/0hPpq7jlwbdw0403wDTy9H/4a5761Fs5PFyiqCg6Lt59N+vxiNPXnOChD3oYNzz4Ebz4\r\ni73Y5tOe/vSX/d3f+NWdi/edu/YjPuZjfuK6G65/wnS0dxC1MCxX9Is5V1111VX/wRBXXXXVVVdd\r\nddVVV/2vNo1rDBIGCKnUiLJhfKJN47FsLW0mYEKxUsQ+eCkYjZXpHnvbihumqT3y1qc/7cWecevT\r\nH310dHRLRNkopajWolCoROz3XT3bzxd3bR8/fuup06f/6sTJE0+Y993ZNk0rSS2KcNpdN+f5Gdcr\r\nACEE2gG/6oWz5z4AxWtvbW9vPPGv/7J7whMep0sHa+695z4unLvPd9x++x7BnW/2lm/5+Jd6+Zd7\r\n+p//8R8fPOJRj5pPLV/szrvuernN7fn1IbR7/jx//ed/Rq6PaOs1sxr0JHv7e+38xfMHs8X23g03\r\n3rjc3tnKa25+0PbG4tixv/nLv5z93V/9eZd7l7ju+ut58Eu9DDvX3sDupf3lXXfe9bTrbrjpNz7s\r\nIz/6p2558IP/fNw/f1j7zqM3mC06rrrqqqv+AyGuuuqqq6666qqr/p+xE0AYDIC5zACWzTMZY0jz\r\nHGQDSKAoiAICEIB5AEn8Z5nGARtJAJaiziSOHx7sXbt78fyDV8vh0ZJunM1mbTbfWCHWKe/N5xt3\r\nbmxs3lVLOWfb4zgex7756OjgZf7kj/7wFe94+lMfdvODHnTi9DXXLeazPpyN9dGhhtXAlK15yiGj\r\nHEXfn19sbPzNYmPjd05fe82fnz59+hlueUloBCyBjbt+xv2mYU3pek3jIDsXUjz26GD/Xc7fd/Yd\r\nt44fv/HsXXfyuL/+G1rtecLjHs/Zu+9ql86fu/XGW276rbd+l3f545Nnrr3jabc+9fyrvOIrX8o2\r\nnv6LP//Tt1Apb6fg4Y/727+OJ//D37I+OqQNI/u7l1gdHRJRDq9/0EP+9iVe5mX/9OR1NzzhYP/o\r\n3OP+7q90/p7bHrF96prHvtbrvuGDZ7W/5fd++RdO/eGv/eoGBR71Ui/Ji7/iq7lfbBw97vGPP9v1\r\ni9//gA/80O947Eu+xJ+PB7uHLhsUgbG7xZyrrrrqqv8AiKuuuuqqq6666qr/B6ZxDSBzmZyWnWFT\r\no5Raaq1plzaNxaYISaIIhSQUGGi2J6OmCCNZKEOkUBpn5tSmqTVQE7IxIM9nM/4jTeMasEDYlFq7\r\nzf29vVvuveeul56m4SU2NzZffGNj82ERcXJ/b7fde9+58eDosF3au9TGKfeOnTh5+8Zi47bt7e3h\r\nuuuvPxXkLb/xK7/4sKPdi9e8yqu9er+5vaXbn/ZUbn/KU7jrtmdw/t57GQ6PoCvsbG5x+ppruOaG\r\nG338+pv3dk6deeLm8Z0/vOa6637v2PHjfw26F7RWRJMEtmvXMw0DxkSEMlvfWj402/SWd99667tt\r\nbG8/NkX5rV/6ZdYtue3W2zh/9j7O3XfPbQ958IN/6MM+/uN/fP9oec/ttz51etXXeq31fNYNU5uO\r\nHR4cvslf/Nkff8hv/8avveztT32KnEkfwXq55NLuPvO++hVf63Wf9tpv/vY/+DKv8Io/V8WtwBLw\r\nXbffuvXrv/TzN//94/7hpR/0kIe9zCu9/Mu/1N/9wR+82A9+67cdP3vxPh7ymEfxKq/3Rpy47rr2\r\nhCc8fne9bL/24R/1sd/x6Bd77J+NRwcHLpspD+4Xc6666qqr/gMgrrrqqquuuuqqq/4PG9ZLbCsi\r\nQIBdbGYRZS5pa7lanjg8ODh+tDxamOg2tzbrYr7YkGK7TdPmar3u1uu1pmnKru+mxWKxVsSwHoYc\r\n1mtlpoHB6AjpcGOxONje2T476+u9bWqHMqONpbQdLOZz/r3G9YqMUGSCs5ZStu65556H7F288BrH\r\nT55+teOnTj9svV7f9LSnPfnkvXfdXk+eOMFNtzxs2jl23E95ypPL7/zu73JsZ3voazlcD+t25vSZ\r\n+TOe/tT5vKvda77Wa+r2pz+JX//VX+Epj38y03Kkqx2162itsVyvmY6W9GGuPbnDwx72cG562KOm\r\nEzfcdO+ZG2/4yzM33fRL19xw0+/Xvr/NcCipIRsLgMlJV2pM03SNnW92/q473nk8Onrl49ffsPUX\r\nf/iHPOkpT+f87i533norZ++778KN11/zkx/8ER/xHY9+6Zf/h7P33jmdOn265jRUw8bUxof8yR/8\r\n7lv/2i/90jvccfsdt7RhzXq1pmTyyIc+mM2tTRbCf/oPTzpY99t//SZv9bY/8XZv/7a/vpjFM4b1\r\nejmbbaubzfqj/YvHfvJHvv/Bf/VXf/u6r/Hqr/l6G0Uv+z3f+R3HHv/Xf8E1153htd/qbXjoIx/j\r\nP/6jPzmX7n7tkz75U77r+ptv+rPVwe5e7WZ2BH0/56qrrrrq3wlx1VVXXXXVVVdd9X/QerUEkARg\r\nwEXQ1647sVqtbjx3333Xnbv3vmtWw3DtYjE/vtjYrIvNzVCp83Nn7zt15x13XHv+3Pmt2az31uaG\r\nI0pdr9czSbFeLX2wf0kH+wdlvR6ENC62tw5Pnr5mt+9n5zY2N5543fXX/+WDH/LQJ+xsb909je2A\r\nzFZU3EgW8wX/HsP6CJBwlkDbe/t7N126dOmVz5w+83rrYXjpv/+Hf7jmrjtu277h+uvqwx/xKE5e\r\nc5339vb5u7/5a/3RH/0Rd952G5XGi7/0S/LYl3hx/8Nf/rVmfeWVXuPV+bPf/11+41d+GQuuO30t\r\n2xvb1NozDBNRKy6Vg8Mj7rzjNu6+83bUBh5y04289Eu/HNdff93BdTdc/1fXPvhhP3PdQx/2m5s7\r\n209rLQ8lNWOk4ohQZs7SfsWDSxc+/Pztz3iN6x/0kGvuueuu+L1f/w32x8YTHvd47rrrroPNzc1f\r\n/5AP+9BvffXXe4M/Wa4O9ossoU1Jt7QcX/lv/uLPXus3f/mXXu6OZ9x282q96tUahDh5+ozvve0Z\r\n5REPe4ge/vCH8ud/8Vf8zeOf1k7feMs9b/F27/ATb/nWb/EDIT/ezWsjg9jcPt79+e//2k0//iM/\r\n/EbX3nDzOzz2xV7i5X/zZ3968ce/+StkX3nNN3lLXvylXjZ/93d/754TJ6/51Y//hE/8zpPXXvsn\r\n5DhMbaTrN7nqqquu+neictVVV1111VVXXfV/zLA+AiwQ4IKZR6kn1qvlLbc+/Wkvfva+e18S+8bZ\r\nbL517MSJxXyxmEmql3Yv1ic/+Un9pQvnNw4ODrYf9rCH6yVf6qXWx44f18He3uJPf/8P5n/9538W\r\nypGt+Yx0slyusWF1rjoO99tND37oUMZ4lXtvv/VVDnbP/9EtD33oH914wy1/V/vu3nGcxiBYD4ON\r\nmfcz/rXG9RIk2RlIm63lg+cbWy/Tzxev9bi//vNX+Nu/+7ubHvyQh9Y3eIM3oXSdn/jEJ+inf/bn\r\n9dQnP5n77ruXWoJrTp3iluvOcNO1p/mT3/kt3XjTTbz0K7w8f/Vnf8TjHvc3vNKrvgJuyZ23PoPb\r\nn/EUpqM1wzAyjI1GsH3qDDc/+EHc/PCH8IynP42n33Mvd/3u7/GyL/3SW49cDy+/HobZemr1xoc+\r\n5JePnTz51NZyCeRBE1s1I9PXrFdHr3HP7be96rXX33RmalP8/Z//GernnL3zNu66554pxF+/4Zu8\r\n4Y+9+uu9wV+u18tDOdN2KMpGOl/1yU943Pv97m/+5ovdd899fd/VVmJ297haX9g5tr35ju/5vrPf\r\n/73f3fr1X/zpnVUb46GPfjR7+4flGXffceOv/NxPvvPWxmx4kzd7s+8a2urpgUdwnrvvrunlX/0N\r\nbn3wQx70S9/1Td+w9du/+HNnXvX13/hhm1ub3S//9E/yCz/1kyhqvMqrvPK1v/Vbv/Mm3/ot37L3\r\nyZ/5mXcS3a2M6xzGib6rXHXVVVf9O1C56qqrrrrqqquu+j9ivV5SaCQSWJAdihOt5cPvvefux959\r\n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\r\nEi/1MmdPnbnm0nq9OnbP3Xfd+Id/+Icnn/bkJ27QRrZPnubC2XPsnb/ARg02NmZsx4Lb776b1WrN\r\nsTOnueWmm3nwLbdw5+23c+Hee9i7eJEn/s0lFpubPOzFX4qXf9VX5/GPfxJnj5YsH/+4ODi8dFMb\r\nD9+yVu1vbG1dWmydeMq4Xo0WXq2XzGcLnts4rrmtfiy3tK9UttwyevS5229/rUv33P2qJ2+85UF/\r\n+md/cvzXf+VXytkLl5hWK6C1F3/JFx9f7GVfpm0cPzl2/SzH9Wr2l3/8R+XXfvk3ed23fLM83N9b\r\nPu7P/+zWd37Xd/uNx7zqazx+/+jw+if81V+8+lP/4W9mF3cvcee5S8xLZefYFlKwWh7ypL/6M+56\r\nxq281lu9Pa/29u/KxXvu4sl/8Yc85c//iOXeLjsbGzQ37n3qE7jlMS/FdTdcz7133hlPf+ITHvon\r\nO9tvpVL2H/Kwhz1p3s9f2nD9cn8/7rvnTu67dIm/+uu/Z/9oOb7sK77in7/BG77e7wGHUrFcsJP5\r\nfNHfc/edr/B7v/lb73y4d/DYG266iYPVOg+Pln/3ki/x4r/wNu/xvk8Dcntzx62tcv/Spf2XeK23\r\n/PM777r9537jJ3/w5u3Tpx7zju/x3vzQd30H91044OTOJqtzhxzb2jjxJ3/8x2/1sIc9/O9f5TVf\r\n6/xq/9weKn7ILefBx3zu6Y+bbnjIY5/4Zu/09j//qz/yg6+42Ny4ZbW5yXDsBLfd8Qye9vSn82KP\r\nfsQjfuFnf+ZNXu41X/NvFhsn/mYahjYMa/p+xlVXXXXVvxKVq6666qqrrrrq/73l0SGtNb3a4Y9h\r\nlTqOy5N33v6Uh+6dP3/z5nzrzI033nDNfGPjVGtttlyuODg41PmzZ2e3Pe2pi4jQ6euuXd7yoFum\r\nUsqJe++6/aanPPEJ150/e9/Oej30USLuvece3XnXXVy6tO82TdN8Nlueue662x79Yi/1J6/wyq/y\r\n+w9+8C1/mdN4W2vT4Xy24OjwwBubW7xIDG4WQiXK5jAML33rkx//lk/4qz97tVufeuuxvf0jzbuO\r\no+XyYLPf+pPXf4M3++lXefXX/DMix2G9nrXWji+PDl7qF3/qJ17uKU+79dhDH/rQ9bXXXjP/mz/9\r\ni7j9ttvGBz/kQedPX3tNPuXv//aam689U1/xFV+BW5/8FJbjxMWzZ7nummt52Zd7Be6+5y6e8fRb\r\n2du9wPriJf72j36fre1jzI+dQRsbqJ9z673n2T/cv355dPg2s+2tcy/2cq/6I4p6B85m2zyX9bDi\r\nyKlbpq8Euy+l3HTxwvnXuuvO219t58SpB/3Bb//msT/4/d8rjcL5+876mmNbu2/xFm9x72Ne6mXK\r\n0TBu27k5rI82/vJP/6z79V/9bV7pdV/36PBgf/2Xv/fb9739O7/Dnz72lV/1L4ZpOrxw910Puu0J\r\nf7+zXq3aqmnvxV7x1dYHFy909z3577fmXa1dWbA1nzHs7fNbP/pDvMzrvjEv+5qvxYMf/khe4hVe\r\nhT/7lZ/hKX//9yzmMyoTdz3pcTzmVV+bLsTBPffUJ/3DPzzixoc89LUf9ZjHHgc9prVp+67bb+X8\r\nhQs84QlP4rbb7+RhD3/4Ha/ySq/wJ2euOXPu8OCicSoz6bo+CN30h7/z229y69Oe/mrHTp6qEbFc\r\nHhzce/r06Z9/7w/+kD8GBsAlJlwTDvfaajU/+4bv8mE/ff7sXZt/9Zu/8qFR6i3v8M7vwC/+8I9w\r\neOmQExsbjEdHbB/buuWXfuHn3/zFX/zRf7O1vfm4bNM4TQ0Cdm68htX+7vLFXv31/+7ee+76k1/+\r\nuZ+97kE3Xtevj9ZMtfC7v/1bfMD7v1//lNv/8uV+/id+8pXf5l3e8Ym17w+n4Yirrrrqqn8DKldd\r\nddVVV1111f9rR4f7OBuASu26/fP3njh/750vvtjcfJWHPvrFHkZ0J+++685r7vibvzh59r57O08t\r\nNzY3c7ax2ZV+1keIcXU0XrxwTnfcduvWrU950vaF8+fr3qU91pf2mIYlUylszjtOHTtDqV0d1uN8\r\nb//C8d//jV98yN/8+R+87Cu/xmv+zmu85uv96jXXXvsX69XRbik1V4cHVinM5gtekPXqkDeZn+KX\r\nVuelKDPjhzzjyY9/48f/1V++6pOfctvxw6OBUvp2uHvh4ulrzvzhu7/P+/7EQx7x6D/d37+0S3As\r\nFDdmm171N3/pF17vKU968kMe+1IvN545ffziX/zO72w89QlPOXjUS73k3731u7zrnz/4EQ9vf/yb\r\nv/I6T/3rP3nZ8/fesXPi2A6v9nKviIv5i9//ff7hL5/Bw1/8JbjxIQ/j6U95Cnc89amsD3c5vHie\r\no0u7aLagO3Etm8fPcOSOJz/11oeA32E+37z34S/9Cr9A8/mW6eV6yWK2AGA9LMnWNC8BUBVxerlc\r\nvvLtT3/6684Xs4f8zZ/80Yk/+e3f7qfWuO2u+9rm1vZd7/we7/7nL/bSL33+rnvueQzp460NG3/5\r\nJ39cfuPXf5fHvuzL7Lut7/7j3/zNu97yLd/kCa/wGq/+98M4rjK57rZ/+IcHHe7uzkfi3MNe4qXP\r\nP+LFXuqeu2+/7Wg42L357NOf/FLXX7vYnm8c49JeYdaJv/vdXyPXS171Dd6Eh77Ey3PdTQ/i937m\r\nh/n7P/lDnI0y7XPvU57Aw1/+VXnKMHLTg2/uX+wlX/LBJeosMx+0e/FCvfOOO7j7rnt48hOfyslr\r\nrh1e9mVf6u9vuuG6vwFG7DA0FMw3jm38w9/82av++R/9yWvXrltsbW9PR3t7uxuz/tff6u3e5tdO\r\nXXvDecDj+ojZxkkAH+6eo5/PWsBdb/keH/VDt/3D317zO7/yc+/7Hh/6kcdf+eVfhl/6qV9ktlNo\r\nNjGuZ/vn7n6FX/ulX36Nt32397pzXJ8/N62P6Oab5AihdE6682Vf901/60/+9C9e5mh/7+EPfvCD\r\nyNvu5PDwLv7u7/6eRz/m0Tf+6q/96su/6Vu95a/MNuZPN5HjMND1PVddddVV/wpUrrrqqquuuuqq\r\n/zC2eQAB3HXvWd13713Mu0rX9ZRamM1nWiw2iAhCckhIIkIYyGwIaTafE9HxAMY2TpCMgvtJ4l9r\r\ndbgPGCRFRN2/tHtyWq9e7OYHP/INotZXu/22Z9z8t3/1F8ee8qQnbp47e2+d95VZ1/n87i5Hy0Mt\r\nNnZ423d8l3bixHH/7V/+WXnG05+ivb1LNIvadRw7dYKqY2QER4dHrJdHZCw5eeIUD37QzVLpd+68\r\n886X/Z1f++UHP+Ef/uFRb/Smb/6TL/+Kr/zbznb3JA1RqsdxdNd1PLfV6ggEv7g6Jylq6WbX3fOM\r\np7zeU/7mL9/gaU952jUH+wMupe1eunj7sePHf/Od3v09fu4hj3z03x0eHlyMEol0MqfpMb/za7/y\r\nJn/5l3/9Yo98yZeZTpw4ceHv/uD3l/fcceeTXu11XvsP3v593//3rn/QQ568PNwvr/tmb/3ERz7y\r\nEW/5B7/ys699++OfcP2dj/trPeTFX5KHPurR/Nnv/iaP/5Pf57Gv8Iq89Cu8DDc99GE85XGP4/an\r\nPpnV7jlm5YjV0QHLg0ucuekh+MTJuPUZd77kxu/+1judOXnmrmse/PDfb7laFsnrcQkWgBQBqIJO\r\n2Lzs7U+79c1zvX6ZO25/xsaf/97v13GcdMdd940u9bZ3e+/3+q2XfKVX/bNz5+7bjIhbpmnd/8Wf\r\n/GH5zV//HR70yMe00yeO7f7+L//y3778K7/Sb73Om73F7aNptfbXPPUf/u6Rtz7lSTdeOlwOMd+6\r\n96GPffFn3PrUJz/p9d7wDR/3qEc/YvuHv/Yr3nO5e/F1z+xsdDqxzfriLttbmzzpL/6QDnilN34L\r\nTlx3I2/8Lu/DbFb4i9//PWZ9x4U7n8rZa6/jYS/x4jzowQ8q1113w3Ut25k2tVN33X47F8+d5/Zn\r\n3MFybLzOq73q+dMnT/ztqZPH71gvD9J2GLvvN3R0uPuwP/jd33uDi7uXHnri+DFoTQeHR097rdd7\r\n7Z97zTd403+48OS/ze0HPZx+vsn9No+fZve+uzl25rrcPnHNXW/5gZ/ww1/+mZ/40j/+gz/62u//\r\nAe8TT/iLv+Fpt93Nietv4L57z3H9zTfd8Hu/87tv9qqv9Zp/fN1ND949WF4ahcAB4GkaDo6fvumv\r\nXvV13+hPfua7v+mWWx79Ev25i7tck2f4u7/9W17qZV52tujjZX7+J3/y5d7u3d/1jq6fr6f1iquu\r\nuuqqfyUqV1111VVXXXXVf4hhdcSwOlTXzzlaHsZdd93VD+thtrGxUW649poopQQgo0ASJkRYCluk\r\nSSJqzLrZHNhubdo5Wq4318N+Xa1W4WwuJQ52do7dvbmxdV9r0+EwrMZQJILV8sjzxQb/KhJQJGVZ\r\nr1fHa62P2bn+xte9cO6+N/jrP/3jxzzp8U+Y7+3ts16tmHVzDg4OufPwgpobD33Qg3iLt35bFptb\r\n5U//6A+4845ncO7ee1mv1+ycOMlqteK2O+/iwrlz7B2sGFujC6ieiJzY2pxz88Meyc0Pf3TMHrp9\r\n+mlPe9ob/sD3fNfNd995x0Ne/43e9JcXG5v/MA3DvrqeaRxdu47nYKPZBl4fhUo9cXBp95We8bi/\r\ne9Pbnvq0h53fPaD0C/YP9nY3F/Nff9d3fZcfeMxLvtQTD/b3lxGaJBWjY7/z27/1Mr/9W7/3iDPX\r\n3zTbmC/iH/7kj8ule+59wmu/7uv+zNt/yIf/0YjuO3v2nlXfFdXo/nxx8oZ8uTd469Wpm/76te7+\r\nu7+44Rl/+Xuz61/yVePt3ueD+PNf+ime8ud/wn133clDXvLleblXe3UWm9tcuPtuzj7jqQz7B7R2\r\n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\r\nvtX58+dPvvEbv5kf/JCH/fY0HtvHeJoGau1Zr48YJ9OVCEW56b5nPO2Nn/w3f/Had911z8lWZqh2\r\n7ejS7t+//du//U+8wqu/9l+tjnYPJM8UsSXFI+6+8+7X+L3f/O3XoXTXXn/NNctzd96xvu3JT/mH\r\nl3ixR//Ie33cx/3GGPWCp4OqnDb7urkQnDl/9z0P3jp2YuvS7oWt2576pMPrbn7I77zqO33wXSev\r\nu/nmv/q1n37lderlX+Z132Bx6fxZ7jl/ljuf9DjO3XkXL/c6b8irvMEb8uCHPoTf+vmf5b67bmVD\r\njeWFs1wsBWjX/sWf/tE73HDLLU97xKMf83OHB5f2Sq0RUWar1fr0wfLoUWfvuuNl7nry428Yh3U5\r\nf/ESq2lcHT958k/e/l3f9ftuftiDnrw8OrzxxPFjj0bxyo//m794uT/9/d+7bu9wqYc95sXxNK2e\r\n/tSn/f27vfd7//orvvrr3n7bbU9rs1l/6uy9973iM5785Jds07CxdexkyVJO3HvH7T5z3Y13PPbF\r\nXuq+C5d2hxJwsHvx/Gu87pv+zKJNW7/wvd/x0WMbHzRbdOzuXmLj5CmOnTzOb//Cz7J9+gwPffhD\r\n2Dp2kld/u/fmD3/pp/mHC7/Jwx/1KGpXaa0xrJbs714gs7G7u891N97SbnrQg2678/Zn/N1Lvvqr\r\n3rE+ujSCC6h2s/nWX//ZH77cbc+49aVms76Gzd1337O6+aEP++3XeeM3+1Ng7BYbbiMstrZ5fra3\r\nj7M83AfIrtQ73+m9PvCnv/YT/+Zl/+pXfuXFH/VyL89v/8wvs3PyNPfdcw/XXnttd9czbn3Mb//W\r\n7z767d79wc8IuqWrmabJRb1VhtFtetojX+U1f/pPf/e3XvyOpz/9tU7snIrd2YL77ruPe8/ex423\r\n3PRiv/2bv/7Kr/9mb/LH6tpFNXu9XjGbzbnqqquuehFQueqqq6666n8129wvx0FqDUVCmQMBo2m9\r\nEBDiMmdjmhptgghhJiwjTF3di1nD5s3UugAbJAArOl4UtmnTgBRSBHbD2cDIGfqDTz4ZacelS5cU\r\nOWm+MSdEOMcYoUYpfVe73s5wNkBdRMwiymKaps1Luxdm+/v7eXR0NK7Xq0FoubW1c3Td9dcfbm0u\r\nlsAqMwe7tYiK3ZCwVPmPdHR4CRzgAVME3pDKwxYb2y95dHT44k95wuNf+vF/+7cP3T/c2+iD7vBw\r\nNbvtzjvr3/3N38xuuukWvc3bv/3y5V7hFZfbO8f09Kc+ZXHvHbfOL95zW5x/xpM5d/tdHCxHStfR\r\nd5XFYsbW9g5bx3Z0Ymdncd01px6yWg03PPmv/+LF73n6U17mZV/51X7npV725f/U+LacpqOu1hyG\r\nQ9cyJ0rhgdbrI7BBElCJ7vSwPHiNJ/3lH7/N7U98wkvsHSz7x912F7sXd6m10M1qvvTLv+zZN3qz\r\nt7j7IQ99WJnadN2TH/83p/78T/+U5XLFwd4eB+fOcunO2xguXuDkyROcufmWPHPLg/eHcbjrrtue\r\ncc/Zi+eOpvN3H1/ce/dDds+fPXXLwx7ZP/ihD9Z1N93MdTc+iCc/8fE8/q//jNWw5MVe8ZV58lNv\r\n3fyHv/2r11qvj6a3f9t3WN14y8P+YFwfLW15vTogbfcdsmN7/9Luazztb//yTe+6/Y6bD6ak295Z\r\nHu0d3PGwhz/8Z9/4Ld/qD3Ja7go3hSzp1Gq5fJM//f3fe+uLBwfXnbn2muHo/Nn1kx73D/funDr1\r\nU+/z0R/7a7OtE2cPd++zPZWQuq6rN+5euvhy99137/Unrr/+0jOe9tQzF++95/CVXvXV/7TU8oSX\r\nfJO3K2W2eNIf/9LPdCX6V3jZ13jt8ts//zOU6JDMH/7sT9G95dvzkq/6ykSIX//ZH+PS2XuZjwcM\r\nywMuhZn3Zx/zO7/5a+924sw1t54+depP1+ujslwdXXvP3fc+Zmtn+5XveNLjX+Zwf2/H0Xn/aGVq\r\nvfV13/gNfv41Xu+1/uhP//RP1g+65ZYT/Wx+/d133fkyf/oHv3fD3ffcx7GT1+Q1Z645+vM//P3b\r\nXublX/lX3urt3vkvzp2792gx25iZvP7pT3jiYy/tXdqo3ZyN46fn587de+xof3/3dd7jde4EhpM7\r\nmz44XMLGjg+X6wsv/wZv+XNPecrTX/yPfvUX3mV70W3064F7br+dhzzyURwM9/I7v/TzXPPe782x\r\n48epG9scf9hjufZpT+fhj3wkLcWwPuKpT3oCly6eZ7lcsXe44sVe7THLc+fPPsVteuLJM9ftHVy6\r\nrxkFqD862H/s4//mL9/k4PDg4aeOnebw6BDV+ndv+XZv+1vABcCmsNia8UJJjAPIw/JlXulV/vzl\r\nXv9NfvOPfu7Hb7nmwQ/bOXHmGnbPX6KNI3u7l5jP67WP+6s/e423e/f3/OOyMVt5fdaUYxAT2Tq3\r\n9cXh2Jnr//qxr/kGP3/v3d/70uv1cOLYxoJLtfCUJz+Zl36Zl9657/FPeLnbnvTUR97yyIf9eeY0\r\nKSeuuuqqq15EVK666qqrrvpfbRoHELKNsVxLRJmFpNKQouDJSWkj2RIAkEGoIxJHmoCIKOE89mAX\r\nhWXa5DZlcwthbMZh7doFUscLMo5rpmkUgN3kqQXQlSi9SszWq+XGfffes7ler8p8sfDm9o4jokRo\r\nE3MszalhHK697alPOTGbzbnxlgelYPvs2ftO/P3f/93ObU9/2mbLVuez2Tifz1d9360iYrleDss/\r\n3D842jh2bP/BD3/E7Q972MP+4cSx47dO03BpHIcRlEdHB97Y2OI/SqiAJOgFOQ+VRwzD8OZPetLf\r\nv9YTH/8PD9+9eN91f/kXfz9707d6c/78T/6Ef/ibv2Xed36Hd3rH8TVf7w3G62+4yW0ad/7+b/+y\r\n/+Pf/W3++i//grtuvZXjBMe2tih9R5nWLC+s2c/GHcPAenmEp5HZxiY33Pzg2bUPfejD95Mb//g3\r\nf+3lLt75jD982Vd59d/cPHXmj47Wq3tqqaMyWa+PPJttcL8EJAkoUtlq8FJP/9s/fYvb/u4vX/Kp\r\nz7i3f9xt91EXCzZ2tulC+Xpv9Ib3vsGbvPnj+vn87DgMN9/6tCfc8ke/81uxXDUyGwfnz7F7z130\r\nETz6FV7JR3uXOFgO1qXD1Su/1us+/m3e9f1+6eDS7tOe/Pi/337Cn//xy9x565Ne7d6/+IsXf9j+\r\n/qlHvthLdcdPnuKlXvFV6BcL/ubP/4z9/T1e9jVek+Hp68UT/+6vX+vnIu59+3d9z3tPnTz1xPV6\r\nNSa2gHStqvGgW5/8xNd70uMf98ij9cjQSm7Wetfmov+lt3n7t/tV4J71epXClghLt/zFn/7Ja/zD\r\n3/3dQ48dP06ux3zKE59ybyN+7d0+4AN/6dpbHnbvxUvncrFYcHb3grs6W4Affuczbn3tvcPDzm63\r\nPvEf/n5nvjF/wo033/yE1XJ11zAsx5d8/TfdOzq4dOwf/vB3zpy+5eEPe6lXeBX++s//mO0TJ6hb\r\n5nd++kfZObHDI1/2Zdnfv8Dv/NIvsl4tma8PmJ06zf7eYXnG0572qr/zm7/5Om/5Dm9/62oY/NSn\r\nPPHRp89c9/JH+xdf6dxttz5ItdbDo9W4d7Q8fPGXfsk/eN03eaM/v+fuu3avv+5atra2fbC/f9Of\r\n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\r\nfmNj8eCHPCRe7uVfVtffdJPOnztbfufXf6miKI9+sccy39xiGgffd8+99d4779Tdd9zJ3v4++wcH\r\nLA+P2Codm/MFZWvr5EHXP+QPfue3Xurxf/e3r/AyL/dyv/Jqr/bqv3fyxDV37R1dHFtU20YS/xar\r\nowMsk05JzErU685fOPeqv/rLv/jmT3nCEx57eHjUXbhw/uztz7j1rxb9/O8v3HvX6qM/6sNnL/0K\r\nr3Cs1O5aPD3s7L33nP7d3/7N+se/8/tMR4c84uGP4Mbrb3AJ85Qn/o3u+I076W1ueOjDeMyrvAr9\r\nfM495+7j7J3PoLSJ0yfPcNOjHsvh3gXuuf1WVsslp256yNalrrzi2Z/76VP33Xv3iVd43Tf4icXW\r\n9hNymo6ilFxPawMSCKiKun24d/4lnvZXf/Tq95w9d/qew8bGidOkkmkcLrzmG7z+417vjd74IvhE\r\nm6abW5tO/eWf/NGxZ9x6Wz1+/GQ7uLSbT3/yk6eLFy4+9c3e7m1+5/DC2fL0v/2L1zp25vqHX3/N\r\ndazGsWvZHv2nv/pLb6kp1y/3aq/8O4Jzr/xar/tHD3v4I570Q9/2tU9/2uP+9t0Ojn77JV/2lV+1\r\nO3PdTbzsq7w6oYmnPPFJdIsNHvmox/DXf/7XN/zRH/zh69zy4Ac/5WVf8ZX+YjWM+7i02vXbtz/p\r\n7x9z99OfcnOUwqWjNecv7V687kE3/dHbvP3b/c3R0e4hZNiUUsvi3nvueonf+/Vfe+X1ejixdewY\r\nF8+eG+686+5/eJlXePmffo/3/+C/OzzcW0pGUgB1au34ME4PbcvVo/fPn7vm+htvPHzyX/z5sLWY\r\nP+mlXvZlnjoMy8MSaqtbDz07ted67YOe9kpv/vY/+lvf8XUP2Tt/9i1ufomXq3c+5Rmcvesurrnx\r\nRm578lP409/5Pb/BW7/Vfa/0Wq8fjMOZx//t38Tu3Xfx2Fd6ZfbPXwoNw8N/8Wd++uVf743f4M6H\r\nPORhN+1dOP/I25/0+DOEWA/DwcHR8m9f+bVe/SdvueWWvz/c28tZP1vUvjv1uL/885f7qz/+w5sv\r\nXtyllBmPecmXbnfeffcd111/w2+/w7u+218fHlxalohaa1/P3nvvQ87edftjQtTaz5iyMWXm9slT\r\nT73lEY96GjDVxRaZCcBssc242qcsMHDh1V779X/9b//491/rrqc/5dUiCtubPffdew833nAdd99z\r\n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\r\nVmXCq9d47df7/QgdHR0duDkpCl6Qw709UPJMs1LioX/2J3/6Rn/+p3/6insXd4/de9d9t993732/\r\n9H7v/z4/+QZv8lb/cOHcPYeSFS7zIm7689//3Tf4o9/49Td6xq1Pv7b2C7ZP38AjXvKl6bvCdPcd\r\n7D75KRu7d9/7kKNLl65P58Ucp0NJu4958Ze772EPf8xdf/nHv3v3H/7CT7/TPXfc+TLHrnvQTCT3\r\nPO1p3Pp3f8/1D344N7/YS1Ff+TV58t/9Bft3PJXV/h7XPeZlWJVy3W1Pecrrbm1vPbXrZxdOnrmu\r\nKcpj7rvt6W/8pL/9m5dfjppFN2O9u8/mfLZ8tVd/tcdt72z/w2p1NBhOP+NpT3voX/3RH57e39vl\r\n4qVLXHvmNPsHB8sz19/wJx/y0R/xB8dO33jfpb3dadZXalmzWh/s3/LgR/zOW73H+2z81Pgt86c+\r\n4Ykvd7Ra9fPZoiz6es3h3sXX+f1f/sU7r7/p+nu2txZ37+3t6sVf7hVvv/upT/rjrVm56bbb73nQ\r\nX/zBn5RXf/3X5jEv8ZKupa7/+i/+/OBwuTzbzcptx0+cvLQexvl6Wp666xm33jxOjZZtODxa9Q95\r\n2MMf/5Iv81JP2d+9z1NrpXTzzYtn73uFP/z1X3njZzz9tlvOXHdjTMO4vu32O+6+6eYbf/zd3us9\r\nf29LOrg0ruj7Tdarfee4Jkqv5XJ1LNM3OH3m8GCvW69WbG1t1XWJM7/6S7/04Fd/rdf4052dU4zD\r\nIfcLweohr+xcHqyvve6Wv3iZ13jNX/rjX/75R1zz4Idef/NNt3DH7Xfx6Jd6JIcHl7ae+Nd/9qhH\r\nPOYxz+j6/jce/ZIv82tP+4cnvOyFc3sPfdO3ffunLja2LxweHL7EUx7/99uKYGM259zd9/jmhzxk\r\n74abbxrvO3su+tliM+Gxj//rv32tC/ddvPaVX+3VeMZtt7NejuztXbr15V7uZX/2+htvuXXv3JNb\r\nt3Ec7EZZ+I5n3HrNarW8SRGxtb3J+tbbmS8WRGjv2PETe0C2BCGeh2F5OPNis8uSXLjlxV7mD//2\r\nL//itXb3Dh60mB+jRsfe4ZpHPOax3HTLLdgwTmNcPHcvd976NGoEe3u7nDh1hhOnTvP3f/Un9cSx\r\nzcW5s2c3Fxvb2xD9Xc94+o0Xzt774uvVcmNz5xrWqzW273j0iz32r4GL++PoRR7SxL+J28h8c4vz\r\n99053vTwRz3jQS/2kk+/cGH34eksJ06d5Gj/ACOu60u94/Zbr7/z9tu2b7z5Fk3D0uPREd3GBmCU\r\nDcN03U03P3Xr5Jl/0H0XH5osY3tjxvlzZ5l1j2XcP3j4X/zRHz7ioY965B86GQiuuuqqq/4lVK66\r\n6qqr/hfzesmIKZIyk6kl+3u7MYxjkdTPZ/OdrnY7e5f2tu++865jFy5e3J5ajrXvLu4cP7F73XXX\r\nH1xz6tSyRKzAY7axZZtsjJ0GEbVTRI0xU0PLaGmV2pU+IgqowGh7GtrUlJlFpBSgAMk8kyT+tQ4P\r\n9+mqGJtVuhIRMRNcEyqvdHh4+NZ/93d//ZJPe/KTrt3a2jiGXP/oD38fRVm/0zu+wx0v+dIvcy8R\r\nJ1bDcNNTnvSE7b/9sz/ltlufzvmz93Fw8SLjcs2x+QaPeKkX8/aZkxfGcTy/d+7cfPfcvRtdX/vF\r\nznx+7fETs5uufyn2Dpbce+99XDx/nihVy6PViTufccdDXvXVX1unTp0+jFq3SlePUXT86U95/M7y\r\n0u7suptvabc87OHjbU960vrS+bNnX+zlX+Gvt46d/L31MP5N2vdGietk5iHdNK5WNz/lb/6Kp/7D\r\n49m/uMule+/m7lufwcGlS2wtFqwHEydO5Oy6B92Zy8O/vW7WPWPRz3Z25osHW+WGoU2nptXh1tn7\r\nzpZ7n3ErZ2+/i9lixunrb6KO22xvbrJcBo3gcH1p/ri//9vXitLtH9/Z3n+Jl325v/Dh0bDc2/Xq\r\n6BLzjWM8t4Pdi6QaThSiL31301Oe9OQ3/Ms/+/M33t29dPq++84Od9xx51+/+mu+1ve8w7u991+f\r\nP393C7lK6mpXz/zNn/3pa//Br/36W911510PaVTtnLyecT3yl7/yS7zCa782++cvsnd4uPVXv/ZL\r\nrzSXn/xa7/bOdw4ldu0cloeXbHjay7zaa//smRtuOfitn/yRd3vSn/7xK5XZYnHdLQ9hdXTA4X13\r\n8vjz93Hti70EL/9ar8fdT7uJp//Vn3HXkx7HS77Ka9TVav2IJz/u8a9yyyMf85cnr73Rq+Xy1Z7y\r\nd3/zarffcfe2FseYpokph8NHPOyhf/7QRzzsdw6PDu6SPRhd+3d//dc3rqb1YhgGLl64yN7eHidO\r\nnNx723d9z8dd96BH33VwsNu6KoQdsYG18Hpc7z30UY/9rdd5q7c8qe6XN5/w13/74utpiK529F25\r\n7q7bbn2dv/iDP/yL132zNzpsw1r9rL/04q/0Sn/+uz931yMe/OBbjj/1qbeefPzfPY6XedVXOtw8\r\nduypLeLs7bc97ezLv9Kr/N2p06fPt8zte++848XOnz37sPV6HIdxulgU04s99jF/Mutnt+5duoSl\r\nOq1WN/7Jb/zq6//1X/z1Y+jnMe97br3ttimi/PFbv93b/eypa66/+8BmebTP/bQ4blCsj45Olszr\r\nDy9dPHnp3Lk4PDri8GCvPu22x99w4vobHvwKr/iylZ1TOM39FCJzJELZ3M6/7Gu//m8++a//9GUO\r\n1qu3vvGxL9Xfe9c9XDpYsnn8OHc/46lbd9769M2HPubRt9Wu/u1rvPmbPuXWJz/9ESevu7amuem+\r\nu++67tw9d8/niznpZBiGfMjDH743jGPDROlmJ8/ec9fLPf1xf/egne0t7Rw/wcW//nvU9webi/kf\r\nv8qrvsqfAEeL4w9xW++T4wqg3Hv3XcfGbFuzzU0W2zscHh2yc+I4wzQdbGxtHQDpmKE28tz6xTbr\r\noz3O3XuvT1977fLk9Tf99U0Pf8Tty7/7uwdFJjuLOZfWI8fPXMe1N9zI2BrDasXdd97OhQu7bPQd\r\n+5f2efQrvArroyOOzp/1Ncc3x2xeTFM7HbXozmc8/WUvXdh9WVp0i8Um589fZL7YfMKLvfRL/yUw\r\n7Mx6rzM5trHDv0W/2GR5uM/dTzvIUurFBz3sUX975xP+4VWX69XOiTPXcNfTb2O+vcFsc5N24eLO\r\nU5/65OtuvPmWp4BGClcYWhaXHLMuNu/cue76J/D4x73p0KaodcZ0cEAbzLGNxaknP+5vbwEWdeZx\r\nGvE4rum6GVddddVVLwCVq6666qr/xVbTwHzWa7VaM7Ys49QWmONCp5aHhw9++lOe8mKPf/zjH/Lk\r\nJz3xzP7upeMlYqvr+snEIaGD+ebmwbXXXX/2YQ9/2DMe9JCHPOO666+/b2tzYxlmbbdhbBNHh0d1\r\ntVx1Y7aaEX1Xu61xtT6xOjw4OWX2UbsL21vb9548fvzcYtZfBHbTuWw5jUVkqIJkO5GCF8XF8/vM\r\nNqDvK8PQVEuNkDYkrpHiZe684/a3+NM/+oPXubS/f03fz/Sbv/37PP2pT2lv/Eavf/jWb/1W9x47\r\nduL2cRqO9vYPTzzxCU/oH/83f8PtT386F8+fZVgumZWeG2++hc3tTe4+f37687/7h72Lly7dW6Xc\r\nmnWlFtVSdXpz3t10bGdncebUNVx//BQ3XHOa5XrNcrWeHvsSLzk+6jEvNosSx6Y2Xnv3XbdtPePW\r\np9VOoce+1EtnP5/7CX/xZ1NO070v8Qqv/De17/90GsfHg++K4BIEUrlnfXQwPumv/iwe9xd/ybn7\r\nLrA62OfsbbfSzbe58SUeyoU7n8FGKWyfODa+xOu/ya2z48d/o60P/+ro0sW448lPvPnwnjseulgd\r\nPvpE1UucfvCZWx7z2EdsrFx0+5OfxJ1PfDwH589ywyMezrFrbmBoG0hi7/zZxd/9zV+9fr+1c9vp\r\na689d/2ND3rq+tKFpjTPjwtEJpYqKtdfvHjxdf/4j/7wLfYP9h68PFpyx2233/vYF3/x3/r0z/nc\r\nJ3z2B33W8DFf9MGCoJvPTt3xtCe/zh/+2q++8+23P+MlDtetnrnxQUzDyF23Po0Xf/HH8NQ//iM2\r\nj58id7ajK3HTP/zR77/29vHtx73KO7zL3Zf2Li5LLXZ6aOvVXTfd8pBfevP3+IALv3/y5O4T/vLP\r\nXvfSvXfuHDt2huOPeXEOzt3Lpac/iXF5wGNe5uW54cEP4il/9qc84wn/wCNe6qUW/fbmye3jJ463\r\nzJ177njGyz7pH/7+2rUrhcLRcp+N2eK2l3yZl/nNpni8x2mxtbXR33P3fbccHR1d11S0PFoxjY3z\r\nFy9x4403jufP3efl8khbW8e9Xh06qum7DYZxSeOS4drzD3nYo3/j0qsePnh5eHTdM570hGv6vmPW\r\nd2U6PHrE4/74j974MS/x2PMnrzl9z3q1bLc84tFPOXXNDb939zOe8bCHPujm7Sf8xV90OydP5Uu/\r\n4svd9tqvv/Hnf/nnx+572CMf+4wIjS150B1Pe+rL7l26+CBFHY+OVvdub28+6ZGPfuSfHh4t91u6\r\nm21udn/1u7/xsn//F3/2ssMwLk4eP8XZ++7jrrvuuve1Xv8NfuXVXucNn3DHfXdNJzY3IHkmkW2C\r\nUsrqcO/UdLR/7eH5s1vn77uPYWzce8993H3nHRvHzpzamKYmAPNs89k2q9U+kplWR9PG1vEnvcyr\r\nv+av/tGv/upL9Nc/7DGnrz/NxfvOce2Dbmb//H3lr//0j6+96WGP6Inp0vEz161f7rqbJtAtrbWX\r\nuuMpTzy1Xq1i+9gx9vcvMd/YbDc+6MGHy9VKKfVTG6//hz/7k5e87667Nra2j/Pkf3gcy9XKm7P+\r\nSY999CN/6drrb7oXkzkeYWDj+PW0abk4PNw7ibMu5gv2Lx3glnRd57G15XxjcwlYbTASz08Ido5t\r\nAbR+Nr/rloc/+vF3PPUpLz2s1lvHdjY5OHeek6dOcezYcdbrgd2LF7jvrtvJYUB9T+06Tp45xT13\r\nPYNZ1x3cdPND7lhsbblNPjWM7cY7b3vGa188e/ah01QCFQ4PD1ePeexjHn/t9Tc/4+x6LzcdEPy7\r\nGLjmmg5g/4Ybr//bMyeP7d15dndnNl+w2Jwx68U0rKnK45fOnX048GeYEXFZv7HF+mifaRyps+7S\r\nDQ9/1NM2/vxPL/nS/umUqCQXzu+yc/J0f9fZe245Ojq4ZmNja19a24irrrrqqheCylVXXXXV/0J7\r\n5+5E3YI2TTqYJhlqrd2xaZoeedddd77YU5/0hIc87UlPfthtd9zxoOVqeWo+X2zOuroxrYb5/qVL\r\nsR5GRkC1+s6nP/XocX/15+cW2zv3bh87cfb4yRP7N9x4/dnHPuZRZ7uuG2pEV7uur6Vu7J6/cPrJ\r\nT37iTbc+8QnXLi+ePza1Vq1yWGezSxvbxy9ec/0Nd9704If+9YMf9tC/uf7a624TXByn4SgzWy2F\r\n9bTGw75VN5n1C56f5dEhlWQ9SZOSWqIItkqpDxmn8aWe8Li/fo2//au/fMXl4dGpCxd39Sd//MfT\r\n5tbmfR/zsR/zlFd8xVdcZpv6qY1b4zje8tQnP/H6P/vD35897clPZnW45NjGghMnTzGtB87dey/3\r\nXerYuub64WVf9TUu7RzbeerW9s5TNzc279m7dOHormfcemL/3H0vf3jx7Cs+7SlPvHl7c3N+6rrr\r\nyzW3PHj9yMc89t7Xe6M3vSAxb2285ilPfPzxP/6D39F8vuC1Xu+NG87213/4u1OZxvte5jVf9+9V\r\nun9wtnPgDulESF0p9cbDg0uP/ss/+N2b//KP/rg73D9iY7bg4OCQ9WRKVOv4SXbmc+0+7Skc3Xl7\r\n/dOf/OEHPeyVXv1VX+kN3ojjZ07/vV7/Tf9hfbj/D3v33PkH52592mPO3/H0Vzx/65NfvltdetBj\r\nHv2I2Yu91Mvyd3/2Z/zNX/wt1998nlse9WhOnDpN6Xou3nvf8b/5i794w2tvecg/vNN7vvvZnWMn\r\nd5eHl9wOdymbx7nf4aULKILSFU1jO91ae6O//+u/foe77777sZkZ995998F11133hx/2UR/xe8Dy\r\n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\r\ny+Xq+tue9PhrDw6PysapncNLl3bd1e7gQQ9+yONayyOIG87eecdDnvq4x794dN1MtWedyZTTcOrY\r\nmSe8wiu98j8AyxJhMIoCToBueXRw7TStrx/Wa+668w7uvP12rr32DJNNs9tiY9EAQIB4YU7PJ7Kp\r\nbW/v3HnzQx/5l3f89V+88nJk4+GPejRbW9sMw8Tq6ID14T4H+2s836H2lfN338lstsHOsWOr7e0T\r\nd197/Y0HRltT5qn77rz9IfuXLm40ivt+NuzvXlzdePNNz7jmuhvPrg4PHTWYL7b499rY2GJ5uM8w\r\nNvfdfPfEqTN/0/f9a2bb30kbp1mtJ7a3N8ulC/edGY72txcbm8Fq3SYMQN/PmYaBg/vu8tY1N1y8\r\n5pabn/akJz3xoNT++KKrnDu/z3pqOOLk05/6pOuAWZQY3JJxHOi6nquuuuqq54PKVVddddX/AsPQ\r\ncA4gg1GU0vd9f+2f/snvv+6v/NxPv83q8PAxj3yxlzj90i9/YvaMW5+Rd99914o23vNij37xP3+J\r\nl36ppz3koQ9dbm5ultVqed0Tn/AP23/0x3/abWxs1s3NTW6//Q7uPXuv3+It33z/Dd/kzc7PNzbK\r\narU8c9cdd2z+9V/8STzlH/6B5d4BHkemKRnbxMEw0AyEyAhq37OoIsZg5+QpTt54HYfDya2L5+57\r\n7N/++R896KlPedLLvfprvs4fvNbrveEvnjpz3Z8O6/WFFjWLm+9p5roiANJFXQUpZqF4SGZ7tb/+\r\nyz97k7/5y7969cO9vWvWR4c8/h8e5/P7e+ff7wPf7w/f5M3e/LdXw/i4Yb28NJ/NmIbVsT/6zV+/\r\n+dd/4ZcX5/YOuOVBD2ZzNvfB+XPnzp89+7ePeImXeeLLveLLHf7dH/3+gw8uXXjUzbfceMv+weHx\r\ni5d2u3/4k9+/8Y5bn/aar/Cqr/mUl3/lV731IQ++5WhYH7ULq6MhWxsWG1t7L/MKr3LvMK4fNo7r\r\nF3/yP/zVdX/w67+1uOfsOXZOHef48ePcfttTeeLjHze94Zu9xa0nz1z3xGEcdkOyMEid0HXDevXS\r\nf/1Hv//Sf/Wnf3oiu45+scnRhb1xub/35Dd4szf5uRd/6Zf5ze74mcdtHTt2+Cpv+jbHbnnQg//y\r\nT37sh1/taU944ltObf3iW4uNfra1w8W77rjpd370h1/8Ld/rPU8+6KVf/OLRhUsTsGwehmHS0cNe\r\n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\r\nd8111+1Tuu7e+84+0vjBF+69+7Eax/5gf58hxcaxEzz4IQ8pTt/clbhmGFY3POPxj9s6f+9ZFIWq\r\nAMW513id1336k//mLzemabz2upOnN3YPD/phubrx3O23v8HTn/ykP3vIIx75F23am6o6A/SzLZbD\r\ngbMVjpZ77eTJ0/e+8mu9/m9cuvvOR/7Fb//2DWlvnzq+zVPvPnvmL//4j17u0Y95zG+3nM6vVsvp\r\nsa/8anc99YlPODse7s2vu/bkflscu3js1OkhW5sN03D83H33bApTQ+BcPfQhD92rtU5R6om7br/t\r\n0c948hMfdeLksfmwnrj73AWPUS9df801v/OKr/zK/wCsIxqSeR6GT33Tt+Cb/v7OOozjVpLlaLVi\r\n3lfIBsDGfLHa3t45P5tvtFPHNkDi+RJ0VQgMXHrEi73ErX98+217W6dvPHHtQx7OMA70x0/gCxe7\r\nwwvnatfPNaaP33fXnQ/evbS/VWczuY11tVwdPewRj/z7+ebmhdV6etje2bOveu9td7zE7NiJxeCg\r\nGZbLJbWrT3/UYx/7x8B+ujlUAGMqYIBZG5Zbq8ODOu9nHHpNN+tQgRwG1a6TJABsYfGCCUotAMbT\r\n8vg11956y0u//BPuuvUZL3Hquut3IoJhdcT6cI/D/Uusj444ftrs3/V0xik5duZ6PO5fvP7Gm582\r\nDtNka3Nv98IN9957985qSM6cOa5hWLdS4kmPfPQj/x5omYnEfxhb1CgAw8kbH3zbbHPzUt9dvPFw\r\nNVGj43Bvn50Xezj33nnnxr1333Xmpoc8onrrpQZhnkMUJPnu255+29bGxhP3z194iWmt6Jwc7u2z\r\ntTHX8nD/QWfvuP26MzfdfKeyOSWuuuqqq14AKlddddVV/8MNw5phvaTv54G0mZkP/q1f/5WHHu7v\r\nPvhd3v09jo6fOvWU+86f9x/87u9Mh5f2zr/pm77pnQ9+2MPuPTxa7w7juCxiw27XPO7v//aWO2+7\r\n48HbWzsbtz39aau//Iu/eOrOsa0nfuqnfdpdj3r0Y44dHBw85u577nnUkx//99t/91d/qYv33kdN\r\nM+s6jvaPWO7uQhuHeVemBc7NLrL0Rd2ZE7PZzk5nQruX9jh3790844lPYn7b7WydOcPWNdeyc+wY\r\nu5f2dp705Ke+2u75Syfvue227dd7s7f+8X5r6+718qABjiIiokSp103j0Zv/6R/87rv85Z/++SOT\r\nGquDfd/2lKfsLsfxHz7ooz7il17xVV/jT/YP9u+L0Mmu615qf+/Sq/3WL//yS//1H/3pTczmi5Mn\r\nTkA27nvGMy5M6+HXX/0N3+i73v1DP/ovDtfD8mBvj5sf/Kjb3+1jPv2pf/lbv3z73/zmLyyPDg7e\r\n9vTpx1xz5+23zy/t7b304/78T7b6Uh/2xm/1Vr+8ubPzONuXEBFFpy7ed/dL/f5v/vaL3X3u0nz7\r\n2EnWhwc89clPo/YdniZO3Hs27rrzzlMnjg5f7OjoaGtcr1Yv/hIvebtKbD/tH/76sX/9R79/7f7R\r\nURwcHLC/v7+72N76/Td5+7f/kdd9i7f5zdvuuue+km7Xvspj/fTf/lMVxXS0d3FanLnhttd5r/f/\r\n+al08de/9wdbl3YvvTilqt84/pDZ5uLt/viXf2X7ld7ojX691Hham3IIlFW+kF3/xy//xm9/0+r8\r\n2RNP+JM/eeSf/fLPxyu/+dvwdh/wwWz++A/zD3/797ScOHnq5Mby6PDlf/+3f+0lXuoVX+7ea6+/\r\n9nC5PCpS9Kpl+56773rE3/3tXz9iuTzsp+WK8/edvfchD33IL73Rm77F05aHR63UKhlKPz99xzOe\r\n9oZ/96d/9Mb33Xvv4uTpG3nwQx/OwaXz97Vx/IX3+7CP/APg0AQlQoE0wb0v8Xpv/ttP+Ou/fvV7\r\nD/dfeePkaZ74l3/JL/7oj9X3+sD3PfnXf/hHL/Gkf/iHv3jki73krdOw73G9T6axIcTUcrrn4S/9\r\nCr+zPnv7I++9+74bLpw9f+xvfvu3ujd41/e4+Nbv+b5/NayO6tmz52/c3D5+Zn20/+iL5+69CVE2\r\ntnfwauCa667J7eM7pWXeLHn+tMf//cZTHv/4QiZROw5Wy72HP/Yxv/F27/buv/sNT3vyyxzuXXrj\r\n9bETJzYXC01HB/Xo4oVXeOLf/e0rPeQRj3xKKd15ORjGJX23YNFvsVruUxHDcDge2zl528u88qv+\r\nzvnbnvpG9955dntnc5Pj20dbT378P7zU4/7u7x7+2Jd8sXGaxsXG1rHzD3vJl3nSH//KL+zcdNON\r\ne/PTN1zqZguMN5eHh8f2dnfnXa3IJqTDmx784P3DoxXIJ570t3/zKElntneO8bjHP5n1ZM/nG3fe\r\ndONNv/eSL/sKdxzsnvPGxjaz2QbPQ+IH7rHO3X1rf7Qet1q6rFZrNjY2yEy6KGxsbBwe29k+D+TD\r\nH/IgzPPX99us1wfUvqN5Wt1wy4Oe1G8du+3YiZMnbnjIozh321MJBWU2H5xt7Lo+Di5duv72pz/t\r\n+sPVUE6fOM7R4f6s62d7D3/Uo5+aDk/D8Ij7nvSER7dhtbV/eMBi5wStNdar1aUHP/zhf/Qqr/bq\r\nzwCmfnHCnpYkRl6LqAJqG9eLab2Kza1t7r7nPKUUVCsCahTAAiAmAeYF6PsNhvUhESLN2NV6YefU\r\nNU++uHtwabG1s4NgWB4yHu5z6fx5Dlcrds+d4+L5i9z8iJfh3Ln78qE3nrrr2ptuuWMaWw5TO37x\r\n7L037Z69r48yZ3t7R0f7l5anT5950oMf/tBnAGkn841t/qNIAiaAdurmh54/eeaa2+676+yjayWi\r\nh3O7F4k6o99YbJy9975rgTpqhjD3q33POAz84o99L9fd/KB7+2PHbs3bb83lahWUwurgkK3jC+3t\r\n3veQO+64/aYzN938l20cyNpx1VVXXfUCEFx11VVX/Q81rFcM65Ww1ffzkFhkG1/sD3/vt9+i1voq\r\nr/dGb3bN6Wtv2Hn845+483M/+mMHxze2/vDd3+cDfvqWhzzyV5fL4W8gb+9q2Q0xPPnxf79xz523\r\nn+yKjj/jqU/u/+JP/ugZ15w++f0f/0mf8tWPevRjfmT34sXHP/GJT6h//kd/uP1Xf/pnuu+22xmP\r\nDqFN7F/aY/fokG5jvrt18uQfLs6c/klvL75/P4fvuO/S+e+5465n/Oadz3jyk4/O37133antfK03\r\neENe763ehu3jJ7hw193c/ri/5+xtT6dKrJdjPXfu4ov96R//yfv/zPd+99sf7V68OSK2M3MO7oSP\r\nZxtf6wl/+Wfv+Dd//pePWg+tTIeHuvNpTz+6uHfw2+/1AR/wza/6Oq/300dHR48voXsXs27Yv3Du\r\nUb/6Mz/76n/zV3/7iH5nZ3Hs9BmGwyPO33rrJY3tt9/kbd/+e9/zwz72z8ap7Re3cT6rY07Dehrz\r\n4su/zpv99Ru/90f8ws3XX/+XuXdufNgjHsU119yw3REv9Zd/+Ifv8ce/+3vv6fSLl4jNWrSY1ocP\r\n+as/+P2XvXhx99rT11yPmpmGddtYdMP68CBrDW59wuO7u2699cY7n/GMR529646HnDxx/Jb5fPbS\r\nz3jyP7zCH/72rz7o3vPn+92Lu1y6tL+ab2382du90zt+7+u9xTv8+sW9vfvWh4ftjntu9b1/9Dg2\r\n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\r\n2tjaedKDHvmIZwCt1hm2+Y/WbPrNGcDq2ptvesbGrLtUo4CCYxubeBjZ2dpktXepADockucmRJ1v\r\nAOQNNz/ovq0TJ+5xCbCZVgPzfsbMLge75+ZAbdMEmKuuuuqqF4Dgqquuuup/mGG9ZByOiFmV2zSr\r\ntdxw261Pf4kL58+/2GNe/CVPHezt7vzGT/+E1svV377ZO77HL11304P+dL06OotzFERIvRTX3Pq0\r\np776Ux7/+He698673vhv/vrvbjh3af/v3uP93ud73+v9P+CXURxiv/Tdd97x3n/753/+Hk/8+79/\r\nqcP9g/mJnePrzb5ft9XRGMPKu0/6O6aL93Di1Em0Xh/741/5hVf/zZ/56Xffv7T3urUrZ5arAx3u\r\nXVhtzPp73/Kd3+MfPuDTP+9nX/kt3vGr6qkbfuYJT3zi7l/94e/TK3n0S70cNz7sMZSNY0xpbn3c\r\n30Xp+1ZOn2qnb7jhRJvaS+/tXni7v/6TP3rL+87t3jgOE7vnznP3nfdceOlXeIWffuf3f/9fOjrY\r\nuw/ZoJNpv/5f/sEfftATn/Dk1+s2No4VwaVz97F7773ntjc2f/Yd3+/9vu013uLt/nSa2kFfSzpx\r\nrXN33RyAUnugYeNaonlY37V15qZffKV3+sBvvu6mh/zgiWuvfdLt99y9fIu3ebv9k2euuWn34vl3\r\n/NPf+/13OBrGR21tb9a98+cvZWtPeqXXeI3f2zp+/M/HaXzCS77iKz3u5V/9tS7UxRar1ug2ttna\r\n2SlPedw/xJ3PeAYGDg+XDMN09rEv8eI/95bv+I6/pDq7Z324P3Wz4GhVvLk4xvNz7NhpODzw6Zse\r\nxP7Fi8sTNz787179rd/+Z6+95tRfLy9dyL4GW5ub1+5duvQGv/4Lv/Dq+5fOn6i1Bth2Tm7D0fGT\r\n19760q/7xr9QNnf+dOv4sYPdu57BX/3e762vu+nmp778a7/WE3K22L37rnv7hz/yoYupDdcbXuWp\r\nj/v7V3/q4/7hzHpYl7P3nS/3nT33lJd8qZf8sRtufvhT9i9dTHBMY1G32Dxx99Of9qp3POWJr7i7\r\ndxhlcYqbHvyQvOvW257yCq/y6r913Y0Pvh3I1pKdE6d4tsTedJ1lAvc+5JVe83eP33jTre38Pdxy\r\n4y3s3fEMnvz4J3X7y6PHPP6v/+rVIK/puk4gxuGI2WyL9XBA88yZ49Da9ORHv/pr/9J1j32xv9g4\r\n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\r\nEQE2CNJggwUkGEibzMSGTJOYlg2TpJM0pE1zkgk2NJI0tDROaDa2MWCDZSwoBgyYy4oAGwkMBMIG\r\nIRomMU4QSRM4AqXAQCQgnEIYAAlkUBojQAQmAILL0kYWGIRJjCQCiBAhAabZZEIoGGUGG4AwSABG\r\ngAADDVMQQqSTMIgrjDBAgDFOIQCBgRBgkAQANuKKFIBAIIQASchgjGUCASCEBIEIBAGWMVAMBSFE\r\nlQhBkShFdBJdqWzOZ2xE4eSJY2xsb1BqQQpaS7waEUlzEFNltVrhHsYqDltjHCeO1mv2WjKGyBDp\r\nRrapLdfD/u56feelaXxC9uVvt45t/921Z04/5bobb7zvmhsfvH/djQ8eHvSIl2xv+eavz8Rl7iSu\r\nuuqq/1cQV1111VVXXfX/jG0A8Uz37e3xR3/2J9rf39dytWI6Wmp1eBDD0VEs1+towxDTsCrj8qge\r\nHh7U5eFRf3i0nK1Xq431etiehnFzGqfNaRw3p2Hcymnczmncyda2W2vbnqbNaLlBeoG9sL0Az8Ke\r\nGc0Cd6CaUNMU4SI7gAAHJgIkSQACikWxkUASIJABEAFOJINEOGgywhREIMBIIIQsIiEEClAKDAgQ\r\npAyCScJApwCMMQWBhIEAEhMIYQJhAEwjCYKQyEwkUxwUAwYwqSAMAdgJgIHIRAiroAABlgAREVhg\r\nTBhSJhBINEEElykTIRAQQQJCgJFEUVAkQiJKoIAIEYiQIIQEYZ4lMWBsSCBJspm0aZm0TFozLRuZ\r\npiWkE2diAwnGGGOMAQtIEEIAhjSkDIAxKcCB0yAAg0EEAlIGGzUDBgWBsACMMQBCAIj7GQRGgAAj\r\ngVJEQJOZgDSX2aaEMIBBQDoxYBtZVEQIJJGAMQjSYJsqYYMkwAgAIYQxksDGgBBIILCEAAwSOCEC\r\nZAgJAVFACgBsU8JUcZkcVIKqwqIUNjc6jm/O6Dc3Ob69TU0hQWayXk0ok2yNNk6oimESrfQ0mVbM\r\n3jSwv1qynhpjJlMERLBuOS6ncf/SsLzrcBof3y0Wf3bimjN/cc311z3t2htvunDjzQ9aXn/jQ9tN\r\ntzzUr/M6r+ZL+wPHtnuuuuqq/7cQV1111VVXXXXVv8hrQ4/+8A//lKc9+QlqwxEH+/txcHhUhnGM\r\nsWVMzoihlfV6WVarg25Yrbv1apgtl6vZer2c5zRtTMO4MU3j5tTaZk5tc2rTJuO4YMzFNI3znNo8\r\n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\r\nuOfsWVSC0ZOG9UAbVlofHml9tNb+8lCrw2UslwdlvVqXYRjqer3uxvW6X0/jbJqmRU5t3lrrs7VZ\r\ntmk2tmk+jdPGNE6b0zRuZGsLt+xsV4koERlRVqXrVt2sXy7ms0tb21tnTxw/dvbkiZO7x0+c2t85\r\nfnK5uXNs2to+3vrt7ZxtbJLT6Dd/wzfgqquuuup/OMRVV1111VVXXXXVVVf9B/qWr/96nFa3mKFF\r\nD+tGH2K1XGo5DKyHUW0a5NZkkDMjsymbYxhWdb1el3Ecumma6tSmsB1FQe2qu65v8/lims/m02Jj\r\nMW5v74zHj5+YtnaOZ1lsuOtm9jQxrZeA/MZv/iZcddVVV/0vgbjqqquuuuqqq6666qr/Yl//rd8K\r\nSLUGi81NTsy3WS2PWI0rogTTMGhwo6+Vjdoz73uyiKg9xze33M9mRD9j3m2wt3sBwK/+Wq/GVVdd\r\nddX/Yoirrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8blauuuuqqq666\r\n6qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8b\r\nlauuuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquu\r\nuuqqq6666r8blauuuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq666\r\n6qqrrrrqqquuuuqqq6666r8blauuuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqr\r\nrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8blauuuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquu\r\nuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8blauuuuqqq6666qqrrrrqqquuuuq/\r\nG5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8blauuuuqqq6666qqr\r\nrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8blauu\r\nuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqq\r\nq6666r8blauuuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqr\r\nrrrqqquuuuqqq6666r8blauuuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrq\r\nvxuVq6666qqrrrrqqquuuuqqq6666r8blauuuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquuuuqq\r\nq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8blauuuuqqq6666qqrrrrqqquuuuq/G5Wr\r\nrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8blauuuuqqq6666qqrrrrq\r\nqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8blauuuuqq\r\nq6666qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqqq666\r\n6r8blauuuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrq\r\nqquuuuqqq6666r8blauuuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuV\r\nq6666qqrrrrqqquuuuqqq6666r8blauuuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq666\r\n6qqrrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8blauuuuqqq6666qqrrrrqqquuuuq/G5Wrrrrq\r\nqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8blauuuuqqq6666qqrrrrqqquu\r\nuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8blauuuuqqq666\r\n6qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8b\r\nlauuuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquu\r\nuuqqq6666r8blauuuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq666\r\n6qqrrrrqqquuuuqqq6666r8blauuuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqr\r\nrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8blauuuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquu\r\nuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8blauuuuqqq6666qqrrrrqqquuuuq/\r\nG5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8blauuuuqqq6666qqr\r\nrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8blauu\r\nuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqq\r\nq6666r8blauuuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqr\r\nrrrqqquuuuqqq6666r8blauuuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrq\r\nvxuVq6666qqrrrrqqquuuuqqq6666r8blauuuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquuuuqq\r\nq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8blauuuuqqq6666qqrrrrqqquuuuq/G5Wr\r\nrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8blauuuuqqq6666qqrrrrq\r\nqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8blauuuuqq\r\nq6666qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqqq666\r\n6r8blauuuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrq\r\nqquuuuqqq6666r8blauuuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuV\r\nq6666qqrrrrqqquuuuqqq6666r8blauuuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq666\r\n6qqrrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8blauuuuqqq6666qqrrrrqqquuuuq/G5Wrrrrq\r\nqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8blauuuuqqq6666qqrrrrqqquu\r\nuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8blauuuuqqq666\r\n6qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8b\r\nlauuuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquu\r\nuuqqq6666r8blauuuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq666\r\n6qqrrrrqqquuuuqqq6666r8blauuuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqr\r\nrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8blauuuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquu\r\nuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8blauuuuqqq6666qqrrrrqqquuuuq/\r\nG5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8blauuuuqqq6666qqr\r\nrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqqq6666r8blauu\r\nuuqqq6666qqrrrrqqquuuuq/G5Wrrrrqqquuuuqqq6666qqrrrrqvxuVq6666qqrrrrqqquuuuqq\r\nq6666r8b/wixvUIvqHH0mwAAAABJRU5ErkJgggAAAW9qdW1iAAAAKWp1bWRjYm9yABEAEIAAAKoA\r\nOJtxA2MycGEuaW5ncmVkaWVudAAAAAE+Y2JvcqZoZGM6dGl0bGV1QWRvYmVTdG9ja19OV3BPem8u\r\ncG5naWRjOmZvcm1hdGlpbWFnZS9wbmdqZG9jdW1lbnRJRHgseG1wLmlpZDphMTVlMzNlNS01ODI3\r\nLTRhYzEtOGY1YS05MmIyYjA0YmE3OGRqaW5zdGFuY2VJRHg2YWRvYmU6ZG9jaWQ6c3RvY2s6OTNl\r\nMzM4NzktOGIyYS00N2NlLTg4MDctM2Q5ZmE2OGVmZDVjbHJlbGF0aW9uc2hpcGhwYXJlbnRPZml0\r\naHVtYm5haWyiY3VybHg4c2VsZiNqdW1iZj1jMnBhLmFzc2VydGlvbnMvYzJwYS50aHVtYm5haWwu\r\naW5ncmVkaWVudC5wbmdkaGFzaFggv60fklspgSzn9ae16I769rhQCjTei5yhrFJZUBvrbaUAAADB\r\nanVtYgAAAE5qdW1kanNvbgARABCAAACqADibcRNzdGRzLnNjaGVtYS1vcmcuQ3JlYXRpdmVXb3Jr\r\nAAAAABhjMnNoYhcIrJKYljW7Fo2MaWdtkgAAAGtqc29ueyJAY29udGV4dCI6Imh0dHBzOi8vc2No\r\nZW1hLm9yZyIsIkB0eXBlIjoiQ3JlYXRpdmVXb3JrIiwidXJsIjoiaHR0cHM6Ly9zdG9jay5hZG9i\r\nZS5jb20vMTI5MTAxNjkwNiJ9AAAAV2p1bWIAAAAmanVtZGNib3IAEQAQgAAAqgA4m3EDYzJwYS5h\r\nY3Rpb25zAAAAACljYm9yoWdhY3Rpb25zgaFmYWN0aW9ubmMycGEucHVibGlzaGVkAAAAr2p1bWIA\r\nAABGanVtZGNib3IAEQAQgAAAqgA4m3ETYzJwYS50cmFpbmluZy1taW5pbmcAAAAAGGMyc2g8xeBl\r\nBP4FyVGG6MfqE54aAAAAYWNib3KhZ2VudHJpZXOieBtjMnBhLmFpX2dlbmVyYXRpdmVfdHJhaW5p\r\nbmehY3VzZWpub3RBbGxvd2VkcWMycGEuYWlfaW5mZXJlbmNloWN1c2Vqbm90QWxsb3dlZAAAAK9q\r\ndW1iAAAARmp1bWRjYm9yABEAEIAAAKoAOJtxE2Nhd2cudHJhaW5pbmctbWluaW5nAAAAABhjMnNo\r\nJveTAcR3ttrpTfAUw+sc1wAAAGFjYm9yoWdlbnRyaWVzongbY2F3Zy5haV9nZW5lcmF0aXZlX3Ry\r\nYWluaW5noWN1c2Vqbm90QWxsb3dlZHFjYXdnLmFpX2luZmVyZW5jZaFjdXNlam5vdEFsbG93ZWQA\r\nAACranVtYgAAAChqdW1kY2JvcgARABCAAACqADibcQNjMnBhLmhhc2guZGF0YQAAAAB7Y2JvcqVq\r\nZXhjbHVzaW9uc4GiZXN0YXJ0GCFmbGVuZ3RoGgAIguVkbmFtZW5qdW1iZiBtYW5pZmVzdGNhbGdm\r\nc2hhMjU2ZGhhc2hYINFJ8oIxQ21aZ+AyqVM3RHoc5pCV2h7D6XPJxtWlmj/oY3BhZEYAAAAAAAAA\r\nAAPqanVtYgAAACRqdW1kYzJjbAARABCAAACqADibcQNjMnBhLmNsYWltAAAAA75jYm9yqGhkYzp0\r\naXRsZXghQWRvYmVTdG9ja18xMjkxMDE2OTA2X1ByZXZpZXcucG5naWRjOmZvcm1hdGlpbWFnZS9w\r\nbmdqaW5zdGFuY2VJRHZBZG9iZSBTdG9jayAxMjkxMDE2OTA2b2NsYWltX2dlbmVyYXRvcngsQWRv\r\nYmVfU3RvY2sgYWRvYmVfYzJwYS8wLjE0LjIgYzJwYS1ycy8wLjQzLjB0Y2xhaW1fZ2VuZXJhdG9y\r\nX2luZm/2aXNpZ25hdHVyZXhTc2VsZiNqdW1iZj0vYzJwYS9hZG9iZTp1cm46dXVpZDplZmNhOWQ2\r\nZS05NmY5LTQyNjYtYjVlNC0wNTc4NzUyZTA0OGYvYzJwYS5zaWduYXR1cmVqYXNzZXJ0aW9uc4ei\r\nY3VybHg4c2VsZiNqdW1iZj1jMnBhLmFzc2VydGlvbnMvYzJwYS50aHVtYm5haWwuaW5ncmVkaWVu\r\ndC5wbmdkaGFzaFggv60fklspgSzn9ae16I769rhQCjTei5yhrFJZUBvrbaWiY3VybHgqc2VsZiNq\r\ndW1iZj1jMnBhLmFzc2VydGlvbnMvYzJwYS5pbmdyZWRpZW50ZGhhc2hYIH3H4V8BO3ZKtVKX92c5\r\np1djPqbyHWJGu7nnYaHyfQ7EomN1cmx4N3NlbGYjanVtYmY9YzJwYS5hc3NlcnRpb25zL3N0ZHMu\r\nc2NoZW1hLW9yZy5DcmVhdGl2ZVdvcmtkaGFzaFgguIUpQUaRc05kar7+c7kqnZL/HYwoRh4B1PYP\r\nGDZtjXqiY3VybHgnc2VsZiNqdW1iZj1jMnBhLmFzc2VydGlvbnMvYzJwYS5hY3Rpb25zZGhhc2hY\r\nIKf9JPz5IZw28mfdNPDXL/iypNppoq9L0dnGlQc3pS7romN1cmx4L3NlbGYjanVtYmY9YzJwYS5h\r\nc3NlcnRpb25zL2MycGEudHJhaW5pbmctbWluaW5nZGhhc2hYIEWvbHKyarjnlErBNsUK5Amg6W0J\r\nf7xPFlSzQ02COn81omN1cmx4L3NlbGYjanVtYmY9YzJwYS5hc3NlcnRpb25zL2Nhd2cudHJhaW5p\r\nbmctbWluaW5nZGhhc2hYINXc1XXjAjJgCMRxqIlJVowzwBlVF3LnFvvPliAiT/9oomN1cmx4KXNl\r\nbGYjanVtYmY9YzJwYS5hc3NlcnRpb25zL2MycGEuaGFzaC5kYXRhZGhhc2hYIJNGsSIHGgaN4ZSz\r\nDXgk4ImrvuFZahL0gYvRoS12vsdKY2FsZ2ZzaGEyNTYAADAQanVtYgAAAChqdW1kYzJjcwARABCA\r\nAACqADibcQNjMnBhLnNpZ25hdHVyZQAAAC/gY2JvctKEWQz1ogE4JBghglkGQzCCBj8wggQnoAMC\r\nAQICEE9GV2+EIbzCOOaNDhX4xWswDQYJKoZIhvcNAQELBQAwdTELMAkGA1UEBhMCVVMxIzAhBgNV\r\nBAoTGkFkb2JlIFN5c3RlbXMgSW5jb3Jwb3JhdGVkMR0wGwYDVQQLExRBZG9iZSBUcnVzdCBTZXJ2\r\naWNlczEiMCAGA1UEAxMZQWRvYmUgUHJvZHVjdCBTZXJ2aWNlcyBHMzAeFw0yNDEwMjQwMDAwMDBa\r\nFw0yNTEwMjQyMzU5NTlaMIGxMRkwFwYDVQQDDBBBZG9iZSBTdG9jayBDMlBBMSgwJgYDVQQLDB9D\r\nb250ZW50IEF1dGhlbnRpY2l0eSBJbml0aWF0aXZlMRMwEQYDVQQKDApBZG9iZSBJbmMuMREwDwYD\r\nVQQHDAhTYW4gSm9zZTETMBEGA1UECAwKQ2FsaWZvcm5pYTELMAkGA1UEBhMCVVMxIDAeBgkqhkiG\r\n9w0BCQEWEWNhaS1vcHNAYWRvYmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\r\n3o5lXU1nfA52uTAJ2TwZ96SROXpD4LiTpjtYvWeB8ARwJL+F9SR9U0EZ07mEtb4iV+jdCGy94XBV\r\nHpkMQkQq4pAiUpbj53BTFjbI/3TWz+gB0hj0lpZvOgMbJorBsEsB0QOJsoMW6gnoaAQpvc1AgUWz\r\nWdKFdwU/jLCmW9nJlw1gFxkaOY4Q4Dv5EqZn+EW4jEX5EtleJpMIorWUtS1f1FzdqaUh8BaHCPTw\r\nCY1N7uiEEHL6GQwtO2I5OctvK25cBGe0jZL6Bu91uwkecP5hO1PTrgsTtGq/ucfPs17duLRn8i8u\r\nYY04jYy1eAg5bF7nhWVG+T92pyKX/NQeAVLW8QIDAQABo4IBjDCCAYgwDAYDVR0TAQH/BAIwADAO\r\nBgNVHQ8BAf8EBAMCB4AwHgYDVR0lBBcwFQYJKoZIhvcvAQEMBggrBgEFBQcDBDCBjgYDVR0gBIGG\r\nMIGDMIGABgkqhkiG9y8BAgMwczBxBggrBgEFBQcCAjBlDGNZb3UgYXJlIG5vdCBwZXJtaXR0ZWQg\r\ndG8gdXNlIHRoaXMgTGljZW5zZSBDZXJ0aWZpY2F0ZSBleGNlcHQgYXMgcGVybWl0dGVkIGJ5IHRo\r\nZSBsaWNlbnNlIGFncmVlbWVudC4wXQYDVR0fBFYwVDBSoFCgToZMaHR0cDovL3BraS1jcmwuc3lt\r\nYXV0aC5jb20vY2FfN2E1YzNhMGM3MzExNzQwNmFkZDE5MzEyYmMxYmMyM2YvTGF0ZXN0Q1JMLmNy\r\nbDA3BggrBgEFBQcBAQQrMCkwJwYIKwYBBQUHMAGGG2h0dHA6Ly9wa2ktb2NzcC5zeW1hdXRoLmNv\r\nbTAfBgNVHSMEGDAWgBRXKXoyTcz+5DVOwB8kc85zU6vfajANBgkqhkiG9w0BAQsFAAOCAgEAtG95\r\nb1t7ABdp4KKsCQH8lLZ0EXYPbcHzCdkY8PWhlm9vAfLGSH33Y6XWiy2Mdzqr97dVl8LnUQlMQMMk\r\nftSBnQubPRDV43pYe9xR0kWdby101cg7MHWdSMPkbEoZajXLRb/NRgSOzD1O+DsO83MQr5jBvdZQ\r\nSNp3uvCAvSoEi3tupQEMinYZliMAzclE9g7Pgxd/hYRYgqrkdeQRIjgaf2MrKKJh/ImzGgay8iSw\r\neEVTng1qjL1z4rZDZv6B9m+VDq/6NFxcDreeB9f2Bxy1PsBecuPa18nbfgVKWxiNHlSXQFpWlp3m\r\nERSlZbiWQYf18bBpbwHT3uAWFWZO/07UlMRBN5Tc3LRfRId8RteszcZbjCl4qNYLd09taoFMGicT\r\n2pNNNSwMN22/JDcg65+YODqpD2Ce+MsdEEayMeDTu7qjCCigrcsOZ3UsifZbSYqfMsk2V6WsN4la\r\n5DemwUeF76+H75q4Y9Z/uQS2UU+rtbiz7zQOYy+fm5BHVGr71ojKXP3x3RxmBwUMztcC51MnTPo2\r\nQavp43cf8cuQ8CmRQEuqZ4DORf1DSjSBdca+mlF5lDJx/UGAlEOf5rcPm14h414e0T1okm/0vl4E\r\nLZNVTdR5plwioePbjR9vybR5eo2/hILScmdO2zU9ZTTsm5RHdY2M1ts4+KMsmrvZPuTxr5dZBqUw\r\n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\r\nSAFlAwQCAQUABCBT3Q898zDGtoavUkW/Mh/Z2wftguk368mhpMQBNMw3OwIQfVfWySCkf0WaNd+q\r\n+hRcmRgPMjAyNTA1MjMwNDQ1MzFaAggLAjStMgpopqCCC8AwggUKMIIC8qADAgECAhAMCy/HenjP\r\nuu1lVlTBmiQDMA0GCSqGSIb3DQEBCwUAMGMxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2Vy\r\ndCwgSW5jLjE7MDkGA1UEAxMyRGlnaUNlcnQgVHJ1c3RlZCBHNCBSU0E0MDk2IFNIQTI1NiBUaW1l\r\nU3RhbXBpbmcgQ0EwHhcNMjQxMTIwMDAwMDAwWhcNMzYwMjE5MjM1OTU5WjBbMQswCQYDVQQGEwJV\r\nUzERMA8GA1UEChMIRGlnaUNlcnQxOTA3BgNVBAMTMEVDQzI1Nl9TSEEyNTZfVGltZXN0YW1wX1Jl\r\nc3BvbmRlcl9BZG9iZV9OT1ZfMjAyNDBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABND8HoX4gZim\r\nKpBAvE5+qRSZ5OZJFZnPFIK3AzzayJb9JtdrOS1HIRabAhWz7w8mOFX0Lh9QnbcgZHGx/MkzyV6j\r\nggGLMIIBhzAOBgNVHQ8BAf8EBAMCB4AwDAYDVR0TAQH/BAIwADAWBgNVHSUBAf8EDDAKBggrBgEF\r\nBQcDCDAgBgNVHSAEGTAXMAgGBmeBDAEEAjALBglghkgBhv1sBwEwHwYDVR0jBBgwFoAUuhbZbU2F\r\nL3MpdpovdYxqII+eyG8wHQYDVR0OBBYEFOzRHG9856BN5DE/hwAI1K3UfTa7MFoGA1UdHwRTMFEw\r\nT6BNoEuGSWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFRydXN0ZWRHNFJTQTQwOTZT\r\nSEEyNTZUaW1lU3RhbXBpbmdDQS5jcmwwgZAGCCsGAQUFBwEBBIGDMIGAMCQGCCsGAQUFBzABhhho\r\ndHRwOi8vb2NzcC5kaWdpY2VydC5jb20wWAYIKwYBBQUHMAKGTGh0dHA6Ly9jYWNlcnRzLmRpZ2lj\r\nZXJ0LmNvbS9EaWdpQ2VydFRydXN0ZWRHNFJTQTQwOTZTSEEyNTZUaW1lU3RhbXBpbmdDQS5jcnQw\r\nDQYJKoZIhvcNAQELBQADggIBAKLswSDyeS8tq4sjtwCPbUOCcwSuHSae0K3hzi2xb3IlBl1m/Wfw\r\n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\r\nLZL+6+s/QnQGcRFeed3C1vMfiarSkn6fnbH3pYb7HQaw7e/zm3GcbAZC1HswotnbdPE9qwFZzuVJ\r\nlxbtabc9IuwyLyIHYmxnzaWgggBPB5v/MdNZeP2DuHoELvJiKoGXxuN8O95GV2mDeiljyC8/EYoM\r\nnpXrRst5YWxrWtgyKiQ0fS46yOtZf8xUXhujwMMs0zrkTHGp6QVaXtGy+TeMnORZsCmWbnrcgTPR\r\nQMT4vp95J/sQI/Y0KhSZqyvnbSRGEECS/OwFjeMEnrfyZQrPejtil5agUN6fIgj9cwpMXiTSsRzf\r\nGBrzw5hZuNUTFEvf9Z4c6JPt/zjoaxr/w4Nf2SooPS32snzy9Oba7qpDYKqOl4dv2D4p8TwvihUv\r\nfGW4xvBFoEdDESMRfJtGfVv5S/7Xhlz8t7aUZkMnHgmOx18CiWS6ksQfDx/j5MZZ7ROhs4rURbI8\r\njgfiKmNX+iGMv1d35dsFY3BhZFkKkgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPZZAQBn5I2C\r\nij3yHOiK/SDbKsviTONqWBaX2THBOOqnzidAqU/YLNbbgHpOukBolNRYzxV1yu0zG0Lz//UAEBM+\r\nSlVe8WMAePxOzVQ80AE3nfshX3AfOpvIVA+D5eIvceSHMKpJS0lJjB4EDKnuXtyQFbUKGX92wN9s\r\n7SjEyAqgWBuejvwg7ZXIIAS+OTuGyboC2hdWOC+EQHr/Wq618+WuPfVQWZFUFLi1G2jRqqMDklp9\r\nOZYEk00nbmqEGkAxjS0aSYWAzT95G3QToxL+q+jCX5q2J7GiGLvdEmfEwQLf4paetLYH0BLJq4Gl\r\nv7UADMGmW0RggEAlnZdaUqz75K+M+m14o8IzpgAAAFl6VFh0UmF3IHByb2ZpbGUgdHlwZSBpcHRj\r\nAAB4nOPyDAhxVigoyk/LzEnlUgADIwsuYwsTIxNLkxQDEyBEgDTDZANDMMsIiE1APNNEIMvYMMnI\r\n1MTcwIALAObKEZZW7ua7AAAHh2lUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJl\r\nZ2luPSfvu78nIGlkPSdXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQnPz4KPHg6eG1wbWV0YSB4bWxu\r\nczp4PSdhZG9iZTpuczptZXRhLycgeDp4bXB0az0nSW1hZ2U6OkV4aWZUb29sIDExLjg4Jz4KPHJk\r\nZjpSREYgeG1sbnM6cmRmPSdodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgt\r\nbnMjJz4KCiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0nJwogIHhtbG5zOmRjPSdodHRwOi8v\r\ncHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyc+CiAgPGRjOmZvcm1hdD5pbWFnZS9qcGVnPC9kYzpm\r\nb3JtYXQ+CiA8L3JkZjpEZXNjcmlwdGlvbj4KCiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0n\r\nJwogIHhtbG5zOnBob3Rvc2hvcD0naHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyc+\r\nCiAgPHBob3Rvc2hvcDpDcmVkaXQ+VmlWbiAtIHN0b2NrLmFkb2JlLmNvbTwvcGhvdG9zaG9wOkNy\r\nZWRpdD4KIDwvcmRmOkRlc2NyaXB0aW9uPgoKIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PScn\r\nCiAgeG1sbnM6cHVyPSdodHRwOi8vcHJpc21zdGFuZGFyZC5vcmcvbmFtZXNwYWNlcy9wcmlzbXVz\r\nYWdlcmlnaHRzLzIuMS8nPgogIDxwdXI6Y3JlZGl0TGluZT4KICAgPHJkZjpCYWc+CiAgICA8cmRm\r\nOmxpPlZpVm4gLSBzdG9jay5hZG9iZS5jb208L3JkZjpsaT4KICAgPC9yZGY6QmFnPgogIDwvcHVy\r\nOmNyZWRpdExpbmU+CiA8L3JkZjpEZXNjcmlwdGlvbj4KCiA8cmRmOkRlc2NyaXB0aW9uIHJkZjph\r\nYm91dD0nJwogIHhtbG5zOnRpZmY9J2h0dHA6Ly9ucy5hZG9iZS5jb20vdGlmZi8xLjAvJz4KICA8\r\ndGlmZjpJbWFnZUxlbmd0aD4xMDAwPC90aWZmOkltYWdlTGVuZ3RoPgogIDx0aWZmOkltYWdlV2lk\r\ndGg+MTAwMDwvdGlmZjpJbWFnZVdpZHRoPgogIDx0aWZmOlJlc29sdXRpb25Vbml0PjI8L3RpZmY6\r\nUmVzb2x1dGlvblVuaXQ+CiAgPHRpZmY6WFJlc29sdXRpb24+OTM3NS8xNzY8L3RpZmY6WFJlc29s\r\ndXRpb24+CiAgPHRpZmY6WUNiQ3JQb3NpdGlvbmluZz4xPC90aWZmOllDYkNyUG9zaXRpb25pbmc+\r\nCiAgPHRpZmY6WVJlc29sdXRpb24+OTM3NS8xNzY8L3RpZmY6WVJlc29sdXRpb24+CiA8L3JkZjpE\r\nZXNjcmlwdGlvbj4KCiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0nJwogIHhtbG5zOnhtcD0n\r\naHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyc+CiAgPHhtcDpDcmVhdGVEYXRlPjIwMjUtMDIt\r\nMjU8L3htcDpDcmVhdGVEYXRlPgogIDx4bXA6Q3JlYXRvclRvb2w+QWRvYmUgU3RvY2sgUGxhdGZv\r\ncm08L3htcDpDcmVhdG9yVG9vbD4KICA8eG1wOk1ldGFkYXRhRGF0ZT4yMDI1LTA1LTIzVDA0OjQ1\r\nOjI5PC94bXA6TWV0YWRhdGFEYXRlPgogIDx4bXA6TW9kaWZ5RGF0ZT4yMDI1LTAyLTI1PC94bXA6\r\nTW9kaWZ5RGF0ZT4KIDwvcmRmOkRlc2NyaXB0aW9uPgoKIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFi\r\nb3V0PScnCiAgeG1sbnM6eG1wTU09J2h0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8nPgog\r\nIDx4bXBNTTpEb2N1bWVudElEPjEyOTEwMTY5MDY8L3htcE1NOkRvY3VtZW50SUQ+CiAgPHhtcE1N\r\nOkluc3RhbmNlSUQ+QWRvYmUgU3RvY2sgMTI5MTAxNjkwNjwveG1wTU06SW5zdGFuY2VJRD4KICA8\r\neG1wTU06T3JpZ2luYWxEb2N1bWVudElEPmFkb2JlOmRvY2lkOnN0b2NrOjEyOTEwMTY5MDY8L3ht\r\ncE1NOk9yaWdpbmFsRG9jdW1lbnRJRD4KIDwvcmRmOkRlc2NyaXB0aW9uPgoKIDxyZGY6RGVzY3Jp\r\ncHRpb24gcmRmOmFib3V0PScnCiAgeG1sbnM6eG1wUmlnaHRzPSdodHRwOi8vbnMuYWRvYmUuY29t\r\nL3hhcC8xLjAvcmlnaHRzLyc+CiAgPHhtcFJpZ2h0czpNYXJrZWQ+VHJ1ZTwveG1wUmlnaHRzOk1h\r\ncmtlZD4KIDwvcmRmOkRlc2NyaXB0aW9uPgo8L3JkZjpSREY+CjwveDp4bXBtZXRhPgo8P3hwYWNr\r\nZXQgZW5kPSdyJz8+8G7YtgAAgABJREFUeAHswQWgVXX2+O3POnEDR7hecCzgbOc4Fs4oOmLQxqjY\r\nPTaI3d09dgd2gDqj0tgtbedYoOxhb3VMclBvnFj/83vX8d37Hi6IU17h+zzCzyib8YSIYAQjz0+Y\r\n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\r\nso8/+ki3++M2ecruHjY02bdfvwQVpk6ZWjxo//3zgGIUo4BiFKMYxSgxfhgozjIhm/GEloSWhIjQ\r\nOqElISLEXHblFak999orRcycOXOKPTbcqBGjGMUoRonxw0BxlgnZjCdEBCOU3HH33ektttyimrJc\r\nLqdnnHpa88PjxikRoeS6G29I7bjTTknKRo0cWTjj1NMKgFDhiaefTq251ppCWVNTE93WWrsJUIxi\r\nFFCMYpSIUuaHgeKQ4H8sm/GERRNiHnn4YT3h2OOam5qaaM3rr72ut91yS5EKgwcOKkybNk2J2XCj\r\njRKAYhRQQAHFKEYxilFi/DBQHGcxLjz//HxzczM/2HLrrZKqysADDiwce/TR+WnTpimtqK2tZe99\r\n/pR8YdLE9OVXXZmYPXu2HnX4EYVttto6122ttZs232TTpu233bb5huuuKwCKUYwCSkQp88NAcZYa\r\n2YwnLEwAoSUBBBCMAIIRQDACSL6QF2I23WyzxJ333J3s179/grLPPv1U99hl1/xXX37J/znjrLNS\r\nG/fokXrsqSerWJjSkrIIfhgozlItm/GEhQkRAQQQQDACCEYwQkm39dZLEjNl8uQiMYMHDipMnDCh\r\nSIWevXomxj36SGqVVVahRDEKKEYxilGMEuOHgeIsE7IZT2hJiAggGAGE1gkLUyIKaI9NNpEJUyZX\r\n7bnXXikqXH3llc0YxShGMUqMHwaK44D07du3iph0Oi2XXXlF9TbbbpsABBCMFPIF4n7/+/UTgLAw\r\nfejBBwrEVFdXU6IYBRRQQDGKUSKKs5AE/0PZjCe0JBghIoBQ9szTT+sxRx6Va2xspNIfNv6DHHbE\r\n4QlAACHm0j9fXCCmpqaGMgUUoxgFFFCMYpQYPwwUx/kRwcyAyRMn5Yk5/cwzk5Q8+fgTusO22+WP\r\nOeqofENDA62pra1ljz33TL74ystVD44Yntyge3cBFFBAAcUoRgElojhLpWzGExYmtCSAEBFAMAII\r\nIBgBhJJ5c+cRt+9++yX6b7FFgrJPwlD32HW3/Ndff62UnHr66ckNundPUrL22mun7h42NMWiKa3w\r\nw0D9MFCcZY0AghFAiAgggGAEEIxgpKammrj58+dTafDAQYXJkyYVqbDe736XGP3wuCqMAopRjGIU\r\no8T4YaA4y4RsxhNaEowAghFAMAIIIIAAAgiLpoBeftWVyefGj696YPhD1Z07d05QYdyYsc0jHhpe\r\n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\r\n3379EvyIOXPmFHtsuFEToIBiFFCMEuOHgeI4PyKb8YSIYAQQQDAyftLE6i5duyZoxS1DhuSvvfqa\r\nAkYxilFAMUpEMUoFPwwUZ6mUzXhCRDACyPQZM9olU0khprm5mROOPa75maef1ikvvVS18iorC0vg\r\n9dde12OOPDJ/8223Jjf6wx8SLEIul9P77703d+nFl+QBxSigGCXGDwPFWeZkM54QEYxQssOOOyau\r\nvu7a2lQqJSxGY2MjTz7+ROGqK68sfP3VV5QJJY899WRq7bXXFpbQA3/9a+68s8/JAwooRgElopT5\r\nYaA4/xFJfoJsxhNaEoxgBBCMADJv3jy233GHJBW6ZjKyQffu8vC4cfr6a6/pH7fdNtGpUychpn37\r\n9rLJppsmttl22+Ta66yTIObbb7/VY448qnnu3LkKKEYxilEq+GGgOM5/ydz586ivqxNaEn6cUsEP\r\nA8VZqmQznrAwoSUBBBCMAIIRSnbbfffk9TfdVP2rX/0qwWKsueaass222yYef/Sx4kMPPKgbdO8u\r\nGc8TFiGXy+nFF17U/MEHHyigGAWUVvhhoDjOEqivqxMighEiAkgJffr2TVLhtltvzV9z1dUFQDGK\r\nUYxiFKNElAp+GCjOUimb8YSIYAQjCxb8s9izV69kIpEQypLJJFv9cevk1n/8YyK7RjbBElp1tVUF\r\nhBOOPa4YzAx05VVXYeWVVxbKFixYoC9OnVo48rDDmx95+JEioBhlEfwwUJxlUn1dnRARjACS/e0a\r\niW232y6VSCSExUilUqyz7jqJffffL9mlSxf+9s47fP/99/yfZ556utirT59Ep06dhB/xwF//mjvv\r\n7HPygAKKUUCJKGV+GCjOf4ywBLIZT2idYAQjgABCybYDtktec911VdXV1SzKxAkTioMHDip06tSJ\r\nUWPHpDp36SL8iFwup+edc27TyOHDi4BiFKMYJcYPA8Vx/geyGU9YNKElpRV+GCjOUieb8YSWhIjQ\r\nkhARjFDyyhuvV3fs2DHBEpo2bZrusO12eUqG3X9/slfvXgkq5HI5PefMs5pGjxpVBBSjGMUoZX4Y\r\nKI7zE2QznhARjAACCEYmTp1SvdpqqyUo+/rrr3XzHps0EVGMYhSjGCWixPhhoDhLtWzGEyKCEYwA\r\nsudeeyUuuuTi6nQ6LSzGpIkTi6edfEph1qxZrLX2WnL1ddcl11lnHSGmoaGB362zbjNGMYpRQDGK\r\n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\r\nyaoYfM2H/uMffW0pZqo2Nmae/Mwjet2RY+cPnTj+p3k2WjTGjBQ1ApEgNREZz7LRzU+fPHn43Llz\r\n0fLKZXbt3rP6DW9/xweyLLsgIok1prG6fPGuj3/4z/bnZWVb9QYahO52X+f27n/q67/jO385rjeX\r\ntntbzkQWQXieKzNQn8/MH36qGmW/ZJ4ujx27/75XllFizz7zHLPXHWZsYprzp09PfeAPfv+/ao9N\r\nLU5NzXzYezdAomCMIR8M86TefPTr/t7f+7edTsvd+8DrjgSlUznXOPvsU7KysswoL/AoNjL65te/\r\n+ekTt9z6ybXL55wBoyp1RO549slHX3l+8UwdDK50DPsDmo3G6td90zf92+m53Z8YDLbdxNTewF+B\r\nEcEYG8Vpba63vjx78fRpK1iKUU6WV8zOTbN1+TKDza0GSbprc309qjUa4xcWF6fmr5t3SZK6gEQr\r\n589z+umnGWY5w1FBFMeICK5SZub2cen8ufaZU8989eyePSd37dn7PmOjTYI6vgjDQW80tefAHx65\r\n866vXf3D997hXEWz3mDkApeWLx77xMc/+foHXv+mp8tq3SniFO25snB7j5z48OzufV/t+r0TG2uX\r\nmbruEPMHD0bbm5u715fPR3Fk6G33UO/ACqNRTrNR44rgnSNpdJLlleWbnnvq8YNihNW1bfYfu4Xh\r\n1jY1K9nBw4c/BYx4GaLUcsXW/iPHP1abGLt/bX27nrTbZIsXWb64TKfdlN7Gxi297e4h4CwvkdQ6\r\nIRt2QWRorN2u8ly729sMhyNcURG84lUwcURzfAxflayeO8to1GdQGHwQxETDQ4ePPPThD31o81Of\r\n/LTyIimKgjRNA7AxO7fr0tbi6euK/lCyIievcsZrbQlFdtAV+a73/+mfnv2qt7xFuMqv/cqvOHao\r\nNXGvWa+PttRM1eopselRT2MGgwGj0QgbxbGIRLVazVhjklGZt8uyssZYggaCV5KkDojJRiPpb2+i\r\n3tNoj7HVH9JqNqu9+w+cAXoiEvgCBe/iosjrWZaRxgkGJY5iKuchhKzZbi0CI4whkijwBRI5FKoq\r\nc1HSWGxMTa95a+cnpmbURnG6vraW4BzWWAKKMUJUS5ibm81ENR3k1UyjXpfu1hbNWkojNvRdWc1O\r\nT38UWOYL4H3Ik1q9JyJBQ7CCYIxBjGA0EBnRELzhirLKTBLXA1+AsspMgJo1ZpcGV1PvGPV7lFlO\r\n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\r\nY2y30pANZ+cub+1sbpwb58Pl1c4Mczdd7hZvvtoZ2COJouogSBhhbIa5TEMMUWQElRLR1uziYL/s\r\nzVZVMoxElymNbYYhjlpKRIoyGml1mSpGQmKGbqrboSMGhtgakmi4XKbHH3/CXIrY7fcudju3dpd5\r\n43/8sV/6mz7sw9750f/rh4u86Y1v8jRBEMRJnMRJ3HffL1ysPun/88mbj/jIjzz3NN/9975r+XUv\r\nevHVn/szf2Zafd/3fp/f9/G/d//a1762v/fjfs/+L/+lv7R4mhs3bvjKl3/V9jf/1t8S9Je8y7t4\r\nzbd+6/bXf+hv8GP/z4/5377+G+bXfvVXL07qpKiTeituPvpI/Txs3fef5eEHH4q3FHfFXXFX3BWr\r\n/+4DP3DrHl/71V+9/zOf+VnT6m++5luWL/uSL5mf81c/d/MhL3zhcI+P/d0v3Xzh53/BRF/1Td9U\r\nFHVSJ3VSJ3VX3ePmo4/Ufb+oZMbY5Pxq2b1bHn/82b11i2UyqxOlLWUKcyKqBK2IBVUaFWOzFXES\r\n+8udZVlIbLZbxXBQy5wury4cjRqIUkYjmHVUJAwRMTvVKlY1kTKcJFZl1lFJHMVtdVsdteq2RFFU\r\nDat6iqBqIo0k4rbWLIlVUUExynRQFBGrFhXRklZQUaWTxF01RFOxKi01VUWkMVXUSR0EdVBU0FpF\r\nrFpF1Um01bgtgpZYJZS2ntRSq6BSR1UpFVXqJLQRRLU0bguqIyTaKci0Cp2IlrbGiNlK66SaaKka\r\nCYlR0uqs2amtgzE2rl2/oVaJEdpY5uLy4sK169dJKF0W+6srGzFbQUa0pQgD+ziqihgYSJGhnQ6S\r\naCtImWqOiogYrSC1Cq2ZkpgtKiXBLCVqqoOWiGAiic5KS2kxJ6202qKCpZPppKWVLuayyCytmCLM\r\nUiTaRRcyhrbSSmloS+uo1KplOEmZ1UkTVamTllRmETFNJxm0QXVYFZE6ikFqtkYx6Kw0JFo6mIiT\r\nIOKkpkqDKlJiNeMo1D1KlcQdo7FvZRJVd5QgNTEwSpHQLpbLSUocJaQMLCHYbM+NzZZWrIJlkZZZ\r\nSQSNk1TiqCbCsIokDqpq1RioaklKqIOqVa3qjliVOgiqpiTMEKQO0kgdJRFUGXGvsSCRUnRYlUZC\r\n6ihiGIR2SkrLjHRDaYpKa4y6UhdL7MXZjXNjDNlN3S16vnWtvOnWlQceuK544vLS2XZj2S0ud3u3\r\ndjtDLIqQmImGTYjYGrY22hpjmK2EJA7ailVRZqc5p1jNSmKMYXaiqmYYYoiUYsHWKqS01TllDBmM\r\nsCzTkkg2ZomDqir2povLvWuPPeGZ7/xsY7uxfcYNz7523by8fLfnvOOz3+0VX/PVr3/px3zsfr/s\r\n3eujPvqjxxvf+Mb+ve/8zok4KYJ6S0Hdd99b8fCDD8VdcRJ35fd+wu87d4/Ly0tf9ZVfuf/cz/kr\r\n012x+oF/9I/633/Yb95b/eMf/EGr5VP/xJ/YuMeNGzd8wctetv2Cl73MHV/4RV90/kc/5VOuvuNv\r\nf/t0UidFndRd9Quwdd/P28MPPhRvKe6Ku+Ik7oqTWL3zO79z3OPPfOZnTXflDW94g5d+zMcuf+s7\r\nviPPe4/nxW3v8Jx3yK//Db/ed3/Xd1sVdVIndVIndVfd4+ajj9R9v+hsNnXr6upZkV/ZJx5/YFzt\r\nzE6d1U5tdVZLWhLKrKNMmhJHteo0EqlVSO33OxPXrl1zttmaZaKzri4uHWw2QzJYpok4KEVKBmKW\r\nqIO6rZFa1SgzJNHWHVVESlHEQRWxaj1FSyJICdoK6iCmOoiKVVFHVVEaQhHV1hRFrErcNVUU8aRa\r\nRa1aCS21alFFJolVKXUy0NKWoI6CtkYdBalVVRGE1kFRJbRsZlBSJuKuVtVBxCwpI0zUKrRoxaoI\r\nwZg00TqKakmiVq0iSOugiorqHBKiitkK6iC0zNIoYtW6I2MIgpZMzq5fs+wXs9Pu1qXz69fotL+8\r\nRBGxCilDFFHEaE2VDCmpkzIwnRQNZknUqggmmwbV1kFL0VRVW0NotSix6kQctaKCTNKas4bS0sqs\r\n0VpaOrWVOSmKlrlopywLc2poq42qlJSUIrNaMmmLypwqDoIWYbYGglqVKCWlIqqq6iAlpSW1KmGU\r\nNqKo1FFmjZRE3daa4qCpJsaCWQZaKW0NNKUlVqEoQsJUaRy09XRzTClCW0qsQpESJZ5UBC3dIIyJ\r\nklkNKZuzM2fXrzFLEZa5tyx7BwNpPClMbEpVU8poHJXEbVVUpE4aR3FXSamnCqoalJSmqsQqNvto\r\nrOqkhIZYtZoYaGmRkEkRq7ojqp1GQqxCKnXUIEG1VFxNdleLNMZ22Mxp2S3mMo0NOs394hkPXLfb\r\nLa52e9fOzz12ectFplv7xYijuC0RJCFsMmQM+1bVQVtDBK2jqnZShkhidjpKmFU1HVQQJxFxEhXR\r\n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\r\n/ut/3Zd+zMfu3vO93svzn//8vO/7/Zo85x2e47/5FQ9nM4ZXvuIVu1e+/BXTz+Lmo4/Uffe9pTiJ\r\nu/pjP/bj85e8y7sMt73Lc5+bP/mnPv3Mz8OHvPCF46W/5+PGK77q5cvf/57v6fu9zwsuP+Z3f+w4\r\nOzvv93zXd81/+2//bVEndVJ31T1uPvpI/QJt3fczevjBh+Kp4q44ibviJN/0jd+4/5/+5//5zD2e\r\n9axnxT3aWuWLvuALlxe/5CXjxo0b7njOc56TV37t126///u+f37Pd3/X/KAP+uB8yIteuHGP173u\r\ndcs/+v7vn07qrrqr7nHz0Ufqvl/0PvuPfep4/vN/5Xaz2bz7fPOb33M+/vjofi+lZZydiZiXVyw7\r\nhDBFWrPTdntms90ygoiYs5b93uV+5/Lqytn1a4oIquL8gev2c0piK4q2hKpld2W2hlUimFYpIbWK\r\nCGogYkk11VbDmG6rgxmrKY17VSkNTVRQaREnERRxW+uOOgnailVQgqrWbaUIDeoorTgIs5oKImYR\r\nJ53itjoJKdNtrSJxVHVQRcSqVN1RVaUEVYpEQ0qsGicV1CoUQZE4alDqthJVqxKrMJVEVecUIdFJ\r\nVYI6qdtiqraCWcQq2go259eMTaShKEI2w3Zzbpyfu7y8tL+4tDk7J1UkjhoWEaQ14mh3eWW0DjYo\r\n2koi7qgZRw3DEKV1FKtqCVKCqe6IuKOtgaJorEKrsyKCWZpIaKnSqYohncypGMisdpqtLAtzMvfG\r\nrGVZWPbSapmdtDahikmHmRh11DpJ1JAWMVOCoGxaFpqgDoaok6oiswStGGZIS5iJMesgSquiqgki\r\nSphWpWKkWhQhoZOmRlCrUKuiJBoagobMiDqIaGqqCKKKKopgIgOTmlKraEiGs+s3ZBNFVRpGGFvb\r\ns415eWm/20sZiYoUIw4yHO1uXdjkumw3lt3O3O2klUYdxEFUhEatQlsjcRCRRhHVxERaSpwUHVWr\r\nIGTSQUtC1Bx01JjUqjQ1EgSlVkEdJYSpYjUJkphBmCozmtAS6qDqpEiYrTSoto4SWWK2Mqiagw5u\r\ndedit7ds2V7bmIlsht22bIeMaT+4fv2an/ipN7sxYm/vasvV5d7u8so2sWvdVToNEasRGcNmM4zE\r\nZrMxZ0VshLloa4zY7RadFUGMMSShtLWbO1HJsBEHVRFRbQkSnVW1KLGqo8k0ZTtQU0htxdm168Zm\r\n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\r\n9q3fOr/tW791ft7nfu7eW1cnRZ3USZ3U09x89JH6L2jrvp+LOImTOMk3f8trzt/7fd5na/Xcd33u\r\nePVr/kY+6sM/Ym/15V/5ldtnP/vZ8Va86MUvHn/9FS/38S/9uMVtX/JFXzR/5N/9u37Wn/2zm3d4\r\nzjvEW/HYY4/1s//cn7981Td900Sd1Emd1D1uPvpI3fc25Zf+0l82tmPz3+SJxz7Qxa2NVsPcLzYi\r\nBmIm0jo7u6ZlM4YxhqKo24LSxEGsRpxdv2Z365bOnfPzazI2YpVoHXVO+6srWk1UDRGkVBVBitBW\r\nVUSdpFYVdBYhxEmtWgdBW03cK0KpUkdxUnUQtFYVVESlThpa4raqoJSWoKGqZYSUOohpIg7qoAZa\r\niqCISpFQq1Kq7qpYlYgqjaiDokiJVSJloiqtijhpSVBSitSqiIOgpUo9RdXBTMWqDHRORUpVMFF3\r\nxDKnOGlIaYtIa3Ya242xHdpJolh2i93VjlHj7MzZZksY4ijk2jUXF7csV1dc7WQ7HKRlThFaI2gZ\r\nETEaVFpBrVJCDEHdESdVddDEQUrcFtJSihSlahStqraotIiGonNKSWt2YU6ZU+c0Wh1hqbQsC3Nq\r\nK8vCXKS1dBrLFDUzHVTFQRURQYq4K6SlkVqVUUoyHNWqpknQiKpJQ0KjLUqiGKUltaq6R6qIg6gq\r\nMkkQWqqETNI4qGpIqUqrSqziIHVbdZk0UhKrKIoocVs0FQdBjZYwGwcJm7NzwsRoXDxxy7LfE64/\r\n4xkyIjOqLDVbTcVBHQWlJcWokxjiJKiJiJNSUjKGxqoUQUniqHVQRCXUQUTVKqXR1ElodZDGpjSk\r\nCG3FQVBFaxUJWkWsahVK1FFRgqJBkGgqk9GoIuK2ScQcVAlac5RRc6m5r93FXkfk2tbcL0Y2Wmw2\r\nJi53O2/3js+yu9qzn7bXzs2xcTV5835vwbURnUgYQRFUShINS6xCKDZjI639nGZrs9kwhmQYif0y\r\nBXMubDaIiRlqFZSIEeqkiiLmnLSqiFq1tp3OgqC0nJ2fm2Uf9qknbj3uxrhuTJb9FMw5zcdvPXP3\r\nU296hze84Q396I/4yN03f8trzt71Xd817vGr/9v/djgp6qSequ67b/Xwgw/FWxd3xc/gy77kS5cv\r\n+5IvvfjAD/qgPO89njf2+8XXfc3XTMRTxeqFL3rRcI/Xv/71E3VS1Emd1Ek9zc1HH6n/wrbuewsP\r\n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\r\np+pkH7MPU/ti9tGWvWZqjK4SppuzbuNsn5hVx4yz7osU1aJhqmuY0liC6qoOu93R7uZ29/i4y4wH\r\nK3p3tDqow7bJjGJvEStk361tWWs53tzZb+vwsQf7ijeOd37o8Y2G4177lERL4y1RpSWR0HoiS1sr\r\ny+Fw5frBtbu7o4jpuLm58fC5d/jABz5gO1x58OCB5x4+tOKkZopoyQwtIomIdJewDytM2IaK1VhZ\r\ntKjVSFloqyuU1dhTjQ+aOolglSRWo3vN1Fq1tmWmejzm7rXXPwUfhdc986PupRdejB8unogfLp6I\r\nizj59M/49OUpf/pP/2d9//vf721f+q4v2X/313+dL/jCL1ye8rnv/Nz1bd/xHYdf+U//03d//s//\r\n+bqoi6Iu6qKeqLe8/Oor9cy9gx9b8WHe+93f9fBTP+3TDl/2a37N4fXXXn/8h/7gH6wn4i1//z/w\r\nv1ue8r1/8k/OV3/VV42LvP/97/euX/JF+9d/4+/1zs/7vOUpX/wlX7K+4z3v2Z38k//4P3H373/N\r\nf9Cbm5v+S//8v3BEXRR1URf1lJdffaWeeeavwcuvvtKXXngxLoqgiIsi//pv+s3H/+3P+BmHbfa1\r\n3zx+4fDcR336HK4ebG++rm+8rh2m0pGyhFZLREMbZ1XJcq+0JEQM0iKqmkqrCOptVRQtcZFES4fE\r\nyWhZqJNQZUhpqiGJJDoVF0XipOJkonFSZw27Wo0lqiQUJaHOIi0hjaCtlai617oIIuqHqQ9KKfZU\r\n4qTSUEaNCoI6SWSvCUGLsuJeVRQxmEVbZxFtnQ0SWuIsqpKgMkE1o60Nk8iiRasdE4RBShExM25v\r\nbjx8+DypOql7a4vD1ebueGeURFAcb+8cDgdNBUUSVOokBKkl6i2tlaWt5SQhRSWhrCwtcZIao2US\r\nZ6l7VWdbg6I0liqS5Ww6KKFGnLSoOgnTakiZ7gwSWaFIsbPfOWSz7o5m7qTMHGUfMZbqfmR201E1\r\nq7IWM9qxErtaGNWwMEqrZRnUrlJSJ5XGIEErQ4KE1BhEyioVdZEwU2cJHbQmsQ0S7ViYMh0LK9FW\r\nSjGplAyDtUjQca8oaZ1loShNCdNaLaEdgtLUbJW9migarEjJUON4e+twdU2iePDccx4/eqR3u5t9\r\nt7Z4eP2AtaQx4qxOynZ1bR2uzO3R8e6WHSlFqFqJaQnFSnSwiEhjVBKDWVRYtBW0ToLoijqrFIlZ\r\n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\r\n3vVXS31Cvu73fu31N/ym3/TID/Kt3/It59/zC/+uK+pBPagH9aAe1CfUD/Lq66/Vu/47cfGXLh7E\r\n237bl3/55ef8vJ/7yDvc3Nzkb/87fvblZ/ysn3n5t/+tf+v6pV/8xed3/pnv9LZ42//1a756f8Wv\r\n/JWHd/jMH//j89u+/MsvvtwP6cWLF37lL/8VL1APinpQD+odXn39tXrXu/4adPviGcfx3hz7N/U7\r\n/qv/3sf+xKv56LPnnn3PR3zsu77L8//qw/a7P2K/7y3n81u7Jydn19nT2bWtM2WqrWy1dGhPTTFS\r\n2tIKstGzpisTndj10h4hsWc5K0HIlRgmtJKa4SxnKqHjTpxb99adcae6KE0JTVRFpB60nBSn5aAb\r\ntiLubYOi4l7EnaJYstWWxboTWi+FtnrEpiSytVN1JyGcRrYMQYsEi0oqKkWCCnJEZxmORoShqaQa\r\nlGk4xjQMDZlqIuFISMSdieMynrz3k8xxYWIy5hiXxGXGZJznrRfPn8kcXnnPexxzmCyJNDruVCbq\r\nzlYmnj97y94+thm7dao9a8/a1rloUbqIPet6Xfv81D1tOXflXG7Xnqc916a2pNUtib3WlmkIu7Vb\r\nGjmimJKNTZxTzXAZe0RSPby0404VTaUx9VLDzqg1okfsxIhO9Bg7IxnNoROOw8zIcehx2JtDjosc\r\nBzMkBhd3MnbCxM0cbmY4QkZmmDGXOGYcM1wOuRmXuTiOGzkiGZlDZjSYcSQyBxmmDmQOnSFEJFFE\r\nJCFjlcRFZIaJJC7HyHEoJuPIYS6HY0bmkDlkhrgTBFHVXZnDzMFExJGDic6gItolURE0Ne4kJJo6\r\njCQMRUqEqZYUiR2KiyjOocZNq6HhxFEkmhhxEZ3DhrQOcU504tiajGtIIq2InVAuSKuiiagmpqRe\r\nauiUxrEkdFgcjU4M0phEUwlppGFoijjKqHWnbIg7RYPqsEhiGimLHVKCaUnUg2LEhLoXI9aqGBE0\r\ndS/1UuNOKRGDaxhjWrepA1GpO7Hq3tRLtaqaUbQcHhwqGKNWQzClJSEiYVTcC6IpiRFBEkFbEkSw\r\nVjva6pWW7bqXxHEcMtGtezdPHnvPp3+mV55+ksvlohlFkTAzEiYcxygmvPKeV8zEm2+95Wl58uSp\r\nthLvUM+ePXN7vWpXREMFMaFdCdtTW/dmDi12HaJdMwdqUweKqHrQMEhRKl5q7dBUVN2ZcNaep8wh\r\n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\r\nJ0EriVoIIV3WWt5979P2/aiNmTGi4eHDh56++y6Jdnd3PMqMldhDEg8ePXTcK8GEMBOZse9HQsvx\r\nuJPRLhGpkxAXmZFVV/HcNoNoaxJdy1pLZtwcbiTRVRPSZZwcdxZJUKv1qiKhcVG1wmpdJCaVtcyM\r\nFTKbbNFUMBnpMhkzo2G2MaGWaWwzMtxsBwebw4xtNjcPbq0t9i7HvptPf8e3jTd+0Dx+8k4/+fFP\r\nxFURV3UVJ1/7b//Kp07+/W/4hrqq19UrHj95p974QXXwl6+Il/qrfuWv3L/6Z/3MfuQjH4mTj37s\r\no/mlv/yXzY/+MT8mX/blXz5e8fTpU7/+1/6649/7k37S/Ni//ceOV3z7t3/7+kf/oX/4fdRVUVf1\r\nUr3i8ZN36o03/hp0++jD6/5T337cDodv+ciX/q2/74tvb//rD799++e/4z//f/5P9ltfeOOwfXgd\r\nvL99xKex373v/ul7trV5cL9bxtOJ+3Js2UZnHLdhiySuwgzbmNnYNia6jYrZNjls5rDJ4WCb4XCw\r\n3RxkhrKJSezb6GyiNkQIZpixbyPqsB30cLC2Wytsc2AOhExsM7ZtSAiH24e2w8bEiJlIoiHGltFB\r\nUJKQqEo2mSEhkUQSSbSVjrk5SIgIkqiKSCKJzCZbZGIyVkbDiISGtrS2UnWRkFrikGFiZUzGIaPb\r\npol02RJze2PHOu6y74qVSKuplRExZUvcvvXIKhsGt+H9u3s9Hk0riT0x27h5+NABaaxh33cPslkT\r\nB2OFhFU2sYaZaIlRTKJCkNiEOqmVuoopQrBUEZFSJ3ESF6WIoIq4qjCuEiMSUm4S9VwMqtpYYVSc\r\nRdVZXFVMPBObWGhKXcRZKU2Mk7pKUGcxNtXExeImVMVzEScpZdRZEktsoUWrJRkXjS1FnLV1NqGt\r\nhggliarUVTwTEZTEc/FMImhKK+IiLiLOGtRFEnXSei4JdZFQoS7imZB4JloSVwmKIKirSEJI4yKk\r\ndRUVVOKigrrIiJOWUJE4qYu6CuqZiLMikjhLSpFoK64aFxFxFld1kYizIkyoq7iIOItnEkQRRVyF\r\n1llCncVVxElQV/GaiKrPkHgpEicR1BDiqs4iXlfPRUQEdRZUBEWcBVVnQVBnSShCvBTxmqAkxFU9\r\nF8+NUdzdve/dT39axcxGPBMPHz5ydzza74+OxyMZCbPYxZa4fXQjGQmHw+bB7QPf9Z3fYa3lqtol\r\n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\r\nxUVxJlaxyne+9S2PvPSlL40H8NrXvjZv/e63H/ymT37D0Zd86e8a//4f+kObl/2yXxa3+V//0T9a\r\n/oM/+O/ffPLJJ4ta1arO1DlPPv1U/WLQOdQrbxxtP9ZmPHK42WinzgWx1wSlzqljrb0mjiWCWiWx\r\nF2ci7i8o4pYibqmdOpYiSBwrQdX7rEgcaxGC1pmgiFVQexFUUO+bWNXzixcgqHuKndDaCYq6oIid\r\nOFaKhLiHxLHYiSCJVeyN0NYqTtV5VbEXp0JQO1U7JWjrVONYS1VLZ81Oc05ac05zTsuczGnOaZmL\r\nZdma22lZFttla7vdWpbFst1alsUyF3OZljkts+ZczFlzTm11TrM1Z3WZZqdlWSzbxZyLOadlTtvt\r\nYrtdLMvWXBbbZeto2VqOtrbbraOjI9vt1lymZU5zTnNOszXnNDvNZZqzZqc5F3NObc05UXPWXltt\r\nzVlVlqnqsUdfIoPZUuZy5Nq169pKiKGqXWhFPPbYo5a5CMaIZS6qjm7cdHR0ZCOq5tx617t+xtHR\r\n4sNfeuj6Mz/vb77tzf7BD/6A3/lFX+Izf/Nv8uilAzpRShPPK6QhVWdmGC3illoFJai7qBP1/Koi\r\n7iNWtaqdWNWDiPuJM0Ws6gMmbom9IqhV3E+tYi+OJW4XqwaNhKpVHAtqVbeJM7UK6kxQhHgAQRwd\r\nHTm6eV2QRmcty+Lg0pAMM4uETobYiDFrLlsSSSTMLogkNoiQiDgoN1vEsj0y55Q4EWlJTCRU7SUx\r\nMnQ5MucUO60kNpuNzmodm7OKzqlhmQsqic1mWOZkWSxzi6ImNqIq9iKiisggs1I6EMYMQdGJGIbN\r\nrGXZ6sFGUy0RRVUyRC0piQiTbGK2bty48ZHPPvvMy3yAXL18Je4Uq/ybv/W33vw7/8//Rz72V/yK\r\nA+d89Ed/dN769rdd+tw3vvHonT/1ztr52Z/9WbeJOxVBEdQqqBNXL1/Jk08/VQ899H524KF/aVy9\r\nfCXuFBfFmVjFmfzJr/5PDl7xilcM5/y9v/t351ve/Obl9a9/fT7vC75g88QTT8Q5r33ta/M1f+7P\r\nbv74V/6x5du/9duWT/8tvzmveuWrbA4OHB4c+JZv/uYFtapVrepMnfPk00/VLx4Hc87Ly9Irh5cO\r\nRzJsl63ZinPqgiJI7ESdqZ1axaoILYlbIvbqfkJcEKfigjpRcVERxKpWQd1DnChBS91f0KCqPqTV\r\n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\r\n4vVveENQ96o7vvCLvmj58I/48Hzap3zq6ad9yqeefs2f/tN+0k/+SeO3ft5vvvXVX/VVE7WpTW3q\r\nkudffKEee+yfoJ3HfjyLg9/223/78pEf9ZE7l9y6dctv+y2/9fSr3va2upD/+vf+vvnX/9pf73d+\r\nx3d45zvf2T/8x/6on/0JnzBc8iHPPJOv+tqvWd7+rd86M4Zf8At/4fKDP/CD/bc/+ZNvf8/3fE9R\r\nm6I2talNXfL8iy/Uj0ODod60358+s+zskljnRBFVmwjqQVFNBG1FiAcEdVT3SBFBHRXxoBC0JB4q\r\nxKYO6qGqxCaoe7T17lRpnUmciztaEnfFI4QUIaXuCurVqnsEdaYqiTqqTTxMvApFnGlijOH7f+AH\r\n/cAP/hBxRx0loSURVBxVZCK0NAwxyhAzRbRTGlVngpJQJZHWKA1F0DKCMltBEVWVWUfrXHVO+3U1\r\n11XLGLGu05yrYozQWltrqagaDhLqTE2UVtGgjDISUa0zDfsWRUhMzNZiU1WVDLM1W6lNHMRMjYbU\r\njINaGmt4YnditE5PTw1MzLqrCNKImliWYd3bhJRR9p32+73dbqcqYiS0iGSoozhqSeqoiYaUKqqt\r\nkWG/7r3rpXdJht2yU3XUksSyW3RdRX3gm97f7uTE1ZOrrly54mR3YmSoqoOEOJhqSFAairhXi7gk\r\nXpW4q34U4qDuVRfqPRKberTaxIPqoF69ukf9yMQdcVeqdaZ+dBrvoSIu1CbOFbGJc0Eop7dvW/en\r\nWuassUTRksTs1E4Rsysl4kwjaGtVuwQVBHHHiCkakiGJzrorcVccROqghITTda+zinVORxnDLHOd\r\nxhgSRoYqQUKYcwqCMRm7nYiINKiqTR0N0dg04qBVNVPDQZGQqDLCiv0qIUKrLoxEW3UQptI6k6KU\r\n05s33/Tyyy+9se1IMj3Cc888Gw+KC7GJTWyC2OTWrVuuXr3q3Gf/8l+2/PE/+kenC3XH5/yaXz1+\r\nyaf/OzsHX/11X+uTf/En3v6kX/SLbtsUtalNbeqS5198oR577J+w4bEf05575tm4EJu4kE/+lE+5\r\n4pJbt275D/69f+/2V73tbfUQb//Wb+073/nOOviVv+yXr9/0F//idJ8P/gk/IZ/6aZ+2fMqnfupy\r\n7do1b3n6Lfn/fMWfOkFtitrUph7i+RdfqB+HTteOxG6u80PnnM+MZUTpOgUJiXsEQVwWcVAH0Xik\r\n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\r\nROpMShISdVBqE+yWSJizGDKGoJ0EnXSKo1gxVcbOaJ2mKkYjRQgaJoJFJJikIczWyRJJaGSdxjpN\r\nZO4tp7ess4igqaKogxLVREJKHbTGslDW/f7kpZd++INwDdefe+bZeLS4EJvYxMF//l988e7f/Pk/\r\n/+Q1r3lN3PHbv/ALvOMd7+gf+UN/aP0Tf/xL5md+1mfNj/4ZP2O45A1vfGN+0Sf+4sUj/Ne/9/fe\r\nfv7554va1KYu1B3Pv/hCPfbYP0XDY+9Tnnzqqbjjp/zUn5ov/p2/Y/mrf/2vn/z2L/j83cf/K//K\r\n+KiP+qg4eP/3f//8qz/rZ40/9/Vfv/s1v/bXDge/9DM/a//2b/3W6T6np6f90i/5ktNv+eZvnqhN\r\nbWpT1CXPv/hC/TjWduAtp+v+Q5exWxaLdU5VEsRdrctqE0fxoLispaqiImITQTxcbeKOuk+di4eL\r\niINWEJu2atPWubbaauuorbbaamtZFklQR521ibbOtXVZWw8ogiA2Ceofr9ISd9T94tWqMwlijOEf\r\n/qN3evnlG5IYiSTGiCHSSEKiDsIQ4qBSiikEoc5VW1O1aB1FNZHW2pqN1JkVdRRxRx1EJyPDIjJL\r\nK+ic2mld905PT61ztc6J0knraDWtKNqihLYaGjonqmiimK0VEUnEUR2taEgiSGhYOxVBx9CwoioO\r\nworaxEErrf3pXuc0StHQkKAU61zt96t11unpKak6aGmd7HaeeOopV6894drVa5544klnEsSKdb+X\r\nUqyqCIoWiaMqIQlzSqtl3a9efully7I4uXJFsc7VXFeNM+v+1FAf8AEf6Mq1J5ycXLEsi4xh2S0y\r\nhrYocSaJM3VHCUVtalOhRDxSbYLUveqVFXUmKFpngtR7rqi7YlPUveJCEPcpiqKqjuqoLtRDFXWm\r\nLgmC2ITYxIPq0epHph6uqE29Om1pUZfFUZ2Jg9jv927evEmrrZEhQkkJ2kpRTJIFsa4TIdU5TcyE\r\nOjNRpMRBnWliXVdzXSUk7qgzdRAxEMrIYoyF0Dl1XWkRc06zZUQytFNbI0PG0CIIglZNY0Ya6qCm\r\nqWoqLQ3iTB2U1Lk1VaWMSfa0ZVROV1QcpOKSYoTEmVK0NcvsVFM7x43r1z8Ir/na//ZLFw8XxCaI\r\nTWzy3HPP5c//xW+8+qmf9mlXXvOa18R9nn766fzW3/bbdl/1tV+z+y2/6fPW7/qu76pX6Wu/+mtu\r\n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\r\nq1jnas5V7LXETdHaK0GDGCM6Ypa6bTdXCWNEx2IZG2kdJDGWYYzhUpiJzmndbk2RxkEaNR3UTYmI\r\nqjSCOaiaYSOi0pizZpkTp4u8ZxqmJmKvdamhJS7VXmuEls3mlMSllhkX24s88Z4nXvWhr968CG92\r\nlC/4DZ+3YrX3P/z3//365772a3za6143XPEpn/qp43///v9j/OiP/Ehf/vKXe+glL8nP/Fk/K//m\r\nZ332FnVUR0Ud1T3cePyxesFPG48+/EjcWzx/cae64tGHH8mNxx+rf4GGF/ykevThR+LZBUHcKQiC\r\nII6CfMgrXjHc9MY3vrHf9q3fWuRrvv7rNp/8Sz55uOnNb35zP/PTP337xje+sb/w43/hePiRh+PZ\r\nFfVMRd3lxuOP1QvuNmb7mu1u9zOWzTKCOacqLS21F3cKcVS0lAZBKIqijoq6qe4SBEE8rZ6HUpS2\r\nbqvOal1q66B1qa04ausgIQha2mqrrXtZlgWx223NOR20tdvtHCRxkMRVSVyVxPNV70c9u/oJ05bW\r\n29/2NrvzCwc7tRaz2lIECWG2JsYYJHZq10qCoWGqJBZxMFtKZrTMTi0Ts7RVYdY6p3WuIlqUzlLW\r\nOZ1vt7YXW3O32u12zs+3Li62ttutpy4uXJyf215cWOeqRRkZtDqn2Wmdq926slZ305zVueqcrJN1\r\nspZ1Wted7dxZ19Vcp25X61zN3TR301yni3VnXXfsVt3u7NbVXKdud7pOa1edO1lXXVdz7sx1Z113\r\nuq7W3ZbdBXMnKura2an777/m9GTjoGFVDacnJ85OT001wxRzt5PWMGi1FSxi1F4ctCURB4MMQVVn\r\nUbHXmrEXaVFUgjBNb3v72/3wjzxujOHs7My67rRVxEEFc64eeugBL3vpQ8bC2cmJk83GsiySgUGG\r\nBCX2Eok7NDSuiIjb4pa4JQ5Sz0MQxC21V/cUxBV1VEf1tKJuibsVdW+1FwT1E6huaetgzuni4sJB\r\n0ToqZ6dnJDrrljGGa9euuXbtmpOTEyebjWVZjDGMMYxEEpfiUlvPR+MoiOclnq+ijuqWiKO62F7Y\r\nvu8pmdUSkYQwZy3LMMScqzGGxqWpmqihDqpKkWiLkljEpjQl9uqgQplzausoDuqgKEFCXEpCSSto\r\np4O2Kg5GazRuaStijIEIgqJqJBKEOSoh9uqotEQIs1NmHdVstczQSSedNcbCLEKiiBgiJUii9loR\r\nxHKyIShBWhfnF7qu2W0vXnFysnmxo7iHL/7CL1q/8+/8neku165d8xGvfW0eeslLYu8XfNzHLf/p\r\nf/6nFkd1VNRR3VYv+Gnp0YcfiWcK4pmCIAiCIJ4p7vLow4/Ev0AbL/hJ8+jDj8Qzxb3FneIojoLY\r\ne/GLXxw3vfSlL429P/e1X7N8yqd+6nDTj/7oj/ZzXv9Z2x9761uL/Cd/8k+e3Hf//X7dZ3/O+Y0b\r\nN+qo7q2exY3HH6sX3FPr2lz7Wu2HnJ1szNZsRVB1p6qIZ4qDuKmeoUHdKai90DpIqIOgnp9oJ+Io\r\npDrrUmntRVtCp70QzCn24igoy7LY7XbaOmgrgjo42Wwsy2KMabfbWdeV1pxTMRIHSbQx4lISVyXx\r\nrOooaFQ9rSSuCKqeXR1FUAdxEO9XqduqttsLb33zW+zOz63bC11XnVNVGzIpMVStahiKIZqKvTAa\r\nhERrL4aIWltpRBETKe007a2TTmtXLZ3TnKutaU7S2q5bu7mylsb53Gprac1Z2+25dgq622piLRG7\r\n7YXdutN1dTAnSWhVaVFtzFYxBCXV0rq0dmoxmXO1dqfrqrtpmtqaszqrXbVTO3UW05zTnFOLTnXT\r\nLJ3SWJaN6w/c71UPf7itYaaI05MTpycn1lYTB7P11MVW6ml1UErVEG0VQyVRtFNRJKTE0WxRVQmJ\r\nvZjr9LYfe5sfefyHSZ2cnNDpySff5+T0zOnpGaYkhHVdveJDPsi1k43NiNOzEycnG5tlsYwhiTEi\r\nGZJIIoJISEgoIiJSl4o4iOcUVwT13CKq9kJQxDMFtRfPKkFdEdS9BLVXxJ2Cuoc4quetdRQHbR10\r\nTufn587OzgStSwnXzs7s1ulexhgOFve2260Sz1tQd4mbQu3VvRXx7II6irt11vn5k7ZPPelgJNaQ\r\nDNPBNAY6rV1lDBIHKUasqVmUlhlHrbZGFskwQ8VMTCRErOha5nTQVhIHLQnqUoQEMddJK+isJLSi\r\nEqLW9ULn1NacE1EHdanTLG0004xLwWgcVYSW2AuppA6KNJQuaJloEBFSVRRRIVS1dTCwtoiGMYaq\r\nJNq62O6srYrtxflLdtuLhz7yoz5q/OAP/EDt/epf86/G3j+5ccMPfP8P1N5v/IIvXL/2L3y9X/Ip\r\nnzI8i+1227/yLd+yoo6KOqrb6oobjz9WL/hp4dGHH4lnijvF8/CX/vI3nH7QB39wfuUv/WUXqKM4\r\nqpseffiR2Lvx+GP1U2zjBT8pHn34kXimuC2eKW6L24I4yo0bN+ajjz467F2/ft3f/rvfuXn1a14T\r\nN/3ID/9wP+f1n7V729veZi+//9/9d/OqV7962PuvvuWbz/6tX/frnvqB7/8BV9Rt9SxuPP5YveBZ\r\nlYd2c37kSB5YlhNzXXVO4qjuEHGHoI7iaY071aXEbXEpoa2DxF5EVambgno27XSH0NZBW4LQ1kFn\r\niUttCW11liW0btlsNi62W08LyrIslmVBjDGcbDbWdZpzEkbiIOJgBCEJ9bQk3q+g7lQS9xBJKXUv\r\ndVC3xVEc1V5J7AV1ULe1NTs99eT7vPUtb3F+/pSL7YV1t5qdDoqgLUIQZmJmEdFMbe0atRcEjVna\r\nutSac5rdmbM6Y84Vqznpym7dWru1201zx5w709bcVXc1rZpprliZnToma83taru7sJ2rdd1Zd9O6\r\n7qxzNdfVdru1zmmu05xT59ROc9acUzu1NVud1VY7tdXaK62irbqpRbWltPaqdSkqqdZNdZBEElFE\r\nQspojbImHv2ZH2lZFstYnSyLk81GE201kZLWxcW52SmpInWpaKgIkqCIYO00EilRWhVFRGqvgohk\r\nWHc7b37TG73pR3/UnGxONo6KevLJ94nYbBbLiLbmuvqgD/ogSSzLsCyLjAWLMYYxhiSSYYxBQtwU\r\nBBFEBEHFQZG4Io6KirhTPV9xEAdRz0tQBHVUd4q9UHsVFPETq61bWnvR1i1FWxS1LBtzXU11cXHu\r\n9PTMpVAEy7L4QK3ripJQz6mIo7iXqhDUPRTxrIK6qYinhZZ11lNPPWl3fi6GDKwVNYSExNqaszZj\r\n46CttdPpWGwMu05tUUHUbLWVQYe9SobRSIuYilrn1FYdVBviprpUMiL2Wu2qnYgqZc5pGXGwXVfE\r\n7FQUib24lBgqXUmMxi4MjIaUIihJtHRURESRiTASB8UMVVpUSktLwky1SNwyMBNVLRmLhJYktuvO\r\nyHCwvXjq/ve9970v+z1f9nvPPuqjP3r3qle9Kq74/u///v7xP/ofrP/d93xPv/DzPn/39X/pL20+\r\n6ZM/abiHr//ar9t+93d993RU1FHdVlfcePyxesFPZ3Fb3BbP4au++qs3v+gTP/Hsne985+oojuoo\r\nqCseffiR3Hj8sfoptPGCnypxW9wWd4rb4iiOYu+tb3mLRx991C2vfs1r4qYffvzxfs7rP2v39re/\r\n3cGnve51+bwv+PwTNz30kpeMRx75GfmB7/+Beqa6hxuPP1YveD4e2q7bR7LkZGTYzlXVpVZQ8Zzi\r\n2RVxVOqKoNRNoYg6COooqToItVcHbd0htGXai5qEtg7aOiqirYPWXqxz2rjTsixOE7vdTlsRm9MT\r\nY4TGQexlYCISl5LQEIqRQauIvcT7FdSlqqeFIp5FUEetq+pOxWgRB0GDktiLqoO2DqqSeMtb3+ZN\r\nb3yz9773vc7Pz52fP2XO1ZzTbK3rau5W6zpN1VbnNFvrulrXnbnubLdb293OxXZrrqt1ndZ1tc7V\r\nXKfOWudqXXfWdeqknWqak7Y6V+tcrZPUXtWk9oJi0rjUaXaas5Q5V+ucWpSaioiqgyRGgqgpgqDa\r\nOopLKQ1F6m5FEJFQJBExQtGSMsaQxBhDEkmMMSzLsNlsjLEYIzaJMetDXvUqP/tjf77Hf/iNrl2/\r\nLok5S6erzs8vrLsdqSkOhkprjkgpVrUIiZYgiYoqrYMGrZQktIQkLi6e8qYf/VFvftObtCzLRlud\r\n1YGyGQutS+H8qaecnW489OCLVJ2cnNpsrhvjRBJjLMYYbosg9uI5xFVF7MVNdRSXinie6pnq2dRN\r\nRVDPQymCUvcQzy2oK+p5q704qoPTk1MZg83i/PzcnHV+ce7s9Iy6VCRFPJsibtvtdi4F9azqtrot\r\nnimoH4c4ChpXxW273c5TTz1pt72QEDHnFNES1QxTzXW1bM4ondVZIxEx59TWpcRRZQxBW8SmDNVQ\r\ne3WpnTorcVPFUERciju1iCQO1q52251xdoKQwRhGFssYtMYYpNo6mEVJYo6ISKOdirgtJZglDkIn\r\nCSojhjBiDtopambKJjJ3lCY6J4mD2GutSmjRojQy4uB0s7HbrTabYSzL6fXr1z7k4z7hE8+wustH\r\nf/RH56v+3Fdvfutv/s3b7/6u7/b5n/u5u2/4r75x8/Gf8AnDFd/8Td908Sf++B/foY7qqG6rK248\r\n/li94KeNRx9+JO4Ut8Xeb/+dv2N53S/9pZvX/xuffuEo7vKn/syf3vzSX/7LTu2t62ovjoo4KoK6\r\n4tGHH8mNxx+rnyIbL/gJ9+jDj8Sd4ihui9vitrgtboujfNVXfuX8xZ/0ScNdnnzf+3zO6z9rffvb\r\n3+7gd/6u3zX+7d/6WzZnZ2du+bG3vnV+x7d/+3RbPYsbjz9WL3he2o7dbr58N+eHnp5uEjXnRFAH\r\nRULrGVqXYi+eqYijOCpxW+NSRJU6Shwk9oqIoho665mic7qlLaEtoq2DYCyLZJAyWec0O8057XZb\r\nm2XjqmUMy+mp1lFQN9XBbrdzkASVBJERWklo3ZLEvRRB3a2COornEtQdgrqpqKsi4rbYC2qvlLba\r\nOsgY3vKWN/u2v/Zfe+zGDf+///nvee9732u7vbDOac5VZ805ddZBVYtWW0Vbt1Sp2xJJjIREYi8i\r\nhCQOkpAQexFEiL1ISCKJJMYYMmJkkUQSyTDUWGIZG8lAZTPocFCVEMNB5yRoMLWTRDIcZNQYG8NA\r\n1XSp0blqKoaEJC6VxF4VbW2WxcnJCaKtts7Pz+3WnUuNZRnGshH14Isf9Amf8ku8+S3vcLFdrfPC\r\n2empO8x68uLcOlfCEBNxEA0TCwZmoggaJhaDTrOTEW2lFXEQJZERT77vvR77oX/iHW9/u4ixLCid\r\nkmFZFmMsIpIaYd1tvfeJJ/y8j/loL7r/Psty4vT0upPTUxmLjJCQGGMYYxB7IREkJG6KozgI6iiu\r\nKuLHp56pnktQe3GnIo7q3movqKuC+ufT1i1tEW3dUrfUycmJJKiDs7Nrzp96ypzT+fm5s7MzB3EQ\r\ninBxcUErY0hijCH2xtDWuq7aSiLi/YmjulMRt8RBSt1LHBXx/lWEuNTW+fbC+VNPmuvWZtl4WqKd\r\nmiGGdqdzlTG0JdUW0aBT1EFQ0TpKDDeFhrU1lAw6mdNtEVGVRFsHGdEiSLRT0U5zVux1ChIWLI6S\r\nCBK0gjgIYlETKVINKUqE0BZx0BAM0cQoZnVMFXNUldYqbIZlrpqKulRPa1B7EVS1GKHTwXJyYnN6\r\nZiyRMZYnn3ry1biO97mH69ev+7Nf/dUn/5dP/bSLH3vrW/vr/81fu/2Vv+pX5TNe/5ljs9n4+q/9\r\nut13/d2/O1FHdVS31RU3Hn+sXvDTWdwWe7/lS75k+R2/89+5tmyWfMff+pv5lb/sl184iis+7uN+\r\n4cZN67oGQRHUUVDEUd306MOPxN6Nxx+rn2QbL/jJFnf523/3O689+NBD49d+9mc/9YM/8INuitvy\r\nuZ/3eePf+PR/Y3npS1+Wa9fO8sR739t/cuNG//R/9qfm93z39/R//vt/f/6Cj/u44Yrr993nr3/H\r\nty//8Pu+rx/+6KN55StfGVdst9v+oS//8nNHdae64sbjj9ULPgDdtPNDzb7sZDlNW50Ve6WOWpfq\r\n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\r\ndUtbt7R1qaUVty3L4qrdbudiu7VbV9t1dXF+rnO6JfZSm5MN6mCu07qu5pzU05I4SEJI4pZkoNSl\r\nJMSlII7i/YhnEcRzSeLZ1FEcxRV1FCKEICGGZCBmuX7tPr/jd/4ur/3Ij/Tk+VN260qCaGO3Trt1\r\nNTut685ut7OuO+tuZ91Nc1Y7JYwRy2bYbDZOTk+dnJ46OTlxerJxcnri5GRjs1lsNovNZuNks7HZ\r\nbIxlkWUxlmGMGGOQSIYxhjFijBgjRhgjxohlDGMZlmVYlhjL4uRk4+Rk42SzcXp64uzsxLWzE9fO\r\nTl07O3P92plr18+cnZ44O9042SwGoiiqrXbqnLpOnVPXqes019Vcd7pOXVdz3Vl3O3O31XVnXVca\r\n63anu1V3qyff9z6783M6bUa0pTXXnXVOH/bq1/j1X/CbXH/xS/2///r/x+m161rW3c6c1VbLaCwl\r\nIqi9UnsJQlCCJURRCQNDDBGk9iIJceni/MIbf/SNfvRHftjFxbnr1+9z/b7rTk5OLJvFWBYdMcaw\r\nLMNmMyzLYq6rd73rXR580QM+6ZN/sZ/x4R/uxS9+0Etf9jIveenLPfiSl3rggRc7O73mdHNq2WyM\r\nZTHGIoYkIu4QGkchIopK7EUQBxG3xVVBUAdBvD9xVM9H3BbEFUHcQxC3xEEcxG1xWxBHQdBWUQRB\r\nZ8VeKw7qoKgSkrhTtZMgiDvEXqKti/Nzd9vtpmS4JYmDJA6SeD6qjioJcVRPK+oDEHtxSxzEUSQR\r\ntNN2e+Hi4sK63dmMSCohYQwqJJKarTEWgtDWkpAoqmKvzFBxUAdRVUxTkdZRtGzX6aq2bok6iDjI\r\nZJ3Tut0xJ+tqzlrX1Vx3iDEWIwPVuqmSOGirYldm6FjMTLuldqM66IiDoGiD0oq9BBF7gyQiJGov\r\n7LpK2I3qnKi6raGtg8RNkTLE08rcbq27nd1uq5126+7sve994uUf8drXblD0sz/nc/Lxn/AJwxXf\r\n933/++qoqKM6qqO64sbjj/XG44/VC/5lFns/9EM/5PWf/hkXP/ZjP1Z3+UWf+Inj6/7iX9zYe/zx\r\nx+qKz/rszx4f+qEfGkdBHMW9xU+RjRf8ZIlnyu/93b97fe/73rv9tz73c09cce3aNVd94zf85fnl\r\nf/APrm76yI/6yPlVX/3Vy6tf85q46fr1677gN37R+ANf9vvWf/h93zf/yL/3h+3tHNVRUUd1VEd1\r\n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\r\ndU9bbcVdLSVCnSpiJ5kQW1FGnauTk5X1enYqEUE99W9u+ca/83e9/k0/RSenSkoVtRW0VM2pObU1\r\n1bk4NRAbY2iZEhPS2qqNkMTJ8bHX/NAP+emnn3Z46ZLFciFTBAlFx5ApMk2yYLU6cef2Ha94xSv8\r\n/A/+UJcuXXb16lVPPHHTzSeecPPmTdevX3f18hWHh4f29/ctlwuLKaZEwpSYQhJBEkLsJCREBLER\r\nEmInIiVFiY0g8Xarc3EuiOemNuJUIkEQzy4eUhuJtnaCaIsgWmKj1VZbb40kziSxWCzs7+9bLJZi\r\nJ4kk1uvZRUlsJbGVTC5K4vHiXGxFEDtBvLViK4iInSAEQWyEhNiInSAIgohI4kFBEBGREEQkkTCv\r\n11YnJ1arE8fHdywmFosFiaKlrRatCZmCqipiI2GaJLRDbAShaIuIOBXmlKJVJKEUA0Vs1TzP1icr\r\nSVA7daqlNupUa2uxWJgyiegYgmmaLBYL63ltWkw6RSbGmI0xG/Ms02SnEi5dviTTZDWKaGdV8zwT\r\nxKnl/p7hrtAgNmK9WtGoELKInarSIUUnRo0OA6PV1ujQ1lZUJiRiI1HVRFFUtSipjaIkIqq5c/uZ\r\n98Ilz3tnEhdcvnI5LvjTf/JzZw/4lP/+Dy6++mv/xuJ7v/9f7/3jf/rde3/1r/+15Wue/Dd7f+Ev\r\nfeXihS98ode//vU+8dd/wvrHfuzH6jH+5td+7erbv+3bh52idupcXXDrqSfrndzkXdCtp56sc3Wu\r\n7vrO7/iOvvrVr57ddXh46FM//dMmd335l33Z+Jqv+urhWdx84on8gU/5lOU//5ev3v///NE/OqEo\r\naqd2aqd26oJbTz1Zz3uH0XaiN4+PTz5unscTB/v7OmqM4VwQBKG1ExR1pq2txEbFTlttjQ5bbbV1\r\nqqVVO21ttXXRNE3OjDEcn5xoh53YW+7ZqWSSxFbVTlFJEA9KIom3Vbw1QlFvWTxS7dRG3KcuKOqt\r\nE/fUW1AU9QhFbdVOnauNonWuKOqeeki97do6lQraUqfaamurrba0TrW0tmqjFNM0SUiInWRyJghW\r\nJyfW87BVw7//dz/m6//2K/3E699gb/8AsdUxEAOjTrWoUxNSUtpKojZKWwlTI2KrZYwaLS2tYB4r\r\nt269xk/85E+6fOmKg4MDEW1RREe1FTFhdXzsp3/6Z7z8P/lPvPxD/lPLg0suXbrk5o3rnnjipps3\r\nbrp+/ZorV644PDy0v7dnsViYMklCIomEiIQkgghB3BN3hTQUJSUlSEi8jYIgCGIrIUHsJCR2Qtwv\r\niIfERiJ2YieIxynqQe1AUVvtsNVWW1RbQuItStyT2IgkktjfP7Bc7kkmEhJJbM3rtbbOJLGVxFYS\r\nFyVxLnZCQtwVRJCEkCAEsRXEuSAIgiAICYmtBLERCQlBEBuJe4KEuCe2StwnIXEuSChJJJFEW8er\r\nE6vVyvHJiZPjE8tpYcpES6spQkljIQgtaqsiiSROjaGImITSUadSTTWRQRChtDVSRRBbQa3XK6v1\r\n2pTYKXVXpKV2ig4SbQkSbWnJZO6QxUISQccwxnD79jPOtE4VB4f7FtNkWiwtisQ8Zhft7e1Z7C1J\r\nBLHRUBtxqlSM9UzLqK1ho7VojVanYihqCGKrktiqnaoqobFTG1U7bTVkiqLk9u3bLzhZra60nTzv\r\nHc7LXvLSOBfPwW//pE9a2PjgD/kQn/+FX7D4vh/4/v3/16d+6uIXvuIV06VLl1z0i3/JL5n+4be9\r\nau/jf9HH5yd/8if7ib/+E1a3bt0aHvDP/9k/W/+Rz/rDaztF7dS5uuDWU0/Wu4DJu496wOd97p9a\r\nu+DX/Lpft3jRi15k6/d/8idPv++Tf//Cc3D9+vX8ml/3axd2aqd2aqd26oJbTz1Zz3uHMsaYJC+5\r\nc+foYxbLxcE0xRhDR8VOnYuNBNXWRW1ttdWWMlptCVVttShaWkXttLXV1nq99pDQ1vHxsba2pmly\r\ncLBPnCragaKUJIhkcq62kkjicYqKuqseqe6KhxS1UXfVc1On4j51V52qtyDeOvV2qJ0qitap2iqK\r\nipJ6lKKoR4ufHaN1KrS11VZbp1qKOlVVRVVtjTFQlASx3Ft6UBLrk5V5Pfupn3qjb/w73+DJH/13\r\nLJZWqzUto5qqIa1TtVEUoTGJ2ki0tTVUE2qjoqq2Ehs1DDrM65XXPvlv/OiPvs7B4SWXLl82LRaS\r\nCEarrahpiil0vfZTP/XTft4HfpBf+BEf7fDwkoODPdeuXfHEC2564oknXL9x3aXLlx3sH9jb27NY\r\nLEzTJImIiNiKhAghibioIoqizgVxQe3U26AeFmeCIIiNoqj7FXW/OBX3i3NxprbiUSoqdiLaIaKt\r\nrbZa5xLTNFkuF5bLhWmabLVVJU4l7okzMc9rCQlxbp5no7UTSWwlcS6IrSTuE6eCOJcgNHaKElE7\r\n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\r\n1GZzYozFGEPGkESQECRIEFdipwwsZYggiYTEQUREEgQRxJPFlYiIIA7iIN5DUY+qS3ElIiKuRNEi\r\n0VZbhLgUV9rai2jrShJExDKGZRmu1dxureuKeKhsNhsnJyeKi4sLD87vW9cVEQRtrXO1bldpJUEk\r\nw0FibySOgkgibgpBCILaSRy0boo4aAVBHEVciyAirgRBiJ0IIvaSiNiLaAbiIA6CiJsSYqeVBhHD\r\nEANJvF1IEBF7QQzJICRISEgkQ0QyBCMRIUEkDpJIonjrzTe9+uprXnvtTet2tWwWDW3NWZ01O40R\r\nWRZzroQlAxFHI8Nms+h2q4i9KJoITsbQ0Fl7TcggdE57iaPaiYgxkUhooonRKkYYCOacHpw/sK5T\r\nW20RxEHtRBpBEkPsRbTMVtDW3lynMWLETiWRROxVxpBEZ0lM1a4qTkRGrZmmapCIiNirnaJFUVQm\r\nrYMxGIkRMu1UVVvW1aq2F6vMog6KRESDsojMImbsxLUg9qYbWlpTzZZWELS1Xqz3Xn3llV+EUx9s\r\ncS12/oVv/ublr/7A99/9hm/6xoEgjoI4ym/8xm/YuOG//b7/dv4j/+A/tP3t//JvW//Ff+E3rf/4\r\nP/KPbr/zO75jeszX/9pfu3zu532enf6z/9Q/ffFX/vJfXu28/vrr/X2/9/c++M3f/M0Xjoo6qid4\r\n8eWX6qm/qYannvqA+nu+5ms2J5uTL7l//8GXnJ2enoyxuLi40NaVtrbbrZuC2AmbzeLW2S23Tk9l\r\nhHB+cW57cYF6qCREtHVxcWHOaS8hGCOSeJIkCOKmuCkEcS2R+FmKo1Ja1Lso9Yh6TO3Uk9Tbtd5d\r\nHdRj6gniSeoxdRQkHhUP1VG8b7UXR/U2QbyDeJLGu4gnSZAQ76KKokLYrqvv/d7v9eM/8RMkksGs\r\nOVc11U6iRQkmitROJQyRVuy0ZmkiiZYkUgdVQhKxGGN46603vPTDP+KVV18xlo2z22eSkNibs5LY\r\nW5ZFwptvvOFLvuxLff7nf76Tk4179+768Ec+4sMf/oh7zzzr9u07Tk/PbDYnxliMMWREQpA4ChHx\r\ndkEao8NoJHEUexEH8TMTR0E8It4u3kFci8cURVFX2npEYq+dqL3EwZxT0Doo5qy9MQYJiYQ5V+cX\r\n5y4uLmy3W7UX4mBZFqcnJ4jO2l5ceHD/vgcPzj148MDFxbm5riiJvYRgZNiLo9qrJA5CEo3H1E2x\r\n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\r\noiFRVbQWtUosatXhRqyCtqiWYqq22klrf3X9o99492u/B9teXQ6vvPJ3gf/aH/kjm812Ew/84A/+\r\n4PhLf/k/OP+xH/uxIMhwUg98/otfqFde+Q12OOyf4A9eXlz9od3Z2TbxPYgX1Cero7aIVX2c+DhV\r\ntYpVUYtE4ntWD9UqbjRepq0XVVute6VWQbWljlrUI7Uo6k5R1I2itBR1UlV1p45a1MsFsYhVW89r\r\nq61bbbXTaraOWquKzWZrJOplqu6NEefnZ64vL11fXuss9YI5p/3+WucksUpilcSqJYmTopJ4KO4l\r\nUbei6ud//ue9/81vyhgIKkEsQkIsShw1UaQRUUQEwSipo6ItKgmNlGSYEy0qVvWN977uy1/+qpaz\r\nsydWbbWVDEYwEDpdXV/5qZ/6Ka+99rrv+/SnffrTn/baa695cn5utzu33W2NzTDGkBERBJG4EQ81\r\nNI4aRw2No1jFKvFAPBLEi0oQt+qkbgUJiZeKG0EQxEkQJIiIOIkXxUuUlIh7kcSLYpVEEsQqsYiE\r\nJJK4FxFJCBKriAghcZSQWEREhEQSxCqJhIQgIolVnCSRRBpEnCSOkkgiqCISizqJo4YStyKhqI8T\r\nVEIs6qQei8dCREQ8r56XFkVRDxVtPFK0lBRFi1LSUorWSd2odjrMg2fPLrz7ta955+2vePe9r9Np\r\nOyJiiAxGBqUhaiTOz5+6uLx2fXlBatVEEy3b7dYqQsiIy/2Vi8tLTKuqhjnr4uICNVoDm8Fus7UZ\r\nG7vN1lYURTLcGpvIJvZzbzpJYyNOIoOa2oqISEIjVnVSCRHDokEURVFcH/YOc1JGIkFCnCQeikiC\r\notpSlDEGraKdJIjr/UFbc05zHqzayoh5ODgcps0Y5pyK2dJII2KVOkpISCJCLEKCEBJHVdQqwkSI\r\nk1qE9CAmA4NiiJEhJWrVUHUUYlWHTlFUVYSE0jiqWlW0pI7aqiISEkdtKVrX11c/+M7bX/l9ONur\r\nV175u0D+7P/gn7z+pb/xN/ae80M/9EP59/9Pf/nsR370R2KxRT3w+S9+oV75LeutN96M79Hnv/iF\r\n+nXWdhwO+992dbX/o+S3n53tRFSpk/oE9cmK+N4EtUrQknhexK22CCH+VtW9qKJeUCd1VKt6XlvE\r\nrbpX9VAtWs+rB+pO1UMVR0VQJ3VUpIiXaos6KaKd7lVbxKqto1acNCSMEaugOBymw2FPY7fbyqDu\r\n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\r\nRBLiTpBYRARBEKvEIwlCEIswfbfiVtyLVRRFgjiqRd0oRT1WR3HSOokbda++WylVt4qqhjqpulXU\r\nSVu1qJPSkjopbZxU0ZLSMjtdX1/74Jvve+fLv+ZLb7/j4uradgybDbFoUTOOqiYqqDR2509o9LD3\r\n5OlTu+3WwBApm8R2t3P+2lNjs3F5eSni/MnO9fWV9iAIBiYOYaK4vrqkNXZb1z04zGk1UpsRqxka\r\nogZ2m41OOqeUlCCoaGho66iVOpqhajVQzFTVrYhVVUvL9WE6tKJW8VitqipCK/WCkThK1KrGGDLi\r\nKBERi9ZmuyUhsR3Da0/OHSZzRMM4kJKUFiVOQgSxCpIQWpQqpqYqUhpmymFqqxhjSCqdhCa0IoYI\r\nYlo1VK2aWBVprIaTioFgJDZi2IiBgZBIKyUqGB2GjZFBENpSR5dXlz/wjfe+/rswvPLKb7C33ngz\r\nHouTOAli8a//xb+4/f1/4A9sPHB5eemv/tW/Wjf+/J/9c/uf/ZmfmcMrvxXFSdz4N3/6p3e/9IVf\r\nfv1f/4t/cYsgiJMg/5t/43+7+4mf+Imte3ESJ0GcxHPeeuPN+B603SbjJ66v9394u90+CVqLaklL\r\naalboRZxp6UIWreqxFESJyGOIk7qeXEvTuKkVlVVFat4Ud2rF5TWjXiZ1qIeqqJWrTstWtSqdaOK\r\n1mP1oqKlFrWqG/Wxquo7i3t10tZR6ayirYh0Cuqks2br+nqPIAjiVmddXlzQCq6urrzMdrtxdraz\r\n221leGS/34tFgkjioSQeSoK4FQT1WLwoiWS4vLry8z//C66v9xKSKOqBVjBCQlHFlNaqVhWriBiI\r\nVb3MSMTJCJtEygfffN/XvvZ1FxdXzs6fSKKtdjqpJMZmmIcDrd/ze363p0+feO3puadPnzg729md\r\n7Ww2W5vN1thsJcNRhiTEIiQIsQhx1NC4E6tYxcsFiTsREUlISDwvvnsRxEslEhKPJCSIFyQREY8V\r\nSSSRxGMhSARJ3AoiJJKQiFWcBEFEREQkw63ESUhCHFUcBSEJKgkiiQihYtUgEaR1EtS9OgqxaN2q\r\nh4p6LE4qcVSLILQIiXuxqFjFQy0JSXxHpapqVdSiRbRoVUUQSlqpGzFaNU3M0FSVTm1VtUyhRVWZ\r\nddhPH374ga9/9St+9Uu/5sMPn0mGzXZjsxkIZYYZZkstIq2t2mR4/bVP2x8O4uAo1VAlSAwknD05\r\n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\r\ns3Fxfubi4tx2u7HZDJvNsNkM2+1wcXFus91YXV9fW/bTSVHUalkWWhISSSgRJ5VE3EniTnxKcRBP\r\nxXOqSuLq6tJ3fPt3WJYpGYiWIHGU0FJUKOkkCAlBEquiDuKgqKdCQtwIQdzZ7xcf++hHfPhDHzbL\r\ngxdesNluVBmxSidKq51+8Fe8aLfdOT878+DBAxcXD5yfndvtzmy3O2NsJEGIkzgIIeK+hjqIZ6QE\r\niWclnhXEffGstu5r61ZbR4m22mrrKFRVtTUyjDEUbRXtdNS61VYQN1qJk3hOrJKIiIiDkASxiiCS\r\nSCKJoziKOwlSQRIyBEEEISFBtFVUVR2VIO5UnRSlKG2tiloVdRRHaamjWkVE604dJSQkxCqqahVv\r\nFEJLBSEoVXUStWrrpKqUtKpaWlqUtlq0UiZaalVUS0tNbWkpJmkdFSWTomXOqa2pZktDyyydljld\r\nXl75xCc+7IPv/V4f+NCHXV5fa6pj2G02Nhmaaiqt5XpvTgdBSAizDmI7hrMH5z75ydcs++n6eo+q\r\namhit9347AcXzs/OnJ2feXDxgrHZ2uzO7MaZJ9dX9vu9iE2GbWMgY2MkBooYxnbLjIokYphxFEUM\r\nsTGwYRMpnQupYVUE0bA1bBJaEdRMFUFKSoNEEkJD3UiMRFJzv3f9+Im5LJKoagnSIm61VYwxJDHn\r\n1E5JtDVRJBGRhtayLLIZmqhKitBqK2NIYmRjs0y7zZltIgmlRRGK1lMZVFW1RUVQglQU1RESEUVV\r\n1YIuU/d7q4iqBmG2qCAlaloFUQctrWJiiJHYOOhUi2baZ7GkljDjIIqlk5ISVE1Tw1SrlpkQri4v\r\nX3jp/e/7IXib1lve8n314sNHefHho3ijIO7ESZzEwZ/+s3/m/Jt+/a87/4Iv+ILhOS+++OL4Xb/n\r\n9+z+2J/45u1v/U2/eXnve99b3wfDW/5JEG8uX/bwYf7oN//x8y97+HCcn5/7/f/ZH9h97T//z+cv\r\n/6W/3K//xe/cP3782Jt5z/d+b//IH/5vlu/6zu/s+9///nrOK6+8Mv/Nf+1ff/I//c2/6ftimcsY\r\nI4+ePLn8FzPG5+12W4rSFrWKk5ai7tRB66RutUSdRK1qlaB1lGqLEkdpRd1qHdSqalUHLYo6ah2V\r\nljqJW3VfS91Xt1pPFW2tirpVz2vreW1V3Ve01KdTbWlRb64oilpVVdyp++qkrTdXFNVO940RZ2dn\r\n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\r\nVRRtVa2KttqpnWan2amtomKipa2rqwvveve7XW2vnJ6cyoiqtmYniYiMmJ2S+qyf/JmWJc7OT5ye\r\nnVpOToxlYywbGUMMEknEKsRBhIQ4CkHsJQ7iIIIIgqprCQlttXUQB1VBW21pUSnLspHEQeIgJMQ9\r\nLWFZFicnJ64uL223V1qSuBGrztpur8w5JYOSOBgjCCEJglolcRRxW6zqniKRDIKibokH1bX6aOJG\r\nEGqvKOooVjFdi1gVEfe11EESFJNWW0ytW4qilNmaaobaa7VTBdFW1KpKK0Up2mpLHbTUUdGWVNVR\r\nELUXR0VJI/aChKCo+yJWSURRB6nYayhCVTuZbHc7H3nhBe9+19Pe+eST3vvsB213W0uqaqRGas6J\r\n2mxOnGwWJ2evsZzccfeFF2yvLjUYsWQxMoxlcXZ+RgiampgiKonzs3MnmxMfeeEldlNKGhFLGCKo\r\nmoYiLY1pqFA2m8Vms7i4vGJOQw1T0CAxai+iappijMEYrrZXlKgFKaPBIgmhWaQDkRFGXM0royXM\r\nUQ1BRDEMsZhqtlZFVdUuNBHRMBBDxAxFU20REavtdkdLCOqeEkGog6kadrEXURIJEQd1MMRGjJbE\r\nVGNEVZHEqiWJOWuGLEPmtLQkIkZiVXuhcyKUDJIgEpKSkEHDpGHMIV2M3TBmBDMxww7DXqbOLRkI\r\ns1abzYZU1CjdTZd3L2znzhTEHEMTczdd3n3JrrQO0mjr7OzcGENHbFNNZcQqnTJilQzJ0NbO1FRT\r\nSaSRElQJQmcp7Rx3X3jhTfj0tsOr/rHw+KOP5fFHH4sHxcfwr/+8n3/5t//W39p6BRcXF/4v//V/\r\ns/s3vugXXL7587/g6jf++t+w+1X/3r+/++7/85/buWWMuKeOijqqozqqhzzx1JP1cdh41Y+lOIqj\r\nOMp/9vu+afNFv+AXnOzln/vn/3l37969/K9+4Adq76u++qsXH8Xv/X3ftDz77LP9H//m37TX97//\r\n/f2lv+gXb7/1j3z78tN/xs8YPoqrq6t+13d+59Xv/p2/a4s6qqM6qlueeOrJ+jjt5hzdzdfV/Jef\r\ne/bZn/qJn/DanGwWczdVaV1rHcS1Ig7iqBSxF1riQXFURdyoG9Xai/tagrrRoigiqGuliKPai6BK\r\nHZWqG6FRdVTEKqi4r0X8mGoRR3EUq5TGUREvV/e1dRD3jTGcbE5cXV3ZbDbGGD4em82ic7q4uHBy\r\ncmKzWbyStrbbLUUG6igO6qAhSOIojupjqwcUcdBUFbWqvRBxLai9hFbrIEVKIonZevs7n3b37oXd\r\nbmfOqZ2UtAaSSEJpqyGDiiBWE7EKqlqqIqi22ppzmp12u2nOae52ttudy8tLV9udYLMML730oqee\r\nfJskTk42tFoELQkJre3VlU943Wv8xJ/wqZbNcOeRO07Pzmw2G8uyMcYiiSTinkRCRIK4EWIvbgSJ\r\n2msELWIvVomDFomgLXXQ1rWqJLQkxhhum53mdkpYlkUSEqti2Wy0td1uzTmNsRgJIYk5J2qVDEkk\r\nDkaiDSqJVRwl8aA4CuooYlWto/g4xLX4eNRB4qB1EC9TBFG1CooImppi1FGJqOlaa6/uq3uK0Kqi\r\nqkapvVZRVataVaT2Ku6pe6qCWqU0tARVBCGl9iKhahVVRwlVMVAHRSgilNmiqLZqr8zuvPTSC97/\r\nzNPe/fYnve8Dz9ptp43YqWEIdhgJnTanG5uTO84feY27F5defP4jLi8vLZvFI2dnUjrsxchQe0Wi\r\niSURiyXxiZ/wGtvdtLvaakgdJFEh9oaUJFYpHVPGghjh9GQxG1cXl3ZqacSq/n/s4Xu07nliF2Q+\r\nn+/v3Xufc6qqq7pzpZNYRSqSRFmQ4BL/kECMLGQNaBTkMrBmhCQixAtGUUfuXtFxnBBUBEKSUWec\r\nmYDjIHfFDkgMBJi11MFLgEpXdZLuTl8qna7LOXu/7+/7mfdy9tn71KXTuTGyVj0Pw0FTTG3UMAbn\r\nm4005nbSSJiiYiSCtGZqZKqq2mRhDN1NVEVEWhUSDbU3ooi91iKamPYSowgVxKiTRp0EEYLUuu4I\r\nilbFIy2JqojOGmIRY9ZB53SQMGcRxUikdVB1Ei1aib0QJNpKIwZZLOuk0cQoUloSElUREam9aBFH\r\nabVF1V4iYZbRSukSxSgRGZjTyJBOEgfLsiDSqthebrX24qjUXlB2c5oPHri4c8dIHUREbM4vXG2v\r\ntJMxFDEdtFUk9kIjQSJhNGaroaEYjdpLtBU8uP/aF77yw5949qmnn/mrmN7xt7Tnn30u3iw+Db/8\r\nl/6jVz/nK37O7h/7tb92s66rOac//+f+m/l//0//03pc0M///M932+XlZVEnRZ3USZ3UG7zw0ov1\r\nadp4x4/Z888+FzfiJE7iJH/sT/3J8y/5ki/ZeOj8/Nw3/p5vOv+nfsPXb7/jfe/rl/+snzW8jbv3\r\n7vmWb/vWzdf+2q/Z/aXv/m4HH/vYx/yyX/JL13/oq796/pqv+ZrxxV/yxePi4sLBK6+80v/lf/6f\r\n19/yf/iXt9/7vd9b1Emd1End8sJLL9aPwrqugz5///XXv2pud+96+qc8o60qpR5qncRBHcRR4qgV\r\ncVClRFxLJ4k6qYg6KSWJovZKQt3Sqjiqo6CirRuh9kqjCOqg1CN1o603qr2WRO21juKh+lSKOKmT\r\n+JEU8UaNo9TRnPVIUCelrYPdbmez2XikjDGcn59L4rZ2WtcVw7IsEo85Oz+zPpi2263dbmezWYyx\r\nOGintuacUiSoJA6SoJI4SJ3EpxCPq5OgCClCS+K2OKjRiIiToG7EXhwljBEPXr/v5Y99TDp1rrbb\r\nK7vtlXW3s66TTspstTU7tTU7rbO0zNVuruacFK05p+26WtfV3K3WuVp3O+u62q07u93Odru12612\r\n2yu7dbXd7ay71ZzTutvabrdefeUVd+7ckbGY6qBrqb1qp3ZY150veO9P8eQTT7g4O3f3zh13Li4s\r\nmzPLskgiiYxIiEgi9mIvggaJg8ReEYm9OAmiRTyS0BYhtHWtrYOgTlJ7dbAsi8Qj67rabncOZqex\r\n2zk/P7csi2vBZrOxrjsHndO0FySS4SAhIomDJOokY6DiJBkek9CiBPVI1Y3QEict4k1aMlAnRby1\r\nUsReaElQWk0cRBykzDBEFNWSIChRFQdFFaFoHTR10NYjJabWXhUpUwVFWhFNHZWBovbqqA7qMaFF\r\ni6hrRRw0jqIUiYPYi706CBpvEG21dRLXUtZZr77+mo995IN+4APv96GPftTVbiuJGYbQ2qFiYLNs\r\njM2ZiyeeIMMrn/iEq6tLwQgjiKNV7C4fOEhiSdRJwnJ+brl74Yd+6GXrutMxJKU1i4Ew7DVmGChi\r\nkAgWw8X5uXXd2V7tKDM1Gh1x1BoZjhKbVhLZbMw5dbdKKmWOqRmmGCpiMUjUFLUsg8RutzWdRLU0\r\nVB0kkQwmbUlUKIm9OpgisVcdVMUwEmkkQR0lduuOUtRe66SIqpFIoioZzOkgCSpO2soYkjhoWDtp\r\npYwMSQhV7aS0aM25oqZpbq9cm2pBRqQ0pSWOgqmSSuxVQ2ZlVkVDZzXVMTSlk5RgGYyYc8qcpCYy\r\nhiFaGibmOg0na2tNESbTQXROl5cPXFxcWDBGdNb2aiumhE6k1sRmDNOkpYyExEjswkBbQlO1V5o6\r\n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\r\nFlNNJCHD2dixVmato9KgpohIiRAyIq2UgYEm4qCVGVY08AAAgABJREFU0EQRNTEchOkkjSSiNp1T\r\nOx0lNkNE3agKIomInSFIYizDuoZWEhFVq1oSY1ncOb/jYvfAZohlLHa7RRzESStIQx1UERQZHgp1\r\nNG0q6uz8DkuM0hLDnWefkVAVcfeZey7eeNPl1aVn7t4RIXSt5d49Z89curqquU5JbMbuTBKLiOly\r\nXQlVxBARRqytloqogbVkidGog8RASjMw1UGriTpISEW0HoqolCSqEielic2clTBLxpAa919/7e+a\r\nc/25+JDP+OkSN+Lga/6hrx0/+td+1H/7V/9qETfiRhx81Vd/9dive//Zf/KfFnHw5//jPzd//T/8\r\nf1g84S//f/5yv+uPfed08L//Nb9m/J//xX9h+ZzP/dy45dv+0L925dPw0isv198CO5/xmBeffyEe\r\nFydxI07if5x+02/9rcs3/FP/1Nnnvutzh6f4v/+7f/by+/9vf3qiTuqkTuqWl155uX4SXVxcjmUZ\r\nn/fG62981Sc+8frP/5//HV+ss+qgU1u31Y3alIRWW0lE3IgiaIuIqNIq4ra6Vgf146rSIjatgzqK\r\nR1o3Ekf1UClJXEsdBEWcxEkFTcQmoorYxElRhKCeEI8L6mmCtjZtXdvv93a7HYkIanN2do4r+/1e\r\nncw5PSbDcnZmf3VFaFCS6KwnFcmwiZJhk8QmiWtJ3JbETyx+qkXcFreE4a1iU8TbCmkIQ501lgzr\r\n7swYi3WuMktrzqmdtDZFkARBqZNEW0m0DiaJZIiHwkgkw7WMIQ4SQTJkREJEEkkkkUQSSRCbxI0g\r\njuIgDkIqTpoIgogkingoDmITm7gWBwmtZVnsdosxhhshjGWx687V5aW2rq72JHbLYpOgRazr1NZI\r\nbDJik8QmCQmtTRyMUCLqJIm2KEIcFXGSRB20HkloESd1EtQjCa1HiqCeriWoR9raFFFKFXFUgjqo\r\nhyqiLeqREkxFSWi1jmoTca3qoFWRoA6qiE3VSZxUBEGFuCVOiorYtKWIk8RRiaKSOImgitq0VbfU\r\nUR10ury475Of/JgPv/d93vPKe3z8tU9pVyOhHqmgijRqauP+mw+845l7zp6553M+63Pdf/NTHjx4\r\nw9mdc02s65UhdmNnNxZNTMwW1RAV0TASEVMthrO7dy3jzOWDj9t3lQwxBcWqRmK0ZoiQGiJFIiKG\r\n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\r\npL/z//Sv7H7WV3zFcnZ2Fgfn5+d++//xd2x+9Vf9yp2Tok7qpO7VK56883Z9wffJxg+R3/Zbfsv6\r\n5T/9p+0/+clPbtz6G3/jb8zO6RM/8ScOr/iyn/Rl+b3f+Ps2X/3rf13/vT/1787f/83fPP/iX/gL\r\n/Z//T/6nu6/7hm/YfNlP+rJ4g0996lPz937d1+3+5Lf/idVJ3as3ePLO2/V5ZM71UeJnfO/f+/s/\r\n+wMf/MCj87Mzc046UUcRVa9pvSw+Jy2J1xTx/RLUq0II6qGIkyLuxUm9t3gPIfWSeFlQRL0sjoJ6\r\nWZzUSVCvSFBHiYM4ipclDuK9xCviVt2Jg6BeiHt1EkV8rhInJQ7iFXEUR3US90K8It4obsRJvCxx\r\nq4g3iYOgxK24FUdxELfiJfGSIo7iJYl4ICiJG0WcVCVeFjfauhMnRRJtvaS1bM6Igzja7/f2u519\r\n4uLiQhJK0MTFxYXt9bXZ2u137BljSOKFkkQSR0kcJXGUxEkdJfG5qKO6Uyd1UC/UUanX1Enciap7\r\ndVSlkXhPSbR1I7Q159RJW+u62u/3tttrV5eXLi8vXV4+d/n8mavnz+2ur2y3V/bbrbmuZqfpoEQ0\r\nVIwgITGCkpDQlhDRlJRGRrWTiYREynDShLoxM4xOadVBq0GjTiIi0pjBqFkijqY6WtFMR2kl0U43\r\nUupgUKqIhpQmjgZWMRAHk7YmZqe5Tvs5WVftZFLREDFEQzOMMkTDVEESFcSCmVIm0hhoJiIOElSR\r\nEUNsxmKdG/uuhpJIowiimoEhSkiQkJhhhGFIEYxohmbYLIuLZajabffGWg0TSQgpo9MMxVRCEveG\r\nmtIKVkeVhFInwWbExfni+fVOZ6XDNCWRVhNURdGWQRvJMBLL+bntbjXX1cZwUhXFIm6EoahaGItm\r\n2K2VSVITTRkbY1ls93tFGgYVA8VUo9HUTAyMRBP7ddIQqtIIouZwEMlAaIkbcSvRTkfJ4vx8Y1kW\r\nF+cXZqeBOoqpgohlWRw1blxeXaJSpun6+lpsPbq40NbRGIuLi8eWDmtZ1+ny6TNJfPrpu9566/0k\r\nqoTESYZ11hhDVWalCILJTAmjUVMaRVoSxGwNB3VQTQQdZNIiBE1RnXREUpmVSWZlroQZpgoiFKEh\r\nQtFK6W5njPcZm3Prdi+IkOisqqlSiqqjqqOUIKKtgToKqSKttiba2l0+Z9bZZsNcRQwh0dZR0KK1\r\nhpSUfd3IGJZlMffr2dXl85+C9+Opz1NP3nm7n/jYx+OkCIqgTvLd3/3d/f/+Z//Z+lO//Ms3bv2s\r\nr/iK5RM/8Sfunvzn/3lRJ3VS9+oVT955u77g+2zjh9DX/s6v2f/hb/03Nm599KMfHT/3Z/+c7S/4\r\nyq8c//xv/A3LRz7ykXjFJz/5yXzyk59cfsWv/Krxh//1/+v8/d/8zfOf/Mqv3H3Fz/7Z+UW/+BeP\r\nn/LlPzUjw6c+9V/0//Vn/sz6b/zh/9uKOqmTou7VrSfvvF2fR9p1rOv6I68uL3/h8+fPf+yP+tFf\r\nYs5qq7NagjoIqRfqPRRxUCfxqqCt14WWIHFSxOciDkIclHpdQutG3ApxqwiKEK+rOKmHgnov8bKK\r\nO/FegiLuxb2gjuJOxBvFA3EnbsVJfUZxFC/EST0QCeqg7hXxXuKgCOJG3CviIKiDoN4k4iVxL8R7\r\nicRL4k3iocQLQcVR4la8KvEe4qHEvXghcSuiiKpXVWlQcVJVRxG0dVSVuNHEsgRxZ93vHc05XV9f\r\nu7i4kEQdxQjnFxe22y0tiba0kiCSSOIoiaMkjpJ4KInX1UlUBfVAvVBH9ZJSR/WSOgipOmhIHcVJ\r\n66DuBVW3WlVKVVtzndb9znZ77erqyvNnl549e+r5s6eeP3/u8vK53fWV3X5vXVdpUSNBDQeJoySS\r\nOIqDRFBHFQdxUEQS6qColgQldRCU0roxMFVFE0wzjBJUEHOE1iiNG1VHLVoyFAuKimExVcPAQNUU\r\ndRRJKVIaDVrKvlW01f1q32ltrS2z0ppoSeJoySDVkjFEDQchIkU8EFRDREKE0LCxSKOpNJKaoUgY\r\nFo/GxvOsJoYQUuIkapQ6CEIclCSIoySSkFjGMEacncUmdL3W3bXpoMNJDCU1Gg0TQRNHo9GUVFVE\r\nxChNHVU0RFDLshibxf7d52JqKg5aDaMV0VDEUWTU0ulsnFuW4er5pZjmiBslKqKoqBitZohYloUR\r\nc53SaBzETKxjIYPdNAxRLTOlQxEnFUMMsRiWRudqmtIhHYQ6iSiCqqgIoipCaUni7OzMdrfXri4u\r\nzj1+/Mh2tyduDKE1xnAjtBhD58RARaSs6+r6eut9Z2fGGJSsq9nVzHS0dprbvcePLhRzOmnNVhwk\r\n9utqDGanYs4aI+6kVdStkMSNxklUSRxl0pDpoJQ6GMOYNLVXu011ZWK2dOqcmhDGpG4FRRAHlRJk\r\n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\r\nx4NH3+/9/g/++Je//Pu/4f/x5evX/90vf/nL/+mf/Omf/i9/+OEX/9vq7+/ux+e377788PX62c/+\r\nOfriZz/7J+jLly/3+/fvP273f7vtv3TO+Z/7+vXf0b3/5vv9+7/S7r/k269/86d79EOPx6N6zB7P\r\n57N13M3zjvGnf+Nv+zv/su/+8s//jOc3d9Om53eLPb748uWLRtHji2vO/E4neZlP+VCZSeRlKswp\r\nb5W3eYkkEROGvOUlJpUjd5kpL2nzoZATM29JGDok8zZrKg2j8nY3yg6WM65PGw1jqHR4bj6Ui2Gm\r\nccbGzuzOTzZCy9ttjORtsSVzzTY6DJti5i1Jlg/DNQqzXUcmK295i2GsGTbafBpjmJfYvFwhtLwV\r\nk23eKjbFxmKyyKcnKjYX5SXmJdeIbWxuRxEmdxTmUxG7E67omp9EHEwWNgfJ9ZaDyTWVTzGUvJQh\r\nTMI2t7xdhINtyMzbwzG5RoTNS96GxmLmdAxrzIflQ/JhXkY+hUXMyzhhWT7cEealhMYThZGXkVkZ\r\n5tM2ojKzTY4hzEv+QD7Nh0I+zS15GfMpLxtNEpLr94aiRTPzh7YplC3Mp2yTPxAz5iXM2wxhfjIv\r\nY6H5yXyaT43lQ8YYKsuncSND/tDyMsnERj7M/6uQT9mmQuRD3qJkVgjzNi/zYdhmu3avmbtxr+EO\r\nuzYvmZkwCfmdZoXZ/Nb1NnnLDFt+Mtk4TTuUDDmOnaPnde91R66kjg5fH198OQ83RAgt2/WUzGNR\r\nFifO8XIdc0LJXG/XjePYvEQcb9fx8OUct9zNfT4dY1ncUXPkijAyN+xgikcPDw/P59Pi6S0nTvPl\r\nPNzn3DszmTy8hWF5mUblNo/iHOTeWZlU5uVw7yjJNo3v37/54YcfkLfM814//vgbPzkd23z/9l3y\r\ntpG3uYbYGDOix/H2OHnKE9t8OFHufVr8+Pzmxz0tH7bLve7zabu2qVRsFHI3dzNvD7uzYYSZSpu7\r\n6+QlFycvM8lb8rIxLzFmyssIY3HN4mKHNc+TX/3mV/z47T7+6Bd/3pfHr9t9bM6jzlNb59q+x/f4\r\nXo/fVD/Ofnx0vvd4fHs8zvPxeHx/fPny49cffvjVl69ffvXD16+/+vL1y318+cI53ra1rW/fno/t\r\n2jzPOfec8/3Lly/fv3z58u3r16+/2d139r1zfvXDDz/85ePx+M0559ed85vH48uPX75++fbDD7+4\r\nHuf7X/8bf/sf/O1/wd/5f1R/+Xg8/qz6Ebe6fvaz/z/yxc9+9k/Yly9fLu7357c/+/rDD//Dbf+L\r\n3fu37n3+S57fn3/3+/dv/7J779963udft/31+3z+y5/P7/+q5/oX3vnSedj4/rz+2t/6O87XX/jV\r\nX/yZ54+/1p7OiU2Pr758+eKE8WVz71VUMpXQmGujMmNsc8pwvc2Rt/lU+ZRC2bxEUdq8DfMpqaxp\r\nJMqKsU0nH0aoFMbxcjI5I7O85O0Rw0ZeIhka2xh3E4YTt2wTOtmGSZaXiKTyNNtUZiZKY2ZjYZkr\r\nGVbCNvk08zaZlzEvjXnJlfnUZkKWDxvlw/IyROQnWZhPcdGwURSmsWIsL6kR52aG3M1Km22UkE9D\r\nxdi4YfMp89L8JJximbEcLzEvQzG6FMqQMRZDJZGXMYzCZpIU85ZwceZl3vI2n3LlQ2w+JGHGUJK3\r\neZv8gaFsQ8KKDck/KjRmSKXmzqf5sFGcccVYzMsuOxQN82Ek5K0hlA/zYSO/ld8aYz5tY6MkzCIZ\r\nZgz5neRt5m2byoQpv1OzDfmQD/M2yZZ/XIzdkQ/zW8tb2EZU3vKpsRjKpyGG8mHIpxlC3oawCItk\r\n8ykvyW8VYaMUio0Nczfb3F3uPO91XdvsTpvnLmMYjrfM2/xelJnKkCFkmw/5rTHWJBxvi3xqnCHO\r\nZnsiw93Tnpfv3zz3zfNGPDqcnHN8/eGrx9cvHoW5xWa4uzKFjtNxz5FPC3Hv3BKSYl52XPOQW9Zx\r\nvF3O4fHwOPn+m8udnxyscNg8zHWs+UnN8Igvj4enee66OKh8MeSc3OfTM+5JaDwQrjmOmQ9NUpw4\r\ny3Z1YvlJS97yNm/z/ft3P3z9QcVwsk3C5GXzfD59//7NzEx+q5BtdNQ1vzWf5kOHi+ulkI3H42HS\r\nUHbHnfJh2C6G2bzM8pLhxnds0czMWzZCYUd5mZkhQ26c+RQu8pInvg5jMW9Drpdd9fD2p3/rb95/\r\n6b/+3/g/uL98/Bd/8eXL//nL4/H48vWHr19++csvX3/44fnlh1/8+PXLD7/++sPXX3/9+sNfPb7+\r\n8Bdff/jFr374xQ+/+sUf/fLXv/jFnzw7X77j4ju+4zuu/8+OT9fvXb93/d71/81cb1FdP/vZ/5/6\r\n4mc/+6fky+PrfX77/n32D8c/1Pnfni/9D//sH/yDx9evX7+8/PDt24+/+OHrD//iL19++LfN/r30\r\nb+l8+dv/8B/8fX////x/cJ9Pdv35n/1Dv/rzP3dMUceXr1/84odfIJ08v323jZO3U5LzOJQjFeUc\r\nEvK8UzEvuV7CUIxz0iIvKVrMh+TtjtuEopiXkpdmXvJbeSsyw8aRwlAyp2zX8pKfPMqWzNuQl3vl\r\n7djmLbRhjMzG3Yhw76XMMGdMho3lZZ6xze9Ey4eNZuVtEpYP85OEuyEi+bAhZMYmqTHkJXkZM4tk\r\nXoZ82BjWvJ0hL1lsTOayK8fbjPmw2GYjhG1mLMPxMjSWt5lPIWcM8zIvY0PehpmzbGg2rk9tDGXR\r\n6KJZs3EKuT4la4a8LNuVTzeOZMKwsSYvIy8bJW9ZM/M2YRphmE/bvGUmmw+hcZuNI2uOl5Fck98a\r\n4ZqkOzcfLs64fjLbtHlL3q4R+bRRbEzeZsiMEeZlKBljaKzrUwyxsfxOPm3zO2XzKR82n/KSt5m3\r\n+a0x85Nt5mV+Z17mU7HRbMx8GNsUCvOWMBOysPmU8pKf5JhPycxbhbEsKm9hWNjszqenPefu2mb3\r\nsqd7545tbLaZnwyxUd4q5G3F5kNJPqV8mLfIp+XDSIjGvMyHcjY/2eZudq+7ee6alzt2fdvVcjoe\r\nXx6+PL7o8cXjcXx5HJ1UnuMU42KbmTm+ls7DTo6Xy0Hj3qfv9zrIpzARZymKNdscRx3nPAy/eX43\r\nU17GouSaHMksksbMkJcv+Tbu83qMk08dzlEPP+6y6yCpi3DUzBAlCckp1zx3kbekvGSxzVkeHdck\r\n379/98PXryozX788fP/+3ds2u3Pv9e37d5W3jY1HObgbm7fTUTk9tLQRddi8nVJUfvHDDx7LYzwc\r\n3/e0obydwuT3dudthkmIXXoQle0yavIS8xZSs9HCbD4VzZ2XCXOc8UBmcs1Mz6vS4+Hv/K2/83/8\r\nd/0H/sP/qccv/+i/gu8+XRxc/z9U189+9rP/n7742c/+KXp8/XL93sX3v/ev+Lv9J/5T/8nj5X/9\r\nv/5f9/f+3t/7v/wb/03/xv/TX/9rf/3/9Pjy9WzPf/tvfvUXP5z7zXkO19/8oz/2x+f49v2bZ7NN\r\nHX39wTV3821zn9O9tnnbeN6nIWmzaJxzDPdO+a25d4qkkukcoZMj5xx1nBMd5xxh3iZRiqSONSEv\r\n58hLUd6GoVi0GOF0MDmOLLbJy/I2sTmlk3OOHGHFZht5yYd5mSQxislbm21CQpiLIwkz0zKTtyG/\r\n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\r\ne9/7C+eTP/mT/1+/9Jf9sj/6/d/3+t0bH/qRL713c//dROuirSlbqyWJIt6mdaqrFiWqraqLomNm\r\ntNUZnZqOfd9ptTWtljjVKSIriKi4KqK2RrfIYmWJuAiybAlryYokkmVhS+wJoqnMOLV1SoI4RVAt\r\nUXFILKfSIk5VQTCpOpQIqq2UOlWHJU4JSlSChLpqWS4yVTRBKUEaCR3qudJWURHVMiElmNYL7SgW\r\nUlpGpRG0tCRkqKsgrlqaaEmrcYggSGkiJa7qKmrQkMZS0xIWisZhkSIiIqpk09YSNTaHOoRgBlEv\r\nVSl1qoiLDKJTwXQUHYfR1kzFwq4ziIjTnmFYQtg7IlKHmpCyREPVEhENwmpZUctCHFbJErEwcYhY\r\nkqpTJJ6LOIUUxUIkVaeIGqdISxDqUGKReiGoU6QOVREvVLEcWiMqgpSiWKjSOAVtXZSFQRNaFy1B\r\nEYdoqyqipVjq5t59282mU0+fPvHs2TOnm5sbV9W6iEOrThGH1gSt1MXg9vYpg9CiYyWKtiISFy1B\r\nStR4LnEqIoKqhtVIHWKwkNLQkrqKiziUomW1mmqouChNpBWMQwnSqlNoLeziHUrFcmhUtRGkjEPQ\r\nSmjjtFSVxikqJYkUQUdFbLQaz4VUlAbFaJm7uru7c/f0iWf7bm037q/N2E02yaKxumuJakrYGwka\r\nDW2NWPceCO6ePtXsRmxeiFWa2FWclqgIJatWq06RdaN3u6uIkUQaFy1hd5japiQmtESIQ41IqiLD\r\nWrFlM2XvqCJWo6EpjYiXakQcQpASpDEJ6tSpfXbTikUcIpiOlBrtKBqWWFkiisRzoWQtEcWu9tZp\r\nrcWKJBKUhLv9zj7jZrtBzVTCioskGopOERUJUW00NKWkUTQOUURdtAgNcRHPZRQpEkQmutdF4q7y\r\n7Nnt1nYlGT8DPX74KN4pXorD/+Krf9f26NFn5xu+7ut2V/HjfPO3fevNF/3qL7rv8Kmf8qkb4qoI\r\n6iqot3n88FFef//76pVX/gndeOWVfwyPHz6Kjy1eiqu4isOv/Od/5fqNv/k3b5/3eZ+3Hjx4kO/5\r\nnu+Zv/U9f6vf8e3f3v/iu76r//X/57/u53zu58Tb/OZ/6V/a/sUv+ZLt7//9vz+PHz9efpzb29t+\r\n1b/+lc9QV0X/wp//8/2UT/nUp5/yKZ/yt37hZ3zGt/Zuv/f0jQ/9+m3b3hUEk0VoaesUz4U0pKiL\r\n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\r\naEjQGIllDGtXa6e4R6g6CqUIitlKQiriqNRB7STGGLbbVVvUQWLGTrVEKC1JJMHUOSkJWntNNQgS\r\nozXXqa3OamuvCa2MQZBQ7zQSe8FIpGgF9bRWxbuJo9ZRSGjJ0FkjtEVJVETVUVRKEnsVs6WllTbr\r\n5fYKNn6cHr3+SLy7eKa4K+6Kozx8/Xp+3s//+Sfu8dhjj82v/vN/fr75TW/28z/xF4xP/KRPGt7F\r\nf/17fvfyn3z4Ky4/61f/6i36qk//FeNkc9LNycb/8g/+wXz8xuNFUUd1VHfVPR57/Ebdd99PsI33\r\nws2bN98xxvjW27dvv/zVr371T3/d6173ox/2YR/2pvd5n/e5efXq1dtPPfXU6ZNPPvnAv/gX/+Kl\r\nb3jDG16w3W4vXv7yl//T173udW988skn33jz5s13uO8nzaPXH4kfh9//+37fxe/6Pb/n7OTkJP4t\r\nfviHf7h/6eu+bv17f/fv9Z9/3/f1T/+5P7f5qJ/zUcPTnve85wV1VNRRHdVRHdU9Hnv8Rt33bpJM\r\n79kFLtqen56cPvnc57/gBzbxHW94/b+59bV/6es/78ZrHz/Z8cKHXuhDPuin+aBH39/7vfghD1y9\r\n4iTD2Jxa1Dg5cXp6putqbrfW7da6ri7W2sxpnbXOS5fbrbmd2lo7KUpbMxNDshjKqIyNxRDTTMXQ\r\nxlRriBiNqdpptIbQojTOTk60dXl5KWJvzokaookZJkaC6iwJReisuCNiZzqImvaCip0yU0elxF60\r\n1F4JtVMqai8GZihGQ+xE1UBjJ6qGGJgqYUyqhIS0aqdVlRbRVFQaTUUJGXZiCIa9xNNir6aDxl5N\r\nLUFLTXOW0lY7FXOdLtbb1jnNOc05tZVGQkNGjAxjREMwEksWRkQkMRIdEZEMI3TEEMNgwYhhWNBU\r\nw0BKRzW0NRozVUQsqok2JFIHCWlQbRF7tRepgxhmp2RQMqqtvYaipbM2m42T01N7LcLIcHZ2xfn5\r\nuYN6d6FqjMWVq1ed37qlrb05V7fObznZbCzLwBA0rNutdZ3aiihiLzLioAQzpLEYZqegjqokIo5q\r\nqsROaB2U2omDqogmgqChrZEhtRPTUVNBkTJE0dRo7E0kEZFWBw2pnTAqIqXxTkMcJCK02hgZ2rJQ\r\ntWRBpLHXVETKVFIaQVVbLVpVB3Na7Uy0LjrNOljEDBmMDmNEkcReDA1BxDJiDjuxGDLoIBZDDGxH\r\n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\r\nWKd2unLtOcYmRmJZNpax2HZVFXtDVE21k1I0EqpiL6IoglLiUktbDe20PT835yrZ0HqzlDDnRN0W\r\nCZ1FVM057c3SRDJ0LJJhzlVLEZEyW23tjcFYq3bCSBDPSIaMwawsw0xkVpBEVZUQOyGJlJqUoCFq\r\nL4naCUM0JaidCGZdGMXAiLuee4+nT7eWMYwtGeOky3LDz8D999/vrb3v+79fvuHrvt4DL3yh3/bb\r\nf9v4sN/yW5Z3eZd3ibfyri95Sf7IJ/2x5YM++IPH7/7wD99++7d92/yY3/fR51/wRV94cOXKFXf6\r\nwR/4gfWPf/Inb10q6lLdVnd45LFH61k/Zzz84EPxluK22PlNH/ZhY7vd+pqv/uq6FG/ld/6u3zX+\r\n8Cd+wtGyWXJ2ehrEpSKoS0Hd4eEHH8ojjz1a76CNd8C1a9d84zd+4584PDx80Qd90Ad93fu93/v9\r\n2PXr1698z/d8z7v+4A/+4K873NnsjDHy2te+9vmf//mf//4f8zEfc/ySl7xk+/rXv/76tWvXXos3\r\neNYz4lLcFrfFW4rb4lJcyrd967fO3/Jbf+virZwcH/vIj/i92+989auL/qpf/avzeX/pLx0cHh56\r\nxiP/8l9uXaq3VG/lkccerWf9B+n05GzgiV/+/37F13/f///7PuTs/PyBp5667vDwwE/91Bssy+Kd\r\n3+kBpzePPfXGn9LE4ZUrrl696oEXvtDp2Zk3vvENvuqrvso3fvO3+GXv+Z7+X+/1nn7BS97FlYON\r\nblfJwl3PsRVzXS1zcn6m62p2K3Nal8E4tKyM7blsz5zOGp3Ws1U2U2snoorDoyvmAXNOWmMZNNau\r\ntDrr5s0zVVVKM8xZWu20N01UG0pD10ljb6qZ0GhrqpbR2Cum0iKKIC41ZZZGE1ONoDGxtkZIYyJ2\r\nZiUxW1URUedIWGYVM6FTGkSVkE6jVE0kaKXVDLHT2isaUnRq4lIxVcSltoqI2mklw15VE7ETJCJa\r\nO0FpKBFSUYpStZfSTjXV3hDUVEQMUVXEpapnBE1pBEVCMiTDXhJJJJGE2IkhJCSCqIYIKgkhiWVZ\r\nJChzTtt1620pgsZOzDmt65TNIq1Rmpri/PRMz7dmmFhEZ80RxTInhhna2oi25nBhabXV1F5bE4u9\r\naqIqDaKmIg2hIYqIqhgJYiyLmUlRimkadhrFTKWkUTVNI6ExO6VTrTpra2XWKvZWpTWExGwFSUgI\r\n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\r\nlEaRVJHQxFiGa/c9z82b5zrPdRkaXa4ePXV+9eqZ2+K2eBv+9ld+5fzu7/qum3/oEz5+85/95//5\r\novX617++P/ojP9qv/IqvmP/sn/2zuhS3nJycuNNms7FTl4q6VJfqUr2VRx57tJ7181Hs/PUv+2vz\r\n+Mbx6Z/+jE8/Ojg4iFuOjo78+c/7vMPf/8qPOf+mb/zG2nn6qac9Y12nW4IiKIL66YK65eEHH8oj\r\njz1a/ydtvANOTk76xBNP3HjJS17y6oODg394fHz8gX/v7/29l9x3330HY4yzL//yL7/v3d/93d/4\r\nfd/3ffd/wzd8w7uenp6e33///f/yNa95zeufeOKJ1x8fH1/3rLgUt3zk7/k9p1/+N//mlefde+9w\r\nh/f8L/6L5Vu+49vHO7/zO8cdTk5OvOax1/T+B+533333xR2uXr3qz37u5y4f+AG/fvt1X/u18/e9\r\n8pXjvX/1r8rDDz887Pyrn/iJ+b3f+73rX/hzn7v98R//8aIu1dvxyGOP1rP+o3JwdGWen5/Zeew3\r\n//YP/6KffO2/ft6rv/07PuTee5939fz8jO3W4dHG2kPbTsc3T6zr1sHBxpyrdbua6gD3XrvmOdeu\r\nOV/Pndw8dXLz1M3T1fb83DpXypWrVyzLxuFBjLE4X8+dHN8w16mt7Vxd2Wysc5pzaquYXZ2enbt5\r\ndubpG9dVtbS1zmmu05zTuk7PGGPIiJEhIzIWy4gxhmVZjLFISEiGjFgybDbDWIZls1iWYYyNZbOR\r\nMWRZbMbG0Vh0DDIEmwwdQzFaaZ0PRhmtRcwRw16NVu20LtSlxEyMxEwsYRgyhnUMS4YRhpgj1kTD\r\nTKRMDJyvNcrGTmKrFsSlbSqN1IVtGGJBUSSkUVWsIQ2qKgmirUt1qZJg2Ksq4lISxIVWlaChJdVG\r\n7K2EdhDaqtKoiloaM1U7rZaq2AuKoKpqaNCpGI1iIqmplBqocbCh1KXTs1Pbsy0qiWWzuNDaOz09\r\nFdFOUygjMU2Z3iy1U4LWTFhJqCoykQiWEbMkaI3YCakgGd6W2dKpja1pqzpXbakLTWlIjUTGkDAM\r\nRowxRCxjMGKMoQ2JpmIQEkaCyowiiYSoCupSjYZGVUNmDVFRZEbUFNOlpVQJacVeCS1Rl6Ktum02\r\nLhXRliJFtC6lkmiroir2aqAqdUsREloDEwlae22l0ZS4EJFEkcZAN7GqGC7EpdJOs2Wutl0VUWet\r\n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\r\n22w2i2RIaCetGNYxna6rZcQQSZyeHFnXVcR0KYlO5lwlSEQImzEkQaytxSDRMRADUatLQ8Wlqogx\r\nIhmEiCQyhomBETvRuGm2loZU1SxFkVZRNbAtDR0RnGM0OuxEVUsTKQsaN82SRBozdmqIqYqB1E1N\r\nTCwYmFgnG7UKopkmhlgVtdTO1LBiYjSoqYLRmmEiiJhqtJoQ2qqIndYaMgmqZhh2SuykiojZqSGN\r\ntIrZujBClRAVsbpQQV2oliBqbUkc7h9Ylo3ZuqlTldZMRI0xbDb7Hn/8uiuHh5YxTHUhdVNCEooM\r\n59sz27Nz4gm1zZBWErWTiEuxk7gpJMGQRJDQEIOQ2ImRoXFTEqMIVUQ8qSqo2AlFhBAhDJFgDGMM\r\nm3W1zmnOaf/g0NxjWWqMISEJiZrSqEsNyunpmccfe8wjjzzsne981BjDSMxOw4WJUpJQ2krCiJlY\r\nz7fW7TTXrbZGhieNMWz29m3ntM5pbWmNvWGu07pdddaFMRajsW5XndOyLJK4qZXE1atXrTeOTLVk\r\neNJwISRiulAEiZ1QOxU7tVOmmyqWEVpEO6mbosasXD1w2wue4/F3PM7pme5tnJysrl49/OH1abe/\r\n8cd/+E21803f/A8OPuzDP3zxs3jRi140vva1r93/XZ/6qWf33XufnXpKPaV/86//jfUdj7zj+IUv\r\nemFe/RWvmp5ST6mn1Af8gnT3tbvi3cWluBTEzsd+3MfmZS9/+cYtHn3nO/tH/8gXbv/ZG95Ql/J/\r\nfu/39nN+/yu3r/6q12yuXLniSYeHh77iK1+99/l/6A+dfce3ffv0lHpK/Szuue/e+o+w8T44Ojq6\r\nfnh4+J3Hx8e/7fbbb3/Hh33Yh/3UnLOPP/74Y48//vhjx8fHtXN+fm673Xa73VqW5fp99933Ew89\r\n9NA7jo6Orns/cPe1u+K9i58pnhKXgtj5C1/yJZuX/4ZP2Dz96U+PW3z/v/z+/o2v+Zr5rd/yLf30\r\nV7xi/brXvW65dte1uMXH/7pfN1779a/3ob/kl4zDw0NPetvb3ja/4fVfP10q6lJdqvdwz3331ge8\r\nX7n72l3x7uJSXErVY489lh/+4X93fOXK1fX+t9//6Lve+Wie8cxnvvE5L3rp/vNf8Pw77r77pc+a\r\nJ0d3PvLgAy944O1v+6CHH374RW972/0vuOfee1/89re99YX3v+3+Ox55+OFx4/rjhtquq3XWVOuc\r\nZiuNZBgJolYnJyfWs3PKxBhxIaJICCqmSxUVTdRTGpKYIyokJC4kbqqKGK0LTQW1k+FSNEykLJhh\r\ntpooGlYxUDVRF6KtJGYZimriQkowExNREUURoVX1pGIbKkZISaIuJdHEbAQVM4wSxKRVMZTSVJGi\r\nVTtF60JVEi0NQVsXirY6q60nJRQRSdyUoBQhicROSAzRlLgpoiouhLgp4kLE7LTZDFcOr7owZxV7\r\nh4dOj0+cna+qrl656sbJicdvHLlUbXVObVUR2+258/Ot226/zWazZ0mMZTHGsBnDMgbLMMawyXB+\r\nfq5q2Sz2lw2bjb1lsWQYy6JimrrEYmhrzGl2Wuc012muE1MSQ0gISQyRhIQRQ1BJRFxoQmKItDpI\r\nhtjJkDEsI0aGzRg6YiQi6lJdGpiJirHWgjVxnjAZSEhrGyRGQtm0FjWzaIIqtolgqpSIEeZkiyE2\r\nSplhi4GKNQw7ddMMQVBVpEwxW8IQE23N2IlFXZhIo62phGGnVTu1E5SyjZ0YnUZjoqkqRSt2ykyl\r\nMUODlkRRpNUQtNVE5hTVsL9/YCxDTZlRdaGqIXZKsSzD/t6+GzduONw/sNnfSIIiqJbOOjs7tc6t\r\nJEwEqbZSgiotShljaCeCSIrVhSTqQjylkhiGBiFiKVUSEg1aEsIQtROCZCCSSGgiCZ3amq11rXW7\r\n2m5Xe4cH9vf3bZaNZamOQSNI7JRSnK91/caRdz3+Lg8+9JAbRyc2+wfaVRISOmlJxIWKyDJkWVSd\r\nn53abs/NdUUkcVMZy8ayt6fbM+1U1dYy4uTk1Nn5uUux2exJOF/PDIwQVFXt7+257eoVxw/cL42i\r\nQoJKmetUlQxjBNVWW0FqJ6SiWpIwomoZMSdDzFYxsGe4485nO7z9No/+xFttNhtHczpb1rPnveDZ\r\n/9fbzte3v+nf/vD8y3/1y/Y+7MM/fPHvceedd46vfe1r93/Xp37q2X333menfhZ//5u+qZh+pnp3\r\ndYt77ru3PuAXhLuv3RXvLt5dPCVf9Cf+xJ5bnJ6e+q2/+becP/jAA25R5Hu/53v6ua985fZVr3nN\r\n5sqVK550eHjoy/7aX9v/Y1/4hWff+g+/ZfWUekpdqp8DG++Do6Oj6894xjNed//99//6d7zjHT76\r\noz/6O571rGdt2t7Yeezhhx+2s964cePk4Ycfvv7www/fePjhhx998MEHH3/44YdPjo6Ozvw8d/e1\r\nu+JnincX7y6eEuTaXdfyta997f6dd945vBcf/Ss/Oh/9Kz96+aZv/Mb5R7/gj8xPf8Ur1r/3+tct\r\nL7l2LW7xy375Lx9ucX5+3r/8l770DEU9pd6Le+67tz7gF4K4FJdi5x9/6z/ql3zpl+a3/Lbfutns\r\n7fWDP/RDxmte9eqzb/u2bzt99rOfdfybftNvOrn24hc/1mze9vTnPP9Nz3ju8w5+ybIcjLh64/Hr\r\nL73v3h//9W+97yd/3f1v+ckX/di//bfjx37433ngwYedhrOwNZytKyEmQjk5OnZ2fq6tS9VpJ+rS\r\nDHEhEiokUiRqp2jNlFLM2omGtCTETgyct2ZCWEKDDBKLoRk6hjGGoWZJoi5tETuNlpkKWtqYqmhI\r\n0SqS4ULVDBHEVK2bWj+tqqgIKkbclFRKMZERadVwoWiooFKqUpoYqApShie0LkVNFyJqJyiKMDu1\r\n1E5r2EkotZO6UE9ozRJ1oaWtqsROVBFaF9opIi4E1bmxt7eiLoXWZrNxdOPUwcGBlrmdxE5EZGAs\r\n4lIx9vZlOXNyfGZ/n7EZcr41EsWcq5bZ6eT42PnZuQsNI5ExLGOREWMMYwxJGLHJsIzFGAuDMYa9\r\nsbEsgyX2xsbeZo8l1sHe2NgbGwnbwRiLvcY6YozYyzAS6xIjw15i0zobKOY0Z63oOmVunbWaGCIj\r\nIjpiiIiIdTAwxFasqWQYWNUcLGKipiQiVhfKmDZZDDVHTGxQtWItS2mY4sKclTATi1jUFjPsiRaJ\r\nbaqNkWiYGCWmGdrQEoo2hmlFEwPpdGGmgjntlDBVxBTUQDHttKpmiUttXQhaaqchJNVJMyRR1RlR\r\ngpbSMLLYLBtVGlHrdrV2JbG/t6+tCw0pyzLs7+85PjuVs1ObzSJjiAjWdatzkpBo3bS0immKGGiR\r\nCjKiqFA7RVBCGxeibgrBmEjdVKJmqBhFkWm6NDpMNARNpBUUQVsjEbHOMGrNtM7Vdl3tr1tznfYP\r\nDmzmYiwb4qYkgjmndU5HR8ceefgh73zkEfe//UHrrE2is4ogrYQsw5xbU2yWjbEslrHo+dbp8bHt\r\ndmt2apDQurC3t2eTOFtXncw5tZXE6cmJdZ0Skjg82DfntJ6eSUKG2ilaV64c2izD8Y0jB6gLZU4R\r\nI5GQDOsgdmqnguFCJDS0jBESQgyzRY3EsgyHT3+avRsnbp+84MUvcvb4kdMbR7rZd3b9ccsd+/c/\r\n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\r\nKAlzxBAbMUasYWDBTFxYGxkxBzUMl2aYLa2IttpKSIYERQaZbkpE1U7pLKG1EwkJyZBJQ4XUVEEE\r\nq60LkZIR61pSwY3jG1IiZlcznN+44eqVQ5vNRlsRVSOs64qoStxUYcScFTR2plVcaEsqJcKIaafE\r\nTkjtFHGhrQtTNKXMaac60DBJiGqJWFMymAgJa8qMRWTSUNVGwkRTEVUSF0aGqrbmrHVdbbdb2+2B\r\ng/0rls1ihsyac6tzOj87c/1dj3r7W97qvp98K4ksi9kyK0pI7ETLJotlLDbLxlgW23V1dHTk/Pzc\r\nwcGBsQzrdquiLXuLvf0D23U111XL2unK3r6zs1NnZ2eCMWJvb0/GcHR0ZD07N5aFRDtdiLj9tttd\r\nf9e77J2fOWgMjDEkQ8YwW7NTi9YYA5VUBBWhtLVkqBjLMEvXaSTSabO3GGNjbzuNWc9+4fNdvXqb\r\ntzz2uIO9fY9fv2HZG0fP+5C7/+W/fstDD4655hd/8C8ebvG1f+fvTuRz/8AfGF/4x/7Y4hZ/6S9+\r\nyfk/+tZvrZ3f+UmfNL7xG75hot67+pnqvbjnvnvrA97v3X3trviZ4lJciktxKcgznvGM+H/o937W\r\nZ4377v2Jfse3f8f8I3/488/+8l/9sn07/82f+lOn3/D6r19dKupSXapb3HPfvfU+2HgfXL169bbb\r\nb7/9GbfffvsdP/iDP/hh//gf/+Nf/tBDD73w7OxsvztJevXq1ZNr16499FEf9VE/edddd+2NMWLn\r\n6Ohoe3R0dHJ8fHzm56G7r90V71084Uu+9Es3X/1VXzX/3Q//sPcQl/LRv/Kj85/92l+7cYvv/Z7v\r\nmV/0hX90ffDBB/2W3/Zb8//9H/6H5dnPfnbc4r/43b97/B//+99af+RHfqSf9imvOH/9N3zD3vNf\r\n8PzYOTs786Vf8iWnr3n1V64uFXWpLtUt7rnv3vqAXxD+4B/+Q+OBBx7M3R/8n4zl8GD5oBd+0OZD\r\nf/EvvuPZz3veBz3w4AN3Hz300IedPPzg3es7H33uySMPPe3o4UduP37X9aedPn799rPrNw7n6fFm\r\ndI7jRx9zfrI19vatc7W/Tk/rdHK+Ohx71rMjm7OtKx1uu/1prp8eO1m3tnO1ndO2w7bVUqxqFoOi\r\nrYliRe20hInVU9p4b4ramXamibpUFHGpqJ0QBElIBANJJFExMMIQQcJojQS1Bl1l1lypujDtlHpC\r\n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\r\nUwMDjZ1K3DRTQ0gQ0xQkkQQTQUUkMee0rlvt9NADb/Nvf+iH/NTbHrDsHTg8vM12rppqJ7OkxjJk\r\nb8+ybAx0rjabxf7+gbTOjo+dnp6S2Bxcsa5TW3Vpb2/f4ZUr5tk56yTIYv/w0PHjj9uen9vs7xsZ\r\nxhjGsnHj8cednZzKWMROaEN53p3Pdnb9cTk5ls2ezBitTARBKcYYKmTQWkyZkYQMVWY1cSka9sew\r\nv9m3WRbj9NTedmsz4rm/6MWuP/q45fzM3Nvz+Mmpp931gjdfeekv+sff+S//3aP/17/+17XzHd/+\r\nHf2Mz/xMT7py5Ypb/YUv/uL11V/xqmnnuc97ni9/9av29vf3PemDPuiD4r2r9+Ke++6tD3i/d/e1\r\nu+K9i0vxlLgUl4K4FJfygz/wA/PXfszHDE84PDz0qte8Zu/VX/EV26/9u1877fzJ//pPLb/5t/yW\r\n5eDgwJOSdG9vY6cu1aWinlJPuOe+e+vnyMb7ZvPII4/8pwcHB+NjPuZj3vjKV77yvnvvvfdt9957\r\n7w/95E/+5NtwhoOXvOQlL/r+7//+3/3mN7/5V73xjW986ctf/vJ/c/Xq1StXr17d9/PQ3dfuiqfE\r\npdj5pE/55PEJv/E3HLjFs571rPG1r/17B5/6SZ989ta3vtUtsm5Xt3r+858f78XDDz/sf/sbf2N+\r\n4R/7Y4snvOAFL4hLRV2qS0VdqqfUB7zfeOz8eBwuezbGkOwny9WFp5+dnz9/+65H7j55x8MvvfG2\r\nt919/va3v+j8oUeeu3fj6JlXTk/vuHJ8fKVzu9nO1eZgX8ZinauuW2cnp7ZHR85PT52eb63nW+dz\r\n6mBz5cDhweL8ZHE+OJvHjufqRlfz6Mxmf9/cVrerqE1LiWF2muen9pZhO6dFLGGq0aDWMIuyl6iY\r\nolgSF4qlNDTVUqUIU40yLVZVdLCGjUttVY0MF6aJgVKKYLaKulREpDHDOqaUorVTSkVDMURn1VSX\r\ngtWlgYm2njTr3UylFEXD3himS0HLtDPrwky1tJ4Sl0pCEfHuQtwURFxoUIrYCRFEEU8pEpLQkKAk\r\nCCEianZKQmKMhQxGBBFJNHaGJGQYGGgiGOpCU2lsz8+dqKsHByooYslw9eoVR0dHKEU8oepJkWmn\r\nMqtBo2iqIggqqEtBtVRJaM2iBClF1RBVDVMMRV1okaDqCaUuxU7dNFWKRENdiAtNVYidYEpCI6qh\r\nIQiK6VIxYyeCqMZOjESFFBGXmmgrrbUVOy1lhom0njSLhNJJQkXVWjuVREWyWIadkFjUkkhiDQuG\r\nuDBV0Na2tdhpzU7B2qKCtua6mnO1nm9JTKWk1dJUxIW2Zmo0iLpQSUQIV69esX9wYIxhs2xslsWc\r\n0/7+vrEMy1gERyfHDh6/7urhoc1mGMtiGYuROD09sZ3TMhaLYVkGyxXnXY0MI8PJybF1rkaDIaNi\r\nayQkktimYgiaGgmia1BFRAxSgjIyUA2jQRh1KYhkmiYZhBFaioxYMswMlJDGhcROaFXNRISiQ+Km\r\nqZSgqiFlpBJ0EmpomOdnrr/jUW/9qZ/05h+9x+PHpw6v3mbZO7BtFRWZJIxlMfYPLHsHRifruZHY\r\n29839ja2Z2eOT0+sc7V3cEUMcz2jdSGJg4NDGYvT4yPtJIv9/QOZdXR0Q8ZiLHsu7C0bI9w4Prbd\r\nrvb2hiJY5+rwyoGn33G7d7zpjfbFkiGJxbRsooidxNrpwqLS6UIabaVDQ1NEZiRkGQ7vOLQntjfO\r\n5fqx29bV/tUD2d/Yvu1+Z+XwaXc4Ot/K/ub68z7sQ//h2879wE/9+I+vLuWfveENfdMb39QP+dAP\r\niffwt//W35qv/opXTTsf+3Eflz//v3zx5nnPf348Ybvd9i/8z1+89R/gnvvurQ94v3f3tbvivYun\r\nxKW4FDsf9/EfP/7AH/qDmxe88IXjgz7og8aDDzzQBx98sP/0O//p/F//0l+af/5//J/Wv/8t/3C4\r\nxeHhoS/4wi/cfMEXfqGfzd/4mr9+/t3f9d3TpbpU767+/2TjfXB0dHR2enp6sNls1l/xK37Fjx8f\r\nH48kV8YYzx1jbLBiM8Z49q/+1b/6gTe/+c1u3LhxgFOc4Nz7mW94/df317/sZWe//Xf8jn23eM5z\r\nnpOve91r9z/lkz75/IG3v92TtuvWrT76V/7K8SEf+iHzTW98U72Hn7zvJ+tnKupSUZfqUj2lbnHP\r\nfffWB/y80nbMVhkz2Q+3T33OYzeO7j59xyO/9Oz++z9k++CDL96889HnbW7ceOZ6fnRHj48OrmzX\r\nze3baTnfmmfn5ro6OT+TuTW7qtiuq7muTm/csG63mMYS0+JwObCZ09HJme3RmfPttG0se3s23XJ0\r\nSjk/O7N3eKgmrcwIZupoPbGMGmMY21rL6CA1BxGLmmhK48I6Yo2dIY2qqSQuzNTaShmYKggm1lTR\r\nUrGqqS5EVNVQVHRUSxDMIjExg0bEUCODuCmtmSAqGpQ0OqZVpHZCa8RNQ7TVgZLGVDOonYrQaqid\r\nuqmoS1VVN5VgJmZrIqhqaetJ9aQI6lJD7LQuRRI/LX5aEDuJtuIJrbYiKI0iiQtrpzmnJQwUq50M\r\ns9VWERdCWJaNsdmzJCQuJDGRRERa61wdz+nKlUMX4kJtMtx+5aqjoyNVWnt7e55UrNstrSIoqtKi\r\nCIYiSoidTk+JlLpUkRYlRMSFaGnsRFWERFqE0FbsJJJQO9VQg9YozdCgDBQz8aQkKpLSChJaZqqo\r\nS0FFElUyTJcihIrhUu3ETkQNpAiNmyKiphpiYMZNUw0RNHFhNCaqgrVUXVjL7DQRTCEUaamdmmHW\r\npbgpSOJC7YwhInbCYhCkFCHiQltTRdROiZ1QpWzPV8uy2to66xmlqOsiguLG0Q0pt99xh8RNcSGY\r\nttutOSs4PDywbDYkxojg5PhYlsUYw2YsNpsNg2UslmVjydBRYwyLxVhCamRIFgkSYwwjixEMxlgM\r\ni5iyRDIshgyMSAa1MwkxEFGNnUhiiyxDMowMCRnDkiF2RjXRSU1DyJQZMXUE0aKTEUk0kZCQ1vnZ\r\niccfe9Tb336/+37qrR56x7ssy56rV+8wNhvbVoqSVkKWjc3hgbHZoyvbc2kty8be/gFzOj06cnZ2\r\nxohl79A6J+uqrQtjbBxcveJ83To/37qwZLHZ2/f4jcednpw4OLzipgz7+/vmWsfHJ9rabBZjROe0\r\nbs+98CUv5Oi68fgNh9nY27LMyoiGZdiJiYgM0mqn0WjiQtSa1aXFGMNehr3BenTsfMbh3oFn7w0v\r\n/k+e64W/6le479++2ekjjzp8+jPMvQMnN076/F989w998Me/7Ns+4mWfePzZv//zDn7yJ39q+53f\r\n8e3zy/7yX+lf/bK/sn7ZX/trG+/h93zGZ4yP+uiPzh133OFFL3pRvIdv/vv/4PyNb3xjPaUu1S3u\r\nue/e+oD3a3dfuyveu3h3cSkuxc5f/9/+5t7HffzH77nFc5/3vDz3ec/Lf/pLf+n45Fd8Sv+bP/kn\r\n1y/5C39x/WN//IsW/4F+4Pu/f/vFf/7Pb12qS3WpLtUt7rnv3vo5tPE+ONrBT5yenv6SN7zhDXd+\r\n+Id/+EPPfe5zn3bbbbe99LnPfe6LXcqdd9558M3f/M0fOsboZrN5/Ojo6OGjo6OHj46Obnj/Ejt/\r\n5A9//vboxpFP/89/175bPO/5z8/fe/3r9j71kz55++CDDxb5t//mh/ppn/7pnnTlyhWv+sqvXD7t\r\nU16xffjhh92iz77z2XGLt/zUT03UpaIu1aV6St3invvurQ/4eeP68fHIYnPUHkqec37jxi/pw4/8\r\nZ+cP3v/hJ29724vnO9753Ny48QynJ4ej66brtF23sm7tratut47PTm1PT6zb1bpddU5r2etkCS2t\r\nvYM97bmZxXmx1MnJubPTU8dHp87PT/X81HK+tT9Xt2VjHBy4fv3Y3E7r+Q17mwObJU5FO50cn+j2\r\n3B5mMGKDOZlYXRqirSnamgkjkpBFStW2KyFl01gTFQMzU1VEWsOlFomJVcwQ04XaaQgTDbN2YuPS\r\nDGuQaKNYxIUWYcROVM1URMQUI8Ggdqap0ojocCmhsWYaSCmKYqAoooKW2kkpVdSFiImpLrRUaQUp\r\nRUNLhFLVuJSYirgUl6pCKOJS41KRaFAigomUDIYhyzBSIwQtE+1QNWunzMmsOc/M7ZmK6UIsm40s\r\nQWzntK5byXB6zPZk39UrVzWRxJIYiSv7e24cH9HY32yYq6I4Oz1VE3EhpZ2KlKmaKaJImbFTKbUT\r\nT6jaaVVEUEVFMUNaSRDTpSSqpguRRFGRuKmhSN1UFPn/sYcn4LfnCV2Y+X6+v3P+y71V1V3d1U3T\r\nW5WU0NAIaHQ0TlQ0jqJRcUGJiXlGQQ1xEHcC4jIzGR9ck7hGEOOSURORxiXua1zGHTOORkAsqdvd\r\nLN1d1dXdVff+l3N+38+c/z1V3NtNq3keJhGYfl9RNEil1EFpKqIpJW5UBTXQeKBITEcRQUPqoIom\r\nbowEU1RGaAjKQBv3lYGGEepGaCWkpAgDQd2o0Qo6IkjRUgfVuq8OWjfqoCEoUx1F1mmG6WV1UFXJ\r\nEAcJ6ihmp4YhiJamhtjv97IbTk5PDEHMTsLo0NZL914yW8NwdXnp7PycOIigjc32RERbu3XardeU\r\nqe7du2e/21GqIhIaUiKIphIikmhYEiOLjDBiSYwsxhJZFiPDZiyWMdgOJ2Nju9kYy2ATmywiBCOW\r\nDMMgUxPDEJFRlmGTxciQEdkM27GxjEU2MTIMQ4tURqRDlFSFVlv3JdJa53R1deHFD77gfe99r/c+\r\n97wP3bswG6cnZ05PzyRD1ylhltFJa2y2xumZzWbQ1dzvtNMYw/bsRMZwdfeuy8trs5xsz3Usurtg\r\nrqhk2Jyey+bE/urK2kriZLuxn6sPffADMoZlWaxzGsuwPTl1cXHl4uJCEttlsR3DxeWFW+enXv/4\r\nq3zgXz7rZLDMCMYmlgxRCSsStOaMEYYKRoIwp6WVhE5jDLq3nJ5YHnu106ud0+srb/mkt3rjx3+c\r\nV+fUC2e3vXDr2ubRV7nb6ew1j33wE37ID/qLb/r+P/Abzs/O5vn5+Xz144+PT/+MTx+f89N/ev/T\r\nn/fz1j/yh//w/I9/1s8aPsInf/Inx0fxjd/wjftf/kt/6d5R/Ss8c+fZ+pjvtZ5+8qn46OLDxQNx\r\nFAd/6s/86dO3f+qnLv413vSmN+UrvuqrNl/w837+/r/8zb9l/eVf/CsW/wb/6Ou+bv8f/vSfce2o\r\njuqojuohz9x5tv5/bOO74N69ey+NMf7W1dXVJ/zNv/k3P/Wd73znC5/xGZ/x/Bve8IZ75+fnV3fv\r\n3j157rnnbn/jN37jm7/927/9tfv9/voTPuET/vE73/nO9zz33HPvuXfv3ku+h3n6yafiXy8OvuxL\r\nv3S9uLjY/ezP+zlbD3njG9+Yr/7ad2x++k/5qfvnnnvOH/5Df6i/6Jf+kr72ta+Nl73lrW/NH/va\r\nd2x+82/6Teuf/dN/puiP+MzPzC/8oi9aPOSf//Nvmo6KOqqjOqqP8MydZ+tjvltrO67njiwna8at\r\nwWsv7917+/U7/+W/d33nX/7gvuvOJywf+sATvbo83ew7tpNlVue072rOvd3lpXV3bd1d6zrtW22t\r\nqnVQwrruLMvGcDAnmc7Ozuz30363WtedJdPS1Xbu7bs6STUVDDU2G2O7cb1e2691vbuwS+1GXe5W\r\na1lCUzENVCSRQeq+iiVVrIiDMLIgEtawGCaCMRmNNQ4qy1A1W2mYDAeDNUQsiBuRVkWCMssUIwRp\r\ntNUwMMVRqPuKDhrmJEojQmliJgitJpJBI60bM0xxY4g6SLSsoQ5KUsUQaQl1I6rqIBEx3KiJoqhI\r\nKiVxX9E4iBtFilC0CHVQLxuqbjS0QTUO4iiKpuKoJamIOghF675iOIj7GubEiIrRqhtxenLi9Ozc\r\n7NRU6r6W3e7a1dWVy4sL637v7PxUxCqqik2Qur66IEXM1t2X7kocxBBCQxAxkUTHQAxENO4r0hD3\r\nFUnUjaqDxHQUkQR1XyJeESlJNKQIEY2DGEgoiiANSohK3NfWQNQUQVoJM2ikRM04GJS0GiRSEkeh\r\nomgiDkozVNXBiDoIbUloJTQo9ZCEIkwloaUIQyQhREUkpDVVWjeqiogoiXpZCIohoghBaIm4EQf1\r\nsoiXJYQYzk5PVV1eXVGmury8MpbFyWZrKomg4Xq/N+c0MrRc7XaKW+e3VDWRDPcFiXQRBOt+p9gs\r\nWwlTpaQ0CBFKg5DSVltrp7V1Y6o4mNUyU0pQNZESB3FfQoQRESORRFVGDJGEkMRIxNAwxrBkWMZg\r\niWUsxhiSQVjGMMYwEk2lcaNqzmmuq3W/d3F56e69uy4ur6zrNDYbp+eP2m634kZVKZ3VhrBstzYn\r\nZ7od5ro39juskmE5OTGWxe7y0uXFpf1cjbExtqfMPXOvrYRstk5u3dI5zf3eLMuyMZYTL774Afur\r\nK7cfedQsnZxstsZm4+7d95n7ve1mSKarey8Z+D5veZN+6EPGxaWzZeMkMWYMBB2sZToIyTAwxGLQ\r\n1aY1kcTJODE2sZQlLIlHzk7dvn0Ldz3ymkc98Qnfx+1br/Lcv7jjhefeb3zcx9mPrfXypfnqp9/6\r\nda//gf+Hv/za1zxxcX5+Pj3kzW95S97xJ/7E5ud93ufvH330UT/psz97+Df4+q//+vUn/fj/4Br1\r\nQB3Vx/z/haeffCq+s/hw8UAcxVF+2+/8HZu3f+qnLv5XOD8/95W/96s2X/Dzfv7+Z/8n/8n+V//a\r\nX7t84id9UnyE97///fP3fdXv3X3F7/7dq6M6qqM6qoc8c+fZ+t9AfBecn5+fPPHEE6/9wAc+8EXr\r\nuv6Ys7Oz07Ozs5PtdruMMSRxY11X67rO173udf/LZ37mZ/7hO3fuvOvOnTvfcufOneeef/75K99D\r\nPP3kU/Hh4iiOgiCO8uu+/Ms3P/M//o82PsK73vnO/vSf+tPW559/3uf+zP8wX/4bfsPio/iWb/mW\r\nXty75/t+4ifGQ3a7Xf+DH/tZl9/8zd9c1FEd1VF9hGfuPFsf893a9e5qjGVzJuPJyw988NOv3/Xs\r\n/3H95md+gPd8+1PL+194Yly8dNa5T0+3nJwxTuxfumu9vLC/umJdZa7mfjU7rV1lTmvpEnvMiUZb\r\nBifn55Yy59RWOqz71fVub391ZXdx5fLywsXdS5dX1y72167Xvf1uml2tardb3b28Z521W7kyXXW6\r\nbl2b9mrXWtWqZodiuhGKxmrVREWxOsigDOxNExVCW5kxTcJ+1BrSSiOzRknYh71aUxGjZZKQVue0\r\nqpkQNIYIWtbUPlEs9bIo5qgmTNIK0ghmah2hpPWwNG6so9aiJFS0NKxiKqKdgqAlLXFfEdWQui+h\r\nDkrLTBVppREP1AMRN6oGKqRaGtqIEgdRzFZTROs7FFX1igha1jDRlpYSNGgFdVRF3Di7dcuyLG5M\r\nr6gibsSc0+XFhXVOy3bj/OxcUFWl7qsH7l3cs9vt/KvFjaBxX0QcJI4iIUKQkCDiIA4iiaMYiYSJ\r\nipEghDSEKqIiCaFiOEgUxXAjquKBqhsDRU3KUC1NaQRRMw6G0dKacRBx1BBU1I0I0pqJCIpq4kZK\r\nQzvFK0LrRh0FKVV10Bho4kZaFCEo4r60tKom4iioChqCNII6CEmkNAhKUBRBWm01sSyL8/NzI0Fc\r\n765dXVwqtidbt87P3ZiKIW7Ujd31zuXlpRtVEdvN1vn5uQ5SR6EOSnB5eeXq+oqQUtRRysCqKKUJ\r\nraCqSOtGS0PqoCKKKnVQRRxVpTSOihAxElVJJKFMVQy0FEkMB6VBiDiqOqiDqlIvq3pZaUtiWRZj\r\ns7FZNkaG2amtOCiz0yzJsGy3NtutMZimrKt0FTW2J7YnW+tu5/LeXbvrnVm2Z7dtTk7YX+m6007J\r\nYnPrtsde/RqZtbu6tM7p5OyWsSye+/ZvcX5y4uz8lqvrHRkeefy1lu6865ufcXVx4dbp1m6tlDe/\r\n+eN9/Gsec+9fvtOtdbUt230sWMQI66AjLIySVlY2HRZsRmwSHWzHxmacYDWuL4252p5s3Do58erH\r\nH/f4G17v7InXePzkER949ls9d+8ldx85Nzdb6/Ul56fvettP+DG/+fv/lJ/5Na9//LWX57fOp4/i\r\nXe98Z3/GT/uc/Y/9rM8av+SX/7Lxmte8Jj7CbrfrH/z9f2D3G778y/eoozqqo3rZM3eerY/5Xufp\r\nJ5+K7yw+XDwQD8RR3vrkk/nzf+kvnp2cnHjFt33bt/W//aqvWuec/v0f/aPHD/vhP3z4CO9+97v7\r\nI3/YD985+LRP/zSf8va350d85mfmm/75N82///f+3vw7f/tvF0Ud1QN1VA955s6z9b+R+C46Pz8/\r\ne+KJJ151dXX1Q6+urn4SPmVZlkeWAwdjjP0jjzzy7je96U1/701vetPfef/73//t73vf+5573/ve\r\n98Jzzz13dXFxUd/NPf3kU/HRxVEQR0GQN77xjfljX/uOk497wxvio3jnnTv9GT/tc9bnn3/ef/Xb\r\nfuv47J/8k4f/lX7v7/mq69/w5V++Rx3VUR3VQ56582x9zHdr15d3x9icbrIsb3jpW979E+/943/0\r\nM3f/4uvftnzohVctu+uT5Xqf9Xq1n7UfC9vFuq7mfud6v2MMSzY2Y9jMaWl1DHOzSGKGfWrup86p\r\na3VddU5jsmxP2O9Qc1ed035Ou8trlxeXLl6660Mf/JCry0tXu70swxzDOqeWferFlz6kWBtr6rrT\r\ndWvX2uPeunM9p12ndGPFqmpISWsd7MNszdLEjYgiqbUOYm21dFYwBrtMReq+FKVYB1NVtcRB0YqK\r\nmmXGQWgRN0ZjH/YLypgEbVAz1UFKGkHroJqaAw1ioEopiqYq2roRMUNRMVHVEgetCnVQr6gSUorE\r\nUWO2miLSOorRmKoqYqAlIaqiqkriRrwiqoqicVTqqJiteqClKOpGVShVs9XWK4ogiVu3b1uWxSvq\r\nqHGUeNjdu/fs9nub7dbZ2Zmo++qBcHl54fL6WkVVWhHUfUHjFVPdiINSNKj7qr6zeEUchCJuRL0s\r\nRCREFEUcJIgbQUJFHY1ERUISQzSRkJAsJISGlKIiiAeKoK26ERFNtcTRxBA3qiQioqpmSENJqqY2\r\nXhEE01FaQRNVBEGkRUncSN3XRFuLGxPR0pCSMFXcKCFliIYmIkarYTqKo4kgrarNduvW2bkbdRTs\r\nrq7du7p0fnbq9OTUjYkgpSnixu7q2uXVpaPQGonNydZ2s7VsFjfWOe32e7vdjnWql4XUQTRFjNaN\r\nmWpR0qobdRRaVBOtg/oOpUoYpWiIiKOqIiKKiIPEjTgIyZBEHQVBVcWNqTLrRtV9rfsSFHEjqFeE\r\nRMLIQFBNtA4qrS4bNifGZmOTyrqnUzoJm2WxnGzN/c7V3Zfs9jtzMjZbm9NbRrDumKsim41bjz1u\r\ne+uWeXVtv9vZJM5v3fbc+59z/dKLHn/N45rF1dW10/Pbzh951Ivv+1bPv++9XvvYIz5078KcvOXj\r\nP94Tjz/i8tvf45G7F04NaWwnJ2IzYhnREWtrjBhISWsrNmNImFYDJ/tF1mmzv3aicuvU6WOPuP2q\r\nx7zxE7+vxz/uza6e/VZX3/ROHzw/9aE3POo6sXvprm6X93/8D/z+f/jTPvuzv+pNT37fd/3j//l/\r\nXl988cV+xg/4/uOTP/mT4yN89f/wR9cv+9IvXR183s/9uePTP+PTs1k23Ww33vue9/T/+mt+7R5F\r\nHdVRHdVDnrnzbH3M9ypPP/lUfGfxQDwQD8RRHOVX/9pfu/ycz/+8rZd927d9Wz/np/zU3Xvf8x4v\r\nyy/4wi8c/5df+IXL+fm5h/26/+K/2P+B3/f7V0d1VEdFHdVRPVAPeebOs/W/oY3vgvPz80du3br1\r\nyK1bt1711re+9b1PPPHEn3riiSf+yvn5+eO73e7xxx57bPfoo49e3L179+revXsvPffcc7fnnI+1\r\n3aF4CS/5burpJ5+Kf7U4in+F/+cf+SPbj3vDG+Jf4a1PPpmvfsc7ls/9nM9Zf9kv/iUziZ/02Z89\r\n/Bv8sT/6R69/w5d/+d4DdVRH9ZBn7jxbH/PdWttxtb8+u7y4+KHv/ydf9wX7//ff+9G5882P7+5d\r\nZWy3Th67ZXnsluXk1FhOnG1PjZMz0zDCuh26WTTDbNWwF9e4au3XaXSyruz3XF+bu73sdrrf21xf\r\n6/W17VrLunK9N6+v5Xpvd33p+qUrlx+4Z17sZFeZtdrZbs+wqOpSY4k2NGTaYogTw661XU5cdXW1\r\nX80Oa9hPzKioaYMNZmofZqIqoggWrK0bSXQwypJY0FZVyxANEvvUKPtJ3ag2hqAahqqDxDQdxRAG\r\nqfsSB9UwGsTslLovpWqWIeZkBq1F1NH0ssaq6qBIjdIENRt1FDTRlhEaddAqWhIPiRsJbQwkUS9L\r\nDVGMOgopEjcqWg8Epah4RdV9oWjjxgwtcdTQ1o20EiY6HERLG4mHxPbkxNnJxn2NYoa5rsYYblQQ\r\nCcXm1i0vvfQS66q7ayfnZ0YJVkdXl5d0OttuFW0NtKVVVQ+kjkLrvqJIaWkcREtQVTeCulFHRZS6\r\nr3VQNyaKhNZ9VUQcVVXcWNXDIhqCIBluJNERRIQgkUQSEkdRByUhonEQROMgJuIgqIOpqBvVFtUS\r\n1BShCHVQEhK0lCGKKiqCqBtxo4kbSbQOgkqIaEqIiGiqLWEmiFd0RN2ouBFtvaJhsz1xfnaKqKOg\r\nc1qVxNXltSXD5mTLZN3vbbYbEkpwcnpCuLy8EnTELNe7nd31TpE4iLaEhCClgooHGoKIqhGauBER\r\nRxU3RmmYiIqjOhqYoqk0hiqqlCSqWvcFE1Ua5hRVIV5WNyJuzKDEUUISN9qqG5XEfUW8rDRmi7ov\r\nRRiRzdbYnJjL4sbsatNpzikjxmYxlmF/feXq4sL+amd2GmORZcOIzkmnIhk2J6eWkxNdV3O318nm\r\nkUdcrjsvfeiDbp+fMzaurnfGGE42w9WH3uf9zz/n/OTEycnWcnnt417/Oo+++lVe+rZvdevuXedZ\r\nbDASS2sTstZ+P2Ww3SwGMitFVxGzU7KoWPZ1st85XVcny2JzduLksdu2r3mN5ZHHbD40feif/iO5\r\ne+He4+c+9IZXu1ji+gMf0GV88IlP/L5/+vv8sB/xNduz2+/5nJ/8k6+fe+45L5tf/CVfMr7gF/xn\r\ni4f8mB/7Y8eXfemXrg5+/3/7366oozoq6qiO6qge8sydZ+tjvld5+smn4sPFA/FAPBBH8UAcfNqn\r\nf9rwkD/2R796fe973uNlcfC7f9fvmh/64Af7f/91/4+Nh/zYz/qs8Qd+3+9fUUdFHdVRHdUD9ZBn\r\n7jxb/xvb+C64devWI6973eve8LrXve7jnnjiidc9cXB+fp5bt27l9u3bF462STZJbj3yyCO9vLx8\r\n9PLy8tGLi4v33Lt379svLi5e8t3M008+Ff968dHFy37Vr/01y5NPPTk85Bu+4Rv6yZ/8yfGQJ596\r\nMl/9jncsn/s5n7P+0l/0i9e/+Bf+wvyiX/SLl0962yfFR/iWb/mW+dv/69+6e8fXfM3qqKijOqqH\r\nPHPn2fqY7xHWdf2ky7/+F79o+43/9MfPD7z/5IOzLpatxcb23tR7F2bvWa93slsty1ZPNsbpiXF2\r\nYpyeWs7OOTu3LFvdnliXjd0yjE0tSyxjyMKJSKe1Nde9cX1t3e/td3vr1bVxsdMPfND+hQ9ycWld\r\nYl2GLot0sg5ju9VERrWs62QZOmud01TFUNsMG3Ey4sRwMhY6zMlc2O2nzphZTLS1hhnWxETUbO07\r\ntTVLB0FFROe0TTS00UHqIFY1MLEtReMgWkbc1ziIBhnqYNKQMOq+uBFFRNUiBEWqYRGtgxpKYsyi\r\nmkjKjBtBEXTSsHYiFtSNKuogaNXLQsUDVUxTEqOIh0QdpG6kkTAVFRRJpBVR1I0SiqkibkxxX0hp\r\namIpQhEEU1BJjGUhsa6rICPqoKXuK26dnoijpq53O5cXF+poe3rq5ORUUBRjDLdOT11eX5q7nX04\r\nOzsXBPcuLqz7vUUkKBJCS4WW1o2gqTSEhGI6KElU1Y1QihmUlCZekTK9LChFVTERBA1FhSKOShRR\r\nH6lS900HXQVFV/fFUREHiYe1xMviIG4kISERkUQSEQl1kAiKhmSIui8OIqJIUQfR1HDQiqobw8AM\r\n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\r\nW2fn+9uPPDK97Eu/7MuWJOtXfeXvqYeMEQ/bnmwdFHVU1FE9UB/hmTvP1sd8r/D0k0/Fh4sH4iiO\r\n4ihf9Et+8eY1r3nN8LKTkxO/7Xf+jpO2Tk9P3fhFv+QXb55//vn9137NO/r5P+/nedjP/4L/dHHw\r\nG3/9r58e8h/9rJ81POTbvvVbpwfqqI7qqB7yzJ1n69+Cje+Ce/fuvXR2dvbXLi4ufsIjjzzy/re/\r\n/e3vurq66gsvvPChF1544UMXFxfTR1iW5aU7d+588/ve977337t37yXfPcUD8UB8uHggjjLX6cPU\r\nR+rv+YqvbBJf/CVfsnjIG9/4xvyO/+a/2X7Wj/4/Xb373e+uo6KO6qgeqIc8c+fZ+pjvUXam7eb0\r\nXW/8ET/yHz/z7ne+7eo9F9thsV22ZLGbW/te6Rz2nXbiar3WWbsOLZlV02ZZrAuz01hJSkuio6ap\r\nuxipJsbKKJtJSscwUyZz1rIsxsnGsmysc1qvLoy1gv2Gq/Xabr/TyTWaaXboMnSwZDCGG3PEZjmx\r\nbDa2y2JsN5bNRpZFN4vTW49alsXp6cZYtk7mtJycaLm2mp3Sabfu7Per66tLcz9dXF25ur4217re\r\n76z7vTlrv1vNOc1J52qdtSyL6z2jIbVpNYNZCZulZmMxjLBmakOGDnaqoyaC1Y2IMqKYYoimiCKZ\r\nlCBhJNKQaKaJlmCWDOaMtZVQ1QY146AWQWTQUsxGQ1omAxFURMMeDRrFTA1VESG0dV9QFowMq+m+\r\n1pK4EczWkmhJqg4SbWlURcRBHUTL7vLC9tYtGYuIqhuPnJ+7wm63QwhLa4Mpbgwxzs5cXV9Z676q\r\nIVKWWRlDxcQmMRIt6r41TCVRByGNxH0VRVSChLKgoqWqIWiGtG5EzKCMUKRoNDTMUhGxhKo0qsy9\r\n4+oAAIAASURBVJp4xRRCSkRTFUQc1csSTVUojfuqZmKiDkIaSlXEEFI3ijpI1UFpWB2EoCVxXxDU\r\nQeLGdBBStJSZmEhJEOKgzCDR1o2WhiSUopit6WWtelnrRh3Vy+I7dJZQrwhKHcRwEPfFjaCIkRDi\r\nqJ0odd8yhpOTE8tmI25E594Qy4jN6da9u3et6/Ti5YXz83Obk63UQdRBuLq+tru61iAESRASI0hE\r\n3JdgSCKJJVQQVIIMcdBJaUKJiaFuBBXRMMtAMcWNIJiqYqj7EjdGHVREhRYhCHVURClBkZAyFUFV\r\n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\r\n7Pardb+qaZ21rqvdurdfq7vVfk7rbm9dV3OttrSq5qi1U8soUl3QoG5Mwz5DE0llsFhoUTOMxhAW\r\n2qErQ1VVDIyEMMssA1M1tJFB1Y1lkk4Jo6QxU/GKSGmYHhiJqaZaDGsrjhKKqa4u7rl167Ylw3QQ\r\nWs7Oz11dxu76WsLu+trJ2amgDhJnt85dXrLbXdMYidNbt8ySUOyvry1Ko42qkYGKB4aI0KpaQjHc\r\niDqIgyIWlRBE3AhaEiLioDHREAeJYMUYkVYagtIgzFbCMNyYjoKiKIqhXjEwMVQcFXUjJqqIIKn7\r\nghIERdBGQ7ERLdNBiIMQVXEjibZiaN3XMIOS0tDGjSGCiaKiISGiIaqGGwua0JKYipgqZSaoOmgR\r\nVBs3mlJHIY4aKqqIOCqK7ldDNNWibDdbVFH1iiIO6iBquq+xbLeudjvBvYsLFxcXiiAiKIJi+Nep\r\n1kG17qujlqYiZika1EE07osQByHuS0IiiYggiTURMRwk5mA0gojGUR1MTShB1SvGZHogpiZupLR1\r\nIw5KE1HmNMpUTPe12tIi2omqqoM5reu0zlXLGLFsFmPZ6NiYBpOZqepGxyB07vTehTFXEVXj+kq6\r\nqmkVZ6enZLj34ovmujfGoKvri3t6eW0z69bpidvn5x5bFrdXzsvpiJMuhtqMunWyNRq9WrU7a2qz\r\nxKte/5jbT7zKo48/4pFHHnViY1xcu3r2W12+5/322+HqNY+4e3VlJ64fPbPZnnB17d7dCyfbrVu3\r\nTnv62O33n37cx/+d1/27P/hPvPXTPuNvf5+nn37+J/6kn+ryV16PX/urfvX8C3/+z/dzP+dz1q9+\r\nxzuWJ596Mh7yy7/4Vyyf/3N/7nj8NY/Hy66vr/2W3/SbdijqqKgH6iHP3Hm2PuZ7laeffCo+XBzF\r\nURzl6aefzn/923/byce94Q35v/6aX7P/83/2z9XBX/3Lf6Vf+bu/Yv+Lfskv3vhIrbYO4uD555/3\r\nK7/kS9ff/rt+5/La1742/g2+/p/9s/Xz/s8/e+eBOqqjesgzd56tf8viu+C1r33tyVvf+tY3fcqn\r\nfMrTb3/729/65JNPvuHWrVuvxfbevXv7e/fuXd87eN/73vf8nTt33nnnzp1337lz59uee+65Fy4u\r\nLq78W/b0k0/Fh4ujOMrP/ryfs/zKX/WrTjebTRx867d+6/z9v/e/3f/+3/f7pg8XL3v9x31c/vbf\r\n+7snPsJf/5/+p/klv+KL1+eee86Nn/TZn51f/5t+4+bs7MwrXnzxxf6AT/v0S9RRUUd1VA955s6z\r\n9THf413fuzumOj2//epn/s7f+PH/7K//tS/453/37/+Auy988Na8vh7rbufy+sq631vXPevKOt1I\r\nKyMWZMQ2kdTZ2bllDBGzZGKtOathXVd3796V/VRlRBvCDDMOhiayLDZnp67m3tXcu68hSFmrrSB1\r\nUEksHbTmOt3IwFoLNtvFxJyTPUtrhHWuZEgjiSJxXxIdMUdUjNZQWnFQZmpVK0aRaoiDxjIJ1kEa\r\nWjfWFENRVWTGipq6xJgRB0tkRAxJZCljWLIxBpvt1jg9sWw2pkqGjjhZhrkMc62kBjazJGan2Woq\r\nK7PTtBfV/bSftdvv7TrtdrXb7e33qzmnuU7ttM5pbZkxJ2tXUWa0U0oHE7NMB5OIndUMGnGjipQl\r\nUUejVEyVVDASVVVjDC1rqihagpbUdyga6iBx+/YjRqJq1n1L4t69e3b7HYnz248YI4gZB9HWbFFJ\r\nFHEQgrsfetGc03A0lURDSxJF3Agtqo4iblQRo0gIe9MQEVVBW0IdlIGKqjpYBhn2czUSSlqt+5KY\r\nYXYK0ggmiiLiRlXcqNZBRUxVxI0iiiaKlpY4SA1MFANtzZLEDBMtcTCrqonhZaGJOmhFqPsa9zUx\r\nS1oJGkRUMDFDHQ03YqYibrQUVVVHcWOiqLqvFUdpFDNVldIixFFLU0WEeFnU0dnZme3J1nRQ36Fo\r\n6xVV9zVuVNXLyosvvWTO6UbQuC/iqFrEUX2YekXVUXykoOJGUHUjqI+miO8sQnyHCAkhiJAQgiQq\r\nkrgRNO6LUCaSGOJGQxBHU91ISYJqS6OK6b46qLaItmarSietiDGGLIuMkGEapoHhqKIkgpp0NeYU\r\nNTBG3Jhzr+X89MzJ6ZnOqfu9Oafd7tp6dc06nYlHTk/dvnXLrbE4v17dSpyMuLVdnI7FdsTJZujF\r\njnt7m7K9feb88TOPPX7b9uy2zaO3bZetzXs+aHzgnrt377rcXVtf/Yjr8xO760vr1bW53bo76H7v\r\nLJxvT73qidfc2z7+qm86+YSn/9Krvt/3+ysf/9Qn/PO3PvXUi48//tr9I48+Or3sT/3JPzl/2S/+\r\nJfO1r32tP/a171je+uST8a/xZ//0n9n9ol/4C3eOijqqo3rIM3eerY/5XufpJ5+KB+IojuIoP+M/\r\n/A/Hf/Hr/h+n2+02Dq6urnzRF37h9V/9y3/F2z/1U/PV7/ia7dnZmY/m4t49n/9zPm/9B3//79dR\r\nn3jiifym//K3jB/xmZ85/Cv8jb/+13ef/7N/zs5RUUd1VA955s6z9d1AfBe85S1vedVTTz31fT7l\r\nUz7l+3zrt37rZ77vfe/7AXfv3n3dGGP7qle96upTPuVT3v/jftyPexdeuHPnzrP/7J/9s3/59V//\r\n9e+8c+fOu5577rnnLy4u9v4tevrJp+KBOIqj/JzP/7zxpV/2ZWebzSY+wjvv3Jlf+RVfsf+j//3/\r\nUA/Ey37n7/5vNj/ux//44SNcXFx41zvf1duP3PamN70pPsKv+GW/7OpPfO0fXx0VdVRH9ZBn7jxb\r\nH/O9xtXF3cHq5OzRW/vd1af+ld/zlT/0m//f/59PTT253n3pTVcX9151fXl1dnW9217vdpurq4vl\r\nen895m439uveft0n65ru907Oz2yag8qMirTSiBCi5jpdXdwjU8IQM6ypdpJFxuJGxRRzRFVbbTVB\r\npe5bi1k3Ku5baVcJM7GZJKxLNMOYLLNORswwWykps3REElEzNJEyRBLLnEYrqqWqwaykJCraGpOR\r\nuLG0FqyjpoOVfWsORumeJNalJDrRmqaM0GoqqczBnmGSxbosqggZqjqnG0sWxtARyTAGyzJkDMsS\r\n22WxnJ0Ym+H0dGtZFtvtsGBZFmdhk+q6Cua6N5ZhNvb7PSvttF5eWa93duvqpXW1203Xc9qt0/V+\r\nb+4xa03s5tTWLDN1Y5SKOZilDa2qhszIoJ2oYhhkqmhLYu00675ilqKoo/Pbt2UZ1ANhOGhdXFza\r\nrXvLsjg/vyUjbkxV0caqKCllZLi4vGd3dU2LqLpRIQ6iqioOGiOo++plofWySEKqJSimiocVQQlF\r\nRcUQTRGZVN3XqOqIqmJMqupGTBUPRBWzDoqIIqKKIg4SdVCKYKobLTMIGnU0VVDR1o2qIe4LxUTc\r\nKGI0bqyqiThqEeJGaNVBCKaoGmKqmUqGTIqotm4URcSNNWilJO6bSD2kbhRBVT2k0VTRxI2iJYnz\r\n27eMZdF6WRFVNzqnq921/W5vXaeT7dbZ+TmpNKJevLhn3U834iAUQ9xoKdqilKKqiKOiSlGqbtQD\r\nrYOqG0F9Z/GwxAP1QBwV8Z3UA/HRBHWjIkFJ4hVxkLgRB3EQr4gbdV8rqKOgKOIgMUaMsRhjscZB\r\nmTXF7NAMrximzJW5VxVEZTiIOOhEnGzPbU9vWazm1aX16sp+t2dOW5yPONueur05d4oz9egYHjk/\r\ncb7dOk9sWtbJ9d7c7ZyO4dUf/7hH3/Rxzh571Omy5WLn4oUX3fv298kHL+SxWy6feMx678LlS5fm\r\nyWAz7Dcbe3VxecmcHj07WW+9/uO+7ZFP/sS//bq3ve0vvvrJ7/N1b3zzW973xje9+fL89u2ZxCOP\r\nPDo95A//oT80/6+/+tesTzzxRL7mj3/t8ua3vCU+in/2v/wv62f/hJ945aioozqqhzxz59n6mO91\r\nnn7yqfhwcRTEUX7Db/5Nm5/8U37K9iAecnl56XM/56fv2vrqd3zN9vz83L/Kxb17Pv/nfN76D/7+\r\n3y/qZZ/y9rf7xb/0l4xPePrpjAzLMvyjr/tH69e+42vW/9ff+n9NR0Ud1VE95Jk7z9Z3E/Fd8La3\r\nve1Nn/Ipn/L9vuEbvuEX3L1791POz89PlmUZm81mHCwnJyd59NFH5+d+7ud+89vf/vZ//PVf//X/\r\n/B/+w3/4rq//+q9/5s7Bc88998GLi4v6t+TpJ5+KB+IoDn7uz//5yxd/yX9+ttls4l/jmWeemX/u\r\nz/zZ+Vv/q/9qesjrXve6/LGvfcfmzW95S/yv9D/8kf/++ld/2ZftHRV1VEf1kGfuPFsf873O008+\r\nld/yW/7rsdnyA/8PP/jk/PYjj9198cXX3nvfe19797nnHrt44QO37n3gg+eXH7p78sKLHzp54UMf\r\nOru6d+/k8t5LZ7vri7N13d9Ox6Obk5NHrq+vz693V6fzan92ee/uyVzXzWYzNp1z7Ds369rtfl23\r\nF/fubu7efWmz77pJugxzGe3SziUZGUYSWaZsGiPJTE3MMlOjBC37ROakTNHWMqe2jMGI7SShgyGG\r\nMKetKDJrKan71tBEEmtqH1LSuJHUK5oKFqSVkhChdDqIlLQ6yqiltXTYhX2nzQxrGMzhvv0sajVF\r\nmGXUwKaLTMaoWTqG2WpiGcNmxFKixqwhlHWd2lL3TTUGxrAOOqthr1bTmEFFLCIjlkGWGGI0NkhY\r\nDJvNYnsS2W4sGBmWEVvTmGitmzAWY2Xtao5a10ljDfslZmOW63W6Xvd2a3WtuZ/muppWnTE7rabp\r\nYI2qYioZ1rCWirb25fTs3LLZqNKi7gtFkMTVxYXdbm9ZFue3zmRZTFURMZW5miguLy5d76/dVzRe\r\nsboRN6pupIzE7FR1Y5YkRkJpSKijlmCiiBtVRQwUVUTciJmqGAatOAhFG01NJDFmzU43hiiqpht1\r\nY4iJ1kERlNBWWzNIDBG0DqpovCxmKEZjVbMl1I3QijiqG6u6ETfixhBKU0XdiPtCGyMos9VUxI2G\r\ngWJ1EFKUIOpGURRBUZEiKEVVfLi0bszQOqiK7xCmo7oRUxUnJ6c2m60xBmrOab/f2+331v1eHK0I\r\nHn3sMUGRxN17d637VRDREJG4r4KanSJSgpkq0miiqbZSqqiUpoqIlqqiDkrRUlUHpaiPUJqKG/H/\r\nK1XEjagbrYO4L2gR98VR3Ze4L4ho3JfESIxERFJFMhCrB1oqiCqdzJVON5JYglClBMOw2WwshuxX\r\n9te6rrSWxOmIsyUeWRanWZyNE4+cnLu9PfHoyeJ0U2d7XO1kv9puh+12OHvkzCNveYNXvf5xuw7X\r\n77+wvP+ei/c+7252xtnWONnabWL/0l37y9U8O7NbhrsZdicndnN66YXnbbfbiyc+6el/8sYf9AP/\r\n0mve9Ka/9cY3vvlffp9PePqDYyy7b/jGb1zf8ta3zh/w7/w7w0fxRV/4hfs/92f+bF/3utd5x5/8\r\nE5s3vvGN8ZB/8Pf/wf4/+tzPvXZU1FEd1UOeufNsfcz3Sk8/+VQ8EEdxFOQLv+gXLr/0l//yUx/h\r\nAy+80P/uD/536//wR/5I3/ve9/o//nv/Xr7y937VxsHXvuMd82f9J//J8BEu7t3z8z7/5+7/3t/9\r\nu3Xw+te/3ute/3r/yz/9p9NRHRV1VEdFPVAve+bOs/XdSHwX/IAf8AM+cb/ff8Fzzz33E05PT7dP\r\nP/30B970pje954UXXrj9Td/0TZ9wcnIybt26tcHyg37QD/rmn/gTf+Jf+vqv//pv+4f/8B/+y68/\r\nuHPnzrc8//zz1/4tefrJp+KBOAryeZ//+eNX/dpfc+5/pRfe/0L/wO//ffN3/Y7fOb3siSee8DV/\r\n/Gs3b37LW+Lf4L//I3/k+td82a/aO6qjoo7qIc/cebY+5nuVp598Kv7N4uCLfvEvGg7e+5735hPf\r\n9knj5ORkedWrXjXU8shjj55+/x/8gx/pGKd3Ly629+7dO/nmf/GM933bty7r5eXm4z/uddvtsmyv\r\nLi6Wq6vL5d5Ld7ff/My/GB/6wPuXl+7dPbl3995md3VxdnVxdb5f11ujPU/nbZ2PaB8bs49Z10e7\r\n7s/nOs+v9+vZ5W53Nnf77X6d2/06l13XxbqPlqLNss6kiNxYZrPEWBIjN6RYwij/X/bwBMCyu67z\r\n/t+f7zn33tp6SzobWbq1R0hANhVHZQ/jCij76CiKIEtkEQQERGWc52FTRBRkneiMCCK7DggqKLss\r\nAQQkCYGCqoSs3Z2ku6vqLuf8vp/nVp0OVWkC6h//I4R+vUgIoLKQAIEkxDpjhACZKWMZEGlIGdsI\r\nEUAlkCAQYbDBgCwyTcqEjBBCJCaBsFACNlTCgNOETQowuBjLrKsRCCRjpiTSUBDGGBgQhJLKpkoh\r\nQAinwQZMFUI2ICzAgE0JQEIJBIRBgMNEZZRCGGcgmXRgggxhGUvYJs2UQEBACEKmqit6AmGqEDVB\r\nFYEqU9U1/V6POoQqUfd7pAPbOE0NFBJH0JYCiOLEaUppKSWZNC1NSSYlmRRTbIqNqOgPZnEmthGm\r\naSZQBxE1IMSUoNg0wzFN00CY6PWp6z6qhElIE8C4aZmMRzQlSQwW6wwIAaYARmAjQIgEbONgQyAS\r\nCAEWBkyyLiRsSIRJ7AQFBiyzwSIkwJiOWWcMSIENomM6NiABRghsnEYYCYxYlxgQxmBAfEUajFln\r\nGyTMlNhgQKwzMiBhOhYYkEUCxiCRTrayBTIgjLGNJATYbBAdA4lBQgjbGIFA5itCwhgEGAzYYIEA\r\nmSmDIIFgysICDMYkIoAETEeYDQYDAoQxkGaDAAMJBEdJJMYIbNZZkIANYp0xApt1Fh2DgLrfZ2Zm\r\nBgMWG1YOHQHxFZL4CkEiZCOOsgFhGUtggwCDmTJTZp0xYIRYl4ABscmAmRIbbGGOSpOiYzDrDIh1\r\nicGAjQHzb2M2CTAgQHQMmI44SoCZEmBuIMB0TEcI0ZGYEhKYjhDrkqNsbCOMEBJYQhLCyMYYAYGo\r\nDJGGUgibSiIkZqtgrl8z1+/T79fMRI8Z1wwq0ZOYsViYNAxKoQ7Rm+kxv2OBhW19duzcwcz2bbS9\r\nGcaHjjC8boX2ujXKcEIzUzHpB5600Eyo+gGzC1zXtEwmE0ZNYbXXY9S0HFo57LbSoVNufcuP3PbO\r\nd3nLmWd9xydOOuWU/bc444zhkZXV0W/++jPL0vJyMvUDP/iDeu7zn1ededZZYovPXfw53/vHfqxh\r\n6pRTT+XNb31L75RTT9VkMuGPzz9/8oLn/05Lx3QMmE3mqMXlJXPczda+PXvFJtERIKb+03d9V/yf\r\nv377TK/XE1u8++/eVR79yEcWOuKoW97qltq16wQ+8uEP88hHP0pPe8YzKo4xHA75P3/5VyWq4PTT\r\nT9f3fO/3xhMe97jJu//uXUnHgOmYjgGzyRy1uLxkvsmIb8Ad73jH21555ZUviIi9d7vb3T533nnn\r\nLWbmtYuLiwvPe97zHnTWWWcd3rt3b376058+o2ma9iEPech79u7de8lnP/vZyz7+8Y9/+sILL7zk\r\nsssuO8x/kH179opNoiNAgF792tf0fvCHfqjHUV/60pfyyOEj3O72twu+hoMHD/pPzv/jfPlLX5pM\r\nnXTSSfzuC3+vustd7xrchAMHDuTznvOc5q1vfkuhYzoGzCZz1OLykjnuZmPfnr3i6xNfTWwSHQEC\r\n9IWlL81w1BVXXOG7/dCdG0DPeOavxyMe+ciKo8bjMb/yuMdP3vV3f5d3+v7vF1MzszO+/e3voJNP\r\nOTluectbVgsL87VzUjfjce/QddcN1laOzIyGw0HTTAYu7aCdNP211bXZ1dXV/pGVlcHaymp/Mlzr\r\nj8ejejyZRNMUlbYNt21d2raX6X5p2kG2ZcFZtmUpc23bbm+aZnvTNttLKfOlLbNNlr5LqSu7rnBg\r\nV3WiyihsBUiApowxCBshCAgJSTiNMMLIgMEC28hgM2UEVIABAUYEUwlIqAoEKE2VgESKKZOGIiPA\r\nmLARkDbFAgUWWKIGhAkgDBgkIYmUcSY1U6ZjCASCpCCELSKEEJKJSoQEAgyhCmHSAgkisJJEOJNM\r\nsKEEpESyzghwGlwwpnIggZTIAkM6QSAFQWCZKoKqCiKEJMKmV9VEJao6CEFVBXJiQwUoQIiUmJ+d\r\nJ6pAgA00DavDNUpAbzCHCEoxxYW2TUizurrGcDwmDbZJGWNscJu0WUjAFgnYxgIkzJSNLJAomABs\r\nMAIbY2SRgAMqQRrMOgNCBknYTCUSEBUFkzI2yEICZLAQQVHBGFkkApsNBgMGDAixzjK2CUMI0mA2\r\nmRsYEIkBYYxtDMhgMSWMkYQFthEgIDEg1hljhCREJ4EkwSDAQBqEQEyZdWLKbCHWJSYxQbDOYkqI\r\nTQYCSBkMKQNCBmNkEB0LzJTFsRKBIA2JkUAGAWbK5gYCbDBTMuuMWCc2pUA2INYlkNzAYDqCZJ2R\r\nIaqKufl5JDYk0EwahsMhGyTWCYEAsyEBY4SQjQADFlNinTFfYTYIk2xlUoCFDJYxUwYBQiQmJSwh\r\nM2UMhIQQxlhMCRkSs042Bsw6YcAYbMw6Y8DmK2wwHbHOmI4sBFh8hThKbDI3yUwZDIiO2ZSYdUHH\r\nGHEDIYEAIcRRNrIxYEzY9BJ6gAT9qmLQq5jt9Znr9dleBXNVj+hVVFSoLfQimE2YdctcJgvz8wy2\r\nzbL9xB0sbNtGXUGTolkbsXL9EeLQkGpcGM71GLYN42L6AjJRVRE7dzHq1axMRhxcWWHctoya1ivj\r\n4eTQZHhg/vRTLzjh9DPffpd7nvvJc777tledcdZZ49NOO739pV98ePOpT32qAOKo3bt384Y3v6k+\r\n86yzxBYP/4WHNe9773uTqdNPP53f/O/Pqp777Ge3y0vLScd0TMd0zFGLy0vmuJu1fXv2ik0CREeA\r\n3v7Od/ZvdfatarZ46Ute0r7wBb+XbBJfTUw98tGP0tOe8YyKf8FkMuEXfu6h44999KMJmI7pGDCb\r\nzBaLy0vmm0zNN6YdDoe75ufnfY973ONLQCVpbs+ePa6qiquuumruec973juf85zn3Pniiy/e/brX\r\nve72T3nKUy476aSTtu/evfvEubm5WeAw36Qe+t9+trno85fUvV5PTH3Hd3xH/OS979Ps27cvH/PL\r\nv1zd6uxbiWOceOKJesqvPbV67OMfV/3VW/+yvOiFL8yHPfTn21vf5jZ60IMfHGefc7ZOPvkULr74\r\novzoRz6Sf/q//ncBTMd0DJhN5qjF5SVz3M3Gvj17xU0TN01sEh3RETfhmquvNqDH/PIvxyMe+ciK\r\no0ajEY99zHnNe9/zHjP1gt9/Ye9DH/hA+4ynPb28/73vMx3TMVs8/leeEN91y1uao3aw6cwzz4rb\r\n3u62BoJOcFRmxpEjh+LwddfVB/dfU68cPtxfGw3r0XBtsHb4yODIoetnjxw+NHv40KHZI4cOzRxZ\r\nOTIYrQ1nmvFkpm2aWTU551IWlDmXbTufJefbbOfaUuazlPksOVdKmclsZ1XKjOxekrXTtdIR6UiQ\r\nhapinFZRklggbLAQmLARIiUxVTeilgiLnqGHIIQE2AiwwIbWBifGpIVtqIRUYUAGYxoJIQQIYcBR\r\nUYAEpEQGK4gQWKSFbQRIIgkUAkHa2EYk2BQzJWhbEjAGTKVgnQtIYp0wJCAjsWHiRIDEVEFMSYBQ\r\nGlFQgEqSGVSCoCO1ILBB3CAhQQmSQBBRsbAtUEBE0KuCyXBIFYIQhTEL8wvMzlX0QgioqkDexWg8\r\noW0bCMBJhQgMJBFQK0hMg3ExaRiXZNwmTZOUNmmdpE3bFpo2KaXQ2rgxpTEZpiUB4WICERJEICCA\r\nBOygUgAmlZigGNIJNgk4wSS1wBKSSEAWdsEIW1jCmHUChEgDEgZCYKZkMBiTrBM2yIBMhbBACASJ\r\nkcAICwJIBWkDpiZIIAAbDAgDwoCAQIAxAkwlYUCsE7ZZZ4wQQggwIKBC2AYxJdaJjjEGhKgMWARg\r\nQDY3EGCmLMAgY6YskEgnlQyISpB0BNhgTAgM2CBAYkMCKRBHGcQ6EwYENlimsqgwZsp8hQ0hpkS/\r\nVzOYnUWYBATUwHg8pseUwBwlk4YADIiOAIspExbrbGOBMUJskDFgTCCEMEaIGmGmZBJhpmTEJssE\r\nYp0xAiJBmCKmhDBhQGZdICSwAoWwwHRsg806mw3G2AaLdbYxYAwGBLYRIPEVFhuEuBGDZTaYjkB0\r\nDIiOgECIKYFt0kKYSiIqsS6LIRNhbDDGgAw10JPoBwwimOlVzFU1g35Nv9+nr5q5hH6aalSYpdCr\r\nRK+qmFEwOzNg+0k7mN+5k95ghsHsLO3hMWtXHkSrK2S2RFvwOGmAtdIymh0QbTIhaauK3tw8xWKl\r\nnTACJr0eh1eOTK4brV4/aidL9ezMPw2PHPnwFxc//+n73P/++3fv3j0++eRTWztZ/uIiU2KLAwcO\r\n8OtPf0Z59WtfU7PFvf7LvfS+976XKV9++eU85pGPagDTMR3TMR1z3LeNfXv2ik3iJnznvu+s2OL/\r\n/NVflRe+4PeSTeLreNUrXpkRwVOf9rSKf0Gv1zNgOqZjwGwyWywuL5lvQjXfgLW1taGkg23bzu3f\r\nv39wpzvdSTMzM3MXXHDBCVVV9WxPLrvssgN3vvOd3/Gxj33sp9q21Vve8pa529zmNitra2sFEN/k\r\n3v++95dz73VuzVH/z7P/3+qB97t/+T9/9Vftj/3Ej+uxj398dc4554hjzM7O8l9/5qern7r//aq3\r\nv+1t5fd+9wXlf/z3/97SMR0DpmM65sbMcTdL+/bsFV9N3Jj4amKT6IiOALHFrc4+O576tKf50ec9\r\npuKo4XDIeY96VPOB93/ATP3y4x5XnX766fHg//pf+/3+gCc/6UkNX5tf/Ad/WLgJi8tLBgr/DmwH\r\nmyIhvnzN1fXVV1/dHx5ZqSdra/VouFavHT7cWzl8aGZ1ZaV3ZGVlsLZ6ZDA8cnh2bWVldjIc90fj\r\n8cx4PJnJtp1R0w4yc6YtbY9SBi45KG57TeaAkv2m5KCUdpCZM03b9LPkoJR2UDJnspRZlewL95X0\r\n63QvoAJXsiMsRSgEBKgCZTAlkHEGaRMGbBAgEUAgIKkMNSIkhAETFmShbY0kEgHGZsoQgQ2tzToj\r\nhDFggxTYxgKxzhQnCQQdGWpAQAaEwTYWYIgUksB8hRNsU2FAmKTBVAJJgFAIEIEwxkAAEtjGhopk\r\n1DSYTlsKw5U1JEjWGet6ZudnISpCQiEESGIyGVPaBiRCQT9EVNDrVQzqikFA1aupEXUV1FWP2ZmK\r\nQNSVsKA3qKlUAxW2SYk6RWmTlpbilmZcaBozbgulLZQ02GRbaDJpism2UEpDyQJpshhH0LpQiiiZ\r\npAuJKAgHSCIkhLDBQNoIYQFmyjhNkTFQEWQkicBMCZFYQgjLbBCkwU4kCEARbDBUEgaKQAgMSUeC\r\nNF9RAAFBgERxItYZM2WBAAkbDAghDAgbQgGCxBhjTAA2GyQ2iCmLjjAGhFln1tlmgyAQMhiDoQJs\r\nk0wJBAhhTMeAEGCxQWaDgAqRNiAsCMDmKxJjGwlkNiQCDBgBiopBf0CvXyPADoTBMBmNqGxCAhkD\r\nNhgjBDYCHCCDDBaYKZl1gcBgCQwCTGCMBViIdcJiQwAWX2FEGAxYomLKIBtLrBMgwAYzZRBGQDBl\r\ng0G0ZEIi1olNwaYUYBAGRIYwUwYLbIMENhgMWGyQOcqYKYMAmQ0GxCYBYkp8hSQkpkxbmDLrKkFl\r\ncBoysUEYIWpEDdQhehK9EIOqYrauGNQ9ehJ1JXppZtqGGQf9COYxcza9qJidqZibXWDhhJ1UMwNI\r\n45UR5crr0XWHqYYNk7YhKoi6Zm37LMNexaqTVOCmYRyJ5gdY0LgwzJa10ag9MhodXqlZWgl/op7p\r\n/1MbXFyyvQx6h+58t3u0J5y4OxUVu044Ie/9U/fza/7szzjWP37oQ77kc5f4lre6pThq565dTJmO\r\nAdMxHdMxHbPF4vKSOe7b2s/+3M9Fr9cTR43HY570hF9pAbHF2WefzU/d//5xl7vdNThq5cgK//tP\r\n/iTf+Y53+BUve3lGVDz5qU+p+Bre9bd/13zogx9MOqZjwGwyWywuL5lvUjXfgLW1tRXg4tFodMqf\r\n/umf3s72F0855ZTBm9/85n2Z2c7Pz1990UUXXbF///7DEXHa6urq7S+44IIdCwsL+w8cOLC6trZm\r\nvnkZ0P/7P/5He5e73qXu9/usu/0d7hD3vs998u1ve5vf+dfv8Dv/+h3t7//hH1T3/cmfDG7CzMwM\r\nD3zQg6r73Pe+1bv/7l3t//5f/6t8/IILmDJgOqZjOqZjtlhcXjLH3Szs27NXfDWxSdyYuDHRER3R\r\nEVOj0YiZmRnWzc7O8ujzHlNx1HA45FGP+KX2Hz/0ITN17r3O1eOe8PgeR/3U/e/Xf/KTntSwyWwy\r\nN2Fxecn8O5OUbEo6E2CNr8N2sCkOAfuvuDz2HzwQw9EwJsNhNONJDCfjuh03USZNtKVEmYzryXBY\r\nTUbDGA9H9crKkXqyutobra3UaysrveHqymCyNhy0o8mgbZq5ppT5LO1sKWWh2DtK5rbGud0lt6uU\r\n7aPMhSbLvEvOOEudzirTtdOVM6M4ZafCBLjCCsnRM1VlIiRFSDVSBQhUAZZYl0zZKBMkbEBsCAkb\r\nAgGJBQIqQBIJGEiD6LQIYTCYKbNBAgwFSEFJg8GAMEphjAQyYBNhNmSARMgEU6ZjI8BADTQYGWQw\r\nYCckhEQKhBmtDZmZn6NEQEIAJom6pmRhMpmQFmsyQliiOMEgQRCkjQADsgBTYQhRq2KDRB1BPyp6\r\nVVD3xMxMj5oACSHqqiZ6QT9EJQggJdZJAkQYyMSAgUS4tFTZQimUSaGUhtamNTSZTJpCGtqStDYJ\r\npE2TJhNamcQkkIhipgJhHEExVBJWRTpJIBQQBoOZspDAMrapgBAEIpkSSGALBNgUoGLKIMS6HoFJ\r\nLLAh2UJgCzMlYW5gZKiBlLiBBRgwSEwZCWywIQBzlMW6YAuzQWbKSJCIdTJTwkxZBJACAzKIKUEK\r\nZAiEDRJTBsQ6S8iATSAMmCkJDBIbqqgZzAyIqmKDmRIChGiaCU0zQQYJMBgDggTLWCA2BcYIW4Cx\r\nDDI4sEESNhhh1gkhwKRMZTAggwFxAxF0KkMCNhuE2CCzLgw2CGMgbAKBwExZhI1tEJgtJLAxEOYr\r\njAmmzJRYVwAh1llgAzY2X2FAAtERwjLrDMiAIIBAIBCQgAWSsAEntgnAxayrDX1AEkLUEj1BJagj\r\n6EVQR8VcXTFXVfRVESWpxzBrsyMqenXNoCQzYfo7Zti2eyez2xaoZ+apI8ir98P1h6hGprZwKawM\r\nZpjsmqUqhUMlucYN47UJIqhIxm5YK1AOXA8zM4yDZm0yWm2cl9fzM584dfepH7717pM+u/j5Sy4f\r\nNc2RCdVo2LrdvnNX/4TdJyVHPfLRj6r+5p3vbA8cOMAxvLT0pbzlrW5ZcVSv1+MoA6ZjwHTMJrPF\r\n4vKSOe7bmZg6cfducYxTTztVV115Fese+gs/Hz/z3362uuWtbiluwp2+/07V+977Xj38Fx5WXvZH\r\nf1R6vdqPesxj6pmZGba66MILyxMe97iGjgHTMZvMFovLS+abWM03YG1tbXXHjh2vueaaa+64f//+\r\nHa94xSu+dzAY9DTVNM3ktre97fsuuuiiK1dWVq7p9/vvtn3S4cOHq8y8OjNXgJb/QIvLS963Z6/4\r\nagbE1KXLy37ve97T/vCP/EjNUY99/OOrt7/tbS1Tjz7vMXHfn/zJ4F8wGAz4ifvcu77V2bfSj/6X\r\nH54ApmM6pmM6ZovF5SVz3M2Z6IhN4sbEJrFJdERHF3zsY3mXu941OMZwbY1HPuKX2g//4z+aqbvd\r\n/e568Utf2uv3+9xg8QtfaOmYGzPHWFxeMt9kJCWbkn8ntoOjDq2sxGe/dEl9/f6Dcfi66+LIdYf6\r\n45XD/bVmVJdRMxiP1mbKaDhom8lgMmkGk/G4NxmPe+PxuNe0Td00bT2ZjOu2KbXbMtO27WzblvlS\r\nylxmWWhL2da2ZcGlzDdZ5kdtWVCWOZUyI+hVphfpCruWXWEFchhCsgoSQtjCCBAICYQlBRhCdARp\r\nEEYYmQ2yCYwQ6wwUgwzGCJBNYoSpCIyRzYY0lpBMMGUBJsSUAFMkKhkZDEiiRFDagjEgsLFhvLLC\r\nzMIcoZoNNpVgPJngTJDAkBgRhIAQNiTGgAUySMJp0uCSFCc2JFABY4OCDUKEQDKyUIrEEAaDJASE\r\nRKUgIpCFbEJQKahUUcnUvYqKoJfQU81sJZBgENA3VQSqRNaBBFEFhSAlWhccUAwtxgltQmkmFJtS\r\njEuhlJa2FEomJUVxUmwmJWlLUjIxQiFCIAQWEiSJACMyk8RUaWwoYoMNgUCABAIMBlJgIIFknVkn\r\nOpYQUAM2WMIkSGwwUwaxwXRMR4KwMGAgbcBgECAJA5UhgRRgNhgTiECkDQYJMAgQ6wQSUQVRV5Cm\r\nbVsyE3OUwAgDZsrGAgMuBdJUldggMAZDM57QjMfUCATCJFtIGGM6YTBQyaxLBTZgsNggwEAGG5Jg\r\nXUUnBTIIkCANRqSMMCBkEXQSY4QQwhixQWwQHSPEOmEMYkoUmw0CGyyxQWKdERgsgw0GLG5QIQwY\r\nCIQxIAyYjhGYKdMxGCQQUwILApCNDJJAkAghEqglbKgMfUEdUCFCJiSEqIGIoI6gF0FE0I+K2ajZ\r\n7mC2wCCThYmZVdCbralm+9RVxfzJO5k9YRtVXaFxQ153iByOiCOr5KShzWDsmvG2GdZ2zHK4FI4c\r\nKRwJWDGkkiBRJqMsrDZNHh6PRuPD1x2a27Fw+Qm7d1582gknfPzM7/iOT+279W0vv+33/edDrqrm\r\nGb/29AmjMQcuv9IXX/y59uRTTg2OOuPMM/X8F/xu9bSnPLUcOHCAo3zyKafw/d///cEWH/vIRxMw\r\nYDoGTMdsMlssLi+Z446b+uxn/znZYjAY8LZ3vKN38OBBn3766TEzM8O/5G53v3s873d/x09/6q+V\r\nP3zRH+Q///M/Tx79mMdUp5xyihTBB9//gfbXn/70lo4B0zGbzBaLy0vmm5z4BszOzsZZZ521vW3b\r\n/3z99dc/rqqqPbOzs4Ner1fudKc7/cPevXv//qKLLlpeWVm5UtLgpJNOOiEilJksLy9PLr300isv\r\nu+yya/gPtG/PXrFJgOgIEKAzzjxTf/vud830+31u8CuPe3x75lln6Sm/9tSKY3zogx/M7/ne742Z\r\nmRm2OnjwYP70gx48/tKXvmQ6BkzHbDJbLC4vmeNuVvbt2Ss2iY446vd+//frpm309Kf+WmGT2OKM\r\nM8/U/e5/v+pWtzpbJQuXLi/zN+/8G3/2n//ZZ599tt72znf0OMbBgwf9J+f/cV526aW+933vo7vf\r\n4x7VYDDgBm3b+gmPfdzob//mbxIwHdMxWywuL5njvort4Ki1UcvqddezsnKIpjQxOnI9k8mYw4eu\r\njyOrw0gnzXgUa2tr9Wg0ilEzqZtJUzdNU2fb9pqm6U9Go95wbW1mPBr1RqPxoJmMB6WUgUuZoS0z\r\ntGWmtO1sadvZtm3mSimzmZ7LLHOUnC+lnS3Fg+KcyVJm7BzY9LB7pHvYtdNhZ5XOSjiUrjCBS2CH\r\njUQqQayzlKQMYp2RZAKpimAwO0OWpBk34ERmgwAFhIQkKhuF2LawHQE2G5xmZXWNdCLEOgNVVMxu\r\nm0UEGAJw0zIZD0kbSShMycRUREBIrLONJWxjgwzCyMYGp0GARBhqCVXQA5yQMhJUFiSkgIBAFEww\r\nJaYCI5AhQQoqIGyiACGwiIQAAogECwKxLiVUiRAEIETUQVSgKqgkql5NFQEhLIio6VdBr4JKIuoa\r\nJEQnZQpJU5LSGhtaFdqSZGuatlBKoc1CaZPSFMZZaLJQmqS1aZWYdUIGY5BQggypJFPYkIJCgkEE\r\nkBiTEmKdsI0kBKRACNuAMUeZDRYbZLFBxggbkJHBiCSRhCwSk6IjINkg1hkDQoBZZ0N/MEOv3ycE\r\nBiwQ4EzWhkNKKRgDwoCZsukIs84M5mapez3AkLA2GlLagpgSGAibglknjhJgITrGSEYIIzDYkAIx\r\nZYOCFCCQBQhsjEGAAUFYYGODBVaCxQ2MAANig5gyINbJ5gbGdIQx6wSk2WCxwRIJiE1ps84YA0LY\r\nIIMBC8yUQXQsY6bMlDmWgODGBEgQdCwhiXU2yAabCtMX9EIEIsSUqBCBiCoYVD16Er2qYl7BwqTQ\r\nb82gquj3gjlVLMzPMzhhjvqEBXqzs9QOxsMxZWWNergKk4a6MRCs9oJJr0fpD7g+Cte2DTlJJgpa\r\nkknTUtqGYduy2jbtammPjPGXY1BfuH1+/tM7ty9cdNs73P7y77nzXa4957u/98ie7/xPk6ruIQWX\r\nf/ly/9zP/PTkwIED3PJWt9Rf/83f1Bzj2muv9R/8/ovKa1796rzb3e+uZz/vufVpp50mjlpZWfEd\r\nvvu2I8B0DJiO2WS2WFxeMsd9W9i3Z6+4MdERIDr64If/ceaUU08NvkH3u+9PTv75M58xHQOmYzoG\r\nTMdsMlssLi+ZbwHiGzA7O6uzzjprYc+ePbc455xz9szNzX33zp07zzj77LNXDh06dN3y8vLlF110\r\n0dLq6urlkmZPPvnkE4fDoWyzvLxclpaWvnzZZZddyX+gfXv2ik2iI0CA6Oilr3h570d+9Edrjrr2\r\n2mt9wgkniGP84Yv+oP3DF70oTz3tVD/hV55Y/dhP/Hi1fft2XXvttfnTD3rw+Itf/KIB0zEds8ls\r\nsbi8ZI67Wdm3Z6+4MdERU688//zeufc6d8DUW9705slTn/zkwiYx9Ucvf1l9j3vesx4MBhzrA+9/\r\nfz7lSb9afvERj4hHn/eYin+Dv3zLWydPftKTGjoGTMdssbi8ZI77v8p2MDVqCktXXBrXH9jPNVdc\r\nUQ8nwxiPhjEejWO4Nqybpo3StnW2rrO0VTMZ181kVE9Gw3o0Glaj0bguk0mvmTR1M5n0StNWTTPp\r\nl7ZUxVlhDyjZtz0obdsvbTPA7ivbmaaUfklmspS50rbzmTlrlzlKzjhzNqTZudm5WdAA08/MejIa\r\n9ybjUZWZtXEYhXEgqUpCwPzsrPr9ngIQIhBgxmsj2rZFMnXVY3Z2BompAERmYbS2SjgBYYHElDGB\r\nBLKRBDaWSINtJIFMpCCNSQQ4hAwyUImwqACTSCIQxeCASkyJdWJKkAgIIMGARBgqjAySAFFZhEE2\r\nsrFATEkgYSAMsqnMBhlks04RiMBKMkApwkaCFBBBXQXCOEWEUF+Egioqoqqoe0FVBZVFbUNPRFVR\r\n1z0qBfQqWkGJYESSaZxJaVqybWkzKU3StC1N09I0E5q2UCamZKFxIW2yQApSiQ1y4IAiqA0klDAC\r\nZGEnAozAZoNAgC2KjABZpIwNlQLbpIwQN7DBAgNhY0BACpCQDTbrBrOzVL0eYLBYZ8AyAgyMhkOa\r\npgGEAGMMyEwZC4xIoN/vU5w0TYsQEhhIgTFhI8AYA8LIQtyYAQMSyGBEss7cICUQCIGFzJRAZp0A\r\nGcSUwRhj1hmBjBEGAhBggTEbDDIbzDqTCAzCIBDCGIspkTbmBmKdMQmIjjFImCmDDQIM2ICMWCfM\r\nlA3iK0RHgMyUkQCLECATCAQJyCAxJaSgwtSGGogQIQgEEhVBCPpVxTw1s4iexMy4YbZtqGd6bN99\r\nArM7F5iZn2N+ZgZCuK4obaFZGTE6skqsjej3YGIjKnJunoPZsFKSNWCFJNP0DE0pTCYTjjRjHxmP\r\nmmHbHopBb3F++/xHduzc+dFdO0+4uJ6bv2ZorR46tNb879e8pt51woka9HvJFpcuL/vBD3hgOXjw\r\nIC/8gxfFT/7UTwX/Bq96xSsnz3/uc1s6BkzHbDJbLC4vmeO+Lezbs1fcmNgkOgL02Mc/rnrSk588\r\n4F/pks9d4t0n7eaEE04QW/z5a1/b/uavP7OlYzoGTMd0zCazxeLykvkWIb4BJ5544mDPnj0n79mz\r\n54xzzjnnrHPOOef03bt3nyCpWl1dHe3fv//g8vLy5cCVvV5v+5e+9KXbnXXWWctAc+GFF7YXXnjh\r\n56Y+z3+wfXv2io7oiI4AATrjzDP1t+9+10y/3+dreckfvrh90QtfWOiYjp/zvOdV5//P/1kWv/AF\r\nA6ZjOmaT2WJxeckcd7Ozb89esUl0xNSr/vj83j3PPXfAFq959aubZ/3mbxWmbnGLW+iNb3lz/+RT\r\nThFfx8GDB/2Exz6uPPLRj4p73POewb/Cm974xsnTnvLUFjBgOqZjjlpcXjLHfUuzHWyxMlnjiusO\r\nxJcvWeTySy+NSdPQljaaySRGw2FMxk1ktjEej5Tpejwe1ePVlaoZTXqT0VqvHY/rfq83OOP0Mxcm\r\n40l/PB4NJk3TbyeTmWbSzDbj8fzhQ4fnDl1/3fykmcy3bVkoJbdl5kLr3FZJ87Pzc3OllJ5K1i5Z\r\nk1kDtaAXSc9yFaaSicBhhYZrq2pLUdCxQDbYYEBCQABiShAGASGBRG0Ig2XWpdkQgCNIQJhKbJAh\r\nFYREx6yThCU2GBBIYIzSSEIIbEJCgIHaRggBYToS2FSGMARgoEqjBAQIsMgwhAhDGAxkBVIQTNkI\r\nEIIAIbCwoMgIETbrJBFAIHqqiEpkCEWgSlR1UEWFqqCKQHVNFYGrQKqogHQSNukkAZdCm0nbtpTS\r\n0GZSCqST1kkW0xaTWUgnpGkzSUOmMaYANthgoABKMFCU2IBFAImR6Qhs0xGSESJtUkYIGWwzmJmh\r\nHtQIkeYrDFhgwBghRmtrNG2LMBgQG4xZZwkDBgwYEGAJEGadkZkyFlMGjAyVRWJkIYExxqBgg8GA\r\n6Vhg1gkhMAixzjIyCBBig42YkpEhDciAMGAgmBIkHRkCY4vErLPAhgqwhFhnEjBgwJgbCGFMAgIE\r\nWGCOMlNinQEbjAFTIZCwjTFSAAYSEGLKIIEA0RFGEkIkUwIJgqBCSFBb1AKJKVER1FXQU8VsFfRL\r\nYWaUVG1SCxbmBsyfMM/cSTvYtrDAoBpgBG2iTNrJhGbSYExJ02QymamZNA2j8YTrLUYlyQgKps1C\r\nlobJpOXayTiH7WStrbS/mp+5ZMf2bR89Yceuj87v2vX5amb+wDhjdM3+a8vsYFa/8azf6n33bb+7\r\nmpudTW7C8tKyH/LAB5aDBw/yqj8+P+557rnBv8JFF15Y7vsT9x7TMWA6ZpPZYnF5yRz3bWHfnr3i\r\nq4mO2CRATD33d55f3+/+9+9NiZuw+IUv5Nvf9vZ83Wtf62uuucYnn3yy3v7Od9a7TtgljnrnX7+j\r\nfdwv/3ILmI4B0zEds8lssbi8ZL6FiG/AmWeeuevWt771d5599tn/6eqrr77baDT6T7bnTznllMPf\r\n933ft3TSSScdXF1dvW5mZubq1dXVU3/7t3/7kU3TjH/jN37jjy644ILmggsu+KdPTvEfbN+evWKT\r\n6AgQIDp66Ste3vuRH/3Rmpvw0pe8pH3hC36v0DEd0zEd0zEds8lssbi8ZI67Wdq3Z6/YJDoC9MnP\r\nfHp227ZtwTHOf9Wrmuc++zn556//i/pO3//9Ff8KBw8e9L1/9MfKE3/1V+On/9vPBF9D0zR+61ve\r\n0jzj157WAqZjwHTMFovLS+a4b0v79uwVHdERHV38hc/P1XVdMVVsVlaOxHA4jOHaagzX1mI4XIvD\r\n1x+qPn/J5+JTn/hEdeTI4Sqz9NqmmXFbertPPHFu2/btM6PJuJ6Mxr3heDxoxuPZZtLMldLOlTa3\r\nZdtsa9t2oTTNtiOHDy2MVofzmTlPKbPpnHG6H+kemX3sShAhQqISCBO2hRFYgAQEIBtJYMBGdCSR\r\ngopNZp2wwDIYEAgRBjNlYQFhsJFFCCSmAiuQRCVTWVRMGQQIkE2FCBsZZCMDBiQUIKBghBDrzDoJ\r\nIoJ1tqkUSGZDQhC4gsQoQYAwgZCFbMJig5gytjHGGEtgAyIkiiAUhAIEhFCIuqqoqoqqquhJ9PoV\r\nUQe9qqIKUdcVqisk0zSFShXItKUFQynQlpYmTSmmaVraUmhKUtI0JWlLS1uSYlPaQiJsYxIL0mwI\r\nA2JKpA0yNiiNIpibn8cYAwk0kwnpJKqKqHsUmXVClNKytrqCDLIwBgwSFhgwBgQIy4BIpkRHEAZb\r\nWGaDQTaVOUoE68y6BMw6Y8AIIwxIRoh1BoRYZ8CAbGSxzk6EWCcMGAGBMGDEBhkDshDrTGKEMCCJ\r\nBGQw5gYGjJEgmTIICMBAASogZUzHgBAYzJQAM2WMqOhYZp0swIBBQoDMBkkEHQNiSuAwlghE5SAw\r\nCCpEjQiJOoJ+BIMIKpveJBmMWgZ1xdzOWeZ3LLBz94nUs32qEHUEboIyaSlNEjKlNLRNQwrGhiMR\r\nHFYhR2Pa0nBYQZOJm0LbtKw0Yx9pRs3YeUizg0u379j2qV0n7r5g5+4TP7Ow44QvV/356w4cPDS+\r\n9trrTIS+cMkl+dzfeX7vwQ95SM2/YHlp2Q954APLwYMH/QcveXF17/vcJ/g63v++9zW/+PO/0NAx\r\nYDpmk9licXnJHPdtYd+eveKriU2iIzaJqbvc9S7x1Kc9rbdj5045E9t85jOfyb9861vz79/1bgNi\r\ni79597vqffv2BUf93d/+bXveox7d0DFgOqZjOuYYi8tL5luM+Abc6la3OvN2t7vdHT71qU89sW3b\r\ns+bm5vqA2rYtttsf+IEf+MLDH/7wf5qfn79+bW3t9Mc//vH3X1lZmfzar/3an1xwwQWrF1xwwcc+\r\n+clPfoD/YPv27BWbREd0BAjQmWedpb9519/N9Pt9tnr5y17WvuD5v1MA0zEd0zEds8l0zDEWl5fM\r\ncTdL+/bsFZtER3R09tln689e9+czO3fuDI7xmU9/Jm97u9sGx/jyZZf5jDPPFDfhfe99bz78Fx5W\r\nzjnnHJ7xG8+sbn3rW2vnrl1i6siRI77owgvLS1/yR+0H3v/+BEzHdEzHHLW4vGSO+7a0b89esUl0\r\nREcX/NMnZ3fu3Bn8C4yDqQs++rF8/V+8Pj9+wcc9aRuchWc889d7d77LXSOzsLa6GsPhMEajYYzH\r\no1hZWa0mo3EMh8P6U//0CX/hC5dENqUubTuYTCa9dtL0s2n7pWnms23mStPOYc86yzzOBZeyrZTc\r\nnm3Z2ZayrWSZd8m5LGU2MwfK7CvdU7qXmRUuVaIKCAchLFBYSKyzQiCBBDZgkIURMhskEAYEBocR\r\nARbGIFM5qIAAAhECCQIRFjJIZoOFgRBIICAQYCrAaRwQIYQwAoEwkcYWElQStjEgmTBgITNlZKgM\r\n2KSMFOAkMSlhGwEVooSwTI1AwhJIYCOBLLBJgwUKgYVCSBASSEQEPQVViBCEgrqq6NU1dYjKBgXr\r\nVAUgekBm4hBNFrJAW1oKSdq0adLGMsUmE9ostC6UBLdJb9CjqnukITGj0YjxeEICdV3Tm50jndhg\r\nzNrqCsUFGUhIGduERQosMGAbI8AYYQvCWCYQ2IBIIAAZhJEhEAnIgIydmHUiBaYjixQdQyVIQBbr\r\nDBijBAFhQMaAgUCsqw0pYwEGSchMmXUW2FDohCEQiA2SSJuCWSc6iakMxiAwIg0SG2yQBDJGCGEn\r\nYIQICzElMMaAgZDABoQkhAEjhBBgEFNCCGQQIBGALDDUEpVMIKoIBlVFnQWVQt8w2xuwY/sC209c\r\nYG77AnW/T02NXMi2oVdqcmIm2TBOU0JQB5NmzNqo4VDbshKioRClkKVllLDWTLhuNGxXx+NV9+Kq\r\nmZ0Lnz3hpJM+uvvkkz+x/cTdS/MLOw+ORzm8ev/+ti2WQ6ytrumLl1ziM848U3/77nfN9Pt9bnDx\r\nxRf7qiuv9D3uec/gGJcuL/shD3xQOXDggM855xye/sxnVt/7fd8bMzMz3GBxcbG8+Y1vbF/xspcX\r\nOgZMx2wyRy0uL5njvi3s27NXfDVxY2KT2CQ2iY7YJI5x7r3OjVeef36PLZ78xCeN//Ktb03AgOmY\r\njumYYywuL5lvQeIbcMc73vHstbW1Jx45cuSec3NzvR07dtDv9w9fddVV1Wg0qvv9fnXOOedc9fzn\r\nP/8j/X7/1Ic97GE/fOjQofGTnvSkP7vgggsOXnDBBR/95Cc/+QG+Cezbs1dsEh0BAkRHb/7Lv+zf\r\n7va3qzhqPB7zw/c8d3zFFVeYjumYjumYjtlkjrG4vGSOu9nat2ev2CQ6oiNA3/md36k/f8PrByee\r\neGLwdXzi4x/PX370Y8qBAwfYvXs3v/Gs36ruc9/7Bse470/cu7nowgsNmI7pmI4B0zEd0zFbLC4v\r\nmeO+Le3bs1dsEh0BYurce50brzz//FmOGo/HvP51f9He5773rXadsEt8DRdffLH/6MUvLu94+1+b\r\nqZ996EP1K096YnXCCSeIY3z5ssvyT//3nzZ//D//ZwIG/GM//uOxY8cOM7Vj94me2b4thDQcjwIc\r\nM/2+2vE41lZW6/FwtT8ajurR2lpvbTjqt6NRPRmPe6PRcFAmzSCbZjbbMjNp27m2tPPF3p6Z20q2\r\nO7Jpd2Zpd5Sm2d40zfamabZlljkyZ+XsV6YXSQWEg6hMhBFoylQIWSAjBDa2ESALMEHHCMkEIgAh\r\nhAERCIcIoAIijQUSREIKjBFgQwhSQoYwSCCJyiBBBghQCiFCTJkAlIANMkikDRJIIJAhbYyQoAoI\r\niRaoDBaEOcoUG0mkzbqKKUMgwkIISwgIm8ykGEJCNgKsCkmgBFUQIqqgqgSYsFhX1UEaIoQCqkrI\r\ngAQylogQtpmdn4OoscGC1UOHMRB1j/6gjw2ZJp2srByhZEs6SYNtipNMsKGQpKGkcUKxsY0BGyxj\r\nQWXAgNlQC7CRwEAgbBCiYBLjBJEUgSNQCgxEAsIphFkngQxKYwSIwARTwYa0kQUGYRIjiQAiREiA\r\nKTaZEAoamYnNujBITBkBAgwUTIUQIp2EQXSMMFMBxjiFmBIYCAEGSWywEZ0UUwKBEAIkIYMxlgnE\r\nOiEkCEQgCLCMgcpQIYSoJUJQSVSV6En0qpr5mQFzUXHCrh3MbZujqiukoJTEowaRFAfR1oxGI9yH\r\npharpdA0LWvjMYdL0oTIECVbshSGk4mvH48nh9rmYParzy1s3/axU0468WMnn3aLS3aefIur5hZ2\r\nrVx7aDjZtWNeCbzhda9LQIDo6GWvfEXvh3/kR2qO+vKXv+x73OWuLVOv+uPzq3uee25wjMsuvdQP\r\neeCD2v3795uO6RgwHQOmYzpmk9licXnJHHezt2/PXvHVxCZxY+LGxI2JTWKTmPovP/zD+oOXvLg/\r\nGAy4wcrKiu/w3bcdAQZMx3RMx2yxuLxkvoXVfGNmrr/++u+q61qnnXbaVb/6q7/68auuumr585//\r\n/Bff8Y533P7qq6/+iU9/+tO7n/70p3/fs5/97Guqqop6CpjhW4fpCPALfud3mj99zZ9VHDUYDPjN\r\n//6s6rxHPbphk+kYMJvMJrPF4vKSOe5mbd+eveJrE0d98Ytf5IH3u//k9W964+Dkk08WN+Giiy7y\r\nQx74oMJRBw4c4ImPf0K5/MuX+9HnPaZii4c/4hHx1Cc/uaVjOgZMx3RMx3TMFovLS+a4b1uLy0ve\r\nt2ev+Br+/t1/7ws/+9ly69vcpmJqMBgwvzCvO33P9zTnPfax1S8/7rHV7Owsxzr77LP14j/6o/pz\r\nj/+cX/qSl5TXvPrV+ZpXvzrvdve766fuf7+oqsrD4ZAPvO/95e1ve1vSMWCm3vmOdxQ6plPYYnF5\r\nyXwNtoOjrjl8mH/82EfiyJEjMRyNaNeGMVpdqSdra/VwPK7LZFK3k1G/Ga4NVldXBsPVtfnVteHC\r\neDTaNR5PTmonzc62aXe2TbO9nTQ7sm12ZNtsz1IWSinzpW1nomSfdA+7Z1MDEXYYIrBASiBtyUZO\r\nOgZDAJKggIDKorKRQBIgkFknApxIBolwUGRkUyECAUYJQsgiEkKgAKXAgABBKkHQArbpEYCxTMWU\r\nhA1hk5hAyCYQZp0pJOEgJDKTVqYiqGyKDZgkCEMAJkFQgHACwoAEMhhDEeFgUsCYMKRMNAKJIohg\r\ngzIBgYAIEhBipoi6rqkUVBLjcUt/MGAw6BMSkogKhqMJ22b6hPsMZmeJCIZrq9jGBgNJksWkTXFS\r\nMinFlCxkmpKQTpyJDUowxhgLDFhAgiQE9CzSIsNAhTHJlIRtcAAGjAgEJAaMzFSCgkBYgI0xAUiA\r\nQIhAgEGQQJoNkqgkIgCBEGk22KaKwEwZApATA+lEiEoiBJJIwBgEaeEwtYQNkgAjMSWEsIwksDEg\r\nBBIILCGmDBI4IQJkCAkBUYEUrLNNFaYWG+SgJqhVMVtVzM/12Dk/oD8/z85t26hTSJCZjFcalEmW\r\nQmlaVItJK0plSi8oYQ5PJhwZDRm3hSaTNgIIRpOWYdv6UDOcrLbN/t7s7KdPOekW7znp1FM+cuIp\r\npy3t2HXitVZ/Mh63+brXvd50DAgQm8TUHe54x4otXvWKVxaOeuTDH5GvPP98zr3XucEWZ551lt74\r\n1rfUD37AA5trrr7adAyYjgHTMR2zyWyxuLxkjrvZ27dnr/hqYpPYJP51DIiOAdHxz/7cz8Uzf+s3\r\n+1Ns9Rd//ucNYMB0TMd0zBaLy0vmW5z4Btzxjne83Ze+9KU/mZubW3jQgx70njvd6U6XX3jhhZ+7\r\n8MILL7j00ksPT/3ggQMHnjo7O3vCve51r2s/97nP3Wo4HDZPeMIT3nDBBRdcesEFF3z0k5/85Af4\r\nJrFvz16xSXQEiI6Y+j9//fbBObe+dcVRTdP4x3/kR0ZLX1oyHdMxHbPJHGNxeckcd7O2b89ecWOi\r\nIzoCREeATjvtNL3hzW/un3raqeIYL3/Zy8oLnv87ZpM56m3vfEd99tlni6O++MUv5o+ce68GMB0D\r\npmM6pmM6ZovF5SVz3Le9fXv2io7oiI4A/dCd7xx/+po/m+Go0WjEPe96t2b//v3s3r2bJzzpidX9\r\nH/CAmJ2d5Wu54oor/OY3vqm86IUvLHRMx3QMmI7pmI7ZYnF5yfw7sx0f+tBH+eLnL44yWWPlyJF6\r\nZXWtP2mauilZt846JqU3Hg/7o9HK7GQ0nh2PJgvD4WhhPB5uy7bd2U6aHW3b7GhL2ZFt2daWdhtN\r\nM0uTs23bzGRb+llKPzN7lFI7XduusCvjCjtkqjAhOYAQSChCKMw6mSkl65QCjIEAJAFGBgLComLK\r\nATJhgcA2DkiBBbYwJhCWCJuKqRBIYDoCBBgiRC1jhCwkkTaFJBBhkZgQhIUssBHrDBLrbDBTgjAI\r\nCIEFaREIAQqjBAsIUAS1QAYMKTakjSXm5uaoqopIsa5tG6q6wgYJLDFcWyMzCUEvauYW5iEgszAZ\r\nDgmJCBGIQNQhQqaKIJjKgqgQxk4yC1ikTREUJ1lMcdKmadokbWywTTHYiVknMGBoMQaCKUNI2JAC\r\nW5jEGCUIYUHaEEYS62wjQBKJwQaEFRQSGcIiBSkjhAwFY0QIMFuYWsEGi0CAiYBMNjjAAhtkIYMC\r\nMAgQpkJYIAQGBAnYZkMABgERgIUkwlBLBFMCBJIIQS0BiTE1wWx/wLaFGXYMZpmbm2Omqgkl/X6F\r\nU2Sb0MDh1RG0DU5oI3HAmKDp9SkVDJsJ143HtCq0aYxoXVhrS7muadZW8VW9uZmLTj755A/c4oyz\r\nPnTqLU5f3LFr9+HLr7lmsn1hm/7ida9LNolNoiM6+sLSl2bY4gfv9P3N/v37OUpMveqPz497nntu\r\ncIyrrrzKD37AAyZXXnmlAdMxYDqmYzaZLRaXl8xxN3v79uwVNyY2iU3ixsS/nph6+C/9UvzCLz6s\r\nd/rppwfH+OQnPtE++AEPnACmYzqmY7ZYXF4yNwM135ghcKSU0p9MJgfW1tYOTB259NJLVy+++OJr\r\nd+/e/f4dO3aU66+//pnvfe97T9qxY8ekaZoCDIE1oOFbgwEBBvTCF/ze5FV/fP4sR/V6PT37uc+t\r\nf/anf6YBTMd0zCZzjMXlJXPczda+PXvFVxM3JjYJEFNXXnklD7jf/Zo3vPlNvdNPP11s8ZjzzqsO\r\nXX99edUrXmmO8ddve3ueffbZFUeFgikDpmM6Bswm0zHHHff1GRDH+NAHP+hPfepT5fa3v33F1MzM\r\nDL/7wt+rHvbQny8HDhzgt575G+Xw4cN+zHnnVXwNt7jFLfS4Jzy+fugv/Hz15je9qX32//h/CmDA\r\ndEzHdEzHbLG4vGT+/0BS0kmm/vH9n83rrrt6YpK73PU/s33nAhd89p9Z+vwSK+Mxh664NNrRMLIS\r\n45IRk0mdbVs3pQmXrDOzLu2kNylt3U6a/ng06rWTpt9Oml42zaBMmkHTtIPSln6WMlNKmSulnc22\r\nzLktC5llIUs777bdXrLMU3JObc45y2ybOVOy9CmlJl2TrsCRmZEgi0gsIBQoUAgCUNiSkWWlEFNm\r\nnZFNEBgRQMGQgACJKgUBaZMGMgkJBJZRmhBYQgQhaJ2ACIQwISgIy4SNERYII0Fl4TQOE0ylCALJ\r\nhEFMSQhQSRobMRWisoAkJUjTtAUrwGZdVVWkIYBiWFtZoWQim4xgMOgzmbQQJoFxm1AKGxQEQjJg\r\nqoDKEIh1VZiQqBC1AgSVTFBR1UEERAjbpE0CThMGXEiMEMXQ2rRO2jSkUUIK2kwyIQ2pChuKEwwG\r\nkikFAooMCCeEhAAL7EQIKcDgFCKpCEBA0o+ACDKNMRgiBDaBQAInQnREVQsbJKhClDQQGDBGiIp1\r\nBkEYagSG1kaYkBAgQMGUkECABBGir6C2iBAEyElbEiP6dc3cXJ9d2xfYNbfAbK+mxlg1tilNYTQe\r\nYwkImokZy0wwpQYsRm3hkArjKDhhPJmQgqoKTPrQZDK5vhkfHEcszuza/om9p5764e/4ju/47Gmn\r\nn3l16+rw1Vdf01515FKNRiO9421vT0DcmNgkOuImfNctb6n9+/ebjpl65MMfUc7/X3/C3e9xj2CL\r\nU087Vf/zT/6kd+8f+7ExHQOmYzqmY46xuLxkjvt2JDaJjtgk/n/jCz75iZmdu3YFN+FzF3+uffAD\r\nHjgBTMd0TMdssbi8ZG4mar4Ba2trK7YvHY1GC5/61Kd84oknXn3gwIHDa2trZTgclgMHDhzevXv3\r\nh7dv3/6yw4cP/0pmkplceumlVx44cGD/2traCt9EFpeXvG/PXtExIMCAAAMC/A9///csLi62+/bt\r\nqznqjDPPDMB0TMdsMlssLi+Z426W9u3ZK742sUlsEjcmpq65+moedL/7t29485vqM848U2zxtGc8\r\nowLKq17xSrPFZZdearYYj8dsYToGTMdsMlssLi+Z44772gyILZ7/nOe2r/2L11UcdZe73jXOPvvs\r\ncvHFF/OY886Lx5x3XsW/wo4dO/RzD31o/ZpXv7pd+tKS6ZiO6ZiO2WJxecn8X/KDd71N8vUl/woe\r\nOi7PIUcWv8zlB69i0k6YTIZcedXl4ZawwJnhNM4SmSXaZlI3TROT0aiejId1Ox7XbZvVZNL0SzPu\r\nteOmP2maQTuZDErT9MqkmZ20zUw7afptKYPSln4ppV+ayVzTtrNt085T2rnStvNtabfRloV0zrrk\r\nrOwZm34hB4jaqMbUyFWYWqgCorKjBoWRxZSETTAlMOuMDBVQOUnWmbQpBttYxggMlggnYRBQMZUG\r\nRNoUG6VAiYGqgCUoJiQqRGIqQClkQMZADQxHY/pVhRVgCEwFBGJtbQVnYkTUwczMHA5RbGTASWla\r\nQoAEJbFERoKgpAlEIGxQGizWKZIALLALSAgIgjoCMJVECEIioiYwSNQylc2AChmUxjJEEBgpwMIB\r\nJRMLnGCbkiaBSRYmJWltnFBshEiBXWFMIJzGwZSwgypEyYaIoFfVjNuGYiGCSoEwNjQlsQAZGUSn\r\nlkAQgqhAAgwmwBASVYiQGDctk7ZgQwhCQkAVokJYgKFWUAkqBXUl6hBK40yaSQHB/MyAhe3b2LVj\r\ngW0zA2bqmpoKlySzZTJqabKlIknDuK5oUkzUcCQKk74YTSaMJ4WxRA5qbJBNK9G0jVdGk9G45FWa\r\n6X9qx6lnvP+U08/42Kmnn7l0ysmnXrs2bJvrBrN57fha3vvOdxowIEB0xI2JTaIjjvFLj3pkfOiD\r\nHywc4xEP+8Xyxre8mTvc8Y7BFh/9yEcKHQOmYzqmY46xuLxkjvu2sG/PXrFJbBId0dE97nnPePB/\r\nfUg1NzeHbVZXVvmL1/15+cD7P2DA/At+/4W/P/nNZ/3WoK5rscU/f+Yz7f3u+5MTwHRMx9yExeUl\r\nczNS8w1YW1tbrev6H1ZXV7/zwgsv3Ltv3753HDhw4PDa2lphajgclgMHDhw666yz/mY0Gp1x+PDh\r\nBzC1vLy8dODAgevW1tZW+eZmQIABAQYE+MUv+oPJi178hzVTR44cycedd96YjumYTWaLxeUlc9zN\r\nzr49e8XXJzaJjtgkQGwSU/v37+dB939A+/o3vbE+a88escXTnvGMSlJ55ctfYY768Xv/hNjiy5dd\r\nloAB0zFgOmaT2WJxeckcd9y/jT/6kY/kP33yk+UOd7xjxVFPf+avVx/58Ef85Kc+peIYH/rgB7Oq\r\nKv7zD/xAsEXTNP6NZ/z6eOlLS6ZjOqZjOmaLxeUl8y1Is0puWvJvZDuYeueH388VX1iKsQuNkro4\r\nmvGEyWQSEiiJtmlomkmUdhJrw2GM11br8epaPV4b1qPxuDcZj/rNeDxox5NB05T5cdPMTZrJQjNp\r\ntrXjZqFtm4WmtDtKW3a0pV2glO1Kz9f2PGg28EyIGZMDpXqInqA2VBUKkRIIUADCRIAMslnnNAkI\r\nA6IFgnVmnVQxmBswGY5wJo2ATBAI0cpIou4NUBVECGdCa0ZtA9lA0xK9HkIkUIDA0O+hYqqo6PV6\r\nICgYMGExHo6wTEFgU2HSkGkQG1qbSkCIEGBhQDIYnMJig5nKRJkERqwTBiQhQJjKiQRCVAhsJEBJ\r\nAFEZ2YREFUFUgSpRCWoJVYFlDBiwhW3SSRpKmrZtwQKLUlqKTaZImzZqEiNMVBVpY4JSDCS9CEJB\r\nWlQhbAjAgBRYEECEqBCqKmxTYXoBvV7N6qRQ2iSAqhIhERIhUVWBELKpCAIhjIAohnELaWZneuw+\r\naQdz2+fpDfrM9Gv6UaHG5LChyYamEhMlDmhLRZtmQrI2Kay2yWoz4VA7xk4oBVcVdd0n25bRZMKw\r\nbd06h1nH1fXC/KdPPeWUd596+ukf3rV796UL23cdHrU5ufUdvocnPPZxpiM6uvVtbqNXv/Y1M+Px\r\nmNe8+tXNH734JcmNiU1ianFxMfft2xccdbe73z0ec955fvnLXpZscdJJJ7Fnz16xxYEDB/K3n/Ws\r\nFjCbTMd0zBaLy0vmuG8b+/bsFTdNdASIqf/16j/t3eWud+1xjB+/90/0PvbRj7bPeNrT2qUvLRkw\r\nm8wWr3n1q0uvV4+e/uu/PlPXtYbDod/2V381ecbTnt6yyXTMJnPU4vKSuZkR34Azzzxz1y1ucYsz\r\n27b93vn5+dk73OEOB/fv398cOHDgyIEDB1Y5avfu3f3du3fvvPjii89dWVmJO93pTu9cXl6+7tJL\r\nL71s6lK+yezbs1dsEpvEJr3nA+8f7Nq1Kx720J8ffvITnzCbzCazxeLykjnuZmXfnr3i6xM3Jjqi\r\nI0B0BOhBD35wvO997/M1V1/NlJg68cQT9fo3vanas3ePOMYLfud3y8tf+tI859a35g1vflNvZmaG\r\nGzzlV391/NY3v6XQMWA6pmOOsbi8ZI477ibs27NXdERHdAQI0J2+/07x569//YB/wT9+6EP50P/2\r\nsw1Td/ye7+E3fus369vf4Q5V0zR+1m/+5vj1r/uLBEzHdMwms8Xi8pI57t+N7XjDm97IcLgWjorh\r\n2gqlbaNMmhiNhjEZT2K0tlqP19bqldXVenVtrT9cW+uNxs3sZDKeb5pmNpuyvbRlW9tOdjSTyY62\r\naXY2TbOzlHZblrKN9JzseTtnw8yGPVOlB2H3K9Mz1AmBM2RkIRnJJoCqCubm5hDgUlgbrhFpsJFA\r\nQH9mhv6gR6UACQkCiAwKhfF4QmZhbn6BiECAzAYZgo5ZF1gGTDMaU8YTQpBACGqBJAwYg4SYMjgg\r\nBGEhRJGRAYMFSAiBDTYhwGADEgJCEAg5gUQIIZJEFuuEkQAJJIRIjAEhZIMAQa0AiUqiroIqoFbQ\r\nq0SFEYEAuSAHSiGg2CRGCkomlrHM2rhQMlGISWsaJ5LINJnGQEhgiBCZSa0KIlAlBlUwU1dM2sKh\r\nUYOByqaSkAFBKJDAmbgkQgioq4pev6LXq1iY6TMYzDA702NuboFev09xIdsWFWibAq1p2kITMKyS\r\nCaZpkrYUJiVZLS2TNONSmLhQV0EZj2lKYZjptWzbgg8PZme/fOKpJ3/q5NNP/9DuU0/7xPZdJyxv\r\n33nC4S9/+YrmHj/yozzhsY9LQHRER+fc+tb6sz9/7cyOHTuCo1ZWVvyWN725/e1nPauwSWzSE574\r\nxHjCE3+l5hgfv+CCfNELfz//8UMf8mMf/7h42C8+PHadsEts8dxnP2d8/qteVegYMB3TMVssLi+Z\r\n474t7NuzV3w10REdAWLqr97+tsGtb3Obiq/j4MGD+ZAHPnCyvLRswHTMTfjJn/op3fs+96ke/chH\r\ntmwym8wms8Xi8pK5mRHfgDPPPPPUs8466/Q9e/acdtLU7t27T1xdXWVtbS2Hw2Fy1OzsLHNzc/X8\r\n/HzvwIED1+6fWl5evubSSy+9bGqZb0L79uwVm8QmcdR//oEfEFMf+fCHTcfcmNlicXnJHHezsm/P\r\nXnHTxFcTm0RHdPSs3/7t+kd//Mfqk08+WRw1HA752Ec/ms97znPyks9dwoknnsjr3/Smas/ePeIY\r\nb3zDG8oP3fnOcYtb3EIcdcUVV+TdfujOY8CAAdMxHXOMxeUlc9xxX8O+PXvFJtERIECAmHrjW97c\r\nv8Md71jxNXzkwx/On/3pn2nomI7vcte7qK57fs8//IMB0zEds8lssbi8ZI77v+otn/58fPd37uG7\r\nFvp57Wgc2wZ9Lr7kc3zyA//ISjuOVmK8uhqD4mgooVJiOB7Xh0dr9WhtrR6urdbjtXFvbTScmYwn\r\ns+2kXcjSbncpO7PkiW7aE5vJ+ISm5EK2zbbSNNtKaWfdlkFmmalQf3ZuZhDp2pl1cVZN28b4yEqQ\r\nGSarmdnZqq57AQ5DIEJTFSYMAdSIydoISjI/N08vAiEqQxgQWGywRQrGzYTxeEQFKM0NIkAKkCgY\r\nBMJgQSXAYBMWSFR0JCGJMNimYp2xwdzACDACmyARQhKWwUYIMSWTrAsCSJl1gZCNMVjUFkWAQSEg\r\nsSEMdQQ1gZVIpqeKWkG/ghoRFnUlLFNJzPSCRiILhIJIaJ0M6gowY5I2zdqooZkUEtOUJA2JsQMD\r\nVRVIwogNmZCmiiBtqhBOIwSC3qDHwrY5ZmcG7Ni+wOzCDIMqODIc4UxmsqakaLMhDKWYcTHDpmFl\r\nNKHUwVAiK9Fmodikk7ZpaSct42bCuG0Yl4knTdOqqo7E3MwVsyfs/PzC7l2fOGH3SR/bferpl5xy\r\nxlkHd554ymhubq49/RZn8E+f/rT+4PdekHRER4BufZvb6NWvfc3Mjh07gptw6NAhv+61f15+9/nP\r\nL3TEFu/5wPt7Z5xxhvg3eM8//EP7S7/48AkdA6ZjOmaLxeUlc9zN1r49e8XXJzqiI0BM/eFLXtL7\r\nifvcu8e/wuIXvlB+9L/88AQwm8xXMzfN3JjZYnF5ydwMiW/AmWeeuWfv3r379uzZs3fPnj2nnnXW\r\nWScDBtr/jz34AJCrLBu//bvPmZmdmd1NNptNLzMwQAhN6b0koHQpoXdQXxEQEQtdRKX3XgKhiHQC\r\nCCo2WkIHaZIEycA5aSTZTc/O7JRz7m/4P+M3s5tQVJRNfK4LKLMSM2bMmO/7/ke+78/yPG/GzJkz\r\nZ9ALZVJpoTvhn6PUyfqeYq1WMqm0sCKhO6E7oUaoSK+Rdu68++7YsGHDHD5BPp/n2quvDm656Wbt\r\n378/D0582B2ZSgmf4bQf/bjr4YceCgHFUECpUaqyvqdY1mfIpNJCjWAIhgACyF577+1cde01DazE\r\nKy+/HBx28CFlDMVQDAWUGsVQapQ6Wd9TrFWOqjpUvf7K60zNvu+US4GzPL/cyReLTqFYjHQtW+6G\r\nYTlSLJUihXw+GpZK0UKxECsXi/G+ffsm+/bt21gqFRoKhWK8WCjES6VSQ76zs2H2R3Ni8YaGZCLa\r\n0KdcLDaXC13NhWKpuVgsNJVLpeYwKDUG5SBBEDZoGDYQhLF8LhcJykEkHo87Edd1HEQiKriCqIAL\r\nOKFSKhYpl0o4Ao6CoyCACwgfE9SBUECECsVBcBwHVVANEVUccRAFVFEqRHBUEELEEUTBERAMB1CU\r\nAEMVHCocEAFU+JhICAggCAKioIIS4qriAAqEgKuCOgIKqqCEiCiOCgI4KiBKICCqgCKAIERUcMXB\r\nUBpch4gI5RDEEWIigBBBcBzAATfiUA4VR6Eh6qDiEKpCqBBCqBCIoGGIiIBCECoagus4RBxQDSir\r\nQ59+rcQak6gbIEC5UKShIU6yMUFUlWXFHOVQiJVcNACcEAkCNIRODVlaLJPXgFIsSklDwnJIOQwI\r\nNKQYlMgtW0ZXvotCUC6ryLJkMja7ua3ve82DBrzWp7X/W42tAz7o03/AgtYBQ5cPHJIu7n3gATTG\r\nJKQqk0oLNYIhgDz7/OT4sGHDXD7D4kWL9LFHHwtvvvHGYP78+VTJNttuKzffOj6SSCT4PP72zjvB\r\nvnt/owgooBgKKIZSJ+t7irVayaTSwucj1AiGAEJFKp1yfv/HP8ZjsRj/8Jc//Tn43e9+G6bTa8i3\r\nv/N/kXg8zj8Ui0XWW2dUHkMxFEP5ZEp3Sg9Z31NWU8K/YdSoUemZM2fe09TU1NzU1BRvbGyMBUFA\r\nqVQqfywMQ3rK5/Ndu+6664We583yfX/mjBkzfHqpTCotrEj4dEoPWd9TrNVKJpUWuhO6E7oTagRD\r\nUumUPPDww7H+/fs7fA6/eeyx8NTvnxK0tbXJgxMfdkeMHCl8ggfuu7945umnlwHFUAzFUKqyvqdY\r\n1ueUSaWFGsEQQADBkGcmT2oYPny4Q51XX3k1OPSgg8qAYiiGYiiGYig1Sg9Z31Os1VImlRa6Eyo2\r\n3HoLN7dsmURC5ZzzzkukU6lIZz7vuApdXXknVGVBR4c0NTVJqdDlLO/sdLvy+cjy5csjc+bMjpXy\r\nuUQYhI3Lli1vXN65rG9nLt83n8/361y+vHXOrFl9ugqFZoRmcZxGQo2HQdhQLpdihUIhVu4qxAjD\r\nqItEUY0IREQ1IogbAccRcVwQR1UcR3ARXMBFcBFEFUURBERwUJQQQQDhY0qIIDgKjoADuAiIoAIq\r\nCioYiiIg4CAoiooiKoCgDgiKq4KogoYIRoggIiggQBAqIuCiRFAEwwECB4QKUVAQFRwERx1EhFCU\r\nCBBVCFQJUUBwFFwEVHFEEKAkEApExUEEIkAkVFwEcQQVIYIQi0ZwXQdHBRBwhIgrBOUSpbKS6NtM\r\n3yGDKBOydPESSrkugnKIG4kQi7qoI+C4uAVFQiXa4FDK5SmEDktiDgUNKYlDCUXCEA2Vznye5blO\r\nlgddYVmDfENDtKNPn6Zp/Qe0vdJ/0JBX+gwe9H5D/wHtfVraci39BpUTjc3h0GFD2H7HHUJ6yKTS\r\nQo0AgiG33XF7dMeddopRp1Ao0NDQwMrk83kef+w3wZWXXx62t7fzsa232UauuvYat3///sKnePqp\r\np8rfPu6bJUABxVBAqVGqsr6nWKuNTCotfD5Cd4IhGALIueedFzny6KOiVL315pvhuH33K1Nx0snf\r\nc0859VSXOldefnnp+muvCwAFFEMxlO6UlVN6yPqeshqL8G9yHEdc141Fo9FYtMJxHIIgQCuCIFB6\r\nCILA1QpAP0YvlvU9zaTSQndKjWAonyDre4q1uhNqhBqhO6FGqDj/wgsj/fv3d/icvrHPPs6rL7+i\r\n995zT3jQuAPKDz36SGTYsGFCD/ffe1/xrDPOKFOjGIqhWNYXTzGEil/deVfpjLPObKDO85MnhYBi\r\nKIZiKIZiKDVKD1nfU6z/FYIh77z4SggIIEcceHDusSceb1h/gw1cPsW0adP0+yecGHYsXIiIsNOO\r\nO0a+/Z3/i0bjDSxfsjRSLhadZZ3L3b+++oq89tqrEgZBtFQuNYSlIFYMgkRYLsWLxVJjoVRMFovF\r\nplKx1FQslRpLpXKfICj3CcpBUykMmlXDRg210VFNSqhJJ9SEKHEhjIlqJKJEEHUcccRVEQcEB4mE\r\niqPKx1QURxUHEAQXJaKCUiGgoqCCIwqOgAqqigChgCpIKCCCKjgCaIhLhSoKKOCIgCqKoKq4gEuF\r\nCiHgOCBUKKgKCIiCAiKggCiIKIIShFDQEFeoUEIcPuaq4gCuKhEgFCEQhwCIhgphQKAhikMYgogg\r\n4uBqgOsoUQRVJQxDXBEiODjqECxcQOfyxTjiEIpQVigHgECpIYbjChIK5ZJS0oBySSgFAepECJwk\r\nZYVSqURQDugqF1hc7Aq7glI+EpWO5v59vJa2lnf6Dxj419aBQ99qahs6J9G/bWlz/4HFxnhTGCuX\r\nOPCoI0P+Rd885tjy5BdfjAweMtih6rbx48sbb7KJs/U22zj0kEgkOOiQg9299/mG+9gjj4ZXXXFF\r\n8OILL+heu+1ePvVHP3T23mcfNx6PU2/WzJnhnXfcWb79ttsCQAHFULpTqrK+p1irjUwqLXwyYeWE\r\nGsEQQAAZMHCAUOf22yaEgBx/wgnOKaee6lLnphtuKF9/7XUhFVtvs428+MILysopK1I+Qdb3lNWc\r\n8G8YMWJEWz6fP7VcLu85ZMiQrrFjx84vFAq6aNGiZQsXLly6ePHiYqFQKFKns7Nz+ciRI3/f3t6+\r\nsL29feGCBQsW0stlUmnhX5D1PcVa7WRSaaE7wRCqjj/hBPe5Z5/VKe++Sw9C1eZbbO7c+8ADDdR5\r\n4fnnwwvPvyDoaG/ngIMOck446UQ3kUhQL5/PM3aHHUvt7e06cNAgJj76aHTwkMFCRbFY5I4Jtxcv\r\nueiiMoYCiqEYSp2s7ymW9U/KpNJCjWAIIBgCyKQXX2gYMmSIQ9Xy5cv1qxts2IWhGIqh1Cg1Sp2s\r\n7ynWai2TSgvdCYZgCCCAUPHQIxNjX914Y5eVmDljhh6w3/7BggULFBAM3XKrreTW2ydEGhIJx4GQ\r\nijlz5ugO22xbHD5suBNqoIjQ1tYmERFtSMadWCymEdd13EhEgjCMBGFZSqVypFQsxsIgiJULxUSx\r\nXE6USuWmYqnYp1QothSLhdZisdgSFIt9g1KpOQjKTUEYNhIGSQk1oRomCDXuhMRRbRA0pmgUJQLq\r\nOuA44Liq4oK4qIiCg4CCgyCAo4AASoWCCOI4qCgfc1QQVURA+ZgggAKK4gKCoAiI4gqICioCoqiA\r\nI+CogCqggBCKIBoSUQWFmECoCiKAAAIobqgECIHj4ApEBWKEEIJoiAAh4CAgggo4osTEwaFCFQmU\r\nqEaIOA5OJASUSCCEboRyRBDXIRaJEJRDgiCkC8hFo2jEJXAFUBxxKaqQK3exrLNTu7Rc0oizIN7c\r\nlO3T1vpGa1v/V9raBk1pGTBoTrLf4KWJvn2LyYZkmBo+kp2/Nibkc8qk0kKNAIIhgHznu8e7Pz7t\r\ntAaqFi9apJttvElp9OjR8pMzTne332EHh08xedKk8OILLgymTp2qVOw/bpy4rkskEtH33/+7vvbq\r\nayGGAoqhGIqh1Mn6nmKtFjKptLAiYeWE7gRDMARDrrr2mshee+8doeqnZ50dNPdp5senneZS55qr\r\nripfc9XVIaBn/fQc54gjj4yce845hQfuuz8EFFBqlBrlE2R9T/kfIfwbRowY0Wfw4MGbvPfee5f2\r\n6dPHve22236/fPnyvOd5s+fPn9/u+37XggUL2qnK5XJdHR0di3O5XDGXy5VyuVwxn88XWUVkUmnh\r\nc8r6nmKtljKptFAjGELVzePHR3f+2i4NS5YsCQ8ad0AhO306dYSqCy66KHLQIQdHqJr+/vu629e+\r\nXgKEqlHrjpKbbrnFHTFypFDnjgm3B7/8+c8DQIcMGcLE3zwWW7pkSfjzn/2s9Pzk50MMBRRDqVGq\r\nsr6nWNa/IJNKCzWCIRiCISd+7yT3Bz/8YQN1Hn7ooeJpP/pxGUMxFEOpUXrI+p5irdYyqbTQnVAj\r\ngGAIIIAAcs/990W22HJLlx5m+L4euP+4YMGCBdRRKo4/4QTnRz/5sUudtdJrFADFUEAxFEMx9Hvf\r\nP9lZe5119NUXJlMOAyLikEw2Os19+mhnocvJFbucoFCKlLq6IrlSIdLVlY+UCl2xYlexIV8sNJSL\r\npXi5VIoXi8XmYqnYGBRLzaVCsU+xWGgulUp9y6Vyn3K53BSqNhOGSScMGx0NE06oCVWNExJzQo0p\r\nGhGIiKrrKK6ggiCAqCM4ijgqCCAoQoUKDuAAAjgoiKDC/89RQASVkMABBSIqOEAkBEchcAQEJFQc\r\nBBelLMrHBEEUHMdBUEpUiEMMxaVCFRVwRYghiAISoiKE4uCo4io4CI5CFHBViESEaNQhCEHEoeS6\r\nOBFQFNwI4jiUy0LJdSiL4jguhTBkeT5HZ7FIMQwDccnFGhvmNrY0/a1P/34vtg0a/vLA4ekPWgYM\r\nWdi3bVBx8PAR4W47jw35F2VSaaFGMAQQQAB59vnJDcOGDXOouvrKK8vXXn2NUrHOqHXk5788391s\r\n882ET/HiCy+El1x0Ufmdt99RQDEUQwHFUAzFUOpkfU+xVguZVFpYkdCdsCKhRjAEQwC5/KorI/vs\r\nu69LVUdHh7a1tQl1Lr/0suDG668PqBgyZIj+5dlnGmKxGKVSSc//xS8Ld991VwAohlKjfIKs7yn/\r\nQ4R/w4gRI5rWXXfdtXzf/1ZTU9Oa3/nOd2a2tbUt9n1/fsWiGTNmFDo6Ovx8RWdnZ1d7e/vCjo6O\r\nufl8XlmFZVJpYSWyvqdYq71MKi3UCIZQcfP48dGdv7ZLA1ULFy4MD9hv/+IM36eOUHHP/fdFtthy\r\nS5eq22+7LTj/F78M6WHUuqPkoUceiSQSCf4hm82Gu+68SwlDAcVQDAUUQ6lRqrK+p1jWvyGTSgs1\r\ngiEYgiEvvPJyfODAgQ5V+VxON1xv/Rw1iqHUKD1kfU+xVluZVFpYOcEQDAEEEAwBhIq7fn13dJtt\r\nt3Xowfd8PWjcuGDBggVUKRUDBgzgxVdfiVJnrfQaXYBiKIYCSo1iKD1kfU/p4Wfn/8xJOi7NiSYa\r\nmpsodnYREjhhOUBQCAOHIHBKhORLRacrn4905XORfK4rksvnYvmuQkNQLCeKQZAol0qNhWKhqdBV\r\naC4UCn1KhWLfcrnYXC6XmoJSqW9QLjdpEDZqECY0DOMBxFFNOEpcVRuABgk1ChpB1QVxRBEhFBfE\r\nVXCkAkFQREFUEREcQABHBEcVFHBARBBVUBBAHRDAQQEHxCEiIFSI4KKoKh8TAUEQBARwQoSPCYKD\r\nqiIIguAIuAINLjjiUBYHibiI4yIRhyAMCELBjbm4RHBU6CoUWJ7vYklQ1MDRUiQeW9Lcp/nD5v79\r\n3uo7cNDL/QcMfqNPa+usvv0GLO0/cGixuU8f9t1v35B/UyaVFmoEQwABBJBjjzvOPeun58SoWrRw\r\nke6x667l9vZ2PrblVlvJrbdPiCQSCT7LG3/9a/CD759SmjVzpmIooBiKoRhKnazvKdZqI5NKC90J\r\nNUKN0J1QIxiCIVTss9++zuVXXhnlE1x68cXBzTfeFAI6aPBgJj76SHTQ4MFC1XPPPls87uhjSoBi\r\nKIayElnfU/4HCf+Gtra2xlQqNWT06NHDNt1007X+9Kc/HfbBBx+MOP/88x/t7Ox0Ojo6yh0dHbNz\r\nuVyhs7Mz197ePnvGjBkftLe3L8sZhXw+r1jWKiKTSgs1giFUfPfEE90f/vhHCXpob2/XA/bdrzh7\r\n9mzqyB/+/KdIZq21HKqe/N3vw5NOOCFgJS68+CLnwIMPdqlavHixbvbVjYuAAoqhGAoohlKj1Mn6\r\nnmJZ/4ZMKi10JxiCIVT85PTT3f87/jtxqoJyoKPWWisHKDWKofSQ9T3FWi1lUmnh0wmGYAiGAAII\r\nhgBCxe133RnZfocdHHrwPV8PGjcuWLBgARVK1XTvwyhVxWKR9dYZ1QUooBgKKIZSo/SQ9T3lC3DD\r\npVc6RadEQ0MDiYYGysUQNyJOWFYCLTtBuUyhVHSW5HNOqSsfCQpFp1DoiuQL+XixUIzmC4V4sVhq\r\nKBdLiWKxlCwWC03FrmJzV7HYp1ws9i2VSs1BUG4KwrA5LIdNQRgkgjBokFDjbqgNqMZENUYYRsNQ\r\nY2gYU4g6oUYEjQCuo+qWBMcBiSsSUZUKPuYArggCKA4RICaCCISO4oiigCoIIAKhCIiigCiIKqEI\r\nIi6CEAKOAxGEmOMgriCOQyTioCEECqEAbgxHhFK5zLJiISiGQSEWcZckmpNzm1r6fNjUr+/brW0D\r\nXu8/aMR7LYNHtDe19MslGhLlqOty8OGHhnxBMqm0UCMYAgiGAPLMpOcaho8Y4VD14P33B2ecdnq4\r\n1dZby/gJt0USiQSfR6lU0jNPP734yMMTAwzFUAzFUOpkfU+xVhuZVFroTjCEGqFG6E6oEQzBECpe\r\n+evr0dbWVqGHm268Mbjs4ktCKtZbf31uvnV8ZMiQIUJVuVzWfffaOz9t2jQFFFBqlDpZ31P+h0X4\r\nNyQSicjf//73PTzP23Du3LnlMAxbVDXW1NSUrGi8//77158yZUrjGWec8YhWtLe3JxsbG0uNjY0L\r\n29vbF7S3ty/I5/NlLGs1cOP114f77r9fOZPJRKgzYMAAeeDhh2L777tfad7cufzD+++/T2attfiH\r\nHcfs5LS1tQUdHR309OILL+qBBx/MPyQSCQEUUAwFFEMxlBqlTtb3FMv6N2V9TzOptLAiBQRQKi65\r\n6KLgwIMOCvq19nODcqDXXXtNF6DUKIbSQ9b3FGu1k0mlhU8n1AiGYAgg1Ah1jj3q6ODW2yew05gx\r\nDnVS6ZQ8OPFh96BxBwQdHR187KhjjhbqzPD9AFBAMRRQDKVGqZP1PeULdMKPfxCyopBPcdOtNznN\r\nToTmhiZIJomHSqGcd6JRh2W5PMvzOWd5Z85Zns9Hli9b6nTm85FSoRgr5YsNXaViPF8oREvFYiIo\r\nFhvKQTlRLpUaSuVyvFgoJMvlcmOpWEqWisXmQlBs1FLQGJRKyXJQagyDIFkKtNEJwqRCAkiIEBNo\r\nQDWqGkQjiOsqrgOOE6rjoOJIBeAAjgqgiICDIKGAw/8jqrgqKKCqKIIGIAFEXKVcDimiFEQIHAmD\r\nsKsoyPJoJNKRaO0zc2BLn+l9+7dObR0w4O8tbYNnNLW2tbe0DVref+DI4tBhI9hik/UQkZAvWNb3\r\nNJNKC4YCgqGAUHX7hAnlc849N0bV3vvs406eNFkvuvSSSCKRoN4Lzz8fvvHXN8LDjzzCbWlpEapK\r\npZKefcaZhUcenhhiKIZiKIZSJ+t7irU6E3o4/oQT3B+cemr8D08+WTr5pJPKGEKdzbfY3DngoIPc\r\nzTff3AlDJdSQeXPn8uD9D4S/eewxveryK8Kfn/9Llx6OPuYYd+SIkTJ02FC+uvHGDj089+xzpWnT\r\npikrUupkfU/5Hyf8G0aNGjWgUCjsXyqVvhGLxdZsbW3to6pOW1vbkpEjRxZ83+87c+ZMufjii59s\r\naGgotre3f/DGG2+87vv+gvnz5y/wPK9j5syZZSxrFZFJpYUawRBAMOTx3/22YfR667n0MGfOHD1g\r\n3/3K8+fPV0C+e+KJzg9//COXOq+/9lp48AEHBnSnxxx3rHP2T38aoWrWzJnhTtvvUMBQQDEUQ6lR\r\n6mR9T7GsL1AmlRZqhBqh6sJLLnb3HzcuPv6WW/KXXXxJiKHUKD1kfU+xViuZVFr4dEJ3Qo0AgiGA\r\n7Lrbbk6fvn2lXC7RPr+dyZMm8Q/jJ9zmjhk71qGHmTNm6EHjDiiLCL/7w5ORln79hKp777mneM6Z\r\nZ5UxFFAMxVB6yPqesoq655ZbnXhjkmKhwNJyCe0qOou78hQLXY4ESgGlWCo4TjlwyuXA6SwVIsVS\r\nyaEcRPLFQqTY1RUp5vMNXYWuRKlQbCyWCslyodinXCo1l0ulpnK51KdcLjcHQdCsQdCsGjYShk0a\r\nhk0ShI1K2KhKXJAoqlFHNeIoESASoC6o4yoSUREBHBBE1BFBkVAc0dCRosSinU40sjAZb5jX3Nzo\r\n92vp835T3z7vt/Tr57UOGPpR3yFDFw8YPKyrX8vAsLlva7jVll8J+S/IpNJCjWAIIIBgyNPPPdsw\r\nYuRIh0/x4gsvhEcedngJQ8/+6U/dAw46MNLQ0MC555xTeOC++0NAMRRDqVHqZH1PsVYrmVRa6E4w\r\nhIrjv/td9wc//GHcjbhCxYP3318847TTAwyh4robb4jstvvuET7BX19/PTzhO8eHF116ibPTmDEO\r\nn9O0adPKe+22exFQQDEUQ6nK+p5iIfwbRowY0Xf06NHDN9tss5HrrbfeVx599NFDfd8fuNFGGy2Z\r\nPXt23yVLlsSKxWIpDMNg4MCBi1taWqavt956dy9evDjred7cKVOmzH/vvffKWNYqIJNKC90JhgAC\r\nCIY8/Ogjsa989asuPcyaNUsP3G//cnt7O21tbTw96bloIpGg3rRp0/RHp/ygPG3aNCp0/Q02kDt/\r\ndVekpV8/oerx3/ym9IOTv18GFFAMxVAMpYes7ymW9QXLpNJCd0J3QndKd0oPWd9TrNVKJpUWVk5Y\r\nOcEQDMGQ837x88g39t030tzcLNRZuHChTrj1tvCmG24IARk/4TZnzNixDj3Mnj1bRYShQ4cKVcuX\r\nL9evbrBhF6CAAoqhGEoPWd9T/kecevHPnKHRZvrHkzQ3N+I0J+jftz9z29sR16GkZadYKBIUu5xC\r\nZ84p5ArOsnyn09WZj+Tzy2OFrkKsWCw2FAqFRKlQaCyUS03lcrklLAdNQRAkwyBIhkG5sRSUG8ul\r\ncnO5VO5TLpcawyBIahBGVTUiguM6Tug4bpcbjXZFG2KdiXjDwqbmppn9Wvp+2NqvdXZLv/7z+rS0\r\nLmrs07erqbmlGGtuLjckG9lj7E4h/2WZVFqoEQzBEEAAOfe88yJHHn1UlE/w8ksvhYcfcmgJQzEU\r\nQzEUUfHpwQAAgABJREFUQzGUGqVO1vcUa7WTSaWFGsEQKvYbt79z0cWXJNyIK9S58/Y7Sr8477wA\r\nkHsfeCCy+Rabu3yGmTNm6IH7jwsuuvQSZ6cxYxw+w9QpU4K999izACiGAoqh1Mn6nmIh/Bva2toa\r\nS6XS2JaWluF77713NJvNHjhz5syRTzzxxDOJRKL17LPPHv3666837r777h95ntf83nvvOfvuu+9d\r\njY2Nr06ZMiX72muveW+88UYBy+rlMqm00J1gCIYAAgiG3PvAA9HNt9jcpYeZM2bogfuPCzo6OvRH\r\np/3EOf6733VZiTffeCPM5/NssummTkNDA/9QKpV0j6/v2vXhhx8qoBiKoRhKD1nfUyzrPySTSgsr\r\nEj6b0kPW9xRrtZJJpYUVCSsSuhMMwZBHH/9NbIMNN3T5FDNnzNAD9ts/WLBggd56+wR3pzFjHD7D\r\nrbeML150wQVlQDEUUGqUqqzvKdZnuumaa51oogFJxKAQEHOErnzeyReLFIolJygXHQ0CR8HRMIyE\r\nYeCEgUaKxa54oVCIlkrFRLlcjpeDsquqEVccItFIGI3GSvF4oiveEC8kkol8c3OfXEtLv66mPi1l\r\nN5EMo9GGUMtlyoU8u+21R8iXKJNKCzWCIYAAgiFvvPN2vLm5WejhlZdfDg47+JAyoNQooBiKodQo\r\nNUqdrO8p1mopk0oLNYIhVOz9jW84l15xeSISiQg93HzjTWXVkONPOCHC5zR16lTde/c9yqedcYZz\r\nxFFHuolEgp6KxSJ/+dOfS9878cQShgKKoRhKVdb3FOv/Ef4N/fv3b+zs7Px2GIb7JZPJpn79+jW7\r\nruuMGTNmyiabbMIf//jHtaZMmZK85557nmptbY0FQTDrzYqZM2fOnTJlyuzXXnttxhtvvFHAsnqp\r\nTCotrJxgCCAYAgggQ4cOlQcnPhwbNHiwsBIzfF8P3H9csGDBAsZPuM0ZM3asw+f04AMPFM/4yWll\r\nQDEUQzGUOlnfUyzrvyCTSgsrJ6xIWYms7ynWaiWTSgsrEmqEFQk1giGPPv6b2AYbbujyOcycMUMP\r\n3H9c0NHRoRPuvMPdYccdHT7Ba6++Vj7kwAOLgGIohmIoVVnfU6wvzHW3jHciEYdEYyP94s105XN0\r\nlbpwXIdysegUNSAWiZCMxIjHYoSu4ERitDQ2hbGGBpxYA/FokqWLF7LdjtuG9DKZVFqoEQzBEEAA\r\nOe+Xv4gcfsQRUeq89uprwSEHHlgGFEMxFEMxFEOpUXrI+p5irZYyqbTQnWAIIFQcdvjh7jk/O7ch\r\nGo0KPXR1dRGPx/mHfD7PM089HaoqW269lfTv31/o4fJLLwtuvP76cODAgRx/wgmy6WabOk1NzRQK\r\nBaZOnRJce/XVZe9DTzEUUAzFUOpkfU+x/h/h35BIJBra2tr6AGs3NjZu29nZuXe5XG5zXZd4PN4Q\r\njUYjhUKhNGrUqFlrr712x9ChQ98Jw/Dpjo6OBR9++OGCKVOmdLz33ntlLKuXyaTSwicTDMEQDAEE\r\nkMd//7vY6NGjHT6F7/l60LhxwYIFC7j19gnOTmPGOHyGBx94oHjGT04rA4qhGIqh1Mn6nmJZ/0WZ\r\nVFr4F2V9T7FWO5lUWuhOqBFqhO4EQ6g47xc/jxx+5JFRepgzZ44OHTpUWIlp06bpXrvtXgb0zrvv\r\njmy73bYOPbz26mvlQw48sIihgGIohlIn63uKZf0TMqm0UCMYAgiGAPLm396JNzU1CVVvvvFGcMB+\r\n+5cwFEMxFEMxlBqlh6zvKdZqK5NKCzWCIRgCCBX77Leve+HFFzfEYjE+yayZM/WA/fYvd3R08A+3\r\n3XG7u+NOOznUWbRwkW6+ySYlDMVQQDEUQwHFUGqUqqzvKdb/z+XfUC6Xg1Kp1AXMGzBgwIfz5s0b\r\nlcvlWg888MALhw8fPnfWrFn9ly5dGl22bBnvvPPO8MmTJ6+dy+Xechxn3kcffZRrb2/PL126NMSy\r\neoFMKi2tLS3S2tIifDKhRjAEEAw566fnRL729a9HqLNgwQJNJpNCnZaWFtl1t13liccf1/vvvS8s\r\nlcqsO3pdSSQSQg/Lly/Xq6+8snjxhRcFgGIohmIodbK+p1jWf9miJYtpbWkR/glZ39NFSxZjrX4y\r\nqbTQnVAjVJx08vfcjTfZxHn9tdcUEEAAAQQQDLni6qtiDQ0NQtVLL74YHnTAgaXrrrkm/NMf/hiO\r\nXm+0DBkyRKjT1tYmWvHKyy/roxMnhlttvTXDhg93qCgWizz0wIPFE77znRKGAoqhGEqdrO8plvVP\r\nam1pEWoEQzAEECpS6TTrr7++S9XgIUOcV195tTxr5kwFFEMxFEOpUXrI+p4uWrIYa/WVSaWF7gRD\r\nMAQQQN6bNo3s9Gy489d2cSORCD3l83mOPOywYObMmdT7zaOP6Ve++lVJp9NCVSKRkKefeiqYP2++\r\nAoqhGAoohmIoNUqdRUsWY9UIX5D+/fs3FQqFHVR10CabbPLsiBEj+v/5z38+YdmyZaOOPPLICzs7\r\nOwe+++67fSORyIuJRGJee3v70vb29sULFiwoY1lfskwqLXwyYUWCIRgCCBV/ffuteJ8+fYSqyZMm\r\nhccceVRw6+0T3J3GjHHoYeaMGXrg/uPKHR0dVOh+4/aXHXbc0Ym4EY1EI7zy8ivB7bfdFgIKKIZi\r\nKIZSJ+t7imV9yTKptPAZsr6nWKutTCot1Ag1QsXxJ5zg/uDUU+OK8vNzf1a459e/DgGhRqjYdbfd\r\nnOtvujFG1eJFi3SzjTcpUSNU3H7Xne72O+zgUGfOnDm6wzbblgCl4s6774706dOHyy+9pDR50uQQ\r\nQwHFUGqUqqzvKZb1L8qk0kKNYAiGAELF2+++m0g2JoWqeXPnhttutXUXhmIohlKj9JD1PcVarWVS\r\naWFFgiGAYAgggAAyduexzjXXXx+Nx+P0dMlFFwW33HSzYihVbW1tvPTaq1HqnHHa6aUH778/wFBA\r\nMRRDMZQapU7W9xSrG+ELkkgkIslkMioifKx///5N7e3tW+bz+X7rrbfepHg87uZyuc4FCxYsUlVy\r\nuZzmcrlyPp8PsawvUSaVFlYkrJxQIxiCISefcop78infj1G1aOEi3XyTTcpUjZ9wmztm7FiHHmbN\r\nmqUH7T+uPH/+fAUUQwHFUEAxFEOpUaqyvqdYlmX1AplUWqgRDKHi+BNOcH9w6qlxN+IKFaVSSc84\r\n7bTioxMfCQGhRv7v+O84Pzn99ChV099/X3f72tdLGEKdhx6Z6H51440d6qyVXqMAKIZiKIYCiqHU\r\nKFVZ31Ms69+QSaWFGqFGAKHqqmuvie61994x6vzivPO67rz9jgBDMZQapU7W9xRrtZdJpYUVCYZg\r\nCCCAYAgggGy3/fZy4y03RxOJBD1dfOGFwfibb1EMpep3f/hDZJ1R6whV55x5VvHee+4JAQUUQzEU\r\nQ6lR6mR9T7FW4PAFyefz5QULFuQ7OjryHR0d+RkzZiwSkb80NjY+5Pv+vGnTps2ZNm3aghkzZhRm\r\nzpxZWLBgQTGfz4dY1pcok0oLKxK6E0AAwRBAMARDqFh39LoOdV5++SWlzreP+2bwzNNPh/QwfPhw\r\nefixRyODhwymSgHFUEAxFEOpUSzLslYtcuL3Toq7EVeoikajcsFFFzXstvvuLiCAAEJFY2OTUKd/\r\n/zYqBBB6OOesswN6OPSwwwRDMRRDAcVQahTL+gJlfU+pUbpTQKk45Xsnl/L5vFIVlANdvGhxiKEY\r\nSo1SJ+t7irXayqTSkkmlJZNKCysSDMEQuhPqTJ40Sb/zrW+X8/k8PZ12xhnut7/zfwIodRxHqLd0\r\n6VIFFFAMxVAMxVBAqZP1PcVaKYf/kHw+X16wYEG+o6Mj39HRkV+wYEG+ooRl9V4CCIYAAgiGAAII\r\nhgCCIRgShiH1li1bpvTwrWOPC5595pmQHoYMGSITH300CiigGAoohmIoNUqdrO8plmVZvUAmlRZq\r\nBEOouvTiiwvlclmpE4vFuPyqK2Njdx4rGAJIdvp06vVr7SffPfFEhxXp1ClTlB6WLF2igGIooIAC\r\niqHUKHWyvqdY1hdPMZQapeLll14qUhGUA732mqu7Hnv00RBQDKVGqZP1PcVa7WRSacmk0pJJpYVP\r\nJqyc0J1QIy88/7x+69jjyvlcjp5OO+MM9zvfPd6har3112ettdcWqorFIr994okQUAzFUEABxVB6\r\nyPqeYn0iB8v6H5VJpYWVE2oEEAwBBBAMAQRDqAiCgHpbb7ONw0p885hjg8mTJoX00NKvnwCKoYBi\r\nKIZiKKDUyfqeYlmW1fsJFXfdcWd41ulnFEqlklKnoaGBa66/Prb9Djs4VL34wgtKDyecdKK7zbbb\r\nCjVKxQYbbkhPv3vityGGAoqhGEqNUifre4plfUGyvqd0pxgKKIbefONN5aVLlwbjx9+Sv+6aawNq\r\nlBqlTtb3FGu1kkmlJZNKC59OAKFGMAQQDAHk0MMOc6669prIZVdcEfne90921l13XT728ksvcdwx\r\nxwb5XI6efnzaae53TzzRAfTKq69yqfP3994LqFEMBZQapU7W9zTre4r1qYR/UiKRcJPJZDSZTEaS\r\nyWQ0mUxGAId/US6XK+VyuXIulyvlcrlyPp8vYVn/BZlUWqgRDMEQKo457lhnu+23dy+64MJg+vvv\r\nKyB0J9TIeb/8hXv4EUdEqHPrLeODiy64IKSH7bbfnjt+dVeUOk/9+S/l//vWt0qAAoqhGIqh9JD1\r\nPcWyLKuXyKTSQneCIYBgCCB77rWXc+kVlzfEYjHq5fN5vvOtb5dfeP55peK2O253d9xpJ4c6+Xye\r\ne+6+O7jw/AsCKgYOGsTERx+NDh4yWKjKZrPBrjvvUgQUUAzFUAylh6zvKZb1H5BJpYXuhO6EGmVF\r\nSp2s7ynWaiWTSgufTFiRUCMYAsgPf/wj94ijjoo2NzcLPUydOlV/8bPzgldefpnNt9hCJtxxu5tI\r\nJulp8aJF2tKvn1DnmCOP7Jo8aXIIKIZiKIZSJ+t7ivW5CP+k/v37JwcMGNBvwIAB/dra2lra2tr6\r\nADH+RR0dHUs7OjoWt7e3L25vb1+0YMGCRVjWf1gmlRa6EwwBhIqjjjnaPfPssxsikYhQ8e7f/hZc\r\n8MvzSy+/9BI9CFUbbLihPPr4b2L0cP+99wVnnXFGiKHf2Gcf54KLL4rE43H+YdmyZbrfN75R8D70\r\nQgwFFEMxlDpZ31Msy7J6kUwqLXQnGIIhgACCIbt87WvOTeNvidFDPp/nW8ceV375pZd0nVHryMOP\r\nPhpJJBL01NXVxexZs8LMWms59HDZxZcUbrrxxgBQDMVQDKWHrO8plvUfkkmlhRUJn03pIet7irVa\r\nyaTSwsoJKxJqhBoB5LEnHo+tv8EGLp/h4gsvDMbffItuseWW3HbH7ZFEIsGnee7ZZ0vHHX1MCUMB\r\nxVAMpU7W9xTrcxP+SSNGjGhJp9NDUqnU4FQqNWjkyJEDgDj/ohkzZnT4vj/f9/25nud9NHPmzDlY\r\n1n9YJpUWagRDMOToY49xzzjrrIZIJCL08NfXXw8u+OX5wZtvvKF0J1T8/o9/iK69zjpCDwsXLtQZ\r\nvq8DBg6UYcOGCT1cfOGFhfE33xJgKKAYiqHUyfqeYlmW1UtkUmlh5QRDMAQQQACh4t4H7o9uvsUW\r\nLiuRz+X45rHHlV95+WUOOuRgueCii1w+p8mTJpWOOfKoEqAYiqEYSp2s7ymW9V+QSaWFlRNWpKxE\r\n1vcUa7WTSaWF7oTuhBUJhmDIvQ88EN18i80jfE6XXHRRcMtNN4dbbb21jJ9wWySRSLAyU959N/jG\r\nnnsVMBRQDMVQ6mR9T7H+KcI/aeTIkS2qunVjY+PowYMH9xs0aFCL67ox/kXz5s1bMnTo0Oc8z5vr\r\n+/6cGTNmzMGy/sMyqbRQIxgCyHHf+pbzk9NPi0ciEeFTvPzSS+FDDz4YPPLwRKXO6NGj5YGJD0cT\r\niQSf13333Fs8+8wzyxgKKIZiKHWyvqdYlmX1AplUWvhkQo0AgiGAAHL7XXdGt99hB5dPkc/lOO6Y\r\nY4NXX3lFDz70EDn7pz91E4kEn+avr79ePmjcAUVAMRRDMZQ6Wd9TLOu/KJNKC/+irO8p1monk0oL\r\n3Qk1QndCd4Ih3/z2t50zzjqzgTpdXV3MmjlTW/v3p7W1VViJIw49rPzSiy/qdttvx03jx0fj8Tj1\r\nprz7bvCNPfcqYCigGIqh1Mn6nmL904R/0ogRI1oWLlx4ahiGX4tVxOPxBqeCf1FXV1dxzz33PMv3\r\n/bme5300c+bMOVjWf1gmlRZqBEMA+eUFF0QOOezQBj6n9//+d73+2uuCJx5/XKnaZttt5eZbx0cS\r\niQSf5b577i2efeaZZQzFUEAxlDpZ31Msy7K+ZJlUWvh0Qo1gCCAYcviRR7rn/eLnMepMmzZNU6mU\r\nJBIJ6uVzOb513DfLL7/0kra1tXHZlVe4222/vUMPy5cv1xuvv7548403BYBiKIZiKHWyvqdY1pck\r\nk0oL/4Ss7ynWaimTSgs1Qo1Q8f0f/MDdY689I7vuvEsRQ+hOqHjyT3+MrbX22i5VH330kY7bd7/S\r\n/HnzqJDDjzhCTj/rzEgikaDee9Pe0z13261ExU5jxsj1N90YbWhooFgs8vBDDxXPOfOsMoZiKKDU\r\nKFVZ31Osf4nwT+rfv39zLpc7wHGcLeLxeDJRISIR/kX5itGjR9/c3t7e0V6xYMGCdizrPyyTSgs1\r\ngiGAAPLEk7+PrbvuuhGqPvjgg1DDkMxaazl8gvemvafXX3dt8LsnfqtUrLvuulxx9dWRdUatI6zE\r\nsmXL9Pprry3eesv4AEMxFFBqlKqs7ymWZVlfokwqLXwyYUWCIRgCCCC/ffLJ2Kh1RzlU/fX118OD\r\nxh0QbLHllnLb7RMiiWSSevl8nm8f983ySy++qIAOHDSIHXbYQdZae21yuU71PvT0N489FgIKKIZi\r\nKIZSJ+t7imX1AplUWvgUWd9TrNVWJpUWuhMMoeJ73z/ZPel7J8fdiCsffPBB+etjdy5iCDVCxXTv\r\nwzh19tlr79K7f/ubYggV22y7rdx86/hIIpGg3j577V16929/C6nYdbfd5IijjnRuvP6G8gvPPx9i\r\nKIYCSo1SlfU9xfqXCf+kRCIRSyaT8WQymUgmk/FkMhkHXP5FuVyuK5fLdeVyua5cLpf/GJb1H5ZJ\r\npYUawRBAAFlzzTXlt394Mh6NRoWKQqHAmB12LB508EHuUccc47S2tgqfYOHChXrHhNvDG667LgR0\r\nn333dfbYc09Zc62MOOKwaNFCfeftd8Lzzj23DCiGYiiGYihVWd9TLMuyvkSZVFpYkbByQo1gCIYM\r\nHzFCnpn0XJw6e+22e3natGkKyOZbbCET7rjdTSST1Mvn83z3//6vNHnSZAUUQwHFUEAxFEOpUaqy\r\nvqdYlmX1AplUWqgRauTkU05xTzzppLgbcYWqqVOnBnvvvkcRQ6iR6d6HDdRZK71GEUOos+dee8nV\r\n110boc6F519Qum38+BBQDAUUQzEUQzGUOlnfU6x/mWBZ/4MyqbRQIxgCCCCA3HLbbdGxO4+NUPX8\r\n5OfDo484IqDi+BNOcI795nFO//79hU+waOEi/dVddwXXXHVVCCiGYiigGIqhGIqh1Mn6nmJZlvUl\r\nyaTSwoqEGmFFQo1gCBWHH3GEe94vfxGj6u/v/V332HXXMoZQsfkWW8iEO253E8kkPd1w3XXlKy67\r\nPAAUUAwFFEMxlBqlTtb3FMuyrF4gk0oLNYIhVPz+j39oWHuddaL08PZbbwf777NPCUOomu592ECd\r\nY448qjR50iQFhO702ecnR4cNGyZU/e6J35ZPPumkMoYCiqEYiqEYSp2s7ynWv8XhvyiRSLjJZNJN\r\nJpNuMpl0E4mEi2X1Tjrh1lvL1Nl2u22d0aNH87Gbbrgh3HLTzcqvvfqa8gn6tfaTk0/5fuS1N9+I\r\nnn7mmc7w4cOpUEABxVAMxVAMpU7W9xTLsqzeRagRagQQQDAEEAzBkCAMqJdsTFJHqXj1lVf0W8d9\r\ns5zP5+nphJNOiuy2++5CjQKKoRhKjVIn63uKZVlW7ye7f33XYnb69DI9bPSVjdz7H3owCgg1Qg9n\r\nnn12BBC6Uyq68nmlTlehiwoFFFAMBRRQQAHFUOpkfU+x/m0OX5BEIhHv379/vK2tLd7W1hbv379/\r\nPJFICFWJRCLS1tbWt62traWtra2lra2tJZlMNmFZvY9S8dKLL+pbb74ZUOe0M89wqTr+u991Ntt8\r\nM+EztLS0yLf+79vRX99/XxRDMRRDMRRDqZP1PcWyLOtLlEmlhe4EQwDBEEAwBBBAMAQQDKEiCEKh\r\nzvDhw2XUuqOEGgX05Zde0u9869vlfD5PTwsXLlRAAaVGMRRDAaVO1vcUy7KsXiKTSgsrEmpk112+\r\nVpw6ZUpAD5tutpn76/vujQICCBVvvvFGSJ11Rq0jd/zqLhdDAaVi4KBB9G9rE+pMfXdKiKEYCiiG\r\nUqPUyfqeYn0hHL4gyWSyaUBFKpUamEqlBqZSqQFtbW2JCkkkErG2trbWVCo1Mp1Oj0ylUiPb2toG\r\nJ5PJJizrS5D1PaVGqVHqXHTBhWXqbLf99s66667Ld0880fnRaT9x6eGtt94KWYlSqaTXXnV1EVAM\r\nBRRQQAHFUOpkfU+xLMvqXQRDMASQ0aNHyzOTJ8Uvu+KKKIYAAgiGAIIh06ZOUXq46ZZb3La2NqGH\r\nRQsXqohQ7+233g5eefnlEFAMBRRDMZQesr6nWJZl9V7Cysnee+xZfOvNNwN62HKrrZw77747giG3\r\n3zYhpIfttt/e+d0f/hDZbvvthYoNNtyQW24dH2lpaRGqli9frrdPmBAAiqGAYig1Sp2s7ynWF0b4\r\ngowYMSKVTqcHVCQrRFXD9vb2me3t7UuB+IABA4aNHj16zWnTpg0aOHDgrPnz5y/yPG/We++99z6W\r\n9SXIpNJCjWAIIIBgyEOPTIx9deONXapmz56tw4YNE3q49upryldfeWXwla98RU754anulltt5cZi\r\nMUqlkp57zjmFB+67PwQUQzGUGqVO1vcUy7KsXiCTSgs1giEYsu6668rd990bb2lpcahYvny5Pjpx\r\nYvlnPz03oDuhRp59fnJ02LBhQp2ZM2boGaedHrz04otKxV577y3nnnee26+1n1BVLBb55jHHdr34\r\nwgshhgKKoRhKD1nfUyzLsnqRTCotdCcYAgiGAAIIFa+/9WZD3759hR4mPfdceOxRRwdUPPDwQ+4m\r\nm27q8E948P77i2ecdnoZQwHFUGqUOlnfU6wvlPAFGTVq1BoLFy48+dBDD31h8ODB8UQiIfMr2tvb\r\nO0UkPmDAgMEdHR3bPfHEE1sfe+yx13meN3vKlCnT33jjjfewrC9BJpUWagRDMAQQQDbfYgvn3gfu\r\nb+BTXH/tdeUrL788wFAqRqZS/OS009zJkycF991zbwgohmIoNUqdrO8plmVZvUAmlRZqBEMwZPTo\r\n0fKre++Jt7S0OPSwZMkSnTxpUnDR+RcEH330EVVC1RFHHeX87OfnRViJWbNmaWOykX6t/YQe7r3n\r\nnuI5Z55VxlBAMRRDqZP1PcWyLKuXyKTSwsoJNQIIIBgCyP0PPRjddLPNXD7Bs888E37zmGODtrY2\r\nHnpkYmT4iBHC5zB1ypRg7z32LGAooBhKjVIn63uK9YVz+YK0tbX1mz9//snz589P7bbbbovWXHPN\r\n1gEDBvRtaWkZMqzinXfe2emFF17YPggCZ+utt36lvb19ke/7HQsWLFiIZX0JFi1ZTGtLi1AjGAII\r\nIFTMmT2bHXfayRk8eLDDStxw3XXlKy+/PMBQDF2yZAm/++1vg7+98zcFFEMxlBqlTtb3FMuyrF6i\r\ntaVFqBEMoWL9DTZwfnXvPfGWlhaHlYjH47LOOus4hx1xeGSNNdaUt956Szs7O6mSt996i69uvLGk\r\n0mmhhz59+kgikRB6ePWVV8onHv/dMoZSo6xE1vcUy7KsXiCTSktrS4uwckKNYAgggFBxyeWXRXfe\r\nZZcInyKdTstXvvpVue+ee/WJxx8PN91sMxkyZIjwKaZOnRrsvceeBQwFFEOpUepkfU+x/iMcviC5\r\nXK4LWDx//vw1rr766t2DIOiTSqWGbrzxxqmnn356j1deeWULVZV4PL6ko6NjaUdHx5JcLrccy+qd\r\n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\r\nACSfAAAAsCsDc+oAAAAASUVORK5CYII=\r\n--Apple-Mail=_2D0BC83D-022E-4417-A61A-A453B30D6A03\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=image008.png\r\nContent-Type: image/png;\r\n	x-unix-mode=0644;\r\n	name=\"image008.png\"\r\nContent-Id: <image008.png@01DC31E9.D9707880>\r\n\r\n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\r\n--Apple-Mail=_2D0BC83D-022E-4417-A61A-A453B30D6A03\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\r\nContent-Type: image/png;\r\n	name=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\"\r\nContent-Id: <CB596987-D3CC-4C61-B9D3-CE1C1DF1C723>\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGwAAAAYCAYAAAAf1RgaAAAAAXNSR0IArs4c6QAAAIRlWElmTU0A\r\nKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdp\r\nAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAGyg\r\nAwAEAAAAAQAAABgAAAAABrPxEgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5h\r\nZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9\r\nIlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9y\r\nZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6\r\nYWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZm\r\nLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgog\r\nICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAA\r\nC6FJREFUaAXtWnuMVUcZnznPe/fuZYEtDxHCQ1ADBNuuAlKh24dRaqURWFotj5haKAn9SxOaauRi\r\nxEBsMMFSAmnUCDTKWtDioyEm3RLKq6VKC7Rg20VA5Lmwz3vPa8bfN+ecu+fevbugjQQrX5g735n5\r\nvm++13wz5yyc3YKb0gP19a8YTU33+NNmbx0puHjJtGsm+U7beoMxyRsaGrUJE45JxlbclMp/1JXK\r\nsZWM5XLwP6PG6+tzOgVr8tzN0wWTjRq3hojAw6TU+EfdGf9T9uVyGsutQNC4nDpn8zz0m7lmWEwE\r\njm6mbd/r3MCnzNk6DlEbyRFCqfNbAbyBEeaBlJzrkula1mOFQ683fvMcLT917tblGF8dbTgmhe8a\r\nZsbyvY4NhsbEdwy7ZrHntDHOtBuo7q2lGLyvGSnmOe2/fH3S3//EGhGsOZuf03RrKRMC/3wBL30f\r\n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\r\n--Apple-Mail=_2D0BC83D-022E-4417-A61A-A453B30D6A03--','Wanted you both in on the loop of this, this is a need for the bank line closing and the landlord. \r\n\r\n\r\n\r\n> Begin forwarded message:\r\n> \r\n> From: Shyla Lankford <slankford@lipscombinsurance.com>\r\n> Subject: Property Questions\r\n> Date: September 30, 2025 at 10:09:11 AM EDT\r\n> To: Nathan Staron <nathan@lithiumbatterycompany.com>, Brian Stufflebean <brian@mavrix.one>, Jarrett Brownfield <jarrett@lithiumbatterycompany.com>, Jarrett <jarrett@mavrix.one>, \"jarrett@marvix.one\" <jarrett@marvix.one>\r\n> Cc: Paxton Kelso <pkelso@lipscombinsurance.com>\r\n> \r\n> Nathan,\r\n>  \r\n> We are working with the markets to get your property coverage placed.  They are asking for some clarification on a few items.  Below are the limits that we are working on placing and the questions they are asking.  Please advised.\r\n>  \r\n> Limits\r\n>                 Business Personal Property (BPP):  $3,000,000\r\n>                 Tenants Improvements & Betterments: $25,000\r\n>                 Business Income/Interruption:  $10,000,000\r\n>  \r\n> Questions\r\n> Please confirm if the BPP limit above includes stock or is just machinery. If it includes both, please break down the values between the two.\r\n> Have you started any operations in the 3900 Coachman location?  If so, what processing are currently operational?\r\n> Details on your production process?\r\n> Amount of raw/finished material warehoused on site?\r\n> Protections in place to prevent/mitigate loss? Especially losses due to fire/explosion.\r\n> Do you have any Business Interruption redundancies in place?\r\n> Are you using any specialized manufacturing equipment? If yes, what is the wait time to replace this equipment?\r\n> The 7 months of coverage that you had for the S West Shore location, was any manufacturing of batteries completed at this location?\r\n> Do you store completed batteries on site? If so, how long for and are they fully charged?\r\n> Any damage to the building from recent storms.\r\n>  \r\n> The underwriters are also requesting a business income worksheet.  If you could answer the questions above first and then work on the worksheet that would be best.  This is the link to complete the worksheet:https://chubbweb.chubb.com/chubbtraining/myBI.html\r\n>  \r\n>  \r\n>  \r\n> Enjoyed your service today? Please feel free to leave a Google review 😊\r\n> https://g.page/r/CTny7Gwm4BDNEB0/review\r\n>  \r\n>  \r\n￼   CA License #OC69197\r\n> ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄\r\n> Shyla Lankford, CRIS, NcAM\r\n>  <https://www.irmi.com/certifications/construction-risk-insurance-specialist>￼Chief Operating Officer / Partner\r\n> CA License #4270591                            \r\n>    D:   214.420.5206\r\n>    C:   972.984.8677\r\n>    E:   slankford@lipscombinsurance.com <mailto:slankford@lipscombinsurance.com>\r\n>  \r\n> 5429 Lyndon B Johnson FWY, STE 450   |   Dallas, TX 75240\r\n>  \r\n>        <http://www.linkedin.com/company/lipscomb-&-cathey/>￼   <http://www.facebook.com/lipscombinsurance>￼    <https://clientportal.vertafore.com/>￼     <https://app.agencyzoom.com/integration/email/email-setting/scheduler-index?config_id=910c511e-3da6-457b-ab0b-3ec40da73ace>￼    <x-msg://2/paymypremiums.com/Lipscomb>￼\r\n> ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄\r\n\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n￼\r\n\r\n\r\nbrian@mavrix.one <mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-09-30 14:58:11','2025-12-09 19:29:23','2025-12-09 19:29:23','2025-12-09 19:29:23',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(818,4,'<CAJO9__ZZJ-OgMLAOyt5E6gqJCfE2Pyk38q4G2bq-V8wpPjAAnQ@mail.gmail.com>',NULL,NULL,'Re: Forge Nano Cells for our Products','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Good afternoon gentlemen,</div><div><br></div><div>If you are comfortable with the cell demand schedule, I&#39;d like to share it with Forge Nano and keep that ball rolling.  Let me know when you have a moment.</div><div><br></div><div>Thank you, </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Sep 29, 2025 at 9:30 AM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Hello Brian and Rick,</div><div><br></div><div>On Friday, I spoke with Elias about the most suitable Forge Nano cells for our products. After reviewing the battery data sheets, he identified the following cells as the most appropriate for our needs:</div><div><br></div><div>18650: SC3-18-2</div><div>21700: SC2-21-3</div><div><br></div><div>Elias confirmed that these two battery types should meet the requirements for most, if not all, of our future robotics projects.</div><div><br></div><div>I have attached a prospective cell demand schedule for your review. Please let me know if it aligns with your expectations. For your reference, the data sheets for both batteries are also attached.</div><div><br></div><div>Best regards, </div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div></div>\r\n</blockquote></div>','Good afternoon gentlemen,\r\n\r\nIf you are comfortable with the cell demand schedule, I\'d like to share it\r\nwith Forge Nano and keep that ball rolling.  Let me know when you have a\r\nmoment.\r\n\r\nThank you,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Mon, Sep 29, 2025 at 9:30 AM Jordan Wroblewski <\r\njordan@lithiumbatterycompany.com> wrote:\r\n\r\n> Hello Brian and Rick,\r\n>\r\n> On Friday, I spoke with Elias about the most suitable Forge Nano cells for\r\n> our products. After reviewing the battery data sheets, he identified the\r\n> following cells as the most appropriate for our needs:\r\n>\r\n> 18650: SC3-18-2\r\n> 21700: SC2-21-3\r\n>\r\n> Elias confirmed that these two battery types should meet the requirements\r\n> for most, if not all, of our future robotics projects.\r\n>\r\n> I have attached a prospective cell demand schedule for your review. Please\r\n> let me know if it aligns with your expectations. For your reference, the\r\n> data sheets for both batteries are also attached.\r\n>\r\n> Best regards,\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company <http://lithiumbatterycompany.com>\r\n>',0,0,0,0,0,0,'2025-09-30 15:12:58','2025-12-09 19:29:23','2025-12-09 19:29:23','2025-12-09 19:29:23',NULL,NULL,NULL),
(819,4,'<CAJO9__ZnbzSGjHwOsbN6-V20033BDLZehKNw3ScvMXUp18aWuw@mail.gmail.com>',NULL,NULL,'Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div dir=\"ltr\"><div>Hi James,</div><div><br></div><div><div><div>I have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.</div></div><div><br></div></div><div>Looking forward to our discussion and seeing your deck of prospective projects.  </div><div><br></div><div>Best, </div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Sep 26, 2025 at 4:59 PM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"msg7859046138643783182\">\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI won&#39;t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products. </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI&#39;ll send to you as soon as I can next week.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"m_7859046138643783182appendonsend\"></div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<b>From:</b> James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, September 24, 2025 10:49 AM<br>\r\n<b>To:</b> Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI also have a verbal matter we can discuss soon. Once I&#39;ve got the deck ready I&#39;ll find time for a short call with you.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nTalk soon.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJames</div>\r\n<div id=\"m_7859046138643783182x_appendonsend\"></div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div id=\"m_7859046138643783182x_divRplyFwdMsg\">\r\n<div style=\"direction:ltr\"><span style=\"font-family:Calibri,sans-serif;font-size:11pt;color:black\"><b>From:</b> Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, September 24, 2025 10:07 AM<br>\r\n<b>To:</b> James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</span>\r\n</div>\r\n<div style=\"direction:ltr\"> </div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for the follow up.  You were on my list to contact today!  </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Would that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I will let you know if I will be able to make it up to Detroit for The Battery Show.  </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to seeing the deck.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">All the best, </div>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a style=\"color:blue;margin:0px\" id=\"m_7859046138643783182OWA90d54842-2faf-de90-7a8d-72df2faa57c2\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_7859046138643783182OWA0e5fa4bd-9870-58c4-8622-78d4cf24a810\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 24, 2025 at 11:59 AM James Trevey &lt;<a id=\"m_7859046138643783182OWAb7c381dc-96e5-45d0-b93e-e2aa9a01935f\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nHey Jordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nThank you for the quick follow up. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we&#39;ve decided we&#39;d like to provide information on additional products to you which are typically not on the menu but I have details\r\n to sort first. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nRegarding shows, happy to discuss when ready. We&#39;ll be at The Battery Show in 2 weeks, which I think you should consider attending and I&#39;d be happy to connect while there. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJames</div>\r\n<div id=\"m_7859046138643783182x_x_m_-6814561645313625911appendonsend\"></div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div id=\"m_7859046138643783182x_x_m_-6814561645313625911divRplyFwdMsg\">\r\n<div style=\"direction:ltr\"><span style=\"font-family:Calibri,sans-serif;font-size:11pt;color:black\"><b>From:</b> Jordan Wroblewski &lt;<a id=\"m_7859046138643783182OWAb0d22678-bda4-9932-d0a1-907e851cab2c\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Thursday, September 18, 2025 11:03 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_7859046138643783182OWAe81f39b0-ec24-b743-ca24-424e13107033\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a id=\"m_7859046138643783182OWA96c03181-9c79-378c-c150-ff2be9067492\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_7859046138643783182OWA2cb5ce13-d9cd-8a95-6b1c-85d355dafacd\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</span>\r\n</div>\r\n<div style=\"direction:ltr\"> </div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information\r\n to optimize our collaboration and planning:<br>\r\n<br>\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.<br>\r\n<br>\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.<br>\r\n<br>\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.<br>\r\n<br>\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.<br>\r\n<br>\r\nClarify your minimum order quantities and expected pricing for each product line.<br>\r\n<br>\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.<br>\r\n<br>\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted\r\n commercial timelines, and expected pricing.<br>\r\n<br>\r\nAdditionally, for reference, these are LBC’s most popular cells we&#39;ve made module and packs for:<br>\r\n<br>\r\n18650:<br>\r\n<br>\r\nNMC: TNL-ITR18650-2600P<br>\r\n<br>\r\nLFP: SW18650-26HPA<br>\r\n<br>\r\nLFP: IFR18650-2000mAh<br>\r\n<br>\r\n21700:<br>\r\n<br>\r\nNMC: INR21700-50S<br>\r\n<br>\r\nNMC: INR21700-4000<br>\r\n<br>\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">In terms of the shows you mentioned, we are getting our schedules aligned so we can attend.  What&#39;s the &quot;secret meeting&quot; in Nov? <br>\r\n<br>\r\nWe look forward to your prompt response so we can efficiently move to the next stages.\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Talk soon, </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a style=\"color:blue;margin:0px\" id=\"m_7859046138643783182OWAa894c5d9-0741-6243-3e0e-449171223bec\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_7859046138643783182OWAc8a757c1-67b5-a167-3793-f15be7380064\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 17, 2025 at 7:00 PM James Trevey &lt;<a id=\"m_7859046138643783182OWA13ecdc83-a950-da4e-3b8e-d04e2eb16671\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nThanks for moving quickly here. I got bogged down today but better late than never. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nAttached you&#39;ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won&#39;t tell us the application)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell has a 100% US supply chain already</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nmillions</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nmillions </u>next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nthousands</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nmillions</u> next year by our partner in the EU. As we show adoption, we&#39;ll expand our factory to build these</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nthousands</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n</ul>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI will check with my people on 301 asap.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI look forward to our next communication.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJames</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:black\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:black\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a id=\"m_7859046138643783182OWA71ed3287-c884-92d5-1caa-92b1f1d318fa\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, September 17, 2025 7:56 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_7859046138643783182OWA6cd87ac5-84e9-6287-add8-4d889a10f57e\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;; Daniel &lt;<a id=\"m_7859046138643783182OWA9ff34847-3c2d-d41b-7b1a-a902aba2b15b\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_7859046138643783182OWAe23dbbcf-6954-539a-4659-57f697029434\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Gentlemen,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">It was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I&#39;ve outlined the key action items below:</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<ul style=\"direction:ltr\">\r\n<li style=\"direction:ltr\">James to send the cell specification sheets as soon as possible.</li><li style=\"direction:ltr\">LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.</li><li style=\"direction:ltr\">James to send their term sheet template for throughput contracts.</li><li style=\"direction:ltr\">We should discuss 301 exclusion support for manufacturing equipment.</li></ul>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I look forward to our next conversation. </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a style=\"color:blue;margin:0px\" id=\"m_7859046138643783182OWA57ab9852-a4df-04bc-6d07-5846e7a46499\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_7859046138643783182OWA01db43b7-0ffe-3df6-52fa-0845c64c7cef\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n\r\n</div></blockquote></div></div>','Hi James,\r\n\r\nI have attached a prospective cell demand schedule (subject to change) but\r\ntwo of your battery types should meet the requirements for some of our\r\nfuture projects.\r\n\r\nLooking forward to our discussion and seeing your deck of prospective\r\nprojects.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Fri, Sep 26, 2025 at 4:59 PM James Trevey <jtrevey@forgenano.com> wrote:\r\n\r\n> Jordan,\r\n>\r\n> I won\'t be able to send the deck today. Still waiting on a few spec sheets\r\n> approval and validation of production capability for a few products.\r\n>\r\n> I\'ll send to you as soon as I can next week.\r\n>\r\n> James\r\n>\r\n>\r\n>\r\n>\r\n> ------------------------------\r\n> *From:* James Trevey <jtrevey@forgenano.com>\r\n> *Sent:* Wednesday, September 24, 2025 10:49 AM\r\n> *To:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n> Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Jordan,\r\n>\r\n> Unfortunately, there is not a large prismatic on our list. I could\r\n> potentially license a design to make one, but it would take a lot of\r\n> coordinating.\r\n>\r\n> It would be super helpful if you are able to compile a deck for us which\r\n> has your prospective cell demand schedule now and for the next few years,\r\n> as well as what your qualification schedule looks like (maybe program\r\n> based?). Maybe by cell type?\r\n>\r\n> I also have a verbal matter we can discuss soon. Once I\'ve got the deck\r\n> ready I\'ll find time for a short call with you.\r\n>\r\n> Talk soon.\r\n>\r\n> James\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Wednesday, September 24, 2025 10:07 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n> Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Hi James,\r\n>\r\n> Thank you for the follow up.  You were on my list to contact today!\r\n>\r\n> Would that additional product list include a prismatic cell? I have a\r\n> client who needs 150MWh a year and they want a domestic 314Ah cell...\r\n>\r\n> I will let you know if I will be able to make it up to Detroit for The\r\n> Battery Show.\r\n>\r\n> Looking forward to seeing the deck.\r\n>\r\n> All the best,\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&typo=1>\r\n>\r\n>\r\n> On Wed, Sep 24, 2025 at 11:59 AM James Trevey <jtrevey@forgenano.com>\r\n> wrote:\r\n>\r\n> Hey Jordan,\r\n>\r\n> Thank you for the quick follow up.\r\n>\r\n> I am working on a compiled deck for you to address the below requests and\r\n> aiming for end of this week. After speaking with my team, we\'ve decided\r\n> we\'d like to provide information on additional products to you which are\r\n> typically not on the menu but I have details to sort first.\r\n>\r\n> Regarding shows, happy to discuss when ready. We\'ll be at The Battery Show\r\n> in 2 weeks, which I think you should consider attending and I\'d be happy to\r\n> connect while there.\r\n>\r\n> James\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Thursday, September 18, 2025 11:03 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n> Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Hi James,\r\n>\r\n>\r\n> Thank you for continuing discussions regarding our strategic partnership.\r\n> As we prepare for module and pack production to support your battery cell\r\n> needs, we would appreciate your assistance in providing several key pieces\r\n> of information to optimize our collaboration and planning:\r\n>\r\n> Please share detailed volume forecasts for each cell type (e.g., 18650,\r\n> 21700) you expect to require over the next 1–5 years, broken out by project\r\n> or customer segment where feasible.\r\n>\r\n> Indicate your anticipated ramp-up schedule for sample, engineering, and\r\n> production volumes to help us align our development and manufacturing\r\n> timelines.\r\n>\r\n> Identify any major offtake agreements, anchor customers, or significant\r\n> opportunities in your commercial pipeline that could impact forecasted\r\n> demand for modules or packs.\r\n>\r\n> Outline target applications (energy storage, drones, EVs, DOD, etc.) and\r\n> specify any technical or certification requirements for modules/packs\r\n> related to these segments.\r\n>\r\n> Clarify your minimum order quantities and expected pricing for each\r\n> product line.\r\n>\r\n> Please also provide information about any flexibility in volume\r\n> commitments that may be necessary in case project requirements or customer\r\n> needs adjust mid-term.\r\n>\r\n> Importantly, we would like to request information on any current or\r\n> forthcoming cells with a minimum continuous discharge rating of 15C or\r\n> higher. For these cells, please provide specifications, target\r\n> applications, anticipated volume requirements, forecasted commercial\r\n> timelines, and expected pricing.\r\n>\r\n> Additionally, for reference, these are LBC’s most popular cells we\'ve made\r\n> module and packs for:\r\n>\r\n> 18650:\r\n>\r\n> NMC: TNL-ITR18650-2600P\r\n>\r\n> LFP: SW18650-26HPA\r\n>\r\n> LFP: IFR18650-2000mAh\r\n>\r\n> 21700:\r\n>\r\n> NMC: INR21700-50S\r\n>\r\n> NMC: INR21700-4000\r\n>\r\n> Providing this information will enable LBC to ensure maximum alignment,\r\n> timely scale-up, and the most competitive solutions to support your growth\r\n> across all high-value sectors.\r\n>\r\n> In terms of the shows you mentioned, we are getting our schedules aligned\r\n> so we can attend.  What\'s the \"secret meeting\" in Nov?\r\n>\r\n> We look forward to your prompt response so we can efficiently move to the\r\n> next stages.\r\n>\r\n>\r\n> Talk soon,\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&typo=1>\r\n>\r\n>\r\n> On Wed, Sep 17, 2025 at 7:00 PM James Trevey <jtrevey@forgenano.com>\r\n> wrote:\r\n>\r\n> Jordan,\r\n>\r\n> Thanks for moving quickly here. I got bogged down today but better late\r\n> than never.\r\n>\r\n> Attached you\'ll find data sheets for all (5) of our products, including\r\n> both 18650 and 21700. Below is a quick summary:\r\n>\r\n>\r\n>    - SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation\r\n>    (they won\'t tell us the application)\r\n>    - This cell has a 100% US supply chain already\r\n>       - This cell can be made in the * millions* next year by our partner\r\n>       in the EU, until our factory is online in 2027\r\n>       - SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse\r\n>    engineered from MIL-PRF-32383)\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the * millions *next year by our partner\r\n>       in the EU, until our factory is online in 2027\r\n>       - SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the * thousands* next year by our\r\n>       partner in the EU, until our factory is online in 2027\r\n>       - SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum\r\n>    case and tabless design, super lightweight)\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the * millions* next year by our partner\r\n>       in the EU. As we show adoption, we\'ll expand our factory to build these\r\n>       - SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse\r\n>    engineered from MIL-PRF-32565)\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the * thousands* next year by our\r\n>       partner in the EU, until our factory is online in 2027\r\n>\r\n>\r\n> We can also get 80mmx300mm pouch cells made by our EU partner, if needed.\r\n>\r\n> Regarding the term sheet, please see the attached template that I put\r\n> together but needs input from you all.\r\n>\r\n> Maybe we line up another discussion for next week to continue our\r\n> alignment path? Also, are any of you planning to attend The Battery Show in\r\n> Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores\r\n> in Nashville? in October? Or the secret meeting on November 5th in DC?\r\n>\r\n> I will check with my people on 301 asap.\r\n>\r\n> I look forward to our next communication.\r\n>\r\n> James\r\n>\r\n>\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Wednesday, September 17, 2025 7:56 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>; Daniel <\r\n> dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan\r\n> Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Gentlemen,\r\n>\r\n> It was a pleasure connecting with you yesterday. I am very excited about\r\n> the potential for a partnership between our companies. To maintain the\r\n> momentum from our discussion, I\'ve outlined the key action items below:\r\n>\r\n>\r\n>    - James to send the cell specification sheets as soon as possible.\r\n>    - LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for\r\n>    benchmarking purposes.\r\n>    - James to send their term sheet template for throughput contracts.\r\n>    - We should discuss 301 exclusion support for manufacturing equipment.\r\n>\r\n>\r\n> I look forward to our next conversation.\r\n>\r\n> Best,\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&typo=1>\r\n>\r\n>',0,0,0,0,0,0,'2025-09-30 20:31:58','2025-12-09 19:29:24','2025-12-09 19:29:24','2025-12-09 19:29:24',NULL,NULL,NULL),
(820,4,'<dcTiHQYZa9F-sJpmnHCAvurFG4QaChIfVlwo8uItrhymW9jE5PRCsENs0dlxa1yyBHgTw_jpXpzW94ZvelcIDHkYHIAwWEzIGDGfIeepjbE=@proton.me>',NULL,NULL,'Fw: Re: Mavrix1 NDA','mavrix1@proton.me','mavrix1','<div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div>\r\n<div style=\"font-family: Arial, sans-serif; font-size: 14px;\" class=\"protonmail_signature_block protonmail_signature_block-empty\">\r\n    <div class=\"protonmail_signature_block-user protonmail_signature_block-empty\">\r\n        \r\n            </div>\r\n    \r\n            <div class=\"protonmail_signature_block-proton protonmail_signature_block-empty\">\r\n        \r\n            </div>\r\n</div>\r\n<div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div><div class=\"protonmail_quote\">\r\n        ------- Forwarded Message -------<br>\r\n        From: SendtheFox@proton.me &lt;SendtheFox@proton.me&gt;<br>\r\n        Date: On Tuesday, September 23rd, 2025 at 9:39 AM<br>\r\n        Subject: Re: Mavrix1 NDA<br>\r\n        To: mavrix1 &lt;mavrix1@proton.me&gt;<br>\r\n        <br>\r\n        <blockquote class=\"protonmail_quote\" type=\"cite\">\r\n            <div style=\"font-family: Arial, sans-serif; font-size: 14px;\">Richard,</div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\">We can progress once you return this signed to me, as well as mine, signed and returned.</div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\">Respectfully,</div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\">Smith, Michael</div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div>\r\n<div style=\"font-family: Arial, sans-serif; font-size: 14px;\" class=\"protonmail_signature_block\">\r\n    <div class=\"protonmail_signature_block-user protonmail_signature_block-empty\">\r\n        \r\n            </div>\r\n    \r\n            <div class=\"protonmail_signature_block-proton\">\r\n        Sent with <a href=\"https://proton.me/mail/home\" target=\"_blank\" rel=\"noreferrer nofollow noopener\">Proton Mail</a> secure email.\r\n    </div>\r\n</div>\r\n<div style=\"font-family: Arial, sans-serif; font-size: 14px;\"><br></div><div class=\"protonmail_quote\">\r\n        On Monday, September 22nd, 2025 at 5:41 PM, mavrix1 &lt;mavrix1@proton.me&gt; wrote:<br>\r\n        <blockquote class=\"protonmail_quote\" type=\"cite\">\r\n            <div style=\"font-family: Arial, sans-serif; font-size: 14px;\">See attached.</div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\">Thanks,</div><div style=\"font-family: Arial, sans-serif; font-size: 14px;\">Rick</div>\r\n<div style=\"font-family: Arial, sans-serif; font-size: 14px;\" class=\"protonmail_signature_block protonmail_signature_block-empty\">\r\n    <div class=\"protonmail_signature_block-user protonmail_signature_block-empty\">\r\n        \r\n            </div>\r\n    \r\n            <div class=\"protonmail_signature_block-proton protonmail_signature_block-empty\">\r\n        \r\n            </div>\r\n</div>\r\n\r\n        </blockquote><br>\r\n    </div>\r\n        </blockquote><br>\r\n    </div>','------- Forwarded Message -------\nFrom: SendtheFox@proton.me <SendtheFox@proton.me>\nDate: On Tuesday, September 23rd, 2025 at 9:39 AM\nSubject: Re: Mavrix1 NDA\nTo: mavrix1 <mavrix1@proton.me>\n\n> Richard,\n>\n> We can progress once you return this signed to me, as well as mine, signed and returned.\n>\n> Respectfully,\n>\n> Smith, Michael\n>\n> Sent with [Proton Mail](https://proton.me/mail/home) secure email.\n>\n> On Monday, September 22nd, 2025 at 5:41 PM, mavrix1 <mavrix1@proton.me> wrote:\n>\n>> See attached.\n>> Thanks,\n>> Rick',0,0,0,0,0,0,'2025-09-30 21:54:02','2025-12-09 19:29:24','2025-12-09 19:29:24','2025-12-09 19:29:24',NULL,NULL,NULL),
(821,4,'<CH8PR13MB72674CD10CAA7EA36046BEB4E8E6A@CH8PR13MB7267.namprd13.prod.outlook.com>',NULL,NULL,'RE: Rick / intro to Century Mold','m.ricotta@CENTURYMOLD.COM','\"Ricotta, Matthew\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\n <head>\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n  <meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\"><!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]-->\n  <style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nh2\r\n	{mso-style-priority:9;\r\n	mso-style-link:\"Heading 2 Char\";\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:18.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	font-weight:bold;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon0, li.airmailon0, div.airmailon0\r\n	{mso-style-name:airmailon;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon00, li.airmailon00, div.airmailon00\r\n	{mso-style-name:airmailon0;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.Heading2Char\r\n	{mso-style-name:\"Heading 2 Char\";\r\n	mso-style-priority:9;\r\n	mso-style-link:\"Heading 2\";\r\n	font-family:\"Aptos Display\",sans-serif;\r\n	color:#0F4761;}\r\nspan.EmailStyle25\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Calibri\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\n </head>\n <body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\n  <div class=\"WordSection1\">\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">Confirmed, see you tomorrow!\n     <o:p></o:p></span></p>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">\n     <o:p>\n      &nbsp;\n     </o:p></span></p>\n   <div>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Matthew C. Ricotta</span><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Vice President of Sales Strategy &amp; Sales Operations\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Century Mold Co., Inc.\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">25 Vantage Point Drive\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Rochester, New York 14624\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Cell: (585) 507-1219\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\"><a href=\"mailto:m.ricotta@centurymold.com\">m.ricotta@centurymold.com</a>\n      <o:p></o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">\n      <o:p>\n       &nbsp;\n      </o:p></span></p>\n    <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\"><img border=\"0\" width=\"225\" height=\"60\" style=\"width:2.3416in;height:.625in\" id=\"Picture_x0020_1727951077\" src=\"cid:image001.jpg@01DC32C3.A3BA4F60\"><span style=\"mso-ligatures:standardcontextual\">\n       <o:p></o:p></span></span></p>\n   </div>\n   <p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\">\n     <o:p>\n      &nbsp;\n     </o:p></span></p>\n   <div>\n    <div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\n     <p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt; <br><b>Sent:</b> Wednesday, October 1, 2025 11:04 AM<br><b>To:</b> Ricotta, Matthew &lt;m.ricotta@CENTURYMOLD.COM&gt;; Blake, Elizabeth &lt;e.blake@centurymold.com&gt;; Rottier, Danielle &lt;danielle.rottier@centurymold.com&gt;<br><b>Subject:</b> RE: Rick / intro to Century Mold\n       <o:p></o:p></span></p>\n    </div>\n   </div>\n   <p class=\"MsoNormal\">\n    <o:p>\n     &nbsp;\n    </o:p></p>\n   <div id=\"dde62e0b9d2d3dbe0ad90ee1a0e018ac2c3f9fbc\">\n    <div id=\"3695363d23e92539dd775cf46042fb34a397127b\">\n     <p class=\"MsoNormal\" style=\"line-height:0%\"><span style=\"font-size:1.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:white\">Can we confirm 2p tomorrow? Thanks! Rick Rick Mislan, PhD, Founder, CTO <a href=\"https://mavrix1.com\">https://mavrix1.com</a> CONFIDENTIALITY NOTICE This communication, including any attachments, may contain confidential, privileged, \n       <o:p></o:p></span></p>\n    </div>\n    <p class=\"MsoNormal\"><span style=\"font-size:1.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:white\">sophospsmartbannerend </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n      <o:p></o:p></span></p>\n   </div>\n   <div id=\"bloop_customfont\">\n    <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Can we confirm 2p tomorrow? \n      <o:p></o:p></span></p>\n   </div>\n   <div id=\"bloop_customfont\">\n    <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks! \n      <o:p></o:p></span></p>\n   </div>\n   <div id=\"bloop_customfont\">\n    <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick \n      <o:p></o:p></span></p>\n   </div>\n   <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n     <o:p>\n      &nbsp;\n     </o:p></span></p>\n   <div id=\"bloop_sign_1759331004664476928\">\n    <div>\n     <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n       <o:p>\n        &nbsp;\n       </o:p></span></p>\n    </div>\n    <div>\n     <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp; \n       <o:p></o:p></span></p>\n    </div>\n    <div>\n     <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO \n       <o:p></o:p></span></p>\n    </div>\n    <div>\n     <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"ATTACH_attach_6d6573736167655f315f31323736_35324141434136342d423436382d343238352d423543342d383338463637303746464343_35333544443832312d464239312d343942372d414135392d424242443643324143354235_0\" src=\"cid:image002.png@01DC32C3.A3BA4F60\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n       <o:p></o:p></span></p>\n    </div>\n    <div>\n     <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://us-east-2.protection.sophos.com?d=mavrix1.com&amp;u=aHR0cHM6Ly9tYXZyaXgxLmNvbQ==&amp;i=NWE0MmE2M2EwYTczNDQxNzgwMzIzMmNj&amp;t=OUh1c0pVeGZ5VStDYnA0NHZORjB0TU1PeTh5c0tyckdOU0I3S2Y0SWtkYz0=&amp;h=8fd47333838046129564ef54d6eb6d1f&amp;s=AVNPUEhUT0NFTkNSWVBUSVZAh6YX1jEL4DWnGl5QCuub\">https://mavrix1.com</a>\n       <o:p></o:p></span></p>\n    </div>\n    <div>\n     <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n       <o:p>\n        &nbsp;\n       </o:p></span></p>\n    </div>\n    <div>\n     <p class=\"MsoNormal\"><b><u><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">CONFIDENTIALITY NOTICE</span></u></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n       <o:p></o:p></span></p>\n    </div>\n    <div>\n     <p class=\"MsoNormal\"><i><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</span></i><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n       <o:p></o:p></span></p>\n    </div>\n    <div>\n     <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n       <o:p>\n        &nbsp;\n       </o:p></span></p>\n    </div>\n    <div>\n     <p class=\"MsoNormal\"><i><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</span></i><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n       <o:p></o:p></span></p>\n    </div>\n    <div>\n     <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n       <o:p>\n        &nbsp;\n       </o:p></span></p>\n    </div>\n    <div>\n     <p class=\"MsoNormal\"><i><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</span></i><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n       <o:p></o:p></span></p>\n    </div>\n   </div>\n   <p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n     <o:p>\n      &nbsp;\n     </o:p></span></p>\n   <p class=\"airmailon\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">On September 29, 2025 at 16:24:10, Ricotta, Matthew (<a href=\"mailto:m.ricotta@centurymold.com\">m.ricotta@centurymold.com</a>) wrote:\n     <o:p></o:p></span></p>\n   <blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\n    <div>\n     <div>\n      <div>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">How does 2pm Thursday work for you?&nbsp; Do you want to come to our place? </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n         <o:p></o:p></span></p>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n         <o:p></o:p></span></p>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Century Mold Co., Inc. </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n         <o:p></o:p></span></p>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">25 Vantage Point Drive </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n         <o:p></o:p></span></p>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Rochester, New York 14624 </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n         <o:p></o:p></span></p>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n         <o:p></o:p></span></p>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n         <o:p></o:p></span></p>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n         <o:p></o:p></span></p>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n         <o:p></o:p></span></p>\n       <div>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Matthew C. Ricotta</span><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n          <o:p></o:p></span></p>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Vice President of Sales Strategy &amp; Sales Operations </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n          <o:p></o:p></span></p>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Century Mold Co., Inc. </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n          <o:p></o:p></span></p>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">25 Vantage Point Drive </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n          <o:p></o:p></span></p>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Rochester, New York 14624 </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n          <o:p></o:p></span></p>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Cell: (585) 507-1219 </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n          <o:p></o:p></span></p>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\"><a href=\"mailto:m.ricotta@centurymold.com\">m.ricotta@centurymold.com</a> </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n          <o:p></o:p></span></p>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n          <o:p></o:p></span></p>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><img border=\"0\" width=\"225\" height=\"60\" style=\"width:2.3416in;height:.625in\" id=\"Picture_x0020_1615384104\" src=\"cid:image001.jpg@01DC32C3.A3BA4F60\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n          <o:p></o:p></span></p>\n       </div>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n         <o:p></o:p></span></p>\n       <div>\n        <div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\n         <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; <br><b>Sent:</b> Monday, September 29, 2025 3:26 PM<br><b>To:</b> Ricotta, Matthew &lt;<a href=\"mailto:m.ricotta@CENTURYMOLD.COM\">m.ricotta@CENTURYMOLD.COM</a>&gt;; Blake, Elizabeth &lt;<a href=\"mailto:e.blake@centurymold.com\">e.blake@centurymold.com</a>&gt;; Rottier, Danielle &lt;<a href=\"mailto:danielle.rottier@centurymold.com\">danielle.rottier@centurymold.com</a>&gt;<br><b>Subject:</b> RE: Rick / intro to Century Mold </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n           <o:p></o:p></span></p>\n        </div>\n       </div>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n         <o:p></o:p></span></p>\n       <div id=\"dde62e0b9d2d3dbe0ad90ee1a0e018ac2c3f9fbc\">\n        <div id=\"3695363d23e92539dd775cf46042fb34a397127b\">\n         <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;line-height:0%\"><span style=\"font-size:1.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:white\">I think that will work. Let me know what’s best. Thanks! Rick On September 29, 2025 at 08:00:38, Ricotta, Matthew (<a href=\"mailto:m.ricotta@centurymold.com\">m.ricotta@centurymold.com</a>) wrote: Hi Rick, Are you available Thursday afternoon? We h </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n           <o:p></o:p></span></p>\n        </div>\n        <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:1.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:white\">sophospsmartbannerend </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n          <o:p></o:p></span></p>\n       </div>\n       <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:12.0pt\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I think that will work.<br>\n          Let me know what’s best.<br>\n          Thanks!<br>\n          Rick \n         <o:p></o:p></span></p>\n       <p class=\"airmailon0\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">On September 29, 2025 at 08:00:38, Ricotta, Matthew (<a href=\"mailto:m.ricotta@centurymold.com\">m.ricotta@centurymold.com</a>) wrote:\n         <o:p></o:p></span></p>\n       <blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\n        <div>\n         <div>\n          <div>\n           <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Hi Rick, </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n             <o:p></o:p></span></p>\n           <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n             <o:p></o:p></span></p>\n           <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Are you available Thursday afternoon? We have a customer in town until noon however we can be available in the afternoon. </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n             <o:p></o:p></span></p>\n           <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n             <o:p></o:p></span></p>\n           <div>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Matthew C. Ricotta</span><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n              <o:p></o:p></span></p>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Vice President of Sales Strategy &amp; Sales Operations </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n              <o:p></o:p></span></p>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Century Mold Co., Inc. </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n              <o:p></o:p></span></p>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">25 Vantage Point Drive </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n              <o:p></o:p></span></p>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Rochester, New York 14624 </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n              <o:p></o:p></span></p>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Cell: (585) 507-1219 </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n              <o:p></o:p></span></p>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\"><a href=\"mailto:m.ricotta@centurymold.com\">m.ricotta@centurymold.com</a> </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n              <o:p></o:p></span></p>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n              <o:p></o:p></span></p>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><img border=\"0\" width=\"225\" height=\"60\" style=\"width:2.3416in;height:.625in\" id=\"Picture_x0020_1298005977\" src=\"cid:image001.jpg@01DC32C3.A3BA4F60\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n              <o:p></o:p></span></p>\n           </div>\n           <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n             <o:p></o:p></span></p>\n           <div>\n            <div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\n             <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; <br><b>Sent:</b> Sunday, September 28, 2025 9:05 AM<br><b>To:</b> Blake, Elizabeth &lt;<a href=\"mailto:e.blake@centurymold.com\">e.blake@centurymold.com</a>&gt;; Rottier, Danielle &lt;<a href=\"mailto:danielle.rottier@centurymold.com\">danielle.rottier@centurymold.com</a>&gt;; Ricotta, Matthew &lt;<a href=\"mailto:m.ricotta@CENTURYMOLD.COM\">m.ricotta@CENTURYMOLD.COM</a>&gt;<br><b>Subject:</b> RE: Rick / intro to Century Mold </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n               <o:p></o:p></span></p>\n            </div>\n           </div>\n           <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n             <o:p></o:p></span></p>\n           <div id=\"dde62e0b9d2d3dbe0ad90ee1a0e018ac2c3f9fbc\">\n            <div id=\"3695363d23e92539dd775cf46042fb34a397127b\">\n             <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;line-height:0%\"><span style=\"font-size:1.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:white\">Checking in again to see if there isn’t time this week to connect. Tuesday or Thursday or next week same days? Thanks! Rick Rick Mislan, PhD, Founder, CTO <a href=\"https://us-east-2.protection.sophos.com?d=mavrix1.com&amp;u=aHR0cHM6Ly9tYXZyaXgxLmNvbQ==&amp;i=NWE0MmE2M2EwYTczNDQxNzgwMzIzMmNj&amp;t=OUh1c0pVeGZ5VStDYnA0NHZORjB0TU1PeTh5c0tyckdOU0I3S2Y0SWtkYz0=&amp;h=b8861dfc29a6481f8328da136291687b&amp;s=AVNPUEhUT0NFTkNSWVBUSVZAh6YX1jEL4DWnGl5QCuub\"> https://mavrix1.com</a> CONFIDENTIALITY NOTICE Th </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n               <o:p></o:p></span></p>\n            </div>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:1.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:white\">sophospsmartbannerend </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n              <o:p></o:p></span></p>\n           </div>\n           <div>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Checking in again to see if there isn’t time this week to connect. \n              <o:p></o:p></span></p>\n           </div>\n           <div>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Tuesday or Thursday or next week same days? \n              <o:p></o:p></span></p>\n           </div>\n           <div>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks! \n              <o:p></o:p></span></p>\n           </div>\n           <div>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick \n              <o:p></o:p></span></p>\n           </div>\n           <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n             <o:p></o:p></span></p>\n           <div>\n            <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n              <o:p></o:p></span></p>\n            <div>\n             <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp; \n               <o:p></o:p></span></p>\n             <div>\n              <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO \n                <o:p></o:p></span></p>\n             </div>\n             <div>\n              <div>\n               <div>\n                <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"Picture_x0020_5\" src=\"cid:image002.png@01DC32C3.A3BA4F60\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                  <o:p></o:p></span></p>\n               </div>\n               <div>\n                <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://us-east-2.protection.sophos.com?d=mavrix1.com&amp;u=aHR0cHM6Ly9tYXZyaXgxLmNvbS8=&amp;i=NWE0MmE2M2EwYTczNDQxNzgwMzIzMmNj&amp;t=SVFyWGp6a2pXWUFzZENKTnRZd1NRVzU1TWU0R0VqZk9pRUd5ZlJOcWxRTT0=&amp;h=b38fb10393b8457b89f0ec8e5079b2e9&amp;s=AVNPUEhUT0NFTkNSWVBUSVZAh6YX1jEL4DWnGl5QCuub\">https://mavrix1.com</a>\n                  <o:p></o:p></span></p>\n               </div>\n              </div>\n              <div>\n               <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n                 <o:p></o:p></span></p>\n              </div>\n              <div>\n               <div>\n                <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">CONFIDENTIALITY NOTICE \n                  <o:p></o:p></span></p>\n               </div>\n               <div>\n                <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful. \n                  <o:p></o:p></span></p>\n               </div>\n               <div>\n                <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n                  <o:p></o:p></span></p>\n               </div>\n               <div>\n                <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies. \n                  <o:p></o:p></span></p>\n               </div>\n               <div>\n                <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n                  <o:p></o:p></span></p>\n               </div>\n               <div>\n                <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements. \n                  <o:p></o:p></span></p>\n               </div>\n              </div>\n             </div>\n            </div>\n           </div>\n           <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n             <o:p></o:p></span></p>\n           <p class=\"airmailon00\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">On September 16, 2025 at 7:35:34 AM, Ricotta, Matthew (<a href=\"mailto:m.ricotta@centurymold.com\">m.ricotta@centurymold.com</a>) wrote: \n             <o:p></o:p></span></p>\n           <blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\n            <div>\n             <div>\n              <div>\n               <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Good Morning Rick, </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                 <o:p></o:p></span></p>\n               <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                 <o:p></o:p></span></p>\n               <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Nice to virtually meet you.&nbsp; RIT is a great place, I am a 2003 graduate and still actively involved with the university as I serve as a member of the National Council for Engineering Technology. </span> <span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                 <o:p></o:p></span></p>\n               <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                 <o:p></o:p></span></p>\n               <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">It would be great to connect sometime soon.&nbsp; We can have you over and show you around and then grab some lunch.&nbsp; Our building is only 15 minutes from RIT.&nbsp; Are there any dates and times that might work for you? </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                 <o:p></o:p></span></p>\n               <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                 <o:p></o:p></span></p>\n               <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><a id=\"OWAAM46FF9A5316C34FB2A8FCE827BF697C4A\" href=\"mailto:jen@deeptechgtm.com\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif;text-decoration:none\">@Jennifer Kay</span></a>&nbsp; thanks for the connection. </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                 <o:p></o:p></span></p>\n               <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                 <o:p></o:p></span></p>\n               <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Best Regards, </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                 <o:p></o:p></span></p>\n               <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                 <o:p></o:p></span></p>\n               <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Matt </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                 <o:p></o:p></span></p>\n               <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                 <o:p></o:p></span></p>\n               <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                 <o:p></o:p></span></p>\n               <div>\n                <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Matthew C. Ricotta</span><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                  <o:p></o:p></span></p>\n                <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Vice President of Sales Strategy &amp; Sales Operations </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                  <o:p></o:p></span></p>\n                <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Century Mold Co., Inc. </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                  <o:p></o:p></span></p>\n                <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">25 Vantage Point Drive </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                  <o:p></o:p></span></p>\n                <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Rochester, New York 14624 </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                  <o:p></o:p></span></p>\n                <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">Cell: (585) 507-1219 </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                  <o:p></o:p></span></p>\n                <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\"><a href=\"mailto:m.ricotta@centurymold.com\">m.ricotta@centurymold.com</a> </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                  <o:p></o:p></span></p>\n                <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:standardcontextual\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                  <o:p></o:p></span></p>\n                <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><img border=\"0\" width=\"225\" height=\"60\" style=\"width:2.3416in;height:.625in\" id=\"Picture_x0020_640791774\" src=\"cid:image001.jpg@01DC32C3.A3BA4F60\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                  <o:p></o:p></span></p>\n               </div>\n               <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp; </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                 <o:p></o:p></span></p>\n               <div>\n                <div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\n                 <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Jennifer Kay &lt;<a href=\"mailto:jen@deeptechgtm.com\">jen@deeptechgtm.com</a>&gt; <br><b>Sent:</b> Monday, September 15, 2025 8:56 PM<br><b>To:</b> Ricotta, Matthew &lt;<a href=\"mailto:m.ricotta@CENTURYMOLD.COM\">m.ricotta@CENTURYMOLD.COM</a>&gt;; Blake, Elizabeth &lt;<a href=\"mailto:e.blake@centurymold.com\">e.blake@centurymold.com</a>&gt;; Rottier, Danielle &lt;<a href=\"mailto:danielle.rottier@centurymold.com\">danielle.rottier@centurymold.com</a>&gt;; <a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a><br><b>Subject:</b> Rick / intro to Century Mold </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                   <o:p></o:p></span></p>\n                </div>\n               </div>\n               <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n                 <o:p></o:p></span></p>\n               <div id=\"dde62e0b9d2d3dbe0ad90ee1a0e018ac2c3f9fbc\">\n                <div id=\"3695363d23e92539dd775cf46042fb34a397127b\">\n                 <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;line-height:0%\"><span style=\"font-size:1.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:white\">Hi all, Team Century Mold (aka the best in the biz), please meet my friend and colleague Rick Mislan. In addition to teaching at RIT and living in your backyard, Rick is connected to a family office t </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                   <o:p></o:p></span></p>\n                </div>\n                <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:1.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:white\">sophospsmartbannerend </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                  <o:p></o:p></span></p>\n               </div>\n               <div>\n                <div>\n                 <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi all, \n                   <o:p></o:p></span></p>\n                </div>\n                <div>\n                 <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n                   <o:p></o:p></span></p>\n                </div>\n                <div>\n                 <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Team Century Mold (aka the best in the biz), please meet my friend and colleague Rick Mislan. In addition to teaching at RIT and living in your backyard, Rick is connected to a family office that\'s recently secured&nbsp;a $1.5B fund that they are looking to deploy against hardening American supply chains for defense use cases, specifically focusing&nbsp;on autonomy and unmanned systems. \n                   <o:p></o:p></span></p>\n                </div>\n                <div>\n                 <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n                   <o:p></o:p></span></p>\n                </div>\n                <div>\n                 <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick may want to tour the Rochester plant and discuss other collaboration opportunities. I\'ll let y\'all take it from here! \n                   <o:p></o:p></span></p>\n                </div>\n                <div>\n                 <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n                   <o:p></o:p></span></p>\n                </div>\n                <div>\n                 <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks, \n                   <o:p></o:p></span></p>\n                </div>\n                <div>\n                 <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Jen \n                   <o:p></o:p></span></p>\n                </div>\n                <div>\n                 <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n                   <o:p></o:p></span></p>\n                </div>\n                <div>\n                 <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n                   <o:p></o:p></span></p>\n                </div>\n                <div>\n                 <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n                   <o:p></o:p></span></p>\n                </div>\n                <div>\n                 <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n                   <o:p></o:p></span></p>\n                </div>\n                <div>\n                 <div>\n                  <div>\n                   <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"518\" style=\"width:388.2pt;border-collapse:collapse\">\n                    <tbody>\n                     <tr>\n                      <td style=\"padding:0in 0in 0in 0in\">\n                       <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"518\" style=\"width:388.2pt;border-collapse:collapse\">\n                        <tbody>\n                         <tr>\n                          <td valign=\"top\" style=\"padding:0in 0in 0in 0in\"><h2 style=\"margin:0in\"><span style=\"font-size:13.5pt;font-family:&quot;Helvetica&quot;,sans-serif;color:#231E4A\">Jennifer&nbsp;Kay </span><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">\n                             <o:p></o:p></span></h2><p style=\"margin:0in;line-height:16.5pt\"><span style=\"font-size:10.5pt;font-family:&quot;Helvetica&quot;,sans-serif;color:#231E4A\">Principal&nbsp;|&nbsp;Deep Tech Go to Market </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                             <o:p></o:p></span></p><p style=\"margin:0in;line-height:16.5pt\"><span style=\"font-size:10.5pt;font-family:&quot;Helvetica&quot;,sans-serif;color:#231E4A\">Offering commercial go to market for dual-use tech </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                             <o:p></o:p></span></p>\n                           <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"473\" style=\"width:354.45pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\n                            <tbody>\n                             <tr style=\"height:.25in\">\n                              <td style=\"padding:0in 0in 0in 0in;height:.25in\"></td>\n                             </tr>\n                             <tr style=\"height:.6pt\">\n                              <td width=\"473\" style=\"width:354.45pt;border:none;border-bottom:solid #231E4A 1.0pt;padding:0in 0in 0in 0in;height:.6pt\"></td>\n                             </tr>\n                             <tr style=\"height:.25in\">\n                              <td style=\"padding:0in 0in 0in 0in;height:.25in\"></td>\n                             </tr>\n                            </tbody>\n                           </table><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n                             <o:p></o:p></span></p>\n                           <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"473\" style=\"width:354.45pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\n                            <tbody>\n                             <tr style=\"height:15.0pt\">\n                              <td width=\"30\" style=\"width:22.5pt;padding:0in 0in 0in 0in;height:15.0pt\">\n                              <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"30\" style=\"width:22.5pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\n                              <tbody>\n                              <tr>\n                              <td valign=\"bottom\" style=\"padding:0in 0in 0in 0in\"><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:white;background:#231E4A\"><img border=\"0\" width=\"13\" height=\"13\" style=\"width:.1333in;height:.1333in\" id=\"_x0000_i1028\" src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/phone-icon-2x.png\" alt=\"mobilePhone\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                              <o:p></o:p></span></p></td>\n                              </tr>\n                              </tbody>\n                              </table></td>\n                              <td style=\"padding:0in 0in 0in 0in;height:15.0pt\"><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:#231E4A\"><a href=\"tel:615-630-8068\" target=\"_blank\"><span style=\"font-size:9.0pt;color:#231E4A\">615-630-8068</span></a> </span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                              <o:p></o:p></span></p></td>\n                             </tr>\n                             <tr style=\"height:15.0pt\">\n                              <td width=\"30\" style=\"width:22.5pt;padding:0in 0in 0in 0in;height:15.0pt\">\n                              <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"30\" style=\"width:22.5pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\n                              <tbody>\n                              <tr>\n                              <td valign=\"bottom\" style=\"padding:0in 0in 0in 0in\"><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:white;background:#231E4A\"><img border=\"0\" width=\"13\" height=\"13\" style=\"width:.1333in;height:.1333in\" id=\"_x0000_i1027\" src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/email-icon-2x.png\" alt=\"emailAddress\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                              <o:p></o:p></span></p></td>\n                              </tr>\n                              </tbody>\n                              </table></td>\n                              <td style=\"padding:0in 0in 0in 0in;height:15.0pt\"><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"mailto:Jen@DeepTechGTM.com\" target=\"_blank\"><span style=\"font-size:9.0pt;color:#231E4A\">Jen@DeepTechGTM.com</span></a>\n                              <o:p></o:p></span></p></td>\n                             </tr>\n                             <tr style=\"height:15.0pt\">\n                              <td width=\"30\" style=\"width:22.5pt;padding:0in 0in 0in 0in;height:15.0pt\">\n                              <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"30\" style=\"width:22.5pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\n                              <tbody>\n                              <tr>\n                              <td valign=\"bottom\" style=\"padding:0in 0in 0in 0in\"><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:white;background:#231E4A\"><img border=\"0\" width=\"13\" height=\"13\" style=\"width:.1333in;height:.1333in\" id=\"_x0000_i1026\" src=\"https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/link-icon-2x.png\" alt=\"website\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                              <o:p></o:p></span></p></td>\n                              </tr>\n                              </tbody>\n                              </table></td>\n                              <td style=\"padding:0in 0in 0in 0in;height:15.0pt\"><p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://us-east-2.protection.sophos.com?d=deeptechgtm.com&amp;u=aHR0cHM6Ly9kZWVwdGVjaGd0bS5jb20v&amp;i=NWE0MmE2M2EwYTczNDQxNzgwMzIzMmNj&amp;t=TldHT21pOVMrQnc1QS9EOEpwNmFMd2U2MFRIdURzb3E3UTlSaEFrU2tqYz0=&amp;h=3c9cbb7ae9ea477292738775fa990c2e&amp;s=AVNPUEhUT0NFTkNSWVBUSVbtVtDurjG3awJTMAs2DBBeJDosvMTyBzoEmpKDp9Qbtw\" target=\"_blank\"><span style=\"font-size:9.0pt;color:#231E4A\">DeepTechGTM.com</span></a>\n                              <o:p></o:p></span></p></td>\n                             </tr>\n                            </tbody>\n                           </table></td>\n                          <td width=\"45\" style=\"width:33.75pt;padding:0in 0in 0in 0in\"></td>\n                         </tr>\n                        </tbody>\n                       </table></td>\n                     </tr>\n                     <tr>\n                      <td style=\"padding:0in 0in 0in 0in\"></td>\n                     </tr>\n                    </tbody>\n                   </table>\n                   <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp; \n                     <o:p></o:p></span></p>\n                   <table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"547\" style=\"width:409.95pt;border-collapse:collapse;border-spacing:0px;vertical-align:-webkit-baseline-middle\">\n                    <tbody>\n                     <tr>\n                      <td style=\"padding:0in 0in 0in 0in\"></td>\n                     </tr>\n                    </tbody>\n                   </table>\n                  </div>\n                 </div>\n                </div>\n                <p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"1\" height=\"1\" style=\"width:.0083in;height:.0083in\" id=\"_x0000_i1025\" src=\"https://d2LSMm04.na1.hs-salescrm-engage.com/Cto/2O+23284/d2LSMm04/R5Q8b48CrN56kt9Z2fD5tW3DNv9w1_jP7GW1V3GZL1W-WmZW1GzmYc3LCDCYW3M0g1n1N6TqrW3yRLx522VWWjf1Q2MDY12\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">\n                  <o:p></o:p></span></p>\n               </div>\n              </div>\n             </div>\n            </div>\n           </blockquote>\n          </div>\n         </div>\n        </div>\n       </blockquote>\n      </div>\n     </div>\n    </div>\n   </blockquote>\n  </div>\n </body>\n</html>','Confirmed, see you tomorrow!\r\n\r\nMatthew C. Ricotta\r\nVice President of Sales Strategy & Sales Operations\r\nCentury Mold Co., Inc.\r\n25 Vantage Point Drive\r\nRochester, New York 14624\r\nCell: (585) 507-1219\r\nm.ricotta@centurymold.com<mailto:m.ricotta@centurymold.com>\r\n\r\n[cid:image001.jpg@01DC32C3.A3BA4F60]\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Wednesday, October 1, 2025 11:04 AM\r\nTo: Ricotta, Matthew <m.ricotta@CENTURYMOLD.COM>; Blake, Elizabeth <e.blake@centurymold.com>; Rottier, Danielle <danielle.rottier@centurymold.com>\r\nSubject: RE: Rick / intro to Century Mold\r\n\r\n\r\nCan we confirm 2p tomorrow?\r\nThanks!\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:image002.png@01DC32C3.A3BA4F60]\r\nhttps://mavrix1.com<https://us-east-2.protection.sophos.com?d=mavrix1.com&u=aHR0cHM6Ly9tYXZyaXgxLmNvbQ==&i=NWE0MmE2M2EwYTczNDQxNzgwMzIzMmNj&t=OUh1c0pVeGZ5VStDYnA0NHZORjB0TU1PeTh5c0tyckdOU0I3S2Y0SWtkYz0=&h=8fd47333838046129564ef54d6eb6d1f&s=AVNPUEhUT0NFTkNSWVBUSVZAh6YX1jEL4DWnGl5QCuub>\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\nOn September 29, 2025 at 16:24:10, Ricotta, Matthew (m.ricotta@centurymold.com<mailto:m.ricotta@centurymold.com>) wrote:\r\nHow does 2pm Thursday work for you?  Do you want to come to our place?\r\n\r\nCentury Mold Co., Inc.\r\n25 Vantage Point Drive\r\nRochester, New York 14624\r\n\r\n\r\n\r\n\r\nMatthew C. Ricotta\r\nVice President of Sales Strategy & Sales Operations\r\nCentury Mold Co., Inc.\r\n25 Vantage Point Drive\r\nRochester, New York 14624\r\nCell: (585) 507-1219\r\nm.ricotta@centurymold.com<mailto:m.ricotta@centurymold.com>\r\n\r\n[cid:image001.jpg@01DC32C3.A3BA4F60]\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Monday, September 29, 2025 3:26 PM\r\nTo: Ricotta, Matthew <m.ricotta@CENTURYMOLD.COM<mailto:m.ricotta@CENTURYMOLD.COM>>; Blake, Elizabeth <e.blake@centurymold.com<mailto:e.blake@centurymold.com>>; Rottier, Danielle <danielle.rottier@centurymold.com<mailto:danielle.rottier@centurymold.com>>\r\nSubject: RE: Rick / intro to Century Mold\r\n\r\nI think that will work. Let me know what’s best. Thanks! Rick On September 29, 2025 at 08:00:38, Ricotta, Matthew (m.ricotta@centurymold.com<mailto:m.ricotta@centurymold.com>) wrote: Hi Rick, Are you available Thursday afternoon? We h\r\nsophospsmartbannerend\r\nI think that will work.\r\nLet me know what’s best.\r\nThanks!\r\nRick\r\n\r\nOn September 29, 2025 at 08:00:38, Ricotta, Matthew (m.ricotta@centurymold.com<mailto:m.ricotta@centurymold.com>) wrote:\r\nHi Rick,\r\n\r\nAre you available Thursday afternoon? We have a customer in town until noon however we can be available in the afternoon.\r\n\r\nMatthew C. Ricotta\r\nVice President of Sales Strategy & Sales Operations\r\nCentury Mold Co., Inc.\r\n25 Vantage Point Drive\r\nRochester, New York 14624\r\nCell: (585) 507-1219\r\nm.ricotta@centurymold.com<mailto:m.ricotta@centurymold.com>\r\n\r\n[cid:image001.jpg@01DC32C3.A3BA4F60]\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Sunday, September 28, 2025 9:05 AM\r\nTo: Blake, Elizabeth <e.blake@centurymold.com<mailto:e.blake@centurymold.com>>; Rottier, Danielle <danielle.rottier@centurymold.com<mailto:danielle.rottier@centurymold.com>>; Ricotta, Matthew <m.ricotta@CENTURYMOLD.COM<mailto:m.ricotta@CENTURYMOLD.COM>>\r\nSubject: RE: Rick / intro to Century Mold\r\n\r\nChecking in again to see if there isn’t time this week to connect. Tuesday or Thursday or next week same days? Thanks! Rick Rick Mislan, PhD, Founder, CTO https://mavrix1.com<https://us-east-2.protection.sophos.com?d=mavrix1.com&u=aHR0cHM6Ly9tYXZyaXgxLmNvbQ==&i=NWE0MmE2M2EwYTczNDQxNzgwMzIzMmNj&t=OUh1c0pVeGZ5VStDYnA0NHZORjB0TU1PeTh5c0tyckdOU0I3S2Y0SWtkYz0=&h=b8861dfc29a6481f8328da136291687b&s=AVNPUEhUT0NFTkNSWVBUSVZAh6YX1jEL4DWnGl5QCuub> CONFIDENTIALITY NOTICE Th\r\nsophospsmartbannerend\r\nChecking in again to see if there isn’t time this week to connect.\r\nTuesday or Thursday or next week same days?\r\nThanks!\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:image002.png@01DC32C3.A3BA4F60]\r\nhttps://mavrix1.com<https://us-east-2.protection.sophos.com?d=mavrix1.com&u=aHR0cHM6Ly9tYXZyaXgxLmNvbS8=&i=NWE0MmE2M2EwYTczNDQxNzgwMzIzMmNj&t=SVFyWGp6a2pXWUFzZENKTnRZd1NRVzU1TWU0R0VqZk9pRUd5ZlJOcWxRTT0=&h=b38fb10393b8457b89f0ec8e5079b2e9&s=AVNPUEhUT0NFTkNSWVBUSVZAh6YX1jEL4DWnGl5QCuub>\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\nOn September 16, 2025 at 7:35:34 AM, Ricotta, Matthew (m.ricotta@centurymold.com<mailto:m.ricotta@centurymold.com>) wrote:\r\nGood Morning Rick,\r\n\r\nNice to virtually meet you.  RIT is a great place, I am a 2003 graduate and still actively involved with the university as I serve as a member of the National Council for Engineering Technology.\r\n\r\nIt would be great to connect sometime soon.  We can have you over and show you around and then grab some lunch.  Our building is only 15 minutes from RIT.  Are there any dates and times that might work for you?\r\n\r\n@Jennifer Kay<mailto:jen@deeptechgtm.com>  thanks for the connection.\r\n\r\nBest Regards,\r\n\r\nMatt\r\n\r\n\r\nMatthew C. Ricotta\r\nVice President of Sales Strategy & Sales Operations\r\nCentury Mold Co., Inc.\r\n25 Vantage Point Drive\r\nRochester, New York 14624\r\nCell: (585) 507-1219\r\nm.ricotta@centurymold.com<mailto:m.ricotta@centurymold.com>\r\n\r\n[cid:image001.jpg@01DC32C3.A3BA4F60]\r\n\r\nFrom: Jennifer Kay <jen@deeptechgtm.com<mailto:jen@deeptechgtm.com>>\r\nSent: Monday, September 15, 2025 8:56 PM\r\nTo: Ricotta, Matthew <m.ricotta@CENTURYMOLD.COM<mailto:m.ricotta@CENTURYMOLD.COM>>; Blake, Elizabeth <e.blake@centurymold.com<mailto:e.blake@centurymold.com>>; Rottier, Danielle <danielle.rottier@centurymold.com<mailto:danielle.rottier@centurymold.com>>; rick@mavrix.one<mailto:rick@mavrix.one>\r\nSubject: Rick / intro to Century Mold\r\n\r\nHi all, Team Century Mold (aka the best in the biz), please meet my friend and colleague Rick Mislan. In addition to teaching at RIT and living in your backyard, Rick is connected to a family office t\r\nsophospsmartbannerend\r\nHi all,\r\n\r\nTeam Century Mold (aka the best in the biz), please meet my friend and colleague Rick Mislan. In addition to teaching at RIT and living in your backyard, Rick is connected to a family office that\'s recently secured a $1.5B fund that they are looking to deploy against hardening American supply chains for defense use cases, specifically focusing on autonomy and unmanned systems.\r\n\r\nRick may want to tour the Rochester plant and discuss other collaboration opportunities. I\'ll let y\'all take it from here!\r\n\r\nThanks,\r\nJen\r\n\r\n\r\n\r\n\r\nJennifer Kay\r\n\r\nPrincipal | Deep Tech Go to Market\r\n\r\nOffering commercial go to market for dual-use tech\r\n\r\n[mobilePhone]\r\n615-630-8068<tel:615-630-8068>\r\n[emailAddress]\r\nJen@DeepTechGTM.com<mailto:Jen@DeepTechGTM.com>\r\n[website]\r\nDeepTechGTM.com<https://us-east-2.protection.sophos.com?d=deeptechgtm.com&u=aHR0cHM6Ly9kZWVwdGVjaGd0bS5jb20v&i=NWE0MmE2M2EwYTczNDQxNzgwMzIzMmNj&t=TldHT21pOVMrQnc1QS9EOEpwNmFMd2U2MFRIdURzb3E3UTlSaEFrU2tqYz0=&h=3c9cbb7ae9ea477292738775fa990c2e&s=AVNPUEhUT0NFTkNSWVBUSVbtVtDurjG3awJTMAs2DBBeJDosvMTyBzoEmpKDp9Qbtw>\r\n\r\n\r\n',0,0,0,0,0,0,'2025-10-01 15:07:57','2025-12-09 19:29:24','2025-12-09 19:29:24','2025-12-09 19:29:24',NULL,NULL,NULL),
(822,4,' <PH0P111MB28352F627F0E5526258355C69DE6A@PH0P111MB2835.NAMP111.PROD.OUTLOOK.COM>',NULL,NULL,'Industry Days Presentation Materials - Update on Availability','UASIndustryDay2025@army.mil','UAS Industry Day 2025','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"margin: 0in; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nGood Afternoon,</div>\r\n<div style=\"margin: 0in; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n&nbsp;</div>\r\n<div style=\"margin: 0in; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nThank you for your interest in obtaining copies of the presentation slides from our recent Industry Days event. We appreciate your participation and engagement during the sessions.</div>\r\n<div style=\"margin: 0in; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n&nbsp;</div>\r\n<div style=\"margin: 0in; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nWe understand the value these materials provide for your continued planning and development efforts. Please be assured that we are committed to making the presentation slides available to all attendees. Currently, we are working through our internal review\r\n and approval processes to ensure all materials meet our distribution requirements. Additionally, the recent government shutdown has impacted our timeline for processing and releasing these materials. We are working diligently to minimize any delays and will\r\n resume normal operations as quickly as possible.</div>\r\n<div style=\"margin: 0in; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n&nbsp;</div>\r\n<div style=\"margin: 0in; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nWe will notify all Industry Days participants via email as soon as the presentation materials are cleared for distribution. We anticipate being able to provide an updated timeline as events unfold and appreciate your patience during this period. If you have\r\n any urgent questions or concerns, please don\'t hesitate to reach out to our team.</div>\r\n<div style=\"margin: 0in; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n&nbsp;</div>\r\n<div style=\"margin: 0in; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nThank you again for your participation in Industry Days, and we look forward to your continued engagement.</div>\r\n<div style=\"margin: 0in; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n&nbsp;</div>\r\n<div style=\"margin: 0in; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nSincerely,</div>\r\n<div style=\"margin: 0in; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"margin: 0in; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nUAS Marketplace Industry Team</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n</body>\r\n</html>','Good Afternoon,\r\n\r\nThank you for your interest in obtaining copies of the presentation slides from our recent Industry Days event. We appreciate your participation and engagement during the sessions.\r\n\r\nWe understand the value these materials provide for your continued planning and development efforts. Please be assured that we are committed to making the presentation slides available to all attendees. Currently, we are working through our internal review and approval processes to ensure all materials meet our distribution requirements. Additionally, the recent government shutdown has impacted our timeline for processing and releasing these materials. We are working diligently to minimize any delays and will resume normal operations as quickly as possible.\r\n\r\nWe will notify all Industry Days participants via email as soon as the presentation materials are cleared for distribution. We anticipate being able to provide an updated timeline as events unfold and appreciate your patience during this period. If you have any urgent questions or concerns, please don\'t hesitate to reach out to our team.\r\n\r\nThank you again for your participation in Industry Days, and we look forward to your continued engagement.\r\n\r\nSincerely,\r\n\r\nUAS Marketplace Industry Team',0,0,0,0,0,0,'2025-10-01 21:22:21','2025-12-09 19:29:25','2025-12-09 19:29:25','2025-12-09 19:29:25',NULL,NULL,NULL),
(823,4,'<MW5PR84MB198506668BAF97FC9F9B1010FBE7A@MW5PR84MB1985.NAMPRD84.PROD.OUTLOOK.COM>',NULL,NULL,'HP MJF Printers','gary.fudge@hp.com','\"Fudge, Gary\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Forma DJR Micro\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n@font-face\r\n	{font-family:\"Forma DJR Display\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle17\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Are you all ready to continue the conversation about our 3D Printers/3DP Services?&nbsp; If not, when should I check back with you?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Best Regards,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager &#8211; US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\"><span style=\"color:blue\">Gary.Fudge</span><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:blue\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_1\" src=\"cid:image001.png@01DC338F.95722D20\" alt=\"image001.png\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</body>\r\n</html>','Hello Rick,\r\n\r\nAre you all ready to continue the conversation about our 3D Printers/3DP Services?  If not, when should I check back with you?\r\n\r\nBest Regards,\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager - US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]',0,0,0,0,0,0,'2025-10-02 15:27:51','2025-12-09 19:29:25','2025-12-09 19:29:25','2025-12-09 19:29:25',NULL,NULL,NULL),
(824,4,'<20251002162225.Horde.yb56nYPFnKIihiY4Gw2pBzN@mavrix1.aponte.to>',NULL,NULL,'Invitation updated: Workforce Plan for Manufacturing','leslie@mavrix.one','Leslie Staron','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\" style=\"-webkit-font-smoothing:antialiased;background:#fff!important\">\r\n<head>\r\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n	<meta name=\"viewport\" content=\"width=device-width\">\r\n	<title></title>\r\n	<style type=\"text/css\">@media only screen{html{min-height:100%;background:#fff}}@media only screen and (max-width:610px){table.body img{width:auto;height:auto}table.body center{min-width:0!important}table.body .container{width:95%!important}table.body .columns{height:auto!important;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:30px!important;padding-right:30px!important}th.small-12{display:inline-block!important;width:100%!important}table.menu{width:100%!important}table.menu td,table.menu th{width:auto!important;display:inline-block!important}table.menu.vertical td,table.menu.vertical th{display:block!important}table.menu[align=center]{width:auto!important}}</style>\r\n</head>\r\n<body style=\"-moz-box-sizing:border-box;-ms-text-size-adjust:100%;-webkit-box-sizing:border-box;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;margin:0;background:#fff!important;box-sizing:border-box;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;min-width:100%;padding:0;text-align:left;width:100%!important\">\r\n	<span class=\"preheader\" style=\"color:#F5F5F5;display:none!important;font-size:1px;line-height:1px;max-height:0;max-width:0;mso-hide:all!important;opacity:0;overflow:hidden;visibility:hidden\">\r\n	</span>\r\n	<table class=\"body\" style=\"-webkit-font-smoothing:antialiased;margin:0;background:#fff;border-collapse:collapse;border-spacing:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n		<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n			<td class=\"center\" align=\"center\" valign=\"top\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n				<center data-parsed=\"\" style=\"min-width:580px;width:100%\"><table align=\"center\" class=\"wrapper header float-center\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:20px;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:0 0;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:150px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n						<table class=\"row collapse\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n							<tbody>\r\n							<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n								<center data-parsed=\"\" style=\"background-color:#00679e;min-width:175px;max-height:175px; padding:35px 0px;border-radius:200px\">\r\n									<img class=\"logo float-center\" src=\"https://mavrix1.aponte.to/apps/theming/image/logo?useSvg=0&amp;v=9\" alt=\"Mavrix1\" align=\"center\" style=\"-ms-interpolation-mode:bicubic;clear:both;display:block;float:none;margin:0 auto;outline:0;text-align:center;text-decoration:none;max-height:105px;max-width:105px;width:auto;height:auto\" width=\"105\" height=\"22\">\r\n								</center>\r\n							</tr>\r\n							</tbody>\r\n						</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"40px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:80px;font-weight:400;hyphens:auto;line-height:80px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"container main-heading float-center\" style=\"Margin:0 auto;background:0 0!important;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:580px\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<h1 class=\"text-center\" style=\"Margin:0;Margin-bottom:10px;color:inherit;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:24px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:center;word-wrap:normal\">Leslie Staron updated the event \"Workforce Plan for Manufacturing\"</h1>\r\n		</td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"36px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:40px;font-weight:400;hyphens:auto;line-height:36px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"wrapper content float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:580px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/title.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Title:</em><br>Workforce Plan for Manufacturing</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/time.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">When:</em><br><span style=\"text-decoration: line-through\">In 37 minutes on Thursday, October 2, 2025 between 1:00 PM - 2:00 PM (America/New_York)</span><br>In 21 hours on Friday, October 3, 2025 between 10:00 AM - 11:00 AM (America/New_York)</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/location.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Location:</em><br>Signal:  https://signal.link/call/#key=kttm-sntx-rgsz-rctd-ddpp-qzbp-xzhc-tqbg</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/description.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Description:</em><br><span style=\"text-decoration: line-through\">Hi Everyone,\r\n\r\nSetting this up to review the new Job Architecture framework for the Manufacturing group that will be aligned with Jarrett\'s forecast.\r\n\r\nData to be Reviewed:\r\n-Job Family Design\r\n-Reporting Structure\r\n-Roles/Descriptions\r\n-Dual-Track Career Path\r\n-Skills, Scope &amp; Pay Alignment\r\n\r\nThe framework is already anchored in real market data, and designed with transparent crossover logic, to be scalable, and retention-focused.\r\n\r\nYour knowledge and feedback will help finalize the alignment.\r\n</span><br>*Rescheduling for Nathan and Jarrett.\r\n\r\nHi Everyone,\r\n\r\nSetting this up to review the new Job Architecture framework for the Manufacturing group that will be aligned with Jarrett\'s forecast.\r\n\r\nData to be Reviewed:\r\n-Job Family Design\r\n-Reporting Structure\r\n-Roles/Descriptions\r\n-Dual-Track Career Path\r\n-Skills, Scope &amp; Pay Alignment\r\n\r\nThe framework is already anchored in real market data, and designed with transparent crossover logic, to be scalable, and retention-focused.\r\n\r\nYour knowledge and feedback will help finalize the alignment.\r\n</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"spacer\" style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"50px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:50px;font-weight:400;hyphens:auto;line-height:50px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"row btn-group\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<center data-parsed=\"\" style=\"min-width:490px;width:100%\">\r\n							<!--[if (gte mso 9)|(IE)]>\r\n							<table>\r\n								<tr>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default primary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;margin:0 0 30px 0;margin-right:15px;border-radius:8px;max-width:300px;padding:0;text-align:center;vertical-align:top;width:auto;background:#00679e;background-color:#00679e;color:#fefefe;\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #00679e;border-collapse:collapse!important;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/accept/kF5VymzKF0RxSUxvwomdbeASs50Lyx3dD6dq1bIxsHTt8MTedi12CfYuaTBL\" style=\"Margin:0;border:0 solid #00679e;color:#ffffff;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;padding:8px;text-align:left;outline:1px solid #ffffff;text-decoration:none\">Accept</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default secondary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;background-color: #ccc;margin:0 0 30px 0;max-height:40px;max-width:300px;padding:1px;border-radius:8px;text-align:center;vertical-align:top;width:auto\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #777;border-collapse:collapse!important;color:#fefefe;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/decline/kF5VymzKF0RxSUxvwomdbeASs50Lyx3dD6dq1bIxsHTt8MTedi12CfYuaTBL\" style=\"Margin:0;background-color:#fff;border:0 solid #777;color:#6C6C6C!important;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;border-radius: 7px;padding:8px;text-align:left;text-decoration:none\">Decline</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n								</tr>\r\n							</table>\r\n							<![endif]-->\r\n						</center>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;text-align:center\"><small><a href=\"https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/kF5VymzKF0RxSUxvwomdbeASs50Lyx3dD6dq1bIxsHTt8MTedi12CfYuaTBL\">More options …</a></small></p>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table><table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"60px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:60px;font-weight:400;hyphens:auto;line-height:60px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"wrapper footer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<center data-parsed=\"\" style=\"min-width:580px;width:100%\">\r\n				<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n					<tbody>\r\n					<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n						<td height=\"15px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:15px;font-weight:400;hyphens:auto;line-height:15px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n					</tr>\r\n					</tbody>\r\n				</table>\r\n				<p class=\"text-center float-center\" align=\"center\" style=\"Margin:0;Margin-bottom:10px;color:#C8C8C8;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:10px;padding:0;text-align:center\">Mavrix1 - Manufacturing American Autonomy<br>This is an automatically sent email, please do not reply.</p>\r\n			</center>\r\n		</td>\r\n	</tr>\r\n</table>					</center>\r\n				</td>\r\n			</tr>\r\n		</table>\r\n		<!-- prevent Gmail on iOS font size manipulation -->\r\n		<div style=\"display:none;white-space:nowrap;font:15px courier;line-height:0\">                                                           </div>\r\n	</body>\r\n</html>','Leslie Staron updated the event \"Workforce Plan for Manufacturing\"\r\n\r\n         Title: Workforce Plan for Manufacturing\r\n          When: In 21 hours on Friday, October 3, 2025 between 10:00 AM - 11:00 AM (America/New_York)\r\n      Location: Signal:  https://signal.link/call/#key=kttm-sntx-rgsz-rctd-ddpp-qzbp-xzhc-tqbg\r\n   Description: *Rescheduling for Nathan and Jarrett.\r\n                \r\n                Hi Everyone,\r\n                \r\n                Setting this up to review the new Job Architecture framework for the Manufacturing group that will be aligned with Jarrett\'s forecast.\r\n                \r\n                Data to be Reviewed:\r\n                -Job Family Design\r\n                -Reporting Structure\r\n                -Roles/Descriptions\r\n                -Dual-Track Career Path\r\n                -Skills, Scope & Pay Alignment\r\n                \r\n                The framework is already anchored in real market data, and designed with transparent crossover logic, to be scalable, and retention-focused.\r\n                \r\n                Your knowledge and feedback will help finalize the alignment.\r\n                \r\n\r\nAccept: https://mavrix1.aponte.to/apps/dav/invitation/accept/kF5VymzKF0RxSUxvwomdbeASs50Lyx3dD6dq1bIxsHTt8MTedi12CfYuaTBL\r\nDecline: https://mavrix1.aponte.to/apps/dav/invitation/decline/kF5VymzKF0RxSUxvwomdbeASs50Lyx3dD6dq1bIxsHTt8MTedi12CfYuaTBL\r\n\r\nMore options at https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/kF5VymzKF0RxSUxvwomdbeASs50Lyx3dD6dq1bIxsHTt8MTedi12CfYuaTBL\r\n\r\n\r\n-- \r\nMavrix1 - Manufacturing American Autonomy\r\nThis is an automatically sent email, please do not reply.',0,0,0,0,0,0,'2025-10-02 16:22:25','2025-12-09 19:29:26','2025-12-09 19:29:26','2025-12-09 19:29:26',NULL,NULL,NULL),
(825,4,'<d4e8bd1c-210b-4ec2-83e7-b930ac2a00a7@mavrix.one>',NULL,NULL,'Fwd: Recap of your meeting with Lithium Battery Co','tony@mavrix.one','Tony Aponte','<!DOCTYPE html>\r\n<html>\r\n  <head>\r\n\r\n    <meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\">\r\n  </head>\r\n  <body\r\nstyle=\"margin:0; padding:0; -webkit-text-size-adjust:100%; -ms-text-size-adjust:100%; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; text-rendering:optimizeLegibility;\"\r\n    id=\"emailBody\">\r\n    <div class=\"moz-forward-container\"> \r\n      <title>FATHOM</title>\r\n      <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n      <meta name=\"viewport\"\r\n        content=\"width=device-width, initial-scale=1.0\">\r\n      <link\r\nhref=\"https://fonts.googleapis.com/css?family=Inter:300,400,500,600,700\"\r\n        rel=\"stylesheet\">\r\n      <style type=\"text/css\">a{\r\n        outline:none;\r\n        color:#00BEFF;\r\n        text-decoration:underline;\r\n      }a:hover{text-decoration:none!important;}.h-u a{text-decoration:none;}.h-u a:hover{text-decoration:underline!important;}a[x-apple-data-detectors]{color:inherit!important; text-decoration:none!important;}a[href^=\"tel\"]:hover{text-decoration:none!important;}.active-i a:hover,\r\n      .active-t td:hover{opacity:0.8;}.active-i a,\r\n      .active-t td{transition:all 0.3s ease;}a img{border:none;}b, strong{font-weight:700;}p{margin:0;}th{padding:0;}table td{mso-line-height-rule:exactly;}#emailBody #emailWrapper [x-apple-data-detectors]{color:inherit!important;text-decoration:inherit!important;}.l-white a{color:#fff;}:root{color-scheme:light;}[style*=\"Inter\"]{font-family:\'Inter\', Arial, Helvetica, sans-serif !important}[style*=\"Inter500\"]{font-weight:500!important; font-family:\'Inter\', Arial, Helvetica, sans-serif !important}.ico-block-02 a:hover{color:#fff!important;}.ico-block-03 a:hover {text-decoration:underline!important; color:#20C5FF!important;}.ico-block-03 a:hover .ico-hover{display:inline-block!important;}.ico-block-03 a:hover .ico-hover img{display:block; width:36px!important; height:auto!important;}.ai_notes_html_content a:hover {\r\n        color: #00beff;\r\n        text-decoration-line: underline !important;\r\n        -webkit-text-decoration-color:#54565B;\r\n        text-decoration-color:#54565B;\r\n      }.ai_notes_html_content a:hover img {\r\n        display: inline-block;\r\n        width: 48px !important;\r\n      }.ai_notes_html_content a:hover .ico-hover {\r\n        display:inline-block!important;\r\n      }.ai_notes_html_content a:hover .ico-hover img {\r\n        display:block;\r\n        width:36px!important;\r\n        height:auto!important;\r\n      }.underline {\r\n        text-decoration-line: underline;\r\n        text-decoration-style: solid;\r\n        text-decoration-skip-ink: none;\r\n        text-decoration-thickness: auto;\r\n        text-underline-offset: auto;\r\n        text-underline-position: from-font;\r\n      }</style>\r\n      <style type=\"text/css\"></style>\r\n      <div style=\"display:none;\">Meeting Purpose\r\n        Explore collaboration opportunities between Lithium Battery Co\r\n        and Panasonic Energy for domestic battery cell manufacturing and\r\n        pack assembly in the US.\r\n        Key Takeaways - Panasonic\'s Kansas facility focuses on 21700\r\n        cylindrical cells with high-nickel chemistry, ramping up to 32\r\n        GWh capacity by 2027 - Lithium Battery Co has 43,000 sq ft\r\n        manufacturing space in Tampa, FL with automated lines for\r\n        prismatic and cylindrical cells, capable of defense and\r\n        commercial applications - Both companies qualify for 45X\r\n        Advanced Manufacturing Credit; potential for 1-2.5M 21700 cells\r\n        order from Lithium Battery Co in 2026 - Next steps: Sign NDA,\r\n        share detailed cell specs and demand projections, explore\r\n        Panasonic\'s pack manufacturing capabilities\r\n        Topics\r\n        Panasonic\'s US Manufacturing Capabilities - Kansas facility\r\n        focusing on 21700 cylindrical cells with high-nickel chemistry -\r\n        Currently ramping up, aiming for 32 GWh capacity by 2027 - No\r\n        prismatic or LFP cells planned for US production - Publicly\r\n        announced customers include Tesla and Lucid - Facility will\r\n        employ ~4,000 people when fully operational\r\n        Lithium Battery Co\'s Facilities and Capabilities - 43,000 sq ft\r\n        manufacturing space in Tampa, FL (FTZ zone) - 5 automated\r\n        assembly lines: prismatic, large/small cylindrical, individual\r\n        lines for R&amp;D - Capable of producing battery modules,\r\n        portable power stations, and custom solutions - Strong focus on\r\n        defense contracts, UAVs, and energy storage systems - Exploring\r\n        battery recycling and second-life battery repurposing\r\n        Market Demand and Collaboration Opportunities - Lithium Battery\r\n        Co interested in 1-2.5M 21700 cells for 2026, primarily for\r\n        defense applications - Potential for Lithium Battery Co to act\r\n        as contract manufacturer for Panasonic\'s overflow - Both\r\n        companies qualify for 45X Advanced Manufacturing Credit -\r\n        Lithium Battery Co expanding, aiming to employ 1,500 people in\r\n        the next few years\r\n        Supply Chain and Raw Materials - Panasonic sourcing raw\r\n        materials from overseas, moving away from China - Focus on FIAC\r\n        compliance and future plans to source from North America\r\n        Product Range and Availability - Panasonic produces 18650 and\r\n        4680 cells in Japan (non-FIAC compliant) - No prismatic or pouch\r\n        cells in Panasonic\'s portfolio - Potential availability of\r\n        US-made 21700 cells for Lithium Battery Co by end of 2026\r\n        Next Steps - Panasonic to send template NDA for review and\r\n        signing - Share non-NDA presentations and capability statements\r\n        - Once NDA is in place, discuss detailed cell specifications and\r\n        demand projections - Panasonic to inquire about pack\r\n        manufacturing team\'s portfolio and potential spillover projects\r\n        - Explore potential for Lithium Battery Co to support\r\n        Panasonic\'s manufacturing needs\r\n      </div>\r\n      <table id=\"emailWrapper\" width=\"100%\" style=\"min-width:320px;\"\r\n        cellspacing=\"0\" cellpadding=\"0\">\r\n        <tbody>\r\n          <tr>\r\n            <td class=\"p-0\" style=\"padding:30px 0;\">\r\n              <table class=\"w-100p\" width=\"560\" align=\"center\"\r\n                style=\"max-width:560px; margin:0 auto;\" cellpadding=\"0\"\r\n                cellspacing=\"0\">\r\n                <tbody>\r\n                  <tr>\r\n                    <td class=\"pt-15\" style=\"padding:18px 0px 20px;\">\r\n                      <table class=\"maxw-560\"\r\nstyle=\"max-width:640px; width:100% !important; margin:0;\"\r\n                        cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tbody>\r\n                          <tr>\r\n                            <td>\r\n                              <table width=\"100%\" cellpadding=\"0\"\r\n                                cellspacing=\"0\">\r\n                                <tbody>\r\n                                  <tr>\r\n                                    <td align=\"left\"> <a\r\n                                        style=\"text-decoration:none;\"\r\nhref=\"https://fathom.video/?utm_campaign=postmeetingsummary&amp;utm_content=header&amp;utm_medium=email\"\r\n                                        moz-do-not-send=\"true\"> <img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/fathom-logo-black-2025.png\"\r\n                                          width=\"152\" alt=\"FATHOM\"\r\n                                          moz-do-not-send=\"true\"> </a>\r\n                                    </td>\r\n                                    <td align=\"right\"> <a\r\n                                        class=\"underline\"\r\nstyle=\"font:12px/16px Arial, Helvetica, sans-serif, Inter; color:#0070AC; letter-spacing:-.1px;\"\r\nhref=\"https://fathom.video/invite/KDiiWw?utm_medium=email&amp;utm_campaign=postmeetingsummary&amp;utm_content=header_ad\"\r\n                                        moz-do-not-send=\"true\"> <b>Get\r\n                                          your own FREE AI Meeting\r\n                                          Assistant</b> </a> <br>\r\n                                      <a style=\"text-decoration:none;\"\r\nhref=\"https://www.g2.com/products/fathom-2021-09-22/reviews\"\r\n                                        moz-do-not-send=\"true\"> <img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/g2-rating.png\"\r\n                                          width=\"203\"\r\nalt=\"#1 rated on G2, 5/5, 5000+ reviews\" moz-do-not-send=\"true\"> </a> </td>\r\n                                  </tr>\r\n                                </tbody>\r\n                              </table>\r\n                            </td>\r\n                          </tr>\r\n                        </tbody>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                  <tr>\r\n                    <td class=\"pt-15\">\r\n                      <table class=\"maxw-560\"\r\nstyle=\"max-width:640px; width:100% !important; margin:0;\"\r\n                        cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tbody>\r\n                          <tr>\r\n                            <td style=\"padding:0 0 20px;\">\r\n                              <table width=\"100%\" cellpadding=\"0\"\r\n                                cellspacing=\"0\">\r\n                                <tbody>\r\n                                  <tr>\r\n                                    <th class=\"tflex\" align=\"left\"\r\n                                      style=\"vertical-align:top;\">\r\n                                      <table width=\"100%\"\r\n                                        cellpadding=\"0\" cellspacing=\"0\">\r\n                                        <tbody>\r\n                                          <tr>\r\n                                            <td class=\"pt-0 pb-9\"\r\n                                              style=\"padding:8px 0 5px;\">\r\n                                              <table cellpadding=\"0\"\r\n                                                cellspacing=\"0\">\r\n                                                <tbody>\r\n                                                  <tr>\r\n                                                    <td\r\nstyle=\"font:600 16px/20px Arial, Helvetica, sans-serif, Inter; color:#606167;\">\r\n                                                      Meeting with\r\n                                                      Lithium Battery Co\r\n                                                    </td>\r\n                                                  </tr>\r\n                                                </tbody>\r\n                                              </table>\r\n                                            </td>\r\n                                          </tr>\r\n                                          <tr>\r\n                                            <td class=\"fs-24 lh-30\"\r\nstyle=\"padding:0 0 3px; font:700 28px/35px Arial, Helvetica, sans-serif, Inter; color:#000; letter-spacing:-.6px;\">\r\n                                              Meeting w/ Panasonic\r\n                                              Energy </td>\r\n                                          </tr>\r\n                                          <tr>\r\n                                            <td\r\nstyle=\"font:500 13px/17px Arial, Helvetica, sans-serif, Inter; color:#6C6D72; letter-spacing:-.2px;\">\r\n                                              October 02, 2025  <span\r\n                                                style=\"color:#D3D3D3;\">•</span> \r\n                                              26 mins  <span\r\n                                                style=\"color:#D3D3D3;\">•</span> \r\n                                              <a class=\"underline\"\r\n                                                style=\"color:#0070AC;\"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;utm_campaign=postmeetingsummary&amp;utm_content=view_recording_link&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">View\r\n                                                Meeting</a> or <a\r\n                                                class=\"underline\"\r\n                                                style=\"color:#0070AC;\"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=ask_fathom&amp;utm_campaign=postmeetingsummary&amp;utm_content=ask_fathom&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">Ask\r\n                                                Fathom</a> </td>\r\n                                          </tr>\r\n                                        </tbody>\r\n                                      </table>\r\n                                    </th>\r\n                                  </tr>\r\n                                </tbody>\r\n                              </table>\r\n                            </td>\r\n                          </tr>\r\n                          <tr>\r\n                            <td class=\"ptb-20\"\r\n                              style=\"border-radius:10px;\">\r\n                              <table width=\"560\" align=\"center\"\r\nstyle=\"max-width:560px; width:100% !important; margin:0px;\"\r\n                                cellpadding=\"0\" cellspacing=\"0\">\r\n                                <tbody>\r\n                                  <tr>\r\n                                    <td class=\"fs-20 lh-25\"\r\nstyle=\"padding:19px 0 10px; font:700 14px/17px Arial, Helvetica, sans-serif, Inter; color:#9C9C9C; letter-spacing:-.28px; text-transform: uppercase;\">\r\n                                      Action Items ✨ </td>\r\n                                  </tr>\r\n                                  <tr>\r\n                                    <td class=\"pb-10\"\r\n                                      style=\"padding:0 0 15px;\">\r\n                                      <table width=\"100%\"\r\n                                        cellpadding=\"0\" cellspacing=\"0\">\r\n                                        <tbody>\r\n                                          <tr>\r\n                                            <td width=\"16\" valign=\"top\"\r\nstyle=\"padding:0 0 15px; line-height:1px; font-size:1px; mso-line-height-rule:at-least;\">\r\n                                              <img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\"\r\n                                                width=\"16\"\r\nstyle=\"width:16px; display:block; vertical-align:top;\" alt=\"\"\r\n                                                moz-do-not-send=\"true\">\r\n                                            </td>\r\n                                            <td width=\"12\"\r\n                                              style=\"padding:0 0 15px;\"><br>\r\n                                            </td>\r\n                                            <td valign=\"top\"\r\n                                              style=\"padding:0 0 15px;\">\r\n                                              <table width=\"100%\"\r\n                                                cellpadding=\"0\"\r\n                                                cellspacing=\"0\">\r\n                                                <tbody>\r\n                                                  <tr>\r\n                                                    <td\r\nclass=\"ico-block-03 fs-14 lh-18\"\r\nstyle=\"padding:0 0 3px; font:600 14px/18px Arial, Helvetica, sans-serif, Inter; color:#000; letter-spacing:-.14px;\">\r\n                                                      <a\r\nstyle=\"color:#000; text-decoration:none;\"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=987.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\"\r\nmoz-do-not-send=\"true\"> Inquire internally re pack manufacturing team\r\n                                                        capacity for\r\n                                                        potential\r\n                                                        spillover\r\n                                                        projects\r\n                                                        <span\r\nclass=\"ico-hover\"\r\nstyle=\"display:none; font-size:0; line-height:0; vertical-align: middle; margin: 0 0 0 5px;\"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                          width=\"30\"\r\n                                                          height=\"30\"\r\nstyle=\"width:30px; height:auto; vertical-align:top; border:none;\" alt=\"\"\r\nmoz-do-not-send=\"true\"></span><span\r\nstyle=\"font:600 10px/12px Arial, Helvetica, sans-serif, Inter;\"></span>\r\n                                                      </a> </td>\r\n                                                  </tr>\r\n                                                  <tr>\r\n                                                    <td\r\nclass=\"ico-block-02\"\r\nstyle=\"font:12px/15.6px Arial, Helvetica, sans-serif, Inter; color:#6C6D72; letter-spacing:-.12px;\">\r\n                                                      Xavier Curiel </td>\r\n                                                  </tr>\r\n                                                </tbody>\r\n                                              </table>\r\n                                            </td>\r\n                                          </tr>\r\n                                          <tr>\r\n                                            <td width=\"16\" valign=\"top\"\r\nstyle=\"padding:0 0 15px; line-height:1px; font-size:1px; mso-line-height-rule:at-least;\">\r\n                                              <img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\"\r\n                                                width=\"16\"\r\nstyle=\"width:16px; display:block; vertical-align:top;\" alt=\"\"\r\n                                                moz-do-not-send=\"true\">\r\n                                            </td>\r\n                                            <td width=\"12\"\r\n                                              style=\"padding:0 0 15px;\"><br>\r\n                                            </td>\r\n                                            <td valign=\"top\"\r\n                                              style=\"padding:0 0 15px;\">\r\n                                              <table width=\"100%\"\r\n                                                cellpadding=\"0\"\r\n                                                cellspacing=\"0\">\r\n                                                <tbody>\r\n                                                  <tr>\r\n                                                    <td\r\nclass=\"ico-block-03 fs-14 lh-18\"\r\nstyle=\"padding:0 0 3px; font:600 14px/18px Arial, Helvetica, sans-serif, Inter; color:#000; letter-spacing:-.14px;\">\r\n                                                      <a\r\nstyle=\"color:#000; text-decoration:none;\"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=1515.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\"\r\nmoz-do-not-send=\"true\"> Send Panasonic NDA template to Jordan\r\n                                                        <span\r\nclass=\"ico-hover\"\r\nstyle=\"display:none; font-size:0; line-height:0; vertical-align: middle; margin: 0 0 0 5px;\"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                          width=\"30\"\r\n                                                          height=\"30\"\r\nstyle=\"width:30px; height:auto; vertical-align:top; border:none;\" alt=\"\"\r\nmoz-do-not-send=\"true\"></span><span\r\nstyle=\"font:600 10px/12px Arial, Helvetica, sans-serif, Inter;\"></span>\r\n                                                      </a> </td>\r\n                                                  </tr>\r\n                                                  <tr>\r\n                                                    <td\r\nclass=\"ico-block-02\"\r\nstyle=\"font:12px/15.6px Arial, Helvetica, sans-serif, Inter; color:#6C6D72; letter-spacing:-.12px;\">\r\n                                                      Xavier Curiel </td>\r\n                                                  </tr>\r\n                                                </tbody>\r\n                                              </table>\r\n                                            </td>\r\n                                          </tr>\r\n                                          <tr>\r\n                                            <td width=\"16\" valign=\"top\"\r\nstyle=\"padding:0 0 15px; line-height:1px; font-size:1px; mso-line-height-rule:at-least;\">\r\n                                              <img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\"\r\n                                                width=\"16\"\r\nstyle=\"width:16px; display:block; vertical-align:top;\" alt=\"\"\r\n                                                moz-do-not-send=\"true\">\r\n                                            </td>\r\n                                            <td width=\"12\"\r\n                                              style=\"padding:0 0 15px;\"><br>\r\n                                            </td>\r\n                                            <td valign=\"top\"\r\n                                              style=\"padding:0 0 15px;\">\r\n                                              <table width=\"100%\"\r\n                                                cellpadding=\"0\"\r\n                                                cellspacing=\"0\">\r\n                                                <tbody>\r\n                                                  <tr>\r\n                                                    <td\r\nclass=\"ico-block-03 fs-14 lh-18\"\r\nstyle=\"padding:0 0 3px; font:600 14px/18px Arial, Helvetica, sans-serif, Inter; color:#000; letter-spacing:-.14px;\">\r\n                                                      <a\r\nstyle=\"color:#000; text-decoration:none;\"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=1527.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\"\r\nmoz-do-not-send=\"true\"> Share non-NDA Panasonic Energy overview\r\n                                                        presentation\r\n                                                        with Jordan\r\n                                                        <span\r\nclass=\"ico-hover\"\r\nstyle=\"display:none; font-size:0; line-height:0; vertical-align: middle; margin: 0 0 0 5px;\"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                          width=\"30\"\r\n                                                          height=\"30\"\r\nstyle=\"width:30px; height:auto; vertical-align:top; border:none;\" alt=\"\"\r\nmoz-do-not-send=\"true\"></span><span\r\nstyle=\"font:600 10px/12px Arial, Helvetica, sans-serif, Inter;\"></span>\r\n                                                      </a> </td>\r\n                                                  </tr>\r\n                                                  <tr>\r\n                                                    <td\r\nclass=\"ico-block-02\"\r\nstyle=\"font:12px/15.6px Arial, Helvetica, sans-serif, Inter; color:#6C6D72; letter-spacing:-.12px;\">\r\n                                                      Xavier Curiel </td>\r\n                                                  </tr>\r\n                                                </tbody>\r\n                                              </table>\r\n                                            </td>\r\n                                          </tr>\r\n                                          <tr>\r\n                                            <td width=\"16\" valign=\"top\"\r\nstyle=\"padding:0 0 15px; line-height:1px; font-size:1px; mso-line-height-rule:at-least;\">\r\n                                              <img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\"\r\n                                                width=\"16\"\r\nstyle=\"width:16px; display:block; vertical-align:top;\" alt=\"\"\r\n                                                moz-do-not-send=\"true\">\r\n                                            </td>\r\n                                            <td width=\"12\"\r\n                                              style=\"padding:0 0 15px;\"><br>\r\n                                            </td>\r\n                                            <td valign=\"top\"\r\n                                              style=\"padding:0 0 15px;\">\r\n                                              <table width=\"100%\"\r\n                                                cellpadding=\"0\"\r\n                                                cellspacing=\"0\">\r\n                                                <tbody>\r\n                                                  <tr>\r\n                                                    <td\r\nclass=\"ico-block-03 fs-14 lh-18\"\r\nstyle=\"padding:0 0 3px; font:600 14px/18px Arial, Helvetica, sans-serif, Inter; color:#000; letter-spacing:-.14px;\">\r\n                                                      <a\r\nstyle=\"color:#000; text-decoration:none;\"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=1536.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\"\r\nmoz-do-not-send=\"true\"> Share Lithium Battery Co capability statement\r\n                                                        with Xavier\r\n                                                        <span\r\nclass=\"ico-hover\"\r\nstyle=\"display:none; font-size:0; line-height:0; vertical-align: middle; margin: 0 0 0 5px;\"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                          width=\"30\"\r\n                                                          height=\"30\"\r\nstyle=\"width:30px; height:auto; vertical-align:top; border:none;\" alt=\"\"\r\nmoz-do-not-send=\"true\"></span><span\r\nstyle=\"font:600 10px/12px Arial, Helvetica, sans-serif, Inter;\"></span>\r\n                                                      </a> </td>\r\n                                                  </tr>\r\n                                                  <tr>\r\n                                                    <td\r\nclass=\"ico-block-02\"\r\nstyle=\"font:12px/15.6px Arial, Helvetica, sans-serif, Inter; color:#6C6D72; letter-spacing:-.12px;\">\r\n                                                      Jordan Wroblewski\r\n                                                    </td>\r\n                                                  </tr>\r\n                                                </tbody>\r\n                                              </table>\r\n                                            </td>\r\n                                          </tr>\r\n                                        </tbody>\r\n                                      </table>\r\n                                    </td>\r\n                                  </tr>\r\n                                  <tr>\r\n                                    <td style=\"padding:0px;\">\r\n                                      <table cellpadding=\"0\"\r\n                                        cellspacing=\"0\">\r\n                                        <tbody>\r\n                                          <tr>\r\n                                            <td colspan=\"3\"\r\nclass=\"fs-20 lh-24 fs-11-390 lh-13-390\"\r\nstyle=\"font:700 14px/17px Arial, Helvetica, sans-serif, Inter; color:#9C9C9C; letter-spacing:-.28px; text-transform: uppercase;\">\r\n                                              Meeting Summary ✨ </td>\r\n                                          </tr>\r\n                                          <tr>\r\n                                            <td height=\"12\"><br>\r\n                                            </td>\r\n                                          </tr>\r\n                                        </tbody>\r\n                                      </table>\r\n                                    </td>\r\n                                  </tr>\r\n                                  <tr>\r\n                                    <td style=\"padding:0 0 15px;\">\r\n                                      <div class=\"ai_notes_html_content\">\r\n                                        <h2\r\nstyle=\"\r\n      padding: 0 0 5px;\r\n      color: #000;\r\n      letter-spacing: -0.3px;\r\n      font: 700 16px/20px Arial, Helvetica, sans-serif, Inter;\r\n      margin: 25px 0 0 0;\r\n    \">Meeting Purpose</h2>\r\n                                        <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0 0 25px 0;\r\n    \">\r\n                                          Explore collaboration\r\n                                          opportunities between Lithium\r\n                                          Battery Co and Panasonic\r\n                                          Energy for domestic battery\r\n                                          cell manufacturing and pack\r\n                                          assembly in the US.\r\n                                        </p>\r\n                                        <h2\r\nstyle=\"\r\n      padding: 0 0 5px;\r\n      color: #000;\r\n      letter-spacing: -0.3px;\r\n      font: 700 16px/20px Arial, Helvetica, sans-serif, Inter;\r\n      margin: 25px 0 0 0;\r\n    \">Key Takeaways</h2>\r\n                                        <ul\r\nstyle=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0 0 25px 0;\r\n    \">\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=236.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">Panasonic\'s\r\n                                                Kansas facility focuses\r\n                                                on 21700 cylindrical\r\n                                                cells with high-nickel\r\n                                                chemistry, ramping up to\r\n                                                32 GWh capacity by 2027<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=470.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">Lithium\r\n                                                Battery Co has 43,000 sq\r\n                                                ft manufacturing space\r\n                                                in Tampa, FL with\r\n                                                automated lines for\r\n                                                prismatic and\r\n                                                cylindrical cells,\r\n                                                capable of defense and\r\n                                                commercial applications<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=1044.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">Both\r\n                                                companies qualify for\r\n                                                45X Advanced\r\n                                                Manufacturing Credit;\r\n                                                potential for 1-2.5M\r\n                                                21700 cells order from\r\n                                                Lithium Battery Co in\r\n                                                2026<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=1445.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">Next\r\n                                                steps: Sign NDA, share\r\n                                                detailed cell specs and\r\n                                                demand projections,\r\n                                                explore Panasonic\'s pack\r\n                                                manufacturing\r\n                                                capabilities<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                        </ul>\r\n                                        <h2\r\nstyle=\"\r\n      padding: 0 0 5px;\r\n      color: #000;\r\n      letter-spacing: -0.3px;\r\n      font: 700 16px/20px Arial, Helvetica, sans-serif, Inter;\r\n      margin: 25px 0 0 0;\r\n    \">Topics</h2>\r\n                                        <h3\r\nstyle=\"\r\n      padding: 0 0 5px;\r\n      color: #000;\r\n      letter-spacing: -0.3px;\r\n      font: 700 14px/18px Arial, Helvetica, sans-serif, Inter;\r\n      margin: 0;\r\n    \">Panasonic\'s US Manufacturing Capabilities</h3>\r\n                                        <ul\r\nstyle=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0 0 25px 0;\r\n    \">\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=236.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">Kansas\r\n                                                facility focusing on\r\n                                                21700 cylindrical cells\r\n                                                with high-nickel\r\n                                                chemistry<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=289.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">Currently\r\n                                                ramping up, aiming for\r\n                                                32 GWh capacity by 2027<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=236.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">No\r\n                                                prismatic or LFP cells\r\n                                                planned for US\r\n                                                production<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=331.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">Publicly\r\n                                                announced customers\r\n                                                include Tesla and Lucid<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=426.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">Facility\r\n                                                will employ ~4,000\r\n                                                people when fully\r\n                                                operational<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                        </ul>\r\n                                        <h3\r\nstyle=\"\r\n      padding: 0 0 5px;\r\n      color: #000;\r\n      letter-spacing: -0.3px;\r\n      font: 700 14px/18px Arial, Helvetica, sans-serif, Inter;\r\n      margin: 0;\r\n    \">Lithium Battery Co\'s Facilities and Capabilities</h3>\r\n                                        <ul\r\nstyle=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0 0 25px 0;\r\n    \">\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=502.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">43,000\r\n                                                sq ft manufacturing\r\n                                                space in Tampa, FL (FTZ\r\n                                                zone)<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=522.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">5\r\n                                                automated assembly\r\n                                                lines: prismatic,\r\n                                                large/small cylindrical,\r\n                                                individual lines for\r\n                                                R&amp;D<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=556.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">Capable\r\n                                                of producing battery\r\n                                                modules, portable power\r\n                                                stations, and custom\r\n                                                solutions<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=681.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">Strong\r\n                                                focus on defense\r\n                                                contracts, UAVs, and\r\n                                                energy storage systems<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=792.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">Exploring\r\n                                                battery recycling and\r\n                                                second-life battery\r\n                                                repurposing<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                        </ul>\r\n                                        <h3\r\nstyle=\"\r\n      padding: 0 0 5px;\r\n      color: #000;\r\n      letter-spacing: -0.3px;\r\n      font: 700 14px/18px Arial, Helvetica, sans-serif, Inter;\r\n      margin: 0;\r\n    \">Market Demand and Collaboration Opportunities</h3>\r\n                                        <ul\r\nstyle=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0 0 25px 0;\r\n    \">\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=884.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">Lithium\r\n                                                Battery Co interested in\r\n                                                1-2.5M 21700 cells for\r\n                                                2026, primarily for\r\n                                                defense applications<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=630.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">Potential\r\n                                                for Lithium Battery Co\r\n                                                to act as contract\r\n                                                manufacturer for\r\n                                                Panasonic\'s overflow<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=1044.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">Both\r\n                                                companies qualify for\r\n                                                45X Advanced\r\n                                                Manufacturing Credit<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=1087.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">Lithium\r\n                                                Battery Co expanding,\r\n                                                aiming to employ 1,500\r\n                                                people in the next few\r\n                                                years<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                        </ul>\r\n                                        <h3\r\nstyle=\"\r\n      padding: 0 0 5px;\r\n      color: #000;\r\n      letter-spacing: -0.3px;\r\n      font: 700 14px/18px Arial, Helvetica, sans-serif, Inter;\r\n      margin: 0;\r\n    \">Supply Chain and Raw Materials</h3>\r\n                                        <ul\r\nstyle=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0 0 25px 0;\r\n    \">\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=1174.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">Panasonic\r\n                                                sourcing raw materials\r\n                                                from overseas, moving\r\n                                                away from China<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=1174.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">Focus\r\n                                                on FIAC compliance and\r\n                                                future plans to source\r\n                                                from North America<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                        </ul>\r\n                                        <h3\r\nstyle=\"\r\n      padding: 0 0 5px;\r\n      color: #000;\r\n      letter-spacing: -0.3px;\r\n      font: 700 14px/18px Arial, Helvetica, sans-serif, Inter;\r\n      margin: 0;\r\n    \">Product Range and Availability</h3>\r\n                                        <ul\r\nstyle=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0 0 25px 0;\r\n    \">\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=1351.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">Panasonic\r\n                                                produces 18650 and 4680\r\n                                                cells in Japan (non-FIAC\r\n                                                compliant)<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=1383.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">No\r\n                                                prismatic or pouch cells\r\n                                                in Panasonic\'s portfolio<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=1243.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">Potential\r\n                                                availability of US-made\r\n                                                21700 cells for Lithium\r\n                                                Battery Co by end of\r\n                                                2026<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                        </ul>\r\n                                        <h2\r\nstyle=\"\r\n      padding: 0 0 5px;\r\n      color: #000;\r\n      letter-spacing: -0.3px;\r\n      font: 700 16px/20px Arial, Helvetica, sans-serif, Inter;\r\n      margin: 25px 0 0 0;\r\n    \">Next Steps</h2>\r\n                                        <ul\r\nstyle=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0 0 25px 0;\r\n    \">\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=1526.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">Panasonic\r\n                                                to send template NDA for\r\n                                                review and signing<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=1526.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">Share\r\n                                                non-NDA presentations\r\n                                                and capability\r\n                                                statements<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=1445.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">Once\r\n                                                NDA is in place, discuss\r\n                                                detailed cell\r\n                                                specifications and\r\n                                                demand projections<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=1492.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">Panasonic\r\n                                                to inquire about pack\r\n                                                manufacturing team\'s\r\n                                                portfolio and potential\r\n                                                spillover projects<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                          <li\r\nstyle=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n                                            <p\r\nstyle=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n                                              <a\r\nstyle=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;timestamp=630.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">Explore\r\n                                                potential for Lithium\r\n                                                Battery Co to support\r\n                                                Panasonic\'s\r\n                                                manufacturing needs<span\r\n                                                  class=\"ico-hover\"\r\nstyle=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\"\r\n                                                    width=\"30\"\r\n                                                    height=\"30\"\r\nstyle=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \" moz-do-not-send=\"true\"></span></a>\r\n                                            </p>\r\n                                          </li>\r\n                                        </ul>\r\n                                      </div>\r\n                                    </td>\r\n                                  </tr>\r\n                                  <tr>\r\n                                    <td style=\"padding:1px 0 0;\">\r\n                                      <table width=\"100%\"\r\n                                        cellpadding=\"0\" cellspacing=\"0\">\r\n                                        <tbody>\r\n                                          <tr class=\"active-t\">\r\n                                            <td class=\"fs-18 lh-22\"\r\n                                              align=\"center\"\r\nstyle=\"background:#00BEFF; mso-padding-alt:13px 15px; font:bold 20px/24px Arial, Helvetica, sans-serif, Inter; border-radius:6px;\">\r\n                                              <a\r\nstyle=\"color:#000; text-decoration:none; display:block; padding:13px 15px;\"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&amp;utm_campaign=postmeetingsummary&amp;utm_content=view_recording_button&amp;utm_medium=email\"\r\n                                                moz-do-not-send=\"true\">View\r\n                                                Meeting →</a> </td>\r\n                                          </tr>\r\n                                        </tbody>\r\n                                      </table>\r\n                                    </td>\r\n                                  </tr>\r\n                                  <tr height=\"25\">\r\n                                  </tr>\r\n                                  <tr>\r\n                                    <td>\r\n                                      <table width=\"560\"\r\nstyle=\"max-width:560px; width: 560px; background-color: #00BEFF1A;\">\r\n                                        <tbody>\r\n                                          <tr>\r\n                                            <td\r\nstyle=\"width: 250px; padding: 20px 5px 8px 20px; vertical-align: top;\">\r\n                                              <table>\r\n                                                <tbody>\r\n                                                  <tr>\r\n                                                    <td> <img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/robot.png\"\r\n                                                        width=\"32\"\r\nmoz-do-not-send=\"true\"> </td>\r\n                                                  </tr>\r\n                                                  <tr height=\"10\">\r\n                                                  </tr>\r\n                                                  <tr>\r\n                                                    <td\r\nstyle=\"font:700 14px/16px Arial, Helvetica, sans-serif, Inter; color:#2D2D31; letter-spacing:-.4px;\">\r\n                                                      Ask Fathom! </td>\r\n                                                  </tr>\r\n                                                  <tr>\r\n                                                    <td\r\nstyle=\"font:500 14px/16px Arial, Helvetica, sans-serif, Inter; color:#3D3D44; letter-spacing:-.28px;\">\r\n                                                      Ask our AI\r\n                                                      Assistant for\r\n                                                      answers and\r\n                                                      insights. It\'s\r\n                                                      ChatGPT for your\r\n                                                      meetings! </td>\r\n                                                  </tr>\r\n                                                  <tr height=\"10\">\r\n                                                  </tr>\r\n                                                  <tr>\r\n                                                    <td> <a\r\nclass=\"underline\"\r\nstyle=\"font:500 14px/16px Arial, Helvetica, sans-serif, Inter; color:#0070AC; letter-spacing:-.28px;\"\r\nhref=\"https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=ask_fathom&amp;utm_campaign=postmeetingsummary&amp;utm_content=ask_fathom_footer&amp;utm_medium=email\"\r\nmoz-do-not-send=\"true\">Try Ask Fathom →</a> </td>\r\n                                                  </tr>\r\n                                                </tbody>\r\n                                              </table>\r\n                                            </td>\r\n                                            <td style=\"padding: 8px;\"> <img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ask-fathom-screenshot.png\"\r\n                                                width=\"310\"\r\n                                                moz-do-not-send=\"true\">\r\n                                            </td>\r\n                                          </tr>\r\n                                        </tbody>\r\n                                      </table>\r\n                                    </td>\r\n                                  </tr>\r\n                                </tbody>\r\n                              </table>\r\n                            </td>\r\n                          </tr>\r\n                          <tr>\r\n                            <td style=\"padding:24px 0 0;\">\r\n                              <table width=\"100%\" cellpadding=\"0\"\r\n                                cellspacing=\"0\">\r\n                                <tbody>\r\n                                  <tr>\r\n                                    <th width=\"250\" align=\"center\"\r\nstyle=\"font:700 12px/17px Arial, Helvetica, sans-serif, Inter500; color:#6C6D72; vertical-align:top;\">\r\n                                      <table cellpadding=\"0\"\r\n                                        cellspacing=\"0\">\r\n                                        <tbody>\r\n                                          <tr>\r\n                                            <td\r\nstyle=\"font:700 13px/28px Arial, Helvetica, sans-serif, Inter; color:#000;\">\r\n                                              Never take notes again. <a\r\n                                                class=\"underline\"\r\nstyle=\"color:#0070AC; text-decoration:underline;\"\r\nhref=\"https://fathom.video/invite/KDiiWw?utm_medium=email&amp;utm_campaign=postmeetingsummary&amp;utm_content=footer\"\r\n                                                moz-do-not-send=\"true\">Sign\r\n                                                up for Free</a> </td>\r\n                                          </tr>\r\n                                          <tr>\r\n                                            <td\r\nstyle=\"font:500 11px/13px Arial, Helvetica, sans-serif, Inter500; color:#6C6D72;\">\r\n                                              🎁 Referral bonus: Sign up\r\n                                              now and unlock a free\r\n                                              month of Premium for you\r\n                                              and Nathan </td>\r\n                                          </tr>\r\n                                        </tbody>\r\n                                      </table>\r\n                                    </th>\r\n                                  </tr>\r\n                                </tbody>\r\n                              </table>\r\n                            </td>\r\n                          </tr>\r\n                          <tr>\r\n                            <td height=\"20\"><br>\r\n                            </td>\r\n                          </tr>\r\n                          <tr>\r\n                            <td>\r\n                              <table width=\"100%\" cellpadding=\"0\"\r\n                                cellspacing=\"0\">\r\n                                <tbody>\r\n                                  <tr>\r\n                                    <td align=\"center\"> <a\r\n                                        style=\"text-decoration:none;\"\r\nhref=\"https://www.g2.com/products/fathom-2021-09-22/reviews\"\r\n                                        moz-do-not-send=\"true\"> <img\r\nsrc=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/rating.png\"\r\n                                          width=\"153\"\r\n                                          moz-do-not-send=\"true\"> </a>\r\n                                    </td>\r\n                                  </tr>\r\n                                </tbody>\r\n                              </table>\r\n                            </td>\r\n                          </tr>\r\n                        </tbody>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </tbody>\r\n              </table>\r\n            </td>\r\n          </tr>\r\n        </tbody>\r\n      </table>\r\n    </div>\r\n  </body>\r\n</html>','FATHOM\r\nMeeting Purpose Explore collaboration opportunities between Lithium \r\nBattery Co and Panasonic Energy for domestic battery cell manufacturing \r\nand pack assembly in the US. Key Takeaways - Panasonic\'s Kansas facility \r\nfocuses on 21700 cylindrical cells with high-nickel chemistry, ramping \r\nup to 32 GWh capacity by 2027 - Lithium Battery Co has 43,000 sq ft \r\nmanufacturing space in Tampa, FL with automated lines for prismatic and \r\ncylindrical cells, capable of defense and commercial applications - Both \r\ncompanies qualify for 45X Advanced Manufacturing Credit; potential for \r\n1-2.5M 21700 cells order from Lithium Battery Co in 2026 - Next steps: \r\nSign NDA, share detailed cell specs and demand projections, explore \r\nPanasonic\'s pack manufacturing capabilities Topics Panasonic\'s US \r\nManufacturing Capabilities - Kansas facility focusing on 21700 \r\ncylindrical cells with high-nickel chemistry - Currently ramping up, \r\naiming for 32 GWh capacity by 2027 - No prismatic or LFP cells planned \r\nfor US production - Publicly announced customers include Tesla and Lucid \r\n- Facility will employ ~4,000 people when fully operational Lithium \r\nBattery Co\'s Facilities and Capabilities - 43,000 sq ft manufacturing \r\nspace in Tampa, FL (FTZ zone) - 5 automated assembly lines: prismatic, \r\nlarge/small cylindrical, individual lines for R&D - Capable of producing \r\nbattery modules, portable power stations, and custom solutions - Strong \r\nfocus on defense contracts, UAVs, and energy storage systems - Exploring \r\nbattery recycling and second-life battery repurposing Market Demand and \r\nCollaboration Opportunities - Lithium Battery Co interested in 1-2.5M \r\n21700 cells for 2026, primarily for defense applications - Potential for \r\nLithium Battery Co to act as contract manufacturer for Panasonic\'s \r\noverflow - Both companies qualify for 45X Advanced Manufacturing Credit \r\n- Lithium Battery Co expanding, aiming to employ 1,500 people in the \r\nnext few years Supply Chain and Raw Materials - Panasonic sourcing raw \r\nmaterials from overseas, moving away from China - Focus on FIAC \r\ncompliance and future plans to source from North America Product Range \r\nand Availability - Panasonic produces 18650 and 4680 cells in Japan \r\n(non-FIAC compliant) - No prismatic or pouch cells in Panasonic\'s \r\nportfolio - Potential availability of US-made 21700 cells for Lithium \r\nBattery Co by end of 2026 Next Steps - Panasonic to send template NDA \r\nfor review and signing - Share non-NDA presentations and capability \r\nstatements - Once NDA is in place, discuss detailed cell specifications \r\nand demand projections - Panasonic to inquire about pack manufacturing \r\nteam\'s portfolio and potential spillover projects - Explore potential \r\nfor Lithium Battery Co to support Panasonic\'s manufacturing needs\r\nFATHOM \r\n<https://fathom.video/?utm_campaign=postmeetingsummary&utm_content=header&utm_medium=email> \r\n	*Get your own FREE AI Meeting Assistant* \r\n<https://fathom.video/invite/KDiiWw?utm_medium=email&utm_campaign=postmeetingsummary&utm_content=header_ad> \r\n\r\n#1 rated on G2, 5/5, 5000+ reviews \r\n<https://www.g2.com/products/fathom-2021-09-22/reviews>\r\n\r\nMeeting with Lithium Battery Co\r\n\r\nMeeting w/ Panasonic Energy\r\nOctober 02, 2025 • 26 mins • View Meeting \r\n<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&utm_campaign=postmeetingsummary&utm_content=view_recording_link&utm_medium=email> \r\nor Ask Fathom \r\n<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=ask_fathom&utm_campaign=postmeetingsummary&utm_content=ask_fathom&utm_medium=email> \r\n\r\n\r\nAction Items ✨\r\n	\r\n	\r\nInquire internally re pack manufacturing team capacity for potential \r\nspillover projects \r\n<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=987.9999&utm_campaign=postmeetingsummary&utm_content=action_item&utm_medium=email> \r\n\r\nXavier Curiel\r\n\r\n	\r\n	\r\nSend Panasonic NDA template to Jordan \r\n<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=1515.9999&utm_campaign=postmeetingsummary&utm_content=action_item&utm_medium=email> \r\n\r\nXavier Curiel\r\n\r\n	\r\n	\r\nShare non-NDA Panasonic Energy overview presentation with Jordan \r\n<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=1527.9999&utm_campaign=postmeetingsummary&utm_content=action_item&utm_medium=email> \r\n\r\nXavier Curiel\r\n\r\n	\r\n	\r\nShare Lithium Battery Co capability statement with Xavier \r\n<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=1536.9999&utm_campaign=postmeetingsummary&utm_content=action_item&utm_medium=email> \r\n\r\nJordan Wroblewski\r\n\r\nMeeting Summary ✨\r\n\r\n\r\n    Meeting Purpose\r\n\r\nExplore collaboration opportunities between Lithium Battery Co and \r\nPanasonic Energy for domestic battery cell manufacturing and pack \r\nassembly in the US.\r\n\r\n\r\n    Key Takeaways\r\n\r\n  *\r\n\r\n    Panasonic\'s Kansas facility focuses on 21700 cylindrical cells with\r\n    high-nickel chemistry, ramping up to 32 GWh capacity by\r\n    2027<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=236.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n  *\r\n\r\n    Lithium Battery Co has 43,000 sq ft manufacturing space in Tampa, FL\r\n    with automated lines for prismatic and cylindrical cells, capable of\r\n    defense and commercial\r\n    applications<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=470.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n  *\r\n\r\n    Both companies qualify for 45X Advanced Manufacturing Credit;\r\n    potential for 1-2.5M 21700 cells order from Lithium Battery Co in\r\n    2026<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=1044.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n  *\r\n\r\n    Next steps: Sign NDA, share detailed cell specs and demand\r\n    projections, explore Panasonic\'s pack manufacturing\r\n    capabilities<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=1445.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n\r\n    Topics\r\n\r\n\r\n      Panasonic\'s US Manufacturing Capabilities\r\n\r\n  *\r\n\r\n    Kansas facility focusing on 21700 cylindrical cells with high-nickel\r\n    chemistry<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=236.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n  *\r\n\r\n    Currently ramping up, aiming for 32 GWh capacity by\r\n    2027<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=289.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n  *\r\n\r\n    No prismatic or LFP cells planned for US\r\n    production<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=236.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n  *\r\n\r\n    Publicly announced customers include Tesla and\r\n    Lucid<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=331.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n  *\r\n\r\n    Facility will employ ~4,000 people when fully\r\n    operational<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=426.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n\r\n      Lithium Battery Co\'s Facilities and Capabilities\r\n\r\n  *\r\n\r\n    43,000 sq ft manufacturing space in Tampa, FL (FTZ\r\n    zone)<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=502.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n  *\r\n\r\n    5 automated assembly lines: prismatic, large/small cylindrical,\r\n    individual lines for\r\n    R&D<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=522.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n  *\r\n\r\n    Capable of producing battery modules, portable power stations, and\r\n    custom\r\n    solutions<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=556.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n  *\r\n\r\n    Strong focus on defense contracts, UAVs, and energy storage\r\n    systems<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=681.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n  *\r\n\r\n    Exploring battery recycling and second-life battery\r\n    repurposing<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=792.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n\r\n      Market Demand and Collaboration Opportunities\r\n\r\n  *\r\n\r\n    Lithium Battery Co interested in 1-2.5M 21700 cells for 2026,\r\n    primarily for defense\r\n    applications<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=884.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n  *\r\n\r\n    Potential for Lithium Battery Co to act as contract manufacturer for\r\n    Panasonic\'s\r\n    overflow<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=630.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n  *\r\n\r\n    Both companies qualify for 45X Advanced Manufacturing\r\n    Credit<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=1044.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n  *\r\n\r\n    Lithium Battery Co expanding, aiming to employ 1,500 people in the\r\n    next few\r\n    years<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=1087.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n\r\n      Supply Chain and Raw Materials\r\n\r\n  *\r\n\r\n    Panasonic sourcing raw materials from overseas, moving away from\r\n    China<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=1174.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n  *\r\n\r\n    Focus on FIAC compliance and future plans to source from North\r\n    America<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=1174.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n\r\n      Product Range and Availability\r\n\r\n  *\r\n\r\n    Panasonic produces 18650 and 4680 cells in Japan (non-FIAC\r\n    compliant)<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=1351.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n  *\r\n\r\n    No prismatic or pouch cells in Panasonic\'s\r\n    portfolio<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=1383.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n  *\r\n\r\n    Potential availability of US-made 21700 cells for Lithium Battery Co\r\n    by end of\r\n    2026<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=1243.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n\r\n    Next Steps\r\n\r\n  *\r\n\r\n    Panasonic to send template NDA for review and\r\n    signing<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=1526.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n  *\r\n\r\n    Share non-NDA presentations and capability\r\n    statements<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=1526.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n  *\r\n\r\n    Once NDA is in place, discuss detailed cell specifications and\r\n    demand\r\n    projections<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=1445.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n  *\r\n\r\n    Panasonic to inquire about pack manufacturing team\'s portfolio and\r\n    potential spillover\r\n    projects<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=1492.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\n  *\r\n\r\n    Explore potential for Lithium Battery Co to support Panasonic\'s\r\n    manufacturing\r\n    needs<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&timestamp=630.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\n\r\nView Meeting → \r\n<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=summary&utm_campaign=postmeetingsummary&utm_content=view_recording_button&utm_medium=email> \r\n\r\n\r\nAsk Fathom!\r\nAsk our AI Assistant for answers and insights. It\'s ChatGPT for your \r\nmeetings!\r\nTry Ask Fathom → \r\n<https://fathom.video/share/9yTsHLz5UXxdG1qMv6kPMW6tms23iwyu?tab=ask_fathom&utm_campaign=postmeetingsummary&utm_content=ask_fathom_footer&utm_medium=email> \r\n\r\n\r\n	\r\n\r\nNever take notes again. Sign up for Free \r\n<https://fathom.video/invite/KDiiWw?utm_medium=email&utm_campaign=postmeetingsummary&utm_content=footer> \r\n\r\n🎁 Referral bonus: Sign up now and unlock a free month of Premium for \r\nyou and Nathan\r\n\r\n\r\n<https://www.g2.com/products/fathom-2021-09-22/reviews>',0,0,0,0,0,0,'2025-10-02 18:53:15','2025-12-09 19:29:26','2025-12-09 19:29:26','2025-12-09 19:29:26',NULL,NULL,NULL),
(826,4,'<CAGroy4zLc+gphVb-_DHtvj2Q6+ydpq4wif=byhhteaxL1cEAxg@mail.gmail.com>',NULL,NULL,'Follow up from Signal','luh718@g.harvard.edu','\"Hollis, Luke\"','<div dir=\"ltr\">Hi Rick, <div><br></div><div>I hope that you&#39;re doing well and looking forward to hearing how the new factory is going. Do you know ProDex? I just got off a call with them and was really impressed about their simulation tech, having worked in the space myself. I&#39;m back to school starting my Data Science Masters degree if there&#39;s ever anything that I can do to help the factory or operational simulation, especially in physics-based environments, etc, I&#39;m glad to do so. CV is attached.</div><div><br></div><div>Thanks again, and I hope that you&#39;re doing well. </div><div><br></div><div>Yours, </div><div><br></div><div>Luke</div><div><br></div><div>---</div><div>Luke Hollis</div><div>Research Scientist, MIT</div><div>Masters Data Science candidate &#39;27, Harvard University</div></div>','Hi Rick,\r\n\r\nI hope that you\'re doing well and looking forward to hearing how the new\r\nfactory is going. Do you know ProDex? I just got off a call with them and\r\nwas really impressed about their simulation tech, having worked in the\r\nspace myself. I\'m back to school starting my Data Science Masters degree if\r\nthere\'s ever anything that I can do to help the factory or operational\r\nsimulation, especially in physics-based environments, etc, I\'m glad to do\r\nso. CV is attached.\r\n\r\nThanks again, and I hope that you\'re doing well.\r\n\r\nYours,\r\n\r\nLuke\r\n\r\n---\r\nLuke Hollis\r\nResearch Scientist, MIT\r\nMasters Data Science candidate \'27, Harvard University',0,0,0,0,0,0,'2025-10-02 23:21:24','2025-12-09 19:29:27','2025-12-09 19:29:27','2025-12-09 19:29:27',NULL,NULL,NULL),
(827,4,' <LV3P220MB1029165BD91C93CBF86B80F5FFE4A@LV3P220MB1029.NAMP220.PROD.OUTLOOK.COM>',NULL,NULL,'Re: Signed NDA','trip_mcingvale@hotmail.com','Trip McIngvale','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nYeah bro, I\'ll work out my resume and get it to you. What kind of job are you looking to fill so I can tailor the resume to meet your specs?&nbsp;</div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nHoller</div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nT</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, September 30, 2025 7:12 AM<br>\r\n<b>To:</b> Trip McIngvale &lt;trip_mcingvale@hotmail.com&gt;<br>\r\n<b>Subject:</b> Re: Signed NDA</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Tripp,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Can you send me a resume/cv or some background details so that I can pitch you specifically?</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick&nbsp;</div>\r\n<br>\r\n<div class=\"x_gmail_signature\"><br>\r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD,&nbsp;</span>\r\n<div style=\"font-family:Helvetica,Arial\">Founder, CTO</div>\r\n<div style=\"font-family:Helvetica,Arial\">\r\n<div>\r\n<div><img class=\"x_composer_internal_attach\" style=\"max-width:99%\" data-outlook-trace=\"F:1|T:1\" src=\"cid:2F12D680-05CD-47AA-A2B8-C68A1603CD82\"><br>\r\n</div>\r\n<div><a href=\"https://mavrix1.com/\" originalsrc=\"https://mavrix1.com/\">https://mavrix1.com</a></div>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div>\r\n<div>CONFIDENTIALITY NOTICE</div>\r\n<div>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use,\r\n disclosure, distribution, or copying is strictly prohibited and may be unlawful.</div>\r\n<div><br>\r\n</div>\r\n<div>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</div>\r\n<div><br>\r\n</div>\r\n<div>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance\r\n with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On September 29, 2025 at 3:49:33 PM, Trip McIngvale (<a href=\"mailto:trip_mcingvale@hotmail.com\">trip_mcingvale@hotmail.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nRick- See attached.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nThanks</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nTrip</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Yeah bro, I\'ll work out my resume and get it to you. What kind of job are you looking to fill so I can tailor the resume to meet your specs?\r\n\r\nHoller\r\nT\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, September 30, 2025 7:12 AM\r\nTo: Trip McIngvale <trip_mcingvale@hotmail.com>\r\nSubject: Re: Signed NDA\r\n\r\nTripp,\r\nCan you send me a resume/cv or some background details so that I can pitch you specifically?\r\nThanks!\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:2F12D680-05CD-47AA-A2B8-C68A1603CD82]\r\nhttps://mavrix1.com<https://mavrix1.com/>\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\nOn September 29, 2025 at 3:49:33 PM, Trip McIngvale (trip_mcingvale@hotmail.com<mailto:trip_mcingvale@hotmail.com>) wrote:\r\n\r\nRick- See attached.\r\n\r\nThanks\r\nTrip\r\n',0,0,0,0,0,0,'2025-10-03 00:06:29','2025-12-09 19:29:27','2025-12-09 19:29:27','2025-12-09 19:29:27',NULL,NULL,NULL),
(828,4,'<CAGroy4zbyuQHqQX3u0m8ozZDm9xtU4e8YLxzQiPaTHOxSgEVSg@mail.gmail.com>',NULL,NULL,'Intro manufacturing','luh718@g.harvard.edu','\"Hollis, Luke\"','<div dir=\"ltr\">Dear Rick and Kushan, <div><br></div><div>I&#39;m writing with a quick intro -- Rick, Kushan is working on using AI for manufacturing dual-use digital twins and simulations. He&#39;s the best help and best resource that I know for anyone right now. </div><div><br></div><div>I wanted to put you both in touch and hope that you&#39;re able to connect. Looking forward to hearing more about Tampa soon. I&#39;ll let you both take it from here.</div><div><br></div><div>Yours, </div><div><br></div><div>Luke</div></div>','Dear Rick and Kushan,\r\n\r\nI\'m writing with a quick intro -- Rick, Kushan is working on using AI for\r\nmanufacturing dual-use digital twins and simulations. He\'s the best help\r\nand best resource that I know for anyone right now.\r\n\r\nI wanted to put you both in touch and hope that you\'re able to connect.\r\nLooking forward to hearing more about Tampa soon. I\'ll let you both take it\r\nfrom here.\r\n\r\nYours,\r\n\r\nLuke',0,0,0,0,0,0,'2025-10-03 17:00:55','2025-12-09 19:29:27','2025-12-09 19:29:27','2025-12-09 19:29:27',NULL,NULL,NULL),
(829,4,'<CAJM8kSqvYzJ39tMijJoSXjRQuSUhUmC0kZL9u6FmfAhorYpmzw@mail.gmail.com>',NULL,NULL,'Re: Intro manufacturing','kushan@prodexlabs.com','Kushan Weerakoon','<div dir=\"ltr\">Thank you, Luke! Upgrading you to BCC. <br><br>Rick -- would love to meet you soon. I have heard great things. I am very available Wed-Fri next week. Please let me know what works for you. <br><br>Cheers, <br>Kushan</div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Oct 3, 2025 at 1:01 PM Hollis, Luke &lt;<a href=\"mailto:luh718@g.harvard.edu\">luh718@g.harvard.edu</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\">Dear Rick and Kushan, <div><br></div><div>I&#39;m writing with a quick intro -- Rick, Kushan is working on using AI for manufacturing dual-use digital twins and simulations. He&#39;s the best help and best resource that I know for anyone right now. </div><div><br></div><div>I wanted to put you both in touch and hope that you&#39;re able to connect. Looking forward to hearing more about Tampa soon. I&#39;ll let you both take it from here.</div><div><br></div><div>Yours, </div><div><br></div><div>Luke</div></div>\r\n</blockquote></div>','Thank you, Luke! Upgrading you to BCC.\r\n\r\nRick -- would love to meet you soon. I have heard great things. I am very\r\navailable Wed-Fri next week. Please let me know what works for you.\r\n\r\nCheers,\r\nKushan\r\n\r\nOn Fri, Oct 3, 2025 at 1:01 PM Hollis, Luke <luh718@g.harvard.edu> wrote:\r\n\r\n> Dear Rick and Kushan,\r\n>\r\n> I\'m writing with a quick intro -- Rick, Kushan is working on using AI for\r\n> manufacturing dual-use digital twins and simulations. He\'s the best help\r\n> and best resource that I know for anyone right now.\r\n>\r\n> I wanted to put you both in touch and hope that you\'re able to connect.\r\n> Looking forward to hearing more about Tampa soon. I\'ll let you both take it\r\n> from here.\r\n>\r\n> Yours,\r\n>\r\n> Luke\r\n>',0,0,0,0,0,0,'2025-10-03 17:07:50','2025-12-09 19:29:27','2025-12-09 19:29:27','2025-12-09 19:29:27',NULL,NULL,NULL),
(830,4,'<CAPzxmXZj=bxaR=s0XWiK=dK6hbe7RT8wHaZOdZd2eJV0TVvrfw@mail.gmail.com>',NULL,NULL,'Grafik: Rough Order of Magnitude','tanya@grafik.com','Tanya Nazarian','<div dir=\"ltr\"><div>Rick, <br><br>Thank you again for your interest in Grafik. We&#39;ve taken the time to consider your near-term goals and the current state of the Mavrix1 brand, and feel well-equipped to deliver on your needs. Per our conversation, we wanted to share with you a rough order of magnitude that outlines what you can expect when working with our team. <br><br>Take a look, and if you remain interested in continuing the conversation, I recommend setting up a follow-up discussion with our brand and client strategy teams to take a deeper dive into what it will actually take to get the brand where it needs to be. Let us know your thoughts, and please confirm receipt when you get a moment. <br><br>ROM: <a href=\"https://share.grafik.com/_kRw80dd4op8cFR\">https://share.grafik.com/_kRw80dd4op8cFR</a> </div><div><br>Have a great weekend!  <br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal;font-family:Arial;color:rgb(61,179,181)\"><span><b>—</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 3px;line-height:normal;font-family:Arial\"><span><b>Tanya Nazarian</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span>SVP, Growth  • <b>T</b> 703.299.5984</span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span><b>Grafik</b>  •  Washington, DC </span>• Philadelphia, PA </p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><b><span><a href=\"https://grafik.agency/\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a></span><span><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" target=\"_blank\"><span><font color=\"#3db3b5\">instagram</font></span></a>   <a href=\"https://linkedin.com/company/grafik\" target=\"_blank\"><span><font color=\"#3db3b5\">linkedin</font></span></a></font></font><font color=\"#3db3b5\">  </font></span></b></p><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px\"></div></div></div></div></div></div>','Rick,\r\n\r\nThank you again for your interest in Grafik. We\'ve taken the time to\r\nconsider your near-term goals and the current state of the Mavrix1 brand,\r\nand feel well-equipped to deliver on your needs. Per our conversation, we\r\nwanted to share with you a rough order of magnitude that outlines what you\r\ncan expect when working with our team.\r\n\r\nTake a look, and if you remain interested in continuing the conversation, I\r\nrecommend setting up a follow-up discussion with our brand and client\r\nstrategy teams to take a deeper dive into what it will actually take to get\r\nthe brand where it needs to be. Let us know your thoughts, and please\r\nconfirm receipt when you get a moment.\r\n\r\nROM: https://share.grafik.com/_kRw80dd4op8cFR\r\n\r\nHave a great weekend!\r\n\r\n-- \r\n\r\n*—*\r\n\r\n*Tanya Nazarian*\r\n\r\nSVP, Growth  • *T* 703.299.5984\r\n\r\n*Grafik*  •  Washington, DC • Philadelphia, PA\r\n\r\n*grafik.agency <https://grafik.agency/>   instagram\r\n<https://instagram.com/grafikagency>   linkedin\r\n<https://linkedin.com/company/grafik>  *',0,0,0,0,0,0,'2025-10-03 21:30:54','2025-12-09 19:29:28','2025-12-09 19:29:28','2025-12-09 19:29:28',NULL,NULL,NULL),
(831,4,'<CAPzxmXZN0RESG72+ebqDC1xqUV+tmaBUThD50NJKTk7K0zCHmw@mail.gmail.com>',NULL,NULL,'Re: Grafik: Rough Order of Magnitude','tanya@grafik.com','Tanya Nazarian','<div dir=\"ltr\">Hi Rick, <div><br></div><div>Just dropping a note to make sure you saw this come through on Friday and to ensure you had no challenges with the download. Let me know, thanks! </div></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Oct 3, 2025 at 5:30 PM Tanya Nazarian &lt;<a href=\"mailto:tanya@grafik.com\">tanya@grafik.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Rick, <br><br>Thank you again for your interest in Grafik. We&#39;ve taken the time to consider your near-term goals and the current state of the Mavrix1 brand, and feel well-equipped to deliver on your needs. Per our conversation, we wanted to share with you a rough order of magnitude that outlines what you can expect when working with our team. <br><br>Take a look, and if you remain interested in continuing the conversation, I recommend setting up a follow-up discussion with our brand and client strategy teams to take a deeper dive into what it will actually take to get the brand where it needs to be. Let us know your thoughts, and please confirm receipt when you get a moment. <br><br>ROM: <a href=\"https://share.grafik.com/_kRw80dd4op8cFR\" target=\"_blank\">https://share.grafik.com/_kRw80dd4op8cFR</a> </div><div><br>Have a great weekend!  <br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal;font-family:Arial;color:rgb(61,179,181)\"><span><b>—</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 3px;line-height:normal;font-family:Arial\"><span><b>Tanya Nazarian</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span>SVP, Growth  • <b>T</b> 703.299.5984</span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span><b>Grafik</b>  •  Washington, DC </span>• Philadelphia, PA </p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><b><span><a href=\"https://grafik.agency/\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a></span><span><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" target=\"_blank\"><span><font color=\"#3db3b5\">instagram</font></span></a>   <a href=\"https://linkedin.com/company/grafik\" target=\"_blank\"><span><font color=\"#3db3b5\">linkedin</font></span></a></font></font><font color=\"#3db3b5\">  </font></span></b></p><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px\"></div></div></div></div></div></div>\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal;font-family:Arial;color:rgb(61,179,181)\"><span><b>—</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 3px;line-height:normal;font-family:Arial\"><span><b>Tanya Nazarian</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span>SVP, Growth  • <b>T</b> 703.299.5984</span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span><b>Grafik</b>  •  Washington, DC </span>• Philadelphia, PA </p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><b><span><a href=\"https://grafik.agency/\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a></span><span><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" target=\"_blank\"><span><font color=\"#3db3b5\">instagram</font></span></a>   <a href=\"https://linkedin.com/company/grafik\" target=\"_blank\"><span><font color=\"#3db3b5\">linkedin</font></span></a></font></font><font color=\"#3db3b5\">  </font></span></b></p><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px\"></div></div></div></div></div>','Hi Rick,\r\n\r\nJust dropping a note to make sure you saw this come through on Friday and\r\nto ensure you had no challenges with the download. Let me know, thanks!\r\n\r\nOn Fri, Oct 3, 2025 at 5:30 PM Tanya Nazarian <tanya@grafik.com> wrote:\r\n\r\n> Rick,\r\n>\r\n> Thank you again for your interest in Grafik. We\'ve taken the time to\r\n> consider your near-term goals and the current state of the Mavrix1 brand,\r\n> and feel well-equipped to deliver on your needs. Per our conversation, we\r\n> wanted to share with you a rough order of magnitude that outlines what you\r\n> can expect when working with our team.\r\n>\r\n> Take a look, and if you remain interested in continuing the conversation,\r\n> I recommend setting up a follow-up discussion with our brand and client\r\n> strategy teams to take a deeper dive into what it will actually take to get\r\n> the brand where it needs to be. Let us know your thoughts, and please\r\n> confirm receipt when you get a moment.\r\n>\r\n> ROM: https://share.grafik.com/_kRw80dd4op8cFR\r\n>\r\n> Have a great weekend!\r\n>\r\n> --\r\n>\r\n> *—*\r\n>\r\n> *Tanya Nazarian*\r\n>\r\n> SVP, Growth  • *T* 703.299.5984\r\n>\r\n> *Grafik*  •  Washington, DC • Philadelphia, PA\r\n>\r\n> *grafik.agency <https://grafik.agency/>   instagram\r\n> <https://instagram.com/grafikagency>   linkedin\r\n> <https://linkedin.com/company/grafik>  *\r\n>\r\n\r\n\r\n-- \r\n\r\n*—*\r\n\r\n*Tanya Nazarian*\r\n\r\nSVP, Growth  • *T* 703.299.5984\r\n\r\n*Grafik*  •  Washington, DC • Philadelphia, PA\r\n\r\n*grafik.agency <https://grafik.agency/>   instagram\r\n<https://instagram.com/grafikagency>   linkedin\r\n<https://linkedin.com/company/grafik>  *',0,0,0,0,0,0,'2025-10-06 18:29:22','2025-12-09 19:29:28','2025-12-09 19:29:28','2025-12-09 19:29:28',NULL,NULL,NULL),
(832,4,'<CAJO9__ZHXXxfATcT66XMeRB_SWWeLP-nxm4a2K5E65SffYwOcg@mail.gmail.com>',NULL,NULL,'Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Hello James,</div><div><br></div><div>I hope this finds you well.  </div><div><br></div><div>Checking in on the few items that you were sending over.  Let me know when you have some time to connect.  </div><div><br></div><div>Best, </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Sep 30, 2025 at 4:31 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div dir=\"ltr\"><div>Hi James,</div><div><br></div><div><div><div>I have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.</div></div><div><br></div></div><div>Looking forward to our discussion and seeing your deck of prospective projects.  </div><div><br></div><div>Best, </div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Sep 26, 2025 at 4:59 PM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div>\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI won&#39;t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products. </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI&#39;ll send to you as soon as I can next week.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"m_-1237110773005687678m_7859046138643783182appendonsend\"></div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<b>From:</b> James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, September 24, 2025 10:49 AM<br>\r\n<b>To:</b> Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI also have a verbal matter we can discuss soon. Once I&#39;ve got the deck ready I&#39;ll find time for a short call with you.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nTalk soon.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJames</div>\r\n<div id=\"m_-1237110773005687678m_7859046138643783182x_appendonsend\"></div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div id=\"m_-1237110773005687678m_7859046138643783182x_divRplyFwdMsg\">\r\n<div style=\"direction:ltr\"><span style=\"font-family:Calibri,sans-serif;font-size:11pt;color:black\"><b>From:</b> Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, September 24, 2025 10:07 AM<br>\r\n<b>To:</b> James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</span>\r\n</div>\r\n<div style=\"direction:ltr\"> </div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for the follow up.  You were on my list to contact today!  </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Would that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I will let you know if I will be able to make it up to Detroit for The Battery Show.  </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to seeing the deck.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">All the best, </div>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a style=\"color:blue;margin:0px\" id=\"m_-1237110773005687678m_7859046138643783182OWA90d54842-2faf-de90-7a8d-72df2faa57c2\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_-1237110773005687678m_7859046138643783182OWA0e5fa4bd-9870-58c4-8622-78d4cf24a810\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 24, 2025 at 11:59 AM James Trevey &lt;<a id=\"m_-1237110773005687678m_7859046138643783182OWAb7c381dc-96e5-45d0-b93e-e2aa9a01935f\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nHey Jordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nThank you for the quick follow up. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we&#39;ve decided we&#39;d like to provide information on additional products to you which are typically not on the menu but I have details\r\n to sort first. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nRegarding shows, happy to discuss when ready. We&#39;ll be at The Battery Show in 2 weeks, which I think you should consider attending and I&#39;d be happy to connect while there. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJames</div>\r\n<div id=\"m_-1237110773005687678m_7859046138643783182x_x_m_-6814561645313625911appendonsend\"></div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div id=\"m_-1237110773005687678m_7859046138643783182x_x_m_-6814561645313625911divRplyFwdMsg\">\r\n<div style=\"direction:ltr\"><span style=\"font-family:Calibri,sans-serif;font-size:11pt;color:black\"><b>From:</b> Jordan Wroblewski &lt;<a id=\"m_-1237110773005687678m_7859046138643783182OWAb0d22678-bda4-9932-d0a1-907e851cab2c\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Thursday, September 18, 2025 11:03 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_-1237110773005687678m_7859046138643783182OWAe81f39b0-ec24-b743-ca24-424e13107033\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a id=\"m_-1237110773005687678m_7859046138643783182OWA96c03181-9c79-378c-c150-ff2be9067492\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_-1237110773005687678m_7859046138643783182OWA2cb5ce13-d9cd-8a95-6b1c-85d355dafacd\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</span>\r\n</div>\r\n<div style=\"direction:ltr\"> </div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information\r\n to optimize our collaboration and planning:<br>\r\n<br>\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.<br>\r\n<br>\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.<br>\r\n<br>\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.<br>\r\n<br>\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.<br>\r\n<br>\r\nClarify your minimum order quantities and expected pricing for each product line.<br>\r\n<br>\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.<br>\r\n<br>\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted\r\n commercial timelines, and expected pricing.<br>\r\n<br>\r\nAdditionally, for reference, these are LBC’s most popular cells we&#39;ve made module and packs for:<br>\r\n<br>\r\n18650:<br>\r\n<br>\r\nNMC: TNL-ITR18650-2600P<br>\r\n<br>\r\nLFP: SW18650-26HPA<br>\r\n<br>\r\nLFP: IFR18650-2000mAh<br>\r\n<br>\r\n21700:<br>\r\n<br>\r\nNMC: INR21700-50S<br>\r\n<br>\r\nNMC: INR21700-4000<br>\r\n<br>\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">In terms of the shows you mentioned, we are getting our schedules aligned so we can attend.  What&#39;s the &quot;secret meeting&quot; in Nov? <br>\r\n<br>\r\nWe look forward to your prompt response so we can efficiently move to the next stages.\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Talk soon, </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a style=\"color:blue;margin:0px\" id=\"m_-1237110773005687678m_7859046138643783182OWAa894c5d9-0741-6243-3e0e-449171223bec\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_-1237110773005687678m_7859046138643783182OWAc8a757c1-67b5-a167-3793-f15be7380064\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 17, 2025 at 7:00 PM James Trevey &lt;<a id=\"m_-1237110773005687678m_7859046138643783182OWA13ecdc83-a950-da4e-3b8e-d04e2eb16671\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nThanks for moving quickly here. I got bogged down today but better late than never. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nAttached you&#39;ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won&#39;t tell us the application)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell has a 100% US supply chain already</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nmillions</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nmillions </u>next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nthousands</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nmillions</u> next year by our partner in the EU. As we show adoption, we&#39;ll expand our factory to build these</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nthousands</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n</ul>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI will check with my people on 301 asap.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI look forward to our next communication.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJames</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:black\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:black\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a id=\"m_-1237110773005687678m_7859046138643783182OWA71ed3287-c884-92d5-1caa-92b1f1d318fa\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, September 17, 2025 7:56 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_-1237110773005687678m_7859046138643783182OWA6cd87ac5-84e9-6287-add8-4d889a10f57e\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;; Daniel &lt;<a id=\"m_-1237110773005687678m_7859046138643783182OWA9ff34847-3c2d-d41b-7b1a-a902aba2b15b\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_-1237110773005687678m_7859046138643783182OWAe23dbbcf-6954-539a-4659-57f697029434\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Gentlemen,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">It was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I&#39;ve outlined the key action items below:</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<ul style=\"direction:ltr\">\r\n<li style=\"direction:ltr\">James to send the cell specification sheets as soon as possible.</li><li style=\"direction:ltr\">LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.</li><li style=\"direction:ltr\">James to send their term sheet template for throughput contracts.</li><li style=\"direction:ltr\">We should discuss 301 exclusion support for manufacturing equipment.</li></ul>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I look forward to our next conversation. </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a style=\"color:blue;margin:0px\" id=\"m_-1237110773005687678m_7859046138643783182OWA57ab9852-a4df-04bc-6d07-5846e7a46499\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_-1237110773005687678m_7859046138643783182OWA01db43b7-0ffe-3df6-52fa-0845c64c7cef\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n\r\n</div></blockquote></div></div>\r\n</blockquote></div>','Hello James,\r\n\r\nI hope this finds you well.\r\n\r\nChecking in on the few items that you were sending over.  Let me know when\r\nyou have some time to connect.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Tue, Sep 30, 2025 at 4:31 PM Jordan Wroblewski <\r\njordan@lithiumbatterycompany.com> wrote:\r\n\r\n> Hi James,\r\n>\r\n> I have attached a prospective cell demand schedule (subject to change) but\r\n> two of your battery types should meet the requirements for some of our\r\n> future projects.\r\n>\r\n> Looking forward to our discussion and seeing your deck of prospective\r\n> projects.\r\n>\r\n> Best,\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company <http://lithiumbatterycompany.com>\r\n>\r\n>\r\n> On Fri, Sep 26, 2025 at 4:59 PM James Trevey <jtrevey@forgenano.com>\r\n> wrote:\r\n>\r\n>> Jordan,\r\n>>\r\n>> I won\'t be able to send the deck today. Still waiting on a few spec\r\n>> sheets approval and validation of production capability for a few products.\r\n>>\r\n>> I\'ll send to you as soon as I can next week.\r\n>>\r\n>> James\r\n>>\r\n>>\r\n>>\r\n>>\r\n>> ------------------------------\r\n>> *From:* James Trevey <jtrevey@forgenano.com>\r\n>> *Sent:* Wednesday, September 24, 2025 10:49 AM\r\n>> *To:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n>> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n>> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n>> Rick Mislan <rick@mavrix.one>\r\n>> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co\r\n>> Collaboration\r\n>>\r\n>> Jordan,\r\n>>\r\n>> Unfortunately, there is not a large prismatic on our list. I could\r\n>> potentially license a design to make one, but it would take a lot of\r\n>> coordinating.\r\n>>\r\n>> It would be super helpful if you are able to compile a deck for us which\r\n>> has your prospective cell demand schedule now and for the next few years,\r\n>> as well as what your qualification schedule looks like (maybe program\r\n>> based?). Maybe by cell type?\r\n>>\r\n>> I also have a verbal matter we can discuss soon. Once I\'ve got the deck\r\n>> ready I\'ll find time for a short call with you.\r\n>>\r\n>> Talk soon.\r\n>>\r\n>> James\r\n>> ------------------------------\r\n>> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n>> *Sent:* Wednesday, September 24, 2025 10:07 AM\r\n>> *To:* James Trevey <jtrevey@forgenano.com>\r\n>> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n>> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n>> Rick Mislan <rick@mavrix.one>\r\n>> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>>\r\n>> Hi James,\r\n>>\r\n>> Thank you for the follow up.  You were on my list to contact today!\r\n>>\r\n>> Would that additional product list include a prismatic cell? I have a\r\n>> client who needs 150MWh a year and they want a domestic 314Ah cell...\r\n>>\r\n>> I will let you know if I will be able to make it up to Detroit for The\r\n>> Battery Show.\r\n>>\r\n>> Looking forward to seeing the deck.\r\n>>\r\n>> All the best,\r\n>>\r\n>>\r\n>> Jordan G. Wroblewski\r\n>>\r\n>> Partner | President\r\n>>\r\n>> Lithium Battery Company\r\n>>\r\n>> Direct: (917) 266-5336\r\n>>\r\n>> *jordan@lithiumbatterycompany.com\r\n>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>\r\n>> Lithium Battery Company\r\n>> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&typo=1>\r\n>>\r\n>>\r\n>> On Wed, Sep 24, 2025 at 11:59 AM James Trevey <jtrevey@forgenano.com>\r\n>> wrote:\r\n>>\r\n>> Hey Jordan,\r\n>>\r\n>> Thank you for the quick follow up.\r\n>>\r\n>> I am working on a compiled deck for you to address the below requests and\r\n>> aiming for end of this week. After speaking with my team, we\'ve decided\r\n>> we\'d like to provide information on additional products to you which are\r\n>> typically not on the menu but I have details to sort first.\r\n>>\r\n>> Regarding shows, happy to discuss when ready. We\'ll be at The Battery\r\n>> Show in 2 weeks, which I think you should consider attending and I\'d be\r\n>> happy to connect while there.\r\n>>\r\n>> James\r\n>> ------------------------------\r\n>> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n>> *Sent:* Thursday, September 18, 2025 11:03 AM\r\n>> *To:* James Trevey <jtrevey@forgenano.com>\r\n>> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n>> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n>> Rick Mislan <rick@mavrix.one>\r\n>> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>>\r\n>> Hi James,\r\n>>\r\n>>\r\n>> Thank you for continuing discussions regarding our strategic partnership.\r\n>> As we prepare for module and pack production to support your battery cell\r\n>> needs, we would appreciate your assistance in providing several key pieces\r\n>> of information to optimize our collaboration and planning:\r\n>>\r\n>> Please share detailed volume forecasts for each cell type (e.g., 18650,\r\n>> 21700) you expect to require over the next 1–5 years, broken out by project\r\n>> or customer segment where feasible.\r\n>>\r\n>> Indicate your anticipated ramp-up schedule for sample, engineering, and\r\n>> production volumes to help us align our development and manufacturing\r\n>> timelines.\r\n>>\r\n>> Identify any major offtake agreements, anchor customers, or significant\r\n>> opportunities in your commercial pipeline that could impact forecasted\r\n>> demand for modules or packs.\r\n>>\r\n>> Outline target applications (energy storage, drones, EVs, DOD, etc.) and\r\n>> specify any technical or certification requirements for modules/packs\r\n>> related to these segments.\r\n>>\r\n>> Clarify your minimum order quantities and expected pricing for each\r\n>> product line.\r\n>>\r\n>> Please also provide information about any flexibility in volume\r\n>> commitments that may be necessary in case project requirements or customer\r\n>> needs adjust mid-term.\r\n>>\r\n>> Importantly, we would like to request information on any current or\r\n>> forthcoming cells with a minimum continuous discharge rating of 15C or\r\n>> higher. For these cells, please provide specifications, target\r\n>> applications, anticipated volume requirements, forecasted commercial\r\n>> timelines, and expected pricing.\r\n>>\r\n>> Additionally, for reference, these are LBC’s most popular cells we\'ve\r\n>> made module and packs for:\r\n>>\r\n>> 18650:\r\n>>\r\n>> NMC: TNL-ITR18650-2600P\r\n>>\r\n>> LFP: SW18650-26HPA\r\n>>\r\n>> LFP: IFR18650-2000mAh\r\n>>\r\n>> 21700:\r\n>>\r\n>> NMC: INR21700-50S\r\n>>\r\n>> NMC: INR21700-4000\r\n>>\r\n>> Providing this information will enable LBC to ensure maximum alignment,\r\n>> timely scale-up, and the most competitive solutions to support your growth\r\n>> across all high-value sectors.\r\n>>\r\n>> In terms of the shows you mentioned, we are getting our schedules aligned\r\n>> so we can attend.  What\'s the \"secret meeting\" in Nov?\r\n>>\r\n>> We look forward to your prompt response so we can efficiently move to the\r\n>> next stages.\r\n>>\r\n>>\r\n>> Talk soon,\r\n>>\r\n>> Jordan G. Wroblewski\r\n>>\r\n>> Partner | President\r\n>>\r\n>> Lithium Battery Company\r\n>>\r\n>> Direct: (917) 266-5336\r\n>>\r\n>> *jordan@lithiumbatterycompany.com\r\n>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>\r\n>> Lithium Battery Company\r\n>> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&typo=1>\r\n>>\r\n>>\r\n>> On Wed, Sep 17, 2025 at 7:00 PM James Trevey <jtrevey@forgenano.com>\r\n>> wrote:\r\n>>\r\n>> Jordan,\r\n>>\r\n>> Thanks for moving quickly here. I got bogged down today but better late\r\n>> than never.\r\n>>\r\n>> Attached you\'ll find data sheets for all (5) of our products, including\r\n>> both 18650 and 21700. Below is a quick summary:\r\n>>\r\n>>\r\n>>    - SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation\r\n>>    (they won\'t tell us the application)\r\n>>    - This cell has a 100% US supply chain already\r\n>>       - This cell can be made in the * millions* next year by our\r\n>>       partner in the EU, until our factory is online in 2027\r\n>>       - SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse\r\n>>    engineered from MIL-PRF-32383)\r\n>>    - This cell is 50% US and 50% non-FEOC currently\r\n>>       - This cell can be made in the * millions *next year by our\r\n>>       partner in the EU, until our factory is online in 2027\r\n>>       - SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche\r\n>>    EVs.\r\n>>    - This cell is 50% US and 50% non-FEOC currently\r\n>>       - This cell can be made in the * thousands* next year by our\r\n>>       partner in the EU, until our factory is online in 2027\r\n>>       - SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum\r\n>>    case and tabless design, super lightweight)\r\n>>    - This cell is 50% US and 50% non-FEOC currently\r\n>>       - This cell can be made in the * millions* next year by our\r\n>>       partner in the EU. As we show adoption, we\'ll expand our factory to build\r\n>>       these\r\n>>       - SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse\r\n>>    engineered from MIL-PRF-32565)\r\n>>    - This cell is 50% US and 50% non-FEOC currently\r\n>>       - This cell can be made in the * thousands* next year by our\r\n>>       partner in the EU, until our factory is online in 2027\r\n>>\r\n>>\r\n>> We can also get 80mmx300mm pouch cells made by our EU partner, if needed.\r\n>>\r\n>> Regarding the term sheet, please see the attached template that I put\r\n>> together but needs input from you all.\r\n>>\r\n>> Maybe we line up another discussion for next week to continue our\r\n>> alignment path? Also, are any of you planning to attend The Battery Show in\r\n>> Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores\r\n>> in Nashville? in October? Or the secret meeting on November 5th in DC?\r\n>>\r\n>> I will check with my people on 301 asap.\r\n>>\r\n>> I look forward to our next communication.\r\n>>\r\n>> James\r\n>>\r\n>>\r\n>> ------------------------------\r\n>> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n>> *Sent:* Wednesday, September 17, 2025 7:56 AM\r\n>> *To:* James Trevey <jtrevey@forgenano.com>; Daniel <\r\n>> dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan\r\n>> Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\n>> *Subject:* Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>>\r\n>> Gentlemen,\r\n>>\r\n>> It was a pleasure connecting with you yesterday. I am very excited about\r\n>> the potential for a partnership between our companies. To maintain the\r\n>> momentum from our discussion, I\'ve outlined the key action items below:\r\n>>\r\n>>\r\n>>    - James to send the cell specification sheets as soon as possible.\r\n>>    - LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for\r\n>>    benchmarking purposes.\r\n>>    - James to send their term sheet template for throughput contracts.\r\n>>    - We should discuss 301 exclusion support for manufacturing equipment.\r\n>>\r\n>>\r\n>> I look forward to our next conversation.\r\n>>\r\n>> Best,\r\n>>\r\n>> Jordan G. Wroblewski\r\n>>\r\n>> Partner | President\r\n>>\r\n>> Lithium Battery Company\r\n>>\r\n>> Direct: (917) 266-5336\r\n>>\r\n>> *jordan@lithiumbatterycompany.com\r\n>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>\r\n>> Lithium Battery Company\r\n>> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&typo=1>\r\n>>\r\n>>',0,0,0,0,0,0,'2025-10-07 14:02:31','2025-12-09 19:29:28','2025-12-09 19:29:28','2025-12-09 19:29:28',NULL,NULL,NULL),
(833,4,' <LV3P220MB1029BE5D3CBF1E5B482432CEFFE0A@LV3P220MB1029.NAMP220.PROD.OUTLOOK.COM>',NULL,NULL,'Re: Signed NDA','trip_mcingvale@hotmail.com','Trip McIngvale','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nR- I attached a working copy of my resume. &nbsp;Obviously, it is not a version for distribution. &nbsp;If you like it, I will clean it up and PDF you the new version.</div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nHoller</div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nT</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, October 3, 2025 7:40 AM<br>\r\n<b>To:</b> Trip McIngvale &lt;trip_mcingvale@hotmail.com&gt;<br>\r\n<b>Subject:</b> Re: Signed NDA</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>Send me something general, and then let me see if I can’t find a place for you….<br>\r\nThanks! <br>\r\n<br>\r\n<p class=\"x_airmail_on\">On October 2, 2025 at 20:07:13, Trip McIngvale (<a href=\"mailto:trip_mcingvale@hotmail.com\">trip_mcingvale@hotmail.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nYeah bro, I\'ll work out my resume and get it to you. What kind of job are you looking to fill so I can tailor the resume to meet your specs?&nbsp;</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHoller</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nT</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, September 30, 2025 7:12 AM<br>\r\n<b>To:</b> Trip McIngvale &lt;trip_mcingvale@hotmail.com&gt;<br>\r\n<b>Subject:</b> Re: Signed NDA</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Tripp,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Can you send me a resume/cv or some background details so that I can pitch you specifically?</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick&nbsp;</div>\r\n<br>\r\n<div class=\"x_x_gmail_signature\"><br>\r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD,&nbsp;</span>\r\n<div style=\"font-family:Helvetica,Arial\">Founder, CTO</div>\r\n<div style=\"font-family:Helvetica,Arial\">\r\n<div>\r\n<div><img class=\"x_x_composer_internal_attach\" style=\"max-width:99%\" data-outlook-trace=\"F:2|T:2\" src=\"cid:39499BD3-7878-45DF-A686-B380E0BE5606\"><br>\r\n</div>\r\n<div><a href=\"https://mavrix1.com/\" originalsrc=\"https://mavrix1.com/\" originalsrc=\"https://mavrix1.com/\">https://mavrix1.com</a></div>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div>\r\n<div>CONFIDENTIALITY NOTICE</div>\r\n<div>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use,\r\n disclosure, distribution, or copying is strictly prohibited and may be unlawful.</div>\r\n<div><br>\r\n</div>\r\n<div>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</div>\r\n<div><br>\r\n</div>\r\n<div>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance\r\n with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_airmail_on\">On September 29, 2025 at 3:49:33 PM, Trip McIngvale (<a href=\"mailto:trip_mcingvale@hotmail.com\">trip_mcingvale@hotmail.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nRick- See attached.</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nThanks</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nTrip</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','R- I attached a working copy of my resume.  Obviously, it is not a version for distribution.  If you like it, I will clean it up and PDF you the new version.\r\n\r\nHoller\r\nT\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, October 3, 2025 7:40 AM\r\nTo: Trip McIngvale <trip_mcingvale@hotmail.com>\r\nSubject: Re: Signed NDA\r\n\r\nSend me something general, and then let me see if I can’t find a place for you….\r\nThanks!\r\n\r\n\r\nOn October 2, 2025 at 20:07:13, Trip McIngvale (trip_mcingvale@hotmail.com<mailto:trip_mcingvale@hotmail.com>) wrote:\r\n\r\nYeah bro, I\'ll work out my resume and get it to you. What kind of job are you looking to fill so I can tailor the resume to meet your specs?\r\n\r\nHoller\r\nT\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, September 30, 2025 7:12 AM\r\nTo: Trip McIngvale <trip_mcingvale@hotmail.com>\r\nSubject: Re: Signed NDA\r\n\r\nTripp,\r\nCan you send me a resume/cv or some background details so that I can pitch you specifically?\r\nThanks!\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:39499BD3-7878-45DF-A686-B380E0BE5606]\r\nhttps://mavrix1.com<https://mavrix1.com/>\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\nOn September 29, 2025 at 3:49:33 PM, Trip McIngvale (trip_mcingvale@hotmail.com<mailto:trip_mcingvale@hotmail.com>) wrote:\r\n\r\nRick- See attached.\r\n\r\nThanks\r\nTrip\r\n',0,0,0,0,0,0,'2025-10-07 21:58:04','2025-12-09 19:29:29','2025-12-09 19:29:29','2025-12-09 19:29:29',NULL,NULL,NULL),
(834,4,' <LV3P220MB102906779908A61863A00CB6FFE0A@LV3P220MB1029.NAMP220.PROD.OUTLOOK.COM>',NULL,NULL,'Re: Signed NDA','trip_mcingvale@hotmail.com','Trip McIngvale','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nStanding by!!</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, October 7, 2025 7:18 PM<br>\r\n<b>To:</b> Trip McIngvale &lt;trip_mcingvale@hotmail.com&gt;<br>\r\n<b>Subject:</b> Re: Signed NDA</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks! I’ll review and get back to you!</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nTalk soon!</div>\r\nRick<br>\r\n<div id=\"x_bloop_sign_1759879080712307968\" class=\"x_bloop_sign\"><br>\r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD,&nbsp;</span>\r\n<div style=\"font-family:Helvetica,Arial\">Founder, CTO</div>\r\n<div style=\"font-family:Helvetica,Arial\">\r\n<div>\r\n<div><img class=\"x_composer_internal_attach\" style=\"max-width:99%\" data-outlook-trace=\"F:1|T:1\" src=\"cid:3251D7CD-B49F-44A5-9A2A-78AAD36D21F8\"><br>\r\n</div>\r\n<div><a href=\"https://mavrix1.com/\" originalsrc=\"https://mavrix1.com/\">https://mavrix1.com</a></div>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div>\r\n<div>CONFIDENTIALITY NOTICE</div>\r\n<div>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use,\r\n disclosure, distribution, or copying is strictly prohibited and may be unlawful.</div>\r\n<div><br>\r\n</div>\r\n<div>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</div>\r\n<div><br>\r\n</div>\r\n<div>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance\r\n with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On October 7, 2025 at 5:58:47 PM, Trip McIngvale (<a href=\"mailto:trip_mcingvale@hotmail.com\">trip_mcingvale@hotmail.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nR- I attached a working copy of my resume. &nbsp;Obviously, it is not a version for distribution. &nbsp;If you like it, I will clean it up and PDF you the new version.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHoller</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nT</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, October 3, 2025 7:40 AM<br>\r\n<b>To:</b> Trip McIngvale &lt;trip_mcingvale@hotmail.com&gt;<br>\r\n<b>Subject:</b> Re: Signed NDA</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>Send me something general, and then let me see if I can’t find a place for you….<br>\r\nThanks! <br>\r\n<br>\r\n<p class=\"x_x_airmail_on\">On October 2, 2025 at 20:07:13, Trip McIngvale (<a href=\"mailto:trip_mcingvale@hotmail.com\">trip_mcingvale@hotmail.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nYeah bro, I\'ll work out my resume and get it to you. What kind of job are you looking to fill so I can tailor the resume to meet your specs?&nbsp;</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nHoller</div>\r\n<div class=\"x_x_elementToProof\" style=\"font-family:Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nT</div>\r\n<div id=\"x_x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Tuesday, September 30, 2025 7:12 AM<br>\r\n<b>To:</b> Trip McIngvale &lt;trip_mcingvale@hotmail.com&gt;<br>\r\n<b>Subject:</b> Re: Signed NDA</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Tripp,</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Can you send me a resume/cv or some background details so that I can pitch you specifically?</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Thanks!</div>\r\n<div style=\"font-family:Helvetica,Arial; font-size:13px\">Rick&nbsp;</div>\r\n<br>\r\n<div class=\"x_x_x_gmail_signature\"><br>\r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD,&nbsp;</span>\r\n<div style=\"font-family:Helvetica,Arial\">Founder, CTO</div>\r\n<div style=\"font-family:Helvetica,Arial\">\r\n<div>\r\n<div><img class=\"x_x_x_composer_internal_attach\" style=\"max-width:99%\" data-outlook-trace=\"F:3|T:3\" src=\"cid:BBB7AE9D-61C9-4660-AD87-4EBB8B2A2C7A\"><br>\r\n</div>\r\n<div><a href=\"https://mavrix1.com/\" originalsrc=\"https://mavrix1.com/\" originalsrc=\"https://mavrix1.com/\">https://mavrix1.com</a></div>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div>\r\n<div>CONFIDENTIALITY NOTICE</div>\r\n<div>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use,\r\n disclosure, distribution, or copying is strictly prohibited and may be unlawful.</div>\r\n<div><br>\r\n</div>\r\n<div>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</div>\r\n<div><br>\r\n</div>\r\n<div>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance\r\n with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n<p class=\"x_x_x_airmail_on\">On September 29, 2025 at 3:49:33 PM, Trip McIngvale (<a href=\"mailto:trip_mcingvale@hotmail.com\">trip_mcingvale@hotmail.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_x_x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nRick- See attached.</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nThanks</div>\r\n<div class=\"x_x_x_elementToProof\" style=\"font-family:Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nTrip</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Standing by!!\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, October 7, 2025 7:18 PM\r\nTo: Trip McIngvale <trip_mcingvale@hotmail.com>\r\nSubject: Re: Signed NDA\r\n\r\nThanks! I’ll review and get back to you!\r\nTalk soon!\r\nRick\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:3251D7CD-B49F-44A5-9A2A-78AAD36D21F8]\r\nhttps://mavrix1.com<https://mavrix1.com/>\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\nOn October 7, 2025 at 5:58:47 PM, Trip McIngvale (trip_mcingvale@hotmail.com<mailto:trip_mcingvale@hotmail.com>) wrote:\r\n\r\nR- I attached a working copy of my resume.  Obviously, it is not a version for distribution.  If you like it, I will clean it up and PDF you the new version.\r\n\r\nHoller\r\nT\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, October 3, 2025 7:40 AM\r\nTo: Trip McIngvale <trip_mcingvale@hotmail.com>\r\nSubject: Re: Signed NDA\r\n\r\nSend me something general, and then let me see if I can’t find a place for you….\r\nThanks!\r\n\r\n\r\nOn October 2, 2025 at 20:07:13, Trip McIngvale (trip_mcingvale@hotmail.com<mailto:trip_mcingvale@hotmail.com>) wrote:\r\n\r\nYeah bro, I\'ll work out my resume and get it to you. What kind of job are you looking to fill so I can tailor the resume to meet your specs?\r\n\r\nHoller\r\nT\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, September 30, 2025 7:12 AM\r\nTo: Trip McIngvale <trip_mcingvale@hotmail.com>\r\nSubject: Re: Signed NDA\r\n\r\nTripp,\r\nCan you send me a resume/cv or some background details so that I can pitch you specifically?\r\nThanks!\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:BBB7AE9D-61C9-4660-AD87-4EBB8B2A2C7A]\r\nhttps://mavrix1.com<https://mavrix1.com/>\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\nOn September 29, 2025 at 3:49:33 PM, Trip McIngvale (trip_mcingvale@hotmail.com<mailto:trip_mcingvale@hotmail.com>) wrote:\r\n\r\nRick- See attached.\r\n\r\nThanks\r\nTrip\r\n',0,0,0,0,0,0,'2025-10-07 23:51:52','2025-12-09 19:29:29','2025-12-09 19:29:29','2025-12-09 19:29:29',NULL,NULL,NULL),
(835,4,'<7KR84K68QGVS8SRF83TG1FER2W@mail.proton.me>',NULL,NULL,'You have 1 new message(s) in your Proton Mail account m******','no-reply@mail.proton.me','Proton','--b2=_CYiOIogyTXYL9Jb2O0ildLMQQ0b64VQHsDGYt4Bo\r\nContent-Type: text/html; charset=utf-8\r\nContent-Transfer-Encoding: base64\r\n\r\nPCFET0NUWVBFIGh0bWw+DQo8P3htbCBlbmNvZGluZz0idXRmLTgiID8+PGh0bWwgeG1sbnM9Imh0\r\ndHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWwiIHhtbG5zOnY9InVybjpzY2hlbWFzLW1pY3Jvc29m\r\ndC1jb206dm1sIiB4bWxuczpvPSJ1cm46c2NoZW1hcy1taWNyb3NvZnQtY29tOm9mZmljZTpvZmZp\r\nY2UiPg0KDQo8aGVhZD48bWV0YSBodHRwLWVxdWl2PSJDb250ZW50LVR5cGUiIGNvbnRlbnQ9InRl\r\neHQvaHRtbDsgY2hhcnNldD11dGYtOCI+DQogICAgPCEtLSBOQU1FOiAxIENPTFVNTiAtLT4NCiAg\r\nICA8IS0tW2lmIGd0ZSBtc28gMTVdPg0KICAgIDx4bWw+DQogICAgICAgIDxvOk9mZmljZURvY3Vt\r\nZW50U2V0dGluZ3M+DQogICAgICAgIDxvOkFsbG93UE5HLz4NCiAgICAgICAgPG86UGl4ZWxzUGVy\r\nSW5jaD45NjwvbzpQaXhlbHNQZXJJbmNoPg0KICAgICAgICA8L286T2ZmaWNlRG9jdW1lbnRTZXR0\r\naW5ncz4NCiAgICA8L3htbD4NCiAgICA8IVtlbmRpZl0tLT4NCiAgICA8bWV0YSBjaGFyc2V0PSJV\r\nVEYtOCI+DQogICAgPG1ldGEgbmFtZT0ieC1hcHBsZS1kaXNhYmxlLW1lc3NhZ2UtcmVmb3JtYXR0\r\naW5nIj4NCiAgICA8bWV0YSBuYW1lPSJmb3JtYXQtZGV0ZWN0aW9uIiBjb250ZW50PSJ0ZWxlcGhv\r\nbmU9bm8sIGRhdGU9bm8sIGFkZHJlc3M9bm8sIGVtYWlsPW5vLCB1cmw9bm8iPg0KICAgIDxtZXRh\r\nIGh0dHAtZXF1aXY9IlgtVUEtQ29tcGF0aWJsZSIgY29udGVudD0iSUU9ZWRnZSI+DQogICAgPG1l\r\ndGEgbmFtZT0idmlld3BvcnQiIGNvbnRlbnQ9IndpZHRoPWRldmljZS13aWR0aCwgaW5pdGlhbC1z\r\nY2FsZT0xIj4NCiAgICA8bWV0YSBuYW1lPSJhdXRob3IiIGNvbnRlbnQ9IlByb3RvbiAmbHQ7bm8t\r\ncmVwbHlAbWFpbC5wcm90b24ubWUmZ3Q7Ij4NCiAgICA8bWV0YSBuYW1lPSJkZXNjcmlwdGlvbiIg\r\nY29udGVudD0iUGxlYXNlIGxvZyBpbiBhdCBodHRwczovL21haWwucHJvdG9uLm1lIHRvIGNoZWNr\r\nIHRoZW0uIj4NCiAgICA8dGl0bGU+WW91IGhhdmUgMSBuZXcgbWVzc2FnZShzKSBpbiB5b3VyIFBy\r\nb3RvbiBNYWlsIGFjY291bnQ8L3RpdGxlPg0KDQoNCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+QG1l\r\nZGlhIG9ubHkgc2NyZWVuIGFuZCAobWluLXdpZHRoOjc2OHB4KXsudGVtcGxhdGVDb250YWluZXJ7\r\nd2lkdGg6IDYwMHB4ICFpbXBvcnRhbnQ7fX1AbWVkaWEgb25seSBzY3JlZW4gYW5kIChtYXgtd2lk\r\ndGg6IDUyMHB4KXtib2R5LHRhYmxlLHRkLHAsYXstd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IG5v\r\nbmUgIWltcG9ydGFudDt9Ym9keXt3aWR0aDogMTAwJSAhaW1wb3J0YW50OyBtaW4td2lkdGg6IDEw\r\nMCUgIWltcG9ydGFudDt9Lm1jblJldGluYUltYWdle21heC13aWR0aDogMTAwJSAhaW1wb3J0YW50\r\nO30ubWNuQnV0dG9uQ29udGVudENvbnRhaW5lciwubWNuVGV4dENvbnRlbnRDb250YWluZXJ7bWF4\r\nLXdpZHRoOiAxMDAlICFpbXBvcnRhbnQ7IHdpZHRoOiAxMDAlICFpbXBvcnRhbnQ7fS5tY25UZXh0\r\nQ29udGVudHtwYWRkaW5nLXJpZ2h0OiAzMnB4ICFpbXBvcnRhbnQ7IHBhZGRpbmctbGVmdDogMzJw\r\neCAhaW1wb3J0YW50O31oMXtmb250LXNpemU6IDIycHggIWltcG9ydGFudDsgbGluZS1oZWlnaHQ6\r\nIDEuMjVlbSAhaW1wb3J0YW50O30jdGVtcGxhdGVCb2R5IC5tY25UZXh0Q29udGVudCwjdGVtcGxh\r\ndGVCb2R5IC5tY25UZXh0Q29udGVudCBwe2ZvbnQtc2l6ZTogMTZweCAhaW1wb3J0YW50OyBsaW5l\r\nLWhlaWdodDogMS41ZW0gIWltcG9ydGFudDt9I3RlbXBsYXRlRm9vdGVyIC5tY25UZXh0Q29udGVu\r\ndCwjdGVtcGxhdGVGb290ZXIgLm1jblRleHRDb250ZW50IHB7Zm9udC1zaXplOiAxNHB4ICFpbXBv\r\ncnRhbnQ7IGxpbmUtaGVpZ2h0OiAxLjVlbSAhaW1wb3J0YW50O30jdGVtcGxhdGVGb290ZXIgLm1j\r\nbkZvbGxvd0NvbnRlbnRJdGVtQ29udGFpbmVye3BhZGRpbmctbGVmdDogMnB4ICFpbXBvcnRhbnQ7\r\nIHBhZGRpbmctcmlnaHQ6IDJweCAhaW1wb3J0YW50O319QG1lZGlhIG9ubHkgc2NyZWVuIGFuZCAo\r\nbWF4LXdpZHRoOiAzNTJweCl7Lm1jbkZvbGxvd0ljb25Db250ZW50LC5tY25Gb2xsb3dJY29uQ29u\r\ndGVudCBpbWcuc29jaWFsLWljb257d2lkdGg6IDM4cHggIWltcG9ydGFudDsgaGVpZ2h0OiAzOHB4\r\nICFpbXBvcnRhbnQ7fSN0ZW1wbGF0ZUZvb3RlciAubWNuRm9sbG93Q29udGVudEl0ZW1Db250YWlu\r\nZXJ7cGFkZGluZy1sZWZ0OiAwICFpbXBvcnRhbnQ7IHBhZGRpbmctcmlnaHQ6IDAgIWltcG9ydGFu\r\ndDt9fTwvc3R5bGU+PC9oZWFkPg0KDQo8Ym9keSBzdHlsZT0iaGVpZ2h0OiAxMDAlOyBtYXJnaW46\r\nIDA7IHBhZGRpbmc6IDA7IHdpZHRoOiAxMDAlOyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBiYWNrZ3JvdW5kLWNvbG9yOiAjZjVmNGYy\r\nOyI+DQogICAgPCEtLVtpZiAhZ3RlIG1zbyA5XT48IS0tLS0+PHNwYW4gY2xhc3M9Im1jblByZXZp\r\nZXdUZXh0IiBzdHlsZT0iZm9udC1zaXplOiAwcHg7IGxpbmUtaGVpZ2h0OiAwcHg7IG1heC1oZWln\r\naHQ6IDBweDsgbWF4LXdpZHRoOiAwcHg7IG9wYWNpdHk6IDA7IG92ZXJmbG93OiBoaWRkZW47IHZp\r\nc2liaWxpdHk6IGhpZGRlbjsgbXNvLWhpZGU6IGFsbDsgZGlzcGxheTogbm9uZTsiPlBsZWFzZSBs\r\nb2cgaW4gYXQgaHR0cHM6Ly9tYWlsLnByb3Rvbi5tZSB0byBjaGVjayB0aGVtLjwvc3Bhbj48IS0t\r\nPCFbZW5kaWZdLS0+DQogICAgPGNlbnRlcj4NCiAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIi\r\nIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBoZWlnaHQ9IjEwMCUi\r\nIHdpZHRoPSIxMDAlIiBpZD0iYm9keVRhYmxlIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xs\r\nYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGhl\r\naWdodDogMTAwJTsgbWFyZ2luOiAwOyBwYWRkaW5nOiAwOyB3aWR0aDogMTAwJTsgYmFja2dyb3Vu\r\nZC1jb2xvcjogI2Y1ZjRmMjsiPg0KICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgIDx0\r\nZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249InRvcCIgaWQ9ImJvZHlDZWxsIiBzdHlsZT0ibXNvLWxp\r\nbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Vi\r\na2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGhlaWdodDogMTAwJTsgbWFyZ2luOiAwOyBwYWRk\r\naW5nOiA4cHg7IHdpZHRoOiAxMDAlOyBib3JkZXItdG9wOiAwOyI+DQogICAgICAgICAgICAgICAg\r\nICAgIDwhLS0gQkVHSU4gVEVNUExBVEUgLy8gLS0+DQogICAgICAgICAgICAgICAgICAgIDwhLS1b\r\naWYgKGd0ZSBtc28gOSl8KElFKV0+DQogICAgICAgICAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0i\r\nY2VudGVyIiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIwIiBjZWxscGFkZGluZz0iMCIgd2lkdGg9\r\nIjYwMCIgc3R5bGU9IndpZHRoOjYwMHB4OyI+PHRyPjx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249\r\nInRvcCIgd2lkdGg9IjYwMCIgc3R5bGU9IndpZHRoOjYwMHB4OyI+DQogICAgICAgICAgICAgICAg\r\nICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBj\r\nZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0idGVtcGxh\r\ndGVDb250YWluZXIiIHN0eWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUt\r\nbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgYm9yZGVyOiAwOyBib3JkZXIt\r\ncmFkaXVzOiAxNnB4OyBtYXgtd2lkdGg6IDYwMHB4OyI+DQo8dHI+DQogICAgPHRkIHZhbGlnbj0i\r\ndG9wIiBpZD0idGVtcGxhdGVIZWFkZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhh\r\nY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgYmFja2dyb3VuZC1jb2xvcjogI2ZmZmZmZjsgYmFja2dyb3VuZC1pbWFnZTogbm9u\r\nZTsgYmFja2dyb3VuZC1yZXBlYXQ6IG5vLXJlcGVhdDsgYmFja2dyb3VuZC1wb3NpdGlvbjogY2Vu\r\ndGVyOyBiYWNrZ3JvdW5kLXNpemU6IGNvdmVyOyBib3JkZXItdG9wOiAwOyBib3JkZXItYm90dG9t\r\nOiAwOyBwYWRkaW5nLXRvcDogMHB4OyBwYWRkaW5nLWJvdHRvbTogMHB4OyBib3JkZXItcmFkaXVz\r\nOiAxNnB4IDE2cHggMCAwOyI+DQogICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5n\r\nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25JbWFnZUJsb2NrIiBz\r\ndHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFi\r\nbGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAg\r\nPHRib2R5IGNsYXNzPSJtY25JbWFnZUJsb2NrT3V0ZXIiPg0KICAgICAgICAgICAgICAgIDx0cj4N\r\nCiAgICAgICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuSW1hZ2VCbG9j\r\na0lubmVyIiBzdHlsZT0icGFkZGluZzogMTZweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0\r\nbHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0ibGVmdCIgd2lk\r\ndGg9IjEwMCUiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBjbGFz\r\ncz0ibWNuSW1hZ2VDb250ZW50Q29udGFpbmVyIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3Jk\r\nZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1y\r\nc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJtY25JbWFnZUNvbnRlbnQiIHZhbGlnbj0idG9wIiBz\r\ndHlsZT0icGFkZGluZzogMTZweDsgdGV4dC1hbGlnbjogY2VudGVyOyBtc28tbGluZS1oZWlnaHQt\r\ncnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgIDxhIGhyZWY9Imh0dHBzOi8vcHJvdG9uLm1lLyIgdGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJt\r\nc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgbGluZS1oZWlnaHQ6IGluaGVyaXQ7IGNv\r\nbG9yOiAjNmQ0YWZmOyBmb250LXdlaWdodDogbm9ybWFsOyB0ZXh0LWRlY29yYXRpb246IHVuZGVy\r\nbGluZTsiPjxpbWcgYWxpZ249ImNlbnRlciIgYWx0PSJQcm90b24iIHNyYz0iY2lkOjE0NzU0N2E5\r\nNTAzY2M3MDViMjQxQG1haWwucHJvdG9uLm1lIiB3aWR0aD0iMjEwIiBzdHlsZT0id2lkdGg6IDM5\r\nLjE3OTElOyBtYXgtd2lkdGg6IDQyMHB4OyBwYWRkaW5nLWJvdHRvbTogMDsgdmVydGljYWwtYWxp\r\nZ246IGJvdHRvbTsgYm9yZGVyOiAwOyBoZWlnaHQ6IGF1dG87IG91dGxpbmU6IG5vbmU7IHRleHQt\r\nZGVjb3JhdGlvbjogbm9uZTsgLW1zLWludGVycG9sYXRpb24tbW9kZTogYmljdWJpYzsgZm9udC1m\r\nYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGlu\r\nZS1oZWlnaHQ6IDEuNWVtOyBjb2xvcjogIzZkNGFmZjsgZGlzcGxheTogaW5saW5lOyI+PC9hPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Ri\r\nb2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAg\r\nICAgPC90ZD4NCiAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgPC90Ym9keT4NCiAg\r\nICAgICAgPC90YWJsZT4NCiAgICA8L3RkPg0KPC90cj4NCjx0cj4NCiAgICA8dGQgdmFsaWduPSJ0\r\nb3AiIGlkPSJ0ZW1wbGF0ZUJvZHkiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3Rs\r\neTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgYmFja2dyb3VuZC1jb2xvcjogI2ZmZmZmZjsgYmFja2dyb3VuZC1pbWFnZTogbm9uZTsg\r\nYmFja2dyb3VuZC1yZXBlYXQ6IG5vLXJlcGVhdDsgYmFja2dyb3VuZC1wb3NpdGlvbjogY2VudGVy\r\nOyBiYWNrZ3JvdW5kLXNpemU6IGNvdmVyOyBib3JkZXItdG9wOiAwOyBib3JkZXItYm90dG9tOiAw\r\nOyBwYWRkaW5nLXRvcDogOHB4OyBwYWRkaW5nLWJvdHRvbTogOHB4OyI+DQo8dGFibGUgYm9yZGVy\r\nPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0i\r\nbWNuRGl2aWRlckJsb2NrIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6\r\nIGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgdGFibGUtbGF5b3V0OiBmaXhlZDsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNuRGl2aWRlckJs\r\nb2NrT3V0ZXIiPg0KICAgICAgICA8dHI+DQogICAgICAgICAgICA8dGQgY2xhc3M9Im1jbkRpdmlk\r\nZXJCbG9ja0lubmVyIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBwYWRkaW5nOiAwIDMycHggMHB4\r\nIDMycHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAg\r\nICAgPHRhYmxlIGNsYXNzPSJtY25EaXZpZGVyQ29udGVudCIgYm9yZGVyPSIwIiBjZWxscGFkZGlu\r\nZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAl\r\nOyBib3JkZXItdG9wOiAxcHggc29saWQgI0Y1RjRGMjsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBz\r\nZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAg\r\nICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1\r\nbGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4+\r\nPC9zcGFuPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAg\r\nICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAg\r\nICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgPCEtLQ0KICAgICAgICAgICAgICAgIDx0\r\nZCBjbGFzcz0ibWNuRGl2aWRlckJsb2NrSW5uZXIiIHN0eWxlPSJwYWRkaW5nOiAzMnB4OyI+DQog\r\nICAgICAgICAgICAgICAgPGhyIGNsYXNzPSJtY25EaXZpZGVyQ29udGVudCIgc3R5bGU9ImJvcmRl\r\nci1ib3R0b20tY29sb3I6bm9uZTsgYm9yZGVyLWxlZnQtY29sb3I6bm9uZTsgYm9yZGVyLXJpZ2h0\r\nLWNvbG9yOm5vbmU7IGJvcmRlci1ib3R0b20td2lkdGg6MDsgYm9yZGVyLWxlZnQtd2lkdGg6MDsg\r\nYm9yZGVyLXJpZ2h0LXdpZHRoOjA7IG1hcmdpbi10b3A6MDsgbWFyZ2luLXJpZ2h0OjA7IG1hcmdp\r\nbi1ib3R0b206MDsgbWFyZ2luLWxlZnQ6MDsiIC8+DQogICAgICAgICAgICAgICAgLS0+DQogICAg\r\nICAgICAgICA8L3RkPg0KICAgICAgICA8L3RyPg0KICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0KPHRh\r\nYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAw\r\nJSIgY2xhc3M9Im1jblRleHRCbG9jayIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNv\r\nbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNl\r\nOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7Ij4NCiAgICA8dGJvZHkgY2xhc3M9Im1jblRleHRCbG9ja091dGVyIj4NCiAgICAg\r\nICAgPHRyPg0KICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dEJsb2Nr\r\nSW5uZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAg\r\nICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249Imxl\r\nZnQiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIiB3aWR0aD0iMTAw\r\nJSIgc3R5bGU9IndpZHRoOjEwMCU7Ij48dHI+DQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+\r\nDQoNCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAgICAgPHRkIHZh\r\nbGlnbj0idG9wIiB3aWR0aD0iNjAwIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij4NCiAgICAgICAgICAg\r\nICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImxlZnQiIGJv\r\ncmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xh\r\nc3M9Im1jblRleHRDb250ZW50Q29udGFpbmVyIiBzdHlsZT0ibWF4LXdpZHRoOiAxMDAlOyBtaW4t\r\nd2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6\r\nIDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgIDx0\r\nYm9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJtY25UZXh0Q29udGVudCIgc3R5bGU9Im1z\r\nby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyB3b3JkLWJyZWFrOiBicmVhay13b3JkOyBj\r\nb2xvcjogIzBjMGMxNDsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7\r\nIGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBsZWZ0OyBw\r\nYWRkaW5nLXRvcDogMzJweDsgcGFkZGluZy1ib3R0b206IDE2cHg7IHBhZGRpbmctcmlnaHQ6IDMy\r\ncHg7IHBhZGRpbmctbGVmdDogMzJweDsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICA8aDEgY2xhc3M9Im1jblRleHRDb250ZW50Q29udGFpbmVyIiBzdHlsZT0iZGlzcGxheTogYmxv\r\nY2s7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBB\r\ncmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDI0cHg7IGZvbnQtc3R5bGU6\r\nIG5vcm1hbDsgZm9udC13ZWlnaHQ6IGJvbGQ7IGxpbmUtaGVpZ2h0OiAxLjI1ZW07IGxldHRlci1z\r\ncGFjaW5nOiAwcHg7IHRleHQtYWxpZ246IGxlZnQ7Ij5Zb3UgaGF2ZSAxIG5ldyBtZXNzYWdlKHMp\r\nPC9oMT4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAg\r\nICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAg\r\nICAgPC90ZD4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgICAg\r\nIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8L3RyPjwvdGFibGU+DQogICAgICAgICAg\r\nICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICA8L3RkPg0KICAgICAgICA8L3RyPg0KICAg\r\nIDwvdGJvZHk+DQo8L3RhYmxlPg0KPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNl\r\nbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRCbG9jayIgc3R5bGU9Im1p\r\nbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFj\r\nZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICA8dGJvZHkgY2xhc3M9Im1j\r\nblRleHRCbG9ja091dGVyIj4NCiAgICAgICAgPHRyPg0KICAgICAgICAgICAgPHRkIHZhbGlnbj0i\r\ndG9wIiBjbGFzcz0ibWNuVGV4dEJsb2NrSW5uZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVs\r\nZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAg\r\nICAgICAgICA8dGFibGUgYWxpZ249ImxlZnQiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNl\r\nbGxwYWRkaW5nPSIwIiB3aWR0aD0iMTAwJSIgc3R5bGU9IndpZHRoOjEwMCU7Ij48dHI+DQogICAg\r\nICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+\r\nDQogICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiB3aWR0aD0iNjAwIiBzdHlsZT0id2lk\r\ndGg6NjAwcHg7Ij4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAgICAg\r\nICA8dGFibGUgYWxpZ249ImxlZnQiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFj\r\naW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRDb250ZW50Q29udGFpbmVyIiBzdHls\r\nZT0ibWF4LXdpZHRoOiAxMDAlOyBtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29s\r\nbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+\r\nDQogICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0\r\ncj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJt\r\nY25UZXh0Q29udGVudCIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyB3\r\nb3JkLWJyZWFrOiBicmVhay13b3JkOyBjb2xvcjogIzBjMGMxNDsgZm9udC1mYW1pbHk6IEFyaWFs\r\nLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWlnaHQ6IDEu\r\nNWVtOyB0ZXh0LWFsaWduOiBsZWZ0OyBwYWRkaW5nLXRvcDogOHB4OyBwYWRkaW5nLWJvdHRvbTog\r\nMTJweDsgcGFkZGluZy1yaWdodDogMzJweDsgcGFkZGluZy1sZWZ0OiAzMnB4OyI+DQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5l\r\nciIgc3R5bGU9InBhZGRpbmc6IDBweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1t\r\ncy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIGNvbG9yOiAjMGMwYzE0OyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJp\r\nZjsgZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGxlZnQ7\r\nIG1hcmdpbjogMTJweCAwcHg7Ij5IZWxsbyw8L3A+PHAgY2xhc3M9Im1jblRleHRDb250ZW50Q29u\r\ndGFpbmVyIiBzdHlsZT0icGFkZGluZzogMHB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3Rs\r\neTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5z\r\nLXNlcmlmOyBmb250LXNpemU6IDE2cHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgdGV4dC1hbGlnbjog\r\nbGVmdDsgbWFyZ2luOiAxMnB4IDBweDsiPllvdSBoYXZlIDxiIHN0eWxlPSJsaW5lLWhlaWdodDog\r\naW5oZXJpdDsiPjEgbmV3IG1lc3NhZ2Uocyk8L2I+IGluIHlvdXIgaW5ib3ggYW5kIGN1c3RvbSBm\r\nb2xkZXJzLjwvcD48cCBjbGFzcz0ibWNuVGV4dENvbnRlbnRDb250YWluZXIiIHN0eWxlPSJwYWRk\r\naW5nOiAwcHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBjb2xvcjogIzBjMGMx\r\nNDsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTog\r\nMTZweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBsZWZ0OyBtYXJnaW46IDEycHgg\r\nMHB4OyI+UGxlYXNlIGxvZyBpbiBhdCA8YSB0YXJnZXQ9Il9ibGFuayIgdGl0bGU9IkdvIHRvIHlv\r\ndXIgaW5ib3giIGhyZWY9Imh0dHBzOi8vbWFpbC5wcm90b24ubWUiIHN0eWxlPSJtc28tbGluZS1o\r\nZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsgbGluZS1oZWlnaHQ6IGluaGVyaXQ7IGNvbG9yOiAjNmQ0\r\nYWZmOyBmb250LXdlaWdodDogaW5oZXJpdDsgdGV4dC1kZWNvcmF0aW9uOiB1bmRlcmxpbmU7Ij5o\r\ndHRwczovL21haWwucHJvdG9uLm1lPC9hPiB0byBjaGVjayB0aGVtLiBUaGVzZSBub3RpZmljYXRp\r\nb25zIGNhbiBiZSB0dXJuZWQgb2ZmIGJ5IGxvZ2dpbmcgaW50byB5b3VyIGFjY291bnQgYW5kIGRp\r\nc2FibGluZyB0aGUgZGFpbHkgbm90aWZpY2F0aW9uIHNldHRpbmcuPC9wPiAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAg\r\nICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAg\r\nICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAg\r\nICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAg\r\nICAgICAgICAgICAgIDwvdHI+PC90YWJsZT4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4N\r\nCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwvdGFibGU+\r\nDQo8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRo\r\nPSIxMDAlIiBjbGFzcz0ibWNuQnV0dG9uQmxvY2siIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJv\r\ncmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxl\r\nLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyI+DQogICAgPHRib2R5IGNsYXNzPSJtY25CdXR0b25CbG9ja091dGVy\r\nIj4NCiAgICAgICAgPHRyPg0KICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBhbGlnbj0ibGVm\r\ndCIgY2xhc3M9Im1jbkJ1dHRvbkJsb2NrSW5uZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVs\r\nZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgdGV4dC1hbGlnbjogY2VudGVyOyBwYWRkaW5nLWxlZnQ6IDMycHg7IHBh\r\nZGRpbmctcmlnaHQ6IDMycHg7IHBhZGRpbmctdG9wOiAwcHg7IHBhZGRpbmctYm90dG9tOiAzMnB4\r\nOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNl\r\nbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgY2xhc3M9Im1jbkJ1dHRvbkNvbnRlbnRDb250\r\nYWluZXIiIHN0eWxlPSJtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBw\r\ndDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBzZXBhcmF0ZTsiPg0KICAgICAgICAgICAgICAgICAgICA8\r\ndGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgPHRkIHZhbGlnbj0ibWlkZGxlIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6\r\nIGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGEgY2xhc3M9\r\nIm1jbkJ1dHRvbiBtYWlsaW5nLWJ1dHRvbiIgdGl0bGU9IkxvZyBpbiB0byBjaGVjayB5b3VyIG1l\r\nc3NhZ2VzIiBocmVmPSJodHRwczovL21haWwucHJvdG9uLm1lIiB0YXJnZXQ9Il9ibGFuayIgc3R5\r\nbGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBmb250LWZhbWlseTogQXJpYWws\r\nIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBwYWRkaW5nLWxlZnQ6IDMy\r\ncHg7IHBhZGRpbmctcmlnaHQ6IDMycHg7IHBhZGRpbmctdG9wOiAxMnB4OyBwYWRkaW5nLWJvdHRv\r\nbTogMTJweDsgZGlzcGxheTogYmxvY2s7IGZvbnQtd2VpZ2h0OiBub3JtYWw7IGxldHRlci1zcGFj\r\naW5nOiAxcHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgdGV4dC1hbGlnbjogY2VudGVyOyB0ZXh0LWRl\r\nY29yYXRpb246IG5vbmU7IGNvbG9yOiAjRkZGRkZGOyBib3JkZXItcmFkaXVzOiA4cHg7IGJhY2tn\r\ncm91bmQtY29sb3I6ICM2ZDRhZmY7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICA8aSBzdHlsZT0iZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7Zm9u\r\ndC1zaXplOiAxNnB4O3BhZGRpbmctbGVmdDogMzJweDtwYWRkaW5nLXJpZ2h0OiAzMnB4O3BhZGRp\r\nbmctdG9wOiAxMnB4O3BhZGRpbmctYm90dG9tOiAxMnB4O2Rpc3BsYXk6IGJsb2NrO2ZvbnQtd2Vp\r\nZ2h0OiBub3JtYWw7bGV0dGVyLXNwYWNpbmc6IDFweDtsaW5lLWhlaWdodDogMS41ZW07dGV4dC1h\r\nbGlnbjogY2VudGVyO3RleHQtZGVjb3JhdGlvbjogbm9uZTtjb2xvcjogI0ZGRkZGRjsiPiZuYnNw\r\nOzwvaT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4gc3R5bGU9IiI+T3BlbiBQ\r\ncm90b24gTWFpbDwvc3Bhbj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9hPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgIDwv\r\ndGFibGU+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgPC90cj4N\r\nCiAgICA8L3Rib2R5Pg0KPC90YWJsZT4NCjx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIw\r\nIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25UZXh0QmxvY2siIHN0eWxl\r\nPSJtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1s\r\nc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgPHRib2R5IGNsYXNz\r\nPSJtY25UZXh0QmxvY2tPdXRlciI+DQogICAgICAgIDx0cj4NCiAgICAgICAgICAgIDx0ZCB2YWxp\r\nZ249InRvcCIgY2xhc3M9Im1jblRleHRCbG9ja0lubmVyIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0\r\nLXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAg\r\nICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJsZWZ0IiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIw\r\nIiBjZWxscGFkZGluZz0iMCIgd2lkdGg9IjEwMCUiIHN0eWxlPSJ3aWR0aDoxMDAlOyI+PHRyPg0K\r\nICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgICAgICAgICAgPCEtLVtpZiBt\r\nc29dPg0KICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgd2lkdGg9IjYwMCIgc3R5bGU9\r\nIndpZHRoOjYwMHB4OyI+DQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAg\r\nICAgICAgPHRhYmxlIGFsaWduPSJsZWZ0IiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxs\r\nc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIg\r\nc3R5bGU9Im1heC13aWR0aDogMTAwJTsgbWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6\r\nIGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsiPg0KICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFz\r\ncz0ibWNuVGV4dENvbnRlbnQiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgd29yZC1icmVhazogYnJlYWstd29yZDsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBB\r\ncmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE2cHg7IGxpbmUtaGVpZ2h0\r\nOiAxLjVlbTsgdGV4dC1hbGlnbjogbGVmdDsgcGFkZGluZy10b3A6IDhweDsgcGFkZGluZy1ib3R0\r\nb206IDEycHg7IHBhZGRpbmctcmlnaHQ6IDMycHg7IHBhZGRpbmctbGVmdDogMzJweDsiPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0ibWNuVGV4dENvbnRlbnRDb250\r\nYWluZXIiIHN0eWxlPSJwYWRkaW5nOiAwcHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5\r\nOyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyBjb2xvcjogIzBjMGMxNDsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMt\r\nc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBs\r\nZWZ0OyBtYXJnaW46IDEycHggMHB4OyI+PGEgdGFyZ2V0PSJfYmxhbmsiIGhyZWY9Imh0dHBzOi8v\r\ncHJvdG9uLm1lL3N1cHBvcnQvbm90aWZpY2F0aW9uLWVtYWlsIiBzdHlsZT0ibXNvLWxpbmUtaGVp\r\nZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRl\r\neHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGxpbmUtaGVpZ2h0OiBpbmhlcml0OyBjb2xvcjogIzZkNGFm\r\nZjsgZm9udC13ZWlnaHQ6IGluaGVyaXQ7IHRleHQtZGVjb3JhdGlvbjogdW5kZXJsaW5lOyI+TGVh\r\ncm4gbW9yZSBhYm91dCBub3RpZmljYXRpb24gZW1haWxzPC9hPjwvcD48cCBjbGFzcz0ibWNuVGV4\r\ndENvbnRlbnRDb250YWluZXIiIHN0eWxlPSJwYWRkaW5nOiAwcHg7IG1zby1saW5lLWhlaWdodC1y\r\ndWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyBjb2xvcjogIzBjMGMxNDsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2\r\nZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0\r\nZXh0LWFsaWduOiBsZWZ0OyBtYXJnaW46IDEycHggMHB4OyI+VGhhbmsgeW91LDxicj5UaGUgUHJv\r\ndG9uIFRlYW08L3A+ICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAg\r\nICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAg\r\nICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAg\r\nICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAgICAgPC90cj48L3RhYmxlPg0KICAg\r\nICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgPC90\r\ncj4NCiAgICA8L3Rib2R5Pg0KPC90YWJsZT4NCiAgICA8L3RkPg0KPC90cj48dHI+DQogICAgPHRk\r\nIHZhbGlnbj0idG9wIiBpZD0idGVtcGxhdGVGb290ZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQt\r\ncnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgYmFja2dyb3VuZC1jb2xvcjogI2ZmZmZmZjsgYmFja2dyb3VuZC1p\r\nbWFnZTogbm9uZTsgYmFja2dyb3VuZC1yZXBlYXQ6IG5vLXJlcGVhdDsgYmFja2dyb3VuZC1wb3Np\r\ndGlvbjogY2VudGVyOyBiYWNrZ3JvdW5kLXNpemU6IGNvdmVyOyBib3JkZXItdG9wOiAwOyBib3Jk\r\nZXItYm90dG9tOiAwOyBwYWRkaW5nLXRvcDogMTZweDsgcGFkZGluZy1ib3R0b206IDE2cHg7IGJv\r\ncmRlci1yYWRpdXM6IDAgMCAxNnB4IDE2cHg7Ij4NCiAgICAgICAgPHRhYmxlIGJvcmRlcj0iMCIg\r\nY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jbkRp\r\ndmlkZXJCbG9jayIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xs\r\nYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHRh\r\nYmxlLWxheW91dDogZml4ZWQ7Ij4NCiAgICA8dGJvZHkgY2xhc3M9Im1jbkRpdmlkZXJCbG9ja091\r\ndGVyIj4NCiAgICAgICAgPHRyPg0KICAgICAgICAgICAgPHRkIGNsYXNzPSJtY25EaXZpZGVyQmxv\r\nY2tJbm5lciIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgcGFkZGluZzogMCAzMnB4IDE2cHggMzJw\r\neDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICA8\r\ndGFibGUgY2xhc3M9Im1jbkRpdmlkZXJDb250ZW50IiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIw\r\nIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJv\r\ncmRlci10b3A6IDFweCBzb2xpZCAjRjVGNEYyOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBt\r\nc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAg\r\nICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgPHRkIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTog\r\nZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3Bhbj48L3Nw\r\nYW4+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAg\r\nICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8IS0tDQogICAgICAgICAgICAgICAgPHRkIGNs\r\nYXNzPSJtY25EaXZpZGVyQmxvY2tJbm5lciIgc3R5bGU9InBhZGRpbmc6IDMycHg7Ij4NCiAgICAg\r\nICAgICAgICAgICA8aHIgY2xhc3M9Im1jbkRpdmlkZXJDb250ZW50IiBzdHlsZT0iYm9yZGVyLWJv\r\ndHRvbS1jb2xvcjpub25lOyBib3JkZXItbGVmdC1jb2xvcjpub25lOyBib3JkZXItcmlnaHQtY29s\r\nb3I6bm9uZTsgYm9yZGVyLWJvdHRvbS13aWR0aDowOyBib3JkZXItbGVmdC13aWR0aDowOyBib3Jk\r\nZXItcmlnaHQtd2lkdGg6MDsgbWFyZ2luLXRvcDowOyBtYXJnaW4tcmlnaHQ6MDsgbWFyZ2luLWJv\r\ndHRvbTowOyBtYXJnaW4tbGVmdDowOyIgLz4NCiAgICAgICAgICAgICAgICAtLT4NCiAgICAgICAg\r\nICAgIDwvdGQ+DQogICAgICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwvdGFibGU+DQo8dGFibGUg\r\nYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBj\r\nbGFzcz0ibWNuVGV4dEJsb2NrIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFw\r\nc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBw\r\ndDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNuVGV4dEJsb2NrT3V0ZXIiPg0KICAgIDx0cj4N\r\nCiAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dEJsb2NrSW5uZXIiIHN0eWxl\r\nPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgPCEtLVtp\r\nZiBtc29dPg0KICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2Vs\r\nbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIiB3aWR0aD0iMTAwJSIgc3R5bGU9IndpZHRoOjEw\r\nMCU7Ij4NCiAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0K\r\nICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiB3\r\naWR0aD0iNjAwIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij4NCiAgICAgICAgICAgIDwhW2VuZGlmXS0t\r\nPg0KICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRp\r\nbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRDb250ZW50\r\nQ29udGFpbmVyIiBzdHlsZT0ibWF4LXdpZHRoOiAxMDAlOyBtaW4td2lkdGg6IDEwMCU7IGJvcmRl\r\nci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJz\r\ncGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAg\r\nIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4\r\ndENvbnRlbnQiIHN0eWxlPSJwYWRkaW5nLXRvcDogMjRweDsgcGFkZGluZy1yaWdodDogMzJweDsg\r\ncGFkZGluZy1ib3R0b206IDA7IHBhZGRpbmctbGVmdDogMzJweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1\r\nbGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IHdvcmQtYnJlYWs6IGJyZWFrLXdvcmQ7IGNvbG9yOiAjNzA2ZDZiOyBm\r\nb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNHB4\r\nOyBsaW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGNlbnRlcjsiPkNvbm5lY3Qgd2l0aCB0\r\naGUgUHJvdG9uJm5ic3A7Y29tbXVuaXR5PC90ZD4NCiAgICAgICAgICAgICAgICA8L3RyPg0KICAg\r\nICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAg\r\nPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgIDwhW2VuZGlmXS0t\r\nPg0KDQogICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICA8L3RyPg0KICAgICAg\r\nICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICA8L3RkPg0K\r\nICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwvdGFibGU+DQoNCiAgICAgICAgPHRhYmxlIGJvcmRl\r\ncj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9\r\nIm1jbkZvbGxvd0Jsb2NrIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6\r\nIGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsiPg0KICAgICAgICAgICAgPHRib2R5IGNsYXNzPSJtY25Gb2xsb3dCbG9ja091dGVyIj4NCiAg\r\nICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVy\r\nIiB2YWxpZ249InRvcCIgY2xhc3M9Im1jbkZvbGxvd0Jsb2NrSW5uZXIiIHN0eWxlPSJwYWRkaW5n\r\nOiAxNnB4IDE2cHggMDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAg\r\nICAgICAgICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxs\r\nc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50Q29udGFpbmVy\r\nIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28t\r\ndGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGFsaWduPSJj\r\nZW50ZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxw\r\nYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25Gb2xsb3dD\r\nb250ZW50IiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNl\r\nOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGFsaWduPSJjZW50\r\nZXIiIHZhbGlnbj0idG9wIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1t\r\ncy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxz\r\ncGFjaW5nPSIwIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxz\r\ncGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249InRvcCIgc3R5bGU9\r\nIm1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8IS0t\r\nW2lmIG1zb10+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIw\r\nIiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAiPg0KICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCg0KICAgICAgICA8IS0tW2lmIG1zb10+DQog\r\nICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249InRvcCI+DQogICAgICAgIDwhW2VuZGlm\r\nXS0tPg0KICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIwIiBjZWxscGFkZGlu\r\nZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHN0eWxlPSJkaXNwbGF5OiBpbmxpbmU7IGJvcmRlci1jb2xs\r\nYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTog\r\nMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyI+DQogICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICA8dHI+DQogICAgICAg\r\nICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuRm9sbG93Q29udGVudEl0ZW1Db250\r\nYWluZXIiIHN0eWxlPSJwYWRkaW5nLXRvcDogOHB4OyBwYWRkaW5nLXJpZ2h0OiA0cHg7IHBhZGRp\r\nbmctYm90dG9tOiA4cHg7IHBhZGRpbmctbGVmdDogNHB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTog\r\nZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBjZWxs\r\ncGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuRm9sbG93\r\nQ29udGVudEl0ZW0iIHN0eWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUt\r\nbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249Im1pZGRsZSIgc3R5\r\nbGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRk\r\naW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IiIgc3R5bGU9ImJvcmRlci1jb2xsYXBzZTog\r\nY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAt\r\nbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0ibWlkZGxlIiB3aWR0\r\naD0iMzUiIGNsYXNzPSJtY25Gb2xsb3dJY29uQ29udGVudCIgc3R5bGU9Im1zby1saW5lLWhlaWdo\r\ndC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyI+DQoNCiAgICAgICAgPGEgaHJlZj0iaHR0cHM6Ly90d2l0dGVy\r\nLmNvbS9Qcm90b25Qcml2YWN5IiB0YXJnZXQ9Il9ibGFuayIgc3R5bGU9Im1zby1saW5lLWhlaWdo\r\ndC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyBsaW5lLWhlaWdodDogaW5oZXJpdDsiPjxpbWcgc3JjPSJjaWQ6\r\nODUzZTBkZTk3NjRhYThiZDYxZDBAbWFpbC5wcm90b24ubWUiIGFsdD0iVHdpdHRlciIgaGVpZ2h0\r\nPSIzNSIgd2lkdGg9IjM1IiBjbGFzcz0ic29jaWFsLWljb24iIHN0eWxlPSJkaXNwbGF5OiBibG9j\r\nazsgYm9yZGVyOiAwOyBoZWlnaHQ6IGF1dG87IG91dGxpbmU6IG5vbmU7IHRleHQtZGVjb3JhdGlv\r\nbjogdW5kZXJsaW5lOyAtbXMtaW50ZXJwb2xhdGlvbi1tb2RlOiBiaWN1YmljOyBmb250LWZhbWls\r\neTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxMnB4OyBsaW5lLWhl\r\naWdodDogMS41ZW07IGNvbG9yOiAjNzA2ZDZiOyBmb250LXdlaWdodDogbm9ybWFsOyI+PC9hPg0K\r\nDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\nL3RhYmxlPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAg\r\nICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAg\r\nICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAg\r\nICAgPC90cj4NCiAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgIDwvdGFibGU+DQogICAgICAg\r\nIDwhLS1baWYgbXNvXT4NCiAgICAgICAgPC90ZD4NCiAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAg\r\nICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJ0\r\nb3AiPg0KICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIi\r\nIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBzdHlsZT0iZGlzcGxh\r\neTogaW5saW5lOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAw\r\ncHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13\r\nZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgPHRib2R5Pg0KICAg\r\nICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1j\r\nbkZvbGxvd0NvbnRlbnRJdGVtQ29udGFpbmVyIiBzdHlsZT0icGFkZGluZy10b3A6IDhweDsgcGFk\r\nZGluZy1yaWdodDogNHB4OyBwYWRkaW5nLWJvdHRvbTogOHB4OyBwYWRkaW5nLWxlZnQ6IDRweDsg\r\nbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAg\r\nPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0i\r\nMTAwJSIgY2xhc3M9Im1jbkZvbGxvd0NvbnRlbnRJdGVtIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNl\r\nOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7\r\nIC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgYWxpZ249ImNlbnRl\r\nciIgdmFsaWduPSJtaWRkbGUiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRl\r\nciIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIiIHN0\r\neWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1z\r\nby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVy\r\nIiB2YWxpZ249Im1pZGRsZSIgd2lkdGg9IjM1IiBjbGFzcz0ibWNuRm9sbG93SWNvbkNvbnRlbnQi\r\nIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KDQogICAgICAgIDxh\r\nIGhyZWY9Imh0dHBzOi8vcmVkZGl0LmNvbS9yL1Byb3Rvbk1haWwiIHRhcmdldD0iX2JsYW5rIiBz\r\ndHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGxpbmUtaGVpZ2h0OiBpbmhl\r\ncml0OyI+PGltZyBzcmM9ImNpZDo5MWU5YmQyNWVmZjIyM2NlNmY0Y0BtYWlsLnByb3Rvbi5tZSIg\r\nYWx0PSJSZWRkaXQiIGhlaWdodD0iMzUiIHdpZHRoPSIzNSIgY2xhc3M9InNvY2lhbC1pY29uIiBz\r\ndHlsZT0iZGlzcGxheTogYmxvY2s7IGJvcmRlcjogMDsgaGVpZ2h0OiBhdXRvOyBvdXRsaW5lOiBu\r\nb25lOyB0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTsgLW1zLWludGVycG9sYXRpb24tbW9kZTog\r\nYmljdWJpYzsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQt\r\nc2l6ZTogMTJweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyBjb2xvcjogIzcwNmQ2YjsgZm9udC13ZWln\r\naHQ6IG5vcm1hbDsiPjwvYT4NCg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\nL3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAg\r\nICAgPC90ZD4NCiAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAg\r\nICA8L3RhYmxlPg0KICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgIDwvdGQ+DQogICAgICAg\r\nIDwhW2VuZGlmXS0tPg0KDQogICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgPHRkIGFsaWdu\r\nPSJjZW50ZXIiIHZhbGlnbj0idG9wIj4NCiAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgIDx0\r\nYWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2lu\r\nZz0iMCIgc3R5bGU9ImRpc3BsYXk6IGlubGluZTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsg\r\nbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAg\r\nICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICA8dGQgdmFs\r\naWduPSJ0b3AiIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50SXRlbUNvbnRhaW5lciIgc3R5bGU9InBh\r\nZGRpbmctdG9wOiA4cHg7IHBhZGRpbmctcmlnaHQ6IDRweDsgcGFkZGluZy1ib3R0b206IDhweDsg\r\ncGFkZGluZy1sZWZ0OiA0cHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQog\r\nICAgICAgICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxs\r\nc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50SXRlbSIgc3R5\r\nbGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNv\r\nLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+\r\nDQogICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0ibWlkZGxlIiBzdHlsZT0ibXNvLWxpbmUtaGVp\r\nZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRl\r\neHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFj\r\naW5nPSIwIiB3aWR0aD0iIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRh\r\nYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJtaWRkbGUiIHdpZHRoPSIzNSIgY2xhc3M9Im1j\r\nbkZvbGxvd0ljb25Db250ZW50IiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7\r\nIC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7Ij4NCg0KICAgICAgICA8YSBocmVmPSJodHRwczovL3d3dy5saW5rZWRpbi5jb20vY29tcGFu\r\neS9wcm90b25wcml2YWN5LyIgdGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQt\r\ncnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgbGluZS1oZWlnaHQ6IGluaGVyaXQ7Ij48aW1nIHNyYz0iY2lkOmUy\r\nMDM1MWJkYTlhNjc1N2NkMTY1QG1haWwucHJvdG9uLm1lIiBhbHQ9IkxpbmtlZEluIiBoZWlnaHQ9\r\nIjM1IiB3aWR0aD0iMzUiIGNsYXNzPSJzb2NpYWwtaWNvbiIgc3R5bGU9ImRpc3BsYXk6IGJsb2Nr\r\nOyBib3JkZXI6IDA7IGhlaWdodDogYXV0bzsgb3V0bGluZTogbm9uZTsgdGV4dC1kZWNvcmF0aW9u\r\nOiB1bmRlcmxpbmU7IC1tcy1pbnRlcnBvbGF0aW9uLW1vZGU6IGJpY3ViaWM7IGZvbnQtZmFtaWx5\r\nOiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDEycHg7IGxpbmUtaGVp\r\nZ2h0OiAxLjVlbTsgY29sb3I6ICM3MDZkNmI7IGZvbnQtd2VpZ2h0OiBub3JtYWw7Ij48L2E+DQoN\r\nCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwv\r\ndGFibGU+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAg\r\nICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAg\r\nICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAg\r\nICA8L3RyPg0KICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgPC90YWJsZT4NCiAgICAgICAg\r\nPCEtLVtpZiBtc29dPg0KICAgICAgICA8L3RkPg0KICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAg\r\nICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249InRv\r\ncCI+DQogICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIg\r\nYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHN0eWxlPSJkaXNwbGF5\r\nOiBpbmxpbmU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBw\r\ndDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdl\r\nYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICA8dGJvZHk+DQogICAg\r\nICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNu\r\nRm9sbG93Q29udGVudEl0ZW1Db250YWluZXIiIHN0eWxlPSJwYWRkaW5nLXRvcDogOHB4OyBwYWRk\r\naW5nLXJpZ2h0OiA0cHg7IHBhZGRpbmctYm90dG9tOiA4cHg7IHBhZGRpbmctbGVmdDogNHB4OyBt\r\nc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICA8\r\ndGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIx\r\nMDAlIiBjbGFzcz0ibWNuRm9sbG93Q29udGVudEl0ZW0iIHN0eWxlPSJib3JkZXItY29sbGFwc2U6\r\nIGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAg\r\nICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVy\r\nIiB2YWxpZ249Im1pZGRsZSIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAt\r\nbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVy\r\nIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IiIgc3R5\r\nbGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNv\r\nLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIi\r\nIHZhbGlnbj0ibWlkZGxlIiB3aWR0aD0iMzUiIGNsYXNzPSJtY25Gb2xsb3dJY29uQ29udGVudCIg\r\nc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQoNCiAgICAgICAgPGEg\r\naHJlZj0iaHR0cHM6Ly9mYWNlYm9vay5jb20vUHJvdG9uIiB0YXJnZXQ9Il9ibGFuayIgc3R5bGU9\r\nIm1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBsaW5lLWhlaWdodDogaW5oZXJpdDsi\r\nPjxpbWcgc3JjPSJjaWQ6OTFiMDZhNmQyNjI3MDBkMjlhNWNAbWFpbC5wcm90b24ubWUiIGFsdD0i\r\nRmFjZWJvb2siIGhlaWdodD0iMzUiIHdpZHRoPSIzNSIgY2xhc3M9InNvY2lhbC1pY29uIiBzdHls\r\nZT0iZGlzcGxheTogYmxvY2s7IGJvcmRlcjogMDsgaGVpZ2h0OiBhdXRvOyBvdXRsaW5lOiBub25l\r\nOyB0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTsgLW1zLWludGVycG9sYXRpb24tbW9kZTogYmlj\r\ndWJpYzsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6\r\nZTogMTJweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyBjb2xvcjogIzcwNmQ2YjsgZm9udC13ZWlnaHQ6\r\nIG5vcm1hbDsiPjwvYT4NCg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Rk\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAg\r\nIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAg\r\nPC90ZD4NCiAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICA8\r\nL3RhYmxlPg0KICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgIDwvdGQ+DQogICAgICAgIDwh\r\nW2VuZGlmXS0tPg0KDQogICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgPHRkIGFsaWduPSJj\r\nZW50ZXIiIHZhbGlnbj0idG9wIj4NCiAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgIDx0YWJs\r\nZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0i\r\nMCIgc3R5bGU9ImRpc3BsYXk6IGlubGluZTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNv\r\nLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAg\r\nICAgIDx0Ym9keT4NCiAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICA8dGQgdmFsaWdu\r\nPSJ0b3AiIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50SXRlbUNvbnRhaW5lciIgc3R5bGU9InBhZGRp\r\nbmctdG9wOiA4cHg7IHBhZGRpbmctcmlnaHQ6IDRweDsgcGFkZGluZy1ib3R0b206IDhweDsgcGFk\r\nZGluZy1sZWZ0OiA0cHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAg\r\nICAgICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3Bh\r\nY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50SXRlbSIgc3R5bGU9\r\nImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRh\r\nYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0ibWlkZGxlIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0\r\nLXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRh\r\nYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5n\r\nPSIwIiB3aWR0aD0iIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxl\r\nLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\ndGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJtaWRkbGUiIHdpZHRoPSIzNSIgY2xhc3M9Im1jbkZv\r\nbGxvd0ljb25Db250ZW50IiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1t\r\ncy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIj4NCg0KICAgICAgICA8YSBocmVmPSJodHRwczovL2luc3RhZ3JhbS5jb20vcHJvdG9ucHJpdmFj\r\neSIgdGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgbGluZS1oZWlnaHQ6IGluaGVyaXQ7Ij48aW1nIHNyYz0iY2lkOjlhNTkzNzNiNzdmNDNkOWNk\r\nNjU3QG1haWwucHJvdG9uLm1lIiBhbHQ9Ikluc3RhZ3JhbSIgaGVpZ2h0PSIzNSIgd2lkdGg9IjM1\r\nIiBjbGFzcz0ic29jaWFsLWljb24iIHN0eWxlPSJkaXNwbGF5OiBibG9jazsgYm9yZGVyOiAwOyBo\r\nZWlnaHQ6IGF1dG87IG91dGxpbmU6IG5vbmU7IHRleHQtZGVjb3JhdGlvbjogdW5kZXJsaW5lOyAt\r\nbXMtaW50ZXJwb2xhdGlvbi1tb2RlOiBiaWN1YmljOyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZl\r\ndGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxMnB4OyBsaW5lLWhlaWdodDogMS41ZW07IGNv\r\nbG9yOiAjNzA2ZDZiOyBmb250LXdlaWdodDogbm9ybWFsOyI+PC9hPg0KDQogICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\nL3Rib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3Ry\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICAgICAg\r\nPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgPC90cj4NCiAgICAg\r\nICAgICAgIDwvdGJvZHk+DQogICAgICAgIDwvdGFibGU+DQogICAgICAgIDwhLS1baWYgbXNvXT4N\r\nCiAgICAgICAgPC90ZD4NCiAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgPCEtLVtpZiBt\r\nc29dPg0KICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJ0b3AiPg0KICAgICAgICA8\r\nIVtlbmRpZl0tLT4NCiAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2Vs\r\nbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBzdHlsZT0iZGlzcGxheTogaW5saW5lOyBib3Jk\r\nZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1y\r\nc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgPHRyPg0K\r\nICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jbkZvbGxvd0NvbnRlbnRJ\r\ndGVtQ29udGFpbmVyIiBzdHlsZT0icGFkZGluZy10b3A6IDhweDsgcGFkZGluZy1yaWdodDogNHB4\r\nOyBwYWRkaW5nLWJvdHRvbTogOHB4OyBwYWRkaW5nLWxlZnQ6IDRweDsgbXNvLWxpbmUtaGVpZ2h0\r\nLXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgPHRhYmxlIGJvcmRlcj0i\r\nMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1j\r\nbkZvbGxvd0NvbnRlbnRJdGVtIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNv\r\nLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAg\r\nICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJtaWRk\r\nbGUiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIwIiBj\r\nZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIiIHN0eWxlPSJib3JkZXItY29s\r\nbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6\r\nIDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249Im1pZGRs\r\nZSIgd2lkdGg9IjM1IiBjbGFzcz0ibWNuRm9sbG93SWNvbkNvbnRlbnQiIHN0eWxlPSJtc28tbGlu\r\nZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJr\r\naXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KDQogICAgICAgIDxhIGhyZWY9Imh0dHBzOi8v\r\ncHJvdG9uLm1lL2Jsb2ciIHRhcmdldD0iX2JsYW5rIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1\r\nbGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IGxpbmUtaGVpZ2h0OiBpbmhlcml0OyI+PGltZyBzcmM9ImNpZDo2MDg0\r\nYTgxNjMyZTcyNzQ4OTVhZUBtYWlsLnByb3Rvbi5tZSIgYWx0PSJCbG9nIiBoZWlnaHQ9IjM1IiB3\r\naWR0aD0iMzUiIGNsYXNzPSJzb2NpYWwtaWNvbiIgc3R5bGU9ImRpc3BsYXk6IGJsb2NrOyBib3Jk\r\nZXI6IDA7IGhlaWdodDogYXV0bzsgb3V0bGluZTogbm9uZTsgdGV4dC1kZWNvcmF0aW9uOiB1bmRl\r\ncmxpbmU7IC1tcy1pbnRlcnBvbGF0aW9uLW1vZGU6IGJpY3ViaWM7IGZvbnQtZmFtaWx5OiBBcmlh\r\nbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDEycHg7IGxpbmUtaGVpZ2h0OiAx\r\nLjVlbTsgY29sb3I6ICM3MDZkNmI7IGZvbnQtd2VpZ2h0OiBub3JtYWw7Ij48L2E+DQoNCiAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGFibGU+\r\nDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAg\r\nICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICA8L3Ry\r\nPg0KICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgPC90YWJsZT4NCiAgICAgICAgPCEtLVtp\r\nZiBtc29dPg0KICAgICAgICA8L3RkPg0KICAgICAgICA8IVtlbmRpZl0tLT4NCg0KDQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Rk\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgIDwv\r\ndHI+DQogICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICA8L3RhYmxlPg0KDQo8dGFibGUgYm9y\r\nZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFz\r\ncz0ibWNuVGV4dEJsb2NrIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6\r\nIGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNuVGV4dEJsb2NrT3V0ZXIiPg0KICAgIDx0cj4NCiAg\r\nICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dEJsb2NrSW5uZXIiIHN0eWxlPSJt\r\nc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgPCEtLVtpZiBt\r\nc29dPg0KICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHNw\r\nYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIiB3aWR0aD0iMTAwJSIgc3R5bGU9IndpZHRoOjEwMCU7\r\nIj4NCiAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAg\r\nICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiB3aWR0\r\naD0iNjAwIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij4NCiAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0K\r\nICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9\r\nIjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRDb250ZW50Q29u\r\ndGFpbmVyIiBzdHlsZT0ibWF4LXdpZHRoOiAxMDAlOyBtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1j\r\nb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFj\r\nZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgIDx0\r\ncj4NCiAgICAgICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dENv\r\nbnRlbnQiIHN0eWxlPSJwYWRkaW5nLXRvcDogMjRweDsgcGFkZGluZy1yaWdodDogMzJweDsgcGFk\r\nZGluZy1ib3R0b206IDA7IHBhZGRpbmctbGVmdDogMzJweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6\r\nIGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IHdvcmQtYnJlYWs6IGJyZWFrLXdvcmQ7IGNvbG9yOiAjNzA2ZDZiOyBmb250\r\nLWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNHB4OyBs\r\naW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGNlbnRlcjsiPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgWW91IGFyZSByZWNlaXZpbmcgdGhpcyBlbWFpbCBiZWNhdXNlIHlvdSBzZXQgYSBu\r\nb3RpZmljYXRpb24gZm9yIG5ldyBtZXNzYWdlcyByZWNlaXZlZCBpbiB5b3VyIFByb3RvbiBNYWls\r\nIGluYm94LiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICA8YSBocmVmPSJodHRwczovL3Byb3Rvbi5tZS9zdXBwb3J0L25vdGlmaWNhdGlvbi1lbWFpbCIg\r\ndGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1z\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nbGluZS1oZWlnaHQ6IGluaGVyaXQ7IGNvbG9yOiAjNzA2ZDZiOyBmb250LXdlaWdodDogbm9ybWFs\r\nOyB0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTsiPkxlYXJuIG1vcmUgYWJvdXQgbm90aWZpY2F0\r\naW9uIGVtYWlsczwvYT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPC90ZD4NCiAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgIDwvdGJvZHk+\r\nDQogICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAg\r\nICAgICAgPC90ZD4NCiAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgICAgICA8IS0t\r\nW2lmIG1zb10+DQogICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgPC90YWJsZT4NCiAgICAg\r\nICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICA8L3RkPg0KICAgIDwvdHI+DQogICAgPC90Ym9k\r\neT4NCjwvdGFibGU+DQo8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNp\r\nbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dEJsb2NrIiBzdHlsZT0ibWluLXdpZHRo\r\nOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7\r\nIG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJr\r\naXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNuVGV4dEJs\r\nb2NrT3V0ZXIiPg0KICAgIDx0cj4NCiAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNu\r\nVGV4dEJsb2NrSW5uZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1z\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsi\r\nPg0KICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJj\r\nZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIiB3aWR0aD0i\r\nMTAwJSIgc3R5bGU9IndpZHRoOjEwMCU7Ij4NCiAgICAgICAgICAgICAgICA8dHI+DQogICAgICAg\r\nICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAg\r\nICAgPHRkIHZhbGlnbj0idG9wIiB3aWR0aD0iNjAwIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij4NCiAg\r\nICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIi\r\nIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIg\r\nY2xhc3M9Im1jblRleHRDb250ZW50Q29udGFpbmVyIiBzdHlsZT0ibWF4LXdpZHRoOiAxMDAlOyBt\r\naW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3Bh\r\nY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPHRi\r\nb2R5Pg0KICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgPHRkIHZhbGln\r\nbj0idG9wIiBjbGFzcz0ibWNuVGV4dENvbnRlbnQiIHN0eWxlPSJwYWRkaW5nLXRvcDogMTZweDsg\r\ncGFkZGluZy1yaWdodDogMzJweDsgcGFkZGluZy1ib3R0b206IDA7IHBhZGRpbmctbGVmdDogMzJw\r\neDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHdvcmQtYnJlYWs6IGJyZWFrLXdv\r\ncmQ7IGNvbG9yOiAjNzA2ZDZiOyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1z\r\nZXJpZjsgZm9udC1zaXplOiAxNHB4OyBsaW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGNl\r\nbnRlcjsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPGEgZGF0YS11bnN1YnNjcmliZS1saW5r\r\nPSJwcm90b24ubWUiIHJlbD0ibm9vcGVuZXIgbm9yZWZlcnJlciIgaHJlZj0iaHR0cHM6Ly9hY2Nv\r\ndW50LnByb3Rvbi5tZS91bnN1YnNjcmliZS82NCNleUowZVhBaU9pSktWMVFpTENKaGJHY2lPaUpJ\r\nVXpJMU5pSjkuZXlKcFlYUWlPakUzTlRrNU1UQTNNVE11TkRRME16RTFPU3dpWlhod0lqb3hOell5\r\nTlRBeU56RXpMQ0pWYzJWeVNVUWlPaUpVU1ZOYVdFUjRjR1pTUVZOWFV6ZEVlbGRNVjNkbklpd2lV\r\nMk52Y0dVaU9qazRNekEwTENKcGMzTWlPaUp3Y205MGIyNHViV1VpTENKaGRXUWlPaUp3Y205MGIy\r\nNHViV1VpTENKVWVYQmxJam94ZlEuME4zcG9QejduZGg3ejQyRy1DbEJoX2RHY3U3WW4wNW5OMGt6\r\naE9MN0hZMCIgdGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhh\r\nY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgbGluZS1oZWlnaHQ6IGluaGVyaXQ7IGNvbG9yOiAjNzA2ZDZiOyBmb250LXdlaWdo\r\ndDogbm9ybWFsOyB0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTsiPlVwZGF0ZSB5b3VyIGVtYWls\r\nIHByZWZlcmVuY2VzIG9yIHVuc3Vic2NyaWJlPC9hPg0KICAgICAgICAgICAgICAgICAgICA8L3Rk\r\nPg0KICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAg\r\nICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICA8\r\nL3RkPg0KICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgICAgIDwhLS1baWYgbXNv\r\nXT4NCiAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAg\r\nPCFbZW5kaWZdLS0+DQogICAgICAgIDwvdGQ+DQogICAgPC90cj4NCiAgICA8L3Rib2R5Pg0KPC90\r\nYWJsZT4NCjx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIg\r\nd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25UZXh0QmxvY2siIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7\r\nIGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRh\r\nYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgPHRib2R5IGNsYXNzPSJtY25UZXh0QmxvY2tPdXRl\r\nciI+DQogICAgPHRyPg0KICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJtY25UZXh0Qmxv\r\nY2tJbm5lciIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAg\r\nICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIg\r\nYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAiIHdpZHRoPSIxMDAlIiBz\r\ndHlsZT0id2lkdGg6MTAwJTsiPg0KICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgIDwh\r\nW2VuZGlmXS0tPg0KDQogICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICA8dGQg\r\ndmFsaWduPSJ0b3AiIHdpZHRoPSI2MDAiIHN0eWxlPSJ3aWR0aDo2MDBweDsiPg0KICAgICAgICAg\r\nICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVy\r\nPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0i\r\nbWNuVGV4dENvbnRlbnRDb250YWluZXIiIHN0eWxlPSJtYXgtd2lkdGg6IDEwMCU7IG1pbi13aWR0\r\naDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0\r\nOyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Vi\r\na2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICA8dGJvZHk+DQog\r\nICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3Ai\r\nIGNsYXNzPSJtY25UZXh0Q29udGVudCIgc3R5bGU9InBhZGRpbmctdG9wOiAxNnB4OyBwYWRkaW5n\r\nLXJpZ2h0OiAzMnB4OyBwYWRkaW5nLWJvdHRvbTogMDsgcGFkZGluZy1sZWZ0OiAzMnB4OyBtc28t\r\nbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13\r\nZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgd29yZC1icmVhazogYnJlYWstd29yZDsgY29s\r\nb3I6ICM3MDZkNmI7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBm\r\nb250LXNpemU6IDE0cHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgdGV4dC1hbGlnbjogY2VudGVyOyI+\r\nDQogICAgICAgICAgICAgICAgICAgICAgICA8cCBzdHlsZT0ibWFyZ2luOiAxMnB4IDA7IHBhZGRp\r\nbmc6IDA7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+wqkgMjAyNSBQcm90b24g\r\nQUcgU3dpdHplcmxhbmQ8YnI+Um91dGUgZGUgbGEgR2FsYWlzZSZuYnNwOzMyLCAxMjI4Jm5ic3A7\r\nUGxhbi1sZXMtT3VhdGVzLCBHZW5ldmEsJm5ic3A7U3dpdHplcmxhbmQ8L3A+DQogICAgICAgICAg\r\nICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICA8\r\nL3Rib2R5Pg0KICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgIDwhLS1baWYgbXNvXT4N\r\nCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAg\r\nICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgIDwvdGFibGU+\r\nDQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgPC90ZD4NCiAgICA8L3RyPg0KICAg\r\nIDwvdGJvZHk+DQo8L3RhYmxlPg0KPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNl\r\nbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jbkltYWdlQmxvY2siIHN0eWxlPSJi\r\nb3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJs\r\nZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgbWluLXdpZHRoOiAxMDAlOyI+DQogICAgPHRib2R5IGNsYXNzPSJt\r\nY25JbWFnZUJsb2NrT3V0ZXIiPg0KICAgIDx0cj4NCiAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBj\r\nbGFzcz0ibWNuSW1hZ2VCbG9ja0lubmVyIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4\r\nYWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7IHBhZGRpbmc6IDE2cHg7Ij4NCiAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2Vu\r\ndGVyIiB3aWR0aD0iMTAwJSIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9\r\nIjAiIGNsYXNzPSJtY25JbWFnZUNvbnRlbnRDb250YWluZXIiIHN0eWxlPSJib3JkZXItY29sbGFw\r\nc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBw\r\ndDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgbWluLXdpZHRoOiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAg\r\nICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJtY25JbWFnZUNv\r\nbnRlbnQiIHZhbGlnbj0idG9wIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7\r\nIC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7IHBhZGRpbmctcmlnaHQ6IDE2cHg7IHBhZGRpbmctbGVmdDogMTZweDsgcGFkZGluZy10b3A6\r\nIDA7IHBhZGRpbmctYm90dG9tOiAwOyB0ZXh0LWFsaWduOiBjZW50ZXI7Ij4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgIDxpbWcgYWxpZ249ImNlbnRlciIgYWx0PSIiIHNyYz0iY2lkOjkwMzc3YWZi\r\nNmNmYWYzYWZiNjU5QG1haWwucHJvdG9uLm1lIiB3aWR0aD0iMjc2IiBjbGFzcz0ibWNuUmV0aW5h\r\nSW1hZ2UiIHN0eWxlPSJib3JkZXI6IDA7IGhlaWdodDogYXV0bzsgb3V0bGluZTogbm9uZTsgdGV4\r\ndC1kZWNvcmF0aW9uOiBub25lOyAtbXMtaW50ZXJwb2xhdGlvbi1tb2RlOiBiaWN1YmljOyBtYXgt\r\nd2lkdGg6IDU1MnB4OyBwYWRkaW5nLWJvdHRvbTogMDsgdmVydGljYWwtYWxpZ246IGJvdHRvbTsg\r\nZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTJw\r\neDsgbGluZS1oZWlnaHQ6IDEuNWVtOyBkaXNwbGF5OiBpbmxpbmU7Ij4NCiAgICAgICAgICAgICAg\r\nICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgIDwvdGJv\r\nZHk+DQogICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICA8L3RkPg0KICAgIDwvdHI+DQogICAg\r\nPC90Ym9keT4NCjwvdGFibGU+DQogICAgPC90ZD4NCjwvdHI+DQogICAgICAgICAgICAgICAgICAg\r\nICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgICAgICAgICAgPCEtLVtpZiAoZ3RlIG1zbyA5\r\nKXwoSUUpXT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAg\r\nICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAg\r\nICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgICAgICAgICAgICAgPCEt\r\nLSAvLyBFTkQgVEVNUExBVEUgLS0+DQogICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAg\r\nICAgICAgICAgPC90cj4NCiAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgIDwvY2VudGVyPg0K\r\nICAgIDwvYm9keT4NCjwvaHRtbD4NCg==\r\n\r\n--b2=_CYiOIogyTXYL9Jb2O0ildLMQQ0b64VQHsDGYt4Bo\r\nContent-Type: image/png; name=logos-footer.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <90377afb6cfaf3afb659@mail.proton.me>\r\nContent-Disposition: inline; filename=logos-footer.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAigAAABwCAMAAAADkXsEAAAABGdBTUEAALGPC/xhBQAAAAFzUkdC\r\nAK7OHOkAAAAJcEhZcwAAFiUAABYlAUlSJPAAAALfUExURUdwTIpy/YZp/rfc/KOc6Ydn+76K3WxJ\r\n/97I0ZBp//CJWbx+0b6l+o1v/ubH3y7ZzdVqlo5p/fO7m29P/sXM8qiO/vi7tL7O++l3e5Z3/4tp\r\n/8mz9eSr2LXu9bae/3df/pV3//jZ0L2q/te/+XaA/bXo9+GpufnSzjKj8NrC/+SGjNLE/9Roo6Rp\r\n5KGK/cRiqNxujzq619ep3Itk/Cyo8PnBycWIy2vZ4fJgxltp+O9/e0ed4rbt9cWHyuRyhDHO0DjA\r\n1CrgyrVau+tfyJt4/8GI/3BN/21K/3BN/3hN+rCS/3VS/55+/3JL/H9O+JZ1/5p5/7KZ/ref/oVR\r\n9UZ0/4tP8pFx/+C3/1Jm/6uM/7yl/6KC/4lp/6dT5qaH/0xt/1hg/z97/7ZW4HpZ/4Nl/39g/9ix\r\n/11a/8G//59S6bbs9TiC/65U4zKJ/7zj+GhQ/4JM7Ytw/5JQ7x2f/5lS2L1X3JhR7MCr/9Kr/7jX\r\n/762/4pO5mNV/8ym/5JP345Z8fK9zcVY2SuQ/3tL9O66z+a00/+7k7H28r/e/WFl9iWX/8Wg/+q3\r\n0biU/5df681Z1l1s87d612Re+L+a/8au8cKDzsbR/RWo/7yn9qWT/rdcuceJycnJ/5eA/86QxLF0\r\n3OGw1rFZwNZb0s27/6tu4L5fspF6//a/y8LY+/B8ctSXvtqr2ta76M617eevqMKa5p9T0tKm3qCM\r\n/qVp471+06xXxZ5k5/jb0t9cztHB/8Ww/02R5lGJ6eGnrrat/2dX+7/U/0mZ40Wj4Mqg4sViqqRV\r\nzVSB7Fd67sm2/6OC9Vp08ECu3L/K/6uJ8uh1f97B5PHU2NbH//GEY8tlopuH/+TH4LqU6qmc/zu6\r\n2O24oIhf/+rN3NFom9icubKP79lsktyhtK+k/+peyeFxiN7S//rCyadWyjXI0/GNVN1vjJDG+fHN\r\nynqu9abL//20h/ife5bk7NVyobFiylqj/52w+HnLP+kAAABGdFJOUwBnRH8QICD+IP+AMd6f3v7+\r\n397dON6AWYTPvpdj3n+Fi9e/yv2m05d63k1/hd+7pNlD3PW/65P32brk5MfX58+IiN6/v4D1Cm7r\r\n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\r\n\r\n--b2=_CYiOIogyTXYL9Jb2O0ildLMQQ0b64VQHsDGYt4Bo\r\nContent-Type: image/png; name=link.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <6084a81632e7274895ae@mail.proton.me>\r\nContent-Disposition: inline; filename=link.png\r\n\r\n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\r\nHx/rAPwHlmSLrKlhoigAAAAASUVORK5CYII=\r\n\r\n--b2=_CYiOIogyTXYL9Jb2O0ildLMQQ0b64VQHsDGYt4Bo\r\nContent-Type: image/png; name=instagram.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <9a59373b77f43d9cd657@mail.proton.me>\r\nContent-Disposition: inline; filename=instagram.png\r\n\r\n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\r\n\r\n--b2=_CYiOIogyTXYL9Jb2O0ildLMQQ0b64VQHsDGYt4Bo\r\nContent-Type: image/png; name=facebook.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <91b06a6d262700d29a5c@mail.proton.me>\r\nContent-Disposition: inline; filename=facebook.png\r\n\r\n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\r\ncG0LAAAAAElFTkSuQmCC\r\n\r\n--b2=_CYiOIogyTXYL9Jb2O0ildLMQQ0b64VQHsDGYt4Bo\r\nContent-Type: image/png; name=linkedin.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <e20351bda9a6757cd165@mail.proton.me>\r\nContent-Disposition: inline; filename=linkedin.png\r\n\r\n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\r\n\r\n--b2=_CYiOIogyTXYL9Jb2O0ildLMQQ0b64VQHsDGYt4Bo\r\nContent-Type: image/png; name=reddit.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <91e9bd25eff223ce6f4c@mail.proton.me>\r\nContent-Disposition: inline; filename=reddit.png\r\n\r\n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\r\n\r\n--b2=_CYiOIogyTXYL9Jb2O0ildLMQQ0b64VQHsDGYt4Bo\r\nContent-Type: image/png; name=twitter.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <853e0de9764aa8bd61d0@mail.proton.me>\r\nContent-Disposition: inline; filename=twitter.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAFQAAABUCAYAAAAcaxDBAAAAAXNSR0IArs4c6QAAAARnQU1BAACx\r\njwv8YQUAAAAJcEhZcwAACxMAAAsTAQCanBgAAAgRSURBVHhe7ZxdaFRHFMdnVqtbjWajsQnU6lpK\r\nEjHS+CLSFkzRh1RpqwgtltrGgiAoJFKp2ocaX7QBiwmNUPDBWqG2BUli0VoaawLaFn0wYsREKK6V\r\nQgLGbGzEpNCdnjN7tlnjfszHvXc39v5guTOzYXPv/55z5szMnct8fHx8fHx8fHx8fHx8JsDpmHNC\r\npRVhOFQHxD9VggUWMibCjPMQtGF7MhEmRBROPSK4uMpirJsFAt3R/t4IfZ9TciooiIgCrhM88CZU\r\nJwqnS4Qz0RljgWMgbie1eY7ngoZC4VAgOK1OCF4P/x0t0A0igokGxgJdXluuZ4J6JOSjCBaFC/wy\r\nxnmzV8JOoaOrhErK6/jUqW0QE2tAzCA1uw/+L85WgKjrggVzo6Mjg1fpG9dw1UKxo4G4dhSK1fGW\r\nnAOhgL/qprW6ZqHSKhn7Bm5ZBTXlAyEuWG2woHhs9MHgb9TmKK4IOqek/BAI2SBdLt+Ac+Kc1cwo\r\nmMsejgx2UatjOC7onNKyo4LzrVTNY3g1iBoGUdupwREcjaFFJWVXoOOpourkQIjuoYGby6hmTYCO\r\n1qBlTjoxEThnee4O4YjLh0rL9sKZ1VN1EsKrZswsDj18MPgjNRhjLajszTn/lKqTF8hXgzOLh217\r\nf6sYKvNMISBuejTycRsYWUGHuswmT7WKoZC0n39ixETgWmggYoyxy4N11oJ511L1SSJs4/pGLk9D\r\nyvNQtJ1yc4TC2bPYgufms8LCWeyPO3/KjxXo+mNji6LRSJRalDFy+YAQdXDIuZgb317PTp38it3q\r\nu8y6OlplufvSOflpaToAIj9Lf/koeAPW1KyiWgrA9QPBaUZZi7agaJ1C09VfeWk5lZwBher6qY0d\r\nBtFS/TZ+/w6IjSJv3fIetcaF3PXhdtZ9+Wcoz6bW1AjB63DKkarKaLt8PHaqB268OLSYxoMtrPGz\r\nFmo1B38PLTGd9aXi9NkOtmD+fLa0Mj5Pc/GXS+z1DeNCpwOuc9+9/psNVFVCu1N6umBuKxyU79zW\r\nLe9LK0pY0sVfL8mjKV0dbVpiImUvPM9KnimWZYyvmz7Yzobv/yXrGRG8CjqnRqopoeXyYJ04r6kV\r\nOyvJKpBdO7dLlzMFY6aumMmgZW6r3yNvLlr5xrfW0zdpgFhK16yMlqABFtNOkybGKhT1+NEWI2Fs\r\nbgZSWbmYfQ9CYoeFnnLiO3S2zOAiIhWV0BJUML6SisoM379PpXHW1qxWs5Ak8AbYWCeCnRKCQmJM\r\nV4FWZJVRFhR7dzhop0p30uSEKM7h5gNSWJUswFbMBNgxbqvbQzUlwqHSsPJ1q1toLGY0NXf67Dkq\r\npSYRz3Qt1gSMoaqW+ShPKcdRdUEDzEhQvIgL8MkGCosWi0k6xljMH7Et4abDw4+HDq8ICPVrV85D\r\ni0rKWhnnWgE6wcsgDHYGpmCKg4Lauv0ZyEff3azfsQnB2qMDfUrXrtMpGQ01ly5ZLK3040/2U4s+\r\n8bG6fQwdHlbIPVMAVreQillRFzT+4JY2mKLgMBHTpzM/dFBrbjCeNNGYonTdQnuu35BDPsw/17y2\r\nmlpzwzU4F0Nc6OUNuWA51HSSnuu9VHIP1wVFN1caN7uMI/OkCrguKIq5rW431XIHdoxeoCOo8cLV\r\nGUjunZi6s+FrhXF7BpSvXV1Q+Ri2OU7Nh5qArm5loYIpX7snFpoARa1avkpOTngRzxKYDTfHEYzd\r\npmJWlAUVjCv/aDpw+u0j+Mym4aQX4I1TmabLCBfdVMqKuoVyrvyj6cAUCtd6cPrOqdmjbNhap0Tw\r\nK1TKio7LW++swDiG6zte4Yh1IpwrP0qutUhXVFp+Cw5GI6YEOC4/dfL4fwtmboHp2srV65yI1ZGh\r\n/r5FVM6KjoXKWRcqGoMX+saGTc5YTgYaD37uSMcnmNDyTK1Vz+CseaNg0taP34yN/S1zU5xOCwan\r\ny4mTwsLM6+Q6YHrW3HKEarYEdoyO3FXOcLTX5YtKyod0Zl9Uwd5/9067RTgExXSkI4qj5e6Ilssj\r\ngotmKjpCYgkkD8VEd9d6yAHRtlB8PIVPn37LxkqxY1pauVhapcoCXTYwLmPM/OKI+arAYxg+K6ot\r\nKBIqLWvgjO+lakoSoiXKGCOXLKmQM/jYjm1OIFcD9u5n13qcnZrjgjXfG+jTfmDMTFBFK5VLxU0H\r\n5JqS07hileMY77gzEhQJlZTXc84OUTUjKCiOkJxYJk4MDk582ypFdQOInbXR/pvHqKqFsaBIqLT8\r\nPPyA8po1WiyKu7ZmFasE11cZfqJoPT035LAVl6M9mNfU7tmTsRTUbtMCxlF83igRY5PBZeNr13vT\r\nPnniCg5sWrASFNFx/XwHRoI7ogN9TVQ1wnqfEj7cH5xZXASirqCmSQlkLfuGBvqs91tZC4qAqGdn\r\nFMzDuDP5tiYCIOaxe/29juwEtHb5ZPzNswZDz0zgieHdpmreg+fqpJiIIy6fzMORu23BgnkQUvPm\r\ntRgpoZGQ4/v6HRcUGR2524m70UDUFWAG+fVWB0yNGNsDHZD2xIcKjsbQicg8NY923IGQnXDJm918\r\niYurgiYAYXFvE06m5EbYuFXus80xVXDF5ScCIaAb4mo7XBjG1grPwkB85NPIxsY2Rgd/9+T1bZ5Y\r\naDK0+aHaVYuNC9nMRkebTDbA2uC5oMmAuJAJxCAcyO06tuJGhIi1Mz6lDWLk/+dlgumQlos7TXBz\r\nhOAvgpmFeZrXXQp63SXcjNsgID6A0elmR+Pj4+Pj4+Pj4+Pj4+NjDmP/ApMi7IcXevnZAAAAAElF\r\nTkSuQmCC\r\n\r\n--b2=_CYiOIogyTXYL9Jb2O0ildLMQQ0b64VQHsDGYt4Bo\r\nContent-Type: image/png; name=logo-proton.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <147547a9503cc705b241@mail.proton.me>\r\nContent-Disposition: inline; filename=logo-proton.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAXwAAAB4CAMAAADG37laAAAABGdBTUEAALGPC/xhBQAAAAFzUkdC\r\nAK7OHOkAAAAJcEhZcwAAFiUAABYlAUlSJPAAAAJhUExURUdwTGBQ32hQ32NR4WRQ32NR4WJQ32BQ\r\n32NR4mNS4mNR4WJQ32JR4WFQ32BQ32BQ32NS4mBQ32JQ32VQ32RQ32JR4XBQ32NQ4GNQ42JS42JR\r\n4WNQ32FQ32NR4WBQ32NQ32NQ5GNQ32NR4WJQ4WRR4WNT42NT5GJS4mNR4WBQ32JQ4GRQ32VQ32RS\r\n4mJQ32NR4WRR5WBQ32NQ32NS4m5M/WJQ32NQ4GNR4mNQ4GJR4WRQ32JS4mNR4mFQ32JQ32NR4WNS\r\n4GNQ32NR4UossUYqq2xK+2pI9WhG71Y2y0Qop25K/WZE62JC5WBA31Q2x1IywU4wu0wutWxK+Vw+\r\n21w81Vg6z0ImoVdDyjgYhzIZgjsgkT4jnD0jkzshl086ujAYgDcdjTUah2NR4W1L/WxK+2dG8U4w\r\nvF093Fg50VAywVY3zGRE62JB5l8/4WpI9ksut2JC5kkssmlI9mVE7Fo71kQop0Elojwhl0YprFM1\r\nx1U3zFs711092z8jnWxK/WA/4Uwut1M0x1M0xmBA4UYqrEQnp0kssT8jnDoeklQ1x21K/WpJ9m1L\r\n+2VE60cqrVo710ImojcdjTofklo61mdF8W5M/lQ7x1EzwVk60mBF4V9L2mNC5mBI318/4GJE5VU6\r\nyVpF0VEzwmFN3lAywk0wvEsutmVF6mhG8Vk50lM9xWBM22FM31M1xkgrsUwxuFpA1D8lnEQoqD4k\r\nnFU2zFI7wkcqrFs811tI0lI8wVg40VE6v0EloVk801s71k43uGBN3DUaiDcejVxK1FdDyjQahzkg\r\nkjcdjDYciEUtpkw2tVM+wiSBEHAAAABidFJOUwAQIP5A32Agv5/vgN+gQEGvYHAwgO8Qv29/z1CQ\r\nkDCQX6Cg389vX4/eUM9wYI+w7k8hAZ6AYa8Bvs5Bn74BcQGvn/2AgICAgICAgICAgICAgICAgICA\r\ngJAg31+wUN/vIN/fHPTuiQAACW1JREFUeNrtnYd/3LYVx8kzeRxHX6lbOt3Qthw7dkZX0qZtRps2\r\ne7RN96STxomnnCjxrOPtNHvvPbqSdO89ko6/KryzJEvAA/DAO4JKDr+PffLncyQAfvHwADw8yoah\r\npaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpfWeUYRWw22vq2lg2cDvyh3PaWZZwY/lafzZwdf4M4Uf\r\nRSMaXHbwo4Y2/uzgR3ZZs8sMfhTNaHjZwc+MfttdpspAwvcz8jwusfYaSPiRn9PwM4MfuRp+dvCj\r\ngoafHfxMHM/7Fn6Yh1UIgxXjeN638Dl+xJmA6Fsavgr4MH5Xw1cD3zAqNH1Tw1cE38ivgAXPwMKn\r\nbd/V8JXBJx89A78zwPAtEn5edZP9wYVPmX5LcYuL0QDDJ+fcs7L1OoMF3yTPtNQ2eCQaZPjGFBHf\r\nUdreNdFgwyfHPXBJbXSo7XXPmcJ2vcjNc3OG6l7YvdQrDBVF/t6NeoPvrKvPN8wTNUxUQOfJeowr\r\nWsvl9AF+re4SCxJWqbV66JPbhjbcAaYXCwzu2R4hZm1DHllbo12UYAUUYHuKUyj58CHjhHGscxmJ\r\nESOAQTn4OLfFGDQ+XBs2BazYhgvwleaQTXHg50CgAPzaiC+VE9cj/LzbYwZesdcC+iPeamcNTJSG\r\n37RFOXFmH+FzyWHo1dby71+lKoWPXOcPn/6K1UQSfs4VI7StfsEXkevWNs575LItLOAMNcYfslYb\r\nNSZSAn7RRkEc6Q/8HK42jx2javqI+89QkUiTI2stLXxzQYSDvwZLMTT7AL/oI2+zWbY7g7v/bAX0\r\nKfMeZW09GfBHJNJxzZ7hz+DvY9AvYu9Pnz6FLlgYmxEOvgT7pfQTwp+RqQ2kj/RaXc+TcnR9hrnB\r\ntHHw10RScnuDX5ZMvQbo2RL3f0JxZGXhUbkG7SSlEUUbe4Gfs6OEfZ3MWFaNp4ceWrMFmMd0EtNY\r\nRJkI/rR0baXkTidVx+OAe9JxePHPgD8Jfj3ljRUKBQ9eqfrm6djOKRHNCMjYTpk/vVTDTm1jjHUx\r\nMWlOwiXEtbhBGvmTTnGIVr3dANsacD1jdX23ma7JWThUK4vTnAkGATYK1lseelHcre30uLAmhI7H\r\ntDklOBO0NZ7dk3W7vtQ4G2e78uF6Tjx5Vc8kgqyB0BjR8AGrrSx3C1AWmMXbzUfR+UtXbueGlNdP\r\nnMGXd2Vd5MKDF+ghYYkDE/FSko76VISzIBI+bfjBKHVRibpomrupuXj57R+keu9DCQ+m5SfDwGE1\r\nsgHNPNT8NwFdRfPIJYI/yWztsrCNzzF9k+VlF3We2w+/UwsTZIg3F+4mnyCAqFK+qQE3pSKYxXDw\r\ncyj2QCrMkoHWFIdnz+2D3ynbCdhXmFibGFMMWEdOYxH3lBgHP4870QFG2mnDaYlPLEnHs6okz97v\r\nhT21ioFN2oYna+DEwOeGynDwXWZrRVeWmN9AVv3xXp1+IvZjbOMBe7/MPgcgVeDmZaHgmyJvzXY8\r\nLuvMDizjQoLdx2SjxL3ZPQ3LwgzvcziHZT5vJKHgF7HDjC7QZ6V2gOlhn1xNbHIl4Sfw99UNPEvF\r\nHMIEvBa1eMm4KPgFpMeHzGKUEU+Ct6+fIpy+HPu18uyHHR4rOI1qWiLdxmLgwMMP0T6OdlF5Bnw4\r\nJfgjBHyp8E5O3uyJbamxmn2kbrDG8DncRvmcx0bBn5aJuUzDU4yDykn5AAHfkYE/KYu+QvUtBr7D\r\nM2Ypdij4vkxXr4ZLTB++pOEP101h423MDGjI4GhJw5fq6gLso9KHL2H4U17dxKDCwBek17Y4gDHw\r\nHYn5ltqQqYNPLXX++f9vfRl4DbqZM7F2ioEvSCwv9Bm+sSLhE0z+9d//fPUb0hvklQ9/ZVr+0qf8\r\n2//+8e+/f/fbhgr4vpFkCkTDN6XglzKCv2Q9/Ne3H3rone98xUgHvsPbN4k2nYVeJ1xLZoY5SxX8\r\nxTXd735+8uTDJx/+mpESfFMKh80JFqHgTyGiTawSla3zF9bDv//lnR1900gLPrnyLsmsfy1p+FIv\r\n6zKaljr8+Vv+eOLAiQMHDpz4enrwXVGKDCcYLx/baUlMMUUGZEXwf33Hg3fEevBPX0oPfkvC6bu8\r\nIJyLCdvkJbzcJKNlauD/eO7YL+bm5o4dm7s8PfhNfIpLjhvLdTG1ORF6oJGJUQ1DJfwXd+8+ev/R\r\no7+5f/fuz6QH34SzoTCmOM4LWDI8yhTa9EdYRzcq4P/krdnZ2ePHj8/Ovjn76fTgU4dyIdbjE6v0\r\n1SgmLdxpPRDcslTCf/yu13bsuKv7Z8f1KcIviRIjGW6A9OotlP+yhJlvp1SzmQeOCuA//b2uXu1+\r\nXpcifNOPME9D56aO8wcGw39RuUQjmFOXpSahAP4Lt8R6qfNxyytPXJsifCCvrYRhH4hs2sU5L4g+\r\n8B6ZoxD+y3sOHT50+PDde/YcemPP3dekCZ82/Wgjmc8JvEw6Lpi549kDfKEnEF8HZOl5hkL4P/vV\r\nrXtvPaW9e/deliZ8wPTjdzCXAoFemA3EDiWy146K17ZdtMLaHJXw/7w51h82/yj+fHLz5htShW+C\r\nOe1hvRg32Il/V4bPzUnk9WHs+d1OOroXhrxO6viouLaaUXOG2mBjzjQUwv/pvt8+8Jd9D9z+yL59\r\nt8f6YqrwaXeNT4Tm+h24ckc+HykwVMJ/dv/+m/ffvKD9X0gXPpWGKaZhYhYyjMpL0nkZjlL4T217\r\n7si2WAcPbju47ciRq1OGbzR6oYEZQHYvfd00lMJ/fmesrTu3PrM11s6tV6UN3wl6oIExfRs9Rvgp\r\nkCrgv37flttu27JlS/z3vvgfV6YNX47+BlYhPhK+2UjOPn34N83r0Zt+2PnxudThy9DfgD11ZVcu\r\nQb9iqIa/fdc992zvaFes7bs+mz58w0H6goCX6VRBwkf7/eoGQzn8G+d176mPzyuAzyHHScbFlkFX\r\nXvIT9nTq8Dd9f1NXP9jU/delSuAjXA+VjIulD1TuXCRkP2YaGcKf14fVwI/DXnz8HiLRGu5BO0Ft\r\nw6Oo07D+w180fLXweUCqY8gHgIpgVJ5fz0bPOuRSBf+x+Z9XqIPfef++is2DZuInw/HVj7IuLU9A\r\nvT1cYdeGg19ctUyXOMZ7RVY9XGKS1eGxpuzv7TCtQuh2DmyrU6FXt7i3l5fXtn4sbxqDrpxlxVnQ\r\nVs5UVVszn7fK+n/01dLS0tLS0tLS0tLS0tLS0tLS0tLS0tJarncBwBNNrhmRt8sAAAAASUVORK5C\r\nYII=\r\n\r\n--b2=_CYiOIogyTXYL9Jb2O0ildLMQQ0b64VQHsDGYt4Bo--','Please log in at https://mail.proton.me to check them.\n\n[Proton](https://proton.me/)\n\nYou have 1 new message(s)\n\nHello,\n\nYou have 1 new message(s) in your inbox and custom folders.\n\nPlease log in at https://mail.proton.me to check them. These notifications can be turned off by logging into your account and disabling the daily notification setting.\n\n[Open Proton Mail](https://mail.proton.me)\n\n[Learn more about notification emails](https://proton.me/support/notification-email)\n\nThank you,\nThe Proton Team\n\nConnect with the Proton community\n\n[Twitter](https://twitter.com/ProtonPrivacy)\n\n[Reddit](https://reddit.com/r/ProtonMail)\n\n[LinkedIn](https://www.linkedin.com/company/protonprivacy/)\n\n[Facebook](https://facebook.com/Proton)\n\n[Instagram](https://instagram.com/protonprivacy)\n\n[Blog](https://proton.me/blog)\n\nYou are receiving this email because you set a notification for new messages received in your Proton Mail inbox. [Learn more about notification emails](https://proton.me/support/notification-email)\n\n[Update your email preferences or unsubscribe](https://account.proton.me/unsubscribe/64#eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3NTk5MTA3MTMuNDQ0MzE1OSwiZXhwIjoxNzYyNTAyNzEzLCJVc2VySUQiOiJUSVNaWER4cGZSQVNXUzdEeldMV3dnIiwiU2NvcGUiOjk4MzA0LCJpc3MiOiJwcm90b24ubWUiLCJhdWQiOiJwcm90b24ubWUiLCJUeXBlIjoxfQ.0N3poPz7ndh7z42G-ClBh_dGcu7Yn05nN0kzhOL7HY0)\n\n© 2025 Proton AG Switzerland\nRoute de la Galaise 32, 1228 Plan-les-Ouates, Geneva, Switzerland',0,0,0,0,0,0,'2025-10-08 08:05:13','2025-12-09 19:29:29','2025-12-09 19:29:29','2025-12-09 19:29:29',NULL,NULL,NULL),
(836,4,'<CAB-aNmoQzog-fhE3B8xKaEWXbboSN7t=jFet8dJ1Sg3UH5pX_A@mail.gmail.com>',NULL,NULL,'Re: Intro E-mail to Rick Mislan - Rebirth of American UAS Manufacturing','thagen@canallc.com','Terry Hagen','<div dir=\"ltr\">Hi Rick,<div><br></div><div>I wanted to reengage on this - do you have time this Fri, 10 Oct for a 30 min call?  We&#39;re pretty much open the entire day.  Additionally, not sure if you are attending AUSA or not in DC, but we will be there next week if that works for you.  </div><div><br></div><div>I also wanted to share that our company, CANA, is an industry member of the ARM Institute: <a href=\"https://linkprotect.cudasvc.com/url?a=https%3a%2f%2farminstitute.org%2f&amp;c=E,1,HBBkt2VjKBwyJV9dSipKzrsXEu1XlELjjsOW4aB8OGNyfULrdeTgFdd1h3q2eBNX_9qnVs23_IVdvNn41widPYVmd6_curuU99SGIRcgSBg_2_gTC7BlPA,,&amp;typo=1\" target=\"_blank\">The nation&#39;s leading collaborative in robotics and workforce innovation.</a> I&#39;m hoping we can find opportunities for us to collaborate on!</div><div><br></div><div>Best,</div><div>Terry</div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Sep 24, 2025 at 5:07 AM Terry Hagen &lt;<a href=\"mailto:thagen@canallc.com\" target=\"_blank\">thagen@canallc.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div dir=\"ltr\"><div>Hi Rick, Rob, and Chris,</div><div><br></div><div>Rick, it was great meeting you last week at the U.S. Army UAS Industry Day! For intros, Rob is my boss here at CANA and Chris is our Director of Innovation and Strategy. Rob has been closely tracking manufacturing efforts, particularly those related to UAS innovation.</div><div><br></div><div>Rob and Chris, I&#39;d like to introduce you to Rick Mislan. Rick is a professor at the Rochester Institute of Technology (RIT) and a retired Army Electronic Warfare officer with a background in supporting special operations. He is also the CEO of MAVRIX ONE and is leading an impressive effort to rebuild American manufacturing, specifically focused on the UAS ecosystem. Rick has helped raise approximately $1.5 billion in capital to redevelop UAS-related manufacturing in the U.S.</div><div><br></div><div>I believe there are significant opportunities for us to discuss. I&#39;d like to schedule a call for us to explore these further.  Chris is traveling this week so next week will work better.  Tues and Thurs usually work best for us.</div><div><br></div><div>Contact information:</div><div>Rick Mislan, CEO Mavrix One</div><div>rick@mavrix.one</div><div>585.797.9473</div><div><a href=\"https://mavrix1.com\" target=\"_blank\">https://mavrix1.com</a></div><div><a href=\"https://www.linkedin.com/in/rmislan/\" target=\"_blank\">https://www.linkedin.com/in/rmislan/</a></div><div><br></div><div>Rob Cranston</div><div>President &amp; CEO CANA</div><div><a href=\"mailto:rcranston@canallc.com\" target=\"_blank\">rcranston@canallc.com</a></div><div>(703) 317-7378 Mobile</div><div><a href=\"https://www.linkedin.com/in/rob-cranston-ab8aba/\" target=\"_blank\">https://www.linkedin.com/in/rob-cranston-ab8aba/</a></div><div><br></div><div>Chris Cichy</div><div>Director of Innovation &amp; Strategy</div><div><a href=\"mailto:ccichy@canallc.com\" target=\"_blank\">ccichy@canallc.com</a></div><div>(951) 225-2419 Mobile</div><div><a href=\"https://www.linkedin.com/in/christopher-cichy-31399391/\" target=\"_blank\">https://www.linkedin.com/in/christopher-cichy-31399391/</a></div><div><br></div><div>Best regards,</div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div><span style=\"color:rgb(33,150,243)\"><b>Terry Hagen</b></span><b> </b></div><div><b>Principal Logistics Analyst </b></div><div><span style=\"color:rgb(33,150,243)\"><b><br></b></span></div><div><b></b><span style=\"color:rgb(33,150,243)\"><b>Mobile: </b></span><b>(760) 669-9531 </b></div><div><span style=\"color:rgb(33,150,243)\"><b>Email:</b></span><b> <a href=\"mailto:thagen@canallc.com\" target=\"_blank\">thagen@canallc.com</a></b></div></div></div></div></div>\r\n</div>\r\n</blockquote></div>\r\n\r\n<br>\r\n<span><span style=\"white-space:pre-wrap\"><b><span style=\"font-weight:400;font-style:normal\"><span><span><span></span></span></span></span></b></span></span><div style=\"text-align:left\"><span><span style=\"white-space:pre-wrap\"><b><span style=\"font-weight:400;font-style:normal\"></span></b></span></span><span style=\"font-weight:400;font-style:normal;text-decoration:none\"><b>CANA LLC</b></span><br><span style=\"font-weight:400;font-style:normal;text-decoration:none\"></span><span style=\"font-weight:400;font-style:normal;text-decoration:none\">7371 Atlas Walk Way</span><br><span style=\"font-weight:400;font-style:normal;text-decoration:none\"></span><span style=\"font-weight:400;font-style:normal;text-decoration:none\">Gainesville, Virginia 20155</span><br><span style=\"font-weight:400;font-style:normal;text-decoration:none\"></span><span style=\"font-weight:400;font-style:normal;text-decoration:none\">Telephone (703) 317-7378</span><br><span style=\"font-weight:400;font-style:normal;text-decoration:none\"></span><span style=\"font-weight:400;font-style:normal;text-decoration:none\">Facsimile (571) 248-2563</span><span style=\"font-weight:700;font-style:normal;text-decoration:none\"></span><span style=\"font-weight:700;font-style:normal;text-decoration:none\"><a href=\"http://www.canallc.com\" target=\"_blank\"><br>www.canallc.com<span style=\"background-color:black\"><span><span style=\"background-color:white\"></span></span></span></a></span>\r\n\r\n</div><div style=\"text-align:center\"><span><span style=\"white-space:pre-wrap\"><b><span style=\"font-weight:400;font-style:normal\"><a href=\"http://www.canallc.com\" target=\"_blank\"><img src=\"https://static.wixstatic.com/media/099e36_3928109bf3e24e7ba137cc3ab390da1d~mv2.png/v1/fill/w_250,h_144,al_c,enc_auto/CANA-Color250_email1.png\" alt=\"http://www.canallc.com\"></a><br></span></b></span></span></div><div><font size=\"2\"><span style=\"color:gray\"><span style=\"font-family:Arial\"><span style=\"white-space:pre-wrap\"></span></span></span></font><hr><font size=\"2\"><span style=\"color:gray\"><span style=\"font-family:Arial\"><span style=\"white-space:pre-wrap\">LEGAL DISCLAIMER: The information in this email is confidential and may be legally privileged. It is intended solely for the addressee. Access to this email by anyone else is unauthorized. If you are not the intended recipient, any disclosure, copying, distribution or any action taken or omitted to be taken in reliance on it, is strictly prohibited and may be unlawful.</span></span></span></font></div><div style=\"text-align:center\"><font size=\"2\"><span style=\"color:gray\"><span style=\"font-family:Arial\"><span style=\"white-space:pre-wrap\"><img src=\"https://static.wixstatic.com/media/099e36_84c7a7b51b584a40a33b1c86fe2c266c~mv2.png/v1/fill/w_250,h_121,al_c,enc_auto/Powered-by-CANA-Analytics-registeredTM250_email.png\"><br></span></span></span></font><span style=\"background-color:white\"><span></span></span></div>','Hi Rick,\r\n\r\nI wanted to reengage on this - do you have time this Fri, 10 Oct for a 30\r\nmin call?  We\'re pretty much open the entire day.  Additionally, not sure\r\nif you are attending AUSA or not in DC, but we will be there next week if\r\nthat works for you.\r\n\r\nI also wanted to share that our company, CANA, is an industry member of the\r\nARM Institute: The nation\'s leading collaborative in robotics and workforce\r\ninnovation.\r\n<https://linkprotect.cudasvc.com/url?a=https%3a%2f%2farminstitute.org%2f&c=E,1,HBBkt2VjKBwyJV9dSipKzrsXEu1XlELjjsOW4aB8OGNyfULrdeTgFdd1h3q2eBNX_9qnVs23_IVdvNn41widPYVmd6_curuU99SGIRcgSBg_2_gTC7BlPA,,&typo=1>\r\nI\'m\r\nhoping we can find opportunities for us to collaborate on!\r\n\r\nBest,\r\nTerry\r\n\r\nOn Wed, Sep 24, 2025 at 5:07 AM Terry Hagen <thagen@canallc.com> wrote:\r\n\r\n> Hi Rick, Rob, and Chris,\r\n>\r\n> Rick, it was great meeting you last week at the U.S. Army UAS Industry\r\n> Day! For intros, Rob is my boss here at CANA and Chris is our Director of\r\n> Innovation and Strategy. Rob has been closely tracking manufacturing\r\n> efforts, particularly those related to UAS innovation.\r\n>\r\n> Rob and Chris, I\'d like to introduce you to Rick Mislan. Rick is a\r\n> professor at the Rochester Institute of Technology (RIT) and a retired Army\r\n> Electronic Warfare officer with a background in supporting special\r\n> operations. He is also the CEO of MAVRIX ONE and is leading an impressive\r\n> effort to rebuild American manufacturing, specifically focused on the UAS\r\n> ecosystem. Rick has helped raise approximately $1.5 billion in capital to\r\n> redevelop UAS-related manufacturing in the U.S.\r\n>\r\n> I believe there are significant opportunities for us to discuss. I\'d like\r\n> to schedule a call for us to explore these further.  Chris is traveling\r\n> this week so next week will work better.  Tues and Thurs usually work best\r\n> for us.\r\n>\r\n> Contact information:\r\n> Rick Mislan, CEO Mavrix One\r\n> rick@mavrix.one\r\n> 585.797.9473\r\n> https://mavrix1.com\r\n> https://www.linkedin.com/in/rmislan/\r\n>\r\n> Rob Cranston\r\n> President & CEO CANA\r\n> rcranston@canallc.com\r\n> (703) 317-7378 Mobile\r\n> https://www.linkedin.com/in/rob-cranston-ab8aba/\r\n>\r\n> Chris Cichy\r\n> Director of Innovation & Strategy\r\n> ccichy@canallc.com\r\n> (951) 225-2419 Mobile\r\n> https://www.linkedin.com/in/christopher-cichy-31399391/\r\n>\r\n> Best regards,\r\n>\r\n> *Terry Hagen*\r\n> *Principal Logistics Analyst *\r\n>\r\n> *Mobile: **(760) 669-9531 *\r\n> *Email:** thagen@canallc.com <thagen@canallc.com>*\r\n>\r\n\r\n-- \r\n*****CANA LLC*\r\n7371 Atlas Walk Way\r\nGainesville, Virginia 20155\r\nTelephone \r\n(703) 317-7378\r\nFacsimile (571) 248-2563\r\nwww.canallc.com \r\n<http://www.canallc.com>\r\n\r\n\r\n* <http://www.canallc.com>\r\n*\r\nLEGAL DISCLAIMER: \r\nThe information in this email is confidential and may be legally \r\nprivileged. It is intended solely for the addressee. Access to this email \r\nby anyone else is unauthorized. If you are not the intended recipient, any \r\ndisclosure, copying, distribution or any action taken or omitted to be \r\ntaken in reliance on it, is strictly prohibited and may be unlawful.',0,0,0,0,0,0,'2025-10-08 11:05:11','2025-12-09 19:29:30','2025-12-09 19:29:30','2025-12-09 19:29:30',NULL,NULL,NULL),
(837,4,'<91B76D29-D28D-41A0-91A1-3E74DD41A151@mavrix.one>',NULL,NULL,'Lender questions','Brian@mavrix.one','Brian Stufflebean','\r\n--Apple-Mail=_766791C5-1345-4237-A5CC-BED56D6B9224\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Type: text/html;\r\n	charset=us-ascii\r\n\r\n<html><head><meta http-equiv=3D\"content-type\" content=3D\"text/html; =\r\ncharset=3Dus-ascii\"></head><body style=3D\"overflow-wrap: break-word; =\r\n-webkit-nbsp-mode: space; line-break: =\r\nafter-white-space;\">Jarrett,<div><br></div><div>If you could take lead =\r\non getting this information back to me as soon as possible, the =\r\nfollowing were the questions that came back from the lenders we are =\r\ntalking about on the next phase =\r\nfinancing.&nbsp;</div><div><br></div><div><br></div><div><div =\r\nclass=3D\"default-style\">1) For Phase 1, break out land acquisition from =\r\nconstruction</div><div class=3D\"default-style\"><span =\r\nclass=3D\"Apple-tab-span\" style=3D\"white-space:pre\">	</span>A) Just =\r\nuse the numbers in the presentation</div><div class=3D\"default-style\">2) =\r\nNeed machine specs</div><div class=3D\"default-style\"><span =\r\nclass=3D\"Apple-tab-span\" style=3D\"white-space:pre\">	</span>A) Please =\r\nattach the machine specs for lender</div><div class=3D\"default-style\">3) =\r\nWhat is the timing of ordering machines, payments for machines, delivery =\r\nand set up</div><div class=3D\"default-style\"><span =\r\nclass=3D\"Apple-tab-span\" style=3D\"white-space:pre\">	</span>A) =\r\n???</div><div class=3D\"default-style\">4) How long does it take to =\r\ndeliver on orders from the date the PO\'s go hard</div></div><div =\r\nclass=3D\"default-style\"><span class=3D\"Apple-tab-span\" =\r\nstyle=3D\"white-space:pre\">	</span>A) <i><b>Jarrett, this is where =\r\nour conversation from earlier today on start of acceptance of order, =\r\n&nbsp;to date of first shipments to clients becomes =\r\nimportant.</b></i>&nbsp;</div><div><br></div><div><br></div><div><br></div=\r\n><div><br></div><div><br><div>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; orphans: auto; text-align: start; text-indent: 0px; =\r\ntext-transform: none; white-space: normal; widows: auto; word-spacing: =\r\n0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><font size=3D\"2\">Best =\r\nregards,</font></div><div style=3D\"font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><font =\r\nsize=3D\"2\"><br></font></div><div style=3D\"font-family: Helvetica; =\r\nfont-size: 12px; font-style: normal; font-variant-caps: normal; =\r\nfont-weight: 400; letter-spacing: normal; orphans: auto; text-align: =\r\nstart; text-indent: 0px; text-transform: none; white-space: normal; =\r\nwidows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\" style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><b>Brian C. =\r\nStufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 =\r\nDirect</b></div><div style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><span style=3D\"font-size: =\r\n11px;\">(866)896-2423 Fax</span></div></div><span style=3D\"caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0); font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"></span><br class=3D\"Apple-interchange-newline\"><span><img =\r\nalt=3D\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" =\r\nsrc=3D\"cid:CB596987-D3CC-4C61-B9D3-CE1C1DF1C723\"></span><meta =\r\ncharset=3D\"UTF-8\"><div style=3D\"font-family: Helvetica; font-size: 12px; =\r\nfont-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br =\r\nclass=3D\"Apple-interchange-newline\"><br =\r\nclass=3D\"Apple-interchange-newline\"><a =\r\nhref=3D\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a =\r\nhref=3D\"https://mavrix1.com\">https://mavrix1.com/</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY =\r\nNOTICE:</b><span style=3D\"font-family: Helvetica; font-style: normal; =\r\nfont-weight: 400; font-size: =\r\n12px;\">&nbsp;This&nbsp;communication&nbsp;is =\r\nconfidential&nbsp;and&nbsp;intended only for the =\r\nintended&nbsp;recipient.&nbsp;&nbsp;If you are not the =\r\nintended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, =\r\nor&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any =\r\nsuch&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this =\r\ncommunication&nbsp;in error,&nbsp;please contact the sender =\r\nof&nbsp;the&nbsp;message to inform him or her of =\r\nthe&nbsp;error.<br><br></span></div>\r\n</div>\r\n\r\n<br></div></body></html>=\r\n\r\n--Apple-Mail=_766791C5-1345-4237-A5CC-BED56D6B9224\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\r\nContent-Type: image/png;\r\n	name=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\"\r\nContent-Id: <CB596987-D3CC-4C61-B9D3-CE1C1DF1C723>\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGwAAAAYCAYAAAAf1RgaAAAAAXNSR0IArs4c6QAAAIRlWElmTU0A\r\nKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdp\r\nAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAGyg\r\nAwAEAAAAAQAAABgAAAAABrPxEgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5h\r\nZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9\r\nIlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9y\r\nZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6\r\nYWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZm\r\nLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgog\r\nICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAA\r\nC6FJREFUaAXtWnuMVUcZnznPe/fuZYEtDxHCQ1ADBNuuAlKh24dRaqURWFotj5haKAn9SxOaauRi\r\nxEBsMMFSAmnUCDTKWtDioyEm3RLKq6VKC7Rg20VA5Lmwz3vPa8bfN+ecu+fevbugjQQrX5g735n5\r\nvm++13wz5yyc3YKb0gP19a8YTU33+NNmbx0puHjJtGsm+U7beoMxyRsaGrUJE45JxlbclMp/1JXK\r\nsZWM5XLwP6PG6+tzOgVr8tzN0wWTjRq3hojAw6TU+EfdGf9T9uVyGsutQNC4nDpn8zz0m7lmWEwE\r\njm6mbd/r3MCnzNk6DlEbyRFCqfNbAbyBEeaBlJzrkula1mOFQ683fvMcLT917tblGF8dbTgmhe8a\r\nZsbyvY4NhsbEdwy7ZrHntDHOtBuo7q2lGLyvGSnmOe2/fH3S3//EGhGsOZuf03RrKRMC/3wBL30f\r\n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\r\n--Apple-Mail=_766791C5-1345-4237-A5CC-BED56D6B9224--','Jarrett,\r\n\r\nIf you could take lead on getting this information back to me as soon as possible, the following were the questions that came back from the lenders we are talking about on the next phase financing. \r\n\r\n\r\n1) For Phase 1, break out land acquisition from construction\r\n	A) Just use the numbers in the presentation\r\n2) Need machine specs\r\n	A) Please attach the machine specs for lender\r\n3) What is the timing of ordering machines, payments for machines, delivery and set up\r\n	A) ???\r\n4) How long does it take to deliver on orders from the date the PO\'s go hard\r\n	A) Jarrett, this is where our conversation from earlier today on start of acceptance of order,  to date of first shipments to clients becomes important. \r\n\r\n\r\n\r\n\r\n\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n￼\r\n\r\n\r\nbrian@mavrix.one <mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-10-08 23:14:20','2025-12-09 19:29:30','2025-12-09 19:29:30','2025-12-09 19:29:30',NULL,NULL,NULL),
(838,4,' <BL1PR12MB5093CDA2578B200968EF1C3FFFEEA@BL1PR12MB5093.namprd12.prod.outlook.com>',NULL,NULL,'IrregularChat - Tampa Social','stan.fleischhauer@sofwerx.org','Stan Fleischhauer','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle18\r\n	{mso-style-type:personal-compose;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">You are cordially invited to the Irregular Chat social at the Tampa Club, hosted by Michael Gates of GDX Development.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Intent is to bring the Irregular UXS chat Tampa community together for good company, banter and networking<o:p></o:p></p>\r\n</div>\r\n</body>\r\n</html>','You are cordially invited to the Irregular Chat social at the Tampa Club, hosted by Michael Gates of GDX Development.\r\n\r\nIntent is to bring the Irregular UXS chat Tampa community together for good company, banter and networking',0,0,0,0,0,0,'2025-10-09 21:07:50','2025-12-09 19:29:30','2025-12-09 19:29:30','2025-12-09 19:29:30',NULL,NULL,NULL),
(839,4,'<CA+sqBNZkF4XK7TRuUnbwxLv3WYiBM9x8s=wVm5n7WhucWaKm-A@mail.gmail.com>',NULL,NULL,'Valyria X Mavrix1','mustafamosama@gmail.com','Mustafa Osama','<div dir=\"ltr\"><p style=\"color:rgb(0,0,0)\">Hi Rick,</p><p style=\"color:rgb(0,0,0)\">I hope you’re doing well.</p><p style=\"color:rgb(0,0,0)\">As discussed, please find attached the<span class=\"gmail-Apple-converted-space\"> </span>Valyria Systems | IRIS Enterprise Defense Pro Forma, tailored specifically for<span class=\"gmail-Apple-converted-space\"> </span>Mavrix 1’s private infrastructure and operational context.</p><p style=\"color:rgb(0,0,0)\">This document outlines the full deployment scope, compliance alignment, and expected performance impact across five 10-person units — translating into:</p><ul style=\"color:rgb(0,0,0)\"><li><p>≈ $1.4M in annual savings<span class=\"gmail-Apple-converted-space\"> </span>from faster decision cycles.</p></li><li><p>≈ $2.9M in annual savings<span class=\"gmail-Apple-converted-space\"> </span>from automation of manual workflows.</p></li><li><p>≈ 30% reduction in OPEX<span class=\"gmail-Apple-converted-space\"> </span>per department.</p></li></ul><p style=\"color:rgb(0,0,0)\">IRIS Enterprise Defense is designed for<span class=\"gmail-Apple-converted-space\"> </span>on-prem or hybrid deployment<span class=\"gmail-Apple-converted-space\"> </span>and can be hosted fully within Mavrix’s existing data center environment, ensuring complete data control while maintaining DFARS, NIST, and CMMC compliance.</p><p style=\"color:rgb(0,0,0)\">The proposal includes:</p><ul style=\"color:rgb(0,0,0)\"><li><p>Executive Summary and Technical Scope</p></li><li><p>Implementation Timeline (9–12 months)</p></li><li><p>Full Compliance Mapping</p></li><li><p>Financial Overview and ROI Analysis</p></li><li><p>SLA and Support Model</p></li></ul><p style=\"color:rgb(0,0,0)\">We’d be happy to walk through the technical integration plan, security inheritance model, and the future<span class=\"gmail-Apple-converted-space\"> </span>Digital Twin module in a brief review session whenever convenient.</p><p style=\"color:rgb(0,0,0)\">Please let me know a time that works best for you this week or next.</p><p style=\"color:rgb(0,0,0)\">Warm regards,<br>Mustafa Zaki<br>CEO &amp; Founder | Valyria Systems<br>424-407-5596</p><p style=\"color:rgb(0,0,0)\"><a href=\"mailto:mustafa@valyria.ai\">mustafa@valyria.ai</a></p><p style=\"color:rgb(0,0,0)\"><br></p></div>','Hi Rick,\r\n\r\nI hope you’re doing well.\r\n\r\nAs discussed, please find attached the Valyria Systems | IRIS Enterprise\r\nDefense Pro Forma, tailored specifically for Mavrix 1’s private\r\ninfrastructure and operational context.\r\n\r\nThis document outlines the full deployment scope, compliance alignment, and\r\nexpected performance impact across five 10-person units — translating into:\r\n\r\n   -\r\n\r\n   ≈ $1.4M in annual savings from faster decision cycles.\r\n   -\r\n\r\n   ≈ $2.9M in annual savings from automation of manual workflows.\r\n   -\r\n\r\n   ≈ 30% reduction in OPEX per department.\r\n\r\nIRIS Enterprise Defense is designed for on-prem or hybrid deployment and\r\ncan be hosted fully within Mavrix’s existing data center environment,\r\nensuring complete data control while maintaining DFARS, NIST, and CMMC\r\ncompliance.\r\n\r\nThe proposal includes:\r\n\r\n   -\r\n\r\n   Executive Summary and Technical Scope\r\n   -\r\n\r\n   Implementation Timeline (9–12 months)\r\n   -\r\n\r\n   Full Compliance Mapping\r\n   -\r\n\r\n   Financial Overview and ROI Analysis\r\n   -\r\n\r\n   SLA and Support Model\r\n\r\nWe’d be happy to walk through the technical integration plan, security\r\ninheritance model, and the future Digital Twin module in a brief review\r\nsession whenever convenient.\r\n\r\nPlease let me know a time that works best for you this week or next.\r\n\r\nWarm regards,\r\nMustafa Zaki\r\nCEO & Founder | Valyria Systems\r\n424-407-5596\r\n\r\nmustafa@valyria.ai',0,0,0,0,0,0,'2025-10-09 21:16:05','2025-12-09 19:29:31','2025-12-09 19:29:31','2025-12-09 19:29:31',NULL,NULL,NULL),
(840,4,'<CA+sqBNav8Hs+dHZUwZ+Nm2pGnokcaUskHtW5YZB-qqBAXefiOw@mail.gmail.com>',NULL,NULL,'Re: Valyria X Mavrix1','mustafamosama@gmail.com','Mustafa Osama','<div dir=\"auto\"><div dir=\"auto\"><span style=\"font-size:16px;font-style:normal;font-weight:400;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;float:none;display:inline!important;background-color:rgba(0,0,0,0);border-color:rgb(0,0,0);color:rgb(0,0,0)\">Noticed a few issues.</span></div>Attached is the updated version. </div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Oct 9, 2025 at 5:16 PM Mustafa Osama &lt;<a href=\"mailto:mustafamosama@gmail.com\">mustafamosama@gmail.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;padding-left:1ex;border-left-color:rgb(204,204,204)\"><div dir=\"ltr\"><p style=\"color:rgb(0,0,0)\">Hi Rick,</p><p style=\"color:rgb(0,0,0)\">I hope you’re doing well.</p><p style=\"color:rgb(0,0,0)\">As discussed, please find attached the<span> </span>Valyria Systems | IRIS Enterprise Defense Pro Forma, tailored specifically for<span> </span>Mavrix 1’s private infrastructure and operational context.</p><p style=\"color:rgb(0,0,0)\">This document outlines the full deployment scope, compliance alignment, and expected performance impact across five 10-person units — translating into:</p><ul style=\"color:rgb(0,0,0)\"><li><p>≈ $1.4M in annual savings<span> </span>from faster decision cycles.</p></li><li><p>≈ $2.9M in annual savings<span> </span>from automation of manual workflows.</p></li><li><p>≈ 30% reduction in OPEX<span> </span>per department.</p></li></ul><p style=\"color:rgb(0,0,0)\">IRIS Enterprise Defense is designed for<span> </span>on-prem or hybrid deployment<span> </span>and can be hosted fully within Mavrix’s existing data center environment, ensuring complete data control while maintaining DFARS, NIST, and CMMC compliance.</p><p style=\"color:rgb(0,0,0)\">The proposal includes:</p><ul style=\"color:rgb(0,0,0)\"><li><p>Executive Summary and Technical Scope</p></li><li><p>Implementation Timeline (9–12 months)</p></li><li><p>Full Compliance Mapping</p></li><li><p>Financial Overview and ROI Analysis</p></li><li><p>SLA and Support Model</p></li></ul><p style=\"color:rgb(0,0,0)\">We’d be happy to walk through the technical integration plan, security inheritance model, and the future<span> </span>Digital Twin module in a brief review session whenever convenient.</p><p style=\"color:rgb(0,0,0)\">Please let me know a time that works best for you this week or next.</p><p style=\"color:rgb(0,0,0)\">Warm regards,<br>Mustafa Zaki<br>CEO &amp; Founder | Valyria Systems<br>424-407-5596</p><p style=\"color:rgb(0,0,0)\"><a href=\"mailto:mustafa@valyria.ai\" target=\"_blank\">mustafa@valyria.ai</a></p><p style=\"color:rgb(0,0,0)\"><br></p></div>\r\n</blockquote></div></div>','Noticed a few issues.\r\nAttached is the updated version.\r\n\r\nOn Thu, Oct 9, 2025 at 5:16 PM Mustafa Osama <mustafamosama@gmail.com>\r\nwrote:\r\n\r\n> Hi Rick,\r\n>\r\n> I hope you’re doing well.\r\n>\r\n> As discussed, please find attached the Valyria Systems | IRIS Enterprise\r\n> Defense Pro Forma, tailored specifically for Mavrix 1’s private\r\n> infrastructure and operational context.\r\n>\r\n> This document outlines the full deployment scope, compliance alignment,\r\n> and expected performance impact across five 10-person units — translating\r\n> into:\r\n>\r\n>    -\r\n>\r\n>    ≈ $1.4M in annual savings from faster decision cycles.\r\n>    -\r\n>\r\n>    ≈ $2.9M in annual savings from automation of manual workflows.\r\n>    -\r\n>\r\n>    ≈ 30% reduction in OPEX per department.\r\n>\r\n> IRIS Enterprise Defense is designed for on-prem or hybrid deployment and\r\n> can be hosted fully within Mavrix’s existing data center environment,\r\n> ensuring complete data control while maintaining DFARS, NIST, and CMMC\r\n> compliance.\r\n>\r\n> The proposal includes:\r\n>\r\n>    -\r\n>\r\n>    Executive Summary and Technical Scope\r\n>    -\r\n>\r\n>    Implementation Timeline (9–12 months)\r\n>    -\r\n>\r\n>    Full Compliance Mapping\r\n>    -\r\n>\r\n>    Financial Overview and ROI Analysis\r\n>    -\r\n>\r\n>    SLA and Support Model\r\n>\r\n> We’d be happy to walk through the technical integration plan, security\r\n> inheritance model, and the future Digital Twin module in a brief review\r\n> session whenever convenient.\r\n>\r\n> Please let me know a time that works best for you this week or next.\r\n>\r\n> Warm regards,\r\n> Mustafa Zaki\r\n> CEO & Founder | Valyria Systems\r\n> 424-407-5596\r\n>\r\n> mustafa@valyria.ai\r\n>\r\n>\r\n>',0,0,0,0,0,0,'2025-10-09 22:25:26','2025-12-09 19:29:32','2025-12-09 19:29:32','2025-12-09 19:29:32',NULL,NULL,NULL),
(841,4,'<20251010133832.Horde.ld8IlfJRFztSKb5KB2SnJhm@mavrix1.aponte.to>',NULL,NULL,'Invitation: Special Ops:  Weekly SitRep','leslie@mavrix.one','Leslie Staron','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\" style=\"-webkit-font-smoothing:antialiased;background:#fff!important\">\r\n<head>\r\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n	<meta name=\"viewport\" content=\"width=device-width\">\r\n	<title></title>\r\n	<style type=\"text/css\">@media only screen{html{min-height:100%;background:#fff}}@media only screen and (max-width:610px){table.body img{width:auto;height:auto}table.body center{min-width:0!important}table.body .container{width:95%!important}table.body .columns{height:auto!important;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:30px!important;padding-right:30px!important}th.small-12{display:inline-block!important;width:100%!important}table.menu{width:100%!important}table.menu td,table.menu th{width:auto!important;display:inline-block!important}table.menu.vertical td,table.menu.vertical th{display:block!important}table.menu[align=center]{width:auto!important}}</style>\r\n</head>\r\n<body style=\"-moz-box-sizing:border-box;-ms-text-size-adjust:100%;-webkit-box-sizing:border-box;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;margin:0;background:#fff!important;box-sizing:border-box;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;min-width:100%;padding:0;text-align:left;width:100%!important\">\r\n	<span class=\"preheader\" style=\"color:#F5F5F5;display:none!important;font-size:1px;line-height:1px;max-height:0;max-width:0;mso-hide:all!important;opacity:0;overflow:hidden;visibility:hidden\">\r\n	</span>\r\n	<table class=\"body\" style=\"-webkit-font-smoothing:antialiased;margin:0;background:#fff;border-collapse:collapse;border-spacing:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n		<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n			<td class=\"center\" align=\"center\" valign=\"top\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n				<center data-parsed=\"\" style=\"min-width:580px;width:100%\"><table align=\"center\" class=\"wrapper header float-center\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:20px;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:0 0;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:150px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n						<table class=\"row collapse\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n							<tbody>\r\n							<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n								<center data-parsed=\"\" style=\"background-color:#00679e;min-width:175px;max-height:175px; padding:35px 0px;border-radius:200px\">\r\n									<img class=\"logo float-center\" src=\"https://mavrix1.aponte.to/apps/theming/image/logo?useSvg=0&amp;v=9\" alt=\"Mavrix1\" align=\"center\" style=\"-ms-interpolation-mode:bicubic;clear:both;display:block;float:none;margin:0 auto;outline:0;text-align:center;text-decoration:none;max-height:105px;max-width:105px;width:auto;height:auto\" width=\"105\" height=\"22\">\r\n								</center>\r\n							</tr>\r\n							</tbody>\r\n						</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"40px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:80px;font-weight:400;hyphens:auto;line-height:80px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"container main-heading float-center\" style=\"Margin:0 auto;background:0 0!important;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:580px\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<h1 class=\"text-center\" style=\"Margin:0;Margin-bottom:10px;color:inherit;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:24px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:center;word-wrap:normal\">Leslie Staron would like to invite you to \"Special Ops:  Weekly SitRep\"</h1>\r\n		</td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"36px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:40px;font-weight:400;hyphens:auto;line-height:36px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"wrapper content float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:580px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/title.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Title:</em><br>Special Ops:  Weekly SitRep</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/time.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">When:</em><br>Every Week on Friday between 10:30 AM - 11:00 AM (America/New_York)</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/location.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Location:</em><br>Signal:  https://signal.link/call/#key=bgbx-xtdt-hdnm-cndc-kknr-chxr-btxk-gpnx</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/time.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Occurring:</em><br>In 51 minutes on October 10, 2025 then on October 17, 2025 and October 24, 2025</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/description.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Description:</em><br>*Do we need to discuss or touch base on anything ahead of the 12pm team call today?\r\n\r\nThis is a regular weekly Leadership sync ahead of weekly Mavrix1 Team meeting to ensure unified alignment and communication.</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"spacer\" style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"50px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:50px;font-weight:400;hyphens:auto;line-height:50px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"row btn-group\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<center data-parsed=\"\" style=\"min-width:490px;width:100%\">\r\n							<!--[if (gte mso 9)|(IE)]>\r\n							<table>\r\n								<tr>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default primary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;margin:0 0 30px 0;margin-right:15px;border-radius:8px;max-width:300px;padding:0;text-align:center;vertical-align:top;width:auto;background:#00679e;background-color:#00679e;color:#fefefe;\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #00679e;border-collapse:collapse!important;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/accept/PTlkJnEeJxjFyxgBenk4dKSrymrcQvXounMWPJzULUL1rGvVL6SmUYuOIXzE\" style=\"Margin:0;border:0 solid #00679e;color:#ffffff;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;padding:8px;text-align:left;outline:1px solid #ffffff;text-decoration:none\">Accept</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default secondary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;background-color: #ccc;margin:0 0 30px 0;max-height:40px;max-width:300px;padding:1px;border-radius:8px;text-align:center;vertical-align:top;width:auto\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #777;border-collapse:collapse!important;color:#fefefe;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/decline/PTlkJnEeJxjFyxgBenk4dKSrymrcQvXounMWPJzULUL1rGvVL6SmUYuOIXzE\" style=\"Margin:0;background-color:#fff;border:0 solid #777;color:#6C6C6C!important;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;border-radius: 7px;padding:8px;text-align:left;text-decoration:none\">Decline</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n								</tr>\r\n							</table>\r\n							<![endif]-->\r\n						</center>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;text-align:center\"><small><a href=\"https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/PTlkJnEeJxjFyxgBenk4dKSrymrcQvXounMWPJzULUL1rGvVL6SmUYuOIXzE\">More options …</a></small></p>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table><table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"60px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:60px;font-weight:400;hyphens:auto;line-height:60px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"wrapper footer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<center data-parsed=\"\" style=\"min-width:580px;width:100%\">\r\n				<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n					<tbody>\r\n					<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n						<td height=\"15px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:15px;font-weight:400;hyphens:auto;line-height:15px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n					</tr>\r\n					</tbody>\r\n				</table>\r\n				<p class=\"text-center float-center\" align=\"center\" style=\"Margin:0;Margin-bottom:10px;color:#C8C8C8;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:10px;padding:0;text-align:center\">Mavrix1 - Manufacturing American Autonomy<br>This is an automatically sent email, please do not reply.</p>\r\n			</center>\r\n		</td>\r\n	</tr>\r\n</table>					</center>\r\n				</td>\r\n			</tr>\r\n		</table>\r\n		<!-- prevent Gmail on iOS font size manipulation -->\r\n		<div style=\"display:none;white-space:nowrap;font:15px courier;line-height:0\">                                                           </div>\r\n	</body>\r\n</html>','Leslie Staron would like to invite you to \"Special Ops:  Weekly SitRep\"\r\n\r\n         Title: Special Ops:  Weekly SitRep\r\n          When: Every Week on Friday between 10:30 AM - 11:00 AM (America/New_York)\r\n      Location: Signal:  https://signal.link/call/#key=bgbx-xtdt-hdnm-cndc-kknr-chxr-btxk-gpnx\r\n     Occurring: In 51 minutes on October 10, 2025 then on October 17, 2025 and October 24, 2025\r\n   Description: *Do we need to discuss or touch base on anything ahead of the 12pm team call today?\r\n                \r\n                This is a regular weekly Leadership sync ahead of weekly Mavrix1 Team meeting to ensure unified alignment and communication.\r\n\r\nAccept: https://mavrix1.aponte.to/apps/dav/invitation/accept/PTlkJnEeJxjFyxgBenk4dKSrymrcQvXounMWPJzULUL1rGvVL6SmUYuOIXzE\r\nDecline: https://mavrix1.aponte.to/apps/dav/invitation/decline/PTlkJnEeJxjFyxgBenk4dKSrymrcQvXounMWPJzULUL1rGvVL6SmUYuOIXzE\r\n\r\nMore options at https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/PTlkJnEeJxjFyxgBenk4dKSrymrcQvXounMWPJzULUL1rGvVL6SmUYuOIXzE\r\n\r\n\r\n-- \r\nMavrix1 - Manufacturing American Autonomy\r\nThis is an automatically sent email, please do not reply.',0,0,0,0,0,0,'2025-10-10 13:38:32','2025-12-09 19:29:32','2025-12-09 19:29:32','2025-12-09 19:29:32',NULL,NULL,NULL),
(842,4,' <CH3PR16MB60859C0536895FA46C3AA7FEB4EFA@CH3PR16MB6085.namprd16.prod.outlook.com>',NULL,NULL,' =?Windows-1252?Q?Fw:_[mavrix.one]_Client_configuration_settings_for_=93bo?= =?Windows-1252?Q?b@mavrix.one=94.?=','bob@ewriusa.com','Bob Raun','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" id=\"Signature\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nBob Raun</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nEWRI(USA) Inc</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nbob@ewriusa.com</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n330 671 3775</div>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> cPanel on mavrix.one &lt;cpanel@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, October 10, 2025 10:42 AM<br>\r\n<b>To:</b> Bob Raun &lt;bob@ewriusa.com&gt;<br>\r\n<b>Subject:</b> [mavrix.one] Client configuration settings for “bob@mavrix.one”.</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div style=\"background:#F4F4F4\">\r\n<div style=\"margin:0; padding:0; background:#F4F4F4\">\r\n<table cellpadding=\"10\" cellspacing=\"0\" border=\"0\" width=\"100%\" style=\"width:0 auto\">\r\n<tbody>\r\n<tr>\r\n<td align=\"center\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"680\" style=\"border:0; width:0 auto; max-width:680px\">\r\n<tbody>\r\n<tr>\r\n<td width=\"680\" height=\"25\" style=\"font-family:\'Helvetica Neue\',Helvetica,Arial,sans-serif; font-size:16px; color:#333333\">\r\nClient Configuration settings for “bob@mavrix.one”. </td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:15px 0 20px 0; background-color:#FFFFFF; border:2px solid #E8E8E8; border-bottom:2px solid #FF6C2C\">\r\n<table width=\"680\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"background:#FFFFFF; font-family:\'Helvetica Neue\',Helvetica,Arial,sans-serif\">\r\n<tbody>\r\n<tr>\r\n<td width=\"15\"></td>\r\n<td width=\"650\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<div id=\"x_manual_settings_area\" class=\"x_section\">\r\n<h2 id=\"x_hdrManualSettings\">Mail Client Manual Settings</h2>\r\n<div class=\"x_row\">\r\n<div class=\"x_col-md-6\">\r\n<div id=\"x_ssl_settings_area\" class=\"x_preferred-selection x_panel x_panel-primary\" style=\"background-color:#fff; border:1px solid transparent; border-radius:4px; box-shadow:0 1px 1px rgba(0,0,0,0.05); margin-bottom:20px; border-color:#428bca\">\r\n<div class=\"x_panel-heading\" style=\"border-top-left-radius:3px; border-top-right-radius:3px; padding:10px 15px; background-color:#428bca; border-color:#428bca; color:#fff\">\r\nSecure <abbr title=\"Secure Sockets Layer\">SSL</abbr>/<abbr title=\"Transport Layer Security\">TLS</abbr> Settings (Recommended)\r\n</div>\r\n<table class=\"x_table x_manual_settings_table\" style=\"border-collapse:collapse; border-spacing:0; margin-bottom:0; width:100%; background-color:transparent; max-width:100%\">\r\n<tbody>\r\n<tr>\r\n<td id=\"x_lblSSLSettingsAreaUsername\" style=\"border-top:1px solid #ddd; padding:8px\">\r\nUsername:</td>\r\n<td id=\"x_valSSLSettingsAreaUsername\" class=\"x_data x_wrap-text\" style=\"border-top:1px solid #ddd; padding:8px\">\r\nbob@mavrix.one</td>\r\n</tr>\r\n<tr>\r\n<td id=\"x_lblSettingsAreaPassword\" style=\"border-top:1px solid #ddd; padding:8px\">\r\nPassword:</td>\r\n<td id=\"x_valSettingsAreaPassword\" class=\"x_escape-note\" style=\"border-top:1px solid #ddd; padding:8px\">\r\nUse the email account’s password.</td>\r\n</tr>\r\n<tr>\r\n<td id=\"x_lblSettingsAreaIncomingServer\" style=\"border-top:1px solid #ddd; padding:8px\">\r\nIncoming Server:</td>\r\n<td id=\"x_valSettingsAreaIncomingServer\" class=\"x_data\" style=\"border-top:1px solid #ddd; padding:8px\">\r\nmail.mavrix.one\r\n<ul class=\"x_port_list x_list-inline\" style=\"margin-bottom:10px; margin-top:0; list-style:outside none none; padding-left:0\">\r\n<li style=\"display:inline-block; padding-left:5px; padding-right:5px\"><abbr title=\"Internet Message Access Protocol\" class=\"x_initialism\">IMAP</abbr> Port: 993</li><li style=\"display:inline-block; padding-left:5px; padding-right:5px\"><abbr title=\"Post Office Protocol 3\" class=\"x_initialism\">POP3</abbr> Port: 995</li></ul>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td id=\"x_lblSettingsAreaOutgoingServer\" style=\"border-top:1px solid #ddd; padding:8px\">\r\nOutgoing Server:</td>\r\n<td id=\"x_valSettingsAreaOutGoingServer\" class=\"x_data\" style=\"border-top:1px solid #ddd; padding:8px\">\r\nmail.mavrix.one\r\n<ul class=\"x_port_list x_list-inline\" style=\"margin-bottom:10px; margin-top:0; list-style:outside none none; padding-left:0\">\r\n<li style=\"display:inline-block; padding-left:5px; padding-right:5px\"><abbr title=\"Simple Mail Transfer Protocol\">SMTP</abbr> Port: 465</li></ul>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" class=\"x_notes\" style=\"border-top:1px solid #ddd; padding:8px\">\r\n<div id=\"x_lblSettingsAreaSmallNote1\" class=\"x_small_note\">IMAP, POP3, and SMTP require authentication.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"x_row\" id=\"x_nonSSL\" style=\"display:none\">\r\n<div class=\"x_col-md-6\">\r\n<div id=\"x_non_ssl_settings_area\" class=\"x_panel x_panel-default x_panel-warning\" style=\"background-color:#fff; border:1px solid transparent; border-radius:4px; box-shadow:0 1px 1px rgba(0,0,0,0.05); margin-bottom:20px; border-color:#f6c342\">\r\n<div class=\"x_panel-heading\" style=\"border-top-left-radius:3px; border-top-right-radius:3px; padding:10px 15px; background-color:#fcf8e1; border-color:#f6c342; color:#333\">\r\n<span id=\"x_descNonSSLSettings\" class=\"x_caption x_not-recommended\">Non-SSL Settings (NOT Recommended)</span>\r\n</div>\r\n<table id=\"x_tblManualSettingsTable\" class=\"x_table x_manual_settings_table\" style=\"border-collapse:collapse; border-spacing:0; margin-bottom:0; width:100%; background-color:transparent; max-width:100%\">\r\n<tbody>\r\n<tr>\r\n<td id=\"x_lblNonSSLSettingsUsername\" style=\"border-top:1px solid #ddd; padding:8px\">\r\nUsername:</td>\r\n<td id=\"x_valNonSSLSettingsUsername\" class=\"x_data x_wrap-text\" style=\"border-top:1px solid #ddd; padding:8px\">\r\nbob@mavrix.one</td>\r\n</tr>\r\n<tr>\r\n<td id=\"x_lblNonSSLSettingsPassword\" style=\"border-top:1px solid #ddd; padding:8px\">\r\nPassword:</td>\r\n<td id=\"x_valNonSSLSettingsPassword\" class=\"x_escape-note\" style=\"border-top:1px solid #ddd; padding:8px\">\r\nUse the email account’s password.</td>\r\n</tr>\r\n<tr>\r\n<td id=\"x_lblNonSSLSettingsIncomingServer\" style=\"border-top:1px solid #ddd; padding:8px\">\r\nIncoming Server:</td>\r\n<td id=\"x_valNonSSLSettingsIncomingServer\" class=\"x_data\" style=\"border-top:1px solid #ddd; padding:8px\">\r\nmail.mavrix.one\r\n<ul class=\"x_port_list x_list-inline\" style=\"margin-bottom:10px; margin-top:0; list-style:outside none none; padding-left:0\">\r\n<li style=\"display:inline-block; padding-left:5px; padding-right:5px\"><abbr title=\"Internet Message Access Protocol\" class=\"x_initialism\">IMAP</abbr> Port: 143</li><li style=\"display:inline-block; padding-left:5px; padding-right:5px\"><abbr title=\"Post Office Protocol 3\" class=\"x_initialism\">POP3</abbr> Port: 110</li></ul>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td id=\"x_NonSSLSettingsOutgoingServer\" style=\"border-top:1px solid #ddd; padding:8px\">\r\nOutgoing Server:</td>\r\n<td id=\"x_NonSSLSettingsOutgoingServerData\" class=\"x_data\" style=\"border-top:1px solid #ddd; padding:8px\">\r\nmail.mavrix.one\r\n<ul class=\"x_port_list x_list-inline\" style=\"margin-bottom:10px; margin-top:0; list-style:outside none none; padding-left:0\">\r\n<li style=\"display:inline-block; padding-left:5px; padding-right:5px\"><abbr title=\"Simple Mail Transfer Protocol\">SMTP</abbr> Port: 2525</li></ul>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" class=\"x_notes\" style=\"border-top:1px solid #ddd; padding:8px\">\r\n<div id=\"x_descNonSSLSettingsAuthenticationIsRequiredForIMAPPOP3SMTP1\" class=\"x_small_note\">\r\nIMAP, POP3, and SMTP require authentication.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"x_section\">\r\n<h2>Calendar &amp; Contacts Manual Settings</h2>\r\n<div class=\"x_row\">\r\n<div class=\"x_col-md-6\">\r\n<div class=\"x_preferred-selection x_panel x_panel-primary\" style=\"background-color:#fff; border:1px solid transparent; border-radius:4px; box-shadow:0 1px 1px rgba(0,0,0,0.05); margin-bottom:20px; border-color:#428bca\">\r\n<div class=\"x_panel-heading\" style=\"border-top-left-radius:3px; border-top-right-radius:3px; padding:10px 15px; background-color:#428bca; border-color:#428bca; color:#fff\">\r\nSecure <abbr title=\"Secure Sockets Layer\">SSL</abbr>/<abbr title=\"Transport Layer Security\">TLS</abbr> Settings (Recommended).\r\n</div>\r\n<table class=\"x_table x_manual_settings_table\" style=\"border-collapse:collapse; border-spacing:0; margin-bottom:0; width:100%; background-color:transparent; max-width:100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"border-top:1px solid #ddd; padding:8px\">Username:</td>\r\n<td class=\"x_data x_wrap-text\" style=\"border-top:1px solid #ddd; padding:8px\">bob@mavrix.one</td>\r\n</tr>\r\n<tr>\r\n<td style=\"border-top:1px solid #ddd; padding:8px\">Password:</td>\r\n<td class=\"x_escape-note\" style=\"border-top:1px solid #ddd; padding:8px\">Use the email account’s password.</td>\r\n</tr>\r\n<tr>\r\n<td style=\"border-top:1px solid #ddd; padding:8px\">Server:</td>\r\n<td class=\"x_data\" style=\"border-top:1px solid #ddd; padding:8px\">https://mail.mavrix.one:2080\r\n<ul class=\"x_port_list x_list-inline\" style=\"margin-bottom:10px; margin-top:0; list-style:outside none none; padding-left:0\">\r\n<li style=\"display:inline-block; padding-left:5px; padding-right:5px\">Port: 2080</li></ul>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"border-top:1px solid #ddd; padding:8px\">Full Calendar URL(s):</td>\r\n<td class=\"x_data\" style=\"border-top:1px solid #ddd; padding:8px\">\r\n<ul class=\"x_port_list x_list-inline\" style=\"margin-bottom:10px; margin-top:0; list-style:outside none none; padding-left:0\">\r\n<li style=\"display:inline-block; padding-left:5px; padding-right:5px\"><b>cPanel CalDAV Calendar</b>:</li><li style=\"display:inline-block; padding-left:5px; padding-right:5px\">https://mail.mavrix.one:2080/calendars/bob@mavrix.one/calendar</li></ul>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"border-top:1px solid #ddd; padding:8px\">Full Contact List URL(s):</td>\r\n<td class=\"x_data\" style=\"border-top:1px solid #ddd; padding:8px\">\r\n<ul class=\"x_port_list x_list-inline\" style=\"margin-bottom:10px; margin-top:0; list-style:outside none none; padding-left:0\">\r\n<li style=\"display:inline-block; padding-left:5px; padding-right:5px\"><b>cPanel CardDAV Address Book</b>:</li><li style=\"display:inline-block; padding-left:5px; padding-right:5px\">https://mail.mavrix.one:2080/addressbooks/bob@mavrix.one/addressbook</li></ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n<div class=\"x_col-md-6\">\r\n<div class=\"x_preferred-selection x_panel x_panel-primary\" style=\"background-color:#fff; border:1px solid transparent; border-radius:4px; box-shadow:0 1px 1px rgba(0,0,0,0.05); margin-bottom:20px; border-color:#f6c342\">\r\n<div class=\"x_panel-heading\" style=\"border-top-left-radius:3px; border-top-right-radius:3px; padding:10px 15px; background-color:#fcf8e1; border-color:#f6c342; color:#333\">\r\nNon-SSL Settings (NOT Recommended). </div>\r\n<table class=\"x_table x_manual_settings_table\" style=\"border-collapse:collapse; border-spacing:0; margin-bottom:0; width:100%; background-color:transparent; max-width:100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"border-top:1px solid #ddd; padding:8px\">Username:</td>\r\n<td class=\"x_data x_wrap-text\" style=\"border-top:1px solid #ddd; padding:8px\">bob@mavrix.one</td>\r\n</tr>\r\n<tr>\r\n<td style=\"border-top:1px solid #ddd; padding:8px\">Password:</td>\r\n<td class=\"x_escape-note\" style=\"border-top:1px solid #ddd; padding:8px\">Use the email account’s password.</td>\r\n</tr>\r\n<tr>\r\n<td style=\"border-top:1px solid #ddd; padding:8px\">Server:</td>\r\n<td class=\"x_data\" style=\"border-top:1px solid #ddd; padding:8px\">http://mail.mavrix.one:2079\r\n<ul class=\"x_port_list x_list-inline\" style=\"margin-bottom:10px; margin-top:0; list-style:outside none none; padding-left:0\">\r\n<li style=\"display:inline-block; padding-left:5px; padding-right:5px\">Port: 2079</li></ul>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"border-top:1px solid #ddd; padding:8px\">Full Calendar URL(s):</td>\r\n<td class=\"x_data\" style=\"border-top:1px solid #ddd; padding:8px\">\r\n<ul class=\"x_port_list x_list-inline\" style=\"margin-bottom:10px; margin-top:0; list-style:outside none none; padding-left:0\">\r\n<li style=\"display:inline-block; padding-left:5px; padding-right:5px\"><b>cPanel CalDAV Calendar</b>:</li><li style=\"display:inline-block; padding-left:5px; padding-right:5px\">http://mail.mavrix.one:2079/calendars/bob@mavrix.one/calendar</li></ul>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"border-top:1px solid #ddd; padding:8px\">Full Contact List URL(s):</td>\r\n<td class=\"x_data\" style=\"border-top:1px solid #ddd; padding:8px\">\r\n<ul class=\"x_port_list x_list-inline\" style=\"margin-bottom:10px; margin-top:0; list-style:outside none none; padding-left:0\">\r\n<li style=\"display:inline-block; padding-left:5px; padding-right:5px\"><b>cPanel CardDAV Address Book</b>:</li><li style=\"display:inline-block; padding-left:5px; padding-right:5px\">http://mail.mavrix.one:2079/addressbooks/bob@mavrix.one/addressbook</li></ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<p>A .mobileconfig file for use with iOS for iPhone/iPad/iPod and MacOS® Mail.app® for Mountain Lion (10.8+) is attached to this message.\r\n</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<div style=\"font-family:\'Helvetica Neue\',Helvetica,Arial,sans-serif; border-top:2px solid #E8E8E8; padding-top:5px; margin-top:5px; font-size:12px; color:#666666\">\r\n<p style=\"padding:0 0 0 0; margin:5px 0 0 0\">This notice is the result of a request made by a computer with the\r\n<abbr title=\"Internet Protocol\">IP</abbr> address of “129.21.255.77” through the “cpanel” service on the server.\r\n</p>\r\n<p style=\"padding:0 0 0 0; margin:5px 0 0 0\">The remote computer’s location appears to be: United States (US).\r\n</p>\r\n<p style=\"padding:0 0 0 0; margin:5px 0 0 0\">The remote computer’s <abbr title=\"Internet Protocol\">\r\nIP</abbr> address is assigned to the provider: “Rochester Institute of Technology”\r\n</p>\r\n<p style=\"padding:0 0 0 0; margin:5px 0 0 0\">The provider supplied the following remarks about the\r\n<abbr title=\"Internet Protocol\">IP</abbr> address allocation: “http://www.rit.edu”\r\n</p>\r\n<p style=\"padding:0 0 0 0; margin:5px 0 0 0\">The system generated this notice on Friday, October 10, 2025 at 2:42:05 PM UTC.\r\n</p>\r\n</div>\r\n<p>Do not reply to this automated message. </p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"15\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td align=\"center\" style=\"padding-top:10px\"><img height=\"25\" width=\"25\" alt=\"cP\" style=\"border:0; line-height:100%; border:0\" data-outlook-trace=\"F:1|T:1\" src=\"cid:auto_cid_157512637\">\r\n<p style=\"font-family:\'Helvetica Neue\',Helvetica,Arial,sans-serif; font-size:12px; color:#666666; padding:0; margin:0\">\r\nCopyright©&nbsp;2025 cPanel, L.L.C.</p>\r\n<p></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','\r\n\r\nBob Raun\r\nEWRI(USA) Inc\r\nbob@ewriusa.com\r\n330 671 3775\r\n________________________________\r\nFrom: cPanel on mavrix.one <cpanel@mavrix.one>\r\nSent: Friday, October 10, 2025 10:42 AM\r\nTo: Bob Raun <bob@ewriusa.com>\r\nSubject: [mavrix.one] Client configuration settings for “bob@mavrix.one”.\r\n\r\nClient Configuration settings for “bob@mavrix.one”.\r\nMail Client Manual Settings\r\nSecure SSL/TLS Settings (Recommended)\r\nUsername:       bob@mavrix.one\r\nPassword:       Use the email account’s password.\r\nIncoming Server:        mail.mavrix.one\r\n\r\n  *   IMAP Port: 993\r\n  *   POP3 Port: 995\r\n\r\nOutgoing Server:        mail.mavrix.one\r\n\r\n  *   SMTP Port: 465\r\n\r\nIMAP, POP3, and SMTP require authentication.\r\nNon-SSL Settings (NOT Recommended)\r\nUsername:       bob@mavrix.one\r\nPassword:       Use the email account’s password.\r\nIncoming Server:        mail.mavrix.one\r\n\r\n  *   IMAP Port: 143\r\n  *   POP3 Port: 110\r\n\r\nOutgoing Server:        mail.mavrix.one\r\n\r\n  *   SMTP Port: 2525\r\n\r\nIMAP, POP3, and SMTP require authentication.\r\nCalendar & Contacts Manual Settings\r\nSecure SSL/TLS Settings (Recommended).\r\nUsername:       bob@mavrix.one\r\nPassword:       Use the email account’s password.\r\nServer: https://mail.mavrix.one:2080\r\n\r\n  *   Port: 2080\r\n\r\nFull Calendar URL(s):\r\n\r\n  *   cPanel CalDAV Calendar:\r\n  *   https://mail.mavrix.one:2080/calendars/bob@mavrix.one/calendar\r\n\r\nFull Contact List URL(s):\r\n\r\n  *   cPanel CardDAV Address Book:\r\n  *   https://mail.mavrix.one:2080/addressbooks/bob@mavrix.one/addressbook\r\n\r\nNon-SSL Settings (NOT Recommended).\r\nUsername:       bob@mavrix.one\r\nPassword:       Use the email account’s password.\r\nServer: http://mail.mavrix.one:2079\r\n\r\n  *   Port: 2079\r\n\r\nFull Calendar URL(s):\r\n\r\n  *   cPanel CalDAV Calendar:\r\n  *   http://mail.mavrix.one:2079/calendars/bob@mavrix.one/calendar\r\n\r\nFull Contact List URL(s):\r\n\r\n  *   cPanel CardDAV Address Book:\r\n  *   http://mail.mavrix.one:2079/addressbooks/bob@mavrix.one/addressbook\r\n\r\nA .mobileconfig file for use with iOS for iPhone/iPad/iPod and MacOS® Mail.app® for Mountain Lion (10.8+) is attached to this message.\r\n\r\nThis notice is the result of a request made by a computer with the IP address of “129.21.255.77” through the “cpanel” service on the server.\r\n\r\nThe remote computer’s location appears to be: United States (US).\r\n\r\nThe remote computer’s IP address is assigned to the provider: “Rochester Institute of Technology”\r\n\r\nThe provider supplied the following remarks about the IP address allocation: “http://www.rit.edu”\r\n\r\nThe system generated this notice on Friday, October 10, 2025 at 2:42:05 PM UTC.\r\n\r\nDo not reply to this automated message.\r\n\r\n[cP]\r\n\r\nCopyright© 2025 cPanel, L.L.C.',0,0,0,0,0,0,'2025-10-10 14:48:33','2025-12-09 19:29:32','2025-12-09 19:29:32','2025-12-09 19:29:32',NULL,NULL,NULL),
(843,4,'<20251010150323.Horde.y9Naj71wXDd-LadHgYnSRG4@mavrix1.aponte.to>',NULL,NULL,'Invitation: FL University Co-Op Planning for Engineering/Tech','leslie@mavrix.one','Leslie Staron','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\" style=\"-webkit-font-smoothing:antialiased;background:#fff!important\">\r\n<head>\r\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n	<meta name=\"viewport\" content=\"width=device-width\">\r\n	<title></title>\r\n	<style type=\"text/css\">@media only screen{html{min-height:100%;background:#fff}}@media only screen and (max-width:610px){table.body img{width:auto;height:auto}table.body center{min-width:0!important}table.body .container{width:95%!important}table.body .columns{height:auto!important;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:30px!important;padding-right:30px!important}th.small-12{display:inline-block!important;width:100%!important}table.menu{width:100%!important}table.menu td,table.menu th{width:auto!important;display:inline-block!important}table.menu.vertical td,table.menu.vertical th{display:block!important}table.menu[align=center]{width:auto!important}}</style>\r\n</head>\r\n<body style=\"-moz-box-sizing:border-box;-ms-text-size-adjust:100%;-webkit-box-sizing:border-box;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;margin:0;background:#fff!important;box-sizing:border-box;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;min-width:100%;padding:0;text-align:left;width:100%!important\">\r\n	<span class=\"preheader\" style=\"color:#F5F5F5;display:none!important;font-size:1px;line-height:1px;max-height:0;max-width:0;mso-hide:all!important;opacity:0;overflow:hidden;visibility:hidden\">\r\n	</span>\r\n	<table class=\"body\" style=\"-webkit-font-smoothing:antialiased;margin:0;background:#fff;border-collapse:collapse;border-spacing:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n		<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n			<td class=\"center\" align=\"center\" valign=\"top\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n				<center data-parsed=\"\" style=\"min-width:580px;width:100%\"><table align=\"center\" class=\"wrapper header float-center\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:20px;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:0 0;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:150px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n						<table class=\"row collapse\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n							<tbody>\r\n							<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n								<center data-parsed=\"\" style=\"background-color:#00679e;min-width:175px;max-height:175px; padding:35px 0px;border-radius:200px\">\r\n									<img class=\"logo float-center\" src=\"https://mavrix1.aponte.to/apps/theming/image/logo?useSvg=0&amp;v=9\" alt=\"Mavrix1\" align=\"center\" style=\"-ms-interpolation-mode:bicubic;clear:both;display:block;float:none;margin:0 auto;outline:0;text-align:center;text-decoration:none;max-height:105px;max-width:105px;width:auto;height:auto\" width=\"105\" height=\"22\">\r\n								</center>\r\n							</tr>\r\n							</tbody>\r\n						</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"40px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:80px;font-weight:400;hyphens:auto;line-height:80px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"container main-heading float-center\" style=\"Margin:0 auto;background:0 0!important;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:580px\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<h1 class=\"text-center\" style=\"Margin:0;Margin-bottom:10px;color:inherit;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:24px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:center;word-wrap:normal\">Leslie Staron would like to invite you to \"FL University Co-Op Planning for Engineering/Tech\"</h1>\r\n		</td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"36px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:40px;font-weight:400;hyphens:auto;line-height:36px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"wrapper content float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:580px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/title.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Title:</em><br>FL University Co-Op Planning for Engineering/Tech</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/time.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">When:</em><br>In 2 days on Monday, October 13, 2025 between 10:00 AM - 10:30 AM (America/New_York)</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/location.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Location:</em><br>Leslie Will Call</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/description.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Description:</em><br>Rick,\r\n\r\nBrian mentioned starting to create a plan on building  partnerships with the Engineering/Tech schools in FL for the programs you have in mind for Mavrix1.  Let\'s use this time to look at our opportunities, discuss your specific ideas and connections you might already have so I can begin designing the programs we need for your team.\r\n\r\nLet me know if you think we should add anyone to this conversation.\r\n\r\nThank you!\r\nLeslie</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"spacer\" style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"50px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:50px;font-weight:400;hyphens:auto;line-height:50px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"row btn-group\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<center data-parsed=\"\" style=\"min-width:490px;width:100%\">\r\n							<!--[if (gte mso 9)|(IE)]>\r\n							<table>\r\n								<tr>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default primary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;margin:0 0 30px 0;margin-right:15px;border-radius:8px;max-width:300px;padding:0;text-align:center;vertical-align:top;width:auto;background:#00679e;background-color:#00679e;color:#fefefe;\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #00679e;border-collapse:collapse!important;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/accept/iYicz3jWvvVo9zkOoEjl57MVUXMkdtPViHkp4sWnN7nxWcTDjlaDW5x8XDT2\" style=\"Margin:0;border:0 solid #00679e;color:#ffffff;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;padding:8px;text-align:left;outline:1px solid #ffffff;text-decoration:none\">Accept</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default secondary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;background-color: #ccc;margin:0 0 30px 0;max-height:40px;max-width:300px;padding:1px;border-radius:8px;text-align:center;vertical-align:top;width:auto\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #777;border-collapse:collapse!important;color:#fefefe;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/decline/iYicz3jWvvVo9zkOoEjl57MVUXMkdtPViHkp4sWnN7nxWcTDjlaDW5x8XDT2\" style=\"Margin:0;background-color:#fff;border:0 solid #777;color:#6C6C6C!important;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;border-radius: 7px;padding:8px;text-align:left;text-decoration:none\">Decline</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n								</tr>\r\n							</table>\r\n							<![endif]-->\r\n						</center>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;text-align:center\"><small><a href=\"https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/iYicz3jWvvVo9zkOoEjl57MVUXMkdtPViHkp4sWnN7nxWcTDjlaDW5x8XDT2\">More options …</a></small></p>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table><table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"60px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:60px;font-weight:400;hyphens:auto;line-height:60px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"wrapper footer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<center data-parsed=\"\" style=\"min-width:580px;width:100%\">\r\n				<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n					<tbody>\r\n					<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n						<td height=\"15px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:15px;font-weight:400;hyphens:auto;line-height:15px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n					</tr>\r\n					</tbody>\r\n				</table>\r\n				<p class=\"text-center float-center\" align=\"center\" style=\"Margin:0;Margin-bottom:10px;color:#C8C8C8;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:10px;padding:0;text-align:center\">Mavrix1 - Manufacturing American Autonomy<br>This is an automatically sent email, please do not reply.</p>\r\n			</center>\r\n		</td>\r\n	</tr>\r\n</table>					</center>\r\n				</td>\r\n			</tr>\r\n		</table>\r\n		<!-- prevent Gmail on iOS font size manipulation -->\r\n		<div style=\"display:none;white-space:nowrap;font:15px courier;line-height:0\">                                                           </div>\r\n	</body>\r\n</html>','Leslie Staron would like to invite you to \"FL University Co-Op Planning for Engineering/Tech\"\r\n\r\n         Title: FL University Co-Op Planning for Engineering/Tech\r\n          When: In 2 days on Monday, October 13, 2025 between 10:00 AM - 10:30 AM (America/New_York)\r\n      Location: Leslie Will Call\r\n   Description: Rick,\r\n                \r\n                Brian mentioned starting to create a plan on building  partnerships with the Engineering/Tech schools in FL for the programs you have in mind for Mavrix1.  Let\'s use this time to look at our opportunities, discuss your specific ideas and connections you might already have so I can begin designing the programs we need for your team.\r\n                \r\n                Let me know if you think we should add anyone to this conversation.\r\n                \r\n                Thank you!\r\n                Leslie\r\n\r\nAccept: https://mavrix1.aponte.to/apps/dav/invitation/accept/iYicz3jWvvVo9zkOoEjl57MVUXMkdtPViHkp4sWnN7nxWcTDjlaDW5x8XDT2\r\nDecline: https://mavrix1.aponte.to/apps/dav/invitation/decline/iYicz3jWvvVo9zkOoEjl57MVUXMkdtPViHkp4sWnN7nxWcTDjlaDW5x8XDT2\r\n\r\nMore options at https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/iYicz3jWvvVo9zkOoEjl57MVUXMkdtPViHkp4sWnN7nxWcTDjlaDW5x8XDT2\r\n\r\n\r\n-- \r\nMavrix1 - Manufacturing American Autonomy\r\nThis is an automatically sent email, please do not reply.',0,0,0,0,0,0,'2025-10-10 15:03:23','2025-12-09 19:29:33','2025-12-09 19:29:33','2025-12-09 19:29:33',NULL,NULL,NULL),
(844,4,' <CH3PR16MB60855F6AB62696C61D6F88E8B4EFA@CH3PR16MB6085.namprd16.prod.outlook.com>',NULL,NULL,' =?Windows-1252?Q?Re:_[mavrix.one]_Client_configuration_settings_for_=93bo?= =?Windows-1252?Q?b@mavrix.one=94.?=','bob@ewriusa.com','Bob Raun','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nGreat</div>\r\n<div class=\"elementToProof\" id=\"Signature\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nBob Raun</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nEWRI(USA) Inc</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nbob@ewriusa.com</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n330 671 3775</div>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> rick@mavrix.one &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, October 10, 2025 12:08 PM<br>\r\n<b>To:</b> Bob Raun &lt;bob@ewriusa.com&gt;<br>\r\n<b>Subject:</b> Re: [mavrix.one] Client configuration settings for “bob@mavrix.one”.</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\n@font-face\r\n	{font-family:Wingdings}\r\n@font-face\r\n	{font-family:\"Cambria Math\"}\r\n@font-face\r\n	{font-family:Calibri}\r\n@font-face\r\n	{font-family:Aptos}\r\n@font-face\r\n	{font-family:\"Helvetica Neue\"}\r\np.x_MsoNormal, li.x_MsoNormal, div.x_MsoNormal\r\n	{margin:0in;\r\n	font-size:10.0pt;\r\n	font-family:\"Aptos\",sans-serif}\r\nh2\r\n	{margin-right:0in;\r\n	margin-left:0in;\r\n	font-size:18.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	font-weight:bold}\r\nspan.x_Heading2Char\r\n	{font-family:\"Aptos Display\",sans-serif;\r\n	color:#0F4761}\r\nspan.x_xcaption\r\n	{}\r\nspan.x_EmailStyle21\r\n	{font-family:\"Aptos\",sans-serif;\r\n	color:windowtext}\r\n.x_MsoChpDefault\r\n	{font-size:10.0pt}\r\n@page WordSection1\r\n	{margin:1.0in 1.0in 1.0in 1.0in}\r\ndiv.x_WordSection1\r\n	{}\r\nol\r\n	{margin-bottom:0in}\r\nul\r\n	{margin-bottom:0in}\r\n-->\r\n</style>\r\n<div lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"x_WordSection1\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">Ok, Bob, <br>\r\nThe provider changed the way passwords are set…<br>\r\nThey are telling me I have to create a password and send it to you…<br>\r\nSo, I’m going to do that…and you can copy and paste it.<br>\r\nI’ll send you new info soon.<br>\r\nThanks!</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">Get <a href=\"https://aka.ms/GetOutlookForMac\">\r\n<span style=\"color:blue\">Outlook for Mac </span></a></span><span style=\"font-size:12.0pt\"></span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">&nbsp;</span></p>\r\n<div id=\"x_mail-editor-reference-message-container\">\r\n<div>\r\n<div>\r\n<div style=\"border:none; border-top:solid #B5C4DF 1.0pt; padding:3.0pt 0in 0in 0in\">\r\n<p class=\"x_MsoNormal\" style=\"margin-bottom:12.0pt\"><b><span style=\"font-size:12.0pt; color:black\">From:\r\n</span></b><span style=\"font-size:12.0pt; color:black\">Bob Raun &lt;bob@ewriusa.com&gt;<br>\r\n<b>Date: </b>Friday, October 10, 2025 at 10:50<br>\r\n<b>To: </b>rick@mavrix.one &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject: </b>Fw: [mavrix.one] Client configuration settings for “bob@mavrix.one”.</span></p>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt; color:black\">&nbsp;</span></p>\r\n</div>\r\n<div id=\"x_Signature\">\r\n<div>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt; color:black\">&nbsp;</span></p>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt; color:black\">Bob Raun</span></p>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt; color:black\">EWRI(USA) Inc</span></p>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt; color:black\">bob@ewriusa.com</span></p>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt; color:black\">330 671 3775</span></p>\r\n</div>\r\n</div>\r\n<div class=\"x_MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"font-size:12.0pt\">\r\n<hr size=\"2\" width=\"98%\" align=\"center\">\r\n</span></div>\r\n<div id=\"x_divRplyFwdMsg\">\r\n<p class=\"x_MsoNormal\"><b><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif; color:black\">From:</span></b><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif; color:black\"> cPanel on mavrix.one &lt;cpanel@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, October 10, 2025 10:42 AM<br>\r\n<b>To:</b> Bob Raun &lt;bob@ewriusa.com&gt;<br>\r\n<b>Subject:</b> [mavrix.one] Client configuration settings for “bob@mavrix.one”.</span><span style=\"font-size:12.0pt\">\r\n</span></p>\r\n<div>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">&nbsp;</span></p>\r\n</div>\r\n</div>\r\n<div>\r\n<div>\r\n<table class=\"x_MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"width:100.0%; width:auto\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:7.5pt 7.5pt 7.5pt 7.5pt\">\r\n<div align=\"center\">\r\n<table class=\"x_MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"max-width:510.0pt; width:auto\">\r\n<tbody>\r\n<tr style=\"height:18.75pt\">\r\n<td width=\"680\" style=\"width:510.0pt; padding:0in 0in 0in 0in; height:18.75pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt; font-family:&quot;Helvetica Neue&quot;; color:#333333\">Client Configuration settings for “bob@mavrix.one”.\r\n</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"border:solid #E8E8E8 1.5pt; border-bottom:solid #FF6C2C 1.5pt; background:white; padding:11.25pt 0in 15.0pt 0in\">\r\n<table class=\"x_MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"680\" style=\"width:510.0pt; background:white\">\r\n<tbody>\r\n<tr>\r\n<td width=\"15\" style=\"width:11.25pt; padding:0in 0in 0in 0in\"></td>\r\n<td width=\"650\" style=\"width:487.5pt; padding:0in 0in 0in 0in\">\r\n<table class=\"x_MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"width:100.0%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<div id=\"x_x_manual_settings_area\">\r\n<h2>Mail Client Manual Settings</h2>\r\n<div>\r\n<div>\r\n<div id=\"x_x_ssl_settings_area\" style=\"border:none #428BCA 1.0pt; padding:0in 0in 0in 0in; margin-bottom:15.0pt; border:transparent; border-radius:4px; box-shadow:0 1px 1px rgba(0,0,0,0.05)\">\r\n<div style=\"border:none #428BCA 1.0pt; padding:8.0pt 11.0pt 8.0pt 11.0pt; border-top-left-radius:3px; border-top-right-radius:3px\">\r\n<p class=\"x_MsoNormal\" style=\"background:#428BCA\"><span style=\"font-size:12.0pt; color:white\">Secure SSL/TLS Settings (Recommended)\r\n</span></p>\r\n</div>\r\n<table class=\"x_MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"width:100.0%; border-collapse:collapse; border-spacing:0; max-width:100%\">\r\n<tbody>\r\n<tr>\r\n<td id=\"x_x_lblSSLSettingsAreaUsername\" style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">Username:</span></p>\r\n</td>\r\n<td id=\"x_x_valSSLSettingsAreaUsername\" style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">bob@mavrix.one</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td id=\"x_x_lblSettingsAreaPassword\" style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">Password:</span></p>\r\n</td>\r\n<td id=\"x_x_valSettingsAreaPassword\" style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">Use the email account’s password.</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td id=\"x_x_lblSettingsAreaIncomingServer\" style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">Incoming Server:</span></p>\r\n</td>\r\n<td id=\"x_x_valSettingsAreaIncomingServer\" style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">mail.mavrix.one </span></p>\r\n<ul type=\"disc\">\r\n<li class=\"x_MsoNormal\" style=\"display:inline-block\"><span style=\"font-size:12.0pt\">IMAP Port: 993</span></li><li class=\"x_MsoNormal\" style=\"display:inline-block\"><span style=\"font-size:12.0pt\">POP3 Port: 995</span></li></ul>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td id=\"x_x_lblSettingsAreaOutgoingServer\" style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">Outgoing Server:</span></p>\r\n</td>\r\n<td id=\"x_x_valSettingsAreaOutGoingServer\" style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">mail.mavrix.one </span></p>\r\n<ul type=\"disc\">\r\n<li class=\"x_MsoNormal\" style=\"display:inline-block\"><span style=\"font-size:12.0pt\">SMTP Port: 465</span></li></ul>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<div id=\"x_x_lblSettingsAreaSmallNote1\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">IMAP, POP3, and SMTP require authentication.</span></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"x_x_nonSSL\">\r\n<div>\r\n<div id=\"x_x_non_ssl_settings_area\" style=\"border:none #F6C342 1.0pt; padding:0in 0in 0in 0in; margin-bottom:15.0pt; border:transparent; border-radius:4px; box-shadow:0 1px 1px rgba(0,0,0,0.05)\">\r\n<div style=\"border:none #F6C342 1.0pt; padding:8.0pt 11.0pt 8.0pt 11.0pt; border-top-left-radius:3px; border-top-right-radius:3px\">\r\n<p class=\"x_MsoNormal\" style=\"background:#FCF8E1\"><span class=\"x_xcaption\"><span style=\"font-size:12.0pt; color:#333333\">Non-SSL Settings (NOT Recommended)</span></span><span style=\"font-size:12.0pt; color:#333333\">\r\n</span></p>\r\n</div>\r\n<table class=\"x_MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" id=\"x_x_tblManualSettingsTable\" style=\"width:100.0%; border-collapse:collapse; border-spacing:0; max-width:100%\">\r\n<tbody>\r\n<tr>\r\n<td id=\"x_x_lblNonSSLSettingsUsername\" style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">Username:</span></p>\r\n</td>\r\n<td id=\"x_x_valNonSSLSettingsUsername\" style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">bob@mavrix.one</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td id=\"x_x_lblNonSSLSettingsPassword\" style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">Password:</span></p>\r\n</td>\r\n<td id=\"x_x_valNonSSLSettingsPassword\" style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">Use the email account’s password.</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td id=\"x_x_lblNonSSLSettingsIncomingServer\" style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">Incoming Server:</span></p>\r\n</td>\r\n<td id=\"x_x_valNonSSLSettingsIncomingServer\" style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">mail.mavrix.one </span></p>\r\n<ul type=\"disc\">\r\n<li class=\"x_MsoNormal\" style=\"display:inline-block\"><span style=\"font-size:12.0pt\">IMAP Port: 143</span></li><li class=\"x_MsoNormal\" style=\"display:inline-block\"><span style=\"font-size:12.0pt\">POP3 Port: 110</span></li></ul>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td id=\"x_x_NonSSLSettingsOutgoingServer\" style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">Outgoing Server:</span></p>\r\n</td>\r\n<td id=\"x_x_NonSSLSettingsOutgoingServerData\" style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">mail.mavrix.one </span></p>\r\n<ul type=\"disc\">\r\n<li class=\"x_MsoNormal\" style=\"display:inline-block\"><span style=\"font-size:12.0pt\">SMTP Port: 2525</span></li></ul>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<div id=\"x_x_descNonSSLSettingsAuthenticationIsRequiredForIMAPPOP3SMTP1\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">IMAP, POP3, and SMTP require authentication.</span></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<h2>Calendar &amp; Contacts Manual Settings</h2>\r\n<div>\r\n<div>\r\n<div style=\"border:none #428BCA 1.0pt; padding:0in 0in 0in 0in; margin-bottom:15.0pt; border:transparent; border-radius:4px; box-shadow:0 1px 1px rgba(0,0,0,0.05)\">\r\n<div style=\"border:none #428BCA 1.0pt; padding:8.0pt 11.0pt 8.0pt 11.0pt; border-top-left-radius:3px; border-top-right-radius:3px\">\r\n<p class=\"x_MsoNormal\" style=\"background:#428BCA\"><span style=\"font-size:12.0pt; color:white\">Secure SSL/TLS Settings (Recommended).\r\n</span></p>\r\n</div>\r\n<table class=\"x_MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"width:100.0%; border-collapse:collapse; border-spacing:0; max-width:100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">Username:</span></p>\r\n</td>\r\n<td style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">bob@mavrix.one</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">Password:</span></p>\r\n</td>\r\n<td style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">Use the email account’s password.</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">Server:</span></p>\r\n</td>\r\n<td style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">https://mail.mavrix.one:2080\r\n</span></p>\r\n<ul type=\"disc\">\r\n<li class=\"x_MsoNormal\" style=\"display:inline-block\"><span style=\"font-size:12.0pt\">Port: 2080</span></li></ul>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">Full Calendar URL(s):</span></p>\r\n</td>\r\n<td style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<ul type=\"disc\">\r\n<li class=\"x_MsoNormal\" style=\"display:inline-block\"><b><span style=\"font-size:12.0pt\">cPanel CalDAV Calendar</span></b><span style=\"font-size:12.0pt\">:</span></li><li class=\"x_MsoNormal\" style=\"display:inline-block\"><span style=\"font-size:12.0pt\">https://mail.mavrix.one:2080/calendars/bob@mavrix.one/calendar</span></li></ul>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">Full Contact List URL(s):</span></p>\r\n</td>\r\n<td style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<ul type=\"disc\">\r\n<li class=\"x_MsoNormal\" style=\"display:inline-block\"><b><span style=\"font-size:12.0pt\">cPanel CardDAV Address Book</span></b><span style=\"font-size:12.0pt\">:</span></li><li class=\"x_MsoNormal\" style=\"display:inline-block\"><span style=\"font-size:12.0pt\">https://mail.mavrix.one:2080/addressbooks/bob@mavrix.one/addressbook</span></li></ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n<div>\r\n<div style=\"border:none #F6C342 1.0pt; padding:0in 0in 0in 0in; margin-bottom:15.0pt; border:transparent; border-radius:4px; box-shadow:0 1px 1px rgba(0,0,0,0.05)\">\r\n<div style=\"border:none #F6C342 1.0pt; padding:8.0pt 11.0pt 8.0pt 11.0pt; border-top-left-radius:3px; border-top-right-radius:3px\">\r\n<p class=\"x_MsoNormal\" style=\"background:#FCF8E1\"><span style=\"font-size:12.0pt; color:#333333\">Non-SSL Settings (NOT Recommended).\r\n</span></p>\r\n</div>\r\n<table class=\"x_MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"width:100.0%; border-collapse:collapse; border-spacing:0; max-width:100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">Username:</span></p>\r\n</td>\r\n<td style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">bob@mavrix.one</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">Password:</span></p>\r\n</td>\r\n<td style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">Use the email account’s password.</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">Server:</span></p>\r\n</td>\r\n<td style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">http://mail.mavrix.one:2079\r\n</span></p>\r\n<ul type=\"disc\">\r\n<li class=\"x_MsoNormal\" style=\"display:inline-block\"><span style=\"font-size:12.0pt\">Port: 2079</span></li></ul>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">Full Calendar URL(s):</span></p>\r\n</td>\r\n<td style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<ul type=\"disc\">\r\n<li class=\"x_MsoNormal\" style=\"display:inline-block\"><b><span style=\"font-size:12.0pt\">cPanel CalDAV Calendar</span></b><span style=\"font-size:12.0pt\">:</span></li><li class=\"x_MsoNormal\" style=\"display:inline-block\"><span style=\"font-size:12.0pt\">http://mail.mavrix.one:2079/calendars/bob@mavrix.one/calendar</span></li></ul>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">Full Contact List URL(s):</span></p>\r\n</td>\r\n<td style=\"border:none; border-top:solid #DDDDDD 1.0pt; padding:6.0pt 6.0pt 6.0pt 6.0pt\">\r\n<ul type=\"disc\">\r\n<li class=\"x_MsoNormal\" style=\"display:inline-block\"><b><span style=\"font-size:12.0pt\">cPanel CardDAV Address Book</span></b><span style=\"font-size:12.0pt\">:</span></li><li class=\"x_MsoNormal\" style=\"display:inline-block\"><span style=\"font-size:12.0pt\">http://mail.mavrix.one:2079/addressbooks/bob@mavrix.one/addressbook</span></li></ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p><span style=\"font-size:12.0pt\">A .mobileconfig file for use with iOS for iPhone/iPad/iPod and MacOS® Mail.app® for Mountain Lion (10.8+) is attached to this message.\r\n</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:0in 0in 0in 0in\">\r\n<div style=\"border:none; border-top:solid #E8E8E8 1.5pt; padding:4.0pt 0in 0in 0in; margin-top:3.75pt\">\r\n<p style=\"margin-top:3.75pt\"><span style=\"font-size:9.0pt; font-family:&quot;Helvetica Neue&quot;; color:#666666\">This notice is the result of a request made by a computer with the IP address of “129.21.255.77” through the “cpanel” service on the server.\r\n</span></p>\r\n<p style=\"margin-top:3.75pt\"><span style=\"font-size:9.0pt; font-family:&quot;Helvetica Neue&quot;; color:#666666\">The remote computer’s location appears to be: United States (US).\r\n</span></p>\r\n<p style=\"margin-top:3.75pt\"><span style=\"font-size:9.0pt; font-family:&quot;Helvetica Neue&quot;; color:#666666\">The remote computer’s IP address is assigned to the provider: “Rochester Institute of Technology”\r\n</span></p>\r\n<p style=\"margin-top:3.75pt\"><span style=\"font-size:9.0pt; font-family:&quot;Helvetica Neue&quot;; color:#666666\">The provider supplied the following remarks about the IP address allocation: “http://www.rit.edu”\r\n</span></p>\r\n<p style=\"margin-top:3.75pt\"><span style=\"font-size:9.0pt; font-family:&quot;Helvetica Neue&quot;; color:#666666\">The system generated this notice on Friday, October 10, 2025 at 2:42:05 PM UTC.\r\n</span></p>\r\n</div>\r\n<p><span style=\"font-size:12.0pt\">Do not reply to this automated message. </span>\r\n</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"15\" style=\"width:11.25pt; padding:0in 0in 0in 0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding:7.5pt 0in 0in 0in\">\r\n<p class=\"x_MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"font-size:12.0pt\"><img border=\"0\" width=\"25\" height=\"25\" id=\"x__x0000_i1025\" alt=\"cP\" style=\"width:.2604in; height:.2604in\" data-outlook-trace=\"F:1|T:1\" src=\"cid:auto_cid_157512637\"></span></p>\r\n<p align=\"center\" style=\"text-align:center\"><span style=\"font-size:9.0pt; font-family:&quot;Helvetica Neue&quot;; color:#666666\">Copyright©&nbsp;2025 cPanel, L.L.C.</span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:12.0pt\">&nbsp;</span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','Great\r\n\r\nBob Raun\r\nEWRI(USA) Inc\r\nbob@ewriusa.com\r\n330 671 3775\r\n________________________________\r\nFrom: rick@mavrix.one <rick@mavrix.one>\r\nSent: Friday, October 10, 2025 12:08 PM\r\nTo: Bob Raun <bob@ewriusa.com>\r\nSubject: Re: [mavrix.one] Client configuration settings for “bob@mavrix.one”.\r\n\r\n\r\nOk, Bob,\r\nThe provider changed the way passwords are set…\r\nThey are telling me I have to create a password and send it to you…\r\nSo, I’m going to do that…and you can copy and paste it.\r\nI’ll send you new info soon.\r\nThanks!\r\n\r\n\r\n\r\nGet Outlook for Mac <https://aka.ms/GetOutlookForMac>\r\n\r\n\r\n\r\nFrom: Bob Raun <bob@ewriusa.com>\r\nDate: Friday, October 10, 2025 at 10:50\r\nTo: rick@mavrix.one <rick@mavrix.one>\r\nSubject: Fw: [mavrix.one] Client configuration settings for “bob@mavrix.one”.\r\n\r\n\r\n\r\n\r\n\r\nBob Raun\r\n\r\nEWRI(USA) Inc\r\n\r\nbob@ewriusa.com\r\n\r\n330 671 3775\r\n\r\n________________________________\r\n\r\nFrom: cPanel on mavrix.one <cpanel@mavrix.one>\r\nSent: Friday, October 10, 2025 10:42 AM\r\nTo: Bob Raun <bob@ewriusa.com>\r\nSubject: [mavrix.one] Client configuration settings for “bob@mavrix.one”.\r\n\r\n\r\n\r\nClient Configuration settings for “bob@mavrix.one”.\r\n\r\nMail Client Manual Settings\r\n\r\nSecure SSL/TLS Settings (Recommended)\r\n\r\nUsername:\r\n\r\nbob@mavrix.one\r\n\r\nPassword:\r\n\r\nUse the email account’s password.\r\n\r\nIncoming Server:\r\n\r\nmail.mavrix.one\r\n\r\n  *   IMAP Port: 993\r\n  *   POP3 Port: 995\r\n\r\nOutgoing Server:\r\n\r\nmail.mavrix.one\r\n\r\n  *   SMTP Port: 465\r\n\r\nIMAP, POP3, and SMTP require authentication.\r\n\r\nNon-SSL Settings (NOT Recommended)\r\n\r\nUsername:\r\n\r\nbob@mavrix.one\r\n\r\nPassword:\r\n\r\nUse the email account’s password.\r\n\r\nIncoming Server:\r\n\r\nmail.mavrix.one\r\n\r\n  *   IMAP Port: 143\r\n  *   POP3 Port: 110\r\n\r\nOutgoing Server:\r\n\r\nmail.mavrix.one\r\n\r\n  *   SMTP Port: 2525\r\n\r\nIMAP, POP3, and SMTP require authentication.\r\n\r\nCalendar & Contacts Manual Settings\r\n\r\nSecure SSL/TLS Settings (Recommended).\r\n\r\nUsername:\r\n\r\nbob@mavrix.one\r\n\r\nPassword:\r\n\r\nUse the email account’s password.\r\n\r\nServer:\r\n\r\nhttps://mail.mavrix.one:2080\r\n\r\n  *   Port: 2080\r\n\r\nFull Calendar URL(s):\r\n\r\n  *   cPanel CalDAV Calendar:\r\n  *   https://mail.mavrix.one:2080/calendars/bob@mavrix.one/calendar\r\n\r\nFull Contact List URL(s):\r\n\r\n  *   cPanel CardDAV Address Book:\r\n  *   https://mail.mavrix.one:2080/addressbooks/bob@mavrix.one/addressbook\r\n\r\nNon-SSL Settings (NOT Recommended).\r\n\r\nUsername:\r\n\r\nbob@mavrix.one\r\n\r\nPassword:\r\n\r\nUse the email account’s password.\r\n\r\nServer:\r\n\r\nhttp://mail.mavrix.one:2079\r\n\r\n  *   Port: 2079\r\n\r\nFull Calendar URL(s):\r\n\r\n  *   cPanel CalDAV Calendar:\r\n  *   http://mail.mavrix.one:2079/calendars/bob@mavrix.one/calendar\r\n\r\nFull Contact List URL(s):\r\n\r\n  *   cPanel CardDAV Address Book:\r\n  *   http://mail.mavrix.one:2079/addressbooks/bob@mavrix.one/addressbook\r\n\r\nA .mobileconfig file for use with iOS for iPhone/iPad/iPod and MacOS® Mail.app® for Mountain Lion (10.8+) is attached to this message.\r\n\r\nThis notice is the result of a request made by a computer with the IP address of “129.21.255.77” through the “cpanel” service on the server.\r\n\r\nThe remote computer’s location appears to be: United States (US).\r\n\r\nThe remote computer’s IP address is assigned to the provider: “Rochester Institute of Technology”\r\n\r\nThe provider supplied the following remarks about the IP address allocation: “http://www.rit.edu”\r\n\r\nThe system generated this notice on Friday, October 10, 2025 at 2:42:05 PM UTC.\r\n\r\nDo not reply to this automated message.\r\n\r\n[cP]\r\n\r\nCopyright© 2025 cPanel, L.L.C.',0,0,0,0,0,0,'2025-10-10 16:13:30','2025-12-09 19:29:33','2025-12-09 19:29:33','2025-12-09 19:29:33',NULL,NULL,NULL),
(845,4,' <SA3PR20MB7675FFCADB98F7FB266B5946A2EFA@SA3PR20MB7675.namprd20.prod.outlook.com>',NULL,NULL,'Test','bob@mavrix.one','\"bob@mavrix.one\"','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nTest.&nbsp; Pls confirm receipt.&nbsp;</div>\r\n</body>\r\n</html>','Test.  Pls confirm receipt.',0,0,0,0,0,0,'2025-10-10 16:24:12','2025-12-09 19:29:33','2025-12-09 19:29:33','2025-12-09 19:29:33',NULL,NULL,NULL),
(846,4,' <SA3PR20MB7675D0A98F4129234882DC1AA2EFA@SA3PR20MB7675.namprd20.prod.outlook.com>',NULL,NULL,'Test','bob@mavrix.one','\"bob@mavrix.one\"','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n</body>\r\n</html>','\r\n\r\n\r\n P {margin-top:0;margin-bottom:0;} \r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-10-10 16:27:20','2025-12-09 19:29:34','2025-12-09 19:29:34','2025-12-09 19:29:34',NULL,NULL,NULL),
(847,4,' <SA3PR20MB7675E6CE217305C648D10E08A2EFA@SA3PR20MB7675.namprd20.prod.outlook.com>',NULL,NULL,'Test #2','bob@mavrix.one','\"bob@mavrix.one\"','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nPls send email to me</div>\r\n</body>\r\n</html>','Pls send email to me',0,0,0,0,0,0,'2025-10-10 16:31:17','2025-12-09 19:29:34','2025-12-09 19:29:34','2025-12-09 19:29:34',NULL,NULL,NULL),
(848,4,' <SA3PR20MB7675E5191BB9E299B6EAC4C1A2EFA@SA3PR20MB7675.namprd20.prod.outlook.com>',NULL,NULL,'3rd test','bob@mavrix.one','\"bob@mavrix.one\"','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nPls revert&nbsp;</div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<hr style=\"display: inline-block; width: 98%;\">\r\n<div style=\"font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;bob@mavrix.one<br>\r\n<b>Sent:</b><br>\r\n<b>To:</b>&nbsp;rick@mavrix.one &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Test </div>\r\n<div style=\"font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n</body>\r\n</html>','Pls revert\r\n\r\n\r\n________________________________\r\nFrom: bob@mavrix.one\r\nSent:\r\nTo: rick@mavrix.one <rick@mavrix.one>\r\nSubject: Test',0,0,0,0,0,0,'2025-10-10 16:46:05','2025-12-09 19:29:34','2025-12-09 19:29:34','2025-12-09 19:29:34',NULL,NULL,NULL),
(849,4,' <SA3PR20MB76753E1B6FAE22D1A23B1421A2EFA@SA3PR20MB7675.namprd20.prod.outlook.com>',NULL,NULL,'Test #5','bob@mavrix.one','\"bob@mavrix.one\"','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nPls revert</div>\r\n</body>\r\n</html>','Pls revert',0,0,0,0,0,0,'2025-10-10 16:50:35','2025-12-09 19:29:34','2025-12-09 19:29:34','2025-12-09 19:29:34',NULL,NULL,NULL),
(850,4,' <SA3PR20MB76756D6F1F3230B4DC52F808A2EFA@SA3PR20MB7675.namprd20.prod.outlook.com>',NULL,NULL,'Test #6','bob@mavrix.one','\"bob@mavrix.one\"','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nPls revert</div>\r\n</body>\r\n</html>','Pls revert',0,0,0,0,0,0,'2025-10-10 16:52:44','2025-12-09 19:29:35','2025-12-09 19:29:35','2025-12-09 19:29:35',NULL,NULL,NULL),
(851,4,' <SA3PR20MB7675DE6D9DC89F59C2A09257A2EFA@SA3PR20MB7675.namprd20.prod.outlook.com>',NULL,NULL,'Re: Test #6','bob@mavrix.one','\"bob@mavrix.one\"','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nPls confirm one more time.&nbsp;</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, October 10, 2025 1:09 PM<br>\r\n<b>To:</b> bob@mavrix.one &lt;bob@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Test #6</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>Working!<br>\r\n<br>\r\n<br>\r\n<br>\r\n<p class=\"x_airmail_on\">On October 10, 2025 at 1:09:26 PM, bob@mavrix.one (<a href=\"mailto:bob@mavrix.one\">bob@mavrix.one</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nPls revert</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Pls confirm one more time.\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, October 10, 2025 1:09 PM\r\nTo: bob@mavrix.one <bob@mavrix.one>\r\nSubject: Re: Test #6\r\n\r\nWorking!\r\n\r\n\r\n\r\n\r\nOn October 10, 2025 at 1:09:26 PM, bob@mavrix.one (bob@mavrix.one<mailto:bob@mavrix.one>) wrote:\r\n\r\nPls revert\r\n',0,0,0,0,0,0,'2025-10-10 17:13:24','2025-12-09 19:29:35','2025-12-09 19:29:35','2025-12-09 19:29:35',NULL,NULL,NULL),
(852,4,'<20251013131024.Horde.fZOttky5yPXEOXwmRRF5nh_@mavrix1.aponte.to>',NULL,NULL,'Invitation updated: FL University Co-Op Planning for Engineering/Tech','leslie@mavrix.one','Leslie Staron','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\" style=\"-webkit-font-smoothing:antialiased;background:#fff!important\">\r\n<head>\r\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n	<meta name=\"viewport\" content=\"width=device-width\">\r\n	<title></title>\r\n	<style type=\"text/css\">@media only screen{html{min-height:100%;background:#fff}}@media only screen and (max-width:610px){table.body img{width:auto;height:auto}table.body center{min-width:0!important}table.body .container{width:95%!important}table.body .columns{height:auto!important;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:30px!important;padding-right:30px!important}th.small-12{display:inline-block!important;width:100%!important}table.menu{width:100%!important}table.menu td,table.menu th{width:auto!important;display:inline-block!important}table.menu.vertical td,table.menu.vertical th{display:block!important}table.menu[align=center]{width:auto!important}}</style>\r\n</head>\r\n<body style=\"-moz-box-sizing:border-box;-ms-text-size-adjust:100%;-webkit-box-sizing:border-box;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;margin:0;background:#fff!important;box-sizing:border-box;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;min-width:100%;padding:0;text-align:left;width:100%!important\">\r\n	<span class=\"preheader\" style=\"color:#F5F5F5;display:none!important;font-size:1px;line-height:1px;max-height:0;max-width:0;mso-hide:all!important;opacity:0;overflow:hidden;visibility:hidden\">\r\n	</span>\r\n	<table class=\"body\" style=\"-webkit-font-smoothing:antialiased;margin:0;background:#fff;border-collapse:collapse;border-spacing:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n		<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n			<td class=\"center\" align=\"center\" valign=\"top\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n				<center data-parsed=\"\" style=\"min-width:580px;width:100%\"><table align=\"center\" class=\"wrapper header float-center\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:20px;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:0 0;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:150px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n						<table class=\"row collapse\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n							<tbody>\r\n							<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n								<center data-parsed=\"\" style=\"background-color:#00679e;min-width:175px;max-height:175px; padding:35px 0px;border-radius:200px\">\r\n									<img class=\"logo float-center\" src=\"https://mavrix1.aponte.to/apps/theming/image/logo?useSvg=0&amp;v=9\" alt=\"Mavrix1\" align=\"center\" style=\"-ms-interpolation-mode:bicubic;clear:both;display:block;float:none;margin:0 auto;outline:0;text-align:center;text-decoration:none;max-height:105px;max-width:105px;width:auto;height:auto\" width=\"105\" height=\"22\">\r\n								</center>\r\n							</tr>\r\n							</tbody>\r\n						</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"40px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:80px;font-weight:400;hyphens:auto;line-height:80px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"container main-heading float-center\" style=\"Margin:0 auto;background:0 0!important;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:580px\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<h1 class=\"text-center\" style=\"Margin:0;Margin-bottom:10px;color:inherit;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:24px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:center;word-wrap:normal\">Leslie Staron updated the event \"FL University Co-Op Planning for Engineering/Tech\"</h1>\r\n		</td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"36px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:40px;font-weight:400;hyphens:auto;line-height:36px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"wrapper content float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:580px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/title.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Title:</em><br>FL University Co-Op Planning for Engineering/Tech</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/time.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">When:</em><br><span style=\"text-decoration: line-through\">In 49 minutes on Monday, October 13, 2025 between 10:00 AM - 10:30 AM (America/New_York)</span><br>In 4 hours on Monday, October 13, 2025 between 2:00 PM - 2:30 PM (America/New_York)</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/location.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Location:</em><br>Leslie Will Call</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/description.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Description:</em><br>Rick,\r\n\r\nBrian mentioned starting to create a plan on building  partnerships with the Engineering/Tech schools in FL for the programs you have in mind for Mavrix1.  Let\'s use this time to look at our opportunities, discuss your specific ideas and connections you might already have so I can begin designing the programs we need for your team.\r\n\r\nLet me know if you think we should add anyone to this conversation.\r\n\r\nThank you!\r\nLeslie</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"spacer\" style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"50px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:50px;font-weight:400;hyphens:auto;line-height:50px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"row btn-group\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<center data-parsed=\"\" style=\"min-width:490px;width:100%\">\r\n							<!--[if (gte mso 9)|(IE)]>\r\n							<table>\r\n								<tr>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default primary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;margin:0 0 30px 0;margin-right:15px;border-radius:8px;max-width:300px;padding:0;text-align:center;vertical-align:top;width:auto;background:#00679e;background-color:#00679e;color:#fefefe;\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #00679e;border-collapse:collapse!important;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/accept/WjF7pBznjMufcJPj7r0XDKDAimp9qoItvsWWfABtLhV7sISyv0QdLD3z1uNV\" style=\"Margin:0;border:0 solid #00679e;color:#ffffff;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;padding:8px;text-align:left;outline:1px solid #ffffff;text-decoration:none\">Accept</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default secondary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;background-color: #ccc;margin:0 0 30px 0;max-height:40px;max-width:300px;padding:1px;border-radius:8px;text-align:center;vertical-align:top;width:auto\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #777;border-collapse:collapse!important;color:#fefefe;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/decline/WjF7pBznjMufcJPj7r0XDKDAimp9qoItvsWWfABtLhV7sISyv0QdLD3z1uNV\" style=\"Margin:0;background-color:#fff;border:0 solid #777;color:#6C6C6C!important;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;border-radius: 7px;padding:8px;text-align:left;text-decoration:none\">Decline</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n								</tr>\r\n							</table>\r\n							<![endif]-->\r\n						</center>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;text-align:center\"><small><a href=\"https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/WjF7pBznjMufcJPj7r0XDKDAimp9qoItvsWWfABtLhV7sISyv0QdLD3z1uNV\">More options …</a></small></p>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table><table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"60px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:60px;font-weight:400;hyphens:auto;line-height:60px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"wrapper footer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<center data-parsed=\"\" style=\"min-width:580px;width:100%\">\r\n				<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n					<tbody>\r\n					<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n						<td height=\"15px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:15px;font-weight:400;hyphens:auto;line-height:15px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n					</tr>\r\n					</tbody>\r\n				</table>\r\n				<p class=\"text-center float-center\" align=\"center\" style=\"Margin:0;Margin-bottom:10px;color:#C8C8C8;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:10px;padding:0;text-align:center\">Mavrix1 - Manufacturing American Autonomy<br>This is an automatically sent email, please do not reply.</p>\r\n			</center>\r\n		</td>\r\n	</tr>\r\n</table>					</center>\r\n				</td>\r\n			</tr>\r\n		</table>\r\n		<!-- prevent Gmail on iOS font size manipulation -->\r\n		<div style=\"display:none;white-space:nowrap;font:15px courier;line-height:0\">                                                           </div>\r\n	</body>\r\n</html>','Leslie Staron updated the event \"FL University Co-Op Planning for Engineering/Tech\"\r\n\r\n         Title: FL University Co-Op Planning for Engineering/Tech\r\n          When: In 4 hours on Monday, October 13, 2025 between 2:00 PM - 2:30 PM (America/New_York)\r\n      Location: Leslie Will Call\r\n   Description: Rick,\r\n                \r\n                Brian mentioned starting to create a plan on building  partnerships with the Engineering/Tech schools in FL for the programs you have in mind for Mavrix1.  Let\'s use this time to look at our opportunities, discuss your specific ideas and connections you might already have so I can begin designing the programs we need for your team.\r\n                \r\n                Let me know if you think we should add anyone to this conversation.\r\n                \r\n                Thank you!\r\n                Leslie\r\n\r\nAccept: https://mavrix1.aponte.to/apps/dav/invitation/accept/WjF7pBznjMufcJPj7r0XDKDAimp9qoItvsWWfABtLhV7sISyv0QdLD3z1uNV\r\nDecline: https://mavrix1.aponte.to/apps/dav/invitation/decline/WjF7pBznjMufcJPj7r0XDKDAimp9qoItvsWWfABtLhV7sISyv0QdLD3z1uNV\r\n\r\nMore options at https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/WjF7pBznjMufcJPj7r0XDKDAimp9qoItvsWWfABtLhV7sISyv0QdLD3z1uNV\r\n\r\n\r\n-- \r\nMavrix1 - Manufacturing American Autonomy\r\nThis is an automatically sent email, please do not reply.',0,0,0,0,0,0,'2025-10-13 13:10:24','2025-12-09 19:29:35','2025-12-09 19:29:35','2025-12-09 19:29:35',NULL,NULL,NULL),
(853,4,'<1AB34DA8-E06A-4F73-8842-627E23D62E6E@mavrix.one>',NULL,NULL,'Introduction','Brian@mavrix.one','Brian Stufflebean','\r\n--Apple-Mail=_5BAE8F0E-8437-4FCE-A249-83780139B3C6\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Type: text/html;\r\n	charset=us-ascii\r\n\r\n<html><head><meta http-equiv=3D\"content-type\" content=3D\"text/html; =\r\ncharset=3Dus-ascii\"></head><body style=3D\"overflow-wrap: break-word; =\r\n-webkit-nbsp-mode: space; line-break: after-white-space;\"><span =\r\nstyle=3D\"font-size: 14px;\">Rick,</span><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: 14px;\">I would =\r\nlike to introduce you to Regina Rabitaille. &nbsp;Regina is an estate =\r\nplanning attorney with Nelson Mullins, who was referred to me by Roman =\r\nPetra, Esq. I am certain that she will be able to provide you with some =\r\nguidance in your planning.&nbsp;</span></div><div><span =\r\nstyle=3D\"font-size: 14px;\"><br></span></div><div><span style=3D\"font-size:=\r\n 14px;\">I will leave it to you to reach out to her directly. &nbsp;Have =\r\na nice evening.&nbsp;</span></div><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: 14px;\">Her =\r\ncontact information &nbsp;is as =\r\nfollows:</span></div><div><br></div><div><table class=3D\"MsoNormalTable\" =\r\nborder=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" width=3D\"370\" =\r\nstyle=3D\"color: rgb(0, 0, 0); font-variant-caps: normal; width: =\r\n277.5pt;\"><tbody><tr><td width=3D\"100%\" style=3D\"width: 370px; padding: =\r\n0in 0in 10.5pt;\"><p class=3D\"MsoNormal\" style=3D\"margin: 0in; font-size: =\r\n10pt; font-family: Aptos, sans-serif;\"><b><span style=3D\"font-size: =\r\n7.5pt; font-family: Arial, sans-serif; color: rgb(103, 109, 114); =\r\nletter-spacing: 0.75pt;\"><img height=3D\"84\" id=3D\"_x0000_i1027\" =\r\nsrc=3D\"cid:F69C6FD0-9E11-4E5F-B996-0B994885B2AC\" style=3D\"width: =\r\n2.7083in; height: 0.875in;\" alt=3D\"ecard-logo-125.png\"></span></b><b><span=\r\n style=3D\"font-size: 7.5pt; font-family: Arial, sans-serif; color: =\r\nrgb(103, 109, 114); letter-spacing: =\r\n0.75pt;\"><o:p></o:p></span></b></p></td></tr><tr><td width=3D\"370\" =\r\nstyle=3D\"width: 277.5pt; padding: 0in;\"><div style=3D\"border-width: =\r\n1.5pt medium medium; border-style: solid none none; border-color: =\r\nrgb(209, 210, 212) currentcolor currentcolor; border-image: none; =\r\npadding: 12pt 0in 0in;\"><p class=3D\"MsoNormal\" style=3D\"margin: 0in 0in =\r\n3pt; font-size: 10pt; font-family: Aptos, sans-serif; border: medium; =\r\npadding: 0in;\"><b><span style=3D\"font-size: 7.5pt; font-family: Arial, =\r\nsans-serif; color: rgb(103, 109, 114); letter-spacing: 0.75pt;\">REGINA =\r\nRABITAILLE&nbsp;&nbsp;</span></b><b><span style=3D\"font-size: 7.5pt; =\r\nfont-family: Arial, sans-serif; color: rgb(101, 155, 197); =\r\nletter-spacing: 0.75pt;\">PARTNER</span></b><b><span style=3D\"font-size: =\r\n7.5pt; font-family: Arial, sans-serif; color: rgb(103, 109, 114); =\r\nletter-spacing: 0.75pt;\"><o:p></o:p></span></b></p></div><p =\r\nclass=3D\"MsoNormal\" style=3D\"margin: 0in 0in 6.75pt; font-size: 10pt; =\r\nfont-family: Aptos, sans-serif;\"><b><span style=3D\"font-size: 7.5pt; =\r\nfont-family: Arial, sans-serif; color: rgb(103, 109, 114); =\r\nletter-spacing: 0.75pt;\"><a =\r\nhref=3D\"mailto:regina.rabitaille@nelsonmullins.com\" style=3D\"color: =\r\nblue;\"><span style=3D\"font-size: 7pt; color: rgb(103, 109, 114); =\r\ntext-decoration: =\r\nnone;\">regina.rabitaille@nelsonmullins.com</span></a><o:p></o:p></span></b=\r\n></p><p class=3D\"MsoNormal\" style=3D\"margin: 0in 0in 4.5pt; font-size: =\r\n10pt; font-family: Aptos, sans-serif;\"><b><span style=3D\"font-size: =\r\n7.5pt; font-family: Arial, sans-serif; color: rgb(103, 109, 114); =\r\nletter-spacing: 0.75pt;\">390 NORTH ORANGE AVENUE&nbsp;|&nbsp;SUITE =\r\n1400<o:p></o:p></span></b></p><p class=3D\"MsoNormal\" style=3D\"margin: =\r\n0in 0in 4.5pt; font-size: 10pt; font-family: Aptos, =\r\nsans-serif;\"><b><span style=3D\"font-size: 7.5pt; font-family: Arial, =\r\nsans-serif; color: rgb(103, 109, 114); letter-spacing: =\r\n0.75pt;\">ORLANDO,&nbsp;FL&nbsp;32801<o:p></o:p></span></b></p><p =\r\nclass=3D\"MsoNormal\" style=3D\"margin: 0in 0in 4.5pt; font-size: 10pt; =\r\nfont-family: Aptos, sans-serif;\"><b><span style=3D\"font-size: 5.5pt; =\r\nfont-family: Arial, sans-serif; color: rgb(103, 109, 114); =\r\nletter-spacing: 0.75pt;\">T</span></b><b><span style=3D\"font-size: 7.5pt; =\r\nfont-family: Arial, sans-serif; color: rgb(103, 109, 114); =\r\nletter-spacing: 0.75pt;\">&nbsp;<span style=3D\"text-transform: =\r\nuppercase;\">407.669.4209</span>&nbsp;&nbsp;&nbsp;</span></b><b><span =\r\nstyle=3D\"font-size: 5.5pt; font-family: Arial, sans-serif; color: =\r\nrgb(103, 109, 114); letter-spacing: 0.75pt;\">F</span></b><b><span =\r\nstyle=3D\"font-size: 7.5pt; font-family: Arial, sans-serif; color: =\r\nrgb(103, 109, 114); letter-spacing: 0.75pt;\">&nbsp;<span =\r\nstyle=3D\"text-transform: =\r\nuppercase;\">407.425.8377</span>&nbsp;&nbsp;<o:p></o:p></span></b></p></td>=\r\n</tr><tr><td width=3D\"370\" style=3D\"width: 277.5pt; padding: 0in;\"><div =\r\nstyle=3D\"border-width: medium medium 1.5pt; border-style: none none =\r\nsolid; border-color: currentcolor currentcolor rgb(209, 210, 212); =\r\nborder-image: none; padding: 0in 0in 16pt;\"><p class=3D\"MsoNormal\" =\r\nstyle=3D\"margin: 0in; font-size: 10pt; font-family: Aptos, sans-serif; =\r\nborder: medium; padding: 0in;\"><b><span style=3D\"font-size: 7.5pt; =\r\nfont-family: Arial, sans-serif; color: rgb(103, 109, 114); =\r\nletter-spacing: 0.75pt;\"><a href=3D\"https://www.nelsonmullins.com/\" =\r\nstyle=3D\"color: blue;\"><span style=3D\"color: rgb(103, 109, 114); =\r\ntext-decoration: =\r\nnone;\">NELSONMULLINS.COM</span></a>&nbsp;&nbsp;&nbsp;&nbsp;<a =\r\nhref=3D\"https://www.nelsonmullins.com/professionals/regina-rabitaille/vcar=\r\nd\" style=3D\"color: blue;\"><span style=3D\"color: rgb(101, 155, 197); =\r\ntext-decoration: none;\">VCARD</span></a>&nbsp;&nbsp;<a =\r\nhref=3D\"https://www.nelsonmullins.com/professionals/regina-rabitaille\" =\r\nstyle=3D\"color: blue;\"><span style=3D\"color: rgb(53, 89, 137); =\r\ntext-decoration: none;\">VIEW =\r\nBIO</span></a></span></b></p></div></td></tr></tbody></table></div><div><b=\r\nr></div><div><br></div><div><br></div><div><br><div>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; orphans: auto; text-align: start; text-indent: 0px; =\r\ntext-transform: none; white-space: normal; widows: auto; word-spacing: =\r\n0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><font size=3D\"2\">Best =\r\nregards,</font></div><div style=3D\"font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><font =\r\nsize=3D\"2\"><br></font></div><div style=3D\"font-family: Helvetica; =\r\nfont-size: 12px; font-style: normal; font-variant-caps: normal; =\r\nfont-weight: 400; letter-spacing: normal; orphans: auto; text-align: =\r\nstart; text-indent: 0px; text-transform: none; white-space: normal; =\r\nwidows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\" style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><b>Brian C. =\r\nStufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 =\r\nDirect</b></div><div style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><span style=3D\"font-size: =\r\n11px;\">(866)896-2423 Fax</span></div></div><span style=3D\"caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0); font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"></span><br class=3D\"Apple-interchange-newline\"><span><img =\r\nalt=3D\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" =\r\nsrc=3D\"cid:CB596987-D3CC-4C61-B9D3-CE1C1DF1C723\"></span><meta =\r\ncharset=3D\"UTF-8\"><div style=3D\"font-family: Helvetica; font-size: 12px; =\r\nfont-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br =\r\nclass=3D\"Apple-interchange-newline\"><br =\r\nclass=3D\"Apple-interchange-newline\"><a =\r\nhref=3D\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a =\r\nhref=3D\"https://mavrix1.com\">https://mavrix1.com/</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY =\r\nNOTICE:</b><span style=3D\"font-family: Helvetica; font-style: normal; =\r\nfont-weight: 400; font-size: =\r\n12px;\">&nbsp;This&nbsp;communication&nbsp;is =\r\nconfidential&nbsp;and&nbsp;intended only for the =\r\nintended&nbsp;recipient.&nbsp;&nbsp;If you are not the =\r\nintended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, =\r\nor&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any =\r\nsuch&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this =\r\ncommunication&nbsp;in error,&nbsp;please contact the sender =\r\nof&nbsp;the&nbsp;message to inform him or her of =\r\nthe&nbsp;error.<br><br></span></div>\r\n</div>\r\n\r\n\r\n<br></div></body></html>=\r\n\r\n--Apple-Mail=_5BAE8F0E-8437-4FCE-A249-83780139B3C6\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=ecard-logo-125.png\r\nContent-Type: image/png;\r\n	x-unix-mode=0666;\r\n	name=\"ecard-logo-125.png\"\r\nContent-Id: <F69C6FD0-9E11-4E5F-B996-0B994885B2AC>\r\n\r\n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\r\nSUVORK5CYII=\r\n--Apple-Mail=_5BAE8F0E-8437-4FCE-A249-83780139B3C6\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\r\nContent-Type: image/png;\r\n	name=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\"\r\nContent-Id: <CB596987-D3CC-4C61-B9D3-CE1C1DF1C723>\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGwAAAAYCAYAAAAf1RgaAAAAAXNSR0IArs4c6QAAAIRlWElmTU0A\r\nKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdp\r\nAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAGyg\r\nAwAEAAAAAQAAABgAAAAABrPxEgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5h\r\nZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9\r\nIlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9y\r\nZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6\r\nYWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZm\r\nLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgog\r\nICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAA\r\nC6FJREFUaAXtWnuMVUcZnznPe/fuZYEtDxHCQ1ADBNuuAlKh24dRaqURWFotj5haKAn9SxOaauRi\r\nxEBsMMFSAmnUCDTKWtDioyEm3RLKq6VKC7Rg20VA5Lmwz3vPa8bfN+ecu+fevbugjQQrX5g735n5\r\nvm++13wz5yyc3YKb0gP19a8YTU33+NNmbx0puHjJtGsm+U7beoMxyRsaGrUJE45JxlbclMp/1JXK\r\nsZWM5XLwP6PG6+tzOgVr8tzN0wWTjRq3hojAw6TU+EfdGf9T9uVyGsutQNC4nDpn8zz0m7lmWEwE\r\njm6mbd/r3MCnzNk6DlEbyRFCqfNbAbyBEeaBlJzrkula1mOFQ683fvMcLT917tblGF8dbTgmhe8a\r\nZsbyvY4NhsbEdwy7ZrHntDHOtBuo7q2lGLyvGSnmOe2/fH3S3//EGhGsOZuf03RrKRMC/3wBL30f\r\n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\r\n--Apple-Mail=_5BAE8F0E-8437-4FCE-A249-83780139B3C6--','Rick,\r\n\r\nI would like to introduce you to Regina Rabitaille.  Regina is an estate planning attorney with Nelson Mullins, who was referred to me by Roman Petra, Esq. I am certain that she will be able to provide you with some guidance in your planning. \r\n\r\nI will leave it to you to reach out to her directly.  Have a nice evening. \r\n\r\nHer contact information  is as follows:\r\n\r\n￼\r\nREGINA RABITAILLE  PARTNER\r\nregina.rabitaille@nelsonmullins.com <mailto:regina.rabitaille@nelsonmullins.com>\r\n390 NORTH ORANGE AVENUE | SUITE 1400\r\nORLANDO, FL 32801\r\nT 407.669.4209   F 407.425.8377  \r\nNELSONMULLINS.COM <https://www.nelsonmullins.com/>    VCARD <https://www.nelsonmullins.com/professionals/regina-rabitaille/vcard>  VIEW BIO <https://www.nelsonmullins.com/professionals/regina-rabitaille>\r\n\r\n\r\n\r\n\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n￼\r\n\r\n\r\nbrian@mavrix.one <mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-10-13 21:42:15','2025-12-09 19:29:36','2025-12-09 19:29:36','2025-12-09 19:29:36',NULL,NULL,NULL),
(854,4,'<AKEJ03V0HE57TPP0PY5Q02ME1C@mail.proton.me>',NULL,NULL,'You have 1 new message(s) in your Proton Mail account m******','no-reply@mail.proton.me','Proton','--b2=_ZN8slXTPbicUeJQD5wM8VJUOMZ4VIAfwDjTsOipOsXw\r\nContent-Type: text/html; charset=utf-8\r\nContent-Transfer-Encoding: base64\r\n\r\nPCFET0NUWVBFIGh0bWw+DQo8P3htbCBlbmNvZGluZz0idXRmLTgiID8+PGh0bWwgeG1sbnM9Imh0\r\ndHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWwiIHhtbG5zOnY9InVybjpzY2hlbWFzLW1pY3Jvc29m\r\ndC1jb206dm1sIiB4bWxuczpvPSJ1cm46c2NoZW1hcy1taWNyb3NvZnQtY29tOm9mZmljZTpvZmZp\r\nY2UiPg0KDQo8aGVhZD48bWV0YSBodHRwLWVxdWl2PSJDb250ZW50LVR5cGUiIGNvbnRlbnQ9InRl\r\neHQvaHRtbDsgY2hhcnNldD11dGYtOCI+DQogICAgPCEtLSBOQU1FOiAxIENPTFVNTiAtLT4NCiAg\r\nICA8IS0tW2lmIGd0ZSBtc28gMTVdPg0KICAgIDx4bWw+DQogICAgICAgIDxvOk9mZmljZURvY3Vt\r\nZW50U2V0dGluZ3M+DQogICAgICAgIDxvOkFsbG93UE5HLz4NCiAgICAgICAgPG86UGl4ZWxzUGVy\r\nSW5jaD45NjwvbzpQaXhlbHNQZXJJbmNoPg0KICAgICAgICA8L286T2ZmaWNlRG9jdW1lbnRTZXR0\r\naW5ncz4NCiAgICA8L3htbD4NCiAgICA8IVtlbmRpZl0tLT4NCiAgICA8bWV0YSBjaGFyc2V0PSJV\r\nVEYtOCI+DQogICAgPG1ldGEgbmFtZT0ieC1hcHBsZS1kaXNhYmxlLW1lc3NhZ2UtcmVmb3JtYXR0\r\naW5nIj4NCiAgICA8bWV0YSBuYW1lPSJmb3JtYXQtZGV0ZWN0aW9uIiBjb250ZW50PSJ0ZWxlcGhv\r\nbmU9bm8sIGRhdGU9bm8sIGFkZHJlc3M9bm8sIGVtYWlsPW5vLCB1cmw9bm8iPg0KICAgIDxtZXRh\r\nIGh0dHAtZXF1aXY9IlgtVUEtQ29tcGF0aWJsZSIgY29udGVudD0iSUU9ZWRnZSI+DQogICAgPG1l\r\ndGEgbmFtZT0idmlld3BvcnQiIGNvbnRlbnQ9IndpZHRoPWRldmljZS13aWR0aCwgaW5pdGlhbC1z\r\nY2FsZT0xIj4NCiAgICA8bWV0YSBuYW1lPSJhdXRob3IiIGNvbnRlbnQ9IlByb3RvbiAmbHQ7bm8t\r\ncmVwbHlAbWFpbC5wcm90b24ubWUmZ3Q7Ij4NCiAgICA8bWV0YSBuYW1lPSJkZXNjcmlwdGlvbiIg\r\nY29udGVudD0iUGxlYXNlIGxvZyBpbiBhdCBodHRwczovL21haWwucHJvdG9uLm1lIHRvIGNoZWNr\r\nIHRoZW0uIj4NCiAgICA8dGl0bGU+WW91IGhhdmUgMSBuZXcgbWVzc2FnZShzKSBpbiB5b3VyIFBy\r\nb3RvbiBNYWlsIGFjY291bnQ8L3RpdGxlPg0KDQoNCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+QG1l\r\nZGlhIG9ubHkgc2NyZWVuIGFuZCAobWluLXdpZHRoOjc2OHB4KXsudGVtcGxhdGVDb250YWluZXJ7\r\nd2lkdGg6IDYwMHB4ICFpbXBvcnRhbnQ7fX1AbWVkaWEgb25seSBzY3JlZW4gYW5kIChtYXgtd2lk\r\ndGg6IDUyMHB4KXtib2R5LHRhYmxlLHRkLHAsYXstd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IG5v\r\nbmUgIWltcG9ydGFudDt9Ym9keXt3aWR0aDogMTAwJSAhaW1wb3J0YW50OyBtaW4td2lkdGg6IDEw\r\nMCUgIWltcG9ydGFudDt9Lm1jblJldGluYUltYWdle21heC13aWR0aDogMTAwJSAhaW1wb3J0YW50\r\nO30ubWNuQnV0dG9uQ29udGVudENvbnRhaW5lciwubWNuVGV4dENvbnRlbnRDb250YWluZXJ7bWF4\r\nLXdpZHRoOiAxMDAlICFpbXBvcnRhbnQ7IHdpZHRoOiAxMDAlICFpbXBvcnRhbnQ7fS5tY25UZXh0\r\nQ29udGVudHtwYWRkaW5nLXJpZ2h0OiAzMnB4ICFpbXBvcnRhbnQ7IHBhZGRpbmctbGVmdDogMzJw\r\neCAhaW1wb3J0YW50O31oMXtmb250LXNpemU6IDIycHggIWltcG9ydGFudDsgbGluZS1oZWlnaHQ6\r\nIDEuMjVlbSAhaW1wb3J0YW50O30jdGVtcGxhdGVCb2R5IC5tY25UZXh0Q29udGVudCwjdGVtcGxh\r\ndGVCb2R5IC5tY25UZXh0Q29udGVudCBwe2ZvbnQtc2l6ZTogMTZweCAhaW1wb3J0YW50OyBsaW5l\r\nLWhlaWdodDogMS41ZW0gIWltcG9ydGFudDt9I3RlbXBsYXRlRm9vdGVyIC5tY25UZXh0Q29udGVu\r\ndCwjdGVtcGxhdGVGb290ZXIgLm1jblRleHRDb250ZW50IHB7Zm9udC1zaXplOiAxNHB4ICFpbXBv\r\ncnRhbnQ7IGxpbmUtaGVpZ2h0OiAxLjVlbSAhaW1wb3J0YW50O30jdGVtcGxhdGVGb290ZXIgLm1j\r\nbkZvbGxvd0NvbnRlbnRJdGVtQ29udGFpbmVye3BhZGRpbmctbGVmdDogMnB4ICFpbXBvcnRhbnQ7\r\nIHBhZGRpbmctcmlnaHQ6IDJweCAhaW1wb3J0YW50O319QG1lZGlhIG9ubHkgc2NyZWVuIGFuZCAo\r\nbWF4LXdpZHRoOiAzNTJweCl7Lm1jbkZvbGxvd0ljb25Db250ZW50LC5tY25Gb2xsb3dJY29uQ29u\r\ndGVudCBpbWcuc29jaWFsLWljb257d2lkdGg6IDM4cHggIWltcG9ydGFudDsgaGVpZ2h0OiAzOHB4\r\nICFpbXBvcnRhbnQ7fSN0ZW1wbGF0ZUZvb3RlciAubWNuRm9sbG93Q29udGVudEl0ZW1Db250YWlu\r\nZXJ7cGFkZGluZy1sZWZ0OiAwICFpbXBvcnRhbnQ7IHBhZGRpbmctcmlnaHQ6IDAgIWltcG9ydGFu\r\ndDt9fTwvc3R5bGU+PC9oZWFkPg0KDQo8Ym9keSBzdHlsZT0iaGVpZ2h0OiAxMDAlOyBtYXJnaW46\r\nIDA7IHBhZGRpbmc6IDA7IHdpZHRoOiAxMDAlOyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBiYWNrZ3JvdW5kLWNvbG9yOiAjZjVmNGYy\r\nOyI+DQogICAgPCEtLVtpZiAhZ3RlIG1zbyA5XT48IS0tLS0+PHNwYW4gY2xhc3M9Im1jblByZXZp\r\nZXdUZXh0IiBzdHlsZT0iZm9udC1zaXplOiAwcHg7IGxpbmUtaGVpZ2h0OiAwcHg7IG1heC1oZWln\r\naHQ6IDBweDsgbWF4LXdpZHRoOiAwcHg7IG9wYWNpdHk6IDA7IG92ZXJmbG93OiBoaWRkZW47IHZp\r\nc2liaWxpdHk6IGhpZGRlbjsgbXNvLWhpZGU6IGFsbDsgZGlzcGxheTogbm9uZTsiPlBsZWFzZSBs\r\nb2cgaW4gYXQgaHR0cHM6Ly9tYWlsLnByb3Rvbi5tZSB0byBjaGVjayB0aGVtLjwvc3Bhbj48IS0t\r\nPCFbZW5kaWZdLS0+DQogICAgPGNlbnRlcj4NCiAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIi\r\nIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBoZWlnaHQ9IjEwMCUi\r\nIHdpZHRoPSIxMDAlIiBpZD0iYm9keVRhYmxlIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xs\r\nYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGhl\r\naWdodDogMTAwJTsgbWFyZ2luOiAwOyBwYWRkaW5nOiAwOyB3aWR0aDogMTAwJTsgYmFja2dyb3Vu\r\nZC1jb2xvcjogI2Y1ZjRmMjsiPg0KICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgIDx0\r\nZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249InRvcCIgaWQ9ImJvZHlDZWxsIiBzdHlsZT0ibXNvLWxp\r\nbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Vi\r\na2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGhlaWdodDogMTAwJTsgbWFyZ2luOiAwOyBwYWRk\r\naW5nOiA4cHg7IHdpZHRoOiAxMDAlOyBib3JkZXItdG9wOiAwOyI+DQogICAgICAgICAgICAgICAg\r\nICAgIDwhLS0gQkVHSU4gVEVNUExBVEUgLy8gLS0+DQogICAgICAgICAgICAgICAgICAgIDwhLS1b\r\naWYgKGd0ZSBtc28gOSl8KElFKV0+DQogICAgICAgICAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0i\r\nY2VudGVyIiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIwIiBjZWxscGFkZGluZz0iMCIgd2lkdGg9\r\nIjYwMCIgc3R5bGU9IndpZHRoOjYwMHB4OyI+PHRyPjx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249\r\nInRvcCIgd2lkdGg9IjYwMCIgc3R5bGU9IndpZHRoOjYwMHB4OyI+DQogICAgICAgICAgICAgICAg\r\nICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBj\r\nZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0idGVtcGxh\r\ndGVDb250YWluZXIiIHN0eWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUt\r\nbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgYm9yZGVyOiAwOyBib3JkZXIt\r\ncmFkaXVzOiAxNnB4OyBtYXgtd2lkdGg6IDYwMHB4OyI+DQo8dHI+DQogICAgPHRkIHZhbGlnbj0i\r\ndG9wIiBpZD0idGVtcGxhdGVIZWFkZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhh\r\nY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgYmFja2dyb3VuZC1jb2xvcjogI2ZmZmZmZjsgYmFja2dyb3VuZC1pbWFnZTogbm9u\r\nZTsgYmFja2dyb3VuZC1yZXBlYXQ6IG5vLXJlcGVhdDsgYmFja2dyb3VuZC1wb3NpdGlvbjogY2Vu\r\ndGVyOyBiYWNrZ3JvdW5kLXNpemU6IGNvdmVyOyBib3JkZXItdG9wOiAwOyBib3JkZXItYm90dG9t\r\nOiAwOyBwYWRkaW5nLXRvcDogMHB4OyBwYWRkaW5nLWJvdHRvbTogMHB4OyBib3JkZXItcmFkaXVz\r\nOiAxNnB4IDE2cHggMCAwOyI+DQogICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5n\r\nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25JbWFnZUJsb2NrIiBz\r\ndHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFi\r\nbGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAg\r\nPHRib2R5IGNsYXNzPSJtY25JbWFnZUJsb2NrT3V0ZXIiPg0KICAgICAgICAgICAgICAgIDx0cj4N\r\nCiAgICAgICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuSW1hZ2VCbG9j\r\na0lubmVyIiBzdHlsZT0icGFkZGluZzogMTZweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0\r\nbHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0ibGVmdCIgd2lk\r\ndGg9IjEwMCUiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBjbGFz\r\ncz0ibWNuSW1hZ2VDb250ZW50Q29udGFpbmVyIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3Jk\r\nZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1y\r\nc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJtY25JbWFnZUNvbnRlbnQiIHZhbGlnbj0idG9wIiBz\r\ndHlsZT0icGFkZGluZzogMTZweDsgdGV4dC1hbGlnbjogY2VudGVyOyBtc28tbGluZS1oZWlnaHQt\r\ncnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgIDxhIGhyZWY9Imh0dHBzOi8vcHJvdG9uLm1lLyIgdGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJt\r\nc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgbGluZS1oZWlnaHQ6IGluaGVyaXQ7IGNv\r\nbG9yOiAjNmQ0YWZmOyBmb250LXdlaWdodDogbm9ybWFsOyB0ZXh0LWRlY29yYXRpb246IHVuZGVy\r\nbGluZTsiPjxpbWcgYWxpZ249ImNlbnRlciIgYWx0PSJQcm90b24iIHNyYz0iY2lkOjE0NzU0N2E5\r\nNTAzY2M3MDViMjQxQG1haWwucHJvdG9uLm1lIiB3aWR0aD0iMjEwIiBzdHlsZT0id2lkdGg6IDM5\r\nLjE3OTElOyBtYXgtd2lkdGg6IDQyMHB4OyBwYWRkaW5nLWJvdHRvbTogMDsgdmVydGljYWwtYWxp\r\nZ246IGJvdHRvbTsgYm9yZGVyOiAwOyBoZWlnaHQ6IGF1dG87IG91dGxpbmU6IG5vbmU7IHRleHQt\r\nZGVjb3JhdGlvbjogbm9uZTsgLW1zLWludGVycG9sYXRpb24tbW9kZTogYmljdWJpYzsgZm9udC1m\r\nYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGlu\r\nZS1oZWlnaHQ6IDEuNWVtOyBjb2xvcjogIzZkNGFmZjsgZGlzcGxheTogaW5saW5lOyI+PC9hPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Ri\r\nb2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAg\r\nICAgPC90ZD4NCiAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgPC90Ym9keT4NCiAg\r\nICAgICAgPC90YWJsZT4NCiAgICA8L3RkPg0KPC90cj4NCjx0cj4NCiAgICA8dGQgdmFsaWduPSJ0\r\nb3AiIGlkPSJ0ZW1wbGF0ZUJvZHkiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3Rs\r\neTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgYmFja2dyb3VuZC1jb2xvcjogI2ZmZmZmZjsgYmFja2dyb3VuZC1pbWFnZTogbm9uZTsg\r\nYmFja2dyb3VuZC1yZXBlYXQ6IG5vLXJlcGVhdDsgYmFja2dyb3VuZC1wb3NpdGlvbjogY2VudGVy\r\nOyBiYWNrZ3JvdW5kLXNpemU6IGNvdmVyOyBib3JkZXItdG9wOiAwOyBib3JkZXItYm90dG9tOiAw\r\nOyBwYWRkaW5nLXRvcDogOHB4OyBwYWRkaW5nLWJvdHRvbTogOHB4OyI+DQo8dGFibGUgYm9yZGVy\r\nPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0i\r\nbWNuRGl2aWRlckJsb2NrIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6\r\nIGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgdGFibGUtbGF5b3V0OiBmaXhlZDsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNuRGl2aWRlckJs\r\nb2NrT3V0ZXIiPg0KICAgICAgICA8dHI+DQogICAgICAgICAgICA8dGQgY2xhc3M9Im1jbkRpdmlk\r\nZXJCbG9ja0lubmVyIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBwYWRkaW5nOiAwIDMycHggMHB4\r\nIDMycHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAg\r\nICAgPHRhYmxlIGNsYXNzPSJtY25EaXZpZGVyQ29udGVudCIgYm9yZGVyPSIwIiBjZWxscGFkZGlu\r\nZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAl\r\nOyBib3JkZXItdG9wOiAxcHggc29saWQgI0Y1RjRGMjsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBz\r\nZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAg\r\nICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1\r\nbGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4+\r\nPC9zcGFuPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAg\r\nICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAg\r\nICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgPCEtLQ0KICAgICAgICAgICAgICAgIDx0\r\nZCBjbGFzcz0ibWNuRGl2aWRlckJsb2NrSW5uZXIiIHN0eWxlPSJwYWRkaW5nOiAzMnB4OyI+DQog\r\nICAgICAgICAgICAgICAgPGhyIGNsYXNzPSJtY25EaXZpZGVyQ29udGVudCIgc3R5bGU9ImJvcmRl\r\nci1ib3R0b20tY29sb3I6bm9uZTsgYm9yZGVyLWxlZnQtY29sb3I6bm9uZTsgYm9yZGVyLXJpZ2h0\r\nLWNvbG9yOm5vbmU7IGJvcmRlci1ib3R0b20td2lkdGg6MDsgYm9yZGVyLWxlZnQtd2lkdGg6MDsg\r\nYm9yZGVyLXJpZ2h0LXdpZHRoOjA7IG1hcmdpbi10b3A6MDsgbWFyZ2luLXJpZ2h0OjA7IG1hcmdp\r\nbi1ib3R0b206MDsgbWFyZ2luLWxlZnQ6MDsiIC8+DQogICAgICAgICAgICAgICAgLS0+DQogICAg\r\nICAgICAgICA8L3RkPg0KICAgICAgICA8L3RyPg0KICAgIDwvdGJvZHk+DQo8L3RhYmxlPg0KPHRh\r\nYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAw\r\nJSIgY2xhc3M9Im1jblRleHRCbG9jayIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNv\r\nbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNl\r\nOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7Ij4NCiAgICA8dGJvZHkgY2xhc3M9Im1jblRleHRCbG9ja091dGVyIj4NCiAgICAg\r\nICAgPHRyPg0KICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dEJsb2Nr\r\nSW5uZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAg\r\nICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249Imxl\r\nZnQiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIiB3aWR0aD0iMTAw\r\nJSIgc3R5bGU9IndpZHRoOjEwMCU7Ij48dHI+DQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+\r\nDQoNCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAgICAgPHRkIHZh\r\nbGlnbj0idG9wIiB3aWR0aD0iNjAwIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij4NCiAgICAgICAgICAg\r\nICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImxlZnQiIGJv\r\ncmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xh\r\nc3M9Im1jblRleHRDb250ZW50Q29udGFpbmVyIiBzdHlsZT0ibWF4LXdpZHRoOiAxMDAlOyBtaW4t\r\nd2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6\r\nIDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgIDx0\r\nYm9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJtY25UZXh0Q29udGVudCIgc3R5bGU9Im1z\r\nby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyB3b3JkLWJyZWFrOiBicmVhay13b3JkOyBj\r\nb2xvcjogIzBjMGMxNDsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7\r\nIGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBsZWZ0OyBw\r\nYWRkaW5nLXRvcDogMzJweDsgcGFkZGluZy1ib3R0b206IDE2cHg7IHBhZGRpbmctcmlnaHQ6IDMy\r\ncHg7IHBhZGRpbmctbGVmdDogMzJweDsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICA8aDEgY2xhc3M9Im1jblRleHRDb250ZW50Q29udGFpbmVyIiBzdHlsZT0iZGlzcGxheTogYmxv\r\nY2s7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBB\r\ncmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDI0cHg7IGZvbnQtc3R5bGU6\r\nIG5vcm1hbDsgZm9udC13ZWlnaHQ6IGJvbGQ7IGxpbmUtaGVpZ2h0OiAxLjI1ZW07IGxldHRlci1z\r\ncGFjaW5nOiAwcHg7IHRleHQtYWxpZ246IGxlZnQ7Ij5Zb3UgaGF2ZSAxIG5ldyBtZXNzYWdlKHMp\r\nPC9oMT4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAg\r\nICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAg\r\nICAgPC90ZD4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgICAg\r\nIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8L3RyPjwvdGFibGU+DQogICAgICAgICAg\r\nICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICA8L3RkPg0KICAgICAgICA8L3RyPg0KICAg\r\nIDwvdGJvZHk+DQo8L3RhYmxlPg0KPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNl\r\nbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRCbG9jayIgc3R5bGU9Im1p\r\nbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFj\r\nZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICA8dGJvZHkgY2xhc3M9Im1j\r\nblRleHRCbG9ja091dGVyIj4NCiAgICAgICAgPHRyPg0KICAgICAgICAgICAgPHRkIHZhbGlnbj0i\r\ndG9wIiBjbGFzcz0ibWNuVGV4dEJsb2NrSW5uZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVs\r\nZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAg\r\nICAgICAgICA8dGFibGUgYWxpZ249ImxlZnQiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNl\r\nbGxwYWRkaW5nPSIwIiB3aWR0aD0iMTAwJSIgc3R5bGU9IndpZHRoOjEwMCU7Ij48dHI+DQogICAg\r\nICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+\r\nDQogICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiB3aWR0aD0iNjAwIiBzdHlsZT0id2lk\r\ndGg6NjAwcHg7Ij4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgICAgICAg\r\nICA8dGFibGUgYWxpZ249ImxlZnQiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFj\r\naW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRDb250ZW50Q29udGFpbmVyIiBzdHls\r\nZT0ibWF4LXdpZHRoOiAxMDAlOyBtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29s\r\nbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+\r\nDQogICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0\r\ncj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJt\r\nY25UZXh0Q29udGVudCIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyB3\r\nb3JkLWJyZWFrOiBicmVhay13b3JkOyBjb2xvcjogIzBjMGMxNDsgZm9udC1mYW1pbHk6IEFyaWFs\r\nLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWlnaHQ6IDEu\r\nNWVtOyB0ZXh0LWFsaWduOiBsZWZ0OyBwYWRkaW5nLXRvcDogOHB4OyBwYWRkaW5nLWJvdHRvbTog\r\nMTJweDsgcGFkZGluZy1yaWdodDogMzJweDsgcGFkZGluZy1sZWZ0OiAzMnB4OyI+DQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5l\r\nciIgc3R5bGU9InBhZGRpbmc6IDBweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1t\r\ncy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIGNvbG9yOiAjMGMwYzE0OyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJp\r\nZjsgZm9udC1zaXplOiAxNnB4OyBsaW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGxlZnQ7\r\nIG1hcmdpbjogMTJweCAwcHg7Ij5IZWxsbyw8L3A+PHAgY2xhc3M9Im1jblRleHRDb250ZW50Q29u\r\ndGFpbmVyIiBzdHlsZT0icGFkZGluZzogMHB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3Rs\r\neTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5z\r\nLXNlcmlmOyBmb250LXNpemU6IDE2cHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgdGV4dC1hbGlnbjog\r\nbGVmdDsgbWFyZ2luOiAxMnB4IDBweDsiPllvdSBoYXZlIDxiIHN0eWxlPSJsaW5lLWhlaWdodDog\r\naW5oZXJpdDsiPjEgbmV3IG1lc3NhZ2Uocyk8L2I+IGluIHlvdXIgaW5ib3ggYW5kIGN1c3RvbSBm\r\nb2xkZXJzLjwvcD48cCBjbGFzcz0ibWNuVGV4dENvbnRlbnRDb250YWluZXIiIHN0eWxlPSJwYWRk\r\naW5nOiAwcHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBjb2xvcjogIzBjMGMx\r\nNDsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTog\r\nMTZweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBsZWZ0OyBtYXJnaW46IDEycHgg\r\nMHB4OyI+UGxlYXNlIGxvZyBpbiBhdCA8YSB0YXJnZXQ9Il9ibGFuayIgdGl0bGU9IkdvIHRvIHlv\r\ndXIgaW5ib3giIGhyZWY9Imh0dHBzOi8vbWFpbC5wcm90b24ubWUiIHN0eWxlPSJtc28tbGluZS1o\r\nZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsgbGluZS1oZWlnaHQ6IGluaGVyaXQ7IGNvbG9yOiAjNmQ0\r\nYWZmOyBmb250LXdlaWdodDogaW5oZXJpdDsgdGV4dC1kZWNvcmF0aW9uOiB1bmRlcmxpbmU7Ij5o\r\ndHRwczovL21haWwucHJvdG9uLm1lPC9hPiB0byBjaGVjayB0aGVtLiBUaGVzZSBub3RpZmljYXRp\r\nb25zIGNhbiBiZSB0dXJuZWQgb2ZmIGJ5IGxvZ2dpbmcgaW50byB5b3VyIGFjY291bnQgYW5kIGRp\r\nc2FibGluZyB0aGUgZGFpbHkgbm90aWZpY2F0aW9uIHNldHRpbmcuPC9wPiAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAg\r\nICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAg\r\nICAgICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAg\r\nICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAg\r\nICAgICAgICAgICAgIDwvdHI+PC90YWJsZT4NCiAgICAgICAgICAgICAgICA8IVtlbmRpZl0tLT4N\r\nCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwvdGFibGU+\r\nDQo8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRo\r\nPSIxMDAlIiBjbGFzcz0ibWNuQnV0dG9uQmxvY2siIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJv\r\ncmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxl\r\nLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyI+DQogICAgPHRib2R5IGNsYXNzPSJtY25CdXR0b25CbG9ja091dGVy\r\nIj4NCiAgICAgICAgPHRyPg0KICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBhbGlnbj0ibGVm\r\ndCIgY2xhc3M9Im1jbkJ1dHRvbkJsb2NrSW5uZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVs\r\nZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsgdGV4dC1hbGlnbjogY2VudGVyOyBwYWRkaW5nLWxlZnQ6IDMycHg7IHBh\r\nZGRpbmctcmlnaHQ6IDMycHg7IHBhZGRpbmctdG9wOiAwcHg7IHBhZGRpbmctYm90dG9tOiAzMnB4\r\nOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNl\r\nbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgY2xhc3M9Im1jbkJ1dHRvbkNvbnRlbnRDb250\r\nYWluZXIiIHN0eWxlPSJtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBw\r\ndDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBzZXBhcmF0ZTsiPg0KICAgICAgICAgICAgICAgICAgICA8\r\ndGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgPHRkIHZhbGlnbj0ibWlkZGxlIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6\r\nIGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGEgY2xhc3M9\r\nIm1jbkJ1dHRvbiBtYWlsaW5nLWJ1dHRvbiIgdGl0bGU9IkxvZyBpbiB0byBjaGVjayB5b3VyIG1l\r\nc3NhZ2VzIiBocmVmPSJodHRwczovL21haWwucHJvdG9uLm1lIiB0YXJnZXQ9Il9ibGFuayIgc3R5\r\nbGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBmb250LWZhbWlseTogQXJpYWws\r\nIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBwYWRkaW5nLWxlZnQ6IDMy\r\ncHg7IHBhZGRpbmctcmlnaHQ6IDMycHg7IHBhZGRpbmctdG9wOiAxMnB4OyBwYWRkaW5nLWJvdHRv\r\nbTogMTJweDsgZGlzcGxheTogYmxvY2s7IGZvbnQtd2VpZ2h0OiBub3JtYWw7IGxldHRlci1zcGFj\r\naW5nOiAxcHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgdGV4dC1hbGlnbjogY2VudGVyOyB0ZXh0LWRl\r\nY29yYXRpb246IG5vbmU7IGNvbG9yOiAjRkZGRkZGOyBib3JkZXItcmFkaXVzOiA4cHg7IGJhY2tn\r\ncm91bmQtY29sb3I6ICM2ZDRhZmY7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICA8aSBzdHlsZT0iZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7Zm9u\r\ndC1zaXplOiAxNnB4O3BhZGRpbmctbGVmdDogMzJweDtwYWRkaW5nLXJpZ2h0OiAzMnB4O3BhZGRp\r\nbmctdG9wOiAxMnB4O3BhZGRpbmctYm90dG9tOiAxMnB4O2Rpc3BsYXk6IGJsb2NrO2ZvbnQtd2Vp\r\nZ2h0OiBub3JtYWw7bGV0dGVyLXNwYWNpbmc6IDFweDtsaW5lLWhlaWdodDogMS41ZW07dGV4dC1h\r\nbGlnbjogY2VudGVyO3RleHQtZGVjb3JhdGlvbjogbm9uZTtjb2xvcjogI0ZGRkZGRjsiPiZuYnNw\r\nOzwvaT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4gc3R5bGU9IiI+T3BlbiBQ\r\ncm90b24gTWFpbDwvc3Bhbj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9hPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgIDwv\r\ndGFibGU+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgPC90cj4N\r\nCiAgICA8L3Rib2R5Pg0KPC90YWJsZT4NCjx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIw\r\nIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25UZXh0QmxvY2siIHN0eWxl\r\nPSJtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1s\r\nc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgPHRib2R5IGNsYXNz\r\nPSJtY25UZXh0QmxvY2tPdXRlciI+DQogICAgICAgIDx0cj4NCiAgICAgICAgICAgIDx0ZCB2YWxp\r\nZ249InRvcCIgY2xhc3M9Im1jblRleHRCbG9ja0lubmVyIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0\r\nLXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAg\r\nICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJsZWZ0IiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIw\r\nIiBjZWxscGFkZGluZz0iMCIgd2lkdGg9IjEwMCUiIHN0eWxlPSJ3aWR0aDoxMDAlOyI+PHRyPg0K\r\nICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgICAgICAgICAgPCEtLVtpZiBt\r\nc29dPg0KICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgd2lkdGg9IjYwMCIgc3R5bGU9\r\nIndpZHRoOjYwMHB4OyI+DQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAg\r\nICAgICAgPHRhYmxlIGFsaWduPSJsZWZ0IiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxs\r\nc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25UZXh0Q29udGVudENvbnRhaW5lciIg\r\nc3R5bGU9Im1heC13aWR0aDogMTAwJTsgbWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6\r\nIGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsiPg0KICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFz\r\ncz0ibWNuVGV4dENvbnRlbnQiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgd29yZC1icmVhazogYnJlYWstd29yZDsgY29sb3I6ICMwYzBjMTQ7IGZvbnQtZmFtaWx5OiBB\r\ncmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDE2cHg7IGxpbmUtaGVpZ2h0\r\nOiAxLjVlbTsgdGV4dC1hbGlnbjogbGVmdDsgcGFkZGluZy10b3A6IDhweDsgcGFkZGluZy1ib3R0\r\nb206IDEycHg7IHBhZGRpbmctcmlnaHQ6IDMycHg7IHBhZGRpbmctbGVmdDogMzJweDsiPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0ibWNuVGV4dENvbnRlbnRDb250\r\nYWluZXIiIHN0eWxlPSJwYWRkaW5nOiAwcHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5\r\nOyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyBjb2xvcjogIzBjMGMxNDsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMt\r\nc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0ZXh0LWFsaWduOiBs\r\nZWZ0OyBtYXJnaW46IDEycHggMHB4OyI+PGEgdGFyZ2V0PSJfYmxhbmsiIGhyZWY9Imh0dHBzOi8v\r\ncHJvdG9uLm1lL3N1cHBvcnQvbm90aWZpY2F0aW9uLWVtYWlsIiBzdHlsZT0ibXNvLWxpbmUtaGVp\r\nZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRl\r\neHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGxpbmUtaGVpZ2h0OiBpbmhlcml0OyBjb2xvcjogIzZkNGFm\r\nZjsgZm9udC13ZWlnaHQ6IGluaGVyaXQ7IHRleHQtZGVjb3JhdGlvbjogdW5kZXJsaW5lOyI+TGVh\r\ncm4gbW9yZSBhYm91dCBub3RpZmljYXRpb24gZW1haWxzPC9hPjwvcD48cCBjbGFzcz0ibWNuVGV4\r\ndENvbnRlbnRDb250YWluZXIiIHN0eWxlPSJwYWRkaW5nOiAwcHg7IG1zby1saW5lLWhlaWdodC1y\r\ndWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyBjb2xvcjogIzBjMGMxNDsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2\r\nZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyB0\r\nZXh0LWFsaWduOiBsZWZ0OyBtYXJnaW46IDEycHggMHB4OyI+VGhhbmsgeW91LDxicj5UaGUgUHJv\r\ndG9uIFRlYW08L3A+ICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAg\r\nICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAg\r\nICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAg\r\nICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAgICAgPC90cj48L3RhYmxlPg0KICAg\r\nICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgPC90\r\ncj4NCiAgICA8L3Rib2R5Pg0KPC90YWJsZT4NCiAgICA8L3RkPg0KPC90cj48dHI+DQogICAgPHRk\r\nIHZhbGlnbj0idG9wIiBpZD0idGVtcGxhdGVGb290ZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQt\r\ncnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgYmFja2dyb3VuZC1jb2xvcjogI2ZmZmZmZjsgYmFja2dyb3VuZC1p\r\nbWFnZTogbm9uZTsgYmFja2dyb3VuZC1yZXBlYXQ6IG5vLXJlcGVhdDsgYmFja2dyb3VuZC1wb3Np\r\ndGlvbjogY2VudGVyOyBiYWNrZ3JvdW5kLXNpemU6IGNvdmVyOyBib3JkZXItdG9wOiAwOyBib3Jk\r\nZXItYm90dG9tOiAwOyBwYWRkaW5nLXRvcDogMTZweDsgcGFkZGluZy1ib3R0b206IDE2cHg7IGJv\r\ncmRlci1yYWRpdXM6IDAgMCAxNnB4IDE2cHg7Ij4NCiAgICAgICAgPHRhYmxlIGJvcmRlcj0iMCIg\r\nY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jbkRp\r\ndmlkZXJCbG9jayIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xs\r\nYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHRh\r\nYmxlLWxheW91dDogZml4ZWQ7Ij4NCiAgICA8dGJvZHkgY2xhc3M9Im1jbkRpdmlkZXJCbG9ja091\r\ndGVyIj4NCiAgICAgICAgPHRyPg0KICAgICAgICAgICAgPHRkIGNsYXNzPSJtY25EaXZpZGVyQmxv\r\nY2tJbm5lciIgc3R5bGU9Im1pbi13aWR0aDogMTAwJTsgcGFkZGluZzogMCAzMnB4IDE2cHggMzJw\r\neDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICA8\r\ndGFibGUgY2xhc3M9Im1jbkRpdmlkZXJDb250ZW50IiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIw\r\nIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7IGJv\r\ncmRlci10b3A6IDFweCBzb2xpZCAjRjVGNEYyOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBt\r\nc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAg\r\nICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgPHRkIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTog\r\nZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3Bhbj48L3Nw\r\nYW4+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAg\r\nICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8IS0tDQogICAgICAgICAgICAgICAgPHRkIGNs\r\nYXNzPSJtY25EaXZpZGVyQmxvY2tJbm5lciIgc3R5bGU9InBhZGRpbmc6IDMycHg7Ij4NCiAgICAg\r\nICAgICAgICAgICA8aHIgY2xhc3M9Im1jbkRpdmlkZXJDb250ZW50IiBzdHlsZT0iYm9yZGVyLWJv\r\ndHRvbS1jb2xvcjpub25lOyBib3JkZXItbGVmdC1jb2xvcjpub25lOyBib3JkZXItcmlnaHQtY29s\r\nb3I6bm9uZTsgYm9yZGVyLWJvdHRvbS13aWR0aDowOyBib3JkZXItbGVmdC13aWR0aDowOyBib3Jk\r\nZXItcmlnaHQtd2lkdGg6MDsgbWFyZ2luLXRvcDowOyBtYXJnaW4tcmlnaHQ6MDsgbWFyZ2luLWJv\r\ndHRvbTowOyBtYXJnaW4tbGVmdDowOyIgLz4NCiAgICAgICAgICAgICAgICAtLT4NCiAgICAgICAg\r\nICAgIDwvdGQ+DQogICAgICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwvdGFibGU+DQo8dGFibGUg\r\nYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBj\r\nbGFzcz0ibWNuVGV4dEJsb2NrIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFw\r\nc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBw\r\ndDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNuVGV4dEJsb2NrT3V0ZXIiPg0KICAgIDx0cj4N\r\nCiAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dEJsb2NrSW5uZXIiIHN0eWxl\r\nPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgPCEtLVtp\r\nZiBtc29dPg0KICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2Vs\r\nbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIiB3aWR0aD0iMTAwJSIgc3R5bGU9IndpZHRoOjEw\r\nMCU7Ij4NCiAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0K\r\nICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiB3\r\naWR0aD0iNjAwIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij4NCiAgICAgICAgICAgIDwhW2VuZGlmXS0t\r\nPg0KICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRp\r\nbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRDb250ZW50\r\nQ29udGFpbmVyIiBzdHlsZT0ibWF4LXdpZHRoOiAxMDAlOyBtaW4td2lkdGg6IDEwMCU7IGJvcmRl\r\nci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJz\r\ncGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAg\r\nIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4\r\ndENvbnRlbnQiIHN0eWxlPSJwYWRkaW5nLXRvcDogMjRweDsgcGFkZGluZy1yaWdodDogMzJweDsg\r\ncGFkZGluZy1ib3R0b206IDA7IHBhZGRpbmctbGVmdDogMzJweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1\r\nbGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IHdvcmQtYnJlYWs6IGJyZWFrLXdvcmQ7IGNvbG9yOiAjNzA2ZDZiOyBm\r\nb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNHB4\r\nOyBsaW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGNlbnRlcjsiPkNvbm5lY3Qgd2l0aCB0\r\naGUgUHJvdG9uJm5ic3A7Y29tbXVuaXR5PC90ZD4NCiAgICAgICAgICAgICAgICA8L3RyPg0KICAg\r\nICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAg\r\nPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgIDwhW2VuZGlmXS0t\r\nPg0KDQogICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICA8L3RyPg0KICAgICAg\r\nICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICA8L3RkPg0K\r\nICAgIDwvdHI+DQogICAgPC90Ym9keT4NCjwvdGFibGU+DQoNCiAgICAgICAgPHRhYmxlIGJvcmRl\r\ncj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9\r\nIm1jbkZvbGxvd0Jsb2NrIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6\r\nIGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsiPg0KICAgICAgICAgICAgPHRib2R5IGNsYXNzPSJtY25Gb2xsb3dCbG9ja091dGVyIj4NCiAg\r\nICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVy\r\nIiB2YWxpZ249InRvcCIgY2xhc3M9Im1jbkZvbGxvd0Jsb2NrSW5uZXIiIHN0eWxlPSJwYWRkaW5n\r\nOiAxNnB4IDE2cHggMDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAg\r\nICAgICAgICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxs\r\nc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50Q29udGFpbmVy\r\nIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28t\r\ndGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGFsaWduPSJj\r\nZW50ZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxw\r\nYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25Gb2xsb3dD\r\nb250ZW50IiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNl\r\nOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGFsaWduPSJjZW50\r\nZXIiIHZhbGlnbj0idG9wIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1t\r\ncy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxz\r\ncGFjaW5nPSIwIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxz\r\ncGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249InRvcCIgc3R5bGU9\r\nIm1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8IS0t\r\nW2lmIG1zb10+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIw\r\nIiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAiPg0KICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCg0KICAgICAgICA8IS0tW2lmIG1zb10+DQog\r\nICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249InRvcCI+DQogICAgICAgIDwhW2VuZGlm\r\nXS0tPg0KICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIwIiBjZWxscGFkZGlu\r\nZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHN0eWxlPSJkaXNwbGF5OiBpbmxpbmU7IGJvcmRlci1jb2xs\r\nYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTog\r\nMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyI+DQogICAgICAgICAgICA8dGJvZHk+DQogICAgICAgICAgICA8dHI+DQogICAgICAg\r\nICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuRm9sbG93Q29udGVudEl0ZW1Db250\r\nYWluZXIiIHN0eWxlPSJwYWRkaW5nLXRvcDogOHB4OyBwYWRkaW5nLXJpZ2h0OiA0cHg7IHBhZGRp\r\nbmctYm90dG9tOiA4cHg7IHBhZGRpbmctbGVmdDogNHB4OyBtc28tbGluZS1oZWlnaHQtcnVsZTog\r\nZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFk\r\nanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBjZWxs\r\ncGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuRm9sbG93\r\nQ29udGVudEl0ZW0iIHN0eWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUt\r\nbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6\r\nIDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249Im1pZGRsZSIgc3R5\r\nbGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRk\r\naW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IiIgc3R5bGU9ImJvcmRlci1jb2xsYXBzZTog\r\nY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAt\r\nbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0ibWlkZGxlIiB3aWR0\r\naD0iMzUiIGNsYXNzPSJtY25Gb2xsb3dJY29uQ29udGVudCIgc3R5bGU9Im1zby1saW5lLWhlaWdo\r\ndC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyI+DQoNCiAgICAgICAgPGEgaHJlZj0iaHR0cHM6Ly90d2l0dGVy\r\nLmNvbS9Qcm90b25Qcml2YWN5IiB0YXJnZXQ9Il9ibGFuayIgc3R5bGU9Im1zby1saW5lLWhlaWdo\r\ndC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyBsaW5lLWhlaWdodDogaW5oZXJpdDsiPjxpbWcgc3JjPSJjaWQ6\r\nODUzZTBkZTk3NjRhYThiZDYxZDBAbWFpbC5wcm90b24ubWUiIGFsdD0iVHdpdHRlciIgaGVpZ2h0\r\nPSIzNSIgd2lkdGg9IjM1IiBjbGFzcz0ic29jaWFsLWljb24iIHN0eWxlPSJkaXNwbGF5OiBibG9j\r\nazsgYm9yZGVyOiAwOyBoZWlnaHQ6IGF1dG87IG91dGxpbmU6IG5vbmU7IHRleHQtZGVjb3JhdGlv\r\nbjogdW5kZXJsaW5lOyAtbXMtaW50ZXJwb2xhdGlvbi1tb2RlOiBiaWN1YmljOyBmb250LWZhbWls\r\neTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxMnB4OyBsaW5lLWhl\r\naWdodDogMS41ZW07IGNvbG9yOiAjNzA2ZDZiOyBmb250LXdlaWdodDogbm9ybWFsOyI+PC9hPg0K\r\nDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\nL3RhYmxlPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAg\r\nICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAg\r\nICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAg\r\nICAgPC90cj4NCiAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgIDwvdGFibGU+DQogICAgICAg\r\nIDwhLS1baWYgbXNvXT4NCiAgICAgICAgPC90ZD4NCiAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAg\r\nICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJ0\r\nb3AiPg0KICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIi\r\nIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBzdHlsZT0iZGlzcGxh\r\neTogaW5saW5lOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAw\r\ncHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13\r\nZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgPHRib2R5Pg0KICAg\r\nICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1j\r\nbkZvbGxvd0NvbnRlbnRJdGVtQ29udGFpbmVyIiBzdHlsZT0icGFkZGluZy10b3A6IDhweDsgcGFk\r\nZGluZy1yaWdodDogNHB4OyBwYWRkaW5nLWJvdHRvbTogOHB4OyBwYWRkaW5nLWxlZnQ6IDRweDsg\r\nbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAg\r\nPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0i\r\nMTAwJSIgY2xhc3M9Im1jbkZvbGxvd0NvbnRlbnRJdGVtIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNl\r\nOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7\r\nIC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgYWxpZ249ImNlbnRl\r\nciIgdmFsaWduPSJtaWRkbGUiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRl\r\nciIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIiIHN0\r\neWxlPSJib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1z\r\nby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQt\r\ndGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVy\r\nIiB2YWxpZ249Im1pZGRsZSIgd2lkdGg9IjM1IiBjbGFzcz0ibWNuRm9sbG93SWNvbkNvbnRlbnQi\r\nIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KDQogICAgICAgIDxh\r\nIGhyZWY9Imh0dHBzOi8vcmVkZGl0LmNvbS9yL1Byb3Rvbk1haWwiIHRhcmdldD0iX2JsYW5rIiBz\r\ndHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IGxpbmUtaGVpZ2h0OiBpbmhl\r\ncml0OyI+PGltZyBzcmM9ImNpZDo5MWU5YmQyNWVmZjIyM2NlNmY0Y0BtYWlsLnByb3Rvbi5tZSIg\r\nYWx0PSJSZWRkaXQiIGhlaWdodD0iMzUiIHdpZHRoPSIzNSIgY2xhc3M9InNvY2lhbC1pY29uIiBz\r\ndHlsZT0iZGlzcGxheTogYmxvY2s7IGJvcmRlcjogMDsgaGVpZ2h0OiBhdXRvOyBvdXRsaW5lOiBu\r\nb25lOyB0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTsgLW1zLWludGVycG9sYXRpb24tbW9kZTog\r\nYmljdWJpYzsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQt\r\nc2l6ZTogMTJweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyBjb2xvcjogIzcwNmQ2YjsgZm9udC13ZWln\r\naHQ6IG5vcm1hbDsiPjwvYT4NCg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\nL3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAg\r\nICAgPC90ZD4NCiAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAg\r\nICA8L3RhYmxlPg0KICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgIDwvdGQ+DQogICAgICAg\r\nIDwhW2VuZGlmXS0tPg0KDQogICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgPHRkIGFsaWdu\r\nPSJjZW50ZXIiIHZhbGlnbj0idG9wIj4NCiAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgIDx0\r\nYWJsZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2lu\r\nZz0iMCIgc3R5bGU9ImRpc3BsYXk6IGlubGluZTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsg\r\nbXNvLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNp\r\nemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAg\r\nICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICA8dGQgdmFs\r\naWduPSJ0b3AiIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50SXRlbUNvbnRhaW5lciIgc3R5bGU9InBh\r\nZGRpbmctdG9wOiA4cHg7IHBhZGRpbmctcmlnaHQ6IDRweDsgcGFkZGluZy1ib3R0b206IDhweDsg\r\ncGFkZGluZy1sZWZ0OiA0cHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4\r\ndC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQog\r\nICAgICAgICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxs\r\nc3BhY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50SXRlbSIgc3R5\r\nbGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNv\r\nLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+\r\nDQogICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0ibWlkZGxlIiBzdHlsZT0ibXNvLWxpbmUtaGVp\r\nZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRl\r\neHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFj\r\naW5nPSIwIiB3aWR0aD0iIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRh\r\nYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJtaWRkbGUiIHdpZHRoPSIzNSIgY2xhc3M9Im1j\r\nbkZvbGxvd0ljb25Db250ZW50IiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7\r\nIC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7Ij4NCg0KICAgICAgICA8YSBocmVmPSJodHRwczovL3d3dy5saW5rZWRpbi5jb20vY29tcGFu\r\neS9wcm90b25wcml2YWN5LyIgdGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQt\r\ncnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgbGluZS1oZWlnaHQ6IGluaGVyaXQ7Ij48aW1nIHNyYz0iY2lkOmUy\r\nMDM1MWJkYTlhNjc1N2NkMTY1QG1haWwucHJvdG9uLm1lIiBhbHQ9IkxpbmtlZEluIiBoZWlnaHQ9\r\nIjM1IiB3aWR0aD0iMzUiIGNsYXNzPSJzb2NpYWwtaWNvbiIgc3R5bGU9ImRpc3BsYXk6IGJsb2Nr\r\nOyBib3JkZXI6IDA7IGhlaWdodDogYXV0bzsgb3V0bGluZTogbm9uZTsgdGV4dC1kZWNvcmF0aW9u\r\nOiB1bmRlcmxpbmU7IC1tcy1pbnRlcnBvbGF0aW9uLW1vZGU6IGJpY3ViaWM7IGZvbnQtZmFtaWx5\r\nOiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDEycHg7IGxpbmUtaGVp\r\nZ2h0OiAxLjVlbTsgY29sb3I6ICM3MDZkNmI7IGZvbnQtd2VpZ2h0OiBub3JtYWw7Ij48L2E+DQoN\r\nCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwv\r\ndGFibGU+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAg\r\nICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAg\r\nICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAg\r\nICA8L3RyPg0KICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgPC90YWJsZT4NCiAgICAgICAg\r\nPCEtLVtpZiBtc29dPg0KICAgICAgICA8L3RkPg0KICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAg\r\nICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249InRv\r\ncCI+DQogICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIg\r\nYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHN0eWxlPSJkaXNwbGF5\r\nOiBpbmxpbmU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBw\r\ndDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdl\r\nYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICA8dGJvZHk+DQogICAg\r\nICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNu\r\nRm9sbG93Q29udGVudEl0ZW1Db250YWluZXIiIHN0eWxlPSJwYWRkaW5nLXRvcDogOHB4OyBwYWRk\r\naW5nLXJpZ2h0OiA0cHg7IHBhZGRpbmctYm90dG9tOiA4cHg7IHBhZGRpbmctbGVmdDogNHB4OyBt\r\nc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICA8\r\ndGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIx\r\nMDAlIiBjbGFzcz0ibWNuRm9sbG93Q29udGVudEl0ZW0iIHN0eWxlPSJib3JkZXItY29sbGFwc2U6\r\nIGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgICAg\r\nICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVy\r\nIiB2YWxpZ249Im1pZGRsZSIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAt\r\nbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAl\r\nOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2VudGVy\r\nIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIgd2lkdGg9IiIgc3R5\r\nbGU9ImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNv\r\nLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10\r\nZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICA8dGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGFsaWduPSJjZW50ZXIi\r\nIHZhbGlnbj0ibWlkZGxlIiB3aWR0aD0iMzUiIGNsYXNzPSJtY25Gb2xsb3dJY29uQ29udGVudCIg\r\nc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQoNCiAgICAgICAgPGEg\r\naHJlZj0iaHR0cHM6Ly9mYWNlYm9vay5jb20vUHJvdG9uIiB0YXJnZXQ9Il9ibGFuayIgc3R5bGU9\r\nIm1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyBsaW5lLWhlaWdodDogaW5oZXJpdDsi\r\nPjxpbWcgc3JjPSJjaWQ6OTFiMDZhNmQyNjI3MDBkMjlhNWNAbWFpbC5wcm90b24ubWUiIGFsdD0i\r\nRmFjZWJvb2siIGhlaWdodD0iMzUiIHdpZHRoPSIzNSIgY2xhc3M9InNvY2lhbC1pY29uIiBzdHls\r\nZT0iZGlzcGxheTogYmxvY2s7IGJvcmRlcjogMDsgaGVpZ2h0OiBhdXRvOyBvdXRsaW5lOiBub25l\r\nOyB0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTsgLW1zLWludGVycG9sYXRpb24tbW9kZTogYmlj\r\ndWJpYzsgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6\r\nZTogMTJweDsgbGluZS1oZWlnaHQ6IDEuNWVtOyBjb2xvcjogIzcwNmQ2YjsgZm9udC13ZWlnaHQ6\r\nIG5vcm1hbDsiPjwvYT4NCg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Rk\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAg\r\nIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAg\r\nPC90ZD4NCiAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICA8\r\nL3RhYmxlPg0KICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgIDwvdGQ+DQogICAgICAgIDwh\r\nW2VuZGlmXS0tPg0KDQogICAgICAgIDwhLS1baWYgbXNvXT4NCiAgICAgICAgPHRkIGFsaWduPSJj\r\nZW50ZXIiIHZhbGlnbj0idG9wIj4NCiAgICAgICAgPCFbZW5kaWZdLS0+DQogICAgICAgIDx0YWJs\r\nZSBhbGlnbj0iY2VudGVyIiBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0i\r\nMCIgc3R5bGU9ImRpc3BsYXk6IGlubGluZTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNv\r\nLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAg\r\nICAgIDx0Ym9keT4NCiAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICA8dGQgdmFsaWdu\r\nPSJ0b3AiIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50SXRlbUNvbnRhaW5lciIgc3R5bGU9InBhZGRp\r\nbmctdG9wOiA4cHg7IHBhZGRpbmctcmlnaHQ6IDRweDsgcGFkZGluZy1ib3R0b206IDhweDsgcGFk\r\nZGluZy1sZWZ0OiA0cHg7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAg\r\nICAgICAgICAgICAgICAgIDx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3Bh\r\nY2luZz0iMCIgd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25Gb2xsb3dDb250ZW50SXRlbSIgc3R5bGU9\r\nImJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRh\r\nYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgICAgICAgICA8dGJvZHk+DQog\r\nICAgICAgICAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0ibWlkZGxlIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0\r\nLXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRh\r\nYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5n\r\nPSIwIiB3aWR0aD0iIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxl\r\nLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0\r\nOiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\ndGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJtaWRkbGUiIHdpZHRoPSIzNSIgY2xhc3M9Im1jbkZv\r\nbGxvd0ljb25Db250ZW50IiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1t\r\ncy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIj4NCg0KICAgICAgICA8YSBocmVmPSJodHRwczovL2luc3RhZ3JhbS5jb20vcHJvdG9ucHJpdmFj\r\neSIgdGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgbGluZS1oZWlnaHQ6IGluaGVyaXQ7Ij48aW1nIHNyYz0iY2lkOjlhNTkzNzNiNzdmNDNkOWNk\r\nNjU3QG1haWwucHJvdG9uLm1lIiBhbHQ9Ikluc3RhZ3JhbSIgaGVpZ2h0PSIzNSIgd2lkdGg9IjM1\r\nIiBjbGFzcz0ic29jaWFsLWljb24iIHN0eWxlPSJkaXNwbGF5OiBibG9jazsgYm9yZGVyOiAwOyBo\r\nZWlnaHQ6IGF1dG87IG91dGxpbmU6IG5vbmU7IHRleHQtZGVjb3JhdGlvbjogdW5kZXJsaW5lOyAt\r\nbXMtaW50ZXJwb2xhdGlvbi1tb2RlOiBiaWN1YmljOyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZl\r\ndGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxMnB4OyBsaW5lLWhlaWdodDogMS41ZW07IGNv\r\nbG9yOiAjNzA2ZDZiOyBmb250LXdlaWdodDogbm9ybWFsOyI+PC9hPg0KDQogICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8\r\nL3Rib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3Ry\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgICAgICAgICAgICAg\r\nPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgPC90cj4NCiAgICAg\r\nICAgICAgIDwvdGJvZHk+DQogICAgICAgIDwvdGFibGU+DQogICAgICAgIDwhLS1baWYgbXNvXT4N\r\nCiAgICAgICAgPC90ZD4NCiAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgPCEtLVtpZiBt\r\nc29dPg0KICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJ0b3AiPg0KICAgICAgICA8\r\nIVtlbmRpZl0tLT4NCiAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2Vs\r\nbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiBzdHlsZT0iZGlzcGxheTogaW5saW5lOyBib3Jk\r\nZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1y\r\nc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXpl\r\nLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgPHRyPg0K\r\nICAgICAgICAgICAgICAgIDx0ZCB2YWxpZ249InRvcCIgY2xhc3M9Im1jbkZvbGxvd0NvbnRlbnRJ\r\ndGVtQ29udGFpbmVyIiBzdHlsZT0icGFkZGluZy10b3A6IDhweDsgcGFkZGluZy1yaWdodDogNHB4\r\nOyBwYWRkaW5nLWJvdHRvbTogOHB4OyBwYWRkaW5nLWxlZnQ6IDRweDsgbXNvLWxpbmUtaGVpZ2h0\r\nLXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQt\r\nc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICAgICAgPHRhYmxlIGJvcmRlcj0i\r\nMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1j\r\nbkZvbGxvd0NvbnRlbnRJdGVtIiBzdHlsZT0iYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNv\r\nLXRhYmxlLWxzcGFjZTogMHB0OyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUt\r\nYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAg\r\nICAgICAgICAgICAgICAgIDx0Ym9keT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0cj4NCiAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJtaWRk\r\nbGUiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVyPSIwIiBj\r\nZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIiIHN0eWxlPSJib3JkZXItY29s\r\nbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6\r\nIDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRib2R5Pg0K\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBhbGlnbj0iY2VudGVyIiB2YWxpZ249Im1pZGRs\r\nZSIgd2lkdGg9IjM1IiBjbGFzcz0ibWNuRm9sbG93SWNvbkNvbnRlbnQiIHN0eWxlPSJtc28tbGlu\r\nZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJr\r\naXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KDQogICAgICAgIDxhIGhyZWY9Imh0dHBzOi8v\r\ncHJvdG9uLm1lL2Jsb2ciIHRhcmdldD0iX2JsYW5rIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1\r\nbGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6\r\nZS1hZGp1c3Q6IDEwMCU7IGxpbmUtaGVpZ2h0OiBpbmhlcml0OyI+PGltZyBzcmM9ImNpZDo2MDg0\r\nYTgxNjMyZTcyNzQ4OTVhZUBtYWlsLnByb3Rvbi5tZSIgYWx0PSJCbG9nIiBoZWlnaHQ9IjM1IiB3\r\naWR0aD0iMzUiIGNsYXNzPSJzb2NpYWwtaWNvbiIgc3R5bGU9ImRpc3BsYXk6IGJsb2NrOyBib3Jk\r\nZXI6IDA7IGhlaWdodDogYXV0bzsgb3V0bGluZTogbm9uZTsgdGV4dC1kZWNvcmF0aW9uOiB1bmRl\r\ncmxpbmU7IC1tcy1pbnRlcnBvbGF0aW9uLW1vZGU6IGJpY3ViaWM7IGZvbnQtZmFtaWx5OiBBcmlh\r\nbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDEycHg7IGxpbmUtaGVpZ2h0OiAx\r\nLjVlbTsgY29sb3I6ICM3MDZkNmI7IGZvbnQtd2VpZ2h0OiBub3JtYWw7Ij48L2E+DQoNCiAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGFibGU+\r\nDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICAgICAg\r\nICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAg\r\nICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICA8L3Ry\r\nPg0KICAgICAgICAgICAgPC90Ym9keT4NCiAgICAgICAgPC90YWJsZT4NCiAgICAgICAgPCEtLVtp\r\nZiBtc29dPg0KICAgICAgICA8L3RkPg0KICAgICAgICA8IVtlbmRpZl0tLT4NCg0KDQogICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Rk\r\nPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAg\r\nICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGJvZHk+DQogICAgICAgICAgICAgICAgICAgICAg\r\nICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAgICAgIDwv\r\ndHI+DQogICAgICAgICAgICA8L3Rib2R5Pg0KICAgICAgICA8L3RhYmxlPg0KDQo8dGFibGUgYm9y\r\nZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFz\r\ncz0ibWNuVGV4dEJsb2NrIiBzdHlsZT0ibWluLXdpZHRoOiAxMDAlOyBib3JkZXItY29sbGFwc2U6\r\nIGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBwdDsg\r\nLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNuVGV4dEJsb2NrT3V0ZXIiPg0KICAgIDx0cj4NCiAg\r\nICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dEJsb2NrSW5uZXIiIHN0eWxlPSJt\r\nc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7\r\nIC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgICAgICAgICAgPCEtLVtpZiBt\r\nc29dPg0KICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHNw\r\nYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIiB3aWR0aD0iMTAwJSIgc3R5bGU9IndpZHRoOjEwMCU7\r\nIj4NCiAgICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAg\r\nICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiB3aWR0\r\naD0iNjAwIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij4NCiAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0K\r\nICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9\r\nIjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jblRleHRDb250ZW50Q29u\r\ndGFpbmVyIiBzdHlsZT0ibWF4LXdpZHRoOiAxMDAlOyBtaW4td2lkdGg6IDEwMCU7IGJvcmRlci1j\r\nb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFj\r\nZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRq\r\ndXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAgICAgICAgICAgIDx0\r\ncj4NCiAgICAgICAgICAgICAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNuVGV4dENv\r\nbnRlbnQiIHN0eWxlPSJwYWRkaW5nLXRvcDogMjRweDsgcGFkZGluZy1yaWdodDogMzJweDsgcGFk\r\nZGluZy1ib3R0b206IDA7IHBhZGRpbmctbGVmdDogMzJweDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6\r\nIGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1h\r\nZGp1c3Q6IDEwMCU7IHdvcmQtYnJlYWs6IGJyZWFrLXdvcmQ7IGNvbG9yOiAjNzA2ZDZiOyBmb250\r\nLWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNHB4OyBs\r\naW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGNlbnRlcjsiPg0KICAgICAgICAgICAgICAg\r\nICAgICAgICAgWW91IGFyZSByZWNlaXZpbmcgdGhpcyBlbWFpbCBiZWNhdXNlIHlvdSBzZXQgYSBu\r\nb3RpZmljYXRpb24gZm9yIG5ldyBtZXNzYWdlcyByZWNlaXZlZCBpbiB5b3VyIFByb3RvbiBNYWls\r\nIGluYm94LiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICA8YSBocmVmPSJodHRwczovL3Byb3Rvbi5tZS9zdXBwb3J0L25vdGlmaWNhdGlvbi1lbWFpbCIg\r\ndGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1z\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsg\r\nbGluZS1oZWlnaHQ6IGluaGVyaXQ7IGNvbG9yOiAjNzA2ZDZiOyBmb250LXdlaWdodDogbm9ybWFs\r\nOyB0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTsiPkxlYXJuIG1vcmUgYWJvdXQgbm90aWZpY2F0\r\naW9uIGVtYWlsczwvYT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg\r\nICAgPC90ZD4NCiAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgIDwvdGJvZHk+\r\nDQogICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAg\r\nICAgICAgPC90ZD4NCiAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KDQogICAgICAgICAgICA8IS0t\r\nW2lmIG1zb10+DQogICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgPC90YWJsZT4NCiAgICAg\r\nICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICA8L3RkPg0KICAgIDwvdHI+DQogICAgPC90Ym9k\r\neT4NCjwvdGFibGU+DQo8dGFibGUgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNp\r\nbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0ibWNuVGV4dEJsb2NrIiBzdHlsZT0ibWluLXdpZHRo\r\nOiAxMDAlOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7\r\nIG1zby10YWJsZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJr\r\naXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsiPg0KICAgIDx0Ym9keSBjbGFzcz0ibWNuVGV4dEJs\r\nb2NrT3V0ZXIiPg0KICAgIDx0cj4NCiAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBjbGFzcz0ibWNu\r\nVGV4dEJsb2NrSW5uZXIiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1z\r\nLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsi\r\nPg0KICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJj\r\nZW50ZXIiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIiB3aWR0aD0i\r\nMTAwJSIgc3R5bGU9IndpZHRoOjEwMCU7Ij4NCiAgICAgICAgICAgICAgICA8dHI+DQogICAgICAg\r\nICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAgICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAg\r\nICAgPHRkIHZhbGlnbj0idG9wIiB3aWR0aD0iNjAwIiBzdHlsZT0id2lkdGg6NjAwcHg7Ij4NCiAg\r\nICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgPHRhYmxlIGFsaWduPSJjZW50ZXIi\r\nIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNlbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIg\r\nY2xhc3M9Im1jblRleHRDb250ZW50Q29udGFpbmVyIiBzdHlsZT0ibWF4LXdpZHRoOiAxMDAlOyBt\r\naW4td2lkdGg6IDEwMCU7IGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3Bh\r\nY2U6IDBwdDsgbXNvLXRhYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAw\r\nJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPHRi\r\nb2R5Pg0KICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgPHRkIHZhbGln\r\nbj0idG9wIiBjbGFzcz0ibWNuVGV4dENvbnRlbnQiIHN0eWxlPSJwYWRkaW5nLXRvcDogMTZweDsg\r\ncGFkZGluZy1yaWdodDogMzJweDsgcGFkZGluZy1ib3R0b206IDA7IHBhZGRpbmctbGVmdDogMzJw\r\neDsgbXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAx\r\nMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IHdvcmQtYnJlYWs6IGJyZWFrLXdv\r\ncmQ7IGNvbG9yOiAjNzA2ZDZiOyBmb250LWZhbWlseTogQXJpYWwsIEhlbHZldGljYSwgc2Fucy1z\r\nZXJpZjsgZm9udC1zaXplOiAxNHB4OyBsaW5lLWhlaWdodDogMS41ZW07IHRleHQtYWxpZ246IGNl\r\nbnRlcjsiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPGEgZGF0YS11bnN1YnNjcmliZS1saW5r\r\nPSJwcm90b24ubWUiIHJlbD0ibm9vcGVuZXIgbm9yZWZlcnJlciIgaHJlZj0iaHR0cHM6Ly9hY2Nv\r\ndW50LnByb3Rvbi5tZS91bnN1YnNjcmliZS82NCNleUowZVhBaU9pSktWMVFpTENKaGJHY2lPaUpJ\r\nVXpJMU5pSjkuZXlKcFlYUWlPakUzTmpBME16a3hOVEl1TmpjME9EZ3lPU3dpWlhod0lqb3hOell6\r\nTURNeE1UVXlMQ0pWYzJWeVNVUWlPaUpVU1ZOYVdFUjRjR1pTUVZOWFV6ZEVlbGRNVjNkbklpd2lV\r\nMk52Y0dVaU9qazRNekEwTENKcGMzTWlPaUp3Y205MGIyNHViV1VpTENKaGRXUWlPaUp3Y205MGIy\r\nNHViV1VpTENKVWVYQmxJam94ZlEuT1Rhcm1YNlVyMFIyXzdvWTlGWGxJNkhVWnBSNjVMeHZESWQ5\r\ndjc2SEpHUSIgdGFyZ2V0PSJfYmxhbmsiIHN0eWxlPSJtc28tbGluZS1oZWlnaHQtcnVsZTogZXhh\r\nY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgbGluZS1oZWlnaHQ6IGluaGVyaXQ7IGNvbG9yOiAjNzA2ZDZiOyBmb250LXdlaWdo\r\ndDogbm9ybWFsOyB0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTsiPlVwZGF0ZSB5b3VyIGVtYWls\r\nIHByZWZlcmVuY2VzIG9yIHVuc3Vic2NyaWJlPC9hPg0KICAgICAgICAgICAgICAgICAgICA8L3Rk\r\nPg0KICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgPC90Ym9keT4NCiAgICAg\r\nICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICA8\r\nL3RkPg0KICAgICAgICAgICAgPCFbZW5kaWZdLS0+DQoNCiAgICAgICAgICAgIDwhLS1baWYgbXNv\r\nXT4NCiAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAg\r\nPCFbZW5kaWZdLS0+DQogICAgICAgIDwvdGQ+DQogICAgPC90cj4NCiAgICA8L3Rib2R5Pg0KPC90\r\nYWJsZT4NCjx0YWJsZSBib3JkZXI9IjAiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCIg\r\nd2lkdGg9IjEwMCUiIGNsYXNzPSJtY25UZXh0QmxvY2siIHN0eWxlPSJtaW4td2lkdGg6IDEwMCU7\r\nIGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7IG1zby10YWJsZS1sc3BhY2U6IDBwdDsgbXNvLXRh\r\nYmxlLXJzcGFjZTogMHB0OyAtbXMtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0\r\nLXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAgPHRib2R5IGNsYXNzPSJtY25UZXh0QmxvY2tPdXRl\r\nciI+DQogICAgPHRyPg0KICAgICAgICA8dGQgdmFsaWduPSJ0b3AiIGNsYXNzPSJtY25UZXh0Qmxv\r\nY2tJbm5lciIgc3R5bGU9Im1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+DQogICAg\r\nICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIg\r\nYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAiIHdpZHRoPSIxMDAlIiBz\r\ndHlsZT0id2lkdGg6MTAwJTsiPg0KICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgIDwh\r\nW2VuZGlmXS0tPg0KDQogICAgICAgICAgICA8IS0tW2lmIG1zb10+DQogICAgICAgICAgICA8dGQg\r\ndmFsaWduPSJ0b3AiIHdpZHRoPSI2MDAiIHN0eWxlPSJ3aWR0aDo2MDBweDsiPg0KICAgICAgICAg\r\nICAgPCFbZW5kaWZdLS0+DQogICAgICAgICAgICA8dGFibGUgYWxpZ249ImNlbnRlciIgYm9yZGVy\r\nPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHdpZHRoPSIxMDAlIiBjbGFzcz0i\r\nbWNuVGV4dENvbnRlbnRDb250YWluZXIiIHN0eWxlPSJtYXgtd2lkdGg6IDEwMCU7IG1pbi13aWR0\r\naDogMTAwJTsgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsgbXNvLXRhYmxlLWxzcGFjZTogMHB0\r\nOyBtc28tdGFibGUtcnNwYWNlOiAwcHQ7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Vi\r\na2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7Ij4NCiAgICAgICAgICAgICAgICA8dGJvZHk+DQog\r\nICAgICAgICAgICAgICAgPHRyPg0KICAgICAgICAgICAgICAgICAgICA8dGQgdmFsaWduPSJ0b3Ai\r\nIGNsYXNzPSJtY25UZXh0Q29udGVudCIgc3R5bGU9InBhZGRpbmctdG9wOiAxNnB4OyBwYWRkaW5n\r\nLXJpZ2h0OiAzMnB4OyBwYWRkaW5nLWJvdHRvbTogMDsgcGFkZGluZy1sZWZ0OiAzMnB4OyBtc28t\r\nbGluZS1oZWlnaHQtcnVsZTogZXhhY3RseTsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13\r\nZWJraXQtdGV4dC1zaXplLWFkanVzdDogMTAwJTsgd29yZC1icmVhazogYnJlYWstd29yZDsgY29s\r\nb3I6ICM3MDZkNmI7IGZvbnQtZmFtaWx5OiBBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmOyBm\r\nb250LXNpemU6IDE0cHg7IGxpbmUtaGVpZ2h0OiAxLjVlbTsgdGV4dC1hbGlnbjogY2VudGVyOyI+\r\nDQogICAgICAgICAgICAgICAgICAgICAgICA8cCBzdHlsZT0ibWFyZ2luOiAxMnB4IDA7IHBhZGRp\r\nbmc6IDA7IG1zby1saW5lLWhlaWdodC1ydWxlOiBleGFjdGx5OyAtbXMtdGV4dC1zaXplLWFkanVz\r\ndDogMTAwJTsgLXdlYmtpdC10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyI+wqkgMjAyNSBQcm90b24g\r\nQUcgU3dpdHplcmxhbmQ8YnI+Um91dGUgZGUgbGEgR2FsYWlzZSZuYnNwOzMyLCAxMjI4Jm5ic3A7\r\nUGxhbi1sZXMtT3VhdGVzLCBHZW5ldmEsJm5ic3A7U3dpdHplcmxhbmQ8L3A+DQogICAgICAgICAg\r\nICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICA8\r\nL3Rib2R5Pg0KICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgIDwhLS1baWYgbXNvXT4N\r\nCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCg0KICAgICAgICAg\r\nICAgPCEtLVtpZiBtc29dPg0KICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgIDwvdGFibGU+\r\nDQogICAgICAgICAgICA8IVtlbmRpZl0tLT4NCiAgICAgICAgPC90ZD4NCiAgICA8L3RyPg0KICAg\r\nIDwvdGJvZHk+DQo8L3RhYmxlPg0KPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHBhZGRpbmc9IjAiIGNl\r\nbGxzcGFjaW5nPSIwIiB3aWR0aD0iMTAwJSIgY2xhc3M9Im1jbkltYWdlQmxvY2siIHN0eWxlPSJi\r\nb3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJs\r\nZS1yc3BhY2U6IDBwdDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1z\r\naXplLWFkanVzdDogMTAwJTsgbWluLXdpZHRoOiAxMDAlOyI+DQogICAgPHRib2R5IGNsYXNzPSJt\r\nY25JbWFnZUJsb2NrT3V0ZXIiPg0KICAgIDx0cj4NCiAgICAgICAgPHRkIHZhbGlnbj0idG9wIiBj\r\nbGFzcz0ibWNuSW1hZ2VCbG9ja0lubmVyIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4\r\nYWN0bHk7IC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1\r\nc3Q6IDEwMCU7IHBhZGRpbmc6IDE2cHg7Ij4NCiAgICAgICAgICAgIDx0YWJsZSBhbGlnbj0iY2Vu\r\ndGVyIiB3aWR0aD0iMTAwJSIgYm9yZGVyPSIwIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9\r\nIjAiIGNsYXNzPSJtY25JbWFnZUNvbnRlbnRDb250YWluZXIiIHN0eWxlPSJib3JkZXItY29sbGFw\r\nc2U6IGNvbGxhcHNlOyBtc28tdGFibGUtbHNwYWNlOiAwcHQ7IG1zby10YWJsZS1yc3BhY2U6IDBw\r\ndDsgLW1zLXRleHQtc2l6ZS1hZGp1c3Q6IDEwMCU7IC13ZWJraXQtdGV4dC1zaXplLWFkanVzdDog\r\nMTAwJTsgbWluLXdpZHRoOiAxMDAlOyI+DQogICAgICAgICAgICAgICAgPHRib2R5Pg0KICAgICAg\r\nICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJtY25JbWFnZUNv\r\nbnRlbnQiIHZhbGlnbj0idG9wIiBzdHlsZT0ibXNvLWxpbmUtaGVpZ2h0LXJ1bGU6IGV4YWN0bHk7\r\nIC1tcy10ZXh0LXNpemUtYWRqdXN0OiAxMDAlOyAtd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6IDEw\r\nMCU7IHBhZGRpbmctcmlnaHQ6IDE2cHg7IHBhZGRpbmctbGVmdDogMTZweDsgcGFkZGluZy10b3A6\r\nIDA7IHBhZGRpbmctYm90dG9tOiAwOyB0ZXh0LWFsaWduOiBjZW50ZXI7Ij4NCiAgICAgICAgICAg\r\nICAgICAgICAgICAgIDxpbWcgYWxpZ249ImNlbnRlciIgYWx0PSIiIHNyYz0iY2lkOjkwMzc3YWZi\r\nNmNmYWYzYWZiNjU5QG1haWwucHJvdG9uLm1lIiB3aWR0aD0iMjc2IiBjbGFzcz0ibWNuUmV0aW5h\r\nSW1hZ2UiIHN0eWxlPSJib3JkZXI6IDA7IGhlaWdodDogYXV0bzsgb3V0bGluZTogbm9uZTsgdGV4\r\ndC1kZWNvcmF0aW9uOiBub25lOyAtbXMtaW50ZXJwb2xhdGlvbi1tb2RlOiBiaWN1YmljOyBtYXgt\r\nd2lkdGg6IDU1MnB4OyBwYWRkaW5nLWJvdHRvbTogMDsgdmVydGljYWwtYWxpZ246IGJvdHRvbTsg\r\nZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTJw\r\neDsgbGluZS1oZWlnaHQ6IDEuNWVtOyBkaXNwbGF5OiBpbmxpbmU7Ij4NCiAgICAgICAgICAgICAg\r\nICAgICAgPC90ZD4NCiAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgIDwvdGJv\r\nZHk+DQogICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICA8L3RkPg0KICAgIDwvdHI+DQogICAg\r\nPC90Ym9keT4NCjwvdGFibGU+DQogICAgPC90ZD4NCjwvdHI+DQogICAgICAgICAgICAgICAgICAg\r\nICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgICAgICAgICAgPCEtLVtpZiAoZ3RlIG1zbyA5\r\nKXwoSUUpXT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAg\r\nICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAg\r\nICAgICAgICAgICAgICAgIDwhW2VuZGlmXS0tPg0KICAgICAgICAgICAgICAgICAgICAgICAgPCEt\r\nLSAvLyBFTkQgVEVNUExBVEUgLS0+DQogICAgICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAg\r\nICAgICAgICAgPC90cj4NCiAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgIDwvY2VudGVyPg0K\r\nICAgIDwvYm9keT4NCjwvaHRtbD4NCg==\r\n\r\n--b2=_ZN8slXTPbicUeJQD5wM8VJUOMZ4VIAfwDjTsOipOsXw\r\nContent-Type: image/png; name=logos-footer.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <90377afb6cfaf3afb659@mail.proton.me>\r\nContent-Disposition: inline; filename=logos-footer.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAigAAABwCAMAAAADkXsEAAAABGdBTUEAALGPC/xhBQAAAAFzUkdC\r\nAK7OHOkAAAAJcEhZcwAAFiUAABYlAUlSJPAAAALfUExURUdwTIpy/YZp/rfc/KOc6Ydn+76K3WxJ\r\n/97I0ZBp//CJWbx+0b6l+o1v/ubH3y7ZzdVqlo5p/fO7m29P/sXM8qiO/vi7tL7O++l3e5Z3/4tp\r\n/8mz9eSr2LXu9bae/3df/pV3//jZ0L2q/te/+XaA/bXo9+GpufnSzjKj8NrC/+SGjNLE/9Roo6Rp\r\n5KGK/cRiqNxujzq619ep3Itk/Cyo8PnBycWIy2vZ4fJgxltp+O9/e0ed4rbt9cWHyuRyhDHO0DjA\r\n1CrgyrVau+tfyJt4/8GI/3BN/21K/3BN/3hN+rCS/3VS/55+/3JL/H9O+JZ1/5p5/7KZ/ref/oVR\r\n9UZ0/4tP8pFx/+C3/1Jm/6uM/7yl/6KC/4lp/6dT5qaH/0xt/1hg/z97/7ZW4HpZ/4Nl/39g/9ix\r\n/11a/8G//59S6bbs9TiC/65U4zKJ/7zj+GhQ/4JM7Ytw/5JQ7x2f/5lS2L1X3JhR7MCr/9Kr/7jX\r\n/762/4pO5mNV/8ym/5JP345Z8fK9zcVY2SuQ/3tL9O66z+a00/+7k7H28r/e/WFl9iWX/8Wg/+q3\r\n0biU/5df681Z1l1s87d612Re+L+a/8au8cKDzsbR/RWo/7yn9qWT/rdcuceJycnJ/5eA/86QxLF0\r\n3OGw1rFZwNZb0s27/6tu4L5fspF6//a/y8LY+/B8ctSXvtqr2ta76M617eevqMKa5p9T0tKm3qCM\r\n/qVp471+06xXxZ5k5/jb0t9cztHB/8Ww/02R5lGJ6eGnrrat/2dX+7/U/0mZ40Wj4Mqg4sViqqRV\r\nzVSB7Fd67sm2/6OC9Vp08ECu3L/K/6uJ8uh1f97B5PHU2NbH//GEY8tlopuH/+TH4LqU6qmc/zu6\r\n2O24oIhf/+rN3NFom9icubKP79lsktyhtK+k/+peyeFxiN7S//rCyadWyjXI0/GNVN1vjJDG+fHN\r\nynqu9abL//20h/ife5bk7NVyobFiylqj/52w+HnLP+kAAABGdFJOUwBnRH8QICD+IP+AMd6f3v7+\r\n397dON6AWYTPvpdj3n+Fi9e/yv2m05d63k1/hd+7pNlD3PW/65P32brk5MfX58+IiN6/v4D1Cm7r\r\n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\r\n\r\n--b2=_ZN8slXTPbicUeJQD5wM8VJUOMZ4VIAfwDjTsOipOsXw\r\nContent-Type: image/png; name=link.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <6084a81632e7274895ae@mail.proton.me>\r\nContent-Disposition: inline; filename=link.png\r\n\r\n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\r\nHx/rAPwHlmSLrKlhoigAAAAASUVORK5CYII=\r\n\r\n--b2=_ZN8slXTPbicUeJQD5wM8VJUOMZ4VIAfwDjTsOipOsXw\r\nContent-Type: image/png; name=instagram.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <9a59373b77f43d9cd657@mail.proton.me>\r\nContent-Disposition: inline; filename=instagram.png\r\n\r\n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\r\n\r\n--b2=_ZN8slXTPbicUeJQD5wM8VJUOMZ4VIAfwDjTsOipOsXw\r\nContent-Type: image/png; name=facebook.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <91b06a6d262700d29a5c@mail.proton.me>\r\nContent-Disposition: inline; filename=facebook.png\r\n\r\n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\r\ncG0LAAAAAElFTkSuQmCC\r\n\r\n--b2=_ZN8slXTPbicUeJQD5wM8VJUOMZ4VIAfwDjTsOipOsXw\r\nContent-Type: image/png; name=linkedin.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <e20351bda9a6757cd165@mail.proton.me>\r\nContent-Disposition: inline; filename=linkedin.png\r\n\r\n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\r\n\r\n--b2=_ZN8slXTPbicUeJQD5wM8VJUOMZ4VIAfwDjTsOipOsXw\r\nContent-Type: image/png; name=reddit.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <91e9bd25eff223ce6f4c@mail.proton.me>\r\nContent-Disposition: inline; filename=reddit.png\r\n\r\n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\r\n\r\n--b2=_ZN8slXTPbicUeJQD5wM8VJUOMZ4VIAfwDjTsOipOsXw\r\nContent-Type: image/png; name=twitter.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <853e0de9764aa8bd61d0@mail.proton.me>\r\nContent-Disposition: inline; filename=twitter.png\r\n\r\n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\r\nTkSuQmCC\r\n\r\n--b2=_ZN8slXTPbicUeJQD5wM8VJUOMZ4VIAfwDjTsOipOsXw\r\nContent-Type: image/png; name=logo-proton.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <147547a9503cc705b241@mail.proton.me>\r\nContent-Disposition: inline; filename=logo-proton.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAXwAAAB4CAMAAADG37laAAAABGdBTUEAALGPC/xhBQAAAAFzUkdC\r\nAK7OHOkAAAAJcEhZcwAAFiUAABYlAUlSJPAAAAJhUExURUdwTGBQ32hQ32NR4WRQ32NR4WJQ32BQ\r\n32NR4mNS4mNR4WJQ32JR4WFQ32BQ32BQ32NS4mBQ32JQ32VQ32RQ32JR4XBQ32NQ4GNQ42JS42JR\r\n4WNQ32FQ32NR4WBQ32NQ32NQ5GNQ32NR4WJQ4WRR4WNT42NT5GJS4mNR4WBQ32JQ4GRQ32VQ32RS\r\n4mJQ32NR4WRR5WBQ32NQ32NS4m5M/WJQ32NQ4GNR4mNQ4GJR4WRQ32JS4mNR4mFQ32JQ32NR4WNS\r\n4GNQ32NR4UossUYqq2xK+2pI9WhG71Y2y0Qop25K/WZE62JC5WBA31Q2x1IywU4wu0wutWxK+Vw+\r\n21w81Vg6z0ImoVdDyjgYhzIZgjsgkT4jnD0jkzshl086ujAYgDcdjTUah2NR4W1L/WxK+2dG8U4w\r\nvF093Fg50VAywVY3zGRE62JB5l8/4WpI9ksut2JC5kkssmlI9mVE7Fo71kQop0Elojwhl0YprFM1\r\nx1U3zFs711092z8jnWxK/WA/4Uwut1M0x1M0xmBA4UYqrEQnp0kssT8jnDoeklQ1x21K/WpJ9m1L\r\n+2VE60cqrVo710ImojcdjTofklo61mdF8W5M/lQ7x1EzwVk60mBF4V9L2mNC5mBI318/4GJE5VU6\r\nyVpF0VEzwmFN3lAywk0wvEsutmVF6mhG8Vk50lM9xWBM22FM31M1xkgrsUwxuFpA1D8lnEQoqD4k\r\nnFU2zFI7wkcqrFs811tI0lI8wVg40VE6v0EloVk801s71k43uGBN3DUaiDcejVxK1FdDyjQahzkg\r\nkjcdjDYciEUtpkw2tVM+wiSBEHAAAABidFJOUwAQIP5A32Agv5/vgN+gQEGvYHAwgO8Qv29/z1CQ\r\nkDCQX6Cg389vX4/eUM9wYI+w7k8hAZ6AYa8Bvs5Bn74BcQGvn/2AgICAgICAgICAgICAgICAgICA\r\ngJAg31+wUN/vIN/fHPTuiQAACW1JREFUeNrtnYd/3LYVx8kzeRxHX6lbOt3Qthw7dkZX0qZtRps2\r\ne7RN96STxomnnCjxrOPtNHvvPbqSdO89ko6/KryzJEvAA/DAO4JKDr+PffLncyQAfvHwADw8yoah\r\n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\r\nYII=\r\n\r\n--b2=_ZN8slXTPbicUeJQD5wM8VJUOMZ4VIAfwDjTsOipOsXw--','Please log in at https://mail.proton.me to check them.\n\n[Proton](https://proton.me/)\n\nYou have 1 new message(s)\n\nHello,\n\nYou have 1 new message(s) in your inbox and custom folders.\n\nPlease log in at https://mail.proton.me to check them. These notifications can be turned off by logging into your account and disabling the daily notification setting.\n\n[Open Proton Mail](https://mail.proton.me)\n\n[Learn more about notification emails](https://proton.me/support/notification-email)\n\nThank you,\nThe Proton Team\n\nConnect with the Proton community\n\n[Twitter](https://twitter.com/ProtonPrivacy)\n\n[Reddit](https://reddit.com/r/ProtonMail)\n\n[LinkedIn](https://www.linkedin.com/company/protonprivacy/)\n\n[Facebook](https://facebook.com/Proton)\n\n[Instagram](https://instagram.com/protonprivacy)\n\n[Blog](https://proton.me/blog)\n\nYou are receiving this email because you set a notification for new messages received in your Proton Mail inbox. [Learn more about notification emails](https://proton.me/support/notification-email)\n\n[Update your email preferences or unsubscribe](https://account.proton.me/unsubscribe/64#eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3NjA0MzkxNTIuNjc0ODgyOSwiZXhwIjoxNzYzMDMxMTUyLCJVc2VySUQiOiJUSVNaWER4cGZSQVNXUzdEeldMV3dnIiwiU2NvcGUiOjk4MzA0LCJpc3MiOiJwcm90b24ubWUiLCJhdWQiOiJwcm90b24ubWUiLCJUeXBlIjoxfQ.OTarmX6Ur0R2_7oY9FXlI6HUZpR65LxvDId9v76HJGQ)\n\n© 2025 Proton AG Switzerland\nRoute de la Galaise 32, 1228 Plan-les-Ouates, Geneva, Switzerland',0,0,0,0,0,0,'2025-10-14 10:52:32','2025-12-09 19:29:36','2025-12-09 19:29:36','2025-12-09 19:29:36',NULL,NULL,NULL),
(855,4,'<01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000@email.amazonses.com>',NULL,NULL,'Top deals for business: Rick, save with limited-time deals','no-reply@business.amazon.com','Amazon Business','<!doctype html>\r\n<html lang=\"en-US\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\">\r\n <head>\r\n  <title>Top deals for business: Rick, save with limited-time deals</title><!--[if !mso]><!-- -->\r\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><!--<![endif]-->\r\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\r\n  <style type=\"text/css\">#outlook a { padding:0; }           body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block;margin:13px 0; }</style><!--[if mso]>                    <xml>                      <o:OfficeDocumentSettings xmlns:o=\"urn:schemas-microsoft-com:office:office\">                    <o:AllowPNG/>                          <o:PixelsPerInch>96</o:PixelsPerInch>                      </o:OfficeDocumentSettings>                   <w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\">               <w:DontUseAdvancedTypographyReadingMail/>             </w:WordDocument>                  </xml>                        <style type=\"text/css\">             table { border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt; }             .mj-outlook-group-fix { width:100% !important; }           </style>                  <![endif]--><!--[if !mso]><!-->\r\n  <link href=\"https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <link href=\"https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <style type=\"text/css\">@import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);</style><!--<![endif]-->\r\n  <style type=\"text/css\">@media only screen and (min-width:641px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-18 { width:18% !important; max-width: 18%; } .mj-column-per-82 { width:82% !important; max-width: 82%; } .mj-column-per-48 { width:48% !important; max-width: 48%; } .mj-column-per-52 { width:52% !important; max-width: 52%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }</style>\r\n  <style type=\"text/css\">.movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                .links-232F3E-underline-bold a { color: #232F3E; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .mso-button-dark-mode a {background: transparent !important;} .links-161D26 a { color: #161D26; text-decoration: none; } .links-161D26-underline a { color: #161D26; text-decoration: underline; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:641px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-165px { max-width: 165px !important} .padding-32px-40px-20px-40px { padding: 32px 40px 20px 40px !important} .font-size-36px { font-size: 36px !important} .padding-0px-40px-0px-40px { padding: 0px 40px 0px 40px !important} .padding-24px-40px-0px-40px { padding: 24px 40px 0px 40px !important} .padding-20px-40px-0px-40px { padding: 20px 40px 0px 40px !important} .font-size-18px { font-size: 18px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .font-size-20px { font-size: 20px !important} .padding-24px-40px-24px-40px { padding: 24px 40px 24px 40px !important} .padding-25px-20px-25px-20px { padding: 25px 20px 25px 20px !important} .padding-0px-10px-0px-0px { padding: 0px 10px 0px 0px !important} .max-width-129px { max-width: 129px !important} .padding-0px-5px-0px-5px { padding: 0px 5px 0px 5px !important} .max-width-140px { max-width: 140px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }</style>\r\n  <style type=\"text/css\">p{margin: 0 0;}ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 641px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}</style><!--[if mso]>             <style>                 .hide-on-mobile {display:block !important}             </style>         <![endif]--><!--[if mso]>                 <style>                              .mso-font-size-36px { font-size: 36px !important; } .mso-font-size-18px { font-size: 18px !important; } .mso-font-size-20px { font-size: 20px !important; }                 </style>             <![endif]-->\r\n  <style>[class~=\"x_body\"] { width: 99.9% }               @supports(--css:variables) {                         td[style*=\"border-radius\"] { -webkit-filter: drop-shadow(0 0 1px transparent); }             }</style>\r\n </head>\r\n <body style=\"word-spacing:normal;background-color:#FFFFFF;\" class=\"body\" id=\"body\">\r\n  <div>\r\n   <p><img alt=\"\" src=\"http://elinks.business.amazon.com/CI0/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/6qbPWV58YGRYqrof-WW0-zZ612DfjL7yMJdPJoYJYaM=427\" style=\"display: none; width: 1px; height: 1px;\">\r\n</p>\r\n  </div><!--[if !mso 9]><!-->\r\n  <div id=\"emailPreHeader\" style=\"display: none;\">\r\n   Enjoy savings with limited-time deals recommended for businesses like yours﻿.\r\n  </div>\r\n  <div style=\"display: none;\">\r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  </div><!--<![endif]-->\r\n  <div style=\"background-color:#FFFFFF;background-position:center center;background-size:auto;background-repeat:repeat;\" id=\"main\">\r\n   <!--[if mso]>\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><![endif]--><!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:16px 16px 14px 16px;text-align:center;vertical-align:top;mso-padding-alt:14px 0px 14px 40px;\" class=\"block-grid padding-14px-0px-14px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:600px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n             <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:middle;width:300px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"padding-0px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 0px 0px;word-break:break-word;mso-padding-alt:0px 0px 0px 0px;text-align:left;\">\r\n                  <div style=\"margin:0 auto 0 0;\" class=\"max-width-165px\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/Y7tu-SY8hITY5s8XEJXURtCWcQVLmBAyMI1npEGvcSY=427\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business\" height=\"auto\" width=\"165\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-2color2x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:middle;width:300px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                  <div style=\"line-height:0px;height:0px;mso-line-height-alt:0px;\">\r\n                   &nbsp;\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:32px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:32px 40px 20px 40px;\" class=\"block-grid padding-32px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-232F3E-underline-bold\">\r\n                  <div style=\"font-family:\'Ember Modern Display\', Arial, sans-serif;font-size:28px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:2.688em;color:#161D26;\" class=\"mso-font-size-36px font-size-36px\">\r\n                   <p style=\"margin: 0 0;\">Top deals for business</p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;mso-padding-alt:0px 0px 0px 0px;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                 <div style=\"line-height:12px;height:12px;mso-line-height-alt:12px;\">\r\n                  &nbsp;\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:0px 40px 0px 40px;\" class=\"block-grid padding-0px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-007185-bold\">\r\n                  <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.375em;color:#222D3A;\">\r\n                   <p style=\"margin: 0 0;\">Enjoy savings with limited-time deals recommended for businesses like yours.</p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:24px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:24px 40px 0px 40px;\" class=\"block-grid padding-24px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td valign=\"middle\" class=\"button-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div>\r\n                  <!--[if mso]>\r\n<table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\">\r\n<tr>\r\n<td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26return_to=%2Fgp%2Fgoldbox%2F/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/WBcBsM3La7oym8VHtT1dIQsExxB2-Vs2ZsboWvmvu8M=427\" fillcolor=\"#FFD814\" arcsize=\"58%\" style=\"v-text-anchor:middle;width:95.25pt;height:32.25pt;\" stroke=\"f\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26return_to=%2Fgp%2Fgoldbox%2F/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/WBcBsM3La7oym8VHtT1dIQsExxB2-Vs2ZsboWvmvu8M=427\" style=\"display: inline-block; background: #FFD814; color: #161D26; font-family: \'Amber Ember\', Arial, sans-serif; font-size: 16px; font-weight: normal; line-height: 1.2; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 12px 24px 12px 24px; mso-padding-alt: 0px; border-radius: 25px; mso-border-alt: none; box-sizing: border-box;\" target=\"_blank\" width=\"127\">Shop deals </a><!--[if mso]></center></a:textbox></a:roundrect>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;mso-padding-alt:0px 0px 0px 0px;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                 <div style=\"line-height:30px;height:30px;mso-line-height-alt:30px;\">\r\n                  &nbsp;\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3f4492e978609435.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=7d41ae21-88f0-49a6-be37-748dc35181a6&amp;mi_campaignId=3078545324&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=1&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=7d41ae21-88f0-49a6-be37-748dc35181a6&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_tri_per_topdeals_ssr_250409\">\r\n                 </div></td>\r\n               </tr>\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=7d41ae21-88f0-49a6-be37-748dc35181a6%26mi_campaignId=3078545324%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=1%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=7d41ae21-88f0-49a6-be37-748dc35181a6%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/d0Hks8SHs5fZM88sqehLy8pyBnEHjF1jR6FDF0SUK9Y=427\" style=\"text-decoration: none; color: #827AF0; display: block;\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=7d41ae21-88f0-49a6-be37-748dc35181a6&amp;mi_campaignId=3078545324&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=1&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=7d41ae21-88f0-49a6-be37-748dc35181a6&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_tri_per_topdeals_ssr_250409\"></a>\r\n                 </div></td>\r\n               </tr>\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=7d41ae21-88f0-49a6-be37-748dc35181a6%26mi_campaignId=3078545324%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=2%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=7d41ae21-88f0-49a6-be37-748dc35181a6%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/Mz7oQaLRebrzj12jhFNIr3DodxxvFG7ypF4SXuLAaF0=427\" style=\"text-decoration: none; color: #827AF0; display: block;\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=7d41ae21-88f0-49a6-be37-748dc35181a6&amp;mi_campaignId=3078545324&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=2&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=7d41ae21-88f0-49a6-be37-748dc35181a6&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_tri_per_topdeals_ssr_250409\"></a>\r\n                 </div></td>\r\n               </tr>\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=7d41ae21-88f0-49a6-be37-748dc35181a6%26mi_campaignId=3078545324%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=3%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=7d41ae21-88f0-49a6-be37-748dc35181a6%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/dsahipoaOlVyy8WHeTILB0YuPaPnhNpkpgRQjOkEmrw=427\" style=\"text-decoration: none; color: #827AF0; display: block;\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=7d41ae21-88f0-49a6-be37-748dc35181a6&amp;mi_campaignId=3078545324&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=3&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=7d41ae21-88f0-49a6-be37-748dc35181a6&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_tri_per_topdeals_ssr_250409\"></a>\r\n                 </div></td>\r\n               </tr>\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=7d41ae21-88f0-49a6-be37-748dc35181a6%26mi_campaignId=3078545324%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=4%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=7d41ae21-88f0-49a6-be37-748dc35181a6%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/qiLOhe1iPMiVgkaPKBwZ085JnRlnsVIQ26PwvohC0_A=427\" style=\"text-decoration: none; color: #827AF0; display: block;\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=7d41ae21-88f0-49a6-be37-748dc35181a6&amp;mi_campaignId=3078545324&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=4&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=7d41ae21-88f0-49a6-be37-748dc35181a6&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_tri_per_topdeals_ssr_250409\"></a>\r\n                 </div></td>\r\n               </tr>\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=7d41ae21-88f0-49a6-be37-748dc35181a6%26mi_campaignId=3078545324%26mi_data_set=DEALSFALLBACK%26mi_deviceType=desktop%26mi_item_index=5%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=7d41ae21-88f0-49a6-be37-748dc35181a6%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/b5ZX-bFkHfqIZQ9KVTDgMNZH5zIERB33S1ysrsUKDAc=427\" style=\"text-decoration: none; color: #827AF0; display: block;\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=7d41ae21-88f0-49a6-be37-748dc35181a6&amp;mi_campaignId=3078545324&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=desktop&amp;mi_item_index=5&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=7d41ae21-88f0-49a6-be37-748dc35181a6&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_tri_per_topdeals_ssr_250409\"></a>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <!--[if !mso]><!-->\r\n              <tbody>\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3f4492e978609435.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=7d41ae21-88f0-49a6-be37-748dc35181a6&amp;mi_campaignId=3078545324&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=1&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=7d41ae21-88f0-49a6-be37-748dc35181a6&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_tri_per_topdeals_ssr_250409\">\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=7d41ae21-88f0-49a6-be37-748dc35181a6%26mi_campaignId=3078545324%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=1%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=7d41ae21-88f0-49a6-be37-748dc35181a6%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/dVu7IxGMfy_06gjcdpUP_o9-5-U4sDYWk9nOGs6I4x0=427\" style=\"text-decoration: none; color: #827AF0; display: block;\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=7d41ae21-88f0-49a6-be37-748dc35181a6&amp;mi_campaignId=3078545324&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=1&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=7d41ae21-88f0-49a6-be37-748dc35181a6&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_tri_per_topdeals_ssr_250409\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=7d41ae21-88f0-49a6-be37-748dc35181a6%26mi_campaignId=3078545324%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=2%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=7d41ae21-88f0-49a6-be37-748dc35181a6%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/KO95LecbK8JjjKcy7TGchbrJ5IbcbINUI0u7CqWQwNw=427\" style=\"text-decoration: none; color: #827AF0; display: block;\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=7d41ae21-88f0-49a6-be37-748dc35181a6&amp;mi_campaignId=3078545324&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=2&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=7d41ae21-88f0-49a6-be37-748dc35181a6&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_tri_per_topdeals_ssr_250409\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=7d41ae21-88f0-49a6-be37-748dc35181a6%26mi_campaignId=3078545324%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=3%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=7d41ae21-88f0-49a6-be37-748dc35181a6%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/xc7Mn3bt7_izyb3J-FD-329wY140uppDVBjPChGGUEk=427\" style=\"text-decoration: none; color: #827AF0; display: block;\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=7d41ae21-88f0-49a6-be37-748dc35181a6&amp;mi_campaignId=3078545324&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=3&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=7d41ae21-88f0-49a6-be37-748dc35181a6&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_tri_per_topdeals_ssr_250409\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=7d41ae21-88f0-49a6-be37-748dc35181a6%26mi_campaignId=3078545324%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=4%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=7d41ae21-88f0-49a6-be37-748dc35181a6%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/L1aikwDEXbJibxO-tu6hv7S90hoXxOrPASDrd_MOSqY=427\" style=\"text-decoration: none; color: #827AF0; display: block;\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=7d41ae21-88f0-49a6-be37-748dc35181a6&amp;mi_campaignId=3078545324&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=4&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=7d41ae21-88f0-49a6-be37-748dc35181a6&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_tri_per_topdeals_ssr_250409\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F7054e15b3f6827ad%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=7d41ae21-88f0-49a6-be37-748dc35181a6%26mi_campaignId=3078545324%26mi_data_set=DEALSFALLBACK%26mi_deviceType=mobile%26mi_item_index=5%26mi_marketplaceId=ATVPDKIKX0DER%26mi_messageId=7d41ae21-88f0-49a6-be37-748dc35181a6%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26ref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252F3d2b967572a9663d%252Furl%26url_sig=aabFIqXq0d9ICp/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/Fe4yGeUSMLRjuoIAkO32sCnxRFUIPgt3WYn3kmUV40A=427\" style=\"text-decoration: none; color: #827AF0; display: block;\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/3d2b967572a9663d.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=7d41ae21-88f0-49a6-be37-748dc35181a6&amp;mi_campaignId=3078545324&amp;mi_data_set=DEALSFALLBACK&amp;mi_deviceType=mobile&amp;mi_item_index=5&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_messageId=7d41ae21-88f0-49a6-be37-748dc35181a6&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;ref_=b2b_sow_e_tri_per_topdeals_ssr_250409\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]-->\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 0px 40px;\" class=\"block-grid padding-20px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-161D26\">\r\n                  <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.375em;color:#161D26;\" class=\"mso-font-size-18px font-size-18px\">\r\n                   <p style=\"margin: 0 0;\"><span style=\"font-size: 18px;\">Discover more ways to save</span></p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\">\r\n            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n             <tbody>\r\n              <tr>\r\n               <td style=\"line-height:0;font-size:0;direction:ltr;\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n                 <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:280px;\" ><![endif]-->\r\n                 <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:50%;\">\r\n                  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                   <tbody>\r\n                    <tr>\r\n                     <td style=\"border-radius:0px;vertical-align:top;padding:0px 8px 12px 0px;mso-padding-alt:0px 8px 12px 0px;\">\r\n                      <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:left;\">\r\n                          <div style=\"margin:0 auto 0 0;max-width:272px;\">\r\n                           <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26return_to=%2Fgp%2Fsavingshub/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/uiEGzENY7bbHPwOJrZFxAf_frxi6XnBN5fumgwO8h1U=427\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Image of laptop\" height=\"auto\" width=\"272\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/Images/Approved-ASIN-Images-500x500/Email-ASIN-Image-32-500x500.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                          </div></td>\r\n                        </tr>\r\n                        <tr>\r\n                         <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                          <div class=\"links-161D26\">\r\n                           <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                            <p style=\"margin: 0 0;\">Savings for you</p>\r\n                           </div>\r\n                          </div></td>\r\n                        </tr>\r\n                        <tr>\r\n                         <td class=\"text-container\" style=\"font-size:0px;padding:5px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                          <div class=\"links-007185-bold\">\r\n                           <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.188em;color:#222D3A;\">\r\n                            <p style=\"margin: 0 0;\">Save more with deals, discounts, and exclusive business pricing.</p>\r\n                           </div>\r\n                          </div></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table></td>\r\n                    </tr>\r\n                   </tbody>\r\n                  </table>\r\n                 </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:280px;\" ><![endif]-->\r\n                 <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:50%;\">\r\n                  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                   <tbody>\r\n                    <tr>\r\n                     <td style=\"border-radius:3px;vertical-align:top;padding:0px 0px 12px 8px;mso-padding-alt:0px 0px 12px 8px;\">\r\n                      <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:left;\">\r\n                          <div style=\"margin:0 auto 0 0;max-width:272px;\">\r\n                           <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26return_to=%2Fab%2Fbusiness-discounts/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/waOEyytvlZlT9UiM_bmzle6b72r6VGZQCGpWGtp6kOU=427\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Image of printer paper\" height=\"auto\" width=\"272\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/Images/Approved-ASIN-Images-500x500/Email-ASIN-Image-20-500x500.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                          </div></td>\r\n                        </tr>\r\n                        <tr>\r\n                         <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                          <div class=\"links-161D26\">\r\n                           <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                            <p style=\"margin: 0 0;\">Business Savings Guide</p>\r\n                           </div>\r\n                          </div></td>\r\n                        </tr>\r\n                        <tr>\r\n                         <td class=\"text-container\" style=\"font-size:0px;padding:5px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                          <div class=\"links-007185-bold\">\r\n                           <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.188em;color:#161D26;\">\r\n                            <p style=\"margin: 0 0;\">See the most popular business discounts.</p>\r\n                           </div>\r\n                          </div></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table></td>\r\n                    </tr>\r\n                   </tbody>\r\n                  </table>\r\n                 </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n              </tr>\r\n             </tbody>\r\n            </table></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n             <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:280px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:50%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td style=\"border-radius:0px;vertical-align:top;padding:0px 8px 12px 0px;mso-padding-alt:0px 8px 12px 0px;\">\r\n                  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                   <tbody>\r\n                    <tr>\r\n                     <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:left;\">\r\n                      <div style=\"margin:0 auto 0 0;max-width:272px;\">\r\n                       <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26return_to=%2Fcasepacks/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/VGDXsVnbE-WRKIZwj1Lk4wnQ31uAbDIEYtnmF6Scl10=427\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Image of disposable cups\" height=\"auto\" width=\"272\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/Images/Approved-ASIN-Images-500x500/Email-ASIN-Image-28-500x500.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                      </div></td>\r\n                    </tr>\r\n                    <tr>\r\n                     <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                      <div class=\"links-161D26\">\r\n                       <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                        <p style=\"margin: 0 0;\">Buy wholesale</p>\r\n                       </div>\r\n                      </div></td>\r\n                    </tr>\r\n                    <tr>\r\n                     <td class=\"text-container\" style=\"font-size:0px;padding:5px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                      <div class=\"links-007185-bold\">\r\n                       <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.188em;color:#222D3A;\">\r\n                        <p style=\"margin: 0 0;\">Save in bulk with case packs and streamline bulk purchasing.</p>\r\n                       </div>\r\n                      </div></td>\r\n                    </tr>\r\n                   </tbody>\r\n                  </table></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:280px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:50%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td style=\"border-radius:0px;vertical-align:top;padding:0px 0px 12px 8px;mso-padding-alt:0px 0px 12px 8px;\">\r\n                  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                   <tbody>\r\n                    <tr>\r\n                     <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 12px 0px;word-break:break-word;text-align:left;\">\r\n                      <div style=\"margin:0 auto 0 0;max-width:272px;\">\r\n                       <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26return_to=%2Fquantitydiscounts/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/8QkqATqyaIOrPEKuneu0olD9JSv8fLnJjZC73t_RelM=427\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Image of Amazon packages\" height=\"auto\" width=\"272\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/Images/Approved-ASIN-Images-500x500/Email-ASIN-Image-11-500x500.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                      </div></td>\r\n                    </tr>\r\n                    <tr>\r\n                     <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                      <div class=\"links-161D26\">\r\n                       <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.5em;color:#222D3A;\" class=\"mso-font-size-20px font-size-20px\">\r\n                        <p style=\"margin: 0 0;\">Buy more, save more</p>\r\n                       </div>\r\n                      </div></td>\r\n                    </tr>\r\n                    <tr>\r\n                     <td class=\"text-container\" style=\"font-size:0px;padding:5px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                      <div class=\"links-007185-bold\">\r\n                       <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.188em;color:#222D3A;\">\r\n                        <p style=\"margin: 0 0;\">Save with Quantity Discounts starting as low as two items.</p>\r\n                       </div>\r\n                      </div></td>\r\n                    </tr>\r\n                   </tbody>\r\n                  </table></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F7F7F7;background-color:#F7F7F7;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F7F7F7;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><!--[if !mso]><!-- --><p style=\"border-top: solid 1px #D5D9D9; font-size: 1px; margin: 0 auto; width: 100%; text-align: center;\"></p><!--<![endif]--><!--Divider--><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-top:solid 1px #D5D9D9;font-size:1px;margin:0 auto;width:640px;text-align:center;\" role=\"presentation\" width=\"640px\" >\r\n<tr>\r\n<td style=\"height:0;line-height:0;\"> &nbsp; </td>\r\n</tr>\r\n</table><![endif]--></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F5F3EF;background-color:#F5F3EF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F5F3EF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:16px 16px 16px 16px;text-align:center;vertical-align:top;mso-padding-alt:24px 40px 24px 40px;\" class=\"block-grid padding-24px-40px-24px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"background-color:#FFFFFF;border-radius:7px;vertical-align:top;padding:24px 24px 24px 24px;mso-padding-alt:25px 20px 25px 20px;\" class=\"padding-25px-20px-25px-20px\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td>\r\n                     <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:100%;\" class=\"section\">\r\n                      <tbody>\r\n                       <tr>\r\n                        <td align=\"center\" style=\"font-size:0px;text-align:center;vertical-align:top;padding:0px;word-break:break-word;\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:middle;width:93.6px;\" ><![endif]-->\r\n                         <div class=\"mj-column-per-18 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                              <div style=\"margin:0 auto 0 0;max-width:93px;\">\r\n                              <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Fen%2Ffind-solutions%2Fmobile-app%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26ref_=b2b_adp_e_abapp_body/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/V5aHco_a80j08QPLwviATDHc7Yp3buG2ZWEQ0MGxXnM=427\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Mobile App\" height=\"auto\" width=\"93\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/WhiteBackground/AB-Icon-Mobile-App-white-circle10x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                              </div></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table>\r\n                         </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:middle;width:426.4px;\" ><![endif]-->\r\n                         <div class=\"mj-column-per-82 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"border-radius:0px;vertical-align:middle;padding:0 0 0 20px;\">\r\n                              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                              <tbody>\r\n                              <tr>\r\n                              <td class=\"padding-0px-0px-0px-0px text-container\" style=\"font-size:0px;padding:16px 0px 0px 0px;word-break:break-word;mso-padding-alt:0px 0px 0px 0px;text-align:left;\">\r\n                              <div class=\"links-161D26-underline\">\r\n                              <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.375em;color:#161D26;\" class=\"mso-font-size-18px font-size-18px\">\r\n                              <p style=\"margin: 0 0;\"><strong><span style=\"font-family: \'Amber Ember\', Arial, sans-serif;\">Download the Amazon Business Mobile App</span></strong></p>\r\n                              </div>\r\n                              </div></td>\r\n                              </tr>\r\n                              <tr>\r\n                              <td class=\"text-container\" style=\"font-size:0px;padding:8px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                              <div class=\"links-161D26-underline\">\r\n                              <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:1.188em;color:#161D26;\">\r\n                              <p style=\"margin: 0 0;\"><span style=\"font-family: \'Amber Ember\', Arial, sans-serif; font-size: 16px;\">Separate your business and personal buying with a convenient and secure shopping experience.</span></p>\r\n                              </div>\r\n                              </div></td>\r\n                              </tr>\r\n                              </tbody>\r\n                              </table></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table>\r\n                         </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n                       </tr>\r\n                      </tbody>\r\n                     </table></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td>\r\n                     <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:100%;\" class=\"section\">\r\n                      <tbody>\r\n                       <tr>\r\n                        <td align=\"center\" style=\"font-size:0px;text-align:center;vertical-align:top;padding:24px 0px 0px 10px;word-break:break-word;\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:510px;\" ><![endif]-->\r\n                         <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n                          <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:244px;\" ><![endif]-->\r\n                          <div class=\"mj-column-per-48 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:48%;\">\r\n                           <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                            <tbody>\r\n                             <tr>\r\n                              <td style=\"border-radius:0px;vertical-align:top;padding:0px 0 0 0;\">\r\n                              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n                              <tbody>\r\n                              <tr>\r\n                              <td class=\"padding-0px-10px-0px-0px img-container\" style=\"font-size:0px;padding:0px 15px 0px 0px;word-break:break-word;mso-padding-alt:0px 10px 0px 0px;text-align:right;\">\r\n                              <div style=\"margin:0 0 0 auto;max-width:90%;\" class=\"max-width-129px\">\r\n                              <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fapps.apple.com%2Fus%2Fapp%2Famazon-business%2Fid1498197033%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26pt=17789%26ct=em_body%26mt=8/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/aMKi6cadUaim_dtmsXDW-pPaEInt2JznFl22X9ij0-I=427\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"App Store\" height=\"auto\" width=\"129\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/EBR/Download_on_the_App_Store_Badge_US_blk_092917.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                              </div></td>\r\n                              </tr>\r\n                              </tbody>\r\n                              </table></td>\r\n                             </tr>\r\n                            </tbody>\r\n                           </table>\r\n                          </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:265px;\" ><![endif]-->\r\n                          <div class=\"mj-column-per-52 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:52%;\">\r\n                           <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                            <tbody>\r\n                             <tr>\r\n                              <td class=\"padding-0px-5px-0px-5px img-container\" style=\"font-size:0px;padding:0px 20px 0px 5px;word-break:break-word;mso-padding-alt:0px 5px 0px 5px;text-align:left;\">\r\n                              <div style=\"margin:0 auto 0 0;max-width:96%;\" class=\"max-width-140px\">\r\n                              <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fplay.google.com%2Fstore%2Fapps%2Fdetails%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26id=com.amazon.mShop.android.business.shopping%26referrer=utm_source%253Damazon_business%2526utm_campaign%253Dem_body/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/EBwFBa0Dw1rc-6iRpYvNBsZf87HzfDVXtfE1DSLFghE=427\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Google Play\" height=\"auto\" width=\"140\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/EBR/GooglePlayIcon-US.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                              </div></td>\r\n                             </tr>\r\n                            </tbody>\r\n                           </table>\r\n                          </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                         </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n                       </tr>\r\n                      </tbody>\r\n                     </table></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F7F7F7;background-color:#F7F7F7;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F7F7F7;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><!--[if !mso]><!-- --><p style=\"border-top: solid 1px #D5D9D9; font-size: 1px; margin: 0 auto; width: 100%; text-align: center;\"></p><!--<![endif]--><!--Divider--><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-top:solid 1px #D5D9D9;font-size:1px;margin:0 auto;width:640px;text-align:center;\" role=\"presentation\" width=\"640px\" >\r\n<tr>\r\n<td style=\"height:0;line-height:0;\"> &nbsp; </td>\r\n</tr>\r\n</table><![endif]--></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F5F3EF;background-color:#F5F3EF;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F5F3EF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-161D26-underline\">\r\n                  <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#222D3A;\">\r\n                   <p style=\"margin: 0 0;\">Please note that product prices and availability are subject to change. Prices and availability were accurate at the time this email was sent. However, they may differ from those you see when you visit Amazon.com.</p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#161D26;background-color:#161D26;Margin:0px auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#161D26;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\">\r\n            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n             <tbody>\r\n              <tr>\r\n               <td style=\"line-height:0;font-size:0;direction:rtl;\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:252px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-45 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-align-right social-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\"><!--[if mso | IE]>\r\n<table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" >\r\n<tr>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.facebook.com%2FAmazonBusiness%2F%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/6_SnwPMcwG6WK4EoSkFAILPIXkR4t1YJWiyP7H5hS6g=427\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Facebook\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Facebook-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Ftwitter.com%2FAmazonBusiness%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/j1oPHqA5HwD0RC2QHTJkpcd81E3d-24_SEx8GxDcvp0=427\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Twitter\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Twitter-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.linkedin.com%2Fcompany%2Famazon-business%2F%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/rKdNkbkCOx2OQprnbFUUV97Xf-UqOSUFbAdYtQ4Dxv0=427\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Linkedin\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-LinkedIn-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"padding-10px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 20px 0px;word-break:break-word;mso-padding-alt:10px 0px 0px 0px;text-align:right;\">\r\n                     <div style=\"margin:0 auto 0 0;max-width:163px;\" class=\"margin-0-0-0-auto\">\r\n                      <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2F%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409%26ref_=b2b_sow_e_tri_per_topdeals_ssr_250409/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/Atd6c59JGNrIteYfH5K_i-fMUV09z9dhymH5jWOLl0o=427\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business logo\" height=\"auto\" width=\"163\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-white2x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:308px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-55 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0 0;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Fen%2Fcontact-us%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/RQi7KgsNGMQYVuwN7voh2mX9SFosWhmQH8JxCQTiyWw=427\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">Contact us</a> | <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fab%2Fmanage%2Faccount%2F%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/-dEMO0cOJp5-dhZ59JYktaM-7cTNDSOvbyju7n1AFeI=427\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">Manage account</a></p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0 0;\">If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Femail-preferences%2Fep%2FgKz6vAfkHGrd8IDvEnJQk8GSGRsuyRK40THm%2B8kfDn1SXzuWe0sceVyBOg==%2F3078545324%2F%2BmvuY0bxbOuJ55lTGrD1vyeXkpzEmlzT7GM3rVNCnIEPD6HroHN1g9Np9PGkklOj18rxoHw6MEd4YNgm*V8soSiWvmxSEFAKqQqjPKRMGM%2Bhdv*vt3vLtlFxC3jRMtnISFV7xuc3TTy3gGwdI5ECi9M7CZr6gB*aiK7XDe*D0Fs9W5vxPVyvhzgVZ7y*yB*fb4LrCv43R89AwQzRXOqX3yz2MuF%2BH*2NjR8f0bEDB0g8Gv1RiRDK7Doaj47A5VFlXcy%2BApRK8%2BHcDauoj9i%2BG0doZMoJR1eNgTvpZ3hQAt5pSetxpw8qk8j%2B59ttWsGdAIGpbGawMRwHbFsOzxIpF*wqAi73EpJDWwdqtmhzl76HiF*cjKs=%2FZcRztf3OPJKgGUUfokocuFa0lEoEQ4WXgMX88eQn4u9r%3Fref_=b2b_sow_e_tri_per_topdeals_ssr_250409/1/01000199e7c4afd3-23adb934-7acf-4566-97ee-7c16045bcd74-000000/l--c-B-k65m2T5HBmhETTN8C1m_5a1s-gqQJMOO1ryE=427\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">email preferences</a>.</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 30px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0 0;\">© 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210</p>\r\n                       <p style=\"margin: 0 0;\">&nbsp;</p>\r\n                       <p style=\"margin: 0 0;\">Reference: 3078545324</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n              </tr>\r\n             </tbody>\r\n            </table></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--><!--[if mso]>\r\n</table><![endif]-->\r\n  </div>\r\n </body>\r\n</html>\r\n','\r\n\r\n \r\n  Top deals for business: Rick, save with limited-time deals\r\n  \r\n  \r\n  \r\n  #outlook a { padding:0; }           body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block;margin:13px 0; }\r\n  \r\n  \r\n  @import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);\r\n  @media only screen and (min-width:641px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-18 { width:18% !important; max-width: 18%; } .mj-column-per-82 { width:82% !important; max-width: 82%; } .mj-column-per-48 { width:48% !important; max-width: 48%; } .mj-column-per-52 { width:52% !important; max-width: 52%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }\r\n  .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                .links-232F3E-underline-bold a { color: #232F3E; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .mso-button-dark-mode a {background: transparent !important;} .links-161D26 a { color: #161D26; text-decoration: none; } .links-161D26-underline a { color: #161D26; text-decoration: underline; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:641px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-165px { max-width: 165px !important} .padding-32px-40px-20px-40px { padding: 32px 40px 20px 40px !important} .font-size-36px { font-size: 36px !important} .padding-0px-40px-0px-40px { padding: 0px 40px 0px 40px !important} .padding-24px-40px-0px-40px { padding: 24px 40px 0px 40px !important} .padding-20px-40px-0px-40px { padding: 20px 40px 0px 40px !important} .font-size-18px { font-size: 18px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .font-size-20px { font-size: 20px !important} .padding-24px-40px-24px-40px { padding: 24px 40px 24px 40px !important} .padding-25px-20px-25px-20px { padding: 25px 20px 25px 20px !important} .padding-0px-10px-0px-0px { padding: 0px 10px 0px 0px !important} .max-width-129px { max-width: 129px !important} .padding-0px-5px-0px-5px { padding: 0px 5px 0px 5px !important} .max-width-140px { max-width: 140px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }\r\n  p{margin: 0 0;}ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 641px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}\r\n  [class~=\"x_body\"] { width: 99.9% }               @supports(--css:variables) {                         td[style*=\"border-radius\"] { -webkit-filter: drop-shadow(0 0 1px transparent); }             }\r\n \r\n \r\n  \r\n   \r\n\r\n  \r\n  \r\n   Enjoy savings with limited-time deals recommended for businesses like yours﻿.\r\n  \r\n  \r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  \r\n  \r\n   \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   &nbsp;\r\n                  \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   Top deals for business\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  &nbsp;\r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   Enjoy savings with limited-time deals recommended for businesses like yours.\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                   Shop deals \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  &nbsp;\r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   Discover more ways to save\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                          \r\n                        \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            Savings for you\r\n                           \r\n                          \r\n                        \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            Save more with deals, discounts, and exclusive business pricing.\r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                    \r\n                   \r\n                  \r\n                 \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                          \r\n                        \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            Business Savings Guide\r\n                           \r\n                          \r\n                        \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            See the most popular business discounts.\r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                    \r\n                   \r\n                  \r\n                 \r\n                \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                      \r\n                    \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        Buy wholesale\r\n                       \r\n                      \r\n                    \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        Save in bulk with case packs and streamline bulk purchasing.\r\n                       \r\n                      \r\n                    \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                      \r\n                    \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        Buy more, save more\r\n                       \r\n                      \r\n                    \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        Save with Quantity Discounts starting as low as two items.\r\n                       \r\n                      \r\n                    \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                              \r\n                              \r\n                              \r\n                            \r\n                           \r\n                          \r\n                         \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              Download the Amazon Business Mobile App\r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              Separate your business and personal buying with a convenient and secure shopping experience.\r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                            \r\n                           \r\n                          \r\n                         \r\n                       \r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                          \r\n                           \r\n                            \r\n                             \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                              \r\n                             \r\n                            \r\n                           \r\n                          \r\n                          \r\n                           \r\n                            \r\n                             \r\n                              \r\n                              \r\n                              \r\n                              \r\n                             \r\n                            \r\n                           \r\n                          \r\n                         \r\n                       \r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   Please note that product prices and availability are subject to change. Prices and availability were accurate at the time this email was sent. However, they may differ from those you see when you visit Amazon.com.\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       Contact us | Manage account\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your email preferences.\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       © 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210\r\n                       &nbsp;\r\n                       Reference: 3078545324\r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n   \r\n  \r\n \r\n\r\n',0,0,0,0,0,0,'2025-10-15 12:07:31','2025-12-09 19:29:37','2025-12-09 19:29:37','2025-12-09 19:29:37',NULL,NULL,NULL),
(856,4,'<6CB93406-C8BB-4656-8D8A-9B4F128918AB@lithiumbatterycompany.com>',NULL,NULL,'Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body dir=\"auto\">Hi James,<div><br></div><div>Would be great to get some pricing and spec sheets.&nbsp;</div><div><br></div><div>Let me know when we can connect.&nbsp;</div><div><br></div><div>Best,</div><div><br id=\"lineBreakAtBeginningOfSignature\"><div dir=\"ltr\"><p style=\"margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Jordan G. Wroblewski</span></p><p style=\"margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Partner | President&nbsp;<br></span></p><p style=\"margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Lithium Battery Company</span></p><p style=\"margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Direct:&nbsp;<span dir=\"ltr\">(917) 266-5336</span><br></span></p><p style=\"margin: 0in;\"><u style=\"background-color: rgba(255, 255, 255, 0);\">jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"margin: 0px;\">@lithiumbatterycompany.com</a></u></p><p style=\"margin: 0in;\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\" style=\"caret-color: rgb(255, 255, 255); background-color: rgba(255, 255, 255, 0);\"><font color=\"#ffffff\">Lithium Battery Company</font></a></p><p style=\"margin: 0in;\"></p><p style=\"margin: 0in;\"></p></div><div dir=\"ltr\"><br><blockquote type=\"cite\">On Sep 30, 2025, at 4:31 PM, Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt; wrote:<br><br></blockquote></div><blockquote type=\"cite\"><div dir=\"ltr\">﻿<div dir=\"ltr\"><div dir=\"ltr\"><div>Hi James,</div><div><br></div><div><div><div>I have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.</div></div><div><br></div></div><div>Looking forward to our discussion and seeing your deck of prospective projects.&nbsp;&nbsp;</div><div><br></div><div>Best,&nbsp;</div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President&nbsp;<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Sep 26, 2025 at 4:59 PM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"msg7859046138643783182\">\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI won\'t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products.&nbsp;</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI\'ll send to you as soon as I can next week.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"m_7859046138643783182appendonsend\"></div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 24, 2025 10:49 AM<br>\r\n<b>To:</b>&nbsp;Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating.&nbsp;</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI also have a verbal matter we can discuss soon. Once I\'ve got the deck ready I\'ll find time for a short call with you.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nTalk soon.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJames</div>\r\n<div id=\"m_7859046138643783182x_appendonsend\"></div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div id=\"m_7859046138643783182x_divRplyFwdMsg\">\r\n<div style=\"direction:ltr\"><span style=\"font-family:Calibri,sans-serif;font-size:11pt;color:black\"><b>From:</b>&nbsp;Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 24, 2025 10:07 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</span>\r\n</div>\r\n<div style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for the follow up.&nbsp; You were on my list to contact today!&nbsp;&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Would that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I will let you know if I will be able to make it up to Detroit for The Battery Show.&nbsp;&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to seeing the deck.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">All the best,&nbsp;</div>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a style=\"color:blue;margin:0px\" id=\"m_7859046138643783182OWA90d54842-2faf-de90-7a8d-72df2faa57c2\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_7859046138643783182OWA0e5fa4bd-9870-58c4-8622-78d4cf24a810\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 24, 2025 at 11:59 AM James Trevey &lt;<a id=\"m_7859046138643783182OWAb7c381dc-96e5-45d0-b93e-e2aa9a01935f\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nHey Jordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nThank you for the quick follow up.&nbsp;</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we\'ve decided we\'d like to provide information on additional products to you which are typically not on the menu but I have details\r\n to sort first.&nbsp;</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nRegarding shows, happy to discuss when ready. We\'ll be at The Battery Show in 2 weeks, which I think you should consider attending and I\'d be happy to connect while there.&nbsp;</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJames</div>\r\n<div id=\"m_7859046138643783182x_x_m_-6814561645313625911appendonsend\"></div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div id=\"m_7859046138643783182x_x_m_-6814561645313625911divRplyFwdMsg\">\r\n<div style=\"direction:ltr\"><span style=\"font-family:Calibri,sans-serif;font-size:11pt;color:black\"><b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"m_7859046138643783182OWAb0d22678-bda4-9932-d0a1-907e851cab2c\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Thursday, September 18, 2025 11:03 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"m_7859046138643783182OWAe81f39b0-ec24-b743-ca24-424e13107033\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a id=\"m_7859046138643783182OWA96c03181-9c79-378c-c150-ff2be9067492\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_7859046138643783182OWA2cb5ce13-d9cd-8a95-6b1c-85d355dafacd\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</span>\r\n</div>\r\n<div style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information\r\n to optimize our collaboration and planning:<br>\r\n<br>\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.<br>\r\n<br>\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.<br>\r\n<br>\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.<br>\r\n<br>\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.<br>\r\n<br>\r\nClarify your minimum order quantities and expected pricing for each product line.<br>\r\n<br>\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.<br>\r\n<br>\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted\r\n commercial timelines, and expected pricing.<br>\r\n<br>\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made module and packs for:<br>\r\n<br>\r\n18650:<br>\r\n<br>\r\nNMC: TNL-ITR18650-2600P<br>\r\n<br>\r\nLFP: SW18650-26HPA<br>\r\n<br>\r\nLFP: IFR18650-2000mAh<br>\r\n<br>\r\n21700:<br>\r\n<br>\r\nNMC: INR21700-50S<br>\r\n<br>\r\nNMC: INR21700-4000<br>\r\n<br>\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">In terms of the shows you mentioned, we are getting our schedules aligned so we can attend.&nbsp; What\'s the \"secret meeting\" in Nov?&nbsp;<br>\r\n<br>\r\nWe look forward to your prompt response so we can efficiently move to the next stages.\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Talk soon,&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a style=\"color:blue;margin:0px\" id=\"m_7859046138643783182OWAa894c5d9-0741-6243-3e0e-449171223bec\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_7859046138643783182OWAc8a757c1-67b5-a167-3793-f15be7380064\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 17, 2025 at 7:00 PM James Trevey &lt;<a id=\"m_7859046138643783182OWA13ecdc83-a950-da4e-3b8e-d04e2eb16671\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nThanks for moving quickly here. I got bogged down today but better late than never.&nbsp;</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell has a 100% US supply chain already</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nmillions</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nmillions </u>next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nthousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nmillions</u>&nbsp;next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nthousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n</ul>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.&nbsp;</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI will check with my people on 301 asap.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI look forward to our next communication.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJames</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:black\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:black\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"m_7859046138643783182OWA71ed3287-c884-92d5-1caa-92b1f1d318fa\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 17, 2025 7:56 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"m_7859046138643783182OWA6cd87ac5-84e9-6287-add8-4d889a10f57e\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;; Daniel &lt;<a id=\"m_7859046138643783182OWA9ff34847-3c2d-d41b-7b1a-a902aba2b15b\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_7859046138643783182OWAe23dbbcf-6954-539a-4659-57f697029434\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Gentlemen,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">It was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<ul style=\"direction:ltr\">\r\n<li style=\"direction:ltr\">James to&nbsp;send the cell specification sheets as soon as possible.</li><li style=\"direction:ltr\">LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.</li><li style=\"direction:ltr\">James to&nbsp;send their term sheet template for throughput contracts.</li><li style=\"direction:ltr\">We should discuss 301 exclusion support for manufacturing equipment.</li></ul>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I look forward to our next conversation.&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a style=\"color:blue;margin:0px\" id=\"m_7859046138643783182OWA57ab9852-a4df-04bc-6d07-5846e7a46499\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_7859046138643783182OWA01db43b7-0ffe-3df6-52fa-0845c64c7cef\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n\r\n</div></blockquote></div></div>\r\n<div>&lt;ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes (1).csv&gt;</div></div></blockquote></div></body></html>','Hi James,Would be great to get some pricing and spec sheets.&nbsp;Let me know when we can connect.&nbsp;Best,Jordan G. WroblewskiPartner | President&nbsp;Lithium Battery CompanyDirect:&nbsp;(917) 266-5336jordan@lithiumbatterycompany.comLithium Battery CompanyOn Sep 30, 2025, at 4:31 PM, Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt; wrote:﻿Hi James,I have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.Looking forward to our discussion and seeing your deck of prospective projects.&nbsp;&nbsp;Best,&nbsp;Jordan G. WroblewskiPartner | President&nbsp;Lithium Battery CompanyDirect: (917) 266-5336jordan@lithiumbatterycompany.comLithium Battery CompanyOn Fri, Sep 26, 2025 at 4:59 PM James Trevey &lt;jtrevey@forgenano.com&gt; wrote:\r\n\r\n\r\n\r\n\r\n\r\n\r\nJordan,\r\n\r\n\r\n\r\n\r\nI won\'t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products.&nbsp;\r\n\r\n\r\n\r\n\r\nI\'ll send to you as soon as I can next week.\r\n\r\n\r\n\r\n\r\nJames\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFrom:&nbsp;James Trevey &lt;jtrevey@forgenano.com&gt;\r\nSent:&nbsp;Wednesday, September 24, 2025 10:49 AM\r\nTo:&nbsp;Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;\r\nCc:&nbsp;Daniel &lt;dansheridanmusic@gmail.com&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;\r\nSubject:&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration \r\n\r\n\r\n\r\n\r\nJordan,\r\n\r\n\r\n\r\n\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating.&nbsp;\r\n\r\n\r\n\r\n\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?\r\n\r\n\r\n\r\n\r\nI also have a verbal matter we can discuss soon. Once I\'ve got the deck ready I\'ll find time for a short call with you.\r\n\r\n\r\n\r\n\r\nTalk soon.\r\n\r\n\r\n\r\n\r\nJames\r\n\r\n\r\n\r\nFrom:&nbsp;Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;\r\nSent:&nbsp;Wednesday, September 24, 2025 10:07 AM\r\nTo:&nbsp;James Trevey &lt;jtrevey@forgenano.com&gt;\r\nCc:&nbsp;Daniel &lt;dansheridanmusic@gmail.com&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;\r\nSubject:&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration\r\n\r\n&nbsp;\r\n\r\nHi James,\r\n\r\n\r\nThank you for the follow up.&nbsp; You were on my list to contact today!&nbsp;&nbsp;\r\n\r\n\r\nWould that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...\r\n\r\n\r\nI will let you know if I will be able to make it up to Detroit for The Battery Show.&nbsp;&nbsp;\r\n\r\n\r\nLooking forward to seeing the deck.\r\n\r\n\r\nAll the best,&nbsp;\r\n\r\n\r\nJordan G. Wroblewski\r\nPartner | President&nbsp;\r\n\r\nLithium Battery Company\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com\r\nLithium\r\n Battery Company\r\n\r\n\r\n\r\n\r\nOn Wed, Sep 24, 2025 at 11:59 AM James Trevey &lt;jtrevey@forgenano.com&gt; wrote:\r\n\r\n\r\n\r\nHey Jordan,\r\n\r\n\r\n\r\n\r\nThank you for the quick follow up.&nbsp;\r\n\r\n\r\n\r\n\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we\'ve decided we\'d like to provide information on additional products to you which are typically not on the menu but I have details\r\n to sort first.&nbsp;\r\n\r\n\r\n\r\n\r\nRegarding shows, happy to discuss when ready. We\'ll be at The Battery Show in 2 weeks, which I think you should consider attending and I\'d be happy to connect while there.&nbsp;\r\n\r\n\r\n\r\n\r\nJames\r\n\r\n\r\n\r\nFrom:&nbsp;Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;\r\nSent:&nbsp;Thursday, September 18, 2025 11:03 AM\r\nTo:&nbsp;James Trevey &lt;jtrevey@forgenano.com&gt;\r\nCc:&nbsp;Daniel &lt;dansheridanmusic@gmail.com&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;\r\nSubject:&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration\r\n\r\n&nbsp;\r\n\r\nHi James,\r\n\r\n\r\n\r\n\r\nThank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information\r\n to optimize our collaboration and planning:\r\n\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.\r\n\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.\r\n\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.\r\n\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.\r\n\r\nClarify your minimum order quantities and expected pricing for each product line.\r\n\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.\r\n\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted\r\n commercial timelines, and expected pricing.\r\n\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made module and packs for:\r\n\r\n18650:\r\n\r\nNMC: TNL-ITR18650-2600P\r\n\r\nLFP: SW18650-26HPA\r\n\r\nLFP: IFR18650-2000mAh\r\n\r\n21700:\r\n\r\nNMC: INR21700-50S\r\n\r\nNMC: INR21700-4000\r\n\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.\r\n\r\n\r\n\r\nIn terms of the shows you mentioned, we are getting our schedules aligned so we can attend.&nbsp; What\'s the \"secret meeting\" in Nov?&nbsp;\r\n\r\nWe look forward to your prompt response so we can efficiently move to the next stages.\r\n\r\n\r\n\r\n\r\n\r\nTalk soon,&nbsp;\r\n\r\n\r\nJordan G. Wroblewski\r\nPartner | President&nbsp;\r\n\r\nLithium Battery Company\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com\r\nLithium\r\n Battery Company\r\n\r\n\r\n\r\n\r\nOn Wed, Sep 17, 2025 at 7:00 PM James Trevey &lt;jtrevey@forgenano.com&gt; wrote:\r\n\r\n\r\n\r\nJordan,\r\n\r\n\r\n\r\n\r\nThanks for moving quickly here. I got bogged down today but better late than never.&nbsp;\r\n\r\n\r\n\r\n\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:\r\n\r\n\r\n\r\n\r\n\r\nSC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)\r\n\r\n\r\nThis cell has a 100% US supply chain already\r\n\r\nThis cell can be made in the \r\nmillions&nbsp;next year by our partner in the EU, until our factory is online in 2027\r\n\r\n\r\nSC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)\r\n\r\n\r\nThis cell is 50% US and 50% non-FEOC currently\r\n\r\nThis cell can be made in the \r\nmillions next year by our partner in the EU, until our factory is online in 2027\r\n\r\n\r\nSC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.\r\n\r\n\r\nThis cell is 50% US and 50% non-FEOC currently\r\n\r\nThis cell can be made in the \r\nthousands&nbsp;next year by our partner in the EU, until our factory is online in 2027\r\n\r\n\r\nSC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)\r\n\r\n\r\nThis cell is 50% US and 50% non-FEOC currently\r\n\r\nThis cell can be made in the \r\nmillions&nbsp;next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these\r\n\r\n\r\nSC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)\r\n\r\n\r\nThis cell is 50% US and 50% non-FEOC currently\r\n\r\nThis cell can be made in the \r\nthousands&nbsp;next year by our partner in the EU, until our factory is online in 2027\r\n\r\n\r\n\r\n\r\n\r\n\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.\r\n\r\n\r\n\r\n\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.&nbsp;\r\n\r\n\r\n\r\n\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?\r\n\r\n\r\n\r\n\r\nI will check with my people on 301 asap.\r\n\r\n\r\n\r\n\r\nI look forward to our next communication.\r\n\r\n\r\n\r\n\r\nJames\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFrom:&nbsp;Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;\r\nSent:&nbsp;Wednesday, September 17, 2025 7:56 AM\r\nTo:&nbsp;James Trevey &lt;jtrevey@forgenano.com&gt;; Daniel &lt;dansheridanmusic@gmail.com&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;\r\nSubject:&nbsp;Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration\r\n\r\n\r\n\r\nGentlemen,\r\n\r\n\r\nIt was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:\r\n\r\n\r\n\r\nJames to&nbsp;send the cell specification sheets as soon as possible.LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.James to&nbsp;send their term sheet template for throughput contracts.We should discuss 301 exclusion support for manufacturing equipment.\r\n\r\n\r\nI look forward to our next conversation.&nbsp;\r\n\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\nPartner | President&nbsp;\r\nLithium Battery Company\r\nDirect: (917) 266-5336\r\njordan@lithiumbatterycompany.com\r\nLithium\r\n Battery Company\r\n\r\n\r\n\r\n\r\n\r\n&lt;ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes (1).csv&gt;',0,0,0,0,0,0,'2025-10-16 13:16:07','2025-12-09 19:29:37','2025-12-09 19:29:37','2025-12-09 19:29:37',NULL,NULL,NULL),
(857,4,' <SA1PR18MB48241BA4E62D518145F68459A1E9A@SA1PR18MB4824.namprd18.prod.outlook.com>',NULL,NULL,'Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration','jtrevey@forgenano.com','James Trevey','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nHey Jordan,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nApologies for the slow/no replies recently. Travel has been brutal.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nWe\'ve got a lot of the information ready for you. Can we schedule a call to do a walk through on Monday the 20th at 9am or 10am ET?</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nJames</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b> Thursday, October 16, 2025 9:16 AM<br>\r\n<b>To:</b> James Trevey &lt;jtrevey@forgenano.com&gt;<br>\r\n<b>Cc:</b> Daniel &lt;dansheridanmusic@gmail.com&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div dir=\"auto\">Hi James,\r\n<div><br>\r\n</div>\r\n<div>Would be great to get some pricing and spec sheets.&nbsp;</div>\r\n<div><br>\r\n</div>\r\n<div>Let me know when we can connect.&nbsp;</div>\r\n<div><br>\r\n</div>\r\n<div>Best,</div>\r\n<div><br id=\"x_lineBreakAtBeginningOfSignature\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Direct:&nbsp;<span dir=\"ltr\">(917) 266-5336</span><br>\r\n</span></p>\r\n<p style=\"margin:0in\"><u style=\"background-color:rgba(255,255,255,0)\">jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"margin:0px\">@lithiumbatterycompany.com</a></u></p>\r\n<p style=\"margin:0in\"><a href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,kruzcWrtQAWBE_Wzkk5ZCPi8egnieSOSjhsFO2fIO_mt3sy1dInRgNFjLY-Xwbk4dmY7rgbxINSGlle76-Yg-vEcypX9dPm0sX9KSwuuDZUbmg,,&amp;typo=1\" target=\"_blank\" style=\"background-color:rgba(255,255,255,0)\"><font color=\"#ffffff\">Lithium\r\n Battery Company</font></a></p>\r\n<p style=\"margin:0in\"></p>\r\n<p style=\"margin:0in\"></p>\r\n</div>\r\n<div dir=\"ltr\"><br>\r\n<blockquote type=\"cite\">On Sep 30, 2025, at 4:31 PM, Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt; wrote:<br>\r\n<br>\r\n</blockquote>\r\n</div>\r\n<blockquote type=\"cite\">\r\n<div dir=\"ltr\">﻿\r\n<div dir=\"ltr\">\r\n<div dir=\"ltr\">\r\n<div>Hi James,</div>\r\n<div><br>\r\n</div>\r\n<div>\r\n<div>\r\n<div>I have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.</div>\r\n</div>\r\n<div><br>\r\n</div>\r\n</div>\r\n<div>Looking forward to our discussion and seeing your deck of prospective projects.&nbsp;&nbsp;</div>\r\n<div><br>\r\n</div>\r\n<div>Best,&nbsp;</div>\r\n<div>\r\n<div dir=\"ltr\" class=\"x_gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\"><br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,KG7OlMyZO9jbLU5vTJ3I8lMhBaHdNf06-ktzHMDOUSoCImrfUczbXUj1d1VcQUh_ApKsyrkLO9FO7PzcinsYewUWoskpuT9EKlrhqSI22A,,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n</div>\r\n<br>\r\n<div class=\"x_gmail_quote x_gmail_quote_container\">\r\n<div dir=\"ltr\" class=\"x_gmail_attr\">On Fri, Sep 26, 2025 at 4:59 PM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote class=\"x_gmail_quote\" style=\"margin:0px 0px 0px 0.8ex; border-left:1px solid rgb(204,204,204); padding-left:1ex\">\r\n<div class=\"x_msg7859046138643783182\">\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI won\'t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products.&nbsp;</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI\'ll send to you as soon as I can next week.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_m_7859046138643783182appendonsend\"></div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block; width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 24, 2025 10:49 AM<br>\r\n<b>To:</b>&nbsp;Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI also have a verbal matter we can discuss soon. Once I\'ve got the deck ready I\'ll find time for a short call with you.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nTalk soon.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJames</div>\r\n<div id=\"x_m_7859046138643783182x_appendonsend\"></div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_m_7859046138643783182x_divRplyFwdMsg\">\r\n<div style=\"direction:ltr\"><span style=\"font-family:Calibri,sans-serif; font-size:11pt; color:black\"><b>From:</b>&nbsp;Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 24, 2025 10:07 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</span>\r\n</div>\r\n<div style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for the follow up.&nbsp; You were on my list to contact today!&nbsp;&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Would that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I will let you know if I will be able to make it up to Detroit for The Battery Show.&nbsp;&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to seeing the deck.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">All the best,&nbsp;</div>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_7859046138643783182OWA90d54842-2faf-de90-7a8d-72df2faa57c2\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_7859046138643783182OWA0e5fa4bd-9870-58c4-8622-78d4cf24a810\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 24, 2025 at 11:59 AM James Trevey &lt;<a id=\"x_m_7859046138643783182OWAb7c381dc-96e5-45d0-b93e-e2aa9a01935f\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; padding-left:1ex; border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nHey Jordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nThank you for the quick follow up.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we\'ve decided we\'d like to provide information on additional products to you which are typically not on the menu but I have details\r\n to sort first.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nRegarding shows, happy to discuss when ready. We\'ll be at The Battery Show in 2 weeks, which I think you should consider attending and I\'d be happy to connect while there.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJames</div>\r\n<div id=\"x_m_7859046138643783182x_x_m_-6814561645313625911appendonsend\"></div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_m_7859046138643783182x_x_m_-6814561645313625911divRplyFwdMsg\">\r\n<div style=\"direction:ltr\"><span style=\"font-family:Calibri,sans-serif; font-size:11pt; color:black\"><b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_7859046138643783182OWAb0d22678-bda4-9932-d0a1-907e851cab2c\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Thursday, September 18, 2025 11:03 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_7859046138643783182OWAe81f39b0-ec24-b743-ca24-424e13107033\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a id=\"x_m_7859046138643783182OWA96c03181-9c79-378c-c150-ff2be9067492\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"x_m_7859046138643783182OWA2cb5ce13-d9cd-8a95-6b1c-85d355dafacd\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</span>\r\n</div>\r\n<div style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information\r\n to optimize our collaboration and planning:<br>\r\n<br>\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.<br>\r\n<br>\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.<br>\r\n<br>\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.<br>\r\n<br>\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.<br>\r\n<br>\r\nClarify your minimum order quantities and expected pricing for each product line.<br>\r\n<br>\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.<br>\r\n<br>\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted\r\n commercial timelines, and expected pricing.<br>\r\n<br>\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made module and packs for:<br>\r\n<br>\r\n18650:<br>\r\n<br>\r\nNMC: TNL-ITR18650-2600P<br>\r\n<br>\r\nLFP: SW18650-26HPA<br>\r\n<br>\r\nLFP: IFR18650-2000mAh<br>\r\n<br>\r\n21700:<br>\r\n<br>\r\nNMC: INR21700-50S<br>\r\n<br>\r\nNMC: INR21700-4000<br>\r\n<br>\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">In terms of the shows you mentioned, we are getting our schedules aligned so we can attend.&nbsp; What\'s the &quot;secret meeting&quot; in Nov?&nbsp;<br>\r\n<br>\r\nWe look forward to your prompt response so we can efficiently move to the next stages.\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Talk soon,&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_7859046138643783182OWAa894c5d9-0741-6243-3e0e-449171223bec\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_7859046138643783182OWAc8a757c1-67b5-a167-3793-f15be7380064\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 17, 2025 at 7:00 PM James Trevey &lt;<a id=\"x_m_7859046138643783182OWA13ecdc83-a950-da4e-3b8e-d04e2eb16671\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; padding-left:1ex; border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nThanks for moving quickly here. I got bogged down today but better late than never.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell has a 100% US supply chain already</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions\r\n</u>next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>thousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions</u>&nbsp;next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>thousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n</ul>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI will check with my people on 301 asap.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI look forward to our next communication.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJames</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:black\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:black\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_7859046138643783182OWA71ed3287-c884-92d5-1caa-92b1f1d318fa\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 17, 2025 7:56 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_7859046138643783182OWA6cd87ac5-84e9-6287-add8-4d889a10f57e\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;; Daniel &lt;<a id=\"x_m_7859046138643783182OWA9ff34847-3c2d-d41b-7b1a-a902aba2b15b\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"x_m_7859046138643783182OWAe23dbbcf-6954-539a-4659-57f697029434\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Gentlemen,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">It was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<ul style=\"direction:ltr\">\r\n<li style=\"direction:ltr\">James to&nbsp;send the cell specification sheets as soon as possible.</li><li style=\"direction:ltr\">LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.</li><li style=\"direction:ltr\">James to&nbsp;send their term sheet template for throughput contracts.</li><li style=\"direction:ltr\">We should discuss 301 exclusion support for manufacturing equipment.</li></ul>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I look forward to our next conversation.&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_7859046138643783182OWA57ab9852-a4df-04bc-6d07-5846e7a46499\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_7859046138643783182OWA01db43b7-0ffe-3df6-52fa-0845c64c7cef\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n<div>&lt;ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes (1).csv&gt;</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Hey Jordan,\r\n\r\nApologies for the slow/no replies recently. Travel has been brutal.\r\n\r\nWe\'ve got a lot of the information ready for you. Can we schedule a call to do a walk through on Monday the 20th at 9am or 10am ET?\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\nSent: Thursday, October 16, 2025 9:16 AM\r\nTo: James Trevey <jtrevey@forgenano.com>\r\nCc: Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nWould be great to get some pricing and spec sheets.\r\n\r\nLet me know when we can connect.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,kruzcWrtQAWBE_Wzkk5ZCPi8egnieSOSjhsFO2fIO_mt3sy1dInRgNFjLY-Xwbk4dmY7rgbxINSGlle76-Yg-vEcypX9dPm0sX9KSwuuDZUbmg,,&typo=1>\r\n\r\nOn Sep 30, 2025, at 4:31 PM, Jordan Wroblewski <jordan@lithiumbatterycompany.com> wrote:\r\n\r\n﻿\r\nHi James,\r\n\r\nI have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.\r\n\r\nLooking forward to our discussion and seeing your deck of prospective projects.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,KG7OlMyZO9jbLU5vTJ3I8lMhBaHdNf06-ktzHMDOUSoCImrfUczbXUj1d1VcQUh_ApKsyrkLO9FO7PzcinsYewUWoskpuT9EKlrhqSI22A,,&typo=1>\r\n\r\n\r\nOn Fri, Sep 26, 2025 at 4:59 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nJordan,\r\n\r\nI won\'t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products.\r\n\r\nI\'ll send to you as soon as I can next week.\r\n\r\nJames\r\n\r\n\r\n\r\n\r\n________________________________\r\nFrom: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nSent: Wednesday, September 24, 2025 10:49 AM\r\nTo: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nJordan,\r\n\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating.\r\n\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?\r\n\r\nI also have a verbal matter we can discuss soon. Once I\'ve got the deck ready I\'ll find time for a short call with you.\r\n\r\nTalk soon.\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Wednesday, September 24, 2025 10:07 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nThank you for the follow up.  You were on my list to contact today!\r\n\r\nWould that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...\r\n\r\nI will let you know if I will be able to make it up to Detroit for The Battery Show.\r\n\r\nLooking forward to seeing the deck.\r\n\r\nAll the best,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&typo=1>\r\n\r\n\r\nOn Wed, Sep 24, 2025 at 11:59 AM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nHey Jordan,\r\n\r\nThank you for the quick follow up.\r\n\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we\'ve decided we\'d like to provide information on additional products to you which are typically not on the menu but I have details to sort first.\r\n\r\nRegarding shows, happy to discuss when ready. We\'ll be at The Battery Show in 2 weeks, which I think you should consider attending and I\'d be happy to connect while there.\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Thursday, September 18, 2025 11:03 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\n\r\nThank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information to optimize our collaboration and planning:\r\n\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.\r\n\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.\r\n\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.\r\n\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.\r\n\r\nClarify your minimum order quantities and expected pricing for each product line.\r\n\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.\r\n\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted commercial timelines, and expected pricing.\r\n\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made module and packs for:\r\n\r\n18650:\r\n\r\nNMC: TNL-ITR18650-2600P\r\n\r\nLFP: SW18650-26HPA\r\n\r\nLFP: IFR18650-2000mAh\r\n\r\n21700:\r\n\r\nNMC: INR21700-50S\r\n\r\nNMC: INR21700-4000\r\n\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.\r\n\r\nIn terms of the shows you mentioned, we are getting our schedules aligned so we can attend.  What\'s the \"secret meeting\" in Nov?\r\n\r\nWe look forward to your prompt response so we can efficiently move to the next stages.\r\n\r\n\r\nTalk soon,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&typo=1>\r\n\r\n\r\nOn Wed, Sep 17, 2025 at 7:00 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nJordan,\r\n\r\nThanks for moving quickly here. I got bogged down today but better late than never.\r\n\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:\r\n\r\n\r\n  *\r\nSC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)\r\n     *\r\nThis cell has a 100% US supply chain already\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the thousands next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these\r\n  *\r\nSC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the thousands next year by our partner in the EU, until our factory is online in 2027\r\n\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.\r\n\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.\r\n\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret meeting on November 5th in DC?\r\n\r\nI will check with my people on 301 asap.\r\n\r\nI look forward to our next communication.\r\n\r\nJames\r\n\r\n\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Wednesday, September 17, 2025 7:56 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>; Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nGentlemen,\r\n\r\nIt was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:\r\n\r\n\r\n  *   James to send the cell specification sheets as soon as possible.\r\n  *   LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.\r\n  *   James to send their term sheet template for throughput contracts.\r\n  *   We should discuss 301 exclusion support for manufacturing equipment.\r\n\r\nI look forward to our next conversation.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&typo=1>\r\n\r\n<ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes (1).csv>\r\n',0,0,0,0,0,0,'2025-10-16 13:19:15','2025-12-09 19:29:38','2025-12-09 19:29:38','2025-12-09 19:29:38',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(858,4,'<PH3PPFCA48BBAFB66CB0AB7C4E23A0D4B9ACAE9A@PH3PPFCA48BBAFB.namprd22.prod.outlook.com>',NULL,NULL,'RE: DragonPlate Contact','bdorsch@allredcorp.com','Billy Dorsch','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon0, li.airmailon0, div.airmailon0\r\n	{mso-style-name:airmailon;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon00, li.airmailon00, div.airmailon00\r\n	{mso-style-name:airmailon0;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle23\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;\r\n	font-weight:normal;\r\n	font-style:normal;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Hey Rick, <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><br>\r\nI was able to connect with JB yesterday, and he is currently in a meeting with management, discussing your request. I will be in touch once they have updated me on things. You will hear from me no later than EOD today regarding this matter.\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><br>\r\nThank you, <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Billy <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, October 15, 2025 7:55 PM<br>\r\n<b>To:</b> Billy Dorsch &lt;bdorsch@allredcorp.com&gt;<br>\r\n<b>Subject:</b> RE: DragonPlate Contact<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"background:#FFCCDD\"><b><span style=\"color:black\">EXTERNAL EMAIL:</span></b><span style=\"font-size:10.0pt;color:black\">Be cautious with links and attachments.</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p style=\"margin:0in\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Just checking if you had any updates..</span><o:p></o:p></p>\r\n<p style=\"margin:0in\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Thanks!</span><o:p></o:p></p>\r\n<p style=\"margin:0in\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Rick</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"airmailon\">On July 24, 2025 at 4:02:57<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM, Billy Dorsch (<a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Hi Rick,\r\n<br>\r\n<br>\r\nThis is a quick update to keep you in the loop. I will be meeting with JB in the EOD meeting today. I got bumped from an earlier time slot for a pressing matter. I will still be following up; I just didn’t want to go too long without updating you.\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\"><br>\r\nThank you, <br>\r\nBilly </span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Thursday, July 24, 2025 7:05 AM<br>\r\n<b>To:</b> Billy Dorsch &lt;<a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>&gt;<br>\r\n<b>Subject:</b> RE: DragonPlate Contact</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;background:#FFCCDD\">\r\n<b><span style=\"font-family:&quot;Helvetica&quot;,sans-serif;color:black\">EXTERNAL EMAIL:</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Be cautious with links and attachments.</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Here’s what I’ve pulled from your website…</span><o:p></o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Can you help with these prices?</span><o:p></o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"1120\" height=\"272\" style=\"width:11.6666in;height:2.8333in\" id=\"_x0000_i1029\" src=\"cid:image001.png@01DBFCB4.3EE6AF60\"></span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<div id=\"bloop_sign_1753355068585249792\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a></span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" id=\"_x0000_i1028\" src=\"file://Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"airmailon0\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">On July 16, 2025 at 11:36:45 AM, Billy Dorsch (<a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>) wrote:</span><o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Rick,\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">You are very welcome. I am meeting with JB this afternoon to discuss&nbsp;this; he’s had a lot of things to catch up\r\n on Monday and Tuesday. I will reach out after he and I connect on the&nbsp;next steps.\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><br>\r\nEnjoy Miami! Safe travels, and I will be in touch later today. <br>\r\n<br>\r\nThanks, <br>\r\nBilly </span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, July 16, 2025 7:41 AM<br>\r\n<b>To:</b> Billy Dorsch &lt;<a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>&gt;<br>\r\n<b>Subject:</b> Re: DragonPlate Contact</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;background:#FFCCDD\">\r\n<b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">EXTERNAL EMAIL:</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Be cautious with links and attachments.</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Billy - thanks for the update.</span><o:p></o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I was traveling a bit this week (in Miami today).</span><o:p></o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Could you please provide an update on this?</span><o:p></o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks!</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick</span><o:p></o:p></p>\r\n<div id=\"bloop_sign_1752666009672701952\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a></span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" id=\"_x0000_i1027\" src=\"file://Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"airmailon00\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">On July 11, 2025 at 11:16:54 AM, Billy Dorsch (<a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>) wrote:</span><o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Rick,\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I\'m sorry for not getting this email out sooner. I just wanted to update you on the status of your request. I pinged\r\n the team yesterday, and today I see that a few of the folks I wanted to talk to aren’t in the office today. I have emailed our founder/president, JB Allred, to see his schedule for next week so we can arrange a call to discuss. I will let you know as soon\r\n as I hear from JB, who oversees our Engineering team. I don’t want too much time to pass, so I hope we can schedule something for early next week.\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">There is a chance I may not hear from JB until Monday morning, as he is currently out of the office today. Let\r\n me know if you have any open availability early next week, and I can bounce those off JB so we can sync up.\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks again, Rick. I look forward to your feedback and connecting with you next week!</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Best,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Billy Dorsch\r\n</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Sales, Allred &amp; Associates</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>&nbsp;&nbsp; &nbsp;(315) 612-3876&nbsp; &nbsp;<a href=\"http://www.allredcorp.com/\">www.allredcorp.com</a></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">321 NY Rt. 5 Elbridge, NY 13060, USA</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"103\" height=\"78\" style=\"width:1.0729in;height:.8125in\" id=\"_x0000_i1026\" src=\"cid:image002.jpg@01DBFCB4.3EE6AF60\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"82\" height=\"79\" style=\"width:.8541in;height:.8229in\" id=\"_x0000_i1025\" src=\"cid:image003.jpg@01DBFCB4.3EE6AF60\"></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Hey Rick,\r\n\r\nI was able to connect with JB yesterday, and he is currently in a meeting with management, discussing your request. I will be in touch once they have updated me on things. You will hear from me no later than EOD today regarding this matter.\r\n\r\nThank you,\r\nBilly\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Wednesday, October 15, 2025 7:55 PM\r\nTo: Billy Dorsch <bdorsch@allredcorp.com>\r\nSubject: RE: DragonPlate Contact\r\n\r\nEXTERNAL EMAIL:Be cautious with links and attachments.\r\n\r\n\r\nJust checking if you had any updates..\r\n\r\nThanks!\r\n\r\nRick\r\n\r\n\r\nOn July 24, 2025 at 4:02:57 PM, Billy Dorsch (bdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>) wrote:\r\nHi Rick,\r\n\r\nThis is a quick update to keep you in the loop. I will be meeting with JB in the EOD meeting today. I got bumped from an earlier time slot for a pressing matter. I will still be following up; I just didn’t want to go too long without updating you.\r\n\r\nThank you,\r\nBilly\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Thursday, July 24, 2025 7:05 AM\r\nTo: Billy Dorsch <bdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>>\r\nSubject: RE: DragonPlate Contact\r\n\r\nEXTERNAL EMAIL:Be cautious with links and attachments.\r\n\r\nHere’s what I’ve pulled from your website…\r\nCan you help with these prices?\r\n\r\n[cid:image001.png@01DBFCB4.3EE6AF60]\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn July 16, 2025 at 11:36:45 AM, Billy Dorsch (bdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>) wrote:\r\nHi Rick,\r\n\r\nYou are very welcome. I am meeting with JB this afternoon to discuss this; he’s had a lot of things to catch up on Monday and Tuesday. I will reach out after he and I connect on the next steps.\r\n\r\nEnjoy Miami! Safe travels, and I will be in touch later today.\r\n\r\nThanks,\r\nBilly\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Wednesday, July 16, 2025 7:41 AM\r\nTo: Billy Dorsch <bdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>>\r\nSubject: Re: DragonPlate Contact\r\n\r\nEXTERNAL EMAIL:Be cautious with links and attachments.\r\n\r\nHi Billy - thanks for the update.\r\nI was traveling a bit this week (in Miami today).\r\nCould you please provide an update on this?\r\nThanks!\r\nRick\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn July 11, 2025 at 11:16:54 AM, Billy Dorsch (bdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>) wrote:\r\nHi Rick,\r\n\r\nI\'m sorry for not getting this email out sooner. I just wanted to update you on the status of your request. I pinged the team yesterday, and today I see that a few of the folks I wanted to talk to aren’t in the office today. I have emailed our founder/president, JB Allred, to see his schedule for next week so we can arrange a call to discuss. I will let you know as soon as I hear from JB, who oversees our Engineering team. I don’t want too much time to pass, so I hope we can schedule something for early next week.\r\n\r\nThere is a chance I may not hear from JB until Monday morning, as he is currently out of the office today. Let me know if you have any open availability early next week, and I can bounce those off JB so we can sync up.\r\n\r\nThanks again, Rick. I look forward to your feedback and connecting with you next week!\r\n\r\nBest,\r\n\r\nBilly Dorsch\r\nSales, Allred & Associates\r\nbdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>    (315) 612-3876   www.allredcorp.com<http://www.allredcorp.com/>\r\n321 NY Rt. 5 Elbridge, NY 13060, USA\r\n[cid:image002.jpg@01DBFCB4.3EE6AF60] [cid:image003.jpg@01DBFCB4.3EE6AF60]\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-10-16 15:44:33','2025-12-09 19:29:38','2025-12-09 19:29:38','2025-12-09 19:29:38',NULL,NULL,NULL),
(859,4,' <BN8PR05MB59550DECBB87EC84B0EFD426F5E9A@BN8PR05MB5955.namprd05.prod.outlook.com>',NULL,NULL,'RE: Introduction','regina.rabitaille@nelsonmullins.com','Regina Rabitaille','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle20\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Hi Rick –<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">It is nice to meet you via email.&nbsp; I am copying Chris Perez to find a time that works.&nbsp; Thank you.<o:p></o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"370\" style=\"width:277.5pt\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" style=\"width:100.0%;padding:0in 0in 10.5pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><img width=\"260\" height=\"84\" style=\"width:2.7083in;height:.875in\" id=\"_x0000_i1028\" src=\"https://www.nelsonmullins.com/img/ecard-logo-125.png\"></span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"100%\" style=\"width:100.0%;padding:0in 0in 0in 0in\">\r\n<div style=\"mso-element:para-border-div;border:none;border-top:solid #D1D2D4 1.5pt;padding:12.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3.0pt;border:none;padding:0in\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">REGINA RABITAILLE&nbsp;&nbsp;</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#659BC5;letter-spacing:.75pt\">PARTNER</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">\r\n<o:p></o:p></span></b></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:6.75pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"mailto:regina.rabitaille@nelsonmullins.com\"><span style=\"font-size:7.0pt;color:#676D72;text-decoration:none\">regina.rabitaille@nelsonmullins.com</span></a>\r\n<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">390 NORTH ORANGE AVENUE&nbsp;|&nbsp;SUITE 1400<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">ORLANDO,&nbsp;FL&nbsp;32801<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">T</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.669.4209</span>&nbsp;&nbsp;\r\n</span></b><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">F</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.425.8377</span>&nbsp;&nbsp;\r\n<o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"100%\" style=\"width:100.0%;padding:0in 0in 0in 0in\">\r\n<div style=\"mso-element:para-border-div;border:none;border-bottom:solid #D1D2D4 1.5pt;padding:0in 0in 16.0pt 0in\">\r\n<p class=\"MsoNormal\" style=\"border:none;padding:0in\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"https://www.nelsonmullins.com\"><span style=\"color:#676D72;text-decoration:none\">NELSONMULLINS.COM</span></a>&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"https://www.nelsonmullins.com/professionals/regina-rabitaille/vcard\"><span style=\"color:#659BC5;text-decoration:none\">VCARD</span></a>&nbsp;&nbsp;<a href=\"https://www.nelsonmullins.com/professionals/regina-rabitaille\"><span style=\"color:#355989;text-decoration:none\">VIEW\r\n BIO</span></a> <o:p></o:p></span></b></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, October 15, 2025 12:31 PM<br>\r\n<b>To:</b> Brian Stufflebean &lt;brian@mavrix.one&gt;; Regina Rabitaille &lt;regina.rabitaille@nelsonmullins.com&gt;<br>\r\n<b>Subject:</b> Re: Introduction<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-line-height-alt:.75pt\"><span style=\"font-size:1.0pt;color:white\">Hi Regina, Thank you, Brian. I’d like to schedule a time to discuss establishing a Trust. Please let me know your availability for a brief meeting at your convenience.\r\n Respectuflly, Rick Rick Mislan, PhD, Founder, CTO https:</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">//mavrix1.</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">com\r\n CONFIDENTIALITY<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-line-height-alt:.75pt\"><span style=\"font-size:1.0pt;color:white\"><o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\">Hi Regina,<o:p></o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\">Thank you, Brian.<o:p></o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\">I’d like to schedule a time to discuss establishing a Trust.&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\">Please let me know your availability for a brief meeting at your convenience.<o:p></o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\">Respectuflly,<o:p></o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\">Rick<o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div id=\"bloop_sign_1760545686447803904\">\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Rick Mislan, PhD,&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Founder, CTO<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><img border=\"0\" width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"ATTACH_attach_6d6573736167655f315f31323736_35324141434136342d423436382d343238352d423543342d383338463637303746464343_35333544443832312d464239312d343942372d414135392d424242443643324143354235_0\" src=\"cid:image001.png@01DC3EBA.7BA1E940\"><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><a href=\"https://urldefense.com/v3/__https:/mavrix1.com__;!!LBFcHN3WCgnqDQ!kTUA5CFGDuBYQcrZ0QzfVTAY9QxGmbDG0qeYG19ysAClC6LC2qURc0UeyHn-bs-lRDEVnD_DuVYtxBqYsEIfOTmwDA$\">https://mavrix1.com</a><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><b><u><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">CONFIDENTIALITY NOTICE</span></u></b><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><i><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended\r\n solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</span></i><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><i><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</span></i><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><i><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government\r\n agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</span></i><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"airmailon\">On October 13, 2025 at 17:42:27, Brian Stufflebean (<a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt\">Rick,</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt\">I would like to introduce you to Regina Rabitaille. &nbsp;Regina is an estate planning attorney with Nelson Mullins, who was referred to me by Roman Petra, Esq. I am certain that she will be able to provide you\r\n with some guidance in your planning.&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt\">I will leave it to you to reach out to her directly. &nbsp;Have a nice evening.&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt\">Her contact information &nbsp;is as follows:</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"370\" style=\"width:277.5pt;font-variant-caps: normal\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" style=\"width:100.0%;padding:0in 0in 10.5pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><img border=\"0\" width=\"260\" height=\"84\" style=\"width:2.7083in;height:.875in\" id=\"Picture_x0020_2\" src=\"cid:image002.png@01DC3EBA.7BA1E940\"></span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"370\" style=\"width:277.5pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-top:solid windowtext 1.5pt;padding:12.0pt 0in 0in 0in;border-color:currentcolor currentcolor;border-image: none\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3.0pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">REGINA RABITAILLE&nbsp;&nbsp;</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#659BC5;letter-spacing:.75pt\">PARTNER</span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:6.75pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"mailto:regina.rabitaille@nelsonmullins.com\"><span style=\"font-size:7.0pt;color:#676D72;text-decoration:none\">regina.rabitaille@nelsonmullins.com</span></a></span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">390 NORTH ORANGE AVENUE&nbsp;|&nbsp;SUITE 1400</span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">ORLANDO,&nbsp;FL&nbsp;32801</span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">T</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.669.4209</span>&nbsp;&nbsp;&nbsp;</span></b><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">F</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.425.8377</span>&nbsp;&nbsp;</span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"370\" style=\"width:277.5pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-bottom:solid windowtext 1.5pt;padding:0in 0in 16.0pt 0in;border-color:currentcolor currentcolor rgb(209, 210, 212);border-image: none\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"https://www.nelsonmullins.com/\"><span style=\"color:#676D72;text-decoration:none\">NELSONMULLINS.COM</span></a>&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"https://www.nelsonmullins.com/professionals/regina-rabitaille/vcard\"><span style=\"color:#659BC5;text-decoration:none\">VCARD</span></a>&nbsp;&nbsp;<a href=\"https://www.nelsonmullins.com/professionals/regina-rabitaille\"><span style=\"color:#355989;text-decoration:none\">VIEW\r\n BIO</span></a></span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Best regards,</span><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Brian C. Stufflebean</span></b><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><br>\r\nCEO, Co-Founder<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">(941)545-4153 Direct</span></b><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:8.5pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">(866)896-2423 Fax</span><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><br>\r\n<img border=\"0\" width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"Picture_x0020_1\" src=\"cid:image001.png@01DC3EBA.7BA1E940\"><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><br>\r\n<br>\r\n<a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><br>\r\n<a href=\"https://urldefense.com/v3/__https:/mavrix1.com__;!!LBFcHN3WCgnqDQ!kTUA5CFGDuBYQcrZ0QzfVTAY9QxGmbDG0qeYG19ysAClC6LC2qURc0UeyHn-bs-lRDEVnD_DuVYtxBqYsEIfOTmwDA$\">https://mavrix1.com/</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<b>CONFIDENTIALITY NOTICE:</b>&nbsp;This&nbsp;communication&nbsp;is confidential&nbsp;and&nbsp;intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, or&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any such&nbsp;actions may be unlawful.\r\n If&nbsp;you have&nbsp;received this communication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the&nbsp;message to inform him or her of the&nbsp;error.<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n<p><strong>Confidentiality Notice</strong><br>\r\nThis message is intended exclusively for the individual or entity to which it is addressed. This communication may contain information that is proprietary, privileged, confidential or otherwise legally exempt from disclosure. If you are not the named addressee,\r\n you are not authorized to read, print, retain, copy or disseminate this message or any part of it. If you have received this message in error, please notify the sender immediately either by phone (800-237-2000) or reply to this e-mail and delete all copies\r\n of this message.</p>\r\n</body>\r\n</html>','Hi Rick –\r\n\r\nIt is nice to meet you via email.  I am copying Chris Perez to find a time that works.  Thank you.\r\n[https://www.nelsonmullins.com/img/ecard-logo-125.png]\r\nREGINA RABITAILLE  PARTNER\r\nregina.rabitaille@nelsonmullins.com<mailto:regina.rabitaille@nelsonmullins.com>\r\n390 NORTH ORANGE AVENUE | SUITE 1400\r\nORLANDO, FL 32801\r\nT 407.669.4209   F 407.425.8377\r\nNELSONMULLINS.COM<https://www.nelsonmullins.com>    VCARD<https://www.nelsonmullins.com/professionals/regina-rabitaille/vcard>  VIEW BIO<https://www.nelsonmullins.com/professionals/regina-rabitaille>\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Wednesday, October 15, 2025 12:31 PM\r\nTo: Brian Stufflebean <brian@mavrix.one>; Regina Rabitaille <regina.rabitaille@nelsonmullins.com>\r\nSubject: Re: Introduction\r\n\r\nHi Regina, Thank you, Brian. I’d like to schedule a time to discuss establishing a Trust. Please let me know your availability for a brief meeting at your convenience. Respectuflly, Rick Rick Mislan, PhD, Founder, CTO https: //mavrix1. com CONFIDENTIALITY\r\n\r\nHi Regina,\r\n\r\nThank you, Brian.\r\n\r\nI’d like to schedule a time to discuss establishing a Trust.\r\nPlease let me know your availability for a brief meeting at your convenience.\r\n\r\nRespectuflly,\r\nRick\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:image001.png@01DC3EBA.7BA1E940]\r\nhttps://mavrix1.com<https://urldefense.com/v3/__https:/mavrix1.com__;!!LBFcHN3WCgnqDQ!kTUA5CFGDuBYQcrZ0QzfVTAY9QxGmbDG0qeYG19ysAClC6LC2qURc0UeyHn-bs-lRDEVnD_DuVYtxBqYsEIfOTmwDA$>\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\nOn October 13, 2025 at 17:42:27, Brian Stufflebean (brian@mavrix.one<mailto:brian@mavrix.one>) wrote:\r\nRick,\r\n\r\nI would like to introduce you to Regina Rabitaille.  Regina is an estate planning attorney with Nelson Mullins, who was referred to me by Roman Petra, Esq. I am certain that she will be able to provide you with some guidance in your planning.\r\n\r\nI will leave it to you to reach out to her directly.  Have a nice evening.\r\n\r\nHer contact information  is as follows:\r\n\r\n[cid:image002.png@01DC3EBA.7BA1E940]\r\nREGINA RABITAILLE  PARTNER\r\nregina.rabitaille@nelsonmullins.com<mailto:regina.rabitaille@nelsonmullins.com>\r\n390 NORTH ORANGE AVENUE | SUITE 1400\r\nORLANDO, FL 32801\r\nT 407.669.4209   F 407.425.8377\r\nNELSONMULLINS.COM<https://www.nelsonmullins.com/>    VCARD<https://www.nelsonmullins.com/professionals/regina-rabitaille/vcard>  VIEW BIO<https://www.nelsonmullins.com/professionals/regina-rabitaille>\r\n\r\n\r\n\r\n\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n[cid:image001.png@01DC3EBA.7BA1E940]\r\n\r\n\r\nbrian@mavrix.one<mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/<https://urldefense.com/v3/__https:/mavrix1.com__;!!LBFcHN3WCgnqDQ!kTUA5CFGDuBYQcrZ0QzfVTAY9QxGmbDG0qeYG19ysAClC6LC2qURc0UeyHn-bs-lRDEVnD_DuVYtxBqYsEIfOTmwDA$>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.\r\n\r\n\r\nConfidentiality Notice\r\nThis message is intended exclusively for the individual or entity to which it is addressed. This communication may contain information that is proprietary, privileged, confidential or otherwise legally exempt from disclosure. If you are not the named addressee, you are not authorized to read, print, retain, copy or disseminate this message or any part of it. If you have received this message in error, please notify the sender immediately either by phone (800-237-2000) or reply to this e-mail and delete all copies of this message.',0,0,0,0,0,0,'2025-10-16 20:32:38','2025-12-09 19:29:38','2025-12-09 19:29:38','2025-12-09 19:29:38',NULL,NULL,NULL),
(860,4,' <SN6PR05MB4048BA15C485F49598C7F429F9F6A@SN6PR05MB4048.namprd05.prod.outlook.com>',NULL,NULL,'RE: Introduction','Chris.Perez@nelsonmullins.com','Chris Perez','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle23\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Good morning, Rick.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">I hope all is well. <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Attorney Regina Rabitaille currently has the following availability.\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">10/20 – 12pm, 1pm<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">10/21 – 9am, 12pm, 2pm<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">10/23 – 12:30pm<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">10/28 – 9am, or between 11am – 4pm<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">10/29 – between 9am – 12pm<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">10/30 – 9am, 10am, or between 2:30pm – 4 pm<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt\">Please also confirm whether you’d prefer an in-person/virtual meeting. Thanks<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Kindest Regards<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"370\" style=\"width:277.5pt\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" colspan=\"2\" style=\"width:100.0%;padding:0in 0in 14.25pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><img width=\"261\" height=\"30\" style=\"width:2.7187in;height:.3125in\" id=\"_x0000_i1030\" src=\"http://www.nelsonmullins.com/img/ecard-logo.png\"></span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"5\" style=\"width:3.75pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<o:p></o:p></span></b></p>\r\n</td>\r\n<td width=\"365\" style=\"width:273.75pt;padding:0in 0in 0in 0in\">\r\n<div style=\"mso-element:para-border-div;border:none;border-top:solid #D1D2D4 1.5pt;padding:12.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3.0pt;border:none;padding:0in\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">CHRIS PEREZ&nbsp;&nbsp;</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#659BC5;letter-spacing:.75pt\">ADMINISTRATIVE\r\n ASSISTANT</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">\r\n<o:p></o:p></span></b></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:6.75pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"mailto:chris.perez@nelsonmullins.com\"><span style=\"font-size:7.0pt;color:#676D72;text-decoration:none\">chris.perez@nelsonmullins.com</span></a>\r\n<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">390 NORTH ORANGE AVENUE&nbsp;|&nbsp;SUITE 1400<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">ORLANDO,&nbsp;FL&nbsp;32801<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">T</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.669.4312</span>&nbsp;&nbsp;\r\n</span></b><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">F</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.425.8377</span>&nbsp;&nbsp;\r\n<o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"5\" style=\"width:3.75pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<o:p></o:p></span></b></p>\r\n</td>\r\n<td width=\"365\" style=\"width:273.75pt;padding:0in 0in 0in 0in\">\r\n<div style=\"mso-element:para-border-div;border:none;border-bottom:solid #D1D2D4 1.5pt;padding:0in 0in 16.0pt 0in\">\r\n<p class=\"MsoNormal\" style=\"border:none;padding:0in\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"http://www.nelsonmullins.com/\"><span style=\"color:#676D72;text-decoration:none\">NELSONMULLINS.COM</span></a>\r\n<o:p></o:p></span></b></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><img border=\"0\" width=\"1\" height=\"1\" style=\"width:.0104in;height:.0104in\" id=\"_x0000_i1029\" src=\"https://u5854562.ct.sendgrid.net/wf/open?upn=m81V51Y9UFBkG2xAk9t-2FLu2MrvXOgvjrSjTB60LOKBh83oHMUwLnv7-2FQ-2BewhfEfCvdxtpj-2B1LUfeGjNwWWshVO09W093G5B1HCPn-2B5gBBpVt-2FtEtK6YVVq0egyZb8ZnPU3ZRNSK0IL-2BdtPx0OnIW13M6SSkl8UwgfKLppmkzrqs1Afj6pETKwkS-2B3Z-2Bs0sT6h-2B2A-2FOPOacPyIWBXMoCQkMdOsJfwiizeBCAKzFp2wcU-3D\"></span><span style=\"font-size:11.0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Regina Rabitaille &lt;regina.rabitaille@nelsonmullins.com&gt;\r\n<br>\r\n<b>Sent:</b> Thursday, October 16, 2025 4:33 PM<br>\r\n<b>To:</b> Rick &lt;rick@mavrix.one&gt;; Brian Stufflebean &lt;brian@mavrix.one&gt;<br>\r\n<b>Cc:</b> Chris Perez &lt;Chris.Perez@nelsonmullins.com&gt;<br>\r\n<b>Subject:</b> RE: Introduction<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Hi Rick –<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">It is nice to meet you via email.&nbsp; I am copying Chris Perez to find a time that works.&nbsp; Thank you.<o:p></o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"370\" style=\"width:277.5pt\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" style=\"width:100.0%;padding:0in 0in 10.5pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><img border=\"0\" width=\"260\" height=\"84\" style=\"width:2.7083in;height:.875in\" id=\"_x0000_i1028\" src=\"https://www.nelsonmullins.com/img/ecard-logo-125.png\"></span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"100%\" style=\"width:100.0%;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-top:solid #D1D2D4 1.5pt;padding:12.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3.0pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">REGINA RABITAILLE&nbsp;&nbsp;</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#659BC5;letter-spacing:.75pt\">PARTNER</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">\r\n<o:p></o:p></span></b></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:6.75pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"mailto:regina.rabitaille@nelsonmullins.com\"><span style=\"font-size:7.0pt;color:#676D72;text-decoration:none\">regina.rabitaille@nelsonmullins.com</span></a>\r\n<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">390 NORTH ORANGE AVENUE&nbsp;|&nbsp;SUITE 1400<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">ORLANDO,&nbsp;FL&nbsp;32801<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">T</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.669.4209</span>&nbsp;&nbsp;\r\n</span></b><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">F</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.425.8377</span>&nbsp;&nbsp;\r\n<o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"100%\" style=\"width:100.0%;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-bottom:solid #D1D2D4 1.5pt;padding:0in 0in 16.0pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"https://www.nelsonmullins.com\"><span style=\"color:#676D72;text-decoration:none\">NELSONMULLINS.COM</span></a>&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"https://www.nelsonmullins.com/professionals/regina-rabitaille/vcard\"><span style=\"color:#659BC5;text-decoration:none\">VCARD</span></a>&nbsp;&nbsp;<a href=\"https://www.nelsonmullins.com/professionals/regina-rabitaille\"><span style=\"color:#355989;text-decoration:none\">VIEW\r\n BIO</span></a> <o:p></o:p></span></b></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, October 15, 2025 12:31 PM<br>\r\n<b>To:</b> Brian Stufflebean &lt;<a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a>&gt;; Regina Rabitaille &lt;<a href=\"mailto:regina.rabitaille@nelsonmullins.com\">regina.rabitaille@nelsonmullins.com</a>&gt;<br>\r\n<b>Subject:</b> Re: Introduction<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-line-height-alt:.75pt\"><span style=\"font-size:1.0pt;color:white\">Hi Regina, Thank you, Brian. I’d like to schedule a time to discuss establishing a Trust. Please let me know your availability for a brief meeting at your convenience.\r\n Respectuflly, Rick Rick Mislan, PhD, Founder, CTO https:</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">//mavrix1.</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">com\r\n CONFIDENTIALITY<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-line-height-alt:.75pt\"><span style=\"font-size:1.0pt;color:white\"><o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\">Hi Regina,<o:p></o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\">Thank you, Brian.<o:p></o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\">I’d like to schedule a time to discuss establishing a Trust.&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\">Please let me know your availability for a brief meeting at your convenience.<o:p></o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\">Respectuflly,<o:p></o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\">Rick<o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div id=\"bloop_sign_1760545686447803904\">\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Rick Mislan, PhD,&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Founder, CTO<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><img border=\"0\" width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"ATTACH_attach_6d6573736167655f315f31323736_35324141434136342d423436382d343238352d423543342d383338463637303746464343_35333544443832312d464239312d343942372d414135392d424242443643324143354235_0\" src=\"cid:image001.png@01DC3F3D.6C8913B0\"><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><a href=\"https://urldefense.com/v3/__https:/mavrix1.com__;!!LBFcHN3WCgnqDQ!kTUA5CFGDuBYQcrZ0QzfVTAY9QxGmbDG0qeYG19ysAClC6LC2qURc0UeyHn-bs-lRDEVnD_DuVYtxBqYsEIfOTmwDA$\">https://mavrix1.com</a><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><b><u><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">CONFIDENTIALITY NOTICE</span></u></b><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><i><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended\r\n solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</span></i><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><i><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</span></i><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><i><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government\r\n agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</span></i><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"airmailon\">On October 13, 2025 at 17:42:27, Brian Stufflebean (<a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt\">Rick,</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt\">I would like to introduce you to Regina Rabitaille. &nbsp;Regina is an estate planning attorney with Nelson Mullins, who was referred to me by Roman Petra, Esq. I am certain that she will be able to provide you\r\n with some guidance in your planning.&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt\">I will leave it to you to reach out to her directly. &nbsp;Have a nice evening.&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt\">Her contact information &nbsp;is as follows:</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"370\" style=\"width:277.5pt;font-variant-caps: normal\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" style=\"width:100.0%;padding:0in 0in 10.5pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><img border=\"0\" width=\"260\" height=\"84\" style=\"width:2.7083in;height:.875in\" id=\"Picture_x0020_2\" src=\"cid:image002.png@01DC3F3D.6C8913B0\"></span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"370\" style=\"width:277.5pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-top:solid windowtext 1.5pt;padding:12.0pt 0in 0in 0in;border-color:currentcolor currentcolor;border-image: none\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3.0pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">REGINA RABITAILLE&nbsp;&nbsp;</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#659BC5;letter-spacing:.75pt\">PARTNER</span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:6.75pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"mailto:regina.rabitaille@nelsonmullins.com\"><span style=\"font-size:7.0pt;color:#676D72;text-decoration:none\">regina.rabitaille@nelsonmullins.com</span></a></span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">390 NORTH ORANGE AVENUE&nbsp;|&nbsp;SUITE 1400</span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">ORLANDO,&nbsp;FL&nbsp;32801</span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">T</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.669.4209</span>&nbsp;&nbsp;&nbsp;</span></b><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">F</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.425.8377</span>&nbsp;&nbsp;</span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"370\" style=\"width:277.5pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-bottom:solid windowtext 1.5pt;padding:0in 0in 16.0pt 0in;border-color:currentcolor currentcolor rgb(209, 210, 212);border-image: none\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"https://www.nelsonmullins.com/\"><span style=\"color:#676D72;text-decoration:none\">NELSONMULLINS.COM</span></a>&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"https://www.nelsonmullins.com/professionals/regina-rabitaille/vcard\"><span style=\"color:#659BC5;text-decoration:none\">VCARD</span></a>&nbsp;&nbsp;<a href=\"https://www.nelsonmullins.com/professionals/regina-rabitaille\"><span style=\"color:#355989;text-decoration:none\">VIEW\r\n BIO</span></a></span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Best regards,</span><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Brian C. Stufflebean</span></b><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><br>\r\nCEO, Co-Founder<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">(941)545-4153 Direct</span></b><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:8.5pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">(866)896-2423 Fax</span><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><br>\r\n<img border=\"0\" width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"Picture_x0020_1\" src=\"cid:image001.png@01DC3F3D.6C8913B0\"><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><br>\r\n<br>\r\n<a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><br>\r\n<a href=\"https://urldefense.com/v3/__https:/mavrix1.com__;!!LBFcHN3WCgnqDQ!kTUA5CFGDuBYQcrZ0QzfVTAY9QxGmbDG0qeYG19ysAClC6LC2qURc0UeyHn-bs-lRDEVnD_DuVYtxBqYsEIfOTmwDA$\">https://mavrix1.com/</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<b>CONFIDENTIALITY NOTICE:</b>&nbsp;This&nbsp;communication&nbsp;is confidential&nbsp;and&nbsp;intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, or&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any such&nbsp;actions may be unlawful.\r\n If&nbsp;you have&nbsp;received this communication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the&nbsp;message to inform him or her of the&nbsp;error.<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n<p><strong>Confidentiality Notice</strong><br>\r\nThis message is intended exclusively for the individual or entity to which it is addressed. This communication may contain information that is proprietary, privileged, confidential or otherwise legally exempt from disclosure. If you are not the named addressee,\r\n you are not authorized to read, print, retain, copy or disseminate this message or any part of it. If you have received this message in error, please notify the sender immediately either by phone (800-237-2000) or reply to this e-mail and delete all copies\r\n of this message.</p>\r\n</body>\r\n</html>','Good morning, Rick.\r\n\r\nI hope all is well.\r\n\r\nAttorney Regina Rabitaille currently has the following availability.\r\n\r\n10/20 – 12pm, 1pm\r\n10/21 – 9am, 12pm, 2pm\r\n10/23 – 12:30pm\r\n\r\n10/28 – 9am, or between 11am – 4pm\r\n10/29 – between 9am – 12pm\r\n10/30 – 9am, 10am, or between 2:30pm – 4 pm\r\n\r\nPlease also confirm whether you’d prefer an in-person/virtual meeting. Thanks\r\n\r\nKindest Regards\r\n\r\n[http://www.nelsonmullins.com/img/ecard-logo.png]\r\n\r\nCHRIS PEREZ  ADMINISTRATIVE ASSISTANT\r\nchris.perez@nelsonmullins.com<mailto:chris.perez@nelsonmullins.com>\r\n390 NORTH ORANGE AVENUE | SUITE 1400\r\nORLANDO, FL 32801\r\nT 407.669.4312   F 407.425.8377\r\n\r\nNELSONMULLINS.COM<http://www.nelsonmullins.com/>\r\n\r\n\r\n\r\n\r\nFrom: Regina Rabitaille <regina.rabitaille@nelsonmullins.com>\r\nSent: Thursday, October 16, 2025 4:33 PM\r\nTo: Rick <rick@mavrix.one>; Brian Stufflebean <brian@mavrix.one>\r\nCc: Chris Perez <Chris.Perez@nelsonmullins.com>\r\nSubject: RE: Introduction\r\n\r\nHi Rick –\r\n\r\nIt is nice to meet you via email.  I am copying Chris Perez to find a time that works.  Thank you.\r\n[https://www.nelsonmullins.com/img/ecard-logo-125.png]\r\nREGINA RABITAILLE  PARTNER\r\nregina.rabitaille@nelsonmullins.com<mailto:regina.rabitaille@nelsonmullins.com>\r\n390 NORTH ORANGE AVENUE | SUITE 1400\r\nORLANDO, FL 32801\r\nT 407.669.4209   F 407.425.8377\r\nNELSONMULLINS.COM<https://www.nelsonmullins.com>    VCARD<https://www.nelsonmullins.com/professionals/regina-rabitaille/vcard>  VIEW BIO<https://www.nelsonmullins.com/professionals/regina-rabitaille>\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Wednesday, October 15, 2025 12:31 PM\r\nTo: Brian Stufflebean <brian@mavrix.one<mailto:brian@mavrix.one>>; Regina Rabitaille <regina.rabitaille@nelsonmullins.com<mailto:regina.rabitaille@nelsonmullins.com>>\r\nSubject: Re: Introduction\r\n\r\nHi Regina, Thank you, Brian. I’d like to schedule a time to discuss establishing a Trust. Please let me know your availability for a brief meeting at your convenience. Respectuflly, Rick Rick Mislan, PhD, Founder, CTO https: //mavrix1. com CONFIDENTIALITY\r\n\r\nHi Regina,\r\n\r\nThank you, Brian.\r\n\r\nI’d like to schedule a time to discuss establishing a Trust.\r\nPlease let me know your availability for a brief meeting at your convenience.\r\n\r\nRespectuflly,\r\nRick\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:image001.png@01DC3F3D.6C8913B0]\r\nhttps://mavrix1.com<https://urldefense.com/v3/__https:/mavrix1.com__;!!LBFcHN3WCgnqDQ!kTUA5CFGDuBYQcrZ0QzfVTAY9QxGmbDG0qeYG19ysAClC6LC2qURc0UeyHn-bs-lRDEVnD_DuVYtxBqYsEIfOTmwDA$>\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\nOn October 13, 2025 at 17:42:27, Brian Stufflebean (brian@mavrix.one<mailto:brian@mavrix.one>) wrote:\r\nRick,\r\n\r\nI would like to introduce you to Regina Rabitaille.  Regina is an estate planning attorney with Nelson Mullins, who was referred to me by Roman Petra, Esq. I am certain that she will be able to provide you with some guidance in your planning.\r\n\r\nI will leave it to you to reach out to her directly.  Have a nice evening.\r\n\r\nHer contact information  is as follows:\r\n\r\n[cid:image002.png@01DC3F3D.6C8913B0]\r\nREGINA RABITAILLE  PARTNER\r\nregina.rabitaille@nelsonmullins.com<mailto:regina.rabitaille@nelsonmullins.com>\r\n390 NORTH ORANGE AVENUE | SUITE 1400\r\nORLANDO, FL 32801\r\nT 407.669.4209   F 407.425.8377\r\nNELSONMULLINS.COM<https://www.nelsonmullins.com/>    VCARD<https://www.nelsonmullins.com/professionals/regina-rabitaille/vcard>  VIEW BIO<https://www.nelsonmullins.com/professionals/regina-rabitaille>\r\n\r\n\r\n\r\n\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n[cid:image001.png@01DC3F3D.6C8913B0]\r\n\r\n\r\nbrian@mavrix.one<mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/<https://urldefense.com/v3/__https:/mavrix1.com__;!!LBFcHN3WCgnqDQ!kTUA5CFGDuBYQcrZ0QzfVTAY9QxGmbDG0qeYG19ysAClC6LC2qURc0UeyHn-bs-lRDEVnD_DuVYtxBqYsEIfOTmwDA$>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.\r\n\r\n\r\nConfidentiality Notice\r\nThis message is intended exclusively for the individual or entity to which it is addressed. This communication may contain information that is proprietary, privileged, confidential or otherwise legally exempt from disclosure. If you are not the named addressee, you are not authorized to read, print, retain, copy or disseminate this message or any part of it. If you have received this message in error, please notify the sender immediately either by phone (800-237-2000) or reply to this e-mail and delete all copies of this message.',0,0,0,0,0,0,'2025-10-17 12:18:30','2025-12-09 19:29:39','2025-12-09 19:29:39','2025-12-09 19:29:39',NULL,NULL,NULL),
(861,4,' <MN2PR05MB5966A283890B037DB6E0E9B5F5F6A@MN2PR05MB5966.namprd05.prod.outlook.com>',NULL,NULL,'RE: Introduction','regina.rabitaille@nelsonmullins.com','Regina Rabitaille','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle23\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Thank you, Chris.&nbsp; <o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Rick – after responding yesterday, I checked with our conflicts department in our firm and, unfortunately, we are unable to represent you because of our representation of Brian in the partnership.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"370\" style=\"width:277.5pt\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" style=\"width:100.0%;padding:0in 0in 10.5pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><img width=\"260\" height=\"84\" style=\"width:2.7083in;height:.875in\" id=\"_x0000_i1031\" src=\"https://www.nelsonmullins.com/img/ecard-logo-125.png\"></span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"370\" style=\"width:277.5pt;padding:0in 0in 0in 0in\">\r\n<div style=\"mso-element:para-border-div;border:none;border-top:solid #D1D2D4 1.5pt;padding:12.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3.0pt;border:none;padding:0in\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">REGINA RABITAILLE&nbsp;&nbsp;</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#659BC5;letter-spacing:.75pt\">PARTNER</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">\r\n<o:p></o:p></span></b></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:6.75pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"mailto:regina.rabitaille@nelsonmullins.com\"><span style=\"font-size:7.0pt;color:#676D72;text-decoration:none\">regina.rabitaille@nelsonmullins.com</span></a>\r\n<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">390 NORTH ORANGE AVENUE&nbsp;|&nbsp;SUITE 1400<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">ORLANDO,&nbsp;FL&nbsp;32801<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">T</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.669.4209</span>&nbsp;&nbsp;\r\n</span></b><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">F</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.425.8377</span>&nbsp;&nbsp;\r\n<o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"370\" style=\"width:277.5pt;padding:0in 0in 0in 0in\">\r\n<div style=\"mso-element:para-border-div;border:none;border-bottom:solid #D1D2D4 1.5pt;padding:0in 0in 16.0pt 0in\">\r\n<p class=\"MsoNormal\" style=\"border:none;padding:0in\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"https://www.nelsonmullins.com\"><span style=\"color:#676D72;text-decoration:none\">NELSONMULLINS.COM</span></a>&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"https://www.nelsonmullins.com/professionals/regina-rabitaille/vcard\"><span style=\"color:#659BC5;text-decoration:none\">VCARD</span></a>&nbsp;&nbsp;<a href=\"https://www.nelsonmullins.com/professionals/regina-rabitaille\"><span style=\"color:#355989;text-decoration:none\">VIEW\r\n BIO</span></a> <o:p></o:p></span></b></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Chris Perez &lt;Chris.Perez@nelsonmullins.com&gt;\r\n<br>\r\n<b>Sent:</b> Friday, October 17, 2025 8:19 AM<br>\r\n<b>To:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Cc:</b> Brian Stufflebean &lt;brian@mavrix.one&gt;; Regina Rabitaille &lt;regina.rabitaille@nelsonmullins.com&gt;<br>\r\n<b>Subject:</b> RE: Introduction<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Good morning, Rick.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">I hope all is well. <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Attorney Regina Rabitaille currently has the following availability.\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">10/20 – 12pm, 1pm<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">10/21 – 9am, 12pm, 2pm<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">10/23 – 12:30pm<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">10/28 – 9am, or between 11am – 4pm<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">10/29 – between 9am – 12pm<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">10/30 – 9am, 10am, or between 2:30pm – 4 pm<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt\">Please also confirm whether you’d prefer an in-person/virtual meeting. Thanks<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Kindest Regards<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"370\" style=\"width:277.5pt\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" colspan=\"2\" style=\"width:100.0%;padding:0in 0in 14.25pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><img border=\"0\" width=\"261\" height=\"30\" style=\"width:2.7222in;height:.3125in\" id=\"_x0000_i1030\" src=\"http://www.nelsonmullins.com/img/ecard-logo.png\"></span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"5\" style=\"width:3.75pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<o:p></o:p></span></b></p>\r\n</td>\r\n<td width=\"365\" style=\"width:273.75pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-top:solid #D1D2D4 1.5pt;padding:12.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3.0pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">CHRIS PEREZ&nbsp;&nbsp;</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#659BC5;letter-spacing:.75pt\">ADMINISTRATIVE\r\n ASSISTANT</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">\r\n<o:p></o:p></span></b></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:6.75pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"mailto:chris.perez@nelsonmullins.com\"><span style=\"font-size:7.0pt;color:#676D72;text-decoration:none\">chris.perez@nelsonmullins.com</span></a>\r\n<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">390 NORTH ORANGE AVENUE&nbsp;|&nbsp;SUITE 1400<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">ORLANDO,&nbsp;FL&nbsp;32801<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">T</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.669.4312</span>&nbsp;&nbsp;\r\n</span></b><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">F</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.425.8377</span>&nbsp;&nbsp;\r\n<o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"5\" style=\"width:3.75pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<o:p></o:p></span></b></p>\r\n</td>\r\n<td width=\"365\" style=\"width:273.75pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-bottom:solid #D1D2D4 1.5pt;padding:0in 0in 16.0pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"http://www.nelsonmullins.com/\"><span style=\"color:#676D72;text-decoration:none\">NELSONMULLINS.COM</span></a>\r\n<o:p></o:p></span></b></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><img border=\"0\" width=\"1\" height=\"1\" style=\"width:.0138in;height:.0138in\" id=\"_x0000_i1029\" src=\"https://u5854562.ct.sendgrid.net/wf/open?upn=m81V51Y9UFBkG2xAk9t-2FLu2MrvXOgvjrSjTB60LOKBh83oHMUwLnv7-2FQ-2BewhfEfCvdxtpj-2B1LUfeGjNwWWshVO09W093G5B1HCPn-2B5gBBpVt-2FtEtK6YVVq0egyZb8ZnPU3ZRNSK0IL-2BdtPx0OnIW13M6SSkl8UwgfKLppmkzrqs1Afj6pETKwkS-2B3Z-2Bs0sT6h-2B2A-2FOPOacPyIWBXMoCQkMdOsJfwiizeBCAKzFp2wcU-3D\"></span><span style=\"font-size:11.0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Regina Rabitaille &lt;<a href=\"mailto:regina.rabitaille@nelsonmullins.com\">regina.rabitaille@nelsonmullins.com</a>&gt;\r\n<br>\r\n<b>Sent:</b> Thursday, October 16, 2025 4:33 PM<br>\r\n<b>To:</b> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;; Brian Stufflebean &lt;<a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a>&gt;<br>\r\n<b>Cc:</b> Chris Perez &lt;<a href=\"mailto:Chris.Perez@nelsonmullins.com\">Chris.Perez@nelsonmullins.com</a>&gt;<br>\r\n<b>Subject:</b> RE: Introduction<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Hi Rick –<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">It is nice to meet you via email.&nbsp; I am copying Chris Perez to find a time that works.&nbsp; Thank you.<o:p></o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"370\" style=\"width:277.5pt\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" style=\"width:100.0%;padding:0in 0in 10.5pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><img border=\"0\" width=\"260\" height=\"84\" style=\"width:2.7083in;height:.875in\" id=\"_x0000_i1028\" src=\"https://www.nelsonmullins.com/img/ecard-logo-125.png\"></span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"100%\" style=\"width:100.0%;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-top:solid #D1D2D4 1.5pt;padding:12.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3.0pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">REGINA RABITAILLE&nbsp;&nbsp;</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#659BC5;letter-spacing:.75pt\">PARTNER</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">\r\n<o:p></o:p></span></b></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:6.75pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"mailto:regina.rabitaille@nelsonmullins.com\"><span style=\"font-size:7.0pt;color:#676D72;text-decoration:none\">regina.rabitaille@nelsonmullins.com</span></a>\r\n<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">390 NORTH ORANGE AVENUE&nbsp;|&nbsp;SUITE 1400<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">ORLANDO,&nbsp;FL&nbsp;32801<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">T</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.669.4209</span>&nbsp;&nbsp;\r\n</span></b><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">F</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.425.8377</span>&nbsp;&nbsp;\r\n<o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"100%\" style=\"width:100.0%;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-bottom:solid #D1D2D4 1.5pt;padding:0in 0in 16.0pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"https://www.nelsonmullins.com\"><span style=\"color:#676D72;text-decoration:none\">NELSONMULLINS.COM</span></a>&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"https://www.nelsonmullins.com/professionals/regina-rabitaille/vcard\"><span style=\"color:#659BC5;text-decoration:none\">VCARD</span></a>&nbsp;&nbsp;<a href=\"https://www.nelsonmullins.com/professionals/regina-rabitaille\"><span style=\"color:#355989;text-decoration:none\">VIEW\r\n BIO</span></a> <o:p></o:p></span></b></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, October 15, 2025 12:31 PM<br>\r\n<b>To:</b> Brian Stufflebean &lt;<a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a>&gt;; Regina Rabitaille &lt;<a href=\"mailto:regina.rabitaille@nelsonmullins.com\">regina.rabitaille@nelsonmullins.com</a>&gt;<br>\r\n<b>Subject:</b> Re: Introduction<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-line-height-alt:.75pt\"><span style=\"font-size:1.0pt;color:white\">Hi Regina, Thank you, Brian. I’d like to schedule a time to discuss establishing a Trust. Please let me know your availability for a brief meeting at your convenience.\r\n Respectuflly, Rick Rick Mislan, PhD, Founder, CTO https:</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">//mavrix1.</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">com\r\n CONFIDENTIALITY<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-line-height-alt:.75pt\"><span style=\"font-size:1.0pt;color:white\"><o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\">Hi Regina,<o:p></o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\">Thank you, Brian.<o:p></o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\">I’d like to schedule a time to discuss establishing a Trust.&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\">Please let me know your availability for a brief meeting at your convenience.<o:p></o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\">Respectuflly,<o:p></o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\">Rick<o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div id=\"bloop_sign_1760545686447803904\">\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Rick Mislan, PhD,&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Founder, CTO<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><img border=\"0\" width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"ATTACH_attach_6d6573736167655f315f31323736_35324141434136342d423436382d343238352d423543342d383338463637303746464343_35333544443832312d464239312d343942372d414135392d424242443643324143354235_0\" src=\"cid:image001.png@01DC3F42.A2949470\"><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><a href=\"https://urldefense.com/v3/__https:/mavrix1.com__;!!LBFcHN3WCgnqDQ!kTUA5CFGDuBYQcrZ0QzfVTAY9QxGmbDG0qeYG19ysAClC6LC2qURc0UeyHn-bs-lRDEVnD_DuVYtxBqYsEIfOTmwDA$\">https://mavrix1.com</a><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><b><u><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">CONFIDENTIALITY NOTICE</span></u></b><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><i><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended\r\n solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</span></i><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><i><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</span></i><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><i><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government\r\n agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</span></i><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"airmailon\">On October 13, 2025 at 17:42:27, Brian Stufflebean (<a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt\">Rick,</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt\">I would like to introduce you to Regina Rabitaille. &nbsp;Regina is an estate planning attorney with Nelson Mullins, who was referred to me by Roman Petra, Esq. I am certain that she will be able to provide you\r\n with some guidance in your planning.&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt\">I will leave it to you to reach out to her directly. &nbsp;Have a nice evening.&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt\">Her contact information &nbsp;is as follows:</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"370\" style=\"width:277.5pt;font-variant-caps: normal\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" style=\"width:100.0%;padding:0in 0in 10.5pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><img border=\"0\" width=\"260\" height=\"84\" style=\"width:2.7083in;height:.875in\" id=\"Picture_x0020_2\" src=\"cid:image002.png@01DC3F42.A2949470\"></span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"370\" style=\"width:277.5pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-top:solid windowtext 1.5pt;padding:12.0pt 0in 0in 0in;border-color:currentcolor currentcolor;border-image: none\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3.0pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">REGINA RABITAILLE&nbsp;&nbsp;</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#659BC5;letter-spacing:.75pt\">PARTNER</span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:6.75pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"mailto:regina.rabitaille@nelsonmullins.com\"><span style=\"font-size:7.0pt;color:#676D72;text-decoration:none\">regina.rabitaille@nelsonmullins.com</span></a></span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">390 NORTH ORANGE AVENUE&nbsp;|&nbsp;SUITE 1400</span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">ORLANDO,&nbsp;FL&nbsp;32801</span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">T</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.669.4209</span>&nbsp;&nbsp;&nbsp;</span></b><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">F</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.425.8377</span>&nbsp;&nbsp;</span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"370\" style=\"width:277.5pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-bottom:solid windowtext 1.5pt;padding:0in 0in 16.0pt 0in;border-color:currentcolor currentcolor rgb(209, 210, 212);border-image: none\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"https://www.nelsonmullins.com/\"><span style=\"color:#676D72;text-decoration:none\">NELSONMULLINS.COM</span></a>&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"https://www.nelsonmullins.com/professionals/regina-rabitaille/vcard\"><span style=\"color:#659BC5;text-decoration:none\">VCARD</span></a>&nbsp;&nbsp;<a href=\"https://www.nelsonmullins.com/professionals/regina-rabitaille\"><span style=\"color:#355989;text-decoration:none\">VIEW\r\n BIO</span></a></span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Best regards,</span><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Brian C. Stufflebean</span></b><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><br>\r\nCEO, Co-Founder<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">(941)545-4153 Direct</span></b><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:8.5pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">(866)896-2423 Fax</span><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><br>\r\n<img border=\"0\" width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"Picture_x0020_1\" src=\"cid:image001.png@01DC3F42.A2949470\"><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><br>\r\n<br>\r\n<a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><br>\r\n<a href=\"https://urldefense.com/v3/__https:/mavrix1.com__;!!LBFcHN3WCgnqDQ!kTUA5CFGDuBYQcrZ0QzfVTAY9QxGmbDG0qeYG19ysAClC6LC2qURc0UeyHn-bs-lRDEVnD_DuVYtxBqYsEIfOTmwDA$\">https://mavrix1.com/</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<b>CONFIDENTIALITY NOTICE:</b>&nbsp;This&nbsp;communication&nbsp;is confidential&nbsp;and&nbsp;intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, or&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any such&nbsp;actions may be unlawful.\r\n If&nbsp;you have&nbsp;received this communication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the&nbsp;message to inform him or her of the&nbsp;error.<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n<p><strong>Confidentiality Notice</strong><br>\r\nThis message is intended exclusively for the individual or entity to which it is addressed. This communication may contain information that is proprietary, privileged, confidential or otherwise legally exempt from disclosure. If you are not the named addressee,\r\n you are not authorized to read, print, retain, copy or disseminate this message or any part of it. If you have received this message in error, please notify the sender immediately either by phone (800-237-2000) or reply to this e-mail and delete all copies\r\n of this message.</p>\r\n</body>\r\n</html>','Thank you, Chris.\r\n\r\nRick – after responding yesterday, I checked with our conflicts department in our firm and, unfortunately, we are unable to represent you because of our representation of Brian in the partnership.\r\n\r\n[https://www.nelsonmullins.com/img/ecard-logo-125.png]\r\nREGINA RABITAILLE  PARTNER\r\nregina.rabitaille@nelsonmullins.com<mailto:regina.rabitaille@nelsonmullins.com>\r\n390 NORTH ORANGE AVENUE | SUITE 1400\r\nORLANDO, FL 32801\r\nT 407.669.4209   F 407.425.8377\r\nNELSONMULLINS.COM<https://www.nelsonmullins.com>    VCARD<https://www.nelsonmullins.com/professionals/regina-rabitaille/vcard>  VIEW BIO<https://www.nelsonmullins.com/professionals/regina-rabitaille>\r\n\r\nFrom: Chris Perez <Chris.Perez@nelsonmullins.com>\r\nSent: Friday, October 17, 2025 8:19 AM\r\nTo: Rick <rick@mavrix.one>\r\nCc: Brian Stufflebean <brian@mavrix.one>; Regina Rabitaille <regina.rabitaille@nelsonmullins.com>\r\nSubject: RE: Introduction\r\n\r\nGood morning, Rick.\r\n\r\nI hope all is well.\r\n\r\nAttorney Regina Rabitaille currently has the following availability.\r\n\r\n10/20 – 12pm, 1pm\r\n10/21 – 9am, 12pm, 2pm\r\n10/23 – 12:30pm\r\n\r\n10/28 – 9am, or between 11am – 4pm\r\n10/29 – between 9am – 12pm\r\n10/30 – 9am, 10am, or between 2:30pm – 4 pm\r\n\r\nPlease also confirm whether you’d prefer an in-person/virtual meeting. Thanks\r\n\r\nKindest Regards\r\n\r\n[http://www.nelsonmullins.com/img/ecard-logo.png]\r\n\r\nCHRIS PEREZ  ADMINISTRATIVE ASSISTANT\r\nchris.perez@nelsonmullins.com<mailto:chris.perez@nelsonmullins.com>\r\n390 NORTH ORANGE AVENUE | SUITE 1400\r\nORLANDO, FL 32801\r\nT 407.669.4312   F 407.425.8377\r\n\r\nNELSONMULLINS.COM<http://www.nelsonmullins.com/>\r\n\r\n\r\n\r\n\r\nFrom: Regina Rabitaille <regina.rabitaille@nelsonmullins.com<mailto:regina.rabitaille@nelsonmullins.com>>\r\nSent: Thursday, October 16, 2025 4:33 PM\r\nTo: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>; Brian Stufflebean <brian@mavrix.one<mailto:brian@mavrix.one>>\r\nCc: Chris Perez <Chris.Perez@nelsonmullins.com<mailto:Chris.Perez@nelsonmullins.com>>\r\nSubject: RE: Introduction\r\n\r\nHi Rick –\r\n\r\nIt is nice to meet you via email.  I am copying Chris Perez to find a time that works.  Thank you.\r\n[https://www.nelsonmullins.com/img/ecard-logo-125.png]\r\nREGINA RABITAILLE  PARTNER\r\nregina.rabitaille@nelsonmullins.com<mailto:regina.rabitaille@nelsonmullins.com>\r\n390 NORTH ORANGE AVENUE | SUITE 1400\r\nORLANDO, FL 32801\r\nT 407.669.4209   F 407.425.8377\r\nNELSONMULLINS.COM<https://www.nelsonmullins.com>    VCARD<https://www.nelsonmullins.com/professionals/regina-rabitaille/vcard>  VIEW BIO<https://www.nelsonmullins.com/professionals/regina-rabitaille>\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Wednesday, October 15, 2025 12:31 PM\r\nTo: Brian Stufflebean <brian@mavrix.one<mailto:brian@mavrix.one>>; Regina Rabitaille <regina.rabitaille@nelsonmullins.com<mailto:regina.rabitaille@nelsonmullins.com>>\r\nSubject: Re: Introduction\r\n\r\nHi Regina, Thank you, Brian. I’d like to schedule a time to discuss establishing a Trust. Please let me know your availability for a brief meeting at your convenience. Respectuflly, Rick Rick Mislan, PhD, Founder, CTO https: //mavrix1. com CONFIDENTIALITY\r\n\r\nHi Regina,\r\n\r\nThank you, Brian.\r\n\r\nI’d like to schedule a time to discuss establishing a Trust.\r\nPlease let me know your availability for a brief meeting at your convenience.\r\n\r\nRespectuflly,\r\nRick\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:image001.png@01DC3F42.A2949470]\r\nhttps://mavrix1.com<https://urldefense.com/v3/__https:/mavrix1.com__;!!LBFcHN3WCgnqDQ!kTUA5CFGDuBYQcrZ0QzfVTAY9QxGmbDG0qeYG19ysAClC6LC2qURc0UeyHn-bs-lRDEVnD_DuVYtxBqYsEIfOTmwDA$>\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\nOn October 13, 2025 at 17:42:27, Brian Stufflebean (brian@mavrix.one<mailto:brian@mavrix.one>) wrote:\r\nRick,\r\n\r\nI would like to introduce you to Regina Rabitaille.  Regina is an estate planning attorney with Nelson Mullins, who was referred to me by Roman Petra, Esq. I am certain that she will be able to provide you with some guidance in your planning.\r\n\r\nI will leave it to you to reach out to her directly.  Have a nice evening.\r\n\r\nHer contact information  is as follows:\r\n\r\n[cid:image002.png@01DC3F42.A2949470]\r\nREGINA RABITAILLE  PARTNER\r\nregina.rabitaille@nelsonmullins.com<mailto:regina.rabitaille@nelsonmullins.com>\r\n390 NORTH ORANGE AVENUE | SUITE 1400\r\nORLANDO, FL 32801\r\nT 407.669.4209   F 407.425.8377\r\nNELSONMULLINS.COM<https://www.nelsonmullins.com/>    VCARD<https://www.nelsonmullins.com/professionals/regina-rabitaille/vcard>  VIEW BIO<https://www.nelsonmullins.com/professionals/regina-rabitaille>\r\n\r\n\r\n\r\n\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n[cid:image001.png@01DC3F42.A2949470]\r\n\r\n\r\nbrian@mavrix.one<mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/<https://urldefense.com/v3/__https:/mavrix1.com__;!!LBFcHN3WCgnqDQ!kTUA5CFGDuBYQcrZ0QzfVTAY9QxGmbDG0qeYG19ysAClC6LC2qURc0UeyHn-bs-lRDEVnD_DuVYtxBqYsEIfOTmwDA$>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.\r\n\r\n\r\nConfidentiality Notice\r\nThis message is intended exclusively for the individual or entity to which it is addressed. This communication may contain information that is proprietary, privileged, confidential or otherwise legally exempt from disclosure. If you are not the named addressee, you are not authorized to read, print, retain, copy or disseminate this message or any part of it. If you have received this message in error, please notify the sender immediately either by phone (800-237-2000) or reply to this e-mail and delete all copies of this message.',0,0,0,0,0,0,'2025-10-17 12:48:08','2025-12-09 19:29:39','2025-12-09 19:29:39','2025-12-09 19:29:39',NULL,NULL,NULL),
(862,4,' <MN2PR05MB5966F61C010467C86C2EC0B4F5F6A@MN2PR05MB5966.namprd05.prod.outlook.com>',NULL,NULL,'RE: Introduction','Regina.Rabitaille@nelsonmullins.com','Regina Rabitaille','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle22\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">To follow up on my earlier email, I recommend that you reach out to Scott Miller at Burr Forman for estate planning.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"370\" style=\"width:277.5pt\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" style=\"width:100.0%;padding:0in 0in 10.5pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><img width=\"260\" height=\"84\" style=\"width:2.7083in;height:.875in\" id=\"_x0000_i1032\" src=\"https://www.nelsonmullins.com/img/ecard-logo-125.png\"></span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"370\" style=\"width:277.5pt;padding:0in 0in 0in 0in\">\r\n<div style=\"mso-element:para-border-div;border:none;border-top:solid #D1D2D4 1.5pt;padding:12.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3.0pt;border:none;padding:0in\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">REGINA RABITAILLE&nbsp;&nbsp;</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#659BC5;letter-spacing:.75pt\">PARTNER</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">\r\n<o:p></o:p></span></b></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:6.75pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"mailto:regina.rabitaille@nelsonmullins.com\"><span style=\"font-size:7.0pt;color:#676D72;text-decoration:none\">regina.rabitaille@nelsonmullins.com</span></a>\r\n<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">390 NORTH ORANGE AVENUE&nbsp;|&nbsp;SUITE 1400<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">ORLANDO,&nbsp;FL&nbsp;32801<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">T</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.669.4209</span>&nbsp;&nbsp;\r\n</span></b><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">F</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.425.8377</span>&nbsp;&nbsp;\r\n<o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"370\" style=\"width:277.5pt;padding:0in 0in 0in 0in\">\r\n<div style=\"mso-element:para-border-div;border:none;border-bottom:solid #D1D2D4 1.5pt;padding:0in 0in 16.0pt 0in\">\r\n<p class=\"MsoNormal\" style=\"border:none;padding:0in\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"https://www.nelsonmullins.com\"><span style=\"color:#676D72;text-decoration:none\">NELSONMULLINS.COM</span></a>&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"https://www.nelsonmullins.com/professionals/regina-rabitaille/vcard\"><span style=\"color:#659BC5;text-decoration:none\">VCARD</span></a>&nbsp;&nbsp;<a href=\"https://www.nelsonmullins.com/professionals/regina-rabitaille\"><span style=\"color:#355989;text-decoration:none\">VIEW\r\n BIO</span></a> <o:p></o:p></span></b></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Regina Rabitaille &lt;regina.rabitaille@nelsonmullins.com&gt;\r\n<br>\r\n<b>Sent:</b> Friday, October 17, 2025 8:48 AM<br>\r\n<b>To:</b> Chris Perez &lt;Chris.Perez@nelsonmullins.com&gt;; Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Cc:</b> Brian Stufflebean &lt;brian@mavrix.one&gt;<br>\r\n<b>Subject:</b> RE: Introduction<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Thank you, Chris.&nbsp; <o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Rick – after responding yesterday, I checked with our conflicts department in our firm and, unfortunately, we are unable to represent you because of our representation of Brian in the partnership.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"370\" style=\"width:277.5pt\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" style=\"width:100.0%;padding:0in 0in 10.5pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><img border=\"0\" width=\"260\" height=\"84\" style=\"width:2.7083in;height:.875in\" id=\"_x0000_i1031\" src=\"https://www.nelsonmullins.com/img/ecard-logo-125.png\"></span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"370\" style=\"width:277.5pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-top:solid #D1D2D4 1.5pt;padding:12.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3.0pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">REGINA RABITAILLE&nbsp;&nbsp;</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#659BC5;letter-spacing:.75pt\">PARTNER</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">\r\n<o:p></o:p></span></b></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:6.75pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"mailto:regina.rabitaille@nelsonmullins.com\"><span style=\"font-size:7.0pt;color:#676D72;text-decoration:none\">regina.rabitaille@nelsonmullins.com</span></a>\r\n<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">390 NORTH ORANGE AVENUE&nbsp;|&nbsp;SUITE 1400<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">ORLANDO,&nbsp;FL&nbsp;32801<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">T</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.669.4209</span>&nbsp;&nbsp;\r\n</span></b><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">F</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.425.8377</span>&nbsp;&nbsp;\r\n<o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"370\" style=\"width:277.5pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-bottom:solid #D1D2D4 1.5pt;padding:0in 0in 16.0pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"https://www.nelsonmullins.com\"><span style=\"color:#676D72;text-decoration:none\">NELSONMULLINS.COM</span></a>&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"https://www.nelsonmullins.com/professionals/regina-rabitaille/vcard\"><span style=\"color:#659BC5;text-decoration:none\">VCARD</span></a>&nbsp;&nbsp;<a href=\"https://www.nelsonmullins.com/professionals/regina-rabitaille\"><span style=\"color:#355989;text-decoration:none\">VIEW\r\n BIO</span></a> <o:p></o:p></span></b></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Chris Perez &lt;<a href=\"mailto:Chris.Perez@nelsonmullins.com\">Chris.Perez@nelsonmullins.com</a>&gt;\r\n<br>\r\n<b>Sent:</b> Friday, October 17, 2025 8:19 AM<br>\r\n<b>To:</b> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;<br>\r\n<b>Cc:</b> Brian Stufflebean &lt;<a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a>&gt;; Regina Rabitaille &lt;<a href=\"mailto:regina.rabitaille@nelsonmullins.com\">regina.rabitaille@nelsonmullins.com</a>&gt;<br>\r\n<b>Subject:</b> RE: Introduction<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Good morning, Rick.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">I hope all is well. <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Attorney Regina Rabitaille currently has the following availability.\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">10/20 – 12pm, 1pm<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">10/21 – 9am, 12pm, 2pm<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">10/23 – 12:30pm<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">10/28 – 9am, or between 11am – 4pm<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">10/29 – between 9am – 12pm<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">10/30 – 9am, 10am, or between 2:30pm – 4 pm<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt\">Please also confirm whether you’d prefer an in-person/virtual meeting. Thanks<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Kindest Regards<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"370\" style=\"width:277.5pt\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" colspan=\"2\" style=\"width:100.0%;padding:0in 0in 14.25pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><img border=\"0\" width=\"261\" height=\"30\" style=\"width:2.7222in;height:.3125in\" id=\"_x0000_i1030\" src=\"http://www.nelsonmullins.com/img/ecard-logo.png\"></span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"5\" style=\"width:3.75pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<o:p></o:p></span></b></p>\r\n</td>\r\n<td width=\"365\" style=\"width:273.75pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-top:solid #D1D2D4 1.5pt;padding:12.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3.0pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">CHRIS PEREZ&nbsp;&nbsp;</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#659BC5;letter-spacing:.75pt\">ADMINISTRATIVE\r\n ASSISTANT</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">\r\n<o:p></o:p></span></b></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:6.75pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"mailto:chris.perez@nelsonmullins.com\"><span style=\"font-size:7.0pt;color:#676D72;text-decoration:none\">chris.perez@nelsonmullins.com</span></a>\r\n<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">390 NORTH ORANGE AVENUE&nbsp;|&nbsp;SUITE 1400<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">ORLANDO,&nbsp;FL&nbsp;32801<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">T</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.669.4312</span>&nbsp;&nbsp;\r\n</span></b><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">F</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.425.8377</span>&nbsp;&nbsp;\r\n<o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"5\" style=\"width:3.75pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<o:p></o:p></span></b></p>\r\n</td>\r\n<td width=\"365\" style=\"width:273.75pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-bottom:solid #D1D2D4 1.5pt;padding:0in 0in 16.0pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"http://www.nelsonmullins.com/\"><span style=\"color:#676D72;text-decoration:none\">NELSONMULLINS.COM</span></a>\r\n<o:p></o:p></span></b></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><img border=\"0\" width=\"1\" height=\"1\" style=\"width:.0138in;height:.0138in\" id=\"_x0000_i1029\" src=\"https://u5854562.ct.sendgrid.net/wf/open?upn=m81V51Y9UFBkG2xAk9t-2FLu2MrvXOgvjrSjTB60LOKBh83oHMUwLnv7-2FQ-2BewhfEfCvdxtpj-2B1LUfeGjNwWWshVO09W093G5B1HCPn-2B5gBBpVt-2FtEtK6YVVq0egyZb8ZnPU3ZRNSK0IL-2BdtPx0OnIW13M6SSkl8UwgfKLppmkzrqs1Afj6pETKwkS-2B3Z-2Bs0sT6h-2B2A-2FOPOacPyIWBXMoCQkMdOsJfwiizeBCAKzFp2wcU-3D\"></span><span style=\"font-size:11.0pt\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Regina Rabitaille &lt;<a href=\"mailto:regina.rabitaille@nelsonmullins.com\">regina.rabitaille@nelsonmullins.com</a>&gt;\r\n<br>\r\n<b>Sent:</b> Thursday, October 16, 2025 4:33 PM<br>\r\n<b>To:</b> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;; Brian Stufflebean &lt;<a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a>&gt;<br>\r\n<b>Cc:</b> Chris Perez &lt;<a href=\"mailto:Chris.Perez@nelsonmullins.com\">Chris.Perez@nelsonmullins.com</a>&gt;<br>\r\n<b>Subject:</b> RE: Introduction<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Hi Rick –<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">It is nice to meet you via email.&nbsp; I am copying Chris Perez to find a time that works.&nbsp; Thank you.<o:p></o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"370\" style=\"width:277.5pt\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" style=\"width:100.0%;padding:0in 0in 10.5pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><img border=\"0\" width=\"260\" height=\"84\" style=\"width:2.7083in;height:.875in\" id=\"_x0000_i1028\" src=\"https://www.nelsonmullins.com/img/ecard-logo-125.png\"></span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"100%\" style=\"width:100.0%;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-top:solid #D1D2D4 1.5pt;padding:12.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3.0pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">REGINA RABITAILLE&nbsp;&nbsp;</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#659BC5;letter-spacing:.75pt\">PARTNER</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">\r\n<o:p></o:p></span></b></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:6.75pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"mailto:regina.rabitaille@nelsonmullins.com\"><span style=\"font-size:7.0pt;color:#676D72;text-decoration:none\">regina.rabitaille@nelsonmullins.com</span></a>\r\n<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">390 NORTH ORANGE AVENUE&nbsp;|&nbsp;SUITE 1400<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">ORLANDO,&nbsp;FL&nbsp;32801<o:p></o:p></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">T</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.669.4209</span>&nbsp;&nbsp;\r\n</span></b><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">F</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.425.8377</span>&nbsp;&nbsp;\r\n<o:p></o:p></span></b></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"100%\" style=\"width:100.0%;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-bottom:solid #D1D2D4 1.5pt;padding:0in 0in 16.0pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"https://www.nelsonmullins.com\"><span style=\"color:#676D72;text-decoration:none\">NELSONMULLINS.COM</span></a>&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"https://www.nelsonmullins.com/professionals/regina-rabitaille/vcard\"><span style=\"color:#659BC5;text-decoration:none\">VCARD</span></a>&nbsp;&nbsp;<a href=\"https://www.nelsonmullins.com/professionals/regina-rabitaille\"><span style=\"color:#355989;text-decoration:none\">VIEW\r\n BIO</span></a> <o:p></o:p></span></b></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, October 15, 2025 12:31 PM<br>\r\n<b>To:</b> Brian Stufflebean &lt;<a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a>&gt;; Regina Rabitaille &lt;<a href=\"mailto:regina.rabitaille@nelsonmullins.com\">regina.rabitaille@nelsonmullins.com</a>&gt;<br>\r\n<b>Subject:</b> Re: Introduction<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-line-height-alt:.75pt\"><span style=\"font-size:1.0pt;color:white\">Hi Regina, Thank you, Brian. I’d like to schedule a time to discuss establishing a Trust. Please let me know your availability for a brief meeting at your convenience.\r\n Respectuflly, Rick Rick Mislan, PhD, Founder, CTO https:</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">//mavrix1.</span><span style=\"font-size:1.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white\"> </span><span style=\"font-size:1.0pt;color:white\">com\r\n CONFIDENTIALITY<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-line-height-alt:.75pt\"><span style=\"font-size:1.0pt;color:white\"><o:p></o:p></span></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\">Hi Regina,<o:p></o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\">Thank you, Brian.<o:p></o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\">I’d like to schedule a time to discuss establishing a Trust.&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\">Please let me know your availability for a brief meeting at your convenience.<o:p></o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\">Respectuflly,<o:p></o:p></p>\r\n</div>\r\n<div id=\"bloop_customfont\">\r\n<p class=\"MsoNormal\">Rick<o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div id=\"bloop_sign_1760545686447803904\">\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Rick Mislan, PhD,&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Founder, CTO<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><img border=\"0\" width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"ATTACH_attach_6d6573736167655f315f31323736_35324141434136342d423436382d343238352d423543342d383338463637303746464343_35333544443832312d464239312d343942372d414135392d424242443643324143354235_0\" src=\"cid:image001.png@01DC3F44.E5081370\"><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><a href=\"https://urldefense.com/v3/__https:/mavrix1.com__;!!LBFcHN3WCgnqDQ!kTUA5CFGDuBYQcrZ0QzfVTAY9QxGmbDG0qeYG19ysAClC6LC2qURc0UeyHn-bs-lRDEVnD_DuVYtxBqYsEIfOTmwDA$\">https://mavrix1.com</a><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><b><u><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">CONFIDENTIALITY NOTICE</span></u></b><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><i><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended\r\n solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</span></i><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><i><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</span></i><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><i><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government\r\n agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</span></i><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"airmailon\">On October 13, 2025 at 17:42:27, Brian Stufflebean (<a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt\">Rick,</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt\">I would like to introduce you to Regina Rabitaille. &nbsp;Regina is an estate planning attorney with Nelson Mullins, who was referred to me by Roman Petra, Esq. I am certain that she will be able to provide you\r\n with some guidance in your planning.&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt\">I will leave it to you to reach out to her directly. &nbsp;Have a nice evening.&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt\">Her contact information &nbsp;is as follows:</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"370\" style=\"width:277.5pt;font-variant-caps: normal\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\" style=\"width:100.0%;padding:0in 0in 10.5pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><img border=\"0\" width=\"260\" height=\"84\" style=\"width:2.7083in;height:.875in\" id=\"Picture_x0020_2\" src=\"cid:image002.png@01DC3F44.E5081370\"></span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"370\" style=\"width:277.5pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-top:solid windowtext 1.5pt;padding:12.0pt 0in 0in 0in;border-color:currentcolor currentcolor;border-image: none\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:3.0pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">REGINA RABITAILLE&nbsp;&nbsp;</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#659BC5;letter-spacing:.75pt\">PARTNER</span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:6.75pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"mailto:regina.rabitaille@nelsonmullins.com\"><span style=\"font-size:7.0pt;color:#676D72;text-decoration:none\">regina.rabitaille@nelsonmullins.com</span></a></span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">390 NORTH ORANGE AVENUE&nbsp;|&nbsp;SUITE 1400</span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">ORLANDO,&nbsp;FL&nbsp;32801</span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:4.5pt\"><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">T</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.669.4209</span>&nbsp;&nbsp;&nbsp;</span></b><b><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">F</span></b><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\">&nbsp;<span style=\"text-transform:uppercase\">407.425.8377</span>&nbsp;&nbsp;</span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"370\" style=\"width:277.5pt;padding:0in 0in 0in 0in\">\r\n<div style=\"border:none;border-bottom:solid windowtext 1.5pt;padding:0in 0in 16.0pt 0in;border-color:currentcolor currentcolor rgb(209, 210, 212);border-image: none\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:7.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#676D72;letter-spacing:.75pt\"><a href=\"https://www.nelsonmullins.com/\"><span style=\"color:#676D72;text-decoration:none\">NELSONMULLINS.COM</span></a>&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"https://www.nelsonmullins.com/professionals/regina-rabitaille/vcard\"><span style=\"color:#659BC5;text-decoration:none\">VCARD</span></a>&nbsp;&nbsp;<a href=\"https://www.nelsonmullins.com/professionals/regina-rabitaille\"><span style=\"color:#355989;text-decoration:none\">VIEW\r\n BIO</span></a></span></b><span style=\"font-size:10.0pt;color:black\"><o:p></o:p></span></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Best regards,</span><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Brian C. Stufflebean</span></b><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><br>\r\nCEO, Co-Founder<o:p></o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">(941)545-4153 Direct</span></b><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:8.5pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">(866)896-2423 Fax</span><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><br>\r\n<img border=\"0\" width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"Picture_x0020_1\" src=\"cid:image001.png@01DC3F44.E5081370\"><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><br>\r\n<br>\r\n<a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><br>\r\n<a href=\"https://urldefense.com/v3/__https:/mavrix1.com__;!!LBFcHN3WCgnqDQ!kTUA5CFGDuBYQcrZ0QzfVTAY9QxGmbDG0qeYG19ysAClC6LC2qURc0UeyHn-bs-lRDEVnD_DuVYtxBqYsEIfOTmwDA$\">https://mavrix1.com/</a><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\"><span style=\"font-size:9.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\"><br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<b>CONFIDENTIALITY NOTICE:</b>&nbsp;This&nbsp;communication&nbsp;is confidential&nbsp;and&nbsp;intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, or&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any such&nbsp;actions may be unlawful.\r\n If&nbsp;you have&nbsp;received this communication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the&nbsp;message to inform him or her of the&nbsp;error.<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n<p><strong>Confidentiality Notice</strong><br>\r\nThis message is intended exclusively for the individual or entity to which it is addressed. This communication may contain information that is proprietary, privileged, confidential or otherwise legally exempt from disclosure. If you are not the named addressee,\r\n you are not authorized to read, print, retain, copy or disseminate this message or any part of it. If you have received this message in error, please notify the sender immediately either by phone (800-237-2000) or reply to this e-mail and delete all copies\r\n of this message.</p>\r\n</body>\r\n</html>','To follow up on my earlier email, I recommend that you reach out to Scott Miller at Burr Forman for estate planning.\r\n\r\n[https://www.nelsonmullins.com/img/ecard-logo-125.png]\r\nREGINA RABITAILLE  PARTNER\r\nregina.rabitaille@nelsonmullins.com<mailto:regina.rabitaille@nelsonmullins.com>\r\n390 NORTH ORANGE AVENUE | SUITE 1400\r\nORLANDO, FL 32801\r\nT 407.669.4209   F 407.425.8377\r\nNELSONMULLINS.COM<https://www.nelsonmullins.com>    VCARD<https://www.nelsonmullins.com/professionals/regina-rabitaille/vcard>  VIEW BIO<https://www.nelsonmullins.com/professionals/regina-rabitaille>\r\n\r\nFrom: Regina Rabitaille <regina.rabitaille@nelsonmullins.com>\r\nSent: Friday, October 17, 2025 8:48 AM\r\nTo: Chris Perez <Chris.Perez@nelsonmullins.com>; Rick <rick@mavrix.one>\r\nCc: Brian Stufflebean <brian@mavrix.one>\r\nSubject: RE: Introduction\r\n\r\nThank you, Chris.\r\n\r\nRick – after responding yesterday, I checked with our conflicts department in our firm and, unfortunately, we are unable to represent you because of our representation of Brian in the partnership.\r\n\r\n[https://www.nelsonmullins.com/img/ecard-logo-125.png]\r\nREGINA RABITAILLE  PARTNER\r\nregina.rabitaille@nelsonmullins.com<mailto:regina.rabitaille@nelsonmullins.com>\r\n390 NORTH ORANGE AVENUE | SUITE 1400\r\nORLANDO, FL 32801\r\nT 407.669.4209   F 407.425.8377\r\nNELSONMULLINS.COM<https://www.nelsonmullins.com>    VCARD<https://www.nelsonmullins.com/professionals/regina-rabitaille/vcard>  VIEW BIO<https://www.nelsonmullins.com/professionals/regina-rabitaille>\r\n\r\nFrom: Chris Perez <Chris.Perez@nelsonmullins.com<mailto:Chris.Perez@nelsonmullins.com>>\r\nSent: Friday, October 17, 2025 8:19 AM\r\nTo: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nCc: Brian Stufflebean <brian@mavrix.one<mailto:brian@mavrix.one>>; Regina Rabitaille <regina.rabitaille@nelsonmullins.com<mailto:regina.rabitaille@nelsonmullins.com>>\r\nSubject: RE: Introduction\r\n\r\nGood morning, Rick.\r\n\r\nI hope all is well.\r\n\r\nAttorney Regina Rabitaille currently has the following availability.\r\n\r\n10/20 – 12pm, 1pm\r\n10/21 – 9am, 12pm, 2pm\r\n10/23 – 12:30pm\r\n\r\n10/28 – 9am, or between 11am – 4pm\r\n10/29 – between 9am – 12pm\r\n10/30 – 9am, 10am, or between 2:30pm – 4 pm\r\n\r\nPlease also confirm whether you’d prefer an in-person/virtual meeting. Thanks\r\n\r\nKindest Regards\r\n\r\n[http://www.nelsonmullins.com/img/ecard-logo.png]\r\n\r\nCHRIS PEREZ  ADMINISTRATIVE ASSISTANT\r\nchris.perez@nelsonmullins.com<mailto:chris.perez@nelsonmullins.com>\r\n390 NORTH ORANGE AVENUE | SUITE 1400\r\nORLANDO, FL 32801\r\nT 407.669.4312   F 407.425.8377\r\n\r\nNELSONMULLINS.COM<http://www.nelsonmullins.com/>\r\n\r\n\r\n\r\n\r\nFrom: Regina Rabitaille <regina.rabitaille@nelsonmullins.com<mailto:regina.rabitaille@nelsonmullins.com>>\r\nSent: Thursday, October 16, 2025 4:33 PM\r\nTo: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>; Brian Stufflebean <brian@mavrix.one<mailto:brian@mavrix.one>>\r\nCc: Chris Perez <Chris.Perez@nelsonmullins.com<mailto:Chris.Perez@nelsonmullins.com>>\r\nSubject: RE: Introduction\r\n\r\nHi Rick –\r\n\r\nIt is nice to meet you via email.  I am copying Chris Perez to find a time that works.  Thank you.\r\n[https://www.nelsonmullins.com/img/ecard-logo-125.png]\r\nREGINA RABITAILLE  PARTNER\r\nregina.rabitaille@nelsonmullins.com<mailto:regina.rabitaille@nelsonmullins.com>\r\n390 NORTH ORANGE AVENUE | SUITE 1400\r\nORLANDO, FL 32801\r\nT 407.669.4209   F 407.425.8377\r\nNELSONMULLINS.COM<https://www.nelsonmullins.com>    VCARD<https://www.nelsonmullins.com/professionals/regina-rabitaille/vcard>  VIEW BIO<https://www.nelsonmullins.com/professionals/regina-rabitaille>\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Wednesday, October 15, 2025 12:31 PM\r\nTo: Brian Stufflebean <brian@mavrix.one<mailto:brian@mavrix.one>>; Regina Rabitaille <regina.rabitaille@nelsonmullins.com<mailto:regina.rabitaille@nelsonmullins.com>>\r\nSubject: Re: Introduction\r\n\r\nHi Regina, Thank you, Brian. I’d like to schedule a time to discuss establishing a Trust. Please let me know your availability for a brief meeting at your convenience. Respectuflly, Rick Rick Mislan, PhD, Founder, CTO https: //mavrix1. com CONFIDENTIALITY\r\n\r\nHi Regina,\r\n\r\nThank you, Brian.\r\n\r\nI’d like to schedule a time to discuss establishing a Trust.\r\nPlease let me know your availability for a brief meeting at your convenience.\r\n\r\nRespectuflly,\r\nRick\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:image001.png@01DC3F44.E5081370]\r\nhttps://mavrix1.com<https://urldefense.com/v3/__https:/mavrix1.com__;!!LBFcHN3WCgnqDQ!kTUA5CFGDuBYQcrZ0QzfVTAY9QxGmbDG0qeYG19ysAClC6LC2qURc0UeyHn-bs-lRDEVnD_DuVYtxBqYsEIfOTmwDA$>\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\nOn October 13, 2025 at 17:42:27, Brian Stufflebean (brian@mavrix.one<mailto:brian@mavrix.one>) wrote:\r\nRick,\r\n\r\nI would like to introduce you to Regina Rabitaille.  Regina is an estate planning attorney with Nelson Mullins, who was referred to me by Roman Petra, Esq. I am certain that she will be able to provide you with some guidance in your planning.\r\n\r\nI will leave it to you to reach out to her directly.  Have a nice evening.\r\n\r\nHer contact information  is as follows:\r\n\r\n[cid:image002.png@01DC3F44.E5081370]\r\nREGINA RABITAILLE  PARTNER\r\nregina.rabitaille@nelsonmullins.com<mailto:regina.rabitaille@nelsonmullins.com>\r\n390 NORTH ORANGE AVENUE | SUITE 1400\r\nORLANDO, FL 32801\r\nT 407.669.4209   F 407.425.8377\r\nNELSONMULLINS.COM<https://www.nelsonmullins.com/>    VCARD<https://www.nelsonmullins.com/professionals/regina-rabitaille/vcard>  VIEW BIO<https://www.nelsonmullins.com/professionals/regina-rabitaille>\r\n\r\n\r\n\r\n\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n[cid:image001.png@01DC3F44.E5081370]\r\n\r\n\r\nbrian@mavrix.one<mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/<https://urldefense.com/v3/__https:/mavrix1.com__;!!LBFcHN3WCgnqDQ!kTUA5CFGDuBYQcrZ0QzfVTAY9QxGmbDG0qeYG19ysAClC6LC2qURc0UeyHn-bs-lRDEVnD_DuVYtxBqYsEIfOTmwDA$>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.\r\n\r\n\r\nConfidentiality Notice\r\nThis message is intended exclusively for the individual or entity to which it is addressed. This communication may contain information that is proprietary, privileged, confidential or otherwise legally exempt from disclosure. If you are not the named addressee, you are not authorized to read, print, retain, copy or disseminate this message or any part of it. If you have received this message in error, please notify the sender immediately either by phone (800-237-2000) or reply to this e-mail and delete all copies of this message.',0,0,0,0,0,0,'2025-10-17 13:03:28','2025-12-09 19:29:39','2025-12-09 19:29:39','2025-12-09 19:29:39',NULL,NULL,NULL),
(863,4,'<20251017131554.Horde.0Bw9Z1w5x2boloMGzxXo97j@mavrix1.aponte.to>',NULL,NULL,'Invitation: University Programs - Rick/Leslie','leslie@mavrix.one','Leslie Staron','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\" style=\"-webkit-font-smoothing:antialiased;background:#fff!important\">\r\n<head>\r\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n	<meta name=\"viewport\" content=\"width=device-width\">\r\n	<title></title>\r\n	<style type=\"text/css\">@media only screen{html{min-height:100%;background:#fff}}@media only screen and (max-width:610px){table.body img{width:auto;height:auto}table.body center{min-width:0!important}table.body .container{width:95%!important}table.body .columns{height:auto!important;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:30px!important;padding-right:30px!important}th.small-12{display:inline-block!important;width:100%!important}table.menu{width:100%!important}table.menu td,table.menu th{width:auto!important;display:inline-block!important}table.menu.vertical td,table.menu.vertical th{display:block!important}table.menu[align=center]{width:auto!important}}</style>\r\n</head>\r\n<body style=\"-moz-box-sizing:border-box;-ms-text-size-adjust:100%;-webkit-box-sizing:border-box;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;margin:0;background:#fff!important;box-sizing:border-box;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;min-width:100%;padding:0;text-align:left;width:100%!important\">\r\n	<span class=\"preheader\" style=\"color:#F5F5F5;display:none!important;font-size:1px;line-height:1px;max-height:0;max-width:0;mso-hide:all!important;opacity:0;overflow:hidden;visibility:hidden\">\r\n	</span>\r\n	<table class=\"body\" style=\"-webkit-font-smoothing:antialiased;margin:0;background:#fff;border-collapse:collapse;border-spacing:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n		<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n			<td class=\"center\" align=\"center\" valign=\"top\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n				<center data-parsed=\"\" style=\"min-width:580px;width:100%\"><table align=\"center\" class=\"wrapper header float-center\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:20px;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:0 0;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:150px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n						<table class=\"row collapse\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n							<tbody>\r\n							<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n								<center data-parsed=\"\" style=\"background-color:#00679e;min-width:175px;max-height:175px; padding:35px 0px;border-radius:200px\">\r\n									<img class=\"logo float-center\" src=\"https://mavrix1.aponte.to/apps/theming/image/logo?useSvg=0&amp;v=9\" alt=\"Mavrix1\" align=\"center\" style=\"-ms-interpolation-mode:bicubic;clear:both;display:block;float:none;margin:0 auto;outline:0;text-align:center;text-decoration:none;max-height:105px;max-width:105px;width:auto;height:auto\" width=\"105\" height=\"22\">\r\n								</center>\r\n							</tr>\r\n							</tbody>\r\n						</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"40px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:80px;font-weight:400;hyphens:auto;line-height:80px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"container main-heading float-center\" style=\"Margin:0 auto;background:0 0!important;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:580px\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<h1 class=\"text-center\" style=\"Margin:0;Margin-bottom:10px;color:inherit;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:24px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:center;word-wrap:normal\">Leslie Staron would like to invite you to \"University Programs - Rick/Leslie\"</h1>\r\n		</td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"36px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:40px;font-weight:400;hyphens:auto;line-height:36px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"wrapper content float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:580px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/title.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Title:</em><br>University Programs - Rick/Leslie</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/time.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">When:</em><br>In a hour on Friday, October 17, 2025 between 11:00 AM - 11:30 AM (America/New_York)</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/location.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Location:</em><br>Leslie will call</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"spacer\" style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"50px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:50px;font-weight:400;hyphens:auto;line-height:50px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"row btn-group\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<center data-parsed=\"\" style=\"min-width:490px;width:100%\">\r\n							<!--[if (gte mso 9)|(IE)]>\r\n							<table>\r\n								<tr>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default primary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;margin:0 0 30px 0;margin-right:15px;border-radius:8px;max-width:300px;padding:0;text-align:center;vertical-align:top;width:auto;background:#00679e;background-color:#00679e;color:#fefefe;\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #00679e;border-collapse:collapse!important;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/accept/sBiZfo5PSG9vUtSIsJiwlBSEwqjER538cNfYliOSjX9qG1uhNzI0MfsttteB\" style=\"Margin:0;border:0 solid #00679e;color:#ffffff;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;padding:8px;text-align:left;outline:1px solid #ffffff;text-decoration:none\">Accept</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default secondary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;background-color: #ccc;margin:0 0 30px 0;max-height:40px;max-width:300px;padding:1px;border-radius:8px;text-align:center;vertical-align:top;width:auto\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #777;border-collapse:collapse!important;color:#fefefe;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/decline/sBiZfo5PSG9vUtSIsJiwlBSEwqjER538cNfYliOSjX9qG1uhNzI0MfsttteB\" style=\"Margin:0;background-color:#fff;border:0 solid #777;color:#6C6C6C!important;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;border-radius: 7px;padding:8px;text-align:left;text-decoration:none\">Decline</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n								</tr>\r\n							</table>\r\n							<![endif]-->\r\n						</center>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;text-align:center\"><small><a href=\"https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/sBiZfo5PSG9vUtSIsJiwlBSEwqjER538cNfYliOSjX9qG1uhNzI0MfsttteB\">More options …</a></small></p>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table><table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"60px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:60px;font-weight:400;hyphens:auto;line-height:60px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"wrapper footer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<center data-parsed=\"\" style=\"min-width:580px;width:100%\">\r\n				<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n					<tbody>\r\n					<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n						<td height=\"15px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:15px;font-weight:400;hyphens:auto;line-height:15px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n					</tr>\r\n					</tbody>\r\n				</table>\r\n				<p class=\"text-center float-center\" align=\"center\" style=\"Margin:0;Margin-bottom:10px;color:#C8C8C8;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:10px;padding:0;text-align:center\">Mavrix1 - Manufacturing American Autonomy<br>This is an automatically sent email, please do not reply.</p>\r\n			</center>\r\n		</td>\r\n	</tr>\r\n</table>					</center>\r\n				</td>\r\n			</tr>\r\n		</table>\r\n		<!-- prevent Gmail on iOS font size manipulation -->\r\n		<div style=\"display:none;white-space:nowrap;font:15px courier;line-height:0\">                                                           </div>\r\n	</body>\r\n</html>','Leslie Staron would like to invite you to \"University Programs - Rick/Leslie\"\r\n\r\n         Title: University Programs - Rick/Leslie\r\n          When: In a hour on Friday, October 17, 2025 between 11:00 AM - 11:30 AM (America/New_York)\r\n      Location: Leslie will call\r\n\r\nAccept: https://mavrix1.aponte.to/apps/dav/invitation/accept/sBiZfo5PSG9vUtSIsJiwlBSEwqjER538cNfYliOSjX9qG1uhNzI0MfsttteB\r\nDecline: https://mavrix1.aponte.to/apps/dav/invitation/decline/sBiZfo5PSG9vUtSIsJiwlBSEwqjER538cNfYliOSjX9qG1uhNzI0MfsttteB\r\n\r\nMore options at https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/sBiZfo5PSG9vUtSIsJiwlBSEwqjER538cNfYliOSjX9qG1uhNzI0MfsttteB\r\n\r\n\r\n-- \r\nMavrix1 - Manufacturing American Autonomy\r\nThis is an automatically sent email, please do not reply.',0,0,0,0,0,0,'2025-10-17 13:15:54','2025-12-09 19:29:40','2025-12-09 19:29:40','2025-12-09 19:29:40',NULL,NULL,NULL),
(864,4,'<PH3PPFCA48BBAFB63C73DFDCEC5A0A93637CAF6A@PH3PPFCA48BBAFB.namprd22.prod.outlook.com>',NULL,NULL,'RE: DragonPlate Contact','bdorsch@allredcorp.com','Billy Dorsch','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.gmailquote, li.gmailquote, div.gmailquote\r\n	{mso-style-name:gmail_quote;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmailon;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon0, li.airmailon0, div.airmailon0\r\n	{mso-style-name:airmailon0;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon00, li.airmailon00, div.airmailon00\r\n	{mso-style-name:airmailon00;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle24\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;\r\n	font-weight:normal;\r\n	font-style:normal;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Hi Rick, <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><br>\r\nThere are ongoing talks this morning about this opportunity. I will have an update on this shortly for you. I just wanted to keep you in the loop.\r\n<br>\r\n<br>\r\nAll the best, <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Billy <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Thursday, October 16, 2025 11:57 AM<br>\r\n<b>To:</b> Billy Dorsch &lt;bdorsch@allredcorp.com&gt;<br>\r\n<b>Subject:</b> RE: DragonPlate Contact<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"background:#FFCCDD\"><b><span style=\"color:black\">EXTERNAL EMAIL:</span></b><span style=\"font-size:10.0pt;color:black\">Be cautious with links and attachments.</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\">Cool -&nbsp;thanks!<br>\r\nLooking forward to hearing from you. <o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\">Rick<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;</span>\r\n<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img id=\"_x0000_i1030\" src=\"data:application/octet-stream;base64,iVBORw0KGgoAAAANSUhEUgAAAFQAAAAPCAYAAAB6Iuj1AAAAAXNSR0IArs4c6QAAAIRlWElmTU0AKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdpAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAFSgAwAEAAAAAQAAAA8AAAAAC5FemQAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgogICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAABFdJREFUWAntl0uIl1UYh7+y0szIyMoU6aKUBYGLSMoWCi5E7EoXMGrhokVIiRCBkFhRQW2Cwpa1MKQbgSK2qdWESEQEFV3U0aao6GJkF7VsfJ5vzk8+Dv+Z8d+4a37weG7vey7vec/3H5tmUhOJwFnF+VrKb+DfiUz2f/Y9jcOfUQJwC+VRGIa/St9k0UcETu/YrqduIOVvMLCT6iMCZqaaAlsgwTSwg6XdaGTU/ytZhClanex8Xb/4dPsy32jlaD7p754nfZnfsdSdP7bdvnpdx8Sn/hIchN1wHaghMMCnRPme9DtZLz8PN5562Zg1vfrHm6sed55add+0yuBs2gdg2AOdD27kH/BXqr6lHPpYNe5taPsb6Gvdvhkw1sG0cfx3iN9s6n5/7DsCHsD1esl13Od54MG0/xVify71+gxZ0x8N6/q6tn6ebw4cgj/B+exzPm3PBL+PaiacA/opz6GNc53QIDWDopODNTr/Ah6iHrPvc7gTlAf8Gmq7Xu1vsdsA6knQ5kuYC6rOCvs8nHoYXPt7uAbUjeAT7HWOBEe/xeBaH8NUUC+Cfd/BzaC8lPxZNI/6AGizC7wAlcTxAvbDsE4GzBt7Cz6E6aCjG7sI1oJ6FT4D01t5ky70AGh/CfwAj8AFoH+dKXS1gTDwHs4NL4d34T1YBh/A9aDcsIFTyZQV1He2PU1zN+UbYPC/gPnwNjiH54ivpdn1Cvga3oEhuBIOg3Lfz7a1ptlE+Xipr6R8DXx5xug+MNO7ezOge+BSaINgQLzhWh7CgDt+VT1I28AdBTe8EPrRJxg77+ri5FP6tPRtKX3JUjesFoBPUz8DoLw0ffMyllIfS7czqP9emFoMk2k30fY1Ov46bCx12+sgyr6SMO5vP7Tf0Ezmt1SZPQbIQF0McTZ4KpswQ2eBkzlxviNvUp8D+mnrZmppf3npNJPVH+Bz+wjuBYP7DLgfs8hyO5gpL8Nz4Nqu636zTvcc2RPDbYabWdqqBMO6vibPAPjqdsBdhZ8oV4Cv1/WOFShOSP923gTTEQ2Vm8ghU6Y/Zfq7G3ZMLYUbwKfleHeN7iEYapU+PyX74I6R7uZpytsgT9KMWQgeeg2oBGekNfJv9xyuH7LnrNf16dZNolyK/dNhrhXkeuP5Nz9iZIS9BeUtJAgGJU9ssYPIzMv4Auouov98UF+B7SU2xpDfY+3yg+a6Zol6EBzzFVwBT5T2EGUO6z5yOC/jQLHxv4LK+bpK+1Y6nXsQ8tqcSznmhTj+PNxf6rafgihzZX3990H75G\"></span><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"http://mavrix1.com/\">mavrix1.com</a><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"gmailquote\"><span style=\"color:black\">On October 16, 2025 at 11:44:33</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"color:black\">AM, Billy Dorsch (<a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>)\r\n wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Hey Rick,\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\"><br>\r\nI was able to connect with JB yesterday, and he is currently in a meeting with management, discussing your request. I will be in touch once they have updated me on things. You will hear from me no later than EOD today regarding this matter.\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\"><br>\r\nThank you, </span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Billy\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, October 15, 2025 7:55 PM<br>\r\n<b>To:</b> Billy Dorsch &lt;<a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>&gt;<br>\r\n<b>Subject:</b> RE: DragonPlate Contact</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;background:#FFCCDD\">\r\n<b><span style=\"color:black\">EXTERNAL EMAIL:</span></b><span style=\"font-size:10.0pt;color:black\">Be cautious with links and attachments.</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p style=\"margin:0in\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Just checking if you had any updates..</span><o:p></o:p></p>\r\n<p style=\"margin:0in\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Thanks!</span><o:p></o:p></p>\r\n<p style=\"margin:0in\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Rick</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:12.0pt\">&nbsp;<o:p></o:p></p>\r\n<p class=\"airmailon\">On July 24, 2025 at 4:02:57<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM, Billy Dorsch (<a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Hi Rick,\r\n<br>\r\n<br>\r\nThis is a quick update to keep you in the loop. I will be meeting with JB in the EOD meeting today. I got bumped from an earlier time slot for a pressing matter. I will still be following up; I just didn’t want to go too long without updating you.\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\"><br>\r\nThank you, <br>\r\nBilly </span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Thursday, July 24, 2025 7:05 AM<br>\r\n<b>To:</b> Billy Dorsch &lt;<a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>&gt;<br>\r\n<b>Subject:</b> RE: DragonPlate Contact</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;background:#FFCCDD\">\r\n<b><span style=\"font-family:&quot;Helvetica&quot;,sans-serif;color:black\">EXTERNAL EMAIL:</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Be cautious with links and attachments.</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Here’s what I’ve pulled from your website…</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Can you help with these prices?</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"1120\" height=\"272\" style=\"width:11.6666in;height:2.8333in\" id=\"_x0000_i1029\" src=\"cid:image001.png@01DBFCB4.3EE6AF60\"></span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a></span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" id=\"_x0000_i1028\" src=\"file://Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"airmailon0\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">On July 16, 2025 at 11:36:45 AM, Billy Dorsch (<a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>) wrote:</span><o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Rick,\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">You are very welcome. I am meeting with JB this afternoon to discuss&nbsp;this; he’s had a lot of things to catch up\r\n on Monday and Tuesday. I will reach out after he and I connect on the&nbsp;next steps.\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><br>\r\nEnjoy Miami! Safe travels, and I will be in touch later today. <br>\r\n<br>\r\nThanks, <br>\r\nBilly </span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, July 16, 2025 7:41 AM<br>\r\n<b>To:</b> Billy Dorsch &lt;<a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>&gt;<br>\r\n<b>Subject:</b> Re: DragonPlate Contact</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;background:#FFCCDD\">\r\n<b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">EXTERNAL EMAIL:</span></b><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif;color:black\">Be cautious with links and attachments.</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Billy - thanks for the update.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I was traveling a bit this week (in Miami today).</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Could you please provide an update on this?</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks!</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://mavrix.onehttps//mavrix.onehttps://mavrix.one\">https://mavrix.one</a></span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" id=\"_x0000_i1027\" src=\"file://Users/rpmbbu/Library/Group%20Containers/2E337YPCZY.airmail/Library/Application%20Support/it.bloop.airmail2/Airmail/General/SignatureAttachment/rick@mavrix.one/CCE41B2F-429E-4EC4-B7BB-A76AF859DF18/mavrix.png\"></span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"airmailon00\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">On July 11, 2025 at 11:16:54 AM, Billy Dorsch (<a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>) wrote:</span><o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Rick,\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">I\'m sorry for not getting this email out sooner. I just wanted to update you on the status of your request. I pinged\r\n the team yesterday, and today I see that a few of the folks I wanted to talk to aren’t in the office today. I have emailed our founder/president, JB Allred, to see his schedule for next week so we can arrange a call to discuss. I will let you know as soon\r\n as I hear from JB, who oversees our Engineering team. I don’t want too much time to pass, so I hope we can schedule something for early next week.\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">There is a chance I may not hear from JB until Monday morning, as he is currently out of the office today. Let\r\n me know if you have any open availability early next week, and I can bounce those off JB so we can sync up.\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks again, Rick. I look forward to your feedback and connecting with you next week!</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Best,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Billy Dorsch\r\n</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Sales, Allred &amp; Associates</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"mailto:bdorsch@allredcorp.com\">bdorsch@allredcorp.com</a>&nbsp;&nbsp; &nbsp;(315) 612-3876&nbsp; &nbsp;<a href=\"http://www.allredcorp.com/\">www.allredcorp.com</a></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">321 NY Rt. 5 Elbridge, NY 13060, USA</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"103\" height=\"78\" style=\"width:1.0729in;height:.8125in\" id=\"_x0000_i1026\" src=\"cid:image002.jpg@01DBFCB4.3EE6AF60\"></span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"82\" height=\"79\" style=\"width:.8541in;height:.8229in\" id=\"_x0000_i1025\" src=\"cid:image003.jpg@01DBFCB4.3EE6AF60\"></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\"><br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Hi Rick,\r\n\r\nThere are ongoing talks this morning about this opportunity. I will have an update on this shortly for you. I just wanted to keep you in the loop.\r\n\r\nAll the best,\r\nBilly\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Thursday, October 16, 2025 11:57 AM\r\nTo: Billy Dorsch <bdorsch@allredcorp.com>\r\nSubject: RE: DragonPlate Contact\r\n\r\nEXTERNAL EMAIL:Be cautious with links and attachments.\r\n\r\nCool - thanks!\r\nLooking forward to hearing from you.\r\nRick\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[X]\r\nmavrix1.com<http://mavrix1.com/>\r\n\r\n\r\nOn October 16, 2025 at 11:44:33 AM, Billy Dorsch (bdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>) wrote:\r\nHey Rick,\r\n\r\nI was able to connect with JB yesterday, and he is currently in a meeting with management, discussing your request. I will be in touch once they have updated me on things. You will hear from me no later than EOD today regarding this matter.\r\n\r\nThank you,\r\nBilly\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Wednesday, October 15, 2025 7:55 PM\r\nTo: Billy Dorsch <bdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>>\r\nSubject: RE: DragonPlate Contact\r\n\r\nEXTERNAL EMAIL:Be cautious with links and attachments.\r\n\r\n\r\nJust checking if you had any updates..\r\n\r\nThanks!\r\n\r\nRick\r\n\r\n\r\nOn July 24, 2025 at 4:02:57 PM, Billy Dorsch (bdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>) wrote:\r\nHi Rick,\r\n\r\nThis is a quick update to keep you in the loop. I will be meeting with JB in the EOD meeting today. I got bumped from an earlier time slot for a pressing matter. I will still be following up; I just didn’t want to go too long without updating you.\r\n\r\nThank you,\r\nBilly\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Thursday, July 24, 2025 7:05 AM\r\nTo: Billy Dorsch <bdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>>\r\nSubject: RE: DragonPlate Contact\r\n\r\nEXTERNAL EMAIL:Be cautious with links and attachments.\r\n\r\nHere’s what I’ve pulled from your website…\r\nCan you help with these prices?\r\n\r\n[cid:image001.png@01DBFCB4.3EE6AF60]\r\n\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn July 16, 2025 at 11:36:45 AM, Billy Dorsch (bdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>) wrote:\r\nHi Rick,\r\n\r\nYou are very welcome. I am meeting with JB this afternoon to discuss this; he’s had a lot of things to catch up on Monday and Tuesday. I will reach out after he and I connect on the next steps.\r\n\r\nEnjoy Miami! Safe travels, and I will be in touch later today.\r\n\r\nThanks,\r\nBilly\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Wednesday, July 16, 2025 7:41 AM\r\nTo: Billy Dorsch <bdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>>\r\nSubject: Re: DragonPlate Contact\r\n\r\nEXTERNAL EMAIL:Be cautious with links and attachments.\r\n\r\nHi Billy - thanks for the update.\r\nI was traveling a bit this week (in Miami today).\r\nCould you please provide an update on this?\r\nThanks!\r\nRick\r\nRick Mislan, PhD\r\nhttps://mavrix.one<https://mavrix.onehttps//mavrix.onehttps://mavrix.one>\r\n[X]\r\n\r\n\r\nOn July 11, 2025 at 11:16:54 AM, Billy Dorsch (bdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>) wrote:\r\nHi Rick,\r\n\r\nI\'m sorry for not getting this email out sooner. I just wanted to update you on the status of your request. I pinged the team yesterday, and today I see that a few of the folks I wanted to talk to aren’t in the office today. I have emailed our founder/president, JB Allred, to see his schedule for next week so we can arrange a call to discuss. I will let you know as soon as I hear from JB, who oversees our Engineering team. I don’t want too much time to pass, so I hope we can schedule something for early next week.\r\n\r\nThere is a chance I may not hear from JB until Monday morning, as he is currently out of the office today. Let me know if you have any open availability early next week, and I can bounce those off JB so we can sync up.\r\n\r\nThanks again, Rick. I look forward to your feedback and connecting with you next week!\r\n\r\nBest,\r\n\r\nBilly Dorsch\r\nSales, Allred & Associates\r\nbdorsch@allredcorp.com<mailto:bdorsch@allredcorp.com>    (315) 612-3876   www.allredcorp.com<http://www.allredcorp.com/>\r\n321 NY Rt. 5 Elbridge, NY 13060, USA\r\n[cid:image002.jpg@01DBFCB4.3EE6AF60] [cid:image003.jpg@01DBFCB4.3EE6AF60]\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-10-17 14:44:02','2025-12-09 19:29:40','2025-12-09 19:29:40','2025-12-09 19:29:40',NULL,NULL,NULL),
(865,4,'<CAGOCFXj2T46N29WsSW1QLDxwnoncWeAqHVk9HQ6cqvFvjPsu9A@mail.gmail.com>',NULL,NULL,'Fwd: Confidential Use Internally Do not Forward','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\">Attached the documentation that Gary sent over about C4V.<br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">gary <a href=\"http://liionllc.com\">liionllc.com</a></strong> <span dir=\"auto\">&lt;<a href=\"mailto:gary@liionllc.com\">gary@liionllc.com</a>&gt;</span><br>Date: Fri, Oct 17, 2025 at 3:57 PM<br>Subject: Confidential Use Internally Do not Forward<br>To: Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\">nathan@lithiumbatterycompany.com</a>&gt;<br>Cc: jerry <a href=\"http://liionllc.com\">liionllc.com</a> &lt;<a href=\"mailto:jerry@liionllc.com\">jerry@liionllc.com</a>&gt;, Gary Gray &lt;<a href=\"mailto:g.gray@c4v.us\">g.gray@c4v.us</a>&gt;, lft <a href=\"http://liionllc.com\">liionllc.com</a> &lt;<a href=\"mailto:lft@liionllc.com\">lft@liionllc.com</a>&gt;, gary <a href=\"http://liionllc.com\">liionllc.com</a> &lt;<a href=\"mailto:gary@liionllc.com\">gary@liionllc.com</a>&gt;<br></div><br><br><div class=\"msg-8572975494898207624\">\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nNathan</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nDeck...LiiON &amp; C4V</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nPress release schedule for beginning of month</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nLiiON History</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nWhite paper BMLMP</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nC4V BMLMP VS Industry Chemistries...</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nI can walk you and Brian through these might be a good industry session for both..schedule 30 mins on zoom and lets go...</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\ng</div>\r\n</div>\r\n\r\n</div></div></div>','Attached the documentation that Gary sent over about C4V.\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: gary liionllc.com <gary@liionllc.com>\r\nDate: Fri, Oct 17, 2025 at 3:57 PM\r\nSubject: Confidential Use Internally Do not Forward\r\nTo: Nathan Staron <nathan@lithiumbatterycompany.com>\r\nCc: jerry liionllc.com <jerry@liionllc.com>, Gary Gray <g.gray@c4v.us>, lft\r\nliionllc.com <lft@liionllc.com>, gary liionllc.com <gary@liionllc.com>\r\n\r\n\r\nNathan\r\n\r\nDeck...LiiON & C4V\r\nPress release schedule for beginning of month\r\nLiiON History\r\nWhite paper BMLMP\r\nC4V BMLMP VS Industry Chemistries...\r\n\r\nI can walk you and Brian through these might be a good industry session for\r\nboth..schedule 30 mins on zoom and lets go...\r\n\r\n\r\ng',0,0,0,0,0,0,'2025-10-17 20:14:18','2025-12-09 19:29:54','2025-12-09 19:29:54','2025-12-09 19:29:54',NULL,NULL,NULL),
(866,4,'<82447720-3D71-4587-92DB-4899D42B11FD@mavrix.one>',NULL,NULL,'Fwd: updated financials','brian@mavrix.one','\"Brian C. Stufflebean\"','<html class=\"apple-mail-supports-explicit-dark-mode\"><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body dir=\"auto\"><br id=\"lineBreakAtBeginningOfSignature\"><div dir=\"ltr\">Sent from my iPhone</div><div dir=\"ltr\"><br>Begin forwarded message:<br><br></div><blockquote type=\"cite\"><div dir=\"ltr\"><b>From:</b> \"Brian C. Stufflebean\" &lt;brian@mavrix.one&gt;<br><b>Date:</b> October 17, 2025 at 1:35:42 PM EDT<br><b>To:</b> Katherine Aponte &lt;katherine@mavrix.one&gt;<br><b>Subject:</b> <b>Re: updated financials</b><br><br></div></blockquote><blockquote type=\"cite\"><div dir=\"ltr\">﻿<span>Hi Katy,</span><br><span></span><br><span>Thank you, would you also and in PDF format please. &nbsp;</span><br><span>Thanks again, &nbsp;</span><br><span></span><br><span>Brian</span><br><span>Sent from my iPhone</span><br><span></span><br><blockquote type=\"cite\"><span>On Oct 17, 2025, at 12:29 PM, Katherine Aponte &lt;katherine@mavrix.one&gt; wrote:</span><br></blockquote><blockquote type=\"cite\"><span></span><br></blockquote><blockquote type=\"cite\"><span>﻿Hi Brian,</span><br></blockquote><blockquote type=\"cite\"><span></span><br></blockquote><blockquote type=\"cite\"><span></span><br></blockquote><blockquote type=\"cite\"><span>Per the conversation with Rick, attached is an updated financials for your reference. Let me know if you need anything further or adjusted, thanks!</span><br></blockquote><blockquote type=\"cite\"><span></span><br></blockquote><blockquote type=\"cite\"><span>-Katy</span><br></blockquote><blockquote type=\"cite\"><span>&lt;Restated Financials 17.10.2025.xlsx&gt;</span><br></blockquote><span></span><br></div></blockquote></body></html>','\r\nSent from my iPhone\r\n\r\nBegin forwarded message:\r\n\r\n> From: \"Brian C. Stufflebean\" <brian@mavrix.one>\r\n> Date: October 17, 2025 at 1:35:42 PM EDT\r\n> To: Katherine Aponte <katherine@mavrix.one>\r\n> Subject: Re: updated financials\r\n> \r\n> ﻿Hi Katy,\r\n> \r\n> Thank you, would you also and in PDF format please.  \r\n> Thanks again,  \r\n> \r\n> Brian\r\n> Sent from my iPhone\r\n> \r\n>> On Oct 17, 2025, at 12:29 PM, Katherine Aponte <katherine@mavrix.one> wrote:\r\n>> \r\n>> ﻿Hi Brian,\r\n>> \r\n>> \r\n>> Per the conversation with Rick, attached is an updated financials for your reference. Let me know if you need anything further or adjusted, thanks!\r\n>> \r\n>> -Katy\r\n>> <Restated Financials 17.10.2025.xlsx>\r\n> ',0,0,0,0,0,0,'2025-10-17 20:23:16','2025-12-09 19:29:54','2025-12-09 19:29:54','2025-12-09 19:29:54',NULL,NULL,NULL),
(867,4,'<CFA7E512-06B3-4FEB-942E-6D1EF9344830@mavrix.one>',NULL,NULL,'Fwd: updated financials','Brian@mavrix.one','Brian Stufflebean','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=us-ascii\"></head><body style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"><div><span></span><meta charset=\"UTF-8\"><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br class=\"Apple-interchange-newline\"><br class=\"Apple-interchange-newline\"><a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a href=\"https://mavrix1.com\">https://mavrix1.com/</a></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family: Helvetica; font-style: normal; font-weight: 400; font-size: 12px;\">&nbsp;This&nbsp;communication&nbsp;is confidential&nbsp;and&nbsp;intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, or&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any such&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this communication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the&nbsp;message to inform him or her of the&nbsp;error.<br><br></span></div>\r\n</div>\r\n\r\n<br></body></html>','\r\n\r\n> Begin forwarded message:\r\n> \r\n> From: Katherine Aponte <katherine@mavrix.one>\r\n> Subject: updated financials\r\n> Date: October 17, 2025 at 12:29:25 PM EDT\r\n> To: brian@mavrix.one\r\n> \r\n> Hi Brian,\r\n> \r\n> \r\n> Per the conversation with Rick, attached is an updated financials for your reference. Let me know if you need anything further or adjusted, thanks!\r\n> \r\n> -Katy\r\n￼\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n￼\r\n\r\n\r\nbrian@mavrix.one <mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-10-17 20:53:42','2025-12-09 19:29:55','2025-12-09 19:29:55','2025-12-09 19:29:55',NULL,NULL,NULL),
(868,4,'<EABA36F6-58EB-4FAD-8EBA-14B83FEA963F@mavrix.one>',NULL,NULL,'From Katy','Brian@mavrix.one','Brian Stufflebean','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=us-ascii\"></head><body style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"><div><span></span><meta charset=\"UTF-8\"><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br class=\"Apple-interchange-newline\"><br class=\"Apple-interchange-newline\"><a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a href=\"https://mavrix1.com\">https://mavrix1.com/</a></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family: Helvetica; font-style: normal; font-weight: 400; font-size: 12px;\">&nbsp;This&nbsp;communication&nbsp;is confidential&nbsp;and&nbsp;intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, or&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any such&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this communication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the&nbsp;message to inform him or her of the&nbsp;error.<br><br></span></div>\r\n</div>\r\n\r\n<br></body></html>','￼\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n￼\r\n\r\n\r\nbrian@mavrix.one <mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-10-17 20:58:00','2025-12-09 19:29:55','2025-12-09 19:29:55','2025-12-09 19:29:55',NULL,NULL,NULL),
(869,4,'<4a92e973-88ee-4b6f-866f-8b0fbc8af81c@mavrix.one>',NULL,NULL,'Re: updated financials','katherine@mavrix.one','Katherine Aponte','Hi Brian,\r\n\r\n\r\nHere\'s the PDF version. Let me know if you need anything else, thanks!\r\n\r\n\r\n-Katy\r\n\r\nOn 10/17/2025 1:35 PM, Brian C. Stufflebean wrote:\r\n> Hi Katy,\r\n>\r\n> Thank you, would you also and in PDF format please.\r\n> Thanks again,\r\n>\r\n> Brian\r\n> Sent from my iPhone\r\n>\r\n>> On Oct 17, 2025, at 12:29 PM, Katherine Aponte <katherine@mavrix.one> wrote:\r\n>>\r\n>> ﻿Hi Brian,\r\n>>\r\n>>\r\n>> Per the conversation with Rick, attached is an updated financials for your reference. Let me know if you need anything further or adjusted, thanks!\r\n>>\r\n>> -Katy\r\n>> <Restated Financials 17.10.2025.xlsx>','Hi Brian,\r\n\r\n\r\nHere\'s the PDF version. Let me know if you need anything else, thanks!\r\n\r\n\r\n-Katy\r\n\r\nOn 10/17/2025 1:35 PM, Brian C. Stufflebean wrote:\r\n> Hi Katy,\r\n>\r\n> Thank you, would you also and in PDF format please.\r\n> Thanks again,\r\n>\r\n> Brian\r\n> Sent from my iPhone\r\n>\r\n>> On Oct 17, 2025, at 12:29 PM, Katherine Aponte <katherine@mavrix.one> wrote:\r\n>>\r\n>> ﻿Hi Brian,\r\n>>\r\n>>\r\n>> Per the conversation with Rick, attached is an updated financials for your reference. Let me know if you need anything further or adjusted, thanks!\r\n>>\r\n>> -Katy\r\n>> <Restated Financials 17.10.2025.xlsx>',0,0,0,0,0,0,'2025-10-17 21:35:36','2025-12-09 19:29:55','2025-12-09 19:29:55','2025-12-09 19:29:55',NULL,NULL,NULL),
(870,4,' <SA1PR18MB4824D41329A4B4BD754473CDA1F2A@SA1PR18MB4824.namprd18.prod.outlook.com>',NULL,NULL,'Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration','jtrevey@forgenano.com','James Trevey','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nHey Jordan,&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nI am back from 3 weeks of travel and ready to get sorted here. Tomorrow is sunk, but on Thursday I can do 9am MT or 12:30pm MT. Do either work for you? If not, I have the following next week:</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n27th: 11:30-1pm MT</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n28th: 8am MT, 11am MT, after 1pm MT</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n29th: after 1pm MT</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n30th: after 10am MT</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nLet me know what works.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nJames</div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<hr style=\"display: inline-block; width: 98%;\">\r\n<div style=\"font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b>&nbsp;Monday, October 20, 2025 5:12 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;jtrevey@forgenano.com&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;dansheridanmusic@gmail.com&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration </div>\r\n<div style=\"font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr;\">Hi James,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">I am out of town as well. &nbsp;How does your Wednesday look?&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Looking forward to catching up.</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><u>jordan<a style=\"margin: 0px;\" class=\"OWAAutoLink\" id=\"OWAf7c2c607-accb-1d48-00c0-8983b5ae6386\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"color: rgb(255, 255, 255); background-color: rgba(255, 255, 255, 0);\"><a style=\"margin-top: 0px; margin-bottom: 0px; background-color: rgba(255, 255, 255, 0);\" data-auth=\"NotApplicable\" class=\"OWAAutoLink\" id=\"OWA8b905969-60b2-8c37-1c71-34c23bb26483\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,kcAZ-rF3D0Z_d8KzW-apTAtlzHQofd8D2ZjbELiCHZPsqOhCV8Xd_fUJ6ZWDkt-2fgJod-EPR6FfR9gTPQj_LmrIjU3cEOjFP4Vi0A3Pa8jqtC5XpIZ1aRU,&amp;typo=1\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<blockquote>\r\n<div style=\"direction: ltr;\">On Oct 16, 2025, at 9:20 AM, James Trevey &lt;jtrevey@forgenano.com&gt; wrote:<br>\r\n<br>\r\n</div>\r\n</blockquote>\r\n<blockquote>\r\n<div style=\"direction: ltr;\">﻿</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nHey Jordan,</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nApologies for the slow/no replies recently. Travel has been brutal.&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nWe\'ve got a lot of the information ready for you. Can we schedule a call to do a walk through on Monday the 20th at 9am or 10am ET?</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nJames</div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div id=\"x_divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b>&nbsp;Thursday, October 16, 2025 9:16 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;jtrevey@forgenano.com&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;dansheridanmusic@gmail.com&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction: ltr;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr;\">Hi James,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Would be great to get some pricing and spec sheets.&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Let me know when we can connect.&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Best,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><u>jordan<a style=\"margin: 0px;\" class=\"OWAAutoLink\" id=\"OWA6e6518c7-b1b2-a9d3-b5c7-e75cd139b83f\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"color: rgb(255, 255, 255); background-color: rgba(255, 255, 255, 0);\"><a style=\"margin-top: 0px; margin-bottom: 0px; background-color: rgba(255, 255, 255, 0);\" data-auth=\"NotApplicable\" class=\"OWAAutoLink\" id=\"OWAe31ac896-4399-1efb-6f2c-7967953d3e79\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,kruzcWrtQAWBE_Wzkk5ZCPi8egnieSOSjhsFO2fIO_mt3sy1dInRgNFjLY-Xwbk4dmY7rgbxINSGlle76-Yg-vEcypX9dPm0sX9KSwuuDZUbmg,,&amp;typo=1\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<blockquote>\r\n<div style=\"direction: ltr;\">On Sep 30, 2025, at 4:31 PM, Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt; wrote:<br>\r\n<br>\r\n</div>\r\n</blockquote>\r\n<blockquote>\r\n<div style=\"direction: ltr;\">﻿</div>\r\n<div style=\"direction: ltr;\">Hi James,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">I have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Looking forward to our discussion and seeing your deck of prospective projects.&nbsp;&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Best,&nbsp;</div>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; color: black;\"><br>\r\n</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; color: black;\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: black;\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: blue;\"><u>jordan<a style=\"color: blue; margin: 0px;\" class=\"OWAAutoLink\" id=\"OWAc7d77927-1b34-5743-9e14-a66571eb2996\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: rgb(5, 99, 193);\"><a style=\"margin-top: 0px; margin-bottom: 0px;\" data-auth=\"NotApplicable\" class=\"OWAAutoLink\" id=\"OWA324c57de-34ea-de6d-5110-af4c020dd065\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,KG7OlMyZO9jbLU5vTJ3I8lMhBaHdNf06-ktzHMDOUSoCImrfUczbXUj1d1VcQUh_ApKsyrkLO9FO7PzcinsYewUWoskpuT9EKlrhqSI22A,,&amp;typo=1\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">On Fri, Sep 26, 2025 at 4:59 PM James Trevey &lt;<a class=\"OWAAutoLink\" id=\"OWA9bf92834-b125-3261-f5ee-fc5ab4a4b064\" href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin: 0px 0px 0px 0.8ex; padding-left: 1ex; border-left: 1px solid rgb(204, 204, 204);\">\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nJordan,</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nI won\'t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products.&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nI\'ll send to you as soon as I can next week.</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nJames</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div style=\"direction: ltr; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;James Trevey &lt;<a class=\"OWAAutoLink\" id=\"OWA4a56e5b0-7547-009b-e0f9-09d85bdcb401\" href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 24, 2025 10:49 AM<br>\r\n<b>To:</b>&nbsp;Jordan Wroblewski &lt;<a class=\"OWAAutoLink\" id=\"OWA538352ea-6cf6-ae29-12a3-4655367275e0\" href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a class=\"OWAAutoLink\" id=\"OWA7fd338e4-4d03-f50f-43c3-5364cbb82a0b\" href=\"mailto:dansheridanmusic@gmail.com\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a class=\"OWAAutoLink\" id=\"OWA02c346e5-23fe-5170-14f6-1a1fade02e3d\" href=\"mailto:nathan@lithiumbatterycompany.com\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction: ltr; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nJordan,</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating.&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nI also have a verbal matter we can discuss soon. Once I\'ve got the deck ready I\'ll find time for a short call with you.</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nTalk soon.</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nJames</div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div id=\"x_x_m_7859046138643783182x_divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: black;\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a class=\"OWAAutoLink\" id=\"OWAea2d7e23-0227-6b05-2d24-7721e695e834\" href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 24, 2025 10:07 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a class=\"OWAAutoLink\" id=\"OWA443da8b1-99a9-810a-f48f-3c9fd3f49708\" href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a class=\"OWAAutoLink\" id=\"OWA4274d479-1e0a-7df8-23af-21e278d0d08f\" href=\"mailto:dansheridanmusic@gmail.com\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a class=\"OWAAutoLink\" id=\"OWA8e6b5ffa-4d9a-b4f0-8085-4c2b0948e67c\" href=\"mailto:nathan@lithiumbatterycompany.com\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction: ltr;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr;\">Hi James,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Thank you for the follow up.&nbsp; You were on my list to contact today!&nbsp;&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Would that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">I will let you know if I will be able to make it up to Detroit for The Battery Show.&nbsp;&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Looking forward to seeing the deck.</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">All the best,&nbsp;</div>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; color: black;\"><br>\r\n</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; color: black;\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: black;\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: blue;\"><u>jordan<a style=\"color: blue; margin: 0px;\" class=\"OWAAutoLink\" id=\"OWAe6735742-f176-3674-fedc-900c3819d9ee\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: rgb(5, 99, 193);\"><a style=\"margin-top: 0px; margin-bottom: 0px;\" data-auth=\"NotApplicable\" class=\"OWAAutoLink\" id=\"OWAb5262d09-ef08-5455-a256-0bd9e1aa5c91\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&amp;typo=1\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">On Wed, Sep 24, 2025 at 11:59 AM James Trevey &lt;<a class=\"OWAAutoLink\" id=\"OWAbc9adcce-c4cb-2a2f-7f3d-6364038da633\" href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin: 0px 0px 0px 0.8ex; padding-left: 1ex; border-left: 1px solid rgb(204, 204, 204);\">\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nHey Jordan,</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nThank you for the quick follow up.&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we\'ve decided we\'d like to provide information on additional products to you which are typically not on the menu but I have details\r\n to sort first.&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nRegarding shows, happy to discuss when ready. We\'ll be at The Battery Show in 2 weeks, which I think you should consider attending and I\'d be happy to connect while there.&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nJames</div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div id=\"x_x_m_7859046138643783182x_x_m_-6814561645313625911divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: black;\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a class=\"OWAAutoLink\" id=\"OWAba0954a3-6af7-4e23-e49f-b75926b78a15\" href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Thursday, September 18, 2025 11:03 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a class=\"OWAAutoLink\" id=\"OWA42c932ca-68c6-5b56-3653-11f201c57afa\" href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a class=\"OWAAutoLink\" id=\"OWA99145ea8-cd40-6658-3aa0-f59433cd1128\" href=\"mailto:dansheridanmusic@gmail.com\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a class=\"OWAAutoLink\" id=\"OWA32d59368-ef5e-8bb1-178a-b87e51c7620e\" href=\"mailto:nathan@lithiumbatterycompany.com\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction: ltr;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr;\">Hi James,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Thank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information\r\n to optimize our collaboration and planning:<br>\r\n<br>\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.<br>\r\n<br>\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.<br>\r\n<br>\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.<br>\r\n<br>\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.<br>\r\n<br>\r\nClarify your minimum order quantities and expected pricing for each product line.<br>\r\n<br>\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.<br>\r\n<br>\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted\r\n commercial timelines, and expected pricing.<br>\r\n<br>\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made module and packs for:<br>\r\n<br>\r\n18650:<br>\r\n<br>\r\nNMC: TNL-ITR18650-2600P<br>\r\n<br>\r\nLFP: SW18650-26HPA<br>\r\n<br>\r\nLFP: IFR18650-2000mAh<br>\r\n<br>\r\n21700:<br>\r\n<br>\r\nNMC: INR21700-50S<br>\r\n<br>\r\nNMC: INR21700-4000<br>\r\n<br>\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">In terms of the shows you mentioned, we are getting our schedules aligned so we can attend.&nbsp; What\'s the &quot;secret meeting&quot; in Nov?&nbsp;<br>\r\n<br>\r\nWe look forward to your prompt response so we can efficiently move to the next stages.</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Talk soon,&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; color: black;\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: black;\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: blue;\"><u>jordan<a style=\"color: blue; margin: 0px;\" class=\"OWAAutoLink\" id=\"OWA1319bc1b-97ef-ff33-a5a9-0ae1688214a7\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: rgb(5, 99, 193);\"><a style=\"margin-top: 0px; margin-bottom: 0px;\" data-auth=\"NotApplicable\" class=\"OWAAutoLink\" id=\"OWA277d6a55-8116-f66c-3c15-75725a3ed8f4\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&amp;typo=1\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">On Wed, Sep 17, 2025 at 7:00 PM James Trevey &lt;<a class=\"OWAAutoLink\" id=\"OWA3484e5f5-6c8b-54d7-107b-9e6f8da86028\" href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin: 0px 0px 0px 0.8ex; padding-left: 1ex; border-left: 1px solid rgb(204, 204, 204);\">\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nJordan,</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nThanks for moving quickly here. I got bogged down today but better late than never.&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<ul style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px; list-style-position: initial; list-style-type: disc;\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)</div>\r\n</li><ul style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px; list-style-position: initial; list-style-type: circle;\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell has a 100% US supply chain already</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell can be made in the <u>\r\nmillions</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)</div>\r\n</li><ul style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px; list-style-position: initial; list-style-type: circle;\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell can be made in the <u>\r\nmillions </u>next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.</div>\r\n</li><ul style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px; list-style-position: initial; list-style-type: circle;\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell can be made in the <u>\r\nthousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)</div>\r\n</li><ul style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px; list-style-position: initial; list-style-type: circle;\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell can be made in the <u>\r\nmillions</u>&nbsp;next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these</div>\r\n</li></ul>\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)</div>\r\n</li><ul style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px; list-style-position: initial; list-style-type: circle;\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell can be made in the <u>\r\nthousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n</ul>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nI will check with my people on 301 asap.</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nI look forward to our next communication.</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nJames</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: black;\">\r\n<br>\r\n</div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div style=\"direction: ltr; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: black;\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a class=\"OWAAutoLink\" id=\"OWAa921d87f-3d74-18ee-e338-25a171f4a546\" href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 17, 2025 7:56 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a class=\"OWAAutoLink\" id=\"OWA2d7f3e10-34df-93ac-9894-c27d6794932f\" href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt;; Daniel &lt;<a class=\"OWAAutoLink\" id=\"OWA9c679ac3-8374-b4b7-6888-1470a778ca89\" href=\"mailto:dansheridanmusic@gmail.com\">dansheridanmusic@gmail.com</a>&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a class=\"OWAAutoLink\" id=\"OWA2a254db0-b784-1f9c-d18c-1420efed0d27\" href=\"mailto:nathan@lithiumbatterycompany.com\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction: ltr; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr;\">Gentlemen,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">It was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<ul style=\"direction: ltr;\">\r\n<li style=\"direction: ltr;\">James to&nbsp;send the cell specification sheets as soon as possible.</li><li style=\"direction: ltr;\">LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.</li><li style=\"direction: ltr;\">James to&nbsp;send their term sheet template for throughput contracts.</li><li style=\"direction: ltr;\">We should discuss 301 exclusion support for manufacturing equipment.</li></ul>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">I look forward to our next conversation.&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Best,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; color: black;\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: black;\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: blue;\"><u>jordan<a style=\"color: blue; margin: 0px;\" class=\"OWAAutoLink\" id=\"OWAfdd1d524-2f8b-cca4-2648-ea80fa77e5ea\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: rgb(5, 99, 193);\"><a style=\"margin-top: 0px; margin-bottom: 0px;\" data-auth=\"NotApplicable\" class=\"OWAAutoLink\" id=\"OWAf470cd21-bcc7-d0d2-f0b5-03c7d748f706\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&amp;typo=1\">Lithium\r\n Battery Company</a></span></p>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n<div style=\"direction: ltr;\">&lt;ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes (1).csv&gt;</div>\r\n</blockquote>\r\n</blockquote>\r\n</body>\r\n</html>\r\n','Hey Jordan,\r\n\r\nI am back from 3 weeks of travel and ready to get sorted here. Tomorrow is sunk, but on Thursday I can do 9am MT or 12:30pm MT. Do either work for you? If not, I have the following next week:\r\n\r\n27th: 11:30-1pm MT\r\n28th: 8am MT, 11am MT, after 1pm MT\r\n29th: after 1pm MT\r\n30th: after 10am MT\r\n\r\nLet me know what works.\r\n\r\nJames\r\n\r\n\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\nSent: Monday, October 20, 2025 5:12 AM\r\nTo: James Trevey <jtrevey@forgenano.com>\r\nCc: Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nI am out of town as well.  How does your Wednesday look?\r\n\r\nLooking forward to catching up.\r\n\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,kcAZ-rF3D0Z_d8KzW-apTAtlzHQofd8D2ZjbELiCHZPsqOhCV8Xd_fUJ6ZWDkt-2fgJod-EPR6FfR9gTPQj_LmrIjU3cEOjFP4Vi0A3Pa8jqtC5XpIZ1aRU,&typo=1>\r\n\r\nOn Oct 16, 2025, at 9:20 AM, James Trevey <jtrevey@forgenano.com> wrote:\r\n\r\n﻿\r\nHey Jordan,\r\n\r\nApologies for the slow/no replies recently. Travel has been brutal.\r\n\r\nWe\'ve got a lot of the information ready for you. Can we schedule a call to do a walk through on Monday the 20th at 9am or 10am ET?\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\nSent: Thursday, October 16, 2025 9:16 AM\r\nTo: James Trevey <jtrevey@forgenano.com>\r\nCc: Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nWould be great to get some pricing and spec sheets.\r\n\r\nLet me know when we can connect.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,kruzcWrtQAWBE_Wzkk5ZCPi8egnieSOSjhsFO2fIO_mt3sy1dInRgNFjLY-Xwbk4dmY7rgbxINSGlle76-Yg-vEcypX9dPm0sX9KSwuuDZUbmg,,&typo=1>\r\n\r\nOn Sep 30, 2025, at 4:31 PM, Jordan Wroblewski <jordan@lithiumbatterycompany.com> wrote:\r\n\r\n﻿\r\nHi James,\r\n\r\nI have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.\r\n\r\nLooking forward to our discussion and seeing your deck of prospective projects.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,KG7OlMyZO9jbLU5vTJ3I8lMhBaHdNf06-ktzHMDOUSoCImrfUczbXUj1d1VcQUh_ApKsyrkLO9FO7PzcinsYewUWoskpuT9EKlrhqSI22A,,&typo=1>\r\n\r\n\r\nOn Fri, Sep 26, 2025 at 4:59 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nJordan,\r\n\r\nI won\'t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products.\r\n\r\nI\'ll send to you as soon as I can next week.\r\n\r\nJames\r\n\r\n\r\n\r\n\r\n________________________________\r\nFrom: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nSent: Wednesday, September 24, 2025 10:49 AM\r\nTo: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nJordan,\r\n\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating.\r\n\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?\r\n\r\nI also have a verbal matter we can discuss soon. Once I\'ve got the deck ready I\'ll find time for a short call with you.\r\n\r\nTalk soon.\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Wednesday, September 24, 2025 10:07 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nThank you for the follow up.  You were on my list to contact today!\r\n\r\nWould that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...\r\n\r\nI will let you know if I will be able to make it up to Detroit for The Battery Show.\r\n\r\nLooking forward to seeing the deck.\r\n\r\nAll the best,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&typo=1>\r\n\r\n\r\nOn Wed, Sep 24, 2025 at 11:59 AM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nHey Jordan,\r\n\r\nThank you for the quick follow up.\r\n\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we\'ve decided we\'d like to provide information on additional products to you which are typically not on the menu but I have details to sort first.\r\n\r\nRegarding shows, happy to discuss when ready. We\'ll be at The Battery Show in 2 weeks, which I think you should consider attending and I\'d be happy to connect while there.\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Thursday, September 18, 2025 11:03 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\n\r\nThank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information to optimize our collaboration and planning:\r\n\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.\r\n\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.\r\n\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.\r\n\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.\r\n\r\nClarify your minimum order quantities and expected pricing for each product line.\r\n\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.\r\n\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted commercial timelines, and expected pricing.\r\n\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made module and packs for:\r\n\r\n18650:\r\n\r\nNMC: TNL-ITR18650-2600P\r\n\r\nLFP: SW18650-26HPA\r\n\r\nLFP: IFR18650-2000mAh\r\n\r\n21700:\r\n\r\nNMC: INR21700-50S\r\n\r\nNMC: INR21700-4000\r\n\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.\r\n\r\nIn terms of the shows you mentioned, we are getting our schedules aligned so we can attend.  What\'s the \"secret meeting\" in Nov?\r\n\r\nWe look forward to your prompt response so we can efficiently move to the next stages.\r\n\r\n\r\nTalk soon,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&typo=1>\r\n\r\n\r\nOn Wed, Sep 17, 2025 at 7:00 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nJordan,\r\n\r\nThanks for moving quickly here. I got bogged down today but better late than never.\r\n\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:\r\n\r\n\r\n  *\r\nSC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)\r\n     *\r\nThis cell has a 100% US supply chain already\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the thousands next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these\r\n  *\r\nSC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the thousands next year by our partner in the EU, until our factory is online in 2027\r\n\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.\r\n\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.\r\n\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret meeting on November 5th in DC?\r\n\r\nI will check with my people on 301 asap.\r\n\r\nI look forward to our next communication.\r\n\r\nJames\r\n\r\n\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Wednesday, September 17, 2025 7:56 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>; Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nGentlemen,\r\n\r\nIt was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:\r\n\r\n\r\n  *   James to send the cell specification sheets as soon as possible.\r\n  *   LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.\r\n  *   James to send their term sheet template for throughput contracts.\r\n  *   We should discuss 301 exclusion support for manufacturing equipment.\r\n\r\nI look forward to our next conversation.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&typo=1>\r\n\r\n<ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes (1).csv>\r\n',0,0,0,0,0,0,'2025-10-21 22:08:11','2025-12-09 19:29:55','2025-12-09 19:29:55','2025-12-09 19:29:55',NULL,NULL,NULL),
(871,4,'<CAJO9__YLcfmPfN_mCtsMcdVZBoXLKeiN36uz1q4LbqqvXZTXJA@mail.gmail.com>',NULL,NULL,'Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Hi James,</div><div><br></div><div>I can do tomorrow at 9am MST.  </div><div><br></div><div>Let me know if that still works for you and I can send you over an invite.</div><div><br></div><div>Best,</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Oct 21, 2025 at 6:09 PM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"msg3027303751782346756\">\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nHey Jordan, </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI am back from 3 weeks of travel and ready to get sorted here. Tomorrow is sunk, but on Thursday I can do 9am MT or 12:30pm MT. Do either work for you? If not, I have the following next week:</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n27th: 11:30-1pm MT</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n28th: 8am MT, 11am MT, after 1pm MT</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n29th: after 1pm MT</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n30th: after 10am MT</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nLet me know what works.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Monday, October 20, 2025 5:12 AM<br>\r\n<b>To:</b> James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I am out of town as well.  How does your Wednesday look? </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to catching up.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\"><u>jordan<a style=\"margin:0px\" id=\"m_3027303751782346756OWAf7c2c607-accb-1d48-00c0-8983b5ae6386\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"color:rgb(255,255,255);background-color:rgba(255,255,255,0)\"><a style=\"margin-top:0px;margin-bottom:0px;background-color:rgba(255,255,255,0)\" id=\"m_3027303751782346756OWA8b905969-60b2-8c37-1c71-34c23bb26483\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,kcAZ-rF3D0Z_d8KzW-apTAtlzHQofd8D2ZjbELiCHZPsqOhCV8Xd_fUJ6ZWDkt-2fgJod-EPR6FfR9gTPQj_LmrIjU3cEOjFP4Vi0A3Pa8jqtC5XpIZ1aRU,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<blockquote>\r\n<div style=\"direction:ltr\">On Oct 16, 2025, at 9:20 AM, James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n<br>\r\n</div>\r\n</blockquote>\r\n<blockquote>\r\n<div style=\"direction:ltr\">﻿</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nHey Jordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nApologies for the slow/no replies recently. Travel has been brutal. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nWe&#39;ve got a lot of the information ready for you. Can we schedule a call to do a walk through on Monday the 20th at 9am or 10am ET?</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div id=\"m_3027303751782346756x_divRplyFwdMsg\">\r\n<div style=\"direction:ltr;font-family:Calibri,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Thursday, October 16, 2025 9:16 AM<br>\r\n<b>To:</b> James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\"> </div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Would be great to get some pricing and spec sheets. </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Let me know when we can connect. </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\"><u>jordan<a style=\"margin:0px\" id=\"m_3027303751782346756OWA6e6518c7-b1b2-a9d3-b5c7-e75cd139b83f\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"color:rgb(255,255,255);background-color:rgba(255,255,255,0)\"><a style=\"margin-top:0px;margin-bottom:0px;background-color:rgba(255,255,255,0)\" id=\"m_3027303751782346756OWAe31ac896-4399-1efb-6f2c-7967953d3e79\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,kruzcWrtQAWBE_Wzkk5ZCPi8egnieSOSjhsFO2fIO_mt3sy1dInRgNFjLY-Xwbk4dmY7rgbxINSGlle76-Yg-vEcypX9dPm0sX9KSwuuDZUbmg,,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<blockquote>\r\n<div style=\"direction:ltr\">On Sep 30, 2025, at 4:31 PM, Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br>\r\n<br>\r\n</div>\r\n</blockquote>\r\n<blockquote>\r\n<div style=\"direction:ltr\">﻿</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to our discussion and seeing your deck of prospective projects.  </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best, </div>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a style=\"color:blue;margin:0px\" id=\"m_3027303751782346756OWAc7d77927-1b34-5743-9e14-a66571eb2996\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_3027303751782346756OWA324c57de-34ea-de6d-5110-af4c020dd065\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,KG7OlMyZO9jbLU5vTJ3I8lMhBaHdNf06-ktzHMDOUSoCImrfUczbXUj1d1VcQUh_ApKsyrkLO9FO7PzcinsYewUWoskpuT9EKlrhqSI22A,,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Fri, Sep 26, 2025 at 4:59 PM James Trevey &lt;<a id=\"m_3027303751782346756OWA9bf92834-b125-3261-f5ee-fc5ab4a4b064\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI won&#39;t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI&#39;ll send to you as soon as I can next week.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<b>From:</b> James Trevey &lt;<a id=\"m_3027303751782346756OWA4a56e5b0-7547-009b-e0f9-09d85bdcb401\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, September 24, 2025 10:49 AM<br>\r\n<b>To:</b> Jordan Wroblewski &lt;<a id=\"m_3027303751782346756OWA538352ea-6cf6-ae29-12a3-4655367275e0\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a id=\"m_3027303751782346756OWA7fd338e4-4d03-f50f-43c3-5364cbb82a0b\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_3027303751782346756OWA02c346e5-23fe-5170-14f6-1a1fade02e3d\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI also have a verbal matter we can discuss soon. Once I&#39;ve got the deck ready I&#39;ll find time for a short call with you.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nTalk soon.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJames</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div id=\"m_3027303751782346756x_x_m_7859046138643783182x_divRplyFwdMsg\">\r\n<div style=\"direction:ltr;font-family:Calibri,sans-serif;font-size:11pt;color:black\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a id=\"m_3027303751782346756OWAea2d7e23-0227-6b05-2d24-7721e695e834\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, September 24, 2025 10:07 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_3027303751782346756OWA443da8b1-99a9-810a-f48f-3c9fd3f49708\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a id=\"m_3027303751782346756OWA4274d479-1e0a-7df8-23af-21e278d0d08f\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_3027303751782346756OWA8e6b5ffa-4d9a-b4f0-8085-4c2b0948e67c\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\"> </div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for the follow up.  You were on my list to contact today!  </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Would that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I will let you know if I will be able to make it up to Detroit for The Battery Show.  </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to seeing the deck.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">All the best, </div>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a style=\"color:blue;margin:0px\" id=\"m_3027303751782346756OWAe6735742-f176-3674-fedc-900c3819d9ee\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_3027303751782346756OWAb5262d09-ef08-5455-a256-0bd9e1aa5c91\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 24, 2025 at 11:59 AM James Trevey &lt;<a id=\"m_3027303751782346756OWAbc9adcce-c4cb-2a2f-7f3d-6364038da633\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nHey Jordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nThank you for the quick follow up. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we&#39;ve decided we&#39;d like to provide information on additional products to you which are typically not on the menu but I have details\r\n to sort first. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nRegarding shows, happy to discuss when ready. We&#39;ll be at The Battery Show in 2 weeks, which I think you should consider attending and I&#39;d be happy to connect while there. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJames</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div id=\"m_3027303751782346756x_x_m_7859046138643783182x_x_m_-6814561645313625911divRplyFwdMsg\">\r\n<div style=\"direction:ltr;font-family:Calibri,sans-serif;font-size:11pt;color:black\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a id=\"m_3027303751782346756OWAba0954a3-6af7-4e23-e49f-b75926b78a15\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Thursday, September 18, 2025 11:03 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_3027303751782346756OWA42c932ca-68c6-5b56-3653-11f201c57afa\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a id=\"m_3027303751782346756OWA99145ea8-cd40-6658-3aa0-f59433cd1128\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_3027303751782346756OWA32d59368-ef5e-8bb1-178a-b87e51c7620e\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\"> </div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information\r\n to optimize our collaboration and planning:<br>\r\n<br>\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.<br>\r\n<br>\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.<br>\r\n<br>\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.<br>\r\n<br>\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.<br>\r\n<br>\r\nClarify your minimum order quantities and expected pricing for each product line.<br>\r\n<br>\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.<br>\r\n<br>\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted\r\n commercial timelines, and expected pricing.<br>\r\n<br>\r\nAdditionally, for reference, these are LBC’s most popular cells we&#39;ve made module and packs for:<br>\r\n<br>\r\n18650:<br>\r\n<br>\r\nNMC: TNL-ITR18650-2600P<br>\r\n<br>\r\nLFP: SW18650-26HPA<br>\r\n<br>\r\nLFP: IFR18650-2000mAh<br>\r\n<br>\r\n21700:<br>\r\n<br>\r\nNMC: INR21700-50S<br>\r\n<br>\r\nNMC: INR21700-4000<br>\r\n<br>\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">In terms of the shows you mentioned, we are getting our schedules aligned so we can attend.  What&#39;s the &quot;secret meeting&quot; in Nov? <br>\r\n<br>\r\nWe look forward to your prompt response so we can efficiently move to the next stages.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Talk soon, </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a style=\"color:blue;margin:0px\" id=\"m_3027303751782346756OWA1319bc1b-97ef-ff33-a5a9-0ae1688214a7\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_3027303751782346756OWA277d6a55-8116-f66c-3c15-75725a3ed8f4\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 17, 2025 at 7:00 PM James Trevey &lt;<a id=\"m_3027303751782346756OWA3484e5f5-6c8b-54d7-107b-9e6f8da86028\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nThanks for moving quickly here. I got bogged down today but better late than never. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nAttached you&#39;ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won&#39;t tell us the application)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell has a 100% US supply chain already</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nmillions</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nmillions </u>next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nthousands</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nmillions</u> next year by our partner in the EU. As we show adoption, we&#39;ll expand our factory to build these</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nthousands</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n</ul>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI will check with my people on 301 asap.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI look forward to our next communication.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJames</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:black\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:black\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a id=\"m_3027303751782346756OWAa921d87f-3d74-18ee-e338-25a171f4a546\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, September 17, 2025 7:56 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_3027303751782346756OWA2d7f3e10-34df-93ac-9894-c27d6794932f\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;; Daniel &lt;<a id=\"m_3027303751782346756OWA9c679ac3-8374-b4b7-6888-1470a778ca89\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_3027303751782346756OWA2a254db0-b784-1f9c-d18c-1420efed0d27\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Gentlemen,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">It was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I&#39;ve outlined the key action items below:</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<ul style=\"direction:ltr\">\r\n<li style=\"direction:ltr\">James to send the cell specification sheets as soon as possible.</li><li style=\"direction:ltr\">LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.</li><li style=\"direction:ltr\">James to send their term sheet template for throughput contracts.</li><li style=\"direction:ltr\">We should discuss 301 exclusion support for manufacturing equipment.</li></ul>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I look forward to our next conversation. </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a style=\"color:blue;margin:0px\" id=\"m_3027303751782346756OWAfdd1d524-2f8b-cca4-2648-ea80fa77e5ea\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_3027303751782346756OWAf470cd21-bcc7-d0d2-f0b5-03c7d748f706\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n<div style=\"direction:ltr\">&lt;ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes (1).csv&gt;</div>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n\r\n</div></blockquote></div>','Hi James,\r\n\r\nI can do tomorrow at 9am MST.\r\n\r\nLet me know if that still works for you and I can send you over an invite.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Tue, Oct 21, 2025 at 6:09 PM James Trevey <jtrevey@forgenano.com> wrote:\r\n\r\n> Hey Jordan,\r\n>\r\n> I am back from 3 weeks of travel and ready to get sorted here. Tomorrow is\r\n> sunk, but on Thursday I can do 9am MT or 12:30pm MT. Do either work for\r\n> you? If not, I have the following next week:\r\n>\r\n> 27th: 11:30-1pm MT\r\n> 28th: 8am MT, 11am MT, after 1pm MT\r\n> 29th: after 1pm MT\r\n> 30th: after 10am MT\r\n>\r\n> Let me know what works.\r\n>\r\n> James\r\n>\r\n>\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Monday, October 20, 2025 5:12 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n> Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Hi James,\r\n>\r\n> I am out of town as well.  How does your Wednesday look?\r\n>\r\n> Looking forward to catching up.\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,kcAZ-rF3D0Z_d8KzW-apTAtlzHQofd8D2ZjbELiCHZPsqOhCV8Xd_fUJ6ZWDkt-2fgJod-EPR6FfR9gTPQj_LmrIjU3cEOjFP4Vi0A3Pa8jqtC5XpIZ1aRU,&typo=1>\r\n>\r\n> On Oct 16, 2025, at 9:20 AM, James Trevey <jtrevey@forgenano.com> wrote:\r\n>\r\n> ﻿\r\n> Hey Jordan,\r\n>\r\n> Apologies for the slow/no replies recently. Travel has been brutal.\r\n>\r\n> We\'ve got a lot of the information ready for you. Can we schedule a call\r\n> to do a walk through on Monday the 20th at 9am or 10am ET?\r\n>\r\n> James\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Thursday, October 16, 2025 9:16 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n> Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Hi James,\r\n>\r\n> Would be great to get some pricing and spec sheets.\r\n>\r\n> Let me know when we can connect.\r\n>\r\n> Best,\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,kruzcWrtQAWBE_Wzkk5ZCPi8egnieSOSjhsFO2fIO_mt3sy1dInRgNFjLY-Xwbk4dmY7rgbxINSGlle76-Yg-vEcypX9dPm0sX9KSwuuDZUbmg,,&typo=1>\r\n>\r\n> On Sep 30, 2025, at 4:31 PM, Jordan Wroblewski <\r\n> jordan@lithiumbatterycompany.com> wrote:\r\n>\r\n> ﻿\r\n> Hi James,\r\n>\r\n> I have attached a prospective cell demand schedule (subject to change) but\r\n> two of your battery types should meet the requirements for some of our\r\n> future projects.\r\n>\r\n> Looking forward to our discussion and seeing your deck of prospective\r\n> projects.\r\n>\r\n> Best,\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,KG7OlMyZO9jbLU5vTJ3I8lMhBaHdNf06-ktzHMDOUSoCImrfUczbXUj1d1VcQUh_ApKsyrkLO9FO7PzcinsYewUWoskpuT9EKlrhqSI22A,,&typo=1>\r\n>\r\n>\r\n> On Fri, Sep 26, 2025 at 4:59 PM James Trevey <jtrevey@forgenano.com>\r\n> wrote:\r\n>\r\n> Jordan,\r\n>\r\n> I won\'t be able to send the deck today. Still waiting on a few spec sheets\r\n> approval and validation of production capability for a few products.\r\n>\r\n> I\'ll send to you as soon as I can next week.\r\n>\r\n> James\r\n>\r\n>\r\n>\r\n>\r\n> ------------------------------\r\n> *From:* James Trevey <jtrevey@forgenano.com>\r\n> *Sent:* Wednesday, September 24, 2025 10:49 AM\r\n> *To:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n> Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Jordan,\r\n>\r\n> Unfortunately, there is not a large prismatic on our list. I could\r\n> potentially license a design to make one, but it would take a lot of\r\n> coordinating.\r\n>\r\n> It would be super helpful if you are able to compile a deck for us which\r\n> has your prospective cell demand schedule now and for the next few years,\r\n> as well as what your qualification schedule looks like (maybe program\r\n> based?). Maybe by cell type?\r\n>\r\n> I also have a verbal matter we can discuss soon. Once I\'ve got the deck\r\n> ready I\'ll find time for a short call with you.\r\n>\r\n> Talk soon.\r\n>\r\n> James\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Wednesday, September 24, 2025 10:07 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n> Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Hi James,\r\n>\r\n> Thank you for the follow up.  You were on my list to contact today!\r\n>\r\n> Would that additional product list include a prismatic cell? I have a\r\n> client who needs 150MWh a year and they want a domestic 314Ah cell...\r\n>\r\n> I will let you know if I will be able to make it up to Detroit for The\r\n> Battery Show.\r\n>\r\n> Looking forward to seeing the deck.\r\n>\r\n> All the best,\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&typo=1>\r\n>\r\n>\r\n> On Wed, Sep 24, 2025 at 11:59 AM James Trevey <jtrevey@forgenano.com>\r\n> wrote:\r\n>\r\n> Hey Jordan,\r\n>\r\n> Thank you for the quick follow up.\r\n>\r\n> I am working on a compiled deck for you to address the below requests and\r\n> aiming for end of this week. After speaking with my team, we\'ve decided\r\n> we\'d like to provide information on additional products to you which are\r\n> typically not on the menu but I have details to sort first.\r\n>\r\n> Regarding shows, happy to discuss when ready. We\'ll be at The Battery Show\r\n> in 2 weeks, which I think you should consider attending and I\'d be happy to\r\n> connect while there.\r\n>\r\n> James\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Thursday, September 18, 2025 11:03 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n> Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Hi James,\r\n>\r\n>\r\n> Thank you for continuing discussions regarding our strategic partnership.\r\n> As we prepare for module and pack production to support your battery cell\r\n> needs, we would appreciate your assistance in providing several key pieces\r\n> of information to optimize our collaboration and planning:\r\n>\r\n> Please share detailed volume forecasts for each cell type (e.g., 18650,\r\n> 21700) you expect to require over the next 1–5 years, broken out by project\r\n> or customer segment where feasible.\r\n>\r\n> Indicate your anticipated ramp-up schedule for sample, engineering, and\r\n> production volumes to help us align our development and manufacturing\r\n> timelines.\r\n>\r\n> Identify any major offtake agreements, anchor customers, or significant\r\n> opportunities in your commercial pipeline that could impact forecasted\r\n> demand for modules or packs.\r\n>\r\n> Outline target applications (energy storage, drones, EVs, DOD, etc.) and\r\n> specify any technical or certification requirements for modules/packs\r\n> related to these segments.\r\n>\r\n> Clarify your minimum order quantities and expected pricing for each\r\n> product line.\r\n>\r\n> Please also provide information about any flexibility in volume\r\n> commitments that may be necessary in case project requirements or customer\r\n> needs adjust mid-term.\r\n>\r\n> Importantly, we would like to request information on any current or\r\n> forthcoming cells with a minimum continuous discharge rating of 15C or\r\n> higher. For these cells, please provide specifications, target\r\n> applications, anticipated volume requirements, forecasted commercial\r\n> timelines, and expected pricing.\r\n>\r\n> Additionally, for reference, these are LBC’s most popular cells we\'ve made\r\n> module and packs for:\r\n>\r\n> 18650:\r\n>\r\n> NMC: TNL-ITR18650-2600P\r\n>\r\n> LFP: SW18650-26HPA\r\n>\r\n> LFP: IFR18650-2000mAh\r\n>\r\n> 21700:\r\n>\r\n> NMC: INR21700-50S\r\n>\r\n> NMC: INR21700-4000\r\n>\r\n> Providing this information will enable LBC to ensure maximum alignment,\r\n> timely scale-up, and the most competitive solutions to support your growth\r\n> across all high-value sectors.\r\n>\r\n> In terms of the shows you mentioned, we are getting our schedules aligned\r\n> so we can attend.  What\'s the \"secret meeting\" in Nov?\r\n>\r\n> We look forward to your prompt response so we can efficiently move to the\r\n> next stages.\r\n>\r\n>\r\n> Talk soon,\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&typo=1>\r\n>\r\n>\r\n> On Wed, Sep 17, 2025 at 7:00 PM James Trevey <jtrevey@forgenano.com>\r\n> wrote:\r\n>\r\n> Jordan,\r\n>\r\n> Thanks for moving quickly here. I got bogged down today but better late\r\n> than never.\r\n>\r\n> Attached you\'ll find data sheets for all (5) of our products, including\r\n> both 18650 and 21700. Below is a quick summary:\r\n>\r\n>\r\n>    - SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation\r\n>    (they won\'t tell us the application)\r\n>    - This cell has a 100% US supply chain already\r\n>       - This cell can be made in the * millions* next year by our partner\r\n>       in the EU, until our factory is online in 2027\r\n>       - SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse\r\n>    engineered from MIL-PRF-32383)\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the * millions *next year by our partner\r\n>       in the EU, until our factory is online in 2027\r\n>       - SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the * thousands* next year by our\r\n>       partner in the EU, until our factory is online in 2027\r\n>       - SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum\r\n>    case and tabless design, super lightweight)\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the * millions* next year by our partner\r\n>       in the EU. As we show adoption, we\'ll expand our factory to build these\r\n>       - SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse\r\n>    engineered from MIL-PRF-32565)\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the * thousands* next year by our\r\n>       partner in the EU, until our factory is online in 2027\r\n>\r\n>\r\n> We can also get 80mmx300mm pouch cells made by our EU partner, if needed.\r\n>\r\n> Regarding the term sheet, please see the attached template that I put\r\n> together but needs input from you all.\r\n>\r\n> Maybe we line up another discussion for next week to continue our\r\n> alignment path? Also, are any of you planning to attend The Battery Show in\r\n> Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores\r\n> in Nashville? in October? Or the secret meeting on November 5th in DC?\r\n>\r\n> I will check with my people on 301 asap.\r\n>\r\n> I look forward to our next communication.\r\n>\r\n> James\r\n>\r\n>\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Wednesday, September 17, 2025 7:56 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>; Daniel <\r\n> dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan\r\n> Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Gentlemen,\r\n>\r\n> It was a pleasure connecting with you yesterday. I am very excited about\r\n> the potential for a partnership between our companies. To maintain the\r\n> momentum from our discussion, I\'ve outlined the key action items below:\r\n>\r\n>\r\n>    - James to send the cell specification sheets as soon as possible.\r\n>    - LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for\r\n>    benchmarking purposes.\r\n>    - James to send their term sheet template for throughput contracts.\r\n>    - We should discuss 301 exclusion support for manufacturing equipment.\r\n>\r\n>\r\n> I look forward to our next conversation.\r\n>\r\n> Best,\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&typo=1>\r\n>\r\n> <ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes\r\n> (1).csv>\r\n>\r\n>',0,0,0,0,0,0,'2025-10-22 15:30:16','2025-12-09 19:29:56','2025-12-09 19:29:56','2025-12-09 19:29:56',NULL,NULL,NULL),
(872,4,' <SA1PR18MB48244BFCE58BA29CC62B47E9A1F3A@SA1PR18MB4824.namprd18.prod.outlook.com>',NULL,NULL,'Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration','jtrevey@forgenano.com','James Trevey','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nperfect. I look forward to speaking with you then!</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b> Wednesday, October 22, 2025 9:30 AM<br>\r\n<b>To:</b> James Trevey &lt;jtrevey@forgenano.com&gt;<br>\r\n<b>Cc:</b> Will McKenna &lt;WMcKenna@forgenano.com&gt;; Daniel &lt;dansheridanmusic@gmail.com&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div>Hi James,</div>\r\n<div><br>\r\n</div>\r\n<div>I can do tomorrow at 9am MST.&nbsp;&nbsp;</div>\r\n<div><br>\r\n</div>\r\n<div>Let me know if that still works for you and I can send you over an invite.</div>\r\n<div><br>\r\n</div>\r\n<div>Best,</div>\r\n<div>\r\n<div dir=\"ltr\" class=\"x_gmail_signature\" data-smartmail=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\"><br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,irabj1pPRcbHt7fZTnVGlp-D5OWgJo5J-DJVmYysbSINfzIevG80IYq97Jraq-OV6w6IJC3gu0pHz4oFYfW4xcnb3n-PwXqRHBE_AugLqCnyxkrk6RI,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n</div>\r\n<br>\r\n<div class=\"x_gmail_quote x_gmail_quote_container\">\r\n<div dir=\"ltr\" class=\"x_gmail_attr\">On Tue, Oct 21, 2025 at 6:09 PM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote class=\"x_gmail_quote\" style=\"margin:0px 0px 0px 0.8ex; border-left:1px solid rgb(204,204,204); padding-left:1ex\">\r\n<div class=\"x_msg3027303751782346756\">\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nHey Jordan,&nbsp;</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI am back from 3 weeks of travel and ready to get sorted here. Tomorrow is sunk, but on Thursday I can do 9am MT or 12:30pm MT. Do either work for you? If not, I have the following next week:</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n27th: 11:30-1pm MT</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n28th: 8am MT, 11am MT, after 1pm MT</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n29th: after 1pm MT</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n30th: after 10am MT</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nLet me know what works.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJames</div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block; width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Monday, October 20, 2025 5:12 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I am out of town as well.&nbsp; How does your Wednesday look?&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to catching up.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\"><u>jordan<a id=\"x_m_3027303751782346756OWAf7c2c607-accb-1d48-00c0-8983b5ae6386\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"color:rgb(255,255,255); background-color:rgba(255,255,255,0)\"><a id=\"x_m_3027303751782346756OWA8b905969-60b2-8c37-1c71-34c23bb26483\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,kcAZ-rF3D0Z_d8KzW-apTAtlzHQofd8D2ZjbELiCHZPsqOhCV8Xd_fUJ6ZWDkt-2fgJod-EPR6FfR9gTPQj_LmrIjU3cEOjFP4Vi0A3Pa8jqtC5XpIZ1aRU,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px; background-color:rgba(255,255,255,0)\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<blockquote>\r\n<div style=\"direction:ltr\">On Oct 16, 2025, at 9:20 AM, James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n<br>\r\n</div>\r\n</blockquote>\r\n<blockquote>\r\n<div style=\"direction:ltr\">﻿</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nHey Jordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nApologies for the slow/no replies recently. Travel has been brutal.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nWe\'ve got a lot of the information ready for you. Can we schedule a call to do a walk through on Monday the 20th at 9am or 10am ET?</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJames</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_m_3027303751782346756x_divRplyFwdMsg\">\r\n<div style=\"direction:ltr; font-family:Calibri,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Thursday, October 16, 2025 9:16 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Would be great to get some pricing and spec sheets.&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Let me know when we can connect.&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\"><u>jordan<a id=\"x_m_3027303751782346756OWA6e6518c7-b1b2-a9d3-b5c7-e75cd139b83f\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"color:rgb(255,255,255); background-color:rgba(255,255,255,0)\"><a id=\"x_m_3027303751782346756OWAe31ac896-4399-1efb-6f2c-7967953d3e79\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,kruzcWrtQAWBE_Wzkk5ZCPi8egnieSOSjhsFO2fIO_mt3sy1dInRgNFjLY-Xwbk4dmY7rgbxINSGlle76-Yg-vEcypX9dPm0sX9KSwuuDZUbmg,,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px; background-color:rgba(255,255,255,0)\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<blockquote>\r\n<div style=\"direction:ltr\">On Sep 30, 2025, at 4:31 PM, Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br>\r\n<br>\r\n</div>\r\n</blockquote>\r\n<blockquote>\r\n<div style=\"direction:ltr\">﻿</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to our discussion and seeing your deck of prospective projects.&nbsp;&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,&nbsp;</div>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_3027303751782346756OWAc7d77927-1b34-5743-9e14-a66571eb2996\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_3027303751782346756OWA324c57de-34ea-de6d-5110-af4c020dd065\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,KG7OlMyZO9jbLU5vTJ3I8lMhBaHdNf06-ktzHMDOUSoCImrfUczbXUj1d1VcQUh_ApKsyrkLO9FO7PzcinsYewUWoskpuT9EKlrhqSI22A,,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Fri, Sep 26, 2025 at 4:59 PM James Trevey &lt;<a id=\"x_m_3027303751782346756OWA9bf92834-b125-3261-f5ee-fc5ab4a4b064\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; padding-left:1ex; border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI won\'t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI\'ll send to you as soon as I can next week.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;James Trevey &lt;<a id=\"x_m_3027303751782346756OWA4a56e5b0-7547-009b-e0f9-09d85bdcb401\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 24, 2025 10:49 AM<br>\r\n<b>To:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_3027303751782346756OWA538352ea-6cf6-ae29-12a3-4655367275e0\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a id=\"x_m_3027303751782346756OWA7fd338e4-4d03-f50f-43c3-5364cbb82a0b\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"x_m_3027303751782346756OWA02c346e5-23fe-5170-14f6-1a1fade02e3d\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI also have a verbal matter we can discuss soon. Once I\'ve got the deck ready I\'ll find time for a short call with you.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nTalk soon.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJames</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_m_3027303751782346756x_x_m_7859046138643783182x_divRplyFwdMsg\">\r\n<div style=\"direction:ltr; font-family:Calibri,sans-serif; font-size:11pt; color:black\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_3027303751782346756OWAea2d7e23-0227-6b05-2d24-7721e695e834\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 24, 2025 10:07 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_3027303751782346756OWA443da8b1-99a9-810a-f48f-3c9fd3f49708\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a id=\"x_m_3027303751782346756OWA4274d479-1e0a-7df8-23af-21e278d0d08f\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"x_m_3027303751782346756OWA8e6b5ffa-4d9a-b4f0-8085-4c2b0948e67c\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for the follow up.&nbsp; You were on my list to contact today!&nbsp;&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Would that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I will let you know if I will be able to make it up to Detroit for The Battery Show.&nbsp;&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to seeing the deck.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">All the best,&nbsp;</div>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_3027303751782346756OWAe6735742-f176-3674-fedc-900c3819d9ee\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_3027303751782346756OWAb5262d09-ef08-5455-a256-0bd9e1aa5c91\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 24, 2025 at 11:59 AM James Trevey &lt;<a id=\"x_m_3027303751782346756OWAbc9adcce-c4cb-2a2f-7f3d-6364038da633\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; padding-left:1ex; border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nHey Jordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nThank you for the quick follow up.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we\'ve decided we\'d like to provide information on additional products to you which are typically not on the menu but I have details\r\n to sort first.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nRegarding shows, happy to discuss when ready. We\'ll be at The Battery Show in 2 weeks, which I think you should consider attending and I\'d be happy to connect while there.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJames</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_m_3027303751782346756x_x_m_7859046138643783182x_x_m_-6814561645313625911divRplyFwdMsg\">\r\n<div style=\"direction:ltr; font-family:Calibri,sans-serif; font-size:11pt; color:black\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_3027303751782346756OWAba0954a3-6af7-4e23-e49f-b75926b78a15\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Thursday, September 18, 2025 11:03 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_3027303751782346756OWA42c932ca-68c6-5b56-3653-11f201c57afa\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a id=\"x_m_3027303751782346756OWA99145ea8-cd40-6658-3aa0-f59433cd1128\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"x_m_3027303751782346756OWA32d59368-ef5e-8bb1-178a-b87e51c7620e\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information\r\n to optimize our collaboration and planning:<br>\r\n<br>\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.<br>\r\n<br>\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.<br>\r\n<br>\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.<br>\r\n<br>\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.<br>\r\n<br>\r\nClarify your minimum order quantities and expected pricing for each product line.<br>\r\n<br>\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.<br>\r\n<br>\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted\r\n commercial timelines, and expected pricing.<br>\r\n<br>\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made module and packs for:<br>\r\n<br>\r\n18650:<br>\r\n<br>\r\nNMC: TNL-ITR18650-2600P<br>\r\n<br>\r\nLFP: SW18650-26HPA<br>\r\n<br>\r\nLFP: IFR18650-2000mAh<br>\r\n<br>\r\n21700:<br>\r\n<br>\r\nNMC: INR21700-50S<br>\r\n<br>\r\nNMC: INR21700-4000<br>\r\n<br>\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">In terms of the shows you mentioned, we are getting our schedules aligned so we can attend.&nbsp; What\'s the &quot;secret meeting&quot; in Nov?&nbsp;<br>\r\n<br>\r\nWe look forward to your prompt response so we can efficiently move to the next stages.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Talk soon,&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_3027303751782346756OWA1319bc1b-97ef-ff33-a5a9-0ae1688214a7\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_3027303751782346756OWA277d6a55-8116-f66c-3c15-75725a3ed8f4\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 17, 2025 at 7:00 PM James Trevey &lt;<a id=\"x_m_3027303751782346756OWA3484e5f5-6c8b-54d7-107b-9e6f8da86028\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; padding-left:1ex; border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nThanks for moving quickly here. I got bogged down today but better late than never.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell has a 100% US supply chain already</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions\r\n</u>next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>thousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions</u>&nbsp;next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>thousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n</ul>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI will check with my people on 301 asap.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI look forward to our next communication.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJames</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:black\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:black\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_3027303751782346756OWAa921d87f-3d74-18ee-e338-25a171f4a546\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 17, 2025 7:56 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_3027303751782346756OWA2d7f3e10-34df-93ac-9894-c27d6794932f\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;; Daniel &lt;<a id=\"x_m_3027303751782346756OWA9c679ac3-8374-b4b7-6888-1470a778ca89\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"x_m_3027303751782346756OWA2a254db0-b784-1f9c-d18c-1420efed0d27\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Gentlemen,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">It was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<ul style=\"direction:ltr\">\r\n<li style=\"direction:ltr\">James to&nbsp;send the cell specification sheets as soon as possible.</li><li style=\"direction:ltr\">LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.</li><li style=\"direction:ltr\">James to&nbsp;send their term sheet template for throughput contracts.</li><li style=\"direction:ltr\">We should discuss 301 exclusion support for manufacturing equipment.</li></ul>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I look forward to our next conversation.&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_3027303751782346756OWAfdd1d524-2f8b-cca4-2648-ea80fa77e5ea\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_3027303751782346756OWAf470cd21-bcc7-d0d2-f0b5-03c7d748f706\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n<div style=\"direction:ltr\">&lt;ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes (1).csv&gt;</div>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','perfect. I look forward to speaking with you then!\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\nSent: Wednesday, October 22, 2025 9:30 AM\r\nTo: James Trevey <jtrevey@forgenano.com>\r\nCc: Will McKenna <WMcKenna@forgenano.com>; Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nI can do tomorrow at 9am MST.\r\n\r\nLet me know if that still works for you and I can send you over an invite.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,irabj1pPRcbHt7fZTnVGlp-D5OWgJo5J-DJVmYysbSINfzIevG80IYq97Jraq-OV6w6IJC3gu0pHz4oFYfW4xcnb3n-PwXqRHBE_AugLqCnyxkrk6RI,&typo=1>\r\n\r\n\r\nOn Tue, Oct 21, 2025 at 6:09 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nHey Jordan,\r\n\r\nI am back from 3 weeks of travel and ready to get sorted here. Tomorrow is sunk, but on Thursday I can do 9am MT or 12:30pm MT. Do either work for you? If not, I have the following next week:\r\n\r\n27th: 11:30-1pm MT\r\n28th: 8am MT, 11am MT, after 1pm MT\r\n29th: after 1pm MT\r\n30th: after 10am MT\r\n\r\nLet me know what works.\r\n\r\nJames\r\n\r\n\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Monday, October 20, 2025 5:12 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nI am out of town as well.  How does your Wednesday look?\r\n\r\nLooking forward to catching up.\r\n\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,kcAZ-rF3D0Z_d8KzW-apTAtlzHQofd8D2ZjbELiCHZPsqOhCV8Xd_fUJ6ZWDkt-2fgJod-EPR6FfR9gTPQj_LmrIjU3cEOjFP4Vi0A3Pa8jqtC5XpIZ1aRU,&typo=1>\r\n\r\nOn Oct 16, 2025, at 9:20 AM, James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\n\r\n﻿\r\nHey Jordan,\r\n\r\nApologies for the slow/no replies recently. Travel has been brutal.\r\n\r\nWe\'ve got a lot of the information ready for you. Can we schedule a call to do a walk through on Monday the 20th at 9am or 10am ET?\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Thursday, October 16, 2025 9:16 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nWould be great to get some pricing and spec sheets.\r\n\r\nLet me know when we can connect.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,kruzcWrtQAWBE_Wzkk5ZCPi8egnieSOSjhsFO2fIO_mt3sy1dInRgNFjLY-Xwbk4dmY7rgbxINSGlle76-Yg-vEcypX9dPm0sX9KSwuuDZUbmg,,&typo=1>\r\n\r\nOn Sep 30, 2025, at 4:31 PM, Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>> wrote:\r\n\r\n﻿\r\nHi James,\r\n\r\nI have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.\r\n\r\nLooking forward to our discussion and seeing your deck of prospective projects.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,KG7OlMyZO9jbLU5vTJ3I8lMhBaHdNf06-ktzHMDOUSoCImrfUczbXUj1d1VcQUh_ApKsyrkLO9FO7PzcinsYewUWoskpuT9EKlrhqSI22A,,&typo=1>\r\n\r\n\r\nOn Fri, Sep 26, 2025 at 4:59 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nJordan,\r\n\r\nI won\'t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products.\r\n\r\nI\'ll send to you as soon as I can next week.\r\n\r\nJames\r\n\r\n\r\n\r\n\r\n________________________________\r\nFrom: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nSent: Wednesday, September 24, 2025 10:49 AM\r\nTo: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nJordan,\r\n\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating.\r\n\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?\r\n\r\nI also have a verbal matter we can discuss soon. Once I\'ve got the deck ready I\'ll find time for a short call with you.\r\n\r\nTalk soon.\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Wednesday, September 24, 2025 10:07 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nThank you for the follow up.  You were on my list to contact today!\r\n\r\nWould that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...\r\n\r\nI will let you know if I will be able to make it up to Detroit for The Battery Show.\r\n\r\nLooking forward to seeing the deck.\r\n\r\nAll the best,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&typo=1>\r\n\r\n\r\nOn Wed, Sep 24, 2025 at 11:59 AM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nHey Jordan,\r\n\r\nThank you for the quick follow up.\r\n\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we\'ve decided we\'d like to provide information on additional products to you which are typically not on the menu but I have details to sort first.\r\n\r\nRegarding shows, happy to discuss when ready. We\'ll be at The Battery Show in 2 weeks, which I think you should consider attending and I\'d be happy to connect while there.\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Thursday, September 18, 2025 11:03 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\n\r\nThank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information to optimize our collaboration and planning:\r\n\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.\r\n\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.\r\n\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.\r\n\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.\r\n\r\nClarify your minimum order quantities and expected pricing for each product line.\r\n\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.\r\n\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted commercial timelines, and expected pricing.\r\n\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made module and packs for:\r\n\r\n18650:\r\n\r\nNMC: TNL-ITR18650-2600P\r\n\r\nLFP: SW18650-26HPA\r\n\r\nLFP: IFR18650-2000mAh\r\n\r\n21700:\r\n\r\nNMC: INR21700-50S\r\n\r\nNMC: INR21700-4000\r\n\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.\r\n\r\nIn terms of the shows you mentioned, we are getting our schedules aligned so we can attend.  What\'s the \"secret meeting\" in Nov?\r\n\r\nWe look forward to your prompt response so we can efficiently move to the next stages.\r\n\r\n\r\nTalk soon,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&typo=1>\r\n\r\n\r\nOn Wed, Sep 17, 2025 at 7:00 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nJordan,\r\n\r\nThanks for moving quickly here. I got bogged down today but better late than never.\r\n\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:\r\n\r\n\r\n  *\r\nSC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)\r\n     *\r\nThis cell has a 100% US supply chain already\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the thousands next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these\r\n  *\r\nSC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the thousands next year by our partner in the EU, until our factory is online in 2027\r\n\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.\r\n\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.\r\n\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret meeting on November 5th in DC?\r\n\r\nI will check with my people on 301 asap.\r\n\r\nI look forward to our next communication.\r\n\r\nJames\r\n\r\n\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Wednesday, September 17, 2025 7:56 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>; Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nGentlemen,\r\n\r\nIt was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:\r\n\r\n\r\n  *   James to send the cell specification sheets as soon as possible.\r\n  *   LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.\r\n  *   James to send their term sheet template for throughput contracts.\r\n  *   We should discuss 301 exclusion support for manufacturing equipment.\r\n\r\nI look forward to our next conversation.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&typo=1>\r\n\r\n<ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes (1).csv>\r\n',0,0,0,0,0,0,'2025-10-22 15:32:15','2025-12-09 19:29:56','2025-12-09 19:29:56','2025-12-09 19:29:56',NULL,NULL,NULL),
(873,4,'<calendar-9bc40077-b642-44d5-bb91-a5b2c1379026@google.com>',NULL,NULL,'Invitation: Next Steps - Forge Nano & Lithium Battery Co Collaboration @ Thu Oct 23, 2025 11am - 12pm (EDT) (rick@mavrix.one)','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v154/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v144/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v118/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation from Jordan Wroblewski\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"3pm4q3dpo0vhafgtor6m2b042a\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M3BtNHEzZHBvMHZoYWZndG9yNm0yYjA0MmEgcmlja0BtYXZyaXgub25l&amp;tok=MzIjam9yZGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb21kMzA3OWZmNDQzZTBiZmZjODQ0NTJhM2ZhNGE2YWUzYmE4NzZlYzMx&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20251023T150000Z\"></time><time itemprop=\"endDate\" datetime=\"20251023T160000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">Join with Google Meet – You have been invited by Jordan Wroblewski to attend an event named Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration on Thursday Oct 23, 2025 ⋅ 11am – 12pm (Eastern Time - New York).</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:28px;\"><a href=\"https://meet.google.com/uev-knbr-uga?hs=224\" class=\"primary-button-text\" style=\"display: inline-block;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"display: inline-block\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"background-color: #1a73e8; cursor: auto; padding: 10px 25px; border: none; border-radius: 4px; margin: 0;\" class=\"primary-button\"><!--[if mso]><a href=\"https://meet.google.com/uev-knbr-uga?hs=224\" class=\"primary-button-text\" target=\"_blank\"><![endif]--><span class=\"primary-button-text\" style=\"font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\">Join with Google Meet</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Meeting link</h2></td></tr></table><!-- Use grey text for the Meet link--><div><a style=\"display: inline-block;;color: #70757a; text-decoration: none;\" class=\"secondary-text underline-on-hover\" href=\"https://meet.google.com/uev-knbr-uga?hs=224\">meet.google.com/uev-knbr-uga</a></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Join by phone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(US) </span><a href=\"tel:+1-614-943-2858%3B602358663%23\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+1 614-943-2858</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">PIN: 602358663</span><br><br><a href=\"https://tel.meet/uev-knbr-uga?pin=1834089949194&amp;hs=0\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">More phone numbers</a><br></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20251023T150000Z\"></time><time itemprop=\"endDate\" datetime=\"20251023T160000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Thursday Oct 23, 2025 ⋅ 11am – 12pm (Eastern Time - New York)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jordan@lithiumbatterycompany.com\">Jordan Wroblewski</a></span><meta itemprop=\"email\" content=\"jordan@lithiumbatterycompany.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Jordan Wroblewski\"/><meta itemprop=\"email\" content=\"jordan@lithiumbatterycompany.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:elias@mavrix.one\">elias@mavrix.one</a></span><meta itemprop=\"email\" content=\"elias@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:nathan@lithiumbatterycompany.com\">Nathan Staron</a></span><meta itemprop=\"email\" content=\"nathan@lithiumbatterycompany.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:wmckenna@forgenano.com\">wmckenna@forgenano.com</a></span><meta itemprop=\"email\" content=\"wmckenna@forgenano.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a></span><meta itemprop=\"email\" content=\"jtrevey@forgenano.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a></span><meta itemprop=\"email\" content=\"brian@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:dansheridanmusic@gmail.com\">dansheridanmusic@gmail.com</a></span><meta itemprop=\"email\" content=\"dansheridanmusic@gmail.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:lithiumbatteryco@pipedrivemail.com\">lithiumbatteryco@pipedrivemail.com</a></span><meta itemprop=\"email\" content=\"lithiumbatteryco@pipedrivemail.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M3BtNHEzZHBvMHZoYWZndG9yNm0yYjA0MmEgcmlja0BtYXZyaXgub25l&amp;tok=MzIjam9yZGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb21kMzA3OWZmNDQzZTBiZmZjODQ0NTJhM2ZhNGE2YWUzYmE4NzZlYzMx&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3BtNHEzZHBvMHZoYWZndG9yNm0yYjA0MmEgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MzIjam9yZGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb21kMzA3OWZmNDQzZTBiZmZjODQ0NTJhM2ZhNGE2YWUzYmE4NzZlYzMx&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3BtNHEzZHBvMHZoYWZndG9yNm0yYjA0MmEgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MzIjam9yZGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb21kMzA3OWZmNDQzZTBiZmZjODQ0NTJhM2ZhNGE2YWUzYmE4NzZlYzMx&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3BtNHEzZHBvMHZoYWZndG9yNm0yYjA0MmEgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MzIjam9yZGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb21kMzA3OWZmNDQzZTBiZmZjODQ0NTJhM2ZhNGE2YWUzYmE4NzZlYzMx&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3BtNHEzZHBvMHZoYWZndG9yNm0yYjA0MmEgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MzIjam9yZGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb21kMzA3OWZmNDQzZTBiZmZjODQ0NTJhM2ZhNGE2YWUzYmE4NzZlYzMx&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3BtNHEzZHBvMHZoYWZndG9yNm0yYjA0MmEgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MzIjam9yZGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb21kMzA3OWZmNDQzZTBiZmZjODQ0NTJhM2ZhNGE2YWUzYmE4NzZlYzMx&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=M3BtNHEzZHBvMHZoYWZndG9yNm0yYjA0MmEgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MzIjam9yZGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb21kMzA3OWZmNDQzZTBiZmZjODQ0NTJhM2ZhNGE2YWUzYmE4NzZlYzMx&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M3BtNHEzZHBvMHZoYWZndG9yNm0yYjA0MmEgcmlja0BtYXZyaXgub25l&amp;tok=MzIjam9yZGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb21kMzA3OWZmNDQzZTBiZmZjODQ0NTJhM2ZhNGE2YWUzYmE4NzZlYzMx&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=M3BtNHEzZHBvMHZoYWZndG9yNm0yYjA0MmEgcmlja0BtYXZyaXgub25l&amp;tok=MzIjam9yZGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb21kMzA3OWZmNDQzZTBiZmZjODQ0NTJhM2ZhNGE2YWUzYmE4NzZlYzMx&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\nThursday Oct 23, 2025 ⋅ 11am – 12pm\r\nEastern Time - New York\r\n\r\nJoin with Google Meet\r\nhttps://meet.google.com/uev-knbr-uga?hs=224\r\n\r\n\r\n	\r\nJoin by phone\r\n(US) +1 614-943-2858\r\nPIN: 602358663\r\n\r\nMore phone numbers\r\nhttps://tel.meet/uev-knbr-uga?pin=1834089949194&hs=0\r\n\r\n\r\nOrganizer\r\nJordan Wroblewski\r\njordan@lithiumbatterycompany.com\r\n\r\nGuests\r\nJordan Wroblewski - organizer\r\nrick@mavrix.one\r\nelias@mavrix.one\r\nNathan Staron\r\nwmckenna@forgenano.com\r\njtrevey@forgenano.com\r\nbrian@mavrix.one\r\ndansheridanmusic@gmail.com\r\nlithiumbatteryco@pipedrivemail.com\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=M3BtNHEzZHBvMHZoYWZndG9yNm0yYjA0MmEgcmlja0BtYXZyaXgub25l&tok=MzIjam9yZGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb21kMzA3OWZmNDQzZTBiZmZjODQ0NTJhM2ZhNGE2YWUzYmE4NzZlYzMx&ctz=America%2FNew_York&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=M3BtNHEzZHBvMHZoYWZndG9yNm0yYjA0MmEgcmlja0BtYXZyaXgub25l&tok=MzIjam9yZGFuQGxpdGhpdW1iYXR0ZXJ5Y29tcGFueS5jb21kMzA3OWZmNDQzZTBiZmZjODQ0NTJhM2ZhNGE2YWUzYmE4NzZlYzMx&ctz=America%2FNew_York&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-10-22 15:44:38','2025-12-09 19:29:56','2025-12-09 19:29:56','2025-12-09 19:29:56',NULL,NULL,NULL),
(874,4,'<CAJO9__aYntUeTLjMQXMr_3N-Riw=QtvORO2Cj2ftXZgF709E1g@mail.gmail.com>',NULL,NULL,'Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>You bet,</div><div><br></div><div>Speak with you tomorrow. </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Oct 22, 2025 at 11:34 AM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"msg5154054507612261457\">\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nperfect. I look forward to speaking with you then!</div>\r\n<div id=\"m_5154054507612261457appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div id=\"m_5154054507612261457divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, October 22, 2025 9:30 AM<br>\r\n<b>To:</b> James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Will McKenna &lt;<a href=\"mailto:WMcKenna@forgenano.com\" target=\"_blank\">WMcKenna@forgenano.com</a>&gt;; Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</font>\r\n<div> </div>\r\n</div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div>Hi James,</div>\r\n<div><br>\r\n</div>\r\n<div>I can do tomorrow at 9am MST.  </div>\r\n<div><br>\r\n</div>\r\n<div>Let me know if that still works for you and I can send you over an invite.</div>\r\n<div><br>\r\n</div>\r\n<div>Best,</div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,irabj1pPRcbHt7fZTnVGlp-D5OWgJo5J-DJVmYysbSINfzIevG80IYq97Jraq-OV6w6IJC3gu0pHz4oFYfW4xcnb3n-PwXqRHBE_AugLqCnyxkrk6RI,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n</div>\r\n<br>\r\n<div>\r\n<div dir=\"ltr\">On Tue, Oct 21, 2025 at 6:09 PM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div>\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nHey Jordan, </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI am back from 3 weeks of travel and ready to get sorted here. Tomorrow is sunk, but on Thursday I can do 9am MT or 12:30pm MT. Do either work for you? If not, I have the following next week:</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n27th: 11:30-1pm MT</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n28th: 8am MT, 11am MT, after 1pm MT</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n29th: after 1pm MT</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n30th: after 10am MT</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nLet me know what works.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Monday, October 20, 2025 5:12 AM<br>\r\n<b>To:</b> James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I am out of town as well.  How does your Wednesday look? </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to catching up.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\"><u>jordan<a id=\"m_5154054507612261457x_m_3027303751782346756OWAf7c2c607-accb-1d48-00c0-8983b5ae6386\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"color:rgb(255,255,255);background-color:rgba(255,255,255,0)\"><a id=\"m_5154054507612261457x_m_3027303751782346756OWA8b905969-60b2-8c37-1c71-34c23bb26483\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,kcAZ-rF3D0Z_d8KzW-apTAtlzHQofd8D2ZjbELiCHZPsqOhCV8Xd_fUJ6ZWDkt-2fgJod-EPR6FfR9gTPQj_LmrIjU3cEOjFP4Vi0A3Pa8jqtC5XpIZ1aRU,&amp;typo=1\" style=\"margin-top:0px;margin-bottom:0px;background-color:rgba(255,255,255,0)\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<blockquote>\r\n<div style=\"direction:ltr\">On Oct 16, 2025, at 9:20 AM, James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n<br>\r\n</div>\r\n</blockquote>\r\n<blockquote>\r\n<div style=\"direction:ltr\">﻿</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nHey Jordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nApologies for the slow/no replies recently. Travel has been brutal. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nWe&#39;ve got a lot of the information ready for you. Can we schedule a call to do a walk through on Monday the 20th at 9am or 10am ET?</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div id=\"m_5154054507612261457x_m_3027303751782346756x_divRplyFwdMsg\">\r\n<div style=\"direction:ltr;font-family:Calibri,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Thursday, October 16, 2025 9:16 AM<br>\r\n<b>To:</b> James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\"> </div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Would be great to get some pricing and spec sheets. </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Let me know when we can connect. </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\"><u>jordan<a id=\"m_5154054507612261457x_m_3027303751782346756OWA6e6518c7-b1b2-a9d3-b5c7-e75cd139b83f\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"color:rgb(255,255,255);background-color:rgba(255,255,255,0)\"><a id=\"m_5154054507612261457x_m_3027303751782346756OWAe31ac896-4399-1efb-6f2c-7967953d3e79\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,kruzcWrtQAWBE_Wzkk5ZCPi8egnieSOSjhsFO2fIO_mt3sy1dInRgNFjLY-Xwbk4dmY7rgbxINSGlle76-Yg-vEcypX9dPm0sX9KSwuuDZUbmg,,&amp;typo=1\" style=\"margin-top:0px;margin-bottom:0px;background-color:rgba(255,255,255,0)\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<blockquote>\r\n<div style=\"direction:ltr\">On Sep 30, 2025, at 4:31 PM, Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br>\r\n<br>\r\n</div>\r\n</blockquote>\r\n<blockquote>\r\n<div style=\"direction:ltr\">﻿</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to our discussion and seeing your deck of prospective projects.  </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best, </div>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a id=\"m_5154054507612261457x_m_3027303751782346756OWAc7d77927-1b34-5743-9e14-a66571eb2996\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a id=\"m_5154054507612261457x_m_3027303751782346756OWA324c57de-34ea-de6d-5110-af4c020dd065\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,KG7OlMyZO9jbLU5vTJ3I8lMhBaHdNf06-ktzHMDOUSoCImrfUczbXUj1d1VcQUh_ApKsyrkLO9FO7PzcinsYewUWoskpuT9EKlrhqSI22A,,&amp;typo=1\" style=\"margin-top:0px;margin-bottom:0px\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Fri, Sep 26, 2025 at 4:59 PM James Trevey &lt;<a id=\"m_5154054507612261457x_m_3027303751782346756OWA9bf92834-b125-3261-f5ee-fc5ab4a4b064\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI won&#39;t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI&#39;ll send to you as soon as I can next week.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<b>From:</b> James Trevey &lt;<a id=\"m_5154054507612261457x_m_3027303751782346756OWA4a56e5b0-7547-009b-e0f9-09d85bdcb401\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, September 24, 2025 10:49 AM<br>\r\n<b>To:</b> Jordan Wroblewski &lt;<a id=\"m_5154054507612261457x_m_3027303751782346756OWA538352ea-6cf6-ae29-12a3-4655367275e0\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a id=\"m_5154054507612261457x_m_3027303751782346756OWA7fd338e4-4d03-f50f-43c3-5364cbb82a0b\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_5154054507612261457x_m_3027303751782346756OWA02c346e5-23fe-5170-14f6-1a1fade02e3d\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI also have a verbal matter we can discuss soon. Once I&#39;ve got the deck ready I&#39;ll find time for a short call with you.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nTalk soon.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJames</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div id=\"m_5154054507612261457x_m_3027303751782346756x_x_m_7859046138643783182x_divRplyFwdMsg\">\r\n<div style=\"direction:ltr;font-family:Calibri,sans-serif;font-size:11pt;color:black\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a id=\"m_5154054507612261457x_m_3027303751782346756OWAea2d7e23-0227-6b05-2d24-7721e695e834\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, September 24, 2025 10:07 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_5154054507612261457x_m_3027303751782346756OWA443da8b1-99a9-810a-f48f-3c9fd3f49708\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a id=\"m_5154054507612261457x_m_3027303751782346756OWA4274d479-1e0a-7df8-23af-21e278d0d08f\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_5154054507612261457x_m_3027303751782346756OWA8e6b5ffa-4d9a-b4f0-8085-4c2b0948e67c\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\"> </div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for the follow up.  You were on my list to contact today!  </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Would that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I will let you know if I will be able to make it up to Detroit for The Battery Show.  </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to seeing the deck.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">All the best, </div>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a id=\"m_5154054507612261457x_m_3027303751782346756OWAe6735742-f176-3674-fedc-900c3819d9ee\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a id=\"m_5154054507612261457x_m_3027303751782346756OWAb5262d09-ef08-5455-a256-0bd9e1aa5c91\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&amp;typo=1\" style=\"margin-top:0px;margin-bottom:0px\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 24, 2025 at 11:59 AM James Trevey &lt;<a id=\"m_5154054507612261457x_m_3027303751782346756OWAbc9adcce-c4cb-2a2f-7f3d-6364038da633\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nHey Jordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nThank you for the quick follow up. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we&#39;ve decided we&#39;d like to provide information on additional products to you which are typically not on the menu but I have details\r\n to sort first. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nRegarding shows, happy to discuss when ready. We&#39;ll be at The Battery Show in 2 weeks, which I think you should consider attending and I&#39;d be happy to connect while there. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJames</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div id=\"m_5154054507612261457x_m_3027303751782346756x_x_m_7859046138643783182x_x_m_-6814561645313625911divRplyFwdMsg\">\r\n<div style=\"direction:ltr;font-family:Calibri,sans-serif;font-size:11pt;color:black\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a id=\"m_5154054507612261457x_m_3027303751782346756OWAba0954a3-6af7-4e23-e49f-b75926b78a15\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Thursday, September 18, 2025 11:03 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_5154054507612261457x_m_3027303751782346756OWA42c932ca-68c6-5b56-3653-11f201c57afa\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a id=\"m_5154054507612261457x_m_3027303751782346756OWA99145ea8-cd40-6658-3aa0-f59433cd1128\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_5154054507612261457x_m_3027303751782346756OWA32d59368-ef5e-8bb1-178a-b87e51c7620e\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\"> </div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information\r\n to optimize our collaboration and planning:<br>\r\n<br>\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.<br>\r\n<br>\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.<br>\r\n<br>\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.<br>\r\n<br>\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.<br>\r\n<br>\r\nClarify your minimum order quantities and expected pricing for each product line.<br>\r\n<br>\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.<br>\r\n<br>\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted\r\n commercial timelines, and expected pricing.<br>\r\n<br>\r\nAdditionally, for reference, these are LBC’s most popular cells we&#39;ve made module and packs for:<br>\r\n<br>\r\n18650:<br>\r\n<br>\r\nNMC: TNL-ITR18650-2600P<br>\r\n<br>\r\nLFP: SW18650-26HPA<br>\r\n<br>\r\nLFP: IFR18650-2000mAh<br>\r\n<br>\r\n21700:<br>\r\n<br>\r\nNMC: INR21700-50S<br>\r\n<br>\r\nNMC: INR21700-4000<br>\r\n<br>\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">In terms of the shows you mentioned, we are getting our schedules aligned so we can attend.  What&#39;s the &quot;secret meeting&quot; in Nov? <br>\r\n<br>\r\nWe look forward to your prompt response so we can efficiently move to the next stages.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Talk soon, </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a id=\"m_5154054507612261457x_m_3027303751782346756OWA1319bc1b-97ef-ff33-a5a9-0ae1688214a7\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a id=\"m_5154054507612261457x_m_3027303751782346756OWA277d6a55-8116-f66c-3c15-75725a3ed8f4\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&amp;typo=1\" style=\"margin-top:0px;margin-bottom:0px\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 17, 2025 at 7:00 PM James Trevey &lt;<a id=\"m_5154054507612261457x_m_3027303751782346756OWA3484e5f5-6c8b-54d7-107b-9e6f8da86028\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nThanks for moving quickly here. I got bogged down today but better late than never. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nAttached you&#39;ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won&#39;t tell us the application)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell has a 100% US supply chain already</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions\r\n</u>next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>thousands</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions</u> next year by our partner in the EU. As we show adoption, we&#39;ll expand our factory to build these</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>thousands</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n</ul>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI will check with my people on 301 asap.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI look forward to our next communication.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJames</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:black\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:black\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a id=\"m_5154054507612261457x_m_3027303751782346756OWAa921d87f-3d74-18ee-e338-25a171f4a546\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, September 17, 2025 7:56 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_5154054507612261457x_m_3027303751782346756OWA2d7f3e10-34df-93ac-9894-c27d6794932f\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;; Daniel &lt;<a id=\"m_5154054507612261457x_m_3027303751782346756OWA9c679ac3-8374-b4b7-6888-1470a778ca89\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_5154054507612261457x_m_3027303751782346756OWA2a254db0-b784-1f9c-d18c-1420efed0d27\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Gentlemen,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">It was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I&#39;ve outlined the key action items below:</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<ul style=\"direction:ltr\">\r\n<li style=\"direction:ltr\">James to send the cell specification sheets as soon as possible.</li><li style=\"direction:ltr\">LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.</li><li style=\"direction:ltr\">James to send their term sheet template for throughput contracts.</li><li style=\"direction:ltr\">We should discuss 301 exclusion support for manufacturing equipment.</li></ul>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I look forward to our next conversation. </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a id=\"m_5154054507612261457x_m_3027303751782346756OWAfdd1d524-2f8b-cca4-2648-ea80fa77e5ea\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a id=\"m_5154054507612261457x_m_3027303751782346756OWAf470cd21-bcc7-d0d2-f0b5-03c7d748f706\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&amp;typo=1\" style=\"margin-top:0px;margin-bottom:0px\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n<div style=\"direction:ltr\">&lt;ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes (1).csv&gt;</div>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n</div></blockquote></div>','You bet,\r\n\r\nSpeak with you tomorrow.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Wed, Oct 22, 2025 at 11:34 AM James Trevey <jtrevey@forgenano.com> wrote:\r\n\r\n> perfect. I look forward to speaking with you then!\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Wednesday, October 22, 2025 9:30 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Will McKenna <WMcKenna@forgenano.com>; Daniel <\r\n> dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan\r\n> Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Hi James,\r\n>\r\n> I can do tomorrow at 9am MST.\r\n>\r\n> Let me know if that still works for you and I can send you over an invite.\r\n>\r\n> Best,\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,irabj1pPRcbHt7fZTnVGlp-D5OWgJo5J-DJVmYysbSINfzIevG80IYq97Jraq-OV6w6IJC3gu0pHz4oFYfW4xcnb3n-PwXqRHBE_AugLqCnyxkrk6RI,&typo=1>\r\n>\r\n>\r\n> On Tue, Oct 21, 2025 at 6:09 PM James Trevey <jtrevey@forgenano.com>\r\n> wrote:\r\n>\r\n> Hey Jordan,\r\n>\r\n> I am back from 3 weeks of travel and ready to get sorted here. Tomorrow is\r\n> sunk, but on Thursday I can do 9am MT or 12:30pm MT. Do either work for\r\n> you? If not, I have the following next week:\r\n>\r\n> 27th: 11:30-1pm MT\r\n> 28th: 8am MT, 11am MT, after 1pm MT\r\n> 29th: after 1pm MT\r\n> 30th: after 10am MT\r\n>\r\n> Let me know what works.\r\n>\r\n> James\r\n>\r\n>\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Monday, October 20, 2025 5:12 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n> Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Hi James,\r\n>\r\n> I am out of town as well.  How does your Wednesday look?\r\n>\r\n> Looking forward to catching up.\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,kcAZ-rF3D0Z_d8KzW-apTAtlzHQofd8D2ZjbELiCHZPsqOhCV8Xd_fUJ6ZWDkt-2fgJod-EPR6FfR9gTPQj_LmrIjU3cEOjFP4Vi0A3Pa8jqtC5XpIZ1aRU,&typo=1>\r\n>\r\n> On Oct 16, 2025, at 9:20 AM, James Trevey <jtrevey@forgenano.com> wrote:\r\n>\r\n> ﻿\r\n> Hey Jordan,\r\n>\r\n> Apologies for the slow/no replies recently. Travel has been brutal.\r\n>\r\n> We\'ve got a lot of the information ready for you. Can we schedule a call\r\n> to do a walk through on Monday the 20th at 9am or 10am ET?\r\n>\r\n> James\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Thursday, October 16, 2025 9:16 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n> Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Hi James,\r\n>\r\n> Would be great to get some pricing and spec sheets.\r\n>\r\n> Let me know when we can connect.\r\n>\r\n> Best,\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,kruzcWrtQAWBE_Wzkk5ZCPi8egnieSOSjhsFO2fIO_mt3sy1dInRgNFjLY-Xwbk4dmY7rgbxINSGlle76-Yg-vEcypX9dPm0sX9KSwuuDZUbmg,,&typo=1>\r\n>\r\n> On Sep 30, 2025, at 4:31 PM, Jordan Wroblewski <\r\n> jordan@lithiumbatterycompany.com> wrote:\r\n>\r\n> ﻿\r\n> Hi James,\r\n>\r\n> I have attached a prospective cell demand schedule (subject to change) but\r\n> two of your battery types should meet the requirements for some of our\r\n> future projects.\r\n>\r\n> Looking forward to our discussion and seeing your deck of prospective\r\n> projects.\r\n>\r\n> Best,\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,KG7OlMyZO9jbLU5vTJ3I8lMhBaHdNf06-ktzHMDOUSoCImrfUczbXUj1d1VcQUh_ApKsyrkLO9FO7PzcinsYewUWoskpuT9EKlrhqSI22A,,&typo=1>\r\n>\r\n>\r\n> On Fri, Sep 26, 2025 at 4:59 PM James Trevey <jtrevey@forgenano.com>\r\n> wrote:\r\n>\r\n> Jordan,\r\n>\r\n> I won\'t be able to send the deck today. Still waiting on a few spec sheets\r\n> approval and validation of production capability for a few products.\r\n>\r\n> I\'ll send to you as soon as I can next week.\r\n>\r\n> James\r\n>\r\n>\r\n>\r\n>\r\n> ------------------------------\r\n> *From:* James Trevey <jtrevey@forgenano.com>\r\n> *Sent:* Wednesday, September 24, 2025 10:49 AM\r\n> *To:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n> Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Jordan,\r\n>\r\n> Unfortunately, there is not a large prismatic on our list. I could\r\n> potentially license a design to make one, but it would take a lot of\r\n> coordinating.\r\n>\r\n> It would be super helpful if you are able to compile a deck for us which\r\n> has your prospective cell demand schedule now and for the next few years,\r\n> as well as what your qualification schedule looks like (maybe program\r\n> based?). Maybe by cell type?\r\n>\r\n> I also have a verbal matter we can discuss soon. Once I\'ve got the deck\r\n> ready I\'ll find time for a short call with you.\r\n>\r\n> Talk soon.\r\n>\r\n> James\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Wednesday, September 24, 2025 10:07 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n> Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Hi James,\r\n>\r\n> Thank you for the follow up.  You were on my list to contact today!\r\n>\r\n> Would that additional product list include a prismatic cell? I have a\r\n> client who needs 150MWh a year and they want a domestic 314Ah cell...\r\n>\r\n> I will let you know if I will be able to make it up to Detroit for The\r\n> Battery Show.\r\n>\r\n> Looking forward to seeing the deck.\r\n>\r\n> All the best,\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&typo=1>\r\n>\r\n>\r\n> On Wed, Sep 24, 2025 at 11:59 AM James Trevey <jtrevey@forgenano.com>\r\n> wrote:\r\n>\r\n> Hey Jordan,\r\n>\r\n> Thank you for the quick follow up.\r\n>\r\n> I am working on a compiled deck for you to address the below requests and\r\n> aiming for end of this week. After speaking with my team, we\'ve decided\r\n> we\'d like to provide information on additional products to you which are\r\n> typically not on the menu but I have details to sort first.\r\n>\r\n> Regarding shows, happy to discuss when ready. We\'ll be at The Battery Show\r\n> in 2 weeks, which I think you should consider attending and I\'d be happy to\r\n> connect while there.\r\n>\r\n> James\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Thursday, September 18, 2025 11:03 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n> Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Hi James,\r\n>\r\n>\r\n> Thank you for continuing discussions regarding our strategic partnership.\r\n> As we prepare for module and pack production to support your battery cell\r\n> needs, we would appreciate your assistance in providing several key pieces\r\n> of information to optimize our collaboration and planning:\r\n>\r\n> Please share detailed volume forecasts for each cell type (e.g., 18650,\r\n> 21700) you expect to require over the next 1–5 years, broken out by project\r\n> or customer segment where feasible.\r\n>\r\n> Indicate your anticipated ramp-up schedule for sample, engineering, and\r\n> production volumes to help us align our development and manufacturing\r\n> timelines.\r\n>\r\n> Identify any major offtake agreements, anchor customers, or significant\r\n> opportunities in your commercial pipeline that could impact forecasted\r\n> demand for modules or packs.\r\n>\r\n> Outline target applications (energy storage, drones, EVs, DOD, etc.) and\r\n> specify any technical or certification requirements for modules/packs\r\n> related to these segments.\r\n>\r\n> Clarify your minimum order quantities and expected pricing for each\r\n> product line.\r\n>\r\n> Please also provide information about any flexibility in volume\r\n> commitments that may be necessary in case project requirements or customer\r\n> needs adjust mid-term.\r\n>\r\n> Importantly, we would like to request information on any current or\r\n> forthcoming cells with a minimum continuous discharge rating of 15C or\r\n> higher. For these cells, please provide specifications, target\r\n> applications, anticipated volume requirements, forecasted commercial\r\n> timelines, and expected pricing.\r\n>\r\n> Additionally, for reference, these are LBC’s most popular cells we\'ve made\r\n> module and packs for:\r\n>\r\n> 18650:\r\n>\r\n> NMC: TNL-ITR18650-2600P\r\n>\r\n> LFP: SW18650-26HPA\r\n>\r\n> LFP: IFR18650-2000mAh\r\n>\r\n> 21700:\r\n>\r\n> NMC: INR21700-50S\r\n>\r\n> NMC: INR21700-4000\r\n>\r\n> Providing this information will enable LBC to ensure maximum alignment,\r\n> timely scale-up, and the most competitive solutions to support your growth\r\n> across all high-value sectors.\r\n>\r\n> In terms of the shows you mentioned, we are getting our schedules aligned\r\n> so we can attend.  What\'s the \"secret meeting\" in Nov?\r\n>\r\n> We look forward to your prompt response so we can efficiently move to the\r\n> next stages.\r\n>\r\n>\r\n> Talk soon,\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&typo=1>\r\n>\r\n>\r\n> On Wed, Sep 17, 2025 at 7:00 PM James Trevey <jtrevey@forgenano.com>\r\n> wrote:\r\n>\r\n> Jordan,\r\n>\r\n> Thanks for moving quickly here. I got bogged down today but better late\r\n> than never.\r\n>\r\n> Attached you\'ll find data sheets for all (5) of our products, including\r\n> both 18650 and 21700. Below is a quick summary:\r\n>\r\n>\r\n>    - SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation\r\n>    (they won\'t tell us the application)\r\n>    - This cell has a 100% US supply chain already\r\n>       - This cell can be made in the *millions* next year by our partner\r\n>       in the EU, until our factory is online in 2027\r\n>       - SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse\r\n>    engineered from MIL-PRF-32383)\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the *millions *next year by our partner\r\n>       in the EU, until our factory is online in 2027\r\n>       - SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the *thousands* next year by our partner\r\n>       in the EU, until our factory is online in 2027\r\n>       - SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum\r\n>    case and tabless design, super lightweight)\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the *millions* next year by our partner\r\n>       in the EU. As we show adoption, we\'ll expand our factory to build these\r\n>       - SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse\r\n>    engineered from MIL-PRF-32565)\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the *thousands* next year by our partner\r\n>       in the EU, until our factory is online in 2027\r\n>\r\n>\r\n> We can also get 80mmx300mm pouch cells made by our EU partner, if needed.\r\n>\r\n> Regarding the term sheet, please see the attached template that I put\r\n> together but needs input from you all.\r\n>\r\n> Maybe we line up another discussion for next week to continue our\r\n> alignment path? Also, are any of you planning to attend The Battery Show in\r\n> Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores\r\n> in Nashville? in October? Or the secret meeting on November 5th in DC?\r\n>\r\n> I will check with my people on 301 asap.\r\n>\r\n> I look forward to our next communication.\r\n>\r\n> James\r\n>\r\n>\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Wednesday, September 17, 2025 7:56 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>; Daniel <\r\n> dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan\r\n> Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Gentlemen,\r\n>\r\n> It was a pleasure connecting with you yesterday. I am very excited about\r\n> the potential for a partnership between our companies. To maintain the\r\n> momentum from our discussion, I\'ve outlined the key action items below:\r\n>\r\n>\r\n>    - James to send the cell specification sheets as soon as possible.\r\n>    - LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for\r\n>    benchmarking purposes.\r\n>    - James to send their term sheet template for throughput contracts.\r\n>    - We should discuss 301 exclusion support for manufacturing equipment.\r\n>\r\n>\r\n> I look forward to our next conversation.\r\n>\r\n> Best,\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&typo=1>\r\n>\r\n> <ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes\r\n> (1).csv>\r\n>\r\n>',0,0,0,0,0,0,'2025-10-22 15:45:35','2025-12-09 19:29:57','2025-12-09 19:29:57','2025-12-09 19:29:57',NULL,NULL,NULL),
(875,4,'<1761222621745.6d08a90f-3e1a-43a0-b2a7-4c9a49e5964d@bf03.hubspotemail.net>',NULL,NULL,'Building a brand that empowers every mind: Meet Canopy','info@grafik.com','The Grafik Team','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional //EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:v=\"urn:schemas-microsoft-com:vml\" lang=\"en\"><head>\r\n    <title>Building a brand that empowers every mind</title>\r\n    <meta property=\"og:title\" content=\"Building a brand that empowers every mind\">\r\n    <meta name=\"twitter:title\" content=\"Building a brand that empowers every mind\">\r\n    \r\n    \r\n    \r\n<meta name=\"x-apple-disable-message-reformatting\">\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\r\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <!--[if gte mso 9]>\r\n  <xml>\r\n    <o:OfficeDocumentSettings>\r\n      <o:AllowPNG/>\r\n      <o:PixelsPerInch>96</o:PixelsPerInch>\r\n    </o:OfficeDocumentSettings>\r\n    <w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\">\r\n      <w:DontUseAdvancedTypographyReadingMail/>\r\n    </w:WordDocument>\r\n  </xml>\r\n  \r\n  <style>\r\n    ul > li {\r\n      text-indent: -1em;\r\n    }\r\n  </style>\r\n<![endif]-->\r\n<!--[if mso]>\r\n<style type=\"text/css\">\r\n body, td {font-family: Arial, Helvetica, sans-serif;}\r\n .hse-body-wrapper-table {background-color: #dadfe3;}\r\n</style>\r\n<![endif]-->\r\n<!--[if mso | IE]>\r\n  <style type=\"text/css\">\r\n    .hse-column-container { border: none !important; padding: 0 !important; }\r\n  </style>\r\n<![endif]-->\r\n    \r\n      \r\n  \r\n  \r\n    \r\n  <meta name=\"generator\" content=\"HubSpot\"><meta property=\"og:url\" content=\"http://grafik-7.hs-sites.com/building-a-brand-that-empowers-every-mind\"><meta name=\"robots\" content=\"noindex,follow\"><!--[if !((mso)|(IE))]><!-- --><style type=\"text/css\">@media only screen and (max-width:639px){img.stretch-on-mobile,.hs_rss_email_entries_table img,.hs-stretch-cta .hs-cta-img{height:auto !important;width:100% !important}\r\n.display_block_on_small_screens{display:block}.hs_padded{padding-left:20px !important;padding-right:20px !important}\r\n.hs-hm,table.hs-hm{display:none}.hs-hd{display:block !important}table.hs-hd{display:table !important}\r\n}@media only screen and (max-width:639px){.hse-border-m{border-left:1px solid #ccc !important;border-right:1px solid #ccc !important;box-sizing:border-box}\r\n.hse-border-bottom-m{border-bottom:1px solid #ccc !important}.hse-border-top-m{border-top:1px solid #ccc !important}\r\n.hse-border-top-hm{border-top:none !important}.hse-border-bottom-hm{border-bottom:none !important}\r\n}.moz-text-html .hse-column-container{max-width:600px !important;width:600px !important}\r\n.moz-text-html .hse-column{display:table-cell;vertical-align:top}.moz-text-html .hse-section .hse-size-6{max-width:300px !important;width:300px !important}\r\n.moz-text-html .hse-section .hse-size-12{max-width:600px !important;width:600px !important}\r\n@media only screen and (min-width:640px){.hse-column-container{max-width:600px !important;width:600px !important}\r\n.hse-column{display:table-cell;vertical-align:top}.hse-section .hse-size-6{max-width:300px !important;width:300px !important}\r\n.hse-section .hse-size-12{max-width:600px !important;width:600px !important} }@media only screen and (max-width:639px){.hse-body-wrapper-td{padding-top:20px !important}\r\n#section_1756346635501 .hse-column-container{background-color:transparent !important}\r\n#section_1756346635501 .hse-column-container{background-color:transparent !important}\r\n}@media only screen and (max-width:639px){ #section-0 .hse-column-container{padding-top:0px !important;padding-bottom:0px !important}\r\n#section-0 .hse-column-container{background-color:#fafafa !important} }@media only screen and (max-width:639px){.hse-body-wrapper-td{padding-bottom:20px !important}\r\n#section_1744379431619 .hse-column-container{background-color:#151515 !important}\r\n}</style><!--<![endif]--><style type=\"text/css\">#hs_body #hs_cos_wrapper_main a[x-apple-data-detectors]{color:inherit !important;text-decoration:none !important;font-size:inherit !important;font-family:inherit !important;font-weight:inherit !important;line-height:inherit !important}\r\na{text-decoration:underline}p{margin:0}body{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale}\r\ntable{border-spacing:0;mso-table-lspace:0;mso-table-rspace:0}table,td{border-collapse:collapse}\r\nimg{-ms-interpolation-mode:bicubic}p,a,li,td,blockquote{mso-line-height-rule:exactly}\r\n.ShadowHTML p,.sh-modified-inline p{margin:0}</style></head>\r\n  <body id=\"hs_body\" bgcolor=\"#dadfe3\" style=\"margin:0 !important; padding:0 !important; font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word\">\r\n    <div id=\"preview_text\" style=\"display:none;font-size:1px;color:#dadfe3;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;\" lang=\"en\">The latest insights and client stories from Grafik, a branding and marketing agency that helps inspire new possibilities.</div>\r\n    \r\n<!--[if gte mso 9]>\r\n<v:background xmlns:v=\"urn:schemas-microsoft-com:vml\" fill=\"t\">\r\n    <v:fill type=\"tile\" size=\"100%,100%\" color=\"#ffffff\"/>\r\n</v:background>\r\n<![endif]-->\r\n    <div class=\"hse-body-background\" lang=\"en\" style=\"background-color:#dadfe3\" bgcolor=\"#dadfe3\">\r\n      <table role=\"presentation\" class=\"hse-body-wrapper-table\" cellpadding=\"0\" cellspacing=\"0\" style=\"margin:0; padding:0; width:100% !important; min-width:320px !important; height:100% !important\" width=\"100%\" height=\"100%\">\r\n        <tbody><tr>\r\n          <td class=\"hse-body-wrapper-td\" valign=\"top\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding-top:20px; padding-bottom:20px\">\r\n            <div id=\"hs_cos_wrapper_main\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_dnd_area\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"dnd_area\">  <div id=\"section_1756346635501\" class=\"hse-section hse-section-first\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\r\n      <tr>\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column_1756346635501_0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module_17563466354982\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div style=\"overflow:hidden\">\r\n  <table role=\"presentation\" class=\"hse-pre-header hse-secondary\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"text-align:right; font-family:Arial, sans-serif; font-size:12px; line-height:135%; color:#23496d; margin-bottom:0; padding:0\" align=\"right\">\r\n    <tbody>\r\n      <tr>\r\n        <td align=\"right\" valign=\"top\" style=\"color:#151515; word-break:break-word; text-align:right; font-family:Arial, sans-serif; font-size:12px; padding:10px 0; margin-bottom:0; line-height:135%\">\r\n          <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbts5kBVzW6N1X8z6lZ3nhW6LpKwQ4zT4ygW5CmKYm6mtF0yW4v1QBW1MKVv-W3L5dXx7SgL03W7_zFD87TxnsYW5Y4DgY5M9kySW56tPt06KrX4mW839jt71WYlk0W6MBc9B2_Bm5jVgGRvk3CdcC-N4HHNtrJFwqDVKB4l_5XyPvQN2N6dvDG0gMkVCClJ064XGpjN1kbc7YXcqVQW5NByV8206FfCW7Xd4V98C9r_SW7spy-x4n8qX8VWbbhf2bBcCLW6FZ84Y8Tc3S6W1mwfy16vk2yhN1Rw55C-FYQ3W4rqJQQ3KR_ZmW1RpmjZ9dKK7vF4F2Jmv_pBNW2XCYYg57tZYTN8gHyzC9hp2KW5JVwcX7w9J11W4lhRxt5CM0XtW3rqD1Y6SbqNtN7nZJMsvz_zYW6y2VXz4sTvKLW3r-Qv474cv49W2lg6S67R-0B5T2tFJ1lb9p_W68b8Qt2lc9xRW4YSMmv4Rn91sVtxMcn3zN0YZf92N_xd04\" style=\"color:#151515; font-weight:normal; text-decoration:none; font-style:normal\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"twecyeKa\" target=\"_blank\">View in browser</a>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n</div></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section-0\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#FAFAFA\" bgcolor=\"#FAFAFA\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#FAFAFA\">\r\n      <tr style=\"background-color:#FAFAFA;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-0-0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module_17443761811201\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\" valign=\"top\" style=\"font-family:Helvetica, Arial, sans-serif; color:#151515; word-break:break-word; text-align:center; padding:0px; font-size:0px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbt83m2nnW69sMD-6lZ3p0W1Fy4Rd8Nj7NfVsW8QT4vdzv-N3sY8WCrQYGVW4_k_lp2VG_LJW4mVQtD7BpFwcW8zdnsF6bSRS5W7F1j-38vFlLlW5nbY4M4nwnX1W6lbKPJ4RWG69W4JkN854hszjsW2JLspW1hrZ9HW4WR0Q-607q2zW93KJGT7_92d_Vmq-6q440bsHW96MVxc2W_PBkN7T7q1-4wH-sN6dSzz23SLznW33CT847_nK1RVDmmGx5ZFkh8W6fXgrV8WLbP4f8T2FvR04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"jBtPrh1/\">\r\n        <img alt=\"\" src=\"https://hs-505301.f.hubspotemail.net/hub/505301/hubfs/Header-1.jpg?width=1200&amp;upscale=true&amp;name=Header-1.jpg\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"600\" align=\"middle\" class=\"stretch-on-mobile\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n<div id=\"hs_cos_wrapper_module_17443764897162\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\" valign=\"top\" style=\"font-family:Helvetica, Arial, sans-serif; color:#151515; word-break:break-word; text-align:center; padding:0px; font-size:0px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbv23m2nnW7Y8-PT6lZ3pmW2mLP4Y6rfNgtVL-0NS2HjDBcW6v3p177sGkgLW3dRZHN89hg4TW3VtRPz2N_vBrVWSSzG3369k8W1ZBvzY1w51RjW7zxtCY5wj_0dVnHWPG1bKyrfW7mg8ry19S8_7W8n6nhm5W2W1hW1jVdTb1Qf9qvW68T-7j5YrTBLW8ZHGFF1Sbr6vW8xglnJ8Jkm8LW6TJmZM8gjdJWW87Q-k88Cw7LXW8qRK1M8XvqKWW4jhmmq1C7Xp-W6Fy1cW2Z5pqlVv_d9y94bVqgW8CDsMl878XktW9ffMm_5Y7K_pVwKz635TFn22VWDCf23JkycKW3F7-Kk3V7q5Lf2HcX3Y04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"HW5xqww9\">\r\n        <img alt=\"Canopy Header\" src=\"https://hs-505301.f.hubspotemail.net/hub/505301/hubfs/Canopy%20Header.jpg?width=1200&amp;upscale=true&amp;name=Canopy%20Header.jpg\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"600\" align=\"middle\" class=\"stretch-on-mobile\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_17512913206711\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17512913206711_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h2 style=\"margin:0; line-height:125%; font-family:Helvetica, Arial, sans-serif; font-size:30px\">Empowering employment for neurodivergent individuals</h2></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:0px 20px 10px\"><div id=\"hs_cos_wrapper_module_17443765430663\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17443765430663_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"line-height:150%\"><span style=\"font-size: 16px;\">As conversations about inclusion evolve, the Canopy Neurodiversity Foundation is redefining how organizations understand and support neurodiverse talent in Washington State. Originally known as the Washington Neurodiversity Project, the organization came to Grafik to launch its brand and broaden its impact. Together, we developed the new name Canopy, established a clear brand strategy, and created a distinct visual identity and website that communicate its mission with clarity and confidence. Centered on the mantra <em>Empowering Employment</em>, the new brand unites a bold logo system, vibrant color palette, and accessible digital experience that bring Canopy’s vision into focus.<br><br></span></p>\r\n<p style=\"line-height:150%\"><span style=\"font-size: 16px;\">Read the <span style=\"text-decoration: underline;\"><span style=\"color: #ff2d0f;\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbv23m2nnW7Y8-PT6lZ3ljW42s3sY1Fn85QVTk5jg3t2rbHW2gHzL23B0ZHVW4vmLKm52M0H8W4CJ97M75PH5MN1c5DVNDm7WpW8Tdrk_6JgL-NW62PjC-6SPJxtW5RRVN848t7h-W66ScKX8zxcKYW1JLJzz26lYkWW5GvgG62bPxVZW3lmdPM3XBqcfW6NqM7l72NFskW5pQ5HN811NXPW3Tf6t97-d4dYW73-nt57-QFbVW5L7xZl3FjqdjW5k2mNK1-qGpfW82DRVv3_RM9fW6nhndr2KZ4c8N5gHVfFPM2gkW8D-85s9cgJZvW85BSyd64nMq7W5pTyyb345Qb8W5zvJ_k3jDYmFf7_Lbpl04\" style=\"font-weight:bold; color:#ff2d0f; text-decoration:underline\" rel=\"noopener\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"2DY9rpxH\" target=\"_blank\">full case study</a></span></span> to see how Grafik helped Canopy build a brand that inspires understanding, opportunity, and inclusion.</span></p></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_17443767079664\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#ff2d0f\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; border-radius:0px; cursor:auto; background-color:#ff2d0f; mso-padding-alt:20px 26px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbv23m2nnW7Y8-PT6lZ3m-W1PwKMX7PxbV4W2bc-D61XqV_0W145ZcC16jp9zW30nCnM92PHWYW8M4pPc6hFFc7W62nCdT24gKskVRJ6_C5xf2yCW3rtFWk3KRsjnW47tKbQ5VCMn-W8w_lqy326ydHW7MyCwR2N6rrhW60KtLv3f7x2sW3Jh9b34q1hdsW86XRVV2LDLxsW3F_QmW3ybBt-W78Z0YQ8RCzhhW7T93mk6hm6_FW7pg-m11XpSy_W8FWv9w4QCv8FW13_3QH88x7-0W5sJq8k7nVh9hW34NBqQ6Z7GPRW7ML-_j4R0YkYW7nwB777dyXDwW83B15f4-xLrMW8FFQ088s2czyf8gSF2-04\" target=\"_blank\" style=\"color:#00a4bd; font-size:14px; font-family:Arial, sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:20px 26px; display:block\" data-hs-link-id=\"2\" data-hs-link-id-v2=\"tYs8Ufp7\">\r\n          <strong style=\"color:#FFFFFF;font-weight:bold;text-decoration:none;font-style:normal;\">CONTINUE READING</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_174437748374110\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table role=\"none\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"vertical-align:top\" width=\"100%\">\r\n  <tbody><tr>\r\n    <td align=\"center\" style=\"font-family:Helvetica, Arial, sans-serif; color:#151515; font-size:0; word-break:break-word\">\r\n      <p style=\"font-size:1px;border-top:1px solid #000000;width:100%;margin:0 auto;\"></p>\r\n      <!--[if mso]>\r\n        <table role=\"none\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-size:1px;border-top:1px solid #000000;width:560px;\">\r\n          <tr>\r\n            <td style=\"height:0;line-height:0\">&nbsp;</td>\r\n          </tr>\r\n        </table>\r\n      <![endif]-->\r\n    </td>\r\n  </tr>\r\n</tbody></table></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_174437749928911\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_174437749928911_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h1 style=\"margin:0; line-height:125%; font-size:36px; text-align:center\" align=\"center\"><span style=\"font-weight: black;\">THE LATEST</span></h1></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"module_1749607916924\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#FAFAFA; padding-bottom:20px\" bgcolor=\"#FAFAFA\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#FAFAFA\">\r\n      <tr style=\"background-color:#FAFAFA;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:300px;padding-bottom:20px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"300\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:300px\">\r\n<![endif]-->\r\n<div id=\"module_1749607916924_0\" class=\"hse-column hse-size-6\">\r\n  <div id=\"hs_cos_wrapper_module_17496079169191\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Helvetica, Arial, sans-serif; color:#151515; word-break:break-word; text-align:center; padding:10px 20px; font-size:0px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbvl3m2nnW8wLKSR6lZ3nfW1Q0Yd9718rBGW2s24kb7YCM6BW5JvJQf2q7dh3W3SlZSK7f2zmMW22pZ5d8lq5-8N1TC9CwRZlHQW8n95CH99nX6HW3NQfC3428rQ5W1lTYGl7bJVr5N15ljNRMVg-GW8llTX98xq1-tN3HhfR1N1RGLW5PBR628y_yJPW3L0xVC82-V-TVyPz_X5HSLjRW6s-w_M4dmRxLW3SwSD34-8FbbW7XB8zR2Xj1gpVXM_zF8w_wJQW4Rp4zB2SjPJjW1D-2vx8Y_WcDW7wX2-m8ptGp3W2BZ2Y75hVpKjW3WVzpl7H08QRW34y2GV7LVdXLW4n5jkB8ThXDfW7qCB5m61KzcpW1mK92j1FhpXZf6sjC1b04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"M0/c4sRD\">\r\n        <img alt=\"Evaluation_Association_Brands_Blog_Post (1)\" src=\"https://hs-505301.f.hubspotemail.net/hub/505301/hubfs/Evaluation_Association_Brands_Blog_Post%20(1).jpg?width=520&amp;upscale=true&amp;name=Evaluation_Association_Brands_Blog_Post%20(1).jpg\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"260\" align=\"middle\" class=\"stretch-on-mobile\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:300px;padding-bottom:20px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"300\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:300px\">\r\n<![endif]-->\r\n<div id=\"module_1749607916924_1\" class=\"hse-column hse-size-6\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_17496079169192\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17496079169192_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h3 style=\"font-size:17px; margin:0; font-weight:bold; line-height:125%\"><span style=\"font-size: 20px;\">Measuring brand health for lasting member value</span></h3>\r\n<div style=\"line-height:125%\">\r\n<div dir=\"auto\" data-message-author-role=\"assistant\" data-message-id=\"66e6ea22-114d-4647-88a7-bca24f60d3db\" data-message-model-slug=\"gpt-4o\" style=\"line-height:125%\">\r\n<p data-start=\"0\" data-end=\"214\" data-is-last-node=\"\" data-is-only-node=\"\" style=\"line-height:125%\">&nbsp;</p>\r\n<p style=\"line-height:150%\" data-start=\"0\" data-end=\"214\" data-is-last-node=\"\" data-is-only-node=\"\">For associations, brand health isn’t just about awareness; it’s about impact. Learn when and how to measure your brand to strengthen perception, prove value, and guide smarter decision-making.</p>\r\n</div>\r\n</div></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_17496079169193\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#ff2d0f\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; border-radius:0px; cursor:auto; background-color:#ff2d0f; mso-padding-alt:20px 26px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbvl3m2nnW8wLKSR6lZ3lgW4Mddgz8pC_M3W7byVSQ2cjNvSW6ygZym4CT_nyW3cy6R33Zhxz7W54NPJ41cMtlYW9lwTbV8tzF68W2MC2gX2N28TrW6Tm08X52lQT8W1pvBX264L_k0W3scbq_1VvZDrW8jtQfP8xx8M5W103fv18d0SzVW5ZBfGH5ZnYV1W3_mm4v2nDH19MtDYYVx6-l-V9M3Y_6ypRNLW4MVHyb39gcnZW8ffSFy561mZzW5hVQsr362pTrW2P4F2-5Mz3lrVhYqKd4tVmzWW3f-z-44FBzxDW89XHBy4bJRf_N44_rTCCfJ3kW3g0yLF5JVYW3W8fJcdv7sM32_W7xZB253cNbqnW6y07rw8Bc5k_dKczCC04\" target=\"_blank\" style=\"color:#00a4bd; font-size:14px; font-family:Arial, sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:20px 26px; display:block\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"lsef8BCp\">\r\n          <strong style=\"color:#FFFFFF;font-weight:bold;text-decoration:none;font-style:normal;\">READ MORE</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"module_1744377921294\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#FAFAFA; padding-bottom:20px\" bgcolor=\"#FAFAFA\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#FAFAFA\">\r\n      <tr style=\"background-color:#FAFAFA;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:300px;padding-bottom:20px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"300\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:300px\">\r\n<![endif]-->\r\n<div id=\"module_1744377921294_0\" class=\"hse-column hse-size-6\">\r\n  <div id=\"hs_cos_wrapper_module_174437792128618\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Helvetica, Arial, sans-serif; color:#151515; word-break:break-word; text-align:center; padding:10px 20px; font-size:0px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbvF3m2nnW95jsWP6lZ3mbW66qCLM6fX_c-W20gSxt3kYRlcVgj1sX5MnmGdW62qPX92Vr8CVVYjPY86zTQ7LW1Tyqkj9cWHT3VGbrfQ59VYjlW8cfJTv46BLNnW2Wm4nj7NvxFyW9hNFB348-MCLW2WBc9M2jVrhRW3B1WxL4fy8HFW4nLkTd5vp7q4W6lqlMm1Qtcb6VY2HLX1_NkSrW4dQ9Yx6xT_ZjVM_2gJ1s5x55W1_3fH91ngDkBW1zmqqd8zptS_W6WrSyB2xsQBsW1DhBxK6qzGDlW4hcWV271GnnCW8j-r638qlj8WW2Nnr7_7qZrTfW4YkDmM8xzx2NV452dR6m_Pk_W4PM8Lq2CdQhrW19h7MG1m6BspW5GnC9729BlBVW59Xntx6tcSWff40cNM404\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"fUxOetU/\">\r\n        <img alt=\"Pivot-2_1200x1200\" src=\"https://hs-505301.f.hubspotemail.net/hub/505301/hubfs/Pivot-2_1200x1200.jpg?width=520&amp;upscale=true&amp;name=Pivot-2_1200x1200.jpg\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"260\" align=\"middle\" class=\"stretch-on-mobile\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:300px;padding-bottom:20px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"300\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:300px\">\r\n<![endif]-->\r\n<div id=\"module_1744377921294_1\" class=\"hse-column hse-size-6\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_174437792128619\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_174437792128619_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h3 style=\"margin:0; font-size:20px; line-height:125%\">When commercial tech goes defense</h3>\r\n<div style=\"line-height:125%\">\r\n<div dir=\"auto\" data-message-author-role=\"assistant\" data-message-id=\"fb62dc7e-6d1f-4f1f-a0e6-a9b2d3f7139d\" data-message-model-slug=\"gpt-4o\" style=\"line-height:125%\">\r\n<p data-start=\"634\" data-end=\"866\" style=\"line-height:125%\">&nbsp;</p>\r\n<p style=\"line-height:150%\" data-start=\"634\" data-end=\"866\">Commercial innovators entering the defense market face a unique branding challenge: balancing credibility with agility. Learn how strategic positioning helps dual-use companies build trust and compete with confidence.</p>\r\n</div>\r\n</div></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_174437792128620\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#ff2d0f\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; border-radius:0px; cursor:auto; background-color:#ff2d0f; mso-padding-alt:20px 26px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbvF3m2nnW95jsWP6lZ3lQW3gqt8C3LchDnW1qddLK5Th2kfW71Dhl1645S1bW4qJ1vq4WvW8GVvdZNw7dGgJtW1MQ01h3LLPK8W8g8hl-5bhWgsW8Y8BWz4S_D5MW8P4PwT48yf1GW8XY_X283z59yN2K6T1-C4t-BW7C0mXq3sj1JPW4-4MpR5n8-2SV6vw0V4Nl7SzW37LTjM8JYRqwW7hlpFC7LLX6jW4PNbX-5Rh-XfW2cpvm76tQf-tW8jDTDk7c5XJcW6jXDbS77C292W4PM6NL1z7S-TW2hbDmw7kZtZSV892_x5cfK2HW7bCpwX174zZlW80Y-kc2zWD_9W1X24tq3kX7w7W2qBTrT5XkSqMW5rJ9Kd6pSsryW7zlDN68MYdRpVpC-H8320Xljf7wkzLK04\" target=\"_blank\" style=\"color:#00a4bd; font-size:14px; font-family:Arial, sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:20px 26px; display:block\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"zp9SOeVm\">\r\n          <strong style=\"color:#FFFFFF;font-weight:bold;text-decoration:none;font-style:normal;\">READ MORE</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"module_1744377826116\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#FAFAFA; padding-bottom:20px\" bgcolor=\"#FAFAFA\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#FAFAFA\">\r\n      <tr style=\"background-color:#FAFAFA;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:300px;padding-bottom:20px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"300\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:300px\">\r\n<![endif]-->\r\n<div id=\"module_1744377826116_0\" class=\"hse-column hse-size-6\">\r\n  <div id=\"hs_cos_wrapper_module_174437782611115\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Helvetica, Arial, sans-serif; color:#151515; word-break:break-word; text-align:center; padding:10px 20px; font-size:0px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbv23m2nnW7Y8-PT6lZ3n5W67zCVn27bdhyW3cVLVL7zG9hTW5TV_VN3DKRbDVF1Skk5x78GrW3jfv1p5Tg0blN4ZSHmhN3hZtW6DBMLr4zLBQsW3tBZD81Z02w3W2jjCxz2VFVcSW3ySVfK5mYRHrW3GDZkX2zMKh8W6QTlJp15DNGWW4rXd9m38VC6rW81WznN3HP-80W4b4dwS1GKYkLW3nVF5j99GPBBW6l7cVP7JzTDzW3j1yZs3h8NfXN7YQBrC-qkHbW81J-tF5MYYjYW7mgt7M4W91f2N2-ZsLBT-bPDW2T8SF053mS7qW3w-cpq24Xf71W77Wt9S62V8lDW2bvGs11vyY-Rf6zmNVP04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"yWUvukY2\">\r\n        <img alt=\"Brand_Measurement_Dilemma_Blog_Post (1)\" src=\"https://hs-505301.f.hubspotemail.net/hub/505301/hubfs/Brand_Measurement_Dilemma_Blog_Post%20(1).jpg?width=520&amp;upscale=true&amp;name=Brand_Measurement_Dilemma_Blog_Post%20(1).jpg\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"260\" align=\"middle\" class=\"stretch-on-mobile\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:300px;padding-bottom:20px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"300\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:300px\">\r\n<![endif]-->\r\n<div id=\"module_1744377826116_1\" class=\"hse-column hse-size-6\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_174437782611116\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_174437782611116_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h3 style=\"margin:0; font-size:20px; line-height:125%\">The brand measurement dilemma</h3>\r\n<div style=\"line-height:125%\">\r\n<div dir=\"auto\" data-message-author-role=\"assistant\" data-message-id=\"fb62dc7e-6d1f-4f1f-a0e6-a9b2d3f7139d\" data-message-model-slug=\"gpt-4o\" style=\"line-height:125%\">\r\n<h3 style=\"margin:0; font-weight:normal; font-size:15px; line-height:150%\" data-start=\"0\" data-end=\"178\">&nbsp;</h3>\r\n<h3 style=\"margin:0; font-weight:normal; font-size:15px; line-height:150%\" data-start=\"0\" data-end=\"178\">B2B Tech CMOs know brand matters, but proving its value is another story. Find out how measuring brand health can turn perception into profit and elevate brand from a cost center to a growth engine.</h3>\r\n<span style=\"font-weight: normal;\"> </span></div>\r\n<span style=\"font-weight: normal;\"> </span></div></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_174437782611117\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#ff2d0f\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; border-radius:0px; cursor:auto; background-color:#ff2d0f; mso-padding-alt:20px 26px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbv23m2nnW7Y8-PT6lZ3myN75DClkH64QYW4r6wpS10HzYQW4dWtHH7bNnCYW41GMzx34pztqW6Fp9828lVb4vVWJttH69Y9L8Vnrcxn1HqL3MW3rBc0T5nm5_tW4DxVWw69-F_tW8_Rnjn5kWcsmW80dz379108L9W7RFT-c1YmGX1W6rXsJv2RLMcNW1XdSJF1dfqBXW5y7F7x2z-ZS4W3pfpyM10WN3YVSGQZx6F_HlfV60VWp7gfRk0V9v-SD4BFHBgW2_FPR72ws2tQTyRTD8gSDQFW1xYz8D306nYmW4gDXB06xMddhW8t_gD94MVpsnW73HXcG2_hTPZN2jRDjyZj1H_f3pPmQF04\" target=\"_blank\" style=\"color:#00a4bd; font-size:14px; font-family:Arial, sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:20px 26px; display:block\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"BjNhKcsw\">\r\n          <strong style=\"color:#FFFFFF;font-weight:bold;text-decoration:none;font-style:normal;\">READ MORE</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section_1760114056994\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#FAFAFA\" bgcolor=\"#FAFAFA\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#FAFAFA\">\r\n      <tr style=\"background-color:#FAFAFA;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column_1760114056994_0\" class=\"hse-column hse-size-12\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_17601140569541\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table role=\"none\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"vertical-align:top\" width=\"100%\">\r\n  <tbody><tr>\r\n    <td align=\"center\" style=\"font-family:Helvetica, Arial, sans-serif; color:#151515; font-size:0; word-break:break-word\">\r\n      <p style=\"font-size:1px;border-top:1px solid #000000;width:50%;margin:0 auto;\"></p>\r\n      <!--[if mso]>\r\n        <table role=\"none\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-size:1px;border-top:1px solid #000000;width:280px;\">\r\n          <tr>\r\n            <td style=\"height:0;line-height:0\">&nbsp;</td>\r\n          </tr>\r\n        </table>\r\n      <![endif]-->\r\n    </td>\r\n  </tr>\r\n</tbody></table></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_17601140644432\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17601140644432_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h2 style=\"margin:0; line-height:125%; font-family:Helvetica, Arial, sans-serif; font-size:30px\">We\'re hiring a technical project manager!&nbsp;</h2>\r\n<h3 style=\"font-size:17px; margin:0; line-height:125%\">&nbsp;</h3>\r\n<p style=\"line-height:125%\">Grafik is looking for a <span style=\"color: #ff2d0f;\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbvl3m2nnW8wLKSR6lZ3mDW7R0jSG250jH-W5r9k4b2-7SMvW2Scrrp6hrPwjN6LQghDqhHCNW5v8QcT56GYq4W8PYqjr7wNxMJW6htvdk1HZK0_W7cxnSC6yQNvjW3_TFGT5zVW0sW4tNCTm8WnKKBW7wfX-T4GzVW4N31LbsP27DFzW7mKgRg8Q33PnW7nVP7D4JPgVWN8GlJC85wd0tW5NTwD44qk-rCN63Ds84TnwbTW2hhM_v4Bl596W5XK88Z8KL7MTW4wZzFv3cn-40W62kMwC7p0cRxW3T3XbG4qqnJtW6XvnFl6-_ks5VmLbd_9lRhwwW14qZ0Y8K-0JbW5BKnGn1g-ySXW196kTH8v5crpVtZ0ry2S3XHSf6LMsbn04\" style=\"text-decoration:underline; color:#ff2d0f\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"6tqqMzwo\" target=\"_blank\">Project Manager</a></span> who thrives at the intersection of strategy, creativity, and technology. If you have experience guiding web builds and digital campaigns from kickoff to launch and love collaborating with designers, developers, and strategists, you’ll fit right in. This hybrid role is based in Tysons, VA.</p></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_17601180818641\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#ff2d0f\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; border-radius:0px; cursor:auto; background-color:#ff2d0f; mso-padding-alt:20px 26px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbvl3m2nnW8wLKSR6lZ3l5W52LCqn3Mj625W17hd_R2pTkSRW8XY1KK8NSvbtW1XDRMm35G9P4W2-c0xt16r-SfW26QL3t9bGt-tV79F7g400cJsW35hlN18q6pxwW5KL8WF68xsdbV-kxPK6712TmW1Bd43Q5tk5NrW7pGWDK1NgqsFW9gTwg22CTPtbVsvMmP2R2WJwW311BMB3Qdgn1MzgK-wTrNrFN7cHmzzkmCR4W7Q5kTW6mlSvJW6kktd481VpYMTxF2M7tT5tvW8l0HSs1T_qkQW6rZXbn2Nd0VRW26GMMz3qtWh8W3pjDrM7ccqvBV8F7rr24XRtlW1KwjFZ7_Zb2rW87j4Kw3QMhzjW79MR7T4wpsc_f7Tl2K404\" target=\"_blank\" style=\"color:#00a4bd; font-size:14px; font-family:Arial, sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:20px 26px; display:block\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"wpI0RPb/\">\r\n          <strong style=\"color:#ffffff;font-weight:bold;text-decoration:none;font-style:normal;\">APPLY NOW</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section_1744378936328\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container hse-no-stack-row\" style=\"min-width:280px; max-width:600px; margin:0 auto; border-collapse:separate; display:table; width:100%; background-color:#151515; padding-top:10px\" bgcolor=\"#151515\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" class=\"hse-no-stack-row\" width=\"600\" bgcolor=\"#151515\">\r\n      <tr style=\"background-color:#151515;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:300px;padding-top:10px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"300\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:300px\">\r\n<![endif]-->\r\n<div id=\"column_1744378936328_0\" class=\"hse-column hse-size-6 hse-no-stack\" style=\"display:table-cell; vertical-align:top; max-width:300px; width:50%\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"table-layout:fixed\"><tbody><tr><td style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_174437895484027\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_174437895484027_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h3 style=\"font-size:17px; margin:0; line-height:125%\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbt83m2nnW69sMD-6lZ3nHW6H15SC7MyvQDN3ZY1QJJ-_7WW9jX9ln1br2jBW7sJhL-4tVmlPMnQtNSq1wKFVry5qX1GFVDlW1P7rp71Tx6-HW55sZ9Z6467CCW14yKnk7sx9q6W5Mz0_P8RStqkW4L30cS5n65x7W3-mNhn7-bmW3W4-xL735nm_YwW9kNNYL7VpQntVbj8XK57zbpVW25D3tK5D5WR8W4WDMb45l7DlgW867crx6sc4fYW3qYspZ2rDQmpF26FxRzhtVXf5pdJQP04\" rel=\"noopener\" style=\"color:#151515; text-decoration:none\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"vvipHQuv\" target=\"_blank\"><span style=\"color: #ffffff;\">Grafik.agency</span></a></h3></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:300px;padding-top:10px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"300\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:300px\">\r\n<![endif]-->\r\n<div id=\"column_1745512888290_0\" class=\"hse-column hse-size-6 hse-no-stack\" style=\"display:table-cell; vertical-align:top; max-width:300px; width:50%\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"table-layout:fixed\"><tbody><tr><td style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_174437918732829\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_174437918732829_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"text-align:right; line-height:175%\" align=\"right\"><span style=\"color: #ffffff;\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbtM3m2nnW7lCdLW6lZ3lPW2PYVR-965QvVW95lDzP7sQV6CW57Nts84G4-kLW7HGJ0r42MtPNW6m5CHg8BgdqFW3zHDMw44rwCzW8MP06694-vmyW91m9wN2sk9ybW1p5gSY4QgNqQW5VTK8695KZ8nW3RWHtW1VsDMVW8ZN5dn4khzzGW2W1jF87DH6gSW6bttmn1TQXypW4K4dJ84lTJLRN6YWKcqBqx74N86tFTw-kG8mW4RyB5Y88YLXkW2SXPtZ6mXv4MW5swZML90lrx5MtnHf2SySfFW7y21hx66qnddW91nZ9f6Zh71XW5ZSkpQ4W8d6wf4v-JY004\" style=\"text-decoration:underline; color:#ffffff\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"pBQ+yHPN\" target=\"_blank\"><span style=\"color: #ffffff;\">LinkedIn</span></a></span></p>\r\n<p style=\"text-align:right; line-height:175%\" align=\"right\"><span style=\"color: #ffffff;\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbtM3m2nnW7lCdLW6lZ3mtW598lcQ6xvtbDW3bJzqF6gC3cXW2-jpDG7hBDc1W7SzxWz76fXfmVg1pSP6WYLJwW6MZjvM2hJ3LyW88hSBW3jftw4W4qFJvK4XpchhW196cmV7RLh-SVSfKw88WvnK6N6wYB8T2zgGXW3PYkwD8dM2RvW4NZgxK2fTH-dW3h8jvk4YZ2xyW4MBqTv6GWHh1VlhYrb3yM1LtW1PTjRb3X7rK_W2F9_6p7Qgg52W534dGr4TLd3jW8bZgS01sz31-VRb9ZD7ZNG4DN2TZV7LtJV3-VKMnzy6XqNfCW7jX0wZ5G3sjWdyNmZP04\" style=\"text-decoration:underline; color:#ffffff\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"pfSNRZcW\" target=\"_blank\"><span style=\"color: #ffffff;\">Instagram</span></a></span></p>\r\n<p style=\"text-align:right; line-height:175%\" align=\"right\"><span style=\"color: #ffffff;\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbtM3m2nnW7lCdLW6lZ3myW4qNJVd15WvF9W1dLN-652pNrJW8QKPWJ43LP3-N3q1XmL21SgMW6kS8h35rkQl9W3mwHSf1zRp_CW3WCGKc7LBR4lVpFqhS1qFR-gVP_HDT6Gq-B_N1gs6Q6BK6wJN74hL_yv6QBRV2Y78Q2-w1bpW90Vsz01RTNqGW6HWvVT3ZgmmQVVVhHp7SGWyMV6B_pp36rlrbW1T3rxb2WwzvyW5CFFp31tjQD-W1YBsZ492HVTwW2d8n_s6Y9GqNW1q2H2q2H7M6vW84mHVq2f9DhvW5CdB_x3ccPQWW4_JBXs48bS1kf3r9P0W04\" style=\"color:#ffffff; text-decoration:underline\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"fEH59q0m\" target=\"_blank\"><span style=\"color: #ffffff;\">Bluesky</span></a></span></p></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section_1744379285686\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#151515; padding-bottom:30px; padding-top:30px\" bgcolor=\"#151515\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#151515\">\r\n      <tr style=\"background-color:#151515;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-bottom:30px; padding-top:30px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column_1744379285686_0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module_174437930076231\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Helvetica, Arial, sans-serif; color:#151515; word-break:break-word; text-align:center; padding:10px 20px; font-size:0px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbt83m2nnW69sMD-6lZ3llW3TFHf31H37xCW3yfQwx6LHDPXW2hmQSM5wtc4YW4Mbb2k6NQ4vZW6zlSJ-8bdq6JVWXDTP8V_4b5W8PWVHF7KX4cMW6zg4sR7pwwqHW3mNhgn5SVBKvW6vsW8g6cW_FqW2fjLBq711NGGW8dtSh37pHmXYW9d83Fv7gGQKNW1W6dVD7P7CydW2GfQy81Jy_0gVbpvJG29WcgxN61PtNPj_fzzW813Gz02ksPSPN2phHpDXQFWQN8KD_Y0YZm8gf7-LxSb04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"2\" data-hs-link-id-v2=\"+laaOanV\">\r\n        <img alt=\"grafik-roundup-footer-logo\" src=\"https://hs-505301.f.hubspotemail.net/hub/505301/hubfs/grafik-roundup-footer-logo.gif?width=1120&amp;upscale=true&amp;name=grafik-roundup-footer-logo.gif\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"560\" align=\"middle\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section_1744379431619\" class=\"hse-section hse-section-last\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#151515; padding-bottom:10px\" bgcolor=\"#151515\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#151515\">\r\n      <tr style=\"background-color:#151515;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-bottom:10px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column_1744379431619_0\" class=\"hse-column hse-size-12\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_174437944185634\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_174437944185634_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"line-height:125%; text-align:center\" align=\"center\"><span style=\"color: #ffffff;\">© 2025&nbsp;Grafik. All rights reserved.</span></p></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_17455084551821\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table role=\"presentation\" class=\"hse-footer hse-secondary\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family:Arial, sans-serif; font-size:12px; line-height:135%; color:#23496d; margin-bottom:0; padding:0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\" valign=\"top\" style=\"font-family:Helvetica, Arial, sans-serif; font-size:15px; color:#151515; word-break:break-word; text-align:center; margin-bottom:0; line-height:135%; padding:10px 20px\">\r\n          <p><span style=\"color: #ffffff;\">Grafik</span>, <span style=\"color: #ffffff;\">8045 Leesburg Pike</span>, <span style=\"color: #ffffff;\">Suite 503</span>, <span style=\"color: #ffffff;\">Vienna</span>,<span style=\"color: #ffffff;\">VA</span>,<span style=\"color: #ffffff;\">22182</span>,<span style=\"color: #ffffff;\">United States</span>,<span style=\"color: #ffffff;\"></span></p>\r\n<p><span style=\"color: #ffffff;\"><a href=\"https://hs-505301.s.hubspotemail.net/hs/preferences-center/en/direct?data=W2nXS-N30h-RYW3M87bx2-F7L-W2xNvlF45q8hJW3GRhbf2YLHN7W1XsJb62sJPWNW2qTQgK2PMVq_W45xtmY4hg8Y6W1X1VY92zG8L2W45Qv674rGRK6W4kCK4R2xN9k6W3VSypJ47NxH9W25kwPM1N591PW1Y__5f4kJBbMW3Xv-RD4mrL_5W47lMmC2YgjJmW3_Hc0n3C6YyyW3_rHkl2MPPYHW1Xf53f38hFPsW1Xtccl3SKDK4W3VxTGD4rlm1jW4t2GRJ2qQQhpW2HtP7l4kqJhlW4mnpzY1Bxh75W43HCP13VKWCSW3M41fh36d4QfW2w16zh1_rxvFW3X-NDR1_r4fTW2YHPBq45TRJGW4rg7z72MqqXxW45G6PS4fcpNMW22VzRR3_TBpKW3gvCWZ2nPQBwW30nzN31Vpb0FW1Lq1JB1NkD9xW1Zs6x_43wQs_W43qSVj4tv1p2W1LCqVD1NdfsYW4knzPT3gqvryW2RhMHh343Zl8W4pJd232PQWmJW23rsl_4hqv2JW2KXdDj3M4Q6GW1Lytg62r0djsW3QQQBF2YtxWgW3XxdfM3dwJ2FW2t01j-3jtxTmW2Rrhk-3ZYZ6LW1BtPj04hy7jWW4hrfSR4mC3tjf2HZwCN04&amp;utm_source=hs_automation&amp;utm_medium=email&amp;utm_content=386447417&amp;_hsenc=p2ANqtz-_LRPDATTupCIndGm6cgQWL-P4IBkEzu98mUB_dGN-7qqlY0vJDc_xQY8OXvXmGiapYKL5zwobgQyzShL_Uj9NE8q2X0w&amp;_hsmi=386447417\" style=\"color:#ffffff\" data-unsubscribe=\"true\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"SFRZzEXk\" target=\"_blank\">Unsubscribe</a> <a href=\"https://hs-505301.s.hubspotemail.net/hs/preferences-center/en/page?data=W2nXS-N30h-RYW3M87bx2-F7L-W2xNvlF45q8hJW3GRhbf2YLHN7W1XsJb62sJPWNW2qTQgK2PMVq_W45xtmY4hg8Y6W1X1VY92zG8L2W45Qv674rGRK6W4kCK4R2xN9k6W3VSypJ47NxH9W25kwPM1N591PW1Y__5f4kJBbMW3Xv-RD4mrL_5W47lMmC2YgjJmW3_Hc0n3C6YyyW3_rHkl2MPPYHW1Xf53f38hFPsW1Xtccl3SKDK4W3VxTGD4rlm1jW4t2GRJ2qQQhpW2HtP7l4kqJhlW4mnpzY1Bxh75W43HCP13VKWCSW3M41fh36d4QfW2w16zh1_rxvFW3X-NDR1_r4fTW2YHPBq45TRJGW4rg7z72MqqXxW45G6PS4fcpNMW22VzRR3_TBpKW3gvCWZ2nPQBwW30nzN31Vpb0FW1Lq1JB1NkD9xW1Zs6x_43wQs_W43qSVj4tv1p2W1LCqVD1NdfsYW4knzPT3gqvryW2RhMHh343Zl8W4pJd232PQWmJW23rsl_4hqv2JW2KXdDj3M4Q6GW1Lytg62r0djsW3QQQBF2YtxWgW3XxdfM3dwJ2FW2t01j-3jtxTmW2Rrhk-3ZYZ6LW1BtPj04hy7jWW4hrfSR4mC3tjf2HZwCN04&amp;utm_source=hs_automation&amp;utm_medium=email&amp;utm_content=386447417&amp;_hsenc=p2ANqtz-_LRPDATTupCIndGm6cgQWL-P4IBkEzu98mUB_dGN-7qqlY0vJDc_xQY8OXvXmGiapYKL5zwobgQyzShL_Uj9NE8q2X0w&amp;_hsmi=386447417\" style=\"color:#ffffff\" data-unsubscribe=\"true\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"qjPJqCop\" target=\"_blank\">Manage Preferences</a></span></p>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div></div>\r\n          </td>\r\n        </tr>\r\n      </tbody></table>\r\n    </div>\r\n  \r\n<img src=\"https://c3chr04.na1.hubspotlinks.com/Cto/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnW1PJbdy8fYGwf1z2\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"display:none!important;min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important\"></body></html>','The latest insights and client stories from Grafik, a branding and marketing agency that helps inspire new possibilities.\r\n\r\nView in browser (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbt85jMY8W69t95C6lZ3m_VX_FmW6Jj1DWW8z6Qdh67xypLW6h2lJg48qL_JW6-7P151gMR1gW2NxWtN7bD-gGVchQHT6bSRBTW5TR3NT8tzwbkW7sRPDV7R_QssW3WWV0m2rnzlcW2zZMSw7_3sbPW60bLXy5z137JW4J31mq68tn-jW85QsD45_XGnjN8QWcyQmRPZDW4vmvFw4Zy25SW3vJJcv4ztWJgN4RYF9hJ976zW8pVz5815DHlSW56vGsz70wsy3N4hfs-ZR51btW6cGRH540m3vrW6TbYpW2qG_rgW55XQ1R31H2CwW37xJq33bPn_cW4v1d2439qSCPW28bq4n8mcG2lW9cspfR2hz_HtW2mkbQz4pYFP-W5scFCY5pxxs4VP8Dfk6J3KY3W2NPl0P6FZ3ZHW7Hw3Xc7wSzp1N2ytDdmsXPkTN89d_7WYhnjBW6bKxds6FQr1qW7YzPNM6KHHV_f1dJLWd04 )\r\n\r\nCanopy Header (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbv23lcq-W7Y8-PT6lZ3lKW8xvqdH5TmPfPW3NyySP8V7Sk7W2W2B6P4S2B39W5jtdCj548LvlW8xVVhC6xMz7-W7P1f165gLvM1W8lqHcB1KW0DWW2PGnwv8TDsfZW7007fm44hpq-W4WFnDv6jGV-5W8ff8GL1M0zmhW33g_g94zGpGzW3KsVqj4XTwBjW2HsQwN93-BYxW78dDxq3-c-RRW6kKqt-1vR0tPM3ChYkk1NH3W5GkM816N3SWCN526Ll4tLmv0W5N7FL_8x6bHyN7T7wmmm3QgyW5YdHLS18MXcTW8YMBvt4dN11JN74_n8RGtYlWM8c0SFHWMLtW7CcCZw7-P27Qf4qsk5T04 )\r\n\r\nEmpowering employment for neurodivergent individuals\r\n\r\nAs conversations about inclusion evolve, the Canopy Neurodiversity Foundation is redefining how organizations understand and support neurodiverse talent in Washington State. Originally known as the Washington Neurodiversity Project, the organization came to Grafik to launch its brand and broaden its impact. Together, we developed the new name Canopy, established a clear brand strategy, and created a distinct visual identity and website that communicate its mission with clarity and confidence. Centered on the mantra Empowering Employment, the new brand unites a bold logo system, vibrant color palette, and accessible digital experience that bring Canopy’s vision into focus.\r\n\r\nRead the full case study (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbv23lcq-W7Y8-PT6lZ3lKW8xvqdH5TmPfPW3NyySP8V7Sk7W2W2B6P4S2B39W5jtdCj548LvlW8xVVhC6xMz7-W7P1f165gLvM1W8lqHcB1KW0DWW2PGnwv8TDsfZW7007fm44hpq-W4WFnDv6jGV-5W8ff8GL1M0zmhW33g_g94zGpGzW3KsVqj4XTwBjW2HsQwN93-BYxW78dDxq3-c-RRW6kKqt-1vR0tPM3ChYkk1NH3W5GkM816N3SWCN526Ll4tLmv0W5N7FL_8x6bHyN7T7wmmm3QgyW5YdHLS18MXcTW8YMBvt4dN11JN74_n8RGtYlWM8c0SFHWMLtW7CcCZw7-P27Qf4qsk5T04 ) to see how Grafik helped Canopy build a brand that inspires understanding, opportunity, and inclusion.\r\n\r\nCONTINUE READING\r\n(https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbv23lcq-W7Y8-PT6lZ3lKW8xvqdH5TmPfPW3NyySP8V7Sk7W2W2B6P4S2B39W5jtdCj548LvlW8xVVhC6xMz7-W7P1f165gLvM1W8lqHcB1KW0DWW2PGnwv8TDsfZW7007fm44hpq-W4WFnDv6jGV-5W8ff8GL1M0zmhW33g_g94zGpGzW3KsVqj4XTwBjW2HsQwN93-BYxW78dDxq3-c-RRW6kKqt-1vR0tPM3ChYkk1NH3W5GkM816N3SWCN526Ll4tLmv0W5N7FL_8x6bHyN7T7wmmm3QgyW5YdHLS18MXcTW8YMBvt4dN11JN74_n8RGtYlWM8c0SFHWMLtW7CcCZw7-P27Qf4qsk5T04 )\r\n\r\nTHE LATEST\r\n\r\nEvaluation_Association_Brands_Blog_Post (1) (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbvl3lcq-W8wLKSR6lZ3mwN5C9-mzNZk3mW6k-zgD9fKF5tW9h5Vg74zsRXPW6FDtLz5-9CpsN46kmdvxB0GCW5gPmr17MhK34W85x9gY6dNSSLW8CXh_78NnMccW435Wt_45YKZZW4NcP1011rl7QW4sXM9h31DM8QN8MS_YshFWffW740F4v4Zj9CfW7Y1LmT1YSKFGN91MSdxp4yvfW2M2FZL6DVPMRW8fczNz223T9CW67KMrp35bbLbW8b300R97s9fvW4RpX0S4JCf_4N3d8Rb-b0Bf6VqyQmJ9btz91W5brLm37jw8TmW7nfZBH7sWxfJW4vSnGc46Lnf4W3S266P6lLKMqW63gC1v4S8s2hW7LNnXk823P4Rf5xJQ5g04 )\r\n\r\nMeasuring brand health for lasting member value\r\n\r\nFor associations, brand health isn’t just about awareness; it’s about impact. Learn when and how to measure your brand to strengthen perception, prove value, and guide smarter decision-making.\r\n\r\nREAD MORE\r\n(https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbvl3lcq-W8wLKSR6lZ3mwN5C9-mzNZk3mW6k-zgD9fKF5tW9h5Vg74zsRXPW6FDtLz5-9CpsN46kmdvxB0GCW5gPmr17MhK34W85x9gY6dNSSLW8CXh_78NnMccW435Wt_45YKZZW4NcP1011rl7QW4sXM9h31DM8QN8MS_YshFWffW740F4v4Zj9CfW7Y1LmT1YSKFGN91MSdxp4yvfW2M2FZL6DVPMRW8fczNz223T9CW67KMrp35bbLbW8b300R97s9fvW4RpX0S4JCf_4N3d8Rb-b0Bf6VqyQmJ9btz91W5brLm37jw8TmW7nfZBH7sWxfJW4vSnGc46Lnf4W3S266P6lLKMqW63gC1v4S8s2hW7LNnXk823P4Rf5xJQ5g04 )\r\n\r\nPivot-2_1200x1200 (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbvl3lcq-W8wLKSR6lZ3pzW86T4QK7GVD9lN5Qz4FVrS_PGW7gPh7783v__MVsc82v4nY3FqW97q0Mv5_KL4ZW4H_2TQ55nMjlW8436P13kxK5pW5R6z463tpS30W2gp4ZB3CkkCxW3xTV0-5JBwvqW8skWfc8cKLcZW4ZgtDW7V1M_FW39Nn706nSdYBW1YTjWy3002pBW2QF8zw3cXnthW2QxTJb4DSss6W3QhX4r4Z-b3jW44Z9LQ8QxC_7W1ghcyF4Nt5kHW8zH7rx8xcQmvW53SXNk1-DsdJN6PRz0kgcnb9W8DbzSv3PSh4ZW3BT9jW9lrvnbW9kH_v48pnMm6W4c7Hhc463FfdW2yR8jQ4HSYxMW1db1_b3dlzYPf82B2Wj04 )\r\n\r\nWhen commercial tech goes defense\r\n\r\nCommercial innovators entering the defense market face a unique branding challenge: balancing credibility with agility. Learn how strategic positioning helps dual-use companies build trust and compete with confidence.\r\n\r\nREAD MORE\r\n(https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbvl3lcq-W8wLKSR6lZ3pzW86T4QK7GVD9lN5Qz4FVrS_PGW7gPh7783v__MVsc82v4nY3FqW97q0Mv5_KL4ZW4H_2TQ55nMjlW8436P13kxK5pW5R6z463tpS30W2gp4ZB3CkkCxW3xTV0-5JBwvqW8skWfc8cKLcZW4ZgtDW7V1M_FW39Nn706nSdYBW1YTjWy3002pBW2QF8zw3cXnthW2QxTJb4DSss6W3QhX4r4Z-b3jW44Z9LQ8QxC_7W1ghcyF4Nt5kHW8zH7rx8xcQmvW53SXNk1-DsdJN6PRz0kgcnb9W8DbzSv3PSh4ZW3BT9jW9lrvnbW9kH_v48pnMm6W4c7Hhc463FfdW2yR8jQ4HSYxMW1db1_b3dlzYPf82B2Wj04 )\r\n\r\nBrand_Measurement_Dilemma_Blog_Post (1) (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbtM3lcq-W7lCdLW6lZ3q0N5pb7bxyvd9xW1tstM21PCvKlW5n_FhH2Xh_PWW7YPQv941pLyxW6YmDy41YPGBtW5mrdFz46g7x2W1YXt941yJShSW37zlRj5Xpg1qW4RCdlc3WHh_JVw1y4d4d0J4gW4zkVhH7qdMf7W87TgPV5ws37tN1BLnGPqXPmlW6j6s0S7Q0dlnVs-GXT72htjsW8QgZYP2T0J70W5_VJjR2tJDYSW1nwnhk5Q8PBbW1SLTgX2ggV51W5-D01K5M5069N7ymdkp9m1cjVhqB5p274y4NW56Xy-G2VNspTW4H12nB2mJjtXf8Kztmb04 )\r\n\r\nThe brand measurement dilemma\r\n\r\nB2B Tech CMOs know brand matters, but proving its value is another story. Find out how measuring brand health can turn perception into profit and elevate brand from a cost center to a growth engine.\r\n\r\nREAD MORE\r\n(https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbtM3lcq-W7lCdLW6lZ3q0N5pb7bxyvd9xW1tstM21PCvKlW5n_FhH2Xh_PWW7YPQv941pLyxW6YmDy41YPGBtW5mrdFz46g7x2W1YXt941yJShSW37zlRj5Xpg1qW4RCdlc3WHh_JVw1y4d4d0J4gW4zkVhH7qdMf7W87TgPV5ws37tN1BLnGPqXPmlW6j6s0S7Q0dlnVs-GXT72htjsW8QgZYP2T0J70W5_VJjR2tJDYSW1nwnhk5Q8PBbW1SLTgX2ggV51W5-D01K5M5069N7ymdkp9m1cjVhqB5p274y4NW56Xy-G2VNspTW4H12nB2mJjtXf8Kztmb04 )\r\n\r\nWe\'re hiring a technical project manager!\r\n\r\nGrafik is looking for a Project Manager (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbv23lcq-W7Y8-PT6lZ3q3VhXX4w5t4wcjW6TMZr21Z8SnFN6qRXgn3wzDNW3D9QRv5jXp11W1gdsNG6Vlm4dW74gX1g6PxWj9V5L1Lp2Xxb5-W3Lxcl48SDS_GW3Q0Kdp4-4mWBW58M5v82snsJQW1P8phl6pbVzgW4GhbND3RN5WtW1tl97G3zp6bsW2_WM6q917Y-rN18C5zS__znxN2t4_JTRLtq9VF37wM5PZ94TW6Nn0ww3kNv3vW67LSsl13vSyJW3KGT1c87nM3BW1G3cRd5fM0Z2W3qQZyy1YKkqBW8fPyhs6rlBRRW5ZcqBr7TF_cSN1N83Wfj3FvwW2c0jmz8h1xNYf6HPpLF04 ) who thrives at the intersection of strategy, creativity, and technology. If you have experience guiding web builds and digital campaigns from kickoff to launch and love collaborating with designers, developers, and strategists, you’ll fit right in. This hybrid role is based in Tysons, VA.\r\n\r\nAPPLY NOW\r\n(https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbv23lcq-W7Y8-PT6lZ3q3VhXX4w5t4wcjW6TMZr21Z8SnFN6qRXgn3wzDNW3D9QRv5jXp11W1gdsNG6Vlm4dW74gX1g6PxWj9V5L1Lp2Xxb5-W3Lxcl48SDS_GW3Q0Kdp4-4mWBW58M5v82snsJQW1P8phl6pbVzgW4GhbND3RN5WtW1tl97G3zp6bsW2_WM6q917Y-rN18C5zS__znxN2t4_JTRLtq9VF37wM5PZ94TW6Nn0ww3kNv3vW67LSsl13vSyJW3KGT1c87nM3BW1G3cRd5fM0Z2W3qQZyy1YKkqBW8fPyhs6rlBRRW5ZcqBr7TF_cSN1N83Wfj3FvwW2c0jmz8h1xNYf6HPpLF04 )\r\n\r\nGrafik.agency (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbt83lcq-W69sMD-6lZ3kRW7zMjq81BMzDnV4_4TY5mnPwVW52JzK51BqMbXN1K9jTHhw9ZDW2gkwvn8Vhq07W5-dpg41VWNKSW1jmtG813N5_bW2d1YQ73H5YXXW1bvtqF7rdYNLW9j2kVd325MCXW1cwvJR5y0FznW3CzPrW1Y6Jm9W2n-sYh3QD2lBW3C0xn575FdNkVsK48g6ykQ9wW9f0m4f23FV0PW5wgz7H5gqLBjW756c1m4D5rkpW4VJBkH45n6SrW6Ytjxw2l27Fvf3-Cq9F04 )\r\n\r\nLinkedIn (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbts3lcq-W6N1vHY6lZ3p7VDFFTk663c8MW3TYtRX4KyKdXW20lqR75VN2swW7LlLsp112rQJW2mNYwK2h-3NBN1x70msgGWgZN1x7FMlmwGYyW8VP0-L1kjksHW9948Jm7SZXJLW5BfvFq52w14FW2yKZ1T6Mf3-HW4tnx9x4XDXgnW1Gk6Hm5m_n0WW2NmxJG75lT4sW4gsmZm2HyYBrVH4HPK2fyrlPW5Z37Hw1KGjXTW3QmDPx8VC_0lW4TP7zG4kVGRtW7q0sdn3C9qRXW4KvtbQ6WjHFzN4KW3SJRM_rNf2-Fm6C04 )\r\n\r\nInstagram (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbts3lcq-W6N1vHY6lZ3lrW7W5Vrg47mdthW17sdB28MvTtVW6Q9zdr5McDRGN6TNSvWFTmCYW45XWfH7TdXPbW1CmK0-4v0507W39vQCJ4ddXXDN3gzShWw9y7rW88Z_lT7Wn3M2W7DqX8H7DKFhvW8g8gbp8ntgzmW2NkC551cskDlW1pVKbV3Fl59CW5mDsSZ5QtVSHVyDXh2646P-jW2J8Dg42CGVXlW6rSLT32bvl13W1JfRLv7SDFc4W4kpVg34pvN55W12_l1V2bdbVWMwSlKbjsGnTW6jHZfs1sqR1mf3NsRwT04 )\r\n\r\nBluesky (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbtM3lcq-W7lCdLW6lZ3lLW9gNlXs1LzpNqN52Jhcydb5zyW53j1JX1GgZvDW4Fv9px4F1XhlW8k94-s5b2jdYW97kHbD6vPMdSW2zBMFT7ryRLKW20N57J7mHcqLW71vXR04jcXpxN1ks0kTtvKj-W2zm9_d5735QyV3jKhm91TyW8W4TkXvh3tLTjDW3QXs542PtMZPW6JRfLS2zKT78W2MDqFG1pyKhHW35HDM81GVD45W3lXc7R5fytJDW6fBRFn8lPdSXW3CRQ4292ZLKbW73T-qS7vDCyPW1X-GS76CGxSYW8S1ynM5SwbFfW6yFyCg8MknRcf1mW0fY04 )\r\n\r\ngrafik-roundup-footer-logo (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/MWbvB7z42hkW5V3NKR5FqWkWW2QY3Nh5D_dJnN1PJbt83lcq-W69sMD-6lZ3kRW7zMjq81BMzDnV4_4TY5mnPwVW52JzK51BqMbXN1K9jTHhw9ZDW2gkwvn8Vhq07W5-dpg41VWNKSW1jmtG813N5_bW2d1YQ73H5YXXW1bvtqF7rdYNLW9j2kVd325MCXW1cwvJR5y0FznW3CzPrW1Y6Jm9W2n-sYh3QD2lBW3C0xn575FdNkVsK48g6ykQ9wW9f0m4f23FV0PW5wgz7H5gqLBjW756c1m4D5rkpW4VJBkH45n6SrW6Ytjxw2l27Fvf3-Cq9F04 )\r\n\r\n© 2025 Grafik. All rights reserved.\r\n\r\nGrafik, 8045 Leesburg Pike, Suite 503, Vienna,VA,22182,United States,\r\n\r\nUnsubscribe (https://hs-505301.s.hubspotemail.net/hs/preferences-center/en/direct?data=W2nXS-N30h-RYW3M87bx2-F7L-W2xNvlF45q8hJW3GRhbf2YLHN7W1XsJb62sJPWNW2qTQgK2PMVq_W45xtmY4hg8Y6W1X1VY92zG8L2W45Qv674rGRK6W4kCK4R2xN9k6W3VSypJ47NxH9W25kwPM1N591PW1Y__5f4kJBbMW3Xv-RD4mrL_5W47lMmC2YgjJmW3_Hc0n3C6YyyW3_rHkl2MPPYHW1Xf53f38hFPsW1Xtccl3SKDK4W3VxTGD4rlm1jW4t2GRJ2qQQhpW2HtP7l4kqJhlW4mnpzY1Bxh75W43HCP13VKWCSW3M41fh36d4QfW2w16zh1_rxvFW3X-NDR1_r4fTW2YHPBq45TRJGW4rg7z72MqqXxW45G6PS4fcpNMW22VzRR3_TBpKW3gvCWZ2nPQBwW30nzN31Vpb0FW1Lq1JB1NkD9xW1Zs6x_43wQs_W43qSVj4tv1p2W1LCqVD1NdfsYW4knzPT3gqvryW2RhMHh343Zl8W4pJd232PQWmJW23rsl_4hqv2JW2KXdDj3M4Q6GW1Lytg62r0djsW3QQQBF2YtxWgW3XxdfM3dwJ2FW2t01j-3jtxTmW2Rrhk-3ZYZ6LW1BtPj04hy7jWW4hrfSR4mC3tjf2HZwCN04&_hsenc=p2ANqtz-_oZvJ9G6BIiRivJ9Q46Oz7lQNUlCObw7waWRTNpTjj1Jgw4M4bKhby0flMfeHDvHbUV_MIir1dk3KLSCEr-RjFo9Iasw&_hsmi=386447417 ) Manage Preferences (https://hs-505301.s.hubspotemail.net/hs/preferences-center/en/page?data=W2nXS-N30h-RYW3M87bx2-F7L-W2xNvlF45q8hJW3GRhbf2YLHN7W1XsJb62sJPWNW2qTQgK2PMVq_W45xtmY4hg8Y6W1X1VY92zG8L2W45Qv674rGRK6W4kCK4R2xN9k6W3VSypJ47NxH9W25kwPM1N591PW1Y__5f4kJBbMW3Xv-RD4mrL_5W47lMmC2YgjJmW3_Hc0n3C6YyyW3_rHkl2MPPYHW1Xf53f38hFPsW1Xtccl3SKDK4W3VxTGD4rlm1jW4t2GRJ2qQQhpW2HtP7l4kqJhlW4mnpzY1Bxh75W43HCP13VKWCSW3M41fh36d4QfW2w16zh1_rxvFW3X-NDR1_r4fTW2YHPBq45TRJGW4rg7z72MqqXxW45G6PS4fcpNMW22VzRR3_TBpKW3gvCWZ2nPQBwW30nzN31Vpb0FW1Lq1JB1NkD9xW1Zs6x_43wQs_W43qSVj4tv1p2W1LCqVD1NdfsYW4knzPT3gqvryW2RhMHh343Zl8W4pJd232PQWmJW23rsl_4hqv2JW2KXdDj3M4Q6GW1Lytg62r0djsW3QQQBF2YtxWgW3XxdfM3dwJ2FW2t01j-3jtxTmW2Rrhk-3ZYZ6LW1BtPj04hy7jWW4hrfSR4mC3tjf2HZwCN04&_hsenc=p2ANqtz-_oZvJ9G6BIiRivJ9Q46Oz7lQNUlCObw7waWRTNpTjj1Jgw4M4bKhby0flMfeHDvHbUV_MIir1dk3KLSCEr-RjFo9Iasw&_hsmi=386447417 )',0,0,0,0,0,0,'2025-10-23 12:30:22','2025-12-09 19:29:57','2025-12-09 19:29:57','2025-12-09 19:29:57',NULL,NULL,NULL),
(876,4,'<CAPzxmXbx+gUWKFMS5NuS9G6OK3OE65DhT-jpT2F2Jq5QTSas6A@mail.gmail.com>',NULL,NULL,'Re: Grafik: Request for Information','tanya@grafik.com','Tanya Nazarian','<div dir=\"ltr\"><div>Hi Rick, </div><div><br></div><div>I hope all is well. I wanted to follow up with you on the ROM we shared. Do you have a few minutes to connect one day next week? As mentioned, it would be great to bring in our strategy team to continue the conversation.</div><div><br></div><div>Thanks! </div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Oct 3, 2025 at 5:28 PM Tanya Nazarian &lt;<a href=\"mailto:tanya@grafik.com\">tanya@grafik.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\">Rick, <div><br></div><div>Thank you again for your interest in Grafik. We&#39;ve taken the time to consider your near-term goals and the current state of the Mavrix1 brand, and feel well-equipped to deliver on your needs. Per our conversation, we wanted to share with you a rough order of magnitude that outlines what you can expect when working with our team.<span> </span></div><div><br></div><div>Take a look, and if you remain interested in continuing the conversation, I recommend setting up a follow-up discussion with our brand and client strategy teams to take a deeper dive into what it will actually take to get the brand where it needs to be. Let us know your thoughts, and please confirm receipt when you get a moment. </div><div><br></div><div>Have a great weekend!  </div><div><br></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Sep 24, 2025 at 3:46 PM Ian Olsen &lt;<a href=\"mailto:ian@grafik.com\" target=\"_blank\">ian@grafik.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>Let&#39;s do 3-3:30pm. I can shoot over an invite here shortly!<br><br>Much appreciated, glad we can work it out.</div><div><br></div><div>Look forward to chatting,</div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal\"><br><font color=\"#222222\" face=\"arial, sans-serif\"><b>Ian Olsen</b></font><br></p><p style=\"margin:0px 0px 2px;line-height:normal\"><font color=\"#222222\" face=\"arial, sans-serif\"><span>Business Development Manager</span></font><span style=\"color:rgb(34,34,34);font-family:arial,sans-serif\">  •<span>  </span><b>P</b> (</span><font color=\"#222222\" face=\"arial, sans-serif\"><span>703) 249-9771</span></font></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><b style=\"font-family:arial,sans-serif\">Grafik</b><span style=\"font-family:&quot;Helvetica Neue&quot;\">  •  Philadelphia  •  </span><span style=\"font-family:&quot;Helvetica Neue&quot;\">Washington, D.C.</span><br></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><span style=\"font-family:arial,sans-serif\"><b><a href=\"https://grafik.agency/\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">instagram</font></a>   <a href=\"https://linkedin.com/company/grafik\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">linkedin</font></a></font></font><font color=\"#3db3b5\"> </font></b></span></p></div></div></div><br><div></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Sep 24, 2025 at 3:30 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex\"> Can we still take tomorrow 2-5: <br>Sometime in that range???<br>Sorry for the confusion.<br>Thanks!<br>Rick <br> <br><p>On September 23, 2025 at 11:42:41, Ian Olsen (<a href=\"mailto:ian@grafik.com\" target=\"_blank\">ian@grafik.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>Next week looks good on our end. We can do Monday 1-3:30pm or Wednesday is mostly open. </div><div><br></div><div>Let me know what works for you.</div><div><br></div><div>Thanks,</div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal\"><br><font color=\"#222222\" face=\"arial, sans-serif\"><b>Ian Olsen</b></font><br></p><p style=\"margin:0px 0px 2px;line-height:normal\"><font color=\"#222222\" face=\"arial, sans-serif\"><span>Business Development Manager</span></font><span style=\"color:rgb(34,34,34);font-family:arial,sans-serif\">  •<span>  </span><b>P</b> (</span><font color=\"#222222\" face=\"arial, sans-serif\"><span>703) 249-9771</span></font></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><b style=\"font-family:arial,sans-serif\">Grafik</b><span style=\"font-family:&quot;Helvetica Neue&quot;\">  •  Philadelphia  •  </span><span style=\"font-family:&quot;Helvetica Neue&quot;\">Washington, D.C.</span><br></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><span style=\"font-family:arial,sans-serif\"><b><a href=\"https://grafik.agency/\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">instagram</font></a>   <a href=\"https://linkedin.com/company/grafik\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">linkedin</font></a></font></font><font color=\"#3db3b5\"> </font></b></span></p></div></div></div><br><div></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Sep 23, 2025 at 10:28 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex\">\r\n\r\n    <div id=\"m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Hi Ian,</div><div id=\"m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thanks for the response.</div><div id=\"m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">It was quick enough. </div><div id=\"m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">How does next week look?</div><div id=\"m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thanks again,</div><div id=\"m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Rick</div> <br> <div id=\"m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_sign_1758637591710331904\">\r\n\r\n         \r\n      \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n\r\n      \r\n</div> <br><p>On September 23, 2025 at 09:31:55, Ian Olsen (<a href=\"mailto:ian@grafik.com\" target=\"_blank\">ian@grafik.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>Apologies for the late reply. Thanks for reaching out to Grafik. We&#39;re happy to talk through your branding &amp; campaign needs soup to nuts. We have some openings tomorrow at 10 or 10:30am, or Thursday between 2-5pm ET. Let me know if that works on your end and we can get it on the books.</div><div><br></div><div>Look forward to hearing from you soon.</div><div><br></div><div>Thanks,</div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal\"><br><font color=\"#222222\" face=\"arial, sans-serif\"><b>Ian Olsen</b></font><br></p><p style=\"margin:0px 0px 2px;line-height:normal\"><font color=\"#222222\" face=\"arial, sans-serif\"><span>Business Development Manager</span></font><span style=\"color:rgb(34,34,34);font-family:arial,sans-serif\">  •<span>  </span><b>P</b> (</span><font color=\"#222222\" face=\"arial, sans-serif\"><span>703) 249-9771</span></font></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><b style=\"font-family:arial,sans-serif\">Grafik</b><span style=\"font-family:&quot;Helvetica Neue&quot;\">  •  Philadelphia  •  </span><span style=\"font-family:&quot;Helvetica Neue&quot;\">Washington, D.C.</span><br></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><span style=\"font-family:arial,sans-serif\"><b><a href=\"https://grafik.agency/\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">instagram</font></a>   <a href=\"https://linkedin.com/company/grafik\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">linkedin</font></a></font></font><font color=\"#3db3b5\"> </font></b></span></p></div></div></div><div></div></div>\r\n\r\n</div></div></span></blockquote>\r\n\r\n\r\n\r\n\r\n\r\n</blockquote></div><div></div></div>\r\n\r\n</div></div></span></blockquote></blockquote></div><img src=\"https://c3chr04.na1.hs-salescrm-engage.com/Cto/F9+23284/c3chr04/R5Q8b47KQW174dQh1kQnsgW3C6vB320TTh4W3LDP5q1Q68ztW25d0xB1G9Wn6W1QsWFK3z8hH2W22z0GD1Z0NBmf1-_dqx12\" alt=\"\" height=\"1\" width=\"1\" style=\"display: none;\"><div></div><div id=\"m_-3361122506656212532m_6920436297612873467data-hbsasc-v0-f0a73054-d677-4c93-b7a3-427e281c6c20\"></div></div>\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal;font-family:Arial;color:rgb(61,179,181)\"><span><b>—</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 3px;line-height:normal;font-family:Arial\"><span><b>Tanya Nazarian</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span>SVP, Growth  • <b>T</b> 703.299.5984</span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span><b>Grafik</b>  •  Washington, DC </span>• Philadelphia, PA </p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><b><span><a href=\"https://grafik.agency/\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a></span><span><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" target=\"_blank\"><span><font color=\"#3db3b5\">instagram</font></span></a>   <a href=\"https://linkedin.com/company/grafik\" target=\"_blank\"><span><font color=\"#3db3b5\">linkedin</font></span></a></font></font><font color=\"#3db3b5\">  </font></span></b></p><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px\"></div></div></div></div></div>\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal;font-family:Arial;color:rgb(61,179,181)\"><span><b>—</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 3px;line-height:normal;font-family:Arial\"><span><b>Tanya Nazarian</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span>SVP, Growth  • <b>T</b> 703.299.5984</span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span><b>Grafik</b>  •  Washington, DC </span>• Philadelphia, PA </p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><b><span><a href=\"https://grafik.agency/\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a></span><span><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" target=\"_blank\"><span><font color=\"#3db3b5\">instagram</font></span></a>   <a href=\"https://linkedin.com/company/grafik\" target=\"_blank\"><span><font color=\"#3db3b5\">linkedin</font></span></a></font></font><font color=\"#3db3b5\">  </font></span></b></p><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px\"></div></div></div></div></div></div>','Hi Rick,\r\n\r\nI hope all is well. I wanted to follow up with you on the ROM we shared. Do\r\nyou have a few minutes to connect one day next week? As mentioned, it would\r\nbe great to bring in our strategy team to continue the conversation.\r\n\r\nThanks!\r\n\r\nOn Fri, Oct 3, 2025 at 5:28 PM Tanya Nazarian <tanya@grafik.com> wrote:\r\n\r\n> Rick,\r\n>\r\n> Thank you again for your interest in Grafik. We\'ve taken the time to\r\n> consider your near-term goals and the current state of the Mavrix1 brand,\r\n> and feel well-equipped to deliver on your needs. Per our conversation, we\r\n> wanted to share with you a rough order of magnitude that outlines what you\r\n> can expect when working with our team.\r\n>\r\n> Take a look, and if you remain interested in continuing the conversation,\r\n> I recommend setting up a follow-up discussion with our brand and client\r\n> strategy teams to take a deeper dive into what it will actually take to get\r\n> the brand where it needs to be. Let us know your thoughts, and please\r\n> confirm receipt when you get a moment.\r\n>\r\n> Have a great weekend!\r\n>\r\n>\r\n> On Wed, Sep 24, 2025 at 3:46 PM Ian Olsen <ian@grafik.com> wrote:\r\n>\r\n>> Hi Rick,\r\n>>\r\n>> Let\'s do 3-3:30pm. I can shoot over an invite here shortly!\r\n>>\r\n>> Much appreciated, glad we can work it out.\r\n>>\r\n>> Look forward to chatting,\r\n>>\r\n>>\r\n>> *Ian Olsen*\r\n>>\r\n>> Business Development Manager  •  *P* (703) 249-9771\r\n>>\r\n>> *Grafik*  •  Philadelphia  •  Washington, D.C.\r\n>>\r\n>> *grafik.agency <https://grafik.agency/>   instagram\r\n>> <https://instagram.com/grafikagency>   linkedin\r\n>> <https://linkedin.com/company/grafik> *\r\n>>\r\n>>\r\n>> On Wed, Sep 24, 2025 at 3:30 PM Rick <rick@mavrix.one> wrote:\r\n>>\r\n>>> Can we still take tomorrow 2-5:\r\n>>> Sometime in that range???\r\n>>> Sorry for the confusion.\r\n>>> Thanks!\r\n>>> Rick\r\n>>>\r\n>>> On September 23, 2025 at 11:42:41, Ian Olsen (ian@grafik.com) wrote:\r\n>>>\r\n>>> Hi Rick,\r\n>>>\r\n>>> Next week looks good on our end. We can do Monday 1-3:30pm or Wednesday\r\n>>> is mostly open.\r\n>>>\r\n>>> Let me know what works for you.\r\n>>>\r\n>>> Thanks,\r\n>>>\r\n>>>\r\n>>> *Ian Olsen*\r\n>>>\r\n>>> Business Development Manager  •  *P* (703) 249-9771\r\n>>>\r\n>>> *Grafik*  •  Philadelphia  •  Washington, D.C.\r\n>>>\r\n>>> *grafik.agency <https://grafik.agency/>   instagram\r\n>>> <https://instagram.com/grafikagency>   linkedin\r\n>>> <https://linkedin.com/company/grafik> *\r\n>>>\r\n>>>\r\n>>> On Tue, Sep 23, 2025 at 10:28 AM Rick <rick@mavrix.one> wrote:\r\n>>>\r\n>>>> Hi Ian,\r\n>>>> Thanks for the response.\r\n>>>> It was quick enough.\r\n>>>> How does next week look?\r\n>>>> Thanks again,\r\n>>>> Rick\r\n>>>>\r\n>>>> Rick Mislan, PhD\r\n>>>> https://mavrix.one\r\n>>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>>\r\n>>>> On September 23, 2025 at 09:31:55, Ian Olsen (ian@grafik.com) wrote:\r\n>>>>\r\n>>>> Hi Rick,\r\n>>>>\r\n>>>> Apologies for the late reply. Thanks for reaching out to Grafik. We\'re\r\n>>>> happy to talk through your branding & campaign needs soup to nuts. We have\r\n>>>> some openings tomorrow at 10 or 10:30am, or Thursday between 2-5pm ET. Let\r\n>>>> me know if that works on your end and we can get it on the books.\r\n>>>>\r\n>>>> Look forward to hearing from you soon.\r\n>>>>\r\n>>>> Thanks,\r\n>>>>\r\n>>>>\r\n>>>> *Ian Olsen*\r\n>>>>\r\n>>>> Business Development Manager  •  *P* (703) 249-9771\r\n>>>>\r\n>>>> *Grafik*  •  Philadelphia  •  Washington, D.C.\r\n>>>>\r\n>>>> *grafik.agency <https://grafik.agency/>   instagram\r\n>>>> <https://instagram.com/grafikagency>   linkedin\r\n>>>> <https://linkedin.com/company/grafik> *\r\n>>>>\r\n>>>>\r\n>\r\n> --\r\n>\r\n> *—*\r\n>\r\n> *Tanya Nazarian*\r\n>\r\n> SVP, Growth  • *T* 703.299.5984\r\n>\r\n> *Grafik*  •  Washington, DC • Philadelphia, PA\r\n>\r\n> *grafik.agency <https://grafik.agency/>   instagram\r\n> <https://instagram.com/grafikagency>   linkedin\r\n> <https://linkedin.com/company/grafik>  *\r\n>\r\n\r\n\r\n-- \r\n\r\n*—*\r\n\r\n*Tanya Nazarian*\r\n\r\nSVP, Growth  • *T* 703.299.5984\r\n\r\n*Grafik*  •  Washington, DC • Philadelphia, PA\r\n\r\n*grafik.agency <https://grafik.agency/>   instagram\r\n<https://instagram.com/grafikagency>   linkedin\r\n<https://linkedin.com/company/grafik>  *',0,0,0,0,0,0,'2025-10-23 14:16:35','2025-12-09 19:29:58','2025-12-09 19:29:58','2025-12-09 19:29:58',NULL,NULL,NULL),
(877,4,'<68fa4eddebf21_1191a4108f6@fathom-sidekiq-default-2-6f4b4d7555-496m7.mail>',NULL,NULL,'Recap of your meeting with Lithium Battery Co','no-reply@fathom.video','Fathom','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\">\r\n  <head>\r\n    <!--[if gte mso 9]><xml><o:OfficeDocumentSettings><o:AllowPNG/><o:PixelsPerInch>96</o:PixelsPerInch></o:OfficeDocumentSettings></xml><![endif]-->\r\n    <title>FATHOM</title>\r\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <link href=\"https://fonts.googleapis.com/css?family=Inter:300,400,500,600,700\" rel=\"stylesheet\">\r\n    <style type=\"text/css\">\r\n      a{\r\n        outline:none;\r\n        color:#00BEFF;\r\n        text-decoration:underline;\r\n      }\r\n      a:hover{text-decoration:none!important;}\r\n      .h-u a{text-decoration:none;}\r\n      .h-u a:hover{text-decoration:underline!important;}\r\n      a[x-apple-data-detectors]{color:inherit!important; text-decoration:none!important;}\r\n      a[href^=\"tel\"]:hover{text-decoration:none!important;}\r\n      .active-i a:hover,\r\n      .active-t td:hover{opacity:0.8;}\r\n      .active-i a,\r\n      .active-t td{transition:all 0.3s ease;}\r\n      a img{border:none;}\r\n      b, strong{font-weight:700;}\r\n      p{margin:0;}\r\n      th{padding:0;}\r\n      table td{mso-line-height-rule:exactly;}\r\n      #emailBody #emailWrapper [x-apple-data-detectors]{color:inherit!important;text-decoration:inherit!important;}\r\n      .l-white a{color:#fff;}\r\n      :root{color-scheme:light;}\r\n      [style*=\"Inter\"]{font-family:\'Inter\', Arial, Helvetica, sans-serif !important}\r\n      [style*=\"Inter500\"]{font-weight:500!important; font-family:\'Inter\', Arial, Helvetica, sans-serif !important}\r\n      .ico-block-02 a:hover{color:#fff!important;}\r\n      .ico-block-03 a:hover {text-decoration:underline!important; color:#20C5FF!important;}\r\n      .ico-block-03 a:hover .ico-hover{display:inline-block!important;}\r\n      .ico-block-03 a:hover .ico-hover img{display:block; width:36px!important; height:auto!important;}\r\n      @media only screen and (max-width:817px) {\r\n        .w-100p{width:100%!important;}\r\n        .tflex{display:block!important;width:100%!important;}\r\n        .f-l{float:left!important;}\r\n        .f-r{float:right!important;}\r\n        .ta-l{text-align:left!important;}\r\n        .ta-r{text-align:right!important;}\r\n        .hm{display:none!important;width:0!important;height:0!important;padding:0!important;font-size:0!important;line-height:0!important;}\r\n        .w-8{width:8px!important;}\r\n        .w-10{width:10px!important;}\r\n        .wi-100p img{width:100%!important;height:auto!important;}\r\n        .p-0{padding:0!important;}\r\n        .ptb-20{padding-top:20px!important;padding-bottom:20px!important;}\r\n        .ptb-30{padding-top:30px!important;padding-bottom:30px!important;}\r\n        .pl-30{padding-left:30px!important;}\r\n        .pt-0{padding-top:0!important;}\r\n        .pt-5{padding-top:5px!important;}\r\n        .pt-15{padding-top:15px!important;}\r\n        .pt-20{padding-top:20px!important;}\r\n        .pb-9{padding-bottom:9px!important;}\r\n        .pb-10{padding-bottom:10px!important;}\r\n        .pb-20{padding-bottom:20px!important;}\r\n        .fs-13{font-size:13px!important;}\r\n        .fs-14{font-size:14px!important;}\r\n        .fs-16{font-size:16px!important;}\r\n        .fs-18{font-size:18px!important;}\r\n        .fs-20{font-size:20px!important;}\r\n        .fs-24{font-size:24px!important;}\r\n        .lh-17{line-height:17px!important;}\r\n        .lh-18{line-height:18px!important;}\r\n        .lh-20{line-height:20px!important;}\r\n        .lh-22{line-height:22px!important;}\r\n        .lh-24{line-height:24px!important;}\r\n        .lh-25{line-height:25px!important;}\r\n        .lh-30{line-height:30px!important;}\r\n        .maxw-560{max-width:560px!important;}\r\n        .ico-holder{ float:left; width:16px;}\r\n      }\r\n      @media only screen and (max-width:389px) {\r\n        .fs-11-390{font-size:11px!important;}\r\n        .lh-14-390{line-height:13px!important;}\r\n      }\r\n      @media (prefers-dark-interface) {body{-apple-color-filter:none;}}\r\n      .ai_notes_html_content a:hover {\r\n        color: #00beff;\r\n        text-decoration-line: underline !important;\r\n        -webkit-text-decoration-color:#54565B;\r\n        text-decoration-color:#54565B;\r\n      }\r\n      .ai_notes_html_content a:hover img {\r\n        display: inline-block;\r\n        width: 48px !important;\r\n      }\r\n      .ai_notes_html_content a:hover .ico-hover {\r\n        display:inline-block!important;\r\n      }\r\n      .ai_notes_html_content a:hover .ico-hover img {\r\n        display:block;\r\n        width:36px!important;\r\n        height:auto!important;\r\n      }\r\n      .ai_notes_html_content ol li::marker {\r\n        font-size: 16px !important;\r\n      }\r\n      .underline {\r\n        text-decoration-line: underline;\r\n        text-decoration-style: solid;\r\n        text-decoration-skip-ink: none;\r\n        text-decoration-thickness: auto;\r\n        text-underline-offset: auto;\r\n        text-underline-position: from-font;\r\n      }\r\n    </style>\r\n    <style type=\"text/css\">\r\n      @import url(https://fonts.googleapis.com/css?family=Inter:300,400,500,600,700);\r\n    </style>\r\n  </head>\r\n  <body id=\"emailBody\" style=\"margin:0; padding:0; -webkit-text-size-adjust:100%; -ms-text-size-adjust:100%; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; text-rendering:optimizeLegibility;\">\r\n    <div style=\"display:none;\">Meeting Purpose\r\n\r\nDefine collaboration paths and review Forge Nano&#39;s battery product portfolio.\r\n\r\nKey Takeaways\r\n\r\n  - Strategic Partnership: Forge Nano (cell manufacturer) and Lithium Battery Co (pack assembler) will partner to offer end-to-end battery solutions, with Forge Nano funneling pack-assembly clients to Lithium Battery Co.\r\n  - New Product Portfolio: Forge Nano&#39;s new portfolio includes five cells (18650s, 21700s, drone) with immediate samples and contract manufacturing capacity (~400 MWh/yr) until its US gigafactory opens in Q1/Q2 2027.\r\n  - Samsung Deal: Forge Nano is finalizing a deal to distribute and eventually manufacture Samsung 53G cells in the US, with a target price of &lt;$3/cell.\r\n  - Drone Factory Project: Lithium Battery Co will partner on Forge Nano&#39;s proposal for a government-owned, commercially-assisted (GOGO CA) drone battery factory at RRAD, Texas, under the Sky Foundry Act.\r\n\r\nTopics\r\n\r\nForge Nano Overview &amp; Gigafactory Status\r\n\r\n  - Mission: Build a US-based battery supply chain for specialty applications (DoD, commercial) using its nano-coating technology.\r\n  - Gigafactory: A $100M DOE grant is confirmed, resolving a prior delay.\r\n      - Timeline: Online in Q1/Q2 2027.\r\n      - Goal: Achieve cost competitiveness (~$5/cell) against foreign and small-scale US manufacturers.\r\n  - Financials: Closing a Series D round; targeting an IPO within 1–1.5 years.\r\n\r\nProduct Portfolio &amp; Availability\r\n\r\n  - Forge Nano&#39;s portfolio now has five distinct cells (18650s, 21700s) with new marketing names.\r\n  - D35A (18650): High-energy cell competitive with the LG MJ1.\r\n      - Availability: A-samples (pilot line) in Jan &#39;26; B-samples (production-ready) in Apr &#39;26.\r\n      - Production: 150 MWh/yr via a Turkish CM.\r\n      - Price: ~$4/cell (volume-dependent).\r\n  - C35C (18650): DoD-specific cell (3.2 Ah, 100% US supply chain).\r\n      - Status: Production paused pending Army testing. Available only via large, costly custom batches.\r\n  - F55A (21700): &quot;6T&quot; cell designed for low-temp cold crank power.\r\n      - Availability: Samples in Feb &#39;26.\r\n      - Production: Current line capacity is 25k cells/yr. Expansion to 1M cells/yr requires a ~$10M investment, contingent on an offtake agreement.\r\n      - Price: ~$5/cell (target).\r\n  - Drone Cell (21700): Tabless design for very high power.\r\n      - Availability: Samples in Jan &#39;26 (pre-orders open); B-samples in Apr &#39;26.\r\n      - Production: ~210–220 MWh/yr.\r\n      - Price: ~$7/cell.\r\n  - UK-Made Cell: High-energy, lower-power cell available from a 100 MWh/yr line. More expensive due to exchange rates.\r\n\r\nStrategic Partnerships &amp; Opportunities\r\n\r\n  - Samsung Deal (Confidential): Forge Nano is finalizing a deal to distribute and eventually manufacture Samsung 53G cells in the US.\r\n      - Model: Start as a distributor, then acquire a Samsung line from Korea, which Samsung will install and train Forge Nano staff to operate.\r\n      - Price: Target of &lt;$3/cell.\r\n  - MOLLE Discussions: Similar discussions are ongoing with MOLLE to support US production of P50B cells.\r\n      - Status: Less advanced than the Samsung deal.\r\n      - Price: At or better than current market rates.\r\n  - Sky Foundry Act (RRAD Drone Factory): Forge Nano was encouraged to proceed to Phase 2 of a proposal for a GOGO CA (Government Owned, Government Operated, Commercially Assisted) drone battery factory at Red River Army Depot (RRAD) in Texas.\r\n      - Partnership: Lithium Battery Co will be the pack assembly partner.\r\n      - Action: Lithium Battery Co must provide a rough order of magnitude (ROM) budget and timeline (±15% accuracy) for the pack assembly portion. This is required for Forge Nano&#39;s Phase 2 pitch in three weeks.\r\n\r\nNext Steps\r\n\r\n  - Forge Nano:\r\n      - Send term sheet draft for the strategic partnership.\r\n      - Send all updated cell spec sheets, including the Samsung 53G.\r\n      - Send the redacted RRAD drone factory proposal to Lithium Battery Co.\r\n  - Lithium Battery Co:\r\n      - Review all materials and confirm cell volumes needed for current projects.\r\n      - Develop a ROM budget and timeline for the RRAD factory&#39;s pack assembly portion.\r\n  - All:\r\n      - Meet Monday, Oct 27, at 2:30 PM ET to finalize the RRAD factory budget and timeline.\r\n</div>\r\n    <table id=\"emailWrapper\" width=\"100%\" style=\"min-width:320px;\" cellspacing=\"0\" cellpadding=\"0\">\r\n      <tr>\r\n        <td class=\"p-0\" style=\"padding:30px 0;\">\r\n          <table class=\"w-100p\" width=\"560\" align=\"center\" style=\"max-width:560px; margin:0 auto;\" cellpadding=\"0\" cellspacing=\"0\">\r\n            <tr>\r\n              <td class=\"pt-15\" style=\"padding:18px 0px 20px;\">\r\n                <table class=\"maxw-560\" style=\"max-width:640px; width:100% !important; margin:0;\" cellpadding=\"0\" cellspacing=\"0\">\r\n                  <tr>\r\n                    <td>\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tr>\r\n                          <td align=\"left\">\r\n                            <a style=\"text-decoration:none;\" href=\"https://fathom.video/?utm_campaign=postmeetingsummary&amp;utm_content=header&amp;utm_medium=email\">\r\n                              <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/fathom-logo-black-2025.png\" width=\"152\" alt=\"FATHOM\">\r\n                            </a>\r\n                          </td>\r\n                            <td align=\"right\">\r\n                              <a class=\"underline\" style=\"font:12px/16px Arial, Helvetica, sans-serif, Inter; color:#0070AC; letter-spacing:-.1px;\" href=\"https://fathom.video/invite/-CHKVA?utm_medium=email&amp;utm_campaign=postmeetingsummary&amp;utm_content=header_ad\">\r\n                                <b>Get your own FREE AI Meeting Assistant</b>\r\n                              </a>\r\n                                <br>\r\n                                <a style=\"text-decoration:none;\" href=\"https://www.g2.com/products/fathom-2021-09-22/reviews\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/g2-rating.png\" width=\"203\" alt=\"#1 rated on G2, 5/5, 5000+ reviews\">\r\n                                </a>\r\n                            </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n            <tr>\r\n              <td class=\"pt-15\">\r\n                <table class=\"maxw-560\" style=\"max-width:640px; width:100% !important; margin:0;\" cellpadding=\"0\" cellspacing=\"0\">\r\n                  <tr>\r\n                    <td style=\"padding:0 0 20px;\">\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tr>\r\n                          <th class=\"tflex\" align=\"left\" style=\"vertical-align:top;\">\r\n                            <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                              <tr>\r\n                                <td class=\"pt-0 pb-9\" style=\"padding:8px 0 5px;\">\r\n                                  <table cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tr>\r\n                                      <td style=\"font:600 16px/20px Arial, Helvetica, sans-serif, Inter; color:#606167;\">\r\n                                        Meeting with Lithium Battery Co\r\n                                      </td>\r\n                                    </tr>\r\n                                  </table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td class=\"fs-24 lh-30\" style=\"padding:0 0 3px; font:700 28px/35px Arial, Helvetica, sans-serif, Inter; color:#000; letter-spacing:-.6px;\">\r\n                                  Next Steps - Forge Nano Collaboration\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td style=\"font:500 13px/17px Arial, Helvetica, sans-serif, Inter; color:#6C6D72; letter-spacing:-.2px;\">\r\n                                  October 23, 2025&nbsp;&nbsp;<span style=\"color:#D3D3D3;\">&bull;</span>&nbsp;\r\n                                  49 mins&nbsp; <span style=\"color:#D3D3D3;\">&bull;</span>&nbsp;\r\n                                  <a class=\"underline\" style=\"color:#0070AC;\" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&amp;utm_campaign=postmeetingsummary&amp;utm_content=view_recording_link&amp;utm_medium=email\">View Meeting</a>\r\n                                  or <a class=\"underline\" style=\"color:#0070AC;\" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=ask_fathom&amp;utm_campaign=postmeetingsummary&amp;utm_content=ask_fathom&amp;utm_medium=email\">Ask Fathom</a>\r\n                                </td>\r\n                              </tr>\r\n                            </table>\r\n                          </th>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                  <tr>\r\n                    <td class=\"ptb-20\" style=\"border-radius:10px;\">\r\n                      <table width=\"560\" align=\"center\" style=\"max-width:560px; width:100% !important; margin:0px;\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tr>\r\n                          <td class=\"fs-20 lh-25\" style=\"padding:19px 0 10px; font:700 14px/17px Arial, Helvetica, sans-serif, Inter; color:#9C9C9C; letter-spacing:-.28px; text-transform: uppercase;\">\r\n                            Action Items ✨\r\n                          </td>\r\n                        </tr>\r\n                        <tr>\r\n                          <td class=\"pb-10\" style=\"padding:0 0 15px;\">\r\n                            <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px; line-height:1px; font-size:1px; mso-line-height-rule:at-least;\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px; display:block; vertical-align:top;\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px;\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px;\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tr>\r\n                                      <td class=\"ico-block-03 fs-14 lh-18\" style=\"padding:0 0 3px; font:600 14px/18px Arial, Helvetica, sans-serif, Inter; color:#000; letter-spacing:-.14px;\">\r\n                                        <a style=\"color:#000; text-decoration:none;\" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&amp;timestamp=1471.900185&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\">\r\n                                          Email Jordan: deck, updated spec sheets, Samsung 53G spec, term sheet; request volume/spec check + Samsung 53G qty<span class=\"ico-hover\" style=\"display:none; font-size:0; line-height:0; vertical-align: middle; margin: 0 0 0 5px;\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px; height:auto; vertical-align:top; border:none;\" alt=\"\"></span><span style=\"font:600 10px/12px Arial, Helvetica, sans-serif, Inter;\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"ico-block-02\" style=\"font:12px/15.6px Arial, Helvetica, sans-serif, Inter; color:#6C6D72; letter-spacing:-.12px;\">\r\n                                        James Trevey\r\n                                      </td>\r\n                                    </tr>\r\n                                  </table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px; line-height:1px; font-size:1px; mso-line-height-rule:at-least;\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px; display:block; vertical-align:top;\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px;\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px;\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tr>\r\n                                      <td class=\"ico-block-03 fs-14 lh-18\" style=\"padding:0 0 3px; font:600 14px/18px Arial, Helvetica, sans-serif, Inter; color:#000; letter-spacing:-.14px;\">\r\n                                        <a style=\"color:#000; text-decoration:none;\" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&amp;timestamp=2400.900185&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\">\r\n                                          Email Jordan: redacted RRAD/Sky Foundry proposal; request pack-side ROM budget/timeline (±15%)<span class=\"ico-hover\" style=\"display:none; font-size:0; line-height:0; vertical-align: middle; margin: 0 0 0 5px;\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px; height:auto; vertical-align:top; border:none;\" alt=\"\"></span><span style=\"font:600 10px/12px Arial, Helvetica, sans-serif, Inter;\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"ico-block-02\" style=\"font:12px/15.6px Arial, Helvetica, sans-serif, Inter; color:#6C6D72; letter-spacing:-.12px;\">\r\n                                        James Trevey\r\n                                      </td>\r\n                                    </tr>\r\n                                  </table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px; line-height:1px; font-size:1px; mso-line-height-rule:at-least;\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px; display:block; vertical-align:top;\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px;\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px;\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tr>\r\n                                      <td class=\"ico-block-03 fs-14 lh-18\" style=\"padding:0 0 3px; font:600 14px/18px Arial, Helvetica, sans-serif, Inter; color:#000; letter-spacing:-.14px;\">\r\n                                        <a style=\"color:#000; text-decoration:none;\" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&amp;timestamp=2529.900185&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\">\r\n                                          Schedule RRAD/Sky Foundry call w/ Jordan, Rick, Brian; Oct 27 2:30–3 ET<span class=\"ico-hover\" style=\"display:none; font-size:0; line-height:0; vertical-align: middle; margin: 0 0 0 5px;\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px; height:auto; vertical-align:top; border:none;\" alt=\"\"></span><span style=\"font:600 10px/12px Arial, Helvetica, sans-serif, Inter;\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"ico-block-02\" style=\"font:12px/15.6px Arial, Helvetica, sans-serif, Inter; color:#6C6D72; letter-spacing:-.12px;\">\r\n                                        James Trevey\r\n                                      </td>\r\n                                    </tr>\r\n                                  </table>\r\n                                </td>\r\n                              </tr>\r\n                            </table>\r\n                          </td>\r\n                        </tr>\r\n\r\n                        <tr>\r\n                          <td style=\"padding:0px;\">\r\n                            <table cellpadding=\"0\" cellspacing=\"0\">\r\n                              <tr>\r\n                                <td colspan=\"3\" class=\"fs-20 lh-24 fs-11-390 lh-13-390\" style=\"font:700 14px/17px Arial, Helvetica, sans-serif, Inter; color:#9C9C9C; letter-spacing:-.28px; text-transform: uppercase;\">\r\n                                  Meeting Summary ✨\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td height=\"12\"></td>\r\n                              </tr>\r\n                            </table>\r\n                          </td>\r\n                        </tr>\r\n\r\n                        <tr>\r\n                          <td style=\"padding:0 0 15px;\">\r\n                            <div class=\"ai_notes_html_content\">\r\n                              <h2 style=\"\r\n      padding: 0 0 5px;\r\n      color: #000;\r\n      letter-spacing: -0.3px;\r\n      font: 700 16px/20px Arial, Helvetica, sans-serif, Inter;\r\n      margin: 25px 0 0 0;\r\n    \">Meeting Purpose</h2>\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0 0 25px 0;\r\n    \">\r\nDefine collaboration paths and review Forge Nano\'s battery product portfolio.\r\n</p>\r\n<h2 style=\"\r\n      padding: 0 0 5px;\r\n      color: #000;\r\n      letter-spacing: -0.3px;\r\n      font: 700 16px/20px Arial, Helvetica, sans-serif, Inter;\r\n      margin: 25px 0 0 0;\r\n    \">Key Takeaways</h2>\r\n<ul style=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0 0 25px 0;\r\n    \">\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=1266.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Strategic Partnership:</strong> Forge Nano (cell manufacturer) and Lithium Battery Co (pack assembler) will partner to offer end-to-end battery solutions, with Forge Nano funneling pack-assembly clients to Lithium Battery Co.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=441.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>New Product Portfolio:</strong> Forge Nano\'s new portfolio includes five cells (18650s, 21700s, drone) with immediate samples and contract manufacturing capacity (~400 MWh/yr) until its US gigafactory opens in Q1/Q2 2027.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \"><strong>Samsung Deal:</strong> Forge Nano is finalizing a deal to distribute and eventually manufacture Samsung 53G cells in the US, with a target price of &lt;$3/cell.</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=2072.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Drone Factory Project:</strong> Lithium Battery Co will partner on Forge Nano\'s proposal for a government-owned, commercially-assisted (GOGO CA) drone battery factory at RRAD, Texas, under the Sky Foundry Act.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n<h2 style=\"\r\n      padding: 0 0 5px;\r\n      color: #000;\r\n      letter-spacing: -0.3px;\r\n      font: 700 16px/20px Arial, Helvetica, sans-serif, Inter;\r\n      margin: 25px 0 0 0;\r\n    \">Topics</h2>\r\n<h3 style=\"\r\n      padding: 0 0 5px;\r\n      color: #000;\r\n      letter-spacing: -0.3px;\r\n      font: 700 14px/18px Arial, Helvetica, sans-serif, Inter;\r\n      margin: 0;\r\n    \">Forge Nano Overview &amp; Gigafactory Status</h3>\r\n<ul style=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0 0 25px 0;\r\n    \">\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=386.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Mission:</strong> Build a US-based battery supply chain for specialty applications (DoD, commercial) using its nano-coating technology.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=212.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Gigafactory:</strong> A $100M DOE grant is confirmed, resolving a prior delay.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n<ul style=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=306.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Timeline:</strong> Online in Q1/Q2 2027.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=398.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Goal:</strong> Achieve cost competitiveness (~$5/cell) against foreign and small-scale US manufacturers.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=373.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Financials:</strong> Closing a Series D round; targeting an IPO within 1–1.5 years.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n<h3 style=\"\r\n      padding: 0 0 5px;\r\n      color: #000;\r\n      letter-spacing: -0.3px;\r\n      font: 700 14px/18px Arial, Helvetica, sans-serif, Inter;\r\n      margin: 0;\r\n    \">Product Portfolio &amp; Availability</h3>\r\n<ul style=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0 0 25px 0;\r\n    \">\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=441.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Forge Nano\'s portfolio now has five distinct cells (18650s, 21700s) with new marketing names.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=498.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>D35A (18650):</strong> High-energy cell competitive with the LG MJ1.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n<ul style=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=884.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Availability:</strong> A-samples (pilot line) in Jan \'26; B-samples (production-ready) in Apr \'26.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=884.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Production:</strong> 150 MWh/yr via a Turkish CM.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=884.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Price:</strong> ~$4/cell (volume-dependent).<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=536.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>C35C (18650):</strong> DoD-specific cell (3.2 Ah, 100% US supply chain).<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n<ul style=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=968.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Status:</strong> Production paused pending Army testing. Available only via large, costly custom batches.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=588.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>F55A (21700):</strong> &quot;6T&quot; cell designed for low-temp cold crank power.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n<ul style=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=999.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Availability:</strong> Samples in Feb \'26.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=999.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Production:</strong> Current line capacity is 25k cells/yr. Expansion to 1M cells/yr requires a ~$10M investment, contingent on an offtake agreement.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=1040.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Price:</strong> ~$5/cell (target).<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=605.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Drone Cell (21700):</strong> Tabless design for very high power.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n<ul style=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=1102.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Availability:</strong> Samples in Jan \'26 (pre-orders open); B-samples in Apr \'26.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=1102.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Production:</strong> ~210–220 MWh/yr.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=1102.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Price:</strong> ~$7/cell.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=1063.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>UK-Made Cell:</strong> High-energy, lower-power cell available from a 100 MWh/yr line. More expensive due to exchange rates.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n<h3 style=\"\r\n      padding: 0 0 5px;\r\n      color: #000;\r\n      letter-spacing: -0.3px;\r\n      font: 700 14px/18px Arial, Helvetica, sans-serif, Inter;\r\n      margin: 0;\r\n    \">Strategic Partnerships &amp; Opportunities</h3>\r\n<ul style=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0 0 25px 0;\r\n    \">\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=1625.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Samsung Deal (Confidential):</strong> Forge Nano is finalizing a deal to distribute and eventually manufacture Samsung 53G cells in the US.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n<ul style=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=1819.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Model:</strong> Start as a distributor, then acquire a Samsung line from Korea, which Samsung will install and train Forge Nano staff to operate.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \"><strong>Price:</strong> Target of &lt;$3/cell.</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=1959.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>MOLLE Discussions:</strong> Similar discussions are ongoing with MOLLE to support US production of P50B cells.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n<ul style=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=1959.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Status:</strong> Less advanced than the Samsung deal.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=2017.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Price:</strong> At or better than current market rates.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=2072.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Sky Foundry Act (RRAD Drone Factory):</strong> Forge Nano was encouraged to proceed to Phase 2 of a proposal for a GOGO CA (Government Owned, Government Operated, Commercially Assisted) drone battery factory at Red River Army Depot (RRAD) in Texas.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n<ul style=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=2156.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Partnership:</strong> Lithium Battery Co will be the pack assembly partner.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=2361.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Action:</strong> Lithium Battery Co must provide a rough order of magnitude (ROM) budget and timeline (±15% accuracy) for the pack assembly portion. This is required for Forge Nano\'s Phase 2 pitch in three weeks.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h2 style=\"\r\n      padding: 0 0 5px;\r\n      color: #000;\r\n      letter-spacing: -0.3px;\r\n      font: 700 16px/20px Arial, Helvetica, sans-serif, Inter;\r\n      margin: 25px 0 0 0;\r\n    \">Next Steps</h2>\r\n<ul style=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0 0 25px 0;\r\n    \">\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=1571.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Forge Nano:</strong><span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n<ul style=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=1402.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Send term sheet draft for the strategic partnership.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=1483.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Send all updated cell spec sheets, including the Samsung 53G.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=2412.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Send the redacted RRAD drone factory proposal to Lithium Battery Co.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=1571.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>Lithium Battery Co:</strong><span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n<ul style=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=1402.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Review all materials and confirm cell volumes needed for current projects.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=2361.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Develop a ROM budget and timeline for the RRAD factory\'s pack assembly portion.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=2505.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\"><strong>All:</strong><span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n<ul style=\"\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      color: #d3d3d3;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<li style=\"\r\n      padding: 0 0 0 3px;\r\n      margin: 0 0 0 23px;\r\n      font-size: 21px;\r\n    \">\r\n<p style=\"\r\n      color: #606167;\r\n      font: 13px/18px Arial, Helvetica, sans-serif, Inter;\r\n      letter-spacing: -0.2px;\r\n      padding: 0;\r\n      margin: 0;\r\n    \">\r\n<a style=\"\r\n      color: #606167;\r\n      text-decoration-line: underline !important;\r\n      -webkit-text-decoration-color:#60616780;\r\n      text-decoration-color:#60616780;\r\n    \" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&timestamp=2505.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email\">Meet <strong>Monday, Oct 27, at 2:30 PM ET</strong> to finalize the RRAD factory budget and timeline.<span class=\"ico-hover\" style=\"\r\n        display:none;\r\n        font-size:0;\r\n        line-height:0;\r\n        vertical-align: middle;\r\n      \"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"\r\n        width:30px;\r\n        height:auto;\r\n        vertical-align:top;\r\n        margin: 0 0 0 5px;\r\n        border:none;\r\n      \"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n\r\n                            </div>\r\n                          </td>\r\n                        </tr>\r\n\r\n                        <tr>\r\n                          <td style=\"padding:1px 0 0;\">\r\n                            <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                              <tr class=\"active-t\">\r\n                                <td class=\"fs-18 lh-22\" align=\"center\" style=\"background:#00BEFF; mso-padding-alt:13px 15px; font:bold 20px/24px Arial, Helvetica, sans-serif, Inter; border-radius:6px;\">\r\n                                  <a style=\"color:#000; text-decoration:none; display:block; padding:13px 15px;\" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=summary&amp;utm_campaign=postmeetingsummary&amp;utm_content=view_recording_button&amp;utm_medium=email\">View Meeting →</a>\r\n                                </td>\r\n                              </tr>\r\n                            </table>\r\n                          </td>\r\n                        </tr>\r\n\r\n\r\n                        <tr height=\"25\"></tr>\r\n                        <tr>\r\n                          <td>\r\n                            <table width=\"560\" style=\"max-width:560px; width: 560px; background-color: #00BEFF1A;\">\r\n                              <tr>\r\n                                <td style=\"width: 250px; padding: 20px 5px 8px 20px; vertical-align: top;\">\r\n                                  <table>\r\n                                    <tr>\r\n                                      <td>\r\n                                        <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/robot.png\" width=\"32\">\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr height=\"10\"></tr>\r\n                                    <tr>\r\n                                      <td style=\"font:700 14px/16px Arial, Helvetica, sans-serif, Inter; color:#2D2D31; letter-spacing:-.4px;\">\r\n                                        Ask Fathom!\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td style=\"font:500 14px/16px Arial, Helvetica, sans-serif, Inter; color:#3D3D44; letter-spacing:-.28px;\">\r\n                                        Ask our AI Assistant for answers and insights. It\'s ChatGPT for your meetings!\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr height=\"10\"></tr>\r\n                                    <tr>\r\n                                      <td>\r\n                                        <a class=\"underline\" style=\"font:500 14px/16px Arial, Helvetica, sans-serif, Inter; color:#0070AC; letter-spacing:-.28px;\" href=\"https://fathom.video/share/dNHXjzdUnWobGz8kaEy9MZx9vxxsxx8g?tab=ask_fathom&amp;utm_campaign=postmeetingsummary&amp;utm_content=ask_fathom_footer&amp;utm_medium=email\">Try Ask Fathom →</a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    </table>\r\n                                </td>\r\n                                <td style=\"padding: 8px;\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ask-fathom-screenshot.png\" width=\"310\">\r\n                                </td>\r\n                              </tr>\r\n                            </table>\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n\r\n                  <tr>\r\n                    <td style=\"padding:24px 0 0;\">\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tr>\r\n                          <th width=\"250\" align=\"center\" style=\"font:700 12px/17px Arial, Helvetica, sans-serif, Inter500; color:#6C6D72; vertical-align:top;\">\r\n                              <table cellpadding=\"0\" cellspacing=\"0\">\r\n                                  <tr>\r\n                                    <td style=\"font:700 13px/28px Arial, Helvetica, sans-serif, Inter; color:#000;\">\r\n                                      Never take notes again.\r\n                                      <a class=\"underline\" style=\"color:#0070AC; text-decoration:underline;\" href=\"https://fathom.video/invite/-CHKVA?utm_medium=email&amp;utm_campaign=postmeetingsummary&amp;utm_content=footer\">Sign up for Free</a>\r\n                                    </td>\r\n                                  </tr>\r\n                                    <tr>\r\n                                      <td style=\"font:500 11px/13px Arial, Helvetica, sans-serif, Inter500; color:#6C6D72;\">\r\n                                        🎁 Referral bonus: Sign up now and unlock a free month of Premium for you and Jordan\r\n                                      </td>\r\n                                    </tr>\r\n                              </table>\r\n                          </th>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                  <tr>\r\n                    <td height=\"20\"></td>\r\n                  </tr>\r\n                  <tr>\r\n                    <td>\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tr>\r\n                          <td align=\"center\">\r\n                            <a style=\"text-decoration:none;\" href=\"https://www.g2.com/products/fathom-2021-09-22/reviews\">\r\n                              <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/rating.png\" width=\"153\">\r\n                            </a>\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </table>\r\n  </body>\r\n</html>\r\n','\r\n\r\n  \r\n    \r\n    FATHOM\r\n    \r\n    \r\n    \r\n    \r\n      a{\r\n        outline:none;\r\n        color:#00BEFF;\r\n        text-decoration:underline;\r\n      }\r\n      a:hover{text-decoration:none!important;}\r\n      .h-u a{text-decoration:none;}\r\n      .h-u a:hover{text-decoration:underline!important;}\r\n      a[x-apple-data-detectors]{color:inherit!important; text-decoration:none!important;}\r\n      a[href^=\"tel\"]:hover{text-decoration:none!important;}\r\n      .active-i a:hover,\r\n      .active-t td:hover{opacity:0.8;}\r\n      .active-i a,\r\n      .active-t td{transition:all 0.3s ease;}\r\n      a img{border:none;}\r\n      b, strong{font-weight:700;}\r\n      p{margin:0;}\r\n      th{padding:0;}\r\n      table td{mso-line-height-rule:exactly;}\r\n      #emailBody #emailWrapper [x-apple-data-detectors]{color:inherit!important;text-decoration:inherit!important;}\r\n      .l-white a{color:#fff;}\r\n      :root{color-scheme:light;}\r\n      [style*=\"Inter\"]{font-family:\'Inter\', Arial, Helvetica, sans-serif !important}\r\n      [style*=\"Inter500\"]{font-weight:500!important; font-family:\'Inter\', Arial, Helvetica, sans-serif !important}\r\n      .ico-block-02 a:hover{color:#fff!important;}\r\n      .ico-block-03 a:hover {text-decoration:underline!important; color:#20C5FF!important;}\r\n      .ico-block-03 a:hover .ico-hover{display:inline-block!important;}\r\n      .ico-block-03 a:hover .ico-hover img{display:block; width:36px!important; height:auto!important;}\r\n      @media only screen and (max-width:817px) {\r\n        .w-100p{width:100%!important;}\r\n        .tflex{display:block!important;width:100%!important;}\r\n        .f-l{float:left!important;}\r\n        .f-r{float:right!important;}\r\n        .ta-l{text-align:left!important;}\r\n        .ta-r{text-align:right!important;}\r\n        .hm{display:none!important;width:0!important;height:0!important;padding:0!important;font-size:0!important;line-height:0!important;}\r\n        .w-8{width:8px!important;}\r\n        .w-10{width:10px!important;}\r\n        .wi-100p img{width:100%!important;height:auto!important;}\r\n        .p-0{padding:0!important;}\r\n        .ptb-20{padding-top:20px!important;padding-bottom:20px!important;}\r\n        .ptb-30{padding-top:30px!important;padding-bottom:30px!important;}\r\n        .pl-30{padding-left:30px!important;}\r\n        .pt-0{padding-top:0!important;}\r\n        .pt-5{padding-top:5px!important;}\r\n        .pt-15{padding-top:15px!important;}\r\n        .pt-20{padding-top:20px!important;}\r\n        .pb-9{padding-bottom:9px!important;}\r\n        .pb-10{padding-bottom:10px!important;}\r\n        .pb-20{padding-bottom:20px!important;}\r\n        .fs-13{font-size:13px!important;}\r\n        .fs-14{font-size:14px!important;}\r\n        .fs-16{font-size:16px!important;}\r\n        .fs-18{font-size:18px!important;}\r\n        .fs-20{font-size:20px!important;}\r\n        .fs-24{font-size:24px!important;}\r\n        .lh-17{line-height:17px!important;}\r\n        .lh-18{line-height:18px!important;}\r\n        .lh-20{line-height:20px!important;}\r\n        .lh-22{line-height:22px!important;}\r\n        .lh-24{line-height:24px!important;}\r\n        .lh-25{line-height:25px!important;}\r\n        .lh-30{line-height:30px!important;}\r\n        .maxw-560{max-width:560px!important;}\r\n        .ico-holder{ float:left; width:16px;}\r\n      }\r\n      @media only screen and (max-width:389px) {\r\n        .fs-11-390{font-size:11px!important;}\r\n        .lh-14-390{line-height:13px!important;}\r\n      }\r\n      @media (prefers-dark-interface) {body{-apple-color-filter:none;}}\r\n      .ai_notes_html_content a:hover {\r\n        color: #00beff;\r\n        text-decoration-line: underline !important;\r\n        -webkit-text-decoration-color:#54565B;\r\n        text-decoration-color:#54565B;\r\n      }\r\n      .ai_notes_html_content a:hover img {\r\n        display: inline-block;\r\n        width: 48px !important;\r\n      }\r\n      .ai_notes_html_content a:hover .ico-hover {\r\n        display:inline-block!important;\r\n      }\r\n      .ai_notes_html_content a:hover .ico-hover img {\r\n        display:block;\r\n        width:36px!important;\r\n        height:auto!important;\r\n      }\r\n      .ai_notes_html_content ol li::marker {\r\n        font-size: 16px !important;\r\n      }\r\n      .underline {\r\n        text-decoration-line: underline;\r\n        text-decoration-style: solid;\r\n        text-decoration-skip-ink: none;\r\n        text-decoration-thickness: auto;\r\n        text-underline-offset: auto;\r\n        text-underline-position: from-font;\r\n      }\r\n    \r\n    \r\n      @import url(https://fonts.googleapis.com/css?family=Inter:300,400,500,600,700);\r\n    \r\n  \r\n  \r\n    Meeting Purpose\r\n\r\nDefine collaboration paths and review Forge Nano&#39;s battery product portfolio.\r\n\r\nKey Takeaways\r\n\r\n  - Strategic Partnership: Forge Nano (cell manufacturer) and Lithium Battery Co (pack assembler) will partner to offer end-to-end battery solutions, with Forge Nano funneling pack-assembly clients to Lithium Battery Co.\r\n  - New Product Portfolio: Forge Nano&#39;s new portfolio includes five cells (18650s, 21700s, drone) with immediate samples and contract manufacturing capacity (~400 MWh/yr) until its US gigafactory opens in Q1/Q2 2027.\r\n  - Samsung Deal: Forge Nano is finalizing a deal to distribute and eventually manufacture Samsung 53G cells in the US, with a target price of &lt;$3/cell.\r\n  - Drone Factory Project: Lithium Battery Co will partner on Forge Nano&#39;s proposal for a government-owned, commercially-assisted (GOGO CA) drone battery factory at RRAD, Texas, under the Sky Foundry Act.\r\n\r\nTopics\r\n\r\nForge Nano Overview &amp; Gigafactory Status\r\n\r\n  - Mission: Build a US-based battery supply chain for specialty applications (DoD, commercial) using its nano-coating technology.\r\n  - Gigafactory: A $100M DOE grant is confirmed, resolving a prior delay.\r\n      - Timeline: Online in Q1/Q2 2027.\r\n      - Goal: Achieve cost competitiveness (~$5/cell) against foreign and small-scale US manufacturers.\r\n  - Financials: Closing a Series D round; targeting an IPO within 1–1.5 years.\r\n\r\nProduct Portfolio &amp; Availability\r\n\r\n  - Forge Nano&#39;s portfolio now has five distinct cells (18650s, 21700s) with new marketing names.\r\n  - D35A (18650): High-energy cell competitive with the LG MJ1.\r\n      - Availability: A-samples (pilot line) in Jan &#39;26; B-samples (production-ready) in Apr &#39;26.\r\n      - Production: 150 MWh/yr via a Turkish CM.\r\n      - Price: ~$4/cell (volume-dependent).\r\n  - C35C (18650): DoD-specific cell (3.2 Ah, 100% US supply chain).\r\n      - Status: Production paused pending Army testing. Available only via large, costly custom batches.\r\n  - F55A (21700): &quot;6T&quot; cell designed for low-temp cold crank power.\r\n      - Availability: Samples in Feb &#39;26.\r\n      - Production: Current line capacity is 25k cells/yr. Expansion to 1M cells/yr requires a ~$10M investment, contingent on an offtake agreement.\r\n      - Price: ~$5/cell (target).\r\n  - Drone Cell (21700): Tabless design for very high power.\r\n      - Availability: Samples in Jan &#39;26 (pre-orders open); B-samples in Apr &#39;26.\r\n      - Production: ~210–220 MWh/yr.\r\n      - Price: ~$7/cell.\r\n  - UK-Made Cell: High-energy, lower-power cell available from a 100 MWh/yr line. More expensive due to exchange rates.\r\n\r\nStrategic Partnerships &amp; Opportunities\r\n\r\n  - Samsung Deal (Confidential): Forge Nano is finalizing a deal to distribute and eventually manufacture Samsung 53G cells in the US.\r\n      - Model: Start as a distributor, then acquire a Samsung line from Korea, which Samsung will install and train Forge Nano staff to operate.\r\n      - Price: Target of &lt;$3/cell.\r\n  - MOLLE Discussions: Similar discussions are ongoing with MOLLE to support US production of P50B cells.\r\n      - Status: Less advanced than the Samsung deal.\r\n      - Price: At or better than current market rates.\r\n  - Sky Foundry Act (RRAD Drone Factory): Forge Nano was encouraged to proceed to Phase 2 of a proposal for a GOGO CA (Government Owned, Government Operated, Commercially Assisted) drone battery factory at Red River Army Depot (RRAD) in Texas.\r\n      - Partnership: Lithium Battery Co will be the pack assembly partner.\r\n      - Action: Lithium Battery Co must provide a rough order of magnitude (ROM) budget and timeline (±15% accuracy) for the pack assembly portion. This is required for Forge Nano&#39;s Phase 2 pitch in three weeks.\r\n\r\nNext Steps\r\n\r\n  - Forge Nano:\r\n      - Send term sheet draft for the strategic partnership.\r\n      - Send all updated cell spec sheets, including the Samsung 53G.\r\n      - Send the redacted RRAD drone factory proposal to Lithium Battery Co.\r\n  - Lithium Battery Co:\r\n      - Review all materials and confirm cell volumes needed for current projects.\r\n      - Develop a ROM budget and timeline for the RRAD factory&#39;s pack assembly portion.\r\n  - All:\r\n      - Meet Monday, Oct 27, at 2:30 PM ET to finalize the RRAD factory budget and timeline.\r\n\r\n    \r\n      \r\n        \r\n          \r\n            \r\n              \r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            \r\n                              \r\n                            \r\n                          \r\n                            \r\n                              \r\n                                Get your own FREE AI Meeting Assistant\r\n                              \r\n                                \r\n                                \r\n                                  \r\n                                \r\n                            \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n              \r\n            \r\n            \r\n              \r\n                \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            \r\n                              \r\n                                \r\n                                  \r\n                                    \r\n                                      \r\n                                        Meeting with Lithium Battery Co\r\n                                      \r\n                                    \r\n                                  \r\n                                \r\n                              \r\n                              \r\n                                \r\n                                  Next Steps - Forge Nano Collaboration\r\n                                \r\n                              \r\n                              \r\n                                \r\n                                  October 23, 2025&nbsp;&nbsp;&bull;&nbsp;\r\n                                  49 mins&nbsp; &bull;&nbsp;\r\n                                  View Meeting\r\n                                  or Ask Fathom\r\n                                \r\n                              \r\n                            \r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            Action Items ✨\r\n                          \r\n                        \r\n                        \r\n                          \r\n                            \r\n                              \r\n                                \r\n                                  \r\n                                \r\n                                \r\n                                \r\n                                  \r\n                                    \r\n                                      \r\n                                        \r\n                                          Email Jordan: deck, updated spec sheets, Samsung 53G spec, term sheet; request volume/spec check + Samsung 53G qty\r\n                                        \r\n                                      \r\n                                    \r\n                                    \r\n                                      \r\n                                        James Trevey\r\n                                      \r\n                                    \r\n                                  \r\n                                \r\n                              \r\n                              \r\n                                \r\n                                  \r\n                                \r\n                                \r\n                                \r\n                                  \r\n                                    \r\n                                      \r\n                                        \r\n                                          Email Jordan: redacted RRAD/Sky Foundry proposal; request pack-side ROM budget/timeline (±15%)\r\n                                        \r\n                                      \r\n                                    \r\n                                    \r\n                                      \r\n                                        James Trevey\r\n                                      \r\n                                    \r\n                                  \r\n                                \r\n                              \r\n                              \r\n                                \r\n                                  \r\n                                \r\n                                \r\n                                \r\n                                  \r\n                                    \r\n                                      \r\n                                        \r\n                                          Schedule RRAD/Sky Foundry call w/ Jordan, Rick, Brian; Oct 27 2:30–3 ET\r\n                                        \r\n                                      \r\n                                    \r\n                                    \r\n                                      \r\n                                        James Trevey\r\n                                      \r\n                                    \r\n                                  \r\n                                \r\n                              \r\n                            \r\n                          \r\n                        \r\n\r\n                        \r\n                          \r\n                            \r\n                              \r\n                                \r\n                                  Meeting Summary ✨\r\n                                \r\n                              \r\n                              \r\n                                \r\n                              \r\n                            \r\n                          \r\n                        \r\n\r\n                        \r\n                          \r\n                            \r\n                              Meeting Purpose\r\n\r\nDefine collaboration paths and review Forge Nano\'s battery product portfolio.\r\n\r\nKey Takeaways\r\n\r\n\r\n\r\nStrategic Partnership: Forge Nano (cell manufacturer) and Lithium Battery Co (pack assembler) will partner to offer end-to-end battery solutions, with Forge Nano funneling pack-assembly clients to Lithium Battery Co.\r\n\r\n\r\n\r\n\r\nNew Product Portfolio: Forge Nano\'s new portfolio includes five cells (18650s, 21700s, drone) with immediate samples and contract manufacturing capacity (~400 MWh/yr) until its US gigafactory opens in Q1/Q2 2027.\r\n\r\n\r\n\r\nSamsung Deal: Forge Nano is finalizing a deal to distribute and eventually manufacture Samsung 53G cells in the US, with a target price of &lt;$3/cell.\r\n\r\n\r\n\r\nDrone Factory Project: Lithium Battery Co will partner on Forge Nano\'s proposal for a government-owned, commercially-assisted (GOGO CA) drone battery factory at RRAD, Texas, under the Sky Foundry Act.\r\n\r\n\r\n\r\nTopics\r\nForge Nano Overview &amp; Gigafactory Status\r\n\r\n\r\n\r\nMission: Build a US-based battery supply chain for specialty applications (DoD, commercial) using its nano-coating technology.\r\n\r\n\r\n\r\n\r\nGigafactory: A $100M DOE grant is confirmed, resolving a prior delay.\r\n\r\n\r\n\r\n\r\nTimeline: Online in Q1/Q2 2027.\r\n\r\n\r\n\r\n\r\nGoal: Achieve cost competitiveness (~$5/cell) against foreign and small-scale US manufacturers.\r\n\r\n\r\n\r\n\r\n\r\n\r\nFinancials: Closing a Series D round; targeting an IPO within 1–1.5 years.\r\n\r\n\r\n\r\nProduct Portfolio &amp; Availability\r\n\r\n\r\n\r\nForge Nano\'s portfolio now has five distinct cells (18650s, 21700s) with new marketing names.\r\n\r\n\r\n\r\n\r\nD35A (18650): High-energy cell competitive with the LG MJ1.\r\n\r\n\r\n\r\n\r\nAvailability: A-samples (pilot line) in Jan \'26; B-samples (production-ready) in Apr \'26.\r\n\r\n\r\n\r\n\r\nProduction: 150 MWh/yr via a Turkish CM.\r\n\r\n\r\n\r\n\r\nPrice: ~$4/cell (volume-dependent).\r\n\r\n\r\n\r\n\r\n\r\n\r\nC35C (18650): DoD-specific cell (3.2 Ah, 100% US supply chain).\r\n\r\n\r\n\r\n\r\nStatus: Production paused pending Army testing. Available only via large, costly custom batches.\r\n\r\n\r\n\r\n\r\n\r\n\r\nF55A (21700): &quot;6T&quot; cell designed for low-temp cold crank power.\r\n\r\n\r\n\r\n\r\nAvailability: Samples in Feb \'26.\r\n\r\n\r\n\r\n\r\nProduction: Current line capacity is 25k cells/yr. Expansion to 1M cells/yr requires a ~$10M investment, contingent on an offtake agreement.\r\n\r\n\r\n\r\n\r\nPrice: ~$5/cell (target).\r\n\r\n\r\n\r\n\r\n\r\n\r\nDrone Cell (21700): Tabless design for very high power.\r\n\r\n\r\n\r\n\r\nAvailability: Samples in Jan \'26 (pre-orders open); B-samples in Apr \'26.\r\n\r\n\r\n\r\n\r\nProduction: ~210–220 MWh/yr.\r\n\r\n\r\n\r\n\r\nPrice: ~$7/cell.\r\n\r\n\r\n\r\n\r\n\r\n\r\nUK-Made Cell: High-energy, lower-power cell available from a 100 MWh/yr line. More expensive due to exchange rates.\r\n\r\n\r\n\r\nStrategic Partnerships &amp; Opportunities\r\n\r\n\r\n\r\nSamsung Deal (Confidential): Forge Nano is finalizing a deal to distribute and eventually manufacture Samsung 53G cells in the US.\r\n\r\n\r\n\r\n\r\nModel: Start as a distributor, then acquire a Samsung line from Korea, which Samsung will install and train Forge Nano staff to operate.\r\n\r\n\r\n\r\nPrice: Target of &lt;$3/cell.\r\n\r\n\r\n\r\n\r\n\r\nMOLLE Discussions: Similar discussions are ongoing with MOLLE to support US production of P50B cells.\r\n\r\n\r\n\r\n\r\nStatus: Less advanced than the Samsung deal.\r\n\r\n\r\n\r\n\r\nPrice: At or better than current market rates.\r\n\r\n\r\n\r\n\r\n\r\n\r\nSky Foundry Act (RRAD Drone Factory): Forge Nano was encouraged to proceed to Phase 2 of a proposal for a GOGO CA (Government Owned, Government Operated, Commercially Assisted) drone battery factory at Red River Army Depot (RRAD) in Texas.\r\n\r\n\r\n\r\n\r\nPartnership: Lithium Battery Co will be the pack assembly partner.\r\n\r\n\r\n\r\n\r\nAction: Lithium Battery Co must provide a rough order of magnitude (ROM) budget and timeline (±15% accuracy) for the pack assembly portion. This is required for Forge Nano\'s Phase 2 pitch in three weeks.\r\n\r\n\r\n\r\n\r\n\r\nNext Steps\r\n\r\n\r\n\r\nForge Nano:\r\n\r\n\r\n\r\n\r\nSend term sheet draft for the strategic partnership.\r\n\r\n\r\n\r\n\r\nSend all updated cell spec sheets, including the Samsung 53G.\r\n\r\n\r\n\r\n\r\nSend the redacted RRAD drone factory proposal to Lithium Battery Co.\r\n\r\n\r\n\r\n\r\n\r\n\r\nLithium Battery Co:\r\n\r\n\r\n\r\n\r\nReview all materials and confirm cell volumes needed for current projects.\r\n\r\n\r\n\r\n\r\nDevelop a ROM budget and timeline for the RRAD factory\'s pack assembly portion.\r\n\r\n\r\n\r\n\r\n\r\n\r\nAll:\r\n\r\n\r\n\r\n\r\nMeet Monday, Oct 27, at 2:30 PM ET to finalize the RRAD factory budget and timeline.\r\n\r\n\r\n\r\n\r\n\r\n\r\n                            \r\n                          \r\n                        \r\n\r\n                        \r\n                          \r\n                            \r\n                              \r\n                                \r\n                                  View Meeting →\r\n                                \r\n                              \r\n                            \r\n                          \r\n                        \r\n\r\n\r\n                        \r\n                        \r\n                          \r\n                            \r\n                              \r\n                                \r\n                                  \r\n                                    \r\n                                      \r\n                                        \r\n                                      \r\n                                    \r\n                                    \r\n                                    \r\n                                      \r\n                                        Ask Fathom!\r\n                                      \r\n                                    \r\n                                    \r\n                                      \r\n                                        Ask our AI Assistant for answers and insights. It\'s ChatGPT for your meetings!\r\n                                      \r\n                                    \r\n                                    \r\n                                    \r\n                                      \r\n                                        Try Ask Fathom →\r\n                                      \r\n                                    \r\n                                    \r\n                                \r\n                                \r\n                                  \r\n                                \r\n                              \r\n                            \r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n\r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                              \r\n                                  \r\n                                    \r\n                                      Never take notes again.\r\n                                      Sign up for Free\r\n                                    \r\n                                  \r\n                                    \r\n                                      \r\n                                        🎁 Referral bonus: Sign up now and unlock a free month of Premium for you and Jordan\r\n                                      \r\n                                    \r\n                              \r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                  \r\n                    \r\n                  \r\n                  \r\n                    \r\n                      \r\n                        \r\n                          \r\n                            \r\n                              \r\n                            \r\n                          \r\n                        \r\n                      \r\n                    \r\n                  \r\n                \r\n              \r\n            \r\n          \r\n        \r\n      \r\n    \r\n  \r\n\r\n',0,0,0,0,0,0,'2025-10-23 15:50:54','2025-12-09 19:29:58','2025-12-09 19:29:58','2025-12-09 19:29:58',NULL,NULL,NULL),
(878,4,'<calendar-3c51ae9a-d64a-4514-b8ba-8d7838c8bdce@google.com>',NULL,NULL,'Invitation: Lithium-FN Skyfoundary Support @ Mon Oct 27, 2025 2:30pm - 3pm (EDT) (null)','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v154/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v144/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v118/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation from Jordan Wroblewski\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"_60q30c1g60o30e1i60o4ac1g60rj8gpl88rj2c1h84s34h9g60s30c1g60o30c1g88p48ga185342cpj6gq48gpg64o30c1g60o30c1g60o30c1g60o32c1g60o30c1g60o4ahho8cs3eda28csj0dpk690j4ghg70qkcdhj8kqj8ha28l10\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Lithium-FN Skyfoundary Support</span><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20251027T183000Z\"></time><time itemprop=\"endDate\" datetime=\"20251027T190000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?\r\nJoin the meeting now\r\nMeeting ID: 229 147 631 939 7\r\nPasscode: Rf67Ra9q\r\n_____________________</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><div class=\"\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span><br>________________________________________________________________________________<br>Microsoft Teams Need help?<u></u><br>Join the meeting now<u></u><br>Meeting ID: 229 147 631 939 7<br>Passcode: Rf67Ra9q<br>________________________________<br>For organizers: Meeting options<u></u><br>[<a href=\"https://www.google.com/url?q=https%3A%2F%2Fwww.forgenano.com%2Fwp-content%2Fuploads%2F2019%2F07%2FWebLogoNew.png&amp;sa=D&amp;source=calendar&amp;ust=1761667080000000&amp;usg=AOvVaw3RRHEef3YcIab-K6SDFlR7\" target=\"_blank\">https://www.forgenano.com/wp-content/uploads/2019/07/WebLogoNew.png</a>]<br>Org help<u></u> | Privacy and security<u></u><br>________________________________________________________________________________<br></span><meta itemprop=\"description\" content=\"\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?\r\nJoin the meeting now\r\nMeeting ID: 229 147 631 939 7\r\nPasscode: Rf67Ra9q\r\n________________________________\r\nFor organizers: Meeting options\r\n[https://www.forgenano.com/wp-content/uploads/2019/07/WebLogoNew.png]\r\nOrg help | Privacy and security\r\n________________________________________________________________________________\r\n\"/></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20251027T183000Z\"></time><time itemprop=\"endDate\" datetime=\"20251027T190000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Monday Oct 27, 2025 ⋅ 2:30pm – 3pm (Eastern Time - New York)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Location</h2></td></tr></table><span itemprop=\"location\" itemscope itemtype=\"http://schema.org/Place\"><span itemprop=\"name\" class=\"primary-text notranslate\" style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\">Microsoft Teams Meeting</span><br/><a href=\"https://www.google.com/maps/search/Microsoft+Teams+Meeting?hl=en\" class=\"accent-text underline-on-hover\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" itemprop=\"map\">View map</a></span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jtrevey@pneumaticoat.com\">jtrevey@pneumaticoat.com</a></span><meta itemprop=\"email\" content=\"jtrevey@pneumaticoat.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"jtrevey@pneumaticoat.com\"/><meta itemprop=\"email\" content=\"jtrevey@pneumaticoat.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jordan@lithiumbatterycompany.com\">Jordan Wroblewski</a></span><meta itemprop=\"email\" content=\"jordan@lithiumbatterycompany.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - creator</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a></span><meta itemprop=\"email\" content=\"brian@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:nathan@lithiumbatterycompany.com\">Nathan Staron</a></span><meta itemprop=\"email\" content=\"nathan@lithiumbatterycompany.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','Lithium-FN Skyfoundary Support\r\nMonday Oct 27, 2025 ⋅ 2:30pm – 3pm\r\nEastern Time - New York\r\n\r\nLocation\r\nMicrosoft Teams Meeting	\r\nhttps://www.google.com/maps/search/Microsoft+Teams+Meeting?hl=en\r\n\r\n\r\n\r\n\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?\r\nJoin the meeting now\r\nMeeting ID: 229 147 631 939 7\r\nPasscode: Rf67Ra9q\r\n________________________________\r\nFor organizers: Meeting options\r\n[https://www.forgenano.com/wp-content/uploads/2019/07/WebLogoNew.png]\r\nOrg help | Privacy and security\r\n________________________________________________________________________________\r\n\r\n\r\nOrganizer\r\njtrevey@pneumaticoat.com\r\njtrevey@pneumaticoat.com\r\n\r\nGuests\r\njtrevey@pneumaticoat.com - organizer\r\nJordan Wroblewski - creator\r\nbrian@mavrix.one\r\nrick@mavrix.one\r\nNathan Staron\r\n\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-10-23 15:58:52','2025-12-09 19:29:58','2025-12-09 19:29:58','2025-12-09 19:29:58',NULL,NULL,NULL),
(879,4,' <SA1PR18MB4824194D80EE14D942F855E3A1F0A@SA1PR18MB4824.namprd18.prod.outlook.com>',NULL,NULL,'Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration','jtrevey@forgenano.com','James Trevey','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nJordan,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nThanks for the call today. Attached are a bunch of documents:</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<ul style=\"margin-top: 0px; margin-bottom: 0px; list-style-type: disc;\" data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:false,&quot;unorderedStyleType&quot;:1}\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\" class=\"elementToProof\">spec sheets for all (5) FN Products</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\" class=\"elementToProof\">spec sheet for the Samsung 53G</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\" class=\"elementToProof\">spec sheet for the Moli P50B</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\" class=\"elementToProof\">Presentation from our call with ballpark cell availability and pricing</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\" class=\"elementToProof\">Term sheet for capturing our relationship interests</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\" class=\"elementToProof\">Skyfoundary proposal</div>\r\n</li></ul>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nI have your volumes from the ProgramProduct excel sheet that I\'ve plugged into the term sheet for now as a first draft. On your end I captured the following action items:</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<ul style=\"margin-top: 0px; margin-bottom: 0px; list-style-type: disc;\" data-editing-info=\"{&quot;applyListStyleFromLevel&quot;:false,&quot;unorderedStyleType&quot;:1}\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\" class=\"elementToProof\">Review all documents in this email and confirm volumes and provide first pass review on the term sheet</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<div role=\"presentation\" class=\"elementToProof\">Review the Skyfoundary proposal and put together a first-pass budget/plan to support Forge as a partner</div>\r\n</li></ul>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nI am out tomorrow for personal matters but look forward to our discussion on Monday.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nJames</div>\r\n<div style=\"font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<hr style=\"display: inline-block; width: 98%;\">\r\n<div style=\"font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, October 22, 2025 9:45 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;jtrevey@forgenano.com&gt;<br>\r\n<b>Cc:</b>&nbsp;Will McKenna &lt;WMcKenna@forgenano.com&gt;; Daniel &lt;dansheridanmusic@gmail.com&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration </div>\r\n<div style=\"font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr;\">You bet,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Speak with you tomorrow.&nbsp;</div>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; color: black;\"><br>\r\n</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; color: black;\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: black;\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: blue;\"><u>jordan<a style=\"color: blue; margin: 0px;\" class=\"OWAAutoLink\" id=\"OWAd0bf4139-d110-2b14-2e7d-f838dea323c6\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: rgb(5, 99, 193);\"><a style=\"margin-top: 0px; margin-bottom: 0px;\" data-auth=\"NotApplicable\" class=\"OWAAutoLink\" id=\"OWA491b8ae0-354c-d404-4a80-c7e9f97e7013\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,RCp_srnsn8TsHi-Y90KYoNQPNLUs9Z2k6AQ2a8mY4AU8XQa0dJ0qeugNm0mDw--U4uH_iIRb9IN4Nb3dl2ctTPPmCoYcMeCAkzmhYm7mlpPXnMYFHVt8&amp;typo=1\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div style=\"direction: ltr;\">On Wed, Oct 22, 2025 at 11:34 AM James Trevey &lt;<a class=\"OWAAutoLink\" id=\"OWAa31267f6-c393-7fea-dc8a-2e771875250b\" href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin: 0px 0px 0px 0.8ex; padding-left: 1ex; border-left: 1px solid rgb(204, 204, 204);\">\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nperfect. I look forward to speaking with you then!</div>\r\n<div id=\"x_m_5154054507612261457appendonsend\"></div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div id=\"x_m_5154054507612261457divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a class=\"OWAAutoLink\" id=\"OWA95e85b38-b96c-174d-e756-81f1bec2a1ff\" href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, October 22, 2025 9:30 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a class=\"OWAAutoLink\" id=\"OWAd1de4bb3-03ed-f1d6-f7e4-1848df71c103\" href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Will McKenna &lt;<a class=\"OWAAutoLink\" id=\"OWA8bded2a7-9490-66c0-1166-46535ffa61f0\" href=\"mailto:WMcKenna@forgenano.com\">WMcKenna@forgenano.com</a>&gt;; Daniel &lt;<a class=\"OWAAutoLink\" id=\"OWA5cab2c66-aa13-c490-cc32-3f94f13d8838\" href=\"mailto:dansheridanmusic@gmail.com\">dansheridanmusic@gmail.com</a>&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a class=\"OWAAutoLink\" id=\"OWA42851c95-8020-51f8-373b-55e4c94f515b\" href=\"mailto:nathan@lithiumbatterycompany.com\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction: ltr;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr;\">Hi James,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">I can do tomorrow at 9am MST.&nbsp;&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Let me know if that still works for you and I can send you over an invite.</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Best,</div>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; color: black;\"><br>\r\n</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; color: black;\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: black;\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: blue;\"><u>jordan<a style=\"color: blue; margin: 0px;\" class=\"OWAAutoLink\" id=\"OWA79c48f2b-7c75-15f7-0c38-0a8a933b49ef\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: rgb(5, 99, 193);\"><a style=\"margin-top: 0px; margin-bottom: 0px;\" data-auth=\"NotApplicable\" class=\"OWAAutoLink\" id=\"OWAc61fd127-5390-c059-5dcd-e6ec1ef6d2b9\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,irabj1pPRcbHt7fZTnVGlp-D5OWgJo5J-DJVmYysbSINfzIevG80IYq97Jraq-OV6w6IJC3gu0pHz4oFYfW4xcnb3n-PwXqRHBE_AugLqCnyxkrk6RI,&amp;typo=1\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">On Tue, Oct 21, 2025 at 6:09 PM James Trevey &lt;<a class=\"OWAAutoLink\" id=\"OWA873dbf9f-ca2b-ea71-cec5-8029b0003dfb\" href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin: 0px 0px 0px 0.8ex; padding-left: 1ex; border-left: 1px solid rgb(204, 204, 204);\">\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nHey Jordan,&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nI am back from 3 weeks of travel and ready to get sorted here. Tomorrow is sunk, but on Thursday I can do 9am MT or 12:30pm MT. Do either work for you? If not, I have the following next week:</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n27th: 11:30-1pm MT</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n28th: 8am MT, 11am MT, after 1pm MT</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n29th: after 1pm MT</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n30th: after 10am MT</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nLet me know what works.</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nJames</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div style=\"direction: ltr; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a class=\"OWAAutoLink\" id=\"OWA81571a2c-6c21-2436-85b5-8714e8b66c05\" href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Monday, October 20, 2025 5:12 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a class=\"OWAAutoLink\" id=\"OWA1e87c462-b83e-2b9c-f923-2ac81a62cf8d\" href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a class=\"OWAAutoLink\" id=\"OWA31dc8928-3d8b-0f48-12bd-d8b3c385d531\" href=\"mailto:dansheridanmusic@gmail.com\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a class=\"OWAAutoLink\" id=\"OWA542618ae-28b3-7246-75f5-03485d9c3649\" href=\"mailto:nathan@lithiumbatterycompany.com\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction: ltr; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr;\">Hi James,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">I am out of town as well.&nbsp; How does your Wednesday look?&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Looking forward to catching up.</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><u>jordan<a style=\"margin: 0px;\" class=\"OWAAutoLink\" id=\"OWA2ec3caf6-8cfd-8a8d-d7e5-54d935ffa458\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"color: rgb(255, 255, 255); background-color: rgba(255, 255, 255, 0);\"><a style=\"margin-top: 0px; margin-bottom: 0px; background-color: rgba(255, 255, 255, 0);\" data-auth=\"NotApplicable\" class=\"OWAAutoLink\" id=\"OWAe825f741-6e69-fe40-fbd6-457f5c25b3a9\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,kcAZ-rF3D0Z_d8KzW-apTAtlzHQofd8D2ZjbELiCHZPsqOhCV8Xd_fUJ6ZWDkt-2fgJod-EPR6FfR9gTPQj_LmrIjU3cEOjFP4Vi0A3Pa8jqtC5XpIZ1aRU,&amp;typo=1\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<blockquote>\r\n<div style=\"direction: ltr;\">On Oct 16, 2025, at 9:20 AM, James Trevey &lt;<a class=\"OWAAutoLink\" id=\"OWA1939e34b-5b2c-9003-ede8-c8f559743e5e\" href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n<br>\r\n</div>\r\n</blockquote>\r\n<blockquote>\r\n<div style=\"direction: ltr;\">﻿</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nHey Jordan,</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nApologies for the slow/no replies recently. Travel has been brutal.&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nWe\'ve got a lot of the information ready for you. Can we schedule a call to do a walk through on Monday the 20th at 9am or 10am ET?</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nJames</div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div id=\"x_m_5154054507612261457x_m_3027303751782346756x_divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a class=\"OWAAutoLink\" id=\"OWA8c58e32e-c07b-2c9d-031e-39378c6b2453\" href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Thursday, October 16, 2025 9:16 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a class=\"OWAAutoLink\" id=\"OWA370bc921-b453-4ca1-a90c-a3760d045262\" href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a class=\"OWAAutoLink\" id=\"OWA38a65a75-0a32-7ad1-fb6e-fec3a8ccf702\" href=\"mailto:dansheridanmusic@gmail.com\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a class=\"OWAAutoLink\" id=\"OWAef467482-444c-bd55-030d-8124fe0eb8a3\" href=\"mailto:nathan@lithiumbatterycompany.com\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction: ltr;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr;\">Hi James,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Would be great to get some pricing and spec sheets.&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Let me know when we can connect.&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Best,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><u>jordan<a style=\"margin: 0px;\" class=\"OWAAutoLink\" id=\"OWAbde88397-5f7f-6e20-eecb-9c9d616ae70b\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"color: rgb(255, 255, 255); background-color: rgba(255, 255, 255, 0);\"><a style=\"margin-top: 0px; margin-bottom: 0px; background-color: rgba(255, 255, 255, 0);\" data-auth=\"NotApplicable\" class=\"OWAAutoLink\" id=\"OWA8995a143-93ff-32bf-0768-f2305f87035a\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,kruzcWrtQAWBE_Wzkk5ZCPi8egnieSOSjhsFO2fIO_mt3sy1dInRgNFjLY-Xwbk4dmY7rgbxINSGlle76-Yg-vEcypX9dPm0sX9KSwuuDZUbmg,,&amp;typo=1\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<blockquote>\r\n<div style=\"direction: ltr;\">On Sep 30, 2025, at 4:31 PM, Jordan Wroblewski &lt;<a class=\"OWAAutoLink\" id=\"OWAfc903b23-ac77-7b70-923b-6abe766ec537\" href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br>\r\n<br>\r\n</div>\r\n</blockquote>\r\n<blockquote>\r\n<div style=\"direction: ltr;\">﻿</div>\r\n<div style=\"direction: ltr;\">Hi James,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">I have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Looking forward to our discussion and seeing your deck of prospective projects.&nbsp;&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Best,&nbsp;</div>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; color: black;\"><br>\r\n</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; color: black;\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: black;\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: blue;\"><u>jordan<a style=\"color: blue; margin: 0px;\" class=\"OWAAutoLink\" id=\"OWA69160ff1-d5bd-007c-638f-52d5ccdd5f0d\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: rgb(5, 99, 193);\"><a style=\"margin-top: 0px; margin-bottom: 0px;\" data-auth=\"NotApplicable\" class=\"OWAAutoLink\" id=\"OWA6a7ea24c-1ec8-7ec2-7302-6e195d239024\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,KG7OlMyZO9jbLU5vTJ3I8lMhBaHdNf06-ktzHMDOUSoCImrfUczbXUj1d1VcQUh_ApKsyrkLO9FO7PzcinsYewUWoskpuT9EKlrhqSI22A,,&amp;typo=1\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">On Fri, Sep 26, 2025 at 4:59 PM James Trevey &lt;<a class=\"OWAAutoLink\" id=\"OWAa8fbc85b-a982-60aa-1b0f-421cd7a87c0d\" href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin: 0px 0px 0px 0.8ex; padding-left: 1ex; border-left: 1px solid rgb(204, 204, 204);\">\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nJordan,</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nI won\'t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products.&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nI\'ll send to you as soon as I can next week.</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nJames</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div style=\"direction: ltr; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;James Trevey &lt;<a class=\"OWAAutoLink\" id=\"OWAd7a5c27b-da55-2c7f-698b-f818d5e5341c\" href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 24, 2025 10:49 AM<br>\r\n<b>To:</b>&nbsp;Jordan Wroblewski &lt;<a class=\"OWAAutoLink\" id=\"OWAa691f501-9154-2520-985f-29cdd2fb5c90\" href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a class=\"OWAAutoLink\" id=\"OWAbf77b698-937c-aeca-a707-b2494628658b\" href=\"mailto:dansheridanmusic@gmail.com\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a class=\"OWAAutoLink\" id=\"OWA104e212a-34bd-05fd-2c13-aef8bc1517fa\" href=\"mailto:nathan@lithiumbatterycompany.com\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction: ltr; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nJordan,</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating.&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nI also have a verbal matter we can discuss soon. Once I\'ve got the deck ready I\'ll find time for a short call with you.</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nTalk soon.</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nJames</div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div id=\"x_m_5154054507612261457x_m_3027303751782346756x_x_m_7859046138643783182x_divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: black;\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a class=\"OWAAutoLink\" id=\"OWA8839c907-fb82-436d-88c1-e4063c0ac22f\" href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 24, 2025 10:07 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a class=\"OWAAutoLink\" id=\"OWA5bbe05c5-50fd-d977-82a6-0bb9a3e8d948\" href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a class=\"OWAAutoLink\" id=\"OWAfb29af50-570f-4e82-d05d-36379913355d\" href=\"mailto:dansheridanmusic@gmail.com\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a class=\"OWAAutoLink\" id=\"OWAf2c74f2a-7269-dfef-9873-29a46c5c4b9e\" href=\"mailto:nathan@lithiumbatterycompany.com\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction: ltr;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr;\">Hi James,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Thank you for the follow up.&nbsp; You were on my list to contact today!&nbsp;&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Would that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">I will let you know if I will be able to make it up to Detroit for The Battery Show.&nbsp;&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Looking forward to seeing the deck.</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">All the best,&nbsp;</div>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; color: black;\"><br>\r\n</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; color: black;\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: black;\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: blue;\"><u>jordan<a style=\"color: blue; margin: 0px;\" class=\"OWAAutoLink\" id=\"OWA61a86075-871c-a4f2-6f33-e7c4eb316069\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: rgb(5, 99, 193);\"><a style=\"margin-top: 0px; margin-bottom: 0px;\" data-auth=\"NotApplicable\" class=\"OWAAutoLink\" id=\"OWA214782f4-48ae-8022-ef74-7608a601abba\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&amp;typo=1\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">On Wed, Sep 24, 2025 at 11:59 AM James Trevey &lt;<a class=\"OWAAutoLink\" id=\"OWA33cce604-09df-9972-aa99-5a2cf482f6d9\" href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin: 0px 0px 0px 0.8ex; padding-left: 1ex; border-left: 1px solid rgb(204, 204, 204);\">\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nHey Jordan,</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nThank you for the quick follow up.&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we\'ve decided we\'d like to provide information on additional products to you which are typically not on the menu but I have details\r\n to sort first.&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nRegarding shows, happy to discuss when ready. We\'ll be at The Battery Show in 2 weeks, which I think you should consider attending and I\'d be happy to connect while there.&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nJames</div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div id=\"x_m_5154054507612261457x_m_3027303751782346756x_x_m_7859046138643783182x_x_m_-6814561645313625911divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: black;\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a class=\"OWAAutoLink\" id=\"OWAd96cc1aa-a813-6163-4f4d-3a604e112ee7\" href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Thursday, September 18, 2025 11:03 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a class=\"OWAAutoLink\" id=\"OWA6c494d49-99e5-cffe-a9df-8e6c460a0e63\" href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a class=\"OWAAutoLink\" id=\"OWA5652f27b-5ef0-af9b-1a3e-1cecbce3fad8\" href=\"mailto:dansheridanmusic@gmail.com\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a class=\"OWAAutoLink\" id=\"OWAd0fa53a7-eca3-9387-f15c-28b074c1a084\" href=\"mailto:nathan@lithiumbatterycompany.com\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction: ltr;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr;\">Hi James,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Thank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information\r\n to optimize our collaboration and planning:<br>\r\n<br>\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.<br>\r\n<br>\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.<br>\r\n<br>\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.<br>\r\n<br>\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.<br>\r\n<br>\r\nClarify your minimum order quantities and expected pricing for each product line.<br>\r\n<br>\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.<br>\r\n<br>\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted\r\n commercial timelines, and expected pricing.<br>\r\n<br>\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made module and packs for:<br>\r\n<br>\r\n18650:<br>\r\n<br>\r\nNMC: TNL-ITR18650-2600P<br>\r\n<br>\r\nLFP: SW18650-26HPA<br>\r\n<br>\r\nLFP: IFR18650-2000mAh<br>\r\n<br>\r\n21700:<br>\r\n<br>\r\nNMC: INR21700-50S<br>\r\n<br>\r\nNMC: INR21700-4000<br>\r\n<br>\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">In terms of the shows you mentioned, we are getting our schedules aligned so we can attend.&nbsp; What\'s the &quot;secret meeting&quot; in Nov?&nbsp;<br>\r\n<br>\r\nWe look forward to your prompt response so we can efficiently move to the next stages.</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Talk soon,&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; color: black;\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: black;\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: blue;\"><u>jordan<a style=\"color: blue; margin: 0px;\" class=\"OWAAutoLink\" id=\"OWA4e4576b1-1931-f3c5-bf04-1d623e748413\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: rgb(5, 99, 193);\"><a style=\"margin-top: 0px; margin-bottom: 0px;\" data-auth=\"NotApplicable\" class=\"OWAAutoLink\" id=\"OWA0cfcaabe-77cb-de77-b671-98d78df6d665\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&amp;typo=1\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">On Wed, Sep 17, 2025 at 7:00 PM James Trevey &lt;<a class=\"OWAAutoLink\" id=\"OWA2efeafd1-df26-a882-3cd2-915ab031edb6\" href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin: 0px 0px 0px 0.8ex; padding-left: 1ex; border-left: 1px solid rgb(204, 204, 204);\">\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nJordan,</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nThanks for moving quickly here. I got bogged down today but better late than never.&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<ul style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px; list-style-position: initial; list-style-type: disc;\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)</div>\r\n</li><ul style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px; list-style-position: initial; list-style-type: circle;\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell has a 100% US supply chain already</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell can be made in the <u>\r\nmillions</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)</div>\r\n</li><ul style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px; list-style-position: initial; list-style-type: circle;\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell can be made in the <u>\r\nmillions </u>next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.</div>\r\n</li><ul style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px; list-style-position: initial; list-style-type: circle;\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell can be made in the <u>\r\nthousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)</div>\r\n</li><ul style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px; list-style-position: initial; list-style-type: circle;\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell can be made in the <u>\r\nmillions</u>&nbsp;next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these</div>\r\n</li></ul>\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)</div>\r\n</li><ul style=\"direction: ltr; margin-top: 0px; margin-bottom: 0px; list-style-position: initial; list-style-type: circle;\">\r\n<li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<div style=\"direction: ltr;\" role=\"presentation\">This cell can be made in the <u>\r\nthousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n</ul>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.&nbsp;</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nI will check with my people on 301 asap.</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nI look forward to our next communication.</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: black;\">\r\nJames</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: black;\">\r\n<br>\r\n</div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div style=\"direction: ltr; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: black;\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a class=\"OWAAutoLink\" id=\"OWA3b059ab0-9fb4-963d-d6b8-369eb4ca0cc2\" href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 17, 2025 7:56 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a class=\"OWAAutoLink\" id=\"OWA3d6fb971-5d4e-9b71-f39f-0860c844fa95\" href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt;; Daniel &lt;<a class=\"OWAAutoLink\" id=\"OWA3111b555-f6ea-0b7e-f4da-ab68556c65e8\" href=\"mailto:dansheridanmusic@gmail.com\">dansheridanmusic@gmail.com</a>&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a class=\"OWAAutoLink\" id=\"OWA7b82e4d2-9ac4-eea2-625d-4079b0c83093\" href=\"mailto:nathan@lithiumbatterycompany.com\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction: ltr; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: black;\">\r\n<br>\r\n</div>\r\n<div style=\"direction: ltr;\">Gentlemen,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">It was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<ul style=\"direction: ltr;\">\r\n<li style=\"direction: ltr;\">James to&nbsp;send the cell specification sheets as soon as possible.</li><li style=\"direction: ltr;\">LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.</li><li style=\"direction: ltr;\">James to&nbsp;send their term sheet template for throughput contracts.</li><li style=\"direction: ltr;\">We should discuss 301 exclusion support for manufacturing equipment.</li></ul>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">I look forward to our next conversation.&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Best,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; color: black;\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: black;\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: blue;\"><u>jordan<a style=\"color: blue; margin: 0px;\" class=\"OWAAutoLink\" id=\"OWAdbe91ca4-1ba3-791b-0976-85d477e08c5f\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction: ltr; margin: 0px;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: rgb(5, 99, 193);\"><a style=\"margin-top: 0px; margin-bottom: 0px;\" data-auth=\"NotApplicable\" class=\"OWAAutoLink\" id=\"OWA739c124e-e74e-a939-4030-d125840b8a52\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&amp;typo=1\">Lithium\r\n Battery Company</a></span></p>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n<div style=\"direction: ltr;\">&lt;ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes (1).csv&gt;</div>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</body>\r\n</html>\r\n','Jordan,\r\n\r\nThanks for the call today. Attached are a bunch of documents:\r\n\r\n\r\n  *\r\nspec sheets for all (5) FN Products\r\n  *\r\nspec sheet for the Samsung 53G\r\n  *\r\nspec sheet for the Moli P50B\r\n  *\r\nPresentation from our call with ballpark cell availability and pricing\r\n  *\r\nTerm sheet for capturing our relationship interests\r\n  *\r\nSkyfoundary proposal\r\n\r\nI have your volumes from the ProgramProduct excel sheet that I\'ve plugged into the term sheet for now as a first draft. On your end I captured the following action items:\r\n\r\n\r\n  *\r\nReview all documents in this email and confirm volumes and provide first pass review on the term sheet\r\n  *\r\nReview the Skyfoundary proposal and put together a first-pass budget/plan to support Forge as a partner\r\n\r\nI am out tomorrow for personal matters but look forward to our discussion on Monday.\r\n\r\nJames\r\n\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\nSent: Wednesday, October 22, 2025 9:45 AM\r\nTo: James Trevey <jtrevey@forgenano.com>\r\nCc: Will McKenna <WMcKenna@forgenano.com>; Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nYou bet,\r\n\r\nSpeak with you tomorrow.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,RCp_srnsn8TsHi-Y90KYoNQPNLUs9Z2k6AQ2a8mY4AU8XQa0dJ0qeugNm0mDw--U4uH_iIRb9IN4Nb3dl2ctTPPmCoYcMeCAkzmhYm7mlpPXnMYFHVt8&typo=1>\r\n\r\n\r\nOn Wed, Oct 22, 2025 at 11:34 AM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nperfect. I look forward to speaking with you then!\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Wednesday, October 22, 2025 9:30 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Will McKenna <WMcKenna@forgenano.com<mailto:WMcKenna@forgenano.com>>; Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nI can do tomorrow at 9am MST.\r\n\r\nLet me know if that still works for you and I can send you over an invite.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,irabj1pPRcbHt7fZTnVGlp-D5OWgJo5J-DJVmYysbSINfzIevG80IYq97Jraq-OV6w6IJC3gu0pHz4oFYfW4xcnb3n-PwXqRHBE_AugLqCnyxkrk6RI,&typo=1>\r\n\r\n\r\nOn Tue, Oct 21, 2025 at 6:09 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nHey Jordan,\r\n\r\nI am back from 3 weeks of travel and ready to get sorted here. Tomorrow is sunk, but on Thursday I can do 9am MT or 12:30pm MT. Do either work for you? If not, I have the following next week:\r\n\r\n27th: 11:30-1pm MT\r\n28th: 8am MT, 11am MT, after 1pm MT\r\n29th: after 1pm MT\r\n30th: after 10am MT\r\n\r\nLet me know what works.\r\n\r\nJames\r\n\r\n\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Monday, October 20, 2025 5:12 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nI am out of town as well.  How does your Wednesday look?\r\n\r\nLooking forward to catching up.\r\n\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,kcAZ-rF3D0Z_d8KzW-apTAtlzHQofd8D2ZjbELiCHZPsqOhCV8Xd_fUJ6ZWDkt-2fgJod-EPR6FfR9gTPQj_LmrIjU3cEOjFP4Vi0A3Pa8jqtC5XpIZ1aRU,&typo=1>\r\n\r\nOn Oct 16, 2025, at 9:20 AM, James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\n\r\n﻿\r\nHey Jordan,\r\n\r\nApologies for the slow/no replies recently. Travel has been brutal.\r\n\r\nWe\'ve got a lot of the information ready for you. Can we schedule a call to do a walk through on Monday the 20th at 9am or 10am ET?\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Thursday, October 16, 2025 9:16 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nWould be great to get some pricing and spec sheets.\r\n\r\nLet me know when we can connect.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,kruzcWrtQAWBE_Wzkk5ZCPi8egnieSOSjhsFO2fIO_mt3sy1dInRgNFjLY-Xwbk4dmY7rgbxINSGlle76-Yg-vEcypX9dPm0sX9KSwuuDZUbmg,,&typo=1>\r\n\r\nOn Sep 30, 2025, at 4:31 PM, Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>> wrote:\r\n\r\n﻿\r\nHi James,\r\n\r\nI have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.\r\n\r\nLooking forward to our discussion and seeing your deck of prospective projects.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,KG7OlMyZO9jbLU5vTJ3I8lMhBaHdNf06-ktzHMDOUSoCImrfUczbXUj1d1VcQUh_ApKsyrkLO9FO7PzcinsYewUWoskpuT9EKlrhqSI22A,,&typo=1>\r\n\r\n\r\nOn Fri, Sep 26, 2025 at 4:59 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nJordan,\r\n\r\nI won\'t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products.\r\n\r\nI\'ll send to you as soon as I can next week.\r\n\r\nJames\r\n\r\n\r\n\r\n\r\n________________________________\r\nFrom: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nSent: Wednesday, September 24, 2025 10:49 AM\r\nTo: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nJordan,\r\n\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating.\r\n\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?\r\n\r\nI also have a verbal matter we can discuss soon. Once I\'ve got the deck ready I\'ll find time for a short call with you.\r\n\r\nTalk soon.\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Wednesday, September 24, 2025 10:07 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nThank you for the follow up.  You were on my list to contact today!\r\n\r\nWould that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...\r\n\r\nI will let you know if I will be able to make it up to Detroit for The Battery Show.\r\n\r\nLooking forward to seeing the deck.\r\n\r\nAll the best,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&typo=1>\r\n\r\n\r\nOn Wed, Sep 24, 2025 at 11:59 AM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nHey Jordan,\r\n\r\nThank you for the quick follow up.\r\n\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we\'ve decided we\'d like to provide information on additional products to you which are typically not on the menu but I have details to sort first.\r\n\r\nRegarding shows, happy to discuss when ready. We\'ll be at The Battery Show in 2 weeks, which I think you should consider attending and I\'d be happy to connect while there.\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Thursday, September 18, 2025 11:03 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\n\r\nThank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information to optimize our collaboration and planning:\r\n\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.\r\n\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.\r\n\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.\r\n\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.\r\n\r\nClarify your minimum order quantities and expected pricing for each product line.\r\n\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.\r\n\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted commercial timelines, and expected pricing.\r\n\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made module and packs for:\r\n\r\n18650:\r\n\r\nNMC: TNL-ITR18650-2600P\r\n\r\nLFP: SW18650-26HPA\r\n\r\nLFP: IFR18650-2000mAh\r\n\r\n21700:\r\n\r\nNMC: INR21700-50S\r\n\r\nNMC: INR21700-4000\r\n\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.\r\n\r\nIn terms of the shows you mentioned, we are getting our schedules aligned so we can attend.  What\'s the \"secret meeting\" in Nov?\r\n\r\nWe look forward to your prompt response so we can efficiently move to the next stages.\r\n\r\n\r\nTalk soon,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&typo=1>\r\n\r\n\r\nOn Wed, Sep 17, 2025 at 7:00 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nJordan,\r\n\r\nThanks for moving quickly here. I got bogged down today but better late than never.\r\n\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:\r\n\r\n\r\n  *\r\nSC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)\r\n     *\r\nThis cell has a 100% US supply chain already\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the thousands next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these\r\n  *\r\nSC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the thousands next year by our partner in the EU, until our factory is online in 2027\r\n\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.\r\n\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.\r\n\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret meeting on November 5th in DC?\r\n\r\nI will check with my people on 301 asap.\r\n\r\nI look forward to our next communication.\r\n\r\nJames\r\n\r\n\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Wednesday, September 17, 2025 7:56 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>; Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nGentlemen,\r\n\r\nIt was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:\r\n\r\n\r\n  *   James to send the cell specification sheets as soon as possible.\r\n  *   LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.\r\n  *   James to send their term sheet template for throughput contracts.\r\n  *   We should discuss 301 exclusion support for manufacturing equipment.\r\n\r\nI look forward to our next conversation.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&typo=1>\r\n\r\n<ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes (1).csv>\r\n',0,0,0,0,0,0,'2025-10-23 17:03:39','2025-12-09 19:30:06','2025-12-09 19:30:06','2025-12-09 19:30:06',NULL,NULL,NULL),
(880,4,' <BN2P110MB162441ED5E57AD2405AD4DC8FBF0A@BN2P110MB1624.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'TEST MESSAGE','piasecki_fw@piasecki.com','\"Fred W. Piasecki\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle17\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">TEST MESSAGE TO MAVRIX-ONE<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:navy\">Fred W. Piasecki<br>\r\nCTO-COB<br>\r\n</span><b><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:maroon\">Piasecki Aircraft Corp.</span></b><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:navy\"><br>\r\n110 Stewart Huston Drive<br>\r\nCoatesville, PA 19320</span><span style=\"font-size:11.0pt;mso-ligatures:none\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><a href=\"mailto:piasecki_fw@piasecki.com\"><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:#0563C1\">piasecki_fw@piasecki.com</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:navy\">610-521-5700 x107&nbsp;&nbsp;&nbsp; Cell 610-304-6689<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><a href=\"http://www.piasecki.com/\"><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:blue\">www.piasecki.com</span></a><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif;color:navy\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><a href=\"https://americanhelicopter.museum/\"><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:blue\">https://americanhelicopter.museum/</span></a><span style=\"font-family:&quot;Arial&quot;,sans-serif\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Calibri&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#1F497D\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#1F497D\">PIASECKI PROPRIETARY AND SBIR INFORMATION This message is intended solely for the use of the addressee(s), is intended to be confidential, and may contain information\r\n that is PiAC Proprietary and/or SBIR Data. If you have received this message in error, please immediately notify the sender and delete all copies of this email message along with all attachments.\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#1F497D\">All information, technical data, or other data contained in this e-mail, including all attachments, is to be protected as trade secret information, and shall be\r\n considered marked &#8220;Proprietary and Company Confidential,&#8221; and all SBIR Data contained in this e-mail is subject to DFARS clause 252.227-7018, if transmitted to the Government, regardless of whether formally marked as such. The information, technical data,\r\n or other data contained in this e-mail shall not be disclosed or released to individuals who are not authorized to receive it, and shall not be used for any purposes other than those authorized pursuant to an agreement between PiAC and the receiving party.\r\n This marking may not be removed from this e-mail. </span><span style=\"color:#002060\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#1F497D\">&nbsp;</span><span style=\"color:#002060\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#1F497D\">This email and any files transmitted with it are confidential and Piasecki Proprietary and intended solely for the use of the individual or entity to whom they are\r\n addressed. If you have received this email in error please notify the system manager.</span><span style=\"color:#002060\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div style=\"font-size:8pt; font-family: \'Calibri\',sans-serif;\">\r\n<hr>\r\nThe information contained in this e-mail and any attachments from Piasecki Aircraft Corporation may contain confidential and/or proprietary information, and is intended only for the named recipient to whom it was originally addressed. If you are not the intended\r\n recipient, any disclosure, distribution, or copying of this e-mail or its attachments is strictly prohibited. If you have received this e-mail in error, please notify the sender immediately by return e-mail and permanently delete the e-mail and any attachments.</div>\r\n</body>\r\n</html>','TEST MESSAGE TO MAVRIX-ONE\r\n\r\nFred W. Piasecki\r\nCTO-COB\r\nPiasecki Aircraft Corp.\r\n110 Stewart Huston Drive\r\nCoatesville, PA 19320\r\npiasecki_fw@piasecki.com<mailto:piasecki_fw@piasecki.com>\r\n610-521-5700 x107    Cell 610-304-6689\r\nwww.piasecki.com<http://www.piasecki.com/>\r\nhttps://americanhelicopter.museum/\r\n\r\n\r\nPIASECKI PROPRIETARY AND SBIR INFORMATION This message is intended solely for the use of the addressee(s), is intended to be confidential, and may contain information that is PiAC Proprietary and/or SBIR Data. If you have received this message in error, please immediately notify the sender and delete all copies of this email message along with all attachments.\r\n\r\nAll information, technical data, or other data contained in this e-mail, including all attachments, is to be protected as trade secret information, and shall be considered marked \"Proprietary and Company Confidential,\" and all SBIR Data contained in this e-mail is subject to DFARS clause 252.227-7018, if transmitted to the Government, regardless of whether formally marked as such. The information, technical data, or other data contained in this e-mail shall not be disclosed or released to individuals who are not authorized to receive it, and shall not be used for any purposes other than those authorized pursuant to an agreement between PiAC and the receiving party. This marking may not be removed from this e-mail.\r\n\r\nThis email and any files transmitted with it are confidential and Piasecki Proprietary and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager.\r\n\r\n________________________________\r\nThe information contained in this e-mail and any attachments from Piasecki Aircraft Corporation may contain confidential and/or proprietary information, and is intended only for the named recipient to whom it was originally addressed. If you are not the intended recipient, any disclosure, distribution, or copying of this e-mail or its attachments is strictly prohibited. If you have received this e-mail in error, please notify the sender immediately by return e-mail and permanently delete the e-mail and any attachments.',0,0,0,0,0,0,'2025-10-23 17:07:46','2025-12-09 19:30:06','2025-12-09 19:30:06','2025-12-09 19:30:06',NULL,NULL,NULL),
(881,4,' <BN2P110MB1624496ADD3CBEF07FA462F5FBF0A@BN2P110MB1624.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'INTRO To PIAC and KARGO','piasecki_fw@piasecki.com','\"Fred W. Piasecki\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Segoe UI\";\r\n	panose-1:2 11 5 2 4 2 4 2 2 3;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:#467886;\r\n	text-decoration:underline;}\r\nspan.me-email-text\r\n	{mso-style-name:me-email-text;}\r\nspan.me-email-text-secondary\r\n	{mso-style-name:me-email-text-secondary;}\r\nspan.EmailStyle20\r\n	{mso-style-type:personal-compose;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Gents,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Fred and Rick meet at the Huntsville ARMY UAS conference.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">I think we have a common goal!!!!!!!!!!!<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Ricks Cell is, 585-797-9473<o:p></o:p></span></p>\r\n<div>\r\n<div style=\"margin-bottom:.25in;overflow:hidden\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">________________________________________________________________________________</span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424;mso-ligatures:none\"><o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:9.0pt\">\r\n<p class=\"MsoNormal\"><span class=\"me-email-text\"><b><span style=\"font-size:18.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">Microsoft Teams</span></b></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<a href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\"><span style=\"font-size:10.5pt;color:#5B5FC7\">Need help?</span></a>\r\n<o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:4.5pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\"><a href=\"https://gov.teams.microsoft.us/l/meetup-join/19%3agcch%3ameeting_6a1a1a2ebcb44ea0969439d94f5c4a4d%40thread.v2/0?context=%7b%22Tid%22%3a%22d6f64dec-d4b3-41eb-845c-662c7e147a28%22%2c%22Oid%22%3a%22c33f62ac-c923-42d0-9065-aad331b9925e%22%7d\" target=\"_blank\" title=\"Meeting join link\"><b><span style=\"font-size:15.0pt;color:#5B5FC7\">Join\r\n the meeting now</span></b></a> <o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:4.5pt\">\r\n<p class=\"MsoNormal\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">Meeting ID:\r\n</span></span><span class=\"me-email-text\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">992 855 385 720</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:24.0pt\">\r\n<p class=\"MsoNormal\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">Passcode:\r\n</span></span><span class=\"me-email-text\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">ny2sk3Si</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:9.0pt\">\r\n<div class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<hr size=\"1\" width=\"100%\" align=\"center\">\r\n</span></div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">For organizers:\r\n</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\"><a href=\"https://gov.teams.microsoft.us/meetingOptions/?organizerId=c33f62ac-c923-42d0-9065-aad331b9925e&amp;tenantId=d6f64dec-d4b3-41eb-845c-662c7e147a28&amp;threadId=19_gcch_meeting_6a1a1a2ebcb44ea0969439d94f5c4a4d@thread.v2&amp;messageId=0&amp;language=en-US\" target=\"_blank\"><span style=\"font-size:10.5pt;color:#5B5FC7\">Meeting\r\n options</span></a> <o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:.25in;overflow:hidden\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">________________________________________________________________________________<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div style=\"font-size:8pt; font-family: \'Calibri\',sans-serif;\">\r\n<hr>\r\nThe information contained in this e-mail and any attachments from Piasecki Aircraft Corporation may contain confidential and/or proprietary information, and is intended only for the named recipient to whom it was originally addressed. If you are not the intended\r\n recipient, any disclosure, distribution, or copying of this e-mail or its attachments is strictly prohibited. If you have received this e-mail in error, please notify the sender immediately by return e-mail and permanently delete the e-mail and any attachments.</div>\r\n</body>\r\n</html>','Gents,\r\nFred and Rick meet at the Huntsville ARMY UAS conference.\r\nI think we have a common goal!!!!!!!!!!!\r\n\r\nRicks Cell is, 585-797-9473\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://gov.teams.microsoft.us/l/meetup-join/19%3agcch%3ameeting_6a1a1a2ebcb44ea0969439d94f5c4a4d%40thread.v2/0?context=%7b%22Tid%22%3a%22d6f64dec-d4b3-41eb-845c-662c7e147a28%22%2c%22Oid%22%3a%22c33f62ac-c923-42d0-9065-aad331b9925e%22%7d>\r\nMeeting ID: 992 855 385 720\r\nPasscode: ny2sk3Si\r\n________________________________\r\nFor organizers: Meeting options<https://gov.teams.microsoft.us/meetingOptions/?organizerId=c33f62ac-c923-42d0-9065-aad331b9925e&tenantId=d6f64dec-d4b3-41eb-845c-662c7e147a28&threadId=19_gcch_meeting_6a1a1a2ebcb44ea0969439d94f5c4a4d@thread.v2&messageId=0&language=en-US>\r\n________________________________________________________________________________\r\n\r\n________________________________\r\nThe information contained in this e-mail and any attachments from Piasecki Aircraft Corporation may contain confidential and/or proprietary information, and is intended only for the named recipient to whom it was originally addressed. If you are not the intended recipient, any disclosure, distribution, or copying of this e-mail or its attachments is strictly prohibited. If you have received this e-mail in error, please notify the sender immediately by return e-mail and permanently delete the e-mail and any attachments.',0,0,0,0,0,0,'2025-10-23 17:19:17','2025-12-09 19:30:06','2025-12-09 19:30:06','2025-12-09 19:30:06',NULL,NULL,NULL),
(882,4,'<CAGOCFXh7u+pkzzmBHdxNV4vV45zoCQzV1Z0jdqez_RjCr6M_Zg@mail.gmail.com>',NULL,NULL,'Fwd: Battery testing solution','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">林冬平</strong> <span dir=\"auto\">&lt;<a href=\"mailto:lindongping@repower.cn\">lindongping@repower.cn</a>&gt;</span><br>Date: Mon, Oct 20, 2025 at 2:02 AM<br>Subject: 回复: Battery testing solution<br>To: Nathan &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\">Nathan@lithiumbatterycompany.com</a>&gt;<br>Cc: 曾收锋 &lt;<a href=\"mailto:zengshoufeng@repower.cn\">zengshoufeng@repower.cn</a>&gt;, 董瑞 &lt;<a href=\"mailto:dongrui@repower.cn\">dongrui@repower.cn</a>&gt;, 李墩伟 &lt;<a href=\"mailto:lidunwei@repower.cn\">lidunwei@repower.cn</a>&gt;, 王琳 &lt;<a href=\"mailto:wanglin@repower.cn\">wanglin@repower.cn</a>&gt;<br></div><br><br><div class=\"msg-5669481832333350603\"><div>\r\n<div><span></span><span style=\"font-family:verdana\">hi Nathan.</span></div><div><span style=\"font-family:verdana\">just in case of exceeded Google&#39;s message size limits.</span></div><div><font face=\"verdana\">I send the mail to you again for </font><span style=\"background-color:transparent\"><font face=\"verdana\">separate.</font></span></div>\r\n<div><br></div><hr style=\"width:210px;height:1px\" color=\"#b5c4df\" size=\"1\" align=\"left\">\r\n<div><span><div style=\"margin:10px\"><div><font face=\"verdana\" style=\"font-size:10pt\">Danny (林冬平)</font></div><div><b style=\"font-family:Aptos,sans-serif;font-size:16px;text-align:justify\"><span style=\"font-size:11.5pt;font-family:&quot;Microsoft YaHei&quot;,sans-serif\">R</span></b><span style=\"text-align:justify;font-size:11.5pt;font-family:&quot;Microsoft YaHei&quot;,sans-serif\">ePower technology co.,ltd </span></div><div>Product engineer</div><div><font face=\"verdana\" style=\"font-size:10pt\">Add:</font><span style=\"color:rgb(42,47,69);white-space:pre-wrap;background-color:transparent;font-size:13px\"><font face=\"Verdana\">Building 3B, Shangzhi Science and Technology Park, Guangming Avenue, Tangwei Community, Fenghuang Subdistrict, Guangming District, Shenzhen</font></span></div><div style=\"font-family:verdana;font-size:10pt\"><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\">E-mail:</span><span style=\"font-size:10pt;background-color:transparent\"> </span><a href=\"mailto:lindongping@repower.cn\" style=\"background-color:transparent;font-size:13.3333px\" target=\"_blank\">lindongping@repower.cn</a><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\"> </span></div><div style=\"font-family:verdana\"><span style=\"font-size:13.3333px\"></span><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\">Website:</span><span style=\"font-family:&quot;Microsoft YaHei UI&quot;;background-color:transparent\"> </span><a href=\"http://www.repower.cn\" style=\"background-color:transparent;font-size:13.3333px\" target=\"_blank\">www.repower.cn</a><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\"> </span></div></div></span></div>\r\n<blockquote style=\"margin-Top:0px;margin-Bottom:0px;margin-Left:0.5em;margin-Right:inherit\"><div> </div><div style=\"border:none;border-top:solid #b5c4df 1.0pt;padding:3.0pt 0cm 0cm 0cm\"><div style=\"PADDING-RIGHT:8px;PADDING-LEFT:8px;FONT-SIZE:12px;FONT-FAMILY:tahoma;COLOR:#000000;BACKGROUND:#efefef;PADDING-BOTTOM:8px;PADDING-TOP:8px\"><div><b>发件人：</b> <a href=\"mailto:lindongping@repower.cn\" target=\"_blank\">林冬平</a></div><div><b>发送时间：</b> 2025-10-20 12:23</div><div><b>收件人：</b> <a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan</a></div><div><b>抄送：</b> <a href=\"mailto:zengshoufeng@repower.cn\" target=\"_blank\">曾收锋</a>; <a href=\"mailto:dongrui@repower.cn\" target=\"_blank\">董瑞</a>; <a href=\"mailto:lidunwei@repower.cn\" target=\"_blank\">李墩伟</a></div><div><b>主题：</b> Battery testing solution</div></div></div><div><div class=\"m_-5520886855417309476FoxDiv20251020135846398989\">\r\n<div><span></span>hi Nathan.</div><div>Hope you are all well.</div><div>As talked with you last Friday, about machine solution as attached for you reference.</div><div>if anything unclear, please feel free to let us know.</div><div>thank you!</div>\r\n<div><br></div><hr style=\"width:210px;height:1px\" color=\"#b5c4df\" size=\"1\" align=\"left\">\r\n<div><span><div style=\"margin:10px\"><div><font face=\"verdana\" style=\"font-size:10pt\">Danny (林冬平)</font></div><div><b style=\"font-family:Aptos,sans-serif;font-size:16px;text-align:justify\"><span style=\"font-size:11.5pt;font-family:&quot;Microsoft YaHei&quot;,sans-serif\">R</span></b><span style=\"text-align:justify;font-size:11.5pt;font-family:&quot;Microsoft YaHei&quot;,sans-serif\">ePower technology co.,ltd </span></div><div>Product engineer</div><div><font face=\"verdana\" style=\"font-size:10pt\">Add:</font><span style=\"color:rgb(42,47,69);white-space:pre-wrap;background-color:transparent;font-size:13px\"><font face=\"Verdana\">Building 3B, Shangzhi Science and Technology Park, Guangming Avenue, Tangwei Community, Fenghuang Subdistrict, Guangming District, Shenzhen</font></span></div><div style=\"font-family:verdana;font-size:10pt\"><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\">E-mail:</span><span style=\"font-size:10pt;background-color:transparent\"> </span><a href=\"mailto:lindongping@repower.cn\" style=\"background-color:transparent;font-size:13.3333px\" target=\"_blank\">lindongping@repower.cn</a><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\"> </span></div><div style=\"font-family:verdana\"><span style=\"font-size:13.3333px\"></span><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\">Website:</span><span style=\"font-family:&quot;Microsoft YaHei UI&quot;;background-color:transparent\"> </span><a href=\"http://www.repower.cn\" style=\"background-color:transparent;font-size:13.3333px\" target=\"_blank\">www.repower.cn</a><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\"> </span></div></div></span></div>\r\n</div></div></blockquote>\r\n</div></div></div></div>','<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: 林冬平 <lindongping@repower.cn>\r\nDate: Mon, Oct 20, 2025 at 2:02 AM\r\nSubject: 回复: Battery testing solution\r\nTo: Nathan <Nathan@lithiumbatterycompany.com>\r\nCc: 曾收锋 <zengshoufeng@repower.cn>, 董瑞 <dongrui@repower.cn>, 李墩伟 <\r\nlidunwei@repower.cn>, 王琳 <wanglin@repower.cn>\r\n\r\n\r\nhi Nathan.\r\njust in case of exceeded Google\'s message size limits.\r\nI send the mail to you again for separate.\r\n\r\n------------------------------\r\nDanny (林冬平)\r\n*R*ePower technology co.,ltd\r\nProduct engineer\r\nAdd:Building 3B, Shangzhi Science and Technology Park, Guangming Avenue,\r\nTangwei Community, Fenghuang Subdistrict, Guangming District, Shenzhen\r\nE-mail: lindongping@repower.cn\r\nWebsite: www.repower.cn\r\n\r\n\r\n*发件人：* 林冬平 <lindongping@repower.cn>\r\n*发送时间：* 2025-10-20 12:23\r\n*收件人：* Nathan <Nathan@lithiumbatterycompany.com>\r\n*抄送：* 曾收锋 <zengshoufeng@repower.cn>; 董瑞 <dongrui@repower.cn>; 李墩伟\r\n<lidunwei@repower.cn>\r\n*主题：* Battery testing solution\r\nhi Nathan.\r\nHope you are all well.\r\nAs talked with you last Friday, about machine solution as attached for\r\nyou reference.\r\nif anything unclear, please feel free to let us know.\r\nthank you!\r\n\r\n------------------------------\r\nDanny (林冬平)\r\n*R*ePower technology co.,ltd\r\nProduct engineer\r\nAdd:Building 3B, Shangzhi Science and Technology Park, Guangming Avenue,\r\nTangwei Community, Fenghuang Subdistrict, Guangming District, Shenzhen\r\nE-mail: lindongping@repower.cn\r\nWebsite: www.repower.cn',0,0,0,0,0,0,'2025-10-23 22:06:00','2025-12-09 19:30:17','2025-12-09 19:30:17','2025-12-09 19:30:17',NULL,NULL,NULL),
(883,4,'<CAJO9__as-Bf+hVTvCoxANcX1z33L+i3Rn2h5c2_rRmehoxO__g@mail.gmail.com>',NULL,NULL,'Re: Battery testing solution','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>See attached electrical information from Bluesea.</div><div><br></div><div>As well as technical documents for all three lines. </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Oct 23, 2025 at 6:06 PM Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_5628577987894390527_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">林冬平</strong> <span dir=\"auto\">&lt;<a href=\"mailto:lindongping@repower.cn\" target=\"_blank\">lindongping@repower.cn</a>&gt;</span><br>Date: Mon, Oct 20, 2025 at 2:02 AM<br>Subject: 回复: Battery testing solution<br>To: Nathan &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt;<br>Cc: 曾收锋 &lt;<a href=\"mailto:zengshoufeng@repower.cn\" target=\"_blank\">zengshoufeng@repower.cn</a>&gt;, 董瑞 &lt;<a href=\"mailto:dongrui@repower.cn\" target=\"_blank\">dongrui@repower.cn</a>&gt;, 李墩伟 &lt;<a href=\"mailto:lidunwei@repower.cn\" target=\"_blank\">lidunwei@repower.cn</a>&gt;, 王琳 &lt;<a href=\"mailto:wanglin@repower.cn\" target=\"_blank\">wanglin@repower.cn</a>&gt;<br></div><br><br><div><div>\r\n<div><span></span><span style=\"font-family:verdana\">hi Nathan.</span></div><div><span style=\"font-family:verdana\">just in case of exceeded Google&#39;s message size limits.</span></div><div><font face=\"verdana\">I send the mail to you again for </font><span style=\"background-color:transparent\"><font face=\"verdana\">separate.</font></span></div>\r\n<div><br></div><hr style=\"width:210px;height:1px\" color=\"#b5c4df\" size=\"1\" align=\"left\">\r\n<div><span><div style=\"margin:10px\"><div><font face=\"verdana\" style=\"font-size:10pt\">Danny (林冬平)</font></div><div><b style=\"font-family:Aptos,sans-serif;font-size:16px;text-align:justify\"><span style=\"font-size:11.5pt;font-family:&quot;Microsoft YaHei&quot;,sans-serif\">R</span></b><span style=\"text-align:justify;font-size:11.5pt;font-family:&quot;Microsoft YaHei&quot;,sans-serif\">ePower technology co.,ltd </span></div><div>Product engineer</div><div><font face=\"verdana\" style=\"font-size:10pt\">Add:</font><span style=\"color:rgb(42,47,69);white-space:pre-wrap;background-color:transparent;font-size:13px\"><font face=\"Verdana\">Building 3B, Shangzhi Science and Technology Park, Guangming Avenue, Tangwei Community, Fenghuang Subdistrict, Guangming District, Shenzhen</font></span></div><div style=\"font-family:verdana;font-size:10pt\"><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\">E-mail:</span><span style=\"font-size:10pt;background-color:transparent\"> </span><a href=\"mailto:lindongping@repower.cn\" style=\"background-color:transparent;font-size:13.3333px\" target=\"_blank\">lindongping@repower.cn</a><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\"> </span></div><div style=\"font-family:verdana\"><span style=\"font-size:13.3333px\"></span><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\">Website:</span><span style=\"font-family:&quot;Microsoft YaHei UI&quot;;background-color:transparent\"> </span><a href=\"http://www.repower.cn\" style=\"background-color:transparent;font-size:13.3333px\" target=\"_blank\">www.repower.cn</a><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\"> </span></div></div></span></div>\r\n<blockquote style=\"margin-top:0px;margin-bottom:0px;margin-left:0.5em;margin-right:inherit\"><div> </div><div style=\"border-right:none;border-bottom:none;border-left:none;border-top:1pt solid rgb(181,196,223);padding:3pt 0cm 0cm\"><div style=\"padding:8px;font-size:12px;font-family:tahoma;color:rgb(0,0,0);background:rgb(239,239,239)\"><div><b>发件人：</b> <a href=\"mailto:lindongping@repower.cn\" target=\"_blank\">林冬平</a></div><div><b>发送时间：</b> 2025-10-20 12:23</div><div><b>收件人：</b> <a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan</a></div><div><b>抄送：</b> <a href=\"mailto:zengshoufeng@repower.cn\" target=\"_blank\">曾收锋</a>; <a href=\"mailto:dongrui@repower.cn\" target=\"_blank\">董瑞</a>; <a href=\"mailto:lidunwei@repower.cn\" target=\"_blank\">李墩伟</a></div><div><b>主题：</b> Battery testing solution</div></div></div><div><div>\r\n<div><span></span>hi Nathan.</div><div>Hope you are all well.</div><div>As talked with you last Friday, about machine solution as attached for you reference.</div><div>if anything unclear, please feel free to let us know.</div><div>thank you!</div>\r\n<div><br></div><hr style=\"width:210px;height:1px\" color=\"#b5c4df\" size=\"1\" align=\"left\">\r\n<div><span><div style=\"margin:10px\"><div><font face=\"verdana\" style=\"font-size:10pt\">Danny (林冬平)</font></div><div><b style=\"font-family:Aptos,sans-serif;font-size:16px;text-align:justify\"><span style=\"font-size:11.5pt;font-family:&quot;Microsoft YaHei&quot;,sans-serif\">R</span></b><span style=\"text-align:justify;font-size:11.5pt;font-family:&quot;Microsoft YaHei&quot;,sans-serif\">ePower technology co.,ltd </span></div><div>Product engineer</div><div><font face=\"verdana\" style=\"font-size:10pt\">Add:</font><span style=\"color:rgb(42,47,69);white-space:pre-wrap;background-color:transparent;font-size:13px\"><font face=\"Verdana\">Building 3B, Shangzhi Science and Technology Park, Guangming Avenue, Tangwei Community, Fenghuang Subdistrict, Guangming District, Shenzhen</font></span></div><div style=\"font-family:verdana;font-size:10pt\"><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\">E-mail:</span><span style=\"font-size:10pt;background-color:transparent\"> </span><a href=\"mailto:lindongping@repower.cn\" style=\"background-color:transparent;font-size:13.3333px\" target=\"_blank\">lindongping@repower.cn</a><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\"> </span></div><div style=\"font-family:verdana\"><span style=\"font-size:13.3333px\"></span><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\">Website:</span><span style=\"font-family:&quot;Microsoft YaHei UI&quot;;background-color:transparent\"> </span><a href=\"http://www.repower.cn\" style=\"background-color:transparent;font-size:13.3333px\" target=\"_blank\">www.repower.cn</a><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\"> </span></div></div></span></div>\r\n</div></div></blockquote>\r\n</div></div></div></div>\r\n</blockquote></div>','See attached electrical information from Bluesea.\r\n\r\nAs well as technical documents for all three lines.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Thu, Oct 23, 2025 at 6:06 PM Nathan Staron <\r\nNathan@lithiumbatterycompany.com> wrote:\r\n\r\n>\r\n>\r\n>\r\n> <https://lithiumbatterycompany.com/>\r\n> <https://www.instagram.com/lithiumbatteryco/>\r\n> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n> <https://www.facebook.com/LithiumBatteryCompany/>\r\n> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n> <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074\r\n> Phone 844-GET-LITHIUM\r\n> Nathan@lithiumbatterycompany.com\r\n> Schedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>\r\n>\r\n>\r\n> ---------- Forwarded message ---------\r\n> From: 林冬平 <lindongping@repower.cn>\r\n> Date: Mon, Oct 20, 2025 at 2:02 AM\r\n> Subject: 回复: Battery testing solution\r\n> To: Nathan <Nathan@lithiumbatterycompany.com>\r\n> Cc: 曾收锋 <zengshoufeng@repower.cn>, 董瑞 <dongrui@repower.cn>, 李墩伟 <\r\n> lidunwei@repower.cn>, 王琳 <wanglin@repower.cn>\r\n>\r\n>\r\n> hi Nathan.\r\n> just in case of exceeded Google\'s message size limits.\r\n> I send the mail to you again for separate.\r\n>\r\n> ------------------------------\r\n> Danny (林冬平)\r\n> *R*ePower technology co.,ltd\r\n> Product engineer\r\n> Add:Building 3B, Shangzhi Science and Technology Park, Guangming Avenue,\r\n> Tangwei Community, Fenghuang Subdistrict, Guangming District, Shenzhen\r\n> E-mail: lindongping@repower.cn\r\n> Website: www.repower.cn\r\n>\r\n>\r\n> *发件人：* 林冬平 <lindongping@repower.cn>\r\n> *发送时间：* 2025-10-20 12:23\r\n> *收件人：* Nathan <Nathan@lithiumbatterycompany.com>\r\n> *抄送：* 曾收锋 <zengshoufeng@repower.cn>; 董瑞 <dongrui@repower.cn>; 李墩伟\r\n> <lidunwei@repower.cn>\r\n> *主题：* Battery testing solution\r\n> hi Nathan.\r\n> Hope you are all well.\r\n> As talked with you last Friday, about machine solution as attached for\r\n> you reference.\r\n> if anything unclear, please feel free to let us know.\r\n> thank you!\r\n>\r\n> ------------------------------\r\n> Danny (林冬平)\r\n> *R*ePower technology co.,ltd\r\n> Product engineer\r\n> Add:Building 3B, Shangzhi Science and Technology Park, Guangming Avenue,\r\n> Tangwei Community, Fenghuang Subdistrict, Guangming District, Shenzhen\r\n> E-mail: lindongping@repower.cn\r\n> Website: www.repower.cn\r\n>\r\n>',0,0,0,0,0,0,'2025-10-23 22:11:10','2025-12-09 19:30:20','2025-12-09 19:30:20','2025-12-09 19:30:20',NULL,NULL,NULL),
(884,4,'<CAGOCFXj_9Le0P8WPPtEceJ1QAdt8raMDgq=650VMV0OVhRx96Q@mail.gmail.com>',NULL,NULL,'Fwd: Re: Battery testing solution','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">林冬平</strong> <span dir=\"auto\">&lt;<a href=\"mailto:lindongping@repower.cn\">lindongping@repower.cn</a>&gt;</span><br>Date: Wed, Oct 22, 2025 at 2:29 AM<br>Subject: Re: Re: Battery testing solution<br>To: Nathan &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\">Nathan@lithiumbatterycompany.com</a>&gt;, 李墩伟 &lt;<a href=\"mailto:lidunwei@repower.cn\">lidunwei@repower.cn</a>&gt;<br>Cc: 曾收锋 &lt;<a href=\"mailto:zengshoufeng@repower.cn\">zengshoufeng@repower.cn</a>&gt;, 董瑞 &lt;<a href=\"mailto:dongrui@repower.cn\">dongrui@repower.cn</a>&gt;<br></div><br><br><div class=\"msg768234433741187692\"><div>\r\n<div><span></span>Hi Nathan.</div><div>Good day.</div><div>Just make sure you get the file what your requirment last friday. cause the previously mail has been bounced.</div><div>thank you!</div>\r\n<div><br></div><hr style=\"width:210px;height:1px\" color=\"#b5c4df\" size=\"1\" align=\"left\">\r\n<div><span><div style=\"margin:10px\"><div><font face=\"verdana\" style=\"font-size:10pt\">Danny (林冬平)</font></div><div><b style=\"font-family:Aptos,sans-serif;font-size:16px;text-align:justify\"><span style=\"font-size:11.5pt;font-family:&quot;Microsoft YaHei&quot;,sans-serif\">R</span></b><span style=\"text-align:justify;font-size:11.5pt;font-family:&quot;Microsoft YaHei&quot;,sans-serif\">ePower technology co.,ltd </span></div><div>Product engineer</div><div><font face=\"verdana\" style=\"font-size:10pt\">Add:</font><span style=\"color:rgb(42,47,69);white-space:pre-wrap;background-color:transparent;font-size:13px\"><font face=\"Verdana\">Building 3B, Shangzhi Science and Technology Park, Guangming Avenue, Tangwei Community, Fenghuang Subdistrict, Guangming District, Shenzhen</font></span></div><div style=\"font-family:verdana;font-size:10pt\"><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\">E-mail:</span><span style=\"font-size:10pt;background-color:transparent\"> </span><a href=\"mailto:lindongping@repower.cn\" style=\"background-color:transparent;font-size:13.3333px\" target=\"_blank\">lindongping@repower.cn</a><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\"> </span></div><div style=\"font-family:verdana\"><span style=\"font-size:13.3333px\"></span><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\">Website:</span><span style=\"font-family:&quot;Microsoft YaHei UI&quot;;background-color:transparent\"> </span><a href=\"http://www.repower.cn\" style=\"background-color:transparent;font-size:13.3333px\" target=\"_blank\">www.repower.cn</a><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\"> </span></div></div></span></div>\r\n<blockquote style=\"margin-Top:0px;margin-Bottom:0px;margin-Left:0.5em;margin-Right:inherit\"><div> </div><div style=\"border:none;border-top:solid #b5c4df 1.0pt;padding:3.0pt 0cm 0cm 0cm\"><div style=\"PADDING-RIGHT:8px;PADDING-LEFT:8px;FONT-SIZE:12px;FONT-FAMILY:tahoma;COLOR:#000000;BACKGROUND:#efefef;PADDING-BOTTOM:8px;PADDING-TOP:8px\"><div><b>From:</b> <a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan Staron</a></div><div><b>Date:</b> 2025-10-20 20:06</div><div><b>To:</b> <a href=\"mailto:lidunwei@repower.cn\" target=\"_blank\">李墩伟</a></div><div><b>CC:</b> <a href=\"mailto:lindongping@repower.cn\" target=\"_blank\">林冬平</a>; <a href=\"mailto:zengshoufeng@repower.cn\" target=\"_blank\">曾收锋</a>; <a href=\"mailto:dongrui@repower.cn\" target=\"_blank\">董瑞</a></div><div><b>Subject:</b> Re: Battery testing solution</div></div></div><div><div class=\"m_768234433741187692FoxDiv20251022142628827520\"><div dir=\"ltr\"><div>Hello Eric,</div><div><br></div><div>Our shipping Port is Tampa.     Contact information is in my email signature. </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_768234433741187692_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Oct 20, 2025 at 5:45 AM 李墩伟 &lt;<a href=\"mailto:lidunwei@repower.cn\" target=\"_blank\">lidunwei@repower.cn</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div id=\"m_768234433741187692m_8116887988301243570wemail_placeholder_space\" style=\"font-size:11pt;color:rgb(0,0,0);line-height:1.43;font-family:-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;\"><div style=\"font-size:11pt;color:rgb(0,0,0);line-height:1.43\"><span style=\"font-size:11pt;color:rgb(0,0,0);line-height:1.43\">Dear Nathan</span></div><div style=\"font-size:11pt;color:rgb(0,0,0);line-height:1.43\"><span style=\"font-size:11pt;color:rgb(0,0,0);line-height:1.43\">        Nice day to you .</span></div><div style=\"font-size:11pt;color:rgb(0,0,0);line-height:1.43\"><span style=\"font-size:11pt;color:rgb(0,0,0);line-height:1.43\">        May I have your company information and your contact information for PI and quotation , kindly send us your receiving port  to calculate the shipping fee for CIF term</span></div></div><div style=\"font-size:11pt;color:rgb(0,0,0);line-height:1.43;font-family:-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;\">Thank you </div><div style=\"font-size:11pt;color:rgb(0,0,0);line-height:1.43;font-family:-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;\"><br></div><div id=\"m_768234433741187692m_8116887988301243570wemailsigcontent\"><div><div style=\"background-color:rgb(255,255,255);font-family:SimSun,宋体,&quot;Songti SC&quot;,宋体-简,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;,sans-serif;text-decoration-color:initial;text-decoration-style:initial\"><div style=\"font-family:arial,helvetica,sans-serif,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;;font-size:16px\">Best Regards</div><div style=\"font-family:arial,helvetica,sans-serif,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;;font-size:16px\">                                    Eric Lee</div><div style=\"font-family:arial,helvetica,sans-serif,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;;font-size:16px\">                                    Oversea Technical Director</div><div style=\"font-family:arial,helvetica,sans-serif,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;;font-size:16px\"><span lang=\"EN-US\" style=\"background-color:transparent;font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,sans-serif;font-size:15px\"><span style=\"color:rgb(0,0,0);font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,苹方-简,sans-serif\"><b style=\"font-weight:bolder\">___________________________________________</b></span></span></div><div style=\"font-family:arial,helvetica,sans-serif,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;;font-size:16px\"><span lang=\"EN-US\" style=\"background-color:transparent;font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,sans-serif;font-size:15px\"><span style=\"color:rgb(0,0,0);font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,苹方-简,sans-serif\"><b style=\"font-weight:bolder\">R</b></span>ePow</span><span lang=\"EN-US\" style=\"background-color:transparent;font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,sans-serif;font-size:15px\">er technology co.,ltd</span></div><div style=\"font-family:arial,helvetica,sans-serif,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;;font-size:16px\"><span lang=\"EN-US\" style=\"background-color:transparent;font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,sans-serif;font-size:15px\"><span lang=\"EN-US\" style=\"background-color:transparent;font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,sans-serif;font-size:15px;text-align:justify\"><span style=\"color:rgb(0,0,0)\">W</span>hatsApp:  +86 131 2880 4698</span></span></div><div style=\"font-family:arial,helvetica,sans-serif,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;;font-size:16px\"><span lang=\"EN-US\" style=\"background-color:transparent;font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,sans-serif;font-size:15px\"><span lang=\"EN-US\" style=\"background-color:transparent;font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,sans-serif;font-size:15px;text-align:justify\"><span style=\"font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,苹方-简,sans-serif;color:rgb(0,0,0)\"><strong><span style=\"font-size:15px;text-align:justify;font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,苹方-简,sans-serif\">E</span></strong><span style=\"font-size:15px;text-align:justify\">-mail: lidunwei</span><span lang=\"EN-US\" style=\"font-size:15px;text-align:justify\"><span>@<a href=\"http://repower.cn\" target=\"_blank\">repower.cn</a></span></span></span></span></span></div><div style=\"font-family:arial,helvetica,sans-serif,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;;font-size:16px\"><a rel=\"noreferrer\" style=\"outline:none;background-color:transparent;font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,sans-serif;font-size:10.5pt;line-height:1.5;text-align:justify;text-decoration:inherit\"><span lang=\"EN-US\"><span style=\"font-size:16px;line-height:24px\"></span></span></a><a rel=\"noreferrer\" style=\"outline:none;background-color:transparent;font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,sans-serif;text-decoration:inherit\"></a><span><a href=\"http://www.repower.cn/en/\" target=\"_blank\">www.repower.cn/en/</a></span><span style=\"font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,sans-serif\"> </span></div><span style=\"font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,苹方-简,sans-serif\"><span style=\"font-size:15px\"><span style=\"color:green\"><span style=\"color:rgb(0,0,0)\"><strong>A</strong>dd:</span><b> </b></span></span></span><span style=\"font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,苹方-简,sans-serif;color:rgb(0,0,0)\"><span style=\"font-size:15px\">Building 3, Shangzhi  Park, </span></span></div><div style=\"background-color:rgb(255,255,255);font-family:SimSun,宋体,&quot;Songti SC&quot;,宋体-简,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;,sans-serif;text-decoration-color:initial;text-decoration-style:initial\"><span style=\"font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,苹方-简,sans-serif;color:rgb(0,0,0)\"><span style=\"font-size:15px\">Guangming District,</span></span><span style=\"font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,苹方-简,sans-serif;color:rgb(0,0,0)\"><span style=\"font-size:15px\">Shenzhen, China</span></span></div></div><br><div style=\"font-size:11pt;color:rgb(0,0,0);line-height:1.43\"><br></div><div style=\"font-size:11pt;color:rgb(0,0,0);line-height:1.43\"><br></div></div><div style=\"margin:0px\">\r\n            \r\n      <div style=\"font-size:14px;color:rgba(11,18,26,0.6)\"><span>林冬平</span><span>&lt;<a href=\"mailto:lindongping@repower.cn\" target=\"_blank\">lindongping@repower.cn</a>&gt;</span> 在<span> 2025年10月20日 周一 12:23 </span>写道：</div><div style=\"margin:16px 0px 0px;padding:0px 0px 0px 10px;border-left:1px solid rgba(7,15,26,0.15)\"><div></div><div>\r\n<div><span></span>hi Nathan.</div><div>Hope you are all well.</div><div>As talked with you last Friday, about machine solution as attached for you reference.</div><div>if anything unclear, please feel free to let us know.</div><div>thank you!</div>\r\n<div><br></div><hr style=\"width:210px;height:1px\" color=\"#b5c4df\" size=\"1\" align=\"left\">\r\n<div><span><div style=\"margin:10px\"><div><font face=\"verdana,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;,sans-serif\" style=\"font-size:10pt\">Danny (林冬平)</font></div><div><b style=\"font-family:Aptos,sans-serif,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;;font-size:16px;text-align:justify\"><span style=\"font-size:11.5pt;font-family:&quot;Microsoft YaHei&quot;,微软雅黑,sans-serif,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;\">R</span></b><span style=\"text-align:justify;font-size:11.5pt;font-family:&quot;Microsoft YaHei&quot;,微软雅黑,sans-serif,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;\">ePower technology co.,ltd </span></div><div>Product engineer</div><div><font face=\"verdana,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;,sans-serif\" style=\"font-size:10pt\">Add:</font><span style=\"color:rgb(42,47,69);white-space:pre-wrap;background-color:transparent;font-size:13px\"><font face=\"Verdana,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;,sans-serif\">Building 3B, Shangzhi Science and Technology Park, Guangming Avenue, Tangwei Community, Fenghuang Subdistrict, Guangming District, Shenzhen</font></span></div><div style=\"font-family:verdana,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;,sans-serif;font-size:10pt\"><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\">E-mail:</span><span style=\"font-size:10pt;background-color:transparent\"> </span><a href=\"mailto:lindongping@repower.cn\" style=\"color:rgb(38,126,240);text-decoration:none;outline:none;background-color:transparent;font-size:13.3333px\" target=\"_blank\">lindongping@repower.cn</a><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\"> </span></div><div style=\"font-family:verdana,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;,sans-serif\"><span style=\"font-size:13.3333px\"></span><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\">Website:</span><span style=\"font-family:&quot;Microsoft YaHei UI&quot;,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;,sans-serif;background-color:transparent\"> </span><a style=\"text-decoration:none;outline:none;background-color:transparent;font-size:13.3333px\">www.repower.cn</a><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\"> </span></div></div></span></div>\r\n</div></div></div></blockquote></div>\r\n</div></div></blockquote>\r\n</div></div></div></div>','<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: 林冬平 <lindongping@repower.cn>\r\nDate: Wed, Oct 22, 2025 at 2:29 AM\r\nSubject: Re: Re: Battery testing solution\r\nTo: Nathan <Nathan@lithiumbatterycompany.com>, 李墩伟 <lidunwei@repower.cn>\r\nCc: 曾收锋 <zengshoufeng@repower.cn>, 董瑞 <dongrui@repower.cn>\r\n\r\n\r\nHi Nathan.\r\nGood day.\r\nJust make sure you get the file what your requirment last friday. cause the\r\npreviously mail has been bounced.\r\nthank you!\r\n\r\n------------------------------\r\nDanny (林冬平)\r\n*R*ePower technology co.,ltd\r\nProduct engineer\r\nAdd:Building 3B, Shangzhi Science and Technology Park, Guangming Avenue,\r\nTangwei Community, Fenghuang Subdistrict, Guangming District, Shenzhen\r\nE-mail: lindongping@repower.cn\r\nWebsite: www.repower.cn\r\n\r\n\r\n*From:* Nathan Staron <Nathan@lithiumbatterycompany.com>\r\n*Date:* 2025-10-20 20:06\r\n*To:* 李墩伟 <lidunwei@repower.cn>\r\n*CC:* 林冬平 <lindongping@repower.cn>; 曾收锋 <zengshoufeng@repower.cn>; 董瑞\r\n<dongrui@repower.cn>\r\n*Subject:* Re: Battery testing solution\r\nHello Eric,\r\n\r\nOur shipping Port is Tampa.     Contact information is in my email\r\nsignature.\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Mon, Oct 20, 2025 at 5:45 AM 李墩伟 <lidunwei@repower.cn> wrote:\r\n\r\n> Dear Nathan\r\n>         Nice day to you .\r\n>         May I have your company information and your contact information\r\n> for PI and quotation , kindly send us your receiving port  to calculate the\r\n> shipping fee for CIF term\r\n> Thank you\r\n>\r\n> Best Regards\r\n>                                     Eric Lee\r\n>                                     Oversea Technical Director\r\n> *___________________________________________*\r\n> *R*ePower technology co.,ltd\r\n> WhatsApp:  +86 131 2880 4698\r\n> *E*-mail: lidunwei@repower.cn\r\n> www.repower.cn/en/\r\n> *A*dd: Building 3, Shangzhi  Park,\r\n> Guangming District,Shenzhen, China\r\n>\r\n>\r\n>\r\n> 林冬平<lindongping@repower.cn> 在 2025年10月20日 周一 12:23 写道：\r\n> hi Nathan.\r\n> Hope you are all well.\r\n> As talked with you last Friday, about machine solution as attached for you\r\n> reference.\r\n> if anything unclear, please feel free to let us know.\r\n> thank you!\r\n>\r\n> ------------------------------\r\n> Danny (林冬平)\r\n> *R*ePower technology co.,ltd\r\n> Product engineer\r\n> Add:Building 3B, Shangzhi Science and Technology Park, Guangming Avenue,\r\n> Tangwei Community, Fenghuang Subdistrict, Guangming District, Shenzhen\r\n> E-mail: lindongping@repower.cn\r\n> Website: www.repower.cn\r\n>',0,0,0,0,0,0,'2025-10-23 22:21:31','2025-12-09 19:30:21','2025-12-09 19:30:21','2025-12-09 19:30:21',NULL,NULL,NULL),
(885,4,'<CAGOCFXj0y4Bg1SUuZ0iaVdhU5BbBFTfTta1H14YEKteL3Qpdxw@mail.gmail.com>',NULL,NULL,'Fwd: Re(2): Battery testing solution-Quotation','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">Nathan Staron</strong> <span dir=\"auto\">&lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\">Nathan@lithiumbatterycompany.com</a>&gt;</span><br>Date: Tue, Oct 21, 2025 at 1:38 PM<br>Subject: Fwd: Re(2): Battery testing solution-Quotation<br>To: Jarrett Brownfield &lt;<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>&gt;<br></div><br><br><div dir=\"ltr\"><div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\">Testing machinery quote for building 300 containers every 4 months.    Includes module testing inside and container testing outside.  FYI. <br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_6037318997650785027_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">Zengshoufeng-Repower</strong> <span dir=\"auto\">&lt;<a href=\"mailto:zengshoufeng@repower.cn\" target=\"_blank\">zengshoufeng@repower.cn</a>&gt;</span><br>Date: Tue, Oct 21, 2025 at 8:49 AM<br>Subject: Re(2): Battery testing solution-Quotation<br>To: nathan &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt;<br>Cc: dongrui &lt;<a href=\"mailto:dongrui@repower.cn\" target=\"_blank\">dongrui@repower.cn</a>&gt;<br></div><br><br><div>\r\n\r\n<div style=\"font-size:12pt;color:rgb(0,0,0);line-height:1.5\">\r\n\r\n<div><font face=\"微软雅黑\">Dear Nathan,</font></div><div><font face=\"微软雅黑\"><br></font></div><div><font face=\"微软雅黑\">Good morning,thanks for your time to receive our teammates,really happy to meet you.</font></div><div><font face=\"微软雅黑\"><br></font></div><div><font face=\"微软雅黑\">Pls find the attached quotation for the machines,we can have an online meeting if you have any doubts later.</font></div><div><font face=\"微软雅黑\"><br></font></div><div><span style=\"line-height:1.5\"><font face=\"微软雅黑\">\r\n</font><div style=\"font-size:14px\"> \r\n<p class=\"MsoNormal\"><span style=\"font-size:12pt\"><font face=\"微软雅黑\">Your prompt reply will be highly \r\nappreciated!</font></span></p>\r\n<p class=\"MsoNormal\"><font face=\"微软雅黑\"><span style=\"font-size:12pt\"></span> </font></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.5pt\"><font face=\"微软雅黑\"><u></u><u></u></font></span></p><p class=\"MsoNormal\"><span style=\"font-size:12pt\"><font face=\"微软雅黑\"><u></u><u></u></font></span></p><p class=\"MsoNormal\"><font face=\"微软雅黑\"><span style=\"font-size:12pt\">Yours sincerely,</span><span style=\"font-size:12pt\"><u></u><u></u></span></font></p><p class=\"MsoNormal\"><font face=\"微软雅黑\"><span style=\"font-size:12pt\">Jacky/曾收锋</span><span style=\"font-size:12pt\"><u></u><u></u></span></font></p><p class=\"MsoNormal\"><span style=\"font-size:12pt\"><font face=\"微软雅黑\">Sales Manager&amp;Project Manager</font></span><span style=\"font-family:微软雅黑;font-size:12pt\"><u></u><u></u></span></p><p class=\"MsoNormal\" style=\"font-family:微软雅黑\"><span style=\"font-size:12pt\"><font face=\"微软雅黑\">Overseas Marketing &amp; Sales Divsion</font></span><span style=\"font-size:12pt\"><u></u><u></u></span></p><p class=\"MsoNormal\" style=\"font-family:微软雅黑\"><span style=\"font-size:12pt\"><font face=\"微软雅黑\">==============================================</font></span><span style=\"font-size:12pt\"><u></u><u></u></span></p><p class=\"MsoNormal\" style=\"font-family:微软雅黑\"><span style=\"font-size:12pt\"><font face=\"微软雅黑\">R</font></span><span style=\"font-size:12pt\"><font face=\"微软雅黑\">ePower technology co.,ltd </font></span><span style=\"font-size:12pt\"><u></u><u></u></span></p><p class=\"MsoNormal\" style=\"font-family:微软雅黑\"><span style=\"font-size:12pt\"><font face=\"微软雅黑\">U</font></span><span style=\"font-size:12pt\"><font face=\"微软雅黑\">rl:<a href=\"http://www.repower.cn/en/\" target=\"_blank\">www.repower.cn/en/</a></font></span><span style=\"font-size:12pt\"><u></u><u></u></span></p><p class=\"MsoNormal\" style=\"font-family:微软雅黑\"><span style=\"font-size:12pt\"><font face=\"微软雅黑\">M</font></span><span style=\"font-size:12pt\"><font face=\"微软雅黑\">obile&amp;WhatsApp:  0086 13556844581</font></span><span style=\"font-size:12pt\"><u></u><u></u></span></p><p class=\"MsoNormal\" style=\"font-family:微软雅黑\"><span style=\"font-size:12pt\"><font face=\"微软雅黑\">W</font></span><span style=\"font-size:12pt\"><font face=\"微软雅黑\">echat:  0086 13556844581</font></span><span style=\"font-size:12pt\"><u></u><u></u></span></p><p class=\"MsoNormal\" style=\"font-family:微软雅黑\"><span style=\"font-size:12pt\"><font face=\"微软雅黑\">S</font></span><span style=\"font-size:12pt\"><font face=\"微软雅黑\">kype:jackyzeng0086</font></span><span style=\"font-size:12pt\"><u></u><u></u></span></p><p class=\"MsoNormal\" style=\"font-family:微软雅黑\"><span style=\"font-size:12pt\"><font face=\"微软雅黑\">E</font></span><span style=\"font-size:12pt\"><font face=\"微软雅黑\">-mail:  zengshoufeng</font></span><a href=\"mailto:YuenYam@cti-cert.com\" target=\"_blank\"><span style=\"font-size:12pt\"><font face=\"微软雅黑\">@repower.cn</font></span></a><span style=\"font-size:12pt\"><font face=\"微软雅黑\"> </font></span><span style=\"font-size:12pt\"><u></u><u></u></span></p><p class=\"MsoNormal\" style=\"font-family:微软雅黑\"></p><p class=\"MsoNormal\" style=\"font-family:微软雅黑\"><span style=\"font-size:12pt\"><font face=\"微软雅黑\">A</font></span><span style=\"font-size:12pt\"><font face=\"微软雅黑\">dd:  Bldg 3, Shangzhi Sci. &amp; Tech. Park, Guangming AVE, Guangming District, Shenzhen, 518000 P.R.China</font></span><span style=\"font-size:12pt\"><u></u><u></u></span></p></div>\r\n<div style=\"font-family:Verdana,微软雅黑\">\r\n<div>\r\n<p class=\"MsoNormal\" style=\"font-family:宋体;font-size:14px;margin-right:0cm;margin-left:0cm\"><img src=\"cid:ii_19a07d8f683ba18d8621\"></p>\r\n<p class=\"MsoNormal\" style=\"font-family:宋体;font-size:14px;margin-right:0cm;margin-left:0cm\"><font face=\"微软雅黑\"><span lang=\"EN-US\" style=\"font-size:15px\"><br></span></font></p></div></div></span><br></div>\r\n\r\n\r\n<div style=\"font-family:Verdana,微软雅黑;border-top:1pt solid rgb(123,164,224);padding:2px 0px\"></div>\r\n<div style=\"font-family:Verdana,微软雅黑;background:rgb(239,239,239);font-size:10pt;color:rgb(0,0,0);padding:8px\">	\r\n	<div><b>From: </b><a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan</a></div>\r\n	<div><b>To: </b><a href=\"mailto:lidunwei@repower.cn\" target=\"_blank\">lidunwei</a> </div>  \r\n	<div><b>CC: </b><a href=\"mailto:lindongping@repower.cn\" target=\"_blank\">lindongping</a>; <a href=\"mailto:zengshoufeng@repower.cn\" target=\"_blank\">zengshoufeng</a>; <a href=\"mailto:dongrui@repower.cn\" target=\"_blank\">dongrui</a></div>  \r\n	<div><b>Date: </b>2025-10-20 20:06</div>  \r\n	<div><b>Subject: </b>Re: Battery testing solution</div> \r\n</div>  \r\n<br>\r\n\r\n<div style=\"font-family:Verdana,微软雅黑\"><span><span>\r\n\r\n<div dir=\"ltr\"><div>Hello Eric,</div><div><br></div><div>Our shipping Port is Tampa.     Contact information is in my email signature. </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img width=\"140\" style=\"display:block;border-radius:10px\"></div><img name=\"m_6037318997650785027_m_5323384781838833272_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Oct 20, 2025 at 5:45 AM 李墩伟 &lt;<a href=\"mailto:lidunwei@repower.cn\" target=\"_blank\">lidunwei@repower.cn</a>&gt; wrote:<br></div><p></p><div style=\"border-top:1pt solid rgb(123,164,224);padding:10px 0px 0px\"><div id=\"m_6037318997650785027m_5323384781838833272m_8116887988301243570wemail_placeholder_space\" style=\"font-size:11pt;color:rgb(0,0,0);line-height:1.43;font-family:-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;\"><div style=\"font-size:11pt;color:rgb(0,0,0);line-height:1.43\"><span style=\"font-size:11pt;color:rgb(0,0,0);line-height:1.43\">Dear Nathan</span></div><div style=\"font-size:11pt;color:rgb(0,0,0);line-height:1.43\"><span style=\"font-size:11pt;color:rgb(0,0,0);line-height:1.43\">        Nice day to you .</span></div><div style=\"font-size:11pt;color:rgb(0,0,0);line-height:1.43\"><span style=\"font-size:11pt;color:rgb(0,0,0);line-height:1.43\">        May I have your company information and your contact information for PI and quotation , kindly send us your receiving port  to calculate the shipping fee for CIF term</span></div></div><div style=\"font-size:11pt;color:rgb(0,0,0);line-height:1.43;font-family:-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;\">Thank you </div><div style=\"font-size:11pt;color:rgb(0,0,0);line-height:1.43;font-family:-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;\"><br></div><div id=\"m_6037318997650785027m_5323384781838833272m_8116887988301243570wemailsigcontent\"><div><div style=\"background-color:rgb(255,255,255);font-family:SimSun,宋体,&quot;Songti SC&quot;,宋体-简,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;,sans-serif;text-decoration-color:initial;text-decoration-style:initial\"><div style=\"font-family:arial,helvetica,sans-serif,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;;font-size:16px\">Best Regards</div><div style=\"font-family:arial,helvetica,sans-serif,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;;font-size:16px\">                                    Eric Lee</div><div style=\"font-family:arial,helvetica,sans-serif,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;;font-size:16px\">                                    Oversea Technical Director</div><div style=\"font-family:arial,helvetica,sans-serif,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;;font-size:16px\"><span lang=\"EN-US\" style=\"background-color:transparent;font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,sans-serif;font-size:15px\"><span style=\"color:rgb(0,0,0);font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,苹方-简,sans-serif\"><b style=\"font-weight:bolder\">___________________________________________</b></span></span></div><div style=\"font-family:arial,helvetica,sans-serif,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;;font-size:16px\"><span lang=\"EN-US\" style=\"background-color:transparent;font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,sans-serif;font-size:15px\"><span style=\"color:rgb(0,0,0);font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,苹方-简,sans-serif\"><b style=\"font-weight:bolder\">R</b></span>ePow</span><span lang=\"EN-US\" style=\"background-color:transparent;font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,sans-serif;font-size:15px\">er technology co.,ltd</span></div><div style=\"font-family:arial,helvetica,sans-serif,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;;font-size:16px\"><span lang=\"EN-US\" style=\"background-color:transparent;font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,sans-serif;font-size:15px\"><span lang=\"EN-US\" style=\"background-color:transparent;font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,sans-serif;font-size:15px;text-align:justify\"><span style=\"color:rgb(0,0,0)\">W</span>hatsApp:  +86 131 2880 4698</span></span></div><div style=\"font-family:arial,helvetica,sans-serif,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;;font-size:16px\"><span lang=\"EN-US\" style=\"background-color:transparent;font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,sans-serif;font-size:15px\"><span lang=\"EN-US\" style=\"background-color:transparent;font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,sans-serif;font-size:15px;text-align:justify\"><span style=\"font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,苹方-简,sans-serif;color:rgb(0,0,0)\"><strong><span style=\"font-size:15px;text-align:justify;font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,苹方-简,sans-serif\">E</span></strong><span style=\"font-size:15px;text-align:justify\">-mail: lidunwei</span><span lang=\"EN-US\" style=\"font-size:15px;text-align:justify\"><span>@<a href=\"http://repower.cn\" target=\"_blank\">repower.cn</a></span></span></span></span></span></div><div style=\"font-family:arial,helvetica,sans-serif,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;;font-size:16px\"><a rel=\"noreferrer\" style=\"outline:none;background-color:transparent;font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,sans-serif;font-size:10.5pt;line-height:1.5;text-align:justify;text-decoration:inherit\"><span lang=\"EN-US\"><span style=\"font-size:16px;line-height:24px\"></span></span></a><a rel=\"noreferrer\" style=\"outline:none;background-color:transparent;font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,sans-serif;text-decoration:inherit\"></a><span><a href=\"http://www.repower.cn/en/\" target=\"_blank\">www.repower.cn/en/</a></span><span style=\"font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,sans-serif\"> </span></div><span style=\"font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,苹方-简,sans-serif\"><span style=\"font-size:15px\"><span style=\"color:green\"><span style=\"color:rgb(0,0,0)\"><strong>A</strong>dd:</span><b> </b></span></span></span><span style=\"font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,苹方-简,sans-serif;color:rgb(0,0,0)\"><span style=\"font-size:15px\">Building 3, Shangzhi  Park, </span></span></div><div style=\"background-color:rgb(255,255,255);font-family:SimSun,宋体,&quot;Songti SC&quot;,宋体-简,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;,sans-serif;text-decoration-color:initial;text-decoration-style:initial\"><span style=\"font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,苹方-简,sans-serif;color:rgb(0,0,0)\"><span style=\"font-size:15px\">Guangming District,</span></span><span style=\"font-family:&quot;Microsoft YaHei&quot;,微软雅黑,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,苹方-简,sans-serif;color:rgb(0,0,0)\"><span style=\"font-size:15px\">Shenzhen, China</span></span></div></div><br><div style=\"font-size:11pt;color:rgb(0,0,0);line-height:1.43\"><br></div><div style=\"font-size:11pt;color:rgb(0,0,0);line-height:1.43\"><br></div></div><div style=\"margin:0px\">\r\n            \r\n      <div style=\"font-size:14px;color:rgba(11,18,26,0.6)\"><span>林冬平</span><span>&lt;<a href=\"mailto:lindongping@repower.cn\" target=\"_blank\">lindongping@repower.cn</a>&gt;</span> 在<span> 2025年10月20日 周一 12:23 </span>写道：</div><div style=\"margin:16px 0px 0px;padding:0px 0px 0px 10px;border-left:1px solid rgba(7,15,26,0.15)\"><div></div><div>\r\n\r\n<div><span></span>hi Nathan.</div><div>Hope you are all well.</div><div>As talked with you last Friday, about machine solution as attached for you reference.</div><div>if anything unclear, please feel free to let us know.</div><div>thank you!</div>\r\n<div><br></div><hr style=\"width:210px;height:1px\" color=\"#b5c4df\" size=\"1\" align=\"left\">\r\n<div><span><div style=\"margin:10px\"><div><font face=\"verdana,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;,sans-serif\" style=\"font-size:10pt\">Danny (林冬平)</font></div><div><b style=\"font-family:Aptos,sans-serif,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;;font-size:16px;text-align:justify\"><span style=\"font-size:11.5pt;font-family:&quot;Microsoft YaHei&quot;,微软雅黑,sans-serif,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;\">R</span></b><span style=\"text-align:justify;font-size:11.5pt;font-family:&quot;Microsoft YaHei&quot;,微软雅黑,sans-serif,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;\">ePower technology co.,ltd </span></div><div>Product engineer</div><div><font face=\"verdana,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;,sans-serif\" style=\"font-size:10pt\">Add:</font><span style=\"color:rgb(42,47,69);white-space:pre-wrap;background-color:transparent;font-size:13px\"><font face=\"Verdana,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;,sans-serif\">Building 3B, Shangzhi Science and Technology Park, Guangming Avenue, Tangwei Community, Fenghuang Subdistrict, Guangming District, Shenzhen</font></span></div><div style=\"font-family:verdana,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;,sans-serif;font-size:10pt\"><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\">E-mail:</span><span style=\"font-size:10pt;background-color:transparent\"> </span><a href=\"mailto:lindongping@repower.cn\" style=\"color:rgb(38,126,240);text-decoration:none;outline:none;background-color:transparent;font-size:13.3333px\" target=\"_blank\">lindongping@repower.cn</a><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\"> </span></div><div style=\"font-family:verdana,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;,sans-serif\"><span style=\"font-size:13.3333px\"></span><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\">Website:</span><span style=\"font-family:&quot;Microsoft YaHei UI&quot;,-apple-system,BlinkMacSystemFont,&quot;PingFang SC&quot;,&quot;Microsoft YaHei&quot;,sans-serif;background-color:transparent\"> </span><a style=\"text-decoration:none;outline:none;background-color:transparent;font-size:13.3333px\">www.repower.cn</a><span style=\"color:rgb(0,0,0);background-color:rgba(0,0,0,0);font-size:13.3333px\"> </span></div></div></span></div>\r\n\r\n</div></div></div></div></div>\r\n\r\n\r\n</span></span></div>\r\n\r\n\r\n\r\n</div>\r\n</div></div></div>\r\n</div></div>','<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: Nathan Staron <Nathan@lithiumbatterycompany.com>\r\nDate: Tue, Oct 21, 2025 at 1:38 PM\r\nSubject: Fwd: Re(2): Battery testing solution-Quotation\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\n\r\n\r\n\r\nTesting machinery quote for building 300 containers every 4 months.\r\nIncludes module testing inside and container testing outside.  FYI.\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: Zengshoufeng-Repower <zengshoufeng@repower.cn>\r\nDate: Tue, Oct 21, 2025 at 8:49 AM\r\nSubject: Re(2): Battery testing solution-Quotation\r\nTo: nathan <Nathan@lithiumbatterycompany.com>\r\nCc: dongrui <dongrui@repower.cn>\r\n\r\n\r\nDear Nathan,\r\n\r\nGood morning,thanks for your time to receive our teammates,really happy to\r\nmeet you.\r\n\r\nPls find the attached quotation for the machines,we can have an online\r\nmeeting if you have any doubts later.\r\n\r\nYour prompt reply will be highly appreciated!\r\n\r\n\r\n\r\nYours sincerely,\r\n\r\nJacky/曾收锋\r\n\r\nSales Manager&Project Manager\r\n\r\nOverseas Marketing & Sales Divsion\r\n\r\n==============================================\r\n\r\nRePower technology co.,ltd\r\n\r\nUrl:www.repower.cn/en/\r\n\r\nMobile&WhatsApp:  0086 13556844581\r\n\r\nWechat:  0086 13556844581\r\n\r\nSkype:jackyzeng0086\r\n\r\nE-mail:  zengshoufeng@repower.cn <YuenYam@cti-cert.com>\r\n\r\nAdd:  Bldg 3, Shangzhi Sci. & Tech. Park, Guangming AVE, Guangming\r\nDistrict, Shenzhen, 518000 P.R.China\r\n\r\n\r\n\r\n*From: *nathan <Nathan@lithiumbatterycompany.com>\r\n*To: *lidunwei <lidunwei@repower.cn>\r\n*CC: *lindongping <lindongping@repower.cn>; zengshoufeng\r\n<zengshoufeng@repower.cn>; dongrui <dongrui@repower.cn>\r\n*Date: *2025-10-20 20:06\r\n*Subject: *Re: Battery testing solution\r\n\r\nHello Eric,\r\n\r\nOur shipping Port is Tampa.     Contact information is in my email\r\nsignature.\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Mon, Oct 20, 2025 at 5:45 AM 李墩伟 <lidunwei@repower.cn> wrote:\r\n\r\nDear Nathan\r\n        Nice day to you .\r\n        May I have your company information and your contact information\r\nfor PI and quotation , kindly send us your receiving port  to calculate the\r\nshipping fee for CIF term\r\nThank you\r\n\r\nBest Regards\r\n                                    Eric Lee\r\n                                    Oversea Technical Director\r\n*___________________________________________*\r\n*R*ePower technology co.,ltd\r\nWhatsApp:  +86 131 2880 4698\r\n*E*-mail: lidunwei@repower.cn\r\nwww.repower.cn/en/\r\n*A*dd: Building 3, Shangzhi  Park,\r\nGuangming District,Shenzhen, China\r\n\r\n\r\n\r\n林冬平<lindongping@repower.cn> 在 2025年10月20日 周一 12:23 写道：\r\nhi Nathan.\r\nHope you are all well.\r\nAs talked with you last Friday, about machine solution as attached for you\r\nreference.\r\nif anything unclear, please feel free to let us know.\r\nthank you!\r\n\r\n------------------------------\r\nDanny (林冬平)\r\n*R*ePower technology co.,ltd\r\nProduct engineer\r\nAdd:Building 3B, Shangzhi Science and Technology Park, Guangming Avenue,\r\nTangwei Community, Fenghuang Subdistrict, Guangming District, Shenzhen\r\nE-mail: lindongping@repower.cn\r\nWebsite: www.repower.cn',0,0,0,0,0,0,'2025-10-23 22:22:39','2025-12-09 19:30:22','2025-12-09 19:30:22','2025-12-09 19:30:22',NULL,NULL,NULL),
(886,4,'<etPan.68fab7ce.1c1ead3b.b9c4@mavrix.one>',NULL,NULL,'Mtg at 11 tomorrow','rick@mavrix.one','Rick','(No content)','(No content)',0,0,0,0,0,0,'2025-10-23 23:18:37','2025-12-09 19:30:23','2025-12-09 19:30:23','2025-12-09 19:30:23',NULL,NULL,NULL),
(887,4,'<MW5PR84MB1769E0467BF1D22011C7F938FBF1A@MW5PR84MB1769.NAMPRD84.PROD.OUTLOOK.COM>',NULL,NULL,'Re: HP MJF Printers','gary.fudge@hp.com','\"Fudge, Gary\"','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n</head>\r\n<body>\r\n<div style=\"font-family: Aptos, -apple-system, HelveticaNeue, sans-serif;font-size: 12pt\">\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" dir=\"ltr\">\r\nI’m on a flight but should land around 10:30-10:45. &nbsp; Let me know of a good number to reach you and I can call then</div>\r\n</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\" style=\"font-family: Aptos, -apple-system, HelveticaNeue, sans-serif;font-size: 12pt\" dir=\"auto\">\r\n<br>\r\n</div>\r\n<div id=\"ms-outlook-mobile-signature\" style=\"font-family: Aptos, -apple-system, HelveticaNeue, sans-serif;font-size: 12pt\">\r\n<div style=\"direction: ltr;\">Gary Fudge</div>\r\n<div style=\"direction: ltr;\">678-654-6734</div>\r\n<div><br>\r\n</div>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, October 24, 2025 7:41:17 AM<br>\r\n<b>To:</b> Fudge, Gary &lt;gary.fudge@hp.com&gt;<br>\r\n<b>Subject:</b> Re: HP MJF Printers</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div><font face=\"\"><b><span style=\"font-size:11.0pt; line-height:107%; color:red\">CAUTION: External Email\r\n</span></b></font>\r\n<div>Hey Gary,<br>\r\nAre you available to day at 10a for a call?<br>\r\nTalking about power requirements for our facilities next week and need to start pulling together numbers.&nbsp;<br>\r\nOr, can you send me power requirements for the MJF Printers?<br>\r\nLet me know what works.<br>\r\nThanks!<br>\r\nRick <br>\r\n<br>\r\n<p class=\"x_airmail_on\">On October 2, 2025 at 11:28:38, Fudge, Gary (<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div lang=\"EN-US\" style=\"word-wrap:break-word\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_WordSection1\">\r\n<p class=\"x_MsoNormal\">Hello Rick,</p>\r\n<p class=\"x_MsoNormal\">&nbsp;</p>\r\n<p class=\"x_MsoNormal\">Are you all ready to continue the conversation about our 3D Printers/3DP Services?&nbsp; If not, when should I check back with you?</p>\r\n<p class=\"x_MsoNormal\">&nbsp;</p>\r\n<p class=\"x_MsoNormal\">Best Regards,</p>\r\n<p class=\"x_MsoNormal\">&nbsp;</p>\r\n<table class=\"x_MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt; padding:0in 5.4pt 0in 5.4pt; height:23.3pt\">\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:14.0pt; font-family:&quot;Forma DJR Display&quot;; color:black\">Gary Fudge</span><span style=\"font-size:11.0pt; color:black\"></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt; padding:0in 5.4pt 0in 5.4pt; height:23.3pt\">\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Forma DJR Display&quot;; color:black\">3D Print - Enterprise Account Manager – US South\r\n</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Forma DJR Display&quot;; color:black\">Atlanta , GA</span><span style=\"font-size:11.0pt; color:black\"></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt; padding:0in 5.4pt 0in 5.4pt; height:20.6pt\">\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:10.0pt; font-family:&quot;Forma DJR Micro&quot;; color:black\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt; color:black\"></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt; padding:0in 5.4pt 0in 5.4pt; height:20.6pt\">\r\n<p class=\"x_MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"font-size:10.0pt; font-family:&quot;Forma DJR Micro&quot;; color:black\">|</span><span style=\"font-size:11.0pt; color:black\"></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt; padding:0in 5.4pt 0in 5.4pt; height:20.6pt\">\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\"><span style=\"color:blue\">Gary.Fudge</span><span style=\"font-size:10.0pt; font-family:&quot;Forma DJR Micro&quot;; color:blue\">@HP.com</span></a></span><span style=\"font-size:11.0pt; color:black\"></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt; padding:0in 5.4pt 0in 5.4pt; height:22.5pt\">\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; color:black\"><img border=\"0\" width=\"368\" height=\"85\" id=\"x_Picture_x0020_1\" src=\"cid:92845B48-0023-45F7-81C1-620B3C947B46\" alt=\"image001.png\" style=\"width:3.8333in; height:.8819in\"></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"x_MsoNormal\">&nbsp;</p>\r\n<p class=\"x_MsoNormal\">&nbsp;</p>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','I’m on a flight but should land around 10:30-10:45.   Let me know of a good number to reach you and I can call then\r\n\r\nGary Fudge\r\n678-654-6734\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, October 24, 2025 7:41:17 AM\r\nTo: Fudge, Gary <gary.fudge@hp.com>\r\nSubject: Re: HP MJF Printers\r\n\r\nCAUTION: External Email\r\nHey Gary,\r\nAre you available to day at 10a for a call?\r\nTalking about power requirements for our facilities next week and need to start pulling together numbers.\r\nOr, can you send me power requirements for the MJF Printers?\r\nLet me know what works.\r\nThanks!\r\nRick\r\n\r\n\r\nOn October 2, 2025 at 11:28:38, Fudge, Gary (gary.fudge@hp.com<mailto:gary.fudge@hp.com>) wrote:\r\n\r\nHello Rick,\r\n\r\n\r\n\r\nAre you all ready to continue the conversation about our 3D Printers/3DP Services?  If not, when should I check back with you?\r\n\r\n\r\n\r\nBest Regards,\r\n\r\n\r\n\r\nGary Fudge\r\n\r\n3D Print - Enterprise Account Manager – US South\r\n\r\nAtlanta , GA\r\n\r\nM - (678) 654-6734\r\n\r\n|\r\n\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n\r\n[image001.png]',0,0,0,0,0,0,'2025-10-24 12:55:57','2025-12-09 19:30:23','2025-12-09 19:30:23','2025-12-09 19:30:23',NULL,NULL,NULL),
(888,4,'<CAPzxmXYbppEtgR-ztuMXgGVRAsGfoavsptr5sPeNYAa08K_Shg@mail.gmail.com>',NULL,NULL,'Re: Grafik: Request for Information','tanya@grafik.com','Tanya Nazarian','<div dir=\"ltr\">Hi Rick, <div><br></div><div>I appreciate the update and love to hear that you&#39;re focused on the Mavrix1 story. We&#39;ll be on the lookout for next steps soon. Have a great weekend! </div></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Oct 24, 2025 at 7:44 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex\"> Hi Tanya,<br>Sorry we’ve been a bit busy on our end….&quot;building our story&quot; you could say…<br>That all said, thanks for the quote and getting it to us so quickly. <br>I think we’ll be in touch later this month if not next to discuss some next steps.<br>Thanks for your patience. Talk soon.<br>Rick <br> <br><p>On October 23, 2025 at 10:17:54, Tanya Nazarian (<a href=\"mailto:tanya@grafik.com\" target=\"_blank\">tanya@grafik.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div>Hi Rick, </div><div><br></div><div>I hope all is well. I wanted to follow up with you on the ROM we shared. Do you have a few minutes to connect one day next week? As mentioned, it would be great to bring in our strategy team to continue the conversation.</div><div><br></div><div>Thanks! </div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Oct 3, 2025 at 5:28 PM Tanya Nazarian &lt;<a href=\"mailto:tanya@grafik.com\" target=\"_blank\">tanya@grafik.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\">Rick, <div><br></div><div>Thank you again for your interest in Grafik. We&#39;ve taken the time to consider your near-term goals and the current state of the Mavrix1 brand, and feel well-equipped to deliver on your needs. Per our conversation, we wanted to share with you a rough order of magnitude that outlines what you can expect when working with our team.<span> </span></div><div><br></div><div>Take a look, and if you remain interested in continuing the conversation, I recommend setting up a follow-up discussion with our brand and client strategy teams to take a deeper dive into what it will actually take to get the brand where it needs to be. Let us know your thoughts, and please confirm receipt when you get a moment. </div><div><br></div><div>Have a great weekend!  </div><div><br></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Sep 24, 2025 at 3:46 PM Ian Olsen &lt;<a href=\"mailto:ian@grafik.com\" target=\"_blank\">ian@grafik.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>Let&#39;s do 3-3:30pm. I can shoot over an invite here shortly!<br><br>Much appreciated, glad we can work it out.</div><div><br></div><div>Look forward to chatting,</div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal\"><br><font color=\"#222222\" face=\"arial, sans-serif\"><b>Ian Olsen</b></font><br></p><p style=\"margin:0px 0px 2px;line-height:normal\"><font color=\"#222222\" face=\"arial, sans-serif\"><span>Business Development Manager</span></font><span style=\"color:rgb(34,34,34);font-family:arial,sans-serif\">  •<span>  </span><b>P</b> (</span><font color=\"#222222\" face=\"arial, sans-serif\"><span>703) 249-9771</span></font></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><b style=\"font-family:arial,sans-serif\">Grafik</b><span style=\"font-family:&quot;Helvetica Neue&quot;\">  •  Philadelphia  •  </span><span style=\"font-family:&quot;Helvetica Neue&quot;\">Washington, D.C.</span><br></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><span style=\"font-family:arial,sans-serif\"><b><a href=\"https://grafik.agency/\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">instagram</font></a>   <a href=\"https://linkedin.com/company/grafik\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">linkedin</font></a></font></font><font color=\"#3db3b5\"> </font></b></span></p></div></div></div><br><div></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Sep 24, 2025 at 3:30 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex\"> Can we still take tomorrow 2-5: <br>Sometime in that range???<br>Sorry for the confusion.<br>Thanks!<br>Rick <br> <br><p>On September 23, 2025 at 11:42:41, Ian Olsen (<a href=\"mailto:ian@grafik.com\" target=\"_blank\">ian@grafik.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>Next week looks good on our end. We can do Monday 1-3:30pm or Wednesday is mostly open. </div><div><br></div><div>Let me know what works for you.</div><div><br></div><div>Thanks,</div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal\"><br><font color=\"#222222\" face=\"arial, sans-serif\"><b>Ian Olsen</b></font><br></p><p style=\"margin:0px 0px 2px;line-height:normal\"><font color=\"#222222\" face=\"arial, sans-serif\"><span>Business Development Manager</span></font><span style=\"color:rgb(34,34,34);font-family:arial,sans-serif\">  •<span>  </span><b>P</b> (</span><font color=\"#222222\" face=\"arial, sans-serif\"><span>703) 249-9771</span></font></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><b style=\"font-family:arial,sans-serif\">Grafik</b><span style=\"font-family:&quot;Helvetica Neue&quot;\">  •  Philadelphia  •  </span><span style=\"font-family:&quot;Helvetica Neue&quot;\">Washington, D.C.</span><br></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><span style=\"font-family:arial,sans-serif\"><b><a href=\"https://grafik.agency/\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">instagram</font></a>   <a href=\"https://linkedin.com/company/grafik\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">linkedin</font></a></font></font><font color=\"#3db3b5\"> </font></b></span></p></div></div></div><br><div></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Sep 23, 2025 at 10:28 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex\">\r\n\r\n\r\n\r\n    <div id=\"m_-6971739334956016662m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Hi Ian,</div><div id=\"m_-6971739334956016662m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thanks for the response.</div><div id=\"m_-6971739334956016662m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">It was quick enough. </div><div id=\"m_-6971739334956016662m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">How does next week look?</div><div id=\"m_-6971739334956016662m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thanks again,</div><div id=\"m_-6971739334956016662m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Rick</div> <br> <div id=\"m_-6971739334956016662m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_sign_1758637591710331904\">\r\n\r\n\r\n\r\n          \r\n       \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n\r\n\r\n\r\n       \r\n</div> <br><p>On September 23, 2025 at 09:31:55, Ian Olsen (<a href=\"mailto:ian@grafik.com\" target=\"_blank\">ian@grafik.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>Apologies for the late reply. Thanks for reaching out to Grafik. We&#39;re happy to talk through your branding &amp; campaign needs soup to nuts. We have some openings tomorrow at 10 or 10:30am, or Thursday between 2-5pm ET. Let me know if that works on your end and we can get it on the books.</div><div><br></div><div>Look forward to hearing from you soon.</div><div><br></div><div>Thanks,</div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal\"><br><font color=\"#222222\" face=\"arial, sans-serif\"><b>Ian Olsen</b></font><br></p><p style=\"margin:0px 0px 2px;line-height:normal\"><font color=\"#222222\" face=\"arial, sans-serif\"><span>Business Development Manager</span></font><span style=\"color:rgb(34,34,34);font-family:arial,sans-serif\">  •<span>  </span><b>P</b> (</span><font color=\"#222222\" face=\"arial, sans-serif\"><span>703) 249-9771</span></font></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><b style=\"font-family:arial,sans-serif\">Grafik</b><span style=\"font-family:&quot;Helvetica Neue&quot;\">  •  Philadelphia  •  </span><span style=\"font-family:&quot;Helvetica Neue&quot;\">Washington, D.C.</span><br></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><span style=\"font-family:arial,sans-serif\"><b><a href=\"https://grafik.agency/\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">instagram</font></a>   <a href=\"https://linkedin.com/company/grafik\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">linkedin</font></a></font></font><font color=\"#3db3b5\"> </font></b></span></p></div></div></div><div></div></div>\r\n\r\n\r\n\r\n</div></div></span></blockquote>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</blockquote></div><div></div></div>\r\n\r\n\r\n\r\n</div></div></span></blockquote></blockquote></div><img src=\"https://c3chr04.na1.hs-salescrm-engage.com/Cto/F9+23284/c3chr04/R5Q8b47KQW174dQh1kQnsgW3C6vB320TTh4W3LDP5q1Q68ztW25d0xB1G9Wn6W1QsWFK3z8hH2W22z0GD1Z0NBmf1-_dqx12\" alt=\"\" height=\"1\" width=\"1\" style=\"display: none;\"><div></div><div id=\"m_-6971739334956016662m_-3361122506656212532m_6920436297612873467data-hbsasc-v0-f0a73054-d677-4c93-b7a3-427e281c6c20\"></div></div>\r\n\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal;font-family:Arial;color:rgb(61,179,181)\"><span><b>—</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 3px;line-height:normal;font-family:Arial\"><span><b>Tanya Nazarian</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span>SVP, Growth  • <b>T</b> 703.299.5984</span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span><b>Grafik</b>  •  Washington, DC </span>• Philadelphia, PA </p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><b><span><a href=\"https://grafik.agency/\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a></span><span><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" target=\"_blank\"><span><font color=\"#3db3b5\">instagram</font></span></a>   <a href=\"https://linkedin.com/company/grafik\" target=\"_blank\"><span><font color=\"#3db3b5\">linkedin</font></span></a></font></font><font color=\"#3db3b5\">  </font></span></b></p><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px\"></div></div></div></div></div>\r\n\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal;font-family:Arial;color:rgb(61,179,181)\"><span><b>—</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 3px;line-height:normal;font-family:Arial\"><span><b>Tanya Nazarian</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span>SVP, Growth  • <b>T</b> 703.299.5984</span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span><b>Grafik</b>  •  Washington, DC </span>• Philadelphia, PA </p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><b><span><a href=\"https://grafik.agency/\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a></span><span><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" target=\"_blank\"><span><font color=\"#3db3b5\">instagram</font></span></a>   <a href=\"https://linkedin.com/company/grafik\" target=\"_blank\"><span><font color=\"#3db3b5\">linkedin</font></span></a></font></font><font color=\"#3db3b5\">  </font></span></b></p><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px\"></div></div></div></div></div></div>\r\n\r\n</div></div></span></blockquote></blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal;font-family:Arial;color:rgb(61,179,181)\"><span><b>—</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 3px;line-height:normal;font-family:Arial\"><span><b>Tanya Nazarian</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span>SVP, Growth  • <b>T</b> 703.299.5984</span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span><b>Grafik</b>  •  Washington, DC </span>• Philadelphia, PA </p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><b><span><a href=\"https://grafik.agency/\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a></span><span><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" target=\"_blank\"><span><font color=\"#3db3b5\">instagram</font></span></a>   <a href=\"https://linkedin.com/company/grafik\" target=\"_blank\"><span><font color=\"#3db3b5\">linkedin</font></span></a></font></font><font color=\"#3db3b5\">  </font></span></b></p><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px\"></div></div></div></div></div>','Hi Rick,\r\n\r\nI appreciate the update and love to hear that you\'re focused on the Mavrix1\r\nstory. We\'ll be on the lookout for next steps soon. Have a great weekend!\r\n\r\nOn Fri, Oct 24, 2025 at 7:44 AM Rick <rick@mavrix.one> wrote:\r\n\r\n> Hi Tanya,\r\n> Sorry we’ve been a bit busy on our end….\"building our story\" you could say…\r\n> That all said, thanks for the quote and getting it to us so quickly.\r\n> I think we’ll be in touch later this month if not next to discuss some\r\n> next steps.\r\n> Thanks for your patience. Talk soon.\r\n> Rick\r\n>\r\n> On October 23, 2025 at 10:17:54, Tanya Nazarian (tanya@grafik.com) wrote:\r\n>\r\n> Hi Rick,\r\n>\r\n> I hope all is well. I wanted to follow up with you on the ROM we shared.\r\n> Do you have a few minutes to connect one day next week? As mentioned, it\r\n> would be great to bring in our strategy team to continue the conversation.\r\n>\r\n> Thanks!\r\n>\r\n> On Fri, Oct 3, 2025 at 5:28 PM Tanya Nazarian <tanya@grafik.com> wrote:\r\n>\r\n>> Rick,\r\n>>\r\n>> Thank you again for your interest in Grafik. We\'ve taken the time to\r\n>> consider your near-term goals and the current state of the Mavrix1 brand,\r\n>> and feel well-equipped to deliver on your needs. Per our conversation, we\r\n>> wanted to share with you a rough order of magnitude that outlines what you\r\n>> can expect when working with our team.\r\n>>\r\n>> Take a look, and if you remain interested in continuing the conversation,\r\n>> I recommend setting up a follow-up discussion with our brand and client\r\n>> strategy teams to take a deeper dive into what it will actually take to get\r\n>> the brand where it needs to be. Let us know your thoughts, and please\r\n>> confirm receipt when you get a moment.\r\n>>\r\n>> Have a great weekend!\r\n>>\r\n>>\r\n>> On Wed, Sep 24, 2025 at 3:46 PM Ian Olsen <ian@grafik.com> wrote:\r\n>>\r\n>>> Hi Rick,\r\n>>>\r\n>>> Let\'s do 3-3:30pm. I can shoot over an invite here shortly!\r\n>>>\r\n>>> Much appreciated, glad we can work it out.\r\n>>>\r\n>>> Look forward to chatting,\r\n>>>\r\n>>>\r\n>>> *Ian Olsen*\r\n>>>\r\n>>> Business Development Manager  •  *P* (703) 249-9771\r\n>>>\r\n>>> *Grafik*  •  Philadelphia  •  Washington, D.C.\r\n>>>\r\n>>> *grafik.agency <https://grafik.agency/>   instagram\r\n>>> <https://instagram.com/grafikagency>   linkedin\r\n>>> <https://linkedin.com/company/grafik> *\r\n>>>\r\n>>>\r\n>>> On Wed, Sep 24, 2025 at 3:30 PM Rick <rick@mavrix.one> wrote:\r\n>>>\r\n>>>> Can we still take tomorrow 2-5:\r\n>>>> Sometime in that range???\r\n>>>> Sorry for the confusion.\r\n>>>> Thanks!\r\n>>>> Rick\r\n>>>>\r\n>>>> On September 23, 2025 at 11:42:41, Ian Olsen (ian@grafik.com) wrote:\r\n>>>>\r\n>>>> Hi Rick,\r\n>>>>\r\n>>>> Next week looks good on our end. We can do Monday 1-3:30pm or Wednesday\r\n>>>> is mostly open.\r\n>>>>\r\n>>>> Let me know what works for you.\r\n>>>>\r\n>>>> Thanks,\r\n>>>>\r\n>>>>\r\n>>>> *Ian Olsen*\r\n>>>>\r\n>>>> Business Development Manager  •  *P* (703) 249-9771\r\n>>>>\r\n>>>> *Grafik*  •  Philadelphia  •  Washington, D.C.\r\n>>>>\r\n>>>> *grafik.agency <https://grafik.agency/>   instagram\r\n>>>> <https://instagram.com/grafikagency>   linkedin\r\n>>>> <https://linkedin.com/company/grafik> *\r\n>>>>\r\n>>>>\r\n>>>> On Tue, Sep 23, 2025 at 10:28 AM Rick <rick@mavrix.one> wrote:\r\n>>>>\r\n>>>>> Hi Ian,\r\n>>>>> Thanks for the response.\r\n>>>>> It was quick enough.\r\n>>>>> How does next week look?\r\n>>>>> Thanks again,\r\n>>>>> Rick\r\n>>>>>\r\n>>>>> Rick Mislan, PhD\r\n>>>>> https://mavrix.one\r\n>>>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>>>\r\n>>>>> On September 23, 2025 at 09:31:55, Ian Olsen (ian@grafik.com) wrote:\r\n>>>>>\r\n>>>>> Hi Rick,\r\n>>>>>\r\n>>>>> Apologies for the late reply. Thanks for reaching out to Grafik. We\'re\r\n>>>>> happy to talk through your branding & campaign needs soup to nuts. We have\r\n>>>>> some openings tomorrow at 10 or 10:30am, or Thursday between 2-5pm ET. Let\r\n>>>>> me know if that works on your end and we can get it on the books.\r\n>>>>>\r\n>>>>> Look forward to hearing from you soon.\r\n>>>>>\r\n>>>>> Thanks,\r\n>>>>>\r\n>>>>>\r\n>>>>> *Ian Olsen*\r\n>>>>>\r\n>>>>> Business Development Manager  •  *P* (703) 249-9771\r\n>>>>>\r\n>>>>> *Grafik*  •  Philadelphia  •  Washington, D.C.\r\n>>>>>\r\n>>>>> *grafik.agency <https://grafik.agency/>   instagram\r\n>>>>> <https://instagram.com/grafikagency>   linkedin\r\n>>>>> <https://linkedin.com/company/grafik> *\r\n>>>>>\r\n>>>>>\r\n>>\r\n>> --\r\n>>\r\n>> *—*\r\n>>\r\n>> *Tanya Nazarian*\r\n>>\r\n>> SVP, Growth  • *T* 703.299.5984\r\n>>\r\n>> *Grafik*  •  Washington, DC • Philadelphia, PA\r\n>>\r\n>> *grafik.agency <https://grafik.agency/>   instagram\r\n>> <https://instagram.com/grafikagency>   linkedin\r\n>> <https://linkedin.com/company/grafik>  *\r\n>>\r\n>\r\n>\r\n> --\r\n>\r\n> *—*\r\n>\r\n> *Tanya Nazarian*\r\n>\r\n> SVP, Growth  • *T* 703.299.5984\r\n>\r\n> *Grafik*  •  Washington, DC • Philadelphia, PA\r\n>\r\n> *grafik.agency <https://grafik.agency/>   instagram\r\n> <https://instagram.com/grafikagency>   linkedin\r\n> <https://linkedin.com/company/grafik>  *\r\n>\r\n>\r\n\r\n-- \r\n\r\n*—*\r\n\r\n*Tanya Nazarian*\r\n\r\nSVP, Growth  • *T* 703.299.5984\r\n\r\n*Grafik*  •  Washington, DC • Philadelphia, PA\r\n\r\n*grafik.agency <https://grafik.agency/>   instagram\r\n<https://instagram.com/grafikagency>   linkedin\r\n<https://linkedin.com/company/grafik>  *',0,0,0,0,0,0,'2025-10-24 13:13:53','2025-12-09 19:30:23','2025-12-09 19:30:23','2025-12-09 19:30:23',NULL,NULL,NULL),
(889,4,'<1761334992925.32275a06-62d7-498b-9106-a71a2822a979@bf01.hubspotstarter.net>',NULL,NULL,'=?utf-8?Q?Recent_announcements_from_the_C?= =?utf-8?Q?hinese_government=C2=A0highlight_the_?= =?utf-8?Q?importance_of_domestic_infrastru?= =?utf-8?Q?cture_in_battery_manufacturing.=C2=A0?=','wmckenna=forgenano.com@hubspotstarter.hs-send.com','\"marketing@forgenano.com\"','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional //EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:v=\"urn:schemas-microsoft-com:vml\" lang=\"en\"><head>\r\n    <title>Powering the Future of Battery Manufacturing</title>\r\n    <meta property=\"og:title\" content=\"Powering the Future of Battery Manufacturing\">\r\n    <meta name=\"twitter:title\" content=\"Powering the Future of Battery Manufacturing\">\r\n    \r\n    \r\n    \r\n<meta name=\"x-apple-disable-message-reformatting\">\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\r\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <!--[if gte mso 9]>\r\n  <xml>\r\n    <o:OfficeDocumentSettings>\r\n      <o:AllowPNG/>\r\n      <o:PixelsPerInch>96</o:PixelsPerInch>\r\n    </o:OfficeDocumentSettings>\r\n    <w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\">\r\n      <w:DontUseAdvancedTypographyReadingMail/>\r\n    </w:WordDocument>\r\n  </xml>\r\n  \r\n  <style>\r\n    ul > li {\r\n      text-indent: -1em;\r\n    }\r\n  </style>\r\n<![endif]-->\r\n<!--[if mso]>\r\n<style type=\"text/css\">\r\n body, td {font-family: Arial, Helvetica, sans-serif;}\r\n .hse-body-wrapper-table {background-color: #ffffff;}\r\n</style>\r\n<![endif]-->\r\n<!--[if mso | IE]>\r\n  <style type=\"text/css\">\r\n    .hse-column-container { border: none !important; padding: 0 !important; }\r\n  </style>\r\n<![endif]-->\r\n    \r\n      \r\n  \r\n  \r\n    \r\n  <meta name=\"generator\" content=\"HubSpot\"><meta property=\"og:url\" content=\"https://50177979.hs-sites.com/powering-the-future-of-battery-manufacturing\"><meta name=\"robots\" content=\"noindex,follow\"><!--[if !((mso)|(IE))]><!-- --><style type=\"text/css\">@media only screen and (max-width:639px){img.stretch-on-mobile,.hs_rss_email_entries_table img,.hs-stretch-cta .hs-cta-img{height:auto !important;width:100% !important}\r\n.display_block_on_small_screens{display:block}.hs_padded{padding-left:20px !important;padding-right:20px !important}\r\n.hs-hm,table.hs-hm{display:none}.hs-hd{display:block !important}table.hs-hd{display:table !important}\r\n}@media only screen and (max-width:639px){.hse-border-m{border-left:1px solid #ccc !important;border-right:1px solid #ccc !important;box-sizing:border-box}\r\n.hse-border-bottom-m{border-bottom:1px solid #ccc !important}.hse-border-top-m{border-top:1px solid #ccc !important}\r\n.hse-border-top-hm{border-top:none !important}.hse-border-bottom-hm{border-bottom:none !important}\r\n}.moz-text-html .hse-column-container{max-width:600px !important;width:600px !important}\r\n.moz-text-html .hse-column{display:table-cell;vertical-align:top}.moz-text-html .hse-section .hse-size-12{max-width:600px !important;width:600px !important}\r\n@media only screen and (min-width:640px){.hse-column-container{max-width:600px !important;width:600px !important}\r\n.hse-column{display:table-cell;vertical-align:top}.hse-section .hse-size-12{max-width:600px !important;width:600px !important}\r\n}@media only screen and (max-width:639px){.hse-body-wrapper-td{padding-top:20px !important}\r\n#section_1761333551617 .hse-column-container{background-color:transparent !important}\r\n#section_1761333551617 .hse-column-container{background-color:transparent !important}\r\n}@media only screen and (max-width:639px){.hse-body-wrapper-td{padding-bottom:20px !important}\r\n#section-1 .hse-column-container{padding-top:0px !important;padding-bottom:0px !important;background-color:transparent !important}\r\n#section-1 .hse-column-container{background-color:transparent !important} }</style><!--<![endif]--><style type=\"text/css\">#hs_body #hs_cos_wrapper_main a[x-apple-data-detectors]{color:inherit !important;text-decoration:none !important;font-size:inherit !important;font-family:inherit !important;font-weight:inherit !important;line-height:inherit !important}\r\na{text-decoration:underline}p{margin:0}body{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale}\r\ntable{border-spacing:0;mso-table-lspace:0;mso-table-rspace:0}table,td{border-collapse:collapse}\r\nimg{-ms-interpolation-mode:bicubic}p,a,li,td,blockquote{mso-line-height-rule:exactly}\r\n.ShadowHTML p,.sh-modified-inline p{margin:0}</style></head>\r\n  <body id=\"hs_body\" bgcolor=\"#ffffff\" style=\"margin:0 !important; padding:0 !important; font-family:Arial, sans-serif; font-size:15px; color:#23496d; word-break:break-word\">\r\n    <div id=\"preview_text\" style=\"display:none;font-size:1px;color:#ffffff;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;\" lang=\"en\">At Forge Nano, we are at the forefront of battery innovation, and our commitment to advanced technology is more critical than ever.</div>\r\n    \r\n<!--[if gte mso 9]>\r\n<v:background xmlns:v=\"urn:schemas-microsoft-com:vml\" fill=\"t\">\r\n    <v:fill type=\"tile\" size=\"100%,100%\" color=\"#ffffff\"/>\r\n</v:background>\r\n<![endif]-->\r\n    <div class=\"hse-body-background\" lang=\"en\" style=\"background-color:#ffffff\" bgcolor=\"#ffffff\">\r\n      <table role=\"presentation\" class=\"hse-body-wrapper-table\" cellpadding=\"0\" cellspacing=\"0\" style=\"margin:0; padding:0; width:100% !important; min-width:320px !important; height:100% !important\" width=\"100%\" height=\"100%\">\r\n        <tbody><tr>\r\n          <td class=\"hse-body-wrapper-td\" valign=\"top\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#23496d; word-break:break-word; padding-top:20px; padding-bottom:20px\">\r\n            <div id=\"hs_cos_wrapper_main\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_dnd_area\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"dnd_area\">  <div id=\"section_1761333551617\" class=\"hse-section hse-section-first\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\r\n      <tr>\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column_1761333551618_0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module_17613335516153\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div style=\"overflow:hidden\">\r\n  <table role=\"presentation\" class=\"hse-pre-header hse-secondary\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"text-align:right; font-family:Arial, sans-serif; font-size:12px; line-height:135%; color:#23496d; margin-bottom:0; padding:0\" align=\"right\">\r\n    <tbody>\r\n      <tr>\r\n        <td align=\"right\" valign=\"top\" style=\"color:#23496d; word-break:break-word; text-align:right; font-family:Arial, sans-serif; font-size:12px; padding:10px 0; margin-bottom:0; line-height:135%\">\r\n          <a href=\"https://d5WGQS04.na1.hubspotlinksstarter.com/Ctc/OV+113/d5WGQS04/MVL_gvdCqrrN55njnBZCX6kW4qM5Xr5F21d4N13dgpM5kBVzW6N1X8z6lZ3kvW8xLBhz4GNrPfW6xsmrf5rGSSJW56_SZ377NMN-VCLW9T6B2-ykW8YqVQl4-mWn7W6T0JS_1y75-YV1JN-44sLK4HW8vKbh-3gj2pgW4FxkDq6Kc8bpW4sKhbT41CdwxW5c4Wn77CpmgqW4dFm5x8_VzFtN4-KPsS_jCzLMvc3grhyPJYW1TKrGd1L-cc0W55T6q167dL3qW5PN-5S6F3TthW3D3bjH5GZhRLW88m6s-4pZzMjW8lKKh33lRtzwW4cMF6C5FtCLsW6wq6296LLWm5W5P_XVk8xb4MkW5Ffp0k7K6J7KW1kL1qN4h_D3wW5Wz4ps1bVwW9W4N6FB697-DmJN4sVrDml2QYrW1kkdTy2fPKqyW7Hdv7S8_VgQgW61Hqd61xwhxMN6KMz9Vn2KTXW19skdM8tr07_W73HrnD8SPpsvW1_h29X2zmyW1W8jcsh85rSMvBN34f8xKLx1DTVzlrrF3-GnX2f7BMhqW04\" style=\"color:#00a4bd; font-weight:normal; text-decoration:underline; font-style:normal\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"+5B4FhEq\" target=\"_blank\">View in browser</a>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n</div></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section-1\" class=\"hse-section hse-section-last\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\r\n      <tr>\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-1-0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module_17612350424241\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#23496d; word-break:break-word; text-align:center; padding:10px 20px 0px; font-size:0px\">\r\n        <img alt=\"\" src=\"https://hs-50177979.f.hubspotstarter.net/hub/50177979/hubfs/Battery1.png.png?width=1120&amp;upscale=true&amp;name=Battery1.png.png\" style=\"outline:none; text-decoration:none; max-width:100%; font-size:16px\" width=\"560\" align=\"middle\">\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n<div id=\"hs_cos_wrapper_module_17606464969837\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#23496d; word-break:break-word; text-align:center; padding:0px 20px; font-size:0px\">\r\n        <img alt=\"\" src=\"https://hs-50177979.f.hubspotstarter.net/hub/50177979/hubfs/2.png?width=1120&amp;upscale=true&amp;name=2.png\" style=\"outline:none; text-decoration:none; max-width:100%; font-size:16px\" width=\"560\" align=\"middle\">\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n<div id=\"hs_cos_wrapper_module_17606465127818\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#23496d; word-break:break-word; text-align:center; padding:0px 20px; font-size:0px\">\r\n        <a href=\"mailto:wmckenna@forgenano.com?subject=Meeting%20Request%20-%20Forge%20Battery%20&amp;body=Hello%20Will%2C%20%0AI%20am%20interested%20in%20learning%20more%20about%20Foge%20Battery%2C%20and%20I%20would%20like%20to%20schedule%20a%20meeting.%20\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"lOaaVmex\">\r\n        <img alt=\"\" src=\"https://hs-50177979.f.hubspotstarter.net/hub/50177979/hubfs/3.png?width=1120&amp;upscale=true&amp;name=3.png\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"560\" align=\"middle\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n<div id=\"hs_cos_wrapper_module_17606465500879\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#23496d; word-break:break-word; text-align:center; padding:0px 20px 10px; font-size:0px\">\r\n        <a href=\"https://d5WGQS04.na1.hubspotlinksstarter.com/Ctc/OV+113/d5WGQS04/MVL_gvdCqrrN55njnBZCX6kW4qM5Xr5F21d4N13dgql3m2nnW7Y8-PT6lZ3lsW5HTw0n5Y7B8wW9c4SF_5lMLZdW8Tv1f14KxFwHW2dXXG320P_9HVFYPFY5rQ3JKW2wkGW71DF6fYW5X_r3P8vSq7yW5lVtDP6N6p8YN1RtT4rHhvWsW8LrPlN4tH0S-W40jQvd8PJ5bPW18kJfs64Bwk4W5WjkfL4WP86LVwKjpJ1WsNz2W24Wv7w6WLcKpN9k-nHC-bw6zW8CWbpX1ncQBvW2hfqh08RGfcSW8FXrkJ3JPWkHW6BLr8s1bpLgRN15whnWr2T1jN9dHhnT1WzM4W18Wv8D8sBcnrN439VZxQ53x8W3HSSxG4Dn1yHW2cXWvk3lghhNf1X_FhK04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"7PrH39OM\">\r\n        <img alt=\"\" src=\"https://hs-50177979.f.hubspotstarter.net/hub/50177979/hubfs/4.png?width=1120&amp;upscale=true&amp;name=4.png\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"560\" align=\"middle\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#23496d; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module-1-0-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table role=\"presentation\" class=\"hse-footer hse-secondary\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family:Arial, sans-serif; font-size:12px; line-height:135%; color:#23496d; margin-bottom:0; padding:0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#23496d; word-break:break-word; text-align:center; margin-bottom:0; line-height:135%; padding:10px 20px\">\r\n        <p style=\"font-family:Arial, sans-serif;font-size:12px;font-weight:normal;text-decoration:none;font-style:normal;color:#23496d\">\r\n          Forge Nano, 12300 Grant St, #110, Thorton, CO 80241, USA, 720-259-8579\r\n        </p>\r\n        <p>\r\n          <a data-unsubscribe=\"true\" href=\"https://hs-50177979.s.hubspotstarter.net/preferences/en/unsubscribe?data=W2nXS-N30h-LWW3y-KHP45mJFPW4pmjM64hvdqCW30kCFg3yNxRWW3H84qk2KY23NW49kJyg3GSyL_W2-CVK42C-0wCW383-PC2-CQ36W3NF0dk1Nx5YNW2WQCxv3NRRRVW34qbrM3DKdDjW2r64xW2qDqzmW3H4Q3N3LVCZWW1NgQ1C3BX9t6W1SwcnV1LfJ9cW4kK5mz47NBFNW3d38gK1SymljW2Mqs7H4mlG22W2PhBM64cKd9CW306Pc11BvF__W3LTkYF1VqT-8W2Ft3wT34mMpfW217VMG1SBNc1W3VQ0zd24T63rW23jsSx3_BD9WW25d6d-4krtqnW1Nx61N2RQDZtW21mvHn1Nnc9NW2Yf30B4fkggrW49lwg13HfCRfW21kYnJ3jr5b9W47Tc4c4pjW11W2149Sh4hqtgrW45DsWh3FfL83W3ZvjWc3ZxpspW3bq3yV1LlG1cW3GSyMR2vJ82qW38tCPl49Bqk-W23h96j1VrG1jW3W2Mhx2Ft7WSW4ppNMd2-tQDPW2YLGWG2KTKrLW2THrp72qD2njW4tlxYL3BM64VW1Sh8HH2zvlRcW4pby6j2PCCzzW2TM-vH3JKFgzW2zQ2g31Xx-9RW23j1jD3LTjnkW36dvN9309mP3f49rxhK04&amp;utm_source=hs_email&amp;utm_medium=email&amp;utm_content=386763191&amp;_hsenc=p2ANqtz-_A0hcK9HAD8d5Q7n9v9v9kzn-1R_zgXGJ4ydd6bi5vlUy6AZJSNtKGFEtyrVxfh2HrkNnza1KeMItyeEVbUf4YOzXsUA&amp;_hsmi=386763191\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:12px; color:#00a4bd; font-weight:normal; text-decoration:underline; font-style:normal\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"SFRZzEXk\" target=\"_blank\">Unsubscribe</a>\r\n          <a data-unsubscribe=\"true\" href=\"https://hs-50177979.s.hubspotstarter.net/preferences/en/manage?data=W2nXS-N30h-LWW3y-KHP45mJFPW4pmjM64hvdqCW30kCFg3yNxRWW3H84qk2KY23NW49kJyg3GSyL_W2-CVK42C-0wCW383-PC2-CQ36W3NF0dk1Nx5YNW2WQCxv3NRRRVW34qbrM3DKdDjW2r64xW2qDqzmW3H4Q3N3LVCZWW1NgQ1C3BX9t6W1SwcnV1LfJ9cW4kK5mz47NBFNW3d38gK1SymljW2Mqs7H4mlG22W2PhBM64cKd9CW306Pc11BvF__W3LTkYF1VqT-8W2Ft3wT34mMpfW217VMG1SBNc1W3VQ0zd24T63rW23jsSx3_BD9WW25d6d-4krtqnW1Nx61N2RQDZtW21mvHn1Nnc9NW2Yf30B4fkggrW49lwg13HfCRfW21kYnJ3jr5b9W47Tc4c4pjW11W2149Sh4hqtgrW45DsWh3FfL83W3ZvjWc3ZxpspW3bq3yV1LlG1cW3GSyMR2vJ82qW38tCPl49Bqk-W23h96j1VrG1jW3W2Mhx2Ft7WSW4ppNMd2-tQDPW2YLGWG2KTKrLW2THrp72qD2njW4tlxYL3BM64VW1Sh8HH2zvlRcW4pby6j2PCCzzW2TM-vH3JKFgzW2zQ2g31Xx-9RW23j1jD3LTjnkW36dvN9309mP3f49rxhK04&amp;utm_source=hs_email&amp;utm_medium=email&amp;utm_content=386763191&amp;_hsenc=p2ANqtz-_A0hcK9HAD8d5Q7n9v9v9kzn-1R_zgXGJ4ydd6bi5vlUy6AZJSNtKGFEtyrVxfh2HrkNnza1KeMItyeEVbUf4YOzXsUA&amp;_hsmi=386763191\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:12px; color:#00a4bd; font-weight:normal; text-decoration:underline; font-style:normal\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"qjPJqCop\" target=\"_blank\">Manage preferences</a>\r\n        </p>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div></div>\r\n          </td>\r\n        </tr>\r\n      </tbody></table>\r\n    </div>\r\n  \r\n<img src=\"https://d5WGQS04.na1.hubspotlinksstarter.com/Cto/OV+113/d5WGQS04/MVL_gvdCqrrN55njnBZCX6kW4qM5Xr5F21d4W13dg8T8fYDct325C1\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"display:none!important;min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important\"></body></html>','Powering the Future of Battery Manufacturing \r\n\r\nAt Forge Nano, we are at the forefront of battery innovation, and our commitment to advanced technology is more critical than ever. \r\n\r\nRecent announcements from the Chinese government \r\nhighlight the importance of domestic infrastructure in battery manufacturing.  \r\n\r\nHere’s a closer look:\r\nKey Insights from Recent Developments \r\n\r\nOn October 9th, China announced a global export-license requirement for specified lithium-ion battery manufacturing equipment, certain high-energy-density batteries, and related materials/technologies. This regulation will take effect on November 8, 2025, requiring exporters in China to declare covered items at customs and obtain a license before shipment. \r\n\r\nKey Areas Affected\r\nLithium Battery Manufacturing: Focus on rechargeable lithium-ion batteries and essential manufacturing equipment. \r\n\r\nCathode and Anode Materials: Emphasis on lithium iron phosphate, high-nickel \r\ncathode materials, and advanced graphite anode materials. \r\n\r\nThis announcement could have significant repercussions for the global supply chain and the availability of critical components. \r\n\r\nThe Importance of Domestic Infrastructure \r\n\r\nThe growing focus on local manufacturing capabilities is vital for achieving energy independence and sustainability. Investing in domestic infrastructure not only strengthens supply chains but also drives innovation in battery technology. \r\n\r\nForge Nano\'s Pioneering Role\r\n\r\nAmerica’s Gigafactory \r\nPowered by Atomic Armor™ Produced at Giga-Scale Using U.S.Material Supply Chain\r\n\r\nIntroducing Our New 3GWh/yr Facility in North Carolina! \r\nLeading the Way in ALD Technology\r\n Our dominance in Atomic Layer Deposition (ALD) technology is revolutionizing energy solutions across defense, aerospace, satellite, and storage sectors. \r\n\r\nCommitment to Innovation \r\nBy enhancing our manufacturing capabilities, we\'re not just contributing to the \r\ndomestic battery supply chain; we’re paving the way for the future of energy storage solutions. \r\n\r\nLet’s Connect! \r\n\r\nWe’d love to explore how we can collaborate to leverage these trends and enhance our strategic initiatives in battery manufacturing. \r\n\r\nmailto:wmckenna@forgenano.com?subject=Meeting%20Request%20-%20Forge%20Battery%20&body=Hello%20Will%2C%20%0AI%20am%20interested%20in%20learning%20more%20about%20Foge%20Battery%2C%20and%20I%20would%20like%20to%20schedule%20a%20meeting.%20\r\n\r\nTogether, let’s power the future of energy\r\n12300 Grant StThortonUSACOForge Nanohttps://hs-50177979.s.hubspotstarter.net/preferences/en/manage?data=W2nXS-N30h-LWW3y-KHP45mJFPW4pmjM64hvdqCW30kCFg3yNxRWW3H84qk2KY23NW49kJyg3GSyL_W2-CVK42C-0wCW383-PC2-CQ36W3NF0dk1Nx5YNW2WQCxv3NRRRVW34qbrM3DKdDjW2r64xW2qDqzmW3H4Q3N3LVCZWW1NgQ1C3BX9t6W1SwcnV1LfJ9cW4kK5mz47NBFNW3d38gK1SymljW2Mqs7H4mlG22W2PhBM64cKd9CW306Pc11BvF__W3LTkYF1VqT-8W2Ft3wT34mMpfW217VMG1SBNc1W3VQ0zd24T63rW23jsSx3_BD9WW25d6d-4krtqnW1Nx61N2RQDZtW21mvHn1Nnc9NW2Yf30B4fkggrW49lwg13HfCRfW21kYnJ3jr5b9W47Tc4c4pjW11W2149Sh4hqtgrW45DsWh3FfL83W3ZvjWc3ZxpspW3bq3yV1LlG1cW3GSyMR2vJ82qW38tCPl49Bqk-W23h96j1VrG1jW3W2Mhx2Ft7WSW4ppNMd2-tQDPW2YLGWG2KTKrLW2THrp72qD2njW4tlxYL3BM64VW1Sh8HH2zvlRcW4pby6j2PCCzzW2TM-vH3JKFgzW2zQ2g31Xx-9RW23j1jD3LTjnkW36dvN9309mP3f49rxhK04&_hsenc=p2ANqtz-_C-tEr4B1GAsuV_VvtuMXUTWuimB9mlsqlm912wM66WprHSXJ3nqWxd5hX335PjqoR3SAqafM-1u5QDptLKOD-mGrMJw&_hsmi=386763191',0,0,0,0,0,0,'2025-10-24 19:43:13','2025-12-09 19:30:24','2025-12-09 19:30:24','2025-12-09 19:30:24',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(890,4,'<calendar-64216ec7-0988-4997-8634-1207ae015ef6@google.com>',NULL,NULL,'Invitation: Lithium-FN Skyfoundary Support @ Mon Oct 27, 2025 2:30pm - 3pm (EDT) (null)','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v154/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v144/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v118/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation from Jordan Wroblewski\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"_60q30c1g60o30e1i60o4ac1g60rj8gpl88rj2c1h84s34h9g60s30c1g60o30c1g88p48ga185342cpj6gq48gpg64o30c1g60o30c1g60o30c1g60o32c1g60o30c1g60o4ahho8cs3eda28csj0dpk690j4ghg70qkcdhj8kqj8ha28l10\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Lithium-FN Skyfoundary Support</span><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20251027T183000Z\"></time><time itemprop=\"endDate\" datetime=\"20251027T190000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?\r\nJoin the meeting now\r\nMeeting ID: 229 147 631 939 7\r\nPasscode: Rf67Ra9q\r\n_____________________</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><div class=\"\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span><br>________________________________________________________________________________<br>Microsoft Teams Need help?<u></u><br>Join the meeting now<u></u><br>Meeting ID: 229 147 631 939 7<br>Passcode: Rf67Ra9q<br>________________________________<br>For organizers: Meeting options<u></u><br>[<a href=\"https://www.google.com/url?q=https%3A%2F%2Fwww.forgenano.com%2Fwp-content%2Fuploads%2F2019%2F07%2FWebLogoNew.png&amp;sa=D&amp;source=calendar&amp;ust=1761768960000000&amp;usg=AOvVaw01M02yElNniLmdGMybAd-n\" target=\"_blank\">https://www.forgenano.com/wp-content/uploads/2019/07/WebLogoNew.png</a>]<br>Org help<u></u> | Privacy and security<u></u><br>________________________________________________________________________________<br></span><meta itemprop=\"description\" content=\"\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?\r\nJoin the meeting now\r\nMeeting ID: 229 147 631 939 7\r\nPasscode: Rf67Ra9q\r\n________________________________\r\nFor organizers: Meeting options\r\n[https://www.forgenano.com/wp-content/uploads/2019/07/WebLogoNew.png]\r\nOrg help | Privacy and security\r\n________________________________________________________________________________\r\n\"/></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20251027T183000Z\"></time><time itemprop=\"endDate\" datetime=\"20251027T190000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Monday Oct 27, 2025 ⋅ 2:30pm – 3pm (Eastern Time - New York)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Location</h2></td></tr></table><span itemprop=\"location\" itemscope itemtype=\"http://schema.org/Place\"><span itemprop=\"name\" class=\"primary-text notranslate\" style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\">Microsoft Teams Meeting</span><br/><a href=\"https://www.google.com/maps/search/Microsoft+Teams+Meeting?hl=en\" class=\"accent-text underline-on-hover\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" itemprop=\"map\">View map</a></span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jtrevey@pneumaticoat.com\">jtrevey@pneumaticoat.com</a></span><meta itemprop=\"email\" content=\"jtrevey@pneumaticoat.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"jtrevey@pneumaticoat.com\"/><meta itemprop=\"email\" content=\"jtrevey@pneumaticoat.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jordan@lithiumbatterycompany.com\">Jordan Wroblewski</a></span><meta itemprop=\"email\" content=\"jordan@lithiumbatterycompany.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - creator</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a></span><meta itemprop=\"email\" content=\"brian@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','Lithium-FN Skyfoundary Support\r\nMonday Oct 27, 2025 ⋅ 2:30pm – 3pm\r\nEastern Time - New York\r\n\r\nLocation\r\nMicrosoft Teams Meeting	\r\nhttps://www.google.com/maps/search/Microsoft+Teams+Meeting?hl=en\r\n\r\n\r\n\r\n\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?\r\nJoin the meeting now\r\nMeeting ID: 229 147 631 939 7\r\nPasscode: Rf67Ra9q\r\n________________________________\r\nFor organizers: Meeting options\r\n[https://www.forgenano.com/wp-content/uploads/2019/07/WebLogoNew.png]\r\nOrg help | Privacy and security\r\n________________________________________________________________________________\r\n\r\n\r\nOrganizer\r\njtrevey@pneumaticoat.com\r\njtrevey@pneumaticoat.com\r\n\r\nGuests\r\njtrevey@pneumaticoat.com - organizer\r\nJordan Wroblewski - creator\r\nbrian@mavrix.one\r\nrick@mavrix.one\r\n\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-10-24 20:16:23','2025-12-09 19:30:24','2025-12-09 19:30:24','2025-12-09 19:30:24',NULL,NULL,NULL),
(891,4,'<CAJO9__bVma4sZA-J63NkfUncVY5NoYf829F5DsyDQRO6wngK4g@mail.gmail.com>',NULL,NULL,'USAF Invoice','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>See attached and thank you very much. </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div></div>','See attached and thank you very much.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>',0,0,0,0,0,0,'2025-10-24 22:17:12','2025-12-09 19:30:24','2025-12-09 19:30:24','2025-12-09 19:30:24',NULL,NULL,NULL),
(892,4,'<MW5PR84MB17694944F4804F8C654D8631FBF1A@MW5PR84MB1769.NAMPRD84.PROD.OUTLOOK.COM>',NULL,NULL,'RE: HP MJF Printers','gary.fudge@hp.com','\"Fudge, Gary\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Forma DJR Display\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n@font-face\r\n	{font-family:\"Forma DJR Micro\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.xairmailon, li.xairmailon, div.xairmailon\r\n	{mso-style-name:x_airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.xmsonormal, li.xmsonormal, div.xmsonormal\r\n	{mso-style-name:x_msonormal;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle22\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Good catching up with you today.&nbsp; See attached site prep guide as requested.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Can you please email me your address now that you have the land secure so I can go ahead and get you into our system?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Please let me know if you have any questions or need any additional information.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Best Regards<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">3D Print - Enterprise Account Manager – US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">|</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black;mso-ligatures:standardcontextual\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_1\" src=\"cid:image001.png@01DC450B.71C2A250\" alt=\"image001.png\"><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Friday, October 24, 2025 8:46 AM<br>\r\n<b>To:</b> Fudge, Gary &lt;gary.fudge@hp.com&gt;<br>\r\n<b>Subject:</b> Re: HP MJF Printers<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;color:red\">CAUTION: External Email\r\n</span></b><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">585.797.9473<br>\r\nSafe travels!<br>\r\nThanks,<br>\r\nRick <o:p></o:p></p>\r\n<p class=\"airmailon\">On October 24, 2025 at 08:56:44, Fudge, Gary (<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">I’m on a flight but should land around 10:30-10:45. &nbsp; Let me know of a good number to reach you and I can call then<o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\">\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div id=\"ms-outlook-mobile-signature\">\r\n<div>\r\n<p class=\"MsoNormal\">Gary Fudge<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">678-654-6734<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n<div class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">\r\n<hr size=\"2\" width=\"98%\" align=\"center\">\r\n</div>\r\n<div id=\"divRplyFwdMsg\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;<br>\r\n<b>Sent:</b> Friday, October 24, 2025 7:41:17 AM<br>\r\n<b>To:</b> Fudge, Gary &lt;<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>&gt;<br>\r\n<b>Subject:</b> Re: HP MJF Printers</span> <o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;color:red\">CAUTION: External Email\r\n</span></b><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">Hey Gary,<br>\r\nAre you available to day at 10a for a call?<br>\r\nTalking about power requirements for our facilities next week and need to start pulling together numbers.&nbsp;<br>\r\nOr, can you send me power requirements for the MJF Printers?<br>\r\nLet me know what works.<br>\r\nThanks!<br>\r\nRick <o:p></o:p></p>\r\n<p class=\"xairmailon\">On October 2, 2025 at 11:28:38, Fudge, Gary (<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"xmsonormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n<p class=\"xmsonormal\">Are you all ready to continue the conversation about our 3D Printers/3DP Services?&nbsp; If not, when should I check back with you?<o:p></o:p></p>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n<p class=\"xmsonormal\">Best Regards,<o:p></o:p></p>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"xmsonormal\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"xmsonormal\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager – US South\r\n</span><o:p></o:p></p>\r\n<p class=\"xmsonormal\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"xmsonormal\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><o:p></o:p></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"xmsonormal\" align=\"center\" style=\"text-align:center\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><o:p></o:p></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"xmsonormal\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"xmsonormal\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"_x0000_i1026\" src=\"cid:92845B48-0023-45F7-81C1-620B3C947B46\" alt=\"image001.png\"></span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Hello Rick,\r\n\r\nGood catching up with you today.  See attached site prep guide as requested.\r\n\r\nCan you please email me your address now that you have the land secure so I can go ahead and get you into our system?\r\n\r\nPlease let me know if you have any questions or need any additional information.\r\n\r\nBest Regards\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager – US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, October 24, 2025 8:46 AM\r\nTo: Fudge, Gary <gary.fudge@hp.com>\r\nSubject: Re: HP MJF Printers\r\n\r\nCAUTION: External Email\r\n585.797.9473\r\nSafe travels!\r\nThanks,\r\nRick\r\n\r\nOn October 24, 2025 at 08:56:44, Fudge, Gary (gary.fudge@hp.com<mailto:gary.fudge@hp.com>) wrote:\r\nI’m on a flight but should land around 10:30-10:45.   Let me know of a good number to reach you and I can call then\r\n\r\nGary Fudge\r\n678-654-6734\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Friday, October 24, 2025 7:41:17 AM\r\nTo: Fudge, Gary <gary.fudge@hp.com<mailto:gary.fudge@hp.com>>\r\nSubject: Re: HP MJF Printers\r\n\r\nCAUTION: External Email\r\nHey Gary,\r\nAre you available to day at 10a for a call?\r\nTalking about power requirements for our facilities next week and need to start pulling together numbers.\r\nOr, can you send me power requirements for the MJF Printers?\r\nLet me know what works.\r\nThanks!\r\nRick\r\n\r\nOn October 2, 2025 at 11:28:38, Fudge, Gary (gary.fudge@hp.com<mailto:gary.fudge@hp.com>) wrote:\r\n\r\nHello Rick,\r\n\r\n\r\n\r\nAre you all ready to continue the conversation about our 3D Printers/3DP Services?  If not, when should I check back with you?\r\n\r\n\r\n\r\nBest Regards,\r\n\r\n\r\n\r\nGary Fudge\r\n\r\n3D Print - Enterprise Account Manager – US South\r\n\r\nAtlanta , GA\r\n\r\nM - (678) 654-6734\r\n\r\n|\r\n\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n\r\n[image001.png]\r\n\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-10-24 22:27:21','2025-12-09 19:30:26','2025-12-09 19:30:26','2025-12-09 19:30:26',NULL,NULL,NULL),
(893,4,' <DM5SPR01MB040033BCA258BA9F4DDC0DD9DCFCA@DM5SPR01MB0400.namprd08.prod.outlook.com>',NULL,NULL,'Re: Site specific details','cdiaz@flowcorp.com','Carlos Diaz','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n</head>\r\n<body>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nThat email was sent to spam; I apologize the late response. I’ll get those to you tomorrow. Early morning&nbsp;</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\" data-applydefaultfontstyles=\"true\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" dir=\"ltr\">\r\n<br>\r\n</div>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" id=\"ms-outlook-mobile-signature\">\r\n<table id=\"table_0\" cellspacing=\"0\" cellpadding=\"0\" data-olk-copy-source=\"MessageBody\" data-ogsc=\"rgb(0, 0, 0)\" data-ogsb=\"rgb(255, 255, 255)\" style=\"text-align: left; background-color: rgb(255, 255, 255); width: 507.688px; color: rgb(0, 0, 0); box-sizing: border-box; border-collapse: collapse; border-spacing: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: left; vertical-align: top; width: 507.688px; height: 20px;\">\r\n<div style=\"text-align: left; font-family: &quot;Calibri Light&quot;, &quot;Helvetica Light&quot;, sans-serif; font-size: 12pt; color: rgb(23, 78, 134);\">\r\nCarlos Diaz</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: left; padding-bottom: 5.25pt; vertical-align: top; width: 507.688px; height: 25px;\">\r\n<p style=\"text-align: left; margin: 0px; font-family: Calibri, sans-serif;\"><span style=\"font-family: &quot;Calibri Light&quot;, &quot;Helvetica Light&quot;, sans-serif; font-size: 10pt; color: rgb(0, 0, 0);\">Application Specialist</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: left; vertical-align: top; width: 507.688px; height: 22px;\">\r\n<p style=\"text-align: left; margin: 0px; font-family: Calibri, sans-serif;\"><span style=\"font-family: &quot;Calibri Light&quot;, &quot;Helvetica Light&quot;, sans-serif; font-size: 10pt; color: gray;\">Flow International Corporation</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: left; vertical-align: top; width: 507.688px; height: 18px;\">\r\n<p style=\"text-align: left; margin: 0px; font-family: Calibri, sans-serif;\"><span style=\"font-family: &quot;Calibri Light&quot;, &quot;Helvetica Light&quot;, sans-serif; font-size: 10pt; color: currentcolor;\">Atlanta, GA</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: left; vertical-align: top; width: 507.688px; height: 22px;\">\r\n<p style=\"text-align: left; margin: 0px; font-family: Calibri, sans-serif;\"><span style=\"font-family: &quot;Calibri Light&quot;, &quot;Helvetica Light&quot;, sans-serif; font-size: 10pt; color: gray;\">C.\r\n</span><span style=\"font-family: &quot;Calibri Light&quot;, &quot;Helvetica Light&quot;, sans-serif; font-size: 10pt; color: currentcolor;\">943.253.7285</span></p>\r\n<p style=\"text-align: left; margin: 0px; font-family: Calibri, sans-serif;\"><span style=\"font-family: &quot;Calibri Light&quot;, &quot;Helvetica Light&quot;, sans-serif; font-size: 10pt; color: rgb(0, 118, 129);\"><a href=\"mailto:cmurdock@flowcorp.com\" title=\"mailto:cmurdock@flowcorp.com\" data-ogsc=\"rgb(0, 118, 129)\" data-linkindex=\"0\" data-outlook-id=\"1a47799e-67fe-482f-854f-80a43884914f\" style=\"margin: 0px;\">cdiaz@flowcorp.com</a></span></p>\r\n<p style=\"text-align: left; margin: 0px; font-family: Calibri, sans-serif;\"><span style=\"font-family: &quot;Calibri Light&quot;, &quot;Helvetica Light&quot;, sans-serif; font-size: 10pt; color: rgb(0, 118, 129);\"><a href=\"http://www.flowwaterjet.com/\" title=\"http://www.flowwaterjet.com/\" data-auth=\"NotApplicable\" data-ogsc=\"rgb(0, 118, 129)\" data-linkindex=\"1\" data-outlook-id=\"ef3c59e5-bfe6-4e30-9bc9-28aa628b0f0f\" style=\"margin: 0px;\">www.flowwaterjet.com</a></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<br>\r\n</div>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, October 24, 2025 10:52:45 AM<br>\r\n<b>To:</b> Carlos Diaz &lt;cdiaz@flowcorp.com&gt;<br>\r\n<b>Subject:</b> Site specific details</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div style=\"background-color:#FFEB9C; width:100%; border-style:solid; border-color:#9C6500; border-width:1pt; padding:2pt; font-size:10pt; line-height:12pt; font-family:\'Calibri\'; color:Black; text-align:left\">\r\n<span style=\"color:#9C6500; font-weight:bold\">CAUTION:</span> This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.</div>\r\n<br>\r\n<div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nHi Carlos,</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nTalking to our builder today.&nbsp;</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nCan you send me any site specific setup details for the FlowJet models we discussed?</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nLooking for specialized requirements and data on installation, power, performance, compliance, and any other factors.<br>\r\n</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks,</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div id=\"x_bloop_sign_1761317454599635968\" class=\"x_bloop_sign\">\r\n<div><br>\r\n</div>\r\n<div>Rick Mislan, PhD,&nbsp;</div>\r\n<div>Founder, CTO</div>\r\n<div><img class=\"x_composer_internal_attach\" src=\"cid:0C60712A-B683-416B-B7C9-66A6C2540ECA\" id=\"x_ATTACH_attach_6d6573736167655f315f31323736_35324141434136342d423436382d343238352d423543342d383338463637303746464343_35333544443832312d464239312d343942372d414135392d424242443643324143354235_0\" style=\"max-width:99%\"></div>\r\n<div>https://mavrix1.com</div>\r\n<div><br>\r\n</div>\r\n<div><font face=\"Helvetica\"><span style=\"font-size:12px\"><b><u>CONFIDENTIALITY NOTICE</u></b></span></font></div>\r\n<div><font face=\"Helvetica\"><span style=\"font-size:12px\"><i>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the\r\n designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</i></span></font></div>\r\n<div><font face=\"Helvetica\"><span style=\"font-size:12px\"><i><br>\r\n</i></span></font></div>\r\n<div><font face=\"Helvetica\"><span style=\"font-size:12px\"><i>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</i></span></font></div>\r\n<div><font face=\"Helvetica\"><span style=\"font-size:12px\"><i><br>\r\n</i></span></font></div>\r\n<div><font face=\"Helvetica\"><span style=\"font-size:12px\"><i>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients\r\n are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</i></span></font></div>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','That email was sent to spam; I apologize the late response. I’ll get those to you tomorrow. Early morning\r\n\r\nCarlos Diaz\r\n\r\nApplication Specialist\r\n\r\nFlow International Corporation\r\n\r\nAtlanta, GA\r\n\r\nC. 943.253.7285\r\n\r\ncdiaz@flowcorp.com<mailto:cmurdock@flowcorp.com>\r\n\r\nwww.flowwaterjet.com<http://www.flowwaterjet.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, October 24, 2025 10:52:45 AM\r\nTo: Carlos Diaz <cdiaz@flowcorp.com>\r\nSubject: Site specific details\r\n\r\nCAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.\r\n\r\nHi Carlos,\r\nTalking to our builder today.\r\nCan you send me any site specific setup details for the FlowJet models we discussed?\r\nLooking for specialized requirements and data on installation, power, performance, compliance, and any other factors.\r\nThanks,\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:0C60712A-B683-416B-B7C9-66A6C2540ECA]\r\nhttps://mavrix1.com\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.',0,0,0,0,0,0,'2025-10-27 01:16:41','2025-12-09 19:30:27','2025-12-09 19:30:27','2025-12-09 19:30:27',NULL,NULL,NULL),
(894,4,'<CAJO9__YjKQap9EbhNcv+iTrfNrR2MaW0muSgMWYLqd_ttTaN9A@mail.gmail.com>',NULL,NULL,'SkyFoundry Act','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Pulling this presentation out and resending it before our call with Forge Nano today at 2:30.</div><div><br></div><div>Let me know if you have any questions.  </div><div><br></div><div>Thanks, </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div></div>','Pulling this presentation out and resending it before our call with Forge\r\nNano today at 2:30.\r\n\r\nLet me know if you have any questions.\r\n\r\nThanks,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>',0,0,0,0,0,0,'2025-10-27 14:55:18','2025-12-09 19:30:29','2025-12-09 19:30:29','2025-12-09 19:30:29',NULL,NULL,NULL),
(895,4,'<CAJO9__a9sdZbDdfx1DoAeLv4eUOJbGBPw_e59+JkFcP4Nt7a6g@mail.gmail.com>',NULL,NULL,'Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Hi James,</div><div><br></div><div>We are logged on to the teams meeting. </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Oct 23, 2025 at 1:05 PM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"msg-5188347059152730434\">\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nThanks for the call today. Attached are a bunch of documents:</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<ul style=\"margin-top:0px;margin-bottom:0px;list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">spec sheets for all (5) FN Products</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">spec sheet for the Samsung 53G</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">spec sheet for the Moli P50B</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Presentation from our call with ballpark cell availability and pricing</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Term sheet for capturing our relationship interests</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Skyfoundary proposal</div>\r\n</li></ul>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"m_-5188347059152730434appendonsend\"></div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI have your volumes from the ProgramProduct excel sheet that I&#39;ve plugged into the term sheet for now as a first draft. On your end I captured the following action items:</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<ul style=\"margin-top:0px;margin-bottom:0px;list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Review all documents in this email and confirm volumes and provide first pass review on the term sheet</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Review the Skyfoundary proposal and put together a first-pass budget/plan to support Forge as a partner</div>\r\n</li></ul>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI am out tomorrow for personal matters but look forward to our discussion on Monday. </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, October 22, 2025 9:45 AM<br>\r\n<b>To:</b> James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Will McKenna &lt;<a href=\"mailto:WMcKenna@forgenano.com\" target=\"_blank\">WMcKenna@forgenano.com</a>&gt;; Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">You bet,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Speak with you tomorrow. </div>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a style=\"color:blue;margin:0px\" id=\"m_-5188347059152730434OWAd0bf4139-d110-2b14-2e7d-f838dea323c6\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_-5188347059152730434OWA491b8ae0-354c-d404-4a80-c7e9f97e7013\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,RCp_srnsn8TsHi-Y90KYoNQPNLUs9Z2k6AQ2a8mY4AU8XQa0dJ0qeugNm0mDw--U4uH_iIRb9IN4Nb3dl2ctTPPmCoYcMeCAkzmhYm7mlpPXnMYFHVt8&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Oct 22, 2025 at 11:34 AM James Trevey &lt;<a id=\"m_-5188347059152730434OWAa31267f6-c393-7fea-dc8a-2e771875250b\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nperfect. I look forward to speaking with you then!</div>\r\n<div id=\"m_-5188347059152730434x_m_5154054507612261457appendonsend\"></div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div id=\"m_-5188347059152730434x_m_5154054507612261457divRplyFwdMsg\">\r\n<div style=\"direction:ltr;font-family:Calibri,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a id=\"m_-5188347059152730434OWA95e85b38-b96c-174d-e756-81f1bec2a1ff\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, October 22, 2025 9:30 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_-5188347059152730434OWAd1de4bb3-03ed-f1d6-f7e4-1848df71c103\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Will McKenna &lt;<a id=\"m_-5188347059152730434OWA8bded2a7-9490-66c0-1166-46535ffa61f0\" href=\"mailto:WMcKenna@forgenano.com\" target=\"_blank\">WMcKenna@forgenano.com</a>&gt;; Daniel &lt;<a id=\"m_-5188347059152730434OWA5cab2c66-aa13-c490-cc32-3f94f13d8838\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_-5188347059152730434OWA42851c95-8020-51f8-373b-55e4c94f515b\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\"> </div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I can do tomorrow at 9am MST.  </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Let me know if that still works for you and I can send you over an invite.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a style=\"color:blue;margin:0px\" id=\"m_-5188347059152730434OWA79c48f2b-7c75-15f7-0c38-0a8a933b49ef\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_-5188347059152730434OWAc61fd127-5390-c059-5dcd-e6ec1ef6d2b9\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,irabj1pPRcbHt7fZTnVGlp-D5OWgJo5J-DJVmYysbSINfzIevG80IYq97Jraq-OV6w6IJC3gu0pHz4oFYfW4xcnb3n-PwXqRHBE_AugLqCnyxkrk6RI,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Tue, Oct 21, 2025 at 6:09 PM James Trevey &lt;<a id=\"m_-5188347059152730434OWA873dbf9f-ca2b-ea71-cec5-8029b0003dfb\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nHey Jordan, </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI am back from 3 weeks of travel and ready to get sorted here. Tomorrow is sunk, but on Thursday I can do 9am MT or 12:30pm MT. Do either work for you? If not, I have the following next week:</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n27th: 11:30-1pm MT</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n28th: 8am MT, 11am MT, after 1pm MT</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n29th: after 1pm MT</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n30th: after 10am MT</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nLet me know what works.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a id=\"m_-5188347059152730434OWA81571a2c-6c21-2436-85b5-8714e8b66c05\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Monday, October 20, 2025 5:12 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_-5188347059152730434OWA1e87c462-b83e-2b9c-f923-2ac81a62cf8d\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a id=\"m_-5188347059152730434OWA31dc8928-3d8b-0f48-12bd-d8b3c385d531\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_-5188347059152730434OWA542618ae-28b3-7246-75f5-03485d9c3649\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I am out of town as well.  How does your Wednesday look? </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to catching up.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\"><u>jordan<a style=\"margin:0px\" id=\"m_-5188347059152730434OWA2ec3caf6-8cfd-8a8d-d7e5-54d935ffa458\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"color:rgb(255,255,255);background-color:rgba(255,255,255,0)\"><a style=\"margin-top:0px;margin-bottom:0px;background-color:rgba(255,255,255,0)\" id=\"m_-5188347059152730434OWAe825f741-6e69-fe40-fbd6-457f5c25b3a9\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,kcAZ-rF3D0Z_d8KzW-apTAtlzHQofd8D2ZjbELiCHZPsqOhCV8Xd_fUJ6ZWDkt-2fgJod-EPR6FfR9gTPQj_LmrIjU3cEOjFP4Vi0A3Pa8jqtC5XpIZ1aRU,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<blockquote>\r\n<div style=\"direction:ltr\">On Oct 16, 2025, at 9:20 AM, James Trevey &lt;<a id=\"m_-5188347059152730434OWA1939e34b-5b2c-9003-ede8-c8f559743e5e\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n<br>\r\n</div>\r\n</blockquote>\r\n<blockquote>\r\n<div style=\"direction:ltr\">﻿</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nHey Jordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nApologies for the slow/no replies recently. Travel has been brutal. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nWe&#39;ve got a lot of the information ready for you. Can we schedule a call to do a walk through on Monday the 20th at 9am or 10am ET?</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div id=\"m_-5188347059152730434x_m_5154054507612261457x_m_3027303751782346756x_divRplyFwdMsg\">\r\n<div style=\"direction:ltr;font-family:Calibri,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a id=\"m_-5188347059152730434OWA8c58e32e-c07b-2c9d-031e-39378c6b2453\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Thursday, October 16, 2025 9:16 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_-5188347059152730434OWA370bc921-b453-4ca1-a90c-a3760d045262\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a id=\"m_-5188347059152730434OWA38a65a75-0a32-7ad1-fb6e-fec3a8ccf702\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_-5188347059152730434OWAef467482-444c-bd55-030d-8124fe0eb8a3\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\"> </div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Would be great to get some pricing and spec sheets. </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Let me know when we can connect. </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\"><u>jordan<a style=\"margin:0px\" id=\"m_-5188347059152730434OWAbde88397-5f7f-6e20-eecb-9c9d616ae70b\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"color:rgb(255,255,255);background-color:rgba(255,255,255,0)\"><a style=\"margin-top:0px;margin-bottom:0px;background-color:rgba(255,255,255,0)\" id=\"m_-5188347059152730434OWA8995a143-93ff-32bf-0768-f2305f87035a\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,kruzcWrtQAWBE_Wzkk5ZCPi8egnieSOSjhsFO2fIO_mt3sy1dInRgNFjLY-Xwbk4dmY7rgbxINSGlle76-Yg-vEcypX9dPm0sX9KSwuuDZUbmg,,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<blockquote>\r\n<div style=\"direction:ltr\">On Sep 30, 2025, at 4:31 PM, Jordan Wroblewski &lt;<a id=\"m_-5188347059152730434OWAfc903b23-ac77-7b70-923b-6abe766ec537\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br>\r\n<br>\r\n</div>\r\n</blockquote>\r\n<blockquote>\r\n<div style=\"direction:ltr\">﻿</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to our discussion and seeing your deck of prospective projects.  </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best, </div>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a style=\"color:blue;margin:0px\" id=\"m_-5188347059152730434OWA69160ff1-d5bd-007c-638f-52d5ccdd5f0d\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_-5188347059152730434OWA6a7ea24c-1ec8-7ec2-7302-6e195d239024\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,KG7OlMyZO9jbLU5vTJ3I8lMhBaHdNf06-ktzHMDOUSoCImrfUczbXUj1d1VcQUh_ApKsyrkLO9FO7PzcinsYewUWoskpuT9EKlrhqSI22A,,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Fri, Sep 26, 2025 at 4:59 PM James Trevey &lt;<a id=\"m_-5188347059152730434OWAa8fbc85b-a982-60aa-1b0f-421cd7a87c0d\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI won&#39;t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI&#39;ll send to you as soon as I can next week.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<b>From:</b> James Trevey &lt;<a id=\"m_-5188347059152730434OWAd7a5c27b-da55-2c7f-698b-f818d5e5341c\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, September 24, 2025 10:49 AM<br>\r\n<b>To:</b> Jordan Wroblewski &lt;<a id=\"m_-5188347059152730434OWAa691f501-9154-2520-985f-29cdd2fb5c90\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a id=\"m_-5188347059152730434OWAbf77b698-937c-aeca-a707-b2494628658b\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_-5188347059152730434OWA104e212a-34bd-05fd-2c13-aef8bc1517fa\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI also have a verbal matter we can discuss soon. Once I&#39;ve got the deck ready I&#39;ll find time for a short call with you.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nTalk soon.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJames</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div id=\"m_-5188347059152730434x_m_5154054507612261457x_m_3027303751782346756x_x_m_7859046138643783182x_divRplyFwdMsg\">\r\n<div style=\"direction:ltr;font-family:Calibri,sans-serif;font-size:11pt;color:black\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a id=\"m_-5188347059152730434OWA8839c907-fb82-436d-88c1-e4063c0ac22f\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, September 24, 2025 10:07 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_-5188347059152730434OWA5bbe05c5-50fd-d977-82a6-0bb9a3e8d948\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a id=\"m_-5188347059152730434OWAfb29af50-570f-4e82-d05d-36379913355d\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_-5188347059152730434OWAf2c74f2a-7269-dfef-9873-29a46c5c4b9e\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\"> </div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for the follow up.  You were on my list to contact today!  </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Would that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I will let you know if I will be able to make it up to Detroit for The Battery Show.  </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to seeing the deck.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">All the best, </div>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a style=\"color:blue;margin:0px\" id=\"m_-5188347059152730434OWA61a86075-871c-a4f2-6f33-e7c4eb316069\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_-5188347059152730434OWA214782f4-48ae-8022-ef74-7608a601abba\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 24, 2025 at 11:59 AM James Trevey &lt;<a id=\"m_-5188347059152730434OWA33cce604-09df-9972-aa99-5a2cf482f6d9\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nHey Jordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nThank you for the quick follow up. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we&#39;ve decided we&#39;d like to provide information on additional products to you which are typically not on the menu but I have details\r\n to sort first. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nRegarding shows, happy to discuss when ready. We&#39;ll be at The Battery Show in 2 weeks, which I think you should consider attending and I&#39;d be happy to connect while there. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJames</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div id=\"m_-5188347059152730434x_m_5154054507612261457x_m_3027303751782346756x_x_m_7859046138643783182x_x_m_-6814561645313625911divRplyFwdMsg\">\r\n<div style=\"direction:ltr;font-family:Calibri,sans-serif;font-size:11pt;color:black\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a id=\"m_-5188347059152730434OWAd96cc1aa-a813-6163-4f4d-3a604e112ee7\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Thursday, September 18, 2025 11:03 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_-5188347059152730434OWA6c494d49-99e5-cffe-a9df-8e6c460a0e63\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a id=\"m_-5188347059152730434OWA5652f27b-5ef0-af9b-1a3e-1cecbce3fad8\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_-5188347059152730434OWAd0fa53a7-eca3-9387-f15c-28b074c1a084\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\"> </div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information\r\n to optimize our collaboration and planning:<br>\r\n<br>\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.<br>\r\n<br>\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.<br>\r\n<br>\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.<br>\r\n<br>\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.<br>\r\n<br>\r\nClarify your minimum order quantities and expected pricing for each product line.<br>\r\n<br>\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.<br>\r\n<br>\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted\r\n commercial timelines, and expected pricing.<br>\r\n<br>\r\nAdditionally, for reference, these are LBC’s most popular cells we&#39;ve made module and packs for:<br>\r\n<br>\r\n18650:<br>\r\n<br>\r\nNMC: TNL-ITR18650-2600P<br>\r\n<br>\r\nLFP: SW18650-26HPA<br>\r\n<br>\r\nLFP: IFR18650-2000mAh<br>\r\n<br>\r\n21700:<br>\r\n<br>\r\nNMC: INR21700-50S<br>\r\n<br>\r\nNMC: INR21700-4000<br>\r\n<br>\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">In terms of the shows you mentioned, we are getting our schedules aligned so we can attend.  What&#39;s the &quot;secret meeting&quot; in Nov? <br>\r\n<br>\r\nWe look forward to your prompt response so we can efficiently move to the next stages.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Talk soon, </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a style=\"color:blue;margin:0px\" id=\"m_-5188347059152730434OWA4e4576b1-1931-f3c5-bf04-1d623e748413\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_-5188347059152730434OWA0cfcaabe-77cb-de77-b671-98d78df6d665\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 17, 2025 at 7:00 PM James Trevey &lt;<a id=\"m_-5188347059152730434OWA2efeafd1-df26-a882-3cd2-915ab031edb6\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nThanks for moving quickly here. I got bogged down today but better late than never. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nAttached you&#39;ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won&#39;t tell us the application)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell has a 100% US supply chain already</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nmillions</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nmillions </u>next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nthousands</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nmillions</u> next year by our partner in the EU. As we show adoption, we&#39;ll expand our factory to build these</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nthousands</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n</ul>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI will check with my people on 301 asap.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI look forward to our next communication.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJames</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:black\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:black\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a id=\"m_-5188347059152730434OWA3b059ab0-9fb4-963d-d6b8-369eb4ca0cc2\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, September 17, 2025 7:56 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_-5188347059152730434OWA3d6fb971-5d4e-9b71-f39f-0860c844fa95\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;; Daniel &lt;<a id=\"m_-5188347059152730434OWA3111b555-f6ea-0b7e-f4da-ab68556c65e8\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_-5188347059152730434OWA7b82e4d2-9ac4-eea2-625d-4079b0c83093\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Gentlemen,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">It was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I&#39;ve outlined the key action items below:</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<ul style=\"direction:ltr\">\r\n<li style=\"direction:ltr\">James to send the cell specification sheets as soon as possible.</li><li style=\"direction:ltr\">LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.</li><li style=\"direction:ltr\">James to send their term sheet template for throughput contracts.</li><li style=\"direction:ltr\">We should discuss 301 exclusion support for manufacturing equipment.</li></ul>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I look forward to our next conversation. </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a style=\"color:blue;margin:0px\" id=\"m_-5188347059152730434OWAdbe91ca4-1ba3-791b-0976-85d477e08c5f\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_-5188347059152730434OWA739c124e-e74e-a939-4030-d125840b8a52\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n<div style=\"direction:ltr\">&lt;ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes (1).csv&gt;</div>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n\r\n</div></blockquote></div>','Hi James,\r\n\r\nWe are logged on to the teams meeting.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Thu, Oct 23, 2025 at 1:05 PM James Trevey <jtrevey@forgenano.com> wrote:\r\n\r\n> Jordan,\r\n>\r\n> Thanks for the call today. Attached are a bunch of documents:\r\n>\r\n>\r\n>    - spec sheets for all (5) FN Products\r\n>    - spec sheet for the Samsung 53G\r\n>    - spec sheet for the Moli P50B\r\n>    - Presentation from our call with ballpark cell availability and\r\n>    pricing\r\n>    - Term sheet for capturing our relationship interests\r\n>    - Skyfoundary proposal\r\n>\r\n>\r\n> I have your volumes from the ProgramProduct excel sheet that I\'ve plugged\r\n> into the term sheet for now as a first draft. On your end I captured the\r\n> following action items:\r\n>\r\n>\r\n>    - Review all documents in this email and confirm volumes and provide\r\n>    first pass review on the term sheet\r\n>    - Review the Skyfoundary proposal and put together a first-pass\r\n>    budget/plan to support Forge as a partner\r\n>\r\n>\r\n> I am out tomorrow for personal matters but look forward to our discussion\r\n> on Monday.\r\n>\r\n> James\r\n>\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Wednesday, October 22, 2025 9:45 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Will McKenna <WMcKenna@forgenano.com>; Daniel <\r\n> dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan\r\n> Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> You bet,\r\n>\r\n> Speak with you tomorrow.\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,RCp_srnsn8TsHi-Y90KYoNQPNLUs9Z2k6AQ2a8mY4AU8XQa0dJ0qeugNm0mDw--U4uH_iIRb9IN4Nb3dl2ctTPPmCoYcMeCAkzmhYm7mlpPXnMYFHVt8&typo=1>\r\n>\r\n>\r\n> On Wed, Oct 22, 2025 at 11:34 AM James Trevey <jtrevey@forgenano.com>\r\n> wrote:\r\n>\r\n> perfect. I look forward to speaking with you then!\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Wednesday, October 22, 2025 9:30 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Will McKenna <WMcKenna@forgenano.com>; Daniel <\r\n> dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan\r\n> Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Hi James,\r\n>\r\n> I can do tomorrow at 9am MST.\r\n>\r\n> Let me know if that still works for you and I can send you over an invite.\r\n>\r\n> Best,\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,irabj1pPRcbHt7fZTnVGlp-D5OWgJo5J-DJVmYysbSINfzIevG80IYq97Jraq-OV6w6IJC3gu0pHz4oFYfW4xcnb3n-PwXqRHBE_AugLqCnyxkrk6RI,&typo=1>\r\n>\r\n>\r\n> On Tue, Oct 21, 2025 at 6:09 PM James Trevey <jtrevey@forgenano.com>\r\n> wrote:\r\n>\r\n> Hey Jordan,\r\n>\r\n> I am back from 3 weeks of travel and ready to get sorted here. Tomorrow is\r\n> sunk, but on Thursday I can do 9am MT or 12:30pm MT. Do either work for\r\n> you? If not, I have the following next week:\r\n>\r\n> 27th: 11:30-1pm MT\r\n> 28th: 8am MT, 11am MT, after 1pm MT\r\n> 29th: after 1pm MT\r\n> 30th: after 10am MT\r\n>\r\n> Let me know what works.\r\n>\r\n> James\r\n>\r\n>\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Monday, October 20, 2025 5:12 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n> Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Hi James,\r\n>\r\n> I am out of town as well.  How does your Wednesday look?\r\n>\r\n> Looking forward to catching up.\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,kcAZ-rF3D0Z_d8KzW-apTAtlzHQofd8D2ZjbELiCHZPsqOhCV8Xd_fUJ6ZWDkt-2fgJod-EPR6FfR9gTPQj_LmrIjU3cEOjFP4Vi0A3Pa8jqtC5XpIZ1aRU,&typo=1>\r\n>\r\n> On Oct 16, 2025, at 9:20 AM, James Trevey <jtrevey@forgenano.com> wrote:\r\n>\r\n> ﻿\r\n> Hey Jordan,\r\n>\r\n> Apologies for the slow/no replies recently. Travel has been brutal.\r\n>\r\n> We\'ve got a lot of the information ready for you. Can we schedule a call\r\n> to do a walk through on Monday the 20th at 9am or 10am ET?\r\n>\r\n> James\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Thursday, October 16, 2025 9:16 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n> Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Hi James,\r\n>\r\n> Would be great to get some pricing and spec sheets.\r\n>\r\n> Let me know when we can connect.\r\n>\r\n> Best,\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,kruzcWrtQAWBE_Wzkk5ZCPi8egnieSOSjhsFO2fIO_mt3sy1dInRgNFjLY-Xwbk4dmY7rgbxINSGlle76-Yg-vEcypX9dPm0sX9KSwuuDZUbmg,,&typo=1>\r\n>\r\n> On Sep 30, 2025, at 4:31 PM, Jordan Wroblewski <\r\n> jordan@lithiumbatterycompany.com> wrote:\r\n>\r\n> ﻿\r\n> Hi James,\r\n>\r\n> I have attached a prospective cell demand schedule (subject to change) but\r\n> two of your battery types should meet the requirements for some of our\r\n> future projects.\r\n>\r\n> Looking forward to our discussion and seeing your deck of prospective\r\n> projects.\r\n>\r\n> Best,\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,KG7OlMyZO9jbLU5vTJ3I8lMhBaHdNf06-ktzHMDOUSoCImrfUczbXUj1d1VcQUh_ApKsyrkLO9FO7PzcinsYewUWoskpuT9EKlrhqSI22A,,&typo=1>\r\n>\r\n>\r\n> On Fri, Sep 26, 2025 at 4:59 PM James Trevey <jtrevey@forgenano.com>\r\n> wrote:\r\n>\r\n> Jordan,\r\n>\r\n> I won\'t be able to send the deck today. Still waiting on a few spec sheets\r\n> approval and validation of production capability for a few products.\r\n>\r\n> I\'ll send to you as soon as I can next week.\r\n>\r\n> James\r\n>\r\n>\r\n>\r\n>\r\n> ------------------------------\r\n> *From:* James Trevey <jtrevey@forgenano.com>\r\n> *Sent:* Wednesday, September 24, 2025 10:49 AM\r\n> *To:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n> Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Jordan,\r\n>\r\n> Unfortunately, there is not a large prismatic on our list. I could\r\n> potentially license a design to make one, but it would take a lot of\r\n> coordinating.\r\n>\r\n> It would be super helpful if you are able to compile a deck for us which\r\n> has your prospective cell demand schedule now and for the next few years,\r\n> as well as what your qualification schedule looks like (maybe program\r\n> based?). Maybe by cell type?\r\n>\r\n> I also have a verbal matter we can discuss soon. Once I\'ve got the deck\r\n> ready I\'ll find time for a short call with you.\r\n>\r\n> Talk soon.\r\n>\r\n> James\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Wednesday, September 24, 2025 10:07 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n> Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Hi James,\r\n>\r\n> Thank you for the follow up.  You were on my list to contact today!\r\n>\r\n> Would that additional product list include a prismatic cell? I have a\r\n> client who needs 150MWh a year and they want a domestic 314Ah cell...\r\n>\r\n> I will let you know if I will be able to make it up to Detroit for The\r\n> Battery Show.\r\n>\r\n> Looking forward to seeing the deck.\r\n>\r\n> All the best,\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&typo=1>\r\n>\r\n>\r\n> On Wed, Sep 24, 2025 at 11:59 AM James Trevey <jtrevey@forgenano.com>\r\n> wrote:\r\n>\r\n> Hey Jordan,\r\n>\r\n> Thank you for the quick follow up.\r\n>\r\n> I am working on a compiled deck for you to address the below requests and\r\n> aiming for end of this week. After speaking with my team, we\'ve decided\r\n> we\'d like to provide information on additional products to you which are\r\n> typically not on the menu but I have details to sort first.\r\n>\r\n> Regarding shows, happy to discuss when ready. We\'ll be at The Battery Show\r\n> in 2 weeks, which I think you should consider attending and I\'d be happy to\r\n> connect while there.\r\n>\r\n> James\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Thursday, September 18, 2025 11:03 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n> Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Hi James,\r\n>\r\n>\r\n> Thank you for continuing discussions regarding our strategic partnership.\r\n> As we prepare for module and pack production to support your battery cell\r\n> needs, we would appreciate your assistance in providing several key pieces\r\n> of information to optimize our collaboration and planning:\r\n>\r\n> Please share detailed volume forecasts for each cell type (e.g., 18650,\r\n> 21700) you expect to require over the next 1–5 years, broken out by project\r\n> or customer segment where feasible.\r\n>\r\n> Indicate your anticipated ramp-up schedule for sample, engineering, and\r\n> production volumes to help us align our development and manufacturing\r\n> timelines.\r\n>\r\n> Identify any major offtake agreements, anchor customers, or significant\r\n> opportunities in your commercial pipeline that could impact forecasted\r\n> demand for modules or packs.\r\n>\r\n> Outline target applications (energy storage, drones, EVs, DOD, etc.) and\r\n> specify any technical or certification requirements for modules/packs\r\n> related to these segments.\r\n>\r\n> Clarify your minimum order quantities and expected pricing for each\r\n> product line.\r\n>\r\n> Please also provide information about any flexibility in volume\r\n> commitments that may be necessary in case project requirements or customer\r\n> needs adjust mid-term.\r\n>\r\n> Importantly, we would like to request information on any current or\r\n> forthcoming cells with a minimum continuous discharge rating of 15C or\r\n> higher. For these cells, please provide specifications, target\r\n> applications, anticipated volume requirements, forecasted commercial\r\n> timelines, and expected pricing.\r\n>\r\n> Additionally, for reference, these are LBC’s most popular cells we\'ve made\r\n> module and packs for:\r\n>\r\n> 18650:\r\n>\r\n> NMC: TNL-ITR18650-2600P\r\n>\r\n> LFP: SW18650-26HPA\r\n>\r\n> LFP: IFR18650-2000mAh\r\n>\r\n> 21700:\r\n>\r\n> NMC: INR21700-50S\r\n>\r\n> NMC: INR21700-4000\r\n>\r\n> Providing this information will enable LBC to ensure maximum alignment,\r\n> timely scale-up, and the most competitive solutions to support your growth\r\n> across all high-value sectors.\r\n>\r\n> In terms of the shows you mentioned, we are getting our schedules aligned\r\n> so we can attend.  What\'s the \"secret meeting\" in Nov?\r\n>\r\n> We look forward to your prompt response so we can efficiently move to the\r\n> next stages.\r\n>\r\n>\r\n> Talk soon,\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&typo=1>\r\n>\r\n>\r\n> On Wed, Sep 17, 2025 at 7:00 PM James Trevey <jtrevey@forgenano.com>\r\n> wrote:\r\n>\r\n> Jordan,\r\n>\r\n> Thanks for moving quickly here. I got bogged down today but better late\r\n> than never.\r\n>\r\n> Attached you\'ll find data sheets for all (5) of our products, including\r\n> both 18650 and 21700. Below is a quick summary:\r\n>\r\n>\r\n>    - SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation\r\n>    (they won\'t tell us the application)\r\n>    - This cell has a 100% US supply chain already\r\n>       - This cell can be made in the * millions* next year by our partner\r\n>       in the EU, until our factory is online in 2027\r\n>       - SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse\r\n>    engineered from MIL-PRF-32383)\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the * millions *next year by our partner\r\n>       in the EU, until our factory is online in 2027\r\n>       - SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the * thousands* next year by our\r\n>       partner in the EU, until our factory is online in 2027\r\n>       - SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum\r\n>    case and tabless design, super lightweight)\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the * millions* next year by our partner\r\n>       in the EU. As we show adoption, we\'ll expand our factory to build these\r\n>       - SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse\r\n>    engineered from MIL-PRF-32565)\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the * thousands* next year by our\r\n>       partner in the EU, until our factory is online in 2027\r\n>\r\n>\r\n> We can also get 80mmx300mm pouch cells made by our EU partner, if needed.\r\n>\r\n> Regarding the term sheet, please see the attached template that I put\r\n> together but needs input from you all.\r\n>\r\n> Maybe we line up another discussion for next week to continue our\r\n> alignment path? Also, are any of you planning to attend The Battery Show in\r\n> Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores\r\n> in Nashville? in October? Or the secret meeting on November 5th in DC?\r\n>\r\n> I will check with my people on 301 asap.\r\n>\r\n> I look forward to our next communication.\r\n>\r\n> James\r\n>\r\n>\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Wednesday, September 17, 2025 7:56 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>; Daniel <\r\n> dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan\r\n> Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Gentlemen,\r\n>\r\n> It was a pleasure connecting with you yesterday. I am very excited about\r\n> the potential for a partnership between our companies. To maintain the\r\n> momentum from our discussion, I\'ve outlined the key action items below:\r\n>\r\n>\r\n>    - James to send the cell specification sheets as soon as possible.\r\n>    - LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for\r\n>    benchmarking purposes.\r\n>    - James to send their term sheet template for throughput contracts.\r\n>    - We should discuss 301 exclusion support for manufacturing equipment.\r\n>\r\n>\r\n> I look forward to our next conversation.\r\n>\r\n> Best,\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&typo=1>\r\n>\r\n> <ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes\r\n> (1).csv>\r\n>\r\n>',0,0,0,0,0,0,'2025-10-27 18:33:10','2025-12-09 19:30:30','2025-12-09 19:30:30','2025-12-09 19:30:30',NULL,NULL,NULL),
(896,4,'<calendar-aa29d161-e8d8-4d48-ac09-b540e53a621d@google.com>',NULL,NULL,'Invitation: Review of FEOC and Non-FEOC Battery Solutions - Lithium B... @ Thu Oct 30, 2025 5:30pm - 6:30pm (EDT) (null)','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v154/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v144/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v118/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation from Jordan Wroblewski\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"_60q30c1g60o30e1i60o4ac1g60rj8gpl88rj2c1h84s34h9g60s30c1g60o30c1g84pk8dhk60r36chh6gs48gpg64o30c1g60o30c1g60o30c1g60o32c1g60o30c1g852k8c1m8d0k2dhl84q3cchk64s3iea38ook4c9o6oojici26kr0\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Review of FEOC and Non-FEOC Battery Solutions - Lithium Battery Co.</span><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20251030T213000Z\"></time><time itemprop=\"endDate\" datetime=\"20251030T223000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">Description:\r\nThis meeting will provide a high-level review of Lithium Battery Co.’s Residential FEOC and Non-FEOC battery solutions, focusing on advancing discussions around sourcing strategy, design </div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><div class=\"\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span>Description:<br>This meeting will provide a high-level review of Lithium Battery Co.’s Residential FEOC and Non-FEOC battery solutions, focusing on advancing discussions around sourcing strategy, design specifications, pricing, and production timelines to align with Sol-Ark’s residential roadmap.<p>Agenda:</p><p>  *<br>Introductions &amp; Meeting Objectives<br>  *<br>Overview of Residential Battery Solutions (FEOC &amp; Non-FEOC)<br>  *<br>Discussion: Sourcing, Design, Pricing, and Timelines<br>  *<br>Next Steps and Alignment on Path Forward</p><p><br>________________________________________________________________________________<br>Microsoft Teams Need help?<u></u><br>Join the meeting now<u></u><br>Meeting ID: 239 743 158 556 5<br>Passcode: rG2bi9fh<br>________________________________<br>For organizers: Meeting options<u></u><br>________________________________________________________________________________<br></p></span><meta itemprop=\"description\" content=\"Description:\r\nThis meeting will provide a high-level review of Lithium Battery Co.’s Residential FEOC and Non-FEOC battery solutions, focusing on advancing discussions around sourcing strategy, design specifications, pricing, and production timelines to align with Sol-Ark’s residential roadmap.\r\n\r\nAgenda:\r\n\r\n  *\r\nIntroductions &amp; Meeting Objectives\r\n  *\r\nOverview of Residential Battery Solutions (FEOC &amp; Non-FEOC)\r\n  *\r\nDiscussion: Sourcing, Design, Pricing, and Timelines\r\n  *\r\nNext Steps and Alignment on Path Forward\r\n\r\n\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?\r\nJoin the meeting now\r\nMeeting ID: 239 743 158 556 5\r\nPasscode: rG2bi9fh\r\n________________________________\r\nFor organizers: Meeting options\r\n________________________________________________________________________________\r\n\"/></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20251030T213000Z\"></time><time itemprop=\"endDate\" datetime=\"20251030T223000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Thursday Oct 30, 2025 ⋅ 5:30pm – 6:30pm (Eastern Time - New York)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Location</h2></td></tr></table><span itemprop=\"location\" itemscope itemtype=\"http://schema.org/Place\"><span itemprop=\"name\" class=\"primary-text notranslate\" style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\">Microsoft Teams Meeting</span><br/><a href=\"https://www.google.com/maps/search/Microsoft+Teams+Meeting?hl=en\" class=\"accent-text underline-on-hover\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" itemprop=\"map\">View map</a></span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:dustin.douglas@sol-ark.com\">Douglas, Dustin</a></span><meta itemprop=\"email\" content=\"dustin.douglas@sol-ark.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Douglas, Dustin\"/><meta itemprop=\"email\" content=\"dustin.douglas@sol-ark.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:jordan@lithiumbatterycompany.com\">Jordan Wroblewski</a></span><meta itemprop=\"email\" content=\"jordan@lithiumbatterycompany.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - creator</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a></span><meta itemprop=\"email\" content=\"brian@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:tom.brennan@sol-ark.com\">Brennan, Tom</a></span><meta itemprop=\"email\" content=\"tom.brennan@sol-ark.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:nathan@lithiumbatterycompany.com\">Nathan Staron</a></span><meta itemprop=\"email\" content=\"nathan@lithiumbatterycompany.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:david.norman@sol-ark.com\">Norman, David</a></span><meta itemprop=\"email\" content=\"david.norman@sol-ark.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - optional</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:simon.mclean@sol-ark.com\">McLean, Simon</a></span><meta itemprop=\"email\" content=\"simon.mclean@sol-ark.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - optional</span></div></div></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','Review of FEOC and Non-FEOC Battery Solutions - Lithium Battery Co.\r\nThursday Oct 30, 2025 ⋅ 5:30pm – 6:30pm\r\nEastern Time - New York\r\n\r\nLocation\r\nMicrosoft Teams Meeting	\r\nhttps://www.google.com/maps/search/Microsoft+Teams+Meeting?hl=en\r\n\r\n\r\n\r\nDescription:\r\nThis meeting will provide a high-level review of Lithium Battery Co.’s  \r\nResidential FEOC and Non-FEOC battery solutions, focusing on advancing  \r\ndiscussions around sourcing strategy, design specifications, pricing, and  \r\nproduction timelines to align with Sol-Ark’s residential roadmap.\r\n\r\nAgenda:\r\n\r\n   *\r\nIntroductions & Meeting Objectives\r\n   *\r\nOverview of Residential Battery Solutions (FEOC & Non-FEOC)\r\n   *\r\nDiscussion: Sourcing, Design, Pricing, and Timelines\r\n   *\r\nNext Steps and Alignment on Path Forward\r\n\r\n\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?\r\nJoin the meeting now\r\nMeeting ID: 239 743 158 556 5\r\nPasscode: rG2bi9fh\r\n________________________________\r\nFor organizers: Meeting options\r\n________________________________________________________________________________\r\n\r\n\r\nOrganizer\r\nDouglas, Dustin\r\ndustin.douglas@sol-ark.com\r\n\r\nGuests\r\nDouglas, Dustin - organizer\r\nJordan Wroblewski - creator\r\nbrian@mavrix.one\r\nrick@mavrix.one\r\nBrennan, Tom\r\nNathan Staron\r\nNorman, David - optional\r\nMcLean, Simon - optional\r\n\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-10-28 15:45:06','2025-12-09 19:30:30','2025-12-09 19:30:30','2025-12-09 19:30:30',NULL,NULL,NULL),
(897,4,'<CAEvVzq1abJtHuJ9G2SC3=aNm=WXH4mz0okNEGUMpUjcfHhWv6Q@mail.gmail.com>',NULL,NULL,'=?UTF-8?Q?Great_to_reconnect_=E2=80=94_I=E2=80=99d_love_to_visit_your_Tamp?= =?UTF-8?Q?a_facility?=','liz@brandysmoldandtool.com','Elizabeth Perkins','<div dir=\"ltr\"><div><p>Hi Rick,</p>\r\n<p>I wanted to check in and see how things have been going since we last spoke.</p>\r\n<p>I’ve recently moved to the Tampa–St. Petersburg area and would love the opportunity to visit and tour your facility whenever it’s convenient. It would be great to see your setup firsthand.</p><p>I&#39;d also love to hear how your plans have progressed since we last talked.</p>\r\n<p>Let me know what your schedule looks like over the next few weeks for a meeting, and if I am able to tour your facility. I can be flexible to fit what works best for you and your team.</p>\r\n<p>Looking forward to catching up and continuing the conversation!</p></div><div><br></div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><img width=\"96\" height=\"38\" src=\"https://ci3.googleusercontent.com/mail-sig/AIorK4xpMAQi-3CccYzdad7DnbPHOkAHkZLthTPdqQy_mmGqmNua-ldbvlLW3KyCXMvL0Duc1K_cjsds8w7y\"><div><b>Liz Perkins</b><div>Vice President</div><div>585-233-0566<div><br></div></div></div></div></div></div></div>','Hi Rick,\r\n\r\nI wanted to check in and see how things have been going since we last spoke.\r\n\r\nI’ve recently moved to the Tampa–St. Petersburg area and would love the\r\nopportunity to visit and tour your facility whenever it’s convenient. It\r\nwould be great to see your setup firsthand.\r\n\r\nI\'d also love to hear how your plans have progressed since we last talked.\r\n\r\nLet me know what your schedule looks like over the next few weeks for a\r\nmeeting, and if I am able to tour your facility. I can be flexible to fit\r\nwhat works best for you and your team.\r\n\r\nLooking forward to catching up and continuing the conversation!\r\n\r\n\r\n*Liz Perkins*\r\nVice President\r\n585-233-0566',0,0,0,0,0,0,'2025-10-28 16:01:56','2025-12-09 19:30:31','2025-12-09 19:30:31','2025-12-09 19:30:31',NULL,NULL,NULL),
(898,4,' <DM5SPR01MB04000A9C33433755E11E9645DCFCA@DM5SPR01MB0400.namprd08.prod.outlook.com>',NULL,NULL,'Site specific details','cdiaz@flowcorp.com','Carlos Diaz','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n   Hope all is well Rick. Here are the facility requirements for the table and pump set up we quoted you.&nbsp; Just wanted to mention that we can schedule another teams call this week to answer any question you may have.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n&nbsp;Look forward to hearing back from you.&nbsp;</div>\r\n<div class=\"elementToProof\" id=\"Signature\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: rgb(49, 132, 155);\"><b>Carlos R. Diaz</b></span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\"><b>Application Specialist</b></span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\">Flow International Corporation</span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\">Atlanta, GA. 30064</span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\">C.943.253.7285</span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: rgb(5, 99, 193);\"><u><a style=\"color: rgb(5, 99, 193); margin-top: 0px; margin-bottom: 0px;\" class=\"x_OWAAutoLink\" id=\"OWA740a10af-9a08-fc8b-b7e4-cd421b2f8244\" href=\"http://www.flowwaterjet.com/\">www.FlowWaterjet.com</a></u></span><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\">&nbsp;</span></p>\r\n<div style=\"font-family: &quot;Franklin Gothic Medium&quot;, sans-serif; font-size: 8.5pt; color: gray;\" class=\"elementToProof\">\r\n<span style=\"background-color: rgb(255, 255, 255);\"><br>\r\n</span></div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: &quot;Calibri Light&quot;, &quot;Helvetica Light&quot;, sans-serif; font-size: 14pt; color: rgb(23, 78, 134);\" class=\"elementToProof\">\r\n<b><br>\r\n</b></div>\r\n<div style=\"font-family: &quot;Segoe UI Light&quot;; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<span style=\"background-color: rgb(255, 255, 255);\"><b><br>\r\n</b></span></div>\r\n<div style=\"font-family: &quot;Segoe UI Light&quot;; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<span style=\"background-color: rgb(255, 255, 255);\"><br>\r\n</span></div>\r\n<div style=\"font-family: &quot;Segoe UI Light&quot;; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, October 24, 2025 10:52 AM<br>\r\n<b>To:</b> Carlos Diaz &lt;cdiaz@flowcorp.com&gt;<br>\r\n<b>Subject:</b> Site specific details</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div style=\"background-color:#FFEB9C; width:100%; border-style:solid; border-color:#9C6500; border-width:1pt; padding:2pt; font-size:10pt; line-height:12pt; font-family:\'Calibri\'; color:Black; text-align:left\">\r\n<span style=\"color:#9C6500; font-weight:bold\">CAUTION:</span> This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.</div>\r\n<br>\r\n<div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nHi Carlos,</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nTalking to our builder today.&nbsp;</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nCan you send me any site specific setup details for the FlowJet models we discussed?</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nLooking for specialized requirements and data on installation, power, performance, compliance, and any other factors.<br>\r\n</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks,</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div id=\"x_bloop_sign_1761317454599635968\" class=\"x_bloop_sign\">\r\n<div><br>\r\n</div>\r\n<div>Rick Mislan, PhD,&nbsp;</div>\r\n<div>Founder, CTO</div>\r\n<div><img class=\"x_composer_internal_attach\" id=\"x_ATTACH_attach_6d6573736167655f315f31323736_35324141434136342d423436382d343238352d423543342d383338463637303746464343_35333544443832312d464239312d343942372d414135392d424242443643324143354235_0\" style=\"max-width:99%\" data-outlook-trace=\"F:1|T:1\" src=\"cid:0C60712A-B683-416B-B7C9-66A6C2540ECA\"></div>\r\n<div>https://mavrix1.com</div>\r\n<div><br>\r\n</div>\r\n<div><font face=\"Helvetica\"><span style=\"font-size:12px\"><b><u>CONFIDENTIALITY NOTICE</u></b></span></font></div>\r\n<div><font face=\"Helvetica\"><span style=\"font-size:12px\"><i>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the\r\n designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</i></span></font></div>\r\n<div><font face=\"Helvetica\"><span style=\"font-size:12px\"><i><br>\r\n</i></span></font></div>\r\n<div><font face=\"Helvetica\"><span style=\"font-size:12px\"><i>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</i></span></font></div>\r\n<div><font face=\"Helvetica\"><span style=\"font-size:12px\"><i><br>\r\n</i></span></font></div>\r\n<div><font face=\"Helvetica\"><span style=\"font-size:12px\"><i>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients\r\n are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</i></span></font></div>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','   Hope all is well Rick. Here are the facility requirements for the table and pump set up we quoted you.  Just wanted to mention that we can schedule another teams call this week to answer any question you may have.\r\n\r\n\r\n Look forward to hearing back from you.\r\n\r\n\r\nCarlos R. Diaz\r\n\r\nApplication Specialist\r\n\r\nFlow International Corporation\r\n\r\nAtlanta, GA. 30064\r\n\r\nC.943.253.7285\r\n\r\nwww.FlowWaterjet.com<http://www.flowwaterjet.com/>\r\n\r\n\r\n\r\n\r\n\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, October 24, 2025 10:52 AM\r\nTo: Carlos Diaz <cdiaz@flowcorp.com>\r\nSubject: Site specific details\r\n\r\nCAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.\r\n\r\nHi Carlos,\r\nTalking to our builder today.\r\nCan you send me any site specific setup details for the FlowJet models we discussed?\r\nLooking for specialized requirements and data on installation, power, performance, compliance, and any other factors.\r\nThanks,\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:0C60712A-B683-416B-B7C9-66A6C2540ECA]\r\nhttps://mavrix1.com\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n',0,0,0,0,0,0,'2025-10-28 16:25:21','2025-12-09 19:30:33','2025-12-09 19:30:33','2025-12-09 19:30:33',NULL,NULL,NULL),
(899,4,'<CAJO9__bDb0ZYvCRex4EtNjD56HPKwqkKYbu=c9a0tEBF1oNSxA@mail.gmail.com>',NULL,NULL,'Sol-Ark Price','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Hi Jarrett,</div><div><br></div><div>Please see attached Sol-Ark price.  </div><div><br></div><div>Let me know if you have any questions. </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div></div>','Hi Jarrett,\r\n\r\nPlease see attached Sol-Ark price.\r\n\r\nLet me know if you have any questions.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>',0,0,0,0,0,0,'2025-10-28 19:28:21','2025-12-09 19:30:33','2025-12-09 19:30:33','2025-12-09 19:30:33',NULL,NULL,NULL),
(900,4,' <CH2PR16MB3431F8EF697D4148C8BA8398FEFDA@CH2PR16MB3431.namprd16.prod.outlook.com>',NULL,NULL,'Re: Sol-Ark Price','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nThanks Jordan, do we know the estimated:<br>\r\n<br>\r\n1) Pack/Module integration time? (hours or minutes to assemble the BMS &amp; additional components)<br>\r\n<br>\r\n2) Testing &amp; Aging cycle duration (hours or minutes the module needs to be tested)<br>\r\n<br>\r\n3) Quantity &amp; timeline for production deliver? Roughly speaking - this will help with confirming the labor rates<br>\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" id=\"Signature\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"8\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">Jarrett@</a>lithiumbatterycompany<a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"9\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">.com</a></u></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-auth=\"NotApplicable\" data-linkindex=\"10\" title=\"https://lithiumbatterycompany.com/\" href=\"https://lithiumbatterycompany.com/\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b> Tuesday, October 28, 2025 3:28 PM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Cc:</b> Brian Stufflebean &lt;brian@mavrix.one&gt;; Nathan Staron &lt;Nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Sol-Ark Price</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div>Hi Jarrett,</div>\r\n<div><br>\r\n</div>\r\n<div>Please see attached Sol-Ark price.&nbsp;&nbsp;</div>\r\n<div><br>\r\n</div>\r\n<div>Let me know&nbsp;if you have any questions.&nbsp;</div>\r\n<div>\r\n<div dir=\"ltr\" class=\"x_gmail_signature\" data-smartmail=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\"><br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','Thanks Jordan, do we know the estimated:\r\n\r\n1) Pack/Module integration time? (hours or minutes to assemble the BMS & additional components)\r\n\r\n2) Testing & Aging cycle duration (hours or minutes the module needs to be tested)\r\n\r\n3) Quantity & timeline for production deliver? Roughly speaking - this will help with confirming the labor rates\r\n\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\nSent: Tuesday, October 28, 2025 3:28 PM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nCc: Brian Stufflebean <brian@mavrix.one>; Nathan Staron <Nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\nSubject: Sol-Ark Price\r\n\r\nHi Jarrett,\r\n\r\nPlease see attached Sol-Ark price.\r\n\r\nLet me know if you have any questions.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<http://lithiumbatterycompany.com>',0,0,0,0,0,0,'2025-10-28 19:45:31','2025-12-09 19:30:33','2025-12-09 19:30:33','2025-12-09 19:30:33',NULL,NULL,NULL),
(901,4,'<CAJO9__Zr4PR6=v0Di-37c_eVmEBFtadPy6r6aVTC=VyVokE_zg@mail.gmail.com>',NULL,NULL,'Re: Sol-Ark Price','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Hi Jarrett,</div><div><br></div>I took the equipment spec sheet for the prismatic line and this is what it said: <br><br><i>With each 16 kWh Sol-Ark system using 16 prismatic 314Ah cells, and a prismatic line capable of handling approximately 95 cells per minute, the daily output for two 8-hour shifts can be calculated as follows:<br><br>Cells produced per day: 95 cells/min×60 min/hour×16 hours=91,200 cells <br>Modules produced per day: 91,200 cells/16 cell system=5,700 modules<br>This is the theoretical maximum, assuming assembly processes downstream (module, pack, and testing) keep up with cell processing, with no significant bottlenecks. This calculation is valid for the specified 16x 314Ah cell configuration per system. Actual output may be lower based on process specifics or technical constraints in the pack assembly area.</i><div> </div><div>The numbers below I double checked with Kevin from what I gathered on AI as well. </div><div><br></div><div>1) Pack/Module integration time: 1-3 </div><div><br></div><div>2)  Testing &amp; Aging Cycle duration: Our machines do EOL (End of Line) testing.  For a full charge discharge cycle I would say 24 - 72hrs.  I think we can get away with doing 24hrs on select systems for random testing/QC.  Brian thinks we will need to do every unit for the first few hundred or so to get all the kinks out. </div><div><br></div><div>3)Quantity &amp; Timeline for production: 1GW in 365 days.  That is producing 171.23 units a day.</div><div><br></div><div>Below is the revised worksheet with prices for each component.  I switched the cell price to $60 as well.  I did not add labor to the worksheet below. </div><div><br><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Oct 28, 2025 at 3:45 PM Jarrett Brownfield &lt;<a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div>\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nThanks Jordan, do we know the estimated:<br>\r\n<br>\r\n1) Pack/Module integration time? (hours or minutes to assemble the BMS &amp; additional components)<br>\r\n<br>\r\n2) Testing &amp; Aging cycle duration (hours or minutes the module needs to be tested)<br>\r\n<br>\r\n3) Quantity &amp; timeline for production deliver? Roughly speaking - this will help with confirming the labor rates<br>\r\n<br>\r\n</div>\r\n<div id=\"m_-629442276135542824m_7521469498182349047Signature\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:11pt;color:black\"><b>Jarrett Brownfield </b></span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black;background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:rgb(0,36,81)\"><u><a style=\"color:rgb(0,36,81);margin:0px\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">Jarrett@</a>lithiumbatterycompany<a style=\"color:rgb(0,36,81);margin:0px\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">.com</a></u></span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:rgb(0,36,81)\"><u><a style=\"color:rgb(0,36,81);margin:0px\" title=\"https://lithiumbatterycompany.com/\" href=\"https://lithiumbatterycompany.com/\" target=\"_blank\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div id=\"m_-629442276135542824m_7521469498182349047appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div id=\"m_-629442276135542824m_7521469498182349047divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Tuesday, October 28, 2025 3:28 PM<br>\r\n<b>To:</b> Jarrett Brownfield &lt;<a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Cc:</b> Brian Stufflebean &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Sol-Ark Price</font>\r\n<div> </div>\r\n</div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div>Hi Jarrett,</div>\r\n<div><br>\r\n</div>\r\n<div>Please see attached Sol-Ark price.  </div>\r\n<div><br>\r\n</div>\r\n<div>Let me know if you have any questions. </div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n</div></blockquote></div>','Hi Jarrett,\r\n\r\nI took the equipment spec sheet for the prismatic line and this is what it\r\nsaid:\r\n\r\n\r\n\r\n\r\n\r\n*With each 16 kWh Sol-Ark system using 16 prismatic 314Ah cells, and a\r\nprismatic line capable of handling approximately 95 cells per minute, the\r\ndaily output for two 8-hour shifts can be calculated as follows:Cells\r\nproduced per day: 95 cells/min×60 min/hour×16 hours=91,200 cells Modules\r\nproduced per day: 91,200 cells/16 cell system=5,700 modulesThis is the\r\ntheoretical maximum, assuming assembly processes downstream (module, pack,\r\nand testing) keep up with cell processing, with no significant bottlenecks.\r\nThis calculation is valid for the specified 16x 314Ah cell configuration\r\nper system. Actual output may be lower based on process specifics or\r\ntechnical constraints in the pack assembly area.*\r\n\r\nThe numbers below I double checked with Kevin from what I gathered on AI as\r\nwell.\r\n\r\n1) Pack/Module integration time: 1-3\r\n\r\n2)  Testing & Aging Cycle duration: Our machines do EOL (End of Line)\r\ntesting.  For a full charge discharge cycle I would say 24 - 72hrs.  I\r\nthink we can get away with doing 24hrs on select systems for random\r\ntesting/QC.  Brian thinks we will need to do every unit for the first few\r\nhundred or so to get all the kinks out.\r\n\r\n3)Quantity & Timeline for production: 1GW in 365 days.  That is producing\r\n171.23 units a day.\r\n\r\nBelow is the revised worksheet with prices for each component.  I switched\r\nthe cell price to $60 as well.  I did not add labor to the worksheet below.\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Tue, Oct 28, 2025 at 3:45 PM Jarrett Brownfield <\r\njarrett@lithiumbatterycompany.com> wrote:\r\n\r\n> Thanks Jordan, do we know the estimated:\r\n>\r\n> 1) Pack/Module integration time? (hours or minutes to assemble the BMS &\r\n> additional components)\r\n>\r\n> 2) Testing & Aging cycle duration (hours or minutes the module needs to be\r\n> tested)\r\n>\r\n> 3) Quantity & timeline for production deliver? Roughly speaking - this\r\n> will help with confirming the labor rates\r\n>\r\n>\r\n> *Jarrett Brownfield *\r\n>\r\n> Partner I Chief Financial Officer\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (812) 552-6854\r\n>\r\n> *Jarrett@\r\n> <Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> *Lithium Battery Company <https://lithiumbatterycompany.com/>*\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Tuesday, October 28, 2025 3:28 PM\r\n> *To:* Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\n> *Cc:* Brian Stufflebean <brian@mavrix.one>; Nathan Staron <\r\n> Nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Sol-Ark Price\r\n>\r\n> Hi Jarrett,\r\n>\r\n> Please see attached Sol-Ark price.\r\n>\r\n> Let me know if you have any questions.\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company <http://lithiumbatterycompany.com>\r\n>',0,0,0,0,0,0,'2025-10-28 21:28:29','2025-12-09 19:30:34','2025-12-09 19:30:34','2025-12-09 19:30:34',NULL,NULL,NULL),
(902,4,' <CH2PR16MB34315C6CD319833EC0DE03BBFEFDA@CH2PR16MB3431.namprd16.prod.outlook.com>',NULL,NULL,'Re: Sol-Ark Price','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nThanks Jordan - this is helpful, just for clarification - what is the unit of measure for the&nbsp;&quot;1-3&quot; pack/module integration time? Is that 1-3 modules / hours / mins?<br>\r\n<br>\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" id=\"Signature\">\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"8\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWA6c3b1811-4752-0935-87b9-5c198fe816a3\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">Jarrett@</a>lithiumbatterycompany<a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"9\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWA210a918a-fb4d-c7df-bc18-c5ab8e6ad27c\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">.com</a></u></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"10\" data-auth=\"NotApplicable\" title=\"https://lithiumbatterycompany.com/\" class=\"OWAAutoLink\" id=\"OWAf783a8d8-d9e7-b3da-0274-6c268fddf1f8\" href=\"https://lithiumbatterycompany.com/\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<hr style=\"display: inline-block; width: 98%;\">\r\n<div id=\"divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b>&nbsp;Tuesday, October 28, 2025 5:28 PM<br>\r\n<b>To:</b>&nbsp;Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Cc:</b>&nbsp;Brian Stufflebean &lt;brian@mavrix.one&gt;; Nathan Staron &lt;Nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Sol-Ark Price</div>\r\n<div style=\"direction: ltr;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr;\">Hi Jarrett,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">I took the equipment spec sheet for the prismatic line and this is what it said:<br>\r\n<br>\r\n<i>With each 16 kWh Sol-Ark system using 16 prismatic 314Ah cells, and a prismatic line capable of handling approximately 95 cells per minute, the daily output for two 8-hour shifts can be calculated as follows:<br>\r\n<br>\r\nCells produced per day: 95 cells/min×60 min/hour×16 hours=91,200 cells&nbsp;<br>\r\nModules produced per day: 91,200 cells/16 cell system=5,700 modules<br>\r\nThis is the theoretical maximum, assuming assembly processes downstream (module, pack, and testing) keep up with cell processing, with no significant bottlenecks. This calculation is valid for the specified 16x 314Ah cell configuration per system. Actual output\r\n may be lower based on process specifics or technical constraints in the pack assembly area.</i></div>\r\n<div style=\"direction: ltr;\">&nbsp;</div>\r\n<div style=\"direction: ltr;\">The numbers below I double checked with Kevin from what I gathered on AI as well.&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\" class=\"elementToProof\">1) Pack/Module integration time: 1-3&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">2)&nbsp; Testing &amp; Aging Cycle duration: Our machines do EOL (End of Line) testing.&nbsp; For a full charge discharge cycle I would say 24 - 72hrs.&nbsp; I think we can get away with doing 24hrs on select systems for random testing/QC.&nbsp; Brian\r\n thinks we will need to do every unit for the first few hundred or so to get all the kinks out.&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">3)Quantity &amp; Timeline for production: 1GW in 365 days.&nbsp; That is producing 171.23 units a day.</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Below is the revised worksheet with prices for each component.&nbsp; I switched the&nbsp;cell price to $60 as well.&nbsp; I did not add labor to the worksheet below.&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; color: black;\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: black;\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: blue;\"><u>jordan<a style=\"color: blue; margin: 0px;\" class=\"OWAAutoLink\" id=\"OWA0f226602-a302-b270-1caa-6f28a491e193\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: rgb(5, 99, 193);\"><a style=\"margin-top: 0px; margin-bottom: 0px;\" data-auth=\"NotApplicable\" class=\"OWAAutoLink\" id=\"OWA35cb3acb-1baa-805e-3b98-40e26176312e\" href=\"http://lithiumbatterycompany.com\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div style=\"direction: ltr;\">On Tue, Oct 28, 2025 at 3:45 PM Jarrett Brownfield &lt;<a class=\"OWAAutoLink\" id=\"OWA2c0361ad-2b32-2a2e-e867-80b98daa921a\" href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin: 0px 0px 0px 0.8ex; padding-left: 1ex; border-left: 1px solid rgb(204, 204, 204);\">\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nThanks Jordan, do we know the estimated:<br>\r\n<br>\r\n1) Pack/Module integration time? (hours or minutes to assemble the BMS &amp; additional components)<br>\r\n<br>\r\n2) Testing &amp; Aging cycle duration (hours or minutes the module needs to be tested)<br>\r\n<br>\r\n3) Quantity &amp; timeline for production deliver? Roughly speaking - this will help with confirming the labor rates<br>\r\n<br>\r\n</div>\r\n<div id=\"x_m_-629442276135542824m_7521469498182349047Signature\">\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWA20da62dc-2439-bc17-cdc2-ca1970e6090f\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">Jarrett@</a>lithiumbatterycompany<a style=\"color: rgb(0, 36, 81); margin: 0px;\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWA20be5dea-3c2c-cd2e-a433-a388519fcc4e\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">.com</a></u></span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-auth=\"NotApplicable\" title=\"https://lithiumbatterycompany.com/\" class=\"OWAAutoLink\" id=\"OWA697807d9-b15b-1bd6-6fbc-24f292f50272\" href=\"https://lithiumbatterycompany.com/\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div id=\"x_m_-629442276135542824m_7521469498182349047divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a class=\"OWAAutoLink\" id=\"OWAace1f6a4-be6d-079b-1e4c-2a802c892d15\" href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Tuesday, October 28, 2025 3:28 PM<br>\r\n<b>To:</b>&nbsp;Jarrett Brownfield &lt;<a class=\"OWAAutoLink\" id=\"OWAd1a6b80a-27b5-1ef8-ed39-e7ba1651604e\" href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Brian Stufflebean &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a class=\"OWAAutoLink\" id=\"OWA2403f51e-43c8-42c4-7c24-9804eefda10c\" href=\"mailto:Nathan@lithiumbatterycompany.com\">Nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Sol-Ark Price</div>\r\n<div style=\"direction: ltr;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr;\">Hi Jarrett,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Please see attached Sol-Ark price.&nbsp;&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Let me know&nbsp;if you have any questions.&nbsp;</div>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; color: black;\"><br>\r\n</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; color: black;\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: black;\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: blue;\"><u>jordan<a style=\"color: blue; margin: 0px;\" class=\"OWAAutoLink\" id=\"OWA480af42d-69dd-1e21-9e49-09a1c4cad26f\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: rgb(5, 99, 193);\"><a style=\"margin-top: 0px; margin-bottom: 0px;\" data-auth=\"NotApplicable\" class=\"OWAAutoLink\" id=\"OWA4b53f4fc-ea16-56a9-3a48-04179c673ef0\" href=\"http://lithiumbatterycompany.com\">Lithium\r\n Battery Company</a></span></p>\r\n</blockquote>\r\n</body>\r\n</html>\r\n','Thanks Jordan - this is helpful, just for clarification - what is the unit of measure for the \"1-3\" pack/module integration time? Is that 1-3 modules / hours / mins?\r\n\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\nSent: Tuesday, October 28, 2025 5:28 PM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nCc: Brian Stufflebean <brian@mavrix.one>; Nathan Staron <Nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Sol-Ark Price\r\n\r\nHi Jarrett,\r\n\r\nI took the equipment spec sheet for the prismatic line and this is what it said:\r\n\r\nWith each 16 kWh Sol-Ark system using 16 prismatic 314Ah cells, and a prismatic line capable of handling approximately 95 cells per minute, the daily output for two 8-hour shifts can be calculated as follows:\r\n\r\nCells produced per day: 95 cells/min×60 min/hour×16 hours=91,200 cells\r\nModules produced per day: 91,200 cells/16 cell system=5,700 modules\r\nThis is the theoretical maximum, assuming assembly processes downstream (module, pack, and testing) keep up with cell processing, with no significant bottlenecks. This calculation is valid for the specified 16x 314Ah cell configuration per system. Actual output may be lower based on process specifics or technical constraints in the pack assembly area.\r\n\r\nThe numbers below I double checked with Kevin from what I gathered on AI as well.\r\n\r\n1) Pack/Module integration time: 1-3\r\n\r\n2)  Testing & Aging Cycle duration: Our machines do EOL (End of Line) testing.  For a full charge discharge cycle I would say 24 - 72hrs.  I think we can get away with doing 24hrs on select systems for random testing/QC.  Brian thinks we will need to do every unit for the first few hundred or so to get all the kinks out.\r\n\r\n3)Quantity & Timeline for production: 1GW in 365 days.  That is producing 171.23 units a day.\r\n\r\nBelow is the revised worksheet with prices for each component.  I switched the cell price to $60 as well.  I did not add labor to the worksheet below.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Tue, Oct 28, 2025 at 3:45 PM Jarrett Brownfield <jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>> wrote:\r\nThanks Jordan, do we know the estimated:\r\n\r\n1) Pack/Module integration time? (hours or minutes to assemble the BMS & additional components)\r\n\r\n2) Testing & Aging cycle duration (hours or minutes the module needs to be tested)\r\n\r\n3) Quantity & timeline for production deliver? Roughly speaking - this will help with confirming the labor rates\r\n\r\n\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>\r\n\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Tuesday, October 28, 2025 3:28 PM\r\nTo: Jarrett Brownfield <jarrett@lithiumbatterycompany.com<mailto:jarrett@lithiumbatterycompany.com>>\r\nCc: Brian Stufflebean <brian@mavrix.one>; Nathan Staron <Nathan@lithiumbatterycompany.com<mailto:Nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Sol-Ark Price\r\n\r\nHi Jarrett,\r\n\r\nPlease see attached Sol-Ark price.\r\n\r\nLet me know if you have any questions.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<http://lithiumbatterycompany.com>\r\n',0,0,0,0,0,0,'2025-10-28 22:19:43','2025-12-09 19:30:34','2025-12-09 19:30:34','2025-12-09 19:30:34',NULL,NULL,NULL),
(903,4,'<57520B35-9841-4A2B-ADBA-3C95997BD49F@lithiumbatterycompany.com>',NULL,NULL,'Re: Sol-Ark Price','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body dir=\"auto\">Hi J,<div><br></div><div>On the safe side let’s say 2-3 hours.&nbsp;</div><div><br id=\"lineBreakAtBeginningOfSignature\"><div dir=\"ltr\"><p style=\"margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Jordan G. Wroblewski</span></p><p style=\"margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Partner | President&nbsp;<br></span></p><p style=\"margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Lithium Battery Company</span></p><p style=\"margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Direct:&nbsp;<span dir=\"ltr\">(917) 266-5336</span><br></span></p><p style=\"margin: 0in;\"><u style=\"background-color: rgba(255, 255, 255, 0);\">jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"margin: 0px;\">@lithiumbatterycompany.com</a></u></p><p style=\"margin: 0in;\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\" style=\"caret-color: rgb(255, 255, 255); background-color: rgba(255, 255, 255, 0);\"><font color=\"#ffffff\">Lithium Battery Company</font></a></p><p style=\"margin: 0in;\"></p><p style=\"margin: 0in;\"></p></div><div dir=\"ltr\"><br><blockquote type=\"cite\">On Oct 28, 2025, at 6:19 PM, Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt; wrote:<br><br></blockquote></div><blockquote type=\"cite\"><div dir=\"ltr\">﻿\r\n\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n\r\n\r\n\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nThanks Jordan - this is helpful, just for clarification - what is the unit of measure for the&nbsp;\"1-3\" pack/module integration time? Is that 1-3 modules / hours / mins?<br>\r\n<br>\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" id=\"Signature\">\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"8\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWA6c3b1811-4752-0935-87b9-5c198fe816a3\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">Jarrett@</a>lithiumbatterycompany<a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"9\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWA210a918a-fb4d-c7df-bc18-c5ab8e6ad27c\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">.com</a></u></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"10\" data-auth=\"NotApplicable\" title=\"https://lithiumbatterycompany.com/\" class=\"OWAAutoLink\" id=\"OWAf783a8d8-d9e7-b3da-0274-6c268fddf1f8\" href=\"https://lithiumbatterycompany.com/\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<hr style=\"display: inline-block; width: 98%;\">\r\n<div id=\"divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b>&nbsp;Tuesday, October 28, 2025 5:28 PM<br>\r\n<b>To:</b>&nbsp;Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Cc:</b>&nbsp;Brian Stufflebean &lt;brian@mavrix.one&gt;; Nathan Staron &lt;Nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Sol-Ark Price</div>\r\n<div style=\"direction: ltr;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr;\">Hi Jarrett,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">I took the equipment spec sheet for the prismatic line and this is what it said:<br>\r\n<br>\r\n<i>With each 16 kWh Sol-Ark system using 16 prismatic 314Ah cells, and a prismatic line capable of handling approximately 95 cells per minute, the daily output for two 8-hour shifts can be calculated as follows:<br>\r\n<br>\r\nCells produced per day: 95 cells/min×60 min/hour×16 hours=91,200 cells&nbsp;<br>\r\nModules produced per day: 91,200 cells/16 cell system=5,700 modules<br>\r\nThis is the theoretical maximum, assuming assembly processes downstream (module, pack, and testing) keep up with cell processing, with no significant bottlenecks. This calculation is valid for the specified 16x 314Ah cell configuration per system. Actual output\r\n may be lower based on process specifics or technical constraints in the pack assembly area.</i></div>\r\n<div style=\"direction: ltr;\">&nbsp;</div>\r\n<div style=\"direction: ltr;\">The numbers below I double checked with Kevin from what I gathered on AI as well.&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\" class=\"elementToProof\">1) Pack/Module integration time: 1-3&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">2)&nbsp; Testing &amp; Aging Cycle duration: Our machines do EOL (End of Line) testing.&nbsp; For a full charge discharge cycle I would say 24 - 72hrs.&nbsp; I think we can get away with doing 24hrs on select systems for random testing/QC.&nbsp; Brian\r\n thinks we will need to do every unit for the first few hundred or so to get all the kinks out.&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">3)Quantity &amp; Timeline for production: 1GW in 365 days.&nbsp; That is producing 171.23 units a day.</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Below is the revised worksheet with prices for each component.&nbsp; I switched the&nbsp;cell price to $60 as well.&nbsp; I did not add labor to the worksheet below.&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; color: black;\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: black;\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: blue;\"><u>jordan<a style=\"color: blue; margin: 0px;\" class=\"OWAAutoLink\" id=\"OWA0f226602-a302-b270-1caa-6f28a491e193\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: rgb(5, 99, 193);\"><a style=\"margin-top: 0px; margin-bottom: 0px;\" data-auth=\"NotApplicable\" class=\"OWAAutoLink\" id=\"OWA35cb3acb-1baa-805e-3b98-40e26176312e\" href=\"http://lithiumbatterycompany.com\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div style=\"direction: ltr;\">On Tue, Oct 28, 2025 at 3:45 PM Jarrett Brownfield &lt;<a class=\"OWAAutoLink\" id=\"OWA2c0361ad-2b32-2a2e-e867-80b98daa921a\" href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin: 0px 0px 0px 0.8ex; padding-left: 1ex; border-left: 1px solid rgb(204, 204, 204);\">\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nThanks Jordan, do we know the estimated:<br>\r\n<br>\r\n1) Pack/Module integration time? (hours or minutes to assemble the BMS &amp; additional components)<br>\r\n<br>\r\n2) Testing &amp; Aging cycle duration (hours or minutes the module needs to be tested)<br>\r\n<br>\r\n3) Quantity &amp; timeline for production deliver? Roughly speaking - this will help with confirming the labor rates<br>\r\n<br>\r\n</div>\r\n<div id=\"x_m_-629442276135542824m_7521469498182349047Signature\">\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWA20da62dc-2439-bc17-cdc2-ca1970e6090f\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">Jarrett@</a>lithiumbatterycompany<a style=\"color: rgb(0, 36, 81); margin: 0px;\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWA20be5dea-3c2c-cd2e-a433-a388519fcc4e\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">.com</a></u></span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-auth=\"NotApplicable\" title=\"https://lithiumbatterycompany.com/\" class=\"OWAAutoLink\" id=\"OWA697807d9-b15b-1bd6-6fbc-24f292f50272\" href=\"https://lithiumbatterycompany.com/\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div id=\"x_m_-629442276135542824m_7521469498182349047divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a class=\"OWAAutoLink\" id=\"OWAace1f6a4-be6d-079b-1e4c-2a802c892d15\" href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Tuesday, October 28, 2025 3:28 PM<br>\r\n<b>To:</b>&nbsp;Jarrett Brownfield &lt;<a class=\"OWAAutoLink\" id=\"OWAd1a6b80a-27b5-1ef8-ed39-e7ba1651604e\" href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Brian Stufflebean &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a class=\"OWAAutoLink\" id=\"OWA2403f51e-43c8-42c4-7c24-9804eefda10c\" href=\"mailto:Nathan@lithiumbatterycompany.com\">Nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Sol-Ark Price</div>\r\n<div style=\"direction: ltr;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr;\">Hi Jarrett,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Please see attached Sol-Ark price.&nbsp;&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Let me know&nbsp;if you have any questions.&nbsp;</div>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; color: black;\"><br>\r\n</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; color: black;\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: black;\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: blue;\"><u>jordan<a style=\"color: blue; margin: 0px;\" class=\"OWAAutoLink\" id=\"OWA480af42d-69dd-1e21-9e49-09a1c4cad26f\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: rgb(5, 99, 193);\"><a style=\"margin-top: 0px; margin-bottom: 0px;\" data-auth=\"NotApplicable\" class=\"OWAAutoLink\" id=\"OWA4b53f4fc-ea16-56a9-3a48-04179c673ef0\" href=\"http://lithiumbatterycompany.com\">Lithium\r\n Battery Company</a></span></p>\r\n</blockquote>\r\n\r\n\r\n</div></blockquote></div></body></html>','Hi J,On the safe side let’s say 2-3 hours.&nbsp;Jordan G. WroblewskiPartner | President&nbsp;Lithium Battery CompanyDirect:&nbsp;(917) 266-5336jordan@lithiumbatterycompany.comLithium Battery CompanyOn Oct 28, 2025, at 6:19 PM, Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt; wrote:﻿\r\n\r\n\r\n\r\n\r\n\r\n\r\nThanks Jordan - this is helpful, just for clarification - what is the unit of measure for the&nbsp;\"1-3\" pack/module integration time? Is that 1-3 modules / hours / mins?\r\n\r\n\r\n\r\n\r\n\r\nJarrett Brownfield&nbsp;\r\n\r\nPartner\r\nI Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@lithiumbatterycompany.com\r\n\r\nLithium\r\n Battery Company\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFrom:&nbsp;Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;\r\nSent:&nbsp;Tuesday, October 28, 2025 5:28 PM\r\nTo:&nbsp;Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;\r\nCc:&nbsp;Brian Stufflebean &lt;brian@mavrix.one&gt;; Nathan Staron &lt;Nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;\r\nSubject:&nbsp;Re: Sol-Ark Price\r\n&nbsp;\r\n\r\nHi Jarrett,\r\n\r\n\r\nI took the equipment spec sheet for the prismatic line and this is what it said:\r\n\r\nWith each 16 kWh Sol-Ark system using 16 prismatic 314Ah cells, and a prismatic line capable of handling approximately 95 cells per minute, the daily output for two 8-hour shifts can be calculated as follows:\r\n\r\nCells produced per day: 95 cells/min×60 min/hour×16 hours=91,200 cells&nbsp;\r\nModules produced per day: 91,200 cells/16 cell system=5,700 modules\r\nThis is the theoretical maximum, assuming assembly processes downstream (module, pack, and testing) keep up with cell processing, with no significant bottlenecks. This calculation is valid for the specified 16x 314Ah cell configuration per system. Actual output\r\n may be lower based on process specifics or technical constraints in the pack assembly area.\r\n&nbsp;\r\nThe numbers below I double checked with Kevin from what I gathered on AI as well.&nbsp;\r\n\r\n\r\n1) Pack/Module integration time: 1-3&nbsp;\r\n\r\n\r\n2)&nbsp; Testing &amp; Aging Cycle duration: Our machines do EOL (End of Line) testing.&nbsp; For a full charge discharge cycle I would say 24 - 72hrs.&nbsp; I think we can get away with doing 24hrs on select systems for random testing/QC.&nbsp; Brian\r\n thinks we will need to do every unit for the first few hundred or so to get all the kinks out.&nbsp;\r\n\r\n\r\n3)Quantity &amp; Timeline for production: 1GW in 365 days.&nbsp; That is producing 171.23 units a day.\r\n\r\n\r\nBelow is the revised worksheet with prices for each component.&nbsp; I switched the&nbsp;cell price to $60 as well.&nbsp; I did not add labor to the worksheet below.&nbsp;\r\n\r\n\r\nJordan G. Wroblewski\r\nPartner | President&nbsp;\r\nLithium Battery Company\r\nDirect: (917) 266-5336\r\njordan@lithiumbatterycompany.com\r\nLithium\r\n Battery Company\r\n\r\n\r\n\r\n\r\nOn Tue, Oct 28, 2025 at 3:45 PM Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt; wrote:\r\n\r\n\r\nThanks Jordan, do we know the estimated:\r\n\r\n1) Pack/Module integration time? (hours or minutes to assemble the BMS &amp; additional components)\r\n\r\n2) Testing &amp; Aging cycle duration (hours or minutes the module needs to be tested)\r\n\r\n3) Quantity &amp; timeline for production deliver? Roughly speaking - this will help with confirming the labor rates\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nJarrett Brownfield&nbsp;\r\n\r\nPartner\r\nI Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@lithiumbatterycompany.com\r\n\r\nLithium\r\n Battery Company\r\n\r\n\r\n\r\n\r\nFrom:&nbsp;Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;\r\nSent:&nbsp;Tuesday, October 28, 2025 3:28 PM\r\nTo:&nbsp;Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;\r\nCc:&nbsp;Brian Stufflebean &lt;brian@mavrix.one&gt;; Nathan Staron &lt;Nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;\r\nSubject:&nbsp;Sol-Ark Price\r\n&nbsp;\r\n\r\nHi Jarrett,\r\n\r\n\r\nPlease see attached Sol-Ark price.&nbsp;&nbsp;\r\n\r\n\r\nLet me know&nbsp;if you have any questions.&nbsp;\r\n\r\n\r\nJordan G. Wroblewski\r\nPartner | President&nbsp;\r\nLithium Battery Company\r\nDirect: (917) 266-5336\r\njordan@lithiumbatterycompany.com\r\nLithium\r\n Battery Company\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-10-28 22:21:35','2025-12-09 19:30:34','2025-12-09 19:30:34','2025-12-09 19:30:34',NULL,NULL,NULL),
(904,4,'<41312347-8A23-479F-B3A9-B3569AA04F68@mavrix.one>',NULL,NULL,'Sales Pro forma Forecast','Brian@mavrix.one','Brian Stufflebean','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=us-ascii\"></head><body style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"><div><span></span><meta charset=\"UTF-8\"><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br class=\"Apple-interchange-newline\"><br class=\"Apple-interchange-newline\"><a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a href=\"https://mavrix1.com\">https://mavrix1.com/</a></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family: Helvetica; font-style: normal; font-weight: 400; font-size: 12px;\">&nbsp;This&nbsp;communication&nbsp;is confidential&nbsp;and&nbsp;intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, or&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any such&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this communication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the&nbsp;message to inform him or her of the&nbsp;error.<br><br></span></div>\r\n</div>\r\n\r\n\r\n<br></body></html>','\r\n￼\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n￼\r\n\r\n\r\nbrian@mavrix.one <mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-10-29 00:29:28','2025-12-09 19:30:34','2025-12-09 19:30:34','2025-12-09 19:30:34',NULL,NULL,NULL),
(905,4,'<34B6CCE4-CEAC-45B0-AC82-50ECE425C710@mavrix.one>',NULL,NULL,'Latest Version','Brian@mavrix.one','Brian Stufflebean','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=us-ascii\"></head><body style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"><div><span></span><meta charset=\"UTF-8\"><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br class=\"Apple-interchange-newline\"><br class=\"Apple-interchange-newline\"><a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a href=\"https://mavrix1.com\">https://mavrix1.com/</a></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family: Helvetica; font-style: normal; font-weight: 400; font-size: 12px;\">&nbsp;This&nbsp;communication&nbsp;is confidential&nbsp;and&nbsp;intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, or&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any such&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this communication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the&nbsp;message to inform him or her of the&nbsp;error.<br><br></span></div>\r\n</div>\r\n\r\n<br></body></html>','\r\n￼\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n￼\r\n\r\n\r\nbrian@mavrix.one <mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-10-29 01:12:14','2025-12-09 19:30:35','2025-12-09 19:30:35','2025-12-09 19:30:35',NULL,NULL,NULL),
(906,4,'<0100019a30117a82-e345225d-1d8e-4a4b-ad90-c5466798f479-000000@email.amazonses.com>',NULL,NULL,'Gifting season is here','no-reply@business.amazon.com','Amazon Business','<!doctype html>\r\n<html lang=\"en-US\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\">\r\n <head>\r\n  <title>Gifting season is here</title><!--[if !mso]><!-- -->\r\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><!--<![endif]-->\r\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\r\n  <style type=\"text/css\">#outlook a { padding:0; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block; }</style><!--[if mso]>                    <xml>                      <o:OfficeDocumentSettings xmlns:o=\"urn:schemas-microsoft-com:office:office\">                    <o:AllowPNG/>                          <o:PixelsPerInch>96</o:PixelsPerInch>                      </o:OfficeDocumentSettings>                   <w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\">               <w:DontUseAdvancedTypographyReadingMail/>             </w:WordDocument>                  </xml>                        <style type=\"text/css\">             table { border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt; }             .mj-outlook-group-fix { width:100% !important; }           </style>                  <![endif]--><!--[if !mso]><!-->\r\n  <link href=\"https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <link href=\"https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <style type=\"text/css\">@import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);</style><!--<![endif]-->\r\n  <style type=\"text/css\">@media only screen and (min-width:641px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }</style>\r\n  <style type=\"text/css\">.movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; } .links-232F3E-underline-bold a { color: #232F3E; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .mso-button-dark-mode a {background: transparent !important;} .links-161D26-underline a { color: #161D26; text-decoration: underline; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:641px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-165px { max-width: 165px !important} .padding-32px-40px-20px-40px { padding: 32px 40px 20px 40px !important} .font-size-36px { font-size: 36px !important} .max-width-640px { max-width: 640px !important} .padding-0px-40px-0px-40px { padding: 0px 40px 0px 40px !important} .padding-24px-40px-0px-40px { padding: 24px 40px 0px 40px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }</style>\r\n  <style type=\"text/css\">ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 641px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}</style><!--[if mso]>             <style>                 .hide-on-mobile {display:block !important}             </style>         <![endif]--><!--[if mso]>                 <style>                              .mso-font-size-36px { font-size: 36px !important; }                 </style>             <![endif]-->\r\n  <style>[class~=\"x_body\"] { width: 99.9% }</style>\r\n </head>\r\n <body style=\"word-spacing:normal;background-color:#FFFFFF;\" class=\"body\" id=\"body\">\r\n  <div>\r\n   <p><img alt=\"\" src=\"http://elinks.business.amazon.com/CI0/0100019a30117a82-e345225d-1d8e-4a4b-ad90-c5466798f479-000000/JV1i6VRBrPjLUueBiMACUPyXbYQsfVtLB3bqx-hXCF0=429\" style=\"display: none; width: 1px; height: 1px;\">\r\n</p>\r\n  </div><!--[if !mso 9]><!-->\r\n  <div id=\"emailPreHeader\" style=\"display: none;\">\r\n   Shop gifts for your employees and clients\r\n  </div>\r\n  <div style=\"display: none;\">\r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  </div><!--<![endif]-->\r\n  <div style=\"background-color:#FFFFFF;background-position:center center;background-size:auto;background-repeat:repeat;\" id=\"main\">\r\n   <!--[if mso]>\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><![endif]--><!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:16px 16px 14px 16px;text-align:center;vertical-align:top;mso-padding-alt:14px 0px 14px 40px;\" class=\"block-grid padding-14px-0px-14px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:600px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n             <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:middle;width:300px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"padding-0px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 0px 0px;word-break:break-word;mso-padding-alt:0px 0px 0px 0px;text-align:left;\">\r\n                  <div style=\"margin:0 auto 0 0;\" class=\"max-width-165px\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%3Fref_=b2b_sow_e_events_ABBGG25_251029/1/0100019a30117a82-e345225d-1d8e-4a4b-ad90-c5466798f479-000000/oGsYNd9cAod6YADeWdzni8bw6KibQwiHyz-tYx4pXlA=429\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business\" height=\"auto\" width=\"165\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-2color2x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:middle;width:300px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                  <div style=\"line-height:0px;height:0px;mso-line-height-alt:0px;\">\r\n                   &nbsp;\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:32px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:32px 40px 20px 40px;\" class=\"block-grid padding-32px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                  <div class=\"links-232F3E-underline-bold\">\r\n                   <div style=\"font-family:\'Ember Modern Display\', Arial, sans-serif;font-size:28px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:2.688em;color:#161D26;\" class=\"mso-font-size-36px font-size-36px\">\r\n                    <p style=\"margin: 0;\">Explore gifts by category</p>\r\n                   </div>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\">\r\n                  <div style=\"margin:0 auto;\" class=\"max-width-640px\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_ABBGG25_251029%26return_to=%2Fl%2F211908296011/1/0100019a30117a82-e345225d-1d8e-4a4b-ad90-c5466798f479-000000/Pr8Wvzy2graJLoSfF6s51OtXKmutDv2HF7eo0po7n5A=429\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Discover the Business Gift Guide\" height=\"auto\" width=\"640\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/OnsiteEvents/Tier1/BGG25/Email/US-EN_AB_BGG25_P1_107_Email_Wide_1280x460.jpg\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;mso-padding-alt:0px 0px 0px 0px;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                 <div style=\"line-height:12px;height:12px;mso-line-height-alt:12px;\">\r\n                  &nbsp;\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:0px 40px 0px 40px;\" class=\"block-grid padding-0px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-007185-bold\">\r\n                  <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:normal;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.375em;color:#222D3A;\">\r\n                   <p style=\"margin: 0 0 0px 0;\">The Amazon Business Gift Guide makes it easy to browse curated gifts across every category. From Electronics to Games &amp; Entertainment, Wellness &amp; Relaxation to Sports &amp; Outdoors, we’ve got something for every client and employee.</p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:24px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:24px 40px 0px 40px;\" class=\"block-grid padding-24px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td valign=\"middle\" class=\"button-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div>\r\n                  <!--[if mso]>\r\n<table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\">\r\n<tr>\r\n<td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_ABBGG25_251029%26return_to=%2Fl%2F211908296011/1/0100019a30117a82-e345225d-1d8e-4a4b-ad90-c5466798f479-000000/Pr8Wvzy2graJLoSfF6s51OtXKmutDv2HF7eo0po7n5A=429\" fillcolor=\"#FFD814\" arcsize=\"58%\" style=\"v-text-anchor:middle;width:90pt;height:32.25pt;\" stroke=\"f\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_sow_e_events_ABBGG25_251029%26return_to=%2Fl%2F211908296011/2/0100019a30117a82-e345225d-1d8e-4a4b-ad90-c5466798f479-000000/rh4O4s3WcjzEBFaMNKcoF05nmKWMzvX9ysGo4xV_DYA=429\" style=\"display: inline-block; background: #FFD814; color: #161D26; font-family: \'Amber Ember\', Arial, sans-serif; font-size: 16px; font-weight: normal; line-height: 1.2; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 12px 24px 12px 24px; mso-padding-alt: 0px; border-radius: 25px; mso-border-alt: none; box-sizing: border-box;\" target=\"_blank\" width=\"120\">Shop now </a><!--[if mso]></center></a:textbox></a:roundrect>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;mso-padding-alt:0px 0px 0px 0px;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                 <div style=\"line-height:30px;height:30px;mso-line-height-alt:30px;\">\r\n                  &nbsp;\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F2477595a624a30c4%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=a9b0d3a3-100f-48cf-b3b1-9cd369c434df%26mi_campaignId=1321579791%26mi_data_set=BGG%26mi_deviceType=desktop%26mi_item_index=1%26mi_marketplaceId=ATVPDKIKX0DER%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26mi_messageId=a9b0d3a3-100f-48cf-b3b1-9cd369c434df%26ref_=b2b_sow_e_events_ABBGG25_251029%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252Fe97febb39097b87b%252Furl%26url_sig=GOm8nRuEDeEsjm/1/0100019a30117a82-e345225d-1d8e-4a4b-ad90-c5466798f479-000000/g26YNOd6ptB0mTp9JbdZYKQoO5xUlhoKuz6t--RQRfs=429\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/e97febb39097b87b.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=a9b0d3a3-100f-48cf-b3b1-9cd369c434df&amp;mi_campaignId=1321579791&amp;mi_data_set=BGG&amp;mi_deviceType=desktop&amp;mi_item_index=1&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;mi_messageId=a9b0d3a3-100f-48cf-b3b1-9cd369c434df&amp;ref_=b2b_sow_e_events_ABBGG25_251029\"></a>\r\n                  </div></td>\r\n                </tr>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F2477595a624a30c4%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=a9b0d3a3-100f-48cf-b3b1-9cd369c434df%26mi_campaignId=1321579791%26mi_data_set=BGG%26mi_deviceType=desktop%26mi_item_index=2%26mi_marketplaceId=ATVPDKIKX0DER%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26mi_messageId=a9b0d3a3-100f-48cf-b3b1-9cd369c434df%26ref_=b2b_sow_e_events_ABBGG25_251029%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252Fe97febb39097b87b%252Furl%26url_sig=GOm8nRuEDeEsjm/1/0100019a30117a82-e345225d-1d8e-4a4b-ad90-c5466798f479-000000/UZEnGlngs2UU49oc3vgDW2kYLHNcbPnoEmJcltDh2IE=429\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/e97febb39097b87b.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=a9b0d3a3-100f-48cf-b3b1-9cd369c434df&amp;mi_campaignId=1321579791&amp;mi_data_set=BGG&amp;mi_deviceType=desktop&amp;mi_item_index=2&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;mi_messageId=a9b0d3a3-100f-48cf-b3b1-9cd369c434df&amp;ref_=b2b_sow_e_events_ABBGG25_251029\"></a>\r\n                  </div></td>\r\n                </tr>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F2477595a624a30c4%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=a9b0d3a3-100f-48cf-b3b1-9cd369c434df%26mi_campaignId=1321579791%26mi_data_set=BGG%26mi_deviceType=desktop%26mi_item_index=3%26mi_marketplaceId=ATVPDKIKX0DER%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26mi_messageId=a9b0d3a3-100f-48cf-b3b1-9cd369c434df%26ref_=b2b_sow_e_events_ABBGG25_251029%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252Fe97febb39097b87b%252Furl%26url_sig=GOm8nRuEDeEsjm/1/0100019a30117a82-e345225d-1d8e-4a4b-ad90-c5466798f479-000000/611TCZx6ltF2rKvSuoNWUgIDjnxHkJvYnoKwSWJ6OSE=429\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/e97febb39097b87b.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=a9b0d3a3-100f-48cf-b3b1-9cd369c434df&amp;mi_campaignId=1321579791&amp;mi_data_set=BGG&amp;mi_deviceType=desktop&amp;mi_item_index=3&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;mi_messageId=a9b0d3a3-100f-48cf-b3b1-9cd369c434df&amp;ref_=b2b_sow_e_events_ABBGG25_251029\"></a>\r\n                  </div></td>\r\n                </tr>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F2477595a624a30c4%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=a9b0d3a3-100f-48cf-b3b1-9cd369c434df%26mi_campaignId=1321579791%26mi_data_set=BGG%26mi_deviceType=desktop%26mi_item_index=4%26mi_marketplaceId=ATVPDKIKX0DER%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26mi_messageId=a9b0d3a3-100f-48cf-b3b1-9cd369c434df%26ref_=b2b_sow_e_events_ABBGG25_251029%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252Fe97febb39097b87b%252Furl%26url_sig=GOm8nRuEDeEsjm/1/0100019a30117a82-e345225d-1d8e-4a4b-ad90-c5466798f479-000000/kXPo4LctWsqGgcqnCJa1p6Frk5gzfuoPC_BlTIIx5Qg=429\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/e97febb39097b87b.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=a9b0d3a3-100f-48cf-b3b1-9cd369c434df&amp;mi_campaignId=1321579791&amp;mi_data_set=BGG&amp;mi_deviceType=desktop&amp;mi_item_index=4&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;mi_messageId=a9b0d3a3-100f-48cf-b3b1-9cd369c434df&amp;ref_=b2b_sow_e_events_ABBGG25_251029\"></a>\r\n                  </div></td>\r\n                </tr>\r\n                <tr>\r\n                 <td valign=\"top\" class=\"hide-on-mobile\" style=\"display: none; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                  <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F2477595a624a30c4%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=a9b0d3a3-100f-48cf-b3b1-9cd369c434df%26mi_campaignId=1321579791%26mi_data_set=BGG%26mi_deviceType=desktop%26mi_item_index=5%26mi_marketplaceId=ATVPDKIKX0DER%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26mi_messageId=a9b0d3a3-100f-48cf-b3b1-9cd369c434df%26ref_=b2b_sow_e_events_ABBGG25_251029%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252Fe97febb39097b87b%252Furl%26url_sig=GOm8nRuEDeEsjm/1/0100019a30117a82-e345225d-1d8e-4a4b-ad90-c5466798f479-000000/eVcHUESVDMhfeC4BTC8R8E6DenBFdeCyqeVn8aguWsI=429\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/e97febb39097b87b.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=a9b0d3a3-100f-48cf-b3b1-9cd369c434df&amp;mi_campaignId=1321579791&amp;mi_data_set=BGG&amp;mi_deviceType=desktop&amp;mi_item_index=5&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;mi_messageId=a9b0d3a3-100f-48cf-b3b1-9cd369c434df&amp;ref_=b2b_sow_e_events_ABBGG25_251029\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <!--[if !mso]><!-->\r\n              <tbody>\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F2477595a624a30c4%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=a9b0d3a3-100f-48cf-b3b1-9cd369c434df%26mi_campaignId=1321579791%26mi_data_set=BGG%26mi_deviceType=mobile%26mi_item_index=1%26mi_marketplaceId=ATVPDKIKX0DER%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26mi_messageId=a9b0d3a3-100f-48cf-b3b1-9cd369c434df%26ref_=b2b_sow_e_events_ABBGG25_251029%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252Fe97febb39097b87b%252Furl%26url_sig=GOm8nRuEDeEsjm/1/0100019a30117a82-e345225d-1d8e-4a4b-ad90-c5466798f479-000000/BHJ_EVFK72Vm770QgDPP9joOMMPKY-e5cjPbEE7YZv4=429\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/e97febb39097b87b.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=a9b0d3a3-100f-48cf-b3b1-9cd369c434df&amp;mi_campaignId=1321579791&amp;mi_data_set=BGG&amp;mi_deviceType=mobile&amp;mi_item_index=1&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;mi_messageId=a9b0d3a3-100f-48cf-b3b1-9cd369c434df&amp;ref_=b2b_sow_e_events_ABBGG25_251029\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F2477595a624a30c4%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=a9b0d3a3-100f-48cf-b3b1-9cd369c434df%26mi_campaignId=1321579791%26mi_data_set=BGG%26mi_deviceType=mobile%26mi_item_index=2%26mi_marketplaceId=ATVPDKIKX0DER%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26mi_messageId=a9b0d3a3-100f-48cf-b3b1-9cd369c434df%26ref_=b2b_sow_e_events_ABBGG25_251029%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252Fe97febb39097b87b%252Furl%26url_sig=GOm8nRuEDeEsjm/1/0100019a30117a82-e345225d-1d8e-4a4b-ad90-c5466798f479-000000/LpjNguYZqlTtKV1jkR5CoPDb3oSIAFmL-3VO6IGiSmY=429\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/e97febb39097b87b.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=a9b0d3a3-100f-48cf-b3b1-9cd369c434df&amp;mi_campaignId=1321579791&amp;mi_data_set=BGG&amp;mi_deviceType=mobile&amp;mi_item_index=2&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;mi_messageId=a9b0d3a3-100f-48cf-b3b1-9cd369c434df&amp;ref_=b2b_sow_e_events_ABBGG25_251029\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F2477595a624a30c4%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=a9b0d3a3-100f-48cf-b3b1-9cd369c434df%26mi_campaignId=1321579791%26mi_data_set=BGG%26mi_deviceType=mobile%26mi_item_index=3%26mi_marketplaceId=ATVPDKIKX0DER%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26mi_messageId=a9b0d3a3-100f-48cf-b3b1-9cd369c434df%26ref_=b2b_sow_e_events_ABBGG25_251029%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252Fe97febb39097b87b%252Furl%26url_sig=GOm8nRuEDeEsjm/1/0100019a30117a82-e345225d-1d8e-4a4b-ad90-c5466798f479-000000/TX0ziDl-lALR1NQEwOKvvplJa-r9xPe5RnN9Zdisigo=429\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/e97febb39097b87b.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=a9b0d3a3-100f-48cf-b3b1-9cd369c434df&amp;mi_campaignId=1321579791&amp;mi_data_set=BGG&amp;mi_deviceType=mobile&amp;mi_item_index=3&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;mi_messageId=a9b0d3a3-100f-48cf-b3b1-9cd369c434df&amp;ref_=b2b_sow_e_events_ABBGG25_251029\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F2477595a624a30c4%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=a9b0d3a3-100f-48cf-b3b1-9cd369c434df%26mi_campaignId=1321579791%26mi_data_set=BGG%26mi_deviceType=mobile%26mi_item_index=4%26mi_marketplaceId=ATVPDKIKX0DER%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26mi_messageId=a9b0d3a3-100f-48cf-b3b1-9cd369c434df%26ref_=b2b_sow_e_events_ABBGG25_251029%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252Fe97febb39097b87b%252Furl%26url_sig=GOm8nRuEDeEsjm/1/0100019a30117a82-e345225d-1d8e-4a4b-ad90-c5466798f479-000000/XARVuxUFgO_b5ullQifNVBKAJhAFl34O_mmbEXIsGRM=429\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/e97febb39097b87b.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=a9b0d3a3-100f-48cf-b3b1-9cd369c434df&amp;mi_campaignId=1321579791&amp;mi_data_set=BGG&amp;mi_deviceType=mobile&amp;mi_item_index=4&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;mi_messageId=a9b0d3a3-100f-48cf-b3b1-9cd369c434df&amp;ref_=b2b_sow_e_events_ABBGG25_251029\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]--><!--[if !mso]><!-->\r\n               <tr>\r\n                <td valign=\"top\" class=\"hide-on-desktop\" style=\"display: block; font-size: 0px; padding: 0px 0px 0px 0px; word-break: break-word; text-align: center;\" align=\"center\">\r\n                 <div style=\"width:100%;max-width:100%;border-radius:0px;box-sizing:border-box;margin:0 auto;\" class=\"movable-ink-embed-code\">\r\n                  <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fmi.amazon.com%2Fp%2Fcp%2F2477595a624a30c4%2Fc%3Fmi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q%26mi_ecmp=a9b0d3a3-100f-48cf-b3b1-9cd369c434df%26mi_campaignId=1321579791%26mi_data_set=BGG%26mi_deviceType=mobile%26mi_item_index=5%26mi_marketplaceId=ATVPDKIKX0DER%26mi_preferredCurrency=USD%26mi_preferredLanguage=en_US%26mi_messageId=a9b0d3a3-100f-48cf-b3b1-9cd369c434df%26ref_=b2b_sow_e_events_ABBGG25_251029%26url=https%253A%252F%252Fmi.amazon.com%252Fp%252Frp%252Fe97febb39097b87b%252Furl%26url_sig=GOm8nRuEDeEsjm/1/0100019a30117a82-e345225d-1d8e-4a4b-ad90-c5466798f479-000000/pCuLKtfvXCouloX3JuNa6zu3f1aOCYnTxGzwO5NY138=429\" style=\"display: block\"><img alt=\"Display images to show real-time content\" style=\"border: 0; display: block;\" border=\"0\" src=\"https://mi.amazon.com/p/rp/e97febb39097b87b.png?mi_u=amzn1.amazonbusiness.LIUE2GPJIGQ4HH4METIDO6RWOZ4WU5DYNRUGEZ3XPJUHQZJTGNYTTO2QGY7DSPLBZKF4VCJZSFFRXPGA2CVGU4UBWZASZX2IRTJBU4Q&amp;mi_ecmp=a9b0d3a3-100f-48cf-b3b1-9cd369c434df&amp;mi_campaignId=1321579791&amp;mi_data_set=BGG&amp;mi_deviceType=mobile&amp;mi_item_index=5&amp;mi_marketplaceId=ATVPDKIKX0DER&amp;mi_preferredCurrency=USD&amp;mi_preferredLanguage=en_US&amp;mi_messageId=a9b0d3a3-100f-48cf-b3b1-9cd369c434df&amp;ref_=b2b_sow_e_events_ABBGG25_251029\"></a>\r\n                 </div></td>\r\n               </tr><!--<![endif]-->\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F7F7F7;background-color:#F7F7F7;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F7F7F7;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><!--[if !mso]><!-- --><p style=\"border-top:solid 1px #D5D9D9;font-size:1px;margin:0 auto;width:100%;text-align:center;\"></p><!--<![endif]--><!--Divider--><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-top:solid 1px #D5D9D9;font-size:1px;margin:0 auto;width:640px;text-align:center;\" role=\"presentation\" width=\"640px\" >\r\n<tr>\r\n<td style=\"height:0;line-height:0;\"> &nbsp; </td>\r\n</tr>\r\n</table><![endif]--></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F5F3EF;background-color:#F5F3EF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F5F3EF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-161D26-underline\">\r\n                  <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#222D3A;\">\r\n                   <p style=\"margin: 0;\">Please note that product prices and availability are subject to change. Prices and availability were accurate at the time this email was sent; however, they may differ from those you see when you visit Amazon.com.</p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#161D26;background-color:#161D26;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#161D26;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\">\r\n            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n             <tbody>\r\n              <tr>\r\n               <td style=\"line-height:0;font-size:0;direction:rtl;\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:252px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-45 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-align-right social-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\"><!--[if mso | IE]>\r\n<table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" >\r\n<tr>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.facebook.com%2FAmazonBusiness%2F%3Fref_=b2b_sow_e_events_ABBGG25_251029/1/0100019a30117a82-e345225d-1d8e-4a4b-ad90-c5466798f479-000000/0Dj-Gs-S0f-rmj6GGH0gO7Wb4sUBfWHR6Uz8VVLI_Og=429\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Facebook\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Facebook-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Ftwitter.com%2FAmazonBusiness%3Fref_=b2b_sow_e_events_ABBGG25_251029/1/0100019a30117a82-e345225d-1d8e-4a4b-ad90-c5466798f479-000000/nl9pEEbK7loVvD3Ai8QPbBlT0XEBJf3IGeFBiqtf6J4=429\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Twitter\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Twitter-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.linkedin.com%2Fcompany%2Famazon-business%2F%3Fref_=b2b_sow_e_events_ABBGG25_251029/1/0100019a30117a82-e345225d-1d8e-4a4b-ad90-c5466798f479-000000/uOBRNmvs790tgvUw5W0RDZMUx6qImIlsUHbtMDU7B5E=429\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Linkedin\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-LinkedIn-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"padding-10px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 20px 0px;word-break:break-word;mso-padding-alt:10px 0px 0px 0px;text-align:right;\">\r\n                     <div style=\"margin:0 auto 0 0;max-width:163px;\" class=\"margin-0-0-0-auto\">\r\n                      <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2F%3Fref_=b2b_sow_e_events_ABBGG25_251029%26ref_=b2b_sow_e_events_ABBGG25_251029/1/0100019a30117a82-e345225d-1d8e-4a4b-ad90-c5466798f479-000000/eBq091cT4dfmH-qyfkDInykrQWIGwbqDisCG9bbsPbU=429\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business logo\" height=\"auto\" width=\"163\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-white2x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:308px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-55 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Fen%2Fcontact-us%3Fref_=b2b_sow_e_events_ABBGG25_251029/1/0100019a30117a82-e345225d-1d8e-4a4b-ad90-c5466798f479-000000/eR1H8445TCiHAKjSdK9achbN4EmQq6ziqS04zXDPqmU=429\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">Contact us</a> | <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fab%2Fmanage%2Faccount%2F%3Fref_=b2b_sow_e_events_ABBGG25_251029/1/0100019a30117a82-e345225d-1d8e-4a4b-ad90-c5466798f479-000000/y-Zn4QEH6Xsj4WRmJGTQqoXwkZ1h9a_9gotAnj7vo-Y=429\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">Manage account</a></p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\">If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Femail-preferences%2Fep%2FDCu228PZ7zd9mJ3i*OGcvOHmfBoExVDlc7jKy7Ma7Ki0%2BHvdR2Q3Pvh6Yw==%2F1321579791%2FkcKE1gj20UgwX2wINwA*aO4yALHxYTjpvY%2B6lHX76Jonvq5X*3OJR6zXRu6XESZ2Ndzensg*AUhd6dJwPGdoKZeD2FTlvUWomwlo7i1HUCzVgcSaSxPqF2kSMool1eMJd4%2BRvbsIJiydwGdio79qiOLhMEkyVZsG%2B6Ke9G77QLMVXt0lbqIlV2qhfNAo*vMn4VKvrU1lPqc3HWdPm1XqORrnJek%2BsXVNYInVfSOzq5mQWuvtL2Vdd60vpANzRbv7*K4fznfB90E%2BFETgWyK1WBGYPZn2S9Wvvu9B9jdkK93mQGIOfhlYkUItz0yDqok%2BJUYtCsCEF6ruaxHlamMbxtt3JeyWUk41*npFAWhSh9mU6*yFERU=%2F*K0X4IlHUqkfVvwi1ARexUbhFB491tp9BpmlUlrWFzfd%3Fref_=b2b_sow_e_events_ABBGG25_251029/1/0100019a30117a82-e345225d-1d8e-4a4b-ad90-c5466798f479-000000/JkeltueHY37PiqMvk9-lt5E1L_Ct9PkNEJ50oKsX1Uw=429\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">email preferences</a>.</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 30px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\">© 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210</p>\r\n                       <p style=\"margin: 0;\">&nbsp;</p>\r\n                       <p style=\"margin: 0;\">Reference: 1321579791</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n              </tr>\r\n             </tbody>\r\n            </table></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\" style=\"mso-padding-left-alt:0;\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:640px;\">\r\n<tr>\r\n<td bgcolor=\"#232F3E\"><v:rect style=\"width:640px;height:0px;\" xmlns:v=\"urn:schemas-microsoft-com:vml\" fill=\"true\" stroke=\"false\"><v:fill size=\"100%,100%\" origin=\"0,0\" position=\"0,0\" aspect=\"atmost\" src=\"%7B%7BUnsubscribe%7D%7D\" color=\"#232F3E\" type=\"frame\" /><v:textbox style=\"mso-fit-shape-to-text:true\" inset=\"0,0,0,0\"><![endif]-->\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;height:0px;\"><![endif]-->\r\n        <div style=\"background:#232F3E;background-color:#232F3E;margin:0 auto;max-width:640px;\">\r\n         <div style=\"line-height:0;font-size:0;\">\r\n          <table align=\"center\" background=\"%7B%7BUnsubscribe%7D%7D\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:center center / contain no-repeat;background-image:url(\'%7B%7BUnsubscribe%7D%7D\');background-position:center center;background-size:contain;background-repeat:no-repeat;width:100%;\">\r\n           <tbody>\r\n            <tr>\r\n             <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;mso-padding-left-alt:0;mso-padding-right-alt:0;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n              <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n               <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                <tbody>\r\n                 <tr>\r\n                  <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;mso-padding-left-alt:0;mso-padding-right-alt:0;\">\r\n                   <div style=\"line-height:0px;height:0px;mso-line-height-alt:0px;\">\r\n                    &nbsp;\r\n                   </div></td>\r\n                 </tr>\r\n                </tbody>\r\n               </table>\r\n              </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n            </tr>\r\n           </tbody>\r\n          </table>\r\n         </div>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div><!--[if mso | IE]><p style=\"mso-line-height-rule:exactly;margin:0;mso-hide:all;font-size:0;line-height:0;\"><o:p xmlns:o=\"urn:schemas-microsoft-com:office:office\">&nbsp;</o:p></p></v:textbox></v:rect>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--><!--[if mso]>\r\n</table><![endif]-->\r\n  </div>\r\n </body>\r\n</html>\r\n','\r\n\r\n \r\n  Gifting season is here\r\n  \r\n  \r\n  \r\n  #outlook a { padding:0; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block; }\r\n  \r\n  \r\n  @import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);\r\n  @media only screen and (min-width:641px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }\r\n  .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                 .movable-ink-embed-code a img, .movable-ink-embed-code img {           max-width: 100%;         }         .image-stretched {             width: 100%;         }         .movable-ink-embed-code video {           height: auto!important;         }                body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; } .links-232F3E-underline-bold a { color: #232F3E; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .mso-button-dark-mode a {background: transparent !important;} .links-161D26-underline a { color: #161D26; text-decoration: underline; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:641px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-165px { max-width: 165px !important} .padding-32px-40px-20px-40px { padding: 32px 40px 20px 40px !important} .font-size-36px { font-size: 36px !important} .max-width-640px { max-width: 640px !important} .padding-0px-40px-0px-40px { padding: 0px 40px 0px 40px !important} .padding-24px-40px-0px-40px { padding: 24px 40px 0px 40px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }\r\n  ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 641px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}\r\n  [class~=\"x_body\"] { width: 99.9% }\r\n \r\n \r\n  \r\n   \r\n\r\n  \r\n  \r\n   Shop gifts for your employees and clients\r\n  \r\n  \r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  \r\n  \r\n   \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   &nbsp;\r\n                  \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    Explore gifts by category\r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  &nbsp;\r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   The Amazon Business Gift Guide makes it easy to browse curated gifts across every category. From Electronics to Games &amp; Entertainment, Wellness &amp; Relaxation to Sports &amp; Outdoors, we’ve got something for every client and employee.\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                   Shop now \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  &nbsp;\r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n               \r\n                \r\n                 \r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   Please note that product prices and availability are subject to change. Prices and availability were accurate at the time this email was sent; however, they may differ from those you see when you visit Amazon.com.\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       Contact us | Manage account\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your email preferences.\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       © 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210\r\n                       &nbsp;\r\n                       Reference: 1321579791\r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    &nbsp;\r\n                   \r\n                 \r\n                \r\n               \r\n              \r\n            \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n   \r\n  \r\n \r\n\r\n',0,0,0,0,0,0,'2025-10-29 13:04:03','2025-12-09 19:30:35','2025-12-09 19:30:35','2025-12-09 19:30:35',NULL,NULL,NULL),
(907,4,'<7315C10B-7F97-4774-B89E-106A91D0F358@lithiumbatterycompany.com>',NULL,NULL,'Re: Sol-Ark Price','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body dir=\"auto\">Hi Jarrett,<div><br></div><div>This just in from China on that build.&nbsp;</div><div><br></div><div><span style=\"-webkit-text-size-adjust: auto; background-color: rgb(255, 255, 255);\">Our factory can assembly and produce 150 pcs of batteries of 16KWH per day if all materials are ready, and after the assembly, will take around 6.5 hours for aging and communication test for the battery.</span></div><div><span style=\"-webkit-text-size-adjust: auto; background-color: rgb(255, 255, 255);\"><br></span></div><div><span style=\"-webkit-text-size-adjust: auto; background-color: rgb(255, 255, 255);\">Let me know if you have any questions.&nbsp;</span></div><div><span style=\"-webkit-text-size-adjust: auto; background-color: rgb(255, 255, 255);\"><br></span></div><div><span style=\"-webkit-text-size-adjust: auto; background-color: rgb(255, 255, 255);\"><br></span></div><div><div dir=\"ltr\"><p style=\"margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Jordan G. Wroblewski</span></p><p style=\"margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Partner | President&nbsp;<br></span></p><p style=\"margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Lithium Battery Company</span></p><p style=\"margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Direct:&nbsp;<span dir=\"ltr\">(917) 266-5336</span><br></span></p><p style=\"margin: 0in;\"><u style=\"background-color: rgba(255, 255, 255, 0);\">jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"margin: 0px;\">@lithiumbatterycompany.com</a></u></p><p style=\"margin: 0in;\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\" style=\"caret-color: rgb(255, 255, 255); background-color: rgba(255, 255, 255, 0);\"><font color=\"#ffffff\">Lithium Battery Company</font></a></p><p style=\"margin: 0in;\"></p><p style=\"margin: 0in;\"></p></div><div dir=\"ltr\"><br><blockquote type=\"cite\">On Oct 28, 2025, at 6:21 PM, Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt; wrote:<br><br></blockquote></div><blockquote type=\"cite\"><div dir=\"ltr\">﻿<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\">Hi J,<div><br></div><div>On the safe side let’s say 2-3 hours.&nbsp;</div><div><br id=\"lineBreakAtBeginningOfSignature\"><div dir=\"ltr\"><p style=\"margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Jordan G. Wroblewski</span></p><p style=\"margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Partner | President&nbsp;<br></span></p><p style=\"margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Lithium Battery Company</span></p><p style=\"margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Direct:&nbsp;<span dir=\"ltr\">(917) 266-5336</span><br></span></p><p style=\"margin: 0in;\"><u style=\"background-color: rgba(255, 255, 255, 0);\">jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"margin: 0px;\">@lithiumbatterycompany.com</a></u></p><p style=\"margin: 0in;\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\" style=\"caret-color: rgb(255, 255, 255); background-color: rgba(255, 255, 255, 0);\"><font color=\"#ffffff\">Lithium Battery Company</font></a></p><p style=\"margin: 0in;\"></p><p style=\"margin: 0in;\"></p></div><div dir=\"ltr\"><br><blockquote type=\"cite\">On Oct 28, 2025, at 6:19 PM, Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt; wrote:<br><br></blockquote></div><blockquote type=\"cite\"><div dir=\"ltr\">﻿\r\n\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n\r\n\r\n\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nThanks Jordan - this is helpful, just for clarification - what is the unit of measure for the&nbsp;\"1-3\" pack/module integration time? Is that 1-3 modules / hours / mins?<br>\r\n<br>\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" id=\"Signature\">\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"8\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWA6c3b1811-4752-0935-87b9-5c198fe816a3\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">Jarrett@</a>lithiumbatterycompany<a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"9\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWA210a918a-fb4d-c7df-bc18-c5ab8e6ad27c\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">.com</a></u></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\" class=\"elementToProof\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"10\" data-auth=\"NotApplicable\" title=\"https://lithiumbatterycompany.com/\" class=\"OWAAutoLink\" id=\"OWAf783a8d8-d9e7-b3da-0274-6c268fddf1f8\" href=\"https://lithiumbatterycompany.com/\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<hr style=\"display: inline-block; width: 98%;\">\r\n<div id=\"divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b>&nbsp;Tuesday, October 28, 2025 5:28 PM<br>\r\n<b>To:</b>&nbsp;Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;<br>\r\n<b>Cc:</b>&nbsp;Brian Stufflebean &lt;brian@mavrix.one&gt;; Nathan Staron &lt;Nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Sol-Ark Price</div>\r\n<div style=\"direction: ltr;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr;\">Hi Jarrett,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">I took the equipment spec sheet for the prismatic line and this is what it said:<br>\r\n<br>\r\n<i>With each 16 kWh Sol-Ark system using 16 prismatic 314Ah cells, and a prismatic line capable of handling approximately 95 cells per minute, the daily output for two 8-hour shifts can be calculated as follows:<br>\r\n<br>\r\nCells produced per day: 95 cells/min×60 min/hour×16 hours=91,200 cells&nbsp;<br>\r\nModules produced per day: 91,200 cells/16 cell system=5,700 modules<br>\r\nThis is the theoretical maximum, assuming assembly processes downstream (module, pack, and testing) keep up with cell processing, with no significant bottlenecks. This calculation is valid for the specified 16x 314Ah cell configuration per system. Actual output\r\n may be lower based on process specifics or technical constraints in the pack assembly area.</i></div>\r\n<div style=\"direction: ltr;\">&nbsp;</div>\r\n<div style=\"direction: ltr;\">The numbers below I double checked with Kevin from what I gathered on AI as well.&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\" class=\"elementToProof\">1) Pack/Module integration time: 1-3&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">2)&nbsp; Testing &amp; Aging Cycle duration: Our machines do EOL (End of Line) testing.&nbsp; For a full charge discharge cycle I would say 24 - 72hrs.&nbsp; I think we can get away with doing 24hrs on select systems for random testing/QC.&nbsp; Brian\r\n thinks we will need to do every unit for the first few hundred or so to get all the kinks out.&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">3)Quantity &amp; Timeline for production: 1GW in 365 days.&nbsp; That is producing 171.23 units a day.</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Below is the revised worksheet with prices for each component.&nbsp; I switched the&nbsp;cell price to $60 as well.&nbsp; I did not add labor to the worksheet below.&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; color: black;\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: black;\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: blue;\"><u>jordan<a style=\"color: blue; margin: 0px;\" class=\"OWAAutoLink\" id=\"OWA0f226602-a302-b270-1caa-6f28a491e193\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: rgb(5, 99, 193);\"><a style=\"margin-top: 0px; margin-bottom: 0px;\" data-auth=\"NotApplicable\" class=\"OWAAutoLink\" id=\"OWA35cb3acb-1baa-805e-3b98-40e26176312e\" href=\"http://lithiumbatterycompany.com\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div style=\"direction: ltr;\">On Tue, Oct 28, 2025 at 3:45 PM Jarrett Brownfield &lt;<a class=\"OWAAutoLink\" id=\"OWA2c0361ad-2b32-2a2e-e867-80b98daa921a\" href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin: 0px 0px 0px 0.8ex; padding-left: 1ex; border-left: 1px solid rgb(204, 204, 204);\">\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nThanks Jordan, do we know the estimated:<br>\r\n<br>\r\n1) Pack/Module integration time? (hours or minutes to assemble the BMS &amp; additional components)<br>\r\n<br>\r\n2) Testing &amp; Aging cycle duration (hours or minutes the module needs to be tested)<br>\r\n<br>\r\n3) Quantity &amp; timeline for production deliver? Roughly speaking - this will help with confirming the labor rates<br>\r\n<br>\r\n</div>\r\n<div id=\"x_m_-629442276135542824m_7521469498182349047Signature\">\r\n<div style=\"direction: ltr; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWA20da62dc-2439-bc17-cdc2-ca1970e6090f\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">Jarrett@</a>lithiumbatterycompany<a style=\"color: rgb(0, 36, 81); margin: 0px;\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" class=\"OWAAutoLink\" id=\"OWA20be5dea-3c2c-cd2e-a433-a388519fcc4e\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">.com</a></u></span></p>\r\n<p style=\"direction: ltr; text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-auth=\"NotApplicable\" title=\"https://lithiumbatterycompany.com/\" class=\"OWAAutoLink\" id=\"OWA697807d9-b15b-1bd6-6fbc-24f292f50272\" href=\"https://lithiumbatterycompany.com/\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n<hr style=\"direction: ltr; display: inline-block; width: 98%;\">\r\n<div id=\"x_m_-629442276135542824m_7521469498182349047divRplyFwdMsg\">\r\n<div style=\"direction: ltr; font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a class=\"OWAAutoLink\" id=\"OWAace1f6a4-be6d-079b-1e4c-2a802c892d15\" href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Tuesday, October 28, 2025 3:28 PM<br>\r\n<b>To:</b>&nbsp;Jarrett Brownfield &lt;<a class=\"OWAAutoLink\" id=\"OWAd1a6b80a-27b5-1ef8-ed39-e7ba1651604e\" href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Brian Stufflebean &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a class=\"OWAAutoLink\" id=\"OWA2403f51e-43c8-42c4-7c24-9804eefda10c\" href=\"mailto:Nathan@lithiumbatterycompany.com\">Nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Sol-Ark Price</div>\r\n<div style=\"direction: ltr;\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction: ltr;\">Hi Jarrett,</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Please see attached Sol-Ark price.&nbsp;&nbsp;</div>\r\n<div style=\"direction: ltr;\"><br>\r\n</div>\r\n<div style=\"direction: ltr;\">Let me know&nbsp;if you have any questions.&nbsp;</div>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; color: black;\"><br>\r\n</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; color: black;\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: black;\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 10pt; color: black;\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: blue;\"><u>jordan<a style=\"color: blue; margin: 0px;\" class=\"OWAAutoLink\" id=\"OWA480af42d-69dd-1e21-9e49-09a1c4cad26f\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction: ltr; margin: 0in;\"><span style=\"font-family: Arial, sans-serif; font-size: 9pt; color: rgb(5, 99, 193);\"><a style=\"margin-top: 0px; margin-bottom: 0px;\" data-auth=\"NotApplicable\" class=\"OWAAutoLink\" id=\"OWA4b53f4fc-ea16-56a9-3a48-04179c673ef0\" href=\"http://lithiumbatterycompany.com\">Lithium\r\n Battery Company</a></span></p>\r\n</blockquote>\r\n\r\n\r\n</div></blockquote></div></div></blockquote></div></body></html>','Hi Jarrett,This just in from China on that build.&nbsp;Our factory can assembly and produce 150 pcs of batteries of 16KWH per day if all materials are ready, and after the assembly, will take around 6.5 hours for aging and communication test for the battery.Let me know if you have any questions.&nbsp;Jordan G. WroblewskiPartner | President&nbsp;Lithium Battery CompanyDirect:&nbsp;(917) 266-5336jordan@lithiumbatterycompany.comLithium Battery CompanyOn Oct 28, 2025, at 6:21 PM, Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt; wrote:﻿Hi J,On the safe side let’s say 2-3 hours.&nbsp;Jordan G. WroblewskiPartner | President&nbsp;Lithium Battery CompanyDirect:&nbsp;(917) 266-5336jordan@lithiumbatterycompany.comLithium Battery CompanyOn Oct 28, 2025, at 6:19 PM, Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt; wrote:﻿\r\n\r\n\r\n\r\n\r\n\r\n\r\nThanks Jordan - this is helpful, just for clarification - what is the unit of measure for the&nbsp;\"1-3\" pack/module integration time? Is that 1-3 modules / hours / mins?\r\n\r\n\r\n\r\n\r\n\r\nJarrett Brownfield&nbsp;\r\n\r\nPartner\r\nI Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@lithiumbatterycompany.com\r\n\r\nLithium\r\n Battery Company\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFrom:&nbsp;Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;\r\nSent:&nbsp;Tuesday, October 28, 2025 5:28 PM\r\nTo:&nbsp;Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;\r\nCc:&nbsp;Brian Stufflebean &lt;brian@mavrix.one&gt;; Nathan Staron &lt;Nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;\r\nSubject:&nbsp;Re: Sol-Ark Price\r\n&nbsp;\r\n\r\nHi Jarrett,\r\n\r\n\r\nI took the equipment spec sheet for the prismatic line and this is what it said:\r\n\r\nWith each 16 kWh Sol-Ark system using 16 prismatic 314Ah cells, and a prismatic line capable of handling approximately 95 cells per minute, the daily output for two 8-hour shifts can be calculated as follows:\r\n\r\nCells produced per day: 95 cells/min×60 min/hour×16 hours=91,200 cells&nbsp;\r\nModules produced per day: 91,200 cells/16 cell system=5,700 modules\r\nThis is the theoretical maximum, assuming assembly processes downstream (module, pack, and testing) keep up with cell processing, with no significant bottlenecks. This calculation is valid for the specified 16x 314Ah cell configuration per system. Actual output\r\n may be lower based on process specifics or technical constraints in the pack assembly area.\r\n&nbsp;\r\nThe numbers below I double checked with Kevin from what I gathered on AI as well.&nbsp;\r\n\r\n\r\n1) Pack/Module integration time: 1-3&nbsp;\r\n\r\n\r\n2)&nbsp; Testing &amp; Aging Cycle duration: Our machines do EOL (End of Line) testing.&nbsp; For a full charge discharge cycle I would say 24 - 72hrs.&nbsp; I think we can get away with doing 24hrs on select systems for random testing/QC.&nbsp; Brian\r\n thinks we will need to do every unit for the first few hundred or so to get all the kinks out.&nbsp;\r\n\r\n\r\n3)Quantity &amp; Timeline for production: 1GW in 365 days.&nbsp; That is producing 171.23 units a day.\r\n\r\n\r\nBelow is the revised worksheet with prices for each component.&nbsp; I switched the&nbsp;cell price to $60 as well.&nbsp; I did not add labor to the worksheet below.&nbsp;\r\n\r\n\r\nJordan G. Wroblewski\r\nPartner | President&nbsp;\r\nLithium Battery Company\r\nDirect: (917) 266-5336\r\njordan@lithiumbatterycompany.com\r\nLithium\r\n Battery Company\r\n\r\n\r\n\r\n\r\nOn Tue, Oct 28, 2025 at 3:45 PM Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt; wrote:\r\n\r\n\r\nThanks Jordan, do we know the estimated:\r\n\r\n1) Pack/Module integration time? (hours or minutes to assemble the BMS &amp; additional components)\r\n\r\n2) Testing &amp; Aging cycle duration (hours or minutes the module needs to be tested)\r\n\r\n3) Quantity &amp; timeline for production deliver? Roughly speaking - this will help with confirming the labor rates\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nJarrett Brownfield&nbsp;\r\n\r\nPartner\r\nI Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@lithiumbatterycompany.com\r\n\r\nLithium\r\n Battery Company\r\n\r\n\r\n\r\n\r\nFrom:&nbsp;Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;\r\nSent:&nbsp;Tuesday, October 28, 2025 3:28 PM\r\nTo:&nbsp;Jarrett Brownfield &lt;jarrett@lithiumbatterycompany.com&gt;\r\nCc:&nbsp;Brian Stufflebean &lt;brian@mavrix.one&gt;; Nathan Staron &lt;Nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;\r\nSubject:&nbsp;Sol-Ark Price\r\n&nbsp;\r\n\r\nHi Jarrett,\r\n\r\n\r\nPlease see attached Sol-Ark price.&nbsp;&nbsp;\r\n\r\n\r\nLet me know&nbsp;if you have any questions.&nbsp;\r\n\r\n\r\nJordan G. Wroblewski\r\nPartner | President&nbsp;\r\nLithium Battery Company\r\nDirect: (917) 266-5336\r\njordan@lithiumbatterycompany.com\r\nLithium\r\n Battery Company\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-10-29 14:09:12','2025-12-09 19:30:35','2025-12-09 19:30:35','2025-12-09 19:30:35',NULL,NULL,NULL),
(908,4,' <BN6PR08MB3315B7F7525BF8E24A3956CEDCFAA@BN6PR08MB3315.namprd08.prod.outlook.com>',NULL,NULL,'Re: Site specific details','cdiaz@flowcorp.com','Carlos Diaz','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nGreat to hear.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nWe can touch base next week if I don\'t hear back from you.&nbsp;</div>\r\n<div class=\"elementToProof\" id=\"Signature\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nThank you again for the opportunity. .</div>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: rgb(49, 132, 155);\"><b>Carlos R. Diaz</b></span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\"><b>Application Specialist</b></span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\">Flow International Corporation</span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\">Atlanta, GA. 30064</span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\">C.943.253.7285</span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: rgb(5, 99, 193);\"><u><a style=\"color: rgb(5, 99, 193); margin-top: 0px; margin-bottom: 0px;\" class=\"x_OWAAutoLink\" id=\"OWA740a10af-9a08-fc8b-b7e4-cd421b2f8244\" href=\"http://www.flowwaterjet.com/\">www.FlowWaterjet.com</a></u></span><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\">&nbsp;</span></p>\r\n<div style=\"font-family: &quot;Franklin Gothic Medium&quot;, sans-serif; font-size: 8.5pt; color: gray;\" class=\"elementToProof\">\r\n<span style=\"background-color: rgb(255, 255, 255);\"><br>\r\n</span></div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: &quot;Calibri Light&quot;, &quot;Helvetica Light&quot;, sans-serif; font-size: 14pt; color: rgb(23, 78, 134);\" class=\"elementToProof\">\r\n<b><br>\r\n</b></div>\r\n<div style=\"font-family: &quot;Segoe UI Light&quot;; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<span style=\"background-color: rgb(255, 255, 255);\"><b><br>\r\n</b></span></div>\r\n<div style=\"font-family: &quot;Segoe UI Light&quot;; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<span style=\"background-color: rgb(255, 255, 255);\"><br>\r\n</span></div>\r\n<div style=\"font-family: &quot;Segoe UI Light&quot;; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Wednesday, October 29, 2025 2:55 PM<br>\r\n<b>To:</b> Carlos Diaz &lt;cdiaz@flowcorp.com&gt;<br>\r\n<b>Cc:</b> Adam Mooneyham &lt;amooneyham@flowcorp.com&gt;<br>\r\n<b>Subject:</b> Re: Site specific details</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div style=\"background-color:#FFEB9C; width:100%; border-style:solid; border-color:#9C6500; border-width:1pt; padding:2pt; font-size:10pt; line-height:12pt; font-family:\'Calibri\'; color:Black; text-align:left\">\r\n<span style=\"color:#9C6500; font-weight:bold\">CAUTION:</span> This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.</div>\r\n<br>\r\n<div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks for this and sorry for delay.</div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nI’ll be in touch.</div>\r\nRick<br>\r\n<div id=\"x_bloop_sign_1761764079522871040\" class=\"x_bloop_sign\"><br>\r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD,&nbsp;</span>\r\n<div style=\"font-family:Helvetica,Arial\">Founder, CTO</div>\r\n<div style=\"font-family:Helvetica,Arial\"><img class=\"x_composer_internal_attach\" style=\"max-width:99%\"><br>\r\n</div>\r\n<div style=\"font-family:Helvetica,Arial\"><a href=\"http://mavrix1.com/\" originalsrc=\"http://mavrix1.com/\">mavrix1.com</a></div>\r\n</div>\r\n<div><br>\r\n</div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On October 28, 2025 at 12:26:11 PM, Carlos Diaz (<a href=\"mailto:cdiaz@flowcorp.com\">cdiaz@flowcorp.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n   Hope all is well Rick. Here are the facility requirements for the table and pump set up we quoted you.&nbsp; Just wanted to mention that we can schedule another teams call this week to answer any question you may have.&nbsp;</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n&nbsp;Look forward to hearing back from you.&nbsp;</div>\r\n<div class=\"x_elementToProof\" id=\"x_Signature\">\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<p class=\"x_elementToProof\" style=\"margin:0in\"><span style=\"font-family:&quot;Franklin Gothic Book&quot;,sans-serif; font-size:8pt; color:rgb(49,132,155)\"><b>Carlos R. Diaz</b></span></p>\r\n<p class=\"x_elementToProof\" style=\"margin:0in\"><span style=\"font-family:&quot;Franklin Gothic Book&quot;,sans-serif; font-size:8pt; color:gray\"><b>Application Specialist</b></span></p>\r\n<p class=\"x_elementToProof\" style=\"margin:0in\"><span style=\"font-family:&quot;Franklin Gothic Book&quot;,sans-serif; font-size:8pt; color:gray\">Flow International Corporation</span></p>\r\n<p class=\"x_elementToProof\" style=\"margin:0in\"><span style=\"font-family:&quot;Franklin Gothic Book&quot;,sans-serif; font-size:8pt; color:gray\">Atlanta, GA. 30064</span></p>\r\n<p class=\"x_elementToProof\" style=\"margin:0in\"><span style=\"font-family:&quot;Franklin Gothic Book&quot;,sans-serif; font-size:8pt; color:gray\">C.943.253.7285</span></p>\r\n<p class=\"x_elementToProof\" style=\"margin:0in\"><span style=\"font-family:&quot;Franklin Gothic Book&quot;,sans-serif; font-size:8pt; color:rgb(5,99,193)\"><u><a class=\"x_x_OWAAutoLink\" id=\"OWA740a10af-9a08-fc8b-b7e4-cd421b2f8244\" href=\"http://www.flowwaterjet.com/\" style=\"color:rgb(5,99,193); margin-top:0px; margin-bottom:0px\">www.FlowWaterjet.com</a></u></span><span style=\"font-family:&quot;Franklin Gothic Book&quot;,sans-serif; font-size:8pt; color:gray\">&nbsp;</span></p>\r\n<div class=\"x_elementToProof\" style=\"font-family:&quot;Franklin Gothic Medium&quot;,sans-serif; font-size:8.5pt; color:gray\">\r\n<span style=\"background-color:rgb(255,255,255)\"><br>\r\n</span></div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:&quot;Calibri Light&quot;,&quot;Helvetica Light&quot;,sans-serif; font-size:14pt; color:rgb(23,78,134)\">\r\n<b><br>\r\n</b></div>\r\n<div class=\"x_elementToProof\" style=\"font-family:&quot;Segoe UI Light&quot;; font-size:12pt; color:rgb(0,0,0)\">\r\n<span style=\"background-color:rgb(255,255,255)\"><b><br>\r\n</b></span></div>\r\n<div class=\"x_elementToProof\" style=\"font-family:&quot;Segoe UI Light&quot;; font-size:12pt; color:rgb(0,0,0)\">\r\n<span style=\"background-color:rgb(255,255,255)\"><br>\r\n</span></div>\r\n<div class=\"x_elementToProof\" style=\"font-family:&quot;Segoe UI Light&quot;; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n</div>\r\n<div id=\"x_appendonsend\"></div>\r\n<hr tabindex=\"-1\" style=\"display:inline-block; width:98%\">\r\n<div id=\"x_divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Friday, October 24, 2025 10:52 AM<br>\r\n<b>To:</b> Carlos Diaz &lt;cdiaz@flowcorp.com&gt;<br>\r\n<b>Subject:</b> Site specific details</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div style=\"background-color:#FFEB9C; width:100%; border-style:solid; border-color:#9C6500; border-width:1pt; padding:2pt; font-size:10pt; line-height:12pt; font-family:\'Calibri\'; color:Black; text-align:left\">\r\n<span style=\"color:#9C6500; font-weight:bold\">CAUTION:</span> This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.</div>\r\n<br>\r\n<div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nHi Carlos,</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nTalking to our builder today.&nbsp;</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nCan you send me any site specific setup details for the FlowJet models we discussed?</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nLooking for specialized requirements and data on installation, power, performance, compliance, and any other factors.<br>\r\n</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks,</div>\r\n<div id=\"x_x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nRick</div>\r\n<br>\r\n<div id=\"x_x_bloop_sign_1761317454599635968\" class=\"x_x_bloop_sign\">\r\n<div><br>\r\n</div>\r\n<div>Rick Mislan, PhD,&nbsp;</div>\r\n<div>Founder, CTO</div>\r\n<div><img class=\"x_x_composer_internal_attach\" id=\"x_x_ATTACH_attach_6d6573736167655f315f31323736_35324141434136342d423436382d343238352d423543342d383338463637303746464343_35333544443832312d464239312d343942372d414135392d424242443643324143354235_0\" style=\"max-width:99%\" data-outlook-trace=\"F:2|T:2\" src=\"cid:1182EA33-5F74-4799-97A6-96FA29441112\"></div>\r\n<div>https://mavrix1.com</div>\r\n<div><br>\r\n</div>\r\n<div><font face=\"Helvetica\"><span style=\"font-size:12px\"><b><u>CONFIDENTIALITY NOTICE</u></b></span></font></div>\r\n<div><font face=\"Helvetica\"><span style=\"font-size:12px\"><i>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the\r\n designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</i></span></font></div>\r\n<div><font face=\"Helvetica\"><span style=\"font-size:12px\"><i><br>\r\n</i></span></font></div>\r\n<div><font face=\"Helvetica\"><span style=\"font-size:12px\"><i>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</i></span></font></div>\r\n<div><font face=\"Helvetica\"><span style=\"font-size:12px\"><i><br>\r\n</i></span></font></div>\r\n<div><font face=\"Helvetica\"><span style=\"font-size:12px\"><i>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients\r\n are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</i></span></font></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Great to hear.\r\nWe can touch base next week if I don\'t hear back from you.\r\nThank you again for the opportunity. .\r\n\r\nCarlos R. Diaz\r\n\r\nApplication Specialist\r\n\r\nFlow International Corporation\r\n\r\nAtlanta, GA. 30064\r\n\r\nC.943.253.7285\r\n\r\nwww.FlowWaterjet.com<http://www.flowwaterjet.com/>\r\n\r\n\r\n\r\n\r\n\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Wednesday, October 29, 2025 2:55 PM\r\nTo: Carlos Diaz <cdiaz@flowcorp.com>\r\nCc: Adam Mooneyham <amooneyham@flowcorp.com>\r\nSubject: Re: Site specific details\r\n\r\nCAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.\r\n\r\nThanks for this and sorry for delay.\r\nI’ll be in touch.\r\nRick\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[X]\r\nmavrix1.com<http://mavrix1.com/>\r\n\r\n\r\n\r\nOn October 28, 2025 at 12:26:11 PM, Carlos Diaz (cdiaz@flowcorp.com<mailto:cdiaz@flowcorp.com>) wrote:\r\n\r\n   Hope all is well Rick. Here are the facility requirements for the table and pump set up we quoted you.  Just wanted to mention that we can schedule another teams call this week to answer any question you may have.\r\n\r\n\r\n Look forward to hearing back from you.\r\n\r\n\r\nCarlos R. Diaz\r\n\r\nApplication Specialist\r\n\r\nFlow International Corporation\r\n\r\nAtlanta, GA. 30064\r\n\r\nC.943.253.7285\r\n\r\nwww.FlowWaterjet.com<http://www.flowwaterjet.com/>\r\n\r\n\r\n\r\n\r\n\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Friday, October 24, 2025 10:52 AM\r\nTo: Carlos Diaz <cdiaz@flowcorp.com>\r\nSubject: Site specific details\r\n\r\nCAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.\r\n\r\nHi Carlos,\r\nTalking to our builder today.\r\nCan you send me any site specific setup details for the FlowJet models we discussed?\r\nLooking for specialized requirements and data on installation, power, performance, compliance, and any other factors.\r\nThanks,\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:1182EA33-5F74-4799-97A6-96FA29441112]\r\nhttps://mavrix1.com\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n',0,0,0,0,0,0,'2025-10-29 21:32:15','2025-12-09 19:30:36','2025-12-09 19:30:36','2025-12-09 19:30:36',NULL,NULL,NULL),
(909,4,' <BN0P110MB11617BBB5B1AAC68160A25F7CCFBA@BN0P110MB1161.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'Call with Cellec','chris@cellectech.com','Christopher Schauerman','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle19\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Hi Rick, <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Good chatting with you on the phone today. Let me know if tomorrow at 3:00pm works for everyone. Also, can you let me know who will be on the meeting.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Best,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Chris<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">--<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Christopher Schauerman, PhD<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">President/CEO<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Cellec Technologies, Inc.&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">245 Summit Point Dr<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Henrietta, NY 14467<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Office:&nbsp;(585) 280-9434<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Business: (585) 454-9166<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Cell: (814) 392-3661<o:p></o:p></span></p>\r\n</div>\r\n</body>\r\n</html>\r\n','Hi Rick,\r\n\r\nGood chatting with you on the phone today. Let me know if tomorrow at 3:00pm works for everyone. Also, can you let me know who will be on the meeting.\r\n\r\n\r\n\r\nBest,\r\nChris\r\n--\r\n\r\nChristopher Schauerman, PhD\r\nPresident/CEO\r\n\r\nCellec Technologies, Inc.\r\n245 Summit Point Dr\r\nHenrietta, NY 14467\r\nOffice: (585) 280-9434\r\nBusiness: (585) 454-9166\r\nCell: (814) 392-3661\r\n',0,0,0,0,0,0,'2025-10-30 14:13:43','2025-12-09 19:30:36','2025-12-09 19:30:36','2025-12-09 19:30:36',NULL,NULL,NULL),
(910,4,'<1761837475958.78b5eb45-e3be-44bb-99e4-72db281b92d3@bf06x.hubspotemail.net>',NULL,NULL,'Time is Running Out - Save on your Epilog Purchase with Section 179!','sales@epiloglaser.com','Epilog Laser Sales','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional //EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:v=\"urn:schemas-microsoft-com:vml\" lang=\"en\"><head>\r\n    <title>Time is Running Out - Save on your Epilog Purchase with Section 179!</title>\r\n    <meta property=\"og:title\" content=\"Time is Running Out - Save on your Epilog Purchase with Section 179!\">\r\n    <meta name=\"twitter:title\" content=\"Time is Running Out - Save on your Epilog Purchase with Section 179!\">\r\n    \r\n    \r\n    \r\n<meta name=\"x-apple-disable-message-reformatting\">\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\r\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <!--[if gte mso 9]>\r\n  <xml>\r\n    <o:OfficeDocumentSettings>\r\n      <o:AllowPNG/>\r\n      <o:PixelsPerInch>96</o:PixelsPerInch>\r\n    </o:OfficeDocumentSettings>\r\n    <w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\">\r\n      <w:DontUseAdvancedTypographyReadingMail/>\r\n    </w:WordDocument>\r\n  </xml>\r\n  \r\n  <style>\r\n    ul > li {\r\n      text-indent: -1em;\r\n    }\r\n  </style>\r\n<![endif]-->\r\n<!--[if mso]>\r\n<style type=\"text/css\">\r\n body, td {font-family: Arial, Helvetica, sans-serif;}\r\n .hse-body-wrapper-table {background-color: #EAF0F6;}\r\n</style>\r\n<![endif]-->\r\n<!--[if mso | IE]>\r\n  <style type=\"text/css\">\r\n    .hse-column-container { border: none !important; padding: 0 !important; }\r\n  </style>\r\n<![endif]-->\r\n    \r\n      \r\n  \r\n  \r\n    \r\n  <meta name=\"generator\" content=\"HubSpot\"><meta property=\"og:url\" content=\"http://43785732.hs-sites.com/-temporary-slug-3874ee20-7c25-474c-a0c7-f950a6e4c0cd\"><meta name=\"robots\" content=\"noindex,follow\"><!--[if !((mso)|(IE))]><!-- --><style type=\"text/css\">@media only screen and (max-width:639px){img.stretch-on-mobile,.hs_rss_email_entries_table img,.hs-stretch-cta .hs-cta-img{height:auto !important;width:100% !important}\r\n.display_block_on_small_screens{display:block}.hs_padded{padding-left:20px !important;padding-right:20px !important}\r\n.hs-hm,table.hs-hm{display:none}.hs-hd{display:block !important}table.hs-hd{display:table !important}\r\n}@media only screen and (max-width:639px){.hse-border-m{border-left:1px solid #eaf0f6 !important;border-right:1px solid #eaf0f6 !important;box-sizing:border-box}\r\n.hse-border-bottom-m{border-bottom:1px solid #eaf0f6 !important}.hse-border-top-m{border-top:1px solid #eaf0f6 !important}\r\n.hse-border-top-hm{border-top:none !important}.hse-border-bottom-hm{border-bottom:none !important}\r\n}.moz-text-html .hse-column-container{max-width:600px !important;width:600px !important}\r\n.moz-text-html .hse-column{display:table-cell;vertical-align:top}.moz-text-html .hse-section .hse-size-4{max-width:200px !important;width:200px !important}\r\n.moz-text-html .hse-section .hse-size-12{max-width:600px !important;width:600px !important}\r\n@media only screen and (min-width:640px){.hse-column-container{max-width:600px !important;width:600px !important}\r\n.hse-column{display:table-cell;vertical-align:top}.hse-section .hse-size-4{max-width:200px !important;width:200px !important}\r\n.hse-section .hse-size-12{max-width:600px !important;width:600px !important} }@media only screen and (max-width:639px){.hse-body-wrapper-td{padding-top:20px !important}\r\n#section-0 .hse-column-container{background-color:#fff !important} }@media screen and (max-width:639px){.social-network-cell{display:inline-block}\r\n}@media only screen and (max-width:639px){.hse-body-wrapper-td{padding-bottom:20px !important}\r\n#section-9 .hse-column-container{background-color:#fff !important} }</style><!--<![endif]--><style type=\"text/css\">#hs_body #hs_cos_wrapper_main a[x-apple-data-detectors]{color:inherit !important;text-decoration:none !important;font-size:inherit !important;font-family:inherit !important;font-weight:inherit !important;line-height:inherit !important}\r\na{text-decoration:underline}p{margin:0}body{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale}\r\ntable{border-spacing:0;mso-table-lspace:0;mso-table-rspace:0}table,td{border-collapse:collapse}\r\nimg{-ms-interpolation-mode:bicubic}p,a,li,td,blockquote{mso-line-height-rule:exactly}\r\n.ShadowHTML p,.sh-modified-inline p{margin:0}</style></head>\r\n  <body id=\"hs_body\" bgcolor=\"#EAF0F6\" style=\"margin:0 !important; padding:0 !important; font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n    <div id=\"preview_text\" style=\"display:none;font-size:1px;color:#EAF0F6;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;\" lang=\"en\">Act now and take delivery by Dec. 31!</div>\r\n    \r\n<!--[if gte mso 9]>\r\n<v:background xmlns:v=\"urn:schemas-microsoft-com:vml\" fill=\"t\">\r\n    <v:fill type=\"tile\" size=\"100%,100%\" color=\"#ffffff\"/>\r\n</v:background>\r\n<![endif]-->\r\n    <div class=\"hse-body-background\" lang=\"en\" style=\"background-color:#eaf0f6\" bgcolor=\"#eaf0f6\">\r\n      <table role=\"presentation\" class=\"hse-body-wrapper-table\" cellpadding=\"0\" cellspacing=\"0\" style=\"margin:0; padding:0; width:100% !important; min-width:320px !important; height:100% !important\" width=\"100%\" height=\"100%\">\r\n        <tbody><tr>\r\n          <td class=\"hse-body-wrapper-td\" valign=\"top\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding-top:20px; padding-bottom:20px\">\r\n            <div id=\"hs_cos_wrapper_main\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_dnd_area\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"dnd_area\">  <div id=\"section-0\" class=\"hse-section hse-section-first\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff; padding-bottom:10px; padding-top:10px\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-bottom:10px; padding-top:10px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-0-0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module-0-0-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#00578a; word-break:break-word; text-align:center; padding:5px 20px; font-size:0px\">\r\n        <img alt=\"FINAL-H\" src=\"https://hs-43785732.f.hubspotemail.net/hub/43785732/hubfs/FINAL-H.png?width=600&amp;upscale=true&amp;name=FINAL-H.png\" style=\"outline:none; text-decoration:none; max-width:100%; font-size:16px\" width=\"300\" align=\"middle\">\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section-1\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:200px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"200\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:200px\">\r\n<![endif]-->\r\n<div id=\"column-1-0\" class=\"hse-column hse-size-4\">\r\n  <div id=\"hs_cos_wrapper_module-1-0-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#FFFFFF\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; border-radius:0px; cursor:auto; background-color:#FFFFFF; mso-padding-alt:12px 18px\">\r\n        <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWcx3m2nnW7lCdLW6lZ3lBW5BWGdy1_C-ZRW1LMPRR99t2x9Vy7Rcw97l6g2V3s3_h2t1S41W7H-j8L6Ds37tW28LL856s8Q5lW7ccvfL32CPsyW2gxlzW7Y8YCgW3MnRsV1cp-nrW3SRJCP1pXvzGVw1HkT5Qr7PtVsdBTY6x_YDFW1XpLkj23wtqyW6bN6CW60VKwzW4D6H0k2dtr31W3mFPk81zgZ23W97Jr4S373Mt2W5K19V26krBDLW4pLCsV7YfjBqN2FW8LRnQMlSW3XMnWq3hq7YyW5pj5zk4qRM8QMRnc0bVL-MrW6Cms9g6F3CLWf8fnm8-04\" target=\"_blank\" style=\"color:#00a4bd; font-size:14px; font-family:Arial, sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:12px 18px; display:block\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"QJswKJS0\">\r\n          <strong style=\"color:#00578A;font-weight:bold;text-decoration:none;font-style:normal;\">PRODUCTS</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:200px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"200\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:200px\">\r\n<![endif]-->\r\n<div id=\"column-1-1\" class=\"hse-column hse-size-4\">\r\n  <div id=\"hs_cos_wrapper_module-1-1-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#FFFFFF\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; border-radius:0px; cursor:auto; background-color:#FFFFFF; mso-padding-alt:12px 18px\">\r\n        <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWcR3m2nnW7Y8-PT6lZ3p5VzJx-r2Jw7ztW57nF7w49qZZ_W3trTK17ZH7hjVF3H4v3Dz_SlW2DMMPf6GXm34W4mPN9C4Cct1zW8KyXYk6xCZhzW968sFf2DNd84W4KK5768DKMt_W4sj1Fg557cDHV6vlX75YCShGW2w2wRP7n7dKZN8JLdr3cYfvZW2RZrMG5t-MGhW7-2qYN2GLl2MVCqRzc8NZrc4W2n4DRG928GrrW3TkZLf27Jn3JW3lm_Fm8w665RW3GKBQ141JSp4W6DzyTW9l-bYdN2LbMYxS_k_TW7H59dX4TY5p3W6591Gn74z2TyW3_W5VF5ZZd6KW5wrSLl8JW0YJf14C7SK04\" target=\"_blank\" style=\"color:#00a4bd; font-size:14px; font-family:Arial, sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:12px 18px; display:block\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"yovoY7jS\">\r\n          <strong style=\"color:#00578A;font-weight:bold;text-decoration:none;font-style:normal;\">HOW IT WORKS</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:200px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"200\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:200px\">\r\n<![endif]-->\r\n<div id=\"column-1-2\" class=\"hse-column hse-size-4\">\r\n  <div id=\"hs_cos_wrapper_module-1-2-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#FFFFFF\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; border-radius:0px; cursor:auto; background-color:#FFFFFF; mso-padding-alt:12px 18px\">\r\n        <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWcd3m2nnW6N1vHY6lZ3kKW2zYDtc3YtkHJW9bL1sK39Nv0PW1rzSL55LPxCdW7x-2H21cWZL3W1GMvB98DCHjgN4S4v46FhBkWVvlY5g2p4NC-W4FyTsK33j4NGW94hJYs3_fjwGN89K9qC1hYyQW7r_Fl-3Mn01GW6jf0201sXPQRW1ndXZ58xyfdYW2JtM1l3jkypJW1zxVPh4wKzs8W3VmHlS85b-Z4W8FbCCt4sGhg_W8Xg-3K82WcwyW3DF6gZ3mrlRnW6F03x75s1qQLN8cQrn68sbT_V6ch_t33mhQyf6Q7B1q04\" target=\"_blank\" style=\"color:#00a4bd; font-size:14px; font-family:Arial, sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:12px 18px; display:block\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"xxYs3zqK\">\r\n          <strong style=\"color:#00578A;font-weight:bold;text-decoration:none;font-style:normal;\">ON SALE!</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section_1733284161556\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column_1733284161556_0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module_17332841726501\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#00578a; word-break:break-word; text-align:center; padding:10px 0px; font-size:0px\">\r\n        <img alt=\"11111\" src=\"https://hs-43785732.f.hubspotemail.net/hub/43785732/hubfs/11111.png?width=1200&amp;upscale=true&amp;name=11111.png\" style=\"outline:none; text-decoration:none; max-width:100%; font-size:16px\" width=\"600\" align=\"middle\">\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section-3\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-3-0\" class=\"hse-column hse-size-12\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module-3-0-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module-3-0-0_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"font-size:15px; line-height:175%\"><span style=\"color: #00578a;\">Hi Rick,</span></p>\r\n<p style=\"font-size:15px; line-height:175%\"><br>Looking to make a smart investment before the year ends? When you purchase and take delivery of an Epilog Laser system by <strong>December 31, 2025</strong>, you could take advantage of <span style=\"font-weight: bold;\">US Tax Code </span><strong>Section 179. </strong><span style=\"font-weight: normal;\">This powerful resource</span><strong> </strong><span style=\"font-weight: normal;\">allows you</span><strong> </strong><span style=\"font-weight: normal;\">to</span><strong> </strong>deduct the entire cost of qualifying equipment, like an Epilog Laser machine, from your taxable income in the year the equipment is purchased and put into use.&nbsp;</p>\r\n<h2 style=\"margin:0; font-size:15px; line-height:175%\">Why It’s a Big Deal:</h2>\r\n<ul style=\"font-size:15px; line-height:175%\">\r\n<li><strong>Immediate tax savings</strong> — no waiting for depreciation</li>\r\n<li><strong>Lower your 2025 tax bill</strong></li>\r\n<li><strong>Free up cash</strong> for other business needs<br><br></li>\r\n</ul>\r\n<p style=\"font-size:18px; line-height:175%; text-align:center\" align=\"center\">Get the full scoop on our <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWd63m2nnW8wLKSR6lZ3ptW5gcm8S86zw_tW7l0Xlv21D3rbW4sccm-6TsJpZW34hZM78nwb56W7rhPph6gFPhwW48WCvJ3H6K3KW1ZFBrV4wnjBMW1hsv-w561LHFW5bjBGw95P1HZW5WJfFs4V9rbcW4YhPN_5b25SKW9dtCGd3fKmqXN4Bx6n8BkK_WN8H9H8CGWVwkN3fPP4fH-dTtW9hTwt87gwJGDW4sfkL72FP1Y1W5NX4yD1MyqSkW1g4PwG999Bf1W1dFKhn601G5RW61pt7S29ZKvjW6mBlfY8C0MQ3W6kn6V93pqJVxW7v2gMX78sS1zW4GKsnX5j-MGHVnNfj_4lcF-QMS59jhrZQ6bVJQG-b36qn8vf3bSH4C04\" rel=\"noopener\" style=\"color:#6dcff6\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"5fGlsAQz\" target=\"_blank\">blog</a>!&nbsp;</p></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section-6\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-6-0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module-6-0-1\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#00578a; word-break:break-word; text-align:center; padding:10px 20px; font-size:0px\">\r\n        <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWcx3m2nnW7lCdLW6lZ3nDW6z2L-C3CQRh2W1G-P4r1fSmNgW7yL6dY63Z4rJW960LSY2vmB6BW7YGMN743TGSQV9nq6n2JQtpvW5T36g59flJ9_W8CQV2l2gZDTkW6x5DZy2mPLC7W3rh3Bv8jFS09W1yh34C6PxrbpW62ZP8b8401mkW50hSh51Lmz_6W4QchK82KWwt6N6LVqZDbbvFNW2-1nP78TZqLNW5gsT678-zDwvVqmQnV5nD0W-W5dpcXy2W8NLqW94nN8B4B-qq_W6bMp8Z2vFJ1fVnNl_F3LNMFtW5gKgLn5-k2fqW2pPPLt4b7qPydMfl1b04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"Zcc3HmKZ\">\r\n        <img alt=\"machine-swap-800\" src=\"https://hs-43785732.f.hubspotemail.net/hub/43785732/hubfs/machine-swap-800.gif?width=1120&amp;upscale=true&amp;name=machine-swap-800.gif\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"560\" align=\"middle\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module-6-0-2\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module-6-0-2_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h2 style=\"margin:0; line-height:175%; font-size:22px; text-align:center\" align=\"center\">Take Advantage before time runs out!</h2>\r\n<p style=\"line-height:175%\"><span style=\"color: #00578a;\">Contact us today for pricing information and to <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWd63qn9qW8wLKSR6lZ3kTW5KnzDL24wc2wW44pkBF2mlcQDN6rHdwLRrfY6W3Yz1RP19QndQW65BgK51lCtbLVCTz9V1njVMzN13R1Vp7nP-4W4ZrqPQ70dWHxW5GWcxV8l_BNpVSchdP4z80qSW3B6Zl06GTbvGN4C8VtWVDCzfW3vFx5L7X-3ytW7Mx25H61CyxdW5zSH_j4CwbK5W33Td4H10h-QGW6CYNfP8l_CqdW3dLd-g6ZKYKYW6N573_8Y9RQJW83BXnh17XT60W7YTr466SC7VlVSlxV67yVV2KW1--gxl3xBYZRW96mbmg4YX643N7gXpg1sjpkYW3nB_NX8k9kslW2nFZvg8_VNNDW3NCzV36RFmcWf3Y15Ng04\" target=\"_blank\" style=\"color:#00578a\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"Qx4Y5roR\">set up a demonstration! →</a>&nbsp;Or visit our shop right now and purchase online!&nbsp;</span><br><span style=\"color: #00578a;\"> </span></p>\r\n<p style=\"line-height:175%\"><span style=\"color: #00578a;\">Better hurry though – these savings only work if you complete your purchase and installation before December 31!</span></p>\r\n<p style=\"line-height:175%\">&nbsp;</p>\r\n<p style=\"font-size:12px; line-height:175%\">*Please consult a tax professional to ensure this benefit applies to your business&nbsp;</p></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section-7\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff; background-image:url(\'https://hs-43785732.f.hubspotemail.net/hubfs/43785732/PPT-slides-3.jpg\'); background-position:center; background-repeat:no-repeat; background-size:100% 100%; padding-bottom:10px; padding-top:10px\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff; background-image:url(\'https://43785732.fs1.hubspotusercontent-na1.net/hubfs/43785732/PPT-slides-3.jpg\'); background-position:center; background-repeat:no-repeat; background-size:100% 100%;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-bottom:10px; padding-top:10px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-7-0\" class=\"hse-column hse-size-12\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module-7-0-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module-7-0-0_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h2 style=\"margin:0; line-height:175%; font-size:22px; text-align:center\" align=\"center\"><span style=\"color: #ffffff;\">Choose the Power of Epilog</span></h2>\r\n<p style=\"line-height:175%\"><span style=\"color: #ffffff;\">With so many laser machine options out there, here’s why Epilog stands apart:</span></p>\r\n<ul style=\"line-height:175%\">\r\n<li style=\"line-height: 150%;\"><span style=\"color: #ffffff;\">Designed and manufactured in Golden, CO, with precision and care.</span></li>\r\n<li style=\"line-height: 150%;\"><span style=\"color: #ffffff;\">Reliable, long-lasting CO2 RF metal laser tubes made in the USA.</span></li>\r\n<li style=\"line-height: 150%;\"><span style=\"color: #ffffff;\">US-based technical support and a 2-year warranty for peace of mind.</span></li>\r\n<li style=\"line-height: 150%;\"><span style=\"color: #ffffff;\">Safety-first design—no extra eye protection needed.</span></li>\r\n<li style=\"line-height: 150%;\"><span style=\"color: #ffffff;\"><a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWdq3m2nnW95jsWP6lZ3m0N1GwK4sPxgY6W31R58-51dBNcW2VvfFs48pz0dW2fgslP891xYLW4vk_j-9jQ5qKW7lJ9xb2HKz5xW2BxkST8y8gVJW5PMX6_1zwFHcW6k2dJD4Yqw8XW8RW_tR5WmRJhN7PvKY2QJpDjW72kcR48XZH1nW4wNDY-78g1TlW6MXYKK155MRJW7Qn2xG3-C88DN3DLb-0hJd_PW8DFZHp5HG1kXW7DCf7n4PHr_6W8ddjK45LNlwXW9gh7nP97XdKWW3PRRlY77L_XLW4kBJ5b5MspJzW7NGf5w5qc8rSN2hPKPx3HRqpW2tnqs_5xXhK1N2rnTDjLxV17W7y9JLB61k5NDW3v-Wc19kqTmkW5mTL8F5mJR2LW5mp6yq8BpsvYf1xwqqx04\" style=\"color:#ffffff\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"KtF4xnSS\" target=\"_blank\"><span style=\"color: #6dcff6;\">Innovative IRIS™</span></a> Camera Positioning for effortless accuracy.</span></li>\r\n</ul>\r\n<p style=\"line-height:150%\"><span style=\"color: #ffffff;\">Experience the difference of a trusted partner with 36 years in the laser business.</span></p></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section-8\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff; padding-bottom:10px; padding-top:10px\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-bottom:10px; padding-top:10px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-8-0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module-8-0-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"social-network-cell\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n        <table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module_single\">\r\n          <tbody>\r\n            <tr>\r\n              <td class=\"display_block_on_small_screens\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:8px 5px; line-height:1; vertical-align:middle\" valign=\"middle\">\r\n                <a  href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWcd3m2nnW6N1vHY6lZ3ljVfWktH19QDR0W2kXJL7885dxtW3B6H6T99Zc1qW80cmqK3JycqMW5pKWHD2Zzy02W7mq5gt31yN_2VZb5zR8LS7dwW6RQrHc74CYl9W1_L43r4b7n34W7R0sL26_LRfyW5_3mY42QFJx9W8X_5142yGb-XN8tWxc9xVzsRF6s7p8B7xCbW4GcR8M8k1tddW8nblvH8xTHCkN6cVBLm2rWTLW2X3Cts2Sm1PpW8qfk3S7TzRc1N6gST7W_dFcFW1p_WjT28QxYjW6h6GPT62gYdXf62RRhK04\" style=\"color:#00a4bd; text-decoration:none !important\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"AvjqVn8f\" target=\"_blank\"><img src=\"https://hs-43785732.f.hubspotemail.net/hs/hsstatic/TemplateAssets/static-1.262/img/hs_default_template_images/modules/Follow+Me+-+Email/youtube_circle_grey.png\" alt=\"YouTube\" height=\"25\" style=\"outline:none; text-decoration:none; border:none; width:auto!important; height:25px!important; vertical-align:middle\" valign=\"middle\" width=\"auto\">\r\n                </a>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td><td class=\"social-network-cell\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n        <table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module_single\">\r\n          <tbody>\r\n            <tr>\r\n              <td class=\"display_block_on_small_screens\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:8px 5px; line-height:1; vertical-align:middle\" valign=\"middle\">\r\n                <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWcd3m2nnW6N1vHY6lZ3mqW4HlQF15m7vCMW21b2YC8m4dRKW3WTLHj2Y8vKbW220vZ-44Q-dvVlhv7K5h87PmW2QGR7Y8LBTs9W7FpZ8c5cltN5W6RM56C3bLchGVDKtRC3SHlKZVpsXSv1bPtgmW5rYMZy8DMKKyV8HMTk6F1n4JW2npGqK9dkvTQW72H6JF2KMrqDW1RJ1B58h3zyzW77Dz-24f1HsLW39T8fl3nn-PNN56B_FjfhS7RW6LVv7z7Pb3CtW50QkYb4r-Fw3W9fmK1-1g91MKN3wHJ0BfsvBRf9k7NCH04\" style=\"color:#00a4bd; text-decoration:none !important\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"3eV/mCGq\" target=\"_blank\"><img src=\"https://hs-43785732.f.hubspotemail.net/hs/hsstatic/TemplateAssets/static-1.262/img/hs_default_template_images/modules/Follow+Me+-+Email/facebook_circle_grey.png\" alt=\"Facebook\" height=\"25\" style=\"outline:none; text-decoration:none; border:none; width:auto!important; height:25px!important; vertical-align:middle\" valign=\"middle\" width=\"auto\">\r\n                </a>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td><td class=\"social-network-cell\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n        <table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module_single\">\r\n          <tbody>\r\n            <tr>\r\n              <td class=\"display_block_on_small_screens\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:8px 5px; line-height:1; vertical-align:middle\" valign=\"middle\">\r\n                <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWcd3m2nnW6N1vHY6lZ3p3N8dM5-R5vzlJW2_PqXY4mmRwkW6MxP8F6QbpyVW1D_HPz6d1sHzW4LhRy1573h31W7krCYK4KJY7PVHwPRH4tQ-MLW9fRbr15hCSN3W8mv-VG85WBdJN6Y1YBgZmJh0W6Xcc7B4M9Q4qW4YrW8p97QWwKVczcVd48dWMdW8QNMyN3gzmYGV3pr8V1QXHkBW8R2TFZ8gPgT8W3T3kzK85q04WW6Jm3nr3HLD0NW4FYvnF4vgScRW24J9PZ5zk3P-N5G-4NkpgHn2W1k_cd12HHJSvf2lL4T-04\" style=\"color:#00a4bd; text-decoration:none !important\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"Nv+8s09A\" target=\"_blank\"><img src=\"https://hs-43785732.f.hubspotemail.net/hs/hsstatic/TemplateAssets/static-1.262/img/hs_default_template_images/modules/Follow+Me+-+Email/instagram_circle_grey.png\" alt=\"Instagram\" height=\"25\" style=\"outline:none; text-decoration:none; border:none; width:auto!important; height:25px!important; vertical-align:middle\" valign=\"middle\" width=\"auto\">\r\n                </a>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td><td class=\"social-network-cell\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n        <table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module_single\">\r\n          <tbody>\r\n            <tr>\r\n              <td class=\"display_block_on_small_screens\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:8px 5px; line-height:1; vertical-align:middle\" valign=\"middle\">\r\n                <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWcd3m2nnW6N1vHY6lZ3lHW6wMdn31CzkvkW1VL8P41jp-3pW4X5N7w1pMrvWVdm-xq2nbz5LVTyJ1C5GHkNRVdLnJG5dzxgMW3Zygkk2JHQzCW2YyrFx45s2PXW8Jmm0d48RtrXW2gSYPS4zT6NxN8mhC-tHxmMpN3M7-Q1dHp1NW5CMNfh5pNbTXW53nsmF8pVTfbW7gzYtv83rcV-W8h8PyY4MGCxVVlNpc04BpL8KW3F62wV8yK9rLW3Zt8vQ4xwSkNVt0cm-1g894zW8v8XKd4X7X4TVyxbmj43-njVf4slqHC04\" style=\"color:#00a4bd; text-decoration:none !important\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"89S4y2R7\" target=\"_blank\"><img src=\"https://hs-43785732.f.hubspotemail.net/hs/hsstatic/TemplateAssets/static-1.262/img/hs_default_template_images/modules/Follow+Me+-+Email/twitter_circle_grey.png\" alt=\"X\" height=\"25\" style=\"outline:none; text-decoration:none; border:none; width:auto!important; height:25px!important; vertical-align:middle\" valign=\"middle\" width=\"auto\">\r\n                </a>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td><td class=\"social-network-cell\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n        <table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module_single\">\r\n          <tbody>\r\n            <tr>\r\n              <td class=\"display_block_on_small_screens\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:8px 5px; line-height:1; vertical-align:middle\" valign=\"middle\">\r\n                <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWcd3m2nnW6N1vHY6lZ3q6W3_tgP66WKXNGW21rCRj5t4yXtW2wV8ln5jKB4PDPDfkKMqz5W4r0_dx1swdX5W6n94Bk13lWzCW9f83k_1xNl6dVsRVVL6-kv-gW3D-RLc8ZQzcPW70rcmf94Vv-qW7kv-wV5R3f5SVZrGt93HMgjFW7stf1x65F-53W7z2vNv5HyVKWMvkbGDxc67PW70NMDD30wT38W6Sl7vK9gwwRyN92z65Cxg7P4W1TY2394lhkJkVyxcLg10kpg1N4R0_MHw1ltmW65HjyD1_qfFGf60KXrY04\" style=\"color:#00a4bd; text-decoration:none !important\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"0jFc3n+8\" target=\"_blank\"><img src=\"https://hs-43785732.f.hubspotemail.net/hs/hsstatic/TemplateAssets/static-1.262/img/hs_default_template_images/modules/Follow+Me+-+Email/linkedin_circle_grey.png\" alt=\"LinkedIn\" height=\"25\" style=\"outline:none; text-decoration:none; border:none; width:auto!important; height:25px!important; vertical-align:middle\" valign=\"middle\" width=\"auto\">\r\n                </a>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td><td class=\"social-network-cell\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n        <table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module_single\">\r\n          <tbody>\r\n            <tr>\r\n              <td class=\"display_block_on_small_screens\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:8px 5px; line-height:1; vertical-align:middle\" valign=\"middle\">\r\n                <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWcd3m2nnW6N1vHY6lZ3nVW14gVCh70gMwsN5wC2qmVrhvpW2J3RWn3GjpjtW4rm9bH4P4L2XW7bX19L6vX9DzW5fbJmX4Z_CKGW52b5X977zgc2W47tqHc6lFZMHW7fF-jT2LhHnwW3JZB0Z6Q_WCCW96j_M06_ClmWVcSmch2XpKvVW4VgfRy2NVr-VW5gc5rZ1yhfghW80_FFF4FwQ5nW1WQ1DJ5kF-HTW1BSpFx7V38tSW35KsQ19g7m_PW5F4Wc226Fwb4W11Xw332grH0MW99Q0Sw3Y96V_W2sRL9F1Qd7l7f55fBXK04\" style=\"color:#00a4bd; text-decoration:none !important\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"1kFf2yTo\" target=\"_blank\"><img src=\"https://hs-43785732.f.hubspotemail.net/hs/hsstatic/TemplateAssets/static-1.262/img/hs_default_template_images/modules/Follow+Me+-+Email/pinterest_circle_grey.png\" alt=\"Pinterest\" height=\"25\" style=\"outline:none; text-decoration:none; border:none; width:auto!important; height:25px!important; vertical-align:middle\" valign=\"middle\" width=\"auto\">\r\n                </a>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td><td class=\"social-network-cell\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n        <table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module_single\">\r\n          <tbody>\r\n            <tr>\r\n              <td class=\"display_block_on_small_screens\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:8px 5px; line-height:1; vertical-align:middle\" valign=\"middle\">\r\n                <a href=\"mailto:sales@epiloglaser.com\" style=\"color:#00a4bd; text-decoration:none !important\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"eUekBVr0\" target=\"_blank\"><img src=\"https://hs-43785732.f.hubspotemail.net/hs/hsstatic/TemplateAssets/static-1.262/img/hs_default_template_images/modules/Follow+Me+-+Email/mail_circle_grey.png\" alt=\"Email\" height=\"25\" style=\"outline:none; text-decoration:none; border:none; width:auto!important; height:25px!important; vertical-align:middle\" valign=\"middle\" width=\"auto\">\r\n                </a>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td><td class=\"social-network-cell\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n        <table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module_single\">\r\n          <tbody>\r\n            <tr>\r\n              <td class=\"display_block_on_small_screens\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:8px 5px; line-height:1; vertical-align:middle\" valign=\"middle\">\r\n                <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWcd3m2nnW6N1vHY6lZ3mBW6gLPxM6vsh8PW60HRD46SBR0pW4hmXsq73QbDpW5QMGBf96ddKDVWfbSy9l4llrW4rlDSf5PC_r9VHWGXJ32pvJhW74CvHN5qwcSGW6mC1gT9fkCb7W1F1FHZ8rWlq5W3pnJgB1QLrM_W7_6RDB6HsFC-W1pfj5X3L2rMzW76lLh14wrJN-W5mS_Cm6dJhv8W5jKQv_57y7fFW5r-k124B80dZW4WSBqN3rLKQhW7z_dbS6KXYSBW5-hZnh8LyRVmVd2-6q19NT3lW7N3R0q6hxX8xf1grHGK04\" style=\"color:#00a4bd; text-decoration:none !important\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"GdG1tBFF\" target=\"_blank\"><img src=\"https://hs-43785732.f.hubspotemail.net/hs/hsstatic/TemplateAssets/static-1.262/img/hs_default_template_images/modules/Follow+Me+-+Email/website_circle_grey.png\" alt=\"Website\" height=\"25\" style=\"outline:none; text-decoration:none; border:none; width:auto!important; height:25px!important; vertical-align:middle\" valign=\"middle\" width=\"auto\">\r\n                </a>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n</div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section-9\" class=\"hse-section hse-section-last\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff; padding-bottom:20px; padding-top:20px\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-bottom:20px; padding-top:20px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-9-0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module-9-0-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#00578a; word-break:break-word; text-align:center; padding:0px; font-size:0px\">\r\n        <img alt=\"FINAL-H\" src=\"https://hs-43785732.f.hubspotemail.net/hub/43785732/hubfs/FINAL-H.png?width=400&amp;upscale=true&amp;name=FINAL-H.png\" style=\"outline:none; text-decoration:none; max-width:100%; font-size:16px\" width=\"200\" align=\"middle\">\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n<div id=\"hs_cos_wrapper_module-9-0-1\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table role=\"presentation\" class=\"hse-footer hse-secondary\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family:Arial, sans-serif; font-size:12px; line-height:135%; color:#23496d; margin-bottom:0; padding:0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; text-align:center; margin-bottom:0; line-height:135%; padding:10px 20px\">\r\n        <p style=\"font-family:Arial, sans-serif;font-size:12px;font-weight:normal;text-decoration:none;font-style:normal;color:#00578A\">\r\n          Epilog Laser, 16371 Table Mountain Parkway, Golden, Colorado 80403, USA, +1 303 277 1188\r\n        </p>\r\n        <p>\r\n          <a data-unsubscribe=\"true\" href=\"https://hs-43785732.s.hubspotemail.net/hs/preferences-center/en/direct?data=W2nXS-N30h-G9W4tdf-h2YfYvSW2vQRYX2MQhsCW3SN7kX2WfgfFW382GZb1ZkvfHW2nT5rf3QZLvJW1BfFpb236SclW2KQRZ_1BL5z2W1_8Z4n2YFKMtW4phBDc3T5S_lW34876P3NNBC9W3LFglL2qXJnqW4rqWRX3FfMtvW4kkJHv41JcZpW47KKr047tnFWW3NNvkY1Bpf07W1QzRLh3LGWlhW49mHcW2WLXBRW4hv9fF1VbnnVW4rb0S61VcH-2W41Q1M44hnLqHW41Fl7h2PyhzYW32nQhp3DShCWW32F6XZ3VRDQSW47BZkx1_b6p8W3GMx6l4ry3MKW36kRQl3BWSV_W2s__6G4rjDV3W2sZ3Kg1_pmRjW1SkdPv2YM5qvW3M37wc2xZYSHW2qVzDx4mC0SbW2KQ2zb3484HMW4tl4xR2sWfzVW49lTMb3bvf4hW40024r22WRqKW3dr-wN2nTzWzW2KJBcJ2r88_vW4t4nsl3SXTZQW4pqJgd3QLLf0W3C7KMJ2RB8CzW3zdZFQ34x2M0W2-KbBW43YNmgW4r5StM4t7F1-W4rpHnm2CJqG5W2KQW7l2TghH0W3dhFSD1Z9y7hW3LTM4c4mKfmzW2zx2zm4tz65xW3Q_3264kFNXp0&amp;utm_source=hs_email&amp;utm_medium=email&amp;utm_content=387431533&amp;_hsenc=p2ANqtz--AQVdhKIEmKR8o8c0BNqeb1hs3Amquwzk_Ye7kCnBskTF-Z-EP4K-tI9xlD42PUlSnYDgVcGcgK0ffS6dCNbHaM42R_g&amp;_hsmi=387431533\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:12px; color:#00578A; font-weight:normal; text-decoration:underline; font-style:normal\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"SFRZzEXk\" target=\"_blank\">Unsubscribe</a>\r\n          <a data-unsubscribe=\"true\" href=\"https://hs-43785732.s.hubspotemail.net/hs/preferences-center/en/page?data=W2nXS-N30h-G9W4tdf-h2YfYvSW2vQRYX2MQhsCW3SN7kX2WfgfFW382GZb1ZkvfHW2nT5rf3QZLvJW1BfFpb236SclW2KQRZ_1BL5z2W1_8Z4n2YFKMtW4phBDc3T5S_lW34876P3NNBC9W3LFglL2qXJnqW4rqWRX3FfMtvW4kkJHv41JcZpW47KKr047tnFWW3NNvkY1Bpf07W1QzRLh3LGWlhW49mHcW2WLXBRW4hv9fF1VbnnVW4rb0S61VcH-2W41Q1M44hnLqHW41Fl7h2PyhzYW32nQhp3DShCWW32F6XZ3VRDQSW47BZkx1_b6p8W3GMx6l4ry3MKW36kRQl3BWSV_W2s__6G4rjDV3W2sZ3Kg1_pmRjW1SkdPv2YM5qvW3M37wc2xZYSHW2qVzDx4mC0SbW2KQ2zb3484HMW4tl4xR2sWfzVW49lTMb3bvf4hW40024r22WRqKW3dr-wN2nTzWzW2KJBcJ2r88_vW4t4nsl3SXTZQW4pqJgd3QLLf0W3C7KMJ2RB8CzW3zdZFQ34x2M0W2-KbBW43YNmgW4r5StM4t7F1-W4rpHnm2CJqG5W2KQW7l2TghH0W3dhFSD1Z9y7hW3LTM4c4mKfmzW2zx2zm4tz65xW3Q_3264kFNXp0&amp;utm_source=hs_email&amp;utm_medium=email&amp;utm_content=387431533&amp;_hsenc=p2ANqtz--AQVdhKIEmKR8o8c0BNqeb1hs3Amquwzk_Ye7kCnBskTF-Z-EP4K-tI9xlD42PUlSnYDgVcGcgK0ffS6dCNbHaM42R_g&amp;_hsmi=387431533\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:12px; color:#00578A; font-weight:normal; text-decoration:underline; font-style:normal\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"qjPJqCop\" target=\"_blank\">Manage preferences</a>\r\n        </p>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div></div>\r\n          </td>\r\n        </tr>\r\n      </tbody></table>\r\n    </div>\r\n  \r\n<img src=\"https://d583HW04.na1.hubspotlinks.com/Cto/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHW4jRV-l8fYxnn31Sg1\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"display:none!important;min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important\"></body></html>','Act now and take delivery by Dec. 31!\r\n\r\nPRODUCTS\r\n(https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWcx3lcq-W7lCdLW6lZ3p_W1SYL8c8-Mf_LW4chNGw8N-tLdVt1ljS4vK9qhW67vybw5L5LJ3W6bzv4S153Nh_W5qWWNX21gsF6W83N4h_62j69CW7Q0Rhf6b-jdtW6Qpd9Q5SXKVBW3-wq-42yb8k9W5xhy7V4szCdFW41L7LF5MP-7VW1h5mnJ3wqtjFW8WR9JV8Q4JCHW5FrRz41TtFXHW4kfnk-4nvLR2W86tPJr7nGm9GW4dlPpH4b5q4xW7M8vdw3qk4R3W5d4SjM8FLGQJW89yfKm6V4zPWVDGlN_4-xzgpW4WBj6J2t7706W7s3mXG69XtCFf4GCCCj04 )\r\n\r\nHOW IT WORKS\r\n(https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWcR3lcq-W7Y8-PT6lZ3q0W34BBpz6vjPtqN3-LVsftYzzqW7cWQBy4dDYD8V9Kklg13qzbQW47HcT71GG1ThW2p2f4g5DMS8xW1g8K7Q5Cp2RWW41WbVk17lQVDW9dCZNG3gwFNZW3wk89r61szs4W4_2PMp1J03srVl3p_s87Mdh_N3TgfFm6NN9VW4C60jz4S1DJ8W7Pcrdv7NlkyFN27mZ53ZfDbrW1kyHJD8WrPx0W5VJ28x52pfhgW4wGyBw4VGbMsVqv0gr5LkXpDW1Qbxv67678rwW6wLq1h8yddzHW8n83Q06fcnCQTKbNp8yhHFVN2fqq324DP0pW1LXy5z8DNTvSf6189n-04 )\r\n\r\nON SALE!\r\n(https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWbY3lcq-W69sMD-6lZ3m8W8qcCFz1RvPxRW4HZcKh6lkq60W4lLs2C223Q_fW49ZHpM8lwy4cN7rWZ-vkmxLgW2Cvgs96pPlBBVwc6td3FpP1NW2RJjDs5KGfLgW8JbQQq5Lf45LV-WtkC7ZWXsBW6CJhxV2z-HTgN176pRdP8G6CW3PWfNh1hC99WW40wT0F6ZCmWDW96ZKzH1RT4TYW907d0Y2h6Vn-W8nVbWh5WZmjyW85YM051NNlmMW6Lqp0X8Mh-72W74QwyB7-Tdthf8d0l5P04 )\r\n\r\nHi Rick,\r\n\r\nLooking to make a smart investment before the year ends? When you purchase and take delivery of an Epilog Laser system by December 31, 2025, you could take advantage of US Tax Code Section 179. This powerful resource allows you to deduct the entire cost of qualifying equipment, like an Epilog Laser machine, from your taxable income in the year the equipment is purchased and put into use.\r\n\r\nWhy It’s a Big Deal:\r\n\r\n- Immediate tax savings — no waiting for depreciation\r\n- Lower your 2025 tax bill\r\n- Free up cash for other business needs\r\n\r\nGet the full scoop on our blog (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWcR3lcq-W7Y8-PT6lZ3lxW8CrB_F2SJxrYW8S64wB8jxYPPW3HzZhV3F3y1yW6m0tqF48yNk4W5vdDXx5vSJJ1W8Njz3x2SdkGvW2QL4s74PzwcDW2pfnWw87DVVcW3_tSJ27z_rHJW63391K2NxYhRW39V2Py7PKvzNW138Z0K2DfWk5W38kswc8HLtRYN772yKhmpWPmW5Ss5Tm53-QxhW8G6ygx6kX3p6W5vt6x45QkZFKW4lsNBT7yb1GvW4k4BN92SQfmRVlZcRG4jvGtbW2lpWLR2Yb7VNW2RjSQ44L5N6gW4PJ8Q16gTz6TW3PK1bz7tygsjN5pjqM41zdP1W8hZ8h51K3FMqf57FWf204 ) !\r\n\r\nmachine-swap-800 (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWcx3lcq-W7lCdLW6lZ3p_W1SYL8c8-Mf_LW4chNGw8N-tLdVt1ljS4vK9qhW67vybw5L5LJ3W6bzv4S153Nh_W5qWWNX21gsF6W83N4h_62j69CW7Q0Rhf6b-jdtW6Qpd9Q5SXKVBW3-wq-42yb8k9W5xhy7V4szCdFW41L7LF5MP-7VW1h5mnJ3wqtjFW8WR9JV8Q4JCHW5FrRz41TtFXHW4kfnk-4nvLR2W86tPJr7nGm9GW4dlPpH4b5q4xW7M8vdw3qk4R3W5d4SjM8FLGQJW89yfKm6V4zPWVDGlN_4-xzgpW4WBj6J2t7706W7s3mXG69XtCFf4GCCCj04 )\r\n\r\nTake Advantage before time runs out!\r\n\r\nContact us today for pricing information and to set up a demonstration! → (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWcR3pyd0W7Y8-PT6lZ3nhW4SQRnJ5MWWKrW3N9zT11_VbmWN68j4xKBbB4XW5JWcvd6wTmQWW2Kq3jz3NyjV-W86pt7V51PVfjW4L_lvw8stjh_N2hJ06crwWf_W2Cn9785nHr6BW7XPhrV3DHpyBW8JPZcp55mKsdW7x2SGv2LGfD0W8b6jrf7ckX1tW1G6L_M1JTB1cVfJmyl102193N3V8S1pjnNhWVmJxB44vRrNXVrFrkK5ktXV0W8JLZKY1K36CvN7CKgDs_XJRGW4Wk7Vl1KCrwNW7lV2QN5F5C3bW3fNrbh1jlDTsW6wdJ3Y4lDLK3VdkX1C6_7G2jW2v3z_K94Qptkf14_Fy204 )  Or visit our shop right now and purchase online!\r\n\r\n \r\n\r\nBetter hurry though – these savings only work if you complete your purchase and installation before December 31!\r\n\r\n*Please consult a tax professional to ensure this benefit applies to your business\r\n\r\nChoose the Power of Epilog\r\n\r\nWith so many laser machine options out there, here’s why Epilog stands apart:\r\n\r\n- Designed and manufactured in Golden, CO, with precision and care.\r\n- Reliable, long-lasting CO2 RF metal laser tubes made in the USA.\r\n- US-based technical support and a 2-year warranty for peace of mind.\r\n- Safety-first design—no extra eye protection needed.\r\n- Innovative IRIS™ (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWd63lcq-W8wLKSR6lZ3nRW4qnKlV8CkcBlW1ywZcc8J9p8sW2HjSNw8cHX_xW4Z8JL16zVL31W7Df1lH8z48TmW1zG64q8l6BzcW3x1Lhf1-_R3bW4JZCBk5mr8m-W9bCzSy9lkd5LW8gl9dt5GXBNRVjMrYc3VqQRvW2FB5dP4D_RL4W2QVGQq7Hggp4W1qKHxY6kRXmJW7_DgkV2fn9NvVDmQQ975hGY9N5fZq7PptjtvW7YxWR38jXCX9W7hdR8K1XLHzbV-Lyvp2hP7cHW321Jpt70Y7DGW3VYY476LRG5CW3wqQtX1Mv0KCVSYZ197Fl1ftW1jWSDr4bf5FpW76ZHYK2yZfqLVdmnlr9g1Y4kN8r5KfTygzRHf979DRR04 ) Camera Positioning for effortless accuracy.\r\n\r\nExperience the difference of a trusted partner with 36 years in the laser business.\r\n\r\nYouTube (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWcd3lcq-W6N1vHY6lZ3kzVrJ0653JcKq8W2tC-rv1RJFhfW8LGfwD8TPRHTW7MJS1r8KgzZbW1C_-7k5zTDhlW4wZzlC8bZqCcVbK99m9d5pPYMx3HZ6nw_qCW3JLMdL37Fx4MN9g2HJYqsMkkW4l4VFG6vRrPsW8QRxKb3-86TPW6N27v02DMJckW2sYfpB4XMG_PW8l_Xss1Km9wtN8tRhG3rWrYvW8gZPf98r4XM6W8jCLnB7QNSSKW3GjFP04Yj-hlVDJH1G8-VBVdW3Txcb57VsszgW4SWT876dkBl3f94Hdns04 )\r\n\r\nFacebook (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWcd3lcq-W6N1vHY6lZ3m3W1D7Wlk5KHM2XW6FwFWX85g-MVW6Y-ssg6QmCG2W2Yq1Tk6wHNqWW8cmPhM4r6rM2W47lL_m5-xY_2W2t9Fn93rX5PcW16Zk2V7bfTrhW8D7JB8712MWcW7NKxgH8zjWcZW6ZRCRG5r3zm5W22mNKB7qwXNDN33pR1p1YlpjW58dwZc78yh6MW7NvSXm1604MbW5vMCKz74vyVgW4TFRZR1pRZ0LW3b_wW48CLjZLW2pFnSk1hPFvCW71LPKB4V5S7TW4P7Dsp9l91t_W86KCm15Yk0nZdtdB5K04 )\r\n\r\nInstagram (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWcd3lcq-W6N1vHY6lZ3mJW36zxLC3g7xqVW3J-8f19fX7RgW8Cxn422pHtpzV91bRf8lQyJwW1gtjjy8MNMZRW7ByW7T4rgJmZVGfF-M8Y2ynMV66rqS1sB7CZN8XBCV9X5z1KW3wydLF20M7VVW9ckxMH4j_gRRW23kfnP2Qm9mNW7WnD6h14Zj3jVJQQ4C8G746rW6pMr3S3S5YYkW4Y5L5g99t84yW5Dwn2h5pHZnVW6BRQKJ7D07cVW3TkgyW75ks4SW6JDJC27jQSCsW4m4TmB2cdVMcW4G_-fC6L-c8rf1dY3Dg04 )\r\n\r\nX (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWbY3lcq-W69sMD-6lZ3nRVWQd2q6VjzfZW6npD5_5MY3ZxW42_txP5MZXyGW6TK0DN4kWYhfVZ_vrS6B0-XtVGyP-Z5T7k1CW7LtpZn1ngZXGW4zQWrc96XMsYW6T58pp2DH32HVp61NY7zBrKVW3qv7mb719Rs2W7xWC-Q2jsl7fW30dHjQ3tGkzZW7lFD2L47Dh82W90gfST2BssXMW2YjvdW1rS5_wW1Dy6k48SGBy-W4cDmCB2xZWMTW4hbFRm1zSXFdW3GmBZv8qT722f8QGL8x04 )\r\n\r\nLinkedIn (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWcd3lcq-W6N1vHY6lZ3mDW4WXfsQ2j9VmpN3mKLs2JKYNsW4zH5g915kxSdN1XnyJP5bcXfW7-6W_b8xFsMbN3DTCN_KymyFW9hFGXQ3GxckQW18DmS13FxHp_W8WHFNr7ZWc4XN5cCfsWBm1jzW4mcmj88B_0ZbW4XjThn2Fnv6SW43yX3z5m1bPXW72rZrD2t8LJbW9cDGPL8mZXmdN7-HSLwvjPLtW2NZ05r1_qf04VpXlDN1JH0XtW4tC2P95vls10W1L2-_H77BXVHW4Vg4yX6K1DHjW6w6k3c2Xfxnhf1mTWRs04 )\r\n\r\nPinterest (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWcd3lcq-W6N1vHY6lZ3myW4X3hJL7Rny-MW3ctWNy61QTPVW1PS8xL91zpRbW3d2-Nk4tvzBrVW1PR52DQHCxW7Rsssv8nk1ncW8TXMYh3rY19RW7kMYRJ8kLt_LW5RfMsY67zlrhN8FKr76K8knTW8GDkQR166_fjW15WbHF22V2-sW90QVJn3z4qV9N2TVhnvYDwXRV4HRFd4ln72BVSR7SC2r8lY3W1xPJbj8zgzbPW2b7d1r62QYTxW55KTZ65fqPr4VDg4JR16PyfcW2pHp9k8lcQpvW5hNjfV5NsyM_f8vG_Xg04 )\r\n\r\nEmail (mailto:sales@epiloglaser.com)\r\n\r\nWebsite (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VWhm0r2yWv9KW6T8cQ-80qlGsW7Kkhd55FgvlHN4jRWbY3lcq-W69sMD-6lZ3pwW3kV4wf7l1ZLYW7VrWMM34Vx5BW6nr8dZ7-c7GwW4DvQZf8k9ZgZW2dSmzD97tmLpN8nQ41gP82XFN5RjkSSFX-XvVgcxrW5L4WDGW29ytpx7SzKWHW8X2JD17L5tgpW8ckZB98xYkGJN1FYDTGjgmvRW2Sdtk91Tp39SW4QgfRW4T-1NbW6dfV9p3hbYf2N8cbKm6v4BTSVCMFK31G6cnNVTmLWM16fNC3W4M9TvX4-GgK5W6rFRs66jPqgCdSY8_Y04 )\r\n\r\nEpilog Laser, 16371 Table Mountain Parkway, Golden, Colorado 80403, USA, +1 303 277 1188\r\n\r\nUnsubscribe (https://hs-43785732.s.hubspotemail.net/hs/preferences-center/en/direct?data=W2nXS-N30h-G9W4tdf-h2YfYvSW2vQRYX2MQhsCW3SN7kX2WfgfFW382GZb1ZkvfHW2nT5rf3QZLvJW1BfFpb236SclW2KQRZ_1BL5z2W1_8Z4n2YFKMtW4phBDc3T5S_lW34876P3NNBC9W3LFglL2qXJnqW4rqWRX3FfMtvW4kkJHv41JcZpW47KKr047tnFWW3NNvkY1Bpf07W1QzRLh3LGWlhW49mHcW2WLXBRW4hv9fF1VbnnVW4rb0S61VcH-2W41Q1M44hnLqHW41Fl7h2PyhzYW32nQhp3DShCWW32F6XZ3VRDQSW47BZkx1_b6p8W3GMx6l4ry3MKW36kRQl3BWSV_W2s__6G4rjDV3W2sZ3Kg1_pmRjW1SkdPv2YM5qvW3M37wc2xZYSHW2qVzDx4mC0SbW2KQ2zb3484HMW4tl4xR2sWfzVW49lTMb3bvf4hW40024r22WRqKW3dr-wN2nTzWzW2KJBcJ2r88_vW4t4nsl3SXTZQW4pqJgd3QLLf0W3C7KMJ2RB8CzW3zdZFQ34x2M0W2-KbBW43YNmgW4r5StM4t7F1-W4rpHnm2CJqG5W2KQW7l2TghH0W3dhFSD1Z9y7hW3LTM4c4mKfmzW2zx2zm4tz65xW3Q_3264kFNXp0&_hsenc=p2ANqtz-8gvOnXdHxJu2UHXVVzR-B7c71Yd9rdh3jXSNta5mMh25lv0Jg-9xi0YNZoZ3EabcM0ENfIykSnsXWgyV1ga4ee5rBWXQ&_hsmi=387431533 )\r\nManage preferences (https://hs-43785732.s.hubspotemail.net/hs/preferences-center/en/page?data=W2nXS-N30h-G9W4tdf-h2YfYvSW2vQRYX2MQhsCW3SN7kX2WfgfFW382GZb1ZkvfHW2nT5rf3QZLvJW1BfFpb236SclW2KQRZ_1BL5z2W1_8Z4n2YFKMtW4phBDc3T5S_lW34876P3NNBC9W3LFglL2qXJnqW4rqWRX3FfMtvW4kkJHv41JcZpW47KKr047tnFWW3NNvkY1Bpf07W1QzRLh3LGWlhW49mHcW2WLXBRW4hv9fF1VbnnVW4rb0S61VcH-2W41Q1M44hnLqHW41Fl7h2PyhzYW32nQhp3DShCWW32F6XZ3VRDQSW47BZkx1_b6p8W3GMx6l4ry3MKW36kRQl3BWSV_W2s__6G4rjDV3W2sZ3Kg1_pmRjW1SkdPv2YM5qvW3M37wc2xZYSHW2qVzDx4mC0SbW2KQ2zb3484HMW4tl4xR2sWfzVW49lTMb3bvf4hW40024r22WRqKW3dr-wN2nTzWzW2KJBcJ2r88_vW4t4nsl3SXTZQW4pqJgd3QLLf0W3C7KMJ2RB8CzW3zdZFQ34x2M0W2-KbBW43YNmgW4r5StM4t7F1-W4rpHnm2CJqG5W2KQW7l2TghH0W3dhFSD1Z9y7hW3LTM4c4mKfmzW2zx2zm4tz65xW3Q_3264kFNXp0&_hsenc=p2ANqtz-8gvOnXdHxJu2UHXVVzR-B7c71Yd9rdh3jXSNta5mMh25lv0Jg-9xi0YNZoZ3EabcM0ENfIykSnsXWgyV1ga4ee5rBWXQ&_hsmi=387431533 )',0,0,0,0,0,0,'2025-10-30 15:17:56','2025-12-09 19:30:36','2025-12-09 19:30:36','2025-12-09 19:30:36',NULL,NULL,NULL),
(911,4,'<1761840946269.02223331-4523-40cc-8857-40c84c2e7e29@bf01.hubspotstarter.net>',NULL,NULL,'Meet the New Prospecting Superpower in SAM Directory','contact=sam.directory@hubspotstarter.hs-send.com','SAM Directory','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional //EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:v=\"urn:schemas-microsoft-com:vml\" lang=\"en\"><head>\r\n    <title>Meet the New Prospecting Superpower in SAM Directory</title>\r\n    <meta property=\"og:title\" content=\"Meet the New Prospecting Superpower in SAM Directory\">\r\n    <meta name=\"twitter:title\" content=\"Meet the New Prospecting Superpower in SAM Directory\">\r\n    \r\n    \r\n    \r\n<meta name=\"x-apple-disable-message-reformatting\">\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\r\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <!--[if gte mso 9]>\r\n  <xml>\r\n    <o:OfficeDocumentSettings>\r\n      <o:AllowPNG/>\r\n      <o:PixelsPerInch>96</o:PixelsPerInch>\r\n    </o:OfficeDocumentSettings>\r\n    <w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\">\r\n      <w:DontUseAdvancedTypographyReadingMail/>\r\n    </w:WordDocument>\r\n  </xml>\r\n  \r\n  <style>\r\n    ul > li {\r\n      text-indent: -1em;\r\n    }\r\n  </style>\r\n<![endif]-->\r\n<!--[if mso]>\r\n<style type=\"text/css\">\r\n body, td {font-family: Arial, Helvetica, sans-serif;}\r\n .hse-body-wrapper-table {background-color: #EAF0F6;}\r\n</style>\r\n<![endif]-->\r\n<!--[if mso | IE]>\r\n  <style type=\"text/css\">\r\n    .hse-column-container { border: none !important; padding: 0 !important; }\r\n  </style>\r\n<![endif]-->\r\n    \r\n      \r\n  \r\n  \r\n    \r\n  <meta name=\"generator\" content=\"HubSpot\"><meta property=\"og:url\" content=\"http://46959153.hs-sites.com/-temporary-slug-c578442d-00de-4b57-9cd0-556ecd0589db\"><meta name=\"robots\" content=\"noindex,follow\"><!--[if !((mso)|(IE))]><!-- --><style type=\"text/css\">@media only screen and (max-width:639px){img.stretch-on-mobile,.hs_rss_email_entries_table img,.hs-stretch-cta .hs-cta-img{height:auto !important;width:100% !important}\r\n.display_block_on_small_screens{display:block}.hs_padded{padding-left:20px !important;padding-right:20px !important}\r\n.hs-hm,table.hs-hm{display:none}.hs-hd{display:block !important}table.hs-hd{display:table !important}\r\n}@media only screen and (max-width:639px){.hse-border-m{border-left:1px solid #eaf0f6 !important;border-right:1px solid #eaf0f6 !important;box-sizing:border-box}\r\n.hse-border-bottom-m{border-bottom:1px solid #eaf0f6 !important}.hse-border-top-m{border-top:1px solid #eaf0f6 !important}\r\n.hse-border-top-hm{border-top:none !important}.hse-border-bottom-hm{border-bottom:none !important}\r\n}.moz-text-html .hse-column-container{max-width:600px !important;width:600px !important}\r\n.moz-text-html .hse-column{display:table-cell;vertical-align:top}.moz-text-html .hse-section .hse-size-6{max-width:300px !important;width:300px !important}\r\n.moz-text-html .hse-section .hse-size-12{max-width:600px !important;width:600px !important}\r\n@media only screen and (min-width:640px){.hse-column-container{max-width:600px !important;width:600px !important}\r\n.hse-column{display:table-cell;vertical-align:top}.hse-section .hse-size-6{max-width:300px !important;width:300px !important}\r\n.hse-section .hse-size-12{max-width:600px !important;width:600px !important} }@media only screen and (max-width:639px){.hse-body-wrapper-td{padding-top:20px !important}\r\n#section-0 .hse-column-container{padding-top:10px !important;padding-bottom:10px !important}\r\n#section-0 .hse-column-container{background-color:#eaf0f6 !important} }@media only screen and (max-width:639px){ #section-1 .hse-column-container{padding-top:10px !important;padding-bottom:0px !important}\r\n#section-1 .hse-column-container{background-color:#fff !important} }@media only screen and (max-width:639px){ #section-2 .hse-column-container{padding-top:0px !important;padding-bottom:0px !important}\r\n#section-2 .hse-column-container{background-color:#fff !important} }@media only screen and (max-width:639px){ #section-3 .hse-column-container{padding-top:0px !important;padding-bottom:0px !important}\r\n#section-3 .hse-column-container{background-color:#fff !important} }@media only screen and (max-width:639px){ #section-4 .hse-column-container{padding-top:0px !important;padding-bottom:0px !important}\r\n#section-4 .hse-column-container{background-color:#fff !important} }@media only screen and (max-width:639px){ #section-5 .hse-column-container{padding-top:20px !important;padding-bottom:20px !important}\r\n#section-5 .hse-column-container{background-color:#fff !important} }@media only screen and (max-width:639px){.hse-body-wrapper-td{padding-bottom:20px !important}\r\n#section-6 .hse-column-container{padding-top:30px !important;padding-bottom:0px !important;background-color:transparent !important}\r\n#section-6 .hse-column-container{background-color:transparent !important} }</style><!--<![endif]--><style type=\"text/css\">#hs_body #hs_cos_wrapper_main a[x-apple-data-detectors]{color:inherit !important;text-decoration:none !important;font-size:inherit !important;font-family:inherit !important;font-weight:inherit !important;line-height:inherit !important}\r\na{text-decoration:underline}p{margin:0}body{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale}\r\ntable{border-spacing:0;mso-table-lspace:0;mso-table-rspace:0}table,td{border-collapse:collapse}\r\nimg{-ms-interpolation-mode:bicubic}p,a,li,td,blockquote{mso-line-height-rule:exactly}\r\n.ShadowHTML p,.sh-modified-inline p{margin:0}</style></head>\r\n  <body id=\"hs_body\" bgcolor=\"#EAF0F6\" style=\"margin:0 !important; padding:0 !important; font-family:Arial, sans-serif; font-size:15px; color:#23496d; word-break:break-word\">\r\n    <div id=\"preview_text\" style=\"display:none;font-size:1px;color:#EAF0F6;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;\" lang=\"en\">Click the button, get contact info.</div>\r\n    \r\n<!--[if gte mso 9]>\r\n<v:background xmlns:v=\"urn:schemas-microsoft-com:vml\" fill=\"t\">\r\n    <v:fill type=\"tile\" size=\"100%,100%\" color=\"#ffffff\"/>\r\n</v:background>\r\n<![endif]-->\r\n    <div class=\"hse-body-background\" lang=\"en\" style=\"background-color:#eaf0f6\" bgcolor=\"#eaf0f6\">\r\n      <table role=\"presentation\" class=\"hse-body-wrapper-table\" cellpadding=\"0\" cellspacing=\"0\" style=\"margin:0; padding:0; width:100% !important; min-width:320px !important; height:100% !important\" width=\"100%\" height=\"100%\">\r\n        <tbody><tr>\r\n          <td class=\"hse-body-wrapper-td\" valign=\"top\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#23496d; word-break:break-word; padding-top:20px; padding-bottom:20px\">\r\n            <div id=\"hs_cos_wrapper_main\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_dnd_area\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"dnd_area\">  <div id=\"section-0\" class=\"hse-section hse-section-first\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#eaf0f6; padding-bottom:10px; padding-top:10px\" bgcolor=\"#eaf0f6\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#eaf0f6\">\r\n      <tr style=\"background-color:#eaf0f6;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-bottom:10px; padding-top:10px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-0-0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module-0-0-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#23496d; word-break:break-word; text-align:center; padding:10px 20px; font-size:0px\">\r\n        <img alt=\"SAM_LogoInline_Blue\" src=\"https://hs-46959153.f.hubspotstarter.net/hub/46959153/hubfs/SAM_LogoInline_Blue.png?width=1120&amp;upscale=true&amp;name=SAM_LogoInline_Blue.png\" style=\"outline:none; text-decoration:none; max-width:100%; font-size:16px\" width=\"560\" align=\"middle\">\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section-1\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff; padding-top:10px\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-top:10px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-1-0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module-1-0-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#23496d; word-break:break-word; text-align:center; padding:10px 20px; font-size:0px\">\r\n        <a href=\"https://d5xcZZ04.na1.hubspotlinksstarter.com/Ctc/UE+113/d5xcZZ04/VVn01S1QcywFW7tzbX27kb-SjW1vWpFD5Fgz_KN3pwdDC3m2nnW6N1vHY6lZ3kWW5Q9b2c1prfdDW6r1TLj6kjfmsW23YBFc2K5m-4W1S5bgJ39WVzwW7pSNXJ36bwrGVS-v574gwpWxW1KTmhX39_CgvW79_-fb4Mj-GdW1F2--J1cwpG3W6TPzVr5QVyyFW5L_PwX8Zz-gvW8PWTZM47G6BxW1QD87j3SnfvdW3Y9dZQ2JC0BvW67Fmw95DkvJbW3M1lRJ8Vt05VVFP9qH92-7wKW3MWwVW7nbdLhW6wYv9V4d0wBhW1TtCd96xBk0rW2P8CRS3fDvmzW1B1B8F2D6mBPf11nNvW04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"qRN/CSBa\">\r\n        <img alt=\"Untitleddfggfd\" src=\"https://hs-46959153.f.hubspotstarter.net/hub/46959153/hubfs/Untitleddfggfd.png?width=1120&amp;upscale=true&amp;name=Untitleddfggfd.png\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"560\" align=\"middle\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section-2\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-2-0\" class=\"hse-column hse-size-12\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#23496d; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module-2-0-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module-2-0-0_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h1 style=\"margin:0; line-height:175%; font-size:24px\">This One Button Does So Much</h1>\r\n<p style=\"line-height:175%\">The new “Enrich” feature turns every SAM contractor profile into a living contact sheet. Tap it once and instantly see who’s behind the company - decision-makers, phone numbers, LinkedIn profiles, and more.</p></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#23496d; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module-2-0-1\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#00a4bd\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#23496d; word-break:break-word; border-radius:8px; cursor:auto; background-color:#00a4bd; mso-padding-alt:12px 18px\">\r\n        <a href=\"https://d5xcZZ04.na1.hubspotlinksstarter.com/Ctc/UE+113/d5xcZZ04/VVn01S1QcywFW7tzbX27kb-SjW1vWpFD5Fgz_KN3pwdDC3m2nnW6N1vHY6lZ3p9VN1FL916w7Z9Vb_6Z46NcZ5zW3z3DLB3MfV2bN1X620zw-0mPVJ2q788y5gbCW8Ppps_7rC4hFW1qDVTP5cYY_5W6Cgfv97fT-sfN1TxgGkGkPNfVXFyn-5NhVsmW5w1r826cgfcMW3kgKKr1F561sW3ylxx574hgNHW6Jj1vm7vsLnjW2VvSkl57jZFYW7sQ5VV3Cw4FJW8SZylY6kp742W62sv8H6_CrqFW44z08T8BN6vjW4Pw9pf85cx9BW8qSkS-5xMN8jVQQqhC7CZw0xf1_wbwT04\" target=\"_blank\" style=\"color:#00a4bd; font-size:16px; font-family:Arial, sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:12px 18px; display:block\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"b+Wr9hhq\">\r\n          <strong style=\"color:#ffffff;font-weight:normal;text-decoration:none;font-style:normal;\">Try It Now</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div></td></tr></tbody></table>\r\n<div id=\"hs_cos_wrapper_module_17618396390271\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#23496d; word-break:break-word; text-align:center; padding:10px 20px; font-size:0px\">\r\n        <a href=\"https://d5xcZZ04.na1.hubspotlinksstarter.com/Ctc/UE+113/d5xcZZ04/VVn01S1QcywFW7tzbX27kb-SjW1vWpFD5Fgz_KN3pwdDC3m2nnW6N1vHY6lZ3mnW2BNls-4D9q_0W7SZ4hF8qFPC9W6KZd8h48fs66W2mxz7j1KXMzrW4qkjsC6G_x5sW4m13dR1P3_HrW12xXLD4mtxH_W8gt7ZY6bcS0nN2PdPt0M01l5W2N7hht20T0m5W5Qm9C73xGr-PW3cW9gQ7BvvfxW2vmPbv6H9DqgW8Dmwwh2NCJxVW82rpvS8qhRC9W6XRd4P271FB5W67HBxL71H07kW5RZ6Db1y29bwW87mtL58X0QLmW87SgP743S8XCW8wmbV-6njzvmW1DgQLS66fLnBc90DY04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"2\" data-hs-link-id-v2=\"yWLRhOhS\">\r\n        <img alt=\"Screenshot 2025-10-30 115306\" src=\"https://hs-46959153.f.hubspotstarter.net/hub/46959153/hubfs/Screenshot%202025-10-30%20115306.png?width=1120&amp;upscale=true&amp;name=Screenshot%202025-10-30%20115306.png\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"560\" align=\"middle\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section-3\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:300px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"300\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:300px\">\r\n<![endif]-->\r\n<div id=\"column-3-0\" class=\"hse-column hse-size-6\">\r\n  <div id=\"hs_cos_wrapper_module-3-0-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#23496d; word-break:break-word; text-align:center; padding:10px 20px; font-size:0px\">\r\n        <a href=\"https://d5xcZZ04.na1.hubspotlinksstarter.com/Ctc/UE+113/d5xcZZ04/VVn01S1QcywFW7tzbX27kb-SjW1vWpFD5Fgz_KN3pwdDC3m2nnW6N1vHY6lZ3pZW7gwTmW6jRYmNW6VXyTR6HRFb7W7wSn7H32v_5kW8p1kdl7ty-6wMbBBfPk20-3W4c8P-y54DDy9V8Cklk37Ph8dW2pHjD_6xRnCKW6cd3H63wQ4JdW7hZfYw6Rj9rvW2_30yJ8BMN4VW1N6CFD6pt8V2W2rqX5l3NbpkpW94H8CR7LWkRTW92k3DD6TLk_SW2_sHcq3HyN4xW4z9pCH5_15C2W1gyP1s2YSHkWW8L1yNl4Jhj17W1R4l5g7KbG1BW8scpcZ2yR-60W6hdpVH4KDF8vf2T1dvx04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"3\" data-hs-link-id-v2=\"sptRxxQv\">\r\n        <img alt=\"Screenshot 2025-10-30 114623-1\" src=\"https://hs-46959153.f.hubspotstarter.net/hub/46959153/hubfs/Screenshot%202025-10-30%20114623-1.png?width=520&amp;upscale=true&amp;name=Screenshot%202025-10-30%20114623-1.png\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"260\" align=\"middle\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#23496d; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module-3-0-1\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module-3-0-1_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h1 style=\"margin:0; line-height:175%; font-size:24px\">Enrich POCs</h1>\r\n<p style=\"line-height:175%\">Take the standard SAM contacts further with updated phone numbers, emails, and LinkedIn profiles so you can actually reach the people listed.</p></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:300px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"300\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:300px\">\r\n<![endif]-->\r\n<div id=\"column-3-1\" class=\"hse-column hse-size-6\">\r\n  <div id=\"hs_cos_wrapper_module-3-1-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#23496d; word-break:break-word; text-align:center; padding:10px 20px; font-size:0px\">\r\n        <a href=\"https://d5xcZZ04.na1.hubspotlinksstarter.com/Ctc/UE+113/d5xcZZ04/VVn01S1QcywFW7tzbX27kb-SjW1vWpFD5Fgz_KN3pwdDC3m2nnW6N1vHY6lZ3lxN8q63Rym79jmW18sP5D7JKPKPVJZ0hr38ZvrDW6tQJSj6_L5wVW5_vN3P7vYQrFW8RRVpT7TbFLbW23NqGS8Y1tZTW8N8j0p7LpWJqW5l3Gl544CNNCW14bHk03Bnh-pW1SKx8f1hhmQbW35tD_w4l-_W5W7br7Qc5pqy4PW2hVrGX304JNbW4krKtH4qhL9sW90WX3v5n0RjgN9lw0cX72QxmW30TNxm5RP6HjW7n9zmy6Lh4sjW90zRs24-VwsRW1lLN478X-sWfW8BBtSW57q-xpdJjJBY04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"4\" data-hs-link-id-v2=\"OU6OhN47\">\r\n        <img alt=\"Screenshot 2025-10-30 114640-1\" src=\"https://hs-46959153.f.hubspotstarter.net/hub/46959153/hubfs/Screenshot%202025-10-30%20114640-1.png?width=520&amp;upscale=true&amp;name=Screenshot%202025-10-30%20114640-1.png\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"260\" align=\"middle\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#23496d; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module-3-1-1\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module-3-1-1_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h1 style=\"margin:0; line-height:175%; font-size:24px\">Find Everyone Else</h1>\r\n<p style=\"line-height:175%\">See who else is at the company, from executives to project managers,&nbsp;and uncover new contacts that don’t appear in the SAM record.</p></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section-4\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-4-0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module-4-0-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table role=\"none\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"vertical-align:top\" width=\"100%\">\r\n  <tbody><tr>\r\n    <td align=\"center\" style=\"font-family:Arial, sans-serif; color:#23496d; font-size:0; word-break:break-word\">\r\n      <p style=\"font-size:1px;border-top:1px solid #99acc2;width:100%;margin:0 auto;\"></p>\r\n      <!--[if mso]>\r\n        <table role=\"none\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-size:1px;border-top:1px solid #99acc2;width:600px;\">\r\n          <tr>\r\n            <td style=\"height:0;line-height:0\">&nbsp;</td>\r\n          </tr>\r\n        </table>\r\n      <![endif]-->\r\n    </td>\r\n  </tr>\r\n</tbody></table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section-5\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff; padding-bottom:20px; padding-top:20px\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-bottom:20px; padding-top:20px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-5-0\" class=\"hse-column hse-size-12\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#23496d; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module-5-0-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module-5-0-0_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"line-height:175%; text-align:center\" align=\"center\">Ready to see how enriched data can enhance your outreach and increase your win rate? <br><a href=\"https://d5xcZZ04.na1.hubspotlinksstarter.com/Ctc/UE+113/d5xcZZ04/VVn01S1QcywFW7tzbX27kb-SjW1vWpFD5Fgz_KN3pwdDW3m2nnW7lCdLW6lZ3lKW7VFLS81sRVTSW5FvjHK5g0JkKW23Jmg56Vdtf0W5D80yB4MRtHMW1Gr_zy3w48NcVhHTvT48G8KNW6cZfJZ2TgZGJW5pnRkC642vrcF4bGQRBzyx_W4S6Vm54PC88yW4S86Y54nfpgVN1xLY8dxVZxBW76xVlc2n10nVV1TZsl6cHxlBW6jGJ777VBq5VN1C2MCQqkmssVbhzR11j-py8VDH9gL2v9G5TW5rQF-B55tHtcW635R-G6Xj-cHW7TyCRg8p28xVW7zqjFl17NBB-W41z63987lPSyN375dPLXwhP9f7R0cz004\" rel=\"noopener\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"q9V7+roy\" target=\"_blank\">Schedule a call with a contracting expert</a></p></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section-6\" class=\"hse-section hse-section-last\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; padding-top:30px\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\r\n      <tr>\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-top:30px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-6-0\" class=\"hse-column hse-size-12\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#23496d; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module-6-0-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table role=\"presentation\" class=\"hse-footer hse-secondary\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family:Arial, sans-serif; font-size:12px; line-height:135%; color:#23496d; margin-bottom:0; padding:0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#23496d; word-break:break-word; text-align:center; margin-bottom:0; line-height:135%; padding:10px 20px\">\r\n        <p style=\"font-family:Arial, sans-serif;font-size:12px;font-weight:normal;text-decoration:none;font-style:normal;color:#23496d\">\r\n          SAM Directory, 4869 Brownsboro Road, Suite 101-S, Louisville, KY 40207\r\n        </p>\r\n        <p>\r\n          <a data-unsubscribe=\"true\" href=\"https://hs-46959153.s.hubspotstarter.net/preferences/en/unsubscribe?data=W2nXS-N30h-GmW3ZLLxN2RCV20W2sPr622PLfQPW2MqmvN3gy5NLW3-1-tL1QhNV0W1_vsfs4psmV9W1BCsMQ2Trx7mW2CN5ZR1_qb8lW1XymdW36zn-NW3Y0pK12sMJlbW3jdDX01LCrplW2xwSvX4hPShWW3_MkvK34B1kKW43xdyL1_38LMW3C8x2M1NwcXqW3zgZ4F3_RxClW49khfC2FCGqyW3Vzz8025fhtbW4kncp12xyXKfW1Qzp1V384mltW3BNmCV1_v1ZBW2-q3sv4pjpSSW3VJBkd32gx3WW1_4K_Q1BwVW6W3XXXLw1BJPgzW2Kzxz_4fsP16W2TJGw23M89WVW3XN9Zm3K7B9hW2THN6v3dsL0vW1Xyj4j1QxgbgW2YhCqc2YG8KpW2qPzGD2PyHQSW2Hs5y02FG4k6W2CJ04G4pxVzDW1Bm85k2WJqB0W2CT69522_LynW3ZFjzZ25kYQTW3858xD3QQWBKW4tmLLR3BP_vpW2xXQXV2xXV8JW3R3Dtp218j2TW1SkfSc4fRjS9W3BNgwG3QLc2XW3j8zCw2HRwdgW4cxGkt2vKRhvW1Vpdt-3SQF9WW4kM-kC1LlgzBW2zPBf62vS61NW24_D7x4fFNHhW4rByR53P51M_f3jcQnQ04&amp;utm_source=hs_email&amp;utm_medium=email&amp;utm_content=387639991&amp;_hsenc=p2ANqtz-_cMYPmg1-lvHDPfYuRmTuWmEwoyMLlzMrTX20IcsBhBYW3UYiUZYe_JHe_US0y7i5NTyt26B9PWC6MVsz-1I894_dY9Q&amp;_hsmi=387639991\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:12px; color:#00a4bd; font-weight:normal; text-decoration:underline; font-style:normal\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"SFRZzEXk\" target=\"_blank\">Unsubscribe</a>\r\n          <a data-unsubscribe=\"true\" href=\"https://hs-46959153.s.hubspotstarter.net/preferences/en/manage?data=W2nXS-N30h-GmW3ZLLxN2RCV20W2sPr622PLfQPW2MqmvN3gy5NLW3-1-tL1QhNV0W1_vsfs4psmV9W1BCsMQ2Trx7mW2CN5ZR1_qb8lW1XymdW36zn-NW3Y0pK12sMJlbW3jdDX01LCrplW2xwSvX4hPShWW3_MkvK34B1kKW43xdyL1_38LMW3C8x2M1NwcXqW3zgZ4F3_RxClW49khfC2FCGqyW3Vzz8025fhtbW4kncp12xyXKfW1Qzp1V384mltW3BNmCV1_v1ZBW2-q3sv4pjpSSW3VJBkd32gx3WW1_4K_Q1BwVW6W3XXXLw1BJPgzW2Kzxz_4fsP16W2TJGw23M89WVW3XN9Zm3K7B9hW2THN6v3dsL0vW1Xyj4j1QxgbgW2YhCqc2YG8KpW2qPzGD2PyHQSW2Hs5y02FG4k6W2CJ04G4pxVzDW1Bm85k2WJqB0W2CT69522_LynW3ZFjzZ25kYQTW3858xD3QQWBKW4tmLLR3BP_vpW2xXQXV2xXV8JW3R3Dtp218j2TW1SkfSc4fRjS9W3BNgwG3QLc2XW3j8zCw2HRwdgW4cxGkt2vKRhvW1Vpdt-3SQF9WW4kM-kC1LlgzBW2zPBf62vS61NW24_D7x4fFNHhW4rByR53P51M_f3jcQnQ04&amp;utm_source=hs_email&amp;utm_medium=email&amp;utm_content=387639991&amp;_hsenc=p2ANqtz-_cMYPmg1-lvHDPfYuRmTuWmEwoyMLlzMrTX20IcsBhBYW3UYiUZYe_JHe_US0y7i5NTyt26B9PWC6MVsz-1I894_dY9Q&amp;_hsmi=387639991\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:12px; color:#00a4bd; font-weight:normal; text-decoration:underline; font-style:normal\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"qjPJqCop\" target=\"_blank\">Manage preferences</a>\r\n        </p>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div></div>\r\n          </td>\r\n        </tr>\r\n      </tbody></table>\r\n    </div>\r\n  \r\n<img src=\"https://d5xcZZ04.na1.hubspotlinksstarter.com/Cto/UE+113/d5xcZZ04/VVn01S1QcywFW7tzbX27kb-SjW1vWpFD5Fgz_KW3pwdnK8fYCj-31_C1\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"display:none!important;min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important\"></body></html>','Click the button, get contact info.\r\n\r\nUntitleddfggfd (https://d5xcZZ04.na1.hubspotlinksstarter.com/Ctc/UE+113/d5xcZZ04/VVn01S1QcywFW7tzbX27kb-SjW1vWpFD5Fgz_KN3pwdDC3lcq-W6N1vHY6lZ3n3W2mgDVp4nXzQzW1P0Fhl2kQTHcW2JY1Fr6zsxBSW7D91WG2NrxKGW6h8mZk7dvY1QV7nNP16xMs8_VFzrYk8Mp_thW1V2ZBy818cyYW5jb5Wh6FmR8kW97zvTf8Pq9VKW77gjyy1C-brfW79M1xn3Jv-MvW761Y298MjD3-W780TXs9jrxGxW2jBXfZ3_gfcCW4V-_RN3Lk1KfW4r1JMV5dScRBW8D6CMM1pY76kW2vRWP76DpNgFN888gzsggwH8W7H9D9c3FC77bVkR7jL67yDynf2jfwMd04 )\r\n\r\nThis One Button Does So Much\r\n\r\nThe new “Enrich” feature turns every SAM contractor profile into a living contact sheet. Tap it once and instantly see who’s behind the company - decision-makers, phone numbers, LinkedIn profiles, and more.\r\n\r\nTry It Now\r\n(https://d5xcZZ04.na1.hubspotlinksstarter.com/Ctc/UE+113/d5xcZZ04/VVn01S1QcywFW7tzbX27kb-SjW1vWpFD5Fgz_KN3pwdDC3lcq-W6N1vHY6lZ3n3W2mgDVp4nXzQzW1P0Fhl2kQTHcW2JY1Fr6zsxBSW7D91WG2NrxKGW6h8mZk7dvY1QV7nNP16xMs8_VFzrYk8Mp_thW1V2ZBy818cyYW5jb5Wh6FmR8kW97zvTf8Pq9VKW77gjyy1C-brfW79M1xn3Jv-MvW761Y298MjD3-W780TXs9jrxGxW2jBXfZ3_gfcCW4V-_RN3Lk1KfW4r1JMV5dScRBW8D6CMM1pY76kW2vRWP76DpNgFN888gzsggwH8W7H9D9c3FC77bVkR7jL67yDynf2jfwMd04 )\r\n\r\nScreenshot 2025-10-30 115306 (https://d5xcZZ04.na1.hubspotlinksstarter.com/Ctc/UE+113/d5xcZZ04/VVn01S1QcywFW7tzbX27kb-SjW1vWpFD5Fgz_KN3pwdDC3lcq-W6N1vHY6lZ3n3W2mgDVp4nXzQzW1P0Fhl2kQTHcW2JY1Fr6zsxBSW7D91WG2NrxKGW6h8mZk7dvY1QV7nNP16xMs8_VFzrYk8Mp_thW1V2ZBy818cyYW5jb5Wh6FmR8kW97zvTf8Pq9VKW77gjyy1C-brfW79M1xn3Jv-MvW761Y298MjD3-W780TXs9jrxGxW2jBXfZ3_gfcCW4V-_RN3Lk1KfW4r1JMV5dScRBW8D6CMM1pY76kW2vRWP76DpNgFN888gzsggwH8W7H9D9c3FC77bVkR7jL67yDynf2jfwMd04 )\r\n\r\nScreenshot 2025-10-30 114623-1 (https://d5xcZZ04.na1.hubspotlinksstarter.com/Ctc/UE+113/d5xcZZ04/VVn01S1QcywFW7tzbX27kb-SjW1vWpFD5Fgz_KN3pwdDC3lcq-W6N1vHY6lZ3n3W2mgDVp4nXzQzW1P0Fhl2kQTHcW2JY1Fr6zsxBSW7D91WG2NrxKGW6h8mZk7dvY1QV7nNP16xMs8_VFzrYk8Mp_thW1V2ZBy818cyYW5jb5Wh6FmR8kW97zvTf8Pq9VKW77gjyy1C-brfW79M1xn3Jv-MvW761Y298MjD3-W780TXs9jrxGxW2jBXfZ3_gfcCW4V-_RN3Lk1KfW4r1JMV5dScRBW8D6CMM1pY76kW2vRWP76DpNgFN888gzsggwH8W7H9D9c3FC77bVkR7jL67yDynf2jfwMd04 )\r\n\r\nEnrich POCs\r\n\r\nTake the standard SAM contacts further with updated phone numbers, emails, and LinkedIn profiles so you can actually reach the people listed.\r\n\r\nScreenshot 2025-10-30 114640-1 (https://d5xcZZ04.na1.hubspotlinksstarter.com/Ctc/UE+113/d5xcZZ04/VVn01S1QcywFW7tzbX27kb-SjW1vWpFD5Fgz_KN3pwdDC3lcq-W6N1vHY6lZ3n3W2mgDVp4nXzQzW1P0Fhl2kQTHcW2JY1Fr6zsxBSW7D91WG2NrxKGW6h8mZk7dvY1QV7nNP16xMs8_VFzrYk8Mp_thW1V2ZBy818cyYW5jb5Wh6FmR8kW97zvTf8Pq9VKW77gjyy1C-brfW79M1xn3Jv-MvW761Y298MjD3-W780TXs9jrxGxW2jBXfZ3_gfcCW4V-_RN3Lk1KfW4r1JMV5dScRBW8D6CMM1pY76kW2vRWP76DpNgFN888gzsggwH8W7H9D9c3FC77bVkR7jL67yDynf2jfwMd04 )\r\n\r\nFind Everyone Else\r\n\r\nSee who else is at the company, from executives to project managers, and uncover new contacts that don’t appear in the SAM record.\r\n\r\nReady to see how enriched data can enhance your outreach and increase your win rate?\r\n\r\nSchedule a call with a contracting expert (https://d5xcZZ04.na1.hubspotlinksstarter.com/Ctc/UE+113/d5xcZZ04/VVn01S1QcywFW7tzbX27kb-SjW1vWpFD5Fgz_KN3pwdDC3lcq-W6N1vHY6lZ3ntVBw3Sy1sck0cW4BD6Q51Z13QNW88QND43jhxgvW5nyDNS8vyhfmW5cczPs1YW02qW8hQ-fg4cXmDRVQ4BjF56F-fdN2ZCgyz7tBdVVN-Xc_9j6P4lW1jYFT11TbPs5W4LGJpX2GdwXBW16ZZJH2lFyknW6_Cp_B4Q820_W6T-Mp265n7KbW5GHb5M6sFS3YW82pN499ldR7WW6L0Wvr3JqFqfW5JhQX45z6-17V2pxf995cJQbW5nvLSG7t4yKGW6hKFx92BvG9wN6_7-nFpMbhgf49Mjx804 )\r\n\r\nSAM Directory, 4869 Brownsboro Road, Suite 101-S, Louisville, KY 40207\r\n\r\nUnsubscribe (https://hs-46959153.s.hubspotstarter.net/preferences/en/unsubscribe?data=W2nXS-N30h-GmW3ZLLxN2RCV20W2sPr622PLfQPW2MqmvN3gy5NLW3-1-tL1QhNV0W1_vsfs4psmV9W1BCsMQ2Trx7mW2CN5ZR1_qb8lW1XymdW36zn-NW3Y0pK12sMJlbW3jdDX01LCrplW2xwSvX4hPShWW3_MkvK34B1kKW43xdyL1_38LMW3C8x2M1NwcXqW3zgZ4F3_RxClW49khfC2FCGqyW3Vzz8025fhtbW4kncp12xyXKfW1Qzp1V384mltW3BNmCV1_v1ZBW2-q3sv4pjpSSW3VJBkd32gx3WW1_4K_Q1BwVW6W3XXXLw1BJPgzW2Kzxz_4fsP16W2TJGw23M89WVW3XN9Zm3K7B9hW2THN6v3dsL0vW1Xyj4j1QxgbgW2YhCqc2YG8KpW2qPzGD2PyHQSW2Hs5y02FG4k6W2CJ04G4pxVzDW1Bm85k2WJqB0W2CT69522_LynW3ZFjzZ25kYQTW3858xD3QQWBKW4tmLLR3BP_vpW2xXQXV2xXV8JW3R3Dtp218j2TW1SkfSc4fRjS9W3BNgwG3QLc2XW3j8zCw2HRwdgW4cxGkt2vKRhvW1Vpdt-3SQF9WW4kM-kC1LlgzBW2zPBf62vS61NW24_D7x4fFNHhW4rByR53P51M_f3jcQnQ04&_hsenc=p2ANqtz-_x4-Lu56_4GPy8b_vUiU98qWexaF2opiR0GAB6-HN2boj6DIIUJGnHdXWyyuGTOKej2DTxnkcd6pJrScKeLmTGk-w0Zw&_hsmi=387639991 )\r\nManage preferences (https://hs-46959153.s.hubspotstarter.net/preferences/en/manage?data=W2nXS-N30h-GmW3ZLLxN2RCV20W2sPr622PLfQPW2MqmvN3gy5NLW3-1-tL1QhNV0W1_vsfs4psmV9W1BCsMQ2Trx7mW2CN5ZR1_qb8lW1XymdW36zn-NW3Y0pK12sMJlbW3jdDX01LCrplW2xwSvX4hPShWW3_MkvK34B1kKW43xdyL1_38LMW3C8x2M1NwcXqW3zgZ4F3_RxClW49khfC2FCGqyW3Vzz8025fhtbW4kncp12xyXKfW1Qzp1V384mltW3BNmCV1_v1ZBW2-q3sv4pjpSSW3VJBkd32gx3WW1_4K_Q1BwVW6W3XXXLw1BJPgzW2Kzxz_4fsP16W2TJGw23M89WVW3XN9Zm3K7B9hW2THN6v3dsL0vW1Xyj4j1QxgbgW2YhCqc2YG8KpW2qPzGD2PyHQSW2Hs5y02FG4k6W2CJ04G4pxVzDW1Bm85k2WJqB0W2CT69522_LynW3ZFjzZ25kYQTW3858xD3QQWBKW4tmLLR3BP_vpW2xXQXV2xXV8JW3R3Dtp218j2TW1SkfSc4fRjS9W3BNgwG3QLc2XW3j8zCw2HRwdgW4cxGkt2vKRhvW1Vpdt-3SQF9WW4kM-kC1LlgzBW2zPBf62vS61NW24_D7x4fFNHhW4rByR53P51M_f3jcQnQ04&_hsenc=p2ANqtz-_x4-Lu56_4GPy8b_vUiU98qWexaF2opiR0GAB6-HN2boj6DIIUJGnHdXWyyuGTOKej2DTxnkcd6pJrScKeLmTGk-w0Zw&_hsmi=387639991 )',0,0,0,0,0,0,'2025-10-30 16:15:57','2025-12-09 19:30:37','2025-12-09 19:30:37','2025-12-09 19:30:37',NULL,NULL,NULL),
(912,4,' <BN0P110MB11090398BC84EE359AE3191084FBA@BN0P110MB1109.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'RE: INTRO To PIAC and KARGO','piasecki_n@piasecki.com','Nick Piasecki','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Segoe UI\";\r\n	panose-1:2 11 5 2 4 2 4 2 2 3;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:#467886;\r\n	text-decoration:underline;}\r\nspan.me-email-text\r\n	{mso-style-name:me-email-text;}\r\nspan.me-email-text-secondary\r\n	{mso-style-name:me-email-text-secondary;}\r\nspan.EmailStyle21\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Rick,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Thanks again for taking the time to chat with us, lots to do in terms of getting the American Industrial base back up to full strength and in front on Autonomy. I think some cooperation between our two organizations\r\n could be one piece of that. I have attached a summary 1 pager for you and your team to review.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Talk soon,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Nick<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\">-----Original Appointment-----<br>\r\n<b>From:</b> Fred W. Piasecki &lt;piasecki_fw@piasecki.com&gt; <br>\r\n<b>Sent:</b> Thursday, October 23, 2025 1:19 PM<br>\r\n<b>To:</b> Fred W. Piasecki; Fred W. Piasecki; Nick Piasecki; Romin Dasmalchi; Brian Cormier; rick@mavrix.one<br>\r\n<b>Subject:</b> INTRO To PIAC and KARGO <br>\r\n<b>When:</b> Thursday, October 30, 2025 10:00 AM-10:30 AM (UTC-05:00) Eastern Time (US &amp; Canada).<br>\r\n<b>Where:</b> Microsoft Teams Meeting<br>\r\n<b>Importance:</b> High<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Gents,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Fred and Rick meet at the Huntsville ARMY UAS conference.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">I think we have a common goal!!!!!!!!!!!<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Ricks Cell is, 585-797-9473<o:p></o:p></span></p>\r\n<div>\r\n<div style=\"margin-bottom:.25in;overflow:hidden\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">________________________________________________________________________________</span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424;mso-ligatures:none\"><o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:9.0pt\">\r\n<p class=\"MsoNormal\"><span class=\"me-email-text\"><b><span style=\"font-size:18.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">Microsoft Teams</span></b></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<a href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\"><span style=\"font-size:10.5pt;color:#5B5FC7\">Need help?</span></a>\r\n<o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:4.5pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\"><a href=\"https://gov.teams.microsoft.us/l/meetup-join/19%3agcch%3ameeting_6a1a1a2ebcb44ea0969439d94f5c4a4d%40thread.v2/0?context=%7b%22Tid%22%3a%22d6f64dec-d4b3-41eb-845c-662c7e147a28%22%2c%22Oid%22%3a%22c33f62ac-c923-42d0-9065-aad331b9925e%22%7d\" target=\"_blank\" title=\"Meeting join link\"><b><span style=\"font-size:15.0pt;color:#5B5FC7\">Join\r\n the meeting now</span></b></a> <o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:4.5pt\">\r\n<p class=\"MsoNormal\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">Meeting ID:\r\n</span></span><span class=\"me-email-text\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">992 855 385 720</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:24.0pt\">\r\n<p class=\"MsoNormal\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">Passcode:\r\n</span></span><span class=\"me-email-text\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">ny2sk3Si</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:9.0pt\">\r\n<div class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<hr size=\"1\" width=\"100%\" align=\"center\">\r\n</span></div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">For organizers:\r\n</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\"><a href=\"https://gov.teams.microsoft.us/meetingOptions/?organizerId=c33f62ac-c923-42d0-9065-aad331b9925e&amp;tenantId=d6f64dec-d4b3-41eb-845c-662c7e147a28&amp;threadId=19_gcch_meeting_6a1a1a2ebcb44ea0969439d94f5c4a4d@thread.v2&amp;messageId=0&amp;language=en-US\" target=\"_blank\"><span style=\"font-size:10.5pt;color:#5B5FC7\">Meeting\r\n options</span></a> <o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:.25in;overflow:hidden\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">________________________________________________________________________________<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div style=\"font-size:8pt; font-family: \'Calibri\',sans-serif;\">\r\n<hr>\r\nThe information contained in this e-mail and any attachments from Piasecki Aircraft Corporation may contain confidential and/or proprietary information, and is intended only for the named recipient to whom it was originally addressed. If you are not the intended\r\n recipient, any disclosure, distribution, or copying of this e-mail or its attachments is strictly prohibited. If you have received this e-mail in error, please notify the sender immediately by return e-mail and permanently delete the e-mail and any attachments.</div>\r\n</body>\r\n</html>','Rick,\r\n\r\nThanks again for taking the time to chat with us, lots to do in terms of getting the American Industrial base back up to full strength and in front on Autonomy. I think some cooperation between our two organizations could be one piece of that. I have attached a summary 1 pager for you and your team to review.\r\n\r\nTalk soon,\r\n\r\nNick\r\n\r\n-----Original Appointment-----\r\nFrom: Fred W. Piasecki <piasecki_fw@piasecki.com>\r\nSent: Thursday, October 23, 2025 1:19 PM\r\nTo: Fred W. Piasecki; Fred W. Piasecki; Nick Piasecki; Romin Dasmalchi; Brian Cormier; rick@mavrix.one\r\nSubject: INTRO To PIAC and KARGO\r\nWhen: Thursday, October 30, 2025 10:00 AM-10:30 AM (UTC-05:00) Eastern Time (US & Canada).\r\nWhere: Microsoft Teams Meeting\r\nImportance: High\r\n\r\nGents,\r\nFred and Rick meet at the Huntsville ARMY UAS conference.\r\nI think we have a common goal!!!!!!!!!!!\r\n\r\nRicks Cell is, 585-797-9473\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://gov.teams.microsoft.us/l/meetup-join/19%3agcch%3ameeting_6a1a1a2ebcb44ea0969439d94f5c4a4d%40thread.v2/0?context=%7b%22Tid%22%3a%22d6f64dec-d4b3-41eb-845c-662c7e147a28%22%2c%22Oid%22%3a%22c33f62ac-c923-42d0-9065-aad331b9925e%22%7d>\r\nMeeting ID: 992 855 385 720\r\nPasscode: ny2sk3Si\r\n________________________________\r\nFor organizers: Meeting options<https://gov.teams.microsoft.us/meetingOptions/?organizerId=c33f62ac-c923-42d0-9065-aad331b9925e&tenantId=d6f64dec-d4b3-41eb-845c-662c7e147a28&threadId=19_gcch_meeting_6a1a1a2ebcb44ea0969439d94f5c4a4d@thread.v2&messageId=0&language=en-US>\r\n________________________________________________________________________________\r\n\r\n________________________________\r\nThe information contained in this e-mail and any attachments from Piasecki Aircraft Corporation may contain confidential and/or proprietary information, and is intended only for the named recipient to whom it was originally addressed. If you are not the intended recipient, any disclosure, distribution, or copying of this e-mail or its attachments is strictly prohibited. If you have received this e-mail in error, please notify the sender immediately by return e-mail and permanently delete the e-mail and any attachments.',0,0,0,0,0,0,'2025-10-30 16:41:59','2025-12-09 19:30:37','2025-12-09 19:30:37','2025-12-09 19:30:37',NULL,NULL,NULL),
(913,4,'<CAJO9__Z-c+vRC5GEPJG6kqAwJKg3+KZ9gEqrqHWk9foSx4RZaw@mail.gmail.com>',NULL,NULL,'Fwd: Additional Information for Meeting','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Hello Team, </div><div><br></div><div>Please see below an email from Sol-Ark about the context of today&#39;s meeting. </div><div><br></div><div>Let me know if you have any questions.</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">Douglas, Dustin</strong> <span dir=\"auto\">&lt;<a href=\"mailto:Dustin.Douglas@sol-ark.com\">Dustin.Douglas@sol-ark.com</a>&gt;</span><br>Date: Thu, Oct 30, 2025 at 12:51 PM<br>Subject: Additional Information for Meeting<br>To: Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt;, Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\">nathan@lithiumbatterycompany.com</a>&gt;<br></div><br><br><div class=\"msg-8287825387612801160\">\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nHi Nathan and Jordan,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nPlease see the attached inverter specification sheet that we plan to pair with the Non-FEOC battery solution. I recommend paying particular attention to the battery input data section. This will be an important discussion point with our CEO, as we aim to achieve\r\n a 1.0C rate or as close to it as possible. That’s why the earlier questions regarding BMS capabilities and customization will be critical to address.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI’ve also included a CAD file of the system. We’d like to explore a gutter solution to simplify installation and achieve a cleaner, more integrated look. This could require adjustments to the enclosure design, including additional terminals — one set for inverter\r\n or bus-bar connections and another for parallel battery connections. I don’t expect LBC to have a finalized design for these yet, but I wanted to flag this since it will likely come up in discussion with our CEO.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<a id=\"m_6691108128563426966OWAaa1ad5be-b2c1-012c-346b-5c6a9fa21053\" title=\"https://www.dropbox.com/scl/fi/swimtoq82sczjg2oyjcz6/12K-LC.stp?rlkey=9ck4inzwga361tqmfb7kro6lh&amp;st=ixr64erk&amp;dl=0\" href=\"https://www.dropbox.com/scl/fi/swimtoq82sczjg2oyjcz6/12K-LC.stp?rlkey=9ck4inzwga361tqmfb7kro6lh&amp;st=ixr64erk&amp;dl=0\" target=\"_blank\">12K-2P-LC\r\n Inverter CAD File</a> (Let me know if you have trouble accessing)</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nLastly, I want to reiterate that the goal of today’s meeting is to review LBC’s capabilities and cell sourcing for both FEOC and Non-FEOC solutions. Our intent is to develop a Generation 1 Sol-Ark solution that can be brought to market, while also setting the\r\n foundation for future generations.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nLooking forward to the discussion.</div>\r\n<div id=\"m_6691108128563426966Signature\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0px\">\r\n<span style=\"font-family:Aptos,sans-serif;font-size:10pt;color:black\"><b>Dustin Douglas</b></span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0px\">\r\n<span style=\"font-family:Aptos,sans-serif;font-size:9pt;color:black\">Staff Engineer | Product Marketing Manager — Partnerships &amp; Integrations</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0px\">\r\n<span style=\"font-family:Aptos,sans-serif;font-size:9pt;color:black\">Call or Text: 214-432-3799</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0px\">\r\n<span style=\"font-family:Aptos,sans-serif;font-size:12pt;color:black;background-color:white\"><a style=\"color:black;margin:0px\" title=\"https://www.sol-ark.com/\" href=\"https://www.sol-ark.com/\" target=\"_blank\"><img style=\"width:128.99pt;height:39.6pt;max-width:440px;min-width:auto;min-height:auto;margin:0px\" height=\"52\" width=\"171\" id=\"m_6691108128563426966x_Picture_x0020_1720788291\" src=\"cid:ii_19a3615648a22745e61\"></a></span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0px\">\r\n<span style=\"font-family:Aptos,sans-serif;font-size:8.5pt;color:black\">805 Central Expy S., Allen, TX 75013</span></p>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Calibri,sans-serif;font-size:8pt;color:black\">\r\nThis communication may contain information that is legally privileged, confidential or exempt from disclosure.  If you are not the intended recipient, any review, distribution or copying of this communication and its contents is prohibited.</div>\r\n</div>\r\n</div>\r\n\r\n</div></div></div>','Hello Team,\r\n\r\nPlease see below an email from Sol-Ark about the context of today\'s\r\nmeeting.\r\n\r\nLet me know if you have any questions.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: Douglas, Dustin <Dustin.Douglas@sol-ark.com>\r\nDate: Thu, Oct 30, 2025 at 12:51 PM\r\nSubject: Additional Information for Meeting\r\nTo: Jordan Wroblewski <jordan@lithiumbatterycompany.com>, Nathan Staron <\r\nnathan@lithiumbatterycompany.com>\r\n\r\n\r\nHi Nathan and Jordan,\r\n\r\nPlease see the attached inverter specification sheet that we plan to pair\r\nwith the Non-FEOC battery solution. I recommend paying particular attention\r\nto the battery input data section. This will be an important discussion\r\npoint with our CEO, as we aim to achieve a 1.0C rate or as close to it as\r\npossible. That’s why the earlier questions regarding BMS capabilities and\r\ncustomization will be critical to address.\r\n\r\nI’ve also included a CAD file of the system. We’d like to explore a gutter\r\nsolution to simplify installation and achieve a cleaner, more integrated\r\nlook. This could require adjustments to the enclosure design, including\r\nadditional terminals — one set for inverter or bus-bar connections and\r\nanother for parallel battery connections. I don’t expect LBC to have a\r\nfinalized design for these yet, but I wanted to flag this since it will\r\nlikely come up in discussion with our CEO.\r\n\r\n12K-2P-LC Inverter CAD File\r\n<https://www.dropbox.com/scl/fi/swimtoq82sczjg2oyjcz6/12K-LC.stp?rlkey=9ck4inzwga361tqmfb7kro6lh&st=ixr64erk&dl=0>\r\n(Let\r\nme know if you have trouble accessing)\r\n\r\nLastly, I want to reiterate that the goal of today’s meeting is to review\r\nLBC’s capabilities and cell sourcing for both FEOC and Non-FEOC solutions.\r\nOur intent is to develop a Generation 1 Sol-Ark solution that can be\r\nbrought to market, while also setting the foundation for future generations.\r\n\r\nLooking forward to the discussion.\r\n\r\n*Dustin Douglas*\r\n\r\nStaff Engineer | Product Marketing Manager — Partnerships & Integrations\r\n\r\nCall or Text: 214-432-3799\r\n\r\n<https://www.sol-ark.com/>\r\n\r\n805 Central Expy S., Allen, TX 75013\r\n\r\nThis communication may contain information that is legally privileged,\r\nconfidential or exempt from disclosure.  If you are not the intended\r\nrecipient, any review, distribution or copying of this communication and\r\nits contents is prohibited.',0,0,0,0,0,0,'2025-10-30 17:12:28','2025-12-09 19:30:38','2025-12-09 19:30:38','2025-12-09 19:30:38',NULL,NULL,NULL),
(914,4,' <BN6PR08MB331588E072F42F3335500D9BDCF8A@BN6PR08MB3315.namprd08.prod.outlook.com>',NULL,NULL,'Quick visit next week','cdiaz@flowcorp.com','Carlos Diaz','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nRick, how are you?</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nIll be in town next week, my schedule puts me in the area 11/4. If it would beneficial, I can stop in or meet with you and continue the conversation.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nLook forward to hearing from you.&nbsp;</div>\r\n<div class=\"elementToProof\" id=\"Signature\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: rgb(49, 132, 155);\"><b>Carlos R. Diaz</b></span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\"><b>Application Specialist</b></span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\">Flow International Corporation</span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\">Atlanta, GA. 30064</span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\">C.943.253.7285</span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: rgb(5, 99, 193);\"><u><a style=\"color: rgb(5, 99, 193); margin-top: 0px; margin-bottom: 0px;\" class=\"x_OWAAutoLink\" id=\"OWA740a10af-9a08-fc8b-b7e4-cd421b2f8244\" href=\"http://www.flowwaterjet.com/\">www.FlowWaterjet.com</a></u></span><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\">&nbsp;</span></p>\r\n<div style=\"font-family: &quot;Franklin Gothic Medium&quot;, sans-serif; font-size: 8.5pt; color: gray;\" class=\"elementToProof\">\r\n<span style=\"background-color: rgb(255, 255, 255);\"><br>\r\n</span></div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: &quot;Calibri Light&quot;, &quot;Helvetica Light&quot;, sans-serif; font-size: 14pt; color: rgb(23, 78, 134);\" class=\"elementToProof\">\r\n<b><br>\r\n</b></div>\r\n<div style=\"font-family: &quot;Segoe UI Light&quot;; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<span style=\"background-color: rgb(255, 255, 255);\"><b><br>\r\n</b></span></div>\r\n<div style=\"font-family: &quot;Segoe UI Light&quot;; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<span style=\"background-color: rgb(255, 255, 255);\"><br>\r\n</span></div>\r\n<div style=\"font-family: &quot;Segoe UI Light&quot;; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','Rick, how are you?\r\nIll be in town next week, my schedule puts me in the area 11/4. If it would beneficial, I can stop in or meet with you and continue the conversation.\r\n\r\nLook forward to hearing from you.\r\n\r\n\r\nCarlos R. Diaz\r\n\r\nApplication Specialist\r\n\r\nFlow International Corporation\r\n\r\nAtlanta, GA. 30064\r\n\r\nC.943.253.7285\r\n\r\nwww.FlowWaterjet.com<http://www.flowwaterjet.com/>',0,0,0,0,0,0,'2025-10-31 14:17:44','2025-12-09 19:30:38','2025-12-09 19:30:38','2025-12-09 19:30:38',NULL,NULL,NULL),
(915,4,' <019a49c4-e102-7b9e-a6b9-abe392240dab@personalizedsalesagents.com>',NULL,NULL,'Mavrix sales','m.hayes@personalizedsalesagents.com','Mason Hayes','Hi,\r\n\r\nI came across Mavrix1 and noticed your focus on precision manufacturing and American autonomy. It seems like your team is committed to keeping operations efficient and quality driven.\r\n\r\nMany manufacturing teams are seeing great results using AI agents to manage client calls and scheduling without adding extra staff. SalesCloser helps automate lead engagement and customer communication so your team can focus on production.\r\n\r\nWould it make sense to explore how this could support your client communication process?\r\n \r\n\r\n\r\nMason\r\n422 Richards Street, Ste 170, Vancouver, BC V6B 2Z4\r\nP.S. Please let me know if you don\'t want to hear from me again\r\n \r\n','Hi,\r\n\r\nI came across Mavrix1 and noticed your focus on precision manufacturing and American autonomy. It seems like your team is committed to keeping operations efficient and quality driven.\r\n\r\nMany manufacturing teams are seeing great results using AI agents to manage client calls and scheduling without adding extra staff. SalesCloser helps automate lead engagement and customer communication so your team can focus on production.\r\n\r\nWould it make sense to explore how this could support your client communication process?\r\n \r\n\r\n\r\nMason\r\n422 Richards Street, Ste 170, Vancouver, BC V6B 2Z4\r\nP.S. Please let me know if you don\'t want to hear from me again\r\n \r\n',0,0,0,0,0,0,'2025-11-03 12:50:30','2025-12-09 19:30:38','2025-12-09 19:30:38','2025-12-09 19:30:38',NULL,NULL,NULL),
(916,4,' <MWHPR08MB3328850614E9D9B65B24EE33DCC7A@MWHPR08MB3328.namprd08.prod.outlook.com>',NULL,NULL,'Re: Quick visit next week','cdiaz@flowcorp.com','Carlos Diaz','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n</head>\r\n<body>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nNot a problem. Till next time. Thank you for getting back to me&nbsp;</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\" data-applydefaultfontstyles=\"true\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" dir=\"ltr\">\r\n<br>\r\n</div>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" id=\"ms-outlook-mobile-signature\">\r\n<table id=\"table_0\" cellspacing=\"0\" cellpadding=\"0\" data-olk-copy-source=\"MessageBody\" data-ogsc=\"rgb(0, 0, 0)\" data-ogsb=\"rgb(255, 255, 255)\" style=\"text-align: left; background-color: rgb(255, 255, 255); width: 507.688px; color: rgb(0, 0, 0); box-sizing: border-box; border-collapse: collapse; border-spacing: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: left; vertical-align: top; width: 507.688px; height: 20px;\">\r\n<div style=\"text-align: left; font-family: &quot;Calibri Light&quot;, &quot;Helvetica Light&quot;, sans-serif; font-size: 12pt; color: rgb(23, 78, 134);\">\r\nCarlos Diaz</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: left; padding-bottom: 5.25pt; vertical-align: top; width: 507.688px; height: 25px;\">\r\n<p style=\"text-align: left; margin: 0px; font-family: Calibri, sans-serif;\"><span style=\"font-family: &quot;Calibri Light&quot;, &quot;Helvetica Light&quot;, sans-serif; font-size: 10pt; color: rgb(0, 0, 0);\">Application Specialist</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: left; vertical-align: top; width: 507.688px; height: 22px;\">\r\n<p style=\"text-align: left; margin: 0px; font-family: Calibri, sans-serif;\"><span style=\"font-family: &quot;Calibri Light&quot;, &quot;Helvetica Light&quot;, sans-serif; font-size: 10pt; color: gray;\">Flow International Corporation</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: left; vertical-align: top; width: 507.688px; height: 18px;\">\r\n<p style=\"text-align: left; margin: 0px; font-family: Calibri, sans-serif;\"><span style=\"font-family: &quot;Calibri Light&quot;, &quot;Helvetica Light&quot;, sans-serif; font-size: 10pt; color: currentcolor;\">Atlanta, GA</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: left; vertical-align: top; width: 507.688px; height: 22px;\">\r\n<p style=\"text-align: left; margin: 0px; font-family: Calibri, sans-serif;\"><span style=\"font-family: &quot;Calibri Light&quot;, &quot;Helvetica Light&quot;, sans-serif; font-size: 10pt; color: gray;\">C.\r\n</span><span style=\"font-family: &quot;Calibri Light&quot;, &quot;Helvetica Light&quot;, sans-serif; font-size: 10pt; color: currentcolor;\">943.253.7285</span></p>\r\n<p style=\"text-align: left; margin: 0px; font-family: Calibri, sans-serif;\"><span style=\"font-family: &quot;Calibri Light&quot;, &quot;Helvetica Light&quot;, sans-serif; font-size: 10pt; color: rgb(0, 118, 129);\"><a href=\"mailto:cmurdock@flowcorp.com\" title=\"mailto:cmurdock@flowcorp.com\" data-ogsc=\"rgb(0, 118, 129)\" data-linkindex=\"0\" data-outlook-id=\"1a47799e-67fe-482f-854f-80a43884914f\" style=\"margin: 0px;\">cdiaz@flowcorp.com</a></span></p>\r\n<p style=\"text-align: left; margin: 0px; font-family: Calibri, sans-serif;\"><span style=\"font-family: &quot;Calibri Light&quot;, &quot;Helvetica Light&quot;, sans-serif; font-size: 10pt; color: rgb(0, 118, 129);\"><a href=\"http://www.flowwaterjet.com/\" title=\"http://www.flowwaterjet.com/\" data-auth=\"NotApplicable\" data-ogsc=\"rgb(0, 118, 129)\" data-linkindex=\"1\" data-outlook-id=\"ef3c59e5-bfe6-4e30-9bc9-28aa628b0f0f\" style=\"margin: 0px;\">www.flowwaterjet.com</a></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\n<br>\r\n</div>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Monday, November 3, 2025 10:37:36 AM<br>\r\n<b>To:</b> Carlos Diaz &lt;cdiaz@flowcorp.com&gt;<br>\r\n<b>Cc:</b> Adam Mooneyham &lt;amooneyham@flowcorp.com&gt;<br>\r\n<b>Subject:</b> Re: Quick visit next week</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<style>\r\n<!--\r\ndiv\r\n	{font-family:Helvetica,Arial;\r\n	font-size:13px}\r\n-->\r\n</style>\r\n<div>\r\n<div style=\"background-color:#FFEB9C; width:100%; border-style:solid; border-color:#9C6500; border-width:1pt; padding:2pt; font-size:10pt; line-height:12pt; font-family:\'Calibri\'; color:Black; text-align:left\">\r\n<span style=\"color:#9C6500; font-weight:bold\">CAUTION:</span> This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.</div>\r\n<br>\r\n<div>\r\n<div id=\"x_bloop_customfont\" style=\"font-family:Helvetica,Arial; font-size:13px; margin:0px; line-height:auto\">\r\nThanks Carlos, but I’m still in NY.<br>\r\n</div>\r\nSoon!<br>\r\nThanks again! <br>\r\n<div id=\"x_bloop_sign_1762187844862008064\" class=\"x_bloop_sign\">\r\n<div>Rick</div>\r\n<div><br>\r\n</div>\r\n<div>Rick Mislan, PhD,&nbsp;</div>\r\n<div>Founder, CTO</div>\r\n<div><img class=\"x_composer_internal_attach\" src=\"cid:81801A49-6392-49B1-86D0-921FAC055AB2\" id=\"x_ATTACH_attach_6d6573736167655f315f31323736_35324141434136342d423436382d343238352d423543342d383338463637303746464343_35333544443832312d464239312d343942372d414135392d424242443643324143354235_0\" style=\"max-width:99%\"></div>\r\n<div>https://mavrix1.com</div>\r\n<div><br>\r\n</div>\r\n<div><font face=\"Helvetica\"><span style=\"font-size:12px\"><b><u>CONFIDENTIALITY NOTICE</u></b></span></font></div>\r\n<div><font face=\"Helvetica\"><span style=\"font-size:12px\"><i>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the\r\n designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</i></span></font></div>\r\n<div><font face=\"Helvetica\"><span style=\"font-size:12px\"><i><br>\r\n</i></span></font></div>\r\n<div><font face=\"Helvetica\"><span style=\"font-size:12px\"><i>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</i></span></font></div>\r\n<div><font face=\"Helvetica\"><span style=\"font-size:12px\"><i><br>\r\n</i></span></font></div>\r\n<div><font face=\"Helvetica\"><span style=\"font-size:12px\"><i>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients\r\n are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</i></span></font></div>\r\n</div>\r\n<br>\r\n<p class=\"x_airmail_on\">On October 31, 2025 at 10:18:34, Carlos Diaz (<a href=\"mailto:cdiaz@flowcorp.com\">cdiaz@flowcorp.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div dir=\"ltr\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nRick, how are you?</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nIll be in town next week, my schedule puts me in the area 11/4. If it would beneficial, I can stop in or meet with you and continue the conversation.</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\nLook forward to hearing from you.&nbsp;</div>\r\n<div class=\"x_elementToProof\" id=\"x_Signature\">\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<p class=\"x_elementToProof\" style=\"margin:0in\"><span style=\"font-family:&quot;Franklin Gothic Book&quot;,sans-serif; font-size:8pt; color:rgb(49,132,155)\"><b>Carlos R. Diaz</b></span></p>\r\n<p class=\"x_elementToProof\" style=\"margin:0in\"><span style=\"font-family:&quot;Franklin Gothic Book&quot;,sans-serif; font-size:8pt; color:gray\"><b>Application Specialist</b></span></p>\r\n<p class=\"x_elementToProof\" style=\"margin:0in\"><span style=\"font-family:&quot;Franklin Gothic Book&quot;,sans-serif; font-size:8pt; color:gray\">Flow International Corporation</span></p>\r\n<p class=\"x_elementToProof\" style=\"margin:0in\"><span style=\"font-family:&quot;Franklin Gothic Book&quot;,sans-serif; font-size:8pt; color:gray\">Atlanta, GA. 30064</span></p>\r\n<p class=\"x_elementToProof\" style=\"margin:0in\"><span style=\"font-family:&quot;Franklin Gothic Book&quot;,sans-serif; font-size:8pt; color:gray\">C.943.253.7285</span></p>\r\n<p class=\"x_elementToProof\" style=\"margin:0in\"><span style=\"font-family:&quot;Franklin Gothic Book&quot;,sans-serif; font-size:8pt; color:rgb(5,99,193)\"><u><a class=\"x_x_OWAAutoLink\" id=\"OWA740a10af-9a08-fc8b-b7e4-cd421b2f8244\" href=\"http://www.flowwaterjet.com/\" style=\"color:rgb(5,99,193); margin-top:0px; margin-bottom:0px\">www.FlowWaterjet.com</a></u></span><span style=\"font-family:&quot;Franklin Gothic Book&quot;,sans-serif; font-size:8pt; color:gray\">&nbsp;</span></p>\r\n<div class=\"x_elementToProof\" style=\"font-family:&quot;Franklin Gothic Medium&quot;,sans-serif; font-size:8.5pt; color:gray\">\r\n<span style=\"background-color:rgb(255,255,255)\"><br>\r\n</span></div>\r\n<div class=\"x_elementToProof\" style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div class=\"x_elementToProof\" style=\"font-family:&quot;Calibri Light&quot;,&quot;Helvetica Light&quot;,sans-serif; font-size:14pt; color:rgb(23,78,134)\">\r\n<b><br>\r\n</b></div>\r\n<div class=\"x_elementToProof\" style=\"font-family:&quot;Segoe UI Light&quot;; font-size:12pt; color:rgb(0,0,0)\">\r\n<span style=\"background-color:rgb(255,255,255)\"><b><br>\r\n</b></span></div>\r\n<div class=\"x_elementToProof\" style=\"font-family:&quot;Segoe UI Light&quot;; font-size:12pt; color:rgb(0,0,0)\">\r\n<span style=\"background-color:rgb(255,255,255)\"><br>\r\n</span></div>\r\n<div class=\"x_elementToProof\" style=\"font-family:&quot;Segoe UI Light&quot;; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','Not a problem. Till next time. Thank you for getting back to me\r\n\r\nCarlos Diaz\r\n\r\nApplication Specialist\r\n\r\nFlow International Corporation\r\n\r\nAtlanta, GA\r\n\r\nC. 943.253.7285\r\n\r\ncdiaz@flowcorp.com<mailto:cmurdock@flowcorp.com>\r\n\r\nwww.flowwaterjet.com<http://www.flowwaterjet.com/>\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Monday, November 3, 2025 10:37:36 AM\r\nTo: Carlos Diaz <cdiaz@flowcorp.com>\r\nCc: Adam Mooneyham <amooneyham@flowcorp.com>\r\nSubject: Re: Quick visit next week\r\n\r\nCAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.\r\n\r\nThanks Carlos, but I’m still in NY.\r\nSoon!\r\nThanks again!\r\nRick\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:81801A49-6392-49B1-86D0-921FAC055AB2]\r\nhttps://mavrix1.com\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\nOn October 31, 2025 at 10:18:34, Carlos Diaz (cdiaz@flowcorp.com<mailto:cdiaz@flowcorp.com>) wrote:\r\n\r\nRick, how are you?\r\nIll be in town next week, my schedule puts me in the area 11/4. If it would beneficial, I can stop in or meet with you and continue the conversation.\r\n\r\nLook forward to hearing from you.\r\n\r\n\r\nCarlos R. Diaz\r\n\r\nApplication Specialist\r\n\r\nFlow International Corporation\r\n\r\nAtlanta, GA. 30064\r\n\r\nC.943.253.7285\r\n\r\nwww.FlowWaterjet.com<http://www.flowwaterjet.com/>',0,0,0,0,0,0,'2025-11-03 18:06:11','2025-12-09 19:30:39','2025-12-09 19:30:39','2025-12-09 19:30:39',NULL,NULL,NULL),
(917,4,'<CAJO9__ZndhnK2A1nRTLYw+U1POcTPFqUFp_zx2aDxQq0_3ymww@mail.gmail.com>',NULL,NULL,'Sol-Ark Preferred Prototype Specs','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Hi Nathan and team,</div><div><br></div><div>Here are the list of preferred prototype specs from Sol-Ark</div><div><br></div><div><div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">Please see the below specs for the prototype battery for testing:</div><ul style=\"margin-top:0px;margin-bottom:0px\"><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">LBC512314</div></li><ul style=\"margin-top:0px;margin-bottom:0px\"><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">Capacity: 16.1kWh</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">Amp Hours (Ah): 314Ah</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">Nominal Voltage: 51.2v</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">Operating Range: 48v - 56v</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">Max Continuous Charge: 200A Optimal | 150A Minimum</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">Max Continuous Discharge: 220A Optimal | 200A Minimum</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">Peak Discharge Current: 300A</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">Communication Protocol: RS-485 Modbus RTU &amp; CANBUS<span style=\"font-size:11pt\"></span></div></li></ul></ul><div><font color=\"#000000\" face=\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif\"><span style=\"font-size:14.6667px\"><br></span></font></div></div><div><span style=\"color:rgb(0,0,0);font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Here is a list of specs that would be comparable:</span><font color=\"#000000\" face=\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif\"><span style=\"font-size:14.6667px\"></span></font></div><div><img src=\"cid:ii_mhjik7da1\" alt=\"image (5).png\" width=\"542\" height=\"176\"><br></div><div><br></div><div>I have reached out to Susan from GSL and shared the specs. I&#39;ve also inquired if this would be available from one of their dealers in the US.</div><div><br></div><div>Let me know if you have any other thoughts on what we should send thier way.</div><div><br></div><div>Best, </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div></div>','Hi Nathan and team,\r\n\r\nHere are the list of preferred prototype specs from Sol-Ark\r\n\r\nPlease see the below specs for the prototype battery for testing:\r\n\r\n   - LBC512314\r\n   - Capacity: 16.1kWh\r\n      - Amp Hours (Ah): 314Ah\r\n      - Nominal Voltage: 51.2v\r\n      - Operating Range: 48v - 56v\r\n      - Max Continuous Charge: 200A Optimal | 150A Minimum\r\n      - Max Continuous Discharge: 220A Optimal | 200A Minimum\r\n      - Peak Discharge Current: 300A\r\n      - Communication Protocol: RS-485 Modbus RTU & CANBUS\r\n\r\n\r\nHere is a list of specs that would be comparable:\r\n[image: image (5).png]\r\n\r\nI have reached out to Susan from GSL and shared the specs. I\'ve also\r\ninquired if this would be available from one of their dealers in the US.\r\n\r\nLet me know if you have any other thoughts on what we should send thier way.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>',0,0,0,0,0,0,'2025-11-03 19:10:39','2025-12-09 19:30:39','2025-12-09 19:30:39','2025-12-09 19:30:39',NULL,NULL,NULL),
(918,4,'<PH7PR84MB17670E87C387B4E1E5B63B20FBC7A@PH7PR84MB1767.NAMPRD84.PROD.OUTLOOK.COM>',NULL,NULL,'RE: HP MJF Printers','gary.fudge@hp.com','\"Fudge, Gary\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Forma DJR Display\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n@font-face\r\n	{font-family:\"Forma DJR Micro\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.xairmailon, li.xairmailon, div.xairmailon\r\n	{mso-style-name:x_airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.xmsonormal, li.xmsonormal, div.xmsonormal\r\n	{mso-style-name:x_msonormal;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle23\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Any questions on the site prep guide?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Also, please email me the physical address in FL so I can start getting you set up in our system.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Thanks<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">3D Print - Enterprise Account Manager – US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">|</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black;mso-ligatures:standardcontextual\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_877011165\" src=\"cid:image001.png@01DC4CE9.D5200A50\" alt=\"image001.png\"><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Fudge, Gary\r\n<br>\r\n<b>Sent:</b> Friday, October 24, 2025 6:27 PM<br>\r\n<b>To:</b> \'Rick\' &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> RE: HP MJF Printers<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Good catching up with you today.&nbsp; See attached site prep guide as requested.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Can you please email me your address now that you have the land secure so I can go ahead and get you into our system?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Please let me know if you have any questions or need any additional information.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Best Regards<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">3D Print - Enterprise Account Manager – US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">|</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black;mso-ligatures:standardcontextual\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_2\" src=\"cid:image001.png@01DC4CE9.D5200A50\" alt=\"image001.png\"></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Friday, October 24, 2025 8:46 AM<br>\r\n<b>To:</b> Fudge, Gary &lt;<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>&gt;<br>\r\n<b>Subject:</b> Re: HP MJF Printers<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;color:red\">CAUTION: External Email\r\n</span></b><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">585.797.9473<br>\r\nSafe travels!<br>\r\nThanks,<br>\r\nRick <o:p></o:p></p>\r\n<p class=\"airmailon\">On October 24, 2025 at 08:56:44, Fudge, Gary (<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">I’m on a flight but should land around 10:30-10:45. &nbsp; Let me know of a good number to reach you and I can call then<o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\">\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div id=\"ms-outlook-mobile-signature\">\r\n<div>\r\n<p class=\"MsoNormal\">Gary Fudge<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">678-654-6734<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n<div class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">\r\n<hr size=\"1\" width=\"98%\" align=\"center\">\r\n</div>\r\n<div id=\"divRplyFwdMsg\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;<br>\r\n<b>Sent:</b> Friday, October 24, 2025 7:41:17 AM<br>\r\n<b>To:</b> Fudge, Gary &lt;<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>&gt;<br>\r\n<b>Subject:</b> Re: HP MJF Printers</span> <o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;color:red\">CAUTION: External Email\r\n</span></b><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">Hey Gary,<br>\r\nAre you available to day at 10a for a call?<br>\r\nTalking about power requirements for our facilities next week and need to start pulling together numbers.&nbsp;<br>\r\nOr, can you send me power requirements for the MJF Printers?<br>\r\nLet me know what works.<br>\r\nThanks!<br>\r\nRick <o:p></o:p></p>\r\n<p class=\"xairmailon\">On October 2, 2025 at 11:28:38, Fudge, Gary (<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"xmsonormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n<p class=\"xmsonormal\">Are you all ready to continue the conversation about our 3D Printers/3DP Services?&nbsp; If not, when should I check back with you?<o:p></o:p></p>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n<p class=\"xmsonormal\">Best Regards,<o:p></o:p></p>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"xmsonormal\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"xmsonormal\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager – US South\r\n</span><o:p></o:p></p>\r\n<p class=\"xmsonormal\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"xmsonormal\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><o:p></o:p></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"xmsonormal\" align=\"center\" style=\"text-align:center\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><o:p></o:p></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"xmsonormal\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"xmsonormal\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"_x0000_i1027\" src=\"cid:92845B48-0023-45F7-81C1-620B3C947B46\"></span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Hello Rick,\r\n\r\nAny questions on the site prep guide?\r\n\r\nAlso, please email me the physical address in FL so I can start getting you set up in our system.\r\n\r\nThanks\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager – US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Fudge, Gary\r\nSent: Friday, October 24, 2025 6:27 PM\r\nTo: \'Rick\' <rick@mavrix.one>\r\nSubject: RE: HP MJF Printers\r\n\r\nHello Rick,\r\n\r\nGood catching up with you today.  See attached site prep guide as requested.\r\n\r\nCan you please email me your address now that you have the land secure so I can go ahead and get you into our system?\r\n\r\nPlease let me know if you have any questions or need any additional information.\r\n\r\nBest Regards\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager – US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Friday, October 24, 2025 8:46 AM\r\nTo: Fudge, Gary <gary.fudge@hp.com<mailto:gary.fudge@hp.com>>\r\nSubject: Re: HP MJF Printers\r\n\r\nCAUTION: External Email\r\n585.797.9473\r\nSafe travels!\r\nThanks,\r\nRick\r\n\r\nOn October 24, 2025 at 08:56:44, Fudge, Gary (gary.fudge@hp.com<mailto:gary.fudge@hp.com>) wrote:\r\nI’m on a flight but should land around 10:30-10:45.   Let me know of a good number to reach you and I can call then\r\n\r\nGary Fudge\r\n678-654-6734\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Friday, October 24, 2025 7:41:17 AM\r\nTo: Fudge, Gary <gary.fudge@hp.com<mailto:gary.fudge@hp.com>>\r\nSubject: Re: HP MJF Printers\r\n\r\nCAUTION: External Email\r\nHey Gary,\r\nAre you available to day at 10a for a call?\r\nTalking about power requirements for our facilities next week and need to start pulling together numbers.\r\nOr, can you send me power requirements for the MJF Printers?\r\nLet me know what works.\r\nThanks!\r\nRick\r\n\r\nOn October 2, 2025 at 11:28:38, Fudge, Gary (gary.fudge@hp.com<mailto:gary.fudge@hp.com>) wrote:\r\n\r\nHello Rick,\r\n\r\n\r\n\r\nAre you all ready to continue the conversation about our 3D Printers/3DP Services?  If not, when should I check back with you?\r\n\r\n\r\n\r\nBest Regards,\r\n\r\n\r\n\r\nGary Fudge\r\n\r\n3D Print - Enterprise Account Manager – US South\r\n\r\nAtlanta , GA\r\n\r\nM - (678) 654-6734\r\n\r\n|\r\n\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n\r\n[cid:92845B48-0023-45F7-81C1-620B3C947B46]\r\n\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-11-03 22:46:52','2025-12-09 19:30:39','2025-12-09 19:30:39','2025-12-09 19:30:39',NULL,NULL,NULL),
(919,4,' <BN2P110MB0977F4A85B19933984F90AECA0C5A@BN2P110MB0977.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'Dragonfly Pictures, Inc.','mike@dpiuav.com','Michael Piasecki','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle17\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Dear Rick, <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">We met at the Army Marketplace event in Huntsville a while back. I drove you to the airport. If you wanted us to brief you on our portion of the market, we can do that. Otherwise, I wish you well on your excellent\r\n mission of increasing the manufacturing of relevant US military products at scale and in time enough.\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">Respectfully,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">Michael<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">Michael Piasecki<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">President<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">DPI UAV Systems<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">600 W. 2<sup>nd</sup> St., Essington, PA 19029<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">Office: (610) 521-6115 x 202<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">Mobile: (215) 439-2036<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\"><a href=\"http://www.dpiuav.com/\"><span style=\"color:#0563C1\">www.dpiuav.com</span></a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060;mso-ligatures:none\"><a href=\"https://youtu.be/4ihY-IiAfXI\"><span style=\"color:#0563C1\">https://youtu.be/4ihY-IiAfXI</span></a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black;mso-ligatures:none\">Extending Man\'s Reach with Unmanned Helicopters</span></b><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black;mso-ligatures:none\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060\"><img border=\"0\" width=\"222\" height=\"70\" style=\"width:2.3125in;height:.7291in\" id=\"Picture_x0020_2\" src=\"cid:image001.jpg@01DC4E56.7C13D220\" alt=\"DPI-logo-4-April28-blue-full\"></span><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">This is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information.\r\n No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is\r\n appreciated.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</body>\r\n</html>','Dear Rick,\r\n\r\nWe met at the Army Marketplace event in Huntsville a while back. I drove you to the airport. If you wanted us to brief you on our portion of the market, we can do that. Otherwise, I wish you well on your excellent mission of increasing the manufacturing of relevant US military products at scale and in time enough.\r\n\r\nRespectfully,\r\nMichael\r\n\r\n\r\nMichael Piasecki\r\nPresident\r\nDPI UAV Systems\r\n600 W. 2nd St., Essington, PA 19029\r\nOffice: (610) 521-6115 x 202\r\nMobile: (215) 439-2036\r\nwww.dpiuav.com<http://www.dpiuav.com/>\r\nhttps://youtu.be/4ihY-IiAfXI\r\n\r\n\r\nExtending Man\'s Reach with Unmanned Helicopters\r\n[DPI-logo-4-April28-blue-full]\r\n\r\nThis is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is appreciated.',0,0,0,0,0,0,'2025-11-05 18:19:05','2025-12-09 19:30:45','2025-12-09 19:30:45','2025-12-09 19:30:45',NULL,NULL,NULL),
(920,4,'<3ABCC51C-8AF0-400F-AF6B-62B32A51E553@mavrix.one>',NULL,NULL,'Fwd: Jarrett Brownfield shared \"Mavrix1_MASTER_MODEL_11.5.2025\" with you','brian@mavrix.one','\"Brian C. Stufflebean\"','\r\n--Apple-Mail-41484DAC-AA7D-49E8-A18C-0E0DE5D45CDB\r\nContent-Type: text/html;\r\n	charset=utf-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<html class=3D\"apple-mail-supports-explicit-dark-mode\"><head><meta http-equi=\r\nv=3D\"content-type\" content=3D\"text/html; charset=3Dutf-8\"></head><body dir=3D=\r\n\"auto\"><br id=3D\"lineBreakAtBeginningOfSignature\"><div dir=3D\"ltr\">Sent from=\r\n my iPhone</div><div dir=3D\"ltr\"><br>Begin forwarded message:<br><br></div><=\r\nblockquote type=3D\"cite\"><div dir=3D\"ltr\"><b>From:</b> Jarrett Brownfield &l=\r\nt;jarrett.brownfield@jdcapitaladvisors.com&gt;<br><b>Date:</b> November 5, 2=\r\n025 at 5:31:51=E2=80=AFPM EST<br><b>To:</b> brian@mavrix.one<br><b>Subject:<=\r\n/b> <b>Jarrett Brownfield shared \"Mavrix1_MASTER_MODEL_11.5.2025\" with you</=\r\nb><br><b>Reply-To:</b> Jarrett Brownfield &lt;jarrett.brownfield@jdcapitalad=\r\nvisors.com&gt;<br><br></div></blockquote><blockquote type=3D\"cite\"><div dir=3D=\r\n\"ltr\">=EF=BB=BF\r\n\r\n\r\n<meta http-equiv=3D\"Content-Type\" content=3D\"text/html; charset=3Dutf-8\">\r\n<!--[if mso]>\r\n<style type=3D\"text/css\">\r\n   body, table, td { font-family: \'Segoe UI\', sans-serif !important; }\r\n   a { color: #0000EE; }\r\n</style>\r\n<![endif]-->\r\n<meta name=3D\"viewport\" content=3D\"width=3Ddevice-width, initial-scale=3D1\">=\r\n\r\n<!--[if mso]>\r\n<xml>\r\n    <o:OfficeDocumentSettings>\r\n        <o:AllowPNG/>\r\n        <o:PixelsPerInch>96</o:PixelsPerInch>\r\n    </o:OfficeDocumentSettings>\r\n</xml>\r\n<![endif]-->\r\n\r\n\r\n<div style=3D\"background-color:#f3f3f3;\"><!--[if gte mso 9]>\r\n                <v:background xmlns:v=3D\"urn:schemas-microsoft-com:vml\" fill=\r\n=3D\"t\">\r\n                <v:fill type=3D\"tile\" src=3D\"\" iconthumbnail=3D\"\" color=3D\"#=\r\nf3f3f3\"/>\r\n                </v:background>\r\n                <![endif]-->\r\n<table height=3D\"100%\" width=3D\"100%\" cellpadding=3D\"0\" cellspacing=3D\"0\" bo=\r\nrder=3D\"0\" style=3D\"border-spacing: 0px\">\r\n<tbody>\r\n<tr>\r\n<td valign=3D\"top\" align=3D\"center\" style=3D\"background-image:url();backgrou=\r\nnd-color:#f3f3f3;\">\r\n<table align=3D\"center\" style=3D\"border-spacing: 0px;width: 600px;margin-rig=\r\nht: auto;margin-left: auto\">\r\n<tbody>\r\n<tr>\r\n<td align=3D\"left\" style=3D\"padding: 0px;margin: 0px\"><!-- Start Standard He=\r\nader -->\r\n<table cellpadding=3D\"0\" cellspacing=3D\"0\" border=3D\"0\" style=3D\"border-spac=\r\ning: 0px;width: 100%;padding-top: 15px\">\r\n<tbody>\r\n<tr>\r\n<td align=3D\"center\" style=3D\"width: 100%;border: 1px solid #c8c8c8 !importa=\r\nnt;box-shadow: 0px 3px 0px rgba(0,0,0,0.05);border-top-left-radius: 8px;bord=\r\ner-top-right-radius: 8px;overflow: hidden;border-bottom-width: 0px;backgroun=\r\nd-color: #ffffff\">\r\n<!--[if !mso]>-->\r\n<div><!--<![endif]--><!--[if mso]>\r\n                    <table class=3D\"headerBackgroundMsoTable\"  cellpadding=3D=\r\n\"0\" cellspacing=3D\"0\" border=3D\"0\">\r\n                        <tbody>\r\n                            <tr class=3D\"headerBackgroundMsoRow\">\r\n                                <td class=3D\"headerBackgroundMsoContainer\">\r\n                    <![endif]-->\r\n<table cellpadding=3D\"0\" cellspacing=3D\"0\" border=3D\"0\" style=3D\"border-spac=\r\ning: 0px;width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td align=3D\"center\" style=3D\"padding: 20px 0;text-decoration: none\"><img al=\r\nt=3D\"a62b7584-c20b-4ed0-b98c-a472b3d9bcb6.png\" src=3D\"cid:a62b7584-c20b-4ed0=\r\n-b98c-a472b3d9bcb6\">\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=3D\"1\"></td>\r\n</tr>\r\n<tr>\r\n<td colspan=3D\"3\" style=3D\"padding-top: 20px; padding-right: 36px; padding-l=\r\neft: 36px; padding-bottom: 36px;\" align=3D\"center\">\r\n<p style=3D\"color:#323130;font-size:24px;font-weight:600;line-height:32px;ma=\r\nrgin:0;max-width:400px;padding:0;text-align:center\">\r\nJarrett Brownfield shared a file with you </p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!--[if mso]>\r\n                                </td>\r\n                            </tr>\r\n                        </tbody>\r\n                    </table>\r\n                    <![endif]--><!--[if !mso]>--></div>\r\n<!--<![endif]--></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- End Standard Header --></td>\r\n</tr>\r\n<tr>\r\n<td align=3D\"left\" style=3D\"padding: 0px;margin: 0px\"></td>\r\n</tr>\r\n<tr>\r\n<td style=3D\"background-color: #f8f8f8;text-align: center;border: 1px solid #=\r\nc8c8c8 !important;border-top: 1px solid #dedede;box-shadow: 0px 3px 0px rgba=\r\n(0,0,0,0.05);border-bottom-left-radius: 8px;border-bottom-right-radius: 8px;=\r\noverflow: hidden\">\r\n<table style=3D\"width:100%;\" dir=3D\"ltr\">\r\n<tbody>\r\n<tr>\r\n<td colspan=3D\"3\">\r\n<p style=3D\"font-size:16px;color:#323130;margin:40px 20px 28px\"><a name=3D\"c=\r\nustomMessage\" role=3D\"presentation\" style=3D\"cursor: default; text-decoratio=\r\nn: none; text-align-last: center; text-align: justify; display: block;\">Gent=\r\nlemen,&nbsp;<br>\r\n<br>\r\nPlease find attached WIP model. This model contains the workbook architectur=\r\ne needed to calculate volume and capacity. I still need to link:<br>\r\n<br>\r\nMargin application each assigned to individual lines (connecting sales price=\r\n to volume for revenue calculations - not yet done)<br>\r\nDepreciation to phases&nbsp;<br>\r\nHeadcount and wages are account but have not yet been linked to cost calcula=\r\ntions.</a>\r\n</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=3D\"3\" style=3D\"background-color:#f8f8f8\" align=3D\"center\"><a hre=\r\nf=3D\"https://kdsllc-my.sharepoint.com/:x:/g/personal/jarrett_brownfield_jdca=\r\npitaladvisors_com/ETkEPbbJwZ5EleMTusjxExwBdQRPeq8Tp7NojfkgJJdoEg?e=3D4%3abWr=\r\nF2V&amp;at=3D9\" aria-label=3D\"Mavrix1_MASTER_MODEL_11.5.2025\" style=3D\"displ=\r\nay:inline-block;text-decoration:none;color:#323130\"><!--[if mso]>\r\n                    <table width=3D\"240\" border=3D\"0\" cellpadding=3D\"0\" cell=\r\nspacing=3D\"0\" role=3D\"presentation\" style=3D\"width:auto;text-align:center;ba=\r\nckground:#ffffff;\">\r\n                <![endif]--><!--[if !mso]><!---->\r\n<table role=3D\"presentation\" border=3D\"0\" cellpadding=3D\"0\" cellspacing=3D\"0=\r\n\" style=3D\"width:100%;text-align:center;background:#ffffff\" align=3D\"center\"=\r\n>\r\n<!--<![endif]-->\r\n<tbody>\r\n<tr>\r\n<td style=3D\"border-top:1px solid #d2d2d2;border-left:1px solid #d2d2d2;bord=\r\ner-bottom:1px solid #d2d2d2;background:#ffffff;padding:20px 4px 20px 20px;\">=\r\n\r\n<!--[if mso]>\r\n                                    <a href=3D\"https://kdsllc-my.sharepoint.=\r\ncom/:x:/g/personal/jarrett_brownfield_jdcapitaladvisors_com/ETkEPbbJwZ5EleMT=\r\nusjxExwBdQRPeq8Tp7NojfkgJJdoEg?e=3D4%3abWrF2V&at=3D9\" style=3D\"text-decorati=\r\non:none\">\r\n                                <![endif]--><img alt=3D\"a43f9a4b-4589-459c-9=\r\nab2-7c8db3ee85fc.png\" src=3D\"cid:a43f9a4b-4589-459c-9ab2-7c8db3ee85fc\"><!--[=\r\nif mso]>\r\n                                    </a>\r\n                                <![endif]-->\r\n</td>\r\n<td style=3D\"border-top:1px solid #d2d2d2;border-bottom:1px solid #d2d2d2;bo=\r\nrder-right:1px solid #d2d2d2;background-color:#ffffff;font-size:16px;word-br=\r\neak:break-all;text-align:left;padding:20px 20px 20px 4px;\">\r\n<!--[if mso]>\r\n                                    <a href=3D\"https://kdsllc-my.sharepoint.=\r\ncom/:x:/g/personal/jarrett_brownfield_jdcapitaladvisors_com/ETkEPbbJwZ5EleMT=\r\nusjxExwBdQRPeq8Tp7NojfkgJJdoEg?e=3D4%3abWrF2V&at=3D9\" style=3D\"text-decorati=\r\non:none; fontSize: 16px; color: #323130\">\r\n                                <![endif]-->Mavrix1_MASTER_MODEL_11.5.2025<!=\r\n--[if mso]>\r\n                                    </a>\r\n                                <![endif]-->\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</a></td>\r\n</tr>\r\n<tr>\r\n<td colspan=3D\"3\" style=3D\"text-align:center;background-color:#f8f8f8\" align=\r\n=3D\"center\">\r\n<div style=3D\"display:inline-block\"><!--[if mso]>\r\n                <table  border=3D\"0\" cellpadding=3D\"0\" cellspacing=3D\"0\" rol=\r\ne=3D\"presentation\" style=3D\"height:20px; width: auto;\">\r\n                <![endif]--><!--[if !mso]><!---->\r\n<table role=3D\"presentation\" border=3D\"0\" cellpadding=3D\"0\" cellspacing=3D\"0=\r\n\" style=3D\"width:auto;height:20px\" align=3D\"center\">\r\n<!--<![endif]-->\r\n<tbody>\r\n<tr>\r\n<td style=3D\"height:20px;padding:24px 4px 20px 0px\" align=3D\"center\"><img al=\r\nt=3D\"e4194a0a-fee6-4ecb-a087-39e4636de6b6.png\" src=3D\"cid:e4194a0a-fee6-4ecb=\r\n-a087-39e4636de6b6\">\r\n</td>\r\n<td style=3D\"font-size:12px;padding:20px 0px 20px;color:#323130\">This link o=\r\nnly works for the direct recipients of this message.\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=3D\"3\" style=3D\"padding:0px 0px 32px 0px;height:40px;background-c=\r\nolor:#f8f8f8; text-align:center;border-top:none;border-bottom:none\">\r\n<!--[if mso]>\r\n                <a href=3D\"https://kdsllc-my.sharepoint.com/:x:/g/personal/j=\r\narrett_brownfield_jdcapitaladvisors_com/ETkEPbbJwZ5EleMTusjxExwBdQRPeq8Tp7No=\r\njfkgJJdoEg?e=3D4%3abWrF2V&at=3D9\">\r\n                            <v:roundrect xmlns:v=3D\"urn:schemas-microsoft-co=\r\nm:vml\" xmlns:w=3D\"urn:schemas-microsoft-com:office:word\" href=3D\"https://kds=\r\nllc-my.sharepoint.com/:x:/g/personal/jarrett_brownfield_jdcapitaladvisors_co=\r\nm/ETkEPbbJwZ5EleMTusjxExwBdQRPeq8Tp7NojfkgJJdoEg?e=3D4%3abWrF2V&at=3D9\" styl=\r\ne=3D\"height:40px;v-text-anchor:middle;width:168px\" arcsize=3D\"2%\" strokecolo=\r\nr=3D#005A9E fillcolor=3D#005A9E>\r\n                        <w:anchorlock/>\r\n                        <center style=3D\"color:#ffffff;font-family: \'Segoe U=\r\nI\', sans-serif;font-size:16px\">Open</center>\r\n                    </v:roundrect>\r\n                </a>\r\n        <![endif]--><!--[if !mso]> <!----><a href=3D\"https://kdsllc-my.share=\r\npoint.com/:x:/g/personal/jarrett_brownfield_jdcapitaladvisors_com/ETkEPbbJwZ=\r\n5EleMTusjxExwBdQRPeq8Tp7NojfkgJJdoEg?e=3D4%3abWrF2V&amp;at=3D9\" style=3D\"bac=\r\nkground-color:#005A9E;border-color:#005A9E;border-radius:2px;border-style:so=\r\nlid;color:#ffffff;display:inline-block;font-size:16px;text-decoration:none;t=\r\next-align:center;line-height:40px;width:168px\" aria-label=3D\"Open Mavrix1_MA=\r\nSTER_MODEL_11.5.2025\">Open\r\n</a><!-- <![endif]--></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n</tr>\r\n<tr>\r\n<td align=3D\"left\" style=3D\"padding: 0px;margin: 0px\"><!-- Start Standard Fo=\r\noter -->\r\n<table cellpadding=3D\"0\" cellspacing=3D\"0\" border=3D\"0\" align=3D\"center\" sty=\r\nle=3D\"border-spacing: 0px;width: 100%;padding: 10px\">\r\n<tbody>\r\n<tr>\r\n<td align=3D\"left\" style=3D\"font-size: 12px;line-height: 16px;padding: 0 24p=\r\nx\">\r\n<div>\r\n<table cellpadding=3D\"0\" cellspacing=3D\"0\" border=3D\"0\" style=3D\"border-spac=\r\ning: 0px;width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td align=3D\"left\" style=3D\"padding-top: 5px;text-align: left\">\r\n<table cellpadding=3D\"0\" cellspacing=3D\"0\" border=3D\"0\" style=3D\"border-spac=\r\ning: 0px;width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td align=3D\"left\">\r\n<p style=3D\"margin: 0px\">This email is generated through KDS, LLC\'s use of M=\r\nicrosoft 365 and may contain content that is controlled by KDS, LLC.</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- End Footer --></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<img src=3D\"https://southcentralusr-notifyp.svc.ms:443/api/v2/tracking/metho=\r\nd/View?mi=3D_F0Ez4E2ckmkrzvIi6oG9A&amp;si=3DShare\" aria-hidden=3D\"true\" role=\r\n=3D\"presentation\" height=3D\"1\" width=3D\"1\" istrackingpixel=3D\"true\" data-uni=\r\nque-identifier=3D\"\">\r\n\r\n\r\n</div></blockquote></body></html>=\r\n\r\n--Apple-Mail-41484DAC-AA7D-49E8-A18C-0E0DE5D45CDB\r\nContent-Type: image/png;\r\n	name=a62b7584-c20b-4ed0-b98c-a472b3d9bcb6.png;\r\n	x-apple-part-url=a62b7584-c20b-4ed0-b98c-a472b3d9bcb6\r\nContent-Disposition: inline;\r\n	filename=a62b7584-c20b-4ed0-b98c-a472b3d9bcb6.png\r\nContent-Transfer-Encoding: base64\r\nContent-Id: <a62b7584-c20b-4ed0-b98c-a472b3d9bcb6>\r\n\r\n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\r\ngEagxRD4P4koPOQHmKVOAAAAAElFTkSuQmCC\r\n--Apple-Mail-41484DAC-AA7D-49E8-A18C-0E0DE5D45CDB\r\nContent-Type: image/png;\r\n	name=a43f9a4b-4589-459c-9ab2-7c8db3ee85fc.png;\r\n	x-apple-part-url=a43f9a4b-4589-459c-9ab2-7c8db3ee85fc\r\nContent-Disposition: inline;\r\n	filename=a43f9a4b-4589-459c-9ab2-7c8db3ee85fc.png\r\nContent-Transfer-Encoding: base64\r\nContent-Id: <a43f9a4b-4589-459c-9ab2-7c8db3ee85fc>\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJ\r\nbWFnZVJlYWR5ccllPAAABQNJREFUeNrsnU1IVFEUx29ig2g2Ewa2MaNPhJIWWThSUWRQUUwtNMq+\r\nFqkklEa1sFxZERVpogtt0ZcFuUkKCzKQioyyRVRg32QRJLjwI0XGFr2jTk1v7sy87/tm3v8Pjzfz\r\n5t55z/O755x77psZGYMgCIIgCHKipph9gr27i5KlXbm0ZcWITfqkrfbKteYeK06WYME5Ysn4pJnS\r\nVikNnMx48YDrU6e6XMUlpb5lOTkuu1p9355dzbSfP3/BvE+fPn6WHo5I22mzPSHBqj/QzsYPVumB\r\nslyCID1MtsITLAEwNub3x0r8SUtLsxRCAoOEQgAAwRAAQDAEABAMAQAEQwAAwRAAQDAEABAMAQAE\r\nQwAAwRAAQDAEABAMAQAEQwAAwRAAYFJut2cG7V92dfkNhFAerU8iTD8hb15e9v17bY8a6utaDHzb\r\nmQCgUL6t2zKk3equF8/f9fX19Vp1XgCYlMvlYgWF2zNoM+L9AveYkQNsLgAAAACAAMC5UjQL8pxY\r\n45N2NdI2R+0JWtmPiX3VWsMuerZnFju9sYxtysqLfw+YNP5tLcY3S9/6f7Kim1WsrfupI0JQjV0v\r\nvvJeQ3wDkEa/x04jn+cJSMKQeQD6T3b0w0TwAACABNcB0eTNzGa3i86EHP8+0MuW1e/T1LeqvYk1\r\nvWiFByhRZ89rdv/Ds5DjGe50Vpi9LmLfus0VIcfe9n5xhPEN84DxEfugiXlnZzN3Usp/x4+u2slu\r\nvX7I7UNwCJJch+5e0HQNS1sq2KB/RHH76a5k9qrgX5mz5vlZNvR7VHH/1MQk1rHimD1yAIWbS12t\r\nir2AQFXnl4Qcp5FPHqBFaozPa6/G+Fram56Ezz2+MQ5CLvICuWcUL/eFHKO+55/cwCxIjw7ereF6\r\nARk8+Pn+HB83jA2MDms+N4UUPe0ppKiR2vam5gB5Qt6wMPe/42RwCi9kYJ5HUB9eIlej4HiuRXrj\r\nuW3qAN5IJoOTF/ByArWlPijETE7I5AXV64tDjlPc5+UOADA4IZMXyEOTk+b8luQAeULmVblGzPl5\r\nmnNqixTOfilu706axr4ev2NYHWErDwgk5HBFmN45P09qjM9rr7eOsB2AwJQz7GuedOZ0mQqAZjve\r\nzCVhX6d8IM8JekQhRU97vXWErXJAuKUGuS5uPsw6G/bqKsACCo7nIuoIW3kAGVZebFHM7+x5EwLq\r\nyMqdCEFGihdaaITTfP8cZ62HCjS6LwAABoUeGv1yUWFGEMLdO6jOL0YdYFbooYKMCrPgpQq5hyxO\r\nnzu+RhTcTq0WleSzwZEh5Uk0OZW9b2z/+3xegZcNDCvv705JZZ9bOu3jAeFmNXKjEhBefUBLFZGm\r\nrVHn5SqMz2uvxvha2psKIFzooaTLM3ZVeyN3wa6O8x7IAQpEMxl56Bkf/WFusJDxeQt2VDdorQ0o\r\npOhpTyFF1aBT2d60HEAzmOAbLgFRsqWkG2kpgsKOHJzW2iA4nmuR3nguxAMmwkYF97Voa/yBqSnv\r\nPZ1SG+j2ADJitM/+RBJ5gZOXo/HJOAAAAAgAACCSvtr14unLek4AUGHXi6dvSsY9gP6THTRH3Gon\r\nT6CR37yjOi6+pqqoDpiEoGmyTv9Bg/aXr14vQsRHEgYACAAAAAIAAIAAAAAgAAAAAIAAAAAskJ5f\r\nJY8l+f1+VX+rFb8d3S1tWQb/KnmsqNsOHlCr5ELi1Pi1CLIQBEEQBEE8/RFgAPbp9jDBm/PXAAAA\r\nAElFTkSuQmCC\r\n--Apple-Mail-41484DAC-AA7D-49E8-A18C-0E0DE5D45CDB\r\nContent-Type: image/png;\r\n	name=e4194a0a-fee6-4ecb-a087-39e4636de6b6.png;\r\n	x-apple-part-url=e4194a0a-fee6-4ecb-a087-39e4636de6b6\r\nContent-Disposition: inline;\r\n	filename=e4194a0a-fee6-4ecb-a087-39e4636de6b6.png\r\nContent-Transfer-Encoding: base64\r\nContent-Id: <e4194a0a-fee6-4ecb-a087-39e4636de6b6>\r\n\r\niVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAABYlAAAWJQFJUiTwAAAA\r\nAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAfqSURBVHgBzVpPTBxVGP9ma21Nutsl6aHZte1w\r\nglPByBqrTQQ8qBehsRBNIVK9CAfhVEykgaZ4sD242wPooX8UPBg1sr3Qmri0hxpTNpFSE+HElJZV\r\nkxK3Sy+QdMfv93beMAszs7OztPWXDPN25s2b3/fe9+99g0JbAFVVw0SPWomUOj5U0vV6vhw2DgmN\r\nSNdIUWa4zUfgusagCqGQTxRI5/t4iNeYcCP5wwwziFciTNkCmMR16iVjhoPBIDXEYhRriFE0GqWa\r\n2lpxDQewsrJCS0tL4jw/N0fT6WlKT0+L3xYml1iQU+UKUpYAqrp/yEo8xqS7u3tMwuViKpWiieSE\r\nOJvQ86e0xXtDXsfwJADPOut1/iduQrepqbmZ+vs/oUgkQluBTCZDoyMjlGRhDLCtBJq8rEZJAVR1\r\nXxfpyhfcDEdYPYZPDwt1eRyYn5+n3t6PKcPqxsiSoh/XtLsTbs9sc7tZUBlBfmdHRyedOXuWqqur\r\nyS8w08COHTts7+/Zs4daWlppbXWNZmdnd/L8vhveHVSyD3LXnMZU3MnTINrdPT1C1/0AxntyYIBn\r\nd840WqgexmtpbXV8boRV6svRkcIPF7vYZk9+XyvP/Gil5OfY43R2HCNNWxCzfvBgHYVCIVpYWKCp\r\nqRQt8Yo0sz3ZAQ5C53OaPRbHjsZw1W4tm31wi0oJUDBYmuTmzkpnvqf7I1peXiaoX+LcOWpvb6c2\r\nPjDzKRYArhQ6EHOwqSIhiFiIqu+yDGufwKan9PwU/w3jpX7JA8lkUug8dPpEf3+Rm4UKXbhwUVwb\r\nHxsrjgcb0MOTCC7gZHhCchRA6D2f4G0w+5VAzC6R4zgQAuoD8tNGXydgDHBi1Kv7nx+03guskxeq\r\nI24m4glfgcmKTGbJJOqESESQcl0BAFxOs/sWUAJ9nAyYOZZlBfKCPJYckbVSBIMhcZau0w5LhpBR\r\nDwER9tBUMPgw5Xf1yutCAGP2u9CuVHUkjJfR2Ng3tvdh5JfZTjC7XicM0V/AsgrGCjxqxF/o5Fal\r\nB52dnYLct+PjNCr9uQHo/IcfHBftDqOfF4BbQ4PwWOYqiECmHtj/O5/q44lzjn7ZDxAHQBQ6DpK1\r\nPNM5IyMF3m5poeHhz8oZ0iK8fk27c7cpINSHyeMFW0keSFu8i/Q2kry8tlTIezyj1sx8lUao0TMF\r\n9VEcg4kd8OIx9t+Ipiu5nNgDvMhL28IzGi24u6JUAH5cqCffy3F/JG1QK6TREOg8xwT5XCnIvUch\r\nBQ+1bAuHw+9z6+W2tnY6WFdXcgCoRXvbUfr1xg1avn9fCANPg2iJQTH4lclJSiTigjDIIfKijZcj\r\nYcMsQihEWUwCnkMfpyRvI/DeG/x+3glqbMSKyPFrPXgCLLfUaRC4cvVnmr39hzjD/UIQ3B8fHxP9\r\nEW3dxkWUhbfCc/IZL4jI1VJIDbAUKtpePAGWHeThapEeSI+F8+nhYSGUXBEI5MWjSSNGSuEVtTU1\r\nRkuphxtVi6RygfTbTjkSBJMTAXvwAqHTbD9ScE/PhEKyGQ5YB3KDsUtyVQkRlGoK9yMejRKIvRQr\r\nCMEG7gUWrvBC3iClzpXIW2ReU04uhRXt7iZfwApkrS92ggz5cHtph+wRRo6dl/Q4XjF98yYlJyZK\r\ncpCw9vMsAADDBAYGPt0UgKSHAsrdR1y+nKSTJweKgpwbLO/WnhGlPvZE8O+lvEZHRwfHgT+FMb/1\r\n5hsiFYhySgzjS6V+EZOAa14N2C/WJ1tnAVCvpHUjLYXm5tdF4MEgEGQjYg2Pp+RihblSOs1AgFuI\r\nCIikyAzdYE0PRH7e1Cx0HcKkWCiMAVXI/JVxVSPkRFbh5Y4McSaSXPdeiC22z6cNGwwoM4qoder5\r\nf0EEEdXJ+CR5t+IWiAgBeDVPnOh3nBAYLPqVAqK8HV595VBBjZS16kI6rR6YQoUZod+OGIwGOg/h\r\nvv/hR1dbgT20HX1HvGDyylXbJA19rE4AewbYEIS2bm7sEkysdB9X7xgz2p3FF4xApl/D340bDwl5\r\nXWyuSxg67h8rVBEEMac+ICePYHCXuI4gab1uB7N+Ksry5o4skOA/WaiAXX4+PzcvzjBgL+g0VCdl\r\nrTpvAcBtvZK9dh1/hQBcBM5Kic6c+XzTgyI4sbv0ut2EqqGvrExsFUwN0fVLmva3hqZZGzWMeYGb\r\nYSdbeJqQ+xABNl4pgJnMWVcBkdZrWH8SABfDcFE5HJLkgaLaKBdPr4fDu1v5gb2rq6t0+PBh+j8g\r\nHo+LHSBhnhfvHrHe21TcDVc9d5Uvd91Gfd6l8PqkgPhz8cJ5NFlD1g5lsw+LirubBECHcFXoH1a0\r\n1lLV48eNom8Eiv6epmV+29jH9vtANpub4Xo8mo1PS4gNHziGtDv3vrLr5/iJSdiDRYjcSo7quGrh\r\ntXLgFzBY6LyhNgXyi/dOOfX38pEPX2suEj7ysW9H9a52C4q/dhC5FHtAY28Mr9jHVvu12zMeP7Pu\r\n5eLvs/jwoeI3cn5km9Ey9r1uQIRFALV8L+Yv+GtHrO7SCeV+6B7kHHxI/kY6jYKUn5IkVAXBCd+H\r\n02lzi5pllYm7qcxG+PhXA16N/PZB3sl1yWuyNAJDh3rt4t9Ry74YZCVhpNpQFZC2BEtBnAIPExxP\r\ns+XwqeCfPVgQ2t7I9oEydz35AmfBOh8+iEv4FsAKU5g81VEgUG9U+1RLl6w4sP/O5zXspLhAk/RL\r\n2or/ACLq7mby0h8AAAAAAElFTkSuQmCC\r\n--Apple-Mail-41484DAC-AA7D-49E8-A18C-0E0DE5D45CDB--','\r\n--Apple-Mail-41484DAC-AA7D-49E8-A18C-0E0DE5D45CDB\r\nContent-Type: text/html;\r\n	charset=utf-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\nSent from=\r\n my iPhoneBegin forwarded message:From: Jarrett Brownfield &l=\r\nt;jarrett.brownfield@jdcapitaladvisors.com&gt;Date: November 5, 2=\r\n025 at 5:31:51=E2=80=AFPM ESTTo: brian@mavrix.oneSubject: Jarrett Brownfield shared \"Mavrix1_MASTER_MODEL_11.5.2025\" with youReply-To: Jarrett Brownfield &lt;jarrett.brownfield@jdcapitalad=\r\nvisors.com&gt;=EF=BB=BF\r\n\r\n\r\n\r\n\r\n=\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nJarrett Brownfield shared a file with you \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nGent=\r\nlemen,&nbsp;\r\n\r\nPlease find attached WIP model. This model contains the workbook architectur=\r\ne needed to calculate volume and capacity. I still need to link:\r\n\r\nMargin application each assigned to individual lines (connecting sales price=\r\n to volume for revenue calculations - not yet done)\r\nDepreciation to phases&nbsp;\r\nHeadcount and wages are account but have not yet been linked to cost calcula=\r\ntions.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n=\r\n\r\n\r\n\r\n\r\nMavrix1_MASTER_MODEL_11.5.2025\r\n                                    \r\n                                \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis link o=\r\nnly works for the direct recipients of this message.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nOpen\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis email is generated through KDS, LLC\'s use of M=\r\nicrosoft 365 and may contain content that is controlled by KDS, LLC.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n=\r\n\r\n--Apple-Mail-41484DAC-AA7D-49E8-A18C-0E0DE5D45CDB\r\nContent-Type: image/png;\r\n	name=a62b7584-c20b-4ed0-b98c-a472b3d9bcb6.png;\r\n	x-apple-part-url=a62b7584-c20b-4ed0-b98c-a472b3d9bcb6\r\nContent-Disposition: inline;\r\n	filename=a62b7584-c20b-4ed0-b98c-a472b3d9bcb6.png\r\nContent-Transfer-Encoding: base64\r\nContent-Id: \r\n\r\n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\r\ngEagxRD4P4koPOQHmKVOAAAAAElFTkSuQmCC\r\n--Apple-Mail-41484DAC-AA7D-49E8-A18C-0E0DE5D45CDB\r\nContent-Type: image/png;\r\n	name=a43f9a4b-4589-459c-9ab2-7c8db3ee85fc.png;\r\n	x-apple-part-url=a43f9a4b-4589-459c-9ab2-7c8db3ee85fc\r\nContent-Disposition: inline;\r\n	filename=a43f9a4b-4589-459c-9ab2-7c8db3ee85fc.png\r\nContent-Transfer-Encoding: base64\r\nContent-Id: \r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJ\r\nbWFnZVJlYWR5ccllPAAABQNJREFUeNrsnU1IVFEUx29ig2g2Ewa2MaNPhJIWWThSUWRQUUwtNMq+\r\nFqkklEa1sFxZERVpogtt0ZcFuUkKCzKQioyyRVRg32QRJLjwI0XGFr2jTk1v7sy87/tm3v8Pjzfz\r\n5t55z/O755x77psZGYMgCIIgCHKipph9gr27i5KlXbm0ZcWITfqkrfbKteYeK06WYME5Ysn4pJnS\r\nVikNnMx48YDrU6e6XMUlpb5lOTkuu1p9355dzbSfP3/BvE+fPn6WHo5I22mzPSHBqj/QzsYPVumB\r\nslyCID1MtsITLAEwNub3x0r8SUtLsxRCAoOEQgAAwRAAQDAEABAMAQAEQwAAwRAAQDAEABAMAQAE\r\nQwAAwRAAQDAEABAMAQAEQwAAwRAAYFJut2cG7V92dfkNhFAerU8iTD8hb15e9v17bY8a6utaDHzb\r\nmQCgUL6t2zKk3equF8/f9fX19Vp1XgCYlMvlYgWF2zNoM+L9AveYkQNsLgAAAACAAMC5UjQL8pxY\r\n45N2NdI2R+0JWtmPiX3VWsMuerZnFju9sYxtysqLfw+YNP5tLcY3S9/6f7Kim1WsrfupI0JQjV0v\r\nvvJeQ3wDkEa/x04jn+cJSMKQeQD6T3b0w0TwAACABNcB0eTNzGa3i86EHP8+0MuW1e/T1LeqvYk1\r\nvWiFByhRZ89rdv/Ds5DjGe50Vpi9LmLfus0VIcfe9n5xhPEN84DxEfugiXlnZzN3Usp/x4+u2slu\r\nvX7I7UNwCJJch+5e0HQNS1sq2KB/RHH76a5k9qrgX5mz5vlZNvR7VHH/1MQk1rHimD1yAIWbS12t\r\nir2AQFXnl4Qcp5FPHqBFaozPa6/G+Fram56Ezz2+MQ5CLvICuWcUL/eFHKO+55/cwCxIjw7ereF6\r\nARk8+Pn+HB83jA2MDms+N4UUPe0ppKiR2vam5gB5Qt6wMPe/42RwCi9kYJ5HUB9eIlej4HiuRXrj\r\nuW3qAN5IJoOTF/ByArWlPijETE7I5AXV64tDjlPc5+UOADA4IZMXyEOTk+b8luQAeULmVblGzPl5\r\nmnNqixTOfilu706axr4ev2NYHWErDwgk5HBFmN45P09qjM9rr7eOsB2AwJQz7GuedOZ0mQqAZjve\r\nzCVhX6d8IM8JekQhRU97vXWErXJAuKUGuS5uPsw6G/bqKsACCo7nIuoIW3kAGVZebFHM7+x5EwLq\r\nyMqdCEFGihdaaITTfP8cZ62HCjS6LwAABoUeGv1yUWFGEMLdO6jOL0YdYFbooYKMCrPgpQq5hyxO\r\nnzu+RhTcTq0WleSzwZEh5Uk0OZW9b2z/+3xegZcNDCvv705JZZ9bOu3jAeFmNXKjEhBefUBLFZGm\r\nrVHn5SqMz2uvxvha2psKIFzooaTLM3ZVeyN3wa6O8x7IAQpEMxl56Bkf/WFusJDxeQt2VDdorQ0o\r\npOhpTyFF1aBT2d60HEAzmOAbLgFRsqWkG2kpgsKOHJzW2iA4nmuR3nguxAMmwkYF97Voa/yBqSnv\r\nPZ1SG+j2ADJitM/+RBJ5gZOXo/HJOAAAAAgAACCSvtr14unLek4AUGHXi6dvSsY9gP6THTRH3Gon\r\nT6CR37yjOi6+pqqoDpiEoGmyTv9Bg/aXr14vQsRHEgYACAAAAAIAAIAAAAAgAAAAAIAAAAAskJ5f\r\nJY8l+f1+VX+rFb8d3S1tWQb/KnmsqNsOHlCr5ELi1Pi1CLIQBEEQBEE8/RFgAPbp9jDBm/PXAAAA\r\nAElFTkSuQmCC\r\n--Apple-Mail-41484DAC-AA7D-49E8-A18C-0E0DE5D45CDB\r\nContent-Type: image/png;\r\n	name=e4194a0a-fee6-4ecb-a087-39e4636de6b6.png;\r\n	x-apple-part-url=e4194a0a-fee6-4ecb-a087-39e4636de6b6\r\nContent-Disposition: inline;\r\n	filename=e4194a0a-fee6-4ecb-a087-39e4636de6b6.png\r\nContent-Transfer-Encoding: base64\r\nContent-Id: \r\n\r\n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\r\n2or/ACLq7mby0h8AAAAAAElFTkSuQmCC\r\n--Apple-Mail-41484DAC-AA7D-49E8-A18C-0E0DE5D45CDB--',0,0,0,0,0,0,'2025-11-06 01:19:03','2025-12-09 19:30:45','2025-12-09 19:30:45','2025-12-09 19:30:45',NULL,NULL,NULL),
(921,4,'<CAJO9__YNw0KB_tkUNy-k31iMxXiZSjOu4wVAyzpL8WaZ95jNWA@mail.gmail.com>',NULL,NULL,'Re: Sol-Ark Preferred Prototype Specs','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Good evening team.  </div><div><br></div><div>Back from Sol-Ark - BMS question. </div><div><br></div><div><img src=\"cid:ii_mhmv8y361\" alt=\"image (7).png\" width=\"562\" height=\"366\"><br></div><div><span style=\"color:rgb(0,0,0);font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Is there any possibility of setting the Max Charge/Discharge at 200A to align with the performance targets we’re aiming for? I understand that maintaining 300A for 15 seconds may not be feasible, 15 seconds is a long duration, and most appliances don’t require that much ramp-up time. Could you share any data regarding the peak power capability for a shorter duration, such as 10ms or less?</span></div><div><span style=\"color:rgb(0,0,0);font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"color:rgb(0,0,0);font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">I reached out to Susan and Wilson on this.  The 16kWh battery can support 200Ah burst but not continuous.  The 314Ah cell is a .5C charge/discharge so they don&#39;t suggest continuous over 157A.  </span></div><div><span style=\"color:rgb(0,0,0);font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"color:rgb(0,0,0);font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">I want to confirm with you and see if you have any thoughts or ideas before I respond.  </span></div><div><span style=\"color:rgb(0,0,0);font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"color:rgb(0,0,0);font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Thanks,</span></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Nov 3, 2025 at 2:10 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Hi Nathan and team,</div><div><br></div><div>Here are the list of preferred prototype specs from Sol-Ark</div><div><br></div><div><div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">Please see the below specs for the prototype battery for testing:</div><ul style=\"margin-top:0px;margin-bottom:0px\"><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">LBC512314</div></li><ul style=\"margin-top:0px;margin-bottom:0px\"><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">Capacity: 16.1kWh</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">Amp Hours (Ah): 314Ah</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">Nominal Voltage: 51.2v</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">Operating Range: 48v - 56v</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">Max Continuous Charge: 200A Optimal | 150A Minimum</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">Max Continuous Discharge: 220A Optimal | 200A Minimum</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">Peak Discharge Current: 300A</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">Communication Protocol: RS-485 Modbus RTU &amp; CANBUS<span style=\"font-size:11pt\"></span></div></li></ul></ul><div><font color=\"#000000\" face=\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif\"><span style=\"font-size:14.6667px\"><br></span></font></div></div><div><span style=\"color:rgb(0,0,0);font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Here is a list of specs that would be comparable:</span><font color=\"#000000\" face=\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif\"><span style=\"font-size:14.6667px\"></span></font></div><div><img src=\"cid:ii_mhjik7da1\" alt=\"image (5).png\" width=\"542\" height=\"176\"><br></div><div><br></div><div>I have reached out to Susan from GSL and shared the specs. I&#39;ve also inquired if this would be available from one of their dealers in the US.</div><div><br></div><div>Let me know if you have any other thoughts on what we should send thier way.</div><div><br></div><div>Best, </div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div></div>\r\n</blockquote></div>','Good evening team.\r\n\r\nBack from Sol-Ark - BMS question.\r\n\r\n[image: image (7).png]\r\nIs there any possibility of setting the Max Charge/Discharge at 200A to\r\nalign with the performance targets we’re aiming for? I understand that\r\nmaintaining 300A for 15 seconds may not be feasible, 15 seconds is a long\r\nduration, and most appliances don’t require that much ramp-up time. Could\r\nyou share any data regarding the peak power capability for a shorter\r\nduration, such as 10ms or less?\r\n\r\nI reached out to Susan and Wilson on this.  The 16kWh battery can support\r\n200Ah burst but not continuous.  The 314Ah cell is a .5C charge/discharge\r\nso they don\'t suggest continuous over 157A.\r\n\r\nI want to confirm with you and see if you have any thoughts or ideas before\r\nI respond.\r\n\r\nThanks,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Mon, Nov 3, 2025 at 2:10 PM Jordan Wroblewski <\r\njordan@lithiumbatterycompany.com> wrote:\r\n\r\n> Hi Nathan and team,\r\n>\r\n> Here are the list of preferred prototype specs from Sol-Ark\r\n>\r\n> Please see the below specs for the prototype battery for testing:\r\n>\r\n>    - LBC512314\r\n>    - Capacity: 16.1kWh\r\n>       - Amp Hours (Ah): 314Ah\r\n>       - Nominal Voltage: 51.2v\r\n>       - Operating Range: 48v - 56v\r\n>       - Max Continuous Charge: 200A Optimal | 150A Minimum\r\n>       - Max Continuous Discharge: 220A Optimal | 200A Minimum\r\n>       - Peak Discharge Current: 300A\r\n>       - Communication Protocol: RS-485 Modbus RTU & CANBUS\r\n>\r\n>\r\n> Here is a list of specs that would be comparable:\r\n> [image: image (5).png]\r\n>\r\n> I have reached out to Susan from GSL and shared the specs. I\'ve also\r\n> inquired if this would be available from one of their dealers in the US.\r\n>\r\n> Let me know if you have any other thoughts on what we should send thier\r\n> way.\r\n>\r\n> Best,\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company <http://lithiumbatterycompany.com>\r\n>',0,0,0,0,0,0,'2025-11-06 03:36:18','2025-12-09 19:30:45','2025-12-09 19:30:45','2025-12-09 19:30:45',NULL,NULL,NULL),
(922,4,'<CAGOCFXhyn4ND8XR-6jBzE8-bRaFPPjSpMtO269z=kouj81Voyg@mail.gmail.com>',NULL,NULL,'Re: Sol-Ark Preferred Prototype Specs','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"auto\">Will respond more clearly tomorrow morning.  I want to make sure Nick is included with the communication.   </div><div dir=\"auto\"><br></div><div dir=\"auto\">The BMS could handle 300A for 15 seconds.  It is a heat dissipation issue from FETS.  It can be programmed in back end software.  </div><div dir=\"auto\"><br></div><div dir=\"auto\">Susan and Wilson have new relationship together so their working relationship and knowledge needs to be communicated.   </div><div dir=\"auto\"><br></div><div dir=\"auto\">Try not to be persuaded from GSL to accept their parameters.  Sol Ark is just setting their battery management system and cells to a better quality which will lower their after sales support and align the battery for better performance and balancing.  Chinese have very narrow scope and we need to be specific on laying out our requirements for the project. </div><div dir=\"auto\"><br></div><div dir=\"auto\">Let’s discuss tomorrow morning. <br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div><div><br></div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Nov 5, 2025 at 10:36 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div dir=\"ltr\"><div>Good evening team.  </div><div><br></div><div>Back from Sol-Ark - BMS question. </div><div><br></div><div><img src=\"cid:ii_mhmv8y361\" alt=\"image (7).png\" style=\"width:932px;max-width:100%\"><br></div><div><span style=\"color:rgb(0,0,0);font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Is there any possibility of setting the Max Charge/Discharge at 200A to align with the performance targets we’re aiming for? I understand that maintaining 300A for 15 seconds may not be feasible, 15 seconds is a long duration, and most appliances don’t require that much ramp-up time. Could you share any data regarding the peak power capability for a shorter duration, such as 10ms or less?</span></div><div><span style=\"color:rgb(0,0,0);font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"color:rgb(0,0,0);font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">I reached out to Susan and Wilson on this.  The 16kWh battery can support 200Ah burst but not continuous.  The 314Ah cell is a .5C charge/discharge so they don&#39;t suggest continuous over 157A.  </span></div><div><span style=\"color:rgb(0,0,0);font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"color:rgb(0,0,0);font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">I want to confirm with you and see if you have any thoughts or ideas before I respond.  </span></div><div><span style=\"color:rgb(0,0,0);font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"color:rgb(0,0,0);font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Thanks,</span></div></div><div dir=\"ltr\"><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Nov 3, 2025 at 2:10 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Hi Nathan and team,</div><div><br></div><div>Here are the list of preferred prototype specs from Sol-Ark</div><div><br></div><div><div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">Please see the below specs for the prototype battery for testing:</div><ul style=\"margin-top:0px;margin-bottom:0px\"><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">LBC512314</div></li><ul style=\"margin-top:0px;margin-bottom:0px\"><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">Capacity: 16.1kWh</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">Amp Hours (Ah): 314Ah</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">Nominal Voltage: 51.2v</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">Operating Range: 48v - 56v</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">Max Continuous Charge: 200A Optimal | 150A Minimum</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">Max Continuous Discharge: 220A Optimal | 200A Minimum</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">Peak Discharge Current: 300A</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><div role=\"presentation\">Communication Protocol: RS-485 Modbus RTU &amp; CANBUS<span style=\"font-size:11pt\"></span></div></li></ul></ul><div><font color=\"#000000\" face=\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif\"><span style=\"font-size:14.6667px\"><br></span></font></div></div><div><span style=\"color:rgb(0,0,0);font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Here is a list of specs that would be comparable:</span><font color=\"#000000\" face=\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif\"><span style=\"font-size:14.6667px\"></span></font></div><div><img src=\"cid:ii_mhjik7da1\" alt=\"image (5).png\" style=\"width:932px;max-width:100%\"><br></div><div><br></div><div>I have reached out to Susan from GSL and shared the specs. I&#39;ve also inquired if this would be available from one of their dealers in the US.</div><div><br></div><div>Let me know if you have any other thoughts on what we should send thier way.</div><div><br></div><div>Best, </div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div></div>\r\n</blockquote></div>\r\n</blockquote></div></div>','Will respond more clearly tomorrow morning.  I want to make sure Nick is\r\nincluded with the communication.\r\n\r\nThe BMS could handle 300A for 15 seconds.  It is a heat dissipation issue\r\nfrom FETS.  It can be programmed in back end software.\r\n\r\nSusan and Wilson have new relationship together so their working\r\nrelationship and knowledge needs to be communicated.\r\n\r\nTry not to be persuaded from GSL to accept their parameters.  Sol Ark is\r\njust setting their battery management system and cells to a better quality\r\nwhich will lower their after sales support and align the battery for better\r\nperformance and balancing.  Chinese have very narrow scope and we need to\r\nbe specific on laying out our requirements for the project.\r\n\r\nLet’s discuss tomorrow morning.\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Wed, Nov 5, 2025 at 10:36 PM Jordan Wroblewski <\r\njordan@lithiumbatterycompany.com> wrote:\r\n\r\n> Good evening team.\r\n>\r\n> Back from Sol-Ark - BMS question.\r\n>\r\n> [image: image (7).png]\r\n> Is there any possibility of setting the Max Charge/Discharge at 200A to\r\n> align with the performance targets we’re aiming for? I understand that\r\n> maintaining 300A for 15 seconds may not be feasible, 15 seconds is a long\r\n> duration, and most appliances don’t require that much ramp-up time. Could\r\n> you share any data regarding the peak power capability for a shorter\r\n> duration, such as 10ms or less?\r\n>\r\n> I reached out to Susan and Wilson on this.  The 16kWh battery can support\r\n> 200Ah burst but not continuous.  The 314Ah cell is a .5C charge/discharge\r\n> so they don\'t suggest continuous over 157A.\r\n>\r\n> I want to confirm with you and see if you have any thoughts or ideas\r\n> before I respond.\r\n>\r\n> Thanks,\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company <http://lithiumbatterycompany.com>\r\n>\r\n>\r\n> On Mon, Nov 3, 2025 at 2:10 PM Jordan Wroblewski <\r\n> jordan@lithiumbatterycompany.com> wrote:\r\n>\r\n>> Hi Nathan and team,\r\n>>\r\n>> Here are the list of preferred prototype specs from Sol-Ark\r\n>>\r\n>> Please see the below specs for the prototype battery for testing:\r\n>>\r\n>>    - LBC512314\r\n>>    - Capacity: 16.1kWh\r\n>>       - Amp Hours (Ah): 314Ah\r\n>>       - Nominal Voltage: 51.2v\r\n>>       - Operating Range: 48v - 56v\r\n>>       - Max Continuous Charge: 200A Optimal | 150A Minimum\r\n>>       - Max Continuous Discharge: 220A Optimal | 200A Minimum\r\n>>       - Peak Discharge Current: 300A\r\n>>       - Communication Protocol: RS-485 Modbus RTU & CANBUS\r\n>>\r\n>>\r\n>> Here is a list of specs that would be comparable:\r\n>> [image: image (5).png]\r\n>>\r\n>> I have reached out to Susan from GSL and shared the specs. I\'ve also\r\n>> inquired if this would be available from one of their dealers in the US.\r\n>>\r\n>> Let me know if you have any other thoughts on what we should send thier\r\n>> way.\r\n>>\r\n>> Best,\r\n>>\r\n>>\r\n>> Jordan G. Wroblewski\r\n>>\r\n>> Partner | President\r\n>>\r\n>> Lithium Battery Company\r\n>>\r\n>> Direct: (917) 266-5336\r\n>>\r\n>> *jordan@lithiumbatterycompany.com\r\n>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>\r\n>> Lithium Battery Company <http://lithiumbatterycompany.com>\r\n>>\r\n>',0,0,0,0,0,0,'2025-11-06 04:20:33','2025-12-09 19:30:46','2025-12-09 19:30:46','2025-12-09 19:30:46',NULL,NULL,NULL),
(923,4,'<36B28749-1DBA-4632-9AAF-FCF1099E1005@mavrix.one>',NULL,NULL,'Re: Test email','Brian@mavrix.one','Brian Stufflebean','\r\n--Apple-Mail=_4C0D7538-48D2-429D-A125-B3B9972D34AD\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Type: text/html;\r\n	charset=utf-8\r\n\r\n<html><head><meta http-equiv=3D\"content-type\" content=3D\"text/html; =\r\ncharset=3Dutf-8\"></head><body style=3D\"overflow-wrap: break-word; =\r\n-webkit-nbsp-mode: space; line-break: after-white-space;\">Test =\r\nreply.<div><br></div><div><br =\r\nid=3D\"lineBreakAtBeginningOfMessage\"><div><br><blockquote =\r\ntype=3D\"cite\"><div>On Nov 6, 2025, at 8:38=E2=80=AFAM, Rick =\r\n&lt;rick@mavrix.one&gt; wrote:</div><br =\r\nclass=3D\"Apple-interchange-newline\"><div><meta charset=3D\"UTF-8\"><div =\r\nid=3D\"bloop_customfont\" style=3D\"caret-color: rgb(0, 0, 0); font-family: =\r\nHelvetica, Arial; font-size: 13px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; margin: 0px;\">Can you see this?</div><div =\r\nid=3D\"bloop_customfont\" style=3D\"caret-color: rgb(0, 0, 0); font-family: =\r\nHelvetica, Arial; font-size: 13px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; margin: 0px;\">Testing</div><div =\r\nid=3D\"bloop_customfont\" style=3D\"caret-color: rgb(0, 0, 0); font-family: =\r\nHelvetica, Arial; font-size: 13px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; margin: 0px;\">Rick</div><br style=3D\"caret-color: =\r\nrgb(0, 0, 0); font-family: Helvetica, Arial; font-size: 13px; =\r\nfont-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; text-align: start; text-indent: 0px; =\r\ntext-transform: none; white-space: normal; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none;\"><div =\r\nid=3D\"bloop_sign_1762436305679142912\" class=3D\"bloop_sign\" =\r\nstyle=3D\"caret-color: rgb(0, 0, 0); font-family: Helvetica, Arial; =\r\nfont-size: 13px; font-style: normal; font-variant-caps: normal; =\r\nfont-weight: 400; letter-spacing: normal; text-align: start; =\r\ntext-indent: 0px; text-transform: none; white-space: normal; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"><br><div><span style=3D\"font-family: Helvetica, Arial;\">Rick =\r\nMislan, PhD,&nbsp;</span><div style=3D\"font-family: Helvetica, =\r\nArial;\">Founder, CTO</div><div style=3D\"font-family: Helvetica, =\r\nArial;\"><div><div><span =\r\nid=3D\"cid:09CC7368-7311-4A5F-97EC-CB440478CC63\">&lt;52AACA64-B468-4285-B5C=\r\n4-838F6707FFCC&gt;</span><br></div><div><a =\r\nhref=3D\"https://mavrix1.com/\">https://mavrix1.com</a></div></div><div><br>=\r\n</div><div><div>CONFIDENTIALITY NOTICE</div><div>This communication, =\r\nincluding any attachments, may contain confidential, privileged, or =\r\nControlled Unclassified Information (CUI) protected under federal law. =\r\nIt is intended solely for the use of the designated recipient(s). Any =\r\nunauthorized review, use, disclosure, distribution, or copying is =\r\nstrictly prohibited and may be unlawful.</div><div><br></div><div>If you =\r\nare not the intended recipient, please notify the sender immediately, =\r\ndelete this email, and destroy all =\r\ncopies.</div><div><br></div><div>Unless expressly stated, the views and =\r\nopinions expressed herein are those of the sender and do not necessarily =\r\nreflect those of the sender=E2=80=99s employer or any U.S. Government =\r\nagency. All recipients are responsible for handling information in =\r\naccordance with applicable federal regulations, including but not =\r\nlimited to FAR, DFARS, ITAR, and CUI handling =\r\nrequirements.</div></div></div></div></div></div></blockquote></div><br><d=\r\niv>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; orphans: auto; text-align: start; text-indent: 0px; =\r\ntext-transform: none; white-space: normal; widows: auto; word-spacing: =\r\n0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><font size=3D\"2\">Best =\r\nregards,</font></div><div style=3D\"font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><font =\r\nsize=3D\"2\"><br></font></div><div style=3D\"font-family: Helvetica; =\r\nfont-size: 12px; font-style: normal; font-variant-caps: normal; =\r\nfont-weight: 400; letter-spacing: normal; orphans: auto; text-align: =\r\nstart; text-indent: 0px; text-transform: none; white-space: normal; =\r\nwidows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\" style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><b>Brian C. =\r\nStufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 =\r\nDirect</b></div><div style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><span style=3D\"font-size: =\r\n11px;\">(866)896-2423 Fax</span></div></div><span style=3D\"caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0); font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"></span><br class=3D\"Apple-interchange-newline\"><span><img =\r\nalt=3D\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" =\r\nsrc=3D\"cid:CB596987-D3CC-4C61-B9D3-CE1C1DF1C723\"></span><meta =\r\ncharset=3D\"UTF-8\"><div style=3D\"font-family: Helvetica; font-size: 12px; =\r\nfont-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br =\r\nclass=3D\"Apple-interchange-newline\"><br =\r\nclass=3D\"Apple-interchange-newline\"><a =\r\nhref=3D\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a =\r\nhref=3D\"https://mavrix1.com\">https://mavrix1.com/</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY =\r\nNOTICE:</b><span style=3D\"font-family: Helvetica; font-style: normal; =\r\nfont-weight: 400; font-size: =\r\n12px;\">&nbsp;This&nbsp;communication&nbsp;is =\r\nconfidential&nbsp;and&nbsp;intended only for the =\r\nintended&nbsp;recipient.&nbsp;&nbsp;If you are not the =\r\nintended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, =\r\nor&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any =\r\nsuch&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this =\r\ncommunication&nbsp;in error,&nbsp;please contact the sender =\r\nof&nbsp;the&nbsp;message to inform him or her of =\r\nthe&nbsp;error.<br><br></span></div>\r\n</div>\r\n<br></div></body></html>=\r\n\r\n--Apple-Mail=_4C0D7538-48D2-429D-A125-B3B9972D34AD\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\r\nContent-Type: image/png;\r\n	name=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\"\r\nContent-Id: <CB596987-D3CC-4C61-B9D3-CE1C1DF1C723>\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGwAAAAYCAYAAAAf1RgaAAAAAXNSR0IArs4c6QAAAIRlWElmTU0A\r\nKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdp\r\nAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAGyg\r\nAwAEAAAAAQAAABgAAAAABrPxEgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5h\r\nZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9\r\nIlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9y\r\nZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6\r\nYWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZm\r\nLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgog\r\nICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAA\r\nC6FJREFUaAXtWnuMVUcZnznPe/fuZYEtDxHCQ1ADBNuuAlKh24dRaqURWFotj5haKAn9SxOaauRi\r\nxEBsMMFSAmnUCDTKWtDioyEm3RLKq6VKC7Rg20VA5Lmwz3vPa8bfN+ecu+fevbugjQQrX5g735n5\r\nvm++13wz5yyc3YKb0gP19a8YTU33+NNmbx0puHjJtGsm+U7beoMxyRsaGrUJE45JxlbclMp/1JXK\r\nsZWM5XLwP6PG6+tzOgVr8tzN0wWTjRq3hojAw6TU+EfdGf9T9uVyGsutQNC4nDpn8zz0m7lmWEwE\r\njm6mbd/r3MCnzNk6DlEbyRFCqfNbAbyBEeaBlJzrkula1mOFQ683fvMcLT917tblGF8dbTgmhe8a\r\nZsbyvY4NhsbEdwy7ZrHntDHOtBuo7q2lGLyvGSnmOe2/fH3S3//EGhGsOZuf03RrKRMC/3wBL30f\r\n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\r\n--Apple-Mail=_4C0D7538-48D2-429D-A125-B3B9972D34AD--','Test reply.\r\n\r\n\r\n\r\n> On Nov 6, 2025, at 8:38 AM, Rick <rick@mavrix.one> wrote:\r\n> \r\n> Can you see this?\r\n> Testing\r\n> Rick\r\n> \r\n> \r\n> Rick Mislan, PhD, \r\n> Founder, CTO\r\n> <52AACA64-B468-4285-B5C4-838F6707FFCC>\r\n> https://mavrix1.com <https://mavrix1.com/>\r\n> \r\n> CONFIDENTIALITY NOTICE\r\n> This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n> \r\n> If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n> \r\n> Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n￼\r\n\r\n\r\nbrian@mavrix.one <mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-11-06 14:46:45','2025-12-09 19:30:46','2025-12-09 19:30:46','2025-12-09 19:30:46',NULL,NULL,NULL),
(924,4,'<CAGOCFXhuq99T-ft8TunJR9f5XAEsuQgd4LAUxDHFD1QGVe08Dw@mail.gmail.com>',NULL,NULL,'Mavrix1 Master Model','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div>','<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>',0,0,0,0,0,0,'2025-11-06 15:15:15','2025-12-09 19:30:47','2025-12-09 19:30:47','2025-12-09 19:30:47',NULL,NULL,NULL),
(925,4,'<20251106153031.4678beb29f3c18d5@emails.leatherman.com>',NULL,NULL,'=?UTF-8?q?Ultimate_Gift:_New_ARC=C2=AE_TALOS.?=','Leatherman@emails.leatherman.com','Leatherman','<!DOCTYPE html>\r\n<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\"><head><title>Ultimate Gift: New ARC&#174; TALOS.</title><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><!--[if mso]>\r\n<xml><w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\"><w:DontUseAdvancedTypographyReadingMail/></w:WordDocument>\r\n<o:OfficeDocumentSettings><o:PixelsPerInch>96</o:PixelsPerInch><o:AllowPNG/></o:OfficeDocumentSettings></xml>\r\n<![endif]--><style>\r\n*{box-sizing:border-box}body{margin:0;padding:0}a[x-apple-data-detectors]{color:inherit!important;text-decoration:inherit!important}#MessageViewBody a{color:inherit;text-decoration:none}p{line-height:inherit}.desktop_hide,.desktop_hide table{mso-hide:all;display:none;max-height:0;overflow:hidden}.image_block img+div{display:none}sub,sup{font-size:75%;line-height:0} @media (max-width:620px){.image_block div.fullWidth{max-width:100%!important}.mobile_hide{display:none}.row-content{width:100%!important}.stack .column{width:100%;display:block}.mobile_hide{min-height:0;max-height:0;max-width:0;overflow:hidden;font-size:0}.desktop_hide,.desktop_hide table{display:table!important;max-height:none!important}.row-4 .column-1 .block-1.paragraph_block td.pad>div{font-size:15px!important}.row-4 .column-1 .block-2.button_block span{font-size:10px!important;line-height:20px!important}.row-1 .column-1,.row-11 .column-1{padding:0!important}}\r\n</style><!--[if mso ]><style>sup, sub { font-size: 100% !important; } sup { mso-text-raise:10% } sub { mso-text-raise:-10% }</style> <![endif]--><!--[if true]><style>.forceBgColor{background-color: white !important}</style><![endif]--></head><body class=\"body forceBgColor\" style=\"background-color:transparent;margin:0;padding:0;-webkit-text-size-adjust:none;text-size-adjust:none\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/CgxoqE1BKlemu9sZFygSIHBdTD-PEopYTipg8PhgxVcMDo6gZS5lvY9Kf-T8HyWdMdP1vsUvQ9pBagxoR0_g78-WAAdi9-TIAQGAAgM.YSkzYX8NiKVJXA/click\" xnpe-attr=\"notextnorew\"><img width=\"1\" height=\"1\" alt=\"\" src=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/CgxoqE1BKlemu9sZFygSIHBdTD-PEopYTipg8PhgxVcMDo6gZS5lvY9Kf-T8HyWdMdP1vsUvQ9pBagxoR0_g78-WAAdi9-SAAgM.mZHWWBRIJL8YUg/open\" style=\"display: none;\"></a><table class=\"nl-container\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:transparent\"><tbody><tr><td><table class=\"row row-1\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%;padding-right:0;padding-left:0\"><div class=\"alignment\" align=\"center\"><div class=\"fullWidth\" style=\"max-width:600px\">\r\n<a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUiiI9bHvF-qK8NNK-PAj4Wg4D1_fglS91L39XvVP_sirzpWSzigpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VN7z8dd9RfedbjlYCXEylxUJcTjn5-blFqYnJGVaKQJFkIWkjU0NDA-N459KizPzS4njHpPzSkvig1LL40GArbqCSXCHW1NzEzJyoUH39pPyUSv2SxKScVP0SCLtIvyQFIhJtGIspiE0EzE7JLAPjxCQry5RUizRTI2PTVHND81SDpBqwdfGZKVZFmcnZDrmJZUWZFXr5eak1BqaGBolJKYkWFpZpiZapxlk8Ge7-D96fn8bAnvT9SQMTMwBryWvi.HsWYUAH9pZErJQ/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/email-best-arc-gift-focus-02%20-%20Copy%20%282%29.jpg.png\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt=\"Shop multi-tools and knives at Leatherman.com\" title=\"Shop multi-tools and knives at Leatherman.com\" height=\"auto\"></a></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-2\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:600px\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUiiI9bHvF-qK8NNK-PAj4Wg4D1_fglS91L39XvVP_sirzpWyyygpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VLyjKTylNLinWTyxKti9LLMpMzCuxNTE2tTQ3NTI0N7EwMDM0vPx131F951uOVgJcTKXFQlxOOfn5uUWpickZVopAkWQhaSNTQ0MD43jn0qLM_NLieMek_NKS-KDUsvjQYCtuoJJcIdbU3MTMnKhQff2k_JRK_ZLEpJxU_RIIu0i_JAUiEm0UiymITQTMTsksA-PEJCvLlFSLNFMjY9NUc0PzVIOkGrB18ZkpVkWZydkOuYllRZkVevl5qTUGpoYGiUkpiRYWlmmJlqnGWTwZ7v4P3p-fxsCe9P1JAxMzAEfjdy4.PQV2dM0Vo1Nbaw/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/email-best-arc-gift-focus-01_1.jpg\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt=\"ARC Talos is here\" title=\"ARC Talos is here\" height=\"auto\"></a></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-3 mobile_hide\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto;background-color:#393b42;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:10px;vertical-align:top\"><table class=\"paragraph_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:20px;padding-left:40px;padding-right:40px;padding-top:35px\"><div style=\"color:#fff;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:18px;font-weight:400;letter-spacing:0;line-height:1.2;text-align:center;mso-line-height-alt:22px\"><p style=\"margin:0\">The right tool says a lot. ARC<sup>&#174;</sup> Talos says it all &#8212; refined, capable, and built to stand apart. Crafted with premium materials and unmistakable detail, it&#8217;s made for those who lead, build, and solve.</p></div></td></tr></table><table class=\"button_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"padding-bottom:40px;padding-left:20px;padding-right:20px;padding-top:20px;text-align:center\"><div class=\"alignment\" align=\"center\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUiiI9bHvF-qK8NNK-PAj4Wg4D1_fglS91L39XvVP_sirzpWyyygpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VLyjKTylNLinWTyxKti9LLMpMzCuxNTE2tTQ3NTI0N7EwMDM0vPx131F951uOVgJcTKXFQlxOOfn5uUWpickZVopAkWQhaSNTQ0MD43jn0qLM_NLieMek_NKS-KDUsvjQYCtuoJJcIdbU3MTMnKgQff2k_JRK_ZLEpJxU_RIIu0i_JAUiEm0ciymIRZlRLJSbklmmn5hkZZmSapFmamRsmmpuaJ5qkFQDti0-M8WqKDM52yE3sawos0IvPy-1xsDU0CAxKSXRwsIyLdEy1TiLJ8Pd_8H789MY2JO-P2lgYgYAwQh2pg.rPdBTu_yTUCEHA/click\" target=\"_blank\" style=\"color:#393c43;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/EiBwXUw_jxKKWE4qYPD4YMVXDA6OoGUuZb2PSn_k_B8lnRo-aHR0cHM6Ly93d3cubGVhdGhlcm1hbi5jb20vcHJvZHVjdHMvYXJjP3ZhcmlhbnQ9NDM1OTc1MjE3NDgwNjEx0_W-xS9D2kE6EAoCdXMSCkJsb29tcmVhY2g6IQoCdWMSGzI1MTEwM19DdXJpb3VzX0Fib3V0X1Jldl9VUzoLCgJ1bRIFZW1haWxiOjlkZThmNTIzNWU3MTdlMGJ8ZW1haWxfaWQ6cmlja0BtYXZyaXgub25lfDA1MTBhYmRhODg5ZmE5ZTNqDGhHT-Dvz5YAB2L35IACAw.KLewqwV1yeZzBA/click\"  style=\"height:41px;width:214px;v-text-anchor:middle;\" arcsize=\"0%\" fillcolor=\"#ffcf06\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"0px\" color=\"#ffcf06\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#393c43;font-family:\'Trebuchet MS\', Tahoma, sans-serif;font-size:16px\">\r\n<![endif]-->\r\n<span class=\"button\" style=\"background-color: #ffcf06; mso-shading: transparent; border-bottom: 0px solid transparent; border-left: 0px solid transparent; border-radius: 0px; border-right: 0px solid transparent; border-top: 0px solid transparent; color: #393c43; display: inline-block; font-family: \'Trebuchet MS\',\'Lucida Grande\', \'Lucida Sans Unicode\', \'Lucida Sans\', Tahoma, sans-serif; font-size: 16px; font-weight: 700; mso-border-alt: none; padding-bottom: 5px; padding-top: 5px; padding-left: 20px; padding-right: 20px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 32px;\">ELEVATE YOUR GIFTING</span></span>\r\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><!--[if !mso]><!--><table class=\"row row-4 desktop_hide\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden;background-size:auto;background-color:#393b42;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:10px;vertical-align:top\"><table class=\"paragraph_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tr><td class=\"pad\" style=\"padding-bottom:25px;padding-left:30px;padding-right:30px;padding-top:30px\"><div style=\"color:#fff;direction:ltr;font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;font-size:16px;font-weight:400;letter-spacing:0;line-height:1.2;text-align:center;mso-line-height-alt:19px\"><p style=\"margin:0\">\r\nThe right tool says a lot. ARC&#174; Talos says it all &#8212; refined, capable, and built to stand apart. Crafted with premium materials and unmistakable detail, it&#8217;s made for those who lead, build, and solve.</p></div></td></tr></table><table class=\"button_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tr><td class=\"pad\" style=\"padding-bottom:30px;padding-left:10px;padding-right:10px;padding-top:10px;text-align:center\"><div class=\"alignment\" align=\"center\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUiiI9bHvF-qK8NNK-PAj4Wg4D1_fglS91L39XvVP_sirzpWyyygpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VLyjKTylNLinWTyxKti9LLMpMzCuxNTE2tTQ3NTI0N7EwMDM0vPx131F951uOVgJcTKXFQlxOOfn5uUWpickZVopAkWQhaSNTQ0MD43jn0qLM_NLieMek_NKS-KDUsvjQYCtuoJJcIdbU3MTMnKgQff2k_JRK_ZLEpJxU_RIIu0i_JAUiEm0SiymIRZlRLJSbklmmn5hkZZmSapFmamRsmmpuaJ5qkFQDti0-M8WqKDM52yE3sawos0IvPy-1xsDU0CAxKSXRwsIyLdEy1TiLJ8Pd_8H789MY2JO-P2lgYgYAwYp2pw.xIel_eXWP2fEhg/click\" target=\"_blank\" style=\"color:#393c43;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/EiBwXUw_jxKKWE4qYPD4YMVXDA6OoGUuZb2PSn_k_B8lnRo-aHR0cHM6Ly93d3cubGVhdGhlcm1hbi5jb20vcHJvZHVjdHMvYXJjP3ZhcmlhbnQ9NDM1OTc1MjE3NDgwNjEx0_W-xS9D2kE6EAoCdXMSCkJsb29tcmVhY2g6IQoCdWMSGzI1MTEwM19DdXJpb3VzX0Fib3V0X1Jldl9VUzoLCgJ1bRIFZW1haWxiOjlkZThmNTIzNWU3MTdlMGJ8ZW1haWxfaWQ6cmlja0BtYXZyaXgub25lfDA1MTBhYmRhODg5ZmE5ZTNqDGhHT-Dvz5YAB2L35IACAw.KLewqwV1yeZzBA/click\"  style=\"height:31px;width:171px;v-text-anchor:middle;\" arcsize=\"0%\" fillcolor=\"#ffcf06\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"0px\" color=\"#ffcf06\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#393c43;font-family:sans-serif;font-size:11px\">\r\n<![endif]-->\r\n<span class=\"button\" style=\"background-color: #ffcf06; mso-shading: transparent; border-bottom: 0px solid transparent; border-left: 0px solid transparent; border-radius: 0px; border-right: 0px solid transparent; border-top: 0px solid transparent; color: #393c43; display: inline-block; font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size: 11px; font-weight: 700; mso-border-alt: none; padding-bottom: 5px; padding-top: 5px; padding-left: 20px; padding-right: 20px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 22px;\">ELEVATE YOUR GIFTING</span></span>\r\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><!--<![endif]--><table class=\"row row-5\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#393b42;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:600px\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUiiI9bHvF-qK8NNK-PAj4Wg4D1_fglS91L39XvVP_sirzpWyyygpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VLyjKTylNLinWTyxKti9LLMpMzCuxNTE2tTQ3NTI0N7EwMDM0vPx131F951uOVgJcTKXFQlxOOfn5uUWpickZVopAkWQhaSNTQ0MD43jn0qLM_NLieMek_NKS-KDUsvjQYCtuoJJcIdbU3MTMnKhQff2k_JRK_ZLEpJxU_RIIu0i_JAUiEm0aiymITQTMTsksA-PEJCvLlFSLNFMjY9NUc0PzVIOkGrB18ZkpVkWZydkOuYllRZkVevl5qTUGpoYGiUkpiRYWlmmJlqnGWTwZ7v4P3p-fxsCe9P1JAxMzAElsdzE.6Z5G1YBCrvMygw/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/Screenshot%202025-10-21%20144902.jpg\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt=\"ARC Talos Features\" title=\"ARC Talos Features\" height=\"auto\"></a></div></div></td></tr></table></td>\r\n</tr></tbody></table></td></tr></tbody></table><table class=\"row row-6\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#393b42;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:600px\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUiiI9bHvF-qK8NNK-PAj4Wg4D1_fglS91L39XvVP_sirzpWyyygpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VLyjKTylNLinWTyxKti9LLMpMzCuxNTE2tTQ3NTI0N7EwMDM0vPx131F951uOVgJcTKXFQlxOOfn5uUWpickZVopAkWQhaSNTQ0MD43jn0qLM_NLieMek_NKS-KDUsvjQYCtuoJJcIdbU3MTMnKhQff2k_JRK_ZLEpJxU_RIIu0i_JAUiEm0WiymITQTMTsksA-PEJCvLlFSLNFMjY9NUc0PzVIOkGrB18ZkpVkWZydkOuYllRZkVevl5qTUGpoYGiUkpiRYWlmmJlqnGWTwZ7v4P3p-fxsCe9P1JAxMzAEnvdzI.U5dDIAWC0J8OVg/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/email-arc-talos-campaign-diagram-02.jpg\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt=\"ARC Talos Features\" title=\"ARC Talos Features\" height=\"auto\"></a></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-7\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#393c43;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:600px\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUiiI9bHvF-qK8NNK-PAj4Wg4D1_fglS91L39XvVP_sirzpWyyygpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VLyjKTylNLinWTyxKti9LLMpMzCuxNTE2tTQ3NTI0N7EwMDM0vPx131F951uOVgJcTKXFQlxOOfn5uUWpickZVopAkWQhaSNTQ0MD43jn0qLM_NLieMek_NKS-KDUsvjQYCtuoJJcIdbU3MTMnKhQff2k_JRK_ZLEpJxU_RIIu0i_JAUiEm0eiymITQTMTsksA-PEJCvLlFSLNFMjY9NUc0PzVIOkGrB18ZkpVkWZydkOuYllRZkVevl5qTUGpoYGiUkpiRYWlmmJlqnGWTwZ7v4P3p-fxsCe9P1JAxMzAEpydzM.x0bt9IJuCgruQg/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/email-arc-talos-campaign-diagram-01.jpg\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt=\"ARC Talos Features\" title=\"ARC Talos Features\" height=\"auto\"></a></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-8 mobile_hide\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#393b42;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:top\"><table class=\"button_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"10\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUiiI9bHvF-qK8NNK-PAj4Wg4D1_fglS91L39XvVP_sirzpWyyygpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VLyjKTylNLinWTyxKti9LLMpMzCuxNTE2tTQ3NTI0N7EwMDM0vPx131F951uOVgJcTKXFQlxOOfn5uUWpickZVopAkWQhaSNTQ0MD43jn0qLM_NLieMek_NKS-KDUsvjQYCtuoJJcIdbU3MTMnKhAff2k_JRK_ZLEpJxU_RIIu0i_JAUiEm0RiymITQTMTsks009MsrJMSbVIMzUyNk01NzRPNUiqAVsVn5liVZSZnO2Qm1hWlFmhl5-XWmNgamiQmJSSaGFhmZZomWqcxZPh7v_g_flpDOxJ3580MDEDAGuldb4.RBZYXm4e8HGW_g/click\" target=\"_blank\" style=\"color:#000000;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/EiBwXUw_jxKKWE4qYPD4YMVXDA6OoGUuZb2PSn_k_B8lnRo-aHR0cHM6Ly93d3cubGVhdGhlcm1hbi5jb20vcHJvZHVjdHMvYXJjP3ZhcmlhbnQ9NDM1OTc1MjE3NDgwNjEx0_W-xS9D2kE6EAoCdXMSCkJsb29tcmVhY2g6IQoCdWMSGzI1MTEwM19DdXJpb3VzX0Fib3V0X1Jldl9VUzoLCgJ1bRIFZW1haWxiOjlkZThmNTIzNWU3MTdlMGJ8ZW1haWxfaWQ6cmlja0BtYXZyaXgub25lfDA1MTBhYmRhODg5ZmE5ZTNqDGhHT-Dvz5YAB2L35IACAw.KLewqwV1yeZzBA/click\"  style=\"height:41px;width:140px;v-text-anchor:middle;\" arcsize=\"0%\" fillcolor=\"#ffcf06\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"0px\" color=\"#ffcf06\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#000000;font-family:\'Trebuchet MS\', Tahoma, sans-serif;font-size:16px\">\r\n<![endif]-->\r\n<span class=\"button\" style=\"background-color: #ffcf06; mso-shading: transparent; border-bottom: 0px solid transparent; border-left: 0px solid transparent; border-radius: 0px; border-right: 0px solid transparent; border-top: 0px solid transparent; color: #000000; display: inline-block; font-family: \'Trebuchet MS\',\'Lucida Grande\', \'Lucida Sans Unicode\', \'Lucida Sans\', Tahoma, sans-serif; font-size: 16px; font-weight: 700; mso-border-alt: none; padding-bottom: 5px; padding-top: 5px; padding-left: 20px; padding-right: 20px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 32px;\">EXPLORE ARC</span></span>\r\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><!--[if !mso]><!--><table class=\"row row-9 desktop_hide\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden;background-color:#393b42;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:top\"><table class=\"button_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"10\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUiiI9bHvF-qK8NNK-PAj4Wg4D1_fglS91L39XvVP_sirzpWyyygpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VLyjKTylNLinWTyxKti9LLMpMzCuxNTE2tTQ3NTI0N7EwMDM0vPx131F951uOVgJcTKXFQlxOOfn5uUWpickZVopAkWQhaSNTQ0MD43jn0qLM_NLieMek_NKS-KDUsvjQYCtuoJJcIdbU3MTMnKhAff2k_JRK_ZLEpJxU_RIIu0i_JAUiEm0ZiymITQTMTsks009MsrJMSbVIMzUyNk01NzRPNUiqAVsVn5liVZSZnO2Qm1hWlFmhl5-XWmNgamiQmJSSaGFhmZZomWqcxZPh7v_g_flpDOxJ3580MDEDAGwkdb8.rnIrh3C5LoQ3vw/click\" target=\"_blank\" style=\"color:#000000;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/EiBwXUw_jxKKWE4qYPD4YMVXDA6OoGUuZb2PSn_k_B8lnRo-aHR0cHM6Ly93d3cubGVhdGhlcm1hbi5jb20vcHJvZHVjdHMvYXJjP3ZhcmlhbnQ9NDM1OTc1MjE3NDgwNjEx0_W-xS9D2kE6EAoCdXMSCkJsb29tcmVhY2g6IQoCdWMSGzI1MTEwM19DdXJpb3VzX0Fib3V0X1Jldl9VUzoLCgJ1bRIFZW1haWxiOjlkZThmNTIzNWU3MTdlMGJ8ZW1haWxfaWQ6cmlja0BtYXZyaXgub25lfDA1MTBhYmRhODg5ZmE5ZTNqDGhHT-Dvz5YAB2L35IACAw.KLewqwV1yeZzBA/click\"  style=\"height:31px;width:109px;v-text-anchor:middle;\" arcsize=\"0%\" fillcolor=\"#ffcf06\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"0px\" color=\"#ffcf06\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#000000;font-family:\'Trebuchet MS\', Tahoma, sans-serif;font-size:11px\">\r\n<![endif]-->\r\n<span class=\"button\" style=\"background-color: #ffcf06; mso-shading: transparent; border-bottom: 0px solid transparent; border-left: 0px solid transparent; border-radius: 0px; border-right: 0px solid transparent; border-top: 0px solid transparent; color: #000000; display: inline-block; font-family: \'Trebuchet MS\',\'Lucida Grande\', \'Lucida Sans Unicode\', \'Lucida Sans\', Tahoma, sans-serif; font-size: 11px; font-weight: 700; mso-border-alt: none; padding-bottom: 5px; padding-top: 5px; padding-left: 20px; padding-right: 20px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 22px;\">EXPLORE ARC</span></span>\r\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><!--<![endif]--><table class=\"row row-10\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"html_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div style=\"font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;text-align:center\" align=\"center\"><table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#393b42\" align=\"center\" width=\"100%\" style=\"width: 100%; padding: 10px 0px;\"><tbody><tr><td align=\"center\">\r\n\r\n        <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\"><tbody><tr align=\"center\"><td colspan=\"5\"></td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zrFLAmEcxvEwIiiJuLGGimiJvPfe00s9kDKHIKKgiCKR8_fe-5pv3nuv3L2eCULNDbm1Bf0jtTk3tDU1uNcSNTQkOjhU25cPz_Boi_XS7kZHuz7ZWy2_f5W7x_GZm3ums4fOzmXve2Hlbi6qKlUPbYSazabO_VDBWQBCd6VAHgNVZYEAX0nphcuOCGnLFzXlUOlLpQJwazljbcQe92uc5gCbJAPETaQxI4lUkq0nspiaCUIqwFLYSlsW4OePxy4qvOTt2alYI9SmtjwpRcDArdpLfXG1edPC2Eg6hUbAZSN08kQ2lHPAIufo0J7uT4Q2wQRw77SFEJG0hRQQjyE17AApOpQiNkq_9S8ZNOXR_4uRFM0SAmJnKctULDNpsTROM4O0B5ccTu2Au7VNAVHAL3Tps7ZhYQMIhUwmW4EsS57Hq9v7r29Pt2OT5LN3FRv_Aau7mVQ.H1VBu-yi8aFNvA/click\" data-msdyn-tracking-id=\"060e7af814e081672338229931\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/c9ecf696-8d9b-11f0-a760-e2c73f792b8b\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"Instagram\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUiiI9bHvF-qK8NNK-PAj4Wg4D1_fglS91L39XvVP_sirzpWKyygpKSi20tcvLy_XK8nMLsnP1kvOz9V3yElNLMlILcpNzIsvyc_PKVaOzy1OqczLzS6Jz8nMy85MsTUxTjZOSU5L1TUwMEnRNUk2Tta1NLZM1DU1ME1LM0tNBaI0w8tf9x3Vd77laCXAxVRaLMTllJOfn1uUmpicYaUIFEkWkjYyNTQ0MI53Li3KzC8tjndMyi8tiQ9KLYsPDbbiBirJFWJNzU3MzImq1NdPyk-p1C9JTMpJ1S-BsIv0S1IgItGGBrGYothEwOyUzDLcKhAi0cax-olJVpYpqRZppkbGpqnmhuapBkk1YCfFZ6ZYFWUmZzvkJpYVZVbo5eel1hiYGhokJqUkWlhYpiVaphpn8WS4-z94f34aA3vS9ycNTMwAIgSP6g.IOVADyD1SZKn6A/click\" data-msdyn-tracking-id=\"55a2adb6bbc371672338239108\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/c9ef9996-8d9b-11f0-a760-e2c73f792b8b\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"TikTok\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1z71Lw0AABXCpiFCLSEYdVMRFTC7fTQJFawdBioIiiqXES-5CznxcTS6thYLODnZzE_xHdOvs4Obk0F0X0cHB0g4d1O3x4w3vcUuNenWjy10f766dvn-d9o4Kszf3WMAP3Z3L_vfi6t38uc9YI7UAaLVaggdd7FAaCC6NQBVD5uMkgjFYsaMUteMoYDaiMWUsgW5QEtfHHJI4IKikuLKOZAXzalEq8qrqGbyp6S4PVVEX9aIJZdmTnj8ee6DyUrbm8rks5fJbIaVRgqHrW8sDcbkFWZMkUbErWUJoltplh2bM3sdN-_DAmhlUIm4KR5CEJ20AHIragEEnxICNcgIYGklNEuu_9S8ZZkSa_zfGUlPrADqWibDhabKi4cFXLDqd4SSbICshbrAZwWZCLgQa446oSSJ0EDQM04MmVs4K_vbe69vT7cS089m_yk3-AO-alWo.hG3ajrtaTFuXbg/click\" data-msdyn-tracking-id=\"1c347b64588db1672338250130\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/c9ea5e2c-8d9b-11f0-a760-e2c73f792b8b\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"Facebook\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zr1Lw0AcxnGpiFCLSEYdVMRFTC8vpkkDRWsHQaqCIoqlpJfcL_RMkyvJpTVQ0NnBbm6C_4hunR3cnBy66yI6OFjaoYO6PXx4hq-w1KyWN7vC9en-Wu39q9Y7ycze3EMWHrq7l_3vxdW7-aTOeTMyEWq329mExTy2IeswH8URhKgMmNch9HGwB4TiFcuPSBL4HrcICxjnIXa8grQ-5gYNPEoKrqGSHAFJ1LHrihu6ool5Vd4QieQohqErei7nys8fjz1Ueimac-lUHAnp7QZjfgjYqZvLA3GEBUWTZUm1SnFIWRxZRXvQZx1Cyzo-MmcGF1-YAh_TxlmCkM1Igji2G4D4aIeIk5FUZKn6W_-S4Sa09f9jLBWtirBt5gkYrqaoGuiyDpLdGSZZlJghdbwtH7dCepFlAXQkTZawTbBh5F2cB_U8U985eH17up2Ytj_7V6nJHzf7mVM.5GOb1fUcQXtmfg/click\" data-msdyn-tracking-id=\"05f4617e605a71672338263640\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/c9f1e372-8d9b-11f0-a760-e2c73f792b8b\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"YouTube\"></a>\r\n              </td>\r\n\r\n              <td colspan=\"6\"></td>\r\n            </tr></tbody></table></td>\r\n    </tr></tbody></table></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-11\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;vertical-align:top\"><table class=\"html_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div style=\"font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;text-align:center\" align=\"center\"><div data-section=\"true\" class=\"footer-container\" style=\"font-family: Arial, Verdana, sans-serif; color: #ffffff; background-color: #393B42; margin: 0; border-radius: 0;\" data-protected=\"false\">\r\n\r\n  <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse; background-color: #393b42;\"><tr><td align=\"center\" style=\"padding: 10px 0; text-align: center;\">\r\n\r\n        <div style=\"display: inline-block; text-align: center;\">\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzrtLw1AUBnAfiFBFJKMOKuIiJjdpmuYBxUcHQURBEUUp8b5KrsnNLclta6Cgg5ODbm6C_4huzg5uTg7uuogODpYoKOhw4Ds_vgNHmWzUVufPldOdtdn9l_f92-3hkbMrqtHr85Wjp4-Jmcuxk95AykbqAdBut7WIQhnQhMNYw4KDhogYZjQFjYS1IM7UHDItkDya9nlKspiH0iciFlImEIcVfe6HIxaHjFQcHVllUqIqsuyyWnJwUXVNU1fLqG67VDdt6GLj_vXmFlQfFr3RQl8zVQpLkRA8oRAH3lRXsDJetAxDN_1qM2GimfqLSDSlv0Fb_tamN9StcGWAcsii3QgAJEgGJEQRBfIrJ0CSL9kzjNpf_U_yTFgrn-_b2i-G3RV5LqFO3SqaFrUNm-qok3_hM-IlDIcLHLYSdqiJmHZ0y9AhItBx3Dp0qXkwHCyvPz7fXfQMoren477-T66smIs.aTq0rvzj0mBnaQ/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #ffffff; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Privacy Policy</u></strong>\r\n          </a>\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzr1v00AYBnAoQkilQsgjDMDAgmRfLpaJbakq-aIpbWkgKSGpIvd898a-cL4z9tlKpEowM9CNDYl_hG6dGdiYGLrDgmBgoEoRQoLhlR799LzSY9xMx1trh8arpw_v7H_9sX88WLny-h1Y8P7wwYuTnzduv712dD7WOs19hIrcNimTFsjICoVSSQaExhZVCRJAdAxZQqSplRJmmilWUM2VRICa0Uw9b-PGpoCk8PLR_XnU2-g0WL9ldtsqHfZ5GrndOJo9odstdTca9RxRDr3Nidl3O_MB22ZdXOa75SMvbdBolra23MFU4412zIfNqmvZndaO26lltfXpkNQRVTIHqdcEkdEqSPzx29Exan6q-1eXl4rcWG78me7fOhVqXK86GFfsoFlkXBV5UA9VoYPHUAa7Pf_yaSUxLkJCuBgJhELF5kiTUADSZzlDmp3JHsbjf_V_ssiMl4v7_Tv-i8ledRz6HgN34lRtB2q4BpXwYLEi4MzPOH12LyFlxmeWknBQcXCFhIy4rjchHtjTlXh95_OXD2_OXQq_n7xcuvALiNys4g.Wv_ih8_rHaT2Nw/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #ffffff; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Manage Preferences</u></strong>\r\n          </a>\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzr1v00AYBnAoQkilQsgjDMDAgmRfLpaJbakq-aIpbWkgKSGpIvd898a-cL4z9tlKpEowM9CNDYl_hG6dGdiYGLrDgmBgoEoRQoLhlR799LzSY9xMx1trh8arpw_v7H_9sX88WLny-h1Y8P7wwYuTnzduv712dD7WOs19hIrcNimTFsjICoVSSQaExhZVCRJAdAxZQqSplRJmmilWUM2VRICa0Uw9b-PGpoCk8PLR_XnU2-g0WL9ldtsqHfZ5GrndOJo9odstdTca9RxRDr3Nidl3O_MB22ZdXOa75SMvbdBolra23MFU4412zIfNqmvZndaO26lltfXpkNQRVTIHqdcEkdEqSPzx29Exan6q-1eXl4rcWG78me7fOhVqXK86GFfsoFlkXBV5UA9VoYPHUAa7Pf_yaSUxLkJCuBgJhELF5kiTUADSZzlDmp3JHsbjf_V_ssiMl4v7_Tv-i8mePQ59j4E7caq2AzVcg0p4sFgRcOZnnD67l5Ay4zNLSTioOLhCQkZc15sQD-zpSry-8_nLhzfnLoXfT14uXfgFiSus4w.TZySBCvGYe2VBA/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #ffffff; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Unsubscribe</u></strong>\r\n          </a>\r\n\r\n        </div>\r\n\r\n      </td>\r\n    </tr></table><table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse; background-color: #393b42;\"><tr><td align=\"center\" style=\"padding: 0; text-align: center;\">\r\n        <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse;\"><tr><td align=\"center\" style=\"text-align: center; padding: 10px 30px;\">\r\n              <div style=\"font-size: 11px; color: #ffffff; text-align: center;\">\r\n\r\n                <p>This email was sent to Rick@mavrix.one</p>\r\n\r\n                <p>by <strong>Leatherman Tool Group, Inc.</strong></p>\r\n\r\n                <p>12106 NE Ainsworth Circle <br>Portland, Oregon 97220</p>\r\n\r\n                <p style=\"display: none;\">Preference Center (PLACEHOLDER)</p>\r\n\r\n                <p style=\"line-height: 1.25;\">&#169; 2025 Leatherman Tool Group, Inc. All Rights Reserved.</p>\r\n                <br></div>\r\n            </td>\r\n          </tr></table></td>\r\n    </tr></table></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><!-- End --></body></html>','[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUiiI9bHvF-qK8NNK-PAj4Wg4D1_fglS91L39XvVP_sirzpWSzigpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VN7z8dd9RfedbjlYCXEylxUJcTjn5-blFqYnJGVaKQJFkIWkjU0NDA-N459KizPzS4njHpPzSkvig1LL40GArbqCSXCHW1NzEzJyoUH39pPyUSv2SxKScVP0SCLtIvyQFIhJtGIspiE0EzE7JLAPjxCQry5RUizRTI2PTVHND81SDpBqwdfGZKVZFmcnZDrmJZUWZFXr5eak1BqaGBolJKYkWFpZpiZapxlk8Ge7-D96fn8bAnvT9SQMTMwBryWvi.HsWYUAH9pZErJQ/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUiiI9bHvF-qK8NNK-PAj4Wg4D1_fglS91L39XvVP_sirzpWyyygpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VLyjKTylNLinWTyxKti9LLMpMzCuxNTE2tTQ3NTI0N7EwMDM0vPx131F951uOVgJcTKXFQlxOOfn5uUWpickZVopAkWQhaSNTQ0MD43jn0qLM_NLieMek_NKS-KDUsvjQYCtuoJJcIdbU3MTMnKhQff2k_JRK_ZLEpJxU_RIIu0i_JAUiEm0UiymITQTMTsksA-PEJCvLlFSLNFMjY9NUc0PzVIOkGrB18ZkpVkWZydkOuYllRZkVevl5qTUGpoYGiUkpiRYWlmmJlqnGWTwZ7v4P3p-fxsCe9P1JAxMzAEfjdy4.PQV2dM0Vo1Nbaw/click]\r\n\r\nThe right tool says a lot. ARC® Talos says it all — refined, capable, and built to stand apart. Crafted with premium materials and unmistakable detail, it’s made for those who lead, build, and solve.\r\n\r\nELEVATE YOUR GIFTING [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUiiI9bHvF-qK8NNK-PAj4Wg4D1_fglS91L39XvVP_sirzpWyyygpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VLyjKTylNLinWTyxKti9LLMpMzCuxNTE2tTQ3NTI0N7EwMDM0vPx131F951uOVgJcTKXFQlxOOfn5uUWpickZVopAkWQhaSNTQ0MD43jn0qLM_NLieMek_NKS-KDUsvjQYCtuoJJcIdbU3MTMnKgQff2k_JRK_ZLEpJxU_RIIu0i_JAUiEm0ciymIRZlRLJSbklmmn5hkZZmSapFmamRsmmpuaJ5qkFQDti0-M8WqKDM52yE3sawos0IvPy-1xsDU0CAxKSXRwsIyLdEy1TiLJ8Pd_8H789MY2JO-P2lgYgYAwQh2pg.rPdBTu_yTUCEHA/click]\r\n\r\nThe right tool says a lot. ARC® Talos says it all — refined, capable, and built to stand apart. Crafted with premium materials and unmistakable detail, it’s made for those who lead, build, and solve.\r\n\r\nELEVATE YOUR GIFTING [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUiiI9bHvF-qK8NNK-PAj4Wg4D1_fglS91L39XvVP_sirzpWyyygpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VLyjKTylNLinWTyxKti9LLMpMzCuxNTE2tTQ3NTI0N7EwMDM0vPx131F951uOVgJcTKXFQlxOOfn5uUWpickZVopAkWQhaSNTQ0MD43jn0qLM_NLieMek_NKS-KDUsvjQYCtuoJJcIdbU3MTMnKgQff2k_JRK_ZLEpJxU_RIIu0i_JAUiEm0SiymIRZlRLJSbklmmn5hkZZmSapFmamRsmmpuaJ5qkFQDti0-M8WqKDM52yE3sawos0IvPy-1xsDU0CAxKSXRwsIyLdEy1TiLJ8Pd_8H789MY2JO-P2lgYgYAwYp2pw.xIel_eXWP2fEhg/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUiiI9bHvF-qK8NNK-PAj4Wg4D1_fglS91L39XvVP_sirzpWyyygpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VLyjKTylNLinWTyxKti9LLMpMzCuxNTE2tTQ3NTI0N7EwMDM0vPx131F951uOVgJcTKXFQlxOOfn5uUWpickZVopAkWQhaSNTQ0MD43jn0qLM_NLieMek_NKS-KDUsvjQYCtuoJJcIdbU3MTMnKhQff2k_JRK_ZLEpJxU_RIIu0i_JAUiEm0aiymITQTMTsksA-PEJCvLlFSLNFMjY9NUc0PzVIOkGrB18ZkpVkWZydkOuYllRZkVevl5qTUGpoYGiUkpiRYWlmmJlqnGWTwZ7v4P3p-fxsCe9P1JAxMzAElsdzE.6Z5G1YBCrvMygw/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUiiI9bHvF-qK8NNK-PAj4Wg4D1_fglS91L39XvVP_sirzpWyyygpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VLyjKTylNLinWTyxKti9LLMpMzCuxNTE2tTQ3NTI0N7EwMDM0vPx131F951uOVgJcTKXFQlxOOfn5uUWpickZVopAkWQhaSNTQ0MD43jn0qLM_NLieMek_NKS-KDUsvjQYCtuoJJcIdbU3MTMnKhQff2k_JRK_ZLEpJxU_RIIu0i_JAUiEm0WiymITQTMTsksA-PEJCvLlFSLNFMjY9NUc0PzVIOkGrB18ZkpVkWZydkOuYllRZkVevl5qTUGpoYGiUkpiRYWlmmJlqnGWTwZ7v4P3p-fxsCe9P1JAxMzAEnvdzI.U5dDIAWC0J8OVg/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUiiI9bHvF-qK8NNK-PAj4Wg4D1_fglS91L39XvVP_sirzpWyyygpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VLyjKTylNLinWTyxKti9LLMpMzCuxNTE2tTQ3NTI0N7EwMDM0vPx131F951uOVgJcTKXFQlxOOfn5uUWpickZVopAkWQhaSNTQ0MD43jn0qLM_NLieMek_NKS-KDUsvjQYCtuoJJcIdbU3MTMnKhQff2k_JRK_ZLEpJxU_RIIu0i_JAUiEm0eiymITQTMTsksA-PEJCvLlFSLNFMjY9NUc0PzVIOkGrB18ZkpVkWZydkOuYllRZkVevl5qTUGpoYGiUkpiRYWlmmJlqnGWTwZ7v4P3p-fxsCe9P1JAxMzAEpydzM.x0bt9IJuCgruQg/click]\r\n\r\nEXPLORE ARC [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUiiI9bHvF-qK8NNK-PAj4Wg4D1_fglS91L39XvVP_sirzpWyyygpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VLyjKTylNLinWTyxKti9LLMpMzCuxNTE2tTQ3NTI0N7EwMDM0vPx131F951uOVgJcTKXFQlxOOfn5uUWpickZVopAkWQhaSNTQ0MD43jn0qLM_NLieMek_NKS-KDUsvjQYCtuoJJcIdbU3MTMnKhAff2k_JRK_ZLEpJxU_RIIu0i_JAUiEm0RiymITQTMTsks009MsrJMSbVIMzUyNk01NzRPNUiqAVsVn5liVZSZnO2Qm1hWlFmhl5-XWmNgamiQmJSSaGFhmZZomWqcxZPh7v_g_flpDOxJ3580MDEDAGuldb4.RBZYXm4e8HGW_g/click]\r\n\r\nEXPLORE ARC [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUiiI9bHvF-qK8NNK-PAj4Wg4D1_fglS91L39XvVP_sirzpWyyygpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VLyjKTylNLinWTyxKti9LLMpMzCuxNTE2tTQ3NTI0N7EwMDM0vPx131F951uOVgJcTKXFQlxOOfn5uUWpickZVopAkWQhaSNTQ0MD43jn0qLM_NLieMek_NKS-KDUsvjQYCtuoJJcIdbU3MTMnKhAff2k_JRK_ZLEpJxU_RIIu0i_JAUiEm0ZiymITQTMTsks009MsrJMSbVIMzUyNk01NzRPNUiqAVsVn5liVZSZnO2Qm1hWlFmhl5-XWmNgamiQmJSSaGFhmZZomWqcxZPh7v_g_flpDOxJ3580MDEDAGwkdb8.rnIrh3C5LoQ3vw/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zrFLAmEcxvEwIiiJuLGGimiJvPfe00s9kDKHIKKgiCKR8_fe-5pv3nuv3L2eCULNDbm1Bf0jtTk3tDU1uNcSNTQkOjhU25cPz_Boi_XS7kZHuz7ZWy2_f5W7x_GZm3ums4fOzmXve2Hlbi6qKlUPbYSazabO_VDBWQBCd6VAHgNVZYEAX0nphcuOCGnLFzXlUOlLpQJwazljbcQe92uc5gCbJAPETaQxI4lUkq0nspiaCUIqwFLYSlsW4OePxy4qvOTt2alYI9SmtjwpRcDArdpLfXG1edPC2Eg6hUbAZSN08kQ2lHPAIufo0J7uT4Q2wQRw77SFEJG0hRQQjyE17AApOpQiNkq_9S8ZNOXR_4uRFM0SAmJnKctULDNpsTROM4O0B5ccTu2Au7VNAVHAL3Tps7ZhYQMIhUwmW4EsS57Hq9v7r29Pt2OT5LN3FRv_Aau7mVQ.H1VBu-yi8aFNvA/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUiiI9bHvF-qK8NNK-PAj4Wg4D1_fglS91L39XvVP_sirzpWKyygpKSi20tcvLy_XK8nMLsnP1kvOz9V3yElNLMlILcpNzIsvyc_PKVaOzy1OqczLzS6Jz8nMy85MsTUxTjZOSU5L1TUwMEnRNUk2Tta1NLZM1DU1ME1LM0tNBaI0w8tf9x3Vd77laCXAxVRaLMTllJOfn1uUmpicYaUIFEkWkjYyNTQ0MI53Li3KzC8tjndMyi8tiQ9KLYsPDbbiBirJFWJNzU3MzImq1NdPyk-p1C9JTMpJ1S-BsIv0S1IgItGGBrGYothEwOyUzDLcKhAi0cax-olJVpYpqRZppkbGpqnmhuapBkk1YCfFZ6ZYFWUmZzvkJpYVZVbo5eel1hiYGhokJqUkWlhYpiVaphpn8WS4-z94f34aA3vS9ycNTMwAIgSP6g.IOVADyD1SZKn6A/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1z71Lw0AABXCpiFCLSEYdVMRFTC7fTQJFawdBioIiiqXES-5CznxcTS6thYLODnZzE_xHdOvs4Obk0F0X0cHB0g4d1O3x4w3vcUuNenWjy10f766dvn-d9o4Kszf3WMAP3Z3L_vfi6t38uc9YI7UAaLVaggdd7FAaCC6NQBVD5uMkgjFYsaMUteMoYDaiMWUsgW5QEtfHHJI4IKikuLKOZAXzalEq8qrqGbyp6S4PVVEX9aIJZdmTnj8ee6DyUrbm8rks5fJbIaVRgqHrW8sDcbkFWZMkUbErWUJoltplh2bM3sdN-_DAmhlUIm4KR5CEJ20AHIragEEnxICNcgIYGklNEuu_9S8ZZkSa_zfGUlPrADqWibDhabKi4cFXLDqd4SSbICshbrAZwWZCLgQa446oSSJ0EDQM04MmVs4K_vbe69vT7cS089m_yk3-AO-alWo.hG3ajrtaTFuXbg/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zr1Lw0AcxnGpiFCLSEYdVMRFTC8vpkkDRWsHQaqCIoqlpJfcL_RMkyvJpTVQ0NnBbm6C_4hunR3cnBy66yI6OFjaoYO6PXx4hq-w1KyWN7vC9en-Wu39q9Y7ycze3EMWHrq7l_3vxdW7-aTOeTMyEWq329mExTy2IeswH8URhKgMmNch9HGwB4TiFcuPSBL4HrcICxjnIXa8grQ-5gYNPEoKrqGSHAFJ1LHrihu6ool5Vd4QieQohqErei7nys8fjz1Ueimac-lUHAnp7QZjfgjYqZvLA3GEBUWTZUm1SnFIWRxZRXvQZx1Cyzo-MmcGF1-YAh_TxlmCkM1Igji2G4D4aIeIk5FUZKn6W_-S4Sa09f9jLBWtirBt5gkYrqaoGuiyDpLdGSZZlJghdbwtH7dCepFlAXQkTZawTbBh5F2cB_U8U985eH17up2Ytj_7V6nJHzf7mVM.5GOb1fUcQXtmfg/click] \r\n\r\n*Privacy Policy* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzrtLw1AUBnAfiFBFJKMOKuIiJjdpmuYBxUcHQURBEUUp8b5KrsnNLclta6Cgg5ODbm6C_4huzg5uTg7uuogODpYoKOhw4Ds_vgNHmWzUVufPldOdtdn9l_f92-3hkbMrqtHr85Wjp4-Jmcuxk95AykbqAdBut7WIQhnQhMNYw4KDhogYZjQFjYS1IM7UHDItkDya9nlKspiH0iciFlImEIcVfe6HIxaHjFQcHVllUqIqsuyyWnJwUXVNU1fLqG67VDdt6GLj_vXmFlQfFr3RQl8zVQpLkRA8oRAH3lRXsDJetAxDN_1qM2GimfqLSDSlv0Fb_tamN9StcGWAcsii3QgAJEgGJEQRBfIrJ0CSL9kzjNpf_U_yTFgrn-_b2i-G3RV5LqFO3SqaFrUNm-qok3_hM-IlDIcLHLYSdqiJmHZ0y9AhItBx3Dp0qXkwHCyvPz7fXfQMoren477-T66smIs.aTq0rvzj0mBnaQ/click] *Manage Preferences* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzr1v00AYBnAoQkilQsgjDMDAgmRfLpaJbakq-aIpbWkgKSGpIvd898a-cL4z9tlKpEowM9CNDYl_hG6dGdiYGLrDgmBgoEoRQoLhlR799LzSY9xMx1trh8arpw_v7H_9sX88WLny-h1Y8P7wwYuTnzduv712dD7WOs19hIrcNimTFsjICoVSSQaExhZVCRJAdAxZQqSplRJmmilWUM2VRICa0Uw9b-PGpoCk8PLR_XnU2-g0WL9ldtsqHfZ5GrndOJo9odstdTca9RxRDr3Nidl3O_MB22ZdXOa75SMvbdBolra23MFU4412zIfNqmvZndaO26lltfXpkNQRVTIHqdcEkdEqSPzx29Exan6q-1eXl4rcWG78me7fOhVqXK86GFfsoFlkXBV5UA9VoYPHUAa7Pf_yaSUxLkJCuBgJhELF5kiTUADSZzlDmp3JHsbjf_V_ssiMl4v7_Tv-i8ledRz6HgN34lRtB2q4BpXwYLEi4MzPOH12LyFlxmeWknBQcXCFhIy4rjchHtjTlXh95_OXD2_OXQq_n7xcuvALiNys4g.Wv_ih8_rHaT2Nw/click] *Unsubscribe* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzr1v00AYBnAoQkilQsgjDMDAgmRfLpaJbakq-aIpbWkgKSGpIvd898a-cL4z9tlKpEowM9CNDYl_hG6dGdiYGLrDgmBgoEoRQoLhlR799LzSY9xMx1trh8arpw_v7H_9sX88WLny-h1Y8P7wwYuTnzduv712dD7WOs19hIrcNimTFsjICoVSSQaExhZVCRJAdAxZQqSplRJmmilWUM2VRICa0Uw9b-PGpoCk8PLR_XnU2-g0WL9ldtsqHfZ5GrndOJo9odstdTca9RxRDr3Nidl3O_MB22ZdXOa75SMvbdBolra23MFU4412zIfNqmvZndaO26lltfXpkNQRVTIHqdcEkdEqSPzx29Exan6q-1eXl4rcWG78me7fOhVqXK86GFfsoFlkXBV5UA9VoYPHUAa7Pf_yaSUxLkJCuBgJhELF5kiTUADSZzlDmp3JHsbjf_V_ssiMl4v7_Tv-i8mePQ59j4E7caq2AzVcg0p4sFgRcOZnnD67l5Ay4zNLSTioOLhCQkZc15sQD-zpSry-8_nLhzfnLoXfT14uXfgFiSus4w.TZySBCvGYe2VBA/click] \r\n\r\nThis email was sent to Rick@mavrix.one\r\n\r\nby *Leatherman Tool Group, Inc.*\r\n\r\n12106 NE Ainsworth Circle \r\nPortland, Oregon 97220\r\n\r\n© 2025 Leatherman Tool Group, Inc. All Rights Reserved.',0,0,0,0,0,0,'2025-11-06 15:30:31','2025-12-09 19:30:48','2025-12-09 19:30:48','2025-12-09 19:30:48',NULL,NULL,NULL),
(926,4,' <PH2P110MB079632CB0050A57CA767E96ED0C2A@PH2P110MB0796.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'RE: Dragonfly Pictures, Inc.','barry@dpiuav.com','Barry Phillips','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Freestyle Script\";\r\n	panose-1:3 8 4 2 3 2 5 11 4 4;}\r\n@font-face\r\n	{font-family:\"Arial Nova Light\";}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle20\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Mr. Mislan,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">I am responding on behalf of Mr. Piasecki, would you be available for a meeting with DPI at 9am Thursday morning NOV 13<sup>th</sup>, 2025?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:20.0pt;font-family:&quot;Freestyle Script&quot;;mso-ligatures:standardcontextual\">Barry Phillips<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Engineering Manager<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Cell: 484-459-7997<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">DPI UAV Systems<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">600 West 2<sup>nd</sup> St.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Essington PA 19029<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\">Extending Man\'s Reach with Unmanned Helicopters</span></b><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;color:#002060\"><img width=\"222\" height=\"70\" style=\"width:2.3125in;height:.7291in\" id=\"Picture_x0020_2049092546\" src=\"cid:image001.jpg@01DC4F22.2625DC10\" alt=\"DPI-logo-4-April28-blue-full\"></span><span style=\"font-size:11.0pt;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">This is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged\r\n information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your\r\n cooperation is appreciated.<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;</span><a href=\"mailto:rick@mavrix.one\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">rick@mavrix.one</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, November 5, 2025 5:24 PM<br>\r\n<b>To:</b> Michael Piasecki &lt;</span><a href=\"mailto:mike@dpiuav.com\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">mike@dpiuav.com</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;<br>\r\n<b>Subject:</b> Re: Dragonfly Pictures, Inc.<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Michael,<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Yes completely remember you.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Want to schedule something for next week?<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Tuesday or Thursday mornings are best for me.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Let me know if you have a time in mind.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks!<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"Picture_x0020_2\" src=\"cid:image002.png@01DC4F22.2625DC10\"></span><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><a href=\"https://mavrix1.com/\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">https://mavrix1.com</span></a><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">CONFIDENTIALITY NOTICE<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the\r\n use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients\r\n are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"airmailon\">On November 5, 2025 at 1:19:51<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM, Michael Piasecki (<a href=\"mailto:mike@dpiuav.com\">mike@dpiuav.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Dear Rick,\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">We met at the Army Marketplace event in Huntsville a while back. I drove you to the airport. If you wanted us to brief you on our portion of the market,\r\n we can do that. Otherwise, I wish you well on your excellent mission of increasing the manufacturing of relevant US military products at scale and in time enough.\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Respectfully,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Michael</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Michael Piasecki</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">President</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">DPI UAV Systems</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">600 W. 2<sup>nd</sup> St., Essington, PA 19029</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Office: (610) 521-6115 x 202</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Mobile: (215) 439-2036</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"http://www.dpiuav.com/\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#0563C1\">www.dpiuav.com</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://youtu.be/4ihY-IiAfXI\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#0563C1\">https://youtu.be/4ihY-IiAfXI</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\">Extending Man\'s Reach with Unmanned Helicopters</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060\"><img border=\"0\" width=\"222\" height=\"70\" style=\"width:2.3125in;height:.7291in\" id=\"Picture_x0020_1\" src=\"cid:image003.jpg@01DC4F22.2625DC10\" alt=\"DPI-logo-4-April28-blue-full\"></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">This is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential,\r\n proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments\r\n from your computer. Your cooperation is appreciated.</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Mr. Mislan,\r\n\r\nI am responding on behalf of Mr. Piasecki, would you be available for a meeting with DPI at 9am Thursday morning NOV 13th, 2025?\r\n\r\nBarry Phillips\r\nEngineering Manager\r\nCell: 484-459-7997\r\nDPI UAV Systems\r\n600 West 2nd St.\r\nEssington PA 19029\r\n\r\nExtending Man\'s Reach with Unmanned Helicopters\r\n[DPI-logo-4-April28-blue-full]\r\n\r\nThis is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is appreciated.\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Wednesday, November 5, 2025 5:24 PM\r\nTo: Michael Piasecki <mike@dpiuav.com<mailto:mike@dpiuav.com>>\r\nSubject: Re: Dragonfly Pictures, Inc.\r\n\r\nHi Michael,\r\nYes completely remember you.\r\nWant to schedule something for next week?\r\nTuesday or Thursday mornings are best for me.\r\nLet me know if you have a time in mind.\r\nThanks!\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:image002.png@01DC4F22.2625DC10]\r\nhttps://mavrix1.com<https://mavrix1.com/>\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\nOn November 5, 2025 at 1:19:51 PM, Michael Piasecki (mike@dpiuav.com<mailto:mike@dpiuav.com>) wrote:\r\nDear Rick,\r\n\r\nWe met at the Army Marketplace event in Huntsville a while back. I drove you to the airport. If you wanted us to brief you on our portion of the market, we can do that. Otherwise, I wish you well on your excellent mission of increasing the manufacturing of relevant US military products at scale and in time enough.\r\n\r\nRespectfully,\r\nMichael\r\n\r\n\r\nMichael Piasecki\r\nPresident\r\nDPI UAV Systems\r\n600 W. 2nd St., Essington, PA 19029\r\nOffice: (610) 521-6115 x 202\r\nMobile: (215) 439-2036\r\nwww.dpiuav.com<http://www.dpiuav.com/>\r\nhttps://youtu.be/4ihY-IiAfXI\r\n\r\n\r\nExtending Man\'s Reach with Unmanned Helicopters\r\n[DPI-logo-4-April28-blue-full]\r\n\r\nThis is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is appreciated.\r\n\r\n',0,0,0,0,0,0,'2025-11-06 18:36:12','2025-12-09 19:30:48','2025-12-09 19:30:48','2025-12-09 19:30:48',NULL,NULL,NULL),
(927,4,'<CAJO9__aQydfN0HT-S-qURzUzcW6X-69h6z-773mfszKjbgvvcQ@mail.gmail.com>',NULL,NULL,'Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Hi James,</div><div><br></div><div>Hope you are well.  </div><div><br></div><div>How did your meeting go? </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Oct 27, 2025 at 2:33 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Hi James,</div><div><br></div><div>We are logged on to the teams meeting. </div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Oct 23, 2025 at 1:05 PM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div>\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nThanks for the call today. Attached are a bunch of documents:</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<ul style=\"margin-top:0px;margin-bottom:0px;list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">spec sheets for all (5) FN Products</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">spec sheet for the Samsung 53G</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">spec sheet for the Moli P50B</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Presentation from our call with ballpark cell availability and pricing</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Term sheet for capturing our relationship interests</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Skyfoundary proposal</div>\r\n</li></ul>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"m_-4115497688900238988m_-5188347059152730434appendonsend\"></div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI have your volumes from the ProgramProduct excel sheet that I&#39;ve plugged into the term sheet for now as a first draft. On your end I captured the following action items:</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<ul style=\"margin-top:0px;margin-bottom:0px;list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Review all documents in this email and confirm volumes and provide first pass review on the term sheet</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Review the Skyfoundary proposal and put together a first-pass budget/plan to support Forge as a partner</div>\r\n</li></ul>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI am out tomorrow for personal matters but look forward to our discussion on Monday. </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, October 22, 2025 9:45 AM<br>\r\n<b>To:</b> James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Will McKenna &lt;<a href=\"mailto:WMcKenna@forgenano.com\" target=\"_blank\">WMcKenna@forgenano.com</a>&gt;; Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">You bet,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Speak with you tomorrow. </div>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a style=\"color:blue;margin:0px\" id=\"m_-4115497688900238988m_-5188347059152730434OWAd0bf4139-d110-2b14-2e7d-f838dea323c6\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_-4115497688900238988m_-5188347059152730434OWA491b8ae0-354c-d404-4a80-c7e9f97e7013\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,RCp_srnsn8TsHi-Y90KYoNQPNLUs9Z2k6AQ2a8mY4AU8XQa0dJ0qeugNm0mDw--U4uH_iIRb9IN4Nb3dl2ctTPPmCoYcMeCAkzmhYm7mlpPXnMYFHVt8&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Oct 22, 2025 at 11:34 AM James Trevey &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWAa31267f6-c393-7fea-dc8a-2e771875250b\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nperfect. I look forward to speaking with you then!</div>\r\n<div id=\"m_-4115497688900238988m_-5188347059152730434x_m_5154054507612261457appendonsend\"></div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div id=\"m_-4115497688900238988m_-5188347059152730434x_m_5154054507612261457divRplyFwdMsg\">\r\n<div style=\"direction:ltr;font-family:Calibri,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWA95e85b38-b96c-174d-e756-81f1bec2a1ff\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, October 22, 2025 9:30 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWAd1de4bb3-03ed-f1d6-f7e4-1848df71c103\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Will McKenna &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWA8bded2a7-9490-66c0-1166-46535ffa61f0\" href=\"mailto:WMcKenna@forgenano.com\" target=\"_blank\">WMcKenna@forgenano.com</a>&gt;; Daniel &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWA5cab2c66-aa13-c490-cc32-3f94f13d8838\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWA42851c95-8020-51f8-373b-55e4c94f515b\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\"> </div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I can do tomorrow at 9am MST.  </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Let me know if that still works for you and I can send you over an invite.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a style=\"color:blue;margin:0px\" id=\"m_-4115497688900238988m_-5188347059152730434OWA79c48f2b-7c75-15f7-0c38-0a8a933b49ef\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_-4115497688900238988m_-5188347059152730434OWAc61fd127-5390-c059-5dcd-e6ec1ef6d2b9\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,irabj1pPRcbHt7fZTnVGlp-D5OWgJo5J-DJVmYysbSINfzIevG80IYq97Jraq-OV6w6IJC3gu0pHz4oFYfW4xcnb3n-PwXqRHBE_AugLqCnyxkrk6RI,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Tue, Oct 21, 2025 at 6:09 PM James Trevey &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWA873dbf9f-ca2b-ea71-cec5-8029b0003dfb\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nHey Jordan, </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI am back from 3 weeks of travel and ready to get sorted here. Tomorrow is sunk, but on Thursday I can do 9am MT or 12:30pm MT. Do either work for you? If not, I have the following next week:</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n27th: 11:30-1pm MT</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n28th: 8am MT, 11am MT, after 1pm MT</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n29th: after 1pm MT</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n30th: after 10am MT</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nLet me know what works.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWA81571a2c-6c21-2436-85b5-8714e8b66c05\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Monday, October 20, 2025 5:12 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWA1e87c462-b83e-2b9c-f923-2ac81a62cf8d\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWA31dc8928-3d8b-0f48-12bd-d8b3c385d531\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWA542618ae-28b3-7246-75f5-03485d9c3649\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I am out of town as well.  How does your Wednesday look? </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to catching up.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\"><u>jordan<a style=\"margin:0px\" id=\"m_-4115497688900238988m_-5188347059152730434OWA2ec3caf6-8cfd-8a8d-d7e5-54d935ffa458\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"color:rgb(255,255,255);background-color:rgba(255,255,255,0)\"><a style=\"margin-top:0px;margin-bottom:0px;background-color:rgba(255,255,255,0)\" id=\"m_-4115497688900238988m_-5188347059152730434OWAe825f741-6e69-fe40-fbd6-457f5c25b3a9\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,kcAZ-rF3D0Z_d8KzW-apTAtlzHQofd8D2ZjbELiCHZPsqOhCV8Xd_fUJ6ZWDkt-2fgJod-EPR6FfR9gTPQj_LmrIjU3cEOjFP4Vi0A3Pa8jqtC5XpIZ1aRU,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<blockquote>\r\n<div style=\"direction:ltr\">On Oct 16, 2025, at 9:20 AM, James Trevey &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWA1939e34b-5b2c-9003-ede8-c8f559743e5e\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n<br>\r\n</div>\r\n</blockquote>\r\n<blockquote>\r\n<div style=\"direction:ltr\">﻿</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nHey Jordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nApologies for the slow/no replies recently. Travel has been brutal. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nWe&#39;ve got a lot of the information ready for you. Can we schedule a call to do a walk through on Monday the 20th at 9am or 10am ET?</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div id=\"m_-4115497688900238988m_-5188347059152730434x_m_5154054507612261457x_m_3027303751782346756x_divRplyFwdMsg\">\r\n<div style=\"direction:ltr;font-family:Calibri,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWA8c58e32e-c07b-2c9d-031e-39378c6b2453\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Thursday, October 16, 2025 9:16 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWA370bc921-b453-4ca1-a90c-a3760d045262\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWA38a65a75-0a32-7ad1-fb6e-fec3a8ccf702\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWAef467482-444c-bd55-030d-8124fe0eb8a3\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\"> </div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Would be great to get some pricing and spec sheets. </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Let me know when we can connect. </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\"><u>jordan<a style=\"margin:0px\" id=\"m_-4115497688900238988m_-5188347059152730434OWAbde88397-5f7f-6e20-eecb-9c9d616ae70b\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"color:rgb(255,255,255);background-color:rgba(255,255,255,0)\"><a style=\"margin-top:0px;margin-bottom:0px;background-color:rgba(255,255,255,0)\" id=\"m_-4115497688900238988m_-5188347059152730434OWA8995a143-93ff-32bf-0768-f2305f87035a\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,kruzcWrtQAWBE_Wzkk5ZCPi8egnieSOSjhsFO2fIO_mt3sy1dInRgNFjLY-Xwbk4dmY7rgbxINSGlle76-Yg-vEcypX9dPm0sX9KSwuuDZUbmg,,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<blockquote>\r\n<div style=\"direction:ltr\">On Sep 30, 2025, at 4:31 PM, Jordan Wroblewski &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWAfc903b23-ac77-7b70-923b-6abe766ec537\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br>\r\n<br>\r\n</div>\r\n</blockquote>\r\n<blockquote>\r\n<div style=\"direction:ltr\">﻿</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to our discussion and seeing your deck of prospective projects.  </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best, </div>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a style=\"color:blue;margin:0px\" id=\"m_-4115497688900238988m_-5188347059152730434OWA69160ff1-d5bd-007c-638f-52d5ccdd5f0d\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_-4115497688900238988m_-5188347059152730434OWA6a7ea24c-1ec8-7ec2-7302-6e195d239024\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,KG7OlMyZO9jbLU5vTJ3I8lMhBaHdNf06-ktzHMDOUSoCImrfUczbXUj1d1VcQUh_ApKsyrkLO9FO7PzcinsYewUWoskpuT9EKlrhqSI22A,,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Fri, Sep 26, 2025 at 4:59 PM James Trevey &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWAa8fbc85b-a982-60aa-1b0f-421cd7a87c0d\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI won&#39;t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI&#39;ll send to you as soon as I can next week.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<b>From:</b> James Trevey &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWAd7a5c27b-da55-2c7f-698b-f818d5e5341c\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, September 24, 2025 10:49 AM<br>\r\n<b>To:</b> Jordan Wroblewski &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWAa691f501-9154-2520-985f-29cdd2fb5c90\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWAbf77b698-937c-aeca-a707-b2494628658b\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWA104e212a-34bd-05fd-2c13-aef8bc1517fa\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI also have a verbal matter we can discuss soon. Once I&#39;ve got the deck ready I&#39;ll find time for a short call with you.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nTalk soon.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJames</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div id=\"m_-4115497688900238988m_-5188347059152730434x_m_5154054507612261457x_m_3027303751782346756x_x_m_7859046138643783182x_divRplyFwdMsg\">\r\n<div style=\"direction:ltr;font-family:Calibri,sans-serif;font-size:11pt;color:black\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWA8839c907-fb82-436d-88c1-e4063c0ac22f\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, September 24, 2025 10:07 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWA5bbe05c5-50fd-d977-82a6-0bb9a3e8d948\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWAfb29af50-570f-4e82-d05d-36379913355d\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWAf2c74f2a-7269-dfef-9873-29a46c5c4b9e\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\"> </div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for the follow up.  You were on my list to contact today!  </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Would that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I will let you know if I will be able to make it up to Detroit for The Battery Show.  </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to seeing the deck.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">All the best, </div>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a style=\"color:blue;margin:0px\" id=\"m_-4115497688900238988m_-5188347059152730434OWA61a86075-871c-a4f2-6f33-e7c4eb316069\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_-4115497688900238988m_-5188347059152730434OWA214782f4-48ae-8022-ef74-7608a601abba\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 24, 2025 at 11:59 AM James Trevey &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWA33cce604-09df-9972-aa99-5a2cf482f6d9\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nHey Jordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nThank you for the quick follow up. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we&#39;ve decided we&#39;d like to provide information on additional products to you which are typically not on the menu but I have details\r\n to sort first. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nRegarding shows, happy to discuss when ready. We&#39;ll be at The Battery Show in 2 weeks, which I think you should consider attending and I&#39;d be happy to connect while there. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJames</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div id=\"m_-4115497688900238988m_-5188347059152730434x_m_5154054507612261457x_m_3027303751782346756x_x_m_7859046138643783182x_x_m_-6814561645313625911divRplyFwdMsg\">\r\n<div style=\"direction:ltr;font-family:Calibri,sans-serif;font-size:11pt;color:black\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWAd96cc1aa-a813-6163-4f4d-3a604e112ee7\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Thursday, September 18, 2025 11:03 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWA6c494d49-99e5-cffe-a9df-8e6c460a0e63\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWA5652f27b-5ef0-af9b-1a3e-1cecbce3fad8\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWAd0fa53a7-eca3-9387-f15c-28b074c1a084\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\"> </div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information\r\n to optimize our collaboration and planning:<br>\r\n<br>\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.<br>\r\n<br>\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.<br>\r\n<br>\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.<br>\r\n<br>\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.<br>\r\n<br>\r\nClarify your minimum order quantities and expected pricing for each product line.<br>\r\n<br>\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.<br>\r\n<br>\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted\r\n commercial timelines, and expected pricing.<br>\r\n<br>\r\nAdditionally, for reference, these are LBC’s most popular cells we&#39;ve made module and packs for:<br>\r\n<br>\r\n18650:<br>\r\n<br>\r\nNMC: TNL-ITR18650-2600P<br>\r\n<br>\r\nLFP: SW18650-26HPA<br>\r\n<br>\r\nLFP: IFR18650-2000mAh<br>\r\n<br>\r\n21700:<br>\r\n<br>\r\nNMC: INR21700-50S<br>\r\n<br>\r\nNMC: INR21700-4000<br>\r\n<br>\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">In terms of the shows you mentioned, we are getting our schedules aligned so we can attend.  What&#39;s the &quot;secret meeting&quot; in Nov? <br>\r\n<br>\r\nWe look forward to your prompt response so we can efficiently move to the next stages.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Talk soon, </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a style=\"color:blue;margin:0px\" id=\"m_-4115497688900238988m_-5188347059152730434OWA4e4576b1-1931-f3c5-bf04-1d623e748413\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_-4115497688900238988m_-5188347059152730434OWA0cfcaabe-77cb-de77-b671-98d78df6d665\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 17, 2025 at 7:00 PM James Trevey &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWA2efeafd1-df26-a882-3cd2-915ab031edb6\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nThanks for moving quickly here. I got bogged down today but better late than never. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nAttached you&#39;ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won&#39;t tell us the application)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell has a 100% US supply chain already</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nmillions</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nmillions </u>next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nthousands</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nmillions</u> next year by our partner in the EU. As we show adoption, we&#39;ll expand our factory to build these</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div style=\"direction:ltr\" role=\"presentation\">This cell can be made in the <u>\r\nthousands</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n</ul>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI will check with my people on 301 asap.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI look forward to our next communication.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJames</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:black\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:black\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWA3b059ab0-9fb4-963d-d6b8-369eb4ca0cc2\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, September 17, 2025 7:56 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWA3d6fb971-5d4e-9b71-f39f-0860c844fa95\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;; Daniel &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWA3111b555-f6ea-0b7e-f4da-ab68556c65e8\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_-4115497688900238988m_-5188347059152730434OWA7b82e4d2-9ac4-eea2-625d-4079b0c83093\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Gentlemen,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">It was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I&#39;ve outlined the key action items below:</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<ul style=\"direction:ltr\">\r\n<li style=\"direction:ltr\">James to send the cell specification sheets as soon as possible.</li><li style=\"direction:ltr\">LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.</li><li style=\"direction:ltr\">James to send their term sheet template for throughput contracts.</li><li style=\"direction:ltr\">We should discuss 301 exclusion support for manufacturing equipment.</li></ul>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I look forward to our next conversation. </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a style=\"color:blue;margin:0px\" id=\"m_-4115497688900238988m_-5188347059152730434OWAdbe91ca4-1ba3-791b-0976-85d477e08c5f\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_-4115497688900238988m_-5188347059152730434OWA739c124e-e74e-a939-4030-d125840b8a52\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n<div style=\"direction:ltr\">&lt;ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes (1).csv&gt;</div>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n\r\n</div></blockquote></div>\r\n</blockquote></div>','Hi James,\r\n\r\nHope you are well.\r\n\r\nHow did your meeting go?\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Mon, Oct 27, 2025 at 2:33 PM Jordan Wroblewski <\r\njordan@lithiumbatterycompany.com> wrote:\r\n\r\n> Hi James,\r\n>\r\n> We are logged on to the teams meeting.\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company <http://lithiumbatterycompany.com>\r\n>\r\n>\r\n> On Thu, Oct 23, 2025 at 1:05 PM James Trevey <jtrevey@forgenano.com>\r\n> wrote:\r\n>\r\n>> Jordan,\r\n>>\r\n>> Thanks for the call today. Attached are a bunch of documents:\r\n>>\r\n>>\r\n>>    - spec sheets for all (5) FN Products\r\n>>    - spec sheet for the Samsung 53G\r\n>>    - spec sheet for the Moli P50B\r\n>>    - Presentation from our call with ballpark cell availability and\r\n>>    pricing\r\n>>    - Term sheet for capturing our relationship interests\r\n>>    - Skyfoundary proposal\r\n>>\r\n>>\r\n>> I have your volumes from the ProgramProduct excel sheet that I\'ve plugged\r\n>> into the term sheet for now as a first draft. On your end I captured the\r\n>> following action items:\r\n>>\r\n>>\r\n>>    - Review all documents in this email and confirm volumes and provide\r\n>>    first pass review on the term sheet\r\n>>    - Review the Skyfoundary proposal and put together a first-pass\r\n>>    budget/plan to support Forge as a partner\r\n>>\r\n>>\r\n>> I am out tomorrow for personal matters but look forward to our discussion\r\n>> on Monday.\r\n>>\r\n>> James\r\n>>\r\n>> ------------------------------\r\n>> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n>> *Sent:* Wednesday, October 22, 2025 9:45 AM\r\n>> *To:* James Trevey <jtrevey@forgenano.com>\r\n>> *Cc:* Will McKenna <WMcKenna@forgenano.com>; Daniel <\r\n>> dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan\r\n>> Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\n>> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co\r\n>> Collaboration\r\n>>\r\n>> You bet,\r\n>>\r\n>> Speak with you tomorrow.\r\n>>\r\n>>\r\n>> Jordan G. Wroblewski\r\n>>\r\n>> Partner | President\r\n>>\r\n>> Lithium Battery Company\r\n>>\r\n>> Direct: (917) 266-5336\r\n>>\r\n>> *jordan@lithiumbatterycompany.com\r\n>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>\r\n>> Lithium Battery Company\r\n>> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,RCp_srnsn8TsHi-Y90KYoNQPNLUs9Z2k6AQ2a8mY4AU8XQa0dJ0qeugNm0mDw--U4uH_iIRb9IN4Nb3dl2ctTPPmCoYcMeCAkzmhYm7mlpPXnMYFHVt8&typo=1>\r\n>>\r\n>>\r\n>> On Wed, Oct 22, 2025 at 11:34 AM James Trevey <jtrevey@forgenano.com>\r\n>> wrote:\r\n>>\r\n>> perfect. I look forward to speaking with you then!\r\n>> ------------------------------\r\n>> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n>> *Sent:* Wednesday, October 22, 2025 9:30 AM\r\n>> *To:* James Trevey <jtrevey@forgenano.com>\r\n>> *Cc:* Will McKenna <WMcKenna@forgenano.com>; Daniel <\r\n>> dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan\r\n>> Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\n>> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>>\r\n>> Hi James,\r\n>>\r\n>> I can do tomorrow at 9am MST.\r\n>>\r\n>> Let me know if that still works for you and I can send you over an invite.\r\n>>\r\n>> Best,\r\n>>\r\n>>\r\n>> Jordan G. Wroblewski\r\n>>\r\n>> Partner | President\r\n>>\r\n>> Lithium Battery Company\r\n>>\r\n>> Direct: (917) 266-5336\r\n>>\r\n>> *jordan@lithiumbatterycompany.com\r\n>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>\r\n>> Lithium Battery Company\r\n>> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,irabj1pPRcbHt7fZTnVGlp-D5OWgJo5J-DJVmYysbSINfzIevG80IYq97Jraq-OV6w6IJC3gu0pHz4oFYfW4xcnb3n-PwXqRHBE_AugLqCnyxkrk6RI,&typo=1>\r\n>>\r\n>>\r\n>> On Tue, Oct 21, 2025 at 6:09 PM James Trevey <jtrevey@forgenano.com>\r\n>> wrote:\r\n>>\r\n>> Hey Jordan,\r\n>>\r\n>> I am back from 3 weeks of travel and ready to get sorted here. Tomorrow\r\n>> is sunk, but on Thursday I can do 9am MT or 12:30pm MT. Do either work for\r\n>> you? If not, I have the following next week:\r\n>>\r\n>> 27th: 11:30-1pm MT\r\n>> 28th: 8am MT, 11am MT, after 1pm MT\r\n>> 29th: after 1pm MT\r\n>> 30th: after 10am MT\r\n>>\r\n>> Let me know what works.\r\n>>\r\n>> James\r\n>>\r\n>>\r\n>> ------------------------------\r\n>> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n>> *Sent:* Monday, October 20, 2025 5:12 AM\r\n>> *To:* James Trevey <jtrevey@forgenano.com>\r\n>> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n>> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n>> Rick Mislan <rick@mavrix.one>\r\n>> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>>\r\n>> Hi James,\r\n>>\r\n>> I am out of town as well.  How does your Wednesday look?\r\n>>\r\n>> Looking forward to catching up.\r\n>>\r\n>>\r\n>> Jordan G. Wroblewski\r\n>>\r\n>> Partner | President\r\n>>\r\n>> Lithium Battery Company\r\n>>\r\n>> Direct: (917) 266-5336\r\n>>\r\n>> *jordan@lithiumbatterycompany.com\r\n>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>\r\n>> Lithium Battery Company\r\n>> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,kcAZ-rF3D0Z_d8KzW-apTAtlzHQofd8D2ZjbELiCHZPsqOhCV8Xd_fUJ6ZWDkt-2fgJod-EPR6FfR9gTPQj_LmrIjU3cEOjFP4Vi0A3Pa8jqtC5XpIZ1aRU,&typo=1>\r\n>>\r\n>> On Oct 16, 2025, at 9:20 AM, James Trevey <jtrevey@forgenano.com> wrote:\r\n>>\r\n>> ﻿\r\n>> Hey Jordan,\r\n>>\r\n>> Apologies for the slow/no replies recently. Travel has been brutal.\r\n>>\r\n>> We\'ve got a lot of the information ready for you. Can we schedule a call\r\n>> to do a walk through on Monday the 20th at 9am or 10am ET?\r\n>>\r\n>> James\r\n>> ------------------------------\r\n>> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n>> *Sent:* Thursday, October 16, 2025 9:16 AM\r\n>> *To:* James Trevey <jtrevey@forgenano.com>\r\n>> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n>> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n>> Rick Mislan <rick@mavrix.one>\r\n>> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>>\r\n>> Hi James,\r\n>>\r\n>> Would be great to get some pricing and spec sheets.\r\n>>\r\n>> Let me know when we can connect.\r\n>>\r\n>> Best,\r\n>>\r\n>> Jordan G. Wroblewski\r\n>>\r\n>> Partner | President\r\n>>\r\n>> Lithium Battery Company\r\n>>\r\n>> Direct: (917) 266-5336\r\n>>\r\n>> *jordan@lithiumbatterycompany.com\r\n>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>\r\n>> Lithium Battery Company\r\n>> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,kruzcWrtQAWBE_Wzkk5ZCPi8egnieSOSjhsFO2fIO_mt3sy1dInRgNFjLY-Xwbk4dmY7rgbxINSGlle76-Yg-vEcypX9dPm0sX9KSwuuDZUbmg,,&typo=1>\r\n>>\r\n>> On Sep 30, 2025, at 4:31 PM, Jordan Wroblewski <\r\n>> jordan@lithiumbatterycompany.com> wrote:\r\n>>\r\n>> ﻿\r\n>> Hi James,\r\n>>\r\n>> I have attached a prospective cell demand schedule (subject to change)\r\n>> but two of your battery types should meet the requirements for some of our\r\n>> future projects.\r\n>>\r\n>> Looking forward to our discussion and seeing your deck of prospective\r\n>> projects.\r\n>>\r\n>> Best,\r\n>>\r\n>>\r\n>> Jordan G. Wroblewski\r\n>>\r\n>> Partner | President\r\n>>\r\n>> Lithium Battery Company\r\n>>\r\n>> Direct: (917) 266-5336\r\n>>\r\n>> *jordan@lithiumbatterycompany.com\r\n>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>\r\n>> Lithium Battery Company\r\n>> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,KG7OlMyZO9jbLU5vTJ3I8lMhBaHdNf06-ktzHMDOUSoCImrfUczbXUj1d1VcQUh_ApKsyrkLO9FO7PzcinsYewUWoskpuT9EKlrhqSI22A,,&typo=1>\r\n>>\r\n>>\r\n>> On Fri, Sep 26, 2025 at 4:59 PM James Trevey <jtrevey@forgenano.com>\r\n>> wrote:\r\n>>\r\n>> Jordan,\r\n>>\r\n>> I won\'t be able to send the deck today. Still waiting on a few spec\r\n>> sheets approval and validation of production capability for a few products.\r\n>>\r\n>> I\'ll send to you as soon as I can next week.\r\n>>\r\n>> James\r\n>>\r\n>>\r\n>>\r\n>>\r\n>> ------------------------------\r\n>> *From:* James Trevey <jtrevey@forgenano.com>\r\n>> *Sent:* Wednesday, September 24, 2025 10:49 AM\r\n>> *To:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n>> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n>> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n>> Rick Mislan <rick@mavrix.one>\r\n>> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>>\r\n>> Jordan,\r\n>>\r\n>> Unfortunately, there is not a large prismatic on our list. I could\r\n>> potentially license a design to make one, but it would take a lot of\r\n>> coordinating.\r\n>>\r\n>> It would be super helpful if you are able to compile a deck for us which\r\n>> has your prospective cell demand schedule now and for the next few years,\r\n>> as well as what your qualification schedule looks like (maybe program\r\n>> based?). Maybe by cell type?\r\n>>\r\n>> I also have a verbal matter we can discuss soon. Once I\'ve got the deck\r\n>> ready I\'ll find time for a short call with you.\r\n>>\r\n>> Talk soon.\r\n>>\r\n>> James\r\n>> ------------------------------\r\n>> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n>> *Sent:* Wednesday, September 24, 2025 10:07 AM\r\n>> *To:* James Trevey <jtrevey@forgenano.com>\r\n>> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n>> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n>> Rick Mislan <rick@mavrix.one>\r\n>> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>>\r\n>> Hi James,\r\n>>\r\n>> Thank you for the follow up.  You were on my list to contact today!\r\n>>\r\n>> Would that additional product list include a prismatic cell? I have a\r\n>> client who needs 150MWh a year and they want a domestic 314Ah cell...\r\n>>\r\n>> I will let you know if I will be able to make it up to Detroit for The\r\n>> Battery Show.\r\n>>\r\n>> Looking forward to seeing the deck.\r\n>>\r\n>> All the best,\r\n>>\r\n>>\r\n>> Jordan G. Wroblewski\r\n>>\r\n>> Partner | President\r\n>>\r\n>> Lithium Battery Company\r\n>>\r\n>> Direct: (917) 266-5336\r\n>>\r\n>> *jordan@lithiumbatterycompany.com\r\n>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>\r\n>> Lithium Battery Company\r\n>> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&typo=1>\r\n>>\r\n>>\r\n>> On Wed, Sep 24, 2025 at 11:59 AM James Trevey <jtrevey@forgenano.com>\r\n>> wrote:\r\n>>\r\n>> Hey Jordan,\r\n>>\r\n>> Thank you for the quick follow up.\r\n>>\r\n>> I am working on a compiled deck for you to address the below requests and\r\n>> aiming for end of this week. After speaking with my team, we\'ve decided\r\n>> we\'d like to provide information on additional products to you which are\r\n>> typically not on the menu but I have details to sort first.\r\n>>\r\n>> Regarding shows, happy to discuss when ready. We\'ll be at The Battery\r\n>> Show in 2 weeks, which I think you should consider attending and I\'d be\r\n>> happy to connect while there.\r\n>>\r\n>> James\r\n>> ------------------------------\r\n>> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n>> *Sent:* Thursday, September 18, 2025 11:03 AM\r\n>> *To:* James Trevey <jtrevey@forgenano.com>\r\n>> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n>> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n>> Rick Mislan <rick@mavrix.one>\r\n>> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>>\r\n>> Hi James,\r\n>>\r\n>>\r\n>> Thank you for continuing discussions regarding our strategic partnership.\r\n>> As we prepare for module and pack production to support your battery cell\r\n>> needs, we would appreciate your assistance in providing several key pieces\r\n>> of information to optimize our collaboration and planning:\r\n>>\r\n>> Please share detailed volume forecasts for each cell type (e.g., 18650,\r\n>> 21700) you expect to require over the next 1–5 years, broken out by project\r\n>> or customer segment where feasible.\r\n>>\r\n>> Indicate your anticipated ramp-up schedule for sample, engineering, and\r\n>> production volumes to help us align our development and manufacturing\r\n>> timelines.\r\n>>\r\n>> Identify any major offtake agreements, anchor customers, or significant\r\n>> opportunities in your commercial pipeline that could impact forecasted\r\n>> demand for modules or packs.\r\n>>\r\n>> Outline target applications (energy storage, drones, EVs, DOD, etc.) and\r\n>> specify any technical or certification requirements for modules/packs\r\n>> related to these segments.\r\n>>\r\n>> Clarify your minimum order quantities and expected pricing for each\r\n>> product line.\r\n>>\r\n>> Please also provide information about any flexibility in volume\r\n>> commitments that may be necessary in case project requirements or customer\r\n>> needs adjust mid-term.\r\n>>\r\n>> Importantly, we would like to request information on any current or\r\n>> forthcoming cells with a minimum continuous discharge rating of 15C or\r\n>> higher. For these cells, please provide specifications, target\r\n>> applications, anticipated volume requirements, forecasted commercial\r\n>> timelines, and expected pricing.\r\n>>\r\n>> Additionally, for reference, these are LBC’s most popular cells we\'ve\r\n>> made module and packs for:\r\n>>\r\n>> 18650:\r\n>>\r\n>> NMC: TNL-ITR18650-2600P\r\n>>\r\n>> LFP: SW18650-26HPA\r\n>>\r\n>> LFP: IFR18650-2000mAh\r\n>>\r\n>> 21700:\r\n>>\r\n>> NMC: INR21700-50S\r\n>>\r\n>> NMC: INR21700-4000\r\n>>\r\n>> Providing this information will enable LBC to ensure maximum alignment,\r\n>> timely scale-up, and the most competitive solutions to support your growth\r\n>> across all high-value sectors.\r\n>>\r\n>> In terms of the shows you mentioned, we are getting our schedules aligned\r\n>> so we can attend.  What\'s the \"secret meeting\" in Nov?\r\n>>\r\n>> We look forward to your prompt response so we can efficiently move to the\r\n>> next stages.\r\n>>\r\n>>\r\n>> Talk soon,\r\n>>\r\n>> Jordan G. Wroblewski\r\n>>\r\n>> Partner | President\r\n>>\r\n>> Lithium Battery Company\r\n>>\r\n>> Direct: (917) 266-5336\r\n>>\r\n>> *jordan@lithiumbatterycompany.com\r\n>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>\r\n>> Lithium Battery Company\r\n>> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&typo=1>\r\n>>\r\n>>\r\n>> On Wed, Sep 17, 2025 at 7:00 PM James Trevey <jtrevey@forgenano.com>\r\n>> wrote:\r\n>>\r\n>> Jordan,\r\n>>\r\n>> Thanks for moving quickly here. I got bogged down today but better late\r\n>> than never.\r\n>>\r\n>> Attached you\'ll find data sheets for all (5) of our products, including\r\n>> both 18650 and 21700. Below is a quick summary:\r\n>>\r\n>>\r\n>>    - SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation\r\n>>    (they won\'t tell us the application)\r\n>>    - This cell has a 100% US supply chain already\r\n>>       - This cell can be made in the * millions* next year by our\r\n>>       partner in the EU, until our factory is online in 2027\r\n>>       - SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse\r\n>>    engineered from MIL-PRF-32383)\r\n>>    - This cell is 50% US and 50% non-FEOC currently\r\n>>       - This cell can be made in the * millions *next year by our\r\n>>       partner in the EU, until our factory is online in 2027\r\n>>       - SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche\r\n>>    EVs.\r\n>>    - This cell is 50% US and 50% non-FEOC currently\r\n>>       - This cell can be made in the * thousands* next year by our\r\n>>       partner in the EU, until our factory is online in 2027\r\n>>       - SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum\r\n>>    case and tabless design, super lightweight)\r\n>>    - This cell is 50% US and 50% non-FEOC currently\r\n>>       - This cell can be made in the * millions* next year by our\r\n>>       partner in the EU. As we show adoption, we\'ll expand our factory to build\r\n>>       these\r\n>>       - SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse\r\n>>    engineered from MIL-PRF-32565)\r\n>>    - This cell is 50% US and 50% non-FEOC currently\r\n>>       - This cell can be made in the * thousands* next year by our\r\n>>       partner in the EU, until our factory is online in 2027\r\n>>\r\n>>\r\n>> We can also get 80mmx300mm pouch cells made by our EU partner, if needed.\r\n>>\r\n>> Regarding the term sheet, please see the attached template that I put\r\n>> together but needs input from you all.\r\n>>\r\n>> Maybe we line up another discussion for next week to continue our\r\n>> alignment path? Also, are any of you planning to attend The Battery Show in\r\n>> Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores\r\n>> in Nashville? in October? Or the secret meeting on November 5th in DC?\r\n>>\r\n>> I will check with my people on 301 asap.\r\n>>\r\n>> I look forward to our next communication.\r\n>>\r\n>> James\r\n>>\r\n>>\r\n>> ------------------------------\r\n>> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n>> *Sent:* Wednesday, September 17, 2025 7:56 AM\r\n>> *To:* James Trevey <jtrevey@forgenano.com>; Daniel <\r\n>> dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan\r\n>> Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\n>> *Subject:* Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>>\r\n>> Gentlemen,\r\n>>\r\n>> It was a pleasure connecting with you yesterday. I am very excited about\r\n>> the potential for a partnership between our companies. To maintain the\r\n>> momentum from our discussion, I\'ve outlined the key action items below:\r\n>>\r\n>>\r\n>>    - James to send the cell specification sheets as soon as possible.\r\n>>    - LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for\r\n>>    benchmarking purposes.\r\n>>    - James to send their term sheet template for throughput contracts.\r\n>>    - We should discuss 301 exclusion support for manufacturing equipment.\r\n>>\r\n>>\r\n>> I look forward to our next conversation.\r\n>>\r\n>> Best,\r\n>>\r\n>> Jordan G. Wroblewski\r\n>>\r\n>> Partner | President\r\n>>\r\n>> Lithium Battery Company\r\n>>\r\n>> Direct: (917) 266-5336\r\n>>\r\n>> *jordan@lithiumbatterycompany.com\r\n>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>\r\n>> Lithium Battery Company\r\n>> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&typo=1>\r\n>>\r\n>> <ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes\r\n>> (1).csv>\r\n>>\r\n>>',0,0,0,0,0,0,'2025-11-06 19:05:42','2025-12-09 19:30:48','2025-12-09 19:30:48','2025-12-09 19:30:48',NULL,NULL,NULL),
(928,4,' <PH2P110MB0796C4C275DAD69A2EEACFFBD0C2A@PH2P110MB0796.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'DPI Introduction','barry@dpiuav.com','Barry Phillips','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Segoe UI\";\r\n	panose-1:2 11 5 2 4 2 4 2 2 3;}\r\n@font-face\r\n	{font-family:\"Freestyle Script\";\r\n	panose-1:3 8 4 2 3 2 5 11 4 4;}\r\n@font-face\r\n	{font-family:\"Arial Nova Light\";}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.gmailquote, li.gmailquote, div.gmailquote\r\n	{mso-style-name:gmail_quote;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmailon;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.me-email-text\r\n	{mso-style-name:me-email-text;}\r\nspan.me-email-text-secondary\r\n	{mso-style-name:me-email-text-secondary;}\r\nspan.EmailStyle22\r\n	{mso-style-type:personal-compose;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">DPI’s introduction and discussion about our product line.<o:p></o:p></span></p>\r\n<div>\r\n<div>\r\n<div style=\"margin-bottom:.25in;overflow:hidden\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">________________________________________________________________________________<o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:9.0pt\">\r\n<p class=\"MsoNormal\"><span class=\"me-email-text\"><b><span style=\"font-size:18.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">Microsoft Teams</span></b></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<a href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\"><span style=\"font-size:10.5pt;color:#5B5FC7\">Need help?</span></a>\r\n<o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:4.5pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\"><a href=\"https://gov.teams.microsoft.us/l/meetup-join/19%3agcch%3ameeting_648a7638fb1442c78154430401863565%40thread.v2/0?context=%7b%22Tid%22%3a%221c84fc53-749d-4fba-8afb-153d00e6dde0%22%2c%22Oid%22%3a%221efc1998-d3df-4ff0-8a4d-837f245fe19a%22%7d\" target=\"_blank\" title=\"Meeting join link\"><b><span style=\"font-size:15.0pt;color:#5B5FC7\">Join\r\n the meeting now</span></b></a> <o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:4.5pt\">\r\n<p class=\"MsoNormal\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">Meeting ID:\r\n</span></span><span class=\"me-email-text\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">992 928 332 67</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:24.0pt\">\r\n<p class=\"MsoNormal\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">Passcode:\r\n</span></span><span class=\"me-email-text\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">cA2dP369</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:9.0pt\">\r\n<div class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<hr size=\"1\" width=\"100%\" align=\"center\">\r\n</span></div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">For organizers:\r\n</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\"><a href=\"https://gov.teams.microsoft.us/meetingOptions/?organizerId=1efc1998-d3df-4ff0-8a4d-837f245fe19a&amp;tenantId=1c84fc53-749d-4fba-8afb-153d00e6dde0&amp;threadId=19_gcch_meeting_648a7638fb1442c78154430401863565@thread.v2&amp;messageId=0&amp;language=en-US\" target=\"_blank\"><span style=\"font-size:10.5pt;color:#5B5FC7\">Meeting\r\n options</span></a> <o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:.25in;overflow:hidden\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">________________________________________________________________________________<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">_____________________________________________<br>\r\n<b>From:</b> Rick &lt;rick@mavrix.one&gt; <br>\r\n<b>Sent:</b> Thursday, November 6, 2025 2:49 PM<br>\r\n<b>To:</b> Barry Phillips &lt;barry@dpiuav.com&gt;<br>\r\n<b>Cc:</b> Chuck Wythe &lt;chuckw@dpiuav.com&gt;; Joseph Pawelczyk &lt;joe@dpiuav.com&gt;; Michael Piasecki &lt;mike@dpiuav.com&gt;<br>\r\n<b>Subject:</b> RE: Dragonfly Pictures, Inc.<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Hi Barry!<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\">Yes that would be fine. &nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Please send an invite!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">Rick<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"144\" height=\"32\" style=\"width:1.5in;height:.3333in\" id=\"Picture_x0020_1\" src=\"cid:image001.jpg@01DC4F2C.FB6CF750\"></span><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"http://mavrix1.com/\">mavrix1.com</a><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">CONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient. &nbsp;If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may\r\n be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"gmailquote\"><span style=\"color:black\">On November 6, 2025 at 1:36:12</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"color:black\">PM, Barry Phillips (<a href=\"mailto:barry@dpiuav.com\">barry@dpiuav.com</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Mr. Mislan,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">I am responding on behalf of Mr. Piasecki, would you be available for a meeting with DPI at 9am Thursday morning NOV 13<sup>th</sup>, 2025?</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:20.0pt;font-family:&quot;Freestyle Script&quot;;mso-ligatures:standardcontextual\">Barry Phillips</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Engineering Manager</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Cell: 484-459-7997</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">DPI UAV Systems</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">600 West 2<sup>nd</sup> St.</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Essington PA 19029</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\">Extending Man\'s Reach with Unmanned Helicopters</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:#002060\"><img border=\"0\" width=\"222\" height=\"70\" style=\"width:2.3125in;height:.7291in\" id=\"_x0000_i1028\" src=\"file://private/var/mobile/Containers/Shared/AppGroup/A5EA8206-7AD4-4CB7-B85D-F604D42E26CF/Data/Local2/Attachments/900/image001.jpg@01DC4F22.2625DC10\" alt=\"DPI-logo-4-April28-blue-full\"></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;mso-ligatures:standardcontextual\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:9.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">This is an e-mail from DPI UAV Systems. It is for the intended recipient\r\n only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete\r\n the message and any attachments from your computer. Your cooperation is appreciated.</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;</span><a href=\"mailto:rick@mavrix.one\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">rick@mavrix.one</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, November 5, 2025 5:24 PM<br>\r\n<b>To:</b> Michael Piasecki &lt;</span><a href=\"mailto:mike@dpiuav.com\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">mike@dpiuav.com</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;<br>\r\n<b>Subject:</b> Re: Dragonfly Pictures, Inc.</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Michael,</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Yes completely remember you.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Want to schedule something for next week?</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Tuesday or Thursday mornings are best for me.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Let me know if you have a time in mind.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks!</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"_x0000_i1027\" src=\"file://private/var/mobile/Containers/Shared/AppGroup/A5EA8206-7AD4-4CB7-B85D-F604D42E26CF/Data/Local2/Attachments/900/image002.png@01DC4F22.2625DC10\"></span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://mavrix1.com/\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">https://mavrix1.com</span></a><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">CONFIDENTIALITY NOTICE</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI)\r\n protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of\r\n the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"airmailon\">On November 5, 2025 at 1:19:51<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM, Michael Piasecki (<a href=\"mailto:mike@dpiuav.com\">mike@dpiuav.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Dear Rick,\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">We met at the Army Marketplace event in Huntsville a while back. I drove you to the airport. If you wanted us to brief you on our portion of the market,\r\n we can do that. Otherwise, I wish you well on your excellent mission of increasing the manufacturing of relevant US military products at scale and in time enough.\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Respectfully,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Michael</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Michael Piasecki</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">President</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">DPI UAV Systems</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">600 W. 2<sup>nd</sup> St., Essington, PA 19029</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Office: (610) 521-6115 x 202</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Mobile: (215) 439-2036</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"http://www.dpiuav.com/\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#0563C1\">www.dpiuav.com</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://youtu.be/4ihY-IiAfXI\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#0563C1\">https://youtu.be/4ihY-IiAfXI</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\">Extending Man\'s Reach with Unmanned Helicopters</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060\"><img border=\"0\" width=\"222\" height=\"70\" style=\"width:2.3125in;height:.7291in\" id=\"_x0000_i1026\" src=\"file://private/var/mobile/Containers/Shared/AppGroup/A5EA8206-7AD4-4CB7-B85D-F604D42E26CF/Data/Local2/Attachments/900/image003.jpg@01DC4F22.2625DC10\" alt=\"DPI-logo-4-April28-blue-full\"></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">This is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential,\r\n proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments\r\n from your computer. Your cooperation is appreciated.</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','DPI’s introduction and discussion about our product line.\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://gov.teams.microsoft.us/l/meetup-join/19%3agcch%3ameeting_648a7638fb1442c78154430401863565%40thread.v2/0?context=%7b%22Tid%22%3a%221c84fc53-749d-4fba-8afb-153d00e6dde0%22%2c%22Oid%22%3a%221efc1998-d3df-4ff0-8a4d-837f245fe19a%22%7d>\r\nMeeting ID: 992 928 332 67\r\nPasscode: cA2dP369\r\n________________________________\r\nFor organizers: Meeting options<https://gov.teams.microsoft.us/meetingOptions/?organizerId=1efc1998-d3df-4ff0-8a4d-837f245fe19a&tenantId=1c84fc53-749d-4fba-8afb-153d00e6dde0&threadId=19_gcch_meeting_648a7638fb1442c78154430401863565@thread.v2&messageId=0&language=en-US>\r\n________________________________________________________________________________\r\n\r\n\r\n_____________________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Thursday, November 6, 2025 2:49 PM\r\nTo: Barry Phillips <barry@dpiuav.com>\r\nCc: Chuck Wythe <chuckw@dpiuav.com>; Joseph Pawelczyk <joe@dpiuav.com>; Michael Piasecki <mike@dpiuav.com>\r\nSubject: RE: Dragonfly Pictures, Inc.\r\n\r\nHi Barry!\r\nYes that would be fine.\r\nPlease send an invite!\r\nRick\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:image001.jpg@01DC4F2C.FB6CF750]\r\nmavrix1.com<http://mavrix1.com/>\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.\r\n\r\n\r\nOn November 6, 2025 at 1:36:12 PM, Barry Phillips (barry@dpiuav.com<mailto:barry@dpiuav.com>) wrote:\r\nMr. Mislan,\r\n\r\nI am responding on behalf of Mr. Piasecki, would you be available for a meeting with DPI at 9am Thursday morning NOV 13th, 2025?\r\n\r\nBarry Phillips\r\nEngineering Manager\r\nCell: 484-459-7997\r\nDPI UAV Systems\r\n600 West 2nd St.\r\nEssington PA 19029\r\n\r\nExtending Man\'s Reach with Unmanned Helicopters\r\n[DPI-logo-4-April28-blue-full]\r\n\r\nThis is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is appreciated.\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Wednesday, November 5, 2025 5:24 PM\r\nTo: Michael Piasecki <mike@dpiuav.com<mailto:mike@dpiuav.com>>\r\nSubject: Re: Dragonfly Pictures, Inc.\r\n\r\nHi Michael,\r\nYes completely remember you.\r\nWant to schedule something for next week?\r\nTuesday or Thursday mornings are best for me.\r\nLet me know if you have a time in mind.\r\nThanks!\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[X]\r\nhttps://mavrix1.com<https://mavrix1.com/>\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\nOn November 5, 2025 at 1:19:51 PM, Michael Piasecki (mike@dpiuav.com<mailto:mike@dpiuav.com>) wrote:\r\nDear Rick,\r\n\r\nWe met at the Army Marketplace event in Huntsville a while back. I drove you to the airport. If you wanted us to brief you on our portion of the market, we can do that. Otherwise, I wish you well on your excellent mission of increasing the manufacturing of relevant US military products at scale and in time enough.\r\n\r\nRespectfully,\r\nMichael\r\n\r\n\r\nMichael Piasecki\r\nPresident\r\nDPI UAV Systems\r\n600 W. 2nd St., Essington, PA 19029\r\nOffice: (610) 521-6115 x 202\r\nMobile: (215) 439-2036\r\nwww.dpiuav.com<http://www.dpiuav.com/>\r\nhttps://youtu.be/4ihY-IiAfXI\r\n\r\n\r\nExtending Man\'s Reach with Unmanned Helicopters\r\n[DPI-logo-4-April28-blue-full]\r\n\r\nThis is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is appreciated.\r\n\r\n',0,0,0,0,0,0,'2025-11-06 19:52:36','2025-12-09 19:30:49','2025-12-09 19:30:49','2025-12-09 19:30:49',NULL,NULL,NULL),
(929,4,'<CAGOCFXhp-hMJns9FQL7B65Rmh5i0Fi4a0A8uJjxZPHj0-2VeFw@mail.gmail.com>',NULL,NULL,'Equipment Specs and Power Requirements','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Good Afternoon, Rick,</div><div><br></div><div>I am attaching the assembly equipment specifications and power requirements for your review.</div><div><br></div><div>For our large prismatic line, the factory advised us to have 65kW power at 380V. To clarify this, consider it like a car: the engine might be rated for 300 horsepower (peak), but on average, you only use about 50 horsepower when driving (actual consumption).</div><div><br></div><div>The 65kW rating ensures that our electrical system can handle brief power spikes, such as when laser welders are operating. However, your continuous consumption and electricity costs will be based on an average usage of approximately 19kW.</div><div><br></div><div>Here is the math in simple terms:</div><div>*   Each module stores: 16 cells × 3.2V × 314Ah = 16.1 kWh of energy</div><div>*   Energy required to assemble one module: Approximately 2% of the module&#39;s energy = 0.32 kWh (This covers welding, conveying, testing, computers, etc.)</div><div>*   For 60 modules/hour: 60 × 0.32 kWh = 19.2 kW average draw</div><div><br></div><div>This approach can also be applied to the other lines discussed previously.</div><div><br></div><div>Please let me know if you have any questions.</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div>','Good Afternoon, Rick,\r\n\r\nI am attaching the assembly equipment specifications and power requirements\r\nfor your review.\r\n\r\nFor our large prismatic line, the factory advised us to have 65kW power at\r\n380V. To clarify this, consider it like a car: the engine might be rated\r\nfor 300 horsepower (peak), but on average, you only use about 50 horsepower\r\nwhen driving (actual consumption).\r\n\r\nThe 65kW rating ensures that our electrical system can handle brief power\r\nspikes, such as when laser welders are operating. However, your continuous\r\nconsumption and electricity costs will be based on an average usage of\r\napproximately 19kW.\r\n\r\nHere is the math in simple terms:\r\n* Each module stores: 16 cells × 3.2V × 314Ah = 16.1 kWh of energy\r\n* Energy required to assemble one module: Approximately 2% of the module\'s\r\nenergy = 0.32 kWh (This covers welding, conveying, testing, computers, etc.)\r\n* For 60 modules/hour: 60 × 0.32 kWh = 19.2 kW average draw\r\n\r\nThis approach can also be applied to the other lines discussed previously.\r\n\r\nPlease let me know if you have any questions.\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>',0,0,0,0,0,0,'2025-11-06 21:51:32','2025-12-09 19:30:52','2025-12-09 19:30:52','2025-12-09 19:30:52',NULL,NULL,NULL),
(930,4,'<CAGOCFXi6LDT5Z0gCVD-yVMNcABH9Ou6S-UMrVw6Vx+aH1gugKg@mail.gmail.com>',NULL,NULL,'Fwd: 5201 South West Shore Boulevard Tampa FL 33611','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Below is the email for the A/C Quote for the 3 Suites from Advanced Roofing.   Let me know what you think, and we can get them out to do a formal quote, and we can negotiate that cost down.  I think its coming in fairly average priced.  </div><div><br></div><div><div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><b>Cost Breakdown:</b></div><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px\"><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0);direction:ltr\"><div role=\"presentation\" style=\"direction:ltr\">Overall budget: ~$10–$15 per square foot</div></li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0);direction:ltr\"><div role=\"presentation\" style=\"direction:ltr\">Per ton installed: ~$6k–$9k (includes equipment, rigging/crane, roof stands/curbs/flashings, ductwork, electrical, plumbing, controls, permits, and start-up)</div></li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0);direction:ltr\"><div role=\"presentation\" style=\"direction:ltr\">Per-suite estimate: ~$250k–$375k</div></li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0);direction:ltr\"><div role=\"presentation\" style=\"direction:ltr\">Total for three suites: ~$750k–$1.125M</div></li></ul><div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><br></div><div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\"><b>Assumptions</b>:</div><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px\"><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0);direction:ltr\"><div role=\"presentation\" style=\"direction:ltr\">Each 25,000-SF suite requires ~40–45 tons of cooling, plus a DOAS for outside air and humidity control.</div></li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0);direction:ltr\"><div role=\"presentation\" style=\"direction:ltr\">The roof/deck is concrete, so engineered roof stands/curbs and flashings are included.</div></li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0);direction:ltr\"><div role=\"presentation\" style=\"direction:ltr\">We&#39;ll verify available electrical service (ideally 480V 3-phase) during our site walk.</div></li></ul><br class=\"gmail-Apple-interchange-newline\"></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">Paul Murphy</strong> <span dir=\"auto\">&lt;<a href=\"mailto:PaulM@advancedairsystem.com\">PaulM@advancedairsystem.com</a>&gt;</span><br>Date: Thu, Nov 6, 2025 at 6:35 PM<br>Subject: Re: 5201 South West Shore Boulevard Tampa FL 33611<br>To: Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\">Nathan@lithiumbatterycompany.com</a>&gt;<br>Cc: Rob Kornahrens &lt;<a href=\"mailto:RobK@advancedroofing.com\">RobK@advancedroofing.com</a>&gt;, Anthony Viscomi &lt;<a href=\"mailto:AnthonyV@advancedroofing.com\">AnthonyV@advancedroofing.com</a>&gt;<br></div><br><br><div class=\"msg-869676857235650207\">\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nHi Nathan, </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nThank you for those details and reaching out to us about this turnkey HVAC solution.\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nTo provide a rough order of magnitude (ROM) for a system that will keep your space comfortable year-round and manage humidity with a dedicated outside-air system (DOAS), please consider the following:\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<b>Cost Breakdown:</b></div>\r\n<ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0);direction:ltr\">\r\n<div style=\"direction:ltr\" role=\"presentation\">Overall budget: ~$10–$15 per square foot\r\n</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0);direction:ltr\">\r\n<div style=\"direction:ltr\" role=\"presentation\">Per ton installed: ~$6k–$9k (includes equipment, rigging/crane, roof stands/curbs/flashings, ductwork, electrical, plumbing, controls, permits, and start-up)\r\n</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0);direction:ltr\">\r\n<div style=\"direction:ltr\" role=\"presentation\">Per-suite estimate: ~$250k–$375k\r\n</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0);direction:ltr\">\r\n<div style=\"direction:ltr\" role=\"presentation\">Total for three suites: ~$750k–$1.125M\r\n</div>\r\n</li></ul>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<b>Assumptions</b>:</div>\r\n<ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0);direction:ltr\">\r\n<div style=\"direction:ltr\" role=\"presentation\">Each 25,000-SF suite requires ~40–45 tons of cooling, plus a DOAS for outside air and humidity control.\r\n</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0);direction:ltr\">\r\n<div style=\"direction:ltr\" role=\"presentation\">The roof/deck is concrete, so engineered roof stands/curbs and flashings are included.\r\n</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0);direction:ltr\">\r\n<div style=\"direction:ltr\" role=\"presentation\">We&#39;ll verify available electrical service (ideally 480V 3-phase) during our site walk.\r\n</div>\r\n</li></ul>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nIf the proposed budget seems feasible for your company, please provide the following details so we can finalize the load calculations and prepare a firm proposal:</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<ol style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-type:decimal\" start=\"1\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0);direction:ltr\">\r\n<div style=\"direction:ltr\" role=\"presentation\"><b>Target Indoor Conditions</b></div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0);direction:ltr\">\r\n<div style=\"direction:ltr\" role=\"presentation\">Preferred temperature (typical warehouse: 74–78°F)\r\n</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0);direction:ltr\">\r\n<div style=\"direction:ltr\" role=\"presentation\">Preferred humidity (we recommend 50–55% RH for Florida warehouses to avoid condensation and “clammy” conditions)\r\n</div>\r\n</li></ul>\r\n</ol>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<ol style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-type:decimal\" start=\"1\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0);direction:ltr\">\r\n<div style=\"direction:ltr\" role=\"presentation\"><b>Intended Use of Each Suite</b></div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0);direction:ltr;margin-left:0px\">\r\n<div style=\"direction:ltr\" role=\"presentation\">Storage only, light assembly/production, packaging, offices/mezzanines?\r\n</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0);direction:ltr\">\r\n<div style=\"direction:ltr\" role=\"presentation\">Approximate headcount &amp; hours of operation\r\n</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0);direction:ltr\">\r\n<div style=\"direction:ltr\" role=\"presentation\">Number of dock doors and frequency of use\r\n</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0);direction:ltr\">\r\n<div style=\"direction:ltr\" role=\"presentation\">Any process heat (chargers, machinery, IT rooms), special filtration, or exhaust requirements\r\n</div>\r\n</li></ul>\r\n</ol>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nPlease let me know if you need clarification or wish to discuss options further. Looking forward to your feedback, and happy to address any questions you may have.\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"m_-869676857235650207Signature\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nThank you,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<b>Paul Murphy</b></div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif\">\r\n<span style=\"font-size:11pt;color:rgb(0,0,0)\"><i>Vice President</i> |</span><span style=\"font-size:11pt;color:rgb(237,92,87)\">\r\n</span><span style=\"font-size:11pt;color:rgb(200,38,19)\"><b>Advanced Air Systems<br>\r\n</b></span><span style=\"font-size:11pt;color:rgb(0,0,0)\"><i>Certified Mechanical Contractor</i> </span><span style=\"font-size:14.6667px;color:rgb(0,0,0);background-color:rgb(255,255,255)\">|\r\n</span><span style=\"font-size:11pt;color:rgb(0,0,0)\"><b>Lic. #CMC1251466</b></span></div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nE: PaulM@AdvancedAirSystem.com</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nO: 954-332-1418 x 1620</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nM: 321-482-0546</div>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div id=\"m_-869676857235650207divRplyFwdMsg\">\r\n<div style=\"direction:ltr;font-family:Calibri,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<b>From:</b> Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Thursday, November 6, 2025 5:18 PM<br>\r\n<b>To:</b> Paul Murphy &lt;<a href=\"mailto:PaulM@advancedairsystem.com\" target=\"_blank\">PaulM@advancedairsystem.com</a>&gt;<br>\r\n<b>Cc:</b> Rob Kornahrens &lt;<a href=\"mailto:RobK@advancedroofing.com\" target=\"_blank\">RobK@advancedroofing.com</a>&gt;; Anthony Viscomi &lt;<a href=\"mailto:AnthonyV@advancedroofing.com\" target=\"_blank\">AnthonyV@advancedroofing.com</a>&gt;<br>\r\n<b>Subject:</b> Re: 5201 South West Shore Boulevard Tampa FL 33611</div>\r\n<div style=\"direction:ltr\"> </div>\r\n</div>\r\n<div style=\"direction:ltr\">We have three individual suites broken up into 25,000 sq feet each with divider walls in between.  The entire place including the roof is concrete.  </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Hope this helps. <br>\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<table style=\"direction:ltr;border-width:medium;border-style:initial;border-color:initial;color:rgb(0,0,0);border-collapse:collapse;border-spacing:0px;box-sizing:border-box\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial\">\r\n<table style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;border-collapse:collapse;border-spacing:0px;box-sizing:border-box\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:1px;border-style:solid;border-color:rgb(226,226,226);border-radius:5px;padding:3px 8px 8px;vertical-align:top\" align=\"left\">\r\n<table style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;border-collapse:collapse;border-spacing:0px;box-sizing:border-box\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;padding-top:5px\">\r\n<span style=\"font-family:Inter,sans-serif;font-size:10px;color:rgb(0,0,0)\"><a id=\"m_-869676857235650207OWAa9a322d5-8bb6-bd2d-6272-1064aeb019e4\" href=\"https://linkprotect.cudasvc.com/url?a=https%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,Kzp8QygELot-oeCk_MMNVHN093EJchtmz8NjS40aRJShuHbD960xmEmZVQRDvyG4PokbTTsELiQJw_U4T9ppYETHi-n2-MT4fpWpE_JlsZWb9GethQ,,&amp;typo=1\" target=\"_blank\"><img style=\"width:24px;display:block\" width=\"24\" src=\"https://linkprotect.cudasvc.com/url?a=https%3a%2f%2fapp.customesignature.com%2fimages%2fsocial%2fanimation%2f4%2fweb-icon.gif&amp;c=E,1,_H-2riwtbuMY6qWT2MZ8hU3QerXs_rDPAVgugdETmhrxfqSiIHPB3y4y0pSCiAnx2zshrdQiHmrsz5T9rdqNqJri91XQGkRN0mDD8bWKgGcUWcU8MQURKFP40Q,,&amp;typo=1\"></a></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;padding-top:5px\">\r\n<span style=\"font-family:Inter,sans-serif;font-size:10px;color:rgb(0,0,0)\"><a id=\"m_-869676857235650207OWA1d78c855-1515-d202-882b-49e9ca774f2e\" href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img style=\"width:24px;display:block\" width=\"24\" src=\"https://linkprotect.cudasvc.com/url?a=https%3a%2f%2fapp.customesignature.com%2fimages%2fsocial%2fanimation%2f4%2finsta-icon.gif&amp;c=E,1,3df3juNj_cKTOx6Y4AFSkotHRSpVvaVRpSbJCn4kCxPleZBBXKiivLrZ4lfqy6lOvuIAguCTSJBvc5mLG58DM7BWa3B-6WjJs6WKk7h76In8DkU4WMhU9eY,&amp;typo=1\"></a></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;padding-top:5px\">\r\n<span style=\"font-family:Inter,sans-serif;font-size:10px;color:rgb(0,0,0)\"><a id=\"m_-869676857235650207OWA6aa6e963-1e3b-23b1-52e5-f10ecffc15cc\" href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img style=\"width:24px;display:block\" width=\"24\" src=\"https://linkprotect.cudasvc.com/url?a=https%3a%2f%2fapp.customesignature.com%2fimages%2fsocial%2fanimation%2f4%2flinkedin-icon.gif&amp;c=E,1,Z16UvN6rN8gMECvH8CKrw7YT-vRBVKiQl1TscGmpBFzJ8iaJqWa9DK5rKbTjziaPaLpNxcalR_3Uo5V5WvtCM2UnjpNZ8O97O-90CAcyshrtBy-IOChAWEUf&amp;typo=1\"></a></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;padding-top:5px\">\r\n<span style=\"font-family:Inter,sans-serif;font-size:10px;color:rgb(0,0,0)\"><a id=\"m_-869676857235650207OWA9d2fbb01-dcb4-a165-98bf-6f5b5138911c\" href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img style=\"width:24px;display:block\" width=\"24\" src=\"https://linkprotect.cudasvc.com/url?a=https%3a%2f%2fapp.customesignature.com%2fimages%2fsocial%2fanimation%2f4%2ffacebook-icon.gif&amp;c=E,1,2rOMkfp8dydYiiDJE8NSkpI7oIhaLs-hEbTEEyL6XMCHb6UCK0PoOqW_tTGtCyiEalZNi6s5b2kvdVxahkOfsaf05hLi_SAJk5JEZLhelPYUWI_6l65Jrw,,&amp;typo=1\"></a></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;padding-top:5px\">\r\n<span style=\"font-family:Inter,sans-serif;font-size:10px;color:rgb(0,0,0)\"><a id=\"m_-869676857235650207OWA68cb79c2-e445-2850-0303-96fd77dc2544\" href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img style=\"width:24px;display:block\" width=\"24\" src=\"https://linkprotect.cudasvc.com/url?a=https%3a%2f%2fapp.customesignature.com%2fimages%2fsocial%2fanimation%2f4%2fyoutube-icon.gif&amp;c=E,1,eLt-y9PRDLkSuqEVNDC-279TpXxBZ45afRG82D4uz2M13Np4M095WALKfLWW3SIHbWaK1AQwcHgx78pco8DnO5gmjqz6PWw45B-iZjwWXNBk5ih5_QZR&amp;typo=1\"></a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;width:8px\">\r\n<div style=\"direction:ltr;line-height:16px;font-family:Inter,sans-serif;font-size:10px;color:rgb(0,0,0)\">\r\n </div>\r\n</td>\r\n<td style=\"direction:ltr;line-height:16px;border-width:1px;border-style:solid;border-color:rgb(226,226,226);border-radius:5px;padding:15px;vertical-align:top\" align=\"left\">\r\n<table style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;width:100%;border-collapse:collapse;border-spacing:0px;box-sizing:border-box\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;vertical-align:middle\" align=\"left\">\r\n<table style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;width:100%;border-collapse:collapse;border-spacing:0px;box-sizing:border-box\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial\">\r\n<span style=\"font-family:Inter,sans-serif;font-size:10px;color:rgb(0,0,0)\"><a id=\"m_-869676857235650207OWA31960e3e-4240-ef17-3e69-bf62e0ce33f9\" href=\"https://linkprotect.cudasvc.com/url?a=https%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,T1q598eZPlewf4e_wY9q8dDUp_LY2wSl3OnQR8mCVeQsyNAHzDgAJcmKHh4uxVeRblYxciYPfisw3ppCAD6-_1TZxo4M22uR7fBK6AxXmAw,&amp;typo=1\" target=\"_blank\"><img style=\"width:170px;display:block\" width=\"170\" src=\"https://linkprotect.cudasvc.com/url?a=https%3a%2f%2fapp.customesignature.com%2fupload%2fsignature%2f11122%2f11122.png&amp;c=E,1,pBZUq73WuWww2qvLW0hUwvVs069r2w3gseB22Ic5FaJiNOp8VMHBFuZJgqiK3hFq_fhppW1I9uj1sgt0QBrE11NgpD-aJxYSH2UwZ3kUPK-q8h8TjHjmyDg-eA,,&amp;typo=1\"></a></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;padding-bottom:10px\">\r\n<table style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;border-collapse:collapse;border-spacing:0px;box-sizing:border-box\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;padding-top:15px\">\r\n<table style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;border-collapse:collapse;border-spacing:0px;box-sizing:border-box\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;vertical-align:middle\" align=\"left\">\r\n<div style=\"direction:ltr;line-height:16px;font-family:Inter,sans-serif;font-size:20px;color:rgb(0,0,0)\">\r\n<b>NATHAN A. STARON</b></div>\r\n</td>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;padding-left:5px;vertical-align:middle\" align=\"left\">\r\n<span style=\"font-family:Inter,sans-serif;font-size:10px;color:rgb(0,0,0)\"><img style=\"width:15px;height:15px;display:block\" height=\"15\" width=\"15\" src=\"https://linkprotect.cudasvc.com/url?a=https%3a%2f%2fapp.customesignature.com%2fimages%2fverify.gif&amp;c=E,1,gyBIhhT-geI2BBIIlFjD3JCEePerK9TZVfe0Ne9-6ocEmHdJuoGD7HPNP0gVjc2vwqJ-BKQTxunapgOQlJqRqMaueAI-iB3VFkwPhEeWP8K9eRK1p6F-6UC1rFeP&amp;typo=1\"></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial\">\r\n<div style=\"direction:ltr;line-height:16px;font-family:Inter,sans-serif;font-size:12px;color:rgb(0,0,0)\">\r\nFounder / CEO</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial\">\r\n<div style=\"direction:ltr;line-height:16px;font-family:Inter,sans-serif;font-size:12px;color:rgb(0,0,0)\">\r\n<b>Lithium Battery Company</b></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial\">\r\n<div style=\"direction:ltr;line-height:16px;font-family:Inter,sans-serif;color:rgb(0,0,0)\">\r\n<span style=\"font-size:12px\"><b>Cell Phone</b></span><span style=\"font-size:10px\"> </span><span style=\"font-size:12px\"><a style=\"color:rgb(0,0,0)\" id=\"m_-869676857235650207OWA09222463-883e-6b22-e7ad-9fadebac2481\" href=\"tel:813-504-0074\" target=\"_blank\">813-504-0074</a></span></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial\">\r\n<div style=\"direction:ltr;line-height:16px;font-family:Inter,sans-serif;color:rgb(0,0,0)\">\r\n<span style=\"font-size:12px\"><b>Phone</b></span><span style=\"font-size:10px\"> </span><span style=\"font-size:12px\"><a style=\"color:rgb(0,0,0)\" id=\"m_-869676857235650207OWA4065a378-7eb7-8f16-4c79-877d0fbbeacc\" href=\"tel:844-GET-LITHIUM\" target=\"_blank\">844-GET-LITHIUM</a></span></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial\">\r\n<div style=\"direction:ltr;line-height:16px;font-family:Inter,sans-serif;font-size:10px;color:rgb(0,0,0)\">\r\n<a style=\"color:rgb(0,0,0)\" id=\"m_-869676857235650207OWAfe0be4c1-f6b4-9329-f97e-81a5dce93203\" href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;padding-top:5px\">\r\n<table style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;border-collapse:collapse;border-spacing:0px;box-sizing:border-box\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial\">\r\n<div style=\"direction:ltr;line-height:16px;font-family:Inter,sans-serif;font-size:12px;color:rgb(255,255,255)\">\r\n<span style=\"background-color:rgb(0,0,0);line-height:14px\"><b><a style=\"color:rgb(255,255,255);display:inline-block;padding:4px 15px;background-color:rgb(0,0,0);text-align:center\" id=\"m_-869676857235650207OWA61f2afb4-b48e-8bce-1d80-15285175ceb2\" href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" target=\"_blank\">Schedule\r\n A Zoom</a></b></span></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial\">\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;padding-left:15px;vertical-align:middle\" align=\"left\">\r\n<div style=\"direction:ltr;line-height:16px;max-height:0px;font-family:Inter,sans-serif;font-size:10px;color:rgb(0,0,0)\">\r\n<img style=\"width:140px;border-radius:10px;display:block\" width=\"140\" src=\"https://linkprotect.cudasvc.com/url?a=https%3a%2f%2fapp.customesignature.com%2fupload%2fsignature%2fprofile%2f1738708307-11122.jpg&amp;c=E,1,7gH6Vq7NombV76H1KCrtnzwQVKqYGKbAVmcpOHh-fJhMb7-T_aCU5Y0A0Dx_rdj2n5OoQMZ_r_r8rDEpJAVP_y6kOL76KRk_CwmqWROhi65mJGRqLRD_&amp;typo=1\"></div>\r\n<div style=\"direction:ltr;line-height:16px;font-family:Inter,sans-serif;font-size:10px;color:rgb(0,0,0)\">\r\n<img style=\"width:140px;border-radius:10px;display:block\" width=\"140\" src=\"https://linkprotect.cudasvc.com/url?a=https%3a%2f%2fapp.customesignature.com%2f%2fupload%2fsignature%2fgifs%2fgiphyy-1.gif&amp;c=E,1,U5bSiTHKOy-9Wr2C_cFMSxPdKwi7lXgwgiXFTGJhnuc0Fwd2Kv4hthOUeL69NX1vuDuWogcVqeHvmVBOh5FXTXL4ZFCRST-smcDw8qiSTQ,,&amp;typo=1\"></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;border-width:medium;border-style:initial;border-color:initial;vertical-align:top\" align=\"left\">\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;border-width:medium;border-style:initial;border-color:initial;padding-top:10px\">\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<div><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Thu, Nov 6, 2025 at 5:15 PM Paul Murphy &lt;<a id=\"m_-869676857235650207OWAce5ed4cd-64fc-7ddb-a077-2a03fd9c9249\" href=\"mailto:PaulM@advancedairsystem.com\" target=\"_blank\">PaulM@advancedairsystem.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nHello Rob,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nWe can certainly provide a quote, but we have a couple of questions first. Is there existing HVAC equipment that needs replacement, or is this for conditioning a space that has never been conditioned before? The costs between these two scenarios differ significantly.</div>\r\n<div id=\"m_-869676857235650207x_m_-1793968941571215496Signature\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nThank you,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<b>Paul Murphy</b></div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif\">\r\n<span style=\"font-size:11pt;color:rgb(0,0,0)\"><i>Vice President</i> |</span><span style=\"font-size:11pt;color:rgb(237,92,87)\">\r\n</span><span style=\"font-size:11pt;color:rgb(200,38,19)\"><b>Advanced Air Systems<br>\r\n</b></span><span style=\"font-size:11pt;color:rgb(0,0,0)\"><i>Certified Mechanical Contractor</i> </span><span style=\"font-size:14.6667px;color:rgb(0,0,0);background-color:rgb(255,255,255)\">|\r\n</span><span style=\"font-size:11pt;color:rgb(0,0,0)\"><b>Lic. #CMC1251466</b></span></div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nE: PaulM@AdvancedAirSystem.com</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nO: 954-332-1418 x 1620</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nM: 321-482-0546</div>\r\n</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div style=\"direction:ltr;font-family:Calibri,sans-serif;font-size:11pt;color:rgb(0,0,0)\" id=\"m_-869676857235650207x_m_-1793968941571215496divRplyFwdMsg\">\r\n<b>From:</b> Rob Kornahrens &lt;<a id=\"m_-869676857235650207OWA85d6375d-6210-1fc3-8d47-78c2ea2c05f9\" href=\"mailto:RobK@advancedroofing.com\" target=\"_blank\">RobK@advancedroofing.com</a>&gt;<br>\r\n<b>Sent:</b> Thursday, November 6, 2025 12:14 PM<br>\r\n<b>To:</b> Nathan Staron &lt;<a id=\"m_-869676857235650207OWA1bb46221-99c2-03f8-30ee-10c6cb6f08a4\" href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Cc:</b> Anthony Viscomi &lt;<a id=\"m_-869676857235650207OWAdb1e9e6c-676d-80aa-a2b3-f48b33e51c68\" href=\"mailto:AnthonyV@advancedroofing.com\" target=\"_blank\">AnthonyV@advancedroofing.com</a>&gt;; Paul Murphy &lt;<a id=\"m_-869676857235650207OWA7b4ba3ab-fb4a-acc8-0d40-f6c07ae9266e\" href=\"mailto:PaulM@advancedairsystem.com\" target=\"_blank\">PaulM@advancedairsystem.com</a>&gt;</div>\r\n<div id=\"m_-869676857235650207x_m_-1793968941571215496divRplyFwdMsg\">\r\n<div style=\"direction:ltr;font-family:Calibri,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n<b>Subject:</b> Re: <a id=\"m_-869676857235650207OWA82b19005-4fa9-d970-0abd-c454a2c4bd9a\" href=\"https://www.google.com/maps/search/5201+South+West+Shore+Boulevard+Tampa+FL+33611?entry=gmail&amp;source=g\" target=\"_blank\">\r\n5201 South West Shore Boulevard Tampa FL 33611</a></div>\r\n<div style=\"direction:ltr\"> </div>\r\n</div>\r\n<div style=\"direction:ltr\">Paul Could you do quote on this?</div>\r\n<div style=\"direction:ltr\">Rob Kornahrens</div>\r\n<div style=\"direction:ltr\">President</div>\r\n<div style=\"direction:ltr\">Advanced Roofing, Inc</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<blockquote>\r\n<div style=\"direction:ltr\">On Nov 6, 2025, at 11:42 AM, Nathan Staron &lt;<a id=\"m_-869676857235650207OWA3ae9259d-8a3c-ecd3-482f-cb27ecbfa3b0\" href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:<br>\r\n<br>\r\n</div>\r\n</blockquote>\r\n<blockquote>\r\n<div style=\"direction:ltr\">﻿</div>\r\n<div style=\"direction:ltr\">Anthony,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">We had to change factory locations due to asbestos in the office area.  We are now located at\r\n<a id=\"m_-869676857235650207OWAab918f73-9638-9ed8-8484-9528c93f4b48\" href=\"https://www.google.com/maps/search/3900+W+Coachman+Ave,+Tampa,+FL+33611?entry=gmail&amp;source=g\" target=\"_blank\">\r\n3900 W Coachman Ave, Tampa, FL 33611</a>.   We need to get a quote for air conditioning in our warehouse area, which is about 75,000 sq feet.   Would you be able to schedule some time to stop by for a quote?   We are currently in the building, working in the\r\n office areas on-site.  </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<table style=\"direction:ltr;border-width:medium;border-style:initial;border-color:initial;color:rgb(0,0,0);border-collapse:collapse;border-spacing:0px;box-sizing:border-box\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial\">\r\n<table style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;border-collapse:collapse;border-spacing:0px;box-sizing:border-box\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:1px;border-style:solid;border-color:rgb(226,226,226);border-radius:5px;padding:3px 8px 8px;vertical-align:top\" align=\"left\">\r\n<table style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;border-collapse:collapse;border-spacing:0px;box-sizing:border-box\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;padding-top:5px\">\r\n<span style=\"font-family:Inter,sans-serif;font-size:10px;color:rgb(0,0,0)\"><a id=\"m_-869676857235650207OWA3e3a925e-75f7-4140-c647-82397705ee57\" href=\"https://linkprotect.cudasvc.com/url?a=https%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,1WjrZIcK192lTWXocXHI2iiQqiOuFq3xIsvwLH-BoLbYmq5Q08k-sAISyTghEqoybcj5aQgFzHvAncltHEbr9FxoE0Nf5zBMCiwMJF_9x7Qp65irUfGCdw,,&amp;typo=1\" target=\"_blank\"><img style=\"width:24px;display:block\" width=\"24\" src=\"https://linkprotect.cudasvc.com/url?a=https%3a%2f%2fapp.customesignature.com%2fimages%2fsocial%2fanimation%2f4%2fweb-icon.gif&amp;c=E,1,i9l3JuwSCKMYe-JxUUp_poQ2SLG_1iHKYSL-V3YIpYAF5h3dW4nIlxdD-oVlnV5vJ5dHQwXu34P8xNiWhJmxcJbqlup0_AQxBbyOovvM0nEYSss,&amp;typo=1\"></a></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;padding-top:5px\">\r\n<span style=\"font-family:Inter,sans-serif;font-size:10px;color:rgb(0,0,0)\"><a id=\"m_-869676857235650207OWA2b58729b-be6a-8ce8-8547-20ea8b1d014a\" href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img style=\"width:24px;display:block\" width=\"24\" src=\"https://linkprotect.cudasvc.com/url?a=https%3a%2f%2fapp.customesignature.com%2fimages%2fsocial%2fanimation%2f4%2finsta-icon.gif&amp;c=E,1,K0WvtEiNtpSGVOjc60aZxKnSxypf8riHXgA_LISTa_ei8R6_40aD2qdMtuUpZ9gxCGo7jk5oqzGH2xAOJI5etDVSjMOOCpr1yH0LB1UbcKMeREY,&amp;typo=1\"></a></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;padding-top:5px\">\r\n<span style=\"font-family:Inter,sans-serif;font-size:10px;color:rgb(0,0,0)\"><a id=\"m_-869676857235650207OWA42e7e3b0-c5c7-1946-2882-c4892e0ec7e4\" href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img style=\"width:24px;display:block\" width=\"24\" src=\"https://linkprotect.cudasvc.com/url?a=https%3a%2f%2fapp.customesignature.com%2fimages%2fsocial%2fanimation%2f4%2flinkedin-icon.gif&amp;c=E,1,cQB-qcrV-rdSMqqhPQ_sjEushyejnRJ2CqD_hLBZoUqFmSJHUPtpiCbfIviURlr_VBlP8Wgd2nOc9rKC0cDnUJzUbli9mTYU_KVxmHMq_jvzdbJmFA,,&amp;typo=1\"></a></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;padding-top:5px\">\r\n<span style=\"font-family:Inter,sans-serif;font-size:10px;color:rgb(0,0,0)\"><a id=\"m_-869676857235650207OWA05218454-96b1-5d84-4e54-6dc274e6a60e\" href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img style=\"width:24px;display:block\" width=\"24\" src=\"https://linkprotect.cudasvc.com/url?a=https%3a%2f%2fapp.customesignature.com%2fimages%2fsocial%2fanimation%2f4%2ffacebook-icon.gif&amp;c=E,1,KxQ6rLCLPp_pTmgfPOzhBsgAf2BZy2465XSrka5NY54f_aXBylNX748MYkZk2ikDbgR26v4tWx7qAbU196Fchhur4UDLdrNxAeM9VjduvHc,&amp;typo=1\"></a></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;padding-top:5px\">\r\n<span style=\"font-family:Inter,sans-serif;font-size:10px;color:rgb(0,0,0)\"><a id=\"m_-869676857235650207OWA549d2fae-cf3f-4eed-8418-c849aeb2820c\" href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img style=\"width:24px;display:block\" width=\"24\" src=\"https://linkprotect.cudasvc.com/url?a=https%3a%2f%2fapp.customesignature.com%2fimages%2fsocial%2fanimation%2f4%2fyoutube-icon.gif&amp;c=E,1,1W158DLhElBYov9WxC0I3d-HMcloSYmkJfXtTHvjIw8YMF__XNzwU4p29vIVJsN8ygdMnp4xEQfuoxvinXWcdiP6MGnZy893jL1XMOq-3Y4wbw,,&amp;typo=1\"></a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;width:8px\">\r\n<div style=\"direction:ltr;line-height:16px;font-family:Inter,sans-serif;font-size:10px;color:rgb(0,0,0)\">\r\n </div>\r\n</td>\r\n<td style=\"direction:ltr;line-height:16px;border-width:1px;border-style:solid;border-color:rgb(226,226,226);border-radius:5px;padding:15px;vertical-align:top\" align=\"left\">\r\n<table style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;width:100%;border-collapse:collapse;border-spacing:0px;box-sizing:border-box\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;vertical-align:middle\" align=\"left\">\r\n<table style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;width:100%;border-collapse:collapse;border-spacing:0px;box-sizing:border-box\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial\">\r\n<span style=\"font-family:Inter,sans-serif;font-size:10px;color:rgb(0,0,0)\"><a id=\"m_-869676857235650207OWA9fb5db5a-f676-530d-6962-d97a7f5906b8\" href=\"https://linkprotect.cudasvc.com/url?a=https%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,_iMGbdA_OCDxNR0H94j-0bbgas0heUhItZLNtAdUeqDQaW4Tyh66WecGnj21DyySc8f_adjiVPouyBSpQSAz4mu-Z-dM7Fh1n_ZZ-ZTCtpRe0xzrKZbdmg,,&amp;typo=1\" target=\"_blank\"><img style=\"width:170px;display:block\" width=\"170\" src=\"https://linkprotect.cudasvc.com/url?a=https%3a%2f%2fapp.customesignature.com%2fupload%2fsignature%2f11122%2f11122.png&amp;c=E,1,j4ss3_KoCMp98Ris3MgUlZr0VP51C6aRWfUihbwSWE5RVl3H25DLJDzvrgOkOwD-KlurPJNdpZDU7SyMM8mp34a6aItZqY1-00SmBPoMtTa3OFSqWUYwIw,,&amp;typo=1\"></a></span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;padding-bottom:10px\">\r\n<table style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;border-collapse:collapse;border-spacing:0px;box-sizing:border-box\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;padding-top:15px\">\r\n<table style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;border-collapse:collapse;border-spacing:0px;box-sizing:border-box\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;vertical-align:middle\" align=\"left\">\r\n<div style=\"direction:ltr;line-height:16px;font-family:Inter,sans-serif;font-size:20px;color:rgb(0,0,0)\">\r\n<b>NATHAN A. STARON</b></div>\r\n</td>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;padding-left:5px;vertical-align:middle\" align=\"left\">\r\n<span style=\"font-family:Inter,sans-serif;font-size:10px;color:rgb(0,0,0)\"><img style=\"width:15px;height:15px;display:block\" height=\"15\" width=\"15\" src=\"https://linkprotect.cudasvc.com/url?a=https%3a%2f%2fapp.customesignature.com%2fimages%2fverify.gif&amp;c=E,1,_FUguKOwFSFoqlyjsoQxg2dZFYF2gYZDrISZfM76goYFPWF07tm8_Z1agf7V6WCkTUKB0_Ae8iPTIW2VmXyFRIpLzIkWwagtm_Va8zzlkwmbtlzyoQ,,&amp;typo=1\"></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial\">\r\n<div style=\"direction:ltr;line-height:16px;font-family:Inter,sans-serif;font-size:12px;color:rgb(0,0,0)\">\r\nFounder / CEO</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial\">\r\n<div style=\"direction:ltr;line-height:16px;font-family:Inter,sans-serif;font-size:12px;color:rgb(0,0,0)\">\r\n<b>Lithium Battery Company</b></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial\">\r\n<div style=\"direction:ltr;line-height:16px;font-family:Inter,sans-serif;color:rgb(0,0,0)\">\r\n<span style=\"font-size:12px\"><b>Cell Phone</b></span><span style=\"font-size:10px\"> </span><span style=\"font-size:12px\"><a style=\"color:rgb(0,0,0)\" id=\"m_-869676857235650207OWA91154e2f-4bcd-ab37-a11f-fb0ff712d055\" href=\"tel:813-504-0074\" target=\"_blank\">813-504-0074</a></span></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial\">\r\n<div style=\"direction:ltr;line-height:16px;font-family:Inter,sans-serif;color:rgb(0,0,0)\">\r\n<span style=\"font-size:12px\"><b>Phone</b></span><span style=\"font-size:10px\"> </span><span style=\"font-size:12px\"><a style=\"color:rgb(0,0,0)\" id=\"m_-869676857235650207OWA56bf1a8a-5909-3462-3830-e0f2f15e232a\" href=\"tel:844-GET-LITHIUM\" target=\"_blank\">844-GET-LITHIUM</a></span></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial\">\r\n<div style=\"direction:ltr;line-height:16px;font-family:Inter,sans-serif;font-size:10px;color:rgb(0,0,0)\">\r\n<a style=\"color:rgb(0,0,0)\" id=\"m_-869676857235650207OWAf689679c-f7fb-1949-adbd-a344ca20cce7\" href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></div>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;padding-top:5px\">\r\n<table style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;border-collapse:collapse;border-spacing:0px;box-sizing:border-box\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial\">\r\n<div style=\"direction:ltr;line-height:16px;font-family:Inter,sans-serif;font-size:12px;color:rgb(255,255,255)\">\r\n<span style=\"background-color:rgb(0,0,0);line-height:14px\"><b><a style=\"color:rgb(255,255,255);display:inline-block;padding:4px 15px;background-color:rgb(0,0,0);text-align:center\" id=\"m_-869676857235650207OWA9732c265-8bd6-7af8-06f3-5d1a0baebacb\" href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" target=\"_blank\">Schedule\r\n A Zoom</a></b></span></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial\">\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td style=\"direction:ltr;line-height:16px;border-width:medium;border-style:initial;border-color:initial;padding-left:15px;vertical-align:middle\" align=\"left\">\r\n<div style=\"direction:ltr;line-height:16px;max-height:0px;font-family:Inter,sans-serif;font-size:10px;color:rgb(0,0,0)\">\r\n<img style=\"width:140px;border-radius:10px;display:block\" width=\"140\" src=\"https://linkprotect.cudasvc.com/url?a=https%3a%2f%2fapp.customesignature.com%2fupload%2fsignature%2fprofile%2f1738708307-11122.jpg&amp;c=E,1,HZWJ0w7X90wG7Cc5U1sZ-1kZXJx1vE2DQYmEjxaOTG5KnIy7t1bD5vhbkIViklALMoKcZ2FsTBlX25I-8kirN8R7zPrH5kGY7JoFHtfM&amp;typo=1\"></div>\r\n<div style=\"direction:ltr;line-height:16px;font-family:Inter,sans-serif;font-size:10px;color:rgb(0,0,0)\">\r\n<img style=\"width:140px;border-radius:10px;display:block\" width=\"140\" src=\"https://linkprotect.cudasvc.com/url?a=https%3a%2f%2fapp.customesignature.com%2f%2fupload%2fsignature%2fgifs%2fgiphyy-1.gif&amp;c=E,1,pZJdoojgfMt_3qHFB1VVJFTPDRGQxvsFyH_APqSc5_IjMZXacXvmcmjOtcy4ysUuBbt_Z-_YSU1vPeXtlTMJUfUkT8sYgGDQi6aUjVRlCn61rh-KjTbD&amp;typo=1\"></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;border-width:medium;border-style:initial;border-color:initial;vertical-align:top\" align=\"left\">\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;border-width:medium;border-style:initial;border-color:initial;padding-top:10px\">\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Jan 8, 2025 at 2:39 PM Anthony Viscomi &lt;<a id=\"m_-869676857235650207OWA540b07d8-8f48-f984-cb30-ba3249d15bed\" href=\"mailto:AnthonyV@advancedroofing.com\" target=\"_blank\">AnthonyV@advancedroofing.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><span style=\"font-size:11pt\">Good afternoon.</span></p>\r\n<p style=\"direction:ltr;text-indent:0.5in;margin-top:1em;margin-bottom:1em\">\r\n<span style=\"font-size:11pt\">There were a few deficiencies with the roof found during inspection. I will begin working on the proposal for repairs and get sent over whenever it is done.</span></p>\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><span style=\"font-size:11pt\">Nathan mentioned the roof should be under warranty still. Would either of you be able to forward me the warranty information?</span></p>\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><span style=\"font-size:11pt\"> </span></p>\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><span style=\"font-size:11pt\"> </span></p>\r\n<table style=\"direction:ltr;width:337.5pt;border-collapse:collapse;border-spacing:0px;box-sizing:border-box\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr;padding:0in 0in 11.25pt\" colspan=\"2\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><span style=\"font-family:Arial,sans-serif;font-size:10.5pt;color:rgb(51,51,51)\">Thank you,</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;padding:0in 0in 3.75pt\" colspan=\"2\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><span style=\"font-family:Arial,sans-serif;font-size:13.5pt;color:rgb(228,38,58)\">Anthony Viscomi</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;padding:0in\" colspan=\"2\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><span style=\"font-family:Arial,sans-serif;font-size:10.5pt;color:rgb(51,51,51)\">Service Estimator</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;padding:0in\" colspan=\"2\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><span style=\"font-family:Arial,sans-serif;font-size:10.5pt;color:rgb(51,51,51)\"><b>Advanced Roofing Inc.</b></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;padding:0in;vertical-align:top\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><span style=\"font-family:Arial,sans-serif;font-size:10.5pt;color:rgb(228,38,58)\">o:\r\n</span><span style=\"font-family:Arial,sans-serif;font-size:10.5pt;color:rgb(51,51,51)\">813-885-5811</span></p>\r\n</td>\r\n<td style=\"direction:ltr;padding:0in\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;padding:0in;vertical-align:top\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><span style=\"font-family:Arial,sans-serif;font-size:10.5pt;color:rgb(228,38,58)\">m:\r\n</span><span style=\"font-family:Arial,sans-serif;font-size:10.5pt\">813-709-5118</span></p>\r\n</td>\r\n<td style=\"direction:ltr;padding:0in\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;padding:0in;vertical-align:top\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><span style=\"font-family:Arial,sans-serif;font-size:10.5pt;color:rgb(228,38,58)\">e:\r\n</span><span style=\"color:rgb(70,120,134)\"><a style=\"color:rgb(70,120,134);margin-top:0px;margin-bottom:0px\" id=\"m_-869676857235650207OWAa2fc134d-3e1c-8200-7ea4-6a3b553d6cc7\" href=\"mailto:AnthonyV@advancedroofing.com\" target=\"_blank\">AnthonyV</a></span><span style=\"font-family:Arial,sans-serif;font-size:10.5pt;color:rgb(70,120,134)\"><a style=\"color:rgb(70,120,134);margin-top:0px;margin-bottom:0px\" id=\"m_-869676857235650207OWA7fb181fd-de98-7bab-8a29-da5a71c48364\" href=\"mailto:AnthonyV@advancedroofing.com\" target=\"_blank\">@advancedroofing.com</a></span></p>\r\n</td>\r\n<td style=\"direction:ltr;padding:0in\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;padding:0in;vertical-align:top\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><span style=\"font-family:Arial,sans-serif;font-size:10.5pt;color:rgb(228,38,58)\">w:\r\n</span><span style=\"font-family:Arial,sans-serif;font-size:10.5pt;color:rgb(29,161,219)\"><a style=\"color:rgb(29,161,219);margin-top:0px;margin-bottom:0px\" id=\"m_-869676857235650207OWA89844dd9-acba-5267-c735-3a4e73cbe398\" href=\"http://www.advancedroofing.com\" target=\"_blank\">www.advancedroofing.com</a></span></p>\r\n</td>\r\n<td style=\"direction:ltr;padding:0in\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;padding:0in;vertical-align:top\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><span style=\"font-family:Arial,sans-serif;font-size:10.5pt;color:rgb(228,38,58)\">a:\r\n</span><span style=\"font-family:Arial,sans-serif;font-size:10.5pt;color:rgb(51,51,51)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_-869676857235650207OWA8dbac244-9577-25c3-5f4b-f4eaeb263e0d\" href=\"https://www.google.com/maps/search/4909+W+Knollwood+St,+Tampa,+FL,+33634?entry=gmail&amp;source=g\" target=\"_blank\">4909\r\n W Knollwood St, Tampa, FL, 33634</a></span></p>\r\n</td>\r\n<td style=\"direction:ltr;padding:0in\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;padding:7.5pt 0in\" colspan=\"2\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><img style=\"width:2.6041in;height:0.7083in;margin-top:0px;margin-bottom:0px\" height=\"67\" width=\"249\" id=\"m_-869676857235650207x_m_-1793968941571215496x_m_5465420656941597939_x0000_i1026\" alt=\"Advanced Roofing logo\" src=\"http://www.advancedroofing.com/wp-content/uploads/2014/09/ARI-email-logo.gif\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;padding:0in\" colspan=\"2\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"> </p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;padding:0in\" colspan=\"2\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"> </p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"> </p>\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><span style=\"font-size:11pt\"> </span></p>\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><span style=\"font-size:11pt\"> </span></p>\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><span style=\"font-size:11pt\"> </span></p>\r\n<div style=\"padding:3pt 0in 0in;border-width:1pt medium medium;border-style:solid none none;border-color:rgb(225,225,225) currentcolor currentcolor\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><span style=\"font-family:Calibri,sans-serif;font-size:11pt\"><b>From:</b> Jarrett Brownfield &lt;<a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_-869676857235650207OWAd4247c06-669f-c3d5-d1a8-62bfa39c4391\" href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, January 8, 2025 7:31 AM<br>\r\n<b>To:</b> Anthony Viscomi &lt;<a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_-869676857235650207OWAa7049fe3-40fc-52ff-2644-29340dddcf82\" href=\"mailto:AnthonyV@advancedroofing.com\" target=\"_blank\">AnthonyV@advancedroofing.com</a>&gt;; Nathan Staron &lt;<a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_-869676857235650207OWA3836a264-1b42-9b2a-0cc2-af9c119d7203\" href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Subject:</b> Re: <a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_-869676857235650207OWA8f15b73d-50fb-64f1-1ea5-63ee99c68fe6\" href=\"https://www.google.com/maps/search/5201+South+West+Shore+Boulevard+Tampa+FL+33611?entry=gmail&amp;source=g\" target=\"_blank\">\r\n5201 South West Shore Boulevard Tampa FL 33611</a></span></p>\r\n</div>\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"> </p>\r\n<h3 style=\"direction:ltr;background-color:orange\"><span style=\"color:black\">CAUTION: This email originated from outside the company. Do not respond, click on links or open attachments unless you verify that the sender and the contents are safe.</span></h3>\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\">Hi Anthony,</p>\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"> </p>\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\">I have included Nathan who is actually already on-site. His contact info is: 813-504-0074 </p>\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"> </p>\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\">On Wed, Jan 8, 2025 at 7:27<span style=\"font-family:Arial,sans-serif\"> </span>AM Anthony Viscomi &lt;<a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_-869676857235650207OWA47d1e874-485c-390c-ca75-afd210d01803\" href=\"mailto:AnthonyV@advancedroofing.com\" target=\"_blank\">AnthonyV@advancedroofing.com</a>&gt;\r\n wrote:</p>\r\n<blockquote style=\"margin-right:0in;margin-left:4.8pt;padding:0in 0in 0in 6pt;border-width:medium medium medium 1pt;border-style:none none none solid;border-color:currentcolor currentcolor currentcolor rgb(204,204,204)\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\">Good morning, Jarrett. I will be the one meeting you today at the address in subject line. Do you have a contact phone number?</p>\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"> </p>\r\n<table style=\"direction:ltr;width:337.5pt;border-collapse:collapse;border-spacing:0px;box-sizing:border-box\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"direction:ltr;padding:0in 0in 11.25pt\" colspan=\"2\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><span style=\"font-family:Arial,sans-serif;font-size:10.5pt;color:rgb(51,51,51)\">Thank you,</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;padding:0in 0in 3.75pt\" colspan=\"2\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><span style=\"font-family:Arial,sans-serif;font-size:13.5pt;color:rgb(228,38,58)\">Anthony Viscomi</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;padding:0in\" colspan=\"2\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><span style=\"font-family:Arial,sans-serif;font-size:10.5pt;color:rgb(51,51,51)\">Service Estimator</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;padding:0in\" colspan=\"2\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><span style=\"font-family:Arial,sans-serif;font-size:10.5pt;color:rgb(51,51,51)\"><b>Advanced Roofing Inc.</b></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;padding:0in;vertical-align:top\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><span style=\"font-family:Arial,sans-serif;font-size:10.5pt;color:rgb(228,38,58)\">o:\r\n</span><span style=\"font-family:Arial,sans-serif;font-size:10.5pt;color:rgb(51,51,51)\">813-885-5811</span></p>\r\n</td>\r\n<td style=\"direction:ltr;padding:0in\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;padding:0in;vertical-align:top\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><span style=\"font-family:Arial,sans-serif;font-size:10.5pt;color:rgb(228,38,58)\">m:\r\n</span><span style=\"font-family:Arial,sans-serif;font-size:10.5pt\">813-709-5118</span></p>\r\n</td>\r\n<td style=\"direction:ltr;padding:0in\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;padding:0in;vertical-align:top\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><span style=\"font-family:Arial,sans-serif;font-size:10.5pt;color:rgb(228,38,58)\">e:\r\n</span><span style=\"color:rgb(70,120,134)\"><a style=\"color:rgb(70,120,134);margin-top:0px;margin-bottom:0px\" id=\"m_-869676857235650207OWAf1c31a6e-021c-b25e-530f-d41698a70faf\" href=\"mailto:AnthonyV@advancedroofing.com\" target=\"_blank\">AnthonyV</a></span><span style=\"font-family:Arial,sans-serif;font-size:10.5pt;color:rgb(70,120,134)\"><a style=\"color:rgb(70,120,134);margin-top:0px;margin-bottom:0px\" id=\"m_-869676857235650207OWAb70604db-72cf-51b7-445c-f518360ec045\" href=\"mailto:AnthonyV@advancedroofing.com\" target=\"_blank\">@advancedroofing.com</a></span></p>\r\n</td>\r\n<td style=\"direction:ltr;padding:0in\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;padding:0in;vertical-align:top\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><span style=\"font-family:Arial,sans-serif;font-size:10.5pt;color:rgb(228,38,58)\">w:\r\n</span><span style=\"font-family:Arial,sans-serif;font-size:10.5pt;color:rgb(29,161,219)\"><a style=\"color:rgb(29,161,219);margin-top:0px;margin-bottom:0px\" id=\"m_-869676857235650207OWA7ec4661d-bc87-653d-5811-fcf2da9fffef\" href=\"http://www.advancedroofing.com\" target=\"_blank\">www.advancedroofing.com</a></span></p>\r\n</td>\r\n<td style=\"direction:ltr;padding:0in\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;padding:0in;vertical-align:top\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><span style=\"font-family:Arial,sans-serif;font-size:10.5pt;color:rgb(228,38,58)\">a:\r\n</span><span style=\"font-family:Arial,sans-serif;font-size:10.5pt;color:rgb(51,51,51)\"><a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_-869676857235650207OWA88e14dc5-dfa6-f43f-08c6-126e9d0c0dc9\" href=\"https://www.google.com/maps/search/4909+W+Knollwood+St,+Tampa,+FL,+33634?entry=gmail&amp;source=g\" target=\"_blank\">4909\r\n W Knollwood St, Tampa, FL, 33634</a></span></p>\r\n</td>\r\n<td style=\"direction:ltr;padding:0in\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;padding:7.5pt 0in\" colspan=\"2\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><img size=\"1059\" style=\"width:100px;max-width:100%;margin-top:0px;margin-bottom:0px\" width=\"100\" alt=\"~WRD1262.jpg\" src=\"cid:ii_19a5b8b087d9ae9d39b1\"></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;padding:0in\" colspan=\"2\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"> </p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"direction:ltr;padding:0in\" colspan=\"2\">\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"> </p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"> </p>\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"> </p>\r\n</blockquote>\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"><br>\r\n</p>\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\"> </p>\r\n<p style=\"direction:ltr;margin-top:1em;margin-bottom:1em\">--</p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:11pt;color:black\"><b>J. Brownfield\r\n</b>I<b> </b></span><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Chief Financial Officer</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(0,36,81)\"><u><a style=\"color:rgb(0,36,81);margin-top:0px;margin-bottom:0px\" id=\"m_-869676857235650207OWA20005d3c-4ee1-e99a-17e7-50958b0991d1\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">Jarrett@</a>lithiumbatterycompany<a style=\"color:rgb(0,36,81);margin-top:0px;margin-bottom:0px\" id=\"m_-869676857235650207OWA22b65cd2-80c2-1dc5-00bd-1d700a4b5925\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(0,36,81)\"><a style=\"color:rgb(0,36,81);margin-top:0px;margin-bottom:0px\" id=\"m_-869676857235650207OWA9ae7b75b-4310-86d7-2c8f-c5f72900c64e\" href=\"https://linkprotect.cudasvc.com/url?a=https%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,AMDvecAp2k09wx2AVfGeF-O34D87k5kXeSbgCvdIzTZEO79ax9gTXTxWOSEGDOCbpMHIikbn4PUQoYPZ5fftVcnzVr7hYz3DgrD5jPo_&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n\r\n</div></div></div>','Below is the email for the A/C Quote for the 3 Suites from Advanced\r\nRoofing.   Let me know what you think, and we can get them out to do a\r\nformal quote, and we can negotiate that cost down.  I think its coming in\r\nfairly average priced.\r\n\r\n*Cost Breakdown:*\r\n\r\n   - Overall budget: ~$10–$15 per square foot\r\n   - Per ton installed: ~$6k–$9k (includes equipment, rigging/crane, roof\r\n   stands/curbs/flashings, ductwork, electrical, plumbing, controls, permits,\r\n   and start-up)\r\n   - Per-suite estimate: ~$250k–$375k\r\n   - Total for three suites: ~$750k–$1.125M\r\n\r\n\r\n*Assumptions*:\r\n\r\n   - Each 25,000-SF suite requires ~40–45 tons of cooling, plus a DOAS for\r\n   outside air and humidity control.\r\n   - The roof/deck is concrete, so engineered roof stands/curbs and\r\n   flashings are included.\r\n   - We\'ll verify available electrical service (ideally 480V 3-phase)\r\n   during our site walk.\r\n\r\n\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: Paul Murphy <PaulM@advancedairsystem.com>\r\nDate: Thu, Nov 6, 2025 at 6:35 PM\r\nSubject: Re: 5201 South West Shore Boulevard Tampa FL 33611\r\nTo: Nathan Staron <Nathan@lithiumbatterycompany.com>\r\nCc: Rob Kornahrens <RobK@advancedroofing.com>, Anthony Viscomi <\r\nAnthonyV@advancedroofing.com>\r\n\r\n\r\nHi Nathan,\r\n\r\nThank you for those details and reaching out to us about this turnkey HVAC\r\nsolution.\r\n\r\nTo provide a rough order of magnitude (ROM) for a system that will keep\r\nyour space comfortable year-round and manage humidity with a dedicated\r\noutside-air system (DOAS), please consider the following:\r\n\r\n*Cost Breakdown:*\r\n\r\n   - Overall budget: ~$10–$15 per square foot\r\n   - Per ton installed: ~$6k–$9k (includes equipment, rigging/crane, roof\r\n   stands/curbs/flashings, ductwork, electrical, plumbing, controls, permits,\r\n   and start-up)\r\n   - Per-suite estimate: ~$250k–$375k\r\n   - Total for three suites: ~$750k–$1.125M\r\n\r\n\r\n*Assumptions*:\r\n\r\n   - Each 25,000-SF suite requires ~40–45 tons of cooling, plus a DOAS for\r\n   outside air and humidity control.\r\n   - The roof/deck is concrete, so engineered roof stands/curbs and\r\n   flashings are included.\r\n   - We\'ll verify available electrical service (ideally 480V 3-phase)\r\n   during our site walk.\r\n\r\n\r\nIf the proposed budget seems feasible for your company, please provide the\r\nfollowing details so we can finalize the load calculations and prepare a\r\nfirm proposal:\r\n\r\n\r\n   1. *Target Indoor Conditions*\r\n   - Preferred temperature (typical warehouse: 74–78°F)\r\n      - Preferred humidity (we recommend 50–55% RH for Florida warehouses\r\n      to avoid condensation and “clammy” conditions)\r\n\r\n\r\n\r\n   1. *Intended Use of Each Suite*\r\n   - Storage only, light assembly/production, packaging,\r\n      offices/mezzanines?\r\n      - Approximate headcount & hours of operation\r\n      - Number of dock doors and frequency of use\r\n      - Any process heat (chargers, machinery, IT rooms), special\r\n      filtration, or exhaust requirements\r\n\r\n\r\nPlease let me know if you need clarification or wish to discuss options\r\nfurther. Looking forward to your feedback, and happy to address any\r\nquestions you may have.\r\n\r\nThank you,\r\n\r\n*Paul Murphy*\r\n*Vice President* |\r\n*Advanced Air Systems **Certified Mechanical Contractor* | *Lic.\r\n#CMC1251466*\r\nE: PaulM@AdvancedAirSystem.com\r\nO: 954-332-1418 x 1620\r\nM: 321-482-0546\r\n------------------------------\r\n*From:* Nathan Staron <Nathan@lithiumbatterycompany.com>\r\n*Sent:* Thursday, November 6, 2025 5:18 PM\r\n*To:* Paul Murphy <PaulM@advancedairsystem.com>\r\n*Cc:* Rob Kornahrens <RobK@advancedroofing.com>; Anthony Viscomi <\r\nAnthonyV@advancedroofing.com>\r\n*Subject:* Re: 5201 South West Shore Boulevard Tampa FL 33611\r\n\r\nWe have three individual suites broken up into 25,000 sq feet each with\r\ndivider walls in between.  The entire place including the roof is concrete.\r\n\r\n\r\nHope this helps.\r\n\r\n\r\n\r\n<https://linkprotect.cudasvc.com/url?a=https%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,Kzp8QygELot-oeCk_MMNVHN093EJchtmz8NjS40aRJShuHbD960xmEmZVQRDvyG4PokbTTsELiQJw_U4T9ppYETHi-n2-MT4fpWpE_JlsZWb9GethQ,,&typo=1>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n\r\n<https://linkprotect.cudasvc.com/url?a=https%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,T1q598eZPlewf4e_wY9q8dDUp_LY2wSl3OnQR8mCVeQsyNAHzDgAJcmKHh4uxVeRblYxciYPfisw3ppCAD6-_1TZxo4M22uR7fBK6AxXmAw,&typo=1>\r\n\r\n*NATHAN A. STARON*\r\nFounder / CEO\r\n*Lithium Battery Company*\r\n*Cell Phone* 813-504-0074\r\n*Phone* 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\n*Schedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>*\r\n\r\n\r\nOn Thu, Nov 6, 2025 at 5:15 PM Paul Murphy <PaulM@advancedairsystem.com>\r\nwrote:\r\n\r\nHello Rob,\r\n\r\nWe can certainly provide a quote, but we have a couple of questions first.\r\nIs there existing HVAC equipment that needs replacement, or is this for\r\nconditioning a space that has never been conditioned before? The costs\r\nbetween these two scenarios differ significantly.\r\n\r\nThank you,\r\n\r\n*Paul Murphy*\r\n*Vice President* |\r\n*Advanced Air Systems **Certified Mechanical Contractor* | *Lic.\r\n#CMC1251466*\r\nE: PaulM@AdvancedAirSystem.com\r\nO: 954-332-1418 x 1620\r\nM: 321-482-0546\r\n------------------------------\r\n*From:* Rob Kornahrens <RobK@advancedroofing.com>\r\n*Sent:* Thursday, November 6, 2025 12:14 PM\r\n*To:* Nathan Staron <Nathan@lithiumbatterycompany.com>\r\n*Cc:* Anthony Viscomi <AnthonyV@advancedroofing.com>; Paul Murphy <\r\nPaulM@advancedairsystem.com>\r\n\r\n*Subject:* Re: 5201 South West Shore Boulevard Tampa FL 33611\r\n<https://www.google.com/maps/search/5201+South+West+Shore+Boulevard+Tampa+FL+33611?entry=gmail&source=g>\r\n\r\nPaul Could you do quote on this?\r\nRob Kornahrens\r\nPresident\r\nAdvanced Roofing, Inc\r\n\r\nOn Nov 6, 2025, at 11:42 AM, Nathan Staron <Nathan@lithiumbatterycompany.com>\r\nwrote:\r\n\r\n﻿\r\nAnthony,\r\n\r\nWe had to change factory locations due to asbestos in the office area.  We\r\nare now located at 3900 W Coachman Ave, Tampa, FL 33611\r\n<https://www.google.com/maps/search/3900+W+Coachman+Ave,+Tampa,+FL+33611?entry=gmail&source=g>.\r\n We need to get a quote for air conditioning in our warehouse area, which\r\nis about 75,000 sq feet.   Would you be able to schedule some time to stop\r\nby for a quote?   We are currently in the building, working in the office\r\nareas on-site.\r\n\r\n\r\n<https://linkprotect.cudasvc.com/url?a=https%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,1WjrZIcK192lTWXocXHI2iiQqiOuFq3xIsvwLH-BoLbYmq5Q08k-sAISyTghEqoybcj5aQgFzHvAncltHEbr9FxoE0Nf5zBMCiwMJF_9x7Qp65irUfGCdw,,&typo=1>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n\r\n<https://linkprotect.cudasvc.com/url?a=https%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,_iMGbdA_OCDxNR0H94j-0bbgas0heUhItZLNtAdUeqDQaW4Tyh66WecGnj21DyySc8f_adjiVPouyBSpQSAz4mu-Z-dM7Fh1n_ZZ-ZTCtpRe0xzrKZbdmg,,&typo=1>\r\n\r\n*NATHAN A. STARON*\r\nFounder / CEO\r\n*Lithium Battery Company*\r\n*Cell Phone* 813-504-0074\r\n*Phone* 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\n*Schedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>*\r\n\r\n\r\nOn Wed, Jan 8, 2025 at 2:39 PM Anthony Viscomi <AnthonyV@advancedroofing.com>\r\nwrote:\r\n\r\nGood afternoon.\r\n\r\nThere were a few deficiencies with the roof found during inspection. I will\r\nbegin working on the proposal for repairs and get sent over whenever it is\r\ndone.\r\n\r\nNathan mentioned the roof should be under warranty still. Would either of\r\nyou be able to forward me the warranty information?\r\n\r\n\r\n\r\n\r\n\r\nThank you,\r\n\r\nAnthony Viscomi\r\n\r\nService Estimator\r\n\r\n*Advanced Roofing Inc.*\r\n\r\no: 813-885-5811\r\n\r\nm: 813-709-5118\r\n\r\ne: AnthonyV <AnthonyV@advancedroofing.com>@advancedroofing.com\r\n<AnthonyV@advancedroofing.com>\r\n\r\nw: www.advancedroofing.com\r\n\r\na: 4909 W Knollwood St, Tampa, FL, 33634\r\n<https://www.google.com/maps/search/4909+W+Knollwood+St,+Tampa,+FL,+33634?entry=gmail&source=g>\r\n\r\n[image: Advanced Roofing logo]\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n*From:* Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\n*Sent:* Wednesday, January 8, 2025 7:31 AM\r\n*To:* Anthony Viscomi <AnthonyV@advancedroofing.com>; Nathan Staron <\r\nNathan@lithiumbatterycompany.com>\r\n*Subject:* Re: 5201 South West Shore Boulevard Tampa FL 33611\r\n<https://www.google.com/maps/search/5201+South+West+Shore+Boulevard+Tampa+FL+33611?entry=gmail&source=g>\r\n\r\n\r\nCAUTION: This email originated from outside the company. Do not respond,\r\nclick on links or open attachments unless you verify that the sender and\r\nthe contents are safe.\r\n\r\nHi Anthony,\r\n\r\n\r\n\r\nI have included Nathan who is actually already on-site. His contact info\r\nis: 813-504-0074\r\n\r\n\r\n\r\nOn Wed, Jan 8, 2025 at 7:27 AM Anthony Viscomi <AnthonyV@advancedroofing.com>\r\nwrote:\r\n\r\nGood morning, Jarrett. I will be the one meeting you today at the address\r\nin subject line. Do you have a contact phone number?\r\n\r\n\r\n\r\nThank you,\r\n\r\nAnthony Viscomi\r\n\r\nService Estimator\r\n\r\n*Advanced Roofing Inc.*\r\n\r\no: 813-885-5811\r\n\r\nm: 813-709-5118\r\n\r\ne: AnthonyV <AnthonyV@advancedroofing.com>@advancedroofing.com\r\n<AnthonyV@advancedroofing.com>\r\n\r\nw: www.advancedroofing.com\r\n\r\na: 4909 W Knollwood St, Tampa, FL, 33634\r\n<https://www.google.com/maps/search/4909+W+Knollwood+St,+Tampa,+FL,+33634?entry=gmail&source=g>\r\n\r\n[image: ~WRD1262.jpg]\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n--\r\n\r\n*J. Brownfield *I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\n*Jarrett@\r\n<Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company\r\n<https://linkprotect.cudasvc.com/url?a=https%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,AMDvecAp2k09wx2AVfGeF-O34D87k5kXeSbgCvdIzTZEO79ax9gTXTxWOSEGDOCbpMHIikbn4PUQoYPZ5fftVcnzVr7hYz3DgrD5jPo_&typo=1>',0,0,0,0,0,0,'2025-11-06 23:42:57','2025-12-09 19:30:53','2025-12-09 19:30:53','2025-12-09 19:30:53',NULL,NULL,NULL),
(931,4,'<CAJO9__YEML+NHNEVoKAuZ4YLxYXwPpzMvDF9X+TaNB0Fq7MWBw@mail.gmail.com>',NULL,NULL,'Re: Equipment Specs and Power Requirements','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Good morning team,</div><div><br></div><div><div>We were speaking with our factory last night and they were saying that we could operate our equipment with two step down transformers from 480v 3 phase to 380v 3 phase but both need to operate at atleast 200kVA.  To be on the safe side for when we add more equipment they said use two at 300kVA.  I found these readily available online but they are at 225kVA.  Thinking we could do three of these.  Larger format units seem to be out of stock with a 5-11 week lead time. </div><div><br></div><div>Here is the link:</div><div><a href=\"https://store.maddox.com/products/3-phase-480v-delta-380-y-220?variant=39417005834323\" target=\"_blank\">https://store.maddox.com/products/3-phase-480v-delta-380-y-220?variant=39417005834323</a></div><div><br></div><div>I have passed this along to the building&#39;s GC to show his electrician as well.</div><div><br></div><div>Let me know if you have any questions.</div></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Nov 6, 2025 at 4:52 PM Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Good Afternoon, Rick,</div><div><br></div><div>I am attaching the assembly equipment specifications and power requirements for your review.</div><div><br></div><div>For our large prismatic line, the factory advised us to have 65kW power at 380V. To clarify this, consider it like a car: the engine might be rated for 300 horsepower (peak), but on average, you only use about 50 horsepower when driving (actual consumption).</div><div><br></div><div>The 65kW rating ensures that our electrical system can handle brief power spikes, such as when laser welders are operating. However, your continuous consumption and electricity costs will be based on an average usage of approximately 19kW.</div><div><br></div><div>Here is the math in simple terms:</div><div>*   Each module stores: 16 cells × 3.2V × 314Ah = 16.1 kWh of energy</div><div>*   Energy required to assemble one module: Approximately 2% of the module&#39;s energy = 0.32 kWh (This covers welding, conveying, testing, computers, etc.)</div><div>*   For 60 modules/hour: 60 × 0.32 kWh = 19.2 kW average draw</div><div><br></div><div>This approach can also be applied to the other lines discussed previously.</div><div><br></div><div>Please let me know if you have any questions.</div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_7890518892313790551_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div>\r\n</blockquote></div>','Good morning team,\r\n\r\nWe were speaking with our factory last night and they were saying that we\r\ncould operate our equipment with two step down transformers from 480v 3\r\nphase to 380v 3 phase but both need to operate at atleast 200kVA.  To be on\r\nthe safe side for when we add more equipment they said use two at 300kVA.\r\nI found these readily available online but they are at 225kVA.  Thinking we\r\ncould do three of these.  Larger format units seem to be out of stock with\r\na 5-11 week lead time.\r\n\r\nHere is the link:\r\nhttps://store.maddox.com/products/3-phase-480v-delta-380-y-220?variant=39417005834323\r\n\r\nI have passed this along to the building\'s GC to show his electrician as\r\nwell.\r\n\r\nLet me know if you have any questions.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Thu, Nov 6, 2025 at 4:52 PM Nathan Staron <\r\nNathan@lithiumbatterycompany.com> wrote:\r\n\r\n> Good Afternoon, Rick,\r\n>\r\n> I am attaching the assembly equipment specifications and power\r\n> requirements for your review.\r\n>\r\n> For our large prismatic line, the factory advised us to have 65kW power at\r\n> 380V. To clarify this, consider it like a car: the engine might be rated\r\n> for 300 horsepower (peak), but on average, you only use about 50 horsepower\r\n> when driving (actual consumption).\r\n>\r\n> The 65kW rating ensures that our electrical system can handle brief power\r\n> spikes, such as when laser welders are operating. However, your continuous\r\n> consumption and electricity costs will be based on an average usage of\r\n> approximately 19kW.\r\n>\r\n> Here is the math in simple terms:\r\n> * Each module stores: 16 cells × 3.2V × 314Ah = 16.1 kWh of energy\r\n> * Energy required to assemble one module: Approximately 2% of the module\'s\r\n> energy = 0.32 kWh (This covers welding, conveying, testing, computers, etc.)\r\n> * For 60 modules/hour: 60 × 0.32 kWh = 19.2 kW average draw\r\n>\r\n> This approach can also be applied to the other lines discussed previously.\r\n>\r\n> Please let me know if you have any questions.\r\n>\r\n>\r\n> <https://lithiumbatterycompany.com/>\r\n> <https://www.instagram.com/lithiumbatteryco/>\r\n> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n> <https://www.facebook.com/LithiumBatteryCompany/>\r\n> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n> <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074\r\n> Phone 844-GET-LITHIUM\r\n> Nathan@lithiumbatterycompany.com\r\n> Schedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>\r\n>',0,0,0,0,0,0,'2025-11-07 16:01:06','2025-12-09 19:30:53','2025-12-09 19:30:53','2025-12-09 19:30:53',NULL,NULL,NULL),
(932,4,'<CAGOCFXg9M2fQVifvCsC7eNNYXWHqVEHQ0-JWP1CtSNHXJ+mhOA@mail.gmail.com>',NULL,NULL,'Re: Equipment Specs and Power Requirements','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>We could also run multiple 75kVA transformers located in the factory layout, where they showed the red boxes.  This might be better for the electrical lines to run 480V to the transformers located next to the equipment and run shorter power lines for less power loss.   There is a 5th transformer that would need to be used for the individual welders.   For 5 transformers that would come in around $31,360.  I was also hoping that we could negotiate volume pricing and save on sales tax with our exemption certificate.  <br><br>Running two 225kva transformers would come in around $30,566.   <br><br>I would pay the $794 for the benefit of not having power loss in the lines going to the equipment.   Just a thought. <br><br></div><img src=\"cid:ii_mhp208h50\" alt=\"TransformerLayout.jpg\" width=\"410\" height=\"395\"><br><div> transformers for the layout if needed.   </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Nov 7, 2025 at 11:01 AM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Good morning team,</div><div><br></div><div><div>We were speaking with our factory last night and they were saying that we could operate our equipment with two step down transformers from 480v 3 phase to 380v 3 phase but both need to operate at atleast 200kVA.  To be on the safe side for when we add more equipment they said use two at 300kVA.  I found these readily available online but they are at 225kVA.  Thinking we could do three of these.  Larger format units seem to be out of stock with a 5-11 week lead time. </div><div><br></div><div>Here is the link:</div><div><a href=\"https://store.maddox.com/products/3-phase-480v-delta-380-y-220?variant=39417005834323\" target=\"_blank\">https://store.maddox.com/products/3-phase-480v-delta-380-y-220?variant=39417005834323</a></div><div><br></div><div>I have passed this along to the building&#39;s GC to show his electrician as well.</div><div><br></div><div>Let me know if you have any questions.</div></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Nov 6, 2025 at 4:52 PM Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Good Afternoon, Rick,</div><div><br></div><div>I am attaching the assembly equipment specifications and power requirements for your review.</div><div><br></div><div>For our large prismatic line, the factory advised us to have 65kW power at 380V. To clarify this, consider it like a car: the engine might be rated for 300 horsepower (peak), but on average, you only use about 50 horsepower when driving (actual consumption).</div><div><br></div><div>The 65kW rating ensures that our electrical system can handle brief power spikes, such as when laser welders are operating. However, your continuous consumption and electricity costs will be based on an average usage of approximately 19kW.</div><div><br></div><div>Here is the math in simple terms:</div><div>*   Each module stores: 16 cells × 3.2V × 314Ah = 16.1 kWh of energy</div><div>*   Energy required to assemble one module: Approximately 2% of the module&#39;s energy = 0.32 kWh (This covers welding, conveying, testing, computers, etc.)</div><div>*   For 60 modules/hour: 60 × 0.32 kWh = 19.2 kW average draw</div><div><br></div><div>This approach can also be applied to the other lines discussed previously.</div><div><br></div><div>Please let me know if you have any questions.</div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_-2342918463585767143_m_7890518892313790551_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div>\r\n</blockquote></div>\r\n</blockquote></div>','We could also run multiple 75kVA transformers located in the factory\r\nlayout, where they showed the red boxes.  This might be better for the\r\nelectrical lines to run 480V to the transformers located next to the\r\nequipment and run shorter power lines for less power loss.   There is a 5th\r\ntransformer that would need to be used for the individual welders.   For 5\r\ntransformers that would come in around $31,360.  I was also hoping that we\r\ncould negotiate volume pricing and save on sales tax with our exemption\r\ncertificate.\r\n\r\nRunning two 225kva transformers would come in around $30,566.\r\n\r\nI would pay the $794 for the benefit of not having power loss in the lines\r\ngoing to the equipment.   Just a thought.\r\n\r\n[image: TransformerLayout.jpg]\r\n transformers for the layout if needed.\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Fri, Nov 7, 2025 at 11:01 AM Jordan Wroblewski <\r\njordan@lithiumbatterycompany.com> wrote:\r\n\r\n> Good morning team,\r\n>\r\n> We were speaking with our factory last night and they were saying that we\r\n> could operate our equipment with two step down transformers from 480v 3\r\n> phase to 380v 3 phase but both need to operate at atleast 200kVA.  To be on\r\n> the safe side for when we add more equipment they said use two at 300kVA.\r\n> I found these readily available online but they are at 225kVA.  Thinking we\r\n> could do three of these.  Larger format units seem to be out of stock with\r\n> a 5-11 week lead time.\r\n>\r\n> Here is the link:\r\n>\r\n> https://store.maddox.com/products/3-phase-480v-delta-380-y-220?variant=39417005834323\r\n>\r\n> I have passed this along to the building\'s GC to show his electrician as\r\n> well.\r\n>\r\n> Let me know if you have any questions.\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company <http://lithiumbatterycompany.com>\r\n>\r\n>\r\n> On Thu, Nov 6, 2025 at 4:52 PM Nathan Staron <\r\n> Nathan@lithiumbatterycompany.com> wrote:\r\n>\r\n>> Good Afternoon, Rick,\r\n>>\r\n>> I am attaching the assembly equipment specifications and power\r\n>> requirements for your review.\r\n>>\r\n>> For our large prismatic line, the factory advised us to have 65kW power\r\n>> at 380V. To clarify this, consider it like a car: the engine might be rated\r\n>> for 300 horsepower (peak), but on average, you only use about 50 horsepower\r\n>> when driving (actual consumption).\r\n>>\r\n>> The 65kW rating ensures that our electrical system can handle brief power\r\n>> spikes, such as when laser welders are operating. However, your continuous\r\n>> consumption and electricity costs will be based on an average usage of\r\n>> approximately 19kW.\r\n>>\r\n>> Here is the math in simple terms:\r\n>> * Each module stores: 16 cells × 3.2V × 314Ah = 16.1 kWh of energy\r\n>> * Energy required to assemble one module: Approximately 2% of the\r\n>> module\'s energy = 0.32 kWh (This covers welding, conveying, testing,\r\n>> computers, etc.)\r\n>> * For 60 modules/hour: 60 × 0.32 kWh = 19.2 kW average draw\r\n>>\r\n>> This approach can also be applied to the other lines discussed previously.\r\n>>\r\n>> Please let me know if you have any questions.\r\n>>\r\n>>\r\n>> <https://lithiumbatterycompany.com/>\r\n>> <https://www.instagram.com/lithiumbatteryco/>\r\n>> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n>> <https://www.facebook.com/LithiumBatteryCompany/>\r\n>> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n>> <https://lithiumbatterycompany.com/>\r\n>> NATHAN A. STARON\r\n>> Founder / CEO\r\n>> Lithium Battery Company\r\n>> Cell Phone 813-504-0074\r\n>> Phone 844-GET-LITHIUM\r\n>> Nathan@lithiumbatterycompany.com\r\n>> Schedule A Zoom\r\n>> <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>>\r\n>>',0,0,0,0,0,0,'2025-11-07 16:18:38','2025-12-09 19:30:53','2025-12-09 19:30:53','2025-12-09 19:30:53',NULL,NULL,NULL),
(933,4,'<CAJO9__YN3CESaTH5VVztmZJGBgf6i1h7+yG8t12e5wU2B28GnQ@mail.gmail.com>',NULL,NULL,'Re: Equipment Specs and Power Requirements','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>We need to have at least 600kVA per the factory (for additional aux equipment planning). 5 @ 75kVA would not be enough power.  </div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Nov 7, 2025 at 11:19 AM Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>We could also run multiple 75kVA transformers located in the factory layout, where they showed the red boxes.  This might be better for the electrical lines to run 480V to the transformers located next to the equipment and run shorter power lines for less power loss.   There is a 5th transformer that would need to be used for the individual welders.   For 5 transformers that would come in around $31,360.  I was also hoping that we could negotiate volume pricing and save on sales tax with our exemption certificate.  <br><br>Running two 225kva transformers would come in around $30,566.   <br><br>I would pay the $794 for the benefit of not having power loss in the lines going to the equipment.   Just a thought. <br><br></div><img src=\"cid:ii_mhp208h50\" alt=\"TransformerLayout.jpg\" width=\"410\" height=\"395\"><br><div> transformers for the layout if needed.   </div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_6679896353323312632_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Nov 7, 2025 at 11:01 AM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Good morning team,</div><div><br></div><div><div>We were speaking with our factory last night and they were saying that we could operate our equipment with two step down transformers from 480v 3 phase to 380v 3 phase but both need to operate at atleast 200kVA.  To be on the safe side for when we add more equipment they said use two at 300kVA.  I found these readily available online but they are at 225kVA.  Thinking we could do three of these.  Larger format units seem to be out of stock with a 5-11 week lead time. </div><div><br></div><div>Here is the link:</div><div><a href=\"https://store.maddox.com/products/3-phase-480v-delta-380-y-220?variant=39417005834323\" target=\"_blank\">https://store.maddox.com/products/3-phase-480v-delta-380-y-220?variant=39417005834323</a></div><div><br></div><div>I have passed this along to the building&#39;s GC to show his electrician as well.</div><div><br></div><div>Let me know if you have any questions.</div></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Nov 6, 2025 at 4:52 PM Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Good Afternoon, Rick,</div><div><br></div><div>I am attaching the assembly equipment specifications and power requirements for your review.</div><div><br></div><div>For our large prismatic line, the factory advised us to have 65kW power at 380V. To clarify this, consider it like a car: the engine might be rated for 300 horsepower (peak), but on average, you only use about 50 horsepower when driving (actual consumption).</div><div><br></div><div>The 65kW rating ensures that our electrical system can handle brief power spikes, such as when laser welders are operating. However, your continuous consumption and electricity costs will be based on an average usage of approximately 19kW.</div><div><br></div><div>Here is the math in simple terms:</div><div>*   Each module stores: 16 cells × 3.2V × 314Ah = 16.1 kWh of energy</div><div>*   Energy required to assemble one module: Approximately 2% of the module&#39;s energy = 0.32 kWh (This covers welding, conveying, testing, computers, etc.)</div><div>*   For 60 modules/hour: 60 × 0.32 kWh = 19.2 kW average draw</div><div><br></div><div>This approach can also be applied to the other lines discussed previously.</div><div><br></div><div>Please let me know if you have any questions.</div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_6679896353323312632_m_-2342918463585767143_m_7890518892313790551_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div>\r\n</blockquote></div>\r\n</blockquote></div>\r\n</blockquote></div>','We need to have at least 600kVA per the factory (for additional aux\r\nequipment planning). 5 @ 75kVA would not be enough power.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Fri, Nov 7, 2025 at 11:19 AM Nathan Staron <\r\nNathan@lithiumbatterycompany.com> wrote:\r\n\r\n> We could also run multiple 75kVA transformers located in the factory\r\n> layout, where they showed the red boxes.  This might be better for the\r\n> electrical lines to run 480V to the transformers located next to the\r\n> equipment and run shorter power lines for less power loss.   There is a 5th\r\n> transformer that would need to be used for the individual welders.   For 5\r\n> transformers that would come in around $31,360.  I was also hoping that we\r\n> could negotiate volume pricing and save on sales tax with our exemption\r\n> certificate.\r\n>\r\n> Running two 225kva transformers would come in around $30,566.\r\n>\r\n> I would pay the $794 for the benefit of not having power loss in the lines\r\n> going to the equipment.   Just a thought.\r\n>\r\n> [image: TransformerLayout.jpg]\r\n>  transformers for the layout if needed.\r\n>\r\n>\r\n> <https://lithiumbatterycompany.com/>\r\n> <https://www.instagram.com/lithiumbatteryco/>\r\n> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n> <https://www.facebook.com/LithiumBatteryCompany/>\r\n> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n> <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074\r\n> Phone 844-GET-LITHIUM\r\n> Nathan@lithiumbatterycompany.com\r\n> Schedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>\r\n>\r\n>\r\n> On Fri, Nov 7, 2025 at 11:01 AM Jordan Wroblewski <\r\n> jordan@lithiumbatterycompany.com> wrote:\r\n>\r\n>> Good morning team,\r\n>>\r\n>> We were speaking with our factory last night and they were saying that we\r\n>> could operate our equipment with two step down transformers from 480v 3\r\n>> phase to 380v 3 phase but both need to operate at atleast 200kVA.  To be on\r\n>> the safe side for when we add more equipment they said use two at 300kVA.\r\n>> I found these readily available online but they are at 225kVA.  Thinking we\r\n>> could do three of these.  Larger format units seem to be out of stock with\r\n>> a 5-11 week lead time.\r\n>>\r\n>> Here is the link:\r\n>>\r\n>> https://store.maddox.com/products/3-phase-480v-delta-380-y-220?variant=39417005834323\r\n>>\r\n>> I have passed this along to the building\'s GC to show his electrician as\r\n>> well.\r\n>>\r\n>> Let me know if you have any questions.\r\n>>\r\n>>\r\n>> Jordan G. Wroblewski\r\n>>\r\n>> Partner | President\r\n>>\r\n>> Lithium Battery Company\r\n>>\r\n>> Direct: (917) 266-5336\r\n>>\r\n>> *jordan@lithiumbatterycompany.com\r\n>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>\r\n>> Lithium Battery Company <http://lithiumbatterycompany.com>\r\n>>\r\n>>\r\n>> On Thu, Nov 6, 2025 at 4:52 PM Nathan Staron <\r\n>> Nathan@lithiumbatterycompany.com> wrote:\r\n>>\r\n>>> Good Afternoon, Rick,\r\n>>>\r\n>>> I am attaching the assembly equipment specifications and power\r\n>>> requirements for your review.\r\n>>>\r\n>>> For our large prismatic line, the factory advised us to have 65kW power\r\n>>> at 380V. To clarify this, consider it like a car: the engine might be rated\r\n>>> for 300 horsepower (peak), but on average, you only use about 50 horsepower\r\n>>> when driving (actual consumption).\r\n>>>\r\n>>> The 65kW rating ensures that our electrical system can handle brief\r\n>>> power spikes, such as when laser welders are operating. However, your\r\n>>> continuous consumption and electricity costs will be based on an average\r\n>>> usage of approximately 19kW.\r\n>>>\r\n>>> Here is the math in simple terms:\r\n>>> * Each module stores: 16 cells × 3.2V × 314Ah = 16.1 kWh of energy\r\n>>> * Energy required to assemble one module: Approximately 2% of the\r\n>>> module\'s energy = 0.32 kWh (This covers welding, conveying, testing,\r\n>>> computers, etc.)\r\n>>> * For 60 modules/hour: 60 × 0.32 kWh = 19.2 kW average draw\r\n>>>\r\n>>> This approach can also be applied to the other lines discussed\r\n>>> previously.\r\n>>>\r\n>>> Please let me know if you have any questions.\r\n>>>\r\n>>>\r\n>>> <https://lithiumbatterycompany.com/>\r\n>>> <https://www.instagram.com/lithiumbatteryco/>\r\n>>> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n>>> <https://www.facebook.com/LithiumBatteryCompany/>\r\n>>> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n>>> <https://lithiumbatterycompany.com/>\r\n>>> NATHAN A. STARON\r\n>>> Founder / CEO\r\n>>> Lithium Battery Company\r\n>>> Cell Phone 813-504-0074\r\n>>> Phone 844-GET-LITHIUM\r\n>>> Nathan@lithiumbatterycompany.com\r\n>>> Schedule A Zoom\r\n>>> <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>>>\r\n>>>',0,0,0,0,0,0,'2025-11-07 16:27:38','2025-12-09 19:30:54','2025-12-09 19:30:54','2025-12-09 19:30:54',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(934,4,'<56AAD4AF-BEA7-48BA-A117-AC7149A30672@mavrix.one>',NULL,NULL,'Re: Equipment Specs and Power Requirements','Brian@mavrix.one','Brian Stufflebean','\r\n--Apple-Mail=_4FAB7CAC-F17C-482D-A2B1-FA7B9751F61D\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Type: text/html;\r\n	charset=utf-8\r\n\r\n<html><head><meta http-equiv=3D\"content-type\" content=3D\"text/html; =\r\ncharset=3Dutf-8\"></head><body style=3D\"overflow-wrap: break-word; =\r\n-webkit-nbsp-mode: space; line-break: after-white-space;\">To =\r\nall,&nbsp;<div><br></div><div>Please include Tim Zowada (above) on any =\r\nof these type of updates as well.&nbsp;</div><div><br></div><div>Thank =\r\nYou,</div><div><br></div><div>Brian&nbsp;</div><div><div><br><blockquote =\r\ntype=3D\"cite\"><div>On Nov 7, 2025, at 11:27=E2=80=AFAM, Jordan =\r\nWroblewski &lt;jordan@lithiumbatterycompany.com&gt; wrote:</div><br =\r\nclass=3D\"Apple-interchange-newline\"><div><div dir=3D\"ltr\"><div>We need =\r\nto have at least 600kVA per the factory (for additional&nbsp;aux =\r\nequipment planning). 5&nbsp;@ 75kVA would not be enough =\r\npower.&nbsp;&nbsp;</div><div><br></div><div><div dir=3D\"ltr\" =\r\nclass=3D\"gmail_signature\" data-smartmail=3D\"gmail_signature\"><div =\r\ndir=3D\"ltr\"><div style=3D\"margin: 0in;\"><span style=3D\"font-family: =\r\nArial, sans-serif;\"><br></span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif;\">Jordan G. =\r\nWroblewski</span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif; font-size: 9pt;\">Partner | =\r\nPresident&nbsp;<br></span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif; font-size: 10pt;\">Lithium =\r\nBattery Company</span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif; font-size: 10pt;\">Direct: (917) =\r\n266-5336<br></span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<=\r\na href=3D\"mailto:Jarrett.brownfield@trackmastermobility.com\" =\r\nstyle=3D\"color:blue;margin:0px\" =\r\ntarget=3D\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div =\r\nstyle=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><=\r\na href=3D\"http://lithiumbatterycompany.com/\" target=3D\"_blank\">Lithium =\r\nBattery Company</a></span></div></div></div></div><br></div><br><div =\r\nclass=3D\"gmail_quote gmail_quote_container\"><div dir=3D\"ltr\" =\r\nclass=3D\"gmail_attr\">On Fri, Nov 7, 2025 at 11:19=E2=80=AFAM Nathan =\r\nStaron &lt;<a =\r\nhref=3D\"mailto:Nathan@lithiumbatterycompany.com\">Nathan@lithiumbatterycomp=\r\nany.com</a>&gt; wrote:<br></div><blockquote class=3D\"gmail_quote\" =\r\nstyle=3D\"margin:0px 0px 0px 0.8ex;border-left:1px solid =\r\nrgb(204,204,204);padding-left:1ex\"><div dir=3D\"ltr\"><div>We could also =\r\nrun multiple 75kVA transformers located in the factory layout, where =\r\nthey showed the red boxes.&nbsp; This might be better for the electrical =\r\nlines to run 480V to the transformers located next to the equipment and =\r\nrun shorter power lines for less power loss.&nbsp; &nbsp;There is a 5th =\r\ntransformer that would need to be used for the =\r\nindividual&nbsp;welders.&nbsp; &nbsp;For 5 transformers&nbsp;that would =\r\ncome in around&nbsp;$31,360.&nbsp; I was also hoping that we could =\r\nnegotiate volume pricing and save on sales tax with our exemption =\r\ncertificate.&nbsp;&nbsp;<br><br>Running two 225kva transformers would =\r\ncome in around $30,566.&nbsp; &nbsp;<br><br>I would pay the $794 for the =\r\nbenefit of not having power loss in the lines going to the =\r\nequipment.&nbsp; &nbsp;Just a thought.&nbsp;<br><br></div><img =\r\nalt=3D\"TransformerLayout.jpg\" =\r\nsrc=3D\"cid:ii_mhp208h50\"><br><div>&nbsp;transformers for the layout if =\r\nneeded.&nbsp; &nbsp;</div><div><div dir=3D\"ltr\" =\r\nclass=3D\"gmail_signature\"><div dir=3D\"ltr\"><br><div><br></div><div><table =\r\ncellpadding=3D\"0\" cellspacing=3D\"0\" border=3D\"0\" style=3D\"border: =\r\nmedium; border-collapse: collapse; font-size: 10px; font-family: Inter, =\r\nsans-serif;\"><tbody><tr style=3D\"border:none;border-collapse:collapse\"><td=\r\n style=3D\"border:none;border-collapse:collapse;line-height:16px\"><table =\r\ncellpadding=3D\"0\" cellspacing=3D\"0\" style=3D\"border:none\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td valign=3D\"top\" =\r\nalign=3D\"left\" style=3D\"border:1px solid =\r\nrgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px =\r\n8px 8px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://lithiumbatterycompany.com/\" target=3D\"_blank\"><img =\r\nalt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/web-icon=\r\n.gif\" width=3D\"24\" style=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.instagram.com/lithiumbatteryco/\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/insta-ic=\r\non.gif\" width=3D\"24\" style=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.linkedin.com/company/the-lithium-battery-company\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/linkedin=\r\n-icon.gif\" width=3D\"24\" style=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.facebook.com/LithiumBatteryCompany/\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/facebook=\r\n-icon.gif\" width=3D\"24\" style=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.youtube.com/c/LithiumBatteryCompany\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/youtube-=\r\nicon.gif\" width=3D\"24\" style=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr></tbody></table></td><td =\r\nwidth=3D\"8\" =\r\nstyle=3D\"border:none;border-collapse:collapse;display:revert\">&nbsp;</td><=\r\ntd valign=3D\"top\" align=3D\"left\" style=3D\"border:1px solid =\r\nrgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\">=\r\n<table width=3D\"100%\" border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td align=3D\"left\" =\r\nvalign=3D\"middle\" style=3D\"border:none;border-collapse:collapse\"><table =\r\nwidth=3D\"100%\" border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><a =\r\nhref=3D\"https://lithiumbatterycompany.com/\" target=3D\"_blank\"><img =\r\nsrc=3D\"https://app.customesignature.com/upload/signature/11122/11122.png\" =\r\nwidth=3D\"170\" style=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:0px 0px =\r\n10px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:15px 0px =\r\n0px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td align=3D\"left\" =\r\nvalign=3D\"middle\" style=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:20px\">NATHAN A. =\r\nSTARON</span></td><td align=3D\"left\" valign=3D\"middle\" =\r\nstyle=3D\"border:none;border-collapse:collapse;padding-left:5px\"><img =\r\nwidth=3D\"15\" height=3D\"15\" =\r\nsrc=3D\"https://app.customesignature.com/images/verify.gif\" =\r\nstyle=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-size:12px\">Founder / =\r\nCEO</span></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Lithium Battery =\r\nCompany</span></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Cell Phone</span>&nbsp;<a =\r\nhref=3D\"tel:813-504-0074\" style=3D\"font-size: 12px;\" =\r\ntarget=3D\"_blank\">813-504-0074</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Phone</span>&nbsp;<a =\r\nhref=3D\"tel:844-GET-LITHIUM\" style=3D\"font-size: 12px;\" =\r\ntarget=3D\"_blank\">844-GET-LITHIUM</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><a =\r\nhref=3D\"mailto:Nathan@lithiumbatterycompany.com\" style=3D\"\" =\r\ntarget=3D\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px =\r\n0px\"><table cellpadding=3D\"0\" cellspacing=3D\"0\" border=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;display:flex;font-weight:bol=\r\nd\"><a href=3D\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" =\r\nstyle=3D\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px =\r\n15px;text-align:center;font-size:12px;line-height:14px;display:inline-bloc=\r\nk\" target=3D\"_blank\">Schedule A =\r\nZoom</a></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><table cellpadding=3D\"0\" =\r\ncellspacing=3D\"0\" border=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"></tr></tbody></table></td><=\r\n/tr></tbody></table></td><td align=3D\"left\" valign=3D\"middle\" =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:0px 0px 0px =\r\n15px;display:revert\"><div style=3D\"max-height:0px;overflow:visible\"><img =\r\nsrc=3D\"https://app.customesignature.com/upload/signature/profile/173870830=\r\n7-11122.jpg\" width=3D\"140\" style=3D\"display: block; border-radius: =\r\n10px;\" data-unique-identifier=3D\"\"></div><img =\r\nsrc=3D\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gi=\r\nf\" =\r\nname=3D\"m_6679896353323312632_SignatureSanitizer_profile_annimation_gif\" =\r\nwidth=3D\"140\" style=3D\"display: block; border-radius: 10px;\" =\r\ndata-unique-identifier=3D\"\"></td></tr></tbody></table></td></tr></tbody></=\r\ntable></td></tr><tr style=3D\"border:none;border-collapse:collapse\"><td =\r\nalign=3D\"left\" valign=3D\"top\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><table border=3D\"0\" =\r\ncellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"></tr></tbody></table></td><=\r\n/tr><tr style=3D\"border:none;border-collapse:collapse\"></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:10px 0px =\r\n0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><b=\r\nr><div class=3D\"gmail_quote\"><div dir=3D\"ltr\" class=3D\"gmail_attr\">On =\r\nFri, Nov 7, 2025 at 11:01=E2=80=AFAM Jordan Wroblewski &lt;<a =\r\nhref=3D\"mailto:jordan@lithiumbatterycompany.com\" =\r\ntarget=3D\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; =\r\nwrote:<br></div><blockquote class=3D\"gmail_quote\" style=3D\"margin:0px =\r\n0px 0px 0.8ex;border-left:1px solid =\r\nrgb(204,204,204);padding-left:1ex\"><div dir=3D\"ltr\"><div>Good morning =\r\nteam,</div><div><br></div><div><div>We were speaking with our factory =\r\nlast night and they were saying that we could operate our equipment with =\r\ntwo step down transformers from 480v 3 phase to 380v 3 phase but both =\r\nneed to operate at atleast 200kVA.&nbsp; To be on the safe side for when =\r\nwe add more equipment they said use two at 300kVA.&nbsp; I found these =\r\nreadily available online but they are at 225kVA.&nbsp; Thinking we could =\r\ndo three of these.&nbsp; Larger format units seem to be out of stock =\r\nwith a 5-11 week lead time.&nbsp;</div><div><br></div><div>Here is the =\r\nlink:</div><div><a =\r\nhref=3D\"https://store.maddox.com/products/3-phase-480v-delta-380-y-220?var=\r\niant=3D39417005834323\" =\r\ntarget=3D\"_blank\">https://store.maddox.com/products/3-phase-480v-delta-380=\r\n-y-220?variant=3D39417005834323</a></div><div><br></div><div>I have =\r\npassed this along to the building\'s GC to show his electrician as =\r\nwell.</div><div><br></div><div>Let me know&nbsp;if you have any =\r\nquestions.</div></div><div><div dir=3D\"ltr\" class=3D\"gmail_signature\"><div=\r\n dir=3D\"ltr\"><div style=3D\"margin: 0in;\"><span style=3D\"font-family: =\r\nArial, sans-serif;\"><br></span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif;\">Jordan G. =\r\nWroblewski</span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif; font-size: 9pt;\">Partner | =\r\nPresident&nbsp;<br></span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif; font-size: 10pt;\">Lithium =\r\nBattery Company</span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif; font-size: 10pt;\">Direct: (917) =\r\n266-5336<br></span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<=\r\na href=3D\"mailto:Jarrett.brownfield@trackmastermobility.com\" =\r\nstyle=3D\"color:blue;margin:0px\" =\r\ntarget=3D\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div =\r\nstyle=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><=\r\na href=3D\"http://lithiumbatterycompany.com/\" target=3D\"_blank\">Lithium =\r\nBattery Company</a></span></div></div></div></div><br></div><br><div =\r\nclass=3D\"gmail_quote\"><div dir=3D\"ltr\" class=3D\"gmail_attr\">On Thu, Nov =\r\n6, 2025 at 4:52=E2=80=AFPM Nathan Staron &lt;<a =\r\nhref=3D\"mailto:Nathan@lithiumbatterycompany.com\" =\r\ntarget=3D\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt; =\r\nwrote:<br></div><blockquote class=3D\"gmail_quote\" style=3D\"margin:0px =\r\n0px 0px 0.8ex;border-left:1px solid =\r\nrgb(204,204,204);padding-left:1ex\"><div dir=3D\"ltr\"><div>Good Afternoon, =\r\nRick,</div><div><br></div><div>I am attaching the assembly equipment =\r\nspecifications and power requirements for your =\r\nreview.</div><div><br></div><div>For our large prismatic line, the =\r\nfactory advised us to have 65kW power at 380V. To clarify this, consider =\r\nit like a car: the engine might be rated for 300 horsepower (peak), but =\r\non average, you only use about 50 horsepower when driving (actual =\r\nconsumption).</div><div><br></div><div>The 65kW rating ensures that our =\r\nelectrical system can handle brief power spikes, such as when laser =\r\nwelders are operating. However, your continuous consumption and =\r\nelectricity costs will be based on an average usage of approximately =\r\n19kW.</div><div><br></div><div>Here is the math in simple =\r\nterms:</div><div>*   Each module stores: 16 cells =C3=97 3.2V =C3=97 =\r\n314Ah =3D 16.1 kWh of energy</div><div>*   Energy required to assemble =\r\none module: Approximately 2% of the module\'s energy =3D 0.32 kWh (This =\r\ncovers welding, conveying, testing, computers, etc.)</div><div>*   For =\r\n60 modules/hour: 60 =C3=97 0.32 kWh =3D 19.2 kW average =\r\ndraw</div><div><br></div><div>This approach can also be applied to the =\r\nother lines discussed previously.</div><div><br></div><div>Please let me =\r\nknow if you have any questions.</div><div><div dir=3D\"ltr\" =\r\nclass=3D\"gmail_signature\"><div dir=3D\"ltr\"><br><div><br></div><div><table =\r\ncellpadding=3D\"0\" cellspacing=3D\"0\" border=3D\"0\" style=3D\"border: =\r\nmedium; border-collapse: collapse; font-size: 10px; font-family: Inter, =\r\nsans-serif;\"><tbody><tr style=3D\"border:none;border-collapse:collapse\"><td=\r\n style=3D\"border:none;border-collapse:collapse;line-height:16px\"><table =\r\ncellpadding=3D\"0\" cellspacing=3D\"0\" style=3D\"border:none\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td valign=3D\"top\" =\r\nalign=3D\"left\" style=3D\"border:1px solid =\r\nrgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px =\r\n8px 8px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://lithiumbatterycompany.com/\" target=3D\"_blank\"><img =\r\nalt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/web-icon=\r\n.gif\" width=3D\"24\" style=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.instagram.com/lithiumbatteryco/\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/insta-ic=\r\non.gif\" width=3D\"24\" style=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.linkedin.com/company/the-lithium-battery-company\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/linkedin=\r\n-icon.gif\" width=3D\"24\" style=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.facebook.com/LithiumBatteryCompany/\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/facebook=\r\n-icon.gif\" width=3D\"24\" style=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.youtube.com/c/LithiumBatteryCompany\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/youtube-=\r\nicon.gif\" width=3D\"24\" style=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr></tbody></table></td><td =\r\nwidth=3D\"8\" =\r\nstyle=3D\"border:none;border-collapse:collapse;display:revert\">&nbsp;</td><=\r\ntd valign=3D\"top\" align=3D\"left\" style=3D\"border:1px solid =\r\nrgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\">=\r\n<table width=3D\"100%\" border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td align=3D\"left\" =\r\nvalign=3D\"middle\" style=3D\"border:none;border-collapse:collapse\"><table =\r\nwidth=3D\"100%\" border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><a =\r\nhref=3D\"https://lithiumbatterycompany.com/\" target=3D\"_blank\"><img =\r\nsrc=3D\"https://app.customesignature.com/upload/signature/11122/11122.png\" =\r\nwidth=3D\"170\" style=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:0px 0px =\r\n10px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:15px 0px =\r\n0px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td align=3D\"left\" =\r\nvalign=3D\"middle\" style=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:20px\">NATHAN A. =\r\nSTARON</span></td><td align=3D\"left\" valign=3D\"middle\" =\r\nstyle=3D\"border:none;border-collapse:collapse;padding-left:5px\"><img =\r\nwidth=3D\"15\" height=3D\"15\" =\r\nsrc=3D\"https://app.customesignature.com/images/verify.gif\" =\r\nstyle=3D\"display: block;\" =\r\ndata-unique-identifier=3D\"\"></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-size:12px\">Founder / =\r\nCEO</span></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Lithium Battery =\r\nCompany</span></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Cell Phone</span>&nbsp;<a =\r\nhref=3D\"tel:813-504-0074\" style=3D\"font-size: 12px;\" =\r\ntarget=3D\"_blank\">813-504-0074</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Phone</span>&nbsp;<a =\r\nhref=3D\"tel:844-GET-LITHIUM\" style=3D\"font-size: 12px;\" =\r\ntarget=3D\"_blank\">844-GET-LITHIUM</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><a =\r\nhref=3D\"mailto:Nathan@lithiumbatterycompany.com\" style=3D\"\" =\r\ntarget=3D\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px =\r\n0px\"><table cellpadding=3D\"0\" cellspacing=3D\"0\" border=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;display:flex;font-weight:bol=\r\nd\"><a href=3D\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" =\r\nstyle=3D\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px =\r\n15px;text-align:center;font-size:12px;line-height:14px;display:inline-bloc=\r\nk\" target=3D\"_blank\">Schedule A =\r\nZoom</a></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><table cellpadding=3D\"0\" =\r\ncellspacing=3D\"0\" border=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"></tr></tbody></table></td><=\r\n/tr></tbody></table></td><td align=3D\"left\" valign=3D\"middle\" =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:0px 0px 0px =\r\n15px;display:revert\"><div style=3D\"max-height:0px;overflow:visible\"><img =\r\nsrc=3D\"https://app.customesignature.com/upload/signature/profile/173870830=\r\n7-11122.jpg\" width=3D\"140\" style=3D\"display: block; border-radius: =\r\n10px;\" data-unique-identifier=3D\"\"></div><img =\r\nsrc=3D\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gi=\r\nf\" =\r\nname=3D\"m_6679896353323312632_m_-2342918463585767143_m_7890518892313790551=\r\n_SignatureSanitizer_profile_annimation_gif\" width=3D\"140\" =\r\nstyle=3D\"display: block; border-radius: 10px;\" =\r\ndata-unique-identifier=3D\"\"></td></tr></tbody></table></td></tr></tbody></=\r\ntable></td></tr><tr style=3D\"border:none;border-collapse:collapse\"><td =\r\nalign=3D\"left\" valign=3D\"top\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><table border=3D\"0\" =\r\ncellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"></tr></tbody></table></td><=\r\n/tr><tr style=3D\"border:none;border-collapse:collapse\"></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:10px 0px =\r\n0px\"><a></a></td></tr></tbody></table></div></div></div></div></div>\r\n</blockquote></div>\r\n</blockquote></div>\r\n</blockquote></div>\r\n</div></blockquote></div><br><div>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; orphans: auto; text-align: start; text-indent: 0px; =\r\ntext-transform: none; white-space: normal; widows: auto; word-spacing: =\r\n0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><font size=3D\"2\">Best =\r\nregards,</font></div><div style=3D\"font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><font =\r\nsize=3D\"2\"><br></font></div><div style=3D\"font-family: Helvetica; =\r\nfont-size: 12px; font-style: normal; font-variant-caps: normal; =\r\nfont-weight: 400; letter-spacing: normal; orphans: auto; text-align: =\r\nstart; text-indent: 0px; text-transform: none; white-space: normal; =\r\nwidows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\" style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><b>Brian C. =\r\nStufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 =\r\nDirect</b></div><div style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><span style=3D\"font-size: =\r\n11px;\">(866)896-2423 Fax</span></div></div><span style=3D\"caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0); font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"></span><br class=3D\"Apple-interchange-newline\"><span><img =\r\nalt=3D\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" =\r\nsrc=3D\"cid:CB596987-D3CC-4C61-B9D3-CE1C1DF1C723\"></span><meta =\r\ncharset=3D\"UTF-8\"><div style=3D\"font-family: Helvetica; font-size: 12px; =\r\nfont-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br =\r\nclass=3D\"Apple-interchange-newline\"><br =\r\nclass=3D\"Apple-interchange-newline\"><a =\r\nhref=3D\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a =\r\nhref=3D\"https://mavrix1.com\">https://mavrix1.com/</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY =\r\nNOTICE:</b><span style=3D\"font-family: Helvetica; font-style: normal; =\r\nfont-weight: 400; font-size: =\r\n12px;\">&nbsp;This&nbsp;communication&nbsp;is =\r\nconfidential&nbsp;and&nbsp;intended only for the =\r\nintended&nbsp;recipient.&nbsp;&nbsp;If you are not the =\r\nintended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, =\r\nor&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any =\r\nsuch&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this =\r\ncommunication&nbsp;in error,&nbsp;please contact the sender =\r\nof&nbsp;the&nbsp;message to inform him or her of =\r\nthe&nbsp;error.<br><br></span></div>\r\n</div>\r\n<br></div></body></html>=\r\n\r\n--Apple-Mail=_4FAB7CAC-F17C-482D-A2B1-FA7B9751F61D\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=TransformerLayout.jpg\r\nContent-Type: image/jpeg;\r\n	x-unix-mode=0644;\r\n	name=\"TransformerLayout.jpg\"\r\nContent-Id: <ii_mhp208h50>\r\n\r\n/9j/4AAQSkZJRgABAQAAAQABAAD/4gI0SUNDX1BST0ZJTEUAAQEAAAIkYXBwbAQAAABtbnRyUkdC\r\nIFhZWiAH4QAHAAcADQAWACBhY3NwQVBQTAAAAABBUFBMAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAA\r\nAADTLWFwcGzKGpWCJX8QTTiZE9XR6hWCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAApk\r\nZXNjAAAA/AAAAGVjcHJ0AAABZAAAACN3dHB0AAABiAAAABRyWFlaAAABnAAAABRnWFlaAAABsAAA\r\nABRiWFlaAAABxAAAABRyVFJDAAAB2AAAACBjaGFkAAAB+AAAACxiVFJDAAAB2AAAACBnVFJDAAAB\r\n2AAAACBkZXNjAAAAAAAAAAtEaXNwbGF5IFAzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHRleHQA\r\nAAAAQ29weXJpZ2h0IEFwcGxlIEluYy4sIDIwMTcAAFhZWiAAAAAAAADzUQABAAAAARbMWFlaIAAA\r\nAAAAAIPfAAA9v////7tYWVogAAAAAAAASr8AALE3AAAKuVhZWiAAAAAAAAAoOAAAEQsAAMi5cGFy\r\nYQAAAAAAAwAAAAJmZgAA8qcAAA1ZAAAT0AAACltzZjMyAAAAAAABDEIAAAXe///zJgAAB5MAAP2Q\r\n///7ov///aMAAAPcAADAbv/bAEMAAwICAgICAwICAgMDAwMEBgQEBAQECAYGBQYJCAoKCQgJCQoM\r\nDwwKCw4LCQkNEQ0ODxAQERAKDBITEhATDxAQEP/bAEMBAwMDBAMECAQECBALCQsQEBAQEBAQEBAQ\r\nEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEP/AABEIA5sDvgMBIgACEQED\r\nEQH/xAAfAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgv/xAC1EAACAQMDAgQDBQUEBAAAAX0B\r\nAgMABBEFEiExQQYTUWEHInEUMoGRoQgjQrHBFVLR8CQzYnKCCQoWFxgZGiUmJygpKjQ1Njc4OTpD\r\nREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmq\r\nsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4eLj5OXm5+jp6vHy8/T19vf4+fr/xAAfAQADAQEB\r\nAQEBAQEBAAAAAAAAAQIDBAUGBwgJCgv/xAC1EQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFR\r\nB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVW\r\nV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrC\r\nw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/AP0/+33f/QGu\r\nv+/kP/xygX93/wBAW6/7+Q//ABytDL0ZegCiL+7/AOgNd/8AfcX/AMXS/b7v/oDXf/fcX/xdX8v6\r\nUZf0oAofb7z/AKA15/33F/8AF0fb7z/oDXn/AH3F/wDF1ew3p+tGG9P1oAo/b7z/AKA15/33F/8A\r\nF0fb7z/oDXn/AH3F/wDF1ew3p+tGG9P1oAo/b7z/AKA15/33F/8AF0fb7z/oDXn/AH3F/wDF1ew3\r\np+tGG9P1oAo/b7z/AKA15/33F/8AF0fb7z/oDXn/AH3F/wDF1ew3p+tGG9P1oAo/b7z/AKA15/33\r\nF/8AF0fb7z/oDXn/AH3F/wDF1ew3p+tGG9P1oAo/b7z/AKA15/33F/8AF0fb7z/oDXn/AH3F/wDF\r\n1ew3p+tGG9P1oAoG+uyMf2Nef99xf/F18/fEj9v/APZh+DfjvUvhd8Q/Guo6X4j0VImvLU6NdTCM\r\nSQJOg3wxshzHIh49a+kK/A//AIKY/wDJ+HxO/wCuOmf+mO0oA/XTwt+2n8IvGeg2vibwjoHxL1rS\r\nL5Wa31HTfh3rl1azBWKtsljtGVsOpXjoRjtXSfD39pT4efE/xD/wjHhO18Uf2j9kvLxYtT8NX+mL\r\nIlpcx210sb3cUSSPDPMkUiK2UbIPSvLf+CYX/JjPw2/3dY/9O93XWfCj4T+L/D3jbS/GOtpb2Vvp\r\ncvxGt5bdpQ80qaz4nhv7CWMJuQp9mtyWBYMpeNduQwQA9u/tS7/6AF//AN9wf/HaP7Uu/wDoAX3/\r\nAH3B/wDHa0BuI+/+lLg/3/0oAzv7Uu/+gBff99wf/HaP7Uu/+gBff99wf/Ha0cN/f/SjDf3/ANKA\r\nM7+1Lv8A6AF9/wB9wf8Ax2j+1Lv/AKAF9/33B/8AHa0cN/f/AEow39/9KAM7+1Lv/oAX3/fcH/x2\r\nuH8YfH74eeA/EbeEvFtxf6fqi6DeeJTCbNph/Z1qf382+Lcvy/3M7z2U1S+Df/I//HL/ALH6y/8A\r\nUW0GvJv2hviN4/8ACvxK1fwxNocXiD4by/DfVb3VdAhuraxupXWK6MkguXnWeOLYkcW+KP8Ad+bn\r\naf4QD0af9q/4OwafbXxvtWltLzwt/wAJlDNb6VcPF/Yux3FyzqmIjtjciN9shxwpq5/w078JkEgW\r\n+vwLfwinjmTNk42aI33bn/7V/rf9ivlWX4h+G7uwsvh+fBOtaX4Pm+Adxqo0iPUIdSfTLa+u9twk\r\nNxNKvnfuoY/L/fqu2NFiVfu1iacllL8SdQsvBYl1y0k/Z2SGBbrUdMtXtIBcHy4pp33QL5Xkpayb\r\nvM2v5btv+Z1AP0B8OeM9P8WeHNL8WeHoJ77TNasYNRsZE2I0sE0YdG2uwK5DDrV/+1rz/oXtQ/7+\r\nW3/x2uJ+AsENj8H/AAbp8MGkRSWmkW8N7HpItvsqXyri8VPs37jKziQMI/l3bq9JAwMUAZn9q3f/\r\nAEL2of8Afy2/+O0f2rd/9C9qH/fy2/8AjtalFAGX/at3/wBC9qH/AH8tv/jtH9q3h/5l7UP+/lt/\r\n8drg/Gfx00/Stem+H/w88O3XjjxzFGskujWMywwWCt0e+vGBhtV4PyndK38Eb18z/sc/softC/CP\r\n9oHxt8Ufi345s57LWftUTRWGoPcprE032WRbhlaNdiw7WjG75t2/aqR/6wA+1P7RvT/zLt9/33b/\r\nAPxyj+0b7/oXb7/vu3/+OVpbx/eo3r/eoAzf7Rvv+hdvv++7f/45R/aN9/0Lt9/33b//ABytLev9\r\n6jev96gDN/tG+/6AV9/33b//AByj+0b7/oBX3/fdv/8AHK0d6+n60bx6fqKAM7+0b7/oBX3/AH3b\r\n/wDxyj+0b7/oBX3/AH3b/wDxytHePT9RRvHp+ooAzv7Rvv8AoBX3/fdv/wDHKP7Rvv8AoBX3/fdv\r\n/wDHK0d49P1FG8en6igDO/tG+/6AV9/33b//AByj+0b7/oBX3/fdv/8AHK0d4/u0bx/doAzv7Rvv\r\n+gFff992/wD8co/tG+/6AV9/33b/APxytHeP7tG8f3aAM7+073/oA33/AH3b/wDxyj+073/oA33/\r\nAH3b/wDxytHj0/UUcen60AZ39p3v/QBvv++7f/45WLovj7RtX8Q614S0q1u5L/w6bYalGygC3a4X\r\nzI03k7C2z5yqsdqsnQMuetyK/Mv44/EfV/B37THxi0bT/wCxYIjqdpfeZefGubwk89x/wjenpBAt\r\nlHqlp8m/y2+1eW+4Zi/h3RAH6BeFfiV4Z8V6CfEWhySyaYdQvdMjmlKRKbi1upLSWMeYy4PnxSIo\r\nP3sZXK4NXbrxfZ2BhhubZ4Tcy/ZYI3ubRfMm/uL+9+97V+cnhkfCj4q/AT4WaVqv7Rvwy+HWs+Df\r\nHXiDX7zSdQ8b21zdw51m+eOKK8M7SNw/y3e52kTy5FY7snqrvwT8BNV8Y+EfEV1+2f8ACKwi8MeM\r\nD4ycxeNre6nnuneKRkBknVFRfs8ESjb8yxlm5faoB92WPi/T7vxVqfguOGcavpNhZ6pc2525FtdS\r\n3EcD5zt+ZrO4GM5HlnoNufPPB37XnwH8efErxD8I/DPi6S58T+FWnj1a1ksZ4Et3iu47SRfOkRY2\r\nxPKifKxyTxmsz4V+O/AfxD/aD+IuvfD3xz4e8WWNp4I8JWMt9oeowXkCTi9152jLQsyq+JEJXPQp\r\nX52ftc69rPwy/bK8QzftVeLbnVNI1Tw6T4TfwxpNvPcWWi/2289naSpJ9lXciwTkybpfn8v/AFy7\r\n0oA+6L7/AIKafsW6WypqPxbnidooZcDw9qTjbJEki8rAR911qXWf+CmH7F2gXEdnqfxakjnktbe8\r\n8tdB1Fz5c8KzRfdgIyY3RiucrnDbWG2vwpuW8J3D2ZtdZ1cFniju0fTYcRxiOIM8bLMN7bvNAQqm\r\nFSPL5ZtmJpS6Lc6rEniC/vbLT2b99PZ2aXUyD1WN5Yg30LrQB+/2rf8ABRP9kfQvG998Otb+JrWG\r\nvaZqkujXsM+lXiwwXUcxhdWuPK8kKHUgvv2e+Oa2PC/7a37O3iifW7Hwx4nmuZvD3hafxrqkQsZk\r\ne10iLYWmkVl3KwSRG8kjzdpUhCCpP4tQfBq0+JfjW8+LOiaPcab8F9U+ItxoUV5qHiPTNPvbe1bz\r\nL37OZb+5CJcixUlXmcxtKAu9m4P0T8H/AIJ/C59b8Uan4l+OfgvRLWXwPP4fhfWPifpFk2oXtyZt\r\nyp/Y99cJFbqnkJIkyyKzSFxE/wBwAH67XvjXSNP8VWHgudZBrGqWN5qdnB8oEttayW8dw+/O0FWu\r\n4OCcnfx91tusNSk6f2XL/wB/Yf8A4uvk74E614Bm+MPw08EeCPiV4J8Xjw14C8Yxzv4Y1eK+jhhk\r\n1bRDbNIEZvKZkUcE/eSTb3r67K8A7cUAQfb5zyNLuP8AvuL/AOKo+3T/APQKuP8AvuL/AOKqf956\r\nN+f/ANajL+jfn/8AWoAh+23P/QJufzi/+Lo+23P/AECbn84v/i6m+b+4fyFGG/uH8hQBX+13X/QI\r\nufzi/wDi6Ptd1/0CLn84v/i6tbT/AHD+Qo2n+4fyFAFX7Xdf9Ai5/OL/AOLo+2XX/QIuvzi/+Lq1\r\ntP8AcP5CgKf7h/IUAVft91/0Crz84v8A4uj7fd/9Au9/OL/4uruT7/nRk+/50AUvt93/ANAu9/OL\r\n/wCLo+33f/QLvfzi/wDi6u5Pv+dGT7/nQBS+33f/AEC7384v/i6Pt93/ANAu9/OL/wCLq7k+/wCd\r\nGT7/AJ0AUvt93/0C7384v/i6Pt93/wBAu9/OL/4uruT7/nRk+/50AUvt93/0C7384v8A4uj7fd/9\r\nAu9/OL/4uruT7/nRk+/50AUvt93/ANAu9/OL/wCLo+33f/QLvfzi/wDi6u5Pv+dGT7/nQBS+33f/\r\nAEC7384v/i6Pt93/ANAu9/OL/wCLq7k+/wCdGT7/AJ0AUvt93/0C7384v/i6Pt93/wBAu9/OL/4u\r\nruT7/nRk+/50AUvt93/0C7384v8A4uj7fd/9Au9/OL/4uruT7/nRk+/50AUvt93/ANAu9/OL/wCL\r\no+33f/QLvfzi/wDi6u5Pv+dGT7/nQBS+33f/AEC7384v/i6Pt93/ANAu9/OL/wCLq7k+/wCdGT7/\r\nAJ0AUvt93/0C7384v/i6Pt93/wBAu9/OL/4uruT7/nRk+/50AUvt93/0C7384v8A4uj7fd/9Au9/\r\nOL/4uruT7/nRk+/50AUvt93/ANAu9/OL/wCLo+33f/QLvfzi/wDi6u5Pv+dGT7/nQBS+33f/AEC7\r\n384v/i6Pt93/ANAu9/OL/wCLq7k+/wCdGT7/AJ0AUvt93/0C7384v/i6Pt93/wBAu9/OL/4uruT7\r\n/nRk+/50AUvt93/0C7384v8A4uj7fd/9Au9/OL/4uruT7/nRk+/50AUvt93/ANAu9/OL/wCLo+33\r\nf/QLvfzi/wDi6u5Pv+dGT7/nQBS+33f/AEC7384v/i6Pt93/ANAu9/OL/wCLq7k+/wCdGT7/AJ0A\r\nUvt93/0C7384v/i6Pt93/wBAu9/OL/4uruT7/nRk+/50AUvt93/0C7384v8A4uj7fd/9Au9/OL/4\r\nuruT7/nRk+/50AUvt93/ANAu9/OL/wCLo+33f/QLvfzi/wDi6u5Pv+dGT7/nQBS+33f/AEC7384v\r\n/i64nwj8cPBPju40O38NzalM3iTR217SzPp09sl5p4isZWuImlRVdQup2Y/3ndPvxSqnodfC37F3\r\niTXvEPjH4Zabqt+ZLTw98NLjTNMRY1QwW7aH4BumTKgFv391cNlskb9v3VUAA+3BezAY/sq6/wDI\r\nX/xVL9um/wCgVdf+Qv8A4qr2KMUALRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFfgZ/\r\nwUx/5Pw+J3/XHTP/AEx2lfvnX4F/8FMiB+3f8TSf+eOmD/yh2lAH6j/8Ewv+TGfht/u6x/6d7ur/\r\nAMIbn+z/AIn+HNE0bW9Qm0iX/hbNzcxSD7Mkl4vjCz/5ZrIQ/lNNcRo/Xbzti8zbVD/gmF/yYz8N\r\nv93WP/Tvd1t/Ajwlquo+JLDx8PITTNE1n4raNOhL+c8994xSSFlG3BULYzbvm4JTg9VAPo8DAwKK\r\nKKAH0UUUAFFFFAHGeDPBn/CJ+IvHOt/2kLv/AITPxBDrnlCHZ9k2aZY2PlZ3HzP+PDfuwuPM24+X\r\nJ8E/aM0TwJqPxRFprfiyXw7cz/D3WrF7271MWul28Msc0Mckyhl3bTNc5LDavybdv8fq/wAH0U/E\r\nX45H/qf7P/1FtCrwH9qDTtc1T9pRtP8ADlrNLen4Pa6YxFZNdb38x18pYUkjdnk+4vzUAYF38Cry\r\nzisZ9E8TxXdnB8CZfC2m+LIr+a10C2ihuHmtrq4u424/dpGWMX8Bk+RY9q1meIPDniFfGmpr4i8d\r\nW954ZvP2cv8AhHLW9t9fMmnXWtO8ALxO5+Z7hPLZXZN8qkH+GkisvF9hqmmaPe2/i27huvgB5Evw\r\n+S9nV/tkzylpmsZJzIvl7fsn3W2+ZFF8qfd9+8O2tp8K/wBma2+J0ngqbR9d8LeCTNHY6yrs+nxW\r\n8Ly/Zlja4k8hP4NiSr8uxW/1aqoBs/sb6Nqugfs7+EtH1zQtR0a/tRqCXFlqEBgmib7fccGM/Mq4\r\nxtz/AAba9wGMcGuN+FWu6j4x8BeH/GOqzW7za3p8OoILaFoY1hmHmRDy2dyrCN0DDcfmBrnvHPjT\r\n4kz69J4E+FHgySS+jWOS88Ra9DJBo2nqxzheVlvpCufkgIVSRvlQ/LQB13jb4keCvhxpX9teNtfg\r\n0u1eVLeAMGkmup3OEhghjDSTysekcasx7A15g0Pxn+OzBr6fUfhV4IcHFnbzJ/wk2qJnrLKuV02M\r\nj+GMtcccvEcrXTeAvgb4c8La43jzxFfXvi3xpNG0cniDWSkk8KNy0NrGqiO0hz/yziVQcAtuPNel\r\nhR19KAMDwP4B8I/Djw/B4Y8F6BZ6Rp0BLCC2iCBnP3ncjl3OOWOSe5roKTI59qXrQAm1fQUbF/ui\r\nlooATYvTaKTanoOa/O79qf8Ab8/aY+E3xp+Ifw8+F3ws8H63ongq60aEapqFvdNJCbvTPtnlShLm\r\nMO8jJKI9u0Yh2EO7rVX4k/8ABS39o39n/X/7O+M/7HEGm2s+m2F3DFbeKw/kPcSXYjMtxHFNEvmr\r\naSBICqP/AKLO2XU/IAfo5tUdqNq+lfnV8Hf+Co/xk+POv3GgfCT9iPV/Elzb7RcyW/jBY7a13K7J\r\n9ouJLJYYdwil273XcU2rk1Fef8FXPH1h8R7H4Rz/ALKFq3i7UdXbQodLi+JNpK66gL2Sy+zyMlqU\r\nif7REy4kZflKSD926MQD9Gtq+lGFHavzGuv+Cyutaf4UsfGM37LTJo+o6jeaVaznxup33NrHbyXC\r\nbfsW9di3lsfu7T5mAeCK8913/grL+13pmlWvi+3+D/w8sPDOtxte6PJc2t5Mz2n2ma3HzpdqH2y2\r\n0kbny0+YDhA6UAfr3tX0o2r6UyAzGCM3AUSlBvC9A2OcfjUlAC7F/uijYv8AdFOooAbsX+6KNi/3\r\nRTqKAE2r6UbV9KWigBMD0paKKACivBf2zLvULP4IJ4Y8NeM7rwzrninxR4d8O6PPYa42kXks11rF\r\nqrw29yqyPG3keeSVil2xrI3lOqFDxf8Awrz9ub/opn/l+6T/APMVQB9WkA9RWV4o8JeF/G+jTeHf\r\nGPh3Tdc0m5KGew1G0jubebY6uoeOQFWw6IwyOqg9q/I/4/ftq/Ff4JfGu58EeP8AWfirP4k8IcEa\r\nV8QdFi09xdW6SqZLceG447j93IhHnRttPKbcmudP/BWP4gf89vih/wCFJ4W/+ZegD9o4VWP91GES\r\nNAFVFGAoA4AHapa/EDW/+CpXx/1K+0u88HeNPGGm6bp0nm61b6jdeHLy4u7cvGPKtpU0SBYHC+Zy\r\nY5uobZiNq2v+Hr/j7/oKfFP/AMKLwx/8zFAH7C+NPh94D+JGmRaL8QvBeheJtPgmFxHaaxp8N5Ck\r\noVlDhJVZdwVmGcdCa3YooreJYYY1jjQBVVRgADoAK/Jn9i79ov4z/HLxbqfwo+EXjD4pxS2dhL4g\r\nuJvGPxI07USyLJBAyJcT+G7mUDMkZWL5U++c8mvqbxD8GP20PFGl3Oial8UtXtLS5C7jpXxJtNOu\r\nMqysNs9t4PSVOVA+VxlflOVJFAH195YVy4ReR2XnNKckCvJv2U/Fh8b/ALNvww8TT+IH1u8u/CWl\r\ni+v2ujcGa7SBY7jfJ/FKsySLJklg4OSTzXrg6UANop9IRmgBaKKKACiiigAooooAKKKKACiiigAo\r\noooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACii\r\nigAooooAKKKKACiiigAooooAKKKKACvh79j/AMY6p4r8TfCXRrtbaODwj8KrnSLEwrh2gfRvAd6f\r\nM/2vMvZRxj5Qn4/cNfDn7Hd54Rm8WfCS38M6ZdWuoWfwquYvEE033Ly/OjeA5Fli+c/ILN7SPonz\r\nxP8AKfvsAfcKZKKT6CnUg5AIpaACkzivKz+0r8Owu/8A4Rz4qYzj/klHinP5f2fTtN+PngPVrlre\r\n28O/EyORIpbk/avhr4jt02xRPIcNJZKpYqh2pnczFUUF2VSAep0V5dYfHvwFqk5tbXw98SYnEE1x\r\nmf4a+I7dNsMTSH5pLFVL7UIVPvO21EDMVUwt+0x8PFO0+Gfir+Hwp8UH+Wn0Aer0V5a3x+8EWENr\r\ndTeHviO0d/bieEQ/DPxE7qqyPH+9RLItE+Yz8jqrbdr42OhLf+Gkvh//ANC38Uf/AA1fij/5XUAe\r\nqUV5bf8A7QHgrT7pbaXQviPKzwRT5tvhr4juECyxrIgLx2LKG2ONyZ3I25GCupWpNP8Aj54MvILy\r\nWHw/8RlTToPtEwm+G3iKFmTzEj/dK9ipmfdIp2Rhn27n27UdlAPTc5pa8xsfj54Mvobye28PfEZU\r\nsIPtMwm+G/iKFmTzEjxGr2IMr5dfkjDPtDNt2oxWD/hpHwCM/wDFN/FD/wANZ4o/+V1AHqtJuX1r\r\nzG9/aB8GafdJbT+H/iMxeCK4DQfDXxHcJskjWRRvjsSobawDJncjZVgrqVqp/wANKeA/+ha+KP8A\r\n4avxT/8AK2gD1ncvrRmvJv8AhpPwH/0LXxQ/8NZ4p/8AlbU0H7QPgltLn1OLw/8AEUwWk8Nq6N8N\r\nPEiTbpEdl2w/2eJHUCJtzqpRCyBipkTcAep5oyPWvK4P2gPBT6dcarH4f+InkWk8Nq8Z+GviVZg0\r\niOy7YTp/mOo8ptzqpRMxhipkTcat+0F4J0uYWtz4e+JJd4ILgNbfDXxFdLtmjWRRvismVWCthkPz\r\nRvlXVWUqAD1QEHpX4Df8FPiR+3R8TCP+oN+ujWVftPffH/wToupXmkXug/Ed5bG4e2drX4a+I7mA\r\nsh2ny5YbFo5V4+V0ZlbqpxivxE/4KMeItP8AFn7ZfxD8QaXb6pb21ydK2Rappd1p1yNul2infb3U\r\ncc0YJGRvQZXDD5SKAP1h/wCCYX/JjPw2/wB3WP8A073ddx4S8Q+NtL+LfhnwNq+kaZoOn6pY/EPV\r\nZdM06CJIrj7P4g04WF220tiWS1vJJpMMN0lzIzqrDavin/BOT4t+FPC/7Efge01LS/GU76ZPqNrO\r\ndN8GaxqCM82pX0qGJra2cTKFjO54yyxsURyjMqGx8G/ib4Gi8XaV8QNWvtV0XTdK1D4l6TI+p+FN\r\nZsYt+peK4J7d/Pls1gQJHZSJNvkDRO6I6qwZUAPtXGOKKoaLrukeItKtNc0HU7TUdOv4UuLW7tJl\r\nmhnicBldHXKspBBBBwavk460APooooAKKKKAOK8H+DG8Ka/451r+1PtX/CZeIItc8sQ7DabNMsbH\r\nys7j5n/Hjv3YX/Wbdvy5Ph/7QHjP4f6b8XLjw8dW8R6V41h+G2t6tZ31iUXT7KzjhuF33DxsJw4d\r\niyDG3Mfy/NXpfwbx/wALC+OR9PH9n/6i+g1x/wAZPBV1qvxeXxAdd+Hsdnb/AA/1W2lsvEeoyxTS\r\nP822Sa3X5JNN+b/SN/8AcT+7QB4r4U+KOhJpljoHifVp9R8j4M3mpnx5oqQ/8JUbaG8kgZI7zzZf\r\n3v7nOzdt835/k27V921rxV4C8bfsf3viS2ufE2qeDtS8HyQ3Mu6Iav8AYzB5U7ObgiIzxrvLFv40\r\nNfOfxg0LxEnivVPEHhq38PGa5/ZwvLDSf+EV3Q20l4sssqrpu1vmiC/Mu37qbK+grWw8U+Pv2Frf\r\nTdNspNR8ReI/hjBCtuJcGbULjTQGXdK2c+Y/VmoA9O+CVtZ2vwj8Gxadf6teWR0Gxe0l1b7P9r8h\r\noEMay/Z1WLcFKg7Bjjqetd1XnX7POnato3wF+HGja/bzW+q6f4S0i1voJk2SRTpZxK6Ov8LBgQRX\r\notAHkXxL/aW8A/CTxIPD3jdL6281bMwTwQPP5nnvMv3FXd8vknON3WuftP21PgZfNpsGm6rqd3da\r\nxA89naxWEhkkKzSxMn93dugl7/wkHHAOz8ef+EA0B9L17xN8J9N8X3d5dIiefbwNJEYEeRXDSjGV\r\n5wPrXiuk/HX9nm3u5/7K+AOm6feaJFa+Tut9OtkttyecyeazCKPZ/D8+1j/c31l7R9gPaPHf7Vvw\r\nb+HGs6h4e8TavdQarY7DNaraOz5ZFYdB/dIb6DNc9ZftofDrVoLKbw9o+p3sF3fLZicwvFBCjxzP\r\nE8jlMJuNvMu08qUO7bxXAXv7RvgfUZ2vPEfwGstQnurATXmfscjzWv2FrlnBOS6/Z49uw/7v3a9F\r\n+CepfAz41W+oat4d+C2i6YPCOovptv8Aa9FtkZD5f8AVcJ8rkFP4c1cHzB6nQeFv2n/ht40vrDTd\r\nBh1qSa9e2WRZdPkj+yrcxebbPKT8qrInKnNewV5ldfAP4U3PjDQvHEfg6ztNU8OLjTzaF4IYsQrC\r\nh8lCE+WJI0HHCxxr0jTb6ap49KtqwddNuh8q/s+j/jOP9rcAf9CH/wCmeWrniP4e+EfH37ZPiKy1\r\n/wAceKNOurL4X+HnttF0Txbd6KL+M6rqyy3Eq2UsM03kHyUX5vLX7WQykumPk34u/Hr9qD4Jftz/\r\nAB/P7N3wc/4Txdc/4RUayP8AhHdQ1T7H5Okxi3/485E8veJLj7+d2zj7pr5B+MP7Qf7ZOha/oNj4\r\n71/4hfDnxHaeF7DRJXW41TRb7WbK2muWgubzzZA1w++4uF8w8cNgA7soD62/4Ieszt8aCxJ/5F4/\r\npqP+NXI/2B/jdrX7bWg/F3UNDudN8MWPxE1bxLdaibLSUhhs4NYn1CxVTBeG6vGuN6xGSaFZIAyL\r\n88cSqvy9+xB8YP2sPgRpfi3W/wBnT4FXXj2w8SXNnaaldHwzqWpw281osjCJHs3RVfbdksGJ4KHj\r\nnPu6/t//APBSL4ieF9RTwJ+ziyrKs2mjWNA8D6tcPZ3CHbJsJlkh81CNu11baRjbnNAHqX7LfgfR\r\n/Gv7QvxB0LVLjW7W2t/iL8WWQ6Nrt9pEoC33hRNvnWM0TldpPybtnQ7flXHJXBiH/BDoIRG2P4QP\r\nun/hLSf58fnXwj4m+MH7T/w98Wanp/iDxR408DeJn1XUdd1CKFZdFvxd6otrJdPKIlilCzLa2reW\r\nf3YCIVRe/Qal8R/2o7n9nS2+Gh0DxDZfCrwxYpZ6i0WiTLYSi9vodUgmvJWUoJGdrMwvlf3RjVfl\r\nmfzQD+h2iuH+BvjPVPiN8GfAnxA1uG1h1DxN4Z0vWbqK0QpBHLc2kUrrEpJIQM5AyxPHWu4oAfRR\r\nRQAUUUUAFFFFABSHpS0h6UAfKn7fX/Nun/ZfPCP87msf/gpNo9z4j+Gvwr+HlvdiCx8a/F3w54f1\r\nGCQzm2u7ecXH7q4jglieWLekbFBIhzGpVkZUddj9vr/m3T/svnhH+dzR+3zwP2dcf9F+8IfzuqAP\r\nK/8Ah1B4D/6Bvws/8JrxR/8ANRR/w6g8Bnj+zfhZ/wCE14o/+aivv8dBS0Afn8P+CTfgEZxp/wAL\r\nBnr/AMU34o/+aj3pP+HTPw//AOgd8K//AAmvFH/zUV+gVNf7poA/Nj4qf8E4vDvwe+F/i74seGbj\r\nwBpmr+DNDvvEFheaXo/iW0vLa5tLeSeOaCZvEcoimVkBRijKrYJRsYr9IbdYjbx4dZIwoZHByCD0\r\nNeW/tYf8ms/GL/sQPEP/AKbpq9WYDaVxxtoA+V/+CYx/4wd+GWOmNX/9O13X1ZXyn/wTF/5Md+GP\r\n01f/ANO13X0n4u8S2/hDw/d+Ibq3aaK0Xe6KcEigDZor55tv26f2eJbmWE+JdSQosh/eaXOoYr91\r\nU+X52cfdC5x/FsrpE/aj+FH/AAhd78QoZtRTw/ZvbQSXj2TopmmtlnjiCfe3FHiX7v35EXNAHsVJ\r\nkV85Wv7c3wN1TXoND8P6xf6m0lxLDJLFYTBAscMkrPH8p84ELHt2/e8+PbnNaWl/ta+A5YNQn17T\r\nNV0mDTr26tJZPszzeQkJh/1qovys3nxqqpvOc8+oB75RXN+CPGmneO9CXX9Mtby2i+03Nm8N5CYp\r\no5YJ3hkVlPIw8bV0NAD6KKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiii\r\ngAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAr4Z/Y4svCd\r\nr4t+E8/hzVbq7v7z4U3M+vRTAbbTUP7G8BxLFF8q5T7LHZv1f5pH+b+FfuaviT9kPwO3hTxH8Gdc\r\nbUhc/wDCZfCO61sQ+VsNoE0vwPY+Vncd/wDx4F92F/1m3Hy5IB9tL90fSlpB0paACkwPSlooATA9\r\nKMD0paKAEwPSloooAKKKKACiiigAooooAKKK8ob9pf4YG9vbe2svH2onTb670uefSvhz4i1C2Fzb\r\nTvBcRrcQWLxuUmhkQlGIyvfigD1eivKv+Glvh1/0LnxV/wDDT+Kv/ldWZdftc/B60k05JrT4ip/a\r\n1z9ks9/wx8TKbmbY7+XEDp/7x9sUrbV52xyH+E0Ae0V+An/BUP8A5Pp+Jv8A3Bv/AEzWVftN/wAN\r\nLfDr/oXPir/4afxV/wDK6vxO/wCCietWfi/9sH4j+INKi1K3tpxpLpFq2m3OmXPy6ZaR/PbXUaTL\r\n3I3IpK4ZflIyAfq1/wAEvf8Akxn4Z/TWP/Tvd1t/CDX7mx8eaN4H8Pa1PPoGqXfxU1W+intIonbU\r\nLfxfAgA2vIwSP7beIpDDzFKuyI2ETF/4JfDH7DXwzH/YY/8ATvd11nwo0nVfF3jvSfihb6Zoml6X\r\n4fm+JPhee2sImg8yaTxRDHDMI8EFpF0uaSZ9w3SybwvzkIAb/jP4UTeG9S1P4t/B2witPGn2bfd6\r\nWJTBp3iXYVIju41+X7R5aGOK6HzxsY9/mxp5R77wJ4z0X4jeENM8Z6CZPsOqReakcy7ZYXVirxSr\r\n/BIjqyOvVWVh2reX7vTtXjfwaFr4d+Lnxd+H9npWnafAmpab4qt47TSkszJFqNr5TSu8aqlyzXGn\r\n3R805f8AgY/ItAHtFFFFABRRRQBxvgnwT/winiLx3rv9pi6/4TLxBDrnleTs+ybNMsbHys7jv/48\r\nN+7C48zbj5cn5Y/as1ttO+OGsWx/fWn/AApTxNcy238EiRxXH8O8f89NlfQHwc/5KB8df+ygWv8A\r\n6i+g14r8fvCniPxd+0tFpfh0TQajqPwr1zSNNllt4zYS3M0dwq28jSQSfx+W/wAv8MfzK6ttoA5P\r\nwJ8GY/FXwx0T4iaB4hg8AeDdb+Crae7XA8m1sri9eW5lul/0ltvl+d/G67Vf5Wb5lT3u6j1L4ffs\r\nhyQ22sjUNS8PeABHHqOkXuEnuYdOH+k29x8vyl03q/y1nW3hOf4c/sajwj4/0GfU5vDHgJ7fVrCy\r\nuY4mufs9mRKsTsfLjU4OBjaq4XaFGyq/hbxxolp+xkPG2iW01tpmn+Fbh4rXXwt5sht1eLypNi7Z\r\nVHl7F+X7uzctAHS/sfa1qPiT9nPwZ4g1TXX1i51G1muXu21X+0iS1xKdn2je+7Yfk27zs2bP4a9n\r\nHSvL/wBnQXS/CLQpDpGkafazrLPp8OlWkVtayWTzuYLhEiVFHnQlJ8eXGR5oDIrbhXqNABRRRSsg\r\nCkIB60tFMBg2kkY6VEJ99wYPSpgoBJHeoRCEuDNn71AH5f8Ai3xn4y0j/go58cvCfh79qPQPgZp2\r\nsaToWoXms6xpunXcV5NbafYrBbL9tdFRtl1O2VbJ8s5U8Ffm3/goR4uu/Gf7RWma0n7QPgfxbjwQ\r\n8f8AbPhOE2ljAg+3btM/cXF47SzAlfnkx/piK2yP562v23vB3h7x1+398TPD2ueK9J8OS6gmh2mn\r\nalq2qJZWNpcvpdkwluiyMTAIkdWKlSrOjfPjyn5nWP2C/Dyzxf8ACPftvfs23sXkqZnvfGsdoUm/\r\niVVVZMoD0b5ev3RQB6h/wT1+P/gq+8IP+zX8SPihYeAPCMb3viLVb+d7TRX1nc8MQ0v+0PNR/u/O\r\n8hzPJGfJV4o7dd/6TaN+0j+x/wCDvD1vo+g/Hz4TafpGlWqw2tjp3iTT9lvBGvyxxxRSHhQOFUe1\r\nflV8Ov2B/g9c6mZfjD+3P8DbHT47i3ZYPDHi2zu5rmLcfPXzbh4VtztACt5coyclfl2v11h+wz+x\r\nx4jtvFFzc/ti+EPCEpvPs3heC98aaHqswto5ir3N75DxK/nKG8uGJlMS7C7u26NQDxv9tP47aH+0\r\nP8VtX1bwxrulWPhRtXv9X0mK5in+2f8AIH0q23y+WjIEuv7NhWGPl433ifyl5GT8OvFumyfs7fG6\r\nHW/EfhiLUL3wt4Y07TrO2jtbC6ma31uHEPkBYmu5RDEZZJkWXCFDJJuwtb+pfsFabFqt1Hov7av7\r\nNNzYRzMttPdeOEt5pYh91miSOQKxHVQ7Y/vVy3x8/Z1+H/wX8JaPq/h/9o/wN4/1TUTFBcaX4Zuo\r\nLw2kohDzu8qyhzFvyI38v51P8NAH7ifsnc/svfB4/wDUgeH/AP03w16vXDfAzw7pvhD4M+BfCeje\r\nI7XxBYaH4b0zTLXV7Tb5GoQwWscaXERVnUpIqhxhmGG6mu5oAKKKKACiiigAooooAKKKKAPmj9tr\r\nw1retab8EdU0qwMtt4b+Nvg/UdQZJVTyLZrl7VXwxG7M1zAuBk/P6Amsr9vn7v7Ov/ZffCH/ALdV\r\n6R+1XqunaN8K7PWdXv7axsdO8beC7y7ubmZYooII/E2mM8juxAVVUEkmvIP2rvEP7L37TXw/0vwh\r\na/tneA/A+s+H9es/Emia7YeKtOkktL+3DqrFftCPwksm3ZJG6vsbJClWAPsIdB9KWvyt/wCFKS/9\r\nJxV/8Kof/Lqj/hSkv/ScZf8Awqh/8uqAP1Spr/dP0r8ZfhpoXj7xj4v8W+H/ABb/AMFbLzwtp2iX\r\nBTSNSk8ZSzDVohqF/ab9r6jEsTFbGO42q8o8m8t23fNXpf8AwpMd/wDguQ3/AIVw/wDl1QB97/tX\r\n/wDJrPxi/wCyf+If/TdNXq55B/3a/JXxx8HtHsvB+u3Gs/8ABYefxvYppd2bjwzbeL4lk1qIRNvs\r\nQ0mrSxr5y5i+eN1+cZVgNp+nf2RP+ChnhD4v/Di88Q/Hfxb8MvAGs2+ozWkFs/ia1shPbqqMji3u\r\nZzMvLsueVYoSvoADt/8AgnR4X1vwl+xf8LtN8QWn2a7ubC51NE3K2be7vJrm3fK/3oJomx1XIBxj\r\nFfRmrWFlqllJYahZQXUEylHjnjDqQRzkGvMv2VDn9l/4OEd/AXh4/wDlOt69YcAjmgD4b1344/s8\r\neC7O8vtV/Zj02BbdJRC8Wn6dslQRWzvj5fl/0e5j/h/vr8tb3ir9pD4deFbDUNO0L4KaV/YGnW9x\r\neXdun2H9xcWV5aWVlJJaRv8ALtl8v5W2v5SQOv3difYBt4M8rFQIoB2jH0FAHyRB8YvgbZeNPD/g\r\n3Vv2brG1u9fn/sSzuBpNo8QtPM+wr/D8ifweT/zy/wC+K9+u/gz8L7vQ7zw5F4E0W0sNQRoZorKy\r\nS0IjYL9xogpRspH8wOfkX0Fd2BECMFfwFSbV9KAOW+Hnw68MfC3wnZeDPB9rLbaXYmRo45JmlYtJ\r\nI0jsWbJyWdj6c11A4FFFAD6KKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAC\r\niiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAr4R/Yt8\r\nMa7oPi34Zaxq9h9ntvEfwxn1PS5BIrfaLZdC8A2xf5TlB59tcIVbBOzupUn7ur4R/Yv/AOEoPjL4\r\nZHxA2pCyPwznGhi6D+UbMaB4A3m13fL5X2r7VnZ8nmeb/FuoA+7QcjNLSL0FLQAUUUUAFFFFABRR\r\nRQAUUUUAFFFFABRRRQAV5R+zb/yTrV/+x/8AHP8A6lOp16vXiH7P2ravZ+Gl0jT/AA1c31nqHxB+\r\nIJv9RE8ccOnRx+JdTKFlY75HkkZEVEGAN7EjaAwB7LqNsl7ayWcoJinRo3AJBwfQg8VxL+I/hb8I\r\nZPBPwpXU9O8PHW/M0rwxpCxhVm+zxb2jiVVwoRMei5Kr95lB784714b49/Z10b4r/FaLxf4w0+fT\r\n28Ox6TLoOq6PqlxBOxgujdPBPCWMDqtxDA4fyw20lc0Ae4DIAGa/BH/gpz/yfB8WP+ueh/8Apr0+\r\nv3bXxDoi+IG8KnWLU6ulml89iZVEy27M6LLs67S0bjPTKH0r8Jf+CnP/ACfB8WP+ueh/+mvT6AP1\r\nE/4Je/8AJjPwz+msf+ne7rX+Deq+K/DnxB0PwDeR3Gn6dq9x8VdcnsZ7XY0rx+MLc2cwLKGCmHUJ\r\nWXadrrKrc4Wsj/gl7/yYz8M/prH/AKd7uur+Fvw8hj8d6T478OeIrPVNF0i4+I+m3cn2aW2m+3aj\r\n4ngnMKowIZbd7C6t2fcN3lxuo2vhQD31OU/CvM/DV1Av7RPjjTF0u3SWLwX4Vme+AkE04e+1xViY\r\nFzHsj2EqVRXzK+5nGwJ6ZH9z8K8x8NX0s/7R3jrS/KtlhtvBfhW5DC1iSdmkvtdU75QvmOuIU2oz\r\nFU+cqql3LAHqVFFFABRRRQBxngzwQfCniLx1rn9qC6/4TLXotc8rydn2XZpljY+VncfM/wCPHfuw\r\nuPM24+XJk8aeAdN8Y+HvEmjExWVz4k0afRZr9bdXlSKRHUHn723zHIB4yTXLfBv/AJKF8cf+x8s/\r\n/UX0OvVB0oA8R8W/AnxFd/sraz+z7ofiKyvdSvPDd14csNQvUa0g8uSMxR+aF81/kjK5253eX/Bn\r\nij8RvDGnfB/9iDWPBfiKWPWbTwX8N20i4cI8S3a2uniLO1TlN3lj125Fe/4Bx7VyfxQ8B6d8UPAH\r\niL4d6vczW1l4k0240u4lhALpFMu1iAeCcE9aAMT9nKa0uPgB8NZ9Pd2s5fCOjyW28DIiayhKDhR0\r\nGK9Irlvhr4Mi+HXw88LeAYr03ieGtFstIW4MYj84W8KRB9g4XOzOB0zXU0AFFJuHrS0AFFFFABVC\r\nH7T9tm/1f2T7PF5GPvb/AJ936bKvGmlMkH0oA8E1T9jH4B+Kvit4x+LnjjwVa+LNZ8Zf2f58WvWc\r\nFzbWP2S3WBfsq+WGTeqJv3M2SiY2450x+xX+yb/0bp4A5/6gsP8A8TXtB5OafQB+YWv/AAN+E/j3\r\n/go/p/wM+H3w38E6V4K8BeG11bxjpp8N2Wy6dk3fKzRbm3i809OoC/Oy/MtfQnxe+Df7HXwx+Cvi\r\nv4yaB+zL8PvF0Hhq0e8+x6dp9tmcrtJj81VbZtBDN8p2qD8pr5H/AOCjn7OP7QXw7+M3ir49/CCP\r\nXbzwv8RdI/sjxD/YaSPNaxm3SKe3nRdzG2kS2iff93cSh2/Ju+WPgT8PP20Nf0HxR8O/gj4N8af2\r\nH4/hTTtf8uw+y2d3FbB5VilvbhVitzt8xf8AWrvEnl/OH2kA/XH4K/Af9i344fDXw/8AFTwx+zZ4\r\nPt9L8RWouoIb3QLdJowGKsrKu5MhkI+UlTWv8R/+Cfv7KXxD8I3/AITi+EuheF3vgijVfD2m2ttf\r\n24V1b91I8ThSQu0/KeCRXof7PXw3vPhJ8FvBfw31G4guLzw/otrZXksEheJrlUHm+WxVCY92dnyL\r\n8uOK9JAAFAFLR9K0zQNLstB0HS7TTdL022jtLOytIFhhtoY12pHGifKiKoAVQAAABV6nEr3NAIPS\r\ngBaKTIoyKAFopNw9aWgAopMijIoAWikyKMigDy/9ov4Q6p8cPhHrPw00Pxzc+DtQ1K4066tdetrd\r\npprCa0voLtJI1WWNg+6AAEOu089uaZ/Zq+Hh6+I/imec/wDJU/FH/wAsa9ZyKUH0NAHhHiD9kjwr\r\nrOqaNqGmfGH446BBplwZbqx074nay0OqJlSIrg3NxLIqfIVzA8TYkb5uF2/Ln7SHhnVh+2F8GP2Z\r\nfhN8Vvi34QHiCzudd8R3CfELW7hbuwUOyxx+fdyFJVSwvE+XbzPHndtr9GutfAP/AAUe/Y8+LXxX\r\n8RaD8d/gVe6lceKvDmn/ANk3GmWN4tncfY1kllWe1kO396POkRk3fMuzbz8rAHovw3+Dn7FNzqfi\r\nS5+APjk6v4q1KJ9W1q28JfGTVvtmpOr/AOtuGt9Q3t+9m/1j/wAUvX5qzP2NtR+HP7V3wiHxKktf\r\niz4cubbU5tJurRvi94omSSWKKJzLG/21cxsJh2+VgVycZr8yvg1+x7+23eeK7vSPA/wq8ZeFZNQt\r\nLjRdT1DWbJ9JtTY3StBOrPchVmjMbHIj3twCo3ba/Yn9jT9naX9l/wCA2jfDDU9Zi1TWTNLqer3M\r\nAYQfbJtu6OENz5aKiIGwu7YX2pu2KAR+Df2R/C/hfT5bHWPjB8b/ABZNJO0q3mr/ABN1iKWNCFAh\r\nUWU9vHsG3PKFuT82AoWt8Tv2TrbxV4J1HQvh78ZPil4J1+68r7Hrn/Cf+ItTFntmRpP9Gm1ERyb4\r\n1kj5PHmbh92voRdmKeAO1AHJfCnwL/wrL4YeEPhyNS/tAeFdB0/RFu/J8r7QLW3SESbMts3bM7dx\r\nxnGT1rq6fRQBHtX+6Pyo2r/dH5VJSZxQAzav90flS0+igBlFOyKM4oAWiiigAooooAKKKKACiiig\r\nAooooAKKTcvrS0AFFN3r/eFOoAKKTI9aMigBaKTcPWjNAC0Um4etGaAFopNw9aMg0ALRSEgUZBoA\r\nWikJAoyDQAtFISBRkGgBaKQkCjINAC0UhIFGQaAFopCQKMg0ALRSEgUZBoAWikJAoyDQAtFJkHpR\r\nkGgBaKKKACiiigAooooAK+D/ANjPxNrWveNfhrpupXgntfDnwwn03TEEaL5Fs+g+ALpkyoy3766n\r\nfLZ++FztCivvCvh39jrxRp2veJfhPp1j4ZtdMl8P/Cm5067uodpfU5m0bwHci4kwo+dY7mODGWOy\r\n3Tn+BQD7gT7oz6U6mx8Io9hTqACivKf+Gkfh5/0LvxU/8NR4p/8AlfR/w0j8PP8AoXfip/4ajxT/\r\nAPK+gD1aivKf+Gkfh5/0LvxU/wDDUeKf/lfR/wANI/Dz/oXfip/4ajxT/wDK+gD1aivKf+Gkfh5/\r\n0LvxU/8ADUeKf/lfR/w0j8PP+hd+Kn/hqPFP/wAr6APVqK8p/wCGkfh5/wBC78VP/DUeKf8A5X0f\r\n8NI/Dz/oXfip/wCGo8U//K+gD1aivKf+Gkfh5/0LvxU/8NR4p/8AlfR/w0j8PP8AoXfip/4ajxT/\r\nAPK+gD1aivKf+Gkfh5/0LvxU/wDDUeKf/lfR/wANI/Dz/oXfip/4ajxT/wDK+gD1avH/ANnu/wBO\r\n0b4V+IdT1O8gsrGy8d+PJp55nEcUMS+KNTLMzHhVABJJ6Yq1/wANI/Dz/oXfip/4ajxT/wDK+s79\r\nl64sdd+E+pXItJfsmp+NPG0/lXVlJbyNFJ4k1IgSxSqro+DhkdVZfusARQB69Bcw3UCXNtMksMqh\r\n0dGDKynoQR1FTV4Bd/tE6R4U8Qal8MvhL8APG/i228GiHSLo+FdOs4dM06ZIkZbJHnmhX5I3jG2N\r\nSqZxx0rqfhx8ZfGfjjXv7F1/9nf4g+C4TE0n9oa0dPa2yMfJm3uZHBOePlxQB6NZWGiSXt1r1jZ2\r\nLXN6I4pryGNS86xE7FZxy21i+M9Mmvwh/wCCnBH/AA3B8Vx6poYH/gqsa/dfw14Y0XwlZT6doGnJ\r\nZ21ze3F+8SSMU8+4lMszKrEhAzu7bV45PHNfhH/wU5b/AIzn+Jo/vf2GD/4KbGgD9Sv+CXv/ACYz\r\n8M/prH/p3u60fgT4n1uDxloPgqG9K6TquofFvVbq32J+8ubTxlDHA+7G4bUvLgYB2nzOQdq7c/8A\r\n4Jff8mNfDT/uMf8Ap3u66z4beHfF2r/Evw546ufBNroWm6Lb/EfRpo7e2+yJvuPEti9lN5THczXN\r\nvYy3DyqNrM5b+NRQB73H9z8K8q8OabdR/tKeN9WeW3EV14L8LW6oLqJp8x32us5eHd5saHzY9ruo\r\nVv3irko4T1ZRxjpxXmeg2ltF+0V441M6lbPcTeDfC8L2IWUTwKl9rhWZsr5ZSTftXY7NmGTcqDYW\r\nAPT6KQHIzS0AFFFFAHguj6x8Sfhx8RfijLbfAPxr4p07xR4ltNY03UdJv9DihkiXQtMtHUpeahBK\r\npEtpL1T0xXpo8Y+IP+EFHi0/CvxT/amcHwx5+mf2nnzvL+/9r+x/d/e5+0fc/wBv5K6qigDyO3+M\r\nvxI2nzv2Ufif3/1eo+GPu/w/8xcdq6uLxt4lfwW/il/hF4rj1NThfDZutKOpMPM253/bPsn3fn/4\r\n+Pu/7Xy12lMoA8p/4XJ8Rs4/4ZQ+Kn/gx8Lf/LiusHjHxF/whP8AwlZ+FXin+1Ccf8I19p0v+0v9\r\nbszv+2fY/u/vP+Pj7vH3/krqqKAPL/8AhcHxCz/yar8UP/Bj4Y/+W9dSPGHiEeCj4q/4VX4o/tMH\r\nH/CNfaNM/tI/vdmd/wBs+x/d/ef8fH3OPv8AyV1VFAHlX/C5PiFnH/DKfxU+v9oeGP8A5cV1Y8Y+\r\nIf8AhCj4q/4VX4p/tMHH/CNfaNM/tI/vdmd/2z7J9395/wAfH3OPv/JXVUUAeUn4yfEIHH/DKXxU\r\nP/cQ8Mf/AC4rsNM8Tatd+Ej4luPh94isNQ8iaVfD1xLZG+DR79sO6O4a0DybBtPn7fnTeyc7emoo\r\nA8r/AOFw/EXP/JqfxQx6/wBo+GP/AJcV1J8ZeIl8EHxWfhV4p/tMEAeGRPph1I/vvL+/9s+x/d/e\r\n/wDHx9z/AG/krq6KAPKW+MPxHyQP2UPigR/2EvC//wAuK6iw8T67deEh4kn+H+v6dfmGeX/hHp5L\r\nE3+9C+2LdHcta7pNo2nz9n7xdzJ823rqKAPJf+FxfEXp/wAMo/FQ+/8AaPhf/wCW9drpvibWb3wj\r\n/wAJLc/D/wAQWGoeTNL/AMI/cSWJ1Dem/bFvjuGtd0m0bT5+z513MnzbelooA8rPxf8AiEP+bWPi\r\nmfpqHhf/AOW9dlp3iXWL3wj/AMJLceAPEFhqHkTS/wDCP3Mtgb/em7bFvjuWtd0m0bT5+3513Mnz\r\nbeiooA8oPxk+IIOP+GV/imfpqHhf/wCW9dPofjbxDq/hu+1y9+FPirRr+080xaLf3GlteXexNy+U\r\n8F3JbgufkXzJk+b72xfmrrafQB5R/wALf+IP/Rq/xU/8GHhf/wCW9dPoPjXxPqvhnUde1D4SeKNF\r\nvrITGDRb670t72+KIGUQtBdyW43n5F82aP5h82xfnrsKKAPKB8ZfiMT/AMmn/FUf9xHwv/8ALiuq\r\n0Xxn4k1Xwvf+IL74U+KdGv7PzTDod9c6W17e7E3L5TQXctsN5+RfMmj+b72xfmrraKAPJ/8Ahc3x\r\nE/6NR+Kv/gw8Lf8Ay4rp9C8a+KNX8M6hr2ofCTxRol9ZCUw6JfXelve3pRdyiFoLuS3G8/KvmzR/\r\nN97avzV2NFAHlP8AwuL4h/8ARqfxS/8ABj4X/wDlvXUaJ4z8R6t4Y1DXr/4T+KdFvrISmHRb+50t\r\n7292IGAia3vJbcFySi+bNH8w+bYvzV11FAHlP/C4viD/ANGrfFL/AMD/AAx/8t66bQ/GXibV/DV9\r\nrt/8JvE+i31mZfJ0a+utMa8vAibl8poLuS3G8/IvmSp833ti/NXYUUAeUn4w/EDGD+yp8UD/ANxH\r\nwv8A/Leuj0bxn4j1nw1f6/ffCXxVol7YiUxaJf3Glte3pVAyiJ4LyS2G8/IvmTphvvbF+auwooA8\r\nrHxg+IoH/JqPxS/8GPhb/wCXFdd4M8Ua74j0ya91j4aeIvCE8dz5K2OrzadJNIm1f3wNldTxbOSM\r\nFw/yH5cbc9NRQB5afjB8Rtu4fsrfFIn0/tHwvn/08V1fgzxNq+v6bLfaz8N/EXhG4S4EAstYn0+S\r\nWRNq4lU2VzPFs+bby4b5D8uNpPT0YzQB5WfjJ8Rcnb+yj8U2APBGpeFufz1iuq8FeJdd8S2E17rn\r\nw717wfKkxiSy1iWxknkQKuJQbK5uItpyVALhsoTtClSeqoIBoA8rHxi+Im0H/hlL4pnI6DUfC3H/\r\nAJWa63wR4n1rxDps9/rfw71/wjMs5hSx1eSwknkRVXEoNlc3EQU5KgFw2UJ2hSpPT0UAeV/8Lf8A\r\niMRkfsrfFH/wY+F//lxXW+CfEOs+I9PnvtY+HGv+EJkn8lbPV5bB5pUCKRKDZXM8W3JK8uGyh4A2\r\nk9TkUAg9KAPLD8YPiGvA/ZU+KbZAORqPhf8ArrFdB4J8Z+I/GAv1134U+KvBX2MxeV/blzpkv2vd\r\nuz5f2G8uMbdozv2cSKVzzt7PIziggHqKAPKx8Y/iJj/k1D4qf+DLwt/8ua6DwT4s8Q+Khf8A9ufC\r\nrxV4LNt5Ri/ty502X7Xnfny/sN3cAbSozv28Ou3PO3tMgUw4PBoA8uHxj+Ih5/4ZQ+Kn/gx8Lf8A\r\ny5rf8FeLfEPikX51z4VeKvBZtvKMf9uXOmy/a878+X9hu7gDaVGd+3h125wdva8dKCAeoBoA8rHx\r\nj+Ih5/4ZQ+Kn/gx8Lf8Ay5rf8FeLPEPikX51z4VeKvBZtvKMf9t3Omy/a878+X9hu7gDaVGd+3h1\r\n25wdvbUmAaAPKx8Y/iIf+bUPip/4MvC3/wAua6PwB4w8S+KUvh4h+FPirwcbUx+V/bk+lyfa9xcH\r\ny/sN5cY2bBnfs++u3dyF7KkxmgDys/GDx+Dj/hlv4oH6ah4X/wDlvXQ+BfF3iHxV9tOu/CzxV4N+\r\ny+WIBrk+mSfagS4Pl/Yby5A27Ru37Pvptzzt7SkIB60AeVf8Li+IP/RqnxR/8GHhf/5b1v8Agfxf\r\n4k8Vw3i698LPFXgw23lNF/blxpkn2vfuz5X2C8uQNmwZ37Pvptzzt7ekxQB5jqfxW8c6bqF3ZWv7\r\nN3xH1SK2neGK7tL7w4sVyinAljE2qxyBG6gOqtjqoPFb/gTxlr/i83o1z4VeK/BZtPKaL+3LjS5f\r\ntW/fny/sF5c42bBu37P9Yu3dzt7CkxmgDy/VPil4203Ury1s/wBm74k6lFBcPCl3a3vhxYrlVJAl\r\njEuqxyBG6jeqtjqoroPAfjPxB4vN8uufCnxZ4L+x+UYv7duNLl+179+fK+wXlzjZtG7zNn3127ud\r\nvY0mM0AeX6p8UvG2m6leWtn+zd8SdSiguHhS7tb3w4sVyqkgSxiXVY5AjdRvVWx1UV0HgPxn4g8X\r\nm+XXPhT4s8F/Y/KMX9u3Gly/a9+/PlfYLy5xs2jd5mz767d3O3saTGaAPL9U+KXjbTdRvbWz/Zu+\r\nJOpRQXDwx3Vre+HFiuVUkCWMS6rHIEbqN6q2OqitbwP478S+JtYn03Wfgr4y8IwR2/nJfaxc6NJA\r\n5+UeSosr64kD9TygXCH5vug93RQB5dq3xS8a6XqF5b2n7NvxJ1GGC4eGO6tb3w4kVyqnAljEuqRy\r\nBG6jeqtjqorV8DePPEnijVp9P1f4LeMfCMEcHnJfaxdaNJA5+QeUosr64kD8k8oFwh+b7oPeUUAe\r\nXat8UvGul6heW9p+zb8SdRhguHhjurW98OJFcqpwJYxLqkcgRuo3qrY6qK1fA3jzxJ4o1afT9X+C\r\n3jHwjBHB5yX2sXWjSQOfkHlKLK+uJA/JPKBcIfm+6D3lFAHl2rfFLxrpeoXlvafs2/EnUYYLh4Y7\r\nq1vfDiRXKqcCWMS6pHIEbqN6q2OqitXwN488SeKNWn0/V/gt4x8IwRwecl9rF1o0kDn5B5Siyvri\r\nQPyTygXCH5vug95RQB5dq3xS8a6XqF5b2n7NvxJ1GGC4eGO6tb3w4kVyqnAljEuqRyBG6jeqtjqo\r\nrV8DePPEnijVp9P1f4LeMfCMEcHnJfaxdaNJA5+QeUosr64kD8k8oFwh+b7oPeUUAeXat8UvGul6\r\nheW9p+zb8SdRhguHhjurW98OJFcqpwJYxLqkcgRuo3qrY6qK1fA3jzxJ4o1afT9X+C3jHwjBHB5y\r\nX2sXWjSQOfkHlKLK+uJA/JPKBcIfm+6D3lFAHl2rfFLxrpeoXlvafs2/EnUYYLh4Y7q1vfDiRXKq\r\ncCWMS6pHIEbqN6q2OqitXwN488SeKNWn0/V/gt4x8IwRwecl9rF1o0kDn5B5SiyvriQPyTygXCH5\r\nvug95RQB5dq3xS8a6XqF5b2n7NvxJ1GGC4eGO6tb3w4kVyqnAljEuqRyBG6jeqtjqorV8DePPEni\r\njVp9P1f4LeMfCMEcHnJfaxdaNJA5+QeUosr64kD8k8oFwh+b7oPeUUAeXat8UvGul6heW9p+zb8S\r\ndRhguHhjurW98OJFcqpwJYxLqkcgRuo3qrY6qK1vA3j7xJ4o1abTtX+CfjLwjBHB5qX2sXWiyQOf\r\nlHlAWV/PKG69U2/Kfm6A93RQB5t4i+IfjLw3rl1pOkfs8ePvEdtAV8vVNKvtAjtbkFFPyrd6nDMN\r\np+Q7415U4yuCdDwP468UeJtVmsda+CPjLwhbpD5qX2s3WjSQu3yjygtlfTyhupyU24U/N90HuaKA\r\nPOPEPxI8Z+G9budH0r9nrx/4ltbcr5eqaVfaBHa3IZFJ2rdanDMCpOw7ol5U7crgnrvDet6h4g0e\r\n21TVPCmq+HbmYtu03UpLZ7mDD7fna2llh5+8NsjcEd8qNmigAooooAKKKKACviL9jW88HXXiX4R2\r\n3hzT7q31G0+FNxDr0spzHeXx0bwIyzRfO2EFq1pH91Pnik+X+N/t2vh/9jK08K23ij4RyeHdUurv\r\nULr4T3E+vxzLhbS//sbwIiRR/KvyG0Szfq/zyP8AN/AgB9vgYGKWiigAooooAKKKKACiiigAoooo\r\nAKKKKACiiigAryn9m7/knurf9j744/8AUo1KvVq8o/Zu/wCSe6t/2Pvjj/1KNSoA+WPi541HwI+K\r\nfj/V/AX7R+v/AA80zW9XS/1uw1H4RX2u6amqvDDB5tveRKqfvPLt027m+au3/Zy+M3jnxN8WbTwx\r\n4u/aCk8VpfaXd3cOkT/Ca+8MmUw+UXlFxccP5XmJ8i/89E9q+iPjn8L7f4zfDHWfh3cag1i2ofZ5\r\noLlVyYri3uIrmB/XAlhjJx29eleYfDv4bftBa58YdK+Kfx6vfAttD4Q0fUNH0PT/AAwbmTz3vGtv\r\ntFxcPMqbTts4tsaqcAnmgD6NOOAe9fgL/wAFOSf+G6PiZ9dG/wDTRY1+7Phy38Wrd6zL4jn0wWcl\r\n7jR4LON/MhsxEqjznY4aVpPMb5VCqpVfmxuP4S/8FOf+T5/iX/3Bv/TRY0Afqh/wS+/5MZ+Gf/cY\r\n/wDTvd1ofAjxZrlr450XwXbXpXRtVvfizqN1avHGWa4svGVvBbvvxuAVbq5G1TtPmc52rtz/APgl\r\n7/yYz8M/prH/AKd7uui+FvgiW2+JXh/xV4YvzrnhvTW+J9lfaksP2f7PqWoeK7W5NoYnYu3lvb3k\r\nXmKCrfZ9/wAodAQD6HXO2vMvDdnAf2jfHWoNqVu88vgvwrA9iFk86BEv9eKysSvllJDIwUK5YGJ9\r\nyqChf05eF/GvKfDH/J0PxB/7EDwb/wCnDxFQB6v0paKKACiiigAooooAKKKKACiiigAooooAKKKK\r\nACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooA\r\nKKKKAOf8a+OPDHw70CTxR4v1I2GmRT29s84hklxJPKsUS7Y1ZvmkdF6d63lHevFf2wdK1fWfgPq9\r\nloej3+qXa6notytrYWkt1cOkOq2kr7IYlZ3IVC2AP4a4r4t+KvD3xNl8H6hqHgbxxr/w/wBF1Wce\r\nKdIvfAOrr5/mQOtqzWM9tHLfQxy/eSOKXadjMvy0nsB9PnrVC31CGS6udPhiuFktQud9rMkZ3Zxt\r\nlZdj9shCdvftX593Pgm60Tw5rGpfGv4b+JNS8Ew+G9b/AOEF02XTZ7x/Df8Apd3LH5m1P+JfL9l+\r\nx+XNJt8tY9m5a6HXfh5e634ahuNZ0TxL/ZpsfCUo/wCKKfxFps/l6XcR7bzTVxJd24Zo/kh3NHLs\r\nb5aTjaSXe39fgZOraTjY+yb3x3oGna3NoFzd3EmpQ2Y1E2dvZzTzG2L7PMVI1YsN3HGa6rPGa/Pq\r\n9+HerzaLHquofA82OtX/AIBGk2LWnh+6uebfVPuiWVJJLXzLXy2W3nfeq/uv4K7zQfCUUfjTxrH4\r\nw+Fnjy5+Ieoalr4s/F+i2ckZGkTQv9jRL9mitnCp5cSWu5ts/wA+1fv0L3tuvN+Dt+I/ae8427fk\r\nj7IPWsXxJ4s0HwiljLr18bddTvYdOtf3bv5lzKdqINoOCT64FfInwW8HeNtJ8B/E/wALfDrwi2m3\r\nF14dC6Tr/wDwil34TmuNV8qVVWaznbypbiP93uvYFVJP9rbTNO+HXgHxJ4E8P+HPCPwH8WaNbt4j\r\n8MHxKt/otza29zMjDzz5T487bz510kXly7/9a38MT3XfT87FSnbofbB60DrXwt4s8BSaGJvAJ+AC\r\nal4V/wCEk17+xY7nw5qOsaVpqMtt9nWPS7YrHtLNJ5cr7Yo9jqssO6uB0T4IeLtT+F3jDW/Fnww8\r\nQ3njDR/hV4ei8Ny3ukXD3kGsWpvv+PXev/H1H+7/ANV821/7rVVrqUu39foT7TyP0ozxmsvxF4j0\r\njwh4e1LxT4hufsml6RaS317OI3k8qCJSzvtUFiFVSTgE8V8c3Pwb1VPEvi74jReA76TxV/wt7w9c\r\n6dqTWDtcR6U39lx3TW+R8tv5X2hJHX5dsfzfc+Xz+0+EfxPt9H8VQXuhXh8Xnw14nsvEA074d6lD\r\nNrTz2c3kpca1JeeTqnz+X5PkQMy/d2xVqo3/AK8r/wDANFqfojpuo2urafa6pYvvtryFLiJumUYA\r\ng/katVg+BYJrTwfolpcQNDJDp1tG8bDBRhEoKn3BzW9UgFFFFABRRRQAUUUUAFFFFABRRRQAUUUU\r\nAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFfEH7HHhHVf\r\nC/in4Ta3fvA8Pi34U3Os2aRli8cMejeBLMrLlR8/m2cp+Xd8rJznKr9v18J/sY+HNb0Hxh8MtW1a\r\nw8q18Q/DK41LSnDq/nWy6D4BtfM+X7v762uE+bafk9NpoA+6xS0gpaAPlT/hX37c/wD0U7/y+NG/\r\n+Yqj/hX37c//AEU7/wAvjRv/AJiq+p8CjAoA+WP+Ffftz/8ARTv/AC+NG/8AmKo/4V9+3P8A9FO/\r\n8vjRv/mKr6nwKMCgD5Y/4V9+3P8A9FO/8vjRv/mKo/4V9+3P/wBFO/8AL40b/wCYqvqfAowKAPlj\r\n/hX37c//AEU7/wAvjRv/AJiqP+Ffftz/APRTv/L40b/5iq+p8CjAoA+WP+Ffftz/APRTv/L40b/5\r\niqP+Ffftz/8ARTv/AC+NG/8AmKr6nwKMCgD5Y/4V9+3P/wBFO/8AL40b/wCYqj/hX37c/wD0U7/y\r\n+NG/+YqvqfAowKAPlj/hX37c/wD0U7/y+NG/+YqvQf2WIr6D4QJFeRzrfJ4n8VQak8l8l4z3w1++\r\nW6fzUtrRGVrjzWXFvGFX5dor2bAryv8AZu/5Jxq//ZQfHX/qV6nQB6rRQetFAHzN4l8C/tmXHiXV\r\nJPDPxA+zaTJdyvYQjxnpkKx2+4+WNjeD5mj+UD5DNKR03v8AeP47/t06f44039qfx1b/ABH1P+0P\r\nEMD6Yl9ci+ivBKTp1s0R86GyskfEQQfLax9MfP8Afb+iGvwM/wCCnX/J7HxR/wCu+g/+mW2oA/Ur\r\n/gl7/wAmM/DP6ax/6d7uul+FvxG1nVPiV4e8MWdrp2k6Len4nS3Wn6farFDNc6Z4ptLK2uCTlxKy\r\nT3DyYYI8s8jFfubOa/4Jef8AJjHwz+msf+ne7ra+DHgXxZa/ELRfFN5oc1vp1hc/FO1me4zE6yX/\r\nAIvtrqz/AHbfNskgtZJFcLt2+Xz8y5APozJFea+G767l/aN8daPIluLa18FeFLqJhbRrMWlvteVw\r\n8oHmOn7ldqMxVDvKqpdy/poDdWAH0NeaeG9UuZv2j/HejuluLe28FeFbmIi2jExaW+14OHmC+Y6/\r\nul2ozFU+cqql3LAHp1FFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQA\r\nUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFISB1oAWkIyMGlooA43xb\r\n8KPhp471Wy1nxr8O/DPiC/005srrVdIt7ua15z+6eVCyc8/KRzXXxxoiBUQKoGAB0Ap2BS0CshMC\r\nloooGJjNGBS0UAJgUYFLRQFhMD0oxS0UAJgDpS0UUAFFFFABRRSZAoAWijrSZAoAWiikyBQAtFFJ\r\nkCgBaKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiikzQAtFFFABRRRQAV\r\n8GfsS6xqGpeOPAEF5f3NzFpnw3ntrKKaQsltEfDvw9lMcYP3FMk0j7VwN0jnqa+86+Hf2PPGGq+J\r\nfE/wk0m9FtHF4U+FdxpNl5CfM8D6L4FvD5mf4vMvJF+Xb8uygD7hAwMUtIKWgBlFeTj9lX9lc9P2\r\ncvhef+5S0/8A+NVm+Jv2O/2WvEGnCwl/Z+8AWyedBL5tj4etLWYGORGUeZHFu2fLhkPysPlb5SaA\r\nPaqK8kH7Jf7L4GP+Gcvhf/4SOnf/ABiqOufsb/su65o99o0v7Pvw6tY7+2ltZJ7Pw1ZW9xErqVLx\r\nSxxK0cgzw4OQaAPaaK+e4v2OfgVBaeELTTvg98M7iLSJh/bs954H0zzdWt0spoweIFWGQ3JtpW2h\r\nf9W6966r/hk/9lb/AKNv+Fn/AIR+n/8AxqgD1qivir4y/sa/BLQPBvhK8PgjwpNLpXxK8PES2vhT\r\nTrI3tpd+ILW2+xXvlwf6REkFzLF/CrfJuVq+gf8AhlX9mD/o274W/wDhHab/APGqAPVKK8r/AOGV\r\nf2YP+jbvhb/4R2m//GqP+GVf2YP+jbvhb/4R2m//ABqgD1SivK/+GVf2YP8Ao274W/8AhHab/wDG\r\nqP8AhlX9mD/o274W/wDhHab/APGqAPVK8p/Zu/5J1q49fiD46/8AUp1Snf8ADKv7MH/Rt3wt/wDC\r\nO03/AONVnfst6XpmgfCa70XRtNtNPsNP8b+NLW0tLWAQwW8MfifU0WKNFwqKEAVQuABQB7RRSDoK\r\nWgAr8Cf+Cnf/ACex8Uv+u+g/+mW2r99q/An/AIKdED9tn4pf9d9B/wDTLbUAfKB619+/8EVwT+1L\r\n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\r\nov8A6Z7KgCl/wTw13UND/bD+HupaX4T1LxJdRNqhj0vTJLWO4uC2l3anyzcywwjbkv8ANInyrxkk\r\nKf13+FHx++LGveG72+1f9nb4ka3LD4k8RWQuLe68MxCOK31i7ght9rapGS0EUaQM20h2iLB5Awkf\r\n8if+CdUfiy+/bE+H9p4N1nS9L1hv7U+yXeo6Y97axY0u7374I5oGkJQMo/ert3Z5xsP65fBjwV+0\r\n/pXhDULXS/ix8L7eBvFfiify38E3N+d8muX0jt5sOthV3OzN5JG+Hd5TkvGxoA74fGX4hY/5NR+K\r\nv/gw8L//AC4r5b/4IuRhP2WPEpHVvHl6T/4L9P8A6Yr6B8RfDr9sDWNU0a80v9qLwR4dh02cz3Vj\r\np3wxLxaqmU/dXBuNUlkVAFIzA8TYkb5vubfgb/gkFdfGi/0z4m6H8PviFoGjaTpsujX01pr2iXWq\r\nxefMl2hkgiivrVYSyQoJHO4sEgHGzkA/XLev94UpIHBPWvJ/7A/ai/6LB8LP/Da6h/8AL2rHwE8U\r\neOvGXg/UNb+IOo+H7zU7fxLruixvouky2EPkadqVxYKSktzOxZ2tXl+/hRKEwdm9gD1GikHSloAK\r\nKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoo\r\nooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiii\r\ngAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKA\r\nCiiigAooooAK+EP2K/DutaL43+G+p6rppgtfEXwyuNS0xxIr+fbLoXgG2L/Lyn762nXDYPyf3Stf\r\nd9fBf7D2s3+oeOfh/aXuoXNxDpvw4ms7OOWQsttF/wAI78PpjHGP4VLzyOQP4pHPegD7zHQUtIOl\r\nLQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABX4Cf8ABUIf8Z0fEv6aL/6Z7Kv37r8C\r\nv+CoQ/4zf+JX+/pH/pn0+gD7D/4JzfAD9kTxl8F/A/jbUTDF8W2Oo/a59K8c3+napFi8uI0xFaXc\r\nbRf6NsHyqu5TznJr6j+FHwD+D+t+GLu88Pa98WjaR+JPEdnIbn4k69bSfaYdZvIrj5Le+VNnnJLt\r\ncjzHXY0u6VnNeb/8E7fhx8O/H37Cvw8tvHngTw/rcG3V/wDj/sIp8/8AE1uv7y1e+DGj/ET4OeAt\r\nW8X/AAymv/FXhSx8a+L7fUvBbEy3VraQeItQgM2lyEbvNVEjc2rt+/O/YySffAPch+zV8OOD/b/x\r\nRz/2VTxR/wDLCvO/2TvgL8Mfgn42+N2lfDPwuNHsk8WWGleWb+4uf9Gj0DTrmNP3zMRia/unznP7\r\n3b91EA9/8IeKtH8Y+H7DxJoGoRX2m6lAlza3MZyssbDIYVwnwb5+IXx1/wCx+s//AFFdBoA9QCqe\r\n1eU/s0jPw/1fP/Q+eOP/AFJ9Tr1cdK8o/Zo/5J/q/wD2Pvjj/wBSfU6APXB0paQdKWgAooooAKKK\r\nKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoooo\r\nAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigA\r\nooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi\r\niigAr4c/ZA8Y6p4n8VfCLRL2K3jtvCnwqutJsWiXDtA+i+BL0+Z/teZeyjjA2hOOM19x18Pfsg+J\r\ntM17xZ8IdMsPDlpplxoHwrudNvbmAru1Kd9F8B3QuX2ouGEVzHAMlvlt05A+VQD7hooooAKKKKAC\r\nik3D1oJx1oAWikpaACiikyPWgBaKSloAKKKTOaAFooooAKKKKACvwK/4Khf8nvfEv/f0j/0z6dX7\r\n61+BX/BUL/k974l/7+kf+mfTqAP1C/4JhgH9hj4bZHbV/wD08XVe5/B7U/EOseEr678UahaXl5F4\r\nn8SWcMltJbuiWUGs3kNnFmD5A0dtHBGyn94rIwkxIHr4W/YW/ZM/4Wf+y74G8cf8NM/Hfwn/AGgu\r\npj+yPDHjL7Bptt5WpXEWYoPIbbu2bj/t12vwV/YufxN4FvNRH7WP7R2lmHxV4o07yNM8eGCFvsmu\r\nX1t5xTyDmWXyfNkb+KWSQ96APon4XWC/Dv4u+O/hnaRxjR9SjTxloMSnBhe7kddQtlGOFE8cc+QS\r\nP9MI/hrS+DBJ+IHx0JGCfHtnken/ABSug1yfwW/ZTtfg54+f4gSfHP4teO7mTSp9KFt408R/2nFC\r\n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\r\n--Apple-Mail=_4FAB7CAC-F17C-482D-A2B1-FA7B9751F61D\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\r\nContent-Type: image/png;\r\n	name=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\"\r\nContent-Id: <CB596987-D3CC-4C61-B9D3-CE1C1DF1C723>\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGwAAAAYCAYAAAAf1RgaAAAAAXNSR0IArs4c6QAAAIRlWElmTU0A\r\nKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdp\r\nAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAGyg\r\nAwAEAAAAAQAAABgAAAAABrPxEgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5h\r\nZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9\r\nIlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9y\r\nZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6\r\nYWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZm\r\nLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgog\r\nICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAA\r\nC6FJREFUaAXtWnuMVUcZnznPe/fuZYEtDxHCQ1ADBNuuAlKh24dRaqURWFotj5haKAn9SxOaauRi\r\nxEBsMMFSAmnUCDTKWtDioyEm3RLKq6VKC7Rg20VA5Lmwz3vPa8bfN+ecu+fevbugjQQrX5g735n5\r\nvm++13wz5yyc3YKb0gP19a8YTU33+NNmbx0puHjJtGsm+U7beoMxyRsaGrUJE45JxlbclMp/1JXK\r\nsZWM5XLwP6PG6+tzOgVr8tzN0wWTjRq3hojAw6TU+EfdGf9T9uVyGsutQNC4nDpn8zz0m7lmWEwE\r\njm6mbd/r3MCnzNk6DlEbyRFCqfNbAbyBEeaBlJzrkula1mOFQ683fvMcLT917tblGF8dbTgmhe8a\r\nZsbyvY4NhsbEdwy7ZrHntDHOtBuo7q2lGLyvGSnmOe2/fH3S3//EGhGsOZuf03RrKRMC/3wBL30f\r\n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\r\n--Apple-Mail=_4FAB7CAC-F17C-482D-A2B1-FA7B9751F61D--','To all, \r\n\r\nPlease include Tim Zowada (above) on any of these type of updates as well. \r\n\r\nThank You,\r\n\r\nBrian \r\n\r\n> On Nov 7, 2025, at 11:27 AM, Jordan Wroblewski <jordan@lithiumbatterycompany.com> wrote:\r\n> \r\n> We need to have at least 600kVA per the factory (for additional aux equipment planning). 5 @ 75kVA would not be enough power.  \r\n> \r\n> \r\n> Jordan G. Wroblewski\r\n> Partner | President \r\n> Lithium Battery Company\r\n> Direct: (917) 266-5336\r\n> jordan@lithiumbatterycompany.com <mailto:Jarrett.brownfield@trackmastermobility.com>\r\n> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n> \r\n> On Fri, Nov 7, 2025 at 11:19 AM Nathan Staron <Nathan@lithiumbatterycompany.com <mailto:Nathan@lithiumbatterycompany.com>> wrote:\r\n>> We could also run multiple 75kVA transformers located in the factory layout, where they showed the red boxes.  This might be better for the electrical lines to run 480V to the transformers located next to the equipment and run shorter power lines for less power loss.   There is a 5th transformer that would need to be used for the individual welders.   For 5 transformers that would come in around $31,360.  I was also hoping that we could negotiate volume pricing and save on sales tax with our exemption certificate.  \r\n>> \r\n>> Running two 225kva transformers would come in around $30,566.   \r\n>> \r\n>> I would pay the $794 for the benefit of not having power loss in the lines going to the equipment.   Just a thought. \r\n>> \r\n￼\r\n>>  transformers for the layout if needed.   \r\n>> \r\n>> \r\n>>  <https://lithiumbatterycompany.com/>\r\n>>  <https://www.instagram.com/lithiumbatteryco/>\r\n>>  <https://www.linkedin.com/company/the-lithium-battery-company>\r\n>>  <https://www.facebook.com/LithiumBatteryCompany/>\r\n>>  <https://www.youtube.com/c/LithiumBatteryCompany>	 	\r\n>>  <https://lithiumbatterycompany.com/>\r\n>> NATHAN A. STARON	\r\n>> Founder / CEO\r\n>> Lithium Battery Company\r\n>> Cell Phone 813-504-0074 <tel:813-504-0074>\r\n>> Phone 844-GET-LITHIUM <tel:844-GET-LITHIUM>\r\n>> Nathan@lithiumbatterycompany.com <mailto:Nathan@lithiumbatterycompany.com>\r\n>> Schedule A Zoom\r\n>>  <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>> \r\n>> \r\n>> \r\n>> On Fri, Nov 7, 2025 at 11:01 AM Jordan Wroblewski <jordan@lithiumbatterycompany.com <mailto:jordan@lithiumbatterycompany.com>> wrote:\r\n>>> Good morning team,\r\n>>> \r\n>>> We were speaking with our factory last night and they were saying that we could operate our equipment with two step down transformers from 480v 3 phase to 380v 3 phase but both need to operate at atleast 200kVA.  To be on the safe side for when we add more equipment they said use two at 300kVA.  I found these readily available online but they are at 225kVA.  Thinking we could do three of these.  Larger format units seem to be out of stock with a 5-11 week lead time. \r\n>>> \r\n>>> Here is the link:\r\n>>> https://store.maddox.com/products/3-phase-480v-delta-380-y-220?variant=39417005834323\r\n>>> \r\n>>> I have passed this along to the building\'s GC to show his electrician as well.\r\n>>> \r\n>>> Let me know if you have any questions.\r\n>>> \r\n>>> Jordan G. Wroblewski\r\n>>> Partner | President \r\n>>> Lithium Battery Company\r\n>>> Direct: (917) 266-5336\r\n>>> jordan@lithiumbatterycompany.com <mailto:Jarrett.brownfield@trackmastermobility.com>\r\n>>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n>>> \r\n>>> On Thu, Nov 6, 2025 at 4:52 PM Nathan Staron <Nathan@lithiumbatterycompany.com <mailto:Nathan@lithiumbatterycompany.com>> wrote:\r\n>>>> Good Afternoon, Rick,\r\n>>>> \r\n>>>> I am attaching the assembly equipment specifications and power requirements for your review.\r\n>>>> \r\n>>>> For our large prismatic line, the factory advised us to have 65kW power at 380V. To clarify this, consider it like a car: the engine might be rated for 300 horsepower (peak), but on average, you only use about 50 horsepower when driving (actual consumption).\r\n>>>> \r\n>>>> The 65kW rating ensures that our electrical system can handle brief power spikes, such as when laser welders are operating. However, your continuous consumption and electricity costs will be based on an average usage of approximately 19kW.\r\n>>>> \r\n>>>> Here is the math in simple terms:\r\n>>>> * Each module stores: 16 cells × 3.2V × 314Ah = 16.1 kWh of energy\r\n>>>> * Energy required to assemble one module: Approximately 2% of the module\'s energy = 0.32 kWh (This covers welding, conveying, testing, computers, etc.)\r\n>>>> * For 60 modules/hour: 60 × 0.32 kWh = 19.2 kW average draw\r\n>>>> \r\n>>>> This approach can also be applied to the other lines discussed previously.\r\n>>>> \r\n>>>> Please let me know if you have any questions.\r\n>>>> \r\n>>>> \r\n>>>>  <https://lithiumbatterycompany.com/>\r\n>>>>  <https://www.instagram.com/lithiumbatteryco/>\r\n>>>>  <https://www.linkedin.com/company/the-lithium-battery-company>\r\n>>>>  <https://www.facebook.com/LithiumBatteryCompany/>\r\n>>>>  <https://www.youtube.com/c/LithiumBatteryCompany>	 	\r\n>>>>  <https://lithiumbatterycompany.com/>\r\n>>>> NATHAN A. STARON	\r\n>>>> Founder / CEO\r\n>>>> Lithium Battery Company\r\n>>>> Cell Phone 813-504-0074 <tel:813-504-0074>\r\n>>>> Phone 844-GET-LITHIUM <tel:844-GET-LITHIUM>\r\n>>>> Nathan@lithiumbatterycompany.com <mailto:Nathan@lithiumbatterycompany.com>\r\n>>>> Schedule A Zoom\r\n>>>>  <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>>>> \r\n\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n￼\r\n\r\n\r\nbrian@mavrix.one <mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-11-07 18:38:56','2025-12-09 19:30:54','2025-12-09 19:30:54','2025-12-09 19:30:54',NULL,NULL,NULL),
(935,4,'<CAEvVzq1c+p=3oLE8w8c7ZH8=oeEiF14FYkn-sDgSL2c7JLdheQ@mail.gmail.com>',NULL,NULL,'=?UTF-8?Q?Re=3A_Great_to_reconnect_=E2=80=94_I=E2=80=99d_love_to_visit_your_?= =?UTF-8?Q?Tampa_facility?=','liz@brandysmoldandtool.com','Elizabeth Perkins','<div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>Happy Friday!! Great to hear from you.</div><div><p>Could we set up a call for either Tuesday, November 11 at 10:00 AM ET or Thursday, November 13 at 10:00 AM ET? I’d like to loop in Michaela and Dan as well so we can align in one shot.</p>\r\n<p>If one of those times works, I’ll send a calendar invite with the details.</p></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><img width=\"96\" height=\"38\" src=\"https://ci3.googleusercontent.com/mail-sig/AIorK4xpMAQi-3CccYzdad7DnbPHOkAHkZLthTPdqQy_mmGqmNua-ldbvlLW3KyCXMvL0Duc1K_cjsds8w7y\"><div><b>Liz Perkins</b><div>Vice President</div><div>585-233-0566<div><br></div></div></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Nov 5, 2025 at 5:29 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">Hi Elizabeth,</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Yes, would definitely like to catch up. </div><div style=\"font-family:Helvetica,Arial;font-size:13px\">I’m still in Rochester and we’re still in process in Tampa, but yes, let’s reconnect!</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">I’m usually open on Tuesday or Thursday mornings, if you want to setup a call.</div> Please let me know what works best for you!<div>Rick<br> <div class=\"gmail_signature\">\r\n        \r\n     \r\n    <br>\r\n     \r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD, </span><div style=\"font-family:Helvetica,Arial\">Founder, CTO</div><div style=\"font-family:Helvetica,Arial\"><div><div><img src=\"cid:ii_19a603a163cfcc4344d1\" style=\"max-width: 99%;\"><br></div><div><a href=\"https://mavrix1.com/\" target=\"_blank\">https://mavrix1.com</a></div></div><div><br></div><div><div>CONFIDENTIALITY NOTICE</div><div>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</div><div><br></div><div>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</div><div><br></div><div>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</div></div></div></div></div> <br><p>On October 28, 2025 at 12:02:51 PM, Elizabeth Perkins (<a href=\"mailto:liz@brandysmoldandtool.com\" target=\"_blank\">liz@brandysmoldandtool.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div><p>Hi Rick,</p>\r\n<p>I wanted to check in and see how things have been going since we last spoke.</p>\r\n<p>I’ve recently moved to the Tampa–St. Petersburg area and would love the opportunity to visit and tour your facility whenever it’s convenient. It would be great to see your setup firsthand.</p><p>I&#39;d also love to hear how your plans have progressed since we last talked.</p>\r\n<p>Let me know what your schedule looks like over the next few weeks for a meeting, and if I am able to tour your facility. I can be flexible to fit what works best for you and your team.</p>\r\n<p>Looking forward to catching up and continuing the conversation!</p></div><div><br></div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><img width=\"96\" height=\"38\" src=\"https://ci3.googleusercontent.com/mail-sig/AIorK4xpMAQi-3CccYzdad7DnbPHOkAHkZLthTPdqQy_mmGqmNua-ldbvlLW3KyCXMvL0Duc1K_cjsds8w7y\"><div><b>Liz Perkins</b><div>Vice President</div><div>585-233-0566<div><br></div></div></div></div></div></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</div></blockquote></div>','Hi Rick,\r\n\r\nHappy Friday!! Great to hear from you.\r\n\r\nCould we set up a call for either Tuesday, November 11 at 10:00 AM ET or\r\nThursday, November 13 at 10:00 AM ET? I’d like to loop in Michaela and Dan\r\nas well so we can align in one shot.\r\n\r\nIf one of those times works, I’ll send a calendar invite with the details.\r\n*Liz Perkins*\r\nVice President\r\n585-233-0566\r\n\r\n\r\n\r\nOn Wed, Nov 5, 2025 at 5:29 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> Hi Elizabeth,\r\n> Yes, would definitely like to catch up.\r\n> I’m still in Rochester and we’re still in process in Tampa, but yes, let’s\r\n> reconnect!\r\n> I’m usually open on Tuesday or Thursday mornings, if you want to setup a\r\n> call.\r\n> Please let me know what works best for you!\r\n> Rick\r\n>\r\n> Rick Mislan, PhD,\r\n> Founder, CTO\r\n>\r\n> https://mavrix1.com\r\n>\r\n> CONFIDENTIALITY NOTICE\r\n> This communication, including any attachments, may contain confidential,\r\n> privileged, or Controlled Unclassified Information (CUI) protected under\r\n> federal law. It is intended solely for the use of the designated\r\n> recipient(s). Any unauthorized review, use, disclosure, distribution, or\r\n> copying is strictly prohibited and may be unlawful.\r\n>\r\n> If you are not the intended recipient, please notify the sender\r\n> immediately, delete this email, and destroy all copies.\r\n>\r\n> Unless expressly stated, the views and opinions expressed herein are those\r\n> of the sender and do not necessarily reflect those of the sender’s employer\r\n> or any U.S. Government agency. All recipients are responsible for handling\r\n> information in accordance with applicable federal regulations, including\r\n> but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n>\r\n> On October 28, 2025 at 12:02:51 PM, Elizabeth Perkins (\r\n> liz@brandysmoldandtool.com) wrote:\r\n>\r\n> Hi Rick,\r\n>\r\n> I wanted to check in and see how things have been going since we last\r\n> spoke.\r\n>\r\n> I’ve recently moved to the Tampa–St. Petersburg area and would love the\r\n> opportunity to visit and tour your facility whenever it’s convenient. It\r\n> would be great to see your setup firsthand.\r\n>\r\n> I\'d also love to hear how your plans have progressed since we last talked.\r\n>\r\n> Let me know what your schedule looks like over the next few weeks for a\r\n> meeting, and if I am able to tour your facility. I can be flexible to fit\r\n> what works best for you and your team.\r\n>\r\n> Looking forward to catching up and continuing the conversation!\r\n>\r\n>\r\n> *Liz Perkins*\r\n> Vice President\r\n> 585-233-0566\r\n>\r\n>',0,0,0,0,0,0,'2025-11-07 21:31:23','2025-12-09 19:30:55','2025-12-09 19:30:55','2025-12-09 19:30:55',NULL,NULL,NULL),
(936,4,' <LV3PR16MB60972374DB3BC49C65DFC76DB4C0A@LV3PR16MB6097.namprd16.prod.outlook.com>',NULL,NULL,'Fw: Update','bob@ewriusa.com','Bob Raun','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n</head>\r\n<body>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nBrian and Rick.&nbsp;</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nBelow is an update from Rob Haun, Anspanner LLC, regarding hydrogen generation (very cool). Rob is lead on \'Cube\', a non-lithium energy storage system (Aussies are involved)&nbsp;</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nRob is an authority on plasma melting and electron beam melting for refractory and other metals/alloys.&nbsp;</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nLook forward to your comments.&nbsp;</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\">\r\nBob</div>\r\n<div id=\"mail-editor-reference-message-container\" class=\"ms-outlook-mobile-reference-message\">\r\n<div id=\"mail-editor-reference-message-container\">\r\n<hr style=\"display: inline-block; width: 98%;\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><span style=\"font-family: Calibri, sans-serif;\"><b>From:</b>&nbsp;Robert E Haun &lt;robhaun@anspanner.com&gt;<br>\r\n<b>Sent:</b>&nbsp;Saturday, November 8, 2025 11:55 AM<br>\r\n</span>\r\n<div style=\"font-family: Calibri, sans-serif;\">&nbsp;</div>\r\n</div>\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<p class=\"MsoNormal\" style=\"margin: 0in; font-family: Calibri, sans-serif; font-size: 12pt;\">\r\n<span style=\"font-size: 11pt;\">Hi Pete,</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0in; font-family: Calibri, sans-serif; font-size: 12pt;\">\r\n<span style=\"font-size: 11pt;\">&nbsp;</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0in; font-family: Calibri, sans-serif; font-size: 12pt;\">\r\n<span style=\"font-size: 11pt;\">The past 3 months have been busy in the lab for me.&nbsp; Here is a very brief update on my progress.</span></p>\r\n<ol start=\"1\" style=\"margin-top: 0in; margin-bottom: 0in;\">\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\" role=\"presentation\">1 kg samples of a hydrogen storage alloy are now routinely produced.</span></li><li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\" role=\"presentation\">2 kg samples look to be the limit of the existing system configuration.</span></li><li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\" role=\"presentation\">A planned upgrade to the material collection portion of the system will allow 10 kg samples.</span></li><li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\" role=\"presentation\">In September, Anspanner was awarded a Commercial Evaluation License from the US Army Research Lab\r\n for their Nanogalvanic Aluminum patents.&nbsp;</span></li><ol start=\"1\" style=\"margin-top: 0in; margin-bottom: 0in;\">\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\" role=\"presentation\">The alloy is designed to produce hydrogen gas by placing it in water.</span></li><li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\" role=\"presentation\">Two master alloy compositions have been made Al 28.5 Sn and Al 20 Sn – wt.%</span></li><li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\" role=\"presentation\">Five preliminary heats to produce rapidly solidified flake have been completed.</span></li></ol>\r\n</ol>\r\n<p class=\"MsoListParagraph\" style=\"text-indent: -1.5in; margin: 0in 0in 0in 1.5in; font-family: Aptos, sans-serif; font-size: 12pt;\">\r\n<span style=\"font-family: &quot;Times New Roman&quot;; font-size: 7pt; line-height: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">i.</span><span style=\"font-family: &quot;Times New Roman&quot;; font-size: 7pt; line-height: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">Total material processed into flake was 1.20 lb. (550 g)</span></p>\r\n<p class=\"MsoListParagraph\" style=\"text-indent: -1.5in; margin: 0in 0in 0in 1.5in; font-family: Aptos, sans-serif; font-size: 12pt;\">\r\n<span style=\"font-family: &quot;Times New Roman&quot;; font-size: 7pt; line-height: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">ii.</span><span style=\"font-family: &quot;Times New Roman&quot;; font-size: 7pt; line-height: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">A crude 3 gram compact of the Al 28.5 Sn rapidly solidified flake was immersed in water produced approximately 110 ml of gas collected over water.</span></p>\r\n<p class=\"MsoListParagraph\" style=\"text-indent: -1.5in; margin: 0in 0in 0in 1.5in; font-family: Aptos, sans-serif; font-size: 12pt;\">\r\n<span style=\"font-family: &quot;Times New Roman&quot;; font-size: 7pt; line-height: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">iii.</span><span style=\"font-family: &quot;Times New Roman&quot;; font-size: 7pt; line-height: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\">On Nov. 7, 2025, I purposely ignited the 110 ml gas sample.</span></p>\r\n<ol start=\"4\" style=\"margin-top: 0in; margin-bottom: 0in;\">\r\n<ol start=\"3\" style=\"margin-top: 0in; margin-bottom: 0in;\">\r\n<ol start=\"1\" style=\"margin-top: 0in; margin-bottom: 0in;\">\r\n<ol start=\"1\" style=\"margin-top: 0in; margin-bottom: 0in;\">\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\" role=\"presentation\">It went off with a load “pop” and heated the lid of the container.</span></li><li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\" role=\"presentation\">As per the inventor’s claims, the evolved gas was hydrogen.</span></li></ol>\r\n</ol>\r\n</ol>\r\n<li style=\"font-family: Aptos, sans-serif; font-size: 12pt; margin: 0in;\"><span style=\"font-family: Calibri, sans-serif; font-size: 11pt;\" role=\"presentation\">The density of the nanogalvanic aluminum material is about one half of the hydrogen storage material\r\n – maximum production of that material will be about 5 kg.</span></li></ol>\r\n<p class=\"MsoNormal\" style=\"margin: 0in; font-family: Calibri, sans-serif; font-size: 12pt;\">\r\n<span style=\"font-size: 11pt;\">&nbsp;</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0in; font-family: Calibri, sans-serif; font-size: 12pt;\">\r\n<span style=\"font-size: 11pt;\">I will be working on making 2.00” diameter disks to further test of the nanoglavanic aluminum.&nbsp; Rapidly solidified flake production rates need to be determined as well as the hydrogen production rates.&nbsp; The initial hydrogen production\r\n demonstration apparatus will be built from glass.&nbsp; I believe it will be a good “show-and-tell” piece for us.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0in; font-family: Calibri, sans-serif; font-size: 12pt;\">\r\n<span style=\"font-size: 11pt;\">&nbsp;</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0in; font-family: Calibri, sans-serif; font-size: 12pt;\">\r\n<span style=\"font-size: 11pt;\">Best regards,</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0in; font-family: Calibri, sans-serif; font-size: 12pt;\">\r\n<span style=\"font-size: 11pt;\">Rob</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0in; font-family: Calibri, sans-serif; font-size: 12pt;\">\r\n<span style=\"font-size: 11pt;\">&nbsp;</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0in; font-family: Calibri, sans-serif; font-size: 12pt;\">\r\n<span style=\"font-family: &quot;Times New Roman&quot;, serif; font-size: 11pt;\">Rob Haun</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0in; font-family: Calibri, sans-serif; font-size: 12pt;\">\r\n<span style=\"font-family: &quot;Times New Roman&quot;, serif; font-size: 11pt;\">Anspanner, LLC</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0in; font-family: Calibri, sans-serif; font-size: 12pt;\">\r\n<span style=\"font-family: &quot;Times New Roman&quot;, serif; font-size: 11pt;\">1425 Prentice Dr.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0in; font-family: Calibri, sans-serif; font-size: 12pt;\">\r\n<span style=\"font-family: &quot;Times New Roman&quot;, serif; font-size: 11pt;\">Healdsburg, CA &nbsp;95448</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0in; font-family: Calibri, sans-serif; font-size: 12pt;\">\r\n<span style=\"font-family: &quot;Times New Roman&quot;, serif; font-size: 11pt;\">Mobile: +1 (707) 472-8853</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0in; font-family: Calibri, sans-serif; font-size: 12pt;\">\r\n<span style=\"font-family: &quot;Times New Roman&quot;, serif; font-size: 11pt;\">email: robhaun@anspanner.com</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0in; font-family: Calibri, sans-serif; font-size: 12pt;\">\r\n&nbsp;</p>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','Brian and Rick.\r\nBelow is an update from Rob Haun, Anspanner LLC, regarding hydrogen generation (very cool). Rob is lead on \'Cube\', a non-lithium energy storage system (Aussies are involved)\r\nRob is an authority on plasma melting and electron beam melting for refractory and other metals/alloys.\r\nLook forward to your comments.\r\nBob\r\n________________________________\r\nFrom: Robert E Haun <robhaun@anspanner.com>\r\nSent: Saturday, November 8, 2025 11:55 AM\r\n\r\nHi Pete,\r\n\r\nThe past 3 months have been busy in the lab for me.  Here is a very brief update on my progress.\r\n\r\n  1.  1 kg samples of a hydrogen storage alloy are now routinely produced.\r\n  2.  2 kg samples look to be the limit of the existing system configuration.\r\n  3.  A planned upgrade to the material collection portion of the system will allow 10 kg samples.\r\n  4.  In September, Anspanner was awarded a Commercial Evaluation License from the US Army Research Lab for their Nanogalvanic Aluminum patents.\r\n     *   The alloy is designed to produce hydrogen gas by placing it in water.\r\n     *   Two master alloy compositions have been made Al 28.5 Sn and Al 20 Sn – wt.%\r\n     *   Five preliminary heats to produce rapidly solidified flake have been completed.\r\n\r\n                                                               i.      Total material processed into flake was 1.20 lb. (550 g)\r\n\r\n                                                             ii.      A crude 3 gram compact of the Al 28.5 Sn rapidly solidified flake was immersed in water produced approximately 110 ml of gas collected over water.\r\n\r\n                                                           iii.      On Nov. 7, 2025, I purposely ignited the 110 ml gas sample.\r\n\r\n           *   It went off with a load “pop” and heated the lid of the container.\r\n           *   As per the inventor’s claims, the evolved gas was hydrogen.\r\n  1.  The density of the nanogalvanic aluminum material is about one half of the hydrogen storage material – maximum production of that material will be about 5 kg.\r\n\r\nI will be working on making 2.00” diameter disks to further test of the nanoglavanic aluminum.  Rapidly solidified flake production rates need to be determined as well as the hydrogen production rates.  The initial hydrogen production demonstration apparatus will be built from glass.  I believe it will be a good “show-and-tell” piece for us.\r\n\r\nBest regards,\r\nRob\r\n\r\nRob Haun\r\nAnspanner, LLC\r\n1425 Prentice Dr.\r\nHealdsburg, CA  95448\r\nMobile: +1 (707) 472-8853\r\nemail: robhaun@anspanner.com',0,0,0,0,0,0,'2025-11-08 18:53:18','2025-12-09 19:30:55','2025-12-09 19:30:55','2025-12-09 19:30:55',NULL,NULL,NULL),
(937,4,'<DE1130BA-63A0-4963-9764-62D47158AF7B@mavrix.one>',NULL,NULL,'QB Reports','Brian@mavrix.one','Brian Stufflebean','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=us-ascii\"></head><body style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"><div><div><span></span><meta charset=\"UTF-8\"><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br class=\"Apple-interchange-newline\"><br class=\"Apple-interchange-newline\"><a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a href=\"https://mavrix1.com\">https://mavrix1.com/</a></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family: Helvetica; font-style: normal; font-weight: 400; font-size: 12px;\">&nbsp;This&nbsp;communication&nbsp;is confidential&nbsp;and&nbsp;intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, or&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any such&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this communication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the&nbsp;message to inform him or her of the&nbsp;error.<br><br></span></div>\r\n</div>\r\n<br></div></body></html>','Rick, \r\n\r\nHopefully these will be of help.\r\n\r\n\r\n\r\n\r\n\r\n￼￼￼￼￼￼￼￼￼￼\r\n\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n￼\r\n\r\n\r\nbrian@mavrix.one <mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-11-08 21:25:08','2025-12-09 19:30:56','2025-12-09 19:30:56','2025-12-09 19:30:56',NULL,NULL,NULL),
(938,4,'<09D1D2C0-6692-45E1-B70F-B4E38AF21818@mavrix.one>',NULL,NULL,'Re: QB Reports','brian@mavrix.one','\"Brian C. Stufflebean\"','<html class=\"apple-mail-supports-explicit-dark-mode\"><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body dir=\"auto\">Think it takes, exporting from PDF to Excel format and selecting in Excel that format. &nbsp;So, several steps.&nbsp;<div><br></div><div>I will look in QB to see if there is more direct way.</div><div><br></div><div><br id=\"lineBreakAtBeginningOfSignature\"><div dir=\"ltr\">Sent from my iPhone</div><div dir=\"ltr\"><br><blockquote type=\"cite\">On Nov 10, 2025, at 7:34 AM, Rick &lt;rick@mavrix.one&gt; wrote:<br><br></blockquote></div><blockquote type=\"cite\"><div dir=\"ltr\">﻿\r\n    <style>body { font-family: Helvetica, Arial; font-size: 13px; }</style><div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Can I ask for these in css format (comma separated values)?</div><div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">I can import a lot easier that way for testing :)</div><div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Thanks!</div><div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\">Rick</div> <div id=\"bloop_sign_1762777988525979136\" class=\"bloop_sign\">\r\n        <title></title>\r\n     \r\n    <div><br></div><div>Rick Mislan, PhD,&nbsp;</div><div>Founder, CTO</div><div><div>&lt;52AACA64-B468-4285-B5C4-838F6707FFCC&gt;</div></div><div>https://mavrix1.com</div><div><br></div><div><font face=\"Helvetica\"><span style=\"font-size: 12px;\"><b><u>CONFIDENTIALITY NOTICE</u></b></span></font></div><div><font face=\"Helvetica\"><span style=\"font-size: 12px;\"><i>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</i></span></font></div><div><font face=\"Helvetica\"><span style=\"font-size: 12px;\"><i><br></i></span></font></div><div><font face=\"Helvetica\"><span style=\"font-size: 12px;\"><i>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</i></span></font></div><div><font face=\"Helvetica\"><span style=\"font-size: 12px;\"><i><br></i></span></font></div><div><font face=\"Helvetica\"><span style=\"font-size: 12px;\"><i>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</i></span></font></div>\r\n     \r\n</div> <br><p class=\"airmail_on\">On November 8, 2025 at 16:25:19, Brian Stufflebean (<a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a>) wrote:</p> <blockquote type=\"cite\" class=\"clean_bq\"><span><div style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"><div></div><div><span style=\"font-size: 14px;\">Rick,&nbsp;</span><div><span style=\"font-size: 14px;\"><br></span></div><div><span style=\"font-size: 14px;\">Hopefully these will be of help.</span></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div><br><div>\r\n<div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><font size=\"2\">Best regards,</font></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><font size=\"2\"><br></font></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><font size=\"2\"><br></font></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><font size=\"2\"><br></font></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><font size=\"2\" style=\"font-family: Helvetica; font-style: normal; font-weight: 400; font-size: 12px;\"><b>Brian C. Stufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 Direct</b></div><div style=\"font-family: Helvetica; font-style: normal; font-weight: 400; font-size: 12px;\"><span style=\"font-size: 11px;\">(866)896-2423 Fax</span></div></div><span style=\"caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"></span><br class=\"Apple-interchange-newline\"><span></span></div></div><div><div><span></span><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br class=\"Apple-interchange-newline\"><br class=\"Apple-interchange-newline\"><a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a href=\"https://mavrix1.com\">https://mavrix1.com/</a></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family: Helvetica; font-style: normal; font-weight: 400; font-size: 12px;\">&nbsp;This&nbsp;communication&nbsp;is confidential&nbsp;and&nbsp;intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, or&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any such&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this communication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the&nbsp;message to inform him or her of the&nbsp;error.<br><br></span></div>\r\n</div>\r\n<br></div></div></div></span></blockquote>\r\n\r\n\r\n</div></blockquote></div></body></html>','Think it takes, exporting from PDF to Excel format and selecting in Excel that format. &nbsp;So, several steps.&nbsp;I will look in QB to see if there is more direct way.Sent from my iPhoneOn Nov 10, 2025, at 7:34 AM, Rick &lt;rick@mavrix.one&gt; wrote:﻿\r\n    body { font-family: Helvetica, Arial; font-size: 13px; }Can I ask for these in css format (comma separated values)?I can import a lot easier that way for testing :)Thanks!Rick \r\n        \r\n     \r\n    Rick Mislan, PhD,&nbsp;Founder, CTO&lt;52AACA64-B468-4285-B5C4-838F6707FFCC&gt;https://mavrix1.comCONFIDENTIALITY NOTICEThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n     \r\n On November 8, 2025 at 16:25:19, Brian Stufflebean (brian@mavrix.one) wrote: Rick,&nbsp;Hopefully these will be of help.\r\nBest regards,Brian C. StufflebeanCEO, Co-Founder(941)545-4153 Direct(866)896-2423 Faxbrian@mavrix.onehttps://mavrix1.com/CONFIDENTIALITY NOTICE:&nbsp;This&nbsp;communication&nbsp;is confidential&nbsp;and&nbsp;intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, or&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any such&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this communication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the&nbsp;message to inform him or her of the&nbsp;error.\r\n\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-11-10 13:37:40','2025-12-09 19:30:56','2025-12-09 19:30:56','2025-12-09 19:30:56',NULL,NULL,NULL),
(939,4,'<CAGOCFXhR8Sytc-4kWGNWFA2vA4HKdHMaWg5CrnvoifEtntAC0w@mail.gmail.com>',NULL,NULL,'Fwd: Battery Cell BOM & 3D Drawing, initial baseline RFQ','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>This is for a battery build for a company called EcoFlow.   We collect very similar data from our customers, build sheets that you could use when building your system you showed me this morning.   </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">Jordan Wroblewski</strong> <span dir=\"auto\">&lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt;</span><br>Date: Mon, Nov 10, 2025 at 10:46 AM<br>Subject: Fwd: Battery Cell BOM &amp; 3D Drawing, initial baseline RFQ<br>To: Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\">Nathan@lithiumbatterycompany.com</a>&gt;, Nick Powell &lt;<a href=\"mailto:nick@lithiumbatterycompany.com\">nick@lithiumbatterycompany.com</a>&gt;<br></div><br><br><div dir=\"ltr\"><div>See below the BOM for Eco Flow&#39;s battery pack.</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">Giovanni Trumbo</strong> <span dir=\"auto\">&lt;<a href=\"mailto:giovanni.trumbo@ecoflow.com\" target=\"_blank\">giovanni.trumbo@ecoflow.com</a>&gt;</span><br>Date: Mon, Nov 10, 2025 at 9:16 AM<br>Subject: Battery Cell BOM &amp; 3D Drawing, initial baseline RFQ<br>To: Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>Cc: 曹骏(Tony Cao) &lt;<a href=\"mailto:jun.cao@ecoflow.com\" target=\"_blank\">jun.cao@ecoflow.com</a>&gt;<br></div><br><br><div id=\"m_-1562071221837115075m_-3465808465198387657editor_version_7.54.1_WBn5LcAb\" style=\"word-break:break-word\"><div style=\"margin-top:4px;margin-bottom:4px;line-height:1.6\"><div dir=\"auto\" style=\"font-size:14px\">Hey Jordan,</div></div><div style=\"margin-top:4px;margin-bottom:4px;line-height:1.6\"><div dir=\"auto\" style=\"font-size:14px\"><br></div></div><div style=\"margin-top:4px;margin-bottom:4px;line-height:1.6\"><div dir=\"auto\" style=\"font-size:14px\">I&#39;m attaching a 3d drawing and an excel BOM of the Battery Pack we spoke about over the phone on Friday. The NDA is signed and countersigned, so please keep this confidential.</div></div><div style=\"margin-top:4px;margin-bottom:4px;line-height:1.6\"><div dir=\"auto\" style=\"font-size:14px\"><br></div></div><div style=\"margin-top:4px;margin-bottom:4px;line-height:1.6\"><div dir=\"auto\" style=\"font-size:14px\">In 2026 we estimate we&#39;ll produce 30,000 units, and then jump to 70,000 for 2027.</div></div><div style=\"margin-top:4px;margin-bottom:4px;line-height:1.6\"><div dir=\"auto\" style=\"font-size:14px\"><br></div></div><div style=\"margin-top:4px;margin-bottom:4px;line-height:1.6\"><div dir=\"auto\" style=\"font-size:14px\">Look over the BOM and let me know if these types of materials are something you can source and use in your assembly, or if you need us to provide them.</div></div><div style=\"margin-top:4px;margin-bottom:4px;line-height:1.6\"><div dir=\"auto\" style=\"font-size:14px\"><br></div></div><div style=\"margin-top:4px;margin-bottom:4px;line-height:1.6\"><div dir=\"auto\" style=\"font-size:14px\">It looks like we&#39;ll have 10 LFP Battery cells for each assembly.</div></div><div style=\"margin-top:4px;margin-bottom:4px;line-height:1.6\"><div dir=\"auto\" style=\"font-size:14px\"><br></div></div><div style=\"margin-top:4px;margin-bottom:4px;line-height:1.6\"><div dir=\"auto\" style=\"font-size:14px\">Give me a call or reply by email for questions. I&#39;m sure we owe you more documentation or files. See what you can do with these. Thanks </div></div><div style=\"margin-top:4px;margin-bottom:4px;line-height:1.6\"><div dir=\"auto\" style=\"font-size:14px\"><br></div></div><div style=\"margin-top:4px;margin-bottom:4px;line-height:1.6\"><div dir=\"auto\" style=\"font-size:14px\"><img style=\"max-width:100%\" src=\"cid:B117CEEC-C47D-41E7-931A-CA889D031213\" width=\"655\"></div></div><div style=\"margin-top:4px;margin-bottom:4px;line-height:1.6\"><div dir=\"auto\" style=\"font-size:14px\"><br></div></div><div style=\"margin-top:4px;margin-bottom:4px;line-height:1.6\"><div dir=\"auto\" style=\"font-size:14px\"><img style=\"max-width:100%\" src=\"cid:37DC5D55-6768-4B9E-8BF4-C0F69CFC2DB4\" width=\"651\"></div></div><div style=\"margin-top:4px;margin-bottom:4px;line-height:1.6\"><div dir=\"auto\" style=\"font-size:14px\"><br></div></div><div style=\"margin-top:4px;margin-bottom:4px;line-height:1.6\"><div dir=\"auto\" style=\"font-size:14px\"><span style=\"font-size:12pt\"><span style=\"font-family:Aptos,sans-serif\"><span style=\"color:rgb(31,35,41)\"><span style=\"background-color:rgb(255,255,255)\">Giovanni Trumbo - Buyer</span></span></span></span></div></div><div style=\"margin-top:4px;margin-bottom:4px;line-height:1.6\"><div dir=\"auto\" style=\"font-size:14px\"><span style=\"font-size:12pt\"><span style=\"font-family:Aptos,sans-serif\"><span style=\"color:rgb(31,35,41)\"><span style=\"background-color:rgb(255,255,255)\"><span> </span></span></span></span></span></div></div><div style=\"margin-top:4px;margin-bottom:4px;line-height:1.6\"><div dir=\"auto\" style=\"font-size:14px\"><span style=\"font-size:12pt\"><span style=\"font-family:Aptos,sans-serif\"><span style=\"color:rgb(31,35,41)\"><span style=\"background-color:rgb(255,255,255)\">EcoFlow</span></span></span></span></div></div><div style=\"margin-top:4px;margin-bottom:4px;line-height:1.6\"><div dir=\"auto\" style=\"font-size:14px\"><span style=\"font-size:12pt\"><span style=\"font-family:Aptos,sans-serif\"><span style=\"color:rgb(31,35,41)\"><span style=\"background-color:rgb(255,255,255)\">Address: Dallas, TX</span></span></span></span></div></div><div style=\"margin-top:4px;margin-bottom:4px;line-height:1.6\"><div dir=\"auto\" style=\"font-size:14px\"><span style=\"font-size:12pt\"><span style=\"font-family:Aptos,sans-serif\"><span style=\"color:rgb(31,35,41)\"><span style=\"background-color:rgb(255,255,255)\">Phone: +1 469-882-1079</span></span></span></span></div></div><div style=\"margin-top:4px;margin-bottom:4px;line-height:1.6\"><div dir=\"auto\" style=\"font-size:14px\"><span style=\"font-size:12pt\"><span style=\"font-family:Aptos,sans-serif\"><span style=\"color:rgb(31,35,41)\"><span style=\"background-color:rgb(255,255,255)\">Email: </span></span></span></span><u><span style=\"font-size:12pt\"><span style=\"font-family:Aptos,sans-serif\"><span style=\"background-color:rgb(255,255,255)\"><a href=\"mailto:giovanni.trumbo@ecoflow.com\" rel=\"noopener noreferrer\" style=\"color:rgb(20,86,240)\" target=\"_blank\">giovanni.trumbo@ecoflow.com</a></span></span></span></u></div></div><div style=\"margin-top:4px;margin-bottom:4px;line-height:1.6\"><div dir=\"auto\" style=\"font-size:14px\"><span style=\"font-size:12pt\"><span style=\"font-family:Aptos,sans-serif\"><span style=\"color:rgb(31,35,41)\"><span style=\"background-color:rgb(255,255,255)\">Website: </span></span></span></span><u><span style=\"font-size:12pt\"><span style=\"font-family:Aptos,sans-serif\"><span style=\"background-color:rgb(255,255,255)\"><a href=\"http://ecoflow.com/\" rel=\"noopener noreferrer\" style=\"color:rgb(20,86,240)\" target=\"_blank\">ecoflow.com</a></span></span></span></u></div></div></div>\r\n<div style=\"clear:both\"><p class=\"MsoNormal\"><span style=\"font-family:宋体;font-size:14.0px;color:#171a1d\"><br></span></p><p class=\"MsoNormal\"><br></p><p class=\"MsoNormal\"><span style=\"font-size:14.0px;color:#171a1d;font-family:microsoft yahei\">This e-mail and its attachments contain confidential information\r\nfrom EcoFlow, which is intended only for the person or entity whose address is\r\nlisted above. Any use of the information contained herein in any way\r\n(including, but not limited to, total or partial disclosure, reproduction, or\r\ndissemination) by persons other than the intended recipient(s) is prohibited.\r\nIf you receive this e-mail in error, please notify the sender by phone or email\r\nimmediately and delete it. Thank you.</span></p><p class=\"MsoNormal\"><span style=\"font-size:14.0px;color:#171a1d;font-family:microsoft yahei\"></span></p><div><span style=\"white-space:pre-wrap\">The company does not accept any purchase or commercial commitment made via email unless confirmed by a duly signed written contract.</span><span style=\"white-space:pre-wrap\">Any views expressed in this email are those of the individual sender and do not necessarily represent the views of the company.</span></div><div></div><p class=\"MsoNormal\"></p><div style=\"clear:both\"><br></div><p></p><p class=\"MsoNormal\"><span style=\"font-size:14.0px;color:#171a1d;font-family:microsoft yahei\"><br></span></p></div></div></div>\r\n</div></div>','This is for a battery build for a company called EcoFlow.   We collect very\r\nsimilar data from our customers, build sheets that you could use when\r\nbuilding your system you showed me this morning.\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\nDate: Mon, Nov 10, 2025 at 10:46 AM\r\nSubject: Fwd: Battery Cell BOM & 3D Drawing, initial baseline RFQ\r\nTo: Nathan Staron <Nathan@lithiumbatterycompany.com>, Nick Powell <\r\nnick@lithiumbatterycompany.com>\r\n\r\n\r\nSee below the BOM for Eco Flow\'s battery pack.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: Giovanni Trumbo <giovanni.trumbo@ecoflow.com>\r\nDate: Mon, Nov 10, 2025 at 9:16 AM\r\nSubject: Battery Cell BOM & 3D Drawing, initial baseline RFQ\r\nTo: Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\nCc: 曹骏(Tony Cao) <jun.cao@ecoflow.com>\r\n\r\n\r\nHey Jordan,\r\n\r\nI\'m attaching a 3d drawing and an excel BOM of the Battery Pack we spoke\r\nabout over the phone on Friday. The NDA is signed and countersigned, so\r\nplease keep this confidential.\r\n\r\nIn 2026 we estimate we\'ll produce 30,000 units, and then jump to 70,000\r\nfor 2027.\r\n\r\nLook over the BOM and let me know if these types of materials are something\r\nyou can source and use in your assembly, or if you need us to provide them.\r\n\r\nIt looks like we\'ll have 10 LFP Battery cells for each assembly.\r\n\r\nGive me a call or reply by email for questions. I\'m sure we owe you more\r\ndocumentation or files. See what you can do with these. Thanks\r\n\r\n\r\n\r\nGiovanni Trumbo - Buyer\r\n\r\nEcoFlow\r\nAddress: Dallas, TX\r\nPhone: +1 469-882-1079\r\nEmail: *giovanni.trumbo@ecoflow.com <giovanni.trumbo@ecoflow.com>*\r\nWebsite: *ecoflow.com <http://ecoflow.com/>*\r\n\r\n\r\n\r\nThis e-mail and its attachments contain confidential information from\r\nEcoFlow, which is intended only for the person or entity whose address is\r\nlisted above. Any use of the information contained herein in any way\r\n(including, but not limited to, total or partial disclosure, reproduction,\r\nor dissemination) by persons other than the intended recipient(s) is\r\nprohibited. If you receive this e-mail in error, please notify the sender\r\nby phone or email immediately and delete it. Thank you.\r\n\r\nThe company does not accept any purchase or commercial commitment made via\r\nemail unless confirmed by a duly signed written contract.Any views\r\nexpressed in this email are those of the individual sender and do not\r\nnecessarily represent the views of the company.',0,0,0,0,0,0,'2025-11-10 16:10:38','2025-12-09 19:31:04','2025-12-09 19:31:04','2025-12-09 19:31:04',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(940,4,'<CAGOCFXj9sRDJnq+-9jZve-0iwiumZwP73j30fWH7Cxdwv+Z0eg@mail.gmail.com>',NULL,NULL,'Fwd: Shmuel De-Leon Energy - Li-Ion Cells (Cylindrical, Pouch, Prismatic) for sale for this week - November 10, 2025','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">shmuel de-leon</strong> <span dir=\"auto\">&lt;<a href=\"mailto:shmuel@sdle.co.il\">shmuel@sdle.co.il</a>&gt;</span><br>Date: Mon, Nov 10, 2025 at 11:20 AM<br>Subject: Shmuel De-Leon Energy - Li-Ion Cells (Cylindrical, Pouch, Prismatic) for sale for this week - November 10, 2025<br>To: <br></div><br><br>\r\n\r\n\r\n\r\n\r\n\r\n<div lang=\"en-IL\" link=\"#0563C1\" vlink=\"#954F72\" style=\"word-wrap:break-word\">\r\n<div>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"PL\" style=\"color:red\"><img width=\"103\" height=\"136\" style=\"width:1.0729in;height:1.4166in\" id=\"m_-7118217520720269965תמונה_x0020_2\" src=\"cid:ii_19a6e9d3cda5b16b21\"></span></b><b><span lang=\"PL\" style=\"color:red\"><u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"PL\" style=\"color:red\"><u></u> <u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"PL\" style=\"color:red\">---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------<u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"PL\" style=\"color:red\"><u></u> <u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"PL\" style=\"color:red\">Attached list of cells we have availible for this week – Contact us for these cells or for other cell models you need and we will check availability – Contact us in case you wish to sell cell stock you\r\n have<u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"PL\" style=\"color:red\">----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------<u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"PL\" style=\"color:red\"><u></u> <u></u></span></b></p>\r\n<ul style=\"margin-top:0in\" type=\"disc\">\r\n<li style=\"color:red;margin-left:0in\">\r\n<b><span lang=\"PL\">Attached an update on discontiniue Panasonic cells  -Contact us to purchase these cells before it will be to late!!!<u></u><u></u></span></b></li></ul>\r\n<p class=\"MsoNormal\"><b><span lang=\"PL\" style=\"color:red\"><u></u> <u></u></span></b></p>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"2112\" style=\"width:22.0in;border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"1863\" nowrap valign=\"bottom\" style=\"width:1396.9pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><u><span lang=\"EN-US\" style=\"font-size:16.0pt;color:black\">New High Energy Density Cells we sell:<u></u><u></u></span></u></b></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:16.0pt;color:black\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">21700 cell</span></b><span style=\"color:black\"> – production capacity is 2000 cells per day (Vendor start building 500MWh/Year Factory – Production start\r\n Q1/26) - cost ~$20-28/pcs ex work China depend on the quantity<br>\r\nEnergy Density: 393 Wh/kg, Capacity: 6Ah at C/5, at room temperature to 3V C.O.V, Weight: 58 Grams, Size: 21.8, 71.8, Nominal voltage: 3.8V,  <br>\r\nMax constant charge current is 1C to 4.35V, Cycle life: 120 cycles, Max constant discharge current is 5C, Discharge temp -10 to 65 Deg C, <br>\r\nCharge temp 0 to 35 Deg C <br>\r\n <br>\r\n<b>18650 cell</b> – production capacity is 2GWh/Year -  cost ~$10/pcs ex work China depend on the quantity<br>\r\nEnergy Density: 326 Wh/kg, Capacity: 4.3Ah at C/5, at room temperature to 3V C.O.V, Weight: 50 Grams, Size: 18.35, 65.5, Nominal voltage: 3.8V,  <br>\r\nMax constant charge current is 0.2C to 4.25V, Cycle life: 100 cycles, Max constant discharge current is 4C, Discharge temp -10 to 60 Deg C,  <br>\r\nCharge temp 0 to 45 Deg C<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">Pouch Cells Vendor 1</span></b><span style=\"color:black\"><br>\r\nWe also sell quasi solid lithium metal anode free pouch cells with energy densities of up to 520 Wh/kg, 1200 Wh/l, 8-50Ah capacity, 7C max constant discharge, 10-50 Cycles - Cells are made in 200MWh/Year factory .<br>\r\n<br>\r\n<b>Pouch Cells Vendor 2</b><br>\r\nWe also sell quasi solid lithium metal pouch cells with energy densities of up to 450 Wh/kg, 6-50Ah capacity, 8C max constant discharge, 1200 Cycles - Cells are made in 600MWh/Year factory.<br>\r\n<br>\r\n<b>Pouch Cells Vendor 3</b><br>\r\nWe also sell Semi solid lithium metal anode free pouch cells with energy densities of up to 400-600 Wh/kg, 8-50Ah capacity, 5C max constant discharge, 400Wh/Kg with 800 cycles, 500-600 Wh/kg with 10-15 Cycles - Cells are made in 10MWh/Year prototype production\r\n line.<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">We sell battery packs assemble with lithium metal cells with 400-460 Wh/kg.</span></b><b><u><span lang=\"EN-US\" style=\"font-size:16.0pt;color:black\"><u></u><u></u></span></u></b></p>\r\n<p class=\"MsoNormal\"><b><u><span lang=\"EN-US\" style=\"font-size:16.0pt;color:black\">---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------<u></u><u></u></span></u></b></p>\r\n<p class=\"MsoNormal\"><b><u><span lang=\"EN-US\" style=\"font-size:16.0pt;color:black\"><u></u><span style=\"text-decoration:none\"> </span><u></u></span></u></b></p>\r\n<p class=\"MsoNormal\"><b><u><span lang=\"EN-US\" style=\"font-size:16.0pt;color:black\">Our Customers/Suppliers new cells with and older date code stocks we have for sale:<u></u><u></u></span></u></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"EN-US\" style=\"color:black\"><u></u> <u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b>We have in Germany Panasonic NCR18650-B in special pricing – Contact us for more details<u></u><u></u></b></p>\r\n<p class=\"MsoNormal\"><b><u></u> <u></u></b></p>\r\n<p class=\"MsoNormal\"><b><span style=\"color:red\">Panasonic NCR-18650B</span></b><br>\r\nPrice for an order of minimum 50.040 pcs. = 3,42 € (transport costs will be added)<br>\r\nPrice is only valid for an order of minimum 50.040 pcs.<br>\r\nProduction date code of the cells: 34.700 pcs. with November 2024, 15.340 pcs. with March 2025<br>\r\nDelivery time: available on stock - subject to being unsold!<br>\r\n<b><br>\r\n<span style=\"color:red\">Molicel INR21700-P42A</span></b><br>\r\nPrice for an order of minimum 20.000 pcs.: 3.5 € (transport costs will be added)<br>\r\nMaximum available quantity: 48.000 pcs.<br>\r\nProduction date code of the cells: March 2025<br>\r\n<br>\r\n<b><span style=\"color:red\">Molicel INR21700-P45B</span></b><br>\r\nPrice for an order of minimum 20.000 pcs.: 3.5 € (transport costs will be added)<br>\r\nMaximum available quantity: 41.000 pcs.<br>\r\nProduction date code of the cells: December 2024 and January 2025<u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><u></u> <u></u></b></p>\r\n<p class=\"MsoNormal\"><b><span style=\"color:red\">Molicel INR18650-P28A</span></b><br>\r\nPrice for an order of minimum 7.000 pcs.: 1.8 € (transport costs will be added)<br>\r\nProduction date code of the cells: 2022 – Location: USA<b><u></u><u></u></b></p>\r\n<p class=\"MsoNormal\"><b><u></u> <u></u></b></p>\r\n<p class=\"MsoNormal\"><b>We have in Germany:<u></u><u></u></b></p>\r\n<p class=\"MsoNormal\">Murata US18650VTC6, 25K, cost 3Euro/pcs, Date cost March 2024<u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\"><b>We have in Germany:<u></u><u></u></b></p>\r\n<p class=\"MsoNormal\"><span lang=\"en-AE\">Panasonic 150K NCR18650GA6W (Factory Wuxi China) Date Code 2022 €2.6/pcs.<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"en-AE\"><u></u> <u></u></span></p>\r\n<p><span style=\"color:#1f497d\">----------------------------------------------------------------------------------------------------------------------------------------------------------------------------<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"EN-US\" style=\"font-size:16.0pt;color:black\">New cells we have for sale:<u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"EN-US\" style=\"font-size:16.0pt;color:black\"><u></u> <u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"EN-US\" style=\"font-size:16.0pt;color:#ee0000\">We start selling Moli Energy 21700 6.5Ah cells.</span></b><b><span style=\"font-size:16.0pt;color:#ee0000\"><u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\"><u></u> <u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"EN-US\" style=\"color:black\">Supplier 1:</span></b><b><span style=\"color:black\"><u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"EN-US\" style=\"color:black\">Moli cells</span></b><b><span style=\"color:black\"><u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\">P26A – Any Quantity 10K and up – fresh cells – An attractive cost.</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\">P28A – Any Quantity 10K and up – fresh cells - An attractive cost.</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\">P42A – Any Quantity 10K and up – fresh cells - An attractive cost.</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\">M35A – Any Quantity 10K and up – fresh cells - An attractive cost.</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"1271\" style=\"width:953.0pt;border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"309\" nowrap colspan=\"2\" valign=\"bottom\" style=\"width:232.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n<li style=\"color:black;margin-left:0in\">\r\n<b><span>Samsung SDI<u></u><u></u></span></b></li></ol>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Leadtime<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-20RM<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High Rate, 3.6V, 2.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.55 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in Malaysia<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-20RM<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High Rate, 3.6V, 2.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.57 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in Malaysia, MOQ 1 Pallet<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-25R<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High Rate, 3.6V, 2.5Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.68 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-26JM<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High Energy, 3.6V, 2.6Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.30 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2021-08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in Malaysia<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-30Q<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High rate, 3.6V, 3.0Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.25 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-07<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-30Q<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High rate, 3.6V, 3.0Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.15 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-10<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 1 Pallet<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-35E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 3.5Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.78 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 3 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-35E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 3.5Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.45 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-01<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-30T<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High Rate, 3.6V, 3.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-40T5<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High Rate, 3.6V, 4.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.05 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-40T<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High Rate, 3.6V, 4.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.90 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-02<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:12.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-48X3<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4.8Ah, 3000cycles,bare<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.65 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2023-12<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Bare cells<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-48X2<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4.8Ah, 3000cycles<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4 weeks<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2022-01<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-50E2<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.0Ah, 2C(C), 3C(P)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.70 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-01<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-50E2<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.0Ah, 2C(C), 3C(P)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.95 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Available in Oct.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 2025-07<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-50GB<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.0Ah, 1C(C), 2C(P)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.15 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-03<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in Malaysia, MOQ 1 Pallet<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-50S<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.0Ah 5C(C), 9C(P)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.45 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 2025<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-50S<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.0Ah 5C(C), 9C(P)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.68 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 2025<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-53G2<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.3Ah, 1C(C)<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.40 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-03<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">with tube<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-58E<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.64V, 5330mAh, 3C max<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-07<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"309\" nowrap colspan=\"2\" valign=\"bottom\" style=\"width:232.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">2. LG Energy Solution<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-F1L<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High Energy, 3.6V, 3.35Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.25 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-09<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-MF1<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 2.15Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2021-02<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Lot A045<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-M26(S)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 2.6Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">19,000pcs<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.83 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2020-10<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-M29<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 2.85Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.2 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Fresh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650HJ2<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High Rate, 3.6V, 3.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.05 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-05<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650HJ2<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High Rate, 3.6V, 3.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.21 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-MH1<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 3.2Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.56 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-MH1<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 3.2Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.54 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Within 6 months<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 1 Pallet<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-MJ1<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 3.5Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.55 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-MJ1<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 3.5Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.53 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 1 Pallet<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-M48<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.68V, 17.4Wh<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.03 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2023-05<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">LOT C118D283<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-M48A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.6 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-M50LT<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 5.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.92 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-M52V<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.2Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.16 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 2025<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in Korea, Bare cell<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">Cylindrical</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">21700-M58T</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">3.6V, 5.8Ah</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">5,330pcs</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">$2.15\r\n</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">FCA HK</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">3 days</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">2023-11</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">Made in Korea,\r\n<br>\r\nSpecial Promotion to take all</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-M58T<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.8Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$6.15 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3 days<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-06<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in Korea<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-M58T<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.8Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.7 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3 days<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Pouch Polymer<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">E66<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Li-ion, 3.65V 66Ah 11.3 x 98 x 357mm<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$35.00 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N/A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">A- grade<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Pouch Polymer<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">E78<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Li-ion, 3.65V 78Ah 8 x 98 x 510mm<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$38.00 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N/A<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">A- grade<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"309\" nowrap colspan=\"2\" valign=\"bottom\" style=\"width:232.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">3. Panasonic (Sanyo)<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650RX (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1950mAh, 3.6V<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 1 Pallet<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.8 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 3-6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Fresh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650AA (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2250mAh, 3.6V, 8A discharge<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.80 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650A(Y) (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2200mAh, 3.6V, 2C discharge<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.35 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">5 days<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650NSX (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2500mAh, 3.6V<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.3 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2023-03<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 1 Pallet<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650FM (Sanyo)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V 2.5Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$5.3 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 2025<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650ZM2 (Sanyo)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.55Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.75 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-08<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650ZM2 (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.55Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.77 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650ZY (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.6Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.88 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">End November<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 2025<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650ZTA (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.8V (4.35V charge), 3000mAh\r\n<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.60 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2022-03<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18500F<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V, 1620mAh<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.90 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR14500P (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V, 840mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1,830pcs<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR14650R (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 1050mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">10,080pcs<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.35 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2021-10<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18650BF (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3.4Ah, standard<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.80 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">December<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 2025<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18650GA (Sanyo)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3.5Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">End of Dec.<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 3 months<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 1 Pallet, <br>\r\nMade in Japan<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18500A (Pana)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2040mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.40 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 8 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR1850B (Pana)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2350mAh<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.55 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 2025<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18650PF (Pana)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2900mAh, 10A discharge<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.75 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18650BD (Pana.)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle Rate, 3.6V, 3.2Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.07 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-05<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18650GA6W (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle Rate, 3.6V, 3.5Ah, green tube<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.25 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18650GA6W (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle Rate, 3.6V, 3.5Ah, green tube<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.15 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 1 Pallet, China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18650GA6W (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle Rate, 3.6V, 3.5Ah, red tube<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 1 year<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18650B (Pana.)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Standard, 3.6V, 3.4Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.4 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-01<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan, MOQ 1 Pallet<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR2170MB (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5150mAh, 12A discharge<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.65 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-01<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan, MOQ 1 Pallet<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR2270AE (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5635mAh, 12A discharge<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-11<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">CR123A in bulk package<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3V 1400mAh Lithium Primary<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.38 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">CR123A in candy package<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3V 1400mAh Lithium Primary<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.45 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA103443 (Pana.)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.01Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA103450 w/o breaker (Pana.)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2350mAh<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.70 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA103450 w/t breaker (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2350mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$5.8 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-10<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 10K<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA882936SA (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 1310mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$5.7<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-01<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA903864A (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3280mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">5,040pcs<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$6.6 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2021-09<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA653864SA (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.4Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.40 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA793540(Pana)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 1485mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.1 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2-4 Months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-01<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA596080 (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4170mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$8.90 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA596080SA (Pana.)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4340mAh<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UF103450P without fuse<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V, 2000mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$5.60 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2021-10<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UF703450F (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V, 1480mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.50 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2022-08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UF653450S (Sanyo)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V, 1250mAh<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-02<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UF553450ZP (Sanyo)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V 1.15Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.60 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-05<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UF553450ZP (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V 1.15Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-05<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UF553443ZU (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V 1.04Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">40,000pcs<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 2022<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Panasonic 50Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NMC 50Ah 27x148x92mm, 849g, 0.55mhom<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">A- grade<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Panasonic 4Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V 4.2Ah 13-120-65mm, 35C-70C, 183g<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">A- grade<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Panasonic 27Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NMC 23Ah 30C/70C L148xW26xH90mm<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2,000pcs<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$25.00 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N/A<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Uncycled<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">4. Murata\r\n<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US18650VTC4<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.1Ah, 30A Disch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US18650VTC5<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.5Ah, 20A/30A Disch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US18650VTC5A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.5Ah, 30A/35A Disch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Few<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US18650VTC5C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.5Ah, 30A Disch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.75 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2021 Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US18650VTC5D<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.7Ah, 35A Disch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.2<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2021-10<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US18650VTC6<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3.0Ah, 20A/30A Disch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.65 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4-6 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 3-6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Fresh<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US18650VTC6<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3.0Ah, 20A/30A Disch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.2 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4-6 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US21700VTC6A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V 4100mAh 40A discharge<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$5.2 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4-6 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">30% deposit is needed<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US21700VTC6A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V 4100mAh 40A discharge<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.45 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4-6 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">30% deposit is needed<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">5. Molicel\r\n<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-P26A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2600mAh, Wide Temp, High rate<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 20Kpcs (1 pallet)<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-P28A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.8Ah, Widetemp. Highrate<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.55 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-P30B<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3.0Ah, Widetemp. 30A Disch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$5.1 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR18650-M35A</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.6V, 3.5Ah, Widetemp. Highrate</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$3.55\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">within 6 months</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-M35A<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3.5Ah, Widetemp. Highrate<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 16Kpcs<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.40 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-P42A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4.2Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.70 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3-5 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-P45B<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V 4500mAh<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.2 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-P50B<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V 5000mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Few<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$6.25 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">6. BYD<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FC46120P</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V, 24.50Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$14.5\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">MOQ 10pcs</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"></td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"309\" nowrap colspan=\"2\" style=\"width:232.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">7. LithiumWerk (A123)<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">ANR26650M1B<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.3V 2.5Ah High Rate<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$8.5 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4-6 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-01<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">ANR26650M1B<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.3V 2.5Ah High Rate<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$7 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4-6 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-04<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 6,600pcs (1 pallet)<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"309\" nowrap colspan=\"2\" valign=\"bottom\" style=\"width:232.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">8. SK On (Previously, SK Innovation)<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Pouch</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">E400</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Li-ion, 3.6V, 40Ah, 9.5x97x320mm</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$30.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">within 2022</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">A- grade</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Pouch</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">E450</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Li-ion, 3.6V, 45Ah, 10x175x190mm</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$31.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">within 2022</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">A- grade</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Pouch</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">E500</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Li-ion, 3.6V, 50Ah, 11.5x98x300mm</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$35.10\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">N/A</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">A- grade, OEM by EVE</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Pouch</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">E556</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Li-ion, 3.6V, 55.60Ah, 10x100x354mm</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$30.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">N/A</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">A- grade</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Pouch</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">E600B</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Li-ion, 3.6V, 60Ah, 14.5x100x300mm</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">4,555</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$35.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">N/A</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">A- grade</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Pouch</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">E603</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Li-ion, 3.66V, 60.3Ah, 9.5x354x101mm</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$30.00\r\n</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">N/A</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Uncycled, for EV</span><u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Pouch</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">E805</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Li-ion, 3.6V, 60Ah, 14.5x100x300mm</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Few</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$36.00\r\n</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">N/A</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">disassembled, un-cycled</span><u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Pouch</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">E120</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Li-ion, 3.7V, 120Ah, 14.5x98x530mm</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$38.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">N/A</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">A- grade</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"309\" nowrap colspan=\"2\" valign=\"bottom\" style=\"width:232.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">9. Far East (FEB)<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-2600<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2600mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$<span lang=\"EN-US\">1.12</span><span lang=\"EN-US\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2-3 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-2900<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2900mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">EOL<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For E-bike<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-3300<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3300mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.58 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For Medical Equipment<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-3800<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3800mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.12 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For Lighting Equipment<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-4000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4000mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.70 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For Lighting Equipment<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-4000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4000mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.58 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For E-bike<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-4500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4500mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.63 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For UPS power<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-5000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5000mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.08 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For Smart Speaker<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-5500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5500mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.65 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For Smart Speaker<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-6000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 6000mAh, Max 0.7C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.00<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For Lighting Equipment / Sample<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"></td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"></td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span>10. DMEGC <u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR18650-20P<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>2.0Ah, CC 20A, Pulse 30A<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.30\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR18650-25P<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>2.5Ah, CC 20A, Pulse 30A<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.4\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR18650-30P<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>3.0Ah, CC 10A, Pulse 20A, with 80C cut<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.90\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR18650-26E<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>2.6Ah, CC 3C, Pulse 5C<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.12\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR18650-26E2<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>2.6Ah, CC 3C, Pulse 5C, 7S max<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.1\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR18650-29E<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>2.9Ah, CC 2C, Pulse 4C<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.4\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR18650-32E<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>3.2Ah, CC 10A, Pulse 5C<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.68\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR18650-35E<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>3.5Ah, CC 10A, Pulse 5C<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR21700-45E<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>4.5Ah, CC 1Cm Pulse 3C<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.55\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR21700-50E<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>5.0Ah, CC 3C, Pulse 4C<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.95\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR21700-40P<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>4.0Ah, CC 6A, Max DC 45A<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$2.70\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Supply<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR21700-40M (Orange tube)<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">4.0Ah, CC 20A, Max 45A,<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR21700-40M (Yellow tube)<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">4.0Ah, CC 15A, Max 18A,<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">11. EVE<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650/26V<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.60V 2.55Ah 7.65A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.16 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR18650/33V</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.60V 3.20Ah 10A</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.55\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Stock</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR18650/35V</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.65V 3.50Ah 10.20A</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.75\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Stock</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR18650/20P</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.60V 2.00Ah 30A</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$</span>1.26<span style=\"color:black\">\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR18650/25P</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.60V 2.50Ah 30A</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.56\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Stock</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR21700-40P</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.60V 4.00Ah 50A</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.90\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR21700-40PL</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.60V 4.00Ah Tabless</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Trail lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$4.40\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR21700-50E</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.65V 5.00Ah 15A</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.9\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR4695E</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.69V 31.90Ah 4C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$50.00\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR4695P</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.69V 29Ah</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Few</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$50.00\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">without QR code (TBI)</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">12. BAK<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap rowspan=\"10\" style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Middle Rate<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650CH<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2.60Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.03<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650CP<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.35Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.79<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650CP-34E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.40Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.72<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650CR-35E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.50Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.81<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N21700CG-50<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">5.00Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.2<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Within 3 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N21700CG-50E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">5.00Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.30<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N21700CD-53E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">5.30Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.53<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N21700CK-55E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">5.50Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Trial Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.21<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N21700CH-58E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">5.80Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Trial Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.37<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650CH<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2.60Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap rowspan=\"3\" style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">High Rate<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650COP<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2.50Ah 30A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.64<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650CQP<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.00Ah 15A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.92<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N21700CGP<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4.00Ah 35A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.40<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" rowspan=\"2\" style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Low\r\n<br>\r\nTemperature<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650CP Low Temperature<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.35Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.87<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650CR-35T Low Temperature<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.50Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.95<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Tabless<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-40D<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4.00Ah 100A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.30<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR4695-330B</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.6V, 33Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sample</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$50.00</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR4690-310B</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.6V, 31Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sample</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$50.00</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">13. CBAK<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap rowspan=\"9\" style=\"width:71.0pt;border-top:none;border-left:solid windowtext 1.0pt;border-bottom:solid black 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">LFP<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">26650FS2A<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V 3.40Ah 3C for EV / ESS<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">26650FS3<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V 3.60Ah 3C for EV / ESS<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">26650FS3A<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V 3.80Ah 3C for EV / ESS<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">26650FS4<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V 4.00Ah 3C for EV / ESS<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">26650FS4B<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V 4.00Ah 3C for Light Vehicle<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">26700FB<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V 4.00Ah 3C for Light Vehicle<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">26700FB2<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V 4.50Ah 3C for Light Vehicle<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">26700FE<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V 4.50Ah 3C for EV / ESS<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>32140FS<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>3.2V 15Ah\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$5.70<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1-2 weeks<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">32140NS</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.0V, 10Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sample</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$10.00</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Only Spec sheet is available<br>\r\n(No UN 38.3 &amp; MSDS)</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">14. CALB<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">4695</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.7V, 30Ah, NMC</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">MOQ 10pcs</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$50.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sample, No spec sheet yet</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">15. Highstar<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">NaCR33140-10ER</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.05V, 10Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">NaCR46145-20ER</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.05V, 20Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">MOQ 50pcs</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$40.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">NaCP50160118-70E3</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Prismatic, 3.05V, 70Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">NaCP50160118-70H3</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Prismatic, 3.0V, 70Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">NaCP50160118-80E3</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Prismatic, 3.05V, 80Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sample</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">NaCP40130208-80E3</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Prismatic, 3.05V, 80Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sample</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">NaCP50160153-103E3</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Prismatic, 3.0V, 103Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sample</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Tabless<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR21700-40PS<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>3.6V, 3950mAh<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>MOQ 50pcs<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$6.65\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>2 weeks<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Tabless<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-50PS<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4900mAh, Low Impedance<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">130pcs<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.50 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\"><u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"15\" nowrap valign=\"bottom\" style=\"width:11.2pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"41\" nowrap valign=\"bottom\" style=\"width:30.8pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"33\" nowrap valign=\"bottom\" style=\"width:25.05pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"33\" nowrap valign=\"bottom\" style=\"width:25.05pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"34\" nowrap valign=\"bottom\" style=\"width:25.35pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"34\" nowrap valign=\"bottom\" style=\"width:25.35pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"59\" nowrap valign=\"bottom\" style=\"width:44.3pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"font-family:SimSun\"><u></u> <u></u></span></p>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"1276\" style=\"width:956.85pt;border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\"><b><span>16. Lishen<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"219\" nowrap valign=\"bottom\" style=\"width:164.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"246\" nowrap valign=\"bottom\" style=\"width:184.25pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"113\" nowrap valign=\"bottom\" style=\"width:85.05pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.05pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" style=\"width:85.05pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.05pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">18650LA</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">2Ah, 10C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$</span>1.15<span style=\"color:black\">\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">18650LD</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">2.5Ah, 10C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.50\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">18650LE</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3Ah, 10C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$</span>2.15<span style=\"color:black\">\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">18650SK</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">2.6Ah, 3C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$</span>1.1<span style=\"color:black\">\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">18650SS</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3Ah, 3C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.48\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">18650HB</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.35Ah, 3C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.63\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">18650HC</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.5Ah, 3C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.92\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">21700LA</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">4Ah, 10C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.93\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">21700SA</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">4Ah, 3C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.80\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">21700SD</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">5Ah, 3C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$</span>2.19<span style=\"color:black\">\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">21700SZ</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">5Ah, 3C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$</span>2.2<span style=\"color:black\">\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"font-family:SimSun\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-family:SimSun\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-family:SimSun\"><u></u> <u></u></span></p>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"1276\" style=\"width:956.85pt;border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\"><b><span>17. Sunpower<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"219\" nowrap valign=\"bottom\" style=\"width:164.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"246\" nowrap valign=\"bottom\" style=\"width:184.25pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"113\" nowrap valign=\"bottom\" style=\"width:85.05pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.05pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" style=\"width:85.05pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.05pt;border:solid windowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-1300<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">13P (15C) 20A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-1500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">15H (13C) 20A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-2000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">20P (10C) 20A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-2000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">20T (15C) 30A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-2200<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">22R (9C) 20A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-2500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">25R (10C) 25A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-2500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">25T (12C) 30A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-2500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">25L (8C) 20A Low Temperature type<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-2600<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">26P (5C) 13A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.34<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-3000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">30P (10C) 30A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-3000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">30S (13C) 40A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-3000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">30L (3C) 10A Low Teperature type<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-4000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">40S (10C) 40A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-4000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">40L (10C) 40A Low Temperature type<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-5000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">50E (3C) 15A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-5000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">50SE (6C) 30A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">LFP26700-4300<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">43E (3C) 12.9A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">LFP26700-4500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">45E (3C) 13.5A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\"><span><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap valign=\"bottom\" style=\"width:164.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"246\" nowrap valign=\"bottom\" style=\"width:184.25pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"113\" nowrap valign=\"bottom\" style=\"width:85.05pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.05pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"219\" nowrap valign=\"bottom\" style=\"width:164.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"246\" nowrap valign=\"bottom\" style=\"width:184.25pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"113\" nowrap valign=\"bottom\" style=\"width:85.05pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.05pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;border:none;border-bottom:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\"><b><span>18. Maxell<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"219\" nowrap valign=\"bottom\" style=\"width:164.0pt;border:none;border-bottom:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"246\" nowrap valign=\"bottom\" style=\"width:184.25pt;border:none;border-bottom:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"113\" nowrap valign=\"bottom\" style=\"width:85.05pt;border:none;border-bottom:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;border:none;border-bottom:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;border:none;border-bottom:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;border:none;border-bottom:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;border:none;border-bottom:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.05pt;border:none;border-bottom:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">ICP653865SRU<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V, 1800mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">48,760<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">B0711<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">ICP653450AHR<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1360mAh 3.85V (4.35V charge)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">I2101<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\">Prismatic</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\">ICP103450AHR</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\">2160mAh 3.8V (4.35V charge)</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:85.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\">49,400</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\">TBI</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\">FCA HK</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\">1 week</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\">within 2020</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"font-family:SimSun\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-family:SimSun\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-family:SimSun\">Warm regards</span><span lang=\"EN-US\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">Shmuel De-Leon/CEO</span><span lang=\"EN-US\" style=\"font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">Shmuel De-Leon Energy, Ltd.</span><span lang=\"EN-US\" style=\"font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">Mazal Arie 10, Hod-Hasharon, Israel 4536045</span><span lang=\"EN-US\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">Tel/Fax: 972-77-5010792</span><span lang=\"EN-US\" style=\"font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">Mobile: 972-52-8601517</span><span lang=\"EN-US\" style=\"font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"DE\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">E-Mail:\r\n</span><a href=\"mailto:shmueld33@gmail.com\" target=\"_blank\"><span lang=\"DE\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif;color:blue\">shmuel@sdle.co.il</span></a><span lang=\"DE\" style=\"font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">Company web site:\r\n</span><a href=\"http://www.sdle.co.il/\" target=\"_blank\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif;color:blue\">www.sdle.co.il</span></a><span lang=\"EN-US\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">Battery DataBase web site:\r\n</span><a href=\"http://www.batteriesdatabase.com/\" target=\"_blank\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif;color:blue\">www.batteriesdatabase.com</span></a><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif;color:#1f497d\"><img border=\"0\" width=\"86\" height=\"43\" style=\"width:.8958in;height:.4479in\" id=\"m_-7118217520720269965תמונה_x0020_1\" src=\"cid:image001.jpg@01D756D4.5D0E4230\"></span><span lang=\"EN-US\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">Sign-up to our weekly battery newsletter\r\n</span><a href=\"https://www.sdle.co.il/services/newsletter/\" target=\"_blank\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif;color:blue\">https://www.sdle.co.il/services/newsletter/</span></a><span style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">\r\n</span><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\"><u></u> <u></u></span></p>\r\n</div>\r\n</div>\r\n\r\n</div></div>','<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: shmuel de-leon <shmuel@sdle.co.il>\r\nDate: Mon, Nov 10, 2025 at 11:20 AM\r\nSubject: Shmuel De-Leon Energy - Li-Ion Cells (Cylindrical, Pouch,\r\nPrismatic) for sale for this week - November 10, 2025\r\nTo:\r\n\r\n\r\n\r\n\r\n\r\n\r\n*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*\r\n\r\n\r\n\r\n*Attached list of cells we have availible for this week – Contact us for\r\nthese cells or for other cell models you need and we will check\r\navailability – Contact us in case you wish to sell cell stock you have*\r\n\r\n*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*\r\n\r\n\r\n\r\n   - *Attached an update on discontiniue Panasonic cells  -Contact us to\r\n   purchase these cells before it will be to late!!!*\r\n\r\n\r\n\r\n*New High Energy Density Cells we sell:*\r\n\r\n\r\n\r\n*21700 cell* – production capacity is 2000 cells per day (Vendor start\r\nbuilding 500MWh/Year Factory – Production start Q1/26) - cost ~$20-28/pcs\r\nex work China depend on the quantity\r\nEnergy Density: 393 Wh/kg, Capacity: 6Ah at C/5, at room temperature to 3V\r\nC.O.V, Weight: 58 Grams, Size: 21.8, 71.8, Nominal voltage: 3.8V,\r\nMax constant charge current is 1C to 4.35V, Cycle life: 120 cycles, Max\r\nconstant discharge current is 5C, Discharge temp -10 to 65 Deg C,\r\nCharge temp 0 to 35 Deg C\r\n\r\n*18650 cell* – production capacity is 2GWh/Year -  cost ~$10/pcs ex work\r\nChina depend on the quantity\r\nEnergy Density: 326 Wh/kg, Capacity: 4.3Ah at C/5, at room temperature to\r\n3V C.O.V, Weight: 50 Grams, Size: 18.35, 65.5, Nominal voltage: 3.8V,\r\nMax constant charge current is 0.2C to 4.25V, Cycle life: 100 cycles, Max\r\nconstant discharge current is 4C, Discharge temp -10 to 60 Deg C,\r\nCharge temp 0 to 45 Deg C\r\n\r\n\r\n\r\n*Pouch Cells Vendor 1*\r\nWe also sell quasi solid lithium metal anode free pouch cells with energy\r\ndensities of up to 520 Wh/kg, 1200 Wh/l, 8-50Ah capacity, 7C max constant\r\ndischarge, 10-50 Cycles - Cells are made in 200MWh/Year factory .\r\n\r\n*Pouch Cells Vendor 2*\r\nWe also sell quasi solid lithium metal pouch cells with energy densities of\r\nup to 450 Wh/kg, 6-50Ah capacity, 8C max constant discharge, 1200 Cycles -\r\nCells are made in 600MWh/Year factory.\r\n\r\n*Pouch Cells Vendor 3*\r\nWe also sell Semi solid lithium metal anode free pouch cells with energy\r\ndensities of up to 400-600 Wh/kg, 8-50Ah capacity, 5C max constant\r\ndischarge, 400Wh/Kg with 800 cycles, 500-600 Wh/kg with 10-15 Cycles -\r\nCells are made in 10MWh/Year prototype production line.\r\n\r\n\r\n\r\n*We sell battery packs assemble with lithium metal cells with 400-460\r\nWh/kg.*\r\n\r\n*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*\r\n\r\n\r\n\r\n*Our Customers/Suppliers new cells with and older date code stocks we have\r\nfor sale:*\r\n\r\n\r\n\r\n*We have in Germany Panasonic NCR18650-B in special pricing – Contact us\r\nfor more details*\r\n\r\n\r\n\r\n*Panasonic NCR-18650B*\r\nPrice for an order of minimum 50.040 pcs. = 3,42 € (transport costs will be\r\nadded)\r\nPrice is only valid for an order of minimum 50.040 pcs.\r\nProduction date code of the cells: 34.700 pcs. with November 2024, 15.340\r\npcs. with March 2025\r\nDelivery time: available on stock - subject to being unsold!\r\n\r\n* Molicel INR21700-P42A*\r\nPrice for an order of minimum 20.000 pcs.: 3.5 € (transport costs will be\r\nadded)\r\nMaximum available quantity: 48.000 pcs.\r\nProduction date code of the cells: March 2025\r\n\r\n*Molicel INR21700-P45B*\r\nPrice for an order of minimum 20.000 pcs.: 3.5 € (transport costs will be\r\nadded)\r\nMaximum available quantity: 41.000 pcs.\r\nProduction date code of the cells: December 2024 and January 2025\r\n\r\n\r\n\r\n*Molicel INR18650-P28A*\r\nPrice for an order of minimum 7.000 pcs.: 1.8 € (transport costs will be\r\nadded)\r\nProduction date code of the cells: 2022 – Location: USA\r\n\r\n\r\n\r\n*We have in Germany:*\r\n\r\nMurata US18650VTC6, 25K, cost 3Euro/pcs, Date cost March 2024\r\n\r\n\r\n\r\n*We have in Germany:*\r\n\r\nPanasonic 150K NCR18650GA6W (Factory Wuxi China) Date Code 2022 €2.6/pcs.\r\n\r\n\r\n\r\n----------------------------------------------------------------------------------------------------------------------------------------------------------------------------\r\n\r\n*New cells we have for sale:*\r\n\r\n\r\n\r\n*We start selling Moli Energy 21700 6.5Ah cells.*\r\n\r\n\r\n\r\n*Supplier 1:*\r\n\r\n*Moli cells*\r\n\r\nP26A – Any Quantity 10K and up – fresh cells – An attractive cost.\r\n\r\nP28A – Any Quantity 10K and up – fresh cells - An attractive cost.\r\n\r\nP42A – Any Quantity 10K and up – fresh cells - An attractive cost.\r\n\r\nM35A – Any Quantity 10K and up – fresh cells - An attractive cost.\r\n\r\n\r\n\r\n   1. *Samsung SDI*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nLeadtime\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\n18650-20RM\r\n\r\nHigh Rate, 3.6V, 2.0Ah\r\n\r\nmass quantity\r\n\r\n$1.55\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nTBI\r\n\r\nMade in Malaysia\r\n\r\nCylindrical\r\n\r\n18650-20RM\r\n\r\nHigh Rate, 3.6V, 2.0Ah\r\n\r\nmass quantity\r\n\r\n$1.57\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\nwithin 6 months\r\n\r\nMade in Malaysia, MOQ 1 Pallet\r\n\r\nCylindrical\r\n\r\n18650-25R\r\n\r\nHigh Rate, 3.6V, 2.5Ah\r\n\r\nmass quantity\r\n\r\n$1.68\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\n2024-08\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650-26JM\r\n\r\nHigh Energy, 3.6V, 2.6Ah\r\n\r\nTBI\r\n\r\n$2.30\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\n2021-08\r\n\r\nMade in Malaysia\r\n\r\nCylindrical\r\n\r\n18650-30Q\r\n\r\nHigh rate, 3.6V, 3.0Ah\r\n\r\nmass quantity\r\n\r\n$2.25\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\n2025-07\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650-30Q\r\n\r\nHigh rate, 3.6V, 3.0Ah\r\n\r\nmass quantity\r\n\r\n$2.15\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\n2024-10\r\n\r\nMOQ 1 Pallet\r\n\r\nCylindrical\r\n\r\n18650-35E\r\n\r\nMiddle rate, 3.6V, 3.5Ah\r\n\r\nmass quantity\r\n\r\n$1.78\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nwithin 3 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650-35E\r\n\r\nMiddle rate, 3.6V, 3.5Ah\r\n\r\nTBI\r\n\r\n$1.45\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\n2024-01\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700-30T\r\n\r\nHigh Rate, 3.6V, 3.0Ah\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n4 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700-40T5\r\n\r\nHigh Rate, 3.6V, 4.0Ah\r\n\r\nmass quantity\r\n\r\n$2.05\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nwithin 6 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700-40T\r\n\r\nHigh Rate, 3.6V, 4.0Ah\r\n\r\nmass quantity\r\n\r\n$1.90\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\n2024-02\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700-48X3\r\n\r\n3.6V, 4.8Ah, 3000cycles,bare\r\n\r\nmass quantity\r\n\r\n$1.65\r\n\r\nFCA Shenzhen\r\n\r\n4 weeks\r\n\r\n2023-12\r\n\r\nBare cells\r\n\r\nCylindrical\r\n\r\n21700-48X2\r\n\r\n3.6V, 4.8Ah, 3000cycles\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n4 weeks\r\n\r\n2022-01\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700-50E2\r\n\r\n3.6V, 5.0Ah, 2C(C), 3C(P)\r\n\r\nmass quantity\r\n\r\n$2.70\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\n2024-01\r\n\r\nMade in China\r\n\r\nCylindrical\r\n\r\n21700-50E2\r\n\r\n3.6V, 5.0Ah, 2C(C), 3C(P)\r\n\r\nmass quantity\r\n\r\n$2.95\r\n\r\nFCA Shenzhen\r\n\r\nAvailable in Oct.\r\n\r\nwithin 2025-07\r\n\r\nMade in China\r\n\r\nCylindrical\r\n\r\n21700-50GB\r\n\r\n3.6V, 5.0Ah, 1C(C), 2C(P)\r\n\r\nmass quantity\r\n\r\n$2.15\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\n2025-03\r\n\r\nMade in Malaysia, MOQ 1 Pallet\r\n\r\nCylindrical\r\n\r\n21700-50S\r\n\r\n3.6V, 5.0Ah 5C(C), 9C(P)\r\n\r\nmass quantity\r\n\r\n$2.45\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\nwithin 2025\r\n\r\nMade in China\r\n\r\nCylindrical\r\n\r\n21700-50S\r\n\r\n3.6V, 5.0Ah 5C(C), 9C(P)\r\n\r\nmass quantity\r\n\r\n$2.68\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nwithin 2025\r\n\r\nMade in China\r\n\r\nCylindrical\r\n\r\n21700-53G2\r\n\r\n3.6V, 5.3Ah, 1C(C)\r\n\r\nmass quantity\r\n\r\n$2.40\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\n2025-03\r\n\r\nwith tube\r\n\r\nCylindrical\r\n\r\n21700-58E\r\n\r\n3.64V, 5330mAh, 3C max\r\n\r\nmass quantity\r\n\r\n$4\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\n2024-07\r\n\r\n\r\n\r\n*2. LG Energy Solution*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\n18650-F1L\r\n\r\nHigh Energy, 3.6V, 3.35Ah\r\n\r\nmass quantity\r\n\r\n$3.25\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\n2024-09\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650-MF1\r\n\r\nMiddle rate, 3.6V, 2.15Ah\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\n2021-02\r\n\r\nLot A045\r\n\r\nCylindrical\r\n\r\n18650-M26(S)\r\n\r\nMiddle rate, 3.6V, 2.6Ah\r\n\r\n19,000pcs\r\n\r\n$1.83\r\n\r\nFCA HK\r\n\r\nTBI\r\n\r\n2020-10\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650-M29\r\n\r\nMiddle rate, 3.6V, 2.85Ah\r\n\r\nmass quantity\r\n\r\n$2.2\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nFresh\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650HJ2\r\n\r\nHigh Rate, 3.6V, 3.0Ah\r\n\r\nmass quantity\r\n\r\n$2.05\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\n2024-05\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650HJ2\r\n\r\nHigh Rate, 3.6V, 3.0Ah\r\n\r\nmass quantity\r\n\r\n$2.21\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nWithin 6 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650-MH1\r\n\r\nMiddle rate, 3.6V, 3.2Ah\r\n\r\nmass quantity\r\n\r\n$1.56\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nWithin 6 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650-MH1\r\n\r\nMiddle rate, 3.6V, 3.2Ah\r\n\r\nmass quantity\r\n\r\n$1.54\r\n\r\nFCA HK\r\n\r\nTBI\r\n\r\nWithin 6 months\r\n\r\nMOQ 1 Pallet\r\n\r\nCylindrical\r\n\r\n18650-MJ1\r\n\r\nMiddle rate, 3.6V, 3.5Ah\r\n\r\nmass quantity\r\n\r\n$1.55\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nWithin 6 months\r\n\r\nMade in China\r\n\r\nCylindrical\r\n\r\n18650-MJ1\r\n\r\nMiddle rate, 3.6V, 3.5Ah\r\n\r\nmass quantity\r\n\r\n$1.53\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\nWithin 6 months\r\n\r\nMOQ 1 Pallet\r\n\r\nCylindrical\r\n\r\n21700-M48\r\n\r\nMiddle rate, 3.68V, 17.4Wh\r\n\r\nmass quantity\r\n\r\n$2.03\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\n2023-05\r\n\r\nLOT C118D283\r\n\r\nCylindrical\r\n\r\n21700-M48A\r\n\r\n3C\r\n\r\nmass quantity\r\n\r\n$1.6\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700-M50LT\r\n\r\nMiddle rate, 3.6V, 5.0Ah\r\n\r\nmass quantity\r\n\r\n$1.92\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\n2025-08\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700-M52V\r\n\r\n3.6V, 5.2Ah\r\n\r\nmass quantity\r\n\r\n$2.16\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nwithin 2025\r\n\r\nMade in Korea, Bare cell\r\n\r\n*Cylindrical*\r\n\r\n*21700-M58T*\r\n\r\n*3.6V, 5.8Ah*\r\n\r\n*5,330pcs*\r\n\r\n*$2.15 *\r\n\r\n*FCA HK*\r\n\r\n*3 days*\r\n\r\n*2023-11*\r\n\r\n\r\n*Made in Korea, Special Promotion to take all*\r\n\r\nCylindrical\r\n\r\n21700-M58T\r\n\r\n3.6V, 5.8Ah\r\n\r\nmass quantity\r\n\r\n$6.15\r\n\r\nFCA Shenzhen\r\n\r\n3 days\r\n\r\n2024-06\r\n\r\nMade in Korea\r\n\r\nCylindrical\r\n\r\n21700-M58T\r\n\r\n3.6V, 5.8Ah\r\n\r\nmass quantity\r\n\r\n$2.7\r\n\r\nFCA Shenzhen\r\n\r\n3 days\r\n\r\nWithin 6 months\r\n\r\nMade in China\r\n\r\nPouch Polymer\r\n\r\nE66\r\n\r\nLi-ion, 3.65V 66Ah 11.3 x 98 x 357mm\r\n\r\nmass quantity\r\n\r\n$35.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nN/A\r\n\r\nA- grade\r\n\r\nPouch Polymer\r\n\r\nE78\r\n\r\nLi-ion, 3.65V 78Ah 8 x 98 x 510mm\r\n\r\nmass quantity\r\n\r\n$38.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nN/A\r\n\r\nA- grade\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n*3. Panasonic (Sanyo)*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\nUR18650RX (Sanyo)\r\n\r\n1950mAh, 3.6V\r\n\r\nMOQ 1 Pallet\r\n\r\n$3.8\r\n\r\nFCA HK\r\n\r\nwithin 3-6 months\r\n\r\nFresh\r\n\r\nJapan\r\n\r\nCylindrical\r\n\r\nUR18650AA (Sanyo)\r\n\r\n2250mAh, 3.6V, 8A discharge\r\n\r\nmass quantity\r\n\r\n$1.80\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nwithin 6 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\nUR18650A(Y) (Sanyo)\r\n\r\n2200mAh, 3.6V, 2C discharge\r\n\r\nmass quantity\r\n\r\n$2.35\r\n\r\nFCA Shenzhen\r\n\r\n5 days\r\n\r\n2024-08\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nUR18650NSX (Sanyo)\r\n\r\n2500mAh, 3.6V\r\n\r\nTBI\r\n\r\n$4.3\r\n\r\nFCA HK\r\n\r\nTBI\r\n\r\n2023-03\r\n\r\nMOQ 1 Pallet\r\n\r\nCylindrical\r\n\r\nUR18650FM (Sanyo)\r\n\r\n3.7V 2.5Ah\r\n\r\nmass quantity\r\n\r\n$5.3\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\nwithin 2025\r\n\r\nJapan\r\n\r\nCylindrical\r\n\r\nUR18650ZM2 (Sanyo)\r\n\r\n3.6V, 2.55Ah\r\n\r\nmass quantity\r\n\r\n$1.75\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\n2025-08\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nUR18650ZM2 (Sanyo)\r\n\r\n3.6V, 2.55Ah\r\n\r\nmass quantity\r\n\r\n$1.77\r\n\r\nFCA HK\r\n\r\nTBI\r\n\r\n2025-08\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nUR18650ZY (Sanyo)\r\n\r\n3.6V, 2.6Ah\r\n\r\nmass quantity\r\n\r\n$2.88\r\n\r\nFCA Shenzhen\r\n\r\nEnd November\r\n\r\nwithin 2025\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nUR18650ZTA (Sanyo)\r\n\r\n3.8V (4.35V charge), 3000mAh\r\n\r\nmass\r\n\r\n$3.60\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\n2022-03\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nUR18500F\r\n\r\n3.7V, 1620mAh\r\n\r\nTBI\r\n\r\n$3.90\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nUR14500P (Sanyo)\r\n\r\n3.7V, 840mAh\r\n\r\n1,830pcs\r\n\r\n$4\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nUR14650R (Sanyo)\r\n\r\n3.6V, 1050mAh\r\n\r\n10,080pcs\r\n\r\n$2.35\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\n2021-10\r\n\r\nJapan\r\n\r\nCylindrical\r\n\r\nNCR18650BF (Sanyo)\r\n\r\n3.6V, 3.4Ah, standard\r\n\r\nTBI\r\n\r\n$3.80\r\n\r\nFCA Shenzhen\r\n\r\nDecember\r\n\r\nwithin 2025\r\n\r\nJapan\r\n\r\nCylindrical\r\n\r\nNCR18650GA (Sanyo)\r\n\r\n3.6V, 3.5Ah\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nEnd of Dec.\r\n\r\nwithin 3 months\r\n\r\nMOQ 1 Pallet,\r\nMade in Japan\r\n\r\nCylindrical\r\n\r\nNCR18500A (Pana)\r\n\r\n3.6V, 2040mAh\r\n\r\nmass quantity\r\n\r\n$3.40\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nwithin 8 months\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nNCR1850B (Pana)\r\n\r\n3.6V, 2350mAh\r\n\r\nmass quantity\r\n\r\n$3.55\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nwithin 2025\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nNCR18650PF (Pana)\r\n\r\n3.6V, 2900mAh, 10A discharge\r\n\r\nTBI\r\n\r\n$2.75\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nNCR18650BD (Pana.)\r\n\r\nMiddle Rate, 3.6V, 3.2Ah\r\n\r\nmass quantity\r\n\r\n$2.07\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\n2025-05\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nNCR18650GA6W (Pana.)\r\n\r\nMiddle Rate, 3.6V, 3.5Ah, green tube\r\n\r\nmass quantity\r\n\r\n$2.25\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nwithin 6 months\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nNCR18650GA6W (Pana.)\r\n\r\nMiddle Rate, 3.6V, 3.5Ah, green tube\r\n\r\nmass quantity\r\n\r\n$2.15\r\n\r\nFCA HK\r\n\r\nStock\r\n\r\nwithin 6 months\r\n\r\nMOQ 1 Pallet, China\r\n\r\nCylindrical\r\n\r\nNCR18650GA6W (Pana.)\r\n\r\nMiddle Rate, 3.6V, 3.5Ah, red tube\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nwithin 1 year\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nNCR18650B (Pana.)\r\n\r\nStandard, 3.6V, 3.4Ah\r\n\r\nmass quantity\r\n\r\n$4.4\r\n\r\nFCA HK\r\n\r\nTBI\r\n\r\n2025-01\r\n\r\nJapan, MOQ 1 Pallet\r\n\r\nCylindrical\r\n\r\nNCR2170MB (Pana.)\r\n\r\n3.6V, 5150mAh, 12A discharge\r\n\r\nmass quantity\r\n\r\n$4.65\r\n\r\nFCA HK\r\n\r\n1-2 weeks\r\n\r\n2024-01\r\n\r\nJapan, MOQ 1 Pallet\r\n\r\nCylindrical\r\n\r\nNCR2270AE (Pana.)\r\n\r\n3.6V, 5635mAh, 12A discharge\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n2024-11\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nCR123A in bulk package\r\n\r\n3V 1400mAh Lithium Primary\r\n\r\nmass quantity\r\n\r\n$1.38\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nCR123A in candy package\r\n\r\n3V 1400mAh Lithium Primary\r\n\r\nmass quantity\r\n\r\n$1.45\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nPrismatic\r\n\r\nNCA103443 (Pana.)\r\n\r\n3.6V, 2.01Ah\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nNew Lot\r\n\r\nChina\r\n\r\nPrismatic\r\n\r\nNCA103450 w/o breaker (Pana.)\r\n\r\n3.6V, 2350mAh\r\n\r\nmass quantity\r\n\r\n$3.70\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nwithin 6 months\r\n\r\nChina\r\n\r\nPrismatic\r\n\r\nNCA103450 w/t breaker (Pana.)\r\n\r\n3.6V, 2350mAh\r\n\r\nmass quantity\r\n\r\n$5.8\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\n2024-10\r\n\r\nMOQ 10K\r\n\r\nPrismatic\r\n\r\nNCA882936SA (Pana.)\r\n\r\n3.6V, 1310mAh\r\n\r\nmass quantity\r\n\r\n$5.7\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\n2024-01\r\n\r\nChina\r\n\r\nPrismatic\r\n\r\nNCA903864A (Pana.)\r\n\r\n3.6V, 3280mAh\r\n\r\n5,040pcs\r\n\r\n$6.6\r\n\r\nFCA HK\r\n\r\n1-2 weeks\r\n\r\n2021-09\r\n\r\nJapan\r\n\r\nPrismatic\r\n\r\nNCA653864SA (Pana.)\r\n\r\n3.6V, 2.4Ah\r\n\r\nmass quantity\r\n\r\n$4.40\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nwithin 6 months\r\n\r\nJapan\r\n\r\nPrismatic\r\n\r\nNCA793540(Pana)\r\n\r\n3.6V, 1485mAh\r\n\r\nmass quantity\r\n\r\n$3.1\r\n\r\nFCA Shenzhen\r\n\r\n2-4 Months\r\n\r\n2025-01\r\n\r\nChina\r\n\r\nPrismatic\r\n\r\nNCA596080 (Pana.)\r\n\r\n3.6V, 4170mAh\r\n\r\nTBI\r\n\r\n$8.90\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nTBI\r\n\r\nJapan\r\n\r\nPrismatic\r\n\r\nNCA596080SA (Pana.)\r\n\r\n3.6V, 4340mAh\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nPrismatic\r\n\r\nUF103450P without fuse\r\n\r\n3.7V, 2000mAh\r\n\r\nTBI\r\n\r\n$5.60\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\n2021-10\r\n\r\nJapan\r\n\r\nPrismatic\r\n\r\nUF703450F (Sanyo)\r\n\r\n3.7V, 1480mAh\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n$4.50\r\n\r\n\r\n\r\n2022-08\r\n\r\nMade in Japan\r\n\r\nPrismatic\r\n\r\nUF653450S (Sanyo)\r\n\r\n3.7V, 1250mAh\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA HK\r\n\r\nStock\r\n\r\n2024-02\r\n\r\nJapan\r\n\r\nPrismatic\r\n\r\nUF553450ZP (Sanyo)\r\n\r\n3.7V 1.15Ah\r\n\r\nmass quantity\r\n\r\n$3.60\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\n2025-05\r\n\r\nJapan\r\n\r\nPrismatic\r\n\r\nUF553450ZP (Sanyo)\r\n\r\n3.7V 1.15Ah\r\n\r\nmass quantity\r\n\r\n$3\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\n2025-05\r\n\r\nJapan\r\n\r\nPrismatic\r\n\r\nUF553443ZU (Sanyo)\r\n\r\n3.7V 1.04Ah\r\n\r\n40,000pcs\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nwithin 2022\r\n\r\nJapan\r\n\r\nPrismatic\r\n\r\nPanasonic 50Ah\r\n\r\nNMC 50Ah 27x148x92mm, 849g, 0.55mhom\r\n\r\nmass\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nTBI\r\n\r\nA- grade\r\n\r\nPrismatic\r\n\r\nPanasonic 4Ah\r\n\r\n3.7V 4.2Ah 13-120-65mm, 35C-70C, 183g\r\n\r\nmass\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nTBI\r\n\r\nA- grade\r\n\r\nPrismatic\r\n\r\nPanasonic 27Ah\r\n\r\nNMC 23Ah 30C/70C L148xW26xH90mm\r\n\r\n2,000pcs\r\n\r\n$25.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nN/A\r\n\r\nUncycled\r\n\r\n*4. Murata *\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\nUS18650VTC4\r\n\r\n3.6V, 2.1Ah, 30A Disch.\r\n\r\nmass quantity\r\n\r\n$2\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nUS18650VTC5\r\n\r\n3.6V, 2.5Ah, 20A/30A Disch.\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nUS18650VTC5A\r\n\r\n3.6V, 2.5Ah, 30A/35A Disch.\r\n\r\nFew\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nUS18650VTC5C\r\n\r\n3.6V, 2.5Ah, 30A Disch.\r\n\r\nmass quantity\r\n\r\n$2.75\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\n2021 Stock\r\n\r\n\r\n\r\nCylindrical\r\n\r\nUS18650VTC5D\r\n\r\n3.6V, 2.7Ah, 35A Disch.\r\n\r\nmass quantity\r\n\r\n$4.2\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\n2021-10\r\n\r\n\r\n\r\nCylindrical\r\n\r\nUS18650VTC6\r\n\r\n3.6V, 3.0Ah, 20A/30A Disch.\r\n\r\nmass quantity\r\n\r\n$3.65\r\n\r\nFCA Shenzhen\r\n\r\n4-6 weeks\r\n\r\nwithin 3-6 months\r\n\r\nFresh\r\n\r\nCylindrical\r\n\r\nUS18650VTC6\r\n\r\n3.6V, 3.0Ah, 20A/30A Disch.\r\n\r\nmass quantity\r\n\r\n$3.2\r\n\r\nFCA HK\r\n\r\n4-6 weeks\r\n\r\nwithin 6 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\nUS21700VTC6A\r\n\r\n3.6V 4100mAh 40A discharge\r\n\r\nmass quantity\r\n\r\n$5.2\r\n\r\nFCA Shenzhen\r\n\r\n4-6 weeks\r\n\r\nNew Lot\r\n\r\n30% deposit is needed\r\n\r\nCylindrical\r\n\r\nUS21700VTC6A\r\n\r\n3.6V 4100mAh 40A discharge\r\n\r\nmass quantity\r\n\r\n$4.45\r\n\r\nFCA HK\r\n\r\n4-6 weeks\r\n\r\nwithin 6 months\r\n\r\n30% deposit is needed\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n*5. Molicel *\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\nINR18650-P26A\r\n\r\n3.6V, 2600mAh, Wide Temp, High rate\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA HK\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nMOQ 20Kpcs (1 pallet)\r\n\r\nCylindrical\r\n\r\nINR18650-P28A\r\n\r\n3.6V, 2.8Ah, Widetemp. Highrate\r\n\r\nmass quantity\r\n\r\n$3.55\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-P30B\r\n\r\n3.6V, 3.0Ah, Widetemp. 30A Disch.\r\n\r\nmass quantity\r\n\r\n$5.1\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-M35A\r\n\r\n3.6V, 3.5Ah, Widetemp. Highrate\r\n\r\nmass quantity\r\n\r\n$3.55\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nwithin 6 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-M35A\r\n\r\n3.6V, 3.5Ah, Widetemp. Highrate\r\n\r\nMOQ 16Kpcs\r\n\r\n$3.40\r\n\r\nFCA HK\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-P42A\r\n\r\n3.6V, 4.2Ah\r\n\r\nmass quantity\r\n\r\n$3.70\r\n\r\nFCA Shenzhen\r\n\r\n3-5 weeks\r\n\r\nwithin 6 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-P45B\r\n\r\n3.6V 4500mAh\r\n\r\nmass quantity\r\n\r\n$4.2\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nwithin 6 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-P50B\r\n\r\n3.6V 5000mAh\r\n\r\nFew\r\n\r\n$6.25\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nwithin 6 months\r\n\r\n\r\n\r\n*6. BYD*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\nFC46120P\r\n\r\n3.2V, 24.50Ah\r\n\r\nmass quantity\r\n\r\n$14.5\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\nMOQ 10pcs\r\n\r\n*7. LithiumWerk (A123)*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\nANR26650M1B\r\n\r\n3.3V 2.5Ah High Rate\r\n\r\nmass quantity\r\n\r\n$8.5\r\n\r\nFCA Shenzhen\r\n\r\n4-6 weeks\r\n\r\n2025-01\r\n\r\n\r\n\r\nCylindrical\r\n\r\nANR26650M1B\r\n\r\n3.3V 2.5Ah High Rate\r\n\r\nmass quantity\r\n\r\n$7\r\n\r\nFCA HK\r\n\r\n4-6 weeks\r\n\r\n2025-04\r\n\r\nMOQ 6,600pcs (1 pallet)\r\n\r\n*8. SK On (Previously, SK Innovation)*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nPouch\r\n\r\nE400\r\n\r\nLi-ion, 3.6V, 40Ah, 9.5x97x320mm\r\n\r\nmass quantity\r\n\r\n$30.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nwithin 2022\r\n\r\nA- grade\r\n\r\nPouch\r\n\r\nE450\r\n\r\nLi-ion, 3.6V, 45Ah, 10x175x190mm\r\n\r\nmass quantity\r\n\r\n$31.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nwithin 2022\r\n\r\nA- grade\r\n\r\nPouch\r\n\r\nE500\r\n\r\nLi-ion, 3.6V, 50Ah, 11.5x98x300mm\r\n\r\nmass quantity\r\n\r\n$35.10\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nN/A\r\n\r\nA- grade, OEM by EVE\r\n\r\nPouch\r\n\r\nE556\r\n\r\nLi-ion, 3.6V, 55.60Ah, 10x100x354mm\r\n\r\nmass quantity\r\n\r\n$30.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nN/A\r\n\r\nA- grade\r\n\r\nPouch\r\n\r\nE600B\r\n\r\nLi-ion, 3.6V, 60Ah, 14.5x100x300mm\r\n\r\n4,555\r\n\r\n$35.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nN/A\r\n\r\nA- grade\r\n\r\nPouch\r\n\r\nE603\r\n\r\nLi-ion, 3.66V, 60.3Ah, 9.5x354x101mm\r\n\r\nmass quantity\r\n\r\n$30.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nN/A\r\n\r\nUncycled, for EV\r\n\r\nPouch\r\n\r\nE805\r\n\r\nLi-ion, 3.6V, 60Ah, 14.5x100x300mm\r\n\r\nFew\r\n\r\n$36.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nN/A\r\n\r\ndisassembled, un-cycled\r\n\r\nPouch\r\n\r\nE120\r\n\r\nLi-ion, 3.7V, 120Ah, 14.5x98x530mm\r\n\r\nmass quantity\r\n\r\n$38.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nN/A\r\n\r\nA- grade\r\n\r\n*9. Far East (FEB)*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\n18650-2600\r\n\r\n3.6V, 2600mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\n$1.12\r\n\r\nFCA Shenzhen\r\n\r\n2-3 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650-2900\r\n\r\n3.6V, 2900mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\nEOL\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor E-bike\r\n\r\nCylindrical\r\n\r\n18650-3300\r\n\r\n3.6V, 3300mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\n$1.58\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor Medical Equipment\r\n\r\nCylindrical\r\n\r\n18650-3800\r\n\r\n3.6V, 3800mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\n$2.12\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor Lighting Equipment\r\n\r\nCylindrical\r\n\r\n18650-4000\r\n\r\n3.6V, 4000mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\n$2.70\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor Lighting Equipment\r\n\r\nCylindrical\r\n\r\n21700-4000\r\n\r\n3.6V, 4000mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\n$1.58\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor E-bike\r\n\r\nCylindrical\r\n\r\n21700-4500\r\n\r\n3.6V, 4500mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\n$1.63\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor UPS power\r\n\r\nCylindrical\r\n\r\n21700-5000\r\n\r\n3.6V, 5000mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\n$2.08\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor Smart Speaker\r\n\r\nCylindrical\r\n\r\n21700-5500\r\n\r\n3.6V, 5500mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\n$2.65\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor Smart Speaker\r\n\r\nCylindrical\r\n\r\n21700-6000\r\n\r\n3.6V, 6000mAh, Max 0.7C/2C\r\n\r\nmass quantity\r\n\r\n$4.00\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor Lighting Equipment / Sample\r\n\r\n10. DMEGC\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\nINR18650-20P\r\n\r\n2.0Ah, CC 20A, Pulse 30A\r\n\r\nmass quantity\r\n\r\n$1.30\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-25P\r\n\r\n2.5Ah, CC 20A, Pulse 30A\r\n\r\nmass quantity\r\n\r\n$1.4\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-30P\r\n\r\n3.0Ah, CC 10A, Pulse 20A, with 80C cut\r\n\r\nmass quantity\r\n\r\n$1.90\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-26E\r\n\r\n2.6Ah, CC 3C, Pulse 5C\r\n\r\nmass quantity\r\n\r\n$1.12\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-26E2\r\n\r\n2.6Ah, CC 3C, Pulse 5C, 7S max\r\n\r\nmass quantity\r\n\r\n$1.1\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-29E\r\n\r\n2.9Ah, CC 2C, Pulse 4C\r\n\r\nmass quantity\r\n\r\n$1.4\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-32E\r\n\r\n3.2Ah, CC 10A, Pulse 5C\r\n\r\nmass quantity\r\n\r\n$1.68\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-35E\r\n\r\n3.5Ah, CC 10A, Pulse 5C\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-45E\r\n\r\n4.5Ah, CC 1Cm Pulse 3C\r\n\r\nmass quantity\r\n\r\n$1.55\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-50E\r\n\r\n5.0Ah, CC 3C, Pulse 4C\r\n\r\nmass quantity\r\n\r\n$1.95\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-40P\r\n\r\n4.0Ah, CC 6A, Max DC 45A\r\n\r\nmass quantity\r\n\r\n$2.70\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\nNew Supply\r\n\r\nCylindrical\r\n\r\nINR21700-40M (Orange tube)\r\n\r\n4.0Ah, CC 20A, Max 45A,\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-40M (Yellow tube)\r\n\r\n4.0Ah, CC 15A, Max 18A,\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\n*11. EVE*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\nINR18650/26V\r\n\r\n3.60V 2.55Ah 7.65A\r\n\r\nmass quantity\r\n\r\n$1.16\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nNew Lot\r\n\r\nCylindrical\r\n\r\nCylindrical\r\n\r\nINR18650/33V\r\n\r\n3.60V 3.20Ah 10A\r\n\r\nmass quantity\r\n\r\n$1.55\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650/35V\r\n\r\n3.65V 3.50Ah 10.20A\r\n\r\nmass quantity\r\n\r\n$1.75\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650/20P\r\n\r\n3.60V 2.00Ah 30A\r\n\r\nmass quantity\r\n\r\n$1.26\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650/25P\r\n\r\n3.60V 2.50Ah 30A\r\n\r\nmass quantity\r\n\r\n$1.56\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-40P\r\n\r\n3.60V 4.00Ah 50A\r\n\r\nmass quantity\r\n\r\n$1.90\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-40PL\r\n\r\n3.60V 4.00Ah Tabless\r\n\r\nTrail lot\r\n\r\n$4.40\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-50E\r\n\r\n3.65V 5.00Ah 15A\r\n\r\nmass quantity\r\n\r\n$1.9\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR4695E\r\n\r\n3.69V 31.90Ah 4C\r\n\r\nmass quantity\r\n\r\n$50.00\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR4695P\r\n\r\n3.69V 29Ah\r\n\r\nFew\r\n\r\n$50.00\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nwithout QR code (TBI)\r\n\r\n*12. BAK*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nMiddle Rate\r\n\r\nN18650CH\r\n\r\n2.60Ah 3C\r\n\r\nmass quantity\r\n\r\n$1.03\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN18650CP\r\n\r\n3.35Ah 3C\r\n\r\nmass quantity\r\n\r\n$1.79\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN18650CP-34E\r\n\r\n3.40Ah 3C\r\n\r\nmass quantity\r\n\r\n$1.72\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN18650CR-35E\r\n\r\n3.50Ah 3C\r\n\r\nmass quantity\r\n\r\n$1.81\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN21700CG-50\r\n\r\n5.00Ah 3C\r\n\r\nmass quantity\r\n\r\n$2.2\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nWithin 3 months\r\n\r\n\r\n\r\nN21700CG-50E\r\n\r\n5.00Ah 3C\r\n\r\nmass quantity\r\n\r\n$2.30\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN21700CD-53E\r\n\r\n5.30Ah 3C\r\n\r\nmass quantity\r\n\r\n$2.53\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN21700CK-55E\r\n\r\n5.50Ah 3C\r\n\r\nTrial Lot\r\n\r\n$3.21\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nN21700CH-58E\r\n\r\n5.80Ah 3C\r\n\r\nTrial Lot\r\n\r\n$3.37\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nN18650CH\r\n\r\n2.60Ah 3C\r\n\r\nmass quantity\r\n\r\n$1.08\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nHigh Rate\r\n\r\nN18650COP\r\n\r\n2.50Ah 30A\r\n\r\nmass quantity\r\n\r\n$1.64\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN18650CQP\r\n\r\n3.00Ah 15A\r\n\r\nmass quantity\r\n\r\n$1.92\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN21700CGP\r\n\r\n4.00Ah 35A\r\n\r\nmass quantity\r\n\r\n$2.40\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nLow\r\nTemperature\r\n\r\nN18650CP Low Temperature\r\n\r\n3.35Ah 3C\r\n\r\nmass quantity\r\n\r\n$1.87\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN18650CR-35T Low Temperature\r\n\r\n3.50Ah 3C\r\n\r\nmass quantity\r\n\r\n$1.95\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nTabless\r\n\r\n21700-40D\r\n\r\n4.00Ah 100A\r\n\r\nmass quantity\r\n\r\n$3.30\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR4695-330B\r\n\r\n3.6V, 33Ah\r\n\r\nSample\r\n\r\n$50.00\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR4690-310B\r\n\r\n3.6V, 31Ah\r\n\r\nSample\r\n\r\n$50.00\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n*13. CBAK*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nLFP\r\n\r\n26650FS2A\r\n\r\n3.2V 3.40Ah 3C for EV / ESS\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n26650FS3\r\n\r\n3.2V 3.60Ah 3C for EV / ESS\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n26650FS3A\r\n\r\n3.2V 3.80Ah 3C for EV / ESS\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n26650FS4\r\n\r\n3.2V 4.00Ah 3C for EV / ESS\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n26650FS4B\r\n\r\n3.2V 4.00Ah 3C for Light Vehicle\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n26700FB\r\n\r\n3.2V 4.00Ah 3C for Light Vehicle\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n26700FB2\r\n\r\n3.2V 4.50Ah 3C for Light Vehicle\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n26700FE\r\n\r\n3.2V 4.50Ah 3C for EV / ESS\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n32140FS\r\n\r\n3.2V 15Ah\r\n\r\nmass quantity\r\n\r\n$5.70\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nSodium-ion\r\n\r\n32140NS\r\n\r\n3.0V, 10Ah\r\n\r\nSample\r\n\r\n$10.00\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\nOnly Spec sheet is available\r\n(No UN 38.3 & MSDS)\r\n\r\n*14. CALB*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\n4695\r\n\r\n3.7V, 30Ah, NMC\r\n\r\nMOQ 10pcs\r\n\r\n$50.00\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\nSample, No spec sheet yet\r\n\r\n*15. Highstar*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nSodium-ion\r\n\r\nNaCR33140-10ER\r\n\r\n3.05V, 10Ah\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nSodium-ion\r\n\r\nNaCR46145-20ER\r\n\r\n3.05V, 20Ah\r\n\r\nMOQ 50pcs\r\n\r\n$40.00\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nSodium-ion\r\n\r\nNaCP50160118-70E3\r\n\r\nPrismatic, 3.05V, 70Ah\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nSodium-ion\r\n\r\nNaCP50160118-70H3\r\n\r\nPrismatic, 3.0V, 70Ah\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nSodium-ion\r\n\r\nNaCP50160118-80E3\r\n\r\nPrismatic, 3.05V, 80Ah\r\n\r\nSample\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\nSodium-ion\r\n\r\nNaCP40130208-80E3\r\n\r\nPrismatic, 3.05V, 80Ah\r\n\r\nSample\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\nSodium-ion\r\n\r\nNaCP50160153-103E3\r\n\r\nPrismatic, 3.0V, 103Ah\r\n\r\nSample\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\nTabless\r\n\r\nINR21700-40PS\r\n\r\n3.6V, 3950mAh\r\n\r\nMOQ 50pcs\r\n\r\n$6.65\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nTabless\r\n\r\nINR21700-50PS\r\n\r\n3.6V, 4900mAh, Low Impedance\r\n\r\n130pcs\r\n\r\n$4.50\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n\r\n\r\n*16. Lishen*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\n18650LA\r\n\r\n2Ah, 10C\r\n\r\nmass quantity\r\n\r\n$1.15\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650LD\r\n\r\n2.5Ah, 10C\r\n\r\nmass quantity\r\n\r\n$1.50\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650LE\r\n\r\n3Ah, 10C\r\n\r\nmass quantity\r\n\r\n$2.15\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650SK\r\n\r\n2.6Ah, 3C\r\n\r\nmass quantity\r\n\r\n$1.1\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650SS\r\n\r\n3Ah, 3C\r\n\r\nmass quantity\r\n\r\n$1.48\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650HB\r\n\r\n3.35Ah, 3C\r\n\r\nmass quantity\r\n\r\n$1.63\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650HC\r\n\r\n3.5Ah, 3C\r\n\r\nmass quantity\r\n\r\n$1.92\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700LA\r\n\r\n4Ah, 10C\r\n\r\nmass quantity\r\n\r\n$1.93\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700SA\r\n\r\n4Ah, 3C\r\n\r\nmass quantity\r\n\r\n$1.80\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700SD\r\n\r\n5Ah, 3C\r\n\r\nmass quantity\r\n\r\n$2.19\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700SZ\r\n\r\n5Ah, 3C\r\n\r\nmass quantity\r\n\r\n$2.2\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n*17. Sunpower*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\nINR18650-1300\r\n\r\n13P (15C) 20A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-1500\r\n\r\n15H (13C) 20A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-2000\r\n\r\n20P (10C) 20A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-2000\r\n\r\n20T (15C) 30A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-2200\r\n\r\n22R (9C) 20A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-2500\r\n\r\n25R (10C) 25A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-2500\r\n\r\n25T (12C) 30A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-2500\r\n\r\n25L (8C) 20A Low Temperature type\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-2600\r\n\r\n26P (5C) 13A\r\n\r\nmass quantity\r\n\r\n$1.34\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-3000\r\n\r\n30P (10C) 30A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-3000\r\n\r\n30S (13C) 40A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-3000\r\n\r\n30L (3C) 10A Low Teperature type\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-4000\r\n\r\n40S (10C) 40A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-4000\r\n\r\n40L (10C) 40A Low Temperature type\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-5000\r\n\r\n50E (3C) 15A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-5000\r\n\r\n50SE (6C) 30A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nLFP26700-4300\r\n\r\n43E (3C) 12.9A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nLFP26700-4500\r\n\r\n45E (3C) 13.5A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\n\r\n\r\n*18. Maxell*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nPrismatic\r\n\r\nICP653865SRU\r\n\r\n3.7V, 1800mAh\r\n\r\n48,760\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nB0711\r\n\r\n\r\n\r\nPrismatic\r\n\r\nICP653450AHR\r\n\r\n1360mAh 3.85V (4.35V charge)\r\n\r\nmass quantity\r\n\r\n$4\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nI2101\r\n\r\n\r\n\r\nPrismatic\r\n\r\nICP103450AHR\r\n\r\n2160mAh 3.8V (4.35V charge)\r\n\r\n49,400\r\n\r\nTBI\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\nwithin 2020\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nWarm regards\r\n\r\n\r\n\r\nShmuel De-Leon/CEO\r\n\r\nShmuel De-Leon Energy, Ltd.\r\n\r\nMazal Arie 10, Hod-Hasharon, Israel 4536045\r\n\r\nTel/Fax: 972-77-5010792\r\n\r\nMobile: 972-52-8601517\r\n\r\nE-Mail: shmuel@sdle.co.il <shmueld33@gmail.com>\r\n\r\nCompany web site: www.sdle.co.il\r\n\r\nBattery DataBase web site: www.batteriesdatabase.com\r\n\r\n\r\n\r\nSign-up to our weekly battery newsletter\r\nhttps://www.sdle.co.il/services/newsletter/',0,0,0,0,0,0,'2025-11-10 16:33:24','2025-12-09 19:31:06','2025-12-09 19:31:06','2025-12-09 19:31:06',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(941,4,'<BAEFC39B-D002-4C82-BD71-7B80DBB0885B@mavrix.one>',NULL,NULL,'Re: Shmuel De-Leon Energy - Li-Ion Cells (Cylindrical, Pouch, Prismatic) for sale for this week - November 10, 2025','Brian@mavrix.one','Brian Stufflebean','\r\n--Apple-Mail=_9CBCD862-D151-4F98-9C5C-A4AF3E5E3B12\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Type: text/html;\r\n	charset=utf-8\r\n\r\n<html><head><meta http-equiv=3D\"content-type\" content=3D\"text/html; =\r\ncharset=3Dutf-8\"></head><body style=3D\"overflow-wrap: break-word; =\r\n-webkit-nbsp-mode: space; line-break: after-white-space;\"><span =\r\nstyle=3D\"font-size: 14px;\">Rick,</span><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: 14px;\">The =\r\nattached data is pertinent to what we should be capturing, giving us =\r\nmarket price and intelligence in relative real =\r\ntime.&nbsp;</span></div><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: =\r\n14px;\">Thanks,</span></div><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: =\r\n14px;\">Brian</span></div><div><div><br><blockquote type=3D\"cite\"><div>On =\r\nNov 10, 2025, at 11:33=E2=80=AFAM, Nathan Staron =\r\n&lt;Nathan@lithiumbatterycompany.com&gt; wrote:</div><br =\r\nclass=3D\"Apple-interchange-newline\"><div><div dir=3D\"ltr\"><div><br =\r\nclear=3D\"all\"></div><div><div dir=3D\"ltr\" class=3D\"gmail_signature\" =\r\ndata-smartmail=3D\"gmail_signature\"><div =\r\ndir=3D\"ltr\"><br><div><br></div><div><table cellpadding=3D\"0\" =\r\ncellspacing=3D\"0\" border=3D\"0\" style=3D\"border: medium; border-collapse: =\r\ncollapse; font-size: 10px; font-family: Inter, sans-serif;\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;line-height:16px\"><table =\r\ncellpadding=3D\"0\" cellspacing=3D\"0\" style=3D\"border:none\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td valign=3D\"top\" =\r\nalign=3D\"left\" style=3D\"border:1px solid =\r\nrgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px =\r\n8px 8px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://lithiumbatterycompany.com/\" target=3D\"_blank\"><img =\r\nalt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/web-icon=\r\n.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.instagram.com/lithiumbatteryco/\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/insta-ic=\r\non.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.linkedin.com/company/the-lithium-battery-company\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/linkedin=\r\n-icon.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.facebook.com/LithiumBatteryCompany/\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/facebook=\r\n-icon.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.youtube.com/c/LithiumBatteryCompany\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/youtube-=\r\nicon.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr></tbody></table></td><td =\r\nwidth=3D\"8\" =\r\nstyle=3D\"border:none;border-collapse:collapse;display:revert\">&nbsp;</td><=\r\ntd valign=3D\"top\" align=3D\"left\" style=3D\"border:1px solid =\r\nrgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\">=\r\n<table width=3D\"100%\" border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td align=3D\"left\" =\r\nvalign=3D\"middle\" style=3D\"border:none;border-collapse:collapse\"><table =\r\nwidth=3D\"100%\" border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><a =\r\nhref=3D\"https://lithiumbatterycompany.com/\" target=3D\"_blank\"><img =\r\nsrc=3D\"https://app.customesignature.com/upload/signature/11122/11122.png\" =\r\nwidth=3D\"170\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:0px 0px =\r\n10px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:15px 0px =\r\n0px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td align=3D\"left\" =\r\nvalign=3D\"middle\" style=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:20px\">NATHAN A. =\r\nSTARON</span></td><td align=3D\"left\" valign=3D\"middle\" =\r\nstyle=3D\"border:none;border-collapse:collapse;padding-left:5px\"><img =\r\nwidth=3D\"15\" height=3D\"15\" =\r\nsrc=3D\"https://app.customesignature.com/images/verify.gif\" =\r\nstyle=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-size:12px\">Founder / =\r\nCEO</span></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Lithium Battery =\r\nCompany</span></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Cell Phone</span>&nbsp;<a =\r\nhref=3D\"tel:813-504-0074\" style=3D\"font-size: 12px;\" =\r\ntarget=3D\"_blank\">813-504-0074</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Phone</span>&nbsp;<a =\r\nhref=3D\"tel:844-GET-LITHIUM\" style=3D\"font-size: 12px;\" =\r\ntarget=3D\"_blank\">844-GET-LITHIUM</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><a =\r\nhref=3D\"mailto:Nathan@lithiumbatterycompany.com\" style=3D\"\" =\r\ntarget=3D\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px =\r\n0px\"><table cellpadding=3D\"0\" cellspacing=3D\"0\" border=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;display:flex;font-weight:bol=\r\nd\"><a href=3D\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" =\r\nstyle=3D\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px =\r\n15px;text-align:center;font-size:12px;line-height:14px;display:inline-bloc=\r\nk\" target=3D\"_blank\">Schedule A =\r\nZoom</a></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><table cellpadding=3D\"0\" =\r\ncellspacing=3D\"0\" border=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"></tr></tbody></table></td><=\r\n/tr></tbody></table></td><td align=3D\"left\" valign=3D\"middle\" =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:0px 0px 0px =\r\n15px;display:revert\"><div style=3D\"max-height:0px;overflow:visible\"><img =\r\nsrc=3D\"https://app.customesignature.com/upload/signature/profile/173870830=\r\n7-11122.jpg\" width=3D\"140\" style=3D\"display:block;border-radius:10px\" =\r\ndata-unique-identifier=3D\"\"></div><img =\r\nsrc=3D\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gi=\r\nf\" name=3D\"SignatureSanitizer_profile_annimation_gif\" width=3D\"140\" =\r\nstyle=3D\"display:block;border-radius:10px\" =\r\ndata-unique-identifier=3D\"\"></td></tr></tbody></table></td></tr></tbody></=\r\ntable></td></tr><tr style=3D\"border:none;border-collapse:collapse\"><td =\r\nalign=3D\"left\" valign=3D\"top\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><table border=3D\"0\" =\r\ncellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"></tr></tbody></table></td><=\r\n/tr><tr style=3D\"border:none;border-collapse:collapse\"></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:10px 0px =\r\n0px\"><a></a></td></tr></tbody></table></div></div></div></div><br><br><div=\r\n class=3D\"gmail_quote gmail_quote_container\"><div dir=3D\"ltr\" =\r\nclass=3D\"gmail_attr\">---------- Forwarded message ---------<br>From: =\r\n<strong class=3D\"gmail_sendername\" dir=3D\"auto\">shmuel de-leon</strong> =\r\n<span dir=3D\"auto\">&lt;<a =\r\nhref=3D\"mailto:shmuel@sdle.co.il\">shmuel@sdle.co.il</a>&gt;</span><br>Date=\r\n: Mon, Nov 10, 2025 at 11:20=E2=80=AFAM<br>Subject: Shmuel De-Leon =\r\nEnergy - Li-Ion Cells (Cylindrical, Pouch, Prismatic) for sale for this =\r\nweek - November 10, 2025<br>To: <br></div><br><br>\r\n\r\n\r\n\r\n\r\n\r\n<div lang=3D\"en-IL\" link=3D\"#0563C1\" vlink=3D\"#954F72\" =\r\nstyle=3D\"word-wrap:break-word\">\r\n<div><p class=3D\"MsoNormal\"><u></u>&nbsp;<u></u></p><p =\r\nclass=3D\"MsoNormal\"><b><span lang=3D\"PL\" style=3D\"color:red\"><span =\r\nid=3D\"cid:ii_19a6e9d3cda5b16b21\">&lt;image002.png&gt;</span></span></b><b>=\r\n<span lang=3D\"PL\" style=3D\"color:red\"><u></u><u></u></span></b></p><p =\r\nclass=3D\"MsoNormal\"><b><span lang=3D\"PL\" =\r\nstyle=3D\"color:red\"><u></u>&nbsp;<u></u></span></b></p><p =\r\nclass=3D\"MsoNormal\"><b><span lang=3D\"PL\" =\r\nstyle=3D\"color:red\">------------------------------------------------------=\r\n--------------------------------------------------------------------------=\r\n--------------------------------------------------------------------------=\r\n-----------------------------------------------------------<u></u><u></u><=\r\n/span></b></p><p class=3D\"MsoNormal\"><b><span lang=3D\"PL\" =\r\nstyle=3D\"color:red\"><u></u>&nbsp;<u></u></span></b></p><p =\r\nclass=3D\"MsoNormal\"><b><span lang=3D\"PL\" style=3D\"color:red\">Attached =\r\nlist of cells we have availible for this week =E2=80=93 Contact us for =\r\nthese cells or for other cell models you need and we will check =\r\navailability =E2=80=93 Contact us in case you wish to sell cell stock =\r\nyou\r\n have<u></u><u></u></span></b></p><p class=3D\"MsoNormal\"><b><span =\r\nlang=3D\"PL\" =\r\nstyle=3D\"color:red\">------------------------------------------------------=\r\n--------------------------------------------------------------------------=\r\n--------------------------------------------------------------------------=\r\n------------------------------------------------------------<u></u><u></u>=\r\n</span></b></p><p class=3D\"MsoNormal\"><b><span lang=3D\"PL\" =\r\nstyle=3D\"color:red\"><u></u>&nbsp;<u></u></span></b></p>\r\n<ul style=3D\"margin-top:0in\" type=3D\"disc\">\r\n<li style=3D\"color:red;margin-left:0in\">\r\n<b><span lang=3D\"PL\">Attached an update on discontiniue Panasonic =\r\ncells&nbsp; -Contact us to purchase these cells before it will be to =\r\nlate!!!<u></u><u></u></span></b></li></ul><p class=3D\"MsoNormal\"><b><span =\r\nlang=3D\"PL\" style=3D\"color:red\"><u></u>&nbsp;<u></u></span></b></p>\r\n<table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" width=3D\"2112\" =\r\nstyle=3D\"width:22.0in;border-collapse:collapse\">\r\n<tbody>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"1863\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:1396.9pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\"><b><u><span lang=3D\"EN-US\" style=3D\"font-size: =\r\n16pt;\">New High Energy Density Cells we =\r\nsell:<u></u><u></u></span></u></b></p><p class=3D\"MsoNormal\"><span =\r\nlang=3D\"EN-US\" style=3D\"font-size: =\r\n16pt;\"><u></u>&nbsp;<u></u></span></p><p class=3D\"MsoNormal\"><b><span =\r\nstyle=3D\"\">21700 cell</span></b><span style=3D\"\"> =E2=80=93 production =\r\ncapacity is 2000 cells per day (Vendor start building 500MWh/Year =\r\nFactory =E2=80=93 Production start\r\n Q1/26) - cost ~$20-28/pcs ex work China depend on the quantity<br>\r\nEnergy Density:&nbsp;393 Wh/kg,&nbsp;Capacity: 6Ah at C/5, at room =\r\ntemperature to 3V C.O.V,&nbsp;Weight: 58 Grams,&nbsp;Size: 21.8, =\r\n71.8,&nbsp;Nominal voltage: 3.8V,&nbsp;&nbsp;<br>\r\nMax constant charge current is 1C to 4.35V,&nbsp;Cycle life: 120 =\r\ncycles,&nbsp;Max constant discharge current is 5C,&nbsp;Discharge temp =\r\n-10 to 65 Deg C,&nbsp;<br>\r\nCharge temp 0 to 35 Deg C&nbsp;<br>\r\n&nbsp;<br>\r\n<b>18650 cell</b> =E2=80=93 production capacity is 2GWh/Year -&nbsp; =\r\ncost ~$10/pcs ex work China depend on the quantity<br>\r\nEnergy Density:&nbsp;326 Wh/kg,&nbsp;Capacity: 4.3Ah at C/5, at room =\r\ntemperature to 3V C.O.V,&nbsp;Weight: 50 Grams,&nbsp;Size: 18.35, =\r\n65.5,&nbsp;Nominal voltage: 3.8V,&nbsp;&nbsp;<br>\r\nMax constant charge current is 0.2C to 4.25V,&nbsp;Cycle life: 100 =\r\ncycles,&nbsp;Max constant discharge current is 4C,&nbsp;Discharge temp =\r\n-10 to 60 Deg C,&nbsp;&nbsp;<br>\r\nCharge temp 0 to 45 Deg C<u></u><u></u></span></p><p =\r\nclass=3D\"MsoNormal\"><span style=3D\"\"><u></u>&nbsp;<u></u></span></p><p =\r\nclass=3D\"MsoNormal\"><b><span style=3D\"\">Pouch Cells Vendor =\r\n1</span></b><span style=3D\"\"><br>\r\nWe also sell quasi solid lithium metal anode free pouch cells with =\r\nenergy densities of up to 520 Wh/kg, 1200 Wh/l, 8-50Ah capacity, 7C max =\r\nconstant discharge, 10-50 Cycles - Cells are made in 200MWh/Year factory =\r\n.<br>\r\n<br>\r\n<b>Pouch Cells Vendor 2</b><br>\r\nWe also sell quasi solid lithium metal pouch cells with energy densities =\r\nof up to 450 Wh/kg, 6-50Ah capacity, 8C max constant discharge, 1200 =\r\nCycles - Cells are made in 600MWh/Year factory.<br>\r\n<br>\r\n<b>Pouch Cells Vendor 3</b><br>\r\nWe also sell Semi solid lithium metal anode free pouch cells with energy =\r\ndensities of up to 400-600 Wh/kg, 8-50Ah capacity, 5C max constant =\r\ndischarge, 400Wh/Kg with 800 cycles, 500-600 Wh/kg with 10-15 Cycles - =\r\nCells are made in 10MWh/Year prototype production\r\n line.<u></u><u></u></span></p><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"\"><u></u>&nbsp;<u></u></span></p><p class=3D\"MsoNormal\"><b><span =\r\nstyle=3D\"\">We sell battery packs assemble with lithium metal cells with =\r\n400-460 Wh/kg.</span></b><b><u><span lang=3D\"EN-US\" style=3D\"font-size: =\r\n16pt;\"><u></u><u></u></span></u></b></p><p class=3D\"MsoNormal\"><b><u><span=\r\n lang=3D\"EN-US\" style=3D\"font-size: =\r\n16pt;\">-------------------------------------------------------------------=\r\n--------------------------------------------------------------------------=\r\n------------------------------------------------------------------<u></u><=\r\nu></u></span></u></b></p><p class=3D\"MsoNormal\"><b><u><span lang=3D\"EN-US\"=\r\n style=3D\"font-size: 16pt;\"><u></u><span =\r\nstyle=3D\"text-decoration:none\">&nbsp;</span><u></u></span></u></b></p><p =\r\nclass=3D\"MsoNormal\"><b><u><span lang=3D\"EN-US\" style=3D\"font-size: =\r\n16pt;\">Our Customers/Suppliers new cells with and older date code stocks =\r\nwe have for sale:<u></u><u></u></span></u></b></p><p =\r\nclass=3D\"MsoNormal\"><b><span lang=3D\"EN-US\" =\r\nstyle=3D\"\"><u></u>&nbsp;<u></u></span></b></p><p class=3D\"MsoNormal\"><b>We=\r\n have in Germany Panasonic NCR18650-B in special pricing =E2=80=93 =\r\nContact us for more details<u></u><u></u></b></p><p =\r\nclass=3D\"MsoNormal\"><b><u></u>&nbsp;<u></u></b></p><p =\r\nclass=3D\"MsoNormal\"><b><span style=3D\"color:red\">Panasonic =\r\nNCR-18650B</span></b><br>\r\nPrice for an order of minimum 50.040 pcs. =3D 3,42 =E2=82=AC (transport =\r\ncosts will be added)<br>\r\nPrice is only valid for an order of minimum 50.040 pcs.<br>\r\nProduction date code of the cells: 34.700 pcs. with November 2024, =\r\n15.340 pcs. with March 2025<br>\r\nDelivery time: available on stock - subject to being unsold!<br>\r\n<b><br>\r\n<span style=3D\"color:red\">Molicel INR21700-P42A</span></b><br>\r\nPrice for an order of minimum 20.000 pcs.: 3.5 =E2=82=AC (transport =\r\ncosts will be added)<br>\r\nMaximum available quantity: 48.000 pcs.<br>\r\nProduction date code of the cells: March 2025<br>\r\n<br>\r\n<b><span style=3D\"color:red\">Molicel INR21700-P45B</span></b><br>\r\nPrice for an order of minimum 20.000 pcs.: 3.5 =E2=82=AC (transport =\r\ncosts will be added)<br>\r\nMaximum available quantity: 41.000 pcs.<br>\r\nProduction date code of the cells: December 2024 and January =\r\n2025<u></u><u></u></p><p =\r\nclass=3D\"MsoNormal\"><b><u></u>&nbsp;<u></u></b></p><p =\r\nclass=3D\"MsoNormal\"><b><span style=3D\"color:red\">Molicel =\r\nINR18650-P28A</span></b><br>\r\nPrice for an order of minimum 7.000 pcs.: 1.8 =E2=82=AC (transport costs =\r\nwill be added)<br>\r\nProduction date code of the cells: 2022 =E2=80=93 Location: =\r\nUSA<b><u></u><u></u></b></p><p =\r\nclass=3D\"MsoNormal\"><b><u></u>&nbsp;<u></u></b></p><p =\r\nclass=3D\"MsoNormal\"><b>We have in Germany:<u></u><u></u></b></p><p =\r\nclass=3D\"MsoNormal\">Murata US18650VTC6, 25K, cost 3Euro/pcs, Date cost =\r\nMarch 2024<u></u><u></u></p><p =\r\nclass=3D\"MsoNormal\"><u></u>&nbsp;<u></u></p><p class=3D\"MsoNormal\"><b>We =\r\nhave in Germany:<u></u><u></u></b></p><p class=3D\"MsoNormal\"><span =\r\nlang=3D\"en-AE\">Panasonic 150K NCR18650GA6W (Factory Wuxi China) Date =\r\nCode 2022 =E2=82=AC2.6/pcs.<u></u><u></u></span></p><p =\r\nclass=3D\"MsoNormal\"><span =\r\nlang=3D\"en-AE\"><u></u>&nbsp;<u></u></span></p><p><span =\r\nstyle=3D\"color:#1f497d\">--------------------------------------------------=\r\n--------------------------------------------------------------------------=\r\n------------------------------------------------<u></u><u></u></span></p><=\r\np class=3D\"MsoNormal\"><b><span lang=3D\"EN-US\" style=3D\"font-size: =\r\n16pt;\">New cells we have for sale:<u></u><u></u></span></b></p><p =\r\nclass=3D\"MsoNormal\"><b><span lang=3D\"EN-US\" style=3D\"font-size: =\r\n16pt;\"><u></u>&nbsp;<u></u></span></b></p><p class=3D\"MsoNormal\"><b><span =\r\nlang=3D\"EN-US\" style=3D\"font-size:16.0pt;color:#ee0000\">We start selling =\r\nMoli Energy 21700 6.5Ah cells.</span></b><b><span =\r\nstyle=3D\"font-size:16.0pt;color:#ee0000\"><u></u><u></u></span></b></p><p =\r\nclass=3D\"MsoNormal\"><b><span =\r\nstyle=3D\"\"><u></u>&nbsp;<u></u></span></b></p><p =\r\nclass=3D\"MsoNormal\"><b><span lang=3D\"EN-US\" style=3D\"\">Supplier =\r\n1:</span></b><b><span style=3D\"\"><u></u><u></u></span></b></p><p =\r\nclass=3D\"MsoNormal\"><b><span lang=3D\"EN-US\" style=3D\"\">Moli =\r\ncells</span></b><b><span style=3D\"\"><u></u><u></u></span></b></p><p =\r\nclass=3D\"MsoNormal\"><span lang=3D\"EN-US\">P26A =E2=80=93 Any Quantity 10K =\r\nand up =E2=80=93 fresh cells =E2=80=93 An attractive =\r\ncost.</span><u></u><u></u></p><p class=3D\"MsoNormal\"><span =\r\nlang=3D\"EN-US\">P28A =E2=80=93 Any Quantity 10K and up =E2=80=93 fresh =\r\ncells - An attractive cost.</span><u></u><u></u></p><p =\r\nclass=3D\"MsoNormal\"><span lang=3D\"EN-US\">P42A =E2=80=93 Any Quantity 10K =\r\nand up =E2=80=93 fresh cells - An attractive =\r\ncost.</span><u></u><u></u></p><p class=3D\"MsoNormal\"><span =\r\nlang=3D\"EN-US\">M35A =E2=80=93 Any Quantity 10K and up =E2=80=93 fresh =\r\ncells - An attractive cost.</span><u></u><u></u></p><p =\r\nclass=3D\"MsoNormal\"><u></u>&nbsp;<u></u></p>\r\n<table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" width=3D\"1271\" =\r\nstyle=3D\"width:953.0pt;border-collapse:collapse\">\r\n<tbody>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"309\" nowrap=3D\"\" colspan=3D\"2\" valign=3D\"bottom\" =\r\nstyle=3D\"width:232.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n<ol style=3D\"margin-top:0in\" start=3D\"1\" type=3D\"1\">\r\n<li style=3D\"margin-left: 0in;\">\r\n<b><span>Samsung SDI<u></u><u></u></span></b></li></ol>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:30.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" style=3D\"width:190.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" style=3D\"width:82.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" style=3D\"width:65.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Unit =\r\nPrice<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Price =\r\nTerm<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" style=3D\"width:66.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Leadtime<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:78.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cell =\r\nLot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" style=3D\"width:163.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">18650-20RM<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">High Rate, 3.6V, =\r\n2.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.55 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Made in =\r\nMalaysia<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">18650-20RM<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">High Rate, 3.6V, =\r\n2.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.57 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within 6 =\r\nmonths<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Made in Malaysia, MOQ 1 =\r\nPallet<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">18650-25R<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">High Rate, 3.6V, =\r\n2.5Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.68 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2024-08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">18650-26JM<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">High Energy, 3.6V, =\r\n2.6Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.30 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2021-08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Made in =\r\nMalaysia<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">18650-30Q<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">High rate, 3.6V, 3.0Ah<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.25 <u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2025-07<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">18650-30Q<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">High rate, 3.6V, 3.0Ah<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.15 <u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA HK<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2024-10<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">MOQ 1 Pallet<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">18650-35E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Middle rate, 3.6V, =\r\n3.5Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.78 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within 3 =\r\nmonths<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">18650-35E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Middle rate, 3.6V, =\r\n3.5Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.45 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2024-01<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">21700-30T<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">High Rate, 3.6V, =\r\n3.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">4 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">21700-40T5<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">High Rate, 3.6V, =\r\n4.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.05 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within 6 =\r\nmonths<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">21700-40T<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">High Rate, 3.6V, =\r\n4.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.90 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2024-02<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:12.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:12.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:12.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">21700-48X3<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:12.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 4.8Ah, =\r\n3000cycles,bare<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:12.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:12.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.65 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:12.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:12.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">4 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:12.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2023-12<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:12.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Bare cells<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">21700-48X2<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 4.8Ah, 3000cycles<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">4 weeks<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2022-01<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">21700-50E2<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 5.0Ah, 2C(C), =\r\n3C(P)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.70 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2024-01<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Made in China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">21700-50E2<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 5.0Ah, 2C(C), =\r\n3C(P)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.95 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Available in =\r\nOct.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within =\r\n2025-07<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Made in China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">21700-50GB<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 5.0Ah, 1C(C), =\r\n2C(P)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.15 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2025-03<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Made in Malaysia, MOQ 1 =\r\nPallet<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">21700-50S<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 5.0Ah 5C(C), =\r\n9C(P)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.45 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within 2025<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Made in China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">21700-50S<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 5.0Ah 5C(C), =\r\n9C(P)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.68 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within 2025<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Made in China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">21700-53G2<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 5.3Ah, 1C(C)<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.40 <u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2025-03<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">with tube<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">21700-58E<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.64V, 5330mAh, 3C max<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$4 <u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2024-07<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"309\" nowrap=3D\"\" colspan=3D\"2\" valign=3D\"bottom\" =\r\nstyle=3D\"width:232.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\"><b><span style=3D\"\">2. LG Energy =\r\nSolution<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" style=3D\"width:190.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" style=3D\"width:82.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" style=3D\"width:65.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" style=3D\"width:66.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:78.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" style=3D\"width:163.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:30.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" style=3D\"width:190.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" style=3D\"width:82.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Available =\r\nQuantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" style=3D\"width:65.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" style=3D\"width:66.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:78.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" style=3D\"width:163.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">18650-F1L<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">High Energy, 3.6V, =\r\n3.35Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$3.25 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2024-09<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">18650-MF1<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Middle rate, 3.6V, =\r\n2.15Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2021-02<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Lot A045<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">18650-M26(S)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Middle rate, 3.6V, =\r\n2.6Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">19,000pcs<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.83 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2020-10<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">18650-M29<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Middle rate, 3.6V, =\r\n2.85Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.2 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Fresh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">18650HJ2<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">High Rate, 3.6V, =\r\n3.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.05 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2024-05<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">18650HJ2<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">High Rate, 3.6V, =\r\n3.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.21 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Within 6 =\r\nmonths<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">18650-MH1<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Middle rate, 3.6V, =\r\n3.2Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.56 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Within 6 =\r\nmonths<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">18650-MH1<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Middle rate, 3.6V, 3.2Ah<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.54 <u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA HK<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Within 6 months<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">MOQ 1 Pallet<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">18650-MJ1<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Middle rate, 3.6V, =\r\n3.5Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.55 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Within 6 =\r\nmonths<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Made in China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">18650-MJ1<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Middle rate, 3.6V, =\r\n3.5Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.53 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Within 6 =\r\nmonths<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">MOQ 1 Pallet<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">21700-M48<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Middle rate, 3.68V, 17.4Wh<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.03 <u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Stock<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2023-05<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">LOT C118D283<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">21700-M48A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.6 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">21700-M50LT<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Middle rate, 3.6V, =\r\n5.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.92 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2025-08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">21700-M52V<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 5.2Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.16 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within 2025<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Made in Korea, Bare =\r\ncell<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><b><span =\r\nstyle=3D\"color:red\">Cylindrical</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><b><span =\r\nstyle=3D\"color:red\">21700-M58T</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><b><span style=3D\"color:red\">3.6V, =\r\n5.8Ah</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><b><span =\r\nstyle=3D\"color:red\">5,330pcs</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><b><span style=3D\"color:red\">$2.15\r\n</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><b><span style=3D\"color:red\">FCA =\r\nHK</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><b><span style=3D\"color:red\">3 =\r\ndays</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><b><span =\r\nstyle=3D\"color:red\">2023-11</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><b><span style=3D\"color:red\">Made in Korea,\r\n<br>\r\nSpecial Promotion to take all</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">21700-M58T<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 5.8Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$6.15 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3 days<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2024-06<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Made in Korea<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">21700-M58T<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 5.8Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.7 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3 days<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Within 6 =\r\nmonths<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Made in China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Pouch Polymer<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">E66<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Li-ion, 3.65V 66Ah 11.3 x 98 x =\r\n357mm<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$35.00 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">N/A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">A- grade<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Pouch Polymer<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">E78<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Li-ion, 3.65V 78Ah 8 x 98 x =\r\n510mm<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$38.00 <u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">N/A<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">A- grade<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\"><span><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"font-size:10.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\"><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" style=3D\"width:190.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"font-size:10.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\"><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" style=3D\"width:82.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"font-size:10.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\"><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" style=3D\"width:65.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"font-size:10.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\"><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"font-size:10.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\"><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" style=3D\"width:66.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"font-size:10.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\"><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:78.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"font-size:10.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\"><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" style=3D\"width:163.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"font-size:10.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\"><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"309\" nowrap=3D\"\" colspan=3D\"2\" valign=3D\"bottom\" =\r\nstyle=3D\"width:232.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\"><b><span style=3D\"\">3. Panasonic =\r\n(Sanyo)<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:30.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" style=3D\"width:190.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" style=3D\"width:82.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Available =\r\nQuantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" style=3D\"width:65.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" style=3D\"width:66.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:78.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" style=3D\"width:163.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">UR18650RX =\r\n(Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1950mAh, 3.6V<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">MOQ 1 Pallet<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$3.8 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within 3-6 =\r\nmonths<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Fresh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">UR18650AA =\r\n(Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2250mAh, 3.6V, 8A =\r\ndischarge<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.80 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within 6 =\r\nmonths<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">UR18650A(Y) =\r\n(Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2200mAh, 3.6V, 2C =\r\ndischarge<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.35 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">5 days<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2024-08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">UR18650NSX =\r\n(Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2500mAh, 3.6V<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$4.3 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2023-03<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">MOQ 1 Pallet<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">UR18650FM (Sanyo)<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.7V 2.5Ah<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$5.3 <u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA HK<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within 2025<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Japan<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">UR18650ZM2 (Sanyo)<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 2.55Ah<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.75 <u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2025-08<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">China<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">UR18650ZM2 =\r\n(Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 2.55Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.77 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2025-08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">UR18650ZY =\r\n(Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 2.6Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.88 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">End November<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within 2025<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">UR18650ZTA =\r\n(Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.8V (4.35V charge), 3000mAh\r\n<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$3.60 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2022-03<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">UR18500F<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.7V, 1620mAh<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$3.90 <u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">UR14500P =\r\n(Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.7V, 840mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1,830pcs<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$4 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">UR14650R =\r\n(Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 1050mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">10,080pcs<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.35 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2021-10<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">NCR18650BF =\r\n(Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 3.4Ah, =\r\nstandard<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$3.80 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">December<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within 2025<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">NCR18650GA (Sanyo)<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 3.5Ah<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">End of Dec.<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within 3 months<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">MOQ 1 Pallet, <br>\r\nMade in Japan<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">NCR18500A =\r\n(Pana)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 2040mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$3.40 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within 8 =\r\nmonths<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">NCR1850B (Pana)<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 2350mAh<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$3.55 <u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within 2025<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">China<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">NCR18650PF (Pana)<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 2900mAh, 10A =\r\ndischarge<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.75 <u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">China<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">NCR18650BD (Pana.)<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Middle Rate, 3.6V, 3.2Ah<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.07 <u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2025-05<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">China<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">NCR18650GA6W =\r\n(Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Middle Rate, 3.6V, 3.5Ah, green =\r\ntube<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.25 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within 6 =\r\nmonths<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">NCR18650GA6W =\r\n(Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Middle Rate, 3.6V, 3.5Ah, green =\r\ntube<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.15 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within 6 =\r\nmonths<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">MOQ 1 Pallet, =\r\nChina<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">NCR18650GA6W =\r\n(Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Middle Rate, 3.6V, 3.5Ah, red =\r\ntube<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within 1 year<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">NCR18650B (Pana.)<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Standard, 3.6V, 3.4Ah<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$4.4 <u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA HK<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2025-01<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Japan, MOQ 1 Pallet<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">NCR2170MB =\r\n(Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 5150mAh, 12A =\r\ndischarge<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$4.65 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2024-01<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Japan, MOQ 1 =\r\nPallet<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">NCR2270AE =\r\n(Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 5635mAh, 12A =\r\ndischarge<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2024-11<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">CR123A in bulk package<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3V 1400mAh Lithium Primary<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.38 <u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">CR123A in candy package<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3V 1400mAh Lithium Primary<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.45 <u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">NCA103443 (Pana.)<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 2.01Ah<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Stock<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">China<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">NCA103450 w/o breaker =\r\n(Pana.)<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 2350mAh<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$3.70 <u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within 6 months<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">China<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">NCA103450 w/t breaker =\r\n(Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 2350mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$5.8 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2024-10<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">MOQ 10K<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">NCA882936SA =\r\n(Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 1310mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$5.7<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2024-01<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">NCA903864A =\r\n(Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 3280mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">5,040pcs<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$6.6 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2021-09<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">NCA653864SA =\r\n(Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 2.4Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$4.40 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within 6 =\r\nmonths<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">NCA793540(Pana)<span><u></u><u></u></span></p>=\r\n\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 1485mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$3.1 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2-4 Months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2025-01<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">NCA596080 =\r\n(Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 4170mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$8.90 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">NCA596080SA (Pana.)<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 4340mAh<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">UF103450P without =\r\nfuse<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.7V, 2000mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$5.60 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2021-10<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">UF703450F =\r\n(Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.7V, 1480mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$4.50 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2022-08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Made in Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">UF653450S (Sanyo)<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.7V, 1250mAh<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA HK<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Stock<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2024-02<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Japan<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">UF553450ZP (Sanyo)<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.7V 1.15Ah<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$3.60 <u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2025-05<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Japan<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">UF553450ZP =\r\n(Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.7V 1.15Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$3 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2025-05<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">UF553443ZU =\r\n(Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.7V 1.04Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">40,000pcs<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within 2022<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Panasonic 50Ah<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">NMC 50Ah 27x148x92mm, 849g, =\r\n0.55mhom<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">A- grade<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Panasonic 4Ah<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.7V 4.2Ah 13-120-65mm, 35C-70C, =\r\n183g<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">A- grade<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Panasonic 27Ah<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">NMC 23Ah 30C/70C =\r\nL148xW26xH90mm<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2,000pcs<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$25.00 <u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">N/A<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Uncycled<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\"><b><span style=3D\"\">4. Murata\r\n<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:30.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" style=3D\"width:190.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" style=3D\"width:82.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" style=3D\"width:65.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Unit =\r\nPrice<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Price =\r\nTerm<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" style=3D\"width:66.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:78.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cell =\r\nLot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" style=3D\"width:163.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">US18650VTC4<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 2.1Ah, 30A =\r\nDisch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">US18650VTC5<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 2.5Ah, 20A/30A =\r\nDisch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">US18650VTC5A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 2.5Ah, 30A/35A =\r\nDisch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Few<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">US18650VTC5C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 2.5Ah, 30A =\r\nDisch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.75 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2021 Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">US18650VTC5D<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 2.7Ah, 35A =\r\nDisch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$4.2<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2021-10<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">US18650VTC6<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 3.0Ah, 20A/30A =\r\nDisch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$3.65 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">4-6 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within 3-6 =\r\nmonths<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Fresh<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">US18650VTC6<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 3.0Ah, 20A/30A =\r\nDisch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$3.2 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">4-6 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within 6 =\r\nmonths<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">US21700VTC6A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V 4100mAh 40A =\r\ndischarge<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$5.2 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">4-6 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">30% deposit is =\r\nneeded<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">US21700VTC6A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V 4100mAh 40A =\r\ndischarge<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$4.45 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">4-6 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within 6 =\r\nmonths<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">30% deposit is =\r\nneeded<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"\"><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"font-size:10.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\"><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" style=3D\"width:190.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"font-size:10.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\"><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" style=3D\"width:82.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"font-size:10.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\"><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" style=3D\"width:65.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"font-size:10.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\"><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"font-size:10.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\"><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" style=3D\"width:66.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"font-size:10.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\"><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:78.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"font-size:10.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\"><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" style=3D\"width:163.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"font-size:10.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\"><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" style=3D\"width:190.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" style=3D\"width:82.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" style=3D\"width:65.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" style=3D\"width:66.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:78.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" style=3D\"width:163.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\"><b><span style=3D\"\">5. Molicel\r\n<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:30.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" style=3D\"width:190.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" style=3D\"width:82.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Available =\r\nQuantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" style=3D\"width:65.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" style=3D\"width:66.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:78.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" style=3D\"width:163.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">INR18650-P26A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 2600mAh, Wide Temp, High =\r\nrate<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">MOQ 20Kpcs (1 =\r\npallet)<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">INR18650-P28A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 2.8Ah, Widetemp. =\r\nHighrate<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$3.55 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">INR18650-P30B<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 3.0Ah, Widetemp. 30A =\r\nDisch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$5.1 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Cylindrical</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">INR18650-M35A</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">3.6V, 3.5Ah, Widetemp. =\r\nHighrate</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">$3.55\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">within 6 months</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">&nbsp;</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">INR18650-M35A<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 3.5Ah, Widetemp. =\r\nHighrate<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">MOQ 16Kpcs<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$3.40 <u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA HK<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">INR21700-P42A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 4.2Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$3.70 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3-5 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within 6 =\r\nmonths<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">INR21700-P45B<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V 4500mAh<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$4.2 <u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within 6 months<u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">INR21700-P50B<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V 5000mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Few<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$6.25 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">within 6 =\r\nmonths<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\"><b><span style=3D\"\">6. =\r\nBYD<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:30.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" style=3D\"width:190.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" style=3D\"width:82.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" style=3D\"width:65.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Unit =\r\nPrice<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Price =\r\nTerm<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" style=3D\"width:66.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:78.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cell =\r\nLot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" style=3D\"width:163.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Cylindrical</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">FC46120P</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">3.2V, 24.50Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">$14.5\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">1-2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">MOQ 10pcs</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" style=3D\"width:190.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" style=3D\"width:82.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" style=3D\"width:65.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" style=3D\"width:77.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"></td>\r\n<td width=3D\"88\" nowrap=3D\"\" style=3D\"width:66.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:78.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" style=3D\"width:163.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" style=3D\"width:190.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" style=3D\"width:82.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" style=3D\"width:66.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:78.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" style=3D\"width:163.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"309\" nowrap=3D\"\" colspan=3D\"2\" =\r\nstyle=3D\"width:232.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\"><b><span style=3D\"\">7. LithiumWerk =\r\n(A123)<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:30.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" style=3D\"width:190.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" style=3D\"width:82.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" style=3D\"width:65.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Unit =\r\nPrice<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Price =\r\nTerm<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" style=3D\"width:66.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:78.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cell =\r\nLot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" style=3D\"width:163.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">ANR26650M1B<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.3V 2.5Ah High =\r\nRate<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$8.5 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">4-6 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2025-01<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">ANR26650M1B<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.3V 2.5Ah High =\r\nRate<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$7 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">4-6 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2025-04<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">MOQ 6,600pcs (1 =\r\npallet)<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" style=3D\"width:82.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" style=3D\"width:66.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:78.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" style=3D\"width:190.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" style=3D\"width:82.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" style=3D\"width:66.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:78.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" style=3D\"width:163.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"309\" nowrap=3D\"\" colspan=3D\"2\" valign=3D\"bottom\" =\r\nstyle=3D\"width:232.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\"><b><span style=3D\"\">8. SK On (Previously, SK =\r\nInnovation)<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:30.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" style=3D\"width:190.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" style=3D\"width:82.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" style=3D\"width:65.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Unit =\r\nPrice<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Price =\r\nTerm<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" style=3D\"width:66.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:78.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cell =\r\nLot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" style=3D\"width:163.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Pouch</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">E400</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Li-ion, 3.6V, 40Ah, =\r\n9.5x97x320mm</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">$30.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">within 2022</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">A- grade</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Pouch</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">E450</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Li-ion, 3.6V, 45Ah, =\r\n10x175x190mm</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">$31.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">within 2022</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">A- grade</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Pouch</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">E500</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Li-ion, 3.6V, 50Ah, =\r\n11.5x98x300mm</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">$35.10\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">N/A</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">A- grade, OEM by EVE</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Pouch</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">E556</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Li-ion, 3.6V, 55.60Ah, =\r\n10x100x354mm</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">$30.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">N/A</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">A- grade</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Pouch</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">E600B</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Li-ion, 3.6V, 60Ah, =\r\n14.5x100x300mm</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">4,555</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">$35.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">N/A</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">A- grade</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Pouch</span><u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">E603</span><u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Li-ion, 3.66V, 60.3Ah, 9.5x354x101mm</span><u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">mass quantity</span><u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">$30.00\r\n</span><u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">FCA Shenzhen</span><u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">1 week</span><u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">N/A</span><u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Uncycled, for EV</span><u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Pouch</span><u></u><u></u></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">E805</span><u></u><u></u></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Li-ion, 3.6V, 60Ah, 14.5x100x300mm</span><u></u><u></u></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Few</span><u></u><u></u></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">$36.00\r\n</span><u></u><u></u></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">FCA Shenzhen</span><u></u><u></u></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">1 week</span><u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">N/A</span><u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">disassembled, un-cycled</span><u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Pouch</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">E120</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Li-ion, 3.7V, 120Ah, =\r\n14.5x98x530mm</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">$38.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">N/A</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#d9e1f2;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">A- grade</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" style=3D\"width:190.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" style=3D\"width:82.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" style=3D\"width:66.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:78.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"309\" nowrap=3D\"\" colspan=3D\"2\" valign=3D\"bottom\" =\r\nstyle=3D\"width:232.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\"><b><span style=3D\"\">9. Far East =\r\n(FEB)<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:30.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" style=3D\"width:190.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" style=3D\"width:82.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" style=3D\"width:65.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Unit =\r\nPrice<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Price =\r\nTerm<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" style=3D\"width:66.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:78.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cell =\r\nLot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" style=3D\"width:163.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">18650-2600<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 2600mAh, Max =\r\n1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$<span lang=3D\"EN-US\">1.12</span><span =\r\nlang=3D\"EN-US\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2-3 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">18650-2900<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 2900mAh, Max =\r\n1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">EOL<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">For E-bike<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">18650-3300<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 3300mAh, Max =\r\n1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.58 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">For Medical =\r\nEquipment<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">18650-3800<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 3800mAh, Max =\r\n1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.12 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">For Lighting =\r\nEquipment<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">18650-4000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 4000mAh, Max =\r\n1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.70 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">For Lighting =\r\nEquipment<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">21700-4000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 4000mAh, Max =\r\n1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.58 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">For E-bike<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">21700-4500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 4500mAh, Max =\r\n1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.63 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">For UPS power<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">21700-5000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 5000mAh, Max =\r\n1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.08 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">For Smart =\r\nSpeaker<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">21700-5500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 5500mAh, Max =\r\n1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.65 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">For Smart =\r\nSpeaker<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">21700-6000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 6000mAh, Max =\r\n0.7C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$4.00<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">For Lighting Equipment / =\r\nSample<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" style=3D\"width:190.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" style=3D\"width:82.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" style=3D\"width:65.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" style=3D\"width:77.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"></td>\r\n<td width=3D\"88\" nowrap=3D\"\" style=3D\"width:66.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:78.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" style=3D\"width:163.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" style=3D\"width:190.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" style=3D\"width:82.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" style=3D\"width:65.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" style=3D\"width:77.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"></td>\r\n<td width=3D\"88\" nowrap=3D\"\" style=3D\"width:66.0pt;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:78.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" style=3D\"width:163.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\"><span>10. DMEGC <u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:30.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" style=3D\"width:190.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" style=3D\"width:82.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Available =\r\nQuantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" style=3D\"width:65.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" style=3D\"width:66.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:78.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" style=3D\"width:163.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>INR18650-20P<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>2.0Ah, CC 20A, Pulse =\r\n30A<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>$1.30\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>INR18650-25P<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>2.5Ah, CC 20A, Pulse =\r\n30A<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>$1.4\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>INR18650-30P<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>3.0Ah, CC 10A, Pulse 20A, with 80C =\r\ncut<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>$1.90\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>INR18650-26E<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>2.6Ah, CC 3C, Pulse =\r\n5C<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>$1.12\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>INR18650-26E2<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>2.6Ah, CC 3C, Pulse 5C, 7S =\r\nmax<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>$1.1\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>INR18650-29E<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>2.9Ah, CC 2C, Pulse =\r\n4C<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>$1.4\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>INR18650-32E<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>3.2Ah, CC 10A, Pulse =\r\n5C<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>$1.68\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>INR18650-35E<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>3.5Ah, CC 10A, Pulse =\r\n5C<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>INR21700-45E<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>4.5Ah, CC 1Cm Pulse =\r\n3C<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>$1.55\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>INR21700-50E<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>5.0Ah, CC 3C, Pulse =\r\n4C<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>$1.95\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>INR21700-40P<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>4.0Ah, CC 6A, Max DC =\r\n45A<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>$2.70\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>New Supply<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">INR21700-40M (Orange =\r\ntube)<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">4.0Ah, CC 20A, Max =\r\n45A,<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass =\r\nquantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA =\r\nShenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">INR21700-40M (Yellow =\r\ntube)<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">4.0Ah, CC 15A, Max =\r\n18A,<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass =\r\nquantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA =\r\nShenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\"><b><span style=3D\"\">11. =\r\nEVE<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:30.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" style=3D\"width:190.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" style=3D\"width:82.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" style=3D\"width:65.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Unit =\r\nPrice<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Price =\r\nTerm<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" style=3D\"width:66.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:78.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cell =\r\nLot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" style=3D\"width:163.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">INR18650/26V<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.60V 2.55Ah =\r\n7.65A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.16 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cylindrical</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">INR18650/33V</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">3.60V 3.20Ah =\r\n10A</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass quantity</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">$1.55\r\n</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA Shenzhen</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Stock</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">New Lot</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">&nbsp;</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cylindrical</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">INR18650/35V</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">3.65V 3.50Ah =\r\n10.20A</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass quantity</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">$1.75\r\n</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA Shenzhen</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Stock</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">New Lot</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">&nbsp;</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cylindrical</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">INR18650/20P</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">3.60V 2.00Ah =\r\n30A</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass quantity</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">$</span>1.26<span style=3D\"\">=\r\n\r\n</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA Shenzhen</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">&nbsp;</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cylindrical</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">INR18650/25P</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">3.60V 2.50Ah =\r\n30A</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass quantity</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">$1.56\r\n</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA Shenzhen</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Stock</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">New Lot</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">&nbsp;</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cylindrical</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">INR21700-40P</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">3.60V 4.00Ah =\r\n50A</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass quantity</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">$1.90\r\n</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA Shenzhen</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">1 week</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">New Lot</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">&nbsp;</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cylindrical</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">INR21700-40PL</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">3.60V 4.00Ah =\r\nTabless</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Trail lot</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">$4.40\r\n</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA Shenzhen</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">1 week</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">New Lot</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">&nbsp;</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cylindrical</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">INR21700-50E</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">3.65V 5.00Ah =\r\n15A</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass quantity</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">$1.9\r\n</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA Shenzhen</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">&nbsp;</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cylindrical</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">INR4695E</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">3.69V 31.90Ah =\r\n4C</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass quantity</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">$50.00\r\n</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA Shenzhen</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">&nbsp;</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cylindrical</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">INR4695P</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">3.69V 29Ah</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Few</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">$50.00\r\n</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA Shenzhen</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">without QR code =\r\n(TBI)</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\"><b><span style=3D\"\">12. =\r\nBAK<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:30.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" style=3D\"width:190.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" style=3D\"width:82.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" style=3D\"width:65.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Unit =\r\nPrice<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Price =\r\nTerm<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" style=3D\"width:66.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:78.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cell =\r\nLot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" style=3D\"width:163.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" rowspan=3D\"10\" =\r\nstyle=3D\"width:71.0pt;border:solid windowtext =\r\n1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Middle Rate<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">N18650CH<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2.60Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.03<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"\">&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">N18650CP<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.35Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.79<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"\">&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">N18650CP-34E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.40Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.72<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"\">&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">N18650CR-35E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.50Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.81<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"\">&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">N21700CG-50<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">5.00Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.2<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Within 3 =\r\nmonths<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"\">&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">N21700CG-50E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">5.00Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.30<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"\">&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">N21700CD-53E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">5.30Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.53<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"\">&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">N21700CK-55E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">5.50Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Trial Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$3.21<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"\">&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">N21700CH-58E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">5.80Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Trial Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$3.37<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"\">&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">N18650CH<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2.60Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"\">&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" rowspan=3D\"3\" =\r\nstyle=3D\"width:71.0pt;border:solid windowtext =\r\n1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">High Rate<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">N18650COP<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">2.50Ah 30A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.64<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"\">&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">N18650CQP<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.00Ah 15A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.92<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"\">&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">N21700CGP<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">4.00Ah 35A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$2.40<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"\">&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" rowspan=3D\"2\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Low\r\n<br>\r\nTemperature<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">N18650CP Low =\r\nTemperature<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.35Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.87<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"\">&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">N18650CR-35T Low =\r\nTemperature<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.50Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.95<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"\">&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Tabless<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">21700-40D<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">4.00Ah 100A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$3.30<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"\">&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Cylindrical</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">INR4695-330B</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">3.6V, 33Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Sample</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">$50.00</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\"><span =\r\nstyle=3D\"\">&nbsp;</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Cylindrical</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">INR4690-310B</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">3.6V, 31Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Sample</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">$50.00</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\"><span =\r\nstyle=3D\"\">&nbsp;</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" style=3D\"width:190.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\"><b><span style=3D\"\">13. =\r\nCBAK<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:30.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" style=3D\"width:190.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" style=3D\"width:82.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" style=3D\"width:65.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Unit =\r\nPrice<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Price =\r\nTerm<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" style=3D\"width:66.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:78.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cell =\r\nLot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" style=3D\"width:163.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" rowspan=3D\"9\" =\r\nstyle=3D\"width:71.0pt;border-top:none;border-left:solid windowtext =\r\n1.0pt;border-bottom:solid black 1.0pt;border-right:solid windowtext =\r\n1.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" =\r\nalign=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">LFP<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">26650FS2A<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">3.2V 3.40Ah 3C for EV / =\r\nESS<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass =\r\nquantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA =\r\nShenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">New =\r\nLot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"\">&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">26650FS3<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">3.2V 3.60Ah 3C for EV / =\r\nESS<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass =\r\nquantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA =\r\nShenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">New =\r\nLot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"\">&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">26650FS3A<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">3.2V 3.80Ah 3C for EV / =\r\nESS<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass =\r\nquantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA =\r\nShenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">New =\r\nLot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"\">&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">26650FS4<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">3.2V 4.00Ah 3C for EV / =\r\nESS<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass =\r\nquantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA =\r\nShenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">New =\r\nLot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"\">&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">26650FS4B<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">3.2V 4.00Ah 3C for Light =\r\nVehicle<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass =\r\nquantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA =\r\nShenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">New =\r\nLot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"\">&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">26700FB<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">3.2V 4.00Ah 3C for Light =\r\nVehicle<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass =\r\nquantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA =\r\nShenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">New =\r\nLot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"\">&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">26700FB2<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">3.2V 4.50Ah 3C for Light =\r\nVehicle<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass =\r\nquantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA =\r\nShenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">New =\r\nLot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"\">&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">26700FE<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">3.2V 4.50Ah 3C for EV / =\r\nESS<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass =\r\nquantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA =\r\nShenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">New =\r\nLot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"\">&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>32140FS<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>3.2V 15Ah\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>$5.70<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>1-2 weeks<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\"><span>&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:30.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0in 5.4pt =\r\n0in 5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">32140NS</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">3.0V, 10Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Sample</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">$10.00</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">1-2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Only Spec sheet is available<br>\r\n(No UN 38.3 &amp; MSDS)</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\"><b><span style=3D\"\">14. =\r\nCALB<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:30.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" style=3D\"width:190.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" style=3D\"width:82.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" style=3D\"width:65.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Unit =\r\nPrice<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Price =\r\nTerm<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" style=3D\"width:66.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:78.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cell =\r\nLot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" style=3D\"width:163.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Cylindrical</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">4695</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">3.7V, 30Ah, NMC</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">MOQ 10pcs</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">$50.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">1-2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Sample, No spec sheet =\r\nyet</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:71.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\"><b><span style=3D\"\">15. =\r\nHighstar<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:161.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:190.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:82.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:65.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:66.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:78.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.0pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:30.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" style=3D\"width:161.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" style=3D\"width:190.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" style=3D\"width:82.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" style=3D\"width:65.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Unit =\r\nPrice<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Price =\r\nTerm<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" style=3D\"width:66.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:78.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:30.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cell =\r\nLot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" style=3D\"width:163.0pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:30.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">NaCR33140-10ER</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">3.05V, 10Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">&nbsp;</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">NaCR46145-20ER</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">3.05V, 20Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">MOQ 50pcs</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">$40.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">&nbsp;</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">NaCP50160118-70E3</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Prismatic, 3.05V, 70Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">&nbsp;</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">NaCP50160118-70H3</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Prismatic, 3.0V, 70Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">&nbsp;</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">NaCP50160118-80E3</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Prismatic, 3.05V, 80Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Sample</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">&nbsp;</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">NaCP40130208-80E3</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Prismatic, 3.05V, 80Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Sample</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">&nbsp;</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">NaCP50160153-103E3</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Prismatic, 3.0V, 103Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">Sample</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext =\r\n1.0pt;background:#c6e0b4;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" style=3D\"text-align:center\"><span =\r\nstyle=3D\"\">&nbsp;</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Tabless<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>INR21700-40PS<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>3.6V, 3950mAh<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>MOQ 50pcs<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>$6.65\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>2 weeks<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:15.0pt\">\r\n<td width=3D\"95\" nowrap=3D\"\" style=3D\"width:71.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Tabless<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"215\" nowrap=3D\"\" =\r\nstyle=3D\"width:161.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">INR21700-50PS<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"253\" nowrap=3D\"\" =\r\nstyle=3D\"width:190.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.6V, 4900mAh, Low =\r\nImpedance<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"109\" nowrap=3D\"\" =\r\nstyle=3D\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">130pcs<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"87\" nowrap=3D\"\" =\r\nstyle=3D\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$4.50 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"103\" =\r\nstyle=3D\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"88\" nowrap=3D\"\" =\r\nstyle=3D\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:15.0pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table><p class=3D\"MsoNormal\"><b><span =\r\nstyle=3D\"\"><u></u><u></u></span></b></p>\r\n</td>\r\n<td width=3D\"15\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:11.2pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"41\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:30.8pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"33\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:25.05pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"33\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:25.05pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"34\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:25.35pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"34\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:25.35pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=3D\"59\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:44.3pt;padding:0in 5.4pt 0in 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"font-family:SimSun\"><u></u>&nbsp;<u></u></span></p>\r\n<table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" width=3D\"1276\" =\r\nstyle=3D\"width:956.85pt;border-collapse:collapse\">\r\n<tbody>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\"><p =\r\nclass=3D\"MsoNormal\"><b><span>16. Lishen<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:164.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:184.25pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:85.05pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:63.8pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.95pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:63.8pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.95pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.05pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" style=3D\"width:164.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" style=3D\"width:184.25pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" style=3D\"width:85.05pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Available =\r\nQuantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" style=3D\"width:63.8pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:77.95pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" style=3D\"width:63.8pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:77.95pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" style=3D\"width:163.05pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cylindrical</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">18650LA</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">2Ah, 10C</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass quantity</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">$</span>1.15<span style=3D\"\">=\r\n\r\n</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA Shenzhen</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">1-2 weeks</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">New Lot</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">&nbsp;</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cylindrical</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">18650LD</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">2.5Ah, 10C</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass quantity</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">$1.50\r\n</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA Shenzhen</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">1-2 weeks</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">New Lot</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">&nbsp;</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cylindrical</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">18650LE</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">3Ah, 10C</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass quantity</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">$</span>2.15<span style=3D\"\">=\r\n\r\n</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA Shenzhen</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">1-2 weeks</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">New Lot</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">&nbsp;</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cylindrical</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">18650SK</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">2.6Ah, 3C</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass quantity</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">$</span>1.1<span style=3D\"\">\r\n</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA Shenzhen</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">1-2 weeks</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">New Lot</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">&nbsp;</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cylindrical</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">18650SS</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">3Ah, 3C</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass quantity</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">$1.48\r\n</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA Shenzhen</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">1-2 weeks</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">New Lot</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">&nbsp;</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cylindrical</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">18650HB</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">3.35Ah, 3C</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass quantity</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">$1.63\r\n</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA Shenzhen</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">1-2 weeks</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">New Lot</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">&nbsp;</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cylindrical</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">18650HC</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">3.5Ah, 3C</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass quantity</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">$1.92\r\n</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA Shenzhen</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">1-2 weeks</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">New Lot</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">&nbsp;</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cylindrical</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">21700LA</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">4Ah, 10C</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass quantity</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">$1.93\r\n</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA Shenzhen</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">1-2 weeks</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">New Lot</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">&nbsp;</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cylindrical</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">21700SA</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">4Ah, 3C</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass quantity</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">$1.80\r\n</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA Shenzhen</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">1-2 weeks</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">New Lot</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">&nbsp;</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cylindrical</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">21700SD</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">5Ah, 3C</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass quantity</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">$</span>2.19<span style=3D\"\">=\r\n\r\n</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA Shenzhen</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">1-2 weeks</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">New Lot</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">&nbsp;</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">Cylindrical</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">21700SZ</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">5Ah, 3C</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">mass quantity</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">$</span>2.2<span style=3D\"\">\r\n</span><span style=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">FCA Shenzhen</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">1-2 weeks</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">New Lot</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"\">&nbsp;</span><span =\r\nstyle=3D\"\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"font-family:SimSun\"><u></u>&nbsp;<u></u></span></p><p =\r\nclass=3D\"MsoNormal\"><span =\r\nstyle=3D\"font-family:SimSun\"><u></u>&nbsp;<u></u></span></p><p =\r\nclass=3D\"MsoNormal\"><span =\r\nstyle=3D\"font-family:SimSun\"><u></u>&nbsp;<u></u></span></p>\r\n<table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" width=3D\"1276\" =\r\nstyle=3D\"width:956.85pt;border-collapse:collapse\">\r\n<tbody>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\"><p =\r\nclass=3D\"MsoNormal\"><b><span>17. Sunpower<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:164.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:184.25pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:85.05pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:63.8pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.95pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:63.8pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.95pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.05pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" style=3D\"width:164.0pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" style=3D\"width:184.25pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" style=3D\"width:85.05pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Available =\r\nQuantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" style=3D\"width:63.8pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:77.95pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" style=3D\"width:63.8pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" style=3D\"width:77.95pt;border:solid =\r\nwindowtext 1.0pt;border-left:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" style=3D\"width:163.05pt;border:solid windowtext =\r\n1.0pt;border-left:none;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\"><p =\r\nclass=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">INR18650-1300<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">13P (15C) 20A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">INR18650-1500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">15H (13C) 20A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">INR18650-2000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">20P (10C) 20A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">INR18650-2000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">20T (15C) 30A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">INR18650-2200<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">22R (9C) 20A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">INR18650-2500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">25R (10C) 25A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">INR18650-2500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">25T (12C) 30A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">INR18650-2500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">25L (8C) 20A Low Temperature =\r\ntype<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">INR18650-2600<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">26P (5C) 13A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$1.34<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">INR18650-3000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">30P (10C) 30A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">INR18650-3000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">30S (13C) 40A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>&nbsp;<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">INR21700-3000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">30L (3C) 10A Low Teperature =\r\ntype<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">INR21700-4000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">40S (10C) 40A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">INR21700-4000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">40L (10C) 40A Low Temperature =\r\ntype<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">INR21700-5000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">50E (3C) 15A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">INR21700-5000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">50SE (6C) 30A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">LFP26700-4300<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">43E (3C) =\r\n12.9A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">LFP26700-4500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">45E (3C) =\r\n13.5A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\"><p =\r\nclass=3D\"MsoNormal\"><span><u></u>&nbsp;<u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:164.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:184.25pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:85.05pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:63.8pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.95pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:63.8pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.95pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.05pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:164.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:184.25pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:85.05pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:63.8pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.95pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:63.8pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.95pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.05pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.0pt;border:none;border-bottom:solid windowtext =\r\n1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\"><p =\r\nclass=3D\"MsoNormal\"><b><span>18. Maxell<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:164.0pt;border:none;border-bottom:solid windowtext =\r\n1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:184.25pt;border:none;border-bottom:solid windowtext =\r\n1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:85.05pt;border:none;border-bottom:solid windowtext =\r\n1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:63.8pt;border:none;border-bottom:solid windowtext =\r\n1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.95pt;border:none;border-bottom:solid windowtext =\r\n1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:63.8pt;border:none;border-bottom:solid windowtext =\r\n1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:77.95pt;border:none;border-bottom:solid windowtext =\r\n1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" valign=3D\"bottom\" =\r\nstyle=3D\"width:163.05pt;border:none;border-bottom:solid windowtext =\r\n1.0pt;padding:0in 5.4pt 0in 5.4pt;height:14.25pt\">\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Available =\r\nQuantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">ICP653865SRU<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">3.7V, 1800mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">48,760<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">B0711<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">ICP653450AHR<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1360mAh 3.85V (4.35V =\r\ncharge)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">$4 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">I2101<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\">&nbsp;<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=3D\"height:14.25pt\">\r\n<td width=3D\"103\" nowrap=3D\"\" style=3D\"width:77.0pt;border:solid =\r\nwindowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in =\r\n5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"color:red\">Prismatic</span><u></u><u></u></p>\r\n</td>\r\n<td width=3D\"219\" nowrap=3D\"\" =\r\nstyle=3D\"width:164.0pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"color:red\">ICP103450AHR</span><u></u><u></u></p>\r\n</td>\r\n<td width=3D\"246\" nowrap=3D\"\" =\r\nstyle=3D\"width:184.25pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"color:red\">2160mAh 3.8V =\r\n(4.35V charge)</span><u></u><u></u></p>\r\n</td>\r\n<td width=3D\"113\" nowrap=3D\"\" =\r\nstyle=3D\"width:85.05pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"color:red\">49,400</span><u></u><u></u></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"color:red\">TBI</span><u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"color:red\">FCA =\r\nHK</span><u></u><u></u></p>\r\n</td>\r\n<td width=3D\"85\" nowrap=3D\"\" =\r\nstyle=3D\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid=\r\n windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"color:red\">1 =\r\nweek</span><u></u><u></u></p>\r\n</td>\r\n<td width=3D\"104\" nowrap=3D\"\" =\r\nstyle=3D\"width:77.95pt;border-top:none;border-left:none;border-bottom:soli=\r\nd windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt =\r\n0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span style=3D\"color:red\">within =\r\n2020</span><u></u><u></u></p>\r\n</td>\r\n<td width=3D\"217\" nowrap=3D\"\" =\r\nstyle=3D\"width:163.05pt;border-top:none;border-left:none;border-bottom:sol=\r\nid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in =\r\n5.4pt 0in 5.4pt;height:14.25pt\"><p class=3D\"MsoNormal\" align=3D\"center\" =\r\nstyle=3D\"text-align:center\"><span =\r\nstyle=3D\"color:red\">&nbsp;</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table><p class=3D\"MsoNormal\"><span =\r\nstyle=3D\"font-family:SimSun\"><u></u>&nbsp;<u></u></span></p><p =\r\nclass=3D\"MsoNormal\"><span =\r\nstyle=3D\"font-family:SimSun\"><u></u>&nbsp;<u></u></span></p><p =\r\nclass=3D\"MsoNormal\"><span lang=3D\"EN-US\" style=3D\"font-family:SimSun\">Warm=\r\n regards</span><span lang=3D\"EN-US\"><u></u><u></u></span></p><p =\r\nclass=3D\"MsoNormal\"><span lang=3D\"EN-US\" =\r\nstyle=3D\"font-size:12.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\"><u></u>&nbsp;<u></u></span></p><p =\r\nclass=3D\"MsoNormal\"><span lang=3D\"EN-US\" =\r\nstyle=3D\"font-size:12.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\">Shmuel De-Leon/CEO</span><span lang=3D\"EN-US\" =\r\nstyle=3D\"font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></=\r\np><p class=3D\"MsoNormal\"><span lang=3D\"EN-US\" =\r\nstyle=3D\"font-size:12.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\">Shmuel De-Leon Energy, Ltd.</span><span lang=3D\"EN-US\" =\r\nstyle=3D\"font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></=\r\np><p class=3D\"MsoNormal\"><span lang=3D\"EN-US\" =\r\nstyle=3D\"font-size:12.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\">Mazal Arie 10, Hod-Hasharon, Israel =\r\n4536045</span><span lang=3D\"EN-US\"><u></u><u></u></span></p><p =\r\nclass=3D\"MsoNormal\"><span lang=3D\"EN-US\" =\r\nstyle=3D\"font-size:12.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\">Tel/Fax: 972-77-5010792</span><span lang=3D\"EN-US\" =\r\nstyle=3D\"font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></=\r\np><p class=3D\"MsoNormal\"><span lang=3D\"EN-US\" =\r\nstyle=3D\"font-size:12.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\">Mobile: 972-52-8601517</span><span lang=3D\"EN-US\" =\r\nstyle=3D\"font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></=\r\np><p class=3D\"MsoNormal\"><span lang=3D\"DE\" =\r\nstyle=3D\"font-size:12.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\">E-Mail:\r\n</span><a href=3D\"mailto:shmueld33@gmail.com\" target=3D\"_blank\"><span =\r\nlang=3D\"DE\" style=3D\"font-size:12.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif;color:blue\">shmuel@sdle.co.il</span></a><span =\r\nlang=3D\"DE\" =\r\nstyle=3D\"font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></=\r\np><p class=3D\"MsoNormal\"><span lang=3D\"EN-US\" =\r\nstyle=3D\"font-size:12.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\">Company web site:\r\n</span><a href=3D\"http://www.sdle.co.il/\" target=3D\"_blank\"><span =\r\nlang=3D\"EN-US\" style=3D\"font-size:12.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif;color:blue\">www.sdle.co.il</span></a><span =\r\nlang=3D\"EN-US\"><u></u><u></u></span></p><p class=3D\"MsoNormal\"><span =\r\nlang=3D\"EN-US\" style=3D\"font-size:12.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\">Battery DataBase web site:\r\n</span><a href=3D\"http://www.batteriesdatabase.com/\" =\r\ntarget=3D\"_blank\"><span lang=3D\"EN-US\" =\r\nstyle=3D\"font-size:12.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif;color:blue\">www.batteriesdatabase.com</span></a><span =\r\nlang=3D\"EN-US\" style=3D\"font-size:12.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\"><u></u><u></u></span></p><p class=3D\"MsoNormal\"><span =\r\nlang=3D\"EN-US\" style=3D\"font-size:12.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif;color:#1f497d\"><span =\r\nid=3D\"cid:image001.jpg@01D756D4.5D0E4230\">&lt;image001.jpg&gt;</span></spa=\r\nn><span lang=3D\"EN-US\"><u></u><u></u></span></p><p =\r\nclass=3D\"MsoNormal\"><span lang=3D\"EN-US\"><u></u>&nbsp;<u></u></span></p><p=\r\n class=3D\"MsoNormal\"><span lang=3D\"EN-US\" =\r\nstyle=3D\"font-size:12.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\">Sign-up to our weekly battery newsletter\r\n</span><a href=3D\"https://www.sdle.co.il/services/newsletter/\" =\r\ntarget=3D\"_blank\"><span lang=3D\"EN-US\" =\r\nstyle=3D\"font-size:12.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif;color:blue\">https://www.sdle.co.il/services/newsletter/<=\r\n/span></a><span style=3D\"font-size:12.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\">\r\n</span><span lang=3D\"EN-US\" =\r\nstyle=3D\"font-size:12.0pt;font-family:&quot;Times New =\r\nRoman&quot;,serif\"><u></u><u></u></span></p><p class=3D\"MsoNormal\"><span =\r\nlang=3D\"EN-US\"><u></u>&nbsp;<u></u></span></p>\r\n</div>\r\n</div>\r\n\r\n</div></div>\r\n<span id=3D\"cid:19a6e9d3cda61e1f7a43\">&lt;Shmuel de-leon Energy company =\r\ncells purchasing services presentation ver 1.pdf&gt;</span><span =\r\nid=3D\"cid:19a6e9d3cda7cc5f7cc4\">&lt;EOL Annoucement of BD &nbsp;BF =\r\n&nbsp;GA &nbsp;NCR18500A ( =\r\n20251007).pdf&gt;</span></div></blockquote></div><br><div>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; orphans: auto; text-align: start; text-indent: 0px; =\r\ntext-transform: none; white-space: normal; widows: auto; word-spacing: =\r\n0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><font size=3D\"2\">Best =\r\nregards,</font></div><div style=3D\"font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><font =\r\nsize=3D\"2\"><br></font></div><div style=3D\"font-family: Helvetica; =\r\nfont-size: 12px; font-style: normal; font-variant-caps: normal; =\r\nfont-weight: 400; letter-spacing: normal; orphans: auto; text-align: =\r\nstart; text-indent: 0px; text-transform: none; white-space: normal; =\r\nwidows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\" style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><b>Brian C. =\r\nStufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 =\r\nDirect</b></div><div style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><span style=3D\"font-size: =\r\n11px;\">(866)896-2423 Fax</span></div></div><span style=3D\"caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0); font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"></span><br class=3D\"Apple-interchange-newline\"><span><img =\r\nalt=3D\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" =\r\nsrc=3D\"cid:CB596987-D3CC-4C61-B9D3-CE1C1DF1C723\"></span><meta =\r\ncharset=3D\"UTF-8\"><div style=3D\"font-family: Helvetica; font-size: 12px; =\r\nfont-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br =\r\nclass=3D\"Apple-interchange-newline\"><br =\r\nclass=3D\"Apple-interchange-newline\"><a =\r\nhref=3D\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a =\r\nhref=3D\"https://mavrix1.com\">https://mavrix1.com/</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY =\r\nNOTICE:</b><span style=3D\"font-family: Helvetica; font-style: normal; =\r\nfont-weight: 400; font-size: =\r\n12px;\">&nbsp;This&nbsp;communication&nbsp;is =\r\nconfidential&nbsp;and&nbsp;intended only for the =\r\nintended&nbsp;recipient.&nbsp;&nbsp;If you are not the =\r\nintended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, =\r\nor&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any =\r\nsuch&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this =\r\ncommunication&nbsp;in error,&nbsp;please contact the sender =\r\nof&nbsp;the&nbsp;message to inform him or her of =\r\nthe&nbsp;error.<br><br></span></div>\r\n</div>\r\n<br></div></body></html>=\r\n\r\n--Apple-Mail=_9CBCD862-D151-4F98-9C5C-A4AF3E5E3B12\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\r\nContent-Type: image/png;\r\n	name=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\"\r\nContent-Id: <CB596987-D3CC-4C61-B9D3-CE1C1DF1C723>\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGwAAAAYCAYAAAAf1RgaAAAAAXNSR0IArs4c6QAAAIRlWElmTU0A\r\nKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdp\r\nAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAGyg\r\nAwAEAAAAAQAAABgAAAAABrPxEgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5h\r\nZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9\r\nIlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9y\r\nZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6\r\nYWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZm\r\nLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgog\r\nICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAA\r\nC6FJREFUaAXtWnuMVUcZnznPe/fuZYEtDxHCQ1ADBNuuAlKh24dRaqURWFotj5haKAn9SxOaauRi\r\nxEBsMMFSAmnUCDTKWtDioyEm3RLKq6VKC7Rg20VA5Lmwz3vPa8bfN+ecu+fevbugjQQrX5g735n5\r\nvm++13wz5yyc3YKb0gP19a8YTU33+NNmbx0puHjJtGsm+U7beoMxyRsaGrUJE45JxlbclMp/1JXK\r\nsZWM5XLwP6PG6+tzOgVr8tzN0wWTjRq3hojAw6TU+EfdGf9T9uVyGsutQNC4nDpn8zz0m7lmWEwE\r\njm6mbd/r3MCnzNk6DlEbyRFCqfNbAbyBEeaBlJzrkula1mOFQ683fvMcLT917tblGF8dbTgmhe8a\r\nZsbyvY4NhsbEdwy7ZrHntDHOtBuo7q2lGLyvGSnmOe2/fH3S3//EGhGsOZuf03RrKRMC/3wBL30f\r\nW24uxm6XHhcaQuxjgrwXMNpgt9p/3wfYGsrPMmC+07H8wPYFiyYfHj1gypwtr+JysZROMiG80wjO\r\nPftfnL9KpTaxoFQakk4y3WKB13Wc+97DbuB5hm5qXAvoAPzQ4GmG1HxRlCUMjZvC/7dLL7SCnkKK\r\nAPxmN388fr2Klq8fCI2yGGAzYXjXpRvZxBzGknqEcmxUt3xJmeqWH64S/5rwg+dI9+DOhc00pjF3\r\nMJPp51y3bRWXwuaafHNv46J/1H11Z5XGWsPqCDqDosbDo6uwd8fCI7HAW/2N9cD+HY+/gxWpdQMu\r\nIa0HmoNaa2BxDNd6gMp/zsfcv7rm9Gs/+bRuZ1OMBwJnmsA+LO6OIpeUGjZmcZdwbMfinEI4piUK\r\ntPDM9ND32s7sa8G1FTegnMgMnjJEeBfHMcXTLaOUP34iOULXNf1yx+UT76IoyMygzw0N3Avjuaa7\r\nKCtiyqQFB5uaVgT0atKoXk1i3tK+volpTU05Pz1s4gjZ1fEJyBJcZ4UH711zSPFBt+zHJ9f6+Qvj\r\nmNR1kg3HFG0MpflSCs3UrcHHNcNHUWoZj+KlG1rmQkfLsaO3fWpWtv2fb35B0+02KQMzlep/8uq5\r\nv56sq1tsjhlzv4j1m9B41Dh6tNEdO3amffLMnsk8KLiala2pqhn97pWzh07hWm/U168QuRx0mLmu\r\nxBA+dc7Wn1rp/su8QuuBD97a+o1LzX98Q9MzA6T0wjpbQh49oI6WQG+XS6Lj/DwK8lrfdZ8Bj4AV\r\nizG6sYT/Wg9wE0j2aFI+4bruacO2D0HuJ5EUJP9HfqHwXczraGWJUxQczmUyQ0zf3weu0eCjg+Ip\r\n6LWGqEzbfhKlJgeZA9VckbUUURGUcikUOo3K9Hs1K+VO33FmAa+CfRshf36k20UpxJLAdXdgjlip\r\nXFLvs0xmqOH7vwJ+N60npfwAu2em4zgnQjplnBw7c51dWzVwv50acLtbuPpsuMNAEcqhHidhN7wB\r\nSXTVJDroES3G+Z0YHxaRBcD3AO9AI8cQHTUTbQrmhjBNW6Nb1gko/lsodgrjr6Ll0Uh5ar0B3YZG\r\noY2HUTME5z8HPpULMU9q2m7g/SD/aT2VeicoFLbgmfRUNyj0MZB8sonDQVsRlNE0AT2ehz4qWEYq\r\nNQMKr8MgTXWhfw09MlY5WA3SBECAvz90OY5g91MjYbJG5yDLe4XCAiTUYcz9GG0Qgrod8lcgqX6A\r\nZ+VbPN/NfH8L5AxXMhDwwHEWYvIqnimoJK+iX8jAcqAySC4/gkXuBdZeTgDnN3BN2xYZ+Aqy64vl\r\nNPRsWNbTCNYqwqH4WOpB+zI6atcHlIlBcBRrUeaPRGYO8To7D0OHRZBJmYtCKTeZpvm253nkqPKg\r\nkQMC3bbXgf8+ogfshYOWhKjKrlGQQUpiGfkzzD0Zz/XW6+n01xG08mlKUg82PoOgvQV8M2QORr8S\r\nz5/xbftx03EewRrPYpwWozVXgf57kaC+qoQiqRSwkJfzLiC4CykgoynTiN7DWm1qNPyhnUUQ0xBO\r\niruga0mkZ2hdNnub5Ti0O2NrEyTEWgSwcy8IAjJYkjMBSCacawDarUiIp5AQq2F4WmjabzD8WTRc\r\nqYpZqoKnyrCUyyIHnfN1fQ5oaH0Ljc5CfPcJ1cCaxE9Ac7TLyoGcWr6LY5rYJgNB2GXb9jTsmm2Q\r\nfyfabMN178IqQ4DDItmBKrEkyOdfiJhVYsWCeut7D1hoNAlJgrIKP7hdFoEMIAgtLsUpcDEoOtPz\r\nZsO5GyPnxXN995EzYWgyKXQ6fxCMiShT86HPWGTxC3DUVyCMHKey3Uinp+Ec2RAtQCXpYdbZGZd5\r\nVaIwljBHJSWRJ+2h5+sF4qOAGjiP3kdfB722o/8a2iA0gvNwxnQnn/8bcNKT6ONgA+0dygNSThkr\r\nTX2ME00Sj3limuRcEo/p/Cib8V0TWYbDFuXoJFpzecMcjZ0GY28ZzXBmPIZ5OmupvDyA8wGfdBR4\r\ndLCjbP0aT8pO7J4nUOZ341ntvJCsx29SZ8IrtR5MZQOUAEoOJQzwiWo+TDjMyGpE58GIJz4ro8e+\r\nu752WN+c//lsmM1QHsgf4MBHkOYZiIuzPZZMdC520AhE6yBwys6kMykjade6MGKez/l+OILK53Jc\r\nQo7QJQRn34sI4nCMkZPWIrjPAyOeXhOASD8kxFUggB6LkDCboINFCQWDqPxNR0UYAUPW4lydgPPy\r\nWxgj2/tKoqJKlXZY7JS4LxL3glSii8fiPskabn0YgB1Ug4ksy2bTaJkeDYEUQlQVmcFQxENEGVoo\r\nFJrxOA9NzcMxa1CGfocFKLspWLtQKr+t8MqlJyk3iUcs1+xiHvIn2Sex03+I6vAL4BSsADotRcI8\r\nirEv4fkYxhFH/hjodtNFCo+URJXiQaRFSOwwekfFu3J42JKRyfOnyBAhREcrEl1CRjTbfSZQNpcA\r\nruT7kWGd4M2A98tQuJl5nguiUGaSOpWiFzADdIPUWpSpPenIUAM7Fd/h7GWQvR70w0BP70VA5fuB\r\nZT3KHHV/ih1KU91AL/nhpYYYeujcTZjAiKcbYh+QHdVIli3oH4pkXgQ+D8FqQm/iPZK+ZtxF5y3m\r\nZwKfjkrwNkunH/Lz+X14rqwjJgiSi+KLPkqrZl1G1RBcs66OGlUfOTFHkeGsvl4xGUYN6q5Bvixw\r\nzY5ujPRVIGp1ixUd0zMFrnY6PtLpVV00qBS2+kFR689MM7GWkUbrj4bd1qPReAZ0eD8xujgzW6qr\r\nh0bZHOkUrhmwhgbdc5znOE+tZ9x08NZ1Ge2cptfOY+3tl1hdHRKQdmhCz/rQPt2ogqNhC3TV9LTS\r\nk01o6LanEg+vwhpWB3gkfKBefQYMqKsxUtmXODdnQYdW9Ac1c+AMJFMTw9cOrO3DhxTcq9jxDyhd\r\nmQleoxo+32FWDbsDc4JsYbmVyvfD81nVk+8Iwi8dqf7L8Bb9F6+2Y8qhTer1hLKMyk2lay3xEdhh\r\np+h6OxNoMdoVBCQLQS4BmovLSclE2QPJoUa0lMXXglg30qv8bKzEey09r8VDa9Ba5Dc4X31EoApV\r\nQCOIdQ+fSn9TeCRe0pl8VGIf/VeBQu3Zg1aq/x2JLx3kB3yzu5jq9/mGbV3ZVA123nm9s9UjYT3A\r\ntLOyfUBaOb82bxmdrWewS3pCki57JW/i7z6kOCvYvpZyDFEYOvh6nFkUPAxYy7kLcTCK4+VILJd0\r\na710UTdMp8+kSOoZ2ZOsPOXi1XMFnjSNscwgJ2t12GdBBZur29kVnWwtF+J7tvKFP6LGh13WpSu1\r\nIpt6z4TPlX00n65uFV3+KRsfZZEIoQlqh+lGalkQ5Nuw88/hICvmAw7FHobSymQNzga1ICnSGx0O\r\n2CIN0eF8UYWfZJTP0fz1QFIG6RF7IsbL5ZbrFusfr1VJl3iNmKZSn7Sf5mOeSuM0X54BldZNyiFc\r\n0aiDUHwMZTsb+AX6lihxSGIXO6yfZtjh9zGivgU3jQeE7zCKUeDnq3EDYy+7nRfpL4wdgZcv2RE3\r\njcb/74rgq6NAsBCrXf8CAf/+y47p6ecAAAAASUVORK5CYII=\r\n--Apple-Mail=_9CBCD862-D151-4F98-9C5C-A4AF3E5E3B12--','Rick,\r\n\r\nThe attached data is pertinent to what we should be capturing, giving us market price and intelligence in relative real time. \r\n\r\nThanks,\r\n\r\n\r\nBrian\r\n\r\n> On Nov 10, 2025, at 11:33 AM, Nathan Staron <Nathan@lithiumbatterycompany.com> wrote:\r\n> \r\n> \r\n> \r\n> \r\n>  <https://lithiumbatterycompany.com/>\r\n>  <https://www.instagram.com/lithiumbatteryco/>\r\n>  <https://www.linkedin.com/company/the-lithium-battery-company>\r\n>  <https://www.facebook.com/LithiumBatteryCompany/>\r\n>  <https://www.youtube.com/c/LithiumBatteryCompany>	 	\r\n>  <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON	\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074 <tel:813-504-0074>\r\n> Phone 844-GET-LITHIUM <tel:844-GET-LITHIUM>\r\n> Nathan@lithiumbatterycompany.com <mailto:Nathan@lithiumbatterycompany.com>\r\n> Schedule A Zoom\r\n>  <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n> \r\n> \r\n> \r\n> ---------- Forwarded message ---------\r\n> From: shmuel de-leon <shmuel@sdle.co.il <mailto:shmuel@sdle.co.il>>\r\n> Date: Mon, Nov 10, 2025 at 11:20 AM\r\n> Subject: Shmuel De-Leon Energy - Li-Ion Cells (Cylindrical, Pouch, Prismatic) for sale for this week - November 10, 2025\r\n> To:\r\n> \r\n> \r\n>  \r\n> \r\n> <image002.png>\r\n> \r\n>  \r\n> \r\n> ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\r\n> \r\n>  \r\n> \r\n> Attached list of cells we have availible for this week – Contact us for these cells or for other cell models you need and we will check availability – Contact us in case you wish to sell cell stock you have\r\n> \r\n> ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\r\n> \r\n>  \r\n> \r\n> Attached an update on discontiniue Panasonic cells  -Contact us to purchase these cells before it will be to late!!!\r\n>  \r\n> \r\n> New High Energy Density Cells we sell:\r\n> \r\n>  \r\n> \r\n> 21700 cell – production capacity is 2000 cells per day (Vendor start building 500MWh/Year Factory – Production start Q1/26) - cost ~$20-28/pcs ex work China depend on the quantity\r\n> Energy Density: 393 Wh/kg, Capacity: 6Ah at C/5, at room temperature to 3V C.O.V, Weight: 58 Grams, Size: 21.8, 71.8, Nominal voltage: 3.8V,  \r\n> Max constant charge current is 1C to 4.35V, Cycle life: 120 cycles, Max constant discharge current is 5C, Discharge temp -10 to 65 Deg C, \r\n> Charge temp 0 to 35 Deg C \r\n>  \r\n> 18650 cell – production capacity is 2GWh/Year -  cost ~$10/pcs ex work China depend on the quantity\r\n> Energy Density: 326 Wh/kg, Capacity: 4.3Ah at C/5, at room temperature to 3V C.O.V, Weight: 50 Grams, Size: 18.35, 65.5, Nominal voltage: 3.8V,  \r\n> Max constant charge current is 0.2C to 4.25V, Cycle life: 100 cycles, Max constant discharge current is 4C, Discharge temp -10 to 60 Deg C,  \r\n> Charge temp 0 to 45 Deg C\r\n> \r\n>  \r\n> \r\n> Pouch Cells Vendor 1\r\n> We also sell quasi solid lithium metal anode free pouch cells with energy densities of up to 520 Wh/kg, 1200 Wh/l, 8-50Ah capacity, 7C max constant discharge, 10-50 Cycles - Cells are made in 200MWh/Year factory .\r\n> \r\n> Pouch Cells Vendor 2\r\n> We also sell quasi solid lithium metal pouch cells with energy densities of up to 450 Wh/kg, 6-50Ah capacity, 8C max constant discharge, 1200 Cycles - Cells are made in 600MWh/Year factory.\r\n> \r\n> Pouch Cells Vendor 3\r\n> We also sell Semi solid lithium metal anode free pouch cells with energy densities of up to 400-600 Wh/kg, 8-50Ah capacity, 5C max constant discharge, 400Wh/Kg with 800 cycles, 500-600 Wh/kg with 10-15 Cycles - Cells are made in 10MWh/Year prototype production line.\r\n> \r\n>  \r\n> \r\n> We sell battery packs assemble with lithium metal cells with 400-460 Wh/kg.\r\n> \r\n> ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\r\n> \r\n>  \r\n> \r\n> Our Customers/Suppliers new cells with and older date code stocks we have for sale:\r\n> \r\n>  \r\n> \r\n> We have in Germany Panasonic NCR18650-B in special pricing – Contact us for more details\r\n> \r\n>  \r\n> \r\n> Panasonic NCR-18650B\r\n> Price for an order of minimum 50.040 pcs. = 3,42 € (transport costs will be added)\r\n> Price is only valid for an order of minimum 50.040 pcs.\r\n> Production date code of the cells: 34.700 pcs. with November 2024, 15.340 pcs. with March 2025\r\n> Delivery time: available on stock - subject to being unsold!\r\n> \r\n> Molicel INR21700-P42A\r\n> Price for an order of minimum 20.000 pcs.: 3.5 € (transport costs will be added)\r\n> Maximum available quantity: 48.000 pcs.\r\n> Production date code of the cells: March 2025\r\n> \r\n> Molicel INR21700-P45B\r\n> Price for an order of minimum 20.000 pcs.: 3.5 € (transport costs will be added)\r\n> Maximum available quantity: 41.000 pcs.\r\n> Production date code of the cells: December 2024 and January 2025\r\n> \r\n>  \r\n> \r\n> Molicel INR18650-P28A\r\n> Price for an order of minimum 7.000 pcs.: 1.8 € (transport costs will be added)\r\n> Production date code of the cells: 2022 – Location: USA\r\n> \r\n>  \r\n> \r\n> We have in Germany:\r\n> \r\n> Murata US18650VTC6, 25K, cost 3Euro/pcs, Date cost March 2024\r\n> \r\n>  \r\n> \r\n> We have in Germany:\r\n> \r\n> Panasonic 150K NCR18650GA6W (Factory Wuxi China) Date Code 2022 €2.6/pcs.\r\n> \r\n>  \r\n> \r\n> ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------\r\n> \r\n> New cells we have for sale:\r\n> \r\n>  \r\n> \r\n> We start selling Moli Energy 21700 6.5Ah cells.\r\n> \r\n>  \r\n> \r\n> Supplier 1:\r\n> \r\n> Moli cells\r\n> \r\n> P26A – Any Quantity 10K and up – fresh cells – An attractive cost.\r\n> \r\n> P28A – Any Quantity 10K and up – fresh cells - An attractive cost.\r\n> \r\n> P42A – Any Quantity 10K and up – fresh cells - An attractive cost.\r\n> \r\n> M35A – Any Quantity 10K and up – fresh cells - An attractive cost.\r\n> \r\n>  \r\n> \r\n> Samsung SDI\r\n> Type\r\n> \r\n> Model\r\n> \r\n> Specification\r\n> \r\n> Available Quantity\r\n> \r\n> Unit Price\r\n> \r\n> Price Term\r\n> \r\n> Leadtime\r\n> \r\n> Cell Lot\r\n> \r\n> Remark\r\n> \r\n> Cylindrical\r\n> \r\n> 18650-20RM\r\n> \r\n> High Rate, 3.6V, 2.0Ah\r\n> \r\n> mass quantity\r\n> \r\n> $1.55\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> TBI\r\n> \r\n> Made in Malaysia\r\n> \r\n> Cylindrical\r\n> \r\n> 18650-20RM\r\n> \r\n> High Rate, 3.6V, 2.0Ah\r\n> \r\n> mass quantity\r\n> \r\n> $1.57\r\n> \r\n> FCA HK\r\n> \r\n> 1 week\r\n> \r\n> within 6 months\r\n> \r\n> Made in Malaysia, MOQ 1 Pallet\r\n> \r\n> Cylindrical\r\n> \r\n> 18650-25R\r\n> \r\n> High Rate, 3.6V, 2.5Ah\r\n> \r\n> mass quantity\r\n> \r\n> $1.68\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> 2024-08\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 18650-26JM\r\n> \r\n> High Energy, 3.6V, 2.6Ah\r\n> \r\n> TBI\r\n> \r\n> $2.30\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> 2021-08\r\n> \r\n> Made in Malaysia\r\n> \r\n> Cylindrical\r\n> \r\n> 18650-30Q\r\n> \r\n> High rate, 3.6V, 3.0Ah\r\n> \r\n> mass quantity\r\n> \r\n> $2.25\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> 2025-07\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 18650-30Q\r\n> \r\n> High rate, 3.6V, 3.0Ah\r\n> \r\n> mass quantity\r\n> \r\n> $2.15\r\n> \r\n> FCA HK\r\n> \r\n> 1 week\r\n> \r\n> 2024-10\r\n> \r\n> MOQ 1 Pallet\r\n> \r\n> Cylindrical\r\n> \r\n> 18650-35E\r\n> \r\n> Middle rate, 3.6V, 3.5Ah\r\n> \r\n> mass quantity\r\n> \r\n> $1.78\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> within 3 months\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 18650-35E\r\n> \r\n> Middle rate, 3.6V, 3.5Ah\r\n> \r\n> TBI\r\n> \r\n> $1.45\r\n> \r\n> FCA HK\r\n> \r\n> 1 week\r\n> \r\n> 2024-01\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 21700-30T\r\n> \r\n> High Rate, 3.6V, 3.0Ah\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 4 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 21700-40T5\r\n> \r\n> High Rate, 3.6V, 4.0Ah\r\n> \r\n> mass quantity\r\n> \r\n> $2.05\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> within 6 months\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 21700-40T\r\n> \r\n> High Rate, 3.6V, 4.0Ah\r\n> \r\n> mass quantity\r\n> \r\n> $1.90\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> 2024-02\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 21700-48X3\r\n> \r\n> 3.6V, 4.8Ah, 3000cycles,bare\r\n> \r\n> mass quantity\r\n> \r\n> $1.65\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 4 weeks\r\n> \r\n> 2023-12\r\n> \r\n> Bare cells\r\n> \r\n> Cylindrical\r\n> \r\n> 21700-48X2\r\n> \r\n> 3.6V, 4.8Ah, 3000cycles\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 4 weeks\r\n> \r\n> 2022-01\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 21700-50E2\r\n> \r\n> 3.6V, 5.0Ah, 2C(C), 3C(P)\r\n> \r\n> mass quantity\r\n> \r\n> $2.70\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> 2024-01\r\n> \r\n> Made in China\r\n> \r\n> Cylindrical\r\n> \r\n> 21700-50E2\r\n> \r\n> 3.6V, 5.0Ah, 2C(C), 3C(P)\r\n> \r\n> mass quantity\r\n> \r\n> $2.95\r\n> \r\n> FCA Shenzhen\r\n> \r\n> Available in Oct.\r\n> \r\n> within 2025-07\r\n> \r\n> Made in China\r\n> \r\n> Cylindrical\r\n> \r\n> 21700-50GB\r\n> \r\n> 3.6V, 5.0Ah, 1C(C), 2C(P)\r\n> \r\n> mass quantity\r\n> \r\n> $2.15\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> 2025-03\r\n> \r\n> Made in Malaysia, MOQ 1 Pallet\r\n> \r\n> Cylindrical\r\n> \r\n> 21700-50S\r\n> \r\n> 3.6V, 5.0Ah 5C(C), 9C(P)\r\n> \r\n> mass quantity\r\n> \r\n> $2.45\r\n> \r\n> FCA HK\r\n> \r\n> 1 week\r\n> \r\n> within 2025\r\n> \r\n> Made in China\r\n> \r\n> Cylindrical\r\n> \r\n> 21700-50S\r\n> \r\n> 3.6V, 5.0Ah 5C(C), 9C(P)\r\n> \r\n> mass quantity\r\n> \r\n> $2.68\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> within 2025\r\n> \r\n> Made in China\r\n> \r\n> Cylindrical\r\n> \r\n> 21700-53G2\r\n> \r\n> 3.6V, 5.3Ah, 1C(C)\r\n> \r\n> mass quantity\r\n> \r\n> $2.40\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> 2025-03\r\n> \r\n> with tube\r\n> \r\n> Cylindrical\r\n> \r\n> 21700-58E\r\n> \r\n> 3.64V, 5330mAh, 3C max\r\n> \r\n> mass quantity\r\n> \r\n> $4\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> 2024-07\r\n> \r\n>  \r\n> \r\n> 2. LG Energy Solution\r\n> \r\n> Type\r\n> \r\n> Model\r\n> \r\n> Specification\r\n> \r\n> Available Quantity\r\n> \r\n> Unit Price\r\n> \r\n> Price Term\r\n> \r\n> Validity\r\n> \r\n> Cell Lot\r\n> \r\n> Remark\r\n> \r\n> Cylindrical\r\n> \r\n> 18650-F1L\r\n> \r\n> High Energy, 3.6V, 3.35Ah\r\n> \r\n> mass quantity\r\n> \r\n> $3.25\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> 2024-09\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 18650-MF1\r\n> \r\n> Middle rate, 3.6V, 2.15Ah\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> 2021-02\r\n> \r\n> Lot A045\r\n> \r\n> Cylindrical\r\n> \r\n> 18650-M26(S)\r\n> \r\n> Middle rate, 3.6V, 2.6Ah\r\n> \r\n> 19,000pcs\r\n> \r\n> $1.83\r\n> \r\n> FCA HK\r\n> \r\n> TBI\r\n> \r\n> 2020-10\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 18650-M29\r\n> \r\n> Middle rate, 3.6V, 2.85Ah\r\n> \r\n> mass quantity\r\n> \r\n> $2.2\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> Fresh\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 18650HJ2\r\n> \r\n> High Rate, 3.6V, 3.0Ah\r\n> \r\n> mass quantity\r\n> \r\n> $2.05\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> 2024-05\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 18650HJ2\r\n> \r\n> High Rate, 3.6V, 3.0Ah\r\n> \r\n> mass quantity\r\n> \r\n> $2.21\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> Within 6 months\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 18650-MH1\r\n> \r\n> Middle rate, 3.6V, 3.2Ah\r\n> \r\n> mass quantity\r\n> \r\n> $1.56\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> Within 6 months\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 18650-MH1\r\n> \r\n> Middle rate, 3.6V, 3.2Ah\r\n> \r\n> mass quantity\r\n> \r\n> $1.54\r\n> \r\n> FCA HK\r\n> \r\n> TBI\r\n> \r\n> Within 6 months\r\n> \r\n> MOQ 1 Pallet\r\n> \r\n> Cylindrical\r\n> \r\n> 18650-MJ1\r\n> \r\n> Middle rate, 3.6V, 3.5Ah\r\n> \r\n> mass quantity\r\n> \r\n> $1.55\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> Within 6 months\r\n> \r\n> Made in China\r\n> \r\n> Cylindrical\r\n> \r\n> 18650-MJ1\r\n> \r\n> Middle rate, 3.6V, 3.5Ah\r\n> \r\n> mass quantity\r\n> \r\n> $1.53\r\n> \r\n> FCA HK\r\n> \r\n> 1 week\r\n> \r\n> Within 6 months\r\n> \r\n> MOQ 1 Pallet\r\n> \r\n> Cylindrical\r\n> \r\n> 21700-M48\r\n> \r\n> Middle rate, 3.68V, 17.4Wh\r\n> \r\n> mass quantity\r\n> \r\n> $2.03\r\n> \r\n> FCA Shenzhen\r\n> \r\n> Stock\r\n> \r\n> 2023-05\r\n> \r\n> LOT C118D283\r\n> \r\n> Cylindrical\r\n> \r\n> 21700-M48A\r\n> \r\n> 3C\r\n> \r\n> mass quantity\r\n> \r\n> $1.6\r\n> \r\n> FCA Shenzhen\r\n> \r\n> Stock\r\n> \r\n> TBI\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 21700-M50LT\r\n> \r\n> Middle rate, 3.6V, 5.0Ah\r\n> \r\n> mass quantity\r\n> \r\n> $1.92\r\n> \r\n> FCA HK\r\n> \r\n> 1 week\r\n> \r\n> 2025-08\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 21700-M52V\r\n> \r\n> 3.6V, 5.2Ah\r\n> \r\n> mass quantity\r\n> \r\n> $2.16\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> within 2025\r\n> \r\n> Made in Korea, Bare cell\r\n> \r\n> Cylindrical\r\n> \r\n> 21700-M58T\r\n> \r\n> 3.6V, 5.8Ah\r\n> \r\n> 5,330pcs\r\n> \r\n> $2.15\r\n> \r\n> FCA HK\r\n> \r\n> 3 days\r\n> \r\n> 2023-11\r\n> \r\n> Made in Korea, \r\n> Special Promotion to take all\r\n> \r\n> Cylindrical\r\n> \r\n> 21700-M58T\r\n> \r\n> 3.6V, 5.8Ah\r\n> \r\n> mass quantity\r\n> \r\n> $6.15\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 3 days\r\n> \r\n> 2024-06\r\n> \r\n> Made in Korea\r\n> \r\n> Cylindrical\r\n> \r\n> 21700-M58T\r\n> \r\n> 3.6V, 5.8Ah\r\n> \r\n> mass quantity\r\n> \r\n> $2.7\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 3 days\r\n> \r\n> Within 6 months\r\n> \r\n> Made in China\r\n> \r\n> Pouch Polymer\r\n> \r\n> E66\r\n> \r\n> Li-ion, 3.65V 66Ah 11.3 x 98 x 357mm\r\n> \r\n> mass quantity\r\n> \r\n> $35.00\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> N/A\r\n> \r\n> A- grade\r\n> \r\n> Pouch Polymer\r\n> \r\n> E78\r\n> \r\n> Li-ion, 3.65V 78Ah 8 x 98 x 510mm\r\n> \r\n> mass quantity\r\n> \r\n> $38.00\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> N/A\r\n> \r\n> A- grade\r\n> \r\n>  \r\n> \r\n>  \r\n> \r\n>  \r\n> \r\n>  \r\n> \r\n>  \r\n> \r\n>  \r\n> \r\n>  \r\n> \r\n>  \r\n> \r\n>  \r\n> \r\n> 3. Panasonic (Sanyo)\r\n> \r\n> Type\r\n> \r\n> Model\r\n> \r\n> Specification\r\n> \r\n> Available Quantity\r\n> \r\n> Unit Price\r\n> \r\n> Price Term\r\n> \r\n> Validity\r\n> \r\n> Cell Lot\r\n> \r\n> Remark\r\n> \r\n> Cylindrical\r\n> \r\n> UR18650RX (Sanyo)\r\n> \r\n> 1950mAh, 3.6V\r\n> \r\n> MOQ 1 Pallet\r\n> \r\n> $3.8\r\n> \r\n> FCA HK\r\n> \r\n> within 3-6 months\r\n> \r\n> Fresh\r\n> \r\n> Japan\r\n> \r\n> Cylindrical\r\n> \r\n> UR18650AA (Sanyo)\r\n> \r\n> 2250mAh, 3.6V, 8A discharge\r\n> \r\n> mass quantity\r\n> \r\n> $1.80\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> within 6 months\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> UR18650A(Y) (Sanyo)\r\n> \r\n> 2200mAh, 3.6V, 2C discharge\r\n> \r\n> mass quantity\r\n> \r\n> $2.35\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 5 days\r\n> \r\n> 2024-08\r\n> \r\n> China\r\n> \r\n> Cylindrical\r\n> \r\n> UR18650NSX (Sanyo)\r\n> \r\n> 2500mAh, 3.6V\r\n> \r\n> TBI\r\n> \r\n> $4.3\r\n> \r\n> FCA HK\r\n> \r\n> TBI\r\n> \r\n> 2023-03\r\n> \r\n> MOQ 1 Pallet\r\n> \r\n> Cylindrical\r\n> \r\n> UR18650FM (Sanyo)\r\n> \r\n> 3.7V 2.5Ah\r\n> \r\n> mass quantity\r\n> \r\n> $5.3\r\n> \r\n> FCA HK\r\n> \r\n> 1 week\r\n> \r\n> within 2025\r\n> \r\n> Japan\r\n> \r\n> Cylindrical\r\n> \r\n> UR18650ZM2 (Sanyo)\r\n> \r\n> 3.6V, 2.55Ah\r\n> \r\n> mass quantity\r\n> \r\n> $1.75\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> 2025-08\r\n> \r\n> China\r\n> \r\n> Cylindrical\r\n> \r\n> UR18650ZM2 (Sanyo)\r\n> \r\n> 3.6V, 2.55Ah\r\n> \r\n> mass quantity\r\n> \r\n> $1.77\r\n> \r\n> FCA HK\r\n> \r\n> TBI\r\n> \r\n> 2025-08\r\n> \r\n> China\r\n> \r\n> Cylindrical\r\n> \r\n> UR18650ZY (Sanyo)\r\n> \r\n> 3.6V, 2.6Ah\r\n> \r\n> mass quantity\r\n> \r\n> $2.88\r\n> \r\n> FCA Shenzhen\r\n> \r\n> End November\r\n> \r\n> within 2025\r\n> \r\n> China\r\n> \r\n> Cylindrical\r\n> \r\n> UR18650ZTA (Sanyo)\r\n> \r\n> 3.8V (4.35V charge), 3000mAh\r\n> \r\n> mass\r\n> \r\n> $3.60\r\n> \r\n> FCA Shenzhen\r\n> \r\n> Stock\r\n> \r\n> 2022-03\r\n> \r\n> China\r\n> \r\n> Cylindrical\r\n> \r\n> UR18500F\r\n> \r\n> 3.7V, 1620mAh\r\n> \r\n> TBI\r\n> \r\n> $3.90\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> UR14500P (Sanyo)\r\n> \r\n> 3.7V, 840mAh\r\n> \r\n> 1,830pcs\r\n> \r\n> $4\r\n> \r\n> FCA Shenzhen\r\n> \r\n> Stock\r\n> \r\n> TBI\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> UR14650R (Sanyo)\r\n> \r\n> 3.6V, 1050mAh\r\n> \r\n> 10,080pcs\r\n> \r\n> $2.35\r\n> \r\n> FCA Shenzhen\r\n> \r\n> Stock\r\n> \r\n> 2021-10\r\n> \r\n> Japan\r\n> \r\n> Cylindrical\r\n> \r\n> NCR18650BF (Sanyo)\r\n> \r\n> 3.6V, 3.4Ah, standard\r\n> \r\n> TBI\r\n> \r\n> $3.80\r\n> \r\n> FCA Shenzhen\r\n> \r\n> December\r\n> \r\n> within 2025\r\n> \r\n> Japan\r\n> \r\n> Cylindrical\r\n> \r\n> NCR18650GA (Sanyo)\r\n> \r\n> 3.6V, 3.5Ah\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> End of Dec.\r\n> \r\n> within 3 months\r\n> \r\n> MOQ 1 Pallet, \r\n> Made in Japan\r\n> \r\n> Cylindrical\r\n> \r\n> NCR18500A (Pana)\r\n> \r\n> 3.6V, 2040mAh\r\n> \r\n> mass quantity\r\n> \r\n> $3.40\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> within 8 months\r\n> \r\n> China\r\n> \r\n> Cylindrical\r\n> \r\n> NCR1850B (Pana)\r\n> \r\n> 3.6V, 2350mAh\r\n> \r\n> mass quantity\r\n> \r\n> $3.55\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> within 2025\r\n> \r\n> China\r\n> \r\n> Cylindrical\r\n> \r\n> NCR18650PF (Pana)\r\n> \r\n> 3.6V, 2900mAh, 10A discharge\r\n> \r\n> TBI\r\n> \r\n> $2.75\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n> China\r\n> \r\n> Cylindrical\r\n> \r\n> NCR18650BD (Pana.)\r\n> \r\n> Middle Rate, 3.6V, 3.2Ah\r\n> \r\n> mass quantity\r\n> \r\n> $2.07\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> 2025-05\r\n> \r\n> China\r\n> \r\n> Cylindrical\r\n> \r\n> NCR18650GA6W (Pana.)\r\n> \r\n> Middle Rate, 3.6V, 3.5Ah, green tube\r\n> \r\n> mass quantity\r\n> \r\n> $2.25\r\n> \r\n> FCA Shenzhen\r\n> \r\n> Stock\r\n> \r\n> within 6 months\r\n> \r\n> China\r\n> \r\n> Cylindrical\r\n> \r\n> NCR18650GA6W (Pana.)\r\n> \r\n> Middle Rate, 3.6V, 3.5Ah, green tube\r\n> \r\n> mass quantity\r\n> \r\n> $2.15\r\n> \r\n> FCA HK\r\n> \r\n> Stock\r\n> \r\n> within 6 months\r\n> \r\n> MOQ 1 Pallet, China\r\n> \r\n> Cylindrical\r\n> \r\n> NCR18650GA6W (Pana.)\r\n> \r\n> Middle Rate, 3.6V, 3.5Ah, red tube\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> Stock\r\n> \r\n> within 1 year\r\n> \r\n> China\r\n> \r\n> Cylindrical\r\n> \r\n> NCR18650B (Pana.)\r\n> \r\n> Standard, 3.6V, 3.4Ah\r\n> \r\n> mass quantity\r\n> \r\n> $4.4\r\n> \r\n> FCA HK\r\n> \r\n> TBI\r\n> \r\n> 2025-01\r\n> \r\n> Japan, MOQ 1 Pallet\r\n> \r\n> Cylindrical\r\n> \r\n> NCR2170MB (Pana.)\r\n> \r\n> 3.6V, 5150mAh, 12A discharge\r\n> \r\n> mass quantity\r\n> \r\n> $4.65\r\n> \r\n> FCA HK\r\n> \r\n> 1-2 weeks\r\n> \r\n> 2024-01\r\n> \r\n> Japan, MOQ 1 Pallet\r\n> \r\n> Cylindrical\r\n> \r\n> NCR2270AE (Pana.)\r\n> \r\n> 3.6V, 5635mAh, 12A discharge\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n> 2024-11\r\n> \r\n> China\r\n> \r\n> Cylindrical\r\n> \r\n> CR123A in bulk package\r\n> \r\n> 3V 1400mAh Lithium Primary\r\n> \r\n> mass quantity\r\n> \r\n> $1.38\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> CR123A in candy package\r\n> \r\n> 3V 1400mAh Lithium Primary\r\n> \r\n> mass quantity\r\n> \r\n> $1.45\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n>  \r\n> \r\n> Prismatic\r\n> \r\n> NCA103443 (Pana.)\r\n> \r\n> 3.6V, 2.01Ah\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> Stock\r\n> \r\n> New Lot\r\n> \r\n> China\r\n> \r\n> Prismatic\r\n> \r\n> NCA103450 w/o breaker (Pana.)\r\n> \r\n> 3.6V, 2350mAh\r\n> \r\n> mass quantity\r\n> \r\n> $3.70\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> within 6 months\r\n> \r\n> China\r\n> \r\n> Prismatic\r\n> \r\n> NCA103450 w/t breaker (Pana.)\r\n> \r\n> 3.6V, 2350mAh\r\n> \r\n> mass quantity\r\n> \r\n> $5.8\r\n> \r\n> FCA HK\r\n> \r\n> 1 week\r\n> \r\n> 2024-10\r\n> \r\n> MOQ 10K\r\n> \r\n> Prismatic\r\n> \r\n> NCA882936SA (Pana.)\r\n> \r\n> 3.6V, 1310mAh\r\n> \r\n> mass quantity\r\n> \r\n> $5.7\r\n> \r\n> FCA HK\r\n> \r\n> 1 week\r\n> \r\n> 2024-01\r\n> \r\n> China\r\n> \r\n> Prismatic\r\n> \r\n> NCA903864A (Pana.)\r\n> \r\n> 3.6V, 3280mAh\r\n> \r\n> 5,040pcs\r\n> \r\n> $6.6\r\n> \r\n> FCA HK\r\n> \r\n> 1-2 weeks\r\n> \r\n> 2021-09\r\n> \r\n> Japan\r\n> \r\n> Prismatic\r\n> \r\n> NCA653864SA (Pana.)\r\n> \r\n> 3.6V, 2.4Ah\r\n> \r\n> mass quantity\r\n> \r\n> $4.40\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> within 6 months\r\n> \r\n> Japan\r\n> \r\n> Prismatic\r\n> \r\n> NCA793540(Pana)\r\n> \r\n> 3.6V, 1485mAh\r\n> \r\n> mass quantity\r\n> \r\n> $3.1\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 2-4 Months\r\n> \r\n> 2025-01\r\n> \r\n> China\r\n> \r\n> Prismatic\r\n> \r\n> NCA596080 (Pana.)\r\n> \r\n> 3.6V, 4170mAh\r\n> \r\n> TBI\r\n> \r\n> $8.90\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> TBI\r\n> \r\n> Japan\r\n> \r\n> Prismatic\r\n> \r\n> NCA596080SA (Pana.)\r\n> \r\n> 3.6V, 4340mAh\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n>  \r\n> \r\n> Prismatic\r\n> \r\n> UF103450P without fuse\r\n> \r\n> 3.7V, 2000mAh\r\n> \r\n> TBI\r\n> \r\n> $5.60\r\n> \r\n> FCA Shenzhen\r\n> \r\n> Stock\r\n> \r\n> 2021-10\r\n> \r\n> Japan\r\n> \r\n> Prismatic\r\n> \r\n> UF703450F (Sanyo)\r\n> \r\n> 3.7V, 1480mAh\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n> $4.50\r\n> \r\n>  \r\n> \r\n> 2022-08\r\n> \r\n> Made in Japan\r\n> \r\n> Prismatic\r\n> \r\n> UF653450S (Sanyo)\r\n> \r\n> 3.7V, 1250mAh\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n> FCA HK\r\n> \r\n> Stock\r\n> \r\n> 2024-02\r\n> \r\n> Japan\r\n> \r\n> Prismatic\r\n> \r\n> UF553450ZP (Sanyo)\r\n> \r\n> 3.7V 1.15Ah\r\n> \r\n> mass quantity\r\n> \r\n> $3.60\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> 2025-05\r\n> \r\n> Japan\r\n> \r\n> Prismatic\r\n> \r\n> UF553450ZP (Sanyo)\r\n> \r\n> 3.7V 1.15Ah\r\n> \r\n> mass quantity\r\n> \r\n> $3\r\n> \r\n> FCA HK\r\n> \r\n> 1 week\r\n> \r\n> 2025-05\r\n> \r\n> Japan\r\n> \r\n> Prismatic\r\n> \r\n> UF553443ZU (Sanyo)\r\n> \r\n> 3.7V 1.04Ah\r\n> \r\n> 40,000pcs\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> within 2022\r\n> \r\n> Japan\r\n> \r\n> Prismatic\r\n> \r\n> Panasonic 50Ah\r\n> \r\n> NMC 50Ah 27x148x92mm, 849g, 0.55mhom\r\n> \r\n> mass\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> TBI\r\n> \r\n> A- grade\r\n> \r\n> Prismatic\r\n> \r\n> Panasonic 4Ah\r\n> \r\n> 3.7V 4.2Ah 13-120-65mm, 35C-70C, 183g\r\n> \r\n> mass\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> TBI\r\n> \r\n> A- grade\r\n> \r\n> Prismatic\r\n> \r\n> Panasonic 27Ah\r\n> \r\n> NMC 23Ah 30C/70C L148xW26xH90mm\r\n> \r\n> 2,000pcs\r\n> \r\n> $25.00\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> N/A\r\n> \r\n> Uncycled\r\n> \r\n> 4. Murata\r\n> \r\n> Type\r\n> \r\n> Model\r\n> \r\n> Specification\r\n> \r\n> Available Quantity\r\n> \r\n> Unit Price\r\n> \r\n> Price Term\r\n> \r\n> Validity\r\n> \r\n> Cell Lot\r\n> \r\n> Remark\r\n> \r\n> Cylindrical\r\n> \r\n> US18650VTC4\r\n> \r\n> 3.6V, 2.1Ah, 30A Disch.\r\n> \r\n> mass quantity\r\n> \r\n> $2\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> US18650VTC5\r\n> \r\n> 3.6V, 2.5Ah, 20A/30A Disch.\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> US18650VTC5A\r\n> \r\n> 3.6V, 2.5Ah, 30A/35A Disch.\r\n> \r\n> Few\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> US18650VTC5C\r\n> \r\n> 3.6V, 2.5Ah, 30A Disch.\r\n> \r\n> mass quantity\r\n> \r\n> $2.75\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> 2021 Stock\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> US18650VTC5D\r\n> \r\n> 3.6V, 2.7Ah, 35A Disch.\r\n> \r\n> mass quantity\r\n> \r\n> $4.2\r\n> \r\n> FCA Shenzhen\r\n> \r\n> Stock\r\n> \r\n> 2021-10\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> US18650VTC6\r\n> \r\n> 3.6V, 3.0Ah, 20A/30A Disch.\r\n> \r\n> mass quantity\r\n> \r\n> $3.65\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 4-6 weeks\r\n> \r\n> within 3-6 months\r\n> \r\n> Fresh\r\n> \r\n> Cylindrical\r\n> \r\n> US18650VTC6\r\n> \r\n> 3.6V, 3.0Ah, 20A/30A Disch.\r\n> \r\n> mass quantity\r\n> \r\n> $3.2\r\n> \r\n> FCA HK\r\n> \r\n> 4-6 weeks\r\n> \r\n> within 6 months\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> US21700VTC6A\r\n> \r\n> 3.6V 4100mAh 40A discharge\r\n> \r\n> mass quantity\r\n> \r\n> $5.2\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 4-6 weeks\r\n> \r\n> New Lot\r\n> \r\n> 30% deposit is needed\r\n> \r\n> Cylindrical\r\n> \r\n> US21700VTC6A\r\n> \r\n> 3.6V 4100mAh 40A discharge\r\n> \r\n> mass quantity\r\n> \r\n> $4.45\r\n> \r\n> FCA HK\r\n> \r\n> 4-6 weeks\r\n> \r\n> within 6 months\r\n> \r\n> 30% deposit is needed\r\n> \r\n>  \r\n> \r\n>  \r\n> \r\n>  \r\n> \r\n>  \r\n> \r\n>  \r\n> \r\n>  \r\n> \r\n>  \r\n> \r\n>  \r\n> \r\n>  \r\n> \r\n> 5. Molicel\r\n> \r\n> Type\r\n> \r\n> Model\r\n> \r\n> Specification\r\n> \r\n> Available Quantity\r\n> \r\n> Unit Price\r\n> \r\n> Price Term\r\n> \r\n> Validity\r\n> \r\n> Cell Lot\r\n> \r\n> Remark\r\n> \r\n> Cylindrical\r\n> \r\n> INR18650-P26A\r\n> \r\n> 3.6V, 2600mAh, Wide Temp, High rate\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA HK\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n> MOQ 20Kpcs (1 pallet)\r\n> \r\n> Cylindrical\r\n> \r\n> INR18650-P28A\r\n> \r\n> 3.6V, 2.8Ah, Widetemp. Highrate\r\n> \r\n> mass quantity\r\n> \r\n> $3.55\r\n> \r\n> FCA Shenzhen\r\n> \r\n> Stock\r\n> \r\n> TBI\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR18650-P30B\r\n> \r\n> 3.6V, 3.0Ah, Widetemp. 30A Disch.\r\n> \r\n> mass quantity\r\n> \r\n> $5.1\r\n> \r\n> FCA Shenzhen\r\n> \r\n> Stock\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR18650-M35A\r\n> \r\n> 3.6V, 3.5Ah, Widetemp. Highrate\r\n> \r\n> mass quantity\r\n> \r\n> $3.55\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> within 6 months\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR18650-M35A\r\n> \r\n> 3.6V, 3.5Ah, Widetemp. Highrate\r\n> \r\n> MOQ 16Kpcs\r\n> \r\n> $3.40\r\n> \r\n> FCA HK\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR21700-P42A\r\n> \r\n> 3.6V, 4.2Ah\r\n> \r\n> mass quantity\r\n> \r\n> $3.70\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 3-5 weeks\r\n> \r\n> within 6 months\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR21700-P45B\r\n> \r\n> 3.6V 4500mAh\r\n> \r\n> mass quantity\r\n> \r\n> $4.2\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> within 6 months\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR21700-P50B\r\n> \r\n> 3.6V 5000mAh\r\n> \r\n> Few\r\n> \r\n> $6.25\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> within 6 months\r\n> \r\n>  \r\n> \r\n> 6. BYD\r\n> \r\n> Type\r\n> \r\n> Model\r\n> \r\n> Specification\r\n> \r\n> Available Quantity\r\n> \r\n> Unit Price\r\n> \r\n> Price Term\r\n> \r\n> Validity\r\n> \r\n> Cell Lot\r\n> \r\n> Remark\r\n> \r\n> Cylindrical\r\n> \r\n> FC46120P\r\n> \r\n> 3.2V, 24.50Ah\r\n> \r\n> mass quantity\r\n> \r\n> $14.5\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n> MOQ 10pcs\r\n> \r\n> 7. LithiumWerk (A123)\r\n> \r\n> Type\r\n> \r\n> Model\r\n> \r\n> Specification\r\n> \r\n> Available Quantity\r\n> \r\n> Unit Price\r\n> \r\n> Price Term\r\n> \r\n> Validity\r\n> \r\n> Cell Lot\r\n> \r\n> Remark\r\n> \r\n> Cylindrical\r\n> \r\n> ANR26650M1B\r\n> \r\n> 3.3V 2.5Ah High Rate\r\n> \r\n> mass quantity\r\n> \r\n> $8.5\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 4-6 weeks\r\n> \r\n> 2025-01\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> ANR26650M1B\r\n> \r\n> 3.3V 2.5Ah High Rate\r\n> \r\n> mass quantity\r\n> \r\n> $7\r\n> \r\n> FCA HK\r\n> \r\n> 4-6 weeks\r\n> \r\n> 2025-04\r\n> \r\n> MOQ 6,600pcs (1 pallet)\r\n> \r\n> 8. SK On (Previously, SK Innovation)\r\n> \r\n> Type\r\n> \r\n> Model\r\n> \r\n> Specification\r\n> \r\n> Available Quantity\r\n> \r\n> Unit Price\r\n> \r\n> Price Term\r\n> \r\n> Validity\r\n> \r\n> Cell Lot\r\n> \r\n> Remark\r\n> \r\n> Pouch\r\n> \r\n> E400\r\n> \r\n> Li-ion, 3.6V, 40Ah, 9.5x97x320mm\r\n> \r\n> mass quantity\r\n> \r\n> $30.00\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> within 2022\r\n> \r\n> A- grade\r\n> \r\n> Pouch\r\n> \r\n> E450\r\n> \r\n> Li-ion, 3.6V, 45Ah, 10x175x190mm\r\n> \r\n> mass quantity\r\n> \r\n> $31.00\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> within 2022\r\n> \r\n> A- grade\r\n> \r\n> Pouch\r\n> \r\n> E500\r\n> \r\n> Li-ion, 3.6V, 50Ah, 11.5x98x300mm\r\n> \r\n> mass quantity\r\n> \r\n> $35.10\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> N/A\r\n> \r\n> A- grade, OEM by EVE\r\n> \r\n> Pouch\r\n> \r\n> E556\r\n> \r\n> Li-ion, 3.6V, 55.60Ah, 10x100x354mm\r\n> \r\n> mass quantity\r\n> \r\n> $30.00\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> N/A\r\n> \r\n> A- grade\r\n> \r\n> Pouch\r\n> \r\n> E600B\r\n> \r\n> Li-ion, 3.6V, 60Ah, 14.5x100x300mm\r\n> \r\n> 4,555\r\n> \r\n> $35.00\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> N/A\r\n> \r\n> A- grade\r\n> \r\n> Pouch\r\n> \r\n> E603\r\n> \r\n> Li-ion, 3.66V, 60.3Ah, 9.5x354x101mm\r\n> \r\n> mass quantity\r\n> \r\n> $30.00\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> N/A\r\n> \r\n> Uncycled, for EV\r\n> \r\n> Pouch\r\n> \r\n> E805\r\n> \r\n> Li-ion, 3.6V, 60Ah, 14.5x100x300mm\r\n> \r\n> Few\r\n> \r\n> $36.00\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> N/A\r\n> \r\n> disassembled, un-cycled\r\n> \r\n> Pouch\r\n> \r\n> E120\r\n> \r\n> Li-ion, 3.7V, 120Ah, 14.5x98x530mm\r\n> \r\n> mass quantity\r\n> \r\n> $38.00\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> N/A\r\n> \r\n> A- grade\r\n> \r\n> 9. Far East (FEB)\r\n> \r\n> Type\r\n> \r\n> Model\r\n> \r\n> Specification\r\n> \r\n> Available Quantity\r\n> \r\n> Unit Price\r\n> \r\n> Price Term\r\n> \r\n> Validity\r\n> \r\n> Cell Lot\r\n> \r\n> Remark\r\n> \r\n> Cylindrical\r\n> \r\n> 18650-2600\r\n> \r\n> 3.6V, 2600mAh, Max 1C/2C\r\n> \r\n> mass quantity\r\n> \r\n> $1.12\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 2-3 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 18650-2900\r\n> \r\n> 3.6V, 2900mAh, Max 1C/2C\r\n> \r\n> mass quantity\r\n> \r\n> EOL\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 2 weeks\r\n> \r\n> New Lot\r\n> \r\n> For E-bike\r\n> \r\n> Cylindrical\r\n> \r\n> 18650-3300\r\n> \r\n> 3.6V, 3300mAh, Max 1C/2C\r\n> \r\n> mass quantity\r\n> \r\n> $1.58\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 2 weeks\r\n> \r\n> New Lot\r\n> \r\n> For Medical Equipment\r\n> \r\n> Cylindrical\r\n> \r\n> 18650-3800\r\n> \r\n> 3.6V, 3800mAh, Max 1C/2C\r\n> \r\n> mass quantity\r\n> \r\n> $2.12\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 2 weeks\r\n> \r\n> New Lot\r\n> \r\n> For Lighting Equipment\r\n> \r\n> Cylindrical\r\n> \r\n> 18650-4000\r\n> \r\n> 3.6V, 4000mAh, Max 1C/2C\r\n> \r\n> mass quantity\r\n> \r\n> $2.70\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 2 weeks\r\n> \r\n> New Lot\r\n> \r\n> For Lighting Equipment\r\n> \r\n> Cylindrical\r\n> \r\n> 21700-4000\r\n> \r\n> 3.6V, 4000mAh, Max 1C/2C\r\n> \r\n> mass quantity\r\n> \r\n> $1.58\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 2 weeks\r\n> \r\n> New Lot\r\n> \r\n> For E-bike\r\n> \r\n> Cylindrical\r\n> \r\n> 21700-4500\r\n> \r\n> 3.6V, 4500mAh, Max 1C/2C\r\n> \r\n> mass quantity\r\n> \r\n> $1.63\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 2 weeks\r\n> \r\n> New Lot\r\n> \r\n> For UPS power\r\n> \r\n> Cylindrical\r\n> \r\n> 21700-5000\r\n> \r\n> 3.6V, 5000mAh, Max 1C/2C\r\n> \r\n> mass quantity\r\n> \r\n> $2.08\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 2 weeks\r\n> \r\n> New Lot\r\n> \r\n> For Smart Speaker\r\n> \r\n> Cylindrical\r\n> \r\n> 21700-5500\r\n> \r\n> 3.6V, 5500mAh, Max 1C/2C\r\n> \r\n> mass quantity\r\n> \r\n> $2.65\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 2 weeks\r\n> \r\n> New Lot\r\n> \r\n> For Smart Speaker\r\n> \r\n> Cylindrical\r\n> \r\n> 21700-6000\r\n> \r\n> 3.6V, 6000mAh, Max 0.7C/2C\r\n> \r\n> mass quantity\r\n> \r\n> $4.00\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 2 weeks\r\n> \r\n> New Lot\r\n> \r\n> For Lighting Equipment / Sample\r\n> \r\n> 10. DMEGC\r\n> \r\n> Type\r\n> \r\n> Model\r\n> \r\n> Specification\r\n> \r\n> Available Quantity\r\n> \r\n> Unit Price\r\n> \r\n> Price Term\r\n> \r\n> Validity\r\n> \r\n> Cell Lot\r\n> \r\n> Remark\r\n> \r\n> Cylindrical\r\n> \r\n> INR18650-20P\r\n> \r\n> 2.0Ah, CC 20A, Pulse 30A\r\n> \r\n> mass quantity\r\n> \r\n> $1.30\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR18650-25P\r\n> \r\n> 2.5Ah, CC 20A, Pulse 30A\r\n> \r\n> mass quantity\r\n> \r\n> $1.4\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR18650-30P\r\n> \r\n> 3.0Ah, CC 10A, Pulse 20A, with 80C cut\r\n> \r\n> mass quantity\r\n> \r\n> $1.90\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR18650-26E\r\n> \r\n> 2.6Ah, CC 3C, Pulse 5C\r\n> \r\n> mass quantity\r\n> \r\n> $1.12\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR18650-26E2\r\n> \r\n> 2.6Ah, CC 3C, Pulse 5C, 7S max\r\n> \r\n> mass quantity\r\n> \r\n> $1.1\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR18650-29E\r\n> \r\n> 2.9Ah, CC 2C, Pulse 4C\r\n> \r\n> mass quantity\r\n> \r\n> $1.4\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR18650-32E\r\n> \r\n> 3.2Ah, CC 10A, Pulse 5C\r\n> \r\n> mass quantity\r\n> \r\n> $1.68\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR18650-35E\r\n> \r\n> 3.5Ah, CC 10A, Pulse 5C\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR21700-45E\r\n> \r\n> 4.5Ah, CC 1Cm Pulse 3C\r\n> \r\n> mass quantity\r\n> \r\n> $1.55\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR21700-50E\r\n> \r\n> 5.0Ah, CC 3C, Pulse 4C\r\n> \r\n> mass quantity\r\n> \r\n> $1.95\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR21700-40P\r\n> \r\n> 4.0Ah, CC 6A, Max DC 45A\r\n> \r\n> mass quantity\r\n> \r\n> $2.70\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> New Lot\r\n> \r\n> New Supply\r\n> \r\n> Cylindrical\r\n> \r\n> INR21700-40M (Orange tube)\r\n> \r\n> 4.0Ah, CC 20A, Max 45A,\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR21700-40M (Yellow tube)\r\n> \r\n> 4.0Ah, CC 15A, Max 18A,\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n>  \r\n> \r\n> 11. EVE\r\n> \r\n> Type\r\n> \r\n> Model\r\n> \r\n> Specification\r\n> \r\n> Available Quantity\r\n> \r\n> Unit Price\r\n> \r\n> Price Term\r\n> \r\n> Validity\r\n> \r\n> Cell Lot\r\n> \r\n> Remark\r\n> \r\n> Cylindrical\r\n> \r\n> INR18650/26V\r\n> \r\n> 3.60V 2.55Ah 7.65A\r\n> \r\n> mass quantity\r\n> \r\n> $1.16\r\n> \r\n> FCA Shenzhen\r\n> \r\n> Stock\r\n> \r\n> New Lot\r\n> \r\n> Cylindrical\r\n> \r\n> Cylindrical\r\n> \r\n> INR18650/33V\r\n> \r\n> 3.60V 3.20Ah 10A\r\n> \r\n> mass quantity\r\n> \r\n> $1.55\r\n> \r\n> FCA Shenzhen\r\n> \r\n> Stock\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR18650/35V\r\n> \r\n> 3.65V 3.50Ah 10.20A\r\n> \r\n> mass quantity\r\n> \r\n> $1.75\r\n> \r\n> FCA Shenzhen\r\n> \r\n> Stock\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR18650/20P\r\n> \r\n> 3.60V 2.00Ah 30A\r\n> \r\n> mass quantity\r\n> \r\n> $1.26\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR18650/25P\r\n> \r\n> 3.60V 2.50Ah 30A\r\n> \r\n> mass quantity\r\n> \r\n> $1.56\r\n> \r\n> FCA Shenzhen\r\n> \r\n> Stock\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR21700-40P\r\n> \r\n> 3.60V 4.00Ah 50A\r\n> \r\n> mass quantity\r\n> \r\n> $1.90\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR21700-40PL\r\n> \r\n> 3.60V 4.00Ah Tabless\r\n> \r\n> Trail lot\r\n> \r\n> $4.40\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR21700-50E\r\n> \r\n> 3.65V 5.00Ah 15A\r\n> \r\n> mass quantity\r\n> \r\n> $1.9\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR4695E\r\n> \r\n> 3.69V 31.90Ah 4C\r\n> \r\n> mass quantity\r\n> \r\n> $50.00\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR4695P\r\n> \r\n> 3.69V 29Ah\r\n> \r\n> Few\r\n> \r\n> $50.00\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n> without QR code (TBI)\r\n> \r\n> 12. BAK\r\n> \r\n> Type\r\n> \r\n> Model\r\n> \r\n> Specification\r\n> \r\n> Available Quantity\r\n> \r\n> Unit Price\r\n> \r\n> Price Term\r\n> \r\n> Validity\r\n> \r\n> Cell Lot\r\n> \r\n> Remark\r\n> \r\n> Middle Rate\r\n> \r\n> N18650CH\r\n> \r\n> 2.60Ah 3C\r\n> \r\n> mass quantity\r\n> \r\n> $1.03\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> N18650CP\r\n> \r\n> 3.35Ah 3C\r\n> \r\n> mass quantity\r\n> \r\n> $1.79\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> N18650CP-34E\r\n> \r\n> 3.40Ah 3C\r\n> \r\n> mass quantity\r\n> \r\n> $1.72\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> N18650CR-35E\r\n> \r\n> 3.50Ah 3C\r\n> \r\n> mass quantity\r\n> \r\n> $1.81\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> N21700CG-50\r\n> \r\n> 5.00Ah 3C\r\n> \r\n> mass quantity\r\n> \r\n> $2.2\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> Within 3 months\r\n> \r\n>  \r\n> \r\n> N21700CG-50E\r\n> \r\n> 5.00Ah 3C\r\n> \r\n> mass quantity\r\n> \r\n> $2.30\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> N21700CD-53E\r\n> \r\n> 5.30Ah 3C\r\n> \r\n> mass quantity\r\n> \r\n> $2.53\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> N21700CK-55E\r\n> \r\n> 5.50Ah 3C\r\n> \r\n> Trial Lot\r\n> \r\n> $3.21\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n>  \r\n> \r\n> N21700CH-58E\r\n> \r\n> 5.80Ah 3C\r\n> \r\n> Trial Lot\r\n> \r\n> $3.37\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> TBI\r\n> \r\n>  \r\n> \r\n> N18650CH\r\n> \r\n> 2.60Ah 3C\r\n> \r\n> mass quantity\r\n> \r\n> $1.08\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> High Rate\r\n> \r\n> N18650COP\r\n> \r\n> 2.50Ah 30A\r\n> \r\n> mass quantity\r\n> \r\n> $1.64\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> N18650CQP\r\n> \r\n> 3.00Ah 15A\r\n> \r\n> mass quantity\r\n> \r\n> $1.92\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> N21700CGP\r\n> \r\n> 4.00Ah 35A\r\n> \r\n> mass quantity\r\n> \r\n> $2.40\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Low \r\n> Temperature\r\n> \r\n> N18650CP Low Temperature\r\n> \r\n> 3.35Ah 3C\r\n> \r\n> mass quantity\r\n> \r\n> $1.87\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> N18650CR-35T Low Temperature\r\n> \r\n> 3.50Ah 3C\r\n> \r\n> mass quantity\r\n> \r\n> $1.95\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Tabless\r\n> \r\n> 21700-40D\r\n> \r\n> 4.00Ah 100A\r\n> \r\n> mass quantity\r\n> \r\n> $3.30\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR4695-330B\r\n> \r\n> 3.6V, 33Ah\r\n> \r\n> Sample\r\n> \r\n> $50.00\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR4690-310B\r\n> \r\n> 3.6V, 31Ah\r\n> \r\n> Sample\r\n> \r\n> $50.00\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> 13. CBAK\r\n> \r\n> Type\r\n> \r\n> Model\r\n> \r\n> Specification\r\n> \r\n> Available Quantity\r\n> \r\n> Unit Price\r\n> \r\n> Price Term\r\n> \r\n> Validity\r\n> \r\n> Cell Lot\r\n> \r\n> Remark\r\n> \r\n> LFP\r\n> \r\n> 26650FS2A\r\n> \r\n> 3.2V 3.40Ah 3C for EV / ESS\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> 26650FS3\r\n> \r\n> 3.2V 3.60Ah 3C for EV / ESS\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> 26650FS3A\r\n> \r\n> 3.2V 3.80Ah 3C for EV / ESS\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> 26650FS4\r\n> \r\n> 3.2V 4.00Ah 3C for EV / ESS\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> 26650FS4B\r\n> \r\n> 3.2V 4.00Ah 3C for Light Vehicle\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> 26700FB\r\n> \r\n> 3.2V 4.00Ah 3C for Light Vehicle\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> 26700FB2\r\n> \r\n> 3.2V 4.50Ah 3C for Light Vehicle\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> 26700FE\r\n> \r\n> 3.2V 4.50Ah 3C for EV / ESS\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> 32140FS\r\n> \r\n> 3.2V 15Ah\r\n> \r\n> mass quantity\r\n> \r\n> $5.70\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Sodium-ion\r\n> \r\n> 32140NS\r\n> \r\n> 3.0V, 10Ah\r\n> \r\n> Sample\r\n> \r\n> $10.00\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n> Only Spec sheet is available\r\n> (No UN 38.3 & MSDS)\r\n> \r\n> 14. CALB\r\n> \r\n> Type\r\n> \r\n> Model\r\n> \r\n> Specification\r\n> \r\n> Available Quantity\r\n> \r\n> Unit Price\r\n> \r\n> Price Term\r\n> \r\n> Validity\r\n> \r\n> Cell Lot\r\n> \r\n> Remark\r\n> \r\n> Cylindrical\r\n> \r\n> 4695\r\n> \r\n> 3.7V, 30Ah, NMC\r\n> \r\n> MOQ 10pcs\r\n> \r\n> $50.00\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n> Sample, No spec sheet yet\r\n> \r\n> 15. Highstar\r\n> \r\n> Type\r\n> \r\n> Model\r\n> \r\n> Specification\r\n> \r\n> Available Quantity\r\n> \r\n> Unit Price\r\n> \r\n> Price Term\r\n> \r\n> Validity\r\n> \r\n> Cell Lot\r\n> \r\n> Remark\r\n> \r\n> Sodium-ion\r\n> \r\n> NaCR33140-10ER\r\n> \r\n> 3.05V, 10Ah\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Sodium-ion\r\n> \r\n> NaCR46145-20ER\r\n> \r\n> 3.05V, 20Ah\r\n> \r\n> MOQ 50pcs\r\n> \r\n> $40.00\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Sodium-ion\r\n> \r\n> NaCP50160118-70E3\r\n> \r\n> Prismatic, 3.05V, 70Ah\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Sodium-ion\r\n> \r\n> NaCP50160118-70H3\r\n> \r\n> Prismatic, 3.0V, 70Ah\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Sodium-ion\r\n> \r\n> NaCP50160118-80E3\r\n> \r\n> Prismatic, 3.05V, 80Ah\r\n> \r\n> Sample\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Sodium-ion\r\n> \r\n> NaCP40130208-80E3\r\n> \r\n> Prismatic, 3.05V, 80Ah\r\n> \r\n> Sample\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Sodium-ion\r\n> \r\n> NaCP50160153-103E3\r\n> \r\n> Prismatic, 3.0V, 103Ah\r\n> \r\n> Sample\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Tabless\r\n> \r\n> INR21700-40PS\r\n> \r\n> 3.6V, 3950mAh\r\n> \r\n> MOQ 50pcs\r\n> \r\n> $6.65\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Tabless\r\n> \r\n> INR21700-50PS\r\n> \r\n> 3.6V, 4900mAh, Low Impedance\r\n> \r\n> 130pcs\r\n> \r\n> $4.50\r\n> \r\n> FCA Shenzhen\r\n> \r\n> TBI\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n>  \r\n> \r\n> 16. Lishen\r\n> \r\n> Type\r\n> \r\n> Model\r\n> \r\n> Specification\r\n> \r\n> Available Quantity\r\n> \r\n> Unit Price\r\n> \r\n> Price Term\r\n> \r\n> Validity\r\n> \r\n> Cell Lot\r\n> \r\n> Remark\r\n> \r\n> Cylindrical\r\n> \r\n> 18650LA\r\n> \r\n> 2Ah, 10C\r\n> \r\n> mass quantity\r\n> \r\n> $1.15\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 18650LD\r\n> \r\n> 2.5Ah, 10C\r\n> \r\n> mass quantity\r\n> \r\n> $1.50\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 18650LE\r\n> \r\n> 3Ah, 10C\r\n> \r\n> mass quantity\r\n> \r\n> $2.15\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 18650SK\r\n> \r\n> 2.6Ah, 3C\r\n> \r\n> mass quantity\r\n> \r\n> $1.1\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 18650SS\r\n> \r\n> 3Ah, 3C\r\n> \r\n> mass quantity\r\n> \r\n> $1.48\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 18650HB\r\n> \r\n> 3.35Ah, 3C\r\n> \r\n> mass quantity\r\n> \r\n> $1.63\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 18650HC\r\n> \r\n> 3.5Ah, 3C\r\n> \r\n> mass quantity\r\n> \r\n> $1.92\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 21700LA\r\n> \r\n> 4Ah, 10C\r\n> \r\n> mass quantity\r\n> \r\n> $1.93\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 21700SA\r\n> \r\n> 4Ah, 3C\r\n> \r\n> mass quantity\r\n> \r\n> $1.80\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 21700SD\r\n> \r\n> 5Ah, 3C\r\n> \r\n> mass quantity\r\n> \r\n> $2.19\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> 21700SZ\r\n> \r\n> 5Ah, 3C\r\n> \r\n> mass quantity\r\n> \r\n> $2.2\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n>  \r\n> \r\n>  \r\n> \r\n>  \r\n> \r\n> 17. Sunpower\r\n> \r\n> Type\r\n> \r\n> Model\r\n> \r\n> Specification\r\n> \r\n> Available Quantity\r\n> \r\n> Unit Price\r\n> \r\n> Price Term\r\n> \r\n> Validity\r\n> \r\n> Cell Lot\r\n> \r\n> Remark\r\n> \r\n> Cylindrical\r\n> \r\n> INR18650-1300\r\n> \r\n> 13P (15C) 20A\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR18650-1500\r\n> \r\n> 15H (13C) 20A\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR18650-2000\r\n> \r\n> 20P (10C) 20A\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR18650-2000\r\n> \r\n> 20T (15C) 30A\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR18650-2200\r\n> \r\n> 22R (9C) 20A\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR18650-2500\r\n> \r\n> 25R (10C) 25A\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR18650-2500\r\n> \r\n> 25T (12C) 30A\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR18650-2500\r\n> \r\n> 25L (8C) 20A Low Temperature type\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR18650-2600\r\n> \r\n> 26P (5C) 13A\r\n> \r\n> mass quantity\r\n> \r\n> $1.34\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR18650-3000\r\n> \r\n> 30P (10C) 30A\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR18650-3000\r\n> \r\n> 30S (13C) 40A\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR21700-3000\r\n> \r\n> 30L (3C) 10A Low Teperature type\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR21700-4000\r\n> \r\n> 40S (10C) 40A\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR21700-4000\r\n> \r\n> 40L (10C) 40A Low Temperature type\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR21700-5000\r\n> \r\n> 50E (3C) 15A\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> INR21700-5000\r\n> \r\n> 50SE (6C) 30A\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> LFP26700-4300\r\n> \r\n> 43E (3C) 12.9A\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n> Cylindrical\r\n> \r\n> LFP26700-4500\r\n> \r\n> 45E (3C) 13.5A\r\n> \r\n> mass quantity\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> New Lot\r\n> \r\n>  \r\n> \r\n>  \r\n> \r\n> 18. Maxell\r\n> \r\n> Type\r\n> \r\n> Model\r\n> \r\n> Specification\r\n> \r\n> Available Quantity\r\n> \r\n> Unit Price\r\n> \r\n> Price Term\r\n> \r\n> Validity\r\n> \r\n> Cell Lot\r\n> \r\n> Remark\r\n> \r\n> Prismatic\r\n> \r\n> ICP653865SRU\r\n> \r\n> 3.7V, 1800mAh\r\n> \r\n> 48,760\r\n> \r\n> TBI\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1-2 weeks\r\n> \r\n> B0711\r\n> \r\n>  \r\n> \r\n> Prismatic\r\n> \r\n> ICP653450AHR\r\n> \r\n> 1360mAh 3.85V (4.35V charge)\r\n> \r\n> mass quantity\r\n> \r\n> $4\r\n> \r\n> FCA Shenzhen\r\n> \r\n> 1 week\r\n> \r\n> I2101\r\n> \r\n>  \r\n> \r\n> Prismatic\r\n> \r\n> ICP103450AHR\r\n> \r\n> 2160mAh 3.8V (4.35V charge)\r\n> \r\n> 49,400\r\n> \r\n> TBI\r\n> \r\n> FCA HK\r\n> \r\n> 1 week\r\n> \r\n> within 2020\r\n> \r\n>  \r\n> \r\n>  \r\n> \r\n>  \r\n> \r\n> Warm regards\r\n> \r\n>  \r\n> \r\n> Shmuel De-Leon/CEO\r\n> \r\n> Shmuel De-Leon Energy, Ltd.\r\n> \r\n> Mazal Arie 10, Hod-Hasharon, Israel 4536045\r\n> \r\n> Tel/Fax: 972-77-5010792\r\n> \r\n> Mobile: 972-52-8601517\r\n> \r\n> E-Mail: shmuel@sdle.co.il <mailto:shmueld33@gmail.com>\r\n> Company web site: www.sdle.co.il <http://www.sdle.co.il/>\r\n> Battery DataBase web site: www.batteriesdatabase.com <http://www.batteriesdatabase.com/>\r\n> <image001.jpg>\r\n> \r\n>  \r\n> \r\n> Sign-up to our weekly battery newsletter https://www.sdle.co.il/services/newsletter/\r\n> \r\n>  \r\n> \r\n> <Shmuel de-leon Energy company cells purchasing services presentation ver 1.pdf><EOL Annoucement of BD  BF  GA  NCR18500A ( 20251007).pdf>\r\n\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n￼\r\n\r\n\r\nbrian@mavrix.one <mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-11-10 16:37:28','2025-12-09 19:31:07','2025-12-09 19:31:07','2025-12-09 19:31:07',NULL,NULL,NULL),
(942,4,'<CAEvVzq2=buHYNCZPaMd1i+osTxg0kzmE3uhr-Ox92Ou1TkG5Zg@mail.gmail.com>',NULL,NULL,'=?UTF-8?Q?Re=3A_Great_to_reconnect_=E2=80=94_I=E2=80=99d_love_to_visit_your_?= =?UTF-8?Q?Tampa_facility?=','liz@brandysmoldandtool.com','Elizabeth Perkins','<div dir=\"auto\">Tomorrow is still open! I just have a hard stop for another meeting at 11:00am.</div><div dir=\"auto\"><br></div><div dir=\"auto\">I’ll send the invite over to you. Looking forward to it!</div><div dir=\"auto\"><br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><img width=\"96\" height=\"38\" src=\"https://ci3.googleusercontent.com/mail-sig/AIorK4xpMAQi-3CccYzdad7DnbPHOkAHkZLthTPdqQy_mmGqmNua-ldbvlLW3KyCXMvL0Duc1K_cjsds8w7y\"><div><b>Liz Perkins</b><div>Vice President</div><div>585-233-0566<div><br></div></div></div></div></div></div></div><div><br></div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Nov 10, 2025 at 4:11 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\">\r\n    <div id=\"m_386639284602924162bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Is Tuesday still open?</div><div id=\"m_386639284602924162bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">If not I can do Thursday.</div><div id=\"m_386639284602924162bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Sorry just trying to juggle events…</div><div id=\"m_386639284602924162bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Thanks!</div><div id=\"m_386639284602924162bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px;line-height:auto\">Rick</div> <br> <div id=\"m_386639284602924162bloop_sign_1762809004616258048\">\r\n        \r\n     \r\n    <br>\r\n     \r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD, </span><div style=\"font-family:Helvetica,Arial\">Founder, CTO</div><div style=\"font-family:Helvetica,Arial\"><div><div><img src=\"cid:ii_19a6fb64d39736203532\" style=\"max-width: 100%;\"><br></div><div><a href=\"https://mavrix1.com/\" target=\"_blank\">https://mavrix1.com</a></div></div><div><br></div><div><div>CONFIDENTIALITY NOTICE</div><div>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</div><div><br></div><div>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</div><div><br></div><div>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</div></div></div></div></div> <br><p>On November 7, 2025 at 4:32:18 PM, Elizabeth Perkins (<a href=\"mailto:liz@brandysmoldandtool.com\" target=\"_blank\">liz@brandysmoldandtool.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>Happy Friday!! Great to hear from you.</div><div><p>Could we set up a call for either Tuesday, November 11 at 10:00 AM ET or Thursday, November 13 at 10:00 AM ET? I’d like to loop in Michaela and Dan as well so we can align in one shot.</p>\r\n<p>If one of those times works, I’ll send a calendar invite with the details.</p></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><img width=\"96\" height=\"38\" src=\"https://ci3.googleusercontent.com/mail-sig/AIorK4xpMAQi-3CccYzdad7DnbPHOkAHkZLthTPdqQy_mmGqmNua-ldbvlLW3KyCXMvL0Duc1K_cjsds8w7y\"><div><b>Liz Perkins</b><div>Vice President</div><div>585-233-0566<div><br></div></div></div></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Nov 5, 2025 at 5:29 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n    <div style=\"font-family:Helvetica,Arial;font-size:13px\">Hi Elizabeth,</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">Yes, would definitely like to catch up. </div><div style=\"font-family:Helvetica,Arial;font-size:13px\">I’m still in Rochester and we’re still in process in Tampa, but yes, let’s reconnect!</div><div style=\"font-family:Helvetica,Arial;font-size:13px\">I’m usually open on Tuesday or Thursday mornings, if you want to setup a call.</div> Please let me know what works best for you!<div>Rick<br> <div class=\"gmail_signature\">\r\n         \r\n      \r\n    <br>\r\n      \r\n<div><span style=\"font-family:Helvetica,Arial\">Rick Mislan, PhD, </span><div style=\"font-family:Helvetica,Arial\">Founder, CTO</div><div style=\"font-family:Helvetica,Arial\"><div><div><img src=\"cid:ii_19a6fb64d395baaa99a1\" style=\"max-width: 100%;\"><br></div><div><a href=\"https://mavrix1.com/\" target=\"_blank\">https://mavrix1.com</a></div></div><div><br></div><div><div>CONFIDENTIALITY NOTICE</div><div>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</div><div><br></div><div>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</div><div><br></div><div>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</div></div></div></div></div> <br><p>On October 28, 2025 at 12:02:51 PM, Elizabeth Perkins (<a href=\"mailto:liz@brandysmoldandtool.com\" target=\"_blank\">liz@brandysmoldandtool.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div><p>Hi Rick,</p>\r\n<p>I wanted to check in and see how things have been going since we last spoke.</p>\r\n<p>I’ve recently moved to the Tampa–St. Petersburg area and would love the opportunity to visit and tour your facility whenever it’s convenient. It would be great to see your setup firsthand.</p><p>I&#39;d also love to hear how your plans have progressed since we last talked.</p>\r\n<p>Let me know what your schedule looks like over the next few weeks for a meeting, and if I am able to tour your facility. I can be flexible to fit what works best for you and your team.</p>\r\n<p>Looking forward to catching up and continuing the conversation!</p></div><div><br></div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><img width=\"96\" height=\"38\" src=\"https://ci3.googleusercontent.com/mail-sig/AIorK4xpMAQi-3CccYzdad7DnbPHOkAHkZLthTPdqQy_mmGqmNua-ldbvlLW3KyCXMvL0Duc1K_cjsds8w7y\"><div><b>Liz Perkins</b><div>Vice President</div><div>585-233-0566<div><br></div></div></div></div></div></div></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</div></blockquote></div>\r\n</div></div></span></blockquote>\r\n\r\n\r\n</blockquote></div></div>','Tomorrow is still open! I just have a hard stop for another meeting at\r\n11:00am.\r\n\r\nI’ll send the invite over to you. Looking forward to it!\r\n\r\n*Liz Perkins*\r\nVice President\r\n585-233-0566\r\n\r\n\r\n\r\nOn Mon, Nov 10, 2025 at 4:11 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> Is Tuesday still open?\r\n> If not I can do Thursday.\r\n> Sorry just trying to juggle events…\r\n> Thanks!\r\n> Rick\r\n>\r\n>\r\n> Rick Mislan, PhD,\r\n> Founder, CTO\r\n>\r\n> https://mavrix1.com\r\n>\r\n> CONFIDENTIALITY NOTICE\r\n> This communication, including any attachments, may contain confidential,\r\n> privileged, or Controlled Unclassified Information (CUI) protected under\r\n> federal law. It is intended solely for the use of the designated\r\n> recipient(s). Any unauthorized review, use, disclosure, distribution, or\r\n> copying is strictly prohibited and may be unlawful.\r\n>\r\n> If you are not the intended recipient, please notify the sender\r\n> immediately, delete this email, and destroy all copies.\r\n>\r\n> Unless expressly stated, the views and opinions expressed herein are those\r\n> of the sender and do not necessarily reflect those of the sender’s employer\r\n> or any U.S. Government agency. All recipients are responsible for handling\r\n> information in accordance with applicable federal regulations, including\r\n> but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n>\r\n> On November 7, 2025 at 4:32:18 PM, Elizabeth Perkins (\r\n> liz@brandysmoldandtool.com) wrote:\r\n>\r\n> Hi Rick,\r\n>\r\n> Happy Friday!! Great to hear from you.\r\n>\r\n> Could we set up a call for either Tuesday, November 11 at 10:00 AM ET or\r\n> Thursday, November 13 at 10:00 AM ET? I’d like to loop in Michaela and Dan\r\n> as well so we can align in one shot.\r\n>\r\n> If one of those times works, I’ll send a calendar invite with the details.\r\n> *Liz Perkins*\r\n> Vice President\r\n> 585-233-0566\r\n>\r\n>\r\n>\r\n> On Wed, Nov 5, 2025 at 5:29 PM Rick <rick@mavrix.one> wrote:\r\n>\r\n>> Hi Elizabeth,\r\n>> Yes, would definitely like to catch up.\r\n>> I’m still in Rochester and we’re still in process in Tampa, but yes,\r\n>> let’s reconnect!\r\n>> I’m usually open on Tuesday or Thursday mornings, if you want to setup a\r\n>> call.\r\n>> Please let me know what works best for you!\r\n>> Rick\r\n>>\r\n>> Rick Mislan, PhD,\r\n>> Founder, CTO\r\n>>\r\n>> https://mavrix1.com\r\n>>\r\n>> CONFIDENTIALITY NOTICE\r\n>> This communication, including any attachments, may contain confidential,\r\n>> privileged, or Controlled Unclassified Information (CUI) protected under\r\n>> federal law. It is intended solely for the use of the designated\r\n>> recipient(s). Any unauthorized review, use, disclosure, distribution, or\r\n>> copying is strictly prohibited and may be unlawful.\r\n>>\r\n>> If you are not the intended recipient, please notify the sender\r\n>> immediately, delete this email, and destroy all copies.\r\n>>\r\n>> Unless expressly stated, the views and opinions expressed herein are\r\n>> those of the sender and do not necessarily reflect those of the sender’s\r\n>> employer or any U.S. Government agency. All recipients are responsible for\r\n>> handling information in accordance with applicable federal regulations,\r\n>> including but not limited to FAR, DFARS, ITAR, and CUI handling\r\n>> requirements.\r\n>>\r\n>> On October 28, 2025 at 12:02:51 PM, Elizabeth Perkins (\r\n>> liz@brandysmoldandtool.com) wrote:\r\n>>\r\n>> Hi Rick,\r\n>>\r\n>> I wanted to check in and see how things have been going since we last\r\n>> spoke.\r\n>>\r\n>> I’ve recently moved to the Tampa–St. Petersburg area and would love the\r\n>> opportunity to visit and tour your facility whenever it’s convenient. It\r\n>> would be great to see your setup firsthand.\r\n>>\r\n>> I\'d also love to hear how your plans have progressed since we last talked.\r\n>>\r\n>> Let me know what your schedule looks like over the next few weeks for a\r\n>> meeting, and if I am able to tour your facility. I can be flexible to fit\r\n>> what works best for you and your team.\r\n>>\r\n>> Looking forward to catching up and continuing the conversation!\r\n>>\r\n>>\r\n>> *Liz Perkins*\r\n>> Vice President\r\n>> 585-233-0566\r\n>>\r\n>>',0,0,0,0,0,0,'2025-11-10 21:40:39','2025-12-09 19:31:07','2025-12-09 19:31:07','2025-12-09 19:31:07',NULL,NULL,NULL),
(943,4,'<calendar-abd811a4-b96d-4ddc-a613-49dc119cb658@google.com>',NULL,NULL,'=?UTF-8?Q?Invitation=3A_Mavrix_x_Brandy=E2=80=99s_Mold_=26_Tool_=2D_Follow?= =?UTF-8?Q?=2DUp_Discussion_=40_Tue_Nov_11=2C_2025_10am_=2D_10=3A30am_=28EST=29_=28rick?= =?UTF-8?Q?=40mavrix=2Eone=29?=','liz@brandysmoldandtool.com','Elizabeth Perkins','<!doctype html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><meta name=\"color-scheme\" content=\"light dark\"><meta name=\"supported-color-schemes\" content=\"light dark\">\r\n    <style>\r\n      body, html {\r\n        font-family: Roboto, Helvetica, Arial, sans-serif;\r\n      }\r\n\r\n      body {\r\n        margin: 0;\r\n        padding: 0;\r\n        -webkit-font-smoothing: antialiased;\r\n        -webkit-text-size-adjust: 100%;\r\n        -ms-text-size-adjust: 100%;\r\n      }\r\n\r\n      #outlook a {\r\n        padding: 0;\r\n      }\r\n\r\n      .ReadMsgBody {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass {\r\n        width: 100%;\r\n      }\r\n\r\n      .ExternalClass * {\r\n        line-height: 100%;\r\n      }\r\n\r\n      table,\r\n      td {\r\n        mso-table-lspace: 0pt;\r\n        mso-table-rspace: 0pt;\r\n      }\r\n\r\n      img {\r\n        border: 0;\r\n        height: auto;\r\n        line-height: 100%;\r\n        outline: none;\r\n        text-decoration: none;\r\n        -ms-interpolation-mode: bicubic;\r\n      }\r\n\r\n      p {\r\n        display: block;\r\n        margin: 13px 0;\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        @-ms-viewport {\r\n          width: 320px;\r\n        }\r\n\r\n        @viewport {\r\n          width: 320px;\r\n        }\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n    <!--[if mso]>\r\n          <xml>\r\n          <o:OfficeDocumentSettings>\r\n            <o:AllowPNG/>\r\n            <o:PixelsPerInch>96</o:PixelsPerInch>\r\n          </o:OfficeDocumentSettings>\r\n          </xml>\r\n          <![endif]-->\r\n    <!--[if lte mso 11]>\r\n          <style>\r\n            .outlook-group-fix { width:100% !important; }\r\n          </style>\r\n    <![endif]-->\r\n\r\n    <!--[if !mso]><!-- -->\r\n  <style>body, html {font-family:Roboto,Helvetica,Arial,sans-serif;}@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Roboto\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Material Icons Extended\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/materialiconsextended/v154/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialicons/v144/Gw6kwdfw6UnXLJCcmafZyFRXb3BL9rvi0QZG3g.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons {\r\n  font-family: \'Google Material Icons\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlematerialiconsfilled/v118/WWXFlimHYg6HKI3TavMkbKdhBmDvgach8TVpeGsuueSZJH4.otf) format(\'opentype\');\r\n}\r\n\r\n.google-material-icons-filled {\r\n  font-family: \'Google Material Icons Filled\';\r\n  font-weight: normal;\r\n  font-style: normal;\r\n  font-size: 24px;\r\n  line-height: 1;\r\n  letter-spacing: normal;\r\n  text-transform: none;\r\n  display: inline-block;\r\n  white-space: nowrap;\r\n  word-wrap: normal;\r\n  direction: ltr;\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 400;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 500;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwM.ttf) format(\'truetype\');\r\n}\r\n@font-face {\r\n  font-family: \'Google Sans\';\r\n  font-style: normal;\r\n  font-weight: 700;\r\n  src: url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwM.ttf) format(\'truetype\');\r\n}\r\n</style><!--<![endif]-->\r\n      <style>\r\n        .body-container {\r\n          padding-left: 16px;\r\n          padding-right: 16px;\r\n        }\r\n      </style>\r\n  \r\n      <style>\r\n        u+.body .body-container,\r\n        body[data-outlook-cycle] .body-container,\r\n        #MessageViewBody .body-container {\r\n          padding-left: 0;\r\n          padding-right: 0;\r\n        }\r\n      </style>\r\n  \r\n    <style>\r\n      @media only screen and (min-width:580px) {\r\n        .column-per-37 {\r\n          width: 37% !important;\r\n          max-width: 37%;\r\n        }\r\n\r\n        .column-per-63 {\r\n          width: 63% !important;\r\n          max-width: 63%;\r\n        }\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      .appointment-buttons th {\r\n        display: block;\r\n        clear: both;\r\n        float: left;\r\n        margin-top: 12px;\r\n      }\r\n\r\n      .appointment-buttons th a {\r\n        float: left;\r\n      }\r\n\r\n      #MessageViewBody .appointment-buttons th {\r\n       margin-top: 24px;\r\n      }\r\n    </style>\r\n  \r\n    <style>\r\n      @media only screen and (max-width:580px) {\r\n        table.full-width-mobile {\r\n          width: 100% !important;\r\n        }\r\n\r\n        td.full-width-mobile {\r\n          width: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      .main-container-inner,\r\n      .info-bar-inner {\r\n        padding: 12px 16px !important;\r\n      }\r\n\r\n      .main-column-table-ltr {\r\n        padding-right: 0 !important;\r\n      }\r\n\r\n      .main-column-table-rtl {\r\n        padding-left: 0 !important;\r\n      }\r\n\r\n      @media only screen and (min-width:580px) {\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .main-column-table-ltr {\r\n          padding-right: 32px !important;\r\n        }\r\n\r\n        .main-column-table-rtl {\r\n          padding-left: 32px !important;\r\n        }\r\n\r\n        .appointment-buttons th {\r\n          display: table-cell;\r\n          clear: none;\r\n        }\r\n      }\r\n\r\n      .primary-text {\r\n        color: #3c4043 !important;\r\n      }\r\n\r\n      .secondary-text,\r\n      .phone-number a {\r\n        color: #70757a !important;\r\n      }\r\n\r\n      .accent-text {\r\n        color: #1a73e8 !important;\r\n      }\r\n\r\n      .accent-text-dark {\r\n        color: #185abc !important;\r\n      }\r\n\r\n      .grey-button-text,\r\n      .attachment-chip a {\r\n        color: #5f6368 !important;\r\n      }\r\n\r\n      .primary-button {\r\n        background-color: #1a73e8 !important;\r\n      }\r\n\r\n      .primary-button-text {\r\n        color: #fff !important;\r\n      }\r\n\r\n      .underline-on-hover:hover {\r\n        text-decoration: underline !important;\r\n      }\r\n\r\n      .grey-infobar-text {\r\n        color: #202124 !important;\r\n      }\r\n\r\n      @media (prefers-color-scheme: dark) {\r\n        .primary-text:not([class^=\"x_\"]) {\r\n          color: #e8eaed !important;\r\n        }\r\n\r\n        .secondary-text:not([class^=\"x_\"]),\r\n        .phone-number:not([class^=\"x_\"]) a {\r\n          color: #9aa0a6 !important;\r\n        }\r\n\r\n        .grey-button-text:not([class^=\"x_\"]),\r\n        .attachment-chip:not([class^=\"x_\"]) a {\r\n          color: #bdc1c6 !important;\r\n        }\r\n\r\n        .accent-text:not([class^=\"x_\"]),\r\n        .hairline-button-text:not([class^=\"x_\"]) {\r\n          color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button:not([class^=\"x_\"]) {\r\n          background-color: #8ab4f8 !important;\r\n        }\r\n\r\n        .primary-button-text:not([class^=\"x_\"]) {\r\n          color: #202124 !important;\r\n        }\r\n      }\r\n    </style>\r\n    <style>\r\n      @media (prefers-color-scheme: dark) {\r\n        .cse-banner:not([class^=\"x_\"]) {\r\n          background-color: #3c4043 !important; /* Google Grey 800 */\r\n        }\r\n\r\n        .encryption-icon:not([class^=\"x_\"]) {\r\n          /* WARNING: This causes the whole style tag to get stripped in Gmail. */\r\n          background-image: url(\'https://fonts.gstatic.com/s/i/googlematerialiconsfilled/encrypted/v3/gm_grey200-24dp/2x/gm_filled_encrypted_gm_grey200_24dp.png\') !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if !mso]><!-->\r\n    <style>\r\n      .prevent-link a {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n        font-size: inherit !important;\r\n        font-family: inherit !important;\r\n        font-weight: inherit !important;\r\n        line-height: inherit !important;\r\n      }\r\n    </style>\r\n    <!--<![endif]-->\r\n\r\n    <!--[if mso | IE]>\r\n      <style>\r\n        .main-container-inner {\r\n          padding: 24px 32px !important;\r\n        }\r\n\r\n        .info-bar-inner {\r\n          padding: 12px 32px !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon {\r\n          /* We use the IE workaround instead. */\r\n          background-image: none !important;\r\n        }\r\n\r\n        .cse-banner .encryption-icon .ms-fallback {\r\n          display: block !important;\r\n        }\r\n\r\n        /* NB: Some MS clients ignore dark-scheme styling and apply their own, so there\'s nothing we can do to help there. */\r\n        @media (prefers-color-scheme: dark) {\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback {\r\n            display: none !important;\r\n          }\r\n\r\n          .cse-banner:not([class^=\"x_\"]) .encryption-icon .ms-fallback-dark {\r\n            display: block !important;\r\n          }\r\n        }\r\n      </style>\r\n    <![endif]-->\r\n  </head><body class=\"body\"><span itemscope itemtype=\"http://schema.org/InformAction\"><span style=\"display:none\" itemprop=\"about\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"description\" content=\"Invitation from Elizabeth Perkins\"/></span><span itemprop=\"object\" itemscope itemtype=\"http://schema.org/Event\"><meta itemprop=\"eventStatus\" content=\"http://schema.org/EventScheduled\"/><span itemprop=\"publisher\" itemscope itemtype=\"http://schema.org/Organization\"><meta itemprop=\"name\" content=\"Google Calendar\"/></span><meta itemprop=\"eventId/googleCalendar\" content=\"7vshhfncvqh8vptj319e7msf0c\"/><span style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\" itemprop=\"name\">Mavrix x Brandy’s Mold &amp; Tool – Follow-Up Discussion</span><meta itemprop=\"url\" content=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=N3ZzaGhmbmN2cWg4dnB0ajMxOWU3bXNmMGMgcmlja0BtYXZyaXgub25l&amp;tok=MjYjbGl6QGJyYW5keXNtb2xkYW5kdG9vbC5jb21jNjUyYTEyMTRlMTI2MmFlZmQ2NTdiMTdjOWMxYjU2ZjYyZGU2OGI2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\"/><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20251111T150000Z\"></time><time itemprop=\"endDate\" datetime=\"20251111T153000Z\"></time></span><div style=\"display: none; font-size: 1px; color: #fff; line-height: 1px; height: 0; max-height: 0; width: 0; max-width: 0; opacity: 0; overflow: hidden;\">Join with Google Meet – You have been invited by Elizabeth Perkins to attend an event named Mavrix x Brandy’s Mold &amp; Tool – Follow-Up Discussion on Tuesday Nov 11, 2025 ⋅ 10am – 10:30am (Eastern Time - New York).</div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"body-container\"><tbody><tr><td style=\"\" class=\"\" align=\"left\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td height=\"16\" style=\"height:16px;\"><![endif]--><div style=\"height:16px;\" aria-hidden=\"true\"> &nbsp; </div><!--[if mso | IE]></td></tr></table><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"border: solid 1px #dadce0; border-radius: 8px; direction: rtl; font-size: 0; padding: 24px 32px; text-align: left; vertical-align: top;\" class=\"main-container-inner\"><!--[if mso | IE]><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:37%;\" ><![endif]--><div class=\"column-per-37 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:28px;\"><a href=\"https://meet.google.com/znd-nmfd-zok?hs=224\" class=\"primary-button-text\" style=\"display: inline-block;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"display: inline-block\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"background-color: #1a73e8; cursor: auto; padding: 10px 25px; border: none; border-radius: 4px; margin: 0;\" class=\"primary-button\"><!--[if mso]><a href=\"https://meet.google.com/znd-nmfd-zok?hs=224\" class=\"primary-button-text\" target=\"_blank\"><![endif]--><span class=\"primary-button-text\" style=\"font-family: &#39;Google Sans&#39;, Roboto, sans-serif;font-size: 14px; letter-spacing: 0.25px; line-height: 20px; mso-line-height-rule: exactly; text-decoration: none; text-transform: none; word-wrap: break-word; white-space: nowrap;color: #fff;font-weight: 700;white-space: normal;\">Join with Google Meet</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Meeting link</h2></td></tr></table><!-- Use grey text for the Meet link--><div><a style=\"display: inline-block;;color: #70757a; text-decoration: none;\" class=\"secondary-text underline-on-hover\" href=\"https://meet.google.com/znd-nmfd-zok?hs=224\">meet.google.com/znd-nmfd-zok</a></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Join by phone</h2></td></tr></table><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">(US) </span><a href=\"tel:+1-414-909-6861%3B713322626%23\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">+1 414-909-6861</a> <br><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;;\">PIN: 713322626</span><br><br><a href=\"https://tel.meet/znd-nmfd-zok?pin=2620433940503&amp;hs=0\" style=\"display: inline-block;color: #1a73e8; text-decoration: none;\" target=\"_blank\" class=\"accent-text underline-on-hover\">More phone numbers</a><br></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]><td class=\"\" style=\"vertical-align:top;width:63%;padding-right:32px;\" ><![endif]--><div class=\"column-per-63 outlook-group-fix\" style=\"font-size: 13px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;overflow: hidden; word-wrap: break-word;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" class=\"main-column-table-ltr\" style=\"padding-right: 32px; padding-left: 0;;table-layout: fixed;\"><tbody><tr><td class=\"main-column-td\" style=\"padding:0; vertical-align:top;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\" style=\"table-layout: fixed;\"><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><span aria-hidden=\"true\"><time itemprop=\"startDate\" datetime=\"20251111T150000Z\"></time><time itemprop=\"endDate\" datetime=\"20251111T153000Z\"></time></span><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">When</h2></td></tr></table><span>Tuesday Nov 11, 2025 ⋅ 10am – 10:30am (Eastern Time - New York)</span></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:24px;\"><div style=\"font-family: Roboto, sans-serif;font-style: normal; font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0.2px;color: #3c4043; text-decoration: none;\" class=\"primary-text\" role=\"presentation\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"padding-bottom: 4px;\"><tr><td><h2 class=\"primary-text\" style=\"font-size: 14px;color: #3c4043; text-decoration: none;font-weight: 700;-webkit-font-smoothing: antialiased;margin: 0; padding: 0;\">Guests</h2></td></tr></table><div style=\"padding-bottom: 4px; text-align: left;;color: #3c4042;\"><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:liz@brandysmoldandtool.com\">Elizabeth Perkins</a></span><meta itemprop=\"email\" content=\"liz@brandysmoldandtool.com\"/></span><span itemprop=\"organizer\" itemscope itemtype=\"http://schema.org/Person\"><meta itemprop=\"name\" content=\"Elizabeth Perkins\"/><meta itemprop=\"email\" content=\"liz@brandysmoldandtool.com\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> - organizer</span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span><meta itemprop=\"email\" content=\"rick@mavrix.one\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:mperkins.brandys@frontiernet.net\">mperkins.brandys@frontiernet.net</a></span><meta itemprop=\"email\" content=\"mperkins.brandys@frontiernet.net\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div><div><span itemprop=\"attendee\" itemscope itemtype=\"http://schema.org/Person\"><span itemprop=\"name\" class=\"notranslate\"><a class=\"primary-text underline-on-hover\" style=\"display: inline-block;;color: #3c4043; text-decoration: none;\" href=\"mailto:brandys@frontiernet.net\">brandys@frontiernet.net</a></span><meta itemprop=\"email\" content=\"brandys@frontiernet.net\"/></span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"></span></div></div><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=N3ZzaGhmbmN2cWg4dnB0ajMxOWU3bXNmMGMgcmlja0BtYXZyaXgub25l&amp;tok=MjYjbGl6QGJyYW5keXNtb2xkYW5kdG9vbC5jb21jNjUyYTEyMTRlMTI2MmFlZmQ2NTdiMTdjOWMxYjU2ZjYyZGU2OGI2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;color: #1a73e8; text-decoration: none;font-weight: 700;\" target=\"_blank\" class=\"accent-text underline-on-hover\">View all guest info</a></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:0px;\"><div style=\"color: #3c4043; text-decoration: none;;font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\" class=\"primary-text\"><div><span style=\"font-weight: 700;-webkit-font-smoothing: antialiased;\">Reply</span><span class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;\"> for <a class=\"secondary-text underline-on-hover\" style=\"display: inline-block;;color: #70757a; text-decoration: none;\" href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a></span></div></div></td></tr><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding-bottom:16px;\"><div style=\"font-family: Roboto, sans-serif;font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; text-align: left;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse: separate;\"><tr><td style=\"padding-top: 8px; padding-left: 0; padding-right: 12px;\"><!-- RSVP buttons --><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;;display: inline-block;;margin-right: 12px; margin-left: 0;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Yes\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N3ZzaGhmbmN2cWg4dnB0ajMxOWU3bXNmMGMgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjYjbGl6QGJyYW5keXNtb2xkYW5kdG9vbC5jb21jNjUyYTEyMTRlMTI2MmFlZmQ2NTdiMTdjOWMxYjU2ZjYyZGU2OGI2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N3ZzaGhmbmN2cWg4dnB0ajMxOWU3bXNmMGMgcmlja0BtYXZyaXgub25l&amp;rst=1&amp;tok=MjYjbGl6QGJyYW5keXNtb2xkYW5kdG9vbC5jb21jNjUyYTEyMTRlMTI2MmFlZmQ2NTdiMTdjOWMxYjU2ZjYyZGU2OGI2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Yes</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"border-left: solid 1px #dadce0; border-right: solid 1px #dadce0;\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/No\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N3ZzaGhmbmN2cWg4dnB0ajMxOWU3bXNmMGMgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjYjbGl6QGJyYW5keXNtb2xkYW5kdG9vbC5jb21jNjUyYTEyMTRlMTI2MmFlZmQ2NTdiMTdjOWMxYjU2ZjYyZGU2OGI2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 12px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N3ZzaGhmbmN2cWg4dnB0ajMxOWU3bXNmMGMgcmlja0BtYXZyaXgub25l&amp;rst=2&amp;tok=MjYjbGl6QGJyYW5keXNtb2xkYW5kdG9vbC5jb21jNjUyYTEyMTRlMTI2MmFlZmQ2NTdiMTdjOWMxYjU2ZjYyZGU2OGI2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">No</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td><td align=\"center\" vertical-align=\"middle\" role=\"presentation\"><span itemprop=\"potentialaction\" itemscope itemtype=\"http://schema.org/RsvpAction\"><meta itemprop=\"attendance\" content=\"http://schema.org/RsvpAttendance/Maybe\"/><span itemprop=\"handler\" itemscope itemtype=\"http://schema.org/HttpActionHandler\"><link itemprop=\"method\" href=\"http://schema.org/HttpRequestMethod/GET\"/><span style=\"color: #5f6367;\"><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N3ZzaGhmbmN2cWg4dnB0ajMxOWU3bXNmMGMgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjYjbGl6QGJyYW5keXNtb2xkYW5kdG9vbC5jb21jNjUyYTEyMTRlMTI2MmFlZmQ2NTdiMTdjOWMxYjU2ZjYyZGU2OGI2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\"><tr><td align=\"center\" role=\"presentation\" valign=\"middle\" style=\"padding: 6px 0; padding-left: 12px; padding-right: 16px; white-space: nowrap;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=RESPOND&amp;eid=N3ZzaGhmbmN2cWg4dnB0ajMxOWU3bXNmMGMgcmlja0BtYXZyaXgub25l&amp;rst=3&amp;tok=MjYjbGl6QGJyYW5keXNtb2xkYW5kdG9vbC5jb21jNjUyYTEyMTRlMTI2MmFlZmQ2NTdiMTdjOWMxYjU2ZjYyZGU2OGI2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" itemprop=\"url\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">Maybe</span><!--[if mso]></a><![endif]--></td></tr></table></a></span></span></span></td></tr></table><!-- More options --><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=N3ZzaGhmbmN2cWg4dnB0ajMxOWU3bXNmMGMgcmlja0BtYXZyaXgub25l&amp;tok=MjYjbGl6QGJyYW5keXNtb2xkYW5kdG9vbC5jb21jNjUyYTEyMTRlMTI2MmFlZmQ2NTdiMTdjOWMxYjU2ZjYyZGU2OGI2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" style=\"display: inline-block;;font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\" class=\"grey-button-text\" target=\"_blank\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border: solid 1px #dadce0; border-radius: 16px; border-collapse: separate;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;\"><tr><td align=\"center\" vertical-align=\"middle\" role=\"presentation\" style=\"padding: 6px 0; padding-left: 16px; padding-right: 12px; white-space: nowrap;;color: #5f6367;\"><!--[if mso]><a href=\"https://calendar.google.com/calendar/event?action=VIEW&amp;eid=N3ZzaGhmbmN2cWg4dnB0ajMxOWU3bXNmMGMgcmlja0BtYXZyaXgub25l&amp;tok=MjYjbGl6QGJyYW5keXNtb2xkYW5kdG9vbC5jb21jNjUyYTEyMTRlMTI2MmFlZmQ2NTdiMTdjOWMxYjU2ZjYyZGU2OGI2&amp;ctz=America%2FNew_York&amp;hl=en&amp;es=0\" class=\"grey-button-text\" target=\"_blank\"><![endif]--><span class=\"grey-button-text\" style=\"font-weight: 400;font-family: &#39;Google Sans&#39;, Roboto, sans-serif;color: #5f6368; font-size: 14px; line-height: 120%; mso-line-height-rule: exactly; margin: 0; text-decoration: none; text-transform: none;\">More options</span><!--[if mso]></a><![endif]--></td></tr></table></a></td></tr></table></div></td></tr></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\" style=\"width:100%;\" class=\"\"><tbody><tr><td style=\"font-size: 0; padding: 0; text-align: left; word-break: break-word;;padding:4px 12px;\" class=\"\" align=\"left\"><div class=\"secondary-text\" style=\"color: #70757a; text-decoration: none;font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly; text-align: left;\"><p>Invitation from <a href=\"https://calendar.google.com/calendar/\" class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" target=\"_blank\">Google Calendar</a></p><p>You are receiving this email because you are an attendee on the event.</p><p>Forwarding this invitation could allow any recipient to send a response to the organizer, be added to the guest list, invite others regardless of their own invitation status, or modify your RSVP. <a class=\"accent-text underline-on-hover\" style=\"font-family: Roboto, sans-serif;font-size: 12px; line-height: 16px; mso-line-height-rule: exactly;;color: #1a73e8; text-decoration: none;\" href=\"https://support.google.com/calendar/answer/37135#forwarding\">Learn more</a></p></div></td></tr></tbody></table></td></tr></tbody></table></span></span></body></html>','Mavrix x Brandy’s Mold & Tool – Follow-Up Discussion\r\nTuesday Nov 11, 2025 ⋅ 10am – 10:30am\r\nEastern Time - New York\r\n\r\nJoin with Google Meet\r\nhttps://meet.google.com/znd-nmfd-zok?hs=224\r\n\r\n\r\n	\r\nJoin by phone\r\n(US) +1 414-909-6861\r\nPIN: 713322626\r\n\r\nMore phone numbers\r\nhttps://tel.meet/znd-nmfd-zok?pin=2620433940503&hs=0\r\n\r\n\r\nOrganizer\r\nElizabeth Perkins\r\nliz@brandysmoldandtool.com\r\n\r\nGuests\r\nElizabeth Perkins - organizer\r\nrick@mavrix.one\r\nmperkins.brandys@frontiernet.net\r\nbrandys@frontiernet.net\r\nView all guest info  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=N3ZzaGhmbmN2cWg4dnB0ajMxOWU3bXNmMGMgcmlja0BtYXZyaXgub25l&tok=MjYjbGl6QGJyYW5keXNtb2xkYW5kdG9vbC5jb21jNjUyYTEyMTRlMTI2MmFlZmQ2NTdiMTdjOWMxYjU2ZjYyZGU2OGI2&ctz=America%2FNew_York&hl=en&es=0\r\n\r\nReply for rick@mavrix.one and view more details  \r\nhttps://calendar.google.com/calendar/event?action=VIEW&eid=N3ZzaGhmbmN2cWg4dnB0ajMxOWU3bXNmMGMgcmlja0BtYXZyaXgub25l&tok=MjYjbGl6QGJyYW5keXNtb2xkYW5kdG9vbC5jb21jNjUyYTEyMTRlMTI2MmFlZmQ2NTdiMTdjOWMxYjU2ZjYyZGU2OGI2&ctz=America%2FNew_York&hl=en&es=0\r\nYour attendance is optional.\r\n\r\n~~//~~\r\nInvitation from Google Calendar: https://calendar.google.com/calendar/\r\n\r\nYou are receiving this email because you are an attendee on the event.\r\n\r\nForwarding this invitation could allow any recipient to send a response to  \r\nthe organizer, be added to the guest list, invite others regardless of  \r\ntheir own invitation status, or modify your RSVP.\r\n\r\nLearn more https://support.google.com/calendar/answer/37135#forwarding\r\n',0,0,0,0,0,0,'2025-11-10 22:25:17','2025-12-09 19:31:08','2025-12-09 19:31:08','2025-12-09 19:31:08',NULL,NULL,NULL),
(944,4,' <SA1PR18MB48244634395A272045303B02A1CEA@SA1PR18MB4824.namprd18.prod.outlook.com>',NULL,NULL,'Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration','jtrevey@forgenano.com','James Trevey','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nHey Jordan,</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nSorry for going dark. The meeting went great. I would love to sync up with you to figure out next details. Can you chat at 8:30am MT tomorrow (11th)?</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\">\r\nJames</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b> Thursday, November 6, 2025 12:05 PM<br>\r\n<b>To:</b> James Trevey &lt;jtrevey@forgenano.com&gt;<br>\r\n<b>Cc:</b> Will McKenna &lt;WMcKenna@forgenano.com&gt;; Daniel &lt;dansheridanmusic@gmail.com&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div>Hi James,</div>\r\n<div><br>\r\n</div>\r\n<div>Hope you are well.&nbsp;&nbsp;</div>\r\n<div><br>\r\n</div>\r\n<div>How did your meeting go?&nbsp;</div>\r\n<div>\r\n<div dir=\"ltr\" class=\"x_gmail_signature\" data-smartmail=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\"><br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,0yjyucKyeUfIxS-5HFSvjrsDEo1K2sQDkz8oFv1cIzwEU8O73aVHhykbwL6rlE26TNk2-ufHYgRZUnkYoStD2sgHGVdzqKGuSup50N5h1F8,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n</div>\r\n<br>\r\n<div class=\"x_gmail_quote x_gmail_quote_container\">\r\n<div dir=\"ltr\" class=\"x_gmail_attr\">On Mon, Oct 27, 2025 at 2:33 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote class=\"x_gmail_quote\" style=\"margin:0px 0px 0px 0.8ex; border-left:1px solid rgb(204,204,204); padding-left:1ex\">\r\n<div dir=\"ltr\">\r\n<div>Hi James,</div>\r\n<div><br>\r\n</div>\r\n<div>We are logged on to the teams meeting.&nbsp;</div>\r\n<div>\r\n<div dir=\"ltr\" class=\"x_gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\"><br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,oTvbzZaLRCIhe4MhhhOwP3SQWQDt-6Fwcd6dQZR2vvpjA3wEcLTacBUH6dS2M_Ld9yfC3kJRxIbAniyQdmaJp7TgDFdc7r7sWlrEhV0RGfTYRb6Sfrc,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n</div>\r\n<br>\r\n<div class=\"x_gmail_quote\">\r\n<div dir=\"ltr\" class=\"x_gmail_attr\">On Thu, Oct 23, 2025 at 1:05 PM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote class=\"x_gmail_quote\" style=\"margin:0px 0px 0px 0.8ex; border-left:1px solid rgb(204,204,204); padding-left:1ex\">\r\n<div>\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nThanks for the call today. Attached are a bunch of documents:</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<ul style=\"margin-top:0px; margin-bottom:0px; list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">spec sheets for all (5) FN Products</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">spec sheet for the Samsung 53G</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">spec sheet for the Moli P50B</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Presentation from our call with ballpark cell availability and pricing</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Term sheet for capturing our relationship interests</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Skyfoundary proposal</div>\r\n</li></ul>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_m_-4115497688900238988m_-5188347059152730434appendonsend\"></div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI have your volumes from the ProgramProduct excel sheet that I\'ve plugged into the term sheet for now as a first draft. On your end I captured the following action items:</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<ul style=\"margin-top:0px; margin-bottom:0px; list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Review all documents in this email and confirm volumes and provide first pass review on the term sheet</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Review the Skyfoundary proposal and put together a first-pass budget/plan to support Forge as a partner</div>\r\n</li></ul>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI am out tomorrow for personal matters but look forward to our discussion on Monday.&nbsp;</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block; width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, October 22, 2025 9:45 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Will McKenna &lt;<a href=\"mailto:WMcKenna@forgenano.com\" target=\"_blank\">WMcKenna@forgenano.com</a>&gt;; Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron\r\n &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">You bet,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Speak with you tomorrow.&nbsp;</div>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWAd0bf4139-d110-2b14-2e7d-f838dea323c6\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA491b8ae0-354c-d404-4a80-c7e9f97e7013\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,RCp_srnsn8TsHi-Y90KYoNQPNLUs9Z2k6AQ2a8mY4AU8XQa0dJ0qeugNm0mDw--U4uH_iIRb9IN4Nb3dl2ctTPPmCoYcMeCAkzmhYm7mlpPXnMYFHVt8&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Oct 22, 2025 at 11:34 AM James Trevey &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWAa31267f6-c393-7fea-dc8a-2e771875250b\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; padding-left:1ex; border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nperfect. I look forward to speaking with you then!</div>\r\n<div id=\"x_m_-4115497688900238988m_-5188347059152730434x_m_5154054507612261457appendonsend\">\r\n</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_m_-4115497688900238988m_-5188347059152730434x_m_5154054507612261457divRplyFwdMsg\">\r\n<div style=\"direction:ltr; font-family:Calibri,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA95e85b38-b96c-174d-e756-81f1bec2a1ff\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, October 22, 2025 9:30 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWAd1de4bb3-03ed-f1d6-f7e4-1848df71c103\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Will McKenna &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA8bded2a7-9490-66c0-1166-46535ffa61f0\" href=\"mailto:WMcKenna@forgenano.com\" target=\"_blank\">WMcKenna@forgenano.com</a>&gt;; Daniel &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA5cab2c66-aa13-c490-cc32-3f94f13d8838\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA42851c95-8020-51f8-373b-55e4c94f515b\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan\r\n &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I can do tomorrow at 9am MST.&nbsp;&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Let me know if that still works for you and I can send you over an invite.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA79c48f2b-7c75-15f7-0c38-0a8a933b49ef\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_-4115497688900238988m_-5188347059152730434OWAc61fd127-5390-c059-5dcd-e6ec1ef6d2b9\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,irabj1pPRcbHt7fZTnVGlp-D5OWgJo5J-DJVmYysbSINfzIevG80IYq97Jraq-OV6w6IJC3gu0pHz4oFYfW4xcnb3n-PwXqRHBE_AugLqCnyxkrk6RI,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Tue, Oct 21, 2025 at 6:09 PM James Trevey &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA873dbf9f-ca2b-ea71-cec5-8029b0003dfb\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; padding-left:1ex; border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nHey Jordan,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI am back from 3 weeks of travel and ready to get sorted here. Tomorrow is sunk, but on Thursday I can do 9am MT or 12:30pm MT. Do either work for you? If not, I have the following next week:</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n27th: 11:30-1pm MT</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n28th: 8am MT, 11am MT, after 1pm MT</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n29th: after 1pm MT</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n30th: after 10am MT</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nLet me know what works.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA81571a2c-6c21-2436-85b5-8714e8b66c05\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Monday, October 20, 2025 5:12 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA1e87c462-b83e-2b9c-f923-2ac81a62cf8d\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA31dc8928-3d8b-0f48-12bd-d8b3c385d531\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA542618ae-28b3-7246-75f5-03485d9c3649\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I am out of town as well.&nbsp; How does your Wednesday look?&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to catching up.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\"><u>jordan<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA2ec3caf6-8cfd-8a8d-d7e5-54d935ffa458\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"color:rgb(255,255,255); background-color:rgba(255,255,255,0)\"><a id=\"x_m_-4115497688900238988m_-5188347059152730434OWAe825f741-6e69-fe40-fbd6-457f5c25b3a9\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,kcAZ-rF3D0Z_d8KzW-apTAtlzHQofd8D2ZjbELiCHZPsqOhCV8Xd_fUJ6ZWDkt-2fgJod-EPR6FfR9gTPQj_LmrIjU3cEOjFP4Vi0A3Pa8jqtC5XpIZ1aRU,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px; background-color:rgba(255,255,255,0)\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<blockquote>\r\n<div style=\"direction:ltr\">On Oct 16, 2025, at 9:20 AM, James Trevey &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA1939e34b-5b2c-9003-ede8-c8f559743e5e\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n<br>\r\n</div>\r\n</blockquote>\r\n<blockquote>\r\n<div style=\"direction:ltr\">﻿</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nHey Jordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nApologies for the slow/no replies recently. Travel has been brutal.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nWe\'ve got a lot of the information ready for you. Can we schedule a call to do a walk through on Monday the 20th at 9am or 10am ET?</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJames</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_m_-4115497688900238988m_-5188347059152730434x_m_5154054507612261457x_m_3027303751782346756x_divRplyFwdMsg\">\r\n<div style=\"direction:ltr; font-family:Calibri,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA8c58e32e-c07b-2c9d-031e-39378c6b2453\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Thursday, October 16, 2025 9:16 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA370bc921-b453-4ca1-a90c-a3760d045262\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA38a65a75-0a32-7ad1-fb6e-fec3a8ccf702\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWAef467482-444c-bd55-030d-8124fe0eb8a3\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Would be great to get some pricing and spec sheets.&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Let me know when we can connect.&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\"><u>jordan<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWAbde88397-5f7f-6e20-eecb-9c9d616ae70b\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"color:rgb(255,255,255); background-color:rgba(255,255,255,0)\"><a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA8995a143-93ff-32bf-0768-f2305f87035a\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,kruzcWrtQAWBE_Wzkk5ZCPi8egnieSOSjhsFO2fIO_mt3sy1dInRgNFjLY-Xwbk4dmY7rgbxINSGlle76-Yg-vEcypX9dPm0sX9KSwuuDZUbmg,,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px; background-color:rgba(255,255,255,0)\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<blockquote>\r\n<div style=\"direction:ltr\">On Sep 30, 2025, at 4:31 PM, Jordan Wroblewski &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWAfc903b23-ac77-7b70-923b-6abe766ec537\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;\r\n wrote:<br>\r\n<br>\r\n</div>\r\n</blockquote>\r\n<blockquote>\r\n<div style=\"direction:ltr\">﻿</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to our discussion and seeing your deck of prospective projects.&nbsp;&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,&nbsp;</div>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA69160ff1-d5bd-007c-638f-52d5ccdd5f0d\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA6a7ea24c-1ec8-7ec2-7302-6e195d239024\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,KG7OlMyZO9jbLU5vTJ3I8lMhBaHdNf06-ktzHMDOUSoCImrfUczbXUj1d1VcQUh_ApKsyrkLO9FO7PzcinsYewUWoskpuT9EKlrhqSI22A,,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Fri, Sep 26, 2025 at 4:59 PM James Trevey &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWAa8fbc85b-a982-60aa-1b0f-421cd7a87c0d\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; padding-left:1ex; border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI won\'t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI\'ll send to you as soon as I can next week.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;James Trevey &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWAd7a5c27b-da55-2c7f-698b-f818d5e5341c\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 24, 2025 10:49 AM<br>\r\n<b>To:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWAa691f501-9154-2520-985f-29cdd2fb5c90\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWAbf77b698-937c-aeca-a707-b2494628658b\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA104e212a-34bd-05fd-2c13-aef8bc1517fa\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI also have a verbal matter we can discuss soon. Once I\'ve got the deck ready I\'ll find time for a short call with you.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nTalk soon.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJames</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_m_-4115497688900238988m_-5188347059152730434x_m_5154054507612261457x_m_3027303751782346756x_x_m_7859046138643783182x_divRplyFwdMsg\">\r\n<div style=\"direction:ltr; font-family:Calibri,sans-serif; font-size:11pt; color:black\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA8839c907-fb82-436d-88c1-e4063c0ac22f\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 24, 2025 10:07 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA5bbe05c5-50fd-d977-82a6-0bb9a3e8d948\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWAfb29af50-570f-4e82-d05d-36379913355d\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWAf2c74f2a-7269-dfef-9873-29a46c5c4b9e\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for the follow up.&nbsp; You were on my list to contact today!&nbsp;&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Would that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I will let you know if I will be able to make it up to Detroit for The Battery Show.&nbsp;&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to seeing the deck.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">All the best,&nbsp;</div>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA61a86075-871c-a4f2-6f33-e7c4eb316069\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA214782f4-48ae-8022-ef74-7608a601abba\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 24, 2025 at 11:59 AM James Trevey &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA33cce604-09df-9972-aa99-5a2cf482f6d9\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; padding-left:1ex; border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nHey Jordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nThank you for the quick follow up.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we\'ve decided we\'d like to provide information on additional products to you which are typically not on the menu but I have details\r\n to sort first.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nRegarding shows, happy to discuss when ready. We\'ll be at The Battery Show in 2 weeks, which I think you should consider attending and I\'d be happy to connect while there.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJames</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_m_-4115497688900238988m_-5188347059152730434x_m_5154054507612261457x_m_3027303751782346756x_x_m_7859046138643783182x_x_m_-6814561645313625911divRplyFwdMsg\">\r\n<div style=\"direction:ltr; font-family:Calibri,sans-serif; font-size:11pt; color:black\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWAd96cc1aa-a813-6163-4f4d-3a604e112ee7\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Thursday, September 18, 2025 11:03 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA6c494d49-99e5-cffe-a9df-8e6c460a0e63\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA5652f27b-5ef0-af9b-1a3e-1cecbce3fad8\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWAd0fa53a7-eca3-9387-f15c-28b074c1a084\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information\r\n to optimize our collaboration and planning:<br>\r\n<br>\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.<br>\r\n<br>\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.<br>\r\n<br>\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.<br>\r\n<br>\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.<br>\r\n<br>\r\nClarify your minimum order quantities and expected pricing for each product line.<br>\r\n<br>\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.<br>\r\n<br>\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted\r\n commercial timelines, and expected pricing.<br>\r\n<br>\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made module and packs for:<br>\r\n<br>\r\n18650:<br>\r\n<br>\r\nNMC: TNL-ITR18650-2600P<br>\r\n<br>\r\nLFP: SW18650-26HPA<br>\r\n<br>\r\nLFP: IFR18650-2000mAh<br>\r\n<br>\r\n21700:<br>\r\n<br>\r\nNMC: INR21700-50S<br>\r\n<br>\r\nNMC: INR21700-4000<br>\r\n<br>\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">In terms of the shows you mentioned, we are getting our schedules aligned so we can attend.&nbsp; What\'s the &quot;secret meeting&quot; in Nov?&nbsp;<br>\r\n<br>\r\nWe look forward to your prompt response so we can efficiently move to the next stages.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Talk soon,&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA4e4576b1-1931-f3c5-bf04-1d623e748413\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA0cfcaabe-77cb-de77-b671-98d78df6d665\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 17, 2025 at 7:00 PM James Trevey &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA2efeafd1-df26-a882-3cd2-915ab031edb6\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; padding-left:1ex; border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nThanks for moving quickly here. I got bogged down today but better late than never.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell has a 100% US supply chain already</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions\r\n</u>next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>thousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions</u>&nbsp;next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>thousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n</ul>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI will check with my people on 301 asap.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI look forward to our next communication.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJames</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:black\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:black\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA3b059ab0-9fb4-963d-d6b8-369eb4ca0cc2\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 17, 2025 7:56 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA3d6fb971-5d4e-9b71-f39f-0860c844fa95\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;; Daniel &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA3111b555-f6ea-0b7e-f4da-ab68556c65e8\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA7b82e4d2-9ac4-eea2-625d-4079b0c83093\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan\r\n &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Gentlemen,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">It was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<ul style=\"direction:ltr\">\r\n<li style=\"direction:ltr\">James to&nbsp;send the cell specification sheets as soon as possible.</li><li style=\"direction:ltr\">LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.</li><li style=\"direction:ltr\">James to&nbsp;send their term sheet template for throughput contracts.</li><li style=\"direction:ltr\">We should discuss 301 exclusion support for manufacturing equipment.</li></ul>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I look forward to our next conversation.&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_-4115497688900238988m_-5188347059152730434OWAdbe91ca4-1ba3-791b-0976-85d477e08c5f\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_-4115497688900238988m_-5188347059152730434OWA739c124e-e74e-a939-4030-d125840b8a52\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n<div style=\"direction:ltr\">&lt;ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes (1).csv&gt;</div>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Hey Jordan,\r\n\r\nSorry for going dark. The meeting went great. I would love to sync up with you to figure out next details. Can you chat at 8:30am MT tomorrow (11th)?\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\nSent: Thursday, November 6, 2025 12:05 PM\r\nTo: James Trevey <jtrevey@forgenano.com>\r\nCc: Will McKenna <WMcKenna@forgenano.com>; Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nHope you are well.\r\n\r\nHow did your meeting go?\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,0yjyucKyeUfIxS-5HFSvjrsDEo1K2sQDkz8oFv1cIzwEU8O73aVHhykbwL6rlE26TNk2-ufHYgRZUnkYoStD2sgHGVdzqKGuSup50N5h1F8,&typo=1>\r\n\r\n\r\nOn Mon, Oct 27, 2025 at 2:33 PM Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>> wrote:\r\nHi James,\r\n\r\nWe are logged on to the teams meeting.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,oTvbzZaLRCIhe4MhhhOwP3SQWQDt-6Fwcd6dQZR2vvpjA3wEcLTacBUH6dS2M_Ld9yfC3kJRxIbAniyQdmaJp7TgDFdc7r7sWlrEhV0RGfTYRb6Sfrc,&typo=1>\r\n\r\n\r\nOn Thu, Oct 23, 2025 at 1:05 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nJordan,\r\n\r\nThanks for the call today. Attached are a bunch of documents:\r\n\r\n\r\n  *\r\nspec sheets for all (5) FN Products\r\n  *\r\nspec sheet for the Samsung 53G\r\n  *\r\nspec sheet for the Moli P50B\r\n  *\r\nPresentation from our call with ballpark cell availability and pricing\r\n  *\r\nTerm sheet for capturing our relationship interests\r\n  *\r\nSkyfoundary proposal\r\n\r\nI have your volumes from the ProgramProduct excel sheet that I\'ve plugged into the term sheet for now as a first draft. On your end I captured the following action items:\r\n\r\n\r\n  *\r\nReview all documents in this email and confirm volumes and provide first pass review on the term sheet\r\n  *\r\nReview the Skyfoundary proposal and put together a first-pass budget/plan to support Forge as a partner\r\n\r\nI am out tomorrow for personal matters but look forward to our discussion on Monday.\r\n\r\nJames\r\n\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Wednesday, October 22, 2025 9:45 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Will McKenna <WMcKenna@forgenano.com<mailto:WMcKenna@forgenano.com>>; Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nYou bet,\r\n\r\nSpeak with you tomorrow.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,RCp_srnsn8TsHi-Y90KYoNQPNLUs9Z2k6AQ2a8mY4AU8XQa0dJ0qeugNm0mDw--U4uH_iIRb9IN4Nb3dl2ctTPPmCoYcMeCAkzmhYm7mlpPXnMYFHVt8&typo=1>\r\n\r\n\r\nOn Wed, Oct 22, 2025 at 11:34 AM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nperfect. I look forward to speaking with you then!\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Wednesday, October 22, 2025 9:30 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Will McKenna <WMcKenna@forgenano.com<mailto:WMcKenna@forgenano.com>>; Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nI can do tomorrow at 9am MST.\r\n\r\nLet me know if that still works for you and I can send you over an invite.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,irabj1pPRcbHt7fZTnVGlp-D5OWgJo5J-DJVmYysbSINfzIevG80IYq97Jraq-OV6w6IJC3gu0pHz4oFYfW4xcnb3n-PwXqRHBE_AugLqCnyxkrk6RI,&typo=1>\r\n\r\n\r\nOn Tue, Oct 21, 2025 at 6:09 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nHey Jordan,\r\n\r\nI am back from 3 weeks of travel and ready to get sorted here. Tomorrow is sunk, but on Thursday I can do 9am MT or 12:30pm MT. Do either work for you? If not, I have the following next week:\r\n\r\n27th: 11:30-1pm MT\r\n28th: 8am MT, 11am MT, after 1pm MT\r\n29th: after 1pm MT\r\n30th: after 10am MT\r\n\r\nLet me know what works.\r\n\r\nJames\r\n\r\n\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Monday, October 20, 2025 5:12 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nI am out of town as well.  How does your Wednesday look?\r\n\r\nLooking forward to catching up.\r\n\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,kcAZ-rF3D0Z_d8KzW-apTAtlzHQofd8D2ZjbELiCHZPsqOhCV8Xd_fUJ6ZWDkt-2fgJod-EPR6FfR9gTPQj_LmrIjU3cEOjFP4Vi0A3Pa8jqtC5XpIZ1aRU,&typo=1>\r\n\r\nOn Oct 16, 2025, at 9:20 AM, James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\n\r\n﻿\r\nHey Jordan,\r\n\r\nApologies for the slow/no replies recently. Travel has been brutal.\r\n\r\nWe\'ve got a lot of the information ready for you. Can we schedule a call to do a walk through on Monday the 20th at 9am or 10am ET?\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Thursday, October 16, 2025 9:16 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nWould be great to get some pricing and spec sheets.\r\n\r\nLet me know when we can connect.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,kruzcWrtQAWBE_Wzkk5ZCPi8egnieSOSjhsFO2fIO_mt3sy1dInRgNFjLY-Xwbk4dmY7rgbxINSGlle76-Yg-vEcypX9dPm0sX9KSwuuDZUbmg,,&typo=1>\r\n\r\nOn Sep 30, 2025, at 4:31 PM, Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>> wrote:\r\n\r\n﻿\r\nHi James,\r\n\r\nI have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.\r\n\r\nLooking forward to our discussion and seeing your deck of prospective projects.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,KG7OlMyZO9jbLU5vTJ3I8lMhBaHdNf06-ktzHMDOUSoCImrfUczbXUj1d1VcQUh_ApKsyrkLO9FO7PzcinsYewUWoskpuT9EKlrhqSI22A,,&typo=1>\r\n\r\n\r\nOn Fri, Sep 26, 2025 at 4:59 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nJordan,\r\n\r\nI won\'t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products.\r\n\r\nI\'ll send to you as soon as I can next week.\r\n\r\nJames\r\n\r\n\r\n\r\n\r\n________________________________\r\nFrom: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nSent: Wednesday, September 24, 2025 10:49 AM\r\nTo: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nJordan,\r\n\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating.\r\n\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?\r\n\r\nI also have a verbal matter we can discuss soon. Once I\'ve got the deck ready I\'ll find time for a short call with you.\r\n\r\nTalk soon.\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Wednesday, September 24, 2025 10:07 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nThank you for the follow up.  You were on my list to contact today!\r\n\r\nWould that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...\r\n\r\nI will let you know if I will be able to make it up to Detroit for The Battery Show.\r\n\r\nLooking forward to seeing the deck.\r\n\r\nAll the best,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&typo=1>\r\n\r\n\r\nOn Wed, Sep 24, 2025 at 11:59 AM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nHey Jordan,\r\n\r\nThank you for the quick follow up.\r\n\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we\'ve decided we\'d like to provide information on additional products to you which are typically not on the menu but I have details to sort first.\r\n\r\nRegarding shows, happy to discuss when ready. We\'ll be at The Battery Show in 2 weeks, which I think you should consider attending and I\'d be happy to connect while there.\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Thursday, September 18, 2025 11:03 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\n\r\nThank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information to optimize our collaboration and planning:\r\n\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.\r\n\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.\r\n\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.\r\n\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.\r\n\r\nClarify your minimum order quantities and expected pricing for each product line.\r\n\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.\r\n\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted commercial timelines, and expected pricing.\r\n\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made module and packs for:\r\n\r\n18650:\r\n\r\nNMC: TNL-ITR18650-2600P\r\n\r\nLFP: SW18650-26HPA\r\n\r\nLFP: IFR18650-2000mAh\r\n\r\n21700:\r\n\r\nNMC: INR21700-50S\r\n\r\nNMC: INR21700-4000\r\n\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.\r\n\r\nIn terms of the shows you mentioned, we are getting our schedules aligned so we can attend.  What\'s the \"secret meeting\" in Nov?\r\n\r\nWe look forward to your prompt response so we can efficiently move to the next stages.\r\n\r\n\r\nTalk soon,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&typo=1>\r\n\r\n\r\nOn Wed, Sep 17, 2025 at 7:00 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nJordan,\r\n\r\nThanks for moving quickly here. I got bogged down today but better late than never.\r\n\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:\r\n\r\n\r\n  *\r\nSC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)\r\n     *\r\nThis cell has a 100% US supply chain already\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the thousands next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these\r\n  *\r\nSC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the thousands next year by our partner in the EU, until our factory is online in 2027\r\n\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.\r\n\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.\r\n\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret meeting on November 5th in DC?\r\n\r\nI will check with my people on 301 asap.\r\n\r\nI look forward to our next communication.\r\n\r\nJames\r\n\r\n\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Wednesday, September 17, 2025 7:56 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>; Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nGentlemen,\r\n\r\nIt was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:\r\n\r\n\r\n  *   James to send the cell specification sheets as soon as possible.\r\n  *   LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.\r\n  *   James to send their term sheet template for throughput contracts.\r\n  *   We should discuss 301 exclusion support for manufacturing equipment.\r\n\r\nI look forward to our next conversation.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&typo=1>\r\n\r\n<ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes (1).csv>\r\n',0,0,0,0,0,0,'2025-11-10 22:36:33','2025-12-09 19:31:08','2025-12-09 19:31:08','2025-12-09 19:31:08',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(945,4,'<CAJO9__Y0mF8sdanXMPOBa5-vLifmpaPAWi9goZApcpQUXvFRVQ@mail.gmail.com>',NULL,NULL,'Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Hi James,</div><div><br></div><div>Yes, I can do 10:30am EST.  Go ahead and send me a meeting invite and if others can make it they can join as well. </div><div><br></div><div>Looking forward to catching up.</div><div><br></div><div>Best,</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Nov 10, 2025 at 5:37 PM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"msg7691130268813451465\">\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nHey Jordan,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nSorry for going dark. The meeting went great. I would love to sync up with you to figure out next details. Can you chat at 8:30am MT tomorrow (11th)?</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<div id=\"m_7691130268813451465appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div id=\"m_7691130268813451465divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Thursday, November 6, 2025 12:05 PM<br>\r\n<b>To:</b> James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Will McKenna &lt;<a href=\"mailto:WMcKenna@forgenano.com\" target=\"_blank\">WMcKenna@forgenano.com</a>&gt;; Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</font>\r\n<div> </div>\r\n</div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div>Hi James,</div>\r\n<div><br>\r\n</div>\r\n<div>Hope you are well.  </div>\r\n<div><br>\r\n</div>\r\n<div>How did your meeting go? </div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,0yjyucKyeUfIxS-5HFSvjrsDEo1K2sQDkz8oFv1cIzwEU8O73aVHhykbwL6rlE26TNk2-ufHYgRZUnkYoStD2sgHGVdzqKGuSup50N5h1F8,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n</div>\r\n<br>\r\n<div>\r\n<div dir=\"ltr\">On Mon, Oct 27, 2025 at 2:33 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div dir=\"ltr\">\r\n<div>Hi James,</div>\r\n<div><br>\r\n</div>\r\n<div>We are logged on to the teams meeting. </div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,oTvbzZaLRCIhe4MhhhOwP3SQWQDt-6Fwcd6dQZR2vvpjA3wEcLTacBUH6dS2M_Ld9yfC3kJRxIbAniyQdmaJp7TgDFdc7r7sWlrEhV0RGfTYRb6Sfrc,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n</div>\r\n<br>\r\n<div>\r\n<div dir=\"ltr\">On Thu, Oct 23, 2025 at 1:05 PM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div>\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nThanks for the call today. Attached are a bunch of documents:</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<ul style=\"margin-top:0px;margin-bottom:0px;list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">spec sheets for all (5) FN Products</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">spec sheet for the Samsung 53G</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">spec sheet for the Moli P50B</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Presentation from our call with ballpark cell availability and pricing</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Term sheet for capturing our relationship interests</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Skyfoundary proposal</div>\r\n</li></ul>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434appendonsend\"></div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI have your volumes from the ProgramProduct excel sheet that I&#39;ve plugged into the term sheet for now as a first draft. On your end I captured the following action items:</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<ul style=\"margin-top:0px;margin-bottom:0px;list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Review all documents in this email and confirm volumes and provide first pass review on the term sheet</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Review the Skyfoundary proposal and put together a first-pass budget/plan to support Forge as a partner</div>\r\n</li></ul>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI am out tomorrow for personal matters but look forward to our discussion on Monday. </div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, October 22, 2025 9:45 AM<br>\r\n<b>To:</b> James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Will McKenna &lt;<a href=\"mailto:WMcKenna@forgenano.com\" target=\"_blank\">WMcKenna@forgenano.com</a>&gt;; Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron\r\n &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">You bet,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Speak with you tomorrow. </div>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAd0bf4139-d110-2b14-2e7d-f838dea323c6\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA491b8ae0-354c-d404-4a80-c7e9f97e7013\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,RCp_srnsn8TsHi-Y90KYoNQPNLUs9Z2k6AQ2a8mY4AU8XQa0dJ0qeugNm0mDw--U4uH_iIRb9IN4Nb3dl2ctTPPmCoYcMeCAkzmhYm7mlpPXnMYFHVt8&amp;typo=1\" style=\"margin-top:0px;margin-bottom:0px\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Oct 22, 2025 at 11:34 AM James Trevey &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAa31267f6-c393-7fea-dc8a-2e771875250b\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nperfect. I look forward to speaking with you then!</div>\r\n<div id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434x_m_5154054507612261457appendonsend\">\r\n</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434x_m_5154054507612261457divRplyFwdMsg\">\r\n<div style=\"direction:ltr;font-family:Calibri,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA95e85b38-b96c-174d-e756-81f1bec2a1ff\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, October 22, 2025 9:30 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAd1de4bb3-03ed-f1d6-f7e4-1848df71c103\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Will McKenna &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA8bded2a7-9490-66c0-1166-46535ffa61f0\" href=\"mailto:WMcKenna@forgenano.com\" target=\"_blank\">WMcKenna@forgenano.com</a>&gt;; Daniel &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA5cab2c66-aa13-c490-cc32-3f94f13d8838\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA42851c95-8020-51f8-373b-55e4c94f515b\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan\r\n &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\"> </div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I can do tomorrow at 9am MST.  </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Let me know if that still works for you and I can send you over an invite.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA79c48f2b-7c75-15f7-0c38-0a8a933b49ef\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAc61fd127-5390-c059-5dcd-e6ec1ef6d2b9\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,irabj1pPRcbHt7fZTnVGlp-D5OWgJo5J-DJVmYysbSINfzIevG80IYq97Jraq-OV6w6IJC3gu0pHz4oFYfW4xcnb3n-PwXqRHBE_AugLqCnyxkrk6RI,&amp;typo=1\" style=\"margin-top:0px;margin-bottom:0px\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Tue, Oct 21, 2025 at 6:09 PM James Trevey &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA873dbf9f-ca2b-ea71-cec5-8029b0003dfb\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nHey Jordan, </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI am back from 3 weeks of travel and ready to get sorted here. Tomorrow is sunk, but on Thursday I can do 9am MT or 12:30pm MT. Do either work for you? If not, I have the following next week:</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n27th: 11:30-1pm MT</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n28th: 8am MT, 11am MT, after 1pm MT</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n29th: after 1pm MT</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n30th: after 10am MT</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nLet me know what works.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA81571a2c-6c21-2436-85b5-8714e8b66c05\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Monday, October 20, 2025 5:12 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA1e87c462-b83e-2b9c-f923-2ac81a62cf8d\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA31dc8928-3d8b-0f48-12bd-d8b3c385d531\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA542618ae-28b3-7246-75f5-03485d9c3649\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I am out of town as well.  How does your Wednesday look? </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to catching up.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\"><u>jordan<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA2ec3caf6-8cfd-8a8d-d7e5-54d935ffa458\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"color:rgb(255,255,255);background-color:rgba(255,255,255,0)\"><a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAe825f741-6e69-fe40-fbd6-457f5c25b3a9\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,kcAZ-rF3D0Z_d8KzW-apTAtlzHQofd8D2ZjbELiCHZPsqOhCV8Xd_fUJ6ZWDkt-2fgJod-EPR6FfR9gTPQj_LmrIjU3cEOjFP4Vi0A3Pa8jqtC5XpIZ1aRU,&amp;typo=1\" style=\"margin-top:0px;margin-bottom:0px;background-color:rgba(255,255,255,0)\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<blockquote>\r\n<div style=\"direction:ltr\">On Oct 16, 2025, at 9:20 AM, James Trevey &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA1939e34b-5b2c-9003-ede8-c8f559743e5e\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n<br>\r\n</div>\r\n</blockquote>\r\n<blockquote>\r\n<div style=\"direction:ltr\">﻿</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nHey Jordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nApologies for the slow/no replies recently. Travel has been brutal. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nWe&#39;ve got a lot of the information ready for you. Can we schedule a call to do a walk through on Monday the 20th at 9am or 10am ET?</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434x_m_5154054507612261457x_m_3027303751782346756x_divRplyFwdMsg\">\r\n<div style=\"direction:ltr;font-family:Calibri,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA8c58e32e-c07b-2c9d-031e-39378c6b2453\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Thursday, October 16, 2025 9:16 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA370bc921-b453-4ca1-a90c-a3760d045262\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA38a65a75-0a32-7ad1-fb6e-fec3a8ccf702\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAef467482-444c-bd55-030d-8124fe0eb8a3\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\"> </div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Would be great to get some pricing and spec sheets. </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Let me know when we can connect. </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\"><u>jordan<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAbde88397-5f7f-6e20-eecb-9c9d616ae70b\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"color:rgb(255,255,255);background-color:rgba(255,255,255,0)\"><a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA8995a143-93ff-32bf-0768-f2305f87035a\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,kruzcWrtQAWBE_Wzkk5ZCPi8egnieSOSjhsFO2fIO_mt3sy1dInRgNFjLY-Xwbk4dmY7rgbxINSGlle76-Yg-vEcypX9dPm0sX9KSwuuDZUbmg,,&amp;typo=1\" style=\"margin-top:0px;margin-bottom:0px;background-color:rgba(255,255,255,0)\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<blockquote>\r\n<div style=\"direction:ltr\">On Sep 30, 2025, at 4:31 PM, Jordan Wroblewski &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAfc903b23-ac77-7b70-923b-6abe766ec537\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;\r\n wrote:<br>\r\n<br>\r\n</div>\r\n</blockquote>\r\n<blockquote>\r\n<div style=\"direction:ltr\">﻿</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to our discussion and seeing your deck of prospective projects.  </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best, </div>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA69160ff1-d5bd-007c-638f-52d5ccdd5f0d\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA6a7ea24c-1ec8-7ec2-7302-6e195d239024\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,KG7OlMyZO9jbLU5vTJ3I8lMhBaHdNf06-ktzHMDOUSoCImrfUczbXUj1d1VcQUh_ApKsyrkLO9FO7PzcinsYewUWoskpuT9EKlrhqSI22A,,&amp;typo=1\" style=\"margin-top:0px;margin-bottom:0px\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Fri, Sep 26, 2025 at 4:59 PM James Trevey &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAa8fbc85b-a982-60aa-1b0f-421cd7a87c0d\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI won&#39;t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nI&#39;ll send to you as soon as I can next week.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<b>From:</b> James Trevey &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAd7a5c27b-da55-2c7f-698b-f818d5e5341c\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, September 24, 2025 10:49 AM<br>\r\n<b>To:</b> Jordan Wroblewski &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAa691f501-9154-2520-985f-29cdd2fb5c90\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAbf77b698-937c-aeca-a707-b2494628658b\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA104e212a-34bd-05fd-2c13-aef8bc1517fa\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI also have a verbal matter we can discuss soon. Once I&#39;ve got the deck ready I&#39;ll find time for a short call with you.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nTalk soon.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJames</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434x_m_5154054507612261457x_m_3027303751782346756x_x_m_7859046138643783182x_divRplyFwdMsg\">\r\n<div style=\"direction:ltr;font-family:Calibri,sans-serif;font-size:11pt;color:black\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA8839c907-fb82-436d-88c1-e4063c0ac22f\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, September 24, 2025 10:07 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA5bbe05c5-50fd-d977-82a6-0bb9a3e8d948\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAfb29af50-570f-4e82-d05d-36379913355d\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAf2c74f2a-7269-dfef-9873-29a46c5c4b9e\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\"> </div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for the follow up.  You were on my list to contact today!  </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Would that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I will let you know if I will be able to make it up to Detroit for The Battery Show.  </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to seeing the deck.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">All the best, </div>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA61a86075-871c-a4f2-6f33-e7c4eb316069\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA214782f4-48ae-8022-ef74-7608a601abba\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&amp;typo=1\" style=\"margin-top:0px;margin-bottom:0px\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 24, 2025 at 11:59 AM James Trevey &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA33cce604-09df-9972-aa99-5a2cf482f6d9\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nHey Jordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nThank you for the quick follow up. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we&#39;ve decided we&#39;d like to provide information on additional products to you which are typically not on the menu but I have details\r\n to sort first. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nRegarding shows, happy to discuss when ready. We&#39;ll be at The Battery Show in 2 weeks, which I think you should consider attending and I&#39;d be happy to connect while there. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJames</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434x_m_5154054507612261457x_m_3027303751782346756x_x_m_7859046138643783182x_x_m_-6814561645313625911divRplyFwdMsg\">\r\n<div style=\"direction:ltr;font-family:Calibri,sans-serif;font-size:11pt;color:black\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAd96cc1aa-a813-6163-4f4d-3a604e112ee7\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Thursday, September 18, 2025 11:03 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA6c494d49-99e5-cffe-a9df-8e6c460a0e63\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Daniel &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA5652f27b-5ef0-af9b-1a3e-1cecbce3fad8\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAd0fa53a7-eca3-9387-f15c-28b074c1a084\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\"> </div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information\r\n to optimize our collaboration and planning:<br>\r\n<br>\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.<br>\r\n<br>\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.<br>\r\n<br>\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.<br>\r\n<br>\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.<br>\r\n<br>\r\nClarify your minimum order quantities and expected pricing for each product line.<br>\r\n<br>\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.<br>\r\n<br>\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted\r\n commercial timelines, and expected pricing.<br>\r\n<br>\r\nAdditionally, for reference, these are LBC’s most popular cells we&#39;ve made module and packs for:<br>\r\n<br>\r\n18650:<br>\r\n<br>\r\nNMC: TNL-ITR18650-2600P<br>\r\n<br>\r\nLFP: SW18650-26HPA<br>\r\n<br>\r\nLFP: IFR18650-2000mAh<br>\r\n<br>\r\n21700:<br>\r\n<br>\r\nNMC: INR21700-50S<br>\r\n<br>\r\nNMC: INR21700-4000<br>\r\n<br>\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">In terms of the shows you mentioned, we are getting our schedules aligned so we can attend.  What&#39;s the &quot;secret meeting&quot; in Nov? <br>\r\n<br>\r\nWe look forward to your prompt response so we can efficiently move to the next stages.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Talk soon, </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA4e4576b1-1931-f3c5-bf04-1d623e748413\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA0cfcaabe-77cb-de77-b671-98d78df6d665\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&amp;typo=1\" style=\"margin-top:0px;margin-bottom:0px\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 17, 2025 at 7:00 PM James Trevey &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA2efeafd1-df26-a882-3cd2-915ab031edb6\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nThanks for moving quickly here. I got bogged down today but better late than never. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nAttached you&#39;ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won&#39;t tell us the application)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell has a 100% US supply chain already</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions\r\n</u>next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>thousands</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions</u> next year by our partner in the EU. As we show adoption, we&#39;ll expand our factory to build these</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)</div>\r\n</li><ul style=\"direction:ltr;margin-top:0px;margin-bottom:0px;list-style-position:initial;list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>thousands</u> next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n</ul>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI will check with my people on 301 asap.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nI look forward to our next communication.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt;color:black\">\r\nJames</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:black\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr;display:inline-block;width:98%\">\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:black\">\r\n<b>From:</b> Jordan Wroblewski &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA3b059ab0-9fb4-963d-d6b8-369eb4ca0cc2\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Wednesday, September 17, 2025 7:56 AM<br>\r\n<b>To:</b> James Trevey &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA3d6fb971-5d4e-9b71-f39f-0860c844fa95\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;; Daniel &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA3111b555-f6ea-0b7e-f4da-ab68556c65e8\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA7b82e4d2-9ac4-eea2-625d-4079b0c83093\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan\r\n &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr;font-family:Calibri,Arial,Helvetica,sans-serif;font-size:12pt;color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Gentlemen,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">It was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I&#39;ve outlined the key action items below:</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<ul style=\"direction:ltr\">\r\n<li style=\"direction:ltr\">James to send the cell specification sheets as soon as possible.</li><li style=\"direction:ltr\">LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.</li><li style=\"direction:ltr\">James to send their term sheet template for throughput contracts.</li><li style=\"direction:ltr\">We should discuss 301 exclusion support for manufacturing equipment.</li></ul>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I look forward to our next conversation. </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President </span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAdbe91ca4-1ba3-791b-0976-85d477e08c5f\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0px\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a id=\"m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA739c124e-e74e-a939-4030-d125840b8a52\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&amp;typo=1\" style=\"margin-top:0px;margin-bottom:0px\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n<div style=\"direction:ltr\">&lt;ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes (1).csv&gt;</div>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n</div></blockquote></div>','Hi James,\r\n\r\nYes, I can do 10:30am EST.  Go ahead and send me a meeting invite and if\r\nothers can make it they can join as well.\r\n\r\nLooking forward to catching up.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Mon, Nov 10, 2025 at 5:37 PM James Trevey <jtrevey@forgenano.com> wrote:\r\n\r\n> Hey Jordan,\r\n>\r\n> Sorry for going dark. The meeting went great. I would love to sync up with\r\n> you to figure out next details. Can you chat at 8:30am MT tomorrow (11th)?\r\n>\r\n> James\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Thursday, November 6, 2025 12:05 PM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Will McKenna <WMcKenna@forgenano.com>; Daniel <\r\n> dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan\r\n> Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Hi James,\r\n>\r\n> Hope you are well.\r\n>\r\n> How did your meeting go?\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,0yjyucKyeUfIxS-5HFSvjrsDEo1K2sQDkz8oFv1cIzwEU8O73aVHhykbwL6rlE26TNk2-ufHYgRZUnkYoStD2sgHGVdzqKGuSup50N5h1F8,&typo=1>\r\n>\r\n>\r\n> On Mon, Oct 27, 2025 at 2:33 PM Jordan Wroblewski <\r\n> jordan@lithiumbatterycompany.com> wrote:\r\n>\r\n> Hi James,\r\n>\r\n> We are logged on to the teams meeting.\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,oTvbzZaLRCIhe4MhhhOwP3SQWQDt-6Fwcd6dQZR2vvpjA3wEcLTacBUH6dS2M_Ld9yfC3kJRxIbAniyQdmaJp7TgDFdc7r7sWlrEhV0RGfTYRb6Sfrc,&typo=1>\r\n>\r\n>\r\n> On Thu, Oct 23, 2025 at 1:05 PM James Trevey <jtrevey@forgenano.com>\r\n> wrote:\r\n>\r\n> Jordan,\r\n>\r\n> Thanks for the call today. Attached are a bunch of documents:\r\n>\r\n>\r\n>    - spec sheets for all (5) FN Products\r\n>    - spec sheet for the Samsung 53G\r\n>    - spec sheet for the Moli P50B\r\n>    - Presentation from our call with ballpark cell availability and\r\n>    pricing\r\n>    - Term sheet for capturing our relationship interests\r\n>    - Skyfoundary proposal\r\n>\r\n>\r\n> I have your volumes from the ProgramProduct excel sheet that I\'ve plugged\r\n> into the term sheet for now as a first draft. On your end I captured the\r\n> following action items:\r\n>\r\n>\r\n>    - Review all documents in this email and confirm volumes and provide\r\n>    first pass review on the term sheet\r\n>    - Review the Skyfoundary proposal and put together a first-pass\r\n>    budget/plan to support Forge as a partner\r\n>\r\n>\r\n> I am out tomorrow for personal matters but look forward to our discussion\r\n> on Monday.\r\n>\r\n> James\r\n>\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Wednesday, October 22, 2025 9:45 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Will McKenna <WMcKenna@forgenano.com>; Daniel <\r\n> dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan\r\n> Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> You bet,\r\n>\r\n> Speak with you tomorrow.\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,RCp_srnsn8TsHi-Y90KYoNQPNLUs9Z2k6AQ2a8mY4AU8XQa0dJ0qeugNm0mDw--U4uH_iIRb9IN4Nb3dl2ctTPPmCoYcMeCAkzmhYm7mlpPXnMYFHVt8&typo=1>\r\n>\r\n>\r\n> On Wed, Oct 22, 2025 at 11:34 AM James Trevey <jtrevey@forgenano.com>\r\n> wrote:\r\n>\r\n> perfect. I look forward to speaking with you then!\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Wednesday, October 22, 2025 9:30 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Will McKenna <WMcKenna@forgenano.com>; Daniel <\r\n> dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan\r\n> Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Hi James,\r\n>\r\n> I can do tomorrow at 9am MST.\r\n>\r\n> Let me know if that still works for you and I can send you over an invite.\r\n>\r\n> Best,\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,irabj1pPRcbHt7fZTnVGlp-D5OWgJo5J-DJVmYysbSINfzIevG80IYq97Jraq-OV6w6IJC3gu0pHz4oFYfW4xcnb3n-PwXqRHBE_AugLqCnyxkrk6RI,&typo=1>\r\n>\r\n>\r\n> On Tue, Oct 21, 2025 at 6:09 PM James Trevey <jtrevey@forgenano.com>\r\n> wrote:\r\n>\r\n> Hey Jordan,\r\n>\r\n> I am back from 3 weeks of travel and ready to get sorted here. Tomorrow is\r\n> sunk, but on Thursday I can do 9am MT or 12:30pm MT. Do either work for\r\n> you? If not, I have the following next week:\r\n>\r\n> 27th: 11:30-1pm MT\r\n> 28th: 8am MT, 11am MT, after 1pm MT\r\n> 29th: after 1pm MT\r\n> 30th: after 10am MT\r\n>\r\n> Let me know what works.\r\n>\r\n> James\r\n>\r\n>\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Monday, October 20, 2025 5:12 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n> Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Hi James,\r\n>\r\n> I am out of town as well.  How does your Wednesday look?\r\n>\r\n> Looking forward to catching up.\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,kcAZ-rF3D0Z_d8KzW-apTAtlzHQofd8D2ZjbELiCHZPsqOhCV8Xd_fUJ6ZWDkt-2fgJod-EPR6FfR9gTPQj_LmrIjU3cEOjFP4Vi0A3Pa8jqtC5XpIZ1aRU,&typo=1>\r\n>\r\n> On Oct 16, 2025, at 9:20 AM, James Trevey <jtrevey@forgenano.com> wrote:\r\n>\r\n> ﻿\r\n> Hey Jordan,\r\n>\r\n> Apologies for the slow/no replies recently. Travel has been brutal.\r\n>\r\n> We\'ve got a lot of the information ready for you. Can we schedule a call\r\n> to do a walk through on Monday the 20th at 9am or 10am ET?\r\n>\r\n> James\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Thursday, October 16, 2025 9:16 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n> Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Hi James,\r\n>\r\n> Would be great to get some pricing and spec sheets.\r\n>\r\n> Let me know when we can connect.\r\n>\r\n> Best,\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,kruzcWrtQAWBE_Wzkk5ZCPi8egnieSOSjhsFO2fIO_mt3sy1dInRgNFjLY-Xwbk4dmY7rgbxINSGlle76-Yg-vEcypX9dPm0sX9KSwuuDZUbmg,,&typo=1>\r\n>\r\n> On Sep 30, 2025, at 4:31 PM, Jordan Wroblewski <\r\n> jordan@lithiumbatterycompany.com> wrote:\r\n>\r\n> ﻿\r\n> Hi James,\r\n>\r\n> I have attached a prospective cell demand schedule (subject to change) but\r\n> two of your battery types should meet the requirements for some of our\r\n> future projects.\r\n>\r\n> Looking forward to our discussion and seeing your deck of prospective\r\n> projects.\r\n>\r\n> Best,\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,KG7OlMyZO9jbLU5vTJ3I8lMhBaHdNf06-ktzHMDOUSoCImrfUczbXUj1d1VcQUh_ApKsyrkLO9FO7PzcinsYewUWoskpuT9EKlrhqSI22A,,&typo=1>\r\n>\r\n>\r\n> On Fri, Sep 26, 2025 at 4:59 PM James Trevey <jtrevey@forgenano.com>\r\n> wrote:\r\n>\r\n> Jordan,\r\n>\r\n> I won\'t be able to send the deck today. Still waiting on a few spec sheets\r\n> approval and validation of production capability for a few products.\r\n>\r\n> I\'ll send to you as soon as I can next week.\r\n>\r\n> James\r\n>\r\n>\r\n>\r\n>\r\n> ------------------------------\r\n> *From:* James Trevey <jtrevey@forgenano.com>\r\n> *Sent:* Wednesday, September 24, 2025 10:49 AM\r\n> *To:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n> Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Jordan,\r\n>\r\n> Unfortunately, there is not a large prismatic on our list. I could\r\n> potentially license a design to make one, but it would take a lot of\r\n> coordinating.\r\n>\r\n> It would be super helpful if you are able to compile a deck for us which\r\n> has your prospective cell demand schedule now and for the next few years,\r\n> as well as what your qualification schedule looks like (maybe program\r\n> based?). Maybe by cell type?\r\n>\r\n> I also have a verbal matter we can discuss soon. Once I\'ve got the deck\r\n> ready I\'ll find time for a short call with you.\r\n>\r\n> Talk soon.\r\n>\r\n> James\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Wednesday, September 24, 2025 10:07 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n> Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Hi James,\r\n>\r\n> Thank you for the follow up.  You were on my list to contact today!\r\n>\r\n> Would that additional product list include a prismatic cell? I have a\r\n> client who needs 150MWh a year and they want a domestic 314Ah cell...\r\n>\r\n> I will let you know if I will be able to make it up to Detroit for The\r\n> Battery Show.\r\n>\r\n> Looking forward to seeing the deck.\r\n>\r\n> All the best,\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&typo=1>\r\n>\r\n>\r\n> On Wed, Sep 24, 2025 at 11:59 AM James Trevey <jtrevey@forgenano.com>\r\n> wrote:\r\n>\r\n> Hey Jordan,\r\n>\r\n> Thank you for the quick follow up.\r\n>\r\n> I am working on a compiled deck for you to address the below requests and\r\n> aiming for end of this week. After speaking with my team, we\'ve decided\r\n> we\'d like to provide information on additional products to you which are\r\n> typically not on the menu but I have details to sort first.\r\n>\r\n> Regarding shows, happy to discuss when ready. We\'ll be at The Battery Show\r\n> in 2 weeks, which I think you should consider attending and I\'d be happy to\r\n> connect while there.\r\n>\r\n> James\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Thursday, September 18, 2025 11:03 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>\r\n> *Cc:* Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one\r\n> <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>;\r\n> Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Hi James,\r\n>\r\n>\r\n> Thank you for continuing discussions regarding our strategic partnership.\r\n> As we prepare for module and pack production to support your battery cell\r\n> needs, we would appreciate your assistance in providing several key pieces\r\n> of information to optimize our collaboration and planning:\r\n>\r\n> Please share detailed volume forecasts for each cell type (e.g., 18650,\r\n> 21700) you expect to require over the next 1–5 years, broken out by project\r\n> or customer segment where feasible.\r\n>\r\n> Indicate your anticipated ramp-up schedule for sample, engineering, and\r\n> production volumes to help us align our development and manufacturing\r\n> timelines.\r\n>\r\n> Identify any major offtake agreements, anchor customers, or significant\r\n> opportunities in your commercial pipeline that could impact forecasted\r\n> demand for modules or packs.\r\n>\r\n> Outline target applications (energy storage, drones, EVs, DOD, etc.) and\r\n> specify any technical or certification requirements for modules/packs\r\n> related to these segments.\r\n>\r\n> Clarify your minimum order quantities and expected pricing for each\r\n> product line.\r\n>\r\n> Please also provide information about any flexibility in volume\r\n> commitments that may be necessary in case project requirements or customer\r\n> needs adjust mid-term.\r\n>\r\n> Importantly, we would like to request information on any current or\r\n> forthcoming cells with a minimum continuous discharge rating of 15C or\r\n> higher. For these cells, please provide specifications, target\r\n> applications, anticipated volume requirements, forecasted commercial\r\n> timelines, and expected pricing.\r\n>\r\n> Additionally, for reference, these are LBC’s most popular cells we\'ve made\r\n> module and packs for:\r\n>\r\n> 18650:\r\n>\r\n> NMC: TNL-ITR18650-2600P\r\n>\r\n> LFP: SW18650-26HPA\r\n>\r\n> LFP: IFR18650-2000mAh\r\n>\r\n> 21700:\r\n>\r\n> NMC: INR21700-50S\r\n>\r\n> NMC: INR21700-4000\r\n>\r\n> Providing this information will enable LBC to ensure maximum alignment,\r\n> timely scale-up, and the most competitive solutions to support your growth\r\n> across all high-value sectors.\r\n>\r\n> In terms of the shows you mentioned, we are getting our schedules aligned\r\n> so we can attend.  What\'s the \"secret meeting\" in Nov?\r\n>\r\n> We look forward to your prompt response so we can efficiently move to the\r\n> next stages.\r\n>\r\n>\r\n> Talk soon,\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&typo=1>\r\n>\r\n>\r\n> On Wed, Sep 17, 2025 at 7:00 PM James Trevey <jtrevey@forgenano.com>\r\n> wrote:\r\n>\r\n> Jordan,\r\n>\r\n> Thanks for moving quickly here. I got bogged down today but better late\r\n> than never.\r\n>\r\n> Attached you\'ll find data sheets for all (5) of our products, including\r\n> both 18650 and 21700. Below is a quick summary:\r\n>\r\n>\r\n>    - SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation\r\n>    (they won\'t tell us the application)\r\n>    - This cell has a 100% US supply chain already\r\n>       - This cell can be made in the *millions* next year by our partner\r\n>       in the EU, until our factory is online in 2027\r\n>       - SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse\r\n>    engineered from MIL-PRF-32383)\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the *millions *next year by our partner\r\n>       in the EU, until our factory is online in 2027\r\n>       - SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the *thousands* next year by our partner\r\n>       in the EU, until our factory is online in 2027\r\n>       - SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum\r\n>    case and tabless design, super lightweight)\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the *millions* next year by our partner\r\n>       in the EU. As we show adoption, we\'ll expand our factory to build these\r\n>       - SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse\r\n>    engineered from MIL-PRF-32565)\r\n>    - This cell is 50% US and 50% non-FEOC currently\r\n>       - This cell can be made in the *thousands* next year by our partner\r\n>       in the EU, until our factory is online in 2027\r\n>\r\n>\r\n> We can also get 80mmx300mm pouch cells made by our EU partner, if needed.\r\n>\r\n> Regarding the term sheet, please see the attached template that I put\r\n> together but needs input from you all.\r\n>\r\n> Maybe we line up another discussion for next week to continue our\r\n> alignment path? Also, are any of you planning to attend The Battery Show in\r\n> Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores\r\n> in Nashville? in October? Or the secret meeting on November 5th in DC?\r\n>\r\n> I will check with my people on 301 asap.\r\n>\r\n> I look forward to our next communication.\r\n>\r\n> James\r\n>\r\n>\r\n> ------------------------------\r\n> *From:* Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\n> *Sent:* Wednesday, September 17, 2025 7:56 AM\r\n> *To:* James Trevey <jtrevey@forgenano.com>; Daniel <\r\n> dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan\r\n> Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\n> *Subject:* Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n>\r\n> Gentlemen,\r\n>\r\n> It was a pleasure connecting with you yesterday. I am very excited about\r\n> the potential for a partnership between our companies. To maintain the\r\n> momentum from our discussion, I\'ve outlined the key action items below:\r\n>\r\n>\r\n>    - James to send the cell specification sheets as soon as possible.\r\n>    - LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for\r\n>    benchmarking purposes.\r\n>    - James to send their term sheet template for throughput contracts.\r\n>    - We should discuss 301 exclusion support for manufacturing equipment.\r\n>\r\n>\r\n> I look forward to our next conversation.\r\n>\r\n> Best,\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company\r\n> <https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&typo=1>\r\n>\r\n> <ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes\r\n> (1).csv>\r\n>\r\n>',0,0,0,0,0,0,'2025-11-10 22:43:05','2025-12-09 19:31:08','2025-12-09 19:31:08','2025-12-09 19:31:08',NULL,NULL,NULL),
(946,4,'<1762877931488.5810e28a-a69b-450d-bc42-8a481a957e76@bf06x.hubspotemail.net>',NULL,NULL,'=?utf-8?Q?Black_Friday_Starts_NOW_=E2=80=93_Don=E2=80=99t_Miss_Out!?=','sales@epiloglaser.com','Epilog Laser Sales','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional //EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:v=\"urn:schemas-microsoft-com:vml\" lang=\"en\"><head>\r\n    <title>Black Friday Starts NOW – Don’t Miss Out!</title>\r\n    <meta property=\"og:title\" content=\"Black Friday Starts NOW – Don’t Miss Out!\">\r\n    <meta name=\"twitter:title\" content=\"Black Friday Starts NOW – Don’t Miss Out!\">\r\n    \r\n    \r\n    \r\n<meta name=\"x-apple-disable-message-reformatting\">\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\r\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <!--[if gte mso 9]>\r\n  <xml>\r\n    <o:OfficeDocumentSettings>\r\n      <o:AllowPNG/>\r\n      <o:PixelsPerInch>96</o:PixelsPerInch>\r\n    </o:OfficeDocumentSettings>\r\n    <w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\">\r\n      <w:DontUseAdvancedTypographyReadingMail/>\r\n    </w:WordDocument>\r\n  </xml>\r\n  \r\n  <style>\r\n    ul > li {\r\n      text-indent: -1em;\r\n    }\r\n  </style>\r\n<![endif]-->\r\n<!--[if mso]>\r\n<style type=\"text/css\">\r\n body, td {font-family: Arial, Helvetica, sans-serif;}\r\n .hse-body-wrapper-table {background-color: #EAF0F6;}\r\n</style>\r\n<![endif]-->\r\n<!--[if mso | IE]>\r\n  <style type=\"text/css\">\r\n    .hse-column-container { border: none !important; padding: 0 !important; }\r\n  </style>\r\n<![endif]-->\r\n    \r\n      \r\n  \r\n  \r\n    \r\n  <meta name=\"generator\" content=\"HubSpot\"><meta property=\"og:url\" content=\"http://43785732.hs-sites.com/-temporary-slug-3ecfc0bf-19a4-4364-8e8b-966f78eeac89\"><meta name=\"robots\" content=\"noindex,follow\"><!--[if !((mso)|(IE))]><!-- --><style type=\"text/css\">@media only screen and (max-width:639px){img.stretch-on-mobile,.hs_rss_email_entries_table img,.hs-stretch-cta .hs-cta-img{height:auto !important;width:100% !important}\r\n.display_block_on_small_screens{display:block}.hs_padded{padding-left:20px !important;padding-right:20px !important}\r\n.hs-hm,table.hs-hm{display:none}.hs-hd{display:block !important}table.hs-hd{display:table !important}\r\n}@media only screen and (max-width:639px){.hse-border-m{border-left:1px solid #eaf0f6 !important;border-right:1px solid #eaf0f6 !important;box-sizing:border-box}\r\n.hse-border-bottom-m{border-bottom:1px solid #eaf0f6 !important}.hse-border-top-m{border-top:1px solid #eaf0f6 !important}\r\n.hse-border-top-hm{border-top:none !important}.hse-border-bottom-hm{border-bottom:none !important}\r\n}.moz-text-html .hse-column-container{max-width:600px !important;width:600px !important}\r\n.moz-text-html .hse-column{display:table-cell;vertical-align:top}.moz-text-html .hse-section .hse-size-4{max-width:200px !important;width:200px !important}\r\n.moz-text-html .hse-section .hse-size-12{max-width:600px !important;width:600px !important}\r\n@media only screen and (min-width:640px){.hse-column-container{max-width:600px !important;width:600px !important}\r\n.hse-column{display:table-cell;vertical-align:top}.hse-section .hse-size-4{max-width:200px !important;width:200px !important}\r\n.hse-section .hse-size-12{max-width:600px !important;width:600px !important} }@media only screen and (max-width:639px){.hse-body-wrapper-td{padding-top:20px !important}\r\n#section-0 .hse-column-container{background-color:#fff !important} }@media screen and (max-width:639px){.social-network-cell{display:inline-block}\r\n}@media only screen and (max-width:639px){.hse-body-wrapper-td{padding-bottom:20px !important}\r\n#section-9 .hse-column-container{background-color:#fff !important} }</style><!--<![endif]--><style type=\"text/css\">#hs_body #hs_cos_wrapper_main a[x-apple-data-detectors]{color:inherit !important;text-decoration:none !important;font-size:inherit !important;font-family:inherit !important;font-weight:inherit !important;line-height:inherit !important}\r\na{text-decoration:underline}p{margin:0}body{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale}\r\ntable{border-spacing:0;mso-table-lspace:0;mso-table-rspace:0}table,td{border-collapse:collapse}\r\nimg{-ms-interpolation-mode:bicubic}p,a,li,td,blockquote{mso-line-height-rule:exactly}\r\n.ShadowHTML p,.sh-modified-inline p{margin:0}</style></head>\r\n  <body id=\"hs_body\" bgcolor=\"#EAF0F6\" style=\"margin:0 !important; padding:0 !important; font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n    <div id=\"preview_text\" style=\"display:none;font-size:1px;color:#EAF0F6;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;\" lang=\"en\">Upgrade your shop with limited-time savings on laser systems!</div>\r\n    \r\n<!--[if gte mso 9]>\r\n<v:background xmlns:v=\"urn:schemas-microsoft-com:vml\" fill=\"t\">\r\n    <v:fill type=\"tile\" size=\"100%,100%\" color=\"#ffffff\"/>\r\n</v:background>\r\n<![endif]-->\r\n    <div class=\"hse-body-background\" lang=\"en\" style=\"background-color:#eaf0f6\" bgcolor=\"#eaf0f6\">\r\n      <table role=\"presentation\" class=\"hse-body-wrapper-table\" cellpadding=\"0\" cellspacing=\"0\" style=\"margin:0; padding:0; width:100% !important; min-width:320px !important; height:100% !important\" width=\"100%\" height=\"100%\">\r\n        <tbody><tr>\r\n          <td class=\"hse-body-wrapper-td\" valign=\"top\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding-top:20px; padding-bottom:20px\">\r\n            <div id=\"hs_cos_wrapper_main\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_dnd_area\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"dnd_area\">  <div id=\"section-0\" class=\"hse-section hse-section-first\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff; padding-bottom:10px; padding-top:10px\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-bottom:10px; padding-top:10px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-0-0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module-0-0-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#00578a; word-break:break-word; text-align:center; padding:5px 20px; font-size:0px\">\r\n        <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QBM3qn9qW8wLKSR6lZ3kMW4jC4Wb84rTJ1V_gzLL3VQf0HW8gGWQN16TvjZW5NzyNp24zmsHN3d6B3LZLc-nW33xhx631SSzzW28SKj89lMRWmW93Y2Gb41q8rNW3DgF-m4mXPbXW5RSHl68l1ZfqW7D8DwM4T8_8vW1PfLkF2MW_6CW3tv0Ng24zNXhW6jRsq53_1wKZW1P5xdt3Z8TN5VV9Fks6z2kv9W6tdC6-174DdnMpW6f9FKfQvW2ylhsq3CHXJCVDbzMy5s6p-lW1x87pd63HYqxN1QNmB-r7rgdW8jzbsF1CZJcJW75SgSh3lx0qGV5bch35dmgwVW6ZJbfX2sp5hSW7s3TqN2r8NXNW4pmq9L4npbV8f6dxKSb04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"UUy2/NqM\">\r\n        <img alt=\"FINAL-H\" src=\"https://hs-43785732.f.hubspotemail.net/hub/43785732/hubfs/FINAL-H.png?width=600&amp;upscale=true&amp;name=FINAL-H.png\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"300\" align=\"middle\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section-1\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:200px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"200\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:200px\">\r\n<![endif]-->\r\n<div id=\"column-1-0\" class=\"hse-column hse-size-4\">\r\n  <div id=\"hs_cos_wrapper_module-1-0-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#FFFFFF\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; border-radius:0px; cursor:auto; background-color:#FFFFFF; mso-padding-alt:12px 18px\">\r\n        <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QBM3qn9qW8wLKSR6lZ3lwW3mnMrQ25Vc0jW3V2BTS7CBQLkW2kx1wl288RV4W6rHNkF5v_K_fW3D3ZRK5732LFW6FZydz7GpyvBW5BGtB95428XHW3VbNVk6wKh6SW920ZzP23DPV3W9jGDxR1ZVjZfW2Rbkzq4Y2XPfN3cN0w1JNYdgW5rqp4454V8yKW67cW2c4m5rGlW7n0QGn5QLGX8W7BZCXV94hVlTW1Ss_st8fGT4TW3HH6l-3cgVjXN5RS9YcykBRWW41tcVP19Q2DVW8B2NQt2Kb2FGW5F9btH8mc-KvW1FbVsf6GThmYW64XJ4752WMJpW24bmBG5t8QqxN73vvzF4DXWFW43chVv341_ZZW5yXrFc2LCKDhf15j66-04\" target=\"_blank\" style=\"color:#00a4bd; font-size:14px; font-family:Arial, sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:12px 18px; display:block\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"QJswKJS0\">\r\n          <strong style=\"color:#00578A;font-weight:bold;text-decoration:none;font-style:normal;\">PRODUCTS</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:200px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"200\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:200px\">\r\n<![endif]-->\r\n<div id=\"column-1-1\" class=\"hse-column hse-size-4\">\r\n  <div id=\"hs_cos_wrapper_module-1-1-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#FFFFFF\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; border-radius:0px; cursor:auto; background-color:#FFFFFF; mso-padding-alt:12px 18px\">\r\n        <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QC23qn9qW95jsWP6lZ3pvW1Y47Zz3Xh-lcW1QfRrp8r7BM-W8VhzZ114DfgfW3ygkx15-Vg3jW7fxqGb4GYbfqW1w1rmd8LcglmW2ZgVxr7rqCH5W20gzDp5b4drdN702Nl_ZqlWKW3RzfMZ3yy1zbW21lVb05S0qSpW3Qx9Bz2btvlqW3QMwC36pv3PwW20HLQD2TcdnkVcT-rR8y9Dn7W88f0wb21MvPsW8dnqH22c0qyJW3FlC4H5hc3hJN1gty9zD7Y8YW4qBFQr4RJ7zCW1XJXmW303_53W69r5GT3DCh5rW2CMfV84rKdkpW1QC31y8cscv4N4TS-NLJk8_rN8nZ_Z4ZR1WFW5m58Gr1n4kkrW18bRX043QpmXW8vFn4L7zNNZFW8tDNqJ6smDcRf32Dc_T04\" target=\"_blank\" style=\"color:#00a4bd; font-size:14px; font-family:Arial, sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:12px 18px; display:block\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"yovoY7jS\">\r\n          <strong style=\"color:#00578A;font-weight:bold;text-decoration:none;font-style:normal;\">HOW IT WORKS</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:200px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"200\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:200px\">\r\n<![endif]-->\r\n<div id=\"column-1-2\" class=\"hse-column hse-size-4\">\r\n  <div id=\"hs_cos_wrapper_module-1-2-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#FFFFFF\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; border-radius:0px; cursor:auto; background-color:#FFFFFF; mso-padding-alt:12px 18px\">\r\n        <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QBM3qn9qW8wLKSR6lZ3pCW1lnFsd8sChw7W1KhDsw43DkqRW4kMm881mF_BjW25dtdv6jr6K3W26wPp28R3dfzW1qv77f37v1f3W81mMqc740b0vW8dkKgT3MVjzwW4jTVZ41q15PyMYp6pnHRJ1BW2WPVhw697F0YW7_d-vx6N05F2W5p7yqn8GzLc2W1NpTqr25ksgPVyGB814r47XlW15BTGc3lC1XtN3p9VGLWkHqBW1q9Tns4rQ7g6W5VKcV18crzRpW74TPc160HS7TW2hYmb68PGLJDW5zQyC34Tv0xNW5FBYQs7FPYJwW6j0xLL2PjVxkW3rjVtX4hfRJHW7GrQsm7LftCgW5bh8sC4gbzyhVrW6W46Nr97gf4nzjQz04\" target=\"_blank\" style=\"color:#00a4bd; font-size:14px; font-family:Arial, sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:12px 18px; display:block\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"Yx0PlJan\">\r\n          <strong style=\"color:#00578A;font-weight:bold;text-decoration:none;font-style:normal;\">WHY EPILOG</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section_1736460590420\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff; padding-bottom:10px; padding-top:10px\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-bottom:10px; padding-top:10px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column_1736460590420_0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module_17364605903912\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#00578a; word-break:break-word; text-align:center; padding:10px 20px; font-size:0px\">\r\n        <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QBM3qn9qW8wLKSR6lZ3n9W7Q7k_X7D6fg-W7QlqT769L5KXW2lvQ6t2PX7tVW8xT-lR4rbsLGN6P9RTzQlTVfVQN4-D4BVFWGVMKjdd3_6L2DW4JKGvW59xfhnW6Fh0RC5kKNN_W3xPsGw4BZqZMW1PLPhF5dHFNGW3_J09Q9bZTrNW6k5sHK9f4BqnN3BKClsr5WYCW5nqf213dXWlXW4kCkhp2vszgLW1QZ5Xx89FFFbW1TyG7R8Fm7KJW5TS98527t6BPW9fHt9M113sjRW1-hZRB3hqqYYW3pwHbr3nfx3jVRdrD819LxpDW60TZYg9f5tc0W7RQcj-5YfSlFN5g8Q8s3GqDzW1MndcD4b3DS3W6F5Wbq4w_qNbf3YY76j04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"jZj1IB78\">\r\n        <img alt=\"black-friday-header\" src=\"https://hs-43785732.f.hubspotemail.net/hub/43785732/hubfs/black-friday-header.png?width=1120&amp;upscale=true&amp;name=black-friday-header.png\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"560\" align=\"middle\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section_1747682109402\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column_1747682109402_0\" class=\"hse-column hse-size-12\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_17476821093021\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17476821093021_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h2 style=\"margin:0; line-height:175%; font-size:22px; text-align:center\" align=\"center\"><span style=\"font-weight: bold;\">&nbsp;Black Friday Savings on Our Top Laser Systems</span></h2>\r\n<h2 style=\"margin:0; font-size:22px; line-height:100%; text-align:left\" align=\"left\"><span style=\"font-weight: normal; font-size: 16px; color: #000000;\">From precision engraving to high-speed marking, the Fusion Pro and Fusion Galvo deliver top-tier performance—now at a limited-time price.</span></h2>\r\n<p style=\"line-height:175%\">&nbsp;</p>\r\n<p style=\"line-height:175%\"><span style=\"color: #000000;\">Celebrate the season with big savings on Epilog’s top-tier laser systems!</span><br><span style=\"color: #000000;\">For a limited time, enjoy exclusive discounts on our most advanced machines:</span></p>\r\n<ul style=\"line-height:175%\">\r\n<li><span style=\"color: #000000;\">Fusion Galvo – Save $750</span></li>\r\n<li><span style=\"color: #000000;\">Fusion Pro 24 – Save $1,000</span></li>\r\n<li><span style=\"color: #000000;\">Fusion Pro 36 – Save $1,500</span></li>\r\n<li><span style=\"color: #000000;\">Fusion Pro 48 – Save $2,000</span></li>\r\n</ul>\r\n<p style=\"line-height:175%\"><span style=\"color: #000000;\">Whether you\'re upgrading your shop or starting fresh, there\'s never been a better time to invest in precision and performance.</span></p>\r\n<p style=\"line-height:175%; text-align:center\" align=\"center\"><br><span style=\"color: #000000;\">Act now—these fall savings won’t last! Sale ends December 1st.</span></p>\r\n<p style=\"line-height:175%; text-align:center\" align=\"center\"><span style=\"color: #000000;\">*Sale Pricing Available in US only*</span></p></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_17476822115521\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#00578A\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; border-radius:8px; cursor:auto; background-color:#00578A; mso-padding-alt:12px 18px\">\r\n        <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QBM3qn9qW8wLKSR6lZ3nTVFW7Yr6256tZN4TyXzC563KGW8pz8Bn5HlFC-W3n1QVH4W_j9XW49BKKK9hs5DFW6WsY-p5JHWp5W83wfBG1J6bWCW4mcLz651sz6_VH09cY1JWv3qW480lDs9b3hpWW81fdGN12zQRTW2g0Gz_7g7fNzW1NxTqx9j1XVzW8hZ-Q04535MjW52xGYj6mFSS2W5FHdqR5Cfq49W9hkMW87PslTMW21ZXQR3Qkd0CVhZnH61HmyN_W6sYFfg43XWx9W63VBX-7rsnXKVP_H0Q7zsYz_N4hLVrT-rs97VNZCNG7nxvnsW7r32pQ7B3P1pN2Hc8r5wHgyCW5pgMLD88jsfGVzP_-5149lYMf5lpXCH04\" target=\"_blank\" style=\"color:#00a4bd; font-size:16px; font-family:Arial, sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:12px 18px; display:block\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"N9vVDshY\">\r\n          <strong style=\"color:#ffffff;font-weight:bold;text-decoration:none;font-style:normal;\">Save Now</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section_1762276102933\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column_1762276102933_0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module_17622761113811\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#00578a; word-break:break-word; text-align:center; padding:0px; font-size:0px\">\r\n        <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QC23qn9qW95jsWP6lZ3pSW1HFBCH6c8n_NW7QS6Fj1N4s8KW2S49FL5NcVTHW1Gt0156g11VrN3rBcRQ_GzwBW5zdMcQ6nDHcqW9l_bWY8dsXS2W20WLrQ33t9LfW7JM1X_6V-ZfFW36BJ8B5B-qxBW4X4GLq49H_j8W6xgRTF8fr1y4W87Pq9B3cvbqKW85xmJT1JM7-DVs3C393Slf6JW8rNzxN5vdFL2W2wsFcp3Fgy5zW7hjd173ntNbFW17g5333HFFTpW2mS5DM93-LYbW1PSVYk2X4ZtLW3Dxzhw5YPPjkW7Jj3T_3FK7hGVN7dZR2qx2pyVfJdwh6LG2WdW410VXD2llq9YVvF8xH4P962vW2s-7nG6rT9PZW6-k6334dRG9pW8qccCy2sH8MQdHPBNg04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"jOCVTQ1d\">\r\n        <img alt=\"Email Sub topic banners\" src=\"https://hs-43785732.f.hubspotemail.net/hub/43785732/hubfs/Email%20Sub%20topic%20banners.png?width=1200&amp;upscale=true&amp;name=Email%20Sub%20topic%20banners.png\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"600\" align=\"middle\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n<div id=\"hs_cos_wrapper_module_17622761835642\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#00578a; word-break:break-word; text-align:center; padding:5px 0px; font-size:0px\">\r\n        <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-Qy-5nXHCW50kH_H6lZ3l8W6vWmX12Wnq1LW34NZ-_7hhCJnW1G2xL83kv1V1W1-vb_K8wYr7NW3Jh4hl4tk0m8W6jS6RH5Y1JgKW5h9fx_58rgd6W68dDVY3-QLckW2Mybx93HZPMhW9jX0sY2q6Z-0W7fQY5p4bpyllW4Drtbq2SRmsYW5rgN0g6X3bh_W8HgFLk2WHGJMW8Lk4TB6tD6GnW2D8_328MbnqlW4bq2yX844nWDV-Nr3L6DnMqhN58zwgx3XMb6W2MwRs51SgzxhW1kHWH_63MK4CW8DdHwj4k9n7DW556Khp42mS0nW4QXJ7Q7prrcfW6tDjzh8np_7kW5_Vb2474wl7WVBrvHk3hRHQTW3tMsj94PrwvQVfc-s-5kBYQGW5RhGXF2_ql8dW2DC4-J5dl5SDW3FMQJP8qVVTVf2VjGQl04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"BquiT+wQ\">\r\n        <img alt=\"Galvo banner\" src=\"https://hs-43785732.f.hubspotemail.net/hub/43785732/hubfs/Galvo%20banner.png?width=1200&amp;upscale=true&amp;name=Galvo%20banner.png\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"600\" align=\"middle\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section-6\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#00578A; padding-bottom:10px; padding-top:10px\" bgcolor=\"#00578A\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#00578A\">\r\n      <tr style=\"background-color:#00578A;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-bottom:10px; padding-top:10px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-6-0\" class=\"hse-column hse-size-12\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module-6-0-1\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module-6-0-1_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h2 style=\"margin:0; line-height:175%; font-size:22px; text-align:center\" align=\"center\"><span style=\"color: #ffffff;\">Start Your Laser Journey!</span></h2>\r\n<p style=\"line-height:175%; text-align:center\" align=\"center\"><span style=\"color: #ffffff;\">Contact us today for pricing information and to <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QBM3qn9qW8wLKSR6lZ3phW5YVyPr6g6m7-W5Vktg437ZBXBW2MvKf09b18hlW5z54_z3TxXcqW3k_zwJ6rNccLW8bpYVs3wJw8GW76my_N7nWkdMW3nQdZM8LFtzzW5R8V6V55hkZwW5ssZSD5hY8MYW7s7X9B6_8vs9W56J07J53cp1KW92MFFp8_NGt1W912zxj1yBkZ-W7236X517WndYW3y9R648mJvdJW924f2B1gX1CWW6pnLPS8DGl20W62YmnJ3BJ6BbW346sr13Lc-bnW1vPgKz3LXh6hW7HMFyR2pr9jHW3Sn-GZ7GsMwGW1DTW7g6bSvGYW4D9Vmq8glFPRW46BvLw52SDR4W5PdNdQ3VrgbkW7SpGGW2BG444f3qm1z004\" target=\"_blank\" style=\"color:#ffffff\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"Qx4Y5roR\">set up a demonstration! →</a></span></p>\r\n<p style=\"line-height:175%; text-align:center\" align=\"center\"><span style=\"color: #ffffff;\">&nbsp;Or visit our shop right now and purchase online!</span></p></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section-8\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff; padding-bottom:10px; padding-top:10px\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-bottom:10px; padding-top:10px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-8-0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module-8-0-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"social-network-cell\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n        <table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module_single\">\r\n          <tbody>\r\n            <tr>\r\n              <td class=\"display_block_on_small_screens\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:8px 5px; line-height:1; vertical-align:middle\" valign=\"middle\">\r\n                <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QBs3qn9qW7Y8-PT6lZ3p9W5D8tmb8Gg9b3W37NPCD45HkxVW6kknHF5nH00KW7b9sPq9bXmPxN28XrG8nK1r_W66jcNN2wVCwbW4GPbGs6phKmyW62tQ_44z4g80W93r2QW2nnypkW5FCCHR2_WsHmW5v9Yp68wlRJHW1ylsdk5Zg9hdW8-Ykks2MDNjhVrzWTK55YNN8W8XmY018xXW_gW6t_blW1t8fwjW81vbzW4S99mQW5TGCkD4X5-7lW5645m04gX4BqW7b75y_80R9DqN225kRs47HNZW5dxz6L6JYrZ2W3VwCNm16nlt4N35G28VjM6kBMwjP1kykH1HW633Tx242DXfGf8h0LCn04\" style=\"color:#00a4bd; text-decoration:none !important\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"AvjqVn8f\" target=\"_blank\"><img src=\"https://hs-43785732.f.hubspotemail.net/hs/hsstatic/TemplateAssets/static-1.262/img/hs_default_template_images/modules/Follow+Me+-+Email/youtube_circle_grey.png\" alt=\"YouTube\" height=\"25\" style=\"outline:none; text-decoration:none; border:none; width:auto!important; height:25px!important; vertical-align:middle\" valign=\"middle\" width=\"auto\">\r\n                </a>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td><td class=\"social-network-cell\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n        <table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module_single\">\r\n          <tbody>\r\n            <tr>\r\n              <td class=\"display_block_on_small_screens\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:8px 5px; line-height:1; vertical-align:middle\" valign=\"middle\">\r\n                <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QBs3qn9qW7Y8-PT6lZ3kCW2qllR75cgZFZW8BSwbT8fq9SWW3Vy0Mj3DHJYmW3t4q482NKdWBW9h02HG64c_TYW5tJJ3D2tkM2mW25NpyP7csbzTW7mJN3F1FwHPvW7Wv5rv8ntT7jW6vBS8W2C0jnYN589L7rLjgyDW5pGpDX7XnldJW7J25tt5njKF_N4-x9sMcB8shW6LbQm44flSC_N4FbyycqY8xLW8pFQYG1JG1JgW68xKkY5Z_zv1W5Z0hmf7NLfFRVS0nnw8l8WGGW41H7mw2tYwVLN1k1kHGwDgY_W6VkX6X6vT4mwVh_s7g4JX-c-W45gC0q4pTPsVW5085Tw7Nbkylf2JybR804\" style=\"color:#00a4bd; text-decoration:none !important\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"3eV/mCGq\" target=\"_blank\"><img src=\"https://hs-43785732.f.hubspotemail.net/hs/hsstatic/TemplateAssets/static-1.262/img/hs_default_template_images/modules/Follow+Me+-+Email/facebook_circle_grey.png\" alt=\"Facebook\" height=\"25\" style=\"outline:none; text-decoration:none; border:none; width:auto!important; height:25px!important; vertical-align:middle\" valign=\"middle\" width=\"auto\">\r\n                </a>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td><td class=\"social-network-cell\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n        <table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module_single\">\r\n          <tbody>\r\n            <tr>\r\n              <td class=\"display_block_on_small_screens\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:8px 5px; line-height:1; vertical-align:middle\" valign=\"middle\">\r\n                <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QBs3qn9qW7Y8-PT6lZ3kPW63FMGZ16Ls_yW1P3CGn6BN_gNW8CpG1d1VKynZW2CP7Zn5vZCWdVw0zQv6DQX8tW5mMnNk4vSqT3W7t4X7H4fsMptW5XLg_k4PBG0gW7kn3p31STD7HW8bkg6v7fqbVcW7v5l1x3W0HB-W1HcXSs8KNFykW7Q7VTj48MJN8W38sLFj5B1RKLW78Zc1y3Tc1q8W8VRVrX6TGB9JN6MNv8NmsHzGW1mbJ6v2ldlTpW8_k1zQ5PdXRMW6B65pX40p_R1W3tndK48H8MHKW1krFyd7cqbBGVcyHDz6_-9bsW57FVh586rLtjW8BcZck2DzXZ_N8GH0XgV5SRpf1G6kWx04\" style=\"color:#00a4bd; text-decoration:none !important\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"Nv+8s09A\" target=\"_blank\"><img src=\"https://hs-43785732.f.hubspotemail.net/hs/hsstatic/TemplateAssets/static-1.262/img/hs_default_template_images/modules/Follow+Me+-+Email/instagram_circle_grey.png\" alt=\"Instagram\" height=\"25\" style=\"outline:none; text-decoration:none; border:none; width:auto!important; height:25px!important; vertical-align:middle\" valign=\"middle\" width=\"auto\">\r\n                </a>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td><td class=\"social-network-cell\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n        <table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module_single\">\r\n          <tbody>\r\n            <tr>\r\n              <td class=\"display_block_on_small_screens\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:8px 5px; line-height:1; vertical-align:middle\" valign=\"middle\">\r\n                <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QBs3qn9qW7Y8-PT6lZ3lLW496ydw76fntLVlTblN6cd4VnW6FBz0H6S8MSHW2YJvCM4kKMvcW4Ps90C84N1PJW51-vpR5MrXT-W3FGWr486z2btW4pbBXp6K_z61W8G_zXb2VHjKVW5GLP4S6KRStwVW1BxT82vBg2W2H-T0G12KWtWW5mS3ZS3cTVmQW123bxs153t1nW5vd2B77TrhgVW2xWSdN2SQ3xvW1tMnb06-zJ0CW4XvxRP4-LJ9RW7J4bvW5_0CpcW5MX-JR21KhfrW3ZvQ_Q5Y4_7YW4T6sGP5Dsx3gW2Y6zMW602D2qW5B_gDQ3qxJC1W60WdWp5xFGF5W3_51TC5tW73Qf5b4hQY04\" style=\"color:#00a4bd; text-decoration:none !important\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"89S4y2R7\" target=\"_blank\"><img src=\"https://hs-43785732.f.hubspotemail.net/hs/hsstatic/TemplateAssets/static-1.262/img/hs_default_template_images/modules/Follow+Me+-+Email/twitter_circle_grey.png\" alt=\"X\" height=\"25\" style=\"outline:none; text-decoration:none; border:none; width:auto!important; height:25px!important; vertical-align:middle\" valign=\"middle\" width=\"auto\">\r\n                </a>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td><td class=\"social-network-cell\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n        <table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module_single\">\r\n          <tbody>\r\n            <tr>\r\n              <td class=\"display_block_on_small_screens\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:8px 5px; line-height:1; vertical-align:middle\" valign=\"middle\">\r\n                <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QBs3qn9qW7Y8-PT6lZ3kDW3ws5BD6s536qW29D3vY29SgKTW263Xjh3ssnRrW4vQjF992JDkXW73Yvr47qbFtZN8zT5GmqMw69W8M22PC6jV2WtW7Zp0t86BxNWyW2xHSB93wRB5NW9d6Ql-6VF8fjN963Prpqrr9PW1Ght9y1lK3HNW7tC1mc4Z-r5hW2b_cmG57pBKrV1YR651ZXx1MN5XnckVXxmFgN6Mh-8y56YFPW21XG8t5cs2GqW3HFKdQ7rQgNLW4D-kQ_4FqhvvW2GQ7V566QlV3W7WDjGf6M2q3wW8XYYQg5YR_gmW3y7M_-2t4J__N9fdBDDpndpwW3qfQfw7z2-2-f4TwmvW04\" style=\"color:#00a4bd; text-decoration:none !important\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"0jFc3n+8\" target=\"_blank\"><img src=\"https://hs-43785732.f.hubspotemail.net/hs/hsstatic/TemplateAssets/static-1.262/img/hs_default_template_images/modules/Follow+Me+-+Email/linkedin_circle_grey.png\" alt=\"LinkedIn\" height=\"25\" style=\"outline:none; text-decoration:none; border:none; width:auto!important; height:25px!important; vertical-align:middle\" valign=\"middle\" width=\"auto\">\r\n                </a>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td><td class=\"social-network-cell\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n        <table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module_single\">\r\n          <tbody>\r\n            <tr>\r\n              <td class=\"display_block_on_small_screens\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:8px 5px; line-height:1; vertical-align:middle\" valign=\"middle\">\r\n                <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QBs3qn9qW7Y8-PT6lZ3kBW6vq_kn1w998kW6vZkBj8bcmHSN7hByyBlWdDYW7DwWFW4gLwkbW1kD3DD2pcrR-W8yjsGG7xWpRkW3n30cs8fts8mW3Q4mcw5gGTJCW6wXlWf7QwvqcW2FRYz99kBnk4W3hF_2j7xBZ5_W98KzkD7mgdDpV6-gHH86H_LMN9dLBY5_tyHsW3BNNlY4Sn1QZN701clRNw54zW38Xkb72yTtf6W7vpQXs77r9dvVn9k7n890Q80VMVZl94Ry7JxW87z4BS1xTG9DN91zFGH8_HMcW24hy5c5ZqzR7W3Njxmn4mknf1W1xjr_S2bC_GgW7PzMpm7HLZh6f3Xtfj404\" style=\"color:#00a4bd; text-decoration:none !important\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"1kFf2yTo\" target=\"_blank\"><img src=\"https://hs-43785732.f.hubspotemail.net/hs/hsstatic/TemplateAssets/static-1.262/img/hs_default_template_images/modules/Follow+Me+-+Email/pinterest_circle_grey.png\" alt=\"Pinterest\" height=\"25\" style=\"outline:none; text-decoration:none; border:none; width:auto!important; height:25px!important; vertical-align:middle\" valign=\"middle\" width=\"auto\">\r\n                </a>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td><td class=\"social-network-cell\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n        <table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module_single\">\r\n          <tbody>\r\n            <tr>\r\n              <td class=\"display_block_on_small_screens\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:8px 5px; line-height:1; vertical-align:middle\" valign=\"middle\">\r\n                <a href=\"mailto:sales@epiloglaser.com\" style=\"color:#00a4bd; text-decoration:none !important\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"eUekBVr0\" target=\"_blank\"><img src=\"https://hs-43785732.f.hubspotemail.net/hs/hsstatic/TemplateAssets/static-1.262/img/hs_default_template_images/modules/Follow+Me+-+Email/mail_circle_grey.png\" alt=\"Email\" height=\"25\" style=\"outline:none; text-decoration:none; border:none; width:auto!important; height:25px!important; vertical-align:middle\" valign=\"middle\" width=\"auto\">\r\n                </a>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td><td class=\"social-network-cell\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n        <table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module_single\">\r\n          <tbody>\r\n            <tr>\r\n              <td class=\"display_block_on_small_screens\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:8px 5px; line-height:1; vertical-align:middle\" valign=\"middle\">\r\n                <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QB83qn9qW7lCdLW6lZ3ksW6W0Wgt1MB4VFW6WSYG14Cb_YvN7MyvjS7PbytW7R--Xr8r2bGbW8Lzdq54kgB9fTd6KD7m-1DRW5zXVFj8qxCKCW8qs5YV7chXPFW774Vj32M_JMfW4FdC3g8W1lxFW3g-0508Hfzs_W8ssBH71nsy9CW3rt3Sf6271D3W2YhplB85cDjcW52VmxM2v0NWQN7ZcwYYhn098W14PkVn5h1V57W3nZl_Q3dZdJvW5GnR_j5n-SShW7kmZ679h1GC4W1qD7fj8Fm57nW3M_4-b85WcyrN8gLS1CSSm_wW30g-wD2891X7f6fkKpl04\" style=\"color:#00a4bd; text-decoration:none !important\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"GdG1tBFF\" target=\"_blank\"><img src=\"https://hs-43785732.f.hubspotemail.net/hs/hsstatic/TemplateAssets/static-1.262/img/hs_default_template_images/modules/Follow+Me+-+Email/website_circle_grey.png\" alt=\"Website\" height=\"25\" style=\"outline:none; text-decoration:none; border:none; width:auto!important; height:25px!important; vertical-align:middle\" valign=\"middle\" width=\"auto\">\r\n                </a>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n</div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section-9\" class=\"hse-section hse-section-last\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff; padding-bottom:20px; padding-top:20px\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-bottom:20px; padding-top:20px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-9-0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module-9-0-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#00578a; word-break:break-word; text-align:center; padding:0px; font-size:0px\">\r\n        <img alt=\"FINAL-H\" src=\"https://hs-43785732.f.hubspotemail.net/hub/43785732/hubfs/FINAL-H.png?width=400&amp;upscale=true&amp;name=FINAL-H.png\" style=\"outline:none; text-decoration:none; max-width:100%; font-size:16px\" width=\"200\" align=\"middle\">\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n<div id=\"hs_cos_wrapper_module-9-0-1\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table role=\"presentation\" class=\"hse-footer hse-secondary\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family:Arial, sans-serif; font-size:12px; line-height:135%; color:#23496d; margin-bottom:0; padding:0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; text-align:center; margin-bottom:0; line-height:135%; padding:10px 20px\">\r\n        <p style=\"font-family:Arial, sans-serif;font-size:12px;font-weight:normal;text-decoration:none;font-style:normal;color:#00578A\">\r\n          Epilog Laser, 16371 Table Mountain Parkway, Golden, Colorado 80403, USA, +1 303 277 1188\r\n        </p>\r\n        <p>\r\n          <a data-unsubscribe=\"true\" href=\"https://hs-43785732.s.hubspotemail.net/hs/preferences-center/en/direct?data=W2nXS-N30h-GVW3VyHBl4fqfHQW2WxLwQ3gsYMNW2-dThZ1QksyxW2w3CQ03j6X6yW2vZJl53R4pPsW4kgl1_43TwSQW1XhdfQ2xFXp8W2TgHLM2KSt55W1NpTGS4cL6W3W3K54qy2YhyT6W4fLMr53C1WyYW3R1ZM03CbHyNW4ffZ3R49Nn7GW3F52xk21rdYGW41YztX2PLHsSW2qMtdK2F_Sm3W2-FTR32-MMDfW4tkcjn41sHX2W2WrbM54mrFVDW4tx4F834n-8TW2MCt6W2vS37VW1-ZjSb2MwtHCW3ZJbf52KG2WqW3bwwdn43pGlHW2r3DKp2z-cvBW3M7j3R3GKtdFW43WcZw32HGmDW3NR1113NFrYbW45wD-B47Gh1gW2RRV674tp1CNW1YZykV2TMZgnW4fMxtw2WrH2mW2CXTD922X_LbW2RJl_73D_DRxW38z-vP3hZHS6W3M2LsN43F1PMW3K3Qk73JSM0zW1XvRyL3VxV_BW4tpqfn1_l7KSW3JYFqM1SvVGmW3NCnfS2HRSBtW2PBStq1L5Q1MW4tmQNd3_XrR1W2RN7Lx3bwr-9W3XHYyF3P3SlcW4ckQfM1NkGn7W3H60tZ4mjDFjW1BP2j81XqhrrW2TxT4X2FSzH80&amp;utm_campaign=28312622-Black%20Friday%202025&amp;utm_source=hs_email&amp;utm_medium=email&amp;utm_content=389408045&amp;_hsenc=p2ANqtz-8d508c50sk1LHzb5VbOpOSvU2f1TAe6hqPAiP54pTnPchkC7Q5KN6i5S5AbHGIRiNI82VGdTvR3fseZSF3o-wmdauqZw&amp;_hsmi=389408045\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:12px; color:#00578A; font-weight:normal; text-decoration:underline; font-style:normal\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"SFRZzEXk\" target=\"_blank\">Unsubscribe</a>\r\n          <a data-unsubscribe=\"true\" href=\"https://hs-43785732.s.hubspotemail.net/hs/preferences-center/en/page?data=W2nXS-N30h-GVW3VyHBl4fqfHQW2WxLwQ3gsYMNW2-dThZ1QksyxW2w3CQ03j6X6yW2vZJl53R4pPsW4kgl1_43TwSQW1XhdfQ2xFXp8W2TgHLM2KSt55W1NpTGS4cL6W3W3K54qy2YhyT6W4fLMr53C1WyYW3R1ZM03CbHyNW4ffZ3R49Nn7GW3F52xk21rdYGW41YztX2PLHsSW2qMtdK2F_Sm3W2-FTR32-MMDfW4tkcjn41sHX2W2WrbM54mrFVDW4tx4F834n-8TW2MCt6W2vS37VW1-ZjSb2MwtHCW3ZJbf52KG2WqW3bwwdn43pGlHW2r3DKp2z-cvBW3M7j3R3GKtdFW43WcZw32HGmDW3NR1113NFrYbW45wD-B47Gh1gW2RRV674tp1CNW1YZykV2TMZgnW4fMxtw2WrH2mW2CXTD922X_LbW2RJl_73D_DRxW38z-vP3hZHS6W3M2LsN43F1PMW3K3Qk73JSM0zW1XvRyL3VxV_BW4tpqfn1_l7KSW3JYFqM1SvVGmW3NCnfS2HRSBtW2PBStq1L5Q1MW4tmQNd3_XrR1W2RN7Lx3bwr-9W3XHYyF3P3SlcW4ckQfM1NkGn7W3H60tZ4mjDFjW1BP2j81XqhrrW2TxT4X2FSzH80&amp;utm_campaign=28312622-Black%20Friday%202025&amp;utm_source=hs_email&amp;utm_medium=email&amp;utm_content=389408045&amp;_hsenc=p2ANqtz-8d508c50sk1LHzb5VbOpOSvU2f1TAe6hqPAiP54pTnPchkC7Q5KN6i5S5AbHGIRiNI82VGdTvR3fseZSF3o-wmdauqZw&amp;_hsmi=389408045\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:12px; color:#00578A; font-weight:normal; text-decoration:underline; font-style:normal\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"qjPJqCop\" target=\"_blank\">Manage preferences</a>\r\n        </p>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div></div>\r\n          </td>\r\n        </tr>\r\n      </tbody></table>\r\n    </div>\r\n  \r\n<img src=\"https://d583HW04.na1.hubspotlinks.com/Cto/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75W89-Qk-8fYxnn31Sg1\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"display:none!important;min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important\"></body></html>','Upgrade your shop with limited-time savings on laser systems!\r\n\r\nFINAL-H (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QBs3pyd0W7Y8-PT6lZ3lRN7gqSm2sY8mLW1Ph42x1XbDTDW1FxMhz2tVQBQV-zPRy3K7BymW7q63yn3xXjtqW4fGkkD7nV5v9N8MxzxDbj4bcW5Z_GZr7mF_RmW3pv1Rv6-9tcvW8nvv918S2k5YW4lXFvV5pHJVJW5ZL14H6pZdzNW1ZYRB96p17SmN20dmRcW8F02W83QJKy4NYx1HW5VXd-M8nqYf9W2Dt-7t8LTfQzW3Lr_9b4j3YLlW2y21RQ5kN6SPW8MFgj68tyCz4W2_7T9G8dHtyDW41DKrj2zsCl1W2Tp7wY2SlLYkW1CRjfG6Jsng4W8NF7WT3p0_FbW5YS1D68_MssBf83zND604 )\r\n\r\nPRODUCTS\r\n(https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QBM3pyd0W8wLKSR6lZ3pRW8P2ds16c85QZN8N_Vq5MyyL8W6-WLcH77WC3tW5J1Ddd4M8B4vW5qJWPp7YkxT5N1b9WTdq6c-tW6nyZWF2jcnxdW1jBLWj7Q5cxhW4HFkCl3PrXC5W5ZPZcd87kLTBW8qXlk88KgVzRVWlBQk4pjNm_W3-8zpC60BbMLW2Yl78_66--4mW8CpqGq82fc9fW6pZdrw3tykmfW47qzh789mML0N6pVwCNjVc5zN2MSCNM-wH5XW6Y4LDx3hnhxlW4b5YmZ8dq2LxW8hx8Fv4L8WX9N7Gwv_3M9y0wN7cglMf5snR4W22KXZb4lgpK_N5csPYbSyGx8N7V8HSnKl0pTW3_YMdB3LwbTPdpMmjH04 )\r\n\r\nHOW IT WORKS\r\n(https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QC23pyd0W95jsWP6lZ3n0W5R8H_Y1_Y424Vzp7p14fh861W36z2S65fpBpDW73mdSL7d_bMKW1nMzD12P97LBW77FGJw2GChbvW3s7gKG8gSxJJW7xXLc18j2x-fW4Gys_f7r31SMW6YrH7P5rSNLJW7ZxBWw7Xfq2WW7K6ZRT3zhgJSW6Xj37M8wt-cMN63j9Gg8d-_0W3T-XHg1JMbM5W8xBgDN7RLCThW3xjNFr6MctKhW1pF1pB7BMVQbN2nZWW9dbyGQW545bFf9l570LW2qcJsk60VQgxW4Gzzmx74trwBW7pTSg45s7y33W6LxS8k1k2zRkVP-WtB5HrTvvW9kc82y46nw-JW2_PdDt1FmQ6RW4yNxJn6yqBdFW8LldBq8N6bB1W6TSy-06bM4nKf100PK-04 )\r\n\r\nWHY EPILOG\r\n(https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QBM3pyd0W8wLKSR6lZ3q7W7k95Zl6L0HTpW62M8Ky6Q4q2FW1FPmk38Wm4GPW99V8FP8XD-TpW2dNnrN62mTqsW2fFtRy1HPRGKW3xDBpj1cZDr9W3_tVZ65swnc_W2FTsDb6YgMDcN7KBvzlZTHyhW423zXZ6ft6NKW3_HBNG2Cm7JfW87G_Cc27lhxHW9cPc7q9htztvV-6hbr37R5RhW4hvNpP1vp008N8vyH21m2pn8W8QSBT13KRY0nW4w7-TY4J_-4NVFlz1R6ThbYzW99bpZP3bfSVhW7fYKjX4XxR29W9cN17d47MKLGV7jfY_2lhhjgW7dzLNf19lQ28W3lkvP59lgN9vN2HW_5VDd5GHW196Lyw60zxL9f4Gg8Jl04 )\r\n\r\nblack-friday-header (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QBs3pyd0W7Y8-PT6lZ3lpW1DvXX_2ZzxsfW3-zhbs7nbyKRW8VqX9h4sGbBbW5CztwX1WzK_4W4V843N8vQZ5yW5WDrg74Bk60jN8bnlvN3jjN2W48SgTr9hsbgtW8VrFqK8F55y9W32cYsl7Y-76wW3y4xNk6l-mqMW2M4tLg6_5g0mW8B9jZ56bxlssV4QS9Q2FSFBnW60PbVp6MyxW2W1Zs6617cy6BBN4TbQzztvQglW4-zFGC41z_2QW38JN4G5VVVvpW1SjmQ22lckN9W2BzlbG46YYYqW4SzzLc541hwnW2rDTbm6-YvnVW6DhTQ590jM05W8fk6D_6nfPkfW42kfn_1PtqJcf41D4HW04 )\r\n\r\nBlack Friday Savings on Our Top Laser Systems\r\n\r\nFrom precision engraving to high-speed marking, the Fusion Pro and Fusion Galvo deliver top-tier performance—now at a limited-time price.\r\n\r\nCelebrate the season with big savings on Epilog’s top-tier laser systems!\r\n\r\nFor a limited time, enjoy exclusive discounts on our most advanced machines:\r\n\r\n- Fusion Galvo – Save $750\r\n- Fusion Pro 24 – Save $1,000\r\n- Fusion Pro 36 – Save $1,500\r\n- Fusion Pro 48 – Save $2,000\r\n\r\nWhether you\'re upgrading your shop or starting fresh, there\'s never been a better time to invest in precision and performance.\r\n\r\nAct now—these fall savings won’t last! Sale ends December 1st.\r\n\r\n*Sale Pricing Available in US only*\r\n\r\nSave Now\r\n(https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QBs3pyd0W7Y8-PT6lZ3lpW1DvXX_2ZzxsfW3-zhbs7nbyKRW8VqX9h4sGbBbW5CztwX1WzK_4W4V843N8vQZ5yW5WDrg74Bk60jN8bnlvN3jjN2W48SgTr9hsbgtW8VrFqK8F55y9W32cYsl7Y-76wW3y4xNk6l-mqMW2M4tLg6_5g0mW8B9jZ56bxlssV4QS9Q2FSFBnW60PbVp6MyxW2W1Zs6617cy6BBN4TbQzztvQglW4-zFGC41z_2QW38JN4G5VVVvpW1SjmQ22lckN9W2BzlbG46YYYqW4SzzLc541hwnW2rDTbm6-YvnVW6DhTQ590jM05W8fk6D_6nfPkfW42kfn_1PtqJcf41D4HW04 )\r\n\r\nEmail Sub topic banners (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QBM3pyd0W8wLKSR6lZ3p2N3GbrYZsLBczW2wWmV76NF7gwVk8PFS8bK67XW1XDHGQ39xjvCW5d1_bB4gtsg-W8VBNML1LtsW9Vgz-1d3-lJJyW7LnX-02R3_NMW38GSHN6RCH4GW5r0d_Q1l5_0ZW86-dFR7NmNp1W8mH7gV1JGhhBW5WSSlw2PmJMzN4qrBsGVF8HKN6TJRVdJq2vSW8F8d5Q3pRFxzN7z_XZXsLX5JW93J3VS3f82YlW5bZmfN4rfKK7W5Whqfl8tV8SYW6L21C09b14nJW89WXQS7r9PNZW40TQR785HcWsW6xpcLX35TFVzW6MkKVn8YKwlZW2ZkHfX20cGrGW3pfwmB2_3Nv7VHmZQF7lnqb2f22xXRn04 )\r\n\r\nGalvo banner (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QC23pyd0W95jsWP6lZ3mcW2D-6-01FbFMWW82gCzM2F4vjNW5mrdTk1tX5lXW4qcgJ67c0glKW8ScdWS6XwxFKN7KS139v5zh2W5kQzDN6Bc7SJW3k3-t07YfnGpW2bG5Rq62QJZzW4tlHPV7cFblPW512NsZ6QfN1nW7b257p17KzK2W7Pg0Km7XJlTWW7L_P-556svmdN8lRzGdXf5QKW3pWY776tkhSjW6Z77FN59h41RW2zxLc-8BBfm9VPQcy13S8CHpN67n-fD7NTJsW7cX2mM6PR83wN7bD63Hds4vpW8YS-9x6lqq8SW1trSbp5l4P2jW6yj_6p65X1X8W7c-5q05C0XwQW5BBG1x4Dfs_RW3Drwmg351MyWW78VcGV6-Y2V9W4wDvcv1sFWKlf1Gy3d404 )\r\n\r\nStart Your Laser Journey!\r\n\r\nContact us today for pricing information and to set up a demonstration! → (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QBM3pyd0W8wLKSR6lZ3p3W5fRVR76JfJgbW5CyWxM2124gBVj6hWw41frzjVBHMX55LpnxRN75tg13Qh-NYW6gT-4P7N64xvW2N8W4M1WZH6NW2z7HRx8q3LTwW23954Q1YbxsTW5bhhvv8g-D0PW7HSQC25cGvjfN1sjK3QH44rsW2fKb7b5Jq4h0W6ZWX1q7WdknXW7DVcmX26shmMW8rfZ_B5zQQdqW1skqYH4tTclTN7dgnB5cYtLsW3h4TYs5zytR-W6R67Hs6BVMgtW1wjXTh1b1GSPW1qw4bs7gmb5JW5MCHJ7896B5qW1SlM4F6WPty2N2VMH2kkkcZnW7lC68Z47gsRTW5kyzJh98d2pBW5L2Gnw4ZDQL7f6MpnM804 )\r\n\r\nOr visit our shop right now and purchase online!\r\n\r\nYouTube (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QB83pyd0W7lCdLW6lZ3ljN29nbJ75fYfjW4b3bhr7DRY1pW1n1WRT2RF7rQVhFb-P5_pvQFW594wst2S7bSLW2RhvmP4XP0FZN27lqqs7MDS9W2sWDTj3gYkvFW7j9wrL81jPjnVdkJvs4STVsvN4hMp8V2p8vVW7yDstk6gVY5NW415kyK164G3vW7S0Rm096LvZHN4Mh68n-SL4vW4Fvfv28_6zGjW4NDDpZ8dVk6LW2wcXxV8ZX7fdW7bmwcH5SsFYRW2mpwYW244LyrN8VYF_35PbSwW9fBFjr6-llnkW5dwdP13MX41jW3kr9wP25BftWdWTC0W04 )\r\n\r\nFacebook (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QB83pyd0W7lCdLW6lZ3lxW80Z1375r9yM1Vdp9GW5chSRdW8JZLCB5F3RjhVJP3YF7N9ZjbW84cYc91K72zKN2281M2GsXStW5g40Sj1ckZWrW5dXhl19gkJ2mW7nTqJh6sxpY-W4Rr3S83FWp-hW7ZPz0y6tn8mNW4VczSw8xvCB0W8F5BPq7RhSpGVCWmm52yNSY2VD9xTs49KRtfVZW6h96745FwW7Rvpb08zhV16W7RqP8c5XLqs-W1ThhLq746kT7W2Y52XH6z6D8VVwd8T834FRB_W8T87Ct26Yk13W8L_L6c9gWnYCW2Wfhbg3y9rD-f6XVPfF04 )\r\n\r\nInstagram (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QB83pyd0W7lCdLW6lZ3nVW1nSGP994ZmLqW1ntFY15q6fwPW7-1pbn5c2N7dW84F9f75gNm7dW8jrWr_1cRZc1VNJ8ZK15wYpSW4mNDcW1rVWbWN4mjynYPxDtWW45zDhX3rrchfW6Z16nd7Df22PW7FlFLN3d0LnhW81XqJN3n9nJnW6n49bY5vkT6fW46m_BY1r290qW6jTHcl2l68mbVstF1L1B3CBXW4qqshG2YqsTjW8bMfq73Nw__cN14kdRC8sMYNW1NW12Y3-3lNPW6Y6Fvp65KkgHW66dpCM5j3g0QW4FG0P_34rqNNW5C9XtW2L54NCf4RNf3Y04 )\r\n\r\nX (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QB83pyd0W7lCdLW6lZ3lXW6n0xLk4GK5gPW77rm3C6lRm35W59GQFC4S7SSzW3HhH6Q3PP7JQW3xvfQV4RRzJnW8Y8XJq9k8THNW2ywGPM4W_zgqV4pNNK2h32NQW1bkZyv8pc4vsW3bRb7v5YbHmNVbxyry7T_cWxW6KRbS-2zfX8-W62mpB31hMfzXW84j_jp6nn5vrW92fCBL47FDpSW5208QQ7l8VwkN96CcLQfcqX0W7l7Q9s1R1QKCW1vw7GC4k3QZ0N5f_4gjkkVFmW75hF9w3_P313W3WhfGm2cgdHfW99d2fD4mTcWqN6hpzGMNvn1hf7Vb5Mx04 )\r\n\r\nLinkedIn (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QB83pyd0W7lCdLW6lZ3m-N7k7vwyYHCd6W98WVFR2f0NRMW2MFYVy4nGJG1W67HlXR9g1JHqW1K67GP5QfJnXW5K8d__43mw_MW8Kw9Sw8vycr0W8c4Ry67wH9fVW2dRkXq33yPWLN5SPzC6f5TS3W8S1KNv6lvJbxW4d2l7f3C3b-6VYjz4F2RNFTqW3LpKcH1KDrP8N53qPZ2hxsDnW5-tccL1BJn4FN3c4XmwtznvBW4jjcT550XqrvW1tcG7t5RB3ygW7wQ4Cl5nqljnW45tT3y39V3r7W2cSL0N4FBKBnW58nCB76LdCS2W3k_SgV7WSrjNf6HG_v804 )\r\n\r\nPinterest (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QB83pyd0W7lCdLW6lZ3p8W7NzYD-8VQ3QRW1nJdVV7RkbcMV9Dy355YRLBHVbsl4P65YGScW2NCGHy4RTBLTN4396PmyjmPvW6VqhX96B56NrMnpBKKdYcQRN8PMlVvYfGJJW7vvT2z8SXNBdW3_L-bv9ljCygVVgMdc3v7QTXW7g1vdM4ks_nkW6TFCGj8Kb-GJW5mr2Rp6XDTZMW3f0xHM3n0kPpW6CJgT06w7jpPW140kvt3fnTq6W57Dcg07yTcXJW1Mrf7j4678KbW4msBnF6PHpDcW4LHfRl7rx4BXN7VSSYgkd_dFW7NZXXL7PFt7Xf5q2nf204 )\r\n\r\nEmail (mailto:sales@epiloglaser.com)\r\n\r\nWebsite (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VW1NkW53zLW9Vw5sDd2FgpKqW4jRtpV5FMj75N89-QB83pyd0W7lCdLW6lZ3kWW1v-Nj813WYTdW4g9ntG9c72ZNW49zsw7490q-2W6Tc9SL5V53vzV9J_XB1Jxm4jVp_4mv8nHckrW1FGYsb4RbwDGW5yBT0y8lmQwwW6v6mHF5s9L6KW5yrnWF1JbNdzW3l0gVB8gFmr6W5L166y3cbZw_W35H6PR61qSFXTxVfW12mF9rVhP70b8BCQ5XN9f4qD2-BmjlW243-rD6WKDk9VyGzL83QVFzkW3HFWMp4KkgfdW7Vd3NY22pwPvW49pVDz1R1BxnW7nwtsF2WD0-xW96Hcz89b1pmDW5PWgkL1NCvzcf37vf4n04 )\r\n\r\nEpilog Laser, 16371 Table Mountain Parkway, Golden, Colorado 80403, USA, +1 303 277 1188\r\n\r\nUnsubscribe (https://hs-43785732.s.hubspotemail.net/hs/preferences-center/en/direct?data=W2nXS-N30h-GVW3VyHBl4fqfHQW2WxLwQ3gsYMNW2-dThZ1QksyxW2w3CQ03j6X6yW2vZJl53R4pPsW4kgl1_43TwSQW1XhdfQ2xFXp8W2TgHLM2KSt55W1NpTGS4cL6W3W3K54qy2YhyT6W4fLMr53C1WyYW3R1ZM03CbHyNW4ffZ3R49Nn7GW3F52xk21rdYGW41YztX2PLHsSW2qMtdK2F_Sm3W2-FTR32-MMDfW4tkcjn41sHX2W2WrbM54mrFVDW4tx4F834n-8TW2MCt6W2vS37VW1-ZjSb2MwtHCW3ZJbf52KG2WqW3bwwdn43pGlHW2r3DKp2z-cvBW3M7j3R3GKtdFW43WcZw32HGmDW3NR1113NFrYbW45wD-B47Gh1gW2RRV674tp1CNW1YZykV2TMZgnW4fMxtw2WrH2mW2CXTD922X_LbW2RJl_73D_DRxW38z-vP3hZHS6W3M2LsN43F1PMW3K3Qk73JSM0zW1XvRyL3VxV_BW4tpqfn1_l7KSW3JYFqM1SvVGmW3NCnfS2HRSBtW2PBStq1L5Q1MW4tmQNd3_XrR1W2RN7Lx3bwr-9W3XHYyF3P3SlcW4ckQfM1NkGn7W3H60tZ4mjDFjW1BP2j81XqhrrW2TxT4X2FSzH80&_hsenc=p2ANqtz-8YUXq0HJVRtpKDItJo7ajNVr-n4d0K3wyP2A1vcCuKpZLpPja_-oFrVc_dlM-J7gqS3TNDevBQumFQ4nby09PHS25_bw&_hsmi=389408045 )\r\nManage preferences (https://hs-43785732.s.hubspotemail.net/hs/preferences-center/en/page?data=W2nXS-N30h-GVW3VyHBl4fqfHQW2WxLwQ3gsYMNW2-dThZ1QksyxW2w3CQ03j6X6yW2vZJl53R4pPsW4kgl1_43TwSQW1XhdfQ2xFXp8W2TgHLM2KSt55W1NpTGS4cL6W3W3K54qy2YhyT6W4fLMr53C1WyYW3R1ZM03CbHyNW4ffZ3R49Nn7GW3F52xk21rdYGW41YztX2PLHsSW2qMtdK2F_Sm3W2-FTR32-MMDfW4tkcjn41sHX2W2WrbM54mrFVDW4tx4F834n-8TW2MCt6W2vS37VW1-ZjSb2MwtHCW3ZJbf52KG2WqW3bwwdn43pGlHW2r3DKp2z-cvBW3M7j3R3GKtdFW43WcZw32HGmDW3NR1113NFrYbW45wD-B47Gh1gW2RRV674tp1CNW1YZykV2TMZgnW4fMxtw2WrH2mW2CXTD922X_LbW2RJl_73D_DRxW38z-vP3hZHS6W3M2LsN43F1PMW3K3Qk73JSM0zW1XvRyL3VxV_BW4tpqfn1_l7KSW3JYFqM1SvVGmW3NCnfS2HRSBtW2PBStq1L5Q1MW4tmQNd3_XrR1W2RN7Lx3bwr-9W3XHYyF3P3SlcW4ckQfM1NkGn7W3H60tZ4mjDFjW1BP2j81XqhrrW2TxT4X2FSzH80&_hsenc=p2ANqtz-8YUXq0HJVRtpKDItJo7ajNVr-n4d0K3wyP2A1vcCuKpZLpPja_-oFrVc_dlM-J7gqS3TNDevBQumFQ4nby09PHS25_bw&_hsmi=389408045 )',0,0,0,0,0,0,'2025-11-11 16:18:52','2025-12-09 19:31:09','2025-12-09 19:31:09','2025-12-09 19:31:09',NULL,NULL,NULL),
(947,4,'<6AD26360-77DB-4B8E-B0EA-75A5E80CD26D@mavrix.one>',NULL,NULL,'Can all lines fit in the Garage','Brian@mavrix.one','Brian Stufflebean','\r\n--Apple-Mail=_6DBC82E5-86D9-459B-BA3F-78AE9B3133FD\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Type: text/html;\r\n	charset=utf-8\r\n\r\n<html><head><meta http-equiv=3D\"content-type\" content=3D\"text/html; =\r\ncharset=3Dutf-8\"></head><body style=3D\"overflow-wrap: break-word; =\r\n-webkit-nbsp-mode: space; line-break: after-white-space;\"><span =\r\nstyle=3D\"font-size: 14px;\"><br =\r\nid=3D\"lineBreakAtBeginningOfMessage\"></span><div><span style=3D\"font-size:=\r\n 14px;\">Lender is asking if all of this will fit into the Garage, prior =\r\nto Farm being built out?</span></div><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: 14px;\">Already =\r\nknow the answer is =E2=80=9Cno=E2=80=9D, but what is the capacity of =\r\nwhat we can do out of the garage, prior to Farm building being =\r\ncompleted.&nbsp;</span></div><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><br></div><div><br><blockquote =\r\ntype=3D\"cite\"><div><br></div><br><div>\r\n\r\n=20\r\n  <meta charset=3D\"UTF-8\">\r\n=20\r\n <div>\r\n  <div class=3D\"default-style\">\r\n   <table class=3D\"MsoTableGrid\" style=3D\"line-height: 1em; margin: =\r\n0.5em auto;\" border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\">\r\n    <tbody>\r\n     <tr>\r\n      <td style=3D\"border-bottom: 1px solid rgb(170, 170, 170); padding: =\r\n0.4em 1em; border-top: 1px solid rgb(85, 85, 85);\" valign=3D\"top\" =\r\nwidth=3D\"354\">\r\n       <div style=3D\"text-align: center;\">\r\n        <strong>USE</strong>\r\n       </div>\r\n       <div>&nbsp;</div>\r\n      </td>\r\n      <td style=3D\"border-bottom: 1px solid rgb(170, 170, 170); padding: =\r\n0.4em 1em; border-top: 1px solid rgb(85, 85, 85);\" valign=3D\"top\" =\r\nwidth=3D\"270\">\r\n       <div style=3D\"text-align: center;\">\r\n        <strong>Amount (in USD)</strong>\r\n       </div>\r\n       <div>&nbsp;</div>\r\n      </td>\r\n     </tr>\r\n     <tr>\r\n      <td style=3D\"border-bottom: 1px solid rgb(170, 170, 170); padding: =\r\n0.4em 1em;\" valign=3D\"top\" width=3D\"354\">\r\n       <div>Land Acquisition-=E2=80=9CThe Farm=E2=80=9D</div>\r\n       <div>&nbsp;</div>\r\n      </td>\r\n      <td style=3D\"border-bottom: 1px solid rgb(170, 170, 170); padding: =\r\n0.4em 1em;\" valign=3D\"top\" width=3D\"270\">\r\n       <div>&nbsp; &nbsp;6,500,000</div>\r\n       <div>&nbsp;</div>\r\n      </td>\r\n     </tr>\r\n     <tr>\r\n      <td style=3D\"border-bottom: 1px solid rgb(170, 170, 170); padding: =\r\n0.4em 1em;\" valign=3D\"top\" width=3D\"354\">\r\n       <div>Construction Costs 300 sq.ft. x $250K per sq.ft.</div>\r\n       <div>&nbsp;</div>\r\n      </td>\r\n      <td style=3D\"border-bottom: 1px solid rgb(170, 170, 170); padding: =\r\n0.4em 1em;\" valign=3D\"top\" width=3D\"270\">\r\n       <div>&nbsp;75,000,000</div>\r\n       <div>&nbsp;</div>\r\n      </td>\r\n     </tr>\r\n     <tr>\r\n      <td style=3D\"border-bottom: 1px solid rgb(170, 170, 170); padding: =\r\n0.4em 1em;\" valign=3D\"top\" width=3D\"354\">\r\n       <div>Production Lines</div>\r\n       <div>&nbsp;</div>\r\n      </td>\r\n      <td style=3D\"border-bottom: 1px solid rgb(170, 170, 170); padding: =\r\n0.4em 1em;\" valign=3D\"top\" width=3D\"270\">\r\n       <div>&nbsp;</div>\r\n       <div>&nbsp;</div>\r\n      </td>\r\n     </tr>\r\n     <tr>\r\n      <td style=3D\"border-bottom: 1px solid rgb(170, 170, 170); padding: =\r\n0.4em 1em;\" valign=3D\"top\" width=3D\"354\">\r\n       <div>&nbsp;&nbsp; 30 Battery Packing Lines</div>\r\n       <div>&nbsp;</div>\r\n      </td>\r\n      <td style=3D\"border-bottom: 1px solid rgb(170, 170, 170); padding: =\r\n0.4em 1em;\" valign=3D\"top\" width=3D\"270\">\r\n       <div>&nbsp;45,000,000</div>\r\n       <div>&nbsp;</div>\r\n      </td>\r\n     </tr>\r\n     <tr>\r\n      <td style=3D\"border-bottom: 1px solid rgb(170, 170, 170); padding: =\r\n0.4em 1em;\" valign=3D\"top\" width=3D\"354\">\r\n       <div>&nbsp;&nbsp; 4 Frame Fabrication Lines</div>\r\n       <div>&nbsp;</div>\r\n      </td>\r\n      <td style=3D\"border-bottom: 1px solid rgb(170, 170, 170); padding: =\r\n0.4em 1em;\" valign=3D\"top\" width=3D\"270\">\r\n       <div>&nbsp;16,000,000</div>\r\n       <div>&nbsp;</div>\r\n      </td>\r\n     </tr>\r\n     <tr>\r\n      <td style=3D\"border-bottom: 1px solid rgb(170, 170, 170); padding: =\r\n0.4em 1em;\" valign=3D\"top\" width=3D\"354\">\r\n       <div>&nbsp;&nbsp; 8 Motor Lines</div>\r\n       <div>&nbsp;</div>\r\n      </td>\r\n      <td style=3D\"border-bottom: 1px solid rgb(170, 170, 170); padding: =\r\n0.4em 1em;\" valign=3D\"top\" width=3D\"270\">\r\n       <div>&nbsp;20,000,000</div>\r\n       <div>&nbsp;</div>\r\n      </td>\r\n     </tr>\r\n     <tr>\r\n      <td style=3D\"border-bottom: 1px solid rgb(170, 170, 170); padding: =\r\n0.4em 1em;\" valign=3D\"top\" width=3D\"354\">\r\n       <div>&nbsp;&nbsp; 10 Electronics SMT Lines</div>\r\n       <div>&nbsp;</div>\r\n      </td>\r\n      <td style=3D\"border-bottom: 1px solid rgb(170, 170, 170); padding: =\r\n0.4em 1em;\" valign=3D\"top\" width=3D\"270\">\r\n       <div>&nbsp;10,000,000</div>\r\n       <div>&nbsp;</div>\r\n      </td>\r\n     </tr>\r\n     <tr>\r\n      <td style=3D\"border-bottom: 1px solid rgb(170, 170, 170); padding: =\r\n0.4em 1em;\" valign=3D\"top\" width=3D\"354\">\r\n       <div>&nbsp;&nbsp;&nbsp;&nbsp; 4 Injection Molding Lines</div>\r\n       <div>&nbsp;</div>\r\n      </td>\r\n      <td style=3D\"border-bottom: 1px solid rgb(170, 170, 170); padding: =\r\n0.4em 1em;\" valign=3D\"top\" width=3D\"270\">\r\n       <div>&nbsp;&nbsp;&nbsp;4,000,000</div>\r\n       <div>&nbsp;</div>\r\n      </td>\r\n     </tr>\r\n     <tr>\r\n      <td style=3D\"border-bottom: 1px solid rgb(170, 170, 170); padding: =\r\n0.4em 1em;\" valign=3D\"top\" width=3D\"354\">\r\n       <div>&nbsp;&nbsp; 10 Drone Assembly Lines</div>\r\n       <div>&nbsp;</div>\r\n      </td>\r\n      <td style=3D\"border-bottom: 1px solid rgb(170, 170, 170); padding: =\r\n0.4em 1em;\" valign=3D\"top\" width=3D\"270\">\r\n       <div>&nbsp;10,000,000</div>\r\n       <div>&nbsp;</div>\r\n      </td>\r\n     </tr>\r\n     <tr>\r\n      <td style=3D\"border-bottom: 1px solid rgb(85, 85, 85); padding: =\r\n0.4em 1em;\" valign=3D\"top\" width=3D\"354\">\r\n       <div>\r\n        <strong>Total Uses</strong>\r\n       </div>\r\n       <div>&nbsp;</div>\r\n      </td>\r\n      <td style=3D\"border-bottom: 1px solid rgb(85, 85, 85); padding: =\r\n0.4em 1em;\" valign=3D\"top\" width=3D\"270\">\r\n       <div>\r\n        <strong>186,500,000</strong>\r\n       </div>\r\n       <div>&nbsp;</div>\r\n      </td>\r\n     </tr>\r\n    </tbody>\r\n   </table>\r\n  </div>\r\n </div>\r\n</div></blockquote></div><br><div>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; orphans: auto; text-align: start; text-indent: 0px; =\r\ntext-transform: none; white-space: normal; widows: auto; word-spacing: =\r\n0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><font size=3D\"2\">Best =\r\nregards,</font></div><div style=3D\"font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><font =\r\nsize=3D\"2\"><br></font></div><div style=3D\"font-family: Helvetica; =\r\nfont-size: 12px; font-style: normal; font-variant-caps: normal; =\r\nfont-weight: 400; letter-spacing: normal; orphans: auto; text-align: =\r\nstart; text-indent: 0px; text-transform: none; white-space: normal; =\r\nwidows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\" style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><b>Brian C. =\r\nStufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 =\r\nDirect</b></div><div style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><span style=3D\"font-size: =\r\n11px;\">(866)896-2423 Fax</span></div></div><span style=3D\"caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0); font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"></span><br class=3D\"Apple-interchange-newline\"><span><img =\r\nalt=3D\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" =\r\nsrc=3D\"cid:CB596987-D3CC-4C61-B9D3-CE1C1DF1C723\"></span><meta =\r\ncharset=3D\"UTF-8\"><div style=3D\"font-family: Helvetica; font-size: 12px; =\r\nfont-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br =\r\nclass=3D\"Apple-interchange-newline\"><br =\r\nclass=3D\"Apple-interchange-newline\"><a =\r\nhref=3D\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a =\r\nhref=3D\"https://mavrix1.com\">https://mavrix1.com/</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY =\r\nNOTICE:</b><span style=3D\"font-family: Helvetica; font-style: normal; =\r\nfont-weight: 400; font-size: =\r\n12px;\">&nbsp;This&nbsp;communication&nbsp;is =\r\nconfidential&nbsp;and&nbsp;intended only for the =\r\nintended&nbsp;recipient.&nbsp;&nbsp;If you are not the =\r\nintended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, =\r\nor&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any =\r\nsuch&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this =\r\ncommunication&nbsp;in error,&nbsp;please contact the sender =\r\nof&nbsp;the&nbsp;message to inform him or her of =\r\nthe&nbsp;error.<br><br></span></div>\r\n</div>\r\n\r\n\r\n<br></body></html>=\r\n\r\n--Apple-Mail=_6DBC82E5-86D9-459B-BA3F-78AE9B3133FD\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\r\nContent-Type: image/png;\r\n	name=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\"\r\nContent-Id: <CB596987-D3CC-4C61-B9D3-CE1C1DF1C723>\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGwAAAAYCAYAAAAf1RgaAAAAAXNSR0IArs4c6QAAAIRlWElmTU0A\r\nKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdp\r\nAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAGyg\r\nAwAEAAAAAQAAABgAAAAABrPxEgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5h\r\nZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9\r\nIlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9y\r\nZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6\r\nYWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZm\r\nLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgog\r\nICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAA\r\nC6FJREFUaAXtWnuMVUcZnznPe/fuZYEtDxHCQ1ADBNuuAlKh24dRaqURWFotj5haKAn9SxOaauRi\r\nxEBsMMFSAmnUCDTKWtDioyEm3RLKq6VKC7Rg20VA5Lmwz3vPa8bfN+ecu+fevbugjQQrX5g735n5\r\nvm++13wz5yyc3YKb0gP19a8YTU33+NNmbx0puHjJtGsm+U7beoMxyRsaGrUJE45JxlbclMp/1JXK\r\nsZWM5XLwP6PG6+tzOgVr8tzN0wWTjRq3hojAw6TU+EfdGf9T9uVyGsutQNC4nDpn8zz0m7lmWEwE\r\njm6mbd/r3MCnzNk6DlEbyRFCqfNbAbyBEeaBlJzrkula1mOFQ683fvMcLT917tblGF8dbTgmhe8a\r\nZsbyvY4NhsbEdwy7ZrHntDHOtBuo7q2lGLyvGSnmOe2/fH3S3//EGhGsOZuf03RrKRMC/3wBL30f\r\n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\r\n--Apple-Mail=_6DBC82E5-86D9-459B-BA3F-78AE9B3133FD--','\r\nLender is asking if all of this will fit into the Garage, prior to Farm being built out?\r\n\r\nAlready know the answer is “no”, but what is the capacity of what we can do out of the garage, prior to Farm building being completed. \r\n\r\n\r\n\r\n\r\n> \r\n> \r\n> USE\r\n>  \r\n> Amount (in USD)\r\n>  \r\n> Land Acquisition-“The Farm”\r\n>  \r\n>    6,500,000\r\n>  \r\n> Construction Costs 300 sq.ft. x $250K per sq.ft.\r\n>  \r\n>  75,000,000\r\n>  \r\n> Production Lines\r\n>  \r\n>  \r\n>  \r\n>    30 Battery Packing Lines\r\n>  \r\n>  45,000,000\r\n>  \r\n>    4 Frame Fabrication Lines\r\n>  \r\n>  16,000,000\r\n>  \r\n>    8 Motor Lines\r\n>  \r\n>  20,000,000\r\n>  \r\n>    10 Electronics SMT Lines\r\n>  \r\n>  10,000,000\r\n>  \r\n>      4 Injection Molding Lines\r\n>  \r\n>    4,000,000\r\n>  \r\n>    10 Drone Assembly Lines\r\n>  \r\n>  10,000,000\r\n>  \r\n> Total Uses\r\n>  \r\n> 186,500,000\r\n>  \r\n\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n￼\r\n\r\n\r\nbrian@mavrix.one <mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-11-11 19:26:44','2025-12-09 19:31:09','2025-12-09 19:31:09','2025-12-09 19:31:09',NULL,NULL,NULL),
(948,4,'<BC6D4A5F-C241-4607-8020-78E377285674@mavrix.one>',NULL,NULL,'Please Review Attached Draft','Brian@mavrix.one','Brian Stufflebean','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=us-ascii\"></head><body style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"><div><span></span><meta charset=\"UTF-8\"><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br class=\"Apple-interchange-newline\"><br class=\"Apple-interchange-newline\"><a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a href=\"https://mavrix1.com\">https://mavrix1.com/</a></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family: Helvetica; font-style: normal; font-weight: 400; font-size: 12px;\">&nbsp;This&nbsp;communication&nbsp;is confidential&nbsp;and&nbsp;intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, or&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any such&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this communication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the&nbsp;message to inform him or her of the&nbsp;error.<br><br></span></div>\r\n</div>\r\n\r\n<br></body></html>','Rick, \r\n\r\nPlease Review Attached Draft - Please turn on REDLINE for any edits you may want to make, so that changes can be tracked.\r\n\r\n\r\n￼\r\n\r\nThank you,\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n￼\r\n\r\n\r\nbrian@mavrix.one <mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-11-12 01:27:33','2025-12-09 19:31:09','2025-12-09 19:31:09','2025-12-09 19:31:09',NULL,NULL,NULL),
(949,4,'<EC2F47BA-AFF8-46BA-B303-75A5C7BBEB99@mavrix.one>',NULL,NULL,'Re: Please Review Attached Draft','brian@mavrix.one','\"Brian C. Stufflebean\"','<html class=\"apple-mail-supports-explicit-dark-mode\"><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body dir=\"auto\">Please DO review numbers in the chart, it’s imperative…<div><br></div><div><br></div><div><br id=\"lineBreakAtBeginningOfSignature\"><div dir=\"ltr\">Sent from my iPhone</div><div dir=\"ltr\"><br><blockquote type=\"cite\">On Nov 12, 2025, at 7:34 AM, Rick &lt;rick@mavrix.one&gt; wrote:<br><br></blockquote></div><blockquote type=\"cite\"><div dir=\"ltr\">﻿\r\n    <style>body { font-family: Helvetica, Arial; font-size: 13px; }</style><div id=\"bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px; margin: 0px; line-height: auto;\"><br></div> A few minor edits. See updated attached.<div>Still need to review numbers in chart.<br> <div id=\"bloop_sign_1762950812353820928\" class=\"bloop_sign\">\r\n        <title></title>\r\n     \r\n    <div><br></div><div>Rick Mislan, PhD,&nbsp;</div><div>Founder, CTO</div><div><div>&lt;52AACA64-B468-4285-B5C4-838F6707FFCC&gt;</div></div><div>https://mavrix1.com</div><div><br></div><div><font face=\"Helvetica\"><span style=\"font-size: 12px;\"><b><u>CONFIDENTIALITY NOTICE</u></b></span></font></div><div><font face=\"Helvetica\"><span style=\"font-size: 12px;\"><i>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</i></span></font></div><div><font face=\"Helvetica\"><span style=\"font-size: 12px;\"><i><br></i></span></font></div><div><font face=\"Helvetica\"><span style=\"font-size: 12px;\"><i>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</i></span></font></div><div><font face=\"Helvetica\"><span style=\"font-size: 12px;\"><i><br></i></span></font></div><div><font face=\"Helvetica\"><span style=\"font-size: 12px;\"><i>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</i></span></font></div>\r\n     \r\n</div> <br><p class=\"airmail_on\">On November 11, 2025 at 20:27:45, Brian Stufflebean (<a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a>) wrote:</p> <blockquote type=\"cite\" class=\"clean_bq\"><span><div style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"><div></div><div><div><span style=\"font-size: 14px;\">Rick,&nbsp;</span></div><div><span style=\"font-size: 14px;\"><br></span></div><div><span style=\"font-size: 14px;\">Please Review Attached Draft - Please turn on REDLINE for any edits you may want to make, so that changes can be tracked.</span></div><div><span style=\"font-size: 14px;\"><br></span></div><div><span style=\"font-size: 14px;\"><br></span></div><div></div><div></div><div><span style=\"font-size: 14px;\"><br></span></div><div><span style=\"font-size: 14px;\">Thank you</span><span style=\"font-size: 14px;\">,</span></div><div><span style=\"font-size: 14px;\"><br></span></div><div><span style=\"font-size: 14px;\"><br></span></div><div><span style=\"font-size: 14px;\"><br></span></div><div><span style=\"font-size: 14px;\"><br></span></div><div><span style=\"font-size: 14px;\"><br></span></div><div><span style=\"font-size: 14px;\"><br></span></div><span style=\"font-size: 14px;\"><br></span><div>\r\n<div style=\"font-family: Helvetica; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span style=\"font-size: 14px;\">Best regards,</span></div><div style=\"font-family: Helvetica; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span style=\"font-size: 14px;\"><br></span></div><div style=\"font-family: Helvetica; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span style=\"font-size: 14px;\"><br></span></div><div style=\"font-family: Helvetica; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span style=\"font-size: 14px;\"><br></span></div><div style=\"font-family: Helvetica; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><span style=\"font-size: 14px;\"><font style=\"font-family: Helvetica; font-style: normal; font-weight: 400;\"><b>Brian C. Stufflebean</b><br>CEO, Co-Founder</font><br></span><div><b style=\"font-size: 14px;\">(941)545-4153 Direct</b></div><div style=\"font-family: Helvetica; font-style: normal; font-weight: 400;\"><span style=\"font-size: 14px;\">(866)896-2423 Fax</span></div></div><span style=\"caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;\"></span><br class=\"Apple-interchange-newline\"><span></span></div><div><span></span><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br class=\"Apple-interchange-newline\"><br class=\"Apple-interchange-newline\"><a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a href=\"https://mavrix1.com\">https://mavrix1.com/</a></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family: Helvetica; font-style: normal; font-weight: 400; font-size: 12px;\">&nbsp;This&nbsp;communication&nbsp;is confidential&nbsp;and&nbsp;intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, or&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any such&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this communication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the&nbsp;message to inform him or her of the&nbsp;error.<br><br></span></div>\r\n</div>\r\n\r\n<br></div></div></span></blockquote>\r\n\r\n\r\n</div><div>&lt;MAVRIX1 Supplement - Rev. 1.01 _RPM edits.docx&gt;</div></div></blockquote></div></body></html>','Please DO review numbers in the chart, it’s imperative…Sent from my iPhoneOn Nov 12, 2025, at 7:34 AM, Rick &lt;rick@mavrix.one&gt; wrote:﻿\r\n    body { font-family: Helvetica, Arial; font-size: 13px; } A few minor edits. See updated attached.Still need to review numbers in chart. \r\n        \r\n     \r\n    Rick Mislan, PhD,&nbsp;Founder, CTO&lt;52AACA64-B468-4285-B5C4-838F6707FFCC&gt;https://mavrix1.comCONFIDENTIALITY NOTICEThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n     \r\n On November 11, 2025 at 20:27:45, Brian Stufflebean (brian@mavrix.one) wrote: Rick,&nbsp;Please Review Attached Draft - Please turn on REDLINE for any edits you may want to make, so that changes can be tracked.Thank you,\r\nBest regards,Brian C. StufflebeanCEO, Co-Founder(941)545-4153 Direct(866)896-2423 Faxbrian@mavrix.onehttps://mavrix1.com/CONFIDENTIALITY NOTICE:&nbsp;This&nbsp;communication&nbsp;is confidential&nbsp;and&nbsp;intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, or&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any such&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this communication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the&nbsp;message to inform him or her of the&nbsp;error.\r\n\r\n\r\n\r\n\r\n\r\n&lt;MAVRIX1 Supplement - Rev. 1.01 _RPM edits.docx&gt;',0,0,0,0,0,0,'2025-11-12 13:56:20','2025-12-09 19:31:10','2025-12-09 19:31:10','2025-12-09 19:31:10',NULL,NULL,NULL),
(950,4,' <PH2P110MB07960490FA70F96E17CF1921D0CCA@PH2P110MB0796.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'RE: DPI Introduction','barry@dpiuav.com','Barry Phillips','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Segoe UI\";\r\n	panose-1:2 11 5 2 4 2 4 2 2 3;}\r\n@font-face\r\n	{font-family:\"Freestyle Script\";\r\n	panose-1:3 8 4 2 3 2 5 11 4 4;}\r\n@font-face\r\n	{font-family:\"Arial Nova Light\";}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.gmailquote, li.gmailquote, div.gmailquote\r\n	{mso-style-name:gmail_quote;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.me-email-text\r\n	{mso-style-name:me-email-text;}\r\nspan.me-email-text-secondary\r\n	{mso-style-name:me-email-text-secondary;}\r\np.gmailquote0, li.gmailquote0, div.gmailquote0\r\n	{mso-style-name:gmailquote;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmailon;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle25\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Rick,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Not a problem. Let’s shoot for Tuesday at 9am. I’ll update the meeting time for you.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:20.0pt;font-family:&quot;Freestyle Script&quot;;mso-ligatures:standardcontextual\">Barry Phillips<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Engineering Manager<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Cell: 484-459-7997<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">DPI UAV Systems<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">600 West 2<sup>nd</sup> St.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Essington PA 19029<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\">Extending Man\'s Reach with Unmanned Helicopters</span></b><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;color:#002060\"><img width=\"222\" height=\"70\" style=\"width:2.3125in;height:.7291in\" id=\"Picture_x0020_571610483\" src=\"cid:image001.jpg@01DC53B3.00C2F3A0\" alt=\"DPI-logo-4-April28-blue-full\"></span><span style=\"font-size:11.0pt;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">This is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged\r\n information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your\r\n cooperation is appreciated.<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Tuesday, November 11, 2025 12:00 PM<br>\r\n<b>To:</b> Barry Phillips &lt;barry@dpiuav.com&gt;<br>\r\n<b>Subject:</b> Re: DPI Introduction<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Hi all,<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\">I need to push this mtg a week. &nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Would next Tuesday or&nbsp;Thursday work at the same time?<br>\r\nThank you,<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Rick<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img width=\"144\" height=\"32\" style=\"width:1.5in;height:.3333in\" id=\"Picture_x0020_4\" src=\"cid:image002.jpg@01DC53B3.00C2F3A0\"></span><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"http://mavrix1.com/\">mavrix1.com</a><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">CONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient. &nbsp;If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may\r\n be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"gmailquote\"><span style=\"color:black\">On November 6, 2025 at 2:52:36</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"color:black\">PM, Barry Phillips (<a href=\"mailto:barry@dpiuav.com\">barry@dpiuav.com</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">DPI’s introduction and discussion about our product line.</span><o:p></o:p></p>\r\n<div>\r\n<div>\r\n<div style=\"margin-bottom:.25in;overflow:hidden\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">________________________________________________________________________________</span><o:p></o:p></p>\r\n</div>\r\n<div style=\"margin-bottom:9.0pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span class=\"me-email-text\"><b><span style=\"font-size:18.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">Microsoft Teams</span></b></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<a href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\"><span style=\"font-size:10.5pt;color:#5B5FC7\">Need help?</span></a>\r\n</span><o:p></o:p></p>\r\n</div>\r\n<div style=\"margin-bottom:4.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\"><a href=\"https://gov.teams.microsoft.us/l/meetup-join/19%3agcch%3ameeting_648a7638fb1442c78154430401863565%40thread.v2/0?context=%7b%22Tid%22%3a%221c84fc53-749d-4fba-8afb-153d00e6dde0%22%2c%22Oid%22%3a%221efc1998-d3df-4ff0-8a4d-837f245fe19a%22%7d\" target=\"_blank\" title=\"Meeting join link\"><b><span style=\"font-size:15.0pt;color:#5B5FC7\">Join\r\n the meeting now</span></b></a> </span><o:p></o:p></p>\r\n</div>\r\n<div style=\"margin-bottom:4.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">Meeting ID:\r\n</span></span><span class=\"me-email-text\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">992 928 332 67</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n</span><o:p></o:p></p>\r\n</div>\r\n<div style=\"margin-bottom:24.0pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">Passcode:\r\n</span></span><span class=\"me-email-text\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">cA2dP369</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n</span><o:p></o:p></p>\r\n</div>\r\n<div style=\"margin-bottom:9.0pt\">\r\n<div class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<hr size=\"1\" width=\"100%\" align=\"center\">\r\n</span></div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">For organizers:\r\n</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\"><a href=\"https://gov.teams.microsoft.us/meetingOptions/?organizerId=1efc1998-d3df-4ff0-8a4d-837f245fe19a&amp;tenantId=1c84fc53-749d-4fba-8afb-153d00e6dde0&amp;threadId=19_gcch_meeting_648a7638fb1442c78154430401863565@thread.v2&amp;messageId=0&amp;language=en-US\" target=\"_blank\"><span style=\"font-size:10.5pt;color:#5B5FC7\">Meeting\r\n options</span></a> </span><o:p></o:p></p>\r\n</div>\r\n<div style=\"margin-bottom:.25in;overflow:hidden\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">________________________________________________________________________________</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">_____________________________________________<br>\r\n<b>From:</b> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; <br>\r\n<b>Sent:</b> Thursday, November 6, 2025 2:49 PM<br>\r\n<b>To:</b> Barry Phillips &lt;<a href=\"mailto:barry@dpiuav.com\">barry@dpiuav.com</a>&gt;<br>\r\n<b>Cc:</b> Chuck Wythe &lt;<a href=\"mailto:chuckw@dpiuav.com\">chuckw@dpiuav.com</a>&gt;; Joseph Pawelczyk &lt;<a href=\"mailto:joe@dpiuav.com\">joe@dpiuav.com</a>&gt;; Michael Piasecki &lt;<a href=\"mailto:mike@dpiuav.com\">mike@dpiuav.com</a>&gt;<br>\r\n<b>Subject:</b> RE: Dragonfly Pictures, Inc.</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Hi Barry!<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Yes that would be fine. &nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">Please send an invite!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;margin-bottom:12.0pt\">Rick<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"144\" height=\"32\" style=\"width:1.5in;height:.3333in\" id=\"_x0000_i1029\" src=\"file://private/var/mobile/Containers/Shared/AppGroup/A5EA8206-7AD4-4CB7-B85D-F604D42E26CF/Data/Local2/Attachments/902/image001.jpg@01DC4F2C.FB6CF750\"></span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"http://mavrix1.com/\">mavrix1.com</a></span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">CONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient. &nbsp;If you are not the intended recipient, you may not copy, disclose, or distribute\r\n this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"gmailquote0\"><span style=\"color:black\">On November 6, 2025 at 1:36:12</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"color:black\">PM, Barry Phillips (<a href=\"mailto:barry@dpiuav.com\">barry@dpiuav.com</a>) wrote:</span><o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Mr. Mislan,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">I am responding on behalf of Mr. Piasecki, would you be available for a meeting with DPI at 9am Thursday morning NOV 13<sup>th</sup>, 2025?</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:20.0pt;font-family:&quot;Freestyle Script&quot;;mso-ligatures:standardcontextual\">Barry Phillips</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Engineering Manager</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Cell: 484-459-7997</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">DPI UAV Systems</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">600 West 2<sup>nd</sup> St.</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Essington PA 19029</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\">Extending Man\'s Reach with Unmanned Helicopters</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:#002060\"><img border=\"0\" width=\"222\" height=\"70\" style=\"width:2.3125in;height:.7291in\" id=\"_x0000_i1028\" src=\"file://private/var/mobile/Containers/Shared/AppGroup/A5EA8206-7AD4-4CB7-B85D-F604D42E26CF/Data/Local2/Attachments/900/image001.jpg@01DC4F22.2625DC10\" alt=\"DPI-logo-4-April28-blue-full\"></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;mso-ligatures:standardcontextual\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:9.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">This is an e-mail from DPI UAV Systems. It is for the intended recipient\r\n only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete\r\n the message and any attachments from your computer. Your cooperation is appreciated.</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;</span><a href=\"mailto:rick@mavrix.one\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">rick@mavrix.one</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, November 5, 2025 5:24 PM<br>\r\n<b>To:</b> Michael Piasecki &lt;</span><a href=\"mailto:mike@dpiuav.com\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">mike@dpiuav.com</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;<br>\r\n<b>Subject:</b> Re: Dragonfly Pictures, Inc.</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Michael,</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Yes completely remember you.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Want to schedule something for next week?</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Tuesday or Thursday mornings are best for me.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Let me know if you have a time in mind.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks!</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"_x0000_i1027\" src=\"file://private/var/mobile/Containers/Shared/AppGroup/A5EA8206-7AD4-4CB7-B85D-F604D42E26CF/Data/Local2/Attachments/900/image002.png@01DC4F22.2625DC10\"></span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://mavrix1.com/\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">https://mavrix1.com</span></a><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">CONFIDENTIALITY NOTICE</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI)\r\n protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of\r\n the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"airmailon\">On November 5, 2025 at 1:19:51<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM, Michael Piasecki (<a href=\"mailto:mike@dpiuav.com\">mike@dpiuav.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Dear Rick,\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">We met at the Army Marketplace event in Huntsville a while back. I drove you to the airport. If you wanted us to brief you on our portion of the market,\r\n we can do that. Otherwise, I wish you well on your excellent mission of increasing the manufacturing of relevant US military products at scale and in time enough.\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Respectfully,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Michael</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Michael Piasecki</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">President</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">DPI UAV Systems</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">600 W. 2<sup>nd</sup> St., Essington, PA 19029</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Office: (610) 521-6115 x 202</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Mobile: (215) 439-2036</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"http://www.dpiuav.com/\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#0563C1\">www.dpiuav.com</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://youtu.be/4ihY-IiAfXI\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#0563C1\">https://youtu.be/4ihY-IiAfXI</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\">Extending Man\'s Reach with Unmanned Helicopters</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060\"><img border=\"0\" width=\"222\" height=\"70\" style=\"width:2.3125in;height:.7291in\" id=\"_x0000_i1026\" src=\"file://private/var/mobile/Containers/Shared/AppGroup/A5EA8206-7AD4-4CB7-B85D-F604D42E26CF/Data/Local2/Attachments/900/image003.jpg@01DC4F22.2625DC10\" alt=\"DPI-logo-4-April28-blue-full\"></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">This is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential,\r\n proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments\r\n from your computer. Your cooperation is appreciated.</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Rick,\r\n\r\nNot a problem. Let’s shoot for Tuesday at 9am. I’ll update the meeting time for you.\r\n\r\nBarry Phillips\r\nEngineering Manager\r\nCell: 484-459-7997\r\nDPI UAV Systems\r\n600 West 2nd St.\r\nEssington PA 19029\r\n\r\nExtending Man\'s Reach with Unmanned Helicopters\r\n[DPI-logo-4-April28-blue-full]\r\n\r\nThis is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is appreciated.\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Tuesday, November 11, 2025 12:00 PM\r\nTo: Barry Phillips <barry@dpiuav.com>\r\nSubject: Re: DPI Introduction\r\n\r\nHi all,\r\nI need to push this mtg a week.\r\nWould next Tuesday or Thursday work at the same time?\r\nThank you,\r\nRick\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:image002.jpg@01DC53B3.00C2F3A0]\r\nmavrix1.com<http://mavrix1.com/>\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.\r\n\r\n\r\nOn November 6, 2025 at 2:52:36 PM, Barry Phillips (barry@dpiuav.com<mailto:barry@dpiuav.com>) wrote:\r\nDPI’s introduction and discussion about our product line.\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://gov.teams.microsoft.us/l/meetup-join/19%3agcch%3ameeting_648a7638fb1442c78154430401863565%40thread.v2/0?context=%7b%22Tid%22%3a%221c84fc53-749d-4fba-8afb-153d00e6dde0%22%2c%22Oid%22%3a%221efc1998-d3df-4ff0-8a4d-837f245fe19a%22%7d>\r\nMeeting ID: 992 928 332 67\r\nPasscode: cA2dP369\r\n________________________________\r\nFor organizers: Meeting options<https://gov.teams.microsoft.us/meetingOptions/?organizerId=1efc1998-d3df-4ff0-8a4d-837f245fe19a&tenantId=1c84fc53-749d-4fba-8afb-153d00e6dde0&threadId=19_gcch_meeting_648a7638fb1442c78154430401863565@thread.v2&messageId=0&language=en-US>\r\n________________________________________________________________________________\r\n\r\n\r\n_____________________________________________\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Thursday, November 6, 2025 2:49 PM\r\nTo: Barry Phillips <barry@dpiuav.com<mailto:barry@dpiuav.com>>\r\nCc: Chuck Wythe <chuckw@dpiuav.com<mailto:chuckw@dpiuav.com>>; Joseph Pawelczyk <joe@dpiuav.com<mailto:joe@dpiuav.com>>; Michael Piasecki <mike@dpiuav.com<mailto:mike@dpiuav.com>>\r\nSubject: RE: Dragonfly Pictures, Inc.\r\n\r\nHi Barry!\r\nYes that would be fine.\r\nPlease send an invite!\r\nRick\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[X]\r\nmavrix1.com<http://mavrix1.com/>\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.\r\n\r\n\r\nOn November 6, 2025 at 1:36:12 PM, Barry Phillips (barry@dpiuav.com<mailto:barry@dpiuav.com>) wrote:\r\nMr. Mislan,\r\n\r\nI am responding on behalf of Mr. Piasecki, would you be available for a meeting with DPI at 9am Thursday morning NOV 13th, 2025?\r\n\r\nBarry Phillips\r\nEngineering Manager\r\nCell: 484-459-7997\r\nDPI UAV Systems\r\n600 West 2nd St.\r\nEssington PA 19029\r\n\r\nExtending Man\'s Reach with Unmanned Helicopters\r\n[DPI-logo-4-April28-blue-full]\r\n\r\nThis is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is appreciated.\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Wednesday, November 5, 2025 5:24 PM\r\nTo: Michael Piasecki <mike@dpiuav.com<mailto:mike@dpiuav.com>>\r\nSubject: Re: Dragonfly Pictures, Inc.\r\n\r\nHi Michael,\r\nYes completely remember you.\r\nWant to schedule something for next week?\r\nTuesday or Thursday mornings are best for me.\r\nLet me know if you have a time in mind.\r\nThanks!\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[X]\r\nhttps://mavrix1.com<https://mavrix1.com/>\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\nOn November 5, 2025 at 1:19:51 PM, Michael Piasecki (mike@dpiuav.com<mailto:mike@dpiuav.com>) wrote:\r\nDear Rick,\r\n\r\nWe met at the Army Marketplace event in Huntsville a while back. I drove you to the airport. If you wanted us to brief you on our portion of the market, we can do that. Otherwise, I wish you well on your excellent mission of increasing the manufacturing of relevant US military products at scale and in time enough.\r\n\r\nRespectfully,\r\nMichael\r\n\r\n\r\nMichael Piasecki\r\nPresident\r\nDPI UAV Systems\r\n600 W. 2nd St., Essington, PA 19029\r\nOffice: (610) 521-6115 x 202\r\nMobile: (215) 439-2036\r\nwww.dpiuav.com<http://www.dpiuav.com/>\r\nhttps://youtu.be/4ihY-IiAfXI\r\n\r\n\r\nExtending Man\'s Reach with Unmanned Helicopters\r\n[DPI-logo-4-April28-blue-full]\r\n\r\nThis is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is appreciated.\r\n\r\n',0,0,0,0,0,0,'2025-11-12 14:02:54','2025-12-09 19:31:10','2025-12-09 19:31:10','2025-12-09 19:31:10',NULL,NULL,NULL),
(951,4,' <PH2P110MB079673476A24D170C43FD893D0CCA@PH2P110MB0796.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'DPI Introduction','barry@dpiuav.com','Barry Phillips','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Segoe UI\";\r\n	panose-1:2 11 5 2 4 2 4 2 2 3;}\r\n@font-face\r\n	{font-family:\"Freestyle Script\";\r\n	panose-1:3 8 4 2 3 2 5 11 4 4;}\r\n@font-face\r\n	{font-family:\"Arial Nova Light\";}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.gmailquote, li.gmailquote, div.gmailquote\r\n	{mso-style-name:gmail_quote;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmailon;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.me-email-text\r\n	{mso-style-name:me-email-text;}\r\nspan.me-email-text-secondary\r\n	{mso-style-name:me-email-text-secondary;}\r\nspan.EmailStyle22\r\n	{mso-style-type:personal-compose;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">DPI’s introduction and discussion about our product line.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Changing the date to the following Tuesday on the 18<sup>th</sup> per Rick’s request to deconflict schedules.<o:p></o:p></span></p>\r\n<div>\r\n<div>\r\n<div style=\"margin-bottom:.25in;overflow:hidden\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">________________________________________________________________________________<o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:9.0pt\">\r\n<p class=\"MsoNormal\"><span class=\"me-email-text\"><b><span style=\"font-size:18.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">Microsoft Teams</span></b></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<a href=\"https://aka.ms/JoinTeamsMeeting?omkt=en-US\"><span style=\"font-size:10.5pt;color:#5B5FC7\">Need help?</span></a>\r\n<o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:4.5pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\"><a href=\"https://gov.teams.microsoft.us/l/meetup-join/19%3agcch%3ameeting_648a7638fb1442c78154430401863565%40thread.v2/0?context=%7b%22Tid%22%3a%221c84fc53-749d-4fba-8afb-153d00e6dde0%22%2c%22Oid%22%3a%221efc1998-d3df-4ff0-8a4d-837f245fe19a%22%7d\" target=\"_blank\" title=\"Meeting join link\"><b><span style=\"font-size:15.0pt;color:#5B5FC7\">Join\r\n the meeting now</span></b></a> <o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:4.5pt\">\r\n<p class=\"MsoNormal\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">Meeting ID:\r\n</span></span><span class=\"me-email-text\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">992 928 332 67</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:24.0pt\">\r\n<p class=\"MsoNormal\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">Passcode:\r\n</span></span><span class=\"me-email-text\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">cA2dP369</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:9.0pt\">\r\n<div class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">\r\n<hr size=\"1\" width=\"100%\" align=\"center\">\r\n</span></div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span class=\"me-email-text-secondary\"><span style=\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#616161\">For organizers:\r\n</span></span><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\"><a href=\"https://gov.teams.microsoft.us/meetingOptions/?organizerId=1efc1998-d3df-4ff0-8a4d-837f245fe19a&amp;tenantId=1c84fc53-749d-4fba-8afb-153d00e6dde0&amp;threadId=19_gcch_meeting_648a7638fb1442c78154430401863565@thread.v2&amp;messageId=0&amp;language=en-US\" target=\"_blank\"><span style=\"font-size:10.5pt;color:#5B5FC7\">Meeting\r\n options</span></a> <o:p></o:p></span></p>\r\n</div>\r\n<div style=\"margin-bottom:.25in;overflow:hidden\">\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#242424\">________________________________________________________________________________<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">_____________________________________________<br>\r\n<b>From:</b> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt; <br>\r\n<b>Sent:</b> Thursday, November 6, 2025 2:49 PM<br>\r\n<b>To:</b> Barry Phillips &lt;<a href=\"mailto:barry@dpiuav.com\">barry@dpiuav.com</a>&gt;<br>\r\n<b>Cc:</b> Chuck Wythe &lt;<a href=\"mailto:chuckw@dpiuav.com\">chuckw@dpiuav.com</a>&gt;; Joseph Pawelczyk &lt;<a href=\"mailto:joe@dpiuav.com\">joe@dpiuav.com</a>&gt;; Michael Piasecki &lt;<a href=\"mailto:mike@dpiuav.com\">mike@dpiuav.com</a>&gt;<br>\r\n<b>Subject:</b> RE: Dragonfly Pictures, Inc.<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Hi Barry!<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\">Yes that would be fine. &nbsp;<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">Please send an invite!<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">Rick<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"144\" height=\"32\" style=\"width:1.5in;height:.3333in\" id=\"Picture_x0020_1\" src=\"cid:image001.jpg@01DC4F2C.FB6CF750\"></span><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"http://mavrix1.com/\">mavrix1.com</a><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">CONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient. &nbsp;If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may\r\n be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"gmailquote\"><span style=\"color:black\">On November 6, 2025 at 1:36:12</span><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:black\"> </span><span style=\"color:black\">PM, Barry Phillips (<a href=\"mailto:barry@dpiuav.com\">barry@dpiuav.com</a>) wrote:<o:p></o:p></span></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Mr. Mislan,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">I am responding on behalf of Mr. Piasecki, would you be available for a meeting with DPI at 9am Thursday morning NOV 13<sup>th</sup>, 2025?</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:20.0pt;font-family:&quot;Freestyle Script&quot;;mso-ligatures:standardcontextual\">Barry Phillips</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Engineering Manager</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Cell: 484-459-7997</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">DPI UAV Systems</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">600 West 2<sup>nd</sup> St.</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">Essington PA 19029</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\">Extending Man\'s Reach with Unmanned Helicopters</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:#002060\"><img border=\"0\" width=\"222\" height=\"70\" style=\"width:2.3125in;height:.7291in\" id=\"_x0000_i1028\" src=\"file://private/var/mobile/Containers/Shared/AppGroup/A5EA8206-7AD4-4CB7-B85D-F604D42E26CF/Data/Local2/Attachments/900/image001.jpg@01DC4F22.2625DC10\" alt=\"DPI-logo-4-April28-blue-full\"></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;mso-ligatures:standardcontextual\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:9.0pt;font-family:&quot;Arial Nova Light&quot;,sans-serif;mso-ligatures:standardcontextual\">This is an e-mail from DPI UAV Systems. It is for the intended recipient\r\n only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete\r\n the message and any attachments from your computer. Your cooperation is appreciated.</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;</span><a href=\"mailto:rick@mavrix.one\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">rick@mavrix.one</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, November 5, 2025 5:24 PM<br>\r\n<b>To:</b> Michael Piasecki &lt;</span><a href=\"mailto:mike@dpiuav.com\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">mike@dpiuav.com</span></a><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&gt;<br>\r\n<b>Subject:</b> Re: Dragonfly Pictures, Inc.</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Michael,</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Yes completely remember you.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Want to schedule something for next week?</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Tuesday or Thursday mornings are best for me.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Let me know if you have a time in mind.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Thanks!</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"_x0000_i1027\" src=\"file://private/var/mobile/Containers/Shared/AppGroup/A5EA8206-7AD4-4CB7-B85D-F604D42E26CF/Data/Local2/Attachments/900/image002.png@01DC4F22.2625DC10\"></span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://mavrix1.com/\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">https://mavrix1.com</span></a><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">CONFIDENTIALITY NOTICE</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI)\r\n protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of\r\n the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"airmailon\">On November 5, 2025 at 1:19:51<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM, Michael Piasecki (<a href=\"mailto:mike@dpiuav.com\">mike@dpiuav.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Dear Rick,\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">We met at the Army Marketplace event in Huntsville a while back. I drove you to the airport. If you wanted us to brief you on our portion of the market,\r\n we can do that. Otherwise, I wish you well on your excellent mission of increasing the manufacturing of relevant US military products at scale and in time enough.\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Respectfully,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Michael</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Michael Piasecki</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">President</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">DPI UAV Systems</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">600 W. 2<sup>nd</sup> St., Essington, PA 19029</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Office: (610) 521-6115 x 202</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">Mobile: (215) 439-2036</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"http://www.dpiuav.com/\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#0563C1\">www.dpiuav.com</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><a href=\"https://youtu.be/4ihY-IiAfXI\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#0563C1\">https://youtu.be/4ihY-IiAfXI</span></a><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\">Extending Man\'s Reach with Unmanned Helicopters</span></b><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060\"><img border=\"0\" width=\"222\" height=\"70\" style=\"width:2.3125in;height:.7291in\" id=\"_x0000_i1026\" src=\"file://private/var/mobile/Containers/Shared/AppGroup/A5EA8206-7AD4-4CB7-B85D-F604D42E26CF/Data/Local2/Attachments/900/image003.jpg@01DC4F22.2625DC10\" alt=\"DPI-logo-4-April28-blue-full\"></span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060\">This is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential,\r\n proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments\r\n from your computer. Your cooperation is appreciated.</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','DPI’s introduction and discussion about our product line.\r\n\r\nChanging the date to the following Tuesday on the 18th per Rick’s request to deconflict schedules.\r\n________________________________________________________________________________\r\nMicrosoft Teams Need help?<https://aka.ms/JoinTeamsMeeting?omkt=en-US>\r\nJoin the meeting now<https://gov.teams.microsoft.us/l/meetup-join/19%3agcch%3ameeting_648a7638fb1442c78154430401863565%40thread.v2/0?context=%7b%22Tid%22%3a%221c84fc53-749d-4fba-8afb-153d00e6dde0%22%2c%22Oid%22%3a%221efc1998-d3df-4ff0-8a4d-837f245fe19a%22%7d>\r\nMeeting ID: 992 928 332 67\r\nPasscode: cA2dP369\r\n________________________________\r\nFor organizers: Meeting options<https://gov.teams.microsoft.us/meetingOptions/?organizerId=1efc1998-d3df-4ff0-8a4d-837f245fe19a&tenantId=1c84fc53-749d-4fba-8afb-153d00e6dde0&threadId=19_gcch_meeting_648a7638fb1442c78154430401863565@thread.v2&messageId=0&language=en-US>\r\n________________________________________________________________________________\r\n\r\n\r\n_____________________________________________\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Thursday, November 6, 2025 2:49 PM\r\nTo: Barry Phillips <barry@dpiuav.com<mailto:barry@dpiuav.com>>\r\nCc: Chuck Wythe <chuckw@dpiuav.com<mailto:chuckw@dpiuav.com>>; Joseph Pawelczyk <joe@dpiuav.com<mailto:joe@dpiuav.com>>; Michael Piasecki <mike@dpiuav.com<mailto:mike@dpiuav.com>>\r\nSubject: RE: Dragonfly Pictures, Inc.\r\n\r\nHi Barry!\r\nYes that would be fine.\r\nPlease send an invite!\r\nRick\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:image001.jpg@01DC4F2C.FB6CF750]\r\nmavrix1.com<http://mavrix1.com/>\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.\r\n\r\n\r\nOn November 6, 2025 at 1:36:12 PM, Barry Phillips (barry@dpiuav.com<mailto:barry@dpiuav.com>) wrote:\r\nMr. Mislan,\r\n\r\nI am responding on behalf of Mr. Piasecki, would you be available for a meeting with DPI at 9am Thursday morning NOV 13th, 2025?\r\n\r\nBarry Phillips\r\nEngineering Manager\r\nCell: 484-459-7997\r\nDPI UAV Systems\r\n600 West 2nd St.\r\nEssington PA 19029\r\n\r\nExtending Man\'s Reach with Unmanned Helicopters\r\n[DPI-logo-4-April28-blue-full]\r\n\r\nThis is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is appreciated.\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Wednesday, November 5, 2025 5:24 PM\r\nTo: Michael Piasecki <mike@dpiuav.com<mailto:mike@dpiuav.com>>\r\nSubject: Re: Dragonfly Pictures, Inc.\r\n\r\nHi Michael,\r\nYes completely remember you.\r\nWant to schedule something for next week?\r\nTuesday or Thursday mornings are best for me.\r\nLet me know if you have a time in mind.\r\nThanks!\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[X]\r\nhttps://mavrix1.com<https://mavrix1.com/>\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\nOn November 5, 2025 at 1:19:51 PM, Michael Piasecki (mike@dpiuav.com<mailto:mike@dpiuav.com>) wrote:\r\nDear Rick,\r\n\r\nWe met at the Army Marketplace event in Huntsville a while back. I drove you to the airport. If you wanted us to brief you on our portion of the market, we can do that. Otherwise, I wish you well on your excellent mission of increasing the manufacturing of relevant US military products at scale and in time enough.\r\n\r\nRespectfully,\r\nMichael\r\n\r\n\r\nMichael Piasecki\r\nPresident\r\nDPI UAV Systems\r\n600 W. 2nd St., Essington, PA 19029\r\nOffice: (610) 521-6115 x 202\r\nMobile: (215) 439-2036\r\nwww.dpiuav.com<http://www.dpiuav.com/>\r\nhttps://youtu.be/4ihY-IiAfXI\r\n\r\n\r\nExtending Man\'s Reach with Unmanned Helicopters\r\n[DPI-logo-4-April28-blue-full]\r\n\r\nThis is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is appreciated.\r\n\r\n',0,0,0,0,0,0,'2025-11-12 14:03:45','2025-12-09 19:31:10','2025-12-09 19:31:10','2025-12-09 19:31:10',NULL,NULL,NULL),
(952,4,'<CAJO9__bH09t+NO3jiNkbGydmwE3osPovGN739eDz6FYw5b3QjQ@mail.gmail.com>',NULL,NULL,'EcoFlow Facility Visit Dec. 15th','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Hello Team,</div><div><br></div><div>EcoFlow would like to come and do a facility tour on Dec. 15th.  I pushed them out as far as I could.  Let me know your thoughts if this date will work for us.  </div><div><br></div><div>Thanks, </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div></div>','Hello Team,\r\n\r\nEcoFlow would like to come and do a facility tour on Dec. 15th.  I pushed\r\nthem out as far as I could.  Let me know your thoughts if this date will\r\nwork for us.\r\n\r\nThanks,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>',0,0,0,0,0,0,'2025-11-12 16:30:05','2025-12-09 19:31:11','2025-12-09 19:31:11','2025-12-09 19:31:11',NULL,NULL,NULL),
(953,4,'<20251112211314.Horde.k7Sdoo_rBTH35Fdya0GSRQg@mavrix1.aponte.to>',NULL,NULL,'Invitation: Weekly HR Update - Rick/Leslie','leslie@mavrix.one','Leslie Staron','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\" style=\"-webkit-font-smoothing:antialiased;background:#fff!important\">\r\n<head>\r\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n	<meta name=\"viewport\" content=\"width=device-width\">\r\n	<title></title>\r\n	<style type=\"text/css\">@media only screen{html{min-height:100%;background:#fff}}@media only screen and (max-width:610px){table.body img{width:auto;height:auto}table.body center{min-width:0!important}table.body .container{width:95%!important}table.body .columns{height:auto!important;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:30px!important;padding-right:30px!important}th.small-12{display:inline-block!important;width:100%!important}table.menu{width:100%!important}table.menu td,table.menu th{width:auto!important;display:inline-block!important}table.menu.vertical td,table.menu.vertical th{display:block!important}table.menu[align=center]{width:auto!important}}</style>\r\n</head>\r\n<body style=\"-moz-box-sizing:border-box;-ms-text-size-adjust:100%;-webkit-box-sizing:border-box;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;margin:0;background:#fff!important;box-sizing:border-box;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;min-width:100%;padding:0;text-align:left;width:100%!important\">\r\n	<span class=\"preheader\" style=\"color:#F5F5F5;display:none!important;font-size:1px;line-height:1px;max-height:0;max-width:0;mso-hide:all!important;opacity:0;overflow:hidden;visibility:hidden\">\r\n	</span>\r\n	<table class=\"body\" style=\"-webkit-font-smoothing:antialiased;margin:0;background:#fff;border-collapse:collapse;border-spacing:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n		<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n			<td class=\"center\" align=\"center\" valign=\"top\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n				<center data-parsed=\"\" style=\"min-width:580px;width:100%\"><table align=\"center\" class=\"wrapper header float-center\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:20px;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:0 0;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:150px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n						<table class=\"row collapse\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n							<tbody>\r\n							<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n								<center data-parsed=\"\" style=\"background-color:#00679e;min-width:175px;max-height:175px; padding:35px 0px;border-radius:200px\">\r\n									<img class=\"logo float-center\" src=\"https://mavrix1.aponte.to/apps/theming/image/logo?useSvg=0&amp;v=9\" alt=\"Mavrix1\" align=\"center\" style=\"-ms-interpolation-mode:bicubic;clear:both;display:block;float:none;margin:0 auto;outline:0;text-align:center;text-decoration:none;max-height:105px;max-width:105px;width:auto;height:auto\" width=\"105\" height=\"22\">\r\n								</center>\r\n							</tr>\r\n							</tbody>\r\n						</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"40px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:80px;font-weight:400;hyphens:auto;line-height:80px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"container main-heading float-center\" style=\"Margin:0 auto;background:0 0!important;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:580px\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<h1 class=\"text-center\" style=\"Margin:0;Margin-bottom:10px;color:inherit;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:24px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:center;word-wrap:normal\">Leslie Staron would like to invite you to \"Weekly HR Update - Rick/Leslie\"</h1>\r\n		</td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"36px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-size:40px;font-weight:400;hyphens:auto;line-height:36px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table><table align=\"center\" class=\"wrapper content float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<table align=\"center\" class=\"container\" style=\"Margin:0 auto;background:#fff;border-collapse:collapse;border-spacing:0;margin:0 auto;padding:0;text-align:inherit;vertical-align:top;width:580px\">\r\n				<tbody>\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/title.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Title:</em><br>Weekly HR Update - Rick/Leslie</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/time.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">When:</em><br>In 18 hours on Thursday, November 13, 2025 between 11:00 AM - 12:00 PM (America/New_York)</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/location.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Location:</em><br>Leslie will Call</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left;width:15px;\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><img src=\"https://mavrix1.aponte.to/core/img/caldav/description.png\" alt=\"•\"></p>\r\n					</td>\r\n					<td style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p class=\"text-left\" style=\"Margin:0;Margin-bottom:10px;color:#555;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;padding-left:10px;text-align:left\"><em style=\"color:#777;\">Description:</em><br>Rick - Now that we have calendar access, I\'m setting up a recurring weekly call for us. Feel free to reschedule to a time that suits your schedule as necessary. Not expecting to need a full hour each week, but blocking the time just in case. Looking forward to our first call, Leslie</p>\r\n					</td>\r\n					<td class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></td>\r\n				</tr>			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"spacer\" style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"50px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:50px;font-weight:400;hyphens:auto;line-height:50px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"row btn-group\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<center data-parsed=\"\" style=\"min-width:490px;width:100%\">\r\n							<!--[if (gte mso 9)|(IE)]>\r\n							<table>\r\n								<tr>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default primary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;margin:0 0 30px 0;margin-right:15px;border-radius:8px;max-width:300px;padding:0;text-align:center;vertical-align:top;width:auto;background:#00679e;background-color:#00679e;color:#fefefe;\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #00679e;border-collapse:collapse!important;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/accept/OH0m8DXRnhMqQKcMbPN2RPseHNeDb6hTcKhla1HerJ6xdHTVh0RuZmfNGIh0\" style=\"Margin:0;border:0 solid #00679e;color:#ffffff;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;padding:8px;text-align:left;outline:1px solid #ffffff;text-decoration:none\">Accept</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n									<td>\r\n									<![endif]-->\r\n										<table class=\"button btn default secondary float-center\" style=\"Margin:0 0 30px 0;border-collapse:collapse;border-spacing:0;display:inline-block;float:none;background-color: #ccc;margin:0 0 30px 0;max-height:40px;max-width:300px;padding:1px;border-radius:8px;text-align:center;vertical-align:top;width:auto\">\r\n											<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n												<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n													<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n														<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n															<td style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border:0 solid #777;border-collapse:collapse!important;color:#fefefe;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:normal;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n																<a href=\"https://mavrix1.aponte.to/apps/dav/invitation/decline/OH0m8DXRnhMqQKcMbPN2RPseHNeDb6hTcKhla1HerJ6xdHTVh0RuZmfNGIh0\" style=\"Margin:0;background-color:#fff;border:0 solid #777;color:#6C6C6C!important;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:regular;line-height:normal;margin:0;border-radius: 7px;padding:8px;text-align:left;text-decoration:none\">Decline</a>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</table>\r\n									<!--[if (gte mso 9)|(IE)]>\r\n									</td>\r\n								</tr>\r\n							</table>\r\n							<![endif]-->\r\n						</center>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table><table class=\"row description\" style=\"border-collapse:collapse;border-spacing:0;display:table;padding:0;position:relative;text-align:left;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<th class=\"small-12 large-12 columns first last\" style=\"Margin:0 auto;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0 auto;padding:0;padding-bottom:30px;padding-left:30px;padding-right:30px;text-align:left;width:550px\">\r\n			<table style=\"border-collapse:collapse;border-spacing:0;padding:0;text-align:left;vertical-align:top;width:100%\">\r\n				<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n					<th style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;text-align:left\">\r\n						<p style=\"Margin:0;Margin-bottom:10px;color:#777;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;margin-bottom:10px;padding:0;text-align:center\"><small><a href=\"https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/OH0m8DXRnhMqQKcMbPN2RPseHNeDb6hTcKhla1HerJ6xdHTVh0RuZmfNGIh0\">More options …</a></small></p>\r\n					</th>\r\n					<th class=\"expander\" style=\"Margin:0;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0!important;text-align:left;visibility:hidden;width:0\"></th>\r\n				</tr>\r\n			</table>\r\n		</th>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n					</td>\r\n				</tr>\r\n				</tbody>\r\n			</table>\r\n		</td>\r\n	</tr>\r\n</table><table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tbody>\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td height=\"60px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:60px;font-weight:400;hyphens:auto;line-height:60px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n	</tr>\r\n	</tbody>\r\n</table>\r\n<table align=\"center\" class=\"wrapper footer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n	<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n		<td class=\"wrapper-inner\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:16px;font-weight:400;hyphens:auto;line-height:1.3;margin:0;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\">\r\n			<center data-parsed=\"\" style=\"min-width:580px;width:100%\">\r\n				<table class=\"spacer float-center\" style=\"Margin:0 auto;border-collapse:collapse;border-spacing:0;float:none;margin:0 auto;padding:0;text-align:center;vertical-align:top;width:100%\">\r\n					<tbody>\r\n					<tr style=\"padding:0;text-align:left;vertical-align:top\">\r\n						<td height=\"15px\" style=\"-moz-hyphens:auto;-webkit-hyphens:auto;Margin:0;border-collapse:collapse!important;color:#0a0a0a;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:15px;font-weight:400;hyphens:auto;line-height:15px;margin:0;mso-line-height-rule:exactly;padding:0;text-align:left;vertical-align:top;word-wrap:break-word\"> </td>\r\n					</tr>\r\n					</tbody>\r\n				</table>\r\n				<p class=\"text-center float-center\" align=\"center\" style=\"Margin:0;Margin-bottom:10px;color:#C8C8C8;font-family:-apple-system,BlinkMacSystemFont,\'Segoe UI\',Roboto,Oxygen-Sans,Ubuntu,Cantarell,\'Helvetica Neue\',Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;margin:0;margin-bottom:10px;padding:0;text-align:center\">Mavrix1 - Manufacturing American Autonomy<br>This is an automatically sent email, please do not reply.</p>\r\n			</center>\r\n		</td>\r\n	</tr>\r\n</table>					</center>\r\n				</td>\r\n			</tr>\r\n		</table>\r\n		<!-- prevent Gmail on iOS font size manipulation -->\r\n		<div style=\"display:none;white-space:nowrap;font:15px courier;line-height:0\">                                                           </div>\r\n	</body>\r\n</html>','Leslie Staron would like to invite you to \"Weekly HR Update - Rick/Leslie\"\r\n\r\n         Title: Weekly HR Update - Rick/Leslie\r\n          When: In 18 hours on Thursday, November 13, 2025 between 11:00 AM - 12:00 PM (America/New_York)\r\n      Location: Leslie will Call\r\n   Description: Rick - Now that we have calendar access, I\'m setting up a recurring weekly call for us. Feel free to reschedule to a time that suits your schedule as necessary. Not expecting to need a full hour each week, but blocking the time just in case. Looking forward to our first call, Leslie\r\n\r\nAccept: https://mavrix1.aponte.to/apps/dav/invitation/accept/OH0m8DXRnhMqQKcMbPN2RPseHNeDb6hTcKhla1HerJ6xdHTVh0RuZmfNGIh0\r\nDecline: https://mavrix1.aponte.to/apps/dav/invitation/decline/OH0m8DXRnhMqQKcMbPN2RPseHNeDb6hTcKhla1HerJ6xdHTVh0RuZmfNGIh0\r\n\r\nMore options at https://mavrix1.aponte.to/apps/dav/invitation/moreOptions/OH0m8DXRnhMqQKcMbPN2RPseHNeDb6hTcKhla1HerJ6xdHTVh0RuZmfNGIh0\r\n\r\n\r\n-- \r\nMavrix1 - Manufacturing American Autonomy\r\nThis is an automatically sent email, please do not reply.',0,0,0,0,0,0,'2025-11-12 21:13:14','2025-12-09 19:31:11','2025-12-09 19:31:11','2025-12-09 19:31:11',NULL,NULL,NULL),
(954,4,'<0100019a7a01bce0-8d529c6d-e443-4d75-97f1-fc16168968ab-000000@email.amazonses.com>',NULL,NULL,'How does $75 back in rewards sound for Black Friday?','no-reply@business.amazon.com','Amazon Business','<!doctype html>\r\n<html lang=\"en-US\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\">\r\n <head>\r\n  <title>How does $75 back in rewards sound for Black Friday?</title><!--[if !mso]><!-- -->\r\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><!--<![endif]-->\r\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\r\n  <style type=\"text/css\">#outlook a { padding:0; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block; }</style><!--[if mso]>                    <xml>                      <o:OfficeDocumentSettings xmlns:o=\"urn:schemas-microsoft-com:office:office\">                    <o:AllowPNG/>                          <o:PixelsPerInch>96</o:PixelsPerInch>                      </o:OfficeDocumentSettings>                   <w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\">               <w:DontUseAdvancedTypographyReadingMail/>             </w:WordDocument>                  </xml>                        <style type=\"text/css\">             table { border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt; }             .mj-outlook-group-fix { width:100% !important; }           </style>                  <![endif]--><!--[if !mso]><!-->\r\n  <link href=\"https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <link href=\"https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css\" rel=\"stylesheet\" type=\"text/css\">\r\n  <style type=\"text/css\">@import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);</style><!--<![endif]-->\r\n  <style type=\"text/css\">@media only screen and (min-width:390px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }</style>\r\n  <style type=\"text/css\">body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; } .links-232F3E-underline-bold a { color: #232F3E; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .mso-button-dark-mode a {background: transparent !important;} .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .links-161D26-underline a { color: #161D26; text-decoration: underline; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:390px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-165px { max-width: 165px !important} .padding-32px-40px-20px-40px { padding: 32px 40px 20px 40px !important} .font-size-36px { font-size: 36px !important} .padding-0px-40px-24px-40px { padding: 0px 40px 24px 40px !important} .max-width-640px { max-width: 640px !important} .padding-0px-40px-0px-40px { padding: 0px 40px 0px 40px !important} .padding-24px-40px-0px-40px { padding: 24px 40px 0px 40px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }</style>\r\n  <style type=\"text/css\">ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 390px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}</style><!--[if mso]>             <style>                 .hide-on-mobile {display:block !important}             </style>         <![endif]--><!--[if mso]>                 <style>                              .mso-font-size-36px { font-size: 36px !important; }                 </style>             <![endif]-->\r\n  <style>[class~=\"x_body\"] { width: 99.9% }</style>\r\n </head>\r\n <body style=\"word-spacing:normal;background-color:#FFFFFF;\" class=\"body\" id=\"body\">\r\n  <div>\r\n   <p><img alt=\"\" src=\"http://elinks.business.amazon.com/CI0/0100019a7a01bce0-8d529c6d-e443-4d75-97f1-fc16168968ab-000000/veHws99W5q0qyhPOKhILZG4HfqvQlSFyGthQ7T8ZsBc=431\" style=\"display: none; width: 1px; height: 1px;\">\r\n</p>\r\n  </div><!--[if !mso 9]><!-->\r\n  <div id=\"emailPreHeader\" style=\"display: none;\">\r\n   Details on your offer inside\r\n  </div>\r\n  <div style=\"display: none;\">\r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  </div><!--<![endif]-->\r\n  <div style=\"background-color:#FFFFFF;background-position:center center;background-size:auto;background-repeat:repeat;\" id=\"main\">\r\n   <!--[if mso]>\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><![endif]--><!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:16px 16px 14px 16px;text-align:center;vertical-align:top;mso-padding-alt:14px 0px 14px 40px;\" class=\"block-grid padding-14px-0px-14px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:600px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0;line-height:0;text-align:left;display:inline-block;width:100%;direction:ltr;vertical-align:top;\">\r\n              <!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:middle;width:300px;\" ><![endif]-->\r\n              <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n               <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n                <tbody>\r\n                 <tr>\r\n                  <td class=\"padding-0px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 0px 0px;word-break:break-word;mso-padding-alt:0px 0px 0px 0px;text-align:left;\">\r\n                   <div style=\"margin:0 auto 0 0;\" class=\"max-width-165px\">\r\n                    <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%3Fref_=b2b_life_e_e1_bfcm25_bp_us_75back/1/0100019a7a01bce0-8d529c6d-e443-4d75-97f1-fc16168968ab-000000/cEdc_8jE1WjHCdj75Zn4ffIpu6aLnWjRR9Ro9hb4wsg=431\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business\" height=\"auto\" width=\"165\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-2color2x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                   </div></td>\r\n                 </tr>\r\n                </tbody>\r\n               </table>\r\n              </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:middle;width:300px;\" ><![endif]-->\r\n              <div class=\"mj-column-per-50 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:50%;\">\r\n               <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:middle;\" width=\"100%\">\r\n                <tbody>\r\n                 <tr>\r\n                  <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                   <div style=\"line-height:0px;height:0px;mso-line-height-alt:0px;\">\r\n                    &nbsp;\r\n                   </div></td>\r\n                 </tr>\r\n                </tbody>\r\n               </table>\r\n              </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:32px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:32px 40px 20px 40px;\" class=\"block-grid padding-32px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-232F3E-underline-bold\">\r\n                  <div style=\"font-family:\'Ember Modern Display\', Arial, sans-serif;font-size:28px;font-weight:bold;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:2.688em;color:#161D26;\" class=\"mso-font-size-36px font-size-36px\">\r\n                   <p style=\"margin: 0 0 0px 0;\">New to Business Prime? Here\'s $75 to get you started</p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 16px 24px 16px;text-align:center;vertical-align:top;mso-padding-alt:0px 40px 24px 40px;\" class=\"block-grid padding-0px-40px-24px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td valign=\"middle\" class=\"button-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div>\r\n                  <!--[if mso]>\r\n<table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\">\r\n<tr>\r\n<td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_life_e_e1_bfcm25_bp_us_75back%26return_to=%252Fab%252Fincentives%252Factivate%253FcampaignId%253D84fddccd-0717-44f2-994f-2ab74d35d975%2526fwd%253D%252Fbusinessprime/1/0100019a7a01bce0-8d529c6d-e443-4d75-97f1-fc16168968ab-000000/Yjeb_X7bfVEQHs5FQ0OYI-osyd7jB9ieCiYAv--Wtdc=431\" fillcolor=\"#FFD814\" arcsize=\"58%\" style=\"v-text-anchor:middle;width:77.25pt;height:32.25pt;\" stroke=\"f\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_life_e_e1_bfcm25_bp_us_75back%26return_to=%252Fab%252Fincentives%252Factivate%253FcampaignId%253D84fddccd-0717-44f2-994f-2ab74d35d975%2526fwd%253D%252Fbusinessprime/1/0100019a7a01bce0-8d529c6d-e443-4d75-97f1-fc16168968ab-000000/Yjeb_X7bfVEQHs5FQ0OYI-osyd7jB9ieCiYAv--Wtdc=431\" style=\"display: inline-block; background: #FFD814; color: #161D26; font-family: \'Amber Ember\', Arial, sans-serif; font-size: 16px; font-weight: normal; line-height: 1.2; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 12px 24px 12px 24px; mso-padding-alt: 0px; border-radius: 25px; border-left: 0 none #FFFFFF; border-right: 0 none #FFFFFF; border-top: 0 none #FFFFFF; border-bottom: 0 none #FFFFFF; mso-border-alt: none; box-sizing: border-box;\" target=\"_blank\" width=\"103\">Sign up </a><!--[if mso]></center></a:textbox></a:roundrect>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"img-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\">\r\n                  <div style=\"margin:0 auto;\" class=\"max-width-640px\">\r\n                   <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_life_e_e1_bfcm25_bp_us_75back%26return_to=%252Fab%252Fincentives%252Factivate%253FcampaignId%253D84fddccd-0717-44f2-994f-2ab74d35d975%2526fwd%253D%252Fbusinessprime/2/0100019a7a01bce0-8d529c6d-e443-4d75-97f1-fc16168968ab-000000/L6jNh86dVQe1m0iW7Sqwyd3Vj3AOe5inGz6UqCLzYX8=431\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"New to Business Prime? Here\'s $75 to get you started.\" height=\"auto\" width=\"640\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/MarketingFY25/BP/XX-XX_AB_BFCM25_P5_542_Email_Wide_Logo_1280x460.jpg\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"[object Object]\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;mso-padding-alt:0px 0px 0px 0px;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                  <div style=\"line-height:24px;height:24px;mso-line-height-alt:24px;\">\r\n                   &nbsp;\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:0px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:0px 40px 0px 40px;\" class=\"block-grid padding-0px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                  <div class=\"links-007185-bold\">\r\n                   <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:16px;font-weight:normal;letter-spacing:none;line-height:1.4;text-align:left;mso-line-height-alt:1.375em;color:#222D3A;\">\r\n                    <p style=\"margin: 0 0 0px 0;\">Black Friday deals are right around the corner. If you want early access to this year\'s event, be sure to add fast, free delivery with Business Prime to your savings arsenal.</p>\r\n                    <p style=\"margin: 0 0 0px 0;\">&nbsp;</p>\r\n                    <p style=\"margin: 0 0 0px 0;\"><span style=\"font-weight: bold;\">For a limited time, you can enjoy a $75 Business Prime Rewards bonus when you sign up.</span> Members also earn up to 4% back on brands by Amazon, plus other opportunities to stack points and redeem on future eligible purchases.&nbsp;</p>\r\n                    <p style=\"margin: 0 0 0px 0;\">&nbsp;</p>\r\n                    <p style=\"margin: 0 0 0px 0;\">Get started with a 30-day free trial today.</p>\r\n                   </div>\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\">\r\n       <div role=\"none\">\r\n        <!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n        <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n         <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n          <tbody>\r\n           <tr>\r\n            <td style=\"font-size:0px;padding:24px 16px 0px 16px;text-align:center;vertical-align:top;mso-padding-alt:24px 40px 0px 40px;\" class=\"block-grid padding-24px-40px-0px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n             <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n              <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n               <tbody>\r\n                <tr>\r\n                 <td valign=\"middle\" class=\"button-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                  <div>\r\n                   <!--[if mso]>\r\n<table width=\"100%\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-spacing:0;border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;\">\r\n<tr>\r\n<td align=\"left\" class=\"mso-button-dark-mode\"><a:roundrect xmlns:a=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_life_e_e1_bfcm25_bp_us_75back%26return_to=%252Fab%252Fincentives%252Factivate%253FcampaignId%253D84fddccd-0717-44f2-994f-2ab74d35d975%2526fwd%253D%252Fbusinessprime/2/0100019a7a01bce0-8d529c6d-e443-4d75-97f1-fc16168968ab-000000/L6jNh86dVQe1m0iW7Sqwyd3Vj3AOe5inGz6UqCLzYX8=431\" fillcolor=\"#FFFFFF\" arcsize=\"17%\" style=\"v-text-anchor:middle;width:66pt;height:35.25pt;\" strokecolor=\"#D5D9D9\" strokeweight=\"1.5pt\" ><w:anchorlock/><a:textbox inset=\"0,0,0,0\"><center style=\"color:#ffffff; font-family:sans-serif, Arial; font-size:16px\"><![endif]--> <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_life_e_e1_bfcm25_bp_us_75back%26return_to=%252Fab%252Fincentives%252Factivate%253FcampaignId%253D84fddccd-0717-44f2-994f-2ab74d35d975%2526fwd%253D%252Fbusinessprime/3/0100019a7a01bce0-8d529c6d-e443-4d75-97f1-fc16168968ab-000000/7YOegmK2AhXQeOzI95bcCmg9d-KE8ocvNf_TG0XF5FE=431\" style=\"display: inline-block; background: #FFFFFF; color: #161D26; font-family: \'Amber Ember\', Arial, sans-serif; font-size: 16px; font-weight: normal; line-height: 1.2; margin: 0; text-align: center; text-decoration: none; text-transform: none; padding: 12px 16px 12px 16px; mso-padding-alt: 0px; border-radius: 8px; border-left: 2px solid #D5D9D9; border-right: 2px solid #D5D9D9; border-top: 2px solid #D5D9D9; border-bottom: 2px solid #D5D9D9; mso-border-alt: none; box-sizing: border-box;\" target=\"_blank\" width=\"90\">Sign up </a><!--[if mso]></center></a:textbox></a:roundrect>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n                  </div></td>\r\n                </tr>\r\n               </tbody>\r\n              </table>\r\n             </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n           </tr>\r\n          </tbody>\r\n         </table>\r\n        </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]-->\r\n       </div></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#FFFFFF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px 0px 0px 0px;text-align:center;vertical-align:top;mso-padding-alt:0px 0px 0px 0px;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0 0 0 0;word-break:break-word;\">\r\n                 <div style=\"line-height:30px;height:30px;mso-line-height-alt:30px;\">\r\n                  &nbsp;\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F7F7F7;background-color:#F7F7F7;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F7F7F7;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:0px;text-align:center;vertical-align:top;\" class=\"block-grid\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:center;\"><!--[if !mso]><!-- --><p style=\"border-top:solid 1px #D5D9D9;font-size:1px;margin:0 auto;width:100%;text-align:center;\"></p><!--<![endif]--><!--Divider--><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-top:solid 1px #D5D9D9;font-size:1px;margin:0 auto;width:640px;text-align:center;\" role=\"presentation\" width=\"640px\" >\r\n<tr>\r\n<td style=\"height:0;line-height:0;\"> &nbsp; </td>\r\n</tr>\r\n</table><![endif]--></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#F5F3EF;background-color:#F5F3EF;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F5F3EF;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:560px;\" ><![endif]-->\r\n            <div class=\"mj-column-per-100 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n             <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n              <tbody>\r\n               <tr>\r\n                <td class=\"text-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\">\r\n                 <div class=\"links-161D26-underline\">\r\n                  <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#222D3A;\">\r\n                   <p style=\"margin: 0;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fgp%2Fhelp%2Fcustomer%2Fdisplay.html%3Fref_=b2b_life_e_e1_bfcm25_bp_us_75back%26nodeId=TcqbDfSE0qpqvXei6k/1/0100019a7a01bce0-8d529c6d-e443-4d75-97f1-fc16168968ab-000000/Nb9dxviSzdnKRC_PY1IjFh9-ZzNnd49p40uMpgpupzE=431\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(22, 29, 38); text-decoration: underline;\">Terms and Conditions apply</a>. Offers expire December 1, 2025, at 11:59 pm PT. Max reward for this offer is $75. Don\'t have a Prime membership? <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fbusiness%2Fregister%2Fwelcome%3Fref_=b2b_life_e_e1_bfcm25_bp_us_75back%26return_to=%2Fbusinessprime/1/0100019a7a01bce0-8d529c6d-e443-4d75-97f1-fc16168968ab-000000/GFx-pOn5UlVXm9SFe-hm8kGUrxsvQlBMprjwd5QEiT4=431\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(22, 29, 38); text-decoration: underline;\">Try Business Prime Essentials</a> free for 30-days.</p>\r\n                   <p style=\"margin: 0;\">&nbsp;</p>\r\n                   <p style=\"margin: 0;\">Business Prime offers multiple membership plans and may require a paid plan based on eligibility. Paid plans automatically renew unless cancelled.</p>\r\n                  </div>\r\n                 </div></td>\r\n               </tr>\r\n              </tbody>\r\n             </table>\r\n            </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--> <!--[if mso]>\r\n<tr>\r\n<td><![endif]-->\r\n   <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#F4F4F5;width:100%;\" class=\"section\">\r\n    <tbody>\r\n     <tr>\r\n      <td align=\"center\"><!--[if mso | IE]>\r\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"block-grid-outlook\" style=\"width:640px;\" width=\"640\" >\r\n<tr>\r\n<td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n       <div style=\"background:#161D26;background-color:#161D26;margin:0 auto;max-width:640px;\">\r\n        <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background-color:#161D26;width:100%;\">\r\n         <tbody>\r\n          <tr>\r\n           <td style=\"font-size:0px;padding:20px 16px 20px 16px;text-align:center;vertical-align:top;mso-padding-alt:20px 40px 20px 40px;\" class=\"block-grid padding-20px-40px-20px-40px\">\r\n            <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n             <tbody>\r\n              <tr>\r\n               <td style=\"line-height:0;font-size:0;direction:rtl;\"><!--[if mso | IE]>\r\n<table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n<tr>\r\n<td style=\"vertical-align:top;width:252px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-45 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-align-right social-container\" style=\"font-size:0px;padding:0px 0px 0px 0px;word-break:break-word;text-align:left;\"><!--[if mso | IE]>\r\n<table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" >\r\n<tr>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.facebook.com%2FAmazonBusiness%2F%3Fref_=b2b_life_e_e1_bfcm25_bp_us_75back/1/0100019a7a01bce0-8d529c6d-e443-4d75-97f1-fc16168968ab-000000/dh9NMafx7Np3bXcVmvGKNK1JKH3i3EXloEDeOV_CNxU=431\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Facebook\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Facebook-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Ftwitter.com%2FAmazonBusiness%3Fref_=b2b_life_e_e1_bfcm25_bp_us_75back/1/0100019a7a01bce0-8d529c6d-e443-4d75-97f1-fc16168968ab-000000/WaUuC_t-aGYnbEZKjqvXVVbZ1RzKmrMSdttwUehz94o=431\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Twitter\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-Twitter-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n<td><![endif]-->\r\n                     <div style=\"display:inline-block;\">\r\n                      <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"float:none;display:inline-table;\">\r\n                       <tbody>\r\n                        <tr>\r\n                         <td style=\"padding:8px;\">\r\n                          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:transparent;border-radius:0px;width:20px;\">\r\n                           <tbody>\r\n                            <tr>\r\n                             <td style=\"padding:0px;font-size:0;height:20px;vertical-align:middle;width:20px;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.linkedin.com%2Fcompany%2Famazon-business%2F%3Fref_=b2b_life_e_e1_bfcm25_bp_us_75back/1/0100019a7a01bce0-8d529c6d-e443-4d75-97f1-fc16168968ab-000000/sWyPJ1kXbGphcJNuLDjxzdLD6XVoWHIHpsj6hTRV3kI=431\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Linkedin\" height=\"20\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Email/RefreshedIcons/Social-Icons/AB-Icon-Social-LinkedIn-white-500x500.png\" style=\"border-radius:0px;display:block;\" width=\"20\"></a></td>\r\n                            </tr>\r\n                           </tbody>\r\n                          </table></td>\r\n                        </tr>\r\n                       </tbody>\r\n                      </table>\r\n                     </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"padding-10px-0px-0px-0px img-container\" style=\"font-size:0px;padding:8px 0px 20px 0px;word-break:break-word;mso-padding-alt:10px 0px 0px 0px;text-align:right;\">\r\n                     <div style=\"margin:0 auto 0 0;max-width:163px;\" class=\"margin-0-0-0-auto\">\r\n                      <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2F%3Fref_=b2b_life_e_e1_bfcm25_bp_us_75back%26ref_=b2b_life_e_e1_bfcm25_bp_us_75back/1/0100019a7a01bce0-8d529c6d-e443-4d75-97f1-fc16168968ab-000000/ARzrHAWgPZTRvy2cJq2Z5-mAf1_jBf7rI8sPRFFNrPk=431\" target=\"_blank\" style=\"text-decoration: none; color: #827AF0;\"><img alt=\"Amazon Business logo\" height=\"auto\" width=\"163\" src=\"https://m.media-amazon.com/images/G/01/AmazonBusiness/Logo/Email-Logo/AB-logo-outlined-white2x.png\" style=\"border:none;outline:none;text-decoration:none;height:auto;width:100%;font-size:13px;display:block;\"></a>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n<td style=\"vertical-align:top;width:308px;\" ><![endif]-->\r\n                <div class=\"mj-column-per-55 mj-outlook-group-fix\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;\">\r\n                 <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius:0px;vertical-align:top;\" width=\"100%\">\r\n                  <tbody>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\"><a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Fen%2Fcontact-us%3Fref_=b2b_life_e_e1_bfcm25_bp_us_75back/1/0100019a7a01bce0-8d529c6d-e443-4d75-97f1-fc16168968ab-000000/AFOdFI68xkRLDZByxOq9s9ofR3d5ThZKgR21u0Agfoc=431\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">Contact us</a> | <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fwww.amazon.com%2Fab%2Fmanage%2Faccount%2F%3Fref_=b2b_life_e_e1_bfcm25_bp_us_75back/1/0100019a7a01bce0-8d529c6d-e443-4d75-97f1-fc16168968ab-000000/Tq_2Rsq7jL4E9DRHRvra7M_JmF-Yz8o2X5W3QDJ3uvo=431\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">Manage account</a></p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 0px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\">If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your <a href=\"https://elinks.business.amazon.com/CL0/https:%2F%2Fbusiness.amazon.com%2Femail-preferences%2Fep%2Fha8hcC%2B%2BdeiLvAG2NywIXEO4gMj1mX%2B5YQUaSn8wcdEISKsurxh%2BBodsVQ==%2F2089077091%2FkuuYD7iMjFOry64u1n98%2BhMshp1slsA1jp9UH4uYzedtP*vPM75qS6lu%2BtjJ%2BVKqNrBTvMsBgcsoR3T6eYYAUdB1Sj%2B72dm*UPpETqIZY4Q%2BpifndWfOlI58p3yolv89XnSxgAHdUjG1uqMFeW5sm4hzcPe65fIr36nzleQtusQXmggaMOHte9MY53DNyT*PQnk0609laYWrDnPlG8Xe9RqfiBe%2BxUUMqbV5tAg6uBw9YzlF8j8fcYB74S1odsxz3LcbCxBRZLbd8WrRm5yRgX3s3TPYrgOLYRGhvVPblDILvrNbgE9wr6Rw2Twca81R2NDrGBYxu59KuG8HNjhBnItzHuGsJbYmvkqRBrvBMJV7TVTvMZg=%2FFA1yYp4N*nMz7YwovDsm7Er2y0ymCV5%2Bghv7VkFrKS%2BB%3Fref_=b2b_life_e_e1_bfcm25_bp_us_75back/1/0100019a7a01bce0-8d529c6d-e443-4d75-97f1-fc16168968ab-000000/vfBcrD_M5ZlLPCR60C5msoTDp3hEkqBRLcwh_LRIE1s=431\" target=\"_blank\" rel=\"noopener\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\">email preferences</a>.</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                   <tr>\r\n                    <td class=\"text-container\" style=\"font-size:0px;padding:10px 30px 10px 0px;word-break:break-word;text-align:left;\">\r\n                     <div class=\"links-FFFFFF-underline\">\r\n                      <div style=\"font-family:\'Amber Ember\', Arial, sans-serif;font-size:12px;font-weight:normal;letter-spacing:none;line-height:1.2;text-align:left;mso-line-height-alt:0.875em;color:#FFFFFF;\">\r\n                       <p style=\"margin: 0;\">© 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210</p>\r\n                       <p style=\"margin: 0;\">&nbsp;</p>\r\n                       <p style=\"margin: 0;\">Reference: 2089077091</p>\r\n                      </div>\r\n                     </div></td>\r\n                   </tr>\r\n                  </tbody>\r\n                 </table>\r\n                </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n              </tr>\r\n             </tbody>\r\n            </table></td>\r\n          </tr>\r\n         </tbody>\r\n        </table>\r\n       </div><!--[if mso | IE]>\r\n</td>\r\n</tr>\r\n</table><![endif]--></td>\r\n     </tr>\r\n    </tbody>\r\n   </table><!--[if mso]>\r\n</td>\r\n</tr><![endif]--><!--[if mso]>\r\n</table><![endif]-->\r\n  </div>\r\n </body>\r\n</html>\r\n','\r\n\r\n \r\n  How does $75 back in rewards sound for Black Friday?\r\n  \r\n  \r\n  \r\n  #outlook a { padding:0; }           table { border-spacing:0;}           img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; }           p { display:block; }\r\n  \r\n  \r\n  @import url(https://client-data.knak.io/production/company_data/630e3887b58ec/custom-fonts/6319f9bc60b6b/fonts.css); @import url(https://client-data.knak.io/production/company_data/63c704d363902/custom-fonts/66ce388715f45/fonts.css);\r\n  @media only screen and (min-width:390px) {         .mj-column-per-100 { width:100% !important; max-width: 100%; } .mj-column-per-50 { width:50% !important; max-width: 50%; } .mj-column-per-45 { width:45% !important; max-width: 45%; } .mj-column-per-55 { width:55% !important; max-width: 55%; }       }\r\n  body, .body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; } .links-232F3E-underline-bold a { color: #232F3E; text-decoration: underline; font-weight: bold; } #body #main [x-apple-data-detectors-type] {            color: inherit !important;            -webkit-text-decoration-color: inherit !important;            text-decoration: inherit !important;           font-weight: inherit !important;          } .mso-button-dark-mode a {background: transparent !important;} .links-007185-bold a { color: #007185; text-decoration: none; font-weight: bold; } .links-161D26-underline a { color: #161D26; text-decoration: underline; } .links-FFFFFF-underline a { color: #FFFFFF; text-decoration: underline; }                                         @media only screen and (min-width:390px) {                         .padding-14px-0px-14px-40px { padding: 14px 0px 14px 40px !important} .padding-0px-0px-0px-0px { padding: 0px 0px 0px 0px !important} .max-width-165px { max-width: 165px !important} .padding-32px-40px-20px-40px { padding: 32px 40px 20px 40px !important} .font-size-36px { font-size: 36px !important} .padding-0px-40px-24px-40px { padding: 0px 40px 24px 40px !important} .max-width-640px { max-width: 640px !important} .padding-0px-40px-0px-40px { padding: 0px 40px 0px 40px !important} .padding-24px-40px-0px-40px { padding: 24px 40px 0px 40px !important} .padding-20px-40px-20px-40px { padding: 20px 40px 20px 40px !important} .text-align-right { text-align: right !important} .padding-10px-0px-0px-0px { padding: 10px 0px 0px 0px !important} .margin-0-0-0-auto { margin: 0 0 0 auto !important}             }\r\n  ul{display: block;}sup, sub{line-height:0;}body a{text-decoration: none; color: #827AF0;}.image-highlight{transition: 0.3s;}.image-highlight:hover{filter: brightness(1.2);}@media only screen and (min-width: 390px) { .hide-on-mobile{display:block !important;}.hide-on-desktop{display:none !important;} }.hide-on-desktop{display:block;}.hide-on-mobile{display:none;}\r\n  [class~=\"x_body\"] { width: 99.9% }\r\n \r\n \r\n  \r\n   \r\n\r\n  \r\n  \r\n   Details on your offer inside\r\n  \r\n  \r\n                                                       ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏  ‍͏  ͏ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ ͏‌ ­ ­ ­ ­ &nbsp;\r\n  \r\n  \r\n   \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                   \r\n                 \r\n                \r\n               \r\n              \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    &nbsp;\r\n                   \r\n                 \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   New to Business Prime? Here\'s $75 to get you started\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                   Sign up \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   &nbsp;\r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    Black Friday deals are right around the corner. If you want early access to this year\'s event, be sure to add fast, free delivery with Business Prime to your savings arsenal.\r\n                    &nbsp;\r\n                    For a limited time, you can enjoy a $75 Business Prime Rewards bonus when you sign up. Members also earn up to 4% back on brands by Amazon, plus other opportunities to stack points and redeem on future eligible purchases.&nbsp;\r\n                    &nbsp;\r\n                    Get started with a 30-day free trial today.\r\n                   \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                    Sign up \r\n                  \r\n                \r\n               \r\n              \r\n             \r\n           \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  &nbsp;\r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   Terms and Conditions apply. Offers expire December 1, 2025, at 11:59 pm PT. Max reward for this offer is $75. Don\'t have a Prime membership? Try Business Prime Essentials free for 30-days.\r\n                   &nbsp;\r\n                   Business Prime offers multiple membership plans and may require a paid plan based on eligibility. Paid plans automatically renew unless cancelled.\r\n                  \r\n                 \r\n               \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n    \r\n   \r\n    \r\n     \r\n      \r\n       \r\n        \r\n         \r\n          \r\n           \r\n            \r\n             \r\n              \r\n               \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                     \r\n                      \r\n                       \r\n                        \r\n                         \r\n                          \r\n                           \r\n                            \r\n                             \r\n                            \r\n                           \r\n                          \r\n                        \r\n                       \r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n                \r\n                 \r\n                  \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       Contact us | Manage account\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       If you\'d rather not receive future emails of this sort from Amazon Business, please let us know your email preferences.\r\n                      \r\n                     \r\n                   \r\n                   \r\n                    \r\n                     \r\n                      \r\n                       © 2025 Amazon.com, Inc. or its affiliates. All rights reserved. Amazon, Amazon.com and the Amazon.com logo are registered trademarks of Amazon.com, Inc. or its affiliates. Amazon.com, 410 Terry Avenue North, Seattle, WA 98109-5210\r\n                       &nbsp;\r\n                       Reference: 2089077091\r\n                      \r\n                     \r\n                   \r\n                  \r\n                 \r\n                \r\n              \r\n             \r\n            \r\n          \r\n         \r\n        \r\n       \r\n     \r\n    \r\n   \r\n  \r\n \r\n\r\n',0,0,0,0,0,0,'2025-11-12 21:38:45','2025-12-09 19:31:11','2025-12-09 19:31:11','2025-12-09 19:31:11',NULL,NULL,NULL),
(955,4,' <SA5PR06MB11258B2F609D1749D520E3C97FECDA@SA5PR06MB11258.namprd06.prod.outlook.com>',NULL,NULL,'Latest capacity calcs & formulas (Excluding container integration customers)','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div class=\"elementToProof\" style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" id=\"Signature\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 11pt; color: black;\"><b>Jarrett Brownfield&nbsp;</b></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black; background-color: white;\">Partner\r\n</span><span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Lithium Battery Company</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 10pt; color: black;\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"8\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">Jarrett@</a>lithiumbatterycompany<a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-linkindex=\"9\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\">.com</a></u></span></p>\r\n<p style=\"text-align: left; text-indent: 0px; background-color: rgb(255, 255, 255); margin: 0in;\">\r\n<span style=\"font-family: Arial, sans-serif, serif, EmojiFont; font-size: 9pt; color: rgb(0, 36, 81);\"><u><a style=\"color: rgb(0, 36, 81); margin: 0px;\" data-auth=\"NotApplicable\" data-linkindex=\"10\" title=\"https://lithiumbatterycompany.com/\" href=\"https://lithiumbatterycompany.com/\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n</body>\r\n</html>','\r\n\r\nJarrett Brownfield\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\nJarrett@<mailto:Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://lithiumbatterycompany.com/>',0,0,0,0,0,0,'2025-11-13 01:05:44','2025-12-09 19:31:13','2025-12-09 19:31:13','2025-12-09 19:31:13',NULL,NULL,NULL),
(956,4,'<20251113134841.Horde.jQDHS_wwnLhkYnLPuaZzEDK@mavrix1.aponte.to>',NULL,NULL,'Request:  ADP Workers\' Compensation Questionnaire','leslie@mavrix.one','Leslie Staron','<!DOCTYPE html>\r\n<html><meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\"><body>\r\n<div class=\"quote\"><blockquote><p style=\"margin:0;\">Good Morning -</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\">ADP\'s underwriting risk team is asking several question as part of preparing a Workers\' Compensation quote for us.  I worked with Tanner to complete as much as possible.  <strong>Can you review to confirm the details to the answers are correct as well as revise/add information where you feel appropriate?</strong></p><p style=\"margin:0;\"> </p><p style=\"margin:0;\">Let me know if you have questions.  Included Brian for his awareness ahead of sending this information to ADP as one or both of you may determine revisions due to confidentiality or call out or question the purpose of certain information that is requested.</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\">Thank you,</p><p style=\"margin:0;\">Leslie</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\"> </p><p style=\"margin:0;\">1.     This looks like a new entity formation. Is there any current operations? Are ees actively working right now?</p><p style=\"margin:0;\"><span style=\"color:hsl(0,89%,46%);\">Yes, the Mavrix1 entity is new. The initial 17 employees have been identified but not yet been formally hired as employees.  We are currently awaiting funding before formally moving forward with operations.</span></p><p style=\"margin:0;\"><span style=\"color:hsl(0,89%,46%);\">One separate organization (6 of 17 employees) is currently being acquired by Mavrix1.  The company is called Lithium Battery Company, and their operations are currently active.</span></p><p style=\"margin:0;\">2.     Is this business starting as a spin off from another entity? If yes, what entity are they spinning away from and why?</p><p style=\"margin:0;\"><span style=\"color:hsl(0,89%,46%);\">The Mavrix1 Management, LLC is not a spin off.</span></p><p style=\"margin:0;\">3.     There is one ee assigned to 3642 Battery manufacturing. Please clarify if this ee is physically separated from the rest of the operations?</p><p style=\"margin:0;\"><span style=\"color:hsl(0,89%,46%);\">Of the six Lithium Battery Company employees, only two have hands on responsibilities with lithium batteries.  The CEO, Nathan Staron, who is assigned to 3642, and Kevin Eells, who is assigned to 9516.  If more appropriate, we can revise Kevin Eells from 9516 to 3642.</span></p><p style=\"margin:0;\"><span style=\"color:hsl(0,89%,46%);\">Jarrett Brownfield, Jordan Wroblewski, Tanner Hance, and Nicholas Powell have Sales and Administrative roles within the company.</span></p><p style=\"margin:0;\">4.     DOO seems to indicate only mfg ops. Please clarify if our prospect will be doing any type of drone flying/piloting for others.</p><p style=\"margin:0;\"><span style=\"color:hsl(0,89%,46%);\">Only manufacturing operations at this time.  Yes, eventually there will be testing and training on-site for device flying/piloting the UAV equipment manufactured by Mavrix1.</span></p><p style=\"margin:0;\">5.     Will our prospect be manufacturing drones/ UAVs as a whole device? Or just components that will be added to others drone/UAV devices?  If yes, what is the size and weight of these?</p><p style=\"margin:0;\"><span style=\"color:hsl(0,89%,46%);\">The initial manufacturing will be battery manufacturing.  The business plan eventually includes manufacturing drones/UAV\'s as whole devices.</span></p><p style=\"margin:0;\">6.     It looks like there is at least one ee with installation/service exposure. What is this ee doing exactly? Where are they doing it? Are they ever on a tarmac or on an aircraft? What about military bases?</p><p style=\"margin:0;\"><span style=\"color:hsl(0,89%,46%);\">Yes, one current Lithium Battery Company employee has hands-on configuration/service of lithium batteries (Kevin Eells) that are currently manufactured in China and shipped to the U.S.  The manufacturing process is shifting to the U.S. and will begin operations at the Tampa site over the next 8-10 weeks.  No employees including this one has installation/service exposure on a tarmac, aircraft, or military base - only at the manufacturing site in Tampa.</span></p><p style=\"margin:0;\">7.     What is their relationship with Mavrix 1, LLC? How does this entity and our prospect work together.</p><p style=\"margin:0;\"><span style=\"color:hsl(0,89%,46%);\">Lithium Battery Company is a manufacturer of lithium batteries that will be used for the UAV components and devices Mavrix1 will manufacture.</span></p><p style=\"margin:0;\">·       What % of ees interchange between these entities?</p><p style=\"margin:0;\"><span style=\"color:hsl(0,89%,46%);\">Currently, Lithium Battery Company employees are partnering with Mavrix1 on future projects and business.  Their daily operations of battery manufacturing will continue in the same manner after being acquired by Mavrix1.</span></p><p style=\"margin:0;\">·       Please clarify any shared locations, facilities, or requipment.</p><p style=\"margin:0;\"><span style=\"color:hsl(0,89%,46%);\">All employees will work from the same location in Tampa, FL.  Lithium Battery Company is currently leasing the facility at 3900 W. Coachman Avenue, Tampa, FL. 33611.</span></p><p style=\"margin:0;\">·       Please clarify the common ownership.</p><p style=\"margin:0;\"><span style=\"background-color:hsl(0,75%,60%);\"><i>*Please help.</i></span></p><p style=\"margin:0;\">·       Why is their loss history not available for this review?</p><p style=\"margin:0;\"><span style=\"background-color:hsl(0,75%,60%);\"><i>*Please help.</i></span></p><p style=\"margin:0;\">8.     The Risk doc filed indicates sub and 1099 use. Please clarify the % of their operations addressed by outsourced labor.</p><p style=\"margin:0;\"><span style=\"color:hsl(0,89%,46%);\">15%</span></p><p style=\"margin:0;\">·       Does our prospect collect and track WC COIs for all outsourced labor?</p><p style=\"margin:0;\"><span style=\"color:hsl(0,89%,46%);\">Yes this would be a practice.  However, there has been no outsourced labor up to this point.</span></p><p style=\"margin:0;\">9.     What types of metals are used in the manufacturing process?</p><p style=\"margin:0;\"><span style=\"color:hsl(0,89%,46%);\">Aluminum, Steel, Stainless Steel</span></p><p style=\"margin:0;\">·       What % of their work requires the buffing, grinding, and polishing of aluminum?</p><p style=\"margin:0;\"><span style=\"color:hsl(0,89%,46%);\">There will be no buffing, polishing, or grinding at this time.</span></p><p style=\"margin:0;\">·       What controls are in place to address explosive dust accumulation?</p><p style=\"margin:0;\"><span style=\"color:hsl(0,89%,46%);\">There will be no explosive dust accumulation at this facility.</span></p><p style=\"margin:0;\">10. Are all production lines and storage chambers enclosed and interted with argon or helium gas to reduce the changes of metal dust explosion?</p><p style=\"margin:0;\"><span style=\"color:hsl(0,89%,46%);\">There is no chance of a metal dust explosion at this site. </span></p><p style=\"margin:0;\">11. Please clarify if we have the address correct in our systems as this looks like a residential area/space?</p><p style=\"margin:0;\"><span style=\"color:hsl(0,89%,46%);\">Yes, the address is correct.  1767 Lakewood Ranch Boulevard #290, Lakewood Ranch, FL  34211.</span></p></blockquote></div><p style=\"margin:0;\"><br><br> </p>\r\n</body></html>','> Good Morning -\r\n>  \r\n> ADP\'s underwriting risk team is asking several question as part of\r\n> preparing a Workers\' Compensation quote for us.  I worked with Tanner to\r\n> complete as much as possible.  Can you review to confirm the details to\r\n> the answers are correct as well as revise/add information where you feel\r\n> appropriate?\r\n>  \r\n> Let me know if you have questions.  Included Brian for his awareness\r\n> ahead of sending this information to ADP as one or both of you may\r\n> determine revisions due to confidentiality or call out or question the\r\n> purpose of certain information that is requested.\r\n>  \r\n> Thank you,\r\n> Leslie\r\n>  \r\n>  \r\n> 1.     This looks like a new entity formation. Is there any current\r\n> operations? Are ees actively working right now?\r\n> Yes, the Mavrix1 entity is new. The initial 17 employees have been\r\n> identified but not yet been formally hired as employees.  We are\r\n> currently awaiting funding before formally moving forward with\r\n> operations.\r\n> One separate organization (6 of 17 employees) is currently being\r\n> acquired by Mavrix1.  The company is called Lithium Battery Company, and\r\n> their operations are currently active.\r\n> 2.     Is this business starting as a spin off from another entity?\r\nIf\r\n> yes, what entity are they spinning away from and why?\r\n> The Mavrix1 Management, LLC is not a spin off.\r\n> 3.     There is one ee assigned to 3642 Battery manufacturing. Please\r\n> clarify if this ee is physically separated from the rest of the\r\n> operations?\r\n> Of the six Lithium Battery Company employees, only two have hands on\r\n> responsibilities with lithium batteries.  The CEO, Nathan Staron, who is\r\n> assigned to 3642, and Kevin Eells, who is assigned to 9516.  If more\r\n> appropriate, we can revise Kevin Eells from 9516 to 3642.\r\n> Jarrett Brownfield, Jordan Wroblewski, Tanner Hance, and Nicholas Powell\r\n> have Sales and Administrative roles within the company.\r\n> 4.     DOO seems to indicate only mfg ops. Please clarify if our\r\n> prospect will be doing any type of drone flying/piloting for others.\r\n> Only manufacturing operations at this time.  Yes, eventually there will\r\n> be testing and training on-site for device flying/piloting the UAV\r\n> equipment manufactured by Mavrix1.\r\n> 5.     Will our prospect be manufacturing drones/ UAVs as a whole\r\n> device? Or just components that will be added to others drone/UAV\r\n> devices?  If yes, what is the size and weight of these?\r\n> The initial manufacturing will be battery manufacturing.  The business\r\n> plan eventually includes manufacturing drones/UAV\'s as whole devices.\r\n> 6.     It looks like there is at least one ee with\r\ninstallation/service\r\n> exposure. What is this ee doing exactly? Where are they doing it? Are\r\n> they ever on a tarmac or on an aircraft? What about military bases?\r\n> Yes, one current Lithium Battery Company employee has hands-on\r\n> configuration/service of lithium batteries (Kevin Eells) that are\r\n> currently manufactured in China and shipped to the U.S.  The\r\n> manufacturing process is shifting to the U.S. and will begin operations\r\n> at the Tampa site over the next 8-10 weeks.  No employees including this\r\n> one has installation/service exposure on a tarmac, aircraft, or military\r\n> base - only at the manufacturing site in Tampa.\r\n> 7.     What is their relationship with Mavrix 1, LLC? How does this\r\n> entity and our prospect work together.\r\n> Lithium Battery Company is a manufacturer of lithium batteries that will\r\n> be used for the UAV components and devices Mavrix1 will manufacture.\r\n> ·       What % of ees interchange between these entities?\r\n> Currently, Lithium Battery Company employees are partnering with Mavrix1\r\n> on future projects and business.  Their daily operations of battery\r\n> manufacturing will continue in the same manner after being acquired by\r\n> Mavrix1.\r\n> ·       Please clarify any shared locations, facilities, or\r\nrequipment.\r\n> All employees will work from the same location in Tampa, FL.  Lithium\r\n> Battery Company is currently leasing the facility at 3900 W. Coachman\r\n> Avenue, Tampa, FL. 33611.\r\n> ·       Please clarify the common ownership.\r\n> *Please help.\r\n> ·       Why is their loss history not available for this review?\r\n> *Please help.\r\n> 8.     The Risk doc filed indicates sub and 1099 use. Please clarify\r\nthe\r\n> % of their operations addressed by outsourced labor.\r\n> 15%\r\n> ·       Does our prospect collect and track WC COIs for all\r\noutsourced\r\n> labor?\r\n> Yes this would be a practice.  However, there has been no outsourced\r\n> labor up to this point.\r\n> 9.     What types of metals are used in the manufacturing process?\r\n> Aluminum, Steel, Stainless Steel\r\n> ·       What % of their work requires the buffing, grinding, and\r\n> polishing of aluminum?\r\n> There will be no buffing, polishing, or grinding at this time.\r\n> ·       What controls are in place to address explosive dust\r\naccumulation?\r\n> There will be no explosive dust accumulation at this facility.\r\n> 10. Are all production lines and storage chambers enclosed and interted\r\n> with argon or helium gas to reduce the changes of metal dust explosion?\r\n> There is no chance of a metal dust explosion at this site. \r\n> 11. Please clarify if we have the address correct in our systems as this\r\n> looks like a residential area/space?\r\n> Yes, the address is correct.  1767 Lakewood Ranch Boulevard #290,\r\n> Lakewood Ranch, FL  34211.\r\n\r\n ',0,0,0,0,0,0,'2025-11-13 13:48:41','2025-12-09 19:31:14','2025-12-09 19:31:14','2025-12-09 19:31:14',NULL,NULL,NULL),
(957,4,'<CAJO9__ZF2NpxWRiLTH8N7xHGQJuMODsgDiEcwqDhB2+gwS8ZAA@mail.gmail.com>',NULL,NULL,'Fwd: Maddox transformer quote Q208098-3, Q208098-4','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Hello Gents,</div><div><br></div><div>Wanted to share an option for step down transformers.  </div><div><br></div><div>I&#39;ve shared our layout and name-plates with the company&#39;s engineering team.  This is what they suggested.  </div><div><br></div><div>Please see below and attached.  </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <span dir=\"auto\">&lt;<a href=\"mailto:valentin@maddox.com\">valentin@maddox.com</a>&gt;</span><br>Date: Thu, Nov 13, 2025 at 10:31 AM<br>Subject: Maddox transformer quote Q208098-3, Q208098-4<br>To: Jordan Wroblewski &lt;<a href=\"mailto:Jordan@lithiumbatterycompany.com\">Jordan@lithiumbatterycompany.com</a>&gt;<br></div><br><br><div><div><div><div><div><font face=\"Arial, sans-serif\" style=\"line-height:20px\"><div><font style=\"line-height:20px\"><div><div><font style=\"line-height:20px\" face=\"verdana\">Jordan,<div><br></div><div><span style=\"font-weight:normal\"><p style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\">Attached is the transformer quote we talked about.</p><p style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\"><br></p><p style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\">Q208098-3 - NEW - $37,932.50</p><p style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\">Q208098-4 - USED - $29,852.00</p><br><p style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\">I’ll call you in a moment to review it together.</p></span></div></font></div></div></font></div></font></div></div></div><br><div><span style=\"color:rgb(34,34,34);font-size:small;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400\">--</span><br><div dir=\"ltr\" style=\"color:rgb(34,34,34);font-size:small;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400\"> <table width=\"470\" style=\"font-size:small;width:470px\"><tbody><tr><td style=\"width:63px;padding-right:10px\"><a href=\"https://b949d4f4-01b4-41f6-90b5-2b2b029cbfa0.pipedrive.email/c/g433gq8e45/xyoolwjm3y/vygmlv78ly/0?redirectUrl=http%3A%2F%2Fwww.maddoxtransformer.com%2F%3Futm_source%3Demail_signature%26utm_medium%3Demail%26utm_campaign%3DEmail_Signature_Logo%26utm_content%3DSignature_Logo&amp;hash=hGGzCoh0iFLCIl46c-b8Bo5C_PNEWdPOt-gSXSMH0sw\" style=\"color:rgb(17,85,204)\" rel=\"noopener noreferrer\" alt=\"linkto:http://www.maddoxtransformer.com/?utm_source=email_signature&amp;utm_medium=email&amp;utm_campaign=Email_Signature_Logo&amp;utm_content=Signature_Logo\" target=\"_blank\"><img alt=\"Maddox\" height=\"70\" src=\"https://storage.googleapis.com/signaturesatori/customer-C01e6b1qz/images/ZDkas.png\" width=\"70\" style=\"border-width:initial;border-style:none\"></a></td><td style=\"border-right:1px solid rgb(51,51,51);width:7px\"> </td><td style=\"padding-right:10px;padding-left:10px;width:380px\"><div style=\"margin-bottom:5px\"><table width=\"470\" style=\"width:415px;margin-top:5px\"><tbody><tr><td style=\"width:403px\"><span><span style=\"color:rgb(0,0,0)\"><strong><strong>Valentin</strong></strong></span><span style=\"color:rgb(252,130,77)\"><span style=\"font-stretch:normal\"><b> </b></span></span><span style=\"color:rgb(0,0,0)\"><strong><strong>Morar</strong></strong></span></span> </td></tr><tr><td style=\"width:403px\"><span style=\"color:rgb(127,140,141)\">Sales Representative </span>|<span style=\"color:rgb(127,140,141)\"> Maddox Industrial Transformer</span></td></tr><tr><td style=\"width:403px\"><span><span style=\"color:rgb(127,140,141)\">Phone:</span><span style=\"color:rgb(246,94,30)\"> </span></span>(360) 360-5558</td></tr><tr><td style=\"width:403px\"><span><span style=\"color:rgb(246,94,30)\"><a href=\"https://b949d4f4-01b4-41f6-90b5-2b2b029cbfa0.pipedrive.email/c/g433gq8e45/xyoolwjm3y/vygmlv78ly/1?redirectUrl=https%3A%2F%2Fwww.linkedin.com%2Fcompany%2Fmaddox-industrial-transformer%2F&amp;hash=6j6L6ZsUZl7uFkE5C7Epwp4ej9KWWu43HHmvWTiY9xo\" style=\"color:rgb(246,94,30)\" rel=\"noopener noreferrer\" alt=\"linkto:https://www.linkedin.com/company/maddox-industrial-transformer/\" target=\"_blank\"><img alt=\"linkedin icon\" height=\"16\" src=\"https://storage.googleapis.com/signaturesatori/icons/sq/16/000000/linkedin.png\" width=\"16\" style=\"border-width:initial;border-style:none\"></a></span>  <a href=\"https://b949d4f4-01b4-41f6-90b5-2b2b029cbfa0.pipedrive.email/c/g433gq8e45/xyoolwjm3y/vygmlv78ly/2?redirectUrl=https%3A%2F%2Fwww.youtube.com%2Fchannel%2FUCsIbkb-vYPfwv4Bft3nJcyA&amp;hash=71v-5UKemobnx5DGEEjOOJWPQfBBdGeKmHUXFGNcH8I\" style=\"color:rgb(17,85,204)\" rel=\"noopener noreferrer\" alt=\"linkto:https://www.youtube.com/channel/UCsIbkb-vYPfwv4Bft3nJcyA\" target=\"_blank\"><img alt=\"youtube icon\" height=\"16\" src=\"https://storage.googleapis.com/signaturesatori/icons/sq/16/000000/youtube.png\" width=\"16\" style=\"border-width:initial;border-style:none\"></a></span></td></tr></tbody></table></div></td></tr></tbody></table><br><a href=\"https://b949d4f4-01b4-41f6-90b5-2b2b029cbfa0.pipedrive.email/c/g433gq8e45/xyoolwjm3y/vygmlv78ly/3?redirectUrl=https%3A%2F%2Fg.page%2Fr%2FCX_zAm2M4ZhrEB0%2Freview&amp;hash=jMY9gVweIj0S_4OLduC2xpzKKBGEFGe_QLatIEWbG2I\" style=\"color:rgb(17,85,204)\" rel=\"noopener noreferrer\" alt=\"linkto:https://g.page/r/CX_zAm2M4ZhrEB0/review\" target=\"_blank\"><img alt=\"Google Review\" height=\"44\" src=\"https://storage.googleapis.com/signaturesatori/customer-C01e6b1qz/images/XcfN0.jpg\" width=\"200\" style=\"border-width:initial;border-style:none\"></a><br> <br><br></div><br></div></div></div><img src=\"https://b949d4f4-01b4-41f6-90b5-2b2b029cbfa0.pipedrive.email/o/g433gq8e45/xyoolwjm3y/vygmlv78ly?cache_buster=1763047874493\" width=\"1\" height=\"1\" alt=\"\" style=\"display:none;width:1;height:1;border:0\">\r\n</div></div>','Hello Gents,\r\n\r\nWanted to share an option for step down transformers.\r\n\r\nI\'ve shared our layout and name-plates with the company\'s engineering\r\nteam.  This is what they suggested.\r\n\r\nPlease see below and attached.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: <valentin@maddox.com>\r\nDate: Thu, Nov 13, 2025 at 10:31 AM\r\nSubject: Maddox transformer quote Q208098-3, Q208098-4\r\nTo: Jordan Wroblewski <Jordan@lithiumbatterycompany.com>\r\n\r\n\r\nJordan,\r\n\r\nAttached is the transformer quote we talked about.\r\n\r\n\r\nQ208098-3 - NEW - $37,932.50\r\n\r\nQ208098-4 - USED - $29,852.00\r\n\r\nI’ll call you in a moment to review it together.\r\n\r\n--\r\n\r\n[image: Maddox]\r\n<https://b949d4f4-01b4-41f6-90b5-2b2b029cbfa0.pipedrive.email/c/g433gq8e45/xyoolwjm3y/vygmlv78ly/0?redirectUrl=http%3A%2F%2Fwww.maddoxtransformer.com%2F%3Futm_source%3Demail_signature%26utm_medium%3Demail%26utm_campaign%3DEmail_Signature_Logo%26utm_content%3DSignature_Logo&hash=hGGzCoh0iFLCIl46c-b8Bo5C_PNEWdPOt-gSXSMH0sw>\r\n\r\n*Valentin* *Morar*\r\nSales Representative | Maddox Industrial Transformer\r\nPhone: (360) 360-5558\r\n[image: linkedin icon]\r\n<https://b949d4f4-01b4-41f6-90b5-2b2b029cbfa0.pipedrive.email/c/g433gq8e45/xyoolwjm3y/vygmlv78ly/1?redirectUrl=https%3A%2F%2Fwww.linkedin.com%2Fcompany%2Fmaddox-industrial-transformer%2F&hash=6j6L6ZsUZl7uFkE5C7Epwp4ej9KWWu43HHmvWTiY9xo>\r\n  [image: youtube icon]\r\n<https://b949d4f4-01b4-41f6-90b5-2b2b029cbfa0.pipedrive.email/c/g433gq8e45/xyoolwjm3y/vygmlv78ly/2?redirectUrl=https%3A%2F%2Fwww.youtube.com%2Fchannel%2FUCsIbkb-vYPfwv4Bft3nJcyA&hash=71v-5UKemobnx5DGEEjOOJWPQfBBdGeKmHUXFGNcH8I>\r\n\r\n[image: Google Review]\r\n<https://b949d4f4-01b4-41f6-90b5-2b2b029cbfa0.pipedrive.email/c/g433gq8e45/xyoolwjm3y/vygmlv78ly/3?redirectUrl=https%3A%2F%2Fg.page%2Fr%2FCX_zAm2M4ZhrEB0%2Freview&hash=jMY9gVweIj0S_4OLduC2xpzKKBGEFGe_QLatIEWbG2I>',0,0,0,0,0,0,'2025-11-13 15:41:04','2025-12-09 19:31:19','2025-12-09 19:31:19','2025-12-09 19:31:19',NULL,NULL,NULL),
(958,4,' <DM5SPR01MB040009BA7FA8A10D84DA220ADCCDA@DM5SPR01MB0400.namprd08.prod.outlook.com>',NULL,NULL,'Carlos with Flow Water Jets','cdiaz@flowcorp.com','Carlos Diaz','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"margin-top: 1em; margin-bottom: 1em; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nHi Rick</div>\r\n<div style=\"margin-top: 1em; margin-bottom: 1em; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nHope all is well. I wanted to briefly check in to see if there’s anything you need from my side, and whether there are any updates on the waterjet&nbsp;inquiry. We’re just trying to get a sense of year-end system orders so we can coordinate accordingly.</div>\r\n<div style=\"margin-top: 1em; margin-bottom: 1em; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nPlease don’t hesitate to reach out if there’s anything else we can do to support you.</div>\r\n<div style=\"margin-top: 1em; margin-bottom: 1em; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nBest regards</div>\r\n<div style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: rgb(49, 132, 155);\" class=\"elementToProof\">\r\n<b>Carlos R. Diaz</b></div>\r\n<div class=\"elementToProof\" id=\"Signature\">\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\"><b>Application Specialist</b></span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\">Flow International Corporation</span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\">Atlanta, GA. 30064</span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\">C.943.253.7285</span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: rgb(5, 99, 193);\"><u><a style=\"color: rgb(5, 99, 193); margin-top: 0px; margin-bottom: 0px;\" class=\"x_OWAAutoLink\" id=\"OWA740a10af-9a08-fc8b-b7e4-cd421b2f8244\" href=\"http://www.flowwaterjet.com/\">www.FlowWaterjet.com</a></u></span><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\">&nbsp;</span></p>\r\n<div style=\"font-family: &quot;Franklin Gothic Medium&quot;, sans-serif; font-size: 8.5pt; color: gray;\" class=\"elementToProof\">\r\n<span style=\"background-color: rgb(255, 255, 255);\"><br>\r\n</span></div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: &quot;Calibri Light&quot;, &quot;Helvetica Light&quot;, sans-serif; font-size: 14pt; color: rgb(23, 78, 134);\" class=\"elementToProof\">\r\n<b><br>\r\n</b></div>\r\n<div style=\"font-family: &quot;Segoe UI Light&quot;; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<span style=\"background-color: rgb(255, 255, 255);\"><b><br>\r\n</b></span></div>\r\n<div style=\"font-family: &quot;Segoe UI Light&quot;; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<span style=\"background-color: rgb(255, 255, 255);\"><br>\r\n</span></div>\r\n<div style=\"font-family: &quot;Segoe UI Light&quot;; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','Hi Rick\r\nHope all is well. I wanted to briefly check in to see if there’s anything you need from my side, and whether there are any updates on the waterjet inquiry. We’re just trying to get a sense of year-end system orders so we can coordinate accordingly.\r\nPlease don’t hesitate to reach out if there’s anything else we can do to support you.\r\nBest regards\r\nCarlos R. Diaz\r\n\r\nApplication Specialist\r\n\r\nFlow International Corporation\r\n\r\nAtlanta, GA. 30064\r\n\r\nC.943.253.7285\r\n\r\nwww.FlowWaterjet.com<http://www.flowwaterjet.com/>',0,0,0,0,0,0,'2025-11-13 15:51:02','2025-12-09 19:31:20','2025-12-09 19:31:20','2025-12-09 19:31:20',NULL,NULL,NULL),
(959,4,'<20251113165946.Horde.GdgkhuchV8ao2qtV-VTjsh_@mavrix1.aponte.to>',NULL,NULL,'Foundational HR Frameworks for ERP','leslie@mavrix.one','Leslie Staron','<!DOCTYPE html>\r\n<html><meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\"><body>\r\n<p style=\"margin:0;\">Rick, thanks for catching up today.  The Strategic Talent Framework document includes data on roles within the entire organization.  The fields can be used to start basic employee data in the ERP; however, much of it is subject to change once you, Brian and Nathan review.</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\">The Job Architecture document is what I am designing for Manufacturing, Engineering and HQ roles as it relates to career paths and building out a \"skills taxonomy.\"  The Manufacturing group is has the most detail so far.</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\">If you have any questions, let me know.</p><p style=\"margin:0;\">Leslie</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\"> </p><p style=\"margin:0;\"> </p><p style=\"margin:0;\"> </p><p style=\"margin:0;\"> </p><p style=\"margin:0;\"> </p>\r\n</body></html>','Rick, thanks for catching up today.  The Strategic Talent Framework\r\ndocument includes data on roles within the entire organization.  The\r\nfields can be used to start basic employee data in the ERP; however, much\r\nof it is subject to change once you, Brian and Nathan review.\r\n \r\nThe Job Architecture document is what I am designing for Manufacturing,\r\nEngineering and HQ roles as it relates to career paths and building out a\r\n\"skills taxonomy.\"  The Manufacturing group is has the most detail so far.\r\n \r\nIf you have any questions, let me know.\r\nLeslie\r\n \r\n \r\n \r\n \r\n \r\n ',0,0,0,0,0,0,'2025-11-13 16:59:46','2025-12-09 19:31:20','2025-12-09 19:31:20','2025-12-09 19:31:20',NULL,NULL,NULL),
(960,4,'<20251113171149.Horde.H6ASlvUtoGG43avamf3CC6d@mavrix1.aponte.to>',NULL,NULL,'ERP Development Module Buildout Info','leslie@mavrix.one','Leslie Staron','<!DOCTYPE html>\r\n<html><meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\"><body>\r\n<p style=\"margin:0;\">Rick, the below (This is a summary even though it may seem long!) highlights what I\'m looking to do as it relates to the ERP\'s Development module.  ***The attachment includes the data inputs/outputs to build the Skills-First Architecture.  Let me know your thoughts.</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\"><strong>1. The Big Shift in Modern Organizations</strong></p><p style=\"margin:0;\">Companies are moving from <strong>process-first HR</strong> to <strong>people + purpose</strong> as the core driver of business success.</p><p style=\"margin:0;\">The new mindset:</p><p style=\"margin:0;\"><strong>Workforce = Strategic Asset</strong>, not cost center.</p><p style=\"margin:0;\">Why this matters:</p><ul style=\"list-style-type:disc;\"><li><p style=\"margin:0;\">Retention, skills scarcity, and workforce agility are now <strong>top 3 barriers</strong> to strategy execution.</p></li><li><p style=\"margin:0;\">HR is expected to operate like a board-level strategic function.</p></li><li><p style=\"margin:0;\">Competitive advantage increasingly comes from <strong>skills, internal mobility, and rapid capability building</strong>—not just hiring.</p></li></ul><p style=\"margin:0;\"> </p><p style=\"margin:0;\"><strong>2. What Leading Companies Are Doing</strong></p><p style=\"margin:0;\"> </p><p style=\"margin:0;\"><strong>A. Skills-First Architecture</strong></p><p style=\"margin:0;\">Organizations are:</p><ul style=\"list-style-type:disc;\"><li><p style=\"margin:0;\">Building enterprise-wide <strong>skills taxonomies</strong> (not generic job descriptions).</p></li><li><p style=\"margin:0;\">Tagging every role + employee by skills.</p></li><li><p style=\"margin:0;\">Using analytics to see skill gaps, adjacencies, and redeployment opportunities.</p></li></ul><p style=\"margin:0;\"><strong>What this looks like at Mavrix1:</strong></p><p style=\"margin:0;\">We should define foundational + future capabilities (manufacturing, AI-enabled production, battery reliability, supply-chain resilience) and build a <strong>skills matrix</strong> and capability heatmaps.</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\"><strong>B. Redesigned Career Paths &amp; Internal Mobility</strong></p><p style=\"margin:0;\">The new standard is <strong>career lattices</strong>: lateral moves, stretch assignments, project roles, and skill-based advancement.</p><p style=\"margin:0;\">Leading companies use <strong>internal talent marketplaces</strong> that match employees to roles or development paths.</p><p style=\"margin:0;\"><strong>At Mavrix1:</strong></p><p style=\"margin:0;\">We need transparent career journeys (entry → technician → specialist → lead → architect) and an internal mobility model that supports scaling from <strong>10 → 150+ employees</strong>.</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\"><strong>C. Linking Workforce Investment to Business Growth</strong></p><p style=\"margin:0;\">Modern organizations evaluate workforce in terms of:</p><ul style=\"list-style-type:disc;\"><li><p style=\"margin:0;\">Capability readiness</p></li><li><p style=\"margin:0;\">Internal fill rates</p></li><li><p style=\"margin:0;\">Training ROI</p></li><li><p style=\"margin:0;\">Skills gap closure</p></li></ul><p style=\"margin:0;\">They ask:</p><p style=\"margin:0;\"><strong>“What capabilities do we need to hit our business targets?”</strong></p><p style=\"margin:0;\">not</p><p style=\"margin:0;\"><strong>“How many people do we need?”</strong></p><p style=\"margin:0;\"><strong>For Mavrix1:</strong></p><p style=\"margin:0;\">We align hiring, training, and mobility to production-line scale-up and supply-chain demands. Workforce planning becomes capability planning.</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\"><strong>D. Technology as an Enabler (Not the Strategy) **Mavrix1 ERP Development Module**</strong></p><p style=\"margin:0;\">Organizations are adopting:</p><ul style=\"list-style-type:disc;\"><li><p style=\"margin:0;\">Skills engines</p></li><li><p style=\"margin:0;\">Internal mobility portals</p></li><li><p style=\"margin:0;\">Learning ecosystems</p></li><li><p style=\"margin:0;\">Predictive people analytics</p></li></ul><p style=\"margin:0;\">But the mindset is <strong>AI-first, human-led</strong>.</p><p style=\"margin:0;\"><strong>For Mavrix1:</strong></p><p style=\"margin:0;\">Evaluate whether our ERP/HRIS can support skills tagging, career mobility, and readiness dashboards—or whether a supplemental skills platform is needed.</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\"><strong>3. What an ERP HR Module Should Become</strong></p><p style=\"margin:0;\">Instead of just managing payroll and positions, a modern ERP should function as your <strong>talent intelligence backbone</strong>.</p><p style=\"margin:0;\">Key components:</p><ol style=\"list-style-type:decimal;\"><li><p style=\"margin:0;\"><strong>Skills taxonomy engine</strong></p></li><li><p style=\"margin:0;\"><strong>Dynamic job architecture &amp; career framework</strong></p></li><li><p style=\"margin:0;\"><strong>Learning tied to capability development</strong></p></li><li><p style=\"margin:0;\"><strong>Internal mobility marketplace</strong></p></li><li><p style=\"margin:0;\"><strong>Workforce planning + analytics dashboards</strong></p></li><li><p style=\"margin:0;\"><strong>Performance &amp; succession linked to skills</strong></p></li></ol><p style=\"margin:0;\">Outcome:</p><p style=\"margin:0;\">A live “<strong>skills passport</strong>” for every employee, constantly updated through learning, performance, and project data.</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\"><strong>4. Roadmap for Mavrix1 (What We Can Implement Immediately)</strong></p><ol style=\"list-style-type:decimal;\"><li><p style=\"margin:0;\"><strong>Define 3–5 year business strategy → capability map.</strong><br><strong>What skills/future roles enable our growth?</strong></p></li><li><p style=\"margin:0;\"><strong>Build the Mavrix1 skills architecture.</strong><br><strong>Foundation → growth → future capabilities.</strong></p></li><li><p style=\"margin:0;\"><strong>Design mobility &amp; career pathways.</strong><br><strong>Especially critical given veteran talent and advanced manufacturing mix.</strong></p></li><li><p style=\"margin:0;\"><strong>Create dashboards that tie people strategy to business outcomes.</strong><br><strong>(time-to-readiness, skills-gap index, internal fill rate, training ROI)</strong></p></li><li><p style=\"margin:0;\"><strong>Leverage ERP/HRIS to automate the backbone.</strong><br><strong>Skills profiles, learning integration, mobility suggestions.</strong></p></li><li><p style=\"margin:0;\"><strong>Shift HR’s operating model.</strong><br><strong>HR = capability architect + growth partner—not transactional support.</strong></p></li></ol><p style=\"margin:0;\"> </p><p style=\"margin:0;\"><strong>5. Why This Matters Most for Mavrix1</strong></p><ul style=\"list-style-type:disc;\"><li><p style=\"margin:0;\"><strong>Aggressive growth curve</strong>: We can’t hire fast enough from the market—internal development is essential.</p></li><li><p style=\"margin:0;\"><strong>Advanced manufacturing + defense tech</strong>: Requires hybrid skills not easily available.</p></li><li><p style=\"margin:0;\"><strong>Veteran-focused workforce</strong>: High potential for upskilling and internal mobility pathways.</p></li><li><p style=\"margin:0;\"><strong>U.S. reshoring &amp; supply-chain resilience</strong>: Demand for new capabilities that don’t exist in traditional roles.</p></li><li><p style=\"margin:0;\"><strong>Competitive advantage</strong>: Those who build capabilities faster win.</p></li></ul><p style=\"margin:0;\">In short:</p><p style=\"margin:0;\"><strong>Our people strategy must mature at the same pace as our business strategy. Without a skills-first, mobility-driven, technology-enabled HR architecture—scaling to 150+ and beyond will be slower, costlier, and riskier.</strong></p><p style=\"margin:0;\"> </p><p style=\"margin:0;\"><strong>6. The Takeaway</strong></p><p style=\"margin:0;\">If we modernize the HR/People function to focus on <strong>capabilities, mobility, and growth alignment</strong>, we will:</p><ul style=\"list-style-type:disc;\"><li><p style=\"margin:0;\">Scale faster</p></li><li><p style=\"margin:0;\">Reduce hiring costs</p></li><li><p style=\"margin:0;\">Build internal bench strength</p></li><li><p style=\"margin:0;\">Increase retention</p></li><li><p style=\"margin:0;\">Maintain competitive advantage in a tight talent market</p></li><li><p style=\"margin:0;\">Support advanced manufacturing and defense innovation</p></li></ul><p style=\"margin:0;\"> </p><p style=\"margin:0;\">This is not an HR project—</p><p style=\"margin:0;\"><strong>It is a business execution strategy with HR as the architect.</strong></p>\r\n</body></html>','Rick, the below (This is a summary even though it may seem long!)\r\nhighlights what I\'m looking to do as it relates to the ERP\'s Development\r\nmodule.  ***The attachment includes the data inputs/outputs to build the\r\nSkills-First Architecture.  Let me know your thoughts.\r\n \r\n1. The Big Shift in Modern Organizations\r\nCompanies are moving from process-first HR to people + purpose as the\r\ncore driver of business success.\r\nThe new mindset:\r\nWorkforce = Strategic Asset, not cost center.\r\nWhy this matters:\r\n\r\n  * Retention, skills scarcity, and workforce agility are now top 3\r\nbarriers to strategy execution.\r\n\r\n  * HR is expected to operate like a board-level strategic function.\r\n\r\n  * Competitive advantage increasingly comes from skills, internal\r\nmobility, and rapid capability building—not just hiring.\r\n\r\n \r\n2. What Leading Companies Are Doing\r\n \r\nA. Skills-First Architecture\r\nOrganizations are:\r\n\r\n  * Building enterprise-wide skills taxonomies (not generic job\r\ndescriptions).\r\n\r\n  * Tagging every role + employee by skills.\r\n\r\n  * Using analytics to see skill gaps, adjacencies, and redeployment\r\nopportunities.\r\n\r\nWhat this looks like at Mavrix1:\r\nWe should define foundational + future capabilities (manufacturing,\r\nAI-enabled production, battery reliability, supply-chain resilience) and\r\nbuild a skills matrix and capability heatmaps.\r\n \r\nB. Redesigned Career Paths & Internal Mobility\r\nThe new standard is career lattices: lateral moves, stretch assignments,\r\nproject roles, and skill-based advancement.\r\nLeading companies use internal talent marketplaces that match employees\r\nto roles or development paths.\r\nAt Mavrix1:\r\nWe need transparent career journeys (entry → technician → specialist\r\n→ lead → architect) and an internal mobility model that supports\r\nscaling from 10 → 150+ employees.\r\n \r\nC. Linking Workforce Investment to Business Growth\r\nModern organizations evaluate workforce in terms of:\r\n\r\n  * Capability readiness\r\n\r\n  * Internal fill rates\r\n\r\n  * Training ROI\r\n\r\n  * Skills gap closure\r\n\r\nThey ask:\r\n“What capabilities do we need to hit our business targets?”\r\nnot\r\n“How many people do we need?”\r\nFor Mavrix1:\r\nWe align hiring, training, and mobility to production-line scale-up and\r\nsupply-chain demands. Workforce planning becomes capability planning.\r\n \r\nD. Technology as an Enabler (Not the Strategy) **Mavrix1 ERP Development\r\nModule**\r\nOrganizations are adopting:\r\n\r\n  * Skills engines\r\n\r\n  * Internal mobility portals\r\n\r\n  * Learning ecosystems\r\n\r\n  * Predictive people analytics\r\n\r\nBut the mindset is AI-first, human-led.\r\nFor Mavrix1:\r\nEvaluate whether our ERP/HRIS can support skills tagging, career mobility,\r\nand readiness dashboards—or whether a supplemental skills platform is\r\nneeded.\r\n \r\n3. What an ERP HR Module Should Become\r\nInstead of just managing payroll and positions, a modern ERP should\r\nfunction as your talent intelligence backbone.\r\nKey components:\r\n\r\n  * Skills taxonomy engine\r\n\r\n  * Dynamic job architecture & career framework\r\n\r\n  * Learning tied to capability development\r\n\r\n  * Internal mobility marketplace\r\n\r\n  * Workforce planning + analytics dashboards\r\n\r\n  * Performance & succession linked to skills\r\n\r\nOutcome:\r\nA live “skills passport” for every employee, constantly updated through\r\nlearning, performance, and project data.\r\n \r\n4. Roadmap for Mavrix1 (What We Can Implement Immediately)\r\n\r\n  * Define 3–5 year business strategy → capability map.What\r\nskills/future roles enable our growth?\r\n\r\n  * Build the Mavrix1 skills architecture.Foundation → growth → future\r\ncapabilities.\r\n\r\n  * Design mobility & career pathways.Especially critical given veteran\r\ntalent and advanced manufacturing mix.\r\n\r\n  * Create dashboards that tie people strategy to business\r\noutcomes.(time-to-readiness, skills-gap index, internal fill rate, training\r\nROI)\r\n\r\n  * Leverage ERP/HRIS to automate the backbone.Skills profiles, learning\r\nintegration, mobility suggestions.\r\n\r\n  * Shift HR’s operating model.HR = capability architect + growth\r\npartner—not transactional support.\r\n\r\n \r\n5. Why This Matters Most for Mavrix1\r\n\r\n  * Aggressive growth curve: We can’t hire fast enough from the\r\nmarket—internal development is essential.\r\n\r\n  * Advanced manufacturing + defense tech: Requires hybrid skills not\r\neasily available.\r\n\r\n  * Veteran-focused workforce: High potential for upskilling and internal\r\nmobility pathways.\r\n\r\n  * U.S. reshoring & supply-chain resilience: Demand for new capabilities\r\nthat don’t exist in traditional roles.\r\n\r\n  * Competitive advantage: Those who build capabilities faster win.\r\n\r\nIn short:\r\nOur people strategy must mature at the same pace as our business strategy.\r\nWithout a skills-first, mobility-driven, technology-enabled HR\r\narchitecture—scaling to 150+ and beyond will be slower, costlier, and\r\nriskier.\r\n \r\n6. The Takeaway\r\nIf we modernize the HR/People function to focus on capabilities, mobility,\r\nand growth alignment, we will:\r\n\r\n  * Scale faster\r\n\r\n  * Reduce hiring costs\r\n\r\n  * Build internal bench strength\r\n\r\n  * Increase retention\r\n\r\n  * Maintain competitive advantage in a tight talent market\r\n\r\n  * Support advanced manufacturing and defense innovation\r\n\r\n \r\nThis is not an HR project—\r\nIt is a business execution strategy with HR as the architect.',0,0,0,0,0,0,'2025-11-13 17:11:49','2025-12-09 19:31:20','2025-12-09 19:31:20','2025-12-09 19:31:20',NULL,NULL,NULL),
(961,4,' <BN0P110MB11615EB2FB9BD7A544EFB784CCCDA@BN0P110MB1161.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'RE: Call with Cellec','chris@cellectech.com','Christopher Schauerman','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle19\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Hi Rick, <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">I should have some time next week if you want to meet up. I can come over to RIT if that works for you.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Best,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Chris<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">--<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Christopher Schauerman, PhD<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">President/CEO<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Cellec Technologies, Inc.&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">245 Summit Point Dr<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Henrietta, NY 14467<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Office:&nbsp;(585) 280-9434<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Business: (585) 454-9166<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Cell: (814) 392-3661<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, November 5, 2025 5:24 PM<br>\r\n<b>To:</b> Christopher Schauerman &lt;chris@cellectech.com&gt;<br>\r\n<b>Subject:</b> Re: Call with Cellec<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Chris,<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Just trying to connect again.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Is there a chance we could connect in person next week?<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">At RIT or off campus...Thanks!<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"Picture_x0020_1\" src=\"cid:image001.png@01DC549D.505BE2B0\"></span><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://mavrix1.com/\">https://mavrix1.com</a><o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">CONFIDENTIALITY NOTICE<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the\r\n use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients\r\n are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"airmailon\">On October 30, 2025 at 10:14:28<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>AM, Christopher Schauerman (<a href=\"mailto:chris@cellectech.com\">chris@cellectech.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Hi Rick,\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Good chatting with you on the phone today. Let me know if tomorrow at 3:00pm works for everyone. Also, can you let me know who will be on the meeting.</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Best,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Chris</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">--</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Christopher Schauerman, PhD</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">President/CEO</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Cellec Technologies, Inc.&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">245 Summit Point Dr</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Henrietta, NY 14467</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Office:&nbsp;(585) 280-9434</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Business: (585) 454-9166</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Cell: (814) 392-3661</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Hi Rick,\r\n\r\nI should have some time next week if you want to meet up. I can come over to RIT if that works for you.\r\n\r\n\r\n\r\nBest,\r\nChris\r\n--\r\n\r\nChristopher Schauerman, PhD\r\nPresident/CEO\r\n\r\nCellec Technologies, Inc.\r\n245 Summit Point Dr\r\nHenrietta, NY 14467\r\nOffice: (585) 280-9434\r\nBusiness: (585) 454-9166\r\nCell: (814) 392-3661\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Wednesday, November 5, 2025 5:24 PM\r\nTo: Christopher Schauerman <chris@cellectech.com>\r\nSubject: Re: Call with Cellec\r\n\r\nHi Chris,\r\nJust trying to connect again.\r\nIs there a chance we could connect in person next week?\r\nAt RIT or off campus...Thanks!\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:image001.png@01DC549D.505BE2B0]\r\nhttps://mavrix1.com<https://mavrix1.com/>\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\nOn October 30, 2025 at 10:14:28 AM, Christopher Schauerman (chris@cellectech.com<mailto:chris@cellectech.com>) wrote:\r\nHi Rick,\r\n\r\nGood chatting with you on the phone today. Let me know if tomorrow at 3:00pm works for everyone. Also, can you let me know who will be on the meeting.\r\n\r\n\r\n\r\nBest,\r\nChris\r\n--\r\n\r\nChristopher Schauerman, PhD\r\nPresident/CEO\r\n\r\nCellec Technologies, Inc.\r\n245 Summit Point Dr\r\nHenrietta, NY 14467\r\nOffice: (585) 280-9434\r\nBusiness: (585) 454-9166\r\nCell: (814) 392-3661\r\n',0,0,0,0,0,0,'2025-11-13 17:59:16','2025-12-09 19:31:21','2025-12-09 19:31:21','2025-12-09 19:31:21',NULL,NULL,NULL),
(962,4,'<CAGOCFXjbp7vDRg1QR0NMDyKTTgYz6Ob4NU966qTt__Y5d9uX5Q@mail.gmail.com>',NULL,NULL,'LBC ORGANIZATIONS','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div>','<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>',0,0,0,0,0,0,'2025-11-13 18:17:58','2025-12-09 19:31:21','2025-12-09 19:31:21','2025-12-09 19:31:21',NULL,NULL,NULL),
(963,4,'<CAGOCFXgGpssbw2__cJL4S9wCdfNbYt1PKZD3BPU00Whnt4aubw@mail.gmail.com>',NULL,NULL,'LBC-LEADS','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div>','<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>',0,0,0,0,0,0,'2025-11-13 18:18:21','2025-12-09 19:31:22','2025-12-09 19:31:22','2025-12-09 19:31:22',NULL,NULL,NULL),
(964,4,'<CAGOCFXg97M8AUrJHzaR40OBARUizNG478AEbRzN79-+8TU6WJg@mail.gmail.com>',NULL,NULL,'LBC DEALS','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div>','<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>',0,0,0,0,0,0,'2025-11-13 18:18:42','2025-12-09 19:31:22','2025-12-09 19:31:22','2025-12-09 19:31:22',NULL,NULL,NULL),
(965,4,'<CAGOCFXj5rg1yR5YXi8ex9GQ_AACXjQQeQcS-EUkgCu6kbPEVKA@mail.gmail.com>',NULL,NULL,'LBC-NOTES','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div>','<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>',0,0,0,0,0,0,'2025-11-13 18:19:01','2025-12-09 19:31:25','2025-12-09 19:31:25','2025-12-09 19:31:25',NULL,NULL,NULL),
(966,4,'<CAGOCFXgEvDD=JR+XavaJn3kX7P0Z-M+WwmSi2wb52MjFayfWgQ@mail.gmail.com>',NULL,NULL,'LBC-FILES','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div>','<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>',0,0,0,0,0,0,'2025-11-13 18:19:29','2025-12-09 19:31:27','2025-12-09 19:31:27','2025-12-09 19:31:27',NULL,NULL,NULL),
(967,4,'<CAGOCFXhQA1-Z1WtwJndwHudEXeGZR7kYtiRkTgq6GOeQmq95og@mail.gmail.com>',NULL,NULL,'Equipment Drawing','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div><div>Hi Rick,</div><div><br></div><div>Attached are the equipment drawings for our other building that contained the asbestos.</div><div><br></div><div>We are currently getting the CAD files for the new facility at 3900 W Coachman Blvd from our architects and will send them over to you as soon as they are available.</div><div><br></div><br><div class=\"gmail_chip gmail_drive_chip\" style=\"width:386px;height:20px;max-height:20px;background-color:rgb(245,245,245);margin:6px 0px;padding:10px;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;font-size-adjust:none;font-kerning:auto;font-feature-settings:normal;font-weight:400;font-stretch:normal;font-size:14px;line-height:20px;font-family:&quot;Google Sans&quot;,sans-serif;border:1px solid rgb(221,221,221)\"><a href=\"https://drive.google.com/file/d/1faEyeDAC7Wrpxn5r-1EcwKjFqBVOBXxN/view?usp=drive_web\" target=\"_blank\" style=\"color:rgb(32,33,36);display:inline-block;max-width:356px;overflow:hidden;text-overflow:ellipsis;text-decoration-line:none;border:none\" aria-label=\"LBC-5201 S Westshore.dwg\"><img style=\"vertical-align: text-bottom; border: none; padding-right: 10px; height: 20px;\" alt=\"\" src=\"https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png\"> <span dir=\"ltr\" style=\"vertical-align:bottom;text-decoration:none\">LBC-5201 S Westshore.dwg</span></a></div></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div>','Hi Rick,\r\n\r\nAttached are the equipment drawings for our other building that contained\r\nthe asbestos.\r\n\r\nWe are currently getting the CAD files for the new facility at 3900 W\r\nCoachman Blvd from our architects and will send them over to you as soon as\r\nthey are available.\r\n\r\n\r\n LBC-5201 S Westshore.dwg\r\n<https://drive.google.com/file/d/1faEyeDAC7Wrpxn5r-1EcwKjFqBVOBXxN/view?usp=drive_web>\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>',0,0,0,0,0,0,'2025-11-13 18:42:20','2025-12-09 19:31:27','2025-12-09 19:31:27','2025-12-09 19:31:27',NULL,NULL,NULL),
(968,4,'<CAGOCFXijRT70DbHp7MdfrC25X=cqhQ8M0ws3u1P=mHVFRWQedg@mail.gmail.com>',NULL,NULL,'Re: Equipment Drawing','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Here is a link in case the sharing was turned off.    <br><br><a href=\"https://drive.google.com/file/d/1faEyeDAC7Wrpxn5r-1EcwKjFqBVOBXxN/view?usp=sharing\">https://drive.google.com/file/d/1faEyeDAC7Wrpxn5r-1EcwKjFqBVOBXxN/view?usp=sharing</a></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Nov 13, 2025 at 1:42 PM Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div><div>Hi Rick,</div><div><br></div><div>Attached are the equipment drawings for our other building that contained the asbestos.</div><div><br></div><div>We are currently getting the CAD files for the new facility at 3900 W Coachman Blvd from our architects and will send them over to you as soon as they are available.</div><div><br></div><br><div class=\"gmail_chip gmail_drive_chip\" style=\"width:386px;height:20px;max-height:20px;background-color:rgb(245,245,245);margin:6px 0px;padding:10px;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;font-size-adjust:none;font-kerning:auto;font-feature-settings:normal;font-weight:400;font-stretch:normal;font-size:14px;line-height:20px;font-family:&quot;Google Sans&quot;,sans-serif;border:1px solid rgb(221,221,221)\"><a href=\"https://drive.google.com/file/d/1faEyeDAC7Wrpxn5r-1EcwKjFqBVOBXxN/view?usp=drive_web\" style=\"color:rgb(32,33,36);display:inline-block;max-width:356px;overflow:hidden;text-overflow:ellipsis;text-decoration-line:none;border:none\" aria-label=\"LBC-5201 S Westshore.dwg\" target=\"_blank\"><img style=\"vertical-align: text-bottom; border: none; padding-right: 10px; height: 20px;\" alt=\"\" src=\"https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png\"> <span dir=\"ltr\" style=\"vertical-align:bottom;text-decoration:none\">LBC-5201 S Westshore.dwg</span></a></div></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_4254404205010193698_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div>\r\n</blockquote></div>','Here is a link in case the sharing was turned off.\r\n\r\nhttps://drive.google.com/file/d/1faEyeDAC7Wrpxn5r-1EcwKjFqBVOBXxN/view?usp=sharing\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Thu, Nov 13, 2025 at 1:42 PM Nathan Staron <\r\nNathan@lithiumbatterycompany.com> wrote:\r\n\r\n> Hi Rick,\r\n>\r\n> Attached are the equipment drawings for our other building that contained\r\n> the asbestos.\r\n>\r\n> We are currently getting the CAD files for the new facility at 3900 W\r\n> Coachman Blvd from our architects and will send them over to you as soon as\r\n> they are available.\r\n>\r\n>\r\n>  LBC-5201 S Westshore.dwg\r\n> <https://drive.google.com/file/d/1faEyeDAC7Wrpxn5r-1EcwKjFqBVOBXxN/view?usp=drive_web>\r\n>\r\n>\r\n> <https://lithiumbatterycompany.com/>\r\n> <https://www.instagram.com/lithiumbatteryco/>\r\n> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n> <https://www.facebook.com/LithiumBatteryCompany/>\r\n> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n> <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074\r\n> Phone 844-GET-LITHIUM\r\n> Nathan@lithiumbatterycompany.com\r\n> Schedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>\r\n>',0,0,0,0,0,0,'2025-11-13 18:43:12','2025-12-09 19:31:27','2025-12-09 19:31:27','2025-12-09 19:31:27',NULL,NULL,NULL),
(969,4,'<1763059590006.e957943c-0484-47f3-8149-edf7f0bfa8cb@bf06x.hubspotemail.net>',NULL,NULL,'Section 179 + Black Friday = Great Deals from Epilog Laser!','sales@epiloglaser.com','Epilog Laser Sales','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional //EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:v=\"urn:schemas-microsoft-com:vml\" lang=\"en\"><head>\r\n    <title>Section 179 + Black Friday = Great Deals from Epilog Laser!</title>\r\n    <meta property=\"og:title\" content=\"Section 179 + Black Friday = Great Deals from Epilog Laser!\">\r\n    <meta name=\"twitter:title\" content=\"Section 179 + Black Friday = Great Deals from Epilog Laser!\">\r\n    \r\n    \r\n    \r\n<meta name=\"x-apple-disable-message-reformatting\">\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\r\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <!--[if gte mso 9]>\r\n  <xml>\r\n    <o:OfficeDocumentSettings>\r\n      <o:AllowPNG/>\r\n      <o:PixelsPerInch>96</o:PixelsPerInch>\r\n    </o:OfficeDocumentSettings>\r\n    <w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\">\r\n      <w:DontUseAdvancedTypographyReadingMail/>\r\n    </w:WordDocument>\r\n  </xml>\r\n  \r\n  <style>\r\n    ul > li {\r\n      text-indent: -1em;\r\n    }\r\n  </style>\r\n<![endif]-->\r\n<!--[if mso]>\r\n<style type=\"text/css\">\r\n body, td {font-family: Arial, Helvetica, sans-serif;}\r\n .hse-body-wrapper-table {background-color: #EAF0F6;}\r\n</style>\r\n<![endif]-->\r\n<!--[if mso | IE]>\r\n  <style type=\"text/css\">\r\n    .hse-column-container { border: none !important; padding: 0 !important; }\r\n  </style>\r\n<![endif]-->\r\n    \r\n      \r\n  \r\n  \r\n    \r\n  <meta name=\"generator\" content=\"HubSpot\"><meta property=\"og:url\" content=\"http://43785732.hs-sites.com/-temporary-slug-86c8299c-6c23-4d72-8355-12069d6c0e4e\"><meta name=\"robots\" content=\"noindex,follow\"><!--[if !((mso)|(IE))]><!-- --><style type=\"text/css\">@media only screen and (max-width:639px){img.stretch-on-mobile,.hs_rss_email_entries_table img,.hs-stretch-cta .hs-cta-img{height:auto !important;width:100% !important}\r\n.display_block_on_small_screens{display:block}.hs_padded{padding-left:20px !important;padding-right:20px !important}\r\n.hs-hm,table.hs-hm{display:none}.hs-hd{display:block !important}table.hs-hd{display:table !important}\r\n}@media only screen and (max-width:639px){.hse-border-m{border-left:1px solid #eaf0f6 !important;border-right:1px solid #eaf0f6 !important;box-sizing:border-box}\r\n.hse-border-bottom-m{border-bottom:1px solid #eaf0f6 !important}.hse-border-top-m{border-top:1px solid #eaf0f6 !important}\r\n.hse-border-top-hm{border-top:none !important}.hse-border-bottom-hm{border-bottom:none !important}\r\n}.moz-text-html .hse-column-container{max-width:600px !important;width:600px !important}\r\n.moz-text-html .hse-column{display:table-cell;vertical-align:top}.moz-text-html .hse-section .hse-size-4{max-width:200px !important;width:200px !important}\r\n.moz-text-html .hse-section .hse-size-12{max-width:600px !important;width:600px !important}\r\n@media only screen and (min-width:640px){.hse-column-container{max-width:600px !important;width:600px !important}\r\n.hse-column{display:table-cell;vertical-align:top}.hse-section .hse-size-4{max-width:200px !important;width:200px !important}\r\n.hse-section .hse-size-12{max-width:600px !important;width:600px !important} }@media only screen and (max-width:639px){.hse-body-wrapper-td{padding-top:20px !important}\r\n#section-0 .hse-column-container{background-color:#fff !important} }@media screen and (max-width:639px){.social-network-cell{display:inline-block}\r\n}@media only screen and (max-width:639px){.hse-body-wrapper-td{padding-bottom:20px !important}\r\n#section-9 .hse-column-container{background-color:#fff !important} }</style><!--<![endif]--><style type=\"text/css\">#hs_body #hs_cos_wrapper_main a[x-apple-data-detectors]{color:inherit !important;text-decoration:none !important;font-size:inherit !important;font-family:inherit !important;font-weight:inherit !important;line-height:inherit !important}\r\na{text-decoration:underline}p{margin:0}body{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale}\r\ntable{border-spacing:0;mso-table-lspace:0;mso-table-rspace:0}table,td{border-collapse:collapse}\r\nimg{-ms-interpolation-mode:bicubic}p,a,li,td,blockquote{mso-line-height-rule:exactly}\r\n.ShadowHTML p,.sh-modified-inline p{margin:0}</style></head>\r\n  <body id=\"hs_body\" bgcolor=\"#EAF0F6\" style=\"margin:0 !important; padding:0 !important; font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n    <div id=\"preview_text\" style=\"display:none;font-size:1px;color:#EAF0F6;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;\" lang=\"en\">Act now and take delivery by Dec. 31!</div>\r\n    \r\n<!--[if gte mso 9]>\r\n<v:background xmlns:v=\"urn:schemas-microsoft-com:vml\" fill=\"t\">\r\n    <v:fill type=\"tile\" size=\"100%,100%\" color=\"#ffffff\"/>\r\n</v:background>\r\n<![endif]-->\r\n    <div class=\"hse-body-background\" lang=\"en\" style=\"background-color:#eaf0f6\" bgcolor=\"#eaf0f6\">\r\n      <table role=\"presentation\" class=\"hse-body-wrapper-table\" cellpadding=\"0\" cellspacing=\"0\" style=\"margin:0; padding:0; width:100% !important; min-width:320px !important; height:100% !important\" width=\"100%\" height=\"100%\">\r\n        <tbody><tr>\r\n          <td class=\"hse-body-wrapper-td\" valign=\"top\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding-top:20px; padding-bottom:20px\">\r\n            <div id=\"hs_cos_wrapper_main\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_dnd_area\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"dnd_area\">  <div id=\"section-0\" class=\"hse-section hse-section-first\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff; padding-bottom:10px; padding-top:10px\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-bottom:10px; padding-top:10px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-0-0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module-0-0-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#00578a; word-break:break-word; text-align:center; padding:5px 20px; font-size:0px\">\r\n        <img alt=\"FINAL-H\" src=\"https://hs-43785732.f.hubspotemail.net/hub/43785732/hubfs/FINAL-H.png?width=600&amp;upscale=true&amp;name=FINAL-H.png\" style=\"outline:none; text-decoration:none; max-width:100%; font-size:16px\" width=\"300\" align=\"middle\">\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section-1\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:200px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"200\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:200px\">\r\n<![endif]-->\r\n<div id=\"column-1-0\" class=\"hse-column hse-size-4\">\r\n  <div id=\"hs_cos_wrapper_module-1-0-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#FFFFFF\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; border-radius:0px; cursor:auto; background-color:#FFFFFF; mso-padding-alt:12px 18px\">\r\n        <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWcx3m2nnW7lCdLW6lZ3pVW3txljz1YhTGwW86Tj_M9br8l2W5Z_rFV1zX6ZWW4R166m2T8XzyW4HmcbF23V1HMVQvwxD2KfjD8N1h4qKZjv3Q3VQ8c6Y8pybxhW8ylQbl677JycW4gcdKq1-KVMMW60lbrj1TBXdFW4CKXBm6wFpfDW5fmw2f8z6CTQN58gQbtZjRLKW60Jl-L1r4RmLN8HPkrvyxrF8W5Ym0sD7N6F_mW1yDsrx9fPKpxV5wLzj8167MQW6WrG_W7tf-BVN5Vn5V6QvGJwW9kncvM5JwQfDN5n05XyFNNgCN7_BRy55B8Gbf6TFLGl04\" target=\"_blank\" style=\"color:#00a4bd; font-size:14px; font-family:Arial, sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:12px 18px; display:block\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"QJswKJS0\">\r\n          <strong style=\"color:#00578A;font-weight:bold;text-decoration:none;font-style:normal;\">PRODUCTS</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:200px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"200\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:200px\">\r\n<![endif]-->\r\n<div id=\"column-1-1\" class=\"hse-column hse-size-4\">\r\n  <div id=\"hs_cos_wrapper_module-1-1-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#FFFFFF\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; border-radius:0px; cursor:auto; background-color:#FFFFFF; mso-padding-alt:12px 18px\">\r\n        <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWcR3m2nnW7Y8-PT6lZ3p9Vt3CMl6SfkTQW3Xp2nx2bg31RVkGWM-7KD4BtW99YzKX6JKctFW2CfQzp9k8mHTW4QlwCM8r2wCmVqTTBh7-10WHW38vBp-5x5Dr7W6dnFt_7GDlPRW2vXQ0n3mNnJVW7v5GpD1WHmp8W1Pk9175skYNFW6N_hbV34GKJmVDltrd7jR4RpW7bKwZy4bdT96W4LH1YS2Dtw-WW5JYR992HNc2fW8svmT43D1rZCW1XP6Y7429rPnW24Y6QM3l1-NgVVCtPZ5psmJhVsvpmJ77gY4qW5XZ0ZS7LGYlfN4BwXPC3xV8fW2JSqNs4xZ0Q3W6MX0021JLZ-vf4R-jYn04\" target=\"_blank\" style=\"color:#00a4bd; font-size:14px; font-family:Arial, sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:12px 18px; display:block\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"yovoY7jS\">\r\n          <strong style=\"color:#00578A;font-weight:bold;text-decoration:none;font-style:normal;\">HOW IT WORKS</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:200px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"200\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:200px\">\r\n<![endif]-->\r\n<div id=\"column-1-2\" class=\"hse-column hse-size-4\">\r\n  <div id=\"hs_cos_wrapper_module-1-2-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#FFFFFF\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; border-radius:0px; cursor:auto; background-color:#FFFFFF; mso-padding-alt:12px 18px\">\r\n        <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWcd3m2nnW6N1vHY6lZ3m0V7T1Pl4rh02xW66f5yJ7qRXCcW7Ttm0B86tZyhW399JMQ2Z9FrBW909Tmw6BMGBPW58F4Jl4k8fmdW7gNYhC4fdvM1W4FJGXL86PksQW1VWQRc8wGSlTW5nH_jz3_x5kFW78pF6s2ZRBG6W4dymZ095hvGlVxvgxT3nFSb8N6P_h7T6jcwZW6dqVs-2hcJPdW81RhTr39tSpqW6N-g3T1z_9n5W2RmHs46gLFsqW2HYDv-5d7BhfW6Qq_Qm8L-k0TW2FMhtx2Qm0-DW18KV-j2q5J9bdR6TkF04\" target=\"_blank\" style=\"color:#00a4bd; font-size:14px; font-family:Arial, sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:12px 18px; display:block\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"xxYs3zqK\">\r\n          <strong style=\"color:#00578A;font-weight:bold;text-decoration:none;font-style:normal;\">ON SALE!</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section_1733284161556\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column_1733284161556_0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module_17332841726501\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#00578a; word-break:break-word; text-align:center; padding:10px 0px; font-size:0px\">\r\n        <img alt=\"11111\" src=\"https://hs-43785732.f.hubspotemail.net/hub/43785732/hubfs/11111.png?width=1200&amp;upscale=true&amp;name=11111.png\" style=\"outline:none; text-decoration:none; max-width:100%; font-size:16px\" width=\"600\" align=\"middle\">\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section-3\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-3-0\" class=\"hse-column hse-size-12\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module-3-0-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module-3-0-0_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"font-size:15px; line-height:175%\"><span style=\"color: #00578a;\">Hi Rick,</span></p>\r\n<p style=\"line-height:175%\">Now is the perfect time to upgrade your equipment and take advantage of incredible deals on some of our most popular laser machines! <span style=\"font-weight: bold;\">Epilog’s Black Friday Sale</span> is here, and when you combine these discounts with <strong>Section 179 tax deductions</strong>, you can maximize your year-end savings.<br><br></p>\r\n<h2 style=\"margin:0; font-size:15px; line-height:175%\">Why Section 179 is a Big Deal:</h2>\r\n<ul style=\"font-size:15px; line-height:175%\">\r\n<li><strong>Immediate tax savings</strong> — no waiting for depreciation</li>\r\n<li><strong>Lower your 2025 tax bill</strong></li>\r\n<li><strong>Free up cash</strong> for other business needs</li>\r\n<li>Get the full scoop on our <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWd63m2nnW8wLKSR6lZ3nbW8-LGyg3XfRmzW726b6210ZJ0gW61gX5Z851r63W1n6wfG2FMN0jW67KtvP6x-68gN1f4WKMn2G2RW4gp4qG1tL9JPVSXVwj49pw1SW5wm-Hs4t6nYfW6Q1Lq669GzXYW5Y3cmp8QVwlHW8p-SVz2xngJ7W7bnzPx3yScyTW7NfJgF8h8X-GW3MPvQ-3k7Bm-W1hts9k7dj__mW62q2Z46PP7xpN3rZftqzTnLsW5vvK3Q3zcS4BVK0spk5lx5lNW35t2yX1RryjDW6MDdZ23lsbFNW6J30Lq3sVfvpW1XcB2N3hJr6pW2-VkDc1F6XCxW2BdqhJ8hD8GTW4SJSPn3pn5_yVg-qh86wZt6jf4jb0vn04\" rel=\"noopener\" style=\"color:#6dcff6\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"YpePY8WR\" target=\"_blank\">blog</a> and check out our Black Friday specials below!</li>\r\n</ul></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section-6\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-6-0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module-6-0-1\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#00578a; word-break:break-word; text-align:center; padding:10px 20px; font-size:0px\">\r\n        <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWcx3m2nnW7lCdLW6lZ3nTW6KVrWL3M5CGyW1RM-Kw7kN_KjW4zhXRx70j_G2W4cDbpW90WQb7W3dc3H77V_dPqVhj6Pv7n26ypN7NGlVWfdbwtV30Pry42Q0kdW3whz5Z8ZR0G_N97T1Pv4b6tKW7VVCnr7hLjp-N9f-qYsMRxQCW9k29lG6MwK_DVNv4W16NfbjbW1Gj_N51y3vr1F6DmbnHkX8QW4wf8l85DXTCjW2DqDs86vgTJ5W3vdgTb14NJ9FW1RGHyl83w08GW1FVqJ448m1zfW4FQbPz75J35BN5xSt1JDxG6ZW5qb_qB31b_Gyf95hh0d04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"jZj1IB78\">\r\n        <img alt=\"email-hero_v2_black-friday_11-25\" src=\"https://hs-43785732.f.hubspotemail.net/hub/43785732/hubfs/email-hero_v2_black-friday_11-25.webp?width=1120&amp;upscale=true&amp;name=email-hero_v2_black-friday_11-25.webp\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"560\" align=\"middle\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_17630555960382\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17630555960382_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"line-height:175%; text-align:center\" align=\"center\"><span style=\"font-size: 18px;\">🎉<strong>Black Friday Deals Are Here!</strong> 🎉</span></p>\r\n<p style=\"line-height:175%\">&nbsp;</p>\r\n<p style=\"line-height:175%\">Ready to take your laser game to the next level? Epilog Laser is offering <strong>massive savings</strong> on our most powerful machines — but only for a limited time!</p>\r\n<p style=\"line-height:175%\">🔥 <strong>Fusion Pro Series</strong><br>💰<strong>$1000 OFF</strong> Fusion Pro 24<br>💰<strong>$1500 OFF</strong> Fusion Pro 36<br>💰<strong>$2000 OFF</strong> Fusion Pro 48<br><br></p>\r\n<p style=\"line-height:175%\">⚡ <strong>Fusion Galvo G100</strong><br>💰<strong>$750 OFF</strong> any Galvo machine</p>\r\n<p style=\"line-height:175%\">Whether you\'re upgrading your shop or starting fresh, there\'s never been a better time to invest in precision, speed, and quality.</p></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_17630565401024\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#6dcff6\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; border-radius:8px; cursor:auto; background-color:#6dcff6; mso-padding-alt:12px 18px\">\r\n        <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWcx3m2nnW7lCdLW6lZ3pjW6qG5vw32MqcnVk1TB32hqvxrW25j_T62rW_23W5VNvcc9dWfScN2VRx4tptRy3W5p_dSH7MwQQBW2m95rc1yHDdBN75R6GNJVRS3W7m_qTr2klPXTN86XN02RwmrtV9kxcV9fQgdCW5yGhRW40mFrnN41g3mG_MHCgVDVRtH6NvvPcW4Zycq195C5SMW99C5rF9g2jXhW81NDR_5C80FnW2S6Flx7pbs1JW3kQ3wK3HWFm3W3DtsKG7D9W_mW73P9bp8ymdZdW765_R41Hd24QW64jm0p6mY856W4j6sK89hwMRdf3Q1t1z04\" target=\"_blank\" style=\"color:#00a4bd; font-size:16px; font-family:Arial, sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:12px 18px; display:block\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"N9vVDshY\">\r\n          <strong style=\"color:#ffffff;font-weight:normal;text-decoration:none;font-style:normal;\">Save Now!</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module_17630565196253\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table role=\"none\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"vertical-align:top\" width=\"100%\">\r\n  <tbody><tr>\r\n    <td align=\"center\" style=\"font-family:Arial, sans-serif; color:#00578a; font-size:0; word-break:break-word\">\r\n      <p style=\"font-size:1px;border-top:1px solid #00578A;width:100%;margin:0 auto;\"></p>\r\n      <!--[if mso]>\r\n        <table role=\"none\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-size:1px;border-top:1px solid #00578A;width:560px;\">\r\n          <tr>\r\n            <td style=\"height:0;line-height:0\">&nbsp;</td>\r\n          </tr>\r\n        </table>\r\n      <![endif]-->\r\n    </td>\r\n  </tr>\r\n</tbody></table></div></td></tr></tbody></table>\r\n<div id=\"hs_cos_wrapper_module_17630554206031\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"hs_padded\" align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#00578a; word-break:break-word; text-align:center; padding:10px 20px; font-size:0px\">\r\n        <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWcx3m2nnW7lCdLW6lZ3mwW7RxSZ667tF4MW28-pmc10Vp9mW8MZPSN1C7ntLW6KB37Z7XRZtpN4DZ32R4kVvcW3n4mqt7015f_W392c3T22rltbW6nhWKW7-CgpnW1zq-Y48jsLFLW7h5RBk4lpg0gW8fFw203yT3FwW488dpQ1MxytyW6JVnRh7X5SkYN2k7YtqRrbJWW2WzXww7PzQCwVCdmLy6FGftJW1kJ4tz8YCjD0W2L31q32R4M_pW6Y7jk69jXw_0W6sJgqp1W0jC2W6vWXtD1qWJhgN6nPY2yn0WZmW5_lp6G30mKBrW6482ng1Z4sT5f4g8YnC04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"Zcc3HmKZ\">\r\n        <img alt=\"machine-swap-800\" src=\"https://hs-43785732.f.hubspotemail.net/hub/43785732/hubfs/machine-swap-800.gif?width=1120&amp;upscale=true&amp;name=machine-swap-800.gif\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"560\" align=\"middle\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module-6-0-2\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module-6-0-2_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h2 style=\"margin:0; line-height:175%; font-size:22px; text-align:center\" align=\"center\">Take Advantage before time runs out!</h2>\r\n<p style=\"line-height:175%\"><span style=\"color: #00578a;\">Contact us today for pricing information and to <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWd63qn9qW8wLKSR6lZ3ncW5L0PXR34G7fLW4ZfRnG2mZBvwW4vwF-v8zdHkbW4frf4H7ntyLvW1QBsBw3-r5PDW3B0lX63P6w5QW1Pn7DK75VW-xW2GkyNW1_WG5pW4DbfBT1wNfGQW5tdjtq35D32DW1jkhJF896mgnVW-Vz05PgWvWVMzqVC8z6rbZW4s2NCD2Wb3LbN6d89ZQHQkmZW5Fj-6Y30NgJ3W8KgzMy1KN7_sW5v4sN-3zywW5W8zY2Xn1lGv4WW2DycqS3p7JNzW2SRkgJ3tnxzmW7PZfXG96W0FWW7bB4sF5MS_7nW6tDhHp3Nc9fKW80HPlc83x-xVW5lmRF02R9slMW8mnWSf4RyXPFW3pggtt6gvrmLf20RNVY04\" target=\"_blank\" style=\"color:#00578a\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"Qx4Y5roR\">set up a demonstration! →</a>&nbsp;Or visit our shop right now and purchase online!&nbsp;</span><br><span style=\"color: #00578a;\"> </span></p>\r\n<p style=\"line-height:175%\"><span style=\"color: #00578a;\">Better hurry though – Black Friday deals end Dec. 1 and you must take delivery of your laser by Dec. 31 to take advantage of potential tax savings!&nbsp;&nbsp;</span></p>\r\n<p style=\"line-height:175%\">&nbsp;</p>\r\n<p style=\"font-size:12px; line-height:175%\">*Please consult a tax professional to ensure this benefit applies to your business&nbsp;</p></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section-7\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff; background-image:url(\'https://hs-43785732.f.hubspotemail.net/hubfs/43785732/PPT-slides-3.jpg\'); background-position:center; background-repeat:no-repeat; background-size:100% 100%; padding-bottom:10px; padding-top:10px\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff; background-image:url(\'https://43785732.fs1.hubspotusercontent-na1.net/hubfs/43785732/PPT-slides-3.jpg\'); background-position:center; background-repeat:no-repeat; background-size:100% 100%;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-bottom:10px; padding-top:10px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-7-0\" class=\"hse-column hse-size-12\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:10px 20px\"><div id=\"hs_cos_wrapper_module-7-0-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module-7-0-0_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><h2 style=\"margin:0; line-height:175%; font-size:22px; text-align:center\" align=\"center\"><span style=\"color: #ffffff;\">Choose the Power of Epilog</span></h2>\r\n<p style=\"line-height:175%\"><span style=\"color: #ffffff;\">With so many laser machine options out there, here’s why Epilog stands apart:</span></p>\r\n<ul style=\"line-height:175%\">\r\n<li style=\"line-height: 150%;\"><span style=\"color: #ffffff;\">Designed and manufactured in Golden, CO, with precision and care.</span></li>\r\n<li style=\"line-height: 150%;\"><span style=\"color: #ffffff;\">Reliable, long-lasting CO2 RF metal laser tubes made in the USA.</span></li>\r\n<li style=\"line-height: 150%;\"><span style=\"color: #ffffff;\">US-based technical support and a 2-year warranty for peace of mind.</span></li>\r\n<li style=\"line-height: 150%;\"><span style=\"color: #ffffff;\">Safety-first design—no extra eye protection needed.</span></li>\r\n<li style=\"line-height: 150%;\"><span style=\"color: #ffffff;\"><a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWdq3m2nnW95jsWP6lZ3lWW1rhrB33tQ1HDW2cM2Dm57TyV9VjvDMs5fYnXRW1L30qr5VPsWLW1rwlz37sjjzGW3CNXDn45gTXxW3bk3Vq1_C-0KN5qkV3_RrX0jVdqzQZ72jzLtW99D8p887NlRsW4BFmXq6CmGbSW7VZ5Wd2thnf0W3pqsmb92mZ9SMpKKFbyQF-FW3D5WLR8Wpy1sW5Cz3nS6pqXLdW5KjDl13n-dZlW4dCczs6YNxqRW9fDSzg47lmT5W4fslPR5BhW9xW54xvD67T13D_N8bJD3ZxzWZHW29G7d-4mBm8-W3h1jFd2-gMnCW8tsCt67GZ-3JN2pJvXBPMxz4N1qNjQjDl3tyW7LbZK18ksXSQW8bLF-64LXqD8N1pJjjLyLv_xf6YfFDP04\" style=\"color:#ffffff\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"KtF4xnSS\" target=\"_blank\"><span style=\"color: #6dcff6;\">Innovative IRIS™</span></a> Camera Positioning for effortless accuracy.</span></li>\r\n</ul>\r\n<p style=\"line-height:150%\"><span style=\"color: #ffffff;\">Experience the difference of a trusted partner with 36 years in the laser business.</span></p></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section-8\" class=\"hse-section\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff; padding-bottom:10px; padding-top:10px\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-bottom:10px; padding-top:10px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-8-0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module-8-0-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module\">\r\n  <tbody>\r\n    <tr>\r\n      <td class=\"social-network-cell\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n        <table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module_single\">\r\n          <tbody>\r\n            <tr>\r\n              <td class=\"display_block_on_small_screens\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:8px 5px; line-height:1; vertical-align:middle\" valign=\"middle\">\r\n                <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWcd3m2nnW6N1vHY6lZ3mLW3Hh8n_6rJV0gVhKJ_M77gddtN3KzFMR2qHJcW7zQqRd3TCDX-W1V77F069sFWMW29X4Ys3c7FwqW6rY56J3B8Z3SV8Xhlr4xC-PGW69v0-b1JxYgNW6SQ16_7xMXgxW9hd5mP7jnFY9W44nCjp7ch5_gW58Pzkz4F1w-dN42p7G9NQXshMqqb5nv8Dv0W5kY5-98KSHGPW3tgKCG2kZySyW1c5MqQ4NtXftW1wkN_c2XpJf_W70NNCN8XzRX1W2CCK-B5L-xBNW6Xsyrc8Dt70Wf3Q0mTj04\" style=\"color:#00a4bd; text-decoration:none !important\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"AvjqVn8f\" target=\"_blank\"><img src=\"https://hs-43785732.f.hubspotemail.net/hs/hsstatic/TemplateAssets/static-1.262/img/hs_default_template_images/modules/Follow+Me+-+Email/youtube_circle_grey.png\" alt=\"YouTube\" height=\"25\" style=\"outline:none; text-decoration:none; border:none; width:auto!important; height:25px!important; vertical-align:middle\" valign=\"middle\" width=\"auto\">\r\n                </a>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td><td class=\"social-network-cell\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n        <table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module_single\">\r\n          <tbody>\r\n            <tr>\r\n              <td class=\"display_block_on_small_screens\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:8px 5px; line-height:1; vertical-align:middle\" valign=\"middle\">\r\n                <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWcd3m2nnW6N1vHY6lZ3pxW8K86V18WQnMjW2fYbc11Pht0YW5fGBf83Z3pkcW3Yk_Hr7bdSJbW2qSvMH5NQy44N8rNBWstJvN3W22jYr6325XJTW2ytZfK649GKCW7h8sCJ6X9-s6W5FCPJl7r9nt5W7sjwBp1PZrNJW8z7xqy1vFZCpVDxgV99jpD5fW5_1wKw47J5JSN3qFqMqGFbgrW38QkVN7jq7fcW6pSrxT1M03Q-W2kvysM4lPCH3W2Pc-kg4M9TR2W8GC3CV2hvvrLW2r274r4ggR4BW5dDJxW1Cl4Kjf7pPY2R04\" style=\"color:#00a4bd; text-decoration:none !important\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"3eV/mCGq\" target=\"_blank\"><img src=\"https://hs-43785732.f.hubspotemail.net/hs/hsstatic/TemplateAssets/static-1.262/img/hs_default_template_images/modules/Follow+Me+-+Email/facebook_circle_grey.png\" alt=\"Facebook\" height=\"25\" style=\"outline:none; text-decoration:none; border:none; width:auto!important; height:25px!important; vertical-align:middle\" valign=\"middle\" width=\"auto\">\r\n                </a>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td><td class=\"social-network-cell\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n        <table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module_single\">\r\n          <tbody>\r\n            <tr>\r\n              <td class=\"display_block_on_small_screens\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:8px 5px; line-height:1; vertical-align:middle\" valign=\"middle\">\r\n                <a  href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWcd3m2nnW6N1vHY6lZ3nnW3DY1_P7hbVkQN2gdDtm505l-W94-l6l8xZyVLW8KLkVj7JsgqbW7DxGGC468yclW1jxgGQ71RGy2W3kyJ5847KrqZN43hKQysJnBNW8CRty46yL2VbW20sXv17t9VVrW2gvQbH9c3TH1W5Wgc2d4M1DN2VQw1D-62KZyYW1ypxnz858qyrW7Lc3rT3bn_QtW2Jvdht3cLRKRW1pKjtG2TQdn8W4jnq9P82_51QMS88D-BWfvdW30rCKg4591q0W7Bt62n7QJ95MW5QnjZ83wPxdQf4QV1rP04\" style=\"color:#00a4bd; text-decoration:none !important\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"Nv+8s09A\" target=\"_blank\"><img src=\"https://hs-43785732.f.hubspotemail.net/hs/hsstatic/TemplateAssets/static-1.262/img/hs_default_template_images/modules/Follow+Me+-+Email/instagram_circle_grey.png\" alt=\"Instagram\" height=\"25\" style=\"outline:none; text-decoration:none; border:none; width:auto!important; height:25px!important; vertical-align:middle\" valign=\"middle\" width=\"auto\">\r\n                </a>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td><td class=\"social-network-cell\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n        <table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module_single\">\r\n          <tbody>\r\n            <tr>\r\n              <td class=\"display_block_on_small_screens\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:8px 5px; line-height:1; vertical-align:middle\" valign=\"middle\">\r\n                <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWcd3m2nnW6N1vHY6lZ3mbW2-GjY76sMFFmW14Y3mJ1_Wnq4N3SbRhjVrsdGW6Rzw2G8ZfG2BV8k_5J2YS2FZW39T1_b7WHDgDN11cVjFp-wdnW3D_T92464vQqW40169k8BvKZYW7BQct8594H8CW5hv7_s5_2szhW2Lbq097_-dVJW4w1LSd8TqGsmW2HS2cm21r_M3W6jk2rx12fshyW6HmfQy8--4PlW4xD1tG8d_hC0W9fqbm21Bj-xWVHFlGx77Y6zXW6LrCXm1Z3LwMW5SM2Q382cm-_W1VmCqZ6cN31rf6TKB_604\" style=\"color:#00a4bd; text-decoration:none !important\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"89S4y2R7\" target=\"_blank\"><img src=\"https://hs-43785732.f.hubspotemail.net/hs/hsstatic/TemplateAssets/static-1.262/img/hs_default_template_images/modules/Follow+Me+-+Email/twitter_circle_grey.png\" alt=\"X\" height=\"25\" style=\"outline:none; text-decoration:none; border:none; width:auto!important; height:25px!important; vertical-align:middle\" valign=\"middle\" width=\"auto\">\r\n                </a>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td><td class=\"social-network-cell\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n        <table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module_single\">\r\n          <tbody>\r\n            <tr>\r\n              <td class=\"display_block_on_small_screens\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:8px 5px; line-height:1; vertical-align:middle\" valign=\"middle\">\r\n                <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWcd3m2nnW6N1vHY6lZ3l5W2wHv186CyQYwW5wXBnt8zy3jVW5fgtlR6FNL3hN92y9ttJWrJ_W4TH6TT2pP1cYW2bKK394QRd_7W1lP7W4768VZsW994FYb3cTymqW8l4ZVQ4pSYkQN1_hgbxYfDYPVYhXz64sCnf5W3hLBzz7-_XLwW36TtVs4TXLwRV7sJWz4N9NMRW8W99fy8fNtGRW1b04L28vZYbmW3_rN5q6qG2RRV7TqJ71T3dDXVvSSxR8bPWlvW4w0Sss4mgXJQW4kNJ6w3P4SjkW6TxHDk8bdw6gf80_yT004\" style=\"color:#00a4bd; text-decoration:none !important\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"0jFc3n+8\" target=\"_blank\"><img src=\"https://hs-43785732.f.hubspotemail.net/hs/hsstatic/TemplateAssets/static-1.262/img/hs_default_template_images/modules/Follow+Me+-+Email/linkedin_circle_grey.png\" alt=\"LinkedIn\" height=\"25\" style=\"outline:none; text-decoration:none; border:none; width:auto!important; height:25px!important; vertical-align:middle\" valign=\"middle\" width=\"auto\">\r\n                </a>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td><td class=\"social-network-cell\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n        <table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module_single\">\r\n          <tbody>\r\n            <tr>\r\n              <td class=\"display_block_on_small_screens\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:8px 5px; line-height:1; vertical-align:middle\" valign=\"middle\">\r\n                <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWcd3m2nnW6N1vHY6lZ3kzW5DwFdY3znmfhW6ppX_c8xgC_JW5_Vybq7-mNg3VJXjbm3VTwMgW3-TStv7nr550W3BlCvl2FhJVVN5ch8zjdVJx5W24BVzp43V9q7W2v9qGV66bKsFW44Zqz8756hVyW5HPY8V2w8sBdW6KsTLb4L-B9BW6ycjwL5CWJm0W8hYs8L74dlRsW2W55P03G55bQN3g4GrCfkt0gW6fHlvP7BcvgpW4tYW9j4mtM4sW8BhPgF49GBg3W7gB42W1PMBnQW1sKcWt6Kv7hVW565p_q5bpBYnf6fbzt204\" style=\"color:#00a4bd; text-decoration:none !important\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"1kFf2yTo\" target=\"_blank\"><img src=\"https://hs-43785732.f.hubspotemail.net/hs/hsstatic/TemplateAssets/static-1.262/img/hs_default_template_images/modules/Follow+Me+-+Email/pinterest_circle_grey.png\" alt=\"Pinterest\" height=\"25\" style=\"outline:none; text-decoration:none; border:none; width:auto!important; height:25px!important; vertical-align:middle\" valign=\"middle\" width=\"auto\">\r\n                </a>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td><td class=\"social-network-cell\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n        <table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module_single\">\r\n          <tbody>\r\n            <tr>\r\n              <td class=\"display_block_on_small_screens\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:8px 5px; line-height:1; vertical-align:middle\" valign=\"middle\">\r\n                <a href=\"mailto:sales@epiloglaser.com\" style=\"color:#00a4bd; text-decoration:none !important\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"eUekBVr0\" target=\"_blank\"><img src=\"https://hs-43785732.f.hubspotemail.net/hs/hsstatic/TemplateAssets/static-1.262/img/hs_default_template_images/modules/Follow+Me+-+Email/mail_circle_grey.png\" alt=\"Email\" height=\"25\" style=\"outline:none; text-decoration:none; border:none; width:auto!important; height:25px!important; vertical-align:middle\" valign=\"middle\" width=\"auto\">\r\n                </a>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td><td class=\"social-network-cell\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word\">\r\n        <table role=\"presentation\" align=\"center\" style=\"width: auto; text-align: center; margin: 0 auto; \" class=\"hs_cos_wrapper_type_social_module_single\">\r\n          <tbody>\r\n            <tr>\r\n              <td class=\"display_block_on_small_screens\" align=\"center\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; padding:8px 5px; line-height:1; vertical-align:middle\" valign=\"middle\">\r\n                <a href=\"https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWcd3m2nnW6N1vHY6lZ3q7W3s5Gzk895n6LW8yBnks2ZLn3xW47_kg25LxWB7W6DdXRY8mStbHVyZ7Tl2Y8SFRW6fV25b6tZ9cBW7wDgbN7WX7tdW3SJNqW86m5_XW7Q1LPF2wQrSHW1wLmlb6Wn32pN5mWWf8yg2H_W7HK9N32-JP5BVg-JrS5wfyCxW8V-kj26YdywxW7NQkYd4JgmSMW8LWTlZ8VpG0mW2QfCm68TrS_hW8Xmdj32YL29-VvK0-t4ZCW6rW7hXLz03JPDysW2tCKBY3_VC2PN6nt3RBXCGWzdhX0XF04\" style=\"color:#00a4bd; text-decoration:none !important\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"GdG1tBFF\" target=\"_blank\"><img src=\"https://hs-43785732.f.hubspotemail.net/hs/hsstatic/TemplateAssets/static-1.262/img/hs_default_template_images/modules/Follow+Me+-+Email/website_circle_grey.png\" alt=\"Website\" height=\"25\" style=\"outline:none; text-decoration:none; border:none; width:auto!important; height:25px!important; vertical-align:middle\" valign=\"middle\" width=\"auto\">\r\n                </a>\r\n              </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n</div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section-9\" class=\"hse-section hse-section-last\" style=\"padding-left:10px; padding-right:10px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff; padding-bottom:20px; padding-top:20px\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-bottom:20px; padding-top:20px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-9-0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module-9-0-0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#00578a; word-break:break-word; text-align:center; padding:0px; font-size:0px\">\r\n        <img alt=\"FINAL-H\" src=\"https://hs-43785732.f.hubspotemail.net/hub/43785732/hubfs/FINAL-H.png?width=400&amp;upscale=true&amp;name=FINAL-H.png\" style=\"outline:none; text-decoration:none; max-width:100%; font-size:16px\" width=\"200\" align=\"middle\">\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n<div id=\"hs_cos_wrapper_module-9-0-1\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table role=\"presentation\" class=\"hse-footer hse-secondary\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family:Arial, sans-serif; font-size:12px; line-height:135%; color:#23496d; margin-bottom:0; padding:0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#00578a; word-break:break-word; text-align:center; margin-bottom:0; line-height:135%; padding:10px 20px\">\r\n        <p style=\"font-family:Arial, sans-serif;font-size:12px;font-weight:normal;text-decoration:none;font-style:normal;color:#00578A\">\r\n          Epilog Laser, 16371 Table Mountain Parkway, Golden, Colorado 80403, USA, +1 303 277 1188\r\n        </p>\r\n        <p>\r\n          <a data-unsubscribe=\"true\" href=\"https://hs-43785732.s.hubspotemail.net/hs/preferences-center/en/direct?data=W2nXS-N30h-z6W1Sqgkv1ZlM6BW21bMg04prvLBW41Cfql45x5PmW4fvPh44tpRWyW3QQrjV1SkJVzW3VtXN_3G_pktW4pK2gN1N3XZHW1N7f7m3SKfNmW1VfmbL1Z97ncW2nGNgT2vYx6KW41YVlg3jlwx8W2CvZ_S2YvLYPW2xWdHS2p72wXW2RhMkt2MP1dmW4tzzH93-0DsfW3K77_Y1NfWtcW47m4DN3QCGqSW2-p7qj2xMkM5W1Vd17K3j0FThW2CWHVy38l1S2W3gmC0R1NsPq-W4fRhbg45ykQqW2FrpJP4hN6GWW2r163N3NNZCKW2PRjN821q5MJW2Wgv_33ZHPnmW3VP6452t7zZ4W2nYLnC3M9rm0W1NkChh1LHdtfW1StF1Y3C7mbsW2p512z3dh6vWW3yNtHQ3bfKS7W3dyQrJ1W_Q9NW2YGvCG4kDwDDW3ZGXRL2w2jjmW2sQzWl3X_9NKW4rmwVD2D0vFcW3_Jp5F2r2hWtW3ZKvbL3Fccp_W3g94HY4fkcy5W1LxLBW3NCr8tW1VxJxR3T4bbcW2WnMDs3gnSNvW309gTK4pkhy3W2HYMJV386v9mW2PFHGW3BNNLPW2t3Pjd4rzk-vW1VjCm13VKSb4W4hsyyf4rm-Wb0&amp;utm_source=hs_email&amp;utm_medium=email&amp;utm_content=389828108&amp;_hsenc=p2ANqtz-9LRJe35B7gkrrs1d5FZB0H5CvwosSCfnDJqPmAiuhMu0iFPKDmfh0WL0QdaHdnuJ-th6_8xwqEPPbcteR6zgKcpkY_iQ&amp;_hsmi=389828108\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:12px; color:#00578A; font-weight:normal; text-decoration:underline; font-style:normal\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"SFRZzEXk\" target=\"_blank\">Unsubscribe</a>\r\n          <a data-unsubscribe=\"true\" href=\"https://hs-43785732.s.hubspotemail.net/hs/preferences-center/en/page?data=W2nXS-N30h-z6W1Sqgkv1ZlM6BW21bMg04prvLBW41Cfql45x5PmW4fvPh44tpRWyW3QQrjV1SkJVzW3VtXN_3G_pktW4pK2gN1N3XZHW1N7f7m3SKfNmW1VfmbL1Z97ncW2nGNgT2vYx6KW41YVlg3jlwx8W2CvZ_S2YvLYPW2xWdHS2p72wXW2RhMkt2MP1dmW4tzzH93-0DsfW3K77_Y1NfWtcW47m4DN3QCGqSW2-p7qj2xMkM5W1Vd17K3j0FThW2CWHVy38l1S2W3gmC0R1NsPq-W4fRhbg45ykQqW2FrpJP4hN6GWW2r163N3NNZCKW2PRjN821q5MJW2Wgv_33ZHPnmW3VP6452t7zZ4W2nYLnC3M9rm0W1NkChh1LHdtfW1StF1Y3C7mbsW2p512z3dh6vWW3yNtHQ3bfKS7W3dyQrJ1W_Q9NW2YGvCG4kDwDDW3ZGXRL2w2jjmW2sQzWl3X_9NKW4rmwVD2D0vFcW3_Jp5F2r2hWtW3ZKvbL3Fccp_W3g94HY4fkcy5W1LxLBW3NCr8tW1VxJxR3T4bbcW2WnMDs3gnSNvW309gTK4pkhy3W2HYMJV386v9mW2PFHGW3BNNLPW2t3Pjd4rzk-vW1VjCm13VKSb4W4hsyyf4rm-Wb0&amp;utm_source=hs_email&amp;utm_medium=email&amp;utm_content=389828108&amp;_hsenc=p2ANqtz-9LRJe35B7gkrrs1d5FZB0H5CvwosSCfnDJqPmAiuhMu0iFPKDmfh0WL0QdaHdnuJ-th6_8xwqEPPbcteR6zgKcpkY_iQ&amp;_hsmi=389828108\" style=\"font-family:Helvetica,Arial,sans-serif; font-size:12px; color:#00578A; font-weight:normal; text-decoration:underline; font-style:normal\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"qjPJqCop\" target=\"_blank\">Manage preferences</a>\r\n        </p>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div></div>\r\n          </td>\r\n        </tr>\r\n      </tbody></table>\r\n    </div>\r\n  \r\n<img src=\"https://d583HW04.na1.hubspotlinks.com/Cto/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXW4jRV-l8fYxnn31Sg1\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"display:none!important;min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important\"></body></html>','Act now and take delivery by Dec. 31!\r\n\r\nPRODUCTS\r\n(https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWcx3lcq-W7lCdLW6lZ3nCW5_GrSN50LCnmW2M7k3D4HK2TRW1dS1Vk12hyCyW8YYy2D8KDsBrW5Vv1jL5Fp14dW2QCXyM8Q2QTCW84x3J52VVQLrW6PRhTf4cxf4-W7YVdZD302BJ5W5Ys49f2VVrtgW38x4Ck8lXjQKW8VrSqB3swVnnW7jTjcy7s68p6VjhHmH1PnHRyW4hprvy5Yh6NnN5hZp625NZPxW2y5Sdb5kj15bW5SXJwF3F8yt0W12YkcM9d9VW-W3z8j3t4RF5KYN1nknqY-gcHBW9bQXrk2GsWvvW7gcDgj4RMgwJW6Jy67q8k3wX8f8lSK8C04 )\r\n\r\nHOW IT WORKS\r\n(https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWcR3lcq-W7Y8-PT6lZ3q1W1dYY4v7MDNcMW4TZkhK3gpxh4W7HXfDJ1h737-W5sByv1533yL1MGxKVrDNX5dW5vX_6C5s1jJrW3YVNJQ631gfTW3D8GdC2wdTKCW2cG7S68PqhTvW7CwGvY1lXPCQW8lW_5w3tfKyVW3vSLSX5QTlG7W11P2db3FLQ4vW74h2Vf7WdFnKW8NgLlK7nmFVbVwt1B_4jZb6vW8FJmDN4B7w-wVZ9GmR8-VCvLW1vmQ5Z4w999GW8gpVgw2xWKX4VszvZj4lZqSnW6Ngnzr1xz34MW6JXdWT4yllzPW7SyZZT1GZnPcW8qjBDd5MPXqPV81__2505xdLf452Rl404 )\r\n\r\nON SALE!\r\n(https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWbY3lcq-W69sMD-6lZ3mmW7X5WfC4gsBQFW3kSb9m3ltbfHW3L9RG36vdHg6W1j8Zll38KytdVX9K413SP9TWW23rv_r5rmXCSN5h76J0CSpJcW60dHny5PLTcNW8b72lW5fz9ZJN2HZlyC58Jv3W5tQ3K13zJPfvW9gnX8x7zRHNDVv9Dy517Z5pgW4Dgd0c4yfQLbW1Y-0vg8f8t6kW50Gf3J8sK4DkW2TsVyz2DGxKsW7PxlMx1SwDHGW4cXtGM4_jVmRW5r_ylv4TQq4Pf5CVsRj04 )\r\n\r\nHi Rick,\r\n\r\nNow is the perfect time to upgrade your equipment and take advantage of incredible deals on some of our most popular laser machines! Epilog’s Black Friday Sale is here, and when you combine these discounts with Section 179 tax deductions, you can maximize your year-end savings.\r\n\r\nWhy Section 179 is a Big Deal:\r\n\r\n- Immediate tax savings — no waiting for depreciation\r\n- Lower your 2025 tax bill\r\n- Free up cash for other business needs\r\n- Get the full scoop on our blog (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWcR3lcq-W7Y8-PT6lZ3nfW54QPVs5RR6DpW7RCYwV1rvvRGW4HdDsF5sgDqWW7LpG4v8HVZmrW8RXD20416Bw8W6M-0Hg3_T-N_N6VHpJxp6QY_W69nl9_3HRr7XW69BZQc3wv_pcW2CRmkW2-530mW7WgV7V8_Z4V1W7F1RW72JghC6W3CpBtN5Y440wW3L4Lgl139Lq6W6wTZHh7ySftzW3Nn68y3K16qDW47z7pn5hm04VW8sLjTN10BK1SW3fC3C43sNsx9W2hL1707Q25RnW1mVq337SyRY_Vb67vf5ZYstMW5FTwWV38XNqBW3xVVjC72nzytW8hcYrx88gpyzW3bvNmK8SLqXtf3WfVFC04 ) and check out our Black Friday specials below!\r\n\r\nemail-hero_v2_black-friday_11-25 (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWcx3lcq-W7lCdLW6lZ3mPW78HrkQ9k9tpxW2pNFHv4cHg3cW3hfhJf96RsvBW74Xv1J6GWYfLW6BSQX21W4cfcMTY8Tp4dDlrW8WFGBw89qhh9F4lkpN1Hr6zVDLN0098N9Y9W3Nyklf8SLlb4W17f1lf2zXGWxW3DfB5m1g9JHjW6qK0gX60WLg8W82TBP02T1L5QW6SwRwm7PHjv4V16vQ67WlgRFW3GrjPV16c4YtN6szJmXcSPl2W3RSHbc2-SzT8N3WVS-HHsYBYW1085BD5VjthCW7RG-Zd4RWPwGW50b2kQ5w6L3hN5YLz5Jk_0Xkf1wQypK04 )\r\n\r\n🎉Black Friday Deals Are Here! 🎉\r\n\r\nReady to take your laser game to the next level? Epilog Laser is offering massive savings on our most powerful machines — but only for a limited time!\r\n\r\n🔥 Fusion Pro Series\r\n\r\n💰$1000 OFF Fusion Pro 24\r\n\r\n💰$1500 OFF Fusion Pro 36\r\n\r\n💰$2000 OFF Fusion Pro 48\r\n\r\n⚡ Fusion Galvo G100\r\n\r\n💰$750 OFF any Galvo machine\r\n\r\nWhether you\'re upgrading your shop or starting fresh, there\'s never been a better time to invest in precision, speed, and quality.\r\n\r\nSave Now!\r\n(https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWcx3lcq-W7lCdLW6lZ3mPW78HrkQ9k9tpxW2pNFHv4cHg3cW3hfhJf96RsvBW74Xv1J6GWYfLW6BSQX21W4cfcMTY8Tp4dDlrW8WFGBw89qhh9F4lkpN1Hr6zVDLN0098N9Y9W3Nyklf8SLlb4W17f1lf2zXGWxW3DfB5m1g9JHjW6qK0gX60WLg8W82TBP02T1L5QW6SwRwm7PHjv4V16vQ67WlgRFW3GrjPV16c4YtN6szJmXcSPl2W3RSHbc2-SzT8N3WVS-HHsYBYW1085BD5VjthCW7RG-Zd4RWPwGW50b2kQ5w6L3hN5YLz5Jk_0Xkf1wQypK04 )\r\n\r\nmachine-swap-800 (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWcx3lcq-W7lCdLW6lZ3nCW5_GrSN50LCnmW2M7k3D4HK2TRW1dS1Vk12hyCyW8YYy2D8KDsBrW5Vv1jL5Fp14dW2QCXyM8Q2QTCW84x3J52VVQLrW6PRhTf4cxf4-W7YVdZD302BJ5W5Ys49f2VVrtgW38x4Ck8lXjQKW8VrSqB3swVnnW7jTjcy7s68p6VjhHmH1PnHRyW4hprvy5Yh6NnN5hZp625NZPxW2y5Sdb5kj15bW5SXJwF3F8yt0W12YkcM9d9VW-W3z8j3t4RF5KYN1nknqY-gcHBW9bQXrk2GsWvvW7gcDgj4RMgwJW6Jy67q8k3wX8f8lSK8C04 )\r\n\r\nTake Advantage before time runs out!\r\n\r\nContact us today for pricing information and to set up a demonstration! → (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWcR3pyd0W7Y8-PT6lZ3n5W5zrJKN3Xxl66N89PtzLk6swLN1-mXVXDRj0lW133b1L48rrCQW6HRM7X97s916W7qKYJZ2SygZyW7LDQgN6vDtx4VFcgnP4PS1mKW5k_j7N8lfTrHW7ddfQX8MvPYDW3XB9Bf8yxY08W5fgV6D5g7rdBW6yN4Vr8VfjBqW3Z7kyf24dtxwW9jh_T68P2-jGVb9GMC78DqQ-W7rWKDG1tM23RN6L9JHf268PdW5fBCFZ7GDQqTW5JJX7T1bLhB6W7BmYcK62Qw9CW6rGVGZ9b9VDHW7JtJRh8DKzyhW42HGVm72HVTYW1t5rxP6zrr1BW8vZ1lJ4gz14rf24xGdR04 )  Or visit our shop right now and purchase online!\r\n\r\n \r\n\r\nBetter hurry though – Black Friday deals end Dec. 1 and you must take delivery of your laser by Dec. 31 to take advantage of potential tax savings!\r\n\r\n*Please consult a tax professional to ensure this benefit applies to your business\r\n\r\nChoose the Power of Epilog\r\n\r\nWith so many laser machine options out there, here’s why Epilog stands apart:\r\n\r\n- Designed and manufactured in Golden, CO, with precision and care.\r\n- Reliable, long-lasting CO2 RF metal laser tubes made in the USA.\r\n- US-based technical support and a 2-year warranty for peace of mind.\r\n- Safety-first design—no extra eye protection needed.\r\n- Innovative IRIS™ (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWd63lcq-W8wLKSR6lZ3prV-t81W3crf6NW28x4Mh349xdRW6d82XG1BKx2rW94jRqp1RB75lW84KFxg1yvCGdW665Bss21P35_V1pf417MDsKPW2rLMXG5GCFp8W6xt0hX9fyr0BW3y9pZK1skK2YW430JzB6N7S9JW8vDSD37w1WyRVnsDvL64t--dVQXWZQ3SydnVW4Fx9H99kz2KJW34p0WC7zdK5tW62xTg32prK45W7B9wSj4H37LRW6C7mZY3vzVnCW8C2jfy2mprTvW4ZQMXh587ZVjW5fd-bL7CFd21N2tdYFQ4B4bPW4j-6W43GXSXQW1-Mm2V2Z5ffpW43d7gY2lrHySVMlgdc4xclykW64H1cM77Bfdgf5PGvKd04 ) Camera Positioning for effortless accuracy.\r\n\r\nExperience the difference of a trusted partner with 36 years in the laser business.\r\n\r\nYouTube (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWcd3lcq-W6N1vHY6lZ3n9W2Yqqg-4FDPLJW8-73Tz8-nL0qW17PSm74nc-DpW38rtWs75gCjQW98cVpQ8k6GlCW5LPbKn2r_ryCW2hyZkl4kwc7MW1wChCD25RQqbW5znB30601GnSW7bPLX17fkSRFW8LDf-X1RjpjMW5Qbp7b9hJkgDW9kvpV59lrJfxW52G9X85znmmZW6SJ08n8qvYDyN4Sw7PgnLtrTW4NPs9n4PzprGW8W0dLQ5jsCvJW4WjR6282T-XHW6XCxQ73ZPJY1W7948W42Xt7csW8SG5Gw5JZCW3f7l056804 )\r\n\r\nFacebook (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWcd3lcq-W6N1vHY6lZ3nFW1b_F6V6ydg40W2cM4qb4xXCZ3W1kkdDn3HfHGFW4sTLy86x7Yx8W2rckgV6WG2mlW3zph0M3vmjJgN7f3NGH8nFFDW7871B64LKJDSN7tJKqX6k-hDW8_q9621YvXznN6WnjZdn4MpfW5_1Mrm7f674fW98vfb95MLyXbW8wG_Cs4qh7j0W7zX9wT44-9t9W4nCjH13xGk0NW21Ntr76LxJN_W5shQ_37750_zW15BgsH5ZL9vGN1Kz71dvVJyNW8Qt0kG8t2w-lW8DzMNq2FPxj4f7T0R1v04 )\r\n\r\nInstagram (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWcd3lcq-W6N1vHY6lZ3mTW3vTnjC5vl7N2W33s_p61jqQP-W2bS-5b97JdN6W2H4mVG63SYWMW5V2S9N4DQ47KT716g6sX1m9W3gWGfJ1_7sZmF3hRK3bCrq_W1KMTgV3tlYYfMbSTWb8cXkmW7hr9XV69l6mRW6nq8nK4zQYmjW4ThHRc482thNW3kzLt9588xZlW7wzqFW3SkrDMW5QYSj82qs1XXW8LRMYR2pGvdYW1TGhtz5t8BT2W2mc8_25VzkdCW1KqKpM1YG0LjN2RPhr-h8NB-N6TJhWnpN1DFf6fT2wK04 )\r\n\r\nX (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWbY3lcq-W69sMD-6lZ3lRW6dKTs86FM_hDW14nWj215r8CKN886mPzkh3-nW4z_m_l5HTCVrW5GtdYq8-6MvGW4J5G894yzLT2W1hFD2M4g9bfdTt6k77nN17LW3Q6xrJ1GV_MtW6NsGkz6q8VdLW6BR5mT8NwtSYW4VYRsd1p3KpLW8K_XYK6kGnQCW2PRyBG5JM_-pW1s060D4BSK30W41k7fn1KqL0YW12-zSX3QWM5VW9m56h36XKncRW261GCD3GSrjHW3NND8H8WXrc0f8YbRNv04 )\r\n\r\nLinkedIn (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWcd3lcq-W6N1vHY6lZ3kQW34tTtp2LqFJ7W4t4h0w2WTxK0W5hd8ZL5ZmVqmW8DzglV4bYGmGMhhx2XQ9L9rW71_1RS5rC9bJN4jY71FnSPrTVbFR0C2dk2WqV1KCNr8DccysW7s_Y4C3QBNzSW5Pj0wY7p86HzW7TPlTl3DkyrlW31FVgd1vVT0QW4fnzx18d8YZVW6MCMk-3nkwJDW2pZWL832f4_nW5CpFmZ8PbrKzV8g43N26R21KN764V3s3ph2zN1q8KpFqDrv3W1XpPQV1JrssBW92ZtW73z_jtwf6Zwby204 )\r\n\r\nPinterest (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWcd3lcq-W6N1vHY6lZ3p0N6TlndjpjXSgW78Xvqp7h3MB8W76x9Qm7cXNssN3QYNFmQ8vdkW8Zw3Gh4t6CtPN1fT7BhW4SbHW7zBs-h57Xk1TW6yxvz93jYq7wW6Tj2Ng38CdKvW86R3gY6rtnR2W3Gpcr68PTVzYW8vvynZ3Sk5YnW6QyLbW65Gmc-V9VCKJ2GQkm4W5wCFYK7ZTqD5VKwHpb2ySSzZW4S12WP3MTlfBW2-v97s7G7_HVW4WH4VT1w7WqmW6pMDSb69cSsBW6_Z3Ww7FhtWbW7kcB2_1l07xhf2Y-xLq04 )\r\n\r\nEmail (mailto:sales@epiloglaser.com)\r\n\r\nWebsite (https://d583HW04.na1.hubspotlinks.com/Ctc/W5+113/d583HW04/VX8dml2bqGKLW8WsB2J93c84sW7qxXbD5FRQtXN4jRWbY3lcq-W69sMD-6lZ3pjW3w1W5B13zgtKW3kg6fG9cp-sCW2hV7dN7t_xGDW5DKKjp4L_BRMW16pQZK5kB9htW26ZvwC50LrRyW6xL9d_23SyR8W2rClwS3ZvMMwW3g9w-13gyVcCW69WLq717qh-CN901nCN-KfqWW5G_gXP3nVBmmW3q1PYf1MyrDxW8ln3yT5prF9TN7k2-hddX3PxVjP23g7W0-P5W97gMhY811Mh8W84YCrN4b38p1W3hm7yG1DfZxZN2wzybHkWnBqf3srtRR04 )\r\n\r\nEpilog Laser, 16371 Table Mountain Parkway, Golden, Colorado 80403, USA, +1 303 277 1188\r\n\r\nUnsubscribe (https://hs-43785732.s.hubspotemail.net/hs/preferences-center/en/direct?data=W2nXS-N30h-z6W1Sqgkv1ZlM6BW21bMg04prvLBW41Cfql45x5PmW4fvPh44tpRWyW3QQrjV1SkJVzW3VtXN_3G_pktW4pK2gN1N3XZHW1N7f7m3SKfNmW1VfmbL1Z97ncW2nGNgT2vYx6KW41YVlg3jlwx8W2CvZ_S2YvLYPW2xWdHS2p72wXW2RhMkt2MP1dmW4tzzH93-0DsfW3K77_Y1NfWtcW47m4DN3QCGqSW2-p7qj2xMkM5W1Vd17K3j0FThW2CWHVy38l1S2W3gmC0R1NsPq-W4fRhbg45ykQqW2FrpJP4hN6GWW2r163N3NNZCKW2PRjN821q5MJW2Wgv_33ZHPnmW3VP6452t7zZ4W2nYLnC3M9rm0W1NkChh1LHdtfW1StF1Y3C7mbsW2p512z3dh6vWW3yNtHQ3bfKS7W3dyQrJ1W_Q9NW2YGvCG4kDwDDW3ZGXRL2w2jjmW2sQzWl3X_9NKW4rmwVD2D0vFcW3_Jp5F2r2hWtW3ZKvbL3Fccp_W3g94HY4fkcy5W1LxLBW3NCr8tW1VxJxR3T4bbcW2WnMDs3gnSNvW309gTK4pkhy3W2HYMJV386v9mW2PFHGW3BNNLPW2t3Pjd4rzk-vW1VjCm13VKSb4W4hsyyf4rm-Wb0&_hsenc=p2ANqtz-_lLNAelOaG779-7FHesCrg4_O09z6OFkU0K8SJ-bYl9_vFW6h9B5k1DXu4iakOTwn9sUBG8I5_d-O5ZXsCxFY6D6f11w&_hsmi=389828108 )\r\nManage preferences (https://hs-43785732.s.hubspotemail.net/hs/preferences-center/en/page?data=W2nXS-N30h-z6W1Sqgkv1ZlM6BW21bMg04prvLBW41Cfql45x5PmW4fvPh44tpRWyW3QQrjV1SkJVzW3VtXN_3G_pktW4pK2gN1N3XZHW1N7f7m3SKfNmW1VfmbL1Z97ncW2nGNgT2vYx6KW41YVlg3jlwx8W2CvZ_S2YvLYPW2xWdHS2p72wXW2RhMkt2MP1dmW4tzzH93-0DsfW3K77_Y1NfWtcW47m4DN3QCGqSW2-p7qj2xMkM5W1Vd17K3j0FThW2CWHVy38l1S2W3gmC0R1NsPq-W4fRhbg45ykQqW2FrpJP4hN6GWW2r163N3NNZCKW2PRjN821q5MJW2Wgv_33ZHPnmW3VP6452t7zZ4W2nYLnC3M9rm0W1NkChh1LHdtfW1StF1Y3C7mbsW2p512z3dh6vWW3yNtHQ3bfKS7W3dyQrJ1W_Q9NW2YGvCG4kDwDDW3ZGXRL2w2jjmW2sQzWl3X_9NKW4rmwVD2D0vFcW3_Jp5F2r2hWtW3ZKvbL3Fccp_W3g94HY4fkcy5W1LxLBW3NCr8tW1VxJxR3T4bbcW2WnMDs3gnSNvW309gTK4pkhy3W2HYMJV386v9mW2PFHGW3BNNLPW2t3Pjd4rzk-vW1VjCm13VKSb4W4hsyyf4rm-Wb0&_hsenc=p2ANqtz-_lLNAelOaG779-7FHesCrg4_O09z6OFkU0K8SJ-bYl9_vFW6h9B5k1DXu4iakOTwn9sUBG8I5_d-O5ZXsCxFY6D6f11w&_hsmi=389828108 )',0,0,0,0,0,0,'2025-11-13 18:46:30','2025-12-09 19:31:28','2025-12-09 19:31:28','2025-12-09 19:31:28',NULL,NULL,NULL),
(970,4,'<2923ec76f5a5e2db31c276ce52254c17@mavrix.one>',NULL,NULL,'Projection Update','jarrett@mavrix.one','Jarrett','Rick & Brian,\r\n\r\nPlease find attached the latest projections that have been updated for \r\nthe below changes:\r\n1) Container integration logic: the total kWh quantity per year for each \r\ncustomer now pulls the appropriate cell count for both packs and \r\ncontainers\r\n2) The hours per pack (costs) and packs per hour (capacity) now \r\nincorporate the correct conditional logic for each customer\r\n3) Linked constrained equipment resource requirement calculations (for \r\nphase-based production tied to shifts and staffing, incrementally \r\nstepping up proportionally to labor shifts per day) and unconstrained \r\nequipment resource requirement calculations (for theoretical maxes \r\n-i.e.: 100% equipment production beginning day 1) for battery module \r\nassembly lines\r\n\r\nIn cell CN:105 you will find revenue is now $751,700,607.14 compared to \r\nthe previous $861,250,667. This $109,550,059.86 difference is resulting \r\nfrom: A) Pack quantity changes from ongoing negotiations with customers, \r\nB) Changes to anticipated start dates, and, C) The cost for container \r\nintegration labor.\r\n\r\n From our discussions yesterday it makes more sense to have container \r\nintegration pricing as an additional and separate layer. I will add this \r\ninto the next iteration and circle back with container integration \r\nmatrix added. Let me know if any questions or feedback\r\n\r\n\r\n-- \r\nJarrett Brownfield\r\n\r\nCFO\r\n\r\nMavrix1: Manufacturing American Autonomy','Rick & Brian,\r\n\r\nPlease find attached the latest projections that have been updated for \r\nthe below changes:\r\n1) Container integration logic: the total kWh quantity per year for each \r\ncustomer now pulls the appropriate cell count for both packs and \r\ncontainers\r\n2) The hours per pack (costs) and packs per hour (capacity) now \r\nincorporate the correct conditional logic for each customer\r\n3) Linked constrained equipment resource requirement calculations (for \r\nphase-based production tied to shifts and staffing, incrementally \r\nstepping up proportionally to labor shifts per day) and unconstrained \r\nequipment resource requirement calculations (for theoretical maxes \r\n-i.e.: 100% equipment production beginning day 1) for battery module \r\nassembly lines\r\n\r\nIn cell CN:105 you will find revenue is now $751,700,607.14 compared to \r\nthe previous $861,250,667. This $109,550,059.86 difference is resulting \r\nfrom: A) Pack quantity changes from ongoing negotiations with customers, \r\nB) Changes to anticipated start dates, and, C) The cost for container \r\nintegration labor.\r\n\r\n From our discussions yesterday it makes more sense to have container \r\nintegration pricing as an additional and separate layer. I will add this \r\ninto the next iteration and circle back with container integration \r\nmatrix added. Let me know if any questions or feedback\r\n\r\n\r\n-- \r\nJarrett Brownfield\r\n\r\nCFO\r\n\r\nMavrix1: Manufacturing American Autonomy',0,0,0,0,0,0,'2025-11-13 19:47:39','2025-12-09 19:31:29','2025-12-09 19:31:29','2025-12-09 19:31:29',NULL,NULL,NULL),
(971,4,'<CAJO9__b8fF_=RoQn13z4HvMK+H0s1BKSF4AmbOF0Y+rAuLUY_Q@mail.gmail.com>',NULL,NULL,'Re: Maddox transformer quote Q208098-3, Q208098-4','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>This may be a cheaper option.</div><div><br></div><div>Will check with TJ on labor etc. </div><div><br></div><div>Lead Times:<div><br></div><div>N<b>ew stock: </b>I can get the 225 kVA units over to you in 3-5 business days. The 300 kVA unit takes 4 weeks to deliver.</div><div><br></div><div><b>Used stock: </b>both the 225 kVA and 400 kVA units are in stock, so 3-5 business days.</div><div><br></div><div>All of our used / remanufactured units come with the same 5-year warranty, as our new stock. Each unit goes through a rigorous inspection and testing process to ensure it performs to the same standards as new equipment.</div><div><br></div></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Nov 13, 2025 at 10:41 AM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Hello Gents,</div><div><br></div><div>Wanted to share an option for step down transformers.  </div><div><br></div><div>I&#39;ve shared our layout and name-plates with the company&#39;s engineering team.  This is what they suggested.  </div><div><br></div><div>Please see below and attached.  </div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <span dir=\"auto\">&lt;<a href=\"mailto:valentin@maddox.com\" target=\"_blank\">valentin@maddox.com</a>&gt;</span><br>Date: Thu, Nov 13, 2025 at 10:31 AM<br>Subject: Maddox transformer quote Q208098-3, Q208098-4<br>To: Jordan Wroblewski &lt;<a href=\"mailto:Jordan@lithiumbatterycompany.com\" target=\"_blank\">Jordan@lithiumbatterycompany.com</a>&gt;<br></div><br><br><div><div><div><div><div><font face=\"Arial, sans-serif\" style=\"line-height:20px\"><div><font style=\"line-height:20px\"><div><div><font style=\"line-height:20px\" face=\"verdana\">Jordan,<div><br></div><div><span style=\"font-weight:normal\"><p style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\">Attached is the transformer quote we talked about.</p><p style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\"><br></p><p style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\">Q208098-3 - NEW - $37,932.50</p><p style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\">Q208098-4 - USED - $29,852.00</p><br><p style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt\">I’ll call you in a moment to review it together.</p></span></div></font></div></div></font></div></font></div></div></div><br><div><span style=\"color:rgb(34,34,34);font-size:small;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400\">--</span><br><div dir=\"ltr\" style=\"color:rgb(34,34,34);font-size:small;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400\"> <table width=\"470\" style=\"font-size:small;width:470px\"><tbody><tr><td style=\"width:63px;padding-right:10px\"><a href=\"https://b949d4f4-01b4-41f6-90b5-2b2b029cbfa0.pipedrive.email/c/g433gq8e45/xyoolwjm3y/vygmlv78ly/0?redirectUrl=http%3A%2F%2Fwww.maddoxtransformer.com%2F%3Futm_source%3Demail_signature%26utm_medium%3Demail%26utm_campaign%3DEmail_Signature_Logo%26utm_content%3DSignature_Logo&amp;hash=hGGzCoh0iFLCIl46c-b8Bo5C_PNEWdPOt-gSXSMH0sw\" style=\"color:rgb(17,85,204)\" rel=\"noopener noreferrer\" alt=\"linkto:http://www.maddoxtransformer.com/?utm_source=email_signature&amp;utm_medium=email&amp;utm_campaign=Email_Signature_Logo&amp;utm_content=Signature_Logo\" target=\"_blank\"><img alt=\"Maddox\" height=\"70\" src=\"https://storage.googleapis.com/signaturesatori/customer-C01e6b1qz/images/ZDkas.png\" width=\"70\" style=\"border-width: initial; border-style: none;\"></a></td><td style=\"border-right:1px solid rgb(51,51,51);width:7px\"> </td><td style=\"padding-right:10px;padding-left:10px;width:380px\"><div style=\"margin-bottom:5px\"><table width=\"470\" style=\"width:415px;margin-top:5px\"><tbody><tr><td style=\"width:403px\"><span><span style=\"color:rgb(0,0,0)\"><strong><strong>Valentin</strong></strong></span><span style=\"color:rgb(252,130,77)\"><span style=\"font-stretch:normal\"><b> </b></span></span><span style=\"color:rgb(0,0,0)\"><strong><strong>Morar</strong></strong></span></span> </td></tr><tr><td style=\"width:403px\"><span style=\"color:rgb(127,140,141)\">Sales Representative </span>|<span style=\"color:rgb(127,140,141)\"> Maddox Industrial Transformer</span></td></tr><tr><td style=\"width:403px\"><span><span style=\"color:rgb(127,140,141)\">Phone:</span><span style=\"color:rgb(246,94,30)\"> </span></span>(360) 360-5558</td></tr><tr><td style=\"width:403px\"><span><span style=\"color:rgb(246,94,30)\"><a href=\"https://b949d4f4-01b4-41f6-90b5-2b2b029cbfa0.pipedrive.email/c/g433gq8e45/xyoolwjm3y/vygmlv78ly/1?redirectUrl=https%3A%2F%2Fwww.linkedin.com%2Fcompany%2Fmaddox-industrial-transformer%2F&amp;hash=6j6L6ZsUZl7uFkE5C7Epwp4ej9KWWu43HHmvWTiY9xo\" style=\"color:rgb(246,94,30)\" rel=\"noopener noreferrer\" alt=\"linkto:https://www.linkedin.com/company/maddox-industrial-transformer/\" target=\"_blank\"><img alt=\"linkedin icon\" height=\"16\" src=\"https://storage.googleapis.com/signaturesatori/icons/sq/16/000000/linkedin.png\" width=\"16\" style=\"border-width: initial; border-style: none;\"></a></span>  <a href=\"https://b949d4f4-01b4-41f6-90b5-2b2b029cbfa0.pipedrive.email/c/g433gq8e45/xyoolwjm3y/vygmlv78ly/2?redirectUrl=https%3A%2F%2Fwww.youtube.com%2Fchannel%2FUCsIbkb-vYPfwv4Bft3nJcyA&amp;hash=71v-5UKemobnx5DGEEjOOJWPQfBBdGeKmHUXFGNcH8I\" style=\"color:rgb(17,85,204)\" rel=\"noopener noreferrer\" alt=\"linkto:https://www.youtube.com/channel/UCsIbkb-vYPfwv4Bft3nJcyA\" target=\"_blank\"><img alt=\"youtube icon\" height=\"16\" src=\"https://storage.googleapis.com/signaturesatori/icons/sq/16/000000/youtube.png\" width=\"16\" style=\"border-width: initial; border-style: none;\"></a></span></td></tr></tbody></table></div></td></tr></tbody></table><br><a href=\"https://b949d4f4-01b4-41f6-90b5-2b2b029cbfa0.pipedrive.email/c/g433gq8e45/xyoolwjm3y/vygmlv78ly/3?redirectUrl=https%3A%2F%2Fg.page%2Fr%2FCX_zAm2M4ZhrEB0%2Freview&amp;hash=jMY9gVweIj0S_4OLduC2xpzKKBGEFGe_QLatIEWbG2I\" style=\"color:rgb(17,85,204)\" rel=\"noopener noreferrer\" alt=\"linkto:https://g.page/r/CX_zAm2M4ZhrEB0/review\" target=\"_blank\"><img alt=\"Google Review\" height=\"44\" src=\"https://storage.googleapis.com/signaturesatori/customer-C01e6b1qz/images/XcfN0.jpg\" width=\"200\" style=\"border-width: initial; border-style: none;\"></a><br> <br><br></div><br></div></div></div><img src=\"https://b949d4f4-01b4-41f6-90b5-2b2b029cbfa0.pipedrive.email/o/g433gq8e45/xyoolwjm3y/vygmlv78ly?cache_buster=1763047874493\" width=\"1\" height=\"1\" alt=\"\" style=\"display: none; border: 0px;\">\r\n</div></div>\r\n</blockquote></div>','This may be a cheaper option.\r\n\r\nWill check with TJ on labor etc.\r\n\r\nLead Times:\r\n\r\nN*ew stock: *I can get the 225 kVA units over to you in 3-5 business days.\r\nThe 300 kVA unit takes 4 weeks to deliver.\r\n\r\n*Used stock: *both the 225 kVA and 400 kVA units are in stock, so 3-5\r\nbusiness days.\r\n\r\nAll of our used / remanufactured units come with the same 5-year warranty,\r\nas our new stock. Each unit goes through a rigorous inspection and testing\r\nprocess to ensure it performs to the same standards as new equipment.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Thu, Nov 13, 2025 at 10:41 AM Jordan Wroblewski <\r\njordan@lithiumbatterycompany.com> wrote:\r\n\r\n> Hello Gents,\r\n>\r\n> Wanted to share an option for step down transformers.\r\n>\r\n> I\'ve shared our layout and name-plates with the company\'s engineering\r\n> team.  This is what they suggested.\r\n>\r\n> Please see below and attached.\r\n>\r\n>\r\n> Jordan G. Wroblewski\r\n>\r\n> Partner | President\r\n>\r\n> Lithium Battery Company\r\n>\r\n> Direct: (917) 266-5336\r\n>\r\n> *jordan@lithiumbatterycompany.com\r\n> <Jarrett.brownfield@trackmastermobility.com>*\r\n>\r\n> Lithium Battery Company <http://lithiumbatterycompany.com>\r\n>\r\n>\r\n> ---------- Forwarded message ---------\r\n> From: <valentin@maddox.com>\r\n> Date: Thu, Nov 13, 2025 at 10:31 AM\r\n> Subject: Maddox transformer quote Q208098-3, Q208098-4\r\n> To: Jordan Wroblewski <Jordan@lithiumbatterycompany.com>\r\n>\r\n>\r\n> Jordan,\r\n>\r\n> Attached is the transformer quote we talked about.\r\n>\r\n>\r\n> Q208098-3 - NEW - $37,932.50\r\n>\r\n> Q208098-4 - USED - $29,852.00\r\n>\r\n> I’ll call you in a moment to review it together.\r\n>\r\n> --\r\n>\r\n> [image: Maddox]\r\n> <https://b949d4f4-01b4-41f6-90b5-2b2b029cbfa0.pipedrive.email/c/g433gq8e45/xyoolwjm3y/vygmlv78ly/0?redirectUrl=http%3A%2F%2Fwww.maddoxtransformer.com%2F%3Futm_source%3Demail_signature%26utm_medium%3Demail%26utm_campaign%3DEmail_Signature_Logo%26utm_content%3DSignature_Logo&hash=hGGzCoh0iFLCIl46c-b8Bo5C_PNEWdPOt-gSXSMH0sw>\r\n>\r\n> *Valentin* *Morar*\r\n> Sales Representative | Maddox Industrial Transformer\r\n> Phone: (360) 360-5558\r\n> [image: linkedin icon]\r\n> <https://b949d4f4-01b4-41f6-90b5-2b2b029cbfa0.pipedrive.email/c/g433gq8e45/xyoolwjm3y/vygmlv78ly/1?redirectUrl=https%3A%2F%2Fwww.linkedin.com%2Fcompany%2Fmaddox-industrial-transformer%2F&hash=6j6L6ZsUZl7uFkE5C7Epwp4ej9KWWu43HHmvWTiY9xo>\r\n>   [image: youtube icon]\r\n> <https://b949d4f4-01b4-41f6-90b5-2b2b029cbfa0.pipedrive.email/c/g433gq8e45/xyoolwjm3y/vygmlv78ly/2?redirectUrl=https%3A%2F%2Fwww.youtube.com%2Fchannel%2FUCsIbkb-vYPfwv4Bft3nJcyA&hash=71v-5UKemobnx5DGEEjOOJWPQfBBdGeKmHUXFGNcH8I>\r\n>\r\n> [image: Google Review]\r\n> <https://b949d4f4-01b4-41f6-90b5-2b2b029cbfa0.pipedrive.email/c/g433gq8e45/xyoolwjm3y/vygmlv78ly/3?redirectUrl=https%3A%2F%2Fg.page%2Fr%2FCX_zAm2M4ZhrEB0%2Freview&hash=jMY9gVweIj0S_4OLduC2xpzKKBGEFGe_QLatIEWbG2I>\r\n>\r\n>\r\n>\r\n>',0,0,0,0,0,0,'2025-11-13 21:37:17','2025-12-09 19:31:30','2025-12-09 19:31:30','2025-12-09 19:31:30',NULL,NULL,NULL),
(972,4,'<CAJO9__YhMqg=J5cxkYUTqrgN7or0kM=g+VG=62-c05NmS+CWoA@mail.gmail.com>',NULL,NULL,'The Garage - Architectural Drawings - CD set','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div><br clear=\"all\"></div><div class=\"gmail_chip gmail_drive_chip\" style=\"width:386px;height:20px;max-height:20px;background-color:rgb(245,245,245);margin:6px 0px;padding:10px;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;font-size-adjust:none;font-kerning:auto;font-feature-settings:normal;font-weight:400;font-stretch:normal;font-size:14px;line-height:20px;font-family:&quot;Google Sans&quot;,sans-serif;border:1px solid rgb(221,221,221)\"><a href=\"https://drive.google.com/file/d/1LsFO6jyi0RjDpjbl461TtutM8MqeLX6G/view?usp=drive_web\" target=\"_blank\" style=\"color:rgb(32,33,36);display:inline-block;max-width:356px;overflow:hidden;text-overflow:ellipsis;text-decoration-line:none;border:none\" aria-label=\"APPROVED-BLD-24-0510827-REV1 (1).pdf\"><img style=\"vertical-align: text-bottom; border: none; padding-right: 10px; height: 20px;\" alt=\"\" src=\"https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png\"> <span dir=\"ltr\" style=\"vertical-align:bottom;text-decoration:none\">APPROVED-BLD-24-0510827-REV1 (1).pdf</span></a></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div></div>',' APPROVED-BLD-24-0510827-REV1 (1).pdf\r\n<https://drive.google.com/file/d/1LsFO6jyi0RjDpjbl461TtutM8MqeLX6G/view?usp=drive_web>\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>',0,0,0,0,0,0,'2025-11-13 22:06:58','2025-12-09 19:31:33','2025-12-09 19:31:33','2025-12-09 19:31:33',NULL,NULL,NULL),
(973,4,'<CAJO9__bYBA10NrHqKgCZDyJk_rKEHuMaJ-Ysexzrfi4bx8rP3g@mail.gmail.com>',NULL,NULL,'Forge Nano - Red River Project - & Term Sheet','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\">Hello Gentlemen,<br><br>I spoke with James this week regarding the Red River project in Texas. It appears the Military intends to handle the entire operation internally at their facility.<br><br>Their preferred approach is to purchase the necessary equipment directly from us and then have us train their in-house team. Given our current operational commitments, pursuing this approach doesn&#39;t align with our current strategy or capacity.  Unless we want to sell them equipment. <br><br>It seems the proposal from Forge Nano would be a better fit for their needs. Forge Nano&#39;s angle involves supplying them with everything required to manufacture their cells at the Red River location, following the setup of a new production facility.<br><br>Second part of this email is the term sheet attached with Forge Nano.  The term sheet lays out the roadmap for LBC to source US-made lithium-ion cells from Forge Nano across development and production phases, with commitments expected in the final agreement. It also outlines the mutual interest in joint development and commercialization of battery products and leaves open the door for other future collaborations as a co-packer for FN.  <div><br></div><div>Let me know your thoughts.</div><div><br></div><div>Best, <br><br>Jordan G. Wroblewski<br>Partner | President <br>Lithium Battery Company<br>Direct: (917) 266-5336<br><a href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a><br><a href=\"http://lithiumbatterycompany.com\">Lithium Battery Company</a></div></div>','Hello Gentlemen,\r\n\r\nI spoke with James this week regarding the Red River project in Texas. It\r\nappears the Military intends to handle the entire operation internally at\r\ntheir facility.\r\n\r\nTheir preferred approach is to purchase the necessary equipment directly\r\nfrom us and then have us train their in-house team. Given our current\r\noperational commitments, pursuing this approach doesn\'t align with our\r\ncurrent strategy or capacity.  Unless we want to sell them equipment.\r\n\r\nIt seems the proposal from Forge Nano would be a better fit for their\r\nneeds. Forge Nano\'s angle involves supplying them with everything required\r\nto manufacture their cells at the Red River location, following the setup\r\nof a new production facility.\r\n\r\nSecond part of this email is the term sheet attached with Forge Nano.  The\r\nterm sheet lays out the roadmap for LBC to source US-made lithium-ion cells\r\nfrom Forge Nano across development and production phases, with commitments\r\nexpected in the final agreement. It also outlines the mutual interest in\r\njoint development and commercialization of battery products and leaves open\r\nthe door for other future collaborations as a co-packer for FN.\r\n\r\nLet me know your thoughts.\r\n\r\nBest,\r\n\r\nJordan G. Wroblewski\r\nPartner | President\r\nLithium Battery Company\r\nDirect: (917) 266-5336\r\njordan@lithiumbatterycompany.com\r\nLithium Battery Company <http://lithiumbatterycompany.com>',0,0,0,0,0,0,'2025-11-14 16:11:52','2025-12-09 19:31:33','2025-12-09 19:31:33','2025-12-09 19:31:33',NULL,NULL,NULL),
(974,4,'<CAGOCFXgB4gQLkTVmwCBM05WTA_foGwzCc9CTJNEN_Tk74Wu8Fw@mail.gmail.com>',NULL,NULL,'ReEngineered Security','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Look at New Security Tab vs Old Security</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div>','Look at New Security Tab vs Old Security\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>',0,0,0,0,0,0,'2025-11-14 18:10:52','2025-12-09 19:31:34','2025-12-09 19:31:34','2025-12-09 19:31:34',NULL,NULL,NULL),
(975,4,'<N5VdOXdISxC3nwJXvYgAPg@geopod-ismtpd-10>',NULL,NULL,'New solicitations posted on DIU.mil','info@diu.mil','Defense Innovation Unit','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html data-editor-version=\"2\" class=\"sg-campaigns\" xmlns=\"http://www.w3.org/1999/xhtml\">\r\n    <head>\r\n      <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n      <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1\">\r\n      <!--[if !mso]><!-->\r\n      <meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge\">\r\n      <!--<![endif]-->\r\n      <!--[if (gte mso 9)|(IE)]>\r\n      <xml>\r\n        <o:OfficeDocumentSettings>\r\n          <o:AllowPNG/>\r\n          <o:PixelsPerInch>96</o:PixelsPerInch>\r\n        </o:OfficeDocumentSettings>\r\n      </xml>\r\n      <![endif]-->\r\n      <!--[if (gte mso 9)|(IE)]>\r\n  <style type=\"text/css\">\r\n    body {width: 600px;margin: 0 auto;}\r\n    table {border-collapse: collapse;}\r\n    table, td {mso-table-lspace: 0pt;mso-table-rspace: 0pt;}\r\n    img {-ms-interpolation-mode: bicubic;}\r\n  </style>\r\n<![endif]-->\r\n      <style type=\"text/css\">\r\n    body, p, div {\r\n      font-family: arial,helvetica,sans-serif;\r\n      font-size: 14px;\r\n    }\r\n    body {\r\n      color: #000000;\r\n    }\r\n    body a {\r\n      color: #2483c5;\r\n      text-decoration: none;\r\n    }\r\n    p { margin: 0; padding: 0; }\r\n    table.wrapper {\r\n      width:100% !important;\r\n      table-layout: fixed;\r\n      -webkit-font-smoothing: antialiased;\r\n      -webkit-text-size-adjust: 100%;\r\n      -moz-text-size-adjust: 100%;\r\n      -ms-text-size-adjust: 100%;\r\n    }\r\n    img.max-width {\r\n      max-width: 100% !important;\r\n    }\r\n    .column.of-2 {\r\n      width: 50%;\r\n    }\r\n    .column.of-3 {\r\n      width: 33.333%;\r\n    }\r\n    .column.of-4 {\r\n      width: 25%;\r\n    }\r\n    ul ul ul ul  {\r\n      list-style-type: disc !important;\r\n    }\r\n    ol ol {\r\n      list-style-type: lower-roman !important;\r\n    }\r\n    ol ol ol {\r\n      list-style-type: lower-latin !important;\r\n    }\r\n    ol ol ol ol {\r\n      list-style-type: decimal !important;\r\n    }\r\n    @media screen and (max-width:480px) {\r\n      .preheader .rightColumnContent,\r\n      .footer .rightColumnContent {\r\n        text-align: left !important;\r\n      }\r\n      .preheader .rightColumnContent div,\r\n      .preheader .rightColumnContent span,\r\n      .footer .rightColumnContent div,\r\n      .footer .rightColumnContent span {\r\n        text-align: left !important;\r\n      }\r\n      .preheader .rightColumnContent,\r\n      .preheader .leftColumnContent {\r\n        font-size: 80% !important;\r\n        padding: 5px 0;\r\n      }\r\n      table.wrapper-mobile {\r\n        width: 100% !important;\r\n        table-layout: fixed;\r\n      }\r\n      img.max-width {\r\n        height: auto !important;\r\n        max-width: 100% !important;\r\n      }\r\n      a.bulletproof-button {\r\n        display: block !important;\r\n        width: auto !important;\r\n        font-size: 80%;\r\n        padding-left: 0 !important;\r\n        padding-right: 0 !important;\r\n      }\r\n      .columns {\r\n        width: 100% !important;\r\n      }\r\n      .column {\r\n        display: block !important;\r\n        width: 100% !important;\r\n        padding-left: 0 !important;\r\n        padding-right: 0 !important;\r\n        margin-left: 0 !important;\r\n        margin-right: 0 !important;\r\n      }\r\n      .social-icon-column {\r\n        display: inline-block !important;\r\n      }\r\n    }\r\n  </style>\r\n      <!--user entered Head Start--><!--End Head user entered-->\r\n    </head>\r\n    <body>\r\n      <center class=\"wrapper\" data-link-color=\"#2483c5\" data-body-style=\"font-size:14px; font-family:arial,helvetica,sans-serif; color:#000000; background-color:#ffffff;\">\r\n        <div class=\"webkit\">\r\n          <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"wrapper\" bgcolor=\"#ffffff\">\r\n            <tr>\r\n              <td valign=\"top\" bgcolor=\"#ffffff\" width=\"100%\">\r\n                <table width=\"100%\" role=\"content-container\" class=\"outer\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                  <tr>\r\n                    <td width=\"100%\">\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n                        <tr>\r\n                          <td>\r\n                            <!--[if mso]>\r\n    <center>\r\n    <table><tr><td width=\"600\">\r\n  <![endif]-->\r\n                                    <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:100%; max-width:600px;\" align=\"center\">\r\n                                      <tr>\r\n                                        <td role=\"modules-container\" style=\"padding:10px 18px 10px 18px; color:#000000; text-align:left;\" bgcolor=\"#ecf7ff\" width=\"100%\" align=\"left\"><table class=\"module preheader preheader-hide\" role=\"module\" data-type=\"preheader\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"display: none !important; mso-hide: all; visibility: hidden; opacity: 0; color: transparent; height: 0; width: 0;\">\r\n    <tr>\r\n      <td role=\"module-content\">\r\n        <p>There are two new solicitations posted on our website.</p>\r\n      </td>\r\n    </tr>\r\n  </table><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cfd0cb98-cae3-4099-bb9b-d518af9861a8\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:10px 18px 10px 18px;\" valign=\"top\" align=\"center\">\r\n          <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:25% !important; width:25%; height:auto !important;\" width=\"141\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/d5a29904-77e8-41cd-90b1-cac684cf98fc/1281x1281.png\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"divider\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"257cee2c-17b5-4325-a24f-cbc103c5619a.1.1.1.2.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 18px 0px 18px;\" role=\"module-content\" height=\"100%\" valign=\"top\" bgcolor=\"#d4eafb\">\r\n          <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" height=\"3px\" style=\"line-height:3px; font-size:3px;\">\r\n            <tbody>\r\n              <tr>\r\n                <td style=\"padding:0px 0px 3px 0px;\" bgcolor=\"#2483C5\"></td>\r\n              </tr>\r\n            </tbody>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"1b2e3e3f-7a4f-4ae9-858a-b364347e6b2b.1\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#FFFFFF\" data-distribution=\"1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"544\" style=\"width:544px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"12a76bcf-49d1-4289-8902-3dec45d9306a\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: center\"><span style=\"color: #454546; font-family: arial, helvetica, sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: center; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; background-color: rgb(255, 255, 255); font-size: 18px\">New Solicitation Announcement</span></div>\r\n<div style=\"font-family: inherit; text-align: center\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-alternates: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; background-color: rgb(255, 255, 255); color: #7c7e7f; font-family: arial, helvetica, sans-serif; font-size: 12px\">There are two new solicitations posted on our website. It is easy to respond with a 5-page paper or 15-slide slide deck. These limits are not requirements but are strongly recommended. Additional guidance about what we look for in a proposal is </span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILh-2Bq1vMh5oO7-2Blz-2BUvdb0irmCIWB37BuouaFHZh9mjyapo40PS1xJmwqEWgArI7j9CRSrXpEexhWeQDXTY07pHfWNPHo7vlnb-2FhFx9HUTh4e9aYOlxqtqQGH9u1buGgAJ8BabEvBziVw-2FSowa6SMdLw-3DOQeo_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSU43uL4uzrylYTPytGyZ4aLf-2BTHddyz0lZsAB2irGu79DxEAsOSDiv-2BkuWRncXCHc-2FsgG7Ao-2Bnv9cQlWk9VtM80GSWHcF-2FMfrNKrd52kEN9qRZwBy58XoWE-2F23iTpDEF5WUq75c3S4dMdMfl-2FzE1P-2Bz6cAZGr-2B83wRGMDqaTyWtyEcK-2BlHdNTzJfCpVXO0NoNffeuIcHBEPwuDZFtG7y523DSUKiMFK2Am9UqmupFZIjbrFwiT9SxDsRQ6oA95F4Q-2Bz8B9zjzh0STKH1ZOhFtTLd6tMkr-2FkoovXyq6ceJWh9fd4UBU9PJFUbKjRNjWRcG1TRIGKliF-2BgPbiFQOTJQhb2B2cwnTLkQg53MavtEG2w7ckkAytVLiMKQH7Hquik4C507CUie0J367FS5aIF6YcUP6GXunlJI6hbB7qwjCXk3lp-2Bkwhh2rMYwMJkm3VSEB7oDKciJn-2BwImZvfbCQ4fkTW4BUbyHoB7ypsIflsntgjd2aC7ikkM98cg5s9a4Ur5OK4tHJaew5bQ74p-2BC52Y3a92kPPSMNcVNVC6HoRs4WS4IsbUYTlwmi2LpgLXdFPv6Csl-2FtY3tvtmgWs-2BacetNDbLWTbd9qLLHjNRqVvsvKdr0-2FSGvWIN7bevWKUA4zj8wkkBMmYBhyKyZDJaejx3msDeVmg2hny63cDoedkurDrK1-2FSSDRXhF9HW52F8x7xotRVPKgGT7s37H2X4aJmVIz9Tp6pgD7U-2BGg5sApsDFnCG-2F4y8Y-2FM9hSy9SfdoZBncqP11OWBLs22-2BHFmKmDZ0H3O-2F2BF31E7rhoCMqDhuirG1P6Bkj358TcowlsGpVung-3D-3D\"><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-alternates: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; background-color: rgb(255, 255, 255); color: #01a1f1; font-family: arial, helvetica, sans-serif; font-size: 12px\"><u>available </u></span><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; outline-color: initial; outline-style: none; outline-width: initial; text-decoration-line: none; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; transition-behavior: normal; transition-duration: 0.3s; transition-timing-function: ease; transition-delay: 0s; transition-property: color; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); color: #01a1f1; font-family: arial, helvetica, sans-serif; font-size: 12px\"><u>here</u></span></a><span style=\"box-sizing: border-box; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-variant-alternates: inherit; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; vertical-align: baseline; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; background-color: rgb(255, 255, 255); color: #7c7e7f; font-family: arial, helvetica, sans-serif; font-size: 12px\">. Our goal is to award an initial contract within 60-90 days of solicitation closure. Solicitation details and a link to the submission page are available below.</span><span style=\"font-family: arial, helvetica, sans-serif; font-size: 12px\"><br>\r\n</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"1b2e3e3f-7a4f-4ae9-858a-b364347e6b2b\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 10px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#FFFFFF\" data-distribution=\"2,1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"362\" style=\"width:362px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2bb08414-727d-4668-851a-a0e1e3708ed6\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 10px 18px 10px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: left\"><span style=\"color: #2483c5; font-family: arial, helvetica, sans-serif; font-size: 18px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline\">Barracks Resilience Through Industrialized Construction (BR-IC)</span></div>\r\n<div style=\"font-family: inherit; text-align: left\"><br></div>\r\n<div style=\"font-family: inherit; text-align: start\"><br></div>\r\n<div style=\"font-family: inherit; text-align: start\"><span style=\"font-optical-sizing: auto; font-weight: 300; font-style: normal; font-variation-settings: &quot;slnt&quot; 0; white-space-collapse: collapse; text-wrap-mode: wrap; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; line-height: 1.4; margin-bottom: 1.8rem; margin-top: 0.5rem; max-width: 58rem; list-style-position: inherit; background-color: transparent; font-family: arial, helvetica, sans-serif; font-size: 12px; color: #7c7e7f\">The Department of War (DoW) faces a critical challenge in modernizing its aging infrastructure, particularly barracks, which continue to degrade due to poor environmental conditions, structural inefficiencies, and outdated building systems. Issues such as mold, pests, and inadequate HVAC performance directly affect the health, safety, and morale of service members, ultimately diminishing force readiness and retention.</span></div>\r\n<div style=\"font-family: inherit; text-align: start\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-optical-sizing: auto; font-weight: 300; font-style: normal; font-variation-settings: &quot;slnt&quot; 0; white-space-collapse: collapse; text-wrap-mode: wrap; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; line-height: 1.4; margin-bottom: 1.8rem; margin-top: 0.5rem; max-width: 58rem; list-style-position: inherit; background-color: transparent; font-family: arial, helvetica, sans-serif; font-size: 12px; color: #7c7e7f\">Current military construction (MILCON) processes are characterized by lengthy design cycles, fragmented delivery models, and escalating costs. These legacy approaches cannot meet the speed or scalability required to align infrastructure modernization with operational tempo and strategic readiness goals.&nbsp;</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-optical-sizing: auto; font-weight: 300; font-style: normal; font-variation-settings: &quot;slnt&quot; 0; white-space-collapse: collapse; text-wrap-mode: wrap; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; line-height: 1.4; margin-bottom: 1.8rem; margin-top: 0.5rem; max-width: 58rem; list-style-position: inherit; background-color: transparent; font-family: arial, helvetica, sans-serif; font-size: 12px; color: #7c7e7f\">To address these challenges, the DoW seeks to prototype and scale advanced manufacturing and industrialized construction (IC) solutions capable of delivering high-quality, energy-efficient, and resilient facilities at accelerated timelines and reduced lifecycle costs. The objective is to establish repeatable, modular design and construction methodologies that can be rapidly deployed across installations—improving quality of life and ensuring the warfighter’s environment matches the standard of excellence expected on the battlefield.</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9t-2FpmIQ2AHbGPIFLz10VCJYb0u8ELdaYplqw5Wig8ptTp0QQT-2BHx-2FkqiNFovk7SnGBIf31IkcyjbSLrAa8F8mV34qHTKB54S5aVb21jmQotkdImH_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSU43uL4uzrylYTPytGyZ4aLf-2BTHddyz0lZsAB2irGu79DxEAsOSDiv-2BkuWRncXCHc-2FsgG7Ao-2Bnv9cQlWk9VtM80GSWHcF-2FMfrNKrd52kEN9qRZwBy58XoWE-2F23iTpDEF5WUq75c3S4dMdMfl-2FzE1P-2Bz6cAZGr-2B83wRGMDqaTyWtyEcK-2BlHdNTzJfCpVXO0NoNffeuIcHBEPwuDZFtG7y523DSUKiMFK2Am9UqmupFZIjbrFwiT9SxDsRQ6oA95F4Q-2Bz8B9zjzh0STKH1ZOhFtTLd6tMkr-2FkoovXyq6ceJWh9fd4UBU9PJFUbKjRNjWRcG1TRIGKliF-2BgPbiFQOTJQhb2B2cwnTLkQg53MavtEG2w7ckkAytVLiMKQH7Hquik4C507CUie0J367FS5aIF6YcUP6GXunlJI6hbB7qwjCXk3lp-2Bkwhh2rMYwMJkm3VSEB7oDKciJn-2BwImZvfbCQ4fkTW4BUbyHoB7ypsIflsntgjd2aC7ikkM98cg5s9a4Ur5OK4tHJaew5bQ74p-2BC52Y3a92kPPSMNcVNVC6HoRs4WS4IsbUYTlwmi2LpgLXdFPv6Csl-2FtY3tvtmgWs-2BacetNDbLWTbd9qLLHjNRqVvsvKdr0-2FSGvWIN7bevWKUA4zj8wkkBMmYBhyKyZDJaejx3k3N8WcaV674AOzCd3viYAHWwS9lyYJeyEze-2FKdPY4g4ihaR1H6avSTb0WwzVm5F1K-2F2H3dMngt9de0KZivDROIw03wfno9pQbZEE85cp9rKjxrUJu1pPof9INTOmoRg-2B0YnMrgSIKs7LnXl9qLfagcKt-2FrSrLBbbfOKyzOOfFEjQ-3D-3D\"><span style=\"background-color: transparent; font-weight: 400; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; font-variant-emoji: normal; text-decoration-line: none; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; vertical-align: baseline; white-space-collapse: preserve; text-wrap-mode: wrap; font-family: arial, helvetica, sans-serif; font-size: 12px; color: #2483c5\"><strong>Learn more</strong></span><span style=\"background-color: transparent; font-weight: 400; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; font-variant-emoji: normal; text-decoration-line: none; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; vertical-align: baseline; white-space-collapse: preserve; text-wrap-mode: wrap; font-family: arial, helvetica, sans-serif; font-size: 12px; color: #7c7e7f\"><strong>.</strong></span></a></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"181\" style=\"width:181px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"4fa31850-56ff-4e7f-985c-2dd2d58a3cef\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>Submission Deadline:</strong></span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">25 Nov 2025</span><span style=\"font-family: arial, helvetica, sans-serif; font-size: 12px\"><br>\r\n</span><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">23:59:59 U.S. Eastern Time</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"module\" data-role=\"module-button\" data-type=\"button\" role=\"module\" style=\"table-layout:fixed;\" width=\"100%\" data-muid=\"621468ff-bdcc-4d55-8cd5-838691427b54\">\r\n      <tbody>\r\n        <tr>\r\n          <td align=\"left\" bgcolor=\"\" class=\"outer-td\" style=\"padding:0px 0px 0px 0px;\">\r\n            <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"wrapper-mobile\" style=\"text-align:center;\">\r\n              <tbody>\r\n                <tr>\r\n                <td align=\"center\" bgcolor=\"#2483C5\" class=\"inner-td\" style=\"border-radius:6px; font-size:16px; text-align:left; background-color:inherit;\">\r\n                  <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9t-2FpmIQ2AHbGPIFLz10VCJYb0u8ELdaYplqw5Wig8ptTp0QQT-2BHx-2FkqiNFovk7SnGBIf31IkcyjbSLrAa8F8mV34qHTKB54S5aVb21jmQotkaIJ0_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSU43uL4uzrylYTPytGyZ4aLf-2BTHddyz0lZsAB2irGu79DxEAsOSDiv-2BkuWRncXCHc-2FsgG7Ao-2Bnv9cQlWk9VtM80GSWHcF-2FMfrNKrd52kEN9qRZwBy58XoWE-2F23iTpDEF5WUq75c3S4dMdMfl-2FzE1P-2Bz6cAZGr-2B83wRGMDqaTyWtyEcK-2BlHdNTzJfCpVXO0NoNffeuIcHBEPwuDZFtG7y523DSUKiMFK2Am9UqmupFZIjbrFwiT9SxDsRQ6oA95F4Q-2Bz8B9zjzh0STKH1ZOhFtTLd6tMkr-2FkoovXyq6ceJWh9fd4UBU9PJFUbKjRNjWRcG1TRIGKliF-2BgPbiFQOTJQhb2B2cwnTLkQg53MavtEG2w7ckkAytVLiMKQH7Hquik4C507CUie0J367FS5aIF6YcUP6GXunlJI6hbB7qwjCXk3lp-2Bkwhh2rMYwMJkm3VSEB7oDKciJn-2BwImZvfbCQ4fkTW4BUbyHoB7ypsIflsntgjd2aC7ikkM98cg5s9a4Ur5OK4tHJaew5bQ74p-2BC52Y3a92kPPSMNcVNVC6HoRs4WS4IsbUYTlwmi2LpgLXdFPv6Csl-2FtY3tvtmgWs-2BacetNDbLWTbd9qLLHjNRqVvsvKdr0-2FSGvWIN7bevWKUA4zj8wkkBMmYBhyKyZDJaejx3mn0UTk430v9D43pjIbG3t1Bv8-2BRpFAWBozrwFgLUm7im2BLuk7e40VXL3oiCZFcSXWdaTR9TB1vw4BmXVhMiHXsycEkli4Jw8UZDo8YvEBXvVXeMlE7L1jow9gAZWRCZ9EGHKOog-2BRvN38yKQOUMO12gAF4L2D4-2BIyD9u7rFM9Iw-3D-3D\" style=\"background-color:#2483C5; border:1px solid #2483C5; border-color:#2483C5; border-radius:6px; border-width:1px; color:#ffffff; display:inline-block; font-size:12px; font-weight:bold; letter-spacing:0px; line-height:normal; padding:12px 18px 12px 18px; text-align:center; text-decoration:none; border-style:solid;\" target=\"_blank\">Learn more</a>\r\n                </td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n          </td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"cab88a27-e54b-4835-97c3-d5329a1b1355\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 30px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"100%\" role=\"module\" data-type=\"columns\" style=\"padding:0px 0px 0px 0px;\" bgcolor=\"#FFFFFF\" data-distribution=\"2,1\">\r\n    <tbody>\r\n      <tr role=\"module-content\">\r\n        <td height=\"100%\" valign=\"top\"><table width=\"362\" style=\"width:362px; border-spacing:0; border-collapse:collapse; margin:0px 10px 0px 0px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-0\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"2bb08414-727d-4668-851a-a0e1e3708ed6.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 10px 18px 10px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: left\"><span style=\"color: #2483c5; font-family: arial, helvetica, sans-serif; font-size: 18px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: preserve; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline\">Adaptive Manufacturing and Integration at Scale (10^n)</span></div>\r\n<div style=\"font-family: inherit; text-align: left\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px; color: #7c7e7f\">The current domestic space supply chain is oriented towards low-volume, exquisite production of bespoke components for highly specialized spacecraft. This model involves long lead times, high costs, and minimal bench stock. Suppliers are typically small and specialized entities that produce components in units of tens, not hundreds or thousands. This legacy approach cannot meet current demand, which is driven by a dramatic increase in heavy lift launch capacity, cadence (trending towards a launch every day), &nbsp;and the need for proliferated satellite architectures.&nbsp;</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 300; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px; color: #7c7e7f\">In response, the Department of War (DoW) is seeking commercial solutions to address production rate and capacity challenges in the U.S. space supply chain. This initiative aims to leverage digital design, AI-enabled software, adaptive manufacturing, and agile testing to rapidly produce dual- use space systems on demand and at commercial scale. Developing responsive, scalable and affordable &nbsp;space systems is critical for maintaining U.S. technological leadership in the space domain.</span><span style=\"font-optical-sizing: auto; font-weight: 300; font-style: normal; font-variation-settings: &quot;slnt&quot; 0; white-space-collapse: collapse; text-wrap-mode: wrap; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; line-height: 1.4; margin-bottom: 1.8rem; margin-top: 0.5rem; max-width: 58rem; list-style-position: inherit; background-color: transparent; font-family: arial, helvetica, sans-serif; font-size: 12px; color: #7c7e7f\"> </span><span style=\"font-size: 11pt; font-family: Lato, sans-serif; font-optical-sizing: auto; font-weight: 300; font-style: normal; font-variation-settings: &quot;slnt&quot; 0; white-space-collapse: collapse; text-wrap-mode: wrap; color: #000000; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; line-height: 1.4; margin-bottom: 1.8rem; margin-top: 0.5rem; max-width: 58rem; list-style-position: inherit; background-color: transparent\">&nbsp;</span><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9hwziazxo8PC6tPW7nZ1-2Bs5PA3dtq79xnjK0kSQC8b818FNc2LrCsNlO5OnBOi3x1p2stFievdEglJbUzjKpm3uVNlq-2FO-2Fn2Cj7ybUTbmV4wk7u9_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSU43uL4uzrylYTPytGyZ4aLf-2BTHddyz0lZsAB2irGu79DxEAsOSDiv-2BkuWRncXCHc-2FsgG7Ao-2Bnv9cQlWk9VtM80GSWHcF-2FMfrNKrd52kEN9qRZwBy58XoWE-2F23iTpDEF5WUq75c3S4dMdMfl-2FzE1P-2Bz6cAZGr-2B83wRGMDqaTyWtyEcK-2BlHdNTzJfCpVXO0NoNffeuIcHBEPwuDZFtG7y523DSUKiMFK2Am9UqmupFZIjbrFwiT9SxDsRQ6oA95F4Q-2Bz8B9zjzh0STKH1ZOhFtTLd6tMkr-2FkoovXyq6ceJWh9fd4UBU9PJFUbKjRNjWRcG1TRIGKliF-2BgPbiFQOTJQhb2B2cwnTLkQg53MavtEG2w7ckkAytVLiMKQH7Hquik4C507CUie0J367FS5aIF6YcUP6GXunlJI6hbB7qwjCXk3lp-2Bkwhh2rMYwMJkm3VSEB7oDKciJn-2BwImZvfbCQ4fkTW4BUbyHoB7ypsIflsntgjd2aC7ikkM98cg5s9a4Ur5OK4tHJaew5bQ74p-2BC52Y3a92kPPSMNcVNVC6HoRs4WS4IsbUYTlwmi2LpgLXdFPv6Csl-2FtY3tvtmgWs-2BacetNDbLWTbd9qLLHjNRqVvsvKdr0-2FSGvWIN7bevWKUA4zj8wkkBMmYBhyKyZDJaejx3m68jZv3XF6F2T3E7w-2BsPzzAqh5S802-2BLduYfI-2FqYplCpEgntEI-2BgTdFGl436XnOlMoVLi2Y2-2FFa51fV76Al-2Fu6I-2BrWAzkMILWv2h0YnLaulBRO9rlaPhmlht5BgWnAvZ5-2BhtX9HnEMTs-2Frs9Yf5qshUaAx89jShIO-2BxoGDWbZbTA-3D-3D\"><span style=\"background-color: transparent; font-weight: 400; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; font-variant-emoji: normal; text-decoration-line: none; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; vertical-align: baseline; white-space-collapse: preserve; text-wrap-mode: wrap; font-family: arial, helvetica, sans-serif; font-size: 12px; color: #2483c5\"><strong>Learn more</strong></span></a><span style=\"background-color: transparent; font-weight: 400; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; font-variant-emoji: normal; text-decoration-line: none; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; vertical-align: baseline; white-space-collapse: preserve; text-wrap-mode: wrap; font-family: arial, helvetica, sans-serif; font-size: 12px; color: #7c7e7f\"><strong>.</strong></span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table><table width=\"181\" style=\"width:181px; border-spacing:0; border-collapse:collapse; margin:0px 0px 0px 10px;\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\" border=\"0\" bgcolor=\"\" class=\"column column-1\">\r\n      <tbody>\r\n        <tr>\r\n          <td style=\"padding:0px;margin:0px;border-spacing:0;\"><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"4fa31850-56ff-4e7f-985c-2dd2d58a3cef.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 0px 18px 0px; line-height:22px; text-align:inherit;\" height=\"100%\" valign=\"top\" bgcolor=\"\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>Submission Deadline:</strong></span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">21 Nov 2025</span><span style=\"font-family: arial, helvetica, sans-serif; font-size: 12px\"><br>\r\n</span><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">23:59:59 U.S. Eastern Time</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"module\" data-role=\"module-button\" data-type=\"button\" role=\"module\" style=\"table-layout:fixed;\" width=\"100%\" data-muid=\"621468ff-bdcc-4d55-8cd5-838691427b54.1\">\r\n      <tbody>\r\n        <tr>\r\n          <td align=\"left\" bgcolor=\"\" class=\"outer-td\" style=\"padding:0px 0px 0px 0px;\">\r\n            <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"wrapper-mobile\" style=\"text-align:center;\">\r\n              <tbody>\r\n                <tr>\r\n                <td align=\"center\" bgcolor=\"#2483C5\" class=\"inner-td\" style=\"border-radius:6px; font-size:16px; text-align:left; background-color:inherit;\">\r\n                  <a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9hwziazxo8PC6tPW7nZ1-2Bs5PA3dtq79xnjK0kSQC8b818FNc2LrCsNlO5OnBOi3x1p2stFievdEglJbUzjKpm3uVNlq-2FO-2Fn2Cj7ybUTbmV4wdXuh_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSU43uL4uzrylYTPytGyZ4aLf-2BTHddyz0lZsAB2irGu79DxEAsOSDiv-2BkuWRncXCHc-2FsgG7Ao-2Bnv9cQlWk9VtM80GSWHcF-2FMfrNKrd52kEN9qRZwBy58XoWE-2F23iTpDEF5WUq75c3S4dMdMfl-2FzE1P-2Bz6cAZGr-2B83wRGMDqaTyWtyEcK-2BlHdNTzJfCpVXO0NoNffeuIcHBEPwuDZFtG7y523DSUKiMFK2Am9UqmupFZIjbrFwiT9SxDsRQ6oA95F4Q-2Bz8B9zjzh0STKH1ZOhFtTLd6tMkr-2FkoovXyq6ceJWh9fd4UBU9PJFUbKjRNjWRcG1TRIGKliF-2BgPbiFQOTJQhb2B2cwnTLkQg53MavtEG2w7ckkAytVLiMKQH7Hquik4C507CUie0J367FS5aIF6YcUP6GXunlJI6hbB7qwjCXk3lp-2Bkwhh2rMYwMJkm3VSEB7oDKciJn-2BwImZvfbCQ4fkTW4BUbyHoB7ypsIflsntgjd2aC7ikkM98cg5s9a4Ur5OK4tHJaew5bQ74p-2BC52Y3a92kPPSMNcVNVC6HoRs4WS4IsbUYTlwmi2LpgLXdFPv6Csl-2FtY3tvtmgWs-2BacetNDbLWTbd9qLLHjNRqVvsvKdr0-2FSGvWIN7bevWKUA4zj8wkkBMmYBhyKyZDJaejx3mhgx8gcKBl6Yw-2BtxSHeE3v4N7mH5RZomCQaNbrTP6Uq-2FvD5N40kbUvoqxXP37ejzfZwOPts18UlXaDk-2BpmqIMDbj7ZgULILqtYhQ-2FVGomis9qW7k9ExMgcXUeMVWrXch0yYN2qeGu1MlahXEaEPxnKNF9iJyrWYyHkWsMWl8J7Dg-3D-3D\" style=\"background-color:#2483C5; border:1px solid #2483C5; border-color:#2483C5; border-radius:6px; border-width:1px; color:#ffffff; display:inline-block; font-size:12px; font-weight:bold; letter-spacing:0px; line-height:normal; padding:12px 18px 12px 18px; text-align:center; text-decoration:none; border-style:solid;\" target=\"_blank\">Learn more</a>\r\n                </td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n          </td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n        </tr>\r\n      </tbody>\r\n    </table></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"wrapper\" role=\"module\" data-type=\"image\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"01cfd941-691e-4504-af90-9ba914a69b55\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"font-size:6px; line-height:10px; padding:10px 18px 10px 18px;\" valign=\"top\" align=\"center\">\r\n          <img class=\"max-width\" border=\"0\" style=\"display:block; color:#000000; text-decoration:none; font-family:Helvetica, arial, sans-serif; font-size:16px; max-width:25% !important; width:25%; height:auto !important;\" width=\"141\" alt=\"\" data-proportionally-constrained=\"true\" data-responsive=\"true\" src=\"http://cdn.mcauto-images-production.sendgrid.net/de030c4e80c0dd8f/d5a29904-77e8-41cd-90b1-cac684cf98fc/1281x1281.png\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"6cf433f1-53d9-4818-89de-d72eccb7d837\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 10px 18px 10px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"font-size: 14px; color: #7c7e7f\"><strong>Other open solicitations:</strong></span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><a href=\"https://u18220755.ct.sendgrid.net/ls/click?upn=u001.vROA2v0um-2Fqlh14h0QMILpDVDFhevAdI8BXziDbbBehdKkUd-2B58NztoJqbNyTdbgtv2BF-2FbWBuhZU2I-2FazTA9kGc-2Fi654EjxfC7gcUneG-2FZ8t5AyHoUl6ZdeO-2FYuJPcUTJiRYNwzKE1XObChGB-2B-2BCaCoIghdLCzaLv4F8SC8T4411K7i5hbARk9-2FKFN-2B71yAHyqo_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuv-2FHSpz-2Flibfn2CVWLxvxwpO-2BFV4w-2BhuK2Y0cJZ3nrRFoCyFNWaZxMCHSyQBlNtZQe258rDCPW-2BiDCcj1YmgC1to8gmVDYNlsH3m0yrDhMjhQgtAmqKItIqhoHMFS1W-2BSU43uL4uzrylYTPytGyZ4aLf-2BTHddyz0lZsAB2irGu79DxEAsOSDiv-2BkuWRncXCHc-2FsgG7Ao-2Bnv9cQlWk9VtM80GSWHcF-2FMfrNKrd52kEN9qRZwBy58XoWE-2F23iTpDEF5WUq75c3S4dMdMfl-2FzE1P-2Bz6cAZGr-2B83wRGMDqaTyWtyEcK-2BlHdNTzJfCpVXO0NoNffeuIcHBEPwuDZFtG7y523DSUKiMFK2Am9UqmupFZIjbrFwiT9SxDsRQ6oA95F4Q-2Bz8B9zjzh0STKH1ZOhFtTLd6tMkr-2FkoovXyq6ceJWh9fd4UBU9PJFUbKjRNjWRcG1TRIGKliF-2BgPbiFQOTJQhb2B2cwnTLkQg53MavtEG2w7ckkAytVLiMKQH7Hquik4C507CUie0J367FS5aIF6YcUP6GXunlJI6hbB7qwjCXk3lp-2Bkwhh2rMYwMJkm3VSEB7oDKciJn-2BwImZvfbCQ4fkTW4BUbyHoB7ypsIflsntgjd2aC7ikkM98cg5s9a4Ur5OK4tHJaew5bQ74p-2BC52Y3a92kPPSMNcVNVC6HoRs4WS4IsbUYTlwmi2LpgLXdFPv6Csl-2FtY3tvtmgWs-2BacetNDbLWTbd9qLLHjNRqVvsvKdr0-2FSGvWIN7bevWKUA4zj8wkkBMmYBhyKyZDJaejx3kRUEaCBsyJrSbklTDpUQEysx-2BB-2FiFDSPpHyu21r516EGdhK2qXFfJaA-2F6u-2FRFZlQszKqGH-2FF-2BJW56H-2FHxs2xGHNnEtswDLxH8DZUeWvVUawxJEYusMNS-2FTjnBnXfhyBMV4s3Muyu9A0uP6gr5H8rnybbb5UkHbuiGH-2FzTYd9B2Zg-3D-3D\"><span style=\"color: #2483c5; font-size: 12px\"><u><strong>Project G.I. (Prize Challenge)</strong></u></span></a></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-size: 12px\">Submissions for DRM 3 close on Nov. 16, 2025 at 23:59:59 Eastern Time</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"text\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"6cf433f1-53d9-4818-89de-d72eccb7d837.1\" data-mc-module-version=\"2019-10-22\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:18px 10px 18px 10px; line-height:22px; text-align:inherit; background-color:#ffffff;\" height=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" role=\"module-content\"><div><div style=\"font-family: inherit; text-align: inherit\"><span style=\"line-height: inherit; color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-line: inherit; text-decoration-thickness: inherit; text-decoration-style: inherit; text-decoration-color: inherit; font-family: arial, helvetica, sans-serif; font-size: 12px\"><strong>About DIU:&nbsp;</strong></span><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; font-size: 12px\">The Defense Innovation Unit (DIU) strengthens our national security by accelerating the adoption of commercial technology throughout the military and growing the national security innovation base. DIU partners with organizations across the Department of War (DoW) and with&nbsp;nontraditional companies to facilitate prototype projects and field advanced commercial solutions that address national security challenges. DIU leverages Other Transaction (OT) authority to award Prototype agreements, which, if successful, may result in the direct award of a follow-on Production agreement without the use of further competitive procedures. (DIU is not an OT consortium; DIU executes direct award OTs).&nbsp;</span></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><br></div>\r\n<div style=\"font-family: inherit; text-align: inherit\"><span style=\"color: #7c7e7f; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space-collapse: collapse; text-wrap-mode: wrap; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline; font-family: arial, helvetica, sans-serif; background-color: rgb(255, 255, 255); font-size: 12px\">You are receiving this email because you have a contact at DIU or you signed up to our mailing list. If you would like to be removed from our email list, please click the unsubscribe link below.</span></div><div></div></div></td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table class=\"module\" role=\"module\" data-type=\"spacer\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"table-layout: fixed;\" data-muid=\"6ac32cba-50e8-406c-8061-dd0135aebb60\">\r\n    <tbody>\r\n      <tr>\r\n        <td style=\"padding:0px 0px 30px 0px;\" role=\"module-content\" bgcolor=\"\">\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"module\" data-role=\"module-button\" data-type=\"button\" role=\"module\" style=\"table-layout:fixed;\" width=\"100%\" data-muid=\"bf716dbe-018d-4f2d-bf15-b5b6db124e86\">\r\n      <tbody>\r\n        <tr>\r\n          <td align=\"center\" bgcolor=\"\" class=\"outer-td\" style=\"padding:0px 0px 0px 0px;\">\r\n            <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"wrapper-mobile\" style=\"text-align:center;\">\r\n              <tbody>\r\n                <tr>\r\n                <td align=\"center\" bgcolor=\"#2483C5\" class=\"inner-td\" style=\"border-radius:6px; font-size:16px; text-align:center; background-color:inherit;\">\r\n                  <a href=\"mailto:info@diu.mil\" style=\"background-color:#2483C5; border:1px solid #2483C5; border-color:#2483C5; border-radius:6px; border-width:1px; color:#ffffff; display:inline-block; font-size:12px; font-weight:bold; letter-spacing:0px; line-height:normal; padding:18px 18px 12px 18px; text-align:center; text-decoration:none; border-style:solid; font-family:arial,helvetica,sans-serif;\" target=\"_blank\">Contact Us</a>\r\n                </td>\r\n                </tr>\r\n              </tbody>\r\n            </table>\r\n          </td>\r\n        </tr>\r\n      </tbody>\r\n    </table><div data-role=\"module-unsubscribe\" class=\"module\" role=\"module\" data-type=\"unsubscribe\" style=\"color:#444444; font-size:12px; line-height:20px; padding:16px 16px 16px 16px; text-align:center;\" data-muid=\"037d4496-257f-4255-8897-cb3cce530456\"><div class=\"Unsubscribe--addressLine\"></div><p style=\"font-size:12px; line-height:20px;\"><a class=\"Unsubscribe--unsubscribeLink\" href=\"https://u18220755.ct.sendgrid.net/asm/unsubscribe/?user_id=18220755&amp;data=Oj7YgBSqzV045ZvvVRVnI2dfQUGelK06zMjOWzkDre1oMDAwdTAwMJPl2RxTrSoM18RQYBPqATtGY4gs3nmGw3RA_YejM1uzLjxIJW0IWro5hVkeV4A30lQ7VUC1HRp3hrZRLlVm_UJcVnvKfDQ5_F8NMIGvGkqjx8QDeD44OMz1mJLTOFS9faF6ZE8xjcwz6wyJunvtxDOoXPjpSUssb3VrNClOdpmUS5pMf3sN2Ujm1kKfkA1TG6Nk-9Qms0vgdSCkhf9dTTD-lg0an-_VDDmYRQfbh-EqsblP9liSmMvFSBzY7DrwtH39YhfA5n72Ovzu-Y21-lpvr1SJKF1ADlXPFTYsKf2kVEQAk7NxfRE-nnT3KwjtyX5RyPx47Ft6PcJ6JIpAG_skDx-mvOOiCzibJ-SHImAvjZSD7KL1gNcqtIOhyBHrt4L0lhxBxjBTRgMNAlHg3tbaeyEgXE7gSayat79LTGfxg0B8tjq2RfC3KX9gyltpZ237TNyzP8W8vX-voi98oEcaYg7pBKS_imF2EIHj2jnEFq3nZ42bOlN8IXZyk9y9Gf2E7_7tGLobshl9A3osgRrAdfkIu13bTY08VN6iLEnbZ0KS0Tcrvo5IqDvLDsPyMR_gkFADskga3GLje3oKY9wngU2jJghhf8W-W159KXM-BPEVkqt3x0jTXeGb3WJCDWoGYNdJc1_7cSmU7oowdaKha3QlrGUoRX_IOz2fhlq6P1YLok52YRrFxPpDUt1Hl0iIiCl-9jM_KWjiIW-ufSt-6mz1Fs1wolvgmeh09ccBdeYBfHT3rnFRZD0keW-GfrCVnkwtlJVEsAVkXXJB7kLuZe0RKph9Wk0avHtpq1q3t1kuNv4-jPMaDIk4R5agMx16fzf6Wa1gxS3FyspPv3W4QcbnDSJK53uV_2JqMEIewhj6HIljH4fpGtQE5VlTKc0G3nN_CdYJah_oQU1LOWceEMAeLwGIbJjDonPs12rboPXIfO_49WyBKkmhUcEEnELB6UVbyWIcE3HvfdUDNVSpWvF_cLnPigMro6s65vpsAaMSjrNwfhJEN9fZdDXwchkCv3EVDDobFxmeMGMhsyK4BrtLmM1JAkoZKKwDRD76w28Rq0pD0-A2EduszQRsZfccoR08X3grFFbbnhI8JOy0hS2yM9TUIOl8CZOR3jmb\" target=\"_blank\" style=\"\">Unsubscribe</a> - <a href=\"https://u18220755.ct.sendgrid.net/asm/?user_id=18220755&amp;data=r2-vwrNkq1frokFDObib5FEYStJg11wR3bppZNpTIJdoMDAwdTAwMJEhCDKrJYc-zcIbAggYcgF-P_WXsX_jAyNmtpDXp1ByIkQ4FFIrIVUYTkp6AbsxI5GQawosIOW2iZ7HVGtvXPSn6su41uM25Z1xqyAFy1ye5hqWbok-RfwvPfWNkTDjZ_XejM13bwx9nV3liLx8vDaN7vZkjOibr7EXx2ldnYaEvBSxwnrcAzFYdU1jYI_JtU6JRo-hrDk4tYXKddi15HZvsH9eZ7FVP-zxVsx2azkTz_COHGjSE7z-QMXu_2UZn-UrDYtEYOE_-hU3avu9IVUzaGJjGWfEAsrmLCECSNsDb4sV6TpYk8-KrDmJhzF_GcUHw7t9dchJuKlB5ZjN3TlgGWmv3pFvv7S8BDmtW31jU_mf7i2-2N3F22nWgHWmMxPWqIAUENd754KxSmENTm37ThUV84GxuOWdIVG5l1Zq5nNeWhwkFXMXPR73qv5bmaMV0tRgjU2u1Ql9d73jLvUcj3-ggAZft3Qg8Pr7EFS8rniDgJS__U8IdblC6laSwVE44icDTVMkW27AOwkoKKVegNZwTJvZDx4wsPzjQnrmR81YGl_SX6CkdhgdR5CpV0ABxLF7rnGTo3F8PnYLSZUMz-_F76zb1xN-YzSRP0kWWIT6MpWpHiMWdltjY65bQ4zgE2RACOOzUmTp2ju0ERKVx92d-O5wLGT-w0XqsxVN_J4tlGghS9OsUFg3RKnsa30Bx-Y1BGiFat2fSf6jxaBnh46YZ1ULTZutJZXV5wnW2QnmrEtQTjlUw6VsuGdfQzFw0Pgp5rypt3JGAiAnoWN7dCDGv-aJH0oBqiDGNeCm08iR9t9b6VgqjZg7Vu3vxGYBzg0eAPS8kooijh0TZIEOTRRCCp25zuTVSNSdIWYIdBK2zz-16cMlVDq6BulsmMz6Z-XRjsZyXHtrQMERgkeISywXfK5IRGJmVu6aR6TsaSqxsEB9ywub_cbsTwbgiaHUxXePUbhLtjQaE0WP42upk30kjQIGY9Z27dJj7lmk6ECPPrPW0omieLZpMotYL6odlVpKl9a3Mik52-vx_ExrybpanZrkQmXQJxQZcao1B9bqfCy680CjbUsJJJsRzmG9XoMju71TrJ66y3T6bVyOrvynCDP8fkvYbiNWKt_H\" target=\"_blank\" class=\"Unsubscribe--unsubscribePreferences\" style=\"\">Unsubscribe Preferences</a></p></div></td>\r\n                                      </tr>\r\n                                    </table>\r\n                                    <!--[if mso]>\r\n                                  </td>\r\n                                </tr>\r\n                              </table>\r\n                            </center>\r\n                            <![endif]-->\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </div>\r\n      </center>\r\n    <img src=\"https://u18220755.ct.sendgrid.net/wf/open?upn=u001.D6mC8SG6iITw2GIzPjAtw7SLAuEgZhcE7OQx5Ie2paKW9TCJvoy3Eh7ani-2FmDfzWZ4Aty9oKYAg8U-2BpXv81mmaeCBsQtTAdxlXqbnsXBCjn-2FAW10qJfypmIUPoD1-2B38y4LSjEaiwyNZHtEyZD-2BNUDTW2Ds09sQV4JpfCTSsjf1JuITV4hvi9Hgrk832iIcO10uSnMmGOgECqfJYLekM-2Fdo2S-2BfmcwiPKJTFS9uKEA9D6ZgpADj4lTBeXbwyncCXDguNkNI14mt7jmbvU7z4rM-2Fyat05My9iKauD-2By4k2cLItBQVw0BNZRHwQ83pnAJCxGwp4G-2BeN7wk8yWS9-2Bhe73ChxqOT4fi2gcmn-2BYUOwY1SE9P1S9IqLWQHOOtT-2F3-2B2My7VMqawu4f9WXdvCr-2FwWyEgQETdY6Yq4XjoXdU2-2FDdlhtrhyjdYHPYZ5K9RkSvXklYi0K-2Bjk90l6-2FTte5h8liRYk-2Fz3WsjUnfgvEm40aZ4sJvsKnUlvNEBK3J4UphAifGjmSP7WtdKiNUbfEjCWfYK2rnztkoE4-2FYrWGaJjQ1iDeb9oGXbm5BNSVzY-2BMU-2Buxsqkw9YtEimPa06x9QFzp4L0RJt-2Bg-2FzVX5DMD2euX2c4u0RE-2BADHFeTQBPX28LCmdvzoktOepDhm5z8yB8m1-2Fl9OCZCX5oWUNv-2BTxHUKIHx5H-2F7yrrjo4sFSS8LQFWU8k0UdxaqJhKTFP6dkQEun1-2FurZ1rFx-2BjS-2B59mg3mtGRqeV43D4NxCZl-2FvnNrRy9JX7qxFtdGJnWkrUMQxhmKT1XpmSlPAPtW8-2BQ7-2B5DAKYtuiplmpG58P03Ip82uN3dKe1vVlE65stv8KEqaBIkKFR-2B4jM1a1S3cqaUqbSlQSlRJ5GeJl-2BgNRonFvHrqBPs-2Fgjg5f-2FzuM2zKBFqZ4WqoddOSDbyf0IYQEqvMhBOI5QpMbpCXFH1-2FU2oCgFF7FH1Ik5KS9Ew3nJPETPYLvli9pJgJv-2BzxmDOPudJLc2w6Pz8wc-3D\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/></body>\r\n  </html>','There are two new solicitations posted on our website.\r\n\r\nNew Solicitation Announcement\r\n\r\nThere are two new solicitations posted on our website. It is easy to respond with a 5-page paper or 15-slide slide deck. These limits are not requirements but are strongly recommended. Additional guidance about what we look for in a proposal is available here ( https://www.diu.mil/solution-brief-guidance?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ). Our goal is to award an initial contract within 60-90 days of solicitation closure. Solicitation details and a link to the submission page are available below.\r\n\r\nBarracks Resilience Through Industrialized Construction (BR-IC)\r\n\r\nThe Department of War (DoW) faces a critical challenge in modernizing its aging infrastructure, particularly barracks, which continue to degrade due to poor environmental conditions, structural inefficiencies, and outdated building systems. Issues such as mold, pests, and inadequate HVAC performance directly affect the health, safety, and morale of service members, ultimately diminishing force readiness and retention.\r\n\r\nCurrent military construction (MILCON) processes are characterized by lengthy design cycles, fragmented delivery models, and escalating costs. These legacy approaches cannot meet the speed or scalability required to align infrastructure modernization with operational tempo and strategic readiness goals.\r\n\r\nTo address these challenges, the DoW seeks to prototype and scale advanced manufacturing and industrialized construction (IC) solutions capable of delivering high-quality, energy-efficient, and resilient facilities at accelerated timelines and reduced lifecycle costs. The objective is to establish repeatable, modular design and construction methodologies that can be rapidly deployed across installations—improving quality of life and ensuring the warfighter’s environment matches the standard of excellence expected on the battlefield.\r\n*Learn more* *.* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00633?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*Submission Deadline:*\r\n25 Nov 2025\r\n23:59:59 U.S. Eastern Time\r\n\r\nLearn more ( https://www.diu.mil/work-with-us/submit-solution/PROJ00633?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\nAdaptive Manufacturing and Integration at Scale (10^n)\r\n\r\nThe current domestic space supply chain is oriented towards low-volume, exquisite production of bespoke components for highly specialized spacecraft. This model involves long lead times, high costs, and minimal bench stock. Suppliers are typically small and specialized entities that produce components in units of tens, not hundreds or thousands. This legacy approach cannot meet current demand, which is driven by a dramatic increase in heavy lift launch capacity, cadence (trending towards a launch every day),  and the need for proliferated satellite architectures.\r\n\r\nIn response, the Department of War (DoW) is seeking commercial solutions to address production rate and capacity challenges in the U.S. space supply chain. This initiative aims to leverage digital design, AI-enabled software, adaptive manufacturing, and agile testing to rapidly produce dual- use space systems on demand and at commercial scale. Developing responsive, scalable and affordable  space systems is critical for maintaining U.S. technological leadership in the space domain. *Learn more* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00627?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com ) *.*\r\n\r\n*Submission Deadline:*\r\n21 Nov 2025\r\n23:59:59 U.S. Eastern Time\r\n\r\nLearn more ( https://www.diu.mil/work-with-us/submit-solution/PROJ00627?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\n\r\n*Other open solicitations:*\r\n\r\n*Project G.I. (Prize Challenge)* ( https://www.diu.mil/work-with-us/submit-solution/PROJ00598?utm_campaign=website&utm_medium=email&utm_source=sendgrid.com )\r\nSubmissions for DRM 3 close on Nov. 16, 2025 at 23:59:59 Eastern Time\r\n\r\n*About DIU:* The Defense Innovation Unit (DIU) strengthens our national security by accelerating the adoption of commercial technology throughout the military and growing the national security innovation base. DIU partners with organizations across the Department of War (DoW) and with nontraditional companies to facilitate prototype projects and field advanced commercial solutions that address national security challenges. DIU leverages Other Transaction (OT) authority to award Prototype agreements, which, if successful, may result in the direct award of a follow-on Production agreement without the use of further competitive procedures. (DIU is not an OT consortium; DIU executes direct award OTs).\r\n\r\nYou are receiving this email because you have a contact at DIU or you signed up to our mailing list. If you would like to be removed from our email list, please click the unsubscribe link below.\r\n\r\nContact Us ( info@diu.mil )\r\n\r\nUnsubscribe ( https://u18220755.ct.sendgrid.net/asm/unsubscribe/?user_id=18220755&data=Oj7YgBSqzV045ZvvVRVnI2dfQUGelK06zMjOWzkDre1oMDAwdTAwMJPl2RxTrSoM18RQYBPqATtGY4gs3nmGw3RA_YejM1uzLjxIJW0IWro5hVkeV4A30lQ7VUC1HRp3hrZRLlVm_UJcVnvKfDQ5_F8NMIGvGkqjx8QDeD44OMz1mJLTOFS9faF6ZE8xjcwz6wyJunvtxDOoXPjpSUssb3VrNClOdpmUS5pMf3sN2Ujm1kKfkA1TG6Nk-9Qms0vgdSCkhf9dTTD-lg0an-_VDDmYRQfbh-EqsblP9liSmMvFSBzY7DrwtH39YhfA5n72Ovzu-Y21-lpvr1SJKF1ADlXPFTYsKf2kVEQAk7NxfRE-nnT3KwjtyX5RyPx47Ft6PcJ6JIpAG_skDx-mvOOiCzibJ-SHImAvjZSD7KL1gNcqtIOhyBHrt4L0lhxBxjBTRgMNAlHg3tbaeyEgXE7gSayat79LTGfxg0B8tjq2RfC3KX9gyltpZ237TNyzP8W8vX-voi98oEcaYg7pBKS_imF2EIHj2jnEFq3nZ42bOlN8IXZyk9y9Gf2E7_7tGLobshl9A3osgRrAdfkIu13bTY08VN6iLEnbZ0KS0Tcrvo5IqDvLDsPyMR_gkFADskga3GLje3oKY9wngU2jJghhf8W-W159KXM-BPEVkqt3x0jTXeGb3WJCDWoGYNdJc1_7cSmU7oowdaKha3QlrGUoRX_IOz2fhlq6P1YLok52YRrFxPpDUt1Hl0iIiCl-9jM_KWjiIW-ufSt-6mz1Fs1wolvgmeh09ccBdeYBfHT3rnFRZD0keW-GfrCVnkwtlJVEsAVkXXJB7kLuZe0RKph9Wk0avHtpq1q3t1kuNv4-jPMaDIk4R5agMx16fzf6Wa1gxS3FyspPv3W4QcbnDSJK53uV_2JqMEIewhj6HIljH4fpGtQE5VlTKc0G3nN_CdYJah_oQU1LOWceEMAeLwGIbJjDonPs12rboPXIfO_49WyBKkmhUcEEnELB6UVbyWIcE3HvfdUDNVSpWvF_cLnPigMro6s65vpsAaMSjrNwfhJEN9fZdDXwchkCv3EVDDobFxmeMGMhsyK4BrtLmM1JAkoZKKwDRD76w28Rq0pD0-A2EduszQRsZfccoR08X3grFFbbnhI8JOy0hS2yM9TUIOl8CZOR3jmb ) - Unsubscribe Preferences ( https://u18220755.ct.sendgrid.net/asm/?user_id=18220755&data=r2-vwrNkq1frokFDObib5FEYStJg11wR3bppZNpTIJdoMDAwdTAwMJEhCDKrJYc-zcIbAggYcgF-P_WXsX_jAyNmtpDXp1ByIkQ4FFIrIVUYTkp6AbsxI5GQawosIOW2iZ7HVGtvXPSn6su41uM25Z1xqyAFy1ye5hqWbok-RfwvPfWNkTDjZ_XejM13bwx9nV3liLx8vDaN7vZkjOibr7EXx2ldnYaEvBSxwnrcAzFYdU1jYI_JtU6JRo-hrDk4tYXKddi15HZvsH9eZ7FVP-zxVsx2azkTz_COHGjSE7z-QMXu_2UZn-UrDYtEYOE_-hU3avu9IVUzaGJjGWfEAsrmLCECSNsDb4sV6TpYk8-KrDmJhzF_GcUHw7t9dchJuKlB5ZjN3TlgGWmv3pFvv7S8BDmtW31jU_mf7i2-2N3F22nWgHWmMxPWqIAUENd754KxSmENTm37ThUV84GxuOWdIVG5l1Zq5nNeWhwkFXMXPR73qv5bmaMV0tRgjU2u1Ql9d73jLvUcj3-ggAZft3Qg8Pr7EFS8rniDgJS__U8IdblC6laSwVE44icDTVMkW27AOwkoKKVegNZwTJvZDx4wsPzjQnrmR81YGl_SX6CkdhgdR5CpV0ABxLF7rnGTo3F8PnYLSZUMz-_F76zb1xN-YzSRP0kWWIT6MpWpHiMWdltjY65bQ4zgE2RACOOzUmTp2ju0ERKVx92d-O5wLGT-w0XqsxVN_J4tlGghS9OsUFg3RKnsa30Bx-Y1BGiFat2fSf6jxaBnh46YZ1ULTZutJZXV5wnW2QnmrEtQTjlUw6VsuGdfQzFw0Pgp5rypt3JGAiAnoWN7dCDGv-aJH0oBqiDGNeCm08iR9t9b6VgqjZg7Vu3vxGYBzg0eAPS8kooijh0TZIEOTRRCCp25zuTVSNSdIWYIdBK2zz-16cMlVDq6BulsmMz6Z-XRjsZyXHtrQMERgkeISywXfK5IRGJmVu6aR6TsaSqxsEB9ywub_cbsTwbgiaHUxXePUbhLtjQaE0WP42upk30kjQIGY9Z27dJj7lmk6ECPPrPW0omieLZpMotYL6odlVpKl9a3Mik52-vx_ExrybpanZrkQmXQJxQZcao1B9bqfCy680CjbUsJJJsRzmG9XoMju71TrJ66y3T6bVyOrvynCDP8fkvYbiNWKt_H )',0,0,0,0,0,0,'2025-11-14 20:00:56','2025-12-09 19:31:34','2025-12-09 19:31:34','2025-12-09 19:31:34',NULL,NULL,NULL),
(976,4,'<B21764FF-2210-4452-BE38-993E63EFA9C5@mavrix.one>',NULL,NULL,'Fwd: Inventory + Quantity','brian@mavrix.one','\"Brian C. Stufflebean\"','<html class=\"apple-mail-supports-explicit-dark-mode\"><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body dir=\"auto\"><br id=\"lineBreakAtBeginningOfSignature\"><div dir=\"ltr\">Sent from my iPhone</div><div dir=\"ltr\"><br>Begin forwarded message:<br><br></div><blockquote type=\"cite\"><div dir=\"ltr\"><b>From:</b> Nick Powell &lt;nick@lithiumbatterycompany.com&gt;<br><b>Date:</b> November 14, 2025 at 3:30:49 PM EST<br><b>To:</b> Katherine Aponte &lt;katherine@mavrix.one&gt;, jarrett@mavrix.one<br><b>Cc:</b> Brian Stufflebean &lt;Brian@mavrix.one&gt;<br><b>Subject:</b> <b>Re: Inventory + Quantity</b><br><br></div></blockquote><blockquote type=\"cite\"><div dir=\"ltr\">﻿<div dir=\"ltr\">Update: Inventory has been updated. Cost variables have been cancelled out and accurate physical inventory has been implemented. <br><br>Here are the final quantities&nbsp;for relevant&nbsp;inventory items:<br><br><div>LBC10 - 34<br>LBC20 - 3<br>LBC2460M - 4<br>LBC2475TM - 24<br>LBC2450M - 1<br>LBC-1220CC - 9<br>LBC-2B1224C - 6<br>LBC-2B1236C -13</div><div>LBC-2420C - 4<br>LBCWBMS-SF - 4&nbsp;</div></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Nov 14, 2025 at 2:34 PM Nick Powell &lt;<a href=\"mailto:nick@lithiumbatterycompany.com\">nick@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Here are the products currently in inventory. If you see any products in QuickBooks (inventory) showing a quantity but not listed here, please mark the quantity as 0. Also, if any item in QuickBooks (inventory) has a quantity but is not a battery, charger, or Wilson BMS, mark it as 0, as we will not be selling those items.<br><br>Batteries, Chargers and Wilson BMS<br>LBC10 - 34<br>LBC20 - 3<br>LBC2460M - 4<br>LBC2475TM - 24<br>LBC2450M - 1<br>LBC-1220CC - 9<br>LBC-2B1224C - 6</div><div>LBC-2420C - 4<br>Wilson BMS - 4&nbsp;<br><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><font size=\"4\"><b><br>Nick Powell</b></font></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><b>Client Relations Coordinator</b></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><font size=\"2\"><b>TheLithiumBatteryCompany</b></font></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><br></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\">Toll Free - 844-GET-LITHIUM</div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\">Mobile - 813-613-6105</div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><br></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><a href=\"http://www.lithiumbatterycompany.com/\" style=\"color:rgb(17,85,204)\" target=\"_blank\">www.LithiumBatteryCompany.com</a></div><div></div><div><br style=\"color:rgb(34,34,34)\"></div></div></div></div>\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><font size=\"4\"><b><br>Nick Powell</b></font></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><b>Client Relations Coordinator</b></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><font size=\"2\"><b>TheLithiumBatteryCompany</b></font></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><br></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\">Toll Free - 844-GET-LITHIUM</div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\">Mobile - 813-613-6105</div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><br></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><a href=\"http://www.lithiumbatterycompany.com/\" style=\"color:rgb(17,85,204)\" target=\"_blank\">www.LithiumBatteryCompany.com</a></div><div></div><div><br style=\"color:rgb(34,34,34)\"></div></div></div>\r\n</div></blockquote></body></html>','Sent from my iPhoneBegin forwarded message:From: Nick Powell &lt;nick@lithiumbatterycompany.com&gt;Date: November 14, 2025 at 3:30:49 PM ESTTo: Katherine Aponte &lt;katherine@mavrix.one&gt;, jarrett@mavrix.oneCc: Brian Stufflebean &lt;Brian@mavrix.one&gt;Subject: Re: Inventory + Quantity﻿Update: Inventory has been updated. Cost variables have been cancelled out and accurate physical inventory has been implemented. Here are the final quantities&nbsp;for relevant&nbsp;inventory items:LBC10 - 34LBC20 - 3LBC2460M - 4LBC2475TM - 24LBC2450M - 1LBC-1220CC - 9LBC-2B1224C - 6LBC-2B1236C -13LBC-2420C - 4LBCWBMS-SF - 4&nbsp;On Fri, Nov 14, 2025 at 2:34 PM Nick Powell &lt;nick@lithiumbatterycompany.com&gt; wrote:Here are the products currently in inventory. If you see any products in QuickBooks (inventory) showing a quantity but not listed here, please mark the quantity as 0. Also, if any item in QuickBooks (inventory) has a quantity but is not a battery, charger, or Wilson BMS, mark it as 0, as we will not be selling those items.Batteries, Chargers and Wilson BMSLBC10 - 34LBC20 - 3LBC2460M - 4LBC2475TM - 24LBC2450M - 1LBC-1220CC - 9LBC-2B1224C - 6LBC-2420C - 4Wilson BMS - 4&nbsp;-- Nick PowellClient Relations CoordinatorTheLithiumBatteryCompanyToll Free - 844-GET-LITHIUMMobile - 813-613-6105www.LithiumBatteryCompany.com\r\n-- Nick PowellClient Relations CoordinatorTheLithiumBatteryCompanyToll Free - 844-GET-LITHIUMMobile - 813-613-6105www.LithiumBatteryCompany.com\r\n',0,0,0,0,0,0,'2025-11-14 20:33:47','2025-12-09 19:31:34','2025-12-09 19:31:34','2025-12-09 19:31:34',NULL,NULL,NULL),
(978,4,'<20251207133929.c55d0974fa284517@emails.leatherman.com>',NULL,NULL,'Top 5 Gifts, Ready to Ship','Leatherman@emails.leatherman.com','Leatherman','<!DOCTYPE html>\r\n<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\"><head><title>Top 5 Gifts, Ready to Ship</title><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><!--[if mso]>\r\n<xml><w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\"><w:DontUseAdvancedTypographyReadingMail/></w:WordDocument>\r\n<o:OfficeDocumentSettings><o:PixelsPerInch>96</o:PixelsPerInch><o:AllowPNG/></o:OfficeDocumentSettings></xml>\r\n<![endif]--><style>\r\n*{box-sizing:border-box}body{margin:0;padding:0}a[x-apple-data-detectors]{color:inherit!important;text-decoration:inherit!important}#MessageViewBody a{color:inherit;text-decoration:none}p{line-height:inherit}.desktop_hide,.desktop_hide table{mso-hide:all;display:none;max-height:0;overflow:hidden}.image_block img+div{display:none}sub,sup{font-size:75%;line-height:0} @media (max-width:620px){.image_block div.fullWidth{max-width:100%!important}.mobile_hide{display:none}.row-content{width:100%!important}.stack .column{width:100%;display:block}.mobile_hide{min-height:0;max-height:0;max-width:0;overflow:hidden;font-size:0}.desktop_hide,.desktop_hide table{display:table!important;max-height:none!important}.row-5 .column-1 .block-2.paragraph_block td.pad>div{font-size:16px!important}.row-5 .column-1 .block-2.paragraph_block td.pad{padding:15px 40px 0!important}.row-3 .column-2 .block-1.heading_block td.pad{padding:0 30px!important}.row-3 .column-2 .block-1.heading_block h1{font-size:18px!important}.row-5 .column-1 .block-3.button_block td.pad,.row-6 .column-1 .block-1.divider_block td.pad,.row-6 .column-1 .block-6.divider_block td.pad{padding:10px 10px 25px!important}.row-6 .column-1 .block-1.divider_block .alignment table,.row-6 .column-1 .block-6.divider_block .alignment table{display:inline-table}.row-5 .column-1 .block-3.button_block span{font-size:11px!important;line-height:22px!important}.row-8 .column-1{padding:0!important}}\r\n</style><!--[if mso ]><style>sup, sub { font-size: 100% !important; } sup { mso-text-raise:10% } sub { mso-text-raise:-10% }</style> <![endif]--><!--[if true]><style>.forceBgColor{background-color: white !important}</style><![endif]--></head><body class=\"body forceBgColor\" style=\"background-color:transparent;margin:0;padding:0;-webkit-text-size-adjust:none;text-size-adjust:none\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/CgxoqE1BKlemu9sZFygSIIkC0I3KbJo_-o_rr6q_73keXEV7n-vsz8JK3sdLt2G3MVR0YORgTdpBagxoR0_g78-WAAdi9-TIAQGAAgM.JbMyded0YVGjGg/click\" xnpe-attr=\"notextnorew\"><img width=\"1\" height=\"1\" alt=\"\" src=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/CgxoqE1BKlemu9sZFygSIIkC0I3KbJo_-o_rr6q_73keXEV7n-vsz8JK3sdLt2G3MVR0YORgTdpBagxoR0_g78-WAAdi9-SAAgM.V2lebpa99rwAIQ/open\" style=\"display: none;\"></a><table class=\"nl-container\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:transparent\"><tbody><tr><td><table class=\"row row-1\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:600px\">\r\n<a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdSjqjpKSg2Epfv7y8XC8nNbEkI7UoNzFPLzk_V98wpCThSYLvLUcrAS6m0mIhLqec_PzcotTE5AwraaBIspCokamhkYF5fEh-QbxpvHtmWklxfGiwFTdQMleINTU3MTMnKlRfPyk_pVK_JDEpJ1W_BMIu0i9JgYhEG8ZiCmITAbNTMsvAODHJytQsNSnFLDXFKMXcwig1yagGbF18ZopVUWZytkNuYllRZoVefl5qjYWxsWmyeaqZpbGFubGFgVkWT4a7_4P356cxsCd9f9LAxAwAE6lssg.V7XgZ396cqOaSA/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/4d6a115a-c10b-4a13-855f-b386b90f9948.jpeg\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt=\"Shop multi-tools and knives at Leatherman.com\" title=\"Shop multi-tools and knives at Leatherman.com\" height=\"auto\"></a></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-2 mobile_hide\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"8.333333333333334%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:middle\"><div class=\"spacer_block block-1\" style=\"height:60px;line-height:60px;font-size:1px\">&#8202;</div></td><td class=\"column column-2\" width=\"16.666666666666668%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:middle\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%;padding-right:0;padding-left:0\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:45px\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdyj-jpKSg2Epfv7y8XC8nNbEkI7UoNzFPLzk_V7-gKD-lNLmkWB8hrpuemVaim5xYlGJflliUmZhXYmtibGxsamhhaWxsZGBmaBhSkvAkwfeWo5UAF1NpsRCXU05-fm5RamJyhpU0UCRZSNTI1NDIwDw-JL8g3jTeHWhecXxosBU3UDJXiDU1NzEzJypCXz8pP6VSvyQxKSdVvwTCLtIvSYGIRBvFYgoii4AVQATBClIyy8A4McnK1Cw1KcUsNcUoxdzCKDXJqAZsY3xmilVRZnK2Q25iWVFmhV5-XmqNBdBfyeapZpbGFubGFgZmWTwZ7v4P3p-fxsCe9P1JAxMzAOv4f3o.2_fnj_UILNC5yg/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/insider_icon_gift.png\" style=\"display:block;height:auto;border:0;width:100%\" width=\"45\" alt title height=\"auto\"></a></div></div></td></tr></table></td><td class=\"column column-3\" width=\"66.66666666666667%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-right:30px;padding-top:5px;vertical-align:middle\"><table class=\"heading_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"text-align:center;width:100%\"><h1 style=\"margin:0;color:#555;direction:ltr;font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;font-size:18px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:22px\">\r\n<span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdyj-jpKSg2Epfv7y8XC8nNbEkI7UoNzFPLzk_V7-gKD-lNLmkWB8hrpuemVaim5xYlGJflliUmZhXYmtibGxsamhhaWxsZGBmaBhSkvAkwfeWo5UAF1NpsRCXU05-fm5RamJyhpU0UCRZSNTI1NDIwDw-JL8g3jTeHWhecXxosBU3UDJXiDU1NzEzJypCXz8pP6VSvyQxKSdVvwTCLtIvSYGIRBvFYgoii0Qbx8IEwQoyDPWLCxLz9BOTrEzNUpNSzFJTjFLMLYxSk4xqwDbGZ6ZYFWUmZzvkJpYVZVbo5eel1lgA_ZVsnmpmaWxhbmxhYJbFk-Hu_-D9-WkM7EnfnzQwMQMA2K1_QA.caCjnb1QGYjUXw/click\" target=\"_blank\" style=\"text-decoration: none; color: #555555;\" rel=\"noopener\"><span class=\"mce-content-body mce-edit-focus\" style=\"word-break: break-word; position: relative;\" id=\"23134738-4939-4823-8b46-3b8100f604eb\" data-position=\"20-1-0\" data-qa=\"tinyeditor-root-element\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">NEW: SHOP DIGITAL GIFT CARDS</span></span></a></span>\r\n</h1></td></tr></table></td><td class=\"column column-4\" width=\"8.333333333333334%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:middle\"><div class=\"spacer_block block-1\" style=\"height:60px;line-height:60px;font-size:1px\">&#8202;</div></td></tr></tbody></table></td></tr></tbody></table><!--[if !mso]><!--><table class=\"row row-3 desktop_hide\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"25%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:15px;padding-top:15px;vertical-align:middle\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tr><td class=\"pad\" style=\"width:100%;padding-right:0;padding-left:0\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:30px\">\r\n<a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdyj-jpKSg2Epfv7y8XC8nNbEkI7UoNzFPLzk_V7-gKD-lNLmkWB8hrpuemVaim5xYlGJflliUmZhXYmtibGxsamhhaWxsZGBmaBhSkvAkwfeWo5UAF1NpsRCXU05-fm5RamJyhpU0UCRZSNTI1NDIwDw-JL8g3jTeHWhecXxosBU3UDJXiDU1NzEzJypCXz8pP6VSvyQxKSdVvwTCLtIvSYGIRBvHYgoii0QbxsIEwQpSMsvAODHJytQsNSnFLDXFKMXcwig1yagGbGN8ZopVUWZytkNuYllRZoVefl5qjQXQX8nmqWaWxhbmxhYGZlk8Ge7-D96fn8bAnvT9SQMTMwDsGX96.p7PevyhQ5z_7CQ/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/insider_icon_gift.png\" style=\"display:block;height:auto;border:0;width:100%\" width=\"30\" alt title height=\"auto\"></a></div></div></td></tr></table></td><td class=\"column column-2\" width=\"75%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:middle\"><table class=\"heading_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;mso-hide:all;display:none;max-height:0;overflow:hidden\"><tr><td class=\"pad\" style=\"text-align:center;width:100%\"><h1 style=\"margin:0;color:#555;direction:ltr;font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;font-size:17px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:20px\">\r\n<span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdyj-jpKSg2Epfv7y8XC8nNbEkI7UoNzFPLzk_V7-gKD-lNLmkWB8hrpuemVaim5xYlGJflliUmZhXYmtibGxsamhhaWxsZGBmaBhSkvAkwfeWo5UAF1NpsRCXU05-fm5RamJyhpU0UCRZSNTI1NDIwDw-JL8g3jTeHWhecXxosBU3UDJXiDU1NzEzJypCXz8pP6VSvyQxKSdVvwTCLtIvSYGIRBvHYgoii0QbxcIEwQoyDPWLCxLz9BOTrEzNUpNSzFJTjFLMLYxSk4xqwDbGZ6ZYFWUmZzvkJpYVZVbo5eel1lgA_ZVsnmpmaWxhbmxhYJbFk-Hu_-D9-WkM7EnfnzQwMQMA2M5_QA.KZ8kFrSSRpTWsQ/click\" target=\"_blank\" style=\"text-decoration: none; color: #555555;\" rel=\"noopener\"><span class=\"mce-content-body mce-edit-focus\" style=\"word-break: break-word; position: relative;\" id=\"23134738-4939-4823-8b46-3b8100f604eb\" data-position=\"20-1-0\" data-qa=\"tinyeditor-root-element\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">NEW: DIGITAL GIFT CARDS</span></span></a></span>\r\n</h1></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><!--<![endif]--><table class=\"row row-4\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\">\r\n<div class=\"alignment\" align=\"center\"><div style=\"max-width:600px\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdyiijpKSg2Epfv7y8XC8nNbEkI7UoNzFPLzk_Vz85PycnNbkkMz-vWD8ptbikOBXILyo2DClJeJLge8vRSoCLqbRYiMspJz8_tyg1MTnDShookiwkamRqaGRgHh-SXxBvGu-emVZSHB8abMUNlMwVYk3NTczMiQrV10_KT6nUL0lMyknVL4Gwi_RLUiAi0SaxmILYRMDslMwyME5MsjI1S01KMUtNMUoxtzBKTTKqAVsXn5liVZSZnO2Qm1hWlFmhl5-XWmNhbGyabJ5qZmlsYW5sYWCWxZPh7v_g_flpDOxJ3580MDEDAOf1dkI.tmXo_FF3DV1YLg/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/ezgif.com-animated-gif-maker%20%284%29.gif\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt=\"Fan-favorites, gift-worthy\" title=\"Fan-favorites, gift-worthy\" height=\"auto\"></a></div>\r\n</div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-5\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto;background-color:#393c43;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:15px;vertical-align:top\"><table class=\"heading_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"padding-bottom:15px;padding-left:30px;padding-right:30px;padding-top:15px;text-align:center;width:100%\"><h1 style=\"margin:0;color:#fff;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:34px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:41px\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">GIFT-WORTHY GREATS</span>\r\n</h1></td></tr></table><table class=\"paragraph_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-left:40px;padding-right:40px\"><div style=\"color:#fff;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:24px;font-weight:400;letter-spacing:0;line-height:1.2;text-align:center;mso-line-height-alt:29px\"><p style=\"margin:0\">These five? They&#8217;re always at the top for a reason. Trusted by doers, fixers, and problem-solvers everywhere, and built to handle everything. If you&#8217;re looking for a can&#8217;t-miss gift, start here.</p></div></td></tr></table><table class=\"button_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"35\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdyiijpKSg2Epfv7y8XC8nNbEkI7UoNzFPLzk_Vz85PycnNbkkMz-vWD8ptbikOBXILyo2DClJeJLge8vRSoCLqbRYiMspJz8_tyg1MTnDShookiwkamRqaGRgHh-SXxBvGu-emVZSHB8abMUNlMwVYk3NTczMiQrR10_KT6nUL0lMyknVL4Gwi_RLUiAi0aaxmIJYlBnHQrkpmWX6iUlWpmapSSlmqSlGKeYWRqlJRjVg2-IzU6yKMpOzHXITy4oyK_Ty81JrLIyNTZPNU80sjS3MjS0MzLJ4Mtz9H7w_P42BPen7kwYmZgBh8HW7.w_VV_HCjNa0xgw/click\" target=\"_blank\" style=\"color:#ffffff;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/EiCJAtCNymyaP_qP66-qv-95HlxFe5_r7M_CSt7HS7dhtxoyaHR0cHM6Ly93d3cubGVhdGhlcm1hbi5jb20vY29sbGVjdGlvbnMvYmVzdHNlbGxlcnMxVHRg5GBN2kE6EAoCdXMSCkJsb29tcmVhY2g6GwoCdWMSFTI1MTIwN19Ub3BfNV9HaWZ0c19VUzoLCgJ1bRIFZW1haWxiOjU2ZWJkNmVkMmQ3ODJlYjJ8ZW1haWxfaWQ6cmlja0BtYXZyaXgub25lfDgzMzVjN2U2OTM4NzM4MDZqDGhHT-Dvz5YAB2L35IACAw.fgOwfroq9aM0CQ/click\"  style=\"height:42px;width:185px;v-text-anchor:middle;\" arcsize=\"0%\" fill=\"false\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"4px\" color=\"#ffc800\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#ffffff;font-family:sans-serif;font-size:16px\">\r\n<![endif]-->\r\n<span class=\"button\" style=\"background-color: transparent; mso-shading: transparent; border-bottom: 4px solid #ffc800; border-left: 4px solid #ffc800; border-radius: 0px; border-right: 4px solid #ffc800; border-top: 4px solid #ffc800; color: #ffffff; display: inline-block; font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size: 16px; font-weight: 700; mso-border-alt: none; padding-bottom: 5px; padding-top: 5px; padding-left: 10px; padding-right: 10px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 32px;\">SHOP BESTSELLERS</span></span>\r\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-6\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#393c43;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:top\"><table class=\"divider_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"padding-bottom:30px;padding-left:10px;padding-right:10px;padding-top:30px\"><div class=\"alignment\" align=\"center\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"80%\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"divider_inner\" style=\"font-size:1px;line-height:1px;border-top:3px solid #bbb\"><span style=\"word-break: break-word;\">&#8202;</span></td></tr></table></div></td></tr></table><table class=\"image_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%;padding-right:0;padding-left:0\"><div class=\"alignment\" align=\"center\"><div class=\"fullWidth\" style=\"max-width:600px\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdyjujpKSg2Epfv7y8XC8nNbEkI7UoNzFPLzk_Vz85PycnNbkkMz-vWD8tMU83PTWxSL-gKD-lNLmkWL8sM68kMT1VtyqzQDcjPz8lM9UwpCThSYLvLUcrAS6m0mIhLqec_PzcotTE5AwraaBIspCokamhkYF5fEh-QbxpvHtmWklxfGiwFTdQMleINTU3MTMnKkJfPyk_pVK_JDEpJ1W_BMIu0i9JgYhEm8ViCmJRZhQL5aZkloFxYpKVqVlqUopZaopRirmFUWqSUQ3YxvjMFKuizORsh9zEsqLMCr38vNQaC2Nj02TzVDNLYwtzYwsDsyyeDHf_B-_PT2NgT_r-pIGJGQAsroCI.lC3JmhFp2wnYlg/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/editor_images/c4642780-510d-4efa-8e7c-d98a1f548396.jpg\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt title height=\"auto\"></a></div></div></td></tr></table><table class=\"paragraph_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:15px;padding-left:40px;padding-right:40px;padding-top:15px\"><div style=\"color:#fff;direction:ltr;font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;font-size:24px;font-weight:700;letter-spacing:0;line-height:1.5;text-align:center;mso-line-height-alt:36px\"><p style=\"margin:0\">MADE FOR FANS. PERFECT FOR GIFTING</p></div></td></tr></table><table class=\"paragraph_block block-4\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:5px\"><div style=\"color:#fff;direction:ltr;font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;font-size:18px;font-weight:400;letter-spacing:0;line-height:1.5;text-align:center;mso-line-height-alt:27px\"><p style=\"margin:0\">\r\nFrom tees to hats to hoodies, the new Leatherman Fan Gear Collection turns everyday staples into something personal. Understated, functional, and made to last &#8212; this is gear they&#8217;ll actually want to wear.</p></div></td></tr></table><table class=\"button_block block-5\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"padding-bottom:20px;padding-left:10px;padding-right:10px;padding-top:20px;text-align:center\"><div class=\"alignment\" align=\"center\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdSj-jpKSg2Epfv7y8XC8nNbEkI7UoNzFPLzk_Vz85PycnNbkkMz-vWD8tMU83PTWxyDCkJOFJgu8tRysBLqbSYiEup5z8_Nyi1MTkDCtpoEiykKiRqaGRgXl8SH5BvGm8e2ZaSXF8aLAVN1AyV4g1NTcxMycqRF8_KT-lUr8kMSknVb8Ewi7SL0mBiESbxWIKYlFmGgvlpmSW6ScmWZmapSalmKWmGKWYWxilJhnVgG2Lz0yxKspMznbITSwryqzQy89LrbEwNjZNNk81szS2MDe2MDDL4slw93_w_vw0Bvak708amJgBajZ0FA.jbLw-obYbIVyZg/click\" target=\"_blank\" style=\"color:#ffffff;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/EiCJAtCNymyaP_qP66-qv-95HlxFe5_r7M_CSt7HS7dhtxovaHR0cHM6Ly93d3cubGVhdGhlcm1hbi5jb20vY29sbGVjdGlvbnMvZmFuLWdlYXIxVHRg5GBN2kE6EAoCdXMSCkJsb29tcmVhY2g6GwoCdWMSFTI1MTIwN19Ub3BfNV9HaWZ0c19VUzoLCgJ1bRIFZW1haWxiOjU2ZWJkNmVkMmQ3ODJlYjJ8ZW1haWxfaWQ6cmlja0BtYXZyaXgub25lfDgzMzVjN2U2OTM4NzM4MDZqDGhHT-Dvz5YAB2L35IACAw.e5v-ZJxM_bwEqQ/click\"  style=\"height:38px;width:183px;v-text-anchor:middle;\" arcsize=\"3%\" fill=\"false\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"3px\" color=\"#e6b800\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#ffffff;font-family:sans-serif;font-size:14px\">\r\n<![endif]-->\r\n<span class=\"button\" style=\"background-color: transparent; mso-shading: transparent; border-bottom: 3px solid #e6b800; border-left: 3px solid #e6b800; border-radius: 1px; border-right: 3px solid #e6b800; border-top: 3px solid #e6b800; color: #ffffff; display: inline-block; font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size: 14px; font-weight: 700; mso-border-alt: none; padding-bottom: 5px; padding-top: 5px; padding-left: 20px; padding-right: 20px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 28px;\">EXPLORE FAN GEAR</span></span>\r\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table><table class=\"divider_block block-6\" width=\"100%\" border=\"0\" cellpadding=\"10\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"80%\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"divider_inner\" style=\"font-size:1px;line-height:1px;border-top:3px solid #bbb\"><span style=\"word-break: break-word;\">&#8202;</span></td></tr></table></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-7\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#393c43;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"html_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div style=\"font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;text-align:center\" align=\"center\"><table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#393c43\" align=\"center\" width=\"100%\" style=\"width: 100%; padding: 10px 0px;\"><tbody><tr><td align=\"center\">\r\n\r\n        <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\"><tbody><tr align=\"center\"><td colspan=\"5\"></td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdqiyjpKSg2Epfv7y8XC8zr7gkMb0oMVcvOT9XPyc1sSQjtSg3Ma8kPz-nWDk-tzilMi83uyQ-JT8vv6SkKDE529ZAByGck5mXnZlim2holGSRmJSsa26YmqRrYpxqpmtpmGKkm5SUlphqYmhqbmqaaBhSkvAkwfeWo5UAF1NpsRCXU05-fm5RamJyhpU0UCRZSNTI1NDIwDw-JL8g3jTePTOtpDg-NNiKGyiZK8SampuYmRNVoa-flJ9SqV-SmJSTql8CYRfpl6RARKLNYzEFsYmA2SmZZbhVIESijWL1E5OsTM1Sk1LMUlOMUswtjFKTjGrALorPTLEqykzOdshNLCvKrNDLz0utsTA2Nk02TzWzNLYwN7YwMMviyXD3f_D-_DQG9qTvTxqYmAEPaZn5.V7YpEz_iWvc71A/click\" data-msdyn-tracking-id=\"060e7af814e081672338229931\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b1b88c4-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"Instagram\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdKi6jpKSg2Epfv7y8XK8kM7skP1svOT9X3yEnNbEkI7UoNzEvviQ_P6dYOT63OKUyLze7JD4nMy87M8XWxDjZOCU5LVXXwMAkRdck2ThZ19LYMlHX1MA0Lc0sNRWI0gxDShKeJPjecrQS4GIqLRbicsrJz88tSk1MzrCSBookC4kamRoaGZjHh-QXxJvGu2emlRTHhwZbcQMlc4VYU3MTM3OiKvT1k_JTKvVLEpNyUvVLIOwi_ZIUiEi0eSymIDYRMDslswy3CoRItHGsfmKSlalZalKKWWqKUYq5hVFqklEN2EXxmSlWRZnJ2Q65iWVFmRV6-XmpNRbGxqbJ5qlmlsYW5sYWBmZZPBnu_g_en5_GwJ70_UkDEzMATtCQjw.Kum5-e8xXty23g/click\" data-msdyn-tracking-id=\"55a2adb6bbc371672338239108\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b1dd76e-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"TikTok\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdqjCjpKSg2Epfv7y8XC8tMTk1KT8_Wy85P1ffJzWxJCO1KDcxT185Prc4pTIvN7skPiU_L7-kpCgxOdvWQAchnJOZl52ZYmucbGSWYmScqmtibmiua2KSZqFraWqWrJtoYmBmYGZumWhklGYYUpLwJMH3lqOVABdTabEQl1NOfn5uUWpicoaVNFAkWUjUyNTQyMA8PiS_IN403j0zraQ4PjTYihsomSvEmpqbmJkTVaGvn5SfUqlfkpiUk6pfAmEX6ZekQESizWMxBbGJgNkpmWW4VSBEok1i9ROTrEzNUpNSzFJTjFLMLYxSk4xqwC6Kz0yxKspMznbITSwryqzQy89LrbEwNjZNNk81szS2MDe2MDDL4slw93_w_vw0Bvak708amJgBVZSWDw.5aL8yYViXFXErA/click\" data-msdyn-tracking-id=\"1c347b64588db1672338250130\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b140b4e-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"Facebook\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdqjKjpKSg2Epfv7y8XK8yv7SkNClVLzk_V7-0OLVI3yc1sSQjtSg3Mc83NSUzUTk-tzilMi83uyQ-JT8vv6SkKDE529ZAByGck5mXnZlim2ZhnGKWkmqga56YlqZrYm5kqmtpbGiim2KQbGRhYW5kbmaWZhhSkvAkwfeWo5UAF1NpsRCXU05-fm5RamJyhpU0UCRZSNTI1NDIwDw-JL8g3jTePTOtpDg-NNiKGyiZK8SampuYmRNVoa-flJ9SqV-SmJSTql8CYRfpl6RARKLNYzEFsYmA2SmZZbhVIESiTWP1E5OsTM1Sk1LMUlOMUswtjFKTjGrALorPTLEqykzOdshNLCvKrNDLz0utsTA2Nk02TzWzNLYwN7YwMMviyXD3f_D-_DQG9qTvTxqYmAGqzpn4.WeGTKF1l5qSbtg/click\" data-msdyn-tracking-id=\"05f4617e605a71672338263640\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b1ff6c0-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"YouTube\"></a>\r\n              </td>\r\n\r\n              <td colspan=\"6\"></td>\r\n            </tr></tbody></table></td>\r\n    </tr></tbody></table></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-8\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;vertical-align:top\"><table class=\"html_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div style=\"font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;text-align:center\" align=\"center\"><div data-section=\"true\" class=\"footer-container\" style=\"font-family: Arial, Verdana, sans-serif; color: #FFFFFF; background-color: #393c43; margin: 0; border-radius: 0;\" data-protected=\"false\">\r\n\r\n  <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse; background-color: #393c43;\"><tr><td align=\"center\" style=\"padding: 10px 0; text-align: center;\">\r\n\r\n        <div style=\"display: inline-block; text-align: center;\">\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdqoUxo6SkoNhKX7-8vFwvJzWxJCO1KDcxTy85P1e_ID8nMzkztVi_oCizLDG5UhcsUKmXUZKboxyfW5xSmZebXRKfkp-XX1JSlJicbWuggxDOyczLzkyxtTBIMjVLMUnVTTI1N9M1sUg20rU0NjbQNUtKM7dMNTA2T7RMNgwpSXiS4HvL0UqAi6m0WIjLKSc_P7coNTE5w0oaKJIsJGpkamhkYB4fkl8QbxrvnplWUhwfGmzFDZTMFWJNzU3MzInK1tdPyk-p1C9JTMpJ1S-BsIv0S1IgItEWsZiC2ETA7JTMMjCGaDWMRRJOBHKTrEzNUpNSzFJTjFLMLYxSk4xqwI6Iz0yxKspMznbITSwryqzQy89LrbEwNjZNNk81szS2MDe2MDDL4slw93_w_vw0Bvak708amJgBMAqZMA.Qv4art3FZWGMWg/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #FFFFFF; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Privacy Policy</u></strong>\r\n          </a>\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdah9jRklJQbGVvn5psbFuckqeXmpeul5STn5-blFqYnKGXnJ-rn5OamJJRmpRbmKebkl-fo5uQVF-SmlySWZ-nn6qvnN6RX6hq6GTd05qbqllcZRbZXqwp2e2s4GnsXeSV368bn58UZFZYby5cXZqhGuYeZ5uWXGVhZe3cXGKT4mRu7FvWJBBpH9QekhKgVNyekWBH5ATXhnknKlbXlCWWa5Xllpe4BPqlJRWElkeVq6fnJ9XnJpXYp-TmJdum5pnGFKS8CTB95ajlQAXU2mxEJcT3OlW0kCRZCFRI1NDIwPz-JD8gnjTePfMtJLi-NBgK26gZK4Qa2puYmZOVLa-flJ-SqV-SWJSTqp-CYRdpF-SAhGJtojFFMQmAmanZJaBMUSrYSyScGK0UWySlalZalKKWWqKUYq5hVFqklEN2BHxmSlWRZnJ2Q65iWVFmRV6-XmpNRbGxqbJ5qlmlsYW5sYWBmZZPBnu_g_en5_GwJ70_UkDEzMARxivIw.Pg4qoqCjCTez0w/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #FFFFFF; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Manage Preferences</u></strong>\r\n          </a>\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdah9jRklJQbGVvn5psbFuckqeXmpeul5STn5-blFqYnKGXnJ-rn5OamJJRmpRbmKebkl-fo5uQVF-SmlySWZ-nn6qvnN6RX6hq6GTd05qbqllcZRbZXqwp2e2s4GnsXeSV368bn58UZFZYby5cXZqhGuYeZ5uWXGVhZe3cXGKT4mRu7FvWJBBpH9QekhKgVNyekWBH5ATXhnknKlbXlCWWa5Xllpe4BPqlJRWElkeVq6fnJ9XnJpXYp-TmJdum5pnGFKS8CTB95ajlQAXU2mxEJcT3OlW0kCRZCFRI1NDIwPz-JD8gnjTePfMtJLi-NBgK26gZK4Qa2puYmZOVLa-flJ-SqV-SWJSTqp-CYRdpF-SAhGJtojFFMQmAmanZJaBMUSrYSyScGK0cWySlalZalKKWWqKUYq5hVFqklEN2BHxmSlWRZnJ2Q65iWVFmRV6-XmpNRbGxqbJ5qlmlsYW5sYWBmZZPBnu_g_en5_GwJ70_UkDEzMAR2evJA.26hN6Y3mWNtmTg/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #FFFFFF; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Unsubscribe</u></strong>\r\n          </a>\r\n\r\n        </div>\r\n\r\n      </td>\r\n    </tr></table><table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse; background-color: #393c43;\"><tr><td align=\"center\" style=\"padding: 0; text-align: center;\">\r\n        <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse;\"><tr><td align=\"center\" style=\"text-align: center; padding: 10px 30px;\">\r\n              <div style=\"font-size: 11px; color: #FFFFFF; text-align: center;\">\r\n\r\n                <p>This email was sent to Rick@mavrix.one</p>\r\n\r\n                <p>by <strong>Leatherman Tool Group, Inc.</strong></p>\r\n\r\n                <p>12106 NE Ainsworth Circle <br>Portland, Oregon 97220</p>\r\n\r\n                <p style=\"display: none;\">Preference Center (PLACEHOLDER)</p>\r\n\r\n                <p style=\"line-height: 1.25;\">&#169; 2025 Leatherman Tool Group, Inc. All Rights Reserved.</p>\r\n                <br></div>\r\n            </td>\r\n          </tr></table></td>\r\n    </tr></table></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><!-- End --></body></html>','[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdSjqjpKSg2Epfv7y8XC8nNbEkI7UoNzFPLzk_V98wpCThSYLvLUcrAS6m0mIhLqec_PzcotTE5AwraaBIspCokamhkYF5fEh-QbxpvHtmWklxfGiwFTdQMleINTU3MTMnKlRfPyk_pVK_JDEpJ1W_BMIu0i9JgYhEG8ZiCmITAbNTMsvAODHJytQsNSnFLDXFKMXcwig1yagGbF18ZopVUWZytkNuYllRZoVefl5qjYWxsWmyeaqZpbGFubGFgVkWT4a7_4P356cxsCd9f9LAxAwAE6lssg.V7XgZ396cqOaSA/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdyj-jpKSg2Epfv7y8XC8nNbEkI7UoNzFPLzk_V7-gKD-lNLmkWB8hrpuemVaim5xYlGJflliUmZhXYmtibGxsamhhaWxsZGBmaBhSkvAkwfeWo5UAF1NpsRCXU05-fm5RamJyhpU0UCRZSNTI1NDIwDw-JL8g3jTeHWhecXxosBU3UDJXiDU1NzEzJypCXz8pP6VSvyQxKSdVvwTCLtIvSYGIRBvFYgoii4AVQATBClIyy8A4McnK1Cw1KcUsNcUoxdzCKDXJqAZsY3xmilVRZnK2Q25iWVFmhV5-XmqNBdBfyeapZpbGFubGFgZmWTwZ7v4P3p-fxsCe9P1JAxMzAOv4f3o.2_fnj_UILNC5yg/click]\r\n\r\n# NEW: SHOP DIGITAL GIFT CARDS [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdyj-jpKSg2Epfv7y8XC8nNbEkI7UoNzFPLzk_V7-gKD-lNLmkWB8hrpuemVaim5xYlGJflliUmZhXYmtibGxsamhhaWxsZGBmaBhSkvAkwfeWo5UAF1NpsRCXU05-fm5RamJyhpU0UCRZSNTI1NDIwDw-JL8g3jTeHWhecXxosBU3UDJXiDU1NzEzJypCXz8pP6VSvyQxKSdVvwTCLtIvSYGIRBvFYgoii0Qbx8IEwQoyDPWLCxLz9BOTrEzNUpNSzFJTjFLMLYxSk4xqwDbGZ6ZYFWUmZzvkJpYVZVbo5eel1lgA_ZVsnmpmaWxhbmxhYJbFk-Hu_-D9-WkM7EnfnzQwMQMA2K1_QA.caCjnb1QGYjUXw/click] \r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdyj-jpKSg2Epfv7y8XC8nNbEkI7UoNzFPLzk_V7-gKD-lNLmkWB8hrpuemVaim5xYlGJflliUmZhXYmtibGxsamhhaWxsZGBmaBhSkvAkwfeWo5UAF1NpsRCXU05-fm5RamJyhpU0UCRZSNTI1NDIwDw-JL8g3jTeHWhecXxosBU3UDJXiDU1NzEzJypCXz8pP6VSvyQxKSdVvwTCLtIvSYGIRBvHYgoii0QbxsIEwQpSMsvAODHJytQsNSnFLDXFKMXcwig1yagGbGN8ZopVUWZytkNuYllRZoVefl5qjQXQX8nmqWaWxhbmxhYGZlk8Ge7-D96fn8bAnvT9SQMTMwDsGX96.p7PevyhQ5z_7CQ/click]\r\n\r\n# NEW: DIGITAL GIFT CARDS [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdyj-jpKSg2Epfv7y8XC8nNbEkI7UoNzFPLzk_V7-gKD-lNLmkWB8hrpuemVaim5xYlGJflliUmZhXYmtibGxsamhhaWxsZGBmaBhSkvAkwfeWo5UAF1NpsRCXU05-fm5RamJyhpU0UCRZSNTI1NDIwDw-JL8g3jTeHWhecXxosBU3UDJXiDU1NzEzJypCXz8pP6VSvyQxKSdVvwTCLtIvSYGIRBvHYgoii0QbxcIEwQoyDPWLCxLz9BOTrEzNUpNSzFJTjFLMLYxSk4xqwDbGZ6ZYFWUmZzvkJpYVZVbo5eel1lgA_ZVsnmpmaWxhbmxhYJbFk-Hu_-D9-WkM7EnfnzQwMQMA2M5_QA.KZ8kFrSSRpTWsQ/click] \r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdyiijpKSg2Epfv7y8XC8nNbEkI7UoNzFPLzk_Vz85PycnNbkkMz-vWD8ptbikOBXILyo2DClJeJLge8vRSoCLqbRYiMspJz8_tyg1MTnDShookiwkamRqaGRgHh-SXxBvGu-emVZSHB8abMUNlMwVYk3NTczMiQrV10_KT6nUL0lMyknVL4Gwi_RLUiAi0SaxmILYRMDslMwyME5MsjI1S01KMUtNMUoxtzBKTTKqAVsXn5liVZSZnO2Qm1hWlFmhl5-XWmNhbGyabJ5qZmlsYW5sYWCWxZPh7v_g_flpDOxJ3580MDEDAOf1dkI.tmXo_FF3DV1YLg/click]\r\n\r\n# GIFT-WORTHY GREATS \r\n\r\nThese five? They’re always at the top for a reason. Trusted by doers, fixers, and problem-solvers everywhere, and built to handle everything. If you’re looking for a can’t-miss gift, start here.\r\n\r\nSHOP BESTSELLERS [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdyiijpKSg2Epfv7y8XC8nNbEkI7UoNzFPLzk_Vz85PycnNbkkMz-vWD8ptbikOBXILyo2DClJeJLge8vRSoCLqbRYiMspJz8_tyg1MTnDShookiwkamRqaGRgHh-SXxBvGu-emVZSHB8abMUNlMwVYk3NTczMiQrR10_KT6nUL0lMyknVL4Gwi_RLUiAi0aaxmIJYlBnHQrkpmWX6iUlWpmapSSlmqSlGKeYWRqlJRjVg2-IzU6yKMpOzHXITy4oyK_Ty81JrLIyNTZPNU80sjS3MjS0MzLJ4Mtz9H7w_P42BPen7kwYmZgBh8HW7.w_VV_HCjNa0xgw/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdyjujpKSg2Epfv7y8XC8nNbEkI7UoNzFPLzk_Vz85PycnNbkkMz-vWD8tMU83PTWxSL-gKD-lNLmkWL8sM68kMT1VtyqzQDcjPz8lM9UwpCThSYLvLUcrAS6m0mIhLqec_PzcotTE5AwraaBIspCokamhkYF5fEh-QbxpvHtmWklxfGiwFTdQMleINTU3MTMnKkJfPyk_pVK_JDEpJ1W_BMIu0i9JgYhEm8ViCmJRZhQL5aZkloFxYpKVqVlqUopZaopRirmFUWqSUQ3YxvjMFKuizORsh9zEsqLMCr38vNQaC2Nj02TzVDNLYwtzYwsDsyyeDHf_B-_PT2NgT_r-pIGJGQAsroCI.lC3JmhFp2wnYlg/click]\r\n\r\nMADE FOR FANS. PERFECT FOR GIFTING\r\n\r\nFrom tees to hats to hoodies, the new Leatherman Fan Gear Collection turns everyday staples into something personal. Understated, functional, and made to last — this is gear they’ll actually want to wear.\r\n\r\nEXPLORE FAN GEAR [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdSj-jpKSg2Epfv7y8XC8nNbEkI7UoNzFPLzk_Vz85PycnNbkkMz-vWD8tMU83PTWxyDCkJOFJgu8tRysBLqbSYiEup5z8_Nyi1MTkDCtpoEiykKiRqaGRgXl8SH5BvGm8e2ZaSXF8aLAVN1AyV4g1NTcxMycqRF8_KT-lUr8kMSknVb8Ewi7SL0mBiESbxWIKYlFmGgvlpmSW6ScmWZmapSalmKWmGKWYWxilJhnVgG2Lz0yxKspMznbITSwryqzQy89LrbEwNjZNNk81szS2MDe2MDDL4slw93_w_vw0Bvak708amJgBajZ0FA.jbLw-obYbIVyZg/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdqiyjpKSg2Epfv7y8XC8zr7gkMb0oMVcvOT9XPyc1sSQjtSg3Ma8kPz-nWDk-tzilMi83uyQ-JT8vv6SkKDE529ZAByGck5mXnZlim2holGSRmJSsa26YmqRrYpxqpmtpmGKkm5SUlphqYmhqbmqaaBhSkvAkwfeWo5UAF1NpsRCXU05-fm5RamJyhpU0UCRZSNTI1NDIwDw-JL8g3jTePTOtpDg-NNiKGyiZK8SampuYmRNVoa-flJ9SqV-SmJSTql8CYRfpl6RARKLNYzEFsYmA2SmZZbhVIESijWL1E5OsTM1Sk1LMUlOMUswtjFKTjGrALorPTLEqykzOdshNLCvKrNDLz0utsTA2Nk02TzWzNLYwN7YwMMviyXD3f_D-_DQG9qTvTxqYmAEPaZn5.V7YpEz_iWvc71A/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdKi6jpKSg2Epfv7y8XK8kM7skP1svOT9X3yEnNbEkI7UoNzEvviQ_P6dYOT63OKUyLze7JD4nMy87M8XWxDjZOCU5LVXXwMAkRdck2ThZ19LYMlHX1MA0Lc0sNRWI0gxDShKeJPjecrQS4GIqLRbicsrJz88tSk1MzrCSBookC4kamRoaGZjHh-QXxJvGu2emlRTHhwZbcQMlc4VYU3MTM3OiKvT1k_JTKvVLEpNyUvVLIOwi_ZIUiEi0eSymIDYRMDslswy3CoRItHGsfmKSlalZalKKWWqKUYq5hVFqklEN2EXxmSlWRZnJ2Q65iWVFmRV6-XmpNRbGxqbJ5qlmlsYW5sYWBmZZPBnu_g_en5_GwJ70_UkDEzMATtCQjw.Kum5-e8xXty23g/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdqjCjpKSg2Epfv7y8XC8tMTk1KT8_Wy85P1ffJzWxJCO1KDcxT185Prc4pTIvN7skPiU_L7-kpCgxOdvWQAchnJOZl52ZYmucbGSWYmScqmtibmiua2KSZqFraWqWrJtoYmBmYGZumWhklGYYUpLwJMH3lqOVABdTabEQl1NOfn5uUWpicoaVNFAkWUjUyNTQyMA8PiS_IN403j0zraQ4PjTYihsomSvEmpqbmJkTVaGvn5SfUqlfkpiUk6pfAmEX6ZekQESizWMxBbGJgNkpmWW4VSBEok1i9ROTrEzNUpNSzFJTjFLMLYxSk4xqwC6Kz0yxKspMznbITSwryqzQy89LrbEwNjZNNk81szS2MDe2MDDL4slw93_w_vw0Bvak708amJgBVZSWDw.5aL8yYViXFXErA/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdqjKjpKSg2Epfv7y8XK8yv7SkNClVLzk_V7-0OLVI3yc1sSQjtSg3Mc83NSUzUTk-tzilMi83uyQ-JT8vv6SkKDE529ZAByGck5mXnZlim2ZhnGKWkmqga56YlqZrYm5kqmtpbGiim2KQbGRhYW5kbmaWZhhSkvAkwfeWo5UAF1NpsRCXU05-fm5RamJyhpU0UCRZSNTI1NDIwDw-JL8g3jTePTOtpDg-NNiKGyiZK8SampuYmRNVoa-flJ9SqV-SmJSTql8CYRfpl6RARKLNYzEFsYmA2SmZZbhVIESiTWP1E5OsTM1Sk1LMUlOMUswtjFKTjGrALorPTLEqykzOdshNLCvKrNDLz0utsTA2Nk02TzWzNLYwN7YwMMviyXD3f_D-_DQG9qTvTxqYmAGqzpn4.WeGTKF1l5qSbtg/click] \r\n\r\n*Privacy Policy* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdqoUxo6SkoNhKX7-8vFwvJzWxJCO1KDcxTy85P1e_ID8nMzkztVi_oCizLDG5UhcsUKmXUZKboxyfW5xSmZebXRKfkp-XX1JSlJicbWuggxDOyczLzkyxtTBIMjVLMUnVTTI1N9M1sUg20rU0NjbQNUtKM7dMNTA2T7RMNgwpSXiS4HvL0UqAi6m0WIjLKSc_P7coNTE5w0oaKJIsJGpkamhkYB4fkl8QbxrvnplWUhwfGmzFDZTMFWJNzU3MzInK1tdPyk-p1C9JTMpJ1S-BsIv0S1IgItEWsZiC2ETA7JTMMjCGaDWMRRJOBHKTrEzNUpNSzFJTjFLMLYxSk4xqwI6Iz0yxKspMznbITSwryqzQy89LrbEwNjZNNk81szS2MDe2MDDL4slw93_w_vw0Bvak708amJgBMAqZMA.Qv4art3FZWGMWg/click] *Manage Preferences* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdah9jRklJQbGVvn5psbFuckqeXmpeul5STn5-blFqYnKGXnJ-rn5OamJJRmpRbmKebkl-fo5uQVF-SmlySWZ-nn6qvnN6RX6hq6GTd05qbqllcZRbZXqwp2e2s4GnsXeSV368bn58UZFZYby5cXZqhGuYeZ5uWXGVhZe3cXGKT4mRu7FvWJBBpH9QekhKgVNyekWBH5ATXhnknKlbXlCWWa5Xllpe4BPqlJRWElkeVq6fnJ9XnJpXYp-TmJdum5pnGFKS8CTB95ajlQAXU2mxEJcT3OlW0kCRZCFRI1NDIwPz-JD8gnjTePfMtJLi-NBgK26gZK4Qa2puYmZOVLa-flJ-SqV-SWJSTqp-CYRdpF-SAhGJtojFFMQmAmanZJaBMUSrYSyScGK0UWySlalZalKKWWqKUYq5hVFqklEN2BHxmSlWRZnJ2Q65iWVFmRV6-XmpNRbGxqbJ5qlmlsYW5sYWBmZZPBnu_g_en5_GwJ70_UkDEzMARxivIw.Pg4qoqCjCTez0w/click] *Unsubscribe* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUuhkutB7KmeW_a_-1-tX7X9fKRfjWj3_9Zvzh7zuHffenrhdah9jRklJQbGVvn5psbFuckqeXmpeul5STn5-blFqYnKGXnJ-rn5OamJJRmpRbmKebkl-fo5uQVF-SmlySWZ-nn6qvnN6RX6hq6GTd05qbqllcZRbZXqwp2e2s4GnsXeSV368bn58UZFZYby5cXZqhGuYeZ5uWXGVhZe3cXGKT4mRu7FvWJBBpH9QekhKgVNyekWBH5ATXhnknKlbXlCWWa5Xllpe4BPqlJRWElkeVq6fnJ9XnJpXYp-TmJdum5pnGFKS8CTB95ajlQAXU2mxEJcT3OlW0kCRZCFRI1NDIwPz-JD8gnjTePfMtJLi-NBgK26gZK4Qa2puYmZOVLa-flJ-SqV-SWJSTqp-CYRdpF-SAhGJtojFFMQmAmanZJaBMUSrYSyScGK0cWySlalZalKKWWqKUYq5hVFqklEN2BHxmSlWRZnJ2Q65iWVFmRV6-XmpNRbGxqbJ5qlmlsYW5sYWBmZZPBnu_g_en5_GwJ70_UkDEzMAR2evJA.26hN6Y3mWNtmTg/click] \r\n\r\nThis email was sent to Rick@mavrix.one\r\n\r\nby *Leatherman Tool Group, Inc.*\r\n\r\n12106 NE Ainsworth Circle \r\nPortland, Oregon 97220\r\n\r\n© 2025 Leatherman Tool Group, Inc. All Rights Reserved.',1,0,0,0,0,0,'2025-12-07 13:39:29','2025-12-09 19:31:49','2025-12-09 19:31:49','2025-12-09 19:44:12',NULL,NULL,NULL),
(979,4,'<1780515447.61433046.1765205392306@lor1-app141103.prod.linkedin.com>',NULL,NULL,'Mavrix, follow Mark Cuban','messages-noreply@linkedin.com','LinkedIn','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n              @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n            </style> <style>\r\n            @media (max-width: 480px) { .inline-button, .inline-button table { display: none !important; }\r\n            .full-width-button, .full-width-button table { display: table !important; } }\r\n          </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n            \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n            \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">See your recommendations</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-left: auto; margin-right: auto; margin-top: 0px; margin-bottom: 0px; width: 512px; max-width: 512px; padding: 0px;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"bg-color-background-container \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3XxRWgOKYVWI01&amp;trk=eml-email_edge_discover_01-header-0-home_glimmer_static_badging_with_count&amp;trkEmail=eml-email_edge_discover_01-header-0-home_glimmer_static_badging_with_count-null-poh2nf~mix9o0fz~c4-null-null&amp;eid=poh2nf-mix9o0fz-c4&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZmNiZDM0ODk4YTY4ODY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNGZjODQ3NDgzZmY4NzNmYmQwMjkxOGZmZDBiMWQ4NzVmNzE3NmZiNWJiM2NkNmIsMSwx\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img class=\"h-[37px] w-[101px]\" alt=\"LinkedIn\" src=\"https://static.licdn.com/aero-v1/sc/h/2fp5x7ci191mxbdy1eynscn59\" data-test-header-static-badging-img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 37px; width: 101px;\" width=\"101\" height=\"37\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" data-test-header-notification-badges style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/messaging/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3XxRWgOKYVWI01&amp;trk=eml-email_edge_discover_01-header-0-messaging_glimmer&amp;trkEmail=eml-email_edge_discover_01-header-0-messaging_glimmer-null-poh2nf~mix9o0fz~c4-null-null&amp;eid=poh2nf-mix9o0fz-c4&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZmNiZDM0ODk4YTY4ODY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNGZjODQ3NDgzZmY4NzNmYmQwMjkxOGZmZDBiMWQ4NzVmNzE3NmZiNWJiM2NkNmIsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Messaging icon\" src=\"https://static.licdn.com/aero-v1/sc/h/10fimloaw3jryyzve9w87w3h1\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3XxRWgOKYVWI01&amp;trk=eml-email_edge_discover_01-header-0-my_network_glimmer&amp;trkEmail=eml-email_edge_discover_01-header-0-my_network_glimmer-null-poh2nf~mix9o0fz~c4-null-null&amp;eid=poh2nf-mix9o0fz-c4&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZmNiZDM0ODk4YTY4ODY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNGZjODQ3NDgzZmY4NzNmYmQwMjkxOGZmZDBiMWQ4NzVmNzE3NmZiNWJiM2NkNmIsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Mynetwork icon\" src=\"https://static.licdn.com/aero-v1/sc/h/anu0f2h3c0xay9ou5nkdrjk8q\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5 games-notification-badge pr-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 8px; display: table-cell;\"> <a href=\"https://www.linkedin.com/comm/games/zip?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3XxRWgOKYVWI01&amp;trk=eml-email_edge_discover_01-header-0-games_glimmer&amp;trkEmail=eml-email_edge_discover_01-header-0-games_glimmer-null-poh2nf~mix9o0fz~c4-null-null&amp;eid=poh2nf-mix9o0fz-c4&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZmNiZDM0ODk4YTY4ODY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNGZjODQ3NDgzZmY4NzNmYmQwMjkxOGZmZDBiMWQ4NzVmNzE3NmZiNWJiM2NkNmIsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Games icon\" src=\"https://static.licdn.com/aero-v1/sc/h/3lw2d9s3kbqj8uc9fk7nge7lp\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/notifications/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3XxRWgOKYVWI01&amp;trk=eml-email_edge_discover_01-header-0-notifications_glimmer&amp;trkEmail=eml-email_edge_discover_01-header-0-notifications_glimmer-null-poh2nf~mix9o0fz~c4-null-null&amp;eid=poh2nf-mix9o0fz-c4&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZmNiZDM0ODk4YTY4ODY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNGZjODQ3NDgzZmY4NzNmYmQwMjkxOGZmZDBiMWQ4NzVmNzE3NmZiNWJiM2NkNmIsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Notifications icon\" src=\"https://static.licdn.com/aero-v1/sc/h/9pd3p4xrruqz3lc8kghvmdnjs\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"px-3 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px; padding-bottom: 24px;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <h2 class=\"text-lg leading-regular\" data-test-id=\"follow-recommendation-header\" style=\"margin: 0; font-weight: 500; font-size: 20px; line-height: 1.25;\"> Mavrix, add interesting content to your feed. Here are a few recommendations to get started. </h2> </td> </tr> <tr data-test-id=\"follow-recommendation-section\"> <td align=\"center\" class=\"pt-1.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" class=\"pr-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/mark-cuban-06a0755b?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3XxRWgOKYVWI01&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A212158738&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A212158738-null-poh2nf~mix9o0fz~c4-null-null&amp;eid=poh2nf-mix9o0fz-c4&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZmNiZDM0ODk4YTY4ODY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNGZjODQ3NDgzZmY4NzNmYmQwMjkxOGZmZDBiMWQ4NzVmNzE3NmZiNWJiM2NkNmIsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/D5603AQH9b4ZbzNR0zg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1681567357400?e=2147483647&amp;v=beta&amp;t=VRBrWwzCKwPVmQICZANQy_SQClDQD7ufZnrTIR2qBcs\" alt=\"Mark Cuban’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/mark-cuban-06a0755b?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3XxRWgOKYVWI01&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A212158738&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A212158738-null-poh2nf~mix9o0fz~c4-null-null&amp;eid=poh2nf-mix9o0fz-c4&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZmNiZDM0ODk4YTY4ODY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNGZjODQ3NDgzZmY4NzNmYmQwMjkxOGZmZDBiMWQ4NzVmNzE3NmZiNWJiM2NkNmIsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Mark Cuban </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> President </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 8,244,996 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=mark-cuban-06a0755b&amp;entityUrn=ADoAAAylSRIBoVg_CysUlZYwCTYlXPTQoiGxDAk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midSig=3XxRWgOKYVWI01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A212158738-null-poh2nf%7Emix9o0fz%7Ec4-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A212158738\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=mark-cuban-06a0755b&amp;entityUrn=ADoAAAylSRIBoVg_CysUlZYwCTYlXPTQoiGxDAk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midSig=3XxRWgOKYVWI01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A212158738-null-poh2nf%7Emix9o0fz%7Ec4-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A212158738\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=mark-cuban-06a0755b&amp;entityUrn=ADoAAAylSRIBoVg_CysUlZYwCTYlXPTQoiGxDAk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midSig=3XxRWgOKYVWI01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A212158738-null-poh2nf%7Emix9o0fz%7Ec4-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A212158738\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=mark-cuban-06a0755b&amp;entityUrn=ADoAAAylSRIBoVg_CysUlZYwCTYlXPTQoiGxDAk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midSig=3XxRWgOKYVWI01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A212158738-null-poh2nf%7Emix9o0fz%7Ec4-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A212158738\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/layla-luv-8aa8361b7?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3XxRWgOKYVWI01&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A847097986&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A847097986-null-poh2nf~mix9o0fz~c4-null-null&amp;eid=poh2nf-mix9o0fz-c4&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZmNiZDM0ODk4YTY4ODY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNGZjODQ3NDgzZmY4NzNmYmQwMjkxOGZmZDBiMWQ4NzVmNzE3NmZiNWJiM2NkNmIsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/D5603AQEJrdgZi6mJ1Q/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1694535062332?e=2147483647&amp;v=beta&amp;t=E1JU35fmmToJLT0EmXBMpPwfpY-KI0IUMo0cDYEQ8Ro\" alt=\"Layla Luv’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/layla-luv-8aa8361b7?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3XxRWgOKYVWI01&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A847097986&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A847097986-null-poh2nf~mix9o0fz~c4-null-null&amp;eid=poh2nf-mix9o0fz-c4&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZmNiZDM0ODk4YTY4ODY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNGZjODQ3NDgzZmY4NzNmYmQwMjkxOGZmZDBiMWQ4NzVmNzE3NmZiNWJiM2NkNmIsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Layla Luv </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> Onlyfans Model available for bookings </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 15,332 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=layla-luv-8aa8361b7&amp;entityUrn=ADoAADJ9sIIBiQFqphISbrYt5dBzWGebhH9FNK0&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midSig=3XxRWgOKYVWI01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A847097986-null-poh2nf%7Emix9o0fz%7Ec4-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A847097986\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=layla-luv-8aa8361b7&amp;entityUrn=ADoAADJ9sIIBiQFqphISbrYt5dBzWGebhH9FNK0&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midSig=3XxRWgOKYVWI01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A847097986-null-poh2nf%7Emix9o0fz%7Ec4-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A847097986\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=layla-luv-8aa8361b7&amp;entityUrn=ADoAADJ9sIIBiQFqphISbrYt5dBzWGebhH9FNK0&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midSig=3XxRWgOKYVWI01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A847097986-null-poh2nf%7Emix9o0fz%7Ec4-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A847097986\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=layla-luv-8aa8361b7&amp;entityUrn=ADoAADJ9sIIBiQFqphISbrYt5dBzWGebhH9FNK0&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midSig=3XxRWgOKYVWI01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A847097986-null-poh2nf%7Emix9o0fz%7Ec4-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A847097986\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/snoopdogg?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3XxRWgOKYVWI01&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A1111511297&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A1111511297-null-poh2nf~mix9o0fz~c4-null-null&amp;eid=poh2nf-mix9o0fz-c4&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZmNiZDM0ODk4YTY4ODY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNGZjODQ3NDgzZmY4NzNmYmQwMjkxOGZmZDBiMWQ4NzVmNzE3NmZiNWJiM2NkNmIsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/D5603AQHN1f-W4ZsjWQ/profile-displayphoto-shrink_800_800/B56ZRfsMmSH0Ag-/0/1736772209353?e=2147483647&amp;v=beta&amp;t=eExhFWW18gsrt2IYNEgmd8bu3Hq0rsG04xFz6E44h9M\" alt=\"Snoop Dogg’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/snoopdogg?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3XxRWgOKYVWI01&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A1111511297&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A1111511297-null-poh2nf~mix9o0fz~c4-null-null&amp;eid=poh2nf-mix9o0fz-c4&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZmNiZDM0ODk4YTY4ODY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNGZjODQ3NDgzZmY4NzNmYmQwMjkxOGZmZDBiMWQ4NzVmNzE3NmZiNWJiM2NkNmIsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Snoop Dogg </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> CEO - Death Row Records | Founder - Death Row Pictures </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 651,311 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=snoopdogg&amp;entityUrn=ADoAAEJAUQEBDUfXsTzCBr5OO7NQORYg__TH9Lk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midSig=3XxRWgOKYVWI01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A1111511297-null-poh2nf%7Emix9o0fz%7Ec4-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A1111511297\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=snoopdogg&amp;entityUrn=ADoAAEJAUQEBDUfXsTzCBr5OO7NQORYg__TH9Lk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midSig=3XxRWgOKYVWI01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A1111511297-null-poh2nf%7Emix9o0fz%7Ec4-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A1111511297\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=snoopdogg&amp;entityUrn=ADoAAEJAUQEBDUfXsTzCBr5OO7NQORYg__TH9Lk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midSig=3XxRWgOKYVWI01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A1111511297-null-poh2nf%7Emix9o0fz%7Ec4-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A1111511297\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=snoopdogg&amp;entityUrn=ADoAAEJAUQEBDUfXsTzCBr5OO7NQORYg__TH9Lk&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midSig=3XxRWgOKYVWI01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A1111511297-null-poh2nf%7Emix9o0fz%7Ec4-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A1111511297\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/barackobama?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3XxRWgOKYVWI01&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A11932467&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A11932467-null-poh2nf~mix9o0fz~c4-null-null&amp;eid=poh2nf-mix9o0fz-c4&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZmNiZDM0ODk4YTY4ODY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNGZjODQ3NDgzZmY4NzNmYmQwMjkxOGZmZDBiMWQ4NzVmNzE3NmZiNWJiM2NkNmIsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQGcice3q3BiUQ/profile-displayphoto-scale_400_400/B4EZoczRWLJgAg-/0/1761419796900?e=2147483647&amp;v=beta&amp;t=hAeYRdV5os4HeQIcXT8yFQxqL5LgQ2LV2zWOPDve-MY\" alt=\"Barack Obama’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/barackobama?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3XxRWgOKYVWI01&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A11932467&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A11932467-null-poh2nf~mix9o0fz~c4-null-null&amp;eid=poh2nf-mix9o0fz-c4&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZmNiZDM0ODk4YTY4ODY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNGZjODQ3NDgzZmY4NzNmYmQwMjkxOGZmZDBiMWQ4NzVmNzE3NmZiNWJiM2NkNmIsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Barack Obama </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> Former President of the United States of America </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 4,574,945 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=barackobama&amp;entityUrn=ADoAAAC2EzMBa8quzxKLQAbcjJIEIHHvDZLrksU&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midSig=3XxRWgOKYVWI01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A11932467-null-poh2nf%7Emix9o0fz%7Ec4-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A11932467\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=barackobama&amp;entityUrn=ADoAAAC2EzMBa8quzxKLQAbcjJIEIHHvDZLrksU&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midSig=3XxRWgOKYVWI01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A11932467-null-poh2nf%7Emix9o0fz%7Ec4-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A11932467\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=barackobama&amp;entityUrn=ADoAAAC2EzMBa8quzxKLQAbcjJIEIHHvDZLrksU&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midSig=3XxRWgOKYVWI01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A11932467-null-poh2nf%7Emix9o0fz%7Ec4-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A11932467\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=barackobama&amp;entityUrn=ADoAAAC2EzMBa8quzxKLQAbcjJIEIHHvDZLrksU&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midSig=3XxRWgOKYVWI01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A11932467-null-poh2nf%7Emix9o0fz%7Ec4-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A11932467\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pb-3\" data-test-id=\"follow-recommendation-card\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/grantcardone?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3XxRWgOKYVWI01&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A22392586&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_image%3Aurn%3Ali%3Amember%3A22392586-null-poh2nf~mix9o0fz~c4-null-null&amp;eid=poh2nf-mix9o0fz-c4&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZmNiZDM0ODk4YTY4ODY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNGZjODQ3NDgzZmY4NzNmYmQwMjkxOGZmZDBiMWQ4NzVmNzE3NmZiNWJiM2NkNmIsMSwx\" target=\"_blank\" data-test-id=\"pymk-entity_profile-image-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/C5603AQGKCXSQe1Xgqg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1526504027092?e=2147483647&amp;v=beta&amp;t=R2J1DtpcZI2H21j6clyawuXgAscmlQcdYkzaCW-uzwY\" alt=\"Grant Cardone’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px;\"> <a href=\"https://www.linkedin.com/comm/in/grantcardone?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3XxRWgOKYVWI01&amp;trk=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A22392586&amp;trkEmail=eml-email_edge_discover_01-edge_discover_card-0-profile_name%3Aurn%3Ali%3Amember%3A22392586-null-poh2nf~mix9o0fz~c4-null-null&amp;eid=poh2nf-mix9o0fz-c4&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZmNiZDM0ODk4YTY4ODY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNGZjODQ3NDgzZmY4NzNmYmQwMjkxOGZmZDBiMWQ4NzVmNzE3NmZiNWJiM2NkNmIsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90\" data-test-id=\"pymk-entity_profile-name-link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Grant Cardone </a> </td> </tr> <tr data-test-id=\"pymk-entity_headline\"> <td class=\"text-sm leading-regular pb-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 4px; font-size: 14px; line-height: 1.25;\"> Private Equity Fund Manager &amp; Real Estate Investor •$5B AUM • Cardone Capital •… </td> </tr> <tr data-test-id=\"pymk-entity_follower-count\"> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <p class=\"text-xs leading-regular text-system-gray-70\" style=\"margin: 0; font-weight: 400; font-size: 12px; line-height: 1.25; color: #666666;\"> 665,443 followers </p> </td> </tr> <tr class=\"card-cta-container-mobile\"> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=grantcardone&amp;entityUrn=ADoAAAFVrwoB0ebEW7lzgRee2yzmZ1aVZ0XbO98&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midSig=3XxRWgOKYVWI01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A22392586-null-poh2nf%7Emix9o0fz%7Ec4-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A22392586\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=grantcardone&amp;entityUrn=ADoAAAFVrwoB0ebEW7lzgRee2yzmZ1aVZ0XbO98&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midSig=3XxRWgOKYVWI01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A22392586-null-poh2nf%7Emix9o0fz%7Ec4-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A22392586\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top card-cta-container-desktop\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; display: none; width: 0; height: 0; visibility: hidden; overflow: hidden; mso-hide: all; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-hide: all;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=grantcardone&amp;entityUrn=ADoAAAFVrwoB0ebEW7lzgRee2yzmZ1aVZ0XbO98&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midSig=3XxRWgOKYVWI01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A22392586-null-poh2nf%7Emix9o0fz%7Ec4-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A22392586\" target=\"_blank\" aria-label=\"Follow \" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; mso-hide: all;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; mso-hide: all;\"> <tbody style=\"mso-hide: all;\"> <tr style=\"mso-hide: all;\"> <td class=\"btn-sm btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid whitespace-nowrap\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; white-space: nowrap; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; mso-hide: all; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/build-relation/people-follow/?entityName=grantcardone&amp;entityUrn=ADoAAAFVrwoB0ebEW7lzgRee2yzmZ1aVZ0XbO98&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midSig=3XxRWgOKYVWI01&amp;midToken=AQE-iPshthTClw&amp;trkEmail=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A22392586-null-poh2nf%7Emix9o0fz%7Ec4-null-null&amp;trk=eml-email_edge_discover_01-edgeDiscoverCard-0-follow_cta%3A+urn%3Ali%3Amember%3A22392586\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none; mso-hide: all;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none; mso-hide: all;\"> Follow </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/discovery-see-all/?usecase=EMAIL_MIXED_RECOMMENDATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3XxRWgOKYVWI01&amp;trk=eml-email_edge_discover_01-see_more-0-cta~text&amp;trkEmail=eml-email_edge_discover_01-see_more-0-cta~text-null-poh2nf~mix9o0fz~c4-null-null&amp;eid=poh2nf-mix9o0fz-c4&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZmNiZDM0ODk4YTY4ODY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNGZjODQ3NDgzZmY4NzNmYmQwMjkxOGZmZDBiMWQ4NzVmNzE3NmZiNWJiM2NkNmIsMSwx\" target=\"_blank\" aria-label=\"See all\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/discovery-see-all/?usecase=EMAIL_MIXED_RECOMMENDATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3XxRWgOKYVWI01&amp;trk=eml-email_edge_discover_01-see_more-0-cta~text&amp;trkEmail=eml-email_edge_discover_01-see_more-0-cta~text-null-poh2nf~mix9o0fz~c4-null-null&amp;eid=poh2nf-mix9o0fz-c4&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZmNiZDM0ODk4YTY4ODY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNGZjODQ3NDgzZmY4NzNmYmQwMjkxOGZmZDBiMWQ4NzVmNzE3NmZiNWJiM2NkNmIsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> See all </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-lg text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 20px; color: #114951;\"> Get the new LinkedIn desktop app </h2> </td> </tr> <tr> <td class=\"text-center pb-2\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <a href=\"https://apps.microsoft.com/store/detail/9WZDNCRFJ4Q7?launch=true&amp;cid=linkedin_email_upsell&amp;mode=full\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it from Microsoft\" src=\"https://static.licdn.com/aero-v1/sc/h/ejpkkpwvqks31a3cjqokb7fbm\" class=\"h-[40px] w-[112px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 112px;\" width=\"112\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-md text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 16px; color: #114951;\"> Also available on mobile </h2> </td> </tr> <tr> <td class=\"text-center\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <a href=\"https://itunes.apple.com/us/app/linkedin/id288429040?pt=10746&amp;ct=st_appsite_flagship&amp;mt=8\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Download on the App Store\" src=\"https://static.licdn.com/aero-v1/sc/h/76yzkd0h5kiv27lrd4yaenylk\" class=\"h-[40px] w-[120px] pr-1\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 120px; padding-right: 8px;\" width=\"120\" height=\"40\"> </a> <a href=\"https://play.google.com/store/apps/details?id=com.linkedin.android&amp;referrer=st_appsite_flagship\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it on Google Play\" src=\"https://static.licdn.com/aero-v1/sc/h/142qudwblp58zwmc9vkqfplug\" class=\"h-[40px] w-[134px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 134px;\" width=\"134\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px;\"><hr class=\"border-none bg-[#e0dfdd] h-[1px]\" style=\"height: 1px; border-style: none; background-color: #e0dfdd;\"></td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" data-test-id=\"email-footer__intended\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3XxRWgOKYVWI01&amp;trk=eml-email_edge_discover_01-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_edge_discover_01-SecurityHelp-0-footerglimmer-null-poh2nf~mix9o0fz~c4-null-null&amp;eid=poh2nf-mix9o0fz-c4&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZmNiZDM0ODk4YTY4ODY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNGZjODQ3NDgzZmY4NzNmYmQwMjkxOGZmZDBiMWQ4NzVmNzE3NmZiNWJiM2NkNmIsMSwx\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving People You May Know notification emails.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3XxRWgOKYVWI01&amp;trk=eml-email_edge_discover_01-unsubscribe-0-footerGlimmer&amp;trkEmail=eml-email_edge_discover_01-unsubscribe-0-footerGlimmer-null-poh2nf~mix9o0fz~c4-null-null&amp;eid=poh2nf-mix9o0fz-c4&amp;loid=AQFQoefyiTXDcwAAAZr-cLntVYlSEh7Do5k33pE6g70y02q7SrcoBEmAqpvi-RVG5wcWehN5EUAnfNs99mIg6w8glLtoBxLQSK3O\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Unsubscribe</a>   ·   <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3XxRWgOKYVWI01&amp;trk=eml-email_edge_discover_01-help-0-footerglimmer&amp;trkEmail=eml-email_edge_discover_01-help-0-footerglimmer-null-poh2nf~mix9o0fz~c4-null-null&amp;eid=poh2nf-mix9o0fz-c4&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZmNiZDM0ODk4YTY4ODY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNGZjODQ3NDgzZmY4NzNmYmQwMjkxOGZmZDBiMWQ4NzVmNzE3NmZiNWJiM2NkNmIsMSwx\" target=\"_blank\" data-test-help-link class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=3XxRWgOKYVWI01&amp;trk=eml-email_edge_discover_01-footer-0-logoGlimmer&amp;trkEmail=eml-email_edge_discover_01-footer-0-logoGlimmer-null-poh2nf~mix9o0fz~c4-null-null&amp;eid=poh2nf-mix9o0fz-c4&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZmNiZDM0ODk4YTY4ODY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNGZjODQ3NDgzZmY4NzNmYmQwMjkxOGZmZDBiMWQ4NzVmNzE3NmZiNWJiM2NkNmIsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/aero-v1/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFwZURsdk1HWjZMV00wOlpXMWhhV3hmWldSblpWOWthWE5qYjNabGNsOHdNUT09Og==.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','Mavrix, add interesting content to your feed. Here are a few recommendations to get started.\r\n\r\n\r\nhttps://www.linkedin.com/comm/mynetwork/discovery-see-all/?usecase=EMAIL_MIXED_RECOMMENDATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&midToken=AQE-iPshthTClw&midSig=3XxRWgOKYVWI01&trk=eml-email_edge_discover_01-see_all-0-cta~text&trkEmail=eml-email_edge_discover_01-see_all-0-cta~text-null-poh2nf~mix9o0fz~c4-null-null&eid=poh2nf-mix9o0fz-c4&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZmNiZDM0ODk4YTY4ODY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNGZjODQ3NDgzZmY4NzNmYmQwMjkxOGZmZDBiMWQ4NzVmNzE3NmZiNWJiM2NkNmIsMSwx\r\n      \r\n\r\n----------------------------------------\r\n\r\nThis email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\nLearn why we included this: https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&midToken=AQE-iPshthTClw&midSig=3XxRWgOKYVWI01&trk=eml-email_edge_discover_01-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_edge_discover_01-SecurityHelp-0-textfooterglimmer-null-poh2nf~mix9o0fz~c4-null-null&eid=poh2nf-mix9o0fz-c4&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZmNiZDM0ODk4YTY4ODY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNGZjODQ3NDgzZmY4NzNmYmQwMjkxOGZmZDBiMWQ4NzVmNzE3NmZiNWJiM2NkNmIsMSwx\r\nYou are receiving People You May Know notification emails.\r\n\r\n\r\nUnsubscribe: https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&midToken=AQE-iPshthTClw&midSig=3XxRWgOKYVWI01&trk=eml-email_edge_discover_01-unsubscribe-0-textfooterglimmer&trkEmail=eml-email_edge_discover_01-unsubscribe-0-textfooterglimmer-null-poh2nf~mix9o0fz~c4-null-null&eid=poh2nf-mix9o0fz-c4&loid=AQFQoefyiTXDcwAAAZr-cLntVYlSEh7Do5k33pE6g70y02q7SrcoBEmAqpvi-RVG5wcWehN5EUAnfNs99mIg6w8glLtoBxLQSK3O\r\nHelp: https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_edge_discover_01%3BY8D%2B5kipSbG%2ByEi%2B%2BonuLw%3D%3D&midToken=AQE-iPshthTClw&midSig=3XxRWgOKYVWI01&trk=eml-email_edge_discover_01-help-0-textfooterglimmer&trkEmail=eml-email_edge_discover_01-help-0-textfooterglimmer-null-poh2nf~mix9o0fz~c4-null-null&eid=poh2nf-mix9o0fz-c4&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZmNiZDM0ODk4YTY4ODY5N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThkNGZjODQ3NDgzZmY4NzNmYmQwMjkxOGZmZDBiMWQ4NzVmNzE3NmZiNWJiM2NkNmIsMSwx\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.\r\nLinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',0,0,0,0,0,0,'2025-12-08 14:49:52','2025-12-09 19:31:50','2025-12-09 19:31:50','2025-12-09 19:31:50',NULL,NULL,NULL),
(980,4,'<CAGgBgfDtq3SCQxDrTiEh9w-AVC9207Q54ftmtAhvOfeyq-nSUA@mail.gmail.com>',NULL,NULL,'Surface Mount Line Considerations (12/08/25 1105)','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">Rick:</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">You said something starts at the beginning of the year, which is great news, but you also mentioned something about a surface-mount line.</div><br>If you&#39;re still after that, you&#39;ll need our support<span class=\"gmail_default\" style=\"font-size:small\">.  </span><span class=\"gmail_default\" style=\"font-size:small\"></span>Along with the equipment you&#39;re going to need to pick out some CAD software<span class=\"gmail_default\" style=\"font-size:small\"></span>,<span class=\"gmail_default\" style=\"font-size:small\"> </span>and you&#39;re going to need to work out the particulars on the equipment you buy regarding the waste rails you&#39;ll be mandating.<br><br>There&#39;s a couple of ways of dealing with production.  One is you get the primary gerber data and you have to put it up in an array. Old-school is you know all the things you need to make the array work with your equipment, new-school is you pay for some expensive software that is either bundled with your equipment or not which has to be initially set up.<br><br>In order to start the SMT line without very knowledgeable persnickety people, you most likely need to have some form of software that incorporates this type of knowledge, such as OpenBOM and Arena PLM.  There&#39;s software that controls a single machine, software that controls the overall production floor, software that controls your inventory.  I believe the industry tries to avoid having individuals that understand all of these things because people come and go, which would bring your <span class=\"gmail_default\" style=\"font-size:small\"></span>l<span class=\"gmail_default\" style=\"font-size:small\">ine </span>down, so they invest in software and you end up with operators that understand specific sections of the process along with a poorly written interface program.<br><br>Then you find yourself essentially buying people that (hopefully) have proficiencies with various pieces of software.<br><br>I would do some shopping to make sure whatever you pick, you enjoy, because you end up living with it for a good long time.<br><br>The other thing of interest is to always have a way to manually jump outside the software and load a particular machine &quot;by hand.&quot; You&#39;ll also need someone to understand how to get stencils -- old school was you get a piece of stainless steel laser cut with a taper to it that reveals all the openings for solder paste, then you have a machine applying a couple hundred pounds of force pushing a semi-liquid paste into those openings, then you lift the stencil and you (hopefully) have the right amount of solder paste on each of the pads. At this point you should be able to run some samples, at which time you&#39;ll need a chemistry / inspection lab -- it looks at the solder, the contamination levels, adhesion, and you&#39;d also use an x-ray machine to check that the dwell temperatures are appropriate by looking through the board and the ICs to check the melted paste (kind of like looking for off-color elements on a CT scan). You&#39;ll have to run the machines for a while to get that dwell correct.<br><br>Sorry, I&#39;m going on too long about the machines. I picture at least 3-4 competent people, and then on top of that you&#39;ll need some warm bodies whose main job is to just watch the machines. You&#39;ll also need someone to start writing the core process sheets, and then you&#39;ll need someone to fluff them (make them understandable by whatever generation of people you&#39;re buying, big task). You&#39;ll also need an engineer to lay out the flow of everything, and you&#39;ll find that that won&#39;t be right the first time and will have to change it accordingly.<br><br>Electronics are sort of a pain.  Once you think you&#39;ve built a good thing, you need optical inspection equipment and x-ray inspection equipment because we humans are not consistent enough to find all the defects. Even that doesn&#39;t mean you&#39;ve built something that works which someone else is willing to pay for.<span class=\"gmail_default\" style=\"font-size:small\"></span><br clear=\"all\"></div><div><span class=\"gmail_default\" style=\"font-size:small\"><br></span></div><div><span class=\"gmail_default\" style=\"font-size:small\">On top of all that, you&#39;re trying to achieve a failure rate below 3% -- because there will be failures.</span></div><div><span class=\"gmail_default\" style=\"font-size:small\"><br></span></div><div><span class=\"gmail_default\" style=\"font-size:small\">Don&#39;t forget, you&#39;ll need a few of the well-dressed business casual types for the meetings, a board room to have the meetings in which has Zoom and big screens and links so they can present problems visually, along with a method for taking notes and writing CYA documents.</span></div><div><span class=\"gmail_default\" style=\"font-size:small\"><br></span></div><div><span class=\"gmail_default\" style=\"font-size:small\">I would also set your shop up to run multiple shifts.  You won&#39;t be running fully-staffed multiple shifts, but the people who prep everything will need a period of time which overlaps the people who make everything by a couple of hours.  That will make your results a lot better.</span></div><div><span class=\"gmail_default\" style=\"font-size:small\"><br></span></div><div><span class=\"gmail_default\" style=\"font-size:small\">I&#39;m sure I&#39;ve missed about 1000 details you&#39;re going to have to learn.  This is definitely far from everything you&#39;re going to need to know, it&#39;s just what flies off the top of my head.</span></div><div><span class=\"gmail_default\" style=\"font-size:small\"><br></span></div><div><span class=\"gmail_default\" style=\"font-size:small\"><br></span></div><div><span class=\"gmail_default\" style=\"font-size:small\"><br></span></div><div><span class=\"gmail_default\" style=\"font-size:small\">I believe I have 2 designs done, one with 3 variants and one with one variant, then I have a FCC schematic done with an unfinished layout.</span></div><div><span class=\"gmail_default\" style=\"font-size:small\"><br></span></div><div><span class=\"gmail_default\" style=\"font-size:small\">I feel so far behind on this stuff.</span></div><div><span class=\"gmail_default\" style=\"font-size:small\"><br></span></div><div><span class=\"gmail_default\" style=\"font-size:small\">Remember, these FCCs will (hopefully) allow us to do all 5 types of aircraft -- plane, helicopter, boat, transitional helicopter to plane, cheaper one-way kind of drone (with hardware to facilitate change at the last minute and covert actions).  That was the targeting on the sensors that I was trying to account for.</span></div><div><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><div><font face=\"courier new, monospace\">Regards,</font></div><div><font face=\"courier new, monospace\">Thomas Pownall</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">CADX Services, Inc.</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Tel: 585-624-1491 X101</font></div><div><font face=\"courier new, monospace\">Fax: 585-582-1101</font></div><div><font face=\"courier new, monospace\">E-Mail: <a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a></font></div><div><font face=\"courier new, monospace\">Web: <a href=\"http://www.cadxservices.com\" target=\"_blank\">http://www.cadxservices.com</a></font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\">**************** Confidentiality Statement ****************</font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Privileged/Confidential Information may be contained in this</font></div><div><font face=\"courier new, monospace\">message. If you are not the addressee indicated in this message</font></div><div><font face=\"courier new, monospace\">(or responsible for delivery of the message to such person),</font></div><div><font face=\"courier new, monospace\">you may not copy or deliver this message to anyone. In such</font></div><div><font face=\"courier new, monospace\">case, you should destroy this message, and notify us</font></div><div><font face=\"courier new, monospace\">immediately. If you or your employer does not consent to</font></div><div><font face=\"courier new, monospace\">Internet email messages of this kind, please advise us</font></div><div><font face=\"courier new, monospace\">immediately. Opinions, conclusions and other information</font></div><div><font face=\"courier new, monospace\">expressed in this message are not given or endorsed by my firm</font></div><div><font face=\"courier new, monospace\">or employer unless otherwise indicated by an authorized</font></div><div><font face=\"courier new, monospace\">representative independent of this message.</font></div></div></div></div></div></div></div>','Rick:\r\n\r\nYou said something starts at the beginning of the year, which is great\r\nnews, but you also mentioned something about a surface-mount line.\r\n\r\nIf you\'re still after that, you\'ll need our support.  Along with the\r\nequipment you\'re going to need to pick out some CAD software, and you\'re\r\ngoing to need to work out the particulars on the equipment you buy\r\nregarding the waste rails you\'ll be mandating.\r\n\r\nThere\'s a couple of ways of dealing with production.  One is you get the\r\nprimary gerber data and you have to put it up in an array. Old-school is\r\nyou know all the things you need to make the array work with your\r\nequipment, new-school is you pay for some expensive software that is either\r\nbundled with your equipment or not which has to be initially set up.\r\n\r\nIn order to start the SMT line without very knowledgeable persnickety\r\npeople, you most likely need to have some form of software that\r\nincorporates this type of knowledge, such as OpenBOM and Arena PLM.\r\nThere\'s software that controls a single machine, software that controls the\r\noverall production floor, software that controls your inventory.  I believe\r\nthe industry tries to avoid having individuals that understand all of these\r\nthings because people come and go, which would bring your line down, so\r\nthey invest in software and you end up with operators that understand\r\nspecific sections of the process along with a poorly written interface\r\nprogram.\r\n\r\nThen you find yourself essentially buying people that (hopefully) have\r\nproficiencies with various pieces of software.\r\n\r\nI would do some shopping to make sure whatever you pick, you enjoy, because\r\nyou end up living with it for a good long time.\r\n\r\nThe other thing of interest is to always have a way to manually jump\r\noutside the software and load a particular machine \"by hand.\" You\'ll also\r\nneed someone to understand how to get stencils -- old school was you get a\r\npiece of stainless steel laser cut with a taper to it that reveals all the\r\nopenings for solder paste, then you have a machine applying a couple\r\nhundred pounds of force pushing a semi-liquid paste into those openings,\r\nthen you lift the stencil and you (hopefully) have the right amount of\r\nsolder paste on each of the pads. At this point you should be able to run\r\nsome samples, at which time you\'ll need a chemistry / inspection lab -- it\r\nlooks at the solder, the contamination levels, adhesion, and you\'d also use\r\nan x-ray machine to check that the dwell temperatures are appropriate by\r\nlooking through the board and the ICs to check the melted paste (kind of\r\nlike looking for off-color elements on a CT scan). You\'ll have to run the\r\nmachines for a while to get that dwell correct.\r\n\r\nSorry, I\'m going on too long about the machines. I picture at least 3-4\r\ncompetent people, and then on top of that you\'ll need some warm bodies\r\nwhose main job is to just watch the machines. You\'ll also need someone to\r\nstart writing the core process sheets, and then you\'ll need someone to\r\nfluff them (make them understandable by whatever generation of people\r\nyou\'re buying, big task). You\'ll also need an engineer to lay out the flow\r\nof everything, and you\'ll find that that won\'t be right the first time and\r\nwill have to change it accordingly.\r\n\r\nElectronics are sort of a pain.  Once you think you\'ve built a good thing,\r\nyou need optical inspection equipment and x-ray inspection equipment\r\nbecause we humans are not consistent enough to find all the defects. Even\r\nthat doesn\'t mean you\'ve built something that works which someone else is\r\nwilling to pay for.\r\n\r\nOn top of all that, you\'re trying to achieve a failure rate below 3% --\r\nbecause there will be failures.\r\n\r\nDon\'t forget, you\'ll need a few of the well-dressed business casual types\r\nfor the meetings, a board room to have the meetings in which has Zoom and\r\nbig screens and links so they can present problems visually, along with a\r\nmethod for taking notes and writing CYA documents.\r\n\r\nI would also set your shop up to run multiple shifts.  You won\'t be running\r\nfully-staffed multiple shifts, but the people who prep everything will need\r\na period of time which overlaps the people who make everything by a couple\r\nof hours.  That will make your results a lot better.\r\n\r\nI\'m sure I\'ve missed about 1000 details you\'re going to have to learn.\r\nThis is definitely far from everything you\'re going to need to know, it\'s\r\njust what flies off the top of my head.\r\n\r\n\r\n\r\nI believe I have 2 designs done, one with 3 variants and one with one\r\nvariant, then I have a FCC schematic done with an unfinished layout.\r\n\r\nI feel so far behind on this stuff.\r\n\r\nRemember, these FCCs will (hopefully) allow us to do all 5 types of\r\naircraft -- plane, helicopter, boat, transitional helicopter to plane,\r\ncheaper one-way kind of drone (with hardware to facilitate change at the\r\nlast minute and covert actions).  That was the targeting on the sensors\r\nthat I was trying to account for.\r\n\r\nRegards,\r\nThomas Pownall\r\n\r\nCADX Services, Inc.\r\n\r\nTel: 585-624-1491 X101\r\nFax: 585-582-1101\r\nE-Mail: tpownall@cadxservices.com\r\nWeb: http://www.cadxservices.com\r\n\r\n***********************************************************\r\n**************** Confidentiality Statement ****************\r\n***********************************************************\r\n\r\nPrivileged/Confidential Information may be contained in this\r\nmessage. If you are not the addressee indicated in this message\r\n(or responsible for delivery of the message to such person),\r\nyou may not copy or deliver this message to anyone. In such\r\ncase, you should destroy this message, and notify us\r\nimmediately. If you or your employer does not consent to\r\nInternet email messages of this kind, please advise us\r\nimmediately. Opinions, conclusions and other information\r\nexpressed in this message are not given or endorsed by my firm\r\nor employer unless otherwise indicated by an authorized\r\nrepresentative independent of this message.',1,0,0,0,0,0,'2025-12-08 16:07:19','2025-12-09 19:31:50','2025-12-09 19:31:50','2025-12-09 21:46:55',NULL,NULL,NULL),
(981,4,'<949162504.21914819.1765212609605@lva1-app52629.prod.linkedin.com>',NULL,NULL,'=?UTF-8?Q?I=E2=80=99ve_sent_you_a_connection_request?=','invitations@linkedin.com','Antonina Kuzema','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n              @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n            </style> <style>\r\n            @media (max-width: 480px) { .inline-button, .inline-button table { display: none !important; }\r\n            .full-width-button, .full-width-button table { display: table !important; } }\r\n          </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n            \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n            \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> <script type=\"application/ld+json\">\r\n    { \"@context\": \"http://schema.org\", \"@type\": \"EmailMessage\", \"potentialAction\": { \"@type\": \"ViewAction\", \"url\": \"https://www.linkedin.com/comm/mynetwork/invite-accept/invitationId/7403832562076352512/sharedKey/ZSkNypcD/?inviterVanityName=antonina-kuzema&amp;lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-email~member~to~member~invite-0-accept~invite~gmailquickaction&amp;trkEmail=eml-email_m2m_invite_single_01-email~member~to~member~invite-0-accept~invite~gmailquickaction-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\",\r\n    \"name\": \"Accept invitation\" }, \"description\": \"Accept Mavrix’s invitation to connect.\", \"publisher\": { \"@type\": \"Organization\", \"name\":\r\n    \"LinkedIn\", \"url\": \"https://www.linkedin.com/\" } }\r\n  </script> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">Antonina, Creative Manager from Video Igniter Animation is waiting for your response</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-left: auto; margin-right: auto; margin-top: 0px; margin-bottom: 0px; width: 512px; max-width: 512px; padding: 0px;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"bg-color-background-container \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-header-0-home_glimmer_static_badging_with_count&amp;trkEmail=eml-email_m2m_invite_single_01-header-0-home_glimmer_static_badging_with_count-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img class=\"h-[37px] w-[101px]\" alt=\"LinkedIn\" src=\"https://static.licdn.com/aero-v1/sc/h/2fp5x7ci191mxbdy1eynscn59\" data-test-header-static-badging-img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 37px; width: 101px;\" width=\"101\" height=\"37\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" data-test-header-notification-badges style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/messaging/?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-header-0-messaging_glimmer&amp;trkEmail=eml-email_m2m_invite_single_01-header-0-messaging_glimmer-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Messaging icon\" src=\"https://static.licdn.com/aero-v1/sc/h/10fimloaw3jryyzve9w87w3h1\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-header-0-my_network_glimmer&amp;trkEmail=eml-email_m2m_invite_single_01-header-0-my_network_glimmer-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Mynetwork icon\" src=\"https://static.licdn.com/aero-v1/sc/h/90lul9r9eny8abld0lh202esc\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5 games-notification-badge pr-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 8px; display: table-cell;\"> <a href=\"https://www.linkedin.com/comm/games/zip?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-header-0-games_glimmer&amp;trkEmail=eml-email_m2m_invite_single_01-header-0-games_glimmer-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Games icon\" src=\"https://static.licdn.com/aero-v1/sc/h/3lw2d9s3kbqj8uc9fk7nge7lp\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/notifications/?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-header-0-notifications_glimmer&amp;trkEmail=eml-email_m2m_invite_single_01-header-0-notifications_glimmer-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Notifications icon\" src=\"https://static.licdn.com/aero-v1/sc/h/9pd3p4xrruqz3lc8kghvmdnjs\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"px-3 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px; padding-right: 24px; padding-bottom: 24px;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <a href=\"https://www.linkedin.com/comm/in/antonina-kuzema?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-invitation~card-0-inviter~picture&amp;trkEmail=eml-email_m2m_invite_single_01-invitation~card-0-inviter~picture-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-8 h-8\" src=\"https://media.licdn.com/dms/image/v2/D5603AQFBgZscKeLzjQ/profile-displayphoto-shrink_400_400/B56ZeEOfQmGoAk-/0/1750270081220?e=2147483647&amp;v=beta&amp;t=k7t8s0dVnrBNcoqBRJ38WTSC308sivjIk2RYtQ18JNY\" alt=\"Antonina Kuzema’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 64px; width: 64px; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%);\" width=\"64\" height=\"64\"> </a> </td> </tr> <tr class=\"text-center\" style=\"text-align: center;\"> <td class=\"pt-1 text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; color: #282828;\"> <h3 class=\"text-system-gray-90 text-lg\" style=\"margin: 0; font-weight: 500; font-size: 20px; color: #282828;\"> <a href=\"https://www.linkedin.com/comm/in/antonina-kuzema?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-invitation~card-0-inviter~name&amp;trkEmail=eml-email_m2m_invite_single_01-invitation~card-0-inviter~name-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" class=\"text-system-gray-90 text-lg\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 20px; color: #282828;\"> Antonina Kuzema </a> </h3> <div class=\"pt-0.5\" style=\"padding-top: 4px;\">Creative manager at Video Igniter Animation</div> <div class=\"pt-0.5\" style=\"padding-top: 4px;\">New York, NY</div> </td> </tr> <tr class=\"text-center\" style=\"text-align: center;\"> <td class=\"pt-1.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 12px;\"> </td> </tr> <tr> <td class=\"text-center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <hr class=\"!w-6 mx-[auto] border-[#F0F0F0] my-2\" style=\"margin-left: auto; margin-right: auto; margin-top: 16px; margin-bottom: 16px; border-color: #F0F0F0; width: 48px !important;\"> </td> </tr> <tr> <td class=\"text-center pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/invite-accept/invitationId/7403832562076352512/sharedKey/ZSkNypcD/?inviterVanityName=antonina-kuzema&amp;lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-invitation~card-0-accept~invite&amp;trkEmail=eml-email_m2m_invite_single_01-invitation~card-0-accept~invite-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" aria-label=\"Accept\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" classname=\"w-[140px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/invite-accept/invitationId/7403832562076352512/sharedKey/ZSkNypcD/?inviterVanityName=antonina-kuzema&amp;lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-invitation~card-0-accept~invite&amp;trkEmail=eml-email_m2m_invite_single_01-invitation~card-0-accept~invite-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> Accept </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> <td class=\"text-center pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/in/antonina-kuzema?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-invitation~card-0-view~profile&amp;trkEmail=eml-email_m2m_invite_single_01-invitation~card-0-view~profile-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" aria-label=\"View profile of Antonina Kuzema\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/in/antonina-kuzema?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-invitation~card-0-view~profile&amp;trkEmail=eml-email_m2m_invite_single_01-invitation~card-0-view~profile-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> View profile </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <h2 class=\"text-center text-lg leading-regular font-bold text-system-gray-90\" style=\"margin: 0; text-align: center; font-size: 20px; font-weight: 600; line-height: 1.25; color: #282828;\"> More people you may know </h2> </td> </tr> <tr data-test-id=\"pymk-entity\"> <td class=\"pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/angelicaconnor?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-pymk-0-profile_image&amp;trkEmail=eml-email_m2m_invite_single_01-pymk-0-profile_image-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQGOOVHRhAh72Q/profile-displayphoto-shrink_400_400/B4EZSzZRj5HcAg-/0/1738176535151?e=2147483647&amp;v=beta&amp;t=0_Xf7QVhvRk8Unx9yFAHJ1HlX-mpbZ3khPzzt84l1D0\" alt=\"Angelica Connor’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/in/angelicaconnor?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-pymk-0-name&amp;trkEmail=eml-email_m2m_invite_single_01-pymk-0-name-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90 break-all\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; word-break: break-all; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Angelica Connor </a> </td> </tr> <tr> <td class=\"text-sm leading-regular break-all\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-all; font-size: 14px; line-height: 1.25;\"> Chief Executive Officer at Stansell Construction | WBE </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/in/angelicaconnor?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-pymk-0-cta&amp;trkEmail=eml-email_m2m_invite_single_01-pymk-0-cta-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" aria-label=\"View profile\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary !border-[#424242] button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid !whitespace-nowrap full-width-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; display: none; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: rgba(0, 0, 0, 0.75); border-width: 1px; border-style: solid; line-height: 1.25; min-height: auto !important; white-space: nowrap !important; border-color: #424242 !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/in/angelicaconnor?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-pymk-0-cta&amp;trkEmail=eml-email_m2m_invite_single_01-pymk-0-cta-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline !text-[#424242]\" style=\"text-decoration-line: none; color: #424242 !important;\"> View profile </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/in/angelicaconnor?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-pymk-0-cta&amp;trkEmail=eml-email_m2m_invite_single_01-pymk-0-cta-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" aria-label=\"View profile\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary !border-[#424242] button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid !whitespace-nowrap inline-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: rgba(0, 0, 0, 0.75); border-width: 1px; border-style: solid; line-height: 1.25; min-height: auto !important; white-space: nowrap !important; border-color: #424242 !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/in/angelicaconnor?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-pymk-0-cta&amp;trkEmail=eml-email_m2m_invite_single_01-pymk-0-cta-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline !text-[#424242]\" style=\"text-decoration-line: none; color: #424242 !important;\"> View profile </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"pymk-entity\"> <td class=\"pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/sherbaig?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-pymk-0-profile_image&amp;trkEmail=eml-email_m2m_invite_single_01-pymk-0-profile_image-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQFypNh62Ne41w/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1687179350574?e=2147483647&amp;v=beta&amp;t=PHKQAQguz-qoUeeaxCy6rQ8Eiqk_yJx6l7DitTx3X0o\" alt=\"Sher Baig’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/in/sherbaig?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-pymk-0-name&amp;trkEmail=eml-email_m2m_invite_single_01-pymk-0-name-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90 break-all\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; word-break: break-all; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Sher Baig </a> </td> </tr> <tr> <td class=\"text-sm leading-regular break-all\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-all; font-size: 14px; line-height: 1.25;\"> Founder &amp; Chief Executive Officer </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/in/sherbaig?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-pymk-0-cta&amp;trkEmail=eml-email_m2m_invite_single_01-pymk-0-cta-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" aria-label=\"View profile\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary !border-[#424242] button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid !whitespace-nowrap full-width-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; display: none; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: rgba(0, 0, 0, 0.75); border-width: 1px; border-style: solid; line-height: 1.25; min-height: auto !important; white-space: nowrap !important; border-color: #424242 !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/in/sherbaig?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-pymk-0-cta&amp;trkEmail=eml-email_m2m_invite_single_01-pymk-0-cta-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline !text-[#424242]\" style=\"text-decoration-line: none; color: #424242 !important;\"> View profile </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/in/sherbaig?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-pymk-0-cta&amp;trkEmail=eml-email_m2m_invite_single_01-pymk-0-cta-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" aria-label=\"View profile\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary !border-[#424242] button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid !whitespace-nowrap inline-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: rgba(0, 0, 0, 0.75); border-width: 1px; border-style: solid; line-height: 1.25; min-height: auto !important; white-space: nowrap !important; border-color: #424242 !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/in/sherbaig?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-pymk-0-cta&amp;trkEmail=eml-email_m2m_invite_single_01-pymk-0-cta-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline !text-[#424242]\" style=\"text-decoration-line: none; color: #424242 !important;\"> View profile </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"pymk-entity\"> <td class=\"pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/paul-joiner-838b306?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-pymk-0-profile_image&amp;trkEmail=eml-email_m2m_invite_single_01-pymk-0-profile_image-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://static.licdn.com/aero-v1/sc/h/4eby4moebno1i6r34if7lud8o\" alt=\"Paul Joiner’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/in/paul-joiner-838b306?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-pymk-0-name&amp;trkEmail=eml-email_m2m_invite_single_01-pymk-0-name-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90 break-all\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; word-break: break-all; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Paul Joiner </a> </td> </tr> <tr> <td class=\"text-sm leading-regular break-all\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-all; font-size: 14px; line-height: 1.25;\"> Chief Executive Officer at HHAeXchange </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/in/paul-joiner-838b306?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-pymk-0-cta&amp;trkEmail=eml-email_m2m_invite_single_01-pymk-0-cta-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" aria-label=\"View profile\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary !border-[#424242] button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid !whitespace-nowrap full-width-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; display: none; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: rgba(0, 0, 0, 0.75); border-width: 1px; border-style: solid; line-height: 1.25; min-height: auto !important; white-space: nowrap !important; border-color: #424242 !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/in/paul-joiner-838b306?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-pymk-0-cta&amp;trkEmail=eml-email_m2m_invite_single_01-pymk-0-cta-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline !text-[#424242]\" style=\"text-decoration-line: none; color: #424242 !important;\"> View profile </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/in/paul-joiner-838b306?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-pymk-0-cta&amp;trkEmail=eml-email_m2m_invite_single_01-pymk-0-cta-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" aria-label=\"View profile\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary !border-[#424242] button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid !whitespace-nowrap inline-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: rgba(0, 0, 0, 0.75); border-width: 1px; border-style: solid; line-height: 1.25; min-height: auto !important; white-space: nowrap !important; border-color: #424242 !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/in/paul-joiner-838b306?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-pymk-0-cta&amp;trkEmail=eml-email_m2m_invite_single_01-pymk-0-cta-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline !text-[#424242]\" style=\"text-decoration-line: none; color: #424242 !important;\"> View profile </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"pymk-entity\"> <td class=\"pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"pr-1 w-6 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 48px; padding-right: 8px; vertical-align: top;\" width=\"48\"> <a href=\"https://www.linkedin.com/comm/in/robert-truckenmiller-a1607a14?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-pymk-0-profile_image&amp;trkEmail=eml-email_m2m_invite_single_01-pymk-0-profile_image-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-6 h-6 align-top\" src=\"https://media.licdn.com/dms/image/v2/D4E03AQEfyyU6TCWh8w/profile-displayphoto-shrink_400_400/B4EZR2pAsDG0Ag-/0/1737157250691?e=2147483647&amp;v=beta&amp;t=OEgDmHbQhP00fKoeIfdatBGz4mgPwGBcQczhQssYhPc\" alt=\"Robert Truckenmiller’s Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; display: inline-block; height: 48px; width: 48px; border-radius: 9999px; background-color: #eae6df; vertical-align: top; clip-path: circle(50%);\" width=\"48\" height=\"48\"> </a> </td> <td class=\"pr-1.5 align-top\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 12px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/in/robert-truckenmiller-a1607a14?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-pymk-0-name&amp;trkEmail=eml-email_m2m_invite_single_01-pymk-0-name-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" class=\"text-md font-bold leading-regular text-system-gray-90 break-all\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; word-break: break-all; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Robert Truckenmiller </a> </td> </tr> <tr> <td class=\"text-sm leading-regular break-all\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-all; font-size: 14px; line-height: 1.25;\"> Chief Executive Officer - Valeris </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/in/robert-truckenmiller-a1607a14?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-pymk-0-cta&amp;trkEmail=eml-email_m2m_invite_single_01-pymk-0-cta-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" aria-label=\"View profile\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary !border-[#424242] button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid !whitespace-nowrap full-width-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; display: none; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: rgba(0, 0, 0, 0.75); border-width: 1px; border-style: solid; line-height: 1.25; min-height: auto !important; white-space: nowrap !important; border-color: #424242 !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/in/robert-truckenmiller-a1607a14?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-pymk-0-cta&amp;trkEmail=eml-email_m2m_invite_single_01-pymk-0-cta-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline !text-[#424242]\" style=\"text-decoration-line: none; color: #424242 !important;\"> View profile </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> <td class=\"pt-1 align-top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 8px; vertical-align: top;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/in/robert-truckenmiller-a1607a14?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-pymk-0-cta&amp;trkEmail=eml-email_m2m_invite_single_01-pymk-0-cta-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" aria-label=\"View profile\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-sm btn-secondary !border-[#424242] button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid !whitespace-nowrap inline-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 7px; padding-bottom: 7px; padding-left: 16px; padding-right: 16px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: rgba(0, 0, 0, 0.75); border-width: 1px; border-style: solid; line-height: 1.25; min-height: auto !important; white-space: nowrap !important; border-color: #424242 !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/in/robert-truckenmiller-a1607a14?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-pymk-0-cta&amp;trkEmail=eml-email_m2m_invite_single_01-pymk-0-cta-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline !text-[#424242]\" style=\"text-decoration-line: none; color: #424242 !important;\"> View profile </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"premium-upsell-divider\"> <td class=\"pt-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <hr class=\"bg-[#D9D9D9] border-0 h-[1px] m-0\" style=\"margin: 0px; height: 1px; border-width: 0; background-color: #D9D9D9;\"> </td> </tr> <tr data-test-id=\"premium-upsell\"> <td class=\"pt-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-lg leading-regular text-color-text font-bold pt-1.5\" data-test-id=\"premium-upsell-title\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 12px; font-size: 20px; font-weight: 600; line-height: 1.25; color: rgba(0, 0, 0, 0.9);\"> Build your network with InMail </td> </tr> <tr> <td class=\"text-sm leading-regular text-color-text pt-1.5\" data-test-id=\"premium-upsell-subtitle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 12px; font-size: 14px; line-height: 1.25; color: rgba(0, 0, 0, 0.9);\"> Message anyone on LinkedIn with Premium InMail. It’s 4.6x more effective in hearing back than cold email. </td> </tr> <tr> <td class=\"pt-1.5\" data-test-id=\"premium-upsell-social-proof\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"w-4 pr-1\" data-test-id=\"social-proof-image\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 32px; padding-right: 8px;\" width=\"32\"> <img class=\"inline-block relative bg-color-entity-ghost-background clip-path-circle-50 rounded-full w-4 h-4 !block\" src=\"https://static.licdn.com/aero-v1/sc/h/4eby4moebno1i6r34if7lud8o\" alt=\"Social Proof Profile Picture\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; height: 32px; width: 32px; border-radius: 9999px; background-color: #eae6df; clip-path: circle(50%); display: block !important;\" width=\"32\" height=\"32\"> </td> <td class=\"text-xs leading-regular text-color-text-low-emphasis\" data-test-id=\"social-proof-text\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px; line-height: 1.25; color: rgba(0, 0, 0, 0.6);\"> Millions of members use Premium </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"pt-1.5\" data-test-id=\"premium-upsell-cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 12px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"http://www.linkedin.com/comm/premium/products/?upsellOrderOrigin=Tracking%3Av1%3Aemail_m2m_upsell%3AEmail+Stork%3AMarketing&amp;referenceId=XriJrkm0SdelG26OiSMhTw%3D%3D&amp;isSS=false&amp;lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-m2m-0-premium~upsell&amp;trkEmail=eml-email_m2m_invite_single_01-m2m-0-premium~upsell-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" aria-label=\"Try Premium for $0\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-premium border-none button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #f8c77e; border-width: 1px; border-style: none; line-height: 1.25; color: rgba(0, 0, 0, 0.9) !important; padding: 6px 12px !important; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"http://www.linkedin.com/comm/premium/products/?upsellOrderOrigin=Tracking%3Av1%3Aemail_m2m_upsell%3AEmail+Stork%3AMarketing&amp;referenceId=XriJrkm0SdelG26OiSMhTw%3D%3D&amp;isSS=false&amp;lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-m2m-0-premium~upsell&amp;trkEmail=eml-email_m2m_invite_single_01-m2m-0-premium~upsell-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-text\" style=\"color: rgba(0, 0, 0, 0.9); text-decoration-line: none;\"> Try Premium for $0 </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"text-xs pt-1.5 text-color-text-low-emphasis\" data-test-id=\"premium-upsell-footer-text\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 12px; font-size: 12px; color: rgba(0, 0, 0, 0.6);\"> 1-month free trial. Cancel anytime. </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-lg text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 20px; color: #114951;\"> Get the new LinkedIn desktop app </h2> </td> </tr> <tr> <td class=\"text-center pb-2\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <a href=\"https://apps.microsoft.com/store/detail/9WZDNCRFJ4Q7?launch=true&amp;cid=linkedin_email_upsell&amp;mode=full\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it from Microsoft\" src=\"https://static.licdn.com/aero-v1/sc/h/ejpkkpwvqks31a3cjqokb7fbm\" class=\"h-[40px] w-[112px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 112px;\" width=\"112\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-md text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 16px; color: #114951;\"> Also available on mobile </h2> </td> </tr> <tr> <td class=\"text-center\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <a href=\"https://itunes.apple.com/us/app/linkedin/id288429040?pt=10746&amp;ct=st_appsite_flagship&amp;mt=8\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Download on the App Store\" src=\"https://static.licdn.com/aero-v1/sc/h/76yzkd0h5kiv27lrd4yaenylk\" class=\"h-[40px] w-[120px] pr-1\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 120px; padding-right: 8px;\" width=\"120\" height=\"40\"> </a> <a href=\"https://play.google.com/store/apps/details?id=com.linkedin.android&amp;referrer=st_appsite_flagship\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it on Google Play\" src=\"https://static.licdn.com/aero-v1/sc/h/142qudwblp58zwmc9vkqfplug\" class=\"h-[40px] w-[134px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 134px;\" width=\"134\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px;\"><hr class=\"border-none bg-[#e0dfdd] h-[1px]\" style=\"height: 1px; border-style: none; background-color: #e0dfdd;\"></td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" data-test-id=\"email-footer__intended\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_m2m_invite_single_01-SecurityHelp-0-footerglimmer-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving LinkedIn invitations emails.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-unsubscribe-0-footerGlimmer&amp;trkEmail=eml-email_m2m_invite_single_01-unsubscribe-0-footerGlimmer-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;loid=AQH8JjdDSR6qCgAAAZr-3tkoTc67MYTUzKArpRLBCJatzjW8fglSJVUWyx5VIdwKfKJZwc7a-eBpg6M_T2wGr6s\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Unsubscribe</a>   ·   <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-help-0-footerglimmer&amp;trkEmail=eml-email_m2m_invite_single_01-help-0-footerglimmer-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" data-test-help-link class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=2WgCq8G2qOWI01&amp;trk=eml-email_m2m_invite_single_01-footer-0-logoGlimmer&amp;trkEmail=eml-email_m2m_invite_single_01-footer-0-logoGlimmer-null-poh2nf~mixdybxn~wl-null-null&amp;eid=poh2nf-mixdybxn-wl&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/aero-v1/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFwZUdSNVluaHVMWGRzOlpXMWhhV3hmYlRKdFgybHVkbWwwWlY5emFXNW5iR1ZmTURFPTo=.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','Antonina, Creative Manager from Video Igniter Animation is waiting for your response\r\n        \r\nHi Mavrix, I’d like to join your professional network\r\n\r\nAntonina Kuzema\r\nCreative manager at Video Igniter Animation\r\nNew York, NY\r\nAccept:https://www.linkedin.com/comm/mynetwork/invite-accept/invitationId/7403832562076352512/sharedKey/ZSkNypcD/?inviterVanityName=antonina-kuzema&lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&midToken=AQE-iPshthTClw&midSig=2WgCq8G2qOWI01&trk=eml-email_m2m_invite_single_01-null-0-null&trkEmail=eml-email_m2m_invite_single_01-null-0-null-null-poh2nf~mixdybxn~wl-null-null&eid=poh2nf-mixdybxn-wl&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\r\nView profile:https://www.linkedin.com/comm/in/antonina-kuzema?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&midToken=AQE-iPshthTClw&midSig=2WgCq8G2qOWI01&trk=eml-email_m2m_invite_single_01-null-0-null&trkEmail=eml-email_m2m_invite_single_01-null-0-null-null-poh2nf~mixdybxn~wl-null-null&eid=poh2nf-mixdybxn-wl&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\r\n\r\nBuild your network with InMail\r\nMessage anyone on LinkedIn with Premium InMail. It’s 4.6x more effective in hearing back than cold email.\r\nhttp://www.linkedin.com/comm/premium/products/?upsellOrderOrigin=Tracking%3Av1%3Aemail_m2m_upsell%3AEmail+Stork%3AMarketing&referenceId=XriJrkm0SdelG26OiSMhTw%3D%3D&isSS=false&lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&midToken=AQE-iPshthTClw&midSig=2WgCq8G2qOWI01&trk=eml-email_m2m_invite_single_01-m2m-0-premium~upsell~text&trkEmail=eml-email_m2m_invite_single_01-m2m-0-premium~upsell~text-null-poh2nf~mixdybxn~wl-null-null&eid=poh2nf-mixdybxn-wl&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\r\n  \r\n\r\n----------------------------------------\r\n\r\nThis email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\nLearn why we included this: https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&midToken=AQE-iPshthTClw&midSig=2WgCq8G2qOWI01&trk=eml-email_m2m_invite_single_01-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_m2m_invite_single_01-SecurityHelp-0-textfooterglimmer-null-poh2nf~mixdybxn~wl-null-null&eid=poh2nf-mixdybxn-wl&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\r\nYou are receiving LinkedIn invitations emails.\r\n\r\n\r\nUnsubscribe: https://www.linkedin.com/comm/psettings/email-unsubscribe?lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&midToken=AQE-iPshthTClw&midSig=2WgCq8G2qOWI01&trk=eml-email_m2m_invite_single_01-unsubscribe-0-textfooterglimmer&trkEmail=eml-email_m2m_invite_single_01-unsubscribe-0-textfooterglimmer-null-poh2nf~mixdybxn~wl-null-null&eid=poh2nf-mixdybxn-wl&loid=AQH8JjdDSR6qCgAAAZr-3tkoTc67MYTUzKArpRLBCJatzjW8fglSJVUWyx5VIdwKfKJZwc7a-eBpg6M_T2wGr6s\r\nHelp: https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_m2m_invite_single_01%3BzDxys0NySKS%2FRleFe%2FDlqw%3D%3D&midToken=AQE-iPshthTClw&midSig=2WgCq8G2qOWI01&trk=eml-email_m2m_invite_single_01-help-0-textfooterglimmer&trkEmail=eml-email_m2m_invite_single_01-help-0-textfooterglimmer-null-poh2nf~mixdybxn~wl-null-null&eid=poh2nf-mixdybxn-wl&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjY4ZWNjZDY0MTkxYTY4ZDYzN2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlOWZlZmM0MDgwZGU4NTE5MmE0MzRmMzMwNmExZDg0MGRhZTZjYWQxMmMwY2M3Y2QsMSwx\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.\r\nLinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',1,0,0,0,0,0,'2025-12-08 16:50:09','2025-12-09 19:31:50','2025-12-09 19:31:50','2025-12-09 21:46:53',NULL,NULL,NULL),
(982,4,'<3a30a1d0-8f57-41bd-819e-461c3088ad85@iad4s12mta1145.xt.local>',NULL,NULL,'Quick Reminder About Our Limited-Time Promo','rebecca@info.gogc.com','\"Rebecca Snaza - Geneva Capital\"','<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\r\n<html><!--RegionStart[socialslot:\"allcontent\"]-->\r\n  <head>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\r\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\r\n    <style type=\"text/css\">\r\n      ReadMsgBody{ width: 100%;}\r\n      .ExternalClass {width: 100%;}\r\n      .ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td, .ExternalClass div {line-height: 100%;}\r\n      body {-webkit-text-size-adjust:100%; -ms-text-size-adjust:100%;margin:0 !important;}\r\n      p { margin: 1em 0;}\r\n      table td { border-collapse: collapse;}\r\n      img {outline:0;}\r\n      a img {border:none;}\r\n      @-ms-viewport{ width: device-width;}\r\n    </style>\r\n    <style type=\"text/css\">\r\n      @media only screen and (max-width: 480px) {\r\n        .container {width: 100% !important;}\r\n        .footer { width:auto !important; margin-left:0; }\r\n        .mobile-hidden { display:none !important; }\r\n        .logo { display:block !important; padding:0 !important; }\r\n        img { max-width:100% !important; height:auto !important; max-height:auto !important;}\r\n        .header img{max-width:100% !important;height:auto !important; max-height:auto !important;}\r\n        .photo img { width:100% !important; max-width:100% !important; height:auto !important;}\r\n        .drop { display:block !important; width: 100% !important; float:left; clear:both;}\r\n        .footerlogo { display:block !important; width: 100% !important; padding-top:15px; float:left; clear:both;}\r\n        .nav4, .nav5, .nav6 { display: none !important; }\r\n        .tableBlock {width:100% !important;}\r\n        .responsive-td {width:100% !important; display:block !important; padding:0 !important; }\r\n        .fluid, .fluid-centered {\r\n          width: 100% !important;\r\n          max-width: 100% !important;\r\n          height: auto !important;\r\n          margin-left: auto !important;\r\n          margin-right: auto !important;\r\n        }\r\n        .fluid-centered {\r\n          margin-left: auto !important;\r\n          margin-right: auto !important;\r\n        }\r\n        /* MOBILE GLOBAL STYLES - DO NOT CHANGE */\r\nbody, .tb_properties{font-family: Arial !important; font-size: 16px !important; color: #808080 !important; line-height: 1.5 !important; padding: 0px !important; }.buttonstyles{font-family: Arial, helvetica, sans-serif !important; font-size: 16px !important; color: #BE1E2D !important; padding: 10px !important; }h1{font-family: Arial !important; font-size: 22px !important; color: #202020 !important; line-height: 1 !important; }h2{font-family: Arial !important; font-size: 20px !important; color: #202020 !important; line-height: 1 !important; }h3{font-family: Arial !important; font-size: 18px !important; color: #202020 !important; line-height: 1 !important; }a:not(.buttonstyles){line-height: 1 !important; }.mobile-hidden{display: none !important; }.responsive-td {width: 100% !important;\r\n display: block !important; padding: 0 !important;}\r\n/* END OF MOBILE GLOBAL STYLES - DO NOT CHANGE */\r\n      }\r\n      @media only screen and (max-width: 640px) {\r\n        .container { width:100% !important; }\r\n        .mobile-hidden { display:none !important; }\r\n        .logo { display:block !important; padding:0 !important; }\r\n        .photo img { width:100% !important; height:auto !important;}\r\n        .nav5, .nav6 { display: none !important;}\r\n        .fluid, .fluid-centered {\r\n          width: 100% !important;\r\n          max-width: 100% !important;\r\n          height: auto !important;\r\n          margin-left: auto !important;\r\n          margin-right: auto !important;\r\n        }\r\n        .fluid-centered {\r\n          margin-left: auto !important;\r\n          margin-right: auto !important;\r\n        }\r\n      }\r\n    </style>\r\n    <!--[if mso]>       <style type=\"text/css\">           /* Begin Outlook Font Fix */               body, table, td {                  font-family : Calibri, Candara, Segoe, \"Segoe UI\", Optima, Arial, sans-serif;                  line-height : 100%;                  font-size : 16px;                  color : #414042;               }           /* End Outlook Font Fix */       </style>     <![endif]-->\r\n  </head>\r\n  <body bgcolor=\"#FFFFFF\" text=\"#000000\" style=\"-webkit-text-size-adjust:none;background-color : #FFFFFF; font-family : Calibri, Candara, Segoe, \'Segoe UI\', Optima, Arial, sans-serif; line-height : 100%; font-size : 16px; color : #414042; padding : 0px; \"><style type=\"text/css\">\r\ndiv.preheader \r\n{ display: none !important; } \r\n</style>\r\n<div class=\"preheader\" style=\"font-size: 1px; display: none !important;\">Hi Rick,  It’s been a little while since</div>\r\n    <div style=\"font-size:0; line-height:0;\"><img src=\"https://click.info.gogc.com/open.aspx?ffcb10-fec716767c64007e-fe2811787667027f7c1572-fe2c1173716405787d1075-ff6416717d-fe34167371620078751473-ff951274&d=120029&bmt=0\" width=\"1\" height=\"1\" alt=\"\"></div>\r\n    <table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\">\r\n      <tr>\r\n        <td align=\"left\" valign=\"top\">\r\n          \r\n        </td>\r\n      </tr>\r\n      <tr>\r\n        <td align=\"left\">\r\n          <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" class=\"container\" align=\"left\">\r\n            <tr>\r\n              <td>\r\n                <table class=\"tb_properties border_style\" style=\"background-color:#FFFFFF;font-size : 16px; font-family : Calibri, Candara, Segoe, \'Segoe UI\', Optima, Arial, sans-serif; line-height : 100%; color : #414042; \" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#ffffff\" width=\"100%\">\r\n                  <tr>\r\n                    <td align=\"left\" valign=\"top\">\r\n                      <table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n                        <tr>\r\n                          <!-- added padding here -->\r\n                          <td class=\"content_padding\" style=\"padding : 0px; \">\r\n                            <!-- end of comment -->\r\n                            <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n                              <tr> <!-- top slot -->\r\n                                <td align=\"center\" class=\"header\" valign=\"top\">\r\n                                  <table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n                                    <tbody>\r\n                                        <tr>\r\n                                          <td align=\"left\" valign=\"top\">\r\n                                            <table cellspacing=\"0\" cellpadding=\"0\" style=\"width:100%\">\r\n                                              <tbody>\r\n                                              <tr>\r\n                                                <td class=\"responsive-td\" valign=\"top\" style=\"width: 100%;\">\r\n                                                  <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"min-width: 100%; \" class=\"stylingblock-content-wrapper\"><tr><td class=\"stylingblock-content-wrapper camarker-inner\">\r\n<table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"min-width: 100%; \" class=\"stylingblock-content-wrapper\"><tr><td class=\"stylingblock-content-wrapper camarker-inner\"><div style=\"line-height: 115%;\">\r\n	<span style=\"font-size:15px;\"><span style=\"font-family:Aptos,sans-serif\">Hi Rick,<br>\r\n	<br>\r\n	It&rsquo;s been a little while since I last reached out, but I wanted to let you know that we&rsquo;ve got a new <a   data-linkto=\"http://\" href=\"https://click.info.gogc.com/?qs=1d3b552c33dd30f2391b02d4cb7f807f71d0a8bc0a0041c46b7743e4e50497848ec93c95feb28421c90bb00e4093f6266634c6137bd7b0ac\" style=\"color:#23496D;text-decoration:underline;\" title=\"limited-time finance promo\">limited-time finance promo</a> that could be a great fit for you. I&rsquo;m happy to share more details or get you an estimated payment if you&rsquo;re interested. If it&rsquo;s easier, feel free to fill out <a   data-linkto=\"https://\" href=\"https://click.info.gogc.com/?qs=1d3b552c33dd30f24d32136b3b017baeb12fdcc438559fe680d61e6f060ae06d7f4fbf48b54517a5b9a7f5bf4a4f88adb67432cd338160ad\" style=\"color:#23496D;text-decoration:underline;\" title=\"this form\">this form</a> and I&rsquo;ll follow up with you.<br>\r\n	<br>\r\n	If you\'re thinking about upgrading or adding new equipment, it&rsquo;s the perfect time to explore flexible financing options and get an idea of what you&rsquo;ll be approved for when the time comes.<br>\r\n	<br>\r\n	Let me know if you want to chat!<br>\r\n	<br>\r\n	Best regards,<br>\r\n	Rebecca Snaza</span></span><br>\r\n	&nbsp;</div></td></tr></table>\r\n\r\n</td></tr></table><table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"min-width: 100%; \" class=\"stylingblock-content-wrapper\"><tr><td class=\"stylingblock-content-wrapper camarker-inner\"><table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" role=\"presentation\"><tr><td align=\"left\"><img data-assetid=\"132308\" src=\"https://image.info.gogc.com/lib/fe2c1173716405787d1075/m/1/83e544ba-b47b-4747-ba1b-049dcad3fe3b.png\" alt=\"\" height=\"110\" width=\"110\" style=\"display: block; padding: 0px; border: 0px solid transparent; text-align: left; height: 110px; width: 110px;\"></td></tr></table></td></tr></table><table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"min-width: 100%; \" class=\"stylingblock-content-wrapper\"><tr><td class=\"stylingblock-content-wrapper camarker-inner\"><div style=\"line-height: 115%;\">\r\n	<br>\r\n	<br>\r\n	<b><span style=\"font-size:14.0pt\"><span style=\"font-family:&quot;Century Gothic&quot;,sans-serif\"><span style=\"color:#16355d\"><span style=\"letter-spacing:.4pt\">Rebecca Snaza</span></span></span></span></b></div><br>\r\n<span style=\"font-size:10.0pt\"><span style=\"font-family:&quot;Century Gothic&quot;,sans-serif\"><span style=\"letter-spacing:.4pt\"><b><span style=\"color:#be1e2d\">Geneva Capital LLC</span></b><br>\r\n<span style=\"color:#16355d\">Your equipment finance <i>solution.</i></span><br>\r\n<span style=\"color:#7f7f7f\"><a href=\"https://click.info.gogc.com/?qs=1d3b552c33dd30f2127b37f4aba4b434fd81d203270416978d8eb4ebc21fd5e5d880bf3fd179d144b0917cb27f3efb0c379791650666f45f\" style=\"color:#467886; text-decoration:underline\"><span style=\"color:#7f7f7f\"><span style=\"text-decoration:none\"><span style=\"text-underline:none\">www.gogc.com</span></span></span></a></span></span></span></span><br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n&nbsp;</td></tr></table><table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"background-color: transparent; min-width: 100%; \" class=\"stylingblock-content-wrapper\"><tr><td style=\"padding: 0px 0px 15px; \" class=\"stylingblock-content-wrapper camarker-inner\"><table cellpadding=\"0\" cellspacing=\"0\" class=\"socialshare-wrapper\" width=\"100%\"><tr><td align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" align=\"center\"><tr><td align=\"center\"><!--[if mso]><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td style=\"padding-right:10px;\"><![endif]--><table class=\"socialshare-innertable\" style=\"display: inline-block\"><tr><td style=\"padding:5px 10px\">\r\n<a style=\"font-weight:normal;color:#23496D;text-decoration:none;line-height:100%;\" href=\"https://click.info.gogc.com/?qs=1d3b552c33dd30f2aa2e76664176106e00a6c965ad678483a102c97f965b258a1f26700519906165c6ca2e80d063b5b152bda0ae114a6e35\" ><img src=\"https://image.s4.exct.net/lib/fe911573736c007d7d/m/2/1a560d12-c8d7-40cb-9e90-9df36933fdfa.png\" alt=\"Facebook\" width=\"24\" height=\"24\" style=\"display: block;; width: 24px !important; height: 24px !important\"></a></td></tr></table><!--[if mso]></td><td style=\"padding-right:10px;\"><![endif]--><table class=\"socialshare-innertable\" style=\"display: inline-block\"><tr><td style=\"padding:5px 10px\"><a style=\"font-weight:normal;color:#23496D;text-decoration:none;line-height:100%;\" href=\"https://click.info.gogc.com/?qs=1d3b552c33dd30f2c51ad4effe7e0eb8e140ba6b0aae1dfb525326746e51e55793ad80f47ef217b8ef046fc6cd8988e7082533d8d591e472\" >\r\n<img src=\"https://image.s4.exct.net/lib/fe911573736c007d7d/m/2/df45eec7-2b51-455c-a5e1-9098496d6013.png\" alt=\"LinkedIn\" width=\"24\" height=\"24\" style=\"display: block;; width: 24px !important; height: 24px !important\"></a></td></tr></table><!--[if mso]></td><td style=\"padding-right:10px;\"><![endif]--><table class=\"socialshare-innertable\" style=\"display: inline-block\"><tr><td style=\"padding:5px 10px\"><a style=\"font-weight:normal;color:#23496D;text-decoration:none;line-height:100%;\" href=\"https://click.info.gogc.com/?qs=1d3b552c33dd30f211231855f364055a52f539f42a4750473684539da026a04009e51502e09aeed4dc907d5fbc622f2bcfce326a80395f96\" ><img src=\"https://image.s4.exct.net/lib/fe911573736c007d7d/m/2/a3b47106-a80a-401f-8435-6b6398001c4f.png\" alt=\"Twitter\" width=\"24\" height=\"24\" style=\"display: block;; width: 24px !important; height: 24px !important\"></a></td></tr></table><!--[if mso]></td>\r\n<td><![endif]--><table class=\"socialshare-innertable\" style=\"display: inline-block\"><tr><td style=\"padding:5px 10px\"><a style=\"font-weight:normal;color:#23496D;text-decoration:none;line-height:100%;\" href=\"https://click.info.gogc.com/?qs=1d3b552c33dd30f2a2fa1de0386eff4e7cb07cf996c408c1e0b9ee6fa778b9b85ed4e7459f26828c3da5651a5464ea09aff51d241d9d31aa\" ><img src=\"https://image.s4.exct.net/lib/fe911573736c007d7d/m/2/0e6fddf1-c205-4752-ad42-e9dc03c83dea.png\" alt=\"Instagram\" width=\"24\" height=\"24\" style=\"display: block;; width: 24px !important; height: 24px !important\"></a></td></tr></table><!--[if mso]></td></tr></table><![endif]--></td></tr></table></td></tr></table></td></tr></table><table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"min-width: 100%; \" class=\"stylingblock-content-wrapper\"><tr><td class=\"stylingblock-content-wrapper camarker-inner\"><div style=\"text-align: center;\">\r\n</div><table border=\"0\" cellpadding=\"2\" cellspacing=\"0\" id=\"Table5\" width=\"100%\">\r\n	\r\n		<tr>\r\n			<td style=\"text-align: center;\">\r\n				<font color=\"#23496d\" face=\"verdana\" size=\"1\">This email was sent by: <b>Geneva Capital, LLC</b><br>\r\n				1311 Broadway St Alexandria, MN, 56308, US, (320) 762-8400</font></td></tr></table><div style=\"text-align: center;\">\r\n	<span style=\"font-size:10px;\"><a   data-linkto=\"other\" href=\"https://click.info.gogc.com/?qs=1d3b552c33dd30f25f01d10a83d607344a1f9f21178420941264fc179b592ef386e152d8b5468d86a4cac12593cc1041a7b2b799d3c0d436\" style=\"color:#23496D;text-decoration:underline;font-weight:normal;line-height:100%;\" title=\"\"><span style=\"color:#23496d;\">Manage Preferences</span></a><span style=\"color:#23496d;\">&nbsp; &nbsp;&nbsp;</span></span><a   data-linkto=\"other\" href=\"https://click.info.gogc.com/?qs=1d3b552c33dd30f2cf11f0a129cb3f19b2304716a4c5e7dd183df1137c55b54821db2672a20cdea761889de6bad7f987065ce7efe3bf6912\" style=\"color:#23496D;text-decoration:underline;font-size:10px;font-weight:normal;line-height:100%;\" title=\"\"><span style=\"color:#23496d;\">Unsubscribe</span></a></div></td></tr></table>\r\n              \r\n                                                </td>\r\n                                              </tr>\r\n                                              </tbody>\r\n                                            </table>\r\n                                          </td>\r\n                                        </tr>\r\n                                    </tbody>\r\n                                  </table>\r\n                                </td>\r\n                              </tr>\r\n                            </table>\r\n                          </td>\r\n                        </tr>\r\n                      </table>\r\n                    </td>\r\n                  </tr>\r\n                </table>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n      <tr>\r\n        <td valign=\"top\">\r\n          \r\n        </td>\r\n      </tr>\r\n    </table>\r\n  </body>\r\n<!--RegionEnd[socialslot:\"allcontent\"]--></html>','\r\n \r\n \r\n\r\n \r\nHi Rick,\r\n\r\n\r\nIt&rsquo;s been a little while since I last reached out, but I wanted to let you know that we&rsquo;ve got a new \r\nhttps://click.info.gogc.com/?qs=1d3b552c33dd30f29492e09a1b479cce48b66c9e618b206a1669b0e25b6cb2a0596698a0ed2d43dbb30d0461308c66021a183b88653e4a21 \r\nlimited-time finance promo  that could be a great fit for you. I&rsquo;m happy to share more details or get you an estimated payment if you&rsquo;re interested. If it&rsquo;s easier, feel free to fill out \r\nhttps://click.info.gogc.com/?qs=1d3b552c33dd30f24928fe37237fc6bc67dce3b99c0bc01aa99af14bfdbca4c9539ec859a14ea90b8462aee10de7aace88d53ffb6286e9a0 \r\nthis form  and I&rsquo;ll follow up with you.\r\n\r\n\r\nIf you\'re thinking about upgrading or adding new equipment, it&rsquo;s the perfect time to explore flexible financing options and get an idea of what you&rsquo;ll be approved for when the time comes.\r\n\r\n\r\nLet me know if you want to chat!\r\n\r\n\r\nBest regards,\r\n\r\nRebecca Snaza\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\nRebecca Snaza\r\nGeneva Capital LLC\r\nYour equipment finance solution.\r\n\r\nhttps://click.info.gogc.com/?qs=1d3b552c33dd30f2874646a5f9db4925c3f2ca00c99022c20ef9118b5031cec2a22d96f2f38d7c9f5a4528be50021c9acae59133fdc77d39 \r\nwww.gogc.com\r\n\r\n\r\n \r\n\r\nhttps://click.info.gogc.com/?qs=1d3b552c33dd30f25372d1690a3d80c1985a7ac02f86410411e8343cb89d1c63090f3a18166c2a58195298070a9216fe4eef8d6a1779e2ff \r\n\r\nhttps://click.info.gogc.com/?qs=1d3b552c33dd30f2992bad22b3cb5c54c62f63fd6f457c1d32ef375aa18ddc14d0adf4c8f9d6a4b94bd663b77a4a92e77b3bc4a0a0c0c68d \r\n\r\nhttps://click.info.gogc.com/?qs=1d3b552c33dd30f22ab233a00687b2155bf2ea0f63b6c2438c3ad3974b244ea9d9c84c1a766e3b775ee4d48f73c7fe9b1e0ee3a784e4a6cf \r\n\r\nhttps://click.info.gogc.com/?qs=1d3b552c33dd30f2188c2e8e4f6fdf6e59ee318c8a49e69e75303b95549bc4eb68099c6c758769a97dfc8468374deef99d8540f6a40f6ceb \r\n\r\nThis email was sent by: Geneva Capital, LLC\r\n\r\n1311 Broadway St Alexandria, MN, 56308, US, (320) 762-8400\r\n\r\nhttps://click.info.gogc.com/?qs=1d3b552c33dd30f2ecc4d65f1d3372858ab160950b847b5225dd06e2bcdfb2c0e57d261041c55995d54968bc5c82909e67d4b8eed4999932 \r\nManage Preferences    \r\nhttps://click.info.gogc.com/?qs=1d3b552c33dd30f2ecc4d65f1d3372858ab160950b847b5225dd06e2bcdfb2c0e57d261041c55995d54968bc5c82909e67d4b8eed4999932 \r\nUnsubscribe',1,0,0,0,0,0,'2025-12-08 17:20:42','2025-12-09 19:31:51','2025-12-09 19:31:51','2025-12-09 19:50:51',NULL,NULL,NULL),
(983,4,'<1162946441.73764688.1765220556761@abmktmail-trigger1i.marketo.org>',NULL,NULL,'[Onboarding] Integrate your favorite apps with Lucidchart','email@e.lucid.co','Lucid','<!doctype html>\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\">\r\n<head> \r\n<meta http-equiv=\"Content-Type\" content=\"text/html charset=UTF-8\"> \r\n<meta name=\"viewport\" content=\"width=device-width\"> \r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"> \r\n<meta name=\"color-scheme\" content=\"light dark\"> \r\n<meta name=\"supported-color-schemes\" content=\"light dark\"> \r\n<title>[Onboarding] Integrate your favorite apps with Lucidchart\r\n\r\n</title> \r\n<!--[if mso]>\r\n        <style>\r\n        * {\r\n        font-family: sans-serif!important;\r\n        }\r\n        </style>\r\n        <![endif]--> \r\n<style>\r\n        \r\nhtml,\r\nbody {\r\n    margin: 0 auto !important;\r\n    padding: 0 !important;\r\n    height: 100% !important;\r\n    width: 100% !important;\r\n}\r\n\r\n* {\r\n    -ms-text-size-adjust: 100%;\r\n    -webkit-text-size-adjust: 100%;\r\n}\r\n\r\ndiv[style*=\"margin: 16px 0\"] {\r\n    margin: 0 !important;\r\n}\r\n\r\ntable,\r\ntd {\r\n    mso-table-lspace: 0pt !important;\r\n    mso-table-rspace: 0pt !important;\r\n}\r\n\r\ntable {\r\n    border-spacing: 0 !important;\r\n    border-collapse: collapse !important;\r\n    table-layout: fixed !important;\r\n    margin: 0 auto !important;\r\n}\r\n\r\ntd {\r\n    font-family: Arial,Helvetica,Verdana,sans-serif !important;\r\n    font-size: 20px !important;\r\n    line-height: 28px !important;\r\n    color: #282c33 !important;\r\n    mso-height-rule: exactly !important;\r\n}\r\n\r\n.head {\r\n    font-size: 48px !important;\r\n    line-height: 52px !important;\r\n    font-weight: bold !important;\r\n    text-align: left !important;\r\n    background-color: #FFDDA6 !important;\r\n}\r\n\r\n.text {\r\n    font-size: 24px !important;\r\n    line-height: 36px !important;\r\n    background-color: #FFDDA6 !important;\r\n}\r\n    \r\n.text2 { \r\n    font-size: 24px !important;\r\n    line-height: 36px !important;\r\n}\r\n    \r\n.text3 { \r\n    background-color: #FFF3D9 !important;\r\n}\r\n\r\n.template-img {\r\n    width: 100% !important; \r\n    max-width: 100% !important;\r\n    vertical-align: middle !important;\r\n    background-color: #ffffff !important;\r\n    border-right: 4px solid #DFE3E8 !important;\r\n    border-left: 2px solid #DFE3E8 !important;\r\n    border-top: 2px solid #DFE3E8 !important;\r\n}\r\n\r\n.template-subhead {\r\n    background-color: #ffffff !important;\r\n    font-weight: bold !important;\r\n    border-right: 4px solid #DFE3E8 !important;\r\n    border-left: 2px solid #DFE3E8 !important;\r\n    border-bottom: 4px solid #DFE3E8 !important;\r\n}\r\n    \r\n.icon-img {\r\n    vertical-align: middle !important;\r\n    background-color: #ffffff !important;\r\n}\r\n\r\n.icon-subhead {\r\n    background-color: #ffffff !important;\r\n    font-weight: bold !important;\r\n}\r\n\r\n.link {\r\n    text-align: left !important;\r\n    color: #282C33 !important;\r\n}\r\n\r\n.link:hover {\r\n    color: #F96B13 !important;\r\n}\r\n    \r\n.icon-link {\r\n    text-align: left !important;\r\n    color: #282C33 !important;\r\n}\r\n\r\n.icon-link:hover {\r\n    color: #F96B13 !important;\r\n}\r\n\r\n.button {\r\n    background: #282C33 !important;\r\n    border: 1px solid #282C33 !important;\r\n    text-decoration: none !important;\r\n    color: #ffffff !important;\r\n    border-radius: 4px !important;\r\n    display:inline-block !important;\r\n    mso-padding-alt:0 !important;\r\n    font-size:20px !important;\r\n    padding: 10px 40px !important;\r\n}\r\n\r\n.button-pad {\r\n    vertical-align: top !important;\r\n    background-color: #FFF3D9 !important;\r\n    font-weight: bold !important;\r\n}\r\n\r\n.button:hover {\r\n  background-color: #5D646F !important;\r\n  border: 1px solid #5D646F !important;\r\n  color: #FFFFFF !important;\r\n  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0) !important;\r\n}\r\n\r\n.separator {\r\n	line-height: 6px !important;\r\n    background-color: #F96B13 !important;\r\n    max-width: 680px !important;   \r\n}\r\n\r\n.footer {\r\n    font-size: 12px !important;\r\n    line-height:18px !important;\r\n}\r\n\r\n@media (prefers-color-scheme: dark ) {\r\n\r\n.deep-drk-bkgrd {\r\n    background-color: #23272c !important;\r\n}\r\n\r\n.drk-bkgrd { \r\n    background-color: #282C33 !important;\r\n}\r\n\r\n.hero-bkgrd { \r\n    background-color: #FFDDA6 !important;\r\n}\r\n\r\n.head, .text {\r\n    background-color: #FFDDA6 !important;\r\n    color: #282C33 !important;\r\n}\r\n\r\n.templates, .templates-last, .icon-img {\r\n    background-color: #282C33 !important;\r\n}\r\n\r\n.template-subhead, .template-img {\r\n    background-color: #FEFEFE !important;\r\n    border: none !important;\r\n}\r\n\r\ntd {\r\n    color: #ffffff !important;\r\n}\r\n\r\n.button {\r\n    background: #f2f2f2 !important;\r\n    border: 1px solid #282C33 !important;\r\n    text-decoration: none !important;\r\n    color: #282C33 !important;\r\n    border-radius: 4px !important;\r\n    display: inline-block !important;\r\n    mso-padding-alt: 0 !important;\r\n    font-size: 20px !important;\r\n}\r\n\r\n.button-pad {\r\n    vertical-align: top !important;\r\n    background-color: #282C33 !important;\r\n}\r\n\r\n.button:hover {\r\n    background: #CED4DB !important;\r\n    border: 1px solid #CED4DB !important;\r\n    color: #000000 !important;\r\n}\r\n\r\n.text2, .text3, .icon-subhead, .icon-link { \r\n    background-color: #282C33 !important;\r\n    color: #FFFFFF !important;\r\n}\r\n     \r\n.footer-link {\r\n    color: #ffffff !important;\r\n}\r\n\r\n    .ftr-logo-dark { display:block !important;width: 80px !important;overflow: visible !important;float: none !important;max-height:inherit !important;max-width:80px !important;line-height: auto !important;margin-top:0px !important;visibility:inherit !important;}\r\n\r\n    .ftr-logo-light { display:none;display:none !important;width: 0px !important;max-width: 0px !important;}\r\n}\r\n\r\ntable table table {\r\n    table-layout: auto;\r\n}\r\n\r\nimg {\r\n    -ms-interpolation-mode: bicubic;\r\n}\r\n\r\n*[x-apple-data-detectors] {\r\n    color: inherit !important;\r\n    text-decoration: none !important;\r\n}\r\n\r\n.x-gmail-data-detectors,\r\n.x-gmail-data-detectors *,\r\n.aBn {\r\n    border-bottom: 0 !important;\r\n    cursor: default !important;\r\n}\r\n\r\n@media screen and (max-width: 480px) {\r\n    u~div {\r\n        width: 100vw !important;\r\n    }\r\n\r\n    div>u~div {\r\n        width: 100% !important;\r\n    }\r\n}\r\n\r\n      \r\n@media only screen and (max-width: 680px) {\r\n\r\n.logo {\r\n    padding-top: 15px !important;\r\n    padding-bottom: 0px !important;\r\n    padding-left: 15px !important;\r\n}\r\n\r\n.logo-img {\r\n    max-width: 60px !important;\r\n    padding-left: 15px !important;\r\n}\r\n\r\n.logo-big {\r\n    padding-top: 20px !important;\r\n    padding-bottom: 30px !important;\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n}\r\n\r\n.logo-big-img {\r\n    max-width: 200px !important;\r\n}\r\n\r\n.head {\r\n    font-size: 30px !important;\r\n    line-height: 1.2 !important;\r\n    padding: 0px 20px 20px 20px !important;\r\n}\r\n\r\n.text {\r\n    font-size: 16px !important;\r\n    line-height: 24px !important;\r\n    max-width: 680px !important;\r\n    padding: 0px 20px 20px 20px !important;\r\n}\r\n\r\n.text2 {\r\n    font-size: 16px !important;\r\n    line-height: 24px !important;\r\n    max-width: 680px !important;\r\n    padding: 30px 20px 0px 20px !important;\r\n}\r\n    \r\n.text3 {\r\n    font-size: 16px !important;\r\n    line-height: 24px !important;\r\n    max-width: 680px !important;\r\n    padding: 30px 20px 20px 20px !important;\r\n}\r\n    \r\n.link, .icon-link {\r\n	text-decoration: underline !important;\r\n    font-weight: bold !important;\r\n}\r\n\r\n.templates {\r\n    display: block !important;\r\n    width: 100% !important;\r\n    max-width: 100% !important;\r\n    -moz-box-sizing: border-box;\r\n    -webkit-box-sizing: border-box;\r\n    box-sizing: border-box;\r\n    padding: 30px 35px 10px 35px !important;\r\n}\r\n    \r\n.templates-last {\r\n    display: block !important;\r\n    width: 100% !important;\r\n    max-width: 100% !important;\r\n    -moz-box-sizing: border-box;\r\n    -webkit-box-sizing: border-box;\r\n    box-sizing: border-box;\r\n    padding: 30px 35px 40px 35px !important;\r\n}\r\n\r\n.template-img {\r\n	padding: 20px 0px 0px 0px !important;\r\n    display: center !important;\r\n}\r\n\r\n .template-subhead {\r\n 	padding: 10px 30px 20px 35px !important;\r\n    font-weight: bold !important;\r\n    font-size: 16px !important;\r\n}\r\n    \r\n.icon-img {\r\n	padding: 0px 10px 0px 10px !important;\r\n    display: center !important;\r\n}\r\n\r\n .icon-subhead {\r\n 	padding: 0px 10px 0px 10px !important;\r\n    font-weight: bold !important;\r\n    font-size: 16px !important;\r\n}\r\n\r\n.button {\r\n    line-height: 24px !important;\r\n    padding-top: 10px !important;\r\n    padding-bottom: 10px !important;\r\n    font-size: 16px !important;\r\n    text-align: center !important;\r\n    display: block !important;\r\n}\r\n\r\n.button-pad {\r\n	padding: 0px 40px 30px 40px !important;\r\n}\r\n    \r\n.footer {\r\n    font-size: 12px !important;\r\n    padding-left: 15px !important;\r\n    padding-right: 15px !important;\r\n    padding-top: 30px !important;\r\n    max-width: 680px !important;\r\n}\r\n}\r\n    </style> \r\n</head> \r\n<body width=\"100%\" style=\"Margin: 0; background-color: #FAFBFC;\" class=\"deep-drk-bkgrd\"> \r\n<div style=\"display:none;font-size:1px;color:#333333;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;\">\r\n Maximize your workflow\r\n\r\n ‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp; \r\n</div> \r\n<div lang=\"en\"> \r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" height=\"100%\" bgcolor=\"#FAFBFC\" style=\"border-collapse:collapse;\" class=\"deep-drk-bkgrd\"> \r\n<tbody> \r\n<tr> \r\n<td valign=\"top\"> \r\n<center style=\"width: 100%;\"> \r\n<div style=\"max-width: 660px;\"> \r\n<!--[if mso]>\r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"660\" style=\"max-width: 660px;min-width: 660px;\" align=\"center\">\r\n<tr>\r\n<td width=\"380\">\r\n<![endif]--> \r\n<div style=\"font-size: 6px; line-height: 1; background-color: #282C33;\">\r\n&nbsp;\r\n</div>\r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" align=\"center\" style=\"max-width: 660px; background-color: #ffffff;\" class=\"drk-bkgrd\"> \r\n<tbody> \r\n<tr>  \r\n</tr> \r\n<tr style=\"background-color: #FFDDA6;\" class=\"hero-bkgrd\">\r\n<td align=\"left\" valign=\"middle\" width=\"80\" height=\"100%\" style=\"font-size:0; padding: 35px 24px 0px 60px;\" class=\"logo\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGenlDPzyV8Q1q-brFsN6beXKCMW15KTNVf09sA0Qs_He3BGn8CD11WVYi13JGhM454oiVX_p8=\"\r\n><img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Marketo-Images/Lucid-Primary-Logo-CG100-onClear-np-RGB@2x.png\" width=\"80\" alt=\"Lucid\" style=\"border: 0;width: 80px; max-width: 80px; vertical-align:middle;\" class=\"logo-img\">\r\n</a>\r\n</td>\r\n</tr> \r\n<tr style=\"background-color: #FFDDA6;\" class=\"hero-bkgrd\">\r\n<td align=\"center\" valign=\"middle\" width=\"288\" height=\"100%\" style=\"font-size:0; padding: 35px 60px 0px 60px;\" class=\"logo-big\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGenlDPz7akCRLT0uyi2-M8-Ygsx3E_sbQYzHGm5EE7QvsBnsWpHheHwii49p85tXekxeWG9FU=\"\r\n><img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Lucidchart-Primary3D-Logo-Default-TypeCG100-onClear-wp-RGB@2x2.png\" width=\"288\" alt=\"Lucidchart\" style=\"border: 0;width: 100%; max-width: 288px; vertical-align:middle;\" class=\"logo-big-img\"> \r\n</a>\r\n</td>\r\n</tr> \r\n<tr style=\"background-color: #FFDDA6;\" class=\"hero-bkgrd\">\r\n <tr>\r\n<td style=\"padding: 20px 60px;\" class=\"head\"> Your favorite apps <br> &#129309; Lucidchart \r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" style=\"padding: 10px 60px 30px 60px;\" class=\"text\">Get the most out of your tech stack with Lucidchart integrations. Instantly bring visual collaboration to your most-used apps. </td>\r\n</tr>\r\n<tr>\r\n<td align=\"center\" valign=\"middle\" style=\"padding: 0px 0px;\" class=\"img\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGenlDP0PfWkQGIjhMMVrr-rsdcZrnz55LKCzgnuWsz-YW_Yvg0Nhvs5ix46TmjKylW4eMYQkM=\"\r\n><img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Self-Serve-Onboarding/Lucidchart/Teams/Integrations_hero.png\" width=\"680\" alt=\"Lucidchart integrations\" style=\"border: 0;width: 100%;max-width: 680px; vertical-align:middle;\"></a>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" style=\"padding: 40px 60px 0px 60px;\" class=\"text2\">Our integrations are quick and easy to install so you can get back to building and collaborating with your team. Some of our most popular integrations include:</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"caption-side:top;width:100%;\">\r\n<tr>\r\n<td class=\"templates\" width=\"221\" max-width=\"221\" align=\"center\" valign=\"top\" style=\"padding: 40px 20px 0px 40px;\">\r\n<table cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"caption-side: top; width: 100%;\">\r\n<tr>\r\n<td width=\"221\" max-width=\"221\" align=\"center\" valign=\"top\" style=\"padding: 20px 10px 0px 10px;\" class=\"template-img\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGenlDPz-p2FTqc8znAa191D4qftZ551m5hVQMMGk2vF275LLfpK283wS1YbApJIJaNnO3_A1I=\"\r\n>\r\n<img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Self-Serve-Onboarding/Lucidchart/Teams/Jira.png\" alt=\"Jira integration\" width=\"221\">\r\n</a>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" style=\"padding: 10px 20px 20px 20px;\" class=\"template-subhead\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGenlDPz-p2FTqc8znAa191D4qftZ551m5hVQMMGk2vF275LLfpK283wS1YbApJIJaNnO3_A1I=\" style=\"color: #282C33;\" class=\"link\"\r\n>Jira</a>\r\n</td>\r\n</tr>\r\n</table>\r\n</td>\r\n<td class=\"templates\" width=\"221\" max-width=\"221\" align=\"center\" valign=\"top\" style=\"padding: 40px 40px 0px 20px;\">\r\n<table cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"caption-side: top; width: 100%;\">\r\n<tr>\r\n<td width=\"221\" max-width=\"221\" align=\"center\" valign=\"top\" style=\"padding: 20px 10px 0px 10px;\" class=\"template-img\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGenlDPz1mLkwi0NuohEpn1M4D2NN1DNIOoD42G4g7N78p--FKjxJldLKlhoDdo3q3JbssrdSo=\"\r\n>\r\n<img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Self-Serve-Onboarding/Lucidchart/Teams/Confluence.png\" alt=\"Confluence integration\" width=\"221\">\r\n</a>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" style=\"padding: 10px 20px 20px 20px;\" class=\"template-subhead\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGenlDPz1mLkwi0NuohEpn1M4D2NN1DNIOoD42G4g7N78p--FKjxJldLKlhoDdo3q3JbssrdSo=\" style=\"color: #282C33;\" class=\"link\"\r\n>Confluence</a>\r\n</td>\r\n</tr>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td class=\"templates\" width=\"221\" max-width=\"221\" align=\"center\" valign=\"top\" style=\"padding: 40px 20px 40px 40px;\">\r\n<table cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"caption-side: top; width: 100%;\">\r\n<tr>\r\n<td width=\"221\" max-width=\"221\" align=\"center\" valign=\"top\" style=\"padding: 20px 0px 0px 0px;\" class=\"template-img\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGenlDPzx_Z2oRP7Hid3OCNtvwLWBqhtL-zWO3aPxZa2Z3X-5qJr4QHqN9L0XmJbuY7p5hNnBE=\"\r\n>\r\n<img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Self-Serve-Onboarding/Lucidchart/Teams/Teams.png\" alt=\"Microsoft Teams integration\" width=\"221\">\r\n</a>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" style=\"padding: 10px 20px 20px 20px;\" class=\"template-subhead\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGenlDPzx_Z2oRP7Hid3OCNtvwLWBqhtL-zWO3aPxZa2Z3X-5qJr4QHqN9L0XmJbuY7p5hNnBE=\" style=\"color: #282C33;\" class=\"link\"\r\n>Microsoft Teams</a>\r\n</td>\r\n</tr>\r\n</table>\r\n</td>\r\n<td class=\"templates-last\" width=\"221\" max-width=\"221\" align=\"center\" valign=\"top\" style=\"padding: 40px 40px 0px 20px;\">\r\n<table cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"caption-side: top; width: 100%;\">\r\n<tr>\r\n<td width=\"221\" max-width=\"221\" align=\"center\" valign=\"top\" style=\"padding: 20px 0px 0px 0px;\" class=\"template-img\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGenlDPz2d-zT-VXP-jxPJ8C3vwpcIVYwDmTc7D-cbl173bjSYvjPVnEY-TCfQ5jaWfAgS_5p4=\"\r\n>\r\n<img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Self-Serve-Onboarding/Lucidchart/Teams/Slack.png\" alt=\"Slack integration\" width=\"221\">\r\n</a>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" style=\"padding: 10px 20px 20px 20px;\" class=\"template-subhead\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGenlDPz2d-zT-VXP-jxPJ8C3vwpcIVYwDmTc7D-cbl173bjSYvjPVnEY-TCfQ5jaWfAgS_5p4=\" style=\"color: #282C33;\" class=\"link\"\r\n>Slack</a>\r\n</td>\r\n</tr>\r\n</table>\r\n</td>\r\n</tr>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr> \r\n<td style=\"padding: 0px 0px;\" class=\"separator\" align=\"left\" bgcolor=\"#F96B13\"> &nbsp; </td> \r\n</tr>\r\n<tr>\r\n<td valign=\"top\" style=\"padding: 40px 60px 10px 60px;\" class=\"text3\">Looking for something else? Explore our integrations marketplace.</td>\r\n</tr>\r\n<tr>\r\n<td align=\"left\" style=\"padding: 20px 60px 60px 60px;\" class=\"button-pad\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGenlDP0PfWkQGIjhMMVrr-rsdcZrnz55LKCzgnuWsz-YW_Yvg0Nhvs5ix46TmjKylW4eMYQkM=\" class=\"button\"\r\n>\r\n<!--[if mso]><i style=\"letter-spacing: 25px;mso-font-width:-100%;mso-text-raise:30pt\">&nbsp;</i><![endif]-->\r\n<span style=\"mso-text-raise:15pt;\">See integrations</span>\r\n<!--[if mso]><i style=\"letter-spacing: 25px;mso-font-width:-100%\">&nbsp;</i><![endif]-->\r\n</a>\r\n</td>\r\n</tr>\r\n\r\n</tr>\r\n<tr style=\"background-color: #FAFBFC;\" class=\"deep-drk-bkgrd\">\r\n<td align=\"left\" valign=\"middle\" width=\"80\" height=\"100%\" style=\"font-size:0; padding: 35px 24px 0px 60px;\" class=\"logo\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGenlDPzyV8Q1q-brFsN6beXKCMW15KTNVf09sA0Qs_He3BGn8CD11WVYi13JGhM454oiVX_p8=\"\r\n><img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Marketo-Images/Lucid-Primary-Logo-CG100-onClear-np-RGB@2x.png\" width=\"80\" alt=\"Lucid\" style=\"border: 0;width: 80px; max-width: 80px; vertical-align:middle;\" class=\"ftr-logo-light\">\r\n<img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Marketo-Images/Lucid-Primary-Logo-White-onClear-np-RGB@2x.png\" width=\"80\" alt=\"Lucid\" style=\"vertical-align:middle;display:none; overflow:hidden; float:left; width:0px; max-height:0px; max-width:0px; line-height:0px; visibility:hidden;\r\n\" class=\"ftr-logo-dark\">\r\n</a>\r\n</td>\r\n</tr> \r\n<tr style=\"background-color: #FAFBFC;\" class=\"deep-drk-bkgrd\"> \r\n<td style=\"padding:30px 60px 40px 60px; width: 400;\" class=\"footer\"><a style=\"color:#282C33; text-decoration: underline;\" href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGenlDPz6p_w5F-tJQI8bD7ErmFYESqAxE_CG--SP9__FJrQA5tw6AVd06NkHgBZdeH-DQ2kvM=\" class=\"footer-link\"\r\n>Unsubscribe</a><br><br> \r\nLucid Software Inc.<br> \r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGenlDP0PfxMreMuLB-aya3VeNbwIPcNMuTO3LPzFH7ogvaJGTZyWsKvotyGwJJKoAuLO1G1z4=\" target=\"_blank\" style=\"text-decoration: none; color: #282c33; cursor: default;\" class=\"footer-link\"\r\n>10355 South Jordan Gateway, Suite 300<br> \r\nSouth Jordan, UT 84095 USA<br></a><br><br>\r\nBy continuing to use Lucid\'s products, you agree to our <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGenlDPz2z68_IC-n2JLSygmkOyYx-NaimjTYVgf7G0MIl_dcVSwk_rfkMMxcPoOG7mZID3lr0=\" style=\"color:#282c33; text-decoration: underline\" class=\"footer-link\"\r\n>Terms of Service</a> and acknowledge our <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGenlDPzx5aVE-dX59Gh7JC49dOH0JI7Aun4-hCBwblbp-ILCSLZh7htBAYRkJmn7t7Mp_S8cI=\" style=\"color:#282c33; text-decoration: underline\" class=\"footer-link\"\r\n>Privacy Policy</a>.\r\n   \r\n</td> \r\n</tr> \r\n</tbody> \r\n</table> \r\n<!--[if (gte mso 9)|(IE)]>\r\n</td>\r\n</tr>\r\n</table>\r\n<![endif]--> \r\n</div> \r\n</center> </td> \r\n</tr> \r\n</tbody> \r\n</table> \r\n</div>  \r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGenlDPz02ZEiIbzZUA-9xMsPomHt2KtgTl-Vu8Ljuo0DZlzunR5Qvu9n66O7KDQgTddBpZ_Vs=\"\r\n></a>\r\n<img src=\"https://email.lucid.co/trk?t=1&mid=NzA0LUJFTC0zNjYAAAGenlDP0KyF6BSBvkdcCZ3cPCiD7X4sA9UAW22N4w52vphekvd_jtLouAYmsjOudqon8o9EkWMN88cy5ss8vZ0Jov5sE9KPU0NQlNizoZ7s60kmx1D7nQ3knDY\" width=\"1\" height=\"1\" style=\"display:none !important;\" alt=\"\" />\r\n\r\n<!--This is a comment -->\r\n</body>\r\n</html>','\r\n\r\n.',1,0,0,0,0,0,'2025-12-08 19:02:36','2025-12-09 19:31:51','2025-12-09 19:31:51','2025-12-09 21:41:26',NULL,NULL,NULL),
(984,4,'<30018621.20251209081316.6937da1c18c577.99658144@mail179-46.suw41.mandrillapp.com>',NULL,NULL,'=?utf-8?Q?Action=20Required!=20Mavrix1=20Management=20LLC\'s=20Employee=20Benefits=20Program=20-=20Questionnaire?=','no-reply@benefitter.com','\"Mavrix1 Management LLC\'s Management\"','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html><body style=\"margin: 0; padding: 0\">      <div style=\"padding-left: 10px; padding-right: 10px;\">\r\n        \r\n        <p>\r\n          Dear Richard,\r\n        </p>\r\n        <p>\r\n          Mavrix1 Management LLC\'s is exploring insurance options that may result in cost savings for you. \r\n          Collecting medical history information is part of that process. Mavrix1 Management LLC\'s is requesting \r\n          that you complete the electronic individual medical questionnaire. Your responses will only be \r\n          disclosed to insurance carriers, are secure, and will not be shared with Mavrix1 Management LLC\'s.\r\n          <br /><br />\r\n          All statements contained in this form must be true and correct, and no material information \r\n          can be withheld or omitted.\r\n          <br /><br />\r\n          Please click the \'Let\'s Begin\' button to start your questionnaire.\r\n        </p>\r\n        <p>\r\n        The deadline to complete this questionnaire is: 12/10/2025.\r\n        </p>\r\n        <hr>\r\n        <p>\r\n          To prepare, please gather the following pieces of information of everyone you are expecting to enroll:<br>\r\n          <ul>\r\n            <li>Dates of Birth</li>\r\n            <li>Heights and weights</li>\r\n            <li>Medical and prescription history from the past 5 years</li>\r\n          </ul>\r\n        </p>\r\n        <br>\r\n        <a href=\"https://mandrillapp.com/track/click/30018621/ei.benefitter.com?p=eyJzIjoiM2tTRTVpbUVjU3dsRW4xSlRLYmlGcnJCR3dRIiwidiI6MiwicCI6IntcInVcIjozMDAxODYyMSxcInZcIjoyLFwidXJsXCI6XCJodHRwczpcXFwvXFxcL2VpLmJlbmVmaXR0ZXIuY29tXFxcL2ltcVxcXC9hY3RpdmF0ZVxcXC9QTk1UWU5cIixcImlkXCI6XCIyZTU3NGViNDEwYjc0MzFjOTJkODgxZWM3NDM0MDVjMVwiLFwidXJsX2lkc1wiOltcImQ0OGQwODMzMGUwZDdiNzRkOWI3MTI1M2M5Yjg1NTZhMWZmNDEzYjdcIl0sXCJtc2dfdHNcIjoxNzY1MjY3OTk2fSJ9\" style=\"background: #f26222; color: white; padding: 10px;\r\n            text-decoration: none; font-weight: bold;\r\n            border-radius: 4px;\">\r\n          Let\'s Begin!\r\n        </a><br><br>\r\n        <p>Or Copy - Paste the link below on your internet browser:</p>\r\n        <p>https://ei.benefitter.com/imq/activate/PNMTYN</p><br>\r\n        <p>Thank you,</p>\r\n        <p>Mavrix1 Management LLC\'s Management</p>\r\n      </div>\r\n<img src=\"https://mandrillapp.com/track/open.php?u=30018621&id=2e574eb410b7431c92d881ec743405c1\" height=\"1\" width=\"1\" alt=\"\"></body></html>','   Dear Richard, \r\n\r\n  Mavrix1 Management LLC\'s is exploring insurance options that may result\r\nin cost savings for you. Collecting medical history information is part of\r\nthat process. Mavrix1 Management LLC\'s is requesting that you complete the\r\nelectronic individual medical questionnaire. Your responses will only be\r\ndisclosed to insurance carriers, are secure, and will not be shared with\r\nMavrix1 Management LLC\'s. \r\n\r\n All statements contained in this form must be true and correct, and no\r\nmaterial information can be withheld or omitted. \r\n\r\n Please click the \'Let\'s Begin\' button to start your questionnaire. \r\n\r\n  The deadline to complete this questionnaire is: 12/10/2025. \r\n\r\n   To prepare, please gather the following pieces of information of\r\neveryone you are expecting to enroll:\r\n   - Dates of Birth\r\n  - Heights and weights\r\n  - Medical and prescription history from the past 5 years\r\n \r\n \r\n\r\n \r\n  Let\'s Begin! <https://mandrillapp.com/track/click/30018621/ei.benefitter.com?p=eyJzIjoiM2tTRTVpbUVjU3dsRW4xSlRLYmlGcnJCR3dRIiwidiI6MiwicCI6IntcInVcIjozMDAxODYyMSxcInZcIjoyLFwidXJsXCI6XCJodHRwczpcXFwvXFxcL2VpLmJlbmVmaXR0ZXIuY29tXFxcL2ltcVxcXC9hY3RpdmF0ZVxcXC9QTk1UWU5cIixcImlkXCI6XCIyZTU3NGViNDEwYjc0MzFjOTJkODgxZWM3NDM0MDVjMVwiLFwidXJsX2lkc1wiOltcImQ0OGQwODMzMGUwZDdiNzRkOWI3MTI1M2M5Yjg1NTZhMWZmNDEzYjdcIl0sXCJtc2dfdHNcIjoxNzY1MjY3OTk2fSJ9>\r\n\r\n Or Copy - Paste the link below on your internet browser:\r\n\r\n https://mandrillapp.com/track/click/30018621/ei.benefitter.com?p=eyJzIjoiM2tTRTVpbUVjU3dsRW4xSlRLYmlGcnJCR3dRIiwidiI6MiwicCI6IntcInVcIjozMDAxODYyMSxcInZcIjoyLFwidXJsXCI6XCJodHRwczpcXFwvXFxcL2VpLmJlbmVmaXR0ZXIuY29tXFxcL2ltcVxcXC9hY3RpdmF0ZVxcXC9QTk1UWU5cIixcImlkXCI6XCIyZTU3NGViNDEwYjc0MzFjOTJkODgxZWM3NDM0MDVjMVwiLFwidXJsX2lkc1wiOltcImQ0OGQwODMzMGUwZDdiNzRkOWI3MTI1M2M5Yjg1NTZhMWZmNDEzYjdcIl0sXCJtc2dfdHNcIjoxNzY1MjY3OTk2fSJ9\r\n\r\n Thank you,\r\n\r\n Mavrix1 Management LLC\'s Management',1,0,0,0,0,0,'2025-12-09 08:13:16','2025-12-09 19:31:51','2025-12-09 19:31:51','2025-12-09 21:44:37',NULL,NULL,NULL),
(985,4,'<20251209133913.b8f9393d85d41ada@emails.leatherman.com>',NULL,NULL,'Gift Ready. Adventure Approved.','Leatherman@emails.leatherman.com','Leatherman','<!DOCTYPE html>\r\n<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\"><head><title>Gift Ready. Adventure Approved.</title><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><!--[if mso]>\r\n<xml><w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\"><w:DontUseAdvancedTypographyReadingMail/></w:WordDocument>\r\n<o:OfficeDocumentSettings><o:PixelsPerInch>96</o:PixelsPerInch><o:AllowPNG/></o:OfficeDocumentSettings></xml>\r\n<![endif]--><style>\r\n*{box-sizing:border-box}body{margin:0;padding:0}a[x-apple-data-detectors]{color:inherit!important;text-decoration:inherit!important}#MessageViewBody a{color:inherit;text-decoration:none}p{line-height:inherit}.desktop_hide,.desktop_hide table{mso-hide:all;display:none;max-height:0;overflow:hidden}.image_block img+div{display:none}sub,sup{font-size:75%;line-height:0} @media (max-width:620px){.image_block div.fullWidth{max-width:100%!important}.mobile_hide{display:none}.row-content{width:100%!important}.stack .column{width:100%;display:block}.mobile_hide{min-height:0;max-height:0;max-width:0;overflow:hidden;font-size:0}.desktop_hide,.desktop_hide table{display:table!important;max-height:none!important}.reverse{display:table;width:100%}.reverse .column.first{display:table-footer-group!important}.reverse .column.last{display:table-header-group!important}.row-6 td.column.first .border,.row-6 td.column.last .border,.row-8 td.column.first .border,.row-8 td.column.last .border{padding:5px 0}.row-3 .column-1 .block-1.paragraph_block td.pad>div,.row-5 .column-2 .block-2.paragraph_block td.pad>div,.row-6 .column-1 .block-2.paragraph_block td.pad>div,.row-7 .column-2 .block-2.paragraph_block td.pad>div,.row-8 .column-1 .block-2.paragraph_block td.pad>div,.row-9 .column-2 .block-2.paragraph_block td.pad>div{font-size:16px!important}.row-3 .column-1 .block-1.paragraph_block td.pad{padding:35px 30px 20px!important}.row-4 .column-1 .block-1.heading_block h1{font-size:23px!important}.row-5 .column-2 .block-1.heading_block h1,.row-6 .column-1 .block-1.heading_block h1,.row-7 .column-2 .block-1.heading_block h1,.row-8 .column-1 .block-1.heading_block h1,.row-9 .column-2 .block-1.heading_block h1{font-size:22px!important}.row-5 .column-2 .block-2.paragraph_block td.pad,.row-6 .column-1 .block-2.paragraph_block td.pad,.row-7 .column-2 .block-2.paragraph_block td.pad,.row-8 .column-1 .block-2.paragraph_block td.pad,.row-9 .column-2 .block-2.paragraph_block td.pad{padding:15px 30px!important}.row-5 .column-2 .block-3.button_block td.pad,.row-6 .column-1 .block-3.button_block td.pad,.row-7 .column-2 .block-3.button_block td.pad,.row-8 .column-1 .block-3.button_block td.pad{padding:0 0 25px!important}.row-5 .column-2 .block-3.button_block span,.row-6 .column-1 .block-3.button_block span,.row-7 .column-2 .block-3.button_block span,.row-8 .column-1 .block-3.button_block span,.row-9 .column-2 .block-3.button_block span{font-size:11px!important;line-height:22px!important}.row-9 .column-2 .block-3.button_block td.pad{padding:0 0 10px!important}.row-10 .column-1 .block-1.divider_block td.pad,.row-10 .column-1 .block-6.divider_block td.pad{padding:10px 10px 25px!important}.row-10 .column-1 .block-1.divider_block .alignment table,.row-10 .column-1 .block-6.divider_block .alignment table{display:inline-table}.row-12 .column-1,.row-3 .column-1{padding:0!important}}\r\n</style><!--[if mso ]><style>sup, sub { font-size: 100% !important; } sup { mso-text-raise:10% } sub { mso-text-raise:-10% }</style> <![endif]--><!--[if true]><style>.forceBgColor{background-color: white !important}</style><![endif]--></head><body class=\"body forceBgColor\" style=\"background-color:transparent;margin:0;padding:0;-webkit-text-size-adjust:none;text-size-adjust:none\"><span style=\"color: transparent; display: none !important; font-size: 0px; line-height: 0px; height: 0; max-height: 0; max-width: 0; opacity: 0; overflow: hidden; mso-hide: all; visibility: hidden; width: 0;\">New Gifts for 2025</span><div style=\"display: none; max-height: 0px; overflow: hidden;\">&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&nbsp; </div><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/CgxoqE1BKlemu9sZFygSIH0u9HamxUY_yGuVEK6Ovfh6updUC8QkrRrpx6DEyI9nMfA1P6AJTtpBagxoR0_g78-WAAdi9-TIAQGAAgM.P0LlUazdgX4Yig/click\" xnpe-attr=\"notextnorew\"><img width=\"1\" height=\"1\" alt=\"\" src=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/CgxoqE1BKlemu9sZFygSIH0u9HamxUY_yGuVEK6Ovfh6updUC8QkrRrpx6DEyI9nMfA1P6AJTtpBagxoR0_g78-WAAdi9-SAAgM.SRTvQjHAbXZjLQ/open\" style=\"display: none;\"></a><table class=\"nl-container\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:transparent\"><tbody><tr><td><table class=\"row row-1\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:600px\">\r\n<a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8uJZ1RUlJQbKWvX15erpeTmliSkVqUm5inl5yfq2_4wdR-AaffLUcrAS6m0mIhLqec_PzcotTE5AwrGaBIspCYkamhkYFlvHdeZllqcbx7ZlpJcXxosBU3UDZXiDU1NzEzJypUXz8pP6VSvyQxKSdVvwTCLtIvSYGIRBvGYgpiEwGzUzLLwDgxySrJ3MTU0jDVyCjVMCUlyTilBmxdfGaKVVFmcrZDbmJZUWaFXn5eao1RkqmJpUVSmmmiiYVlqklyFk-Gu_-D9-enMbAnfX_SwMQMAITza8U.-X36PT5Nc0yBXA/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/Logo%20%288%29.png\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt=\"Shop multi-tools and knives at Leatherman.com\" title=\"Shop multi-tools and knives at Leatherman.com\" height=\"auto\"></a></div></div></td></tr></table></td></tr></tbody></table></td>\r\n</tr></tbody></table><table class=\"row row-2\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:600px\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8uFZBRUlJQbKWvX15erpeTmliSkVqUm5inl5yfq5-Uk59erJ8GFCwtSk3RLS7JL8pMLdZHqNLNzsssSy3WzU1NLdEFiummJeYafjC1X8Dpd8vRSoCLqbRYiMspJz8_tyg1MTnDSgYokiwkZmRqaGRgGe8N1hzvnplWUhwfGmzFDZTNFWJNzU3MzIkK1ddPyk-p1C9JTMpJ1S-BsIv0S1IgItFGsZiC2ETA7JTMMjBOTLJKMjcxtTRMNTJKNUxJSTJOqQFbF5-ZYlWUmZztkJtYVpRZoZefl1pjlGRqYmmRlGaaaGJhmWqSnMWT4e7_4P35aQzsSd-fNDAxAwCBboB7.ft0qGTnfxpwPGA/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/email-focus-knives-gifts-01.jpg\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt=\"A Gift Built Different\" title=\"A Gift Built Different\" height=\"auto\"></a></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-3\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto;background-color:#393c43;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:40px;padding-top:40px;vertical-align:top\"><table class=\"paragraph_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:20px;padding-left:60px;padding-right:55px;padding-top:20px\"><div style=\"color:#fff;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:24px;font-weight:400;letter-spacing:0;line-height:1.2;text-align:center;mso-line-height-alt:29px\"><p style=\"margin:0\">\r\nThis season, surprise them with something truly different. Fixed and folding blades crafted with precision design, premium materials, and built for performance that feels familiar yet entirely new. Leatherman Knives&#8211;made in the USA and ready to gift.</p></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-4\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#393c43;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:20px;padding-top:20px;vertical-align:top\"><table class=\"heading_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"text-align:center;width:100%\"><h1 style=\"margin:0;color:#fff;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:32px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:38px\">\r\n<span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">PRECISION IN EVERY CUT</span></h1></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-5\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#393c43;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"50%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:middle\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:300px\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8uZZ1RUlJQbKWvX15erpeTmliSkVqUm5inl5yfq5-cn5OTmlySmZ9XrJ-dl1mWWqxfUJSfUppcUqxfUpSYbPjB1H4Bp98tRysBLqbSYiEup5z8_Nyi1MTkDCsZoEiykJiRqaGRgWW8N1h3vHtmWklxfGiwFTdQNleINTU3MTMnKkJfPyk_pVK_JDEpJ1W_BMIu0i9JgYhEm8ZiCiKLRBvGwgTBClIyy8A4MckqydzE1NIw1cgo1TAlJck4pQZsY3xmilVRZnK2Q25iWVFmhV5-XmqNUZKpiaVFUpppoomFZapJchZPhrv_g_fnpzGwJ31_0sDEDAAf63mv.RlIxP8QWJxi0fg/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/TRAC-ALPINE-OUTDOORS-1.jpg\" style=\"display:block;height:auto;border:0;width:100%\" width=\"300\" alt=\"Shop TRAC at Leatherman.com\" title=\"Shop TRAC at Leatherman.com\" height=\"auto\"></a></div>\r\n</div></td></tr></table></td><td class=\"column column-2\" width=\"50%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:middle\"><table class=\"heading_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"text-align:center;width:100%\"><h1 style=\"margin:0;color:#fff;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:24px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:29px\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">TRAC<sup>&#169;</sup></span></h1></td></tr></table><table class=\"paragraph_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:20px;padding-left:30px;padding-right:30px;padding-top:20px\"><div style=\"color:#fff;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:18px;font-weight:400;letter-spacing:0;line-height:1.2;text-align:center;mso-line-height-alt:22px\"><p style=\"margin:0\">\r\nA utility knife for hunters, gatherers, and everyone in between.</p></div></td></tr></table><table class=\"button_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"10\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8uZZ1RUlJQbKWvX15erpeTmliSkVqUm5inl5yfq5-cn5OTmlySmZ9XrJ-dl1mWWqxfUJSfUppcUqxfUpSYbPjB1H4Bp98tRysBLqbSYiEup5z8_Nyi1MTkDCsZoEiykJiRqaGRgWW8N1h3vHtmWklxfGiwFTdQNleINTU3MTMnKlxfPyk_pVK_JDEpJ1W_BMIu0i9JgYhEm8ZiCiKLRBvFQlUax0LVpGSW6ScmWSWZm5haGqYaGaUapqQkGafUgC2Mz0yxKspMznbITSwryqzQy89LrTFKMjWxtEhKM000sbBMNUnO4slw93_w_vw0Bvak708amJgBlsl5KA.dVDtgbIw7659cw/click\" target=\"_blank\" style=\"color:#ffffff;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/EiB9LvR2psVGP8hrlRCujr34erqXVAvEJK0a6cegxMiPZxo7aHR0cHM6Ly93d3cubGVhdGhlcm1hbi5jb20vY29sbGVjdGlvbnMva25pdmVzL3Byb2R1Y3RzL3RyYWMx8DU_oAlO2kE6EAoCdXMSCkJsb29tcmVhY2g6HAoCdWMSFjI1MTIwOV9Lbml2ZXNfR2lmdHNfVVM6CwoCdW0SBWVtYWlsYjpiNzQ1OTFlMjJlMWRkYjNkfGVtYWlsX2lkOnJpY2tAbWF2cml4Lm9uZXwyYjU0OThiZjVhNDg5ZTRjagxoR0_g78-WAAdi9-SAAgM.nm9kCgyB8Rhe1g/click\"  style=\"height:38px;width:117px;v-text-anchor:middle;\" arcsize=\"0%\" fill=\"false\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"3px\" color=\"#ffc800\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#ffffff;font-family:sans-serif;font-size:14px\">\r\n<![endif]-->\r\n<span class=\"button\" style=\"background-color: transparent; mso-shading: transparent; border-bottom: 3px solid #ffc800; border-left: 3px solid #ffc800; border-radius: 0px; border-right: 3px solid #ffc800; border-top: 3px solid #ffc800; color: #ffffff; display: inline-block; font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size: 14px; font-weight: 700; mso-border-alt: none; padding-bottom: 5px; padding-top: 5px; padding-left: 20px; padding-right: 20px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 28px;\">SHOP NOW</span></span>\r\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-6\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#393c43;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr class=\"reverse\"><td class=\"column column-1 first\" width=\"50%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:middle\"><div class=\"border\"><table class=\"heading_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"text-align:center;width:100%\"><h1 style=\"margin:0;color:#fff;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:24px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:29px\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">RUSTLE<sup>&#174;</sup></span></h1></td></tr></table><table class=\"paragraph_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:20px;padding-left:30px;padding-right:30px;padding-top:20px\"><div style=\"color:#fff;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:18px;font-weight:400;letter-spacing:0;line-height:1.2;text-align:center;mso-line-height-alt:22px\"><p style=\"margin:0\">Camp-chef knife for trail-to-table meals.</p></div></td></tr></table><table class=\"button_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"10\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8u5ZhRUlJQbKWvX15erpeTmliSkVqUm5inl5yfq19QlJ9SmlxSrF9UWlySk2pflliUmZhXYmtibGJmYWpgaGxoaW5ubPjB1H4Bp98tRysBLqbSYiEup5z8_Nyi1MTkDCsZoEiykJiRqaGRgWW8d15mWWpxvHtmWklxfGiwFTdQNleINTU3MTMnKlpfPyk_pVK_JDEpJ1W_BMIu0i9JgYhEm8ViCiKLRBvG6qdklkFVG8dC1YGEEpOsksxNTC0NU42MUg1TUpKMU2rAlsZnplgVZSZnO-QmlhVlVujl56XWGCWZmlhaJKWZJppYWKaaJGfxZLj7P3h_fhoDe9L3Jw1MzAAypXpa.JSwPX21R-GrJLQ/click\" target=\"_blank\" style=\"color:#ffffff;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/EiB9LvR2psVGP8hrlRCujr34erqXVAvEJK0a6cegxMiPZxpBaHR0cHM6Ly93d3cubGVhdGhlcm1hbi5jb20vcHJvZHVjdHMvcnVzdGxlP3ZhcmlhbnQ9NDM0Njg1MDEzMTk3NzMx8DU_oAlO2kE6EAoCdXMSCkJsb29tcmVhY2g6HAoCdWMSFjI1MTIwOV9Lbml2ZXNfR2lmdHNfVVM6CwoCdW0SBWVtYWlsYjpiNzQ1OTFlMjJlMWRkYjNkfGVtYWlsX2lkOnJpY2tAbWF2cml4Lm9uZXwyYjU0OThiZjVhNDg5ZTRjagxoR0_g78-WAAdi9-SAAgM.jp8S4U_K4RfIEg/click\"  style=\"height:38px;width:117px;v-text-anchor:middle;\" arcsize=\"0%\" fill=\"false\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"3px\" color=\"#ffc800\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#ffffff;font-family:sans-serif;font-size:14px\">\r\n<![endif]-->\r\n<span class=\"button\" style=\"background-color: transparent; mso-shading: transparent; border-bottom: 3px solid #ffc800; border-left: 3px solid #ffc800; border-radius: 0px; border-right: 3px solid #ffc800; border-top: 3px solid #ffc800; color: #ffffff; display: inline-block; font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size: 14px; font-weight: 700; mso-border-alt: none; padding-bottom: 5px; padding-top: 5px; padding-left: 20px; padding-right: 20px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 28px;\">SHOP NOW</span></span>\r\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table></div></td><td class=\"column column-2 last\" width=\"50%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:middle\"><div class=\"border\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:300px\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8u5ZhRUlJQbKWvX15erpeTmliSkVqUm5inl5yfq19QlJ9SmlxSrF9UWlySk2pflliUmZhXYmtibGJmYWpgaGxoaW5ubPjB1H4Bp98tRysBLqbSYiEup5z8_Nyi1MTkDCsZoEiykJiRqaGRgWW8d15mWWpxvHtmWklxfGiwFTdQNleINTU3MTMnKkZfPyk_pVK_JDEpJ1W_BMIu0i9JgYhEm8ViCiKLRBvF6qdklsEkwIpAfBBOTLJKMjcxtTRMNTJKNUxJSTJOqQHbGp-ZYlWUmZztkJtYVpRZoZefl1pjlGRqYmmRlGaaaGJhmWqSnMWT4e7_4P35aQzsSd-fNDAxAwC9vHrj.oEKlptHgwhxnOg/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/Rustle_Camp_Cook_Evergreen_Presentation_CU.jpg\" style=\"display:block;height:auto;border:0;width:100%\" width=\"300\" alt=\"Shop RUSTLE at Leatherman.com\" title=\"Shop RUSTLE at Leatherman.com\" height=\"auto\"></a></div>\r\n</div></td></tr></table></div></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-7\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#393c43;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"50%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:middle\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:300px\">\r\n<a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8u5ZRRUlJQbKWvX15erpeTmliSkVqUm5inl5yfq19QlJ9SmlxSrF-QmZ-XmlpkX5ZYlJmYV2JrYmxiZmFqYGhkZGhiZmn4wdR-AaffLUcrAS6m0mIhLqec_PzcotTE5AwrGaBIspCYkamhkYFlvHdeZllqcbx7ZlpJcXxosBU3UDZXiDU1NzEzJypCXz8pP6VSvyQxKSdVvwTCLtIvSYGIRJvHYgoii0QbxsIEwQpSMsvAODHJKsncxNTSMNXIKNUwJSXJOKUGbGN8ZopVUWZytkNuYllRZoUe0I81RkmmJpYWSWmmiSYWlqkmyVk8Ge7-D96fn8bAnvT9SQMTMwBBv3m7.0rK4m99nR67nVA/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/PIONEER_SEEDING_KIT.jpg\" style=\"display:block;height:auto;border:0;width:100%\" width=\"300\" alt=\"Shop PIONEER at Leatherman.com\" title=\"Shop PIONEER at Leatherman.com\" height=\"auto\"></a></div></div></td></tr></table></td><td class=\"column column-2\" width=\"50%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:middle\"><table class=\"heading_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"text-align:center;width:100%\"><h1 style=\"margin:0;color:#fff;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:24px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:29px\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">PIONEER<sup>&#169;</sup></span></h1></td></tr></table><table class=\"paragraph_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:20px;padding-left:30px;padding-right:30px;padding-top:20px\"><div style=\"color:#fff;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:18px;font-weight:400;letter-spacing:0;line-height:1.2;text-align:center;mso-line-height-alt:22px\"><p style=\"margin:0\">\r\nA Survivalist go-to, built for serious backcountry tasks.</p></div></td></tr></table><table class=\"button_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"10\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8u5ZRRUlJQbKWvX15erpeTmliSkVqUm5inl5yfq19QlJ9SmlxSrF-QmZ-XmlpkX5ZYlJmYV2JrYmxiZmFqYGhkZGhiZmn4wdR-AaffLUcrAS6m0mIhLqec_PzcotTE5AwrGaBIspCYkamhkYFlvHdeZllqcbx7ZlpJcXxosBU3UDZXiDU1NzEzJypcXz8pP6VSvyQxKSdVvwTCLtIvSYGIRJvHYgoii0QbxUJVGsdC1aRkluknJlklmZuYWhqmGhmlGqakJBmn1IAtjM9MsSrKTM52yE0sK8qs0AN6scYoydTE0iIpzTTRxMIy1SQ5iyfD3f_B-_PTGNiTvj9pYGIGALiReTQ.xHguNqKiKTBdJw/click\" target=\"_blank\" style=\"color:#ffffff;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/EiB9LvR2psVGP8hrlRCujr34erqXVAvEJK0a6cegxMiPZxpCaHR0cHM6Ly93d3cubGVhdGhlcm1hbi5jb20vcHJvZHVjdHMvcGlvbmVlcj92YXJpYW50PTQzNDY4NTAxMjIxNDY5MfA1P6AJTtpBOhAKAnVzEgpCbG9vbXJlYWNoOhwKAnVjEhYyNTEyMDlfS25pdmVzX0dpZnRzX1VTOgsKAnVtEgVlbWFpbGI6Yjc0NTkxZTIyZTFkZGIzZHxlbWFpbF9pZDpyaWNrQG1hdnJpeC5vbmV8MmI1NDk4YmY1YTQ4OWU0Y2oMaEdP4O_PlgAHYvfkgAID.4qwAEJNGjb93tw/click\"  style=\"height:38px;width:117px;v-text-anchor:middle;\" arcsize=\"0%\" fill=\"false\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"3px\" color=\"#ffc800\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#ffffff;font-family:sans-serif;font-size:14px\">\r\n<![endif]-->\r\n<span class=\"button\" style=\"background-color: transparent; mso-shading: transparent; border-bottom: 3px solid #ffc800; border-left: 3px solid #ffc800; border-radius: 0px; border-right: 3px solid #ffc800; border-top: 3px solid #ffc800; color: #ffffff; display: inline-block; font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size: 14px; font-weight: 700; mso-border-alt: none; padding-bottom: 5px; padding-top: 5px; padding-left: 20px; padding-right: 20px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 28px;\">SHOP NOW</span></span>\r\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-8\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#393c43;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr class=\"reverse\"><td class=\"column column-1 first\" width=\"50%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:middle\"><div class=\"border\"><table class=\"heading_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"text-align:center;width:100%\"><h1 style=\"margin:0;color:#fff;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:24px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:29px\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">BLAZER<sup>&#174;</sup></span></h1></td></tr></table><table class=\"paragraph_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:20px;padding-left:30px;padding-right:30px;padding-top:20px\"><div style=\"color:#fff;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:18px;font-weight:400;letter-spacing:0;line-height:1.2;text-align:center;mso-line-height-alt:22px\"><p style=\"margin:0\">An essential folding knife for the everyday adventurer.</p></div></td></tr></table><table class=\"button_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"10\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8uZZtRUlJQbKWvX15erpeTmliSkVqUm5inl5yfq5-cn5OTmlySmZ9XrJ-dl1mWWqxfUJSfUppcUqyflJNYlVpk-MHUfgGn3y1HKwEuptJiIS6nnPz83KLUxOQMKxmgSLKQmJGpoZGBZbw3WH-8e2ZaSXF8aLAVN1A2V4g1NTcxMycqWl8_KT-lUr8kMSknVb8Ewi7SL0mBiERbxGIKIotEG8bqp2SWQVUbx0LVgYQSk6ySzE1MLQ1TjYxSDVNSkoxTasCWxmemWBVlJmc75CaWFWVW6OXnpdYYJZmaWFokpZkmmlhYppokZ_FkuPs_eH9-GgN70vcnDUzMAKOwe3g.hvaT5OWj6pvJiw/click\" target=\"_blank\" style=\"color:#ffffff;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/EiB9LvR2psVGP8hrlRCujr34erqXVAvEJK0a6cegxMiPZxo9aHR0cHM6Ly93d3cubGVhdGhlcm1hbi5jb20vY29sbGVjdGlvbnMva25pdmVzL3Byb2R1Y3RzL2JsYXplcjHwNT-gCU7aQToQCgJ1cxIKQmxvb21yZWFjaDocCgJ1YxIWMjUxMjA5X0tuaXZlc19HaWZ0c19VUzoLCgJ1bRIFZW1haWxiOmI3NDU5MWUyMmUxZGRiM2R8ZW1haWxfaWQ6cmlja0BtYXZyaXgub25lfDJiNTQ5OGJmNWE0ODllNGNqDGhHT-Dvz5YAB2L35IACAw.CQMtC4RZEQnOVQ/click\"  style=\"height:38px;width:117px;v-text-anchor:middle;\" arcsize=\"0%\" fill=\"false\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"3px\" color=\"#ffc800\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#ffffff;font-family:sans-serif;font-size:14px\">\r\n<![endif]-->\r\n<span class=\"button\" style=\"background-color: transparent; mso-shading: transparent; border-bottom: 3px solid #ffc800; border-left: 3px solid #ffc800; border-radius: 0px; border-right: 3px solid #ffc800; border-top: 3px solid #ffc800; color: #ffffff; display: inline-block; font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size: 14px; font-weight: 700; mso-border-alt: none; padding-bottom: 5px; padding-top: 5px; padding-left: 20px; padding-right: 20px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 28px;\">SHOP NOW</span></span>\r\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table></div></td><td class=\"column column-2 last\" width=\"50%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:middle\"><div class=\"border\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:300px\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8uZZtRUlJQbKWvX15erpeTmliSkVqUm5inl5yfq5-cn5OTmlySmZ9XrJ-dl1mWWqxfUJSfUppcUqyflJNYlVpk-MHUfgGn3y1HKwEuptJiIS6nnPz83KLUxOQMKxmgSLKQmJGpoZGBZbw3WH-8e2ZaSXF8aLAVN1A2V4g1NTcxMycqRl8_KT-lUr8kMSknVb8Ewi7SL0mBiERbxGIKIotEG8Xqp2SWwSTAikB8EE5MskoyNzG1NEw1Mko1TElJMk6pAdsan5liVZSZnO2Qm1hWlFmhl5-XWmOUZGpiaZGUZppoYmGZapKcxZPh7v_g_flpDOxJ3580MDEDAC_0fAE.m_HHomdZnrfNzw/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/BLAZER_SEEDING_KIT-1.jpg\" style=\"display:block;height:auto;border:0;width:100%\" width=\"300\" alt=\"Shop BLAZER at Leatherman.com\" title=\"Shop BLAZER at Leatherman.com\" height=\"auto\"></a></div></div></td></tr></table></div></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-9\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#393c43;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"50%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:middle\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:300px\">\r\n<a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8uZZtRUlJQbKWvX15erpeTmliSkVqUm5inl5yfq5-cn5OTmlySmZ9XrJ-dl1mWWqxfUJSfUppcUqyfnpOZklpk-MHUfgGn3y1HKwEuptJiIS6nnPz83KLUxOQMKxmgSLKQmJGpoZGBZbw3WH-8e2ZaSXF8aLAVN1A2V4g1NTcxMycqQl8_KT-lUr8kMSknVb8Ewi7SL0mBiERbxmIKIotEG8bCBMEKUjLLwDgxySrJ3MTU0jDVyCjVMCUlyTilBmxjfGaKVVFmcrZDbmJZUWaFXn5eao1RkqmJpUVSmmmiiYVlqklyFk-Gu_-D9-enMbAnfX_SwMQMADUQeoI.wbubEcAKmnMJIw/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/GLIDER-BLACK-PHOTOGRAPHER-CITY-01.jpg\" style=\"display:block;height:auto;border:0;width:100%\" width=\"300\" alt=\"Shop GLIDER at Leatherman.com\" title=\"Shop GLIDER at Leatherman.com\" height=\"auto\"></a></div></div></td></tr></table></td><td class=\"column column-2\" width=\"50%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:middle\"><table class=\"heading_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"text-align:center;width:100%\"><h1 style=\"margin:0;color:#fff;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:24px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:29px\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">GLIDER<sup>&#169;</sup></span></h1></td></tr></table><table class=\"paragraph_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:20px;padding-left:30px;padding-right:30px;padding-top:20px\"><div style=\"color:#fff;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:18px;font-weight:400;letter-spacing:0;line-height:1.2;text-align:center;mso-line-height-alt:22px\"><p style=\"margin:0\">Minimalist design. Maximal everyday utility.</p>\r\n</div></td></tr></table><table class=\"button_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"10\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8uZZtRUlJQbKWvX15erpeTmliSkVqUm5inl5yfq5-cn5OTmlySmZ9XrJ-dl1mWWqxfUJSfUppcUqyfnpOZklpk-MHUfgGn3y1HKwEuptJiIS6nnPz83KLUxOQMKxmgSLKQmJGpoZGBZbw3WH-8e2ZaSXF8aLAVN1A2V4g1NTcxMycqXF8_KT-lUr8kMSknVb8Ewi7SL0mBiERbxmIKIotEG8VCVRrHQtWkZJbpJyZZJZmbmFoaphoZpRqmpCQZp9SALYzPTLEqykzOdshNLCvKrNDLz0utMUoyNbG0SEozTTSxsEw1Sc7iyXD3f_D-_DQG9qTvTxqYmAGrG3n7.7hX6Kz0wkiLvXQ/click\" target=\"_blank\" style=\"color:#ffffff;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/EiB9LvR2psVGP8hrlRCujr34erqXVAvEJK0a6cegxMiPZxo9aHR0cHM6Ly93d3cubGVhdGhlcm1hbi5jb20vY29sbGVjdGlvbnMva25pdmVzL3Byb2R1Y3RzL2dsaWRlcjHwNT-gCU7aQToQCgJ1cxIKQmxvb21yZWFjaDocCgJ1YxIWMjUxMjA5X0tuaXZlc19HaWZ0c19VUzoLCgJ1bRIFZW1haWxiOmI3NDU5MWUyMmUxZGRiM2R8ZW1haWxfaWQ6cmlja0BtYXZyaXgub25lfDJiNTQ5OGJmNWE0ODllNGNqDGhHT-Dvz5YAB2L35IACAw.YuE4Xbsa8YB9fw/click\"  style=\"height:38px;width:117px;v-text-anchor:middle;\" arcsize=\"0%\" fill=\"false\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"3px\" color=\"#ffc800\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#ffffff;font-family:sans-serif;font-size:14px\">\r\n<![endif]-->\r\n<span class=\"button\" style=\"background-color: transparent; mso-shading: transparent; border-bottom: 3px solid #ffc800; border-left: 3px solid #ffc800; border-radius: 0px; border-right: 3px solid #ffc800; border-top: 3px solid #ffc800; color: #ffffff; display: inline-block; font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size: 14px; font-weight: 700; mso-border-alt: none; padding-bottom: 5px; padding-top: 5px; padding-left: 20px; padding-right: 20px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 28px;\">SHOP NOW</span></span>\r\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-10\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#393c43;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:top\"><table class=\"divider_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"padding-bottom:30px;padding-left:10px;padding-right:10px;padding-top:30px\"><div class=\"alignment\" align=\"center\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"80%\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"divider_inner\" style=\"font-size:1px;line-height:1px;border-top:3px solid #bbb\"><span style=\"word-break: break-word;\">&#8202;</span></td></tr></table></div></td></tr></table><table class=\"image_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%;padding-right:0;padding-left:0\"><div class=\"alignment\" align=\"center\"><div class=\"fullWidth\" style=\"max-width:600px\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8u5Z1RUlJQbKWvX15erpeTmliSkVqUm5inl5yfq5-cn5OTmlySmZ9XrJ-WmKebnppYpF9QlJ9SmlxSrF-WmVeSmJ6qW5VZoJuRn5-SmWr4wdR-AaffLUcrAS6m0mIhLqec_PzcotTE5AwrGaBIspCYkamhkYFlvHdeZllqcbx7ZlpJcXxosBU3UDZXiDU1NzEzJypSXz8pP6VSvyQxKSdVvwTCLtIvSYGIRBsaxGKKYlFnFAvlpmSWgXFiklWSuYmppWGqkVGqYUpKknFKDdjK-MwUq6LM5GyH3MSyoswKvfy81BqjJFMTS4ukNNNEEwvLVJPkLJ4Md_8H789PY2BP-v6kgYkZAMCZf8c.2Dp0_KnR6cT81g/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/editor_images/c4642780-510d-4efa-8e7c-d98a1f548396.jpg\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt title height=\"auto\"></a></div></div></td></tr></table><table class=\"paragraph_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:15px;padding-left:40px;padding-right:40px;padding-top:15px\"><div style=\"color:#fff;direction:ltr;font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;font-size:24px;font-weight:700;letter-spacing:0;line-height:1.5;text-align:center;mso-line-height-alt:36px\"><p style=\"margin:0\">MADE FOR FANS. PERFECT FOR GIFTING</p></div></td></tr></table><table class=\"paragraph_block block-4\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:5px\"><div style=\"color:#fff;direction:ltr;font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;font-size:18px;font-weight:400;letter-spacing:0;line-height:1.5;text-align:center;mso-line-height-alt:27px\"><p style=\"margin:0\">\r\nFrom tees to hats to hoodies, the new Leatherman Fan Gear Collection turns everyday staples into something personal. Understated, functional, and made to last &#8212; this is gear they&#8217;ll actually want to wear.</p></div></td></tr></table><table class=\"button_block block-5\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"padding-bottom:20px;padding-left:10px;padding-right:10px;padding-top:20px;text-align:center\"><div class=\"alignment\" align=\"center\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8upZ9RUlJQbKWvX15erpeTmliSkVqUm5inl5yfq5-cn5OTmlySmZ9XrJ-WmKebnppYZPjB1H4Bp98tRysBLqbSYiEup5z8_Nyi1MTkDCsZoEiykJiRqaGRgWW8d15mWWpxvHtmWklxfGiwFTdQNleINTU3MTMnKlRfPyk_pVK_JDEpJ1W_BMIu0i9JgYhEGxrEYopiUWcaC-WmZJbpJyZZJZmbmFoaphoZpRqmpCQZp9SArYvPTLEqykzOdshNLCvKrNDLz0utMUoyNbG0SEozTTSxsEw1Sc7iyXD3f_D-_DQG9qTvTxqYmAEdvnNT.hE091l_Ajf_E8A/click\" target=\"_blank\" style=\"color:#ffffff;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/EiB9LvR2psVGP8hrlRCujr34erqXVAvEJK0a6cegxMiPZxovaHR0cHM6Ly93d3cubGVhdGhlcm1hbi5jb20vY29sbGVjdGlvbnMvZmFuLWdlYXIx8DU_oAlO2kE6EAoCdXMSCkJsb29tcmVhY2g6HAoCdWMSFjI1MTIwOV9Lbml2ZXNfR2lmdHNfVVM6CwoCdW0SBWVtYWlsYjpiNzQ1OTFlMjJlMWRkYjNkfGVtYWlsX2lkOnJpY2tAbWF2cml4Lm9uZXwyYjU0OThiZjVhNDg5ZTRjagxoR0_g78-WAAdi9-SAAgM.hcq16Qp0SXomcg/click\"  style=\"height:38px;width:183px;v-text-anchor:middle;\" arcsize=\"3%\" fill=\"false\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"3px\" color=\"#e6b800\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#ffffff;font-family:sans-serif;font-size:14px\">\r\n<![endif]-->\r\n<span class=\"button\" style=\"background-color: transparent; mso-shading: transparent; border-bottom: 3px solid #e6b800; border-left: 3px solid #e6b800; border-radius: 1px; border-right: 3px solid #e6b800; border-top: 3px solid #e6b800; color: #ffffff; display: inline-block; font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size: 14px; font-weight: 700; mso-border-alt: none; padding-bottom: 5px; padding-top: 5px; padding-left: 20px; padding-right: 20px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 28px;\">EXPLORE FAN GEAR</span></span>\r\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table><table class=\"divider_block block-6\" width=\"100%\" border=\"0\" cellpadding=\"10\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"80%\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"divider_inner\" style=\"font-size:1px;line-height:1px;border-top:3px solid #bbb\"><span style=\"word-break: break-word;\">&#8202;</span></td></tr></table></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-11\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#393c43;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"html_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div style=\"font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;text-align:center\" align=\"center\"><table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#393c43\" align=\"center\" width=\"100%\" style=\"width: 100%; padding: 10px 0px;\"><tbody><tr><td align=\"center\">\r\n\r\n        <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\"><tbody><tr align=\"center\"><td colspan=\"5\"></td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zjFLw0AABWCpiGgdSgaH4iDoaHK9NLFNoFQd7CDooC6WEu5y1-ZMLifJmVqp4C_QSV07uekPENwqdnN3cnBx0kHQ0dIOHdTt8b03PGX-RPtMrh_Wyz3_InN7dv99fHe1k-4u3mTfHjvd3nkjm3hSHsQ2AM1mU2NhLFEjQlxzBQcBRdKjEUehFCKIFxwek1bIfekQEQopI-T6pdzSiAMW-oyUENRxEWFXLUCKVSNPl1ULEl3FuI6oAc2CaSL4YZY7U5vPq3ZmOnUYK9NrgRA8osj17Lm-uMqsbkI9ZzkbIUto7FRYXcbO7rad7rdcmaAcsWCvBQAWpAUkwgEFcpgjIMlQqhDWfutfMsiEJf8vRlLVawBhGxcM04JU1ykkBOdJe3DJYcSOmOuvcJRE7EgTIW3r2DSsIq6byCha1HD3Z7zK1sv70-XYJP56PU2N_wBLtJk4.NxNdu-ggcJQsFw/click\" data-msdyn-tracking-id=\"060e7af814e081672338229931\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b1b88c4-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"Instagram\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8uFZdRUlJQbKWvX15erleSmV2Sn62XnJ-r75CTmliSkVqUm5gXX5Kfn1OsHJ9bnFKZl5tdEp-TmZedmWJrYpxsnJKclqprYGCSomuSbJysa2lsmahramCalmaWmgpEaYYfTO0XcPrdcrQS4GIqLRbicsrJz88tSk1MzrCSAYokC4kZmRoaGVjGe-dllqUWx7tnppUUx4cGW3EDZXOFWFNzEzNzoir19ZPyUyr1SxKTclL1SyDsIv2SFIhItKFhLKYoNhEwOyWzDLcKhEi0cax-YpJVkrmJqaVhqpFRqmFKSpJxSg3YSfGZKVZFmcnZDrmJZUWZFXr5eak1RkmmJpYWSWmmiSYWlqkmyVk8Ge7-D96fn8bAnvT9SQMTMwCh5Y_O.7sXo634XctRHvQ/click\" data-msdyn-tracking-id=\"55a2adb6bbc371672338239108\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b1dd76e-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"TikTok\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8uVZhRUlJQbKWvX15erpeWmJyalJ-frZecn6vvk5pYkpFalJuYp68cn1ucUpmXm10Sn5Kfl19SUpSYnG1roIMQzsnMy85MsTVONjJLMTJO1TUxNzTXNTFJs9C1NDVL1k00MTAzMDO3TDQySjP8YGq_gNPvlqOVABdTabEQl1NOfn5uUWpicoaVDFAkWUjMyNTQyMAy3jsvsyy1ON49M62kOD402IobKJsrxJqam5iZE1Wpr5-Un1KpX5KYlJOqXwJhF-mXpEBEog0NYzFFsYmA2SmZZbhVIESiTWL1E5OsksxNTC0NU42MUg1TUpKMU2rATorPTLEqykzOdshNLCvKrNDLz0utMUoyNbG0SEozTTSxsEw1Sc7iyXD3f_D-_DQG9qTvTxqYmAGSs5VO.UxJj9e9IHARcpA/click\" data-msdyn-tracking-id=\"1c347b64588db1672338250130\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b140b4e-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"Facebook\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8uVZlRUlJQbKWvX15erleZX1pSmpSql5yfq19anFqk75OaWJKRWpSbmOebmpKZqByfW5xSmZebXRKfkp-XX1JSlJicbWuggxDOyczLzkyxTbMwTjFLSTXQNU9MS9M1MTcy1bU0NjTRTTFINrKwMDcyNzNLM_xgar-A0--Wo5UAF1NpsRCXU05-fm5RamJyhpUMUCRZSMzI1NDIwDLeOy-zLLU43j0zraQ4PjTYihsomyvEmpqbmJkTVamvn5SfUqlfkpiUk6pfAmEX6ZekQESiDQ1jMUWxiYDZKZlluFUgRKJNY_UTk6ySzE1MLQ1TjYxSDVNSkoxTasBOis9MsSrKTM52yE0sK8qs0MvPS60xSjI1sbRISjNNNLGwTDVJzuLJcPd_8P78NAb2pO9PGpiYAeHdmTc.4_ukDB52CPdSHA/click\" data-msdyn-tracking-id=\"05f4617e605a71672338263640\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b1ff6c0-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"YouTube\"></a>\r\n              </td>\r\n\r\n              <td colspan=\"6\"></td>\r\n            </tr></tbody></table></td>\r\n    </tr></tbody></table></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-12\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;vertical-align:top\"><table class=\"html_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div style=\"font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;text-align:center\" align=\"center\"><div data-section=\"true\" class=\"footer-container\" style=\"font-family: Arial, Verdana, sans-serif; color: #ffffff; background-color: #393b42; margin: 0; border-radius: 0;\" data-protected=\"false\">\r\n\r\n  <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse; background-color:#393b42;\"><tr><td align=\"center\" style=\"padding: 10px 0; text-align: center;\">\r\n\r\n        <div style=\"display: inline-block; text-align: center;\">\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8u1cKYUVJSUGylr19eXq6Xk5pYkpFalJuYp5ecn6tfkJ-TmZyZWqxfUJRZlphcqQsWqNTLKMnNUY7PLU6pzMvNLolPyc_LLykpSkzOtjXQQQjnZOZlZ6bYWhgkmZqlmKTqJpmam-maWCQb6VoaGxvomiWlmVumGhibJ1omG34wtV_A6XfL0UqAi6m0WIjLKSc_P7coNTE5w0oGKJIsJGZkamhkYBnvnZdZlloc756ZVlIcHxpsxQ2UzRViTc1NzMyJytHXT8pPqdQvSUzKSdUvgbCL9EtSICLRhkaxmKLYRMDslMwyMIbqjUUSTgRyk6ySzE1MLQ1TjYxSDVNSkoxTasCuiM9MsSrKTM52yE0sK8qs0MvPS60xSjI1sbRISjNNNLGwTDVJzuLJcPd_8P78NAb2pO9PGpiYAWtpmG8.TLLrEsyNipv-Pw/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #ffffff; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Privacy Policy</u></strong>\r\n          </a>\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8utY8xo6SkoNhKX7-02Fg3OSVPLzUvXS8pJz8_tyg1MTlDLzk_Vz8nNbEkI7UoNzFPtyQ_P0e3oCg_pTS5JDM_Tz9V3zm9Ir_Q1dDJOyc1t9SyOMqtMj3Y08Og1NIjMbciNDK-0r00zNXbzL8sLcOstCAl1NkiMLsoqKigwszFtdLTMs83zdEwwMzRK6SkwCk5vaLA3znRUTfCL9HNyNQj3d1Tz93FKS0lxdnfLasg0T9QPzk_rzg1r8Q-JzEv3TY1z_CDqf0CTr9bjlYCXEylxUJcTnCnW8kARZKFxIxMDY0MLOO98zLLUovj3TPTSorjQ4OtuIGyuUKsqbmJmTlROfr6SfkplfoliUk5qfolEHaRfkkKRCTa0CgWUxSbCJidklkGxlC9sUjCidFGsUlWSeYmppaGqUZGqYYpKUnGKTVgV8RnplgVZSZnO-QmlhVlVujl56XWGCWZmlhaJKWZJppYWKaaJGfxZLj7P3h_fhoDe9L3Jw1MzAAWqK0q.wld1s_hAfCX3dw/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #ffffff; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Manage Preferences</u></strong>\r\n          </a>\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8utY8xo6SkoNhKX7-02Fg3OSVPLzUvXS8pJz8_tyg1MTlDLzk_Vz8nNbEkI7UoNzFPtyQ_P0e3oCg_pTS5JDM_Tz9V3zm9Ir_Q1dDJOyc1t9SyOMqtMj3Y08Og1NIjMbciNDK-0r00zNXbzL8sLcOstCAl1NkiMLsoqKigwszFtdLTMs83zdEwwMzRK6SkwCk5vaLA3znRUTfCL9HNyNQj3d1Tz93FKS0lxdnfLasg0T9QPzk_rzg1r8Q-JzEv3TY1z_CDqf0CTr9bjlYCXEylxUJcTnCnW8kARZKFxIxMDY0MLOO98zLLUovj3TPTSorjQ4OtuIGyuUKsqbmJmTlROfr6SfkplfoliUk5qfolEHaRfkkKRCTa0CgWUxSbCJidklkGxlC9sUjCidHGsUlWSeYmppaGqUZGqYYpKUnGKTVgV8RnplgVZSZnO-QmlhVlVujl56XWGCWZmlhaJKWZJppYWKaaJGfxZLj7P3h_fhoDe9L3Jw1MzAAW960r.bERSxt2_mJfYuw/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color:#ffffff; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Unsubscribe</u></strong>\r\n          </a>\r\n\r\n        </div>\r\n\r\n      </td>\r\n    </tr></table><table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse; background-color: #393b42;\"><tr><td align=\"center\" style=\"padding: 0; text-align: center;\">\r\n        <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse;\"><tr><td align=\"center\" style=\"text-align: center; padding: 10px 30px;\">\r\n              <div style=\"font-size: 11px; color: #ffffff; text-align: center;\">\r\n\r\n                <p>This email was sent to Rick@mavrix.one</p>\r\n\r\n                <p>by <strong>Leatherman Tool Group, Inc.</strong></p>\r\n\r\n                <p>12106 NE Ainsworth Circle <br>Portland, Oregon 97220</p>\r\n\r\n                <p style=\"display: none;\">Preference Center (PLACEHOLDER)</p>\r\n\r\n                <p style=\"line-height: 1.25;\">&#169; 2025 Leatherman Tool Group, Inc. All Rights Reserved.</p>\r\n                <br></div>\r\n            </td>\r\n          </tr></table></td>\r\n    </tr></table></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><!-- End --></body></html>','[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8uJZ1RUlJQbKWvX15erpeTmliSkVqUm5inl5yfq2_4wdR-AaffLUcrAS6m0mIhLqec_PzcotTE5AwrGaBIspCYkamhkYFlvHdeZllqcbx7ZlpJcXxosBU3UDZXiDU1NzEzJypUXz8pP6VSvyQxKSdVvwTCLtIvSYGIRBvGYgpiEwGzUzLLwDgxySrJ3MTU0jDVyCjVMCUlyTilBmxdfGaKVVFmcrZDbmJZUWaFXn5eao1RkqmJpUVSmmmiiYVlqklyFk-Gu_-D9-enMbAnfX_SwMQMAITza8U.-X36PT5Nc0yBXA/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8uFZBRUlJQbKWvX15erpeTmliSkVqUm5inl5yfq5-Uk59erJ8GFCwtSk3RLS7JL8pMLdZHqNLNzsssSy3WzU1NLdEFiummJeYafjC1X8Dpd8vRSoCLqbRYiMspJz8_tyg1MTnDSgYokiwkZmRqaGRgGe8N1hzvnplWUhwfGmzFDZTNFWJNzU3MzIkK1ddPyk-p1C9JTMpJ1S-BsIv0S1IgItFGsZiC2ETA7JTMMjBOTLJKMjcxtTRMNTJKNUxJSTJOqQFbF5-ZYlWUmZztkJtYVpRZoZefl1pjlGRqYmmRlGaaaGJhmWqSnMWT4e7_4P35aQzsSd-fNDAxAwCBboB7.ft0qGTnfxpwPGA/click]\r\n\r\nThis season, surprise them with something truly different. Fixed and folding blades crafted with precision design, premium materials, and built for performance that feels familiar yet entirely new. Leatherman Knives–made in the USA and ready to gift.\r\n\r\n# PRECISION IN EVERY CUT\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8uZZ1RUlJQbKWvX15erpeTmliSkVqUm5inl5yfq5-cn5OTmlySmZ9XrJ-dl1mWWqxfUJSfUppcUqxfUpSYbPjB1H4Bp98tRysBLqbSYiEup5z8_Nyi1MTkDCsZoEiykJiRqaGRgWW8N1h3vHtmWklxfGiwFTdQNleINTU3MTMnKkJfPyk_pVK_JDEpJ1W_BMIu0i9JgYhEm8ZiCiKLRBvGwgTBClIyy8A4MckqydzE1NIw1cgo1TAlJck4pQZsY3xmilVRZnK2Q25iWVFmhV5-XmqNUZKpiaVFUpppoomFZapJchZPhrv_g_fnpzGwJ31_0sDEDAAf63mv.RlIxP8QWJxi0fg/click]\r\n\r\n# TRAC©\r\n\r\nA utility knife for hunters, gatherers, and everyone in between.\r\n\r\nSHOP NOW [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8uZZ1RUlJQbKWvX15erpeTmliSkVqUm5inl5yfq5-cn5OTmlySmZ9XrJ-dl1mWWqxfUJSfUppcUqxfUpSYbPjB1H4Bp98tRysBLqbSYiEup5z8_Nyi1MTkDCsZoEiykJiRqaGRgWW8N1h3vHtmWklxfGiwFTdQNleINTU3MTMnKlxfPyk_pVK_JDEpJ1W_BMIu0i9JgYhEm8ZiCiKLRBvFQlUax0LVpGSW6ScmWSWZm5haGqYaGaUapqQkGafUgC2Mz0yxKspMznbITSwryqzQy89LrTFKMjWxtEhKM000sbBMNUnO4slw93_w_vw0Bvak708amJgBlsl5KA.dVDtgbIw7659cw/click]\r\n\r\n# RUSTLE®\r\n\r\nCamp-chef knife for trail-to-table meals.\r\n\r\nSHOP NOW [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8u5ZhRUlJQbKWvX15erpeTmliSkVqUm5inl5yfq19QlJ9SmlxSrF9UWlySk2pflliUmZhXYmtibGJmYWpgaGxoaW5ubPjB1H4Bp98tRysBLqbSYiEup5z8_Nyi1MTkDCsZoEiykJiRqaGRgWW8d15mWWpxvHtmWklxfGiwFTdQNleINTU3MTMnKlpfPyk_pVK_JDEpJ1W_BMIu0i9JgYhEm8ViCiKLRBvG6qdklkFVG8dC1YGEEpOsksxNTC0NU42MUg1TUpKMU2rAlsZnplgVZSZnO-QmlhVlVujl56XWGCWZmlhaJKWZJppYWKaaJGfxZLj7P3h_fhoDe9L3Jw1MzAAypXpa.JSwPX21R-GrJLQ/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8u5ZhRUlJQbKWvX15erpeTmliSkVqUm5inl5yfq19QlJ9SmlxSrF9UWlySk2pflliUmZhXYmtibGJmYWpgaGxoaW5ubPjB1H4Bp98tRysBLqbSYiEup5z8_Nyi1MTkDCsZoEiykJiRqaGRgWW8d15mWWpxvHtmWklxfGiwFTdQNleINTU3MTMnKkZfPyk_pVK_JDEpJ1W_BMIu0i9JgYhEm8ViCiKLRBvF6qdklsEkwIpAfBBOTLJKMjcxtTRMNTJKNUxJSTJOqQHbGp-ZYlWUmZztkJtYVpRZoZefl1pjlGRqYmmRlGaaaGJhmWqSnMWT4e7_4P35aQzsSd-fNDAxAwC9vHrj.oEKlptHgwhxnOg/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8u5ZRRUlJQbKWvX15erpeTmliSkVqUm5inl5yfq19QlJ9SmlxSrF-QmZ-XmlpkX5ZYlJmYV2JrYmxiZmFqYGhkZGhiZmn4wdR-AaffLUcrAS6m0mIhLqec_PzcotTE5AwrGaBIspCYkamhkYFlvHdeZllqcbx7ZlpJcXxosBU3UDZXiDU1NzEzJypCXz8pP6VSvyQxKSdVvwTCLtIvSYGIRJvHYgoii0QbxsIEwQpSMsvAODHJKsncxNTSMNXIKNUwJSXJOKUGbGN8ZopVUWZytkNuYllRZoUe0I81RkmmJpYWSWmmiSYWlqkmyVk8Ge7-D96fn8bAnvT9SQMTMwBBv3m7.0rK4m99nR67nVA/click]\r\n\r\n# PIONEER©\r\n\r\nA Survivalist go-to, built for serious backcountry tasks.\r\n\r\nSHOP NOW [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8u5ZRRUlJQbKWvX15erpeTmliSkVqUm5inl5yfq19QlJ9SmlxSrF-QmZ-XmlpkX5ZYlJmYV2JrYmxiZmFqYGhkZGhiZmn4wdR-AaffLUcrAS6m0mIhLqec_PzcotTE5AwrGaBIspCYkamhkYFlvHdeZllqcbx7ZlpJcXxosBU3UDZXiDU1NzEzJypcXz8pP6VSvyQxKSdVvwTCLtIvSYGIRJvHYgoii0QbxUJVGsdC1aRkluknJlklmZuYWhqmGhmlGqakJBmn1IAtjM9MsSrKTM52yE0sK8qs0AN6scYoydTE0iIpzTTRxMIy1SQ5iyfD3f_B-_PTGNiTvj9pYGIGALiReTQ.xHguNqKiKTBdJw/click]\r\n\r\n# BLAZER®\r\n\r\nAn essential folding knife for the everyday adventurer.\r\n\r\nSHOP NOW [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8uZZtRUlJQbKWvX15erpeTmliSkVqUm5inl5yfq5-cn5OTmlySmZ9XrJ-dl1mWWqxfUJSfUppcUqyflJNYlVpk-MHUfgGn3y1HKwEuptJiIS6nnPz83KLUxOQMKxmgSLKQmJGpoZGBZbw3WH-8e2ZaSXF8aLAVN1A2V4g1NTcxMycqWl8_KT-lUr8kMSknVb8Ewi7SL0mBiERbxGIKIotEG8bqp2SWQVUbx0LVgYQSk6ySzE1MLQ1TjYxSDVNSkoxTasCWxmemWBVlJmc75CaWFWVW6OXnpdYYJZmaWFokpZkmmlhYppokZ_FkuPs_eH9-GgN70vcnDUzMAKOwe3g.hvaT5OWj6pvJiw/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8uZZtRUlJQbKWvX15erpeTmliSkVqUm5inl5yfq5-cn5OTmlySmZ9XrJ-dl1mWWqxfUJSfUppcUqyflJNYlVpk-MHUfgGn3y1HKwEuptJiIS6nnPz83KLUxOQMKxmgSLKQmJGpoZGBZbw3WH-8e2ZaSXF8aLAVN1A2V4g1NTcxMycqRl8_KT-lUr8kMSknVb8Ewi7SL0mBiERbxGIKIotEG8Xqp2SWwSTAikB8EE5MskoyNzG1NEw1Mko1TElJMk6pAdsan5liVZSZnO2Qm1hWlFmhl5-XWmOUZGpiaZGUZppoYmGZapKcxZPh7v_g_flpDOxJ3580MDEDAC_0fAE.m_HHomdZnrfNzw/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8uZZtRUlJQbKWvX15erpeTmliSkVqUm5inl5yfq5-cn5OTmlySmZ9XrJ-dl1mWWqxfUJSfUppcUqyfnpOZklpk-MHUfgGn3y1HKwEuptJiIS6nnPz83KLUxOQMKxmgSLKQmJGpoZGBZbw3WH-8e2ZaSXF8aLAVN1A2V4g1NTcxMycqQl8_KT-lUr8kMSknVb8Ewi7SL0mBiERbxmIKIotEG8bCBMEKUjLLwDgxySrJ3MTU0jDVyCjVMCUlyTilBmxjfGaKVVFmcrZDbmJZUWaFXn5eao1RkqmJpUVSmmmiiYVlqklyFk-Gu_-D9-enMbAnfX_SwMQMADUQeoI.wbubEcAKmnMJIw/click]\r\n\r\n# GLIDER©\r\n\r\nMinimalist design. Maximal everyday utility.\r\n\r\nSHOP NOW [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8uZZtRUlJQbKWvX15erpeTmliSkVqUm5inl5yfq5-cn5OTmlySmZ9XrJ-dl1mWWqxfUJSfUppcUqyfnpOZklpk-MHUfgGn3y1HKwEuptJiIS6nnPz83KLUxOQMKxmgSLKQmJGpoZGBZbw3WH-8e2ZaSXF8aLAVN1A2V4g1NTcxMycqXF8_KT-lUr8kMSknVb8Ewi7SL0mBiERbxmIKIotEG8VCVRrHQtWkZJbpJyZZJZmbmFoaphoZpRqmpCQZp9SALYzPTLEqykzOdshNLCvKrNDLz0utMUoyNbG0SEozTTSxsEw1Sc7iyXD3f_D-_DQG9qTvTxqYmAGrG3n7.7hX6Kz0wkiLvXQ/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8u5Z1RUlJQbKWvX15erpeTmliSkVqUm5inl5yfq5-cn5OTmlySmZ9XrJ-WmKebnppYpF9QlJ9SmlxSrF-WmVeSmJ6qW5VZoJuRn5-SmWr4wdR-AaffLUcrAS6m0mIhLqec_PzcotTE5AwrGaBIspCYkamhkYFlvHdeZllqcbx7ZlpJcXxosBU3UDZXiDU1NzEzJypSXz8pP6VSvyQxKSdVvwTCLtIvSYGIRBsaxGKKYlFnFAvlpmSWgXFiklWSuYmppWGqkVGqYUpKknFKDdjK-MwUq6LM5GyH3MSyoswKvfy81BqjJFMTS4ukNNNEEwvLVJPkLJ4Md_8H789PY2BP-v6kgYkZAMCZf8c.2Dp0_KnR6cT81g/click]\r\n\r\nMADE FOR FANS. PERFECT FOR GIFTING\r\n\r\nFrom tees to hats to hoodies, the new Leatherman Fan Gear Collection turns everyday staples into something personal. Understated, functional, and made to last — this is gear they’ll actually want to wear.\r\n\r\nEXPLORE FAN GEAR [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8upZ9RUlJQbKWvX15erpeTmliSkVqUm5inl5yfq5-cn5OTmlySmZ9XrJ-WmKebnppYZPjB1H4Bp98tRysBLqbSYiEup5z8_Nyi1MTkDCsZoEiykJiRqaGRgWW8d15mWWpxvHtmWklxfGiwFTdQNleINTU3MTMnKlRfPyk_pVK_JDEpJ1W_BMIu0i9JgYhEGxrEYopiUWcaC-WmZJbpJyZZJZmbmFoaphoZpRqmpCQZp9SArYvPTLEqykzOdshNLCvKrNDLz0utMUoyNbG0SEozTTSxsEw1Sc7iyXD3f_D-_DQG9qTvTxqYmAEdvnNT.hE091l_Ajf_E8A/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zjFLw0AABWCpiGgdSgaH4iDoaHK9NLFNoFQd7CDooC6WEu5y1-ZMLifJmVqp4C_QSV07uekPENwqdnN3cnBx0kHQ0dIOHdTt8b03PGX-RPtMrh_Wyz3_InN7dv99fHe1k-4u3mTfHjvd3nkjm3hSHsQ2AM1mU2NhLFEjQlxzBQcBRdKjEUehFCKIFxwek1bIfekQEQopI-T6pdzSiAMW-oyUENRxEWFXLUCKVSNPl1ULEl3FuI6oAc2CaSL4YZY7U5vPq3ZmOnUYK9NrgRA8osj17Lm-uMqsbkI9ZzkbIUto7FRYXcbO7rad7rdcmaAcsWCvBQAWpAUkwgEFcpgjIMlQqhDWfutfMsiEJf8vRlLVawBhGxcM04JU1ykkBOdJe3DJYcSOmOuvcJRE7EgTIW3r2DSsIq6byCha1HD3Z7zK1sv70-XYJP56PU2N_wBLtJk4.NxNdu-ggcJQsFw/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8uFZdRUlJQbKWvX15erleSmV2Sn62XnJ-r75CTmliSkVqUm5gXX5Kfn1OsHJ9bnFKZl5tdEp-TmZedmWJrYpxsnJKclqprYGCSomuSbJysa2lsmahramCalmaWmgpEaYYfTO0XcPrdcrQS4GIqLRbicsrJz88tSk1MzrCSAYokC4kZmRoaGVjGe-dllqUWx7tnppUUx4cGW3EDZXOFWFNzEzNzoir19ZPyUyr1SxKTclL1SyDsIv2SFIhItKFhLKYoNhEwOyWzDLcKhEi0cax-YpJVkrmJqaVhqpFRqmFKSpJxSg3YSfGZKVZFmcnZDrmJZUWZFXr5eak1RkmmJpYWSWmmiSYWlqkmyVk8Ge7-D96fn8bAnvT9SQMTMwCh5Y_O.7sXo634XctRHvQ/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8uVZhRUlJQbKWvX15erpeWmJyalJ-frZecn6vvk5pYkpFalJuYp68cn1ucUpmXm10Sn5Kfl19SUpSYnG1roIMQzsnMy85MsTVONjJLMTJO1TUxNzTXNTFJs9C1NDVL1k00MTAzMDO3TDQySjP8YGq_gNPvlqOVABdTabEQl1NOfn5uUWpicoaVDFAkWUjMyNTQyMAy3jsvsyy1ON49M62kOD402IobKJsrxJqam5iZE1Wpr5-Un1KpX5KYlJOqXwJhF-mXpEBEog0NYzFFsYmA2SmZZbhVIESiTWL1E5OsksxNTC0NU42MUg1TUpKMU2rATorPTLEqykzOdshNLCvKrNDLz0utMUoyNbG0SEozTTSxsEw1Sc7iyXD3f_D-_DQG9qTvTxqYmAGSs5VO.UxJj9e9IHARcpA/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8uVZlRUlJQbKWvX15erleZX1pSmpSql5yfq19anFqk75OaWJKRWpSbmOebmpKZqByfW5xSmZebXRKfkp-XX1JSlJicbWuggxDOyczLzkyxTbMwTjFLSTXQNU9MS9M1MTcy1bU0NjTRTTFINrKwMDcyNzNLM_xgar-A0--Wo5UAF1NpsRCXU05-fm5RamJyhpUMUCRZSMzI1NDIwDLeOy-zLLU43j0zraQ4PjTYihsomyvEmpqbmJkTVamvn5SfUqlfkpiUk6pfAmEX6ZekQESiDQ1jMUWxiYDZKZlluFUgRKJNY_UTk6ySzE1MLQ1TjYxSDVNSkoxTasBOis9MsSrKTM52yE0sK8qs0MvPS60xSjI1sbRISjNNNLGwTDVJzuLJcPd_8P78NAb2pO9PGpiYAeHdmTc.4_ukDB52CPdSHA/click] \r\n\r\n*Privacy Policy* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8u1cKYUVJSUGylr19eXq6Xk5pYkpFalJuYp5ecn6tfkJ-TmZyZWqxfUJRZlphcqQsWqNTLKMnNUY7PLU6pzMvNLolPyc_LLykpSkzOtjXQQQjnZOZlZ6bYWhgkmZqlmKTqJpmam-maWCQb6VoaGxvomiWlmVumGhibJ1omG34wtV_A6XfL0UqAi6m0WIjLKSc_P7coNTE5w0oGKJIsJGZkamhkYBnvnZdZlloc756ZVlIcHxpsxQ2UzRViTc1NzMyJytHXT8pPqdQvSUzKSdUvgbCL9EtSICLRhkaxmKLYRMDslMwyMIbqjUUSTgRyk6ySzE1MLQ1TjYxSDVNSkoxTasCuiM9MsSrKTM52yE0sK8qs0MvPS60xSjI1sbRISjNNNLGwTDVJzuLJcPd_8P78NAb2pO9PGpiYAWtpmG8.TLLrEsyNipv-Pw/click] *Manage Preferences* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8utY8xo6SkoNhKX7-02Fg3OSVPLzUvXS8pJz8_tyg1MTlDLzk_Vz8nNbEkI7UoNzFPtyQ_P0e3oCg_pTS5JDM_Tz9V3zm9Ir_Q1dDJOyc1t9SyOMqtMj3Y08Og1NIjMbciNDK-0r00zNXbzL8sLcOstCAl1NkiMLsoqKigwszFtdLTMs83zdEwwMzRK6SkwCk5vaLA3znRUTfCL9HNyNQj3d1Tz93FKS0lxdnfLasg0T9QPzk_rzg1r8Q-JzEv3TY1z_CDqf0CTr9bjlYCXEylxUJcTnCnW8kARZKFxIxMDY0MLOO98zLLUovj3TPTSorjQ4OtuIGyuUKsqbmJmTlROfr6SfkplfoliUk5qfolEHaRfkkKRCTa0CgWUxSbCJidklkGxlC9sUjCidFGsUlWSeYmppaGqUZGqYYpKUnGKTVgV8RnplgVZSZnO-QmlhVlVujl56XWGCWZmlhaJKWZJppYWKaaJGfxZLj7P3h_fhoDe9L3Jw1MzAAWqK0q.wld1s_hAfCX3dw/click] *Unsubscribe* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUqjV-1K27Kib_YnsqQLr-vb-qNo1PYT7iMpaqZfHFxw50Z8utY8xo6SkoNhKX7-02Fg3OSVPLzUvXS8pJz8_tyg1MTlDLzk_Vz8nNbEkI7UoNzFPtyQ_P0e3oCg_pTS5JDM_Tz9V3zm9Ir_Q1dDJOyc1t9SyOMqtMj3Y08Og1NIjMbciNDK-0r00zNXbzL8sLcOstCAl1NkiMLsoqKigwszFtdLTMs83zdEwwMzRK6SkwCk5vaLA3znRUTfCL9HNyNQj3d1Tz93FKS0lxdnfLasg0T9QPzk_rzg1r8Q-JzEv3TY1z_CDqf0CTr9bjlYCXEylxUJcTnCnW8kARZKFxIxMDY0MLOO98zLLUovj3TPTSorjQ4OtuIGyuUKsqbmJmTlROfr6SfkplfoliUk5qfolEHaRfkkKRCTa0CgWUxSbCJidklkGxlC9sUjCidHGsUlWSeYmppaGqUZGqYYpKUnGKTVgV8RnplgVZSZnO-QmlhVlVujl56XWGCWZmlhaJKWZJppYWKaaJGfxZLj7P3h_fhoDe9L3Jw1MzAAW960r.bERSxt2_mJfYuw/click] \r\n\r\nThis email was sent to Rick@mavrix.one\r\n\r\nby *Leatherman Tool Group, Inc.*\r\n\r\n12106 NE Ainsworth Circle \r\nPortland, Oregon 97220\r\n\r\n© 2025 Leatherman Tool Group, Inc. All Rights Reserved.',1,0,0,0,0,0,'2025-12-09 13:39:13','2025-12-09 19:31:52','2025-12-09 19:31:52','2025-12-09 19:47:21',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(989,4,'<20251209202501.c759b58a8e94e979@cio86226.announce.airtimetools.com>',NULL,NULL,'Update: quick launch via system icons','news@announce.airtimetools.com','Airtime Team','<!DOCTYPE html><html lang=\"en\"><head>\r\n<meta charset=\"UTF-8\"/>\r\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"/>\r\n<meta name=\"x-apple-disable-message-reformatting\"/> \r\n<title>Update: quick launch via system icons</title>\r\n\r\n\r\n\r\n<style>\r\n.hover:hover {\r\n  background: #ffffff!important;\r\n  cursor: pointer !important;\r\n  transition: all 0.3s ease;\r\n}\r\n.hover:hover a {\r\n  color: #000000 !important;\r\n}\r\na:hover,\r\na img:hover {\r\n  cursor: pointer !important;\r\n}\r\n.cta-hover td:hover {\r\n  opacity: 0.8;\r\n}\r\n.cta-hover a,\r\n.cta-hover {\r\n  transition: all 0.3s ease;\r\n}\r\n@media only screen and (min-width: 480px) {\r\n  .column-100 {\r\n    width: 100% !important;\r\n    max-width: 100%;\r\n  }\r\n}\r\n@media only screen and (max-width: 480px) {\r\n  .container {\r\n    width: 100% !important;\r\n  }\r\n\r\n  .container85 {\r\n    width: 85% !important;\r\n    margin: 0 auto !important;\r\n  }\r\n\r\n  .column {\r\n    display: block !important;\r\n    width: 100% !important;\r\n  }\r\n\r\n  .m-img img {\r\n    width: 100% !important;\r\n    max-width: 100% !important;\r\n    height: auto !important;\r\n  }\r\n\r\n  .cta {\r\n    min-width: 110px !important;\r\n  }\r\n\r\n  .cta a {\r\n    padding: 13px 25px !important;\r\n  }\r\n\r\n  .left {\r\n    margin-right: auto !important;\r\n    float: none;\r\n    text-align: left;\r\n  }\r\n\r\n  .h-0 {\r\n    height: 0 !important;\r\n  }\r\n\r\n  .m-heading-1 {\r\n    font-size: 35px !important;\r\n    line-height: 110% !important;\r\n    letter-spacing: -1.1px !important;\r\n  }\r\n\r\n  .m-heading-2 {\r\n    font-size: 28px !important;\r\n    line-height: 110% !important;\r\n    letter-spacing: -1.1px !important;\r\n  }\r\n\r\n  .m-heading-4 {\r\n    font-size: 18px !important;\r\n    line-height: 110% !important;\r\n    letter-spacing: -1.1px !important;\r\n  }\r\n\r\n  .m-body-3 {\r\n    font-size: 15px !important;\r\n    line-height: 120% !important;\r\n    letter-spacing: -0.2px !important;\r\n  }\r\n\r\n  .pt-10 {\r\n    padding-top: 10px !important;\r\n  }\r\n\r\n  .pt-15 {\r\n    padding-top: 15px !important;\r\n  }\r\n\r\n  .pt-24 {\r\n    padding-top: 24px !important;\r\n  }\r\n\r\n  .pt-40 {\r\n    padding-top: 40px !important;\r\n  }\r\n\r\n  .pb-0 {\r\n    padding-bottom: 0px !important;\r\n  }\r\n\r\n  .pb-40 {\r\n    padding-bottom: 40px !important;\r\n  }\r\n\r\n  .px-0 {\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n  }\r\n\r\n  .footer p,\r\nh4,\r\nli {\r\n    font-size: 13px !important;\r\n    line-height: 20px !important;\r\n  }\r\n}\r\n</style>\r\n<!--[if mso]> <style>h1,h2,h3,h4,li,p,a { font-family: sans-serif !important; } </style> <![endif]-->\r\n<!--[if mso]><xml><o:OfficeDocumentSettings><o:AllowPNG/><o:PixelsPerInch>96</o:PixelsPerInch></o:OfficeDocumentSettings></xml><![endif]-->\r\n</head>\r\n\r\n<body style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; background-color: #f2f2f2; height: 100% !important; width: 100% !important; margin: 0 !important; padding: 0 !important;\"><div style=\"display: none\">We’ve recently updated the Mac and Windows apps to make the menu bar icon the easiest way to launch any of Airtime’s tools.  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ </div>\r\n    \r\n    <div style=\"display: none; font-size: 1px; line-height: 1px; max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden; mso-hide: all;\">\r\n        ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏\r\n    </div>\r\n    \r\n    <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: collapse !important;\">\r\n        <tbody><tr>\r\n            <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\">\r\n                <table bgcolor=\"#ffffff\" class=\"container\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; max-width: 600px; margin: 0 auto; border-collapse: collapse !important;\">\r\n\r\n                    <tbody><tr>\r\n                        <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\">  \r\n                        <!--[if lte mso 15]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\"><tr><td><![endif]-->\r\n                        \r\n                            <!-- Header -->                            \r\n                             <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: collapse !important;\">\r\n                                <tbody><tr>\r\n                                    <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background: #000000;\">\r\n                                        <table class=\"container85\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"90%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; max-width: 520px; border-collapse: collapse !important;\">\r\n                                            <tbody><tr>\r\n                                                <td align=\"left\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 30px 0 0;\">\r\n                                                    <a href=\"https://e.customeriomail.com/e/c/eyJlbWFpbF9pZCI6ImRnUzVwQWdEQUw3Uk1iM1JNUUdiQk1JWDNvNm1JWWh5dlBOeVhUND0iLCJocmVmIjoiaHR0cHM6Ly9haXJ0aW1ldG9vbHMuY29tL2xhdW5jaD91dG1fc291cmNlPWN1c3RvbWVyX2lvXHUwMDI2dXRtX21lZGl1bT1lbWFpbFx1MDAyNnV0bV9jYW1wYWlnbj1zNl9xdWlja19sYXVuY2hcdTAwMjZ1dG1fY29udGVudD1sb2dvIiwiaW50ZXJuYWwiOiJiOWE0MDgxYmFkMTliZWQxMzEiLCJsaW5rX2lkIjoxOTc2Nn0/f63948567d3409241e7da4beb6ef3bee8b0a8ddc6a59fb934170640ffee023fc\" target=\"_blank\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"><img src=\"https://userimg-assets-eu.customeriomail.com/images/client-env-189728/1761267482939_Airtime_black_01K89VJ18YNC13Q837AF2W8TRP.png\" alt=\"Airtime\" width=\"133\" style=\"line-height: 100%; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: 0; color: #ffffff; font-family: &#39;Geist&#39;,sans-serif; font-size: 25px; display: block; height: auto;\" height=\"auto\"/></a>\r\n                                                </td>\r\n                                            </tr>\r\n                                                                                                                \r\n                                            <tr>\r\n                                                <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 65px 0 50px;\">\r\n                                                    <h1 class=\"m-heading-1\" style=\"color:#ffffff; font-family:&#39;Geist&#39;,sans-serif; font-size:55px; font-weight:800; line-height:100%; letter-spacing:-3px; margin:0 0 11px; padding:0;\">\r\n                                                        Quick launch <br/>Airtime via the new system icons\r\n                                                    </h1>\r\n                                                    <p class=\"m-body-1\" style=\"color: #ffffff; font-family: &#39;Geist&#39;,sans-serif; font-size: 20px; font-weight: 400; line-height: 120%; letter-spacing: -0.2px; margin: 0px !important; padding: 0px !important;\">We’ve recently updated the Mac and Windows apps to make the menu bar (Mac) and system tray (Windows) icons the easiest way to launch any of Airtime’s tools.</p>  \r\n                                                </td>\r\n                                            </tr> \r\n                                        </tbody></table>\r\n                                    </td>\r\n                                </tr>\r\n                                <tr>\r\n                                    <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\">\r\n                                        <a href=\"https://e.customeriomail.com/e/c/eyJlbWFpbF9pZCI6ImRnUzVwQWdEQUw3Uk1iM1JNUUdiQk1JWDNvNm1JWWh5dlBOeVhUND0iLCJocmVmIjoiaHR0cHM6Ly9hcHAuYWlydGltZXRvb2xzLmNvbT91dG1fc291cmNlPWN1c3RvbWVyX2lvXHUwMDI2dXRtX21lZGl1bT1lbWFpbFx1MDAyNnV0bV9jYW1wYWlnbj1zNl9xdWlja19sYXVuY2hcdTAwMjZ1dG1fY29udGVudD1sb2dvIiwiaW50ZXJuYWwiOiJiOWE0MDgxYmFkMTliZWQxMzEiLCJsaW5rX2lkIjoxOTc2N30/2585ce274521cadda1fbb4d2b3a672f3886711308b2ac230b2692aca3b06b4c3\" target=\"_blank\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"><img src=\"https://userimg-assets.customeriomail.com/images/client-env-135737/1765299688167_Mac%20Windows_01KC20Z5AY82WFJ59PFSNNPR43.png\" alt=\"\" width=\"600\" style=\"line-height: 100%; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: 0; display: block; height: auto; width: 100%;\" height=\"auto\"/></a>\r\n                                    </td>\r\n                                </tr>\r\n\r\n                                <tr>\r\n                                    <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background: #000000;\">\r\n                                        <table class=\"container85\" align=\"center\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"90%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0 auto; max-width: 520px; border-collapse: collapse !important;\">\r\n                                                                                                                \r\n                                            <tbody><tr>\r\n                                                <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 25px 0 38px;\">\r\n                                                    <p class=\"m-body-2\" style=\"color: #ffffff; font-family: &#39;Geist&#39;,sans-serif; font-size: 17px; font-weight: 400; line-height: 120%; letter-spacing: -0.2px; margin: 0px !important; padding: 0px !important;\">From here, all four of our apps are available at a click, ready to be opened in seconds. To get it, just open Airtime on Mac or Windows and click &#39;Check for updates&#39; from the Airtime menu.</p>  \r\n                                                </td>\r\n                                            </tr> \r\n\r\n                                            <!-- cta -->\r\n                                            <tr>\r\n                                                <td class=\"pb-40\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0 0 71px;\">\r\n                                                    <table class=\"cta-hover\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; transition: all 0.3s ease; border-collapse: collapse !important;\">\r\n                                                        <tbody><tr>\r\n                                                            <td class=\"cta\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background: #ffffff; border-radius: 50px; font-family: &#39;Geist&#39;,sans-serif; font-size: 15px; font-weight: 600; line-height: 100%; letter-spacing: 2px; text-align: center; mso-padding-alt: 13px 25px;\" align=\"center\">\r\n                                                                <a href=\"https://e.customeriomail.com/e/c/eyJlbWFpbF9pZCI6ImRnUzVwQWdEQUw3Uk1iM1JNUUdiQk1JWDNvNm1JWWh5dlBOeVhUND0iLCJocmVmIjoiaHR0cHM6Ly9hcHAuYWlydGltZXRvb2xzLmNvbS8_dXRtX3NvdXJjZT1jdXN0b21lcmlvXHUwMDI2dXRtX21lZGl1bT1lbWFpbFx1MDAyNnV0bV9jYW1wYWlnbj1zNl9xdWlja19sYXVuY2hcdTAwMjZ1dG1fY29udGVudD1jdGEiLCJpbnRlcm5hbCI6ImI5YTQwODFiYWQxOWJlZDEzMSIsImxpbmtfaWQiOjE5NzY4fQ/ca238d495225327797d6799a8834266a155fe025ff6633cc591d38d274d633de\" target=\"_blank\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; transition: all 0.3s ease; color: #000000; display: block; letter-spacing: 0; padding: 13px 25px; text-decoration: none;\">Launch Airtime</a>\r\n                                                            </td>\r\n                                                        </tr>\r\n                                                    </tbody></table>\r\n                                                </td>\r\n                                            </tr>\r\n                                        </tbody></table>\r\n                                    </td>\r\n                                </tr>                                \r\n                            </tbody></table>\r\n\r\n                            <!-- 4 services -->\r\n                            <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: collapse !important;\">  \r\n                                <tbody><tr>\r\n                                    <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background: #eeeeee;\">\r\n                                        <table class=\"container85\" align=\"center\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"85%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0 auto; border-collapse: collapse !important;\">\r\n                                            <tbody><tr>\r\n                                                <td class=\"pt-40\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 60px 0 37px;\">\r\n                                                    <h2 class=\"dark-text-light m-heading-2\" style=\"color:#000000; font-family:&#39;Geist&#39;,sans-serif; font-size:35px; font-weight:800; line-height:100%; letter-spacing:-0.3px; margin:0; padding:0;\">\r\n                                                        Unfamiliar with any of these apps? Meet our lineup:\r\n                                                    </h2>\r\n                                                </td>\r\n                                            </tr>\r\n\r\n                                            <!-- 2 column #1 -->\r\n                                            <tr>\r\n                                                <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 0; line-height: 0; padding: 0 0 20px;\">\r\n                                                <!--[if (gte mso 9)|(IE)]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"512\"><tr><td valign=\"top\" width=\"245\"><![endif]-->\r\n                                                    <div class=\"column\" style=\"display:table-cell; vertical-align:top; width:48%\">  \r\n                                                        <div class=\"column-100\" style=\"width:100%;\">\r\n                                                            <table class=\"hover h-0\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"171\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background: #f7f7f7; border-radius: 10px; border-collapse: collapse !important;\">\r\n                                                                <!-- 1 -->\r\n                                                                <tbody><tr>\r\n                                                                    <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 23px 0;\">\r\n                                                                        <table class=\"container85\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"80%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: collapse !important;\">\r\n                                                                            <tbody><tr>\r\n                                                                                <td align=\"left\" valign=\"top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\">\r\n                                                                                    <a href=\"https://e.customeriomail.com/e/c/eyJlbWFpbF9pZCI6ImRnUzVwQWdEQUw3Uk1iM1JNUUdiQk1JWDNvNm1JWWh5dlBOeVhUND0iLCJocmVmIjoiaHR0cHM6Ly93d3cuYWlydGltZS5jb20vY2FtZXJhP3V0bV9zb3VyY2U9Y3VzdG9tZXJfaW9cdTAwMjZ1dG1fbWVkaXVtPWVtYWlsXHUwMDI2dXRtX2NhbXBhaWduPXM2X3F1aWNrX2xhdW5jaFx1MDAyNnV0bV9jb250ZW50PWNhbWVyYV9sb2dvX2Jsb2NrIiwiaW50ZXJuYWwiOiJiOWE0MDgxYmFkMTliZWQxMzEiLCJsaW5rX2lkIjoxOTc2OX0/3623d3118a248af12378669b275bec1c0590aa0e17a5ffc06944affdebb53547\" target=\"_blank\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"><img src=\"https://userimg-assets-eu.customeriomail.com/images/client-env-189728/1761330504331_Group%201010116384_01K8BQNA9C25V6B7RTK653TM88.png\" alt=\"Camera\" width=\"136\" style=\"line-height: 100%; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: 0; color: #000000; font: 700 16px &#39;Geist&#39;,sans-serif; display: block; height: auto;\" height=\"auto\"/></a>\r\n                                                                                </td>\r\n                                                                            </tr>\r\n                                                                            <tr>\r\n                                                                                <td class=\"pb-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 12px 0 34px;\">                                                                        \r\n                                                                                    <h4 style=\"color:#000000; font-family:&#39;Geist&#39;,sans-serif; font-size:16px; font-weight:500; line-height:120%; letter-spacing:-0.1px; margin:0; padding:0;\">\r\n                                                                                        <a href=\"https://e.customeriomail.com/e/c/eyJlbWFpbF9pZCI6ImRnUzVwQWdEQUw3Uk1iM1JNUUdiQk1JWDNvNm1JWWh5dlBOeVhUND0iLCJocmVmIjoiaHR0cHM6Ly93d3cuYWlydGltZS5jb20vY2FtZXJhP3V0bV9zb3VyY2U9Y3VzdG9tZXJfaW9cdTAwMjZ1dG1fbWVkaXVtPWVtYWlsXHUwMDI2dXRtX2NhbXBhaWduPXF1aWNrX2xhdW5jaFx1MDAyNnV0bV9jb250ZW50PWNhbWVyYV90ZXh0X2Jsb2NrIiwiaW50ZXJuYWwiOiJiOWE0MDgxYmFkMTliZWQxMzEiLCJsaW5rX2lkIjoxOTc3MH0/c8492c37026a3265cabcc990a3b84da8c980c139173500215c15061282ee054b\" target=\"_blank\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #000000; text-decoration: none;\">Webcam superpowers for video calls. Create stunning looks for video calls.</a>\r\n                                                                                    </h4>       \r\n                                                                                </td>\r\n                                                                            </tr>\r\n                                                                        </tbody></table>\r\n                                                                    </td>\r\n                                                                </tr>\r\n                                                            </tbody></table>\r\n                                                        </div>\r\n                                                    </div>\r\n\r\n                                                    <!--[if (gte mso 9)|(IE)]></td><td valign=\"top\" width=\"22\"><![endif]-->\r\n                                                    <div class=\"column\" style=\"display:table-cell; vertical-align:top; width:4%\">  \r\n                                                        <div class=\"column-100\" style=\"width:100%;\">\r\n                                                            <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: collapse !important;\"><tbody><tr><td height=\"20\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"></td></tr></tbody></table>\r\n                                                        </div>\r\n                                                    </div>\r\n                                                    \r\n                                                    <!--[if (gte mso 9)|(IE)]></td><td valign=\"top\" width=\"245\"><![endif]-->\r\n                                                    <div class=\"column\" style=\"display:table-cell; vertical-align:top; width:48%\">  \r\n                                                        <div class=\"column-100\" style=\"width:100%;\">\r\n                                                            <table class=\"hover h-0\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"171\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background: #f7f7f7; border-radius: 10px; border-collapse: collapse !important;\">\r\n                                                                <!-- 1 -->\r\n                                                                <tbody><tr>\r\n                                                                    <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 23px 0;\">\r\n                                                                        <table class=\"container85\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"80%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: collapse !important;\">\r\n                                                                            <tbody><tr>\r\n                                                                                <td align=\"left\" valign=\"top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\">\r\n                                                                                    <a href=\"https://e.customeriomail.com/e/c/eyJlbWFpbF9pZCI6ImRnUzVwQWdEQUw3Uk1iM1JNUUdiQk1JWDNvNm1JWWh5dlBOeVhUND0iLCJocmVmIjoiaHR0cHM6Ly93d3cuYWlydGltZS5jb20vY3JlYXRvcj91dG1fc291cmNlPWN1c3RvbWVyX2lvXHUwMDI2dXRtX21lZGl1bT1lbWFpbFx1MDAyNnV0bV9jYW1wYWlnbj1zNl9xdWlja19sYXVuY2hcdTAwMjZ1dG1fY29udGVudD1jcmVhdG9yX2xvZ29fYmxvY2siLCJpbnRlcm5hbCI6ImI5YTQwODFiYWQxOWJlZDEzMSIsImxpbmtfaWQiOjE5NzcxfQ/8cdd53ec7d4c0719f8c6f0edbca1981b887b7a2efa70a92f3aabc2ed4c0ade86\" target=\"_blank\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"><img src=\"https://userimg-assets-eu.customeriomail.com/images/client-env-189728/1761330657763_Group%201010116385_01K8BQT048453DZX5G065X544S.png\" alt=\"Creator\" width=\"133\" style=\"line-height: 100%; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: 0; color: #000000; font: 700 16px &#39;Geist&#39;,sans-serif; display: block; height: auto;\" height=\"auto\"/></a>\r\n                                                                                </td>\r\n                                                                            </tr>\r\n                                                                            <tr>\r\n                                                                                <td class=\"pb-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 12px 0 14px;\">                                                                        \r\n                                                                                    <h4 style=\"color:#000000; font-family:&#39;Geist&#39;,sans-serif; font-size:16px; font-weight:500; line-height:120%; letter-spacing:-0.1px; margin:0; padding:0;\">\r\n                                                                                        <a href=\"https://e.customeriomail.com/e/c/eyJlbWFpbF9pZCI6ImRnUzVwQWdEQUw3Uk1iM1JNUUdiQk1JWDNvNm1JWWh5dlBOeVhUND0iLCJocmVmIjoiaHR0cHM6Ly93d3cuYWlydGltZS5jb20vY3JlYXRvcj91dG1fc291cmNlPWN1c3RvbWVyX2lvXHUwMDI2dXRtX21lZGl1bT1lbWFpbFx1MDAyNnV0bV9jYW1wYWlnbj1xdWlja19sYXVuY2hcdTAwMjZ1dG1fY29udGVudD1jcmVhdG9yX3RleHRfYmxvY2siLCJpbnRlcm5hbCI6ImI5YTQwODFiYWQxOWJlZDEzMSIsImxpbmtfaWQiOjE5NzcyfQ/cef8e9b76ef81bba21af8edb20048bbefb052cd5b02ac300409a2c4e7835aefb\" target=\"_blank\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #000000; text-decoration: none;\">All-in-one tool for recorded or live presentations that puts you at the center of your slides.</a>\r\n                                                                                    </h4>       \r\n                                                                                </td>\r\n                                                                            </tr>\r\n                                                                        </tbody></table>\r\n                                                                    </td>\r\n                                                                </tr>\r\n                                                            </tbody></table>\r\n                                                        </div>\r\n                                                    </div>\r\n                                                <!--[if (gte mso 9)|(IE)]></td></tr></table><![endif]-->\r\n                                                </td>\r\n                                            </tr>\r\n\r\n                                            <!-- 2 column #2 -->\r\n                                            <tr>\r\n                                                <td class=\"pb-40\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 0; line-height: 0; padding: 0 0 60px;\">\r\n                                                <!--[if (gte mso 9)|(IE)]><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"512\"><tr><td valign=\"top\" width=\"245\"><![endif]-->\r\n                                                    <div class=\"column\" style=\"display:table-cell; vertical-align:top; width:48%\">  \r\n                                                        <div class=\"column-100\" style=\"width:100%;\">\r\n                                                            <table class=\"hover h-0\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"171\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background: #f7f7f7; border-radius: 10px; border-collapse: collapse !important;\">\r\n                                                                <!-- 1 -->\r\n                                                                <tbody><tr>\r\n                                                                    <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 23px 0;\">\r\n                                                                        <table class=\"container85\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"80%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: collapse !important;\">\r\n                                                                            <tbody><tr>\r\n                                                                                <td align=\"left\" valign=\"top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\">\r\n                                                                                    <a href=\"https://e.customeriomail.com/e/c/eyJlbWFpbF9pZCI6ImRnUzVwQWdEQUw3Uk1iM1JNUUdiQk1JWDNvNm1JWWh5dlBOeVhUND0iLCJocmVmIjoiaHR0cHM6Ly93d3cuYWlydGltZS5jb20vc2NyZWVuLXJlY29yZGVyP3V0bV9zb3VyY2U9Y3VzdG9tZXJfaW9cdTAwMjZ1dG1fbWVkaXVtPWVtYWlsXHUwMDI2dXRtX2NhbXBhaWduPXM2X3F1aWNrX2xhdW5jaFx1MDAyNnV0bV9jb250ZW50PXNjcmVlbi1yZWNvcmRlcl9sb2dvX2Jsb2NrIiwiaW50ZXJuYWwiOiJiOWE0MDgxYmFkMTliZWQxMzEiLCJsaW5rX2lkIjoxOTc3M30/debf7053cf047d40b2a1152ca1358140d5eb8383e92bb4878f54e542e58c7bfe\" target=\"_blank\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"><img src=\"https://userimg-assets-eu.customeriomail.com/images/client-env-189728/1761330534207_Group%201010116386_01K8BQP7F0V23T9G38F6JZKF2X.png\" alt=\"ScreenRecorder\" width=\"211\" style=\"line-height: 100%; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: 0; color: #000000; font: 700 16px &#39;Geist&#39;,sans-serif; display: block; height: auto;\" height=\"auto\"/></a>\r\n                                                                                </td>\r\n                                                                            </tr>\r\n                                                                            <tr>\r\n                                                                                <td class=\"pb-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 12px 0;\">                                                                        \r\n                                                                                    <h4 style=\"color:#000000; font-family:&#39;Geist&#39;,sans-serif; font-size:16px; font-weight:500; line-height:120%; letter-spacing:-0.1px; margin:0; padding:0;\">\r\n                                                                                        <a href=\"https://e.customeriomail.com/e/c/eyJlbWFpbF9pZCI6ImRnUzVwQWdEQUw3Uk1iM1JNUUdiQk1JWDNvNm1JWWh5dlBOeVhUND0iLCJocmVmIjoiaHR0cHM6Ly93d3cuYWlydGltZS5jb20vc2NyZWVuLXJlY29yZGVyP3V0bV9zb3VyY2U9Y3VzdG9tZXJfaW9cdTAwMjZ1dG1fbWVkaXVtPWVtYWlsXHUwMDI2dXRtX2NhbXBhaWduPXF1aWNrX2xhdW5jaFx1MDAyNnV0bV9jb250ZW50PXNjcmVlbi1yZWNvcmRlcl90ZXh0X2Jsb2NrIiwiaW50ZXJuYWwiOiJiOWE0MDgxYmFkMTliZWQxMzEiLCJsaW5rX2lkIjoxOTc3NH0/10051b4658d57a78e8ad5b5be19df33674ec50d36e5e708de3ac4280c45cea00\" target=\"_blank\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #000000; text-decoration: none;\">A web-based screen recorder to easily make recordings that your audience will love.</a>\r\n                                                                                    </h4>       \r\n                                                                                </td>\r\n                                                                            </tr>\r\n                                                                        </tbody></table>\r\n                                                                    </td>\r\n                                                                </tr>\r\n                                                            </tbody></table>\r\n                                                        </div>\r\n                                                    </div>\r\n\r\n                                                    <!--[if (gte mso 9)|(IE)]></td><td valign=\"top\" width=\"22\"><![endif]-->\r\n                                                    <div class=\"column\" style=\"display:table-cell; vertical-align:top; width:4%\">  \r\n                                                        <div class=\"column-100\" style=\"width:100%;\">\r\n                                                            <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: collapse !important;\"><tbody><tr><td height=\"20\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"></td></tr></tbody></table>\r\n                                                        </div>\r\n                                                    </div>\r\n                                                    \r\n                                                    <!--[if (gte mso 9)|(IE)]></td><td valign=\"top\" width=\"245\"><![endif]-->\r\n                                                    <div class=\"column\" style=\"display:table-cell; vertical-align:top; width:48%\">  \r\n                                                        <div class=\"column-100\" style=\"width:100%;\">\r\n                                                            <table class=\"hover h-0\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"171\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background: #f7f7f7; border-radius: 10px; border-collapse: collapse !important;\">\r\n                                                                <!-- 1 -->\r\n                                                                <tbody><tr>\r\n                                                                    <td align=\"center\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 23px 0;\">\r\n                                                                        <table class=\"container85\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"80%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: collapse !important;\">\r\n                                                                            <tbody><tr>\r\n                                                                                <td align=\"left\" valign=\"top\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\">\r\n                                                                                    <a href=\"https://e.customeriomail.com/e/c/eyJlbWFpbF9pZCI6ImRnUzVwQWdEQUw3Uk1iM1JNUUdiQk1JWDNvNm1JWWh5dlBOeVhUND0iLCJocmVmIjoiaHR0cHM6Ly93d3cuYWlydGltZS5jb20vc3RhY2tzP3V0bV9zb3VyY2U9Y3VzdG9tZXJfaW9cdTAwMjZ1dG1fbWVkaXVtPWVtYWlsXHUwMDI2dXRtX2NhbXBhaWduPXM2X3F1aWNrX2xhdW5jaFx1MDAyNnV0bV9jb250ZW50PXN0YWNrc19sb2dvX2Jsb2NrIiwiaW50ZXJuYWwiOiJiOWE0MDgxYmFkMTliZWQxMzEiLCJsaW5rX2lkIjoxOTc3NX0/8bffa8e4fd00a46d5c1e29256253939ad0c550c63185fc7859063fcd0bef6653\" target=\"_blank\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"><img src=\"https://userimg-assets-eu.customeriomail.com/images/client-env-189728/1761330552336_Group%201010116387_01K8BQPS5NWRSCK4VFCEZDKMFV.png\" alt=\"Stacks\" width=\"130\" style=\"line-height: 100%; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: 0; color: #000000; font: 700 16px &#39;Geist&#39;,sans-serif; display: block; height: auto;\" height=\"auto\"/></a>\r\n                                                                                </td>\r\n                                                                            </tr>\r\n                                                                            <tr>\r\n                                                                                <td class=\"pb-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 12px 0 32px;\">                                                                        \r\n                                                                                    <h4 style=\"color:#000000; font-family:&#39;Geist&#39;,sans-serif; font-size:16px; font-weight:500; line-height:120%; letter-spacing:-0.1px; margin:0; padding:0;\">\r\n                                                                                        <a href=\"https://e.customeriomail.com/e/c/eyJlbWFpbF9pZCI6ImRnUzVwQWdEQUw3Uk1iM1JNUUdiQk1JWDNvNm1JWWh5dlBOeVhUND0iLCJocmVmIjoiaHR0cHM6Ly93d3cuYWlydGltZS5jb20vc3RhY2tzP3V0bV9zb3VyY2U9Y3VzdG9tZXJfaW9cdTAwMjZ1dG1fbWVkaXVtPWVtYWlsXHUwMDI2dXRtX2NhbXBhaWduPXF1aWNrX2xhdW5jaFx1MDAyNnV0bV9jb250ZW50PXN0YWNrc190ZXh0X2Jsb2NrIiwiaW50ZXJuYWwiOiJiOWE0MDgxYmFkMTliZWQxMzEiLCJsaW5rX2lkIjoxOTc3Nn0/edc73d2ee5b36479be83f0e7156e3fd0f5e0720d360379a27aa62a34c70a5195\" target=\"_blank\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #000000; text-decoration: none;\">The collaborative alternative to traditional screensharing.</a>\r\n                                                                                    </h4>       \r\n                                                                                </td>\r\n                                                                            </tr>\r\n                                                                        </tbody></table>\r\n                                                                    </td>\r\n                                                                </tr>\r\n                                                            </tbody></table>\r\n                                                        </div>\r\n                                                    </div>\r\n                                                <!--[if (gte mso 9)|(IE)]></td></tr></table><![endif]-->\r\n                                                </td>\r\n                                            </tr>\r\n                                        </tbody></table>\r\n                                    </td>                                            \r\n                                </tr>\r\n                            </tbody></table>\r\n\r\n                            <!-- Footer -->\r\n                            <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: collapse !important;\">\r\n                                <tbody><tr>\r\n                                    <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 40px 0;\">\r\n                                        <table align=\"center\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"86%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0 auto; max-width: 520px; border-collapse: collapse !important;\">\r\n                                            <tbody><tr>\r\n                                                <td class=\"column\" align=\"left\" width=\"50%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\">\r\n                                                    <a href=\"https://e.customeriomail.com/e/c/eyJlbWFpbF9pZCI6ImRnUzVwQWdEQUw3Uk1iM1JNUUdiQk1JWDNvNm1JWWh5dlBOeVhUND0iLCJocmVmIjoiaHR0cHM6Ly93d3cubW1obW0uYXBwP3V0bV9zb3VyY2U9Y3VzdG9tZXJfaW9cdTAwMjZ1dG1fbWVkaXVtPWVtYWlsXHUwMDI2dXRtX2NhbXBhaWduPXM2X3F1aWNrX2xhdW5jaFx1MDAyNnV0bV9jb250ZW50PWZvb3Rlcl9sZWZ0LXNtYWxsLWxvZ28iLCJpbnRlcm5hbCI6ImI5YTQwODFiYWQxOWJlZDEzMSIsImxpbmtfaWQiOjE5Nzc3fQ/ea214638fd03b984719598766c54467557dcc3938e2ef7a998d7561782c1bd6a\" target=\"_blank\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"><img src=\"https://userimg-assets-eu.customeriomail.com/images/client-env-158992/1754673072456_logo_footer_01K25AMK9MZWM31QZXJ8Y33T8B.png\" alt=\"Airtime\" width=\"174\" style=\"line-height: 100%; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: 0; height: auto; display: block;\" height=\"auto\"/></a>\r\n                                                    <p style=\"color: #001620; font-family: &#39;Geist&#39;,sans-serif; font-size: 14px; line-height: 140%; letter-spacing: -0.1px; margin: 0px !important; padding: 0px !important;\">Essential tools for video at work</p>\r\n                                                </td>\r\n\r\n                                                <td class=\"column left pt-15\" align=\"right\" width=\"50%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\">\r\n                                                    <table class=\"left\" align=\"right\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: collapse !important;\">\r\n                                                        <tbody><tr>\r\n                                                            <td class=\"px-0\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px;\">\r\n                                                                <a href=\"https://e.customeriomail.com/e/c/eyJlbWFpbF9pZCI6ImRnUzVwQWdEQUw3Uk1iM1JNUUdiQk1JWDNvNm1JWWh5dlBOeVhUND0iLCJocmVmIjoiaHR0cDovL3guY29tL2FpcnRpbWV0b29scz91dG1fc291cmNlPWN1c3RvbWVyX2lvXHUwMDI2dXRtX21lZGl1bT1lbWFpbFx1MDAyNnV0bV9jb250ZW50PWZvb3Rlcl9faWNvbi1YIiwiaW50ZXJuYWwiOiJiOWE0MDgxYmFkMTliZWQxMzEiLCJsaW5rX2lkIjoxODM4M30/5faa94285304e5006fb83e82d8edf074642702ca99349a32322173bf423a24ab\" target=\"_blank\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"><img src=\"https://userimg-assets-eu.customeriomail.com/images/client-env-158992/1754665545030_Twitter_01K253EW5XMN8M3GPY4YA8MC5V.png\" alt=\"tw\" height=\"auto\" width=\"25\" style=\"height: auto; line-height: 100%; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: 0; display: block;\"/></a>\r\n                                                            </td>\r\n                                                            <td align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px;\">\r\n                                                                <a href=\"https://e.customeriomail.com/e/c/eyJlbWFpbF9pZCI6ImRnUzVwQWdEQUw3Uk1iM1JNUUdiQk1JWDNvNm1JWWh5dlBOeVhUND0iLCJocmVmIjoiaHR0cDovL2luc3RhZ3JhbS5jb20vYWlydGltZXRvb2xzP3V0bV9zb3VyY2U9Y3VzdG9tZXJfaW9cdTAwMjZ1dG1fbWVkaXVtPWVtYWlsXHUwMDI2dXRtX2NvbnRlbnQ9Zm9vdGVyX19pY29uLWluc3RhZ3JhbSIsImludGVybmFsIjoiYjlhNDA4MWJhZDE5YmVkMTMxIiwibGlua19pZCI6MTgzODR9/9815248d55c62b8c7f7ee970ac828354abcda2b913825ff526dbab07e68d7480\" target=\"_blank\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"><img src=\"https://userimg-assets-eu.customeriomail.com/images/client-env-158992/1754665548360_Social-Instagram_01K253EZDS2H89Z574GCRY6HCD.png\" alt=\"inst\" height=\"auto\" width=\"25\" style=\"height: auto; line-height: 100%; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: 0; display: block;\"/></a>\r\n                                                            </td>\r\n                                                            <td align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px;\">\r\n                                                                <a href=\"https://e.customeriomail.com/e/c/eyJlbWFpbF9pZCI6ImRnUzVwQWdEQUw3Uk1iM1JNUUdiQk1JWDNvNm1JWWh5dlBOeVhUND0iLCJocmVmIjoiaHR0cDovL2xpbmtlZGluLmNvbS9jb21wYW55L2FpcnRpbWV0b29scz91dG1fc291cmNlPWN1c3RvbWVyX2lvXHUwMDI2dXRtX21lZGl1bT1lbWFpbFx1MDAyNnV0bV9jb250ZW50PWZvb3Rlcl9faWNvbi1saW5rZWRpbiIsImludGVybmFsIjoiYjlhNDA4MWJhZDE5YmVkMTMxIiwibGlua19pZCI6MTgzODV9/fde483660bd26b3e6a093f9bf6d558642810aa99fa75e1ee36fad8463a8988d8\" target=\"_blank\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"><img src=\"https://userimg-assets-eu.customeriomail.com/images/client-env-158992/1754665547605_Social-Linkedin_01K253EYP5GFS5RCBE46JJ5CBQ.png\" alt=\"in\" height=\"auto\" width=\"25\" style=\"height: auto; line-height: 100%; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: 0; display: block;\"/></a>\r\n                                                            </td>\r\n                                                            <td align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px;\">\r\n                                                                <a href=\"https://e.customeriomail.com/e/c/eyJlbWFpbF9pZCI6ImRnUzVwQWdEQUw3Uk1iM1JNUUdiQk1JWDNvNm1JWWh5dlBOeVhUND0iLCJocmVmIjoiaHR0cDovL2ZhY2Vib29rLmNvbS9haXJ0aW1ldG9vbHM_dXRtX3NvdXJjZT1jdXN0b21lcl9pb1x1MDAyNnV0bV9tZWRpdW09ZW1haWxcdTAwMjZ1dG1fY29udGVudD1mb290ZXJfX2ljb24tZmFjZWJvb2siLCJpbnRlcm5hbCI6ImI5YTQwODFiYWQxOWJlZDEzMSIsImxpbmtfaWQiOjE4Mzg2fQ/7dc97c4165c63d8d6ffa178828bca10ec5453a1dbf875a440a4b9d8385694bfb\" target=\"_blank\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"><img src=\"https://userimg-assets-eu.customeriomail.com/images/client-env-158992/1754665546856_Social-Facebook_01K253EXZ7HBX55THA4CWA945D.png\" alt=\"fb\" height=\"auto\" width=\"25\" style=\"height: auto; line-height: 100%; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: 0; display: block;\"/></a>\r\n                                                            </td>\r\n                                                            <td align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 24px;\">\r\n                                                                <a href=\"https://e.customeriomail.com/e/c/eyJlbWFpbF9pZCI6ImRnUzVwQWdEQUw3Uk1iM1JNUUdiQk1JWDNvNm1JWWh5dlBOeVhUND0iLCJocmVmIjoiaHR0cDovL3lvdXR1YmUuY29tL0BhaXJ0aW1ldG9vbHM_dXRtX3NvdXJjZT1jdXN0b21lcl9pb1x1MDAyNnV0bV9tZWRpdW09ZW1haWxcdTAwMjZcdTAwMjZ1dG1fY29udGVudD1mb290ZXJfX2ljb24teW91dHViZSIsImludGVybmFsIjoiYjlhNDA4MWJhZDE5YmVkMTMxIiwibGlua19pZCI6MTgzODd9/9e2e4347c4e87aee012d02516479c4b0205b75dd3d845afab24c7948f33853fc\" target=\"_blank\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"><img src=\"https://userimg-assets-eu.customeriomail.com/images/client-env-158992/1754665545995_Social-YouTube_01K253EX3X75NWMYM2JBAGBR8W.png\" alt=\"yt\" height=\"auto\" width=\"25\" style=\"height: auto; line-height: 100%; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border: 0; display: block;\"/></a>\r\n                                                            </td>\r\n                                                        </tr>\r\n                                                    </tbody></table>\r\n                                                </td>\r\n                                            </tr>\r\n\r\n                                            <tr>\r\n                                                <td class=\"footer\" colspan=\"2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #001620; font-family: &#39;Geist&#39;,sans-serif; font-size: 14px; line-height: 140%; letter-spacing: -0.1px; padding: 40px 0 0;\">\r\n                                                    <p style=\"margin: 0px !important; padding: 0px !important;\">\r\n                                                        ©mmhmm inc, 2025. All rights reserved.<br/>        \r\n                                                        <span style=\"white-space:nowrap\">9450 SW Gemini Dr</span>, <span style=\"white-space:nowrap\">PMB 85948</span>, <span style=\"white-space:nowrap\">Beaverton, OR 97008-7105</span>    \r\n                                                    </p>\r\n                                                    <p class=\"dark-text-light pt-24\" style=\"margin: 0px !important; padding: 0px !important;\">\r\n                                                        You can update <a href=\"https://e.customeriomail.com/manage_subscription_preferences/dgS5pAgDAL7RMb3RMQGbBMIX3o6mIYhyvPNyXT4=\" target=\"_blank\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #000000; text-decoration: underline;\"><span>your preferences</span></a> or <a href=\"https://e.customeriomail.com/unsubscribe/dgS5pAgDAL7RMb3RMQGbBMIX3o6mIYhyvPNyXT4=\" target=\"_blank\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #000000; text-decoration: underline;\"><span>unsubscribe from this list.</span></a> \r\n                                                    </p>\r\n                                                </td>\r\n                                            </tr>\r\n                                        </tbody></table>\r\n                                    </td>\r\n                                </tr>\r\n                            </tbody></table>\r\n                            <!--[if lte mso 15]></td></tr></table><![endif]-->\r\n                        </td>\r\n                    </tr>\r\n                </tbody></table>\r\n            </td>\r\n        </tr>\r\n    </tbody></table>\r\n\r\n \r\n<img src=\"https://e.customeriomail.com/e/o/eyJlbWFpbF9pZCI6ImRnUzVwQWdEQUw3Uk1iM1JNUUdiQk1JWDNvNm1JWWh5dlBOeVhUND0ifQ==\" style=\"height: 1px !important; max-height: 1px !important; max-width: 1px !important; width: 1px !important; display: none !important;\" alt=\"\"/></body></html><!-- Preheader Section -->','͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏\r\n\r\nAirtime ( https://airtimetools.com/launch?utm_source=customer_io&utm_medium=email&utm_campaign=s6_quick_launch&utm_content=logo )\r\n\r\n********************************\r\nQuick launch\r\nAirtime via the new system icons\r\n********************************\r\n\r\nWe’ve recently updated the Mac and Windows apps to make the menu bar (Mac) and system tray (Windows) icons the easiest way to launch any of Airtime’s tools.\r\n\r\n( https://app.airtimetools.com?utm_source=customer_io&utm_medium=email&utm_campaign=s6_quick_launch&utm_content=logo )\r\n\r\nFrom here, all four of our apps are available at a click, ready to be opened in seconds. To get it, just open Airtime on Mac or Windows and click \'Check for updates\' from the Airtime menu.\r\n\r\nLaunch Airtime ( https://app.airtimetools.com/?utm_source=customerio&utm_medium=email&utm_campaign=s6_quick_launch&utm_content=cta )\r\n\r\n---------------------------------------------------\r\nUnfamiliar with any of these apps? Meet our lineup:\r\n---------------------------------------------------\r\n\r\nCamera ( https://www.airtime.com/camera?utm_source=customer_io&utm_medium=email&utm_campaign=s6_quick_launch&utm_content=camera_logo_block )\r\n\r\nWebcam superpowers for video calls. Create stunning looks for video calls. ( https://www.airtime.com/camera?utm_source=customer_io&utm_medium=email&utm_campaign=quick_launch&utm_content=camera_text_block )\r\n-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\r\n\r\nCreator ( https://www.airtime.com/creator?utm_source=customer_io&utm_medium=email&utm_campaign=s6_quick_launch&utm_content=creator_logo_block )\r\n\r\nAll-in-one tool for recorded or live presentations that puts you at the center of your slides. ( https://www.airtime.com/creator?utm_source=customer_io&utm_medium=email&utm_campaign=quick_launch&utm_content=creator_text_block )\r\n-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\r\n\r\nScreenRecorder ( https://www.airtime.com/screen-recorder?utm_source=customer_io&utm_medium=email&utm_campaign=s6_quick_launch&utm_content=screen-recorder_logo_block )\r\n\r\nA web-based screen recorder to easily make recordings that your audience will love. ( https://www.airtime.com/screen-recorder?utm_source=customer_io&utm_medium=email&utm_campaign=quick_launch&utm_content=screen-recorder_text_block )\r\n----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\r\n\r\nStacks ( https://www.airtime.com/stacks?utm_source=customer_io&utm_medium=email&utm_campaign=s6_quick_launch&utm_content=stacks_logo_block )\r\n\r\nThe collaborative alternative to traditional screensharing. ( https://www.airtime.com/stacks?utm_source=customer_io&utm_medium=email&utm_campaign=quick_launch&utm_content=stacks_text_block )\r\n----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\r\n\r\nAirtime ( https://www.mmhmm.app?utm_source=customer_io&utm_medium=email&utm_campaign=s6_quick_launch&utm_content=footer_left-small-logo )\r\nEssential tools for video at work\r\n\r\ntw ( http://x.com/airtimetools?utm_source=customer_io&utm_medium=email&utm_content=footer__icon-X )\r\n\r\ninst ( http://instagram.com/airtimetools?utm_source=customer_io&utm_medium=email&utm_content=footer__icon-instagram )\r\n\r\nin ( http://linkedin.com/company/airtimetools?utm_source=customer_io&utm_medium=email&utm_content=footer__icon-linkedin )\r\n\r\nfb ( http://facebook.com/airtimetools?utm_source=customer_io&utm_medium=email&utm_content=footer__icon-facebook )\r\n\r\nyt ( http://youtube.com/@airtimetools?utm_source=customer_io&utm_medium=email&&utm_content=footer__icon-youtube )\r\n\r\n©mmhmm inc, 2025. All rights reserved.\r\n\r\n9450 SW Gemini Dr, PMB 85948, Beaverton, OR 97008-7105\r\n\r\nYou can update your preferences ( https://track.customer.io/manage_subscription_preferences/dgS5pAgDAL7RMb3RMQGbBMIX3o6mIYhyvPNyXT4= ) or unsubscribe from this list. ( https://track.customer.io/unsubscribe/dgS5pAgDAL7RMb3RMQGbBMIX3o6mIYhyvPNyXT4= )',1,0,0,0,0,0,'2025-12-09 20:25:01','2025-12-09 20:30:33','2025-12-09 20:30:33','2025-12-09 21:44:13',NULL,NULL,NULL),
(998,4,'<e496cc35-f910-4346-a73c-92dd6b7bee7f@atl1s07mta3030.xt.local>',NULL,NULL,'Your 14-day trial of TinyMCE has ended','team@engage.tiny.cloud','\"The TinyMCE Team\"','<!DOCTYPE html>\r\n<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\">\r\n\r\n<head>\r\n	<title></title>\r\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n	<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"><!--[if mso]>\r\n<xml><w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\"><w:DontUseAdvancedTypographyReadingMail/></w:WordDocument>\r\n<o:OfficeDocumentSettings><o:PixelsPerInch>96</o:PixelsPerInch><o:AllowPNG/></o:OfficeDocumentSettings></xml>\r\n<![endif]--><!--[if !mso]><!-->\r\n	<link href=\"https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&amp;display=swap\" rel=\"stylesheet\" type=\"text/css\"><!--<![endif]-->\r\n	<style>\r\n		* {\r\n			box-sizing: border-box;\r\n		}\r\n\r\n		body {\r\n			margin: 0;\r\n			padding: 0;\r\n		}\r\n\r\n		a[x-apple-data-detectors] {\r\n			color: inherit !important;\r\n			text-decoration: inherit !important;\r\n		}\r\n\r\n		#MessageViewBody a {\r\n			color: inherit;\r\n			text-decoration: none;\r\n		}\r\n\r\n		p {\r\n			line-height: inherit\r\n		}\r\n\r\n		.desktop_hide,\r\n		.desktop_hide table {\r\n			mso-hide: all;\r\n			display: none;\r\n			max-height: 0px;\r\n			overflow: hidden;\r\n		}\r\n\r\n		.image_block img+div {\r\n			display: none;\r\n		}\r\n\r\n		sup,\r\n		sub {\r\n			font-size: 75%;\r\n			line-height: 0;\r\n		}\r\n\r\n		#converted-body .list_block ul,\r\n		#converted-body .list_block ol,\r\n		.body [class~=\"x_list_block\"] ul,\r\n		.body [class~=\"x_list_block\"] ol,\r\n		u+.body .list_block ul,\r\n		u+.body .list_block ol {\r\n			padding-left: 20px;\r\n		}\r\n\r\n		@media (max-width:620px) {\r\n			.desktop_hide table.icons-outer {\r\n				display: inline-table !important;\r\n			}\r\n\r\n			.mobile_hide {\r\n				display: none;\r\n			}\r\n\r\n			.row-content {\r\n				width: 100% !important;\r\n			}\r\n\r\n			.stack .column {\r\n				width: 100%;\r\n				display: block;\r\n			}\r\n\r\n			.mobile_hide {\r\n				min-height: 0;\r\n				max-height: 0;\r\n				max-width: 0;\r\n				overflow: hidden;\r\n				font-size: 0px;\r\n			}\r\n\r\n			.desktop_hide,\r\n			.desktop_hide table {\r\n				display: table !important;\r\n				max-height: none !important;\r\n			}\r\n		}\r\n	</style><!--[if mso ]><style>sup, sub { font-size: 100% !important; } sup { mso-text-raise:10% } sub { mso-text-raise:-10% }</style> <![endif]-->\r\n</head>\r\n\r\n<body class=\"body\" style=\"background-color: #ffffff; margin: 0; padding: 0; -webkit-text-size-adjust: none; text-size-adjust: none;\">\r\n	<table class=\"nl-container\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\">\r\n		<tbody>\r\n			<tr>\r\n				<td>\r\n					<table class=\"row row-1\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\">\r\n						<tbody>\r\n							<tr>\r\n								<td>\r\n									<table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; vertical-align: top;\">\r\n													<table class=\"paragraph_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n																<div style=\"color:#233477;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:14px;font-weight:300;letter-spacing:0px;line-height:1.5;text-align:center;mso-line-height-alt:21px;\">\r\n																	<p style=\"margin: 0;\">Is this email not displaying correctly? <a href=\"https://pi.tiny.cloud/webmail/2202/1937013130/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864\" style=\"text-decoration: underline; color: #335dff;\">View it in your browser</a></p>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n								</td>\r\n							</tr>\r\n						</tbody>\r\n					</table>\r\n					<table class=\"row row-2\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\">\r\n						<tbody>\r\n							<tr>\r\n								<td>\r\n									<table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #fff; border-radius: 0; color: #000000; background-image: url(\'https://www2.ephox.com/l/2202/2022-11-17/d9w8bt/2202/1668667587Mi0pogHt/header_13_cropped.png\'); background-repeat: no-repeat; background-size: cover; width: 600px; margin: 0 auto;\" width=\"600\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"column column-1\" width=\"58.333333333333336%\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\">\r\n													<table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:20px;padding-left:40px;padding-right:40px;padding-top:30px;width:100%;\">\r\n																<div class=\"alignment\" align=\"left\">\r\n																	<div style=\"max-width: 105px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y9t/1937013130/h/EVxaK3jU5NhAivszZvm6dcHsG3LT7TXgck7WrOFxn7g\" target=\"_blank\"><img src=\"https://www2.ephox.com/l/2202/2021-02-22/d55tdv/2202/16140490780zkI7GHy/logo_tiny__lock_secondary.png\" style=\"display: block; height: auto; border: 0; width: 100%;\" width=\"105\" alt=\"Tiny logo\" title=\"Tiny logo\" height=\"auto\"></a></div>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n													<div class=\"spacer_block block-2 mobile_hide\" style=\"height:20px;line-height:20px;font-size:1px;\">&#8202;</div>\r\n													<table class=\"heading_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:10px;text-align:center;width:100%;\">\r\n																<h1 style=\"margin: 0; color: #17224f; direction: ltr; font-family: \'Inter\',\'Arial\'; font-size: 20px; font-weight: 600; letter-spacing: normal; line-height: 1.5; text-align: left; margin-top: 0; margin-bottom: 0; mso-line-height-alt: 30px;\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">Your free trial of TinyMCE\'s advanced features has ended. What\'s next?</span></h1>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n													<div class=\"spacer_block block-4 mobile_hide\" style=\"height:50px;line-height:50px;font-size:1px;\">&#8202;</div>\r\n												</td>\r\n												<td class=\"column column-2\" width=\"41.666666666666664%\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\">\r\n													<div class=\"spacer_block block-1 mobile_hide\" style=\"height:60px;line-height:60px;font-size:1px;\">&#8202;</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n								</td>\r\n							</tr>\r\n						</tbody>\r\n					</table>\r\n					<table class=\"row row-3\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\">\r\n						<tbody>\r\n							<tr>\r\n								<td>\r\n									<table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #fff; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\">\r\n													<table class=\"paragraph_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-left:40px;padding-right:40px;padding-top:20px;\">\r\n																<div style=\"color:#202533;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:200;letter-spacing:0px;line-height:1.8;text-align:left;mso-line-height-alt:29px;\">\r\n																	<p style=\"margin: 0; margin-bottom: 16px;\">Thank you for test driving TinyMCE’s advanced features!</p>\r\n																	<p style=\"margin: 0; margin-bottom: 16px;\">If you don\'t want to lose access to the advanced features included in your trial, simply upgrade to our Essential or Professional Plan.&nbsp; These plans include additional monthly editor loads, ongoing access to our professional support team, and much more.</p>\r\n																	<p style=\"margin: 0;\"><strong>How do I upgrade my plan?</strong></p>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n													<table class=\"list_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word; color: #202533; direction: ltr; font-family: \'Inter\',\'Arial\'; font-size: 16px; font-weight: 200; letter-spacing: 0px; line-height: 1.8; text-align: left; mso-line-height-alt: 29px;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:10px;padding-left:60px;padding-right:40px;padding-top:10px;\">\r\n																<div style=\"margin-left:-20px\">\r\n																	<ol style=\"margin-top: 0; margin-bottom: 0; list-style-type: decimal;\">\r\n																		<li aria-level=\"1\" style=\"Margin: 0 0 0 0;\"><a href=\"https://pi.tiny.cloud/e/2202/-campaign-onboarding-free-html/dk6y9m/1937013130/h/EVxaK3jU5NhAivszZvm6dcHsG3LT7TXgck7WrOFxn7g\" style=\"text-decoration: underline; color: #335dff;\">Log into the Customer Portal</a></li>\r\n																		<li aria-level=\"1\" style=\"Margin: 0 0 0 0;\">Navigate to the “Upgrade your Plan”section</li>\r\n																		<li aria-level=\"1\" style=\"Margin: 0 0 0 0;\">Choose “Change Plan”</li>\r\n																		<li aria-level=\"1\" style=\"Margin: 0 0 0 0;\">Select your new plan and check out</li>\r\n																	</ol>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n													<table class=\"paragraph_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:40px;padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n																<div style=\"color:#202533;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:200;letter-spacing:0px;line-height:1.8;text-align:left;mso-line-height-alt:29px;\">\r\n																	<p style=\"margin: 0; margin-bottom: 16px;\"><strong>Want to continue using TinyMCE\'s Core Editing features?</strong></p>\r\n																	<p style=\"margin: 0; margin-bottom: 16px;\">You\'re all set! Just remember that our free plan is limited to 1,000 editor loads per month. If you feel you’ll regularly exceed that limit, we encourage you to upgrade to an Essential or Professional Plan.</p>\r\n																	<p style=\"margin: 0;\">BTW, if you start getting error messages about advanced features not working, <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y9q/1937013130/h/EVxaK3jU5NhAivszZvm6dcHsG3LT7TXgck7WrOFxn7g\" style=\"text-decoration: underline; color: #335dff;\">read the below ‘How-to’ guide about removing the notifications</a>.</p>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n								</td>\r\n							</tr>\r\n						</tbody>\r\n					</table>\r\n					<table class=\"row row-4\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\">\r\n						<tbody>\r\n							<tr>\r\n								<td>\r\n									<table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #0c132c; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\">\r\n													<div class=\"spacer_block block-1\" style=\"height:40px;line-height:40px;font-size:1px;\">&#8202;</div>\r\n													<table class=\"icons_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center; line-height: 0;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"vertical-align: middle; color: #000000; font-family: inherit; font-size: 14px; font-weight: 400; padding-left: 40px; padding-right: 40px; text-align: center;\">\r\n																<table class=\"icons-outer\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; display: inline-table;\">\r\n																	<tr>\r\n																		<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 10px; padding-right: 20px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y9x/1937013130/h/EVxaK3jU5NhAivszZvm6dcHsG3LT7TXgck7WrOFxn7g\" target=\"_self\" style=\"text-decoration: none;\"><img class=\"icon\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld41/2202/1724751073mZ9u0qBj/icons8_facebook_96.png\" alt=\"facebook\" height=\"auto\" width=\"32\" align=\"center\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\"></a></td>\r\n																		<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 20px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6yb1/1937013130/h/EVxaK3jU5NhAivszZvm6dcHsG3LT7TXgck7WrOFxn7g\" target=\"_self\" style=\"text-decoration: none;\"><img class=\"icon\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld54/2202/17247512213yTqKMau/Twitter_X_icon_white.png\" alt=\"twitter\" height=\"auto\" width=\"32\" align=\"center\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\"></a></td>\r\n																		<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 20px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6yb4/1937013130/h/EVxaK3jU5NhAivszZvm6dcHsG3LT7TXgck7WrOFxn7g\" target=\"_self\" style=\"text-decoration: none;\"><img class=\"icon\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld4m/2202/1724751160RDTHTZoS/icons8_linkedin_104.png\" alt=\"linkedin\" height=\"auto\" width=\"32\" align=\"center\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\"></a></td>\r\n																		<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 20px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6yb7/1937013130/h/EVxaK3jU5NhAivszZvm6dcHsG3LT7TXgck7WrOFxn7g\" target=\"_self\" style=\"text-decoration: none;\"><img class=\"icon\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld4x/2202/1724751181bzH3aYSZ/icons8_stack_overflow_100.png\" alt=\"stack overflow\" height=\"auto\" width=\"32\" align=\"center\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\"></a></td>\r\n																		<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 10px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6ybb/1937013130/h/EVxaK3jU5NhAivszZvm6dcHsG3LT7TXgck7WrOFxn7g\" target=\"_self\" style=\"text-decoration: none;\"><img class=\"icon\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld4j/2202/1724751125SZG76c9m/icons8_github_96.png\" alt=\"github\" height=\"auto\" width=\"32\" align=\"center\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\"></a></td>\r\n																	</tr>\r\n																</table>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n													<table class=\"paragraph_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:20px;padding-left:40px;padding-right:40px;padding-top:20px;\">\r\n																<div style=\"color:#ffffff;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:14px;font-weight:200;letter-spacing:0px;line-height:1.5;text-align:center;mso-line-height-alt:21px;\">\r\n																	<p style=\"margin: 0;\">This email was sent to rick@mavrix.one<br><br>Update your <a href=\"https://pi.tiny.cloud/emailPreference/epc/2202/ZjaNiHkObDJTapuaeTtdHUzY1-VF5I_WCS772lye6qg/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1937013130\" style=\"text-decoration: underline; color: #fff;\">email preferences</a> or <a href=\"https://pi.tiny.cloud/unsubscribe/u/2202/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1937013130\" style=\"text-decoration: underline; color: #fff;\">unsubscribe</a><br><br>© 2025 Tiny Technologies | All rights reserved<br>www.tiny.cloud | View our <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6ybf/1937013130/h/EVxaK3jU5NhAivszZvm6dcHsG3LT7TXgck7WrOFxn7g\" style=\"text-decoration: underline; color: #fff;\">privacy policy</a><br>2100 Geng Road, Palo Alto, CA 94303 USA</p>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n													<div class=\"spacer_block block-4\" style=\"height:40px;line-height:40px;font-size:1px;\">&#8202;</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n								</td>\r\n							</tr>\r\n						</tbody>\r\n					</table>\r\n				</td>\r\n			</tr>\r\n		</tbody>\r\n	</table><!-- End -->\r\n<img alt=\"\" src=\"https://pi.tiny.cloud/r/2202/1/1937013130/open/1\" /></body>\r\n\r\n</html>','\r\nEmail not displaying correctly? View it in your browser\r\n\r\nhttps://pi.tiny.cloud/webmail/2202/1937013130/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864​​​​​​​\r\n\r\nhttps://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dc7d65/1937013130/h/EVxaK3jU5NhAivszZvm6dcHsG3LT7TXgck7WrOFxn7g\r\n\r\nYour FREE trial of TinyMCE advanced features has ended. What\'s next?\r\n\r\nThank you for test driving TinyMCE’s advanced features!\r\n\r\nIf you don\'t want to lose access to the advanced features included in your trial, simply upgrade to our Essential or Professional Plan.  These plans include additional monthly editor loads, ongoing access to our professional support team, and much more.\r\n\r\nHow do I upgrade my plan?\r\n1. Log into the Customer Portal (https://pi.tiny.cloud/e/2202/-campaign-onboarding-free-html/dk6y9m/1937013130/h/EVxaK3jU5NhAivszZvm6dcHsG3LT7TXgck7WrOFxn7g)\r\n2. Navigate to the “Upgrade your Plan”section\r\n3. Choose “Change Plan”\r\n4. Select your new plan and check out\r\n\r\nWant to continue using TinyMCE\'s Core Editing features?\r\n\r\nYou\'re all set! Just remember that our free plan is limited to 1,000 editor loads per month. If you feel you’ll regularly exceed that limit, we encourage you to upgrade to an Essential or Professional Plan.\r\n\r\nBTW, if you start getting error messages about advanced features not working, read the below ‘How-to’ guide about removing the notifications (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6y9q/1937013130/h/EVxaK3jU5NhAivszZvm6dcHsG3LT7TXgck7WrOFxn7g) .\r\n\r\nhttps://pi.tiny.cloud/e/2202/jointiny-/dc7d6k/1937013130/h/EVxaK3jU5NhAivszZvm6dcHsG3LT7TXgck7WrOFxn7g\r\nhttps://pi.tiny.cloud/e/2202/jointiny/dc7d6n/1937013130/h/EVxaK3jU5NhAivszZvm6dcHsG3LT7TXgck7WrOFxn7g\r\nhttps://pi.tiny.cloud/e/2202/company-jointiny-/dc7d6r/1937013130/h/EVxaK3jU5NhAivszZvm6dcHsG3LT7TXgck7WrOFxn7g\r\nhttps://pi.tiny.cloud/e/2202/search-q-23tinymce/dc7d6v/1937013130/h/EVxaK3jU5NhAivszZvm6dcHsG3LT7TXgck7WrOFxn7g\r\nhttps://pi.tiny.cloud/e/2202/tinymce/dc7d6y/1937013130/h/EVxaK3jU5NhAivszZvm6dcHsG3LT7TXgck7WrOFxn7g\r\n\r\nThis email was sent to rick@mavrix.one\r\nUpdate your email preferences\r\nhttps://pi.tiny.cloud/emailPreference/epc/2202/ZjaNiHkObDJTapuaeTtdHUzY1-VF5I_WCS772lye6qg/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1937013130 or unsubscribe https://pi.tiny.cloud/unsubscribe/u/2202/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1937013130\r\n\r\n2025 Tiny Technologies | All rights reserved\r\nwww.tiny.cloud | View our privacy policy\r\nhttps://pi.tiny.cloud/e/2202/legal-privacy/dc7d72/1937013130/h/EVxaK3jU5NhAivszZvm6dcHsG3LT7TXgck7WrOFxn7g\r\n2100 Geng Road, Palo Alto, CA 94303 USA',0,0,0,0,0,0,'2025-12-10 13:05:16','2025-12-10 13:15:33','2025-12-10 13:15:33','2025-12-10 13:15:33',NULL,NULL,NULL),
(1005,4,' <DM8PR09MB7416CB3315730680EAA70C47D1A0A@DM8PR09MB7416.namprd09.prod.outlook.com>',NULL,NULL,'LBC FTZ ICRS/ERP','tchambliss@tampaport.com','Torrey Chambliss','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n</head>\r\n<body>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nTorrey Chambliss is inviting you to a scheduled Zoom meeting.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nTopic: LCB FTZ</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nTime: Dec 10, 2025 10:30 AM Eastern Time (US and Canada)</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nJoin Zoom Meeting</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nhttps://us06web.zoom.us/j/8993528687?pwd=Vzk0RC9GMlNJaGVZQVlYN2Y3WW51QT09&amp;omn=89364013860</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nMeeting ID: 899 352 8687</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nPasscode: 156624</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n---</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nOne tap mobile</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n+13052241968,,8993528687# US</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n+16469313860,,8993528687# US</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nJoin instructions</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nhttps://us06web.zoom.us/meetings/89364013860/invitations?signature=sX_LBuxoQkBKpnK029aShSN7IVy-VE9Q3DmYikY0m8c</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n<br>\r\n</div>\r\n***** Notice ***** The Tampa Port Authority d/b/a Port Tampa Bay is a public agency subject to Chapter 119, Florida Statutes, concerning public records. Electronic Mail (email) messages are covered under such laws and thus subject to disclosure. All email sent\r\n and received is captured by the Port Tampa Bay server and retained as a public record.\r\n</body>\r\n</html>','Torrey Chambliss is inviting you to a scheduled Zoom meeting.\r\n\r\nTopic: LCB FTZ\r\nTime: Dec 10, 2025 10:30 AM Eastern Time (US and Canada)\r\nJoin Zoom Meeting\r\nhttps://us06web.zoom.us/j/8993528687?pwd=Vzk0RC9GMlNJaGVZQVlYN2Y3WW51QT09&omn=89364013860\r\n\r\nMeeting ID: 899 352 8687\r\nPasscode: 156624\r\n\r\n---\r\n\r\nOne tap mobile\r\n+13052241968,,8993528687# US\r\n+16469313860,,8993528687# US\r\n\r\nJoin instructions\r\nhttps://us06web.zoom.us/meetings/89364013860/invitations?signature=sX_LBuxoQkBKpnK029aShSN7IVy-VE9Q3DmYikY0m8c\r\n\r\n\r\n***** Notice ***** The Tampa Port Authority d/b/a Port Tampa Bay is a public agency subject to Chapter 119, Florida Statutes, concerning public records. Electronic Mail (email) messages are covered under such laws and thus subject to disclosure. All email sent and received is captured by the Port Tampa Bay server and retained as a public record.',0,0,0,0,0,0,'2025-12-10 15:10:27','2025-12-10 16:18:26','2025-12-10 16:18:26','2025-12-10 16:18:26',NULL,NULL,NULL),
(1011,4,'<396061b873c5898be5833f90df2764d8@mavrix.one>',NULL,NULL,'Initial Security install information','tanner@mavrix.one','Tanner Hance','Good afternoon,\r\n\r\nNathan asked me to share the estimated costs associated with the \r\nupcoming security installs at the garage.\r\n\r\nAttached, you will find estimates for a scissor lift that will be needed \r\nfor cabling and camera installs, the cost of the security equipment \r\nthrough Ubiquiti, and the estimated cost of the cables that would be \r\nneeded.\r\n\r\nLet me know if you feel like anything is missing that needs to be added. \r\nThe projected shipping timeline is 6-8 days from the time we order. I am \r\nlooking for local vendors for cables to see if we can\'t get them at a \r\nreduced cost. Please let me know if you have any questions.\r\n\r\n\r\nV/r\r\n\r\nTanner Hance\r\n\r\nLithium Battery Company\r\n\r\nDirect: (919) 356-0862\r\n\r\ntanner@mavrix.ONE','Good afternoon,\r\n\r\nNathan asked me to share the estimated costs associated with the \r\nupcoming security installs at the garage.\r\n\r\nAttached, you will find estimates for a scissor lift that will be needed \r\nfor cabling and camera installs, the cost of the security equipment \r\nthrough Ubiquiti, and the estimated cost of the cables that would be \r\nneeded.\r\n\r\nLet me know if you feel like anything is missing that needs to be added. \r\nThe projected shipping timeline is 6-8 days from the time we order. I am \r\nlooking for local vendors for cables to see if we can\'t get them at a \r\nreduced cost. Please let me know if you have any questions.\r\n\r\n\r\nV/r\r\n\r\nTanner Hance\r\n\r\nLithium Battery Company\r\n\r\nDirect: (919) 356-0862\r\n\r\ntanner@mavrix.ONE',0,0,0,0,0,0,'2025-12-10 17:28:01','2025-12-10 17:30:35','2025-12-10 17:30:35','2025-12-10 17:30:35',NULL,NULL,NULL),
(1027,4,'<CA+n9mK7Cun4rXont+pysYrMjcCqbG8jpyFovu6BcYtD-VERFQw@mail.gmail.com>',NULL,NULL,'Fwd: Questions','sales@lithiumbatterycompany.com','Lithium Battery Company','<div dir=\"auto\">Interesting lead that came through today.   Nick can you follow up?</div><div dir=\"auto\"><br></div><div dir=\"auto\">Nathan</div><div dir=\"auto\"><br></div><div dir=\"auto\"><br></div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">Curtis Larsen</strong> <span dir=\"auto\">&lt;<a href=\"mailto:Larsen@avinc.com\">Larsen@avinc.com</a>&gt;</span><br>Date: Wed, Dec 10, 2025 at 12:12 PM<br>Subject: Questions<br>To: <a href=\"mailto:sales@lithiumbatterycompany.com\">sales@lithiumbatterycompany.com</a> &lt;<a href=\"mailto:sales@lithiumbatterycompany.com\">sales@lithiumbatterycompany.com</a>&gt;<br></div><br><br>\r\n\r\n\r\n\r\n\r\n\r\n<div lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"m_-2099099826847287164WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Hi Team,<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">I represent a company contracted by the Department of Defense to manufacture drones that perform a wide range of mission profiles. All of our systems utilize lithium-based battery solutions—primarily cylindrical\r\n cells, with some polymer formats as well. While I understand your team does not work with polymer cells, I wanted to reach out with a few questions regarding automation for cylindrical pack production.<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Could you provide guidance on the following?<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><u></u> <u></u></span></p>\r\n<ul style=\"margin-top:0in\" type=\"disc\">\r\n<li class=\"MsoNormal\"><span style=\"font-size:11.0pt\">What production quantities typically justify or drive the need for automation?<u></u><u></u></span></li><li class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Do battery packs need to be specifically designed or optimized for automated manufacturing?<u></u><u></u></span></li><li class=\"MsoNormal\"><span style=\"font-size:11.0pt\">If an existing pack design is not automation-ready, what does the evolution process look like to transition it to automated production?<u></u><u></u></span></li><li class=\"MsoNormal\"><span style=\"font-size:11.0pt\">What is the typical timeline for tearing down an existing line and setting up a new automated line?<u></u><u></u></span></li></ul>\r\n<p class=\"MsoNormal\" style=\"margin-left:.5in\"><span style=\"font-size:11.0pt\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Any insight you can share would be greatly appreciated as we evaluate our scaling options.<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\">Thank you,<u></u><u></u></span></p>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"320\" style=\"width:240.0pt;border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\" style=\"border:none;border-bottom:solid #161718 1.0pt;padding:0in 0in 9.0pt 0in\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:18.0pt;font-family:&quot;Blackadder ITC&quot;\">Curtis Larsen<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\">Electrical Engineer III<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\">Universal Battery Charger Chief Engineer<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:9.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#5e7185\">D\r\n</span></b><span style=\"font-size:9.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#2c7fce\">703.418.2828</span><span style=\"font-size:9.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#5e7185\">   <b>M\r\n</b></span><span style=\"font-size:9.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#2c7fce\">805.205.4976</span><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Arial&quot;,sans-serif\"><a href=\"mailto:larsen@avinc.com\" target=\"_blank\"><span style=\"color:#0563c1\">larsen@avinc.com</span></a></span><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;display:none\"><u></u> <u></u></span></p>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td><a href=\"https://www.google.com/maps/search/241+18th+Street+South+%0D%0A+Arlington,+VA+22202?entry=gmail&amp;source=g\">\r\n</a></td></tr></tbody><tbody>\r\n<tr>\r\n<td width=\"100\" style=\"width:75.0pt;padding:6.75pt 1.5pt 1.5pt 1.5pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"font-size:11.0pt\"><img border=\"0\" src=\"cid:ii_19b0baf35c81bff92041\" alt=\"AV logo\" style=\"max-width: 100%;\"><u></u><u></u></span></p>\r\n</td>\r\n<td style=\"padding:6.75pt 1.5pt 1.5pt 7.5pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#5e7185\"><a href=\"https://www.google.com/maps/search/241+18th+Street+South+%0D%0A+Arlington,+VA+22202?entry=gmail&amp;source=g\">241 18th Street South</a></span><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#5e7185\"><a href=\"https://www.google.com/maps/search/241+18th+Street+South+%0D%0A+Arlington,+VA+22202?entry=gmail&amp;source=g\">Arlington, VA 22202</a></span><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:9.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#5e7185\"><a href=\"https://avinc.com/\" target=\"_blank\"><span style=\"color:#5e7185\">www.avinc.com</span></a></span><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;display:none\"><u></u> <u></u></span></p>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"320\" style=\"width:240.0pt;border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\" style=\"padding:6.75pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:5.5pt;font-family:&quot;Arial&quot;,sans-serif;color:#5e7185\"><br>\r\n<b>CONFIDENTIAL INFORMATION  </b>This electronic message transmission contains information<br>\r\nfrom AeroVironment, Inc. and is confidential and/or proprietary. The information is intended only\r\n<br>\r\nfor use of the individual or entity named above. If you are not the intended recipient, be aware\r\n<br>\r\nthat any disclosure, copying, distribution or use of the contents of this message is prohibited.<br>\r\nIf you have received this electronic transmission in error, please send a reply notification and/or<br>\r\nnotify us by telephone (1.703.418.2828) immediately and delete this message from your computer.</span><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n</div>\r\n</div>\r\n\r\n</div></div>','Interesting lead that came through today.   Nick can you follow up?\r\n\r\nNathan\r\n\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: Curtis Larsen <Larsen@avinc.com>\r\nDate: Wed, Dec 10, 2025 at 12:12 PM\r\nSubject: Questions\r\nTo: sales@lithiumbatterycompany.com <sales@lithiumbatterycompany.com>\r\n\r\n\r\nHi Team,\r\n\r\n\r\n\r\nI represent a company contracted by the Department of Defense to\r\nmanufacture drones that perform a wide range of mission profiles. All of\r\nour systems utilize lithium-based battery solutions—primarily cylindrical\r\ncells, with some polymer formats as well. While I understand your team does\r\nnot work with polymer cells, I wanted to reach out with a few questions\r\nregarding automation for cylindrical pack production.\r\n\r\nCould you provide guidance on the following?\r\n\r\n\r\n\r\n   - What production quantities typically justify or drive the need for\r\n   automation?\r\n   - Do battery packs need to be specifically designed or optimized for\r\n   automated manufacturing?\r\n   - If an existing pack design is not automation-ready, what does the\r\n   evolution process look like to transition it to automated production?\r\n   - What is the typical timeline for tearing down an existing line and\r\n   setting up a new automated line?\r\n\r\n\r\n\r\nAny insight you can share would be greatly appreciated as we evaluate our\r\nscaling options.\r\n\r\n\r\n\r\n\r\n\r\nThank you,\r\n\r\nCurtis Larsen\r\n\r\nElectrical Engineer III\r\n\r\nUniversal Battery Charger Chief Engineer\r\n\r\n*D *703.418.2828   *M *805.205.4976\r\n\r\nlarsen@avinc.com\r\n\r\n\r\n<https://www.google.com/maps/search/241+18th+Street+South+%0D%0A+Arlington,+VA+22202?entry=gmail&source=g>\r\n\r\n[image: AV logo]\r\n\r\n241 18th Street South\r\n<https://www.google.com/maps/search/241+18th+Street+South+%0D%0A+Arlington,+VA+22202?entry=gmail&source=g>\r\n\r\nArlington, VA 22202\r\n<https://www.google.com/maps/search/241+18th+Street+South+%0D%0A+Arlington,+VA+22202?entry=gmail&source=g>\r\n\r\nwww.avinc.com <https://avinc.com/>\r\n\r\n\r\n\r\n\r\n*CONFIDENTIAL INFORMATION  *This electronic message transmission contains\r\ninformation\r\nfrom AeroVironment, Inc. and is confidential and/or proprietary. The\r\ninformation is intended only\r\nfor use of the individual or entity named above. If you are not the\r\nintended recipient, be aware\r\nthat any disclosure, copying, distribution or use of the contents of this\r\nmessage is prohibited.\r\nIf you have received this electronic transmission in error, please send a\r\nreply notification and/or\r\nnotify us by telephone (1.703.418.2828) immediately and delete this message\r\nfrom your computer.',0,0,0,0,0,0,'2025-12-11 04:35:45','2025-12-12 00:46:10','2025-12-12 00:46:10','2025-12-12 00:46:10',NULL,NULL,NULL),
(1028,4,'<20251211142042.3fcb45e0c33b69bb@emails.leatherman.com>',NULL,NULL,'Built to Gift. Priced to Gift More.','Leatherman@emails.leatherman.com','Leatherman','<!DOCTYPE html>\r\n<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\"><head><title>Built to Gift. Priced to Gift More. </title><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><!--[if mso]>\r\n<xml><w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\"><w:DontUseAdvancedTypographyReadingMail/></w:WordDocument>\r\n<o:OfficeDocumentSettings><o:PixelsPerInch>96</o:PixelsPerInch><o:AllowPNG/></o:OfficeDocumentSettings></xml>\r\n<![endif]--><style>\r\n*{box-sizing:border-box}body{margin:0;padding:0}a[x-apple-data-detectors]{color:inherit!important;text-decoration:inherit!important}#MessageViewBody a{color:inherit;text-decoration:none}p{line-height:inherit}.desktop_hide,.desktop_hide table{mso-hide:all;display:none;max-height:0;overflow:hidden}.image_block img+div{display:none}sub,sup{font-size:75%;line-height:0} @media (max-width:620px){.image_block div.fullWidth{max-width:100%!important}.mobile_hide{display:none}.row-content{width:100%!important}.stack .column{width:100%;display:block}.mobile_hide{min-height:0;max-height:0;max-width:0;overflow:hidden;font-size:0}.desktop_hide,.desktop_hide table{display:table!important;max-height:none!important}.row-3 .column-1 .block-2.paragraph_block td.pad>div{font-size:14px!important}.row-3 .column-1 .block-2.paragraph_block td.pad{padding:15px 40px 0!important}.row-3 .column-1 .block-1.heading_block td.pad,.row-9 .column-1{padding:0!important}.row-3 .column-1 .block-1.heading_block h1{font-size:20px!important}.row-3 .column-1 .block-3.button_block td.pad{padding:10px 10px 25px!important}.row-3 .column-1 .block-3.button_block span,.row-6 .column-1 .block-1.button_block span{font-size:11px!important;line-height:22px!important}.row-4 .column-1 .block-1.heading_block h1{font-size:21px!important}.row-6 .column-1 .block-1.button_block td.pad{padding:10px!important}.row-7 .column-1 .block-1.image_block td.pad{padding:15px!important}}\r\n</style><!--[if mso ]><style>sup, sub { font-size: 100% !important; } sup { mso-text-raise:10% } sub { mso-text-raise:-10% }</style> <![endif]--><!--[if true]><style>.forceBgColor{background-color: white !important}</style><![endif]--></head><body class=\"body forceBgColor\" style=\"background-color:transparent;margin:0;padding:0;-webkit-text-size-adjust:none;text-size-adjust:none\"><span style=\"color: transparent; display: none !important; font-size: 0px; line-height: 0px; height: 0; max-height: 0; max-width: 0; opacity: 0; overflow: hidden; mso-hide: all; visibility: hidden; width: 0;\">Get 20% Off Three Select Gifts.</span><div style=\"display: none; max-height: 0px; overflow: hidden;\">&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&nbsp; </div><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/CgxoqE1BKlemu9sZFygSIJpdLcENSMk0_jv-Do69pFybx8xrihTbAkDrFxq_qmmYMV0Ze860TtpBagxoR0_g78-WAAdi9-TIAQGAAgM.N6rj0zQiHn9leA/click\" xnpe-attr=\"notextnorew\"><img width=\"1\" height=\"1\" alt=\"\" src=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/CgxoqE1BKlemu9sZFygSIJpdLcENSMk0_jv-Do69pFybx8xrihTbAkDrFxq_qmmYMV0Ze860TtpBagxoR0_g78-WAAdi9-SAAgM.87tm5xod8q0FbA/open\" style=\"display: none;\"></a><table class=\"nl-container\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:transparent\"><tbody><tr><td><table class=\"row row-1\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:600px\">\r\n<a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUpgVq3uQ1-OkyT_rf3x9e5fEzD5-JrtL5DaTw2txqf2rMmdISWeUlBQUW-nrl5eX6-WkJpZkpBblJubpJefn6hvGSlaf2-J3y9FKgIuptFiIyyknPz-3KDUxOcNKHiiSLCRpZGpoZGgc71xalJlfWhwfnpmXDtQdHxpsxQ1UkCvEmpqbmJkTFaqvn5SfUqlfkpiUk6pfAmEX6ZekQESiDWMxBbGJgNkpmWVgnJhkZZmSmJRomWpuYZFiaJiWZlQDti4-M8WqKDM52yE3sawos0IvPy-1xjzZ2Cg11SglySjV2MwwKTmLJ8Pd_8H789MY2JO-P2lgYgYAbjZsKg.5yaUkhFkHBzwhA/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/4d6a115a-c10b-4a13-855f-b386b90f9948.jpeg\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt=\"Shop multi-tools and knives at Leatherman.com\" title=\"Shop multi-tools and knives at Leatherman.com\" height=\"auto\"></a></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-2\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%;padding-right:0;padding-left:0\"><div class=\"alignment\" align=\"center\"><div class=\"fullWidth\" style=\"max-width:600px\">\r\n<a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUpgVq3uQ1-OkyT_rf3x9e5fEzD5-JrtL5DaTw2txqf2rMmdIaWeUlBQUW-nrl5eX6-WkJpZkpBblJubpJefn6hcU5aeUJpcU65dn5qUDBQ1jJavPbfG75WglwMVUWizE5ZSTn59blJqYnGElDxRJFpI0MjU0MjSOdy4tyswvLY4Ph2iMDw224gYqyBViTc1NzMyJCtXXT8pPqdQvSUzKSdUvgbCL9EtSICLRRrGYgthEwOyUzDIwTkyyskxJTEq0TDW3sEgxNExLM6oBWxefmWJVlJmc7ZCbWFaUWaGXn5daY55sbJSaapSSZJRqbGaYlJzFk-Hu_-D9-WkM7EnfnzQwMQMAcpFyzw.uN8LrYr-Sul1QA/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/Wingman%20Background%20%281%29.png\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt=\"WINGMAN&#174; ON DECK.\" title=\"WINGMAN&#174; ON DECK.\" height=\"auto\"></a></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-3\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#f7f7f2;background-size:auto;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:15px;padding-top:25px;vertical-align:top\"><table class=\"heading_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"20\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><h1 style=\"margin:0;color:#393c43;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:30px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:36px\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">WINGMAN<sup>&#174;</sup> ON DECK.</span></h1></td></tr></table><table class=\"paragraph_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-left:50px;padding-right:50px\"><div style=\"color:#393c43;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:18px;font-weight:400;letter-spacing:0;line-height:1.2;text-align:center;mso-line-height-alt:22px\"><p style=\"margin:0;margin-bottom:0\">\r\n<strong>Thinking about WINGMAN&#174;?</strong> You&#8217;re not the only one. It&#8217;s a go-to tool for a reason&#8212;compact, reliable, and always down for the daily grind.</p><p style=\"margin:0;margin-bottom:0\">&#160;</p><p style=\"margin:0;margin-bottom:0\"><strong>It&#8217;s also 20% off right now&#8212;alongside REV&#174; and Rebar&#174;.</strong> All three are quick wins for holiday gifting: useful, trusted, and ready to ship.</p><p style=\"margin:0;margin-bottom:0\">&#160;</p><p style=\"margin:0\">\r\nBut don&#8217;t wait. Holiday standard shipping ends tomorrow.&#160;</p></div></td></tr></table><table class=\"button_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"35\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUpgVq3uQ1-OkyT_rf3x9e5fEzD5-JrtL5DaTw2txqf2rMmdIaWeUlBQUW-nrl5eX6-WkJpZkpBblJubpJefn6ifn5-SkJpdk5ucV6xcn5qQaxkpWn9vid8vRSoCLqbRYiMspJz8_tyg1MTnDSh4okiwkaWRqaGRoHO9cWpSZX1ocH56Zlw40LT402IobqCBXiDU1NzEzJypEXz8pP6VSvyQxKSdVvwTCLtIvSYGIRBvHYgriUAbmpmSW6ScmWVmmJCYlWqaaW1ikGBqmpRnVgG2Lz0yxKspMznbITSwryqzQy89LrTFPNjZKTTVKSTJKNTYzTErO4slw93_w_vw0Bvak708amJgB0Y5yJw.OZsyXOUDOLgdPg/click\" target=\"_blank\" style=\"color:#393c43;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/EiCaXS3BDUjJNP47_g6OvaRcm8fMa4oU2wJA6xcav6ppmBoraHR0cHM6Ly93d3cubGVhdGhlcm1hbi5jb20vY29sbGVjdGlvbnMvc2FsZTFdGXvOtE7aQToQCgJ1cxIKQmxvb21yZWFjaDofCgJ1YxIZMjUxMjEzX0N1cmlvdXNfV2luZ21hbl9VUzoLCgJ1bRIFZW1haWxiOjlkYWJhOWU3ODhkMTFmZjJ8ZW1haWxfaWQ6cmlja0BtYXZyaXgub25lfDdjMzJlZTJkYjJlMzYxYmNqDGhHT-Dvz5YAB2L35IACAw.jUl5tDAV4u8IeQ/click\"  style=\"height:42px;width:148px;v-text-anchor:middle;\" arcsize=\"0%\" fill=\"false\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"3px\" color=\"#393c43\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#393c43;font-family:sans-serif;font-size:16px\">\r\n<![endif]-->\r\n<span class=\"button\" style=\"background-color: transparent; mso-shading: transparent; border-bottom: 3px solid #393c43; border-left: 3px solid #393c43; border-radius: 0px; border-right: 3px solid #393c43; border-top: 3px solid #393c43; color: #393c43; display: inline-block; font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size: 16px; font-weight: 700; mso-border-alt: none; padding-bottom: 5px; padding-top: 5px; padding-left: 10px; padding-right: 10px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 32px;\">SHOP THE SALE</span></span>\r\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-4\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#f7f7f2;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:top\"><table class=\"heading_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"text-align:center;width:100%\"><h1 style=\"margin:0;color:#393c43;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:30px;font-weight:400;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:36px\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">&#8212; &#160;<strong>SEE WHAT&#8217;S INSIDE</strong> &#8212;</span></h1></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-5\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#f7f7f2;background-size:auto;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"25\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\"><div class=\"fullWidth\" style=\"max-width:550px\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUpgVq3uQ1-OkyT_rf3x9e5fEzD5-JrtL5DaTw2txqf2rMmdIaWeUlBQUW-nrl5eX6-WkJpZkpBblJubpJefn6hcU5aeUJpcU65dn5qUDBQ1jJavPbfG75WglwMVUWizE5ZSTn59blJqYnGElDxRJFpI0MjU0MjSOdy4tyswvLY4Ph2iMDw224gYqyBViTc1NzMyJCtXXT8pPqdQvSUzKSdUvgbCL9EtSICLRprGYgthEwOyUzDIwTkyyskxJTEq0TDW3sEgxNExLM6oBWxefmWJVlJmc7ZCbWFaUWaGXn5daY55sbJSaapSSZJRqbGaYlJzFk-Hu_-D9-WkM7EnfnzQwMQMAdBpy0g.9jA2_62DwFa3gQ/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/email-20off-rev-rebar-wingman-05.jpg\" style=\"display:block;height:auto;border:0;width:100%\" width=\"550\" alt=\"Shop Wingman at Leatherman.com\" title=\"Shop Wingman at Leatherman.com\" height=\"auto\"></a></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-6\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#f7f7f2;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-top:10px;vertical-align:top\"><table class=\"button_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"20\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUpgVq3uQ1-OkyT_rf3x9e5fEzD5-JrtL5DaTw2txqf2rMmdIaWeUlBQUW-nrl5eX6-WkJpZkpBblJubpJefn6hcU5aeUJpcU65dn5qUDBQ1jJavPbfG75WglwMVUWizE5ZSTn59blJqYnGElDxRJFpI0MjU0MjSOdy4tyswvLY4Ph2iMDw224gYqyBViTc1NzMyJCtTXT8pPqdQvSUzKSdUvgbCL9EtSICLRZrGYgthEwOyUzDL9xCQry5TEpETLVHMLixRDw7Q0oxqwVfGZKVZFmcnZDrmJZUWZFXr5eak15snGRqmpRilJRqnGZoZJyVk8Ge7-D96fn8bAnvT9SQMTMwCo8XFd.pbztBpK8YPGnww/click\" target=\"_blank\" style=\"color:#393c43;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/EiCaXS3BDUjJNP47_g6OvaRcm8fMa4oU2wJA6xcav6ppmBoraHR0cHM6Ly93d3cubGVhdGhlcm1hbi5jb20vcHJvZHVjdHMvd2luZ21hbjFdGXvOtE7aQToQCgJ1cxIKQmxvb21yZWFjaDofCgJ1YxIZMjUxMjEzX0N1cmlvdXNfV2luZ21hbl9VUzoLCgJ1bRIFZW1haWxiOjlkYWJhOWU3ODhkMTFmZjJ8ZW1haWxfaWQ6cmlja0BtYXZyaXgub25lfDdjMzJlZTJkYjJlMzYxYmNqDGhHT-Dvz5YAB2L35IACAw.kOxwM-WXJ5DFFw/click\"  style=\"height:42px;width:149px;v-text-anchor:middle;\" arcsize=\"0%\" fill=\"false\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"3px\" color=\"#393c43\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#393c43;font-family:sans-serif;font-size:16px\">\r\n<![endif]-->\r\n<span class=\"button\" style=\"background-color: transparent; mso-shading: transparent; border-bottom: 3px solid #393c43; border-left: 3px solid #393c43; border-radius: 0px; border-right: 3px solid #393c43; border-top: 3px solid #393c43; color: #393c43; display: inline-block; font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size: 16px; font-weight: 700; mso-border-alt: none; padding-bottom: 5px; padding-top: 5px; padding-left: 10px; padding-right: 10px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 32px;\">SHOP WINGMAN</span></span>\r\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-7\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#f7f7f2;background-size:auto;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"30\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\"><div class=\"fullWidth\" style=\"max-width:540px\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUpgVq3uQ1-OkyT_rf3x9e5fEzD5-JrtL5DaTw2txqf2rMmdISWeUlBQUW-nrl5eX6-WkJpZkpBblJubpJefn6hvGSlaf2-J3y9FKgIuptFiIyyknPz-3KDUxOcNKHiiSLCRpZGpoZGgc71xalJlfWhwfnpmXDtQdHxpsxQ1UkCvEmpqbmJkTFaqvn5SfUqlfkpiUk6pfAmEX6ZekQESizWMxBbGJgNkpmWVgnJhkZZmSmJRomWpuYZFiaJiWZlQDti4-M8WqKDM52yE3sawos0IvPy-1xjzZ2Cg11SglySjV2MwwKTmLJ8Pd_8H789MY2JO-P2lgYgYAcUhsMA.G0k9D1P8O6X9dw/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/Gradient%20Last%20Call%282%29.png\" style=\"display:block;height:auto;border:0;width:100%\" width=\"540\" alt=\"Last Call For Standard Shipping\" title=\"Last Call For Standard Shipping\" height=\"auto\"></a></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-8\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#393c43;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"html_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div style=\"font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;text-align:center\" align=\"center\"><table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#393c43\" align=\"center\" width=\"100%\" style=\"width: 100%; padding: 10px 0px;\"><tbody><tr><td align=\"center\">\r\n\r\n        <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\"><tbody><tr align=\"center\"><td colspan=\"5\"></td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zj1IAzEAhmGpiFB_kCKIXRRcvcbkeu31pFB10EkHEcFajuSStvEuF8mlf9jB2cFRRFcnZ1cRJxFEd10c3Bwc3YqlHTqo28fDN7yJ-YuScT-x8ZjuLHcmT2-v9i8fnvyT6bdY4XMmeXfNz5P1qtaHkQNAo9FI8TDSuKKwSHlSgIBhXWVK4FBLGUQLrohoKxS-dqkMpdYKe35-aXHAAQ99TvMYImJj4hlZyIiRNlnGyEGKDELKmKWhlbUsDEuzR883m68rzlQ8VosS8dVASqEY9qrOXFe8xCyyIIKmu1ZTXNYid5eHlW6Ku7PtjHUPIjHCBObBXhMAImkLaEwCBnR_K6BpX4p26Tf-Jb1Nef3_x0CKqAQwcXIUE5xjWdumEJbLqN0rcjl1FPf8gsB1xZspGbJ21jMRY4gSxMwMJN7BeHV96_3r5WxolHx_HMeGfwBvuZly.8NPR-xAta0hmow/click\" data-msdyn-tracking-id=\"060e7af814e081672338229931\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b1b88c4-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"Instagram\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUpgVq3uQ1-OkyT_rf3x9e5fEzD5-JrtL5DaTw2txqf2rMmdIxWWUlBQUW-nrl5eX65VkZpfkZ-sl5-fqO-SkJpZkpBblJubFl-Tn5xQrx-cWp1Tm5WaXxOdk5mVnptiaGCcbpySnpeoaGJik6JokGyfrWhpbJuqaGpimpZmlpgJRmmGsZPW5LX63HK0EuJhKi4W4nHLy83OLUhOTM6zkgSLJQpJGpoZGhsbxzqVFmfmlxfHhmXnpIEtDg624gQpyhVhTcxMzc6Iq9PWT8lMq9UsSk3JS9Usg7CL9khSISLRFLKYgNhEwOyWzDLcKhEi0cax-YpKVZUpiUqJlqrmFRYqhYVqaUQ3YRfGZKVZFmcnZDrmJZUWZFXr5eak15snGRqmpRilJRqnGZoZJyVk8Ge7-D96fn8bAnvT9SQMTMwDfVJAI.JTYPJXZHeouU6Q/click\" data-msdyn-tracking-id=\"55a2adb6bbc371672338239108\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b1dd76e-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"TikTok\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zjtIw0AAxnGpiFAfSBDELgquptdc0iSNFKoOOogOIoK1hHvFnGlyml5f2MHZwVFEVydnVxEnEUR3XRzcHBzdiqUdOqjbx49v-CuzFyX1fmz10WgvtMdPb692Lx-egpPJt0Thcyp1d83PU4e-lAcVB4B6vZ72EGFYiCBNRAjWGJI-i0MUgTk3rNBmFAbSpSISUsaIBPnMfJ_LPAo4zesEmhTqTDUszVINw7PVXNYkKjIyZsa0cghCTytNHz3frL8uOhPJRLWiJJfKQoQxQ8R3ZjpClGmY1aCmu8vVmItqxd3m0V4nw93adEY6h1AZYiHi5Z0GAFjQJpAIlxmQvR0DSXtStEu_8S_pbspr_z_6UjRKAGEnRxFGOWbZNtU0z4OtbpHLqRNzEhRCVIt5Iy0i1rKIDhmDFEOmmxom-6P-ysb718vZwDD-_jhODP4AuBiViA._BvWsBOCm-IX_A/click\" data-msdyn-tracking-id=\"1c347b64588db1672338250130\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b140b4e-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"Facebook\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zjtIw0AAxnGpiFAfSBDELgquptdc2iSNFKoOOvgYRARrCJfcxZx5nCSXtsEOzg6OIro6ObuKOIkguuvi4Obg6FYs7dBB3T5-fMNfmL0wxPux1cdie6E9fnp7tXf58OSdTL5lqp9Tubtrep5LXc4PYx2ARqORT1nCE4vkbRaAJCYRWCOIuyQKULhOMEVzZhDjNAw8bmIWMs4jZHuVwnyffRp6FFccTcYKJgVRRY4jFlVYEsuyVBRxwYaapkJVURzJmD56vtl4XdQnspkkFrJLPmNBRJDt6jMdsYVpWJKgJJvLSURZEps7NNzvpJjbW_pI5xAIQyRA1N9tAmAxnAKOLJ8A3tsR4LgnNc34jX9Jd2Na___Rl1rJAMjSyxhZqExUTcOS5Diw1S0yKdYjanvVANUj2syzkLRUW4aEQGxBIiuSZR-Muiub718vZwPD1vfHcWbwBwBhmXE.rIRVUNRGLYMoAg/click\" data-msdyn-tracking-id=\"05f4617e605a71672338263640\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b1ff6c0-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"YouTube\"></a>\r\n              </td>\r\n\r\n              <td colspan=\"6\"></td>\r\n            </tr></tbody></table></td>\r\n    </tr></tbody></table></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-9\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;vertical-align:top\"><table class=\"html_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div style=\"font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;text-align:center\" align=\"center\"><div data-section=\"true\" class=\"footer-container\" style=\"font-family: Arial, Verdana, sans-serif; color: #FFFFFF; background-color: #393c43; margin: 0; border-radius: 0;\" data-protected=\"false\">\r\n\r\n  <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse; background-color: #393c43;\"><tr><td align=\"center\" style=\"padding: 10px 0; text-align: center;\">\r\n\r\n        <div style=\"display: inline-block; text-align: center;\">\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzjtIw1AUBmCtiOALKYK0i4KryW2StnlIoeqgkw4iglrCfdVck5tbktvWYgcHJwdHEV2dnF1FnEQQ3XVxcHNwdCuGdlDQ4cB_Ps6BPz1zXlHuxlYe8p35zvjJzeXOxf2jfzz5mip_TGVvr9hZ9qjfk7IWOwA0m001oFB6NOIwVLHgoCYChhmNQS1iDYhbShdaqid5MOvymLRC7kuXiFBIGUHsl3JzPxyw0GekZOVQoUjyVEEFs6jkLawrtmHklCKqmjbNGSa0sVbJHDxdr74sOBPDqXqcHl4MhOARhdhzphPB6Yxe0HTNcJfqERP12N1k4W5S091Yd0aSA54epByyYMsHAAnSAhKigALZyxGQpCfbduUv_ifdTFijO71XrfKLYbIixyYQQZualkU0rVrV290SLiNOxLBf5rARsX1VhLRtYkOnVCdIp0ZRQ3hv1Ftee_t8Pu0bQl_vh6mBb4ChmKk.JpKAyT8o0AQb1w/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #FFFFFF; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Privacy Policy</u></strong>\r\n          </a>\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUpgVq3uQ1-OkyT_rf3x9e5fEzD5-JrtL5DaTw2txqf2rMmdI7WPMKCkpKLbS1y8tNtZNTsnTS81L10vKyc_PLUpNTM7QS87P1c9JTSzJSC3KTczTLcnPz9EtKMpPKU0uyczP00_Vd06vyC90NXTyzknNLbUsjnKrTA_29CpI8Ul29Qv2zTaIzyrTdck3syxwq0yqsKgoyswISXLMdilyqyiML8zNjfQNM4hKtTAzCCkpcEpOryjwL_E1zQgKdIyM9K2It7DQy7Qo8AszqwzLLAorMEvXT87PK07NK7HPScxLt03NM4yVrD63xe-Wo5UAF1NpsRCXE9zpVvJAkWQhSSNTQyND43jn0qLM_NLi-PDMvHSgT-JDg624gQpyhVhTcxMzc6Ky9fWT8lMq9UsSk3JS9Usg7CL9khSISLRlLKYgNhEwOyWzDIwhWg1jkYQTo41ik6wsUxKTEi1TzS0sUgwN09KMasCOiM9MsSrKTM52yE0sK8qs0MvPS60xTzY2Sk01SkkySjU2M0xKzuLJcPd_8P78NAb2pO9PGpiYAWZ5rqQ.CMquh2tfNOb6hg/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #FFFFFF; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Manage Preferences</u></strong>\r\n          </a>\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUpgVq3uQ1-OkyT_rf3x9e5fEzD5-JrtL5DaTw2txqf2rMmdI7WPMKCkpKLbS1y8tNtZNTsnTS81L10vKyc_PLUpNTM7QS87P1c9JTSzJSC3KTczTLcnPz9EtKMpPKU0uyczP00_Vd06vyC90NXTyzknNLbUsjnKrTA_29CpI8Ul29Qv2zTaIzyrTdck3syxwq0yqsKgoyswISXLMdilyqyiML8zNjfQNM4hKtTAzCCkpcEpOryjwL_E1zQgKdIyM9K2It7DQy7Qo8AszqwzLLAorMEvXT87PK07NK7HPScxLt03NM4yVrD63xe-Wo5UAF1NpsRCXE9zpVvJAkWQhSSNTQyND43jn0qLM_NLi-PDMvHSgT-JDg624gQpyhVhTcxMzc6Ky9fWT8lMq9UsSk3JS9Usg7CL9khSISLRlLKYgNhEwOyWzDIwhWg1jkYQTo41jk6wsUxKTEi1TzS0sUgwN09KMasCOiM9MsSrKTM52yE0sK8qs0MvPS60xTzY2Sk01SkkySjU2M0xKzuLJcPd_8P78NAb2pO9PGpiYAWbIrqU.QmQSvgkHKjnglg/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #FFFFFF; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Unsubscribe</u></strong>\r\n          </a>\r\n\r\n        </div>\r\n\r\n      </td>\r\n    </tr></table><table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse; background-color: #393c43;\"><tr><td align=\"center\" style=\"padding: 0; text-align: center;\">\r\n        <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse;\"><tr><td align=\"center\" style=\"text-align: center; padding: 10px 30px;\">\r\n              <div style=\"font-size: 11px; color: #FFFFFF; text-align: center;\">\r\n\r\n                <p>This email was sent to Rick@mavrix.one</p>\r\n\r\n                <p>by <strong>Leatherman Tool Group, Inc.</strong></p>\r\n\r\n                <p>12106 NE Ainsworth Circle <br>Portland, Oregon 97220</p>\r\n\r\n                <p style=\"display: none;\">Preference Center (PLACEHOLDER)</p>\r\n\r\n                <p style=\"line-height: 1.25;\">&#169; 2025 Leatherman Tool Group, Inc. All Rights Reserved.</p>\r\n                <br>\r\n                Standard shipping cutoff applies to non-engraved tools only. Custom engraving requires additional processing time. Delivery by 12/25/2025 is not guaranteed and may vary by location or carrier delays.\r\n              </div>\r\n            </td>\r\n          </tr></table></td>\r\n    </tr></table></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><!-- End --></body></html>','[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUpgVq3uQ1-OkyT_rf3x9e5fEzD5-JrtL5DaTw2txqf2rMmdISWeUlBQUW-nrl5eX6-WkJpZkpBblJubpJefn6hvGSlaf2-J3y9FKgIuptFiIyyknPz-3KDUxOcNKHiiSLCRpZGpoZGgc71xalJlfWhwfnpmXDtQdHxpsxQ1UkCvEmpqbmJkTFaqvn5SfUqlfkpiUk6pfAmEX6ZekQESiDWMxBbGJgNkpmWVgnJhkZZmSmJRomWpuYZFiaJiWZlQDti4-M8WqKDM52yE3sawos0IvPy-1xjzZ2Cg11SglySjV2MwwKTmLJ8Pd_8H789MY2JO-P2lgYgYAbjZsKg.5yaUkhFkHBzwhA/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUpgVq3uQ1-OkyT_rf3x9e5fEzD5-JrtL5DaTw2txqf2rMmdIaWeUlBQUW-nrl5eX6-WkJpZkpBblJubpJefn6hcU5aeUJpcU65dn5qUDBQ1jJavPbfG75WglwMVUWizE5ZSTn59blJqYnGElDxRJFpI0MjU0MjSOdy4tyswvLY4Ph2iMDw224gYqyBViTc1NzMyJCtXXT8pPqdQvSUzKSdUvgbCL9EtSICLRRrGYgthEwOyUzDIwTkyyskxJTEq0TDW3sEgxNExLM6oBWxefmWJVlJmc7ZCbWFaUWaGXn5daY55sbJSaapSSZJRqbGaYlJzFk-Hu_-D9-WkM7EnfnzQwMQMAcpFyzw.uN8LrYr-Sul1QA/click]\r\n\r\n# WINGMAN® ON DECK.\r\n\r\n*Thinking about WINGMAN®?* You’re not the only one. It’s a go-to tool for a reason—compact, reliable, and always down for the daily grind.\r\n\r\n*It’s also 20% off right now—alongside REV® and Rebar®.* All three are quick wins for holiday gifting: useful, trusted, and ready to ship.\r\n\r\nBut don’t wait. Holiday standard shipping ends tomorrow. \r\n\r\nSHOP THE SALE [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUpgVq3uQ1-OkyT_rf3x9e5fEzD5-JrtL5DaTw2txqf2rMmdIaWeUlBQUW-nrl5eX6-WkJpZkpBblJubpJefn6ifn5-SkJpdk5ucV6xcn5qQaxkpWn9vid8vRSoCLqbRYiMspJz8_tyg1MTnDSh4okiwkaWRqaGRoHO9cWpSZX1ocH56Zlw40LT402IobqCBXiDU1NzEzJypEXz8pP6VSvyQxKSdVvwTCLtIvSYGIRBvHYgriUAbmpmSW6ScmWVmmJCYlWqaaW1ikGBqmpRnVgG2Lz0yxKspMznbITSwryqzQy89LrTFPNjZKTTVKSTJKNTYzTErO4slw93_w_vw0Bvak708amJgB0Y5yJw.OZsyXOUDOLgdPg/click]\r\n\r\n# — *SEE WHAT’S INSIDE* —\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUpgVq3uQ1-OkyT_rf3x9e5fEzD5-JrtL5DaTw2txqf2rMmdIaWeUlBQUW-nrl5eX6-WkJpZkpBblJubpJefn6hcU5aeUJpcU65dn5qUDBQ1jJavPbfG75WglwMVUWizE5ZSTn59blJqYnGElDxRJFpI0MjU0MjSOdy4tyswvLY4Ph2iMDw224gYqyBViTc1NzMyJCtXXT8pPqdQvSUzKSdUvgbCL9EtSICLRprGYgthEwOyUzDIwTkyyskxJTEq0TDW3sEgxNExLM6oBWxefmWJVlJmc7ZCbWFaUWaGXn5daY55sbJSaapSSZJRqbGaYlJzFk-Hu_-D9-WkM7EnfnzQwMQMAdBpy0g.9jA2_62DwFa3gQ/click]\r\n\r\nSHOP WINGMAN [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUpgVq3uQ1-OkyT_rf3x9e5fEzD5-JrtL5DaTw2txqf2rMmdIaWeUlBQUW-nrl5eX6-WkJpZkpBblJubpJefn6hcU5aeUJpcU65dn5qUDBQ1jJavPbfG75WglwMVUWizE5ZSTn59blJqYnGElDxRJFpI0MjU0MjSOdy4tyswvLY4Ph2iMDw224gYqyBViTc1NzMyJCtTXT8pPqdQvSUzKSdUvgbCL9EtSICLRZrGYgthEwOyUzDL9xCQry5TEpETLVHMLixRDw7Q0oxqwVfGZKVZFmcnZDrmJZUWZFXr5eak15snGRqmpRilJRqnGZoZJyVk8Ge7-D96fn8bAnvT9SQMTMwCo8XFd.pbztBpK8YPGnww/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUpgVq3uQ1-OkyT_rf3x9e5fEzD5-JrtL5DaTw2txqf2rMmdISWeUlBQUW-nrl5eX6-WkJpZkpBblJubpJefn6hvGSlaf2-J3y9FKgIuptFiIyyknPz-3KDUxOcNKHiiSLCRpZGpoZGgc71xalJlfWhwfnpmXDtQdHxpsxQ1UkCvEmpqbmJkTFaqvn5SfUqlfkpiUk6pfAmEX6ZekQESizWMxBbGJgNkpmWVgnJhkZZmSmJRomWpuYZFiaJiWZlQDti4-M8WqKDM52yE3sawos0IvPy-1xjzZ2Cg11SglySjV2MwwKTmLJ8Pd_8H789MY2JO-P2lgYgYAcUhsMA.G0k9D1P8O6X9dw/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zj1IAzEAhmGpiFB_kCKIXRRcvcbkeu31pFB10EkHEcFajuSStvEuF8mlf9jB2cFRRFcnZ1cRJxFEd10c3Bwc3YqlHTqo28fDN7yJ-YuScT-x8ZjuLHcmT2-v9i8fnvyT6bdY4XMmeXfNz5P1qtaHkQNAo9FI8TDSuKKwSHlSgIBhXWVK4FBLGUQLrohoKxS-dqkMpdYKe35-aXHAAQ99TvMYImJj4hlZyIiRNlnGyEGKDELKmKWhlbUsDEuzR883m68rzlQ8VosS8dVASqEY9qrOXFe8xCyyIIKmu1ZTXNYid5eHlW6Ku7PtjHUPIjHCBObBXhMAImkLaEwCBnR_K6BpX4p26Tf-Jb1Nef3_x0CKqAQwcXIUE5xjWdumEJbLqN0rcjl1FPf8gsB1xZspGbJ21jMRY4gSxMwMJN7BeHV96_3r5WxolHx_HMeGfwBvuZly.8NPR-xAta0hmow/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUpgVq3uQ1-OkyT_rf3x9e5fEzD5-JrtL5DaTw2txqf2rMmdIxWWUlBQUW-nrl5eX65VkZpfkZ-sl5-fqO-SkJpZkpBblJubFl-Tn5xQrx-cWp1Tm5WaXxOdk5mVnptiaGCcbpySnpeoaGJik6JokGyfrWhpbJuqaGpimpZmlpgJRmmGsZPW5LX63HK0EuJhKi4W4nHLy83OLUhOTM6zkgSLJQpJGpoZGhsbxzqVFmfmlxfHhmXnpIEtDg624gQpyhVhTcxMzc6Iq9PWT8lMq9UsSk3JS9Usg7CL9khSISLRFLKYgNhEwOyWzDLcKhEi0cax-YpKVZUpiUqJlqrmFRYqhYVqaUQ3YRfGZKVZFmcnZDrmJZUWZFXr5eak15snGRqmpRilJRqnGZoZJyVk8Ge7-D96fn8bAnvT9SQMTMwDfVJAI.JTYPJXZHeouU6Q/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zjtIw0AAxnGpiFAfSBDELgquptdc0iSNFKoOOogOIoK1hHvFnGlyml5f2MHZwVFEVydnVxEnEUR3XRzcHBzdiqUdOqjbx49v-CuzFyX1fmz10WgvtMdPb692Lx-egpPJt0Thcyp1d83PU4e-lAcVB4B6vZ72EGFYiCBNRAjWGJI-i0MUgTk3rNBmFAbSpSISUsaIBPnMfJ_LPAo4zesEmhTqTDUszVINw7PVXNYkKjIyZsa0cghCTytNHz3frL8uOhPJRLWiJJfKQoQxQ8R3ZjpClGmY1aCmu8vVmItqxd3m0V4nw93adEY6h1AZYiHi5Z0GAFjQJpAIlxmQvR0DSXtStEu_8S_pbspr_z_6UjRKAGEnRxFGOWbZNtU0z4OtbpHLqRNzEhRCVIt5Iy0i1rKIDhmDFEOmmxom-6P-ysb718vZwDD-_jhODP4AuBiViA._BvWsBOCm-IX_A/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zjtIw0AAxnGpiFAfSBDELgquptdc2iSNFKoOOvgYRARrCJfcxZx5nCSXtsEOzg6OIro6ObuKOIkguuvi4Obg6FYs7dBB3T5-fMNfmL0wxPux1cdie6E9fnp7tXf58OSdTL5lqp9Tubtrep5LXc4PYx2ARqORT1nCE4vkbRaAJCYRWCOIuyQKULhOMEVzZhDjNAw8bmIWMs4jZHuVwnyffRp6FFccTcYKJgVRRY4jFlVYEsuyVBRxwYaapkJVURzJmD56vtl4XdQnspkkFrJLPmNBRJDt6jMdsYVpWJKgJJvLSURZEps7NNzvpJjbW_pI5xAIQyRA1N9tAmAxnAKOLJ8A3tsR4LgnNc34jX9Jd2Na___Rl1rJAMjSyxhZqExUTcOS5Diw1S0yKdYjanvVANUj2syzkLRUW4aEQGxBIiuSZR-Muiub718vZwPD1vfHcWbwBwBhmXE.rIRVUNRGLYMoAg/click] \r\n\r\n*Privacy Policy* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzjtIw1AUBmCtiOALKYK0i4KryW2StnlIoeqgkw4iglrCfdVck5tbktvWYgcHJwdHEV2dnF1FnEQQ3XVxcHNwdCuGdlDQ4cB_Ps6BPz1zXlHuxlYe8p35zvjJzeXOxf2jfzz5mip_TGVvr9hZ9qjfk7IWOwA0m001oFB6NOIwVLHgoCYChhmNQS1iDYhbShdaqid5MOvymLRC7kuXiFBIGUHsl3JzPxyw0GekZOVQoUjyVEEFs6jkLawrtmHklCKqmjbNGSa0sVbJHDxdr74sOBPDqXqcHl4MhOARhdhzphPB6Yxe0HTNcJfqERP12N1k4W5S091Yd0aSA54epByyYMsHAAnSAhKigALZyxGQpCfbduUv_ifdTFijO71XrfKLYbIixyYQQZualkU0rVrV290SLiNOxLBf5rARsX1VhLRtYkOnVCdIp0ZRQ3hv1Ftee_t8Pu0bQl_vh6mBb4ChmKk.JpKAyT8o0AQb1w/click] *Manage Preferences* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUpgVq3uQ1-OkyT_rf3x9e5fEzD5-JrtL5DaTw2txqf2rMmdI7WPMKCkpKLbS1y8tNtZNTsnTS81L10vKyc_PLUpNTM7QS87P1c9JTSzJSC3KTczTLcnPz9EtKMpPKU0uyczP00_Vd06vyC90NXTyzknNLbUsjnKrTA_29CpI8Ul29Qv2zTaIzyrTdck3syxwq0yqsKgoyswISXLMdilyqyiML8zNjfQNM4hKtTAzCCkpcEpOryjwL_E1zQgKdIyM9K2It7DQy7Qo8AszqwzLLAorMEvXT87PK07NK7HPScxLt03NM4yVrD63xe-Wo5UAF1NpsRCXE9zpVvJAkWQhSSNTQyND43jn0qLM_NLi-PDMvHSgT-JDg624gQpyhVhTcxMzc6Ky9fWT8lMq9UsSk3JS9Usg7CL9khSISLRlLKYgNhEwOyWzDIwhWg1jkYQTo41ik6wsUxKTEi1TzS0sUgwN09KMasCOiM9MsSrKTM52yE0sK8qs0MvPS60xTzY2Sk01SkkySjU2M0xKzuLJcPd_8P78NAb2pO9PGpiYAWZ5rqQ.CMquh2tfNOb6hg/click] *Unsubscribe* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUpgVq3uQ1-OkyT_rf3x9e5fEzD5-JrtL5DaTw2txqf2rMmdI7WPMKCkpKLbS1y8tNtZNTsnTS81L10vKyc_PLUpNTM7QS87P1c9JTSzJSC3KTczTLcnPz9EtKMpPKU0uyczP00_Vd06vyC90NXTyzknNLbUsjnKrTA_29CpI8Ul29Qv2zTaIzyrTdck3syxwq0yqsKgoyswISXLMdilyqyiML8zNjfQNM4hKtTAzCCkpcEpOryjwL_E1zQgKdIyM9K2It7DQy7Qo8AszqwzLLAorMEvXT87PK07NK7HPScxLt03NM4yVrD63xe-Wo5UAF1NpsRCXE9zpVvJAkWQhSSNTQyND43jn0qLM_NLi-PDMvHSgT-JDg624gQpyhVhTcxMzc6Ky9fWT8lMq9UsSk3JS9Usg7CL9khSISLRlLKYgNhEwOyWzDIwhWg1jkYQTo41jk6wsUxKTEi1TzS0sUgwN09KMasCOiM9MsSrKTM52yE0sK8qs0MvPS60xTzY2Sk01SkkySjU2M0xKzuLJcPd_8P78NAb2pO9PGpiYAWbIrqU.QmQSvgkHKjnglg/click] \r\n\r\nThis email was sent to Rick@mavrix.one\r\n\r\nby *Leatherman Tool Group, Inc.*\r\n\r\n12106 NE Ainsworth Circle \r\nPortland, Oregon 97220\r\n\r\n© 2025 Leatherman Tool Group, Inc. All Rights Reserved.\r\n\r\nStandard shipping cutoff applies to non-engraved tools only. Custom engraving requires additional processing time. Delivery by 12/25/2025 is not guaranteed and may vary by location or carrier delays. ',0,0,0,0,0,0,'2025-12-11 14:20:42','2025-12-12 00:46:10','2025-12-12 00:46:10','2025-12-12 00:46:10',NULL,NULL,NULL),
(1029,4,'<CADxgbC8F3d5=uD=D0VkSPt9-8qsjkSMEGLYRq6XF+qWAVE9AQg@mail.gmail.com>',NULL,NULL,'Fwd: EDI Integration to Custom ERP and ICRS','tanner@lithiumbatterycompany.com','Tanner Hance','<div dir=\"ltr\"><div>Rick,</div><div><br></div><div>I&#39;m sharing here the information I asked for in yesterday&#39;s meeting with Torrey at Port Tampa Bay.  </div><div><br></div><div>Let me know if you have any questions or would like to discuss in more detail. </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div style=\"color:rgb(80,0,80)\"><div dir=\"ltr\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\"><br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">V/r</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\"><br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Tanner Hance</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (919) 356-0862<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>tanner<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" style=\"color:rgb(17,85,204)\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><div style=\"margin:2px 0px 0px;color:rgb(80,0,80)\"></div></div></div></div><br><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">Torrey Chambliss</strong> <span dir=\"auto\">&lt;<a href=\"mailto:tchambliss@tampaport.com\">tchambliss@tampaport.com</a>&gt;</span><br>Date: Thu, Dec 11, 2025 at 10:33 AM<br>Subject: Re: EDI Integration to Custom ERP and ICRS<br>To: Tanner Hance &lt;<a href=\"mailto:tanner@lithiumbatterycompany.com\">tanner@lithiumbatterycompany.com</a>&gt;<br></div><br><br><div class=\"msg831583045387438670\">\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nHello Tanner,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nThanks for the call yesterday.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nI have attached the U.S. CBP forms that we discussed.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nAs I mentioned, you will also need to speaker with the company&#39;s customs broker, once one has been selected.  You want to make sure that  the customs broker&#39;s system can communicate with LBC&#39;s ERP/ICRS.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nAttached are the following documents.</div>\r\n<ul style=\"margin-top:0px;margin-bottom:0px;list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">CBP Form 214</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">CBP Form 3461</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">CBP Form 7501</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<div role=\"presentation\">CBP Form 7512</div>\r\n</li></ul>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nIf LBC needs additional insight, I can recommend a consultant that can provide daily attention to the company&#39;s project.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nI look forward to your response.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nBest regards,</div>\r\n<div id=\"m_831583045387438670Signature\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<p style=\"margin:0in\"><span style=\"font-size:12pt;color:black\">Torrey Chambliss - LCB, AZS, MBA, MA</span></p>\r\n<p style=\"text-align:left;margin:0in\"><span style=\"font-size:12pt;color:black\">Director, FTZ &amp; Cargo Business Development</span></p>\r\n<p style=\"text-align:left;margin:0in\"><span style=\"font-size:12pt;color:black\">Port Tampa Bay</span></p>\r\n<p style=\"text-align:left;margin:0in\"><span style=\"font-size:12pt;color:black\">1101 Channelside Drive</span></p>\r\n<p style=\"text-align:left;margin:0in\"><span style=\"font-size:12pt;color:black\">Fourth Floor</span></p>\r\n<p style=\"text-align:left;margin:0in\"><span style=\"font-size:12pt;color:black\">Tampa, Florida 33602</span></p>\r\n<p style=\"text-align:left;margin:0in\"><span style=\"font-size:12pt;color:black\">Tel: 813-905-5125</span></p>\r\n<p style=\"text-align:left;margin:0in\"><span style=\"font-size:12pt;color:black\">Cell: 813-382-1591</span></p>\r\n<p style=\"text-align:left;margin:0in\"><span style=\"font-size:12pt;color:black\">Email:\r\n<a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_831583045387438670OWAd20c61cb-8b1a-e95b-4507-f293b8d2c407\" href=\"mailto:tchambliss@tampaport.com\" target=\"_blank\">\r\ntchambliss@tampaport.com</a></span></p>\r\n<p style=\"text-align:left;margin:0in\"><span style=\"font-size:12pt;color:black\">Website:\r\n<a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_831583045387438670OWAe8d041ff-0592-fcc6-2aeb-2ab7c867e3f0\" href=\"http://www.tampaport.com/\" target=\"_blank\">\r\nwww.TampaPort.com</a>, <a style=\"margin-top:0px;margin-bottom:0px\" id=\"m_831583045387438670OWAccd160e8-6a02-387b-c36b-b27ccac63c62\" href=\"http://www.tampaftz.com/\" target=\"_blank\">\r\nwww.TampaFTZ.com</a></span></p>\r\n<p style=\"margin-top:1em;margin-bottom:1em\"> </p>\r\n<p style=\"margin-top:1em;margin-bottom:1em\"><img style=\"width:216px;height:40px;margin-top:0px;margin-bottom:0px\" height=\"40\" width=\"216\" alt=\"Image preview\" src=\"cid:ii_19b0e2096a7acb128331\"></p>\r\n<p style=\"margin-top:1em;margin-bottom:1em\"> </p>\r\n</div>\r\n<div id=\"m_831583045387438670appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div id=\"m_831583045387438670divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Tanner Hance &lt;<a href=\"mailto:tanner@lithiumbatterycompany.com\" target=\"_blank\">tanner@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Tuesday, December 9, 2025 1:15 PM<br>\r\n<b>To:</b> Torrey Chambliss &lt;<a href=\"mailto:tchambliss@tampaport.com\" target=\"_blank\">tchambliss@tampaport.com</a>&gt;<br>\r\n<b>Subject:</b> Re: EDI Integration to Custom ERP and ICRS</font>\r\n<div> </div>\r\n</div>\r\n<div>\r\n<p></p>\r\n<div style=\"background-color:#ffd700;width:100%;border-style:solid;border-color:#800000;border-width:1pt;padding:2pt;font-size:10pt;line-height:12pt;font-family:&#39;Arial&#39;;color:Black;text-align:left\">\r\n<span style=\"color:#a52a2a\"><strong>CAUTION:</strong></span> External Sender. Please do not click on links or open attachments from senders you do not trust.</div>\r\n<br>\r\n<p></p>\r\n\r\n<div>\r\n<div dir=\"ltr\">\r\n<div>Good afternoon, </div>\r\n<div><br>\r\n</div>\r\n<div>I just wanted to follow up on scheduling a call. One of my colleagues, <span style=\"font-family:Helvetica,Arial\">Rick Mislan, is designing our ERP/ICRS and would like to join in if that is possible. We currently have an FTZ broker, but ultimately would\r\n like to find an in-house broker to cover our reporting requirements.<br>\r\n<br>\r\nI look forward to hearing from you,</span></div>\r\n<div>\r\n<div dir=\"ltr\" data-smartmail=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<div>\r\n<div dir=\"ltr\">\r\n<div dir=\"ltr\">\r\n<p style=\"color:rgb(80,0,80);margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\"><br>\r\n</span></p>\r\n<p style=\"color:rgb(80,0,80);margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">V/r</span></p>\r\n<p style=\"color:rgb(80,0,80);margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\"><br>\r\n</span></p>\r\n<p style=\"color:rgb(80,0,80);margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Tanner Hance</span></p>\r\n<p style=\"margin:0in\"><font color=\"#000000\" face=\"Arial, sans-serif\"><span style=\"font-size:13.3333px\">&quot;Find a way or make one&quot;</span></font></p>\r\n<p style=\"color:rgb(80,0,80);margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"color:rgb(80,0,80);margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (919) 356-0862<br>\r\n</span></p>\r\n<p style=\"color:rgb(80,0,80);margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>tanner<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"color:rgb(80,0,80);margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" style=\"color:rgb(17,85,204)\" target=\"_blank\">Lithium Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<div style=\"margin:2px 0px 0px;color:rgb(80,0,80)\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n</div>\r\n<br>\r\n<div>\r\n<div dir=\"ltr\">On Sat, Dec 6, 2025 at 9:15 AM Tanner Hance &lt;<a href=\"mailto:tanner@lithiumbatterycompany.com\" target=\"_blank\">tanner@lithiumbatterycompany.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div dir=\"auto\">Absolutely, </div>\r\n<div dir=\"auto\"><br>\r\n</div>\r\n<div dir=\"auto\">Let me know when you have free time for a call. I can move my schedule around to accommodate. </div>\r\n<div dir=\"auto\"><br>\r\n</div>\r\n<div dir=\"auto\">Thanks Torrey. <br clear=\"all\">\r\n<br clear=\"all\">\r\n<div dir=\"auto\">\r\n<div dir=\"ltr\">\r\n<div dir=\"ltr\">\r\n<div style=\"color:rgb(80,0,80)\">\r\n<div dir=\"ltr\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\"><br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">V/r</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\"><br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Tanner Hance</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (919) 356-0862<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u style=\"font-family:Arial,sans-serif\">tanner<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"margin:0px;font-family:Arial,sans-serif;color:blue\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" style=\"font-family:Arial,sans-serif;color:rgb(17,85,204)\" target=\"_blank\">Lithium Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<div style=\"margin:2px 0px 0px;color:rgb(80,0,80)\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div><br>\r\n<div>\r\n<div dir=\"ltr\">On Sat, Dec 6, 2025 at 07:04 Torrey Chambliss &lt;<a href=\"mailto:tchambliss@tampaport.com\" target=\"_blank\">tchambliss@tampaport.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n<div dir=\"ltr\">\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nHELLO Tanner.   </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nIt was a pleasure to meet you in person.  Thanks for coming. </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nFor the goods to clear customs, CBP will need certain information on the product and on its mode of transportation.  How familiar are you with the customs clearance process?  Will you and the team use a customs broker to manage/file the customs paperwork product\r\n or will you self file?</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nA phone conversation would probably more effective for this conversation.  </div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nCan we set up a call for early next week?</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nI look forward to your response.</div>\r\n<div style=\"direction:ltr;font-family:Aptos,Aptos_MSFontService,-apple-system,Roboto,Arial,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"m_831583045387438670x_m_-7549699070376512253m_2473979748156005597ms-outlook-mobile-body-separator-line\" style=\"direction:ltr;font-family:Aptos,-apple-system,HelveticaNeue,sans-serif;font-size:12pt\">\r\n<br>\r\n</div>\r\n<div id=\"m_831583045387438670x_m_-7549699070376512253m_2473979748156005597ms-outlook-mobile-body-separator-line\" style=\"direction:ltr;font-family:Aptos,-apple-system,HelveticaNeue,sans-serif;font-size:12pt\">\r\n<br>\r\n</div>\r\n<div id=\"m_831583045387438670x_m_-7549699070376512253m_2473979748156005597ms-outlook-mobile-signature\">\r\n<p style=\"direction:ltr;line-height:1.5;margin:0px;font-family:Calibri,sans-serif;font-size:11pt\">\r\n<span style=\"font-family:Calibri,sans-serif;color:rgb(31,73,125)\">Torrey Chambliss - LCB, AZS, MBA, MA</span></p>\r\n<a href=\"https://www.google.com/maps/search/1101+Channelside+Drive+%0D%0A+%0D%0A+Tampa,+Florida+33602?entry=gmail&amp;source=g\" target=\"_blank\"></a>\r\n<p style=\"direction:ltr;line-height:1.5;margin:0px;font-family:Calibri,sans-serif;font-size:11pt\">\r\n<a href=\"https://www.google.com/maps/search/1101+Channelside+Drive+%0D%0A+%0D%0A+Tampa,+Florida+33602?entry=gmail&amp;source=g\" style=\"font-family:Calibri,sans-serif\" target=\"_blank\"></a><span style=\"font-family:Calibri,sans-serif;color:rgb(31,73,125)\">Director,\r\n FTZ &amp; Cargo Business Development</span></p>\r\n<p style=\"direction:ltr;line-height:1.5;margin:0px;font-family:Calibri,sans-serif;font-size:11pt\">\r\n<span style=\"font-family:Calibri,sans-serif;color:rgb(31,73,125)\">Port Tampa Bay</span></p>\r\n<p style=\"direction:ltr;line-height:1.5;margin:0px;font-family:Calibri,sans-serif;font-size:11pt\">\r\n<span style=\"font-family:Calibri,sans-serif;color:currentcolor\"><a href=\"https://www.google.com/maps/search/1101+Channelside+Drive+%0D%0A+%0D%0A+Tampa,+Florida+33602?entry=gmail&amp;source=g\" style=\"font-family:Calibri,sans-serif\" target=\"_blank\">1101 Channelside\r\n Drive</a></span></p>\r\n<p style=\"direction:ltr;line-height:1.5;margin:0px;font-family:Calibri,sans-serif;font-size:11pt\">\r\n<span style=\"font-family:Calibri,sans-serif;color:currentcolor\"><a href=\"https://www.google.com/maps/search/1101+Channelside+Drive+%0D%0A+%0D%0A+Tampa,+Florida+33602?entry=gmail&amp;source=g\" style=\"font-family:Calibri,sans-serif\" target=\"_blank\">Tampa, Florida\r\n 33602</a></span></p>\r\n<p style=\"direction:ltr;line-height:1.5;margin:0px;font-family:Calibri,sans-serif;font-size:11pt\">\r\n<span style=\"font-family:Calibri,sans-serif;color:rgb(31,73,125)\">Tel: </span><span style=\"font-family:Calibri,sans-serif;color:currentcolor\">813-905-5125</span></p>\r\n<p style=\"direction:ltr;line-height:1.5;margin:0px;font-family:Calibri,sans-serif;font-size:11pt\">\r\n<span style=\"font-family:Calibri,sans-serif;color:rgb(31,73,125)\">Cell: </span><span style=\"font-family:Calibri,sans-serif;color:currentcolor\">813-382-1591</span></p>\r\n<p style=\"direction:ltr;line-height:1.5;margin:0px;font-family:Calibri,sans-serif;font-size:11pt\">\r\n<span style=\"font-family:Calibri,sans-serif;color:rgb(31,73,125)\">Website: </span>\r\n<span style=\"font-family:Calibri,sans-serif;color:rgb(0,120,212)\"><a id=\"m_831583045387438670x_m_-7549699070376512253m_2473979748156005597OWAcd742da8-1fe7-530c-a235-d5dba57ca232\" href=\"http://www.porttb.com/\" style=\"margin-top:0px;margin-bottom:0px;font-family:Calibri,sans-serif;color:rgb(0,120,212)\" target=\"_blank\">www.PortTB.com</a></span></p>\r\n<p style=\"direction:ltr;line-height:1.5;margin:0px;font-family:Calibri,sans-serif;font-size:11pt\">\r\n<span style=\"font-family:Calibri,sans-serif;color:rgb(31,73,125)\">Website: </span>\r\n<span style=\"font-family:Calibri,sans-serif;color:rgb(0,120,212)\"><a id=\"m_831583045387438670x_m_-7549699070376512253m_2473979748156005597OWA05aefa2c-f518-c525-cb53-e0791b6b6bac\" href=\"http://www.tampaftz.com/\" style=\"margin-top:0px;margin-bottom:0px;font-family:Calibri,sans-serif;color:rgb(0,120,212)\" target=\"_blank\">www.TampaFTZ.com</a></span></p>\r\n<p style=\"direction:ltr;line-height:1.5;margin:0px;font-family:Calibri,sans-serif;font-size:11pt\">\r\n<span style=\"font-family:Calibri,sans-serif;color:rgb(31,73,125)\"> </span></p>\r\n<p style=\"direction:ltr;line-height:1.5;margin:0px;font-family:Calibri,sans-serif;font-size:11pt\">\r\n<span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:rgb(23,54,93)\"><b style=\"font-family:Calibri,sans-serif\"><img height=\"39\" width=\"216\" alt=\"PortTampaBay_Horizontal\" style=\"width:216px;height:39.9867px;max-width:100%;margin-top:0px;margin-bottom:0px;font-family:Calibri,sans-serif\"></b></span></p>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\">\r\n<div id=\"m_831583045387438670x_m_-7549699070376512253m_2473979748156005597divRplyFwdMsg\">\r\n<div style=\"direction:ltr;font-family:Calibri,sans-serif;font-size:11pt;color:rgb(0,0,0)\">\r\n<b style=\"font-family:Calibri,sans-serif\">De:</b> Tanner Hance &lt;<a href=\"mailto:tanner@lithiumbatterycompany.com\" style=\"font-family:Calibri,sans-serif\" target=\"_blank\">tanner@lithiumbatterycompany.com</a>&gt;<br>\r\n<b style=\"font-family:Calibri,sans-serif\">Enviado:</b> Friday, December 5, 2025 5:14:30 PM<br>\r\n<b style=\"font-family:Calibri,sans-serif\">Para:</b> Torrey Chambliss &lt;<a href=\"mailto:tchambliss@tampaport.com\" style=\"font-family:Calibri,sans-serif\" target=\"_blank\">tchambliss@tampaport.com</a>&gt;<br>\r\n<b style=\"font-family:Calibri,sans-serif\">Asunto:</b> EDI Integration to Custom ERP and ICRS</div>\r\n<div style=\"direction:ltr\"> </div>\r\n</div>\r\n<div style=\"text-align:left;line-height:12pt;padding:2pt;border-width:1pt;border-style:solid;font-family:Arial;font-size:10pt;background-color:rgb(255,215,0);border-color:rgb(128,0,0)\">\r\n<span style=\"font-family:Arial;color:rgb(165,42,42)\"><b style=\"font-family:Arial\">CAUTION:</b></span><span style=\"font-family:Arial;color:black\"><b style=\"font-family:Arial\"> External Sender. Please do not click on links or open attachments from senders you\r\n do not trust.</b></span></div>\r\n</div>\r\n<div dir=\"ltr\">\r\n<div><b><br>\r\n</b></div>\r\n<div style=\"direction:ltr\">Torrey, </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">We are currently working on building out a custom ERP that will integrate an ICRS. We are looking for information on what reports would be required by CBP,  what information they would need 24/7 access to, what needs to be tracked\r\n in our ICRS, and to what level, and any other pertinent information to be compliant. <br>\r\n<br>\r\nI know the seminar talked about this broadly, but we need to find the exact requirements since we aren&#39;t using 3rd party software for our reporting system. <br>\r\n<br>\r\nIf you could point me in the right direction and give me some example reports, I would appreciate it. </div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I hope you have a great weekend. </div>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">V/r</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Tanner Hance</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (919) 356-0862</span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u style=\"font-family:Arial,sans-serif\">tanner<a id=\"m_831583045387438670x_m_-7549699070376512253m_2473979748156005597OWAd817f33a-bc2a-fcd2-b594-556f98cfae4f\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"margin:0px;font-family:Arial,sans-serif;color:blue\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr;margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(17,85,204)\"><a id=\"m_831583045387438670x_m_-7549699070376512253m_2473979748156005597OWA2ff6f2db-d589-5b67-82ae-1056ff177a82\" href=\"http://lithiumbatterycompany.com/\" style=\"margin-top:0px;margin-bottom:0px;font-family:Arial,sans-serif;color:rgb(17,85,204)\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n<div dir=\"ltr\">***** Notice ***** The Tampa Port Authority d/b/a Port Tampa Bay is a public agency subject to Chapter 119, Florida Statutes, concerning public records. Electronic Mail (email) messages are covered under such laws and thus subject to disclosure.\r\n All email sent and received is captured by the Port Tampa Bay server and retained as a public record.\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n***** Notice ***** The Tampa Port Authority d/b/a Port Tampa Bay is a public agency subject to Chapter 119, Florida Statutes, concerning public records. Electronic Mail (email) messages are covered under such laws and thus subject to disclosure. All email sent\r\n and received is captured by the Port Tampa Bay server and retained as a public record.\r\n</div>\r\n\r\n</div></div></div>','Rick,\r\n\r\nI\'m sharing here the information I asked for in yesterday\'s meeting with\r\nTorrey at Port Tampa Bay.\r\n\r\nLet me know if you have any questions or would like to discuss in more\r\ndetail.\r\n\r\n\r\nV/r\r\n\r\n\r\nTanner Hance\r\n\r\nLithium Battery Company\r\n\r\nDirect: (919) 356-0862\r\n\r\n*tanner@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com/>\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: Torrey Chambliss <tchambliss@tampaport.com>\r\nDate: Thu, Dec 11, 2025 at 10:33 AM\r\nSubject: Re: EDI Integration to Custom ERP and ICRS\r\nTo: Tanner Hance <tanner@lithiumbatterycompany.com>\r\n\r\n\r\nHello Tanner,\r\n\r\nThanks for the call yesterday.\r\n\r\nI have attached the U.S. CBP forms that we discussed.\r\n\r\nAs I mentioned, you will also need to speaker with the company\'s customs\r\nbroker, once one has been selected.  You want to make sure that  the\r\ncustoms broker\'s system can communicate with LBC\'s ERP/ICRS.\r\n\r\nAttached are the following documents.\r\n\r\n   - CBP Form 214\r\n   - CBP Form 3461\r\n   - CBP Form 7501\r\n   - CBP Form 7512\r\n\r\n\r\nIf LBC needs additional insight, I can recommend a consultant that can\r\nprovide daily attention to the company\'s project.\r\n\r\nI look forward to your response.\r\n\r\nBest regards,\r\n\r\nTorrey Chambliss - LCB, AZS, MBA, MA\r\n\r\nDirector, FTZ & Cargo Business Development\r\n\r\nPort Tampa Bay\r\n\r\n1101 Channelside Drive\r\n\r\nFourth Floor\r\n\r\nTampa, Florida 33602\r\n\r\nTel: 813-905-5125\r\n\r\nCell: 813-382-1591\r\n\r\nEmail: tchambliss@tampaport.com\r\n\r\nWebsite: www.TampaPort.com <http://www.tampaport.com/>, www.TampaFTZ.com\r\n<http://www.tampaftz.com/>\r\n\r\n\r\n\r\n[image: Image preview]\r\n\r\n\r\n------------------------------\r\n*From:* Tanner Hance <tanner@lithiumbatterycompany.com>\r\n*Sent:* Tuesday, December 9, 2025 1:15 PM\r\n*To:* Torrey Chambliss <tchambliss@tampaport.com>\r\n*Subject:* Re: EDI Integration to Custom ERP and ICRS\r\n\r\n\r\n*CAUTION:* External Sender. Please do not click on links or open\r\nattachments from senders you do not trust.\r\n\r\nGood afternoon,\r\n\r\nI just wanted to follow up on scheduling a call. One of my colleagues, Rick\r\nMislan, is designing our ERP/ICRS and would like to join in if that is\r\npossible. We currently have an FTZ broker, but ultimately would like to\r\nfind an in-house broker to cover our reporting requirements.\r\n\r\nI look forward to hearing from you,\r\n\r\n\r\nV/r\r\n\r\n\r\nTanner Hance\r\n\r\n\"Find a way or make one\"\r\n\r\nLithium Battery Company\r\n\r\nDirect: (919) 356-0862\r\n\r\n*tanner@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com/>\r\n\r\n\r\nOn Sat, Dec 6, 2025 at 9:15 AM Tanner Hance <\r\ntanner@lithiumbatterycompany.com> wrote:\r\n\r\nAbsolutely,\r\n\r\nLet me know when you have free time for a call. I can move my schedule\r\naround to accommodate.\r\n\r\nThanks Torrey.\r\n\r\n\r\nV/r\r\n\r\n\r\nTanner Hance\r\n\r\nLithium Battery Company\r\n\r\nDirect: (919) 356-0862\r\n\r\n*tanner@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com/>\r\n\r\n\r\nOn Sat, Dec 6, 2025 at 07:04 Torrey Chambliss <tchambliss@tampaport.com>\r\nwrote:\r\n\r\nHELLO Tanner.\r\n\r\nIt was a pleasure to meet you in person.  Thanks for coming.\r\n\r\nFor the goods to clear customs, CBP will need certain information on the\r\nproduct and on its mode of transportation.  How familiar are you with the\r\ncustoms clearance process?  Will you and the team use a customs broker to\r\nmanage/file the customs paperwork product or will you self file?\r\n\r\nA phone conversation would probably more effective for this conversation.\r\n\r\nCan we set up a call for early next week?\r\n\r\nI look forward to your response.\r\n\r\n\r\n\r\nTorrey Chambliss - LCB, AZS, MBA, MA\r\n<https://www.google.com/maps/search/1101+Channelside+Drive+%0D%0A+%0D%0A+Tampa,+Florida+33602?entry=gmail&source=g>\r\n\r\n<https://www.google.com/maps/search/1101+Channelside+Drive+%0D%0A+%0D%0A+Tampa,+Florida+33602?entry=gmail&source=g>Director,\r\nFTZ & Cargo Business Development\r\n\r\nPort Tampa Bay\r\n\r\n1101 Channelside Drive\r\n<https://www.google.com/maps/search/1101+Channelside+Drive+%0D%0A+%0D%0A+Tampa,+Florida+33602?entry=gmail&source=g>\r\n\r\nTampa, Florida 33602\r\n<https://www.google.com/maps/search/1101+Channelside+Drive+%0D%0A+%0D%0A+Tampa,+Florida+33602?entry=gmail&source=g>\r\n\r\nTel: 813-905-5125\r\n\r\nCell: 813-382-1591\r\n\r\nWebsite: www.PortTB.com <http://www.porttb.com/>\r\n\r\nWebsite: www.TampaFTZ.com <http://www.tampaftz.com/>\r\n\r\n\r\n\r\n*[image: PortTampaBay_Horizontal]*\r\n------------------------------\r\n*De:* Tanner Hance <tanner@lithiumbatterycompany.com>\r\n*Enviado:* Friday, December 5, 2025 5:14:30 PM\r\n*Para:* Torrey Chambliss <tchambliss@tampaport.com>\r\n*Asunto:* EDI Integration to Custom ERP and ICRS\r\n\r\n*CAUTION:** External Sender. Please do not click on links or open\r\nattachments from senders you do not trust.*\r\n\r\nTorrey,\r\n\r\nWe are currently working on building out a custom ERP that will integrate\r\nan ICRS. We are looking for information on what reports would be required\r\nby CBP,  what information they would need 24/7 access to, what needs to be\r\ntracked in our ICRS, and to what level, and any other pertinent information\r\nto be compliant.\r\n\r\nI know the seminar talked about this broadly, but we need to find the exact\r\nrequirements since we aren\'t using 3rd party software for our reporting\r\nsystem.\r\n\r\nIf you could point me in the right direction and give me some example\r\nreports, I would appreciate it.\r\n\r\nI hope you have a great weekend.\r\n\r\n\r\nV/r\r\n\r\n\r\nTanner Hance\r\n\r\nLithium Battery Company\r\n\r\nDirect: (919) 356-0862\r\n\r\n*tanner@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com/>\r\n***** Notice ***** The Tampa Port Authority d/b/a Port Tampa Bay is a\r\npublic agency subject to Chapter 119, Florida Statutes, concerning public\r\nrecords. Electronic Mail (email) messages are covered under such laws and\r\nthus subject to disclosure. All email sent and received is captured by the\r\nPort Tampa Bay server and retained as a public record.\r\n\r\n***** Notice ***** The Tampa Port Authority d/b/a Port Tampa Bay is a\r\npublic agency subject to Chapter 119, Florida Statutes, concerning public\r\nrecords. Electronic Mail (email) messages are covered under such laws and\r\nthus subject to disclosure. All email sent and received is captured by the\r\nPort Tampa Bay server and retained as a public record.',0,0,0,0,0,0,'2025-12-11 15:58:32','2025-12-12 00:46:23','2025-12-12 00:46:23','2025-12-12 00:46:23',NULL,NULL,NULL),
(1030,4,'<CAKK=axiPMz-rWM-vZsd5A4LoqgM__M9m9f9FnZkhQFWvUGQ+NQ@mail.gmail.com>',NULL,NULL,'Re: Questions','nick@lithiumbatterycompany.com','Nick Powell','<div dir=\"ltr\"><div dir=\"ltr\">Hi Curtis,<br><br>Thanks for reaching out and for the background on your DoD drone work. Drone batteries are definitely within our wheelhouse. <br><br>At a high level, automation for cylindrical pack assembly usually makes sense once you’re beyond low‑thousands of packs per year or have higher cell‑count packs where labor, quality, and traceability become critical cost and risk drivers. Depending on the footprint, packs do not have to be designed from scratch for automation, but designs with regular cell layouts, good weld access, and similar features are much easier to run on an automated line.<br><br>For existing designs, the typical process is to: (1) review the current build with our engineers, (2) run a sample batch on the semi-automated equipment after the build is approved, and (3) once testing is successful, finalize and confirm an “automation-ready” version for production.</div><div dir=\"ltr\"><br></div><div dir=\"ltr\">Regarding your question about tearing down and setting up a new line, are you referring to retooling the line?<br><br>I believe it would be beneficial for us to jump on a video call so we can go into more detail. Before the meeting, however, I would like to get NDAs signed. Happy to send ours or use yours,whichever you preferWhat times this week or next work for you for an introductory call?<br><br>Best,<br>Nick</div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><font size=\"4\"><b><br>Nick Powell</b></font></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><b>Client Relations Coordinator</b></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><font size=\"2\"><b>TheLithiumBatteryCompany</b></font></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><br></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\">Toll Free - 844-GET-LITHIUM</div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><br></div><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;line-height:normal\"><a href=\"http://www.lithiumbatterycompany.com/\" style=\"color:rgb(17,85,204)\" target=\"_blank\">www.LithiumBatteryCompany.com</a></div><div></div><div><br style=\"color:rgb(34,34,34)\"></div></div></div></div>','Hi Curtis,\r\n\r\nThanks for reaching out and for the background on your DoD drone work.\r\nDrone batteries are definitely within our wheelhouse.\r\n\r\nAt a high level, automation for cylindrical pack assembly usually makes\r\nsense once you’re beyond low‑thousands of packs per year or have higher\r\ncell‑count packs where labor, quality, and traceability become critical\r\ncost and risk drivers. Depending on the footprint, packs do not have to be\r\ndesigned from scratch for automation, but designs with regular cell\r\nlayouts, good weld access, and similar features are much easier to run on\r\nan automated line.\r\n\r\nFor existing designs, the typical process is to: (1) review the current\r\nbuild with our engineers, (2) run a sample batch on the semi-automated\r\nequipment after the build is approved, and (3) once testing is successful,\r\nfinalize and confirm an “automation-ready” version for production.\r\n\r\nRegarding your question about tearing down and setting up a new line, are\r\nyou referring to retooling the line?\r\n\r\nI believe it would be beneficial for us to jump on a video call so we can\r\ngo into more detail. Before the meeting, however, I would like to get NDAs\r\nsigned. Happy to send ours or use yours,whichever you preferWhat times this\r\nweek or next work for you for an introductory call?\r\n\r\nBest,\r\nNick\r\n\r\n-- \r\n\r\n*Nick Powell*\r\n*Client Relations Coordinator*\r\n*TheLithiumBatteryCompany*\r\n\r\nToll Free - 844-GET-LITHIUM\r\n\r\nwww.LithiumBatteryCompany.com <http://www.lithiumbatterycompany.com/>',0,0,0,0,0,0,'2025-12-11 17:29:00','2025-12-12 00:46:23','2025-12-12 00:46:23','2025-12-12 00:46:23',NULL,NULL,NULL),
(1031,4,'<c24ae82d-d413-4865-9afa-c65880da50c1@mavrix.one>',NULL,NULL,'Fwd: Your discount expires soon','katherine@mavrix.one','Katherine Aponte','<!DOCTYPE html>\r\n<html>\r\n  <head>\r\n\r\n    <meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\">\r\n  </head>\r\n  <body yahoo=\"fix\" bgcolor=\"#f4f5f8\"\r\nstyle=\"margin:0px; padding:0px !important; background-color: #F4F5F8\"\r\n    text=\"windowtext\" link=\"#0B6CDA\" alink=\"#EE0000\" vlink=\"#551A8B\">\r\n    <p>    Hi Brian and Rick,</p>\r\n    <p>Please see the email below re: Mavrix1 QB account and discount\r\n      ending on 12/18/2025. Do we have a Mavrix1 credit card I could\r\n      move the monthly charges to? Here are the payments I\'ve made so\r\n      far using my personal credit card:</p>\r\n    <p><img src=\"cid:part1.cuh3UYG9.o0YFnbmt@mavrix.one\" alt=\"\"></p>\r\n    <div class=\"moz-forward-container\">Please let me know, thanks!</div>\r\n    <div class=\"moz-forward-container\">-KD<br>\r\n      -------- Forwarded Message --------\r\n      <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\"\r\n        class=\"moz-email-headers-table\">\r\n        <tbody>\r\n          <tr>\r\n            <th valign=\"BASELINE\" align=\"RIGHT\" nowrap=\"nowrap\">Subject:\r\n            </th>\r\n            <td>Your discount expires soon</td>\r\n          </tr>\r\n          <tr>\r\n            <th valign=\"BASELINE\" align=\"RIGHT\" nowrap=\"nowrap\">Date: </th>\r\n            <td>Thu, 11 Dec 2025 09:11:06 +0000 (UTC)</td>\r\n          </tr>\r\n          <tr>\r\n            <th valign=\"BASELINE\" align=\"RIGHT\" nowrap=\"nowrap\">From: </th>\r\n            <td>Intuit <a class=\"moz-txt-link-rfc2396E\" href=\"mailto:do_not_reply@intuit.com\">&lt;do_not_reply@intuit.com&gt;</a></td>\r\n          </tr>\r\n          <tr>\r\n            <th valign=\"BASELINE\" align=\"RIGHT\" nowrap=\"nowrap\">To: </th>\r\n            <td><a class=\"moz-txt-link-abbreviated\" href=\"mailto:katherine@mavrix.one\">katherine@mavrix.one</a></td>\r\n          </tr>\r\n        </tbody>\r\n      </table>\r\n      <br>\r\n      <br>\r\n      <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n      <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\r\n      <meta name=\"viewport\"\r\n        content=\"width=device-width,initial-scale=1 user-scalable=yes\">\r\n      <meta name=\"format-detection\"\r\n        content=\"telephone=no, date=no, address=no, email=no, url=no\">\r\n      <meta name=\"x-apple-disable-message-reformatting\">\r\n      <title>Intuit(R) Correspondence</title>\r\n      <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"\r\n        role=\"presentation\" style=\"min-width: 100%; \"\r\n        class=\"stylingblock-content-wrapper\">\r\n        <tbody>\r\n          <tr>\r\n            <td class=\"stylingblock-content-wrapper camarker-inner\"><br>\r\n            </td>\r\n          </tr>\r\n        </tbody>\r\n      </table>\r\n      <style type=\"text/css\">body {\r\n                margin: 0 !important;\r\n                padding: 0 !important;\r\n                min-width: 100%;\r\n                width: 100% !important;\r\n            }table td {\r\n                border-collapse: collapse;\r\n            }img {\r\n                outline: none;\r\n            }a img {\r\n                border: none;\r\n            }a[x-apple-data-detectors] {\r\n                color: inherit !important;\r\n                text-decoration: none !important;\r\n                font-size: inherit !important;\r\n                font-family: inherit !important;\r\n                font-weight: inherit !important;\r\n                line-height: inherit !important;\r\n            }</style>\r\n      <div style=\"background-color: #F4F5F8;padding: 0px;\"\r\n        bgcolor=\"#F4F5F8\">\r\n        <!-- Zone 1 Start -->\r\n        <div role=\"banner\">\r\n          <table role=\"presentation\" border=\"0\" cellpadding=\"0\"\r\n            cellspacing=\"0\" width=\"660\" align=\"center\"\r\n            style=\"width: 660px;\" class=\"full\">\r\n            <tbody>\r\n              <tr>\r\n                <td style=\"padding: 20px 0px;\">\r\n                  <table role=\"presentation\" border=\"0\" cellpadding=\"0\"\r\n                    cellspacing=\"0\" width=\"660\" align=\"center\"\r\nstyle=\"width: 660px;box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2); border: 1px solid #C3CED5; border-radius: 4px; background-color: #ffffff;\"\r\n                    class=\"width84p\">\r\n                    <tbody>\r\n                      <tr>\r\n                        <td align=\"center\"\r\nstyle=\"padding-top: 20px; padding-bottom: 20px;\">\r\n                          <table role=\"presentation\" border=\"0\"\r\n                            class=\"width84p\" cellpadding=\"0\"\r\n                            cellspacing=\"0\" align=\"center\" width=\"620\"\r\nstyle=\"width:620px;text-align: center;margin: 0 auto;\">\r\n                            <tbody>\r\n                              <tr>\r\n                                <td valign=\"top\"\r\n                                  style=\"vertical-align: top;\">\r\n                                  <table role=\"presentation\"\r\n                                    width=\"100%\" border=\"0\"\r\n                                    cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody>\r\n                                      <tr>\r\n                                        <td align=\"center\"\r\n                                          style=\"padding-top: 2px;\"> <img\r\nsrc=\"https://digitalasset.intuit.com/content/dam/intuit/integrations/oinp/en_us/mse-billing-correspondence/images/circle-info-fill.png\"\r\n                                            alt=\"Alert icon\" width=\"20\"\r\nstyle=\"border: 0; display: block;\" moz-do-not-send=\"true\"> </td>\r\n                                      </tr>\r\n                                    </tbody>\r\n                                  </table>\r\n                                </td>\r\n                                <td width=\"20\" valign=\"top\"\r\n                                  style=\"width: 20px;\">  </td>\r\n                                <td valign=\"top\"\r\nstyle=\"font-size: 16px;line-height: 24px;color: #000000;font-weight: 400;text-align: left;vertical-align: top; font-family: Avenir, Arial, sans-serif;\">\r\n                                  <strong>Same notification, new look!</strong>\r\n                                  Future bills will now come from\r\n                                  Intuit, the global finance technology\r\n                                  company powering TurboTax, Credit\r\n                                  Karma, QuickBooks, and Mailchimp. <a\r\nhref=\"https://elink.prd.intuit.com/ss/c/u001.HiknLRd2Wv82qs5XbGcPmQ9-J0Ftf0c2f4m9Iuivq_0/4mc/WUCCby4HSVuD7IQG98XJfA/h0/h001.BNSrX1peB_SS80-LsAqmhMrCfQWq9pDKfbDhlzJTNtM\"\r\n                                    moz-do-not-send=\"true\">Learn more\r\n                                    about Intuit</a> </td>\r\n                              </tr>\r\n                            </tbody>\r\n                          </table>\r\n                        </td>\r\n                      </tr>\r\n                    </tbody>\r\n                  </table>\r\n                </td>\r\n              </tr>\r\n              <tr>\r\n                <td height=\"90\" align=\"center\" bgcolor=\"#00254A\"\r\n                  style=\"background-color: #00254A; height:90px;\">\r\n                  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\"\r\n                    width=\"580\" align=\"center\" class=\"width84p\"\r\n                    style=\"width: 580px;margin: 0 auto;\">\r\n                    <tbody>\r\n                      <tr>\r\n                        <td align=\"center\" style=\"text-align: center;\">\r\n                          <a\r\nhref=\"https://elink.prd.intuit.com/ss/c/u001.HiknLRd2Wv82qs5XbGcPmaKzz8j5FyrRYvYnqm6A9x0/4mc/WUCCby4HSVuD7IQG98XJfA/h1/h001.Kk5IT7FZIpU1kVkhz1BLvxjlrQ9-X-h7f8YZnZaVuKc\"\r\nalias=\"Header logo - https://www.intuit.com/\"\r\nstyle=\"color:#ffffff; text-decoration:none; padding:15px\"\r\n                            moz-do-not-send=\"true\"> <img height=\"20\"\r\n                              width=\"540\" border=\"0\"\r\nsrc=\"https://digitalasset.intuit.com/render/content/dam/intuit/sbseg-email/en_us/logos/email-logo-intuit-brandbar-desktop-equal-cobrand-weight.png\"\r\n                              alt=\"QuickBooks Online logo\"\r\nstyle=\"display: block; border:0; height:20px; width:540px;margin: 0 auto;\"\r\n                              class=\"hideme\" moz-do-not-send=\"true\">\r\n                            <!--[if !mso]> --> <img width=\"360\"\r\n                              border=\"0\"\r\nsrc=\"https://digitalasset.intuit.com/render/content/dam/intuit/sbseg-email/en_us/logos/email-logo-intuit-brandbar-2023-reverse-mobile.png\"\r\n                              alt=\"QuickBooks Online logo\"\r\nstyle=\"display: none; border:0; width:360px;\" class=\"mobile-img\"\r\n                              moz-do-not-send=\"true\">\r\n                            <!--<![endif]--> </a> </td>\r\n                      </tr>\r\n                    </tbody>\r\n                  </table>\r\n                </td>\r\n              </tr>\r\n            </tbody>\r\n          </table>\r\n        </div>\r\n        <!-- Zone 1 End -->\r\n        <div role=\"main\">\r\n          <table role=\"presentation\" border=\"0\" cellpadding=\"0\"\r\n            class=\"full\" cellspacing=\"0\" width=\"660\" align=\"center\"\r\n            style=\"width: 660px;background-color: #F4F4EF;\">\r\n            <tbody>\r\n              <tr>\r\n                <td align=\"center\" style=\"text-align: center;\">\r\n                  <table role=\"presentation\" border=\"0\" class=\"width84p\"\r\n                    cellpadding=\"0\" cellspacing=\"0\" align=\"center\"\r\n                    width=\"580\"\r\nstyle=\"width:580px;text-align: center;margin: 0 auto;\">\r\n                    <!-- Zone 2 Start --> <tbody>\r\n                      <tr>\r\n                        <td style=\"padding-top: 40px;\">\r\n                          <table role=\"presentation\" width=\"100%\"\r\n                            cellspacing=\"0\" cellpadding=\"0\" border=\"0\"\r\n                            align=\"center\" style=\"text-align: center;\">\r\n                            <tbody>\r\n                              <tr>\r\n                                <td><br>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td align=\"center\"\r\n                                  style=\"text-align: center;\"> <img\r\nsrc=\"https://digitalasset.intuit.com/render/content/dam/intuit/sbseg-email/en_us/icons/email-icon-attention-alert.png\"\r\n                                    alt=\"Alert icon\" width=\"72\"\r\n                                    height=\"72\"\r\nstyle=\"width: 72px;height: 72px;text-align: center;display: block; border: 0;margin: 0 auto;\"\r\n                                    moz-do-not-send=\"true\"> </td>\r\n                              </tr>\r\n                            </tbody>\r\n                          </table>\r\n                        </td>\r\n                      </tr>\r\n                      <tr>\r\n                        <td style=\"padding-top: 10px\">\r\n                          <table role=\"presentation\" border=\"0\"\r\n                            cellpadding=\"0\" cellspacing=\"0\" width=\"580\"\r\nstyle=\"width:580px;text-align: center;margin: 0 auto;\" class=\"width84p\">\r\n                            <tbody>\r\n                              <tr>\r\n                                <td\r\nstyle=\"text-align: center;color: #000000;font-size: 40px;line-height: 52px;font-weight: 600;font-family: Avenir, Arial, sans-serif;\">\r\n                                  Your discount expires soon. </td>\r\n                              </tr>\r\n                            </tbody>\r\n                          </table>\r\n                        </td>\r\n                      </tr>\r\n                    </tbody>\r\n                  </table>\r\n                </td>\r\n              </tr>\r\n              <!-- Zone 2 End -->\r\n              <!-- Zone 3 Start --> <tr>\r\n                <td\r\nstyle=\"padding-top: 12px;text-align: center;width: 580px;margin: 0 auto;\"\r\n                  class=\"width84p\">\r\n                  <table role=\"presentation\" width=\"580\" cellspacing=\"0\"\r\n                    cellpadding=\"0\" border=\"0\"\r\nstyle=\"width: 580px;text-align: center;margin: 0 auto;\" class=\"width84p\">\r\n                    <tbody>\r\n                      <tr>\r\n                        <td\r\nstyle=\"text-align: center;color: #000000;font-size: 20px;line-height: 28px;font-weight: 400;font-family: Avenir, Arial, sans-serif;\">\r\n                          This is a reminder that the current discount\r\n                          on your subscription is ending on <strong>12/18/2025</strong>.\r\n                          After that, you\'ll be automatically charged\r\n                          the full subscription fee of $165.00* plus tax\r\n                          using the payment method you provided. </td>\r\n                      </tr>\r\n                    </tbody>\r\n                  </table>\r\n                </td>\r\n              </tr>\r\n              <tr>\r\n                <td align=\"center\" style=\"padding: 40px 0px;\">\r\n                  <table role=\"presentation\" align=\"center\" width=\"580\"\r\n                    class=\"width84p\" border=\"0\" cellpadding=\"0\"\r\n                    cellspacing=\"0\"\r\nstyle=\"margin: 0 auto;width: 580px; border-radius: 4px; box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2); border: 1px solid #C3CED5;background-color: #FFFFFF;\"\r\n                    bgcolor=\"#FFFFFF\">\r\n                    <tbody>\r\n                      <tr>\r\n                        <td align=\"center\"\r\nstyle=\"padding-top: 40px; padding-bottom: 40px; margin: 0 auto ;\">\r\n                          <table role=\"presentation\" width=\"500\"\r\n                            align=\"center\" class=\"width84p\" border=\"0\"\r\n                            cellpadding=\"0\" cellspacing=\"0\"\r\n                            style=\"width: 500px; margin: 0 auto;\">\r\n                            <tbody>\r\n                              <tr>\r\n                                <td width=\"240\" class=\"width46p\"\r\n                                  align=\"left\" valign=\"top\"\r\nstyle=\"width: 240px; color: #000000;font-size: 16px;line-height: 24px;font-weight: 600;font-family: Avenir, Arial, sans-serif;padding-bottom: 8px;\">\r\n                                  Subscriptions: </td>\r\n                                <td width=\"20\" valign=\"top\"\r\n                                  class=\"width8p\" style=\"width: 20px;\">\r\n                                   </td>\r\n                                <td align=\"left\" valign=\"top\"\r\n                                  class=\"width46p\"\r\nstyle=\"color: #000000;font-size: 16px;line-height: 24px;font-weight: 400;font-family: Avenir, Arial, sans-serif;padding-bottom: 8px;\">\r\n                                  Multiple subscriptions, see below </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"240\" class=\"width46p\"\r\n                                  align=\"left\" valign=\"top\"\r\nstyle=\"width: 240px; color: #000000;font-size: 16px;line-height: 24px;font-weight: 600;font-family: Avenir, Arial, sans-serif;padding-bottom: 8px;\">\r\n                                  Payment method: </td>\r\n                                <td width=\"20\" valign=\"top\"\r\n                                  class=\"width8p\" style=\"width: 20px;\">\r\n                                   </td>\r\n                                <td class=\"width46p\" align=\"left\"\r\n                                  valign=\"top\"\r\nstyle=\"color: #000000;font-size: 16px;line-height: 24px;font-weight: 400;font-family: Avenir, Arial, sans-serif;padding-bottom: 8px;\">\r\n                                  VISA ending in\r\n                                  2672, expires 07/2029 </td>\r\n                              </tr>\r\n                            </tbody>\r\n                          </table>\r\n                          <table role=\"presentation\" width=\"500\"\r\n                            align=\"center\" class=\"width84p\" border=\"0\"\r\n                            cellpadding=\"0\" cellspacing=\"0\"\r\n                            style=\"width: 500px; margin: 0 auto;\">\r\n                            <tbody>\r\n                              <tr>\r\n                                <td style=\"padding-top: 16px;\">\r\n                                  <table width=\"100%\" cellspacing=\"0\"\r\n                                    cellpadding=\"0\" border=\"0\"\r\n                                    style=\"width: 100%;\">\r\n                                    <tbody>\r\n                                      <tr>\r\n                                        <td align=\"center\">\r\n                                          <table cellspacing=\"0\"\r\n                                            cellpadding=\"0\" border=\"0\"\r\n                                            align=\"center\">\r\n                                            <tbody>\r\n                                              <tr>\r\n                                                <td\r\nclass=\"Primary_CTA-Button\" align=\"center\"\r\nstyle=\"padding: 12px 20px 12px 20px;background-color: #00254A;border-radius: 4px;\">\r\n                                                  <a\r\nhref=\"https://elink.prd.intuit.com/ss/c/u001.WVMg7PM6utnUYX1Yq78VGCqrCut29Q7J31UBVQAEc-fB8Xb6oj-eVsvejhT0n4fdHxOuE6JehcpeSPpB9bMh_A/4mc/WUCCby4HSVuD7IQG98XJfA/h2/h001.sc16fNMPbELecPI-Xzafy6cSk7qC05d0lB8GeGgr0wo\"\r\nalias=\"Fix it now - en_US - 100 - https://qbo.intuit.com/login?pagereq=billing\"\r\n                                                    target=\"_blank\"\r\nclass=\"font_16 fw-6 padding-bottom-sm\"\r\nstyle=\"color: #ffffff; text-decoration:none;font-size: 16px;line-height: 24px;font-weight: 600;font-family: Avenir, Arial, sans-serif;padding-bottom: 10px;\"\r\nmoz-do-not-send=\"true\"> Manage your plan </a> </td>\r\n                                              </tr>\r\n                                            </tbody>\r\n                                          </table>\r\n                                        </td>\r\n                                      </tr>\r\n                                    </tbody>\r\n                                  </table>\r\n                                </td>\r\n                              </tr>\r\n                            </tbody>\r\n                          </table>\r\n                        </td>\r\n                      </tr>\r\n                    </tbody>\r\n                  </table>\r\n                </td>\r\n              </tr>\r\n              <!-- Zone 3 End -->\r\n            </tbody>\r\n          </table>\r\n          <table role=\"presentation\" align=\"center\" width=\"660\"\r\n            border=\"0\" class=\"full\" cellpadding=\"0\" cellspacing=\"0\"\r\nstyle=\"width: 660px;background-color: #ffffff;border-collapse: collapse;\"\r\n            bgcolor=\"#ffffff\">\r\n            <tbody>\r\n              <tr>\r\n                <!-- Zone 4 start --> <td align=\"center\"\r\n                  style=\"padding-top: 40px;\" bgcolor=\"#ffffff\">\r\n                  <table role=\"presentation\" align=\"center\" width=\"580\"\r\n                    class=\"width84p\" border=\"0\" cellpadding=\"0\"\r\n                    cellspacing=\"0\" style=\"width: 580px;\">\r\n                    <tbody>\r\n                      <tr>\r\n                        <td\r\nstyle=\"color: #000000;font-size: 28px;line-height: 36px;font-weight: 600;font-family: Avenir, Arial, sans-serif;padding-bottom: 20px;\">\r\n                          Managing your plan </td>\r\n                      </tr>\r\n                      <tr>\r\n                        <td\r\nstyle=\"color: #000000;font-size: 16px;line-height: 24px;font-weight: 400;font-family: Avenir, Arial, sans-serif;\">\r\n                          On <strong>12/18/2025</strong> your discount\r\n                          will expire and after that in your next\r\n                          billing cycle your payment method will be\r\n                          automatically charged the full monthly\r\n                          subscription fee of $165.00* plus tax , along\r\n                          with if any applicable usage fees every month\r\n                          and thereafter, until you cancel. To avoid\r\n                          such charges, you must cancel your\r\n                          subscription before 12/18/2025 by going to the\r\n                          Billing &amp; Subscription page. </td>\r\n                      </tr>\r\n                    </tbody>\r\n                  </table>\r\n                </td>\r\n                <!-- Zone 4 End --> </tr>\r\n              <!-- Zone 5 Start --> <tr>\r\n                <td align=\"left\" style=\"padding-top: 40px;\"\r\n                  bgcolor=\"#ffffff\">\r\n                  <table role=\"presentation\" align=\"center\" class=\"full\"\r\n                    width=\"660\" border=\"0\" cellpadding=\"0\"\r\n                    cellspacing=\"0\"\r\nstyle=\"width: 660px;border-collapse: collapse;background-color: #ffffff;\"\r\n                    bgcolor=\"#ffffff\">\r\n                    <tbody>\r\n                      <tr>\r\n                        <td align=\"center\">\r\n                          <table role=\"presentation\" align=\"center\"\r\n                            width=\"580\" border=\"0\" cellpadding=\"0\"\r\n                            cellspacing=\"0\" style=\"width: 580px;\"\r\n                            class=\"width84p\">\r\n                            <tbody>\r\n                              <tr>\r\n                                <td valign=\"top\" nowrap=\"nowrap\"\r\n                                  align=\"left\"\r\nstyle=\"color: #000000;font-size: 28px;line-height: 36px;font-weight: 600;font-family: Avenir, Arial, sans-serif;\">\r\n                                  Account details</td>\r\n                              </tr>\r\n                            </tbody>\r\n                          </table>\r\n                        </td>\r\n                      </tr>\r\n                      <tr>\r\n                        <td style=\"padding-top: 20px;\">\r\n                          <table role=\"presentation\" align=\"center\"\r\n                            width=\"580\" border=\"0\" cellpadding=\"0\"\r\n                            cellspacing=\"0\"\r\nstyle=\"width: 580px; border-collapse: collapse;\" class=\"width84p\">\r\n                            <tbody>\r\n                              <tr>\r\n                                <td width=\"240\" class=\"width46p\"\r\n                                  valign=\"top\" align=\"left\"\r\nstyle=\"width: 240px; padding-bottom: 8px;color: #000000;font-size: 16px;line-height: 24px;font-weight: 600;font-family: Avenir, Arial, sans-serif;\">\r\n                                  Subscriptions: </td>\r\n                                <td width=\"20\" valign=\"top\"\r\n                                  class=\"width8p\" style=\"width: 20px;\">\r\n                                   </td>\r\n                                <td class=\"width46p\" valign=\"top\"\r\n                                  align=\"left\"\r\nstyle=\"padding-bottom: 8px;color: #000000;font-size: 16px;line-height: 24px;font-weight: 400;font-family: Avenir, Arial, sans-serif;\">\r\n                                  QuickBooks Online Plus<br>\r\n                                  QuickBooks Online Payroll Core<br>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"240\" class=\"width46p\"\r\n                                  valign=\"top\" align=\"left\"\r\nstyle=\"width: 240px; padding-bottom: 8px;color: #000000;font-size: 16px;line-height: 24px;font-weight: 600;font-family: Avenir, Arial, sans-serif;\">\r\n                                  Company ID ending:</td>\r\n                                <td width=\"20\" valign=\"top\"\r\n                                  class=\"width8p\" style=\"width: 20px;\">\r\n                                   </td>\r\n                                <td class=\"width46p\" valign=\"top\"\r\n                                  align=\"left\"\r\nstyle=\"padding-bottom: 8px;color: #000000;font-size: 16px;line-height: 24px;font-weight: 400;font-family: Avenir, Arial, sans-serif;\">\r\n                                  0047 </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"240\" class=\"width46p\"\r\n                                  valign=\"top\" align=\"left\"\r\nstyle=\"width: 240px; padding-bottom: 8px;color: #000000;font-size: 16px;line-height: 24px;font-weight: 600;font-family: Avenir, Arial, sans-serif;\">\r\n                                  Company name:</td>\r\n                                <td width=\"20\" valign=\"top\"\r\n                                  class=\"width8p\" style=\"width: 20px;\">\r\n                                   </td>\r\n                                <td class=\"width46p\" valign=\"top\"\r\n                                  align=\"left\"\r\nstyle=\"padding-bottom: 8px;color: #000000;font-size: 16px;line-height: 24px;font-weight: 400;font-family: Avenir, Arial, sans-serif;\">\r\n                                  Mavrix1 LLC</td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"240\" class=\"width46p\"\r\n                                  valign=\"top\" align=\"left\"\r\nstyle=\"width: 240px; color: #000000;font-size: 16px;line-height: 24px;font-weight: 600;font-family: Avenir, Arial, sans-serif;padding: 0px;\">\r\n                                  Billing address:</td>\r\n                                <td width=\"20\" valign=\"top\"\r\n                                  class=\"width8p\" style=\"width: 20px;\">\r\n                                   </td>\r\n                                <td class=\"width46p\" valign=\"top\"\r\n                                  align=\"left\"\r\nstyle=\"color: #000000;font-size: 16px;line-height: 24px;font-weight: 400;font-family: Avenir, Arial, sans-serif; padding: 0px;\">\r\n                                  3900 Coachman Ave<br>\r\n                                  Tampa FL 33611<br>\r\n                                  US </td>\r\n                              </tr>\r\n                            </tbody>\r\n                          </table>\r\n                        </td>\r\n                      </tr>\r\n                      <tr>\r\n                        <td align=\"left\"\r\n                          style=\"padding-top: 40px;text-align: left;\">\r\n                          <table role=\"presentation\" align=\"center\"\r\n                            width=\"580\" border=\"0\" cellpadding=\"0\"\r\n                            cellspacing=\"0\" style=\"width: 580px;\"\r\n                            class=\"width84p\">\r\n                            <tbody>\r\n                              <tr>\r\n                                <td\r\nstyle=\"color: #000000;font-size: 12px;line-height: 16px;font-weight: 600;font-family: Avenir, Arial, sans-serif;\">\r\n                                  *Pricing may vary if you have a\r\n                                  discount and based on whether you add\r\n                                  or remove services and your usage or\r\n                                  if there has been a price increase.\r\n                                  See your <a\r\nhref=\"https://elink.prd.intuit.com/ss/c/u001.gHniYfGSzcxMWfXEaX1bzaKlrrhAViAxLhgNwMs-L7djBP-umEN42lUjJXe7RjmfCSPhswNWwgPN1P4REDKLrA/4mc/WUCCby4HSVuD7IQG98XJfA/h3/h001.C62eExdA1e8mku_Bg7ic8kVdzgpffVI94i8FGYxK7lY\"\r\n                                    target=\"_blank\"\r\n                                    moz-do-not-send=\"true\">Billing &amp;\r\n                                    Subscription</a> page for additional\r\n                                  pricing details.<br>\r\n                                  <br>\r\n                                  Terms, conditions, pricing, special\r\n                                  features, and service and support\r\n                                  options subject to change without\r\n                                  notice. </td>\r\n                              </tr>\r\n                            </tbody>\r\n                          </table>\r\n                        </td>\r\n                      </tr>\r\n                    </tbody>\r\n                  </table>\r\n                </td>\r\n              </tr>\r\n              <!-- Zone 5 End -->\r\n            </tbody>\r\n          </table>\r\n        </div>\r\n        <div role=\"complementary\" style=\"border: none ;\">\r\n          <!-- Zone 6 Start -->\r\n          <table bgcolor=\"#ffffff\" border=\"0\" class=\"full\"\r\n            cellpadding=\"0\" cellspacing=\"0\" width=\"660\" align=\"center\"\r\nstyle=\"text-align: center;width: 660px;background-color: #ffffff;\">\r\n            <tbody>\r\n              <tr>\r\n                <td align=\"center\"\r\n                  style=\"padding: 40px 0px;text-align: center;\">\r\n                  <table class=\"customerAnchorTag width84p\"\r\n                    bgcolor=\"#EFF4F9\" width=\"580\" border=\"0\"\r\n                    cellpadding=\"0\" cellspacing=\"0\" align=\"center\"\r\nstyle=\"padding: 38px 0px;width:580px;border-radius:4px;text-align:center;margin: 0 auto; box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2); border: 1px solid #C3CED5\">\r\n                    <tbody>\r\n                      <tr>\r\n                        <td align=\"center\">\r\n                          <table border=\"0\" cellpadding=\"0\"\r\n                            cellspacing=\"0\" align=\"center\" width=\"500\"\r\n                            class=\"width84p\"\r\n                            style=\"width: 500px;margin: 0 auto;\">\r\n                            <tbody>\r\n                              <tr>\r\n                                <td align=\"center\"\r\nstyle=\"display: block;margin: 0 auto;text-align: center;\">\r\n                                  <table role=\"presentation\"\r\n                                    class=\"width84p\" width=\"500\"\r\n                                    border=\"0\" cellpadding=\"0\"\r\n                                    cellspacing=\"0\"\r\nstyle=\"width: 500px; margin: 0 auto;\">\r\n                                    <tbody>\r\n                                      <tr>\r\n                                        <td align=\"center\"\r\n                                          style=\"text-align: center;\"> <a\r\nhref=\"https://elink.prd.intuit.com/ss/c/u001.WVMg7PM6utnUYX1Yq78VGKAknLO2tewNMUQxsiblUypj9l6lDIbhPgg2xqWM-qloERn5F-L-lBPjH34ifFcqEA/4mc/WUCCby4HSVuD7IQG98XJfA/h4/h001.0u71RG6YuX5M3e-eSkpynwgRF4AJrVFoBhsnwS12s0Q\"\r\nalias=\"Visit customer support - Intuit - https://quickbooks.intuit.com/learn-support/\"\r\n                                            moz-do-not-send=\"true\"> <img\r\nsrc=\"https://digitalasset.intuit.com/render/content/dam/intuit/sbseg-email/en_us/icons/email-icon-customer-support-dark.png\"\r\nstyle=\"width:48px;height:48px;display:block;margin:0 auto;\" width=\"48\"\r\n                                              height=\"48\" alt=\"\"\r\n                                              moz-do-not-send=\"true\"> </a>\r\n                                        </td>\r\n                                      </tr>\r\n                                      <tr>\r\n                                        <td\r\nstyle=\"color:#236CFF; text-align: center;line-height: 33px;padding: 20px 0px; font-size:28px; font-weight:600;font-family: Avenir, Arial, sans-serif;\">\r\n                                          Questions or concerns? </td>\r\n                                      </tr>\r\n                                      <tr>\r\n                                        <td align=\"center\"\r\n                                          style=\"text-align: center;\">\r\n                                          <table align=\"center\"\r\n                                            role=\"presentation\"\r\n                                            border=\"0\" cellspacing=\"0\"\r\n                                            cellpadding=\"0\"\r\nstyle=\"margin: 0 auto;text-align: center;\">\r\n                                            <tbody>\r\n                                              <tr>\r\n                                                <td align=\"center\"\r\n                                                  height=\"44\"\r\nclass=\"button-secondary-superblue\"\r\nstyle=\"font-size: 16px; color: #FFFFFF; font-family: Avenir, Arial, sans-serif; border-radius: 4px; border: 2px solid #236CFF; text-decoration: none; height: 44px; text-align: center;\">\r\n                                                  <table\r\n                                                    role=\"presentation\"\r\n                                                    border=\"0\"\r\n                                                    cellpadding=\"0\"\r\n                                                    cellspacing=\"0\">\r\n                                                    <tbody>\r\n                                                      <tr>\r\n                                                        <td\r\n                                                          align=\"center\"\r\nstyle=\"padding: 0 20px; text-decoration: none;\"> <a\r\nhref=\"https://elink.prd.intuit.com/ss/c/u001.WVMg7PM6utnUYX1Yq78VGKAknLO2tewNMUQxsiblUypj9l6lDIbhPgg2xqWM-qloERn5F-L-lBPjH34ifFcqEA/4mc/WUCCby4HSVuD7IQG98XJfA/h5/h001.mEWE2zjW12C3NE_fgLHXqSutfRrehBStBp-A00AA90I\"\r\n                                                          class=\"\"\r\nstyle=\"text-align: center; font-family: Avenir, Arial, sans-serif; color: #236CFF; text-decoration: none; font-weight: 600; font-size: 16px; line-height: 24px; display: block; margin: 0 auto;\"\r\nmoz-do-not-send=\"true\"> Visit customer support </a> </td>\r\n                                                      </tr>\r\n                                                    </tbody>\r\n                                                  </table>\r\n                                                </td>\r\n                                              </tr>\r\n                                            </tbody>\r\n                                          </table>\r\n                                        </td>\r\n                                      </tr>\r\n                                    </tbody>\r\n                                  </table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td\r\nstyle=\"padding-top: 16px; vertical-align: top;text-align: center;\"\r\n                                  align=\"center\" width=\"60%\"> <a\r\nstyle=\"font-size:16px; line-height:24px; font-weight:400; text-align: center;font-family: Avenir, Arial, sans-serif;color: #236CFF;\"\r\nhref=\"https://elink.prd.intuit.com/ss/c/u001.gKfYpNGYx2pr8ONmrqwjaEuMGBoQkDnPxAGSVSu2ZbPAN3YwPQuOrK6UrgnvP4SU/4mc/WUCCby4HSVuD7IQG98XJfA/h6/h001.QNzCNKS8zTx9dH0hDfDeuNu-nj77RQ80_oeEvhGiZkg\"\r\nalias=\"Look up your charge - Intuit - https://quickbooks.intuit.com/learn-support/\"\r\n                                    moz-do-not-send=\"true\"> Look up your\r\n                                    charge </a> </td>\r\n                              </tr>\r\n                            </tbody>\r\n                          </table>\r\n                        </td>\r\n                      </tr>\r\n                    </tbody>\r\n                  </table>\r\n                </td>\r\n              </tr>\r\n            </tbody>\r\n          </table>\r\n          <!-- Zone 6 End -->\r\n          <!-- Zone 7 Start -->\r\n          <!-- Zone 7 End --> </div>\r\n        <div role=\"contentinfo\">\r\n          <!-- Zone 8 Start -->\r\n          <table bgcolor=\"#21262A\" border=\"0\" cellpadding=\"0\"\r\n            class=\"full\" cellspacing=\"0\" width=\"660\" align=\"center\"\r\nstyle=\"text-align: center; background-color: #21262A;width: 660px;\">\r\n            <tbody>\r\n              <tr>\r\n                <td style=\"padding-top: 40px;\">\r\n                  <table cellspacing=\"0\" cellpadding=\"0\" width=\"580\"\r\n                    align=\"center\" style=\"margin: 0 auto; width: 580px;\"\r\n                    class=\"width84p\">\r\n                    <tbody>\r\n                      <tr>\r\n                        <td\r\nstyle=\"color: #FFFFFF; text-align: left; font-size: 12px; line-height: 16px; font-weight: 400; font-family: Avenir, Arial, sans-serif;\">\r\n                          This message was sent to <span\r\n                            style=\"text_decoration:none; color:#ffffff\"><a class=\"moz-txt-link-abbreviated\" href=\"mailto:katherine@mavrix.one\">katherine@mavrix.one</a></span>\r\n                          , as an Intuit customer, consistent with your\r\n                          email preferences. If you have chosen not to\r\n                          receive marketing messages, you will continue\r\n                          to receive business communications about your\r\n                          selected Intuit product(s), which may either\r\n                          affect your service or software, your account,\r\n                          or which may be legally required.<br>\r\n                          <br>\r\n                          <u><a href=\"\" target=\"_blank\"\r\n                              alias=\"Trademarks - en_US - 100 - \"\r\nstyle=\"font: 12px Arial, Helvetisans-serif; line-height:19px; color:#ffffff;\"\r\n                              moz-do-not-send=\"true\">Unsubscribe</a></u><span>\r\n                          </span>|<span> </span><u><a\r\nhref=\"https://elink.prd.intuit.com/ss/c/u001.3UGN6hpUuP_Ij31NT3eCf_s_EBlC9VF1FLhNMBCWyKKrJSm14HbHaW95APPXnipl/4mc/WUCCby4HSVuD7IQG98XJfA/h7/h001.aJK36HPZVdQWtkmJkFRdWPpMHpV1gv_zFs5ju5Yj6Lw\"\r\n                              target=\"_blank\"\r\nalias=\"Security - en_US - 100 - https://security.intuit.com/index.php\"\r\nstyle=\"font: 12px Arial, Helvetisans-serif; line-height:19px; color:#ffffff;\"\r\n                              moz-do-not-send=\"true\">Security</a></u><span>\r\n                          </span>|<span> </span><u><a\r\nhref=\"https://elink.prd.intuit.com/ss/c/u001.3UGN6hpUuP_Ij31NT3eCf_s_EBlC9VF1FLhNMBCWyKLTL3A6Ok73DiTV4N2DyCQn/4mc/WUCCby4HSVuD7IQG98XJfA/h8/h001.j8zFM4scPiKCSGpIJxN9TbHPpJ6O0xAy3DG0oKepdJ8\"\r\n                              target=\"_blank\"\r\nalias=\"Privacy statement - en_US - 100 - https://security.intuit.com/privacy\"\r\nstyle=\"font: 12px Arial, Helvetisans-serif; line-height:19px; color:#ffffff;\"\r\n                              moz-do-not-send=\"true\">Privacy statement</a></u><br>\r\n                          <br>\r\n                          © 2025 Intuit Inc., <a\r\nhref=\"https://elink.prd.intuit.com/ss/c/u001.HiknLRd2Wv82qs5XbGcPmZOrYcAHmizlvvH0WxVDGyW6fD7jUs7MMZPs0BUVNoj4/4mc/WUCCby4HSVuD7IQG98XJfA/h9/h001.b9H3A7P-fOSotEb33bcPMUcpNQMyTF4SrK8N8t2JB8Y\"\r\n                            target=\"_blank\"\r\nalias=\"Trademarks - en_US - 100 - https://www.intuit.com/legal/trademark/\"\r\nstyle=\"font: 12px Arial, Helvetica, sans-serif; line-height:19px; color:#ffffff;\"\r\n                            moz-do-not-send=\"true\">Trademarks</a>.<br>\r\n                          <br>\r\n                          Intuit Inc. 2800 E. Commerce Center Place,\r\n                          Tucson, AZ 85706<br>\r\n                        </td>\r\n                      </tr>\r\n                      <tr>\r\n                        <td style=\"padding-top:20px;\">\r\n                          <!--start brand bar-->\r\n                          <table valign=\"top\" class=\"width84p\"\r\n                            width=\"580\" cellspacing=\"0\" cellpadding=\"0\"\r\n                            border=\"0\" align=\"center\"\r\n                            style=\"width:580px;margin: 0 auto\">\r\n                            <tbody>\r\n                              <tr>\r\n                                <td valign=\"top\" align=\"center\">\r\n                                  <!--start brand bar-->\r\n                                  <table align=\"center\" border=\"0\"\r\n                                    cellpadding=\"0\" cellspacing=\"0\"\r\n                                    class=\"width84p\"\r\n                                    style=\"width: 580px; margin: auto;\"\r\n                                    width=\"580\">\r\n                                    <tbody>\r\n                                      <tr>\r\n                                        <td align=\"left\" class=\"hideme\">\r\n                                          <a\r\nhref=\"https://elink.prd.intuit.com/ss/c/u001.k8TuIeZY_zD5fyUIu1P2peumR5wtDWjhqGxp3KR4pyc9PhNZsARt5BCw6bj_NUCXIeNlq_7SbPieHIOwSfFTc4OaCpEN6IviuUHyyjyy8EvP9YYlKbcYVtkfLh6lLr2cJLhLP_ZYiTl5HfLcIiQSEncbixu-FIEIT6YneLoBZhUYF7U2sf4buP9OXjnRXYQ9Nanga0wTjbXKLcLd9MhqlIElEXgnStZcrJlfDQpPQzc/4mc/WUCCby4HSVuD7IQG98XJfA/h10/h001.Uiy0EbuYEjtKsPTI-allBmifiZDYTREc5CfN51HRkco\"\r\n                                            moz-do-not-send=\"true\"><img\r\n                                              alt=\"Intuit brands\"\r\n                                              class=\"hideme\"\r\nsrc=\"https://digitalasset.intuit.com/render/content/dam/intuit/sbseg-email/en_us/logos/email-logo-intuit-brandbar-2023-reverse-desktop.png\"\r\nstyle=\"display:block; border:none;margin:0;\" width=\"480\"\r\n                                              moz-do-not-send=\"true\"></a></td>\r\n                                      </tr>\r\n                                      <tr>\r\n                                        <td align=\"center\"\r\n                                          class=\"block_wrap\"\r\nstyle=\"display: none; mso-hide: all;\"> <a\r\nhref=\"https://elink.prd.intuit.com/ss/c/u001.k8TuIeZY_zD5fyUIu1P2peumR5wtDWjhqGxp3KR4pyc9PhNZsARt5BCw6bj_NUCXIeNlq_7SbPieHIOwSfFTc4OaCpEN6IviuUHyyjyy8EvP9YYlKbcYVtkfLh6lLr2cJLhLP_ZYiTl5HfLcIiQSEncbixu-FIEIT6YneLoBZhUYF7U2sf4buP9OXjnRXYQ9Nanga0wTjbXKLcLd9MhqlIElEXgnStZcrJlfDQpPQzc/4mc/WUCCby4HSVuD7IQG98XJfA/h11/h001.38QyWXp2JOd1UJHg6q42_NjZ4aqagCD4n4UCOOLfpr4\"\r\n                                            moz-do-not-send=\"true\"><img\r\n                                              alt=\"Intuit brands\"\r\n                                              class=\"mobile-img\"\r\nsrc=\"https://digitalasset.intuit.com/render/content/dam/intuit/sbseg-email/en_us/logos/email-logo-intuit-brandbar-2023-reverse-mobile.png\"\r\nstyle=\"display:block; border:none; max-width: 320px;\" width=\"1\"\r\n                                              moz-do-not-send=\"true\"></a></td>\r\n                                      </tr>\r\n                                    </tbody>\r\n                                  </table>\r\n                                  <!--end brand bar--> </td>\r\n                              </tr>\r\n                            </tbody>\r\n                          </table>\r\n                        </td>\r\n                      </tr>\r\n                      <tr style=\"background-color: #21262A;\">\r\n                        <td\r\nstyle=\"color: transparent; background-color: transparent;\r\n                       word-break: break-all; font-size: 12px; \r\n                       line-height: 16px; font-weight: 400; font-family: Avenir, Arial, sans-serif; \r\n                       width: 580px; margin: 0 auto;\">\r\n                          <!--[if mso]>\r\n                <span style=\"color: #21262A;\">\r\n                <![endif]-->\r\n                          <!--HiddenKey-->\r\nhKey=OBILL|Discount_Expiry|realmId=Hzdgl8YkR79XYnizOsflFA+rINIVfK3DneqM1c9XbKw\r\n                          |locale=en_US, majorBrand=Intuit,\r\n                          legalEntity=100, currency=USD,\r\n                          intuitTid=028aec08-9f0e-46f1-829b-21f41beedc46,\r\n                          environment=prd, source=OINP\r\n                          <!--HiddenKey-->\r\n                          <!--[if mso]>\r\n                </span>\r\n                <![endif]--> </td>\r\n                      </tr>\r\n                    </tbody>\r\n                  </table>\r\n                </td>\r\n              </tr>\r\n            </tbody>\r\n          </table>\r\n          <!-- Zone 8 End --> </div>\r\n      </div>\r\n      <img\r\nsrc=\"https://elink.prd.intuit.com/ss/o/u001.UAdxVh8ph_Y1B39Ch5qvmQ/4mc/WUCCby4HSVuD7IQG98XJfA/ho.gif\"\r\n        alt=\"\" width=\"1\" height=\"1\" border=\"0\"\r\nstyle=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"\r\n        moz-do-not-send=\"true\">\r\n    </div>\r\n  </body>\r\n</html>','     Hi Brian and Rick,\r\n\r\nPlease see the email below re: Mavrix1 QB account and discount ending on \r\n12/18/2025. Do we have a Mavrix1 credit card I could move the monthly \r\ncharges to? Here are the payments I\'ve made so far using my personal \r\ncredit card:\r\n\r\nPlease let me know, thanks!\r\n-KD\r\n-------- Forwarded Message --------\r\nSubject: 	Your discount expires soon\r\nDate: 	Thu, 11 Dec 2025 09:11:06 +0000 (UTC)\r\nFrom: 	Intuit <do_not_reply@intuit.com>\r\nTo: 	katherine@mavrix.one\r\n\r\n\r\n\r\nIntuit(R) Correspondence\r\n\r\nAlert icon\r\n\r\n		*Same notification, new look!* Future bills will now come from Intuit, \r\nthe global finance technology company powering TurboTax, Credit Karma, \r\nQuickBooks, and Mailchimp. Learn more about Intuit \r\n<https://elink.prd.intuit.com/ss/c/u001.HiknLRd2Wv82qs5XbGcPmQ9-J0Ftf0c2f4m9Iuivq_0/4mc/WUCCby4HSVuD7IQG98XJfA/h0/h001.BNSrX1peB_SS80-LsAqmhMrCfQWq9pDKfbDhlzJTNtM> \r\n\r\n\r\nQuickBooks Online logo QuickBooks Online logo \r\n<https://elink.prd.intuit.com/ss/c/u001.HiknLRd2Wv82qs5XbGcPmaKzz8j5FyrRYvYnqm6A9x0/4mc/WUCCby4HSVuD7IQG98XJfA/h1/h001.Kk5IT7FZIpU1kVkhz1BLvxjlrQ9-X-h7f8YZnZaVuKc> \r\n\r\n\r\n\r\nAlert icon\r\n\r\nYour discount expires soon.\r\n\r\nThis is a reminder that the current discount on your subscription is \r\nending on *12/18/2025*. After that, you\'ll be automatically charged the \r\nfull subscription fee of $165.00* plus tax using the payment method you \r\nprovided.\r\n\r\nSubscriptions: 		Multiple subscriptions, see below\r\nPayment method: 		VISA ending in 2672, expires 07/2029\r\n\r\nManage your plan \r\n<https://elink.prd.intuit.com/ss/c/u001.WVMg7PM6utnUYX1Yq78VGCqrCut29Q7J31UBVQAEc-fB8Xb6oj-eVsvejhT0n4fdHxOuE6JehcpeSPpB9bMh_A/4mc/WUCCby4HSVuD7IQG98XJfA/h2/h001.sc16fNMPbELecPI-Xzafy6cSk7qC05d0lB8GeGgr0wo> \r\n\r\n\r\nManaging your plan\r\nOn *12/18/2025* your discount will expire and after that in your next \r\nbilling cycle your payment method will be automatically charged the full \r\nmonthly subscription fee of $165.00* plus tax , along with if any \r\napplicable usage fees every month and thereafter, until you cancel. To \r\navoid such charges, you must cancel your subscription before 12/18/2025 \r\nby going to the Billing & Subscription page.\r\n\r\nAccount details\r\n\r\nSubscriptions: 		QuickBooks Online Plus\r\nQuickBooks Online Payroll Core\r\nCompany ID ending: 		0047\r\nCompany name: 		Mavrix1 LLC\r\nBilling address: 		3900 Coachman Ave\r\nTampa FL 33611\r\nUS\r\n\r\n*Pricing may vary if you have a discount and based on whether you add or \r\nremove services and your usage or if there has been a price increase. \r\nSee your Billing & Subscription \r\n<https://elink.prd.intuit.com/ss/c/u001.gHniYfGSzcxMWfXEaX1bzaKlrrhAViAxLhgNwMs-L7djBP-umEN42lUjJXe7RjmfCSPhswNWwgPN1P4REDKLrA/4mc/WUCCby4HSVuD7IQG98XJfA/h3/h001.C62eExdA1e8mku_Bg7ic8kVdzgpffVI94i8FGYxK7lY> \r\npage for additional pricing details.\r\n\r\nTerms, conditions, pricing, special features, and service and support \r\noptions subject to change without notice.\r\n\r\n<https://elink.prd.intuit.com/ss/c/u001.WVMg7PM6utnUYX1Yq78VGKAknLO2tewNMUQxsiblUypj9l6lDIbhPgg2xqWM-qloERn5F-L-lBPjH34ifFcqEA/4mc/WUCCby4HSVuD7IQG98XJfA/h4/h001.0u71RG6YuX5M3e-eSkpynwgRF4AJrVFoBhsnwS12s0Q> \r\n\r\nQuestions or concerns?\r\nVisit customer support \r\n<https://elink.prd.intuit.com/ss/c/u001.WVMg7PM6utnUYX1Yq78VGKAknLO2tewNMUQxsiblUypj9l6lDIbhPgg2xqWM-qloERn5F-L-lBPjH34ifFcqEA/4mc/WUCCby4HSVuD7IQG98XJfA/h5/h001.mEWE2zjW12C3NE_fgLHXqSutfRrehBStBp-A00AA90I> \r\n\r\n\r\nLook up your charge \r\n<https://elink.prd.intuit.com/ss/c/u001.gKfYpNGYx2pr8ONmrqwjaEuMGBoQkDnPxAGSVSu2ZbPAN3YwPQuOrK6UrgnvP4SU/4mc/WUCCby4HSVuD7IQG98XJfA/h6/h001.QNzCNKS8zTx9dH0hDfDeuNu-nj77RQ80_oeEvhGiZkg> \r\n\r\n\r\nThis message was sent to katherine@mavrix.one , as an Intuit customer, \r\nconsistent with your email preferences. If you have chosen not to \r\nreceive marketing messages, you will continue to receive business \r\ncommunications about your selected Intuit product(s), which may either \r\naffect your service or software, your account, or which may be legally \r\nrequired.\r\n\r\n_Unsubscribe_|_Security \r\n<https://elink.prd.intuit.com/ss/c/u001.3UGN6hpUuP_Ij31NT3eCf_s_EBlC9VF1FLhNMBCWyKKrJSm14HbHaW95APPXnipl/4mc/WUCCby4HSVuD7IQG98XJfA/h7/h001.aJK36HPZVdQWtkmJkFRdWPpMHpV1gv_zFs5ju5Yj6Lw>_|_Privacy \r\nstatement \r\n<https://elink.prd.intuit.com/ss/c/u001.3UGN6hpUuP_Ij31NT3eCf_s_EBlC9VF1FLhNMBCWyKLTL3A6Ok73DiTV4N2DyCQn/4mc/WUCCby4HSVuD7IQG98XJfA/h8/h001.j8zFM4scPiKCSGpIJxN9TbHPpJ6O0xAy3DG0oKepdJ8>_\r\n\r\n© 2025 Intuit Inc., Trademarks \r\n<https://elink.prd.intuit.com/ss/c/u001.HiknLRd2Wv82qs5XbGcPmZOrYcAHmizlvvH0WxVDGyW6fD7jUs7MMZPs0BUVNoj4/4mc/WUCCby4HSVuD7IQG98XJfA/h9/h001.b9H3A7P-fOSotEb33bcPMUcpNQMyTF4SrK8N8t2JB8Y>.\r\n\r\nIntuit Inc. 2800 E. Commerce Center Place, Tucson, AZ 85706\r\nIntuit brands \r\n<https://elink.prd.intuit.com/ss/c/u001.k8TuIeZY_zD5fyUIu1P2peumR5wtDWjhqGxp3KR4pyc9PhNZsARt5BCw6bj_NUCXIeNlq_7SbPieHIOwSfFTc4OaCpEN6IviuUHyyjyy8EvP9YYlKbcYVtkfLh6lLr2cJLhLP_ZYiTl5HfLcIiQSEncbixu-FIEIT6YneLoBZhUYF7U2sf4buP9OXjnRXYQ9Nanga0wTjbXKLcLd9MhqlIElEXgnStZcrJlfDQpPQzc/4mc/WUCCby4HSVuD7IQG98XJfA/h10/h001.Uiy0EbuYEjtKsPTI-allBmifiZDYTREc5CfN51HRkco> \r\n\r\nIntuit brands \r\n<https://elink.prd.intuit.com/ss/c/u001.k8TuIeZY_zD5fyUIu1P2peumR5wtDWjhqGxp3KR4pyc9PhNZsARt5BCw6bj_NUCXIeNlq_7SbPieHIOwSfFTc4OaCpEN6IviuUHyyjyy8EvP9YYlKbcYVtkfLh6lLr2cJLhLP_ZYiTl5HfLcIiQSEncbixu-FIEIT6YneLoBZhUYF7U2sf4buP9OXjnRXYQ9Nanga0wTjbXKLcLd9MhqlIElEXgnStZcrJlfDQpPQzc/4mc/WUCCby4HSVuD7IQG98XJfA/h11/h001.38QyWXp2JOd1UJHg6q42_NjZ4aqagCD4n4UCOOLfpr4> \r\n\r\n\r\nhKey=OBILL|Discount_Expiry|realmId=Hzdgl8YkR79XYnizOsflFA+rINIVfK3DneqM1c9XbKw \r\n|locale=en_US, majorBrand=Intuit, legalEntity=100, currency=USD, \r\nintuitTid=028aec08-9f0e-46f1-829b-21f41beedc46, environment=prd, \r\nsource=OINP',0,0,0,0,0,0,'2025-12-11 18:19:36','2025-12-12 00:46:23','2025-12-12 00:46:23','2025-12-12 00:46:23',NULL,NULL,NULL),
(1032,4,'<CAGOCFXj8-oVS_FHrfrA5hv7hCX5DdR+RZiUJh1atbkTA2Rxv3A@mail.gmail.com>',NULL,NULL,'LBC Marketing Plan (Business Development)','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Jordan</div><div><br></div><div>I have attached the marketing plans for LBC to this email. These plans outline our focus for the next several months as we work to build out a more successful lead generation strategy.</div><div><br></div><div>Please review the attached document and let me know what you think.   </div><div><br></div><div>Nathan</div><div><br></div><br></div>','Jordan\r\n\r\nI have attached the marketing plans for LBC to this email. These plans\r\noutline our focus for the next several months as we work to build out a\r\nmore successful lead generation strategy.\r\n\r\nPlease review the attached document and let me know what you think.\r\n\r\nNathan',0,0,0,0,0,0,'2025-12-11 18:58:26','2025-12-12 00:46:24','2025-12-12 00:46:24','2025-12-12 00:46:24',NULL,NULL,NULL),
(1033,4,'<0a40055a5d383d2bdc840c98c.d8f79ebc6f.20251211205224.4fe0e33658.8ccd1e7e@mail106.atl231.mcsv.net>',NULL,NULL,'=?utf-8?Q?Bista=20Newsletter=3A=20Seasonal=20Wrap=20Up?=','marketing@bistasolutions.com','\"Bista Solutions Inc.\"','<!DOCTYPE html><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head>\r\n<!--[if gte mso 15]>\r\n<xml>\r\n<o:OfficeDocumentSettings>\r\n<o:AllowPNG/>\r\n<o:PixelsPerInch>96</o:PixelsPerInch>\r\n</o:OfficeDocumentSettings>\r\n</xml>\r\n<![endif]-->\r\n<meta charset=\"UTF-8\" />\r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" />\r\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\r\n<title>Bista Newsletter: Seasonal Wrap Up</title>\r\n<link rel=\"preconnect\" href=\"https://fonts.googleapis.com\" />\r\n<link rel=\"preconnect\" href=\"https://fonts.gstatic.com\" crossorigin=\"\" />\r\n<!--[if !mso]><!--><link rel=\"stylesheet\" type=\"text/css\" id=\"newGoogleFontsStatic\" href=\"https://fonts.googleapis.com/css?family=Gilda+Display:400,400i,700,700i,900,900i|Catamaran:400,400i,700,700i,900,900i|Source+Sans+3:400,400i,700,700i,900,900i|Roboto:400,400i,700,700i,900,900i|Marcellus:400,400i,700,700i,900,900i\" /><!--<![endif]--><style>img{-ms-interpolation-mode:bicubic;}\r\ntable, td{mso-table-lspace:0pt;mso-table-rspace:0pt;}\r\n.mceStandardButton, .mceStandardButton td, .mceStandardButton td a{mso-hide:all!important;}\r\np, a, li, td, blockquote{mso-line-height-rule:exactly;}\r\np, a, li, td, body, table, blockquote{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}\r\n.mcnPreviewText{display:none!important;}\r\n.bodyCell{margin:0 auto;padding:0;width:100%;}\r\n.ExternalClass, .ExternalClass p, .ExternalClass td, .ExternalClass div, .ExternalClass span, .ExternalClass font{line-height:100%;}\r\n.ReadMsgBody, .ExternalClass{width:100%;}\r\na[x-apple-data-detectors]{color:inherit!important;text-decoration:none!important;font-size:inherit!important;font-family:inherit!important;font-weight:inherit!important;line-height:inherit!important;}\r\nbody{height:100%;margin:0;padding:0;width:100%;background:#ffffff;}\r\np{margin:0;padding:0;}\r\ntable{border-collapse:collapse;}\r\ntd, p, a{word-break:break-word;}\r\nh1, h2, h3, h4, h5, h6{display:block;margin:0;padding:0;}\r\nimg, a img{border:0;height:auto;outline:none;text-decoration:none;}\r\na[href^=\"tel\"], a[href^=\"sms\"]{color:inherit;cursor:default;text-decoration:none;}\r\n.mceColumn .mceButtonLink,\r\n            .mceColumn-1 .mceButtonLink,\r\n            .mceColumn-2 .mceButtonLink,\r\n            .mceColumn-3 .mceButtonLink,\r\n            .mceColumn-4 .mceButtonLink{min-width:30px;}\r\ndiv[contenteditable=\"true\"]{outline:0;}\r\n.mceImageBorder{display:inline-block;}\r\n.mceImageBorder img{border:0!important;}\r\nbody, #bodyTable{background-color:rgb(244, 244, 244);}\r\n.mceText, .mcnTextContent, .mceLabel{font-family:\"Helvetica Neue\", Helvetica, Arial, Verdana, sans-serif;}\r\n.mceText, .mcnTextContent, .mceLabel{color:rgb(0, 0, 0);}\r\n.mceText h1, .mceText p, .mceText label, .mceText input{margin-bottom:0;}\r\n.mceSpacing-12 .mceInput + .mceErrorMessage{margin-top:-6px;}\r\n.mceSpacing-24 .mceInput + .mceErrorMessage{margin-top:-12px;}\r\n.mceInput{background-color:transparent;border:2px solid rgb(208, 208, 208);width:60%;color:rgb(77, 77, 77);display:block;}\r\n.mceInput[type=\"radio\"], .mceInput[type=\"checkbox\"]{float:left;margin-right:12px;display:inline;width:auto!important;}\r\n.mceLabel > .mceInput{margin-bottom:0;margin-top:2px;}\r\n.mceLabel{display:block;}\r\n.mceText p, .mcnTextContent p{color:rgb(0, 0, 0);font-family:\"Helvetica Neue\", Helvetica, Arial, Verdana, sans-serif;font-size:16px;font-weight:normal;line-height:1.5;mso-line-height-alt:150%;text-align:center;letter-spacing:0;direction:ltr;margin:0;}\r\n.mceText h1, .mcnTextContent h1{color:rgb(0, 0, 0);font-family:\"Helvetica Neue\", Helvetica, Arial, Verdana, sans-serif;font-size:31px;font-weight:bold;line-height:1.5;mso-line-height-alt:150%;text-align:center;letter-spacing:0;direction:ltr;}\r\n.mceText a, .mcnTextContent a{color:rgb(0, 0, 0);font-style:normal;font-weight:normal;text-decoration:underline;direction:ltr;}\r\np.mcePastedContent, h1.mcePastedContent, h2.mcePastedContent, h3.mcePastedContent, h4.mcePastedContent{text-align:left;}\r\n#d84 p, #d84 h1, #d84 h2, #d84 h3, #d84 h4, #d84 ul{text-align:center;}\r\n@media only screen and (max-width: 480px) {\r\nbody, table, td, p, a, li, blockquote{-webkit-text-size-adjust:none!important;}\r\nbody{width:100%!important;min-width:100%!important;}\r\nbody.mobile-native{-webkit-user-select:none;user-select:none;transition:transform 0.2s ease-in;transform-origin:top center;}\r\ncolgroup{display:none;}\r\n.mceLogo img, .mceImage img, .mceSocialFollowIcon img{height:auto!important;}\r\n.mceWidthContainer{max-width:660px!important;}\r\n.mceColumn, .mceColumn-2{display:block!important;width:100%!important;}\r\n.mceColumn-forceSpan{display:table-cell!important;width:auto!important;}\r\n.mceColumn-forceSpan .mceButton a{min-width:0!important;}\r\n.mceReverseStack{display:table;width:100%;}\r\n.mceColumn-1{display:table-footer-group;width:100%!important;}\r\n.mceColumn-3{display:table-header-group;width:100%!important;}\r\n.mceColumn-4{display:table-caption;width:100%!important;}\r\n.mceKeepColumns .mceButtonLink{min-width:0;}\r\n.mceBlockContainer, .mceSpacing-24{padding-right:16px!important;padding-left:16px!important;}\r\n.mceBlockContainerE2E{padding-right:0;padding-left:0;}\r\n.mceImage, .mceLogo{width:100%!important;height:auto!important;}\r\n.mceText img{max-width:100%!important;}\r\n.mceFooterSection .mceText, .mceFooterSection .mceText p{font-size:16px!important;line-height:140%!important;}\r\n.mceText p{margin:0;font-size:16px!important;line-height:1.5!important;mso-line-height-alt:150%;}\r\n.mceText h1{font-size:31px!important;line-height:1.5!important;mso-line-height-alt:150%;}\r\n.bodyCell{padding-left:16px!important;padding-right:16px!important;}\r\n.mceButtonContainer{width:fit-content!important;max-width:fit-content!important;}\r\n.mceButtonLink{padding:18px 28px!important;font-size:16px!important;}\r\n.mceDividerContainer{width:100%!important;}\r\n#b7 .mceTextBlockContainer, #b77 .mceTextBlockContainer, #b78, #b183 .mceTextBlockContainer, #b184 .mceTextBlockContainer, #b185 .mceTextBlockContainer, #b186 .mceTextBlockContainer, #b272 .mceTextBlockContainer, #b273 .mceTextBlockContainer, #b281 .mceTextBlockContainer, #b288, #b290, #b431, #b463, #b464, #b465 .mceTextBlockContainer, #b475 .mceTextBlockContainer, #b479 .mceTextBlockContainer, #b488 .mceTextBlockContainer, #b493 .mceTextBlockContainer, #b515{padding:12px 24px!important;}\r\n#gutterContainerId-7, #gutterContainerId-77, #gutterContainerId-84, #gutterContainerId-183, #gutterContainerId-184, #gutterContainerId-185, #gutterContainerId-186, #gutterContainerId-272, #gutterContainerId-273, #gutterContainerId-281, #gutterContainerId-401, #b421, #gutterContainerId-428, #gutterContainerId-465, #gutterContainerId-475, #gutterContainerId-479, #gutterContainerId-488, #gutterContainerId-493, #gutterContainerId-514{padding:0!important;}\r\n#b16 .mceDividerBlock, #b267 .mceDividerBlock, #b283 .mceDividerBlock, #b400 .mceDividerBlock, #b402 .mceDividerBlock, #b448 .mceDividerBlock, #b473 .mceDividerBlock{border-top-width:2px!important;}\r\n#b16, #b267, #b283, #b400, #b402, #b448, #b473{padding:20px 24px!important;}\r\n#b76, #b210, #b399{padding:12px 0!important;}\r\n#b76 table{margin-right:auto!important;float:none!important;}\r\n#b78 table, #b288 table, #b290 table, #b431 table, #b515 table{float:none!important;margin:0 auto!important;}\r\n#b78 .mceButtonContainer{width:50%!important;max-width:50%!important;}\r\n#b78 .mceButtonLink{padding-top:16px!important;padding-bottom:16px!important;font-size:20px!important;}\r\n#b84 .mceTextBlockContainer, #b466, #b474, #b477, #b489, #b501{padding:12px 16px!important;}\r\n#b210 table, #b399 table, #b421 table, #b463 table, #b464 table, #b466 table, #b474 table, #b477 table, #b489 table, #b501 table{margin-left:auto!important;margin-right:auto!important;float:none!important;}\r\n#b288 .mceButtonLink, #b290 .mceButtonLink, #b431 .mceButtonLink, #b515 .mceButtonLink{padding-top:16px!important;padding-bottom:16px!important;font-size:16px!important;}\r\n#b401 .mceTextBlockContainer{padding:0 24px 12px!important;}\r\n#b428 .mceTextBlockContainer{padding:80px 24px 12px!important;}\r\n#b514 .mceTextBlockContainer{padding:75px 24px 12px!important;}\r\n}\r\n@media only screen and (max-width: 640px) {\r\n.mceClusterLayout td{padding:4px!important;}\r\n}</style></head>\r\n<body>\r\n<!--\r\n-->\r\n<div style=\"display: none; max-height: 0px; overflow: hidden;\">͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌    ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­</div><div style=\"display:none;\"><img src=\"https://bistasolutions.us21.list-manage.com/track/open.php?u=0a40055a5d383d2bdc840c98c&id=4fe0e33658&e=d8f79ebc6f\" height=\"1\" width=\"1\" style=\"display:none;\" alt=\"\"></div>\r\n<center>\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\" id=\"bodyTable\" style=\"background-color: rgb(244, 244, 244);\">\r\n<tbody><tr>\r\n<td class=\"bodyCell\" align=\"center\" valign=\"top\">\r\n<table id=\"root\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tbody data-block-id=\"3\" class=\"mceWrapper\"><tr><td style=\"background-color:#f4f4f4\" valign=\"top\" align=\"center\" class=\"mceSectionHeader\"><!--[if (gte mso 9)|(IE)]><table align=\"center\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"660\" style=\"width:660px;\"><tr><td><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"max-width:660px\" role=\"presentation\"><tbody><tr><td style=\"background-color:#ffffff\" valign=\"top\" class=\"mceWrapperInner\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"2\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0\" valign=\"top\" class=\"mceColumn\" id=\"mceColumnId--24\" data-block-id=\"-24\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"background-color:#000000;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" class=\"mceImageBlockContainer\" align=\"center\" id=\"b421\"><div><!--[if !mso]><!--></div><a href=\"https://bistasolutions.us21.list-manage.com/track/click?u=0a40055a5d383d2bdc840c98c&id=881f844187&e=d8f79ebc6f\" style=\"display:block\" target=\"_blank\" data-block-id=\"421\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate;margin:0;vertical-align:top;max-width:100%;width:100%;height:auto\" role=\"presentation\" data-testid=\"image-421\"><tbody><tr><td style=\"border:0;border-radius:0;margin:0\" valign=\"top\"><img alt=\"\" src=\"https://mcusercontent.com/0a40055a5d383d2bdc840c98c/images/81a113db-8cd4-bf51-3777-33f729f6941e.jpg\" width=\"660\" height=\"auto\" style=\"display:block;max-width:100%;height:auto;border-radius:0\" class=\"imageDropZone mceImage\" /></td></tr></tbody></table></a><div><!--<![endif]--></div><div>\r\n<!--[if mso]>\r\n<a href=\"https://www.bistasolutions.com/\"><span class=\"mceImageBorder\" style=\"border:0;border-width:2px;vertical-align:top;margin:0\"><img role=\"presentation\" class=\"imageDropZone mceImage\" src=\"https://mcusercontent.com/0a40055a5d383d2bdc840c98c/images/81a113db-8cd4-bf51-3777-33f729f6941e.jpg\" alt=\"\" width=\"660\" height=\"auto\" style=\"display:block;max-width:660px;width:660px;height:auto\"/></span></a>\r\n<![endif]-->\r\n</div></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><!--[if (gte mso 9)|(IE)]></td></tr></table><![endif]--></td></tr></tbody><tbody data-block-id=\"82\" class=\"mceWrapper\"><tr><td style=\"background-color:#f4f4f4\" valign=\"top\" align=\"center\" class=\"mceSectionBody\"><!--[if (gte mso 9)|(IE)]><table align=\"center\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"660\" style=\"width:660px;\"><tr><td><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"max-width:660px\" role=\"presentation\"><tbody><tr><td style=\"background-color:#ffffff\" valign=\"top\" class=\"mceWrapperInner\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"81\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0\" valign=\"top\" class=\"mceColumn\" id=\"mceColumnId--25\" data-block-id=\"-25\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0\" valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-7\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" id=\"b7\"><table width=\"100%\" style=\"border:0;background-color:#202020;border-radius:0;border-collapse:separate\"><tbody><tr><td style=\"padding-left:24px;padding-right:24px;padding-top:12px;padding-bottom:12px\" class=\"mceTextBlockContainer\"><div data-block-id=\"7\" class=\"mceText\" id=\"d7\" style=\"width:100%\"><p style=\"line-height: 0; mso-line-height-alt: 0%; text-align: center;\"><br /></p><p style=\"text-align: center;\"><br /></p><p style=\"text-align: center;\"><em><span style=\"color:#daaf56;\"><span style=\"font-size: 20px\"><span style=\"font-family: \'Gilda Display\', serif\">“</span></span></span><strong><span style=\"color:#daaf56;\"><span style=\"font-family: \'Gilda Display\', serif\">As we close out 2025, we’re excited to share a holiday snapshot of what has been driving momentum at Bista.</span></span></strong></em></p><p style=\"text-align: center;\"><br /></p><p style=\"text-align: center;\"><em><span style=\"color:#ffffff;\"><span style=\"font-size: 15px\"><span style=\"font-family: \'Helvetica Neue\', Helvetica, Arial, Verdana, sans-serif\">Our AI advancements, including the </span></span></span><span style=\"color:#f46f34;\"><span style=\"font-size: 15px\"><span style=\"font-family: \'Helvetica Neue\', Helvetica, Arial, Verdana, sans-serif\">Odoo Co-pilot</span></span></span><span style=\"color:#ffffff;\"><span style=\"font-size: 15px\"><span style=\"font-family: \'Helvetica Neue\', Helvetica, Arial, Verdana, sans-serif\"> and our expanding </span></span></span><span style=\"color:#f46f34;\"><span style=\"font-size: 15px\"><span style=\"font-family: \'Helvetica Neue\', Helvetica, Arial, Verdana, sans-serif\">AI agent capabilities,</span></span></span><span style=\"color:#ffffff;\"><span style=\"font-size: 15px\"><span style=\"font-family: \'Helvetica Neue\', Helvetica, Arial, Verdana, sans-serif\"> continue to push the boundaries of intelligent ERP. At the same time, our team remains </span></span></span><span style=\"color:#f46f34;\"><span style=\"font-size: 15px\"><span style=\"font-family: \'Helvetica Neue\', Helvetica, Arial, Verdana, sans-serif\">fully certified</span></span></span><span style=\"color:#ffffff;\"><span style=\"font-size: 15px\"><span style=\"font-family: \'Helvetica Neue\', Helvetica, Arial, Verdana, sans-serif\"> and trained on the latest releases, including </span></span></span><span style=\"color:#f46f34;\"><span style=\"font-size: 15px\"><span style=\"font-family: \'Helvetica Neue\', Helvetica, Arial, Verdana, sans-serif\">Odoo 19,</span></span></span><span style=\"color:#ffffff;\"><span style=\"font-size: 15px\"><span style=\"font-family: \'Helvetica Neue\', Helvetica, Arial, Verdana, sans-serif\"> so every implementation meets the highest standards of performance and reliability. We’re also entering </span></span></span><span style=\"color:#f46f34;\"><span style=\"font-size: 15px\"><span style=\"font-family: \'Helvetica Neue\', Helvetica, Arial, Verdana, sans-serif\">new partnerships</span></span></span><span style=\"color:#ffffff;\"><span style=\"font-size: 15px\"><span style=\"font-family: \'Helvetica Neue\', Helvetica, Arial, Verdana, sans-serif\"> that strengthen the ecosystem our clients can build on. And as an </span></span></span><span style=\"color:#f46f34;\"><span style=\"font-size: 15px\"><span style=\"font-family: \'Helvetica Neue\', Helvetica, Arial, Verdana, sans-serif\">8x Odoo Best Partner across North America </span></span></span><span style=\"color:#ffffff;\"><span style=\"font-size: 15px\"><span style=\"font-family: \'Helvetica Neue\', Helvetica, Arial, Verdana, sans-serif\">with several major shows ahead, we’re genuinely grateful to our clients and community for the trust and support that make this work possible.</span></span></span></em></p><p style=\"text-align: center;\"><br /></p><p style=\"text-align: center;\" class=\"last-child\"><em><strong><span style=\"color:#daaf56;\"><span style=\"font-family: \'Gilda Display\', serif\">Thank you for being part of this journey with us. Wishing you and your loved ones a warm and happy holiday season.</span></span></strong><span style=\"color:#daaf56;\"><span style=\"font-size: 20px\"><span style=\"font-family: \'Gilda Display\', serif\">”</span></span></span></em></p></div></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-363\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"background-color:#202020;padding-top:8px;padding-bottom:8px;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" class=\"mceLayoutContainer\" id=\"b363\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"363\" id=\"section_bdc4d8d8e7e6fe634476aa2e5461abf3\" class=\"mceLayout\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td valign=\"top\" class=\"mceColumn\" id=\"mceColumnId--29\" data-block-id=\"-29\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"border:0;border-radius:0\" valign=\"top\" align=\"center\" id=\"b-9\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"-9\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td valign=\"top\" class=\"mceColumn\" id=\"mceColumnId--39\" data-block-id=\"-39\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"border:0;border-radius:0\" valign=\"top\" id=\"b362\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"362\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"24\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0\" valign=\"top\" class=\"mceColumn\" id=\"mceColumnId-361\" data-block-id=\"361\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"background-color:#202020;padding-top:20px;padding-bottom:20px;padding-right:24px;padding-left:24px;border:0;border-radius:0\" valign=\"top\" class=\"mceDividerBlockContainer\" id=\"b448\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"background-color:#202020;width:100%\" role=\"presentation\" class=\"mceDividerContainer\" data-block-id=\"448\"><tbody><tr><td style=\"min-width:100%;border-top-width:2px;border-top-style:solid;border-top-color:#707070;line-height:0;font-size:0\" valign=\"top\" class=\"mceDividerBlock\"> </td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0\" valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-273\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" id=\"b273\"><table width=\"100%\" style=\"border:0;background-color:#202020;border-radius:0;border-collapse:separate\"><tbody><tr><td style=\"padding-left:24px;padding-right:24px;padding-top:12px;padding-bottom:12px\" class=\"mceTextBlockContainer\"><div data-block-id=\"273\" class=\"mceText\" id=\"d273\" style=\"width:100%\"><h1 class=\"mcePastedContent\" style=\"letter-spacing: 2px; text-align: center;\"><strong><span style=\"color:rgb(244, 111, 52);\"><span style=\"font-size: 28px\"><span style=\"font-family: \'Marcellus\', serif\">BISTA SOLUTIONS IS OFFICIALLY </span></span></span></strong></h1><h1 class=\"mcePastedContent last-child\" style=\"letter-spacing: 2px; text-align: center;\"><strong><span style=\"color:rgb(255, 255, 255);\"><span style=\"font-size: 28px\"><span style=\"font-family: \'Source Sans 3\', \'Helvetica Neue\', Helvetica, Arial, sans-serif\">A SHOPIFY PARTNER</span></span></span></strong></h1></div></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-395\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"background-color:#202020;padding-top:0;padding-bottom:12px;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" class=\"mceLayoutContainer\" id=\"b395\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"395\" id=\"section_000f2d127e12d42373db7f1206ee1b22\" class=\"mceLayout\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td valign=\"top\" class=\"mceColumn\" id=\"mceColumnId--30\" data-block-id=\"-30\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"border:0;border-radius:0\" valign=\"top\" align=\"center\" id=\"b-11\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"-11\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td valign=\"top\" class=\"mceColumn\" id=\"mceColumnId--40\" data-block-id=\"-40\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"border:0;border-radius:0\" valign=\"top\" id=\"b398\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"398\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"24\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0\" valign=\"top\" class=\"mceColumn\" id=\"mceColumnId-397\" data-block-id=\"397\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"background-color:#202020;padding-top:12px;padding-bottom:12px;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" class=\"mceImageBlockContainer\" align=\"center\" id=\"b399\"><div><!--[if !mso]><!--></div><a href=\"https://bistasolutions.us21.list-manage.com/track/click?u=0a40055a5d383d2bdc840c98c&id=1f586e004d&e=d8f79ebc6f\" style=\"display:block\" target=\"_blank\" data-block-id=\"399\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"51%\" style=\"border-collapse:separate;margin:0;vertical-align:top;max-width:51%;width:51%;height:auto\" role=\"presentation\" data-testid=\"image-399\"><tbody><tr><td style=\"border-width:10px;border-style:outset;border-color:#f46f34;border-radius:300px;margin:0\" valign=\"top\"><img alt=\"Bista Solutions and Shopify partnership\" src=\"https://mcusercontent.com/0a40055a5d383d2bdc840c98c/images/3bef34f8-9ce5-7829-2f22-202d5fd00d79.jpg\" width=\"326.4\" height=\"auto\" style=\"display:block;max-width:100%;height:auto;border-radius:290px\" class=\"mceImage\" /></td></tr></tbody></table></a><div><!--<![endif]--></div><div>\r\n<!--[if mso]>\r\n<a href=\"https://www.bistasolutions.com/solutions/ecommerce/shopify-partner/\"><span class=\"mceImageBorder\" style=\"border-width:8px;border-style:outset;border-color:#f46f34;vertical-align:top;margin:0\"><img role=\"presentation\" class=\"mceImage\" src=\"https://mcusercontent.com/0a40055a5d383d2bdc840c98c/images/3bef34f8-9ce5-7829-2f22-202d5fd00d79.jpg\" alt=\"Bista Solutions and Shopify partnership\" width=\"328.44\" height=\"auto\" style=\"display:block;max-width:328.44px;width:328.44px;height:auto\"/></span></a>\r\n<![endif]-->\r\n</div></td></tr><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0\" valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-401\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" id=\"b401\"><table width=\"100%\" style=\"border:0;background-color:#202020;border-radius:0;border-collapse:separate\"><tbody><tr><td style=\"padding-left:24px;padding-right:24px;padding-top:0;padding-bottom:12px\" class=\"mceTextBlockContainer\"><div data-block-id=\"401\" class=\"mceText\" id=\"d401\" style=\"width:100%\"><p><br /></p><p><strong><span style=\"color:#daaf56;\">Bista Solutions is pleased to announce our partnership with Shopify, one of the world’s premier e-commerce platforms. </span></strong></p><p><br /></p><p class=\"last-child\"><span style=\"color:rgb(255, 255, 255);\">This partnership strengthens our commitment to delivering intelligent, fully integrated business solutions that help organizations scale with precision and efficiency. As both a Shopify Partner and an Odoo Gold Partner, Bista now offers the best of both ecosystems: a world-class online retail experience through Shopify paired with powerful backend operations driven by Odoo ERP.</span></p></div></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td style=\"background-color:#202020;padding-top:20px;padding-bottom:20px;padding-right:24px;padding-left:24px;border:0;border-radius:0\" valign=\"top\" class=\"mceDividerBlockContainer\" id=\"b400\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"background-color:#202020;width:100%\" role=\"presentation\" class=\"mceDividerContainer\" data-block-id=\"400\"><tbody><tr><td style=\"min-width:100%;border-top-width:2px;border-top-style:solid;border-top-color:#707070;line-height:0;font-size:0\" valign=\"top\" class=\"mceDividerBlock\"> </td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0\" valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-465\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" id=\"b465\"><table width=\"100%\" style=\"border:0;background-color:#202020;border-radius:0;border-collapse:separate\"><tbody><tr><td style=\"padding-left:24px;padding-right:24px;padding-top:12px;padding-bottom:12px\" class=\"mceTextBlockContainer\"><div data-block-id=\"465\" class=\"mceText\" id=\"d465\" style=\"width:100%\"><h1 class=\"mcePastedContent\" style=\"letter-spacing: 2px; text-align: center;\"><strong><span style=\"color:rgb(244, 111, 52);\"><span style=\"font-size: 28px\"><span style=\"font-family: \'Marcellus\', serif\">SOME AI DEVELOPMENTS</span><span style=\"font-family: \'Source Sans 3\', \'Helvetica Neue\', Helvetica, Arial, sans-serif\"> </span></span></span></strong></h1><h1 class=\"mcePastedContent last-child\" style=\"letter-spacing: 2px; text-align: center;\"><strong><span style=\"color:rgb(255, 255, 255);\"><span style=\"font-size: 28px\"><span style=\"font-family: \'Source Sans 3\', \'Helvetica Neue\', Helvetica, Arial, sans-serif\">BY BISTA SOLUTIONS</span></span></span></strong></h1></div></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-457\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"background-color:#202020;padding-top:12px;padding-bottom:12px;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" class=\"mceLayoutContainer\" id=\"b457\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"457\" id=\"section_3798d0c810dcfdbb3af21136ac03bdde\" class=\"mceLayout\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td valign=\"top\" class=\"mceColumn\" id=\"mceColumnId--31\" data-block-id=\"-31\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"border:0;border-radius:0\" valign=\"top\" align=\"center\" id=\"b-13\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"-13\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td valign=\"top\" class=\"mceColumn\" id=\"mceColumnId--41\" data-block-id=\"-41\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"border:0;border-radius:0\" valign=\"top\" id=\"b462\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"462\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover;padding-top:0px;padding-bottom:0px\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"24\" width=\"100%\" style=\"table-layout:fixed\" role=\"presentation\"><colgroup><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /></colgroup><tbody><tr><td style=\"padding-top:0;padding-bottom:0\" valign=\"top\" class=\"mceColumn\" id=\"mceColumnId-459\" data-block-id=\"459\" colspan=\"6\" width=\"50%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"background-color:#202020;padding-top:12px;padding-bottom:12px;padding-right:24px;padding-left:24px;border:0;border-radius:0\" valign=\"top\" class=\"mceImageBlockContainer\" align=\"center\" id=\"b463\"><div><!--[if !mso]><!--></div><a href=\"https://bistasolutions.us21.list-manage.com/track/click?u=0a40055a5d383d2bdc840c98c&id=63a7ed1605&e=d8f79ebc6f\" style=\"display:block\" target=\"_blank\" data-block-id=\"463\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate;margin:0;vertical-align:top;max-width:100%;width:100%;height:auto\" role=\"presentation\" data-testid=\"image-463\"><tbody><tr><td style=\"border:0;border-top-left-radius:150px;margin:0\" valign=\"top\"><img alt=\"\" src=\"https://mcusercontent.com/0a40055a5d383d2bdc840c98c/images/25371aa1-a64e-226b-29e0-84e8c86455a3.gif\" width=\"282\" height=\"auto\" style=\"display:block;max-width:100%;height:auto;border-top-left-radius:150px\" class=\"imageDropZone mceImage\" /></td></tr></tbody></table></a><div><!--<![endif]--></div><div>\r\n<!--[if mso]>\r\n<a href=\"https://odoocopilot.ai/\"><span class=\"mceImageBorder\" style=\"border:0;vertical-align:top;margin:0\"><img role=\"presentation\" class=\"imageDropZone mceImage\" src=\"https://mcusercontent.com/0a40055a5d383d2bdc840c98c/images/25371aa1-a64e-226b-29e0-84e8c86455a3.gif\" alt=\"\" width=\"282\" height=\"auto\" style=\"display:block;max-width:282px;width:282px;height:auto\"/></span></a>\r\n<![endif]-->\r\n</div></td></tr></tbody></table></td><td style=\"padding-top:0;padding-bottom:0\" valign=\"top\" class=\"mceColumn\" id=\"mceColumnId-461\" data-block-id=\"461\" colspan=\"6\" width=\"50%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"background-color:#202020;padding-top:12px;padding-bottom:12px;padding-right:24px;padding-left:24px;border:0;border-radius:0\" valign=\"top\" class=\"mceImageBlockContainer\" align=\"center\" id=\"b464\"><div><!--[if !mso]><!--></div><a href=\"https://bistasolutions.us21.list-manage.com/track/click?u=0a40055a5d383d2bdc840c98c&id=b1f5a769a5&e=d8f79ebc6f\" style=\"display:block\" target=\"_blank\" data-block-id=\"464\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate;margin:0;vertical-align:top;max-width:100%;width:100%;height:auto\" role=\"presentation\" data-testid=\"image-464\"><tbody><tr><td style=\"border:0;border-top-right-radius:150px;margin:0\" valign=\"top\"><img alt=\"\" src=\"https://mcusercontent.com/0a40055a5d383d2bdc840c98c/images/69f873ea-c114-7088-5c13-9a417c5d076d.gif\" width=\"282\" height=\"auto\" style=\"display:block;max-width:100%;height:auto;border-top-right-radius:150px\" class=\"imageDropZone mceImage\" /></td></tr></tbody></table></a><div><!--<![endif]--></div><div>\r\n<!--[if mso]>\r\n<a href=\"https://odooagent.ai/\"><span class=\"mceImageBorder\" style=\"border:0;vertical-align:top;margin:0\"><img role=\"presentation\" class=\"imageDropZone mceImage\" src=\"https://mcusercontent.com/0a40055a5d383d2bdc840c98c/images/69f873ea-c114-7088-5c13-9a417c5d076d.gif\" alt=\"\" width=\"282\" height=\"auto\" style=\"display:block;max-width:282px;width:282px;height:auto\"/></span></a>\r\n<![endif]-->\r\n</div></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td style=\"background-color:#202020;padding-top:20px;padding-bottom:20px;padding-right:24px;padding-left:24px;border:0;border-radius:0\" valign=\"top\" class=\"mceDividerBlockContainer\" id=\"b16\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"background-color:#202020;width:100%\" role=\"presentation\" class=\"mceDividerContainer\" data-block-id=\"16\"><tbody><tr><td style=\"min-width:100%;border-top-width:2px;border-top-style:solid;border-top-color:#707070;line-height:0;font-size:0\" valign=\"top\" class=\"mceDividerBlock\"> </td></tr></tbody></table></td></tr><tr><td valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-494\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"background-color:#202020;padding-top:12px;padding-bottom:12px;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" class=\"mceLayoutContainer\" id=\"b494\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"494\" id=\"section_500bf22c238b9ce801f2b43720aaf6b4\" class=\"mceLayout\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td valign=\"top\" class=\"mceColumn\" id=\"mceColumnId--35\" data-block-id=\"-35\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"border:0;border-radius:0\" valign=\"top\" align=\"center\" id=\"b-21\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"-21\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td valign=\"top\" class=\"mceColumn\" id=\"mceColumnId--45\" data-block-id=\"-45\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"border:0;border-radius:0\" valign=\"top\" id=\"b499\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"499\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover;padding-top:0px;padding-bottom:0px\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"24\" width=\"100%\" style=\"table-layout:fixed\" role=\"presentation\"><colgroup><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /></colgroup><tbody><tr><td style=\"padding-top:0;padding-bottom:0\" valign=\"top\" class=\"mceColumn\" id=\"mceColumnId-496\" data-block-id=\"496\" colspan=\"4\" width=\"33.33333333333333%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0\" valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-428\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" id=\"b428\"><table width=\"100%\" style=\"border:0;background-color:#202020;border-radius:0;border-collapse:separate\"><tbody><tr><td style=\"padding-left:24px;padding-right:24px;padding-top:80px;padding-bottom:12px\" class=\"mceTextBlockContainer\"><div data-block-id=\"428\" class=\"mceText\" id=\"d428\" style=\"width:100%\"><h1 class=\"mcePastedContent\" style=\"letter-spacing: 2px; text-align: center;\"><strong><span style=\"color:rgb(244, 111, 52);\"><span style=\"font-size: 26px\"><span style=\"font-family: \'Marcellus\', serif\">FEATURED CASE STUDY</span></span></span></strong></h1><h1 class=\"mcePastedContent\" style=\"letter-spacing: 2px; text-align: center;\"><strong><span style=\"color:rgb(255, 255, 255);\"><span style=\"font-size: 18px\"><span style=\"font-family: &quot;Source Sans 3&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif\">HEALTHCARE INDUSTRY</span></span></span></strong></h1><p class=\"mcePastedContent last-child\"><br /></p></div></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td style=\"background-color:transparent;padding-top:12px;padding-bottom:12px;padding-right:24px;padding-left:24px;border:0;border-radius:0\" valign=\"top\" class=\"mceButtonBlockContainer\" align=\"center\" id=\"b431\"><div><!--[if !mso]><!--></div><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" data-block-id=\"431\" class=\"mceButtonContainer\"><tbody><tr class=\"mceStandardButton\"><td style=\"background-color:#f46f34;border-radius:8px;text-align:center\" valign=\"top\" class=\"mceButton\"><a href=\"https://bistasolutions.us21.list-manage.com/track/click?u=0a40055a5d383d2bdc840c98c&id=f9b0813171&e=d8f79ebc6f\" target=\"_blank\" class=\"mceButtonLink\" style=\"background-color:#f46f34;border-radius:8px;border:1px solid #636363;color:#ffffff;display:block;font-family:\'Helvetica Neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;font-weight:bold;font-style:normal;padding:16px 28px;text-decoration:none;text-align:center;direction:ltr;letter-spacing:0px\" rel=\"noreferrer\">Read More</a></td></tr></tbody></table><div><!--<![endif]--></div><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" data-block-id=\"431\" class=\"mceButtonContainer\"><tbody><tr>\r\n<!--[if mso]>\r\n<td align=\"center\">\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\"\r\nxmlns:w=\"urn:schemas-microsoft-com:office:word\"\r\nhref=\"https://www.bistasolutions.com/resources/blogs/portfolio/evitalin-case-study-ai-driven-automation-for-handwritten-prescription-capture-in-odoo-erp/\"\r\nstyle=\"v-text-anchor:middle; width:140.48px; height:53.33px;\"\r\narcsize=\"6%\"\r\nstrokecolor=\"#636363\"\r\nstrokeweight=\"1px\"\r\nfillcolor=\"#f46f34\">\r\n<v:stroke dashstyle=\"solid\"/>\r\n<w:anchorlock />\r\n<center style=\"\r\ncolor: #ffffff;\r\ndisplay: block;\r\nfont-family: \'Helvetica Neue\', Helvetica, Arial, Verdana, sans-serif;\r\nfont-size: 16;\r\nfont-style: normal;\r\nfont-weight: bold;\r\nletter-spacing: 0px;\r\ntext-decoration: none;\r\ntext-align: center;\r\ndirection: ltr;\"\r\n>\r\nRead More\r\n</center>\r\n</v:roundrect>\r\n</td>\r\n<![endif]-->\r\n</tr></tbody></table></td></tr></tbody></table></td><td style=\"padding-top:0;padding-bottom:0\" valign=\"top\" class=\"mceColumn\" id=\"mceColumnId-498\" data-block-id=\"498\" colspan=\"8\" width=\"66.66666666666666%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"background-color:#202020;padding-top:12px;padding-bottom:12px;padding-right:16px;padding-left:16px;border:0;border-radius:0\" valign=\"top\" class=\"mceImageBlockContainer\" align=\"center\" id=\"b466\"><div><!--[if !mso]><!--></div><a href=\"https://bistasolutions.us21.list-manage.com/track/click?u=0a40055a5d383d2bdc840c98c&id=01a9d68f57&e=d8f79ebc6f\" style=\"display:block\" target=\"_blank\" data-block-id=\"466\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate;margin:0;vertical-align:top;max-width:100%;width:100%;height:auto\" role=\"presentation\" data-testid=\"image-466\"><tbody><tr><td style=\"border-width:10px;border-style:inset;border-color:#f46f34;border-top-left-radius:0;border-top-right-radius:150px;border-bottom-left-radius:150px;border-bottom-right-radius:0;margin:0\" valign=\"top\"><img alt=\"Bista Solutions case study\" src=\"https://mcusercontent.com/0a40055a5d383d2bdc840c98c/images/307d4e58-4475-e740-b3a4-8adb50573ba2.jpg\" width=\"388\" height=\"auto\" style=\"display:block;max-width:100%;height:auto;border-top-left-radius:0;border-top-right-radius:140px;border-bottom-left-radius:140px;border-bottom-right-radius:0\" class=\"mceImage\" /></td></tr></tbody></table></a><div><!--<![endif]--></div><div>\r\n<!--[if mso]>\r\n<a href=\"https://www.bistasolutions.com/resources/blogs/portfolio/evitalin-case-study-ai-driven-automation-for-handwritten-prescription-capture-in-odoo-erp/\"><span class=\"mceImageBorder\" style=\"border-width:8px;border-style:inset;border-color:#f46f34;vertical-align:top;margin:0\"><img role=\"presentation\" class=\"mceImage\" src=\"https://mcusercontent.com/0a40055a5d383d2bdc840c98c/images/307d4e58-4475-e740-b3a4-8adb50573ba2.jpg\" alt=\"Bista Solutions case study\" width=\"392\" height=\"auto\" style=\"display:block;max-width:392px;width:392px;height:auto\"/></span></a>\r\n<![endif]-->\r\n</div></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-508\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"background-color:#202020;padding-top:12px;padding-bottom:12px;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" class=\"mceLayoutContainer\" id=\"b508\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"508\" id=\"section_7679f834cfb006b1d88f153a73cc7bdb\" class=\"mceLayout\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td valign=\"top\" class=\"mceColumn\" id=\"mceColumnId--36\" data-block-id=\"-36\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"border:0;border-radius:0\" valign=\"top\" align=\"center\" id=\"b-23\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"-23\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td valign=\"top\" class=\"mceColumn\" id=\"mceColumnId--46\" data-block-id=\"-46\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"border:0;border-radius:0\" valign=\"top\" id=\"b513\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"513\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover;padding-top:0px;padding-bottom:0px\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"24\" width=\"100%\" style=\"table-layout:fixed\" role=\"presentation\"><colgroup><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /></colgroup><tbody><tr class=\"mceReverseStack\"><td style=\"padding-top:0;padding-bottom:0\" valign=\"top\" class=\"mceColumn-1\" id=\"mceColumnId-510\" data-block-id=\"510\" colspan=\"8\" width=\"66.66666666666666%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"background-color:#202020;padding-top:12px;padding-bottom:12px;padding-right:16px;padding-left:16px;border:0;border-radius:0\" valign=\"top\" class=\"mceImageBlockContainer\" align=\"center\" id=\"b501\"><div><!--[if !mso]><!--></div><a href=\"https://bistasolutions.us21.list-manage.com/track/click?u=0a40055a5d383d2bdc840c98c&id=d3cf549df7&e=d8f79ebc6f\" style=\"display:block\" target=\"_blank\" data-block-id=\"501\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate;margin:0;vertical-align:top;max-width:100%;width:100%;height:auto\" role=\"presentation\" data-testid=\"image-501\"><tbody><tr><td style=\"border-width:10px;border-style:inset;border-color:#f46f34;border-top-left-radius:0;border-top-right-radius:150px;border-bottom-left-radius:150px;border-bottom-right-radius:0;margin:0\" valign=\"top\"><img alt=\"AI elements reaching for a screen with the thought article title - how to avoid pitfalls in your next AI project\" src=\"https://mcusercontent.com/0a40055a5d383d2bdc840c98c/images/a8087b64-954e-5a7d-ff49-b872c8a521c3.png\" width=\"388\" height=\"auto\" style=\"display:block;max-width:100%;height:auto;border-top-left-radius:0;border-top-right-radius:140px;border-bottom-left-radius:140px;border-bottom-right-radius:0\" class=\"mceImage\" /></td></tr></tbody></table></a><div><!--<![endif]--></div><div>\r\n<!--[if mso]>\r\n<a href=\"https://www.bistasolutions.com/resources/blogs/how-to-avoid-pitfalls-in-your-next-ai-project-a-thought-article/\"><span class=\"mceImageBorder\" style=\"border-width:8px;border-style:inset;border-color:#f46f34;vertical-align:top;margin:0\"><img role=\"presentation\" class=\"mceImage\" src=\"https://mcusercontent.com/0a40055a5d383d2bdc840c98c/images/a8087b64-954e-5a7d-ff49-b872c8a521c3.png\" alt=\"AI elements reaching for a screen with the thought article title - how to avoid pitfalls in your next AI project\" width=\"392\" height=\"auto\" style=\"display:block;max-width:392px;width:392px;height:auto\"/></span></a>\r\n<![endif]-->\r\n</div></td></tr></tbody></table></td><td style=\"padding-top:0;padding-bottom:0\" valign=\"top\" class=\"mceColumn-2\" id=\"mceColumnId-512\" data-block-id=\"512\" colspan=\"4\" width=\"33.33333333333333%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0\" valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-514\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" id=\"b514\"><table width=\"100%\" style=\"border:0;background-color:#202020;border-radius:0;border-collapse:separate\"><tbody><tr><td style=\"padding-left:24px;padding-right:24px;padding-top:75px;padding-bottom:12px\" class=\"mceTextBlockContainer\"><div data-block-id=\"514\" class=\"mceText\" id=\"d514\" style=\"width:100%\"><h1 class=\"mcePastedContent\" style=\"letter-spacing: 2px; text-align: center;\"><strong><span style=\"color:rgb(244, 111, 52);\"><span style=\"font-size: 26px\"><span style=\"font-family: \'Marcellus\', serif\">THOUGHT ARTICLE</span></span></span></strong></h1><h1 class=\"mcePastedContent\" style=\"letter-spacing: 2px; text-align: center;\"><strong><span style=\"color:rgb(255, 255, 255);\"><span style=\"font-size: 18px\"><span style=\"font-family: &quot;Source Sans 3&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif\">AVOID PITFALLS IN YOUR NEXT </span></span></span></strong></h1><h1 class=\"mcePastedContent\" style=\"letter-spacing: 2px; text-align: center;\"><strong><span style=\"color:rgb(255, 255, 255);\"><span style=\"font-size: 18px\"><span style=\"font-family: &quot;Source Sans 3&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif\">AI PROJECT</span></span></span></strong></h1><p class=\"mcePastedContent last-child\"><br /></p></div></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td style=\"background-color:transparent;padding-top:12px;padding-bottom:12px;padding-right:24px;padding-left:24px;border:0;border-radius:0\" valign=\"top\" class=\"mceButtonBlockContainer\" align=\"center\" id=\"b515\"><div><!--[if !mso]><!--></div><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" data-block-id=\"515\" class=\"mceButtonContainer\"><tbody><tr class=\"mceStandardButton\"><td style=\"background-color:#f46f34;border-radius:8px;text-align:center\" valign=\"top\" class=\"mceButton\"><a href=\"https://bistasolutions.us21.list-manage.com/track/click?u=0a40055a5d383d2bdc840c98c&id=d677ba62fa&e=d8f79ebc6f\" target=\"_blank\" class=\"mceButtonLink\" style=\"background-color:#f46f34;border-radius:8px;border:1px solid #636363;color:#ffffff;display:block;font-family:\'Helvetica Neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;font-weight:bold;font-style:normal;padding:16px 28px;text-decoration:none;text-align:center;direction:ltr;letter-spacing:0px\" rel=\"noreferrer\">Read More</a></td></tr></tbody></table><div><!--<![endif]--></div><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" data-block-id=\"515\" class=\"mceButtonContainer\"><tbody><tr>\r\n<!--[if mso]>\r\n<td align=\"center\">\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\"\r\nxmlns:w=\"urn:schemas-microsoft-com:office:word\"\r\nhref=\"https://www.bistasolutions.com/resources/blogs/how-to-avoid-pitfalls-in-your-next-ai-project-a-thought-article/\"\r\nstyle=\"v-text-anchor:middle; width:140.48px; height:53.33px;\"\r\narcsize=\"6%\"\r\nstrokecolor=\"#636363\"\r\nstrokeweight=\"1px\"\r\nfillcolor=\"#f46f34\">\r\n<v:stroke dashstyle=\"solid\"/>\r\n<w:anchorlock />\r\n<center style=\"\r\ncolor: #ffffff;\r\ndisplay: block;\r\nfont-family: \'Helvetica Neue\', Helvetica, Arial, Verdana, sans-serif;\r\nfont-size: 16;\r\nfont-style: normal;\r\nfont-weight: bold;\r\nletter-spacing: 0px;\r\ntext-decoration: none;\r\ntext-align: center;\r\ndirection: ltr;\"\r\n>\r\nRead More\r\n</center>\r\n</v:roundrect>\r\n</td>\r\n<![endif]-->\r\n</tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td style=\"background-color:#202020;padding-top:20px;padding-bottom:20px;padding-right:24px;padding-left:24px;border:0;border-radius:0\" valign=\"top\" class=\"mceDividerBlockContainer\" id=\"b267\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"background-color:#202020;width:100%\" role=\"presentation\" class=\"mceDividerContainer\" data-block-id=\"267\"><tbody><tr><td style=\"min-width:100%;border-top-width:2px;border-top-style:solid;border-top-color:#707070;line-height:0;font-size:0\" valign=\"top\" class=\"mceDividerBlock\"> </td></tr></tbody></table></td></tr><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0\" valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-493\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" id=\"b493\"><table width=\"100%\" style=\"border:0;background-color:#202020;border-radius:0;border-collapse:separate\"><tbody><tr><td style=\"padding-left:24px;padding-right:24px;padding-top:12px;padding-bottom:12px\" class=\"mceTextBlockContainer\"><div data-block-id=\"493\" class=\"mceText\" id=\"d493\" style=\"width:100%\"><h1 class=\"mcePastedContent\" style=\"letter-spacing: 2px; text-align: center;\"><strong><span style=\"color:rgb(244, 111, 52);\"><span style=\"font-size: 28px\"><span style=\"font-family: \'Marcellus\', serif\">UPCOMING TRADE SHOWS</span></span></span></strong></h1><h1 class=\"mcePastedContent\" style=\"letter-spacing: 2px; text-align: center;\"><strong><span style=\"color:rgb(255, 255, 255);\"><span style=\"font-size: 28px\"><span style=\"font-family: &quot;Source Sans 3&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif\">IN JANUARY 2026</span></span></span></strong></h1><p class=\"mcePastedContent last-child\"><br /></p></div></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-467\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"background-color:#202020;padding-top:12px;padding-bottom:12px;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" class=\"mceLayoutContainer\" id=\"b467\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"467\" id=\"section_59ef6e93dbd7de50c80a5f4cc334382d\" class=\"mceLayout\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td valign=\"top\" class=\"mceColumn\" id=\"mceColumnId--32\" data-block-id=\"-32\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"border:0;border-radius:0\" valign=\"top\" align=\"center\" id=\"b-15\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"-15\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td valign=\"top\" class=\"mceColumn\" id=\"mceColumnId--42\" data-block-id=\"-42\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"border:0;border-radius:0\" valign=\"top\" id=\"b472\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"472\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover;padding-top:0px;padding-bottom:0px\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"24\" width=\"100%\" style=\"table-layout:fixed\" role=\"presentation\"><colgroup><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /></colgroup><tbody><tr><td style=\"padding-top:0;padding-bottom:0\" valign=\"top\" class=\"mceColumn\" id=\"mceColumnId-469\" data-block-id=\"469\" colspan=\"6\" width=\"50%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"background-color:transparent;padding-top:12px;padding-bottom:12px;padding-right:16px;padding-left:16px;border:0;border-radius:0\" valign=\"top\" class=\"mceImageBlockContainer\" align=\"center\" id=\"b474\"><div><!--[if !mso]><!--></div><a href=\"https://bistasolutions.us21.list-manage.com/track/click?u=0a40055a5d383d2bdc840c98c&id=3a3134045e&e=d8f79ebc6f\" style=\"display:block\" target=\"_blank\" data-block-id=\"474\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate;margin:0;vertical-align:top;max-width:100%;width:100%;height:auto\" role=\"presentation\" data-testid=\"image-474\"><tbody><tr><td style=\"border:0;border-top-left-radius:25px;border-top-right-radius:0;border-bottom-left-radius:0;border-bottom-right-radius:25px;margin:0\" valign=\"top\"><img alt=\"Bista Solutions attends PPAI 2026\" src=\"https://mcusercontent.com/0a40055a5d383d2bdc840c98c/images/945ae5e8-1de9-d635-db36-ec5c8343736e.jpg\" width=\"298\" height=\"auto\" style=\"display:block;max-width:100%;height:auto;border-top-left-radius:25px;border-top-right-radius:0;border-bottom-left-radius:0;border-bottom-right-radius:25px\" class=\"mceImage\" /></td></tr></tbody></table></a><div><!--<![endif]--></div><div>\r\n<!--[if mso]>\r\n<a href=\"https://www.ppai.org/solution/bista-solutions-erp/\"><span class=\"mceImageBorder\" style=\"border:0;border-width:2px;vertical-align:top;margin:0\"><img role=\"presentation\" class=\"mceImage\" src=\"https://mcusercontent.com/0a40055a5d383d2bdc840c98c/images/945ae5e8-1de9-d635-db36-ec5c8343736e.jpg\" alt=\"Bista Solutions attends PPAI 2026\" width=\"298\" height=\"auto\" style=\"display:block;max-width:298px;width:298px;height:auto\"/></span></a>\r\n<![endif]-->\r\n</div></td></tr></tbody></table></td><td style=\"padding-top:0;padding-bottom:0\" valign=\"top\" class=\"mceColumn\" id=\"mceColumnId-471\" data-block-id=\"471\" colspan=\"6\" width=\"50%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"background-color:#202020;border:0;border-radius:0\" valign=\"top\" id=\"b491\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"491\"><tbody><tr><td valign=\"top\" class=\"mceSpacerBlock\" height=\"52\"></td></tr></tbody></table></td></tr><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0\" valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-475\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" id=\"b475\"><table width=\"100%\" style=\"border:0;background-color:transparent;border-radius:0;border-collapse:separate\"><tbody><tr><td style=\"padding-left:24px;padding-right:24px;padding-top:12px;padding-bottom:12px\" class=\"mceTextBlockContainer\"><div data-block-id=\"475\" class=\"mceText\" id=\"d475\" style=\"width:100%\"><p class=\"last-child\"><strong><span style=\"color:#daaf56;\">Meet us at </span><span style=\"color:#f46f34;\">booth #5459</span><span style=\"color:#daaf56;\"> from </span><span style=\"color:#f46f34;\">January 13th to January 15th</span><span style=\"color:#daaf56;\"> for the PPAI Expo. See you at the </span><span style=\"color:#f46f34;\">Mandalay Bay Convention Center in Las Vegas, Nevada!</span></strong></p></div></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-482\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"background-color:#202020;padding-top:12px;padding-bottom:12px;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" class=\"mceLayoutContainer\" id=\"b482\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"482\" id=\"section_8192cd5e3512c00df2f7dd97c3c12fce\" class=\"mceLayout\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td valign=\"top\" class=\"mceColumn\" id=\"mceColumnId--34\" data-block-id=\"-34\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"border:0;border-radius:0\" valign=\"top\" align=\"center\" id=\"b-19\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"-19\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td valign=\"top\" class=\"mceColumn\" id=\"mceColumnId--44\" data-block-id=\"-44\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"border:0;border-radius:0\" valign=\"top\" id=\"b487\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"487\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover;padding-top:0px;padding-bottom:0px\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"24\" width=\"100%\" style=\"table-layout:fixed\" role=\"presentation\"><colgroup><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /></colgroup><tbody><tr class=\"mceReverseStack\"><td style=\"padding-top:0;padding-bottom:0\" valign=\"top\" class=\"mceColumn-1\" id=\"mceColumnId-484\" data-block-id=\"484\" colspan=\"6\" width=\"50%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"background-color:#202020;border:0;border-radius:0\" valign=\"top\" id=\"b490\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"490\"><tbody><tr><td valign=\"top\" class=\"mceSpacerBlock\" height=\"60\"></td></tr></tbody></table></td></tr><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0\" valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-488\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" id=\"b488\"><table width=\"100%\" style=\"border:0;background-color:#202020;border-radius:0;border-collapse:separate\"><tbody><tr><td style=\"padding-left:24px;padding-right:24px;padding-top:12px;padding-bottom:12px\" class=\"mceTextBlockContainer\"><div data-block-id=\"488\" class=\"mceText\" id=\"d488\" style=\"width:100%\"><p><strong><span style=\"color:#daaf56;\">Meet us at </span><span style=\"color:#f46f34;\">booth #845 </span><span style=\"color:#daaf56;\">from </span><span style=\"color:#f46f34;\">January 20th to January 23rd</span><span style=\"color:#daaf56;\"> during the Heavy Duty Aftermarket Week Expo. Catch you at the </span><span style=\"color:#f46f34;\">Gaylord Texan Resort &amp; Convention Center</span><span style=\"color:rgb(218, 175, 86);\"> </span><span style=\"color:#f46f34;\">in</span><span style=\"color:rgb(218, 175, 86);\"> </span><span style=\"color:#f46f34;\">Grapevine, Texas!</span></strong></p><p class=\"last-child\"><br /></p></div></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td><td style=\"padding-top:0;padding-bottom:0\" valign=\"top\" class=\"mceColumn-2\" id=\"mceColumnId-486\" data-block-id=\"486\" colspan=\"6\" width=\"50%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"background-color:transparent;padding-top:12px;padding-bottom:12px;padding-right:16px;padding-left:16px;border:0;border-radius:0\" valign=\"top\" class=\"mceImageBlockContainer\" align=\"center\" id=\"b489\"><div><!--[if !mso]><!--></div><a href=\"https://bistasolutions.us21.list-manage.com/track/click?u=0a40055a5d383d2bdc840c98c&id=e49cd37f2c&e=d8f79ebc6f\" style=\"display:block\" target=\"_blank\" data-block-id=\"489\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate;margin:0;vertical-align:top;max-width:100%;width:100%;height:auto\" role=\"presentation\" data-testid=\"image-489\"><tbody><tr><td style=\"border:0;border-top-left-radius:10px;border-top-right-radius:0;border-bottom-left-radius:0;border-bottom-right-radius:25px;margin:0\" valign=\"top\"><img alt=\"Bista Solutions at HDAW\" src=\"https://mcusercontent.com/0a40055a5d383d2bdc840c98c/images/64aac58b-1de5-962a-5295-d34a317a3f3b.png\" width=\"298\" height=\"auto\" style=\"display:block;max-width:100%;height:auto;border-top-left-radius:10px;border-top-right-radius:0;border-bottom-left-radius:0;border-bottom-right-radius:25px\" class=\"mceImage\" /></td></tr></tbody></table></a><div><!--<![endif]--></div><div>\r\n<!--[if mso]>\r\n<a href=\"https://hdaw2026.smallworldlabs.com/co/bista-solutions-inc\"><span class=\"mceImageBorder\" style=\"border:0;border-width:2px;vertical-align:top;margin:0\"><img role=\"presentation\" class=\"mceImage\" src=\"https://mcusercontent.com/0a40055a5d383d2bdc840c98c/images/64aac58b-1de5-962a-5295-d34a317a3f3b.png\" alt=\"Bista Solutions at HDAW\" width=\"298\" height=\"auto\" style=\"display:block;max-width:298px;width:298px;height:auto\"/></span></a>\r\n<![endif]-->\r\n</div></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-476\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"background-color:#202020;padding-top:12px;padding-bottom:12px;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" class=\"mceLayoutContainer\" id=\"b476\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"476\" id=\"section_87bcecde4450ffd4acbd230e900e898c\" class=\"mceLayout\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td valign=\"top\" class=\"mceColumn\" id=\"mceColumnId--33\" data-block-id=\"-33\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"border:0;border-radius:0\" valign=\"top\" align=\"center\" id=\"b-17\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"-17\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td valign=\"top\" class=\"mceColumn\" id=\"mceColumnId--43\" data-block-id=\"-43\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"border:0;border-radius:0\" valign=\"top\" id=\"b481\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"481\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover;padding-top:0px;padding-bottom:0px\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"24\" width=\"100%\" style=\"table-layout:fixed\" role=\"presentation\"><colgroup><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /></colgroup><tbody><tr><td style=\"padding-top:0;padding-bottom:0\" valign=\"top\" class=\"mceColumn\" id=\"mceColumnId-478\" data-block-id=\"478\" colspan=\"6\" width=\"50%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"background-color:#202020;padding-top:12px;padding-bottom:12px;padding-right:16px;padding-left:16px;border:0;border-radius:0\" valign=\"top\" class=\"mceImageBlockContainer\" align=\"center\" id=\"b477\"><div><!--[if !mso]><!--></div><a href=\"https://bistasolutions.us21.list-manage.com/track/click?u=0a40055a5d383d2bdc840c98c&id=73c2672f07&e=d8f79ebc6f\" style=\"display:block\" target=\"_blank\" data-block-id=\"477\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate;margin:0;vertical-align:top;max-width:100%;width:100%;height:auto\" role=\"presentation\" data-testid=\"image-477\"><tbody><tr><td style=\"border:0;border-top-left-radius:25px;border-top-right-radius:0;border-bottom-left-radius:0;border-bottom-right-radius:25px;margin:0\" valign=\"top\"><img alt=\"\" src=\"https://mcusercontent.com/0a40055a5d383d2bdc840c98c/images/c386ce58-b721-c1ad-e5d5-5e79afaff5c0.png\" width=\"298\" height=\"auto\" style=\"display:block;max-width:100%;height:auto;border-top-left-radius:25px;border-top-right-radius:0;border-bottom-left-radius:0;border-bottom-right-radius:25px\" class=\"imageDropZone mceImage\" /></td></tr></tbody></table></a><div><!--<![endif]--></div><div>\r\n<!--[if mso]>\r\n<a href=\"https://n2a.goexposoftware.com/events/ss26/goExpo/exhibitor/viewExhibitorProfile.php?__id=2378\"><span class=\"mceImageBorder\" style=\"border:0;border-width:2px;vertical-align:top;margin:0\"><img role=\"presentation\" class=\"imageDropZone mceImage\" src=\"https://mcusercontent.com/0a40055a5d383d2bdc840c98c/images/c386ce58-b721-c1ad-e5d5-5e79afaff5c0.png\" alt=\"\" width=\"298\" height=\"auto\" style=\"display:block;max-width:298px;width:298px;height:auto\"/></span></a>\r\n<![endif]-->\r\n</div></td></tr></tbody></table></td><td style=\"padding-top:0;padding-bottom:0\" valign=\"top\" class=\"mceColumn\" id=\"mceColumnId-480\" data-block-id=\"480\" colspan=\"6\" width=\"50%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"background-color:#202020;border:0;border-radius:0\" valign=\"top\" id=\"b492\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"492\"><tbody><tr><td valign=\"top\" class=\"mceSpacerBlock\" height=\"29\"></td></tr></tbody></table></td></tr><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0\" valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-479\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" id=\"b479\"><table width=\"100%\" style=\"border:0;background-color:transparent;border-radius:0;border-collapse:separate\"><tbody><tr><td style=\"padding-left:24px;padding-right:24px;padding-top:12px;padding-bottom:12px\" class=\"mceTextBlockContainer\"><div data-block-id=\"479\" class=\"mceText\" id=\"d479\" style=\"width:100%\"><p class=\"last-child\"><strong><span style=\"color:#daaf56;\">Meet us at </span><span style=\"color:#f46f34;\">booth #52133</span><span style=\"color:#daaf56;\"> on </span><span style=\"color:#f46f34;\">January 19th &amp; January 20th</span><span style=\"color:#daaf56;\">. Then find us walking the floor for the remaining SHOT Show expo days! See you at the </span><span style=\"color:#f46f34;\">Venetian Expo + Caesars Forum in Las Vegas, Nevada!</span></strong></p></div></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td style=\"background-color:#202020;padding-top:20px;padding-bottom:20px;padding-right:24px;padding-left:24px;border:0;border-radius:0\" valign=\"top\" class=\"mceDividerBlockContainer\" id=\"b473\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"background-color:#202020;width:100%\" role=\"presentation\" class=\"mceDividerContainer\" data-block-id=\"473\"><tbody><tr><td style=\"min-width:100%;border-top-width:2px;border-top-style:solid;border-top-color:#707070;line-height:0;font-size:0\" valign=\"top\" class=\"mceDividerBlock\"> </td></tr></tbody></table></td></tr><tr><td style=\"background-color:#202020;padding-top:12px;padding-bottom:12px;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" class=\"mceImageBlockContainer\" align=\"center\" id=\"b210\"><div><!--[if !mso]><!--></div><a href=\"https://bistasolutions.us21.list-manage.com/track/click?u=0a40055a5d383d2bdc840c98c&id=a3011e8088&e=d8f79ebc6f\" style=\"display:block\" target=\"_blank\" data-block-id=\"210\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate;margin:0;vertical-align:top;max-width:100%;width:100%;height:auto\" role=\"presentation\" data-testid=\"image-210\"><tbody><tr><td style=\"border:0;border-radius:0;margin:0\" valign=\"top\"><img alt=\"Bista Customer Testimonial Banner\" src=\"https://mcusercontent.com/0a40055a5d383d2bdc840c98c/images/4e9ba4c7-ed04-1c44-6316-529b3ba3f939.jpg\" width=\"660\" height=\"auto\" style=\"display:block;max-width:100%;height:auto;border-radius:0\" class=\"mceImage\" /></td></tr></tbody></table></a><div><!--<![endif]--></div><div>\r\n<!--[if mso]>\r\n<a href=\"https://www.bistasolutions.com/odoo-customer-video-testimonials/\"><span class=\"mceImageBorder\" style=\"border:0;border-width:2px;vertical-align:top;margin:0\"><img role=\"presentation\" class=\"mceImage\" src=\"https://mcusercontent.com/0a40055a5d383d2bdc840c98c/images/4e9ba4c7-ed04-1c44-6316-529b3ba3f939.jpg\" alt=\"Bista Customer Testimonial Banner\" width=\"660\" height=\"auto\" style=\"display:block;max-width:660px;width:660px;height:auto\"/></span></a>\r\n<![endif]-->\r\n</div></td></tr><tr><td valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-180\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"background-color:#141414;padding-top:8px;padding-bottom:8px;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" class=\"mceLayoutContainer\" id=\"b180\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"180\" id=\"section_eabf054ba44c9a8ec1ef3823e49221ae\" class=\"mceLayout\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td valign=\"top\" class=\"mceColumn\" id=\"mceColumnId--27\" data-block-id=\"-27\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"border:0;border-radius:0\" valign=\"top\" align=\"center\" id=\"b-5\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"-5\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td valign=\"top\" class=\"mceColumn\" id=\"mceColumnId--37\" data-block-id=\"-37\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"border:0;border-radius:0\" valign=\"top\" id=\"b179\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"179\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"24\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0\" valign=\"top\" class=\"mceColumn\" id=\"mceColumnId-178\" data-block-id=\"178\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0\" valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-183\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" id=\"b183\"><table width=\"100%\" style=\"border:0;background-color:#202020;border-radius:0;border-collapse:separate\"><tbody><tr><td style=\"padding-left:24px;padding-right:24px;padding-top:12px;padding-bottom:12px\" class=\"mceTextBlockContainer\"><div data-block-id=\"183\" class=\"mceText\" id=\"d183\" style=\"width:100%\"><p class=\"\" style=\"text-align: left;\"><strong><span style=\"color:#daaf56;\"><span style=\"font-family: &quot;Source Sans 3&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif\">Upstart Power</span></span><span style=\"color:rgb(244, 111, 52);\"><span style=\"font-family: \'Source Sans 3\', \'Helvetica Neue\', Helvetica, Arial, sans-serif\"> (</span><span style=\"font-family: &quot;Source Sans 3&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif\">Renewable Energy Equipment Manufacturing</span><span style=\"font-family: \'Source Sans 3\', \'Helvetica Neue\', Helvetica, Arial, sans-serif\">)</span></span></strong></p><p style=\"text-align: left;\" class=\"last-child\"><span style=\"color:rgb(255, 255, 255);\"><span style=\"font-size: 14px\"><span style=\"font-family: Roboto, &quot;Helvetica Neue&quot;, Arial, sans-serif\"><span style=\"background-color: transparent\">“We recently completed our transition from Odoo v14 to v18, and the team made the entire process incredibly smooth. They have been extremely helpful every step of the way, taking the time to understand our setup and ensuring everything worked exactly as it should. Anytime an issue arose, they jumped on it immediately, whether through a quick phone call or an email response. Their support, responsiveness, and expertise made a complex upgrade feel effortless. Highly recommend.”</span></span></span></span></p></div></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0\" valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-184\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" id=\"b184\"><table width=\"100%\" style=\"border:0;background-color:#141414;border-radius:0;border-collapse:separate\"><tbody><tr><td style=\"padding-left:24px;padding-right:24px;padding-top:12px;padding-bottom:12px\" class=\"mceTextBlockContainer\"><div data-block-id=\"184\" class=\"mceText\" id=\"d184\" style=\"width:100%\"><p class=\"\" style=\"text-align: left;\"><strong><span style=\"color:#daaf56;\"><span style=\"font-family: &quot;Source Sans 3&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif\">Windy City Novelties</span></span><span style=\"color:rgb(244, 111, 52);\"><span style=\"font-family: &quot;Source Sans 3&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif\"> (</span><span style=\"font-family: \'Source Sans 3\', \'Helvetica Neue\', Helvetica, Arial, sans-serif\">Retail)</span></span></strong></p><p class=\"mcePastedContent last-child\"><span style=\"color:#ffffff;\"><span style=\"font-size: 14px\">“</span></span><span style=\"color:rgb(255, 255, 255);\"><span style=\"font-size: 14px\">Another successful year of Odoo wrapped up with the Windy City Novelties project going live on Shopify and FBM. We took on a lot — new workflows, integrations, improvements — and the entire WCN team truly delivered. From getting FBM up and running just in time for Q4 to constantly enhancing the system along the way, the effort and support were outstanding.”</span></span></p></div></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0\" valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-185\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" id=\"b185\"><table width=\"100%\" style=\"border:0;background-color:#202020;border-radius:0;border-collapse:separate\"><tbody><tr><td style=\"padding-left:24px;padding-right:24px;padding-top:12px;padding-bottom:12px\" class=\"mceTextBlockContainer\"><div data-block-id=\"185\" class=\"mceText\" id=\"d185\" style=\"width:100%\"><p class=\"\" style=\"text-align: left;\"><strong><span style=\"color:#daaf56;\"><span style=\"font-family: &quot;Source Sans 3&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif\">321 Plastics / Marketing Holders</span></span><span style=\"color:rgb(244, 111, 52);\"><span style=\"font-family: &quot;Source Sans 3&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif\"> (</span><span style=\"font-family: \'Source Sans 3\', \'Helvetica Neue\', Helvetica, Arial, sans-serif\">Manufacturing)</span></span></strong></p><p style=\"text-align: left;\"><span style=\"color:#ffffff;\"><span style=\"font-size: 14px\">“</span></span><span style=\"color:rgb(255, 255, 255);\"><span style=\"font-size: 14px\">Bista Solutions has been an outstanding partner in implementing our new Odoo ERP system. [Bista was] highly organized, consistently met every deadline, and kept our staff aligned and on task. The timeline we provided was extremely challenging, [Bista] not only met our expectations-they exceeded them in every way. Their expertise, professionalism, and commitment to our success made a tremendous difference in the smooth rollout of our system.</span></span></p><p style=\"text-align: left;\" class=\"last-child\"><span style=\"color:rgb(255, 255, 255);\"><span style=\"font-size: 14px\">We are genuinely grateful for their hard work and dedication. I highly recommend Bista Solutions to any company looking for a knowledgeable and reliable ERP implementation partner.”</span></span></p></div></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0\" valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-186\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" id=\"b186\"><table width=\"100%\" style=\"border:0;background-color:#141414;border-radius:0;border-collapse:separate\"><tbody><tr><td style=\"padding-left:24px;padding-right:24px;padding-top:12px;padding-bottom:12px\" class=\"mceTextBlockContainer\"><div data-block-id=\"186\" class=\"mceText\" id=\"d186\" style=\"width:100%\"><p class=\"\" style=\"text-align: left;\"><span style=\"color: #daaf56;\"><strong><span style=\"color:rgb(218, 175, 86);\"><span style=\"font-family: &quot;Source Sans 3&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif\">RVL Brands </span></span></strong></span><span style=\"color: #f46f34;\"><strong><span style=\"color:rgb(244, 111, 52);\"><span style=\"font-family: &quot;Source Sans 3&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif\">(</span></span></strong></span><strong><span style=\"color:rgb(244, 111, 52);\"><span style=\"font-family: \'Source Sans 3\', \'Helvetica Neue\', Helvetica, Arial, sans-serif\">Retail)</span></span></strong></p><p style=\"text-align: left;\" class=\"last-child\"><span style=\"color:#ffffff;\"><span style=\"font-size: 14px\"><span style=\"background-color: transparent\">“</span></span></span><span style=\"color:rgb(255, 255, 255);\"><span style=\"font-size: 14px\"><span style=\"background-color: transparent\">Before automation, several of our processes were manual, time-consuming, and prone to human error. Partnering with Bista Automation transformed these challenges into opportunities for efficiency and accuracy. The implemented automation solution has been performing exceptionally well and continues to meet and exceed our operational expectations. We are extremely satisfied with the post-deployment support, proactive communication, and responsiveness of the Bista agentic Automation team. Their technical expertise, professionalism, and commitment ensured a smooth and successful implementation from start to finish. Bista Automation has truly helped us move closer to achieving operational excellence through Agentic Automation.”</span></span></span></p></div></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0\" valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-281\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" id=\"b281\"><table width=\"100%\" style=\"border:0;background-color:#202020;border-radius:0;border-collapse:separate\"><tbody><tr><td style=\"padding-left:24px;padding-right:24px;padding-top:12px;padding-bottom:12px\" class=\"mceTextBlockContainer\"><div data-block-id=\"281\" class=\"mceText\" id=\"d281\" style=\"width:100%\"><p class=\"\" style=\"text-align: left;\"><strong><span style=\"color:rgb(218, 175, 86);\"><span style=\"font-family: &quot;Source Sans 3&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif\">Meucci Cues LLC </span></span><span style=\"color:rgb(244, 111, 52);\"><span style=\"font-family: &quot;Source Sans 3&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif\">(</span><span style=\"font-family: \'Source Sans 3\', \'Helvetica Neue\', Helvetica, Arial, sans-serif\">Sporting Goods Manufacturing)</span></span></strong></p><p class=\"mcePastedContent last-child\"><span style=\"color:#ffffff;\"><span style=\"font-size: 14px\"><span style=\"background-color: transparent\">“</span></span></span><span style=\"color:rgb(255, 255, 255);\"><span style=\"font-size: 14px\"><span style=\"background-color: transparent\">The Bista team was instrumental in helping us implement our ERP. We had some very unique and complex requirements for our business and they worked with us, iterating until we were satisfied with the custom solution.</span></span></span><span style=\"color:#ffffff;\"><span style=\"font-size: 14px\"><span style=\"background-color: transparent\">”</span></span></span></p></div></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-287\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"background-color:#202020;padding-top:12px;padding-bottom:12px;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" class=\"mceLayoutContainer\" id=\"b287\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"287\" id=\"section_3fb5b10a6023e866d121b8a9e6d4cf11\" class=\"mceLayout\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td valign=\"top\" class=\"mceColumn\" id=\"mceColumnId--28\" data-block-id=\"-28\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"border:0;border-radius:0\" valign=\"top\" align=\"center\" id=\"b-7\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"-7\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td valign=\"top\" class=\"mceColumn\" id=\"mceColumnId--38\" data-block-id=\"-38\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"border:0;border-radius:0\" valign=\"top\" id=\"b292\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"292\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover;padding-top:0px;padding-bottom:0px\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"24\" width=\"100%\" style=\"table-layout:fixed\" role=\"presentation\"><colgroup><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /><col span=\"1\" width=\"8.333333333333332%\" /></colgroup><tbody><tr><td style=\"padding-top:0;padding-bottom:0\" valign=\"top\" class=\"mceColumn\" id=\"mceColumnId-289\" data-block-id=\"289\" colspan=\"6\" width=\"50%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"background-color:#202020;padding-top:12px;padding-bottom:12px;padding-right:24px;padding-left:24px;border:0;border-radius:0\" valign=\"top\" class=\"mceButtonBlockContainer\" align=\"center\" id=\"b288\"><div><!--[if !mso]><!--></div><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" data-block-id=\"288\" class=\"mceButtonContainer\"><tbody><tr class=\"mceStandardButton\"><td style=\"background-color:#f46f34;border-radius:8px;text-align:center\" valign=\"top\" class=\"mceButton\"><a href=\"https://bistasolutions.us21.list-manage.com/track/click?u=0a40055a5d383d2bdc840c98c&id=867e916512&e=d8f79ebc6f\" target=\"_blank\" class=\"mceButtonLink\" style=\"background-color:#f46f34;border-radius:8px;border:1px solid #636363;color:#ffffff;display:block;font-family:\'Helvetica Neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;font-weight:bold;font-style:normal;padding:16px 28px;text-decoration:none;text-align:center;direction:ltr;letter-spacing:0px\" rel=\"noreferrer\">Video Testimonials</a></td></tr></tbody></table><div><!--<![endif]--></div><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" data-block-id=\"288\" class=\"mceButtonContainer\"><tbody><tr>\r\n<!--[if mso]>\r\n<td align=\"center\">\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\"\r\nxmlns:w=\"urn:schemas-microsoft-com:office:word\"\r\nhref=\"https://www.bistasolutions.com/odoo-customer-video-testimonials/\"\r\nstyle=\"v-text-anchor:middle; width:203.02px; height:53.33px;\"\r\narcsize=\"4%\"\r\nstrokecolor=\"#636363\"\r\nstrokeweight=\"1px\"\r\nfillcolor=\"#f46f34\">\r\n<v:stroke dashstyle=\"solid\"/>\r\n<w:anchorlock />\r\n<center style=\"\r\ncolor: #ffffff;\r\ndisplay: block;\r\nfont-family: \'Helvetica Neue\', Helvetica, Arial, Verdana, sans-serif;\r\nfont-size: 16;\r\nfont-style: normal;\r\nfont-weight: bold;\r\nletter-spacing: 0px;\r\ntext-decoration: none;\r\ntext-align: center;\r\ndirection: ltr;\"\r\n>\r\nVideo Testimonials\r\n</center>\r\n</v:roundrect>\r\n</td>\r\n<![endif]-->\r\n</tr></tbody></table></td></tr></tbody></table></td><td style=\"padding-top:0;padding-bottom:0\" valign=\"top\" class=\"mceColumn\" id=\"mceColumnId-291\" data-block-id=\"291\" colspan=\"6\" width=\"50%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"background-color:#202020;padding-top:12px;padding-bottom:12px;padding-right:24px;padding-left:24px;border:0;border-radius:0\" valign=\"top\" class=\"mceButtonBlockContainer\" align=\"center\" id=\"b290\"><div><!--[if !mso]><!--></div><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" data-block-id=\"290\" class=\"mceButtonContainer\"><tbody><tr class=\"mceStandardButton\"><td style=\"background-color:#f46f34;border-radius:8px;text-align:center\" valign=\"top\" class=\"mceButton\"><a href=\"https://bistasolutions.us21.list-manage.com/track/click?u=0a40055a5d383d2bdc840c98c&id=67cb129810&e=d8f79ebc6f\" target=\"_blank\" class=\"mceButtonLink\" style=\"background-color:#f46f34;border-radius:8px;border:1px solid #636363;color:#ffffff;display:block;font-family:\'Helvetica Neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;font-weight:bold;font-style:normal;padding:16px 28px;text-decoration:none;text-align:center;direction:ltr;letter-spacing:0px\" rel=\"noreferrer\">Case Studies</a></td></tr></tbody></table><div><!--<![endif]--></div><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" data-block-id=\"290\" class=\"mceButtonContainer\"><tbody><tr>\r\n<!--[if mso]>\r\n<td align=\"center\">\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\"\r\nxmlns:w=\"urn:schemas-microsoft-com:office:word\"\r\nhref=\"https://www.bistasolutions.com/resources/case-studies/\"\r\nstyle=\"v-text-anchor:middle; width:159.17000000000002px; height:53.33px;\"\r\narcsize=\"5%\"\r\nstrokecolor=\"#636363\"\r\nstrokeweight=\"1px\"\r\nfillcolor=\"#f46f34\">\r\n<v:stroke dashstyle=\"solid\"/>\r\n<w:anchorlock />\r\n<center style=\"\r\ncolor: #ffffff;\r\ndisplay: block;\r\nfont-family: \'Helvetica Neue\', Helvetica, Arial, Verdana, sans-serif;\r\nfont-size: 16;\r\nfont-style: normal;\r\nfont-weight: bold;\r\nletter-spacing: 0px;\r\ntext-decoration: none;\r\ntext-align: center;\r\ndirection: ltr;\"\r\n>\r\nCase Studies\r\n</center>\r\n</v:roundrect>\r\n</td>\r\n<![endif]-->\r\n</tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td style=\"background-color:#202020;padding-top:20px;padding-bottom:20px;padding-right:24px;padding-left:24px;border:0;border-radius:0\" valign=\"top\" class=\"mceDividerBlockContainer\" id=\"b283\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"background-color:#202020;width:100%\" role=\"presentation\" class=\"mceDividerContainer\" data-block-id=\"283\"><tbody><tr><td style=\"min-width:100%;border-top-width:2px;border-top-style:solid;border-top-color:#707070;line-height:0;font-size:0\" valign=\"top\" class=\"mceDividerBlock\"> </td></tr></tbody></table></td></tr><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0\" valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-272\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" id=\"b272\"><table width=\"100%\" style=\"border:0;background-color:#202020;border-radius:0;border-collapse:separate\"><tbody><tr><td style=\"padding-left:24px;padding-right:24px;padding-top:12px;padding-bottom:12px\" class=\"mceTextBlockContainer\"><div data-block-id=\"272\" class=\"mceText\" id=\"d272\" style=\"width:100%\"><h1 class=\"mcePastedContent last-child\" style=\"letter-spacing: 2px; text-align: center;\"><strong><span style=\"color:#ffffff;\"><span style=\"font-size: 28px\"><span style=\"font-family: \'Source Sans 3\', \'Helvetica Neue\', Helvetica, Arial, sans-serif\">BOOK A </span></span></span><span style=\"color:#f46f34;\"><span style=\"font-size: 28px\"><span style=\"font-family: \'Source Sans 3\', \'Helvetica Neue\', Helvetica, Arial, sans-serif\">FREE CONSULTATION</span></span></span><span style=\"color:#ffffff;\"><span style=\"font-size: 28px\"><span style=\"font-family: \'Source Sans 3\', \'Helvetica Neue\', Helvetica, Arial, sans-serif\"> WITH US</span></span></span></strong></h1></div></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td style=\"background-color:#202020;padding-top:12px;padding-bottom:12px;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" class=\"mceImageBlockContainer\" align=\"left\" id=\"b76\"><div><!--[if !mso]><!--></div><a href=\"https://bistasolutions.us21.list-manage.com/track/click?u=0a40055a5d383d2bdc840c98c&id=0d955b1f6d&e=d8f79ebc6f\" style=\"display:block\" target=\"_blank\" data-block-id=\"76\"><table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate;margin:0;vertical-align:top;max-width:100%;width:100%;height:auto\" role=\"presentation\" data-testid=\"image-76\"><tbody><tr><td style=\"border:0;border-radius:0;margin:0\" valign=\"top\"><img alt=\"\" src=\"https://mcusercontent.com/0a40055a5d383d2bdc840c98c/images/cd8fb1fb-5a16-346d-a348-89119495f28e.jpg\" width=\"660\" height=\"auto\" style=\"display:block;max-width:100%;height:auto;border-radius:0\" class=\"imageDropZone mceImage\" /></td></tr></tbody></table></a><div><!--<![endif]--></div><div>\r\n<!--[if mso]>\r\n<a href=\"https://www.bistasolutions.com/contact-us/\"><span class=\"mceImageBorder\" style=\"border:0;border-width:2px;vertical-align:top;margin:0\"><img role=\"presentation\" class=\"imageDropZone mceImage\" src=\"https://mcusercontent.com/0a40055a5d383d2bdc840c98c/images/cd8fb1fb-5a16-346d-a348-89119495f28e.jpg\" alt=\"\" width=\"660\" height=\"auto\" style=\"display:block;max-width:660px;width:660px;height:auto\"/></span></a>\r\n<![endif]-->\r\n</div></td></tr><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0\" valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-77\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" id=\"b77\"><table width=\"100%\" style=\"border:0;background-color:#202020;border-radius:0;border-collapse:separate\"><tbody><tr><td style=\"padding-left:24px;padding-right:24px;padding-top:12px;padding-bottom:12px\" class=\"mceTextBlockContainer\"><div data-block-id=\"77\" class=\"mceText\" id=\"d77\" style=\"width:100%\"><p style=\"text-align: center;\"><strong><span style=\"color:#ffffff;\"><span style=\"font-size: 17px\"><span style=\"font-family: \'Catamaran\', sans-serif\">Bista Solutions - Your Digital Transformation &amp; Automation Partner</span></span></span></strong></p><p style=\"text-align: center;\" class=\"last-child\"><em><strong><span style=\"color:#f46f34;\"><span style=\"font-size: 13px\">Consultation, Analysis, Migration, Implementation, Integration, Customization, Training &amp; Support</span></span></strong></em></p></div></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td style=\"background-color:#202020;padding-top:12px;padding-bottom:12px;padding-right:24px;padding-left:24px;border:0;border-radius:0\" valign=\"top\" class=\"mceButtonBlockContainer\" align=\"center\" id=\"b78\"><div><!--[if !mso]><!--></div><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"max-width:282px\" role=\"presentation\" data-block-id=\"78\" class=\"mceButtonContainer\"><tbody><tr class=\"mceStandardButton\"><td style=\"background-color:#f46f34;border-radius:8px;text-align:center\" valign=\"top\" class=\"mceButton\"><a href=\"https://bistasolutions.us21.list-manage.com/track/click?u=0a40055a5d383d2bdc840c98c&id=461cfa445b&e=d8f79ebc6f\" target=\"_blank\" class=\"mceButtonLink\" style=\"background-color:#f46f34;border-radius:8px;border:2px solid #636363;color:#ffffff;display:block;font-family:\'Helvetica Neue\', Helvetica, Arial, Verdana, sans-serif;font-size:20px;font-weight:bold;font-style:normal;padding:16px 28px;text-decoration:none;text-align:center;direction:ltr;letter-spacing:0px\" rel=\"noreferrer\">Contact Us</a></td></tr></tbody></table><div><!--<![endif]--></div><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"max-width:282px\" role=\"presentation\" data-block-id=\"78\" class=\"mceButtonContainer\"><tbody><tr>\r\n<!--[if mso]>\r\n<td align=\"center\">\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\"\r\nxmlns:w=\"urn:schemas-microsoft-com:office:word\"\r\nhref=\"https://www.bistasolutions.com/contact-us/\"\r\nstyle=\"v-text-anchor:middle; width:282px; height:57.33px;\"\r\narcsize=\"3%\"\r\nstrokecolor=\"#636363\"\r\nstrokeweight=\"2px\"\r\nfillcolor=\"#f46f34\">\r\n<v:stroke dashstyle=\"solid\"/>\r\n<w:anchorlock />\r\n<center style=\"\r\ncolor: #ffffff;\r\ndisplay: block;\r\nfont-family: \'Helvetica Neue\', Helvetica, Arial, Verdana, sans-serif;\r\nfont-size: 20;\r\nfont-style: normal;\r\nfont-weight: bold;\r\nletter-spacing: 0px;\r\ntext-decoration: none;\r\ntext-align: center;\r\ndirection: ltr;\"\r\n>\r\nContact Us\r\n</center>\r\n</v:roundrect>\r\n</td>\r\n<![endif]-->\r\n</tr></tbody></table></td></tr><tr><td style=\"background-color:#202020;padding-top:20px;padding-bottom:20px;padding-right:24px;padding-left:24px;border:0;border-radius:0\" valign=\"top\" class=\"mceDividerBlockContainer\" id=\"b402\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"background-color:#202020;width:100%\" role=\"presentation\" class=\"mceDividerContainer\" data-block-id=\"402\"><tbody><tr><td style=\"min-width:100%;border-top-width:2px;border-top-style:solid;border-top-color:#707070;line-height:0;font-size:0\" valign=\"top\" class=\"mceDividerBlock\"> </td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><!--[if (gte mso 9)|(IE)]></td></tr></table><![endif]--></td></tr></tbody><tbody data-block-id=\"88\" class=\"mceWrapper\"><tr><td style=\"background-color:#f4f4f4\" valign=\"top\" align=\"center\" class=\"mceSectionFooter\"><!--[if (gte mso 9)|(IE)]><table align=\"center\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"660\" style=\"width:660px;\"><tr><td><![endif]--><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"max-width:660px\" role=\"presentation\"><tbody><tr><td style=\"background-color:#ffffff\" valign=\"top\" class=\"mceWrapperInner\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"87\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0\" valign=\"top\" class=\"mceColumn\" id=\"mceColumnId--26\" data-block-id=\"-26\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"background-color:#202020;padding-top:8px;padding-bottom:8px;padding-right:8px;padding-left:8px;border:0;border-radius:0\" valign=\"top\" id=\"b86\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"86\" id=\"section_413791c0be9d0716dd37c83239ce1fb9\" class=\"mceFooterSection\"><tbody><tr class=\"mceRow\"><td style=\"background-color:#202020;background-position:center;background-repeat:no-repeat;background-size:cover;padding-top:0px;padding-bottom:0px\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"12\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0\" valign=\"top\" class=\"mceColumn\" id=\"mceColumnId--3\" data-block-id=\"-3\" colspan=\"12\" width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0\" valign=\"top\" class=\"mceGutterContainer\" id=\"gutterContainerId-84\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse:separate\" role=\"presentation\"><tbody><tr><td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;border:0;border-radius:0\" valign=\"top\" align=\"center\" id=\"b84\"><table width=\"100%\" style=\"border:0;background-color:transparent;border-radius:0;border-collapse:separate\"><tbody><tr><td style=\"padding-left:16px;padding-right:16px;padding-top:12px;padding-bottom:12px\" class=\"mceTextBlockContainer\"><div data-block-id=\"84\" class=\"mceText\" id=\"d84\" style=\"display:inline-block;width:100%\"><p style=\"text-align: center;\"><span style=\"color:rgb(255, 255, 255);\"><span style=\"font-size: 11px\">Copyright (C) 2025, Bista Solutions Inc. All rights reserved.</span></span></p><p style=\"text-align: center;\" class=\"last-child\"><span style=\"color:rgb(255, 255, 255);\"><span style=\"font-size: 11px\">1255 W 15th St., Suite 810, Plano, Texas, 75075, USA<br /></span></span><a href=\"https://bistasolutions.us21.list-manage.com/profile?u=0a40055a5d383d2bdc840c98c&id=9df8da80b7&e=d8f79ebc6f&c=4fe0e33658\" style=\"color: #ffffff;\"><span style=\"color:rgb(255, 255, 255);\"><span style=\"font-size: 11px\">update your preferences</span></span></a><span style=\"color:rgb(255, 255, 255);\"><span style=\"font-size: 11px\"> or </span></span><a href=\"https://bistasolutions.us21.list-manage.com/unsubscribe?u=0a40055a5d383d2bdc840c98c&id=9df8da80b7&t=b&e=d8f79ebc6f&c=4fe0e33658\" style=\"color: #ffffff;\"><span style=\"color:rgb(255, 255, 255);\"><span style=\"font-size: 11px\">unsubscribe</span></span></a></p></div></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td style=\"border:0;border-radius:0\" valign=\"top\" class=\"mceLayoutContainer\" align=\"center\" id=\"b-2\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" data-block-id=\"-2\"><tbody><tr class=\"mceRow\"><td style=\"background-position:center;background-repeat:no-repeat;background-size:cover;padding-top:0px;padding-bottom:0px\" valign=\"top\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"24\" width=\"100%\" role=\"presentation\"><tbody></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><!--[if (gte mso 9)|(IE)]></td></tr></table><![endif]--></td></tr></tbody></table>\r\n</td>\r\n</tr>\r\n</tbody></table>\r\n</center>\r\n</body></html>','https://www.bistasolutions.com/\r\n\r\n“As we close out 2025, we’re excited to share a holiday snapshot of what has been driving momentum at Bista.\r\n\r\nOur AI advancements, including the Odoo Co-pilot and our expanding AI agent capabilities, continue to push the boundaries of intelligent ERP. At the same time, our team remains fully certified and trained on the latest releases, including Odoo 19, so every implementation meets the highest standards of performance and reliability. We’re also entering new partnerships that strengthen the ecosystem our clients can build on. And as an 8x Odoo Best Partner across North America with several major shows ahead, we’re genuinely grateful to our clients and community for the trust and support that make this work possible.\r\n\r\nThank you for being part of this journey with us. Wishing you and your loved ones a warm and happy holiday season.”\r\n\r\n\r\n** BISTA SOLUTIONS IS OFFICIALLY\r\n------------------------------------------------------------\r\n\r\n\r\n** A SHOPIFY PARTNER\r\n------------------------------------------------------------\r\nhttps://www.bistasolutions.com/solutions/ecommerce/shopify-partner/\r\n\r\nBista Solutions is pleased to announce our partnership with Shopify, one of the world’s premier e-commerce platforms.\r\n\r\nThis partnership strengthens our commitment to delivering intelligent, fully integrated business solutions that help organizations scale with precision and efficiency. As both a Shopify Partner and an Odoo Gold Partner, Bista now offers the best of both ecosystems: a world-class online retail experience through Shopify paired with powerful backend operations driven by Odoo ERP.\r\n\r\n\r\n** SOME AI DEVELOPMENTS\r\n------------------------------------------------------------\r\n\r\n\r\n** BY BISTA SOLUTIONS\r\n------------------------------------------------------------\r\nhttps://odoocopilot.ai/\r\nhttps://odooagent.ai/\r\n\r\n\r\n** FEATURED CASE STUDY\r\n------------------------------------------------------------\r\n\r\n\r\n** HEALTHCARE INDUSTRY\r\n------------------------------------------------------------\r\n\r\nRead More (https://www.bistasolutions.com/resources/blogs/portfolio/evitalin-case-study-ai-driven-automation-for-handwritten-prescription-capture-in-odoo-erp/)\r\nhttps://www.bistasolutions.com/resources/blogs/portfolio/evitalin-case-study-ai-driven-automation-for-handwritten-prescription-capture-in-odoo-erp/\r\nhttps://www.bistasolutions.com/resources/blogs/how-to-avoid-pitfalls-in-your-next-ai-project-a-thought-article/\r\n\r\n\r\n** THOUGHT ARTICLE\r\n------------------------------------------------------------\r\n\r\n\r\n** AVOID PITFALLS IN YOUR NEXT\r\n------------------------------------------------------------\r\n\r\n\r\n** AI PROJECT\r\n------------------------------------------------------------\r\n\r\nRead More (https://www.bistasolutions.com/resources/blogs/how-to-avoid-pitfalls-in-your-next-ai-project-a-thought-article/)\r\n\r\n\r\n** UPCOMING TRADE SHOWS\r\n------------------------------------------------------------\r\n\r\n\r\n** IN JANUARY 2026\r\n------------------------------------------------------------\r\n\r\nhttps://www.ppai.org/solution/bista-solutions-erp/\r\n\r\nMeet us at booth #5459 from January 13th to January 15th for the PPAI Expo. See you at the Mandalay Bay Convention Center in Las Vegas, Nevada!\r\n\r\nMeet us at booth #845 from January 20th to January 23rd during the Heavy Duty Aftermarket Week Expo. Catch you at the Gaylord Texan Resort & Convention Center in Grapevine, Texas!\r\n\r\nhttps://hdaw2026.smallworldlabs.com/co/bista-solutions-inc\r\nhttps://n2a.goexposoftware.com/events/ss26/goExpo/exhibitor/viewExhibitorProfile.php?__id=2378\r\n\r\nMeet us at booth #52133 on January 19th & January 20th. Then find us walking the floor for the remaining SHOT Show expo days! See you at the Venetian Expo + Caesars Forum in Las Vegas, Nevada!\r\n\r\nhttps://www.bistasolutions.com/odoo-customer-video-testimonials/\r\n\r\nUpstart Power (Renewable Energy Equipment Manufacturing)\r\n\r\n“We recently completed our transition from Odoo v14 to v18, and the team made the entire process incredibly smooth. They have been extremely helpful every step of the way, taking the time to understand our setup and ensuring everything worked exactly as it should. Anytime an issue arose, they jumped on it immediately, whether through a quick phone call or an email response. Their support, responsiveness, and expertise made a complex upgrade feel effortless. Highly recommend.”\r\n\r\nWindy City Novelties (Retail)\r\n\r\n“Another successful year of Odoo wrapped up with the Windy City Novelties project going live on Shopify and FBM. We took on a lot — new workflows, integrations, improvements — and the entire WCN team truly delivered. From getting FBM up and running just in time for Q4 to constantly enhancing the system along the way, the effort and support were outstanding.”\r\n\r\n321 Plastics / Marketing Holders (Manufacturing)\r\n\r\n“Bista Solutions has been an outstanding partner in implementing our new Odoo ERP system. [Bista was] highly organized, consistently met every deadline, and kept our staff aligned and on task. The timeline we provided was extremely challenging, [Bista] not only met our expectations-they exceeded them in every way. Their expertise, professionalism, and commitment to our success made a tremendous difference in the smooth rollout of our system.\r\n\r\nWe are genuinely grateful for their hard work and dedication. I highly recommend Bista Solutions to any company looking for a knowledgeable and reliable ERP implementation partner.”\r\n\r\nRVL Brands (Retail)\r\n\r\n“Before automation, several of our processes were manual, time-consuming, and prone to human error. Partnering with Bista Automation transformed these challenges into opportunities for efficiency and accuracy. The implemented automation solution has been performing exceptionally well and continues to meet and exceed our operational expectations. We are extremely satisfied with the post-deployment support, proactive communication, and responsiveness of the Bista agentic Automation team. Their technical expertise, professionalism, and commitment ensured a smooth and successful implementation from start to finish. Bista Automation has truly helped us move closer to achieving operational excellence through Agentic Automation.”\r\n\r\nMeucci Cues LLC (Sporting Goods Manufacturing)\r\n\r\n“The Bista team was instrumental in helping us implement our ERP. We had some very unique and complex requirements for our business and they worked with us, iterating until we were satisfied with the custom solution.”\r\nVideo Testimonials (https://www.bistasolutions.com/odoo-customer-video-testimonials/)\r\nCase Studies (https://www.bistasolutions.com/resources/case-studies/)\r\n\r\n\r\n** BOOK A FREE CONSULTATION WITH US\r\n------------------------------------------------------------\r\nhttps://www.bistasolutions.com/contact-us/\r\n\r\nBista Solutions - Your Digital Transformation & Automation Partner\r\n\r\nConsultation, Analysis, Migration, Implementation, Integration, Customization, Training & Support\r\nContact Us (https://www.bistasolutions.com/contact-us/)\r\n\r\nCopyright (C) 2025, Bista Solutions Inc. All rights reserved.\r\n\r\n1255 W 15th St., Suite 810, Plano, Texas, 75075, USA\r\nupdate your preferences (https://bistasolutions.us21.list-manage.com/profile?u=0a40055a5d383d2bdc840c98c&id=9df8da80b7&e=d8f79ebc6f&c=4fe0e33658) or unsubscribe (https://bistasolutions.us21.list-manage.com/unsubscribe?u=0a40055a5d383d2bdc840c98c&id=9df8da80b7&t=b&e=d8f79ebc6f&c=4fe0e33658)',0,0,0,0,0,0,'2025-12-11 20:52:35','2025-12-12 00:46:24','2025-12-12 00:46:24','2025-12-12 00:46:24',NULL,NULL,NULL),
(1034,4,'<7871e1c6-ae7e-433c-90c1-7cc48d5553f6@ind1s01mta1077.xt.local>',NULL,NULL,'=?UTF-8?B?8J+PgSBQbGF5IHRoZSBuZXcgUmFjZSBNb2RlIGdhbWUgaW4gQ29u?= =?UTF-8?B?Zmx1ZW5jZSE=?=','info@e.atlassian.com','\"Atlassian\"','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\"       xmlns:v=\"urn:schemas-microsoft-com:vml\"       xmlns:o=\"urn:schemas-microsoft-com:office:office\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n<!--[if !mso]><!-->\r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" />\r\n<!--<![endif]-->\r\n<title>Atlassian</title>\r\n<style type=\"text/css\">\r\n/* RESET STYLES */\r\ntable {border-collapse:collapse;}\r\nimg, a img {border:0; height:auto; outline:none; text-decoration:none;}\r\nbody {height:100% !important; margin:0 auto !important; padding:0; width:100% !important;}\r\n\r\n/* CLIENT-SPECIFIC STYLES */\r\nimg {-ms-interpolation-mode: bicubic;} /* Force IE to smoothly render resized images. */\r\n#outlook a {padding:0;} /* Force Outlook 2007 and up to provide a \"view in browser\" message. */\r\ntable {mso-table-lspace:0pt; mso-table-rspace:0pt;} /* Remove spacing between tables in Outlook 2007 and up. */\r\n.ReadMsgBody {width:100%;} .ExternalClass {width:100%;} /* Force Outlook.com to display emails at full width. */\r\np, a, td {mso-line-height-rule:exactly;} /* Force Outlook to render line heights as they\'re originally set. */\r\np, a, td, body, table {-ms-text-size-adjust:100%; -webkit-text-size-adjust:100%;} /* Prevent Windows- and Webkit-based mobile platforms from changing declared text sizes. */\r\n.ExternalClass, .ExternalClass p, .ExternalClass td, .ExternalClass div, .ExternalClass span, .ExternalClass font {line-height:100%;} /* Force Outlook.com to display line heights normally. */\r\na [x-apple-data-detectors] {color: inherit !important; text-decoration: none !important; font-size: inherit !important; font-family: inherit !important; font-weight: inherit !important; line-height: inherit !important;} /* attempt to control apple deata detection */\r\n\r\n/* TEMPLATE STYLES */\r\n@media screen and (max-width:480px){\r\n.mw100{max-width:100% !important;}\r\n.mw95{max-width:95% !important;}\r\n.mw50{max-width:50% !important;}\r\n.w100{width:100% !important;}\r\n.w96{width:96% !important;}\r\n.mblpdrm-r{padding-right:0 !important;}\r\n.mblpdrm-l{padding-left:0 !important;}\r\n.Hellode {display:none !important;}\r\n}\r\n</style>\r\n <!--[if gte mso 9]><xml>  <o:OfficeDocumentSettings>   <o:AllowPNG/>   <o:PixelsPerInch>96</o:PixelsPerInch>  </o:OfficeDocumentSettings> </xml><![endif]-->\r\n</head>\r\n<body style=\"margin:0;padding:0;background-color:#ffffff;\">\r\n<style type=\"text/css\">\r\ndiv.preheader \r\n{ display: none !important; } \r\n</style>\r\n<div class=\"preheader\" style=\"font-size: 1px; display: none !important;\">We\'re bringing the thrill of racing to your workspace</div>\r\n\r\n <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:100%;Margin:0 auto;background-color:#ffffff;\">\r\n  <tr>\r\n   <td style=\"font-size:0;\"> </td>\r\n   <td align=\"center\" valign=\"top\" style=\"width:580px;\">\r\n    <!--ALL CONTENT STARTS HERE-->\r\n    <!--table removes gmail bg line between stacked tables-->\r\n    <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:100%;\" class=\"w96\">\r\n    <!-- logo -->\r\n     <tr>\r\n      <td align=\"center\">\r\n       <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:100%;\">\r\n        <tr>\r\n         <td align=\"center\" style=\"padding:40px 0;border-bottom:1px solid #cccccc;\">\r\n          <a href=\"https://click.e.atlassian.com/?qs=26407db5e653a46f7473959c84392c6ff00555539c4696efcdb0760e5de4a240605fa05c0bcb449a2f4949b37c4e8fd27235c678a3fb92c8ab6ab3b3c88cd749\"  style=\"font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;color:#1868DB;text-decoration:none;\">\r\n           <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"min-width: 100%; \" class=\"stylingblock-content-wrapper\"><tr><td class=\"stylingblock-content-wrapper camarker-inner\"><center><img src=\"https://image.e.atlassian.com/lib/fe4011727164047d751070/m/1/Logo-light_Atlassian_logo_brand_RGB.png\" align=\"center\" alt=\"Atlassian\" title=\"Atlassian\" border=\"0\" width=\"220\" style=\"outline:0;padding:0;border:0;width:220px;height:auto;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;color:#0052CC;\"></center></td></tr></table>\r\n          </a>\r\n         </td>\r\n        </tr>\r\n        <tr>\r\n         <td height=\"20\" style=\"height:20px;line-height:20px;font-size:0;\">\r\n           \r\n         </td>\r\n        </tr>\r\n       </table>\r\n      </td>\r\n     </tr>\r\n     <!-- end logo -->\r\n     <tr>\r\n      <td align=\"center\">\r\n       <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:100%;\">\r\n        <!--primary 1-->\r\n        <!-- start headline -->\r\n        <tr>\r\n         <td align=\"center\">\r\n          <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:75%;\" class=\"w100\">\r\n           <tr>\r\n            <td style=\"padding-top:20px;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-weight:bold;font-size:24px;line-height:35px;color:#101214;text-align:center;\">\r\n             <a href=\"https://click.e.atlassian.com/?qs=26407db5e653a46fac205b4bf9bfb216314852bf85ef0a8464dc06675e36b9d2c809abe4cfb4ca133576305e1fe19f2b57059bd3179235b230fa1d5c097d3c92\" style=\"text-decoration:none;color:#101214;font-weight:bold;\" >\r\n                Ready, set, go Rick Mislan!</a>\r\n            </td>\r\n           </tr>\r\n          </table>\r\n         </td>\r\n        </tr>\r\n        <!-- end headline -->\r\n        <!-- hero image -->\r\n        <tr>\r\n            <td align=\"center\" style=\"padding-top:40px;\">\r\n             <a href=\"https://click.e.atlassian.com/?qs=26407db5e653a46ff331fc9ba02062aa4412a47841111536bc60d4ebf1b7260dea70e80dcc15b0f07c4009a5791e71710e44e643dd92aee4f1866bada54320f9\"  style=\"font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:12px;color:#1868DB;text-decoration:none;\" target=\"_blank\">\r\n              <img src=\"https://image.e.atlassian.com/lib/fe4011727164047d751070/m/1/ACM-7592+header.png\" alt=\"🏁 Play the new Race Mode game in Confluence!\" title=\"🏁 Play the new Race Mode game in Confluence!\" border=\"0\" width=\"580\" style=\"display:block;outline:0;padding:0;width:100%;height:auto;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;color:#1868DB;\" /></a>\r\n            </td>\r\n           </tr>\r\n           <!-- end hero image -->\r\n        <!-- paragraph -->\r\n        <tr>\r\n         <td style=\"padding-top:30px;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;line-height:22px;color:#101214;text-align:left;\">\r\n          Hi Rick Mislan,\r\n         </td>\r\n        </tr>\r\n        <!-- end paragraph -->\r\n         <!--paragraph-->\r\n        <tr>\r\n            <td style=\"padding-top:20px;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;line-height:22px;color:#101214;text-align:left;\">\r\n                There\'s only one week left to play Confluence Race Mode!\r\n           </tr>\r\n           <!-- end paragraph -->\r\n        <!--paragraph-->\r\n        <tr>\r\n         <td style=\"padding-top:20px;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;line-height:22px;color:#101214;text-align:left;\">\r\n          <strong>Experience the thrill of racing </strong></td>\r\n       \r\n        </tr>\r\n        <!-- end paragraph -->\r\n          <!--paragraph-->\r\n        <tr>\r\n            <td style=\"padding-top:10px;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;line-height:22px;color:#101214;text-align:left;\">\r\n                To celebrate our Atlassian Williams Racing partnership and ultra&#8209;fast speed improvements to Confluence, we rolled out a fun racing game during the Grand Prix in Las&nbsp;Vegas. Get ready to put your skills to the test! Compete in a time trial, challenge your teammates, and see if you can beat Atlassian Williams Racing driver Alex&nbsp;Albon\'s best time of <strong>31.3&nbsp;seconds. </strong>\r\n            </td>\r\n           </tr>\r\n           <!-- end paragraph -->\r\n             <!--paragraph-->\r\n        <tr>\r\n            <td style=\"padding-top:20px;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;line-height:22px;color:#101214;text-align:left;\">\r\n             <strong>How to play:</strong>\r\n            </td>\r\n           </tr>\r\n           <!-- end paragraph -->\r\n       \r\n        <!-- start bullets -->\r\n        <tr>\r\n        <td align=\"center\" style=\"padding-top: 20px;\">\r\n            <!--bullet table-->\r\n            <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:95%;\">\r\n            <!-- -->\r\n            <tr>\r\n            <td valign=\"top\" style=\"width:20px;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;line-height:22px;color:#101214;text-align:left;\">\r\n            1.\r\n            </td>\r\n            <td valign=\"top\" style=\"font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;line-height:22px;color:#101214;text-align:left;\">\r\n                The game is available on desktop only. Select the gear shift on the right side panel and click \"Start Time Trial.\"\r\n                        </td>\r\n            </tr>\r\n        <!-- -->\r\n            <tr>\r\n            <td colspan=\"2\" height=\"10\" style=\"height:10px;line-height:10px;font-size:0;\">\r\n             \r\n            </td>\r\n            </tr>\r\n            <tr>\r\n            <td valign=\"top\" style=\"width:20px;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;line-height:22px;color:#101214;text-align:left;\">\r\n            2.\r\n            </td>\r\n            <td valign=\"top\" style=\"font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;line-height:22px;color:#101214;text-align:left;\">\r\n                Wait for the red lights to go off, then use your keyboard arrows to race your car around the track. Look out for fun facts along the way!\r\n                        </td>\r\n            </tr>\r\n            <!-- -->\r\n            <tr>\r\n            <td colspan=\"2\" height=\"10\" style=\"height:10px;line-height:10px;font-size:0;\">\r\n             \r\n            </td>\r\n            </tr>\r\n            <tr>\r\n            <td valign=\"top\" style=\"width:20px;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;line-height:22px;color:#101214;text-align:left;\">\r\n           3.\r\n            </td>\r\n            <td valign=\"top\" style=\"font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;line-height:22px;color:#101214;text-align:left;\">\r\n                Share your results and challenge your teammates to beat your fastest time.\r\n                        </td>\r\n            </tr>\r\n            </table>\r\n            <!-- end bullet table -->\r\n        </td>\r\n        </tr>\r\n        <!-- end bullets -->\r\n          <!--paragraph-->\r\n        <tr>\r\n            <td style=\"padding-top:20px;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;line-height:22px;color:#101214;text-align:left;\">\r\n                <strong>Explore Confluence whiteboards features</strong><br></td>\r\n            \r\n           </tr>\r\n           <!-- end paragraph -->\r\n          \r\n              <!-- start bullets -->\r\n        <tr>\r\n            <td align=\"center\" style=\"padding-top: 20px;\">\r\n                <!--bullet table-->\r\n                <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:95%;\">\r\n                <!-- -->\r\n                <tr>\r\n                <td valign=\"top\" style=\"width:20px;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;line-height:22px;color:#101214;text-align:left;\">\r\n                &bull;\r\n                </td>\r\n                <td valign=\"top\" style=\"font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;line-height:22px;color:#101214;text-align:left;\">\r\n                    <strong>Turn ideas into action:</strong> bring the flexibility of a digital whiteboards into your team workspace. Brainstorm, plan, and conduct retros in real&#8209;time.\r\n                </td>\r\n                </tr>\r\n            <!-- -->\r\n                <tr>\r\n                <td colspan=\"2\" height=\"10\" style=\"height:10px;line-height:10px;font-size:0;\">\r\n                 \r\n                </td>\r\n                </tr>\r\n                <tr>\r\n                <td valign=\"top\" style=\"width:20px;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;line-height:22px;color:#101214;text-align:left;\">\r\n                &bull;\r\n                </td>\r\n                <td valign=\"top\" style=\"font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;line-height:22px;color:#101214;text-align:left;\">\r\n                    <strong>Generate content:</strong> instead of starting with a blank page, let AI generate content for you using knowledge from your Confluence ecosystem. Rovo can gather historical context for ideas to inform your research plan. Or choose from various templates to get started faster.\r\n                </td>\r\n                </tr>\r\n                <!-- -->\r\n               \r\n                 <tr>\r\n                    <td colspan=\"2\" height=\"10\" style=\"height:10px;line-height:10px;font-size:0;\">\r\n                     \r\n                    </td>\r\n                    </tr>\r\n                    <tr>\r\n                    <td valign=\"top\" style=\"width:20px;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;line-height:22px;color:#101214;text-align:left;\">\r\n                    &bull;\r\n                    </td>\r\n                    <td valign=\"top\" style=\"font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;line-height:22px;color:#101214;text-align:left;\">\r\n                        <strong>Create a diagram:</strong> describe your diagram or reference existing Pages, and Rovo will visualize flows and organize shapes for you. Rovo creates mind maps and flowcharts, allowing you to effortlessly map out ideas. Rovo pulls from all sources your account has access to, so refer to linked content for extra context.\r\n                    </td>\r\n                    </tr>\r\n                    <tr>\r\n                        <td colspan=\"2\" height=\"10\" style=\"height:10px;line-height:10px;font-size:0;\">\r\n                         \r\n                        </td>\r\n                        </tr>\r\n                        <tr>\r\n                        <td valign=\"top\" style=\"width:20px;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;line-height:22px;color:#101214;text-align:left;\">\r\n                        &bull;\r\n                        </td>\r\n                        <td valign=\"top\" style=\"font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;line-height:22px;color:#101214;text-align:left;\">\r\n                            <strong>Explore ideas:</strong> spark better ideation with AI&#8209;powered insights. Work solo or with your team, collaborating in real time as Rovo helps you organize, expand, and refine your diagrams.\r\n                        </td>\r\n                        </tr>\r\n                         <!-- -->\r\n                     <!-- -->\r\n                <tr>\r\n                    <td colspan=\"2\" height=\"10\" style=\"height:10px;line-height:10px;font-size:0;\">\r\n                     \r\n                    </td>\r\n                    </tr>\r\n                    <tr>\r\n                    <td valign=\"top\" style=\"width:20px;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;line-height:22px;color:#101214;text-align:left;\">\r\n                    &bull;\r\n                    </td>\r\n                    <td valign=\"top\" style=\"font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;line-height:22px;color:#101214;text-align:left;\">\r\n                        <strong>Seamless integration:</strong> easily turn Whiteboard ideas into Confluence pages or Jira work items. With built&#8209;in Jira integration, you can also link Jira work items to plan in a flexible way while tracking content live.\r\n                    </td>\r\n                    </tr>\r\n                </table>\r\n                <!-- end bullet table -->\r\n            </td>\r\n            </tr>\r\n            <!-- end bullets -->\r\n             <!--paragraph-->\r\n        <tr>\r\n            <td style=\"padding-top:20px;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;line-height:22px;color:#101214;text-align:left;\">\r\n                Thanks for racing with us! \r\n            </td>\r\n           </tr>\r\n           <!-- end paragraph -->\r\n            <!--paragraph-->\r\n        <tr>\r\n            <td style=\"padding-top:20px;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;line-height:22px;color:#101214;text-align:left;\">\r\n                The Confluence team\r\n            </td>\r\n           </tr>\r\n           <!-- end paragraph -->\r\n        <!--cta-->\r\n        <tr>\r\n         <td align=\"center\" style=\"padding-top:40px;\">\r\n          <!--cta button-->\r\n          <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n           <tr>\r\n            <td align=\"center\" style=\"border-radius:3px;background-color:#1868DB;\">\r\n             <a href=\"https://click.e.atlassian.com/?qs=26407db5e653a46ff76348e3d86c4e26a2e104fb05be7f264f8c929a5eab231be3a334e0bca06df5e5dde5971cfa37c6b51527c4edfefdb97399d2107336ac30\" target=\"_blank\"  style=\"display:inline-block;border:1px solid #1868DB;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;color:#ffffff;text-decoration:none;border-radius: 3px; padding:15px 40px;\">\r\n              <!--[if mso]>    <![endif]-->Play&nbsp;now<!--[if mso]>    <![endif]--></a>\r\n            </td>\r\n           </tr>\r\n          </table>\r\n         </td>\r\n        </tr>\r\n        <!-- end cta -->\r\n         \r\n        <!--/primary 1-->\r\n       </table>\r\n      </td>\r\n     </tr>\r\n     <!-- footer -->\r\n     <tr>\r\n      <td align=\"center\">\r\n       <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"min-width: 100%; \" class=\"stylingblock-content-wrapper\"><tr><td class=\"stylingblock-content-wrapper camarker-inner\"><!--footer a-->\r\n      <table style=\"width:100%;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n       <tr>\r\n        <td style=\"padding-top:40px;padding-bottom:40px;\" align=\"center\">\r\n         <!--headline table controls length-->\r\n         <table style=\"width:100%;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n          <tr>\r\n           <td style=\"border-top:1px solid #cccccc;padding-top:40px;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:13px;line-height:19px;color:#626F86;text-align:center;\">\r\n            <a href=\"https://view.e.atlassian.com/?qs=732b08804457430bab0c415c23f569268ef6e2d370b196c38d7a2b30ac60ebd5ba8bdd159f5f32f761448007116280fe3614ffdb72d39a26319205b3ea3aaedb763d3bcc71ca72fc5d28128d120b7ce8d2085fe71ea67ea7f9225dc13cfb5115\"  style=\"font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:13px;color:#626F86;text-decoration:none;\">Read&nbsp;in&nbsp;browser</a> •\r\n            <a href=\"https://click.e.atlassian.com/?qs=26407db5e653a46fefee715a5c94652d76e19dff8e077c413018d534b0a46495cce8981d272748c247c4a532ea807b337656b4b928d2b50c356c55a246e3f715\"  style=\"font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:13px;color:#626F86;text-decoration:none;\">Privacy&nbsp;policy</a> •\r\n            <a href=\"https://click.e.atlassian.com/?qs=26407db5e653a46f11537850e444271ce7db8ab9d0b68171b9abdae976c75c5e0b705958483fae7a833a457be87bf81dbfada6ab9da9975a23930151d7bd2e31\"  style=\"font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:13px;color:#626F86;text-decoration:none;\">Contact&nbsp;us</a> • \r\n            <a href=\"https://click.e.atlassian.com/?qs=26407db5e653a46f075226801624af865de6e39c1d1809aba33fde1e343539422b68072ae263d7be1d0fb3988b03088ac12e11b203f64bab476519a1f185e737\"  style=\"font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:13px;color:#626F86;text-decoration:none;\">Read&nbsp;our&nbsp;blog</a> • \r\n            <a href=\"https://click.e.atlassian.com/?qs=26407db5e653a46fd4dafb208ef0046c1ace28c1f82f76817fb5e7c9d3fe4416f0b81b71429504b2e03087aeebaa93dbb8c92a01c0119cebd2976c62101d5fff\"  style=\"font-family:\'Helvetica neue\',Helvetica,Arial,Verdana,sans-serif;font-size:13px;color:#626F86;text-decoration:none;\">Join&nbsp;Atlassian&nbsp;Community</a> \r\n           </td>\r\n          </tr>\r\n          <tr>\r\n           <td style=\"padding-top:10px; display:block;\" align=\"center\">\r\n            <a href=\"https://click.e.atlassian.com/?qs=26407db5e653a46ffcc904bcb48ad9eadb2a9e58ccb4a78beccf321126bdd8f39a19a80d44e4b8c997b38c99bdb81c43e7b371f3b47cb031f0f66a1cf258919a\"  alt=\"Facebook\" style=\"font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;color:#1868DB;text-decoration:none;\">\r\n            <img src=\"https://image.e.atlassian.com/lib/fe4011727164047d751070/m/1/facebook.png\" alt=\"Facebook\" title=\"Facebook\" style=\"line-height: 0px; outline:0;padding:0;border:0;width:25px;height:auto;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;color:#1868DB;\" width=\"25\" border=\"0\" align=\"middle\"></a>  &nbsp; \r\n\r\n            <a href=\"https://click.e.atlassian.com/?qs=26407db5e653a46fd7508cb75416124e90a1ce09aa95c4770f56d05dcf21ae9798e8da058f860f9631dbbb1d7bcf165451d75fae5d66b87b58c85f4eb3e58fb6\"  alt=\"LinkedIn\" style=\"font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;color:#1868DB;text-decoration:none;\">\r\n            <img src=\"https://image.e.atlassian.com/lib/fe4011727164047d751070/m/1/LinkedIn-2025.png\" alt=\"LinkedIn\" title=\"LinkedIn\" style=\"outline:0;padding:0;border:0;width:25px;height:auto;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;color:#1868DB;\" width=\"25\" border=\"0\" align=\"middle\"></a> &nbsp; \r\n\r\n            <a href=\"https://click.e.atlassian.com/?qs=26407db5e653a46f339245243b9bb9a41d55e2087670c6d1beddc2095f2fecb147f46fd32d555e14dd281647501e5069e5c25f79449a1e9fc82d51c1241f50f4\"  alt=\"X\" style=\"font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;color:#A5ADBA;text-decoration:none;\">\r\n            <img src=\"https://image.e.atlassian.com/lib/fe4011727164047d751070/m/1/X-Socials.png\" alt=\"X\" title=\"X\" style=\"outline:0;padding:0;border:0;width:25px;height:auto;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;color:#A5ADBA;\" width=\"25\" border=\"0\" align=\"middle\"></a>\r\n           </td>\r\n          </tr>\r\n          <tr>\r\n           <td style=\"padding-top:10px;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:13px;line-height:19px;color:#626F86;text-align:center;\" align=\"center\">\r\n            Copyright 2025 Atlassian Pty Ltd. All rights reserved. <br>We are located at 341 George Street, Sydney, NSW, 2000, Australia\r\n           </td>\r\n          </tr>\r\n          <tr>\r\n           <td style=\"padding-top:20px;\" align=\"center\">\r\n            <a href=\"https://click.e.atlassian.com/?qs=26407db5e653a46f7a060925b78d22e957db95815fe26efb4ba0860ee172b4cc610e257a2d7766d58dfa7d3dc939c1901c39000073745cc625d4367ca1cd5124\"  style=\"font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;color:#1868DB;text-decoration:none;\"><img src=\"https://image.e.atlassian.com/lib/fe4011727164047d751070/m/1/Logo-light_Atlassian_logo_brand_RGB.png\" alt=\"Atlassian\" title=\"Atlassian\" style=\"display:block;outline:0;padding:0;border:0;width:116px;height:auto;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:16px;color:#1868DB;\" width=\"116\" border=\"0\"></a>\r\n           </td>\r\n          </tr>\r\n          <tr>\r\n           <td style=\"padding-top:20px;font-family:\'Helvetica neue\', Helvetica, Arial, Verdana, sans-serif;font-size:13px;line-height:19px;color:#626F86;text-align:center;\" align=\"center\">\r\n             <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"min-width: 100%; \" class=\"stylingblock-content-wrapper\"><tr><td class=\"stylingblock-content-wrapper camarker-inner\">\r\n\r\n\r\n\r\n\r\n</td></tr></table>\r\n            \r\n             If you no longer wish to receive these emails, please <a href=\'https://preferences.atlassian.com/main/?hid=94a9b785d8ba6be127755f3c5ee430dc\' target=_blank style=\'font-family:Helvetica, Arial, Verdana,sans-serif;font-size:13px;color:#626F86;text-decoration:none;\' >update your preferences</a> or <a href=\"https://click.e.atlassian.com/?qs=26407db5e653a46f2325df75670e2aa66e2eec8a2177a5a8acd39d82a3febe501eb02c2bd1be48c64c2dc3827926fa62cadfa82524bd4369177d11cd8600167d\" target=\"_blank\"  style=\"font-family:Helvetica, Arial, Verdana, sans-serif;font-size:13px;color:#626F86;text-decoration:none;\">unsubscribe&nbsp;here</a>.<img src=\"https://click.e.atlassian.com/open.aspx?ffcb10-fe2c15707262037b751074-fdcd1577776504757614767065-fe4011727164047d751070-fe9715747165027971-fded15797d62017574137575-ff3012707161&d=10194&bmt=0\" width=\"1\" height=\"1\" alt=\"\"></custom></td>\r\n          </tr>\r\n         </table><!--/headline table controls length-->\r\n        </td>\r\n       </tr></table>\r\n<table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"min-width: 100%; \" class=\"stylingblock-content-wrapper\"><tr><td class=\"stylingblock-content-wrapper camarker-inner\"><style> @media print{ #_two50 { background-image:url(\'https://atlassian.everestengagement.com/ea/Sptfb2GCQw/?t=p&e=rick@mavrix.one&c=Confluence Whiteboards Race Mode V2_EML-21754\'); } } blockquote #_two50, #mailContainerBody #_two50, div.OutlookMessageHeader, table.moz-email-headers-table { background-image:url(\'https://atlassian.everestengagement.com/ea/Sptfb2GCQw/?t=f&e=rick@mavrix.one&c=Confluence Whiteboards Race Mode V2_EML-21754\'); } </style> <div id=\"_two50\"></div> \r\n<img id=\"_two50_img\" src=\"https://atlassian.everestengagement.com/ea/Sptfb2GCQw/?e=rick@mavrix.one&c=Confluence Whiteboards Race Mode V2_EML-21754\" width=\"1\" height=\"1\" style=\"margin:0 !important; padding:0 !important; border:0 !important; height:1px !important; width:1px !important;\"></td></tr></table></td></tr></table>\r\n      </td>\r\n     </tr>\r\n     <!-- end footer-->\r\n    </table>\r\n    <!--/table removes gmail bg line between stacked tables-->\r\n    <!--/ALL CONTENT ENDS HERE-->\r\n   </td>\r\n   <td style=\"font-size:0;\"> </td>\r\n  </tr>\r\n </table>\r\n</body>\r\n</html>','Atlassian\r\n \r\nReady, set, go Rick Mislan!\r\n  \r\nHi Rick Mislan,\r\n \r\nThere\'s only one week left to play Confluence Race Mode!\r\n \r\nExperience the thrill of racing\r\n \r\nTo celebrate our Atlassian Williams Racing partnership and ultra‑fast speed improvements to Confluence, we rolled out a fun racing game during the Grand Prix in Las Vegas. Get ready to put your skills to the test! Compete in a time trial, challenge your teammates, and see if you can beat Atlassian Williams Racing driver Alex Albon\'s best time of 31.3 seconds.\r\n \r\nHow to play:\r\n \r\n1. The game is available on desktop only. Select the gear shift on the right side panel and click \"Start Time Trial.\"\r\n \r\n2. Wait for the red lights to go off, then use your keyboard arrows to race your car around the track. Look out for fun facts along the way!\r\n \r\n3. Share your results and challenge your teammates to beat your fastest time.\r\n \r\nExplore Confluence whiteboards features\r\n \r\n* Turn ideas into action: bring the flexibility of a digital whiteboards into your team workspace. Brainstorm, plan, and conduct retros in real‑time.\r\n \r\n* Generate content: instead of starting with a blank page, let AI generate content for you using knowledge from your Confluence ecosystem. Rovo can gather historical context for ideas to inform your research plan. Or choose from various templates to get started faster.\r\n \r\n* Create a diagram: describe your diagram or reference existing Pages, and Rovo will visualize flows and organize shapes for you. Rovo creates mind maps and flowcharts, allowing you to effortlessly map out ideas. Rovo pulls from all sources your account has access to, so refer to linked content for extra context.\r\n \r\n* Explore ideas: spark better ideation with AI‑powered insights. Work solo or with your team, collaborating in real time as Rovo helps you organize, expand, and refine your diagrams.\r\n \r\n* Seamless integration: easily turn Whiteboard ideas into Confluence pages or Jira work items. With built‑in Jira integration, you can also link Jira work items to plan in a flexible way while tracking content live.\r\n \r\nThanks for racing with us!\r\n \r\nThe Confluence Team\r\n \r\nPlay now\r\n>> https://id.atlassian.com/login?application=confluence--racing&continue=https%3A%2F%2Fwww.atlassian.com%2Fgateway%2Fapi%2Fproduct-redirect%3Fproduct%3Dconfluence-whiteboard%26racing%3Dtrue%26atlOrigin%3DeyJpIjoiMDgxOTc4NzgtYjVkZi00Y2FiLThjZmMtMjk5ZDAzYWM5NTE3IiwicCI6InNmbWMifQ\r\n \r\n---------------------------------------\r\n \r\nRead in browser - https://view.e.atlassian.com/?qs=732b08804457430bab0c415c23f569268ef6e2d370b196c38d7a2b30ac60ebd5ba8bdd159f5f32f761448007116280fe3614ffdb72d39a26319205b3ea3aaedb20677ab641eae79a\r\n \r\nPrivacy Policy - https://www.atlassian.com/legal/privacy-policy?utm_source=sfmc&utm_medium=email&utm_campaign=email-1A_EML-21754&jobid=107676044&subid=1986581750&send_date=12/11/2025\r\n \r\nContact us - https://www.atlassian.com/company/contact?utm_source=sfmc&utm_medium=email&utm_campaign=email-1A_EML-21754&jobid=107676044&subid=1986581750&send_date=12/11/2025\r\n \r\nRead our Blog - https://blogs.atlassian.com/?utm_source=sfmc&utm_medium=email&utm_campaign=email-1A_EML-21754&jobid=107676044&subid=1986581750&send_date=12/11/2025\r\n \r\nFollow on X - https://x.com/Atlassian\r\n \r\nCopyright 2025 Atlassian Pty Ltd. All rights reserved. We are located at 341 George Street, Sydney, NSW, 2000, Australia\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nIf you no longer wish to receive these emails, please update your preferences or unsubscribe here.\r\n>> https://preferences.atlassian.com/main/?hid=94a9b785d8ba6be127755f3c5ee430dc\r\n\r\n>> https://sfmc-integrator.services.atlassian.com/unsubscribe?hid=94a9b785d8ba6be127755f3c5ee430dc&key=productAnnouncements&jobId=107676044',0,0,0,0,0,0,'2025-12-11 21:37:24','2025-12-12 00:46:25','2025-12-12 00:46:25','2025-12-12 00:46:25',NULL,NULL,NULL),
(1035,4,' <PH2P111MB0890E371E8A29F8A0F296A9992A1A@PH2P111MB0890.NAMP111.PROD.OUTLOOK.COM>',NULL,NULL,'Follow-Up: UAS Marketplace Industry Days - [UNCLASSIFIED]','usarmy.redstone.peo-avn.mbx.uas-marketplace@army.mil','USARMY Redstone Arsenal PEO AVN Mailbox UAS Marketplace','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:Cambria;\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle18\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Cambria\",serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<div id=\"oct-marking-header-unclassified\">\r\n<p class=\"MsoNormal\"><b><span style=\"mso-ligatures:none\">UNCLASSIFIED <o:p></o:p></span></b></p>\r\n</div>\r\n<div id=\"ms-marking-body\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:8.0pt\"><span style=\"font-size:11.0pt;font-family:&quot;Cambria&quot;,serif;color:#242424;mso-ligatures:none\">Good afternoon,</span><span style=\"mso-ligatures:none\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Cambria&quot;,serif;color:#242424;mso-ligatures:none\">I hope this message finds you well. We would like to express our sincere appreciation for your participation in the UAS Marketplace Industry Days\r\n event hosted by PM UAS from September 16 to 18. Your engagement and insights were invaluable, and we are grateful for your contributions. We apologize for the delay in providing this follow-up information.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Cambria&quot;,serif;color:#242424;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Cambria&quot;,serif;color:#242424;mso-ligatures:none\">Attached to this email, you will find the presentation from the UAS Marketplace Industry Days event, as well as our responses to the questions raised\r\n during the sessions.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Cambria&quot;,serif;color:#242424;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Cambria&quot;,serif;color:#242424;mso-ligatures:none\">We appreciate your patience and understanding regarding this delay. Thank you once again for your participation, and we look forward to future collaboration.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Cambria&quot;,serif;color:#242424;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Cambria&quot;,serif;color:#242424;mso-ligatures:none\">Respectfully,<br>\r\nPM UAS Marketplace Team<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Cambria&quot;,serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Cambria&quot;,serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div id=\"oct-marking-footer-unclassified\">\r\n<p class=\"MsoNormal\"><b><span style=\"mso-ligatures:none\">UNCLASSIFIED <o:p></o:p></span></b></p>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','UNCLASSIFIED\r\n\r\nGood afternoon,\r\n\r\nI hope this message finds you well. We would like to express our sincere appreciation for your participation in the UAS Marketplace Industry Days event hosted by PM UAS from September 16 to 18. Your engagement and insights were invaluable, and we are grateful for your contributions. We apologize for the delay in providing this follow-up information.\r\n\r\n\r\n\r\nAttached to this email, you will find the presentation from the UAS Marketplace Industry Days event, as well as our responses to the questions raised during the sessions.\r\n\r\n\r\n\r\nWe appreciate your patience and understanding regarding this delay. Thank you once again for your participation, and we look forward to future collaboration.\r\n\r\n\r\n\r\nRespectfully,\r\nPM UAS Marketplace Team\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nUNCLASSIFIED',0,0,0,0,0,0,'2025-12-11 22:07:09','2025-12-12 00:46:40','2025-12-12 00:46:40','2025-12-12 00:46:40',NULL,NULL,NULL),
(1036,4,' <PH2P111MB0890026166D9802BAEBA73E492A1A@PH2P111MB0890.NAMP111.PROD.OUTLOOK.COM>',NULL,NULL,'Follow-Up: UAS Marketplace Industry Days - [UNCLASSIFIED]','usarmy.redstone.peo-avn.mbx.uas-marketplace@army.mil','USARMY Redstone Arsenal PEO AVN Mailbox UAS Marketplace','<html xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:Cambria;\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\nspan.EmailStyle18\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Cambria\",serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<div id=\"oct-marking-header-unclassified\">\r\n<p class=\"MsoNormal\"><b><span style=\"mso-ligatures:none\">UNCLASSIFIED <o:p></o:p></span></b></p>\r\n</div>\r\n<div id=\"ms-marking-body\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom:8.0pt\"><span style=\"font-size:11.0pt;font-family:&quot;Cambria&quot;,serif;color:#242424;mso-ligatures:none\">Good afternoon,</span><span style=\"mso-ligatures:none\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Cambria&quot;,serif;color:#242424;mso-ligatures:none\">I hope this message finds you well. We would like to express our sincere appreciation for your participation in the UAS Marketplace Industry Days\r\n event hosted by PM UAS from September 16 to 18. Your engagement and insights were invaluable, and we are grateful for your contributions. We apologize for the delay in providing this follow-up information.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Cambria&quot;,serif;color:#242424;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Cambria&quot;,serif;color:#242424;mso-ligatures:none\">Attached to this email, you will find the presentation from the UAS Marketplace Industry Days event, as well as our responses to the questions raised\r\n during the sessions.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Cambria&quot;,serif;color:#242424;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Cambria&quot;,serif;color:#242424;mso-ligatures:none\">We appreciate your patience and understanding regarding this delay. Thank you once again for your participation, and we look forward to future collaboration.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Cambria&quot;,serif;color:#242424;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Cambria&quot;,serif;color:#242424;mso-ligatures:none\">Respectfully,<br>\r\nPM UAS Marketplace Team<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div id=\"oct-marking-footer-unclassified\">\r\n<p class=\"MsoNormal\"><b><span style=\"mso-ligatures:none\">UNCLASSIFIED <o:p></o:p></span></b></p>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','UNCLASSIFIED\r\nGood afternoon,\r\nI hope this message finds you well. We would like to express our sincere appreciation for your participation in the UAS Marketplace Industry Days event hosted by PM UAS from September 16 to 18. Your engagement and insights were invaluable, and we are grateful for your contributions. We apologize for the delay in providing this follow-up information.\r\n\r\nAttached to this email, you will find the presentation from the UAS Marketplace Industry Days event, as well as our responses to the questions raised during the sessions.\r\n\r\nWe appreciate your patience and understanding regarding this delay. Thank you once again for your participation, and we look forward to future collaboration.\r\n\r\nRespectfully,\r\nPM UAS Marketplace Team\r\n\r\nUNCLASSIFIED',0,0,0,0,0,0,'2025-12-11 22:29:34','2025-12-12 00:47:05','2025-12-12 00:47:05','2025-12-12 00:47:05',NULL,NULL,NULL),
(1038,4,'<f20ae0a9-166f-4891-90aa-b319b1c9ad97@atl1s07mta3029.xt.local>',NULL,NULL,'How was your experience with TinyMCE?','team@engage.tiny.cloud','\"The TinyMCE Team\"','\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" data-google-analytics-opt-out=\"\">\r\n<head>\r\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n  <!--[if !mso]><!-->\r\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\r\n  <!--<![endif]-->\r\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n  <meta name=\"format-detection\" content=\"telephone=no\">\r\n  <meta name=\"x-apple-disable-message-reformatting\">\r\n  <title></title>\r\n  <style type=\"text/css\">\r\n    @media screen {\r\n      @font-face {\r\n        font-family: \'Inter\';\r\n        font-style: normal;\r\n        font-weight: 300;\r\n        src: url(\'https://fonts.gstatic.com/s/inter/v3/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuOKfMZs.woff\') format(\'woff\'), url(\'https://fonts.gstatic.com/s/inter/v3/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuOKfMZ0.woff2\') format(\'woff2\');\r\n      }\r\n      @font-face {\r\n        font-family: \'Inter\';\r\n        font-style: normal;\r\n        font-weight: 400;\r\n        src: url(\'https://fonts.gstatic.com/s/inter/v3/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZs.woff\') format(\'woff\'), url(\'https://fonts.gstatic.com/s/inter/v3/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZ0.woff2\') format(\'woff2\');\r\n      }\r\n      @font-face {\r\n        font-family: \'Inter\';\r\n        font-style: normal;\r\n        font-weight: 500;\r\n        src: url(\'https://fonts.gstatic.com/s/inter/v3/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZs.woff\') format(\'woff\'), url(\'https://fonts.gstatic.com/s/inter/v3/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZ0.woff2\') format(\'woff2\');\r\n      }\r\n      @font-face {\r\n        font-family: \'Inter\';\r\n        font-style: normal;\r\n        font-weight: 700;\r\n        src: url(\'https://fonts.gstatic.com/s/inter/v3/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZs.woff\') format(\'woff\'), url(\'https://fonts.gstatic.com/s/inter/v3/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZ0.woff2\') format(\'woff2\');\r\n      }\r\n      @font-face {\r\n        font-family: \'Inter\';\r\n        font-style: normal;\r\n        font-weight: 800;\r\n        src: url(\'https://fonts.gstatic.com/s/inter/v3/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyYMZs.woff\') format(\'woff\'), url(\'https://fonts.gstatic.com/s/inter/v3/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyYMZ0.woff2\') format(\'woff2\');\r\n      }\r\n    }\r\n  </style>\r\n  <style type=\"text/css\">\r\n    #outlook a {\r\n      padding: 0;\r\n    }\r\n\r\n    .ReadMsgBody,\r\n    .ExternalClass {\r\n      width: 100%;\r\n    }\r\n\r\n    .ExternalClass,\r\n    .ExternalClass p,\r\n    .ExternalClass td,\r\n    .ExternalClass div,\r\n    .ExternalClass span,\r\n    .ExternalClass font {\r\n      line-height: 100%;\r\n    }\r\n\r\n    div[style*=\"margin: 14px 0\"],\r\n    div[style*=\"margin: 16px 0\"] {\r\n      margin: 0 !important;\r\n    }\r\n\r\n    table,\r\n    td {\r\n      mso-table-lspace: 0;\r\n      mso-table-rspace: 0;\r\n    }\r\n\r\n    table,\r\n    tr,\r\n    td {\r\n      border-collapse: collapse;\r\n    }\r\n\r\n    body,\r\n    td,\r\n    th,\r\n    p,\r\n    div,\r\n    li,\r\n    a,\r\n    span {\r\n      -webkit-text-size-adjust: 100%;\r\n      -ms-text-size-adjust: 100%;\r\n      mso-line-height-rule: exactly;\r\n    }\r\n\r\n    img {\r\n      border: 0;\r\n      outline: none;\r\n      line-height: 100%;\r\n      text-decoration: none;\r\n      -ms-interpolation-mode: bicubic;\r\n    }\r\n\r\n    a[x-apple-data-detectors] {\r\n      color: inherit !important;\r\n      text-decoration: none !important;\r\n    }\r\n\r\n    body {\r\n      margin: 0;\r\n      padding: 0;\r\n      width: 100% !important;\r\n      -webkit-font-smoothing: antialiased;\r\n    }\r\n\r\n    .pc-gmail-fix {\r\n      display: none;\r\n      display: none !important;\r\n    }\r\n\r\n    @media screen and (min-width: 621px) {\r\n      .pc-email-container {\r\n        width: 620px !important;\r\n      }\r\n    }\r\n  </style>\r\n  <style type=\"text/css\">\r\n    @media screen and (max-width:620px) {\r\n      .pc-sm-p-35-30 {\r\n        padding: 35px 30px !important\r\n      }\r\n      .pc-sm-p-29-16-26 {\r\n        padding: 29px 16px 26px !important\r\n      }\r\n      .pc-sm-mw-100pc {\r\n        max-width: 100% !important\r\n      }\r\n      .pc-sm-p-38-30-40 {\r\n        padding: 38px 30px 40px !important\r\n      }\r\n    }\r\n  </style>\r\n  <style type=\"text/css\">\r\n    @media screen and (max-width:525px) {\r\n      .pc-xs-p-25-20 {\r\n        padding: 25px 20px !important\r\n      }\r\n      .pc-xs-br-disabled br {\r\n        display: none !important\r\n      }\r\n      .pc-xs-p-15-6-5 {\r\n        padding: 15px 6px 5px !important\r\n      }\r\n      .pc-xs-h-22 {\r\n        height: 22px !important\r\n      }\r\n      .pc-xs-fs-30 {\r\n        font-size: 30px !important\r\n      }\r\n      .pc-xs-lh-42 {\r\n        line-height: 42px !important\r\n      }\r\n      .pc-xs-fs-14 {\r\n        font-size: 14px !important\r\n      }\r\n    }\r\n  </style>\r\n  <!--[if mso]>\r\n    <style type=\"text/css\">\r\n        .pc-fb-font {\r\n            font-family: Helvetica, Arial, sans-serif !important;\r\n        }\r\n    </style>\r\n    <![endif]-->\r\n  <!--[if gte mso 9]><xml><o:OfficeDocumentSettings><o:AllowPNG/><o:PixelsPerInch>96</o:PixelsPerInch></o:OfficeDocumentSettings></xml><![endif]-->\r\n</head>\r\n<body style=\"width: 100% !important; margin: 0; padding: 0; mso-line-height-rule: exactly; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; background-color: #f4f4f4\" data-new-gr-c-s-check-loaded=\"14.1026.0\" data-gr-ext-installed=\"\" class=\"\">\r\n<span style=\"color: transparent; display: none; height: 0; max-height: 0; max-width: 0; opacity: 0; overflow: hidden; mso-hide: all; visibility: hidden; width: 0;\">Now that your trial is over, we\'d love to hear about your experience</span>\r\n<div style=\"display: none !important; visibility: hidden; opacity: 0; overflow: hidden; mso-hide: all; height: 0; width: 0; max-height: 0; max-width:\r\n0;\">‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌\r\n&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;</div>\r\n\r\n<table bgcolor=\"#f4f4f4\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"pc-email-body\" role=\"presentation\" style=\"table-layout: fixed;\" width=\"100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td align=\"center\" class=\"pc-email-body-inner\" valign=\"top\"><!--[if gte mso 9]>\r\n            <v:background xmlns:v=\"urn:schemas-microsoft-com:vml\" fill=\"t\">\r\n                <v:fill type=\"tile\" src=\"\" color=\"#f4f4f4\"></v:fill>\r\n            </v:background>\r\n            <![endif]--><!--[if (gte mso 9)|(IE)]><table width=\"620\" align=\"center\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" role=\"presentation\"><tr><td width=\"620\" align=\"center\" valign=\"top\"><![endif]-->\r\n			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"pc-email-container\" role=\"presentation\" style=\"margin: 0 auto; max-width: 620px;\" width=\"100%\">\r\n				<tbody>\r\n					<tr>\r\n						<td align=\"left\" style=\"padding: 0 10px;\" valign=\"top\">\r\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n							<tbody>\r\n								<tr>\r\n									<td height=\"20\" style=\"font-size: 1px; line-height: 1px;\" class=\"\">&nbsp;</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n							<tbody>\r\n								<tr>\r\n									<td valign=\"top\"><!-- BEGIN MODULE: Content 17 -->\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td bgcolor=\"#f4f4f4\" pc-default-class=\"pc-sm-p-35-30 pc-xs-p-25-20\" pc-default-padding=\"40px\" style=\"padding: 0px 40px; background-color: #f4f4f4\" valign=\"top\">\r\n												<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n													<tbody>\r\n														<tr>\r\n															<td class=\"pc-fb-font\" style=\"line-height: 28px; font-family: Inter, Helvetica, Arial, sans-serif; font-size: 12px; font-weight: 300; letter-spacing: -0.2px; color: #151515\" valign=\"top\">\r\n															<div style=\"text-align: center;\">Is this email not displaying correctly? <a href=\"https://pi.tiny.cloud/webmail/2202/1940822398/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864\" style=\"color: #151515;\">View it in your browser</a></div>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									<!-- END MODULE: Content 17 --><!-- BEGIN MODULE: Header 7 -->\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td align=\"center\" bgcolor=\"#ffffff\" style=\"background-color: #ffffff; background-position: top center; background-size: cover\" valign=\"top\"><!--[if gte mso 9]>\r\n            <v:rect xmlns:v=\"urn:schemas-microsoft-com:vml\" fill=\"true\" stroke=\"false\" style=\"width: 600px;\">\r\n                <v:fill type=\"frame\" src=\"\" color=\"#ffffff\"></v:fill>\r\n                <v:textbox style=\"mso-fit-shape-to-text: true;\" inset=\"0,0,0,0\">\r\n                    <div style=\"font-size: 0; line-height: 0;\">\r\n                        <table width=\"600\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" align=\"center\">\r\n                            <tr>\r\n                                <td valign=\"top\" style=\"font-size: 14px; line-height: 1.5;\">\r\n                                    <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" role=\"presentation\">\r\n                                        <tr>\r\n                                            <td colspan=\"3\" height=\"29\" style=\"line-height: 1px; font-size: 1px;\">&nbsp;</td>\r\n                                        </tr>\r\n                                        <tr>\r\n                                            <td width=\"26\" valign=\"top\" style=\"line-height: 1px; font-size: 1px;\">&nbsp;</td>\r\n                                            <td valign=\"top\" align=\"left\">\r\n            <![endif]--><!--[if !gte mso 9]><!-->\r\n												<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n													<tbody>\r\n														<tr>\r\n															<td pc-default-class=\"pc-sm-p-29-16-26 pc-xs-p-15-6-5\" pc-default-padding=\"29px 26px 26px\" style=\"padding: 20px 26px 0px\" valign=\"top\"><!--<![endif]-->\r\n															<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n																<tbody>\r\n																	<tr>\r\n																		<td style=\"padding: 10px 14px;\" valign=\"top\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dc7d92/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\" style=\"text-decoration: none;\"><img alt=\"Tiny logo\" height=\"31\" src=\"https://www2.ephox.com/l/2202/2021-02-22/d55tdv/2202/16140490780zkI7GHy/logo_tiny__lock_secondary.png\" style=\"max-width: 100%; height: auto; border: 0; line-height: 100%; outline: 0; -ms-interpolation-mode: bicubic; font-size: 14px; color: #ffffff;\" width=\"95\"></a></td>\r\n																	</tr>\r\n																</tbody>\r\n																<tbody>\r\n																	<tr>\r\n																		<td class=\"pc-xs-h-22\" height=\"09\" style=\"line-height: 1px; font-size: 1px\">&nbsp;</td>\r\n																	</tr>\r\n																</tbody>\r\n																<tbody>\r\n																	<tr>\r\n																		<td valign=\"top\">\r\n																		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n																			<tbody>\r\n																			</tbody>\r\n																		</table>\r\n																		</td>\r\n																	</tr>\r\n																</tbody>\r\n															</table>\r\n															<!--[if !gte mso 9]><!--></td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n												<!--<![endif]--><!--[if gte mso 9]>\r\n                                            </td>\r\n                                            <td width=\"26\" style=\"line-height: 1px; font-size: 1px;\" valign=\"top\">&nbsp;</td>\r\n                                        </tr>\r\n                                        <tr>\r\n                                            <td colspan=\"3\" height=\"26\" style=\"line-height: 1px; font-size: 1px;\">&nbsp;</td>\r\n                                        </tr>\r\n                                    </table>\r\n                                </td>\r\n                            </tr>\r\n                        </table>\r\n                    </div>\r\n                </v:textbox>\r\n            </v:rect>\r\n            <![endif]--></td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									<!-- END MODULE: Header 7 --><!-- BEGIN MODULE: Call to Action 1 -->\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td bgcolor=\"#ffffff\" pc-default-class=\"pc-sm-p-35-30 pc-xs-p-25-20\" pc-default-padding=\"40px 30px 32px\" style=\"padding: 20px 30px 30px; background-color: #ffffff\" valign=\"top\">\r\n												<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n													<tbody>\r\n														<tr>\r\n															<td class=\"pc-fb-font\" style=\"font-family: Inter, Helvetica, Arial, sans-serif; font-size: 16px; font-weight: 300; line-height: 28px; color: #151515; text-align: center\" valign=\"top\">\r\n															<div class=\"mail-wrapper\" dir=\"auto\" lang=\"und\">\r\n															<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"wrapper\" role=\"presentation\" style=\"background: #0c1531 url(\'https://pi.tiny.cloud/e/2202/images-rNveCGkM3xFz/dc7dbv/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\') center top/cover repeat; background-position: center top; background-repeat: repeat; background-size: cover; width: 100%;\">\r\n																<tbody>\r\n																	<tr>\r\n																		<td class=\"\"><!-- [if mso | IE]><v:rect style=\"mso-width-percent:1000;\" xmlns:v=\"urn:schemas-microsoft-com:vml\" fill=\"true\" stroke=\"false\"><v:fill origin=\"0.5, 0\" position=\"0.5, 0\" src=\"https://images.typeform.com/images/rNveCGkM3xFz\" color=\"#0c1531\" type=\"tile\" size=\"1,1\" aspect=\"atleast\" ></v:fill><v:textbox style=\"mso-fit-shape-to-text:true\" inset=\"0,0,0,0\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"wrapper-outlook\" role=\"presentation\" style=\"width:640px;\" width=\"640\" bgcolor=\"#0c1531\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n																		<div style=\"margin: 0px auto; max-width: 640px;\">\r\n																		<div style=\"line-height: 0; font-size: 0;\">\r\n																		<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width: 100%;\">\r\n																			<tbody>\r\n																				<tr>\r\n																					<td style=\"direction: ltr; font-size: 0px; padding: 0; text-align: center;\" class=\"\"><!-- [if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td class=\"\" width=\"640px\" ><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"\" role=\"presentation\" style=\"width:640px;\" width=\"640\" ><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\"><![endif]-->\r\n																					<div style=\"margin: 0px auto; max-width: 640px;\">\r\n																					<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width: 100%;\">\r\n																						<tbody>\r\n																							<tr>\r\n																								<td style=\"direction: ltr; font-size: 0px; padding: 20px 0; text-align: center;\" class=\"\"><!-- [if mso | IE]><table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td class=\"\" style=\"vertical-align:top;width:640px;\" ><![endif]-->\r\n																								<div class=\"mj-column-px-640 mj-outlook-group-fix\" style=\"font-size: 0px; text-align: left; direction: ltr; display: inline-block; vertical-align: top; width: 100%;\">\r\n																								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"vertical-align: top;\" width=\"100%\">\r\n																									<tbody>\r\n																										<tr>\r\n																											<td align=\"left\" style=\"font-size: 0px; padding: 10px 25px; word-break: break-word;\" class=\"\">\r\n																											<div style=\"font-family: \'Inter\',Helvetica,Arial; font-size: 22px; font-weight: normal; line-height: 32px; text-align: left; color: #ffffff;\">On a scale of 1 to 10, how likely are you to recommend TinyMCE to a friend or colleague?</div>\r\n																											</td>\r\n																										</tr>\r\n																										<tr>\r\n																											<td align=\"left\" style=\"font-size: 0px; padding: 10px 25px; padding-top: 0; word-break: break-word;\" class=\"\">\r\n																											<div style=\"font-family: Ubuntu,Helvetica,Arial,sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #ffffff;\">0 -&gt; Not at all likely</div>\r\n																											</td>\r\n																										</tr>\r\n																										<tr>\r\n																											<td align=\"left\" style=\"font-size: 0px; padding: 10px 25px; padding-top: 0; word-break: break-word;\" class=\"\">\r\n																											<div style=\"font-family: Ubuntu,Helvetica,Arial,sans-serif; font-size: 13px; line-height: 1; text-align: left; color: #ffffff;\">10 -&gt; Extremely likely</div>\r\n																											</td>\r\n																										</tr>\r\n																										<tr>\r\n																											<td align=\"left\" class=\"sc-bdfBwQ cIKpxU\" style=\"font-size: 0px; padding: 10px 25px; word-break: break-word;\">\r\n																											<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"color: #000000; font-family: Ubuntu,Helvetica,Arial,sans-serif; font-size: 13px; line-height: 22px; table-layout: auto; width: 100%; border: none;\" width=\"100%\">\r\n																												<tbody>\r\n																													<tr style=\"height: 56px;\">\r\n																														<td align=\"center\" style=\"padding: 4px; width: 41px;\">\r\n																														<table style=\"width: 100%;\">\r\n																															<tbody>\r\n																																<tr>\r\n																																	<td align=\"center\" style=\"border: 1px #FFFFFF solid; border-radius: 3px; background-color: rgba(255, 255, 255, 0.1); font-family: \'Inter\',Helvetica,Arial; font-size: 16px; height: 56px; width: 100%;\" valign=\"middle\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/s-01F52SR1KX72PEA7RXD0MFEZZP-0/dc7d95/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\" style=\"display: block; color: #ffffff; text-decoration: none; text-align: center;\">0</a></td>\r\n																																</tr>\r\n																															</tbody>\r\n																														</table>\r\n																														</td>\r\n																														<td align=\"center\" style=\"padding: 4px; width: 41px;\">\r\n																														<table style=\"width: 100%;\">\r\n																															<tbody>\r\n																																<tr>\r\n																																	<td align=\"center\" style=\"border: 1px #FFFFFF solid; border-radius: 3px; background-color: rgba(255, 255, 255, 0.1); font-family: \'Inter\',Helvetica,Arial; font-size: 16px; height: 56px; width: 100%;\" valign=\"middle\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/s-01F52SR1KX72PEA7RXD0MFEZZP-1/dc7d98/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\" style=\"display: block; color: #ffffff; text-decoration: none; text-align: center;\">1</a></td>\r\n																																</tr>\r\n																															</tbody>\r\n																														</table>\r\n																														</td>\r\n																														<td align=\"center\" style=\"padding: 4px; width: 41px;\">\r\n																														<table style=\"width: 100%;\">\r\n																															<tbody>\r\n																																<tr>\r\n																																	<td align=\"center\" style=\"border: 1px #FFFFFF solid; border-radius: 3px; background-color: rgba(255, 255, 255, 0.1); font-family: \'Inter\',Helvetica,Arial; font-size: 16px; height: 56px; width: 100%;\" valign=\"middle\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/s-01F52SR1KX72PEA7RXD0MFEZZP-2/dc7d9c/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\" style=\"display: block; color: #ffffff; text-decoration: none; text-align: center;\">2</a></td>\r\n																																</tr>\r\n																															</tbody>\r\n																														</table>\r\n																														</td>\r\n																														<td align=\"center\" style=\"padding: 4px; width: 41px;\">\r\n																														<table style=\"width: 100%;\">\r\n																															<tbody>\r\n																																<tr>\r\n																																	<td align=\"center\" style=\"border: 1px #FFFFFF solid; border-radius: 3px; background-color: rgba(255, 255, 255, 0.1); font-family: \'Inter\',Helvetica,Arial; font-size: 16px; height: 56px; width: 100%;\" valign=\"middle\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/s-01F52SR1KX72PEA7RXD0MFEZZP-3/dc7d9g/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\" style=\"display: block; color: #ffffff; text-decoration: none; text-align: center;\">3</a></td>\r\n																																</tr>\r\n																															</tbody>\r\n																														</table>\r\n																														</td>\r\n																														<td align=\"center\" style=\"padding: 4px; width: 41px;\">\r\n																														<table style=\"width: 100%;\">\r\n																															<tbody>\r\n																																<tr>\r\n																																	<td align=\"center\" style=\"border: 1px #FFFFFF solid; border-radius: 3px; background-color: rgba(255, 255, 255, 0.1); font-family: \'Inter\',Helvetica,Arial; font-size: 16px; height: 56px; width: 100%;\" valign=\"middle\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/s-01F52SR1KX72PEA7RXD0MFEZZP-4/dc7d9k/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\" style=\"display: block; color: #ffffff; text-decoration: none; text-align: center;\">4</a></td>\r\n																																</tr>\r\n																															</tbody>\r\n																														</table>\r\n																														</td>\r\n																														<td align=\"center\" style=\"padding: 4px; width: 41px;\">\r\n																														<table style=\"width: 100%;\">\r\n																															<tbody>\r\n																																<tr>\r\n																																	<td align=\"center\" style=\"border: 1px #FFFFFF solid; border-radius: 3px; background-color: rgba(255, 255, 255, 0.1); font-family: \'Inter\',Helvetica,Arial; font-size: 16px; height: 56px; width: 100%;\" valign=\"middle\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/s-01F52SR1KX72PEA7RXD0MFEZZP-5/dc7d9n/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\" style=\"display: block; color: #ffffff; text-decoration: none; text-align: center;\">5</a></td>\r\n																																</tr>\r\n																															</tbody>\r\n																														</table>\r\n																														</td>\r\n																													</tr>\r\n																													<tr style=\"height: 56px;\">\r\n																														<td align=\"center\" style=\"padding: 4px; width: 41px;\">\r\n																														<table style=\"width: 100%;\">\r\n																															<tbody>\r\n																																<tr>\r\n																																	<td align=\"center\" style=\"border: 1px #FFFFFF solid; border-radius: 3px; background-color: rgba(255, 255, 255, 0.1); font-family: \'Inter\',Helvetica,Arial; font-size: 16px; height: 56px; width: 100%;\" valign=\"middle\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/s-01F52SR1KX72PEA7RXD0MFEZZP-6/dc7d9r/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\" style=\"display: block; color: #ffffff; text-decoration: none; text-align: center;\">6</a></td>\r\n																																</tr>\r\n																															</tbody>\r\n																														</table>\r\n																														</td>\r\n																														<td align=\"center\" style=\"padding: 4px; width: 41px;\">\r\n																														<table style=\"width: 100%;\">\r\n																															<tbody>\r\n																																<tr>\r\n																																	<td align=\"center\" style=\"border: 1px #FFFFFF solid; border-radius: 3px; background-color: rgba(255, 255, 255, 0.1); font-family: \'Inter\',Helvetica,Arial; font-size: 16px; height: 56px; width: 100%;\" valign=\"middle\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/s-01F52SR1KX72PEA7RXD0MFEZZP-7/dc7d9v/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\" style=\"display: block; color: #ffffff; text-decoration: none; text-align: center;\">7</a></td>\r\n																																</tr>\r\n																															</tbody>\r\n																														</table>\r\n																														</td>\r\n																														<td align=\"center\" style=\"padding: 4px; width: 41px;\">\r\n																														<table style=\"width: 100%;\">\r\n																															<tbody>\r\n																																<tr>\r\n																																	<td align=\"center\" style=\"border: 1px #FFFFFF solid; border-radius: 3px; background-color: rgba(255, 255, 255, 0.1); font-family: \'Inter\',Helvetica,Arial; font-size: 16px; height: 56px; width: 100%;\" valign=\"middle\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/s-01F52SR1KX72PEA7RXD0MFEZZP-8/dc7d9y/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\" style=\"display: block; color: #ffffff; text-decoration: none; text-align: center;\">8</a></td>\r\n																																</tr>\r\n																															</tbody>\r\n																														</table>\r\n																														</td>\r\n																														<td align=\"center\" style=\"padding: 4px; width: 41px;\">\r\n																														<table style=\"width: 100%;\">\r\n																															<tbody>\r\n																																<tr>\r\n																																	<td align=\"center\" style=\"border: 1px #FFFFFF solid; border-radius: 3px; background-color: rgba(255, 255, 255, 0.1); font-family: \'Inter\',Helvetica,Arial; font-size: 16px; height: 56px; width: 100%;\" valign=\"middle\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/s-01F52SR1KX72PEA7RXD0MFEZZP-9/dc7db2/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\" style=\"display: block; color: #ffffff; text-decoration: none; text-align: center;\">9</a></td>\r\n																																</tr>\r\n																															</tbody>\r\n																														</table>\r\n																														</td>\r\n																														<td align=\"center\" style=\"padding: 4px; width: 41px;\">\r\n																														<table style=\"width: 100%;\">\r\n																															<tbody>\r\n																																<tr>\r\n																																	<td align=\"center\" style=\"border: 1px #FFFFFF solid; border-radius: 3px; background-color: rgba(255, 255, 255, 0.1); font-family: \'Inter\',Helvetica,Arial; font-size: 16px; height: 56px; width: 100%;\" valign=\"middle\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/-01F52SR1KX72PEA7RXD0MFEZZP-10/dc7db5/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\" style=\"display: block; color: #ffffff; text-decoration: none; text-align: center;\">10</a></td>\r\n																																</tr>\r\n																															</tbody>\r\n																														</table>\r\n																														</td>\r\n																													</tr>\r\n																												</tbody>\r\n																											</table>\r\n																											</td>\r\n																										</tr>\r\n																									</tbody>\r\n																								</table>\r\n																								</div>\r\n																								<!-- [if mso | IE]></td></tr></table><![endif]--></td>\r\n																							</tr>\r\n																						</tbody>\r\n																					</table>\r\n																					</div>\r\n																					<!-- [if mso | IE]></td></tr></table></td></tr></table><![endif]--></td>\r\n																				</tr>\r\n																			</tbody>\r\n																		</table>\r\n																		</div>\r\n																		</div>\r\n																		<!-- [if mso | IE]></td></tr></table></v:textbox></v:rect><![endif]--></td>\r\n																	</tr>\r\n																</tbody>\r\n															</table>\r\n															</div>\r\n															</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"10\" style=\"font-size: 1px; line-height: 1px\" class=\"\">&nbsp;</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									<!-- END MODULE: Call to Action 1 --><!-- BEGIN MODULE: Footer 6 -->\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td bgcolor=\"#0c132c\" pc-default-class=\"pc-sm-p-38-30-40 pc-xs-p-25-20\" pc-default-padding=\"38px 40px 40px\" style=\"padding: 40px; background-color: #0c132c\" valign=\"top\">\r\n												<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n													<tbody>\r\n														<tr>\r\n															<td class=\"pc-xs-fs-14\" style=\"text-align: center; font-family: Arial, sans-serif; font-size: 24px;\" valign=\"top\"><a href=\"https://pi.tiny.cloud/e/2202/jointiny-/dc7db8/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\" style=\"text-decoration: none;\"><img alt=\"Facebook icon\" height=\"20\" src=\"http://www2.ephox.com/l/2202/2019-12-29/d3hmk2/2202/202495/icons8_facebook_96.png\" style=\"border: 0; line-height: 100%; outline: 0; -ms-interpolation-mode: bicubic; font-size: 14px; color: #ffffff;\" width=\"20\"></a> <span>&nbsp;&nbsp;&nbsp;</span> <a href=\"https://pi.tiny.cloud/e/2202/jointiny/dc7dbc/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\" style=\"text-decoration: none;\"><img alt=\"Twitter icon\" height=\"20\" src=\"https://pi.tiny.cloud/l/2202/2023-12-11/dfjjnt/2202/1702329987ItvqaiPg/Twitter_X_icon_white.png\" style=\"border: 0; line-height: 100%; outline: 0;\r\n-ms-interpolation-mode: bicubic; font-size: 14px; color: #ffffff\" width=\"20\"></a> <span>&nbsp;&nbsp;&nbsp;</span> <a href=\"https://pi.tiny.cloud/e/2202/company-jointiny-/dc7dbg/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\" style=\"text-decoration: none;\"><img alt=\"Linkedin icon\" height=\"20\" src=\"http://www2.ephox.com/l/2202/2019-12-29/d3hmk6/2202/202499/icons8_linkedin_104.png\" style=\"border: 0; line-height: 100%; outline: 0; -ms-interpolation-mode: bicubic; font-size: 14px; color: #ffffff;\" width=\"20\"></a> <span>&nbsp;&nbsp;&nbsp;</span> <a href=\"https://pi.tiny.cloud/e/2202/search-q-23tinymce/dc7dbk/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\" style=\"text-decoration: none;\"><img alt=\"Stackoverflow icon\" height=\"20\" src=\"http://www2.ephox.com/l/2202/2019-12-29/d3hmmz/2202/202503/icons8_stack_overflow_100.png\" style=\"border: 0; line-height: 100%; outline: 0;\r\n-ms-interpolation-mode: bicubic; font-size: 14px; color: #ffffff;\" width=\"20\"></a> <span>&nbsp;&nbsp;&nbsp;</span><a href=\"https://pi.tiny.cloud/e/2202/tinymce/dc7dbn/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\" style=\"text-decoration: none;\"><img alt=\"Github icon\" height=\"20\" src=\"http://www2.ephox.com/l/2202/2019-12-29/d3hmmx/2202/202501/icons8_github_96.png\" style=\"border: 0; line-height: 100%; outline: 0; -ms-interpolation-mode: bicubic; font-size: 14px; color: #ffffff;\" width=\"20\"></a></td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"15\" style=\"font-size: 1px; line-height: 1px;\" class=\"\">&nbsp;</td>\r\n														</tr>\r\n													</tbody>\r\n													<tbody>\r\n														<tr>\r\n															<td class=\"pc-fb-font\" style=\"text-align: center; line-height: 20px; letter-spacing: -0.2px; font-family: Inter, Helvetica, Arial, sans-serif; font-size: 14px; color: #ffffff\" valign=\"top\">This email was sent to rick@mavrix.one<br>\r\n															<br>\r\n															Update your <a href=\"https://pi.tiny.cloud/emailPreference/epc/2202/6RYuSrHXlKPxn1udQ1VfN1fIvYTLGmVM8AIDBfJlg3A/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1940822398\" style=\"color: #ffffff;\">email preferences</a> or <a href=\"https://pi.tiny.cloud/unsubscribe/u/2202/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1940822398\" style=\"color: #ffffff;\">unsubscribe</a><br>\r\n															<br>\r\n															© 2025 Tiny Technologies | All rights reserved<br>\r\n															www.tiny.cloud | View our <a href=\"https://pi.tiny.cloud/e/2202/legal-privacy/dc7dbr/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\" style=\"color: #ffffff;\">privacy policy</a><br>\r\n															2100 Geng Road, Palo Alto, CA 94303 USA</td>\r\n														</tr>\r\n														<tr>\r\n															<td height=\"13\" style=\"font-size: 1px; line-height: 1px;\" class=\"\">&nbsp;</td>\r\n														</tr>\r\n													</tbody>\r\n													<tbody>\r\n													</tbody>\r\n												</table>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									<!-- END MODULE: Footer 6 --></td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\r\n							<tbody>\r\n								<tr>\r\n									<td height=\"20\" style=\"font-size: 1px; line-height: 1px;\" class=\"\">&nbsp;</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			<!--[if (gte mso 9)|(IE)]></td></tr></table><![endif]--></td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n<!-- Fix for Gmail on iOS -->\r\n\r\n<div class=\"pc-gmail-fix\" style=\"white-space: nowrap; font: 15px courier; line-height: 0;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</div>\r\n<img alt=\"\" src=\"https://pi.tiny.cloud/r/2202/1/1940822398/open/1\" /></body>\r\n</html>','\r\nNow that your trial is over, we\'d love to hear about your experience\r\n\r\nIs this email not displaying correctly? View it in your browser https://pi.tiny.cloud/webmail/2202/1940822398/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864\r\n\r\nhttps://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dc7d92/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\r\n\r\nOn a scale of 1 to 10, how likely are you to recommend TinyMCE to a friend or colleague?\r\n\r\n0 -&gt; Not at all likely\r\n10 -&gt; Extremely likely\r\n\r\n0 https://pi.tiny.cloud/e/2202/s-01F52SR1KX72PEA7RXD0MFEZZP-0/dc7d95/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\r\n1 https://pi.tiny.cloud/e/2202/s-01F52SR1KX72PEA7RXD0MFEZZP-1/dc7d98/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\r\n2 https://pi.tiny.cloud/e/2202/s-01F52SR1KX72PEA7RXD0MFEZZP-2/dc7d9c/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\r\n3 https://pi.tiny.cloud/e/2202/s-01F52SR1KX72PEA7RXD0MFEZZP-3/dc7d9g/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\r\n4 https://pi.tiny.cloud/e/2202/s-01F52SR1KX72PEA7RXD0MFEZZP-4/dc7d9k/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\r\n5 https://pi.tiny.cloud/e/2202/s-01F52SR1KX72PEA7RXD0MFEZZP-5/dc7d9n/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\r\n6 https://pi.tiny.cloud/e/2202/s-01F52SR1KX72PEA7RXD0MFEZZP-6/dc7d9r/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\r\n7 https://pi.tiny.cloud/e/2202/s-01F52SR1KX72PEA7RXD0MFEZZP-7/dc7d9v/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\r\n8 https://pi.tiny.cloud/e/2202/s-01F52SR1KX72PEA7RXD0MFEZZP-8/dc7d9y/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\r\n9 https://pi.tiny.cloud/e/2202/s-01F52SR1KX72PEA7RXD0MFEZZP-9/dc7db2/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\r\n10 https://pi.tiny.cloud/e/2202/-01F52SR1KX72PEA7RXD0MFEZZP-10/dc7db5/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\r\n\r\nhttps://pi.tiny.cloud/e/2202/jointiny-/dc7db8/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\r\nhttps://pi.tiny.cloud/e/2202/jointiny/dc7dbc/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\r\nhttps://pi.tiny.cloud/e/2202/company-jointiny-/dc7dbg/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\r\nhttps://pi.tiny.cloud/e/2202/search-q-23tinymce/dc7dbk/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\r\nhttps://pi.tiny.cloud/e/2202/tinymce/dc7dbn/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\r\n\r\nThis email was sent to rick@mavrix.one\r\nUpdate your email preferences https://pi.tiny.cloud/emailPreference/epc/2202/6RYuSrHXlKPxn1udQ1VfN1fIvYTLGmVM8AIDBfJlg3A/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1940822398 or unsubscribe https://pi.tiny.cloud/unsubscribe/u/2202/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1940822398\r\n\r\n© 2025 Tiny Technologies | All rights reserved\r\nwww.tiny.cloud | View our privacy policy\r\nhttps://pi.tiny.cloud/e/2202/legal-privacy/dc7dbr/1940822398/h/3jLxKZ2Ek2NDWgNkGi61UbLGrIQtJk8LJcmFlEetBwM\r\n2100 Geng Road, Palo Alto, CA 94303 USA',0,0,0,0,0,0,'2025-12-12 14:11:36','2025-12-13 03:46:17','2025-12-13 03:46:17','2025-12-13 03:46:17',NULL,NULL,NULL),
(1039,4,'<20251213002611.f64e18bb504a0c3b@emails.leatherman.com>',NULL,NULL,'=?UTF-8?b?SXQncyBub3QgdG9vIGxhdGUg8J+OgSDwn46BIPCfjoE=?=','Leatherman@emails.leatherman.com','Leatherman','<!DOCTYPE html>\r\n<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\"><head><title>It\'s not too late &#127873; &#127873; &#127873;</title><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><!--[if mso]>\r\n<xml><w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\"><w:DontUseAdvancedTypographyReadingMail/></w:WordDocument>\r\n<o:OfficeDocumentSettings><o:PixelsPerInch>96</o:PixelsPerInch><o:AllowPNG/></o:OfficeDocumentSettings></xml>\r\n<![endif]--><style>\r\n*{box-sizing:border-box}body{margin:0;padding:0}a[x-apple-data-detectors]{color:inherit!important;text-decoration:inherit!important}#MessageViewBody a{color:inherit;text-decoration:none}p{line-height:inherit}.desktop_hide,.desktop_hide table{mso-hide:all;display:none;max-height:0;overflow:hidden}.image_block img+div{display:none}sub,sup{font-size:75%;line-height:0} @media (max-width:620px){.image_block div.fullWidth{max-width:100%!important}.mobile_hide{display:none}.row-content{width:100%!important}.stack .column{width:100%;display:block}.mobile_hide{min-height:0;max-height:0;max-width:0;overflow:hidden;font-size:0}.desktop_hide,.desktop_hide table{display:table!important;max-height:none!important}.row-10 .column-1,.row-3 .column-1 .block-1.heading_block td.pad,.row-5 .column-1,.row-7 .column-1{padding:0!important}.row-3 .column-1 .block-1.heading_block h1{font-size:21px!important}.row-3 .column-1 .block-3.button_block td.pad{padding:10px 10px 25px!important}.row-3 .column-1 .block-3.button_block span,.row-5 .column-1 .block-3.button_block span,.row-7 .column-1 .block-4.button_block span{font-size:11px!important;line-height:22px!important}.row-3 .column-1 .block-2.paragraph_block td.pad>div{font-size:16px!important}.row-3 .column-1 .block-2.paragraph_block td.pad{padding:15px 40px 0!important}.row-5 .column-1 .block-1.heading_block td.pad,.row-7 .column-1 .block-1.heading_block td.pad{padding:40px 0 0!important}.row-5 .column-1 .block-1.heading_block h1,.row-7 .column-1 .block-1.heading_block h1{font-size:20px!important}.row-5 .column-1 .block-2.paragraph_block td.pad>div,.row-7 .column-1 .block-3.paragraph_block td.pad>div{font-size:15px!important}.row-5 .column-1 .block-2.paragraph_block td.pad,.row-7 .column-1 .block-3.paragraph_block td.pad{padding:10px 30px 0!important}.row-5 .column-1 .block-3.button_block td.pad,.row-7 .column-1 .block-4.button_block td.pad{padding:30px!important}}\r\n</style><!--[if mso ]><style>sup, sub { font-size: 100% !important; } sup { mso-text-raise:10% } sub { mso-text-raise:-10% }</style> <![endif]--><!--[if true]><style>.forceBgColor{background-color: white !important}</style><![endif]--></head><body class=\"body forceBgColor\" style=\"background-color:transparent;margin:0;padding:0;-webkit-text-size-adjust:none;text-size-adjust:none\"><span style=\"color: transparent; display: none !important; font-size: 0px; line-height: 0px; height: 0; max-height: 0; max-width: 0; opacity: 0; overflow: hidden; mso-hide: all; visibility: hidden; width: 0;\">Three options when time\'s running short</span><div style=\"display: none; max-height: 0px; overflow: hidden;\">&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&nbsp; </div><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/CgxoqE1BKlemu9sZFygSINvKZP9Q7-g_H6bczq1FV-oZ4xhNIZEeDJOCFHQpPSzKMSqr6KgsT9pBagxoR0_g78-WAAdi9-TIAQGAAgM.PlkPlOTUcqvH9w/click\" xnpe-attr=\"notextnorew\"><img width=\"1\" height=\"1\" alt=\"\" src=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/CgxoqE1BKlemu9sZFygSINvKZP9Q7-g_H6bczq1FV-oZ4xhNIZEeDJOCFHQpPSzKMSqr6KgsT9pBagxoR0_g78-WAAdi9-SAAgM.b0DRhsyHpnJMZg/open\" style=\"display: none;\"></a><table class=\"nl-container\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:transparent\"><tbody><tr><td><table class=\"row row-1\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:600px\">\r\n<a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUrh9KuV_wPsX9vLL7pxb6xr-SvKxhK_iRDmeyU0iJZq2OqekpDNKSgqKrfT1y8vL9XJSE0syUotyE_P0kvNz9Q21Vr9YoeN_y9FKgIuptFiIyyknPz-3KDUxOcNKHiiSLCRpZGpoZGgY75Gfk5mSWBkfXpRYEB8KRMFW3EAFuUKsqbmJmTlRofr6SfkplfoliUk5qfolEHaRfkkKRCTaMBZTEJsImJ2SWQbGiUlWaSnmRqmWJiamFqZJxslmljVg6-IzU6yKMpOzHXITy4oyK_Ty81JrjEySzJINDROTLNOSzQ0STbN4Mtz9H7w_P42BPen7kwYmZgABuWr_.Q9bCvdLLPXNFbQ/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/4d6a115a-c10b-4a13-855f-b386b90f9948.jpeg\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt=\"Shop multi-tools and knives at Leatherman.com\" title=\"Shop multi-tools and knives at Leatherman.com\" height=\"auto\"></a></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-2\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%;padding-right:0;padding-left:0\"><div class=\"alignment\" align=\"center\"><div class=\"fullWidth\" style=\"max-width:600px\">\r\n<a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUrh9KuV_wPsX9vLL7pxb6xr-SvKxhK_iRDmeyU0iJZq2Oqek_DNKSgqKrfT1y8vL9XJSE0syUotyE_P0kvNz9QuK8lNKk0uK9RHiuumZaSW6yYlFKfZliUWZiXkltibGxsamhhaWxsZGBmaGhlqrX6zQ8b_laCXAxVRaLMTllJOfn1uUmpicYSUPFEkWkjQyNTQyNIz3yM_JTEmsjA8vSiyIDwWiYCtuoIJcIdbU3MTMnKhQff2k_JRK_ZLEpJxU_RIIu0i_JAUiEm0UiymITQTMTsksA-PEJKu0FHOjVEsTE1ML0yTjZDPLGrB18ZkpVkWZydkOuYllRZkVevl5qTVGJklmyYaGiUmWacnmBommWTwZ7v4P3p-fxsCe9P1JAxMzAOLGfNo.z3D3wXPv7plMmA/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/Pi7_Gif.gif\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt=\"LET THEM CHOOSE\" title=\"LET THEM CHOOSE\" height=\"auto\"></a></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-3\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto;background-color:#f7f7f2;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:15px;padding-top:25px;vertical-align:top\"><table class=\"heading_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"20\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><h1 style=\"margin:0;color:#393c43;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:30px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:36px\"><strong>E-GIFT CARDS TO THE RESCUE</strong></h1></td></tr></table><table class=\"paragraph_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-left:50px;padding-right:50px\"><div style=\"color:#393c43;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:22px;font-weight:400;letter-spacing:0;line-height:1.2;text-align:center;mso-line-height-alt:26px\"><p style=\"margin:0\">\r\nStill not sure what to get them? Let them decide. A Leatherman digital gift card lands exactly when you need it, giving recipients the freedom to pick the tool that fits their life. No second-guessing, no shipping required.</p></div></td></tr></table><table class=\"button_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"35\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\">\r\n<a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUrh9KuV_wPsX9vLL7pxb6xr-SvKxhK_iRDmeyU0iJZq2Oqek_DNKSgqKrfT1y8vL9XJSE0syUotyE_P0kvNz9QuK8lNKk0uK9RHiuumZaSW6yYlFKfZliUWZiXkltibGxiZGZkbmxgbmZobGhlqrX6zQ8b_laCXAxVRaLMTllJOfn1uUmpicYSUPFEkWkjQyNTQyNIz3yM_JTEmsjA8vSiyIDwWiYCtuoIJcIdbU3MTMnKgQff2k_JRK_ZLEpJxU_RIIu0i_JAUiEm0ciymIQxmYm5JZpp-YZJWWYm6UamliYmphmmScbGZZA7YtPjPFqigzOdshN7GsKLNCLz8vtcbIJMks2dAwMckyLdncINE0iyfD3f_B-_PTGNiTvj9pYGIGAFZifFM.Hmk_6bnjN1V2gQ/click\" target=\"_blank\" style=\"color:#393c43;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUrh9KuV_wPsX9vLL7pxb6xr-SvKxhK_iRDmeyU0iJZq2Oqek_DNKSgqKrfT1y8vL9XJSE0syUotyE_P0kvNz9QuK8lNKk0uK9RHiuumZaSW6yYlFKfZliUWZiXkltibGxiZGZkbmxgbmZobGhlqrX6zQ8b_laCXAxVRaLMTllJOfn1uUmpicYSUPFEkWkjQyNTQyNIz3yM_JTEmsjA8vSiyIDwWiYCtuoIJcIdbU3MTMnCSrtBRzo1RLExNTC9Mk42QzyxqweHxmilVRZnK2Q25iWVFmhV5-XmqNkUmSWbKhYWKSZVqyuUGiaRZPhrv_g_fnpzGwJ31_0sDEDACHV12C.Z74UFroQptekpw/click\"  style=\"height:42px;width:198px;v-text-anchor:middle;\" arcsize=\"0%\" fill=\"false\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"3px\" color=\"#ffcf06\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#393c43;font-family:sans-serif;font-size:16px\">\r\n<![endif]-->\r\n<span class=\"button\" style=\"background-color: transparent; mso-shading: transparent; border-bottom: 3px solid #ffcf06; border-left: 3px solid #ffcf06; border-radius: 0px; border-right: 3px solid #ffcf06; border-top: 3px solid #ffcf06; color: #393c43; display: inline-block; font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size: 16px; font-weight: 700; mso-border-alt: none; padding-bottom: 5px; padding-top: 5px; padding-left: 10px; padding-right: 10px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 32px;\">SEND AN E-GIFT CARD</span></span>\r\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-4\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#f7f7f2;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:top\"><table class=\"divider_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"10\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\">\r\n<div class=\"alignment\" align=\"center\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"80%\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"divider_inner\" style=\"font-size:1px;line-height:1px;border-top:2px solid #393c43\"><span style=\"word-break: break-word;\">&#8202;</span></td></tr></table></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-5\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#922e39;background-image:url(https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/email-holiday-gift-guide-v1-secondary-image.jpg);background-repeat:no-repeat;background-size:cover;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:25px;padding-top:5px;vertical-align:top\"><table class=\"heading_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"padding-top:40px;text-align:center;width:100%\"><h1 style=\"margin:0;color:#fff;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:24px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:29px\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">FREE EXPEDITED SHIPPING</span></h1></td></tr></table><table class=\"paragraph_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:10px;padding-left:60px;padding-right:60px;padding-top:30px\"><div style=\"color:#fff;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:18px;font-weight:400;letter-spacing:0;line-height:1.2;text-align:center;mso-line-height-alt:22px\"><p style=\"margin:0\">\r\nQuick-ship gifts? We&#8217;ve got you. Starting tomorrow, 12/13-12/17, get free expedited shipping on $150+ orders*</p></div></td></tr></table><table class=\"button_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"padding-bottom:35px;padding-left:35px;padding-right:35px;padding-top:20px;text-align:center\"><div class=\"alignment\" align=\"center\">\r\n<a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUrh9KuV_wPsX9vLL7pxb6xr-SvKxhK_iRDmeyU0iJZq2OqekpDNKSgqKrfT1y8vL9XJSE0syUotyE_P0kvNz9Q21Vr9YoeN_y9FKgIuptFiIyyknPz-3KDUxOcNKHiiSLCRpZGpoZGgY75Gfk5mSWBkfXpRYEB8KRMFW3EAFuUKsqbmJmTlRIfr6SfkplfoliUk5qfolEHaRfkkKRCTaNBZTEIsy41goNyWzTD8xySotxdwo1dLExNTCNMk42cyyBmxbfGaKVVFmcrZDbmJZUWaFXn5eao2RSZJZsqFhYpJlWrK5QaJpFk-Gu_-D9-enMbAnfX_SwMQMAIi8ans.2_FaN3dfKvgkYA/click\" target=\"_blank\" style=\"color:#ffffff;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/EiDbymT_UO_oPx-m3M6tRVfqGeMYTSGRHgyTghR0KT0syhobaHR0cHM6Ly93d3cubGVhdGhlcm1hbi5jb20vMSqr6KgsT9pBOhAKAnVzEgpCbG9vbXJlYWNoOh8KAnVjEhkyNTEyMTFfSG9saWRheV9XcmFwX1VwX1VTOgsKAnVtEgVlbWFpbGI6ZmQ3MmU5NDQ1ODViM2M2OXxlbWFpbF9pZDpyaWNrQG1hdnJpeC5vbmV8MjRiNmMxMWFiOWZjNzBhNWoMaEdP4O_PlgAHYvfkgAID.rf06nnDs89FByQ/click\"  style=\"height:42px;width:153px;v-text-anchor:middle;\" arcsize=\"0%\" fill=\"false\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"3px\" color=\"#ffcf06\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#ffffff;font-family:sans-serif;font-size:16px\">\r\n<![endif]-->\r\n<span class=\"button\" style=\"background-color: transparent; mso-shading: transparent; border-bottom: 3px solid #ffcf06; border-left: 3px solid #ffcf06; border-radius: 0px; border-right: 3px solid #ffcf06; border-top: 3px solid #ffcf06; color: #ffffff; display: inline-block; font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size: 16px; font-weight: 700; mso-border-alt: none; padding-bottom: 5px; padding-top: 5px; padding-left: 10px; padding-right: 10px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 32px;\">CUE YOUR CART</span></span>\r\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-6\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#f7f7f2;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:top\"><table class=\"divider_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"10\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\">\r\n<div class=\"alignment\" align=\"center\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"80%\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"divider_inner\" style=\"font-size:1px;line-height:1px;border-top:2px solid #393c43\"><span style=\"word-break: break-word;\">&#8202;</span></td></tr></table></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-7\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto;background-color:#f7f7f2;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-top:5px;vertical-align:top\"><table class=\"heading_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"padding-bottom:20px;padding-top:15px;text-align:center;width:100%\"><h1 style=\"margin:0;color:#393c43;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:24px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:29px\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">GRAB N\' GO GIFTS - FIND A STORE</span></h1></td></tr></table><table class=\"image_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:600px\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUrh9KuV_wPsX9vLL7pxb6xr-SvKxhK_iRDmeyU0iJZq2Oqek1DNKSgqKrfT1y8vL9XJSE0syUotyE_P0kvNz9QsS01OL9YtL8otSiw21Vr9YoeN_y9FKgIuptFiIyyknPz-3KDUxOcNKHiiSLCRpZGpoZGgY75Gfk5mSWBkfXpRYEB8KRMFW3EAFuUKsqbmJmTlREfr6SfkplfoliUk5qfolEHaRfkkKRCTaPBZTEIsyo1goNyWzDIwTk6zSUsyNUi1NTEwtTJOMk80sa8A2xmemWBVlJmc75CaWFWVW6OXnpdYYmSSZJRsaJiZZpiWbGySaZvFkuPs_eH9-GgN70vcnDUzMAC-bcN0.3aSc4V7oBfVzmQ/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/Screenshot%202025-11-25%20at%201.37.03%E2%80%AFPM.png\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt title height=\"auto\"></a></div></div></td></tr></table><table class=\"paragraph_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:10px;padding-left:60px;padding-right:60px;padding-top:20px\"><div style=\"color:#393c43;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:18px;font-weight:400;letter-spacing:0;line-height:1.2;text-align:center;mso-line-height-alt:22px\"><p style=\"margin:0\">Skip the wait &#8212; shop local retailers where Leatherman products can be found. Find a store near you and grab your gift on the spot.</p></div></td></tr></table><table class=\"button_block block-4\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"padding-bottom:15px;padding-left:35px;padding-right:35px;padding-top:20px;text-align:center\"><div class=\"alignment\" align=\"center\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUrh9KuV_wPsX9vLL7pxb6xr-SvKxhK_iRDmeyU0iJZq2Oqek1DNKSgqKrfT1y8vL9XJSE0syUotyE_P0kvNz9QsS01OL9YtL8otSiw21Vr9YoeN_y9FKgIuptFiIyyknPz-3KDUxOcNKHiiSLCRpZGpoZGgY75Gfk5mSWBkfXpRYEB8KRMFW3EAFuUKsqbmJmTlRIfr6SfkplfoliUk5qfolEHaRfkkKRCTaPBZTEIsyk1goNyWzTD8xySotxdwo1dLExNTCNMk42cyyBmxbfGaKVVFmcrZDbmJZUWaFXn5eao2RSZJZsqFhYpJlWrK5QaJpFk-Gu_-D9-enMbAnfX_SwMQMAGmJb2k.SpaTPx8JlevIHw/click\" target=\"_blank\" style=\"color:#393c43;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/EiDbymT_UO_oPx-m3M6tRVfqGeMYTSGRHgyTghR0KT0syhonaHR0cHM6Ly93d3cubGVhdGhlcm1hbi5jb20vcGFnZXMvc3RvcmVzMSqr6KgsT9pBOhAKAnVzEgpCbG9vbXJlYWNoOh8KAnVjEhkyNTEyMTFfSG9saWRheV9XcmFwX1VwX1VTOgsKAnVtEgVlbWFpbGI6ZmQ3MmU5NDQ1ODViM2M2OXxlbWFpbF9pZDpyaWNrQG1hdnJpeC5vbmV8MjRiNmMxMWFiOWZjNzBhNWoMaEdP4O_PlgAHYvfkgAID.nYDlCoPSAlJbow/click\"  style=\"height:42px;width:131px;v-text-anchor:middle;\" arcsize=\"0%\" fill=\"false\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"3px\" color=\"#ffcf06\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#393c43;font-family:sans-serif;font-size:16px\">\r\n<![endif]-->\r\n<span class=\"button\" style=\"background-color: transparent; mso-shading: transparent; border-bottom: 3px solid #ffcf06; border-left: 3px solid #ffcf06; border-radius: 0px; border-right: 3px solid #ffcf06; border-top: 3px solid #ffcf06; color: #393c43; display: inline-block; font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size: 16px; font-weight: 700; mso-border-alt: none; padding-bottom: 5px; padding-top: 5px; padding-left: 10px; padding-right: 10px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 32px;\">FIND A STORE</span></span>\r\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-8\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#f7f7f2;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:top\"><table class=\"divider_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"10\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\">\r\n<div class=\"alignment\" align=\"center\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"80%\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"divider_inner\" style=\"font-size:1px;line-height:1px;border-top:3px solid #393c43\"><span style=\"word-break: break-word;\">&#8202;</span></td></tr></table></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-9\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#393c43;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"html_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div style=\"font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;text-align:center\" align=\"center\"><table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#393c43\" align=\"center\" width=\"100%\" style=\"width: 100%; padding: 10px 0px;\"><tbody><tr><td align=\"center\">\r\n\r\n        <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\"><tbody><tr align=\"center\"><td colspan=\"5\"></td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zrtKA0EYBWBRRFALCRbGwihWSpJxNrvZ7ELwAqKNKIgEDGH55xIz7s5OmB0TAxbiG4jgI4ggvoiF9mohaCE2lpYaYmGhwikOH6c4qemHG_a59f66mLl4vL1erbylnyc2Zk6nRs9Oxs1cOXsz2WoY00x8hNrtdl7EiYE9DTJPlUQRB9PgWkJslIqS2UAmrBPL0ARMxcoYDTQsL2R_OBJxKFgZsEVKQGjOxZzk7AIv5jzMrBwhdeA2dlzHATx_9XqZ3bxf9seG-w-S1PBKpJTUHGjDz3SFptKWgy2Mg3UVCQadoKKhGex0s-2PdAcyNcgliGj3ECGiWAcZIBFH5rtrZNi3VL3ab_xLep2J1v-LH6laNQTErzPX4p5tOyWHFGjRO-o9CgTztaDhkoSWFod5FfMjyyZFijEQr07dBXD2Rxtrm0_vd-d9Q-Tj5bh_4AvUB5hI.q3CaqmpTKLMgIQ/click\" data-msdyn-tracking-id=\"060e7af814e081672338229931\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b1b88c4-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"Instagram\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUrh9KuV_wPsX9vLL7pxb6xr-SvKxhK_iRDmeyU0iJZq2Oqek4jJKSgqKrfT1y8vL9Uoys0vys_WS83P1HXJSE0syUotyE_PiS_Lzc4qV43OLUyrzcrNL4nMy87IzU2xNjJONU5LTUnUNDExSdE2SjZN1LY0tE3VNDUzT0sxSU4EozVBr9YsVOv63HK0EuJhKi4W4nHLy83OLUhOTM6zkgSLJQpJGpoZGhobxHvk5mSmJlfHhRYkF8aFAFGzFDVSQK8SampuYmRNVoa-flJ9SqV-SmJSTql8CYRfpl6RARKItYzEFsYmA2SmZZbhVIESijWP1E5Os0lLMjVItTUxMLUyTjJPNLGvALorPTLEqykzOdshNLCvKrNDLz0utMTJJMks2NExMskxLNjdINM3iyXD3f_D-_DQG9qTvTxqYmAFMOY7e.pyGHqm3EPxgvFg/click\" data-msdyn-tracking-id=\"55a2adb6bbc371672338239108\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b1dd76e-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"TikTok\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUrh9KuV_wPsX9vLL7pxb6xr-SvKxhK_iRDmeyU0iJZq2OqekCjNKSgqKrfT1y8vL9dISk1OT8vOz9ZLzc_V9UhNLMlKLchPz9JXjc4tTKvNys0viU_Lz8ktKihKTs20NdBDCOZl52ZkptsbJRmYpRsapuibmhua6JiZpFrqWpmbJuokmBmYGZuaWiUZGaYZaq1-s0PG_5WglwMVUWizE5ZSTn59blJqYnGElDxRJFpI0MjU0MjSM98jPyUxJrIwPL0osiA8FomArbqCCXCHW1NzEzJyoCn39pPyUSv2SxKScVP0SCLtIvyQFIhJtGYspiE0EzE7JLMOtAiESbRKrn5hklZZibpRqaWJiamGaZJxsZlkDdlF8ZopVUWZytkNuYllRZoVefl5qjZFJklmyoWFikmVasrlBomkWT4a7_4P356cxsCd9f9LAxAwAHjyUXg.-laHACs-fpxJdw/click\" data-msdyn-tracking-id=\"1c347b64588db1672338250130\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b140b4e-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"Facebook\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zrtKA0EABVCJiBBTyGJhLIxipWQz2c2-IfgA0cIQQSRgCMvszCwZ9zFhM3kspBD_QAQ_QQTxR1JorxaCFsEmpaWGpEihwi0uh1tcYe2lj7-Ph4PtzO3r48N-5TP9vlxav1pNXV8u8c1itr8S1zlvNC0AOp1OLmYt3nJIDrEAtJokAkcE8jqJAhiWCKZwww6aOA4Dj9uYhYzzCCKvmM9O2aehR3HRNQpYwyQv6tB1RUWXVdEsSIqI80g2DF3WNc2Vtu4Hd9ny8661mEy0mkJyz2csiAhEdSszEiSkZVWSJck-ZD7FMLYrEWzYp6OcWAujQSDMkQBS_6wLgMNwDDh0fAL4pEeA44lUzdpv_EvGHdP2_4upVNUagI7lYl0mpqKohuoUkGb2xo9siq2IIm8ngO2IdnMsJD1ZcTQkSdAxXaTnoXqeqh-U34ZPNzPzztfHRWL2B2OemEc.B7cAgpM-m-_rWQ/click\" data-msdyn-tracking-id=\"05f4617e605a71672338263640\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b1ff6c0-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"YouTube\"></a>\r\n              </td>\r\n\r\n              <td colspan=\"6\"></td>\r\n            </tr></tbody></table></td>\r\n    </tr></tbody></table></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-10\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;vertical-align:top\"><table class=\"html_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div style=\"font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;text-align:center\" align=\"center\"><div data-section=\"true\" class=\"footer-container\" style=\"font-family: Arial, Verdana, sans-serif; color: #FFFFFF; background-color: #393c43; margin: 0; border-radius: 0;\" data-protected=\"false\">\r\n\r\n  <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse; background-color: #393c43;\"><tr><td align=\"center\" style=\"padding: 10px 0; text-align: center;\">\r\n\r\n        <div style=\"display: inline-block; text-align: center;\">\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzjtLw1AUB3CtiKAdpDhYB6s4KU1vkubRBIoPEF2kgkhBKeG-Sq7NTUJ6bQ10EPELiOBHEEH8Ih10VwdBh-LS0VFDKygonAP_8-McOJmFpy753O33VnPXz_d3m9X37OvszuLFfPrybEYsl_PdufNRV4iwaQPQbrcLHoXCpRGHfgEHHISBxzCjTRBGrAVxLA0gLriCe0sOb5LY5w3hkMAPhIggbpTl_A97zG8wUi7JSDeIRiWkm4aklbAqWcWiLBmoblpULprQwsrKbe8mX3lct6cnU8fNzOSGFwQ8ohC7di4RnMmquqIqirOdfEBg7FQjGDr7Se3ZU8kCz4xTDpl34AGAAhIDAZFHgRjmCAgylENFrv3V_2SQCWsN-vu29othMiK7TkyVWpqml3RUxIbVGXzhMGJHDDfWOGxF7KQQ-LSjasjAigKRVcemDPWjtLtVeek_XI1MoI-309TYF17il6c.iDR1y2izEBYZ4g/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #FFFFFF; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Privacy Policy</u></strong>\r\n          </a>\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUrh9KuV_wPsX9vLL7pxb6xr-SvKxhK_iRDmeyU0iJZq2Oqek9jFmlJQUFFvp65cWG-smp-Tppeal6yXl5OfnFqUmJmfoJefn6uekJpZkpBblJubpluTn5-gWFOWnlCaXZObn6afqO6dX5Be6Gjp556TmlloWR7lVpgd7-pV5RwVYBprrpsd7mCUlVxUauoXp5keZVGT4eUa5prp4-Tu7eQQWBARXefsGFxaZeacXh1gWOCWnVxQE-HhnlUVVRJn4GAYX-yfrpYcZJ1YADc9PS3ZydNRPzs8rTs0rsc9JzEu3Tc0z1Fr9YoWO_y1HKwEuptJiIS4nuNOt5IEiyUKSRqaGRoaG8R75OZkpiZXx4UWJBfGhQBRsxQ1UkCvEmpqbmJkTlaOvn5SfUqlfkpiUk6pfAmEX6ZekQESiDQ1iMUWxiYDZKZllYAzVG4sknBhtFJtklZZibpRqaWJiamGaZJxsZlkDdkV8ZopVUWZytkNuYllRZoVefl5qjZFJklmyoWFikmVasrlBomkWT4a7_4P356cxsCd9f9LAxAwABBesuA.nYHKhIH-0hL64w/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #FFFFFF; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Manage Preferences</u></strong>\r\n          </a>\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUrh9KuV_wPsX9vLL7pxb6xr-SvKxhK_iRDmeyU0iJZq2Oqek9jFmlJQUFFvp65cWG-smp-Tppeal6yXl5OfnFqUmJmfoJefn6uekJpZkpBblJubpluTn5-gWFOWnlCaXZObn6afqO6dX5Be6Gjp556TmlloWR7lVpgd7-pV5RwVYBprrpsd7mCUlVxUauoXp5keZVGT4eUa5prp4-Tu7eQQWBARXefsGFxaZeacXh1gWOCWnVxQE-HhnlUVVRJn4GAYX-yfrpYcZJ1YADc9PS3ZydNRPzs8rTs0rsc9JzEu3Tc0z1Fr9YoWO_y1HKwEuptJiIS4nuNOt5IEiyUKSRqaGRoaG8R75OZkpiZXx4UWJBfGhQBRsxQ1UkCvEmpqbmJkTlaOvn5SfUqlfkpiUk6pfAmEX6ZekQESiDQ1iMUWxiYDZKZllYAzVG4sknBhtHJtklZZibpRqaWJiamGaZJxsZlkDdkV8ZopVUWZytkNuYllRZoVefl5qjZFJklmyoWFikmVasrlBomkWT4a7_4P356cxsCd9f9LAxAwABGasuQ.6imwRYSSfowivg/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #FFFFFF; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Unsubscribe</u></strong>\r\n          </a>\r\n\r\n        </div>\r\n\r\n      </td>\r\n    </tr></table><table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse; background-color: #393c43;\"><tr><td align=\"center\" style=\"padding: 0; text-align: center;\">\r\n        <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse;\"><tr><td align=\"center\" style=\"text-align: center; padding: 10px 30px;\">\r\n              <div style=\"font-size: 11px; color: #FFFFFF; text-align: center;\">\r\n\r\n                <p>This email was sent to Rick@mavrix.one</p>\r\n\r\n                <p>by <strong>Leatherman Tool Group, Inc.</strong></p>\r\n\r\n                <p>12106 NE Ainsworth Circle <br>Portland, Oregon 97220</p>\r\n\r\n                <p style=\"display: none;\">Preference Center (PLACEHOLDER)</p>\r\n\r\n                <p style=\"line-height: 1.25;\">&#169; 2025 Leatherman Tool Group, Inc. All Rights Reserved.</p>\r\n                <br>\r\n                Free expedited shipping valid 12:00am PT 12/13/25 through 11:59pm PT 12/17/25 on orders over $150 at leatherman.com. Order total must meet $150 threshold before tax and shipping. Must select expedited shipping option at checkout.\r\n              </div>\r\n            </td>\r\n          </tr></table></td>\r\n    </tr></table></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><!-- End --></body></html>','[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUrh9KuV_wPsX9vLL7pxb6xr-SvKxhK_iRDmeyU0iJZq2OqekpDNKSgqKrfT1y8vL9XJSE0syUotyE_P0kvNz9Q21Vr9YoeN_y9FKgIuptFiIyyknPz-3KDUxOcNKHiiSLCRpZGpoZGgY75Gfk5mSWBkfXpRYEB8KRMFW3EAFuUKsqbmJmTlRofr6SfkplfoliUk5qfolEHaRfkkKRCTaMBZTEJsImJ2SWQbGiUlWaSnmRqmWJiamFqZJxslmljVg6-IzU6yKMpOzHXITy4oyK_Ty81JrjEySzJINDROTLNOSzQ0STbN4Mtz9H7w_P42BPen7kwYmZgABuWr_.Q9bCvdLLPXNFbQ/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUrh9KuV_wPsX9vLL7pxb6xr-SvKxhK_iRDmeyU0iJZq2Oqek_DNKSgqKrfT1y8vL9XJSE0syUotyE_P0kvNz9QuK8lNKk0uK9RHiuumZaSW6yYlFKfZliUWZiXkltibGxsamhhaWxsZGBmaGhlqrX6zQ8b_laCXAxVRaLMTllJOfn1uUmpicYSUPFEkWkjQyNTQyNIz3yM_JTEmsjA8vSiyIDwWiYCtuoIJcIdbU3MTMnKhQff2k_JRK_ZLEpJxU_RIIu0i_JAUiEm0UiymITQTMTsksA-PEJKu0FHOjVEsTE1ML0yTjZDPLGrB18ZkpVkWZydkOuYllRZkVevl5qTVGJklmyYaGiUmWacnmBommWTwZ7v4P3p-fxsCe9P1JAxMzAOLGfNo.z3D3wXPv7plMmA/click]\r\n\r\n# *E-GIFT CARDS TO THE RESCUE*\r\n\r\nStill not sure what to get them? Let them decide. A Leatherman digital gift card lands exactly when you need it, giving recipients the freedom to pick the tool that fits their life. No second-guessing, no shipping required.\r\n\r\nSEND AN E-GIFT CARD [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUrh9KuV_wPsX9vLL7pxb6xr-SvKxhK_iRDmeyU0iJZq2Oqek_DNKSgqKrfT1y8vL9XJSE0syUotyE_P0kvNz9QuK8lNKk0uK9RHiuumZaSW6yYlFKfZliUWZiXkltibGxiZGZkbmxgbmZobGhlqrX6zQ8b_laCXAxVRaLMTllJOfn1uUmpicYSUPFEkWkjQyNTQyNIz3yM_JTEmsjA8vSiyIDwWiYCtuoIJcIdbU3MTMnKgQff2k_JRK_ZLEpJxU_RIIu0i_JAUiEm0ciymIQxmYm5JZpp-YZJWWYm6UamliYmphmmScbGZZA7YtPjPFqigzOdshN7GsKLNCLz8vtcbIJMks2dAwMckyLdncINE0iyfD3f_B-_PTGNiTvj9pYGIGAFZifFM.Hmk_6bnjN1V2gQ/click]\r\n\r\n# FREE EXPEDITED SHIPPING\r\n\r\nQuick-ship gifts? We’ve got you. Starting tomorrow, 12/13-12/17, get free expedited shipping on $150+ orders*\r\n\r\nCUE YOUR CART [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUrh9KuV_wPsX9vLL7pxb6xr-SvKxhK_iRDmeyU0iJZq2OqekpDNKSgqKrfT1y8vL9XJSE0syUotyE_P0kvNz9Q21Vr9YoeN_y9FKgIuptFiIyyknPz-3KDUxOcNKHiiSLCRpZGpoZGgY75Gfk5mSWBkfXpRYEB8KRMFW3EAFuUKsqbmJmTlRIfr6SfkplfoliUk5qfolEHaRfkkKRCTaNBZTEIsy41goNyWzTD8xySotxdwo1dLExNTCNMk42cyyBmxbfGaKVVFmcrZDbmJZUWaFXn5eao2RSZJZsqFhYpJlWrK5QaJpFk-Gu_-D9-enMbAnfX_SwMQMAIi8ans.2_FaN3dfKvgkYA/click]\r\n\r\n# GRAB N\' GO GIFTS - FIND A STORE\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUrh9KuV_wPsX9vLL7pxb6xr-SvKxhK_iRDmeyU0iJZq2Oqek1DNKSgqKrfT1y8vL9XJSE0syUotyE_P0kvNz9QsS01OL9YtL8otSiw21Vr9YoeN_y9FKgIuptFiIyyknPz-3KDUxOcNKHiiSLCRpZGpoZGgY75Gfk5mSWBkfXpRYEB8KRMFW3EAFuUKsqbmJmTlREfr6SfkplfoliUk5qfolEHaRfkkKRCTaPBZTEIsyo1goNyWzDIwTk6zSUsyNUi1NTEwtTJOMk80sa8A2xmemWBVlJmc75CaWFWVW6OXnpdYYmSSZJRsaJiZZpiWbGySaZvFkuPs_eH9-GgN70vcnDUzMAC-bcN0.3aSc4V7oBfVzmQ/click]\r\n\r\nSkip the wait — shop local retailers where Leatherman products can be found. Find a store near you and grab your gift on the spot.\r\n\r\nFIND A STORE [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUrh9KuV_wPsX9vLL7pxb6xr-SvKxhK_iRDmeyU0iJZq2Oqek1DNKSgqKrfT1y8vL9XJSE0syUotyE_P0kvNz9QsS01OL9YtL8otSiw21Vr9YoeN_y9FKgIuptFiIyyknPz-3KDUxOcNKHiiSLCRpZGpoZGgY75Gfk5mSWBkfXpRYEB8KRMFW3EAFuUKsqbmJmTlRIfr6SfkplfoliUk5qfolEHaRfkkKRCTaPBZTEIsyk1goNyWzTD8xySotxdwo1dLExNTCNMk42cyyBmxbfGaKVVFmcrZDbmJZUWaFXn5eao2RSZJZsqFhYpJlWrK5QaJpFk-Gu_-D9-enMbAnfX_SwMQMAGmJb2k.SpaTPx8JlevIHw/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zrtKA0EYBWBRRFALCRbGwihWSpJxNrvZ7ELwAqKNKIgEDGH55xIz7s5OmB0TAxbiG4jgI4ggvoiF9mohaCE2lpYaYmGhwikOH6c4qemHG_a59f66mLl4vL1erbylnyc2Zk6nRs9Oxs1cOXsz2WoY00x8hNrtdl7EiYE9DTJPlUQRB9PgWkJslIqS2UAmrBPL0ARMxcoYDTQsL2R_OBJxKFgZsEVKQGjOxZzk7AIv5jzMrBwhdeA2dlzHATx_9XqZ3bxf9seG-w-S1PBKpJTUHGjDz3SFptKWgy2Mg3UVCQadoKKhGex0s-2PdAcyNcgliGj3ECGiWAcZIBFH5rtrZNi3VL3ab_xLep2J1v-LH6laNQTErzPX4p5tOyWHFGjRO-o9CgTztaDhkoSWFod5FfMjyyZFijEQr07dBXD2Rxtrm0_vd-d9Q-Tj5bh_4AvUB5hI.q3CaqmpTKLMgIQ/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUrh9KuV_wPsX9vLL7pxb6xr-SvKxhK_iRDmeyU0iJZq2Oqek4jJKSgqKrfT1y8vL9Uoys0vys_WS83P1HXJSE0syUotyE_PiS_Lzc4qV43OLUyrzcrNL4nMy87IzU2xNjJONU5LTUnUNDExSdE2SjZN1LY0tE3VNDUzT0sxSU4EozVBr9YsVOv63HK0EuJhKi4W4nHLy83OLUhOTM6zkgSLJQpJGpoZGhobxHvk5mSmJlfHhRYkF8aFAFGzFDVSQK8SampuYmRNVoa-flJ9SqV-SmJSTql8CYRfpl6RARKItYzEFsYmA2SmZZbhVIESijWP1E5Os0lLMjVItTUxMLUyTjJPNLGvALorPTLEqykzOdshNLCvKrNDLz0utMTJJMks2NExMskxLNjdINM3iyXD3f_D-_DQG9qTvTxqYmAFMOY7e.pyGHqm3EPxgvFg/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUrh9KuV_wPsX9vLL7pxb6xr-SvKxhK_iRDmeyU0iJZq2OqekCjNKSgqKrfT1y8vL9dISk1OT8vOz9ZLzc_V9UhNLMlKLchPz9JXjc4tTKvNys0viU_Lz8ktKihKTs20NdBDCOZl52ZkptsbJRmYpRsapuibmhua6JiZpFrqWpmbJuokmBmYGZuaWiUZGaYZaq1-s0PG_5WglwMVUWizE5ZSTn59blJqYnGElDxRJFpI0MjU0MjSM98jPyUxJrIwPL0osiA8FomArbqCCXCHW1NzEzJyoCn39pPyUSv2SxKScVP0SCLtIvyQFIhJtGYspiE0EzE7JLMOtAiESbRKrn5hklZZibpRqaWJiamGaZJxsZlkDdlF8ZopVUWZytkNuYllRZoVefl5qjZFJklmyoWFikmVasrlBomkWT4a7_4P356cxsCd9f9LAxAwAHjyUXg.-laHACs-fpxJdw/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zrtKA0EABVCJiBBTyGJhLIxipWQz2c2-IfgA0cIQQSRgCMvszCwZ9zFhM3kspBD_QAQ_QQTxR1JorxaCFsEmpaWGpEihwi0uh1tcYe2lj7-Ph4PtzO3r48N-5TP9vlxav1pNXV8u8c1itr8S1zlvNC0AOp1OLmYt3nJIDrEAtJokAkcE8jqJAhiWCKZwww6aOA4Dj9uYhYzzCCKvmM9O2aehR3HRNQpYwyQv6tB1RUWXVdEsSIqI80g2DF3WNc2Vtu4Hd9ny8661mEy0mkJyz2csiAhEdSszEiSkZVWSJck-ZD7FMLYrEWzYp6OcWAujQSDMkQBS_6wLgMNwDDh0fAL4pEeA44lUzdpv_EvGHdP2_4upVNUagI7lYl0mpqKohuoUkGb2xo9siq2IIm8ngO2IdnMsJD1ZcTQkSdAxXaTnoXqeqh-U34ZPNzPzztfHRWL2B2OemEc.B7cAgpM-m-_rWQ/click] \r\n\r\n*Privacy Policy* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzjtLw1AUB3CtiKAdpDhYB6s4KU1vkubRBIoPEF2kgkhBKeG-Sq7NTUJ6bQ10EPELiOBHEEH8Ih10VwdBh-LS0VFDKygonAP_8-McOJmFpy753O33VnPXz_d3m9X37OvszuLFfPrybEYsl_PdufNRV4iwaQPQbrcLHoXCpRGHfgEHHISBxzCjTRBGrAVxLA0gLriCe0sOb5LY5w3hkMAPhIggbpTl_A97zG8wUi7JSDeIRiWkm4aklbAqWcWiLBmoblpULprQwsrKbe8mX3lct6cnU8fNzOSGFwQ8ohC7di4RnMmquqIqirOdfEBg7FQjGDr7Se3ZU8kCz4xTDpl34AGAAhIDAZFHgRjmCAgylENFrv3V_2SQCWsN-vu29othMiK7TkyVWpqml3RUxIbVGXzhMGJHDDfWOGxF7KQQ-LSjasjAigKRVcemDPWjtLtVeek_XI1MoI-309TYF17il6c.iDR1y2izEBYZ4g/click] *Manage Preferences* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUrh9KuV_wPsX9vLL7pxb6xr-SvKxhK_iRDmeyU0iJZq2Oqek9jFmlJQUFFvp65cWG-smp-Tppeal6yXl5OfnFqUmJmfoJefn6uekJpZkpBblJubpluTn5-gWFOWnlCaXZObn6afqO6dX5Be6Gjp556TmlloWR7lVpgd7-pV5RwVYBprrpsd7mCUlVxUauoXp5keZVGT4eUa5prp4-Tu7eQQWBARXefsGFxaZeacXh1gWOCWnVxQE-HhnlUVVRJn4GAYX-yfrpYcZJ1YADc9PS3ZydNRPzs8rTs0rsc9JzEu3Tc0z1Fr9YoWO_y1HKwEuptJiIS4nuNOt5IEiyUKSRqaGRoaG8R75OZkpiZXx4UWJBfGhQBRsxQ1UkCvEmpqbmJkTlaOvn5SfUqlfkpiUk6pfAmEX6ZekQESiDQ1iMUWxiYDZKZllYAzVG4sknBhtFJtklZZibpRqaWJiamGaZJxsZlkDdkV8ZopVUWZytkNuYllRZoVefl5qjZFJklmyoWFikmVasrlBomkWT4a7_4P356cxsCd9f9LAxAwABBesuA.nYHKhIH-0hL64w/click] *Unsubscribe* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUrh9KuV_wPsX9vLL7pxb6xr-SvKxhK_iRDmeyU0iJZq2Oqek9jFmlJQUFFvp65cWG-smp-Tppeal6yXl5OfnFqUmJmfoJefn6uekJpZkpBblJubpluTn5-gWFOWnlCaXZObn6afqO6dX5Be6Gjp556TmlloWR7lVpgd7-pV5RwVYBprrpsd7mCUlVxUauoXp5keZVGT4eUa5prp4-Tu7eQQWBARXefsGFxaZeacXh1gWOCWnVxQE-HhnlUVVRJn4GAYX-yfrpYcZJ1YADc9PS3ZydNRPzs8rTs0rsc9JzEu3Tc0z1Fr9YoWO_y1HKwEuptJiIS4nuNOt5IEiyUKSRqaGRoaG8R75OZkpiZXx4UWJBfGhQBRsxQ1UkCvEmpqbmJkTlaOvn5SfUqlfkpiUk6pfAmEX6ZekQESiDQ1iMUWxiYDZKZllYAzVG4sknBhtHJtklZZibpRqaWJiamGaZJxsZlkDdkV8ZopVUWZytkNuYllRZoVefl5qjZFJklmyoWFikmVasrlBomkWT4a7_4P356cxsCd9f9LAxAwABGasuQ.6imwRYSSfowivg/click] \r\n\r\nThis email was sent to Rick@mavrix.one\r\n\r\nby *Leatherman Tool Group, Inc.*\r\n\r\n12106 NE Ainsworth Circle \r\nPortland, Oregon 97220\r\n\r\n© 2025 Leatherman Tool Group, Inc. All Rights Reserved.\r\n\r\nFree expedited shipping valid 12:00am PT 12/13/25 through 11:59pm PT 12/17/25 on orders over $150 at leatherman.com. Order total must meet $150 threshold before tax and shipping. Must select expedited shipping option at checkout. ',0,0,0,0,0,0,'2025-12-13 01:26:11','2025-12-13 03:46:17','2025-12-13 03:46:17','2025-12-13 03:46:17',NULL,NULL,NULL),
(1040,4,'<149378330.11585689.1765587158999@lor1-app139112.prod.linkedin.com>',NULL,NULL,'Patagonia Health recently posted - 0 comments','updates-noreply@linkedin.com','LinkedIn','<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"> <meta name=\"HandheldFriendly\" content=\"true\"> <meta name=\"viewport\" content=\"width=device-width; initial-scale=0.666667; user-scalable=0\"> <meta name=\"viewport\" content=\"width=device-width\"> <title></title> <style>\r\n              @media (max-width: 512px) { .mercado-container { width: 100% !important; } }\r\n            </style> <style>\r\n            @media (max-width: 480px) { .inline-button, .inline-button table { display: none !important; }\r\n            .full-width-button, .full-width-button table { display: table !important; } }\r\n          </style> <style>body {font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\',\r\n            \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\',\r\n            \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;}</style> <!--[if mso]><style type=\"text/css\"> </style><![endif]--> <!--[if IE]><style type=\"text/css\"> </style><![endif]--> </head> <body dir=\"ltr\" class=\"font-sans bg-color-background-canvas w-full m-0 p-0 pt-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0px; width: 100%; background-color: #f3f2f0; padding: 0px; padding-top: 8px; font-family: -apple-system, system-ui, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Helvetica Neue\', \'Fira Sans\', Ubuntu, Oxygen, \'Oxygen Sans\', Cantarell, \'Droid Sans\', \'Apple Color Emoji\', \'Segoe UI Emoji\', \'Segoe UI Emoji\', \'Segoe UI Symbol\', \'Lucida Grande\', Helvetica, Arial, sans-serif;\"> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\" data-email-preheader=\"true\">Good morning from the Community Behavioral Healthcare Association (CBHA)…</div> <div class=\"h-0 opacity-0 text-transparent invisible overflow-hidden w-0 max-h-[0]\" style=\"visibility: hidden; height: 0px; max-height: 0; width: 0px; overflow: hidden; opacity: 0; mso-hide: all;\"> ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  </div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"512\" align=\"center\" class=\"mercado-container w-[512px] max-w-[512px] mx-auto my-0 p-0 \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin-top: 0px; margin-bottom: 0px; margin-left: auto; margin-right: auto; width: 512px; max-width: 512px; padding: 0px;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"bg-color-background-container \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\"> <tbody> <tr> <td class=\"text-center p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px; text-align: center;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"min-w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%;\"> <tbody> <tr> <td align=\"left\" valign=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BLjWHFg%2FvSVGRObNQ69xKPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=13a1xu7Jck0Y41&amp;trk=eml-email_network_conversations_01-header-0-home_glimmer_static_badging_with_count&amp;trkEmail=eml-email_network_conversations_01-header-0-home_glimmer_static_badging_with_count-null-poh2nf~mj3kv0ph~bw-null-null&amp;eid=poh2nf-mj3kv0ph-bw&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjE4N2M5ZDE0NDkxYTg4YTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZWM1ODI2NWIwZGY5NzFjMmRkOWQ4M2ZiODhhOGJlNjM5NDRlNTNhYjQxZWJlOWMsMSwx\" target=\"_blank\" class=\"w-[84px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 84px;\"> <img class=\"h-[37px] w-[101px]\" alt=\"LinkedIn\" src=\"https://static.licdn.com/sc/h/2fp5x7ci191mxbdy1eynscn59\" data-test-header-static-badging-img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 37px; width: 101px;\" width=\"101\" height=\"37\"> </a> </td> <td valign=\"middle\" align=\"right\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" data-test-header-notification-badges style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/messaging/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BLjWHFg%2FvSVGRObNQ69xKPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=13a1xu7Jck0Y41&amp;trk=eml-email_network_conversations_01-header-0-messaging_glimmer&amp;trkEmail=eml-email_network_conversations_01-header-0-messaging_glimmer-null-poh2nf~mj3kv0ph~bw-null-null&amp;eid=poh2nf-mj3kv0ph-bw&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjE4N2M5ZDE0NDkxYTg4YTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZWM1ODI2NWIwZGY5NzFjMmRkOWQ4M2ZiODhhOGJlNjM5NDRlNTNhYjQxZWJlOWMsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Messaging icon\" src=\"https://static.licdn.com/sc/h/10fimloaw3jryyzve9w87w3h1\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/mynetwork/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BLjWHFg%2FvSVGRObNQ69xKPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=13a1xu7Jck0Y41&amp;trk=eml-email_network_conversations_01-header-0-my_network_glimmer&amp;trkEmail=eml-email_network_conversations_01-header-0-my_network_glimmer-null-poh2nf~mj3kv0ph~bw-null-null&amp;eid=poh2nf-mj3kv0ph-bw&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjE4N2M5ZDE0NDkxYTg4YTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZWM1ODI2NWIwZGY5NzFjMmRkOWQ4M2ZiODhhOGJlNjM5NDRlNTNhYjQxZWJlOWMsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Mynetwork icon\" src=\"https://static.licdn.com/sc/h/90lul9r9eny8abld0lh202esc\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5 games-notification-badge pr-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 8px; display: table-cell;\"> <a href=\"https://www.linkedin.com/comm/games/zip?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BLjWHFg%2FvSVGRObNQ69xKPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=13a1xu7Jck0Y41&amp;trk=eml-email_network_conversations_01-header-0-games_glimmer&amp;trkEmail=eml-email_network_conversations_01-header-0-games_glimmer-null-poh2nf~mj3kv0ph~bw-null-null&amp;eid=poh2nf-mj3kv0ph-bw&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjE4N2M5ZDE0NDkxYTg4YTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZWM1ODI2NWIwZGY5NzFjMmRkOWQ4M2ZiODhhOGJlNjM5NDRlNTNhYjQxZWJlOWMsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Games icon\" src=\"https://static.licdn.com/sc/h/3lw2d9s3kbqj8uc9fk7nge7lp\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> <td align=\"right\" valign=\"middle\" class=\"px-0.5\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 4px; padding-right: 4px;\"> <a href=\"https://www.linkedin.com/comm/notifications/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BLjWHFg%2FvSVGRObNQ69xKPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=13a1xu7Jck0Y41&amp;trk=eml-email_network_conversations_01-header-0-notifications_glimmer&amp;trkEmail=eml-email_network_conversations_01-header-0-notifications_glimmer-null-poh2nf~mj3kv0ph~bw-null-null&amp;eid=poh2nf-mj3kv0ph-bw&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjE4N2M5ZDE0NDkxYTg4YTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZWM1ODI2NWIwZGY5NzFjMmRkOWQ4M2ZiODhhOGJlNjM5NDRlNTNhYjQxZWJlOWMsMSwx\" target=\"_blank\" class=\"h-[25px]\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 25px;\"> <img alt=\"Notifications icon\" src=\"https://static.licdn.com/sc/h/dh68pw6fo2eg4oh1u9r44zcx\" class=\"h-[25px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 25px;\" height=\"25\"> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr> <td class=\"p-0 !pb-0 pb-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0px; padding-bottom: 0px !important;\"> <div> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"p-3 border-0 border-b-1 border-solid border-system-gray-30\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-width: 0; border-bottom-width: 1px; border-style: solid; border-color: #e6e6e6; padding: 24px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7402391217671647233?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BLjWHFg%2FvSVGRObNQ69xKPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=13a1xu7Jck0Y41&amp;trk=eml-email_network_conversations_01-network~post-0-wrapper~link&amp;trkEmail=eml-email_network_conversations_01-network~post-0-wrapper~link-null-poh2nf~mj3kv0ph~bw-null-null&amp;eid=poh2nf-mj3kv0ph-bw&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjE4N2M5ZDE0NDkxYTg4YTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZWM1ODI2NWIwZGY5NzFjMmRkOWQ4M2ZiODhhOGJlNjM5NDRlNTNhYjQxZWJlOWMsMSwx\" target=\"_blank\" class=\"w-full\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"post-highlight\"> <td class=\"pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-color-text-solid-secondary text-sm leading-[16px] align-middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: middle; font-size: 14px; line-height: 16px; color: #666666;\"> Suggested for you </td> </tr> </tbody> </table> </td> </tr> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7402391217671647233?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BLjWHFg%2FvSVGRObNQ69xKPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=13a1xu7Jck0Y41&amp;trk=eml-email_network_conversations_01-network_post-0-actor_card&amp;trkEmail=eml-email_network_conversations_01-network_post-0-actor_card-null-poh2nf~mj3kv0ph~bw-null-null&amp;eid=poh2nf-mj3kv0ph-bw&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjE4N2M5ZDE0NDkxYTg4YTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZWM1ODI2NWIwZGY5NzFjMmRkOWQ4M2ZiODhhOGJlNjM5NDRlNTNhYjQxZWJlOWMsMSwx\" target=\"_blank\" class=\"block\" data-test-id=\"network-post-link\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr data-test-id=\"actor-card-default\"> <td class=\"w-[72px]\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 72px;\" width=\"72\"> <img class=\"inline-block relative bg-color-entity-ghost-background w-6 h-6 !w-[72px] !h-[72px] !block\" src=\"https://media.licdn.com/dms/image/v2/C4E0BAQGUvPaLP9yGEw/company-logo_100_100/company-logo_100_100/0/1659620396483/patagonia_health_logo?e=1767225600&amp;v=beta&amp;t=nfSKMMV0WPvYqT-4Fc-OrQ0b1AfO5X_JQhBm2OGxazU\" alt=\"Patagonia Health\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; position: relative; background-color: #eae6df; display: block !important; height: 72px !important; width: 72px !important;\" width=\"72\" height=\"72\"> </td> <td class=\"pl-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-left: 8px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"font-bold text-md leading-regular text-system-gray-90\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 16px; font-weight: 600; line-height: 1.25; color: #282828;\"> Patagonia Health </td> </tr> <tr data-test-id=\"actor-card-headline\"> <td class=\"text-sm leading-[16px] text-color-text-solid-secondary\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; line-height: 16px; color: #666666;\"> 5,659 followers </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"pt-2 text-md leading-regular text-system-gray-90\" colspan=\"1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; font-size: 16px; line-height: 1.25; color: #282828;\"> <span data-test-id=\"truncated-message-text\"> Good morning from the Community Behavioral Healthcare Association (CBHA) conference! It\'s chilly in Chicago… </span> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7402391217671647233?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BLjWHFg%2FvSVGRObNQ69xKPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=13a1xu7Jck0Y41&amp;trk=eml-email_network_conversations_01-truncated~share~message-0-see~more&amp;trkEmail=eml-email_network_conversations_01-truncated~share~message-0-see~more-null-poh2nf~mj3kv0ph~bw-null-null&amp;eid=poh2nf-mj3kv0ph-bw&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjE4N2M5ZDE0NDkxYTg4YTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZWM1ODI2NWIwZGY5NzFjMmRkOWQ4M2ZiODhhOGJlNjM5NDRlNTNhYjQxZWJlOWMsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <span data-test-id=\"truncated-message-see-more\" class=\"text-color-link font-bold\" style=\"font-weight: 600; color: #0a66c2;\"> see more </span> </a> </td> </tr> <tr data-test-id=\"network-post-social-metadata\"> <td class=\"pt-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"w-auto\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: auto;\"> <tbody> <tr> <td class=\"pr-0.5\" data-test-reaction=\"LIKE\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-right: 4px;\"> <img class=\"block w-2 h-2\" src=\"https://static.licdn.com/sc/h/91tdscn0h1aaoefui9crf11j6\" alt=\"LIKE\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; height: 16px; width: 16px;\" width=\"16\" height=\"16\"> </td> <td class=\"text-sm leading-regular font-normal text-system-gray-70\" data-test-id=\"reactions-count\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 14px; font-weight: 400; line-height: 1.25; color: #666666;\"> 5 </td> </tr> </tbody> </table> </td> </tr> <tr data-test-id=\"read-more-cta-block\"> <td class=\"pt-3\" colspan=\"1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7402391217671647233?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BLjWHFg%2FvSVGRObNQ69xKPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=13a1xu7Jck0Y41&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mj3kv0ph~bw-null-null&amp;eid=poh2nf-mj3kv0ph-bw&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjE4N2M5ZDE0NDkxYTg4YTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZWM1ODI2NWIwZGY5NzFjMmRkOWQ4M2ZiODhhOGJlNjM5NDRlNTNhYjQxZWJlOWMsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"align-top no-underline !w-full !block\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none; display: block !important; width: 100% !important;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"border-separate !w-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate; width: 100% !important;\"> <tbody> <tr> <td class=\"btn-md btn-secondary-emphasis border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" data-test-id=\"read-more-cta-below\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); color: #0a66c2; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7402391217671647233?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BLjWHFg%2FvSVGRObNQ69xKPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=13a1xu7Jck0Y41&amp;trk=eml-email_network_conversations_01-network~post~cta-0-read~more&amp;trkEmail=eml-email_network_conversations_01-network~post~cta-0-read~more-null-poh2nf~mj3kv0ph~bw-null-null&amp;eid=poh2nf-mj3kv0ph-bw&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjE4N2M5ZDE0NDkxYTg4YTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZWM1ODI2NWIwZGY5NzFjMmRkOWQ4M2ZiODhhOGJlNjM5NDRlNTNhYjQxZWJlOWMsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-color-brand\" style=\"color: #0a66c2; text-decoration-line: none;\"> Read more </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> <tr><td class=\"h-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 16px;\" height=\"16\"></td></tr> <tr> <td class=\"rounded-md\" data-test-id=\"network-post-update-card\" colspan=\"1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/update/urn:li:activity:7402391217671647233?origin=NETWORK_CONVERSATIONS&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BLjWHFg%2FvSVGRObNQ69xKPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=13a1xu7Jck0Y41&amp;trk=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image&amp;trkEmail=eml-email_network_conversations_01-update~card-0-thumbnail~overlay~image-null-poh2nf~mj3kv0ph~bw-null-null&amp;eid=poh2nf-mj3kv0ph-bw&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjE4N2M5ZDE0NDkxYTg4YTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZWM1ODI2NWIwZGY5NzFjMmRkOWQ4M2ZiODhhOGJlNjM5NDRlNTNhYjQxZWJlOWMsMSwx\" target=\"_blank\" aria-label=\"Read more\" class=\"block w-full h-full\" style=\"color: #0a66c2; cursor: pointer; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; display: block; height: 100%; width: 100%;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-cool-gray-20 rounded-md\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-radius: 8px; background-color: #edf3f8;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"bg-center bg-no-repeat auto pt-[71%] pb-[71%] bg-system-gray-40\" align=\"center\" data-test-id=\"update-card-container\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #cfcfcf; background-position: center; background-repeat: no-repeat; padding-top: 71%; padding-bottom: 71%; background-size: cover; background-image: url(&quot;https://media.licdn.com/dms/image/v2/D4E10AQE863BIXLMI2g/image-shrink_800/B4EZrqTfRWGoAc-/0/1764867569915?e=1766192400&amp;v=beta&amp;t=UwDQHNph9j9BTsKkIAczS3Gp1-26vB5vMSrYyjdqxSg&quot;);\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"h-full\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: 100%;\" height=\"100%\"> <tbody> <tr> <td align=\"center\" class=\"overflow-hidden\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; overflow: hidden;\"> <img class=\"w-[448px] h-[252px] hidden hidden\" src=\"https://media.licdn.com/dms/image/v2/D4E10AQE863BIXLMI2g/image-shrink_800/B4EZrqTfRWGoAc-/0/1764867569915?e=1766192400&amp;v=beta&amp;t=UwDQHNph9j9BTsKkIAczS3Gp1-26vB5vMSrYyjdqxSg\" alt=\"View image\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: none; height: 252px; width: 448px;\" width=\"448\" height=\"252\"> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </a> </td> </tr> <tr> <td class=\"pt-4 pb-2 px-3 bg-color-background-canvas\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding-left: 24px; padding-right: 24px; padding-bottom: 16px; padding-top: 32px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"email-button \" data-test-id=\"email-button\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td valign=\"middle\" align=\"middle\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BLjWHFg%2FvSVGRObNQ69xKPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=13a1xu7Jck0Y41&amp;trk=eml-email_network_conversations_01-footer_promo-0-footer_see_all&amp;trkEmail=eml-email_network_conversations_01-footer_promo-0-footer_see_all-null-poh2nf~mj3kv0ph~bw-null-null&amp;eid=poh2nf-mj3kv0ph-bw&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjE4N2M5ZDE0NDkxYTg4YTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZWM1ODI2NWIwZGY5NzFjMmRkOWQ4M2ZiODhhOGJlNjM5NDRlNTNhYjQxZWJlOWMsMSwx\" target=\"_blank\" aria-label=\"See more on LinkedIn\" class=\"align-top no-underline \" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; vertical-align: top; text-decoration-line: none;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"auto\" class=\"border-separate \" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-collapse: separate;\"> <tbody> <tr> <td class=\"btn-md btn-primary border-color-brand button-link leading-regular !min-h-[auto] !shadow-none border-1 border-solid\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; height: min-content; border-radius: 24px; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; text-align: center; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration-line: none; background-color: #0a66c2; color: #ffffff; border-width: 1px; border-style: solid; border-color: #0a66c2; line-height: 1.25; min-height: auto !important; box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000 !important;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BLjWHFg%2FvSVGRObNQ69xKPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=13a1xu7Jck0Y41&amp;trk=eml-email_network_conversations_01-footer_promo-0-footer_see_all&amp;trkEmail=eml-email_network_conversations_01-footer_promo-0-footer_see_all-null-poh2nf~mj3kv0ph~bw-null-null&amp;eid=poh2nf-mj3kv0ph-bw&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjE4N2M5ZDE0NDkxYTg4YTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZWM1ODI2NWIwZGY5NzFjMmRkOWQ4M2ZiODhhOGJlNjM5NDRlNTNhYjQxZWJlOWMsMSwx\" target=\"_blank\" tabindex=\"-1\" aria-hidden=\"true\" class=\"no-underline\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-decoration-line: none;\"> <span class=\"no-underline text-white\" style=\"color: #ffffff; text-decoration-line: none;\"> See more on LinkedIn </span> </a> </td> </tr> </tbody> </table> </a> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </td> </tr> <tr> <td class=\"bg-color-background-canvas p-3\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f3f2f0; padding: 24px;\"> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> <tbody> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-lg text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 20px; color: #114951;\"> Get the new LinkedIn desktop app </h2> </td> </tr> <tr> <td class=\"text-center pb-2\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <a href=\"https://apps.microsoft.com/store/detail/9WZDNCRFJ4Q7?launch=true&amp;cid=linkedin_email_upsell&amp;mode=full\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it from Microsoft\" src=\"https://static.licdn.com/sc/h/ejpkkpwvqks31a3cjqokb7fbm\" class=\"h-[40px] w-[112px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 112px;\" width=\"112\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"text-center pb-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 16px; text-align: center;\"> <h2 class=\"text-md text-teal-80\" style=\"margin: 0; font-weight: 500; font-size: 16px; color: #114951;\"> Also available on mobile </h2> </td> </tr> <tr> <td class=\"text-center\" data-test-id=\"footer-app-store-icon\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center;\"> <a href=\"https://itunes.apple.com/us/app/linkedin/id288429040?pt=10746&amp;ct=st_appsite_flagship&amp;mt=8\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Download on the App Store\" src=\"https://static.licdn.com/sc/h/76yzkd0h5kiv27lrd4yaenylk\" class=\"h-[40px] w-[120px] pr-1\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 120px; padding-right: 8px;\" width=\"120\" height=\"40\"> </a> <a href=\"https://play.google.com/store/apps/details?id=com.linkedin.android&amp;referrer=st_appsite_flagship\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img alt=\"Get it on Google Play\" src=\"https://static.licdn.com/sc/h/142qudwblp58zwmc9vkqfplug\" class=\"h-[40px] w-[134px]\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; height: 40px; width: 134px;\" width=\"134\" height=\"40\"> </a> </td> </tr> <tr> <td class=\"py-2\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-top: 16px; padding-bottom: 16px;\"><hr class=\"border-none bg-[#e0dfdd] h-[1px]\" style=\"height: 1px; border-style: none; background-color: #e0dfdd;\"></td> </tr> </tbody> </table> <table role=\"presentation\" valign=\"top\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" class=\"text-xs\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-size: 12px;\"> <tbody> <tr> <td class=\"pb-1 m-0\" data-test-id=\"email-footer__intended\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> This email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1) </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/help/linkedin/answer/4788?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BLjWHFg%2FvSVGRObNQ69xKPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=13a1xu7Jck0Y41&amp;trk=eml-email_network_conversations_01-SecurityHelp-0-footerglimmer&amp;trkEmail=eml-email_network_conversations_01-SecurityHelp-0-footerglimmer-null-poh2nf~mj3kv0ph~bw-null-null&amp;eid=poh2nf-mj3kv0ph-bw&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjE4N2M5ZDE0NDkxYTg4YTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZWM1ODI2NWIwZGY5NzFjMmRkOWQ4M2ZiODhhOGJlNjM5NDRlNTNhYjQxZWJlOWMsMSwx\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Learn why we included this.</a> </td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\">You are receiving Network Conversations emails. Some content may be automatically translated based on <a href=\"https://www.linkedin.com/mypreferences/d/language-for-translation\" target=\"_blank\" class=\"link-no-visited-state\" data-tracking-will-navigate data-tracking-control-name=\"email_network_conversations_content_settings_link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-weight: 600; color: #0a66c2;\">your settings</a>.</td> </tr> <tr> <td class=\"pb-1 m-0\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0px; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/mypreferences/u/emailunsub?action=updateEmailSubscription&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BLjWHFg%2FvSVGRObNQ69xKPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=13a1xu7Jck0Y41&amp;trk=eml-email_network_conversations_01-unsubscribe-0-footerGlimmer&amp;trkEmail=eml-email_network_conversations_01-unsubscribe-0-footerGlimmer-null-poh2nf~mj3kv0ph~bw-null-null&amp;eid=poh2nf-mj3kv0ph-bw&amp;loid=AQE_BOrhPgYcUgAAAZsVMgZqcUbacCjaVj9IZlklhtPVz_zR7pe40sXYCZPEKRB0qvy1u7HRWCnCy4thlPXNQnwq3ABbahZYEmLMIYyO96dSbXYTLIgF\" target=\"_blank\" class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Unsubscribe</a>   ·   <a href=\"https://www.linkedin.com/help/linkedin/answer/67?lang=en&amp;lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BLjWHFg%2FvSVGRObNQ69xKPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=13a1xu7Jck0Y41&amp;trk=eml-email_network_conversations_01-help-0-footerglimmer&amp;trkEmail=eml-email_network_conversations_01-help-0-footerglimmer-null-poh2nf~mj3kv0ph~bw-null-null&amp;eid=poh2nf-mj3kv0ph-bw&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjE4N2M5ZDE0NDkxYTg4YTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZWM1ODI2NWIwZGY5NzFjMmRkOWQ4M2ZiODhhOGJlNjM5NDRlNTNhYjQxZWJlOWMsMSwx\" target=\"_blank\" data-test-help-link class=\"text-inherit underline\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: inherit; text-decoration-line: underline;\">Help</a> </td> </tr> <tr> <td class=\"pb-1\" style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding-bottom: 8px;\"> <a href=\"https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BLjWHFg%2FvSVGRObNQ69xKPw%3D%3D&amp;midToken=AQE-iPshthTClw&amp;midSig=13a1xu7Jck0Y41&amp;trk=eml-email_network_conversations_01-footer-0-logoGlimmer&amp;trkEmail=eml-email_network_conversations_01-footer-0-logoGlimmer-null-poh2nf~mj3kv0ph~bw-null-null&amp;eid=poh2nf-mj3kv0ph-bw&amp;otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjE4N2M5ZDE0NDkxYTg4YTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZWM1ODI2NWIwZGY5NzFjMmRkOWQ4M2ZiODhhOGJlNjM5NDRlNTNhYjQxZWJlOWMsMSwx\" target=\"_blank\" style=\"color: #0a66c2; cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\"> <img src=\"https://static.licdn.com/sc/h/9ehe6n39fa07dc5edzv0rla4e\" alt=\"LinkedIn\" class=\"block h-[14px] w-[56px] image-rendering-crisp\" style=\"outline: none; text-decoration: none; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; display: block; height: 14px; width: 56px;\" width=\"56\" height=\"14\"> </a> </td> </tr> <tr> <td data-test-copyright-text style=\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\"> © 2025 LinkedIn Corporation, 1&zwnj;000 West Maude Avenue, Sunnyvale, CA 94085. <span data-test-trademarks-text> LinkedIn and the LinkedIn logo are registered trademarks of LinkedIn. </span> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <img alt role=\"presentation\" src=\"https://www.linkedin.com/emimp/ip_Y0c5b01tNW1MVzFxTTJ0Mk1IQm9MV0ozOlpXMWhhV3hmYm1WMGQyOXlhMTlqYjI1MlpYSnpZWFJwYjI1elh6QXg6.gif\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: 1px; height: 1px;\" width=\"1\" height=\"1\"> </body> </html>','Suggested for you\r\n        \r\n\r\n          Patagonia Health shared a post: Good morning from the Community Behavioral Healthcare Association (CBHA) conference! It\'s chilly in Chicago ❄️\r\n\r\nWe are happy to support Illinois…\r\nLIKE 5\r\n\r\n\r\nRead more: https://www.linkedin.com/comm/feed/update/urn:li:activity:7402391217671647233?origin=NETWORK_CONVERSATIONS&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BLjWHFg%2FvSVGRObNQ69xKPw%3D%3D&midToken=AQE-iPshthTClw&midSig=13a1xu7Jck0Y41&trk=eml-email_network_conversations_01-network~post~cta~text-0-read~more&trkEmail=eml-email_network_conversations_01-network~post~cta~text-0-read~more-null-poh2nf~mj3kv0ph~bw-null-null&eid=poh2nf-mj3kv0ph-bw&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjE4N2M5ZDE0NDkxYTg4YTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZWM1ODI2NWIwZGY5NzFjMmRkOWQ4M2ZiODhhOGJlNjM5NDRlNTNhYjQxZWJlOWMsMSwx\r\n        \r\n\r\n\r\nSee more on LinkedIn: https://www.linkedin.com/comm/feed/?lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BLjWHFg%2FvSVGRObNQ69xKPw%3D%3D&midToken=AQE-iPshthTClw&midSig=13a1xu7Jck0Y41&trk=eml-email_network_conversations_01-footer_promo-0-footer_see_all&trkEmail=eml-email_network_conversations_01-footer_promo-0-footer_see_all-null-poh2nf~mj3kv0ph~bw-null-null&eid=poh2nf-mj3kv0ph-bw&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjE4N2M5ZDE0NDkxYTg4YTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZWM1ODI2NWIwZGY5NzFjMmRkOWQ4M2ZiODhhOGJlNjM5NDRlNTNhYjQxZWJlOWMsMSwx\r\n\r\n----------------------------------------\r\n\r\nThis email was intended for Mavrix One (Chief Executive Officer at MAVRIX 1)\r\nLearn why we included this: https://www.linkedin.com/help/linkedin/answer/4788?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BLjWHFg%2FvSVGRObNQ69xKPw%3D%3D&midToken=AQE-iPshthTClw&midSig=13a1xu7Jck0Y41&trk=eml-email_network_conversations_01-SecurityHelp-0-textfooterglimmer&trkEmail=eml-email_network_conversations_01-SecurityHelp-0-textfooterglimmer-null-poh2nf~mj3kv0ph~bw-null-null&eid=poh2nf-mj3kv0ph-bw&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjE4N2M5ZDE0NDkxYTg4YTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZWM1ODI2NWIwZGY5NzFjMmRkOWQ4M2ZiODhhOGJlNjM5NDRlNTNhYjQxZWJlOWMsMSwx\r\nYou are receiving Network Conversations emails. Some content may be automatically translated based on\r\n      <a href=\"https://www.linkedin.com/mypreferences/d/language-for-translation\" target=\"_blank\" class=\"link-no-visited-state\" data-tracking-will-navigate data-tracking-control-name=\"email_network_conversations_content_settings_link\" style=\"cursor: pointer; display: inline-block; text-decoration: none; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-weight: 600; color: #0a66c2;\">your settings</a>.\r\n\r\n\r\nUnsubscribe: https://www.linkedin.com/comm/mypreferences/u/emailunsub?action=updateEmailSubscription&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BLjWHFg%2FvSVGRObNQ69xKPw%3D%3D&midToken=AQE-iPshthTClw&midSig=13a1xu7Jck0Y41&trk=eml-email_network_conversations_01-unsubscribe-0-textfooterglimmer&trkEmail=eml-email_network_conversations_01-unsubscribe-0-textfooterglimmer-null-poh2nf~mj3kv0ph~bw-null-null&eid=poh2nf-mj3kv0ph-bw&loid=AQE_BOrhPgYcUgAAAZsVMgZqcUbacCjaVj9IZlklhtPVz_zR7pe40sXYCZPEKRB0qvy1u7HRWCnCy4thlPXNQnwq3ABbahZYEmLMIYyO96dSbXYTLIgF\r\nHelp: https://www.linkedin.com/help/linkedin/answer/67?lang=en&lipi=urn%3Ali%3Apage%3Aemail_email_network_conversations_01%3BLjWHFg%2FvSVGRObNQ69xKPw%3D%3D&midToken=AQE-iPshthTClw&midSig=13a1xu7Jck0Y41&trk=eml-email_network_conversations_01-help-0-textfooterglimmer&trkEmail=eml-email_network_conversations_01-help-0-textfooterglimmer-null-poh2nf~mj3kv0ph~bw-null-null&eid=poh2nf-mj3kv0ph-bw&otpToken=MTMwMDFiZTIxNTI4YzhjM2IzMmYwZmViNDExOGUyYjE4N2M5ZDE0NDkxYTg4YTY4N2JjNjAwNmM0OTU4NTRmMWY0ZDNkNmU3MThlZWM1ODI2NWIwZGY5NzFjMmRkOWQ4M2ZiODhhOGJlNjM5NDRlNTNhYjQxZWJlOWMsMSwx\r\n\r\n© 2025 LinkedIn Corporation, 1zwnj000 West Maude Avenue, Sunnyvale, CA 94085.\r\nLinkedIn and the LinkedIn logo are registered trademarks of LinkedIn.',0,0,0,0,0,0,'2025-12-13 01:52:38','2025-12-13 03:46:17','2025-12-13 03:46:17','2025-12-13 03:46:17',NULL,NULL,NULL),
(1061,4,'<20251213143249.8a92c5e615292b28@emails.leatherman.com>',NULL,NULL,'Free Expedited Shipping On Orders $150+','Leatherman@emails.leatherman.com','Leatherman','<!DOCTYPE html>\r\n<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\"><head><title>Free Expedited Shipping On Orders $150+</title><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><!--[if mso]>\r\n<xml><w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\"><w:DontUseAdvancedTypographyReadingMail/></w:WordDocument>\r\n<o:OfficeDocumentSettings><o:PixelsPerInch>96</o:PixelsPerInch><o:AllowPNG/></o:OfficeDocumentSettings></xml>\r\n<![endif]--><style>\r\n*{box-sizing:border-box}body{margin:0;padding:0}a[x-apple-data-detectors]{color:inherit!important;text-decoration:inherit!important}#MessageViewBody a{color:inherit;text-decoration:none}p{line-height:inherit}.desktop_hide,.desktop_hide table{mso-hide:all;display:none;max-height:0;overflow:hidden}.image_block img+div{display:none}sub,sup{font-size:75%;line-height:0} @media (max-width:620px){.image_block div.fullWidth{max-width:100%!important}.mobile_hide{display:none}.row-content{width:100%!important}.stack .column{width:100%;display:block}.mobile_hide{min-height:0;max-height:0;max-width:0;overflow:hidden;font-size:0}.desktop_hide,.desktop_hide table{display:table!important;max-height:none!important}.row-5 .column-1{padding:0!important}}\r\n</style><!--[if mso ]><style>sup, sub { font-size: 100% !important; } sup { mso-text-raise:10% } sub { mso-text-raise:-10% }</style> <![endif]--><!--[if true]><style>.forceBgColor{background-color: white !important}</style><![endif]--></head><body class=\"body forceBgColor\" style=\"background-color:transparent;margin:0;padding:0;-webkit-text-size-adjust:none;text-size-adjust:none\"><span style=\"color: transparent; display: none !important; font-size: 0px; line-height: 0px; height: 0; max-height: 0; max-width: 0; opacity: 0; overflow: hidden; mso-hide: all; visibility: hidden; width: 0;\">Check the last names off your gift list &#9989;</span><div style=\"display: none; max-height: 0px; overflow: hidden;\">&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&nbsp; </div><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/CgxoqE1BKlemu9sZFygSIL_P0EpQ_Yd_IpcwTQFd5tVK_7iHdHRjQda_04Oiv1m8MY2zQUReT9pBagxoR0_g78-WAAdi9-TIAQGAAgM.nrswcEG2oDi39Q/click\" xnpe-attr=\"notextnorew\"><img width=\"1\" height=\"1\" alt=\"\" src=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/CgxoqE1BKlemu9sZFygSIL_P0EpQ_Yd_IpcwTQFd5tVK_7iHdHRjQda_04Oiv1m8MY2zQUReT9pBagxoR0_g78-WAAdi9-SAAgM.qbeD7mTmd-ZeFg/open\" style=\"display: none;\"></a><table class=\"nl-container\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:transparent\"><tbody><tr><td><table class=\"row row-1\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:600px\">\r\n<a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUth__oJXwN_2eqXpBr6Msc-uev3f0V5Skux4bf_l5kX7I_dISWeUlBQUW-nrl5eX6-WkJpZkpBblJubpJefn6hv2bnZ0ifO_5WglwMVUWizElZSTn59blJqYnGHFDRTJFWJNzU3MzLGSB3KShSSNTA2NDI3jXSsKgjMyC-L98vM884ozU1KLokL19ZPyUyr1SxKTclL1SyDsIv2SFIhItGEspiA2ETA7JbMMjBOTrNKMDSxNDM2N0xItzZPNTC1rwO6Jz0yxKspMznbITSwryqzQy89LrTFNMTcwTUs0TjJMMUgzTrPI4slw93_w_vw0Bvak708amJgBQEttLA.CW7z3WK1QjHERA/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/527690c9-9b9c-ef11-8a6a-6045bd048c5e.jpeg\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt=\"Shop multi-tools and knives at Leatherman.com\" title=\"Shop multi-tools and knives at Leatherman.com\" height=\"auto\"></a></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-2\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;background-size:auto;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%;padding-right:0;padding-left:0\"><div class=\"alignment\" align=\"center\"><div class=\"fullWidth\" style=\"max-width:600px\">\r\n<a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUth__oJXwN_2eqXpBr6Msc-uev3f0V5Skux4bf_l5kX7I_dISWeUlBQUW-nrl5eX6-WkJpZkpBblJubpJefn6hv2bnZ0ifO_5WglwMVUWizElZSTn59blJqYnGHFDRTJFWJNzU3MzLGSB3KShSSNTA2NDI3jXSsKgjMyC-L98vM884ozU1KLokL19ZPyUyr1SxKTclL1SyDsIv2SFIhItFEspiA2ETA7JbMMjBOTrNKMDSxNDM2N0xItzZPNTC1rwO6Jz0yxKspMznbITSwryqzQy89LrTFNMTcwTUs0TjJMMUgzTrPI4slw93_w_vw0Bvak708amJgBQM5tLQ.IuOkNOeqkAagGw/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/69bde5cf-9b9c-ef11-8a6a-6045bd048c5e.jpeg\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt title height=\"auto\"></a></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-3\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;background-size:auto;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%;padding-right:0;padding-left:0\"><div class=\"alignment\" align=\"center\"><div class=\"fullWidth\" style=\"max-width:600px\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUth__oJXwN_2eqXpBr6Msc-uev3f0V5Skux4bf_l5kX7I_dISWeUlBQUW-nrl5eX6-WkJpZkpBblJubpJefn6hv2bnZ0ifO_5WglwMVUWizElZSTn59blJqYnGHFDRTJFWJNzU3MzLGSB3KShSSNTA2NDI3jXSsKgjMyC-L98vM884ozU1KLokL19ZPyUyr1SxKTclL1SyDsIv2SFIhItHEspiA2ETA7JbMMjBOTrNKMDSxNDM2N0xItzZPNTC1rwO6Jz0yxKspMznbITSwryqzQy89LrTFNMTcwTUs0TjJMMUgzTrPI4slw93_w_vw0Bvak708amJgBQVFtLg.hQ0WxlkeLiTdlQ/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/162980d6-9b9c-ef11-8a6a-6045bd048c5e.jpeg\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt title height=\"auto\"></a></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-4\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#393c43;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"html_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div style=\"font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;text-align:center\" align=\"center\"><table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#35463d\" align=\"center\" width=\"100%\" style=\"width: 100%; padding: 10px 0px;\"><tbody><tr><td align=\"center\">\r\n\r\n        <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\"><tbody><tr align=\"center\"><td colspan=\"5\"></td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zj9Lw0AABXCtiFAdJJsuiq62l0uapgkULChiQSs4aanhLncxZ3K5kpz9AwUFh06uuvsVXByEfoQKooOTg7g6OomWduigbu_9eMNTlnv9h_LeV_ds5Vrdmay9P5W_77pSuqXn3uPFTe_gfrHhS1lPbACazWaWRYlExzHiWVdwEFIkfRpzFEkhwmTV4QlpRzyQDhGRkDJGblBU18YcsihgpIighgsIuxkTUpzJ6TSfsSDRMhh7iOagYRoGgpe3pY2jykvJnk-nThMljUMheEyR69uzA-HKNOWIhfbSoLjKgmZADerOZqu-77O6syui7ShhhMaHLQCwIG0gEQ4pkKMcA0lGUs3VfuNfMsyENf5fjKWq1QDCtqerVg6auocs080bVmd42WHEjpkbrHPUiFkrKyLaMYipGh7SMSSqp3uFkzl_q_L60b-amMGfb-epqR9ChJpw.Lj_3oouY-kLHIQ/click\" data-msdyn-tracking-id=\"060e7af814e081672338229931\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b1b88c4-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"Instagram\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUth__oJXwN_2eqXpBr6Msc-uev3f0V5Skux4bf_l5kX7I_dIxWWUlBQUW-nrl5eX65VkZpfkZ-sl5-fqO-SkJpZkpBblJubFl-Tn5xQrx-cWp1Tm5WaXxOdk5mVnptiaGCcbpySnpeoaGJik6JokGyfrWhpbJuqaGpimpZmlpgJRmmHvZkeXOP9bjlYCXEylxUJcSTn5-blFqYnJGVbcQJFcIdbU3MTMHCt5ICdZSNLI1NDI0DjetaIgOCOzIN4vP88zrzgzJbUoqkJfPyk_pVK_JDEpJ1W_BMIu0i9JgYhEm8RiCmITAbNTMstwq0CIRBvH6icmWaUZG1iaGJobpyVamiebmVrWgJ0cn5liVZSZnO2Qm1hWlFmhl5-XWmOaYg70fKJxkmGKQZpxmkUWT4a7_4P356cxsCd9f9LAxAwAf0-RBg.74gmV5T8voJ20w/click\" data-msdyn-tracking-id=\"55a2adb6bbc371672338239108\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b1dd76e-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"TikTok\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUth__oJXwN_2eqXpBr6Msc-uev3f0V5Skux4bf_l5kX7I_dIFWaUlBQUW-nrl5eX66UlJqcm5edn6yXn5-r7pCaWZKQW5Sbm6SvH5xanVOblZpfEp-Tn5ZeUFCUmZ9sa6CCEczLzsjNTbI2TjcxSjIxTdU3MDc11TUzSLHQtTc2SdRNNDMwMzMwtE42M0gx7Nzu6xPnfcrQS4GIqLRbiSsrJz88tSk1MzrDiBorkCrGm5iZm5ljJAznJQpJGpoZGhsbxrhUFwRmZBfF--XmeecWZKalFURX6-kn5KZX6JYlJOan6JRB2kX5JCkQk2iQWUxCbCJidklmGWwVCBGRoYpJVmrGBpYmhuXFaoqV5spmpZQ3YyfGZKVZFmcnZDrmJZUWZFXr5eak1pinmBqZpicZJhikGacZpFlk8Ge7-D96fn8bAnvT9SQMTMwCATZaG.AIcdVqPTpVE6Jg/click\" data-msdyn-tracking-id=\"1c347b64588db1672338250130\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b140b4e-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"Facebook\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zr1Lw0AABXCtiFAdpJsuiq62l8-mCRQsKGKxVnDSUsMld0fO5HIlufQDCgoOnVx1919wcRD6J1QQHZwcxNXRSbS0Qwd1e-_HG15mtT94KB989c7WrqXKdP39qfx91xPCLT33Hy9u-kf3yx1PiEZsAdBqtXIdnojEwTmXM5DEOAJ7GAoPRwyGFYwoXLdZjDoh84WNeMiFiKDrF6WNCQc09CkqkoKK8ghLWQMSktUMRc-aqqxlkeQqhYKhGPk8kS9vS1sn1ZeStZhOJXEm7QScswhD17Pmh8Iys5hBGlgrw-JmlhRdVmTV3m43Dj3asPd5uBvGFOHouA2Aw1EHCOgEGIhxjoBAY6lp9d_4l4wyos3_FxOp6XUAHYuokqnJhkqgabh53eyOLtsUWRF1_U0GmxFt53iIuzoyJJ1A1ZGRRFRSOF3wdqqvH4OrqTnn8-08NfMD2Xeabw.M0NOUVqZqur23w/click\" data-msdyn-tracking-id=\"05f4617e605a71672338263640\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b1ff6c0-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"YouTube\"></a>\r\n              </td>\r\n\r\n              <td colspan=\"6\"></td>\r\n            </tr></tbody></table></td>\r\n    </tr></tbody></table></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-5\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;vertical-align:top\"><table class=\"html_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div style=\"font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;text-align:center\" align=\"center\"><div data-section=\"true\" class=\"footer-container\" style=\"font-family: Arial, Verdana, sans-serif; color: #FFFFFF; background-color: #35463d; margin: 0; border-radius: 0;\" data-protected=\"false\">\r\n\r\n  <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse; background-color: #35463d;\"><tr><td align=\"center\" style=\"padding: 10px 0; text-align: center;\">\r\n\r\n        <div style=\"display: inline-block; text-align: center;\">\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzj1Lw1AYBWCriFAdpJsuiq4mN2mapgkULChiQSs4qdRwv0Kuyc0NybUfUFBQ6OSqu3_BxUHoT6ggOjg5iKujk2hpBwUdXjjngQNvbrHXv6_ufHZPlq60rUz97bH6dduVEleeeg9n1729u_nzjC9lnDoANJtNNaRQ-jThMFKx4CAWIcOMpiBOWAPitjKEtupLHi67PCXtiAfSJSISUiYQB2Vt5YdDFgWMlEsaMoukQBVkWkWlUMJ5xTYMTSkiz7KpZljQxvrFTWXtsPZccWaz48dpLotCIXhCIfad6YHw3CTlkIXOwqDg3Fze1PO64a634l2fxe62iDajlBGa7AcAIEHaQEIUUiBHOQGSjOTArP_F_2SYCWsMbzTV678YDipyPEOzC7pleNC2cNG0O8MvXUachOFglcNGwlqqiGjHJJZmetBAOtE8wysdzfgbtZf3_uXYFPp4PR2f-AZap5mn.O_eSnHMTfSZ3rA/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #FFFFFF; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Privacy Policy</u></strong>\r\n          </a>\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUth__oJXwN_2eqXpBr6Msc-uev3f0V5Skux4bf_l5kX7I_dI7WPMKCkpKLbS1y8tNtZNTsnTS81L10vKyc_PLUpNTM7QS87P1c9JTSzJSC3KTczTLcnPz9EtKMpPKU0uyczP00_Vd06vyC90NXTyzknNLbUsjnKrTA_29IkPMHAtCIyPTIn3LEguDwl0SzEtCfOON8_0SPEIygpMSYw3MPHPLDPMtfCNNKoKDA1KDbEscEpOrygIiMgOysvydKs0zTFONIvU000t983yNHdJt3SPSHbUT87PK07NK7HPScxLt03NM-zd7OgS53_L0UqAi6m0WIgL4XQrbqBIrhBram5iZo6VPJCTLCRpZGpoZGgc71pREJyRWRDvl5_nmVecmZJaFJWtr5-Un1KpX5KYlJOqXwJhF-mXpEBEok1jMQWxiYDZKZllYAzRahiLJJwYbRSbZJVmbGBpYmhunJZoaZ5sZmpZA3ZlfGaKVVFmcrZDbmJZUWaFXn5eao1pirmBaVqicZJhikGacZpFFk-Gu_-D9-enMbAnfX_SwMQMAFT1rnw.N-4gfJJcxKtFNw/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #FFFFFF; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Manage Preferences</u></strong>\r\n          </a>\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUth__oJXwN_2eqXpBr6Msc-uev3f0V5Skux4bf_l5kX7I_dI7WPMKCkpKLbS1y8tNtZNTsnTS81L10vKyc_PLUpNTM7QS87P1c9JTSzJSC3KTczTLcnPz9EtKMpPKU0uyczP00_Vd06vyC90NXTyzknNLbUsjnKrTA_29IkPMHAtCIyPTIn3LEguDwl0SzEtCfOON8_0SPEIygpMSYw3MPHPLDPMtfCNNKoKDA1KDbEscEpOrygIiMgOysvydKs0zTFONIvU000t983yNHdJt3SPSHbUT87PK07NK7HPScxLt03NM-zd7OgS53_L0UqAi6m0WIgL4XQrbqBIrhBram5iZo6VPJCTLCRpZGpoZGgc71pREJyRWRDvl5_nmVecmZJaFJWtr5-Un1KpX5KYlJOqXwJhF-mXpEBEok1jMQWxiYDZKZllYAzRahiLJJwYbRybZJVmbGBpYmhunJZoaZ5sZmpZA3ZlfGaKVVFmcrZDbmJZUWaFXn5eao1pirmBaVqicZJhikGacZpFFk-Gu_-D9-enMbAnfX_SwMQMAFVErn0.STxEuuJoTqa2aQ/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #FFFFFF; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Unsubscribe</u></strong>\r\n          </a>\r\n\r\n        </div>\r\n\r\n      </td>\r\n    </tr></table><table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse; background-color: #35463d;\"><tr><td align=\"center\" style=\"padding: 0; text-align: center;\">\r\n        <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse;\"><tr><td align=\"center\" style=\"text-align: center; padding: 10px 30px;\">\r\n              <div style=\"font-size: 11px; color: #FFFFFF; text-align: center;\">\r\n\r\n                <p>This email was sent to Rick@mavrix.one</p>\r\n\r\n                <p>by <strong>Leatherman Tool Group, Inc.</strong></p>\r\n\r\n                <p>12106 NE Ainsworth Circle <br>Portland, Oregon 97220</p>\r\n\r\n                <p style=\"display: none;\">Preference Center (PLACEHOLDER)</p>\r\n\r\n                <p style=\"line-height: 1.25;\">&#169; 2025 Leatherman Tool Group, Inc. All Rights Reserved.</p>\r\n                <br>\r\n                Limited time offer. Exclusions apply. Promotion valid December 13th to December 17th, 11:59pm PT. Available only on www.leatherman.com. US only. Must select expedited shipping option at checkout. Promotion cannot be combined with other offers. Promotion cannot be applied to past orders.\r\n                <br></div>\r\n            </td>\r\n          </tr></table></td>\r\n    </tr></table></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><!-- End --></body></html>','[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUth__oJXwN_2eqXpBr6Msc-uev3f0V5Skux4bf_l5kX7I_dISWeUlBQUW-nrl5eX6-WkJpZkpBblJubpJefn6hv2bnZ0ifO_5WglwMVUWizElZSTn59blJqYnGHFDRTJFWJNzU3MzLGSB3KShSSNTA2NDI3jXSsKgjMyC-L98vM884ozU1KLokL19ZPyUyr1SxKTclL1SyDsIv2SFIhItGEspiA2ETA7JbMMjBOTrNKMDSxNDM2N0xItzZPNTC1rwO6Jz0yxKspMznbITSwryqzQy89LrTFNMTcwTUs0TjJMMUgzTrPI4slw93_w_vw0Bvak708amJgBQEttLA.CW7z3WK1QjHERA/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUth__oJXwN_2eqXpBr6Msc-uev3f0V5Skux4bf_l5kX7I_dISWeUlBQUW-nrl5eX6-WkJpZkpBblJubpJefn6hv2bnZ0ifO_5WglwMVUWizElZSTn59blJqYnGHFDRTJFWJNzU3MzLGSB3KShSSNTA2NDI3jXSsKgjMyC-L98vM884ozU1KLokL19ZPyUyr1SxKTclL1SyDsIv2SFIhItFEspiA2ETA7JbMMjBOTrNKMDSxNDM2N0xItzZPNTC1rwO6Jz0yxKspMznbITSwryqzQy89LrTFNMTcwTUs0TjJMMUgzTrPI4slw93_w_vw0Bvak708amJgBQM5tLQ.IuOkNOeqkAagGw/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUth__oJXwN_2eqXpBr6Msc-uev3f0V5Skux4bf_l5kX7I_dISWeUlBQUW-nrl5eX6-WkJpZkpBblJubpJefn6hv2bnZ0ifO_5WglwMVUWizElZSTn59blJqYnGHFDRTJFWJNzU3MzLGSB3KShSSNTA2NDI3jXSsKgjMyC-L98vM884ozU1KLokL19ZPyUyr1SxKTclL1SyDsIv2SFIhItHEspiA2ETA7JbMMjBOTrNKMDSxNDM2N0xItzZPNTC1rwO6Jz0yxKspMznbITSwryqzQy89LrTFNMTcwTUs0TjJMMUgzTrPI4slw93_w_vw0Bvak708amJgBQVFtLg.hQ0WxlkeLiTdlQ/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zj9Lw0AABXCtiFAdJJsuiq62l0uapgkULChiQSs4aanhLncxZ3K5kpz9AwUFh06uuvsVXByEfoQKooOTg7g6OomWduigbu_9eMNTlnv9h_LeV_ds5Vrdmay9P5W_77pSuqXn3uPFTe_gfrHhS1lPbACazWaWRYlExzHiWVdwEFIkfRpzFEkhwmTV4QlpRzyQDhGRkDJGblBU18YcsihgpIighgsIuxkTUpzJ6TSfsSDRMhh7iOagYRoGgpe3pY2jykvJnk-nThMljUMheEyR69uzA-HKNOWIhfbSoLjKgmZADerOZqu-77O6syui7ShhhMaHLQCwIG0gEQ4pkKMcA0lGUs3VfuNfMsyENf5fjKWq1QDCtqerVg6auocs080bVmd42WHEjpkbrHPUiFkrKyLaMYipGh7SMSSqp3uFkzl_q_L60b-amMGfb-epqR9ChJpw.Lj_3oouY-kLHIQ/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUth__oJXwN_2eqXpBr6Msc-uev3f0V5Skux4bf_l5kX7I_dIxWWUlBQUW-nrl5eX65VkZpfkZ-sl5-fqO-SkJpZkpBblJubFl-Tn5xQrx-cWp1Tm5WaXxOdk5mVnptiaGCcbpySnpeoaGJik6JokGyfrWhpbJuqaGpimpZmlpgJRmmHvZkeXOP9bjlYCXEylxUJcSTn5-blFqYnJGVbcQJFcIdbU3MTMHCt5ICdZSNLI1NDI0DjetaIgOCOzIN4vP88zrzgzJbUoqkJfPyk_pVK_JDEpJ1W_BMIu0i9JgYhEm8RiCmITAbNTMstwq0CIRBvH6icmWaUZG1iaGJobpyVamiebmVrWgJ0cn5liVZSZnO2Qm1hWlFmhl5-XWmOaYg70fKJxkmGKQZpxmkUWT4a7_4P356cxsCd9f9LAxAwAf0-RBg.74gmV5T8voJ20w/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUth__oJXwN_2eqXpBr6Msc-uev3f0V5Skux4bf_l5kX7I_dIFWaUlBQUW-nrl5eX66UlJqcm5edn6yXn5-r7pCaWZKQW5Sbm6SvH5xanVOblZpfEp-Tn5ZeUFCUmZ9sa6CCEczLzsjNTbI2TjcxSjIxTdU3MDc11TUzSLHQtTc2SdRNNDMwMzMwtE42M0gx7Nzu6xPnfcrQS4GIqLRbiSsrJz88tSk1MzrDiBorkCrGm5iZm5ljJAznJQpJGpoZGhsbxrhUFwRmZBfF--XmeecWZKalFURX6-kn5KZX6JYlJOan6JRB2kX5JCkQk2iQWUxCbCJidklmGWwVCBGRoYpJVmrGBpYmhuXFaoqV5spmpZQ3YyfGZKVZFmcnZDrmJZUWZFXr5eak1pinmBqZpicZJhikGacZpFlk8Ge7-D96fn8bAnvT9SQMTMwCATZaG.AIcdVqPTpVE6Jg/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zr1Lw0AABXCtiFAdpJsuiq62l8-mCRQsKGKxVnDSUsMld0fO5HIlufQDCgoOnVx1919wcRD6J1QQHZwcxNXRSbS0Qwd1e-_HG15mtT94KB989c7WrqXKdP39qfx91xPCLT33Hy9u-kf3yx1PiEZsAdBqtXIdnojEwTmXM5DEOAJ7GAoPRwyGFYwoXLdZjDoh84WNeMiFiKDrF6WNCQc09CkqkoKK8ghLWQMSktUMRc-aqqxlkeQqhYKhGPk8kS9vS1sn1ZeStZhOJXEm7QScswhD17Pmh8Iys5hBGlgrw-JmlhRdVmTV3m43Dj3asPd5uBvGFOHouA2Aw1EHCOgEGIhxjoBAY6lp9d_4l4wyos3_FxOp6XUAHYuokqnJhkqgabh53eyOLtsUWRF1_U0GmxFt53iIuzoyJJ1A1ZGRRFRSOF3wdqqvH4OrqTnn8-08NfMD2Xeabw.M0NOUVqZqur23w/click] \r\n\r\n*Privacy Policy* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzj1Lw1AYBWCriFAdpJsuiq4mN2mapgkULChiQSs4qdRwv0Kuyc0NybUfUFBQ6OSqu3_BxUHoT6ggOjg5iKujk2hpBwUdXjjngQNvbrHXv6_ufHZPlq60rUz97bH6dduVEleeeg9n1729u_nzjC9lnDoANJtNNaRQ-jThMFKx4CAWIcOMpiBOWAPitjKEtupLHi67PCXtiAfSJSISUiYQB2Vt5YdDFgWMlEsaMoukQBVkWkWlUMJ5xTYMTSkiz7KpZljQxvrFTWXtsPZccWaz48dpLotCIXhCIfad6YHw3CTlkIXOwqDg3Fze1PO64a634l2fxe62iDajlBGa7AcAIEHaQEIUUiBHOQGSjOTArP_F_2SYCWsMbzTV678YDipyPEOzC7pleNC2cNG0O8MvXUachOFglcNGwlqqiGjHJJZmetBAOtE8wysdzfgbtZf3_uXYFPp4PR2f-AZap5mn.O_eSnHMTfSZ3rA/click] *Manage Preferences* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUth__oJXwN_2eqXpBr6Msc-uev3f0V5Skux4bf_l5kX7I_dI7WPMKCkpKLbS1y8tNtZNTsnTS81L10vKyc_PLUpNTM7QS87P1c9JTSzJSC3KTczTLcnPz9EtKMpPKU0uyczP00_Vd06vyC90NXTyzknNLbUsjnKrTA_29IkPMHAtCIyPTIn3LEguDwl0SzEtCfOON8_0SPEIygpMSYw3MPHPLDPMtfCNNKoKDA1KDbEscEpOrygIiMgOysvydKs0zTFONIvU000t983yNHdJt3SPSHbUT87PK07NK7HPScxLt03NM-zd7OgS53_L0UqAi6m0WIgL4XQrbqBIrhBram5iZo6VPJCTLCRpZGpoZGgc71pREJyRWRDvl5_nmVecmZJaFJWtr5-Un1KpX5KYlJOqXwJhF-mXpEBEok1jMQWxiYDZKZllYAzRahiLJJwYbRSbZJVmbGBpYmhunJZoaZ5sZmpZA3ZlfGaKVVFmcrZDbmJZUWaFXn5eao1pirmBaVqicZJhikGacZpFFk-Gu_-D9-enMbAnfX_SwMQMAFT1rnw.N-4gfJJcxKtFNw/click] *Unsubscribe* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUth__oJXwN_2eqXpBr6Msc-uev3f0V5Skux4bf_l5kX7I_dI7WPMKCkpKLbS1y8tNtZNTsnTS81L10vKyc_PLUpNTM7QS87P1c9JTSzJSC3KTczTLcnPz9EtKMpPKU0uyczP00_Vd06vyC90NXTyzknNLbUsjnKrTA_29IkPMHAtCIyPTIn3LEguDwl0SzEtCfOON8_0SPEIygpMSYw3MPHPLDPMtfCNNKoKDA1KDbEscEpOrygIiMgOysvydKs0zTFONIvU000t983yNHdJt3SPSHbUT87PK07NK7HPScxLt03NM-zd7OgS53_L0UqAi6m0WIgL4XQrbqBIrhBram5iZo6VPJCTLCRpZGpoZGgc71pREJyRWRDvl5_nmVecmZJaFJWtr5-Un1KpX5KYlJOqXwJhF-mXpEBEok1jMQWxiYDZKZllYAzRahiLJJwYbRybZJVmbGBpYmhunJZoaZ5sZmpZA3ZlfGaKVVFmcrZDbmJZUWaFXn5eao1pirmBaVqicZJhikGacZpFFk-Gu_-D9-enMbAnfX_SwMQMAFVErn0.STxEuuJoTqa2aQ/click] \r\n\r\nThis email was sent to Rick@mavrix.one\r\n\r\nby *Leatherman Tool Group, Inc.*\r\n\r\n12106 NE Ainsworth Circle \r\nPortland, Oregon 97220\r\n\r\n© 2025 Leatherman Tool Group, Inc. All Rights Reserved.\r\n\r\nLimited time offer. Exclusions apply. Promotion valid December 13th to December 17th, 11:59pm PT. Available only on www.leatherman.com. US only. Must select expedited shipping option at checkout. Promotion cannot be combined with other offers. Promotion cannot be applied to past orders. ',0,0,0,0,0,0,'2025-12-13 15:32:49','2025-12-13 15:01:10','2025-12-13 15:01:10','2025-12-13 15:01:10',NULL,NULL,NULL);
/*!40000 ALTER TABLE `emails` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `employee_issues`
--

DROP TABLE IF EXISTS `employee_issues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `employee_issues` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `employee_id` int(10) unsigned DEFAULT NULL,
  `reported_by` int(10) unsigned DEFAULT NULL,
  `issue_type` enum('disciplinary','grievance','conflict','performance','attendance','policy-violation','harassment','safety','other') NOT NULL,
  `severity` enum('low','medium','high','critical') DEFAULT 'medium',
  `title` varchar(255) NOT NULL,
  `description` text NOT NULL,
  `action_taken` text DEFAULT NULL,
  `resolution` text DEFAULT NULL,
  `status` enum('reported','investigating','in-progress','resolved','closed','escalated') DEFAULT 'reported',
  `reported_date` date NOT NULL,
  `resolved_date` date DEFAULT NULL,
  `is_confidential` tinyint(1) DEFAULT 1,
  `witnesses` text DEFAULT NULL,
  `documents_path` varchar(500) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_employee` (`employee_id`),
  KEY `idx_type` (`issue_type`),
  KEY `idx_status` (`status`),
  KEY `idx_severity` (`severity`),
  CONSTRAINT `employee_issues_ibfk_1` FOREIGN KEY (`employee_id`) REFERENCES `employees` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_issues`
--

LOCK TABLES `employee_issues` WRITE;
/*!40000 ALTER TABLE `employee_issues` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `employee_issues` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `employee_separations`
--

DROP TABLE IF EXISTS `employee_separations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `employee_separations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `employee_id` int(10) unsigned NOT NULL,
  `separation_type` enum('resignation','termination','retirement','layoff','end-of-contract','other') NOT NULL,
  `notice_date` date DEFAULT NULL,
  `last_working_date` date NOT NULL,
  `reason` text DEFAULT NULL,
  `exit_interview_completed` tinyint(1) DEFAULT 0,
  `exit_interview_notes` text DEFAULT NULL,
  `rehire_eligible` tinyint(1) DEFAULT 1,
  `final_paycheck_processed` tinyint(1) DEFAULT 0,
  `benefits_terminated` tinyint(1) DEFAULT 0,
  `equipment_returned` tinyint(1) DEFAULT 0,
  `access_revoked` tinyint(1) DEFAULT 0,
  `status` enum('pending','in-progress','completed') DEFAULT 'pending',
  `processed_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_employee` (`employee_id`),
  KEY `idx_type` (`separation_type`),
  KEY `idx_last_working_date` (`last_working_date`),
  CONSTRAINT `employee_separations_ibfk_1` FOREIGN KEY (`employee_id`) REFERENCES `employees` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_separations`
--

LOCK TABLES `employee_separations` WRITE;
/*!40000 ALTER TABLE `employee_separations` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `employee_separations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `employee_training`
--

DROP TABLE IF EXISTS `employee_training`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `employee_training` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `employee_id` int(10) unsigned NOT NULL,
  `training_program_id` int(10) unsigned NOT NULL,
  `assigned_date` date DEFAULT NULL,
  `start_date` date DEFAULT NULL,
  `completion_date` date DEFAULT NULL,
  `due_date` date DEFAULT NULL,
  `status` enum('assigned','in-progress','completed','failed','cancelled','expired') DEFAULT 'assigned',
  `score` decimal(5,2) DEFAULT NULL,
  `certificate_path` varchar(500) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `assigned_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_employee` (`employee_id`),
  KEY `idx_training` (`training_program_id`),
  KEY `idx_status` (`status`),
  CONSTRAINT `employee_training_ibfk_1` FOREIGN KEY (`employee_id`) REFERENCES `employees` (`id`) ON DELETE CASCADE,
  CONSTRAINT `employee_training_ibfk_2` FOREIGN KEY (`training_program_id`) REFERENCES `training_programs` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_training`
--

LOCK TABLES `employee_training` WRITE;
/*!40000 ALTER TABLE `employee_training` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `employee_training` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `employees`
--

DROP TABLE IF EXISTS `employees`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `employees` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `secondary_email` varchar(255) DEFAULT NULL,
  `employee_id` varchar(50) NOT NULL,
  `employee_number` varchar(50) DEFAULT NULL,
  `department_id` int(10) unsigned DEFAULT NULL,
  `position` varchar(100) DEFAULT NULL,
  `hire_date` date NOT NULL,
  `termination_date` date DEFAULT NULL,
  `salary` decimal(15,2) DEFAULT NULL,
  `salary_type` enum('hourly','monthly','yearly') DEFAULT 'monthly',
  `status` enum('active','on_leave','terminated') DEFAULT 'active',
  `employment_type` enum('full_time','part_time','contract','intern') DEFAULT 'full_time',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  `position_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `employee_id` (`employee_id`),
  UNIQUE KEY `user_id` (`user_id`),
  KEY `department_id` (`department_id`),
  KEY `idx_secondary_email` (`secondary_email`),
  KEY `idx_position_id` (`position_id`),
  KEY `idx_employees_deleted_at` (`deleted_at`),
  CONSTRAINT `employees_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `employees_ibfk_2` FOREIGN KEY (`department_id`) REFERENCES `departments` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_employees_position` FOREIGN KEY (`position_id`) REFERENCES `positions` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employees`
--

LOCK TABLES `employees` WRITE;
/*!40000 ALTER TABLE `employees` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `employees` VALUES
(8,2,NULL,'EMP-8662',NULL,1,'','2025-08-04',NULL,NULL,'monthly','active','full_time','2025-10-27 15:28:02','2025-11-15 18:19:18',NULL,1),
(15,4,NULL,'EMP-3910',NULL,1,'','2025-08-04',NULL,NULL,'monthly','active','full_time','2025-11-01 00:25:00','2025-11-15 18:15:59',NULL,4),
(17,7,NULL,'EMP-1645',NULL,4,'','2025-11-14',NULL,NULL,'monthly','active','full_time','2025-11-14 21:00:43','2025-11-15 18:23:48',NULL,117),
(18,8,NULL,'EMP-1196',NULL,4,'','2025-11-14',NULL,NULL,'monthly','active','full_time','2025-11-14 21:01:16','2025-11-15 18:24:56',NULL,111),
(19,21,NULL,'EMP-2154',NULL,5,'','2025-11-15',NULL,NULL,'monthly','active','full_time','2025-11-15 23:53:17','2025-11-15 23:53:48',NULL,6);
/*!40000 ALTER TABLE `employees` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `employment_contracts`
--

DROP TABLE IF EXISTS `employment_contracts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `employment_contracts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `employee_id` int(10) unsigned NOT NULL,
  `offer_id` int(10) unsigned DEFAULT NULL,
  `contract_type` enum('full-time','part-time','contract','temporary','intern') DEFAULT 'full-time',
  `start_date` date NOT NULL,
  `end_date` date DEFAULT NULL,
  `probation_end_date` date DEFAULT NULL,
  `position` varchar(255) NOT NULL,
  `department` varchar(100) DEFAULT NULL,
  `salary` decimal(12,2) NOT NULL,
  `pay_frequency` enum('hourly','daily','weekly','bi-weekly','monthly','annual') DEFAULT 'monthly',
  `work_hours_per_week` decimal(5,2) DEFAULT 40.00,
  `vacation_days` int(11) DEFAULT NULL,
  `sick_days` int(11) DEFAULT NULL,
  `contract_file_path` varchar(500) DEFAULT NULL,
  `signed_contract_path` varchar(500) DEFAULT NULL,
  `status` enum('draft','active','completed','terminated','renewed') DEFAULT 'draft',
  `termination_date` date DEFAULT NULL,
  `termination_reason` text DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `offer_id` (`offer_id`),
  KEY `idx_employee` (`employee_id`),
  KEY `idx_status` (`status`),
  KEY `idx_start_date` (`start_date`),
  CONSTRAINT `employment_contracts_ibfk_1` FOREIGN KEY (`employee_id`) REFERENCES `employees` (`id`) ON DELETE CASCADE,
  CONSTRAINT `employment_contracts_ibfk_2` FOREIGN KEY (`offer_id`) REFERENCES `employment_offers` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employment_contracts`
--

LOCK TABLES `employment_contracts` WRITE;
/*!40000 ALTER TABLE `employment_contracts` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `employment_contracts` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `employment_offers`
--

DROP TABLE IF EXISTS `employment_offers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `employment_offers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `application_id` int(10) unsigned NOT NULL,
  `job_position_id` int(10) unsigned NOT NULL,
  `offer_date` date NOT NULL,
  `expiry_date` date DEFAULT NULL,
  `start_date` date DEFAULT NULL,
  `salary` decimal(12,2) NOT NULL,
  `bonus` decimal(12,2) DEFAULT NULL,
  `equity` varchar(100) DEFAULT NULL,
  `benefits_summary` text DEFAULT NULL,
  `contract_type` enum('full-time','part-time','contract','temporary') DEFAULT 'full-time',
  `probation_period` int(11) DEFAULT NULL COMMENT 'Probation period in months',
  `status` enum('draft','pending','accepted','rejected','countered','withdrawn','expired') DEFAULT 'draft',
  `offer_letter_path` varchar(500) DEFAULT NULL,
  `signed_offer_path` varchar(500) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `sent_at` timestamp NULL DEFAULT NULL,
  `responded_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `job_position_id` (`job_position_id`),
  KEY `idx_application` (`application_id`),
  KEY `idx_status` (`status`),
  KEY `idx_offer_date` (`offer_date`),
  CONSTRAINT `employment_offers_ibfk_1` FOREIGN KEY (`application_id`) REFERENCES `job_applications` (`id`) ON DELETE CASCADE,
  CONSTRAINT `employment_offers_ibfk_2` FOREIGN KEY (`job_position_id`) REFERENCES `job_positions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employment_offers`
--

LOCK TABLES `employment_offers` WRITE;
/*!40000 ALTER TABLE `employment_offers` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `employment_offers` VALUES
(2,1,1,'2025-11-02',NULL,'2025-11-24',0.00,NULL,NULL,'','full-time',NULL,'pending',NULL,NULL,'Offer letter for the job',NULL,NULL,'2025-11-02 12:38:34','2025-11-02 12:38:34');
/*!40000 ALTER TABLE `employment_offers` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `equipment`
--

DROP TABLE IF EXISTS `equipment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `equipment` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `business_line_id` int(10) unsigned NOT NULL DEFAULT 1,
  `equipment_line_id` int(10) unsigned DEFAULT NULL COMMENT 'Optional - equipment can be standalone or in a line',
  `asset_tag` varchar(50) NOT NULL,
  `name` varchar(100) NOT NULL,
  `serial_number` varchar(100) DEFAULT NULL,
  `manufacturer` varchar(100) DEFAULT NULL,
  `model` varchar(100) DEFAULT NULL,
  `purchase_date` date DEFAULT NULL,
  `purchase_cost` decimal(15,2) DEFAULT 0.00,
  `current_value` decimal(15,2) DEFAULT 0.00,
  `sq_ft` decimal(10,2) DEFAULT 0.00 COMMENT 'Actual square footage occupied',
  `rated_capacity_per_hour` decimal(10,2) DEFAULT NULL COMMENT 'Rated production capacity',
  `actual_output_per_hour` decimal(10,2) DEFAULT NULL COMMENT 'Actual average output',
  `capacity_per_hour` decimal(10,2) DEFAULT NULL COMMENT 'Equipment-specific capacity override',
  `efficiency_factor` decimal(3,2) DEFAULT NULL COMMENT 'Equipment-specific efficiency override',
  `status` enum('operational','maintenance','down','retired') DEFAULT 'operational',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `available_hours_per_day` decimal(5,2) DEFAULT 16.00 COMMENT 'Hours available for production per day',
  `shift_configuration` varchar(50) DEFAULT '2-shift' COMMENT 'Shift setup: 1-shift, 2-shift, 3-shift, 24/7',
  `setup_time_hours` decimal(5,2) DEFAULT 0.00 COMMENT 'Time needed to switch products (hours)',
  `maintenance_schedule` text DEFAULT NULL COMMENT 'Planned maintenance schedule (JSON or text)',
  `utilization_rate` decimal(5,2) DEFAULT 0.00 COMMENT 'Current utilization percentage (0-100)',
  `annual_demand_units` decimal(12,2) DEFAULT 0.00 COMMENT 'Total annual demand for this equipment',
  `operating_days_per_year` int(11) DEFAULT 250 COMMENT 'Operating days per year',
  `operating_hours_per_day` decimal(5,2) DEFAULT 16.00 COMMENT 'Operating hours per day',
  `operators_per_machine` decimal(4,2) DEFAULT 1.00 COMMENT 'Number of operators required per machine',
  `skill_level_required` varchar(50) DEFAULT 'basic' COMMENT 'Skill level: basic, intermediate, advanced, expert',
  `setup_operators_required` decimal(4,2) DEFAULT 0.00 COMMENT 'Operators needed for changeovers',
  `supervisor_ratio` decimal(6,2) DEFAULT 0.00 COMMENT 'Supervisors per X machines (e.g., 0.1 = 1 supervisor per 10 machines)',
  `planned_maintenance_hours_per_year` decimal(8,2) DEFAULT 0.00 COMMENT 'Scheduled maintenance hours annually',
  `avg_unplanned_downtime_hours_per_year` decimal(8,2) DEFAULT 0.00 COMMENT 'Historical average unplanned downtime',
  `ramp_up_time_hours` decimal(5,2) DEFAULT 0.00 COMMENT 'Time to reach full production speed',
  `ramp_down_time_hours` decimal(5,2) DEFAULT 0.00 COMMENT 'Shutdown time',
  `quality_control_time_percent` decimal(5,2) DEFAULT 0.00 COMMENT 'Percentage of time for QC activities',
  `scrap_rate_percent` decimal(5,2) DEFAULT 0.00 COMMENT 'Expected defect/scrap rate',
  `demand_spike_buffer_percent` decimal(5,2) DEFAULT 15.00 COMMENT 'Safety buffer for demand spikes',
  `overall_equipment_effectiveness` decimal(5,2) DEFAULT 85.00 COMMENT 'OEE score (0-100)',
  `changeover_time_hours` decimal(5,2) DEFAULT 0.00 COMMENT 'Typical product changeover time',
  `min_batch_size` int(11) DEFAULT 1 COMMENT 'Minimum production batch',
  `max_batch_size` int(11) DEFAULT NULL COMMENT 'Maximum production batch',
  `power_consumption_kw` decimal(8,2) DEFAULT 0.00 COMMENT 'Power consumption in kilowatts per hour',
  `energy_cost_per_hour` decimal(10,2) DEFAULT 0.00 COMMENT 'Calculated energy cost per hour',
  `operating_cost_per_hour` decimal(10,2) DEFAULT 0.00 COMMENT 'Total operating cost per hour',
  PRIMARY KEY (`id`),
  UNIQUE KEY `asset_tag` (`asset_tag`),
  KEY `equipment_line_id` (`equipment_line_id`),
  KEY `serial_number` (`serial_number`),
  KEY `status` (`status`),
  KEY `idx_equipment_business_line` (`business_line_id`),
  KEY `idx_equipment_line` (`equipment_line_id`),
  KEY `idx_asset_tag_status` (`asset_tag`,`status`),
  KEY `idx_equipment_annual_demand` (`annual_demand_units`),
  KEY `idx_equipment_skill_level` (`skill_level_required`),
  KEY `idx_equipment_oee` (`overall_equipment_effectiveness`),
  CONSTRAINT `fk_equipment_business_line` FOREIGN KEY (`business_line_id`) REFERENCES `business_lines` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_equipment_line_optional` FOREIGN KEY (`equipment_line_id`) REFERENCES `equipment_lines` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Individual equipment units with actual sq ft';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `equipment`
--

LOCK TABLES `equipment` WRITE;
/*!40000 ALTER TABLE `equipment` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `equipment` VALUES
(1,1,5,'IndCylind','Machine #1','RR-123','RedRiver','4','2025-10-29',0.00,0.00,2200.00,15.00,NULL,NULL,NULL,'operational','','2025-10-27 22:07:39','2025-11-13 16:26:19',16.00,'2-shift',0.00,NULL,0.00,0.00,250,16.00,1.00,'basic',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,15.00,85.00,0.00,1,NULL,0.00,0.00,0.00);
/*!40000 ALTER TABLE `equipment` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `equipment_benchmarking_view`
--

DROP TABLE IF EXISTS `equipment_benchmarking_view`;
/*!50001 DROP VIEW IF EXISTS `equipment_benchmarking_view`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `equipment_benchmarking_view` AS SELECT
 1 AS `current_equipment_id`,
  1 AS `current_equipment_name`,
  1 AS `asset_tag`,
  1 AS `equipment_line`,
  1 AS `current_capacity`,
  1 AS `current_efficiency`,
  1 AS `current_scrap_rate`,
  1 AS `current_downtime`,
  1 AS `market_research_id`,
  1 AS `market_equipment_name`,
  1 AS `market_capacity`,
  1 AS `market_efficiency`,
  1 AS `market_scrap_rate`,
  1 AS `capacity_gap_percent`,
  1 AS `efficiency_gap_percent`,
  1 AS `scrap_rate_gap`,
  1 AS `vendor_name`,
  1 AS `upgrade_cost` */;
SET character_set_client = @saved_cs_client;

--
-- Temporary table structure for view `equipment_capacity_view`
--

DROP TABLE IF EXISTS `equipment_capacity_view`;
/*!50001 DROP VIEW IF EXISTS `equipment_capacity_view`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `equipment_capacity_view` AS SELECT
 1 AS `equipment_id`,
  1 AS `asset_tag`,
  1 AS `equipment_name`,
  1 AS `status`,
  1 AS `serial_number`,
  1 AS `manufacturer`,
  1 AS `model`,
  1 AS `business_line_id`,
  1 AS `business_line_name`,
  1 AS `equipment_line_id`,
  1 AS `equipment_line_name`,
  1 AS `equipment_line_code`,
  1 AS `location_id`,
  1 AS `location_name`,
  1 AS `rated_capacity_per_hour`,
  1 AS `actual_output_per_hour`,
  1 AS `efficiency_factor`,
  1 AS `available_hours_per_day`,
  1 AS `operating_days_per_year`,
  1 AS `operating_hours_per_day`,
  1 AS `shift_configuration`,
  1 AS `setup_time_hours`,
  1 AS `operators_per_machine`,
  1 AS `skill_level_required`,
  1 AS `setup_operators_required`,
  1 AS `supervisor_ratio`,
  1 AS `planned_maintenance_hours_per_year`,
  1 AS `avg_unplanned_downtime_hours_per_year`,
  1 AS `ramp_up_time_hours`,
  1 AS `ramp_down_time_hours`,
  1 AS `quality_control_time_percent`,
  1 AS `scrap_rate_percent`,
  1 AS `demand_spike_buffer_percent`,
  1 AS `overall_equipment_effectiveness`,
  1 AS `changeover_time_hours`,
  1 AS `min_batch_size`,
  1 AS `max_batch_size`,
  1 AS `power_consumption_kw`,
  1 AS `energy_cost_per_hour`,
  1 AS `operating_cost_per_hour`,
  1 AS `annual_demand_units`,
  1 AS `adjusted_production_rate`,
  1 AS `effective_hours_available_per_day`,
  1 AS `effective_hours_available_per_year`,
  1 AS `daily_capacity_units`,
  1 AS `annual_capacity_units`,
  1 AS `utilization_rate`,
  1 AS `available_daily_capacity`,
  1 AS `daily_demand_units`,
  1 AS `hours_required_per_day`,
  1 AS `machines_required`,
  1 AS `operators_required`,
  1 AS `availability_status`,
  1 AS `created_at`,
  1 AS `updated_at` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `equipment_downtime_log`
--

DROP TABLE IF EXISTS `equipment_downtime_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `equipment_downtime_log` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `equipment_id` int(10) unsigned NOT NULL,
  `downtime_start` datetime NOT NULL,
  `downtime_end` datetime DEFAULT NULL,
  `downtime_hours` decimal(8,2) GENERATED ALWAYS AS (timestampdiff(MINUTE,`downtime_start`,`downtime_end`) / 60) STORED,
  `downtime_type` enum('maintenance','breakdown','quality_issue','changeover','material_shortage','other') DEFAULT 'other',
  `reason` varchar(255) DEFAULT NULL,
  `impact_units_lost` int(11) DEFAULT 0,
  `cost_impact` decimal(10,2) DEFAULT 0.00,
  `resolved_by` int(10) unsigned DEFAULT NULL COMMENT 'User ID who resolved the issue',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `resolved_by` (`resolved_by`),
  KEY `idx_equipment_date` (`equipment_id`,`downtime_start`),
  KEY `idx_downtime_type` (`downtime_type`),
  KEY `idx_downtime_type_date` (`downtime_type`,`downtime_start`),
  CONSTRAINT `equipment_downtime_log_ibfk_1` FOREIGN KEY (`equipment_id`) REFERENCES `equipment` (`id`) ON DELETE CASCADE,
  CONSTRAINT `equipment_downtime_log_ibfk_2` FOREIGN KEY (`resolved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `equipment_downtime_log`
--

LOCK TABLES `equipment_downtime_log` WRITE;
/*!40000 ALTER TABLE `equipment_downtime_log` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `equipment_downtime_log` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `equipment_line_capacity_summary`
--

DROP TABLE IF EXISTS `equipment_line_capacity_summary`;
/*!50001 DROP VIEW IF EXISTS `equipment_line_capacity_summary`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `equipment_line_capacity_summary` AS SELECT
 1 AS `equipment_line_id`,
  1 AS `equipment_line_name`,
  1 AS `equipment_line_code`,
  1 AS `equipment_line_asset_number`,
  1 AS `line_capacity_per_hour`,
  1 AS `line_efficiency_factor`,
  1 AS `business_line_id`,
  1 AS `business_line_name`,
  1 AS `total_equipment`,
  1 AS `operational_equipment`,
  1 AS `avg_utilization_rate`,
  1 AS `total_daily_capacity`,
  1 AS `available_daily_capacity` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `equipment_lines`
--

DROP TABLE IF EXISTS `equipment_lines`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `equipment_lines` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `business_line_id` int(10) unsigned NOT NULL,
  `name` varchar(100) NOT NULL,
  `code` varchar(50) NOT NULL,
  `asset_number` varchar(50) DEFAULT NULL COMMENT 'Asset tracking number for this line',
  `description` text DEFAULT NULL,
  `capacity_per_hour` decimal(10,2) DEFAULT 0.00 COMMENT 'Standard capacity per hour for this line',
  `efficiency_factor` decimal(3,2) DEFAULT 0.85 COMMENT 'Typical efficiency (0.00-1.00, e.g., 0.85 = 85%)',
  `manual_sq_ft` decimal(10,2) DEFAULT NULL COMMENT 'User-entered square footage (optional)',
  `status` enum('active','inactive') DEFAULT 'active',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `code` (`code`),
  KEY `business_line_id` (`business_line_id`),
  KEY `status` (`status`),
  KEY `idx_equipment_lines_business_line` (`business_line_id`),
  CONSTRAINT `equipment_lines_ibfk_1` FOREIGN KEY (`business_line_id`) REFERENCES `business_lines` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_equipment_line_business_line` FOREIGN KEY (`business_line_id`) REFERENCES `business_lines` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Equipment lines - groups of equipment (can be single type or mixed)';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `equipment_lines`
--

LOCK TABLES `equipment_lines` WRITE;
/*!40000 ALTER TABLE `equipment_lines` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `equipment_lines` VALUES
(1,1,'Large Prismatic','LgPrism',NULL,'',NULL,NULL,9688.00,'active','','2025-10-27 21:10:53','2025-10-27 21:59:26'),
(2,1,'Large Cylindrical','LgCylind',NULL,'',NULL,NULL,5200.00,'active','','2025-10-27 21:11:27','2025-10-27 21:59:26'),
(3,1,'Small Cylindrical','SmCylind',NULL,'',NULL,NULL,3875.00,'active','','2025-10-27 21:41:32','2025-10-27 21:59:26'),
(4,1,'Individual Prismatic','IndPrism',NULL,'',NULL,NULL,3900.00,'active','','2025-10-27 21:42:02','2025-10-27 21:59:26'),
(5,1,'Individual Cylindrical','IndCylind',NULL,'',NULL,NULL,2200.00,'active','','2025-10-27 21:42:24','2025-10-27 21:59:26'),
(6,1,'Testing Machine','Testing',NULL,'',0.00,0.85,500.00,'active','','2025-11-11 16:47:10','2025-11-11 16:47:18');
/*!40000 ALTER TABLE `equipment_lines` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `equipment_market_research`
--

DROP TABLE IF EXISTS `equipment_market_research`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `equipment_market_research` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `vendor_id` int(10) unsigned DEFAULT NULL,
  `equipment_name` varchar(255) NOT NULL,
  `model_number` varchar(100) DEFAULT NULL,
  `equipment_type` varchar(100) DEFAULT NULL,
  `rated_capacity_per_hour` decimal(10,2) DEFAULT NULL,
  `actual_capacity_per_hour` decimal(10,2) DEFAULT NULL COMMENT 'Real-world from research',
  `efficiency_rating` decimal(5,4) DEFAULT NULL COMMENT 'Reported efficiency 0-1',
  `reliability_mtbf_hours` decimal(10,2) DEFAULT NULL COMMENT 'Mean time between failures',
  `purchase_price` decimal(15,2) DEFAULT NULL,
  `installation_cost` decimal(15,2) DEFAULT NULL,
  `annual_maintenance_cost` decimal(15,2) DEFAULT NULL,
  `energy_consumption_kw` decimal(8,2) DEFAULT NULL,
  `operators_required` decimal(4,2) DEFAULT NULL,
  `typical_scrap_rate_percent` decimal(5,2) DEFAULT NULL,
  `quality_rating` decimal(3,2) DEFAULT NULL COMMENT 'Rating 1-5',
  `floor_space_required_sqft` decimal(10,2) DEFAULT NULL,
  `weight_lbs` decimal(10,2) DEFAULT NULL,
  `power_requirements` varchar(100) DEFAULT NULL,
  `lead_time_weeks` int(11) DEFAULT NULL,
  `warranty_years` decimal(4,2) DEFAULT NULL,
  `technology_generation` varchar(50) DEFAULT NULL COMMENT 'Latest, Current, Legacy',
  `competitive_advantages` text DEFAULT NULL,
  `known_issues` text DEFAULT NULL,
  `research_date` date DEFAULT NULL,
  `research_source` varchar(255) DEFAULT NULL COMMENT 'Trade show, spec sheet, competitor intel, etc',
  `confidence_level` enum('high','medium','low') DEFAULT 'medium',
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `created_by` (`created_by`),
  KEY `idx_equipment_type` (`equipment_type`),
  KEY `idx_vendor` (`vendor_id`),
  KEY `idx_research_date` (`research_date`),
  CONSTRAINT `equipment_market_research_ibfk_1` FOREIGN KEY (`vendor_id`) REFERENCES `equipment_vendors` (`id`) ON DELETE SET NULL,
  CONSTRAINT `equipment_market_research_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `equipment_market_research`
--

LOCK TABLES `equipment_market_research` WRITE;
/*!40000 ALTER TABLE `equipment_market_research` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `equipment_market_research` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `equipment_product_demand`
--

DROP TABLE IF EXISTS `equipment_product_demand`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `equipment_product_demand` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `equipment_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `annual_demand_units` decimal(12,2) NOT NULL DEFAULT 0.00,
  `production_rate_per_hour` decimal(10,2) DEFAULT NULL COMMENT 'Override equipment default rate',
  `scrap_rate_percent` decimal(5,2) DEFAULT 0.00 COMMENT 'Product-specific scrap rate',
  `changeover_time_hours` decimal(5,2) DEFAULT 0.00 COMMENT 'Product-specific changeover time',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_equipment_product` (`equipment_id`,`product_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `equipment_product_demand_ibfk_1` FOREIGN KEY (`equipment_id`) REFERENCES `equipment` (`id`) ON DELETE CASCADE,
  CONSTRAINT `equipment_product_demand_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `equipment_product_demand`
--

LOCK TABLES `equipment_product_demand` WRITE;
/*!40000 ALTER TABLE `equipment_product_demand` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `equipment_product_demand` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `equipment_replacement_analysis`
--

DROP TABLE IF EXISTS `equipment_replacement_analysis`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `equipment_replacement_analysis` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `analysis_name` varchar(255) NOT NULL,
  `current_equipment_id` int(10) unsigned DEFAULT NULL,
  `current_equipment_age_years` decimal(5,2) DEFAULT NULL,
  `current_annual_output` decimal(12,2) DEFAULT NULL,
  `current_efficiency_factor` decimal(5,4) DEFAULT NULL,
  `current_scrap_rate_percent` decimal(5,2) DEFAULT NULL,
  `current_annual_downtime_hours` decimal(8,2) DEFAULT NULL,
  `current_annual_maintenance_cost` decimal(15,2) DEFAULT NULL,
  `current_annual_energy_cost` decimal(15,2) DEFAULT NULL,
  `current_annual_labor_cost` decimal(15,2) DEFAULT NULL,
  `current_book_value` decimal(15,2) DEFAULT NULL,
  `current_salvage_value` decimal(15,2) DEFAULT NULL,
  `proposed_equipment_research_id` int(10) unsigned DEFAULT NULL,
  `proposed_purchase_price` decimal(15,2) DEFAULT NULL,
  `proposed_installation_cost` decimal(15,2) DEFAULT NULL,
  `proposed_training_cost` decimal(15,2) DEFAULT NULL,
  `proposed_annual_output` decimal(12,2) DEFAULT NULL,
  `proposed_efficiency_factor` decimal(5,4) DEFAULT NULL,
  `proposed_scrap_rate_percent` decimal(5,2) DEFAULT NULL,
  `proposed_annual_downtime_hours` decimal(8,2) DEFAULT NULL,
  `proposed_annual_maintenance_cost` decimal(15,2) DEFAULT NULL,
  `proposed_annual_energy_cost` decimal(15,2) DEFAULT NULL,
  `proposed_annual_labor_cost` decimal(15,2) DEFAULT NULL,
  `proposed_useful_life_years` int(11) DEFAULT NULL,
  `total_investment` decimal(15,2) DEFAULT NULL COMMENT 'Purchase + Install + Training - Salvage',
  `annual_cost_savings` decimal(15,2) DEFAULT NULL COMMENT 'Maintenance + Energy + Labor savings',
  `annual_revenue_increase` decimal(15,2) DEFAULT NULL COMMENT 'From capacity/quality gains',
  `annual_net_benefit` decimal(15,2) DEFAULT NULL COMMENT 'Savings + Revenue increase',
  `simple_payback_years` decimal(6,2) DEFAULT NULL,
  `roi_percent` decimal(8,2) DEFAULT NULL,
  `npv` decimal(15,2) DEFAULT NULL COMMENT 'Net present value',
  `irr_percent` decimal(8,2) DEFAULT NULL COMMENT 'Internal rate of return',
  `discount_rate` decimal(5,2) DEFAULT 10.00,
  `analysis_period_years` int(11) DEFAULT 10,
  `risk_level` enum('low','medium','high') DEFAULT 'medium',
  `risk_notes` text DEFAULT NULL,
  `recommendation` enum('approved','rejected','pending','deferred') DEFAULT 'pending',
  `recommended_by` int(10) unsigned DEFAULT NULL,
  `recommended_date` date DEFAULT NULL,
  `approved_by` int(10) unsigned DEFAULT NULL,
  `approved_date` date DEFAULT NULL,
  `implementation_date` date DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `proposed_equipment_research_id` (`proposed_equipment_research_id`),
  KEY `recommended_by` (`recommended_by`),
  KEY `approved_by` (`approved_by`),
  KEY `created_by` (`created_by`),
  KEY `idx_current_equipment` (`current_equipment_id`),
  KEY `idx_recommendation` (`recommendation`),
  KEY `idx_payback` (`simple_payback_years`),
  CONSTRAINT `equipment_replacement_analysis_ibfk_1` FOREIGN KEY (`current_equipment_id`) REFERENCES `equipment` (`id`) ON DELETE SET NULL,
  CONSTRAINT `equipment_replacement_analysis_ibfk_2` FOREIGN KEY (`proposed_equipment_research_id`) REFERENCES `equipment_market_research` (`id`) ON DELETE SET NULL,
  CONSTRAINT `equipment_replacement_analysis_ibfk_3` FOREIGN KEY (`recommended_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `equipment_replacement_analysis_ibfk_4` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `equipment_replacement_analysis_ibfk_5` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `equipment_replacement_analysis`
--

LOCK TABLES `equipment_replacement_analysis` WRITE;
/*!40000 ALTER TABLE `equipment_replacement_analysis` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `equipment_replacement_analysis` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `equipment_technology_trends`
--

DROP TABLE IF EXISTS `equipment_technology_trends`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `equipment_technology_trends` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `trend_category` varchar(100) NOT NULL COMMENT 'Automation, AI/ML, IoT, Efficiency, etc',
  `trend_title` varchar(255) NOT NULL,
  `trend_description` text DEFAULT NULL,
  `impact_level` enum('transformational','significant','moderate','minor') DEFAULT 'moderate',
  `adoption_stage` enum('emerging','early_adoption','mainstream','mature') DEFAULT 'emerging',
  `time_to_mainstream_years` decimal(4,1) DEFAULT NULL,
  `affected_equipment_types` text DEFAULT NULL COMMENT 'Which equipment this affects',
  `potential_benefits` text DEFAULT NULL,
  `implementation_challenges` text DEFAULT NULL,
  `estimated_cost_premium_percent` decimal(5,2) DEFAULT NULL COMMENT 'Cost vs traditional equipment',
  `source` varchar(255) DEFAULT NULL COMMENT 'Where trend identified',
  `source_date` date DEFAULT NULL,
  `confidence_level` enum('high','medium','low') DEFAULT 'medium',
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `created_by` (`created_by`),
  KEY `idx_category` (`trend_category`),
  KEY `idx_impact` (`impact_level`),
  KEY `idx_adoption` (`adoption_stage`),
  CONSTRAINT `equipment_technology_trends_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `equipment_technology_trends`
--

LOCK TABLES `equipment_technology_trends` WRITE;
/*!40000 ALTER TABLE `equipment_technology_trends` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `equipment_technology_trends` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `equipment_utilization`
--

DROP TABLE IF EXISTS `equipment_utilization`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `equipment_utilization` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `equipment_id` int(10) unsigned NOT NULL,
  `date` date NOT NULL,
  `shift` varchar(20) DEFAULT NULL COMMENT 'e.g., Day, Night, Shift 1, Shift 2',
  `hours_available` decimal(5,2) DEFAULT 0.00 COMMENT 'Total hours in shift',
  `hours_operating` decimal(5,2) DEFAULT 0.00 COMMENT 'Hours actually running',
  `hours_idle` decimal(5,2) DEFAULT 0.00 COMMENT 'Hours idle/waiting',
  `hours_maintenance` decimal(5,2) DEFAULT 0.00 COMMENT 'Hours in maintenance',
  `hours_down` decimal(5,2) DEFAULT 0.00 COMMENT 'Hours broken down',
  `units_produced` int(11) DEFAULT 0 COMMENT 'Units produced during this period',
  `utilization_rate` decimal(5,2) GENERATED ALWAYS AS (case when `hours_available` > 0 then `hours_operating` / `hours_available` * 100 else 0 end) STORED COMMENT 'Calculated utilization percentage',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `equipment_date_shift` (`equipment_id`,`date`,`shift`),
  KEY `equipment_id` (`equipment_id`),
  KEY `date` (`date`),
  CONSTRAINT `equipment_utilization_ibfk_1` FOREIGN KEY (`equipment_id`) REFERENCES `equipment` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Tracks equipment utilization over time';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `equipment_utilization`
--

LOCK TABLES `equipment_utilization` WRITE;
/*!40000 ALTER TABLE `equipment_utilization` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `equipment_utilization` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `equipment_vendors`
--

DROP TABLE IF EXISTS `equipment_vendors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `equipment_vendors` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `vendor_name` varchar(255) NOT NULL,
  `country` varchar(100) DEFAULT NULL,
  `website` varchar(255) DEFAULT NULL,
  `contact_name` varchar(255) DEFAULT NULL,
  `contact_email` varchar(255) DEFAULT NULL,
  `contact_phone` varchar(50) DEFAULT NULL,
  `specialization` varchar(255) DEFAULT NULL,
  `reliability_rating` decimal(3,2) DEFAULT NULL COMMENT 'Rating 1-5',
  `support_quality_rating` decimal(3,2) DEFAULT NULL COMMENT 'Rating 1-5',
  `price_competitiveness_rating` decimal(3,2) DEFAULT NULL COMMENT 'Rating 1-5',
  `notes` text DEFAULT NULL,
  `is_active` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_vendor_name` (`vendor_name`),
  KEY `idx_active` (`is_active`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `equipment_vendors`
--

LOCK TABLES `equipment_vendors` WRITE;
/*!40000 ALTER TABLE `equipment_vendors` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `equipment_vendors` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `exchange_rates`
--

DROP TABLE IF EXISTS `exchange_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `exchange_rates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `from_currency_id` int(10) unsigned NOT NULL,
  `to_currency_id` int(10) unsigned NOT NULL,
  `rate` decimal(20,6) NOT NULL,
  `effective_date` date NOT NULL,
  `source` varchar(50) DEFAULT 'manual' COMMENT 'manual, api, import',
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_rate` (`from_currency_id`,`to_currency_id`,`effective_date`),
  KEY `to_currency_id` (`to_currency_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_currencies` (`from_currency_id`,`to_currency_id`),
  KEY `idx_effective_date` (`effective_date`),
  CONSTRAINT `exchange_rates_ibfk_1` FOREIGN KEY (`from_currency_id`) REFERENCES `currencies` (`id`) ON DELETE CASCADE,
  CONSTRAINT `exchange_rates_ibfk_2` FOREIGN KEY (`to_currency_id`) REFERENCES `currencies` (`id`) ON DELETE CASCADE,
  CONSTRAINT `exchange_rates_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exchange_rates`
--

LOCK TABLES `exchange_rates` WRITE;
/*!40000 ALTER TABLE `exchange_rates` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `exchange_rates` VALUES
(1,1,2,0.863000,'2025-11-12','api','Imported from exchangerate-api.com',1,'2025-11-12 17:29:39','2025-11-12 17:48:00'),
(2,1,3,0.760000,'2025-11-12','api','Imported from exchangerate-api.com',1,'2025-11-12 17:29:39','2025-11-12 17:48:00'),
(3,1,4,154.110000,'2025-11-12','api','Imported from exchangerate-api.com',1,'2025-11-12 17:29:39','2025-11-12 17:48:00'),
(4,1,5,1.400000,'2025-11-12','api','Imported from exchangerate-api.com',1,'2025-11-12 17:29:39','2025-11-12 17:48:00'),
(5,2,1,1.158749,'2025-11-12','api','Auto-calculated inverse rate',1,'2025-11-12 17:29:39','2025-11-12 17:48:00'),
(6,3,1,1.315789,'2025-11-12','api','Auto-calculated inverse rate',1,'2025-11-12 17:29:39','2025-11-12 17:48:00'),
(7,4,1,0.006489,'2025-11-12','api','Auto-calculated inverse rate',1,'2025-11-12 17:29:39','2025-11-12 17:48:00'),
(8,5,1,0.714286,'2025-11-12','api','Auto-calculated inverse rate',1,'2025-11-12 17:29:39','2025-11-12 17:48:00'),
(9,1,6,1.530000,'2025-11-12','api','Imported from exchangerate-api.com',1,'2025-11-12 17:48:00','2025-11-12 17:48:00'),
(10,6,1,0.653595,'2025-11-12','api','Auto-calculated inverse rate',1,'2025-11-12 17:48:00','2025-11-12 17:48:00'),
(11,1,7,0.801000,'2025-11-12','api','Imported from exchangerate-api.com',1,'2025-11-12 17:48:00','2025-11-12 17:48:00'),
(12,7,1,1.248439,'2025-11-12','api','Auto-calculated inverse rate',1,'2025-11-12 17:48:00','2025-11-12 17:48:00'),
(13,1,8,7.120000,'2025-11-12','api','Imported from exchangerate-api.com',1,'2025-11-12 17:48:00','2025-11-12 17:48:00'),
(14,8,1,0.140449,'2025-11-12','api','Auto-calculated inverse rate',1,'2025-11-12 17:48:00','2025-11-12 17:48:00'),
(15,1,9,88.560000,'2025-11-12','api','Imported from exchangerate-api.com',1,'2025-11-12 17:48:00','2025-11-12 17:48:00'),
(16,9,1,0.011292,'2025-11-12','api','Auto-calculated inverse rate',1,'2025-11-12 17:48:00','2025-11-12 17:48:00'),
(17,1,10,18.340000,'2025-11-12','api','Imported from exchangerate-api.com',1,'2025-11-12 17:48:00','2025-11-12 17:48:00'),
(18,10,1,0.054526,'2025-11-12','api','Auto-calculated inverse rate',1,'2025-11-12 17:48:00','2025-11-12 17:48:00');
/*!40000 ALTER TABLE `exchange_rates` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `expense_categories`
--

DROP TABLE IF EXISTS `expense_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `expense_categories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `category_name` varchar(100) NOT NULL,
  `parent_id` int(10) unsigned DEFAULT NULL COMMENT 'For subcategories',
  `gl_account_id` int(10) unsigned DEFAULT NULL COMMENT 'Default GL account for this category',
  `description` text DEFAULT NULL,
  `is_active` tinyint(1) DEFAULT 1,
  `requires_receipt` tinyint(1) DEFAULT 1,
  `requires_approval` tinyint(1) DEFAULT 1,
  `approval_limit` decimal(15,2) DEFAULT NULL COMMENT 'Auto-approve under this amount',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `category_name` (`category_name`),
  KEY `parent_id` (`parent_id`),
  KEY `gl_account_id` (`gl_account_id`),
  CONSTRAINT `expense_categories_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `expense_categories` (`id`) ON DELETE SET NULL,
  CONSTRAINT `expense_categories_ibfk_2` FOREIGN KEY (`gl_account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `expense_categories`
--

LOCK TABLES `expense_categories` WRITE;
/*!40000 ALTER TABLE `expense_categories` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `expense_categories` VALUES
(1,'Travel',NULL,NULL,'Business travel expenses including airfare, hotels, meals',1,1,1,NULL,'2025-10-30 18:48:02','2025-11-11 00:36:45'),
(2,'Office Supplies',NULL,NULL,'Office supplies and equipment under $500',1,1,0,NULL,'2025-10-30 18:48:02','2025-11-11 00:36:45'),
(3,'Utilities',NULL,NULL,'Electric, water, gas, internet, phone',1,1,0,NULL,'2025-10-30 18:48:02','2025-11-11 00:36:45'),
(4,'Marketing',NULL,NULL,'Advertising, promotions, events',1,1,1,NULL,'2025-10-30 18:48:02','2025-11-11 00:36:45'),
(5,'Professional Services',NULL,NULL,'Legal, accounting, consulting fees',1,1,1,NULL,'2025-10-30 18:48:02','2025-11-11 00:36:45'),
(6,'Rent',NULL,NULL,'Office rent and related costs',1,1,1,NULL,'2025-10-30 18:48:02','2025-11-11 00:36:45'),
(7,'Insurance',NULL,NULL,'Business insurance premiums',1,1,1,NULL,'2025-10-30 18:48:02','2025-11-11 00:36:45'),
(8,'Maintenance',NULL,NULL,'Repairs and maintenance',1,1,0,NULL,'2025-10-30 18:48:02','2025-11-11 00:36:45'),
(9,'Software & Subscriptions',NULL,NULL,'Software licenses and subscriptions',1,1,0,NULL,'2025-10-30 18:48:02','2025-11-11 00:36:45'),
(10,'Meals & Entertainment',NULL,NULL,'Business meals and client entertainment',1,1,1,NULL,'2025-10-30 18:48:02','2025-11-11 00:36:45');
/*!40000 ALTER TABLE `expense_categories` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `expenses`
--

DROP TABLE IF EXISTS `expenses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `expenses` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `expense_number` varchar(50) NOT NULL,
  `expense_date` date NOT NULL,
  `category` varchar(100) NOT NULL COMMENT 'e.g., Travel, Supplies, Utilities',
  `subcategory` varchar(100) DEFAULT NULL,
  `vendor` varchar(255) DEFAULT NULL,
  `amount` decimal(15,2) NOT NULL,
  `currency` varchar(3) DEFAULT 'USD',
  `tax_amount` decimal(15,2) DEFAULT 0.00,
  `total_amount` decimal(15,2) NOT NULL,
  `description` text DEFAULT NULL,
  `payment_method` enum('cash','credit_card','bank_transfer','check','other') DEFAULT 'credit_card',
  `reference_number` varchar(100) DEFAULT NULL,
  `receipt_file` varchar(255) DEFAULT NULL,
  `gl_account_id` int(10) unsigned DEFAULT NULL COMMENT 'Link to chart of accounts',
  `bank_account_id` int(10) unsigned DEFAULT NULL COMMENT 'Link to bank account if paid',
  `project_id` int(10) unsigned DEFAULT NULL COMMENT 'Optional project association',
  `department` varchar(100) DEFAULT NULL,
  `employee_id` int(10) unsigned DEFAULT NULL COMMENT 'Who incurred the expense',
  `status` enum('draft','pending_approval','approved','rejected','paid') DEFAULT 'draft',
  `approved_by` int(10) unsigned DEFAULT NULL,
  `approved_at` timestamp NULL DEFAULT NULL,
  `rejection_reason` text DEFAULT NULL,
  `is_reimbursable` tinyint(1) DEFAULT 0,
  `is_reimbursed` tinyint(1) DEFAULT 0,
  `reimbursement_date` date DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `expense_number` (`expense_number`),
  KEY `expense_date` (`expense_date`),
  KEY `category` (`category`),
  KEY `status` (`status`),
  KEY `gl_account_id` (`gl_account_id`),
  KEY `bank_account_id` (`bank_account_id`),
  KEY `employee_id` (`employee_id`),
  KEY `approved_by` (`approved_by`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `expenses_ibfk_1` FOREIGN KEY (`gl_account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `expenses_ibfk_2` FOREIGN KEY (`employee_id`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `expenses_ibfk_3` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `expenses_ibfk_4` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `expenses`
--

LOCK TABLES `expenses` WRITE;
/*!40000 ALTER TABLE `expenses` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `expenses` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `file_comments`
--

DROP TABLE IF EXISTS `file_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `file_comments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `file_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `comment` text NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_file_id` (`file_id`),
  KEY `idx_user_id` (`user_id`),
  KEY `idx_created_at` (`created_at`),
  CONSTRAINT `file_comments_ibfk_1` FOREIGN KEY (`file_id`) REFERENCES `files` (`id`) ON DELETE CASCADE,
  CONSTRAINT `file_comments_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `file_comments`
--

LOCK TABLES `file_comments` WRITE;
/*!40000 ALTER TABLE `file_comments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `file_comments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `file_folders`
--

DROP TABLE IF EXISTS `file_folders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `file_folders` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `parent_id` int(10) unsigned DEFAULT NULL,
  `entity_type` enum('system','crm','user','customer','vendor','project','accounting','hr','inventory','manufacturing','purchases','sales','activity') DEFAULT 'system',
  `entity_id` int(10) unsigned DEFAULT NULL COMMENT 'ID of related entity (customer_id, user_id, etc)',
  `access_level` enum('public','private','restricted') DEFAULT 'public',
  `owner_id` int(10) unsigned DEFAULT NULL,
  `required_permission` varchar(50) DEFAULT NULL,
  `path` varchar(1000) NOT NULL COMMENT 'Full folder path for hierarchy',
  `created_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_parent` (`parent_id`),
  KEY `idx_entity` (`entity_type`,`entity_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_folder_permission` (`required_permission`),
  KEY `idx_folder_owner` (`owner_id`),
  CONSTRAINT `file_folders_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `file_folders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `file_folders_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`),
  CONSTRAINT `fk_folder_owner` FOREIGN KEY (`owner_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `file_folders`
--

LOCK TABLES `file_folders` WRITE;
/*!40000 ALTER TABLE `file_folders` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `file_folders` VALUES
(1,'Customer Files',NULL,'customer',NULL,'restricted',NULL,'customers.view','/CRM Documents',1,'2025-11-21 04:11:25','2025-11-21 16:38:24'),
(2,'User Files',NULL,'user',NULL,'public',NULL,NULL,'/User Files',1,'2025-11-21 04:11:25','2025-11-21 04:11:25'),
(4,'Vendor Files',NULL,'vendor',NULL,'restricted',NULL,'vendors.view','/Vendor Files',1,'2025-11-21 04:11:25','2025-11-21 14:34:45'),
(5,'Project Files',NULL,'project',NULL,'restricted',NULL,'projects.view','/Project Files',1,'2025-11-21 04:11:25','2025-11-21 14:34:45'),
(6,'Accounting Files',NULL,'accounting',NULL,'restricted',NULL,'accounting.view','/Accounting Documents',1,'2025-11-21 04:11:25','2025-11-21 16:08:49'),
(7,'System Files',NULL,'system',NULL,'public',NULL,NULL,'/System Files',1,'2025-11-21 04:11:25','2025-11-21 04:11:25'),
(14,'HR Files',NULL,'hr',NULL,'restricted',NULL,'hr.view','/HR Files',1,'2025-11-21 17:03:31','2025-11-21 17:03:31'),
(15,'Inventory Files',NULL,'inventory',NULL,'restricted',NULL,'inventory.view','/Inventory Files',1,'2025-11-21 17:03:31','2025-11-21 17:03:31'),
(16,'Manufacturing Files',NULL,'manufacturing',NULL,'restricted',NULL,'manufacturing.view','/Manufacturing Files',1,'2025-11-21 17:03:31','2025-11-21 17:03:31'),
(17,'Purchases Files',NULL,'purchases',NULL,'restricted',NULL,'purchases.view','/Purchases Files',1,'2025-11-21 17:03:31','2025-11-21 17:03:31'),
(18,'Sales Files',NULL,'sales',NULL,'restricted',NULL,'sales.view','/Sales Files',1,'2025-11-21 17:03:31','2025-11-21 17:03:31'),
(21,'CRM Files',NULL,'activity',NULL,'restricted',NULL,'crm.view','/CRM Files',1,'2025-12-02 02:47:48','2025-12-02 02:47:48'),
(23,'Battery Safety',2,'user',NULL,'private',1,NULL,'/User Files/Battery Safety',1,'2025-12-04 16:02:49','2025-12-04 16:31:01'),
(24,'Applications',14,'hr',NULL,'public',NULL,NULL,'/HR Files/Applications',1,'2025-12-07 12:38:59','2025-12-07 12:38:59'),
(25,'NewHireForms',14,'hr',NULL,'public',NULL,NULL,'/HR Files/NewHireForms',1,'2025-12-07 12:39:13','2025-12-07 12:39:13'),
(26,'OfferDocs',14,'hr',NULL,'public',NULL,NULL,'/HR Files/OfferDocs',1,'2025-12-07 12:39:29','2025-12-07 12:39:29');
/*!40000 ALTER TABLE `file_folders` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `file_shares`
--

DROP TABLE IF EXISTS `file_shares`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `file_shares` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `file_id` int(10) unsigned DEFAULT NULL,
  `folder_id` int(10) unsigned DEFAULT NULL,
  `shared_with_user_id` int(10) unsigned DEFAULT NULL,
  `shared_with_role_id` int(10) unsigned DEFAULT NULL,
  `permission` enum('view','download','edit','delete') DEFAULT 'view',
  `shared_by` int(10) unsigned NOT NULL,
  `expires_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_file` (`file_id`),
  KEY `idx_user` (`shared_with_user_id`),
  KEY `idx_role` (`shared_with_role_id`),
  KEY `shared_by` (`shared_by`),
  KEY `idx_share_folder` (`folder_id`),
  CONSTRAINT `file_shares_ibfk_1` FOREIGN KEY (`file_id`) REFERENCES `files` (`id`) ON DELETE CASCADE,
  CONSTRAINT `file_shares_ibfk_2` FOREIGN KEY (`shared_with_user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `file_shares_ibfk_3` FOREIGN KEY (`shared_with_role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE,
  CONSTRAINT `file_shares_ibfk_4` FOREIGN KEY (`shared_by`) REFERENCES `users` (`id`),
  CONSTRAINT `fk_share_folder` FOREIGN KEY (`folder_id`) REFERENCES `file_folders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `chk_share_target` CHECK (`file_id` is not null and `folder_id` is null or `file_id` is null and `folder_id` is not null)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `file_shares`
--

LOCK TABLES `file_shares` WRITE;
/*!40000 ALTER TABLE `file_shares` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `file_shares` VALUES
(1,8,NULL,4,NULL,'download',1,NULL,'2025-11-27 18:34:31'),
(4,8,NULL,4,NULL,'download',1,NULL,'2025-11-27 19:32:39'),
(5,8,NULL,4,NULL,'download',1,NULL,'2025-11-27 19:58:09'),
(6,8,NULL,4,NULL,'download',1,NULL,'2025-11-27 20:22:35');
/*!40000 ALTER TABLE `file_shares` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `file_tag_associations`
--

DROP TABLE IF EXISTS `file_tag_associations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `file_tag_associations` (
  `file_id` int(10) unsigned NOT NULL,
  `tag_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`file_id`,`tag_id`),
  KEY `idx_file_id` (`file_id`),
  KEY `idx_tag_id` (`tag_id`),
  CONSTRAINT `file_tag_associations_ibfk_1` FOREIGN KEY (`file_id`) REFERENCES `files` (`id`) ON DELETE CASCADE,
  CONSTRAINT `file_tag_associations_ibfk_2` FOREIGN KEY (`tag_id`) REFERENCES `file_tags` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `file_tag_associations`
--

LOCK TABLES `file_tag_associations` WRITE;
/*!40000 ALTER TABLE `file_tag_associations` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `file_tag_associations` VALUES
(8,1,'2025-12-01 17:13:15');
/*!40000 ALTER TABLE `file_tag_associations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `file_tags`
--

DROP TABLE IF EXISTS `file_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `file_tags` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `tag_name` varchar(50) NOT NULL,
  `usage_count` int(11) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `tag_name` (`tag_name`),
  KEY `idx_tag_name` (`tag_name`),
  KEY `idx_usage_count` (`usage_count`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `file_tags`
--

LOCK TABLES `file_tags` WRITE;
/*!40000 ALTER TABLE `file_tags` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `file_tags` VALUES
(1,'Tiger1',1,'2025-12-01 17:13:15');
/*!40000 ALTER TABLE `file_tags` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `file_versions`
--

DROP TABLE IF EXISTS `file_versions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `file_versions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `file_id` int(10) unsigned NOT NULL,
  `version_number` int(10) unsigned NOT NULL,
  `file_name` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_size` bigint(20) unsigned NOT NULL,
  `mime_type` varchar(100) DEFAULT NULL,
  `uploaded_by` int(10) unsigned DEFAULT NULL,
  `upload_date` datetime DEFAULT current_timestamp(),
  `version_notes` text DEFAULT NULL,
  `is_current` tinyint(1) DEFAULT 0,
  `checksum` varchar(64) DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_file_version` (`file_id`,`version_number`),
  KEY `idx_file_id` (`file_id`),
  KEY `idx_is_current` (`is_current`),
  KEY `idx_uploaded_by` (`uploaded_by`),
  CONSTRAINT `file_versions_ibfk_1` FOREIGN KEY (`file_id`) REFERENCES `files` (`id`) ON DELETE CASCADE,
  CONSTRAINT `file_versions_ibfk_2` FOREIGN KEY (`uploaded_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `file_versions`
--

LOCK TABLES `file_versions` WRITE;
/*!40000 ALTER TABLE `file_versions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `file_versions` VALUES
(1,8,1,'IMG_5218.JPG','uploads/files/1764259569_692876f1b2baf.jpg',239098,'image/jpeg',1,'2025-11-27 11:06:09',NULL,1,'e935e4a6a71a7002c84874276eeca64f','2025-11-27 11:06:09');
/*!40000 ALTER TABLE `file_versions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `files`
--

DROP TABLE IF EXISTS `files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `files` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `folder_id` int(10) unsigned DEFAULT NULL,
  `file_name` varchar(255) NOT NULL,
  `file_path` varchar(1000) NOT NULL,
  `file_size` bigint(20) unsigned NOT NULL,
  `mime_type` varchar(100) NOT NULL,
  `current_version` int(10) unsigned DEFAULT 1,
  `version_count` int(10) unsigned DEFAULT 1,
  `enable_versioning` tinyint(1) DEFAULT 1,
  `file_extension` varchar(20) NOT NULL,
  `entity_type` enum('system','crm','user','customer','vendor','project','accounting','hr','inventory','manufacturing','purchases','sales','activity') DEFAULT NULL,
  `entity_id` int(10) unsigned DEFAULT NULL COMMENT 'ID of related entity',
  `description` text DEFAULT NULL,
  `tags` varchar(500) DEFAULT NULL COMMENT 'Comma-separated tags',
  `is_confidential` tinyint(1) DEFAULT 0,
  `uploaded_by` int(10) unsigned NOT NULL,
  `version` int(10) unsigned DEFAULT 1,
  `checksum` varchar(64) DEFAULT NULL COMMENT 'SHA256 hash for duplicate detection',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_folder` (`folder_id`),
  KEY `idx_entity` (`entity_type`,`entity_id`),
  KEY `idx_name` (`file_name`),
  KEY `idx_extension` (`file_extension`),
  KEY `idx_checksum` (`checksum`),
  KEY `uploaded_by` (`uploaded_by`),
  KEY `idx_enable_versioning` (`enable_versioning`),
  FULLTEXT KEY `idx_search` (`file_name`,`description`,`tags`),
  CONSTRAINT `files_ibfk_1` FOREIGN KEY (`folder_id`) REFERENCES `file_folders` (`id`) ON DELETE SET NULL,
  CONSTRAINT `files_ibfk_2` FOREIGN KEY (`uploaded_by`) REFERENCES `users` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `files`
--

LOCK TABLES `files` WRITE;
/*!40000 ALTER TABLE `files` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `files` VALUES
(8,2,'IMG_5218.JPG','uploads/files/1764259569_692876f1b2baf.jpg',239098,'image/jpeg',1,1,1,'jpg',NULL,NULL,'Tiger with Pew Pew','Tiger1',0,1,1,'d8ae286cb4dd02490f5cbd5b60c8b4522c7613fdb917757a3af2bb9486074760','2025-11-27 16:06:09','2025-12-01 14:37:03'),
(20,23,'Lithium_Battery_Safety_Guidance.pdf','uploads/files/1764864687_6931b2af67d68.pdf',1176673,'application/pdf',1,1,1,'pdf','system',NULL,'Battery Lithium Safety docs','Battery, Lithium, Safety',0,4,1,'5f9d367d8b03d7ab5573cae5ccdb5afc1d255f73ee0c8a384d00b4f0f5e1248b','2025-12-04 16:11:27','2025-12-04 16:11:27'),
(21,23,'OSHA4480.pdf','uploads/files/1764864687_6931b2af6c518.pdf',293248,'application/pdf',1,1,1,'pdf','system',NULL,'Battery Lithium Safety docs','Battery, Lithium, Safety',0,4,1,'645ef82044869a98133b114fcdf93fa323f92b69443b0c4e1eb61536d43b0f0f','2025-12-04 16:11:27','2025-12-04 16:11:27'),
(22,24,'Mavrix1 Management, LLC - Employment Application.docx','uploads/files/1765111200_693575a0855aa.docx',67287,'application/vnd.openxmlformats-officedocument.wordprocessingml.document',1,1,1,'docx','hr',NULL,'','',0,1,1,'10ed1c651054439fb73d072752d1daab9e3c70e7dcbd61abdd73590a79d03ed5','2025-12-07 12:40:00','2025-12-07 12:40:00'),
(23,25,'2005 I-9 Employment Eligibility Verification.pdf','uploads/files/1765111213_693575add1717.pdf',493147,'application/pdf',1,1,1,'pdf','hr',NULL,'','',0,1,1,'56c781a9976464a7cd1bf68b3c0f25d5b14824af06b3f3dadea8d8998ebc512f','2025-12-07 12:40:13','2025-12-07 12:40:13'),
(24,25,'2025 Commonwealth of Virginia Department of Taxation Personal Exemption Worksheet.pdf','uploads/files/1765111213_693575add455a.pdf',1235527,'application/pdf',1,1,1,'pdf','hr',NULL,'','',0,1,1,'0c158d5549b7e78eb2cb93bcc76d30b369a7c4395d8cf79a55c081689d2eb328','2025-12-07 12:40:13','2025-12-07 12:40:13'),
(25,25,'2025 Employee\'s Michigan Withholding Exemption Certificate.pdf','uploads/files/1765111213_693575add8810.pdf',198753,'application/pdf',1,1,1,'pdf','hr',NULL,'','',0,1,1,'80d1bf5c8a044b35df787664f391f07a32a78baf485b6661eb8985800d071909','2025-12-07 12:40:13','2025-12-07 12:40:13'),
(26,25,'2025 New York State Employee’s Withholding Allowance Certificate.pdf','uploads/files/1765111213_693575add9852.pdf',505884,'application/pdf',1,1,1,'pdf','hr',NULL,'','',0,1,1,'a187de82fcfece247134f569139495263629289b0dab507bfae749d5d88c3a21','2025-12-07 12:40:13','2025-12-07 12:40:13'),
(27,25,'2025 W-4 Employee\'s Withholding Certificate.pdf','uploads/files/1765111213_693575addb800.pdf',192528,'application/pdf',1,1,1,'pdf','hr',NULL,'','',0,1,1,'94fa236f26c1a6dbbdeb40b8bd8870793e7a5be0f74ead3c2799d2b0961be68a','2025-12-07 12:40:13','2025-12-07 12:40:13'),
(28,25,'I-9 List of Acceptable Documents.pdf','uploads/files/1765111213_693575addc730.pdf',259085,'application/pdf',1,1,1,'pdf','hr',NULL,'','',0,1,1,'6a218ed1614797a1a3349c5643114e27191021ce1396c74bfe764f4dc005a061','2025-12-07 12:40:13','2025-12-07 12:40:13'),
(29,25,'Mavrix1 - New Employee Information.docx','uploads/files/1765111213_693575addd977.docx',25799,'application/vnd.openxmlformats-officedocument.wordprocessingml.document',1,1,1,'docx','hr',NULL,'','',0,1,1,'f37a7f257cb59f5e3ba9adfe98bf931eb7e80540316790780bcf3b86b1e4009d','2025-12-07 12:40:13','2025-12-07 12:40:13'),
(30,25,'Mavrix1 - New Employee Information.pdf','uploads/files/1765111213_693575adde303.pdf',104848,'application/pdf',1,1,1,'pdf','hr',NULL,'','',0,1,1,'658f446446700f0dc03cc634bd3d5c8aad26959596aa421d2569faf3c677a10c','2025-12-07 12:40:13','2025-12-07 12:40:13'),
(31,26,'Confidentiality Intellectual Property Agreement - Employees.docx','uploads/files/1765111223_693575b754a52.docx',44119,'application/vnd.openxmlformats-officedocument.wordprocessingml.document',1,1,1,'docx','hr',NULL,'','',0,1,1,'18cfbf6acc86186ecaa960e9f775a38503d75aa12d087ce25c33e21764b3bbfe','2025-12-07 12:40:23','2025-12-07 12:40:23'),
(32,26,'Employee Handbook Policies included in Sign-Off.docx','uploads/files/1765111223_693575b755399.docx',18379,'application/vnd.openxmlformats-officedocument.wordprocessingml.document',1,1,1,'docx','hr',NULL,'','',0,1,1,'ae17975fcc48e79a8494e732969c17b6863d2909f3bcfd86d1b692b384e04fbb','2025-12-07 12:40:23','2025-12-07 12:40:23'),
(33,26,'Employee Handbook Policy Acknowledgement.docx','uploads/files/1765111223_693575b75593b.docx',40969,'application/vnd.openxmlformats-officedocument.wordprocessingml.document',1,1,1,'docx','hr',NULL,'','',0,1,1,'040db8754ccee87d5e229041f09ef133fcb6c870ff9d3f73dd0b603b960d5d6f','2025-12-07 12:40:23','2025-12-07 12:40:23'),
(34,26,'Employment Conditions Addendum.docx','uploads/files/1765111223_693575b7560a6.docx',47418,'application/vnd.openxmlformats-officedocument.wordprocessingml.document',1,1,1,'docx','hr',NULL,'','',0,1,1,'0b86eefcb2cdc4a0a12c28575d58e07e7538ec3f5088d86cf3c7c49aa264f268','2025-12-07 12:40:23','2025-12-07 12:40:23'),
(35,26,'Mavrix 1 NDA 07 26 2025.pdf','uploads/files/1765111223_693575b756bd0.pdf',193115,'application/pdf',1,1,1,'pdf','hr',NULL,'','',0,1,1,'364c0bedb66ed949c0400735d11c63dbdab08f57afdfd886f6668251786d8868','2025-12-07 12:40:23','2025-12-07 12:40:23'),
(36,26,'Non-Disclosure Agreement - Contractors.docx','uploads/files/1765111223_693575b757900.docx',54334,'application/vnd.openxmlformats-officedocument.wordprocessingml.document',1,1,1,'docx','hr',NULL,'','',0,1,1,'7e5bd674cfc8fb7b14657858d8c9ef6cab96263fa714c0b7d7c417ee591d70b0','2025-12-07 12:40:23','2025-12-07 12:40:23'),
(37,26,'Offer Letter - Hourly Employee.docx','uploads/files/1765111223_693575b75818d.docx',43890,'application/vnd.openxmlformats-officedocument.wordprocessingml.document',1,1,1,'docx','hr',NULL,'','',0,1,1,'29040ee32dffd2c05dd85c3f65c7a1375f53bd22615188995baf7234a8f44532','2025-12-07 12:40:23','2025-12-07 12:40:23'),
(38,26,'Offer Letter - Salaried Employee.docx','uploads/files/1765111223_693575b7588eb.docx',52164,'application/vnd.openxmlformats-officedocument.wordprocessingml.document',1,1,1,'docx','hr',NULL,'','',0,1,1,'ffe539e5fd81c600c20210d5513ebd76662484e6e9abe9d272b1e08ee2798cea','2025-12-07 12:40:23','2025-12-07 12:40:23');
/*!40000 ALTER TABLE `files` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `fiscal_year_settings`
--

DROP TABLE IF EXISTS `fiscal_year_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `fiscal_year_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `fiscal_year_start_month` int(11) DEFAULT 1 COMMENT 'Month fiscal year starts (1-12)',
  `fiscal_year_start_day` int(11) DEFAULT 1 COMMENT 'Day fiscal year starts (1-31)',
  `current_fiscal_year` int(11) DEFAULT NULL COMMENT 'Current fiscal year',
  `lock_previous_periods` tinyint(1) DEFAULT 1 COMMENT 'Prevent edits to closed periods',
  `auto_close_periods` tinyint(1) DEFAULT 0 COMMENT 'Automatically close periods',
  `period_close_day` int(11) DEFAULT 5 COMMENT 'Day of month to close previous period',
  `default_currency` varchar(3) DEFAULT 'USD' COMMENT 'ISO currency code',
  `currency_symbol` varchar(10) DEFAULT '$' COMMENT 'Currency symbol',
  `decimal_places` int(11) DEFAULT 2 COMMENT 'Decimal precision',
  `thousands_separator` varchar(1) DEFAULT ',' COMMENT 'Thousands separator',
  `decimal_separator` varchar(1) DEFAULT '.' COMMENT 'Decimal separator',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Fiscal year, accounting periods, and currency settings';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fiscal_year_settings`
--

LOCK TABLES `fiscal_year_settings` WRITE;
/*!40000 ALTER TABLE `fiscal_year_settings` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `fiscal_year_settings` VALUES
(1,1,1,2025,1,0,5,'USD','$',2,',','.','2025-11-01 12:32:09','2025-11-01 12:32:09');
/*!40000 ALTER TABLE `fiscal_year_settings` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `fixed_assets`
--

DROP TABLE IF EXISTS `fixed_assets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `fixed_assets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `asset_number` varchar(50) NOT NULL,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `category` enum('building','equipment','vehicle','furniture','computer','other') NOT NULL,
  `account_id` int(10) unsigned DEFAULT NULL COMMENT 'Chart of Accounts ID',
  `purchase_date` date NOT NULL,
  `purchase_cost` decimal(15,2) NOT NULL,
  `salvage_value` decimal(15,2) DEFAULT 0.00,
  `useful_life_years` int(11) NOT NULL,
  `depreciation_method` enum('straight_line','declining_balance','units_of_production') DEFAULT 'straight_line',
  `location` varchar(255) DEFAULT NULL,
  `serial_number` varchar(100) DEFAULT NULL,
  `supplier_id` int(10) unsigned DEFAULT NULL,
  `warranty_expiry` date DEFAULT NULL,
  `status` enum('active','disposed','sold','retired') DEFAULT 'active',
  `disposal_date` date DEFAULT NULL,
  `disposal_value` decimal(15,2) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `asset_number` (`asset_number`),
  KEY `idx_asset_number` (`asset_number`),
  KEY `idx_category` (`category`),
  KEY `idx_status` (`status`),
  KEY `idx_purchase_date` (`purchase_date`),
  KEY `supplier_id` (`supplier_id`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `fixed_assets_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fixed_assets_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fixed_assets`
--

LOCK TABLES `fixed_assets` WRITE;
/*!40000 ALTER TABLE `fixed_assets` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `fixed_assets` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecast_actuals`
--

DROP TABLE IF EXISTS `forecast_actuals`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecast_actuals` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `variable_template_id` int(11) NOT NULL,
  `period_date` date NOT NULL COMMENT 'Date or period this actual applies to',
  `value` decimal(15,4) NOT NULL,
  `source_table` varchar(100) DEFAULT NULL COMMENT 'Source ERP table',
  `source_id` int(11) DEFAULT NULL COMMENT 'Source record ID if applicable',
  `notes` text DEFAULT NULL,
  `synced_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `uk_variable_date` (`variable_template_id`,`period_date`),
  KEY `idx_variable` (`variable_template_id`),
  KEY `idx_date` (`period_date`),
  KEY `idx_source` (`source_table`,`source_id`),
  CONSTRAINT `forecast_actuals_ibfk_1` FOREIGN KEY (`variable_template_id`) REFERENCES `forecast_variable_templates` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecast_actuals`
--

LOCK TABLES `forecast_actuals` WRITE;
/*!40000 ALTER TABLE `forecast_actuals` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `forecast_actuals` VALUES
(1,1,'2025-11-19',0.0000,'sales_orders',NULL,NULL,'2025-11-19 17:04:32'),
(2,3,'2025-11-19',0.0000,'sales_orders',NULL,NULL,'2025-11-19 17:04:32'),
(3,5,'2025-11-19',0.0000,'journal_entries',NULL,NULL,'2025-11-19 17:04:32'),
(4,7,'2025-11-19',0.0000,'journal_entries',NULL,NULL,'2025-11-19 17:04:32'),
(5,9,'2025-11-19',0.0000,'journal_entries',NULL,NULL,'2025-11-19 17:04:32'),
(6,10,'2025-11-19',0.0000,'journal_entries',NULL,NULL,'2025-11-19 17:04:32'),
(7,11,'2025-11-19',0.0000,'journal_entries',NULL,NULL,'2025-11-19 17:04:32'),
(8,12,'2025-11-19',0.0000,'journal_entries',NULL,NULL,'2025-11-19 17:04:32'),
(9,17,'2025-11-19',45.0000,'invoices',NULL,NULL,'2025-11-19 17:04:32'),
(10,18,'2025-11-19',90.0000,'stock_movements',NULL,NULL,'2025-11-19 17:04:32'),
(11,13,'2025-11-19',5.0000,'employees',NULL,NULL,'2025-11-19 17:04:32'),
(12,14,'2025-11-19',0.0000,'employees',NULL,NULL,'2025-11-19 17:04:32'),
(49,1,'2025-11-20',0.0000,'sales_orders',NULL,NULL,'2025-11-20 12:10:36'),
(50,3,'2025-11-20',0.0000,'sales_orders',NULL,NULL,'2025-11-20 12:10:36'),
(51,5,'2025-11-20',0.0000,'journal_entries',NULL,NULL,'2025-11-20 12:10:36'),
(52,7,'2025-11-20',0.0000,'journal_entries',NULL,NULL,'2025-11-20 12:10:36'),
(53,9,'2025-11-20',0.0000,'journal_entries',NULL,NULL,'2025-11-20 12:10:36'),
(54,10,'2025-11-20',0.0000,'journal_entries',NULL,NULL,'2025-11-20 12:10:36'),
(55,11,'2025-11-20',0.0000,'journal_entries',NULL,NULL,'2025-11-20 12:10:36'),
(56,12,'2025-11-20',0.0000,'journal_entries',NULL,NULL,'2025-11-20 12:10:36'),
(57,17,'2025-11-20',45.0000,'invoices',NULL,NULL,'2025-11-20 12:10:36'),
(58,18,'2025-11-20',90.0000,'stock_movements',NULL,NULL,'2025-11-20 12:10:36'),
(59,13,'2025-11-20',5.0000,'employees',NULL,NULL,'2025-11-20 12:10:36'),
(60,14,'2025-11-20',0.0000,'employees',NULL,NULL,'2025-11-20 12:10:36');
/*!40000 ALTER TABLE `forecast_actuals` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecast_assumption_sets`
--

DROP TABLE IF EXISTS `forecast_assumption_sets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecast_assumption_sets` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `description` text DEFAULT NULL,
  `scenario_id` int(10) unsigned DEFAULT NULL COMMENT 'Link to forecaster_scenarios if applicable',
  `is_active` tinyint(1) DEFAULT 1,
  `is_baseline` tinyint(1) DEFAULT 0 COMMENT 'Is this the baseline/default set?',
  `effective_date` date NOT NULL COMMENT 'When these assumptions take effect',
  `created_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_scenario` (`scenario_id`),
  KEY `idx_active` (`is_active`),
  KEY `idx_baseline` (`is_baseline`),
  KEY `idx_effective_date` (`effective_date`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `forecast_assumption_sets_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`),
  CONSTRAINT `forecast_assumption_sets_ibfk_2` FOREIGN KEY (`scenario_id`) REFERENCES `forecaster_scenarios` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecast_assumption_sets`
--

LOCK TABLES `forecast_assumption_sets` WRITE;
/*!40000 ALTER TABLE `forecast_assumption_sets` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `forecast_assumption_sets` VALUES
(1,'Baseline Assumptions','Default baseline assumptions for forecasting',NULL,1,1,'2025-11-19',1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(2,'Aggressive Growth','This is the aggressive one...',NULL,1,0,'2025-11-19',1,'2025-11-19 17:12:18','2025-11-19 17:14:45');
/*!40000 ALTER TABLE `forecast_assumption_sets` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecast_assumption_values`
--

DROP TABLE IF EXISTS `forecast_assumption_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecast_assumption_values` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `assumption_set_id` int(11) NOT NULL,
  `variable_template_id` int(11) NOT NULL,
  `value` decimal(15,4) NOT NULL,
  `notes` text DEFAULT NULL,
  `source` enum('manual','erp_actual','calculated','imported') DEFAULT 'manual',
  `last_synced_at` timestamp NULL DEFAULT NULL COMMENT 'When last synced from ERP',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `uk_set_variable` (`assumption_set_id`,`variable_template_id`),
  KEY `idx_set` (`assumption_set_id`),
  KEY `idx_template` (`variable_template_id`),
  KEY `idx_source` (`source`),
  CONSTRAINT `forecast_assumption_values_ibfk_1` FOREIGN KEY (`assumption_set_id`) REFERENCES `forecast_assumption_sets` (`id`) ON DELETE CASCADE,
  CONSTRAINT `forecast_assumption_values_ibfk_2` FOREIGN KEY (`variable_template_id`) REFERENCES `forecast_variable_templates` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecast_assumption_values`
--

LOCK TABLES `forecast_assumption_values` WRITE;
/*!40000 ALTER TABLE `forecast_assumption_values` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `forecast_assumption_values` VALUES
(1,1,1,100000.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(2,1,2,5.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(3,1,3,5000.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(4,1,4,15.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(5,1,5,35.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(6,1,6,25.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(7,1,7,15.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(8,1,8,6.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(9,1,9,50000.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(10,1,10,10.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(11,1,11,10000.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(12,1,12,15000.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(13,1,13,50.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(14,1,14,5000.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(15,1,15,30.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(16,1,16,15.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(17,1,17,45.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(18,1,18,60.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(19,1,19,30.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(20,1,20,100000.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(21,1,21,2.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(22,1,22,5.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(23,1,23,250000.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(24,1,24,25.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(32,2,1,100000.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(33,2,2,5.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(34,2,3,5000.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(35,2,4,15.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(36,2,5,35.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(37,2,6,25.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(38,2,7,15.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(39,2,8,6.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(40,2,9,50000.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(41,2,10,10.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(42,2,11,10000.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(43,2,12,15000.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(44,2,13,50.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(45,2,14,5000.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(46,2,15,30.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(47,2,16,15.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(48,2,17,45.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(49,2,18,60.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(50,2,19,30.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(51,2,20,100000.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(52,2,21,2.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(53,2,22,5.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(54,2,23,250000.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(55,2,24,25.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18');
/*!40000 ALTER TABLE `forecast_assumption_values` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `forecast_equipment_capacity_view`
--

DROP TABLE IF EXISTS `forecast_equipment_capacity_view`;
/*!50001 DROP VIEW IF EXISTS `forecast_equipment_capacity_view`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `forecast_equipment_capacity_view` AS SELECT
 1 AS `config_id`,
  1 AS `assumption_set_id`,
  1 AS `product_id`,
  1 AS `product_name`,
  1 AS `sku`,
  1 AS `primary_equipment_id`,
  1 AS `equipment_name`,
  1 AS `asset_tag`,
  1 AS `equipment_line_name`,
  1 AS `production_rate_per_hour`,
  1 AS `production_hours_per_unit`,
  1 AS `machines_required`,
  1 AS `equipment_annual_demand`,
  1 AS `operating_days_per_year`,
  1 AS `operating_hours_per_day`,
  1 AS `efficiency_factor`,
  1 AS `scrap_rate_percent`,
  1 AS `current_utilization_pct`,
  1 AS `equipment_labor_cost_per_unit`,
  1 AS `equipment_energy_cost_per_unit`,
  1 AS `equipment_operating_cost_per_unit`,
  1 AS `total_equipment_cost_per_unit`,
  1 AS `capacity_constraint_flag`,
  1 AS `capital_investment_required`,
  1 AS `adjusted_production_rate`,
  1 AS `effective_hours_per_day`,
  1 AS `gross_margin_pct`,
  1 AS `revenue_growth_rate`,
  1 AS `volume_growth_pct`,
  1 AS `created_at`,
  1 AS `updated_at` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `forecast_update_log`
--

DROP TABLE IF EXISTS `forecast_update_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecast_update_log` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `assumption_set_id` int(11) DEFAULT NULL,
  `variable_template_id` int(11) DEFAULT NULL,
  `old_value` decimal(15,4) DEFAULT NULL,
  `new_value` decimal(15,4) DEFAULT NULL,
  `change_type` enum('assumption_update','actual_sync','bulk_import','calculation') NOT NULL,
  `changed_by` int(10) unsigned NOT NULL,
  `change_reason` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_set` (`assumption_set_id`),
  KEY `idx_variable` (`variable_template_id`),
  KEY `idx_date` (`created_at`),
  KEY `idx_user` (`changed_by`),
  CONSTRAINT `forecast_update_log_ibfk_1` FOREIGN KEY (`assumption_set_id`) REFERENCES `forecast_assumption_sets` (`id`) ON DELETE SET NULL,
  CONSTRAINT `forecast_update_log_ibfk_2` FOREIGN KEY (`variable_template_id`) REFERENCES `forecast_variable_templates` (`id`) ON DELETE SET NULL,
  CONSTRAINT `forecast_update_log_ibfk_3` FOREIGN KEY (`changed_by`) REFERENCES `users` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecast_update_log`
--

LOCK TABLES `forecast_update_log` WRITE;
/*!40000 ALTER TABLE `forecast_update_log` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `forecast_update_log` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecast_variable_templates`
--

DROP TABLE IF EXISTS `forecast_variable_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecast_variable_templates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `category` enum('revenue','cogs','opex','capex','working_capital','financing','tax','hr','other') NOT NULL,
  `name` varchar(100) NOT NULL,
  `label` varchar(150) NOT NULL,
  `description` text DEFAULT NULL,
  `data_type` enum('percentage','amount','growth_rate','quantity','days','rate') NOT NULL,
  `default_value` decimal(15,4) DEFAULT 0.0000,
  `min_value` decimal(15,4) DEFAULT NULL,
  `max_value` decimal(15,4) DEFAULT NULL,
  `unit` varchar(20) DEFAULT '' COMMENT 'e.g., %, $, days, qty',
  `erp_source` varchar(100) DEFAULT NULL COMMENT 'Where to pull actual data: gl_accounts, products, employees, etc',
  `erp_source_query` text DEFAULT NULL COMMENT 'SQL or reference to get actual value',
  `display_order` int(11) DEFAULT 0,
  `is_active` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `uk_name` (`name`),
  KEY `idx_category` (`category`),
  KEY `idx_active` (`is_active`),
  KEY `idx_order` (`display_order`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecast_variable_templates`
--

LOCK TABLES `forecast_variable_templates` WRITE;
/*!40000 ALTER TABLE `forecast_variable_templates` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `forecast_variable_templates` VALUES
(1,'revenue','monthly_revenue','Monthly Revenue Target','Expected monthly revenue','amount',100000.0000,NULL,NULL,'$','sales_orders',NULL,10,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(2,'revenue','revenue_growth_rate','Revenue Growth Rate','Month-over-month or year-over-year growth','percentage',5.0000,NULL,NULL,'%',NULL,NULL,20,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(3,'revenue','avg_deal_size','Average Deal Size','Average revenue per sale','amount',5000.0000,NULL,NULL,'$','sales_orders',NULL,30,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(4,'revenue','conversion_rate','Lead Conversion Rate','Percentage of leads that convert to sales','percentage',15.0000,NULL,NULL,'%','opportunities',NULL,40,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(5,'cogs','materials_pct','Materials as % of Revenue','Direct materials cost percentage','percentage',35.0000,NULL,NULL,'%','journal_entries',NULL,110,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(6,'cogs','labor_pct','Direct Labor as % of Revenue','Direct labor cost percentage','percentage',25.0000,NULL,NULL,'%','payroll',NULL,120,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(7,'cogs','overhead_pct','Manufacturing Overhead %','Overhead allocation percentage','percentage',15.0000,NULL,NULL,'%','journal_entries',NULL,130,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(8,'cogs','inventory_turnover','Inventory Turnover (times/year)','How many times inventory turns per year','rate',6.0000,NULL,NULL,'x','stock_movements',NULL,140,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(9,'opex','fixed_monthly_opex','Fixed Monthly OpEx','Fixed operating expenses per month','amount',50000.0000,NULL,NULL,'$','journal_entries',NULL,210,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(10,'opex','variable_opex_pct','Variable OpEx as % Revenue','Variable operating expenses','percentage',10.0000,NULL,NULL,'%','journal_entries',NULL,220,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(11,'opex','marketing_budget','Monthly Marketing Budget','Marketing and advertising spend','amount',10000.0000,NULL,NULL,'$','journal_entries',NULL,230,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(12,'opex','rd_budget','Monthly R&D Budget','Research and development spend','amount',15000.0000,NULL,NULL,'$','journal_entries',NULL,240,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(13,'hr','total_headcount','Total Headcount','Number of employees','quantity',50.0000,NULL,NULL,'people','employees',NULL,310,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(14,'hr','avg_salary','Average Monthly Salary','Average salary per employee','amount',5000.0000,NULL,NULL,'$','employees',NULL,320,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(15,'hr','benefits_pct','Benefits as % of Salary','Benefits and taxes percentage','percentage',30.0000,NULL,NULL,'%','payroll',NULL,330,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(16,'hr','turnover_rate','Annual Turnover Rate','Employee turnover percentage','percentage',15.0000,NULL,NULL,'%','employees',NULL,340,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(17,'working_capital','ar_days','Accounts Receivable Days','Days to collect receivables','days',45.0000,NULL,NULL,'days','invoices',NULL,410,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(18,'working_capital','inventory_days','Inventory Days on Hand','Days of inventory held','days',60.0000,NULL,NULL,'days','stock_movements',NULL,420,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(19,'working_capital','ap_days','Accounts Payable Days','Days to pay suppliers','days',30.0000,NULL,NULL,'days','purchase_orders',NULL,430,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(20,'capex','annual_capex','Annual Capital Expenditure','Planned annual CapEx','amount',100000.0000,NULL,NULL,'$','fixed_assets',NULL,510,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(21,'capex','maintenance_capex_pct','Maintenance CapEx %','Maintenance as % of revenue','percentage',2.0000,NULL,NULL,'%','fixed_assets',NULL,520,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(22,'financing','interest_rate','Average Interest Rate','Weighted average interest rate','percentage',5.0000,NULL,NULL,'%','forecaster_financing_instruments',NULL,610,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(23,'financing','debt_balance','Total Debt Balance','Outstanding debt','amount',250000.0000,NULL,NULL,'$','forecaster_financing_instruments',NULL,620,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(24,'tax','effective_tax_rate','Effective Tax Rate','Combined tax rate','percentage',25.0000,NULL,NULL,'%',NULL,NULL,710,1,'2025-11-19 16:40:14','2025-11-19 16:40:14');
/*!40000 ALTER TABLE `forecast_variable_templates` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecast_variance_tracking`
--

DROP TABLE IF EXISTS `forecast_variance_tracking`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecast_variance_tracking` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `assumption_set_id` int(11) NOT NULL,
  `variable_template_id` int(11) NOT NULL,
  `period_date` date NOT NULL,
  `forecast_value` decimal(15,4) NOT NULL,
  `actual_value` decimal(15,4) DEFAULT NULL,
  `variance_amount` decimal(15,4) DEFAULT NULL,
  `variance_percent` decimal(8,2) DEFAULT NULL,
  `status` enum('on_track','warning','critical','favorable') DEFAULT 'on_track',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `uk_set_var_date` (`assumption_set_id`,`variable_template_id`,`period_date`),
  KEY `idx_set` (`assumption_set_id`),
  KEY `idx_variable` (`variable_template_id`),
  KEY `idx_date` (`period_date`),
  KEY `idx_status` (`status`),
  CONSTRAINT `forecast_variance_tracking_ibfk_1` FOREIGN KEY (`assumption_set_id`) REFERENCES `forecast_assumption_sets` (`id`) ON DELETE CASCADE,
  CONSTRAINT `forecast_variance_tracking_ibfk_2` FOREIGN KEY (`variable_template_id`) REFERENCES `forecast_variable_templates` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1129 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecast_variance_tracking`
--

LOCK TABLES `forecast_variance_tracking` WRITE;
/*!40000 ALTER TABLE `forecast_variance_tracking` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `forecast_variance_tracking` VALUES
(1,1,1,'2025-11-19',100000.0000,0.0000,-100000.0000,-100.00,'critical',NULL,'2025-11-19 16:56:19','2025-11-19 16:56:19'),
(2,1,3,'2025-11-19',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-11-19 16:56:19','2025-11-19 16:56:19'),
(3,1,5,'2025-11-19',35.0000,0.0000,-35.0000,-100.00,'critical',NULL,'2025-11-19 16:56:19','2025-11-19 16:56:19'),
(4,1,7,'2025-11-19',15.0000,0.0000,-15.0000,-100.00,'critical',NULL,'2025-11-19 16:56:19','2025-11-19 16:56:19'),
(5,1,9,'2025-11-19',50000.0000,0.0000,-50000.0000,-100.00,'critical',NULL,'2025-11-19 16:56:19','2025-11-19 16:56:19'),
(6,1,10,'2025-11-19',10.0000,0.0000,-10.0000,-100.00,'critical',NULL,'2025-11-19 16:56:19','2025-11-19 16:56:19'),
(7,1,11,'2025-11-19',10000.0000,0.0000,-10000.0000,-100.00,'critical',NULL,'2025-11-19 16:56:19','2025-11-19 16:56:19'),
(8,1,12,'2025-11-19',15000.0000,0.0000,-15000.0000,-100.00,'critical',NULL,'2025-11-19 16:56:19','2025-11-19 16:56:19'),
(9,1,17,'2025-11-19',45.0000,45.0000,0.0000,0.00,'on_track',NULL,'2025-11-19 16:56:19','2025-11-19 16:56:19'),
(10,1,18,'2025-11-19',60.0000,90.0000,30.0000,50.00,'critical',NULL,'2025-11-19 16:56:19','2025-11-19 16:56:19'),
(11,1,13,'2025-11-19',50.0000,5.0000,-45.0000,-90.00,'critical',NULL,'2025-11-19 16:56:19','2025-11-19 16:56:19'),
(12,1,14,'2025-11-19',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-11-19 16:56:19','2025-11-19 16:56:19'),
(337,1,1,'2025-11-20',100000.0000,0.0000,-100000.0000,-100.00,'critical',NULL,'2025-11-20 12:08:20','2025-11-20 12:08:20'),
(338,1,3,'2025-11-20',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-11-20 12:08:20','2025-11-20 12:08:20'),
(339,1,5,'2025-11-20',35.0000,0.0000,-35.0000,-100.00,'critical',NULL,'2025-11-20 12:08:20','2025-11-20 12:08:20'),
(340,1,7,'2025-11-20',15.0000,0.0000,-15.0000,-100.00,'critical',NULL,'2025-11-20 12:08:20','2025-11-20 12:08:20'),
(341,1,9,'2025-11-20',50000.0000,0.0000,-50000.0000,-100.00,'critical',NULL,'2025-11-20 12:08:20','2025-11-20 12:08:20'),
(342,1,10,'2025-11-20',10.0000,0.0000,-10.0000,-100.00,'critical',NULL,'2025-11-20 12:08:20','2025-11-20 12:08:20'),
(343,1,11,'2025-11-20',10000.0000,0.0000,-10000.0000,-100.00,'critical',NULL,'2025-11-20 12:08:20','2025-11-20 12:08:20'),
(344,1,12,'2025-11-20',15000.0000,0.0000,-15000.0000,-100.00,'critical',NULL,'2025-11-20 12:08:20','2025-11-20 12:08:20'),
(345,1,17,'2025-11-20',45.0000,45.0000,0.0000,0.00,'on_track',NULL,'2025-11-20 12:08:20','2025-11-20 12:08:20'),
(346,1,18,'2025-11-20',60.0000,90.0000,30.0000,50.00,'critical',NULL,'2025-11-20 12:08:20','2025-11-20 12:08:20'),
(347,1,13,'2025-11-20',50.0000,5.0000,-45.0000,-90.00,'critical',NULL,'2025-11-20 12:08:20','2025-11-20 12:08:20'),
(348,1,14,'2025-11-20',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-11-20 12:08:20','2025-11-20 12:08:20'),
(853,1,1,'2025-11-21',100000.0000,0.0000,-100000.0000,-100.00,'critical',NULL,'2025-11-21 19:22:46','2025-11-21 19:22:46'),
(854,1,3,'2025-11-21',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-11-21 19:22:46','2025-11-21 19:22:46'),
(855,1,5,'2025-11-21',35.0000,0.0000,-35.0000,-100.00,'critical',NULL,'2025-11-21 19:22:46','2025-11-21 19:22:46'),
(856,1,7,'2025-11-21',15.0000,0.0000,-15.0000,-100.00,'critical',NULL,'2025-11-21 19:22:46','2025-11-21 19:22:46'),
(857,1,9,'2025-11-21',50000.0000,0.0000,-50000.0000,-100.00,'critical',NULL,'2025-11-21 19:22:46','2025-11-21 19:22:46'),
(858,1,10,'2025-11-21',10.0000,0.0000,-10.0000,-100.00,'critical',NULL,'2025-11-21 19:22:46','2025-11-21 19:22:46'),
(859,1,11,'2025-11-21',10000.0000,0.0000,-10000.0000,-100.00,'critical',NULL,'2025-11-21 19:22:46','2025-11-21 19:22:46'),
(860,1,12,'2025-11-21',15000.0000,0.0000,-15000.0000,-100.00,'critical',NULL,'2025-11-21 19:22:46','2025-11-21 19:22:46'),
(861,1,17,'2025-11-21',45.0000,45.0000,0.0000,0.00,'on_track',NULL,'2025-11-21 19:22:46','2025-11-21 19:22:46'),
(862,1,18,'2025-11-21',60.0000,90.0000,30.0000,50.00,'critical',NULL,'2025-11-21 19:22:46','2025-11-21 19:22:46'),
(863,1,13,'2025-11-21',50.0000,5.0000,-45.0000,-90.00,'critical',NULL,'2025-11-21 19:22:46','2025-11-21 19:22:46'),
(864,1,14,'2025-11-21',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-11-21 19:22:46','2025-11-21 19:22:46'),
(865,1,1,'2025-12-01',100000.0000,0.0000,-100000.0000,-100.00,'critical',NULL,'2025-12-02 03:08:25','2025-12-02 03:08:25'),
(866,1,3,'2025-12-01',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-12-02 03:08:25','2025-12-02 03:08:25'),
(867,1,5,'2025-12-01',35.0000,0.0000,-35.0000,-100.00,'critical',NULL,'2025-12-02 03:08:25','2025-12-02 03:08:25'),
(868,1,7,'2025-12-01',15.0000,0.0000,-15.0000,-100.00,'critical',NULL,'2025-12-02 03:08:25','2025-12-02 03:08:25'),
(869,1,9,'2025-12-01',50000.0000,0.0000,-50000.0000,-100.00,'critical',NULL,'2025-12-02 03:08:25','2025-12-02 03:08:25'),
(870,1,10,'2025-12-01',10.0000,0.0000,-10.0000,-100.00,'critical',NULL,'2025-12-02 03:08:25','2025-12-02 03:08:25'),
(871,1,11,'2025-12-01',10000.0000,0.0000,-10000.0000,-100.00,'critical',NULL,'2025-12-02 03:08:25','2025-12-02 03:08:25'),
(872,1,12,'2025-12-01',15000.0000,0.0000,-15000.0000,-100.00,'critical',NULL,'2025-12-02 03:08:25','2025-12-02 03:08:25'),
(873,1,17,'2025-12-01',45.0000,45.0000,0.0000,0.00,'on_track',NULL,'2025-12-02 03:08:25','2025-12-02 03:08:25'),
(874,1,18,'2025-12-01',60.0000,90.0000,30.0000,50.00,'critical',NULL,'2025-12-02 03:08:25','2025-12-02 03:08:25'),
(875,1,13,'2025-12-01',50.0000,5.0000,-45.0000,-90.00,'critical',NULL,'2025-12-02 03:08:25','2025-12-02 03:08:25'),
(876,1,14,'2025-12-01',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-12-02 03:08:25','2025-12-02 03:08:25'),
(877,1,1,'2025-12-02',100000.0000,0.0000,-100000.0000,-100.00,'critical',NULL,'2025-12-02 18:13:54','2025-12-02 18:13:54'),
(878,1,3,'2025-12-02',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-12-02 18:13:54','2025-12-02 18:13:54'),
(879,1,5,'2025-12-02',35.0000,0.0000,-35.0000,-100.00,'critical',NULL,'2025-12-02 18:13:54','2025-12-02 18:13:54'),
(880,1,7,'2025-12-02',15.0000,0.0000,-15.0000,-100.00,'critical',NULL,'2025-12-02 18:13:54','2025-12-02 18:13:54'),
(881,1,9,'2025-12-02',50000.0000,0.0000,-50000.0000,-100.00,'critical',NULL,'2025-12-02 18:13:54','2025-12-02 18:13:54'),
(882,1,10,'2025-12-02',10.0000,0.0000,-10.0000,-100.00,'critical',NULL,'2025-12-02 18:13:54','2025-12-02 18:13:54'),
(883,1,11,'2025-12-02',10000.0000,0.0000,-10000.0000,-100.00,'critical',NULL,'2025-12-02 18:13:54','2025-12-02 18:13:54'),
(884,1,12,'2025-12-02',15000.0000,0.0000,-15000.0000,-100.00,'critical',NULL,'2025-12-02 18:13:54','2025-12-02 18:13:54'),
(885,1,17,'2025-12-02',45.0000,45.0000,0.0000,0.00,'on_track',NULL,'2025-12-02 18:13:54','2025-12-02 18:13:54'),
(886,1,18,'2025-12-02',60.0000,90.0000,30.0000,50.00,'critical',NULL,'2025-12-02 18:13:54','2025-12-02 18:13:54'),
(887,1,13,'2025-12-02',50.0000,5.0000,-45.0000,-90.00,'critical',NULL,'2025-12-02 18:13:54','2025-12-02 18:13:54'),
(888,1,14,'2025-12-02',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-12-02 18:13:54','2025-12-02 18:13:54'),
(1009,1,1,'2025-12-03',100000.0000,0.0000,-100000.0000,-100.00,'critical',NULL,'2025-12-03 12:37:55','2025-12-03 12:37:55'),
(1010,1,3,'2025-12-03',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-12-03 12:37:55','2025-12-03 12:37:55'),
(1011,1,5,'2025-12-03',35.0000,0.0000,-35.0000,-100.00,'critical',NULL,'2025-12-03 12:37:55','2025-12-03 12:37:55'),
(1012,1,7,'2025-12-03',15.0000,0.0000,-15.0000,-100.00,'critical',NULL,'2025-12-03 12:37:55','2025-12-03 12:37:55'),
(1013,1,9,'2025-12-03',50000.0000,0.0000,-50000.0000,-100.00,'critical',NULL,'2025-12-03 12:37:55','2025-12-03 12:37:55'),
(1014,1,10,'2025-12-03',10.0000,0.0000,-10.0000,-100.00,'critical',NULL,'2025-12-03 12:37:55','2025-12-03 12:37:55'),
(1015,1,11,'2025-12-03',10000.0000,0.0000,-10000.0000,-100.00,'critical',NULL,'2025-12-03 12:37:55','2025-12-03 12:37:55'),
(1016,1,12,'2025-12-03',15000.0000,0.0000,-15000.0000,-100.00,'critical',NULL,'2025-12-03 12:37:55','2025-12-03 12:37:55'),
(1017,1,17,'2025-12-03',45.0000,45.0000,0.0000,0.00,'on_track',NULL,'2025-12-03 12:37:55','2025-12-03 12:37:55'),
(1018,1,18,'2025-12-03',60.0000,90.0000,30.0000,50.00,'critical',NULL,'2025-12-03 12:37:55','2025-12-03 12:37:55'),
(1019,1,13,'2025-12-03',50.0000,5.0000,-45.0000,-90.00,'critical',NULL,'2025-12-03 12:37:55','2025-12-03 12:37:55'),
(1020,1,14,'2025-12-03',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-12-03 12:37:55','2025-12-03 12:37:55'),
(1117,1,1,'2025-12-04',100000.0000,0.0000,-100000.0000,-100.00,'critical',NULL,'2025-12-04 23:46:27','2025-12-04 23:46:27'),
(1118,1,3,'2025-12-04',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-12-04 23:46:27','2025-12-04 23:46:27'),
(1119,1,5,'2025-12-04',35.0000,0.0000,-35.0000,-100.00,'critical',NULL,'2025-12-04 23:46:27','2025-12-04 23:46:27'),
(1120,1,7,'2025-12-04',15.0000,0.0000,-15.0000,-100.00,'critical',NULL,'2025-12-04 23:46:27','2025-12-04 23:46:27'),
(1121,1,9,'2025-12-04',50000.0000,0.0000,-50000.0000,-100.00,'critical',NULL,'2025-12-04 23:46:27','2025-12-04 23:46:27'),
(1122,1,10,'2025-12-04',10.0000,0.0000,-10.0000,-100.00,'critical',NULL,'2025-12-04 23:46:27','2025-12-04 23:46:27'),
(1123,1,11,'2025-12-04',10000.0000,0.0000,-10000.0000,-100.00,'critical',NULL,'2025-12-04 23:46:27','2025-12-04 23:46:27'),
(1124,1,12,'2025-12-04',15000.0000,0.0000,-15000.0000,-100.00,'critical',NULL,'2025-12-04 23:46:27','2025-12-04 23:46:27'),
(1125,1,17,'2025-12-04',45.0000,45.0000,0.0000,0.00,'on_track',NULL,'2025-12-04 23:46:27','2025-12-04 23:46:27'),
(1126,1,18,'2025-12-04',60.0000,90.0000,30.0000,50.00,'critical',NULL,'2025-12-04 23:46:27','2025-12-04 23:46:27'),
(1127,1,13,'2025-12-04',50.0000,5.0000,-45.0000,-90.00,'critical',NULL,'2025-12-04 23:46:27','2025-12-04 23:46:27'),
(1128,1,14,'2025-12-04',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-12-04 23:46:27','2025-12-04 23:46:27');
/*!40000 ALTER TABLE `forecast_variance_tracking` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecaster_equipment_scenarios`
--

DROP TABLE IF EXISTS `forecaster_equipment_scenarios`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecaster_equipment_scenarios` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `scenario_id` int(10) unsigned NOT NULL,
  `equipment_id` int(10) unsigned DEFAULT NULL,
  `equipment_line_id` int(10) unsigned DEFAULT NULL,
  `scenario_description` varchar(255) NOT NULL,
  `scenario_type` enum('add_equipment','upgrade_equipment','increase_efficiency','reduce_downtime','add_shift','remove_equipment') NOT NULL,
  `current_machines` int(11) DEFAULT 0,
  `current_capacity_per_day` decimal(12,2) DEFAULT 0.00,
  `current_utilization_pct` decimal(5,2) DEFAULT 0.00,
  `proposed_machines` int(11) DEFAULT 0,
  `proposed_capacity_per_day` decimal(12,2) DEFAULT 0.00,
  `proposed_utilization_pct` decimal(5,2) DEFAULT 0.00,
  `capital_investment` decimal(15,2) DEFAULT 0.00 COMMENT 'One-time investment',
  `additional_annual_operating_cost` decimal(15,2) DEFAULT 0.00,
  `additional_annual_labor_cost` decimal(15,2) DEFAULT 0.00,
  `additional_annual_revenue_capacity` decimal(15,2) DEFAULT 0.00,
  `annual_cost_savings` decimal(15,2) DEFAULT 0.00,
  `payback_period_months` decimal(6,2) DEFAULT 0.00,
  `roi_percent` decimal(8,2) DEFAULT 0.00,
  `npv` decimal(15,2) DEFAULT 0.00 COMMENT 'Net present value',
  `irr_percent` decimal(8,2) DEFAULT 0.00 COMMENT 'Internal rate of return',
  `implementation_date` date DEFAULT NULL,
  `implementation_duration_days` int(11) DEFAULT 0,
  `notes` text DEFAULT NULL,
  `is_approved` tinyint(1) DEFAULT 0,
  `approved_by` int(10) unsigned DEFAULT NULL,
  `approved_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `equipment_line_id` (`equipment_line_id`),
  KEY `approved_by` (`approved_by`),
  KEY `idx_scenario` (`scenario_id`),
  KEY `idx_equipment` (`equipment_id`),
  KEY `idx_scenario_type` (`scenario_type`),
  CONSTRAINT `forecaster_equipment_scenarios_ibfk_1` FOREIGN KEY (`scenario_id`) REFERENCES `forecaster_scenarios` (`id`) ON DELETE CASCADE,
  CONSTRAINT `forecaster_equipment_scenarios_ibfk_2` FOREIGN KEY (`equipment_id`) REFERENCES `equipment` (`id`) ON DELETE SET NULL,
  CONSTRAINT `forecaster_equipment_scenarios_ibfk_3` FOREIGN KEY (`equipment_line_id`) REFERENCES `equipment_lines` (`id`) ON DELETE SET NULL,
  CONSTRAINT `forecaster_equipment_scenarios_ibfk_4` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecaster_equipment_scenarios`
--

LOCK TABLES `forecaster_equipment_scenarios` WRITE;
/*!40000 ALTER TABLE `forecaster_equipment_scenarios` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `forecaster_equipment_scenarios` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecaster_financing_instruments`
--

DROP TABLE IF EXISTS `forecaster_financing_instruments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecaster_financing_instruments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `scenario_id` int(10) unsigned NOT NULL,
  `instrument_type` varchar(100) NOT NULL,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `principal_amount` decimal(18,2) NOT NULL,
  `rate_type` enum('fixed','floating') NOT NULL DEFAULT 'fixed',
  `fixed_rate_pct` decimal(8,4) DEFAULT NULL,
  `index_id` int(10) unsigned DEFAULT NULL,
  `spread_bps` decimal(8,4) DEFAULT NULL,
  `start_date` date NOT NULL,
  `maturity_date` date NOT NULL,
  `payment_frequency` enum('monthly','quarterly','annual') NOT NULL DEFAULT 'monthly',
  `compounding_frequency` enum('monthly','quarterly','annual') NOT NULL DEFAULT 'monthly',
  `day_count_convention` varchar(20) DEFAULT 'actual/365',
  `origination_fee_pct` decimal(8,4) DEFAULT 0.0000,
  `prepayment_penalty_pct` decimal(8,4) DEFAULT 0.0000,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_scenario` (`scenario_id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecaster_financing_instruments`
--

LOCK TABLES `forecaster_financing_instruments` WRITE;
/*!40000 ALTER TABLE `forecaster_financing_instruments` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `forecaster_financing_instruments` VALUES
(1,1,'bond','New Bond1','',1500000.00,'fixed',5.5000,NULL,NULL,'2026-01-01','2026-12-31','monthly','monthly','actual/365',1.5000,2.0000,'2025-11-11 14:03:59','2025-11-11 14:03:59'),
(2,1,'loan','Term Loan','',5000000.00,'fixed',5.0000,NULL,NULL,'2026-01-01','2026-12-31','monthly','monthly','actual/365',2.0000,1.0000,'2025-11-11 14:04:28','2025-11-11 14:04:28'),
(3,1,'loan','Term Loan','',5000000.00,'fixed',5.0000,NULL,NULL,'2026-01-01','2026-12-31','monthly','monthly','actual/365',2.0000,1.0000,'2025-11-11 14:06:59','2025-11-11 14:06:59'),
(4,1,'loan','New Loan','',5000000.00,'fixed',5.0000,NULL,NULL,'2026-01-01','2026-12-31','monthly','monthly','actual/365',1.0000,2.0000,'2025-11-11 14:07:21','2025-11-11 14:07:21'),
(5,2,'loan','Bank Loan1','',5000000.00,'floating',NULL,1,200.0000,'2026-01-01','2026-12-31','monthly','quarterly','actual/365',1.0000,2.0000,'2025-11-11 14:34:33','2025-11-11 14:34:33'),
(6,4,'bond','Bond James Bond','',100000.00,'floating',NULL,1,200.0000,'2026-01-01','2026-12-31','monthly','monthly','actual/365',0.5000,1.0000,'2025-11-11 16:09:23','2025-11-11 16:09:23'),
(7,8,'loan','Loan','',500000.00,'fixed',5.0000,NULL,NULL,'2025-01-01','2030-11-14','monthly','monthly','actual/365',1.0000,2.0000,'2025-11-14 12:46:30','2025-11-14 12:46:30');
/*!40000 ALTER TABLE `forecaster_financing_instruments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecaster_forecasts`
--

DROP TABLE IF EXISTS `forecaster_forecasts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecaster_forecasts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `start_date` date NOT NULL,
  `end_date` date NOT NULL,
  `period_type` enum('monthly','quarterly') NOT NULL DEFAULT 'monthly',
  `starting_cash` decimal(18,2) NOT NULL DEFAULT 0.00,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `proforma_assumptions` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Stores revenue, COGS, OpEx, facility cost assumptions' CHECK (json_valid(`proforma_assumptions`)),
  PRIMARY KEY (`id`),
  KEY `idx_created_by` (`created_by`),
  KEY `idx_is_active` (`is_active`),
  KEY `idx_forecasts_location` (`created_by`,`is_active`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecaster_forecasts`
--

LOCK TABLES `forecaster_forecasts` WRITE;
/*!40000 ALTER TABLE `forecaster_forecasts` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `forecaster_forecasts` VALUES
(1,'2025 Agressive Foreceast','','2026-01-01','2026-12-31','monthly',0.00,1,1,'2025-11-11 13:51:12','2025-11-11 14:54:35',NULL),
(2,'2025 Loose Foreceast','','2026-01-01','2026-12-31','monthly',0.00,1,1,'2025-11-11 13:52:47','2025-11-11 14:36:57',NULL),
(4,'2025 Base Foreceast','','2026-01-01','2026-12-31','monthly',0.00,1,1,'2025-11-11 13:54:16','2025-11-11 13:54:16',NULL),
(5,'2025 Current Forecast','This is a test','2026-01-01','2026-12-31','monthly',100000.00,1,1,'2025-11-11 16:04:40','2025-11-11 16:17:26',NULL),
(6,'Garage - Financial Plan','Financial plan for Garage location','2025-01-01','2034-12-31','monthly',1000000.00,1,1,'2025-11-14 06:40:25','2025-11-14 06:40:25','{\"revenue\":{\"initial_revenue\":1000000,\"revenue_growth_rate\":5},\"cogs\":{\"materials_pct\":35,\"labor_pct\":25,\"overhead_pct\":15,\"cogs_inflation\":3},\"opex\":{\"fixed_opex\":150000,\"variable_opex_pct\":10,\"opex_inflation\":2.5},\"capex\":{\"initial_capex\":500000,\"maintenance_capex_pct\":2},\"facility\":{\"base_rent_year\":120000,\"nnn_year\":24000,\"energy_cost_year\":36000,\"insurance_year\":12000,\"utilities_year\":18000}}'),
(7,'Garage - Financial Plan','Financial plan for Garage location','2025-01-01','2034-12-31','monthly',1000000.00,1,1,'2025-11-14 06:41:14','2025-11-14 06:41:14','{\"revenue\":{\"initial_revenue\":1000000,\"revenue_growth_rate\":5},\"cogs\":{\"materials_pct\":35,\"labor_pct\":25,\"overhead_pct\":15,\"cogs_inflation\":3},\"opex\":{\"fixed_opex\":150000,\"variable_opex_pct\":10,\"opex_inflation\":2.5},\"capex\":{\"initial_capex\":500000,\"maintenance_capex_pct\":2},\"facility\":{\"base_rent_year\":120000,\"nnn_year\":24000,\"energy_cost_year\":36000,\"insurance_year\":12000,\"utilities_year\":18000}}');
/*!40000 ALTER TABLE `forecaster_forecasts` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecaster_instrument_cashflows`
--

DROP TABLE IF EXISTS `forecaster_instrument_cashflows`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecaster_instrument_cashflows` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `scenario_id` int(10) unsigned NOT NULL,
  `period_id` int(10) unsigned NOT NULL,
  `instrument_id` int(10) unsigned NOT NULL,
  `instrument_table` varchar(50) NOT NULL,
  `principal_amount` decimal(18,2) NOT NULL DEFAULT 0.00,
  `interest_amount` decimal(18,2) NOT NULL DEFAULT 0.00,
  `fee_amount` decimal(18,2) NOT NULL DEFAULT 0.00,
  `notes` text DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_scenario` (`scenario_id`),
  KEY `idx_period` (`period_id`),
  KEY `idx_instrument` (`instrument_table`,`instrument_id`)
) ENGINE=InnoDB AUTO_INCREMENT=58 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecaster_instrument_cashflows`
--

LOCK TABLES `forecaster_instrument_cashflows` WRITE;
/*!40000 ALTER TABLE `forecaster_instrument_cashflows` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `forecaster_instrument_cashflows` VALUES
(1,1,25,3,'financing',445154.50,20833.33,0.00,'Auto-generated from amortization schedule','2025-11-11 14:06:59'),
(2,1,26,3,'financing',447009.32,18978.52,0.00,'Auto-generated from amortization schedule','2025-11-11 14:06:59'),
(3,1,27,3,'financing',448871.85,17115.98,0.00,'Auto-generated from amortization schedule','2025-11-11 14:06:59'),
(4,1,28,3,'financing',450742.15,15245.68,0.00,'Auto-generated from amortization schedule','2025-11-11 14:06:59'),
(5,1,29,3,'financing',452620.25,13367.59,0.00,'Auto-generated from amortization schedule','2025-11-11 14:06:59'),
(6,1,30,3,'financing',454506.16,11481.67,0.00,'Auto-generated from amortization schedule','2025-11-11 14:06:59'),
(7,1,31,3,'financing',456399.94,9587.90,0.00,'Auto-generated from amortization schedule','2025-11-11 14:06:59'),
(8,1,32,3,'financing',458301.61,7686.23,0.00,'Auto-generated from amortization schedule','2025-11-11 14:06:59'),
(9,1,33,3,'financing',460211.20,5776.64,0.00,'Auto-generated from amortization schedule','2025-11-11 14:06:59'),
(10,1,34,3,'financing',462128.74,3859.10,0.00,'Auto-generated from amortization schedule','2025-11-11 14:06:59'),
(11,1,35,3,'financing',464054.28,1933.56,0.00,'Auto-generated from amortization schedule','2025-11-11 14:06:59'),
(12,1,25,4,'financing',445154.50,20833.33,0.00,'Auto-generated from amortization schedule','2025-11-11 14:07:21'),
(13,1,26,4,'financing',447009.32,18978.52,0.00,'Auto-generated from amortization schedule','2025-11-11 14:07:21'),
(14,1,27,4,'financing',448871.85,17115.98,0.00,'Auto-generated from amortization schedule','2025-11-11 14:07:21'),
(15,1,28,4,'financing',450742.15,15245.68,0.00,'Auto-generated from amortization schedule','2025-11-11 14:07:21'),
(16,1,29,4,'financing',452620.25,13367.59,0.00,'Auto-generated from amortization schedule','2025-11-11 14:07:21'),
(17,1,30,4,'financing',454506.16,11481.67,0.00,'Auto-generated from amortization schedule','2025-11-11 14:07:21'),
(18,1,31,4,'financing',456399.94,9587.90,0.00,'Auto-generated from amortization schedule','2025-11-11 14:07:21'),
(19,1,32,4,'financing',458301.61,7686.23,0.00,'Auto-generated from amortization schedule','2025-11-11 14:07:21'),
(20,1,33,4,'financing',460211.20,5776.64,0.00,'Auto-generated from amortization schedule','2025-11-11 14:07:21'),
(21,1,34,4,'financing',462128.74,3859.10,0.00,'Auto-generated from amortization schedule','2025-11-11 14:07:21'),
(22,1,35,4,'financing',464054.28,1933.56,0.00,'Auto-generated from amortization schedule','2025-11-11 14:07:21'),
(23,1,25,1,'investment',0.00,1438.36,0.00,'Auto-generated interest income','2025-11-11 14:18:17'),
(24,1,26,1,'investment',0.00,1298.24,0.00,'Auto-generated interest income','2025-11-11 14:18:17'),
(25,1,27,1,'investment',0.00,1446.23,0.00,'Auto-generated interest income','2025-11-11 14:18:17'),
(26,1,28,1,'investment',0.00,1402.04,0.00,'Auto-generated interest income','2025-11-11 14:18:17'),
(27,1,29,1,'investment',0.00,1454.42,0.00,'Auto-generated interest income','2025-11-11 14:18:17'),
(28,1,30,1,'investment',0.00,1409.99,0.00,'Auto-generated interest income','2025-11-11 14:18:17'),
(29,1,31,1,'investment',0.00,1462.66,0.00,'Auto-generated interest income','2025-11-11 14:18:17'),
(30,1,32,1,'investment',0.00,1466.87,0.00,'Auto-generated interest income','2025-11-11 14:18:17'),
(31,1,33,1,'investment',0.00,1422.05,0.00,'Auto-generated interest income','2025-11-11 14:18:17'),
(32,1,34,1,'investment',0.00,1475.18,0.00,'Auto-generated interest income','2025-11-11 14:18:17'),
(33,1,35,1,'investment',0.00,1430.11,0.00,'Auto-generated interest income','2025-11-11 14:18:17'),
(34,1,36,1,'investment',0.00,1483.54,0.00,'Auto-generated interest income','2025-11-11 14:18:17'),
(35,4,37,6,'financing',8903.09,416.67,0.00,'Auto-generated from amortization schedule','2025-11-11 16:09:23'),
(36,4,38,6,'financing',8940.19,379.57,0.00,'Auto-generated from amortization schedule','2025-11-11 16:09:23'),
(37,4,39,6,'financing',8977.44,342.32,0.00,'Auto-generated from amortization schedule','2025-11-11 16:09:23'),
(38,4,40,6,'financing',9014.84,304.91,0.00,'Auto-generated from amortization schedule','2025-11-11 16:09:23'),
(39,4,41,6,'financing',9052.40,267.35,0.00,'Auto-generated from amortization schedule','2025-11-11 16:09:23'),
(40,4,42,6,'financing',9090.12,229.63,0.00,'Auto-generated from amortization schedule','2025-11-11 16:09:23'),
(41,4,43,6,'financing',9128.00,191.76,0.00,'Auto-generated from amortization schedule','2025-11-11 16:09:23'),
(42,4,44,6,'financing',9166.03,153.72,0.00,'Auto-generated from amortization schedule','2025-11-11 16:09:23'),
(43,4,45,6,'financing',9204.22,115.53,0.00,'Auto-generated from amortization schedule','2025-11-11 16:09:23'),
(44,4,46,6,'financing',9242.57,77.18,0.00,'Auto-generated from amortization schedule','2025-11-11 16:09:23'),
(45,4,47,6,'financing',9281.09,38.67,0.00,'Auto-generated from amortization schedule','2025-11-11 16:09:23'),
(46,4,37,3,'investment',0.00,0.14,0.00,'Auto-generated interest income','2025-11-11 16:11:08'),
(47,4,38,3,'investment',0.00,0.13,0.00,'Auto-generated interest income','2025-11-11 16:11:08'),
(48,4,39,3,'investment',0.00,0.14,0.00,'Auto-generated interest income','2025-11-11 16:11:08'),
(49,4,40,3,'investment',0.00,0.14,0.00,'Auto-generated interest income','2025-11-11 16:11:08'),
(50,4,41,3,'investment',0.00,0.15,0.00,'Auto-generated interest income','2025-11-11 16:11:08'),
(51,4,42,3,'investment',0.00,0.14,0.00,'Auto-generated interest income','2025-11-11 16:11:08'),
(52,4,43,3,'investment',0.00,0.15,0.00,'Auto-generated interest income','2025-11-11 16:11:08'),
(53,4,44,3,'investment',0.00,0.15,0.00,'Auto-generated interest income','2025-11-11 16:11:08'),
(54,4,45,3,'investment',0.00,0.14,0.00,'Auto-generated interest income','2025-11-11 16:11:08'),
(55,4,46,3,'investment',0.00,0.15,0.00,'Auto-generated interest income','2025-11-11 16:11:08'),
(56,4,47,3,'investment',0.00,0.14,0.00,'Auto-generated interest income','2025-11-11 16:11:08'),
(57,4,48,3,'investment',0.00,0.15,0.00,'Auto-generated interest income','2025-11-11 16:11:08');
/*!40000 ALTER TABLE `forecaster_instrument_cashflows` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecaster_investment_instruments`
--

DROP TABLE IF EXISTS `forecaster_investment_instruments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecaster_investment_instruments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `scenario_id` int(10) unsigned NOT NULL,
  `instrument_type` varchar(100) NOT NULL,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `invested_amount` decimal(18,2) NOT NULL,
  `yield_type` enum('fixed','floating') NOT NULL DEFAULT 'fixed',
  `fixed_yield_pct` decimal(8,4) DEFAULT NULL,
  `index_id` int(10) unsigned DEFAULT NULL,
  `spread_bps` decimal(8,4) DEFAULT NULL,
  `purchase_date` date NOT NULL,
  `maturity_date` date DEFAULT NULL,
  `interest_payment_frequency` enum('monthly','quarterly','annual') NOT NULL DEFAULT 'annual',
  `compounding_frequency` enum('monthly','quarterly','annual') NOT NULL DEFAULT 'annual',
  `day_count_convention` varchar(20) DEFAULT 'actual/365',
  `reinvest_interest` tinyint(1) DEFAULT 0,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_scenario` (`scenario_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecaster_investment_instruments`
--

LOCK TABLES `forecaster_investment_instruments` WRITE;
/*!40000 ALTER TABLE `forecaster_investment_instruments` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `forecaster_investment_instruments` VALUES
(1,1,'cd','CD Investment 1','',500000.00,'floating',NULL,1,50.0000,'2026-01-01','2026-12-31','monthly','quarterly','actual/365',1,'2025-11-11 14:18:17','2025-11-11 14:18:17'),
(2,2,'cd','CD1','',500000.00,'floating',NULL,2,50.0000,'2026-01-01','2026-12-31','quarterly','quarterly','actual/365',0,'2025-11-11 14:34:59','2025-11-11 14:34:59'),
(3,4,'cd','Def Leppard CD','text here',50.00,'floating',NULL,3,50.0000,'2026-01-01','2081-12-31','monthly','monthly','actual/365',1,'2025-11-11 16:11:08','2025-11-11 16:11:08'),
(4,8,'treasury','US T Bill','',500000.00,'fixed',3.5000,NULL,NULL,'2025-01-01','2030-12-31','monthly','monthly','actual/365',0,'2025-11-14 12:46:51','2025-11-14 12:46:51');
/*!40000 ALTER TABLE `forecaster_investment_instruments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecaster_periods`
--

DROP TABLE IF EXISTS `forecaster_periods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecaster_periods` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `forecast_id` int(10) unsigned NOT NULL,
  `period_label` varchar(50) NOT NULL,
  `start_date` date NOT NULL,
  `end_date` date NOT NULL,
  `revenue` decimal(18,2) NOT NULL DEFAULT 0.00,
  `cogs` decimal(18,2) NOT NULL DEFAULT 0.00,
  `operating_expenses` decimal(18,2) NOT NULL DEFAULT 0.00,
  `capital_expenditures` decimal(18,2) NOT NULL DEFAULT 0.00,
  `other_income` decimal(18,2) NOT NULL DEFAULT 0.00,
  `tax` decimal(18,2) NOT NULL DEFAULT 0.00,
  `net_cashflow` decimal(18,2) NOT NULL DEFAULT 0.00,
  `beginning_cash` decimal(18,2) NOT NULL DEFAULT 0.00,
  `ending_cash` decimal(18,2) NOT NULL DEFAULT 0.00,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `uq_forecast_period` (`forecast_id`,`start_date`),
  KEY `idx_forecast` (`forecast_id`)
) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecaster_periods`
--

LOCK TABLES `forecaster_periods` WRITE;
/*!40000 ALTER TABLE `forecaster_periods` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `forecaster_periods` VALUES
(1,2,'Jan 2026','2026-01-01','2026-01-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,0.00,-1666.67,'2025-11-11 13:52:47','2025-11-11 14:37:07'),
(2,2,'Feb 2026','2026-02-01','2026-02-28',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-1666.67,-3333.34,'2025-11-11 13:52:47','2025-11-11 14:37:07'),
(3,2,'Mar 2026','2026-03-01','2026-03-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-3333.34,-5000.01,'2025-11-11 13:52:47','2025-11-11 14:37:07'),
(4,2,'Apr 2026','2026-04-01','2026-04-30',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-5000.01,-6666.68,'2025-11-11 13:52:47','2025-11-11 14:37:07'),
(5,2,'May 2026','2026-05-01','2026-05-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-6666.68,-8333.35,'2025-11-11 13:52:47','2025-11-11 14:37:07'),
(6,2,'Jun 2026','2026-06-01','2026-06-30',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-8333.35,-10000.02,'2025-11-11 13:52:47','2025-11-11 14:37:07'),
(7,2,'Jul 2026','2026-07-01','2026-07-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-10000.02,-11666.69,'2025-11-11 13:52:47','2025-11-11 14:37:07'),
(8,2,'Aug 2026','2026-08-01','2026-08-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-11666.69,-13333.36,'2025-11-11 13:52:47','2025-11-11 14:37:07'),
(9,2,'Sep 2026','2026-09-01','2026-09-30',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-13333.36,-15000.03,'2025-11-11 13:52:47','2025-11-11 14:37:07'),
(10,2,'Oct 2026','2026-10-01','2026-10-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-15000.03,-16666.70,'2025-11-11 13:52:47','2025-11-11 14:37:07'),
(11,2,'Nov 2026','2026-11-01','2026-11-30',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-16666.70,-18333.37,'2025-11-11 13:52:47','2025-11-11 14:37:07'),
(12,2,'Dec 2026','2026-12-01','2026-12-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-18333.37,-20000.04,'2025-11-11 13:52:47','2025-11-11 14:37:07'),
(13,3,'Jan 2026','2026-01-01','2026-01-31',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,'2025-11-11 13:52:52','2025-11-11 13:52:52'),
(14,3,'Feb 2026','2026-02-01','2026-02-28',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,'2025-11-11 13:52:52','2025-11-11 13:52:52'),
(15,3,'Mar 2026','2026-03-01','2026-03-31',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,'2025-11-11 13:52:52','2025-11-11 13:52:52'),
(16,3,'Apr 2026','2026-04-01','2026-04-30',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,'2025-11-11 13:52:52','2025-11-11 13:52:52'),
(17,3,'May 2026','2026-05-01','2026-05-31',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,'2025-11-11 13:52:52','2025-11-11 13:52:52'),
(18,3,'Jun 2026','2026-06-01','2026-06-30',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,'2025-11-11 13:52:52','2025-11-11 13:52:52'),
(19,3,'Jul 2026','2026-07-01','2026-07-31',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,'2025-11-11 13:52:52','2025-11-11 13:52:52'),
(20,3,'Aug 2026','2026-08-01','2026-08-31',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,'2025-11-11 13:52:52','2025-11-11 13:52:52'),
(21,3,'Sep 2026','2026-09-01','2026-09-30',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,'2025-11-11 13:52:52','2025-11-11 13:52:52'),
(22,3,'Oct 2026','2026-10-01','2026-10-31',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,'2025-11-11 13:52:52','2025-11-11 13:52:52'),
(23,3,'Nov 2026','2026-11-01','2026-11-30',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,'2025-11-11 13:52:52','2025-11-11 13:52:52'),
(24,3,'Dec 2026','2026-12-01','2026-12-31',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,'2025-11-11 13:52:52','2025-11-11 13:52:52'),
(25,4,'Jan 2026','2026-01-01','2026-01-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,0.00,-1666.67,'2025-11-11 13:54:16','2025-11-11 14:36:31'),
(26,4,'Feb 2026','2026-02-01','2026-02-28',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-1666.67,-3333.34,'2025-11-11 13:54:16','2025-11-11 14:36:31'),
(27,4,'Mar 2026','2026-03-01','2026-03-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-3333.34,-5000.01,'2025-11-11 13:54:16','2025-11-11 14:36:31'),
(28,4,'Apr 2026','2026-04-01','2026-04-30',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-5000.01,-6666.68,'2025-11-11 13:54:16','2025-11-11 14:36:31'),
(29,4,'May 2026','2026-05-01','2026-05-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-6666.68,-8333.35,'2025-11-11 13:54:16','2025-11-11 14:36:31'),
(30,4,'Jun 2026','2026-06-01','2026-06-30',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-8333.35,-10000.02,'2025-11-11 13:54:16','2025-11-11 14:36:31'),
(31,4,'Jul 2026','2026-07-01','2026-07-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-10000.02,-11666.69,'2025-11-11 13:54:16','2025-11-11 14:36:31'),
(32,4,'Aug 2026','2026-08-01','2026-08-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-11666.69,-13333.36,'2025-11-11 13:54:16','2025-11-11 14:36:31'),
(33,4,'Sep 2026','2026-09-01','2026-09-30',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-13333.36,-15000.03,'2025-11-11 13:54:16','2025-11-11 14:36:31'),
(34,4,'Oct 2026','2026-10-01','2026-10-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-15000.03,-16666.70,'2025-11-11 13:54:16','2025-11-11 14:36:31'),
(35,4,'Nov 2026','2026-11-01','2026-11-30',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-16666.70,-18333.37,'2025-11-11 13:54:16','2025-11-11 14:36:31'),
(36,4,'Dec 2026','2026-12-01','2026-12-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-18333.37,-20000.04,'2025-11-11 13:54:16','2025-11-11 14:36:31'),
(37,5,'Jan 2026','2026-01-01','2026-01-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,100000.00,98333.33,'2025-11-11 16:04:40','2025-11-11 16:05:31'),
(38,5,'Feb 2026','2026-02-01','2026-02-28',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,98333.33,96666.66,'2025-11-11 16:04:40','2025-11-11 16:05:31'),
(39,5,'Mar 2026','2026-03-01','2026-03-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,96666.66,94999.99,'2025-11-11 16:04:40','2025-11-11 16:05:31'),
(40,5,'Apr 2026','2026-04-01','2026-04-30',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,94999.99,93333.32,'2025-11-11 16:04:40','2025-11-11 16:05:31'),
(41,5,'May 2026','2026-05-01','2026-05-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,93333.32,91666.65,'2025-11-11 16:04:40','2025-11-11 16:05:31'),
(42,5,'Jun 2026','2026-06-01','2026-06-30',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,91666.65,89999.98,'2025-11-11 16:04:40','2025-11-11 16:05:31'),
(43,5,'Jul 2026','2026-07-01','2026-07-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,89999.98,88333.31,'2025-11-11 16:04:40','2025-11-11 16:05:31'),
(44,5,'Aug 2026','2026-08-01','2026-08-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,88333.31,86666.64,'2025-11-11 16:04:40','2025-11-11 16:05:31'),
(45,5,'Sep 2026','2026-09-01','2026-09-30',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,86666.64,84999.97,'2025-11-11 16:04:40','2025-11-11 16:05:31'),
(46,5,'Oct 2026','2026-10-01','2026-10-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,84999.97,83333.30,'2025-11-11 16:04:40','2025-11-11 16:05:31'),
(47,5,'Nov 2026','2026-11-01','2026-11-30',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,83333.30,81666.63,'2025-11-11 16:04:40','2025-11-11 16:05:31'),
(48,5,'Dec 2026','2026-12-01','2026-12-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,81666.63,79999.96,'2025-11-11 16:04:40','2025-11-11 16:05:31');
/*!40000 ALTER TABLE `forecaster_periods` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecaster_rate_index_values`
--

DROP TABLE IF EXISTS `forecaster_rate_index_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecaster_rate_index_values` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rate_index_id` int(10) unsigned NOT NULL,
  `date` date NOT NULL,
  `rate_annual` decimal(8,5) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `uq_rate_index_date` (`rate_index_id`,`date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecaster_rate_index_values`
--

LOCK TABLES `forecaster_rate_index_values` WRITE;
/*!40000 ALTER TABLE `forecaster_rate_index_values` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `forecaster_rate_index_values` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecaster_rate_indices`
--

DROP TABLE IF EXISTS `forecaster_rate_indices`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecaster_rate_indices` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `code` varchar(50) NOT NULL,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `is_manual` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `code` (`code`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecaster_rate_indices`
--

LOCK TABLES `forecaster_rate_indices` WRITE;
/*!40000 ALTER TABLE `forecaster_rate_indices` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `forecaster_rate_indices` VALUES
(1,'SOFR','Secured Overnight Financing Rate','Federal Reserve benchmark rate replacing LIBOR',1,'2025-11-11 13:46:11','2025-11-11 13:46:11'),
(2,'PRIME','US Prime Rate','Prime rate used by banks',1,'2025-11-11 13:46:11','2025-11-11 13:46:11'),
(3,'CUSTOM','Custom Rate Index','User-defined custom rate index',1,'2025-11-11 13:46:11','2025-11-11 13:46:11');
/*!40000 ALTER TABLE `forecaster_rate_indices` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecaster_scenario_metrics`
--

DROP TABLE IF EXISTS `forecaster_scenario_metrics`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecaster_scenario_metrics` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `scenario_id` int(10) unsigned NOT NULL,
  `metric_name` varchar(100) NOT NULL,
  `metric_value` decimal(30,10) NOT NULL,
  `currency` varchar(10) DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_scenario_metric` (`scenario_id`,`metric_name`)
) ENGINE=InnoDB AUTO_INCREMENT=121 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecaster_scenario_metrics`
--

LOCK TABLES `forecaster_scenario_metrics` WRITE;
/*!40000 ALTER TABLE `forecaster_scenario_metrics` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `forecaster_scenario_metrics` VALUES
(1,1,'total_revenue',0.0000000000,'USD','2025-11-11 14:22:52'),
(2,1,'total_cogs',0.0000000000,'USD','2025-11-11 14:22:52'),
(3,1,'total_opex',0.0000000000,'USD','2025-11-11 14:22:52'),
(4,1,'total_capex',0.0000000000,'USD','2025-11-11 14:22:52'),
(5,1,'total_interest_income',17189.6900000000,'USD','2025-11-11 14:22:52'),
(6,1,'total_interest_expense',251732.4000000000,'USD','2025-11-11 14:22:52'),
(7,1,'total_tax',0.0000000000,'USD','2025-11-11 14:22:52'),
(8,1,'total_net_cashflow',0.0000000000,'USD','2025-11-11 14:22:52'),
(9,1,'avg_monthly_cashflow',0.0000000000,'USD','2025-11-11 14:22:52'),
(10,1,'min_cash_position',0.0000000000,'USD','2025-11-11 14:22:52'),
(11,1,'max_cash_position',0.0000000000,'USD','2025-11-11 14:22:52'),
(12,1,'npv',0.0000000000,'USD','2025-11-11 14:22:52'),
(37,2,'total_revenue',0.0000000000,'USD','2025-11-11 14:35:15'),
(38,2,'total_cogs',0.0000000000,'USD','2025-11-11 14:35:15'),
(39,2,'total_opex',0.0000000000,'USD','2025-11-11 14:35:15'),
(40,2,'total_capex',0.0000000000,'USD','2025-11-11 14:35:15'),
(41,2,'total_interest_income',0.0000000000,'USD','2025-11-11 14:35:15'),
(42,2,'total_interest_expense',0.0000000000,'USD','2025-11-11 14:35:15'),
(43,2,'total_tax',0.0000000000,'USD','2025-11-11 14:35:15'),
(44,2,'total_net_cashflow',0.0000000000,'USD','2025-11-11 14:35:15'),
(45,2,'avg_monthly_cashflow',0.0000000000,'USD','2025-11-11 14:35:15'),
(46,2,'min_cash_position',0.0000000000,'USD','2025-11-11 14:35:15'),
(47,2,'max_cash_position',0.0000000000,'USD','2025-11-11 14:35:15'),
(48,2,'npv',0.0000000000,'USD','2025-11-11 14:35:15'),
(49,4,'total_revenue',999999.9600000000,'USD','2025-11-11 16:11:18'),
(50,4,'total_cogs',750000.0000000000,'USD','2025-11-11 16:11:18'),
(51,4,'total_opex',249999.9600000000,'USD','2025-11-11 16:11:18'),
(52,4,'total_capex',20000.0400000000,'USD','2025-11-11 16:11:18'),
(53,4,'total_interest_income',1.7200000000,'USD','2025-11-11 16:11:18'),
(54,4,'total_interest_expense',2517.3100000000,'USD','2025-11-11 16:11:18'),
(55,4,'total_tax',0.0000000000,'USD','2025-11-11 16:11:18'),
(56,4,'total_net_cashflow',-20000.0400000000,'USD','2025-11-11 16:11:18'),
(57,4,'avg_monthly_cashflow',-1666.6700000000,'USD','2025-11-11 16:11:18'),
(58,4,'min_cash_position',79999.9600000000,'USD','2025-11-11 16:11:18'),
(59,4,'max_cash_position',98333.3300000000,'USD','2025-11-11 16:11:18'),
(60,4,'npv',-19009.9127773310,'USD','2025-11-11 16:11:18'),
(61,5,'total_revenue',999999.9600000000,'USD','2025-11-11 16:13:07'),
(62,5,'total_cogs',750000.0000000000,'USD','2025-11-11 16:13:07'),
(63,5,'total_opex',249999.9600000000,'USD','2025-11-11 16:13:07'),
(64,5,'total_capex',20000.0400000000,'USD','2025-11-11 16:13:07'),
(65,5,'total_interest_income',0.0000000000,'USD','2025-11-11 16:13:07'),
(66,5,'total_interest_expense',0.0000000000,'USD','2025-11-11 16:13:07'),
(67,5,'total_tax',0.0000000000,'USD','2025-11-11 16:13:07'),
(68,5,'total_net_cashflow',-20000.0400000000,'USD','2025-11-11 16:13:07'),
(69,5,'avg_monthly_cashflow',-1666.6700000000,'USD','2025-11-11 16:13:07'),
(70,5,'min_cash_position',79999.9600000000,'USD','2025-11-11 16:13:07'),
(71,5,'max_cash_position',98333.3300000000,'USD','2025-11-11 16:13:07'),
(72,5,'npv',-19009.9127773310,'USD','2025-11-11 16:13:07'),
(109,8,'total_revenue',0.0000000000,'USD','2025-11-14 12:46:58'),
(110,8,'total_cogs',0.0000000000,'USD','2025-11-14 12:46:58'),
(111,8,'total_opex',0.0000000000,'USD','2025-11-14 12:46:58'),
(112,8,'total_capex',0.0000000000,'USD','2025-11-14 12:46:58'),
(113,8,'total_interest_income',0.0000000000,'USD','2025-11-14 12:46:58'),
(114,8,'total_interest_expense',0.0000000000,'USD','2025-11-14 12:46:58'),
(115,8,'total_tax',0.0000000000,'USD','2025-11-14 12:46:58'),
(116,8,'total_net_cashflow',0.0000000000,'USD','2025-11-14 12:46:58'),
(117,8,'avg_monthly_cashflow',0.0000000000,'USD','2025-11-14 12:46:58'),
(118,8,'min_cash_position',0.0000000000,'USD','2025-11-14 12:46:58'),
(119,8,'max_cash_position',0.0000000000,'USD','2025-11-14 12:46:58'),
(120,8,'npv',0.0000000000,'USD','2025-11-14 12:46:58');
/*!40000 ALTER TABLE `forecaster_scenario_metrics` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecaster_scenarios`
--

DROP TABLE IF EXISTS `forecaster_scenarios`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecaster_scenarios` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `forecast_id` int(10) unsigned NOT NULL,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `display_order` int(11) DEFAULT 0 COMMENT 'Order in comparison view',
  `color_code` varchar(7) DEFAULT '#007bff' COMMENT 'Hex color for charts and UI',
  PRIMARY KEY (`id`),
  KEY `idx_forecast` (`forecast_id`),
  KEY `idx_is_active` (`is_active`),
  KEY `idx_scenarios_display_order` (`forecast_id`,`display_order`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecaster_scenarios`
--

LOCK TABLES `forecaster_scenarios` WRITE;
/*!40000 ALTER TABLE `forecaster_scenarios` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `forecaster_scenarios` VALUES
(1,4,'Base Case','',1,1,'2025-11-11 13:54:30','2025-11-13 20:33:17',1,'#007bff'),
(2,1,'Base Case 2025','',1,1,'2025-11-11 14:34:06','2025-11-13 20:33:17',1,'#007bff'),
(3,2,'Conservative','',1,1,'2025-11-11 14:37:17','2025-11-13 20:33:17',1,'#007bff'),
(4,5,'Base Model','This is a base model',1,1,'2025-11-11 16:06:37','2025-11-13 20:33:17',1,'#007bff'),
(5,5,'COnservative','',1,1,'2025-11-11 16:13:01','2025-11-13 20:33:17',2,'#007bff'),
(6,7,'Base','',1,1,'2025-11-14 06:41:35','2025-11-14 06:41:35',0,'#007bff'),
(7,7,'Moderate','',1,1,'2025-11-14 06:42:02','2025-11-14 06:42:02',0,'#007bff'),
(8,7,'Aggressive','',1,1,'2025-11-14 06:42:13','2025-11-14 06:42:13',0,'#007bff');
/*!40000 ALTER TABLE `forecaster_scenarios` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `form_1099_categories`
--

DROP TABLE IF EXISTS `form_1099_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `form_1099_categories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_type` enum('MISC','NEC','K','INT') NOT NULL,
  `box_number` int(11) NOT NULL,
  `box_name` varchar(200) NOT NULL,
  `description` text DEFAULT NULL,
  `threshold_amount` decimal(15,2) DEFAULT 0.00 COMMENT 'Minimum amount to report',
  `is_active` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_box` (`form_type`,`box_number`),
  KEY `idx_form_type` (`form_type`),
  KEY `idx_active` (`is_active`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `form_1099_categories`
--

LOCK TABLES `form_1099_categories` WRITE;
/*!40000 ALTER TABLE `form_1099_categories` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `form_1099_categories` VALUES
(1,'NEC',1,'Nonemployee compensation','Payments to independent contractors for services',600.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(2,'MISC',1,'Rents','Rent payments',600.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(3,'MISC',2,'Royalties','Royalty payments',10.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(4,'MISC',3,'Other income','Other income payments',600.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(5,'MISC',4,'Federal income tax withheld','Backup withholding',0.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(6,'MISC',5,'Fishing boat proceeds','Fishing boat proceeds',600.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(7,'MISC',6,'Medical and health care payments','Payments to physicians and healthcare providers',600.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(8,'MISC',8,'Substitute payments in lieu of dividends','Substitute payment amounts',10.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(9,'MISC',10,'Crop insurance proceeds','Crop insurance proceeds',600.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(10,'MISC',12,'Section 409A deferrals','Deferrals under nonqualified deferred comp plan',0.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(11,'MISC',14,'Gross proceeds paid to an attorney','Attorney payments',600.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(12,'INT',1,'Interest income','Interest income from banks, investments, etc.',10.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(13,'INT',2,'Early withdrawal penalty','Early withdrawal penalties',0.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(14,'INT',3,'Interest on U.S. Savings Bonds','Interest on U.S. Savings Bonds and Treasury obligations',10.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(15,'INT',4,'Federal income tax withheld','Backup withholding',0.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(16,'K',1,'Gross amount of payment card transactions','Payment card transactions',20000.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32');
/*!40000 ALTER TABLE `form_1099_categories` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `form_1099_filings`
--

DROP TABLE IF EXISTS `form_1099_filings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `form_1099_filings` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `supplier_id` int(10) unsigned NOT NULL,
  `tax_year` int(11) NOT NULL,
  `form_type` enum('MISC','NEC','K','INT','DIV','R') NOT NULL,
  `box_amounts` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'JSON object with box_number: amount pairs' CHECK (json_valid(`box_amounts`)),
  `total_amount` decimal(15,2) NOT NULL,
  `filing_method` enum('paper','electronic','efile') DEFAULT 'electronic',
  `filed_date` date DEFAULT NULL,
  `confirmation_number` varchar(100) DEFAULT NULL,
  `status` enum('draft','prepared','filed','corrected') DEFAULT 'draft',
  `is_correction` tinyint(1) DEFAULT 0,
  `corrected_filing_id` int(10) unsigned DEFAULT NULL COMMENT 'If correction, link to original',
  `pdf_file_path` varchar(500) DEFAULT NULL,
  `prepared_by` int(10) unsigned DEFAULT NULL,
  `prepared_date` date DEFAULT NULL,
  `filed_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_filing` (`supplier_id`,`tax_year`,`form_type`,`is_correction`),
  KEY `idx_supplier` (`supplier_id`),
  KEY `idx_tax_year` (`tax_year`),
  KEY `idx_status` (`status`),
  KEY `corrected_filing_id` (`corrected_filing_id`),
  KEY `prepared_by` (`prepared_by`),
  KEY `filed_by` (`filed_by`),
  CONSTRAINT `form_1099_filings_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `form_1099_filings_ibfk_2` FOREIGN KEY (`corrected_filing_id`) REFERENCES `form_1099_filings` (`id`) ON DELETE SET NULL,
  CONSTRAINT `form_1099_filings_ibfk_3` FOREIGN KEY (`prepared_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `form_1099_filings_ibfk_4` FOREIGN KEY (`filed_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `form_1099_filings`
--

LOCK TABLES `form_1099_filings` WRITE;
/*!40000 ALTER TABLE `form_1099_filings` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `form_1099_filings` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `form_1099_payments`
--

DROP TABLE IF EXISTS `form_1099_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `form_1099_payments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `supplier_id` int(10) unsigned NOT NULL,
  `payment_id` int(10) unsigned DEFAULT NULL COMMENT 'Link to vendor_payments table',
  `payment_date` date NOT NULL,
  `payment_amount` decimal(15,2) NOT NULL,
  `payment_description` text DEFAULT NULL,
  `form_type` enum('MISC','NEC','K','INT','DIV','R') NOT NULL,
  `box_number` int(11) NOT NULL,
  `category_id` int(10) unsigned DEFAULT NULL,
  `is_reportable` tinyint(1) DEFAULT 1,
  `exclusion_reason` text DEFAULT NULL COMMENT 'Reason if payment excluded from 1099',
  `tax_year` int(11) NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `created_by` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_supplier` (`supplier_id`),
  KEY `idx_payment` (`payment_id`),
  KEY `idx_tax_year` (`tax_year`),
  KEY `idx_reportable` (`is_reportable`),
  KEY `idx_form_type` (`form_type`),
  KEY `category_id` (`category_id`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `form_1099_payments_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `form_1099_payments_ibfk_2` FOREIGN KEY (`payment_id`) REFERENCES `vendor_payments` (`id`) ON DELETE SET NULL,
  CONSTRAINT `form_1099_payments_ibfk_3` FOREIGN KEY (`category_id`) REFERENCES `form_1099_categories` (`id`) ON DELETE SET NULL,
  CONSTRAINT `form_1099_payments_ibfk_4` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `form_1099_payments`
--

LOCK TABLES `form_1099_payments` WRITE;
/*!40000 ALTER TABLE `form_1099_payments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `form_1099_payments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `form_configurations`
--

DROP TABLE IF EXISTS `form_configurations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `form_configurations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_key` varchar(100) NOT NULL COMMENT 'Unique identifier like customer_create, product_edit',
  `entity_name` varchar(100) NOT NULL COMMENT 'Entity name like customer, product',
  `form_type` enum('create','edit','view','filter') DEFAULT 'create',
  `title` varchar(255) NOT NULL COMMENT 'Form title',
  `description` text DEFAULT NULL,
  `submit_url` varchar(255) DEFAULT NULL COMMENT 'Form action URL',
  `success_redirect` varchar(255) DEFAULT NULL COMMENT 'Redirect after success',
  `layout` enum('vertical','horizontal','grid','inline') DEFAULT 'vertical',
  `grid_columns` int(11) DEFAULT 1 COMMENT 'Number of columns for grid layout',
  `is_active` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `form_key` (`form_key`),
  KEY `idx_form_key` (`form_key`),
  KEY `idx_entity` (`entity_name`,`form_type`),
  KEY `idx_active` (`is_active`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `form_configurations`
--

LOCK TABLES `form_configurations` WRITE;
/*!40000 ALTER TABLE `form_configurations` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `form_configurations` VALUES
(11,'product_create','product','create','Add New Product',NULL,'/products/store','/products','grid',2,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(12,'product_edit','product','edit','Edit Product',NULL,'/products/{id}/update','/products/{id}','grid',2,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(13,'supplier_create','supplier','create','Add New Supplier',NULL,'/suppliers/store','/suppliers','grid',2,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(14,'employee_create','employee','create','Add New Employee',NULL,'/employees/store','/employees','grid',2,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(15,'sales_order_create','sales_order','create','Create Sales Order',NULL,'/sales/orders/store','/sales/orders','grid',2,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(16,'purchase_order_create','purchase_order','create','Create Purchase Order',NULL,'/purchases/orders/store','/purchases/orders','grid',2,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(17,'work_order_create','work_order','create','Create Work Order',NULL,'/manufacturing/workorders/store','/manufacturing/workorders','grid',2,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(18,'invoice_create','invoice','create','Create Invoice',NULL,'/invoices/store','/invoices','grid',2,1,'2025-11-06 03:12:23','2025-11-06 03:12:23');
/*!40000 ALTER TABLE `form_configurations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `form_fields`
--

DROP TABLE IF EXISTS `form_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `form_fields` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_config_id` int(10) unsigned NOT NULL,
  `field_name` varchar(100) NOT NULL COMMENT 'Database column name',
  `field_label` varchar(255) NOT NULL,
  `field_type` enum('text','email','tel','number','textarea','password','select','radio','checkbox','date','datetime','time','file','image','hidden','color','url','search','range','wysiwyg','autocomplete','tags','repeater') NOT NULL DEFAULT 'text',
  `input_type` varchar(50) DEFAULT NULL COMMENT 'HTML input type override',
  `placeholder` varchar(255) DEFAULT NULL,
  `help_text` text DEFAULT NULL,
  `default_value` text DEFAULT NULL,
  `is_required` tinyint(1) DEFAULT 0,
  `validation_rules` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Array of validation rules: min, max, pattern, etc.' CHECK (json_valid(`validation_rules`)),
  `error_message` varchar(255) DEFAULT NULL,
  `options_source` enum('static','database','query') DEFAULT NULL,
  `options_static` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Static options as JSON array' CHECK (json_valid(`options_static`)),
  `options_query` text DEFAULT NULL COMMENT 'SQL query for database options',
  `options_table` varchar(100) DEFAULT NULL COMMENT 'Table name for simple lookups',
  `options_value_column` varchar(100) DEFAULT NULL COMMENT 'Column for option value',
  `options_label_column` varchar(100) DEFAULT NULL COMMENT 'Column for option label',
  `options_filter` text DEFAULT NULL COMMENT 'WHERE clause for options query',
  `display_order` int(11) DEFAULT 0,
  `grid_width` int(11) DEFAULT NULL COMMENT 'Column span in grid layout (1-12)',
  `css_class` varchar(255) DEFAULT NULL,
  `wrapper_class` varchar(255) DEFAULT NULL,
  `attributes` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Additional HTML attributes' CHECK (json_valid(`attributes`)),
  `conditional_field` varchar(100) DEFAULT NULL COMMENT 'Field name this depends on',
  `conditional_value` text DEFAULT NULL COMMENT 'Value to match for display',
  `conditional_operator` enum('equals','not_equals','contains','greater_than','less_than','in') DEFAULT 'equals',
  `permission_required` varchar(100) DEFAULT NULL,
  `readonly_roles` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Roles that can only view this field' CHECK (json_valid(`readonly_roles`)),
  `hidden_roles` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Roles that cannot see this field' CHECK (json_valid(`hidden_roles`)),
  `is_active` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_form_config` (`form_config_id`),
  KEY `idx_display_order` (`display_order`),
  KEY `idx_field_name` (`field_name`),
  KEY `idx_active` (`is_active`),
  CONSTRAINT `form_fields_ibfk_1` FOREIGN KEY (`form_config_id`) REFERENCES `form_configurations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=145 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `form_fields`
--

LOCK TABLES `form_fields` WRITE;
/*!40000 ALTER TABLE `form_fields` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `form_fields` VALUES
(66,11,'sku','SKU','text',NULL,'PROD-001',NULL,NULL,1,'{\"max\": 100, \"min\": 2}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,1,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(67,11,'name','Product Name','text',NULL,'Enter product name',NULL,NULL,1,'{\"max\": 255, \"min\": 2}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,2,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(68,11,'category_id','Category','select',NULL,NULL,NULL,NULL,0,NULL,NULL,'database',NULL,NULL,'product_categories','id','name',NULL,3,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(69,11,'product_type','Product Type','select',NULL,NULL,NULL,NULL,1,NULL,NULL,'static','{\"goods\": \"Goods\", \"digital\": \"Digital\", \"service\": \"Service\"}',NULL,NULL,NULL,NULL,NULL,4,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(70,11,'unit_of_measure','Unit of Measure','text',NULL,'ea, lb, kg, etc.',NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,5,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(71,11,'barcode','Barcode','text',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,6,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(72,11,'cost_price','Cost Price','number',NULL,'0.00',NULL,NULL,0,'{\"min_value\": 0}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,7,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(73,11,'selling_price','Selling Price','number',NULL,'0.00',NULL,NULL,0,'{\"min_value\": 0}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,8,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(74,11,'tax_rate','Tax Rate (%)','number',NULL,'0',NULL,NULL,0,'{\"max_value\": 100, \"min_value\": 0}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,9,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(75,11,'reorder_level','Reorder Level','number',NULL,'0',NULL,NULL,0,'{\"min_value\": 0}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,10,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(76,11,'status','Status','select',NULL,NULL,NULL,NULL,1,NULL,NULL,'static','{\"active\": \"Active\", \"inactive\": \"Inactive\", \"discontinued\": \"Discontinued\"}',NULL,NULL,NULL,NULL,NULL,11,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(77,11,'description','Description','textarea',NULL,'Product description',NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,12,12,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(78,11,'image','Product Image','image',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,13,12,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(79,12,'sku','SKU','text',NULL,'PROD-001',NULL,NULL,1,'{\"max\": 100, \"min\": 2}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,1,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(80,12,'name','Product Name','text',NULL,'Enter product name',NULL,NULL,1,'{\"max\": 255, \"min\": 2}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,2,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(81,12,'category_id','Category','select',NULL,NULL,NULL,NULL,0,NULL,NULL,'database',NULL,NULL,'product_categories','id','name',NULL,3,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(82,12,'product_type','Product Type','select',NULL,NULL,NULL,NULL,1,NULL,NULL,'static','{\"goods\": \"Goods\", \"digital\": \"Digital\", \"service\": \"Service\"}',NULL,NULL,NULL,NULL,NULL,4,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(83,12,'unit_of_measure','Unit of Measure','text',NULL,'ea, lb, kg, etc.',NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,5,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(84,12,'barcode','Barcode','text',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,6,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(85,12,'cost_price','Cost Price','number',NULL,'0.00',NULL,NULL,0,'{\"min_value\": 0}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,7,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(86,12,'selling_price','Selling Price','number',NULL,'0.00',NULL,NULL,0,'{\"min_value\": 0}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,8,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(87,12,'tax_rate','Tax Rate (%)','number',NULL,'0',NULL,NULL,0,'{\"max_value\": 100, \"min_value\": 0}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,9,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(88,12,'reorder_level','Reorder Level','number',NULL,'0',NULL,NULL,0,'{\"min_value\": 0}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,10,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(89,12,'status','Status','select',NULL,NULL,NULL,NULL,1,NULL,NULL,'static','{\"active\": \"Active\", \"inactive\": \"Inactive\", \"discontinued\": \"Discontinued\"}',NULL,NULL,NULL,NULL,NULL,11,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(90,12,'description','Description','textarea',NULL,'Product description',NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,12,12,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(91,12,'image','Product Image','image',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,13,12,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(92,13,'company_name','Company Name','text',NULL,'Enter company name',NULL,NULL,1,'{\"max\": 255, \"min\": 2}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,1,12,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(93,13,'contact_person','Contact Person','text',NULL,'John Doe',NULL,NULL,0,'{\"max\": 200}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,2,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(94,13,'email','Email','email',NULL,'supplier@example.com',NULL,NULL,1,'{\"email\": true}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,3,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(95,13,'phone','Phone','tel',NULL,'(555) 123-4567',NULL,NULL,0,'{\"pattern\": \"[0-9()-]+\"}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,4,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(96,13,'website','Website','url',NULL,'https://',NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,5,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(97,13,'tax_id','Tax ID','text',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,6,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(98,13,'payment_terms','Payment Terms','text',NULL,'Net 30',NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,7,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(99,13,'status','Status','select',NULL,NULL,NULL,NULL,1,NULL,NULL,'static','{\"active\": \"Active\", \"inactive\": \"Inactive\"}',NULL,NULL,NULL,NULL,NULL,8,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(100,13,'address','Address','textarea',NULL,'Street address',NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,9,12,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(101,13,'city','City','text',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,10,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(102,13,'state','State','text',NULL,'CA',NULL,NULL,0,'{\"max\": 2}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,11,3,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(103,13,'zip','ZIP Code','text',NULL,'12345',NULL,NULL,0,'{\"pattern\": \"[0-9]{5}\"}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,12,3,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(104,13,'country','Country','text',NULL,'USA',NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,13,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(105,13,'notes','Notes','textarea',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,14,12,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(106,14,'employee_id','Employee ID','text',NULL,'Leave blank for auto-generation','Auto-generated if left blank',NULL,0,'{\"max\": 50, \"min\": 2}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,1,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,0,'2025-11-06 03:12:23','2025-11-06 03:23:31'),
(107,14,'first_name','First Name','text',NULL,NULL,NULL,NULL,1,'{\"max\": 100, \"min\": 2}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,2,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(108,14,'last_name','Last Name','text',NULL,NULL,NULL,NULL,1,'{\"max\": 100, \"min\": 2}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,3,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(109,14,'email','Email','email',NULL,'john.doe@m.one','Format: username@m.one',NULL,1,'{\"email\": true, \"pattern\": \"^[a-zA-Z0-9._%+-]+@m\\\\.one$\"}','Email must use corporate domain: @m.one','static',NULL,NULL,NULL,NULL,NULL,NULL,4,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:19:49'),
(110,14,'phone','Phone','tel',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,5,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(111,14,'department_id','Department','select',NULL,NULL,NULL,NULL,0,NULL,NULL,'database',NULL,NULL,'departments','id','name',NULL,6,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(112,14,'position_id','Position','select',NULL,'Software Engineer',NULL,NULL,0,NULL,NULL,'query',NULL,'SELECT id as value, CONCAT(title, \" (\", COALESCE(department, \"No Dept\"), \")\") as label FROM positions WHERE is_active = 1 ORDER BY department, title',NULL,NULL,NULL,NULL,7,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-08 13:56:47'),
(113,14,'hire_date','Hire Date','date',NULL,NULL,NULL,NULL,1,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,8,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(114,14,'salary','Salary','number',NULL,'0.00',NULL,NULL,0,'{\"min_value\": 0}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,9,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(115,14,'salary_type','Salary Type','select',NULL,NULL,NULL,NULL,0,NULL,NULL,'static','{\"hourly\": \"Hourly\", \"yearly\": \"Yearly\", \"monthly\": \"Monthly\"}',NULL,NULL,NULL,NULL,NULL,10,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(116,14,'status','Status','select',NULL,NULL,NULL,NULL,1,NULL,NULL,'static','{\"active\": \"Active\", \"on_leave\": \"On Leave\", \"terminated\": \"Terminated\"}',NULL,NULL,NULL,NULL,NULL,11,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(117,15,'order_number','Order Number','text',NULL,'SO-001','Auto-generated if left blank',NULL,1,'{\"max\": 50, \"min\": 2}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,1,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(118,15,'customer_id','Customer','select',NULL,NULL,NULL,NULL,1,NULL,NULL,'query',NULL,'SELECT id as value, CASE WHEN customer_type = \"company\" AND company_name IS NOT NULL THEN CONCAT(company_name, \" - \", email) WHEN customer_type = \"individual\" THEN CONCAT(first_name, \" \", last_name, \" - \", email) ELSE CONCAT(COALESCE(company_name, CONCAT(first_name, \" \", last_name)), \" - \", email) END as label FROM customers WHERE status = \"active\" UNION ALL SELECT id as value, CASE WHEN client_type = \"company\" AND company_name IS NOT NULL THEN CONCAT(company_name, \" - \", email) WHEN client_type = \"individual\" THEN CONCAT(first_name, \" \", last_name, \" - \", email) ELSE CONCAT(COALESCE(company_name, CONCAT(first_name, \" \", last_name)), \" - \", email) END as label FROM clients WHERE status = \"active\" ORDER BY label',NULL,'id','CONCAT(first_name, \" \", last_name, IF(company_name IS NOT NULL, CONCAT(\" (\", company_name, \")\"), \"\")',NULL,2,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-13 16:55:44'),
(119,15,'order_date','Order Date','date',NULL,NULL,NULL,NULL,1,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,3,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(120,15,'delivery_date','Expected Delivery','date',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,4,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(121,15,'status','Status','select',NULL,NULL,NULL,'draft',1,NULL,NULL,'static','{\"draft\": \"Draft\", \"shipped\": \"Shipped\", \"cancelled\": \"Cancelled\", \"confirmed\": \"Confirmed\", \"delivered\": \"Delivered\", \"processing\": \"Processing\"}',NULL,NULL,NULL,NULL,NULL,5,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(122,15,'notes','Notes','textarea',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,6,12,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(123,16,'po_number','PO Number','text',NULL,'PO-001','Auto-generated if left blank',NULL,1,'{\"max\": 50, \"min\": 2}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,1,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(124,16,'supplier_id','Supplier','select',NULL,NULL,NULL,NULL,1,NULL,NULL,'database',NULL,NULL,'suppliers','id','company_name',NULL,2,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(125,16,'order_date','Order Date','date',NULL,NULL,NULL,NULL,1,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,3,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(126,16,'expected_delivery','Expected Delivery','date',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,4,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(127,16,'status','Status','select',NULL,NULL,NULL,'draft',1,NULL,NULL,'static','{\"sent\": \"Sent\", \"draft\": \"Draft\", \"received\": \"Received\", \"cancelled\": \"Cancelled\", \"confirmed\": \"Confirmed\"}',NULL,NULL,NULL,NULL,NULL,5,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(128,16,'notes','Notes','textarea',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,6,12,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(129,17,'wo_number','WO Number','text',NULL,'WO-001','Auto-generated if left blank',NULL,1,'{\"max\": 50, \"min\": 2}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,1,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(130,17,'product_id','Product to Manufacture','select',NULL,NULL,NULL,NULL,1,NULL,NULL,'database',NULL,NULL,'products','id','CONCAT(sku, \" - \", name)','product_type = \"goods\"',2,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(131,17,'bom_id','Bill of Materials','select',NULL,NULL,'Select BOM version',NULL,0,NULL,NULL,'database',NULL,NULL,'bill_of_materials','id','CONCAT(name, \" (v\", version, \")\")','status = \"active\"',3,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(132,17,'quantity','Quantity','number',NULL,'1',NULL,NULL,1,'{\"min_value\": 1}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,4,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(133,17,'start_date','Start Date','date',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,5,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(134,17,'end_date','Expected End Date','date',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,6,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(135,17,'status','Status','select',NULL,NULL,NULL,'planned',1,NULL,NULL,'static','{\"planned\": \"Planned\", \"cancelled\": \"Cancelled\", \"completed\": \"Completed\", \"in_progress\": \"In Progress\"}',NULL,NULL,NULL,NULL,NULL,7,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(136,17,'notes','Notes','textarea',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,8,12,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(137,18,'invoice_number','Invoice Number','text',NULL,'INV-001','Auto-generated if left blank',NULL,1,'{\"max\": 50, \"min\": 2}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,1,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(138,18,'customer_id','Customer','select',NULL,NULL,NULL,NULL,1,NULL,NULL,'database',NULL,NULL,'customers','id','CONCAT(first_name, \" \", last_name, IF(company_name IS NOT NULL, CONCAT(\" (\", company_name, \")\"), \"\")',NULL,2,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(139,18,'order_id','Sales Order','select',NULL,NULL,'Optional',NULL,0,NULL,NULL,'database',NULL,NULL,'sales_orders','id','order_number','status IN (\"confirmed\", \"delivered\")',3,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(140,18,'invoice_date','Invoice Date','date',NULL,NULL,NULL,NULL,1,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,4,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(141,18,'due_date','Due Date','date',NULL,NULL,NULL,NULL,1,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,5,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(142,18,'status','Status','select',NULL,NULL,NULL,'draft',1,NULL,NULL,'static','{\"paid\": \"Paid\", \"sent\": \"Sent\", \"draft\": \"Draft\", \"overdue\": \"Overdue\", \"partial\": \"Partial\", \"cancelled\": \"Cancelled\"}',NULL,NULL,NULL,NULL,NULL,6,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(143,18,'notes','Notes','textarea',NULL,NULL,'Internal notes',NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,7,12,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(144,18,'terms','Terms & Conditions','textarea',NULL,NULL,'Displayed on invoice',NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,8,12,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23');
/*!40000 ALTER TABLE `form_fields` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `general_contacts`
--

DROP TABLE IF EXISTS `general_contacts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `general_contacts` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `first_name` varchar(100) NOT NULL,
  `last_name` varchar(100) NOT NULL,
  `email` varchar(255) DEFAULT NULL,
  `secondary_email` varchar(255) DEFAULT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `mobile` varchar(20) DEFAULT NULL,
  `position` varchar(100) DEFAULT NULL,
  `company` varchar(255) DEFAULT NULL COMMENT 'Company name if they work somewhere not in our system',
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_email` (`email`),
  KEY `idx_created_by` (`created_by`),
  CONSTRAINT `general_contacts_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `general_contacts`
--

LOCK TABLES `general_contacts` WRITE;
/*!40000 ALTER TABLE `general_contacts` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `general_contacts` VALUES
(1,'Test','Guy','test@guy.com',NULL,'1231231231',NULL,'tester','','',1,'2025-11-24 17:41:03','2025-11-24 17:41:03');
/*!40000 ALTER TABLE `general_contacts` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `goods_receipt_items`
--

DROP TABLE IF EXISTS `goods_receipt_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `goods_receipt_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `grn_id` int(10) unsigned NOT NULL,
  `po_item_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `quantity_ordered` int(11) NOT NULL,
  `quantity_received` int(11) NOT NULL,
  `quantity_accepted` int(11) NOT NULL DEFAULT 0,
  `quantity_rejected` int(11) NOT NULL DEFAULT 0,
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `grn_id` (`grn_id`),
  KEY `po_item_id` (`po_item_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `goods_receipt_items_ibfk_1` FOREIGN KEY (`grn_id`) REFERENCES `goods_receipts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `goods_receipt_items_ibfk_2` FOREIGN KEY (`po_item_id`) REFERENCES `purchase_order_items` (`id`),
  CONSTRAINT `goods_receipt_items_ibfk_3` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `goods_receipt_items`
--

LOCK TABLES `goods_receipt_items` WRITE;
/*!40000 ALTER TABLE `goods_receipt_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `goods_receipt_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `goods_receipts`
--

DROP TABLE IF EXISTS `goods_receipts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `goods_receipts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `grn_number` varchar(50) NOT NULL,
  `po_id` int(10) unsigned NOT NULL,
  `supplier_id` int(10) unsigned NOT NULL,
  `receipt_date` date NOT NULL,
  `location_id` int(10) unsigned DEFAULT NULL,
  `status` enum('draft','received','inspected','accepted','rejected') DEFAULT 'draft',
  `notes` text DEFAULT NULL,
  `received_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `grn_number` (`grn_number`),
  KEY `po_id` (`po_id`),
  KEY `supplier_id` (`supplier_id`),
  KEY `location_id` (`location_id`),
  KEY `received_by` (`received_by`),
  CONSTRAINT `goods_receipts_ibfk_1` FOREIGN KEY (`po_id`) REFERENCES `purchase_orders` (`id`),
  CONSTRAINT `goods_receipts_ibfk_2` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`),
  CONSTRAINT `goods_receipts_ibfk_3` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE SET NULL,
  CONSTRAINT `goods_receipts_ibfk_4` FOREIGN KEY (`received_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `goods_receipts`
--

LOCK TABLES `goods_receipts` WRITE;
/*!40000 ALTER TABLE `goods_receipts` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `goods_receipts` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `help_desk_attachments`
--

DROP TABLE IF EXISTS `help_desk_attachments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `help_desk_attachments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ticket_id` int(10) unsigned NOT NULL,
  `file_name` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_size` int(11) DEFAULT NULL,
  `uploaded_by` int(10) unsigned NOT NULL,
  `uploaded_at` timestamp NULL DEFAULT current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `uploaded_by` (`uploaded_by`),
  KEY `idx_ticket` (`ticket_id`),
  CONSTRAINT `help_desk_attachments_ibfk_1` FOREIGN KEY (`ticket_id`) REFERENCES `help_desk_tickets` (`id`) ON DELETE CASCADE,
  CONSTRAINT `help_desk_attachments_ibfk_2` FOREIGN KEY (`uploaded_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `help_desk_attachments`
--

LOCK TABLES `help_desk_attachments` WRITE;
/*!40000 ALTER TABLE `help_desk_attachments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `help_desk_attachments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `help_desk_categories`
--

DROP TABLE IF EXISTS `help_desk_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `help_desk_categories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `description` text DEFAULT NULL,
  `color` varchar(20) DEFAULT '#007bff',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `help_desk_categories`
--

LOCK TABLES `help_desk_categories` WRITE;
/*!40000 ALTER TABLE `help_desk_categories` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `help_desk_categories` VALUES
(1,'Technical Support','Technical issues and bugs','#dc3545','2025-11-04 12:18:35','2025-11-11 00:36:45'),
(2,'Feature Request','New feature requests','#28a745','2025-11-04 12:18:35','2025-11-11 00:36:45'),
(3,'Question','General questions','#17a2b8','2025-11-04 12:18:35','2025-11-11 00:36:45'),
(4,'Bug Report','Software bugs and errors','#ffc107','2025-11-04 12:18:35','2025-11-11 00:36:45'),
(5,'Other','Other inquiries','#6c757d','2025-11-04 12:18:35','2025-11-11 00:36:45');
/*!40000 ALTER TABLE `help_desk_categories` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `help_desk_comments`
--

DROP TABLE IF EXISTS `help_desk_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `help_desk_comments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ticket_id` int(10) unsigned NOT NULL,
  `comment` text NOT NULL,
  `is_internal` tinyint(1) DEFAULT 0,
  `created_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `created_by` (`created_by`),
  KEY `idx_ticket` (`ticket_id`),
  CONSTRAINT `help_desk_comments_ibfk_1` FOREIGN KEY (`ticket_id`) REFERENCES `help_desk_tickets` (`id`) ON DELETE CASCADE,
  CONSTRAINT `help_desk_comments_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `help_desk_comments`
--

LOCK TABLES `help_desk_comments` WRITE;
/*!40000 ALTER TABLE `help_desk_comments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `help_desk_comments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `help_desk_tickets`
--

DROP TABLE IF EXISTS `help_desk_tickets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `help_desk_tickets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ticket_number` varchar(50) NOT NULL,
  `subject` varchar(255) NOT NULL,
  `description` text NOT NULL,
  `category_id` int(10) unsigned DEFAULT NULL,
  `priority` enum('low','normal','high','urgent') DEFAULT 'normal',
  `status` enum('open','in_progress','waiting_response','resolved','closed') DEFAULT 'open',
  `assigned_to` int(10) unsigned DEFAULT NULL,
  `created_by` int(10) unsigned NOT NULL,
  `resolved_at` datetime DEFAULT NULL,
  `closed_at` datetime DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `ticket_number` (`ticket_number`),
  KEY `idx_category` (`category_id`),
  KEY `idx_assigned` (`assigned_to`),
  KEY `idx_status` (`status`),
  KEY `idx_priority` (`priority`),
  KEY `idx_created_by` (`created_by`),
  CONSTRAINT `help_desk_tickets_ibfk_1` FOREIGN KEY (`category_id`) REFERENCES `help_desk_categories` (`id`) ON DELETE SET NULL,
  CONSTRAINT `help_desk_tickets_ibfk_2` FOREIGN KEY (`assigned_to`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `help_desk_tickets_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `help_desk_tickets`
--

LOCK TABLES `help_desk_tickets` WRITE;
/*!40000 ALTER TABLE `help_desk_tickets` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `help_desk_tickets` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `inspection_checkpoints`
--

DROP TABLE IF EXISTS `inspection_checkpoints`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `inspection_checkpoints` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `inspection_id` int(10) unsigned NOT NULL,
  `checkpoint_name` varchar(255) NOT NULL,
  `specification` text DEFAULT NULL,
  `measurement_type` enum('pass_fail','numeric','visual','dimensional') DEFAULT 'pass_fail',
  `target_value` decimal(10,3) DEFAULT NULL,
  `tolerance_min` decimal(10,3) DEFAULT NULL,
  `tolerance_max` decimal(10,3) DEFAULT NULL,
  `sequence_order` int(11) DEFAULT 0,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_inspection` (`inspection_id`),
  CONSTRAINT `inspection_checkpoints_ibfk_1` FOREIGN KEY (`inspection_id`) REFERENCES `quality_inspections` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inspection_checkpoints`
--

LOCK TABLES `inspection_checkpoints` WRITE;
/*!40000 ALTER TABLE `inspection_checkpoints` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `inspection_checkpoints` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `inspection_results`
--

DROP TABLE IF EXISTS `inspection_results`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `inspection_results` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `inspection_id` int(10) unsigned NOT NULL,
  `checkpoint_id` int(10) unsigned NOT NULL,
  `result` enum('pass','fail','na') NOT NULL,
  `measured_value` decimal(10,3) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `recorded_by` int(10) unsigned DEFAULT NULL,
  `recorded_at` datetime DEFAULT current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_inspection` (`inspection_id`),
  KEY `idx_checkpoint` (`checkpoint_id`),
  KEY `recorded_by` (`recorded_by`),
  CONSTRAINT `inspection_results_ibfk_1` FOREIGN KEY (`inspection_id`) REFERENCES `quality_inspections` (`id`) ON DELETE CASCADE,
  CONSTRAINT `inspection_results_ibfk_2` FOREIGN KEY (`checkpoint_id`) REFERENCES `inspection_checkpoints` (`id`) ON DELETE CASCADE,
  CONSTRAINT `inspection_results_ibfk_3` FOREIGN KEY (`recorded_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inspection_results`
--

LOCK TABLES `inspection_results` WRITE;
/*!40000 ALTER TABLE `inspection_results` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `inspection_results` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `inspection_templates`
--

DROP TABLE IF EXISTS `inspection_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `inspection_templates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `inspection_type` enum('receiving','in_process','final','audit') DEFAULT 'final',
  `is_active` tinyint(1) DEFAULT 1,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_active` (`is_active`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `inspection_templates_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inspection_templates`
--

LOCK TABLES `inspection_templates` WRITE;
/*!40000 ALTER TABLE `inspection_templates` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `inspection_templates` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `internal_notes`
--

DROP TABLE IF EXISTS `internal_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `internal_notes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `related_type` varchar(50) NOT NULL,
  `related_id` int(10) unsigned NOT NULL,
  `note_text` text NOT NULL,
  `created_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `is_pinned` tinyint(1) DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `idx_created_by` (`created_by`),
  KEY `idx_created_at` (`created_at`),
  KEY `idx_pinned` (`is_pinned`),
  CONSTRAINT `fk_internal_notes_user` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `internal_notes`
--

LOCK TABLES `internal_notes` WRITE;
/*!40000 ALTER TABLE `internal_notes` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `internal_notes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `interview_schedules`
--

DROP TABLE IF EXISTS `interview_schedules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `interview_schedules` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `application_id` int(10) unsigned NOT NULL,
  `interview_type` enum('phone-screen','video','in-person','technical','behavioral','panel','final') DEFAULT 'phone-screen',
  `scheduled_date` datetime NOT NULL,
  `duration_minutes` int(11) DEFAULT 60,
  `location` varchar(255) DEFAULT NULL COMMENT 'Office location, Zoom link, etc',
  `interviewer_ids` text DEFAULT NULL COMMENT 'JSON array of user IDs',
  `interviewer_names` text DEFAULT NULL COMMENT 'Names of interviewers',
  `status` enum('scheduled','completed','cancelled','no-show','rescheduled') DEFAULT 'scheduled',
  `notes` text DEFAULT NULL,
  `feedback` text DEFAULT NULL,
  `rating` decimal(3,2) DEFAULT NULL COMMENT 'Rating out of 5.00',
  `recommendation` enum('strong-hire','hire','maybe','no-hire','strong-no-hire') DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_application` (`application_id`),
  KEY `idx_scheduled_date` (`scheduled_date`),
  KEY `idx_status` (`status`),
  CONSTRAINT `interview_schedules_ibfk_1` FOREIGN KEY (`application_id`) REFERENCES `job_applications` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `interview_schedules`
--

LOCK TABLES `interview_schedules` WRITE;
/*!40000 ALTER TABLE `interview_schedules` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `interview_schedules` VALUES
(1,1,'video','2025-11-07 12:30:00',60,'',NULL,'John Smith, Johan Smith, Julie Smith','scheduled','',NULL,NULL,NULL,'2025-11-02 12:29:20','2025-11-02 12:29:20');
/*!40000 ALTER TABLE `interview_schedules` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `inventory`
--

DROP TABLE IF EXISTS `inventory`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `inventory` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `product_id` int(10) unsigned NOT NULL,
  `location_id` int(10) unsigned NOT NULL,
  `quantity` int(11) NOT NULL DEFAULT 0,
  `reserved_quantity` int(11) NOT NULL DEFAULT 0,
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `product_location` (`product_id`,`location_id`),
  KEY `location_id` (`location_id`),
  CONSTRAINT `inventory_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE,
  CONSTRAINT `inventory_ibfk_2` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory`
--

LOCK TABLES `inventory` WRITE;
/*!40000 ALTER TABLE `inventory` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `inventory` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `inventory_transactions`
--

DROP TABLE IF EXISTS `inventory_transactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `inventory_transactions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `product_id` int(10) unsigned NOT NULL,
  `location_id` int(10) unsigned NOT NULL,
  `transaction_type` enum('in','out','adjustment','transfer') NOT NULL,
  `quantity` int(11) NOT NULL,
  `reference_type` varchar(50) DEFAULT NULL,
  `reference_id` int(10) unsigned DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `product_id` (`product_id`),
  KEY `user_id` (`user_id`),
  KEY `location_id` (`location_id`),
  CONSTRAINT `inventory_transactions_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE,
  CONSTRAINT `inventory_transactions_ibfk_2` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE CASCADE,
  CONSTRAINT `inventory_transactions_ibfk_3` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_transactions`
--

LOCK TABLES `inventory_transactions` WRITE;
/*!40000 ALTER TABLE `inventory_transactions` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `inventory_transactions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `invoice_items`
--

DROP TABLE IF EXISTS `invoice_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `invoice_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `invoice_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned DEFAULT NULL,
  `description` text NOT NULL,
  `quantity` int(11) NOT NULL,
  `unit_price` decimal(15,2) NOT NULL,
  `tax_rate` decimal(5,2) DEFAULT 0.00,
  `line_total` decimal(15,2) NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `invoice_id` (`invoice_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `invoice_items_ibfk_1` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE CASCADE,
  CONSTRAINT `invoice_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `invoice_items`
--

LOCK TABLES `invoice_items` WRITE;
/*!40000 ALTER TABLE `invoice_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `invoice_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `invoices`
--

DROP TABLE IF EXISTS `invoices`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `invoices` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `invoice_number` varchar(50) NOT NULL,
  `customer_id` int(10) unsigned NOT NULL,
  `order_id` int(10) unsigned DEFAULT NULL,
  `invoice_date` date NOT NULL,
  `due_date` date NOT NULL,
  `status` enum('draft','sent','paid','partial','overdue','cancelled') DEFAULT 'draft',
  `subtotal` decimal(15,2) DEFAULT 0.00,
  `tax_amount` decimal(15,2) DEFAULT 0.00,
  `tax_rate` decimal(5,2) DEFAULT 0.00,
  `discount_amount` decimal(15,2) DEFAULT 0.00,
  `total_amount` decimal(15,2) DEFAULT 0.00,
  `paid_amount` decimal(15,2) DEFAULT 0.00,
  `balance` decimal(15,2) DEFAULT 0.00,
  `notes` text DEFAULT NULL,
  `terms` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  `last_notified_at` datetime DEFAULT NULL COMMENT 'Last payment reminder sent',
  `notification_level` varchar(20) DEFAULT NULL COMMENT 'Current notification level: 3day, 1day, due, overdue_7, overdue_30',
  PRIMARY KEY (`id`),
  UNIQUE KEY `invoice_number` (`invoice_number`),
  KEY `customer_id` (`customer_id`),
  KEY `order_id` (`order_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_invoices_due_notification` (`due_date`,`status`,`last_notified_at`),
  KEY `idx_deleted_at` (`deleted_at`),
  KEY `idx_search_status` (`status`,`invoice_date`),
  FULLTEXT KEY `ft_invoice_search` (`invoice_number`,`notes`),
  CONSTRAINT `invoices_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`),
  CONSTRAINT `invoices_ibfk_2` FOREIGN KEY (`order_id`) REFERENCES `sales_orders` (`id`) ON DELETE SET NULL,
  CONSTRAINT `invoices_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `invoices`
--

LOCK TABLES `invoices` WRITE;
/*!40000 ALTER TABLE `invoices` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `invoices` VALUES
(23,'INV-20251124-1515',112,NULL,'2025-11-24','2026-01-23','draft',0.00,0.00,0.00,0.00,0.00,0.00,0.00,'','',1,'2025-11-24 19:36:41','2025-11-24 19:37:05','2025-11-24 19:37:05',NULL,NULL);
/*!40000 ALTER TABLE `invoices` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `job_applications`
--

DROP TABLE IF EXISTS `job_applications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `job_applications` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `job_position_id` int(10) unsigned NOT NULL,
  `applicant_name` varchar(255) NOT NULL,
  `email` varchar(255) NOT NULL,
  `phone` varchar(50) DEFAULT NULL,
  `resume_path` varchar(500) DEFAULT NULL,
  `cover_letter_path` varchar(500) DEFAULT NULL,
  `linkedin_url` varchar(500) DEFAULT NULL,
  `portfolio_url` varchar(500) DEFAULT NULL,
  `years_experience` int(11) DEFAULT NULL,
  `current_company` varchar(255) DEFAULT NULL,
  `current_title` varchar(255) DEFAULT NULL,
  `expected_salary` decimal(12,2) DEFAULT NULL,
  `available_from` date DEFAULT NULL,
  `source` enum('website','linkedin','indeed','referral','agency','career-fair','other') DEFAULT 'website',
  `status` enum('new','screening','interviewing','assessment','offer','hired','rejected','withdrawn') DEFAULT 'new',
  `notes` text DEFAULT NULL,
  `applied_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_job_position` (`job_position_id`),
  KEY `idx_status` (`status`),
  KEY `idx_email` (`email`),
  KEY `idx_applied_at` (`applied_at`),
  CONSTRAINT `job_applications_ibfk_1` FOREIGN KEY (`job_position_id`) REFERENCES `job_positions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `job_applications`
--

LOCK TABLES `job_applications` WRITE;
/*!40000 ALTER TABLE `job_applications` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `job_applications` VALUES
(1,1,'Test Er','test@tester.com','',NULL,NULL,'','',NULL,NULL,NULL,NULL,NULL,'linkedin','new','','2025-11-02 12:27:21','2025-11-02 12:27:21','2025-11-11 00:36:44');
/*!40000 ALTER TABLE `job_applications` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `job_positions`
--

DROP TABLE IF EXISTS `job_positions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `job_positions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `department` varchar(100) DEFAULT NULL,
  `location_id` int(10) unsigned DEFAULT NULL,
  `employment_type` enum('full-time','part-time','contract','temporary','intern') DEFAULT 'full-time',
  `level` enum('entry','junior','mid','senior','lead','manager','director','executive') DEFAULT 'mid',
  `salary_min` decimal(12,2) DEFAULT NULL,
  `salary_max` decimal(12,2) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `requirements` text DEFAULT NULL,
  `responsibilities` text DEFAULT NULL,
  `benefits` text DEFAULT NULL,
  `status` enum('draft','open','closed','filled','cancelled') DEFAULT 'draft',
  `openings` int(11) DEFAULT 1,
  `posted_date` date DEFAULT NULL,
  `closing_date` date DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `location_id` (`location_id`),
  KEY `idx_status` (`status`),
  KEY `idx_posted_date` (`posted_date`),
  KEY `idx_job_positions_deleted_at` (`deleted_at`),
  CONSTRAINT `job_positions_ibfk_1` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `job_positions`
--

LOCK TABLES `job_positions` WRITE;
/*!40000 ALTER TABLE `job_positions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `job_positions` VALUES
(1,'Senior Software Engineer','IT',2,'full-time','lead',200000.00,250000.00,'Code','Know how to code','Code more','All','open',1,'2025-10-28',NULL,1,'2025-10-28 10:46:20','2025-10-28 10:46:20',NULL);
/*!40000 ALTER TABLE `job_positions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `journal_entries`
--

DROP TABLE IF EXISTS `journal_entries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `journal_entries` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entry_number` varchar(50) NOT NULL,
  `entry_date` date NOT NULL,
  `description` text DEFAULT NULL,
  `name` varchar(200) DEFAULT NULL,
  `split_account` varchar(200) DEFAULT NULL,
  `department` varchar(100) DEFAULT NULL,
  `location` varchar(100) DEFAULT NULL,
  `status` enum('draft','posted','reversed') DEFAULT 'draft',
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  `reference_type` varchar(50) DEFAULT NULL,
  `reference_id` int(11) DEFAULT NULL,
  `project_id` int(10) unsigned DEFAULT NULL COMMENT 'Link JE to specific project',
  PRIMARY KEY (`id`),
  UNIQUE KEY `entry_number` (`entry_number`),
  KEY `created_by` (`created_by`),
  KEY `idx_reference` (`reference_type`,`reference_id`),
  KEY `idx_journal_project` (`project_id`),
  KEY `idx_deleted_at` (`deleted_at`),
  KEY `idx_entry_date` (`entry_date`),
  KEY `idx_deleted_entry_date` (`deleted_at`,`entry_date`),
  CONSTRAINT `journal_entries_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=3241 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `journal_entries`
--

LOCK TABLES `journal_entries` WRITE;
/*!40000 ALTER TABLE `journal_entries` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `journal_entries` VALUES
(645,'BC-00645','2025-01-01','ORIG CO NAME:SBA EIDL LOAN ORIG ID:XXXXXX0118 DESC DATE:241231 CO ENTRY DESCR:PAYMENT SEC:CCD TRACE#:XXXXXXXX2211203 EED:250102 IND ID:0000 IND NAME:NATHAN STAR ON XXXXXX7203 ACH TRANSACTION TRN: XXXXXX1203 TC','EIDL Loan','EIDL Loan','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(646,'BC-00646','2025-01-02','SERVICE CHARGES FOR THE MONTH OF JUNE','Fees Contact - USD','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(647,'BC-00647','2025-01-03','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(648,'BC-00648','2025-01-04','AUTOPAY PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(649,'BC-00649','2025-01-06','Tax Payment for Period: 12/28/2024-12/31/2024','IRS','Federal Taxes (941/944)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(650,'BC-00650','2025-01-06','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','American Express','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(651,'BC-00651','2025-01-06','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250104 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX2909739 EED:250106 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0104PPZ1KM TRN: XXXXXX9739 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(652,'BC-00652','2025-01-07','ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250107 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX8974735 EED:250107 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX4735 TC','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(653,'BC-00653','2025-01-08','','Shenzhen SunFiD New Energy Co., Ltd.','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(654,'BC-00654','2025-01-08','ORIG CO NAME:ALLY ORIG ID:XXXXXX2002 DESC DATE:250108 CO ENTRY DESCR:ALLY PAYMTSEC:CCD TRACE#:XXXXXXXX7292718 EED:250108 IND ID:XXXXXXXX1804 IND NAME:LITHIUM BA TTERY CO TRN: XXXXXX2718 TC','ALLY','N/P Jeep Cherokee 2023','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(655,'BC-00655','2025-01-08','PROGRESSIVE *INSURANC XXX-XXX-4737 OH 01/08','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(656,'BC-00656','2025-01-08','ORIG CO NAME:SolarStik 9905 ORIG ID:XXXXXX4537 DESC DATE: CO ENTRY DESCR:Payments SEC:CCD TRACE#:XXXXXXXX7342490 EED:250108 IND ID: IND NAME:Lithium Battery Co Int REF*1414(SHIPPING)\\ TRN: XXXXXX2490 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(657,'BC-00657','2025-01-08','FEDWIRE CREDIT VIA: BANK OF AMERICA, N.A./XXXXX9593 B/O: 1/JD CAPITAL ADVISORS LLC 3/US/SAINT PETERSBURG X3705 REF: CHASE NYC/CTR/BNF=LITHIUM BATTERY COMPANY IN TL, LLC TAMPA FL XXXX4-800 6 US/AC-XXXXXXXX3316 RFB=XXXXX8276 OBI=LBC EQUITY INVESTMENT IMAD: 0108B6B7HU2RXX5650 TRN: XXXXXX1008 FF','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(658,'BC-00658','2025-01-08','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250106 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX0638159 EED:250108 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX8159 TC','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(659,'BC-00659','2025-01-09','FiverrInc New York NY 01/10','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(660,'BC-00660','2025-01-09','PROPERTYREC.COM XXX-XXX-1102 NM 01/10','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(661,'BC-00661','2025-01-10','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(662,'BC-00662','2025-01-10','Zelle payment to Nate Powell JPM99aui9bi6','','1099 Subcontractor Labor','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(663,'BC-00663','2025-01-10','Zelle payment to Nick Powell JPM99aui9620','','1099 Subcontractor Labor','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(664,'BC-00664','2025-01-10','ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC1414 IMAD: 0110MMQFMP2NXX8286 TRN: XXXXXX5010 ES 0 1/10','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(665,'BC-00665','2025-01-11','PIN CHASERS VETERAN- RE clover.com FL 01/11','','Other Business Expenses','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(666,'BC-00666','2025-01-13','Online Transfer from CHK ...7932 transaction#: XXXXXXX5378','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(667,'BC-00667','2025-01-13','','GSL Energy','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(668,'BC-00668','2025-01-13','FiverrInc XXX-XXX8280 NY 01/13','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(669,'BC-00669','2025-01-13','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(670,'BC-00670','2025-01-13','SHOPIFY* XXXXX4094 HTTPSSHOPIFY. IL 01/13','','Merchant Account Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(671,'BC-00671','2025-01-13','Online Payment XXXXXXX4585 To HMG 4615 01/13','','Rent & Lease Expense','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(672,'BC-00672','2025-01-14','System-recorded deposit for QuickBooks Payments','Dave Schmaltz','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(673,'BC-00673','2025-01-14','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(674,'BC-00674','2025-01-15','Pay Period: 01/01/2025-01/15/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(675,'BC-00675','2025-01-15','Pay Period: 01/01/2025-01/15/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(676,'BC-00676','2025-01-15','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(677,'BC-00677','2025-01-15','ORIG CO NAME:PAYCARGO ORIG ID:XXXXXX5101 DESC DATE: CO ENTRY DESCR:ACHPAYMENTSEC:CCD TRACE#:XXXXXXXX4180456 EED:250115 IND ID:BATCH XXX1074 IND NAME:LITHIUM BAT TERY COMPAN NACHA 100A TRN: XXXXXX0456 TC','PayCargo, LLC','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(678,'BC-00678','2025-01-15','ORIG CO NAME:Rocket Money ORIG ID:1800948598 DESC DATE:       CO ENTRY DESCR:Premium   SEC:CCD    TRACE#:091000018457040 EED:220915   IND ID:ST-U5U8S2J1C9U2              IND NAME:ROCKET MONEY INC TRN: 2588457040TC','Rocket Money','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(679,'BC-00679','2025-01-15','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','American Express','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(680,'BC-00680','2025-01-15','WOO-XXXXXX9521 WOOCOMMERCE.C CA 01/15','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(681,'BC-00681','2025-01-16','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX4802658 EED:250116 IND ID: IND NAME:Lithium Battery Co Tran saction Expense Reimbursement TRN: XXXXXX2658 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(682,'BC-00682','2025-01-16','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','American Express','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(683,'BC-00683','2025-01-16','WOO-XXXXXX9521 SAN FRANCISCO CA 01/16','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(684,'BC-00684','2025-01-16','FiverrInc XXX-XXX8280 NY 01/16','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(685,'BC-00685','2025-01-16','ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC1418 IMAD: 0116MMQFMP2KXX0990 TRN: XXXXXX5016 ES 0 1/16','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(686,'BC-00686','2025-01-17','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(687,'BC-00687','2025-01-17','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX9468674 EED:250117 IND ID: IND NAME:Lithium Battery Co Tran saction Expense Reimbursement TRN: XXXXXX8674 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(688,'BC-00688','2025-01-17','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','American Express','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(689,'BC-00689','2025-01-17','MOBILE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(690,'BC-00690','2025-01-21','FiverrInc XXX-XXX8280 NY 01/21','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(691,'BC-00691','2025-01-21','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250118 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX1856716 EED:250121 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0118PPZL8B TRN: XXXXXX6716 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(692,'BC-00692','2025-01-22','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250122 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX8499699 EED:250122 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0122PPZ6ZX TRN: XXXXXX9699 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(693,'BC-00693','2025-01-22','REMOTE ONLINE DEPOSIT # 1','','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(694,'BC-00694','2025-01-23','PROGRESSIVE INS XXX-XXX-4737 OH 01/23','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(695,'BC-00695','2025-01-23','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX0317625 EED:250123 IND ID: IND NAME:Lithium Battery Co Supp lemental OWC TRN: XXXXXX7625 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(696,'BC-00696','2025-01-23','ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250123 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX3867486 EED:250123 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX7486 TC','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(697,'BC-00697','2025-01-23','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250122 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX1204033 EED:250123 IND ID:PXXXX4506 IND NAME:STAR ON, NATHAN TRN: XXXXXX4033 TC','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(698,'BC-00698','2025-01-23','Online ACH Payment XXXXXXX3042 To TBFTZ (_#########4153)\nTampa Bay Port Authority - FTZ','TBAFTZ','Business Licenses and Permits','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(699,'BC-00699','2025-01-24','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(700,'BC-00700','2025-01-24','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX5844380 EED:250124 IND ID: IND NAME:Lithium Battery Co LBC Payroll TRN: XXXXXX4380 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(701,'BC-00701','2025-01-24','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX9370005 EED:250124 IND ID: IND NAME:Lithium Battery Co FTZ No. 79 Application TRN: XXXXXX0005 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(702,'BC-00702','2025-01-24','Zelle payment to Nick Powell JPM99avvedsf','','1099 Subcontractor Labor','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(703,'BC-00703','2025-01-24','ONLINE INTERNATIONAL WIRE TRANSFER A/C: JPMORGAN CHASE BANK N A HONG KONG HONG KONG XX9077 HK REF: LBC PO1429 AND LBC PO1425 INVOICE PAYMENT TRN: XXXXXX5024 ES 0 1/24','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(704,'BC-00704','2025-01-25','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX5941745 EED:250127 IND ID: IND NAME:Lithium Battery Co Insu rance Policy Downpayment TRN: XXXXXX1745 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(705,'BC-00705','2025-01-25','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX5941750 EED:250127 IND ID: IND NAME:Lithium Battery Co Tran saction-Related Legal & OWC TRN: XXXXXX1750 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(706,'BC-00706','2025-01-25','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX5941748 EED:250127 IND ID: IND NAME:Lithium Battery Co Leas ehold Improvements (Facility Fl ooring) TRN: XXXXXX1748 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(707,'BC-00707','2025-01-27','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX8692756 EED:250127 IND ID:ST-W8D0B6O0E6V3 IND NAME:N ATHAN STARON TRN: XXXXXX2756 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(708,'BC-00708','2025-01-28','Online Transfer to CHK ...7932 transaction#: XXXXXXX9694 01/28','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(709,'BC-00709','2025-01-28','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','American Express','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(710,'BC-00710','2025-01-28','ORIG CO NAME:FIRST INSURANCE ORIG ID:XXXXXX7365 DESC DATE: CO ENTRY DESCR:INSURANCE SEC:CCD TRACE#:XXXXXXXX0745263 EED:250128 IND ID:900 -XXXXX7965 IND NAME:Lith ium Battery Compan PBS ACH DEBIT TRN: XXXXXX5263 TC','','General Liability & Business Interruption Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(711,'BC-00711','2025-01-28','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(712,'BC-00712','2025-01-29','ORIG CO NAME:MIDLAND NATIONAL ORIG ID:XXXXXX4570 DESC DATE:250127 CO ENTRY DESCR:INSURANCE SEC:PPD TRACE#:XXXXXXXX9297909 EED:250129 IND ID: IND NAME:LITHIUM BA TTERY COMP TRN: XXXXXX7909 TC','Midland National','Officer\'s Life Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(713,'BC-00713','2025-01-30','Tax Payment for Period: 01/01/2024-12/31/2024','IRS','Federal Unemployment (940)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(714,'BC-00714','2025-01-31','Pay Period: 01/16/2025-01/31/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(715,'BC-00715','2025-01-31','Pay Period: 01/16/2025-01/31/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(716,'BC-00716','2025-01-31','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(717,'BC-00717','2025-01-31','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(718,'BC-00718','2025-02-03','SERVICE CHARGES FOR THE MONTH OF JANUARY','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(719,'BC-00719','2025-02-03','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250203 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX9663387 EED:250203 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0203PPZ82Y TRN: XXXXXX3387 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(720,'BC-00720','2025-02-03','Online RealTime payroll payment XXXXXXX1329 Payment Id REFERENCE#: XXXXXX1329RX to 4900','o','Employee Payroll','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(721,'BC-00721','2025-02-03','Online RealTime payroll payment XXXXXXX1403 Payment Id REFERENCE#: XXXXXX1403RX to 4900','o','Employee Payroll','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(722,'BC-00722','2025-02-04','System-recorded deposit for QuickBooks Payments','Marcus Portillo','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(723,'BC-00723','2025-02-04','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(724,'BC-00724','2025-02-04','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(725,'BC-00725','2025-02-04','ONLINE DOMESTIC WIRE TRANSFER VIA: REGIONS BK/XXXXX5690 A/C: CARGO BROKERS INTL ALANTA GA X0320 US REF: BXXXX2349/A XXXX5781/BNF/LITBATTPA/TIME/08:02 IMAD: 0204 MMQFMP2KXX5383 TRN: XXXXXX5035 ES 02/04','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(726,'BC-00726','2025-02-04','ONLINE DOMESTIC WIRE TRANSFER VIA: REGIONS BK/XXXXX5690 A/C: CARGO BROKERS INTL ALANTA GA X0320 US REF: BXXXX2349 XXXX5780/BNF/LITBATTPA/TIME/08:02 IMAD: 0204MM QFMP2NXX5595 TRN: XXXXXX5035 ES 02/04','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(727,'BC-00727','2025-02-04','Online Transfer to CHK ...2560 transaction#: XXXXXXX4735 02/04','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(728,'BC-00728','2025-02-05','Online Transfer to CHK ...2560 transaction#: XXXXXXX1152 02/05','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(729,'BC-00729','2025-02-06','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(730,'BC-00730','2025-02-07','System-recorded deposit for QuickBooks Payments','Fiona Taylor','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(731,'BC-00731','2025-02-07','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(732,'BC-00732','2025-02-07','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(733,'BC-00733','2025-02-07','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(734,'BC-00734','2025-02-07','Online Transfer to CHK ...2560 transaction#: XXXXXXX8062 02/07','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(735,'BC-00735','2025-02-08','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250206 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX0848924 EED:250210 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX8924 TC','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(736,'BC-00736','2025-02-09','PROPERTYREC.COM XXX-XXX-1102 NM 02/10','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(737,'BC-00737','2025-02-10','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX5600 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX4395459 EED:250210 IND ID:ST-J3E7T7V2W0F2 IND NAME:N ATHAN STARON TRN: XXXXXX5459 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(738,'BC-00738','2025-02-10','ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC1419 IMAD: 0210MMQFMP2LXX8055 TRN: XXXXXX5041 ES 0 2/10','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(739,'BC-00739','2025-02-11','Zelle payment to Michael P JPM99axve8gl','','Parking & Tolls','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(740,'BC-00740','2025-02-11','Zelle payment to Anthony A JPM99axuvfzk','','Parking & Tolls','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(741,'BC-00741','2025-02-11','ONLINE INTERNATIONAL WIRE TRANSFER A/C: JPMORGAN CHASE BANK N A HONG KONG HONG KONG XX9077 HK REF: LBC1434 INVOICE PAYMENT TRN: XXXXXX5042 ES 02/11','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(742,'BC-00742','2025-02-12','SHOPIFY* XXXXX5376 SHOPIFY.COM IL 02/12','','Merchant Account Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(743,'BC-00743','2025-02-13','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(744,'BC-00744','2025-02-13','ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250213 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9167604 EED:250213 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX7604 TC','o','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(745,'BC-00745','2025-02-13','ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250213 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9167603 EED:250213 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX7603 TC','o','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(746,'BC-00746','2025-02-13','ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT (N.S.)/BNF/LITHIUM BATTERY CO IMAD: 021 3MMQFMP2KXX6076 TRN: XXXXXX5044 ES 02/13','Ron Staron - Vendor','Staron Inventory Loan','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(747,'BC-00747','2025-02-13','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX6914437 EED:250213 IND ID: IND NAME:Lithium Battery Co LBC Shareholder Transfer (NS) TRN: XXXXXX4437 TC','o','Owner\'s Investment','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(748,'BC-00748','2025-02-13','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX0988032 EED:250213 IND ID: IND NAME:Lithium Battery Co LBC OWC & NS Temporary Advance TRN: XXXXXX8032 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(749,'BC-00749','2025-02-14','Pay Period: 02/01/2025-02/15/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(750,'BC-00750','2025-02-14','Pay Period: 02/01/2025-02/15/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(751,'BC-00751','2025-02-14','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(752,'BC-00752','2025-02-14','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(753,'BC-00753','2025-02-14','FIORI\'S PIZZA XXX-XXX7788 PA 02/14','','Business meals','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(754,'BC-00754','2025-02-14','FIORI\'S PIZZA XXX-XXX7788 PA 02/14','','Business meals','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(755,'BC-00755','2025-02-15','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX5387968 EED:250218 IND ID: IND NAME:Lithium Battery Co 5201 Faci lity Insurance Payment (2/ 15/25) TRN: XXXXXX7968 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(756,'BC-00756','2025-02-16','Online RealTime payroll payment XXXXXXX6762 Payment Id REFERENCE#: XXXXXX6762RX to 1148','o','Employee Payroll','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(757,'BC-00757','2025-02-18','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(758,'BC-00758','2025-02-18','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250218 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX0388234 EED:250218 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0218PPZ332 TRN: XXXXXX8234 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(759,'BC-00759','2025-02-19','ORIG CO NAME:Rocket Money ORIG ID:XXXXXX5600 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX1818945 EED:250219 IND ID:ST-F1E2A7S1G4L3 IND NAME:ROCKET MONEY INC TRN: XXXXXX8945 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(760,'BC-00760','2025-02-21','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(761,'BC-00761','2025-02-21','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250221 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3971463 EED:250221 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0221PPZ2AZ TRN: XXXXXX1463 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(762,'BC-00762','2025-02-21','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX2171047 EED:250221 IND ID: IND NAME:Lithium Battery Co Jan 2025 Payroll TRN: XXXXXX1047 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(763,'BC-00763','2025-02-22','ORIG CO NAME:SBA EIDL LOAN ORIG ID:XXXXXX0118 DESC DATE:250221 CO ENTRY DESCR:PAYMENT SEC:CCD TRACE#:XXXXXXXX8546940 EED:250224 IND ID:0000 IND NAME:NATHAN STAR ON XXXXXX7203 ACH TRANSACTION TRN: XXXXXX6940 TC','EIDL Loan','EIDL Loan','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(764,'BC-00764','2025-02-22','Zelle payment to Joey M JPM99az1nm4m','','Parking & Tolls','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(765,'BC-00765','2025-02-22','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250221 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX6850342 EED:250224 IND ID:PXXXX8790 IND NAME:STAR ON, NATHAN TRN: XXXXXX0342 TC','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(766,'BC-00766','2025-02-22','NON-CHASE ATM WITHDRAW XX3005 02/XXX1225 RAC','','Office Expenses','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(767,'BC-00767','2025-02-23','PROGRESSIVE INS XXX-XXX-4737 OH 02/23','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(768,'BC-00768','2025-02-24','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX9801081 EED:250224 IND ID:ST-E2O0Y0X4O6B5 IND NAME:N ATHAN STARON TRN: XXXXXX1081 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(769,'BC-00769','2025-02-24','ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250224 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX2688720 EED:250224 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX8720 TC','','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(770,'BC-00770','2025-02-26','ORIG CO NAME:MENESKO, UAB ORIG ID:770510487 C DESC DATE: CO ENTRY DESCR:IAT PAYPALSEC:WEB TRACE#:XXXXXXXX3977000 EED:250226 IND ID:XXXXXXXX96150 IND NAME:LITHIUM BATTERY COMPAN IATCVXX0226PPZQB2 TRN: XXXXXX7000 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(771,'BC-00771','2025-02-26','ORIG CO NAME:FIRST INSURANCE ORIG ID:XXXXXX7365 DESC DATE: CO ENTRY DESCR:INSURANCE SEC:CCD TRACE#:XXXXXXXX2310094 EED:250226 IND ID:900 -XXXXX2748 IND NAME:Lith ium Battery Compan PBS ACH DEBIT TRN: XXXXXX0094 TC','','General Liability & Business Interruption Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(772,'BC-00772','2025-02-26','Online Transfer to CHK ...2560 transaction#: XXXXXXX3099 02/26','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(773,'BC-00773','2025-02-27','ORIG CO NAME:FIRST INSURANCE ORIG ID:XXXXXX7365 DESC DATE: CO ENTRY DESCR:INSURANCE SEC:CCD TRACE#:XXXXXXXX9107830 EED:250227 IND ID:900 -XXXXX7965 IND NAME:Lith ium Battery Compan PBS ACH DEBIT TRN: XXXXXX7830 TC','','General Liability & Business Interruption Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(774,'BC-00774','2025-02-27','ONLINE DOMESTIC WIRE TRANSFER VIA: HUDSON VALLEY CU/XXXXX9363 A/C: KEVIN EELLS POUGHKEEPSIE NY X2602 US REF: EXPENSE REIMBURSEMENT (1.15.25-2.26.25)/BNF/EXPENSE REIMBURSEMENT (1.1 5.25-2.26.25) IMAD: 0227MMQFMP2LXX9785 TRN: XXXXXX5058 ES 02/27','','Office Expenses','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(775,'BC-00775','2025-02-28','Pay Period: 02/16/2025-02/28/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(776,'BC-00776','2025-02-28','Pay Period: 02/16/2025-02/28/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(777,'BC-00777','2025-02-28','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(778,'BC-00778','2025-02-28','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(779,'BC-00779','2025-03-03','SERVICE CHARGES FOR THE MONTH OF FEBRUARY','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(780,'BC-00780','2025-03-03','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX3767808 EED:250303 IND ID: IND NAME:Lithium Battery Co LBC Share holder Transfer (NS) TRN: XXXXXX7808 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(781,'BC-00781','2025-03-04','System-recorded deposit for QuickBooks Payments','','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(782,'BC-00782','2025-03-04','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(783,'BC-00783','2025-03-04','ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT/BNF/LITHIUM BATTERY CO IMAD: 0304MMQFMP 2NXX2800 TRN: XXXXXX5063 ES 03/04','Ron Staron - Vendor','Staron Inventory Loan','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(784,'BC-00784','2025-03-05','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250305 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3119939 EED:250305 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0305PPZ3YS TRN: XXXXXX9939 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(785,'BC-00785','2025-03-06','ONLINE DOMESTIC WIRE TRANSFER VIA: TREAS NYC/XXXXX0004 A/C: SMALL BUSINESS ADMINISTRATION DENVER CO X0202 US REF: LITHIUM BATTERY COMPANY (NATHAN A STARON) EIDL LOAN: XXXXXX7203/BNF/LI THIUM BATTERY COMPANY (NATHAN A STA RON) EIDL LOAN: XXXXXX7203 IMAD: 0306MMQFMP2MXX4558 TRN: XXXXXX5065 ES 03/06','EIDL Loan','EIDL Loan','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(786,'BC-00786','2025-03-06','MCDONALD\'S-STORE 367 HONG KONG 03/07 HK Dollar 43.00 X 0.XXX6047 (EXCHG RTE)','','Meals','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(787,'BC-00787','2025-03-06','FOREIGN EXCHANGE RATE ADJUSTMENT FEE 03/07MCDONALD\'','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(788,'BC-00788','2025-03-06','Loan Fees','EIDL Loan','EIDL Loan','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(789,'BC-00789','2025-03-06','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX5080527 EED:250306 IND ID: IND NAME:Lithium Battery Co Sharehold er Transfer (NS) TRN: XXXXXX0527 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(790,'BC-00790','2025-03-07','System-recorded deposit for QuickBooks Payments','Marcus Portillo','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(791,'BC-00791','2025-03-07','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(792,'BC-00792','2025-03-07','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(793,'BC-00793','2025-03-07','Online Transfer to CHK ...1215 transaction#: XXXXXXX9780 03/07','CHK ...1215','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(794,'BC-00794','2025-03-08','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250306 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX4195671 EED:250310 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX5671 TC','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(795,'BC-00795','2025-03-09','PROPERTYREC.COM XXX-XXX-1102 NM 03/10','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(796,'BC-00796','2025-03-10','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX7461470 EED:250310 IND ID:ST-U1E6E1E5X8B7 IND NAME:N ATHAN STARON TRN: XXXXXX1470 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(797,'BC-00797','2025-03-10','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX7495169 EED:250310 IND ID: IND NAME:Lithium Battery Co OWC TRN: XXXXXX5169TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(798,'BC-00798','2025-03-11','Online Transfer from CHK ...2560 transaction#: XXXXXXX2334','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(799,'BC-00799','2025-03-11','Online Transfer from CHK ...2560 transaction#: XXXXXXX6248','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(800,'BC-00800','2025-03-12','Online Transfer to CHK ...2560 transaction#: XXXXXXX6587 03/12','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(801,'BC-00801','2025-03-13','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX4239121 EED:250313 IND ID: IND NAME:Lithium Battery Co Consultin g Retainer (3.1.25-3.15.25 ) TRN: XXXXXX9121 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(802,'BC-00802','2025-03-14','Pay Period: 03/01/2025-03/15/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(803,'BC-00803','2025-03-14','Pay Period: 03/01/2025-03/15/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(804,'BC-00804','2025-03-14','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(805,'BC-00805','2025-03-14','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(806,'BC-00806','2025-03-14','SHOPIFY* XXXXX6542 SHOPIFY.COM IL 03/14','','Merchant Account Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(807,'BC-00807','2025-03-14','','Michael Posner','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(808,'BC-00808','2025-03-17','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(809,'BC-00809','2025-03-17','ORIG CO NAME:Rocket Money ORIG ID:XXXXXX5600 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX6388709 EED:250317 IND ID:ST-P5P6D6K7Y0O7 IND NAME:ROCKET MONEY INC TRN: XXXXXX8709 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(810,'BC-00810','2025-03-17','Online Transfer from CHK ...2560 transaction#: XXXXXXX4707','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(811,'BC-00811','2025-03-18','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250318 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX9655748 EED:250318 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0318PPZPYG TRN: XXXXXX5748 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(812,'BC-00812','2025-03-19','ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250319 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX6607583 EED:250319 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX7583 TC','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(813,'BC-00813','2025-03-20','Online Payment XXXXXXX8494 To HMG 4615 03/20','','Rent & Lease Expense','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(814,'BC-00814','2025-03-21','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(815,'BC-00815','2025-03-21','ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250320 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX8464628 EED:250321 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX4628 TC','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(816,'BC-00816','2025-03-22','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250321 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8020777 EED:250324 IND ID:PXXXX2527 IND NAME:STAR ON, NATHAN TRN: XXXXXX0777 TC','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(817,'BC-00817','2025-03-23','PROGRESSIVE INS XXX-XXX-4737 OH 03/23','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(818,'BC-00818','2025-03-24','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX2649555 EED:250324 IND ID:ST-I9N4B9F4Y0P7 IND NAME:N ATHAN STARON TRN: XXXXXX9555 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(819,'BC-00819','2025-03-24','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250323 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3067999 EED:250324 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0323PPZOZV TRN: XXXXXX7999 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(820,'BC-00820','2025-03-24','ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250324 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9924186 EED:250324 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX4186 TC','o','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(821,'BC-00821','2025-03-24','ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250324 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9924183 EED:250324 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX4183 TC','o','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(822,'BC-00822','2025-03-24','ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250324 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9924182 EED:250324 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX4182 TC','o','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(823,'BC-00823','2025-03-24','ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250324 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9924185 EED:250324 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX4185 TC','o','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(824,'BC-00824','2025-03-24','ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250324 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9924184 EED:250324 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX4184 TC','o','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(825,'BC-00825','2025-03-24','ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250324 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9924181 EED:250324 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX4181 TC','o','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(826,'BC-00826','2025-03-24','ORIG CO NAME:eBay Com7LPMP2B9 ORIG ID:XXXXXX6000 DESC DATE:250324 CO ENTRY DESCR:PAYMENTS SEC:CCD TRACE#:XXXXXXXX3559451 EED:250324 IND ID:0 FYXGKQQBWXSP68 IND N AME:Nathan Staron NTE*ZZZ*PXXXXXX0026\\ TRN: XXXXXX9451 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(827,'BC-00827','2025-03-24','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX1842096 EED:250324 IND ID: IND NAME:Lithium Battery Co Consultin g Retainer (3.16.25-3.31.2 5) TRN: XXXXXX2096 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(828,'BC-00828','2025-03-26','REMOTE ONLINE DEPOSIT # 1','','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(829,'BC-00829','2025-03-27','ORIG CO NAME:FIRST INSURANCE ORIG ID:XXXXXX7365 DESC DATE: CO ENTRY DESCR:INSURANCE SEC:CCD TRACE#:XXXXXXXX3564382 EED:250327 IND ID:900 -XXXXX7965 IND NAME:Lith ium Battery Compan PBS ACH DEBIT TRN: XXXXXX4382 TC','','General Liability & Business Interruption Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(830,'BC-00830','2025-03-28','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(831,'BC-00831','2025-03-31','Pay Period: 03/16/2025-03/31/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(832,'BC-00832','2025-03-31','Pay Period: 03/16/2025-03/31/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(833,'BC-00833','2025-03-31','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(834,'BC-00834','2025-03-31','LBC#MAIN Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(835,'BC-00835','2025-04-01','SERVICE CHARGES FOR THE MONTH OF MARCH','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(836,'BC-00836','2025-04-02','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(837,'BC-00837','2025-04-02','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(838,'BC-00838','2025-04-04','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(839,'BC-00839','2025-04-04','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(840,'BC-00840','2025-04-04','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250404 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3454971 EED:250404 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0404PPZ236 TRN: XXXXXX4971 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(841,'BC-00841','2025-04-07','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX2335947 EED:250407 IND ID:ST-Y1C4A1G7Q5P3 IND NAME:N ATHAN STARON TRN: XXXXXX5947 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(842,'BC-00842','2025-04-08','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX6514408 EED:250408 IND ID: IND NAME:LBC Main (#2560) LBC Sh areholder Transfer (NS) TRN: XXXXXX4408 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(843,'BC-00843','2025-04-08','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX1969490 EED:250408 IND ID: IND NAME:LBC Main (#2560) Consul ting Retainer (4.1.25-4.15.25 ) TRN: XXXXXX9490 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(844,'BC-00844','2025-04-08','ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT/BNF/LITHIUM BATTERY CO IMAD: 0408MMQFMP 2KXX1400 TRN: XXXXXX5098 ES 04/08','Ron Staron - Vendor','Staron Inventory Loan','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(845,'BC-00845','2025-04-08','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250406 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX1677193 EED:250408 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX7193 TC','','Office Expenses','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(846,'BC-00846','2025-04-09','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(847,'BC-00847','2025-04-09','Online Transfer to CHK ...2560 transaction#: XXXXXXX0314 04/09','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(848,'BC-00848','2025-04-09','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX3023021 EED:250409 IND ID: IND NAME:LBC Main (#2560) OWC - SOFWEEK Table TRN: XXXXXX3021 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(849,'BC-00849','2025-04-09','PROPERTYREC.COM XXX-XXX-1102 NM 04/10','Property Rec','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(850,'BC-00850','2025-04-10','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(851,'BC-00851','2025-04-10','Online Transfer from CHK ...2560 transaction#: XXXXXXX4037','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(852,'BC-00852','2025-04-10','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX1191411 EED:250410 IND ID: IND NAME:LBC Main (#2560) Consul ting Retainer (Adv: 4.16.25-4 .30.25) TRN: XXXXXX1411 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(853,'BC-00853','2025-04-11','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(854,'BC-00854','2025-04-11','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(855,'BC-00855','2025-04-11','MOBILE PAYMENT - THANK YOU','American Express','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(856,'BC-00856','2025-04-11','MOBILE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(857,'BC-00857','2025-04-13','SHOPIFY* XXXXX1133 SHOPIFY.COM IL 04/13','Shopify','Merchant Account Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(858,'BC-00858','2025-04-14','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(859,'BC-00859','2025-04-14','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX3610479 EED:250414 IND ID: IND NAME:LBC Main (#2560) OWC TR N: XXXXXX0479TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(860,'BC-00860','2025-04-14','ORIG CO NAME:eBay ComPBF5USK0 ORIG ID:XXXXXX6000 DESC DATE:250414 CO ENTRY DESCR:PAYMENTS SEC:CCD TRACE#:XXXXXXXX8295722 EED:250414 IND ID:USEAYR1TL2H6V6K IND N AME:Nathan Staron NTE*ZZZ*PXXXXXX3226\\ TRN: XXXXXX5722 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(861,'BC-00861','2025-04-15','Pay Period: 04/01/2025-04/15/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(862,'BC-00862','2025-04-15','Pay Period: 04/01/2025-04/15/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(863,'BC-00863','2025-04-15','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(864,'BC-00864','2025-04-15','System-recorded deposit for QuickBooks Payments','CDTi Advanced Materials, Inc..','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(865,'BC-00865','2025-04-15','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','QuickBooks Payments Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(866,'BC-00866','2025-04-15','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX7022758 EED:250415 IND ID: IND NAME:LBC Main (#2560) OWC TR N: XXXXXX2758TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(867,'BC-00867','2025-04-15','ORIG CO NAME:Rocket Money ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX0024381 EED:250415 IND ID:ST-J7F2J6T8B4B1 IND NAME:ROCKET MONEY INC TRN: XXXXXX4381 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(868,'BC-00868','2025-04-18','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(869,'BC-00869','2025-04-18','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250418 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX7852517 EED:250418 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0418PPZWVK TRN: XXXXXX2517 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(870,'BC-00870','2025-04-18','ORIG CO NAME:eBay ComIUJJ8WQR ORIG ID:XXXXXX6000 DESC DATE:250418 CO ENTRY DESCR:PAYMENTS SEC:CCD TRACE#:XXXXXXXX5809876 EED:250418 IND ID:7 TH6DK4QIN8PK61 IND N AME:Nathan Staron NTE*ZZZ*PXXXXXX9762\\ TRN: XXXXXX9876 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(871,'BC-00871','2025-04-21','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(872,'BC-00872','2025-04-21','Online Transfer to CHK ...2560 transaction#: XXXXXXX2964 04/21','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(873,'BC-00873','2025-04-21','Online Transfer to CHK ...2560 transaction#: XXXXXXX5521 04/21','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(874,'BC-00874','2025-04-21','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX4346905 EED:250421 IND ID:ST-H5Q4N5J1N7T2 IND NAME:N ATHAN STARON TRN: XXXXXX6905 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(875,'BC-00875','2025-04-21','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX1247002 EED:250421 IND ID: IND NAME:LBC Main (#2560) GSL In voice TRN: XXXXXX7002 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(876,'BC-00876','2025-04-21','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX1247005 EED:250421 IND ID: IND NAME:LBC Main (#2560) OWC TR N: XXXXXX7005TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(877,'BC-00877','2025-04-22','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(878,'BC-00878','2025-04-22','Online Transfer from CHK ...2560 transaction#: XXXXXXX3274','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(879,'BC-00879','2025-04-22','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX3388472 EED:250422 IND ID: IND NAME:LBC Main (#2560) OWC Mi n Cash TRN: XXXXXX8472 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(880,'BC-00880','2025-04-22','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250422 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX1393233 EED:250422 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0422PPZG5T TRN: XXXXXX3233 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(881,'BC-00881','2025-04-23','PROGRESSIVE INS XXX-XXX-4737 OH 04/23','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(882,'BC-00882','2025-04-23','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250422 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX4164084 EED:250423 IND ID:PXXXX2890 IND NAME:STAR ON, NATHAN TRN: XXXXXX4084 TC','','Note Payable - 2023 Cadillac','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(883,'BC-00883','2025-04-24','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX9526699 EED:250424 IND ID: IND NAME:LBC Main (#2560) Effect Web Media Payment TRN: XXXXXX6699 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(884,'BC-00884','2025-04-25','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(885,'BC-00885','2025-04-25','Online Payment XXXXXXX9472 To HMG 4615 04/25','','Rent & Lease Expense','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(886,'BC-00886','2025-04-25','Online Transfer from CHK ...1215 transaction#: XXXXXXX8239','o','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(887,'BC-00887','2025-04-26','CIRCLE K 209 X7691 HONG KONG 04/26 HK Dollar 54.50 X 0.XXX9908 (EXCHG RTE)','','Automobile Expense','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(888,'BC-00888','2025-04-26','FOREIGN EXCHANGE RATE ADJUSTMENT FEE 04/26CIRCLE K','','Automobile Expense','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(889,'BC-00889','2025-04-27','FOREIGN EXCHANGE RATE ADJUSTMENT FEE 04/28MCDONALD\'','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(890,'BC-00890','2025-04-27','MCDONALD\'S-STORE 365 HONG KONG 04/28 HK Dollar 130.00 X 0.XXX9231 (EXCHG RTE)','','Meals','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(891,'BC-00891','2025-04-29','ORIG CO NAME:MIDLAND NATIONAL ORIG ID:XXXXXX4570 DESC DATE:250425 CO ENTRY DESCR:INSURANCE SEC:PPD TRACE#:XXXXXXXX3761971 EED:250429 IND ID: IND NAME:LITHIUM BA TTERY COMP TRN: XXXXXX1971 TC','Midland National','Officer\'s Life Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(892,'BC-00892','2025-04-30','Pay Period: 04/16/2025-04/30/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(893,'BC-00893','2025-04-30','Pay Period: 04/16/2025-04/30/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(894,'BC-00894','2025-04-30','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(895,'BC-00895','2025-05-01','SERVICE CHARGES FOR THE MONTH OF APRIL','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(896,'BC-00896','2025-05-01','APPLE CASH BALANCE AD XXX-XXX-8552 CA 05/02','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(897,'BC-00897','2025-05-01','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX0267745 EED:250501 IND ID: IND NAME:LBC Main (#2560) Kevin Eells Payroll Reimbursement ( 4.16.25 - 5.1.25) TRN: XXXXXX7745 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(898,'BC-00898','2025-05-02','System-recorded deposit for QuickBooks Payments','Tommy Ausherman','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(899,'BC-00899','2025-05-02','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','QuickBooks Payments Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(900,'BC-00900','2025-05-02','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(901,'BC-00901','2025-05-02','','LG Electronics USA','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(902,'BC-00902','2025-05-03','NON-CHASE ATM WITHDRAW XX6671 05/XX1010 N MA','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(903,'BC-00903','2025-05-05','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(904,'BC-00904','2025-05-05','Online Transfer from CHK ...2560 transaction#: XXXXXXX4699','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(905,'BC-00905','2025-05-05','ONLINE DOMESTIC WIRE TRANSFER VIA: CLIMATE FIRST BANK/XXXXX7011 A/C: CLIMATE FIRST BANK ST. PETERSBURG FL X3710 US IMAD: 0505MMQFMP2NXX5379 TRN: XXXXXX5125 ES 05 /05','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(906,'BC-00906','2025-05-05','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250504 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX7648307 EED:250505 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0504PPZRSC TRN: XXXXXX8307 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(907,'BC-00907','2025-05-05','ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250505 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX7720989 EED:250505 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX0989 TC','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(908,'BC-00908','2025-05-07','System-recorded deposit for QuickBooks Payments','Tommy Ausherman','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(909,'BC-00909','2025-05-07','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','QuickBooks Payments Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(910,'BC-00910','2025-05-08','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250506 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX8969158 EED:250508 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX9158 TC','','Office Expenses','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(911,'BC-00911','2025-05-09','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(912,'BC-00912','2025-05-12','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(913,'BC-00913','2025-05-12','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX0649540 EED:250512 IND ID:ST-N8M4E1C3C5G8 IND NAME:N ATHAN STARON TRN: XXXXXX9540 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(914,'BC-00914','2025-05-12','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(915,'BC-00915','2025-05-13','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(916,'BC-00916','2025-05-13','Online Payment XXXXXXX6827 To HMG 4615 05/13','','Rent & Lease Expense','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(917,'BC-00917','2025-05-13','SHOPIFY* XXXXX5839 SHOPIFY.COM IL 05/13','Shopify','Merchant Account Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(918,'BC-00918','2025-05-15','Pay Period: 05/01/2025-05/15/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(919,'BC-00919','2025-05-15','Pay Period: 05/01/2025-05/15/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(920,'BC-00920','2025-05-15','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(921,'BC-00921','2025-05-15','ORIG CO NAME:Rocket Money ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX6420546 EED:250515 IND ID:ST-Z5G0E0R7C9A0 IND NAME:ROCKET MONEY INC TRN: XXXXXX0546 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(922,'BC-00922','2025-05-16','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(923,'BC-00923','2025-05-16','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(924,'BC-00924','2025-05-16','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250516 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX1796687 EED:250516 IND ID:W9994 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6687 TC','American Express','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(925,'BC-00925','2025-05-19','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250518 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX5610763 EED:250519 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0518PPZJSB TRN: XXXXXX0763 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(926,'BC-00926','2025-05-21','Fiverr XXX-XXX9699 NY 05/21','Fiverr','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(927,'BC-00927','2025-05-22','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250522 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX5752693 EED:250522 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0522PPZI6P TRN: XXXXXX2693 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(928,'BC-00928','2025-05-22','ONLINE DOMESTIC WIRE TRANSFER VIA: COMMN AMER CU/XXXXX1508 A/C: S2 CAPITAL GROUP LLC LENEXA KS X6285 US REF: REFUND FOR LBC ORDER IMAD: 0522MMQFMP2KXX7696 TRN: XXXXXX5142ES 05/22','Shenzhen SunFiD New Energy Co., Ltd.','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(929,'BC-00929','2025-05-22','ONLINE DOMESTIC WIRE TRANSFER VIA: HUDSON VALLEY CU/XXXXX9363 A/C: KEVIN EELLS POUGHKEEPSIE NY X2602 US REF: EXPENSE AND TRAVEL REIMBURSEMENT (3.1.25 - 5.9.25) IMAD: 0522MMQFMP2MXX1144 TRN: XXXXXX5142 ES 05/22','Shenzhen SunFiD New Energy Co., Ltd.','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(930,'BC-00930','2025-05-22','ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: INVOICE NUMBER: CPXXXX2900C TELXXXXXXXXX6435/INVOICE PAYMENT TRN: XXXXXX5142 ES 05/22','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(931,'BC-00931','2025-05-23','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(932,'BC-00932','2025-05-23','PROGRESSIVE *INSURANC XXX-XXX-4737 OH 05/23','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(933,'BC-00933','2025-05-23','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250522 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8623913 EED:250523 IND ID:PXXXX9839 IND NAME:STAR ON, NATHAN TRN: XXXXXX3913 TC','','Note Payable - 2023 Cadillac','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(934,'BC-00934','2025-05-24','ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250524 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX5783223 EED:250527 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX3223 TC','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(935,'BC-00935','2025-05-25','Zelle payment to Leon XXXXXXX2853','','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(936,'BC-00936','2025-05-27','ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8112 DESC DATE:250527 CO ENTRY DESCR:INS PREM SEC:WEB TRACE#:XXXXXXXX1257837 EED:250527 IND ID:POL XXXXX6654 IND NAME :Lithium Battery Co BRANCH02DEBIT ACH TRN: XXXXXX7837 TC','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(937,'BC-00937','2025-05-27','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(938,'BC-00938','2025-05-27','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX0045642 EED:250527 IND ID:ST-K6U0M0T2Q8P8 IND NAME:N ATHAN STARON TRN: XXXXXX5642 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(939,'BC-00939','2025-05-27','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX1777215 EED:250527 IND ID: IND NAME:LBC Main (#2560) Operat ing Working Capital TRN: XXXXXX7215 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(940,'BC-00940','2025-05-29','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(941,'BC-00941','2025-05-30','Pay Period: 05/16/2025-05/31/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(942,'BC-00942','2025-05-30','Pay Period: 05/16/2025-05/31/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(943,'BC-00943','2025-05-30','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(944,'BC-00944','2025-05-30','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(945,'BC-00945','2025-06-02','','Menno T Bauman','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(946,'BC-00946','2025-06-02','SERVICE CHARGES FOR THE MONTH OF MAY','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(947,'BC-00947','2025-06-03','System-recorded deposit for QuickBooks Payments','Emerson Ornstein','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(948,'BC-00948','2025-06-03','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','QuickBooks Payments Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(949,'BC-00949','2025-06-03','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250603 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX0107117 EED:250603 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0603PPZJVR TRN: XXXXXX7117 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(950,'BC-00950','2025-06-04','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(951,'BC-00951','2025-06-04','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(952,'BC-00952','2025-06-04','MOBILE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(953,'BC-00953','2025-06-04','ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250604 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX7861406 EED:250604 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX1406 TC','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(954,'BC-00954','2025-06-04','','Michael Posner','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(955,'BC-00955','2025-06-06','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(956,'BC-00956','2025-06-06','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(957,'BC-00957','2025-06-06','ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: CPXXXX0600B TELXXXXXXXXX6435/INVOICE PAYMENT TRN: XXXXXX5157 ES 06/06','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(958,'BC-00958','2025-06-06','Online Transfer from CHK ...1215 transaction#: XXXXXXX4918','o','Owner\'s Investment','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(959,'BC-00959','2025-06-09','ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250609 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX7726823 EED:250609 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX6823 TC','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(960,'BC-00960','2025-06-09','Online Transfer from CHK ...2560 transaction#: XXXXXXX2875','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(961,'BC-00961','2025-06-09','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX5971472 EED:250609 IND ID:ST-P1O8D5D1H0P7 IND NAME:N ATHAN STARON TRN: XXXXXX1472 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(962,'BC-00962','2025-06-10','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250606 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX0997665 EED:250610 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX7665 TC','','Office Expenses','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(963,'BC-00963','2025-06-11','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(964,'BC-00964','2025-06-11','GREENBERG DENTAL & ORTH TAMPA FL 06/11','','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(965,'BC-00965','2025-06-12','Online Transfer from CHK ...2560 transaction#: XXXXXXX0070','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(966,'BC-00966','2025-06-12','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX6760292 EED:250612 IND ID: IND NAME:LBC Main (#2560) Workin g Capital TRN: XXXXXX0292 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(967,'BC-00967','2025-06-12','SHOPIFY* XXXXX8973 SHOPIFY.COM IL 06/12','Shopify','Merchant Account Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(968,'BC-00968','2025-06-13','Pay Period: 06/01/2025-06/15/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(969,'BC-00969','2025-06-13','Pay Period: 06/01/2025-06/15/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(970,'BC-00970','2025-06-13','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(971,'BC-00971','2025-06-13','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX5801655 EED:250613 IND ID: IND NAME:LBC Main (#2560) Workin g Capital TRN: XXXXXX1655 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(972,'BC-00972','2025-06-13','Zelle payment to Dora House Cleaner JPM99bbydttz','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(973,'BC-00973','2025-06-13','ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250612 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX4324099 EED:250613 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX4099 TC','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(974,'BC-00974','2025-06-16','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX8202242 EED:250616 IND ID: IND NAME:LBC Main (#2560) Nathan CC TRN: XXXXXX2242 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(975,'BC-00975','2025-06-16','ORIG CO NAME:Rocket Money ORIG ID:XXXXXX5600 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX7669932 EED:250616 IND ID:ST-H6S9L9Z2J6E5 IND NAME:ROCKET MONEY INC TRN: XXXXXX9932 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(976,'BC-00976','2025-06-17','Online Payment XXXXXXX8335 To HMG 4615 06/17','','Rent & Lease Expense','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(977,'BC-00977','2025-06-18','System-recorded deposit for QuickBooks Payments','','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(978,'BC-00978','2025-06-18','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','QuickBooks Payments Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(979,'BC-00979','2025-06-18','Online Transfer from CHK ...2560 transaction#: XXXXXXX3028','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(980,'BC-00980','2025-06-18','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250618 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3196884 EED:250618 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0618PPZKV8 TRN: XXXXXX6884 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(981,'BC-00981','2025-06-20','ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8112 DESC DATE:250620 CO ENTRY DESCR:INS PREM SEC:WEB TRACE#:XXXXXXXX2194433 EED:250620 IND ID:POL XXXXX6654 IND NAME :LITHIUM BATTERY COMPAN BRANCH02DEBIT ACH TRN: XXXXXX4433 TC','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(982,'BC-00982','2025-06-20','Zelle payment to Dora House Cleaner JPM99bcspipo','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(983,'BC-00983','2025-06-21','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250620 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8750948 EED:250623 IND ID:PXXXX1798 IND NAME:STAR ON, NATHAN TRN: XXXXXX0948 TC','','Note Payable - 2023 Cadillac','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(984,'BC-00984','2025-06-23','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX9441884 EED:250623 IND ID:ST-B0H6A3U2W9I1 IND NAME:N ATHAN STARON TRN: XXXXXX1884 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(985,'BC-00985','2025-06-23','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250621 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX9526254 EED:250623 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0621PPZ4UK TRN: XXXXXX6254 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(986,'BC-00986','2025-06-24','Online Transfer from CHK ...2560 transaction#: XXXXXXX8924','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(987,'BC-00987','2025-06-26','Online Transfer from CHK ...2560 transaction#: XXXXXXX5737','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(988,'BC-00988','2025-06-27','System-recorded deposit for QuickBooks Payments','Emerson Ornstein','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(989,'BC-00989','2025-06-27','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','QuickBooks Payments Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(990,'BC-00990','2025-06-27','Zelle payment to Dora House Cleaner JPM99bdks99s','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(991,'BC-00991','2025-06-30','Pay Period: 06/16/2025-06/30/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(992,'BC-00992','2025-06-30','Pay Period: 06/16/2025-06/30/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(993,'BC-00993','2025-06-30','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(994,'BC-00994','2025-07-01','SERVICE CHARGES FOR THE MONTH OF JUNE','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(995,'BC-00995','2025-07-03','Online Transfer to CHK ...7932 transaction#: XXXXXXX9752 07/03','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(996,'BC-00996','2025-07-03','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250703 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX0603197 EED:250703 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0703PPZK1L TRN: XXXXXX3197 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(997,'BC-00997','2025-07-04','Zelle payment to Dora House Cleaner JPM99bejegb2','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(998,'BC-00998','2025-07-07','ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250707 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX8115569 EED:250707 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX5569 TC','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(999,'BC-00999','2025-07-07','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX5333340 EED:250707 IND ID:ST-J1N0V1E5D4K6 IND NAME:N ATHAN STARON TRN: XXXXXX3340 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1000,'BC-01000','2025-07-07','ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250705 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX6376969 EED:250707 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX6969 TC','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1001,'BC-01001','2025-07-08','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250706 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX7162086 EED:250708 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX2086 TC','','Office Expenses','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1002,'BC-01002','2025-07-08','US DEPT OF EDU - DMCS XXX-XXX-5327 DC 07/08','','Business Licenses and Permits','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1003,'BC-01003','2025-07-09','ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8112 DESC DATE:250709 CO ENTRY DESCR:INS PREM SEC:WEB TRACE#:XXXXXXXX1000153 EED:250709 IND ID:POL XXXXX6654 IND NAME :LITHIUM BATTERY COMPAN BRANCH02DEBIT ACH TRN: XXXXXX0153 TC','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1004,'BC-01004','2025-07-11','Zelle payment to Dora House Cleaner JPM99bfajjf7','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1005,'BC-01005','2025-07-12','SHOPIFY* XXXXX4597 SHOPIFY.COM IL 07/12','Shopify','Merchant Account Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1006,'BC-01006','2025-07-14','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX7426117 EED:250714 IND ID: IND NAME:LBC Main (#2560) Workin g Capital TRN: XXXXXX6117 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1007,'BC-01007','2025-07-15','Pay Period: 07/01/2025-07/15/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1008,'BC-01008','2025-07-15','Pay Period: 07/01/2025-07/15/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1009,'BC-01009','2025-07-15','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1010,'BC-01010','2025-07-15','ORIG CO NAME:Rocket Money ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX5008603 EED:250715 IND ID:ST-V0G3N5O6D0B9 IND NAME:ROCKET MONEY INC TRN: XXXXXX8603 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1011,'BC-01011','2025-07-17','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX0498916 EED:250717 IND ID: IND NAME:LBC Main (#2560) Credit Card X4007 TRN: XXXXXX8916 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1012,'BC-01012','2025-07-17','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX0498913 EED:250717 IND ID: IND NAME:LBC Main (#2560) Workin g Capital for Min Cash TRN: XXXXXX8913 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1013,'BC-01013','2025-07-18','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250718 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3919777 EED:250718 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0718PPZFR9 TRN: XXXXXX9777 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1014,'BC-01014','2025-07-18','Zelle payment to Dora House Cleaner JPM99bg3yh79','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1015,'BC-01015','2025-07-18','ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250717 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX5723231 EED:250718 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX3231 TC','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1016,'BC-01016','2025-07-18','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250718 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX5506447 EED:250718 IND ID:W8910 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6447 TC','American Express','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1017,'BC-01017','2025-07-21','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250721 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3463170 EED:250721 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0721PPZU2V TRN: XXXXXX3170 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1018,'BC-01018','2025-07-21','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX2643690 EED:250721 IND ID:ST-T7I3H0X3A6Y2 IND NAME:N ATHAN STARON TRN: XXXXXX3690 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1019,'BC-01019','2025-07-21','DUCKWEED WD INC TAMPA FL 07/21','Duckweed','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1020,'BC-01020','2025-07-22','System-recorded deposit for QuickBooks Payments','Tommy Ausherman','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1021,'BC-01021','2025-07-22','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','QuickBooks Payments Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1022,'BC-01022','2025-07-23','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250722 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX2005503 EED:250723 IND ID:PXXXX4907 IND NAME:STAR ON, NATHAN TRN: XXXXXX5503 TC','','Note Payable - 2023 Cadillac','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1023,'BC-01023','2025-07-23','Online Transfer to CHK ...7932 transaction#: XXXXXXX2635 07/23','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1024,'BC-01024','2025-07-23','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX0016918 EED:250723 IND ID: IND NAME:LBC Main (#2560) AMEX 2 3003 TRN: XXXXXX6918 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1025,'BC-01025','2025-07-23','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1026,'BC-01026','2025-07-25','Zelle payment to Camila JPM99bgzoxs1\n\nCleaning','','Office Expenses','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1027,'BC-01027','2025-07-26','ORIG CO NAME:INTUIT PYMT SOLN ORIG ID:XXXXXX6202 DESC DATE:250726 CO ENTRY DESCR:INTUITPMTSSEC:CCD TRACE#:XXXXXXXX4640197 EED:250728 IND ID:XXXXXXXX8541058 IND NAME:LITHIUM BATTERY CO INT TRN: XXXXXX0197 TC','QuickBooks Payments','QuickBooks Payments Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1028,'BC-01028','2025-07-26','ORIG CO NAME:INTUIT PYMT SOLN ORIG ID:XXXXXX6202 DESC DATE:250726 CO ENTRY DESCR:INTUITPMTSSEC:CCD TRACE#:XXXXXXXX4642927 EED:250728 IND ID:XXXXXXXX8541058 IND NAME:LITHIUM BATTERY CO INT TRN: XXXXXX2927 TC','QuickBooks Payments','Office Expenses','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1029,'BC-01029','2025-07-28','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX3273412 EED:250728 IND ID: IND NAME:LBC Main (#2560) OWC - min cash TRN: XXXXXX3412 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1030,'BC-01030','2025-07-29','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX0225396 EED:250729 IND ID: IND NAME:LBC Main (#2560) CC Pay ment (AMEX X3003) TRN: XXXXXX5396 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1031,'BC-01031','2025-07-29','ORIG CO NAME:MIDLAND NATIONAL ORIG ID:XXXXXX4570 DESC DATE:250725 CO ENTRY DESCR:INSURANCE SEC:PPD TRACE#:XXXXXXXX1550329 EED:250729 IND ID: IND NAME:LITHIUM BA TTERY COMP TRN: XXXXXX0329 TC','Midland National','Officer\'s Life Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1032,'BC-01032','2025-07-29','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1033,'BC-01033','2025-07-30','System-recorded deposit for QuickBooks Payments','Michael Faughnan','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1034,'BC-01034','2025-07-30','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','QuickBooks Payments Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1035,'BC-01035','2025-07-31','Pay Period: 07/16/2025-07/31/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1036,'BC-01036','2025-07-31','Pay Period: 07/16/2025-07/31/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1037,'BC-01037','2025-07-31','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1038,'BC-01038','2025-07-31','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX0982013 EED:250731 IND ID: IND NAME:LBC Main (#2560) Payrol l For Tanner Hance TRN: XXXXXX2013 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1039,'BC-01039','2025-08-01','SERVICE CHARGES FOR THE MONTH OF JULY','Fees Contact - USD','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1040,'BC-01040','2025-08-01','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1041,'BC-01041','2025-08-01','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX4002945 EED:250801 IND ID: IND NAME:LBC Main (#2560) AMEX C C (X3003) TRN: XXXXXX2945 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1042,'BC-01042','2025-08-04','Pay Period: 08/01/2025-08/31/2025','TANNER HANCE','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1043,'BC-01043','2025-08-04','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1044,'BC-01044','2025-08-04','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX6834172 EED:250804 IND ID: IND NAME:LBC Main (#2560) Custom er PO Deposit TRN: XXXXXX4172 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1045,'BC-01045','2025-08-04','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX6834178 EED:250804 IND ID: IND NAME:LBC Main (#2560) Min Ca sh & Working Capital TRN: XXXXXX4178 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1046,'BC-01046','2025-08-04','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250802 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX9188581 EED:250804 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0802PPZB6G TRN: XXXXXX8581 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1047,'BC-01047','2025-08-04','ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250804 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX8782758 EED:250804 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX2758 TC','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1048,'BC-01048','2025-08-06','Online Transfer to CHK ...7932 transaction#: XXXXXXX1962 08/06','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1049,'BC-01049','2025-08-07','Zelle payment to Dora House Cleaner JPM99bik38ux','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1050,'BC-01050','2025-08-07','ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250807 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX7623523 EED:250807 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX3523 TC','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1051,'BC-01051','2025-08-08','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250806 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX6803632 EED:250808 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX3632 TC','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1052,'BC-01052','2025-08-11','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX3033951 EED:250811 IND ID:ST-P3F2F1V3U1W5 IND NAME:N ATHAN STARON TRN: XXXXXX3951 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1053,'BC-01053','2025-08-11','SHOPIFY* XXXXX9587 SHOPIFY.COM IL 08/11','Shopify','Merchant Account Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1054,'BC-01054','2025-08-15','Pay Period: 08/01/2025-08/15/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1055,'BC-01055','2025-08-15','Pay Period: 08/01/2025-08/15/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1056,'BC-01056','2025-08-15','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1057,'BC-01057','2025-08-15','REMOTE ONLINE DEPOSIT # 2','','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1058,'BC-01058','2025-08-15','REMOTE ONLINE DEPOSIT # 2','','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1059,'BC-01059','2025-08-15','ORIG CO NAME:Rocket Money ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX7239467 EED:250815 IND ID:ST-O8T8A2D6Q8W9 IND NAME:ROCKET MONEY INC TRN: XXXXXX9467 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1060,'BC-01060','2025-08-18','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250818 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX0467523 EED:250818 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0818PPZ8RL TRN: XXXXXX7523 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1061,'BC-01061','2025-08-18','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250818 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7112016 EED:250818 IND ID:M3298 IND NAME:NATHAN STARON ER AM TRN: XXXXXX2016 TC','American Express','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1062,'BC-01062','2025-08-19','APPLE CASH SENT MONE 1INFINITELOOP CA 08/20','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1063,'BC-01063','2025-08-19','ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250818 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX8723395 EED:250819 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX3395 TC','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1064,'BC-01064','2025-08-20','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250820 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX7148327 EED:250820 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0820PPZUT8 TRN: XXXXXX8327 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1065,'BC-01065','2025-08-21','Online Transfer from CHK ...7932 transaction#: XXXXXXX9003','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1066,'BC-01066','2025-08-22','Online Transfer from CHK ...7932 transaction#: XXXXXXX2235','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1067,'BC-01067','2025-08-22','Zelle payment to Dora House Cleaner JPM99bkdg4za','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1068,'BC-01068','2025-08-22','ORIG CO NAME:PAYCARGO ORIG ID:XXXXXX5101 DESC DATE: CO ENTRY DESCR:ACHPAYMENTSEC:CCD TRACE#:XXXXXXXX8534285 EED:250822 IND ID:BATCH XXX3473 IND NAME:LITHIUM BAT TERY COMPAN NACHA 100A TRN: XXXXXX4285 TC','PayCargo, LLC','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1069,'BC-01069','2025-08-23','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250822 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8921695 EED:250825 IND ID:PXXXX7889 IND NAME:STAR ON, NATHAN TRN: XXXXXX1695 TC','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1070,'BC-01070','2025-08-25','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX1783929 EED:250825 IND ID:ST-C3I2V1N3B2V3 IND NAME:N ATHAN STARON TRN: XXXXXX3929 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1071,'BC-01071','2025-08-25','THEA Collect XXXXXX5205 TAMPA FL 08/25','Thea Collect','Travel','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1072,'BC-01072','2025-08-28','MOBILE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1073,'BC-01073','2025-08-29','Pay Period: 08/16/2025-08/31/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1074,'BC-01074','2025-08-29','Pay Period: 08/16/2025-08/31/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1075,'BC-01075','2025-08-29','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1076,'BC-01076','2025-08-29','ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8112 DESC DATE:250829 CO ENTRY DESCR:INS PREM SEC:WEB TRACE#:XXXXXXXX6774546 EED:250829 IND ID:POL XXXXX6654 IND NAME :LITHIUM BATTERY COMPAN BRANCH02DEBIT ACH TRN: XXXXXX4546 TC','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1077,'BC-01077','2025-08-29','Online Transfer from CHK ...7932 transaction#: XXXXXXX0681','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1078,'BC-01078','2025-08-29','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250829 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX6353453 EED:250829 IND ID:M9752 IND NAME:NATHAN STARON ER AM TRN: XXXXXX3453 TC','American Express','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1079,'BC-01079','2025-08-29','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250829 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX6353429 EED:250829 IND ID:M8876 IND NAME:NATHAN STARON ER AM TRN: XXXXXX3429 TC','American Express','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1080,'BC-01080','2025-08-29','MOBILE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1081,'BC-01081','2025-08-31','Online Transfer from CHK ...7932 transaction#: XXXXXXX5201','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1082,'BC-01082','2025-09-01','MOBILE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1083,'BC-01083','2025-09-02','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX6588415 EED:250902 IND ID: IND NAME:LBC Main (#2560) Hance Payroll TRN: XXXXXX8415 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1084,'BC-01084','2025-09-02','SERVICE CHARGES FOR THE MONTH OF AUGUST','Fees Contact - USD','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1085,'BC-01085','2025-09-02','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250901 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX7320895 EED:250902 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0901PPZVWG TRN: XXXXXX0895 TC','PayPal','Legal & Professional Services','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1086,'BC-01086','2025-09-04','ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250904 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX4961499 EED:250904 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX1499 TC','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1087,'BC-01087','2025-09-05','Zelle payment to Leslie Staron JPM99bm5pkkx','','Business meals','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1088,'BC-01088','2025-09-07','Customer credit - shipping','Burmuda Electric Light Company','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1089,'BC-01089','2025-09-07','Customer credit - shipping','Grander Marine Service Department','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1090,'BC-01090','2025-09-07','CRAB SHACK SAINT PETERSB FL 09/07','','Business meals','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1091,'BC-01091','2025-09-07','MOBILE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1092,'BC-01092','2025-09-08','Pay Period: 09/01/2025-09/30/2025 Check created out of sequence in a prior quarter','TANNER HANCE','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1093,'BC-01093','2025-09-08','Tax Payment','QuickBooks Payroll','Federal Taxes (941/944)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1094,'BC-01094','2025-09-08','ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250908 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX5411599 EED:250908 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX1599 TC','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1095,'BC-01095','2025-09-08','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX5159135 EED:250908 IND ID:ST-X8U3R7N7W5L2 IND NAME:N ATHAN STARON TRN: XXXXXX9135 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1096,'BC-01096','2025-09-08','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX2799298 EED:250908 IND ID: IND NAME:LBC Main (#2560) Bayfro nt Capital (Transaction Fees) TRN: XXXXXX9298 TC','o','Shareholder - JB','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1097,'BC-01097','2025-09-09','Zelle payment to Dora House Cleaner JPM99bmmfrl1','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1098,'BC-01098','2025-09-09','ORIG CO NAME:JD CAPITAL ADVIS ORIG ID:SXXXXX7665 DESC DATE:250909 CO ENTRY DESCR:SENDER SEC:CTX TRACE#:XXXXXXXX6471376 EED:250909 IND ID:813722100 IND NAME:0000 LITHIUM BATTERY TRN: XXXXXX1376 TC','JD Capital Advisors','Shareholder - JB','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1099,'BC-01099','2025-09-09','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250906 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX9686584 EED:250909 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX6584 TC','','2323 Golf Cart','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1100,'BC-01100','2025-09-10','SHOPIFY* XXXXX8635 SHOPIFY.COM IL 09/10','Shopify','Merchant Account Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1101,'BC-01101','2025-09-10','ORIG CO NAME:JD CAPITAL ADVIS ORIG ID:SXXXXX7665 DESC DATE:250910 CO ENTRY DESCR:SENDER SEC:CTX TRACE#:XXXXXXXX1567022 EED:250910 IND ID:813990834 IND NAME:0000 LITHIUM BATTERY TRN: XXXXXX7022 TC','JD Capital Advisors','Shareholder - JB','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1102,'BC-01102','2025-09-10','Online Payment XXXXXXX2890 To HMG 4615 09/10','','Rent & Lease Expense','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1103,'BC-01103','2025-09-11','ONLINE INTERNATIONAL WIRE TRANSFER A/C: BANK OF CHINA HONG KONG LTD WEST KOWLOON HONG KONG HK REF: LBC BMS XXXX0910 INVOICE PAYMENT TRN: XXXXXX5254 ES 09/11','Shenzhen SunFiD New Energy Co., Ltd.','COGS - Custom Batteries','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1104,'BC-01104','2025-09-15','Pay Period: 09/01/2025-09/15/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1105,'BC-01105','2025-09-15','Tax Payment','QuickBooks Payroll','Federal Taxes (941/944)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1106,'BC-01106','2025-09-15','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX5600 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX1704189 EED:250915 IND ID:ST-E9V3N5M2D3U8 IND NAME:N ATHAN STARON TRN: XXXXXX4189 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1107,'BC-01107','2025-09-15','PROGRESSIVE *INSURANC XXX-XXX-4737 OH 09/15','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1108,'BC-01108','2025-09-15','ORIG CO NAME:Rocket Money ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX5441658 EED:250915 IND ID:ST-N2V5J6V0U4E7 IND NAME:ROCKET MONEY INC TRN: XXXXXX1658 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1109,'BC-01109','2025-09-16','ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8112 DESC DATE:250916 CO ENTRY DESCR:INS PREM SEC:WEB TRACE#:XXXXXXXX2573929 EED:250916 IND ID:POL XXXXX6654 IND NAME :LITHIUM BATTERY COMPAN BRANCH09DEBIT ACH TRN: XXXXXX3929 TC','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1110,'BC-01110','2025-09-18','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250918 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX7879422 EED:250918 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0918PPZHER TRN: XXXXXX9422 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1111,'BC-01111','2025-09-18','ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250917 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX8170379 EED:250918 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX0379 TC','','2322 Escalade 2025','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1112,'BC-01112','2025-09-19','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250919 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX1391874 EED:250919 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0919PPZTLV TRN: XXXXXX1874 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1113,'BC-01113','2025-09-19','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1114,'BC-01114','2025-09-22','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX5600 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX1031174 EED:250922 IND ID:ST-J6N8S9P0N5R0 IND NAME:N ATHAN STARON TRN: XXXXXX1174 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1115,'BC-01115','2025-09-22','CUSTOMER SERVICE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1116,'BC-01116','2025-09-22','REMOTE ONLINE DEPOSIT # 2','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1117,'BC-01117','2025-09-22','REMOTE ONLINE DEPOSIT # 2','','Shareholder - NS','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1118,'BC-01118','2025-09-23','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250922 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX1906027 EED:250923 IND ID:PXXXX6046 IND NAME:STAR ON, NATHAN TRN: XXXXXX6027 TC','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1119,'BC-01119','2025-09-24','Zelle payment to Dora House Cleaner JPM99bofhwnh','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1120,'BC-01120','2025-09-29','REMOTE ONLINE DEPOSIT # 2','','Business Licenses and Permits','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1121,'BC-01121','2025-09-30','System-recorded deposit for QuickBooks Payments','Obsidian Integration','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1122,'BC-01122','2025-09-30','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','QuickBooks Payments Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1123,'BC-01123','2025-10-01','Pay Period: 10/01/2025-10/31/2025','TANNER HANCE','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1124,'BC-01124','2025-10-01','Tax withdrawal','QuickBooks Payroll','QuickBooks Tax Holding Account','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1125,'BC-01125','2025-10-15','Pay Period: 10/01/2025-10/15/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1126,'BC-01126','2025-10-15','Pay Period: 10/01/2025-10/15/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1127,'BC-01127','2025-10-15','Tax withdrawal','QuickBooks Payroll','QuickBooks Tax Holding Account','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1128,'BC-01128','2025-10-31','Pay Period: 10/16/2025-10/31/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1129,'BC-01129','2025-10-31','Pay Period: 10/16/2025-10/31/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1130,'BC-01130','2025-10-31','Tax withdrawal','QuickBooks Payroll','QuickBooks Tax Holding Account','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1131,'BC-01131','2025-11-04','Tax overpayment credit refund','QuickBooks Payroll','QuickBooks Tax Holding Account','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1132,'BC-01132','2025-01-13','Online Transfer from CHK ...7932 transaction#: XXXXXXX5378','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1133,'BC-01133','2025-01-24','','GSL Energy','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1134,'BC-01134','2025-01-28','Online Transfer to CHK ...7932 transaction#: XXXXXXX9694 01/28','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1135,'BC-01135','2025-02-04','Online Transfer to CHK ...2560 transaction#: XXXXXXX4735 02/04','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1136,'BC-01136','2025-02-05','Online Transfer to CHK ...2560 transaction#: XXXXXXX1152 02/05','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1137,'BC-01137','2025-02-07','Online Transfer to CHK ...2560 transaction#: XXXXXXX8062 02/07','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1138,'BC-01138','2025-02-26','','Bill Hendricks','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1139,'BC-01139','2025-02-26','Online Transfer to CHK ...2560 transaction#: XXXXXXX3099 02/26','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1140,'BC-01140','2025-03-05','','Shenzhen Cleva Power Co.,Ltd','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1141,'BC-01141','2025-03-05','','Shenzhen SunFiD New Energy Co., Ltd.','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1142,'BC-01142','2025-03-05','','Shenzhen SunFiD New Energy Co., Ltd.','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1143,'BC-01143','2025-03-05','','GSL Energy','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1144,'BC-01144','2025-03-05','','GSL Energy','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1145,'BC-01145','2025-03-11','','Rob Simmons','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1146,'BC-01146','2025-03-11','ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: CPXXXX0600B TELXXXXXXXXX6435/INVOICE PAYMENT/BNF/CPXXXX0600B TRN: XXXXXX5070 ES 03/11','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1147,'BC-01147','2025-03-11','ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC1419/BNF/LBC1419 IMAD: 0311MMQFMP2KXX1806 TRN: 32 XXXX5070ES 03/11','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1148,'BC-01148','2025-03-11','Online Transfer from CHK ...2560 transaction#: XXXXXXX2334','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1149,'BC-01149','2025-03-11','Online Transfer from CHK ...2560 transaction#: XXXXXXX6248','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1150,'BC-01150','2025-03-12','Online Transfer to CHK ...2560 transaction#: XXXXXXX6587 03/12','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1151,'BC-01151','2025-03-17','','Shenzhen Cleva Power Co.,Ltd','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1152,'BC-01152','2025-03-17','Online Transfer from CHK ...2560 transaction#: XXXXXXX4707','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1153,'BC-01153','2025-03-31','LBC#7932 Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1154,'BC-01154','2025-04-02','ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC1415/BNF/LBC1415 IMAD: 0402MMQFMP2NXX0120 TRN: 33 XXXX5092ES 04/02','Shenzhen SunFiD New Energy Co., Ltd.','COGS - Custom Batteries','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1155,'BC-01155','2025-04-07','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#7932 SEC:CCD TRACE#:XXXXXXXX6424362 EED:250407 IND ID: IND NAME:LBC Int #7932 CPXXX2090 1A TRN: XXXXXX4362 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1156,'BC-01156','2025-04-08','ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: LBC INVOICE: CPXXXX0901A TELXXXXXXXXX6435/INVOICE PAYMENT/BN F/LBC INVO ICE: CPXXXX0901A TRN: XXXXXX5098 ES 04/08','','COGS - Custom Batteries','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1157,'BC-01157','2025-04-09','Online Transfer to CHK ...2560 transaction#: XXXXXXX0314 04/09','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1158,'BC-01158','2025-04-09','CHIPS CREDIT VIA: HSBC BANK USA, N.A./0108 B/O: BERMUDA ELECTRIC LIGHT COMPANY LIMICHURCH STREET HAMILTON,BERMUDA/BM REF: NBNF=LITHIUM BATTERY COMPANY INTL, LLC TAMPA FL XXXXX-8006 US/AC-X0000 XXX5806 ORG=/BM HBBM XXX-XXXXX2-002 CHURCH STREET HAMILTON,BERMUDA/BM OGB=HSBC BANK BERMUDA LIMITED HAMIL TON BERMUDA B SSN: XXXX1521 TRN: XXXXXX9099 FC','','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1159,'BC-01159','2025-04-10','Online Transfer from CHK ...2560 transaction#: XXXXXXX4037','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1160,'BC-01160','2025-04-10','ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: SFD:LBC1417/BNF/SFD:LBC1417 IMAD: 0410MMQFMP2NXX9006 TRN: XXXXXX5100 ES 04/10','Shenzhen SunFiD New Energy Co., Ltd.','COGS - Custom Batteries','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1161,'BC-01161','2025-04-15','BOOK TRANSFER CREDIT B/O: N-VISION OPTICS LLC NEEDHAM MA XXXXX-3133 US TRN: XXXXXX5105 ES','','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1162,'BC-01162','2025-04-15','','Jeff Naish','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1163,'BC-01163','2025-04-16','','Fiona Taylor','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1164,'BC-01164','2025-04-16','ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC ORDER 1353A/BNF/LBC ORDER 1353A IMAD: 0416MMQFMP 2MXX3371 TRN: XXXXXX5106 ES 04/16','Shenzhen SunFiD New Energy Co., Ltd.','COGS - Custom Batteries','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1165,'BC-01165','2025-04-16','ONLINE DOMESTIC WIRE TRANSFER VIA: BK AMER NYC/XXXXX9593 A/C: JD CAPITAL ADVISORS LLC DUNEDIN FL X4698 US REF: SOF WEEK BOOTH REIMBURSEMENT (CLARION EVENTS)/BNF /SOF WEEK BOOTH REIMB URSEMENT (CLARION EVENTS) IMAD: 0416MMQFMP2MXX4719 TRN: XXXXXX5106 ES 04/16','Shenzhen SunFiD New Energy Co., Ltd.','Travel','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1166,'BC-01166','2025-04-17','ONLINE INTERNATIONAL WIRE TRANSFER A/C: JPMORGAN CHASE BANK N A HONG KONG HONG KONG XX9077 HK REF: GSL-SHXXXX0417US01 INVOICE PAYMENT/BNF/GSL-SHXXXX0417US01 TRN : XXXXXX5107ES 04/17','GSL Energy','COGS - Custom Batteries','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1167,'BC-01167','2025-04-21','Online Transfer to CHK ...2560 transaction#: XXXXXXX2964 04/21','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1168,'BC-01168','2025-04-21','Online Transfer to CHK ...2560 transaction#: XXXXXXX5521 04/21','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1169,'BC-01169','2025-04-22','Online Transfer from CHK ...2560 transaction#: XXXXXXX3274','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1170,'BC-01170','2025-04-22','ONLINE INTERNATIONAL WIRE TRANSFER A/C: JPMORGAN CHASE BANK N A HONG KONG HONG KONG XX9077 HK REF: LBC INVOICE FOR GSL-SHXXXX0204US01 AND GSL-SHXXXX1026US01 INV OICE PAYM ENT/BNF/LBC INVOICE FOR GSL-SHX0250 204US01 AND GSL-SHXXXX1026US01 TRN: XXXXXX5112 ES 04/22','GSL Energy','COGS - Custom Batteries','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1171,'BC-01171','2025-05-05','ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: CPXXXX2900C (43.5V35AH) TELXXXXXXXXX6435/INVOICE PAYMENT TRN : XXXXXX5125ES 05/05','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1172,'BC-01172','2025-05-05','Online Transfer from CHK ...2560 transaction#: XXXXXXX4699','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1173,'BC-01173','2025-06-09','Online Transfer from CHK ...2560 transaction#: XXXXXXX2875','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1174,'BC-01174','2025-06-09','ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: SFD LBC1424 IMAD: 0609MMQFMP2MXX3248 TRN: XXXXXX5160 ES 06/09','Shenzhen SunFiD New Energy Co., Ltd.','COGS - Custom Batteries','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1175,'BC-01175','2025-06-12','Online Transfer from CHK ...2560 transaction#: XXXXXXX0070','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1176,'BC-01176','2025-06-12','ONLINE INTERNATIONAL WIRE TRANSFER A/C: BANK OF NINGBO CO LTD NINGBO CITY CHINA XX510-0 CN BEN:/XXXXXXXXXXXXX1931 SHENZHEN GSL ENERGY REF: GSL-SHXXXX0417US01 IN VOICE PAYMENT TRN: XXXXXX5163 ES 06/12','GSL Energy','COGS - Custom Batteries','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1177,'BC-01177','2025-06-18','Online Transfer from CHK ...2560 transaction#: XXXXXXX3028','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1178,'BC-01178','2025-06-18','ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: CPXX0616A - INITIAL DEPOSIT TELXXXXXXXXX6435/INVOICE PAYMENT TRN: XXXXXX5169 ES 06/18','Shenzhen Cleva Power Co.,Ltd','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1179,'BC-01179','2025-06-24','Online Transfer from CHK ...2560 transaction#: XXXXXXX8924','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1180,'BC-01180','2025-06-24','ONLINE INTERNATIONAL WIRE TRANSFER A/C: JPMORGAN CHASE BANK N A HONG KONG HONG KONG XX9077 HK REF: GSL-SHXXXX0616US01 INVOICE PAYMENT TRN: XXXXXX5175 ES 06/24','GSL Energy','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1181,'BC-01181','2025-06-26','Online Transfer from CHK ...2560 transaction#: XXXXXXX5737','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1182,'BC-01182','2025-06-26','ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: SFD-LBC1425R1 IMAD: 0626MMQFMP2KXX2685 TRN: 36133751 77ES 06/26','Shenzhen SunFiD New Energy Co., Ltd.','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1183,'BC-01183','2025-07-03','Online Transfer to CHK ...7932 transaction#: XXXXXXX9752 07/03','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1184,'BC-01184','2025-07-03','ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: SFD-LBC1424 IMAD: 0703MMQFMP2MXX5454 TRN: XXXXXX5184 ES 07/03','Shenzhen SunFiD New Energy Co., Ltd.','COGS - Custom Batteries','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1185,'BC-01185','2025-07-23','Online Transfer to CHK ...7932 transaction#: XXXXXXX2635 07/23','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1186,'BC-01186','2025-07-23','ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: LBC INVOICE: CPXXXX2900C TELXXXXXXXXX6435/INVOICE PAYMENT TR N: XXXXXX5204ES 07/23','','COGS - Custom Batteries','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1187,'BC-01187','2025-08-06','Online Transfer to CHK ...7932 transaction#: XXXXXXX1962 08/06','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1188,'BC-01188','2025-08-07','FEDWIRE CREDIT VIA: FEDERAL HOME LOAN BK OF PITTSBURGH/XXXXX1435 B/O: INFIRST BANK INDIANA, PA X5701 REF: CHASE NYC/CTR/BNF=LITHIUM BATTERY COMPANY INTL, LLC TA MPA FL XXXX4-800 6 US/AC-XXXXXXXX5806 RFB=NOTPROVIDE D OBI=/PURP/START UP FUNDS FOR SON\' S COMP ANY/URI/BUSINESS START UP CO ST IMAD: 0807MMQFMPDRXX0053 TRN: XXXXXX1219 FF','Ron Staron - Vendor','Staron Inventory Loan','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1189,'BC-01189','2025-08-07','ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC INVOICE 1426 IMAD: 0807MMQFMP2MXX4643 TRN: 30367 X5219ES 08/07','Shenzhen SunFiD New Energy Co., Ltd.','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1190,'BC-01190','2025-08-12','ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: INVOICELBC1427 IMAD: 0812MMQFMP2KXX7336 TRN: 3307085 224ES 08/12','Shenzhen SunFiD New Energy Co., Ltd.','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1191,'BC-01191','2025-08-21','Online Transfer from CHK ...7932 transaction#: XXXXXXX9003','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1192,'BC-01192','2025-08-22','Online Transfer from CHK ...7932 transaction#: XXXXXXX2235','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1193,'BC-01193','2025-08-22','ONLINE DOMESTIC WIRE TRANSFER VIA: BK AMER NYC/XXXXX9593 A/C: LR PROPERTY MANAGEMENT LLC TAMPA FL X3606 US REF: LBC SECURITY DEPOSIT IMAD: 0822MMQFMP2KXX3207 TR N: XXXXXX5234ES 08/22','Shenzhen SunFiD New Energy Co., Ltd.','COGS - Custom Batteries','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1194,'BC-01194','2025-08-22','FEDWIRE CREDIT VIA: CAPITAL ONE, NA/XXXXX3502 B/O: UP NORTH CONSULTING LIMITED LIABILITAMPA,FL,X3616,US REF: CHASE NYC/CTR/BNF=LITHIUM BATTERY COMPANY INTL, LLC TAMPA FL XXXX4-800 6 US/AC-XXXXXXXX5806 RFB=SBBMM09TD3 AWDCPN OBI=/URI/COACHMAN LEASE IMAD: 0822MMQFMPGHXX0496 TRN: XXXXXX1234 FF','Unc Consulting','Rent & Lease Expense','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1195,'BC-01195','2025-08-22','','LR Property Management','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1196,'BC-01196','2025-08-29','Online Transfer from CHK ...7932 transaction#: XXXXXXX0681','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1197,'BC-01197','2025-08-31','Online Transfer from CHK ...7932 transaction#: XXXXXXX5201','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1198,'BC-01198','2025-09-01','GSL Customer','','Reconciliation Discrepancies','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1199,'BC-01199','2025-09-05','','Shenzhen SunFiD New Energy Co., Ltd.','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1200,'BC-01200','2025-09-05','','Shenzhen SunFiD New Energy Co., Ltd.','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1201,'BC-01201','2025-09-05','','Shenzhen SunFiD New Energy Co., Ltd.','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1202,'BC-01202','2025-10-24','','Shenzhen Cleva Power Co.,Ltd','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1203,'BC-01203','2025-01-09','','Dave Schmaltz','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1204,'BC-01204','2025-01-14','','Dave Schmaltz','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1205,'BC-01205','2025-02-04','','Marcus Portillo','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1206,'BC-01206','2025-02-04','','Marcus Portillo','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1207,'BC-01207','2025-02-05','','Fiona Taylor','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1208,'BC-01208','2025-02-06','','Fiona Taylor','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1209,'BC-01209','2025-02-10','','Michael Posner','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1210,'BC-01210','2025-02-14','','Bill Hendricks','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1211,'BC-01211','2025-02-26','','Bill Hendricks','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1212,'BC-01212','2025-03-04','','Doug Shelby','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1213,'BC-01213','2025-03-04','','Bob Beyer','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1214,'BC-01214','2025-03-07','','Marcus Portillo','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1215,'BC-01215','2025-03-11','','Rob Simmons','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1216,'BC-01216','2025-03-11','','Rob Simmons','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1217,'BC-01217','2025-03-14','','Michael Posner','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1218,'BC-01218','2025-04-14','','CDTi Advanced Materials, Inc..','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1219,'BC-01219','2025-04-15','','CDTi Advanced Materials, Inc..','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1220,'BC-01220','2025-04-15','','Jeff Naish','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1221,'BC-01221','2025-04-16','','Fiona Taylor','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1222,'BC-01222','2025-04-22','','LG Electronics USA','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1223,'BC-01223','2025-04-28','','Tommy Ausherman','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1224,'BC-01224','2025-05-02','','Tommy Ausherman','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1225,'BC-01225','2025-05-02','','LG Electronics USA','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1226,'BC-01226','2025-05-07','','Tommy Ausherman','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1227,'BC-01227','2025-06-02','','Menno T Bauman','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1228,'BC-01228','2025-06-03','','Emerson Ornstein','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1229,'BC-01229','2025-06-03','','Emerson Ornstein','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1230,'BC-01230','2025-06-04','','Michael Posner','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1231,'BC-01231','2025-06-09','','Bob Beyer','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1232,'BC-01232','2025-06-13','','US Air Force Research Laboratory','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1233,'BC-01233','2025-06-17','','US Air Force Research Laboratory','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1234,'BC-01234','2025-06-18','','Bob Beyer','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1235,'BC-01235','2025-06-27','','Emerson Ornstein','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1236,'BC-01236','2025-07-22','','Michael Faughnan','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1237,'BC-01237','2025-07-22','','Tommy Ausherman','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1238,'BC-01238','2025-07-22','','Tommy Ausherman','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1239,'BC-01239','2025-07-25','','LG Electronics USA','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1240,'BC-01240','2025-07-25','','Federal Bureau of Investigation - FBI','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1241,'BC-01241','2025-07-30','','Michael Faughnan','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1242,'BC-01242','2025-09-07','','Burmuda Electric Light Company','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1243,'BC-01243','2025-09-07','','Grander Marine Service Department','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1244,'BC-01244','2025-09-30','','Obsidian Integration','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1245,'BC-01245','2025-09-30','','Obsidian Integration','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1246,'BC-01246','2025-11-06','','Kevin Kieffer','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1247,'BC-01247','2025-11-07','24V 75Ah Lithium Ion Battery - LFP - Opening inventory and value','','Opening Balance Equity','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1248,'BC-01248','2025-09-15','September 2025 Rent','LR Property Management','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1249,'BC-01249','2025-01-14','Paid via QuickBooks Payments: Payment ID 610162','Dave Schmaltz','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1250,'BC-01250','2025-01-14','Paid via QuickBooks Payments: Payment ID 610162','Dave Schmaltz','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1251,'BC-01251','2025-02-04','Paid via QuickBooks Payments: Payment ID 498-517','Marcus Portillo','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1252,'BC-01252','2025-02-04','Paid via QuickBooks Payments: Payment ID 498-517','Marcus Portillo','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1253,'BC-01253','2025-02-06','Paid via QuickBooks Payments: Payment ID R58143','Fiona Taylor','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1254,'BC-01254','2025-02-07','Paid via QuickBooks Payments: Payment ID R58143','Fiona Taylor','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1255,'BC-01255','2025-03-04','Paid via QuickBooks Payments: Payment ID 200418','Doug Shelby','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1256,'BC-01256','2025-03-04','Paid via QuickBooks Payments: Payment ID 115047','Bob Beyer','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1257,'BC-01257','2025-03-04','Paid via QuickBooks Payments: Payment ID 200418','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1258,'BC-01258','2025-03-04','Paid via QuickBooks Payments: Payment ID 115047','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1259,'BC-01259','2025-03-07','Paid via QuickBooks Payments: Payment ID 650216','Marcus Portillo','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1260,'BC-01260','2025-03-07','Paid via QuickBooks Payments: Payment ID 650216','Marcus Portillo','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1261,'BC-01261','2025-04-15','Paid via QuickBooks Payments: Payment ID 221229','CDTi Advanced Materials, Inc..','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1262,'BC-01262','2025-04-15','Paid via QuickBooks Payments: Payment ID 221229','CDTi Advanced Materials, Inc..','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1263,'BC-01263','2025-05-02','Paid via QuickBooks Payments: Payment ID 291-997','Tommy Ausherman','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1264,'BC-01264','2025-05-02','Paid via QuickBooks Payments: Payment ID 291-997','Tommy Ausherman','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1265,'BC-01265','2025-05-07','Paid via QuickBooks Payments: Payment ID 703-357','Tommy Ausherman','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1266,'BC-01266','2025-05-07','Paid via QuickBooks Payments: Payment ID 703-357','Tommy Ausherman','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1267,'BC-01267','2025-06-03','Paid via QuickBooks Payments: Payment ID 02754D','Emerson Ornstein','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1268,'BC-01268','2025-06-03','Paid via QuickBooks Payments: Payment ID 02754D','Emerson Ornstein','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1269,'BC-01269','2025-06-17','Paid via QuickBooks Payments: Payment ID 034416','US Air Force Research Laboratory','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1270,'BC-01270','2025-06-18','Paid via QuickBooks Payments: Payment ID 260460','Bob Beyer','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1271,'BC-01271','2025-06-18','Paid via QuickBooks Payments: Payment ID 034416','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1272,'BC-01272','2025-06-18','Paid via QuickBooks Payments: Payment ID 260460','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1273,'BC-01273','2025-06-27','Paid via QuickBooks Payments: Payment ID 04071D','Emerson Ornstein','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1274,'BC-01274','2025-06-27','Paid via QuickBooks Payments: Payment ID 04071D','Emerson Ornstein','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1275,'BC-01275','2025-07-22','Paid via QuickBooks Payments: Payment ID 823-147','Tommy Ausherman','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1276,'BC-01276','2025-07-22','Paid via QuickBooks Payments: Payment ID 824-387','Tommy Ausherman','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1277,'BC-01277','2025-07-22','Paid via QuickBooks Payments: Payment ID 823-147','Tommy Ausherman','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1278,'BC-01278','2025-07-22','Paid via QuickBooks Payments: Payment ID 824-387','Tommy Ausherman','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1279,'BC-01279','2025-07-30','Paid via QuickBooks Payments: Payment ID 288032','Michael Faughnan','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1280,'BC-01280','2025-07-30','Paid via QuickBooks Payments: Payment ID 288032','Michael Faughnan','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1281,'BC-01281','2025-09-30','Paid via QuickBooks Payments: Payment ID 229-367','Obsidian Integration','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1282,'BC-01282','2025-09-30','Paid via QuickBooks Payments: Payment ID 229-367','Obsidian Integration','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1283,'BC-01283','2025-03-25','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1284,'BC-01284','2025-03-25','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1285,'BC-01285','2025-03-25','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1286,'BC-01286','2025-01-15','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1287,'BC-01287','2025-01-15','WIRE TO FOGEL LAW GROUP TRUST ACCOUNT - For Plant Machinery & Equipement','Bluesea','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1288,'BC-01288','2025-09-22','Holding account setup','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1289,'BC-01289','2025-10-01','Tax withdrawal','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1290,'BC-01290','2025-10-10','Tax Payment for Period: 10/01/2025-10/03/2025','IRS','Federal Taxes (941/944)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1291,'BC-01291','2025-10-15','Tax withdrawal','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1292,'BC-01292','2025-10-22','Tax Payment for Period: 10/15/2025-10/17/2025','IRS','Federal Taxes (941/944)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1293,'BC-01293','2025-10-31','Tax Payment for Period: 07/01/2025-09/30/2025','FL U.C. Fund','FL Unemployment Tax','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1294,'BC-01294','2025-10-31','Tax withdrawal','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1295,'BC-01295','2025-11-04','Tax overpayment credit refund','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1296,'BC-01296','2025-11-05','Tax Payment for Period: 10/29/2025-10/31/2025','IRS','Federal Taxes (941/944)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1297,'BC-01297','2025-01-08','','Shenzhen SunFiD New Energy Co., Ltd.','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1298,'BC-01298','2025-01-13','','GSL Energy','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1299,'BC-01299','2025-01-16','','Shenzhen SunFiD New Energy Co., Ltd.','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1300,'BC-01300','2025-01-24','','GSL Energy','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1301,'BC-01301','2025-02-05','','Shenzhen SunFiD New Energy Co., Ltd.','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1302,'BC-01302','2025-02-11','','GSL Energy','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1303,'BC-01303','2025-03-05','','Shenzhen Cleva Power Co.,Ltd','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1304,'BC-01304','2025-03-05','','Shenzhen SunFiD New Energy Co., Ltd.','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1305,'BC-01305','2025-03-05','','Shenzhen SunFiD New Energy Co., Ltd.','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1306,'BC-01306','2025-03-05','','GSL Energy','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1307,'BC-01307','2025-03-05','','GSL Energy','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1308,'BC-01308','2025-03-10','','Shenzhen Cleva Power Co.,Ltd','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1309,'BC-01309','2025-03-11','','Shenzhen Cleva Power Co.,Ltd','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1310,'BC-01310','2025-03-17','','Shenzhen Cleva Power Co.,Ltd','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1311,'BC-01311','2025-06-01','','R.R. SIMMONS','Litigation Expense Accrual','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1312,'BC-01312','2025-06-02','','R.R. SIMMONS','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1313,'BC-01313','2025-06-18','','Shenzhen Cleva Power Co.,Ltd','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1314,'BC-01314','2025-06-18','','Shenzhen Cleva Power Co.,Ltd','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1315,'BC-01315','2025-06-24','','GSL Energy','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1316,'BC-01316','2025-06-24','','GSL Energy','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1317,'BC-01317','2025-06-26','','Shenzhen SunFiD New Energy Co., Ltd.','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1318,'BC-01318','2025-06-26','','Shenzhen SunFiD New Energy Co., Ltd.','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1319,'BC-01319','2025-07-07','','R.R. SIMMONS','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1320,'BC-01320','2025-07-31','','R.R. SIMMONS','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1321,'BC-01321','2025-08-07','','Shenzhen SunFiD New Energy Co., Ltd.','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1322,'BC-01322','2025-08-07','','Shenzhen SunFiD New Energy Co., Ltd.','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1323,'BC-01323','2025-08-12','','Shenzhen SunFiD New Energy Co., Ltd.','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1324,'BC-01324','2025-08-12','','Shenzhen SunFiD New Energy Co., Ltd.','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1325,'BC-01325','2025-08-22','','LR Property Management','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1326,'BC-01326','2025-09-05','','Shenzhen SunFiD New Energy Co., Ltd.','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1327,'BC-01327','2025-09-05','','Shenzhen SunFiD New Energy Co., Ltd.','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1328,'BC-01328','2025-09-05','','Shenzhen SunFiD New Energy Co., Ltd.','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1329,'BC-01329','2025-09-08','','GSL Energy','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1330,'BC-01330','2025-09-15','September 2025 Rent','LR Property Management','Security Deposit','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1331,'BC-01331','2025-09-15','','Bayfront Capital Holdings LLC','Litigation Expense Accrual','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1332,'BC-01332','2025-09-30','','Shenzhen SunFiD New Energy Co., Ltd.','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1333,'BC-01333','2025-10-24','','Shenzhen Cleva Power Co.,Ltd','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1334,'BC-01334','2025-11-01','','StrataGem Risk, LLC','Litigation Expense Accrual','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1335,'BC-01335','2025-01-01','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1336,'BC-01336','2025-01-01','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1337,'BC-01337','2025-01-01','FLBLUE* ACA         JACKSONVILLE        FL','','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1338,'BC-01338','2025-01-01','FLBLUE* ACA         JACKSONVILLE        FL','','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1339,'BC-01339','2025-01-01','FATHOM.VIDEO        SAN FRANCISCO       CA','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1340,'BC-01340','2025-01-01','LINKEDIN SN *3505782LNKD.IN/BILL        CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1341,'BC-01341','2025-01-01','GOOGLE*GSUITE LITHIUCC GOOGLE.COM','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1342,'BC-01342','2025-01-01','AplPay PUBLIX #1722 TAMPA               FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1343,'BC-01343','2025-01-02','AplPay UBER ONE     help.uber.com       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1344,'BC-01344','2025-01-02','NIC*-FL SUNBIZ.ORG  TALLAHASSEE         FL','','Legal & Professional Services','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1345,'BC-01345','2025-01-02','WAWA FUEL/CONVENIENCPINELLAS PARK       FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1346,'BC-01346','2025-01-02','BT*DIALPAD MEETINGS SAN RAMON           CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1347,'BC-01347','2025-01-02','IN *BLUE WATER MARINGULFPORT            FL','','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1348,'BC-01348','2025-01-03','FRESH KITCHEN KENNEDTAMPA               FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1349,'BC-01349','2025-01-03','HOOTERS #34 0001    TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1350,'BC-01350','2025-01-03','DNH*GODADDY#35037227Tempe               AZ','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1351,'BC-01351','2025-01-04','BRIGHT EYES FAMILY V813-7920637         FL','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1352,'BC-01352','2025-01-05','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1353,'BC-01353','2025-01-05','MICROSOFT-G072409147MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1354,'BC-01354','2025-01-05','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1355,'BC-01355','2025-01-05','CIRQUE ENTERTAINMENTBRADENTON           FL','','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1356,'BC-01356','2025-01-06','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','American Express','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1357,'BC-01357','2025-01-06','BLINK               AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1358,'BC-01358','2025-01-06','VZWRLSS BILL PAY VE 800-922-0204        FL','Verizon','Telephone Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1359,'BC-01359','2025-01-06','KWIK STOP WESTSHORE TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1360,'BC-01360','2025-01-06','HELP.USEMOTION.COM  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1361,'BC-01361','2025-01-06','NEUROSPA            TAMPA               FL','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1362,'BC-01362','2025-01-06','AplPay HIMS & HERS HSAN FRANCISCO       CA','','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1363,'BC-01363','2025-01-06','AplPay SPORT CLIPS -TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1364,'BC-01364','2025-01-06','SQSP* INV164321443  NEW YORK            NY','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1365,'BC-01365','2025-01-06','YOAST B.V.*${MERCHANWIJCHEN             NL','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1366,'BC-01366','2025-01-08','ZOOM.COM 888-799-966SAN JOSE            CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1367,'BC-01367','2025-01-08','DNH*GODADDY#35123870Tempe               AZ','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1368,'BC-01368','2025-01-08','JETPACK ER6PM31WMA  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1369,'BC-01369','2025-01-08','WWW.WOODIESWASH.COM TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1370,'BC-01370','2025-01-09','APPLECARE MNTHLY PLARICHFIELD           MN','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1371,'BC-01371','2025-01-09','DNH*GODADDY#35136131Tempe               AZ','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1372,'BC-01372','2025-01-09','DNH*GODADDY#35135959Tempe               AZ','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1373,'BC-01373','2025-01-09','JETPACK HK7DL7CU48  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1374,'BC-01374','2025-01-09','SAM\'S CLUB 6403 6403BRANDON             FL','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1375,'BC-01375','2025-01-10','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1376,'BC-01376','2025-01-10','PADDLE.NET* PREPRODUNEW YORK            NY','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1377,'BC-01377','2025-01-10','HOOTERS #34 0001    TAMPA               FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1378,'BC-01378','2025-01-10','JETPACK D9GRT8WNUQ  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1379,'BC-01379','2025-01-10','THE HOME DEPOT      TAMPA               FL','','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1380,'BC-01380','2025-01-10','YOAST B.V.          WIJCHEN             NL','YOAST','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1381,'BC-01381','2025-01-10','SEMRUSH INC         BOSTON              MA','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1382,'BC-01382','2025-01-11','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1383,'BC-01383','2025-01-11','PY *STORQUEST - TAMPTAMPA               FL','','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1384,'BC-01384','2025-01-11','AplPay Uber Trip    help.uber.com       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1385,'BC-01385','2025-01-11','ROCKETLAW 877-757-15SAN FRANCISCO       CA','','Legal & Professional Services','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1386,'BC-01386','2025-01-11','CANVA* I04393-492629CAMDEN              DE','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1387,'BC-01387','2025-01-11','DEAD BOB\'S TOO 40390TAMPA               FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1388,'BC-01388','2025-01-11','PIN CHASERS VETERANSTAMPA               FL','Pin Chasers','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1389,'BC-01389','2025-01-11','PIN CHASERS VETERANSTAMPA               FL','Pin Chasers','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1390,'BC-01390','2025-01-13','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1391,'BC-01391','2025-01-13','LINKEDIN PRE*3707270LNKD.IN/BILL        CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1392,'BC-01392','2025-01-13','DNH*GODADDY#35223307Tempe               AZ','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1393,'BC-01393','2025-01-13','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1394,'BC-01394','2025-01-13','AHREFS.COM          SINGAPORE           SG','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1395,'BC-01395','2025-01-13','AHREFS.COM          SINGAPORE           SG','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1396,'BC-01396','2025-01-13','BESTBUYCOMXXXXXX9403RICHFIELD           MN','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1397,'BC-01397','2025-01-13','LIVEPLAN            EUGENE              OR','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1398,'BC-01398','2025-01-14','AHREFS.COM          SINGAPORE           SG','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1399,'BC-01399','2025-01-14','GANDY CITGO 00034666TAMPA               FL','Citgo','Fuel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1400,'BC-01400','2025-01-14','AplPay HIMS & HERS HSAN FRANCISCO       CA','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1401,'BC-01401','2025-01-14','PAYPAL *NEXTCART    *****6390           VN','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1402,'BC-01402','2025-01-14','IMPORTGENIUS.COM    (855)573-9976       AZ','','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1403,'BC-01403','2025-01-15','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','American Express','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1404,'BC-01404','2025-01-16','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','American Express','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1405,'BC-01405','2025-01-16','DNH*GODADDY#35276886Tempe               AZ','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1406,'BC-01406','2025-01-17','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','American Express','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1407,'BC-01407','2025-01-17','HOOTERS #34 0001    TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1408,'BC-01408','2025-01-17','BLS*WWW ARTLIST IO  DOVER               DE','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1409,'BC-01409','2025-01-17','INAI PTE. LTD.      SINGAPORE           SG','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1410,'BC-01410','2025-01-17','AITUBOART           HUNGHOM             HK','Aituboart','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1411,'BC-01411','2025-01-18','B2B NINJABIGCOMM APHOUSTON TX NATHAN A STARON-13009-NT_ND9V76CY +15128564652 B2B NINJA-BIGCOMM APP HOUSTON TX','BIGCOMMERCE','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1412,'BC-01412','2025-01-18','AMZ*WOOT LLC E5R32P0PAY.AMAZON.CO       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1413,'BC-01413','2025-01-18','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1414,'BC-01414','2025-01-18','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1415,'BC-01415','2025-01-18','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1416,'BC-01416','2025-01-18','B2B NINJA-BIGCOMM APHOUSTON             TX','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1417,'BC-01417','2025-01-18','B2B NINJA-BIGCOMM APHOUSTON             TX','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1418,'BC-01418','2025-01-18','B2B NINJA-BIGCOMM APP                   TX','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1419,'BC-01419','2025-01-18','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1420,'BC-01420','2025-01-19','AplPay UBER EATS    HTTPS://HELP.UBER.COCA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1421,'BC-01421','2025-01-19','AplPay UBER THEORIGIHTTPS://HELP.UBER.COCA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1422,'BC-01422','2025-01-19','FIGMA MONTHLY RENEWASAN FRANCISCO       CA','Figma','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1423,'BC-01423','2025-01-19','SP CPAP.COM         STAFFORD            TX','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1424,'BC-01424','2025-01-20','AMAZON.COM          AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1425,'BC-01425','2025-01-20','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1426,'BC-01426','2025-01-20','AMAZON.COM          AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1427,'BC-01427','2025-01-20','YITHEMES.COM        SANTA CRUZ DE TENERI','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1428,'BC-01428','2025-01-21','SAM\'S CLUB 6403 6403BRANDON             FL','Sam\'s Club','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1429,'BC-01429','2025-01-21','SAM\'S CLUB 6403 6403BRANDON             FL','Sam\'s Club','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1430,'BC-01430','2025-01-21','WWW.WOODIESWASH.COM TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1431,'BC-01431','2025-01-21','WALGREENS           TAMPA               FL','Walgreens','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1432,'BC-01432','2025-01-22','DNH*GODADDY#35403911Tempe               AZ','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1433,'BC-01433','2025-01-22','EIN PRESSWIRE NEWS 0WASHINGTON          DC','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1434,'BC-01434','2025-01-22','AplPay FRESH KITCHENTAMPA               FL','Fresh Kitchen','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1435,'BC-01435','2025-01-22','SP CPAP.COM         STAFFORD            TX','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1436,'BC-01436','2025-01-23','TECO/PEOPLES GAS    813-223-0800        FL','TECOPEOPLES GAS','Gas/Electricity','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1437,'BC-01437','2025-01-23','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1438,'BC-01438','2025-01-23','KUBRA/TECO CONV FEE 800-766-6616        NJ','TECOPEOPLES GAS','Gas/Electricity','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1439,'BC-01439','2025-01-23','HOOTERS #34 0001    TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1440,'BC-01440','2025-01-24','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1441,'BC-01441','2025-01-24','FIGMENT.SO          NEW YORK            NY','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1442,'BC-01442','2025-01-25','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1443,'BC-01443','2025-01-25','MICROSOFT           MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1444,'BC-01444','2025-01-25','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1445,'BC-01445','2025-01-26','AplPay PUBLIX #1808 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1446,'BC-01446','2025-01-26','AplPay KWIK STOP WESTAMPA               FL','Kwik Stop','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1447,'BC-01447','2025-01-27','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1448,'BC-01448','2025-01-27','BT*RADIORF*180DAYSUBSAN ANTONIO         TX','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1449,'BC-01449','2025-01-27','GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1450,'BC-01450','2025-01-27','HDN*PARRISH LAW, PA SATELLITE BEA       FL','','Litigation Expense Accrual','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1451,'BC-01451','2025-01-28','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','American Express','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1452,'BC-01452','2025-01-28','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1453,'BC-01453','2025-01-28','AMAZON.COM          AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1454,'BC-01454','2025-01-28','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1455,'BC-01455','2025-01-28','AplPay UBER ONE     help.uber.com       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1456,'BC-01456','2025-01-28','INSURANCE PAYMENT FEDURHAM              NC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1457,'BC-01457','2025-01-28','AplPay JONI\'S PET SATampa               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1458,'BC-01458','2025-01-28','PIPEDRIVE INC       NEW YORK            NY','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1459,'BC-01459','2025-01-28','STRATAGEM RISK LLC 9ST PETERSBURG       FL','','Litigation Expense Accrual','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1460,'BC-01460','2025-01-29','APPLECARE MNTHLY PLARICHFIELD           MN','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1461,'BC-01461','2025-01-29','AplPay PUBLIX #1808 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1462,'BC-01462','2025-01-29','Extra Space 3639    TAMPA               FL','','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1463,'BC-01463','2025-01-29','GOOGLE*TV GOOGLE PAY G.CO HELPPAY#','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1464,'BC-01464','2025-01-29','NEUROSPA            TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1465,'BC-01465','2025-01-29','JACKSON DENTAL, P.A.TAMPA               FL','','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1466,'BC-01466','2025-01-30','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1467,'BC-01467','2025-01-30','KORE WIRELESS       ATLANTA             GA','','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1468,'BC-01468','2025-01-30','HOSTINGER* HOSTINGERWILMINGTON          DE','Hostinger','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1469,'BC-01469','2025-01-31','HOOTERS #34 0001    TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1470,'BC-01470','2025-01-31','FLBLUE* ACA         JACKSONVILLE        FL','','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1471,'BC-01471','2025-01-31','DABA NAILS & SPA 941TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1472,'BC-01472','2025-01-31','BIGCOMMERCE         AUSTIN              TX','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1473,'BC-01473','2025-01-31','FLBLUE* ACA         JACKSONVILLE        FL','','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1474,'BC-01474','2025-02-01','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1475,'BC-01475','2025-02-01','SAM\'S CLUB 6403 6403BRANDON             FL','Sam\'s Club','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1476,'BC-01476','2025-02-01','DNH*GODADDY#35591481Tempe               AZ','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1477,'BC-01477','2025-02-01','FATHOM.VIDEO        SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1478,'BC-01478','2025-02-01','GOOGLE              MOUNTAIN VIEW       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1479,'BC-01479','2025-02-01','LINKEDIN SN *3982298LNKD.IN/BILL        CA','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1480,'BC-01480','2025-02-01','DEW CADILLAC F&I 000PINELLAS PARK       FL','Dew Cadillac','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1481,'BC-01481','2025-02-02','AplPay UBER ONE     help.uber.com       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1482,'BC-01482','2025-02-02','WALGREENS           TAMPA               FL','Walgreens','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1483,'BC-01483','2025-02-02','BT*DIALPAD MEETINGS SAN RAMON           CA','Dialpad Meetings','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1484,'BC-01484','2025-02-02','AplPay GROUPON, INC.CHICAGO','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1485,'BC-01485','2025-02-02','AplPay TAMPA BAY DOWTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1486,'BC-01486','2025-02-02','AplPay GANDY BLVD SMTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1487,'BC-01487','2025-02-02','AplPay TAMPA BAY DOWTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1488,'BC-01488','2025-02-02','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1489,'BC-01489','2025-02-03','AplPay PUBLIX #1808 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1490,'BC-01490','2025-02-03','AplPay SPORT CLIPS -TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1491,'BC-01491','2025-02-03','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1492,'BC-01492','2025-02-03','AplPay CREAM DE LA CTampa               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1493,'BC-01493','2025-02-04','DNH*GODADDY#XXXXXXX0480-505-8855        AZ','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1494,'BC-01494','2025-02-04','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1495,'BC-01495','2025-02-04','WISESTAMP.COM       WILMINGTON          DE','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1496,'BC-01496','2025-02-04','WISESTAMP.COM       WILMINGTON          DE','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1497,'BC-01497','2025-02-04','CUSTOMESIGNATURE.COMSAN DIEGO           CA','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1498,'BC-01498','2025-02-04','EDUWHERE-KEIKA VENTUDURHAM              NC','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1499,'BC-01499','2025-02-05','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1500,'BC-01500','2025-02-05','GANDY CITGO 00034666TAMPA               FL','Citgo','Fuel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1501,'BC-01501','2025-02-05','MICROSOFT           MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1502,'BC-01502','2025-02-06','BLINK               AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1503,'BC-01503','2025-02-06','VZWRLSS BILL PAY VE 800-922-0204        FL','Verizon','Telephone Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1504,'BC-01504','2025-02-06','AplPay PUBLIX #1808 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1505,'BC-01505','2025-02-06','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1506,'BC-01506','2025-02-06','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1507,'BC-01507','2025-02-06','HELP.USEMOTION.COM  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1508,'BC-01508','2025-02-06','AplPay WAWA 5301 000TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1509,'BC-01509','2025-02-06','SQSP* INV168566245  NEW YORK            NY','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1510,'BC-01510','2025-02-07','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1511,'BC-01511','2025-02-07','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1512,'BC-01512','2025-02-07','HOOTERS #34 0001    TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1513,'BC-01513','2025-02-07','WALGREENS           TAMPA               FL','Walgreens','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1514,'BC-01514','2025-02-08','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1515,'BC-01515','2025-02-08','WWW.WOODIESWASH.COM TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1516,'BC-01516','2025-02-08','AplPay DINOSAUR WORLPLANT CITY          FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1517,'BC-01517','2025-02-08','SPIRIT AIRLINES     SOUTH FLORIDA       FL','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1518,'BC-01518','2025-02-08','DINOSAUR WORLD 00-08PLANT CITY          FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1519,'BC-01519','2025-02-08','AplPay DINOSAUR WORLPLANT CITY          FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1520,'BC-01520','2025-02-08','AplPay SP SAND SURF TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1521,'BC-01521','2025-02-08','AplPay TACO MADRE LLPLANT CITY          FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1522,'BC-01522','2025-02-09','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1523,'BC-01523','2025-02-09','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1524,'BC-01524','2025-02-09','APPLECARE MNTHLY PLARICHFIELD           MN','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1525,'BC-01525','2025-02-09','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1526,'BC-01526','2025-02-09','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1527,'BC-01527','2025-02-09','GENERAL MOTORS      DETROIT             MI','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1528,'BC-01528','2025-02-09','GENERAL MOTORS      DETROIT             MI','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1529,'BC-01529','2025-02-09','JETPACK HRB9EB9UHJ  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1530,'BC-01530','2025-02-09','AplPay DAIRY JOY    Tampa               FL','Dairy Joy','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1531,'BC-01531','2025-02-10','BT*SEMRUSH          BOSTON              MA','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1532,'BC-01532','2025-02-10','PADDLE.NET* PREPRODUNEW YORK            NY','Paddle.net','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1533,'BC-01533','2025-02-10','AIRBNB * HMR8NZ43XB SAN FRANCISCO       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1534,'BC-01534','2025-02-10','AIRBNB * HMR8NZ43XB SAN FRANCISCO       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1535,'BC-01535','2025-02-10','ZOOM.COM 888-799-966SAN JOSE            CA','Zoom','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1536,'BC-01536','2025-02-10','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1537,'BC-01537','2025-02-11','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1538,'BC-01538','2025-02-11','CANVA* I04424-697630CAMDEN              DE','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1539,'BC-01539','2025-02-11','ROCKETLAW 877-757-15SAN FRANCISCO       CA','','Legal & Professional Services','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1540,'BC-01540','2025-02-11','AplPay HARD ROCK BANTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1541,'BC-01541','2025-02-11','AplPay SPROUTS FARMETampa               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1542,'BC-01542','2025-02-11','AplPay HARD ROCK BANTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1543,'BC-01543','2025-02-11','PY *STORQUEST - TAMPTAMPA               FL','','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1544,'BC-01544','2025-02-13','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1545,'BC-01545','2025-02-13','LIVEPLAN            EUGENE              OR','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1546,'BC-01546','2025-02-13','LINKEDIN PRE*4240022LNKD.IN/BILL        CA','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1547,'BC-01547','2025-02-13','AVIS.COM PREPAY     VIRGINIA BEACH      VA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1548,'BC-01548','2025-02-13','NEUROSPA            TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1549,'BC-01549','2025-02-13','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1550,'BC-01550','2025-02-14','IMPORTGENIUS.COM    (855)573-9976       AZ','','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1551,'BC-01551','2025-02-14','AplPay SHEETZ 0582  MONROEVILLE         PA','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1552,'BC-01552','2025-02-14','TEXAS ROADHOUSE #284INDIANA             PA','Texas Roadhouse','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1553,'BC-01553','2025-02-14','AplPay TPA 6126 ChicTampa               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1554,'BC-01554','2025-02-15','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1555,'BC-01555','2025-02-15','GOOGLE *YOUTUBE VIDE G.CO/HELPPAY#      CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1556,'BC-01556','2025-02-15','HILTON GARDEN INN ININDIANA             PA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1557,'BC-01557','2025-02-15','AplPay WHITE TOWNSHIINDIANA             PA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1558,'BC-01558','2025-02-15','AplPay WHITE TOWNSHIINDIANA             PA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1559,'BC-01559','2025-02-16','AplPay SHEETZ       INDIANA             PA','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1560,'BC-01560','2025-02-16','AplPay DUNKIN #34938INDIANA             PA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1561,'BC-01561','2025-02-16','AplPay MARTIN\'S FOODINDIANA             PA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1562,'BC-01562','2025-02-17','HILTON GARDEN INN 0 INDIANA             PA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1563,'BC-01563','2025-02-17','AplPay CHICK FIL A 6PITTSBURGH          PA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1564,'BC-01564','2025-02-17','FABLETICS.COM       855-202-3570        CA','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1565,'BC-01565','2025-02-17','AplPay CHICK FIL A 6PITTSBURGH          PA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1566,'BC-01566','2025-02-17','AVIS RENT A CAR     PITTSBURGH          PA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1567,'BC-01567','2025-02-17','GET GO              PITTSBURGH          PA','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1568,'BC-01568','2025-02-17','INAI PTE. LTD.      SINGAPORE           SG','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1569,'BC-01569','2025-02-17','PITAP - FB - HR PittPITTSBURGH          PA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1570,'BC-01570','2025-02-17','AITUBOART           HUNGHOM             HK','Aituboart','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1571,'BC-01571','2025-02-18','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1572,'BC-01572','2025-02-18','AMERICAN AIRLINES   800-433-7300        TX','American Airlines','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1573,'BC-01573','2025-02-18','AMERICAN AIRLINES   800-433-7300        TX','American Airlines','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1574,'BC-01574','2025-02-18','AMERICAN AIRLINES   800-433-7300        TX','American Airlines','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1575,'BC-01575','2025-02-18','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1576,'BC-01576','2025-02-18','DELTA AIR LINES     ATLANTA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1577,'BC-01577','2025-02-18','DELTA AIR LINES     ATLANTA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1578,'BC-01578','2025-02-18','AplPay CHICK FIL A 6PITTSBURGH          PA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1579,'BC-01579','2025-02-18','DELTA AIR LINES     ATLANTA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1580,'BC-01580','2025-02-18','TST* PITTSBURGH - BUPITTSBURGH          PA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1581,'BC-01581','2025-02-18','HOTELCOMXXXXXXXX1597HOTELS.COM          WA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1582,'BC-01582','2025-02-18','AplPay CAPITOL FILE LAS VEGAS           NV','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1583,'BC-01583','2025-02-18','TST* PITTSBURGH - BUPITTSBURGH          PA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1584,'BC-01584','2025-02-19','AplPay PUBLIX #1808 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1585,'BC-01585','2025-02-19','FIGMA MONTHLY RENEWASAN FRANCISCO       CA','Figma','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1586,'BC-01586','2025-02-19','DELTA AIR LINES     ATLANTA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1587,'BC-01587','2025-02-19','DELTA AIR LINES     ATLANTA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1588,'BC-01588','2025-02-19','DELTA AIR LINES     ATLANTA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1589,'BC-01589','2025-02-19','PY *PF CHANG\'S 00000ARLINGTON           VA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1590,'BC-01590','2025-02-19','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1591,'BC-01591','2025-02-20','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1592,'BC-01592','2025-02-20','DNH*GODADDY#XXXXXXX4480-505-8855        AZ','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1593,'BC-01593','2025-02-20','ROCK IT FITNESS 9362TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1594,'BC-01594','2025-02-20','THE STUDY SALON     TAMPA               FL','The Study Salon','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1595,'BC-01595','2025-02-21','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1596,'BC-01596','2025-02-21','WWW.WOODIESWASH.COM TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1597,'BC-01597','2025-02-21','YOAST B.V.          WIJCHEN             NL','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1598,'BC-01598','2025-02-22','AIRBNB * HMBPS53AYD SAN FRANCISCO       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1599,'BC-01599','2025-02-22','SHUTTERSTOCK        NEW YORK','Shutterstock','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1600,'BC-01600','2025-02-22','SHUTTERSTOCK        NEW YORK','Shutterstock','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1601,'BC-01601','2025-02-22','AplPay SP SAND SURF TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1602,'BC-01602','2025-02-22','AplPay SP SAND SURF TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1603,'BC-01603','2025-02-22','AplPay GROUPON, INC.CHICAGO','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1604,'BC-01604','2025-02-22','SP SAND SURF CO     TAMPA               FL','Sand Surf Co','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1605,'BC-01605','2025-02-22','SP SAND SURF CO     TAMPA               FL','Sand Surf Co','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1606,'BC-01606','2025-02-22','CHUCK LAGER AMERICA\'TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1607,'BC-01607','2025-02-23','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1608,'BC-01608','2025-02-24','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1609,'BC-01609','2025-02-24','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1610,'BC-01610','2025-02-24','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1611,'BC-01611','2025-02-24','FIGMENT.SO          NEW YORK            NY','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1612,'BC-01612','2025-02-24','AplPay SPORT CLIPS -TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1613,'BC-01613','2025-02-24','AplPay LECADA LLC 00TAMPA               FL','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1614,'BC-01614','2025-02-24','AplPay GROUPON, INC.CHICAGO','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1615,'BC-01615','2025-02-24','WALMART.COM 80092562BENTONVILLE         AR','Walmart','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1616,'BC-01616','2025-02-24','AplPay PALMA CEIA HETAMPA               FL','','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1617,'BC-01617','2025-02-24','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1618,'BC-01618','2025-02-24','AplPay IC* ABC FINE SAN FRANCISCO       CA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1619,'BC-01619','2025-02-25','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1620,'BC-01620','2025-02-25','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1621,'BC-01621','2025-02-25','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1622,'BC-01622','2025-02-25','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1623,'BC-01623','2025-02-25','AplPay PUBLIX #1688 INDIALANTIC         FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1624,'BC-01624','2025-02-25','MICROSOFT*ULTIMATE 1MSBILL.INFO         WA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1625,'BC-01625','2025-02-26','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1626,'BC-01626','2025-02-26','NEUROSPA            TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1627,'BC-01627','2025-02-26','PPY=TAMPA NEUROPSYCHTAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1628,'BC-01628','2025-02-27','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1629,'BC-01629','2025-02-27','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1630,'BC-01630','2025-02-27','AplPay UBER ONE     help.uber.com       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1631,'BC-01631','2025-02-27','AplPay PUBLIX #1688 INDIALANTIC         FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1632,'BC-01632','2025-02-27','GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1633,'BC-01633','2025-02-27','COLD STONE CREAMERY INDIALANTIC         FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1634,'BC-01634','2025-02-27','AplPay RON JON SURF COCOA BEACH         FL','Ron Jon Surf Shop','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1635,'BC-01635','2025-02-27','AplPay RON JON SURF COCOA BEACH         FL','Ron Jon Surf Shop','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1636,'BC-01636','2025-02-27','AplPay RON JON SURF COCOA BEACH         FL','Ron Jon Surf Shop','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1637,'BC-01637','2025-02-28','APPLECARE MNTHLY PLARICHFIELD           MN','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1638,'BC-01638','2025-02-28','WALGREENS           TAMPA               FL','Walgreens','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1639,'BC-01639','2025-02-28','HOSTINGER* HOSTINGERWILMINGTON          DE','Hostinger','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1640,'BC-01640','2025-02-28','FLBLUE* ACA         JACKSONVILLE        FL','','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1641,'BC-01641','2025-02-28','FLBLUE* ACA         JACKSONVILLE        FL','','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1642,'BC-01642','2025-02-28','PIPEDRIVE INC       NEW YORK            NY','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1643,'BC-01643','2025-03-01','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1644,'BC-01644','2025-03-01','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1645,'BC-01645','2025-03-01','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1646,'BC-01646','2025-03-01','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1647,'BC-01647','2025-03-01','FATHOM.VIDEO        SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1648,'BC-01648','2025-03-01','Extra Space 3639    TAMPA               FL','','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1649,'BC-01649','2025-03-01','GOOGLE *GSUITE_LITHICC@GOOGLE.COM       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1650,'BC-01650','2025-03-01','BIGCOMMERCE         AUSTIN              TX','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1651,'BC-01651','2025-03-01','LINKEDIN SN *2701599LNKD.IN/BILL        CA','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1652,'BC-01652','2025-03-01','USPS.COM CLICKNSHIP 800-344-7779        DC','USPS','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1653,'BC-01653','2025-03-01','KORE WIRELESS       ATLANTA             GA','Kore Wireless','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1654,'BC-01654','2025-03-02','AplPay UBER ONE     help.uber.com       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1655,'BC-01655','2025-03-02','BT*DIALPAD MEETINGS SAN RAMON           CA','Dialpad Meetings','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1656,'BC-01656','2025-03-02','ENVATO              CHICAGO             IL','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1657,'BC-01657','2025-03-02','MISTER SPARKY 436845BRADENTON           FL','','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1658,'BC-01658','2025-03-03','AplPay PUBLIX #1808 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1659,'BC-01659','2025-03-03','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1660,'BC-01660','2025-03-03','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1661,'BC-01661','2025-03-05','MICROSOFT           MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1662,'BC-01662','2025-03-05','TARGET.COM          800-591-3869        MN','','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1663,'BC-01663','2025-03-06','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1664,'BC-01664','2025-03-06','BLINK               AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1665,'BC-01665','2025-03-06','HELP.USEMOTION.COM  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1666,'BC-01666','2025-03-06','FABLETICS.COM       855-202-3570        CA','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1667,'BC-01667','2025-03-06','SQSP* INV172626226  NEW YORK            NY','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1668,'BC-01668','2025-03-07','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1669,'BC-01669','2025-03-07','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1670,'BC-01670','2025-03-07','AplPay JFK Ml CASA TAshburn             VA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1671,'BC-01671','2025-03-08','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1672,'BC-01672','2025-03-08','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1673,'BC-01673','2025-03-08','WWW.WOODIESWASH.COM TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1674,'BC-01674','2025-03-08','AplPay GANDY BLVD SMTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1675,'BC-01675','2025-03-09','APPLECARE MNTHLY PLARICHFIELD           MN','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1676,'BC-01676','2025-03-09','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1677,'BC-01677','2025-03-09','JETPACK RYQ29RWQEY  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1678,'BC-01678','2025-03-09','FLORIDA STRAWBERRY FPLANT CITY          FL','Florida Strawberry','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1679,'BC-01679','2025-03-09','AplPay GRIFF\'S CATERPlant City          FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1680,'BC-01680','2025-03-10','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1681,'BC-01681','2025-03-10','SEMRUSH INC         BOSTON              MA','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1682,'BC-01682','2025-03-10','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1683,'BC-01683','2025-03-10','ZOOM.COM 888-799-966SAN JOSE            CA','Zoom','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1684,'BC-01684','2025-03-10','PADDLE.NET* PREPRODUNEW YORK            NY','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1685,'BC-01685','2025-03-10','AplPay AMC 9640 ONLILEAWOOD             KS','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1686,'BC-01686','2025-03-10','AplPay AMC 9640 ONLILEAWOOD             KS','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1687,'BC-01687','2025-03-11','CANVA* I04452-658981CAMDEN              DE','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1688,'BC-01688','2025-03-11','ROCKETLAW 877-757-15SAN FRANCISCO       CA','','Legal & Professional Services','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1689,'BC-01689','2025-03-11','PY *STORQUEST - TAMPTAMPA               FL','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1690,'BC-01690','2025-03-13','LINKEDIN PRE*4819531LNKD.IN/BILL        CA','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1691,'BC-01691','2025-03-13','THE WOMANS GROUP OF TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1692,'BC-01692','2025-03-13','LA TERESITA RESTAURATAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1693,'BC-01693','2025-03-14','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1694,'BC-01694','2025-03-14','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1695,'BC-01695','2025-03-14','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1696,'BC-01696','2025-03-14','AplPay PUBLIX #1808 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1697,'BC-01697','2025-03-14','AplPay IC* PUBLIX L SAN FRANCISCO       CA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1698,'BC-01698','2025-03-14','AplPay PUBLIX #1808 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1699,'BC-01699','2025-03-14','LIVEPLAN            EUGENE              OR','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1700,'BC-01700','2025-03-14','IMPORTGENIUS.COM    (855)573-9976       AZ','','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1701,'BC-01701','2025-03-14','JONI\'S PET SALON, INTampa               FL','Joni\'s Pet Salon','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1702,'BC-01702','2025-03-15','AplPay PARKMOBILE PaATLANTA             GA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1703,'BC-01703','2025-03-16','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1704,'BC-01704','2025-03-16','AplPay SPORT CLIPS -TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1705,'BC-01705','2025-03-17','SAM\'S CLUB 6403 6403BRANDON             FL','Sam\'s Club','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1706,'BC-01706','2025-03-17','SAM\'S CLUB 6403 6403BRANDON             FL','Sam\'s Club','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1707,'BC-01707','2025-03-17','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1708,'BC-01708','2025-03-17','AITUBOART           HUNGHOM             HK','Aituboart','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1709,'BC-01709','2025-03-17','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1710,'BC-01710','2025-03-17','AplPay THE HOME DEPOTAMPA               FL','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1711,'BC-01711','2025-03-17','INAI PTE. LTD.      SINGAPORE           SG','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1712,'BC-01712','2025-03-18','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1713,'BC-01713','2025-03-18','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1714,'BC-01714','2025-03-18','AMAZON.COM          AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1715,'BC-01715','2025-03-18','AplPay SPROUTS FARMETampa               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1716,'BC-01716','2025-03-18','AplPay TRADER JOE S TAMPA               FL','Trader Joe\'s','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1717,'BC-01717','2025-03-19','FIGMA               SAN FRANCISCO       CA','Figma','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1718,'BC-01718','2025-03-19','NEUROSPA            TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1719,'BC-01719','2025-03-19','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1720,'BC-01720','2025-03-20','DNH*GODADDY#XXXXXXX9480-505-8855        AZ','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1721,'BC-01721','2025-03-20','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1722,'BC-01722','2025-03-20','SERENITY HEALS THERAFORT MYERS          FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1723,'BC-01723','2025-03-21','WWW.WOODIESWASH.COM TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1724,'BC-01724','2025-03-21','BESTBUYCOMXXXXXX5523RICHFIELD           MN','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1725,'BC-01725','2025-03-21','MICROSOFT           MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1726,'BC-01726','2025-03-21','HOOTERS #34 0001    TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1727,'BC-01727','2025-03-21','AplPay D34 DISNEY ONPALMETTO            FL','Disney','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1728,'BC-01728','2025-03-21','AplPay AMALIE ARENA TAMPA               FL','Amalie Arena','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1729,'BC-01729','2025-03-21','AplPay D34 DISNEY ONPALMETTO            FL','Disney','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1730,'BC-01730','2025-03-21','AplPay AMALIE ARENA TAMPA               FL','Amalie Arena','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1731,'BC-01731','2025-03-21','AplPay AMALIE ARENA TAMPA               FL','Amalie Arena','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1732,'BC-01732','2025-03-21','AplPay AMALIE ARENA TAMPA               FL','Amalie Arena','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1733,'BC-01733','2025-03-22','RESTAURANT DEPOT 413TAMPA               FL','Restaurant Depot','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1734,'BC-01734','2025-03-22','AplPay IC* TOTAL WI SAN FRANCISCO       CA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1735,'BC-01735','2025-03-23','AplPay UBER EATS    HTTPS://HELP.UBER.COCA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1736,'BC-01736','2025-03-23','MICROSOFT           MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1737,'BC-01737','2025-03-24','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1738,'BC-01738','2025-03-24','FIGMENT.SO          NEW YORK            NY','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1739,'BC-01739','2025-03-24','AplPay DUCKWEED LIQUTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1740,'BC-01740','2025-03-25','AplPay AMTRAK MOBILEWASHINGTON          DC','Amtrak','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1741,'BC-01741','2025-03-25','AplPay PUBLIX #1808 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1742,'BC-01742','2025-03-25','MICROSOFT           MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1743,'BC-01743','2025-03-26','AplPay AMTRAK MOBILEWASHINGTON          DC','Amtrak','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1744,'BC-01744','2025-03-26','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1745,'BC-01745','2025-03-27','GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1746,'BC-01746','2025-03-27','DABA NAILS & SPA 941TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1747,'BC-01747','2025-03-28','KORE WIRELESS       ATLANTA             GA','Kore Wireless','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1748,'BC-01748','2025-03-28','SUSHI SONO 00-080326COLUMBIA            MD','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1749,'BC-01749','2025-03-28','AplPay COLUMBIA CAFETAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1750,'BC-01750','2025-03-28','PIPEDRIVE INC       NEW YORK            NY','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1751,'BC-01751','2025-03-29','Extra Space 3639    TAMPA               FL','','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1752,'BC-01752','2025-03-29','AplPay GIANT FOOD   LORTON              VA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1753,'BC-01753','2025-03-30','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1754,'BC-01754','2025-03-30','HOSTINGER* HOSTINGERWILMINGTON          DE','Hostinger','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1755,'BC-01755','2025-03-31','AplPay UBER EATS    HTTPS://HELP.UBER.COCA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1756,'BC-01756','2025-03-31','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1757,'BC-01757','2025-03-31','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1758,'BC-01758','2025-03-31','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1759,'BC-01759','2025-03-31','BIGCOMMERCE         AUSTIN              TX','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1760,'BC-01760','2025-03-31','FLBLUE* ACA         JACKSONVILLE        FL','','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1761,'BC-01761','2025-03-31','FLBLUE* ACA         JACKSONVILLE        FL','','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1762,'BC-01762','2025-03-31','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1763,'BC-01763','2025-04-01','GOOGLE              MOUNTAIN VIEW       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1764,'BC-01764','2025-04-01','LINKEDIN SN P5207806MOUNTAIN VIEW','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1765,'BC-01765','2025-04-01','AplPay TARGET       TAMPA               FL','TARGET','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1766,'BC-01766','2025-04-01','AplPay EIOTCLUB     ADMIRALTY           HK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1767,'BC-01767','2025-04-02','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1768,'BC-01768','2025-04-02','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1769,'BC-01769','2025-04-02','AplPay UBER ONE     help.uber.com       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1770,'BC-01770','2025-04-02','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1771,'BC-01771','2025-04-02','BT*DIALPAD MEETINGS SAN RAMON           CA','Dialpad Meetings','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1772,'BC-01772','2025-04-02','PPY=TAMPA NEUROPSYCHTAMPA               FL','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1773,'BC-01773','2025-04-02','RING STANDARD PLAN  SANTA MONICA        CA','RINGCENTRAL','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1774,'BC-01774','2025-04-03','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1775,'BC-01775','2025-04-03','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1776,'BC-01776','2025-04-03','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1777,'BC-01777','2025-04-03','NEUROSPA            TAMPA               FL','Neurospa','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1778,'BC-01778','2025-04-04','AplPay EIOTCLUB     ADMIRALTY           HK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1779,'BC-01779','2025-04-05','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1780,'BC-01780','2025-04-05','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1781,'BC-01781','2025-04-05','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1782,'BC-01782','2025-04-05','AplPay IC* PUBLIX L LAKELAND            FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1783,'BC-01783','2025-04-05','MICROSOFT           MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1784,'BC-01784','2025-04-06','BLINK               AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1785,'BC-01785','2025-04-06','HELP.USEMOTION.COM  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1786,'BC-01786','2025-04-06','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1787,'BC-01787','2025-04-06','AplPay MANHATTAN NAITAMPA               FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1788,'BC-01788','2025-04-06','SQSP* INV176792092  NEW YORK            NY','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1789,'BC-01789','2025-04-07','AMAZON.COM          AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1790,'BC-01790','2025-04-07','VZWRLSS BILL PAY VE 800-922-0204        FL','Verizon','Telephone Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1791,'BC-01791','2025-04-07','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1792,'BC-01792','2025-04-07','PMT*VEHICLETAGREN HITAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1793,'BC-01793','2025-04-07','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1794,'BC-01794','2025-04-08','WWW.WOODIESWASH.COM TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1795,'BC-01795','2025-04-08','ZOOM.COM 888-799-966SAN JOSE            CA','Zoom','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1796,'BC-01796','2025-04-08','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1797,'BC-01797','2025-04-09','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1798,'BC-01798','2025-04-09','JETPACK 5HYSMGTE7K  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1799,'BC-01799','2025-04-09','FABLETICS.COM       855-202-3570        CA','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1800,'BC-01800','2025-04-10','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1801,'BC-01801','2025-04-10','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1802,'BC-01802','2025-04-10','SEMRUSH INC         BOSTON              MA','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1803,'BC-01803','2025-04-10','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1804,'BC-01804','2025-04-10','AplPay SPORT CLIPS -TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1805,'BC-01805','2025-04-10','AplPay DUCKWEED LIQUTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1806,'BC-01806','2025-04-10','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1807,'BC-01807','2025-04-10','PADDLE.NET* PREPRODUNEW YORK            NY','Paddle.net','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1808,'BC-01808','2025-04-10','AplPay CIRCLE K 0881TAMPA               FL','Circle K','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1809,'BC-01809','2025-04-11','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1810,'BC-01810','2025-04-11','AMAZON.COM          AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1811,'BC-01811','2025-04-11','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1812,'BC-01812','2025-04-11','AMAZON.COM          AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1813,'BC-01813','2025-04-11','CANVA* I04483-837153CAMDEN              DE','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1814,'BC-01814','2025-04-11','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1815,'BC-01815','2025-04-11','HOOTERS #34 0001    TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1816,'BC-01816','2025-04-11','ROCKETLAW 877-757-15SAN FRANCISCO       CA','','Legal & Professional Services','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1817,'BC-01817','2025-04-11','MOBILE PAYMENT - THANK YOU','American Express','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1818,'BC-01818','2025-04-11','PY *STORQUEST - TAMPTAMPA               FL','Storquest','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1819,'BC-01819','2025-04-11','AMERICAN EXPRESS TRASEATTLE             WA','American Express','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1820,'BC-01820','2025-04-11','AMERICAN EXPRESS TRASEATTLE             WA','American Express','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1821,'BC-01821','2025-04-12','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1822,'BC-01822','2025-04-12','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1823,'BC-01823','2025-04-12','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1824,'BC-01824','2025-04-12','AplPay PUBLIX #1808 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1825,'BC-01825','2025-04-12','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1826,'BC-01826','2025-04-12','WALGREENS           TAMPA               FL','Walgreens','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1827,'BC-01827','2025-04-12','DELTA AIR LINES     ATLANTA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1828,'BC-01828','2025-04-12','DELTA AIR LINES     ATLANTA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1829,'BC-01829','2025-04-13','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1830,'BC-01830','2025-04-13','LINKEDIN PRE P545260MOUNTAIN VIEW','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1831,'BC-01831','2025-04-13','AplPay CARTER S #131TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1832,'BC-01832','2025-04-13','AplPay CREAM DE LA CTampa               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1833,'BC-01833','2025-04-14','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1834,'BC-01834','2025-04-14','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1835,'BC-01835','2025-04-14','AplPay Uber Trip    help.uber.com       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1836,'BC-01836','2025-04-14','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1837,'BC-01837','2025-04-14','IMPORTGENIUS.COM    (855)573-9976       AZ','','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1838,'BC-01838','2025-04-14','WALGREENS           TAMPA               FL','Walgreens','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1839,'BC-01839','2025-04-14','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1840,'BC-01840','2025-04-14','AplPay THE HOME DEPOTAMPA               FL','THE HOME DEPOT','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1841,'BC-01841','2025-04-15','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1842,'BC-01842','2025-04-15','AplPay Uber Trip    help.uber.com       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1843,'BC-01843','2025-04-15','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1844,'BC-01844','2025-04-16','AplPay TARGET       TAMPA               FL','TARGET','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1845,'BC-01845','2025-04-16','LEAF HOME WATER SOLUHUDSON              OH','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1846,'BC-01846','2025-04-16','MOD DISPLAYS        HARRISONBURG        VA','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1847,'BC-01847','2025-04-17','AITUBOART           HUNGHOM             HK','Aituboart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1848,'BC-01848','2025-04-17','INAI PTE. LTD.      SINGAPORE           SG','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1849,'BC-01849','2025-04-18','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1850,'BC-01850','2025-04-18','AplPay PUBLIX       FORT MYERS          FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1851,'BC-01851','2025-04-19','FIGMA               SAN FRANCISCO       CA','Figma','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1852,'BC-01852','2025-04-20','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1853,'BC-01853','2025-04-20','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1854,'BC-01854','2025-04-20','RACETRAC2571  025718FORT MYERS          FL','RACETRAC','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1855,'BC-01855','2025-04-21','WWW.WOODIESWASH.COM TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1856,'BC-01856','2025-04-21','AplPay PUBLIX       FORT MYERS          FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1857,'BC-01857','2025-04-21','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1858,'BC-01858','2025-04-21','PEACOCK             NEW YORK CITY       NY','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1859,'BC-01859','2025-04-21','Platinum Digital Entertainment Credit','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1860,'BC-01860','2025-04-21','AplPay FORDS GARAGE ESTERO              FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1861,'BC-01861','2025-04-22','DNH*GODADDY#XXXXXXX3480-505-8855        AZ','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1862,'BC-01862','2025-04-22','AplPay PUBLIX       FORT MYERS          FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1863,'BC-01863','2025-04-22','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1864,'BC-01864','2025-04-22','ELEMENTOR           WILMINGTON          DE','elementor','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1865,'BC-01865','2025-04-22','ELEMENTOR           WILMINGTON          DE','elementor','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1866,'BC-01866','2025-04-22','AplPay A NAILS      FORT MYERS          FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1867,'BC-01867','2025-04-23','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1868,'BC-01868','2025-04-24','AplPay PUBLIX #1808 TAMPA               FL','PUBLIX','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1869,'BC-01869','2025-04-24','FIGMENT.SO          NEW YORK            NY','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1870,'BC-01870','2025-04-24','TARGET.COM          800-591-3869        MN','TARGET','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1871,'BC-01871','2025-04-24','TARGET.COM          800-591-3869        MN','TARGET','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1872,'BC-01872','2025-04-24','AplPay PRICELN*CROWNNORWALK             CT','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1873,'BC-01873','2025-04-25','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1874,'BC-01874','2025-04-25','MICROSOFT           MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1875,'BC-01875','2025-04-25','AplPay SUBWAY TST EATSIM SHA TSUI EAST  HK','Subway','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1876,'BC-01876','2025-04-26','AplPay Apple Store 9HongKong            HK','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1877,'BC-01877','2025-04-26','AplPay UBER TRIP    HTTPS://HELP.UBER.COHK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1878,'BC-01878','2025-04-26','AplPay UBER TRIP    HTTPS://HELP.UBER.COHK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1879,'BC-01879','2025-04-26','AplPay UBER TRIP    HTTPS://HELP.UBER.COHK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1880,'BC-01880','2025-04-26','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1881,'BC-01881','2025-04-26','AIRBNB * HMR8NZ43XB SAN FRANCISCO       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1882,'BC-01882','2025-04-26','AplPay SUBWAY TST EATSIM SHA TSUI EAST  HK','Subway','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1883,'BC-01883','2025-04-26','PAYPAL *KAMYUU1105  XXXXXX7733          HK','Kamyuu','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1884,'BC-01884','2025-04-27','GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1885,'BC-01885','2025-04-27','AplPay SUBWAY TST EATSIM SHA TSUI EAST  HK','Subway','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1886,'BC-01886','2025-04-28','PIPEDRIVE INC       NEW YORK            NY','PipeDrive','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1887,'BC-01887','2025-04-29','Extra Space 3639    TAMPA               FL','','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1888,'BC-01888','2025-04-29','AplPay WHOLEFDS WTP#TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1889,'BC-01889','2025-04-30','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1890,'BC-01890','2025-04-30','HOSTINGER* HOSTINGERWILMINGTON          DE','Hostinger','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1891,'BC-01891','2025-04-30','FLBLUE* ACA         JACKSONVILLE        FL','florida Blue','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1892,'BC-01892','2025-04-30','FLBLUE* ACA         JACKSONVILLE        FL','florida Blue','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1893,'BC-01893','2025-05-01','FATHOM.VIDEO        SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1894,'BC-01894','2025-05-01','GOOGLE*GSUITE LITHIUCC GOOGLE.COM','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1895,'BC-01895','2025-05-01','GOOGLE              MOUNTAIN VIEW       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1896,'BC-01896','2025-05-01','OLD NAVY ON-LINE 084GROVEPORT           OH','o','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1897,'BC-01897','2025-05-01','OLD NAVY ON-LINE 084GROVEPORT           OH','o','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1898,'BC-01898','2025-05-01','LINKEDIN SN P5754303MOUNTAIN VIEW','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1899,'BC-01899','2025-05-01','AplPay BT*GAMETIME  SAN FRANCISCO       CA','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1900,'BC-01900','2025-05-01','KORE WIRELESS       ATLANTA             GA','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1901,'BC-01901','2025-05-02','AplPay UBER ONE     help.uber.com       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1902,'BC-01902','2025-05-02','AplPay UBER TRIP    HTTPS://HELP.UBER.COHK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1903,'BC-01903','2025-05-02','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1904,'BC-01904','2025-05-02','BT*DIALPAD MEETINGS SAN RAMON           CA','Dialpad Meetings','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1905,'BC-01905','2025-05-02','AplPay UNIFORM NAMETTAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1906,'BC-01906','2025-05-03','AplPay SPORT CLIPS -TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1907,'BC-01907','2025-05-03','AplPay AIRBNB PAYMENSAN FRANCISCO       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1908,'BC-01908','2025-05-03','AplPay BACK TO THE FNew York            NY','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1909,'BC-01909','2025-05-03','TST* BAR CARTS-STRAZTAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1910,'BC-01910','2025-05-04','7-ELEVEN 37149 00073TAMPA               FL','7 ELEVEN','Fuel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1911,'BC-01911','2025-05-04','SAM\'S CLUB 4861 4861ST. PETERSBURG      FL','Sam\'s Club','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1912,'BC-01912','2025-05-04','SAM\'S CLUB 4861 4861ST. PETERSBURG      FL','Sam\'s Club','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1913,'BC-01913','2025-05-04','AplPay EMPAMAMAS    Tampa               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1914,'BC-01914','2025-05-05','VZWRLSS BILL PAY VE 800-922-0204        FL','Verizon','Telephone Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1915,'BC-01915','2025-05-05','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1916,'BC-01916','2025-05-05','AplPay PUBLIX #1808 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1917,'BC-01917','2025-05-05','MICROSOFT           MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1918,'BC-01918','2025-05-05','AplPay TARGET       TAMPA               FL','TARGET','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1919,'BC-01919','2025-05-05','PMC - PAID PARKING  NASHVILLE           TN','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1920,'BC-01920','2025-05-05','CKO*WONDERSHARE 2079HK                  HK','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1921,'BC-01921','2025-05-05','AplPay VALET TIPS   NASHVILLE           TN','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1922,'BC-01922','2025-05-06','BLINK               AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1923,'BC-01923','2025-05-06','AplPay 7-ELEVEN 3714TAMPA               FL','7 ELEVEN','Fuel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1924,'BC-01924','2025-05-06','AplPay PUBLIX #1808 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1925,'BC-01925','2025-05-06','HELP.USEMOTION.COM  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1926,'BC-01926','2025-05-06','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1927,'BC-01927','2025-05-06','AplPay TARGET       TAMPA               FL','TARGET','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1928,'BC-01928','2025-05-06','AplPay MCDONALD\'S M2TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1929,'BC-01929','2025-05-06','CVENT LEADCAPTURE   MC LEAN             VA','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1930,'BC-01930','2025-05-06','SQSP* INV180951011  NEW YORK            NY','SQUARESPACE','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1931,'BC-01931','2025-05-07','PMC - PAID PARKING  NASHVILLE           TN','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1932,'BC-01932','2025-05-07','THE STUDY SALON     TAMPA               FL','The Study Salon','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1933,'BC-01933','2025-05-07','AplPay VALET TIPS   NASHVILLE           TN','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1934,'BC-01934','2025-05-08','WWW.WOODIESWASH.COM TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1935,'BC-01935','2025-05-08','ZOOM.COM 888-799-966SAN JOSE            CA','Zoom','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1936,'BC-01936','2025-05-08','FABLETICS.COM       855-202-3570        CA','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1937,'BC-01937','2025-05-08','PMC - PAID PARKING  NASHVILLE           TN','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1938,'BC-01938','2025-05-08','VALET TIPS          NASHVILLE           TN','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1939,'BC-01939','2025-05-09','JETPACK XSV3MCJPAA  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1940,'BC-01940','2025-05-09','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1941,'BC-01941','2025-05-10','BT*SEMRUSH          BOSTON              MA','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1942,'BC-01942','2025-05-10','AIRBNB * HMQBMSA5AN SAN FRANCISCO       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1943,'BC-01943','2025-05-10','AplPay DUCKWEED LIQUTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1944,'BC-01944','2025-05-10','PADDLE.NET* PREPRODUNEW YORK            NY','Paddle.net','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1945,'BC-01945','2025-05-11','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1946,'BC-01946','2025-05-11','CANVA* I04513-712612CAMDEN              DE','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1947,'BC-01947','2025-05-11','AplPay PUBLIX #1688 INDIALANTIC         FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1948,'BC-01948','2025-05-11','ROCKETLAW 877-757-15SAN FRANCISCO       CA','','Legal & Professional Services','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1949,'BC-01949','2025-05-11','AplPay OCEANSIDE PIZINDIALANTIC         FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1950,'BC-01950','2025-05-11','PY *STORQUEST - TAMPTAMPA               FL','Storquest','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1951,'BC-01951','2025-05-11','FABLETICS.COM       855-202-3570        CA','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1952,'BC-01952','2025-05-11','FABLETICS.COM       855-202-3570        CA','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1953,'BC-01953','2025-05-11','FABLETICS.COM       855-202-3570        CA','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1954,'BC-01954','2025-05-11','AplPay CROWNE PLAZA MELBOURNE           FL','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1955,'BC-01955','2025-05-12','VZWRLSS BILL PAY VE 800-922-0204        FL','Verizon','Telephone Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1956,'BC-01956','2025-05-12','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1957,'BC-01957','2025-05-12','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1958,'BC-01958','2025-05-12','BESTBUYCOMXXXXXX3611RICHFIELD           MN','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1959,'BC-01959','2025-05-13','AplPay PUBLIX #1688 INDIALANTIC         FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1960,'BC-01960','2025-05-13','LINKEDIN PRE P598700MOUNTAIN VIEW','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1961,'BC-01961','2025-05-14','IMPORTGENIUS.COM    (855)573-9976       AZ','','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1962,'BC-01962','2025-05-14','AIRBNB * HMQBMSA5AN SAN FRANCISCO       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1963,'BC-01963','2025-05-15','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1964,'BC-01964','2025-05-15','RON JON SURF SHOP   COCOA BEACH         FL','Ron Jon Surf Shop','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1965,'BC-01965','2025-05-15','RON JON SURF SHOP   COCOA BEACH         FL','Ron Jon Surf Shop','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1966,'BC-01966','2025-05-15','RON JON SURF SHOP   COCOA BEACH         FL','Ron Jon Surf Shop','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1967,'BC-01967','2025-05-16','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1968,'BC-01968','2025-05-16','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1969,'BC-01969','2025-05-16','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250516 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX1796687 EED:250516 IND ID:W9994 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6687 TC','American Express','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1970,'BC-01970','2025-05-17','KUBRA/TECO CONV FEE 800-766-6616        NJ','TECOPEOPLES GAS','Gas/Electricity','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1971,'BC-01971','2025-05-17','TECO/PEOPLES GAS    813-223-0800        FL','TECOPEOPLES GAS','Gas/Electricity','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1972,'BC-01972','2025-05-17','AplPay 7-ELEVEN 1011INDIALANTIC         FL','7 ELEVEN','Fuel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1973,'BC-01973','2025-05-17','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1974,'BC-01974','2025-05-17','AplPay IC* INSTACARTLAKELAND            FL','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1975,'BC-01975','2025-05-17','AplPay PUBLIX #1688 INDIALANTIC         FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1976,'BC-01976','2025-05-17','AITUBO.AI           HUNGHOM             HK','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1977,'BC-01977','2025-05-17','INAI PTE. LTD.      SINGAPORE           SG','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1978,'BC-01978','2025-05-18','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1979,'BC-01979','2025-05-19','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1980,'BC-01980','2025-05-19','FIGMA               SAN FRANCISCO       CA','Figma','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1981,'BC-01981','2025-05-19','AplPay MOOS SOFT SERINDIALANTIC         FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1982,'BC-01982','2025-05-19','AplPay MOOS SOFT SERINDIALANTIC         FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1983,'BC-01983','2025-05-19','AplPay IC* ABC FINE ORLANDO             FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1984,'BC-01984','2025-05-19','AplPay IC* ABC FINE ORLANDO             FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1985,'BC-01985','2025-05-20','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1986,'BC-01986','2025-05-20','AMAZON.COM          AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1987,'BC-01987','2025-05-20','AplPay OCEANSIDE PIZINDIALANTIC         FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1988,'BC-01988','2025-05-21','WWW.WOODIESWASH.COM TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1989,'BC-01989','2025-05-21','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1990,'BC-01990','2025-05-21','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1991,'BC-01991','2025-05-21','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1992,'BC-01992','2025-05-21','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1993,'BC-01993','2025-05-21','AplPay MCDONALDS OF ORLANDO             FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1994,'BC-01994','2025-05-21','AplPay MCDONALD\'S   MELBOURNE           FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1995,'BC-01995','2025-05-21','PEACOCK             NEW YORK CITY       NY','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1996,'BC-01996','2025-05-21','Platinum Digital Entertainment Credit','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1997,'BC-01997','2025-05-21','AplPay SP REEF.COM  NEWTON              MA','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1998,'BC-01998','2025-05-22','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1999,'BC-01999','2025-05-22','AplPay CREAM DE LA CTampa               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2000,'BC-02000','2025-05-22','MACYS   .COM 0000001MASON               OH','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2001,'BC-02001','2025-05-22','PAY* ANGI-MAY23     INDIANAPOLIS        IN','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2002,'BC-02002','2025-05-22','PAY* ANGI-MAY23                         IN','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2003,'BC-02003','2025-05-23','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2004,'BC-02004','2025-05-23','AplPay SPORT CLIPS -TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2005,'BC-02005','2025-05-23','NEUROSPA            TAMPA               FL','Neurospa','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2006,'BC-02006','2025-05-23','SMC # 67065         ST. PETERSBURG      FL','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2007,'BC-02007','2025-05-24','APPLECARE PLAN026104RICHFIELD           MN','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2008,'BC-02008','2025-05-24','7-ELEVEN 37149 00073TAMPA               FL','7 ELEVEN','Fuel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2009,'BC-02009','2025-05-24','FIGMENT.SO          NEW YORK            NY','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2010,'BC-02010','2025-05-24','PAYPAL *KAMYUU1105  XXXXXX7733          HK','Kamyuu','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2011,'BC-02011','2025-05-25','MICROSOFT           MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2012,'BC-02012','2025-05-25','AplPay DUCKWEED LIQUTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2013,'BC-02013','2025-05-25','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2014,'BC-02014','2025-05-25','BT*MYRIAD WOMEN\'S HESOUTH SAN FRANCISCO CA','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2015,'BC-02015','2025-05-26','AplPay PUBLIX #1808 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2016,'BC-02016','2025-05-26','AplPay MCDONALD\'S   GRAPEVINE           TX','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2017,'BC-02017','2025-05-27','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2018,'BC-02018','2025-05-27','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2019,'BC-02019','2025-05-27','GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2020,'BC-02020','2025-05-27','HOMEDEPOT.COM       800-430-3376        GA','THE HOME DEPOT','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2021,'BC-02021','2025-05-27','AplPay JONI\'S PET SATAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2022,'BC-02022','2025-05-28','APPLECARE PLAN026104RICHFIELD           MN','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2023,'BC-02023','2025-05-28','PPY=TAMPA NEUROPSYCHTAMPA               FL','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2024,'BC-02024','2025-05-28','HOMEDEPOT.COM       800-430-3376        GA','THE HOME DEPOT','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2025,'BC-02025','2025-05-28','PIPEDRIVE INC       NEW YORK            NY','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2026,'BC-02026','2025-05-29','APPLECARE PLAN026104RICHFIELD           MN','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2027,'BC-02027','2025-05-29','Extra Space 3639    TAMPA               FL','','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2028,'BC-02028','2025-05-29','AplPay FK WESTSHORE TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2029,'BC-02029','2025-05-30','AMAZON.COM          AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2030,'BC-02030','2025-05-30','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2031,'BC-02031','2025-05-30','HOSTINGER* HOSTINGERWILMINGTON          DE','Hostinger','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2032,'BC-02032','2025-05-30','KORE WIRELESS       ATLANTA             GA','Kore Wireless','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2033,'BC-02033','2025-05-31','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2034,'BC-02034','2025-05-31','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2035,'BC-02035','2025-05-31','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2036,'BC-02036','2025-05-31','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2037,'BC-02037','2025-05-31','AplPay THE HOME DEPOTAMPA               FL','THE HOME DEPOT','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2038,'BC-02038','2025-05-31','FLBLUE* ACA         JACKSONVILLE        FL','florida Blue','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2039,'BC-02039','2025-05-31','FLBLUE* ACA         JACKSONVILLE        FL','florida Blue','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2040,'BC-02040','2025-06-01','FATHOM.VIDEO        SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2041,'BC-02041','2025-06-01','GOOGLE *CLOUD MV2CNP G.CO/HELPPAY#      CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2042,'BC-02042','2025-06-01','GOOGLE*GSUITE_LITHIUMOUNTAIN VIEW       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2043,'BC-02043','2025-06-01','LINKEDIN SN P6329569MOUNTAIN VIEW','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2044,'BC-02044','2025-06-01','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2045,'BC-02045','2025-06-01','TELADOC 0259        LEWISVILLE          TX','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2046,'BC-02046','2025-06-02','AplPay UBER ONE     help.uber.com       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2047,'BC-02047','2025-06-02','BT*DIALPAD MEETINGS SAN RAMON           CA','Dialpad Meetings','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2048,'BC-02048','2025-06-02','WAL-MART SUPERCENTERTAMPA               FL','Walmart','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2049,'BC-02049','2025-06-03','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2050,'BC-02050','2025-06-03','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2051,'BC-02051','2025-06-03','AplPay GREAT EXPLORAST PETERSBURG       FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2052,'BC-02052','2025-06-04','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2053,'BC-02053','2025-06-04','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2054,'BC-02054','2025-06-04','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2055,'BC-02055','2025-06-04','AplPay ASHLEY HOMESTTAMPA               FL','Ashley HomeStore','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2056,'BC-02056','2025-06-04','AplPay ASHLEY HOMESTTAMPA               FL','Ashley HomeStore','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2057,'BC-02057','2025-06-04','MOBILE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2058,'BC-02058','2025-06-04','BONFIRE PREMIUM VENDOAKVILLE','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2059,'BC-02059','2025-06-04','AplPay SPROUTS FARMETampa               FL','SPROUTS FARMERS MARKET','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2060,'BC-02060','2025-06-05','7-ELEVEN 38123 00073ST PETERSBURG       FL','7 ELEVEN','Fuel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2061,'BC-02061','2025-06-05','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2062,'BC-02062','2025-06-05','MICROSOFT           MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2063,'BC-02063','2025-06-05','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2064,'BC-02064','2025-06-06','BLINK               AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2065,'BC-02065','2025-06-06','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2066,'BC-02066','2025-06-06','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2067,'BC-02067','2025-06-06','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2068,'BC-02068','2025-06-06','SQSP* INV185094968  NEW YORK            NY','SQUARESPACE','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2069,'BC-02069','2025-06-07','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2070,'BC-02070','2025-06-07','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2071,'BC-02071','2025-06-07','BONFIRE PREMIUM VENDOAKVILLE','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2072,'BC-02072','2025-06-08','AplPay IC* INSTACARTLAKELAND            FL','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2073,'BC-02073','2025-06-08','WWW.WOODIESWASH.COM TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2074,'BC-02074','2025-06-08','HOOTERS #34 0001    TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2075,'BC-02075','2025-06-08','HOOTERS OF SOUTH TAMTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2076,'BC-02076','2025-06-09','APPLECARE MNTHLY PLARICHFIELD           MN','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2077,'BC-02077','2025-06-09','SAM\'S CLUB 6403 6403BRANDON             FL','Sam\'s Club','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2078,'BC-02078','2025-06-09','SAM\'S CLUB 6403 6403BRANDON             FL','Sam\'s Club','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2079,'BC-02079','2025-06-09','GOOGLE*YOUTUBE VIDEO G.CO HELPPAY#','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2080,'BC-02080','2025-06-09','JETPACK WERLSWSBW4  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2081,'BC-02081','2025-06-09','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2082,'BC-02082','2025-06-09','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2083,'BC-02083','2025-06-09','SPIRIT AIRLINES     SOUTH FLORIDA       FL','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2084,'BC-02084','2025-06-09','MACYS MARKETPLACE 00MASON               OH','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2085,'BC-02085','2025-06-10','BT*SEMRUSH          BOSTON              MA','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2086,'BC-02086','2025-06-10','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2087,'BC-02087','2025-06-10','PADDLE.NET* PREPRODUNEW YORK            NY','Paddle.net','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2088,'BC-02088','2025-06-10','RELUME.IO           DURAL               AU','Relume.IO','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2089,'BC-02089','2025-06-11','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2090,'BC-02090','2025-06-11','NEUROSPA            TAMPA               FL','Neurospa','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2091,'BC-02091','2025-06-11','PY *STORQUEST - TAMPTAMPA               FL','Storquest','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2092,'BC-02092','2025-06-11','CHUCK LAGER AMERICA\'TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2093,'BC-02093','2025-06-12','AplPay PUBLIX #1808 TAMPA               FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2094,'BC-02094','2025-06-12','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2095,'BC-02095','2025-06-12','SERENITY HEALS THERAFORT MYERS          FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2096,'BC-02096','2025-06-13','MICROSOFT           MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2097,'BC-02097','2025-06-13','LINKEDIN PRE P655876MOUNTAIN VIEW','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2098,'BC-02098','2025-06-13','AplPay DUCKWEED LIQUTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2099,'BC-02099','2025-06-14','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2100,'BC-02100','2025-06-14','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2101,'BC-02101','2025-06-14','APPLE.COM/BILL      INTERNET CHARGE     CA','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2102,'BC-02102','2025-06-14','AplPay CREAM DE LA CTampa               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2103,'BC-02103','2025-06-16','AplPay PUBLIX #1722 TAMPA               FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2104,'BC-02104','2025-06-16','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2105,'BC-02105','2025-06-16','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2106,'BC-02106','2025-06-18','AplPay THE HOME DEPOTAMPA               FL','THE HOME DEPOT','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2107,'BC-02107','2025-06-18','AplPay SPORT CLIPS -TAMPA               FL','SPORT CLIPS','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2108,'BC-02108','2025-06-18','APPLE.COM/BILL      INTERNET CHARGE     CA','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2109,'BC-02109','2025-06-19','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2110,'BC-02110','2025-06-19','FIGMA               SAN FRANCISCO       CA','Figma','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2111,'BC-02111','2025-06-19','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2112,'BC-02112','2025-06-19','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2113,'BC-02113','2025-06-20','AplPay DUCKWEED LIQUTAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2114,'BC-02114','2025-06-20','AplPay TOUCHTUNES MUSCHAUMBURG          IL','Touch Tunes','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2115,'BC-02115','2025-06-21','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2116,'BC-02116','2025-06-21','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2117,'BC-02117','2025-06-21','AplPay PIN CHASERS VTAMPA               FL','Pin Chasers','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2118,'BC-02118','2025-06-21','AplPay PIN CHASERS VTAMPA               FL','Pin Chasers','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2119,'BC-02119','2025-06-21','AplPay PIN CHASERS VTAMPA               FL','Pin Chasers','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2120,'BC-02120','2025-06-21','PIN CHASERS VETERANSTAMPA               FL','Pin Chasers','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2121,'BC-02121','2025-06-21','PIN CHASERS VETERANSTAMPA               FL','Pin Chasers','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2122,'BC-02122','2025-06-21','PEACOCK             NEW YORK CITY       NY','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2123,'BC-02123','2025-06-21','Platinum Digital Entertainment Credit','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2124,'BC-02124','2025-06-21','WWW.WOODIESWASH.COM TAMPA               FL','WOODIES WASH SHACK','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2125,'BC-02125','2025-06-22','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2126,'BC-02126','2025-06-22','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2127,'BC-02127','2025-06-22','AplPay DUCKWEED LIQUTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2128,'BC-02128','2025-06-23','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2129,'BC-02129','2025-06-23','AplPay CHILL GRILL HTampa               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2130,'BC-02130','2025-06-24','DAVE & BUSTERS #120 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2131,'BC-02131','2025-06-24','DAVE & BUSTERS #120 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2132,'BC-02132','2025-06-25','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2133,'BC-02133','2025-06-25','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2134,'BC-02134','2025-06-25','MICROSOFT           MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2135,'BC-02135','2025-06-25','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2136,'BC-02136','2025-06-26','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2137,'BC-02137','2025-06-26','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2138,'BC-02138','2025-06-27','GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','Youtube TV','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2139,'BC-02139','2025-06-27','MCDONALD\'S          ROMULUS             MI','MCDONALDS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2140,'BC-02140','2025-06-28','HAMLIN PUB 650000006SHELBY TOWNSH       MI','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2141,'BC-02141','2025-06-29','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2142,'BC-02142','2025-06-29','Extra Space 3639    TAMPA               FL','','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2143,'BC-02143','2025-06-29','KORE WIRELESS       ATLANTA             GA','Kore Wireless','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2144,'BC-02144','2025-06-29','APPLECARE MNTHLY PLARICHFIELD           MN','Apple Care','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2145,'BC-02145','2025-06-30','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2146,'BC-02146','2025-06-30','AplPay DUCKWEED LIQUTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2147,'BC-02147','2025-06-30','FLBLUE* ACA         JACKSONVILLE        FL','florida Blue','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2148,'BC-02148','2025-06-30','FLBLUE* ACA         JACKSONVILLE        FL','florida Blue','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2149,'BC-02149','2025-06-30','AplPay IC* ABC FINE ORLANDO             FL','ABC Fine Wine & Spirits','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2150,'BC-02150','2025-07-01','APPLE.COM/BILL      INTERNET CHARGE     CA','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2151,'BC-02151','2025-07-01','TST* BUDDY\'S PIZZA -DEARBORN            MI','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2152,'BC-02152','2025-07-01','LINKEDIN SN P6835902MOUNTAIN VIEW','LINKEDIN','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2153,'BC-02153','2025-07-01','PROPAY RESIDENTIAL RTampa               FL\n\nHOA Special Assessment','','Rent & Lease Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2154,'BC-02154','2025-07-01','JEWELERS-MUTUAL-PMNT800-558-6411        WI','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2155,'BC-02155','2025-07-01','GOOGLE*CLOUD QCMVKK  G.CO HELPPAY#','GOOGLESVCSAPPS','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2156,'BC-02156','2025-07-01','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2157,'BC-02157','2025-07-02','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2158,'BC-02158','2025-07-02','AplPay UBER ONE     help.uber.com       CA','UBER','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2159,'BC-02159','2025-07-02','BT*DIALPAD MEETINGS SAN RAMON           CA','Dialpad Meetings','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2160,'BC-02160','2025-07-02','SPIRIT AIRLINES ONBOIRVING              TX','SPIRIT AIRLINES SPIRIT','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2161,'BC-02161','2025-07-02','MACYS MARKETPLACE 00MASON               OH','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2162,'BC-02162','2025-07-03','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2163,'BC-02163','2025-07-03','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2164,'BC-02164','2025-07-03','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2165,'BC-02165','2025-07-03','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2166,'BC-02166','2025-07-03','MCDONALD\'S M2086 000TAMPA               FL','MCDONALDS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2167,'BC-02167','2025-07-04','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2168,'BC-02168','2025-07-04','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2169,'BC-02169','2025-07-05','APPLE.COM/BILL      INTERNET CHARGE     CA','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2170,'BC-02170','2025-07-05','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2171,'BC-02171','2025-07-06','BLINK               AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2172,'BC-02172','2025-07-06','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2173,'BC-02173','2025-07-06','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2174,'BC-02174','2025-07-06','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2175,'BC-02175','2025-07-06','SQSP* INV189046655  NEW YORK            NY','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2176,'BC-02176','2025-07-07','VZWRLSS BILL PAY VE 800-922-0204        FL','Verizon','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2177,'BC-02177','2025-07-07','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2178,'BC-02178','2025-07-08','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2179,'BC-02179','2025-07-08','WWW.WOODIESWASH.COM TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2180,'BC-02180','2025-07-08','BT*DD *QWENCHJUICE  SAN FRANCISCO       CA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2181,'BC-02181','2025-07-08','AplPay DRNK & QWENCHTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2182,'BC-02182','2025-07-09','APPLECARE MNTHLY PLARICHFIELD           MN','Apple Care','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2183,'BC-02183','2025-07-09','JETPACK QNACXGGHAX  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2184,'BC-02184','2025-07-09','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2185,'BC-02185','2025-07-09','AplPay CARTER S #131TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2186,'BC-02186','2025-07-10','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2187,'BC-02187','2025-07-10','PADDLE.NET* PREPRODUNEW YORK            NY','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2188,'BC-02188','2025-07-10','PADDLE.NET* PREPRODUNEW YORK            NY','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2189,'BC-02189','2025-07-10','AplPay CREAM DE LA CTampa               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2190,'BC-02190','2025-07-10','AplPay SPROUTS FARMETampa               FL','SPROUTS FARMERS MARKET','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2191,'BC-02191','2025-07-10','AplPay IC* ABC FINE ORLANDO             FL','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2192,'BC-02192','2025-07-11','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2193,'BC-02193','2025-07-11','PY *STORQUEST - TAMPTAMPA               FL','Storquest','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2194,'BC-02194','2025-07-12','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2195,'BC-02195','2025-07-12','AplPay IC* INSTACARTLAKELAND            FL','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2196,'BC-02196','2025-07-12','AplPay MANHATTAN NAITAMPA               FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2197,'BC-02197','2025-07-13','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2198,'BC-02198','2025-07-13','LINKEDIN PRE P702474MOUNTAIN VIEW','LINKEDIN','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2199,'BC-02199','2025-07-13','MICROSOFT           MSBILL.INFO','MICROSOFT OFFICE','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2200,'BC-02200','2025-07-13','SPORT CLIPS - FL111 TAMPA               FL','SPORT CLIPS','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2201,'BC-02201','2025-07-13','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2202,'BC-02202','2025-07-14','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2203,'BC-02203','2025-07-14','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2204,'BC-02204','2025-07-14','AplPay TARGET       TAMPA               FL','TARGET','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2205,'BC-02205','2025-07-14','TELADOC 0259        LEWISVILLE          TX','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2206,'BC-02206','2025-07-15','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2207,'BC-02207','2025-07-15','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2208,'BC-02208','2025-07-15','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2209,'BC-02209','2025-07-15','713 TAMPA DALE MABRYTAMPA               FL','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2210,'BC-02210','2025-07-16','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2211,'BC-02211','2025-07-16','AplPay MCDONALD\'S M2TAMPA               FL','MCDONALDS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2212,'BC-02212','2025-07-17','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2213,'BC-02213','2025-07-18','APPLE.COM/BILL      INTERNET CHARGE     CA','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2214,'BC-02214','2025-07-18','APPLE.COM/BILL      INTERNET CHARGE     CA','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2215,'BC-02215','2025-07-18','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250718 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX5506447 EED:250718 IND ID:W8910 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6447 TC','American Express','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2216,'BC-02216','2025-07-18','AplPay PUBLIX #1808 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2217,'BC-02217','2025-07-19','LATE FEE','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2218,'BC-02218','2025-07-19','FIGMA               SAN FRANCISCO       CA','Figma','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2219,'BC-02219','2025-07-19','WALGREENS           TAMPA               FL','Walgreens','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2220,'BC-02220','2025-07-19','TELADOC 0259        LEWISVILLE          TX','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2221,'BC-02221','2025-07-19','AplPay ZENOTIUSA_POSTAMPA               FL','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2222,'BC-02222','2025-07-20','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2223,'BC-02223','2025-07-21','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2224,'BC-02224','2025-07-21','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2225,'BC-02225','2025-07-21','PEACOCK             NEW YORK CITY       NY','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2226,'BC-02226','2025-07-21','AplPay LITTLE CAESARTAMPA               FL','Little Caesars','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2227,'BC-02227','2025-07-21','WWW.WOODIESWASH.COM TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2228,'BC-02228','2025-07-21','VRBO                512-759-0902        TX','VRBO','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2229,'BC-02229','2025-07-21','Platinum Digital Entertainment Credit','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2230,'BC-02230','2025-07-21','CSA-GGA-DAM/TRIPINSUSAN DIEGO           CA','C S','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2231,'BC-02231','2025-07-22','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2232,'BC-02232','2025-07-22','IC* INSTACART*SUBSCRSAN FRANCISCO       CA','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2233,'BC-02233','2025-07-22','GiftHealth*LillyDire833-6144438         OH','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2234,'BC-02234','2025-07-23','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2235,'BC-02235','2025-07-23','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2236,'BC-02236','2025-07-24','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2237,'BC-02237','2025-07-24','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2238,'BC-02238','2025-07-25','MICROSOFT           MSBILL.INFO','MICROSOFT OFFICE','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2239,'BC-02239','2025-07-25','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2240,'BC-02240','2025-07-25','WALGREENS           TAMPA               FL','Walgreens','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2241,'BC-02241','2025-07-26','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2242,'BC-02242','2025-07-26','SAM\'S CLUB 6403 6403BRANDON             FL','Sam\'s Club','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2243,'BC-02243','2025-07-26','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2244,'BC-02244','2025-07-26','SAM\'S CLUB 6403 6403BRANDON             FL','Sam\'s Club','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2245,'BC-02245','2025-07-27','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2246,'BC-02246','2025-07-27','GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','Youtube TV','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2247,'BC-02247','2025-07-27','AplPay IC* INSTACARTLAKELAND            FL','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2248,'BC-02248','2025-07-27','AplPay BOSSY LEMON  Tampa               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2249,'BC-02249','2025-07-28','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2250,'BC-02250','2025-07-29','APPLECARE MNTHLY PLARICHFIELD           MN','Apple Care','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2251,'BC-02251','2025-07-29','FREIGHTQUOTE.COM INCKANSAS CITY         MO','FREIGHTQUOTE','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2252,'BC-02252','2025-07-29','Extra Space 3639    TAMPA               FL','','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2253,'BC-02253','2025-07-29','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2254,'BC-02254','2025-07-30','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2255,'BC-02255','2025-07-30','KORE WIRELESS       ATLANTA             GA','Kore Wireless','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2256,'BC-02256','2025-07-31','WALGREENS           TAMPA               FL','Walgreens','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2257,'BC-02257','2025-07-31','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2258,'BC-02258','2025-07-31','FLBLUE* ACA         JACKSONVILLE        FL','florida Blue','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2259,'BC-02259','2025-07-31','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2260,'BC-02260','2025-07-31','AplPay MANHATTAN NAITAMPA               FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2261,'BC-02261','2025-07-31','FLBLUE* ACA         JACKSONVILLE        FL','florida Blue','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2262,'BC-02262','2025-08-01','GOOGLE *CLOUD PH6XZP G.CO/HELPPAY#      CA','GOOGLESVCSAPPS','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2263,'BC-02263','2025-08-01','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2264,'BC-02264','2025-08-01','AplPay IC* INSTACARTLAKELAND            FL','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2265,'BC-02265','2025-08-01','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2266,'BC-02266','2025-08-01','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2267,'BC-02267','2025-08-02','AplPay UBER ONE     help.uber.com       CA','UBER','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2268,'BC-02268','2025-08-02','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2269,'BC-02269','2025-08-02','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2270,'BC-02270','2025-08-02','BT*DIALPAD MEETINGS SAN RAMON           CA','Dialpad Meetings','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2271,'BC-02271','2025-08-04','AplPay PUBLIX #1808 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2272,'BC-02272','2025-08-04','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2273,'BC-02273','2025-08-04','BT*DIALPAD MEETINGS SAN RAMON           CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2274,'BC-02274','2025-08-04','AplPay LECADA LLC 00TAMPA               FL','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2275,'BC-02275','2025-08-04','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2276,'BC-02276','2025-08-04','AplPay TARGET       TAMPA               FL','TARGET','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2277,'BC-02277','2025-08-04','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2278,'BC-02278','2025-08-04','AplPay STARBUCKS STOTAMPA               FL','STARBUCKS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2279,'BC-02279','2025-08-04','AplPay SPROUTS FARMETampa               FL','SPROUTS FARMERS MARKET','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2280,'BC-02280','2025-08-05','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2281,'BC-02281','2025-08-05','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2282,'BC-02282','2025-08-05','PADDLE.NET* MACPAW.CNEW YORK            NY','Paddle.net','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2283,'BC-02283','2025-08-05','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2284,'BC-02284','2025-08-06','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2285,'BC-02285','2025-08-06','BLINK               AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2286,'BC-02286','2025-08-06','SQSP* WEBSIT#1931741NEW YORK            NY','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2287,'BC-02287','2025-08-07','AplPay PUBLIX #1808 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2288,'BC-02288','2025-08-07','AplPay SPORT CLIPS -TAMPA               FL','SPORT CLIPS','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2289,'BC-02289','2025-08-07','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2290,'BC-02290','2025-08-07','AplPay TARGET       TAMPA               FL','TARGET','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2291,'BC-02291','2025-08-08','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2292,'BC-02292','2025-08-08','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2293,'BC-02293','2025-08-08','SERENITY HEALS THERAFORT MYERS          FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2294,'BC-02294','2025-08-08','WWW.WOODIESWASH.COM TAMPA               FL','WOODIES WASH SHACK','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2295,'BC-02295','2025-08-09','APPLECARE MNTHLY PLARICHFIELD           MN','Apple Care','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2296,'BC-02296','2025-08-09','AplPay SP SAND SURF TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2297,'BC-02297','2025-08-09','AplPay ZITNIK TRAINSPINELLAS PARK       FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2298,'BC-02298','2025-08-10','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2299,'BC-02299','2025-08-10','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2300,'BC-02300','2025-08-10','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2301,'BC-02301','2025-08-11','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2302,'BC-02302','2025-08-11','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2303,'BC-02303','2025-08-11','AplPay TARGET       TAMPA               FL','TARGET','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2304,'BC-02304','2025-08-11','PY *STORQUEST - TAMPTAMPA               FL','Storquest','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2305,'BC-02305','2025-08-12','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2306,'BC-02306','2025-08-12','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2307,'BC-02307','2025-08-13','LINKEDIN PRE P756314MOUNTAIN VIEW','LINKEDIN','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2308,'BC-02308','2025-08-13','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2309,'BC-02309','2025-08-13','MICROSOFT           MSBILL.INFO','MICROSOFT OFFICE','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2310,'BC-02310','2025-08-13','GiftHealth*LillyDire833-6144438         OH','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2311,'BC-02311','2025-08-15','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2312,'BC-02312','2025-08-15','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2313,'BC-02313','2025-08-15','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2314,'BC-02314','2025-08-16','AplPay PUBLIX #1688 INDIALANTIC         FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2315,'BC-02315','2025-08-16','AplPay ABC FINE WINEINDIALANTIC         FL','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2316,'BC-02316','2025-08-16','AplPay ABC FINE WINEINDIALANTIC         FL','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2317,'BC-02317','2025-08-16','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2318,'BC-02318','2025-08-16','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2319,'BC-02319','2025-08-17','AplPay RON JON SURF COCOA BEACH         FL','Ron Jon Surf Shop','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2320,'BC-02320','2025-08-17','AplPay 5600 NORTH HAMELBOURNE           FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2321,'BC-02321','2025-08-18','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2322,'BC-02322','2025-08-19','AplPay IC* ABC FINE ORLANDO             FL','ABC Fine Wine & Spirits','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2323,'BC-02323','2025-08-20','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2324,'BC-02324','2025-08-21','AplPay OCEANSIDE PIZINDIALANTIC         FL','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2325,'BC-02325','2025-08-21','PEACOCK             NEW YORK CITY       NY','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2326,'BC-02326','2025-08-21','Platinum Digital Entertainment Credit','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2327,'BC-02327','2025-08-21','WWW.WOODIESWASH.COM TAMPA               FL','WOODIES WASH SHACK','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2328,'BC-02328','2025-08-21','AplPay IC* ABC FINE ORLANDO             FL','ABC Fine Wine & Spirits','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2329,'BC-02329','2025-08-22','RON JON SURF SHOP   COCOA BEACH         FL','Ron Jon Surf Shop','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2330,'BC-02330','2025-08-23','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2331,'BC-02331','2025-08-23','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2332,'BC-02332','2025-08-23','SHOGUN              COVINA              CA','Shogun','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2333,'BC-02333','2025-08-24','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2334,'BC-02334','2025-08-24','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2335,'BC-02335','2025-08-24','SP SAND SURF CO     TAMPA               FL','Sand Surf Co','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2336,'BC-02336','2025-08-24','AplPay SP SAND SURF TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2337,'BC-02337','2025-08-24','AplPay CREAM DE LA CTampa               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2338,'BC-02338','2025-08-24','SHOGUN              COVINA              CA','Shogun','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2339,'BC-02339','2025-08-25','AplPay TARGET       TAMPA               FL','TARGET','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2340,'BC-02340','2025-08-25','MICROSOFT           MSBILL.INFO','MICROSOFT OFFICE','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2341,'BC-02341','2025-08-25','THE WOMANS GROUP OF TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2342,'BC-02342','2025-08-25','THE WOMANS GROUP OF TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2343,'BC-02343','2025-08-26','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2344,'BC-02344','2025-08-26','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2345,'BC-02345','2025-08-26','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2346,'BC-02346','2025-08-26','AplPay CREAM DE LA CTampa               FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2347,'BC-02347','2025-08-27','SP SAND SURF CO     TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2348,'BC-02348','2025-08-28','WAL-MART SUPERCENTERTAMPA               FL','Walmart','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2349,'BC-02349','2025-08-28','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2350,'BC-02350','2025-08-28','AplPay TOUCHTUNES MUSCHAUMBURG          IL','Touch Tunes','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2351,'BC-02351','2025-08-28','PY *PDQ - SOUTH TAMPTAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2352,'BC-02352','2025-08-28','MOBILE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2353,'BC-02353','2025-08-29','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2354,'BC-02354','2025-08-29','APPLECARE MNTHLY PLARICHFIELD           MN','Apple Care','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2355,'BC-02355','2025-08-29','KORE WIRELESS       ATLANTA             GA','Kore Wireless','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2356,'BC-02356','2025-08-29','Extra Space 3639    TAMPA               FL','','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2357,'BC-02357','2025-08-29','WALMART.COM         WALMART.COM         AR','Walmart','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2358,'BC-02358','2025-08-29','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250829 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX6353453 EED:250829 IND ID:M9752 IND NAME:NATHAN STARON ER AM TRN: XXXXXX3453 TC','American Express','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2359,'BC-02359','2025-08-29','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250829 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX6353429 EED:250829 IND ID:M8876 IND NAME:NATHAN STARON ER AM TRN: XXXXXX3429 TC','American Express','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2360,'BC-02360','2025-08-30','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2361,'BC-02361','2025-08-31','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2362,'BC-02362','2025-09-01','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2363,'BC-02363','2025-09-01','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2364,'BC-02364','2025-09-01','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2365,'BC-02365','2025-09-01','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2366,'BC-02366','2025-09-01','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2367,'BC-02367','2025-09-01','','StrataGem Risk, LLC','Litigation Expense Accrual','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2368,'BC-02368','2025-09-02','AplPay UBER ONE     help.uber.com       CA','UBER','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2369,'BC-02369','2025-09-02','AplPay DUCKWEED GROCTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2370,'BC-02370','2025-09-02','ATHLETA ONLINE      GROVE CITY          OH','','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2371,'BC-02371','2025-09-02','AplPay JONI\'S PET SATAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2372,'BC-02372','2025-09-03','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2373,'BC-02373','2025-09-03','AplPay DUCKWEED GROCTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2374,'BC-02374','2025-09-03','AplPay TARGET       TAMPA               FL','TARGET','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2375,'BC-02375','2025-09-03','AplPay TARGET       TAMPA               FL','TARGET','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2376,'BC-02376','2025-09-03','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2377,'BC-02377','2025-09-03','FREIGHTQUOTE.COM INCKANSAS CITY         MO','FREIGHTQUOTE','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2378,'BC-02378','2025-09-04','SAM\'S CLUB 6403 6403BRANDON             FL','Sam\'s Club','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2379,'BC-02379','2025-09-05','AplPay DUCKWEED GROCTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2380,'BC-02380','2025-09-05','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2381,'BC-02381','2025-09-05','AplPay DUCKWEED GROCTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2382,'BC-02382','2025-09-06','AplPay DUCKWEED GROCTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2383,'BC-02383','2025-09-06','SQSP* WEBSIT#1993604NEW YORK            NY','','Website Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2384,'BC-02384','2025-09-06','AplPay GOFUNDME     SAN DIEGO           CA','','Donations','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2385,'BC-02385','2025-09-06','AplPay IC* ABC FINE ORLANDO             FL','ABC Fine Wine & Spirits','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2386,'BC-02386','2025-09-06','BLINK               AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2387,'BC-02387','2025-09-08','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2388,'BC-02388','2025-09-08','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2389,'BC-02389','2025-09-08','WAL-MART SUPERCENTERTAMPA               FL','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2390,'BC-02390','2025-09-08','GiftHealth*LillyDire833-6144438         OH','','Officer\'s Life Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2391,'BC-02391','2025-09-08','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2392,'BC-02392','2025-09-08','WWW.WOODIESWASH.COM TAMPA               FL','WOODIES WASH SHACK','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2393,'BC-02393','2025-09-09','AplPay DUCKWEED GROCTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2394,'BC-02394','2025-09-09','AplPay CREAM DE LA CTampa               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2395,'BC-02395','2025-09-09','APPLECARE MNTHLY PLARICHFIELD           MN','Apple Care','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2396,'BC-02396','2025-09-10','AplPay DUCKWEED GROCTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2397,'BC-02397','2025-09-10','AplPay DUCKWEED GROCTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2398,'BC-02398','2025-09-10','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2399,'BC-02399','2025-09-11','VZWRLSS BILL PAY VE 800-922-0204        FL','Verizon','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2400,'BC-02400','2025-09-11','PY *STORQUEST - TAMPTAMPA               FL','Storquest','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2401,'BC-02401','2025-09-12','WALGREENS           TAMPA               FL','Walgreens','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2402,'BC-02402','2025-09-12','AplPay SPORT CLIPS -TAMPA               FL','SPORT CLIPS','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2403,'BC-02403','2025-09-13','LINKEDIN PRE P811231MOUNTAIN VIEW','LINKEDIN','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2404,'BC-02404','2025-09-13','MICROSOFT           MSBILL.INFO','MICROSOFT OFFICE','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2405,'BC-02405','2025-09-14','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2406,'BC-02406','2025-09-15','AplPay SPROUTS FARMETampa               FL','SPROUTS FARMERS MARKET','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2407,'BC-02407','2025-09-15','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2408,'BC-02408','2025-09-18','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2409,'BC-02409','2025-09-18','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2410,'BC-02410','2025-09-18','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2411,'BC-02411','2025-09-19','LATE FEE','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2412,'BC-02412','2025-09-19','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2413,'BC-02413','2025-09-21','WWW.WOODIESWASH.COM TAMPA               FL','WOODIES WASH SHACK','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2414,'BC-02414','2025-09-21','Platinum Digital Entertainment Credit','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2415,'BC-02415','2025-09-21','PEACOCK             NEW YORK CITY       NY','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2416,'BC-02416','2025-09-22','CUSTOMER SERVICE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2417,'BC-02417','2025-09-22','AplPay CHIPOTLE     TAMPA               FL','CHIPOTLE','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2418,'BC-02418','2025-09-22','AplPay PANERA BREAD TAMPA               FL','Panera Bread','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2419,'BC-02419','2025-09-23','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2420,'BC-02420','2025-09-24','AplPay UBER EATS    HTTPS://HELP.UBER.COCA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2421,'BC-02421','2025-01-04','AUTOPAY PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2422,'BC-02422','2025-01-08','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2423,'BC-02423','2025-01-10','Interest Charge on Pay Over Time Purchases','','Interest Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2424,'BC-02424','2025-01-17','MOBILE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2425,'BC-02425','2025-01-18','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2426,'BC-02426','2025-01-28','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2427,'BC-02427','2025-02-18','PITAP - LDG - HR PitPITTSBURGH          PA','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2428,'BC-02428','2025-02-18','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2429,'BC-02429','2025-02-21','HOOTERS #34 0001    TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2430,'BC-02430','2025-02-22','CIRCLE K 08811/CIRCLTAMPA               FL','','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2431,'BC-02431','2025-02-22','TAMPA BAY DOWNS - FOTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2432,'BC-02432','2025-02-23','AMERICAN EXPRESS TRASEATTLE             WA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2433,'BC-02433','2025-02-23','AMERICAN EXPRESS TRASEATTLE             WA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2434,'BC-02434','2025-02-23','TRAVELOUTLET CASH 93ALHAMBRA            CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2435,'BC-02435','2025-02-23','TST* TAMPA BAY BREWITAMPA               FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2436,'BC-02436','2025-02-28','SHELL SERVICE STATIOVERO BEACH          FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2437,'BC-02437','2025-03-01','VZWIRELESS MY VZ VE 800-922-0204        FL','','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2438,'BC-02438','2025-03-01','THE HOME DEPOT      TAMPA               FL','','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2439,'BC-02439','2025-03-05','AMEXTRAVEL.COM      800-297-2977        WA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2440,'BC-02440','2025-03-06','REGAL AIRPORT HOTEL CHEK LAP KOK        HK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2441,'BC-02441','2025-03-06','REGAL AIRPORT HOTEL CHEK LAP KOK        HK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2442,'BC-02442','2025-03-06','REGAL AIRPORT HOTEL CHEK LAP KOK        HK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2443,'BC-02443','2025-03-07','HOOTERS #34 0001    TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2444,'BC-02444','2025-03-08','CIRCLE K 08811/CIRCLTAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2445,'BC-02445','2025-03-08','7-ELEVEN 37149 00073TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2446,'BC-02446','2025-03-11','XAI LLC             PALO ALTO           CA','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2447,'BC-02447','2025-03-12','Wireless Credit','','Telephone Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2448,'BC-02448','2025-03-13','TECO/PEOPLES GAS    813-223-0800        FL','','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2449,'BC-02449','2025-03-13','KUBRA/TECO CONV FEE 800-766-6616        NJ','','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2450,'BC-02450','2025-03-14','HOOTERS #34 0001    TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2451,'BC-02451','2025-03-14','HOOTERS #34 0001    TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2452,'BC-02452','2025-03-21','TST* GREENLANE - GANTAMPA               FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2453,'BC-02453','2025-03-21','S REG GAR EVENT 0327TAMPA               FL','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2454,'BC-02454','2025-03-22','CIRCLE K 08811/CIRCLTAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2455,'BC-02455','2025-03-23','TST* AZTECA DORO BRABRANDON             FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2456,'BC-02456','2025-03-25','AMERICAN EXPRESS TRASEATTLE             WA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2457,'BC-02457','2025-03-25','FRONTIER AIRLINES AIDENVER              CO','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2458,'BC-02458','2025-03-25','CATHAY PACIFIC AIRWAHONG KONG           HK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2459,'BC-02459','2025-03-27','HOOTERS #34 0001    TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2460,'BC-02460','2025-03-28','Bar Design A/S E TPATAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2461,'BC-02461','2025-03-28','Bar Design A/S E TPATAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2462,'BC-02462','2025-03-29','FRONTIER AIRLINES ONIRVING              TX','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2463,'BC-02463','2025-03-30','MCDONALD\'S          SANFORD             FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2464,'BC-02464','2025-04-02','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2465,'BC-02465','2025-04-02','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2466,'BC-02466','2025-04-04','CATHAY PACIFIC AIRWAHONG KONG           HK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2467,'BC-02467','2025-04-04','CATHAY PACIFIC AIRWAVANCOUVER           CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2468,'BC-02468','2025-04-04','CATHAY PACIFIC AIRWAHONG KONG           HK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2469,'BC-02469','2025-04-04','CATHAY PACIFIC AIRWAVANCOUVER           CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2470,'BC-02470','2025-04-04','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2471,'BC-02471','2025-04-04','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2472,'BC-02472','2025-04-07','CATHAY PACIFIC AIRWAHONG KONG           HK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2473,'BC-02473','2025-04-10','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2474,'BC-02474','2025-04-11','XAI LLC             PALO ALTO           CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2475,'BC-02475','2025-04-11','MOBILE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2476,'BC-02476','2025-04-15','SPIRIT AIRLINES     SOUTH FLORIDA       FL','SPIRIT AIRLINES SPIRIT','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2477,'BC-02477','2025-04-15','RETURN PAYMENT FEE','','Interest Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2478,'BC-02478','2025-04-18','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2479,'BC-02479','2025-04-18','GANDY CITGO 00034666TAMPA               FL','Citgo','Fuel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2480,'BC-02480','2025-04-20','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2481,'BC-02481','2025-04-20','RACETRAC2571  025718FORT MYERS          FL','RACETRAC','Fuel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2482,'BC-02482','2025-04-21','SHERATON GATEWAY RSTMISSISSAUGA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2483,'BC-02483','2025-04-21','COLUMBIA CAFE       TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2484,'BC-02484','2025-04-21','Bar Design A/S E TPATAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2485,'BC-02485','2025-04-22','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2486,'BC-02486','2025-04-24','SHENZHENSHIZHUJIANGHSHENZHEN','','COGS - Custom Batteries','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2487,'BC-02487','2025-04-26','OCEAN PARK CORPORATIHONG KONG           HK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2488,'BC-02488','2025-04-26','VIEW ENTERPRISE LIMIHONG KONG           HK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2489,'BC-02489','2025-04-26','MAXIM\'S PALACE - CITCENTRAL             HK','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2490,'BC-02490','2025-04-27','VISTAPRINT          WALTHAM             MA','VISTAPRINT','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2491,'BC-02491','2025-04-27','VISTAPRINT          WALTHAM             MA','VISTAPRINT','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2492,'BC-02492','2025-04-27','VIEW ENTERPRISE LIMIHONG KONG           HK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2493,'BC-02493','2025-04-28','HOTEL ICON - FRONT OTSIM SHA TSUI EAST  HK','hotels','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2494,'BC-02494','2025-04-30','AMEXTRAVEL.COM      800-297-2977        WA','Amex Travel','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2495,'BC-02495','2025-04-30','MOD DISPLAYS        HARRISONBURG        VA','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2496,'BC-02496','2025-05-01','RAMADA PLAZA BY WYNDBEIJING','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2497,'BC-02497','2025-05-02','RAMADA PLAZA BY WYNDBEIJING','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2498,'BC-02498','2025-05-02','RAMADA PLAZA BY WYNDBEIJING','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2499,'BC-02499','2025-05-02','BOC HK GCAG*MTR-AIRPHong Kong           HK','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2500,'BC-02500','2025-05-03','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2501,'BC-02501','2025-05-03','NOBEL BURGER        MISSISSAUGA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2502,'BC-02502','2025-05-05','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2503,'BC-02503','2025-05-06','VISTAPRINT          WALTHAM             MA','VISTAPRINT','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2504,'BC-02504','2025-05-06','WAL-MART SUPERCENTERTAMPA               FL','Walmart','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2505,'BC-02505','2025-05-06','FT BROOK GAR DAILY 0TAMPA               FL','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2506,'BC-02506','2025-05-07','CLARION EVENTS INC  TULSA               OK','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2507,'BC-02507','2025-05-09','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2508,'BC-02508','2025-05-09','Uber Trip           help.uber.com       CA','UBER','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2509,'BC-02509','2025-05-09','THE HOME DEPOT      TAMPA               FL','THE HOME DEPOT','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2510,'BC-02510','2025-05-11','ABC FINE WINE/SPIRITINDIALANTIC         FL','ABC Fine Wine & Spirits','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2511,'BC-02511','2025-05-11','XAI LLC             PALO ALTO           CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2512,'BC-02512','2025-05-11','WAWA FUEL/CONVENIENCDAVENPORT           FL','WAWA','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2513,'BC-02513','2025-05-12','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2514,'BC-02514','2025-05-13','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2515,'BC-02515','2025-05-14','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2516,'BC-02516','2025-05-16','UBER EATS           HTTPS://HELP.UBER.COCA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2517,'BC-02517','2025-05-16','UBER EATS           HTTPS://HELP.UBER.COCA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2518,'BC-02518','2025-05-18','TRIP.COM            CITY OF WILMINGTON','','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2519,'BC-02519','2025-05-18','AMERICAN EXPRESS TRASEATTLE             WA','American Express','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2520,'BC-02520','2025-05-21','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2521,'BC-02521','2025-05-21','EXXONMOBIL 9755     ORLANDO             FL','Exxon','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2522,'BC-02522','2025-05-22','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2523,'BC-02523','2025-05-23','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2524,'BC-02524','2025-05-24','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2525,'BC-02525','2025-05-24','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2526,'BC-02526','2025-05-24','7-ELEVEN 37149 00073TAMPA               FL','7 ELEVEN','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2527,'BC-02527','2025-05-24','7-ELEVEN 37149 00073TAMPA               FL','7 ELEVEN','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2528,'BC-02528','2025-05-27','TIE DAO BU ZI JING QBEIJING','','COGS - Shipping','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2529,'BC-02529','2025-05-28','TRIP.COM            CITY OF WILMINGTON','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2530,'BC-02530','2025-05-28','TRIP.COM            CITY OF WILMINGTON','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2531,'BC-02531','2025-05-29','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2532,'BC-02532','2025-05-30','AMERICANAIRLINES PACIRVINE              CA','American Airlines','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2533,'BC-02533','2025-05-30','SHAKESHACK          shanghaishi','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2534,'BC-02534','2025-06-01','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2535,'BC-02535','2025-06-02','THEA Collect 8772585TAMPA               FL','Thea Collect','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2536,'BC-02536','2025-06-03','SUNPASS*ACC5797382  888-865-5352        FL','SUNPASS','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2537,'BC-02537','2025-06-04','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2538,'BC-02538','2025-06-06','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2539,'BC-02539','2025-06-06','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2540,'BC-02540','2025-06-06','THE HOME DEPOT      TAMPA               FL','THE HOME DEPOT','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2541,'BC-02541','2025-06-06','HELP.USEMOTION.COM  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2542,'BC-02542','2025-06-07','DNH*GODADDY#37753959Tempe               AZ','GODADDY','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2543,'BC-02543','2025-06-07','Oceanpayment*wondersHK                  HK','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2544,'BC-02544','2025-06-09','ZOOM.COM 888-799-966SAN JOSE            CA','Zoom','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2545,'BC-02545','2025-06-11','XAI LLC             PALO ALTO           CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2546,'BC-02546','2025-06-11','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2547,'BC-02547','2025-06-11','CANVA* I04544-839394CAMDEN              DE','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2548,'BC-02548','2025-06-13','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2549,'BC-02549','2025-06-13','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2550,'BC-02550','2025-06-17','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2551,'BC-02551','2025-06-17','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2552,'BC-02552','2025-06-17','APPLE ONLINE STORE  CUPERTINO           CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2553,'BC-02553','2025-06-17','THE HOME DEPOT      TAMPA               FL','THE HOME DEPOT','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2554,'BC-02554','2025-06-18','WAWA 5301 0000      TAMPA               FL','WAWA','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2555,'BC-02555','2025-06-19','EMAIL HELP@CLOUDHQ.NSAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2556,'BC-02556','2025-06-19','SHANNA & BRYAN GLAZETAMPA               FL\n\nTampa Bay Manufacturing Association - Networking','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2557,'BC-02557','2025-06-20','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2558,'BC-02558','2025-06-22','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2559,'BC-02559','2025-06-24','BT*DIALPAD          SAN RAMON           CA','Dialpad Meetings','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2560,'BC-02560','2025-06-26','SUNPASS*ACC5797382  888-865-5352        FL','SUNPASS','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2561,'BC-02561','2025-06-27','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2562,'BC-02562','2025-06-28','PIPEDRIVE INC       NEW YORK            NY','PipeDrive','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2563,'BC-02563','2025-07-01','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2564,'BC-02564','2025-07-01','GOOGLE *GSUITE_LITHICC@GOOGLE.COM       CA','GOOGLESVCSAPPS','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2565,'BC-02565','2025-07-01','FATHOM.VIDEO        SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2566,'BC-02566','2025-07-03','7-ELEVEN 37149 00073TAMPA               FL','7 ELEVEN','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2567,'BC-02567','2025-07-04','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2568,'BC-02568','2025-07-05','TECO/PEOPLES GAS    813-223-0800        FL','Kubra','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2569,'BC-02569','2025-07-05','KUBRA/TECO CONV FEE 800-766-6616        NJ','Kubra','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2570,'BC-02570','2025-07-06','HELP.USEMOTION.COM  SAN FRANCISCO       CA','Usemotion.com','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2571,'BC-02571','2025-07-08','ZOOM.COM 888-799-966SAN JOSE            CA','Zoom','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2572,'BC-02572','2025-07-09','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2573,'BC-02573','2025-07-09','THE HOME DEPOT 6327 TAMPA               FL','THE HOME DEPOT','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2574,'BC-02574','2025-07-10','Interest Charge on Pay Over Time Purchases','Interest Charge','Interest Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2575,'BC-02575','2025-07-11','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2576,'BC-02576','2025-07-11','CANVA* I04574-775316CAMDEN              DE','CANVA','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2577,'BC-02577','2025-07-11','XAI LLC             PALO ALTO           CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2578,'BC-02578','2025-07-14','UBER THEORIGINALW   HTTPS://HELP.UBER.COCA','UBER','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2579,'BC-02579','2025-07-14','7-ELEVEN 37149 00073TAMPA               FL','7 ELEVEN','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2580,'BC-02580','2025-07-14','THE HOME DEPOT 6327 TAMPA               FL','THE HOME DEPOT','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2581,'BC-02581','2025-07-15','PAYPAL *FIXNFLYDRON XXXXXX7733          FL','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2582,'BC-02582','2025-07-16','FEDEX38859838 FedEx MEMPHIS             TN','FedEx','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2583,'BC-02583','2025-07-16','INSURANCE PAYMENT FEDURHAM              NC','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2584,'BC-02584','2025-07-16','STRATAGEM RISK LLC 9ST PETERSBURG       FL','','Litigation Expense Accrual','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2585,'BC-02585','2025-07-16','UPS*                800-811-1648        GA','UPS STORE','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2586,'BC-02586','2025-07-17','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2587,'BC-02587','2025-07-17','DNH*GODADDY#38206879Tempe               AZ','GODADDY','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2588,'BC-02588','2025-07-18','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2589,'BC-02589','2025-07-19','EMAIL HELP@CLOUDHQ.NSAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2590,'BC-02590','2025-07-21','SMC # 67065         ST. PETERSBURG      FL','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2591,'BC-02591','2025-07-22','WWW.PERPLEXITY.AI   SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2592,'BC-02592','2025-07-22','INSURANCE PAYMENT SECOLUMBUS            GA','','General Liability & Business Interruption Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2593,'BC-02593','2025-07-22','FIRST INSURANCE FUNDNORTHBROOK          IL','','General Liability & Business Interruption Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2594,'BC-02594','2025-07-22','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2595,'BC-02595','2025-07-23','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2596,'BC-02596','2025-07-23','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2597,'BC-02597','2025-07-25','AMZ*WOOT LLC E5R32P0PAY.AMAZON.CO       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2598,'BC-02598','2025-07-25','MANUS AI            SINGAPORE           SG','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2599,'BC-02599','2025-07-25','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2600,'BC-02600','2025-07-26','7-ELEVEN 37149 00073TAMPA               FL','7 ELEVEN','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2601,'BC-02601','2025-07-27','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2602,'BC-02602','2025-07-27','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2603,'BC-02603','2025-07-29','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2604,'BC-02604','2025-07-29','IN *TRANSCONTINENTALTAMPA               FL','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2605,'BC-02605','2025-07-30','IN *TRANSCONTINENTALTAMPA               FL','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2606,'BC-02606','2025-07-30','UPS 29RL04QPAK4     ATLANTA             GA','UPS STORE','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2607,'BC-02607','2025-07-31','PIPEDRIVE INC       NEW YORK            NY','PipeDrive','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2608,'BC-02608','2025-08-01','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2609,'BC-02609','2025-08-01','UBER THEORIGINALW   HTTPS://HELP.UBER.COCA','UBER','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2610,'BC-02610','2025-08-01','LINKEDIN SN P7360398MOUNTAIN VIEW','LINKEDIN','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2611,'BC-02611','2025-08-01','FATHOM.VIDEO        SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2612,'BC-02612','2025-08-01','GOOGLE *GSUITE_LITHICC@GOOGLE.COM       CA','GOOGLESVCSAPPS','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2613,'BC-02613','2025-08-02','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2614,'BC-02614','2025-08-02','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2615,'BC-02615','2025-08-02','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2616,'BC-02616','2025-08-03','7-ELEVEN 37149 00073TAMPA               FL','7 ELEVEN','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2617,'BC-02617','2025-08-04','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2618,'BC-02618','2025-08-05','BATTS ENTERPRISES LLJOHNS ISLAND        SC','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2619,'BC-02619','2025-08-05','EXOSTAR LLC         HERNDON             VA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2620,'BC-02620','2025-08-06','HELP.USEMOTION.COM  SAN FRANCISCO       CA','Usemotion.com','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2621,'BC-02621','2025-08-07','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2622,'BC-02622','2025-08-08','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2623,'BC-02623','2025-08-08','ZOOM.COM 888-799-966SAN JOSE            CA','Zoom','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2624,'BC-02624','2025-08-09','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2625,'BC-02625','2025-08-09','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2626,'BC-02626','2025-08-09','7-ELEVEN 38123 00073ST PETERSBURG       FL','7 ELEVEN','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2627,'BC-02627','2025-08-10','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2628,'BC-02628','2025-08-10','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2629,'BC-02629','2025-08-10','Interest Charge on Pay Over Time Purchases','Interest Charge','Interest Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2630,'BC-02630','2025-08-11','AMZ*WOOT LLC E5R32P0PAY.AMAZON.CO       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2631,'BC-02631','2025-08-11','BT*DIALPAD          SAN RAMON           CA','Dialpad Meetings','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2632,'BC-02632','2025-08-11','XAI LLC             PALO ALTO           CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2633,'BC-02633','2025-08-11','CANVA* I04605-557277CAMDEN              DE','CANVA','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2634,'BC-02634','2025-08-12','INSURANCE PAYMENT SECOLUMBUS            GA','','General Liability & Business Interruption Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2635,'BC-02635','2025-08-12','FIRST INSURANCE FUNDNORTHBROOK          IL','','General Liability & Business Interruption Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2636,'BC-02636','2025-08-12','FREIGHTQUOTE BY CH RKANSAS CITY         MO','FREIGHTQUOTE','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2637,'BC-02637','2025-08-16','KUBRA/TECO CONV FEE 800-766-6616        NJ','Kubra','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2638,'BC-02638','2025-08-16','TECO/PEOPLES GAS    813-223-0800        FL','Kubra','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2639,'BC-02639','2025-08-17','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2640,'BC-02640','2025-08-17','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2641,'BC-02641','2025-08-18','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250818 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7112016 EED:250818 IND ID:M3298 IND NAME:NATHAN STARON ER AM TRN: XXXXXX2016 TC','American Express','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2642,'BC-02642','2025-08-19','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2643,'BC-02643','2025-08-19','FREIGHTQUOTE BY CH RKANSAS CITY         MO','FREIGHTQUOTE','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2644,'BC-02644','2025-08-19','EMAIL HELP@CLOUDHQ.NSAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2645,'BC-02645','2025-08-20','AMZ*WOOT LLC E5R32P0PAY.AMAZON.CO       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2646,'BC-02646','2025-08-20','AMAZON.COM          AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2647,'BC-02647','2025-08-20','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2648,'BC-02648','2025-08-23','WAWA FUEL/CONVENIENCMELBOURNE           FL','WAWA','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2649,'BC-02649','2025-08-24','DNH*GODADDY#38655881Tempe               AZ','GODADDY','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2650,'BC-02650','2025-08-25','MANUS AI            SINGAPORE           SG','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2651,'BC-02651','2025-08-28','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2652,'BC-02652','2025-08-28','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2653,'BC-02653','2025-08-28','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2654,'BC-02654','2025-08-29','UBER 7ELEVEN4747    HTTPS://HELP.UBER.COCA','7 ELEVEN','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2655,'BC-02655','2025-08-29','MOBILE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2656,'BC-02656','2025-08-30','GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','Youtube TV','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2657,'BC-02657','2025-08-30','PIPEDRIVE INC       NEW YORK            NY','PipeDrive','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2658,'BC-02658','2025-08-31','UPS 29JM1O79C9H     ATLANTA             GA','UPS STORE','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2659,'BC-02659','2025-08-31','FLBLUE* ACA         JACKSONVILLE        FL','florida Blue','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2660,'BC-02660','2025-09-01','FLBLUE* ACA         JACKSONVILLE        FL','florida Blue','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2661,'BC-02661','2025-09-01','MOBILE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2662,'BC-02662','2025-09-01','LINKEDIN SN P7877367MOUNTAIN VIEW','LINKEDIN','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2663,'BC-02663','2025-09-01','FATHOM.VIDEO        SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2664,'BC-02664','2025-09-01','GOOGLE *GSUITE_LITHICC@GOOGLE.COM       CA','GOOGLESVCSAPPS','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2665,'BC-02665','2025-09-02','CIRCLE K 08811/CIRCLTAMPA               FL','Circle K','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2666,'BC-02666','2025-09-03','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2667,'BC-02667','2025-09-04','UBER THEORIGINALW   HTTPS://HELP.UBER.COCA','UBER','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2668,'BC-02668','2025-09-04','DNH*GODADDY#38792940Tempe               AZ','GODADDY','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2669,'BC-02669','2025-09-06','HELP.USEMOTION.COM  SAN FRANCISCO       CA','Usemotion.com','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2670,'BC-02670','2025-09-07','MOBILE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2671,'BC-02671','2025-09-08','ZOOM.COM 888-799-966SAN JOSE            CA','Zoom','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2672,'BC-02672','2025-09-08','xAI','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2673,'BC-02673','2025-09-09','Interest Charge on Pay Over Time Purchases','Interest Charge','Interest Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2674,'BC-02674','2025-09-11','CANVA* I04636-580863CAMDEN              DE','CANVA','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2675,'BC-02675','2025-09-11','XAI LLC             PALO ALTO           CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2676,'BC-02676','2025-09-12','GANDY CITGO 00034666TAMPA               FL','Citgo','Fuel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2677,'BC-02677','2025-09-12','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2678,'BC-02678','2025-09-12','CLOAKED* IND MONTH  LOWELL              MA','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2679,'BC-02679','2025-09-13','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2680,'BC-02680','2025-09-13','THE SHERWIN-WILLIAMSCLEVELAND           OH','Sherwin Wlliams','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2681,'BC-02681','2025-09-13','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2682,'BC-02682','2025-09-14','7-ELEVEN 37149 00073TAMPA               FL','7 ELEVEN','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2683,'BC-02683','2025-09-14','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2684,'BC-02684','2025-09-18','DNH*GODADDY#38959148Tempe               AZ','GODADDY','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2685,'BC-02685','2025-09-19','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2686,'BC-02686','2025-09-19','WALMART.COM         WALMART.COM         AR','Walmart','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2687,'BC-02687','2025-09-19','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2688,'BC-02688','2025-09-19','INSURANCE PAYMENT SECOLUMBUS            GA','','General Liability & Business Interruption Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2689,'BC-02689','2025-09-19','FIRST INSURANCE FUNDNORTHBROOK          IL','','General Liability & Business Interruption Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2690,'BC-02690','2025-09-19','EMAIL HELP@CLOUDHQ.NSAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2691,'BC-02691','2025-09-20','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2692,'BC-02692','2025-09-20','WALMART.COM 80092562BENTONVILLE         AR','Walmart','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2693,'BC-02693','2025-09-20','WALMART.COM         WALMART.COM         AR','Walmart','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2694,'BC-02694','2025-09-21','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2695,'BC-02695','2025-09-23','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2696,'BC-02696','2025-02-03','Created by QB Online to adjust balance for deletion','','Opening Balance Equity','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2697,'BC-02697','2025-01-15','Pay Period: 01/01/2025-01/15/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2698,'BC-02698','2025-01-15','Pay Period: 01/01/2025-01/15/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2699,'BC-02699','2025-01-15','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2700,'BC-02700','2025-01-15','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2701,'BC-02701','2025-01-31','Pay Period: 01/16/2025-01/31/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2702,'BC-02702','2025-01-31','Pay Period: 01/16/2025-01/31/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2703,'BC-02703','2025-01-31','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2704,'BC-02704','2025-01-31','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2705,'BC-02705','2025-02-14','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2706,'BC-02706','2025-02-14','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2707,'BC-02707','2025-02-15','Pay Period: 02/01/2025-02/15/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2708,'BC-02708','2025-02-15','Pay Period: 02/01/2025-02/15/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2709,'BC-02709','2025-02-28','Pay Period: 02/16/2025-02/28/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2710,'BC-02710','2025-02-28','Pay Period: 02/16/2025-02/28/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2711,'BC-02711','2025-02-28','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2712,'BC-02712','2025-02-28','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2713,'BC-02713','2025-03-14','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2714,'BC-02714','2025-03-14','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2715,'BC-02715','2025-03-15','Pay Period: 03/01/2025-03/15/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2716,'BC-02716','2025-03-15','Pay Period: 03/01/2025-03/15/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2717,'BC-02717','2025-03-31','Pay Period: 03/16/2025-03/31/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2718,'BC-02718','2025-03-31','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2719,'BC-02719','2025-03-31','Pay Period: 03/16/2025-03/31/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2720,'BC-02720','2025-03-31','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2721,'BC-02721','2025-04-15','Pay Period: 04/01/2025-04/15/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2722,'BC-02722','2025-04-15','Pay Period: 04/01/2025-04/15/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2723,'BC-02723','2025-04-15','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2724,'BC-02724','2025-04-15','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2725,'BC-02725','2025-04-30','Pay Period: 04/16/2025-04/30/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2726,'BC-02726','2025-04-30','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2727,'BC-02727','2025-04-30','Pay Period: 04/16/2025-04/30/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2728,'BC-02728','2025-04-30','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2729,'BC-02729','2025-05-15','Pay Period: 05/01/2025-05/15/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2730,'BC-02730','2025-05-15','Pay Period: 05/01/2025-05/15/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2731,'BC-02731','2025-05-15','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2732,'BC-02732','2025-05-15','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2733,'BC-02733','2025-05-30','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2734,'BC-02734','2025-05-30','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2735,'BC-02735','2025-05-31','Pay Period: 05/16/2025-05/31/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2736,'BC-02736','2025-05-31','Pay Period: 05/16/2025-05/31/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2737,'BC-02737','2025-06-13','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2738,'BC-02738','2025-06-13','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2739,'BC-02739','2025-06-15','Pay Period: 06/01/2025-06/15/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2740,'BC-02740','2025-06-15','Pay Period: 06/01/2025-06/15/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2741,'BC-02741','2025-06-30','Pay Period: 06/16/2025-06/30/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2742,'BC-02742','2025-06-30','Pay Period: 06/16/2025-06/30/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2743,'BC-02743','2025-06-30','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2744,'BC-02744','2025-06-30','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2745,'BC-02745','2025-07-15','Pay Period: 07/01/2025-07/15/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2746,'BC-02746','2025-07-15','Pay Period: 07/01/2025-07/15/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2747,'BC-02747','2025-07-15','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2748,'BC-02748','2025-07-15','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2749,'BC-02749','2025-07-31','Pay Period: 07/16/2025-07/31/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2750,'BC-02750','2025-07-31','Pay Period: 07/16/2025-07/31/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2751,'BC-02751','2025-07-31','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2752,'BC-02752','2025-07-31','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2753,'BC-02753','2025-08-04','Pay Period: 08/01/2025-08/31/2025','TANNER HANCE','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2754,'BC-02754','2025-08-04','Direct Deposit','TANNER HANCE','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2755,'BC-02755','2025-08-15','Pay Period: 08/01/2025-08/15/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2756,'BC-02756','2025-08-15','Pay Period: 08/01/2025-08/15/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2757,'BC-02757','2025-08-15','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2758,'BC-02758','2025-08-15','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2759,'BC-02759','2025-08-29','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2760,'BC-02760','2025-08-29','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2761,'BC-02761','2025-08-31','Pay Period: 08/16/2025-08/31/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2762,'BC-02762','2025-08-31','Pay Period: 08/16/2025-08/31/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2763,'BC-02763','2025-09-08','Pay Period: 09/01/2025-09/30/2025 Check created out of sequence in a prior quarter','TANNER HANCE','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2764,'BC-02764','2025-09-08','Direct Deposit','TANNER HANCE','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2765,'BC-02765','2025-09-15','Pay Period: 09/01/2025-09/15/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2766,'BC-02766','2025-09-15','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2767,'BC-02767','2025-10-01','Pay Period: 10/01/2025-10/31/2025','TANNER HANCE','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2768,'BC-02768','2025-10-01','Direct Deposit','TANNER HANCE','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2769,'BC-02769','2025-01-01','ORIG CO NAME:SBA EIDL LOAN ORIG ID:XXXXXX0118 DESC DATE:241231 CO ENTRY DESCR:PAYMENT SEC:CCD TRACE#:XXXXXXXX2211203 EED:250102 IND ID:0000 IND NAME:NATHAN STAR ON XXXXXX7203 ACH TRANSACTION TRN: XXXXXX1203 TC','EIDL Loan','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2770,'BC-02770','2025-02-22','ORIG CO NAME:SBA EIDL LOAN ORIG ID:XXXXXX0118 DESC DATE:250221 CO ENTRY DESCR:PAYMENT SEC:CCD TRACE#:XXXXXXXX8546940 EED:250224 IND ID:0000 IND NAME:NATHAN STAR ON XXXXXX7203 ACH TRANSACTION TRN: XXXXXX6940 TC','EIDL Loan','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2771,'BC-02771','2025-03-06','ONLINE DOMESTIC WIRE TRANSFER VIA: TREAS NYC/XXXXX0004 A/C: SMALL BUSINESS ADMINISTRATION DENVER CO X0202 US REF: LITHIUM BATTERY COMPANY (NATHAN A STARON) EIDL LOAN: XXXXXX7203/BNF/LI THIUM BATTERY COMPANY (NATHAN A STA RON) EIDL LOAN: XXXXXX7203 IMAD: 0306MMQFMP2MXX4558 TRN: XXXXXX5065 ES 03/06','EIDL Loan','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2772,'BC-02772','2025-03-06','Loan Fees','EIDL Loan','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2773,'BC-02773','2025-02-13','ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT (N.S.)/BNF/LITHIUM BATTERY CO IMAD: 021 3MMQFMP2KXX6076 TRN: XXXXXX5044 ES 02/13','Ron Staron - Vendor','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2774,'BC-02774','2025-03-04','ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT/BNF/LITHIUM BATTERY CO IMAD: 0304MMQFMP 2NXX2800 TRN: XXXXXX5063 ES 03/04','Ron Staron - Vendor','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2775,'BC-02775','2025-04-08','ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT/BNF/LITHIUM BATTERY CO IMAD: 0408MMQFMP 2KXX1400 TRN: XXXXXX5098 ES 04/08','Ron Staron - Vendor','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2776,'BC-02776','2025-04-08','Loan Fees Adjustment','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2777,'BC-02777','2025-08-07','FEDWIRE CREDIT VIA: FEDERAL HOME LOAN BK OF PITTSBURGH/XXXXX1435 B/O: INFIRST BANK INDIANA, PA X5701 REF: CHASE NYC/CTR/BNF=LITHIUM BATTERY COMPANY INTL, LLC TA MPA FL XXXX4-800 6 US/AC-XXXXXXXX5806 RFB=NOTPROVIDE D OBI=/PURP/START UP FUNDS FOR SON\' S COMP ANY/URI/BUSINESS START UP CO ST IMAD: 0807MMQFMPDRXX0053 TRN: XXXXXX1219 FF','Ron Staron - Vendor','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2778,'BC-02778','2025-01-08','ORIG CO NAME:ALLY ORIG ID:XXXXXX2002 DESC DATE:250108 CO ENTRY DESCR:ALLY PAYMTSEC:CCD TRACE#:XXXXXXXX7292718 EED:250108 IND ID:XXXXXXXX1804 IND NAME:LITHIUM BA TTERY CO TRN: XXXXXX2718 TC','ALLY','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2779,'BC-02779','2025-03-25','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2780,'BC-02780','2025-03-25','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2781,'BC-02781','2025-03-25','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2782,'BC-02782','2025-09-18','ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250917 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX8170379 EED:250918 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX0379 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2783,'BC-02783','2025-03-25','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2784,'BC-02784','2025-09-09','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250906 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX9686584 EED:250909 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX6584 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2785,'BC-02785','2025-03-25','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2786,'BC-02786','2025-04-23','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250422 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX4164084 EED:250423 IND ID:PXXXX2890 IND NAME:STAR ON, NATHAN TRN: XXXXXX4084 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2787,'BC-02787','2025-05-23','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250522 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8623913 EED:250523 IND ID:PXXXX9839 IND NAME:STAR ON, NATHAN TRN: XXXXXX3913 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2788,'BC-02788','2025-06-21','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250620 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8750948 EED:250623 IND ID:PXXXX1798 IND NAME:STAR ON, NATHAN TRN: XXXXXX0948 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2789,'BC-02789','2025-07-23','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250722 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX2005503 EED:250723 IND ID:PXXXX4907 IND NAME:STAR ON, NATHAN TRN: XXXXXX5503 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2790,'BC-02790','2025-01-15','2 Payments Direct From CFB to Vendor','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2791,'BC-02791','2025-04-16','0687 Lithium Battery Company Draw #7','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2792,'BC-02792','2025-04-21','XXXXXX0687 Lithium Battery Draw #8','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2793,'BC-02793','2025-05-27','Draw #9','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2794,'BC-02794','2025-06-10','Draw #10','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2795,'BC-02795','2025-07-14','Lithium Battery Draw #14','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2796,'BC-02796','2025-01-16','Initial SBA Loan Balance','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2797,'BC-02797','2025-01-16','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2798,'BC-02798','2025-02-25','Draw #1 - Payroll','Climate First Bank','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2799,'BC-02799','2025-03-03','Draw #2 - Insurance Binding pymt - CFB to LBC; 2 payments = $30,000 - NS AMEX, $30,000 JB repayment; $5,000 LBC Chase 2560 = $65,000','Climate First Bank','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2800,'BC-02800','2025-03-04','EIDL #3 - Transfer Payment','Climate First Bank','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2801,'BC-02801','2025-03-26','Inventory Repayment #4 - RS','Climate First Bank','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2802,'BC-02802','2025-01-01','Opening Balance from Bank','','Opening Balance Equity','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2803,'BC-02803','2025-01-06','BLINK AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2804,'BC-02804','2025-01-13','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2805,'BC-02805','2025-01-18','AMZ*WOOT LLC E5R32P0PAY.AMAZON.CO WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2806,'BC-02806','2025-01-20','AMAZON.COM AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2807,'BC-02807','2025-01-20','AMAZON.COM AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2808,'BC-02808','2025-01-28','AMAZON.COM AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2809,'BC-02809','2025-01-28','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2810,'BC-02810','2025-01-28','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2811,'BC-02811','2025-02-06','BLINK AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2812,'BC-02812','2025-02-08','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2813,'BC-02813','2025-02-09','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2814,'BC-02814','2025-02-09','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2815,'BC-02815','2025-02-18','AMERICAN AIRLINES XXX-XXX-7300 TX XXXX4007','American Airlines','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2816,'BC-02816','2025-02-18','AMERICAN AIRLINES XXX-XXX-7300 TX XXXX4007','American Airlines','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2817,'BC-02817','2025-02-18','AMERICAN AIRLINES XXX-XXX-7300 TX XXXX4007','American Airlines','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2818,'BC-02818','2025-02-20','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2819,'BC-02819','2025-02-25','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2820,'BC-02820','2025-02-25','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2821,'BC-02821','2025-02-27','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2822,'BC-02822','2025-03-06','BLINK AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2823,'BC-02823','2025-03-08','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2824,'BC-02824','2025-03-08','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2825,'BC-02825','2025-03-14','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2826,'BC-02826','2025-03-16','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2827,'BC-02827','2025-03-18','AMAZON.COM AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2828,'BC-02828','2025-03-24','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2829,'BC-02829','2025-03-31','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2830,'BC-02830','2025-03-31','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2831,'BC-02831','2025-04-02','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2832,'BC-02832','2025-04-02','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2833,'BC-02833','2025-04-06','BLINK AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2834,'BC-02834','2025-04-07','AMAZON.COM AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2835,'BC-02835','2025-04-10','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2836,'BC-02836','2025-04-11','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2837,'BC-02837','2025-04-11','AMAZON.COM AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2838,'BC-02838','2025-04-11','AMAZON.COM AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2839,'BC-02839','2025-04-11','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2840,'BC-02840','2025-04-12','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2841,'BC-02841','2025-04-12','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2842,'BC-02842','2025-04-12','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2843,'BC-02843','2025-04-15','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2844,'BC-02844','2025-05-06','BLINK AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2845,'BC-02845','2025-05-12','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2846,'BC-02846','2025-05-15','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2847,'BC-02847','2025-05-16','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2848,'BC-02848','2025-05-19','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2849,'BC-02849','2025-05-20','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2850,'BC-02850','2025-05-20','AMAZON.COM AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2851,'BC-02851','2025-05-23','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2852,'BC-02852','2025-05-30','AMAZON.COM AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2853,'BC-02853','2025-05-31','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2854,'BC-02854','2025-06-03','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2855,'BC-02855','2025-06-06','BLINK AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2856,'BC-02856','2025-06-07','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2857,'BC-02857','2025-06-07','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2858,'BC-02858','2025-09-05','Created by QB Online to adjust balance for deletion','','Opening Balance Equity','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2859,'BC-02859','2025-01-06','Federal Taxes (941/943/944)','IRS','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2860,'BC-02860','2025-01-15','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2861,'BC-02861','2025-01-15','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2862,'BC-02862','2025-01-15','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2863,'BC-02863','2025-01-31','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2864,'BC-02864','2025-01-31','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2865,'BC-02865','2025-01-31','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2866,'BC-02866','2025-02-14','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2867,'BC-02867','2025-02-15','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2868,'BC-02868','2025-02-15','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2869,'BC-02869','2025-02-28','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2870,'BC-02870','2025-02-28','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2871,'BC-02871','2025-02-28','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2872,'BC-02872','2025-03-14','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2873,'BC-02873','2025-03-15','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2874,'BC-02874','2025-03-15','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2875,'BC-02875','2025-03-31','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2876,'BC-02876','2025-03-31','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2877,'BC-02877','2025-03-31','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2878,'BC-02878','2025-04-15','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2879,'BC-02879','2025-04-15','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2880,'BC-02880','2025-04-15','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2881,'BC-02881','2025-04-30','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2882,'BC-02882','2025-04-30','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2883,'BC-02883','2025-04-30','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2884,'BC-02884','2025-05-15','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2885,'BC-02885','2025-05-15','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2886,'BC-02886','2025-05-15','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2887,'BC-02887','2025-05-30','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2888,'BC-02888','2025-05-31','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2889,'BC-02889','2025-05-31','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2890,'BC-02890','2025-06-13','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2891,'BC-02891','2025-06-15','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2892,'BC-02892','2025-06-15','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2893,'BC-02893','2025-06-30','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2894,'BC-02894','2025-06-30','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2895,'BC-02895','2025-06-30','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2896,'BC-02896','2025-07-15','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2897,'BC-02897','2025-07-15','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2898,'BC-02898','2025-07-15','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2899,'BC-02899','2025-07-31','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2900,'BC-02900','2025-07-31','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2901,'BC-02901','2025-07-31','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2902,'BC-02902','2025-08-04','Federal Taxes (941/943/944)','TANNER HANCE','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2903,'BC-02903','2025-08-04','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2904,'BC-02904','2025-08-15','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2905,'BC-02905','2025-08-15','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2906,'BC-02906','2025-08-15','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2907,'BC-02907','2025-08-29','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2908,'BC-02908','2025-08-31','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2909,'BC-02909','2025-08-31','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2910,'BC-02910','2025-09-08','Federal Taxes (941/943/944)','TANNER HANCE','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2911,'BC-02911','2025-09-08','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2912,'BC-02912','2025-09-15','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2913,'BC-02913','2025-09-15','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2914,'BC-02914','2025-10-01','Federal Taxes (941/943/944)','TANNER HANCE','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2915,'BC-02915','2025-10-10','Federal Taxes (941/943/944)','IRS','QuickBooks Tax Holding Account','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2916,'BC-02916','2025-10-15','Federal Taxes (941/943/944)','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2917,'BC-02917','2025-10-15','Federal Taxes (941/943/944)','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2918,'BC-02918','2025-10-22','Federal Taxes (941/943/944)','IRS','QuickBooks Tax Holding Account','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2919,'BC-02919','2025-10-31','Federal Taxes (941/943/944)','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2920,'BC-02920','2025-10-31','Federal Taxes (941/943/944)','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2921,'BC-02921','2025-11-05','Federal Taxes (941/943/944)','IRS','QuickBooks Tax Holding Account','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2922,'BC-02922','2025-01-15','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2923,'BC-02923','2025-01-15','Federal Unemployment (940)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2924,'BC-02924','2025-01-15','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2925,'BC-02925','2025-01-30','Federal Unemployment (940)','IRS','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2926,'BC-02926','2025-01-31','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2927,'BC-02927','2025-01-31','Federal Unemployment (940)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2928,'BC-02928','2025-01-31','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2929,'BC-02929','2025-02-14','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2930,'BC-02930','2025-02-15','Federal Unemployment (940)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2931,'BC-02931','2025-02-15','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2932,'BC-02932','2025-02-28','Federal Unemployment (940)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2933,'BC-02933','2025-02-28','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2934,'BC-02934','2025-02-28','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2935,'BC-02935','2025-03-14','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2936,'BC-02936','2025-03-15','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2937,'BC-02937','2025-03-31','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2938,'BC-02938','2025-03-31','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2939,'BC-02939','2025-04-15','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2940,'BC-02940','2025-04-15','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2941,'BC-02941','2025-04-30','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2942,'BC-02942','2025-04-30','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2943,'BC-02943','2025-05-15','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2944,'BC-02944','2025-05-15','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2945,'BC-02945','2025-05-30','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2946,'BC-02946','2025-05-31','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2947,'BC-02947','2025-06-13','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2948,'BC-02948','2025-06-15','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2949,'BC-02949','2025-06-30','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2950,'BC-02950','2025-06-30','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2951,'BC-02951','2025-07-15','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2952,'BC-02952','2025-07-15','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2953,'BC-02953','2025-07-31','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2954,'BC-02954','2025-07-31','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2955,'BC-02955','2025-08-04','Federal Unemployment (940)','TANNER HANCE','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2956,'BC-02956','2025-08-04','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2957,'BC-02957','2025-08-15','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2958,'BC-02958','2025-08-15','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2959,'BC-02959','2025-08-29','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2960,'BC-02960','2025-08-31','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2961,'BC-02961','2025-09-22','Federal Unemployment (940)','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2962,'BC-02962','2025-10-15','Federal Unemployment (940)','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2963,'BC-02963','2025-01-15','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2964,'BC-02964','2025-01-15','FL Unemployment Tax','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2965,'BC-02965','2025-01-15','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2966,'BC-02966','2025-01-31','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2967,'BC-02967','2025-01-31','FL Unemployment Tax','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2968,'BC-02968','2025-01-31','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2969,'BC-02969','2025-02-14','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2970,'BC-02970','2025-02-15','FL Unemployment Tax','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2971,'BC-02971','2025-02-15','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2972,'BC-02972','2025-02-15','FL Unemployment Tax','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2973,'BC-02973','2025-02-28','FL Unemployment Tax','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2974,'BC-02974','2025-02-28','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2975,'BC-02975','2025-02-28','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2976,'BC-02976','2025-03-14','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2977,'BC-02977','2025-03-15','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2978,'BC-02978','2025-03-31','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2979,'BC-02979','2025-03-31','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2980,'BC-02980','2025-04-15','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2981,'BC-02981','2025-04-15','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2982,'BC-02982','2025-04-30','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2983,'BC-02983','2025-04-30','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2984,'BC-02984','2025-05-15','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2985,'BC-02985','2025-05-15','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2986,'BC-02986','2025-05-30','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2987,'BC-02987','2025-05-31','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2988,'BC-02988','2025-06-13','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2989,'BC-02989','2025-06-15','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2990,'BC-02990','2025-06-30','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2991,'BC-02991','2025-06-30','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2992,'BC-02992','2025-07-15','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2993,'BC-02993','2025-07-15','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2994,'BC-02994','2025-07-31','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2995,'BC-02995','2025-07-31','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2996,'BC-02996','2025-08-04','FL Unemployment Tax','TANNER HANCE','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2997,'BC-02997','2025-08-04','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2998,'BC-02998','2025-08-15','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2999,'BC-02999','2025-08-15','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3000,'BC-03000','2025-08-29','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3001,'BC-03001','2025-08-31','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3002,'BC-03002','2025-09-22','FL Unemployment Tax','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3003,'BC-03003','2025-10-15','FL Unemployment Tax','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3004,'BC-03004','2025-10-31','FL Unemployment Tax','FL U.C. Fund','QuickBooks Tax Holding Account','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3005,'BC-03005','2025-01-05','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3006,'BC-03006','2025-01-06','AplPay SPORT CLIPS -TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3007,'BC-03007','2025-01-10','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3008,'BC-03008','2025-01-14','AplPay HIMS & HERS HSAN FRANCISCO       CA','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3009,'BC-03009','2025-01-15','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3010,'BC-03010','2025-01-18','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3011,'BC-03011','2025-01-19','SP CPAP.COM         STAFFORD            TX','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3012,'BC-03012','2025-01-22','SP CPAP.COM         STAFFORD            TX','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3013,'BC-03013','2025-01-23','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3014,'BC-03014','2025-01-24','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3015,'BC-03015','2025-01-24','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3016,'BC-03016','2025-01-24','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3017,'BC-03017','2025-01-28','AplPay JONI\'S PET SATampa               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3018,'BC-03018','2025-01-29','NEUROSPA            TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3019,'BC-03019','2025-01-31','DABA NAILS & SPA 941TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3020,'BC-03020','2025-02-02','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3021,'BC-03021','2025-02-03','AplPay SPORT CLIPS -TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3022,'BC-03022','2025-02-03','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3023,'BC-03023','2025-02-05','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3024,'BC-03024','2025-02-08','AplPay DINOSAUR WORLPLANT CITY          FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3025,'BC-03025','2025-02-08','DINOSAUR WORLD 00-08PLANT CITY          FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3026,'BC-03026','2025-02-08','AplPay DINOSAUR WORLPLANT CITY          FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3027,'BC-03027','2025-02-13','NEUROSPA            TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3028,'BC-03028','2025-02-17','FABLETICS.COM       855-202-3570        CA','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3029,'BC-03029','2025-02-20','ROCK IT FITNESS 9362TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3030,'BC-03030','2025-02-20','THE STUDY SALON     TAMPA               FL','The Study Salon','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3031,'BC-03031','2025-02-21','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3032,'BC-03032','2025-02-21','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3033,'BC-03033','2025-02-22','AplPay SP SAND SURF TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3034,'BC-03034','2025-02-22','AplPay SP SAND SURF TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3035,'BC-03035','2025-02-22','AplPay GROUPON, INC.CHICAGO','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3036,'BC-03036','2025-02-22','SP SAND SURF CO     TAMPA               FL','Sand Surf Co','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3037,'BC-03037','2025-02-22','SP SAND SURF CO     TAMPA               FL','Sand Surf Co','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3038,'BC-03038','2025-02-24','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3039,'BC-03039','2025-02-24','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3040,'BC-03040','2025-02-24','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3041,'BC-03041','2025-02-24','AplPay SPORT CLIPS -TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3042,'BC-03042','2025-02-24','AplPay GROUPON, INC.CHICAGO','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3043,'BC-03043','2025-02-26','NEUROSPA            TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3044,'BC-03044','2025-02-26','PPY=TAMPA NEUROPSYCHTAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3045,'BC-03045','2025-02-27','AplPay RON JON SURF COCOA BEACH         FL','Ron Jon Surf Shop','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3046,'BC-03046','2025-02-27','AplPay RON JON SURF COCOA BEACH         FL','Ron Jon Surf Shop','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3047,'BC-03047','2025-02-27','AplPay RON JON SURF COCOA BEACH         FL','Ron Jon Surf Shop','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3048,'BC-03048','2025-03-03','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3049,'BC-03049','2025-03-03','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3050,'BC-03050','2025-03-04','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3051,'BC-03051','2025-03-06','FABLETICS.COM       855-202-3570        CA','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3052,'BC-03052','2025-03-09','FLORIDA STRAWBERRY FPLANT CITY          FL','Florida Strawberry','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3053,'BC-03053','2025-03-10','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3054,'BC-03054','2025-03-10','AplPay AMC 9640 ONLILEAWOOD             KS','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3055,'BC-03055','2025-03-10','AplPay AMC 9640 ONLILEAWOOD             KS','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3056,'BC-03056','2025-03-13','THE WOMANS GROUP OF TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3057,'BC-03057','2025-03-14','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3058,'BC-03058','2025-03-14','JONI\'S PET SALON, INTampa               FL','Joni\'s Pet Salon','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3059,'BC-03059','2025-03-16','AplPay SPORT CLIPS -TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3060,'BC-03060','2025-03-19','NEUROSPA            TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3061,'BC-03061','2025-03-20','SERENITY HEALS THERAFORT MYERS          FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3062,'BC-03062','2025-03-21','AplPay D34 DISNEY ONPALMETTO            FL','Disney','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3063,'BC-03063','2025-03-21','AplPay AMALIE ARENA TAMPA               FL','Amalie Arena','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3064,'BC-03064','2025-03-21','AplPay D34 DISNEY ONPALMETTO            FL','Disney','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3065,'BC-03065','2025-03-21','AplPay AMALIE ARENA TAMPA               FL','Amalie Arena','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3066,'BC-03066','2025-03-21','AplPay AMALIE ARENA TAMPA               FL','Amalie Arena','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3067,'BC-03067','2025-03-21','AplPay AMALIE ARENA TAMPA               FL','Amalie Arena','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3068,'BC-03068','2025-03-22','RESTAURANT DEPOT 413TAMPA               FL','Restaurant Depot','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3069,'BC-03069','2025-03-27','DABA NAILS & SPA 941TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3070,'BC-03070','2025-03-31','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3071,'BC-03071','2025-04-05','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3072,'BC-03072','2025-04-09','FABLETICS.COM       855-202-3570        CA','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3073,'BC-03073','2025-04-10','AplPay SPORT CLIPS -TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3074,'BC-03074','2025-04-10','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3075,'BC-03075','2025-04-13','AplPay CARTER S #131TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3076,'BC-03076','2025-04-13','AplPay CREAM DE LA CTampa               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3077,'BC-03077','2025-04-14','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3078,'BC-03078','2025-04-16','LEAF HOME WATER SOLUHUDSON              OH','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3079,'BC-03079','2025-04-17','AITUBOART           HUNGHOM             HK','Aituboart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3080,'BC-03080','2025-04-17','INAI PTE. LTD.      SINGAPORE           SG','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3081,'BC-03081','2025-04-20','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3082,'BC-03082','2025-04-20','RACETRAC2571  025718FORT MYERS          FL','RACETRAC','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3083,'BC-03083','2025-04-21','PEACOCK             NEW YORK CITY       NY','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3084,'BC-03084','2025-04-21','Platinum Digital Entertainment Credit','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3085,'BC-03085','2025-04-21','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3086,'BC-03086','2025-04-22','AplPay A NAILS      FORT MYERS          FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3087,'BC-03087','2025-04-24','AplPay PRICELN*CROWNNORWALK             CT','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3088,'BC-03088','2025-04-25','Online Transfer from CHK ...1215 transaction#: XXXXXXX8239','o','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3089,'BC-03089','2025-04-26','PAYPAL *KAMYUU1105  XXXXXX7733          HK','Kamyuu','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3090,'BC-03090','2025-04-30','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3091,'BC-03091','2025-05-01','OLD NAVY ON-LINE 084GROVEPORT           OH','o','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3092,'BC-03092','2025-05-01','OLD NAVY ON-LINE 084GROVEPORT           OH','o','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3093,'BC-03093','2025-05-01','AplPay BT*GAMETIME  SAN FRANCISCO       CA','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3094,'BC-03094','2025-05-01','KORE WIRELESS       ATLANTA             GA','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3095,'BC-03095','2025-05-02','AplPay UNIFORM NAMETTAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3096,'BC-03096','2025-05-03','AplPay SPORT CLIPS -TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3097,'BC-03097','2025-05-03','TST* BAR CARTS-STRAZTAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3098,'BC-03098','2025-05-03','NON-CHASE ATM WITHDRAW XX6671 05/XX1010 N MA','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3099,'BC-03099','2025-05-04','AplPay EMPAMAMAS    Tampa               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3100,'BC-03100','2025-05-05','AplPay VALET TIPS   NASHVILLE           TN','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3101,'BC-03101','2025-05-06','SQSP* INV180951011  NEW YORK            NY','SQUARESPACE','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3102,'BC-03102','2025-05-07','AplPay VALET TIPS   NASHVILLE           TN','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3103,'BC-03103','2025-05-08','FABLETICS.COM       855-202-3570        CA','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3104,'BC-03104','2025-05-08','VALET TIPS          NASHVILLE           TN','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3105,'BC-03105','2025-05-11','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3106,'BC-03106','2025-05-11','FABLETICS.COM       855-202-3570        CA','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3107,'BC-03107','2025-05-11','FABLETICS.COM       855-202-3570        CA','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3108,'BC-03108','2025-05-11','FABLETICS.COM       855-202-3570        CA','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3109,'BC-03109','2025-05-15','RON JON SURF SHOP   COCOA BEACH         FL','Ron Jon Surf Shop','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3110,'BC-03110','2025-05-15','RON JON SURF SHOP   COCOA BEACH         FL','Ron Jon Surf Shop','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3111,'BC-03111','2025-05-15','RON JON SURF SHOP   COCOA BEACH         FL','Ron Jon Surf Shop','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3112,'BC-03112','2025-05-17','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3113,'BC-03113','2025-05-17','AplPay IC* INSTACARTLAKELAND            FL','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3114,'BC-03114','2025-05-17','AITUBO.AI           HUNGHOM             HK','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3115,'BC-03115','2025-05-17','INAI PTE. LTD.      SINGAPORE           SG','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3116,'BC-03116','2025-05-19','AplPay IC* ABC FINE ORLANDO             FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3117,'BC-03117','2025-05-19','AplPay IC* ABC FINE ORLANDO             FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3118,'BC-03118','2025-05-21','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3119,'BC-03119','2025-05-21','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3120,'BC-03120','2025-05-21','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3121,'BC-03121','2025-05-21','PEACOCK             NEW YORK CITY       NY','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3122,'BC-03122','2025-05-21','Platinum Digital Entertainment Credit','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3123,'BC-03123','2025-05-21','AplPay SP REEF.COM  NEWTON              MA','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3124,'BC-03124','2025-05-22','AplPay CREAM DE LA CTampa               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3125,'BC-03125','2025-05-22','MACYS   .COM 0000001MASON               OH','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3126,'BC-03126','2025-05-22','PAY* ANGI-MAY23     INDIANAPOLIS        IN','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3127,'BC-03127','2025-05-22','PAY* ANGI-MAY23                         IN','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3128,'BC-03128','2025-05-23','AplPay SPORT CLIPS -TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3129,'BC-03129','2025-05-24','PAYPAL *KAMYUU1105  XXXXXX7733          HK','Kamyuu','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3130,'BC-03130','2025-05-25','BT*MYRIAD WOMEN\'S HESOUTH SAN FRANCISCO CA','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3131,'BC-03131','2025-05-27','AplPay JONI\'S PET SATAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3132,'BC-03132','2025-05-27','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3133,'BC-03133','2025-05-29','AplPay FK WESTSHORE TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3134,'BC-03134','2025-05-30','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3135,'BC-03135','2025-05-31','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3136,'BC-03136','2025-05-31','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3137,'BC-03137','2025-06-01','TELADOC 0259        LEWISVILLE          TX','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3138,'BC-03138','2025-06-03','AplPay GREAT EXPLORAST PETERSBURG       FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3139,'BC-03139','2025-06-04','AplPay SPROUTS FARMETampa               FL','SPROUTS FARMERS MARKET','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3140,'BC-03140','2025-06-06','SQSP* INV185094968  NEW YORK            NY','SQUARESPACE','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3141,'BC-03141','2025-06-07','BONFIRE PREMIUM VENDOAKVILLE','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3142,'BC-03142','2025-06-08','AplPay IC* INSTACARTLAKELAND            FL','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3143,'BC-03143','2025-06-09','MACYS MARKETPLACE 00MASON               OH','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3144,'BC-03144','2025-06-09','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3145,'BC-03145','2025-06-11','CHUCK LAGER AMERICA\'TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3146,'BC-03146','2025-06-12','SERENITY HEALS THERAFORT MYERS          FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3147,'BC-03147','2025-06-14','AplPay CREAM DE LA CTampa               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3148,'BC-03148','2025-06-18','AplPay SPORT CLIPS -TAMPA               FL','SPORT CLIPS','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3149,'BC-03149','2025-06-19','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3150,'BC-03150','2025-06-20','AplPay TOUCHTUNES MUSCHAUMBURG          IL','Touch Tunes','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3151,'BC-03151','2025-06-21','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3152,'BC-03152','2025-06-21','PEACOCK             NEW YORK CITY       NY','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3153,'BC-03153','2025-06-21','Platinum Digital Entertainment Credit','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3154,'BC-03154','2025-06-21','WWW.WOODIESWASH.COM TAMPA               FL','WOODIES WASH SHACK','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3155,'BC-03155','2025-06-26','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3156,'BC-03156','2025-06-29','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3157,'BC-03157','2025-07-08','Nathans Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3158,'BC-03158','2025-07-09','AplPay CARTER S #131TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3159,'BC-03159','2025-07-13','SPORT CLIPS - FL111 TAMPA               FL','SPORT CLIPS','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3160,'BC-03160','2025-07-14','TELADOC 0259        LEWISVILLE          TX','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3161,'BC-03161','2025-07-14','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3162,'BC-03162','2025-07-19','TELADOC 0259        LEWISVILLE          TX','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3163,'BC-03163','2025-07-21','DUCKWEED WD INC TAMPA FL 07/21','Duckweed','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3164,'BC-03164','2025-07-21','PEACOCK             NEW YORK CITY       NY','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3165,'BC-03165','2025-07-21','Platinum Digital Entertainment Credit','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3166,'BC-03166','2025-07-31','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3167,'BC-03167','2025-08-06','SQSP* WEBSIT#1931741NEW YORK            NY','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3168,'BC-03168','2025-08-07','AplPay SPORT CLIPS -TAMPA               FL','SPORT CLIPS','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3169,'BC-03169','2025-08-08','SERENITY HEALS THERAFORT MYERS          FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3170,'BC-03170','2025-08-09','AplPay SP SAND SURF TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3171,'BC-03171','2025-08-09','AplPay ZITNIK TRAINSPINELLAS PARK       FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3172,'BC-03172','2025-08-13','GiftHealth*LillyDire833-6144438         OH','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3173,'BC-03173','2025-08-14','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3174,'BC-03174','2025-08-17','AplPay RON JON SURF COCOA BEACH         FL','Ron Jon Surf Shop','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3175,'BC-03175','2025-08-17','AplPay 5600 NORTH HAMELBOURNE           FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3176,'BC-03176','2025-08-21','PEACOCK             NEW YORK CITY       NY','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3177,'BC-03177','2025-08-21','Platinum Digital Entertainment Credit','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3178,'BC-03178','2025-08-22','RON JON SURF SHOP   COCOA BEACH         FL','Ron Jon Surf Shop','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3179,'BC-03179','2025-08-24','SP SAND SURF CO     TAMPA               FL','Sand Surf Co','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3180,'BC-03180','2025-08-24','AplPay SP SAND SURF TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3181,'BC-03181','2025-08-25','THE WOMANS GROUP OF TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3182,'BC-03182','2025-08-25','THE WOMANS GROUP OF TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3183,'BC-03183','2025-08-27','SP SAND SURF CO     TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3184,'BC-03184','2025-08-28','AplPay TOUCHTUNES MUSCHAUMBURG          IL','Touch Tunes','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3185,'BC-03185','2025-08-28','PY *PDQ - SOUTH TAMPTAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3186,'BC-03186','2025-09-02','AplPay JONI\'S PET SATAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3187,'BC-03187','2025-09-03','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3188,'BC-03188','2025-09-12','WALGREENS           TAMPA               FL','Walgreens','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3189,'BC-03189','2025-09-12','AplPay SPORT CLIPS -TAMPA               FL','SPORT CLIPS','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3190,'BC-03190','2025-09-14','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3191,'BC-03191','2025-09-21','Platinum Digital Entertainment Credit','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3192,'BC-03192','2025-09-21','PEACOCK             NEW YORK CITY       NY','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3193,'BC-03193','2025-09-22','REMOTE ONLINE DEPOSIT # 2','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3194,'BC-03194','2025-01-01','','','Amex 4007 (deleted)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3195,'BC-03195','2025-02-03','','','AMEX #4007 (deleted)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3196,'BC-03196','2025-09-05','','','Amex 4007 (deleted)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3197,'BC-03197','2025-11-07','24V 75Ah Lithium Ion Battery - LFP - Opening inventory and value','','Inventory Asset','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3198,'BC-03198','2025-01-08','FEDWIRE CREDIT VIA: BANK OF AMERICA, N.A./XXXXX9593 B/O: 1/JD CAPITAL ADVISORS LLC 3/US/SAINT PETERSBURG X3705 REF: CHASE NYC/CTR/BNF=LITHIUM BATTERY COMPANY IN TL, LLC TAMPA FL XXXX4-800 6 US/AC-XXXXXXXX3316 RFB=XXXXX8276 OBI=LBC EQUITY INVESTMENT IMAD: 0108B6B7HU2RXX5650 TRN: XXXXXX1008 FF','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3199,'BC-03199','2025-01-08','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250106 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX0638159 EED:250108 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX8159 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3200,'BC-03200','2025-01-23','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250122 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX1204033 EED:250123 IND ID:PXXXX4506 IND NAME:STAR ON, NATHAN TRN: XXXXXX4033 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3201,'BC-03201','2025-02-08','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250206 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX0848924 EED:250210 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX8924 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3202,'BC-03202','2025-02-22','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250221 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX6850342 EED:250224 IND ID:PXXXX8790 IND NAME:STAR ON, NATHAN TRN: XXXXXX0342 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3203,'BC-03203','2025-03-07','Online Transfer to CHK ...1215 transaction#: XXXXXXX9780 03/07','CHK ...1215','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3204,'BC-03204','2025-03-08','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250306 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX4195671 EED:250310 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX5671 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3205,'BC-03205','2025-03-21','ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250320 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX8464628 EED:250321 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX4628 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3206,'BC-03206','2025-03-22','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250321 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8020777 EED:250324 IND ID:PXXXX2527 IND NAME:STAR ON, NATHAN TRN: XXXXXX0777 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3207,'BC-03207','2025-03-25','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3208,'BC-03208','2025-04-02','PPY=TAMPA NEUROPSYCHTAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3209,'BC-03209','2025-04-03','NEUROSPA            TAMPA               FL','Neurospa','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3210,'BC-03210','2025-05-23','NEUROSPA            TAMPA               FL','Neurospa','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3211,'BC-03211','2025-05-28','PPY=TAMPA NEUROPSYCHTAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3212,'BC-03212','2025-06-04','AplPay ASHLEY HOMESTTAMPA               FL','Ashley HomeStore','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3213,'BC-03213','2025-06-04','AplPay ASHLEY HOMESTTAMPA               FL','Ashley HomeStore','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3214,'BC-03214','2025-06-11','NEUROSPA            TAMPA               FL','Neurospa','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3215,'BC-03215','2025-06-13','ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250612 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX4324099 EED:250613 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX4099 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3216,'BC-03216','2025-06-30','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3217,'BC-03217','2025-07-01','JEWELERS-MUTUAL-PMNT800-558-6411        WI','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3218,'BC-03218','2025-07-02','MACYS MARKETPLACE 00MASON               OH','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3219,'BC-03219','2025-07-10','AplPay IC* ABC FINE ORLANDO             FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3220,'BC-03220','2025-07-15','713 TAMPA DALE MABRYTAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3221,'BC-03221','2025-07-18','ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250717 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX5723231 EED:250718 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX3231 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3222,'BC-03222','2025-07-21','CSA-GGA-DAM/TRIPINSUSAN DIEGO           CA','C S','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3223,'BC-03223','2025-07-22','GiftHealth*LillyDire833-6144438         OH','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3224,'BC-03224','2025-07-29','Draw #15','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3225,'BC-03225','2025-07-31','FLBLUE* ACA         JACKSONVILLE        FL','florida Blue','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3226,'BC-03226','2025-08-08','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250806 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX6803632 EED:250808 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX3632 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3227,'BC-03227','2025-08-16','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3228,'BC-03228','2025-08-16','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3229,'BC-03229','2025-08-19','ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250818 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX8723395 EED:250819 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX3395 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3230,'BC-03230','2025-08-23','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250822 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8921695 EED:250825 IND ID:PXXXX7889 IND NAME:STAR ON, NATHAN TRN: XXXXXX1695 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3231,'BC-03231','2025-08-29','Draw #17','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3232,'BC-03232','2025-09-23','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250922 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX1906027 EED:250923 IND ID:PXXXX6046 IND NAME:STAR ON, NATHAN TRN: XXXXXX6027 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3233,'BC-03233','2025-02-13','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX6914437 EED:250213 IND ID: IND NAME:Lithium Battery Co LBC Shareholder Transfer (NS) TRN: XXXXXX4437 TC','o','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3234,'BC-03234','2025-06-06','Online Transfer from CHK ...1215 transaction#: XXXXXXX4918','o','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3235,'BC-03235','2025-09-22','REMOTE ONLINE DEPOSIT # 2','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3236,'BC-03236','2025-01-15','LOAN FUNDS','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3237,'BC-03237','2025-09-08','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX2799298 EED:250908 IND ID: IND NAME:LBC Main (#2560) Bayfro nt Capital (Transaction Fees) TRN: XXXXXX9298 TC','o','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3238,'BC-03238','2025-09-09','ORIG CO NAME:JD CAPITAL ADVIS ORIG ID:SXXXXX7665 DESC DATE:250909 CO ENTRY DESCR:SENDER SEC:CTX TRACE#:XXXXXXXX6471376 EED:250909 IND ID:813722100 IND NAME:0000 LITHIUM BATTERY TRN: XXXXXX1376 TC','JD Capital Advisors','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3239,'BC-03239','2025-09-10','ORIG CO NAME:JD CAPITAL ADVIS ORIG ID:SXXXXX7665 DESC DATE:250910 CO ENTRY DESCR:SENDER SEC:CTX TRACE#:XXXXXXXX1567022 EED:250910 IND ID:813990834 IND NAME:0000 LITHIUM BATTERY TRN: XXXXXX7022 TC','JD Capital Advisors','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3240,'BC-03240','2025-10-15','SENDER JD CAPITAL ADVIS IDS941687665, ID: 820696952','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `journal_entries` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `journal_entries_backup_20250111`
--

DROP TABLE IF EXISTS `journal_entries_backup_20250111`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `journal_entries_backup_20250111` (
  `id` int(10) unsigned NOT NULL DEFAULT 0,
  `entry_number` varchar(50) NOT NULL,
  `entry_date` date NOT NULL,
  `description` text DEFAULT NULL,
  `name` varchar(200) DEFAULT NULL,
  `split_account` varchar(200) DEFAULT NULL,
  `department` varchar(100) DEFAULT NULL,
  `location` varchar(100) DEFAULT NULL,
  `reference` varchar(100) DEFAULT NULL,
  `status` enum('draft','posted','reversed') DEFAULT 'draft',
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `reference_type` varchar(50) DEFAULT NULL,
  `reference_id` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `journal_entries_backup_20250111`
--

LOCK TABLES `journal_entries_backup_20250111` WRITE;
/*!40000 ALTER TABLE `journal_entries_backup_20250111` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `journal_entries_backup_20250111` VALUES
(1,'JE-00001','2025-10-30','test',NULL,NULL,NULL,NULL,'','posted',1,'2025-10-30 17:15:10','2025-10-30 17:15:10',NULL,NULL),
(2,'JE-00002','2025-10-30','inject',NULL,NULL,NULL,NULL,'','posted',1,'2025-10-30 17:16:25','2025-10-30 17:16:25',NULL,NULL),
(3,'','2025-10-31','Invoice #INV-20251031-8225 created',NULL,NULL,NULL,NULL,NULL,'posted',1,'2025-10-31 23:41:02','2025-10-31 23:41:02','invoice',6),
(7,'JE-00003','2025-10-31','Payment received for Invoice #INV-20251031-7461',NULL,NULL,NULL,NULL,NULL,'posted',1,'2025-10-31 23:55:56','2025-10-31 23:55:56','payment',13),
(8,'JE-00004','2025-10-31','Invoice #INV-20251031-3380 created',NULL,NULL,NULL,NULL,NULL,'posted',1,'2025-10-31 23:57:07','2025-10-31 23:57:07','invoice',8),
(9,'JE-00005','2025-10-31','Payment received for Invoice #INV-20251031-3380',NULL,NULL,NULL,NULL,NULL,'posted',1,'2025-10-31 23:57:21','2025-10-31 23:57:21','payment',14),
(10,'JE-2020-OPEN','2020-01-01','Opening Balance Sheet - Company Formation',NULL,NULL,NULL,NULL,NULL,'posted',1,'2025-11-04 20:19:33','2025-11-04 20:19:33','manual',NULL),
(11,'OB-BANK-1-20251105063753','2025-11-05','Opening balance for bank account #1',NULL,NULL,NULL,NULL,'Opening Balance','posted',1,'2025-11-05 11:37:53','2025-11-05 11:37:53',NULL,NULL),
(12,'OB-BANK-2-20251105063857','2025-11-05','Opening balance for bank account #2',NULL,NULL,NULL,NULL,'Opening Balance','posted',1,'2025-11-05 11:38:57','2025-11-05 11:38:57',NULL,NULL),
(13,'OB-BANK-3-20251105064401','2025-11-05','Opening balance for bank account #3',NULL,NULL,NULL,NULL,'Opening Balance','posted',1,'2025-11-05 11:44:01','2025-11-05 11:44:01',NULL,NULL);
/*!40000 ALTER TABLE `journal_entries_backup_20250111` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `journal_entry_lines`
--

DROP TABLE IF EXISTS `journal_entry_lines`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `journal_entry_lines` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entry_id` int(10) unsigned NOT NULL,
  `account_id` int(10) unsigned NOT NULL,
  `debit` decimal(15,2) DEFAULT 0.00,
  `credit` decimal(15,2) DEFAULT 0.00,
  `description` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `entry_id` (`entry_id`),
  KEY `account_id` (`account_id`),
  CONSTRAINT `journal_entry_lines_ibfk_1` FOREIGN KEY (`entry_id`) REFERENCES `journal_entries` (`id`) ON DELETE CASCADE,
  CONSTRAINT `journal_entry_lines_ibfk_2` FOREIGN KEY (`account_id`) REFERENCES `chart_of_accounts` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4005 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `journal_entry_lines`
--

LOCK TABLES `journal_entry_lines` WRITE;
/*!40000 ALTER TABLE `journal_entry_lines` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `journal_entry_lines` VALUES
(809,645,6,0.00,387.00,'ORIG CO NAME:SBA EIDL LOAN ORIG ID:XXXXXX0118 DESC DATE:241231 CO ENTRY DESCR:PAYMENT SEC:CCD TRACE#:XXXXXXXX2211203 EED:250102 IND ID:0000 IND NAME:NATHAN STAR ON XXXXXX7203 ACH TRANSACTION TRN: XXXXXX1203 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(810,645,44,387.00,0.00,'ORIG CO NAME:SBA EIDL LOAN ORIG ID:XXXXXX0118 DESC DATE:241231 CO ENTRY DESCR:PAYMENT SEC:CCD TRACE#:XXXXXXXX2211203 EED:250102 IND ID:0000 IND NAME:NATHAN STAR ON XXXXXX7203 ACH TRANSACTION TRN: XXXXXX1203 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(811,646,6,0.00,97.50,'SERVICE CHARGES FOR THE MONTH OF JUNE','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(812,647,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(813,648,6,0.00,50.00,'AUTOPAY PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(814,649,6,0.00,572.58,'Tax Payment for Period: 12/28/2024-12/31/2024','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(815,650,6,0.00,5000.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(816,650,27,5000.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(817,651,6,0.00,27.78,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250104 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX2909739 EED:250106 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0104PPZ1KM TRN: XXXXXX9739 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(818,652,6,0.00,217.66,'ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250107 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX8974735 EED:250107 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX4735 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(819,653,6,0.00,8503.95,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(820,653,26,8503.95,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(821,654,6,0.00,893.72,'ORIG CO NAME:ALLY ORIG ID:XXXXXX2002 DESC DATE:250108 CO ENTRY DESCR:ALLY PAYMTSEC:CCD TRACE#:XXXXXXXX7292718 EED:250108 IND ID:XXXXXXXX1804 IND NAME:LITHIUM BA TTERY CO TRN: XXXXXX2718 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(822,654,47,893.72,0.00,'ORIG CO NAME:ALLY ORIG ID:XXXXXX2002 DESC DATE:250108 CO ENTRY DESCR:ALLY PAYMTSEC:CCD TRACE#:XXXXXXXX7292718 EED:250108 IND ID:XXXXXXXX1804 IND NAME:LITHIUM BA TTERY CO TRN: XXXXXX2718 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(823,655,6,0.00,180.00,'PROGRESSIVE *INSURANC XXX-XXX-4737 OH 01/08','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(824,656,6,465.88,0.00,'ORIG CO NAME:SolarStik 9905 ORIG ID:XXXXXX4537 DESC DATE: CO ENTRY DESCR:Payments SEC:CCD TRACE#:XXXXXXXX7342490 EED:250108 IND ID: IND NAME:Lithium Battery Co Int REF*1414(SHIPPING)\\ TRN: XXXXXX2490 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(825,657,6,11000.00,0.00,'FEDWIRE CREDIT VIA: BANK OF AMERICA, N.A./XXXXX9593 B/O: 1/JD CAPITAL ADVISORS LLC 3/US/SAINT PETERSBURG X3705 REF: CHASE NYC/CTR/BNF=LITHIUM BATTERY COMPANY IN TL, LLC TAMPA FL XXXX4-800 6 US/AC-XXXXXXXX3316 RFB=XXXXX8276 OBI=LBC EQUITY INVESTMENT IMAD: 0108B6B7HU2RXX5650 TRN: XXXXXX1008 FF','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(826,658,6,0.00,276.65,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250106 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX0638159 EED:250108 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX8159 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(827,659,6,0.00,32.38,'FiverrInc New York NY 01/10','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(828,660,6,0.00,20.00,'PROPERTYREC.COM XXX-XXX-1102 NM 01/10','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(829,661,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(830,662,6,0.00,2040.00,'Zelle payment to Nate Powell JPM99aui9bi6','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(831,663,6,0.00,1580.00,'Zelle payment to Nick Powell JPM99aui9620','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(832,664,6,0.00,381.43,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC1414 IMAD: 0110MMQFMP2NXX8286 TRN: XXXXXX5010 ES 0 1/10','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(833,665,6,0.00,10.00,'PIN CHASERS VETERAN- RE clover.com FL 01/11','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(834,666,6,1658.00,0.00,'Online Transfer from CHK ...7932 transaction#: XXXXXXX5378','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(835,667,6,0.00,1500.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(836,667,26,1500.00,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(837,668,6,0.00,70.85,'FiverrInc XXX-XXX8280 NY 01/13','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(838,669,6,0.00,1500.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(839,669,27,1500.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(840,670,6,0.00,1.00,'SHOPIFY* XXXXX4094 HTTPSSHOPIFY. IL 01/13','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(841,671,6,0.00,3319.68,'Online Payment XXXXXXX4585 To HMG 4615 01/13','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(842,672,6,11052.98,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(843,672,14,0.00,11052.98,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(844,673,6,0.00,330.48,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(845,674,6,0.00,1825.92,'Pay Period: 01/01/2025-01/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(846,674,37,1825.92,0.00,'Pay Period: 01/01/2025-01/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(847,675,6,0.00,384.80,'Pay Period: 01/01/2025-01/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(848,675,37,384.80,0.00,'Pay Period: 01/01/2025-01/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(849,676,6,0.00,655.58,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(850,677,6,0.00,175.00,'ORIG CO NAME:PAYCARGO ORIG ID:XXXXXX5101 DESC DATE: CO ENTRY DESCR:ACHPAYMENTSEC:CCD TRACE#:XXXXXXXX4180456 EED:250115 IND ID:BATCH XXX1074 IND NAME:LITHIUM BAT TERY COMPAN NACHA 100A TRN: XXXXXX0456 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(851,678,6,0.00,6.00,'ORIG CO NAME:Rocket Money ORIG ID:1800948598 DESC DATE:       CO ENTRY DESCR:Premium   SEC:CCD    TRACE#:091000018457040 EED:220915   IND ID:ST-U5U8S2J1C9U2              IND NAME:ROCKET MONEY INC TRN: 2588457040TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(852,679,6,0.00,2000.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(853,679,27,2000.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(854,680,6,0.00,69.00,'WOO-XXXXXX9521 WOOCOMMERCE.C CA 01/15','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(855,681,6,20000.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX4802658 EED:250116 IND ID: IND NAME:Lithium Battery Co Tran saction Expense Reimbursement TRN: XXXXXX2658 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(856,682,6,0.00,25000.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(857,682,27,25000.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(858,683,6,69.00,0.00,'WOO-XXXXXX9521 SAN FRANCISCO CA 01/16','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(859,684,6,0.00,34.65,'FiverrInc XXX-XXX8280 NY 01/16','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(860,685,6,0.00,1643.49,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC1418 IMAD: 0116MMQFMP2KXX0990 TRN: XXXXXX5016 ES 0 1/16','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(861,686,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(862,687,6,10000.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX9468674 EED:250117 IND ID: IND NAME:Lithium Battery Co Tran saction Expense Reimbursement TRN: XXXXXX8674 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(863,688,6,0.00,5242.70,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(864,688,27,5242.70,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(865,689,6,0.00,4043.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(866,690,6,0.00,70.85,'FiverrInc XXX-XXX8280 NY 01/21','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(867,691,6,0.00,4.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250118 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX1856716 EED:250121 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0118PPZL8B TRN: XXXXXX6716 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(868,692,6,0.00,7.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250122 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX8499699 EED:250122 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0122PPZ6ZX TRN: XXXXXX9699 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(869,693,6,2570.41,0.00,'REMOTE ONLINE DEPOSIT # 1','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(870,694,6,0.00,318.82,'PROGRESSIVE INS XXX-XXX-4737 OH 01/23','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(871,695,6,1500.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX0317625 EED:250123 IND ID: IND NAME:Lithium Battery Co Supp lemental OWC TRN: XXXXXX7625 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(872,696,6,0.00,355.53,'ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250123 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX3867486 EED:250123 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX7486 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(873,697,6,0.00,1139.49,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250122 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX1204033 EED:250123 IND ID:PXXXX4506 IND NAME:STAR ON, NATHAN TRN: XXXXXX4033 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(874,698,6,0.00,2000.00,'Online ACH Payment XXXXXXX3042 To TBFTZ (_#########4153)\nTampa Bay Port Authority - FTZ','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(875,699,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(876,700,6,3517.83,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX5844380 EED:250124 IND ID: IND NAME:Lithium Battery Co LBC Payroll TRN: XXXXXX4380 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(877,701,6,19457.20,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX9370005 EED:250124 IND ID: IND NAME:Lithium Battery Co FTZ No. 79 Application TRN: XXXXXX0005 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(878,702,6,0.00,2310.00,'Zelle payment to Nick Powell JPM99avvedsf','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(879,703,6,0.00,16457.20,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: JPMORGAN CHASE BANK N A HONG KONG HONG KONG XX9077 HK REF: LBC PO1429 AND LBC PO1425 INVOICE PAYMENT TRN: XXXXXX5024 ES 0 1/24','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(880,704,6,33000.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX5941745 EED:250127 IND ID: IND NAME:Lithium Battery Co Insu rance Policy Downpayment TRN: XXXXXX1745 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(881,705,6,3253.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX5941750 EED:250127 IND ID: IND NAME:Lithium Battery Co Tran saction-Related Legal & OWC TRN: XXXXXX1750 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(882,706,6,13941.25,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX5941748 EED:250127 IND ID: IND NAME:Lithium Battery Co Leas ehold Improvements (Facility Fl ooring) TRN: XXXXXX1748 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(883,707,6,0.00,251.25,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX8692756 EED:250127 IND ID:ST-W8D0B6O0E6V3 IND NAME:N ATHAN STARON TRN: XXXXXX2756 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(884,708,6,0.00,31050.00,'Online Transfer to CHK ...7932 transaction#: XXXXXXX9694 01/28','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(885,709,6,0.00,3776.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(886,709,27,3776.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(887,710,6,0.00,913.50,'ORIG CO NAME:FIRST INSURANCE ORIG ID:XXXXXX7365 DESC DATE: CO ENTRY DESCR:INSURANCE SEC:CCD TRACE#:XXXXXXXX0745263 EED:250128 IND ID:900 -XXXXX7965 IND NAME:Lith ium Battery Compan PBS ACH DEBIT TRN: XXXXXX5263 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(888,711,6,0.00,1665.27,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(889,712,6,0.00,1456.31,'ORIG CO NAME:MIDLAND NATIONAL ORIG ID:XXXXXX4570 DESC DATE:250127 CO ENTRY DESCR:INSURANCE SEC:PPD TRACE#:XXXXXXXX9297909 EED:250129 IND ID: IND NAME:LITHIUM BA TTERY COMP TRN: XXXXXX7909 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(890,713,6,0.00,126.00,'Tax Payment for Period: 01/01/2024-12/31/2024','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(891,714,6,0.00,1825.92,'Pay Period: 01/16/2025-01/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(892,714,37,1825.92,0.00,'Pay Period: 01/16/2025-01/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(893,715,6,0.00,384.79,'Pay Period: 01/16/2025-01/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(894,715,37,384.79,0.00,'Pay Period: 01/16/2025-01/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(895,716,6,0.00,655.60,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(896,717,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(897,718,6,0.00,100.00,'SERVICE CHARGES FOR THE MONTH OF JANUARY','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(898,719,6,0.00,27.78,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250203 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX9663387 EED:250203 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0203PPZ82Y TRN: XXXXXX3387 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(899,720,6,0.00,199.66,'Online RealTime payroll payment XXXXXXX1329 Payment Id REFERENCE#: XXXXXX1329RX to 4900','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(900,721,6,0.00,1207.83,'Online RealTime payroll payment XXXXXXX1403 Payment Id REFERENCE#: XXXXXX1403RX to 4900','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(901,722,6,6159.90,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(902,722,14,0.00,6159.90,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(903,723,6,0.00,61.60,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(904,724,6,0.00,25000.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(905,724,27,25000.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(906,725,6,0.00,388.50,'ONLINE DOMESTIC WIRE TRANSFER VIA: REGIONS BK/XXXXX5690 A/C: CARGO BROKERS INTL ALANTA GA X0320 US REF: BXXXX2349/A XXXX5781/BNF/LITBATTPA/TIME/08:02 IMAD: 0204 MMQFMP2KXX5383 TRN: XXXXXX5035 ES 02/04','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(907,726,6,0.00,310.66,'ONLINE DOMESTIC WIRE TRANSFER VIA: REGIONS BK/XXXXX5690 A/C: CARGO BROKERS INTL ALANTA GA X0320 US REF: BXXXX2349 XXXX5780/BNF/LITBATTPA/TIME/08:02 IMAD: 0204MM QFMP2NXX5595 TRN: XXXXXX5035 ES 02/04','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(908,727,6,15000.00,0.00,'Online Transfer to CHK ...2560 transaction#: XXXXXXX4735 02/04','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(909,728,6,6050.01,0.00,'Online Transfer to CHK ...2560 transaction#: XXXXXXX1152 02/05','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(910,729,6,0.00,6050.01,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(911,729,27,6050.01,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(912,730,6,6999.99,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(913,730,14,0.00,6999.99,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(914,731,6,0.00,209.30,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(915,732,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(916,733,6,0.00,10000.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(917,733,27,10000.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(918,734,6,9999.99,0.00,'Online Transfer to CHK ...2560 transaction#: XXXXXXX8062 02/07','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(919,735,6,0.00,276.65,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250206 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX0848924 EED:250210 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX8924 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(920,736,6,0.00,20.00,'PROPERTYREC.COM XXX-XXX-1102 NM 02/10','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(921,737,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX5600 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX4395459 EED:250210 IND ID:ST-J3E7T7V2W0F2 IND NAME:N ATHAN STARON TRN: XXXXXX5459 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(922,738,6,0.00,696.90,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC1419 IMAD: 0210MMQFMP2LXX8055 TRN: XXXXXX5041 ES 0 2/10','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(923,739,6,0.00,20.00,'Zelle payment to Michael P JPM99axve8gl','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(924,740,6,0.00,60.00,'Zelle payment to Anthony A JPM99axuvfzk','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(925,741,6,0.00,4175.40,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: JPMORGAN CHASE BANK N A HONG KONG HONG KONG XX9077 HK REF: LBC1434 INVOICE PAYMENT TRN: XXXXXX5042 ES 02/11','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(926,742,6,0.00,39.00,'SHOPIFY* XXXXX5376 SHOPIFY.COM IL 02/12','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(927,743,6,0.00,12500.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(928,743,27,12500.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(929,744,6,222.99,0.00,'ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250213 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9167604 EED:250213 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX7604 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(930,745,6,134.95,0.00,'ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250213 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9167603 EED:250213 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX7603 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(931,746,6,0.00,15000.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT (N.S.)/BNF/LITHIUM BATTERY CO IMAD: 021 3MMQFMP2KXX6076 TRN: XXXXXX5044 ES 02/13','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(932,746,45,15000.00,0.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT (N.S.)/BNF/LITHIUM BATTERY CO IMAD: 021 3MMQFMP2KXX6076 TRN: XXXXXX5044 ES 02/13','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(933,747,6,15000.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX6914437 EED:250213 IND ID: IND NAME:Lithium Battery Co LBC Shareholder Transfer (NS) TRN: XXXXXX4437 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(934,747,61,0.00,15000.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX6914437 EED:250213 IND ID: IND NAME:Lithium Battery Co LBC Shareholder Transfer (NS) TRN: XXXXXX4437 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(935,748,6,16802.39,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX0988032 EED:250213 IND ID: IND NAME:Lithium Battery Co LBC OWC & NS Temporary Advance TRN: XXXXXX8032 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(936,749,6,0.00,1825.93,'Pay Period: 02/01/2025-02/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(937,749,37,1825.93,0.00,'Pay Period: 02/01/2025-02/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(938,750,6,0.00,384.79,'Pay Period: 02/01/2025-02/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(939,750,37,384.79,0.00,'Pay Period: 02/01/2025-02/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(940,751,6,0.00,655.58,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(941,752,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(942,753,6,0.00,2.79,'FIORI\'S PIZZA XXX-XXX7788 PA 02/14','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(943,754,6,0.00,44.50,'FIORI\'S PIZZA XXX-XXX7788 PA 02/14','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(944,755,6,22400.91,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX5387968 EED:250218 IND ID: IND NAME:Lithium Battery Co 5201 Faci lity Insurance Payment (2/ 15/25) TRN: XXXXXX7968 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(945,756,6,0.00,680.00,'Online RealTime payroll payment XXXXXXX6762 Payment Id REFERENCE#: XXXXXX6762RX to 1148','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(946,757,6,0.00,6200.29,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(947,757,27,6200.29,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(948,758,6,0.00,4.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250218 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX0388234 EED:250218 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0218PPZ332 TRN: XXXXXX8234 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(949,759,6,0.00,6.00,'ORIG CO NAME:Rocket Money ORIG ID:XXXXXX5600 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX1818945 EED:250219 IND ID:ST-F1E2A7S1G4L3 IND NAME:ROCKET MONEY INC TRN: XXXXXX8945 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(950,760,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(951,761,6,0.00,7.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250221 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3971463 EED:250221 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0221PPZ2AZ TRN: XXXXXX1463 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(952,762,6,12500.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX2171047 EED:250221 IND ID: IND NAME:Lithium Battery Co Jan 2025 Payroll TRN: XXXXXX1047 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(953,763,6,0.00,387.00,'ORIG CO NAME:SBA EIDL LOAN ORIG ID:XXXXXX0118 DESC DATE:250221 CO ENTRY DESCR:PAYMENT SEC:CCD TRACE#:XXXXXXXX8546940 EED:250224 IND ID:0000 IND NAME:NATHAN STAR ON XXXXXX7203 ACH TRANSACTION TRN: XXXXXX6940 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(954,763,44,387.00,0.00,'ORIG CO NAME:SBA EIDL LOAN ORIG ID:XXXXXX0118 DESC DATE:250221 CO ENTRY DESCR:PAYMENT SEC:CCD TRACE#:XXXXXXXX8546940 EED:250224 IND ID:0000 IND NAME:NATHAN STAR ON XXXXXX7203 ACH TRANSACTION TRN: XXXXXX6940 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(955,764,6,0.00,25.00,'Zelle payment to Joey M JPM99az1nm4m','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(956,765,6,0.00,1139.49,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250221 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX6850342 EED:250224 IND ID:PXXXX8790 IND NAME:STAR ON, NATHAN TRN: XXXXXX0342 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(957,766,6,0.00,123.00,'NON-CHASE ATM WITHDRAW XX3005 02/XXX1225 RAC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(958,767,6,0.00,343.08,'PROGRESSIVE INS XXX-XXX-4737 OH 02/23','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(959,768,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX9801081 EED:250224 IND ID:ST-E2O0Y0X4O6B5 IND NAME:N ATHAN STARON TRN: XXXXXX1081 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(960,769,6,0.00,355.53,'ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250224 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX2688720 EED:250224 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX8720 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(961,770,6,0.00,1.95,'ORIG CO NAME:MENESKO, UAB ORIG ID:770510487 C DESC DATE: CO ENTRY DESCR:IAT PAYPALSEC:WEB TRACE#:XXXXXXXX3977000 EED:250226 IND ID:XXXXXXXX96150 IND NAME:LITHIUM BATTERY COMPAN IATCVXX0226PPZQB2 TRN: XXXXXX7000 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(962,771,6,0.00,22415.91,'ORIG CO NAME:FIRST INSURANCE ORIG ID:XXXXXX7365 DESC DATE: CO ENTRY DESCR:INSURANCE SEC:CCD TRACE#:XXXXXXXX2310094 EED:250226 IND ID:900 -XXXXX2748 IND NAME:Lith ium Battery Compan PBS ACH DEBIT TRN: XXXXXX0094 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(963,772,6,6609.98,0.00,'Online Transfer to CHK ...2560 transaction#: XXXXXXX3099 02/26','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(964,773,6,0.00,913.50,'ORIG CO NAME:FIRST INSURANCE ORIG ID:XXXXXX7365 DESC DATE: CO ENTRY DESCR:INSURANCE SEC:CCD TRACE#:XXXXXXXX9107830 EED:250227 IND ID:900 -XXXXX7965 IND NAME:Lith ium Battery Compan PBS ACH DEBIT TRN: XXXXXX7830 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(965,774,6,0.00,316.81,'ONLINE DOMESTIC WIRE TRANSFER VIA: HUDSON VALLEY CU/XXXXX9363 A/C: KEVIN EELLS POUGHKEEPSIE NY X2602 US REF: EXPENSE REIMBURSEMENT (1.15.25-2.26.25)/BNF/EXPENSE REIMBURSEMENT (1.1 5.25-2.26.25) IMAD: 0227MMQFMP2LXX9785 TRN: XXXXXX5058 ES 02/27','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(966,775,6,0.00,1825.93,'Pay Period: 02/16/2025-02/28/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(967,775,37,1825.93,0.00,'Pay Period: 02/16/2025-02/28/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(968,776,6,0.00,384.80,'Pay Period: 02/16/2025-02/28/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(969,776,37,384.80,0.00,'Pay Period: 02/16/2025-02/28/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(970,777,6,0.00,600.55,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(971,778,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(972,779,6,0.00,97.50,'SERVICE CHARGES FOR THE MONTH OF FEBRUARY','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(973,780,6,15000.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX3767808 EED:250303 IND ID: IND NAME:Lithium Battery Co LBC Share holder Transfer (NS) TRN: XXXXXX7808 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(974,781,6,3774.00,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(975,782,6,0.00,112.84,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(976,783,6,0.00,15000.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT/BNF/LITHIUM BATTERY CO IMAD: 0304MMQFMP 2NXX2800 TRN: XXXXXX5063 ES 03/04','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(977,783,45,15000.00,0.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT/BNF/LITHIUM BATTERY CO IMAD: 0304MMQFMP 2NXX2800 TRN: XXXXXX5063 ES 03/04','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(978,784,6,0.00,27.78,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250305 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3119939 EED:250305 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0305PPZ3YS TRN: XXXXXX9939 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(979,785,6,0.00,82151.33,'ONLINE DOMESTIC WIRE TRANSFER VIA: TREAS NYC/XXXXX0004 A/C: SMALL BUSINESS ADMINISTRATION DENVER CO X0202 US REF: LITHIUM BATTERY COMPANY (NATHAN A STARON) EIDL LOAN: XXXXXX7203/BNF/LI THIUM BATTERY COMPANY (NATHAN A STA RON) EIDL LOAN: XXXXXX7203 IMAD: 0306MMQFMP2MXX4558 TRN: XXXXXX5065 ES 03/06','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(980,785,44,82151.33,0.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: TREAS NYC/XXXXX0004 A/C: SMALL BUSINESS ADMINISTRATION DENVER CO X0202 US REF: LITHIUM BATTERY COMPANY (NATHAN A STARON) EIDL LOAN: XXXXXX7203/BNF/LI THIUM BATTERY COMPANY (NATHAN A STA RON) EIDL LOAN: XXXXXX7203 IMAD: 0306MMQFMP2MXX4558 TRN: XXXXXX5065 ES 03/06','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(981,786,6,0.00,5.53,'MCDONALD\'S-STORE 367 HONG KONG 03/07 HK Dollar 43.00 X 0.XXX6047 (EXCHG RTE)','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(982,787,6,0.00,0.16,'FOREIGN EXCHANGE RATE ADJUSTMENT FEE 03/07MCDONALD\'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(983,788,6,0.00,260.67,'Loan Fees','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(984,788,44,260.67,0.00,'Loan Fees','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(985,789,6,75000.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX5080527 EED:250306 IND ID: IND NAME:Lithium Battery Co Sharehold er Transfer (NS) TRN: XXXXXX0527 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(986,790,6,1270.59,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(987,790,14,0.00,1270.59,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(988,791,6,0.00,37.99,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(989,792,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(990,793,6,0.00,2500.00,'Online Transfer to CHK ...1215 transaction#: XXXXXXX9780 03/07','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(991,794,6,0.00,276.65,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250306 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX4195671 EED:250310 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX5671 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(992,795,6,0.00,20.00,'PROPERTYREC.COM XXX-XXX-1102 NM 03/10','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(993,796,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX7461470 EED:250310 IND ID:ST-U1E6E1E5X8B7 IND NAME:N ATHAN STARON TRN: XXXXXX1470 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(994,797,6,3500.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX7495169 EED:250310 IND ID: IND NAME:Lithium Battery Co OWC TRN: XXXXXX5169TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(995,798,6,0.00,2896.69,'Online Transfer from CHK ...2560 transaction#: XXXXXXX2334','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(996,799,6,0.00,639.60,'Online Transfer from CHK ...2560 transaction#: XXXXXXX6248','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(997,800,6,1531.98,0.00,'Online Transfer to CHK ...2560 transaction#: XXXXXXX6587 03/12','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(998,801,6,6250.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX4239121 EED:250313 IND ID: IND NAME:Lithium Battery Co Consultin g Retainer (3.1.25-3.15.25 ) TRN: XXXXXX9121 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(999,802,6,0.00,384.79,'Pay Period: 03/01/2025-03/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1000,802,37,384.79,0.00,'Pay Period: 03/01/2025-03/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1001,803,6,0.00,1825.92,'Pay Period: 03/01/2025-03/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1002,803,37,1825.92,0.00,'Pay Period: 03/01/2025-03/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1003,804,6,0.00,584.10,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1004,805,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1005,806,6,0.00,39.00,'SHOPIFY* XXXXX6542 SHOPIFY.COM IL 03/14','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1006,807,6,3266.98,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1007,807,8,0.00,3266.98,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1008,808,6,0.00,2783.35,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1009,808,27,2783.35,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1010,809,6,0.00,6.00,'ORIG CO NAME:Rocket Money ORIG ID:XXXXXX5600 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX6388709 EED:250317 IND ID:ST-P5P6D6K7Y0O7 IND NAME:ROCKET MONEY INC TRN: XXXXXX8709 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1011,810,6,0.00,696.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX4707','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1012,811,6,0.00,4.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250318 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX9655748 EED:250318 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0318PPZPYG TRN: XXXXXX5748 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1013,812,6,0.00,2300.00,'ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250319 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX6607583 EED:250319 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX7583 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1014,813,6,0.00,3470.80,'Online Payment XXXXXXX8494 To HMG 4615 03/20','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1015,814,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1016,815,6,0.00,3533.14,'ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250320 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX8464628 EED:250321 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX4628 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1017,816,6,0.00,1139.49,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250321 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8020777 EED:250324 IND ID:PXXXX2527 IND NAME:STAR ON, NATHAN TRN: XXXXXX0777 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1018,817,6,0.00,343.08,'PROGRESSIVE INS XXX-XXX-4737 OH 03/23','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1019,818,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX2649555 EED:250324 IND ID:ST-I9N4B9F4Y0P7 IND NAME:N ATHAN STARON TRN: XXXXXX9555 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1020,819,6,0.00,7.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250323 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3067999 EED:250324 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0323PPZOZV TRN: XXXXXX7999 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1021,820,6,355.53,0.00,'ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250324 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9924186 EED:250324 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX4186 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1022,821,6,355.53,0.00,'ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250324 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9924183 EED:250324 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX4183 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1023,822,6,355.53,0.00,'ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250324 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9924182 EED:250324 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX4182 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1024,823,6,355.53,0.00,'ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250324 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9924185 EED:250324 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX4185 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1025,824,6,138.84,0.00,'ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250324 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9924184 EED:250324 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX4184 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1026,825,6,355.53,0.00,'ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250324 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9924181 EED:250324 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX4181 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1027,826,6,17.94,0.00,'ORIG CO NAME:eBay Com7LPMP2B9 ORIG ID:XXXXXX6000 DESC DATE:250324 CO ENTRY DESCR:PAYMENTS SEC:CCD TRACE#:XXXXXXXX3559451 EED:250324 IND ID:0 FYXGKQQBWXSP68 IND N AME:Nathan Staron NTE*ZZZ*PXXXXXX0026\\ TRN: XXXXXX9451 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1028,827,6,6250.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX1842096 EED:250324 IND ID: IND NAME:Lithium Battery Co Consultin g Retainer (3.16.25-3.31.2 5) TRN: XXXXXX2096 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1029,828,6,52.00,0.00,'REMOTE ONLINE DEPOSIT # 1','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1030,829,6,0.00,913.50,'ORIG CO NAME:FIRST INSURANCE ORIG ID:XXXXXX7365 DESC DATE: CO ENTRY DESCR:INSURANCE SEC:CCD TRACE#:XXXXXXXX3564382 EED:250327 IND ID:900 -XXXXX7965 IND NAME:Lith ium Battery Compan PBS ACH DEBIT TRN: XXXXXX4382 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1031,830,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1032,831,6,0.00,1825.92,'Pay Period: 03/16/2025-03/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1033,831,37,1825.92,0.00,'Pay Period: 03/16/2025-03/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1034,832,6,0.00,384.80,'Pay Period: 03/16/2025-03/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1035,832,37,384.80,0.00,'Pay Period: 03/16/2025-03/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1036,833,6,0.00,584.08,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1037,834,6,19600.28,0.00,'LBC#MAIN Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1038,835,6,0.00,130.87,'SERVICE CHARGES FOR THE MONTH OF MARCH','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1039,836,6,0.00,8007.36,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1040,836,27,8007.36,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1041,837,6,0.00,11592.92,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1042,838,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1043,839,6,0.00,7083.01,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1044,840,6,0.00,27.78,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250404 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3454971 EED:250404 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0404PPZ236 TRN: XXXXXX4971 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1045,841,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX2335947 EED:250407 IND ID:ST-Y1C4A1G7Q5P3 IND NAME:N ATHAN STARON TRN: XXXXXX5947 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1046,842,6,20220.23,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX6514408 EED:250408 IND ID: IND NAME:LBC Main (#2560) LBC Sh areholder Transfer (NS) TRN: XXXXXX4408 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1047,843,6,6250.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX1969490 EED:250408 IND ID: IND NAME:LBC Main (#2560) Consul ting Retainer (4.1.25-4.15.25 ) TRN: XXXXXX9490 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1048,844,6,0.00,20220.23,'ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT/BNF/LITHIUM BATTERY CO IMAD: 0408MMQFMP 2KXX1400 TRN: XXXXXX5098 ES 04/08','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1049,844,45,20220.23,0.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT/BNF/LITHIUM BATTERY CO IMAD: 0408MMQFMP 2KXX1400 TRN: XXXXXX5098 ES 04/08','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1050,845,6,0.00,276.65,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250406 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX1677193 EED:250408 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX7193 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1051,846,6,0.00,5000.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1052,846,27,5000.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1053,847,6,1665.84,0.00,'Online Transfer to CHK ...2560 transaction#: XXXXXXX0314 04/09','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1054,848,6,20750.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX3023021 EED:250409 IND ID: IND NAME:LBC Main (#2560) OWC - SOFWEEK Table TRN: XXXXXX3021 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1055,849,6,0.00,20.00,'PROPERTYREC.COM XXX-XXX-1102 NM 04/10','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1056,850,6,0.00,7083.01,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1057,851,6,0.00,13631.05,'Online Transfer from CHK ...2560 transaction#: XXXXXXX4037','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1058,852,6,6250.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX1191411 EED:250410 IND ID: IND NAME:LBC Main (#2560) Consul ting Retainer (Adv: 4.16.25-4 .30.25) TRN: XXXXXX1411 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1059,853,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1060,854,6,0.00,3007.36,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1061,854,27,3007.36,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1062,855,6,0.00,3000.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1063,855,27,3000.00,0.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1064,856,6,0.00,2838.63,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1065,857,6,0.00,39.00,'SHOPIFY* XXXXX1133 SHOPIFY.COM IL 04/13','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1066,858,6,0.00,2500.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1067,858,27,2500.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1068,859,6,5000.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX3610479 EED:250414 IND ID: IND NAME:LBC Main (#2560) OWC TR N: XXXXXX0479TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1069,860,6,17.94,0.00,'ORIG CO NAME:eBay ComPBF5USK0 ORIG ID:XXXXXX6000 DESC DATE:250414 CO ENTRY DESCR:PAYMENTS SEC:CCD TRACE#:XXXXXXXX8295722 EED:250414 IND ID:USEAYR1TL2H6V6K IND N AME:Nathan Staron NTE*ZZZ*PXXXXXX3226\\ TRN: XXXXXX5722 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1070,861,6,0.00,384.80,'Pay Period: 04/01/2025-04/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1071,861,37,384.80,0.00,'Pay Period: 04/01/2025-04/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1072,862,6,0.00,1825.92,'Pay Period: 04/01/2025-04/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1073,862,37,1825.92,0.00,'Pay Period: 04/01/2025-04/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1074,863,6,0.00,584.08,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1075,864,6,1499.99,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1076,864,14,0.00,1499.99,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1077,865,6,0.00,44.85,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1078,866,6,3500.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX7022758 EED:250415 IND ID: IND NAME:LBC Main (#2560) OWC TR N: XXXXXX2758TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1079,867,6,0.00,6.00,'ORIG CO NAME:Rocket Money ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX0024381 EED:250415 IND ID:ST-J7F2J6T8B4B1 IND NAME:ROCKET MONEY INC TRN: XXXXXX4381 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1080,868,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1081,869,6,0.00,4.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250418 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX7852517 EED:250418 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0418PPZWVK TRN: XXXXXX2517 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1082,870,6,22.38,0.00,'ORIG CO NAME:eBay ComIUJJ8WQR ORIG ID:XXXXXX6000 DESC DATE:250418 CO ENTRY DESCR:PAYMENTS SEC:CCD TRACE#:XXXXXXXX5809876 EED:250418 IND ID:7 TH6DK4QIN8PK61 IND N AME:Nathan Staron NTE*ZZZ*PXXXXXX9762\\ TRN: XXXXXX9876 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1083,871,6,0.00,8602.49,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1084,871,27,8602.49,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1085,872,6,3396.05,0.00,'Online Transfer to CHK ...2560 transaction#: XXXXXXX2964 04/21','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1086,873,6,7073.66,0.00,'Online Transfer to CHK ...2560 transaction#: XXXXXXX5521 04/21','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1087,874,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX4346905 EED:250421 IND ID:ST-H5Q4N5J1N7T2 IND NAME:N ATHAN STARON TRN: XXXXXX6905 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1088,875,6,12000.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX1247002 EED:250421 IND ID: IND NAME:LBC Main (#2560) GSL In voice TRN: XXXXXX7002 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1089,876,6,10000.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX1247005 EED:250421 IND ID: IND NAME:LBC Main (#2560) OWC TR N: XXXXXX7005TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1090,877,6,0.00,6133.28,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1091,877,27,6133.28,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1092,878,6,0.00,18608.60,'Online Transfer from CHK ...2560 transaction#: XXXXXXX3274','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1093,879,6,5050.09,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX3388472 EED:250422 IND ID: IND NAME:LBC Main (#2560) OWC Mi n Cash TRN: XXXXXX8472 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1094,880,6,0.00,7.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250422 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX1393233 EED:250422 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0422PPZG5T TRN: XXXXXX3233 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1095,881,6,0.00,343.08,'PROGRESSIVE INS XXX-XXX-4737 OH 04/23','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1096,882,6,0.00,1139.49,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250422 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX4164084 EED:250423 IND ID:PXXXX2890 IND NAME:STAR ON, NATHAN TRN: XXXXXX4084 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1097,882,51,1139.49,0.00,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250422 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX4164084 EED:250423 IND ID:PXXXX2890 IND NAME:STAR ON, NATHAN TRN: XXXXXX4084 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1098,883,6,2300.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX9526699 EED:250424 IND ID: IND NAME:LBC Main (#2560) Effect Web Media Payment TRN: XXXXXX6699 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1099,884,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1100,885,6,0.00,3375.27,'Online Payment XXXXXXX9472 To HMG 4615 04/25','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1101,886,6,3375.27,0.00,'Online Transfer from CHK ...1215 transaction#: XXXXXXX8239','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1102,886,58,0.00,3375.27,'Online Transfer from CHK ...1215 transaction#: XXXXXXX8239','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1103,887,6,0.00,7.03,'CIRCLE K 209 X7691 HONG KONG 04/26 HK Dollar 54.50 X 0.XXX9908 (EXCHG RTE)','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1104,888,6,0.00,0.21,'FOREIGN EXCHANGE RATE ADJUSTMENT FEE 04/26CIRCLE K','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1105,889,6,0.00,0.50,'FOREIGN EXCHANGE RATE ADJUSTMENT FEE 04/28MCDONALD\'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1106,890,6,0.00,16.76,'MCDONALD\'S-STORE 365 HONG KONG 04/28 HK Dollar 130.00 X 0.XXX9231 (EXCHG RTE)','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1107,891,6,0.00,1456.31,'ORIG CO NAME:MIDLAND NATIONAL ORIG ID:XXXXXX4570 DESC DATE:250425 CO ENTRY DESCR:INSURANCE SEC:PPD TRACE#:XXXXXXXX3761971 EED:250429 IND ID: IND NAME:LITHIUM BA TTERY COMP TRN: XXXXXX1971 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1108,892,6,0.00,1825.93,'Pay Period: 04/16/2025-04/30/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1109,892,37,1825.93,0.00,'Pay Period: 04/16/2025-04/30/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1110,893,6,0.00,384.79,'Pay Period: 04/16/2025-04/30/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1111,893,37,384.79,0.00,'Pay Period: 04/16/2025-04/30/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1112,894,6,0.00,584.08,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1113,895,6,0.00,95.00,'SERVICE CHARGES FOR THE MONTH OF APRIL','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1114,896,6,0.00,20.00,'APPLE CASH BALANCE AD XXX-XXX-8552 CA 05/02','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1115,897,6,2210.72,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX0267745 EED:250501 IND ID: IND NAME:LBC Main (#2560) Kevin Eells Payroll Reimbursement ( 4.16.25 - 5.1.25) TRN: XXXXXX7745 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1116,898,6,1500.00,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1117,898,14,0.00,1500.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1118,899,6,0.00,15.00,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1119,900,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1120,901,6,36346.30,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1121,901,8,0.00,36346.30,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1122,902,6,0.00,104.50,'NON-CHASE ATM WITHDRAW XX6671 05/XX1010 N MA','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1123,902,58,104.50,0.00,'NON-CHASE ATM WITHDRAW XX6671 05/XX1010 N MA','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1124,903,6,0.00,3373.14,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1125,904,6,0.00,432.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX4699','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1126,905,6,0.00,10000.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: CLIMATE FIRST BANK/XXXXX7011 A/C: CLIMATE FIRST BANK ST. PETERSBURG FL X3710 US IMAD: 0505MMQFMP2NXX5379 TRN: XXXXXX5125 ES 05 /05','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1127,906,6,0.00,27.78,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250504 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX7648307 EED:250505 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0504PPZRSC TRN: XXXXXX8307 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1128,907,6,0.00,2300.00,'ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250505 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX7720989 EED:250505 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX0989 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1129,908,6,599.96,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1130,908,14,0.00,599.96,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1131,909,6,0.00,6.00,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1132,910,6,0.00,276.65,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250506 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX8969158 EED:250508 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX9158 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1133,911,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1134,912,6,0.00,4500.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1135,913,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX0649540 EED:250512 IND ID:ST-N8M4E1C3C5G8 IND NAME:N ATHAN STARON TRN: XXXXXX9540 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1136,914,6,6250.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1137,915,6,0.00,1500.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1138,916,6,0.00,3279.74,'Online Payment XXXXXXX6827 To HMG 4615 05/13','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1139,917,6,0.00,39.00,'SHOPIFY* XXXXX5839 SHOPIFY.COM IL 05/13','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1140,918,6,0.00,384.79,'Pay Period: 05/01/2025-05/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1141,918,37,384.79,0.00,'Pay Period: 05/01/2025-05/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1142,919,6,0.00,1825.92,'Pay Period: 05/01/2025-05/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1143,919,37,1825.92,0.00,'Pay Period: 05/01/2025-05/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1144,920,6,0.00,584.10,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1145,921,6,0.00,6.00,'ORIG CO NAME:Rocket Money ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX6420546 EED:250515 IND ID:ST-Z5G0E0R7C9A0 IND NAME:ROCKET MONEY INC TRN: XXXXXX0546 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1146,922,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1147,923,6,0.00,6250.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1148,923,27,6250.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1149,924,6,0.00,6250.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250516 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX1796687 EED:250516 IND ID:W9994 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6687 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1150,924,27,6250.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250516 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX1796687 EED:250516 IND ID:W9994 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6687 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1151,925,6,0.00,4.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250518 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX5610763 EED:250519 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0518PPZJSB TRN: XXXXXX0763 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1152,926,6,0.00,142.43,'Fiverr XXX-XXX9699 NY 05/21','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1153,927,6,0.00,7.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250522 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX5752693 EED:250522 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0522PPZI6P TRN: XXXXXX2693 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1154,928,6,0.00,1531.98,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMN AMER CU/XXXXX1508 A/C: S2 CAPITAL GROUP LLC LENEXA KS X6285 US REF: REFUND FOR LBC ORDER IMAD: 0522MMQFMP2KXX7696 TRN: XXXXXX5142ES 05/22','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1155,929,6,0.00,201.14,'ONLINE DOMESTIC WIRE TRANSFER VIA: HUDSON VALLEY CU/XXXXX9363 A/C: KEVIN EELLS POUGHKEEPSIE NY X2602 US REF: EXPENSE AND TRAVEL REIMBURSEMENT (3.1.25 - 5.9.25) IMAD: 0522MMQFMP2MXX1144 TRN: XXXXXX5142 ES 05/22','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1156,930,6,0.00,599.96,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: INVOICE NUMBER: CPXXXX2900C TELXXXXXXXXX6435/INVOICE PAYMENT TRN: XXXXXX5142 ES 05/22','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1157,931,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1158,932,6,0.00,57.86,'PROGRESSIVE *INSURANC XXX-XXX-4737 OH 05/23','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1159,933,6,0.00,1139.49,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250522 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8623913 EED:250523 IND ID:PXXXX9839 IND NAME:STAR ON, NATHAN TRN: XXXXXX3913 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1160,933,51,1139.49,0.00,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250522 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8623913 EED:250523 IND ID:PXXXX9839 IND NAME:STAR ON, NATHAN TRN: XXXXXX3913 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1161,934,6,0.00,2100.00,'ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250524 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX5783223 EED:250527 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX3223 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1162,935,6,0.00,499.00,'Zelle payment to Leon XXXXXXX2853','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1163,936,6,0.00,343.05,'ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8112 DESC DATE:250527 CO ENTRY DESCR:INS PREM SEC:WEB TRACE#:XXXXXXXX1257837 EED:250527 IND ID:POL XXXXX6654 IND NAME :Lithium Battery Co BRANCH02DEBIT ACH TRN: XXXXXX7837 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1164,937,6,0.00,8500.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1165,937,27,8500.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1166,938,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX0045642 EED:250527 IND ID:ST-K6U0M0T2Q8P8 IND NAME:N ATHAN STARON TRN: XXXXXX5642 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1167,939,6,25000.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX1777215 EED:250527 IND ID: IND NAME:LBC Main (#2560) Operat ing Working Capital TRN: XXXXXX7215 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1168,940,6,0.00,990.65,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1169,941,6,0.00,384.79,'Pay Period: 05/16/2025-05/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1170,941,37,384.79,0.00,'Pay Period: 05/16/2025-05/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1171,942,6,0.00,1825.92,'Pay Period: 05/16/2025-05/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1172,942,37,1825.92,0.00,'Pay Period: 05/16/2025-05/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1173,943,6,0.00,584.10,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1174,944,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1175,945,6,3698.78,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1176,945,8,0.00,3698.78,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1177,946,6,0.00,95.00,'SERVICE CHARGES FOR THE MONTH OF MAY','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1178,947,6,993.49,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1179,947,14,0.00,993.49,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1180,948,6,0.00,29.71,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1181,949,6,0.00,27.78,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250603 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX0107117 EED:250603 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0603PPZJVR TRN: XXXXXX7117 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1182,950,6,0.00,3750.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1183,950,27,3750.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1184,951,6,0.00,3500.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1185,952,6,0.00,5000.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1186,952,27,5000.00,0.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1187,953,6,0.00,2300.00,'ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250604 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX7861406 EED:250604 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX1406 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1188,954,6,4766.98,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1189,954,8,0.00,4766.98,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1190,955,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1191,956,6,0.00,15000.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1192,956,27,15000.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1193,957,6,0.00,2596.40,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: CPXXXX0600B TELXXXXXXXXX6435/INVOICE PAYMENT TRN: XXXXXX5157 ES 06/06','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1194,958,6,15000.00,0.00,'Online Transfer from CHK ...1215 transaction#: XXXXXXX4918','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1195,958,61,0.00,15000.00,'Online Transfer from CHK ...1215 transaction#: XXXXXXX4918','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1196,959,6,0.00,201.71,'ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250609 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX7726823 EED:250609 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX6823 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1197,960,6,0.00,449.30,'Online Transfer from CHK ...2560 transaction#: XXXXXXX2875','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1198,961,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX5971472 EED:250609 IND ID:ST-P1O8D5D1H0P7 IND NAME:N ATHAN STARON TRN: XXXXXX1472 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1199,962,6,0.00,276.65,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250606 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX0997665 EED:250610 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX7665 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1200,963,6,0.00,1500.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1201,964,6,0.00,360.00,'GREENBERG DENTAL & ORTH TAMPA FL 06/11','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1202,965,6,0.00,221.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX0070','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1203,966,6,3750.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX6760292 EED:250612 IND ID: IND NAME:LBC Main (#2560) Workin g Capital TRN: XXXXXX0292 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1204,967,6,0.00,39.00,'SHOPIFY* XXXXX8973 SHOPIFY.COM IL 06/12','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1205,968,6,0.00,1825.93,'Pay Period: 06/01/2025-06/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1206,968,37,1825.93,0.00,'Pay Period: 06/01/2025-06/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1207,969,6,0.00,384.80,'Pay Period: 06/01/2025-06/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1208,969,37,384.80,0.00,'Pay Period: 06/01/2025-06/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1209,970,6,0.00,584.06,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1210,971,6,5000.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX5801655 EED:250613 IND ID: IND NAME:LBC Main (#2560) Workin g Capital TRN: XXXXXX1655 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1211,972,6,0.00,175.00,'Zelle payment to Dora House Cleaner JPM99bbydttz','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1212,973,6,0.00,3621.46,'ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250612 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX4324099 EED:250613 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX4099 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1213,974,6,7500.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX8202242 EED:250616 IND ID: IND NAME:LBC Main (#2560) Nathan CC TRN: XXXXXX2242 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1214,975,6,0.00,6.00,'ORIG CO NAME:Rocket Money ORIG ID:XXXXXX5600 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX7669932 EED:250616 IND ID:ST-H6S9L9Z2J6E5 IND NAME:ROCKET MONEY INC TRN: XXXXXX9932 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1215,976,6,0.00,3375.27,'Online Payment XXXXXXX8335 To HMG 4615 06/17','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1216,977,6,16246.74,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1217,978,6,0.00,485.78,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1218,979,6,0.00,1422.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX3028','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1219,980,6,0.00,4.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250618 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3196884 EED:250618 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0618PPZKV8 TRN: XXXXXX6884 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1220,981,6,0.00,438.17,'ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8112 DESC DATE:250620 CO ENTRY DESCR:INS PREM SEC:WEB TRACE#:XXXXXXXX2194433 EED:250620 IND ID:POL XXXXX6654 IND NAME :LITHIUM BATTERY COMPAN BRANCH02DEBIT ACH TRN: XXXXXX4433 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1221,982,6,0.00,175.00,'Zelle payment to Dora House Cleaner JPM99bcspipo','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1222,983,6,0.00,1139.49,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250620 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8750948 EED:250623 IND ID:PXXXX1798 IND NAME:STAR ON, NATHAN TRN: XXXXXX0948 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1223,983,51,1139.49,0.00,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250620 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8750948 EED:250623 IND ID:PXXXX1798 IND NAME:STAR ON, NATHAN TRN: XXXXXX0948 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1224,984,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX9441884 EED:250623 IND ID:ST-B0H6A3U2W9I1 IND NAME:N ATHAN STARON TRN: XXXXXX1884 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1225,985,6,0.00,7.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250621 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX9526254 EED:250623 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0621PPZ4UK TRN: XXXXXX6254 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1226,986,6,0.00,870.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX8924','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1227,987,6,0.00,3753.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX5737','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1228,988,6,255.58,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1229,988,14,0.00,255.58,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1230,989,6,0.00,7.64,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1231,990,6,0.00,175.00,'Zelle payment to Dora House Cleaner JPM99bdks99s','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1232,991,6,0.00,384.80,'Pay Period: 06/16/2025-06/30/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1233,991,37,384.80,0.00,'Pay Period: 06/16/2025-06/30/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1234,992,6,0.00,1825.93,'Pay Period: 06/16/2025-06/30/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1235,992,37,1825.93,0.00,'Pay Period: 06/16/2025-06/30/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1236,993,6,0.00,584.06,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1237,994,6,0.00,95.00,'SERVICE CHARGES FOR THE MONTH OF JUNE','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1238,995,6,0.00,255.88,'Online Transfer to CHK ...7932 transaction#: XXXXXXX9752 07/03','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1239,996,6,0.00,27.78,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250703 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX0603197 EED:250703 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0703PPZK1L TRN: XXXXXX3197 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1240,997,6,0.00,175.00,'Zelle payment to Dora House Cleaner JPM99bejegb2','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1241,998,6,0.00,202.66,'ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250707 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX8115569 EED:250707 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX5569 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1242,999,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX5333340 EED:250707 IND ID:ST-J1N0V1E5D4K6 IND NAME:N ATHAN STARON TRN: XXXXXX3340 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1243,1000,6,0.00,2300.00,'ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250705 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX6376969 EED:250707 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX6969 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1244,1001,6,0.00,276.65,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250706 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX7162086 EED:250708 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX2086 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1245,1002,6,0.00,6920.00,'US DEPT OF EDU - DMCS XXX-XXX-5327 DC 07/08','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1246,1003,6,0.00,396.32,'ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8112 DESC DATE:250709 CO ENTRY DESCR:INS PREM SEC:WEB TRACE#:XXXXXXXX1000153 EED:250709 IND ID:POL XXXXX6654 IND NAME :LITHIUM BATTERY COMPAN BRANCH02DEBIT ACH TRN: XXXXXX0153 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1247,1004,6,0.00,175.00,'Zelle payment to Dora House Cleaner JPM99bfajjf7','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1248,1005,6,0.00,39.00,'SHOPIFY* XXXXX4597 SHOPIFY.COM IL 07/12','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1249,1006,6,2500.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX7426117 EED:250714 IND ID: IND NAME:LBC Main (#2560) Workin g Capital TRN: XXXXXX6117 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1250,1007,6,0.00,384.79,'Pay Period: 07/01/2025-07/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1251,1007,37,384.79,0.00,'Pay Period: 07/01/2025-07/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1252,1008,6,0.00,1825.92,'Pay Period: 07/01/2025-07/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1253,1008,37,1825.92,0.00,'Pay Period: 07/01/2025-07/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1254,1009,6,0.00,584.10,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1255,1010,6,0.00,6.00,'ORIG CO NAME:Rocket Money ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX5008603 EED:250715 IND ID:ST-V0G3N5O6D0B9 IND NAME:ROCKET MONEY INC TRN: XXXXXX8603 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1256,1011,6,10000.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX0498916 EED:250717 IND ID: IND NAME:LBC Main (#2560) Credit Card X4007 TRN: XXXXXX8916 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1257,1012,6,3500.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX0498913 EED:250717 IND ID: IND NAME:LBC Main (#2560) Workin g Capital for Min Cash TRN: XXXXXX8913 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1258,1013,6,0.00,4.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250718 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3919777 EED:250718 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0718PPZFR9 TRN: XXXXXX9777 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1259,1014,6,0.00,175.00,'Zelle payment to Dora House Cleaner JPM99bg3yh79','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1260,1015,6,0.00,1766.57,'ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250717 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX5723231 EED:250718 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX3231 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1261,1016,6,0.00,9500.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250718 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX5506447 EED:250718 IND ID:W8910 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6447 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1262,1016,27,9500.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250718 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX5506447 EED:250718 IND ID:W8910 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6447 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1263,1017,6,0.00,7.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250721 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3463170 EED:250721 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0721PPZU2V TRN: XXXXXX3170 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1264,1018,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX2643690 EED:250721 IND ID:ST-T7I3H0X3A6Y2 IND NAME:N ATHAN STARON TRN: XXXXXX3690 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1265,1019,6,0.00,14.24,'DUCKWEED WD INC TAMPA FL 07/21','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1266,1019,58,14.24,0.00,'DUCKWEED WD INC TAMPA FL 07/21','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1267,1020,6,2699.97,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1268,1021,6,0.00,27.00,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1269,1022,6,0.00,1139.49,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250722 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX2005503 EED:250723 IND ID:PXXXX4907 IND NAME:STAR ON, NATHAN TRN: XXXXXX5503 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1270,1022,51,1139.49,0.00,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250722 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX2005503 EED:250723 IND ID:PXXXX4907 IND NAME:STAR ON, NATHAN TRN: XXXXXX5503 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1271,1023,6,0.00,1934.04,'Online Transfer to CHK ...7932 transaction#: XXXXXXX2635 07/23','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1272,1024,6,3500.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX0016918 EED:250723 IND ID: IND NAME:LBC Main (#2560) AMEX 2 3003 TRN: XXXXXX6918 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1273,1025,6,0.00,3000.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1274,1026,6,0.00,150.00,'Zelle payment to Camila JPM99bgzoxs1\n\nCleaning','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1275,1027,6,0.00,10.00,'ORIG CO NAME:INTUIT PYMT SOLN ORIG ID:XXXXXX6202 DESC DATE:250726 CO ENTRY DESCR:INTUITPMTSSEC:CCD TRACE#:XXXXXXXX4640197 EED:250728 IND ID:XXXXXXXX8541058 IND NAME:LITHIUM BATTERY CO INT TRN: XXXXXX0197 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1276,1028,6,0.00,1349.97,'ORIG CO NAME:INTUIT PYMT SOLN ORIG ID:XXXXXX6202 DESC DATE:250726 CO ENTRY DESCR:INTUITPMTSSEC:CCD TRACE#:XXXXXXXX4642927 EED:250728 IND ID:XXXXXXXX8541058 IND NAME:LITHIUM BATTERY CO INT TRN: XXXXXX2927 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1277,1029,6,3500.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX3273412 EED:250728 IND ID: IND NAME:LBC Main (#2560) OWC - min cash TRN: XXXXXX3412 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1278,1030,6,7312.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX0225396 EED:250729 IND ID: IND NAME:LBC Main (#2560) CC Pay ment (AMEX X3003) TRN: XXXXXX5396 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1279,1031,6,0.00,1456.31,'ORIG CO NAME:MIDLAND NATIONAL ORIG ID:XXXXXX4570 DESC DATE:250725 CO ENTRY DESCR:INSURANCE SEC:PPD TRACE#:XXXXXXXX1550329 EED:250729 IND ID: IND NAME:LITHIUM BA TTERY COMP TRN: XXXXXX0329 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1280,1032,6,0.00,7312.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1281,1033,6,2236.18,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1282,1033,14,0.00,2236.18,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1283,1034,6,0.00,66.86,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1284,1035,6,0.00,384.80,'Pay Period: 07/16/2025-07/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1285,1035,37,384.80,0.00,'Pay Period: 07/16/2025-07/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1286,1036,6,0.00,1825.92,'Pay Period: 07/16/2025-07/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1287,1036,37,1825.92,0.00,'Pay Period: 07/16/2025-07/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1288,1037,6,0.00,584.08,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1289,1038,6,9202.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX0982013 EED:250731 IND ID: IND NAME:LBC Main (#2560) Payrol l For Tanner Hance TRN: XXXXXX2013 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1290,1039,6,0.00,95.00,'SERVICE CHARGES FOR THE MONTH OF JULY','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1291,1040,6,0.00,2500.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1292,1041,6,2500.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX4002945 EED:250801 IND ID: IND NAME:LBC Main (#2560) AMEX C C (X3003) TRN: XXXXXX2945 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1293,1042,6,0.00,7535.58,'Pay Period: 08/01/2025-08/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1294,1042,37,7535.58,0.00,'Pay Period: 08/01/2025-08/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1295,1043,6,0.00,1666.25,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1296,1044,6,3257.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX6834172 EED:250804 IND ID: IND NAME:LBC Main (#2560) Custom er PO Deposit TRN: XXXXXX4172 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1297,1045,6,2000.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX6834178 EED:250804 IND ID: IND NAME:LBC Main (#2560) Min Ca sh & Working Capital TRN: XXXXXX4178 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1298,1046,6,0.00,27.78,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250802 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX9188581 EED:250804 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0802PPZB6G TRN: XXXXXX8581 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1299,1047,6,0.00,2300.00,'ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250804 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX8782758 EED:250804 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX2758 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1300,1048,6,0.00,3257.00,'Online Transfer to CHK ...7932 transaction#: XXXXXXX1962 08/06','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1301,1049,6,0.00,350.00,'Zelle payment to Dora House Cleaner JPM99bik38ux','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1302,1050,6,0.00,202.66,'ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250807 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX7623523 EED:250807 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX3523 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1303,1051,6,0.00,276.65,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250806 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX6803632 EED:250808 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX3632 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1304,1052,6,0.00,400.67,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX3033951 EED:250811 IND ID:ST-P3F2F1V3U1W5 IND NAME:N ATHAN STARON TRN: XXXXXX3951 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1305,1053,6,0.00,39.00,'SHOPIFY* XXXXX9587 SHOPIFY.COM IL 08/11','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1306,1054,6,0.00,384.79,'Pay Period: 08/01/2025-08/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1307,1054,37,384.79,0.00,'Pay Period: 08/01/2025-08/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1308,1055,6,0.00,1825.92,'Pay Period: 08/01/2025-08/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1309,1055,37,1825.92,0.00,'Pay Period: 08/01/2025-08/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1310,1056,6,0.00,584.10,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1311,1057,6,643.93,0.00,'REMOTE ONLINE DEPOSIT # 2','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1312,1058,6,1636.20,0.00,'REMOTE ONLINE DEPOSIT # 2','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1313,1059,6,0.00,6.00,'ORIG CO NAME:Rocket Money ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX7239467 EED:250815 IND ID:ST-O8T8A2D6Q8W9 IND NAME:ROCKET MONEY INC TRN: XXXXXX9467 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1314,1060,6,0.00,4.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250818 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX0467523 EED:250818 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0818PPZ8RL TRN: XXXXXX7523 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1315,1061,6,0.00,1200.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250818 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7112016 EED:250818 IND ID:M3298 IND NAME:NATHAN STARON ER AM TRN: XXXXXX2016 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1316,1062,6,0.00,99.99,'APPLE CASH SENT MONE 1INFINITELOOP CA 08/20','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1317,1063,6,0.00,1766.57,'ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250818 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX8723395 EED:250819 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX3395 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1318,1064,6,0.00,7.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250820 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX7148327 EED:250820 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0820PPZUT8 TRN: XXXXXX8327 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1319,1065,6,1000.00,0.00,'Online Transfer from CHK ...7932 transaction#: XXXXXXX9003','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1320,1066,6,3500.00,0.00,'Online Transfer from CHK ...7932 transaction#: XXXXXXX2235','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1321,1067,6,0.00,350.00,'Zelle payment to Dora House Cleaner JPM99bkdg4za','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1322,1068,6,0.00,175.00,'ORIG CO NAME:PAYCARGO ORIG ID:XXXXXX5101 DESC DATE: CO ENTRY DESCR:ACHPAYMENTSEC:CCD TRACE#:XXXXXXXX8534285 EED:250822 IND ID:BATCH XXX3473 IND NAME:LITHIUM BAT TERY COMPAN NACHA 100A TRN: XXXXXX4285 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1323,1069,6,0.00,1139.49,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250822 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8921695 EED:250825 IND ID:PXXXX7889 IND NAME:STAR ON, NATHAN TRN: XXXXXX1695 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1324,1070,6,0.00,114.03,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX1783929 EED:250825 IND ID:ST-C3I2V1N3B2V3 IND NAME:N ATHAN STARON TRN: XXXXXX3929 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1325,1071,6,0.00,62.54,'THEA Collect XXXXXX5205 TAMPA FL 08/25','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1326,1072,6,0.00,1200.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1327,1072,27,1200.00,0.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1328,1073,6,0.00,1825.92,'Pay Period: 08/16/2025-08/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1329,1073,37,1825.92,0.00,'Pay Period: 08/16/2025-08/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1330,1074,6,0.00,384.79,'Pay Period: 08/16/2025-08/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1331,1074,37,384.79,0.00,'Pay Period: 08/16/2025-08/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1332,1075,6,0.00,584.10,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1333,1076,6,0.00,396.32,'ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8112 DESC DATE:250829 CO ENTRY DESCR:INS PREM SEC:WEB TRACE#:XXXXXXXX6774546 EED:250829 IND ID:POL XXXXX6654 IND NAME :LITHIUM BATTERY COMPAN BRANCH02DEBIT ACH TRN: XXXXXX4546 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1334,1077,6,5000.00,0.00,'Online Transfer from CHK ...7932 transaction#: XXXXXXX0681','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1335,1078,6,0.00,1500.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250829 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX6353453 EED:250829 IND ID:M9752 IND NAME:NATHAN STARON ER AM TRN: XXXXXX3453 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1336,1078,27,1500.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250829 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX6353453 EED:250829 IND ID:M9752 IND NAME:NATHAN STARON ER AM TRN: XXXXXX3453 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1337,1079,6,0.00,1500.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250829 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX6353429 EED:250829 IND ID:M8876 IND NAME:NATHAN STARON ER AM TRN: XXXXXX3429 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1338,1079,27,1500.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250829 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX6353429 EED:250829 IND ID:M8876 IND NAME:NATHAN STARON ER AM TRN: XXXXXX3429 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1339,1080,6,0.00,1500.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1340,1081,6,6356.89,0.00,'Online Transfer from CHK ...7932 transaction#: XXXXXXX5201','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1341,1082,6,0.00,3000.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1342,1083,6,9202.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX6588415 EED:250902 IND ID: IND NAME:LBC Main (#2560) Hance Payroll TRN: XXXXXX8415 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1343,1084,6,0.00,129.00,'SERVICE CHARGES FOR THE MONTH OF AUGUST','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1344,1085,6,0.00,27.78,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250901 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX7320895 EED:250902 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0901PPZVWG TRN: XXXXXX0895 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1345,1086,6,0.00,2300.00,'ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250904 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX4961499 EED:250904 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX1499 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1346,1087,6,0.00,46.23,'Zelle payment to Leslie Staron JPM99bm5pkkx','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1347,1088,6,1665.84,0.00,'Customer credit - shipping','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1348,1088,8,0.00,1665.84,'Customer credit - shipping','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1349,1089,6,3884.86,0.00,'Customer credit - shipping','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1350,1089,8,0.00,3884.86,'Customer credit - shipping','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1351,1090,6,0.00,233.95,'CRAB SHACK SAINT PETERSB FL 09/07','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1352,1091,6,0.00,1000.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1353,1092,6,0.00,7535.58,'Pay Period: 09/01/2025-09/30/2025 Check created out of sequence in a prior quarter','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1354,1092,37,7535.58,0.00,'Pay Period: 09/01/2025-09/30/2025 Check created out of sequence in a prior quarter','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1355,1093,6,0.00,1435.25,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1356,1094,6,0.00,202.66,'ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250908 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX5411599 EED:250908 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX1599 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1357,1095,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX5159135 EED:250908 IND ID:ST-X8U3R7N7W5L2 IND NAME:N ATHAN STARON TRN: XXXXXX9135 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1358,1096,6,2900.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX2799298 EED:250908 IND ID: IND NAME:LBC Main (#2560) Bayfro nt Capital (Transaction Fees) TRN: XXXXXX9298 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1359,1097,6,0.00,350.00,'Zelle payment to Dora House Cleaner JPM99bmmfrl1','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1360,1098,6,3500.00,0.00,'ORIG CO NAME:JD CAPITAL ADVIS ORIG ID:SXXXXX7665 DESC DATE:250909 CO ENTRY DESCR:SENDER SEC:CTX TRACE#:XXXXXXXX6471376 EED:250909 IND ID:813722100 IND NAME:0000 LITHIUM BATTERY TRN: XXXXXX1376 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1361,1099,6,0.00,276.65,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250906 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX9686584 EED:250909 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX6584 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1362,1100,6,0.00,39.00,'SHOPIFY* XXXXX8635 SHOPIFY.COM IL 09/10','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1363,1101,6,6500.00,0.00,'ORIG CO NAME:JD CAPITAL ADVIS ORIG ID:SXXXXX7665 DESC DATE:250910 CO ENTRY DESCR:SENDER SEC:CTX TRACE#:XXXXXXXX1567022 EED:250910 IND ID:813990834 IND NAME:0000 LITHIUM BATTERY TRN: XXXXXX7022 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1364,1102,6,0.00,3279.74,'Online Payment XXXXXXX2890 To HMG 4615 09/10','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1365,1103,6,0.00,250.00,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: BANK OF CHINA HONG KONG LTD WEST KOWLOON HONG KONG HK REF: LBC BMS XXXX0910 INVOICE PAYMENT TRN: XXXXXX5254 ES 09/11','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1366,1104,6,0.00,1825.94,'Pay Period: 09/01/2025-09/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1367,1104,37,1825.94,0.00,'Pay Period: 09/01/2025-09/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1368,1105,6,0.00,506.55,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1369,1106,6,0.00,121.97,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX5600 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX1704189 EED:250915 IND ID:ST-E9V3N5M2D3U8 IND NAME:N ATHAN STARON TRN: XXXXXX4189 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1370,1107,6,0.00,210.00,'PROGRESSIVE *INSURANC XXX-XXX-4737 OH 09/15','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1371,1108,6,0.00,6.00,'ORIG CO NAME:Rocket Money ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX5441658 EED:250915 IND ID:ST-N2V5J6V0U4E7 IND NAME:ROCKET MONEY INC TRN: XXXXXX1658 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1372,1109,6,0.00,396.32,'ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8112 DESC DATE:250916 CO ENTRY DESCR:INS PREM SEC:WEB TRACE#:XXXXXXXX2573929 EED:250916 IND ID:POL XXXXX6654 IND NAME :LITHIUM BATTERY COMPAN BRANCH09DEBIT ACH TRN: XXXXXX3929 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1373,1110,6,0.00,4.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250918 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX7879422 EED:250918 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0918PPZHER TRN: XXXXXX9422 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1374,1111,6,0.00,1766.57,'ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250917 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX8170379 EED:250918 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX0379 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1375,1112,6,0.00,7.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250919 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX1391874 EED:250919 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0919PPZTLV TRN: XXXXXX1874 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1376,1113,6,0.00,1100.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1377,1114,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX5600 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX1031174 EED:250922 IND ID:ST-J6N8S9P0N5R0 IND NAME:N ATHAN STARON TRN: XXXXXX1174 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1378,1115,6,0.00,1000.00,'CUSTOMER SERVICE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1379,1115,27,1000.00,0.00,'CUSTOMER SERVICE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1380,1116,6,21.91,0.00,'REMOTE ONLINE DEPOSIT # 2','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1381,1116,58,0.00,21.91,'REMOTE ONLINE DEPOSIT # 2','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1382,1117,6,1226.31,0.00,'REMOTE ONLINE DEPOSIT # 2','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1383,1118,6,0.00,1139.49,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250922 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX1906027 EED:250923 IND ID:PXXXX6046 IND NAME:STAR ON, NATHAN TRN: XXXXXX6027 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1384,1119,6,0.00,350.00,'Zelle payment to Dora House Cleaner JPM99bofhwnh','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1385,1120,6,219.44,0.00,'REMOTE ONLINE DEPOSIT # 2','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1386,1121,6,6912.00,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1387,1121,14,0.00,6912.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1388,1122,6,0.00,69.12,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1389,1123,6,0.00,7535.58,'Pay Period: 10/01/2025-10/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1390,1123,37,7535.58,0.00,'Pay Period: 10/01/2025-10/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1391,1124,6,0.00,1435.25,'Tax withdrawal','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1392,1124,36,1435.25,0.00,'Tax withdrawal','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1393,1125,6,0.00,6813.53,'Pay Period: 10/01/2025-10/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1394,1126,6,0.00,2093.69,'Pay Period: 10/01/2025-10/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1395,1127,6,0.00,3887.21,'Tax withdrawal','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1396,1127,36,3887.21,0.00,'Tax withdrawal','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1397,1128,6,0.00,6813.52,'Pay Period: 10/16/2025-10/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1398,1129,6,0.00,2093.69,'Pay Period: 10/16/2025-10/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1399,1130,6,0.00,3876.23,'Tax withdrawal','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1400,1130,36,3876.23,0.00,'Tax withdrawal','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1401,1131,6,135.00,0.00,'Tax overpayment credit refund','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1402,1131,36,0.00,135.00,'Tax overpayment credit refund','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1403,1132,7,0.00,1658.00,'Online Transfer from CHK ...7932 transaction#: XXXXXXX5378','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1404,1133,7,0.00,5262.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1405,1133,26,5262.00,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1406,1134,7,31050.00,0.00,'Online Transfer to CHK ...7932 transaction#: XXXXXXX9694 01/28','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1407,1135,7,0.00,15000.00,'Online Transfer to CHK ...2560 transaction#: XXXXXXX4735 02/04','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1408,1136,7,0.00,6050.01,'Online Transfer to CHK ...2560 transaction#: XXXXXXX1152 02/05','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1409,1137,7,0.00,9999.99,'Online Transfer to CHK ...2560 transaction#: XXXXXXX8062 02/07','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1410,1138,7,6609.98,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1411,1138,8,0.00,6609.98,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1412,1139,7,0.00,6609.98,'Online Transfer to CHK ...2560 transaction#: XXXXXXX3099 02/26','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1413,1140,7,0.00,2132.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1414,1140,26,2132.00,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1415,1141,7,0.00,6531.31,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1416,1141,26,6531.31,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1417,1142,7,0.00,2323.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1418,1142,26,2323.00,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1419,1143,7,0.00,10225.97,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1420,1143,26,10225.97,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1421,1144,7,0.00,13918.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1422,1144,26,13918.00,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1423,1145,7,1531.98,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1424,1145,8,0.00,1531.98,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1425,1146,7,0.00,639.60,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: CPXXXX0600B TELXXXXXXXXX6435/INVOICE PAYMENT/BNF/CPXXXX0600B TRN: XXXXXX5070 ES 03/11','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1426,1147,7,0.00,2896.69,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC1419/BNF/LBC1419 IMAD: 0311MMQFMP2KXX1806 TRN: 32 XXXX5070ES 03/11','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1427,1148,7,2896.69,0.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX2334','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1428,1149,7,639.60,0.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX6248','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1429,1150,7,0.00,1531.98,'Online Transfer to CHK ...2560 transaction#: XXXXXXX6587 03/12','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1430,1151,7,0.00,696.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1431,1151,26,696.00,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1432,1152,7,696.00,0.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX4707','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1433,1153,7,12431.95,0.00,'LBC#7932 Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1434,1154,7,0.00,12431.95,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC1415/BNF/LBC1415 IMAD: 0402MMQFMP2NXX0120 TRN: 33 XXXX5092ES 04/02','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1435,1155,7,5695.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#7932 SEC:CCD TRACE#:XXXXXXXX6424362 EED:250407 IND ID: IND NAME:LBC Int #7932 CPXXX2090 1A TRN: XXXXXX4362 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1436,1156,7,0.00,5695.00,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: LBC INVOICE: CPXXXX0901A TELXXXXXXXXX6435/INVOICE PAYMENT/BN F/LBC INVO ICE: CPXXXX0901A TRN: XXXXXX5098 ES 04/08','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1437,1157,7,0.00,1665.84,'Online Transfer to CHK ...2560 transaction#: XXXXXXX0314 04/09','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1438,1158,7,1665.84,0.00,'CHIPS CREDIT VIA: HSBC BANK USA, N.A./0108 B/O: BERMUDA ELECTRIC LIGHT COMPANY LIMICHURCH STREET HAMILTON,BERMUDA/BM REF: NBNF=LITHIUM BATTERY COMPANY INTL, LLC TAMPA FL XXXXX-8006 US/AC-X0000 XXX5806 ORG=/BM HBBM XXX-XXXXX2-002 CHURCH STREET HAMILTON,BERMUDA/BM OGB=HSBC BANK BERMUDA LIMITED HAMIL TON BERMUDA B SSN: XXXX1521 TRN: XXXXXX9099 FC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1439,1159,7,13631.05,0.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX4037','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1440,1160,7,0.00,13631.05,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: SFD:LBC1417/BNF/SFD:LBC1417 IMAD: 0410MMQFMP2NXX9006 TRN: XXXXXX5100 ES 04/10','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1441,1161,7,9940.00,0.00,'BOOK TRANSFER CREDIT B/O: N-VISION OPTICS LLC NEEDHAM MA XXXXX-3133 US TRN: XXXXXX5105 ES','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1442,1162,7,33769.84,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1443,1162,8,0.00,33769.84,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1444,1163,7,17896.81,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1445,1163,8,0.00,17896.81,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1446,1164,7,0.00,29997.94,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC ORDER 1353A/BNF/LBC ORDER 1353A IMAD: 0416MMQFMP 2MXX3371 TRN: XXXXXX5106 ES 04/16','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1447,1165,7,0.00,20750.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: BK AMER NYC/XXXXX9593 A/C: JD CAPITAL ADVISORS LLC DUNEDIN FL X4698 US REF: SOF WEEK BOOTH REIMBURSEMENT (CLARION EVENTS)/BNF /SOF WEEK BOOTH REIMB URSEMENT (CLARION EVENTS) IMAD: 0416MMQFMP2MXX4719 TRN: XXXXXX5106 ES 04/16','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1448,1166,7,0.00,389.00,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: JPMORGAN CHASE BANK N A HONG KONG HONG KONG XX9077 HK REF: GSL-SHXXXX0417US01 INVOICE PAYMENT/BNF/GSL-SHXXXX0417US01 TRN : XXXXXX5107ES 04/17','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1449,1167,7,0.00,3396.05,'Online Transfer to CHK ...2560 transaction#: XXXXXXX2964 04/21','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1450,1168,7,0.00,7073.66,'Online Transfer to CHK ...2560 transaction#: XXXXXXX5521 04/21','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1451,1169,7,18608.60,0.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX3274','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1452,1170,7,0.00,18608.60,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: JPMORGAN CHASE BANK N A HONG KONG HONG KONG XX9077 HK REF: LBC INVOICE FOR GSL-SHXXXX0204US01 AND GSL-SHXXXX1026US01 INV OICE PAYM ENT/BNF/LBC INVOICE FOR GSL-SHX0250 204US01 AND GSL-SHXXXX1026US01 TRN: XXXXXX5112 ES 04/22','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1453,1171,7,0.00,432.00,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: CPXXXX2900C (43.5V35AH) TELXXXXXXXXX6435/INVOICE PAYMENT TRN : XXXXXX5125ES 05/05','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1454,1172,7,432.00,0.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX4699','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1455,1173,7,449.30,0.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX2875','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1456,1174,7,0.00,449.30,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: SFD LBC1424 IMAD: 0609MMQFMP2MXX3248 TRN: XXXXXX5160 ES 06/09','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1457,1175,7,221.00,0.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX0070','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1458,1176,7,0.00,221.00,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: BANK OF NINGBO CO LTD NINGBO CITY CHINA XX510-0 CN BEN:/XXXXXXXXXXXXX1931 SHENZHEN GSL ENERGY REF: GSL-SHXXXX0417US01 IN VOICE PAYMENT TRN: XXXXXX5163 ES 06/12','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1459,1177,7,1422.00,0.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX3028','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1460,1178,7,0.00,1422.00,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: CPXX0616A - INITIAL DEPOSIT TELXXXXXXXXX6435/INVOICE PAYMENT TRN: XXXXXX5169 ES 06/18','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1461,1178,26,1422.00,0.00,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: CPXX0616A - INITIAL DEPOSIT TELXXXXXXXXX6435/INVOICE PAYMENT TRN: XXXXXX5169 ES 06/18','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1462,1179,7,870.00,0.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX8924','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1463,1180,7,0.00,870.00,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: JPMORGAN CHASE BANK N A HONG KONG HONG KONG XX9077 HK REF: GSL-SHXXXX0616US01 INVOICE PAYMENT TRN: XXXXXX5175 ES 06/24','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1464,1180,26,870.00,0.00,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: JPMORGAN CHASE BANK N A HONG KONG HONG KONG XX9077 HK REF: GSL-SHXXXX0616US01 INVOICE PAYMENT TRN: XXXXXX5175 ES 06/24','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1465,1181,7,3753.00,0.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX5737','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1466,1182,7,0.00,3753.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: SFD-LBC1425R1 IMAD: 0626MMQFMP2KXX2685 TRN: 36133751 77ES 06/26','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1467,1182,26,3753.00,0.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: SFD-LBC1425R1 IMAD: 0626MMQFMP2KXX2685 TRN: 36133751 77ES 06/26','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1468,1183,7,255.88,0.00,'Online Transfer to CHK ...7932 transaction#: XXXXXXX9752 07/03','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1469,1184,7,0.00,255.88,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: SFD-LBC1424 IMAD: 0703MMQFMP2MXX5454 TRN: XXXXXX5184 ES 07/03','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1470,1185,7,1934.04,0.00,'Online Transfer to CHK ...7932 transaction#: XXXXXXX2635 07/23','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1471,1186,7,0.00,1934.04,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: LBC INVOICE: CPXXXX2900C TELXXXXXXXXX6435/INVOICE PAYMENT TR N: XXXXXX5204ES 07/23','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1472,1187,7,3257.00,0.00,'Online Transfer to CHK ...7932 transaction#: XXXXXXX1962 08/06','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1473,1188,7,25000.00,0.00,'FEDWIRE CREDIT VIA: FEDERAL HOME LOAN BK OF PITTSBURGH/XXXXX1435 B/O: INFIRST BANK INDIANA, PA X5701 REF: CHASE NYC/CTR/BNF=LITHIUM BATTERY COMPANY INTL, LLC TA MPA FL XXXX4-800 6 US/AC-XXXXXXXX5806 RFB=NOTPROVIDE D OBI=/PURP/START UP FUNDS FOR SON\' S COMP ANY/URI/BUSINESS START UP CO ST IMAD: 0807MMQFMPDRXX0053 TRN: XXXXXX1219 FF','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1474,1188,45,0.00,25000.00,'FEDWIRE CREDIT VIA: FEDERAL HOME LOAN BK OF PITTSBURGH/XXXXX1435 B/O: INFIRST BANK INDIANA, PA X5701 REF: CHASE NYC/CTR/BNF=LITHIUM BATTERY COMPANY INTL, LLC TA MPA FL XXXX4-800 6 US/AC-XXXXXXXX5806 RFB=NOTPROVIDE D OBI=/PURP/START UP FUNDS FOR SON\' S COMP ANY/URI/BUSINESS START UP CO ST IMAD: 0807MMQFMPDRXX0053 TRN: XXXXXX1219 FF','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1475,1189,7,0.00,402.88,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC INVOICE 1426 IMAD: 0807MMQFMP2MXX4643 TRN: 30367 X5219ES 08/07','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1476,1189,26,402.88,0.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC INVOICE 1426 IMAD: 0807MMQFMP2MXX4643 TRN: 30367 X5219ES 08/07','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1477,1190,7,0.00,10431.37,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: INVOICELBC1427 IMAD: 0812MMQFMP2KXX7336 TRN: 3307085 224ES 08/12','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1478,1190,26,10431.37,0.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: INVOICELBC1427 IMAD: 0812MMQFMP2KXX7336 TRN: 3307085 224ES 08/12','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1479,1191,7,0.00,1000.00,'Online Transfer from CHK ...7932 transaction#: XXXXXXX9003','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1480,1192,7,0.00,3500.00,'Online Transfer from CHK ...7932 transaction#: XXXXXXX2235','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1481,1193,7,0.00,51566.26,'ONLINE DOMESTIC WIRE TRANSFER VIA: BK AMER NYC/XXXXX9593 A/C: LR PROPERTY MANAGEMENT LLC TAMPA FL X3606 US REF: LBC SECURITY DEPOSIT IMAD: 0822MMQFMP2KXX3207 TR N: XXXXXX5234ES 08/22','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1482,1194,7,50000.00,0.00,'FEDWIRE CREDIT VIA: CAPITAL ONE, NA/XXXXX3502 B/O: UP NORTH CONSULTING LIMITED LIABILITAMPA,FL,X3616,US REF: CHASE NYC/CTR/BNF=LITHIUM BATTERY COMPANY INTL, LLC TAMPA FL XXXX4-800 6 US/AC-XXXXXXXX5806 RFB=SBBMM09TD3 AWDCPN OBI=/URI/COACHMAN LEASE IMAD: 0822MMQFMPGHXX0496 TRN: XXXXXX1234 FF','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1483,1195,7,0.00,51556.26,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1484,1195,26,51556.26,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1485,1196,7,0.00,5000.00,'Online Transfer from CHK ...7932 transaction#: XXXXXXX0681','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1486,1197,7,0.00,6356.89,'Online Transfer from CHK ...7932 transaction#: XXXXXXX5201','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1487,1198,7,22141.24,0.00,'GSL Customer','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1488,1199,7,0.00,9836.97,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1489,1199,26,9836.97,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1490,1200,7,0.00,12431.95,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1491,1200,26,12431.95,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1492,1201,7,0.00,19842.55,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1493,1201,26,19842.55,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1494,1202,7,0.00,6118.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1495,1202,26,6118.00,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1496,1203,8,11052.98,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1497,1204,8,0.00,11052.98,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1498,1204,14,11052.98,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1499,1205,8,7430.49,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1500,1206,8,0.00,6159.90,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1501,1206,14,6159.90,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1502,1207,8,24896.80,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1503,1208,8,0.00,6999.99,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1504,1208,14,6999.99,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1505,1209,8,8033.96,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1506,1210,8,6609.98,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1507,1211,8,0.00,6609.98,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1508,1212,8,0.00,2494.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1509,1212,14,2494.00,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1510,1213,8,0.00,1280.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1511,1213,14,1280.00,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1512,1214,8,0.00,1270.59,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1513,1214,14,1270.59,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1514,1215,8,1531.98,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1515,1216,8,0.00,1531.98,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1516,1217,8,0.00,3266.98,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1517,1218,8,1499.99,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1518,1219,8,0.00,1499.99,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1519,1219,14,1499.99,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1520,1220,8,0.00,33769.84,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1521,1221,8,0.00,17896.81,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1522,1222,8,36346.30,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1523,1223,8,4799.93,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1524,1224,8,0.00,1500.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1525,1224,14,1500.00,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1526,1225,8,0.00,36346.30,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1527,1226,8,0.00,599.96,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1528,1226,14,599.96,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1529,1227,8,0.00,3698.78,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1530,1228,8,1249.07,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1531,1229,8,0.00,993.49,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1532,1229,14,993.49,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1533,1230,8,0.00,4766.98,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1534,1231,8,6246.75,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1535,1232,8,12799.99,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1536,1233,8,0.00,9999.99,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1537,1233,14,9999.99,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1538,1234,8,0.00,6246.75,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1539,1234,14,6246.75,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1540,1235,8,0.00,255.58,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1541,1235,14,255.58,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1542,1236,8,2236.18,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1543,1237,8,0.00,1350.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1544,1237,14,1350.00,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1545,1238,8,0.00,1349.97,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1546,1238,14,1349.97,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1547,1239,8,25328.03,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1548,1240,8,222353.03,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1549,1241,8,0.00,2236.18,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1550,1241,14,2236.18,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1551,1242,8,0.00,1665.84,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1552,1243,8,0.00,3884.86,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1553,1244,8,13824.00,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1554,1245,8,0.00,6912.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1555,1245,14,6912.00,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1556,1246,8,13992.52,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1557,1247,10,11424.00,0.00,'24V 75Ah Lithium Ion Battery - LFP - Opening inventory and value','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1558,1247,59,0.00,11424.00,'24V 75Ah Lithium Ion Battery - LFP - Opening inventory and value','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1559,1248,12,51556.26,0.00,'September 2025 Rent','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1560,1248,26,0.00,51556.26,'September 2025 Rent','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1561,1249,14,11052.98,0.00,'Paid via QuickBooks Payments: Payment ID 610162','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1562,1249,8,0.00,11052.98,'Paid via QuickBooks Payments: Payment ID 610162','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1563,1250,14,0.00,11052.98,'Paid via QuickBooks Payments: Payment ID 610162','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1564,1251,14,6159.90,0.00,'Paid via QuickBooks Payments: Payment ID 498-517','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1565,1251,8,0.00,6159.90,'Paid via QuickBooks Payments: Payment ID 498-517','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1566,1252,14,0.00,6159.90,'Paid via QuickBooks Payments: Payment ID 498-517','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1567,1253,14,6999.99,0.00,'Paid via QuickBooks Payments: Payment ID R58143','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1568,1253,8,0.00,6999.99,'Paid via QuickBooks Payments: Payment ID R58143','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1569,1254,14,0.00,6999.99,'Paid via QuickBooks Payments: Payment ID R58143','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1570,1255,14,2494.00,0.00,'Paid via QuickBooks Payments: Payment ID 200418','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1571,1255,8,0.00,2494.00,'Paid via QuickBooks Payments: Payment ID 200418','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1572,1256,14,1280.00,0.00,'Paid via QuickBooks Payments: Payment ID 115047','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1573,1256,8,0.00,1280.00,'Paid via QuickBooks Payments: Payment ID 115047','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1574,1257,14,0.00,2494.00,'Paid via QuickBooks Payments: Payment ID 200418','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1575,1258,14,0.00,1280.00,'Paid via QuickBooks Payments: Payment ID 115047','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1576,1259,14,1270.59,0.00,'Paid via QuickBooks Payments: Payment ID 650216','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1577,1259,8,0.00,1270.59,'Paid via QuickBooks Payments: Payment ID 650216','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1578,1260,14,0.00,1270.59,'Paid via QuickBooks Payments: Payment ID 650216','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1579,1261,14,1499.99,0.00,'Paid via QuickBooks Payments: Payment ID 221229','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1580,1261,8,0.00,1499.99,'Paid via QuickBooks Payments: Payment ID 221229','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1581,1262,14,0.00,1499.99,'Paid via QuickBooks Payments: Payment ID 221229','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1582,1263,14,1500.00,0.00,'Paid via QuickBooks Payments: Payment ID 291-997','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1583,1263,8,0.00,1500.00,'Paid via QuickBooks Payments: Payment ID 291-997','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1584,1264,14,0.00,1500.00,'Paid via QuickBooks Payments: Payment ID 291-997','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1585,1265,14,599.96,0.00,'Paid via QuickBooks Payments: Payment ID 703-357','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1586,1265,8,0.00,599.96,'Paid via QuickBooks Payments: Payment ID 703-357','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1587,1266,14,0.00,599.96,'Paid via QuickBooks Payments: Payment ID 703-357','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1588,1267,14,993.49,0.00,'Paid via QuickBooks Payments: Payment ID 02754D','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1589,1267,8,0.00,993.49,'Paid via QuickBooks Payments: Payment ID 02754D','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1590,1268,14,0.00,993.49,'Paid via QuickBooks Payments: Payment ID 02754D','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1591,1269,14,9999.99,0.00,'Paid via QuickBooks Payments: Payment ID 034416','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1592,1269,8,0.00,9999.99,'Paid via QuickBooks Payments: Payment ID 034416','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1593,1270,14,6246.75,0.00,'Paid via QuickBooks Payments: Payment ID 260460','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1594,1270,8,0.00,6246.75,'Paid via QuickBooks Payments: Payment ID 260460','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1595,1271,14,0.00,9999.99,'Paid via QuickBooks Payments: Payment ID 034416','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1596,1272,14,0.00,6246.75,'Paid via QuickBooks Payments: Payment ID 260460','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1597,1273,14,255.58,0.00,'Paid via QuickBooks Payments: Payment ID 04071D','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1598,1273,8,0.00,255.58,'Paid via QuickBooks Payments: Payment ID 04071D','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1599,1274,14,0.00,255.58,'Paid via QuickBooks Payments: Payment ID 04071D','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1600,1275,14,1350.00,0.00,'Paid via QuickBooks Payments: Payment ID 823-147','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1601,1275,8,0.00,1350.00,'Paid via QuickBooks Payments: Payment ID 823-147','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1602,1276,14,1349.97,0.00,'Paid via QuickBooks Payments: Payment ID 824-387','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1603,1276,8,0.00,1349.97,'Paid via QuickBooks Payments: Payment ID 824-387','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1604,1277,14,0.00,1350.00,'Paid via QuickBooks Payments: Payment ID 823-147','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1605,1278,14,0.00,1349.97,'Paid via QuickBooks Payments: Payment ID 824-387','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1606,1279,14,2236.18,0.00,'Paid via QuickBooks Payments: Payment ID 288032','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1607,1279,8,0.00,2236.18,'Paid via QuickBooks Payments: Payment ID 288032','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1608,1280,14,0.00,2236.18,'Paid via QuickBooks Payments: Payment ID 288032','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1609,1281,14,6912.00,0.00,'Paid via QuickBooks Payments: Payment ID 229-367','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1610,1281,8,0.00,6912.00,'Paid via QuickBooks Payments: Payment ID 229-367','2025-11-12 00:09:23','2025-11-12 00:09:24'),
(1611,1282,14,0.00,6912.00,'Paid via QuickBooks Payments: Payment ID 229-367','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1612,1283,18,66095.84,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1613,1284,19,112351.29,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1614,1285,20,9959.30,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1615,1286,25,1769719.80,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1616,1287,25,221990.00,0.00,'WIRE TO FOGEL LAW GROUP TRUST ACCOUNT - For Plant Machinery & Equipement','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1617,1288,36,358.00,0.00,'Holding account setup','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1618,1289,36,1435.25,0.00,'Tax withdrawal','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1619,1290,36,0.00,1435.25,'Tax Payment for Period: 10/01/2025-10/03/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1620,1291,36,3887.21,0.00,'Tax withdrawal','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1621,1292,36,0.00,3876.21,'Tax Payment for Period: 10/15/2025-10/17/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1622,1293,36,0.00,234.00,'Tax Payment for Period: 07/01/2025-09/30/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1623,1294,36,3876.23,0.00,'Tax withdrawal','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1624,1295,36,0.00,135.00,'Tax overpayment credit refund','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1625,1296,36,0.00,3876.23,'Tax Payment for Period: 10/29/2025-10/31/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1626,1297,26,8503.95,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1627,1298,26,1500.00,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1628,1299,26,0.00,6531.31,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1629,1300,26,5262.00,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1630,1301,26,0.00,2323.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1631,1302,26,0.00,13918.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1632,1303,26,2132.00,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1633,1304,26,6531.31,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1634,1305,26,2323.00,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1635,1306,26,10225.97,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1636,1307,26,13918.00,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1637,1308,26,0.00,2132.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1638,1309,26,0.00,696.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1639,1310,26,696.00,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1640,1311,26,0.00,50173.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1641,1312,26,10034.60,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1642,1313,26,0.00,7540.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1643,1314,26,1422.00,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1644,1315,26,0.00,4127.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1645,1316,26,870.00,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1646,1317,26,0.00,12682.13,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1647,1318,26,3753.00,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1648,1319,26,10034.60,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1649,1320,26,15051.90,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1650,1321,26,0.00,1341.62,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1651,1322,26,402.88,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1652,1323,26,0.00,60442.92,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1653,1324,26,10431.37,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1654,1325,26,51556.26,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1655,1326,26,9836.97,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1656,1327,26,12431.95,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1657,1328,26,19842.55,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1658,1329,26,0.00,5262.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1659,1330,26,0.00,51556.26,'September 2025 Rent','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1660,1330,12,51556.26,0.00,'September 2025 Rent','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1661,1331,26,0.00,6000.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1662,1332,26,0.00,3428.70,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1663,1333,26,6118.00,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1664,1334,26,0.00,34832.60,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1665,1335,27,0.00,14.58,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1666,1336,27,0.00,18.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1667,1337,27,0.00,72.25,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1668,1338,27,0.00,2672.17,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1669,1339,27,0.00,15.20,'FATHOM.VIDEO        SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1670,1340,27,0.00,99.99,'LINKEDIN SN *3505782LNKD.IN/BILL        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1671,1341,27,0.00,129.82,'GOOGLE*GSUITE LITHIUCC GOOGLE.COM','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1672,1342,27,0.00,64.10,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1673,1343,27,0.00,9.99,'AplPay UBER ONE     help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1674,1344,27,0.00,143.75,'NIC*-FL SUNBIZ.ORG  TALLAHASSEE         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1675,1345,27,0.00,5.53,'WAWA FUEL/CONVENIENCPINELLAS PARK       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1676,1346,27,0.00,20.00,'BT*DIALPAD MEETINGS SAN RAMON           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1677,1347,27,0.00,514.80,'IN *BLUE WATER MARINGULFPORT            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1678,1348,27,0.00,39.49,'FRESH KITCHEN KENNEDTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1679,1349,27,0.00,96.16,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1680,1350,27,0.00,32.99,'DNH*GODADDY#35037227Tempe               AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1681,1351,27,0.00,180.00,'BRIGHT EYES FAMILY V813-7920637         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1682,1352,27,0.00,300.19,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1683,1352,58,300.19,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1684,1353,27,0.00,8.00,'MICROSOFT-G072409147MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1685,1354,27,0.00,30.13,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1686,1355,27,0.00,195.06,'CIRQUE ENTERTAINMENTBRADENTON           FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1687,1356,27,5000.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1688,1357,27,0.00,3.00,'BLINK               AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1689,1358,27,0.00,411.33,'VZWRLSS BILL PAY VE 800-922-0204        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1690,1359,27,0.00,26.88,'KWIK STOP WESTSHORE TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1691,1360,27,0.00,100.00,'HELP.USEMOTION.COM  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1692,1361,27,0.00,10.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1693,1362,27,0.00,1494.00,'AplPay HIMS & HERS HSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1694,1363,27,0.00,58.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1695,1363,58,58.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1696,1364,27,0.00,21.00,'SQSP* INV164321443  NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1697,1365,27,0.00,99.00,'YOAST B.V.*${MERCHANWIJCHEN             NL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1698,1366,27,0.00,33.90,'ZOOM.COM 888-799-966SAN JOSE            CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1699,1367,27,0.00,62.32,'DNH*GODADDY#35123870Tempe               AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1700,1368,27,0.00,117.10,'JETPACK ER6PM31WMA  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1701,1369,27,0.00,48.36,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1702,1370,27,0.00,10.64,'APPLECARE MNTHLY PLARICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1703,1371,27,0.00,94.30,'DNH*GODADDY#35136131Tempe               AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1704,1372,27,0.00,141.29,'DNH*GODADDY#35135959Tempe               AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1705,1373,27,0.00,14.60,'JETPACK HK7DL7CU48  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1706,1374,27,0.00,189.57,'SAM\'S CLUB 6403 6403BRANDON             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1707,1375,27,0.00,229.33,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1708,1375,58,229.33,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1709,1376,27,0.00,59.99,'PADDLE.NET* PREPRODUNEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1710,1377,27,0.00,121.23,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1711,1378,27,0.00,283.39,'JETPACK D9GRT8WNUQ  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1712,1379,27,0.00,3.05,'THE HOME DEPOT      TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1713,1380,27,99.00,0.00,'YOAST B.V.          WIJCHEN             NL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1714,1381,27,0.00,249.95,'SEMRUSH INC         BOSTON              MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1715,1382,27,0.00,18.73,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1716,1383,27,0.00,322.36,'PY *STORQUEST - TAMPTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1717,1384,27,0.00,32.91,'AplPay Uber Trip    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1718,1385,27,0.00,39.99,'ROCKETLAW 877-757-15SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1719,1386,27,0.00,12.95,'CANVA* I04393-492629CAMDEN              DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1720,1387,27,0.00,32.30,'DEAD BOB\'S TOO 40390TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1721,1388,27,0.00,36.80,'PIN CHASERS VETERANSTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1722,1389,27,0.00,38.32,'PIN CHASERS VETERANSTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1723,1390,27,0.00,47.91,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1724,1391,27,0.00,112.23,'LINKEDIN PRE*3707270LNKD.IN/BILL        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1725,1392,27,0.00,365.34,'DNH*GODADDY#35223307Tempe               AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1726,1393,27,1500.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1727,1394,27,0.00,20.00,'AHREFS.COM          SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1728,1395,27,0.00,249.00,'AHREFS.COM          SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1729,1396,27,0.00,211.99,'BESTBUYCOMXXXXXX9403RICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1730,1397,27,0.00,40.00,'LIVEPLAN            EUGENE              OR','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1731,1398,27,0.00,199.17,'AHREFS.COM          SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1732,1399,27,0.00,76.00,'GANDY CITGO 00034666TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1733,1400,27,747.00,0.00,'AplPay HIMS & HERS HSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1734,1400,58,0.00,747.00,'AplPay HIMS & HERS HSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1735,1401,27,0.00,69.00,'PAYPAL *NEXTCART    *****6390           VN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1736,1402,27,0.00,199.00,'IMPORTGENIUS.COM    (855)573-9976       AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1737,1403,27,2000.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1738,1404,27,25000.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1739,1405,27,0.00,203.88,'DNH*GODADDY#35276886Tempe               AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1740,1406,27,5242.70,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1741,1407,27,0.00,95.10,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1742,1408,27,0.00,59.99,'BLS*WWW ARTLIST IO  DOVER               DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1743,1409,27,0.00,40.00,'INAI PTE. LTD.      SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1744,1410,27,0.00,60.00,'AITUBOART           HUNGHOM             HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1745,1411,27,0.00,179.00,'B2B NINJABIGCOMM APHOUSTON TX NATHAN A STARON-13009-NT_ND9V76CY +15128564652 B2B NINJA-BIGCOMM APP HOUSTON TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1746,1412,27,0.00,362.09,'AMZ*WOOT LLC E5R32P0PAY.AMAZON.CO       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1747,1413,27,0.00,225.17,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1748,1413,58,225.17,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1749,1414,27,0.00,9.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1750,1415,27,0.00,35.96,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1751,1416,27,0.00,179.00,'B2B NINJA-BIGCOMM APHOUSTON             TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1752,1417,27,0.00,179.00,'B2B NINJA-BIGCOMM APHOUSTON             TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1753,1418,27,179.00,0.00,'B2B NINJA-BIGCOMM APP                   TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1754,1419,27,537.00,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1755,1420,27,0.00,31.92,'AplPay UBER EATS    HTTPS://HELP.UBER.COCA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1756,1421,27,0.00,11.52,'AplPay UBER THEORIGIHTTPS://HELP.UBER.COCA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1757,1422,27,0.00,15.00,'FIGMA MONTHLY RENEWASAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1758,1423,27,0.00,232.07,'SP CPAP.COM         STAFFORD            TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1759,1423,58,232.07,0.00,'SP CPAP.COM         STAFFORD            TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1760,1424,27,0.00,31.93,'AMAZON.COM          AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1761,1425,27,0.00,132.28,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1762,1426,27,0.00,77.00,'AMAZON.COM          AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1763,1427,27,0.00,69.99,'YITHEMES.COM        SANTA CRUZ DE TENERI','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1764,1428,27,0.00,194.81,'SAM\'S CLUB 6403 6403BRANDON             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1765,1429,27,0.00,59.60,'SAM\'S CLUB 6403 6403BRANDON             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1766,1430,27,0.00,53.24,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1767,1431,27,0.00,16.99,'WALGREENS           TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1768,1432,27,0.00,11.17,'DNH*GODADDY#35403911Tempe               AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1769,1433,27,0.00,399.00,'EIN PRESSWIRE NEWS 0WASHINGTON          DC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1770,1434,27,0.00,52.84,'AplPay FRESH KITCHENTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1771,1435,27,52.02,0.00,'SP CPAP.COM         STAFFORD            TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1772,1435,58,0.00,52.02,'SP CPAP.COM         STAFFORD            TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1773,1436,27,0.00,598.43,'TECO/PEOPLES GAS    813-223-0800        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1774,1437,27,0.00,18.20,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1775,1437,58,18.20,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1776,1438,27,0.00,2.75,'KUBRA/TECO CONV FEE 800-766-6616        NJ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1777,1439,27,0.00,118.05,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1778,1440,27,0.00,200.43,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1779,1440,58,200.43,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1780,1441,27,0.00,29.00,'FIGMENT.SO          NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1781,1442,27,0.00,170.81,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1782,1443,27,0.00,19.99,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1783,1444,27,0.00,23.10,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1784,1445,27,0.00,101.60,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1785,1446,27,0.00,20.00,'AplPay KWIK STOP WESTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1786,1447,27,0.00,137.57,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1787,1448,27,0.00,15.00,'BT*RADIORF*180DAYSUBSAN ANTONIO         TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1788,1449,27,0.00,94.17,'GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1789,1450,27,0.00,2733.00,'HDN*PARRISH LAW, PA SATELLITE BEA       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1790,1451,27,3776.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1791,1452,27,0.00,44.50,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1792,1453,27,0.00,19.06,'AMAZON.COM          AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1793,1454,27,0.00,48.92,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1794,1455,27,0.00,9.99,'AplPay UBER ONE     help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1795,1456,27,0.00,1050.00,'INSURANCE PAYMENT FEDURHAM              NC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1796,1457,27,0.00,75.00,'AplPay JONI\'S PET SATampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1797,1457,58,75.00,0.00,'AplPay JONI\'S PET SATampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1798,1458,27,0.00,513.00,'PIPEDRIVE INC       NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1799,1459,27,0.00,30000.00,'STRATAGEM RISK LLC 9ST PETERSBURG       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1800,1460,27,0.00,10.64,'APPLECARE MNTHLY PLARICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1801,1461,27,0.00,96.33,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1802,1462,27,0.00,166.05,'Extra Space 3639    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1803,1463,27,0.00,29.99,'GOOGLE*TV GOOGLE PAY G.CO HELPPAY#','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1804,1464,27,0.00,325.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1805,1464,58,325.00,0.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1806,1465,27,0.00,25.00,'JACKSON DENTAL, P.A.TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1807,1466,27,0.00,49.01,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1808,1467,27,0.00,4.00,'KORE WIRELESS       ATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1809,1468,27,0.00,13.99,'HOSTINGER* HOSTINGERWILMINGTON          DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1810,1469,27,0.00,124.57,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1811,1470,27,0.00,72.25,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1812,1471,27,0.00,65.00,'DABA NAILS & SPA 941TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1813,1471,58,65.00,0.00,'DABA NAILS & SPA 941TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1814,1472,27,0.00,127.00,'BIGCOMMERCE         AUSTIN              TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1815,1473,27,0.00,2672.17,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1816,1474,27,0.00,14.58,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1817,1475,27,0.00,338.97,'SAM\'S CLUB 6403 6403BRANDON             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1818,1476,27,0.00,110.97,'DNH*GODADDY#35591481Tempe               AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1819,1477,27,0.00,15.20,'FATHOM.VIDEO        SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1820,1478,27,0.00,127.50,'GOOGLE              MOUNTAIN VIEW       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1821,1479,27,0.00,99.99,'LINKEDIN SN *3982298LNKD.IN/BILL        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1822,1480,27,0.00,12875.00,'DEW CADILLAC F&I 000PINELLAS PARK       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1823,1481,27,0.00,9.99,'AplPay UBER ONE     help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1824,1482,27,0.00,1.99,'WALGREENS           TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1825,1483,27,0.00,20.00,'BT*DIALPAD MEETINGS SAN RAMON           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1826,1484,27,0.00,40.00,'AplPay GROUPON, INC.CHICAGO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1827,1485,27,0.00,21.52,'AplPay TAMPA BAY DOWTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1828,1486,27,0.00,22.50,'AplPay GANDY BLVD SMTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1829,1487,27,0.00,8.26,'AplPay TAMPA BAY DOWTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1830,1488,27,0.00,29.34,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1831,1488,58,29.34,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1832,1489,27,0.00,139.44,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1833,1490,27,0.00,45.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1834,1490,58,45.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1835,1491,27,0.00,9.52,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1836,1491,58,9.52,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1837,1492,27,0.00,9.19,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1838,1493,27,0.00,543.58,'DNH*GODADDY#XXXXXXX0480-505-8855        AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1839,1494,27,25000.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1840,1495,27,114.00,0.00,'WISESTAMP.COM       WILMINGTON          DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1841,1496,27,0.00,114.00,'WISESTAMP.COM       WILMINGTON          DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1842,1497,27,0.00,120.00,'CUSTOMESIGNATURE.COMSAN DIEGO           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1843,1498,27,0.00,195.00,'EDUWHERE-KEIKA VENTUDURHAM              NC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1844,1499,27,0.00,38.70,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1845,1499,58,38.70,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1846,1500,27,0.00,83.00,'GANDY CITGO 00034666TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1847,1501,27,0.00,8.00,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1848,1502,27,0.00,3.00,'BLINK               AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1849,1503,27,0.00,600.00,'VZWRLSS BILL PAY VE 800-922-0204        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1850,1504,27,0.00,84.93,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1851,1505,27,6050.01,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1852,1506,27,0.00,7.99,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1853,1507,27,0.00,100.00,'HELP.USEMOTION.COM  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1854,1508,27,0.00,58.50,'AplPay WAWA 5301 000TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1855,1509,27,0.00,21.00,'SQSP* INV168566245  NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1856,1510,27,0.00,24.48,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1857,1511,27,10000.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1858,1512,27,0.00,123.64,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1859,1513,27,0.00,6.82,'WALGREENS           TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1860,1514,27,0.00,51.76,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1861,1515,27,0.00,48.36,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1862,1516,27,0.00,7.70,'AplPay DINOSAUR WORLPLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1863,1516,58,7.70,0.00,'AplPay DINOSAUR WORLPLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1864,1517,27,0.00,979.14,'SPIRIT AIRLINES     SOUTH FLORIDA       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1865,1518,27,0.00,55.27,'DINOSAUR WORLD 00-08PLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1866,1518,58,55.27,0.00,'DINOSAUR WORLD 00-08PLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1867,1519,27,0.00,11.07,'AplPay DINOSAUR WORLPLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1868,1519,58,11.07,0.00,'AplPay DINOSAUR WORLPLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1869,1520,27,0.00,79.85,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1870,1521,27,0.00,21.52,'AplPay TACO MADRE LLPLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1871,1522,27,0.00,57.51,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1872,1523,27,0.00,84.92,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1873,1524,27,0.00,10.64,'APPLECARE MNTHLY PLARICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1874,1525,27,0.00,26.05,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1875,1526,27,0.00,279.87,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1876,1527,27,0.00,15.70,'GENERAL MOTORS      DETROIT             MI','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1877,1528,27,0.00,25.91,'GENERAL MOTORS      DETROIT             MI','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1878,1529,27,0.00,14.67,'JETPACK HRB9EB9UHJ  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1879,1530,27,0.00,12.91,'AplPay DAIRY JOY    Tampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1880,1531,27,0.00,249.95,'BT*SEMRUSH          BOSTON              MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1881,1532,27,0.00,59.99,'PADDLE.NET* PREPRODUNEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1882,1533,27,0.00,192.36,'AIRBNB * HMR8NZ43XB SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1883,1534,27,0.00,990.32,'AIRBNB * HMR8NZ43XB SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1884,1535,27,0.00,33.90,'ZOOM.COM 888-799-966SAN JOSE            CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1885,1536,27,0.00,7.99,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1886,1537,27,0.00,18.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1887,1538,27,0.00,12.95,'CANVA* I04424-697630CAMDEN              DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1888,1539,27,0.00,39.99,'ROCKETLAW 877-757-15SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1889,1540,27,0.00,48.70,'AplPay HARD ROCK BANTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1890,1541,27,0.00,70.13,'AplPay SPROUTS FARMETampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1891,1542,27,0.00,43.70,'AplPay HARD ROCK BANTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1892,1543,27,0.00,322.36,'PY *STORQUEST - TAMPTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1893,1544,27,12500.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1894,1545,27,0.00,20.00,'LIVEPLAN            EUGENE              OR','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1895,1546,27,0.00,112.23,'LINKEDIN PRE*4240022LNKD.IN/BILL        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1896,1547,27,0.00,406.55,'AVIS.COM PREPAY     VIRGINIA BEACH      VA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1897,1548,27,0.00,60.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1898,1548,58,60.00,0.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1899,1549,27,0.00,7.99,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1900,1550,27,0.00,199.00,'IMPORTGENIUS.COM    (855)573-9976       AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1901,1551,27,0.00,4.49,'AplPay SHEETZ 0582  MONROEVILLE         PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1902,1552,27,0.00,148.87,'TEXAS ROADHOUSE #284INDIANA             PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1903,1553,27,0.00,13.72,'AplPay TPA 6126 ChicTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1904,1554,27,0.00,42.26,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1905,1555,27,0.00,29.99,'GOOGLE *YOUTUBE VIDE G.CO/HELPPAY#      CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1906,1556,27,0.00,46.00,'HILTON GARDEN INN ININDIANA             PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1907,1557,27,0.00,0.75,'AplPay WHITE TOWNSHIINDIANA             PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1908,1558,27,0.00,6.75,'AplPay WHITE TOWNSHIINDIANA             PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1909,1559,27,0.00,21.90,'AplPay SHEETZ       INDIANA             PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1910,1560,27,0.00,4.65,'AplPay DUNKIN #34938INDIANA             PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1911,1561,27,0.00,65.72,'AplPay MARTIN\'S FOODINDIANA             PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1912,1562,27,0.00,38.16,'HILTON GARDEN INN 0 INDIANA             PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1913,1563,27,0.00,18.52,'AplPay CHICK FIL A 6PITTSBURGH          PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1914,1564,27,0.00,106.44,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1915,1564,58,106.44,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1916,1565,27,0.00,19.42,'AplPay CHICK FIL A 6PITTSBURGH          PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1917,1566,27,0.00,94.84,'AVIS RENT A CAR     PITTSBURGH          PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1918,1567,27,0.00,49.00,'GET GO              PITTSBURGH          PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1919,1568,27,0.00,40.00,'INAI PTE. LTD.      SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1920,1569,27,0.00,97.02,'PITAP - FB - HR PittPITTSBURGH          PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1921,1570,27,0.00,60.00,'AITUBOART           HUNGHOM             HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1922,1571,27,0.00,9.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1923,1572,27,0.00,450.18,'AMERICAN AIRLINES   800-433-7300        TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1924,1573,27,0.00,450.18,'AMERICAN AIRLINES   800-433-7300        TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1925,1574,27,0.00,450.18,'AMERICAN AIRLINES   800-433-7300        TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1926,1575,27,6200.29,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1927,1576,27,0.00,624.18,'DELTA AIR LINES     ATLANTA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1928,1577,27,0.00,624.18,'DELTA AIR LINES     ATLANTA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1929,1578,27,0.00,26.28,'AplPay CHICK FIL A 6PITTSBURGH          PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1930,1579,27,0.00,624.18,'DELTA AIR LINES     ATLANTA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1931,1580,27,0.00,11.63,'TST* PITTSBURGH - BUPITTSBURGH          PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1932,1581,27,0.00,340.86,'HOTELCOMXXXXXXXX1597HOTELS.COM          WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1933,1582,27,0.00,10.20,'AplPay CAPITOL FILE LAS VEGAS           NV','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1934,1583,27,0.00,11.63,'TST* PITTSBURGH - BUPITTSBURGH          PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1935,1584,27,0.00,343.33,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1936,1585,27,0.00,30.00,'FIGMA MONTHLY RENEWASAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1937,1586,27,624.18,0.00,'DELTA AIR LINES     ATLANTA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1938,1587,27,624.18,0.00,'DELTA AIR LINES     ATLANTA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1939,1588,27,624.18,0.00,'DELTA AIR LINES     ATLANTA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1940,1589,27,0.00,76.71,'PY *PF CHANG\'S 00000ARLINGTON           VA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1941,1590,27,0.00,2.65,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1942,1591,27,0.00,82.98,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1943,1592,27,0.00,239.88,'DNH*GODADDY#XXXXXXX4480-505-8855        AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1944,1593,27,0.00,24.99,'ROCK IT FITNESS 9362TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1945,1593,58,24.99,0.00,'ROCK IT FITNESS 9362TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1946,1594,27,0.00,182.00,'THE STUDY SALON     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1947,1594,58,182.00,0.00,'THE STUDY SALON     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1948,1595,27,0.00,117.38,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1949,1595,58,117.38,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1950,1596,27,0.00,53.24,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1951,1597,27,0.00,89.10,'YOAST B.V.          WIJCHEN             NL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1952,1598,27,0.00,2862.87,'AIRBNB * HMBPS53AYD SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1953,1599,27,0.00,49.00,'SHUTTERSTOCK        NEW YORK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1954,1600,27,0.00,49.00,'SHUTTERSTOCK        NEW YORK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1955,1601,27,0.00,85.22,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1956,1601,58,85.22,0.00,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1957,1602,27,0.00,31.96,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1958,1602,58,31.96,0.00,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1959,1603,27,0.00,45.00,'AplPay GROUPON, INC.CHICAGO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1960,1603,58,45.00,0.00,'AplPay GROUPON, INC.CHICAGO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1961,1604,27,0.00,90.53,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1962,1604,58,90.53,0.00,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1963,1605,27,0.00,126.36,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1964,1605,58,126.36,0.00,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1965,1606,27,0.00,17.90,'CHUCK LAGER AMERICA\'TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1966,1607,27,0.00,11.92,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1967,1608,27,0.00,40.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1968,1608,58,40.00,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1969,1609,27,0.00,9.06,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1970,1609,58,9.06,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1971,1610,27,0.00,101.33,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1972,1610,58,101.33,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1973,1611,27,0.00,29.00,'FIGMENT.SO          NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1974,1612,27,0.00,58.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1975,1612,58,58.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1976,1613,27,0.00,150.00,'AplPay LECADA LLC 00TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1977,1614,27,0.00,99.00,'AplPay GROUPON, INC.CHICAGO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1978,1614,58,99.00,0.00,'AplPay GROUPON, INC.CHICAGO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1979,1615,27,0.00,34.06,'WALMART.COM 80092562BENTONVILLE         AR','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1980,1616,27,0.00,50.00,'AplPay PALMA CEIA HETAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1981,1617,27,0.00,32.50,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1982,1618,27,0.00,148.72,'AplPay IC* ABC FINE SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1983,1619,27,0.00,117.15,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1984,1620,27,0.00,98.10,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1985,1621,27,0.00,57.32,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1986,1622,27,0.00,54.79,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1987,1623,27,0.00,68.07,'AplPay PUBLIX #1688 INDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1988,1624,27,0.00,19.99,'MICROSOFT*ULTIMATE 1MSBILL.INFO         WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1989,1625,27,0.00,28.20,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1990,1626,27,0.00,10.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1991,1626,58,10.00,0.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1992,1627,27,0.00,10.00,'PPY=TAMPA NEUROPSYCHTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1993,1627,58,10.00,0.00,'PPY=TAMPA NEUROPSYCHTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1994,1628,27,0.00,49.77,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1995,1629,27,0.00,114.95,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1996,1630,27,0.00,9.99,'AplPay UBER ONE     help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1997,1631,27,0.00,46.10,'AplPay PUBLIX #1688 INDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1998,1632,27,0.00,94.17,'GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1999,1633,27,0.00,34.44,'COLD STONE CREAMERY INDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2000,1634,27,0.00,340.17,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2001,1634,58,340.17,0.00,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2002,1635,27,0.00,47.08,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2003,1635,58,47.08,0.00,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2004,1636,27,0.00,26.60,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2005,1636,58,26.60,0.00,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2006,1637,27,0.00,10.64,'APPLECARE MNTHLY PLARICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2007,1638,27,0.00,55.46,'WALGREENS           TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2008,1639,27,0.00,13.99,'HOSTINGER* HOSTINGERWILMINGTON          DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2009,1640,27,0.00,2612.17,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2010,1641,27,0.00,72.25,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2011,1642,27,0.00,513.00,'PIPEDRIVE INC       NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2012,1643,27,0.00,14.58,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2013,1644,27,0.00,46.22,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2014,1645,27,0.00,34.74,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2015,1646,27,0.00,228.43,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2016,1647,27,0.00,15.20,'FATHOM.VIDEO        SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2017,1648,27,0.00,166.05,'Extra Space 3639    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2018,1649,27,0.00,64.80,'GOOGLE *GSUITE_LITHICC@GOOGLE.COM       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2019,1650,27,0.00,127.00,'BIGCOMMERCE         AUSTIN              TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2020,1651,27,0.00,99.99,'LINKEDIN SN *2701599LNKD.IN/BILL        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2021,1652,27,0.00,8.40,'USPS.COM CLICKNSHIP 800-344-7779        DC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2022,1653,27,0.00,4.00,'KORE WIRELESS       ATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2023,1654,27,0.00,9.99,'AplPay UBER ONE     help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2024,1655,27,0.00,20.00,'BT*DIALPAD MEETINGS SAN RAMON           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2025,1656,27,0.00,198.00,'ENVATO              CHICAGO             IL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2026,1657,27,0.00,416.00,'MISTER SPARKY 436845BRADENTON           FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2027,1658,27,0.00,109.76,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2028,1659,27,0.00,34.95,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2029,1659,58,34.95,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2030,1660,27,0.00,85.84,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2031,1660,58,85.84,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2032,1661,27,0.00,8.00,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2033,1662,27,0.00,37.28,'TARGET.COM          800-591-3869        MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2034,1663,27,0.00,48.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2035,1664,27,0.00,3.00,'BLINK               AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2036,1665,27,0.00,100.00,'HELP.USEMOTION.COM  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2037,1666,27,0.00,59.95,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2038,1666,58,59.95,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2039,1667,27,0.00,21.00,'SQSP* INV172626226  NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2040,1668,27,0.00,208.05,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2041,1669,27,0.00,7.99,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2042,1670,27,0.00,31.68,'AplPay JFK Ml CASA TAshburn             VA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2043,1671,27,0.00,51.76,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2044,1672,27,0.00,34.07,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2045,1673,27,0.00,48.36,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2046,1674,27,0.00,22.50,'AplPay GANDY BLVD SMTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2047,1675,27,0.00,10.64,'APPLECARE MNTHLY PLARICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2048,1676,27,0.00,28.66,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2049,1677,27,0.00,14.67,'JETPACK RYQ29RWQEY  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2050,1678,27,0.00,49.65,'FLORIDA STRAWBERRY FPLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2051,1678,58,49.65,0.00,'FLORIDA STRAWBERRY FPLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2052,1679,27,0.00,21.00,'AplPay GRIFF\'S CATERPlant City          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2053,1680,27,0.00,23.48,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2054,1680,58,23.48,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2055,1681,27,0.00,249.95,'SEMRUSH INC         BOSTON              MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2056,1682,27,0.00,194.29,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2057,1683,27,0.00,33.90,'ZOOM.COM 888-799-966SAN JOSE            CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2058,1684,27,0.00,59.99,'PADDLE.NET* PREPRODUNEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2059,1685,27,0.00,23.42,'AplPay AMC 9640 ONLILEAWOOD             KS','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2060,1685,58,23.42,0.00,'AplPay AMC 9640 ONLILEAWOOD             KS','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2061,1686,27,0.00,35.50,'AplPay AMC 9640 ONLILEAWOOD             KS','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2062,1686,58,35.50,0.00,'AplPay AMC 9640 ONLILEAWOOD             KS','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2063,1687,27,0.00,12.95,'CANVA* I04452-658981CAMDEN              DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2064,1688,27,0.00,39.99,'ROCKETLAW 877-757-15SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2065,1689,27,0.00,322.36,'PY *STORQUEST - TAMPTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2066,1690,27,0.00,112.23,'LINKEDIN PRE*4819531LNKD.IN/BILL        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2067,1691,27,0.00,20.00,'THE WOMANS GROUP OF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2068,1691,58,20.00,0.00,'THE WOMANS GROUP OF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2069,1692,27,0.00,10.92,'LA TERESITA RESTAURATAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2070,1693,27,0.00,71.41,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2071,1694,27,0.00,71.26,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2072,1694,58,71.26,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2073,1695,27,0.00,8.62,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2074,1696,27,0.00,29.59,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2075,1697,27,0.00,113.82,'AplPay IC* PUBLIX L SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2076,1698,27,0.00,47.02,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2077,1699,27,0.00,20.00,'LIVEPLAN            EUGENE              OR','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2078,1700,27,0.00,199.00,'IMPORTGENIUS.COM    (855)573-9976       AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2079,1701,27,0.00,75.00,'JONI\'S PET SALON, INTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2080,1701,58,75.00,0.00,'JONI\'S PET SALON, INTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2081,1702,27,0.00,16.95,'AplPay PARKMOBILE PaATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2082,1703,27,0.00,98.93,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2083,1704,27,0.00,30.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2084,1704,58,30.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2085,1705,27,0.00,15.98,'SAM\'S CLUB 6403 6403BRANDON             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2086,1706,27,0.00,246.61,'SAM\'S CLUB 6403 6403BRANDON             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2087,1707,27,2783.35,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2088,1708,27,0.00,60.00,'AITUBOART           HUNGHOM             HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2089,1709,27,0.00,2.65,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2090,1710,27,0.00,42.53,'AplPay THE HOME DEPOTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2091,1711,27,0.00,40.00,'INAI PTE. LTD.      SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2092,1712,27,0.00,9.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2093,1713,27,0.00,9.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2094,1714,27,0.00,12.27,'AMAZON.COM          AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2095,1715,27,0.00,58.98,'AplPay SPROUTS FARMETampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2096,1716,27,0.00,38.07,'AplPay TRADER JOE S TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2097,1717,27,0.00,60.00,'FIGMA               SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2098,1718,27,0.00,325.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2099,1718,58,325.00,0.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2100,1719,27,0.00,16.25,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2101,1720,27,0.00,186.93,'DNH*GODADDY#XXXXXXX9480-505-8855        AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2102,1721,27,0.00,80.14,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2103,1722,27,0.00,65.00,'SERENITY HEALS THERAFORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2104,1722,58,65.00,0.00,'SERENITY HEALS THERAFORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2105,1723,27,0.00,53.24,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2106,1724,27,0.00,73.88,'BESTBUYCOMXXXXXX5523RICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2107,1725,27,0.00,119.99,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2108,1726,27,0.00,148.52,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2109,1727,27,0.00,30.00,'AplPay D34 DISNEY ONPALMETTO            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2110,1727,58,30.00,0.00,'AplPay D34 DISNEY ONPALMETTO            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2111,1728,27,0.00,22.05,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2112,1728,58,22.05,0.00,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2113,1729,27,0.00,40.00,'AplPay D34 DISNEY ONPALMETTO            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2114,1729,58,40.00,0.00,'AplPay D34 DISNEY ONPALMETTO            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2115,1730,27,0.00,22.05,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2116,1730,58,22.05,0.00,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2117,1731,27,0.00,28.18,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2118,1731,58,28.18,0.00,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2119,1732,27,0.00,15.44,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2120,1732,58,15.44,0.00,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2121,1733,27,0.00,335.52,'RESTAURANT DEPOT 413TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2122,1733,58,335.52,0.00,'RESTAURANT DEPOT 413TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2123,1734,27,0.00,102.49,'AplPay IC* TOTAL WI SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2124,1735,27,0.00,59.26,'AplPay UBER EATS    HTTPS://HELP.UBER.COCA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2125,1736,27,0.00,129.99,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2126,1737,27,0.00,31.84,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2127,1738,27,0.00,29.00,'FIGMENT.SO          NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2128,1739,27,0.00,6.28,'AplPay DUCKWEED LIQUTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2129,1740,27,0.00,594.00,'AplPay AMTRAK MOBILEWASHINGTON          DC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2130,1741,27,0.00,388.63,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2131,1742,27,0.00,19.99,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2132,1743,27,155.00,0.00,'AplPay AMTRAK MOBILEWASHINGTON          DC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2133,1744,27,0.00,2.99,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2134,1745,27,0.00,94.17,'GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2135,1746,27,0.00,40.00,'DABA NAILS & SPA 941TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2136,1746,58,40.00,0.00,'DABA NAILS & SPA 941TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2137,1747,27,0.00,4.00,'KORE WIRELESS       ATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2138,1748,27,0.00,257.63,'SUSHI SONO 00-080326COLUMBIA            MD','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2139,1749,27,0.00,17.56,'AplPay COLUMBIA CAFETAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2140,1750,27,0.00,513.00,'PIPEDRIVE INC       NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2141,1751,27,0.00,166.05,'Extra Space 3639    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2142,1752,27,0.00,96.18,'AplPay GIANT FOOD   LORTON              VA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2143,1753,27,0.00,138.56,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2144,1754,27,0.00,13.99,'HOSTINGER* HOSTINGERWILMINGTON          DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2145,1755,27,0.00,114.94,'AplPay UBER EATS    HTTPS://HELP.UBER.COCA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2146,1756,27,0.00,319.48,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2147,1757,27,0.00,96.34,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2148,1758,27,0.00,39.07,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2149,1759,27,0.00,127.00,'BIGCOMMERCE         AUSTIN              TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2150,1760,27,0.00,2672.17,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2151,1761,27,0.00,72.25,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2152,1762,27,0.00,28.23,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2153,1763,27,0.00,64.80,'GOOGLE              MOUNTAIN VIEW       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2154,1764,27,0.00,99.99,'LINKEDIN SN P5207806MOUNTAIN VIEW','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2155,1765,27,0.00,336.51,'AplPay TARGET       TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2156,1766,27,0.00,229.90,'AplPay EIOTCLUB     ADMIRALTY           HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2157,1767,27,0.00,122.94,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2158,1768,27,0.00,21.49,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2159,1769,27,0.00,9.99,'AplPay UBER ONE     help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2160,1770,27,8007.36,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2161,1771,27,0.00,20.00,'BT*DIALPAD MEETINGS SAN RAMON           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2162,1772,27,0.00,10.00,'PPY=TAMPA NEUROPSYCHTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2163,1773,27,0.00,106.49,'RING STANDARD PLAN  SANTA MONICA        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2164,1774,27,0.00,366.94,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2165,1775,27,0.00,21.29,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2166,1776,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2167,1777,27,0.00,325.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2168,1778,27,0.00,79.90,'AplPay EIOTCLUB     ADMIRALTY           HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2169,1779,27,0.00,96.80,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2170,1779,58,96.80,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2171,1780,27,0.00,18.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2172,1781,27,0.00,33.85,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2173,1782,27,0.00,88.39,'AplPay IC* PUBLIX L LAKELAND            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2174,1783,27,0.00,8.00,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2175,1784,27,0.00,3.00,'BLINK               AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2176,1785,27,0.00,100.00,'HELP.USEMOTION.COM  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2177,1786,27,0.00,12.31,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2178,1787,27,0.00,62.40,'AplPay MANHATTAN NAITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2179,1788,27,0.00,21.00,'SQSP* INV176792092  NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2180,1789,27,0.00,48.87,'AMAZON.COM          AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2181,1790,27,0.00,500.00,'VZWRLSS BILL PAY VE 800-922-0204        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2182,1791,27,0.00,101.75,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2183,1792,27,0.00,50.00,'PMT*VEHICLETAGREN HITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2184,1793,27,0.00,28.23,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2185,1794,27,0.00,48.36,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2186,1795,27,0.00,33.90,'ZOOM.COM 888-799-966SAN JOSE            CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2187,1796,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2188,1797,27,5000.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2189,1798,27,0.00,14.82,'JETPACK 5HYSMGTE7K  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2190,1799,27,0.00,59.95,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2191,1799,58,59.95,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2192,1800,27,0.00,60.06,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2193,1801,27,0.00,30.49,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2194,1802,27,0.00,249.95,'SEMRUSH INC         BOSTON              MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2195,1803,27,0.00,42.86,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2196,1804,27,0.00,35.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2197,1804,58,35.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2198,1805,27,0.00,53.51,'AplPay DUCKWEED LIQUTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2199,1806,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2200,1807,27,0.00,59.99,'PADDLE.NET* PREPRODUNEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2201,1808,27,0.00,82.50,'AplPay CIRCLE K 0881TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2202,1809,27,0.00,27.15,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2203,1810,27,0.00,29.10,'AMAZON.COM          AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2204,1811,27,0.00,40.81,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2205,1812,27,0.00,29.10,'AMAZON.COM          AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2206,1813,27,0.00,12.95,'CANVA* I04483-837153CAMDEN              DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2207,1814,27,3007.36,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2208,1815,27,0.00,193.97,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2209,1816,27,0.00,39.99,'ROCKETLAW 877-757-15SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2210,1817,27,3000.00,0.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2211,1818,27,0.00,322.36,'PY *STORQUEST - TAMPTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2212,1819,27,0.00,919.91,'AMERICAN EXPRESS TRASEATTLE             WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2213,1820,27,0.00,919.91,'AMERICAN EXPRESS TRASEATTLE             WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2214,1821,27,0.00,28.45,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2215,1822,27,0.00,123.95,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2216,1823,27,0.00,22.35,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2217,1824,27,0.00,349.99,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2218,1825,27,0.00,20.95,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2219,1826,27,0.00,40.75,'WALGREENS           TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2220,1827,27,0.00,406.76,'DELTA AIR LINES     ATLANTA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2221,1828,27,0.00,406.76,'DELTA AIR LINES     ATLANTA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2222,1829,27,0.00,49.98,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2223,1830,27,0.00,112.23,'LINKEDIN PRE P545260MOUNTAIN VIEW','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2224,1831,27,0.00,174.20,'AplPay CARTER S #131TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2225,1831,58,174.20,0.00,'AplPay CARTER S #131TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2226,1832,27,0.00,7.36,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2227,1832,58,7.36,0.00,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2228,1833,27,0.00,21.48,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2229,1833,58,21.48,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2230,1834,27,0.00,68.44,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2231,1835,27,0.00,13.26,'AplPay Uber Trip    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2232,1836,27,2500.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2233,1837,27,0.00,199.00,'IMPORTGENIUS.COM    (855)573-9976       AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2234,1838,27,0.00,10.00,'WALGREENS           TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2235,1839,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2236,1840,27,0.00,49.96,'AplPay THE HOME DEPOTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2237,1841,27,0.00,27.53,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2238,1842,27,0.00,16.23,'AplPay Uber Trip    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2239,1843,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2240,1844,27,0.00,131.80,'AplPay TARGET       TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2241,1845,27,0.00,4800.00,'LEAF HOME WATER SOLUHUDSON              OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2242,1845,58,4800.00,0.00,'LEAF HOME WATER SOLUHUDSON              OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2243,1846,27,0.00,1029.97,'MOD DISPLAYS        HARRISONBURG        VA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2244,1847,27,0.00,60.00,'AITUBOART           HUNGHOM             HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2245,1847,58,60.00,0.00,'AITUBOART           HUNGHOM             HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2246,1848,27,0.00,40.00,'INAI PTE. LTD.      SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2247,1848,58,40.00,0.00,'INAI PTE. LTD.      SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2248,1849,27,0.00,9.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2249,1850,27,0.00,5.31,'AplPay PUBLIX       FORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2250,1851,27,0.00,60.00,'FIGMA               SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2251,1852,27,0.00,17.98,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2252,1853,27,0.00,306.74,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2253,1853,58,306.74,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2254,1854,27,0.00,29.23,'RACETRAC2571  025718FORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2255,1854,58,29.23,0.00,'RACETRAC2571  025718FORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2256,1855,27,0.00,53.24,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2257,1856,27,0.00,59.59,'AplPay PUBLIX       FORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2258,1857,27,8602.49,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2259,1858,27,0.00,9.07,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2260,1858,58,9.07,0.00,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2261,1859,27,9.07,0.00,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2262,1859,58,0.00,9.07,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2263,1860,27,0.00,50.98,'AplPay FORDS GARAGE ESTERO              FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2264,1861,27,0.00,479.88,'DNH*GODADDY#XXXXXXX3480-505-8855        AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2265,1862,27,0.00,55.57,'AplPay PUBLIX       FORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2266,1863,27,6133.28,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2267,1864,27,0.00,47.88,'ELEMENTOR           WILMINGTON          DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2268,1865,27,0.00,99.00,'ELEMENTOR           WILMINGTON          DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2269,1866,27,0.00,30.00,'AplPay A NAILS      FORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2270,1866,58,30.00,0.00,'AplPay A NAILS      FORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2271,1867,27,0.00,415.63,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2272,1868,27,36.69,0.00,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2273,1869,27,0.00,29.00,'FIGMENT.SO          NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2274,1870,27,0.00,38.33,'TARGET.COM          800-591-3869        MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2275,1871,27,0.00,239.63,'TARGET.COM          800-591-3869        MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2276,1872,27,0.00,306.22,'AplPay PRICELN*CROWNNORWALK             CT','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2277,1872,58,306.22,0.00,'AplPay PRICELN*CROWNNORWALK             CT','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2278,1873,27,0.00,44.57,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2279,1874,27,0.00,19.99,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2280,1875,27,0.00,28.81,'AplPay SUBWAY TST EATSIM SHA TSUI EAST  HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2281,1876,27,0.00,257.74,'AplPay Apple Store 9HongKong            HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2282,1877,27,0.00,20.53,'AplPay UBER TRIP    HTTPS://HELP.UBER.COHK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2283,1878,27,0.00,24.39,'AplPay UBER TRIP    HTTPS://HELP.UBER.COHK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2284,1879,27,0.00,18.67,'AplPay UBER TRIP    HTTPS://HELP.UBER.COHK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2285,1880,27,0.00,85.42,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2286,1881,27,0.00,1364.90,'AIRBNB * HMR8NZ43XB SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2287,1882,27,0.00,8.64,'AplPay SUBWAY TST EATSIM SHA TSUI EAST  HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2288,1883,27,0.00,1089.74,'PAYPAL *KAMYUU1105  XXXXXX7733          HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2289,1883,58,1089.74,0.00,'PAYPAL *KAMYUU1105  XXXXXX7733          HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2290,1884,27,0.00,94.17,'GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2291,1885,27,0.00,17.28,'AplPay SUBWAY TST EATSIM SHA TSUI EAST  HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2292,1886,27,0.00,513.00,'PIPEDRIVE INC       NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2293,1887,27,0.00,166.05,'Extra Space 3639    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2294,1888,27,0.00,45.55,'AplPay WHOLEFDS WTP#TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2295,1889,27,0.00,218.11,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2296,1890,27,0.00,13.99,'HOSTINGER* HOSTINGERWILMINGTON          DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2297,1891,27,0.00,72.25,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2298,1892,27,0.00,2672.17,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2299,1893,27,0.00,15.20,'FATHOM.VIDEO        SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2300,1894,27,0.00,64.80,'GOOGLE*GSUITE LITHIUCC GOOGLE.COM','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2301,1895,27,0.00,1.23,'GOOGLE              MOUNTAIN VIEW       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2302,1896,27,217.26,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2303,1896,58,0.00,217.26,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2304,1897,27,72.42,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2305,1897,58,0.00,72.42,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2306,1898,27,0.00,99.99,'LINKEDIN SN P5754303MOUNTAIN VIEW','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2307,1899,27,0.00,296.00,'AplPay BT*GAMETIME  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2308,1899,58,296.00,0.00,'AplPay BT*GAMETIME  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2309,1900,27,0.00,4.00,'KORE WIRELESS       ATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2310,1900,58,4.00,0.00,'KORE WIRELESS       ATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2311,1901,27,0.00,9.99,'AplPay UBER ONE     help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2312,1902,27,0.00,17.82,'AplPay UBER TRIP    HTTPS://HELP.UBER.COHK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2313,1903,27,0.00,42.76,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2314,1904,27,0.00,20.00,'BT*DIALPAD MEETINGS SAN RAMON           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2315,1905,27,0.00,362.10,'AplPay UNIFORM NAMETTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2316,1905,58,362.10,0.00,'AplPay UNIFORM NAMETTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2317,1906,27,0.00,58.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2318,1906,58,58.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2319,1907,27,0.00,2443.53,'AplPay AIRBNB PAYMENSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2320,1908,27,0.00,117.16,'AplPay BACK TO THE FNew York            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2321,1909,27,0.00,28.80,'TST* BAR CARTS-STRAZTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2322,1909,58,28.80,0.00,'TST* BAR CARTS-STRAZTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2323,1910,27,0.00,39.00,'7-ELEVEN 37149 00073TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2324,1911,27,0.00,44.90,'SAM\'S CLUB 4861 4861ST. PETERSBURG      FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2325,1912,27,0.00,831.07,'SAM\'S CLUB 4861 4861ST. PETERSBURG      FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2326,1913,27,0.00,55.08,'AplPay EMPAMAMAS    Tampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2327,1913,58,55.08,0.00,'AplPay EMPAMAMAS    Tampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2328,1914,27,0.00,361.89,'VZWRLSS BILL PAY VE 800-922-0204        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2329,1915,27,0.00,62.98,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2330,1916,27,0.00,101.84,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2331,1917,27,0.00,8.00,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2332,1918,27,0.00,23.61,'AplPay TARGET       TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2333,1919,27,0.00,33.65,'PMC - PAID PARKING  NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2334,1920,27,0.00,19.99,'CKO*WONDERSHARE 2079HK                  HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2335,1921,27,0.00,11.50,'AplPay VALET TIPS   NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2336,1921,58,11.50,0.00,'AplPay VALET TIPS   NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2337,1922,27,0.00,3.00,'BLINK               AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2338,1923,27,0.00,31.90,'AplPay 7-ELEVEN 3714TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2339,1924,27,0.00,65.51,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2340,1925,27,0.00,100.00,'HELP.USEMOTION.COM  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2341,1926,27,0.00,3.99,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2342,1927,27,0.00,52.17,'AplPay TARGET       TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2343,1928,27,0.00,13.38,'AplPay MCDONALD\'S M2TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2344,1929,27,0.00,998.00,'CVENT LEADCAPTURE   MC LEAN             VA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2345,1930,27,0.00,21.00,'SQSP* INV180951011  NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2346,1930,58,21.00,0.00,'SQSP* INV180951011  NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2347,1931,27,0.00,46.43,'PMC - PAID PARKING  NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2348,1932,27,0.00,217.00,'THE STUDY SALON     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2349,1933,27,0.00,11.50,'AplPay VALET TIPS   NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2350,1933,58,11.50,0.00,'AplPay VALET TIPS   NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2351,1934,27,0.00,48.36,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2352,1935,27,0.00,33.90,'ZOOM.COM 888-799-966SAN JOSE            CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2353,1936,27,0.00,59.95,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2354,1936,58,59.95,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2355,1937,27,0.00,46.43,'PMC - PAID PARKING  NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2356,1938,27,0.00,11.50,'VALET TIPS          NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2357,1938,58,11.50,0.00,'VALET TIPS          NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2358,1939,27,0.00,15.12,'JETPACK XSV3MCJPAA  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2359,1940,27,0.00,48.75,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2360,1941,27,0.00,249.95,'BT*SEMRUSH          BOSTON              MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2361,1942,27,0.00,1746.73,'AIRBNB * HMQBMSA5AN SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2362,1943,27,0.00,6.22,'AplPay DUCKWEED LIQUTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2363,1944,27,0.00,59.99,'PADDLE.NET* PREPRODUNEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2364,1945,27,0.00,41.13,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2365,1945,58,41.13,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2366,1946,27,0.00,12.95,'CANVA* I04513-712612CAMDEN              DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2367,1947,27,0.00,243.84,'AplPay PUBLIX #1688 INDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2368,1948,27,0.00,39.99,'ROCKETLAW 877-757-15SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2369,1949,27,0.00,66.44,'AplPay OCEANSIDE PIZINDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2370,1950,27,0.00,322.36,'PY *STORQUEST - TAMPTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2371,1951,27,59.95,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2372,1951,58,0.00,59.95,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2373,1952,27,59.95,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2374,1952,58,0.00,59.95,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2375,1953,27,59.95,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2376,1953,58,0.00,59.95,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2377,1954,27,0.00,10.42,'AplPay CROWNE PLAZA MELBOURNE           FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2378,1955,27,0.00,619.49,'VZWRLSS BILL PAY VE 800-922-0204        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2379,1956,27,0.00,49.97,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2380,1957,27,0.00,85.59,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2381,1958,27,0.00,129.99,'BESTBUYCOMXXXXXX3611RICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2382,1959,27,0.00,79.96,'AplPay PUBLIX #1688 INDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2383,1960,27,0.00,112.23,'LINKEDIN PRE P598700MOUNTAIN VIEW','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2384,1961,27,0.00,199.00,'IMPORTGENIUS.COM    (855)573-9976       AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2385,1962,27,0.00,1440.26,'AIRBNB * HMQBMSA5AN SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2386,1963,27,0.00,54.56,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2387,1964,27,0.00,48.77,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2388,1964,58,48.77,0.00,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2389,1965,27,0.00,173.45,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2390,1965,58,173.45,0.00,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2391,1966,27,0.00,11.12,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2392,1966,58,11.12,0.00,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2393,1967,27,0.00,37.32,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2394,1968,27,6250.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2395,1969,27,6250.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250516 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX1796687 EED:250516 IND ID:W9994 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6687 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2396,1970,27,0.00,2.75,'KUBRA/TECO CONV FEE 800-766-6616        NJ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2397,1971,27,0.00,664.97,'TECO/PEOPLES GAS    813-223-0800        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2398,1972,27,0.00,19.55,'AplPay 7-ELEVEN 1011INDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2399,1973,27,0.00,56.88,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2400,1973,58,56.88,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2401,1974,27,0.00,312.84,'AplPay IC* INSTACARTLAKELAND            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2402,1974,58,312.84,0.00,'AplPay IC* INSTACARTLAKELAND            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2403,1975,27,0.00,122.07,'AplPay PUBLIX #1688 INDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2404,1976,27,0.00,60.00,'AITUBO.AI           HUNGHOM             HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2405,1976,58,60.00,0.00,'AITUBO.AI           HUNGHOM             HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2406,1977,27,0.00,40.00,'INAI PTE. LTD.      SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2407,1977,58,40.00,0.00,'INAI PTE. LTD.      SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2408,1978,27,0.00,9.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2409,1979,27,0.00,27.95,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2410,1980,27,0.00,60.00,'FIGMA               SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2411,1981,27,0.00,14.34,'AplPay MOOS SOFT SERINDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2412,1982,27,0.00,11.63,'AplPay MOOS SOFT SERINDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2413,1983,27,0.00,69.26,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2414,1983,58,69.26,0.00,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2415,1984,27,0.00,39.37,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2416,1984,58,39.37,0.00,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2417,1985,27,0.00,52.05,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2418,1986,27,0.00,328.01,'AMAZON.COM          AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2419,1987,27,0.00,68.76,'AplPay OCEANSIDE PIZINDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2420,1988,27,0.00,53.24,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2421,1989,27,0.00,7.49,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2422,1989,58,7.49,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2423,1990,27,0.00,1.95,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2424,1990,58,1.95,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2425,1991,27,0.00,13.49,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2426,1991,58,13.49,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2427,1992,27,0.00,7.99,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2428,1993,27,0.00,8.18,'AplPay MCDONALDS OF ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2429,1994,27,0.00,5.45,'AplPay MCDONALD\'S   MELBOURNE           FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2430,1995,27,0.00,9.07,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2431,1995,58,9.07,0.00,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2432,1996,27,9.07,0.00,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2433,1996,58,0.00,9.07,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2434,1997,27,0.00,68.11,'AplPay SP REEF.COM  NEWTON              MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2435,1997,58,68.11,0.00,'AplPay SP REEF.COM  NEWTON              MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2436,1998,27,0.00,247.47,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2437,1999,27,0.00,8.28,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2438,1999,58,8.28,0.00,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2439,2000,27,0.00,29.37,'MACYS   .COM 0000001MASON               OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2440,2000,58,29.37,0.00,'MACYS   .COM 0000001MASON               OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2441,2001,27,0.00,25.00,'PAY* ANGI-MAY23     INDIANAPOLIS        IN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2442,2001,58,25.00,0.00,'PAY* ANGI-MAY23     INDIANAPOLIS        IN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2443,2002,27,25.00,0.00,'PAY* ANGI-MAY23                         IN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2444,2002,58,0.00,25.00,'PAY* ANGI-MAY23                         IN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2445,2003,27,0.00,47.83,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2446,2004,27,0.00,68.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2447,2004,58,68.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2448,2005,27,0.00,325.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2449,2006,27,0.00,10.00,'SMC # 67065         ST. PETERSBURG      FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2450,2007,27,0.00,21.28,'APPLECARE PLAN026104RICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2451,2008,27,0.00,19.46,'7-ELEVEN 37149 00073TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2452,2009,27,0.00,29.00,'FIGMENT.SO          NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2453,2010,27,0.00,1387.34,'PAYPAL *KAMYUU1105  XXXXXX7733          HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2454,2010,58,1387.34,0.00,'PAYPAL *KAMYUU1105  XXXXXX7733          HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2455,2011,27,0.00,19.99,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2456,2012,27,0.00,6.22,'AplPay DUCKWEED LIQUTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2457,2013,27,0.00,23.52,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2458,2014,27,0.00,515.67,'BT*MYRIAD WOMEN\'S HESOUTH SAN FRANCISCO CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2459,2014,58,515.67,0.00,'BT*MYRIAD WOMEN\'S HESOUTH SAN FRANCISCO CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2460,2015,27,0.00,69.51,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2461,2016,27,0.00,13.67,'AplPay MCDONALD\'S   GRAPEVINE           TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2462,2017,27,0.00,83.38,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2463,2018,27,8500.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2464,2019,27,0.00,94.17,'GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2465,2020,27,0.00,187.76,'HOMEDEPOT.COM       800-430-3376        GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2466,2021,27,0.00,74.31,'AplPay JONI\'S PET SATAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2467,2021,58,74.31,0.00,'AplPay JONI\'S PET SATAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2468,2022,27,0.00,21.28,'APPLECARE PLAN026104RICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2469,2023,27,0.00,10.00,'PPY=TAMPA NEUROPSYCHTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2470,2024,27,0.00,86.07,'HOMEDEPOT.COM       800-430-3376        GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2471,2025,27,0.00,513.00,'PIPEDRIVE INC       NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2472,2026,27,0.00,10.64,'APPLECARE PLAN026104RICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2473,2027,27,0.00,166.05,'Extra Space 3639    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2474,2028,27,0.00,40.88,'AplPay FK WESTSHORE TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2475,2028,58,40.88,0.00,'AplPay FK WESTSHORE TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2476,2029,27,0.00,26.61,'AMAZON.COM          AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2477,2030,27,0.00,106.11,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2478,2031,27,0.00,13.99,'HOSTINGER* HOSTINGERWILMINGTON          DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2479,2032,27,0.00,4.00,'KORE WIRELESS       ATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2480,2033,27,0.00,49.00,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2481,2034,27,0.00,77.49,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2482,2034,58,77.49,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2483,2035,27,0.00,315.13,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2484,2035,58,315.13,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2485,2036,27,0.00,10.31,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2486,2037,27,0.00,68.01,'AplPay THE HOME DEPOTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2487,2038,27,0.00,2672.17,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2488,2039,27,0.00,72.25,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2489,2040,27,0.00,15.20,'FATHOM.VIDEO        SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2490,2041,27,0.00,68.89,'GOOGLE *CLOUD MV2CNP G.CO/HELPPAY#      CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2491,2042,27,0.00,67.65,'GOOGLE*GSUITE_LITHIUMOUNTAIN VIEW       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2492,2043,27,0.00,99.99,'LINKEDIN SN P6329569MOUNTAIN VIEW','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2493,2044,27,0.00,49.53,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2494,2045,27,0.00,10.00,'TELADOC 0259        LEWISVILLE          TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2495,2045,58,10.00,0.00,'TELADOC 0259        LEWISVILLE          TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2496,2046,27,0.00,9.99,'AplPay UBER ONE     help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2497,2047,27,0.00,20.00,'BT*DIALPAD MEETINGS SAN RAMON           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2498,2048,27,0.00,97.84,'WAL-MART SUPERCENTERTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2499,2049,27,0.00,38.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2500,2050,27,0.00,21.39,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2501,2051,27,0.00,27.00,'AplPay GREAT EXPLORAST PETERSBURG       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2502,2051,58,27.00,0.00,'AplPay GREAT EXPLORAST PETERSBURG       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2503,2052,27,0.00,102.28,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2504,2053,27,3750.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2505,2054,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2506,2055,27,0.00,1665.18,'AplPay ASHLEY HOMESTTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2507,2056,27,0.00,16931.41,'AplPay ASHLEY HOMESTTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2508,2057,27,5000.00,0.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2509,2058,27,0.00,499.00,'BONFIRE PREMIUM VENDOAKVILLE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2510,2059,27,0.00,90.85,'AplPay SPROUTS FARMETampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2511,2059,58,90.85,0.00,'AplPay SPROUTS FARMETampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2512,2060,27,0.00,74.50,'7-ELEVEN 38123 00073ST PETERSBURG       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2513,2061,27,0.00,30.00,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2514,2062,27,0.00,8.00,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2515,2063,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2516,2064,27,0.00,3.00,'BLINK               AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2517,2065,27,0.00,138.51,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2518,2066,27,0.00,4.17,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2519,2067,27,15000.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2520,2068,27,0.00,21.00,'SQSP* INV185094968  NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2521,2068,58,21.00,0.00,'SQSP* INV185094968  NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2522,2069,27,0.00,59.09,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2523,2070,27,0.00,24.48,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2524,2071,27,499.00,0.00,'BONFIRE PREMIUM VENDOAKVILLE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2525,2071,58,0.00,499.00,'BONFIRE PREMIUM VENDOAKVILLE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2526,2072,27,0.00,27.37,'AplPay IC* INSTACARTLAKELAND            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2527,2072,58,27.37,0.00,'AplPay IC* INSTACARTLAKELAND            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2528,2073,27,0.00,48.36,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2529,2074,27,0.00,11.12,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2530,2075,27,0.00,45.05,'HOOTERS OF SOUTH TAMTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2531,2076,27,0.00,10.74,'APPLECARE MNTHLY PLARICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2532,2077,27,0.00,59.08,'SAM\'S CLUB 6403 6403BRANDON             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2533,2078,27,0.00,318.66,'SAM\'S CLUB 6403 6403BRANDON             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2534,2079,27,0.00,19.99,'GOOGLE*YOUTUBE VIDEO G.CO HELPPAY#','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2535,2080,27,0.00,15.34,'JETPACK WERLSWSBW4  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2536,2081,27,0.00,7.99,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2537,2082,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2538,2083,27,0.00,1084.35,'SPIRIT AIRLINES     SOUTH FLORIDA       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2539,2084,27,0.00,42.44,'MACYS MARKETPLACE 00MASON               OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2540,2084,58,42.44,0.00,'MACYS MARKETPLACE 00MASON               OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2541,2085,27,0.00,249.95,'BT*SEMRUSH          BOSTON              MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2542,2086,27,0.00,14.46,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2543,2087,27,0.00,59.99,'PADDLE.NET* PREPRODUNEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2544,2088,27,0.00,380.00,'RELUME.IO           DURAL               AU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2545,2089,27,0.00,41.48,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2546,2090,27,0.00,325.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2547,2091,27,0.00,325.32,'PY *STORQUEST - TAMPTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2548,2092,27,0.00,57.30,'CHUCK LAGER AMERICA\'TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2549,2092,58,57.30,0.00,'CHUCK LAGER AMERICA\'TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2550,2093,27,0.00,129.39,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2551,2094,27,0.00,14.11,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2552,2095,27,0.00,65.00,'SERENITY HEALS THERAFORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2553,2095,58,65.00,0.00,'SERENITY HEALS THERAFORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2554,2096,27,0.00,8.40,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2555,2097,27,0.00,112.23,'LINKEDIN PRE P655876MOUNTAIN VIEW','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2556,2098,27,0.00,6.22,'AplPay DUCKWEED LIQUTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2557,2099,27,0.00,15.01,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2558,2100,27,0.00,8.45,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2559,2101,27,0.00,9.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2560,2102,27,0.00,7.19,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2561,2102,58,7.19,0.00,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2562,2103,27,0.00,153.52,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2563,2104,27,0.00,7.99,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2564,2105,27,0.00,12.87,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2565,2106,27,0.00,64.38,'AplPay THE HOME DEPOTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2566,2107,27,0.00,58.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2567,2107,58,58.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2568,2108,27,0.00,9.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2569,2109,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2570,2110,27,0.00,20.00,'FIGMA               SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2571,2111,27,0.00,28.23,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2572,2112,27,0.00,260.19,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2573,2112,58,260.19,0.00,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2574,2113,27,0.00,64.49,'AplPay DUCKWEED LIQUTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2575,2114,27,0.00,15.00,'AplPay TOUCHTUNES MUSCHAUMBURG          IL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2576,2114,58,15.00,0.00,'AplPay TOUCHTUNES MUSCHAUMBURG          IL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2577,2115,27,0.00,331.37,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2578,2115,58,331.37,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2579,2116,27,0.00,54.98,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2580,2117,27,0.00,12.00,'AplPay PIN CHASERS VTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2581,2118,27,0.00,12.84,'AplPay PIN CHASERS VTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2582,2119,27,0.00,8.56,'AplPay PIN CHASERS VTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2583,2120,27,0.00,23.28,'PIN CHASERS VETERANSTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2584,2121,27,0.00,22.20,'PIN CHASERS VETERANSTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2585,2122,27,0.00,9.07,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2586,2122,58,9.07,0.00,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2587,2123,27,9.07,0.00,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2588,2123,58,0.00,9.07,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2589,2124,27,0.00,53.74,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2590,2124,58,53.74,0.00,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2591,2125,27,0.00,7.34,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2592,2126,27,0.00,9.57,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2593,2127,27,0.00,64.49,'AplPay DUCKWEED LIQUTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2594,2128,27,0.00,28.23,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2595,2129,27,0.00,56.35,'AplPay CHILL GRILL HTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2596,2130,27,0.00,13.05,'DAVE & BUSTERS #120 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2597,2131,27,0.00,186.46,'DAVE & BUSTERS #120 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2598,2132,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2599,2133,27,0.00,0.39,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2600,2134,27,0.00,19.99,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2601,2135,27,0.00,82.64,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2602,2136,27,0.00,27.39,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2603,2137,27,0.00,8.59,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2604,2138,27,0.00,94.17,'GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2605,2139,27,0.00,31.61,'MCDONALD\'S          ROMULUS             MI','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2606,2140,27,0.00,19.84,'HAMLIN PUB 650000006SHELBY TOWNSH       MI','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2607,2141,27,0.00,70.46,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2608,2141,58,70.46,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2609,2142,27,0.00,167.67,'Extra Space 3639    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2610,2143,27,0.00,4.00,'KORE WIRELESS       ATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2611,2144,27,0.00,10.74,'APPLECARE MNTHLY PLARICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2612,2145,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2613,2146,27,0.00,6.22,'AplPay DUCKWEED LIQUTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2614,2147,27,0.00,72.25,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2615,2148,27,0.00,2672.17,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2616,2149,27,0.00,81.95,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2617,2150,27,0.00,20.00,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2618,2151,27,0.00,66.69,'TST* BUDDY\'S PIZZA -DEARBORN            MI','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2619,2152,27,0.00,99.99,'LINKEDIN SN P6835902MOUNTAIN VIEW','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2620,2153,27,0.00,2895.28,'PROPAY RESIDENTIAL RTampa               FL\n\nHOA Special Assessment','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2621,2154,27,0.00,554.49,'JEWELERS-MUTUAL-PMNT800-558-6411        WI','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2622,2155,27,0.00,5.61,'GOOGLE*CLOUD QCMVKK  G.CO HELPPAY#','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2623,2156,27,0.00,337.18,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2624,2157,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2625,2158,27,0.00,9.99,'AplPay UBER ONE     help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2626,2159,27,0.00,20.00,'BT*DIALPAD MEETINGS SAN RAMON           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2627,2160,27,0.00,21.98,'SPIRIT AIRLINES ONBOIRVING              TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2628,2161,27,42.44,0.00,'MACYS MARKETPLACE 00MASON               OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2629,2162,27,0.00,42.99,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2630,2163,27,0.00,42.99,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2631,2164,27,0.00,38.58,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2632,2165,27,0.00,142.75,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2633,2166,27,0.00,5.04,'MCDONALD\'S M2086 000TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2634,2167,27,0.00,14.11,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2635,2168,27,0.00,50.15,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2636,2169,27,0.00,48.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2637,2170,27,0.00,209.51,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2638,2171,27,0.00,3.00,'BLINK               AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2639,2172,27,0.00,3.99,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2640,2173,27,0.00,10.74,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2641,2174,27,0.00,25.48,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2642,2175,27,0.00,21.00,'SQSP* INV189046655  NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2643,2176,27,0.00,887.87,'VZWRLSS BILL PAY VE 800-922-0204        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2644,2177,27,0.00,42.34,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2645,2178,27,0.00,35.40,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2646,2179,27,0.00,48.36,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2647,2180,27,0.00,33.00,'BT*DD *QWENCHJUICE  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2648,2181,27,0.00,10.75,'AplPay DRNK & QWENCHTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2649,2182,27,0.00,10.74,'APPLECARE MNTHLY PLARICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2650,2183,27,0.00,15.36,'JETPACK QNACXGGHAX  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2651,2184,27,0.00,149.31,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2652,2185,27,0.00,50.98,'AplPay CARTER S #131TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2653,2185,58,50.98,0.00,'AplPay CARTER S #131TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2654,2186,27,0.00,14.04,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2655,2187,27,0.00,59.99,'PADDLE.NET* PREPRODUNEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2656,2188,27,59.99,0.00,'PADDLE.NET* PREPRODUNEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2657,2189,27,0.00,7.19,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2658,2190,27,0.00,35.75,'AplPay SPROUTS FARMETampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2659,2191,27,0.00,81.95,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2660,2192,27,0.00,15.48,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2661,2193,27,0.00,325.32,'PY *STORQUEST - TAMPTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2662,2194,27,0.00,176.59,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2663,2195,27,0.00,57.98,'AplPay IC* INSTACARTLAKELAND            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2664,2196,27,0.00,87.00,'AplPay MANHATTAN NAITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2665,2197,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2666,2198,27,0.00,112.23,'LINKEDIN PRE P702474MOUNTAIN VIEW','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2667,2199,27,0.00,8.40,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2668,2200,27,0.00,103.74,'SPORT CLIPS - FL111 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2669,2200,58,103.74,0.00,'SPORT CLIPS - FL111 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2670,2201,27,0.00,28.23,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2671,2202,27,0.00,634.24,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2672,2203,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2673,2204,27,0.00,35.09,'AplPay TARGET       TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2674,2205,27,0.00,10.00,'TELADOC 0259        LEWISVILLE          TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2675,2205,58,10.00,0.00,'TELADOC 0259        LEWISVILLE          TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2676,2206,27,0.00,101.87,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2677,2207,27,0.00,48.35,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2678,2208,27,0.00,275.39,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2679,2209,27,0.00,105.99,'713 TAMPA DALE MABRYTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2680,2210,27,0.00,99.96,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2681,2211,27,0.00,5.04,'AplPay MCDONALD\'S M2TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2682,2212,27,0.00,10.49,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2683,2213,27,0.00,29.98,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2684,2214,27,0.00,9.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2685,2215,27,9500.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250718 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX5506447 EED:250718 IND ID:W8910 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6447 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2686,2216,27,0.00,178.10,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2687,2217,27,0.00,29.00,'LATE FEE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2688,2218,27,0.00,20.00,'FIGMA               SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2689,2219,27,0.00,20.75,'WALGREENS           TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2690,2220,27,0.00,10.00,'TELADOC 0259        LEWISVILLE          TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2691,2220,58,10.00,0.00,'TELADOC 0259        LEWISVILLE          TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2692,2221,27,0.00,371.80,'AplPay ZENOTIUSA_POSTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2693,2222,27,0.00,28.23,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2694,2223,27,0.00,75.40,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2695,2224,27,0.00,25.52,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2696,2225,27,0.00,9.07,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2697,2225,58,9.07,0.00,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2698,2226,27,0.00,50.19,'AplPay LITTLE CAESARTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2699,2227,27,0.00,53.74,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2700,2228,27,0.00,4059.35,'VRBO                512-759-0902        TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2701,2229,27,9.07,0.00,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2702,2229,58,0.00,9.07,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2703,2230,27,0.00,89.00,'CSA-GGA-DAM/TRIPINSUSAN DIEGO           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2704,2231,27,0.00,127.97,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2705,2232,27,0.00,99.00,'IC* INSTACART*SUBSCRSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2706,2233,27,0.00,354.00,'GiftHealth*LillyDire833-6144438         OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2707,2234,27,0.00,11.18,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2708,2235,27,0.00,11.59,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2709,2236,27,0.00,33.10,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2710,2237,27,0.00,27.62,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2711,2238,27,0.00,19.99,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2712,2239,27,0.00,236.68,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2713,2240,27,0.00,10.00,'WALGREENS           TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2714,2241,27,0.00,14.36,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2715,2242,27,0.00,562.80,'SAM\'S CLUB 6403 6403BRANDON             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2716,2243,27,0.00,20.00,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2717,2244,27,0.00,133.88,'SAM\'S CLUB 6403 6403BRANDON             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2718,2245,27,0.00,19.34,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2719,2246,27,0.00,94.17,'GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2720,2247,27,0.00,107.15,'AplPay IC* INSTACARTLAKELAND            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2721,2248,27,0.00,10.00,'AplPay BOSSY LEMON  Tampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2722,2249,27,0.00,28.23,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2723,2250,27,0.00,10.74,'APPLECARE MNTHLY PLARICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2724,2251,27,0.00,471.35,'FREIGHTQUOTE.COM INCKANSAS CITY         MO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2725,2252,27,0.00,179.06,'Extra Space 3639    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2726,2253,27,0.00,14.36,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2727,2254,27,0.00,101.40,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2728,2255,27,0.00,4.00,'KORE WIRELESS       ATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2729,2256,27,0.00,29.99,'WALGREENS           TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2730,2257,27,0.00,37.78,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2731,2258,27,0.00,72.25,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2732,2259,27,0.00,20.35,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2733,2260,27,0.00,68.00,'AplPay MANHATTAN NAITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2734,2261,27,0.00,2672.17,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2735,2262,27,0.00,28.90,'GOOGLE *CLOUD PH6XZP G.CO/HELPPAY#      CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2736,2263,27,0.00,75.44,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2737,2264,27,0.00,159.54,'AplPay IC* INSTACARTLAKELAND            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2738,2265,27,0.00,7.34,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2739,2266,27,0.00,15.98,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2740,2267,27,0.00,9.99,'AplPay UBER ONE     help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2741,2268,27,0.00,14.11,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2742,2269,27,0.00,19.77,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2743,2270,27,0.00,20.00,'BT*DIALPAD MEETINGS SAN RAMON           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2744,2271,27,0.00,146.27,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2745,2272,27,0.00,6.89,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2746,2273,27,20.00,0.00,'BT*DIALPAD MEETINGS SAN RAMON           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2747,2274,27,0.00,280.00,'AplPay LECADA LLC 00TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2748,2275,27,0.00,34.82,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2749,2276,27,0.00,60.42,'AplPay TARGET       TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2750,2277,27,0.00,61.43,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2751,2278,27,0.00,8.93,'AplPay STARBUCKS STOTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2752,2279,27,0.00,23.43,'AplPay SPROUTS FARMETampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2753,2280,27,0.00,14.80,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2754,2281,27,0.00,28.98,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2755,2282,27,0.00,39.95,'PADDLE.NET* MACPAW.CNEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2756,2283,27,0.00,31.65,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2757,2284,27,0.00,7.34,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2758,2285,27,0.00,3.00,'BLINK               AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2759,2286,27,0.00,21.00,'SQSP* WEBSIT#1931741NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2760,2286,58,21.00,0.00,'SQSP* WEBSIT#1931741NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2761,2287,27,0.00,79.57,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2762,2288,27,0.00,63.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2763,2288,58,63.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2764,2289,27,32.24,0.00,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2765,2290,27,0.00,20.19,'AplPay TARGET       TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2766,2291,27,0.00,28.23,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2767,2292,27,0.00,21.70,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2768,2293,27,0.00,65.00,'SERENITY HEALS THERAFORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2769,2293,58,65.00,0.00,'SERENITY HEALS THERAFORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2770,2294,27,0.00,48.36,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2771,2295,27,0.00,10.74,'APPLECARE MNTHLY PLARICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2772,2296,27,0.00,158.00,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2773,2296,58,158.00,0.00,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2774,2297,27,0.00,59.86,'AplPay ZITNIK TRAINSPINELLAS PARK       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2775,2297,58,59.86,0.00,'AplPay ZITNIK TRAINSPINELLAS PARK       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2776,2298,27,0.00,152.16,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2777,2299,27,0.00,14.11,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2778,2300,27,0.00,13.78,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2779,2301,27,0.00,82.95,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2780,2302,27,0.00,34.35,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2781,2303,27,0.00,100.56,'AplPay TARGET       TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2782,2304,27,0.00,322.36,'PY *STORQUEST - TAMPTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2783,2305,27,0.00,6.89,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2784,2306,27,0.00,49.98,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2785,2307,27,0.00,112.23,'LINKEDIN PRE P756314MOUNTAIN VIEW','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2786,2308,27,0.00,22.10,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2787,2309,27,0.00,8.40,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2788,2310,27,0.00,504.00,'GiftHealth*LillyDire833-6144438         OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2789,2310,58,504.00,0.00,'GiftHealth*LillyDire833-6144438         OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2790,2311,27,0.00,34.84,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2791,2312,27,0.00,36.37,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2792,2313,27,0.00,114.67,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2793,2314,27,0.00,262.24,'AplPay PUBLIX #1688 INDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2794,2315,27,0.00,89.80,'AplPay ABC FINE WINEINDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2795,2316,27,0.00,5.98,'AplPay ABC FINE WINEINDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2796,2317,27,16931.41,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2797,2318,27,29.00,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2798,2319,27,0.00,127.03,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2799,2319,58,127.03,0.00,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2800,2320,27,0.00,12.83,'AplPay 5600 NORTH HAMELBOURNE           FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2801,2320,58,12.83,0.00,'AplPay 5600 NORTH HAMELBOURNE           FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2802,2321,27,0.00,9.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2803,2322,27,0.00,77.13,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2804,2323,27,0.00,126.84,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2805,2324,27,0.00,139.80,'AplPay OCEANSIDE PIZINDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2806,2325,27,0.00,9.07,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2807,2325,58,9.07,0.00,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2808,2326,27,9.07,0.00,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2809,2326,58,0.00,9.07,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2810,2327,27,0.00,53.74,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2811,2328,27,0.00,22.93,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2812,2329,27,0.00,152.10,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2813,2329,58,152.10,0.00,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2814,2330,27,0.00,314.35,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2815,2331,27,0.00,9.01,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2816,2332,27,0.00,4061.33,'SHOGUN              COVINA              CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2817,2333,27,0.00,28.23,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2818,2334,27,0.00,29.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2819,2335,27,0.00,101.49,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2820,2335,58,101.49,0.00,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2821,2336,27,0.00,17.73,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2822,2336,58,17.73,0.00,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2823,2337,27,0.00,9.19,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2824,2338,27,4061.33,0.00,'SHOGUN              COVINA              CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2825,2339,27,0.00,145.45,'AplPay TARGET       TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2826,2340,27,0.00,19.99,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2827,2341,27,0.00,850.00,'THE WOMANS GROUP OF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2828,2341,58,850.00,0.00,'THE WOMANS GROUP OF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2829,2342,27,0.00,80.00,'THE WOMANS GROUP OF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2830,2342,58,80.00,0.00,'THE WOMANS GROUP OF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2831,2343,27,0.00,166.96,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2832,2344,27,0.00,6.89,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2833,2345,27,0.00,34.98,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2834,2346,27,0.00,9.19,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2835,2347,27,9.13,0.00,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2836,2347,58,0.00,9.13,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2837,2348,27,0.00,36.29,'WAL-MART SUPERCENTERTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2838,2349,27,0.00,126.20,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2839,2350,27,0.00,7.00,'AplPay TOUCHTUNES MUSCHAUMBURG          IL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2840,2350,58,7.00,0.00,'AplPay TOUCHTUNES MUSCHAUMBURG          IL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2841,2351,27,0.00,60.23,'PY *PDQ - SOUTH TAMPTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2842,2351,58,60.23,0.00,'PY *PDQ - SOUTH TAMPTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2843,2352,27,1200.00,0.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2844,2353,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2845,2354,27,0.00,10.74,'APPLECARE MNTHLY PLARICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2846,2355,27,0.00,4.00,'KORE WIRELESS       ATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2847,2356,27,0.00,179.06,'Extra Space 3639    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2848,2357,27,0.00,29.99,'WALMART.COM         WALMART.COM         AR','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2849,2358,27,1500.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250829 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX6353453 EED:250829 IND ID:M9752 IND NAME:NATHAN STARON ER AM TRN: XXXXXX3453 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2850,2359,27,1500.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250829 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX6353429 EED:250829 IND ID:M8876 IND NAME:NATHAN STARON ER AM TRN: XXXXXX3429 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2851,2360,27,0.00,383.63,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2852,2361,27,0.00,28.23,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2853,2362,27,0.00,115.87,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2854,2363,27,0.00,6.43,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2855,2364,27,0.00,63.64,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2856,2365,27,0.00,5.38,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2857,2366,27,0.00,8.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2858,2367,27,0.00,34832.60,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2859,2368,27,0.00,9.99,'AplPay UBER ONE     help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2860,2369,27,0.00,1.29,'AplPay DUCKWEED GROCTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2861,2370,27,0.00,41.36,'ATHLETA ONLINE      GROVE CITY          OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2862,2371,27,0.00,77.31,'AplPay JONI\'S PET SATAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2863,2371,58,77.31,0.00,'AplPay JONI\'S PET SATAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2864,2372,27,0.00,15.91,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2865,2373,27,0.00,14.23,'AplPay DUCKWEED GROCTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2866,2374,27,8.00,0.00,'AplPay TARGET       TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2867,2375,27,0.00,91.86,'AplPay TARGET       TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2868,2376,27,0.00,9.66,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2869,2377,27,0.00,39.00,'FREIGHTQUOTE.COM INCKANSAS CITY         MO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2870,2378,27,0.00,358.77,'SAM\'S CLUB 6403 6403BRANDON             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2871,2379,27,0.00,11.69,'AplPay DUCKWEED GROCTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2872,2380,27,0.00,108.68,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2873,2381,27,0.00,9.57,'AplPay DUCKWEED GROCTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2874,2382,27,0.00,6.89,'AplPay DUCKWEED GROCTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2875,2383,27,0.00,21.00,'SQSP* WEBSIT#1993604NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2876,2384,27,0.00,56.75,'AplPay GOFUNDME     SAN DIEGO           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2877,2385,27,0.00,51.04,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2878,2386,27,0.00,3.00,'BLINK               AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2879,2387,27,0.00,27.15,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2880,2388,27,0.00,30.02,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2881,2389,27,16.94,0.00,'WAL-MART SUPERCENTERTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2882,2390,27,0.00,504.00,'GiftHealth*LillyDire833-6144438         OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2883,2391,27,0.00,18.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2884,2392,27,0.00,48.36,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2885,2393,27,0.00,10.10,'AplPay DUCKWEED GROCTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2886,2394,27,0.00,8.19,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2887,2395,27,0.00,10.74,'APPLECARE MNTHLY PLARICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2888,2396,27,0.00,9.54,'AplPay DUCKWEED GROCTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2889,2397,27,0.00,5.79,'AplPay DUCKWEED GROCTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2890,2398,27,0.00,200.78,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2891,2399,27,0.00,853.79,'VZWRLSS BILL PAY VE 800-922-0204        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2892,2400,27,0.00,322.36,'PY *STORQUEST - TAMPTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2893,2401,27,0.00,25.00,'WALGREENS           TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2894,2401,58,25.00,0.00,'WALGREENS           TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2895,2402,27,0.00,25.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2896,2402,58,25.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2897,2403,27,0.00,112.23,'LINKEDIN PRE P811231MOUNTAIN VIEW','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2898,2404,27,0.00,8.40,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2899,2405,27,0.00,289.85,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2900,2405,58,289.85,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2901,2406,27,0.00,37.68,'AplPay SPROUTS FARMETampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2902,2407,27,0.00,31.12,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2903,2408,27,0.00,43.50,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2904,2409,27,0.00,9.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2905,2410,27,0.00,9.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2906,2411,27,0.00,29.00,'LATE FEE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2907,2412,27,0.00,173.97,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2908,2413,27,0.00,53.74,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2909,2414,27,12.47,0.00,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2910,2414,58,0.00,12.47,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2911,2415,27,0.00,12.47,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2912,2415,58,12.47,0.00,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2913,2416,27,1000.00,0.00,'CUSTOMER SERVICE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2914,2417,27,0.00,17.85,'AplPay CHIPOTLE     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2915,2418,27,0.00,28.61,'AplPay PANERA BREAD TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2916,2419,27,0.00,19.32,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2917,2420,27,0.00,122.42,'AplPay UBER EATS    HTTPS://HELP.UBER.COCA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2918,2421,28,50.00,0.00,'AUTOPAY PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2919,2422,28,0.00,1111.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2920,2423,28,0.00,24.76,'Interest Charge on Pay Over Time Purchases','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2921,2424,28,4043.00,0.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2922,2425,28,0.00,1665.27,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2923,2426,28,1665.27,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2924,2427,28,0.00,5.35,'PITAP - LDG - HR PitPITTSBURGH          PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2925,2428,28,0.00,477.34,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2926,2429,28,0.00,235.41,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2927,2430,28,0.00,43.51,'CIRCLE K 08811/CIRCLTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2928,2431,28,0.00,44.08,'TAMPA BAY DOWNS - FOTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2929,2432,28,0.00,289.48,'AMERICAN EXPRESS TRASEATTLE             WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2930,2433,28,0.00,988.44,'AMERICAN EXPRESS TRASEATTLE             WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2931,2434,28,0.00,8094.69,'TRAVELOUTLET CASH 93ALHAMBRA            CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2932,2435,28,0.00,355.04,'TST* TAMPA BAY BREWITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2933,2436,28,0.00,88.51,'SHELL SERVICE STATIOVERO BEACH          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2934,2437,28,0.00,245.76,'VZWIRELESS MY VZ VE 800-922-0204        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2935,2438,28,0.00,79.79,'THE HOME DEPOT      TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2936,2439,28,0.00,174.12,'AMEXTRAVEL.COM      800-297-2977        WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2937,2440,28,0.00,65.97,'REGAL AIRPORT HOTEL CHEK LAP KOK        HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2938,2441,28,0.00,123.72,'REGAL AIRPORT HOTEL CHEK LAP KOK        HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2939,2442,28,0.00,4.75,'REGAL AIRPORT HOTEL CHEK LAP KOK        HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2940,2443,28,0.00,180.74,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2941,2444,28,0.00,58.62,'CIRCLE K 08811/CIRCLTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2942,2445,28,0.00,37.60,'7-ELEVEN 37149 00073TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2943,2446,28,0.00,30.00,'XAI LLC             PALO ALTO           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2944,2447,28,10.00,0.00,'Wireless Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2945,2448,28,0.00,484.43,'TECO/PEOPLES GAS    813-223-0800        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2946,2449,28,0.00,2.75,'KUBRA/TECO CONV FEE 800-766-6616        NJ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2947,2450,28,0.00,245.35,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2948,2451,28,0.00,69.04,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2949,2452,28,0.00,44.65,'TST* GREENLANE - GANTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2950,2453,28,0.00,20.00,'S REG GAR EVENT 0327TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2951,2454,28,0.00,64.39,'CIRCLE K 08811/CIRCLTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2952,2455,28,0.00,47.93,'TST* AZTECA DORO BRABRANDON             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2953,2456,28,0.00,1345.71,'AMERICAN EXPRESS TRASEATTLE             WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2954,2457,28,0.00,168.98,'FRONTIER AIRLINES AIDENVER              CO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2955,2458,28,0.00,4179.20,'CATHAY PACIFIC AIRWAHONG KONG           HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2956,2459,28,0.00,120.00,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2957,2460,28,0.00,27.56,'Bar Design A/S E TPATAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2958,2461,28,0.00,32.56,'Bar Design A/S E TPATAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2959,2462,28,0.00,19.98,'FRONTIER AIRLINES ONIRVING              TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2960,2463,28,0.00,23.08,'MCDONALD\'S          SANFORD             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2961,2464,28,11592.92,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2962,2465,28,0.00,708.40,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2963,2466,28,0.00,5962.16,'CATHAY PACIFIC AIRWAHONG KONG           HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2964,2467,28,0.00,19.25,'CATHAY PACIFIC AIRWAVANCOUVER           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2965,2468,28,0.00,7251.05,'CATHAY PACIFIC AIRWAHONG KONG           HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2966,2469,28,0.00,19.25,'CATHAY PACIFIC AIRWAVANCOUVER           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2967,2470,28,0.00,161.19,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2968,2471,28,7083.01,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2969,2472,28,4032.26,0.00,'CATHAY PACIFIC AIRWAHONG KONG           HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2970,2473,28,7083.01,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2971,2474,28,0.00,30.00,'XAI LLC             PALO ALTO           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2972,2475,28,2838.63,0.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2973,2476,28,0.00,945.98,'SPIRIT AIRLINES     SOUTH FLORIDA       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2974,2477,28,0.00,39.00,'RETURN PAYMENT FEE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2975,2478,28,0.00,196.73,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2976,2479,28,0.00,51.24,'GANDY CITGO 00034666TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2977,2480,28,0.00,106.91,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2978,2481,28,0.00,14.04,'RACETRAC2571  025718FORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2979,2482,28,0.00,178.39,'SHERATON GATEWAY RSTMISSISSAUGA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2980,2483,28,0.00,82.27,'COLUMBIA CAFE       TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2981,2484,28,0.00,57.28,'Bar Design A/S E TPATAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2982,2485,28,0.00,2285.94,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2983,2486,28,0.00,3.84,'SHENZHENSHIZHUJIANGHSHENZHEN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2984,2487,28,0.00,128.42,'OCEAN PARK CORPORATIHONG KONG           HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2985,2488,28,0.00,140.39,'VIEW ENTERPRISE LIMIHONG KONG           HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2986,2489,28,0.00,112.05,'MAXIM\'S PALACE - CITCENTRAL             HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2987,2490,28,0.00,287.52,'VISTAPRINT          WALTHAM             MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2988,2491,28,0.00,78.79,'VISTAPRINT          WALTHAM             MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2989,2492,28,0.00,164.24,'VIEW ENTERPRISE LIMIHONG KONG           HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2990,2493,28,0.00,4210.29,'HOTEL ICON - FRONT OTSIM SHA TSUI EAST  HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2991,2494,28,0.00,211.24,'AMEXTRAVEL.COM      800-297-2977        WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2992,2495,28,0.00,250.00,'MOD DISPLAYS        HARRISONBURG        VA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2993,2496,28,0.00,105.77,'RAMADA PLAZA BY WYNDBEIJING','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2994,2497,28,0.00,118.58,'RAMADA PLAZA BY WYNDBEIJING','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2995,2498,28,0.00,24.10,'RAMADA PLAZA BY WYNDBEIJING','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2996,2499,28,0.00,21.94,'BOC HK GCAG*MTR-AIRPHong Kong           HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2997,2500,28,0.00,65.38,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2998,2501,28,0.00,53.81,'NOBEL BURGER        MISSISSAUGA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2999,2502,28,3373.14,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3000,2503,28,0.00,72.39,'VISTAPRINT          WALTHAM             MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3001,2504,28,0.00,53.61,'WAL-MART SUPERCENTERTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3002,2505,28,0.00,15.00,'FT BROOK GAR DAILY 0TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3003,2506,28,0.00,240.00,'CLARION EVENTS INC  TULSA               OK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3004,2507,28,0.00,209.99,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3005,2508,28,0.00,18.65,'Uber Trip           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3006,2509,28,0.00,41.97,'THE HOME DEPOT      TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3007,2510,28,0.00,44.92,'ABC FINE WINE/SPIRITINDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3008,2511,28,0.00,30.00,'XAI LLC             PALO ALTO           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3009,2512,28,0.00,38.78,'WAWA FUEL/CONVENIENCDAVENPORT           FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3010,2513,28,4500.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3011,2514,28,1500.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3012,2515,28,0.00,65.88,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3013,2516,28,0.00,25.70,'UBER EATS           HTTPS://HELP.UBER.COCA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3014,2517,28,0.00,150.65,'UBER EATS           HTTPS://HELP.UBER.COCA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3015,2518,28,0.00,177.92,'TRIP.COM            CITY OF WILMINGTON','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3016,2519,28,0.00,8425.91,'AMERICAN EXPRESS TRASEATTLE             WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3017,2520,28,0.00,47.01,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3018,2521,28,0.00,69.51,'EXXONMOBIL 9755     ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3019,2522,28,0.00,1053.78,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3020,2523,28,0.00,17.88,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3021,2524,28,0.00,33.30,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3022,2525,28,0.00,3.16,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3023,2526,28,0.00,46.00,'7-ELEVEN 37149 00073TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3024,2527,28,0.00,34.01,'7-ELEVEN 37149 00073TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3025,2528,28,0.00,166.99,'TIE DAO BU ZI JING QBEIJING','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3026,2529,28,66.56,0.00,'TRIP.COM            CITY OF WILMINGTON','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3027,2530,28,76.69,0.00,'TRIP.COM            CITY OF WILMINGTON','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3028,2531,28,990.65,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3029,2532,28,0.00,35.00,'AMERICANAIRLINES PACIRVINE              CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3030,2533,28,0.00,16.98,'SHAKESHACK          shanghaishi','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3031,2534,28,0.00,64.74,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3032,2535,28,0.00,35.50,'THEA Collect 8772585TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3033,2536,28,0.00,25.00,'SUNPASS*ACC5797382  888-865-5352        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3034,2537,28,3500.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3035,2538,28,0.00,169.13,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3036,2539,28,0.00,29.80,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3037,2540,28,0.00,102.80,'THE HOME DEPOT      TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3038,2541,28,0.00,100.00,'HELP.USEMOTION.COM  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3039,2542,28,0.00,899.91,'DNH*GODADDY#37753959Tempe               AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3040,2543,28,0.00,99.99,'Oceanpayment*wondersHK                  HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3041,2544,28,0.00,36.02,'ZOOM.COM 888-799-966SAN JOSE            CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3042,2545,28,0.00,30.00,'XAI LLC             PALO ALTO           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3043,2546,28,1500.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3044,2547,28,0.00,12.95,'CANVA* I04544-839394CAMDEN              DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3045,2548,28,0.00,113.91,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3046,2549,28,0.00,22.67,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3047,2550,28,0.00,67.93,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3048,2551,28,0.00,12.08,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3049,2552,28,0.00,99.00,'APPLE ONLINE STORE  CUPERTINO           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3050,2553,28,0.00,20.30,'THE HOME DEPOT      TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3051,2554,28,0.00,53.25,'WAWA 5301 0000      TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3052,2555,28,0.00,14.90,'EMAIL HELP@CLOUDHQ.NSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3053,2556,28,0.00,51.75,'SHANNA & BRYAN GLAZETAMPA               FL\n\nTampa Bay Manufacturing Association - Networking','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3054,2557,28,0.00,254.93,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3055,2558,28,0.00,183.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3056,2559,28,0.00,27.13,'BT*DIALPAD          SAN RAMON           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3057,2560,28,0.00,50.00,'SUNPASS*ACC5797382  888-865-5352        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3058,2561,28,0.00,162.29,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3059,2562,28,0.00,513.00,'PIPEDRIVE INC       NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3060,2563,28,0.00,67.54,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3061,2564,28,0.00,84.08,'GOOGLE *GSUITE_LITHICC@GOOGLE.COM       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3062,2565,28,0.00,15.20,'FATHOM.VIDEO        SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3063,2566,28,0.00,88.64,'7-ELEVEN 37149 00073TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3064,2567,28,0.00,52.61,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3065,2568,28,0.00,355.55,'TECO/PEOPLES GAS    813-223-0800        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3066,2569,28,0.00,2.75,'KUBRA/TECO CONV FEE 800-766-6616        NJ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3067,2570,28,0.00,100.00,'HELP.USEMOTION.COM  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3068,2571,28,0.00,36.02,'ZOOM.COM 888-799-966SAN JOSE            CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3069,2572,28,0.00,39.63,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3070,2573,28,0.00,569.08,'THE HOME DEPOT 6327 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3071,2574,28,0.00,56.83,'Interest Charge on Pay Over Time Purchases','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3072,2575,28,0.00,183.90,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3073,2576,28,0.00,12.95,'CANVA* I04574-775316CAMDEN              DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3074,2577,28,0.00,30.00,'XAI LLC             PALO ALTO           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3075,2578,28,0.00,76.45,'UBER THEORIGINALW   HTTPS://HELP.UBER.COCA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3076,2579,28,0.00,28.80,'7-ELEVEN 37149 00073TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3077,2580,28,0.00,536.43,'THE HOME DEPOT 6327 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3078,2581,28,0.00,332.07,'PAYPAL *FIXNFLYDRON XXXXXX7733          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3079,2582,28,0.00,2678.07,'FEDEX38859838 FedEx MEMPHIS             TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3080,2583,28,0.00,73.67,'INSURANCE PAYMENT FEDURHAM              NC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3081,2584,28,0.00,2104.80,'STRATAGEM RISK LLC 9ST PETERSBURG       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3082,2585,28,0.00,177.53,'UPS*                800-811-1648        GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3083,2586,28,0.00,171.14,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3084,2587,28,0.00,256.86,'DNH*GODADDY#38206879Tempe               AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3085,2588,28,0.00,73.91,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3086,2589,28,0.00,14.90,'EMAIL HELP@CLOUDHQ.NSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3087,2590,28,0.00,10.00,'SMC # 67065         ST. PETERSBURG      FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3088,2591,28,0.00,20.00,'WWW.PERPLEXITY.AI   SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3089,2592,28,0.00,27.99,'INSURANCE PAYMENT SECOLUMBUS            GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3090,2593,28,0.00,932.91,'FIRST INSURANCE FUNDNORTHBROOK          IL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3091,2594,28,0.00,1231.23,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3092,2595,28,3000.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3093,2596,28,0.00,504.00,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3094,2597,28,0.00,9.57,'AMZ*WOOT LLC E5R32P0PAY.AMAZON.CO       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3095,2598,28,0.00,39.00,'MANUS AI            SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3096,2599,28,0.00,176.25,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3097,2600,28,0.00,51.76,'7-ELEVEN 37149 00073TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3098,2601,28,0.00,35.73,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3099,2602,28,0.00,73.91,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3100,2603,28,7312.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3101,2604,28,0.00,1625.00,'IN *TRANSCONTINENTALTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3102,2605,28,0.00,150.00,'IN *TRANSCONTINENTALTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3103,2606,28,0.00,20.85,'UPS 29RL04QPAK4     ATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3104,2607,28,0.00,513.00,'PIPEDRIVE INC       NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3105,2608,28,2500.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3106,2609,28,0.00,65.10,'UBER THEORIGINALW   HTTPS://HELP.UBER.COCA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3107,2610,28,0.00,99.99,'LINKEDIN SN P7360398MOUNTAIN VIEW','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3108,2611,28,0.00,15.20,'FATHOM.VIDEO        SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3109,2612,28,0.00,94.21,'GOOGLE *GSUITE_LITHICC@GOOGLE.COM       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3110,2613,28,0.00,42.13,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3111,2614,28,0.00,127.50,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3112,2615,28,0.00,14.99,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3113,2616,28,0.00,51.00,'7-ELEVEN 37149 00073TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3114,2617,28,0.00,89.99,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3115,2618,28,0.00,72.57,'BATTS ENTERPRISES LLJOHNS ISLAND        SC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3116,2619,28,0.00,180.00,'EXOSTAR LLC         HERNDON             VA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3117,2620,28,0.00,100.00,'HELP.USEMOTION.COM  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3118,2621,28,35.73,0.00,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3119,2622,28,0.00,302.49,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3120,2623,28,0.00,36.02,'ZOOM.COM 888-799-966SAN JOSE            CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3121,2624,28,0.00,64.49,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3122,2625,28,0.00,150.49,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3123,2626,28,0.00,63.41,'7-ELEVEN 38123 00073ST PETERSBURG       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3124,2627,28,0.00,190.28,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3125,2628,28,0.00,22.56,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3126,2629,28,0.00,51.55,'Interest Charge on Pay Over Time Purchases','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3127,2630,28,0.00,58.56,'AMZ*WOOT LLC E5R32P0PAY.AMAZON.CO       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3128,2631,28,0.00,27.09,'BT*DIALPAD          SAN RAMON           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3129,2632,28,0.00,30.00,'XAI LLC             PALO ALTO           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3130,2633,28,0.00,12.95,'CANVA* I04605-557277CAMDEN              DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3131,2634,28,0.00,27.99,'INSURANCE PAYMENT SECOLUMBUS            GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3132,2635,28,0.00,932.91,'FIRST INSURANCE FUNDNORTHBROOK          IL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3133,2636,28,0.00,378.50,'FREIGHTQUOTE BY CH RKANSAS CITY         MO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3134,2637,28,0.00,2.75,'KUBRA/TECO CONV FEE 800-766-6616        NJ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3135,2638,28,0.00,922.90,'TECO/PEOPLES GAS    813-223-0800        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3136,2639,28,0.00,28.43,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3137,2640,28,0.00,93.98,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3138,2641,28,1200.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250818 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7112016 EED:250818 IND ID:M3298 IND NAME:NATHAN STARON ER AM TRN: XXXXXX2016 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3139,2642,28,0.00,93.90,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3140,2643,28,0.00,381.12,'FREIGHTQUOTE BY CH RKANSAS CITY         MO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3141,2644,28,0.00,14.90,'EMAIL HELP@CLOUDHQ.NSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3142,2645,28,0.00,106.48,'AMZ*WOOT LLC E5R32P0PAY.AMAZON.CO       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3143,2646,28,0.00,44.98,'AMAZON.COM          AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3144,2647,28,0.00,12.99,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3145,2648,28,0.00,62.55,'WAWA FUEL/CONVENIENCMELBOURNE           FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3146,2649,28,0.00,12.19,'DNH*GODADDY#38655881Tempe               AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3147,2650,28,0.00,39.00,'MANUS AI            SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3148,2651,28,0.00,56.02,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3149,2652,28,0.00,3.00,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3150,2653,28,0.00,11.48,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3151,2654,28,0.00,36.98,'UBER 7ELEVEN4747    HTTPS://HELP.UBER.COCA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3152,2655,28,1500.00,0.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3153,2656,28,0.00,94.17,'GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3154,2657,28,0.00,513.00,'PIPEDRIVE INC       NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3155,2658,28,0.00,23.80,'UPS 29JM1O79C9H     ATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3156,2659,28,0.00,72.25,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3157,2660,28,0.00,2672.17,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3158,2661,28,3000.00,0.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3159,2662,28,0.00,99.99,'LINKEDIN SN P7877367MOUNTAIN VIEW','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3160,2663,28,0.00,15.20,'FATHOM.VIDEO        SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3161,2664,28,0.00,86.07,'GOOGLE *GSUITE_LITHICC@GOOGLE.COM       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3162,2665,28,0.00,84.35,'CIRCLE K 08811/CIRCLTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3163,2666,28,0.00,78.82,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3164,2667,28,0.00,119.65,'UBER THEORIGINALW   HTTPS://HELP.UBER.COCA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3165,2668,28,0.00,34.57,'DNH*GODADDY#38792940Tempe               AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3166,2669,28,0.00,100.00,'HELP.USEMOTION.COM  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3167,2670,28,1000.00,0.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3168,2671,28,0.00,36.02,'ZOOM.COM 888-799-966SAN JOSE            CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3169,2672,28,0.00,935.95,'xAI','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3170,2673,28,0.00,83.11,'Interest Charge on Pay Over Time Purchases','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3171,2674,28,0.00,12.95,'CANVA* I04636-580863CAMDEN              DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3172,2675,28,0.00,30.00,'XAI LLC             PALO ALTO           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3173,2676,28,0.00,74.17,'GANDY CITGO 00034666TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3174,2677,28,0.00,155.13,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3175,2678,28,0.00,9.99,'CLOAKED* IND MONTH  LOWELL              MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3176,2679,28,0.00,195.32,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3177,2680,28,0.00,49.64,'THE SHERWIN-WILLIAMSCLEVELAND           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3178,2681,28,0.00,28.98,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3179,2682,28,0.00,45.65,'7-ELEVEN 37149 00073TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3180,2683,28,0.00,100.07,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3181,2684,28,0.00,46.76,'DNH*GODADDY#38959148Tempe               AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3182,2685,28,1100.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3183,2686,28,0.00,348.26,'WALMART.COM         WALMART.COM         AR','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3184,2687,28,0.00,139.74,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3185,2688,28,0.00,27.99,'INSURANCE PAYMENT SECOLUMBUS            GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3186,2689,28,0.00,932.91,'FIRST INSURANCE FUNDNORTHBROOK          IL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3187,2690,28,0.00,14.90,'EMAIL HELP@CLOUDHQ.NSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3188,2691,28,0.00,154.95,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3189,2692,28,0.00,377.26,'WALMART.COM 80092562BENTONVILLE         AR','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3190,2693,28,0.00,154.76,'WALMART.COM         WALMART.COM         AR','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3191,2694,28,0.00,46.50,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3192,2695,28,0.00,25.08,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3193,2696,29,23556.36,0.00,'Created by QB Online to adjust balance for deletion','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3194,2696,59,0.00,23556.36,'Created by QB Online to adjust balance for deletion','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3195,2697,37,0.00,384.80,'Pay Period: 01/01/2025-01/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3196,2698,37,0.00,1825.92,'Pay Period: 01/01/2025-01/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3197,2699,37,1825.92,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3198,2700,37,384.80,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3199,2701,37,0.00,384.79,'Pay Period: 01/16/2025-01/31/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3200,2702,37,0.00,1825.92,'Pay Period: 01/16/2025-01/31/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3201,2703,37,1825.92,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3202,2704,37,384.79,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3203,2705,37,1825.93,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3204,2706,37,384.79,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3205,2707,37,0.00,1825.93,'Pay Period: 02/01/2025-02/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3206,2708,37,0.00,384.79,'Pay Period: 02/01/2025-02/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3207,2709,37,0.00,1825.93,'Pay Period: 02/16/2025-02/28/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3208,2710,37,0.00,384.80,'Pay Period: 02/16/2025-02/28/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3209,2711,37,1825.93,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3210,2712,37,384.80,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3211,2713,37,384.79,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3212,2714,37,1825.92,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3213,2715,37,0.00,384.79,'Pay Period: 03/01/2025-03/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3214,2716,37,0.00,1825.92,'Pay Period: 03/01/2025-03/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3215,2717,37,0.00,1825.92,'Pay Period: 03/16/2025-03/31/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3216,2718,37,1825.92,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3217,2719,37,0.00,384.80,'Pay Period: 03/16/2025-03/31/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3218,2720,37,384.80,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3219,2721,37,0.00,384.80,'Pay Period: 04/01/2025-04/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3220,2722,37,0.00,1825.92,'Pay Period: 04/01/2025-04/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3221,2723,37,384.80,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3222,2724,37,1825.92,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3223,2725,37,0.00,1825.93,'Pay Period: 04/16/2025-04/30/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3224,2726,37,1825.93,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3225,2727,37,0.00,384.79,'Pay Period: 04/16/2025-04/30/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3226,2728,37,384.79,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3227,2729,37,0.00,384.79,'Pay Period: 05/01/2025-05/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3228,2730,37,0.00,1825.92,'Pay Period: 05/01/2025-05/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3229,2731,37,384.79,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3230,2732,37,1825.92,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3231,2733,37,384.79,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3232,2734,37,1825.92,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3233,2735,37,0.00,384.79,'Pay Period: 05/16/2025-05/31/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3234,2736,37,0.00,1825.92,'Pay Period: 05/16/2025-05/31/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3235,2737,37,1825.93,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3236,2738,37,384.80,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3237,2739,37,0.00,1825.93,'Pay Period: 06/01/2025-06/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3238,2740,37,0.00,384.80,'Pay Period: 06/01/2025-06/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3239,2741,37,0.00,1825.93,'Pay Period: 06/16/2025-06/30/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3240,2742,37,0.00,384.80,'Pay Period: 06/16/2025-06/30/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3241,2743,37,384.80,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3242,2744,37,1825.93,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3243,2745,37,0.00,1825.92,'Pay Period: 07/01/2025-07/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3244,2746,37,0.00,384.79,'Pay Period: 07/01/2025-07/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3245,2747,37,384.79,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3246,2748,37,1825.92,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3247,2749,37,0.00,384.80,'Pay Period: 07/16/2025-07/31/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3248,2750,37,0.00,1825.92,'Pay Period: 07/16/2025-07/31/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3249,2751,37,384.80,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3250,2752,37,1825.92,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3251,2753,37,0.00,7535.58,'Pay Period: 08/01/2025-08/31/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3252,2754,37,7535.58,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3253,2755,37,0.00,384.79,'Pay Period: 08/01/2025-08/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3254,2756,37,0.00,1825.92,'Pay Period: 08/01/2025-08/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3255,2757,37,384.79,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3256,2758,37,1825.92,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3257,2759,37,1825.92,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3258,2760,37,384.79,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3259,2761,37,0.00,1825.92,'Pay Period: 08/16/2025-08/31/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3260,2762,37,0.00,384.79,'Pay Period: 08/16/2025-08/31/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3261,2763,37,0.00,7535.58,'Pay Period: 09/01/2025-09/30/2025 Check created out of sequence in a prior quarter','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3262,2764,37,7535.58,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3263,2765,37,0.00,1825.94,'Pay Period: 09/01/2025-09/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3264,2766,37,1825.94,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3265,2767,37,0.00,7535.58,'Pay Period: 10/01/2025-10/31/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3266,2768,37,7535.58,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3267,2769,44,387.00,0.00,'ORIG CO NAME:SBA EIDL LOAN ORIG ID:XXXXXX0118 DESC DATE:241231 CO ENTRY DESCR:PAYMENT SEC:CCD TRACE#:XXXXXXXX2211203 EED:250102 IND ID:0000 IND NAME:NATHAN STAR ON XXXXXX7203 ACH TRANSACTION TRN: XXXXXX1203 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3268,2770,44,387.00,0.00,'ORIG CO NAME:SBA EIDL LOAN ORIG ID:XXXXXX0118 DESC DATE:250221 CO ENTRY DESCR:PAYMENT SEC:CCD TRACE#:XXXXXXXX8546940 EED:250224 IND ID:0000 IND NAME:NATHAN STAR ON XXXXXX7203 ACH TRANSACTION TRN: XXXXXX6940 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3269,2771,44,82151.33,0.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: TREAS NYC/XXXXX0004 A/C: SMALL BUSINESS ADMINISTRATION DENVER CO X0202 US REF: LITHIUM BATTERY COMPANY (NATHAN A STARON) EIDL LOAN: XXXXXX7203/BNF/LI THIUM BATTERY COMPANY (NATHAN A STA RON) EIDL LOAN: XXXXXX7203 IMAD: 0306MMQFMP2MXX4558 TRN: XXXXXX5065 ES 03/06','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3270,2772,44,260.67,0.00,'Loan Fees','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3271,2773,45,15000.00,0.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT (N.S.)/BNF/LITHIUM BATTERY CO IMAD: 021 3MMQFMP2KXX6076 TRN: XXXXXX5044 ES 02/13','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3272,2774,45,15000.00,0.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT/BNF/LITHIUM BATTERY CO IMAD: 0304MMQFMP 2NXX2800 TRN: XXXXXX5063 ES 03/04','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3273,2775,45,20220.23,0.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT/BNF/LITHIUM BATTERY CO IMAD: 0408MMQFMP 2KXX1400 TRN: XXXXXX5098 ES 04/08','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3274,2776,45,0.00,220.23,'Loan Fees Adjustment','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3275,2777,45,0.00,25000.00,'FEDWIRE CREDIT VIA: FEDERAL HOME LOAN BK OF PITTSBURGH/XXXXX1435 B/O: INFIRST BANK INDIANA, PA X5701 REF: CHASE NYC/CTR/BNF=LITHIUM BATTERY COMPANY INTL, LLC TA MPA FL XXXX4-800 6 US/AC-XXXXXXXX5806 RFB=NOTPROVIDE D OBI=/PURP/START UP FUNDS FOR SON\' S COMP ANY/URI/BUSINESS START UP CO ST IMAD: 0807MMQFMPDRXX0053 TRN: XXXXXX1219 FF','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3276,2778,47,893.72,0.00,'ORIG CO NAME:ALLY ORIG ID:XXXXXX2002 DESC DATE:250108 CO ENTRY DESCR:ALLY PAYMTSEC:CCD TRACE#:XXXXXXXX7292718 EED:250108 IND ID:XXXXXXXX1804 IND NAME:LITHIUM BA TTERY CO TRN: XXXXXX2718 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3277,2779,47,43661.35,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3278,2780,48,0.00,42574.74,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3279,2781,49,0.00,107618.94,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3280,2782,49,1766.57,0.00,'ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250917 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX8170379 EED:250918 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX0379 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3281,2783,50,0.00,3596.35,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3282,2784,50,276.65,0.00,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250906 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX9686584 EED:250909 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX6584 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3283,2785,51,43601.53,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3284,2786,51,1139.49,0.00,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250422 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX4164084 EED:250423 IND ID:PXXXX2890 IND NAME:STAR ON, NATHAN TRN: XXXXXX4084 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3285,2787,51,1139.49,0.00,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250522 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8623913 EED:250523 IND ID:PXXXX9839 IND NAME:STAR ON, NATHAN TRN: XXXXXX3913 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3286,2788,51,1139.49,0.00,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250620 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8750948 EED:250623 IND ID:PXXXX1798 IND NAME:STAR ON, NATHAN TRN: XXXXXX0948 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3287,2789,51,1139.49,0.00,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250722 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX2005503 EED:250723 IND ID:PXXXX4907 IND NAME:STAR ON, NATHAN TRN: XXXXXX5503 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3288,2790,54,0.00,1769719.80,'2 Payments Direct From CFB to Vendor','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3289,2791,54,0.00,155000.00,'0687 Lithium Battery Company Draw #7','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3290,2792,54,0.00,118242.57,'XXXXXX0687 Lithium Battery Draw #8','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3291,2793,54,0.00,85000.00,'Draw #9','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3292,2794,54,0.00,63453.71,'Draw #10','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3293,2795,54,0.00,20000.00,'Lithium Battery Draw #14','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3294,2796,55,0.00,2850000.00,'Initial SBA Loan Balance','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3295,2797,55,2850000.00,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3296,2798,55,0.00,30000.00,'Draw #1 - Payroll','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3297,2799,55,0.00,65000.00,'Draw #2 - Insurance Binding pymt - CFB to LBC; 2 payments = $30,000 - NS AMEX, $30,000 JB repayment; $5,000 LBC Chase 2560 = $65,000','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3298,2800,55,0.00,85000.00,'EIDL #3 - Transfer Payment','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3299,2801,55,0.00,75000.00,'Inventory Repayment #4 - RS','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3300,2802,27,0.00,28426.40,'Opening Balance from Bank','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3301,2802,59,28426.40,0.00,'Opening Balance from Bank','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3302,2803,27,0.00,3.00,'BLINK AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3303,2804,27,0.00,47.91,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3304,2805,27,0.00,362.09,'AMZ*WOOT LLC E5R32P0PAY.AMAZON.CO WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3305,2806,27,0.00,77.00,'AMAZON.COM AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3306,2807,27,0.00,31.93,'AMAZON.COM AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3307,2808,27,0.00,19.06,'AMAZON.COM AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3308,2809,27,0.00,48.92,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3309,2810,27,0.00,44.50,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3310,2811,27,0.00,3.00,'BLINK AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3311,2812,27,0.00,51.76,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3312,2813,27,0.00,84.92,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3313,2814,27,0.00,57.51,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3314,2815,27,0.00,450.18,'AMERICAN AIRLINES XXX-XXX-7300 TX XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3315,2816,27,0.00,450.18,'AMERICAN AIRLINES XXX-XXX-7300 TX XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3316,2817,27,0.00,450.18,'AMERICAN AIRLINES XXX-XXX-7300 TX XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3317,2818,27,0.00,82.98,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3318,2819,27,0.00,57.32,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3319,2820,27,0.00,117.15,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3320,2821,27,0.00,114.95,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3321,2822,27,0.00,3.00,'BLINK AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3322,2823,27,0.00,34.07,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3323,2824,27,0.00,51.76,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3324,2825,27,0.00,8.62,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3325,2826,27,0.00,98.93,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3326,2827,27,0.00,12.27,'AMAZON.COM AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3327,2828,27,0.00,31.84,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3328,2829,27,0.00,319.48,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3329,2830,27,0.00,96.34,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3330,2831,27,0.00,122.94,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3331,2832,27,0.00,21.49,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3332,2833,27,0.00,3.00,'BLINK AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3333,2834,27,0.00,48.87,'AMAZON.COM AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3334,2835,27,0.00,60.06,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3335,2836,27,0.00,27.15,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3336,2837,27,0.00,29.10,'AMAZON.COM AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3337,2838,27,0.00,29.10,'AMAZON.COM AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3338,2839,27,0.00,40.81,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3339,2840,27,0.00,28.45,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3340,2841,27,0.00,123.95,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3341,2842,27,0.00,22.35,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3342,2843,27,0.00,27.53,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3343,2844,27,0.00,3.00,'BLINK AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3344,2845,27,0.00,85.59,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3345,2846,27,0.00,54.56,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3346,2847,27,0.00,37.32,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3347,2848,27,0.00,27.95,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3348,2849,27,0.00,52.05,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3349,2850,27,0.00,328.01,'AMAZON.COM AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3350,2851,27,0.00,47.83,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3351,2852,27,0.00,26.61,'AMAZON.COM AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3352,2853,27,0.00,49.00,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3353,2854,27,0.00,21.39,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3354,2855,27,0.00,3.00,'BLINK AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3355,2856,27,0.00,24.48,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3356,2857,27,0.00,59.09,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3357,2858,27,33041.93,0.00,'Created by QB Online to adjust balance for deletion','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3358,2858,59,0.00,33041.93,'Created by QB Online to adjust balance for deletion','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3359,2859,32,572.58,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3360,2860,32,0.00,63.74,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3361,2860,37,63.74,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3362,2861,32,0.00,506.59,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3363,2861,37,506.59,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3364,2862,32,570.33,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3365,2863,32,0.00,63.76,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3366,2863,37,63.76,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3367,2864,32,0.00,506.59,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3368,2864,37,506.59,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3369,2865,32,570.35,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3370,2866,32,570.33,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3371,2867,32,0.00,506.57,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3372,2867,37,506.57,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3373,2868,32,0.00,63.76,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3374,2868,37,63.76,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3375,2869,32,0.00,506.57,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3376,2869,37,506.57,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3377,2870,32,0.00,63.74,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3378,2870,37,63.74,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3379,2871,32,570.31,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3380,2872,32,570.35,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3381,2873,32,0.00,63.76,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3382,2873,37,63.76,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3383,2874,32,0.00,506.59,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3384,2874,37,506.59,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3385,2875,32,0.00,506.59,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3386,2875,37,506.59,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3387,2876,32,0.00,63.74,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3388,2876,37,63.74,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3389,2877,32,570.33,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3390,2878,32,0.00,63.74,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3391,2878,37,63.74,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3392,2879,32,0.00,506.59,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3393,2879,37,506.59,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3394,2880,32,570.33,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3395,2881,32,0.00,506.57,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3396,2881,37,506.57,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3397,2882,32,0.00,63.76,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3398,2882,37,63.76,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3399,2883,32,570.33,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3400,2884,32,0.00,63.76,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3401,2884,37,63.76,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3402,2885,32,0.00,506.59,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3403,2885,37,506.59,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3404,2886,32,570.35,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3405,2887,32,570.35,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3406,2888,32,0.00,63.76,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3407,2888,37,63.76,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3408,2889,32,0.00,506.59,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3409,2889,37,506.59,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3410,2890,32,570.31,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3411,2891,32,0.00,506.57,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3412,2891,37,506.57,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3413,2892,32,0.00,63.74,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3414,2892,37,63.74,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3415,2893,32,0.00,506.57,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3416,2893,37,506.57,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3417,2894,32,0.00,63.74,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3418,2894,37,63.74,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3419,2895,32,570.31,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3420,2896,32,0.00,506.59,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3421,2896,37,506.59,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3422,2897,32,0.00,63.76,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3423,2897,37,63.76,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3424,2898,32,570.35,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3425,2899,32,0.00,63.74,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3426,2899,37,63.74,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3427,2900,32,0.00,506.59,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3428,2900,37,506.59,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3429,2901,32,570.33,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3430,2902,32,0.00,1435.25,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3431,2902,37,1435.25,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3432,2903,32,1435.25,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3433,2904,32,0.00,63.76,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3434,2904,37,63.76,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3435,2905,32,0.00,506.59,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3436,2905,37,506.59,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3437,2906,32,570.35,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3438,2907,32,570.35,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3439,2908,32,0.00,506.59,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3440,2908,37,506.59,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3441,2909,32,0.00,63.76,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3442,2909,37,63.76,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3443,2910,32,0.00,1435.25,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3444,2910,37,1435.25,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3445,2911,32,1435.25,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3446,2912,32,0.00,506.55,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3447,2912,37,506.55,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3448,2913,32,506.55,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3449,2914,32,0.00,1435.25,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3450,2914,37,1435.25,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3451,2915,32,1435.25,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3452,2915,36,0.00,1435.25,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3453,2916,32,0.00,3278.65,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3454,2917,32,0.00,597.56,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3455,2918,32,3876.21,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3456,2918,36,0.00,3876.21,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3457,2919,32,0.00,3278.67,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3458,2920,32,0.00,597.56,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3459,2921,32,3876.23,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3460,2921,36,0.00,3876.23,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3461,2922,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3462,2922,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3463,2923,33,0.00,13.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3464,2923,37,13.00,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3465,2924,33,15.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3466,2925,33,126.00,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3467,2926,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3468,2926,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3469,2927,33,0.00,13.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3470,2927,37,13.00,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3471,2928,33,15.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3472,2929,33,15.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3473,2930,33,0.00,13.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3474,2930,37,13.00,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3475,2931,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3476,2931,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3477,2932,33,0.00,3.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3478,2932,37,3.00,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3479,2933,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3480,2933,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3481,2934,33,5.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3482,2935,33,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3483,2936,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3484,2936,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3485,2937,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3486,2937,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3487,2938,33,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3488,2939,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3489,2939,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3490,2940,33,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3491,2941,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3492,2941,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3493,2942,33,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3494,2943,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3495,2943,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3496,2944,33,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3497,2945,33,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3498,2946,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3499,2946,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3500,2947,33,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3501,2948,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3502,2948,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3503,2949,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3504,2949,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3505,2950,33,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3506,2951,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3507,2951,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3508,2952,33,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3509,2953,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3510,2953,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3511,2954,33,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3512,2955,33,0.00,42.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3513,2955,37,42.00,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3514,2956,33,42.00,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3515,2957,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3516,2957,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3517,2958,33,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3518,2959,33,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3519,2960,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3520,2960,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3521,2961,33,0.00,124.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3522,2962,33,0.00,2.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3523,2963,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3524,2963,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3525,2964,34,0.00,58.50,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3526,2964,37,58.50,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3527,2965,34,69.75,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3528,2966,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3529,2966,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3530,2967,34,0.00,58.50,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3531,2967,37,58.50,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3532,2968,34,69.75,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3533,2969,34,69.75,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3534,2970,34,0.00,58.51,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3535,2970,37,58.51,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3536,2971,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3537,2971,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3538,2972,34,0.01,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3539,2973,34,0.00,13.49,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3540,2973,37,13.49,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3541,2974,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3542,2974,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3543,2975,34,24.74,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3544,2976,34,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3545,2977,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3546,2977,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3547,2978,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3548,2978,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3549,2979,34,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3550,2980,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3551,2980,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3552,2981,34,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3553,2982,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3554,2982,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3555,2983,34,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3556,2984,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3557,2984,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3558,2985,34,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3559,2986,34,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3560,2987,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3561,2987,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3562,2988,34,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3563,2989,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3564,2989,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3565,2990,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3566,2990,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3567,2991,34,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3568,2992,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3569,2992,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3570,2993,34,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3571,2994,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3572,2994,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3573,2995,34,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3574,2996,34,0.00,189.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3575,2996,37,189.00,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3576,2997,34,189.00,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3577,2998,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3578,2998,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3579,2999,34,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3580,3000,34,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3581,3001,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3582,3001,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3583,3002,34,0.00,234.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3584,3003,34,0.00,9.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3585,3004,34,234.00,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3586,3004,36,0.00,234.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3587,3005,58,300.19,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3588,3005,27,0.00,300.19,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3589,3006,58,58.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3590,3006,27,0.00,58.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3591,3007,58,229.33,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3592,3007,27,0.00,229.33,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3593,3008,58,0.00,747.00,'AplPay HIMS & HERS HSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3594,3008,27,747.00,0.00,'AplPay HIMS & HERS HSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3595,3009,58,54341.50,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3596,3010,58,225.17,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3597,3010,27,0.00,225.17,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3598,3011,58,232.07,0.00,'SP CPAP.COM         STAFFORD            TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3599,3011,27,0.00,232.07,'SP CPAP.COM         STAFFORD            TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3600,3012,58,0.00,52.02,'SP CPAP.COM         STAFFORD            TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3601,3012,27,52.02,0.00,'SP CPAP.COM         STAFFORD            TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3602,3013,58,18.20,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3603,3013,27,0.00,18.20,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3604,3014,58,200.43,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3605,3014,27,0.00,200.43,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3606,3015,58,12500.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3607,3016,58,31190.58,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3608,3017,58,75.00,0.00,'AplPay JONI\'S PET SATampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3609,3017,27,0.00,75.00,'AplPay JONI\'S PET SATampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3610,3018,58,325.00,0.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3611,3018,27,0.00,325.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3612,3019,58,65.00,0.00,'DABA NAILS & SPA 941TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3613,3019,27,0.00,65.00,'DABA NAILS & SPA 941TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3614,3020,58,29.34,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3615,3020,27,0.00,29.34,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3616,3021,58,45.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3617,3021,27,0.00,45.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3618,3022,58,9.52,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3619,3022,27,0.00,9.52,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3620,3023,58,38.70,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3621,3023,27,0.00,38.70,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3622,3024,58,7.70,0.00,'AplPay DINOSAUR WORLPLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3623,3024,27,0.00,7.70,'AplPay DINOSAUR WORLPLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3624,3025,58,55.27,0.00,'DINOSAUR WORLD 00-08PLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3625,3025,27,0.00,55.27,'DINOSAUR WORLD 00-08PLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3626,3026,58,11.07,0.00,'AplPay DINOSAUR WORLPLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3627,3026,27,0.00,11.07,'AplPay DINOSAUR WORLPLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3628,3027,58,60.00,0.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3629,3027,27,0.00,60.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3630,3028,58,106.44,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3631,3028,27,0.00,106.44,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3632,3029,58,24.99,0.00,'ROCK IT FITNESS 9362TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3633,3029,27,0.00,24.99,'ROCK IT FITNESS 9362TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3634,3030,58,182.00,0.00,'THE STUDY SALON     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3635,3030,27,0.00,182.00,'THE STUDY SALON     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3636,3031,58,117.38,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3637,3031,27,0.00,117.38,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3638,3032,58,6552.94,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3639,3033,58,85.22,0.00,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3640,3033,27,0.00,85.22,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3641,3034,58,31.96,0.00,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3642,3034,27,0.00,31.96,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3643,3035,58,45.00,0.00,'AplPay GROUPON, INC.CHICAGO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3644,3035,27,0.00,45.00,'AplPay GROUPON, INC.CHICAGO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3645,3036,58,90.53,0.00,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3646,3036,27,0.00,90.53,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3647,3037,58,126.36,0.00,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3648,3037,27,0.00,126.36,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3649,3038,58,40.00,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3650,3038,27,0.00,40.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3651,3039,58,9.06,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3652,3039,27,0.00,9.06,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3653,3040,58,101.33,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3654,3040,27,0.00,101.33,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3655,3041,58,58.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3656,3041,27,0.00,58.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3657,3042,58,99.00,0.00,'AplPay GROUPON, INC.CHICAGO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3658,3042,27,0.00,99.00,'AplPay GROUPON, INC.CHICAGO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3659,3043,58,10.00,0.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3660,3043,27,0.00,10.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3661,3044,58,10.00,0.00,'PPY=TAMPA NEUROPSYCHTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3662,3044,27,0.00,10.00,'PPY=TAMPA NEUROPSYCHTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3663,3045,58,340.17,0.00,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3664,3045,27,0.00,340.17,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3665,3046,58,47.08,0.00,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3666,3046,27,0.00,47.08,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3667,3047,58,26.60,0.00,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3668,3047,27,0.00,26.60,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3669,3048,58,34.95,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3670,3048,27,0.00,34.95,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3671,3049,58,85.84,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3672,3049,27,0.00,85.84,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3673,3050,58,12500.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3674,3051,58,59.95,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3675,3051,27,0.00,59.95,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3676,3052,58,49.65,0.00,'FLORIDA STRAWBERRY FPLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3677,3052,27,0.00,49.65,'FLORIDA STRAWBERRY FPLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3678,3053,58,23.48,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3679,3053,27,0.00,23.48,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3680,3054,58,23.42,0.00,'AplPay AMC 9640 ONLILEAWOOD             KS','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3681,3054,27,0.00,23.42,'AplPay AMC 9640 ONLILEAWOOD             KS','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3682,3055,58,35.50,0.00,'AplPay AMC 9640 ONLILEAWOOD             KS','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3683,3055,27,0.00,35.50,'AplPay AMC 9640 ONLILEAWOOD             KS','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3684,3056,58,20.00,0.00,'THE WOMANS GROUP OF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3685,3056,27,0.00,20.00,'THE WOMANS GROUP OF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3686,3057,58,71.26,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3687,3057,27,0.00,71.26,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3688,3058,58,75.00,0.00,'JONI\'S PET SALON, INTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3689,3058,27,0.00,75.00,'JONI\'S PET SALON, INTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3690,3059,58,30.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3691,3059,27,0.00,30.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3692,3060,58,325.00,0.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3693,3060,27,0.00,325.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3694,3061,58,65.00,0.00,'SERENITY HEALS THERAFORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3695,3061,27,0.00,65.00,'SERENITY HEALS THERAFORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3696,3062,58,30.00,0.00,'AplPay D34 DISNEY ONPALMETTO            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3697,3062,27,0.00,30.00,'AplPay D34 DISNEY ONPALMETTO            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3698,3063,58,22.05,0.00,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3699,3063,27,0.00,22.05,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3700,3064,58,40.00,0.00,'AplPay D34 DISNEY ONPALMETTO            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3701,3064,27,0.00,40.00,'AplPay D34 DISNEY ONPALMETTO            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3702,3065,58,22.05,0.00,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3703,3065,27,0.00,22.05,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3704,3066,58,28.18,0.00,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3705,3066,27,0.00,28.18,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3706,3067,58,15.44,0.00,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3707,3067,27,0.00,15.44,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3708,3068,58,335.52,0.00,'RESTAURANT DEPOT 413TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3709,3068,27,0.00,335.52,'RESTAURANT DEPOT 413TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3710,3069,58,40.00,0.00,'DABA NAILS & SPA 941TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3711,3069,27,0.00,40.00,'DABA NAILS & SPA 941TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3712,3070,58,12500.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3713,3071,58,96.80,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3714,3071,27,0.00,96.80,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3715,3072,58,59.95,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3716,3072,27,0.00,59.95,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3717,3073,58,35.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3718,3073,27,0.00,35.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3719,3074,58,12500.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3720,3075,58,174.20,0.00,'AplPay CARTER S #131TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3721,3075,27,0.00,174.20,'AplPay CARTER S #131TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3722,3076,58,7.36,0.00,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3723,3076,27,0.00,7.36,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3724,3077,58,21.48,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3725,3077,27,0.00,21.48,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3726,3078,58,4800.00,0.00,'LEAF HOME WATER SOLUHUDSON              OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3727,3078,27,0.00,4800.00,'LEAF HOME WATER SOLUHUDSON              OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3728,3079,58,60.00,0.00,'AITUBOART           HUNGHOM             HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3729,3079,27,0.00,60.00,'AITUBOART           HUNGHOM             HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3730,3080,58,40.00,0.00,'INAI PTE. LTD.      SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3731,3080,27,0.00,40.00,'INAI PTE. LTD.      SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3732,3081,58,306.74,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3733,3081,27,0.00,306.74,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3734,3082,58,29.23,0.00,'RACETRAC2571  025718FORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3735,3082,27,0.00,29.23,'RACETRAC2571  025718FORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3736,3083,58,9.07,0.00,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3737,3083,27,0.00,9.07,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3738,3084,58,0.00,9.07,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3739,3084,27,9.07,0.00,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3740,3085,58,12500.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3741,3086,58,30.00,0.00,'AplPay A NAILS      FORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3742,3086,27,0.00,30.00,'AplPay A NAILS      FORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3743,3087,58,306.22,0.00,'AplPay PRICELN*CROWNNORWALK             CT','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3744,3087,27,0.00,306.22,'AplPay PRICELN*CROWNNORWALK             CT','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3745,3088,58,0.00,3375.27,'Online Transfer from CHK ...1215 transaction#: XXXXXXX8239','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3746,3089,58,1089.74,0.00,'PAYPAL *KAMYUU1105  XXXXXX7733          HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3747,3089,27,0.00,1089.74,'PAYPAL *KAMYUU1105  XXXXXX7733          HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3748,3090,58,6250.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3749,3091,58,0.00,217.26,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3750,3091,27,217.26,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3751,3092,58,0.00,72.42,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3752,3092,27,72.42,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3753,3093,58,296.00,0.00,'AplPay BT*GAMETIME  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3754,3093,27,0.00,296.00,'AplPay BT*GAMETIME  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3755,3094,58,4.00,0.00,'KORE WIRELESS       ATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3756,3094,27,0.00,4.00,'KORE WIRELESS       ATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3757,3095,58,362.10,0.00,'AplPay UNIFORM NAMETTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3758,3095,27,0.00,362.10,'AplPay UNIFORM NAMETTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3759,3096,58,58.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3760,3096,27,0.00,58.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3761,3097,58,28.80,0.00,'TST* BAR CARTS-STRAZTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3762,3097,27,0.00,28.80,'TST* BAR CARTS-STRAZTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3763,3098,58,104.50,0.00,'NON-CHASE ATM WITHDRAW XX6671 05/XX1010 N MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3764,3099,58,55.08,0.00,'AplPay EMPAMAMAS    Tampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3765,3099,27,0.00,55.08,'AplPay EMPAMAMAS    Tampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3766,3100,58,11.50,0.00,'AplPay VALET TIPS   NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3767,3100,27,0.00,11.50,'AplPay VALET TIPS   NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3768,3101,58,21.00,0.00,'SQSP* INV180951011  NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3769,3101,27,0.00,21.00,'SQSP* INV180951011  NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3770,3102,58,11.50,0.00,'AplPay VALET TIPS   NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3771,3102,27,0.00,11.50,'AplPay VALET TIPS   NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3772,3103,58,59.95,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3773,3103,27,0.00,59.95,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3774,3104,58,11.50,0.00,'VALET TIPS          NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3775,3104,27,0.00,11.50,'VALET TIPS          NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3776,3105,58,41.13,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3777,3105,27,0.00,41.13,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3778,3106,58,0.00,59.95,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3779,3106,27,59.95,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3780,3107,58,0.00,59.95,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3781,3107,27,59.95,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3782,3108,58,0.00,59.95,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3783,3108,27,59.95,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3784,3109,58,48.77,0.00,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3785,3109,27,0.00,48.77,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3786,3110,58,173.45,0.00,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3787,3110,27,0.00,173.45,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3788,3111,58,11.12,0.00,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3789,3111,27,0.00,11.12,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3790,3112,58,56.88,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3791,3112,27,0.00,56.88,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3792,3113,58,312.84,0.00,'AplPay IC* INSTACARTLAKELAND            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3793,3113,27,0.00,312.84,'AplPay IC* INSTACARTLAKELAND            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3794,3114,58,60.00,0.00,'AITUBO.AI           HUNGHOM             HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3795,3114,27,0.00,60.00,'AITUBO.AI           HUNGHOM             HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3796,3115,58,40.00,0.00,'INAI PTE. LTD.      SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3797,3115,27,0.00,40.00,'INAI PTE. LTD.      SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3798,3116,58,69.26,0.00,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3799,3116,27,0.00,69.26,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3800,3117,58,39.37,0.00,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3801,3117,27,0.00,39.37,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3802,3118,58,7.49,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3803,3118,27,0.00,7.49,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3804,3119,58,1.95,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3805,3119,27,0.00,1.95,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3806,3120,58,13.49,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3807,3120,27,0.00,13.49,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3808,3121,58,9.07,0.00,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3809,3121,27,0.00,9.07,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3810,3122,58,0.00,9.07,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3811,3122,27,9.07,0.00,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3812,3123,58,68.11,0.00,'AplPay SP REEF.COM  NEWTON              MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3813,3123,27,0.00,68.11,'AplPay SP REEF.COM  NEWTON              MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3814,3124,58,8.28,0.00,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3815,3124,27,0.00,8.28,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3816,3125,58,29.37,0.00,'MACYS   .COM 0000001MASON               OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3817,3125,27,0.00,29.37,'MACYS   .COM 0000001MASON               OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3818,3126,58,25.00,0.00,'PAY* ANGI-MAY23     INDIANAPOLIS        IN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3819,3126,27,0.00,25.00,'PAY* ANGI-MAY23     INDIANAPOLIS        IN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3820,3127,58,0.00,25.00,'PAY* ANGI-MAY23                         IN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3821,3127,27,25.00,0.00,'PAY* ANGI-MAY23                         IN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3822,3128,58,68.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3823,3128,27,0.00,68.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3824,3129,58,1387.34,0.00,'PAYPAL *KAMYUU1105  XXXXXX7733          HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3825,3129,27,0.00,1387.34,'PAYPAL *KAMYUU1105  XXXXXX7733          HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3826,3130,58,515.67,0.00,'BT*MYRIAD WOMEN\'S HESOUTH SAN FRANCISCO CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3827,3130,27,0.00,515.67,'BT*MYRIAD WOMEN\'S HESOUTH SAN FRANCISCO CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3828,3131,58,74.31,0.00,'AplPay JONI\'S PET SATAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3829,3131,27,0.00,74.31,'AplPay JONI\'S PET SATAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3830,3132,58,6250.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3831,3133,58,40.88,0.00,'AplPay FK WESTSHORE TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3832,3133,27,0.00,40.88,'AplPay FK WESTSHORE TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3833,3134,58,12500.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3834,3135,58,77.49,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3835,3135,27,0.00,77.49,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3836,3136,58,315.13,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3837,3136,27,0.00,315.13,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3838,3137,58,10.00,0.00,'TELADOC 0259        LEWISVILLE          TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3839,3137,27,0.00,10.00,'TELADOC 0259        LEWISVILLE          TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3840,3138,58,27.00,0.00,'AplPay GREAT EXPLORAST PETERSBURG       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3841,3138,27,0.00,27.00,'AplPay GREAT EXPLORAST PETERSBURG       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3842,3139,58,90.85,0.00,'AplPay SPROUTS FARMETampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3843,3139,27,0.00,90.85,'AplPay SPROUTS FARMETampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3844,3140,58,21.00,0.00,'SQSP* INV185094968  NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3845,3140,27,0.00,21.00,'SQSP* INV185094968  NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3846,3141,58,0.00,499.00,'BONFIRE PREMIUM VENDOAKVILLE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3847,3141,27,499.00,0.00,'BONFIRE PREMIUM VENDOAKVILLE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3848,3142,58,27.37,0.00,'AplPay IC* INSTACARTLAKELAND            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3849,3142,27,0.00,27.37,'AplPay IC* INSTACARTLAKELAND            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3850,3143,58,42.44,0.00,'MACYS MARKETPLACE 00MASON               OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3851,3143,27,0.00,42.44,'MACYS MARKETPLACE 00MASON               OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3852,3144,58,4210.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3853,3145,58,57.30,0.00,'CHUCK LAGER AMERICA\'TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3854,3145,27,0.00,57.30,'CHUCK LAGER AMERICA\'TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3855,3146,58,65.00,0.00,'SERENITY HEALS THERAFORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3856,3146,27,0.00,65.00,'SERENITY HEALS THERAFORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3857,3147,58,7.19,0.00,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3858,3147,27,0.00,7.19,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3859,3148,58,58.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3860,3148,27,0.00,58.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3861,3149,58,260.19,0.00,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3862,3149,27,0.00,260.19,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3863,3150,58,15.00,0.00,'AplPay TOUCHTUNES MUSCHAUMBURG          IL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3864,3150,27,0.00,15.00,'AplPay TOUCHTUNES MUSCHAUMBURG          IL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3865,3151,58,331.37,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3866,3151,27,0.00,331.37,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3867,3152,58,9.07,0.00,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3868,3152,27,0.00,9.07,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3869,3153,58,0.00,9.07,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3870,3153,27,9.07,0.00,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3871,3154,58,53.74,0.00,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3872,3154,27,0.00,53.74,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3873,3155,58,6250.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3874,3156,58,70.46,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3875,3156,27,0.00,70.46,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3876,3157,58,6250.00,0.00,'Nathans Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3877,3158,58,50.98,0.00,'AplPay CARTER S #131TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3878,3158,27,0.00,50.98,'AplPay CARTER S #131TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3879,3159,58,103.74,0.00,'SPORT CLIPS - FL111 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3880,3159,27,0.00,103.74,'SPORT CLIPS - FL111 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3881,3160,58,10.00,0.00,'TELADOC 0259        LEWISVILLE          TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3882,3160,27,0.00,10.00,'TELADOC 0259        LEWISVILLE          TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3883,3161,58,6250.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3884,3162,58,10.00,0.00,'TELADOC 0259        LEWISVILLE          TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3885,3162,27,0.00,10.00,'TELADOC 0259        LEWISVILLE          TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3886,3163,58,14.24,0.00,'DUCKWEED WD INC TAMPA FL 07/21','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3887,3164,58,9.07,0.00,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3888,3164,27,0.00,9.07,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3889,3165,58,0.00,9.07,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3890,3165,27,9.07,0.00,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3891,3166,58,6250.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3892,3167,58,21.00,0.00,'SQSP* WEBSIT#1931741NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3893,3167,27,0.00,21.00,'SQSP* WEBSIT#1931741NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3894,3168,58,63.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3895,3168,27,0.00,63.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3896,3169,58,65.00,0.00,'SERENITY HEALS THERAFORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3897,3169,27,0.00,65.00,'SERENITY HEALS THERAFORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3898,3170,58,158.00,0.00,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3899,3170,27,0.00,158.00,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3900,3171,58,59.86,0.00,'AplPay ZITNIK TRAINSPINELLAS PARK       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3901,3171,27,0.00,59.86,'AplPay ZITNIK TRAINSPINELLAS PARK       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3902,3172,58,504.00,0.00,'GiftHealth*LillyDire833-6144438         OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3903,3172,27,0.00,504.00,'GiftHealth*LillyDire833-6144438         OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3904,3173,58,6250.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3905,3174,58,127.03,0.00,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3906,3174,27,0.00,127.03,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3907,3175,58,12.83,0.00,'AplPay 5600 NORTH HAMELBOURNE           FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3908,3175,27,0.00,12.83,'AplPay 5600 NORTH HAMELBOURNE           FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3909,3176,58,9.07,0.00,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3910,3176,27,0.00,9.07,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3911,3177,58,0.00,9.07,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3912,3177,27,9.07,0.00,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3913,3178,58,152.10,0.00,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3914,3178,27,0.00,152.10,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3915,3179,58,101.49,0.00,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3916,3179,27,0.00,101.49,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3917,3180,58,17.73,0.00,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3918,3180,27,0.00,17.73,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3919,3181,58,850.00,0.00,'THE WOMANS GROUP OF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3920,3181,27,0.00,850.00,'THE WOMANS GROUP OF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3921,3182,58,80.00,0.00,'THE WOMANS GROUP OF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3922,3182,27,0.00,80.00,'THE WOMANS GROUP OF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3923,3183,58,0.00,9.13,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3924,3183,27,9.13,0.00,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3925,3184,58,7.00,0.00,'AplPay TOUCHTUNES MUSCHAUMBURG          IL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3926,3184,27,0.00,7.00,'AplPay TOUCHTUNES MUSCHAUMBURG          IL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3927,3185,58,60.23,0.00,'PY *PDQ - SOUTH TAMPTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3928,3185,27,0.00,60.23,'PY *PDQ - SOUTH TAMPTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3929,3186,58,77.31,0.00,'AplPay JONI\'S PET SATAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3930,3186,27,0.00,77.31,'AplPay JONI\'S PET SATAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3931,3187,58,6250.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3932,3188,58,25.00,0.00,'WALGREENS           TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3933,3188,27,0.00,25.00,'WALGREENS           TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3934,3189,58,25.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3935,3189,27,0.00,25.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3936,3190,58,289.85,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3937,3190,27,0.00,289.85,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3938,3191,58,0.00,12.47,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3939,3191,27,12.47,0.00,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3940,3192,58,12.47,0.00,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3941,3192,27,0.00,12.47,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3942,3193,58,0.00,21.91,'REMOTE ONLINE DEPOSIT # 2','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3943,3194,59,28426.40,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3944,3195,59,0.00,23556.36,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3945,3196,59,0.00,33041.93,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3946,3197,59,0.00,11424.00,'24V 75Ah Lithium Ion Battery - LFP - Opening inventory and value','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3947,3197,10,11424.00,0.00,'24V 75Ah Lithium Ion Battery - LFP - Opening inventory and value','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3948,3198,60,0.00,11000.00,'FEDWIRE CREDIT VIA: BANK OF AMERICA, N.A./XXXXX9593 B/O: 1/JD CAPITAL ADVISORS LLC 3/US/SAINT PETERSBURG X3705 REF: CHASE NYC/CTR/BNF=LITHIUM BATTERY COMPANY IN TL, LLC TAMPA FL XXXX4-800 6 US/AC-XXXXXXXX3316 RFB=XXXXX8276 OBI=LBC EQUITY INVESTMENT IMAD: 0108B6B7HU2RXX5650 TRN: XXXXXX1008 FF','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3949,3199,60,276.65,0.00,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250106 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX0638159 EED:250108 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX8159 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3950,3200,60,1139.49,0.00,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250122 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX1204033 EED:250123 IND ID:PXXXX4506 IND NAME:STAR ON, NATHAN TRN: XXXXXX4033 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3951,3201,60,276.65,0.00,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250206 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX0848924 EED:250210 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX8924 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3952,3202,60,1139.49,0.00,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250221 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX6850342 EED:250224 IND ID:PXXXX8790 IND NAME:STAR ON, NATHAN TRN: XXXXXX0342 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3953,3203,60,2500.00,0.00,'Online Transfer to CHK ...1215 transaction#: XXXXXXX9780 03/07','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3954,3204,60,276.65,0.00,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250306 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX4195671 EED:250310 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX5671 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3955,3205,60,3533.14,0.00,'ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250320 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX8464628 EED:250321 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX4628 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3956,3206,60,1139.49,0.00,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250321 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8020777 EED:250324 IND ID:PXXXX2527 IND NAME:STAR ON, NATHAN TRN: XXXXXX0777 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3957,3207,60,0.00,121879.28,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3958,3208,60,10.00,0.00,'PPY=TAMPA NEUROPSYCHTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3959,3208,27,0.00,10.00,'PPY=TAMPA NEUROPSYCHTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3960,3209,60,325.00,0.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3961,3209,27,0.00,325.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3962,3210,60,325.00,0.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3963,3210,27,0.00,325.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3964,3211,60,10.00,0.00,'PPY=TAMPA NEUROPSYCHTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3965,3211,27,0.00,10.00,'PPY=TAMPA NEUROPSYCHTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3966,3212,60,1665.18,0.00,'AplPay ASHLEY HOMESTTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3967,3212,27,0.00,1665.18,'AplPay ASHLEY HOMESTTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3968,3213,60,16931.41,0.00,'AplPay ASHLEY HOMESTTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3969,3213,27,0.00,16931.41,'AplPay ASHLEY HOMESTTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3970,3214,60,325.00,0.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3971,3214,27,0.00,325.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3972,3215,60,3621.46,0.00,'ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250612 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX4324099 EED:250613 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX4099 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3973,3216,60,15156.95,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3974,3217,60,554.49,0.00,'JEWELERS-MUTUAL-PMNT800-558-6411        WI','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3975,3217,27,0.00,554.49,'JEWELERS-MUTUAL-PMNT800-558-6411        WI','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3976,3218,60,0.00,42.44,'MACYS MARKETPLACE 00MASON               OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3977,3218,27,42.44,0.00,'MACYS MARKETPLACE 00MASON               OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3978,3219,60,81.95,0.00,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3979,3219,27,0.00,81.95,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3980,3220,60,105.99,0.00,'713 TAMPA DALE MABRYTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3981,3220,27,0.00,105.99,'713 TAMPA DALE MABRYTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3982,3221,60,1766.57,0.00,'ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250717 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX5723231 EED:250718 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX3231 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3983,3222,60,89.00,0.00,'CSA-GGA-DAM/TRIPINSUSAN DIEGO           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3984,3222,27,0.00,89.00,'CSA-GGA-DAM/TRIPINSUSAN DIEGO           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3985,3223,60,354.00,0.00,'GiftHealth*LillyDire833-6144438         OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3986,3223,27,0.00,354.00,'GiftHealth*LillyDire833-6144438         OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3987,3224,60,0.00,70000.00,'Draw #15','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3988,3225,60,2672.17,0.00,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3989,3225,27,0.00,2672.17,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3990,3226,60,276.65,0.00,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250806 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX6803632 EED:250808 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX3632 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3991,3227,60,0.00,16931.41,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3992,3228,60,0.00,29.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3993,3229,60,1766.57,0.00,'ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250818 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX8723395 EED:250819 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX3395 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3994,3230,60,1139.49,0.00,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250822 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8921695 EED:250825 IND ID:PXXXX7889 IND NAME:STAR ON, NATHAN TRN: XXXXXX1695 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3995,3231,60,0.00,25000.00,'Draw #17','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3996,3232,60,1139.49,0.00,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250922 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX1906027 EED:250923 IND ID:PXXXX6046 IND NAME:STAR ON, NATHAN TRN: XXXXXX6027 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3997,3233,61,0.00,15000.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX6914437 EED:250213 IND ID: IND NAME:Lithium Battery Co LBC Shareholder Transfer (NS) TRN: XXXXXX4437 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3998,3234,61,0.00,15000.00,'Online Transfer from CHK ...1215 transaction#: XXXXXXX4918','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3999,3235,63,0.00,1226.31,'REMOTE ONLINE DEPOSIT # 2','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(4000,3236,64,0.00,180833.33,'LOAN FUNDS','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(4001,3237,64,0.00,2900.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX2799298 EED:250908 IND ID: IND NAME:LBC Main (#2560) Bayfro nt Capital (Transaction Fees) TRN: XXXXXX9298 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(4002,3238,64,0.00,3500.00,'ORIG CO NAME:JD CAPITAL ADVIS ORIG ID:SXXXXX7665 DESC DATE:250909 CO ENTRY DESCR:SENDER SEC:CTX TRACE#:XXXXXXXX6471376 EED:250909 IND ID:813722100 IND NAME:0000 LITHIUM BATTERY TRN: XXXXXX1376 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(4003,3239,64,0.00,6500.00,'ORIG CO NAME:JD CAPITAL ADVIS ORIG ID:SXXXXX7665 DESC DATE:250910 CO ENTRY DESCR:SENDER SEC:CTX TRACE#:XXXXXXXX1567022 EED:250910 IND ID:813990834 IND NAME:0000 LITHIUM BATTERY TRN: XXXXXX7022 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(4004,3240,64,0.00,9396.52,'SENDER JD CAPITAL ADVIS IDS941687665, ID: 820696952','2025-11-12 00:09:24','2025-11-12 00:09:24');
/*!40000 ALTER TABLE `journal_entry_lines` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `journal_entry_lines_backup_20250111`
--

DROP TABLE IF EXISTS `journal_entry_lines_backup_20250111`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `journal_entry_lines_backup_20250111` (
  `id` int(10) unsigned NOT NULL DEFAULT 0,
  `entry_id` int(10) unsigned NOT NULL,
  `account_id` int(10) unsigned NOT NULL,
  `debit` decimal(15,2) DEFAULT 0.00,
  `credit` decimal(15,2) DEFAULT 0.00,
  `description` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `journal_entry_lines_backup_20250111`
--

LOCK TABLES `journal_entry_lines_backup_20250111` WRITE;
/*!40000 ALTER TABLE `journal_entry_lines_backup_20250111` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `journal_entry_lines_backup_20250111` VALUES
(1,3,21,308025.00,0.00,'Invoice #INV-20251031-8225','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(2,3,12,0.00,308025.00,'Sales revenue for Invoice #INV-20251031-8225','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(3,7,2,1936.00,0.00,'Payment for Invoice #INV-20251031-7461','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(4,7,21,0.00,1936.00,'Payment for Invoice #INV-20251031-7461','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(5,8,21,999.00,0.00,'Invoice #INV-20251031-3380','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(6,8,12,0.00,999.00,'Sales revenue for Invoice #INV-20251031-3380','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(7,9,2,999.00,0.00,'Payment for Invoice #INV-20251031-3380','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(8,9,21,0.00,999.00,'Payment for Invoice #INV-20251031-3380','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(9,10,92,500000.00,0.00,'Initial cash investment - operating','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(10,10,94,250000.00,0.00,'Initial cash investment - savings','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(11,10,11,0.00,750000.00,'Capital stock - initial investment','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(12,12,2,1000000.00,0.00,'Opening balance - Bank account','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(13,12,10,0.00,1000000.00,'Opening balance - Equity','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(14,13,2,10000000.00,0.00,'Opening balance - Bank account','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(15,13,10,0.00,10000000.00,'Opening balance - Equity','2025-11-11 00:33:35','2025-11-11 00:33:35');
/*!40000 ALTER TABLE `journal_entry_lines_backup_20250111` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `location_asset_overrides`
--

DROP TABLE IF EXISTS `location_asset_overrides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `location_asset_overrides` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `location_id` int(10) unsigned NOT NULL,
  `asset_category_id` int(10) unsigned NOT NULL,
  `useful_life_years` decimal(5,1) DEFAULT NULL COMMENT 'Override global value',
  `maintenance_capex_rate` decimal(5,2) DEFAULT NULL,
  `replacement_period_years` decimal(5,1) DEFAULT NULL,
  `capitalization_threshold` decimal(5,2) DEFAULT NULL,
  `depreciation_method` enum('straight_line','declining_balance','units_of_production') DEFAULT NULL,
  `salvage_value_percent` decimal(5,2) DEFAULT NULL,
  `notes` text DEFAULT NULL COMMENT 'Location-specific notes',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `location_category` (`location_id`,`asset_category_id`),
  KEY `asset_category_id` (`asset_category_id`),
  CONSTRAINT `location_asset_overrides_ibfk_1` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE CASCADE,
  CONSTRAINT `location_asset_overrides_ibfk_2` FOREIGN KEY (`asset_category_id`) REFERENCES `asset_categories` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `location_asset_overrides`
--

LOCK TABLES `location_asset_overrides` WRITE;
/*!40000 ALTER TABLE `location_asset_overrides` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `location_asset_overrides` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `location_capacity_forecast`
--

DROP TABLE IF EXISTS `location_capacity_forecast`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `location_capacity_forecast` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `assumption_set_id` int(11) NOT NULL,
  `location_id` int(10) unsigned NOT NULL,
  `equipment_line_id` int(10) unsigned DEFAULT NULL,
  `projection_date` date NOT NULL,
  `period_type` enum('monthly','quarterly','annual') DEFAULT 'monthly',
  `available_hours` decimal(12,2) NOT NULL,
  `planned_production_hours` decimal(12,2) NOT NULL,
  `utilization_pct` decimal(5,2) NOT NULL,
  `bottleneck` tinyint(1) DEFAULT 0 COMMENT 'Is this a capacity bottleneck?',
  `fixed_costs` decimal(15,2) DEFAULT 0.00 COMMENT 'Facility rent, utilities, etc',
  `variable_costs` decimal(15,2) DEFAULT 0.00 COMMENT 'Based on actual production',
  `labor_costs` decimal(15,2) DEFAULT 0.00,
  `overhead_costs` decimal(15,2) DEFAULT 0.00,
  `generated_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_set` (`assumption_set_id`),
  KEY `idx_location` (`location_id`),
  KEY `idx_equipment` (`equipment_line_id`),
  KEY `idx_date` (`projection_date`),
  CONSTRAINT `location_capacity_forecast_ibfk_1` FOREIGN KEY (`assumption_set_id`) REFERENCES `forecast_assumption_sets` (`id`) ON DELETE CASCADE,
  CONSTRAINT `location_capacity_forecast_ibfk_2` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE CASCADE,
  CONSTRAINT `location_capacity_forecast_ibfk_3` FOREIGN KEY (`equipment_line_id`) REFERENCES `equipment_lines` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `location_capacity_forecast`
--

LOCK TABLES `location_capacity_forecast` WRITE;
/*!40000 ALTER TABLE `location_capacity_forecast` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `location_capacity_forecast` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `locations`
--

DROP TABLE IF EXISTS `locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `locations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `code` varchar(50) NOT NULL,
  `address` text DEFAULT NULL,
  `city` varchar(100) DEFAULT NULL,
  `state` varchar(100) DEFAULT NULL,
  `zip` varchar(20) DEFAULT NULL,
  `country` varchar(100) DEFAULT NULL,
  `square_footage` decimal(10,2) DEFAULT NULL COMMENT 'Square footage of the location',
  `phone` varchar(20) DEFAULT NULL,
  `manager_id` int(10) unsigned DEFAULT NULL,
  `status` enum('active','inactive') DEFAULT 'active',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `description` text DEFAULT NULL,
  `work_days_per_week` decimal(3,1) DEFAULT NULL COMMENT 'Override global - work days per week',
  `work_hours_per_shift` decimal(4,1) DEFAULT NULL COMMENT 'Override global - hours per shift',
  `shifts_per_day` int(11) DEFAULT NULL COMMENT 'Override global - number of shifts',
  `working_weeks_per_year` int(11) DEFAULT NULL COMMENT 'Override global - working weeks per year',
  `labor_utilization_rate` decimal(5,2) DEFAULT NULL COMMENT 'Override global - labor utilization %',
  `hours_per_day` decimal(5,1) DEFAULT NULL COMMENT 'Override global - total hours per day',
  `facility_size_sqft` decimal(12,2) DEFAULT NULL COMMENT 'Location facility size in square feet',
  `capitalization_limit` decimal(12,2) DEFAULT NULL COMMENT 'Override global - capitalization threshold',
  `cpi_increase_rate` decimal(5,2) DEFAULT NULL COMMENT 'Override global - CPI increase rate',
  `project_start_date` date DEFAULT NULL COMMENT 'Override global - project start date',
  `base_year` int(11) DEFAULT NULL COMMENT 'Override global - base year',
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `code` (`code`),
  KEY `manager_id` (`manager_id`),
  KEY `idx_deleted_at` (`deleted_at`),
  CONSTRAINT `locations_ibfk_1` FOREIGN KEY (`manager_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `locations`
--

LOCK TABLES `locations` WRITE;
/*!40000 ALTER TABLE `locations` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `locations` VALUES
(2,'Garage','GAR','123 Garage St','Garage','ST','11123','USA',85000.00,'',NULL,'active','2025-10-27 16:13:22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-11 00:36:45',NULL),
(3,'Farm','FARM','123 Farm Road','Place','ST','11111','USA',6500000.00,'',NULL,'active','2025-10-27 16:13:38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-11 00:36:45',NULL);
/*!40000 ALTER TABLE `locations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `lot_serial_movements`
--

DROP TABLE IF EXISTS `lot_serial_movements`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `lot_serial_movements` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `lot_serial_id` int(10) unsigned NOT NULL,
  `movement_type` enum('receipt','shipment','transfer','adjustment','return','production','consumption') NOT NULL,
  `from_location_id` int(10) unsigned DEFAULT NULL,
  `to_location_id` int(10) unsigned DEFAULT NULL,
  `quantity` decimal(10,2) NOT NULL,
  `reference_type` varchar(50) DEFAULT NULL,
  `reference_id` int(10) unsigned DEFAULT NULL,
  `movement_date` datetime DEFAULT current_timestamp(),
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `from_location_id` (`from_location_id`),
  KEY `to_location_id` (`to_location_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_lot_serial` (`lot_serial_id`),
  KEY `idx_movement_date` (`movement_date`),
  KEY `idx_reference` (`reference_type`,`reference_id`),
  CONSTRAINT `lot_serial_movements_ibfk_1` FOREIGN KEY (`lot_serial_id`) REFERENCES `lot_serial_numbers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `lot_serial_movements_ibfk_2` FOREIGN KEY (`from_location_id`) REFERENCES `locations` (`id`) ON DELETE SET NULL,
  CONSTRAINT `lot_serial_movements_ibfk_3` FOREIGN KEY (`to_location_id`) REFERENCES `locations` (`id`) ON DELETE SET NULL,
  CONSTRAINT `lot_serial_movements_ibfk_4` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lot_serial_movements`
--

LOCK TABLES `lot_serial_movements` WRITE;
/*!40000 ALTER TABLE `lot_serial_movements` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `lot_serial_movements` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `lot_serial_numbers`
--

DROP TABLE IF EXISTS `lot_serial_numbers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `lot_serial_numbers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `product_id` int(10) unsigned NOT NULL,
  `lot_number` varchar(100) DEFAULT NULL,
  `serial_number` varchar(100) DEFAULT NULL,
  `manufacture_date` date DEFAULT NULL,
  `expiration_date` date DEFAULT NULL,
  `quantity` decimal(10,2) DEFAULT 1.00,
  `location_id` int(10) unsigned DEFAULT NULL,
  `status` enum('active','reserved','sold','expired','returned') DEFAULT 'active',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_by` int(10) unsigned DEFAULT NULL,
  `last_notified_at` datetime DEFAULT NULL COMMENT 'Last expiry reminder sent',
  `notification_level` varchar(20) DEFAULT NULL COMMENT 'Current notification level: 30day, 7day, expired',
  PRIMARY KEY (`id`),
  KEY `location_id` (`location_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_lot_number` (`lot_number`),
  KEY `idx_serial_number` (`serial_number`),
  KEY `idx_product` (`product_id`),
  KEY `idx_expiration` (`expiration_date`),
  KEY `idx_status` (`status`),
  KEY `idx_lot_expiry_notification` (`expiration_date`,`status`,`last_notified_at`),
  CONSTRAINT `lot_serial_numbers_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`),
  CONSTRAINT `lot_serial_numbers_ibfk_2` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE SET NULL,
  CONSTRAINT `lot_serial_numbers_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lot_serial_numbers`
--

LOCK TABLES `lot_serial_numbers` WRITE;
/*!40000 ALTER TABLE `lot_serial_numbers` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `lot_serial_numbers` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `machine_events`
--

DROP TABLE IF EXISTS `machine_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `machine_events` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `equipment_id` int(10) unsigned NOT NULL,
  `event_type` varchar(50) NOT NULL COMMENT 'e.g., status_change, production_update, utilization_update, alert',
  `event_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Event details in JSON format' CHECK (json_valid(`event_data`)),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `equipment_id` (`equipment_id`),
  KEY `event_type` (`event_type`),
  KEY `created_at` (`created_at`),
  CONSTRAINT `machine_events_ibfk_1` FOREIGN KEY (`equipment_id`) REFERENCES `equipment` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Logs machine automation events and data integration';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `machine_events`
--

LOCK TABLES `machine_events` WRITE;
/*!40000 ALTER TABLE `machine_events` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `machine_events` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `material_requirements`
--

DROP TABLE IF EXISTS `material_requirements`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `material_requirements` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `work_order_id` int(10) unsigned DEFAULT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `total_required` decimal(15,3) NOT NULL DEFAULT 0.000,
  `on_hand` decimal(15,3) NOT NULL DEFAULT 0.000,
  `on_order` decimal(15,3) NOT NULL DEFAULT 0.000,
  `allocated` decimal(15,3) NOT NULL DEFAULT 0.000,
  `net_required` decimal(15,3) NOT NULL DEFAULT 0.000,
  `suggested_order_date` date DEFAULT NULL,
  `requisition_created` tinyint(1) DEFAULT 0,
  `requisition_id` int(10) unsigned DEFAULT NULL,
  `calculated_at` datetime DEFAULT current_timestamp(),
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_work_order` (`work_order_id`),
  KEY `idx_product` (`product_id`),
  KEY `idx_calculated_at` (`calculated_at`),
  KEY `idx_net_required` (`net_required`),
  KEY `idx_material_req_product_calculated` (`product_id`,`calculated_at`),
  CONSTRAINT `material_requirements_ibfk_1` FOREIGN KEY (`work_order_id`) REFERENCES `work_orders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `material_requirements_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `material_requirements`
--

LOCK TABLES `material_requirements` WRITE;
/*!40000 ALTER TABLE `material_requirements` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `material_requirements` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `mention_stats`
--

DROP TABLE IF EXISTS `mention_stats`;
/*!50001 DROP VIEW IF EXISTS `mention_stats`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `mention_stats` AS SELECT
 1 AS `user_id`,
  1 AS `user_name`,
  1 AS `total_mentions`,
  1 AS `unread_mentions`,
  1 AS `last_mention_at` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `mentions`
--

DROP TABLE IF EXISTS `mentions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `mentions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `mentioned_by` int(10) unsigned NOT NULL,
  `entity_type` varchar(50) NOT NULL COMMENT 'Comment, Note, Message, etc.',
  `entity_id` int(11) NOT NULL COMMENT 'ID of the comment/note/message',
  `related_type` varchar(50) DEFAULT NULL COMMENT 'Invoice, Quote, Task, etc.',
  `related_id` int(11) DEFAULT NULL COMMENT 'ID of the invoice/quote/task',
  `content_snippet` varchar(500) DEFAULT NULL COMMENT 'Snippet of text where mention occurred',
  `is_read` tinyint(1) DEFAULT 0,
  `read_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_id` (`user_id`,`is_read`),
  KEY `idx_mentioned_by` (`mentioned_by`),
  KEY `idx_entity` (`entity_type`,`entity_id`),
  KEY `idx_related` (`related_type`,`related_id`),
  CONSTRAINT `mentions_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `mentions_ibfk_2` FOREIGN KEY (`mentioned_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Track @mentions across the system';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mentions`
--

LOCK TABLES `mentions` WRITE;
/*!40000 ALTER TABLE `mentions` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `mentions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `menu_items`
--

DROP TABLE IF EXISTS `menu_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `menu_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) DEFAULT NULL,
  `label` varchar(100) NOT NULL,
  `icon` varchar(50) DEFAULT NULL,
  `url` varchar(255) DEFAULT NULL,
  `target` varchar(20) DEFAULT '_self',
  `permission_required` varchar(100) DEFAULT NULL COMMENT 'Permission key to check (e.g., users.view)',
  `display_order` int(11) DEFAULT 0,
  `is_active` tinyint(1) DEFAULT 1,
  `is_header` tinyint(1) DEFAULT 0 COMMENT 'Is this a section header?',
  `is_app_grid` tinyint(1) DEFAULT 0,
  `badge_query` text DEFAULT NULL COMMENT 'SQL query to get badge count',
  `badge_color` varchar(20) DEFAULT NULL COMMENT 'Badge color: primary, danger, warning, etc.',
  `urgent_threshold` int(11) DEFAULT NULL COMMENT 'If badge count > this, show as urgent',
  `urgent_color` varchar(20) DEFAULT NULL COMMENT 'Color when urgent',
  `description` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_parent` (`parent_id`),
  KEY `idx_order` (`display_order`),
  KEY `idx_active` (`is_active`),
  KEY `idx_permission` (`permission_required`),
  CONSTRAINT `menu_items_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `menu_items` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=364 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `menu_items`
--

LOCK TABLES `menu_items` WRITE;
/*!40000 ALTER TABLE `menu_items` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `menu_items` VALUES
(1,NULL,'Dashboard','bi bi-cpu','dashboard','_self','dashboard.view',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:43:45','2025-11-30 01:23:31'),
(2,NULL,'DEPARTMENTS',NULL,NULL,'_self',NULL,100,1,1,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:43:45','2025-11-01 17:43:45'),
(3,2,'CRM','bi bi-person-badge','#','_self','crm.view',20,1,0,0,'','',NULL,'','','2025-11-01 17:44:23','2025-11-11 11:44:58'),
(4,3,'Dashboard','','crm/dashboard','_self','crm.dashboard',10,1,0,0,'','',NULL,'','','2025-11-01 17:44:23','2025-11-29 19:13:00'),
(5,3,'Companies','','companies','_self','companies.view',25,1,0,0,'SELECT COUNT(*) FROM customers WHERE status = \'active\'','',NULL,'','','2025-11-01 17:44:23','2025-11-28 22:27:00'),
(7,3,'Contacts','','crm/contacts','_self','crm.contacts',20,1,0,0,'SELECT ((SELECT COUNT(*) FROM client_contacts) + (SELECT COUNT(*) FROM customer_contacts))','primary',NULL,'','','2025-11-01 17:44:23','2025-11-29 19:13:00'),
(8,3,'Activities','','crm/activities','_self','crm.activities',15,1,0,0,'SELECT COUNT(*) as count FROM activities WHERE assigned_to = {user_id} AND activity_date = CURDATE() AND status != \'completed\'','info',3,'warning','','2025-11-01 17:44:23','2025-11-29 19:13:00'),
(10,3,'Opportunities','','crm/opportunities','_self','crm.opportunities',60,1,0,0,'SELECT COUNT(*) as count FROM opportunities WHERE status NOT IN (\'won\', \'lost\', \'closed\')','success',5,'warning','','2025-11-01 17:44:23','2025-11-29 19:13:00'),
(11,3,'Support','','#','_self','crm.view',80,1,0,0,'SELECT COUNT(*) as count FROM crm_support_tickets WHERE status NOT IN (\'closed\', \'resolved\')','danger',2,'warning','','2025-11-01 17:44:23','2025-11-11 12:23:42'),
(12,11,'Tickets',NULL,'crm/support','_self','crm.view',1,1,0,0,'SELECT COUNT(*) as count FROM crm_support_tickets WHERE status NOT IN (\'closed\', \'resolved\')','danger',2,'warning',NULL,'2025-11-01 17:44:23','2025-11-11 11:15:46'),
(14,3,'Reports','','crm/reports','_self','crm.reports',90,1,0,0,'','',NULL,'','','2025-11-01 17:44:23','2025-11-29 19:13:00'),
(15,NULL,'ADMIN','','','_self','admin',400,1,1,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-08 15:02:09'),
(16,15,'Announcements','bi bi-megaphone-fill','announcements','_self','announcements.view',1,1,0,0,'SELECT COUNT(*) as count FROM announcements WHERE status = \'active\' AND start_date <= CURDATE() AND (end_date IS NULL OR end_date >= CURDATE())','info',NULL,'','','2025-11-01 17:44:54','2025-11-28 22:27:00'),
(17,15,'Settings','bi bi-gear-wide-connected','#','_self','admin',2,1,0,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-08 15:02:28'),
(18,17,'Company Settings','','#','_self','admin',50,1,0,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-17 11:28:18'),
(19,18,'Company Info',NULL,'settings/company','_self','settings.company',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:44:54','2025-11-29 19:13:00'),
(20,18,'Email Settings',NULL,'settings/email','_self','settings.email',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:44:54','2025-11-29 19:13:00'),
(21,18,'Locations',NULL,'locations','_self','locations.view',3,1,0,0,'SELECT COUNT(*) FROM locations WHERE is_active = 1','primary',NULL,NULL,NULL,'2025-11-01 17:44:54','2025-11-28 22:27:00'),
(22,17,'Financial Settings','','#','_self','admin',60,1,0,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-17 11:29:22'),
(23,22,'Tax Settings','','settings/tax','_self','settings.tax',5,1,0,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-29 19:13:00'),
(24,22,'Fiscal Year',NULL,'settings/fiscal-year','_self','settings.fiscal_year',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:44:54','2025-11-29 19:13:00'),
(25,22,'Payment Terms',NULL,'settings/payment-terms','_self','settings.payment_terms',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:44:54','2025-11-29 19:13:00'),
(26,22,'Cost Allocation','','settings/cost-allocation','_self','settings.cost_allocation',1,1,0,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-29 19:13:00'),
(27,22,'PP&E Parameters','','settings/ppe-parameters','_self','settings.ppe_parameters',4,1,0,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-29 19:13:00'),
(28,17,'Location Settings','','#','_self','admin',80,1,0,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-17 11:29:38'),
(29,28,'Business Parameters',NULL,'settings/business-parameters','_self','settings.business_parameters',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:44:54','2025-11-29 19:13:00'),
(30,28,'Facilities & Leasing',NULL,'settings/facilities','_self','settings.facilities',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:44:54','2025-11-29 19:13:00'),
(31,28,'Payroll Settings',NULL,'settings/payroll','_self','settings.payroll',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:44:54','2025-11-29 19:13:00'),
(32,17,'Security Settings','','#','_self','admin',140,1,0,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-29 12:46:27'),
(33,32,'Users','','users','_self','users.view',5,1,0,0,'SELECT COUNT(*) as count FROM users WHERE status != \'active\'','',NULL,'','','2025-11-01 17:44:54','2025-11-30 13:39:08'),
(35,17,'System Configuration','','#','_self','admin',150,1,0,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-24 19:17:51'),
(36,281,'Menu Mgmt','','menus','_self','menus.view',20,1,0,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-28 22:27:00'),
(37,35,'Dropdowns',NULL,'#','_self','admin',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:44:54','2025-11-08 15:04:07'),
(38,37,'Sales & CRM','','settings/dropdowns/sales','_self','settings.sales__crm',3,1,0,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-29 19:15:36'),
(39,37,'Operations',NULL,'settings/dropdowns/operations','_self','settings.operations',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:44:54','2025-11-29 19:15:36'),
(40,35,'Templates','','#','_self','admin',6,1,0,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-24 19:17:08'),
(42,40,'Terms & Conditions',NULL,'settings/terms-conditions','_self','settings.terms_conditions',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:44:54','2025-11-29 19:13:00'),
(43,35,'QuickBooks Mgmt','','quickbooks','_self','quickbooks.view',3,1,0,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-28 22:27:00'),
(44,2,'Accounting','bi bi-calculator','#','_self','accounting.view',10,1,0,0,'','',NULL,'','','2025-11-01 17:45:12','2025-11-11 11:44:58'),
(45,61,'All Report Package','','accounting/reports/package','_self','accounting.all_report_package',0,1,0,0,'','',NULL,'','','2025-11-01 17:45:12','2025-11-29 19:15:36'),
(46,44,'Core Accounting','','#','_self','accounting.view',30,1,0,0,'','',NULL,'','','2025-11-01 17:45:12','2025-11-15 19:19:45'),
(47,46,'Chart of Accounts',NULL,'accounting/accounts','_self','accounting.accounts',1,1,0,0,'SELECT COUNT(*) FROM chart_of_accounts WHERE status = \'active\'','primary',NULL,NULL,NULL,'2025-11-01 17:45:12','2025-11-29 19:13:00'),
(48,46,'Journal Entries',NULL,'accounting/journal','_self','accounting.journal',2,1,0,0,'SELECT COUNT(*) as count FROM journal_entries WHERE status = \'draft\'','primary',0,'warning',NULL,'2025-11-01 17:45:12','2025-11-29 19:13:00'),
(49,46,'General Ledger',NULL,'accounting/ledger','_self','accounting.ledger',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:12','2025-11-29 19:13:00'),
(50,44,'Banking/Cash','','#','_self','accounting.banking_cash',20,1,0,0,'','',NULL,'','','2025-11-01 17:45:12','2025-12-02 13:56:09'),
(51,50,'Bank Accounts',NULL,'accounting/bank-accounts','_self','accounting.bank_accounts',1,1,0,0,'SELECT COUNT(*) FROM bank_accounts WHERE is_active = 1','primary',NULL,NULL,NULL,'2025-11-01 17:45:12','2025-11-29 19:13:00'),
(52,50,'Bank Reconciliation',NULL,'accounting/reconciliation','_self','accounting.reconciliation',2,1,0,0,'SELECT COUNT(*) as count FROM bank_accounts WHERE last_reconciliation_date < DATE_SUB(CURDATE(), INTERVAL 30 DAY) OR last_reconciliation_date IS NULL','danger',1,'danger',NULL,'2025-11-01 17:45:12','2025-11-29 19:13:00'),
(53,44,'Operations','','#','_self','accounting.operations',60,1,0,0,'','',NULL,'','','2025-11-01 17:45:12','2025-12-02 13:56:09'),
(54,53,'Expenses',NULL,'accounting/expenses','_self','accounting.expenses',1,1,0,0,'SELECT COUNT(*) as count FROM expenses WHERE status = \'pending_approval\'','info',10,'warning',NULL,'2025-11-01 17:45:12','2025-11-29 19:13:00'),
(55,53,'Budgets',NULL,'accounting/budgets','_self','accounting.budgets',2,1,0,0,'SELECT COUNT(*) FROM budgets WHERE status = \'active\'','primary',NULL,NULL,NULL,'2025-11-01 17:45:12','2025-11-29 19:13:00'),
(56,44,'Assets/Compliance','','#','_self','accounting.assets_compliance',10,1,0,0,'','',NULL,'','','2025-11-01 17:45:12','2025-12-02 13:56:09'),
(57,56,'Fixed Assets',NULL,'accounting/assets','_self','accounting.assets',1,1,0,0,'SELECT COUNT(*) as count FROM fixed_assets WHERE status = \'active\' AND depreciation_method != \'none\'','primary',NULL,NULL,NULL,'2025-11-01 17:45:12','2025-11-29 19:13:00'),
(58,56,'Depreciation',NULL,'accounting/depreciation','_self','accounting.depreciation',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:12','2025-11-29 19:13:00'),
(60,56,'Period Closing',NULL,'accounting/period','_self','accounting.period',4,1,0,0,'SELECT COUNT(*) as count FROM accounting_periods WHERE status = \'open\'','warning',1,'warning',NULL,'2025-11-01 17:45:12','2025-11-29 19:13:00'),
(61,44,'Reports','','#','_self','accounting.reports',90,1,0,0,'','',NULL,'','','2025-11-01 17:45:12','2025-12-02 13:56:09'),
(62,61,'Balance Sheet',NULL,'accounting/reports/balance-sheet','_self','accounting.balance_sheet',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:12','2025-11-29 19:15:36'),
(63,61,'Income Statement',NULL,'accounting/reports/income-statement','_self','accounting.income_statement',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:12','2025-11-29 19:15:36'),
(65,61,'Trial Balance','','accounting/reports/trial-balance','_self','accounting.trial_balance',5,1,0,0,'','',NULL,'','','2025-11-01 17:45:12','2025-11-29 19:15:36'),
(66,61,'Aging Reports',NULL,'accounting/reports/aging','_self','accounting.aging_reports',6,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:12','2025-11-29 19:15:36'),
(68,2,'HR','bi bi-people','#','_self','hr.view',30,1,0,0,'','',NULL,'','','2025-11-01 17:45:27','2025-11-11 12:23:42'),
(69,68,'Dashboard',NULL,'hr/dashboard','_self','hr.dashboard',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:27','2025-11-29 19:13:00'),
(70,68,'Employees',NULL,'employees','_self','employees.view',2,1,0,0,'SELECT COUNT(*) FROM employees WHERE status = \'active\'','primary',NULL,NULL,NULL,'2025-11-01 17:45:27','2025-11-29 19:13:00'),
(71,68,'Recruitment',NULL,'#','_self','hr.view',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:27','2025-11-11 11:41:06'),
(72,71,'Dashboard',NULL,'hr/recruitment/dashboard','_self','hr.dashboard',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:27','2025-11-29 19:15:36'),
(73,71,'Job Positions',NULL,'hr/recruitment/positions','_self','positions.view',2,1,0,0,'SELECT COUNT(*) FROM job_positions WHERE status = \'open\'','primary',NULL,NULL,NULL,'2025-11-01 17:45:27','2025-11-11 12:46:12'),
(74,71,'Applications',NULL,'hr/recruitment/applications','_self','hr.applications',3,1,0,0,'SELECT COUNT(*) as count FROM applications WHERE status = \'pending_review\'','info',5,'warning',NULL,'2025-11-01 17:45:27','2025-11-29 19:15:36'),
(75,71,'Interviews',NULL,'hr/recruitment/interviews','_self','hr.interviews',4,1,0,0,'SELECT COUNT(*) as count FROM interviews WHERE status = \'scheduled\'','info',0,'warning',NULL,'2025-11-01 17:45:27','2025-11-29 19:15:36'),
(76,71,'Assessments',NULL,'hr/recruitment/assessments','_self','hr.assessments',5,1,0,0,'SELECT COUNT(*) FROM qualification_assessments WHERE status = \'pending\'',NULL,NULL,NULL,NULL,'2025-11-01 17:45:27','2025-11-29 19:15:36'),
(77,71,'Offers',NULL,'hr/recruitment/offers','_self','hr.offers',6,1,0,0,'SELECT COUNT(*) as count FROM offers WHERE status = \'pending\'','success',0,'warning',NULL,'2025-11-01 17:45:27','2025-11-29 19:15:36'),
(78,68,'Development',NULL,'#','_self','hr.view',4,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:27','2025-11-11 11:41:06'),
(79,78,'Contracts',NULL,'hr/development/contracts','_self','hr.contracts',1,1,0,0,'SELECT COUNT(*) as count FROM contracts WHERE status IN (\'draft\', \'pending_signature\', \'pending_approval\')','warning',3,'warning',NULL,'2025-11-01 17:45:27','2025-11-29 19:15:36'),
(80,78,'Training',NULL,'hr/development/training','_self','hr.training',2,1,0,0,'SELECT COUNT(*) as count FROM training_programs WHERE status = \'in_progress\'','secondary',NULL,NULL,NULL,'2025-11-01 17:45:27','2025-11-29 19:15:36'),
(81,78,'Performance Reviews',NULL,'hr/development/reviews','_self','hr.performance_reviews',3,1,0,0,'SELECT COUNT(*) as count FROM performance_reviews WHERE status IN (\'pending\', \'in_progress\')','info',3,'warning',NULL,'2025-11-01 17:45:27','2025-11-29 19:15:36'),
(82,68,'Relations',NULL,'#','_self','hr.view',5,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:27','2025-11-11 11:41:06'),
(83,82,'Issues & Challenges',NULL,'hr/relations/issues','_self','hr.issues__challenges',1,1,0,0,'SELECT COUNT(*) FROM employee_issues WHERE status IN (\'reported\', \'investigating\', \'in-progress\')','warning',NULL,NULL,NULL,'2025-11-01 17:45:27','2025-11-29 19:15:36'),
(84,82,'Separations',NULL,'hr/relations/separations','_self','hr.separations',2,1,0,0,'SELECT COUNT(*) as count FROM separations WHERE status = \'pending\'','warning',NULL,NULL,NULL,'2025-11-01 17:45:27','2025-11-29 19:15:36'),
(85,68,'Attendance',NULL,'hr/attendance','_self','hr.view',6,1,0,0,'SELECT COUNT(*) as count FROM attendance WHERE date = CURDATE() AND clock_out IS NULL','danger',0,'danger',NULL,'2025-11-01 17:45:27','2025-11-30 00:54:34'),
(86,2,'Inventory','bi bi-box-seam','#','_self','inventory.view',40,1,0,0,'','',NULL,'','','2025-11-01 17:45:41','2025-11-11 12:23:42'),
(87,86,'Dashboard',NULL,'inventory/dashboard','_self','inventory.dashboard',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:41','2025-11-29 19:13:00'),
(88,86,'Product Management',NULL,'#','_self','inventory.view',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:41','2025-11-11 11:41:06'),
(89,88,'Products',NULL,'products','_self','products.view',1,1,0,0,'SELECT COUNT(DISTINCT p.id) as count FROM products p LEFT JOIN inventory_levels il ON p.id = il.product_id WHERE COALESCE(il.quantity, 0) <= COALESCE(p.reorder_level, 0) AND p.reorder_level > 0','danger',3,'danger',NULL,'2025-11-01 17:45:41','2025-11-29 19:13:00'),
(90,88,'Categories',NULL,'inventory/categories','_self','inventory.categories',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:41','2025-11-29 19:13:00'),
(91,86,'Stock Levels',NULL,'/inventory/stock-levels','_self','inventory.stock_levels',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:41','2025-11-29 19:13:00'),
(92,2,'Manufacturing','bi bi-gear','#','_self','manufacturing.view',50,1,0,0,'','',NULL,'','','2025-11-01 17:46:13','2025-11-11 12:23:42'),
(93,92,'Dashboard',NULL,'manufacturing','_self','manufacturing.dashboard',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:13:00'),
(94,92,'Capacity Planning',NULL,'#','_self','manufacturing.capacity_planning',2,1,0,0,'SELECT COUNT(*) as count FROM capacity_plans WHERE utilization_percentage > 100 AND period_date >= CURDATE()',NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-12-02 13:56:09'),
(95,94,'Dashboard',NULL,'manufacturing/capacity','_self','manufacturing.capacity_dashboard',1,1,0,0,'SELECT COUNT(*) as count FROM capacity_plans WHERE utilization_percentage > 100 AND period_date >= CURDATE()',NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(96,94,'Real-time Status',NULL,'manufacturing/capacity/machineStatus','_self','manufacturing.real_time_status',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(97,94,'Analytics',NULL,'manufacturing/capacity/analytics','_self','manufacturing.analytics',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(98,94,'Availability',NULL,'manufacturing/capacity/availability','_self','manufacturing.availability',4,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(99,94,'Feasibility',NULL,'manufacturing/capacity/feasibility','_self','manufacturing.feasibility',5,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(100,92,'Planning & Materials',NULL,'#','_self','manufacturing.planning_materials',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-12-02 13:56:09'),
(101,100,'Bill of Materials',NULL,'manufacturing/boms','_self','manufacturing.boms',1,1,0,0,'SELECT COUNT(DISTINCT b.id) as count FROM boms b INNER JOIN bom_components bc ON b.id = bc.bom_id INNER JOIN products p ON bc.component_id = p.id LEFT JOIN inventory_levels il ON p.id = il.product_id WHERE COALESCE(il.quantity, 0) < COALESCE(bc.quantity_required * 2, 0)','primary',NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:13:00'),
(102,100,'MRP',NULL,'manufacturing/mrp','_self','manufacturing.mrp',2,1,0,0,'SELECT COUNT(*) as count FROM mrp_requirements WHERE status = \'required\' AND required_date <= DATE_ADD(CURDATE(), INTERVAL 7 DAY)','info',NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:13:00'),
(103,100,'Production Scheduling',NULL,'manufacturing/scheduling','_self','manufacturing.scheduling',3,1,0,0,'SELECT COUNT(*) as count FROM work_orders WHERE status = \'pending\'',NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:13:00'),
(104,92,'Production',NULL,'#','_self','manufacturing.production',4,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-12-02 13:56:09'),
(105,104,'Work Orders',NULL,'manufacturing/workorders','_self','manufacturing.workorders',1,1,0,0,'SELECT COUNT(*) as count FROM work_orders WHERE status NOT IN (\'completed\', \'cancelled\')','primary',10,'warning',NULL,'2025-11-01 17:46:13','2025-11-29 19:13:00'),
(106,104,'Shop Floor Control',NULL,'manufacturing/shopfloor','_self','manufacturing.shopfloor',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:13:00'),
(107,92,'Resources',NULL,'#','_self','manufacturing.resources',5,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-12-02 13:56:09'),
(108,107,'Business Lines',NULL,'manufacturing/business-lines','_self','manufacturing.business_lines',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:13:00'),
(109,107,'Equipment Lines',NULL,'manufacturing/equipment-lines','_self','manufacturing.equipment_lines',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:13:00'),
(110,107,'Equipment Units',NULL,'manufacturing/equipment','_self','manufacturing.equipment',3,1,0,0,'SELECT COUNT(*) as count FROM equipment WHERE status = \'maintenance_required\'',NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:13:00'),
(111,92,'Quality Control',NULL,'#','_self','manufacturing.quality_control',6,1,0,0,'SELECT COUNT(*) FROM quality_inspections WHERE status = \'pending\'','warning',NULL,NULL,NULL,'2025-11-01 17:46:13','2025-12-02 13:56:09'),
(112,111,'Dashboard',NULL,'manufacturing/quality','_self','manufacturing.quality_dashboard',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(113,111,'Inspections',NULL,'manufacturing/quality/inspections','_self','manufacturing.inspections',2,1,0,0,'SELECT COUNT(*) as count FROM quality_inspections WHERE status IN (\'pending\', \'in_progress\')','warning',0,'danger',NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(114,111,'NCR',NULL,'manufacturing/quality/ncr','_self','manufacturing.ncr',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(115,111,'Metrics',NULL,'manufacturing/quality/metrics','_self','manufacturing.metrics',4,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(116,111,'Templates',NULL,'manufacturing/quality/templates','_self','manufacturing.templates',5,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(117,92,'Maintenance',NULL,'#','_self','manufacturing.maintenance',7,1,0,0,'SELECT COUNT(*) as count FROM maintenance_work_orders WHERE status IN (\'pending\', \'scheduled\')',NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-12-02 13:56:09'),
(118,117,'Maintenance Schedules',NULL,'manufacturing/maintenance/schedules','_self','manufacturing.maintenance_schedules',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(119,117,'Maintenance Work Orders',NULL,'manufacturing/maintenance/work-orders','_self','manufacturing.maintenance_work_orders',2,1,0,0,'SELECT COUNT(*) as count FROM maintenance_work_orders WHERE status IN (\'pending\', \'scheduled\')','warning',3,'danger',NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(120,117,'Downtime Tracking',NULL,'manufacturing/maintenance/downtime','_self','manufacturing.downtime_tracking',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(121,92,'Costing',NULL,'#','_self','manufacturing.costing',8,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-12-02 13:56:09'),
(122,121,'Production Costing',NULL,'manufacturing/costing/production','_self','manufacturing.production_costing',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(123,121,'Job Costing',NULL,'manufacturing/costing/jobs','_self','manufacturing.job_costing',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(124,92,'Reports',NULL,'#','_self','manufacturing.reports',9,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-12-02 13:56:09'),
(125,124,'Production Reports',NULL,'manufacturing/reports/production','_self','manufacturing.production_reports',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(126,124,'OEE Reports',NULL,'manufacturing/reports/oee','_self','manufacturing.oee_reports',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(127,2,'Sales','bi bi-cart','#','_self','sales.view',70,1,0,0,'','',NULL,'','','2025-11-01 17:46:33','2025-11-11 12:23:42'),
(128,127,'Dashboard',NULL,'sales/dashboard','_self','sales.dashboard',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:33','2025-11-29 19:13:00'),
(129,127,'Sales Documents',NULL,'#','_self','sales.view',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:33','2025-11-11 11:41:06'),
(130,129,'Quotes','bi bi-1-square','quotes','_self','quotes.view',1,1,0,0,'SELECT COUNT(*) as count FROM quotes WHERE status NOT IN (\'converted\', \'rejected\', \'expired\')','info',5,'warning','','2025-11-01 17:46:33','2025-11-29 19:13:00'),
(131,129,'Orders','bi bi-3-square','sales/orders','_self','sales.orders',3,1,0,0,'SELECT COUNT(*) as count FROM sales_orders WHERE status NOT IN (\'delivered\', \'cancelled\')','primary',5,'warning','','2025-11-01 17:46:33','2025-11-29 19:13:00'),
(132,129,'Invoices','bi bi-4-square','invoices','_self','invoices.view',4,1,0,0,'SELECT COUNT(*) as count FROM invoices WHERE status NOT IN (\'paid\', \'cancelled\')','warning',5,'danger','','2025-11-01 17:46:33','2025-11-24 14:54:27'),
(133,129,'Credit Notes','','creditnotes','_self','creditnotes.view',10,1,0,0,'SELECT COUNT(*) as count FROM credit_notes WHERE status NOT IN (\'applied\', \'cancelled\')','',NULL,'','','2025-11-01 17:46:33','2025-11-29 19:13:00'),
(135,127,'Fulfillment',NULL,'#','_self','sales.fulfillment',4,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:33','2025-12-02 14:03:43'),
(136,135,'Shipments',NULL,'shipments','_self','shipments.view',1,1,0,0,'SELECT COUNT(*) as count FROM shipments WHERE status NOT IN (\'delivered\', \'cancelled\')','primary',5,'warning',NULL,'2025-11-01 17:46:33','2025-11-29 19:13:00'),
(137,135,'Delivery Notes',NULL,'sales/delivery_notes','_self','sales.delivery_notes',2,1,0,0,'SELECT COUNT(*) as count FROM delivery_notes WHERE status IN (\'draft\', \'pending\', \'in_transit\')','info',5,'warning',NULL,'2025-11-01 17:46:33','2025-11-29 19:13:00'),
(138,135,'Returns (RMA)',NULL,'sales/returns','_self','sales.returns',3,1,0,0,'SELECT COUNT(*) as count FROM returns WHERE status IN (\'pending\', \'approved\', \'received\')','warning',10,'danger',NULL,'2025-11-01 17:46:33','2025-11-29 19:13:00'),
(139,127,'Configuration',NULL,'#','_self','sales.configuration',5,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:33','2025-12-02 14:03:43'),
(140,139,'Pricing Rules',NULL,'sales/pricing_rules','_self','sales.pricing_rules',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:33','2025-11-29 19:13:00'),
(141,139,'Discounts & Promotions',NULL,'sales/promotions','_self','sales.promotions',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:33','2025-11-29 19:13:00'),
(142,127,'Reports',NULL,'sales/reports','_self','sales.reports',6,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:33','2025-11-29 19:13:00'),
(143,2,'Purchases','bi bi-bag','#','_self','purchases.view',60,1,0,0,'','',NULL,'','','2025-11-01 17:46:47','2025-11-11 12:23:42'),
(144,143,'Dashboard',NULL,'purchases/dashboard','_self','purchases.dashboard',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:47','2025-11-29 19:13:00'),
(145,143,'Suppliers',NULL,'suppliers','_self','suppliers.view',2,1,0,0,'SELECT COUNT(*) FROM suppliers','primary',NULL,NULL,NULL,'2025-11-01 17:46:47','2025-11-29 19:13:00'),
(146,143,'Procurement Process',NULL,'#','_self','purchases.procurement_process',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:47','2025-12-02 13:59:43'),
(147,146,'Purchase Requisitions',NULL,'purchases/requisitions','_self','purchases.requisitions',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:47','2025-11-29 19:13:00'),
(148,146,'RFQs (Quotes)',NULL,'purchases/rfqs','_self','purchases.rfqs',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:47','2025-11-29 19:13:00'),
(149,146,'Purchase Orders',NULL,'purchases/orders','_self','purchases.orders',3,1,0,0,'SELECT COUNT(*) as count FROM purchase_orders WHERE status NOT IN (\'completed\', \'cancelled\')','primary',5,'warning',NULL,'2025-11-01 17:46:47','2025-11-29 19:13:00'),
(150,146,'Goods Receipt',NULL,'purchases/receiving','_self','purchases.receiving',4,1,0,0,'SELECT COUNT(*) as count FROM goods_receipts WHERE status IN (\'pending\', \'received\')','info',5,'warning',NULL,'2025-11-01 17:46:47','2025-11-29 19:13:00'),
(151,143,'Payments & Documents',NULL,'#','_self','purchases.payments_documents',4,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:47','2025-12-02 13:59:43'),
(152,151,'Bills/Invoices',NULL,'purchases/bills','_self','purchases.bills',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:47','2025-11-29 19:13:00'),
(153,151,'Payments Made (Legacy)',NULL,'purchases/payments','_self','purchases.payments',2,1,0,0,NULL,NULL,NULL,NULL,'DEPRECATED: Use Accounting > Vendor Payments instead','2025-11-01 17:46:47','2025-11-29 19:13:00'),
(154,151,'Purchase Returns',NULL,'purchases/returns','_self','purchases.returns',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:47','2025-11-29 19:13:00'),
(155,151,'Debit Notes',NULL,'purchases/debit-notes','_self','purchases.debit_notes',4,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:47','2025-11-29 19:13:00'),
(156,143,'Supplier Contracts','','purchases/contracts','_self','purchases.view',5,1,0,0,'','',NULL,'','','2025-11-01 17:46:47','2025-12-02 19:36:11'),
(157,143,'Reports',NULL,'purchases/reports','_self','purchases.reports',6,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:47','2025-11-29 19:13:00'),
(161,11,'FAQs',NULL,'crm/faqs','_self','crm.view',2,0,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:57:10','2025-11-11 11:15:46'),
(162,NULL,'QUICK LINKS','','','_self','dashboard.view',300,1,1,0,'','',NULL,'','','2025-11-01 18:11:31','2025-11-11 11:15:46'),
(164,68,'Time Off',NULL,'hr/timeoff','_self','hr.view',50,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-30 00:54:34'),
(165,164,'My Time Off',NULL,'hr/timeoff/my','_self','hr.view',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-30 01:00:47'),
(166,164,'All Requests',NULL,'hr/timeoff/all','_self','hr.view',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-30 01:00:47'),
(167,164,'Approve Requests',NULL,'hr/timeoff/approve','_self','hr.view',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-30 01:00:47'),
(168,164,'Time Off Types',NULL,'hr/timeoff/types','_self','admin',4,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-30 01:00:47'),
(169,164,'Accrual Rules',NULL,'hr/timeoff/accruals','_self','admin',5,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-30 01:00:47'),
(170,68,'Timesheets',NULL,'hr/timesheets','_self','hr.view',51,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-30 00:54:34'),
(171,170,'My Timesheet',NULL,'hr/timesheets/my','_self','hr.view',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-30 01:00:47'),
(172,170,'All Timesheets',NULL,'hr/timesheets/all','_self','hr.view',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-30 01:00:47'),
(173,170,'Approve Timesheets',NULL,'hr/timesheets/approve','_self','hr.view',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-30 01:00:47'),
(174,170,'Timesheet Reports',NULL,'hr/timesheets/reports','_self','hr.view',4,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-30 01:00:47'),
(180,86,'Lot/Serial Numbers','','inventory/lots','_self','inventory.lots',40,1,0,0,'SELECT COUNT(*) as count FROM lot_serial_numbers WHERE expiration_date IS NOT NULL AND expiration_date BETWEEN CURDATE() AND DATE_ADD(CURDATE(), INTERVAL 30 DAY) AND status = \'active\'','warning',5,'danger','','2025-11-03 19:25:34','2025-11-29 19:13:00'),
(181,180,'All Lots/Serials',NULL,'inventory/lots/all','_self','inventory.all_lotsserials',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-29 19:15:36'),
(182,180,'Traceability',NULL,'inventory/lots/traceability','_self','inventory.traceability',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-29 19:15:36'),
(183,180,'Expiration Dates',NULL,'inventory/lots/expiration','_self','inventory.expiration_dates',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-29 19:15:36'),
(184,44,'Multi-Currency','','accounting/currency','_self','accounting.multicurrency',50,1,0,0,'','',NULL,'','','2025-11-03 19:25:34','2025-12-02 13:56:09'),
(185,184,'Currencies','','accounting/currency/list','_self','accounting.currencies',1,1,0,0,'','',NULL,'','','2025-11-03 19:25:34','2025-11-29 19:15:36'),
(186,184,'Exchange Rates','','accounting/currency/rates','_self','accounting.exchange_rates',2,1,0,0,'','',NULL,'','','2025-11-03 19:25:34','2025-11-29 19:15:36'),
(187,184,'Currency Gains/Losses','','accounting/currency/revaluation','_self','accounting.view',3,1,0,0,'','',NULL,'','','2025-11-03 19:25:34','2025-11-12 17:45:06'),
(188,32,'Audit Log','','audit-logs','_self','audit_log.view',2,1,0,0,'','',NULL,'','','2025-11-03 19:25:34','2025-11-30 13:42:36'),
(193,17,'Automation','','settings/automation','_self','settings.automation',30,1,0,0,'','',NULL,'','','2025-11-03 19:25:34','2025-11-29 19:13:00'),
(194,193,'Workflows','','settings/automation/workflows','_self','admin',5,0,0,0,'','',NULL,'','','2025-11-03 19:25:35','2025-11-16 21:19:23'),
(195,193,'Approval Rules','','settings/automation/approvals','_self','admin',1,0,0,0,'','',NULL,'','','2025-11-03 19:25:35','2025-11-16 21:20:03'),
(196,193,'Templates','','automation/email-templates','_self','admin',2,1,0,0,'','',NULL,'','','2025-11-03 19:25:35','2025-11-16 21:47:57'),
(197,193,'Scheduled Actions',NULL,'settings/automation/scheduled','_self','admin',4,0,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-05 16:19:55'),
(198,241,'Projects','bi bi-kanban','projects','_self','projects.view',300,1,0,0,'SELECT COUNT(*) as count FROM projects WHERE status IN (\'active\', \'on_hold\')','',NULL,'','','2025-11-03 19:25:35','2025-11-11 14:34:18'),
(199,198,'Dashboard','','projects/dashboard','_self','projects.dashboard',1,1,0,0,'','',NULL,'','','2025-11-03 19:25:35','2025-11-29 19:05:45'),
(201,198,'My Projects','','projects/?my_projects=1','_self','projects.my_projects',11,1,0,0,'','',NULL,'','','2025-11-03 19:25:35','2025-11-29 19:13:00'),
(202,198,'My Tasks','','projects/my-tasks','_self','projects.my_tasks',20,1,0,0,'','',NULL,'','','2025-11-03 19:25:35','2025-11-29 19:13:00'),
(203,198,'Gantt Chart','','projects/gantt','_self','projects.gantt',30,0,0,0,'','',NULL,'','','2025-11-03 19:25:35','2025-11-29 19:26:50'),
(204,198,'Time Tracking','','projects/time','_self','projects.time_tracking',40,0,0,0,'','',NULL,'','','2025-11-03 19:25:35','2025-11-29 19:26:50'),
(205,198,'Resource Planning','','projects/resources','_self','projects.resource_planning',50,0,0,0,'','',NULL,'','','2025-11-03 19:25:35','2025-11-29 19:26:50'),
(206,198,'Project Profitability','','projects/profitability','_self','projects.profitability',60,0,0,0,'','',NULL,'','','2025-11-03 19:25:35','2025-11-29 19:26:50'),
(207,241,'Files','bi bi-file-earmark-text','/files','_self','files.manage',100,1,0,0,'','',NULL,'','','2025-11-03 19:25:35','2025-11-21 21:48:10'),
(208,207,'All Files','','/files','_self','file_manager.all_files',10,1,0,0,'SELECT COUNT(*) FROM files WHERE 1=1','',NULL,'','','2025-11-03 19:25:35','2025-11-29 19:13:00'),
(209,207,'My Files','','/files?context=user','_self','file_manager.my_files',11,1,0,0,'SELECT COUNT(*) FROM files WHERE uploaded_by = {user_id}','',NULL,'','','2025-11-03 19:25:35','2025-11-29 19:13:00'),
(210,207,'Shared With Me','','files/shared','_self','file_manager.shared',12,1,0,0,'SELECT COUNT(DISTINCT f.id) FROM files f \r\n                 INNER JOIN file_shares fs ON f.id = fs.file_id \r\n                 WHERE (fs.shared_with_user_id = {user_id} OR fs.shared_with_role_id = {role_id})\r\n                 AND (fs.expires_at IS NULL OR fs.expires_at > NOW())\r\n                 AND f.uploaded_by != {user_id}','',NULL,'','','2025-11-03 19:25:35','2025-11-29 19:13:00'),
(213,241,'Reports','bi bi-clipboard-data','reports/custom','_self','reports.view',400,1,0,0,'SELECT COUNT(*) FROM custom_reports WHERE created_by = {user_id}','',NULL,'','','2025-11-03 19:25:35','2025-11-11 14:33:34'),
(214,213,'Report Builder',NULL,'reports/custom/builder','_self','custom_reports.builder',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-29 19:05:45'),
(215,213,'My Reports',NULL,'reports/custom/my','_self','custom_reports.my',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-29 19:05:45'),
(216,213,'Shared Reports',NULL,'reports/custom/shared','_self','custom_reports.shared',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-29 19:05:45'),
(217,213,'Scheduled Reports',NULL,'reports/custom/scheduled','_self','custom_reports.scheduled',4,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-29 19:05:45'),
(218,3,'Email Marketing','','email-marketing','_self','marketing.view',40,1,0,0,'','',NULL,'','','2025-11-03 19:25:35','2025-11-15 19:18:10'),
(219,218,'Dashboard',NULL,'email-marketing/dashboard','_self','marketing.view',1,0,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-11 11:15:46'),
(220,218,'Campaigns',NULL,'email-marketing/campaigns','_self','marketing.view',10,0,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-11 11:15:46'),
(221,218,'Email Templates',NULL,'email-marketing/templates','_self','marketing.view',20,0,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-11 11:15:46'),
(222,218,'Mailing Lists',NULL,'email-marketing/lists','_self','marketing.view',30,0,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-11 11:15:46'),
(223,218,'Automation',NULL,'email-marketing/automation','_self','marketing.view',40,0,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-11 11:15:46'),
(224,218,'Analytics',NULL,'email-marketing/analytics','_self','marketing.view',50,0,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-11 11:15:46'),
(225,241,'Helpdesk','bi bi-headset','helpdesk','_self','help_desk.view',200,1,0,0,'SELECT COUNT(*) as count FROM crm_support_tickets WHERE status NOT IN (\'closed\', \'resolved\')','',NULL,'','','2025-11-03 19:25:35','2025-11-29 19:01:02'),
(226,225,'Dashboard',NULL,'helpdesk/dashboard','_self','help_desk.dashboard',1,1,0,0,'SELECT COUNT(*) as count FROM crm_support_tickets WHERE status NOT IN (\'closed\', \'resolved\')',NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-29 19:01:02'),
(227,225,'Tickets',NULL,'helpdesk/tickets','_self','help_desk.tickets',10,1,0,0,'SELECT COUNT(*) as count FROM crm_support_tickets WHERE status NOT IN (\'closed\', \'resolved\')','danger',2,'warning',NULL,'2025-11-03 19:25:35','2025-11-29 19:01:02'),
(228,225,'My Tickets',NULL,'helpdesk/my-tickets','_self','help_desk.myTickets',11,1,0,0,'SELECT COUNT(*) as count FROM crm_support_tickets WHERE created_by = {user_id} AND status NOT IN (\'closed\', \'resolved\')','danger',0,'danger',NULL,'2025-11-03 19:25:35','2025-11-29 19:01:02'),
(229,225,'SLA Management',NULL,'helpdesk/sla','_self','help_desk.sla',20,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-29 19:01:02'),
(230,225,'Knowledge Base',NULL,'helpdesk/kb','_self','help_desk.knowledgeBase',30,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-29 19:01:02'),
(231,225,'Live Chat',NULL,'helpdesk/chat','_self','help_desk.chat',40,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-29 19:01:02'),
(232,225,'Reports',NULL,'helpdesk/reports','_self','help_desk.reports',50,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-29 19:01:02'),
(234,NULL,'APP GRID',NULL,NULL,'_self','admin',999,1,1,0,NULL,NULL,NULL,NULL,'Container for app grid shortcuts','2025-11-03 21:45:59','2025-11-08 15:05:40'),
(235,234,'DASHBOARD','bi bi-speedometer2','dashboard','_self','dashboard.view',1,1,0,1,'','',NULL,'','Quick access to dashboard','2025-11-03 21:45:59','2025-11-18 18:40:34'),
(236,234,'CALENDAR','bi bi-calendar4','calendar','_self','calendar.view',2,1,0,1,NULL,NULL,NULL,NULL,'Quick access to calendar','2025-11-03 21:45:59','2025-11-11 11:15:46'),
(237,234,'EMPLOYEES','bi bi-people','employees/directory','_self','employees.directory',3,1,0,1,'','',NULL,'','Quick access to customers','2025-11-03 21:45:59','2025-11-28 22:18:52'),
(238,234,'SALES','bi bi-cart','salesorders','_self','sales.view',200,0,0,1,'','',NULL,'','Quick access to sales orders','2025-11-03 21:45:59','2025-11-18 18:40:41'),
(239,234,'PRODUCTS','bi bi-box-seam','products','_self','inventory.view',100,0,0,1,'SELECT COUNT(DISTINCT p.id) as count FROM products p LEFT JOIN inventory_levels il ON p.id = il.product_id WHERE COALESCE(il.quantity, 0) <= COALESCE(p.reorder_level, 0) AND p.reorder_level > 0','danger',3,'danger','Quick access to products','2025-11-03 21:45:59','2025-11-18 18:40:40'),
(240,234,'SETTINGS','bi bi-sliders','settings','_self','settings.view',300,0,0,1,'','',NULL,'','Quick access to settings','2025-11-03 21:45:59','2025-11-18 18:40:42'),
(241,NULL,'TOOLS','','','_self',NULL,200,1,1,0,'','',NULL,'','','2025-11-03 23:09:44','2025-11-11 12:43:15'),
(250,18,'Positions','','hr/positions','_self','positions.view',4,1,0,0,'','',NULL,'','','2025-11-08 15:00:54','2025-11-11 13:13:12'),
(251,61,'A/P Aging Detail',NULL,'accounting/reports/ap-aging-detail','_self','accounting.ap_aging_detail',7,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-09 13:34:09','2025-11-29 19:15:36'),
(252,61,'A/R Aging Detail',NULL,'accounting/reports/ar-aging-detail','_self','accounting.ar_aging_detail',8,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-09 13:34:09','2025-11-29 19:15:36'),
(253,61,'Cash Flow Statement','','accounting/reports/cash-flow-statement','_self','accounting.cash_flow_statement',4,1,0,0,'','',NULL,'','','2025-11-09 13:34:09','2025-11-29 19:15:36'),
(254,61,'Payment Terms List',NULL,'accounting/reports/payment-terms-list','_self','accounting.payment_terms_list',10,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-09 13:34:09','2025-11-29 19:15:36'),
(255,281,'PHPmyadmin','','/phpmyadmin','_self','admin',30,1,0,0,'','',NULL,'','Admin access to PHPmyadmin','2025-11-11 13:25:37','2025-12-02 13:44:42'),
(257,86,'Visual Audits','','/camera-audit','_self','inventory.view',100,1,0,0,'','',NULL,'','Visual inventory audit logs with camera imagery','2025-11-13 18:23:41','2025-12-02 13:44:42'),
(259,18,'User Groups','','settings/user-groups','_self','settings.user_groups',10,1,0,0,'','',NULL,'','','2025-11-14 13:14:30','2025-11-29 19:13:00'),
(264,274,'Vendor Payments','','/accounting/vendor-payments','_self','accounting.vendor_payments',30,1,0,0,'','',NULL,'','','2025-11-15 18:53:41','2025-12-02 13:44:42'),
(265,44,'Tax Management','','#','_self','accounting.view',80,1,0,0,'','',NULL,'','','2025-11-15 18:53:41','2025-12-02 13:44:42'),
(266,265,'Tax Jurisdictions','','/tax/jurisdictions','_self','tax_jurisdictions.view',1,1,0,0,'','',NULL,'','','2025-11-15 18:53:41','2025-11-15 19:20:47'),
(267,265,'Tax Payments','','/tax/payments','_self','tax_payments.view',2,1,0,0,'','',NULL,'','','2025-11-15 18:53:41','2025-11-15 19:20:58'),
(268,265,'Tax Reports','','/tax/reports/liability','_self','tax_reports.view',3,1,0,0,'','',NULL,'','','2025-11-15 18:53:41','2025-11-15 19:21:09'),
(269,145,'1099 Contractors','','/suppliers?filter=1099','_self','1099_contractors.view',15,1,0,0,'','',NULL,'','','2025-11-15 18:53:41','2025-11-15 18:55:44'),
(270,145,'Suppliers','','suppliers','_self','purchases.view',10,1,0,0,'','',NULL,'','','2025-11-15 18:56:26','2025-12-02 13:44:42'),
(272,274,'Customer Payments','','/accounting/customer-payments','_self','accounting.customer_payments.view',10,1,0,0,'','',NULL,'','','2025-11-15 19:51:04','2025-11-15 19:57:01'),
(274,44,'Payments','','','_self','accounting.view',70,1,0,0,'','',NULL,'','','2025-11-15 19:56:44','2025-12-02 13:44:42'),
(276,44,'Recurring Transactions','','/recurring','_self','accounting.view',75,1,0,0,'','',NULL,'','','2025-11-15 21:52:32','2025-12-02 13:44:42'),
(277,35,'Action Menu Editor','','settings/action-menus','_self','settings.action_menus',1,1,0,0,'','',NULL,'','','2025-11-16 20:47:28','2025-11-29 19:13:00'),
(278,40,'NDA Templates','','settings/nda-templates','_self','settings.nda_templates',1,1,0,0,'','',NULL,'','','2025-11-16 21:54:23','2025-11-29 19:13:00'),
(279,3,'NDAs','','ndas','_self','ndas.view',70,1,0,0,'','',NULL,'','','2025-11-16 22:28:51','2025-11-28 22:27:00'),
(280,281,'System Backup','','backup','_self','admin',40,1,0,0,'','',NULL,'','','2025-11-17 11:21:31','2025-12-02 13:44:42'),
(281,17,'Administrative','','','_self','admin',0,1,0,0,'','',NULL,'','','2025-11-17 11:23:09','2025-12-02 13:44:42'),
(282,225,'Documentation','','documentation','_self','help_desk.view',5,1,0,0,'','',NULL,'','','2025-11-17 14:24:20','2025-12-02 13:44:42'),
(283,281,'Document Mgmt','','#','_self','admin',10,1,0,0,'','',NULL,'','Cloud document storage and collaborative editing via Nextcloud','2025-11-18 01:03:28','2025-12-02 13:44:42'),
(301,193,'AI Testing','','ai-test','_self','admin',0,1,0,0,'','',NULL,'','','2025-11-19 12:52:34','2025-12-02 13:44:42'),
(303,2,'Forecaster','bi bi-graph-up-arrow','','_self','forecasting.view',22,1,0,0,'','',NULL,'','Daily forecasting and assumptions management','2025-11-19 17:30:35','2025-11-20 03:03:23'),
(304,303,'Daily Update','bi bi-1-square','assumptions','_self','forecasting.update_daily',2,1,0,0,'','',NULL,'','Quick daily updates for key assumptions','2025-11-19 17:30:35','2025-11-20 03:08:49'),
(305,303,'Variance Report','','assumptions/variance','_self','forecasting.view_actuals',10,1,0,0,'','',NULL,'','Compare forecast vs actual performance','2025-11-19 17:30:35','2025-11-20 03:11:34'),
(306,303,'Assumption Sets','bi bi-2-square','assumptions/sets','_self','forecasting.manage_assumptions',3,1,0,0,'','',NULL,'','Manage multiple assumption scenarios','2025-11-19 17:30:35','2025-11-20 03:09:17'),
(307,303,'Advanced Tools','','','_self','',98,1,1,0,'','',NULL,'','','2025-11-19 17:30:35','2025-11-20 03:11:56'),
(308,303,'Scenario Modeler','','forecaster','_self','forecasting.view',99,1,0,0,'','',NULL,'','Advanced scenario modeling with financing','2025-11-19 17:30:35','2025-11-20 03:13:02'),
(309,303,'Product Configs','bi bi-3-square','product-forecast','_self','forecasting.manage_products',4,1,0,0,'','',NULL,'','Configure product-level forecasts with capacity constraints','2025-11-19 18:02:33','2025-11-20 13:03:51'),
(310,303,'Generate Projections','bi bi-4-square','product-forecast/generate','_self','forecasting.generate_projections',5,1,0,0,'','',NULL,'','Run projection engine for all configured products','2025-11-19 18:02:33','2025-11-20 03:10:05'),
(311,303,'Pro Forma Stmts','bi bi-5-square','product-forecast/proforma','_self','product_forecast.proforma',6,1,0,0,'','',NULL,'','View consolidated financial statements','2025-11-19 18:02:33','2025-11-29 19:13:00'),
(312,303,'Compare Scenarios','','product-forecast/compare','_self','product_forecast.compare',9,1,0,0,'','',NULL,'','Side-by-side scenario comparison','2025-11-19 18:02:33','2025-11-29 19:13:00'),
(313,303,'Sensitivity Analysis','','product-forecast/sensitivity','_self','product_forecast.sensitivity',8,1,0,0,'','',NULL,'','Interactive what-if scenario analysis','2025-11-19 18:57:32','2025-11-29 19:13:00'),
(314,303,'Variance Tracking','bi bi-6-square','/product-forecast/variance','_self','manufacturing.view',7,1,0,0,'','',NULL,'','','2025-11-19 19:05:49','2025-12-02 13:44:42'),
(315,303,'Command Center','','/product-forecast/command-center','_self','manufacturing.view',1,1,0,0,'','',NULL,'','','2025-11-19 19:29:24','2025-12-02 13:44:42'),
(316,303,'Getting Started','','/product-forecast/getting-started','_self','manufacturing.view',0,1,0,0,'','',NULL,'','Learn the forecasting workflow','2025-11-19 19:57:51','2025-12-02 13:44:42'),
(317,207,'Company Files','bi bi-people','/files?context=company','_self','customers.documents',15,1,0,0,'SELECT COUNT(*) FROM files WHERE entity_type = \'customer\'','',NULL,'','','2025-11-21 14:40:15','2025-11-24 19:17:29'),
(319,207,'Accounting Files','bi bi-calculator','/files?context=accounting','_self','accounting.view',14,1,0,0,'SELECT COUNT(*) FROM files WHERE entity_type = \'accounting\'','',NULL,'','','2025-11-21 14:40:15','2025-11-21 17:11:02'),
(320,207,'Project Files','bi bi-kanban','/files?context=project','_self','projects.view',77,1,0,0,'SELECT COUNT(*) FROM files WHERE entity_type = \'project\'','',NULL,'','','2025-11-21 14:40:15','2025-11-21 19:07:54'),
(321,207,'HR Documents','bi bi-people','/files?context=hr','_self','hr.view',65,1,0,0,'SELECT COUNT(*) FROM files WHERE entity_type = \'hr\'',NULL,NULL,NULL,NULL,'2025-11-21 17:05:14','2025-11-29 01:04:03'),
(322,207,'Inventory Documents','bi bi-box-seam','/files?context=inventory','_self','inventory.view',70,1,0,0,'SELECT COUNT(*) FROM files WHERE entity_type = \'inventory\'',NULL,NULL,NULL,NULL,'2025-11-21 17:05:14','2025-11-29 01:04:03'),
(323,207,'Manufacturing Documents','bi bi-gear','/files?context=manufacturing','_self','manufacturing.view',75,1,0,0,'SELECT COUNT(*) FROM files WHERE entity_type = \'manufacturing\'',NULL,NULL,NULL,NULL,'2025-11-21 17:05:14','2025-11-29 01:04:03'),
(324,207,'Purchases Documents','bi bi-cart','/files?context=purchases','_self','purchases.view',80,1,0,0,'SELECT COUNT(*) FROM files WHERE entity_type = \'purchases\'',NULL,NULL,NULL,NULL,'2025-11-21 17:05:14','2025-11-29 01:04:03'),
(325,207,'Sales Documents','bi bi-cart-check','/files?context=sales','_self','sales.view',85,1,0,0,'SELECT COUNT(*) FROM files WHERE entity_type = \'sales\'',NULL,NULL,NULL,NULL,'2025-11-21 17:05:14','2025-11-29 01:04:03'),
(326,129,'Agreements','bi bi-2-square','agreements','_self','sales.create',2,1,0,0,'','',NULL,'','','2025-11-24 14:53:27','2025-11-25 23:44:54'),
(327,281,'System Scripts','','admin/system-scripts','_self','admin.system_scripts',250,1,0,0,'','',NULL,'','','2025-11-24 19:14:40','2025-11-25 12:55:37'),
(328,44,'Dashboard','','accounting','_self','',0,1,0,0,'','',NULL,'','','2025-11-24 19:27:52','2025-11-24 19:27:52'),
(330,NULL,'Email','bi-envelope','/email','_self','email.view',2,1,0,0,'SELECT COUNT(*) FROM emails e INNER JOIN email_folder_map efm ON e.id = efm.email_id INNER JOIN email_folders f ON efm.folder_id = f.id WHERE e.user_id = {user_id} AND e.is_read = 0 AND f.folder_type = \'inbox\'','primary',NULL,'','','2025-11-26 15:55:28','2025-12-04 16:08:20'),
(331,330,'Inbox','bi-inbox','/email','_self','email.view',1,1,0,0,'SELECT COUNT(DISTINCT e.id) as count\r\nFROM emails e\r\nINNER JOIN email_folder_map efm ON e.id = efm.email_id\r\nINNER JOIN email_folders f ON efm.folder_id = f.id\r\nWHERE f.user_id = ? \r\n  AND f.folder_type = \'inbox\'\r\n  AND e.user_id = ?\r\n  AND e.is_read = 0;','primary',10,'warning','','2025-11-26 16:10:07','2025-12-10 12:41:55'),
(334,330,'Starred','bi-star','/email/folder/starred','_self','email.view',3,1,0,0,'SELECT COUNT(DISTINCT e.id) as count\r\nFROM emails e\r\nWHERE e.user_id = ?\r\n  AND e.is_starred = 1;','warning',1,'warning','','2025-11-26 16:10:07','2025-12-10 12:43:35'),
(335,330,'Compose','bi-pencil-square','/email/compose','_self','email.view',2,1,0,0,'','',NULL,'','','2025-11-26 16:10:07','2025-12-02 13:44:42'),
(339,330,'Sent','bi bi-send','/email/folder/sent','_self','email.view',2,1,0,0,'SELECT COUNT(DISTINCT e.id) as count\r\nFROM emails e\r\nINNER JOIN email_folder_map efm ON e.id = efm.email_id\r\nINNER JOIN email_folders f ON efm.folder_id = f.id\r\nWHERE f.user_id = ? \r\n  AND f.folder_type = \'sent\'\r\n  AND e.user_id = ?;','primary',10,'warning','','2025-11-27 13:24:34','2025-12-10 12:43:01'),
(340,330,'Drafts','bi bi-file-earmark','/email/folder/drafts','_self','email.view',3,1,0,0,'SELECT COUNT(DISTINCT e.id) as count\r\nFROM emails e\r\nINNER JOIN email_folder_map efm ON e.id = efm.email_id\r\nINNER JOIN email_folders f ON efm.folder_id = f.id\r\nWHERE f.user_id = ? \r\n  AND f.folder_type = \'drafts\'\r\n  AND e.user_id = ?;','info',10,'warning','','2025-11-27 13:24:34','2025-12-10 12:44:05'),
(341,330,'Archive','bi bi-archive','/email/folder/archive','_self','email.view',4,1,0,0,'SELECT COUNT(DISTINCT e.id) as count\r\nFROM emails e\r\nINNER JOIN email_folder_map efm ON e.id = efm.email_id\r\nINNER JOIN email_folders f ON efm.folder_id = f.id\r\nWHERE f.user_id = ? \r\n  AND f.folder_type = \'archive\'\r\n  AND e.user_id = ?;','secondary',NULL,'','','2025-11-27 13:24:34','2025-12-10 12:44:25'),
(342,330,'Trash','bi bi-trash','/email/folder/trash','_self','email.view',10,1,0,0,'SELECT COUNT(DISTINCT e.id) as count\r\nFROM emails e\r\nINNER JOIN email_folder_map efm ON e.id = efm.email_id\r\nINNER JOIN email_folders f ON efm.folder_id = f.id\r\nWHERE f.user_id = ? \r\n  AND f.folder_type = \'trash\'\r\n  AND e.user_id = ?;','secondary',NULL,'','','2025-11-27 13:24:34','2025-12-10 12:44:56'),
(343,330,'Spam','bi bi-exclamation-triangle','/email/folder/spam','_self','email.view',6,1,0,0,'SELECT COUNT(DISTINCT e.id) as count\r\nFROM emails e\r\nINNER JOIN email_folder_map efm ON e.id = efm.email_id\r\nINNER JOIN email_folders f ON efm.folder_id = f.id\r\nWHERE f.user_id = ? \r\n  AND f.folder_type = \'spam\'\r\n  AND e.user_id = ?;','danger',NULL,'danger','','2025-11-27 13:24:34','2025-12-10 12:44:42'),
(347,32,'Access Management','','/security/roles','_self','roles.view',1,1,0,0,'','',NULL,'','','2025-11-30 13:38:35','2025-11-30 13:42:13'),
(348,207,'CRM Documents','bi bi-briefcase','/files?context=activity','_self','customers.view',62,1,0,0,'SELECT COUNT(*) FROM files WHERE entity_type = \'activity\'','',NULL,'','','2025-12-02 02:47:48','2025-12-02 13:44:42'),
(349,241,'Diagrams','fas fa-draw-polygon','/diagrams','_self','diagrams.view',95,1,0,0,'','',NULL,'','','2025-12-02 03:48:20','2025-12-02 13:12:58'),
(352,362,'Equipment Research','','/manufacturing/equipment-research','_self','equipment.view',85,1,0,0,'','',NULL,'','','2025-12-05 14:40:59','2025-12-05 22:31:05'),
(353,352,'Dashboard','','/manufacturing/equipment-research','_self','equipment.view',1,1,0,0,'','',NULL,'','','2025-12-05 14:40:59','2025-12-05 22:31:58'),
(354,352,'Vendors','','/manufacturing/equipment-research/vendors','_self','equipment.view',2,1,0,0,'','',NULL,'','','2025-12-05 14:40:59','2025-12-05 22:32:06'),
(355,352,'Market Research','','/manufacturing/equipment-research/market-research','_self','equipment.view',3,1,0,0,'','',NULL,'','','2025-12-05 14:40:59','2025-12-05 22:32:18'),
(356,352,'ROI Analysis','','/manufacturing/equipment-research/roi-analyses','_self','equipment.view',4,1,0,0,'','',NULL,'','','2025-12-05 14:40:59','2025-12-05 22:32:22'),
(357,352,'Benchmarking','','/manufacturing/equipment-research/benchmarking','_self','equipment.view',5,1,0,0,'','',NULL,'','','2025-12-05 14:40:59','2025-12-05 22:32:26'),
(358,352,'Technology Trends','','/manufacturing/equipment-research/technology-trends','_self','equipment.view',6,1,0,0,'','',NULL,'','','2025-12-05 14:40:59','2025-12-05 22:32:29'),
(359,352,'Competitor Intel','','/manufacturing/equipment-research/competitor-snapshots','_self','equipment.view',7,1,0,0,'','',NULL,'','','2025-12-05 14:40:59','2025-12-05 22:32:32'),
(360,303,'Profit Optimizer','','/manufacturing/profit-optimizer','_self','equipment.view',999,1,0,0,'','',NULL,'','','2025-12-05 14:40:59','2025-12-05 22:31:31'),
(362,NULL,'DEV','fas fa-code','#','_self','admin',999,1,0,0,'','',NULL,'','','2025-12-05 18:06:31','2025-12-05 22:31:43');
/*!40000 ALTER TABLE `menu_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `message_attachments`
--

DROP TABLE IF EXISTS `message_attachments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `message_attachments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `message_id` int(10) unsigned NOT NULL,
  `filename` varchar(255) NOT NULL,
  `original_filename` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_size` int(10) unsigned NOT NULL,
  `mime_type` varchar(100) NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_message_id` (`message_id`),
  CONSTRAINT `message_attachments_ibfk_1` FOREIGN KEY (`message_id`) REFERENCES `messages` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `message_attachments`
--

LOCK TABLES `message_attachments` WRITE;
/*!40000 ALTER TABLE `message_attachments` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `message_attachments` VALUES
(1,6,'691650a6c7230_1763070118.png','1984 Apple Macintosh 128k.png','/Users/rpmbbu/LocalPHPStorm/m1_erp_web/uploads/messaging/691650a6c7230_1763070118.png',13052,'image/png','2025-11-13 21:41:58','2025-11-13 21:41:58'),
(2,7,'691655cb26b0d_1763071435.png','fsociety.png','/Users/rpmbbu/LocalPHPStorm/m1_erp_web/uploads/messaging/691655cb26b0d_1763071435.png',36485,'image/png','2025-11-13 22:03:55','2025-11-13 22:03:55');
/*!40000 ALTER TABLE `message_attachments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `message_reactions`
--

DROP TABLE IF EXISTS `message_reactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `message_reactions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `message_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `emoji` varchar(50) NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `message_user_emoji` (`message_id`,`user_id`,`emoji`),
  KEY `idx_message_id` (`message_id`),
  KEY `idx_user_id` (`user_id`),
  CONSTRAINT `message_reactions_ibfk_1` FOREIGN KEY (`message_id`) REFERENCES `messages` (`id`) ON DELETE CASCADE,
  CONSTRAINT `message_reactions_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `message_reactions`
--

LOCK TABLES `message_reactions` WRITE;
/*!40000 ALTER TABLE `message_reactions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `message_reactions` VALUES
(8,5,1,'❤️','2025-11-13 21:40:50','2025-11-13 21:40:50'),
(14,6,1,'🤜','2025-11-14 19:43:44','2025-11-14 19:43:44');
/*!40000 ALTER TABLE `message_reactions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `messages`
--

DROP TABLE IF EXISTS `messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `messages` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `channel_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `parent_id` int(10) unsigned DEFAULT NULL COMMENT 'For threaded replies',
  `message` text NOT NULL,
  `is_edited` tinyint(4) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `mentions` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Array of mentioned user IDs' CHECK (json_valid(`mentions`)),
  PRIMARY KEY (`id`),
  KEY `idx_channel_id` (`channel_id`),
  KEY `idx_user_id` (`user_id`),
  KEY `idx_parent_id` (`parent_id`),
  KEY `idx_created_at` (`created_at`),
  CONSTRAINT `messages_ibfk_1` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE,
  CONSTRAINT `messages_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `messages_ibfk_3` FOREIGN KEY (`parent_id`) REFERENCES `messages` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `messages`
--

LOCK TABLES `messages` WRITE;
/*!40000 ALTER TABLE `messages` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `messages` VALUES
(5,1,1,NULL,'Hey @admin does this work?',0,'2025-11-13 21:40:46','2025-11-13 21:40:46',NULL),
(6,1,1,NULL,'Shared a file: 1984 Apple Macintosh 128k.png',0,'2025-11-13 21:41:58','2025-11-13 21:41:58',NULL),
(7,1,1,NULL,'Shared a file: fsociety.png',0,'2025-11-13 22:03:55','2025-11-13 22:03:55',NULL);
/*!40000 ALTER TABLE `messages` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `mrp_requirements`
--

DROP TABLE IF EXISTS `mrp_requirements`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `mrp_requirements` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `product_id` int(10) unsigned NOT NULL,
  `total_required` decimal(15,3) NOT NULL DEFAULT 0.000,
  `on_hand` decimal(15,3) NOT NULL DEFAULT 0.000,
  `on_order` decimal(15,3) NOT NULL DEFAULT 0.000,
  `allocated` decimal(15,3) NOT NULL DEFAULT 0.000,
  `net_required` decimal(15,3) NOT NULL DEFAULT 0.000,
  `suggested_order_date` date DEFAULT NULL,
  `lead_time_days` int(11) DEFAULT 7,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_product` (`product_id`),
  KEY `idx_net_required` (`net_required`),
  KEY `idx_created_at` (`created_at`),
  CONSTRAINT `mrp_requirements_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mrp_requirements`
--

LOCK TABLES `mrp_requirements` WRITE;
/*!40000 ALTER TABLE `mrp_requirements` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `mrp_requirements` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `ncr_actions`
--

DROP TABLE IF EXISTS `ncr_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `ncr_actions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ncr_id` int(10) unsigned NOT NULL,
  `action_type` enum('investigation','corrective','preventive','follow_up') NOT NULL,
  `description` text NOT NULL,
  `assigned_to` int(10) unsigned DEFAULT NULL,
  `due_date` date DEFAULT NULL,
  `status` enum('pending','in_progress','completed') DEFAULT 'pending',
  `completed_by` int(10) unsigned DEFAULT NULL,
  `completed_at` datetime DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_ncr` (`ncr_id`),
  KEY `idx_status` (`status`),
  KEY `assigned_to` (`assigned_to`),
  KEY `completed_by` (`completed_by`),
  CONSTRAINT `ncr_actions_ibfk_1` FOREIGN KEY (`ncr_id`) REFERENCES `non_conformance_reports` (`id`) ON DELETE CASCADE,
  CONSTRAINT `ncr_actions_ibfk_2` FOREIGN KEY (`assigned_to`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `ncr_actions_ibfk_3` FOREIGN KEY (`completed_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ncr_actions`
--

LOCK TABLES `ncr_actions` WRITE;
/*!40000 ALTER TABLE `ncr_actions` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `ncr_actions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `nda_signatures`
--

DROP TABLE IF EXISTS `nda_signatures`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `nda_signatures` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `nda_id` int(11) NOT NULL,
  `signer_role` enum('customer','company_representative') NOT NULL DEFAULT 'customer',
  `signer_name` varchar(255) NOT NULL,
  `signer_email` varchar(255) NOT NULL,
  `signer_title` varchar(255) DEFAULT NULL,
  `signer_company` varchar(255) DEFAULT NULL,
  `signature_data` text DEFAULT NULL,
  `signed_at` datetime NOT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `acceptance_text` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_nda_id` (`nda_id`),
  KEY `idx_signed_at` (`signed_at`),
  KEY `idx_signer_role` (`signer_role`),
  CONSTRAINT `nda_signatures_ibfk_1` FOREIGN KEY (`nda_id`) REFERENCES `ndas` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `nda_signatures`
--

LOCK TABLES `nda_signatures` WRITE;
/*!40000 ALTER TABLE `nda_signatures` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `nda_signatures` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `nda_templates`
--

DROP TABLE IF EXISTS `nda_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `nda_templates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `template_name` varchar(255) NOT NULL,
  `template_type` enum('mutual','unilateral','custom') NOT NULL,
  `template_content` longtext NOT NULL,
  `merge_fields` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`merge_fields`)),
  `is_active` tinyint(1) DEFAULT 1,
  `is_default` tinyint(1) DEFAULT 0,
  `created_by` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_is_active` (`is_active`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `nda_templates`
--

LOCK TABLES `nda_templates` WRITE;
/*!40000 ALTER TABLE `nda_templates` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `nda_templates` VALUES
(1,'Mavrix 1 Unilateral NDA','unilateral','\n<div style=\"text-align: center; margin-bottom: 30px;\">\n    <h1 style=\"font-size: 18pt; margin: 20px 0;\">NON-DISCLOSURE AGREEMENT</h1>\n</div>\n\n<p>This Agreement is dated as of the date of the last signature below (the \"Effective Date\") by and between <strong>{your_company_name}</strong>, having its principal legal mailing address at: <strong>{your_company_address}</strong></p>\n\n<p style=\"text-align: center; margin: 20px 0;\"><strong>AND</strong></p>\n\n<p>(individual/Company/LLC): <strong>{company_name}</strong>, with its principal address at: <strong>{contact_address}</strong>.</p>\n\n<p>The parties wish to assure the confidentiality of certain trade secrets, information, and other materials, which have been or may be disclosed by one party (\"Discloser\") to the other party (\"Recipient\") during the review and consideration of a possible business relationship (the \"Purpose\").</p>\n\n<h2 style=\"margin-top: 30px;\">1. NO JOINT VENTURE</h2>\n<p>The parties hereto agree that this Agreement is for the purposes of protecting confidential information disclosed in furtherance of the Purpose only. This Agreement is not a joint venture or other such business arrangement; and any agreement between the parties as to a joint business activities will be, or already is, set forth in other written agreements.</p>\n\n<h2 style=\"margin-top: 30px;\">2. NO LICENSES</h2>\n<p>No license to Recipient under any trademark, patent, copyright or any other intellectual property right is either granted or implied by the disclosure of Confidential Information to Recipient. None of the Confidential Information which may be disclosed to Recipient shall constitute any representation, warranty, assurance, guarantee or inducement by either party to the other of any kind including but not limited to representations, warranties, assurances, guarantees or inducements with respect to the non-infringement of trademarks, patents, copyrights, or any other intellectual property rights, or other rights of either party or of third parties.</p>\n\n<h2 style=\"margin-top: 30px;\">3. CONFIDENTIAL INFORMATION</h2>\n<p>\"Confidential Information\" shall mean any information, field technical guide, technical data, or know-how including, but not limited to, that which relates to a party\'s hardware, software, screens, specifications, designs, plans, site plans, site drawings, general drawings, data, prototypes, discoveries, research, developments, processes, procedures, and/or technical information and materials, in oral, demonstrative, written, electronic, graphic, or machine-readable form and any analyses, compilations, studies, or documents prepared by Recipient, its representatives, or employees, which summarize any such information of Discloser.</p>\n\n<p>This Agreement also encompasses 3rd Party members of contributions/information to {your_company_name}, {your_company_name} perspective DBA\'s and subordinate companies in design, engineering diagrams, unique business model, network(s) whether marked or unmarked confidential and any other originating content, as proprietary, and not to be disclosed outside of the recipient party or used in any form.</p>\n\n<h2 style=\"margin-top: 30px;\">4. EXCEPTIONS</h2>\n<p><strong>a)</strong> Notwithstanding anything to the contrary contained herein, Recipient shall have no obligation with respect to any Confidential Information of Discloser which, as evidenced by tangible records kept in the ordinary course of business: (i) is or becomes generally known to companies engaged in the same or similar business as the parties hereto on a nonconfidential basis, through no wrongful act of Recipient; (ii) is lawfully obtained by Recipient from a third party without any obligation by Recipient to maintain the information proprietary or confidential; (iii) is known by Recipient prior to disclosure hereunder without any obligation to keep it confidential and such information was not disclosed by Discloser under this Agreement; (iv) is independently developed by Recipient without reference to or use of the other\'s Confidential Information; or (v) is the subject of a written agreement whereby Discloser consents to the disclosure of such Confidential Information.</p>\n\n<p><strong>b)</strong> If Recipient or any of its representatives shall be under a legal obligation in any administrative or judicial circumstance to disclose any Confidential Information, Recipient shall give Discloser prompt notice thereof so that Discloser may seek a protective order and/or waive the duty of non-disclosure; provided that in the absence of such order or waiver, if Recipient or any such representative shall, in the opinion of its counsel, stand liable for contempt or be likely to suffer other censure or penalty for failure to disclose, disclosure pursuant to the order of such tribunal may be made Recipient or its representatives without liability hereunder.</p>\n\n<h2 style=\"margin-top: 30px; page-break-before: always;\">5. PROTECTION OF CONFIDENTIAL INFORMATION</h2>\n<p><strong>a)</strong> Recipient agrees not to disclose the Confidential Information of Discloser or to use Confidential Information for any purpose other than the Purpose specified in paragraph 1 above. Recipient agrees to protect the Confidential Information of Discloser from disclosure to anyone other than its directors, officers, and employees who have a business-related need to have access to such Confidential Information in connection with the purposes of this Agreement, and who have entered into the agreements with such party pursuant to which they are bound by the confidentiality provisions of this Agreement to the same extent that Recipient is bound. Recipient further agrees promptly to advise Discloser in writing of any unauthorized misappropriation, disclosure or use by any person of the Confidential Information of Discloser which may come to its attention and to take all steps reasonably requested by Discloser to limit, stop or otherwise remedy such misappropriation, disclosure or use.</p>\n\n<p><strong>b)</strong> Recipient will only make as many copies of Confidential Information as are necessary for its use under the terms hereof, and each such copy will be marked with the same proprietary notices that appear on the originals.</p>\n\n<p><strong>c)</strong> The rights and obligations of the parties under this Agreement expire <strong>FIVE (5) years</strong> after the Effective Date, provided that with respect to Confidential Information that constitutes a trade secret under applicable law, such rights and obligations will survive such expiration until, if ever, such Confidential Information loses its trade secret protection other than due to an act or omission of Recipient or its representatives.</p>\n\n<p><strong>d)</strong> The rights and obligations of the parties under this Agreement as to the confidence obligations of sensitive classified and unclassified information pertaining to national security shall continue forever and shall survive the expiration and/or termination of this Agreement.</p>\n\n<p><strong>e)</strong> The Parties acknowledge and agree that any Controlled Unclassified Information (CUI) exchanged or accessed in the course of this Agreement, whether oral, written, or electronic, shall be handled, protected, and secured in accordance with all applicable laws, regulations, and policies governing the handling of CUI. The receiving party agrees to protect the CUI from unauthorized access, disclosure, or use, and will implement appropriate and reasonable security measures in compliance with federal, state, and local laws, as well as any specific requirements outlined by the Disclosing Party. The receiving Party agrees that CUI disclosed under this Agreement shall be used solely for the purpose of the business relationship between the Parties and will not be used for any unauthorized or non-business-related purposes. Upon termination of this Agreement, or upon request of the Disclosing Party, the Receiving Party shall promptly return or take reasonable measures to destroy all copies of CUI, as instructed by the Disclosing Party.</p>\n\n<p><strong>f)</strong> In the event of a suspected or actual breach of CUI, the Receiving Party shall immediately notify the Disclosing Party and cooperate in any investigation or remedial actions necessary to address and mitigate any such breach. The obligations of this section shall survive the termination of this Agreement for as long as the information qualifies under CUI applicable laws and regulations.</p>\n\n<p><strong>g)</strong> Protection of confidentiality and other sensitive data under this Agreement must also adhere to the standard as provided by Department of Defense directive Operations Security (OPSEC) Program § 5205.02-M.</p>\n\n<p style=\"margin-left: 30px; font-style: italic;\">The Department of Defense policy, outlined in Department of Defense Manual (\"DoDM\") §5205.02-M mandates the establishment and maintenance of Operational Security (\"OPSEC\") programs to ensure national security-related missions and functions are protected. OPSEC is a risk management strategy designed to safeguard sensitive information and prevent unauthorized access or exploitation of information, communications, and data in the interest of the National Security of the United States.</p>\n\n<p style=\"margin-left: 30px; font-style: italic;\">Examples of OPSEC include avoiding sharing specific dates, locations, or casualty details to third parties, social media, or to anyone privately or in the public sphere; maintaining caution with regard to discussing unit specifics and capabilities. OPSEC involves a systematic approach that includes identifying critical information by evaluating potential adversaries and their capabilities to exploit vulnerabilities; vulnerability analysis by identifying weaknesses in security measures that could be exploited by adversaries; risk assessment by evaluating the likelihood and potential impact of vulnerabilities being exploited; and adherence to countermeasures by implementing measures to mitigate identified risks and protecting critical information.</p>\n\n<p style=\"margin-left: 30px; font-style: italic;\"><strong>OPSEC is a continuing process that requires ongoing assessment and adaptation to evolving threats and vulnerabilities. OPSEC also applies to unclassified information that could reveal sensitive details or information.</strong></p>\n\n<h2 style=\"margin-top: 30px; page-break-before: always;\">6. GENERAL PROVISIONS</h2>\n\n<p><strong>a. SEVERABILITY.</strong> If any term, provision, covenant or condition of this Agreement, or the application thereof to any person, place or circumstance, shall be held to be invalid, unenforceable or void, the remainder of this Agreement and such term, provision, covenant or condition as applied to other persons, places and circumstances shall remain in full force and effect.</p>\n\n<p><strong>b. RIGHTS CUMULATIVE.</strong> The rights and remedies provided by this Agreement are cumulative, and the exercise of any right or remedy by either party hereto (or by its successor), whether pursuant to this Agreement, to any other agreement, or to law, shall not preclude or waive its right to exercise any or all other rights and remedies.</p>\n\n<p>No failure or neglect of either party hereto in any instance to exercise any right, power, or privilege hereunder or under law shall constitute a waiver of any other right, power, or privilege or of the same right, power or privilege in any other instance. All waivers by either party hereto must be contained in a written instrument signed by the party to be charged and, in the case of the Company, by an officer of the Company or other person duly authorized by the Company.</p>\n\n<p><strong>c. REMEDY FOR BREACH.</strong> The parties hereto agree that, in the event of breach or threatened breach of any covenants of this Agreement, the damage or imminent damage to the other Party shall be inestimable, and that therefore any remedy at law or in damages shall be inadequate. Accordingly, the parties hereto agree that the aggrieved party shall be entitled to injunctive relief against the other Party in the event of any breach or threatened breach of this Agreement, in addition to any other relief (including damages) available to the Company under this Agreement or under law.</p>\n\n<p><strong>d. CHOICE OF LAW.</strong> Client consents to personal jurisdiction of the State and Federal courts located in the State of Florida, County of Manatee or closest thereof in connection with any controversy relating in any way to this Agreement or to any transaction. Client agrees to hold harmless {your_company_name} in any litigation, arbitration or any other choses or claim of action the Client may commence against Lender, Investor, Funding Source or Guarantor, or any other subcontracted party of the {your_company_name}.</p>\n\n<p>It is further agreed that any dispute, whether taking place in an international jurisdiction or in the USA shall be governed under the Laws of the United States of America and under the State and Federal courts named above.</p>\n\n<p><strong>e. NOTICES.</strong> Any notice, request, consent or approval required or permitted to be given under this Agreement or pursuant to law shall be sufficient if in writing, and if and when sent by certified or registered mail with postage prepaid and/or electronic mail, to {your_company_name}\'s address (as noted above) or to the Company\'s principal office, as the case may be.</p>\n\n<p><strong>f. MISCELLANEOUS.</strong></p>\n<p style=\"margin-left: 30px;\">(a) Should this Agreement be transmitted by facsimile, email, or electronic signature, the document shall be considered as an original document, and if signed and transmitted separately each section becoming both legally binding and enforceable.</p>\n<p style=\"margin-left: 30px;\">(b) This Agreement may only be modified or changed in writing and signed by both parties.</p>\n<p style=\"margin-left: 30px;\">(c) If any person or provision of this Agreement or its application is held to be invalid, illegal, or unenforceable in any respect, the validity, legality, or enforceability of any of the other provisions and applications therein shall not in any way be affected or impaired.</p>\n','{\"your_company_name\": \"Your company name\", \"your_company_address\": \"Your company address\", \"company_name\": \"Customer company name\", \"contact_name\": \"Customer contact name\", \"contact_title\": \"Customer contact title\", \"contact_email\": \"Customer contact email\", \"contact_address\": \"Customer company address\", \"effective_date\": \"Agreement effective date\", \"term_months\": \"Term duration in months\"}',1,1,NULL,'2025-11-16 11:44:05','2025-11-16 22:17:58');
/*!40000 ALTER TABLE `nda_templates` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `ndas`
--

DROP TABLE IF EXISTS `ndas`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `ndas` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `opportunity_id` int(10) unsigned NOT NULL,
  `nda_number` varchar(50) NOT NULL,
  `nda_type` enum('mutual','unilateral','custom') DEFAULT 'unilateral',
  `template_id` int(11) DEFAULT NULL,
  `company_name` varchar(255) NOT NULL,
  `contact_name` varchar(255) NOT NULL,
  `contact_email` varchar(255) NOT NULL,
  `contact_title` varchar(255) DEFAULT NULL,
  `effective_date` date NOT NULL,
  `expiration_date` date DEFAULT NULL,
  `term_months` int(11) DEFAULT 12,
  `document_content` longtext DEFAULT NULL,
  `document_path` varchar(500) DEFAULT NULL,
  `public_token` varchar(64) NOT NULL,
  `token_expires_at` datetime DEFAULT NULL,
  `status` enum('draft','sent','viewed','partially_signed','signed','fully_executed','declined','expired') DEFAULT 'draft',
  `sent_at` datetime DEFAULT NULL,
  `viewed_at` datetime DEFAULT NULL,
  `signed_at` datetime DEFAULT NULL,
  `company_signed_at` datetime DEFAULT NULL,
  `company_signed_by` int(11) DEFAULT NULL,
  `declined_at` datetime DEFAULT NULL,
  `declined_reason` text DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `nda_number` (`nda_number`),
  UNIQUE KEY `public_token` (`public_token`),
  KEY `idx_opportunity_id` (`opportunity_id`),
  KEY `idx_status` (`status`),
  KEY `idx_public_token` (`public_token`),
  KEY `idx_created_at` (`created_at`),
  KEY `idx_company_signed_by` (`company_signed_by`),
  CONSTRAINT `fk_ndas_opportunity` FOREIGN KEY (`opportunity_id`) REFERENCES `crm_opportunities` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ndas`
--

LOCK TABLES `ndas` WRITE;
/*!40000 ALTER TABLE `ndas` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `ndas` VALUES
(15,24,'NDA-2025-00001','unilateral',1,'AeroVironment','','aerovironment@example.com','CEO','2025-11-27','2026-11-27',12,'\n<div style=\"text-align: center; margin-bottom: 30px;\">\n    <h1 style=\"font-size: 18pt; margin: 20px 0;\">NON-DISCLOSURE AGREEMENT</h1>\n</div>\n\n<p>This Agreement is dated as of the date of the last signature below (the \"Effective Date\") by and between <strong>Your Company Name</strong>, having its principal legal mailing address at: <strong>Your Company Address</strong></p>\n\n<p style=\"text-align: center; margin: 20px 0;\"><strong>AND</strong></p>\n\n<p>(individual/Company/LLC): <strong>{company_name}</strong>, with its principal address at: <strong>{contact_address}</strong>.</p>\n\n<p>The parties wish to assure the confidentiality of certain trade secrets, information, and other materials, which have been or may be disclosed by one party (\"Discloser\") to the other party (\"Recipient\") during the review and consideration of a possible business relationship (the \"Purpose\").</p>\n\n<h2 style=\"margin-top: 30px;\">1. NO JOINT VENTURE</h2>\n<p>The parties hereto agree that this Agreement is for the purposes of protecting confidential information disclosed in furtherance of the Purpose only. This Agreement is not a joint venture or other such business arrangement; and any agreement between the parties as to a joint business activities will be, or already is, set forth in other written agreements.</p>\n\n<h2 style=\"margin-top: 30px;\">2. NO LICENSES</h2>\n<p>No license to Recipient under any trademark, patent, copyright or any other intellectual property right is either granted or implied by the disclosure of Confidential Information to Recipient. None of the Confidential Information which may be disclosed to Recipient shall constitute any representation, warranty, assurance, guarantee or inducement by either party to the other of any kind including but not limited to representations, warranties, assurances, guarantees or inducements with respect to the non-infringement of trademarks, patents, copyrights, or any other intellectual property rights, or other rights of either party or of third parties.</p>\n\n<h2 style=\"margin-top: 30px;\">3. CONFIDENTIAL INFORMATION</h2>\n<p>\"Confidential Information\" shall mean any information, field technical guide, technical data, or know-how including, but not limited to, that which relates to a party\'s hardware, software, screens, specifications, designs, plans, site plans, site drawings, general drawings, data, prototypes, discoveries, research, developments, processes, procedures, and/or technical information and materials, in oral, demonstrative, written, electronic, graphic, or machine-readable form and any analyses, compilations, studies, or documents prepared by Recipient, its representatives, or employees, which summarize any such information of Discloser.</p>\n\n<p>This Agreement also encompasses 3rd Party members of contributions/information to Your Company Name, Your Company Name perspective DBA\'s and subordinate companies in design, engineering diagrams, unique business model, network(s) whether marked or unmarked confidential and any other originating content, as proprietary, and not to be disclosed outside of the recipient party or used in any form.</p>\n\n<h2 style=\"margin-top: 30px;\">4. EXCEPTIONS</h2>\n<p><strong>a)</strong> Notwithstanding anything to the contrary contained herein, Recipient shall have no obligation with respect to any Confidential Information of Discloser which, as evidenced by tangible records kept in the ordinary course of business: (i) is or becomes generally known to companies engaged in the same or similar business as the parties hereto on a nonconfidential basis, through no wrongful act of Recipient; (ii) is lawfully obtained by Recipient from a third party without any obligation by Recipient to maintain the information proprietary or confidential; (iii) is known by Recipient prior to disclosure hereunder without any obligation to keep it confidential and such information was not disclosed by Discloser under this Agreement; (iv) is independently developed by Recipient without reference to or use of the other\'s Confidential Information; or (v) is the subject of a written agreement whereby Discloser consents to the disclosure of such Confidential Information.</p>\n\n<p><strong>b)</strong> If Recipient or any of its representatives shall be under a legal obligation in any administrative or judicial circumstance to disclose any Confidential Information, Recipient shall give Discloser prompt notice thereof so that Discloser may seek a protective order and/or waive the duty of non-disclosure; provided that in the absence of such order or waiver, if Recipient or any such representative shall, in the opinion of its counsel, stand liable for contempt or be likely to suffer other censure or penalty for failure to disclose, disclosure pursuant to the order of such tribunal may be made Recipient or its representatives without liability hereunder.</p>\n\n<h2 style=\"margin-top: 30px; page-break-before: always;\">5. PROTECTION OF CONFIDENTIAL INFORMATION</h2>\n<p><strong>a)</strong> Recipient agrees not to disclose the Confidential Information of Discloser or to use Confidential Information for any purpose other than the Purpose specified in paragraph 1 above. Recipient agrees to protect the Confidential Information of Discloser from disclosure to anyone other than its directors, officers, and employees who have a business-related need to have access to such Confidential Information in connection with the purposes of this Agreement, and who have entered into the agreements with such party pursuant to which they are bound by the confidentiality provisions of this Agreement to the same extent that Recipient is bound. Recipient further agrees promptly to advise Discloser in writing of any unauthorized misappropriation, disclosure or use by any person of the Confidential Information of Discloser which may come to its attention and to take all steps reasonably requested by Discloser to limit, stop or otherwise remedy such misappropriation, disclosure or use.</p>\n\n<p><strong>b)</strong> Recipient will only make as many copies of Confidential Information as are necessary for its use under the terms hereof, and each such copy will be marked with the same proprietary notices that appear on the originals.</p>\n\n<p><strong>c)</strong> The rights and obligations of the parties under this Agreement expire <strong>FIVE (5) years</strong> after the Effective Date, provided that with respect to Confidential Information that constitutes a trade secret under applicable law, such rights and obligations will survive such expiration until, if ever, such Confidential Information loses its trade secret protection other than due to an act or omission of Recipient or its representatives.</p>\n\n<p><strong>d)</strong> The rights and obligations of the parties under this Agreement as to the confidence obligations of sensitive classified and unclassified information pertaining to national security shall continue forever and shall survive the expiration and/or termination of this Agreement.</p>\n\n<p><strong>e)</strong> The Parties acknowledge and agree that any Controlled Unclassified Information (CUI) exchanged or accessed in the course of this Agreement, whether oral, written, or electronic, shall be handled, protected, and secured in accordance with all applicable laws, regulations, and policies governing the handling of CUI. The receiving party agrees to protect the CUI from unauthorized access, disclosure, or use, and will implement appropriate and reasonable security measures in compliance with federal, state, and local laws, as well as any specific requirements outlined by the Disclosing Party. The receiving Party agrees that CUI disclosed under this Agreement shall be used solely for the purpose of the business relationship between the Parties and will not be used for any unauthorized or non-business-related purposes. Upon termination of this Agreement, or upon request of the Disclosing Party, the Receiving Party shall promptly return or take reasonable measures to destroy all copies of CUI, as instructed by the Disclosing Party.</p>\n\n<p><strong>f)</strong> In the event of a suspected or actual breach of CUI, the Receiving Party shall immediately notify the Disclosing Party and cooperate in any investigation or remedial actions necessary to address and mitigate any such breach. The obligations of this section shall survive the termination of this Agreement for as long as the information qualifies under CUI applicable laws and regulations.</p>\n\n<p><strong>g)</strong> Protection of confidentiality and other sensitive data under this Agreement must also adhere to the standard as provided by Department of Defense directive Operations Security (OPSEC) Program § 5205.02-M.</p>\n\n<p style=\"margin-left: 30px; font-style: italic;\">The Department of Defense policy, outlined in Department of Defense Manual (\"DoDM\") §5205.02-M mandates the establishment and maintenance of Operational Security (\"OPSEC\") programs to ensure national security-related missions and functions are protected. OPSEC is a risk management strategy designed to safeguard sensitive information and prevent unauthorized access or exploitation of information, communications, and data in the interest of the National Security of the United States.</p>\n\n<p style=\"margin-left: 30px; font-style: italic;\">Examples of OPSEC include avoiding sharing specific dates, locations, or casualty details to third parties, social media, or to anyone privately or in the public sphere; maintaining caution with regard to discussing unit specifics and capabilities. OPSEC involves a systematic approach that includes identifying critical information by evaluating potential adversaries and their capabilities to exploit vulnerabilities; vulnerability analysis by identifying weaknesses in security measures that could be exploited by adversaries; risk assessment by evaluating the likelihood and potential impact of vulnerabilities being exploited; and adherence to countermeasures by implementing measures to mitigate identified risks and protecting critical information.</p>\n\n<p style=\"margin-left: 30px; font-style: italic;\"><strong>OPSEC is a continuing process that requires ongoing assessment and adaptation to evolving threats and vulnerabilities. OPSEC also applies to unclassified information that could reveal sensitive details or information.</strong></p>\n\n<h2 style=\"margin-top: 30px; page-break-before: always;\">6. GENERAL PROVISIONS</h2>\n\n<p><strong>a. SEVERABILITY.</strong> If any term, provision, covenant or condition of this Agreement, or the application thereof to any person, place or circumstance, shall be held to be invalid, unenforceable or void, the remainder of this Agreement and such term, provision, covenant or condition as applied to other persons, places and circumstances shall remain in full force and effect.</p>\n\n<p><strong>b. RIGHTS CUMULATIVE.</strong> The rights and remedies provided by this Agreement are cumulative, and the exercise of any right or remedy by either party hereto (or by its successor), whether pursuant to this Agreement, to any other agreement, or to law, shall not preclude or waive its right to exercise any or all other rights and remedies.</p>\n\n<p>No failure or neglect of either party hereto in any instance to exercise any right, power, or privilege hereunder or under law shall constitute a waiver of any other right, power, or privilege or of the same right, power or privilege in any other instance. All waivers by either party hereto must be contained in a written instrument signed by the party to be charged and, in the case of the Company, by an officer of the Company or other person duly authorized by the Company.</p>\n\n<p><strong>c. REMEDY FOR BREACH.</strong> The parties hereto agree that, in the event of breach or threatened breach of any covenants of this Agreement, the damage or imminent damage to the other Party shall be inestimable, and that therefore any remedy at law or in damages shall be inadequate. Accordingly, the parties hereto agree that the aggrieved party shall be entitled to injunctive relief against the other Party in the event of any breach or threatened breach of this Agreement, in addition to any other relief (including damages) available to the Company under this Agreement or under law.</p>\n\n<p><strong>d. CHOICE OF LAW.</strong> Client consents to personal jurisdiction of the State and Federal courts located in the State of Florida, County of Manatee or closest thereof in connection with any controversy relating in any way to this Agreement or to any transaction. Client agrees to hold harmless Your Company Name in any litigation, arbitration or any other choses or claim of action the Client may commence against Lender, Investor, Funding Source or Guarantor, or any other subcontracted party of the Your Company Name.</p>\n\n<p>It is further agreed that any dispute, whether taking place in an international jurisdiction or in the USA shall be governed under the Laws of the United States of America and under the State and Federal courts named above.</p>\n\n<p><strong>e. NOTICES.</strong> Any notice, request, consent or approval required or permitted to be given under this Agreement or pursuant to law shall be sufficient if in writing, and if and when sent by certified or registered mail with postage prepaid and/or electronic mail, to Your Company Name\'s address (as noted above) or to the Company\'s principal office, as the case may be.</p>\n\n<p><strong>f. MISCELLANEOUS.</strong></p>\n<p style=\"margin-left: 30px;\">(a) Should this Agreement be transmitted by facsimile, email, or electronic signature, the document shall be considered as an original document, and if signed and transmitted separately each section becoming both legally binding and enforceable.</p>\n<p style=\"margin-left: 30px;\">(b) This Agreement may only be modified or changed in writing and signed by both parties.</p>\n<p style=\"margin-left: 30px;\">(c) If any person or provision of this Agreement or its application is held to be invalid, illegal, or unenforceable in any respect, the validity, legality, or enforceability of any of the other provisions and applications therein shall not in any way be affected or impaired.</p>\n',NULL,'2242bdbb432e3a906edd9951e9c48c7c4e1523fdb6c7b8165d36191f64d428b2','2026-02-25 11:11:25','sent','2025-11-27 11:11:33',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-11-27 16:11:25','2025-11-27 16:11:33'),
(16,24,'NDA-2025-00002','unilateral',1,'AeroVironment','','aerovironment@example.com','CEO','2025-12-02','2026-12-02',12,'\n<div style=\"text-align: center; margin-bottom: 30px;\">\n    <h1 style=\"font-size: 18pt; margin: 20px 0;\">NON-DISCLOSURE AGREEMENT</h1>\n</div>\n\n<p>This Agreement is dated as of the date of the last signature below (the \"Effective Date\") by and between <strong>Your Company Name</strong>, having its principal legal mailing address at: <strong>Your Company Address</strong></p>\n\n<p style=\"text-align: center; margin: 20px 0;\"><strong>AND</strong></p>\n\n<p>(individual/Company/LLC): <strong>{company_name}</strong>, with its principal address at: <strong>{contact_address}</strong>.</p>\n\n<p>The parties wish to assure the confidentiality of certain trade secrets, information, and other materials, which have been or may be disclosed by one party (\"Discloser\") to the other party (\"Recipient\") during the review and consideration of a possible business relationship (the \"Purpose\").</p>\n\n<h2 style=\"margin-top: 30px;\">1. NO JOINT VENTURE</h2>\n<p>The parties hereto agree that this Agreement is for the purposes of protecting confidential information disclosed in furtherance of the Purpose only. This Agreement is not a joint venture or other such business arrangement; and any agreement between the parties as to a joint business activities will be, or already is, set forth in other written agreements.</p>\n\n<h2 style=\"margin-top: 30px;\">2. NO LICENSES</h2>\n<p>No license to Recipient under any trademark, patent, copyright or any other intellectual property right is either granted or implied by the disclosure of Confidential Information to Recipient. None of the Confidential Information which may be disclosed to Recipient shall constitute any representation, warranty, assurance, guarantee or inducement by either party to the other of any kind including but not limited to representations, warranties, assurances, guarantees or inducements with respect to the non-infringement of trademarks, patents, copyrights, or any other intellectual property rights, or other rights of either party or of third parties.</p>\n\n<h2 style=\"margin-top: 30px;\">3. CONFIDENTIAL INFORMATION</h2>\n<p>\"Confidential Information\" shall mean any information, field technical guide, technical data, or know-how including, but not limited to, that which relates to a party\'s hardware, software, screens, specifications, designs, plans, site plans, site drawings, general drawings, data, prototypes, discoveries, research, developments, processes, procedures, and/or technical information and materials, in oral, demonstrative, written, electronic, graphic, or machine-readable form and any analyses, compilations, studies, or documents prepared by Recipient, its representatives, or employees, which summarize any such information of Discloser.</p>\n\n<p>This Agreement also encompasses 3rd Party members of contributions/information to Your Company Name, Your Company Name perspective DBA\'s and subordinate companies in design, engineering diagrams, unique business model, network(s) whether marked or unmarked confidential and any other originating content, as proprietary, and not to be disclosed outside of the recipient party or used in any form.</p>\n\n<h2 style=\"margin-top: 30px;\">4. EXCEPTIONS</h2>\n<p><strong>a)</strong> Notwithstanding anything to the contrary contained herein, Recipient shall have no obligation with respect to any Confidential Information of Discloser which, as evidenced by tangible records kept in the ordinary course of business: (i) is or becomes generally known to companies engaged in the same or similar business as the parties hereto on a nonconfidential basis, through no wrongful act of Recipient; (ii) is lawfully obtained by Recipient from a third party without any obligation by Recipient to maintain the information proprietary or confidential; (iii) is known by Recipient prior to disclosure hereunder without any obligation to keep it confidential and such information was not disclosed by Discloser under this Agreement; (iv) is independently developed by Recipient without reference to or use of the other\'s Confidential Information; or (v) is the subject of a written agreement whereby Discloser consents to the disclosure of such Confidential Information.</p>\n\n<p><strong>b)</strong> If Recipient or any of its representatives shall be under a legal obligation in any administrative or judicial circumstance to disclose any Confidential Information, Recipient shall give Discloser prompt notice thereof so that Discloser may seek a protective order and/or waive the duty of non-disclosure; provided that in the absence of such order or waiver, if Recipient or any such representative shall, in the opinion of its counsel, stand liable for contempt or be likely to suffer other censure or penalty for failure to disclose, disclosure pursuant to the order of such tribunal may be made Recipient or its representatives without liability hereunder.</p>\n\n<h2 style=\"margin-top: 30px; page-break-before: always;\">5. PROTECTION OF CONFIDENTIAL INFORMATION</h2>\n<p><strong>a)</strong> Recipient agrees not to disclose the Confidential Information of Discloser or to use Confidential Information for any purpose other than the Purpose specified in paragraph 1 above. Recipient agrees to protect the Confidential Information of Discloser from disclosure to anyone other than its directors, officers, and employees who have a business-related need to have access to such Confidential Information in connection with the purposes of this Agreement, and who have entered into the agreements with such party pursuant to which they are bound by the confidentiality provisions of this Agreement to the same extent that Recipient is bound. Recipient further agrees promptly to advise Discloser in writing of any unauthorized misappropriation, disclosure or use by any person of the Confidential Information of Discloser which may come to its attention and to take all steps reasonably requested by Discloser to limit, stop or otherwise remedy such misappropriation, disclosure or use.</p>\n\n<p><strong>b)</strong> Recipient will only make as many copies of Confidential Information as are necessary for its use under the terms hereof, and each such copy will be marked with the same proprietary notices that appear on the originals.</p>\n\n<p><strong>c)</strong> The rights and obligations of the parties under this Agreement expire <strong>FIVE (5) years</strong> after the Effective Date, provided that with respect to Confidential Information that constitutes a trade secret under applicable law, such rights and obligations will survive such expiration until, if ever, such Confidential Information loses its trade secret protection other than due to an act or omission of Recipient or its representatives.</p>\n\n<p><strong>d)</strong> The rights and obligations of the parties under this Agreement as to the confidence obligations of sensitive classified and unclassified information pertaining to national security shall continue forever and shall survive the expiration and/or termination of this Agreement.</p>\n\n<p><strong>e)</strong> The Parties acknowledge and agree that any Controlled Unclassified Information (CUI) exchanged or accessed in the course of this Agreement, whether oral, written, or electronic, shall be handled, protected, and secured in accordance with all applicable laws, regulations, and policies governing the handling of CUI. The receiving party agrees to protect the CUI from unauthorized access, disclosure, or use, and will implement appropriate and reasonable security measures in compliance with federal, state, and local laws, as well as any specific requirements outlined by the Disclosing Party. The receiving Party agrees that CUI disclosed under this Agreement shall be used solely for the purpose of the business relationship between the Parties and will not be used for any unauthorized or non-business-related purposes. Upon termination of this Agreement, or upon request of the Disclosing Party, the Receiving Party shall promptly return or take reasonable measures to destroy all copies of CUI, as instructed by the Disclosing Party.</p>\n\n<p><strong>f)</strong> In the event of a suspected or actual breach of CUI, the Receiving Party shall immediately notify the Disclosing Party and cooperate in any investigation or remedial actions necessary to address and mitigate any such breach. The obligations of this section shall survive the termination of this Agreement for as long as the information qualifies under CUI applicable laws and regulations.</p>\n\n<p><strong>g)</strong> Protection of confidentiality and other sensitive data under this Agreement must also adhere to the standard as provided by Department of Defense directive Operations Security (OPSEC) Program § 5205.02-M.</p>\n\n<p style=\"margin-left: 30px; font-style: italic;\">The Department of Defense policy, outlined in Department of Defense Manual (\"DoDM\") §5205.02-M mandates the establishment and maintenance of Operational Security (\"OPSEC\") programs to ensure national security-related missions and functions are protected. OPSEC is a risk management strategy designed to safeguard sensitive information and prevent unauthorized access or exploitation of information, communications, and data in the interest of the National Security of the United States.</p>\n\n<p style=\"margin-left: 30px; font-style: italic;\">Examples of OPSEC include avoiding sharing specific dates, locations, or casualty details to third parties, social media, or to anyone privately or in the public sphere; maintaining caution with regard to discussing unit specifics and capabilities. OPSEC involves a systematic approach that includes identifying critical information by evaluating potential adversaries and their capabilities to exploit vulnerabilities; vulnerability analysis by identifying weaknesses in security measures that could be exploited by adversaries; risk assessment by evaluating the likelihood and potential impact of vulnerabilities being exploited; and adherence to countermeasures by implementing measures to mitigate identified risks and protecting critical information.</p>\n\n<p style=\"margin-left: 30px; font-style: italic;\"><strong>OPSEC is a continuing process that requires ongoing assessment and adaptation to evolving threats and vulnerabilities. OPSEC also applies to unclassified information that could reveal sensitive details or information.</strong></p>\n\n<h2 style=\"margin-top: 30px; page-break-before: always;\">6. GENERAL PROVISIONS</h2>\n\n<p><strong>a. SEVERABILITY.</strong> If any term, provision, covenant or condition of this Agreement, or the application thereof to any person, place or circumstance, shall be held to be invalid, unenforceable or void, the remainder of this Agreement and such term, provision, covenant or condition as applied to other persons, places and circumstances shall remain in full force and effect.</p>\n\n<p><strong>b. RIGHTS CUMULATIVE.</strong> The rights and remedies provided by this Agreement are cumulative, and the exercise of any right or remedy by either party hereto (or by its successor), whether pursuant to this Agreement, to any other agreement, or to law, shall not preclude or waive its right to exercise any or all other rights and remedies.</p>\n\n<p>No failure or neglect of either party hereto in any instance to exercise any right, power, or privilege hereunder or under law shall constitute a waiver of any other right, power, or privilege or of the same right, power or privilege in any other instance. All waivers by either party hereto must be contained in a written instrument signed by the party to be charged and, in the case of the Company, by an officer of the Company or other person duly authorized by the Company.</p>\n\n<p><strong>c. REMEDY FOR BREACH.</strong> The parties hereto agree that, in the event of breach or threatened breach of any covenants of this Agreement, the damage or imminent damage to the other Party shall be inestimable, and that therefore any remedy at law or in damages shall be inadequate. Accordingly, the parties hereto agree that the aggrieved party shall be entitled to injunctive relief against the other Party in the event of any breach or threatened breach of this Agreement, in addition to any other relief (including damages) available to the Company under this Agreement or under law.</p>\n\n<p><strong>d. CHOICE OF LAW.</strong> Client consents to personal jurisdiction of the State and Federal courts located in the State of Florida, County of Manatee or closest thereof in connection with any controversy relating in any way to this Agreement or to any transaction. Client agrees to hold harmless Your Company Name in any litigation, arbitration or any other choses or claim of action the Client may commence against Lender, Investor, Funding Source or Guarantor, or any other subcontracted party of the Your Company Name.</p>\n\n<p>It is further agreed that any dispute, whether taking place in an international jurisdiction or in the USA shall be governed under the Laws of the United States of America and under the State and Federal courts named above.</p>\n\n<p><strong>e. NOTICES.</strong> Any notice, request, consent or approval required or permitted to be given under this Agreement or pursuant to law shall be sufficient if in writing, and if and when sent by certified or registered mail with postage prepaid and/or electronic mail, to Your Company Name\'s address (as noted above) or to the Company\'s principal office, as the case may be.</p>\n\n<p><strong>f. MISCELLANEOUS.</strong></p>\n<p style=\"margin-left: 30px;\">(a) Should this Agreement be transmitted by facsimile, email, or electronic signature, the document shall be considered as an original document, and if signed and transmitted separately each section becoming both legally binding and enforceable.</p>\n<p style=\"margin-left: 30px;\">(b) This Agreement may only be modified or changed in writing and signed by both parties.</p>\n<p style=\"margin-left: 30px;\">(c) If any person or provision of this Agreement or its application is held to be invalid, illegal, or unenforceable in any respect, the validity, legality, or enforceability of any of the other provisions and applications therein shall not in any way be affected or impaired.</p>\n',NULL,'1d7a74a4fd432b14c42f21b35e79395aa642fd177715a8959214976055305427','2026-03-02 16:53:17','sent','2025-12-02 16:54:05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-12-02 21:53:17','2025-12-02 21:54:05'),
(17,24,'NDA-2025-00003','unilateral',1,'AeroVironment','','aerovironment@example.com','CEO','2025-12-04','2026-12-04',12,'\n<div style=\"text-align: center; margin-bottom: 30px;\">\n    <h1 style=\"font-size: 18pt; margin: 20px 0;\">NON-DISCLOSURE AGREEMENT</h1>\n</div>\n\n<p>This Agreement is dated as of the date of the last signature below (the \"Effective Date\") by and between <strong>Your Company Name</strong>, having its principal legal mailing address at: <strong>Your Company Address</strong></p>\n\n<p style=\"text-align: center; margin: 20px 0;\"><strong>AND</strong></p>\n\n<p>(individual/Company/LLC): <strong>{company_name}</strong>, with its principal address at: <strong>{contact_address}</strong>.</p>\n\n<p>The parties wish to assure the confidentiality of certain trade secrets, information, and other materials, which have been or may be disclosed by one party (\"Discloser\") to the other party (\"Recipient\") during the review and consideration of a possible business relationship (the \"Purpose\").</p>\n\n<h2 style=\"margin-top: 30px;\">1. NO JOINT VENTURE</h2>\n<p>The parties hereto agree that this Agreement is for the purposes of protecting confidential information disclosed in furtherance of the Purpose only. This Agreement is not a joint venture or other such business arrangement; and any agreement between the parties as to a joint business activities will be, or already is, set forth in other written agreements.</p>\n\n<h2 style=\"margin-top: 30px;\">2. NO LICENSES</h2>\n<p>No license to Recipient under any trademark, patent, copyright or any other intellectual property right is either granted or implied by the disclosure of Confidential Information to Recipient. None of the Confidential Information which may be disclosed to Recipient shall constitute any representation, warranty, assurance, guarantee or inducement by either party to the other of any kind including but not limited to representations, warranties, assurances, guarantees or inducements with respect to the non-infringement of trademarks, patents, copyrights, or any other intellectual property rights, or other rights of either party or of third parties.</p>\n\n<h2 style=\"margin-top: 30px;\">3. CONFIDENTIAL INFORMATION</h2>\n<p>\"Confidential Information\" shall mean any information, field technical guide, technical data, or know-how including, but not limited to, that which relates to a party\'s hardware, software, screens, specifications, designs, plans, site plans, site drawings, general drawings, data, prototypes, discoveries, research, developments, processes, procedures, and/or technical information and materials, in oral, demonstrative, written, electronic, graphic, or machine-readable form and any analyses, compilations, studies, or documents prepared by Recipient, its representatives, or employees, which summarize any such information of Discloser.</p>\n\n<p>This Agreement also encompasses 3rd Party members of contributions/information to Your Company Name, Your Company Name perspective DBA\'s and subordinate companies in design, engineering diagrams, unique business model, network(s) whether marked or unmarked confidential and any other originating content, as proprietary, and not to be disclosed outside of the recipient party or used in any form.</p>\n\n<h2 style=\"margin-top: 30px;\">4. EXCEPTIONS</h2>\n<p><strong>a)</strong> Notwithstanding anything to the contrary contained herein, Recipient shall have no obligation with respect to any Confidential Information of Discloser which, as evidenced by tangible records kept in the ordinary course of business: (i) is or becomes generally known to companies engaged in the same or similar business as the parties hereto on a nonconfidential basis, through no wrongful act of Recipient; (ii) is lawfully obtained by Recipient from a third party without any obligation by Recipient to maintain the information proprietary or confidential; (iii) is known by Recipient prior to disclosure hereunder without any obligation to keep it confidential and such information was not disclosed by Discloser under this Agreement; (iv) is independently developed by Recipient without reference to or use of the other\'s Confidential Information; or (v) is the subject of a written agreement whereby Discloser consents to the disclosure of such Confidential Information.</p>\n\n<p><strong>b)</strong> If Recipient or any of its representatives shall be under a legal obligation in any administrative or judicial circumstance to disclose any Confidential Information, Recipient shall give Discloser prompt notice thereof so that Discloser may seek a protective order and/or waive the duty of non-disclosure; provided that in the absence of such order or waiver, if Recipient or any such representative shall, in the opinion of its counsel, stand liable for contempt or be likely to suffer other censure or penalty for failure to disclose, disclosure pursuant to the order of such tribunal may be made Recipient or its representatives without liability hereunder.</p>\n\n<h2 style=\"margin-top: 30px; page-break-before: always;\">5. PROTECTION OF CONFIDENTIAL INFORMATION</h2>\n<p><strong>a)</strong> Recipient agrees not to disclose the Confidential Information of Discloser or to use Confidential Information for any purpose other than the Purpose specified in paragraph 1 above. Recipient agrees to protect the Confidential Information of Discloser from disclosure to anyone other than its directors, officers, and employees who have a business-related need to have access to such Confidential Information in connection with the purposes of this Agreement, and who have entered into the agreements with such party pursuant to which they are bound by the confidentiality provisions of this Agreement to the same extent that Recipient is bound. Recipient further agrees promptly to advise Discloser in writing of any unauthorized misappropriation, disclosure or use by any person of the Confidential Information of Discloser which may come to its attention and to take all steps reasonably requested by Discloser to limit, stop or otherwise remedy such misappropriation, disclosure or use.</p>\n\n<p><strong>b)</strong> Recipient will only make as many copies of Confidential Information as are necessary for its use under the terms hereof, and each such copy will be marked with the same proprietary notices that appear on the originals.</p>\n\n<p><strong>c)</strong> The rights and obligations of the parties under this Agreement expire <strong>FIVE (5) years</strong> after the Effective Date, provided that with respect to Confidential Information that constitutes a trade secret under applicable law, such rights and obligations will survive such expiration until, if ever, such Confidential Information loses its trade secret protection other than due to an act or omission of Recipient or its representatives.</p>\n\n<p><strong>d)</strong> The rights and obligations of the parties under this Agreement as to the confidence obligations of sensitive classified and unclassified information pertaining to national security shall continue forever and shall survive the expiration and/or termination of this Agreement.</p>\n\n<p><strong>e)</strong> The Parties acknowledge and agree that any Controlled Unclassified Information (CUI) exchanged or accessed in the course of this Agreement, whether oral, written, or electronic, shall be handled, protected, and secured in accordance with all applicable laws, regulations, and policies governing the handling of CUI. The receiving party agrees to protect the CUI from unauthorized access, disclosure, or use, and will implement appropriate and reasonable security measures in compliance with federal, state, and local laws, as well as any specific requirements outlined by the Disclosing Party. The receiving Party agrees that CUI disclosed under this Agreement shall be used solely for the purpose of the business relationship between the Parties and will not be used for any unauthorized or non-business-related purposes. Upon termination of this Agreement, or upon request of the Disclosing Party, the Receiving Party shall promptly return or take reasonable measures to destroy all copies of CUI, as instructed by the Disclosing Party.</p>\n\n<p><strong>f)</strong> In the event of a suspected or actual breach of CUI, the Receiving Party shall immediately notify the Disclosing Party and cooperate in any investigation or remedial actions necessary to address and mitigate any such breach. The obligations of this section shall survive the termination of this Agreement for as long as the information qualifies under CUI applicable laws and regulations.</p>\n\n<p><strong>g)</strong> Protection of confidentiality and other sensitive data under this Agreement must also adhere to the standard as provided by Department of Defense directive Operations Security (OPSEC) Program § 5205.02-M.</p>\n\n<p style=\"margin-left: 30px; font-style: italic;\">The Department of Defense policy, outlined in Department of Defense Manual (\"DoDM\") §5205.02-M mandates the establishment and maintenance of Operational Security (\"OPSEC\") programs to ensure national security-related missions and functions are protected. OPSEC is a risk management strategy designed to safeguard sensitive information and prevent unauthorized access or exploitation of information, communications, and data in the interest of the National Security of the United States.</p>\n\n<p style=\"margin-left: 30px; font-style: italic;\">Examples of OPSEC include avoiding sharing specific dates, locations, or casualty details to third parties, social media, or to anyone privately or in the public sphere; maintaining caution with regard to discussing unit specifics and capabilities. OPSEC involves a systematic approach that includes identifying critical information by evaluating potential adversaries and their capabilities to exploit vulnerabilities; vulnerability analysis by identifying weaknesses in security measures that could be exploited by adversaries; risk assessment by evaluating the likelihood and potential impact of vulnerabilities being exploited; and adherence to countermeasures by implementing measures to mitigate identified risks and protecting critical information.</p>\n\n<p style=\"margin-left: 30px; font-style: italic;\"><strong>OPSEC is a continuing process that requires ongoing assessment and adaptation to evolving threats and vulnerabilities. OPSEC also applies to unclassified information that could reveal sensitive details or information.</strong></p>\n\n<h2 style=\"margin-top: 30px; page-break-before: always;\">6. GENERAL PROVISIONS</h2>\n\n<p><strong>a. SEVERABILITY.</strong> If any term, provision, covenant or condition of this Agreement, or the application thereof to any person, place or circumstance, shall be held to be invalid, unenforceable or void, the remainder of this Agreement and such term, provision, covenant or condition as applied to other persons, places and circumstances shall remain in full force and effect.</p>\n\n<p><strong>b. RIGHTS CUMULATIVE.</strong> The rights and remedies provided by this Agreement are cumulative, and the exercise of any right or remedy by either party hereto (or by its successor), whether pursuant to this Agreement, to any other agreement, or to law, shall not preclude or waive its right to exercise any or all other rights and remedies.</p>\n\n<p>No failure or neglect of either party hereto in any instance to exercise any right, power, or privilege hereunder or under law shall constitute a waiver of any other right, power, or privilege or of the same right, power or privilege in any other instance. All waivers by either party hereto must be contained in a written instrument signed by the party to be charged and, in the case of the Company, by an officer of the Company or other person duly authorized by the Company.</p>\n\n<p><strong>c. REMEDY FOR BREACH.</strong> The parties hereto agree that, in the event of breach or threatened breach of any covenants of this Agreement, the damage or imminent damage to the other Party shall be inestimable, and that therefore any remedy at law or in damages shall be inadequate. Accordingly, the parties hereto agree that the aggrieved party shall be entitled to injunctive relief against the other Party in the event of any breach or threatened breach of this Agreement, in addition to any other relief (including damages) available to the Company under this Agreement or under law.</p>\n\n<p><strong>d. CHOICE OF LAW.</strong> Client consents to personal jurisdiction of the State and Federal courts located in the State of Florida, County of Manatee or closest thereof in connection with any controversy relating in any way to this Agreement or to any transaction. Client agrees to hold harmless Your Company Name in any litigation, arbitration or any other choses or claim of action the Client may commence against Lender, Investor, Funding Source or Guarantor, or any other subcontracted party of the Your Company Name.</p>\n\n<p>It is further agreed that any dispute, whether taking place in an international jurisdiction or in the USA shall be governed under the Laws of the United States of America and under the State and Federal courts named above.</p>\n\n<p><strong>e. NOTICES.</strong> Any notice, request, consent or approval required or permitted to be given under this Agreement or pursuant to law shall be sufficient if in writing, and if and when sent by certified or registered mail with postage prepaid and/or electronic mail, to Your Company Name\'s address (as noted above) or to the Company\'s principal office, as the case may be.</p>\n\n<p><strong>f. MISCELLANEOUS.</strong></p>\n<p style=\"margin-left: 30px;\">(a) Should this Agreement be transmitted by facsimile, email, or electronic signature, the document shall be considered as an original document, and if signed and transmitted separately each section becoming both legally binding and enforceable.</p>\n<p style=\"margin-left: 30px;\">(b) This Agreement may only be modified or changed in writing and signed by both parties.</p>\n<p style=\"margin-left: 30px;\">(c) If any person or provision of this Agreement or its application is held to be invalid, illegal, or unenforceable in any respect, the validity, legality, or enforceability of any of the other provisions and applications therein shall not in any way be affected or impaired.</p>\n',NULL,'3cd04a36315cb36c2523552bee8ffe5a01d60b3432ff21db384be0f125a62008','2026-03-04 18:25:51','draft',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-12-04 23:25:51','2025-12-04 23:25:51');
/*!40000 ALTER TABLE `ndas` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `network_monitor_logs`
--

DROP TABLE IF EXISTS `network_monitor_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `network_monitor_logs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `url` varchar(1000) NOT NULL,
  `host` varchar(255) NOT NULL,
  `port` int(11) DEFAULT 80,
  `method` varchar(10) DEFAULT 'GET',
  `context` varchar(255) DEFAULT '',
  `is_local` tinyint(1) DEFAULT 1,
  `status` enum('attempted','success','blocked','failed') DEFAULT 'attempted',
  `request_data` text DEFAULT NULL,
  `response_data` text DEFAULT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` varchar(500) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_timestamp` (`timestamp`),
  KEY `idx_host` (`host`),
  KEY `idx_status` (`status`),
  KEY `idx_is_local` (`is_local`),
  KEY `idx_user_id` (`user_id`),
  CONSTRAINT `network_monitor_logs_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `network_monitor_logs`
--

LOCK TABLES `network_monitor_logs` WRITE;
/*!40000 ALTER TABLE `network_monitor_logs` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `network_monitor_logs` VALUES
(1,'2025-11-19 09:49:46','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/chat\",\"payload_size\":18305}','{\"status\":\"success\",\"response_size\":3527,\"tokens\":661}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(2,'2025-11-19 09:50:16','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/chat\",\"payload_size\":18276}','{\"status\":\"success\",\"response_size\":1102,\"tokens\":174}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(3,'2025-11-19 09:50:34','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/chat\",\"payload_size\":18229}','{\"status\":\"success\",\"response_size\":1583,\"tokens\":305}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(4,'2025-11-19 10:43:07','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/chat\",\"payload_size\":18229}','{\"status\":\"success\",\"response_size\":1220,\"tokens\":230}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(5,'2025-11-19 10:45:11','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/chat\",\"payload_size\":18370}','{\"status\":\"success\",\"response_size\":1713,\"tokens\":354}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(6,'2025-11-19 10:47:12','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/chat\",\"payload_size\":18370}','{\"status\":\"success\",\"response_size\":1371,\"tokens\":286}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(7,'2025-11-19 10:47:53','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/chat\",\"payload_size\":18410}','{\"status\":\"success\",\"response_size\":2999,\"tokens\":590}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(8,'2025-11-19 10:49:15','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/chat\",\"payload_size\":18410}','{\"status\":\"success\",\"response_size\":3383,\"tokens\":662}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(9,'2025-11-19 10:49:46','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/chat\",\"payload_size\":18372}','{\"status\":\"success\",\"response_size\":1447,\"tokens\":271}',NULL,'unknown','unknown'),
(10,'2025-11-19 10:56:58','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/chat\",\"payload_size\":145}','{\"status\":\"success\",\"response_size\":1351,\"tokens\":213}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(11,'2025-11-19 10:58:44','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/chat\",\"payload_size\":18842}','{\"status\":\"success\",\"response_size\":1570,\"tokens\":315}',NULL,'unknown','unknown'),
(12,'2025-11-19 10:59:49','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/generate\",\"payload_size\":18371}','{\"status\":\"success\",\"response_size\":23417,\"tokens\":72}',NULL,'unknown','unknown'),
(13,'2025-11-19 11:00:28','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/generate\",\"payload_size\":18405}','{\"status\":\"success\",\"response_size\":23835,\"tokens\":109}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(14,'2025-11-19 11:29:13','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/generate\",\"payload_size\":18408}','{\"status\":\"success\",\"response_size\":24825,\"tokens\":234}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(15,'2025-11-19 11:29:18','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/chat\",\"payload_size\":448}','{\"status\":\"success\",\"response_size\":1221,\"tokens\":195}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(16,'2025-11-19 11:44:43','google.com','unknown',80,'BLOCKED','Manual Test',0,'blocked','[]','External connection blocked by NetworkMonitor',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(17,'2025-11-19 11:44:43','google.com','unknown',80,'BLOCKED','Manual Test',0,'blocked','[]','External connection blocked by NetworkMonitor',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(18,'2025-11-19 11:44:43','google.com','unknown',80,'BLOCKED','Manual Test',0,'blocked','[]','External connection blocked by NetworkMonitor',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(19,'2025-11-19 12:55:18','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/generate\",\"payload_size\":237}','{\"status\":\"success\",\"response_size\":760,\"tokens\":27}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(20,'2025-11-19 12:58:00','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/generate\",\"payload_size\":8466}','{\"status\":\"success\",\"response_size\":10545,\"tokens\":9}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(21,'2025-11-19 12:59:07','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/generate\",\"payload_size\":8456}','{\"status\":\"success\",\"response_size\":10607,\"tokens\":16}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(22,'2025-11-19 12:59:20','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/chat\",\"payload_size\":432}','{\"status\":\"success\",\"response_size\":1284,\"tokens\":213}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(23,'2025-11-19 13:45:57','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/generate\",\"payload_size\":966}','{\"status\":\"success\",\"response_size\":1663,\"tokens\":37}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(24,'2025-11-19 13:48:07','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/generate\",\"payload_size\":5356}','{\"status\":\"success\",\"response_size\":6805,\"tokens\":14}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(25,'2025-11-19 13:57:37','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/generate\",\"payload_size\":5356}','{\"status\":\"success\",\"response_size\":6976,\"tokens\":32}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(26,'2025-11-19 14:07:02','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/generate\",\"payload_size\":5341}','{\"status\":\"success\",\"response_size\":6877,\"tokens\":24}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(27,'2025-11-19 14:07:46','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/generate\",\"payload_size\":5341}','{\"status\":\"success\",\"response_size\":6818,\"tokens\":17}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(28,'2025-11-19 14:09:27','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/generate\",\"payload_size\":5341}','{\"status\":\"success\",\"response_size\":6843,\"tokens\":20}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(29,'2025-11-19 14:09:43','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/chat\",\"payload_size\":786}','{\"status\":\"success\",\"response_size\":1430,\"tokens\":279}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(30,'2025-11-19 14:26:33','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/generate\",\"payload_size\":5348}','{\"status\":\"success\",\"response_size\":6836,\"tokens\":19}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(31,'2025-11-21 09:02:08','google.com','unknown',80,'BLOCKED','Manual Test',0,'blocked','[]','External connection blocked by NetworkMonitor',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(32,'2025-11-21 09:02:09','google.com','unknown',80,'BLOCKED','Manual Test',0,'blocked','[]','External connection blocked by NetworkMonitor',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(33,'2025-11-21 09:02:11','google.com','unknown',80,'BLOCKED','Manual Test',0,'blocked','[]','External connection blocked by NetworkMonitor',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(34,'2025-11-21 09:02:11','google.com','unknown',80,'BLOCKED','Manual Test',0,'blocked','[]','External connection blocked by NetworkMonitor',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(35,'2025-11-21 09:02:12','google.com','unknown',80,'BLOCKED','Manual Test',0,'blocked','[]','External connection blocked by NetworkMonitor',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(36,'2025-11-21 09:02:17','https://google.com','google.com',443,'BLOCKED','Manual Test',0,'blocked','[]','External connection blocked by NetworkMonitor',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(37,'2025-11-21 09:02:21','https://google.com','google.com',443,'BLOCKED','Manual Test',0,'blocked','[]','External connection blocked by NetworkMonitor',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(38,'2025-12-03 09:29:28','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/chat\",\"payload_size\":115}','{\"status\":\"success\",\"response_size\":411,\"tokens\":23}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(39,'2025-12-04 09:50:43','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/generate\",\"payload_size\":6457}','{\"status\":\"success\",\"response_size\":8113,\"tokens\":20}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15');
/*!40000 ALTER TABLE `network_monitor_logs` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `non_conformance_reports`
--

DROP TABLE IF EXISTS `non_conformance_reports`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `non_conformance_reports` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ncr_number` varchar(50) NOT NULL,
  `inspection_id` int(10) unsigned DEFAULT NULL,
  `work_order_id` int(10) unsigned DEFAULT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `defect_type` varchar(100) NOT NULL,
  `description` text NOT NULL,
  `quantity_affected` int(11) DEFAULT 0,
  `severity` enum('minor','major','critical') DEFAULT 'minor',
  `root_cause` text DEFAULT NULL,
  `corrective_action` text DEFAULT NULL,
  `preventive_action` text DEFAULT NULL,
  `disposition` enum('rework','scrap','use_as_is','return_to_supplier') DEFAULT NULL,
  `status` enum('open','in_review','resolved','closed') DEFAULT 'open',
  `reported_by` int(10) unsigned NOT NULL,
  `reported_at` datetime DEFAULT current_timestamp(),
  `resolved_by` int(10) unsigned DEFAULT NULL,
  `resolved_at` datetime DEFAULT NULL,
  `closed_by` int(10) unsigned DEFAULT NULL,
  `closed_at` datetime DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `ncr_number` (`ncr_number`),
  KEY `idx_status` (`status`),
  KEY `idx_severity` (`severity`),
  KEY `idx_product` (`product_id`),
  KEY `idx_reported_at` (`reported_at`),
  KEY `inspection_id` (`inspection_id`),
  KEY `work_order_id` (`work_order_id`),
  KEY `reported_by` (`reported_by`),
  KEY `resolved_by` (`resolved_by`),
  KEY `closed_by` (`closed_by`),
  KEY `idx_ncr_status_severity` (`status`,`severity`),
  CONSTRAINT `non_conformance_reports_ibfk_1` FOREIGN KEY (`inspection_id`) REFERENCES `quality_inspections` (`id`) ON DELETE SET NULL,
  CONSTRAINT `non_conformance_reports_ibfk_2` FOREIGN KEY (`work_order_id`) REFERENCES `work_orders` (`id`) ON DELETE SET NULL,
  CONSTRAINT `non_conformance_reports_ibfk_3` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE,
  CONSTRAINT `non_conformance_reports_ibfk_4` FOREIGN KEY (`reported_by`) REFERENCES `users` (`id`),
  CONSTRAINT `non_conformance_reports_ibfk_5` FOREIGN KEY (`resolved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `non_conformance_reports_ibfk_6` FOREIGN KEY (`closed_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `non_conformance_reports`
--

LOCK TABLES `non_conformance_reports` WRITE;
/*!40000 ALTER TABLE `non_conformance_reports` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `non_conformance_reports` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `notification_digest_queue`
--

DROP TABLE IF EXISTS `notification_digest_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `notification_digest_queue` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `notification_id` int(10) unsigned NOT NULL,
  `digest_type` enum('hourly','daily','weekly') NOT NULL,
  `status` enum('pending','sent','failed') DEFAULT 'pending',
  `sent_at` timestamp NULL DEFAULT NULL,
  `error_message` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_digest` (`user_id`,`digest_type`,`status`),
  KEY `idx_status` (`status`,`created_at`),
  KEY `notification_id` (`notification_id`),
  CONSTRAINT `notification_digest_queue_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `notification_digest_queue_ibfk_2` FOREIGN KEY (`notification_id`) REFERENCES `notifications` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Queue for digest email notifications';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `notification_digest_queue`
--

LOCK TABLES `notification_digest_queue` WRITE;
/*!40000 ALTER TABLE `notification_digest_queue` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `notification_digest_queue` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `notification_preferences`
--

DROP TABLE IF EXISTS `notification_preferences`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `notification_preferences` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `notification_type` varchar(50) NOT NULL,
  `in_app_enabled` tinyint(1) DEFAULT 1 COMMENT 'Show in-app notifications',
  `email_enabled` tinyint(1) DEFAULT 1 COMMENT 'Send email notifications',
  `sms_enabled` tinyint(1) DEFAULT 0 COMMENT 'Send SMS notifications (future)',
  `frequency` enum('immediate','hourly','daily','weekly') DEFAULT 'immediate',
  `digest_time` time DEFAULT NULL COMMENT 'Preferred time for digest emails (e.g., 09:00:00)',
  `digest_day` enum('monday','tuesday','wednesday','thursday','friday','saturday','sunday') DEFAULT NULL COMMENT 'Day for weekly digest',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_user_type` (`user_id`,`notification_type`),
  KEY `idx_user_id` (`user_id`),
  KEY `idx_notification_type` (`notification_type`),
  CONSTRAINT `notification_preferences_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='User notification preferences';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `notification_preferences`
--

LOCK TABLES `notification_preferences` WRITE;
/*!40000 ALTER TABLE `notification_preferences` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `notification_preferences` VALUES
(1,1,'all',1,1,0,'immediate',NULL,NULL,'2025-11-26 14:13:26','2025-11-26 14:13:26'),
(2,2,'all',1,1,0,'immediate',NULL,NULL,'2025-11-26 14:13:26','2025-11-26 14:13:26'),
(3,3,'all',1,1,0,'immediate',NULL,NULL,'2025-11-26 14:13:26','2025-11-26 14:13:26'),
(4,4,'all',1,1,0,'immediate',NULL,NULL,'2025-11-26 14:13:26','2025-11-26 14:13:26'),
(5,5,'all',1,1,0,'immediate',NULL,NULL,'2025-11-26 14:13:26','2025-11-26 14:13:26'),
(6,6,'all',1,1,0,'immediate',NULL,NULL,'2025-11-26 14:13:26','2025-11-26 14:13:26'),
(7,7,'all',1,1,0,'immediate',NULL,NULL,'2025-11-26 14:13:26','2025-11-26 14:13:26'),
(8,8,'all',1,1,0,'immediate',NULL,NULL,'2025-11-26 14:13:26','2025-11-26 14:13:26'),
(9,21,'all',1,1,0,'immediate',NULL,NULL,'2025-11-26 14:13:26','2025-11-26 14:13:26');
/*!40000 ALTER TABLE `notification_preferences` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `notification_stats_by_user`
--

DROP TABLE IF EXISTS `notification_stats_by_user`;
/*!50001 DROP VIEW IF EXISTS `notification_stats_by_user`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `notification_stats_by_user` AS SELECT
 1 AS `user_id`,
  1 AS `user_name`,
  1 AS `total_notifications`,
  1 AS `unread_count`,
  1 AS `emails_sent`,
  1 AS `last_notification_at` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `notifications`
--

DROP TABLE IF EXISTS `notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `notifications` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `type` varchar(50) NOT NULL COMMENT 'message, mention, system, alert, etc',
  `title` varchar(255) NOT NULL,
  `message` text DEFAULT NULL,
  `link` varchar(500) DEFAULT NULL,
  `icon` varchar(50) DEFAULT 'bi-bell',
  `is_read` tinyint(1) DEFAULT 0,
  `email_sent` tinyint(1) DEFAULT 0 COMMENT 'Whether email notification was sent',
  `email_sent_at` timestamp NULL DEFAULT NULL COMMENT 'When email was sent',
  `mentioned_users` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Array of user IDs mentioned in notification' CHECK (json_valid(`mentioned_users`)),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `read_at` timestamp NULL DEFAULT NULL,
  `metadata` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Additional data like channel_id, message_id, etc' CHECK (json_valid(`metadata`)),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_read` (`user_id`,`is_read`),
  KEY `idx_created` (`created_at` DESC),
  KEY `idx_email_sent` (`email_sent`,`created_at`),
  CONSTRAINT `notifications_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `notifications`
--

LOCK TABLES `notifications` WRITE;
/*!40000 ALTER TABLE `notifications` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `notifications` VALUES
(16,4,'file_share','Admin User shared a file with you','You now have Download permission to \"IMG_5218.JPG\"','/files/shared','bi-share',0,0,NULL,NULL,'2025-11-27 18:34:31',NULL,'{\"item_type\":\"file\",\"item_id\":\"8\",\"item_name\":\"IMG_5218.JPG\",\"permission\":\"download\",\"sharer_name\":\"Admin User\"}','2025-11-27 18:34:31'),
(17,4,'file_share','Admin User shared a file with you','You now have Download permission to \"archive_1764262879453.zip\"','/files/shared','bi-share',0,0,NULL,NULL,'2025-11-27 19:20:30',NULL,'{\"item_type\":\"file\",\"item_id\":\"9\",\"item_name\":\"archive_1764262879453.zip\",\"permission\":\"download\",\"sharer_name\":\"Admin User\"}','2025-11-27 19:20:30'),
(18,4,'file_share','Admin User shared a file with you','You now have Download permission to \"archive_1764262879453.zip\"','/files/shared','bi-share',0,0,NULL,NULL,'2025-11-27 19:30:41',NULL,'{\"item_type\":\"file\",\"item_id\":\"9\",\"item_name\":\"archive_1764262879453.zip\",\"permission\":\"download\",\"sharer_name\":\"Admin User\"}','2025-11-27 19:30:41'),
(19,4,'file_share','Admin User shared a file with you','You now have Download permission to \"IMG_5218.JPG\"','/files/shared','bi-share',0,0,NULL,NULL,'2025-11-27 19:32:39',NULL,'{\"item_type\":\"file\",\"item_id\":\"8\",\"item_name\":\"IMG_5218.JPG\",\"permission\":\"download\",\"sharer_name\":\"Admin User\"}','2025-11-27 19:32:39'),
(20,4,'file_share','Admin User shared a file with you','You now have Download permission to \"IMG_5218.JPG\"','/files/shared','bi-share',0,0,NULL,NULL,'2025-11-27 19:58:09',NULL,'{\"item_type\":\"file\",\"item_id\":\"8\",\"item_name\":\"IMG_5218.JPG\",\"permission\":\"download\",\"sharer_name\":\"Admin User\"}','2025-11-27 19:58:09'),
(21,4,'file_share','Admin User shared a file with you','You now have Download permission to \"IMG_5218.JPG\"','/files/shared','bi-share',0,0,NULL,NULL,'2025-11-27 20:22:35',NULL,'{\"item_type\":\"file\",\"item_id\":\"8\",\"item_name\":\"IMG_5218.JPG\",\"permission\":\"download\",\"sharer_name\":\"Admin User\"}','2025-11-27 20:22:35'),
(22,4,'calendar_event','Admin User invited you to a calendar event','<strong>Event:</strong> Test6<br><strong>Start:</strong> Nov 27, 2025 4:00 PM<br><strong>End:</strong> Nov 27, 2025 4:30 PM<br><strong>Location:</strong> Not specified<br>','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 20:53:37',NULL,NULL,'2025-11-27 20:53:37'),
(23,4,'calendar_event','Admin User invited you to a calendar event','<strong>Event:</strong> Test6<br><strong>Start:</strong> Nov 27, 2025 4:00 PM<br><strong>End:</strong> Nov 27, 2025 4:30 PM<br><strong>Location:</strong> Not specified<br>','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 20:53:40',NULL,NULL,'2025-11-27 20:53:40'),
(24,4,'calendar_event','Admin User invited you to a calendar event','<strong>Event:</strong> Test6<br><strong>Start:</strong> Nov 27, 2025 4:00 PM<br><strong>End:</strong> Nov 27, 2025 4:30 PM<br><strong>Location:</strong> Not specified<br>','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 20:53:46',NULL,NULL,'2025-11-27 20:53:46'),
(25,4,'calendar_event','Admin User invited you to a calendar event','<strong>Event:</strong> Test6<br><strong>Start:</strong> Nov 27, 2025 4:00 PM<br><strong>End:</strong> Nov 27, 2025 4:30 PM<br><strong>Location:</strong> Not specified<br>','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 20:53:49',NULL,NULL,'2025-11-27 20:53:49'),
(26,4,'calendar_event','Admin User invited you to a calendar event','Event: ricks mtg','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 20:57:37',NULL,NULL,'2025-11-27 20:57:37'),
(27,4,'calendar_event','Admin User invited you to a calendar event','Event: ricks mtg','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 20:57:40',NULL,NULL,'2025-11-27 20:57:40'),
(28,4,'calendar_event','Admin User invited you to a calendar event','Event: ricks mtg','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 20:57:42',NULL,NULL,'2025-11-27 20:57:42'),
(29,4,'calendar_event','Admin User invited you to a calendar event','Event: test7','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 20:58:28',NULL,NULL,'2025-11-27 20:58:28'),
(30,4,'calendar_event','Admin User invited you to a calendar event','Event: test7','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 20:59:40',NULL,NULL,'2025-11-27 20:59:40'),
(31,4,'calendar_event','Admin User invited you to a calendar event','Event: test','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 21:00:33',NULL,NULL,'2025-11-27 21:00:33'),
(32,4,'calendar_event','Admin User invited you to a calendar event','Event: test','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 21:00:56',NULL,NULL,'2025-11-27 21:00:56'),
(33,4,'calendar_event','Admin User invited you to a calendar event','Event: test','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 21:02:07',NULL,NULL,'2025-11-27 21:02:07'),
(34,4,'calendar_event','Admin User invited you to a calendar event','Event: tester','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 21:03:26',NULL,NULL,'2025-11-27 21:03:26'),
(35,4,'calendar_event','Admin User invited you to a calendar event','Event: tester','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 21:04:37',NULL,NULL,'2025-11-27 21:04:37'),
(36,4,'calendar_event','Admin User invited you to a calendar event','Event: Demo','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-12-04 18:07:29',NULL,NULL,'2025-12-04 18:07:29'),
(37,4,'calendar_event','Admin User updated a calendar event','Event: Demo','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-12-04 19:32:41',NULL,NULL,'2025-12-04 19:32:41'),
(38,5,'diagram_shared','Diagram Shared With You','Admin User shared a diagram \"Untitled Diagram\" with you','http://localhost:8080/diagrams/editor/6','bi-diagram-3',0,0,NULL,NULL,'2025-12-04 23:07:12',NULL,'{\"diagram_id\":\"6\",\"diagram_title\":\"Untitled Diagram\"}','2025-12-04 23:07:12'),
(39,4,'calendar_event','Admin User invited you to a calendar event','Event: Rick Mtg','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-12-04 23:15:38',NULL,NULL,'2025-12-04 23:15:38'),
(40,3,'calendar_event','Admin User invited you to a calendar event','Event: Rick Mtg','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-12-04 23:15:38',NULL,NULL,'2025-12-04 23:15:38'),
(41,5,'calendar_event','Admin User invited you to a calendar event','Event: Rick Mtg','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-12-04 23:15:38',NULL,NULL,'2025-12-04 23:15:38'),
(42,6,'calendar_event','Admin User invited you to a calendar event','Event: Rick Mtg','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-12-04 23:15:38',NULL,NULL,'2025-12-04 23:15:38'),
(43,7,'calendar_event','Admin User invited you to a calendar event','Event: Rick Mtg','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-12-04 23:15:39',NULL,NULL,'2025-12-04 23:15:39'),
(44,8,'calendar_event','Admin User invited you to a calendar event','Event: Rick Mtg','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-12-04 23:15:39',NULL,NULL,'2025-12-04 23:15:39');
/*!40000 ALTER TABLE `notifications` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `opportunity_assignments`
--

DROP TABLE IF EXISTS `opportunity_assignments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `opportunity_assignments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `opportunity_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `role` varchar(50) DEFAULT 'contributor' COMMENT 'owner, contributor, viewer',
  `assigned_at` timestamp NULL DEFAULT current_timestamp(),
  `assigned_by` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_assignment` (`opportunity_id`,`user_id`),
  KEY `assigned_by` (`assigned_by`),
  KEY `idx_opportunity_assignments_opportunity` (`opportunity_id`),
  KEY `idx_opportunity_assignments_user` (`user_id`),
  CONSTRAINT `opportunity_assignments_ibfk_1` FOREIGN KEY (`opportunity_id`) REFERENCES `crm_opportunities` (`id`) ON DELETE CASCADE,
  CONSTRAINT `opportunity_assignments_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `opportunity_assignments_ibfk_3` FOREIGN KEY (`assigned_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `opportunity_assignments`
--

LOCK TABLES `opportunity_assignments` WRITE;
/*!40000 ALTER TABLE `opportunity_assignments` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `opportunity_assignments` VALUES
(1,24,5,'owner','2025-12-03 19:44:15',1),
(3,24,1,'contributor','2025-12-03 20:40:13',1);
/*!40000 ALTER TABLE `opportunity_assignments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `opportunity_competitors`
--

DROP TABLE IF EXISTS `opportunity_competitors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `opportunity_competitors` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `opportunity_id` int(10) unsigned NOT NULL,
  `competitor_name` varchar(255) NOT NULL,
  `product_service` varchar(255) DEFAULT NULL COMMENT 'What product/service they are offering',
  `pricing` decimal(15,2) DEFAULT NULL COMMENT 'Their pricing',
  `strengths` text DEFAULT NULL COMMENT 'Competitor strengths',
  `weaknesses` text DEFAULT NULL COMMENT 'Competitor weaknesses',
  `notes` text DEFAULT NULL COMMENT 'Additional notes',
  `created_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_opportunity_id` (`opportunity_id`),
  KEY `idx_created_by` (`created_by`),
  CONSTRAINT `fk_opp_comp_opportunity` FOREIGN KEY (`opportunity_id`) REFERENCES `crm_opportunities` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_opp_comp_user` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `opportunity_competitors`
--

LOCK TABLES `opportunity_competitors` WRITE;
/*!40000 ALTER TABLE `opportunity_competitors` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `opportunity_competitors` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `opportunity_documents`
--

DROP TABLE IF EXISTS `opportunity_documents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `opportunity_documents` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `opportunity_id` int(10) unsigned NOT NULL,
  `document_name` varchar(255) NOT NULL,
  `original_filename` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_size` bigint(20) NOT NULL COMMENT 'Size in bytes',
  `file_type` varchar(100) DEFAULT NULL COMMENT 'MIME type',
  `document_type` enum('proposal','contract','presentation','other') DEFAULT 'other',
  `description` text DEFAULT NULL,
  `uploaded_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_opportunity_id` (`opportunity_id`),
  KEY `idx_uploaded_by` (`uploaded_by`),
  CONSTRAINT `fk_opp_docs_opportunity` FOREIGN KEY (`opportunity_id`) REFERENCES `crm_opportunities` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_opp_docs_user` FOREIGN KEY (`uploaded_by`) REFERENCES `users` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `opportunity_documents`
--

LOCK TABLES `opportunity_documents` WRITE;
/*!40000 ALTER TABLE `opportunity_documents` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `opportunity_documents` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `opportunity_stage_history`
--

DROP TABLE IF EXISTS `opportunity_stage_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `opportunity_stage_history` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `opportunity_id` int(10) unsigned NOT NULL,
  `from_stage` enum('lead','qualified','proposal','negotiation','closed_won','closed_lost') DEFAULT NULL,
  `to_stage` enum('lead','qualified','proposal','negotiation','closed_won','closed_lost') NOT NULL,
  `changed_by` int(10) unsigned NOT NULL,
  `changed_at` timestamp NULL DEFAULT current_timestamp(),
  `duration_days` int(11) DEFAULT NULL COMMENT 'Days spent in previous stage',
  `notes` text DEFAULT NULL COMMENT 'Optional notes about the stage change',
  PRIMARY KEY (`id`),
  KEY `idx_opportunity_id` (`opportunity_id`),
  KEY `idx_changed_by` (`changed_by`),
  KEY `idx_changed_at` (`changed_at`),
  CONSTRAINT `fk_stage_hist_opportunity` FOREIGN KEY (`opportunity_id`) REFERENCES `crm_opportunities` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_stage_hist_user` FOREIGN KEY (`changed_by`) REFERENCES `users` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `opportunity_stage_history`
--

LOCK TABLES `opportunity_stage_history` WRITE;
/*!40000 ALTER TABLE `opportunity_stage_history` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `opportunity_stage_history` VALUES
(1,35,'proposal','negotiation',1,'2025-11-14 19:42:53',1,NULL),
(2,35,'negotiation','proposal',1,'2025-11-14 19:42:59',0,NULL),
(3,25,'proposal','qualified',1,'2025-11-24 13:25:17',10,NULL),
(4,25,'qualified','lead',1,'2025-11-24 13:25:26',0,NULL),
(5,26,'proposal','qualified',1,'2025-11-24 13:25:28',10,NULL),
(6,26,'qualified','lead',1,'2025-11-25 23:09:03',1,NULL),
(7,26,'lead','qualified',1,'2025-11-25 23:09:08',0,NULL),
(8,27,'proposal','qualified',1,'2025-11-26 00:15:41',12,NULL);
/*!40000 ALTER TABLE `opportunity_stage_history` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `opportunity_tasks`
--

DROP TABLE IF EXISTS `opportunity_tasks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `opportunity_tasks` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `opportunity_id` int(10) unsigned NOT NULL,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `due_date` date DEFAULT NULL,
  `priority` enum('low','medium','high') DEFAULT 'medium',
  `status` enum('pending','completed','cancelled') DEFAULT 'pending',
  `assigned_to` int(10) unsigned DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `completed_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_opportunity_id` (`opportunity_id`),
  KEY `idx_status` (`status`),
  KEY `idx_due_date` (`due_date`),
  KEY `idx_assigned_to` (`assigned_to`),
  CONSTRAINT `opportunity_tasks_ibfk_1` FOREIGN KEY (`opportunity_id`) REFERENCES `crm_opportunities` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `opportunity_tasks`
--

LOCK TABLES `opportunity_tasks` WRITE;
/*!40000 ALTER TABLE `opportunity_tasks` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `opportunity_tasks` VALUES
(1,23,'Test','',NULL,'medium','completed',1,1,'2025-11-13 16:49:12',1,'2025-11-13 16:48:57','2025-11-13 16:49:12');
/*!40000 ALTER TABLE `opportunity_tasks` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `page_actions`
--

DROP TABLE IF EXISTS `page_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `page_actions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `page_identifier` varchar(100) NOT NULL COMMENT 'e.g., quote_detail, customer_detail, invoice_detail',
  `action_name` varchar(100) DEFAULT NULL COMMENT 'Display name for the action (NULL for dividers)',
  `icon` varchar(50) DEFAULT NULL COMMENT 'Bootstrap icon class, e.g., bi-pen, bi-envelope',
  `action_type` enum('javascript','link','form_submit','modal','divider') NOT NULL DEFAULT 'link',
  `action_target` varchar(255) DEFAULT NULL COMMENT 'JS function name, route, or form ID depending on action_type',
  `action_method` varchar(10) DEFAULT NULL COMMENT 'For form_submit: GET, POST, etc.',
  `permission_required` varchar(100) DEFAULT NULL COMMENT 'Permission needed to see this action',
  `css_class` varchar(100) DEFAULT NULL COMMENT 'Additional CSS classes for styling',
  `display_order` int(11) NOT NULL DEFAULT 0 COMMENT 'Order in which actions appear',
  `group_name` varchar(50) DEFAULT NULL COMMENT 'Group actions together with dividers',
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_page_identifier` (`page_identifier`),
  KEY `idx_is_active` (`is_active`),
  KEY `idx_display_order` (`display_order`)
) ENGINE=InnoDB AUTO_INCREMENT=300 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `page_actions`
--

LOCK TABLES `page_actions` WRITE;
/*!40000 ALTER TABLE `page_actions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `page_actions` VALUES
(1,'quote_detail','Send for E-Signature','bi-pen','javascript','sendForSignature',NULL,'sales.edit',NULL,10,'signature',1,'2025-11-16 15:34:57','2025-11-16 15:34:57'),
(2,'quote_detail','Email Quote Link','bi-envelope','javascript','showEmailModal',NULL,NULL,NULL,20,'signature',1,'2025-11-16 15:34:57','2025-11-16 15:34:57'),
(3,'quote_detail','Copy Signature Link','bi-link-45deg','javascript','copySignatureLink',NULL,NULL,NULL,30,'signature',1,'2025-11-16 15:34:57','2025-11-16 15:34:57'),
(4,'quote_detail','Convert to Order','bi-arrow-right-circle','form_submit','convertForm',NULL,'sales.create',NULL,40,'order',1,'2025-11-16 15:34:57','2025-11-16 15:34:57'),
(5,'quote_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,50,NULL,1,'2025-11-16 15:34:57','2025-11-16 15:34:57'),
(6,'quote_detail','Notes','bi-sticky','javascript','openNotes',NULL,NULL,NULL,60,'standard',1,'2025-11-16 15:34:57','2025-11-16 15:34:57'),
(7,'quote_detail','Print Quote','bi-printer','link','quotes/general/{id}/print',NULL,NULL,NULL,70,'standard',1,'2025-11-16 15:34:57','2025-11-16 15:34:57'),
(8,'quote_detail','Edit Quote','bi-pencil','link','quotes/general/{id}/edit',NULL,'sales.edit',NULL,80,'standard',1,'2025-11-16 15:34:57','2025-11-16 15:34:57'),
(9,'quote_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,90,NULL,1,'2025-11-16 15:34:57','2025-11-16 15:34:57'),
(10,'quote_detail','Back','bi-arrow-left','link','quotes/general',NULL,NULL,NULL,100,'navigation',1,'2025-11-16 15:34:57','2025-11-16 15:54:16'),
(11,'invoice_detail','Notes','bi-sticky','javascript','openNotes',NULL,NULL,NULL,10,'standard',1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(12,'invoice_detail','Print Invoice','bi-printer','link','invoices/{id}/print',NULL,NULL,NULL,20,'standard',1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(13,'invoice_detail','Edit Invoice','bi-pencil','link','invoices/{id}/edit',NULL,'sales.edit',NULL,30,'standard',1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(14,'invoice_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,40,NULL,1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(15,'invoice_detail','Back','bi-arrow-left','link','invoices',NULL,NULL,NULL,50,'navigation',1,'2025-11-16 15:43:35','2025-11-16 15:54:16'),
(16,'salesorder_detail','Notes','bi-sticky','javascript','openNotes',NULL,NULL,NULL,10,'standard',1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(17,'salesorder_detail','Print Order','bi-printer','link','sales/orders/{id}/print',NULL,NULL,NULL,20,'standard',1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(18,'salesorder_detail','Edit Order','bi-pencil','link','sales/orders/{id}/edit',NULL,'sales.edit',NULL,30,'standard',1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(19,'salesorder_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,40,NULL,1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(20,'salesorder_detail','Back','bi-arrow-left','link','sales/orders',NULL,NULL,NULL,50,'navigation',1,'2025-11-16 15:43:35','2025-11-16 15:54:16'),
(21,'purchaseorder_detail','Print PO','bi-printer','javascript','window.print()',NULL,NULL,NULL,10,'standard',1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(22,'purchaseorder_detail','Edit Order','bi-pencil','link','purchases/orders/{id}/edit',NULL,'procurement.edit',NULL,20,'standard',1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(23,'purchaseorder_detail','Delete Order','bi-trash','form_submit','deletePOForm',NULL,'procurement.delete',NULL,30,'standard',1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(24,'purchaseorder_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,40,NULL,1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(25,'purchaseorder_detail','Back','bi-arrow-left','link','purchases/orders',NULL,NULL,NULL,50,'navigation',1,'2025-11-16 15:43:35','2025-11-16 15:54:16'),
(26,'customer_detail','Edit Customer','bi-pencil','link','customers/{id}/edit',NULL,'crm.edit',NULL,10,'standard',1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(27,'customer_detail','Delete Customer','bi-trash','javascript','confirmDelete',NULL,'crm.delete',NULL,20,'standard',1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(28,'customer_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,30,NULL,1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(29,'customer_detail','Back','bi-arrow-left','link','customers',NULL,NULL,NULL,40,'navigation',1,'2025-11-16 15:43:35','2025-11-16 15:54:16'),
(30,'product_detail','Edit Product','bi-pencil','link','products/{id}/edit',NULL,'inventory.edit',NULL,10,'standard',1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(31,'product_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,20,NULL,1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(32,'product_detail','Back','bi-arrow-left','link','products',NULL,NULL,NULL,30,'navigation',1,'2025-11-16 15:43:35','2025-11-16 15:54:16'),
(33,'workorder_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(34,'workorder_detail','Print WO','bi bi-printer','javascript','window.print()',NULL,NULL,'btn-outline-theme',20,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(35,'workorder_detail','Start Work Order','fas fa-play','javascript','changeStatus(\'in_progress\')',NULL,'manufacturing.manage','btn-outline-success',30,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(36,'workorder_detail','Mark Complete','fas fa-check','javascript','changeStatus(\'completed\')',NULL,'manufacturing.manage','btn-outline-success',40,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(37,'workorder_detail','Cancel','fas fa-times','javascript','changeStatus(\'cancelled\')',NULL,'manufacturing.manage','btn-outline-danger',50,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(38,'workorder_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,55,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(39,'workorder_detail','Open in Shop Floor','fas fa-industry','link','manufacturing/shopfloor/workorder/{id}',NULL,'manufacturing.view','btn-outline-info',60,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(40,'workorder_detail','Back','fas fa-arrow-left','link','manufacturing/workorders',NULL,NULL,'btn-outline-secondary',100,'back',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(41,'bom_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(42,'bom_detail','Print BOM','bi bi-printer','javascript','window.print()',NULL,NULL,'btn-outline-theme',20,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(43,'bom_detail','Back','bi bi-arrow-left','link','manufacturing/boms',NULL,NULL,'btn-outline-theme',100,'back',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(44,'movement_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(45,'movement_detail','View Stock Levels','fas fa-boxes','link','inventory/stock-levels?product_id={product_id}',NULL,NULL,'btn-outline-primary',20,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(46,'movement_detail','Product Movement History','fas fa-history','link','inventory/movements?product_id={product_id}',NULL,NULL,'btn-outline-secondary',30,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(47,'movement_detail','Location Movements','fas fa-warehouse','link','inventory/movements?location_id={location_id}',NULL,NULL,'btn-outline-info',40,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(48,'movement_detail','Record New Movement','fas fa-plus','link','inventory/movements/create',NULL,'inventory.manage','btn-outline-success',50,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(49,'movement_detail','Back','fas fa-arrow-left','link','inventory/movements',NULL,NULL,'btn-cancel',100,'back',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(50,'employee_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(51,'employee_detail','Edit','bi bi-pencil','link','employees/{id}/edit',NULL,'hr.edit','btn-outline-warning',20,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(52,'employee_detail','Back','bi bi-arrow-left','link','employees',NULL,NULL,'btn-outline-secondary',100,'back',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(53,'opportunity_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(54,'opportunity_detail','Edit','bi bi-pencil','link','crm/opportunities/{id}/edit',NULL,'crm.edit','btn-outline-theme',20,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(55,'opportunity_detail','Send Email','bi bi-envelope','modal','emailModal',NULL,NULL,'btn-outline-primary',30,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(56,'opportunity_detail','Log Received Email','bi bi-envelope-check','modal','logEmailModal',NULL,NULL,'btn-outline-secondary',40,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(57,'opportunity_detail','Clone','bi bi-files','link','crm/opportunities/{id}/clone',NULL,'crm.create','btn-outline-secondary',50,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(58,'opportunity_detail','Back','bi bi-arrow-left','link','crm/opportunities',NULL,NULL,'btn-outline-secondary',100,'back',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(59,'ticket_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(60,'ticket_detail','Edit','bi bi-pencil','link','crm/support/{id}/edit',NULL,'crm.edit','btn-outline-theme',20,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(61,'ticket_detail','Back','bi bi-arrow-left','link','crm/support',NULL,NULL,'btn-outline-secondary',100,'back',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(62,'project_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(63,'project_detail','Edit','bi bi-pencil','link','projects/{id}/edit',NULL,'projects.edit','btn-save',20,'main',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(64,'project_detail','Delete','bi bi-trash','form_submit','deleteForm','POST','projects.delete','btn-outline-danger',30,'main',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(65,'project_detail','Back','bi bi-arrow-left','link','projects',NULL,NULL,'btn-outline-secondary',100,'back',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(66,'helpdesk_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(67,'helpdesk_detail','Edit','bi bi-pencil','link','helpdesk/tickets/{id}/edit',NULL,'helpdesk.edit','btn-outline-warning',20,'main',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(68,'helpdesk_detail','Change Status','bi bi-arrow-repeat','javascript','showStatusModal()',NULL,'helpdesk.manage','btn-outline-info',30,'main',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(69,'helpdesk_detail','Back','bi bi-arrow-left','link','helpdesk/tickets',NULL,NULL,'btn-outline-secondary',100,'back',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(70,'asset_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(71,'asset_detail','Edit','bi bi-pencil','link','accounting/assets/{id}/edit',NULL,'accounting.edit','btn-outline-warning',20,'main',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(72,'asset_detail','Depreciation Schedule','bi bi-calendar3','link','accounting/depreciation/{id}/schedule',NULL,'accounting.view','btn-outline-theme',30,'main',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(73,'asset_detail','Back','bi bi-arrow-left','link','accounting/assets',NULL,NULL,'btn-outline-secondary',100,'back',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(74,'deliverynote_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(75,'deliverynote_detail','Print','bi bi-printer','javascript','window.print()',NULL,NULL,'btn-outline-secondary',20,'main',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(76,'deliverynote_detail','Edit','bi bi-pencil','link','sales/delivery_notes/{id}/edit',NULL,'sales.edit','btn-outline-warning',30,'main',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(77,'deliverynote_detail','Delete','bi bi-trash','form_submit','deleteForm','POST','sales.delete','btn-outline-danger',40,'main',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(78,'deliverynote_detail','Back','bi bi-arrow-left','link','sales/delivery_notes',NULL,NULL,'btn-outline-secondary',100,'back',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(79,'creditnote_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(80,'creditnote_detail','Print Credit Note','bi bi-printer','javascript','window.print()',NULL,NULL,'btn-outline-secondary',20,'main',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(81,'creditnote_detail','Edit','bi bi-pencil','link','creditnotes/{id}/edit',NULL,'sales.edit','btn-outline-warning',30,'main',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(82,'creditnote_detail','Back','bi bi-arrow-left','link','creditnotes',NULL,NULL,'btn-outline-secondary',100,'back',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(83,'debitnote_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(84,'debitnote_detail','Edit','bi bi-pencil','link','purchases/debit-notes/{id}/edit',NULL,'purchases.edit','btn-primary',20,'main',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(85,'debitnote_detail','Delete','bi bi-trash','form_submit','deleteForm','POST','purchases.delete','btn-outline-danger',30,'main',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(86,'debitnote_detail','Back','bi bi-arrow-left','link','purchases/debit-notes',NULL,NULL,'btn-outline-secondary',100,'back',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(87,'purchasebill_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(88,'purchasebill_detail','Edit','bi bi-pencil','link','purchases/bills/{id}/edit',NULL,'purchases.edit','btn-primary',20,'main',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(89,'purchasebill_detail','Delete','bi bi-trash','form_submit','deleteForm','POST','purchases.delete','btn-outline-danger',30,'main',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(90,'purchasebill_detail','Back','bi bi-arrow-left','link','purchases/bills',NULL,NULL,'btn-outline-secondary',100,'back',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(91,'goodsreceipt_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(92,'goodsreceipt_detail','Print GRN','bi bi-printer','javascript','window.print()',NULL,NULL,'btn-outline-theme',20,'main',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(93,'goodsreceipt_detail','Delete Receipt','bi bi-trash','form_submit','deleteForm','POST','procurement.delete','btn-outline-danger',30,'main',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(94,'goodsreceipt_detail','Back','bi bi-arrow-left','link','purchases/receiving',NULL,NULL,'btn-default',100,'back',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(95,'lots_index','Add Lot/Serial','bi-plus-lg','link','inventory/lots/create',NULL,'inventory.create','btn-theme',10,'primary',1,'2025-11-16 17:56:06','2025-11-16 17:56:06'),
(96,'lots_index',NULL,NULL,'divider',NULL,NULL,NULL,NULL,20,NULL,1,'2025-11-16 17:56:06','2025-11-16 17:56:06'),
(97,'lots_index','Traceability','bi-diagram-3','link','inventory/lots/traceability',NULL,NULL,'btn-outline-theme',30,'utility',1,'2025-11-16 17:56:06','2025-11-16 17:56:06'),
(98,'lots_index','Expiration Dates','bi-calendar-x','link','inventory/lots/expiration',NULL,NULL,'btn-outline-warning',40,'utility',1,'2025-11-16 17:56:06','2025-11-16 17:56:06'),
(99,'lots_index',NULL,NULL,'divider',NULL,NULL,NULL,NULL,50,NULL,1,'2025-11-16 17:56:06','2025-11-16 17:56:06'),
(100,'lots_index','Back','bi-arrow-left','link','inventory',NULL,NULL,NULL,60,'navigation',1,'2025-11-16 17:56:06','2025-11-16 17:56:06'),
(101,'quotes_index','Create General Quote','bi bi-plus-lg','link','quotes/general/create',NULL,'sales.create','btn-create',10,'primary',1,'2025-11-16 18:06:13','2025-11-20 13:34:27'),
(102,'quotes_index','Create Battery Quote','bi-battery-charging','link','quotes/battery/create',NULL,'sales.create','btn-create',20,'primary',1,'2025-11-16 18:06:13','2025-11-16 18:06:13'),
(105,'quotes_index',NULL,NULL,'divider',NULL,NULL,NULL,NULL,50,NULL,0,'2025-11-16 18:06:13','2025-11-26 02:21:47'),
(106,'quotes_index','Back','bi-arrow-left','link','sales/dashboard',NULL,NULL,NULL,60,'navigation',0,'2025-11-16 18:06:13','2025-11-26 02:21:50'),
(107,'quotes_index','Export CSV','bi-download','javascript','exportQuotes',NULL,NULL,NULL,30,'utility',1,'2025-11-16 18:09:07','2025-11-16 18:09:07'),
(108,'expense_detail','Approve','bi-check-lg','form_submit','accounting/expenses/{id}/approve','POST',NULL,'btn-success',10,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(109,'expense_detail','Reject','bi-x-lg','modal','#rejectModal',NULL,NULL,'btn-danger',20,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(110,'expense_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,30,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(111,'expense_detail','Back','bi-arrow-left','link','accounting/expenses',NULL,NULL,NULL,40,'navigation',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(112,'return_detail','Print','bi-printer','javascript','window.print()',NULL,NULL,NULL,10,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(113,'return_detail','Edit','bi-pencil','link','sales/returns/{id}/edit',NULL,'sales.edit','btn-edit',20,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(114,'return_detail','Approve','bi-check-circle','form_submit','sales/returns/{id}/approve','POST','sales.approve','btn-success',30,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(115,'return_detail','Reject','bi-x-circle','form_submit','sales/returns/{id}/reject','POST','sales.approve','btn-danger',40,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(116,'return_detail','Complete','bi-check-circle-fill','form_submit','sales/returns/{id}/complete','POST','sales.edit','btn-success',50,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(117,'return_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,60,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(118,'return_detail','Back','bi-arrow-left','link','sales/returns',NULL,NULL,NULL,70,'navigation',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(119,'camera_audit_detail','Verify','bi-check-circle','form_submit','camera-audit/verify/{id}','POST','camera_audit.verify','btn-success',10,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(120,'camera_audit_detail','Delete','bi-trash','form_submit','camera-audit/delete/{id}','POST','camera_audit.delete','btn-delete',20,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(121,'camera_audit_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,30,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(122,'camera_audit_detail','Back','bi-arrow-left','link','camera-audit',NULL,NULL,NULL,40,'navigation',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(123,'pipedrive_import','Run All Phases','fas fa-play','javascript','importAll(false)',NULL,NULL,'btn-success',10,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(124,'pipedrive_import','Dry Run All','fas fa-check-circle','javascript','importAll(true)',NULL,NULL,NULL,20,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(125,'pipedrive_import',NULL,NULL,'divider',NULL,NULL,NULL,NULL,30,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(126,'pipedrive_import','Back','bi-arrow-left','link','pipedrive',NULL,NULL,NULL,40,'navigation',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(127,'application_detail','Edit','bi-pencil','link','hr/recruitment/applications/{id}/edit',NULL,'hr.edit',NULL,10,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:37:09'),
(128,'application_detail','Delete','bi-trash','javascript','deleteApplication({id})',NULL,'hr.delete',NULL,20,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:37:09'),
(129,'application_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,30,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(130,'application_detail','Back','bi-arrow-left','link','hr/recruitment/applications',NULL,NULL,NULL,40,'navigation',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(131,'interview_detail','Edit','bi-pencil','link','hr/recruitment/interviews/{id}/edit',NULL,NULL,NULL,10,NULL,1,'2025-11-16 18:46:12','2025-11-16 18:46:12'),
(132,'interview_detail','Delete','bi-trash','form_submit','hr/recruitment/interviews/{id}/delete',NULL,NULL,NULL,20,NULL,1,'2025-11-16 18:46:12','2025-11-16 18:46:12'),
(133,'interview_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,30,NULL,1,'2025-11-16 18:46:12','2025-11-16 18:46:12'),
(134,'interview_detail','View Application','bi-file-earmark','link','hr/recruitment/applications/{application_id}',NULL,NULL,NULL,40,NULL,1,'2025-11-16 18:46:12','2025-11-16 18:46:12'),
(135,'interview_detail','View Position','bi-briefcase','link','hr/recruitment/positions/{position_id}',NULL,NULL,NULL,50,NULL,1,'2025-11-16 18:46:12','2025-11-16 18:46:12'),
(136,'interview_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,60,NULL,1,'2025-11-16 18:46:12','2025-11-16 18:46:12'),
(137,'interview_detail','Back','bi-arrow-left','link','hr/recruitment/interviews',NULL,NULL,NULL,70,NULL,1,'2025-11-16 18:46:12','2025-11-16 18:46:12'),
(138,'assessment_detail','Edit','bi-pencil','link','hr/recruitment/assessments/{id}/edit',NULL,NULL,NULL,10,NULL,1,'2025-11-16 18:55:26','2025-11-16 18:55:26'),
(139,'assessment_detail','Delete','bi-trash','form_submit','hr/recruitment/assessments/{id}/delete',NULL,NULL,NULL,20,NULL,1,'2025-11-16 18:55:26','2025-11-16 18:55:26'),
(140,'assessment_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,30,NULL,1,'2025-11-16 18:55:26','2025-11-16 18:55:26'),
(141,'assessment_detail','View Application','bi-file-earmark','link','hr/recruitment/applications/{application_id}',NULL,NULL,NULL,40,NULL,1,'2025-11-16 18:55:26','2025-11-16 18:55:26'),
(142,'assessment_detail','View Position','bi-briefcase','link','hr/recruitment/positions/{position_id}',NULL,NULL,NULL,50,NULL,1,'2025-11-16 18:55:26','2025-11-16 18:55:26'),
(143,'assessment_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,60,NULL,1,'2025-11-16 18:55:26','2025-11-16 18:55:26'),
(144,'assessment_detail','Back','bi-arrow-left','link','hr/recruitment/assessments',NULL,NULL,NULL,70,NULL,1,'2025-11-16 18:55:26','2025-11-16 18:55:26'),
(145,'offer_detail','Edit','bi-pencil','link','hr/recruitment/offers/{id}/edit',NULL,NULL,NULL,10,NULL,1,'2025-11-16 19:00:39','2025-11-16 19:00:39'),
(146,'offer_detail','Print Offer Letter','bi-printer','link','hr/recruitment/offers/{id}/print',NULL,NULL,NULL,15,NULL,1,'2025-11-16 19:00:39','2025-11-16 19:00:39'),
(147,'offer_detail','Delete','bi-trash','form_submit','hr/recruitment/offers/{id}/delete',NULL,NULL,NULL,20,NULL,1,'2025-11-16 19:00:39','2025-11-16 19:00:39'),
(148,'offer_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,30,NULL,1,'2025-11-16 19:00:39','2025-11-16 19:00:39'),
(149,'offer_detail','View Application','bi-file-earmark','link','hr/recruitment/applications/{application_id}',NULL,NULL,NULL,40,NULL,1,'2025-11-16 19:00:39','2025-11-16 19:00:39'),
(150,'offer_detail','View Position','bi-briefcase','link','hr/recruitment/positions/{position_id}',NULL,NULL,NULL,50,NULL,1,'2025-11-16 19:00:39','2025-11-16 19:00:39'),
(151,'offer_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,60,NULL,1,'2025-11-16 19:00:39','2025-11-16 19:00:39'),
(152,'offer_detail','Back','bi-arrow-left','link','hr/recruitment/offers',NULL,NULL,NULL,70,NULL,1,'2025-11-16 19:00:39','2025-11-16 19:00:39'),
(153,'document_view','Download','bi-download','link','documents/download/{id}',NULL,NULL,'btn-create',10,'actions',1,'2025-11-16 19:09:22','2025-11-16 19:09:22'),
(154,'document_view','Delete','bi-trash','javascript','deleteDocument()',NULL,NULL,'btn-outline-danger',20,'actions',1,'2025-11-16 19:09:22','2025-11-16 19:09:22'),
(155,'document_view',NULL,NULL,'divider',NULL,NULL,NULL,NULL,30,'actions',1,'2025-11-16 19:09:22','2025-11-16 19:09:22'),
(156,'document_view','Back','bi-arrow-left','link','documents',NULL,NULL,NULL,40,'navigation',1,'2025-11-16 19:09:22','2025-11-16 19:09:22'),
(157,'crm_document_detail','Download','bi-download','link','crm/documents/{id}/download',NULL,NULL,'btn-create',10,'actions',1,'2025-11-16 19:09:22','2025-11-16 19:09:22'),
(158,'crm_document_detail','Edit','bi-pencil','link','crm/documents/{id}/edit',NULL,NULL,'btn-outline-theme',20,'actions',1,'2025-11-16 19:09:22','2025-11-16 19:09:22'),
(159,'crm_document_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,30,'actions',1,'2025-11-16 19:09:22','2025-11-16 19:09:22'),
(160,'crm_document_detail','Back','bi-arrow-left','link','crm/documents',NULL,NULL,NULL,40,'navigation',1,'2025-11-16 19:09:22','2025-11-16 19:09:22'),
(161,'recurring_template_detail','Execute Now','bi-play-fill','javascript','executeTemplate()',NULL,'recurring_templates.execute','btn-success',10,'actions',1,'2025-11-16 19:09:22','2025-11-16 19:09:22'),
(162,'recurring_template_detail','Edit','bi-pencil','link','recurring/{id}/edit',NULL,'recurring_templates.edit','btn-primary',20,'actions',1,'2025-11-16 19:09:22','2025-11-16 19:09:22'),
(163,'recurring_template_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,30,'actions',1,'2025-11-16 19:09:22','2025-11-16 19:09:22'),
(164,'recurring_template_detail','Back','bi-arrow-left','link','recurring',NULL,NULL,NULL,40,'navigation',1,'2025-11-16 19:09:22','2025-11-16 19:09:22'),
(165,'project_board','List View','bi-list-ul','link','projects/{id}/list',NULL,NULL,NULL,10,'actions',1,'2025-11-16 20:29:08','2025-11-16 20:29:08'),
(166,'project_board','Financials','bi-cash-stack','link','projects/{id}/financials',NULL,NULL,NULL,20,'actions',1,'2025-11-16 20:29:08','2025-11-16 20:29:08'),
(167,'project_board','Edit','bi-pencil','link','projects/{id}/edit',NULL,NULL,NULL,30,'actions',1,'2025-11-16 20:29:08','2025-11-16 20:29:08'),
(168,'project_board','Delete','bi-trash','javascript','deleteProject({id})',NULL,NULL,'btn-outline-danger',40,'actions',1,'2025-11-16 20:29:08','2025-11-16 20:29:08'),
(169,'project_board',NULL,NULL,'divider',NULL,NULL,NULL,NULL,50,'actions',1,'2025-11-16 20:29:08','2025-11-16 20:29:08'),
(170,'project_board','Back','bi-arrow-left','link','projects',NULL,NULL,NULL,60,'navigation',1,'2025-11-16 20:29:08','2025-11-16 20:31:37'),
(171,'project_list','Board View','bi-kanban','link','projects/{id}',NULL,NULL,NULL,10,'actions',1,'2025-11-16 20:29:08','2025-11-16 20:29:08'),
(172,'project_list','Financials','bi-cash-stack','link','projects/{id}/financials',NULL,NULL,NULL,20,'actions',1,'2025-11-16 20:29:08','2025-11-16 20:29:08'),
(173,'project_list','Export CSV','bi-file-earmark-spreadsheet','link','projects/{id}/export',NULL,NULL,NULL,30,'actions',1,'2025-11-16 20:29:08','2025-11-16 20:29:08'),
(174,'project_list','Edit','bi-pencil','link','projects/{id}/edit',NULL,NULL,NULL,40,'actions',1,'2025-11-16 20:29:08','2025-11-16 20:29:08'),
(175,'project_list',NULL,NULL,'divider',NULL,NULL,NULL,NULL,50,'actions',1,'2025-11-16 20:29:08','2025-11-16 20:29:08'),
(176,'project_list','Back','bi-arrow-left','link','projects',NULL,NULL,NULL,60,'navigation',1,'2025-11-16 20:29:08','2025-11-16 20:31:37'),
(177,'nda_detail','Preview','bi-eye','link','ndas/{id}/preview',NULL,'ndas.view',NULL,10,'view',1,'2025-11-16 22:55:50','2025-11-16 22:55:50'),
(178,'nda_detail','Edit','bi-pencil','link','ndas/{id}/edit',NULL,'ndas.edit',NULL,20,'edit',1,'2025-11-16 22:55:50','2025-11-16 22:55:50'),
(179,'nda_detail','Send for Signature','bi-send','modal','sendEmailModal',NULL,'ndas.send',NULL,30,'send',1,'2025-11-16 22:55:50','2025-11-16 22:55:50'),
(180,'nda_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,35,NULL,1,'2025-11-16 22:55:50','2025-11-16 22:55:50'),
(181,'nda_detail','Delete','bi-trash','form_submit','deleteForm',NULL,'ndas.delete',NULL,40,'delete',1,'2025-11-16 22:55:50','2025-11-16 22:55:50'),
(182,'nda_detail','Counter-Sign','bi-pen','link','ndas/{id}/countersign',NULL,'ndas.countersign','btn-success',15,NULL,1,'2025-11-16 23:44:17','2025-11-16 23:47:47'),
(183,'nda_detail','Email NDA','bi-envelope','modal','emailNDAModal',NULL,'ndas.view','btn-primary',20,NULL,1,'2025-11-16 23:52:27','2025-11-16 23:52:27'),
(184,'journal_entries_index','Import CSV','bi bi-file-earmark-arrow-up','link','accounting/journal/import',NULL,'accounting.create',NULL,10,'actions',1,'2025-11-17 17:29:12','2025-11-17 17:29:12'),
(185,'journal_entries_index','New Entry','bi bi-plus-lg','link','accounting/journal/create',NULL,'accounting.create',NULL,20,'actions',1,'2025-11-17 17:29:12','2025-11-20 13:34:27'),
(186,'journal_entries_index','Back','bi bi-arrow-left','link','accounting/dashboard',NULL,NULL,NULL,30,'navigation',1,'2025-11-17 17:29:12','2025-11-17 17:29:12'),
(231,'product_forecast_index','Command Center','fas fa-tachometer-alt','link','product-forecast/command-center',NULL,NULL,NULL,10,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(232,'product_forecast_index','Generate','fas fa-calculator','link','product-forecast/generate',NULL,NULL,NULL,20,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(233,'product_forecast_index','Pro Forma','fas fa-chart-line','link','product-forecast/proforma',NULL,NULL,NULL,30,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(234,'product_forecast_index','Back','bi bi-arrow-left','link','assumptions',NULL,NULL,NULL,40,'navigation',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(235,'product_forecast_generate','Command Center','fas fa-tachometer-alt','link','product-forecast/command-center',NULL,NULL,NULL,10,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(236,'product_forecast_generate','Configure','fas fa-cog','link','product-forecast',NULL,NULL,NULL,20,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(237,'product_forecast_generate','Pro Forma','fas fa-chart-line','link','product-forecast/proforma',NULL,NULL,NULL,30,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(238,'product_forecast_generate','Back','bi bi-arrow-left','link','product-forecast',NULL,NULL,NULL,40,'navigation',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(239,'product_forecast_proforma','Configure','fas fa-cog','link','product-forecast',NULL,NULL,NULL,10,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(240,'product_forecast_proforma','Variance','fas fa-chart-bar','link','product-forecast/variance?set_id={set_id}&start_date={start_date}&end_date={end_date}',NULL,NULL,NULL,20,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(241,'product_forecast_proforma','Export Excel','fas fa-file-excel','link','product-forecast/export-excel?set_id={set_id}&start_date={start_date}&end_date={end_date}&period_type={period_type}',NULL,NULL,NULL,30,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(242,'product_forecast_proforma','Sensitivity','fas fa-sliders-h','link','product-forecast/sensitivity?set_id={set_id}',NULL,NULL,NULL,40,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(243,'product_forecast_proforma','Compare','fas fa-exchange-alt','link','product-forecast/compare',NULL,NULL,NULL,50,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(244,'product_forecast_proforma','Back','bi bi-arrow-left','link','assumptions',NULL,NULL,NULL,60,'navigation',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(245,'product_forecast_sensitivity','Command Center','fas fa-tachometer-alt','link','product-forecast/command-center?set_id={set_id}',NULL,NULL,NULL,10,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(246,'product_forecast_sensitivity','Pro Forma','fas fa-chart-line','link','product-forecast/proforma?set_id={set_id}',NULL,NULL,NULL,20,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(247,'product_forecast_sensitivity','Variance','fas fa-chart-bar','link','product-forecast/variance?set_id={set_id}',NULL,NULL,NULL,30,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(248,'product_forecast_sensitivity','Back','bi bi-arrow-left','link','assumptions',NULL,NULL,NULL,40,'navigation',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(249,'product_forecast_variance','Command Center','fas fa-tachometer-alt','link','product-forecast/command-center?set_id={set_id}',NULL,NULL,NULL,10,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(250,'product_forecast_variance','Pro Forma','fas fa-chart-line','link','product-forecast/proforma?set_id={set_id}',NULL,NULL,NULL,20,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(251,'product_forecast_variance','Sensitivity','fas fa-sliders-h','link','product-forecast/sensitivity?set_id={set_id}',NULL,NULL,NULL,30,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(252,'product_forecast_variance','Back','bi bi-arrow-left','link','assumptions',NULL,NULL,NULL,40,'navigation',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(253,'mrp_index','Run MRP Calculation','bi bi-calculator','form_submit','mrpCalculateForm',NULL,NULL,NULL,1,'actions',1,'2025-11-20 21:08:46','2025-11-20 21:09:42'),
(254,'mrp_index','Safety Stock','bi bi-building','link','manufacturing/mrp/safetyStock',NULL,NULL,NULL,2,'actions',1,'2025-11-20 21:08:46','2025-11-20 21:08:46'),
(255,'mrp_index','Requisitions','bi bi-receipt','link','manufacturing/mrp/requisitions',NULL,NULL,NULL,3,'actions',1,'2025-11-20 21:08:46','2025-11-20 21:08:46'),
(256,'mrp_index','Back','bi bi-arrow-left','link','manufacturing/dashboard',NULL,NULL,NULL,4,'navigation',0,'2025-11-20 21:08:46','2025-11-26 02:11:45'),
(257,'shopfloor_index','Refresh','bi bi-arrow-repeat','javascript','refreshDashboard()',NULL,NULL,NULL,1,'actions',1,'2025-11-20 21:19:25','2025-11-20 21:19:25'),
(258,'shopfloor_index','All Work Orders','bi bi-clipboard-check','link','manufacturing/workorders',NULL,NULL,NULL,2,'actions',1,'2025-11-20 21:19:25','2025-11-20 21:19:25'),
(259,'shopfloor_index','Back','bi bi-arrow-left','link','manufacturing',NULL,NULL,NULL,3,'navigation',0,'2025-11-20 21:19:25','2025-11-26 02:20:11'),
(260,'crm_document_detail','Delete','bi-trash','form_submit','deleteDocumentForm','POST',NULL,'btn-delete',25,'actions',1,'2025-11-21 03:32:23','2025-11-21 03:33:16'),
(261,'crm_document_detail','Preview','bi-file-earmark-text','modal','documentPreviewModal',NULL,NULL,'btn-outline-theme',5,'actions',1,'2025-11-21 03:46:56','2025-11-21 03:46:56'),
(262,'agreements_index','Create Agreement','fas fa-plus','link','/agreements/create',NULL,NULL,NULL,1,'actions',1,'2025-11-25 23:30:52','2025-11-25 23:30:52'),
(263,'agreements_index','Export CSV','fas fa-download','link','/agreements/export',NULL,NULL,NULL,2,'actions',1,'2025-11-25 23:30:52','2025-11-25 23:30:52'),
(264,'agreements_index','View Trash','fas fa-trash','link','/agreements/trash',NULL,NULL,NULL,3,'actions',1,'2025-11-25 23:30:52','2025-11-25 23:30:52'),
(265,'agreements_index','Back','bi bi-arrow-left','link','/dashboard','GET','','btn-outline-theme',10,'navigation',0,'2025-11-25 23:30:52','2025-11-26 02:10:21'),
(266,'agreements_show','Edit','fas fa-edit','link','/agreements/{id}/edit',NULL,NULL,NULL,1,'actions',1,'2025-11-25 23:30:52','2025-11-25 23:30:52'),
(267,'agreements_show','Print','fas fa-print','link','/agreements/{id}/print',NULL,NULL,NULL,2,'actions',1,'2025-11-25 23:30:52','2025-11-25 23:30:52'),
(268,'agreements_show','Send for Signature','fas fa-paper-plane','modal','#sendSignatureModal',NULL,NULL,NULL,3,'actions',1,'2025-11-25 23:30:52','2025-11-25 23:30:52'),
(269,'agreements_show','Convert to Order','fas fa-exchange-alt','form_submit','/agreements/{id}/convert-order',NULL,NULL,NULL,4,'actions',1,'2025-11-25 23:30:52','2025-11-25 23:30:52'),
(270,'agreements_show','Delete','fas fa-trash','form_submit','/agreements/{id}/delete',NULL,NULL,NULL,5,'actions',1,'2025-11-25 23:30:52','2025-11-25 23:30:52'),
(271,'agreements_show','Back','bi bi-arrow-left','link','/agreements',NULL,NULL,NULL,10,'navigation',1,'2025-11-25 23:30:52','2025-11-25 23:30:52'),
(272,'diagrams_index','New Diagram','fas fa-plus','link','/diagrams/create',NULL,NULL,NULL,1,'actions',1,'2025-12-02 03:48:20','2025-12-02 03:48:20'),
(273,'diagrams_index','Templates','fas fa-clone','link','/diagrams/templates',NULL,NULL,NULL,2,'actions',1,'2025-12-02 03:48:20','2025-12-02 03:48:20'),
(274,'diagrams_index','Import','fas fa-file-import','javascript','importDiagram()',NULL,NULL,NULL,3,'actions',1,'2025-12-02 03:48:20','2025-12-02 03:48:20'),
(276,'diagrams_editor','Export PNG','fas fa-image','javascript','exportPNG()',NULL,NULL,NULL,2,'actions',1,'2025-12-02 03:48:20','2025-12-02 03:48:20'),
(277,'diagrams_editor','Export SVG','fas fa-file-code','javascript','exportSVG()',NULL,NULL,NULL,3,'actions',1,'2025-12-02 03:48:20','2025-12-02 03:48:20'),
(278,'diagrams_editor','Share','fas fa-share-alt','javascript','shareDiagram()',NULL,NULL,NULL,4,'actions',1,'2025-12-02 03:48:20','2025-12-02 03:48:20'),
(279,'diagrams_editor','Save as Template','fas fa-clone','javascript','saveAsTemplate()',NULL,NULL,NULL,5,'actions',1,'2025-12-02 03:48:20','2025-12-02 03:48:20'),
(280,'diagrams_editor','Back','bi bi-arrow-left me-1','link','/diagrams',NULL,NULL,NULL,10,'navigation',1,'2025-12-02 03:48:20','2025-12-02 03:48:20'),
(299,'product_detail','Delete Product','bi bi-trash','form_submit','products/{id}/delete',NULL,'inventory.delete',NULL,15,'actions',1,'2025-12-04 22:30:06','2025-12-04 22:30:06');
/*!40000 ALTER TABLE `page_actions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `password_reset_requests`
--

DROP TABLE IF EXISTS `password_reset_requests`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `password_reset_requests` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned DEFAULT NULL,
  `email` varchar(255) NOT NULL,
  `token_hash` varchar(255) NOT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `requested_at` timestamp NULL DEFAULT current_timestamp(),
  `expires_at` datetime NOT NULL,
  `used_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_user_id` (`user_id`),
  KEY `idx_email` (`email`),
  KEY `idx_expires` (`expires_at`),
  CONSTRAINT `password_reset_requests_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `password_reset_requests`
--

LOCK TABLES `password_reset_requests` WRITE;
/*!40000 ALTER TABLE `password_reset_requests` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `password_reset_requests` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `payment_batches`
--

DROP TABLE IF EXISTS `payment_batches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `payment_batches` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `batch_number` varchar(50) NOT NULL,
  `batch_date` date NOT NULL,
  `batch_name` varchar(200) DEFAULT NULL,
  `payment_method` enum('check','ach','wire') NOT NULL,
  `bank_account_id` int(10) unsigned DEFAULT NULL,
  `total_amount` decimal(15,2) DEFAULT 0.00,
  `payment_count` int(11) DEFAULT 0,
  `status` enum('draft','processed','cancelled') DEFAULT 'draft',
  `processed_at` timestamp NULL DEFAULT NULL,
  `processed_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `created_by` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `batch_number` (`batch_number`),
  KEY `bank_account_id` (`bank_account_id`),
  KEY `created_by` (`created_by`),
  KEY `processed_by` (`processed_by`),
  KEY `idx_batch_date` (`batch_date`),
  KEY `idx_status` (`status`),
  CONSTRAINT `payment_batches_ibfk_1` FOREIGN KEY (`bank_account_id`) REFERENCES `bank_accounts` (`id`),
  CONSTRAINT `payment_batches_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `payment_batches_ibfk_3` FOREIGN KEY (`processed_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_batches`
--

LOCK TABLES `payment_batches` WRITE;
/*!40000 ALTER TABLE `payment_batches` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `payment_batches` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `payment_terms`
--

DROP TABLE IF EXISTS `payment_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `payment_terms` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `term_name` varchar(50) NOT NULL COMMENT 'Display name (e.g., Net 30)',
  `term_code` varchar(20) NOT NULL COMMENT 'Short code (e.g., NET30)',
  `net_days` int(11) NOT NULL DEFAULT 30 COMMENT 'Payment due in days',
  `discount_percentage` decimal(5,2) DEFAULT 0.00 COMMENT 'Early payment discount %',
  `discount_days` int(11) DEFAULT 0 COMMENT 'Days to qualify for discount',
  `late_fee_percentage` decimal(5,2) DEFAULT 0.00 COMMENT 'Late payment fee %',
  `late_fee_grace_days` int(11) DEFAULT 0 COMMENT 'Grace period before late fees',
  `is_default` tinyint(1) DEFAULT 0 COMMENT 'Default payment term',
  `is_active` tinyint(1) DEFAULT 1,
  `description` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `term_code` (`term_code`),
  UNIQUE KEY `unique_term_code` (`term_code`),
  KEY `idx_active` (`is_active`),
  KEY `idx_default` (`is_default`),
  KEY `idx_payment_net_days` (`net_days`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Standard payment terms for invoices and bills';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_terms`
--

LOCK TABLES `payment_terms` WRITE;
/*!40000 ALTER TABLE `payment_terms` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `payment_terms` VALUES
(1,'Due on Receipt','DUE_ON_RECEIPT',0,0.00,0,0.00,0,0,1,'Payment due immediately upon receipt','2025-11-01 12:32:09','2025-11-01 12:32:09'),
(2,'Net 15','NET15',15,0.00,0,0.00,0,0,1,'Payment due within 15 days','2025-11-01 12:32:09','2025-11-01 12:32:09'),
(3,'Net 30','NET30',30,0.00,0,0.00,0,1,1,'Payment due within 30 days','2025-11-01 12:32:09','2025-11-01 12:32:09'),
(4,'Net 45','NET45',45,0.00,0,0.00,0,0,1,'Payment due within 45 days','2025-11-01 12:32:09','2025-11-01 12:32:09'),
(5,'Net 60','NET60',60,0.00,0,0.00,0,0,1,'Payment due within 60 days','2025-11-01 12:32:09','2025-11-01 12:32:09'),
(6,'Net 90','NET90',90,0.00,0,0.00,0,0,1,'Payment due within 90 days','2025-11-01 12:32:09','2025-11-01 12:32:09'),
(7,'2/10 Net 30','2_10_NET30',30,2.00,10,0.00,0,0,1,'2% discount if paid within 10 days, net 30','2025-11-01 12:32:09','2025-11-01 12:32:09');
/*!40000 ALTER TABLE `payment_terms` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `payments`
--

DROP TABLE IF EXISTS `payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `payments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `payment_number` varchar(50) NOT NULL,
  `invoice_id` int(10) unsigned NOT NULL,
  `customer_id` int(10) unsigned NOT NULL,
  `payment_date` date NOT NULL,
  `amount` decimal(15,2) NOT NULL,
  `payment_method` enum('cash','check','credit_card','bank_transfer','other') NOT NULL,
  `reference` varchar(100) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `payment_number` (`payment_number`),
  KEY `invoice_id` (`invoice_id`),
  KEY `customer_id` (`customer_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_payments_deleted_at` (`deleted_at`),
  CONSTRAINT `payments_ibfk_1` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`),
  CONSTRAINT `payments_ibfk_2` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`),
  CONSTRAINT `payments_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payments`
--

LOCK TABLES `payments` WRITE;
/*!40000 ALTER TABLE `payments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `payments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `payroll`
--

DROP TABLE IF EXISTS `payroll`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `payroll` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `employee_id` int(10) unsigned NOT NULL,
  `pay_period_start` date NOT NULL,
  `pay_period_end` date NOT NULL,
  `pay_date` date NOT NULL,
  `basic_salary` decimal(15,2) NOT NULL,
  `allowances` decimal(15,2) DEFAULT 0.00,
  `deductions` decimal(15,2) DEFAULT 0.00,
  `net_pay` decimal(15,2) NOT NULL,
  `status` enum('draft','processed','paid') DEFAULT 'draft',
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `employee_id` (`employee_id`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `payroll_ibfk_1` FOREIGN KEY (`employee_id`) REFERENCES `employees` (`id`) ON DELETE CASCADE,
  CONSTRAINT `payroll_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payroll`
--

LOCK TABLES `payroll` WRITE;
/*!40000 ALTER TABLE `payroll` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `payroll` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `performance_reviews`
--

DROP TABLE IF EXISTS `performance_reviews`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `performance_reviews` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `employee_id` int(10) unsigned NOT NULL,
  `review_period_start` date NOT NULL,
  `review_period_end` date NOT NULL,
  `review_date` date DEFAULT NULL,
  `reviewer_id` int(10) unsigned DEFAULT NULL,
  `review_type` enum('probation','quarterly','annual','project','other') DEFAULT 'annual',
  `overall_rating` decimal(3,2) DEFAULT NULL COMMENT 'Rating out of 5.00',
  `performance_rating` decimal(3,2) DEFAULT NULL,
  `attendance_rating` decimal(3,2) DEFAULT NULL,
  `teamwork_rating` decimal(3,2) DEFAULT NULL,
  `communication_rating` decimal(3,2) DEFAULT NULL,
  `strengths` text DEFAULT NULL,
  `areas_for_improvement` text DEFAULT NULL,
  `goals` text DEFAULT NULL,
  `achievements` text DEFAULT NULL,
  `comments` text DEFAULT NULL,
  `employee_comments` text DEFAULT NULL,
  `status` enum('scheduled','in-progress','completed','acknowledged') DEFAULT 'scheduled',
  `acknowledged_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_employee` (`employee_id`),
  KEY `idx_review_date` (`review_date`),
  KEY `idx_status` (`status`),
  CONSTRAINT `performance_reviews_ibfk_1` FOREIGN KEY (`employee_id`) REFERENCES `employees` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `performance_reviews`
--

LOCK TABLES `performance_reviews` WRITE;
/*!40000 ALTER TABLE `performance_reviews` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `performance_reviews` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `permission_groups`
--

DROP TABLE IF EXISTS `permission_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `permission_groups` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL COMMENT 'Display name of the group',
  `parent_id` int(10) unsigned DEFAULT NULL COMMENT 'Parent group for hierarchy',
  `display_order` int(11) DEFAULT 0 COMMENT 'Order within parent group',
  `icon` varchar(50) DEFAULT NULL COMMENT 'Icon class (e.g., bi-grid-3x3-gap)',
  `color` varchar(20) DEFAULT NULL COMMENT 'Color for visual distinction (e.g., success, danger, primary)',
  `description` text DEFAULT NULL COMMENT 'Description of this permission group',
  `is_system` tinyint(1) DEFAULT 0 COMMENT 'System groups cannot be deleted',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_parent` (`parent_id`),
  KEY `idx_order` (`parent_id`,`display_order`),
  CONSTRAINT `permission_groups_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `permission_groups` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Hierarchical grouping of permissions for better organization';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `permission_groups`
--

LOCK TABLES `permission_groups` WRITE;
/*!40000 ALTER TABLE `permission_groups` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `permission_groups` VALUES
(1,'App Grid (Quick Access)',NULL,0,'bi-grid-3x3-gap-fill','success','Essential quick-access items for all users',1,'2025-11-24 18:37:49','2025-11-28 23:18:59'),
(2,'Departments',NULL,1,'bi-building','primary','Core business department modules',1,'2025-11-24 18:37:49','2025-11-28 23:18:48'),
(3,'Tools',NULL,3,'bi-tools','info','Productivity and utility tools',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(4,'Administration',NULL,4,'bi-shield-lock-fill','danger','System administration and settings',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(5,'Accounting',2,1,'bi-calculator',NULL,'Financial accounting, invoicing, and reporting',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(6,'CRM',2,2,'bi-people',NULL,'Customer relationship management and sales',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(7,'HR',2,3,'bi-person-badge',NULL,'Human resources and employee management',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(8,'Inventory',2,4,'bi-box-seam',NULL,'Inventory and stock management',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(9,'Manufacturing',2,5,'bi-gear-wide-connected',NULL,'Manufacturing and production',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(10,'Purchases',2,6,'bi-cart',NULL,'Procurement and supplier management',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(11,'Sales',2,7,'bi-graph-up',NULL,'Sales orders and fulfillment',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(12,'Documents',3,1,'bi-file-earmark-text',NULL,'Document management and storage',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(13,'Help Desk',3,2,'bi-headset',NULL,'Support ticketing system',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(14,'Projects',3,3,'bi-kanban',NULL,'Project management',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(15,'Reports',3,4,'bi-bar-chart',NULL,'Reporting and analytics',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(16,'Settings & System',4,1,'bi-gear',NULL,'System configuration and settings',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(17,'Security',4,2,'bi-shield-check',NULL,'User, role, and permission management',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(18,'Announcements',4,3,'bi-megaphone',NULL,'System announcements',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(19,'Forecasting',NULL,2,'','','Financial forecasting and planning',0,'2025-11-28 22:58:33','2025-11-28 23:18:38');
/*!40000 ALTER TABLE `permission_groups` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `permissions`
--

DROP TABLE IF EXISTS `permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `permissions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `module` varchar(50) NOT NULL,
  `group_id` int(10) unsigned DEFAULT NULL COMMENT 'Permission group this belongs to',
  `description` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`),
  KEY `idx_group` (`group_id`),
  CONSTRAINT `permissions_ibfk_1` FOREIGN KEY (`group_id`) REFERENCES `permission_groups` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=1489 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `permissions`
--

LOCK TABLES `permissions` WRITE;
/*!40000 ALTER TABLE `permissions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `permissions` VALUES
(1,'users.view','users',4,'View users','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(2,'users.create','users',4,'Create users','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(3,'users.edit','users',4,'Edit users','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(4,'users.delete','users',4,'Delete users','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(5,'crm.view','crm',6,'View CRM (customers, contacts, opportunities)','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(6,'crm.create','crm',6,'Create CRM records (customers, contacts, opportunities)','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(7,'crm.edit','crm',6,'Edit CRM records (customers, contacts, opportunities)','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(8,'crm.delete','crm',6,'Delete CRM records (customers, contacts, opportunities)','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(9,'inventory.view','inventory',8,'View inventory','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(10,'inventory.create','inventory',8,'Create products','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(11,'inventory.edit','inventory',8,'Edit products','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(12,'inventory.delete','inventory',8,'Delete products','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(13,'inventory.adjust','inventory',8,'Adjust inventory levels','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(14,'sales.view','sales',11,'View sales orders','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(15,'sales.create','sales',11,'Create sales orders','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(16,'sales.edit','sales',11,'Edit sales orders','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(17,'sales.delete','sales',11,'Delete sales orders','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(18,'invoices.view','sales',5,'View invoices','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(19,'invoices.create','sales',5,'Create invoices','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(20,'invoices.edit','sales',5,'Edit invoices','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(21,'invoices.delete','sales',5,'Delete invoices','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(22,'payments.view','sales',5,'View payments','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(23,'payments.create','sales',5,'Create payments','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(24,'purchases.view','purchases',10,'View purchase orders','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(25,'purchases.create','purchases',10,'Create purchase orders','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(26,'purchases.edit','purchases',10,'Edit purchase orders','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(27,'purchases.delete','purchases',10,'Delete purchase orders','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(28,'suppliers.view','purchases',10,'View suppliers','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(29,'suppliers.create','purchases',10,'Create suppliers','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(30,'suppliers.edit','purchases',10,'Edit suppliers','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(31,'suppliers.delete','purchases',10,'Delete suppliers','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(32,'accounting.view','accounting',5,'View accounting records','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(33,'accounting.create','accounting',5,'Create journal entries','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(34,'accounting.edit','accounting',5,'Edit journal entries','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(35,'accounting.post','accounting',5,'Post journal entries','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(36,'hr.view','hr',7,'View employees','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(37,'hr.create','hr',7,'Create employees','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(38,'hr.edit','hr',7,'Edit employees','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(39,'hr.delete','hr',7,'Delete employees','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(40,'payroll.view','hr',7,'View payroll','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(41,'payroll.create','hr',7,'Create payroll','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(42,'payroll.process','hr',7,'Process payroll','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(43,'manufacturing.view','manufacturing',9,'View BOMs and work orders','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(44,'manufacturing.create','manufacturing',9,'Create BOMs and work orders','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(45,'manufacturing.edit','manufacturing',9,'Edit BOMs and work orders','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(46,'manufacturing.delete','manufacturing',9,'Delete BOMs and work orders','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(47,'reports.view','reports',15,'View reports','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(48,'reports.export','reports',15,'Export reports','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(49,'settings.view','settings',16,'View settings','2025-11-01 15:39:52','2025-11-28 22:59:52'),
(50,'settings.edit','settings',16,'Edit settings','2025-11-01 15:39:52','2025-11-28 22:59:52'),
(51,'purchasing.view','purchases',10,'View purchasing','2025-11-01 16:40:54','2025-11-28 23:03:01'),
(52,'purchasing.create','purchases',10,'Create purchasing','2025-11-01 16:40:54','2025-11-28 23:03:01'),
(53,'purchasing.edit','purchases',10,'Edit purchasing','2025-11-01 16:40:54','2025-11-28 23:03:01'),
(54,'purchasing.delete','purchases',10,'Delete purchasing','2025-11-01 16:40:54','2025-11-28 23:03:01'),
(55,'roles.view','roles',4,'View roles','2025-11-01 16:40:54','2025-11-28 22:59:52'),
(56,'roles.create','roles',4,'Create roles','2025-11-01 16:40:54','2025-11-28 22:59:52'),
(57,'roles.edit','roles',4,'Edit roles','2025-11-01 16:40:54','2025-11-28 22:59:52'),
(58,'roles.delete','roles',4,'Delete roles','2025-11-01 16:40:54','2025-11-28 22:59:52'),
(69,'accounting.delete','accounting',5,'Delete accounting entries','2025-11-03 14:26:17','2025-11-28 22:59:52'),
(70,'accounting.approve','accounting',5,'Approve accounting transactions','2025-11-03 14:26:17','2025-11-28 22:59:52'),
(71,'inventory.manage','inventory',8,'Manage inventory','2025-11-03 14:26:17','2025-11-28 22:59:52'),
(72,'manufacturing.approve','manufacturing',9,'Approve manufacturing operations','2025-11-03 14:26:17','2025-11-28 22:59:52'),
(73,'procurement.view','procurement',10,'View procurement','2025-11-03 14:26:17','2025-11-28 22:59:52'),
(74,'procurement.create','procurement',10,'Create procurement','2025-11-03 14:26:17','2025-11-28 22:59:52'),
(75,'procurement.edit','procurement',10,'Edit procurement','2025-11-03 14:26:17','2025-11-28 22:59:52'),
(76,'procurement.delete','procurement',10,'Delete procurement','2025-11-03 14:26:17','2025-11-28 22:59:52'),
(77,'admin','admin',4,'Full system access','2025-11-03 14:26:17','2025-11-28 23:03:13'),
(78,'dashboard.view','',3,'View dashboard','2025-11-11 11:15:46','2025-11-28 23:02:18'),
(79,'projects.view','',14,'View projects','2025-11-11 11:15:46','2025-11-28 22:59:52'),
(80,'helpdesk.view','',3,'View help desk module','2025-11-11 11:15:46','2025-11-28 22:59:52'),
(81,'documents.view','',12,'View documents','2025-11-11 11:15:46','2025-11-28 22:59:52'),
(82,'messaging.view','',3,'View messaging module','2025-11-11 11:15:46','2025-11-28 23:02:18'),
(83,'calendar.view','',1,'View calendar','2025-11-11 11:15:46','2025-11-28 22:59:52'),
(84,'marketing.view','',4,'View marketing module','2025-11-11 11:15:46','2025-11-28 23:03:01'),
(85,'analytics.view','',15,'View analytics','2025-11-11 11:15:46','2025-11-28 22:59:52'),
(87,'accounts.view','accounting',5,'View chart of accounts','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(88,'accounts.create','accounting',5,'Create accounts','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(89,'accounts.edit','accounting',5,'Edit accounts','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(90,'accounts.delete','accounting',5,'Delete accounts','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(91,'journal.view','accounting',5,'View journal entries','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(92,'journal.create','accounting',5,'Create journal entries','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(93,'journal.edit','accounting',5,'Edit journal entries','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(94,'journal.delete','accounting',5,'Delete journal entries','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(95,'journal.post','accounting',5,'Post journal entries','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(96,'bank_accounts.view','accounting',5,'View bank accounts','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(97,'bank_accounts.create','accounting',5,'Create bank accounts','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(98,'bank_accounts.edit','accounting',5,'Edit bank accounts','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(99,'reconciliation.view','accounting',5,'View bank reconciliation','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(100,'reconciliation.create','accounting',5,'Perform bank reconciliation','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(101,'fixed_assets.view','accounting',5,'View fixed assets','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(102,'fixed_assets.create','accounting',5,'Create fixed assets','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(103,'fixed_assets.edit','accounting',5,'Edit fixed assets','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(104,'fixed_assets.delete','accounting',5,'Delete fixed assets','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(105,'budgets.view','accounting',5,'View budgets','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(106,'budgets.create','accounting',5,'Create budgets','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(107,'budgets.edit','accounting',5,'Edit budgets','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(108,'period_closing.view','accounting',5,'View period closing','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(109,'period_closing.execute','accounting',5,'Execute period closing','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(110,'tax_filing.view','accounting',5,'View tax filing','2025-11-11 12:32:35','2025-11-28 23:02:18'),
(111,'tax_filing.create','accounting',5,'Create tax filings','2025-11-11 12:32:35','2025-11-28 23:02:18'),
(112,'proforma.view','accounting',5,'View pro forma statements','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(113,'proforma.create','accounting',5,'Create pro forma statements','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(114,'customers.view','crm',6,'View customers','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(115,'customers.create','crm',6,'Create customers','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(116,'customers.edit','crm',6,'Edit customers','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(117,'customers.delete','crm',6,'Delete customers','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(118,'customers.export','crm',6,'Export customer data','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(119,'clients.view','crm',6,'View clients','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(120,'clients.create','crm',6,'Create clients','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(121,'clients.edit','crm',6,'Edit clients','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(122,'clients.delete','crm',6,'Delete clients','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(123,'contacts.view','crm',6,'View contacts','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(124,'contacts.create','crm',6,'Create contacts','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(125,'contacts.edit','crm',6,'Edit contacts','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(126,'contacts.delete','crm',6,'Delete contacts','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(127,'opportunities.view','crm',6,'View opportunities','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(128,'opportunities.create','crm',6,'Create opportunities','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(129,'opportunities.edit','crm',6,'Edit opportunities','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(130,'opportunities.delete','crm',6,'Delete opportunities','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(131,'activities.view','crm',6,'View CRM activities','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(132,'activities.create','crm',6,'Create CRM activities','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(133,'activities.edit','crm',6,'Edit CRM activities','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(134,'employees.view','hr',7,'View employees','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(135,'employees.create','hr',7,'Create employees','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(136,'employees.edit','hr',7,'Edit employees','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(137,'employees.delete','hr',7,'Delete employees','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(138,'applications.view','hr',7,'View job applications','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(139,'applications.create','hr',7,'Create job applications','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(140,'applications.edit','hr',7,'Edit job applications','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(141,'interviews.view','hr',7,'View interviews','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(142,'interviews.create','hr',7,'Schedule interviews','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(143,'interviews.edit','hr',7,'Edit interviews','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(144,'assessments.view','hr',7,'View assessments','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(145,'assessments.create','hr',7,'Create assessments','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(146,'offers.view','hr',7,'View job offers','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(147,'offers.create','hr',7,'Create job offers','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(148,'offers.approve','hr',7,'Approve job offers','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(149,'timeoff.view','hr',7,'View time off requests','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(150,'timeoff.create','hr',7,'Create time off requests','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(151,'timeoff.approve','hr',7,'Approve time off requests','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(152,'timeoff.delete','hr',7,'Delete time off requests','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(153,'timesheets.view','hr',7,'View timesheets','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(154,'timesheets.create','hr',7,'Create timesheets','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(155,'timesheets.approve','hr',7,'Approve timesheets','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(156,'attendance.view','hr',7,'View attendance','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(157,'attendance.create','hr',7,'Record attendance','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(158,'training.view','hr',7,'View training records','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(159,'training.create','hr',7,'Create training records','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(160,'training.edit','hr',7,'Edit training records','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(161,'reviews.view','hr',7,'View performance reviews','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(162,'reviews.create','hr',7,'Create performance reviews','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(163,'reviews.edit','hr',7,'Edit performance reviews','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(164,'contracts.view','hr',7,'View employee contracts','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(165,'contracts.create','hr',7,'Create employee contracts','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(166,'contracts.edit','hr',7,'Edit employee contracts','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(167,'separations.view','hr',7,'View employee separations','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(168,'separations.create','hr',7,'Create employee separations','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(169,'products.view','inventory',8,'View products','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(170,'products.create','inventory',8,'Create products','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(171,'products.edit','inventory',8,'Edit products','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(172,'products.delete','inventory',8,'Delete products','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(173,'products.export','inventory',8,'Export product data','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(174,'categories.view','inventory',8,'View product categories','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(175,'categories.create','inventory',8,'Create product categories','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(176,'categories.edit','inventory',8,'Edit product categories','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(177,'categories.delete','inventory',8,'Delete product categories','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(178,'stock_movements.view','inventory',8,'View stock movements','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(179,'stock_movements.create','inventory',8,'Create stock movements','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(180,'stock_adjustments.create','inventory',8,'Create stock adjustments','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(181,'transfers.view','inventory',8,'View stock transfers','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(182,'transfers.create','inventory',8,'Create stock transfers','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(183,'transfers.approve','inventory',8,'Approve stock transfers','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(184,'lots.view','inventory',8,'View lot/serial numbers','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(185,'lots.create','inventory',8,'Create lot/serial numbers','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(186,'lots.edit','inventory',8,'Edit lot/serial numbers','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(187,'workorders.view','manufacturing',9,'View work orders','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(188,'workorders.create','manufacturing',9,'Create work orders','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(189,'workorders.edit','manufacturing',9,'Edit work orders','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(190,'workorders.delete','manufacturing',9,'Delete work orders','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(191,'workorders.release','manufacturing',9,'Release work orders','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(192,'workorders.complete','manufacturing',9,'Complete work orders','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(193,'boms.view','manufacturing',9,'View bills of materials','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(194,'boms.create','manufacturing',9,'Create bills of materials','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(195,'boms.edit','manufacturing',9,'Edit bills of materials','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(196,'boms.delete','manufacturing',9,'Delete bills of materials','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(197,'equipment.view','manufacturing',9,'View equipment','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(198,'equipment.create','manufacturing',9,'Create equipment','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(199,'equipment.edit','manufacturing',9,'Edit equipment','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(200,'equipment.maintenance','manufacturing',9,'Perform equipment maintenance','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(201,'capacity.view','manufacturing',9,'View capacity planning','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(202,'capacity.edit','manufacturing',9,'Edit capacity planning','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(203,'quality.view','manufacturing',9,'View quality control','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(204,'quality.create','manufacturing',9,'Create quality inspections','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(205,'quality.approve','manufacturing',9,'Approve quality inspections','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(206,'mrp.view','manufacturing',9,'View MRP','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(207,'mrp.run','manufacturing',9,'Run MRP calculations','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(208,'quotes.view','sales',11,'View quotes','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(209,'quotes.create','sales',11,'Create quotes','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(210,'quotes.edit','sales',11,'Edit quotes','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(211,'quotes.delete','sales',11,'Delete quotes','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(212,'quotes.approve','sales',11,'Approve quotes','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(213,'quotes.convert','sales',11,'Convert quotes to orders','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(214,'orders.view','sales',11,'View sales orders','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(215,'orders.create','sales',11,'Create sales orders','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(216,'orders.edit','sales',11,'Edit sales orders','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(217,'orders.delete','sales',11,'Delete sales orders','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(218,'orders.approve','sales',11,'Approve sales orders','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(219,'delivery_notes.view','sales',11,'View delivery notes','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(220,'delivery_notes.create','sales',11,'Create delivery notes','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(221,'returns.view','sales',11,'View sales returns','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(222,'returns.create','sales',11,'Create sales returns','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(223,'returns.approve','sales',11,'Approve sales returns','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(224,'pricing_rules.view','sales',11,'View pricing rules','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(225,'pricing_rules.create','sales',11,'Create pricing rules','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(226,'pricing_rules.edit','sales',11,'Edit pricing rules','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(227,'promotions.view','sales',11,'View promotions','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(228,'promotions.create','sales',11,'Create promotions','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(229,'promotions.edit','sales',11,'Edit promotions','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(230,'purchase_orders.view','purchases',10,'View purchase orders','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(231,'purchase_orders.create','purchases',10,'Create purchase orders','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(232,'purchase_orders.edit','purchases',10,'Edit purchase orders','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(233,'purchase_orders.delete','purchases',10,'Delete purchase orders','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(234,'purchase_orders.approve','purchases',10,'Approve purchase orders','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(235,'goods_receipts.view','purchases',10,'View goods receipts','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(236,'goods_receipts.create','purchases',10,'Create goods receipts','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(237,'bills.view','purchases',5,'View supplier bills','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(238,'bills.create','purchases',5,'Create supplier bills','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(239,'bills.approve','purchases',5,'Approve supplier bills','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(240,'supplier_payments.view','purchases',10,'View supplier payments','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(241,'supplier_payments.create','purchases',10,'Create supplier payments','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(242,'tickets.view','helpdesk',3,'View support tickets','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(243,'tickets.create','helpdesk',3,'Create support tickets','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(244,'tickets.edit','helpdesk',3,'Edit support tickets','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(245,'tickets.assign','helpdesk',3,'Assign support tickets','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(246,'tickets.close','helpdesk',3,'Close support tickets','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(247,'projects.create','projects',14,'Create projects','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(248,'projects.edit','projects',14,'Edit projects','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(249,'projects.delete','projects',14,'Delete projects','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(250,'documents.upload','documents',12,'Upload documents','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(251,'documents.edit','documents',12,'Edit documents','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(252,'documents.delete','documents',12,'Delete documents','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(253,'campaigns.view','marketing',6,'View email campaigns','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(254,'campaigns.create','marketing',6,'Create email campaigns','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(255,'campaigns.edit','marketing',6,'Edit email campaigns','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(256,'campaigns.send','marketing',6,'Send email campaigns','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(257,'lists.view','marketing',4,'View mailing lists','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(258,'lists.create','marketing',4,'Create mailing lists','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(259,'templates.view','marketing',4,'View email templates','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(260,'templates.create','marketing',4,'Create email templates','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(267,'positions.view','hr',7,'View job positions','2025-11-11 12:46:12','2025-11-28 23:03:01'),
(268,'positions.create','hr',7,'Create job positions','2025-11-11 12:46:12','2025-11-28 23:03:01'),
(269,'positions.edit','hr',7,'Edit job positions','2025-11-11 12:46:12','2025-11-28 23:03:01'),
(270,'positions.delete','hr',7,'Delete job positions','2025-11-11 12:46:12','2025-11-28 23:03:01'),
(271,'audit_logs.view','system',5,'View audit logs and system activity','2025-11-11 16:59:36','2025-11-28 23:03:01'),
(272,'forecasting.view','accounting',19,'View financial forecasts and scenarios','2025-11-11 17:41:34','2025-11-28 22:59:52'),
(273,'forecasting.create','accounting',19,'Create financial forecasts and scenarios','2025-11-11 17:41:34','2025-11-28 22:59:52'),
(274,'forecasting.edit','accounting',19,'Edit financial forecasts and scenarios','2025-11-11 17:41:34','2025-11-28 22:59:52'),
(275,'forecasting.delete','accounting',19,'Delete financial forecasts and scenarios','2025-11-11 17:41:34','2025-11-28 22:59:52'),
(276,'forecasting.approve','accounting',19,'Approve and finalize forecasts','2025-11-11 17:41:34','2025-11-28 22:59:52'),
(287,'camera_audit.view','inventory',3,'View camera audit logs and images','2025-11-13 21:23:05','2025-11-28 22:59:52'),
(288,'camera_audit.capture','inventory',3,'Capture images and create audit logs','2025-11-13 21:23:05','2025-11-28 22:59:52'),
(289,'camera_audit.verify','inventory',3,'Verify and approve audit images','2025-11-13 21:23:05','2025-11-28 22:59:52'),
(290,'camera_audit.annotate','inventory',3,'Add annotations to audit images','2025-11-13 21:23:05','2025-11-28 22:59:52'),
(291,'camera_audit.delete','inventory',3,'Delete camera audit logs','2025-11-13 21:23:05','2025-11-28 22:59:52'),
(292,'camera_audit.stations','inventory',3,'Manage camera stations','2025-11-13 21:23:05','2025-11-28 22:59:52'),
(293,'camera_audit.export','inventory',3,'Export camera audit data','2025-11-13 21:23:05','2025-11-28 22:59:52'),
(294,'mfa.manage_own','security',17,'Manage own MFA settings','2025-11-15 17:46:36','2025-11-28 22:59:52'),
(295,'mfa.admin_override','security',17,'Admin: Override MFA for any user','2025-11-15 17:46:36','2025-11-28 22:59:52'),
(296,'security.view_audit','security',17,'View security audit logs','2025-11-15 17:46:36','2025-11-28 22:59:52'),
(297,'tax_jurisdictions.view','tax',5,'View tax jurisdictions','2025-11-15 18:08:20','2025-11-28 23:03:01'),
(298,'tax_jurisdictions.create','tax',5,'Create tax jurisdictions','2025-11-15 18:08:20','2025-11-28 23:03:01'),
(299,'tax_jurisdictions.edit','tax',5,'Edit tax jurisdictions','2025-11-15 18:08:20','2025-11-28 23:03:01'),
(300,'tax_jurisdictions.delete','tax',5,'Delete tax jurisdictions','2025-11-15 18:08:20','2025-11-28 23:03:01'),
(301,'tax_payments.view','tax',5,'View tax payments','2025-11-15 18:08:20','2025-11-28 23:03:01'),
(302,'tax_payments.create','tax',5,'Create tax payments','2025-11-15 18:08:20','2025-11-28 23:03:01'),
(303,'tax_payments.edit','tax',5,'Edit tax payments','2025-11-15 18:08:20','2025-11-28 23:03:01'),
(304,'tax_payments.file','tax',5,'File tax returns','2025-11-15 18:08:20','2025-11-28 23:03:01'),
(305,'tax_exemptions.view','tax',5,'View tax exemptions','2025-11-15 18:08:20','2025-11-28 23:03:01'),
(306,'tax_exemptions.manage','tax',5,'Manage tax exemptions','2025-11-15 18:08:20','2025-11-28 23:03:01'),
(307,'tax_reports.view','tax',5,'View tax reports','2025-11-15 18:08:20','2025-11-28 23:03:01'),
(308,'1099_contractors.view','1099',5,'View 1099 contractors','2025-11-15 18:20:32','2025-11-28 22:59:52'),
(309,'1099_contractors.manage','1099',5,'Manage 1099 contractor designations','2025-11-15 18:20:32','2025-11-28 22:59:52'),
(310,'1099_payments.view','1099',5,'View 1099 reportable payments','2025-11-15 18:20:32','2025-11-28 23:03:01'),
(311,'1099_payments.manage','1099',5,'Manage 1099 payment classifications','2025-11-15 18:20:32','2025-11-28 23:03:01'),
(312,'1099_reports.view','1099',5,'View 1099 reports','2025-11-15 18:20:32','2025-11-28 23:03:01'),
(313,'1099_filings.prepare','1099',5,'Prepare 1099 forms','2025-11-15 18:20:32','2025-11-28 23:03:01'),
(314,'1099_filings.file','1099',5,'File 1099 forms','2025-11-15 18:20:32','2025-11-28 23:03:01'),
(315,'bank_import.view','bank_import',5,'View bank imports','2025-11-15 18:27:16','2025-11-28 22:59:52'),
(316,'bank_import.create','bank_import',5,'Import bank transactions','2025-11-15 18:27:16','2025-11-28 22:59:52'),
(317,'bank_import.categorize','bank_import',5,'Categorize imported transactions','2025-11-15 18:27:16','2025-11-28 22:59:52'),
(318,'bank_import.rules','bank_import',5,'Manage categorization rules','2025-11-15 18:27:16','2025-11-28 22:59:52'),
(323,'audit_trail.view','audit',5,'View audit trail','2025-11-15 18:28:26','2025-11-28 23:03:01'),
(324,'audit_trail.export','audit',5,'Export audit trail','2025-11-15 18:28:26','2025-11-28 23:03:01'),
(325,'accounting.customer_payments.view','accounting',5,'View customer payments','2025-11-15 19:50:26','2025-11-28 22:59:52'),
(326,'accounting.customer_payments.create','accounting',5,'Create customer payments','2025-11-15 19:50:26','2025-11-28 22:59:52'),
(327,'accounting.customer_payments.edit','accounting',5,'Edit customer payments','2025-11-15 19:50:26','2025-11-28 22:59:52'),
(328,'accounting.customer_payments.delete','accounting',5,'Delete customer payments','2025-11-15 19:50:26','2025-11-28 22:59:52'),
(329,'accounting.vendor_payments.view','accounting',5,'View vendor payments','2025-11-15 19:50:26','2025-11-28 22:59:52'),
(330,'accounting.vendor_payments.create','accounting',5,'Create vendor payments','2025-11-15 19:50:26','2025-11-28 22:59:52'),
(331,'accounting.vendor_payments.edit','accounting',5,'Edit vendor payments','2025-11-15 19:50:26','2025-11-28 22:59:52'),
(332,'accounting.vendor_payments.delete','accounting',5,'Delete vendor payments','2025-11-15 19:50:26','2025-11-28 22:59:52'),
(333,'accounting.vendor_payments.void','accounting',5,'Void vendor payments','2025-11-15 19:50:26','2025-11-28 22:59:52'),
(334,'accounting.vendor_payments.print_checks','accounting',5,'Print vendor payment checks','2025-11-15 19:50:26','2025-11-28 22:59:52'),
(345,'recurring_templates.view','recurring',5,'View Recurring Templates','2025-11-15 20:42:50','2025-11-28 23:02:18'),
(346,'recurring_templates.create','recurring',5,'Create Recurring Templates','2025-11-15 20:42:50','2025-11-28 23:02:18'),
(347,'recurring_templates.edit','recurring',5,'Edit Recurring Templates','2025-11-15 20:42:50','2025-11-28 23:02:18'),
(348,'recurring_templates.delete','recurring',5,'Delete Recurring Templates','2025-11-15 20:42:50','2025-11-28 23:02:18'),
(349,'recurring_templates.activate','recurring',5,'Activate/Deactivate Templates','2025-11-15 20:42:50','2025-11-28 23:02:18'),
(350,'recurring_templates.execute','recurring',5,'Manually Execute Templates','2025-11-15 20:42:50','2025-11-28 23:02:18'),
(357,'credit_notes.apply','credit_notes',5,'Apply Credit Notes to Invoices','2025-11-15 21:26:02','2025-11-28 23:03:01'),
(358,'credit_notes.reverse','credit_notes',5,'Reverse Credit Note Applications','2025-11-15 21:26:02','2025-11-28 23:03:01'),
(359,'credit_notes.view_balances','credit_notes',5,'View Customer Credit Balances','2025-11-15 21:26:02','2025-11-28 23:03:01'),
(360,'credit_notes.auto_apply','credit_notes',5,'Auto-apply Credit Notes','2025-11-15 21:26:02','2025-11-28 23:03:01'),
(361,'statements.generate','statements',5,'Generate Customer Statements','2025-11-15 21:36:53','2025-11-28 23:03:01'),
(362,'statements.view_history','statements',5,'View Statement History','2025-11-15 21:36:53','2025-11-28 23:03:01'),
(363,'statements.email','statements',5,'Email Statements to Customers','2025-11-15 21:36:53','2025-11-28 23:03:01'),
(364,'statements.bulk_generate','statements',5,'Generate Bulk Statements','2025-11-15 21:36:53','2025-11-28 23:03:01'),
(365,'quotes.send_for_signature','sales',11,'Send quote for customer e-signature','2025-11-16 11:39:56','2025-11-28 22:59:52'),
(366,'quotes.view_signatures','sales',11,'View quote signature history','2025-11-16 11:39:56','2025-11-28 22:59:52'),
(367,'quotes.convert_to_sales_order','sales',11,'Convert accepted quotes to sales orders','2025-11-16 11:39:56','2025-11-28 22:59:52'),
(368,'quotes.resend_signature_request','sales',11,'Resend signature request to customer','2025-11-16 11:39:56','2025-11-28 22:59:52'),
(369,'ndas.view','crm',6,'View NDAs','2025-11-16 11:44:05','2025-11-28 23:02:18'),
(370,'ndas.create','crm',6,'Create NDAs','2025-11-16 11:44:05','2025-11-28 23:02:18'),
(371,'ndas.edit','crm',6,'Edit draft NDAs','2025-11-16 11:44:05','2025-11-28 23:02:18'),
(372,'ndas.delete','crm',6,'Delete NDAs','2025-11-16 11:44:05','2025-11-28 23:02:18'),
(373,'ndas.send','crm',6,'Send NDAs for signature','2025-11-16 11:44:05','2025-11-28 23:02:18'),
(374,'ndas.view_signatures','crm',6,'View NDA signatures','2025-11-16 11:44:05','2025-11-28 23:02:18'),
(375,'nda_templates.manage','crm',6,'Manage NDA templates','2025-11-16 11:44:05','2025-11-28 23:03:01'),
(376,'ndas.countersign','crm',6,'Counter-sign NDAs on behalf of company','2025-11-16 23:21:54','2025-11-28 23:02:18'),
(377,'system.backup','system',4,'Manage system backups and Git operations','2025-11-17 11:19:40','2025-11-28 23:03:01'),
(378,'salesorders.view','',11,'View SALES','2025-11-17 12:41:32','2025-11-28 22:59:52'),
(379,'announcements.view','',18,'View Announcements','2025-11-17 12:41:32','2025-11-28 22:59:52'),
(380,'audit-logs.view','',4,'View Audit Log','2025-11-17 12:41:32','2025-11-28 22:59:52'),
(381,'automation.view','automation',4,'View Templates','2025-11-17 12:41:32','2025-11-28 23:03:01'),
(382,'backup.view','',4,'View System Backup','2025-11-17 12:41:32','2025-11-28 22:59:52'),
(383,'creditnotes.view','',5,'View Credit Notes','2025-11-17 12:41:32','2025-11-28 22:59:52'),
(384,'data_access.view','',4,'View Specific Data Roles','2025-11-17 12:41:32','2025-11-28 22:59:52'),
(385,'email-marketing.view','',3,'View Email Marketing','2025-11-17 12:41:32','2025-11-28 22:59:52'),
(387,'financial-proforma.view','',19,'View Forecasting','2025-11-17 12:41:49','2025-11-28 22:59:52'),
(389,'forecaster.view','',19,'View Financial Forecaster','2025-11-17 12:42:02','2025-11-28 22:59:52'),
(390,'locations.view','',8,'View Locations','2025-11-17 12:42:02','2025-11-28 22:59:52'),
(391,'menus.view','',4,'View Menu Management','2025-11-17 12:42:02','2025-11-28 22:59:52'),
(392,'quickbooks.view','',4,'View QuickBooks Integration','2025-11-17 12:42:02','2025-11-28 22:59:52'),
(393,'shipments.view','',11,'View Shipments','2025-11-17 12:42:02','2025-11-28 22:59:52'),
(398,'network_monitor.view','security',3,'View network monitoring dashboard','2025-11-19 14:34:33','2025-11-28 22:59:52'),
(399,'network_monitor.manage','security',3,'Manage network monitor settings','2025-11-19 14:34:33','2025-11-28 22:59:52'),
(400,'forecasting.manage_assumptions','Forecasting',19,'Manage forecast assumptions and variables','2025-11-19 16:40:14','2025-11-28 22:59:52'),
(401,'forecasting.view_actuals','Forecasting',19,'View actual vs forecast variance','2025-11-19 16:40:14','2025-11-28 22:59:52'),
(402,'forecasting.update_daily','Forecasting',19,'Quick daily update of key variables','2025-11-19 16:40:14','2025-11-28 22:59:52'),
(403,'forecasting.manage_products','Forecasting',19,'Manage product-level forecasting configuration','2025-11-19 17:53:07','2025-11-28 22:59:52'),
(404,'forecasting.view_proforma','Forecasting',19,'View consolidated pro forma reports','2025-11-19 17:53:07','2025-11-28 22:59:52'),
(405,'forecasting.generate_projections','Forecasting',19,'Generate financial projections','2025-11-19 17:53:07','2025-11-28 22:59:52'),
(406,'product_forecast.view','forecasting',19,'View Product Line Forecasting and Variance Analysis','2025-11-19 19:08:28','2025-11-28 22:59:52'),
(407,'files.manage','system',3,'Manage all files and folders','2025-11-21 14:37:34','2025-11-28 22:59:52'),
(408,'files.upload','system',3,'Upload files','2025-11-21 14:37:34','2025-11-28 22:59:52'),
(409,'files.delete','system',3,'Delete files and folders','2025-11-21 14:37:34','2025-11-28 22:59:52'),
(410,'crm.documents','crm',6,'Access CRM Documents','2025-11-21 14:37:34','2025-12-02 13:56:09'),
(411,'customers.documents','crm',6,'Access customer documents','2025-11-21 14:37:34','2025-11-28 22:59:52'),
(412,'bank_import.edit','bank_import',5,'Edit Bank Import','2025-11-24 18:47:03','2025-11-28 22:59:52'),
(413,'bank_import.import','bank_import',5,'Import Bank Import','2025-11-24 18:47:03','2025-11-28 22:59:52'),
(414,'bank_import.delete','bank_import',5,'Delete Bank Import','2025-11-24 18:47:03','2025-11-28 22:59:52'),
(415,'bank_import.manage_rules','bank_import',5,'Manage Rules Bank Import','2025-11-24 18:47:03','2025-11-28 22:59:52'),
(416,'1099_contractors.view_payments','1099_contractors',5,'View Payments 1099 Contractors','2025-11-24 18:47:03','2025-11-28 22:59:52'),
(417,'1099_contractors.generate_reports','1099_contractors',5,'Generate Reports 1099 Contractors','2025-11-24 18:47:03','2025-11-28 22:59:52'),
(418,'1099_contractors.export','1099_contractors',5,'Export 1099 Contractors','2025-11-24 18:47:03','2025-11-28 22:59:52'),
(419,'permissions.manage','permissions',4,'Manage Permissions','2025-11-24 18:47:03','2025-11-28 22:59:52'),
(420,'admin.settings','admin',4,'Settings Admin','2025-11-24 18:47:03','2025-11-28 22:59:52'),
(421,'procurement.approve','procurement',10,'Approve Procurement','2025-11-24 18:47:03','2025-11-28 22:59:52'),
(422,'admin.system_scripts','admin',4,'Execute System Scripts','2025-11-24 19:09:27','2025-11-28 22:59:52'),
(423,'sales.agreements.view','sales',11,'View agreements','2025-11-25 23:30:52','2025-11-28 22:59:52'),
(424,'sales.agreements.create','sales',11,'Create agreements','2025-11-25 23:30:52','2025-11-28 22:59:52'),
(425,'sales.agreements.edit','sales',11,'Edit agreements','2025-11-25 23:30:52','2025-11-28 22:59:52'),
(426,'sales.agreements.delete','sales',11,'Delete agreements','2025-11-25 23:30:52','2025-11-28 22:59:52'),
(427,'sales.agreements.send','sales',11,'Send agreements for signature','2025-11-25 23:30:52','2025-11-28 22:59:52'),
(428,'admin.agreement_templates','admin',4,'Manage agreement templates','2025-11-25 23:30:52','2025-11-28 22:59:52'),
(429,'agreements.view','',11,'View Agreements','2025-11-26 12:07:17','2025-11-28 22:59:52'),
(430,'ai-test.view','',3,'View AI Testing','2025-11-26 12:07:17','2025-11-28 22:59:52'),
(431,'assumptions.view','',19,'View Daily Update','2025-11-26 12:07:17','2025-11-28 22:59:52'),
(432,'companies.view','',6,'View Companies','2025-11-26 12:07:17','2025-11-28 22:59:52'),
(433,'documentation.view','',4,'View Documentation','2025-11-26 12:07:17','2025-11-28 22:59:52'),
(434,'product-forecast.view','',19,'View Product Configs','2025-11-26 12:07:17','2025-11-28 22:59:52'),
(435,'calendar.create','calendar',1,'Create Calendar','2025-11-28 13:23:58','2025-11-28 22:59:52'),
(436,'calendar.edit','calendar',1,'Edit Calendar','2025-11-28 13:23:58','2025-11-28 22:59:52'),
(437,'calendar.delete','calendar',1,'Delete Calendar','2025-11-28 13:23:58','2025-11-28 22:59:52'),
(438,'reports.create','reports',15,'Create Reports','2025-11-28 13:23:58','2025-11-28 22:59:52'),
(439,'reports.edit','reports',15,'Edit Reports','2025-11-28 13:23:58','2025-11-28 22:59:52'),
(440,'reports.delete','reports',15,'Delete Reports','2025-11-28 13:23:58','2025-11-28 22:59:52'),
(441,'dashboard.edit','dashboard',3,'Edit Dashboard','2025-11-28 13:23:58','2025-11-28 23:02:18'),
(442,'documents.create','documents',12,'Create Documents','2025-11-28 13:23:58','2025-11-28 22:59:52'),
(443,'system.files.delete','system',4,'System Files Delete','2025-11-28 13:23:58','2025-11-28 23:03:01'),
(444,'messaging.create','messaging',3,'Create Messaging','2025-11-28 13:23:58','2025-11-28 23:02:18'),
(445,'messaging.edit','messaging',3,'Edit Messaging','2025-11-28 13:23:58','2025-11-28 23:02:18'),
(446,'messaging.delete','messaging',3,'Delete Messaging','2025-11-28 13:23:58','2025-11-28 23:02:18'),
(447,'admin.create','admin',4,'Create Admin','2025-11-28 13:23:58','2025-11-28 22:59:52'),
(448,'profile.edit','profile',3,'Edit Profile','2025-11-28 13:23:58','2025-11-28 22:59:52'),
(449,'system.edit','system',4,'Edit System','2025-11-28 13:23:58','2025-11-28 23:03:01'),
(450,'admin.edit','admin',4,'Edit Admin','2025-11-28 13:23:58','2025-11-28 22:59:52'),
(451,'admin.delete','admin',4,'Delete Admin','2025-11-28 13:23:58','2025-11-28 22:59:52'),
(452,'sales.approve','sales',11,'Approve Sales','2025-11-28 13:23:58','2025-11-28 22:59:52'),
(453,'tickets.delete','tickets',3,'Delete Tickets','2025-11-28 13:23:58','2025-11-28 22:59:52'),
(454,'api.view','api',4,'View Api','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(455,'documentation.export','documentation',4,'Export Documentation','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(456,'email.view','email',3,'View Email','2025-11-28 14:31:09','2025-11-28 23:02:18'),
(457,'machine_data.view','machine_data',9,'View Machine Data','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(458,'nda.view','nda',6,'View Nda','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(460,'notifications.delete','notifications',3,'Delete Notifications','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(461,'notifications.view','notifications',3,'View Notifications','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(462,'pipedrive_import.view','pipedrive_import',4,'View Pipedrive Import','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(463,'pricing_rule.view','pricing_rule',11,'View Pricing Rule','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(464,'pro_forma.view','pro_forma',19,'View Pro Forma','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(465,'promotion.view','promotion',11,'View Promotion','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(466,'quote.view','quote',11,'View Quote','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(467,'return.view','return',11,'View Return','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(468,'security.approve','security',17,'Approve Security','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(469,'security.view','security',17,'View Security','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(470,'employees.directory','',7,'View employee directory','2025-11-28 14:52:55','2025-11-28 22:59:52'),
(471,'account.view','accounting',5,'View Account','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(472,'account.create','accounting',5,'Create Account','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(473,'accounting.dashboard','accounting',5,'Dashboard Accounting','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(474,'accounting.ledger','accounting',5,'Ledger Accounting','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(475,'accounting.balanceSheet','accounting',5,'BalanceSheet Accounting','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(476,'accounting.incomeStatement','accounting',5,'IncomeStatement Accounting','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(477,'accounting.cashFlow','accounting',5,'CashFlow Accounting','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(478,'accounting.trialBalance','accounting',5,'TrialBalance Accounting','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(479,'accounting.aging','accounting',5,'Aging Accounting','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(480,'accounting.apAgingDetail','accounting',5,'ApAgingDetail Accounting','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(481,'accounting.arAgingDetail','accounting',5,'ArAgingDetail Accounting','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(482,'accounting.cashFlowStatement','accounting',5,'CashFlowStatement Accounting','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(483,'accounting.paymentTermsList','accounting',5,'PaymentTermsList Accounting','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(484,'accounting.reportPackage','accounting',5,'ReportPackage Accounting','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(485,'action_menu_editor.view','',4,'View Action Menu Editor','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(486,'action_menu_editor.viewPage','',4,'ViewPage Action Menu Editor','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(487,'action_menu_editor.create','',4,'Create Action Menu Editor','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(488,'action_menu_editor.edit','',4,'Edit Action Menu Editor','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(489,'action_menu_editor.delete','',4,'Delete Action Menu Editor','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(490,'action_menu_editor.reorder','',4,'Reorder Action Menu Editor','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(491,'action_menu_editor.duplicate','',4,'Duplicate Action Menu Editor','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(492,'activity.create','crm',6,'Create Activity','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(493,'activity.edit','crm',6,'Edit Activity','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(494,'activity.delete','crm',6,'Delete Activity','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(495,'agreement.view','',11,'View Agreement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(496,'agreement.create','',11,'Create Agreement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(497,'agreement.edit','',11,'Edit Agreement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(498,'agreement.delete','',11,'Delete Agreement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(499,'agreement.print','',11,'Print Agreement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(500,'agreement.export','',11,'Export Agreement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(501,'agreement.sendForSignature','',11,'SendForSignature Agreement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(502,'agreement.sendAgreementEmail','',11,'SendAgreementEmail Agreement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(503,'agreement.convertToSalesOrder','',11,'ConvertToSalesOrder Agreement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(504,'agreement.convertFromQuote','',11,'ConvertFromQuote Agreement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(505,'agreement_template.view','',11,'View Agreement Template','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(506,'agreement_template.create','',11,'Create Agreement Template','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(507,'agreement_template.edit','',11,'Edit Agreement Template','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(508,'agreement_template.delete','',11,'Delete Agreement Template','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(509,'agreement_template.setDefault','',11,'SetDefault Agreement Template','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(510,'agreement_template.duplicate','',11,'Duplicate Agreement Template','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(511,'analytics.dashboard','',15,'Dashboard Analytics','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(512,'analytics.productionReports','',15,'ProductionReports Analytics','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(513,'analytics.oeeReports','',15,'OeeReports Analytics','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(514,'announcement.view','',18,'View Announcement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(515,'announcement.create','',18,'Create Announcement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(516,'announcement.edit','',18,'Edit Announcement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(517,'announcement.delete','',18,'Delete Announcement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(518,'api.usersList','',4,'UsersList Api','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(519,'api.allUsers','',4,'AllUsers Api','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(520,'application.view','hr',7,'View Application','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(521,'application.create','hr',7,'Create Application','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(522,'application.edit','hr',7,'Edit Application','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(523,'application.delete','hr',7,'Delete Application','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(524,'approvals.dashboard','',17,'Dashboard Approvals','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(525,'assessment.view','hr',7,'View Assessment','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(526,'assessment.create','hr',7,'Create Assessment','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(527,'assessment.edit','hr',7,'Edit Assessment','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(528,'assessment.delete','hr',7,'Delete Assessment','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(529,'assumptions.quickUpdate','',19,'QuickUpdate Assumptions','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(530,'assumptions.syncActuals','',19,'SyncActuals Assumptions','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(531,'assumptions.sets','',19,'Sets Assumptions','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(532,'assumptions.createSet','',19,'CreateSet Assumptions','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(533,'assumptions.edit','',19,'Edit Assumptions','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(534,'assumptions.updateSetInfo','',19,'UpdateSetInfo Assumptions','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(535,'assumptions.clone','',19,'Clone Assumptions','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(536,'assumptions.variance','',19,'Variance Assumptions','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(537,'audit_log.view','audit',5,'View Audit Log','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(538,'bom.view','manufacturing',9,'View Bom','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(539,'bom.create','manufacturing',9,'Create Bom','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(540,'bom.addComponent','manufacturing',9,'AddComponent Bom','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(541,'bom.removeComponent','manufacturing',9,'RemoveComponent Bom','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(542,'bom.lowStockReport','manufacturing',9,'LowStockReport Bom','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(543,'bom.materialRequirements','manufacturing',9,'MaterialRequirements Bom','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(544,'backup.triggerDatabaseBackup','admin',4,'TriggerDatabaseBackup Backup','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(545,'backup.triggerGitPush','admin',4,'TriggerGitPush Backup','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(546,'backup.triggerFullBackup','admin',4,'TriggerFullBackup Backup','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(547,'backup.getHistory','admin',4,'GetHistory Backup','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(548,'backup.getStats','admin',4,'GetStats Backup','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(549,'backup.showDetails','admin',4,'ShowDetails Backup','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(550,'bank_account.view','accounting',5,'View Bank Account','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(551,'bank_account.create','accounting',5,'Create Bank Account','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(552,'bank_account.edit','accounting',5,'Edit Bank Account','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(553,'bank_account.delete','accounting',5,'Delete Bank Account','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(554,'bank_import.processUpload','accounting',5,'ProcessUpload Bank Import','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(555,'bank_import.review','accounting',5,'Review Bank Import','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(556,'bank_import.createRule','accounting',5,'CreateRule Bank Import','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(557,'bank_import.deleteRule','accounting',5,'DeleteRule Bank Import','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(558,'bank_reconciliation.view','accounting',5,'View Bank Reconciliation','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(559,'bank_reconciliation.start','accounting',5,'Start Bank Reconciliation','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(560,'bank_reconciliation.create','accounting',5,'Create Bank Reconciliation','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(561,'bank_reconciliation.toggleTransaction','accounting',5,'ToggleTransaction Bank Reconciliation','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(562,'bank_reconciliation.complete','accounting',5,'Complete Bank Reconciliation','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(563,'battery_quote.view','crm',11,'View Battery Quote','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(564,'battery_quote.create','crm',11,'Create Battery Quote','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(565,'battery_quote.edit','crm',11,'Edit Battery Quote','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(566,'battery_quote.delete','crm',11,'Delete Battery Quote','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(567,'battery_quote.convertToSalesOrder','crm',11,'ConvertToSalesOrder Battery Quote','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(568,'budget.view','accounting',5,'View Budget','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(569,'budget.create','accounting',5,'Create Budget','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(570,'budget.edit','accounting',5,'Edit Budget','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(571,'budget.delete','accounting',5,'Delete Budget','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(572,'business_line.view','',4,'View Business Line','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(573,'business_line.create','',4,'Create Business Line','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(574,'business_line.edit','',4,'Edit Business Line','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(575,'business_line.delete','',4,'Delete Business Line','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(576,'crm.dashboard','',6,'Dashboard Crm','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(577,'crm.activities','',6,'Activities Crm','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(578,'crm.contacts','',6,'Access Contacts','2025-11-28 22:01:12','2025-12-02 13:56:09'),
(579,'crm.opportunities','',6,'Access Opportunities','2025-11-28 22:01:12','2025-12-02 13:56:09'),
(580,'crm.support','',6,'Access Customer Support','2025-11-28 22:01:12','2025-12-02 13:56:09'),
(581,'crm.reports','',6,'Access CRM Reports','2025-11-28 22:01:12','2025-12-02 13:56:09'),
(582,'calendar.getEvents','crm',1,'GetEvents Calendar','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(583,'camera_audit.viewAuditLog','',3,'ViewAuditLog Camera Audit','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(584,'camera_audit.statistics','',3,'Statistics Camera Audit','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(585,'capacity.availability','',9,'Availability Capacity','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(586,'capacity.feasibility','',9,'Feasibility Capacity','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(587,'capacity.machineStatus','',9,'MachineStatus Capacity','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(588,'capacity.getEquipmentLinesByBusinessLine','',9,'GetEquipmentLinesByBusinessLine Capacity','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(589,'capacity.analytics','',9,'Analytics Capacity','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(590,'capacity.getMachineStatusData','',9,'GetMachineStatusData Capacity','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(591,'category.view','inventory',8,'View Category','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(592,'category.create','inventory',8,'Create Category','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(593,'category.edit','inventory',8,'Edit Category','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(594,'category.delete','inventory',8,'Delete Category','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(595,'client.view','crm',6,'View Client','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(596,'client.create','crm',6,'Create Client','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(597,'client.edit','crm',6,'Edit Client','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(598,'client.delete','crm',6,'Delete Client','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(599,'client.addContact','crm',6,'AddContact Client','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(600,'client.updateContact','crm',6,'UpdateContact Client','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(601,'client.deleteContact','crm',6,'DeleteContact Client','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(602,'company.view','',6,'View Company','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(603,'company.create','',6,'Create Company','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(604,'company.edit','',6,'Edit Company','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(605,'company.delete','',6,'Delete Company','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(606,'company.quickAdd','',6,'QuickAdd Company','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(607,'company.uploadDocument','',6,'UploadDocument Company','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(608,'company.downloadDocument','',6,'DownloadDocument Company','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(609,'company.deleteDocument','',6,'DeleteDocument Company','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(610,'company.export','',6,'Export Company','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(611,'contact.create','crm',6,'Create Contact','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(612,'contact.edit','crm',6,'Edit Contact','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(613,'contact.delete','crm',6,'Delete Contact','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(614,'contract.view','hr',7,'View Contract','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(615,'contract.create','hr',7,'Create Contract','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(616,'contract.edit','hr',7,'Edit Contract','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(617,'contract.delete','hr',7,'Delete Contract','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(618,'costing.production','',5,'Production Costing','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(619,'costing.productionDetail','',5,'ProductionDetail Costing','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(620,'costing.jobs','',5,'Jobs Costing','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(621,'costing.jobDetail','',5,'JobDetail Costing','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(622,'credit_note.view','',5,'View Credit Note','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(623,'credit_note.create','',5,'Create Credit Note','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(624,'credit_note.delete','',5,'Delete Credit Note','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(625,'currency.listCurrencies','',5,'ListCurrencies Currency','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(626,'currency.editCurrency','',5,'EditCurrency Currency','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(627,'currency.deleteCurrency','',5,'DeleteCurrency Currency','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(628,'currency.toggleActive','',5,'ToggleActive Currency','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(629,'currency.rates','',5,'Rates Currency','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(630,'currency.saveRate','',5,'SaveRate Currency','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(631,'currency.deleteRate','',5,'DeleteRate Currency','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(632,'currency.revaluation','',5,'Revaluation Currency','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(633,'currency.postRevaluation','',5,'PostRevaluation Currency','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(634,'currency.getRate','',5,'GetRate Currency','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(635,'currency.convertAmount','',5,'ConvertAmount Currency','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(636,'currency.importLiveRates','',5,'ImportLiveRates Currency','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(637,'custom_reports.view','',15,'View Custom Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(638,'custom_reports.builder','',15,'Builder Custom Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(639,'custom_reports.my','',15,'My Custom Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(640,'custom_reports.shared','',15,'Shared Custom Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(641,'custom_reports.scheduled','',15,'Scheduled Custom Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(642,'custom_reports.create','',15,'Create Custom Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(643,'custom_reports.run','',15,'Run Custom Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(644,'custom_reports.edit','',15,'Edit Custom Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(645,'custom_reports.delete','',15,'Delete Custom Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(646,'customer_payment.view','crm',11,'View Customer Payment','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(647,'customer_payment.create','crm',11,'Create Customer Payment','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(648,'customer_payment.customerInvoices','crm',11,'CustomerInvoices Customer Payment','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(649,'dashboard.customize','',3,'Customize Dashboard','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(650,'dashboard.removeWidget','',3,'RemoveWidget Dashboard','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(651,'dashboard.updateLayout','',3,'UpdateLayout Dashboard','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(652,'data_access.edit','',4,'Edit Data Access','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(653,'data_access.assign','',4,'Assign Data Access','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(654,'data_access.delete','',4,'Delete Data Access','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(655,'data_access.updateRules','',4,'UpdateRules Data Access','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(656,'debit_note.view','',5,'View Debit Note','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(657,'debit_note.create','',5,'Create Debit Note','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(658,'debit_note.edit','',5,'Edit Debit Note','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(659,'debit_note.delete','',5,'Delete Debit Note','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(660,'delivery_note.view','sales',11,'View Delivery Note','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(661,'delivery_note.create','sales',11,'Create Delivery Note','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(662,'depreciation.view','accounting',5,'View Depreciation','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(663,'depreciation.schedule','accounting',5,'Schedule Depreciation','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(664,'depreciation.generate','accounting',5,'Generate Depreciation','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(665,'depreciation.post','accounting',5,'Post Depreciation','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(666,'depreciation.reverse','accounting',5,'Reverse Depreciation','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(667,'depreciation.delete','accounting',5,'Delete Depreciation','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(668,'document.create','documents',12,'Create Document','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(669,'document.view','documents',12,'View Document','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(670,'document.edit','documents',12,'Edit Document','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(671,'document.delete','documents',12,'Delete Document','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(672,'document.viewFile','documents',12,'ViewFile Document','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(673,'document.download','documents',12,'Download Document','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(674,'documentation.search','documents',4,'Search Documentation','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(675,'documentation.download','documents',4,'Download Documentation','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(676,'documentation.refreshCoverage','documents',4,'RefreshCoverage Documentation','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(677,'documents.all','documents',12,'All Documents','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(678,'documents.my','documents',12,'My Documents','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(679,'documents.shared','documents',12,'Shared Documents','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(680,'documents.viewDocument','documents',12,'ViewDocument Documents','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(681,'documents.download','documents',12,'Download Documents','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(682,'documents.folders','documents',12,'Folders Documents','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(683,'email.folder','',3,'Folder Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(684,'email.viewEmail','',3,'ViewEmail Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(685,'email.viewThread','',3,'ViewThread Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(686,'email.compose','',3,'Compose Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(687,'email.send','',3,'Send Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(688,'email.saveDraft','',3,'SaveDraft Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(689,'email.search','',3,'Search Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(690,'email.markRead','',3,'MarkRead Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(691,'email.toggleStar','',3,'ToggleStar Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(692,'email.bulkAction','',3,'BulkAction Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(693,'email.delete','',3,'Delete Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(694,'email.emptyTrash','',3,'EmptyTrash Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(695,'email.downloadAttachment','',3,'DownloadAttachment Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(696,'email.settings','',3,'Settings Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(697,'email.updateSettings','',3,'UpdateSettings Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(698,'email.generateSignature','',3,'GenerateSignature Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(699,'email.testImapConnection','',3,'TestImapConnection Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(700,'email.searchRecipients','',3,'SearchRecipients Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(701,'email_template.view','',3,'View Email Template','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(702,'email_template.create','',3,'Create Email Template','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(703,'email_template.edit','',3,'Edit Email Template','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(704,'email_template.delete','',3,'Delete Email Template','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(705,'email_template.duplicate','',3,'Duplicate Email Template','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(706,'email_template.preview','',3,'Preview Email Template','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(707,'email_webhook.receive','',3,'Receive Email Webhook','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(708,'email_webhook.test','',3,'Test Email Webhook','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(709,'employee.view','hr',7,'View Employee','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(710,'employee.create','hr',7,'Create Employee','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(711,'employee.edit','hr',7,'Edit Employee','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(712,'employee.delete','hr',7,'Delete Employee','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(713,'employee.directory','hr',7,'Directory Employee','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(714,'equipment.delete','manufacturing',9,'Delete Equipment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(715,'equipment_line.view','manufacturing',9,'View Equipment Line','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(716,'equipment_line.create','manufacturing',9,'Create Equipment Line','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(717,'equipment_line.edit','manufacturing',9,'Edit Equipment Line','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(718,'equipment_line.delete','manufacturing',9,'Delete Equipment Line','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(719,'equipment_type.view','manufacturing',9,'View Equipment Type','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(720,'equipment_type.create','manufacturing',9,'Create Equipment Type','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(721,'equipment_type.edit','manufacturing',9,'Edit Equipment Type','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(722,'equipment_type.delete','manufacturing',9,'Delete Equipment Type','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(723,'expense.view','accounting',5,'View Expense','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(724,'expense.create','accounting',5,'Create Expense','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(725,'expense.approve','accounting',5,'Approve Expense','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(726,'expense.reject','accounting',5,'Reject Expense','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(727,'expense.delete','accounting',5,'Delete Expense','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(728,'file_manager.view','files',3,'View File Manager','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(729,'file_manager.browse','files',3,'Browse File Manager','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(730,'file_manager.tree','files',3,'Tree File Manager','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(731,'file_manager.download','files',3,'Download File Manager','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(732,'file_manager.viewFile','files',3,'ViewFile File Manager','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(733,'file_manager.deleteFile','files',3,'DeleteFile File Manager','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(734,'file_manager.deleteFolder','files',3,'DeleteFolder File Manager','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(735,'file_manager.search','files',3,'Search File Manager','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(736,'file_manager.getShares','files',3,'GetShares File Manager','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(737,'file_manager.removeShare','files',3,'RemoveShare File Manager','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(738,'file_manager.searchUsers','files',3,'SearchUsers File Manager','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(739,'file_manager.shared','files',3,'Shared File Manager','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(740,'financial_planner.view','',19,'View Financial Planner','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(741,'financial_planner.location','',19,'Location Financial Planner','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(742,'financial_planner.createForecast','',19,'CreateForecast Financial Planner','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(743,'financial_planner.compare','',19,'Compare Financial Planner','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(744,'financial_planner.editForecast','',19,'EditForecast Financial Planner','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(745,'financial_planner.updateForecast','',19,'UpdateForecast Financial Planner','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(746,'financial_planner.getHistoricalData','',19,'GetHistoricalData Financial Planner','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(747,'financial_planner.regeneratePeriods','',19,'RegeneratePeriods Financial Planner','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(748,'financial_planner.exportExcel','',19,'ExportExcel Financial Planner','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(749,'financial_pro_forma.view','',19,'View Financial Pro Forma','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(750,'financial_pro_forma.assumptions','',19,'Assumptions Financial Pro Forma','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(751,'financial_pro_forma.exportExcel','',19,'ExportExcel Financial Pro Forma','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(752,'fixed_asset.view','accounting',5,'View Fixed Asset','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(753,'fixed_asset.create','accounting',5,'Create Fixed Asset','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(754,'fixed_asset.edit','accounting',5,'Edit Fixed Asset','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(755,'fixed_asset.delete','accounting',5,'Delete Fixed Asset','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(756,'forecaster.storeForecast','',19,'StoreForecast Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(757,'forecaster.showForecast','',19,'ShowForecast Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(758,'forecaster.editForecast','',19,'EditForecast Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(759,'forecaster.updateForecast','',19,'UpdateForecast Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(760,'forecaster.deleteForecast','',19,'DeleteForecast Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(761,'forecaster.storeScenario','',19,'StoreScenario Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(762,'forecaster.showScenario','',19,'ShowScenario Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(763,'forecaster.editScenario','',19,'EditScenario Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(764,'forecaster.updateScenario','',19,'UpdateScenario Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(765,'forecaster.deleteScenario','',19,'DeleteScenario Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(766,'forecaster.compare','',19,'Compare Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(767,'forecaster.storeFinancing','',19,'StoreFinancing Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(768,'forecaster.editFinancing','',19,'EditFinancing Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(769,'forecaster.updateFinancing','',19,'UpdateFinancing Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(770,'forecaster.deleteFinancing','',19,'DeleteFinancing Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(771,'forecaster.storeInvestment','',19,'StoreInvestment Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(772,'forecaster.editInvestment','',19,'EditInvestment Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(773,'forecaster.updateInvestment','',19,'UpdateInvestment Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(774,'forecaster.deleteInvestment','',19,'DeleteInvestment Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(775,'forecaster.editPeriods','',19,'EditPeriods Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(776,'forecaster.updatePeriods','',19,'UpdatePeriods Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(777,'forecaster.showProFormaImport','',19,'ShowProFormaImport Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(778,'forecaster.executeProFormaImport','',19,'ExecuteProFormaImport Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(779,'forecaster.calculateMetrics','',19,'CalculateMetrics Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(780,'form1099.summary','',5,'Summary Form1099','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(781,'form1099.contractorDetail','',5,'ContractorDetail Form1099','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(782,'form1099.generate','',5,'Generate Form1099','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(783,'form1099.exportCSV','',5,'ExportCSV Form1099','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(784,'goods_receipt.view','purchases',10,'View Goods Receipt','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(785,'goods_receipt.create','purchases',10,'Create Goods Receipt','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(786,'goods_receipt.getPOItemsAjax','purchases',10,'GetPOItemsAjax Goods Receipt','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(787,'goods_receipt.delete','purchases',10,'Delete Goods Receipt','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(788,'hr.dashboard','',7,'Dashboard Hr','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(789,'help_desk.dashboard','helpdesk',13,'Dashboard Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(790,'help_desk.tickets','helpdesk',13,'Tickets Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(791,'help_desk.myTickets','helpdesk',13,'MyTickets Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(792,'help_desk.create','helpdesk',13,'Create Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(793,'help_desk.view','helpdesk',13,'View Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(794,'help_desk.addComment','helpdesk',13,'AddComment Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(795,'help_desk.updateStatus','helpdesk',13,'UpdateStatus Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(796,'help_desk.knowledgeBase','helpdesk',13,'KnowledgeBase Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(797,'help_desk.sla','helpdesk',13,'Sla Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(798,'help_desk.reports','helpdesk',13,'Reports Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(799,'help_desk.chat','helpdesk',13,'Chat Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(800,'help_desk.chatGetSessions','helpdesk',13,'ChatGetSessions Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(801,'help_desk.chatGetMessages','helpdesk',13,'ChatGetMessages Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(802,'help_desk.chatSendMessage','helpdesk',13,'ChatSendMessage Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(803,'internal_note_api.create','',4,'Create Internal Note Api','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(804,'internal_note_api.togglePin','',4,'TogglePin Internal Note Api','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(805,'internal_note_api.delete','',4,'Delete Internal Note Api','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(806,'interview.view','hr',7,'View Interview','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(807,'interview.create','hr',7,'Create Interview','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(808,'interview.edit','hr',7,'Edit Interview','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(809,'interview.delete','hr',7,'Delete Interview','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(810,'inventory.dashboard','',8,'Dashboard Inventory','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(811,'inventory.stockLevels','',8,'StockLevels Inventory','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(812,'inventory.productStock','',8,'ProductStock Inventory','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(813,'invoice.view','accounting',5,'View Invoice','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(814,'invoice.create','accounting',5,'Create Invoice','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(815,'invoice.edit','accounting',5,'Edit Invoice','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(816,'invoice.print','accounting',5,'Print Invoice','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(817,'invoice.delete','accounting',5,'Delete Invoice','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(818,'issue.view','',3,'View Issue','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(819,'issue.create','',3,'Create Issue','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(820,'issue.edit','',3,'Edit Issue','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(821,'issue.delete','',3,'Delete Issue','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(822,'job_position.view','hr',7,'View Job Position','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(823,'job_position.create','hr',7,'Create Job Position','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(824,'job_position.edit','hr',7,'Edit Job Position','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(825,'job_position.delete','hr',7,'Delete Job Position','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(826,'journal_entry.view','accounting',5,'View Journal Entry','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(827,'journal_entry.create','accounting',5,'Create Journal Entry','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(828,'journal_entry.showImport','accounting',5,'ShowImport Journal Entry','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(829,'journal_entry.processImport','accounting',5,'ProcessImport Journal Entry','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(830,'journal_entry.processBankRegisterImport','accounting',5,'ProcessBankRegisterImport Journal Entry','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(831,'journal_entry.bulkPost','accounting',5,'BulkPost Journal Entry','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(832,'journal_entry.bulkVoid','accounting',5,'BulkVoid Journal Entry','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(833,'journal_entry.bulkDelete','accounting',5,'BulkDelete Journal Entry','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(834,'journal_entry.delete','accounting',5,'Delete Journal Entry','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(835,'location.view','',8,'View Location','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(836,'location.create','',8,'Create Location','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(837,'location.edit','',8,'Edit Location','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(838,'location.delete','',8,'Delete Location','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(839,'lot_serial.view','inventory',8,'View Lot Serial','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(840,'lot_serial.traceability','inventory',8,'Traceability Lot Serial','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(841,'lot_serial.expiration','inventory',8,'Expiration Lot Serial','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(842,'mfa.verifyForm','',17,'VerifyForm Mfa','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(843,'mfa.verify','',17,'Verify Mfa','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(844,'mfa.resendOTP','',17,'ResendOTP Mfa','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(845,'mfa.setupForm','',17,'SetupForm Mfa','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(846,'mfa.setup','',17,'Setup Mfa','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(847,'mfa.showBackupCodes','',17,'ShowBackupCodes Mfa','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(848,'mfa.regenerateBackupCodes','',17,'RegenerateBackupCodes Mfa','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(849,'mfa.disable','',17,'Disable Mfa','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(850,'mrp.materialDetail','manufacturing',9,'MaterialDetail Mrp','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(851,'mrp.safetyStock','manufacturing',9,'SafetyStock Mrp','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(852,'mrp.updateSafetyStock','manufacturing',9,'UpdateSafetyStock Mrp','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(853,'mrp.requisitions','manufacturing',9,'Requisitions Mrp','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(854,'mrp.approveRequisition','manufacturing',9,'ApproveRequisition Mrp','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(855,'mrp.shortageReport','manufacturing',9,'ShortageReport Mrp','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(856,'machine_data.getStatus','',9,'GetStatus Machine Data','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(857,'machine_data.health','',9,'Health Machine Data','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(858,'maintenance.schedules','manufacturing',9,'Schedules Maintenance','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(859,'maintenance.workOrders','manufacturing',9,'WorkOrders Maintenance','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(860,'maintenance.downtime','manufacturing',9,'Downtime Maintenance','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(861,'manufacturing.dashboard','',9,'Dashboard Manufacturing','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(862,'menu.view','',4,'View Menu','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(863,'menu.create','',4,'Create Menu','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(864,'menu.edit','',4,'Edit Menu','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(865,'menu.delete','',4,'Delete Menu','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(866,'menu.roleAccess','',4,'RoleAccess Menu','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(867,'menu.updateRoleAccess','',4,'UpdateRoleAccess Menu','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(868,'menu.updateOrder','',4,'UpdateOrder Menu','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(869,'menu.quickUpdate','',4,'QuickUpdate Menu','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(870,'messaging.channel','messaging',3,'Channel Messaging','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(871,'messaging.sendMessage','messaging',3,'SendMessage Messaging','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(872,'messaging.getChannelMembers','messaging',3,'GetChannelMembers Messaging','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(873,'messaging.getNewMessages','messaging',3,'GetNewMessages Messaging','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(874,'messaging.updateStatus','messaging',3,'UpdateStatus Messaging','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(875,'messaging.directMessage','messaging',3,'DirectMessage Messaging','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(876,'messaging.getThread','messaging',3,'GetThread Messaging','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(877,'messaging.search','messaging',3,'Search Messaging','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(878,'messaging.getUnreadCount','messaging',3,'GetUnreadCount Messaging','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(879,'messaging.getOnlineUsers','messaging',3,'GetOnlineUsers Messaging','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(880,'messaging.removeMember','messaging',3,'RemoveMember Messaging','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(881,'messaging.deleteChannel','messaging',3,'DeleteChannel Messaging','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(882,'nda.create','crm',6,'Create Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(883,'nda.generateFromTemplate','crm',6,'GenerateFromTemplate Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(884,'nda.edit','crm',6,'Edit Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(885,'nda.delete','crm',6,'Delete Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(886,'nda.sendForSignature','crm',6,'SendForSignature Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(887,'nda.sendNDAEmail','crm',6,'SendNDAEmail Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(888,'nda.publicSign','crm',6,'PublicSign Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(889,'nda.signNDA','crm',6,'SignNDA Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(890,'nda.declineNDA','crm',6,'DeclineNDA Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(891,'nda.checkStatus','crm',6,'CheckStatus Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(892,'nda.preview','crm',6,'Preview Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(893,'nda.counterSign','crm',6,'CounterSign Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(894,'nda.submitCounterSignature','crm',6,'SubmitCounterSignature Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(895,'nda.emailNDA','crm',6,'EmailNDA Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(896,'ndatemplate.view','crm',6,'View Ndatemplate','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(897,'ndatemplate.edit','crm',6,'Edit Ndatemplate','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(898,'network_monitor.status','',3,'Status Network Monitor','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(899,'network_monitor.logs','',3,'Logs Network Monitor','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(900,'network_monitor.statistics','',3,'Statistics Network Monitor','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(901,'network_monitor.feed','',3,'Feed Network Monitor','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(902,'network_monitor.logDetail','',3,'LogDetail Network Monitor','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(923,'notification.getUnread','',3,'GetUnread Notification','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(924,'notification.view','',3,'View Notification','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(925,'notification.markAsRead','',3,'MarkAsRead Notification','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(926,'notification.markAllAsRead','',3,'MarkAllAsRead Notification','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(927,'notification.delete','',3,'Delete Notification','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(928,'offer.view','hr',7,'View Offer','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(929,'offer.create','hr',7,'Create Offer','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(930,'offer.edit','hr',7,'Edit Offer','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(931,'offer.delete','hr',7,'Delete Offer','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(932,'offer.printLetter','hr',7,'PrintLetter Offer','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(933,'opportunity.pipeline','crm',6,'Pipeline Opportunity','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(934,'opportunity.create','crm',6,'Create Opportunity','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(935,'opportunity.view','crm',6,'View Opportunity','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(936,'opportunity.edit','crm',6,'Edit Opportunity','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(937,'opportunity.delete','crm',6,'Delete Opportunity','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(938,'opportunity.updateTaskStatus','crm',6,'UpdateTaskStatus Opportunity','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(939,'opportunity.updateStage','crm',6,'UpdateStage Opportunity','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(940,'opportunity.sendEmail','crm',6,'SendEmail Opportunity','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(941,'opportunity.downloadDocument','crm',6,'DownloadDocument Opportunity','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(942,'opportunity.deleteDocument','crm',6,'DeleteDocument Opportunity','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(943,'opportunity.deleteCompetitor','crm',6,'DeleteCompetitor Opportunity','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(944,'opportunity.saveCloseReason','crm',6,'SaveCloseReason Opportunity','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(945,'opportunity.clone','crm',6,'Clone Opportunity','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(946,'payment.view','',5,'View Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(947,'payment.create','',5,'Create Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(948,'payment.customerInvoices','',5,'CustomerInvoices Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(949,'payment.delete','',5,'Delete Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(950,'payroll.dashboard','hr',7,'Dashboard Payroll','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(951,'period_closing.close','',5,'Close Period Closing','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(952,'period_closing.reopen','',5,'Reopen Period Closing','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(953,'period_closing.checkPrerequisites','',5,'CheckPrerequisites Period Closing','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(954,'permission_group.view','admin',4,'View Permission Group','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(955,'permission_group.create','admin',4,'Create Permission Group','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(956,'permission_group.edit','admin',4,'Edit Permission Group','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(957,'permission_group.delete','admin',4,'Delete Permission Group','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(958,'pipedrive_import.importOrganizations','',4,'ImportOrganizations Pipedrive Import','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(959,'pipedrive_import.importDeals','',4,'ImportDeals Pipedrive Import','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(960,'pipedrive_import.importLeads','',4,'ImportLeads Pipedrive Import','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(961,'pipedrive_import.importNotes','',4,'ImportNotes Pipedrive Import','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(962,'pipedrive_import.importFiles','',4,'ImportFiles Pipedrive Import','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(963,'pipedrive_import.importAll','',4,'ImportAll Pipedrive Import','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(964,'pipedrive_import.viewLog','',4,'ViewLog Pipedrive Import','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(965,'pipedrive_import.getStats','',4,'GetStats Pipedrive Import','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(966,'position.view','hr',7,'View Position','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(967,'position.create','hr',7,'Create Position','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(968,'position.edit','hr',7,'Edit Position','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(969,'position.delete','hr',7,'Delete Position','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(970,'position.toggleActive','hr',7,'ToggleActive Position','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(971,'pricing_rule.create','sales',11,'Create Pricing Rule','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(972,'pricing_rule.edit','sales',11,'Edit Pricing Rule','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(973,'pricing_rule.delete','sales',11,'Delete Pricing Rule','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(974,'pricing_rule.toggle','sales',11,'Toggle Pricing Rule','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(975,'pricing_rule.calculatePrice','sales',11,'CalculatePrice Pricing Rule','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(976,'pro_forma.location','',19,'Location Pro Forma','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(977,'pro_forma.compare','',19,'Compare Pro Forma','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(978,'pro_forma.export','',19,'Export Pro Forma','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(979,'pro_forma.exportExcel','',19,'ExportExcel Pro Forma','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(980,'pro_forma.calculate','',19,'Calculate Pro Forma','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(981,'product.view','inventory',8,'View Product','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(982,'product.create','inventory',8,'Create Product','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(983,'product.edit','inventory',8,'Edit Product','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(984,'product.delete','inventory',8,'Delete Product','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(985,'product_forecast.gettingStarted','inventory',19,'GettingStarted Product Forecast','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(986,'product_forecast.autoConfig','inventory',19,'AutoConfig Product Forecast','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(987,'product_forecast.updateConfig','inventory',19,'UpdateConfig Product Forecast','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(988,'product_forecast.generate','inventory',19,'Generate Product Forecast','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(989,'product_forecast.proforma','inventory',19,'Proforma Product Forecast','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(990,'product_forecast.sensitivity','inventory',19,'Sensitivity Product Forecast','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(991,'product_forecast.compare','inventory',19,'Compare Product Forecast','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(992,'product_forecast.exportExcel','inventory',19,'ExportExcel Product Forecast','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(993,'product_forecast.variance','inventory',19,'Variance Product Forecast','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(994,'product_forecast.commandCenter','inventory',19,'CommandCenter Product Forecast','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(995,'profile.view','',3,'View Profile','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(996,'profile.updateSettings','',3,'UpdateSettings Profile','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(997,'profile.uploadAvatar','',3,'UploadAvatar Profile','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(998,'profile.changePassword','',3,'ChangePassword Profile','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(999,'profile.createCustomMenu','',3,'CreateCustomMenu Profile','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1000,'profile.deleteCustomMenu','',3,'DeleteCustomMenu Profile','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1001,'projects.dashboard','projects',14,'Dashboard Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1002,'projects.myTasks','projects',14,'MyTasks Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1003,'projects.listView','projects',14,'ListView Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1004,'projects.exportTasks','projects',14,'ExportTasks Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1005,'projects.createTask','projects',14,'CreateTask Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1006,'projects.updateTask','projects',14,'UpdateTask Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1007,'projects.moveTask','projects',14,'MoveTask Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1008,'projects.deleteTask','projects',14,'DeleteTask Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1009,'projects.getTask','projects',14,'GetTask Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1010,'projects.addComment','projects',14,'AddComment Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1011,'projects.assignUser','projects',14,'AssignUser Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1012,'projects.unassignUser','projects',14,'UnassignUser Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1013,'projects.addChecklistItem','projects',14,'AddChecklistItem Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1014,'projects.toggleChecklistItem','projects',14,'ToggleChecklistItem Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1015,'projects.addTeamMember','projects',14,'AddTeamMember Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1016,'projects.updateTeamMemberRole','projects',14,'UpdateTeamMemberRole Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1017,'projects.removeTeamMember','projects',14,'RemoveTeamMember Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1018,'projects.addTeamGroup','projects',14,'AddTeamGroup Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1019,'projects.removeTeamGroup','projects',14,'RemoveTeamGroup Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1020,'projects.assignGroupToTask','projects',14,'AssignGroupToTask Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1021,'projects.unassignGroupFromTask','projects',14,'UnassignGroupFromTask Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1022,'projects.financials','projects',14,'Financials Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1023,'projects.exportFinancials','projects',14,'ExportFinancials Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1024,'projects.createTransaction','projects',14,'CreateTransaction Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1025,'projects.storeTransaction','projects',14,'StoreTransaction Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1026,'projects.editTransaction','projects',14,'EditTransaction Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1027,'projects.updateTransaction','projects',14,'UpdateTransaction Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1028,'projects.linkTransactionToTask','projects',14,'LinkTransactionToTask Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1029,'projects.deleteTransaction','projects',14,'DeleteTransaction Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1030,'projects.migrateTransactions','projects',14,'MigrateTransactions Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1031,'projects.processMigration','projects',14,'ProcessMigration Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1032,'projects.gantt','projects',14,'Gantt Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1033,'projects.calculateCriticalPath','projects',14,'CalculateCriticalPath Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1034,'projects.updateTaskDates','projects',14,'UpdateTaskDates Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1035,'projects.addTaskDependency','projects',14,'AddTaskDependency Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1036,'projects.removeTaskDependency','projects',14,'RemoveTaskDependency Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1037,'projects.resources','projects',14,'Resources Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1038,'projects.resourceDayDetails','projects',14,'ResourceDayDetails Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1039,'projects.autoAllocateResources','projects',14,'AutoAllocateResources Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1040,'projects.getTaskComments','projects',14,'GetTaskComments Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1041,'projects.addTaskComment','projects',14,'AddTaskComment Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1042,'projects.exportGanttPDF','projects',14,'ExportGanttPDF Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1043,'projects.exportGanttExcel','projects',14,'ExportGanttExcel Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1044,'promotion.create','sales',11,'Create Promotion','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1045,'promotion.edit','sales',11,'Edit Promotion','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1046,'promotion.delete','sales',11,'Delete Promotion','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1047,'promotion.validateCode','sales',11,'ValidateCode Promotion','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1048,'promotion.applyPromotion','sales',11,'ApplyPromotion Promotion','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1049,'purchase_bill.view','',5,'View Purchase Bill','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1050,'purchase_bill.create','',5,'Create Purchase Bill','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1051,'purchase_bill.edit','',5,'Edit Purchase Bill','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1052,'purchase_bill.delete','',5,'Delete Purchase Bill','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1053,'purchase_order.view','purchases',10,'View Purchase Order','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1054,'purchase_order.create','purchases',10,'Create Purchase Order','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1055,'purchase_order.edit','purchases',10,'Edit Purchase Order','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1056,'purchase_order.delete','purchases',10,'Delete Purchase Order','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1057,'purchase_payment.view','',5,'View Purchase Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1058,'purchase_payment.create','',5,'Create Purchase Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1059,'purchase_payment.delete','',5,'Delete Purchase Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1060,'purchase_requisition.view','',10,'View Purchase Requisition','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1061,'purchase_requisition.create','',10,'Create Purchase Requisition','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1062,'purchase_requisition.edit','',10,'Edit Purchase Requisition','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1063,'purchase_requisition.delete','',10,'Delete Purchase Requisition','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1064,'purchase_requisition.approve','',10,'Approve Purchase Requisition','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1065,'purchase_requisition.reject','',10,'Reject Purchase Requisition','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1066,'purchase_return.view','sales',10,'View Purchase Return','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1067,'purchase_return.create','sales',10,'Create Purchase Return','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1068,'purchase_return.edit','sales',10,'Edit Purchase Return','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1069,'purchase_return.delete','sales',10,'Delete Purchase Return','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1070,'purchases.dashboard','',10,'Dashboard Purchases','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1071,'quality.inspections','manufacturing',9,'Inspections Quality','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1072,'quality.storeInspection','manufacturing',9,'StoreInspection Quality','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1073,'quality.inspection','manufacturing',9,'Inspection Quality','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1074,'quality.recordInspectionResult','manufacturing',9,'RecordInspectionResult Quality','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1075,'quality.ncr','manufacturing',9,'Ncr Quality','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1076,'quality.storeNCR','manufacturing',9,'StoreNCR Quality','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1077,'quality.ncrDetail','manufacturing',9,'NcrDetail Quality','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1078,'quality.updateNCR','manufacturing',9,'UpdateNCR Quality','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1079,'quality.metrics','manufacturing',9,'Metrics Quality','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1080,'quality.templates','manufacturing',9,'Templates Quality','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1081,'quality.storeTemplate','manufacturing',9,'StoreTemplate Quality','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1082,'quality.generateCoA','manufacturing',9,'GenerateCoA Quality','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1083,'quick_books.view','',4,'View Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1084,'quick_books.connect','',4,'Connect Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1085,'quick_books.callback','',4,'Callback Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1086,'quick_books.disconnect','',4,'Disconnect Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1087,'quick_books.accountMapping','',4,'AccountMapping Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1088,'quick_books.saveMapping','',4,'SaveMapping Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1089,'quick_books.deleteMapping','',4,'DeleteMapping Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1090,'quick_books.syncQueue','',4,'SyncQueue Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1091,'quick_books.processQueue','',4,'ProcessQueue Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1092,'quick_books.retryFailed','',4,'RetryFailed Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1093,'quick_books.syncAllEmployees','',4,'SyncAllEmployees Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1094,'quick_books.syncLogs','',4,'SyncLogs Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1095,'quick_books.settings','',4,'Settings Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1096,'quick_books.saveSettings','',4,'SaveSettings Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1097,'quote.create','crm',11,'Create Quote','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1098,'quote.edit','crm',11,'Edit Quote','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1099,'quote.delete','crm',11,'Delete Quote','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1100,'quote.print','crm',11,'Print Quote','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1101,'quote.convertToSalesOrder','crm',11,'ConvertToSalesOrder Quote','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1102,'quote.export','crm',11,'Export Quote','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1103,'quote.sendForSignature','crm',11,'SendForSignature Quote','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1104,'quote.sendQuoteEmail','crm',11,'SendQuoteEmail Quote','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1105,'quote.acceptQuote','crm',11,'AcceptQuote Quote','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1106,'quote.declineQuote','crm',11,'DeclineQuote Quote','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1107,'quote_template.view','crm',11,'View Quote Template','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1108,'quote_template.create','crm',11,'Create Quote Template','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1109,'quote_template.edit','crm',11,'Edit Quote Template','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1110,'quote_template.delete','crm',11,'Delete Quote Template','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1111,'quote_template.setDefault','crm',11,'SetDefault Quote Template','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1112,'quote_template.getTemplate','crm',11,'GetTemplate Quote Template','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1113,'rfq.view','purchases',10,'View Rfq','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1114,'rfq.create','purchases',10,'Create Rfq','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1115,'rfq.edit','purchases',10,'Edit Rfq','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1116,'rfq.delete','purchases',10,'Delete Rfq','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1117,'recruitment.view','hr',7,'View Recruitment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1118,'recurring_transaction.view','',5,'View Recurring Transaction','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1119,'recurring_transaction.create','',5,'Create Recurring Transaction','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1120,'recurring_transaction.edit','',5,'Edit Recurring Transaction','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1121,'recurring_transaction.delete','',5,'Delete Recurring Transaction','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1122,'recurring_transaction.toggleActive','',5,'ToggleActive Recurring Transaction','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1123,'recurring_transaction.execute','',5,'Execute Recurring Transaction','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1124,'recurring_transaction.getDue','',5,'GetDue Recurring Transaction','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1125,'recurring_transaction.executeDue','',5,'ExecuteDue Recurring Transaction','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1126,'reports.sales','',15,'Sales Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1127,'reports.inventory','',15,'Inventory Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1128,'reports.financial','',15,'Financial Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1129,'reports.hr','',15,'Hr Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1130,'reports.customers','',15,'Customers Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1131,'reports.purchases','',15,'Purchases Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1132,'return.create','sales',11,'Create Return','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1133,'return.edit','sales',11,'Edit Return','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1134,'return.approve','sales',11,'Approve Return','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1135,'return.reject','sales',11,'Reject Return','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1136,'return.complete','sales',11,'Complete Return','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1137,'review.view','hr',7,'View Review','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1138,'review.create','hr',7,'Create Review','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1139,'review.edit','hr',7,'Edit Review','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1140,'review.delete','hr',7,'Delete Review','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1141,'role.view','admin',4,'View Role','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1142,'role.create','admin',4,'Create Role','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1143,'role.edit','admin',4,'Edit Role','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1144,'role.delete','admin',4,'Delete Role','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1145,'role.report','admin',4,'Report Role','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1146,'role.printRole','admin',4,'PrintRole Role','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1147,'sales.dashboard','',11,'Dashboard Sales','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1148,'sales_order.view','sales',11,'View Sales Order','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1149,'sales_order.create','sales',11,'Create Sales Order','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1150,'sales_order.edit','sales',11,'Edit Sales Order','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1151,'sales_order.print','sales',11,'Print Sales Order','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1152,'sales_order.delete','sales',11,'Delete Sales Order','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1153,'sales_report.view','',11,'View Sales Report','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1154,'sales_report.getSummary','',11,'GetSummary Sales Report','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1155,'sales_report.getTopProducts','',11,'GetTopProducts Sales Report','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1156,'sales_report.getTopCustomers','',11,'GetTopCustomers Sales Report','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1157,'sales_report.getByStatus','',11,'GetByStatus Sales Report','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1158,'sales_report.getByChannel','',11,'GetByChannel Sales Report','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1159,'sales_report.getInvoiceAnalytics','',11,'GetInvoiceAnalytics Sales Report','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1160,'sales_report.getPaymentAnalytics','',11,'GetPaymentAnalytics Sales Report','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1161,'sales_report.getCategoryPerformance','',11,'GetCategoryPerformance Sales Report','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1162,'sales_report.getSalesGrowth','',11,'GetSalesGrowth Sales Report','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1163,'sales_report.getQuoteConversion','',11,'GetQuoteConversion Sales Report','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1164,'sales_report.exportReport','',11,'ExportReport Sales Report','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1165,'scheduling.view','',9,'View Scheduling','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1166,'scheduling.deleteAssignment','',9,'DeleteAssignment Scheduling','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1167,'scheduling.getSchedulingData','',9,'GetSchedulingData Scheduling','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1168,'scheduling.getConflicts','',9,'GetConflicts Scheduling','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1169,'scheduling.calendar','',9,'Calendar Scheduling','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1170,'scheduling.getCalendarEvents','',9,'GetCalendarEvents Scheduling','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1171,'search.searchCustomers','',3,'SearchCustomers Search','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1172,'separation.view','hr',7,'View Separation','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1173,'separation.create','hr',7,'Create Separation','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1174,'separation.edit','hr',7,'Edit Separation','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1175,'separation.delete','hr',7,'Delete Separation','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1176,'settings.updateCompany','admin',16,'UpdateCompany Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1177,'settings.updateDropdown','admin',16,'UpdateDropdown Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1178,'settings.addDropdownOption','admin',16,'AddDropdownOption Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1179,'settings.removeDropdownOption','admin',16,'RemoveDropdownOption Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1180,'settings.initializeDefaults','admin',16,'InitializeDefaults Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1181,'settings.updateGlobalFacilities','admin',16,'UpdateGlobalFacilities Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1182,'settings.updateGlobalPayroll','admin',16,'UpdateGlobalPayroll Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1183,'settings.updateGlobalBusinessParameters','admin',16,'UpdateGlobalBusinessParameters Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1184,'settings.termsConditionsCreate','admin',16,'TermsConditionsCreate Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1185,'settings.termsConditionsStore','admin',16,'TermsConditionsStore Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1186,'settings.termsConditionsEdit','admin',16,'TermsConditionsEdit Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1187,'settings.termsConditionsUpdate','admin',16,'TermsConditionsUpdate Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1188,'settings.termsConditionsDelete','admin',16,'TermsConditionsDelete Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1189,'settings.company','admin',16,'Company Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1190,'settings.email','admin',16,'Email Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1191,'settings.updateEmail','admin',16,'UpdateEmail Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1192,'settings.createSignatureTemplate','admin',16,'CreateSignatureTemplate Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1193,'settings.storeSignatureTemplate','admin',16,'StoreSignatureTemplate Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1194,'settings.editSignatureTemplate','admin',16,'EditSignatureTemplate Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1195,'settings.updateSignatureTemplate','admin',16,'UpdateSignatureTemplate Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1196,'settings.deleteSignatureTemplate','admin',16,'DeleteSignatureTemplate Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1197,'settings.setDefaultTemplate','admin',16,'SetDefaultTemplate Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1198,'settings.assignTemplateToRole','admin',16,'AssignTemplateToRole Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1199,'settings.assignTemplateToUser','admin',16,'AssignTemplateToUser Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1200,'settings.createAlias','admin',16,'CreateAlias Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1201,'settings.updateAlias','admin',16,'UpdateAlias Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1202,'settings.deleteAlias','admin',16,'DeleteAlias Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1203,'settings.addRecipient','admin',16,'AddRecipient Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1204,'settings.removeRecipient','admin',16,'RemoveRecipient Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1205,'settings.getAliasRecipients','admin',16,'GetAliasRecipients Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1206,'settings.businessParameters','admin',16,'BusinessParameters Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1207,'settings.editBusinessParameters','admin',16,'EditBusinessParameters Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1208,'settings.updateBusinessParameters','admin',16,'UpdateBusinessParameters Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1209,'settings.facilities','admin',16,'Facilities Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1210,'settings.editFacility','admin',16,'EditFacility Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1211,'settings.updateFacility','admin',16,'UpdateFacility Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1212,'settings.payroll','admin',16,'Payroll Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1213,'settings.editPayroll','admin',16,'EditPayroll Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1214,'settings.updatePayroll','admin',16,'UpdatePayroll Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1215,'settings.dropdownsSales','admin',16,'DropdownsSales Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1216,'settings.dropdownsOperations','admin',16,'DropdownsOperations Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1217,'settings.tax','admin',16,'Tax Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1218,'settings.updateTax','admin',16,'UpdateTax Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1219,'settings.fiscalYear','admin',16,'FiscalYear Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1220,'settings.updateFiscalYear','admin',16,'UpdateFiscalYear Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1221,'settings.costAllocation','admin',16,'CostAllocation Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1222,'settings.storeCostAllocation','admin',16,'StoreCostAllocation Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1223,'settings.updateCostAllocation','admin',16,'UpdateCostAllocation Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1224,'settings.deleteCostAllocation','admin',16,'DeleteCostAllocation Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1225,'settings.paymentTerms','admin',16,'PaymentTerms Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1226,'settings.storePaymentTerm','admin',16,'StorePaymentTerm Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1227,'settings.updatePaymentTerm','admin',16,'UpdatePaymentTerm Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1228,'settings.deletePaymentTerm','admin',16,'DeletePaymentTerm Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1229,'settings.setDefaultPaymentTerm','admin',16,'SetDefaultPaymentTerm Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1230,'settings.ppeParameters','admin',16,'PpeParameters Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1231,'settings.storePpeParameter','admin',16,'StorePpeParameter Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1232,'settings.updatePpeParameter','admin',16,'UpdatePpeParameter Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1233,'settings.deletePpeParameter','admin',16,'DeletePpeParameter Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1234,'shipment.view','sales',11,'View Shipment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1235,'shipment.create','sales',11,'Create Shipment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1236,'shipment.updateStatus','sales',11,'UpdateStatus Shipment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1237,'shipment.delete','sales',11,'Delete Shipment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1238,'shop_floor.view','manufacturing',9,'View Shop Floor','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1239,'shop_floor.workOrder','manufacturing',9,'WorkOrder Shop Floor','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1240,'shop_floor.recordOutput','manufacturing',9,'RecordOutput Shop Floor','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1241,'shop_floor.recordMaterialConsumption','manufacturing',9,'RecordMaterialConsumption Shop Floor','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1242,'shop_floor.recordQualityCheck','manufacturing',9,'RecordQualityCheck Shop Floor','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1243,'stock_movement.view','inventory',8,'View Stock Movement','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1244,'stock_movement.create','inventory',8,'Create Stock Movement','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1245,'supplier.view','purchases',10,'View Supplier','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1246,'supplier.create','purchases',10,'Create Supplier','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1247,'supplier.edit','purchases',10,'Edit Supplier','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1248,'supplier.delete','purchases',10,'Delete Supplier','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1249,'supplier.quickAdd','purchases',10,'QuickAdd Supplier','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1250,'support.create','crm',6,'Create Support','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1251,'support.view','crm',6,'View Support','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1252,'support.edit','crm',6,'Edit Support','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1253,'support.delete','crm',6,'Delete Support','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1254,'support.downloadAttachment','crm',6,'DownloadAttachment Support','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1255,'support.deleteAttachment','crm',6,'DeleteAttachment Support','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1256,'system_scripts.view','',4,'View System Scripts','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1257,'system_scripts.execute','',4,'Execute System Scripts','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1258,'system_scripts.history','',4,'History System Scripts','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1259,'tax_filing.edit','accounting',5,'Edit Tax Filing','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1260,'tax_filing.file','accounting',5,'File Tax Filing','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1261,'tax_filing.markPaid','accounting',5,'MarkPaid Tax Filing','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1262,'tax_filing.delete','accounting',5,'Delete Tax Filing','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1263,'tax_jurisdiction.view','accounting',5,'View Tax Jurisdiction','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1264,'tax_jurisdiction.create','accounting',5,'Create Tax Jurisdiction','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1265,'tax_jurisdiction.edit','accounting',5,'Edit Tax Jurisdiction','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1266,'tax_jurisdiction.delete','accounting',5,'Delete Tax Jurisdiction','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1267,'tax_jurisdiction.deactivate','accounting',5,'Deactivate Tax Jurisdiction','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1268,'tax_jurisdiction.getCitiesByState','accounting',5,'GetCitiesByState Tax Jurisdiction','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1269,'tax_jurisdiction.calculateCustomerTax','accounting',5,'CalculateCustomerTax Tax Jurisdiction','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1270,'tax_payment.view','accounting',5,'View Tax Payment','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1271,'tax_payment.create','accounting',5,'Create Tax Payment','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1272,'tax_payment.edit','accounting',5,'Edit Tax Payment','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1273,'tax_payment.delete','accounting',5,'Delete Tax Payment','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1274,'tax_payment.file','accounting',5,'File Tax Payment','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1275,'tax_payment.markPaid','accounting',5,'MarkPaid Tax Payment','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1276,'tax_payment.liabilityReport','accounting',5,'LiabilityReport Tax Payment','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1277,'terms_conditions.view','',11,'View Terms Conditions','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1278,'terms_conditions.create','',11,'Create Terms Conditions','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1279,'terms_conditions.edit','',11,'Edit Terms Conditions','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1280,'terms_conditions.delete','',11,'Delete Terms Conditions','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1281,'terms_conditions.getByType','',11,'GetByType Terms Conditions','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1282,'training.delete','hr',7,'Delete Training','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1283,'transfer.view','inventory',8,'View Transfer','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1284,'transfer.create','inventory',8,'Create Transfer','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1285,'transfer.ship','inventory',8,'Ship Transfer','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1286,'user.view','admin',4,'View User','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1287,'user.create','admin',4,'Create User','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1288,'user.edit','admin',4,'Edit User','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1289,'user.delete','admin',4,'Delete User','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1290,'user_group.view','admin',4,'View User Group','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1291,'user_group.create','admin',4,'Create User Group','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1292,'user_group.edit','admin',4,'Edit User Group','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1293,'user_group.delete','admin',4,'Delete User Group','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1294,'user_group.removeMember','admin',4,'RemoveMember User Group','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1295,'user_group.removeUse','admin',4,'RemoveUse User Group','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1296,'vendor_payment.view','',5,'View Vendor Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1297,'vendor_payment.create','',5,'Create Vendor Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1298,'vendor_payment.edit','',5,'Edit Vendor Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1299,'vendor_payment.delete','',5,'Delete Vendor Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1300,'vendor_payment.void','',5,'Void Vendor Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1301,'vendor_payment.post','',5,'Post Vendor Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1302,'vendor_payment.printCheck','',5,'PrintCheck Vendor Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1303,'vendor_payment.getUnpaidBills','',5,'GetUnpaidBills Vendor Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1304,'vendor_payment.getNextCheckNumber','',5,'GetNextCheckNumber Vendor Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1305,'warehouse.view','inventory',8,'View Warehouse','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1306,'warehouse.create','inventory',8,'Create Warehouse','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1307,'warehouse.edit','inventory',8,'Edit Warehouse','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1308,'warehouse.delete','inventory',8,'Delete Warehouse','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1309,'work_order.view','manufacturing',9,'View Work Order','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1310,'work_order.create','manufacturing',9,'Create Work Order','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1311,'work_order.delete','manufacturing',9,'Delete Work Order','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1312,'aitest.view','',3,'View Aitest','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1313,'aitest.chat','',3,'Chat Aitest','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1314,'aitest.generate','',3,'Generate Aitest','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1315,'aitest.extract','',3,'Extract Aitest','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1316,'aitest.sentiment','',3,'Sentiment Aitest','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1317,'aitest.suggest','',3,'Suggest Aitest','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1318,'aitest.schema','',3,'Schema Aitest','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1319,'aitest.dataAnalysis','',3,'DataAnalysis Aitest','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1320,'bank_import.upload','accounting',5,'Upload Bank Import','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1321,'bank_import.categorizeTransaction','accounting',5,'CategorizeTransaction Bank Import','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1322,'bank_import.applyRules','accounting',5,'ApplyRules Bank Import','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1323,'bank_import.toggleRule','accounting',5,'ToggleRule Bank Import','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1324,'camera_audit.editStation','',3,'EditStation Camera Audit','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1325,'contact_api.getByCompany','crm',4,'GetByCompany Contact Api','2025-11-28 22:08:47','2025-11-28 23:03:01'),
(1326,'currency.createCurrency','',5,'CreateCurrency Currency','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1327,'currency.createRevaluation','',5,'CreateRevaluation Currency','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1328,'dashboard.addWidget','',3,'AddWidget Dashboard','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1329,'dashboard.toggleWidget','',3,'ToggleWidget Dashboard','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1330,'dashboard.refreshWidget','',3,'RefreshWidget Dashboard','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1331,'email_template.toggleActive','',3,'ToggleActive Email Template','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1332,'file_manager.upload','files',3,'Upload File Manager','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1333,'file_manager.createFolder','files',3,'CreateFolder File Manager','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1334,'file_manager.rename','files',3,'Rename File Manager','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1335,'file_manager.move','files',3,'Move File Manager','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1336,'file_manager.moveFolder','files',3,'MoveFolder File Manager','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1337,'file_manager.compress','files',3,'Compress File Manager','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1338,'file_manager.extract','files',3,'Extract File Manager','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1339,'file_manager.shareFile','files',3,'ShareFile File Manager','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1340,'file_manager.shareFolder','files',3,'ShareFolder File Manager','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1341,'financial_pro_forma.generate','',19,'Generate Financial Pro Forma','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1342,'financial_pro_forma.compare','',19,'Compare Financial Pro Forma','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1343,'forecaster.createForecast','',19,'CreateForecast Forecaster','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1344,'forecaster.createScenario','',19,'CreateScenario Forecaster','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1345,'forecaster.createFinancing','',19,'CreateFinancing Forecaster','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1346,'forecaster.createInvestment','',19,'CreateInvestment Forecaster','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1347,'help_desk.chatAssignSession','helpdesk',13,'ChatAssignSession Help Desk','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1348,'help_desk.chatEndSession','helpdesk',13,'ChatEndSession Help Desk','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1349,'help_desk.chatCreateSession','helpdesk',13,'ChatCreateSession Help Desk','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1350,'internal_note_api.view','',4,'View Internal Note Api','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1351,'mrp.calculate','manufacturing',9,'Calculate Mrp','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1352,'mrp.generateRequisitions','manufacturing',9,'GenerateRequisitions Mrp','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1353,'mrp.autoCalculateSafetyStock','manufacturing',9,'AutoCalculateSafetyStock Mrp','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1354,'mrp.convertToPO','manufacturing',9,'ConvertToPO Mrp','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1355,'machine_data.updateProduction','',9,'UpdateProduction Machine Data','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1356,'machine_data.updateUtilization','',9,'UpdateUtilization Machine Data','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1357,'machine_data.batchUpdate','',9,'BatchUpdate Machine Data','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1358,'maintenance.createSchedule','manufacturing',9,'CreateSchedule Maintenance','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1359,'maintenance.storeSchedule','manufacturing',9,'StoreSchedule Maintenance','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1360,'maintenance.createWorkOrder','manufacturing',9,'CreateWorkOrder Maintenance','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1361,'maintenance.storeWorkOrder','manufacturing',9,'StoreWorkOrder Maintenance','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1362,'maintenance.createDowntime','manufacturing',9,'CreateDowntime Maintenance','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1363,'maintenance.storeDowntime','manufacturing',9,'StoreDowntime Maintenance','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1364,'messaging.createChannel','messaging',3,'CreateChannel Messaging','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1365,'messaging.addMember','messaging',3,'AddMember Messaging','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1366,'messaging.uploadFile','messaging',3,'UploadFile Messaging','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1367,'messaging.addReaction','messaging',3,'AddReaction Messaging','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1368,'messaging.leaveChannel','messaging',3,'LeaveChannel Messaging','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1369,'ndatemplate.toggle','crm',6,'Toggle Ndatemplate','2025-11-28 22:08:47','2025-11-28 23:03:01'),
(1370,'network_monitor.clearLogs','',3,'ClearLogs Network Monitor','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1371,'network_monitor.addAllowedHost','',3,'AddAllowedHost Network Monitor','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1376,'opportunity.addTask','crm',6,'AddTask Opportunity','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1377,'opportunity.logReceivedEmail','crm',6,'LogReceivedEmail Opportunity','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1378,'opportunity.uploadDocument','crm',6,'UploadDocument Opportunity','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1379,'opportunity.addCompetitor','crm',6,'AddCompetitor Opportunity','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1380,'opportunity.assign','crm',6,'Assign Opportunity','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1381,'period_closing.processClose','',5,'ProcessClose Period Closing','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1382,'permission_group.assignPermissions','admin',4,'AssignPermissions Permission Group','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1383,'permission_group.reorder','admin',4,'Reorder Permission Group','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1384,'quality.createInspection','manufacturing',9,'CreateInspection Quality','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1385,'quality.completeInspection','manufacturing',9,'CompleteInspection Quality','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1386,'quality.createNCR','manufacturing',9,'CreateNCR Quality','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1387,'quality.createTemplate','manufacturing',9,'CreateTemplate Quality','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1388,'scheduling.autoSchedule','',9,'AutoSchedule Scheduling','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1389,'scheduling.rescheduleAssignment','',9,'RescheduleAssignment Scheduling','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1390,'scheduling.createAssignment','',9,'CreateAssignment Scheduling','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1391,'search.search','',3,'Search Search','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1392,'shop_floor.startProduction','manufacturing',9,'StartProduction Shop Floor','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1393,'shop_floor.pauseProduction','manufacturing',9,'PauseProduction Shop Floor','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1394,'shop_floor.completeProduction','manufacturing',9,'CompleteProduction Shop Floor','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1395,'support.addResponse','crm',6,'AddResponse Support','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1396,'tax_payment.calculatePeriodTax','accounting',5,'CalculatePeriodTax Tax Payment','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1397,'transfer.receive','inventory',8,'Receive Transfer','2025-11-28 22:08:47','2025-11-28 23:03:01'),
(1398,'transfer.cancel','inventory',8,'Cancel Transfer','2025-11-28 22:08:47','2025-11-28 23:03:01'),
(1399,'user_group.addMember','admin',4,'AddMember User Group','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1400,'user_group.addUse','admin',4,'AddUse User Group','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1401,'hr.applications','hr',NULL,'View and manage job applications','2025-11-30 01:08:58','2025-11-30 01:08:58'),
(1402,'hr.interviews','hr',NULL,'View and manage interviews','2025-11-30 01:08:58','2025-11-30 01:08:58'),
(1403,'hr.assessments','hr',NULL,'View and manage assessments','2025-11-30 01:08:58','2025-11-30 01:08:58'),
(1404,'hr.offers','hr',NULL,'View and manage job offers','2025-11-30 01:08:58','2025-11-30 01:08:58'),
(1405,'hr.contracts','hr',NULL,'View and manage employee contracts','2025-11-30 01:08:58','2025-11-30 01:08:58'),
(1406,'hr.training','hr',NULL,'View and manage training programs','2025-11-30 01:08:58','2025-11-30 01:08:58'),
(1407,'hr.performance_reviews','hr',NULL,'View and manage performance reviews','2025-11-30 01:08:58','2025-11-30 01:08:58'),
(1408,'hr.issues__challenges','hr',NULL,'View and manage employee issues and challenges','2025-11-30 01:08:58','2025-11-30 01:08:58'),
(1409,'hr.separations','hr',NULL,'View and manage employee separations','2025-11-30 01:08:58','2025-11-30 01:08:58'),
(1410,'accounting.assets','accounting',NULL,'View Fixed Assets','2025-12-02 03:35:40','2025-12-02 03:35:40'),
(1411,'accounting.depreciation','accounting',NULL,'View Depreciation','2025-12-02 03:35:40','2025-12-02 03:35:40'),
(1412,'accounting.period','accounting',NULL,'View Period Closing','2025-12-02 03:35:40','2025-12-02 03:35:40'),
(1413,'accounting.bank_accounts','accounting',NULL,'View Bank Accounts','2025-12-02 03:35:40','2025-12-02 03:35:40'),
(1414,'accounting.reconciliation','accounting',NULL,'View Bank Reconciliation','2025-12-02 03:35:40','2025-12-02 03:35:40'),
(1415,'accounting.accounts','accounting',NULL,'View Chart of Accounts','2025-12-02 03:35:40','2025-12-02 03:35:40'),
(1416,'accounting.journal','accounting',NULL,'View Journal Entries','2025-12-02 03:35:40','2025-12-02 03:35:40'),
(1417,'accounting.currencies','accounting',NULL,'View Currencies','2025-12-02 03:35:40','2025-12-02 03:35:40'),
(1418,'accounting.exchange_rates','accounting',NULL,'View Exchange Rates','2025-12-02 03:35:40','2025-12-02 03:35:40'),
(1419,'diagrams.view','diagrams',NULL,'View diagrams','2025-12-02 03:44:08','2025-12-02 03:44:08'),
(1420,'diagrams.create','diagrams',NULL,'Create new diagrams','2025-12-02 03:44:08','2025-12-02 03:44:08'),
(1421,'diagrams.edit','diagrams',NULL,'Edit diagrams','2025-12-02 03:44:08','2025-12-02 03:44:08'),
(1422,'diagrams.delete','diagrams',NULL,'Delete diagrams','2025-12-02 03:44:08','2025-12-02 03:44:08'),
(1423,'diagrams.share','diagrams',NULL,'Share diagrams with other users','2025-12-02 03:44:08','2025-12-02 03:44:08'),
(1424,'diagrams.export','diagrams',NULL,'Export diagrams to PNG/SVG','2025-12-02 03:44:08','2025-12-02 03:44:08'),
(1449,'manufacturing.capacity_planning','manufacturing',NULL,'Access Capacity Planning','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1450,'manufacturing.planning_materials','manufacturing',NULL,'Access Planning & Materials','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1451,'manufacturing.production','manufacturing',NULL,'Access Production','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1452,'manufacturing.resources','manufacturing',NULL,'Access Resources','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1453,'manufacturing.quality_control','manufacturing',NULL,'Access Quality Control','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1454,'manufacturing.maintenance','manufacturing',NULL,'Access Maintenance','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1455,'manufacturing.costing','manufacturing',NULL,'Access Costing','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1456,'manufacturing.reports','manufacturing',NULL,'Access Manufacturing Reports','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1457,'accounting.operations','accounting',NULL,'Access Accounting Operations','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1458,'accounting.reports','accounting',NULL,'Access Accounting Reports','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1459,'accounting.assets_compliance','accounting',NULL,'Access Assets/Compliance','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1460,'accounting.banking_cash','accounting',NULL,'Access Banking/Cash','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1461,'accounting.multicurrency','accounting',NULL,'Access Multi-Currency','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1462,'inventory.product_management','inventory',NULL,'Access Product Management','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1463,'inventory.stock_management','inventory',NULL,'Access Stock Management','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1464,'inventory.tracking','inventory',NULL,'Access Lot/Serial Tracking','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1465,'inventory.locations','inventory',NULL,'Access Warehouse Locations','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1466,'inventory.reports','inventory',NULL,'Access Inventory Reports','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1467,'sales.orders','sales',NULL,'Access Sales Orders','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1468,'sales.fulfillment','sales',NULL,'Access Fulfillment (Shipments/Delivery)','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1469,'sales.configuration','sales',NULL,'Access Sales Configuration','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1470,'sales.reports','sales',NULL,'Access Sales Reports','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1471,'purchases.orders','purchases',NULL,'Access Purchase Orders','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1472,'purchases.suppliers','purchases',NULL,'Access Supplier Management','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1473,'purchases.receiving','purchases',NULL,'Access Goods Receipt','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1474,'purchases.reports','purchases',NULL,'Access Purchase Reports','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1475,'hr.employees','hr',NULL,'Access Employee Management','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1476,'hr.recruitment','hr',NULL,'Access Recruitment','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1477,'hr.development','hr',NULL,'Access Training & Development','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1478,'hr.payroll','hr',NULL,'Access Payroll','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1479,'hr.time_attendance','hr',NULL,'Access Time & Attendance','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1480,'hr.reports','hr',NULL,'Access HR Reports','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1481,'crm.sales_process','crm',NULL,'Access Sales Process (Quotes/Orders)','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1487,'purchases.procurement_process','purchases',NULL,'Access Procurement Process','2025-12-02 13:59:43','2025-12-02 13:59:43'),
(1488,'purchases.payments_documents','purchases',NULL,'Access Payments & Documents','2025-12-02 13:59:43','2025-12-02 13:59:43');
/*!40000 ALTER TABLE `permissions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `popular_searches_30d`
--

DROP TABLE IF EXISTS `popular_searches_30d`;
/*!50001 DROP VIEW IF EXISTS `popular_searches_30d`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `popular_searches_30d` AS SELECT
 1 AS `query`,
  1 AS `category`,
  1 AS `search_count`,
  1 AS `avg_results`,
  1 AS `avg_execution_time_ms`,
  1 AS `last_searched_at` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `positions`
--

DROP TABLE IF EXISTS `positions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `positions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(100) NOT NULL,
  `department` varchar(100) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `level` varchar(50) DEFAULT NULL COMMENT 'Entry, Junior, Mid, Senior, Lead, Manager, Director, Executive',
  `reports_to_position_id` int(11) DEFAULT NULL,
  `is_active` tinyint(1) DEFAULT 1,
  `role_id` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_title` (`title`),
  KEY `idx_department` (`department`),
  KEY `idx_is_active` (`is_active`),
  KEY `reports_to_position_id` (`reports_to_position_id`),
  CONSTRAINT `positions_ibfk_1` FOREIGN KEY (`reports_to_position_id`) REFERENCES `positions` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=118 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `positions`
--

LOCK TABLES `positions` WRITE;
/*!40000 ALTER TABLE `positions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `positions` VALUES
(1,'Chief Executive Officer','Executive','CEO - Top executive position','Executive',NULL,1,108,'2025-11-08 17:16:14','2025-11-15 12:03:34'),
(2,'Chief Financial Officer','Finance','CFO - Financial oversight','Executive',1,1,110,'2025-11-08 17:16:14','2025-11-15 12:03:34'),
(3,'Chief Operating Officer','Operations','COO - Operations oversight','Executive',1,1,112,'2025-11-08 17:16:14','2025-11-15 12:03:34'),
(4,'Chief Technology Officer','IT','CTO - Technology oversight','Executive',1,1,111,'2025-11-08 17:16:14','2025-11-15 12:03:34'),
(5,'VP of Sales','Sales','Sales leadership','Executive',1,1,76,'2025-11-08 17:16:14','2025-11-15 12:03:34'),
(6,'VP of Human Resources','HR','HR leadership','Executive',1,1,116,'2025-11-08 17:16:14','2025-11-15 12:03:34'),
(7,'VP of Manufacturing','Manufacturing','Manufacturing leadership','Executive',3,1,88,'2025-11-08 17:16:14','2025-11-15 12:03:34'),
(8,'VP of Finance','Finance','Finance leadership','Executive',2,1,110,'2025-11-08 17:16:14','2025-11-15 12:03:34'),
(9,'Director of Accounting','Finance','Accounting operations director','Director',8,1,121,'2025-11-08 17:16:14','2025-11-15 12:03:34'),
(10,'Director of Financial Planning','Finance','FP&A director','Director',8,1,87,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(11,'Director of Sales Operations','Sales','Sales operations director','Director',5,1,76,'2025-11-08 17:16:14','2025-11-15 12:14:48'),
(12,'Director of Customer Success','Sales','Customer success director','Director',5,1,80,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(13,'Director of Manufacturing','Manufacturing','Manufacturing operations director','Director',7,1,81,'2025-11-08 17:16:14','2025-11-15 12:03:34'),
(14,'Director of Supply Chain','Operations','Supply chain director','Director',3,1,87,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(15,'Director of Quality Assurance','Manufacturing','Quality director','Director',7,1,87,'2025-11-08 17:16:14','2025-11-15 12:03:34'),
(16,'Director of HR Operations','HR','HR operations director','Director',6,1,116,'2025-11-08 17:16:14','2025-11-15 12:03:34'),
(17,'Director of Talent Acquisition','HR','Recruitment director','Director',6,1,97,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(18,'Director of IT','IT','IT infrastructure director','Director',4,1,101,'2025-11-08 17:16:14','2025-11-15 12:03:34'),
(19,'Accounting Manager','Finance','Manages accounting team','Manager',9,1,121,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(28,'Quality Control Manager','Manufacturing','QC team manager','Manager',15,1,92,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(31,'Inventory Control Manager','Operations','Inventory management','Manager',14,1,87,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(33,'Recruiting Manager','HR','Recruitment team manager','Manager',17,1,97,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(36,'Accounting Supervisor','Finance','Supervises accounting staff','Lead',19,1,121,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(37,'AP Supervisor','Finance','Supervises AP staff','Lead',NULL,1,70,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(38,'AR Supervisor','Finance','Supervises AR staff','Lead',NULL,1,72,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(39,'Sales Team Lead - East','Sales','East team lead','Lead',NULL,1,78,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(40,'Sales Team Lead - West','Sales','West team lead','Lead',NULL,1,78,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(41,'Sales Team Lead - Central','Sales','Central team lead','Lead',NULL,1,78,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(42,'Customer Service Lead','Sales','CS team lead','Lead',NULL,1,79,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(44,'Quality Inspector Lead','Manufacturing','QC lead','Lead',28,1,93,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(46,'Shipping Supervisor','Operations','Shipping supervisor','Lead',NULL,1,82,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(47,'Receiving Supervisor','Operations','Receiving supervisor','Lead',NULL,1,82,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(48,'Purchasing Agent Lead','Operations','Lead buyer','Lead',NULL,1,85,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(49,'HR Coordinator Lead','HR','HR team lead','Lead',NULL,1,96,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(50,'Recruiter Lead','HR','Recruitment team lead','Lead',33,1,97,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(51,'IT Support Lead','IT','IT support lead','Lead',NULL,1,101,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(55,'AP Clerk','Finance','Accounts payable clerk','Mid',37,1,70,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(56,'AR Clerk','Finance','Accounts receivable clerk','Mid',38,1,72,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(57,'Payroll Specialist','Finance','Payroll processing','Mid',NULL,1,99,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(58,'Senior Sales Representative','Sales','Senior sales position','Senior',NULL,1,77,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(71,'HR Assistant','HR','HR support','Entry',50,1,96,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(74,'Systems Administrator','IT','System administration','Senior',NULL,1,100,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(75,'Database Administrator','IT','Database management','Senior',NULL,1,100,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(77,'Senior Software Engineer','Engineering',NULL,'Senior',NULL,1,126,'2025-11-10 17:33:43','2025-11-15 12:03:48'),
(80,'Senior Product Manager','Product',NULL,'Senior',NULL,1,127,'2025-11-10 17:33:43','2025-11-15 12:03:48'),
(91,'Customer Support Specialist','Support',NULL,'Mid',NULL,1,80,'2025-11-10 17:33:43','2025-11-15 12:03:48'),
(92,'Customer Support Manager','Support',NULL,'Manager',NULL,1,79,'2025-11-10 17:33:43','2025-11-15 12:03:48'),
(110,'President','Battery & Energy Technologies','','Director',4,1,130,'2025-11-15 00:03:04','2025-11-15 12:17:39'),
(111,'Director of Operations','Operations','','Director',1,1,81,'2025-11-15 00:23:53','2025-11-15 12:03:34'),
(112,'Administrator','Admin',NULL,'Executive',NULL,1,1,'2025-11-15 11:49:26','2025-11-15 11:49:26'),
(114,'VP of Production','Manufacturing','','Executive',1,1,131,'2025-11-15 12:35:43','2025-11-15 12:36:55'),
(115,'VP of Business Development','Business Development',NULL,'Executive',NULL,1,132,'2025-11-15 12:35:43','2025-11-15 12:35:43'),
(116,'VP of Autonomous Systems','Autonomous Systems',NULL,'Executive',NULL,1,133,'2025-11-15 12:35:43','2025-11-15 12:35:43'),
(117,'President, Batteries & Tech',NULL,NULL,'Executive',NULL,1,NULL,'2025-11-15 18:23:48','2025-11-15 18:23:48');
/*!40000 ALTER TABLE `positions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `ppe_parameters`
--

DROP TABLE IF EXISTS `ppe_parameters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `ppe_parameters` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `location_id` int(11) NOT NULL,
  `asset_type` enum('tangible','intangible') NOT NULL DEFAULT 'tangible',
  `asset_category` varchar(100) NOT NULL,
  `useful_life_years` decimal(10,1) NOT NULL DEFAULT 10.0,
  `maintenance_capex_pct` decimal(5,2) NOT NULL DEFAULT 0.00,
  `replacement_period_years` decimal(10,1) NOT NULL DEFAULT 10.0,
  `capitalization_threshold_pct` decimal(5,2) NOT NULL DEFAULT 15.00,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_location_category` (`location_id`,`asset_category`),
  KEY `idx_location` (`location_id`),
  KEY `idx_active` (`is_active`),
  KEY `idx_asset_type` (`asset_type`)
) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ppe_parameters`
--

LOCK TABLES `ppe_parameters` WRITE;
/*!40000 ALTER TABLE `ppe_parameters` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `ppe_parameters` VALUES
(1,3,'tangible','Land / Property',20.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(2,2,'tangible','Land / Property',20.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(3,3,'tangible','Plant / Building',15.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(4,2,'tangible','Plant / Building',15.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(5,3,'tangible','Manufacturing Equipment',15.0,2.00,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(6,2,'tangible','Manufacturing Equipment',15.0,2.00,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(7,3,'tangible','Tooling Machinery',15.0,2.00,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(8,2,'tangible','Tooling Machinery',15.0,2.00,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(9,3,'tangible','Office Furniture',10.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(10,2,'tangible','Office Furniture',10.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(11,3,'tangible','Office Fixtures',10.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(12,2,'tangible','Office Fixtures',10.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(13,3,'tangible','Vehicles',10.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(14,2,'tangible','Vehicles',10.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(15,3,'tangible','IT Equipment',5.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(16,2,'tangible','IT Equipment',5.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(17,3,'tangible','Construction Fees & Expenses',5.0,0.00,0.0,0.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(18,2,'tangible','Construction Fees & Expenses',5.0,0.00,0.0,0.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(19,3,'tangible','Battery Module Assembly Equipment',10.0,5.00,7.0,0.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(20,2,'tangible','Battery Module Assembly Equipment',10.0,5.00,7.0,0.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(21,3,'tangible','Battery Module T&A Equipment',12.0,2.00,10.0,0.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(22,2,'tangible','Battery Module T&A Equipment',12.0,2.00,10.0,0.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(23,3,'tangible','Physical Security',10.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(24,2,'tangible','Physical Security',10.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(25,3,'intangible','Software Licenses',3.0,0.00,3.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(26,2,'intangible','Software Licenses',3.0,0.00,3.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(27,3,'intangible','Patents',17.0,0.00,20.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(28,2,'intangible','Patents',17.0,0.00,20.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(29,3,'intangible','Trademarks',10.0,0.00,10.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(30,2,'intangible','Trademarks',10.0,0.00,10.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(31,3,'intangible','Customer Relationships',15.0,0.00,0.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(32,2,'intangible','Customer Relationships',15.0,0.00,0.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(33,3,'intangible','Non-Compete Agreements',5.0,0.00,0.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(34,2,'intangible','Non-Compete Agreements',5.0,0.00,0.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(35,3,'intangible','Technology / IP Rights',10.0,0.00,15.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(36,2,'intangible','Technology / IP Rights',10.0,0.00,15.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(37,3,'intangible','Website & Domain Names',5.0,0.00,5.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(38,2,'intangible','Website & Domain Names',5.0,0.00,5.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(39,3,'intangible','Proprietary Processes',10.0,0.00,0.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(40,2,'intangible','Proprietary Processes',10.0,0.00,0.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL);
/*!40000 ALTER TABLE `ppe_parameters` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `pricing_rules`
--

DROP TABLE IF EXISTS `pricing_rules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `pricing_rules` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rule_name` varchar(100) NOT NULL,
  `rule_type` enum('customer_specific','volume_discount','product_bundle','tiered_pricing') NOT NULL,
  `customer_id` int(10) unsigned DEFAULT NULL,
  `product_id` int(10) unsigned DEFAULT NULL,
  `min_quantity` decimal(10,2) DEFAULT 0.00,
  `max_quantity` decimal(10,2) DEFAULT NULL,
  `discount_type` enum('percentage','fixed_amount','fixed_price') NOT NULL,
  `discount_value` decimal(10,2) NOT NULL,
  `priority` int(11) DEFAULT 0,
  `valid_from` date DEFAULT NULL,
  `valid_to` date DEFAULT NULL,
  `is_active` tinyint(1) DEFAULT 1,
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `created_by` (`created_by`),
  KEY `idx_customer` (`customer_id`),
  KEY `idx_product` (`product_id`),
  KEY `idx_active` (`is_active`),
  KEY `idx_dates` (`valid_from`,`valid_to`),
  CONSTRAINT `pricing_rules_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `pricing_rules_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE,
  CONSTRAINT `pricing_rules_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pricing_rules`
--

LOCK TABLES `pricing_rules` WRITE;
/*!40000 ALTER TABLE `pricing_rules` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `pricing_rules` VALUES
(1,'test','customer_specific',NULL,NULL,NULL,NULL,'percentage',5.00,0,NULL,NULL,1,NULL,1,'2025-10-31 01:12:38','2025-10-31 01:12:38'),
(2,'','customer_specific',NULL,NULL,NULL,NULL,'',0.00,0,NULL,NULL,1,NULL,1,'2025-10-31 01:17:39','2025-10-31 01:19:42');
/*!40000 ALTER TABLE `pricing_rules` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `product_categories`
--

DROP TABLE IF EXISTS `product_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `product_categories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `parent_id` int(10) unsigned DEFAULT NULL,
  `description` text DEFAULT NULL,
  `is_active` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `parent_id` (`parent_id`),
  KEY `idx_product_categories_deleted_at` (`deleted_at`),
  CONSTRAINT `product_categories_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `product_categories` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_categories`
--

LOCK TABLES `product_categories` WRITE;
/*!40000 ALTER TABLE `product_categories` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `product_categories` VALUES
(1,'Electronics',NULL,'Electronic devices and components',1,'2025-10-26 14:24:24','2025-12-05 11:23:06',NULL),
(2,'Office Supplies',NULL,'Office equipment and supplies',1,'2025-10-26 14:24:24','2025-10-29 19:06:46',NULL),
(4,'Finished Goods',NULL,'Completed products ready for sale',1,'2025-10-26 14:24:24','2025-10-29 19:06:46',NULL),
(7,'Work in Progress',NULL,'Items currently in production',1,'2025-10-29 19:03:12','2025-10-29 19:06:46',NULL),
(8,'Components',NULL,'Parts and components used in assembly',1,'2025-10-29 19:03:12','2025-10-29 19:06:46',NULL),
(9,'Packaging Materials',NULL,'Materials used for packaging',1,'2025-10-29 19:03:12','2025-10-29 19:06:46',NULL),
(10,'Battery Modules',NULL,'',1,'2025-10-29 19:07:08','2025-10-29 19:07:08',NULL),
(12,'Hardware',NULL,'Mechanical and hardware components',1,'2025-11-04 19:45:22','2025-11-04 19:45:22',NULL),
(13,'Software',NULL,'Software products and licenses',1,'2025-11-04 19:45:22','2025-11-04 19:45:22',NULL),
(14,'Services',NULL,'Professional services',1,'2025-11-04 19:45:22','2025-11-04 19:45:22',NULL),
(15,'Raw Materials',NULL,'Basic manufacturing materials',1,'2025-11-04 19:45:22','2025-11-04 19:45:22',NULL),
(17,'Hardware',NULL,'Mechanical and hardware components',1,'2025-11-04 19:46:54','2025-11-04 19:46:54',NULL);
/*!40000 ALTER TABLE `product_categories` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `product_forecast_config`
--

DROP TABLE IF EXISTS `product_forecast_config`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `product_forecast_config` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `product_id` int(10) unsigned NOT NULL,
  `assumption_set_id` int(11) NOT NULL COMMENT 'Which assumption set drives this product',
  `revenue_growth_rate` decimal(5,2) DEFAULT NULL COMMENT 'Override global growth rate for this product',
  `gross_margin_pct` decimal(5,2) DEFAULT NULL COMMENT 'Target gross margin %',
  `price_increase_pct` decimal(5,2) DEFAULT NULL COMMENT 'Annual price increase %',
  `volume_growth_pct` decimal(5,2) DEFAULT NULL COMMENT 'Unit volume growth %',
  `launch_date` date DEFAULT NULL COMMENT 'When product launches (for new products)',
  `discontinue_date` date DEFAULT NULL COMMENT 'When product is discontinued',
  `lifecycle_stage` enum('development','launch','growth','maturity','decline') DEFAULT 'maturity',
  `production_hours_per_unit` decimal(8,4) DEFAULT NULL COMMENT 'How long to make one unit',
  `production_rate_per_hour` decimal(10,2) DEFAULT NULL COMMENT 'Units per hour production rate',
  `equipment_labor_cost_per_unit` decimal(10,4) DEFAULT NULL COMMENT 'Labor cost per unit based on equipment',
  `equipment_energy_cost_per_unit` decimal(10,4) DEFAULT NULL COMMENT 'Energy cost per unit',
  `equipment_operating_cost_per_unit` decimal(10,4) DEFAULT NULL COMMENT 'Total equipment operating cost per unit',
  `capacity_constraint_flag` tinyint(1) DEFAULT 0 COMMENT 'Flag if capacity is a constraint for growth',
  `machines_required` decimal(6,2) DEFAULT 1.00 COMMENT 'Number of machines needed for forecast volume',
  `capital_investment_required` decimal(15,2) DEFAULT 0.00 COMMENT 'Capital needed for additional equipment',
  `primary_equipment_line_id` int(10) unsigned DEFAULT NULL COMMENT 'Which equipment line produces this',
  `primary_equipment_id` int(10) unsigned DEFAULT NULL COMMENT 'Primary equipment for this product',
  `location_id` int(10) unsigned DEFAULT NULL COMMENT 'Primary production location',
  `jan_factor` decimal(4,2) DEFAULT 1.00,
  `feb_factor` decimal(4,2) DEFAULT 1.00,
  `mar_factor` decimal(4,2) DEFAULT 1.00,
  `apr_factor` decimal(4,2) DEFAULT 1.00,
  `may_factor` decimal(4,2) DEFAULT 1.00,
  `jun_factor` decimal(4,2) DEFAULT 1.00,
  `jul_factor` decimal(4,2) DEFAULT 1.00,
  `aug_factor` decimal(4,2) DEFAULT 1.00,
  `sep_factor` decimal(4,2) DEFAULT 1.00,
  `oct_factor` decimal(4,2) DEFAULT 1.00,
  `nov_factor` decimal(4,2) DEFAULT 1.00,
  `dec_factor` decimal(4,2) DEFAULT 1.00,
  `is_active` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `uk_product_set` (`product_id`,`assumption_set_id`),
  KEY `idx_product` (`product_id`),
  KEY `idx_assumption_set` (`assumption_set_id`),
  KEY `idx_equipment` (`primary_equipment_line_id`),
  KEY `idx_location` (`location_id`),
  KEY `idx_lifecycle` (`lifecycle_stage`),
  KEY `idx_config_equipment` (`primary_equipment_id`),
  CONSTRAINT `fk_product_forecast_equipment` FOREIGN KEY (`primary_equipment_id`) REFERENCES `equipment` (`id`) ON DELETE SET NULL,
  CONSTRAINT `product_forecast_config_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE,
  CONSTRAINT `product_forecast_config_ibfk_2` FOREIGN KEY (`assumption_set_id`) REFERENCES `forecast_assumption_sets` (`id`) ON DELETE CASCADE,
  CONSTRAINT `product_forecast_config_ibfk_3` FOREIGN KEY (`primary_equipment_line_id`) REFERENCES `equipment_lines` (`id`) ON DELETE SET NULL,
  CONSTRAINT `product_forecast_config_ibfk_4` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_forecast_config`
--

LOCK TABLES `product_forecast_config` WRITE;
/*!40000 ALTER TABLE `product_forecast_config` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `product_forecast_config` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `product_line_projections`
--

DROP TABLE IF EXISTS `product_line_projections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `product_line_projections` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `assumption_set_id` int(11) NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `location_id` int(10) unsigned DEFAULT NULL,
  `projection_date` date NOT NULL COMMENT 'First day of period',
  `period_type` enum('monthly','quarterly','annual') DEFAULT 'monthly',
  `projected_units` decimal(15,2) NOT NULL DEFAULT 0.00,
  `avg_unit_price` decimal(15,2) NOT NULL DEFAULT 0.00,
  `revenue` decimal(15,2) NOT NULL DEFAULT 0.00,
  `unit_cost` decimal(15,2) NOT NULL DEFAULT 0.00,
  `total_cogs` decimal(15,2) NOT NULL DEFAULT 0.00,
  `gross_profit` decimal(15,2) NOT NULL DEFAULT 0.00,
  `gross_margin_pct` decimal(5,2) NOT NULL DEFAULT 0.00,
  `required_production_hours` decimal(12,2) DEFAULT NULL,
  `available_capacity_hours` decimal(12,2) DEFAULT NULL,
  `capacity_utilization_pct` decimal(5,2) DEFAULT NULL,
  `capacity_constrained` tinyint(1) DEFAULT 0 COMMENT 'Could not meet demand due to capacity',
  `allocated_fixed_costs` decimal(15,2) DEFAULT 0.00 COMMENT 'Share of location fixed costs',
  `allocated_overhead` decimal(15,2) DEFAULT 0.00 COMMENT 'Manufacturing overhead allocation',
  `generated_at` timestamp NULL DEFAULT current_timestamp(),
  `calculation_notes` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `uk_set_product_date` (`assumption_set_id`,`product_id`,`projection_date`,`period_type`),
  KEY `idx_set` (`assumption_set_id`),
  KEY `idx_product` (`product_id`),
  KEY `idx_location` (`location_id`),
  KEY `idx_date` (`projection_date`),
  KEY `idx_period_type` (`period_type`),
  CONSTRAINT `product_line_projections_ibfk_1` FOREIGN KEY (`assumption_set_id`) REFERENCES `forecast_assumption_sets` (`id`) ON DELETE CASCADE,
  CONSTRAINT `product_line_projections_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE,
  CONSTRAINT `product_line_projections_ibfk_3` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_line_projections`
--

LOCK TABLES `product_line_projections` WRITE;
/*!40000 ALTER TABLE `product_line_projections` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `product_line_projections` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `product_tax_categories`
--

DROP TABLE IF EXISTS `product_tax_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `product_tax_categories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `category_code` varchar(50) NOT NULL,
  `category_name` varchar(200) NOT NULL,
  `description` text DEFAULT NULL,
  `is_taxable` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `category_code` (`category_code`),
  KEY `idx_code` (`category_code`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_tax_categories`
--

LOCK TABLES `product_tax_categories` WRITE;
/*!40000 ALTER TABLE `product_tax_categories` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `product_tax_categories` VALUES
(1,'STANDARD','Standard Taxable Goods','Normal taxable products and services',1,'2025-11-15 18:08:20','2025-11-15 18:08:20'),
(2,'EXEMPT','Tax Exempt','Non-taxable items (e.g., prescription drugs, groceries in some states)',0,'2025-11-15 18:08:20','2025-11-15 18:08:20'),
(3,'REDUCED','Reduced Rate','Items with reduced tax rate (e.g., food, clothing in some states)',1,'2025-11-15 18:08:20','2025-11-15 18:08:20'),
(4,'DIGITAL','Digital Goods','Software, downloads, streaming services',1,'2025-11-15 18:08:20','2025-11-15 18:08:20'),
(5,'SERVICES','Services','Professional and personal services',1,'2025-11-15 18:08:20','2025-11-15 18:08:20'),
(6,'SHIPPING','Shipping & Handling','Freight and delivery charges',1,'2025-11-15 18:08:20','2025-11-15 18:08:20');
/*!40000 ALTER TABLE `product_tax_categories` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `product_tax_rules`
--

DROP TABLE IF EXISTS `product_tax_rules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `product_tax_rules` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `tax_category_id` int(10) unsigned NOT NULL,
  `jurisdiction_id` int(10) unsigned NOT NULL,
  `is_taxable` tinyint(1) DEFAULT 1,
  `override_rate` decimal(8,5) DEFAULT NULL COMMENT 'Custom rate for this category in this jurisdiction',
  `effective_date` date NOT NULL,
  `expiration_date` date DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_rule` (`tax_category_id`,`jurisdiction_id`,`effective_date`),
  KEY `idx_category` (`tax_category_id`),
  KEY `idx_jurisdiction` (`jurisdiction_id`),
  CONSTRAINT `product_tax_rules_ibfk_1` FOREIGN KEY (`tax_category_id`) REFERENCES `product_tax_categories` (`id`) ON DELETE CASCADE,
  CONSTRAINT `product_tax_rules_ibfk_2` FOREIGN KEY (`jurisdiction_id`) REFERENCES `tax_jurisdictions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_tax_rules`
--

LOCK TABLES `product_tax_rules` WRITE;
/*!40000 ALTER TABLE `product_tax_rules` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `product_tax_rules` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `products`
--

DROP TABLE IF EXISTS `products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `products` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `category_id` int(10) unsigned DEFAULT NULL,
  `sku` varchar(100) NOT NULL,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `product_type` enum('goods','service','digital','raw_material','finished_goods') DEFAULT 'goods',
  `unit_of_measure` varchar(50) DEFAULT NULL,
  `cost_price` decimal(15,2) DEFAULT 0.00,
  `selling_price` decimal(15,2) DEFAULT 0.00,
  `tax_rate` decimal(5,2) DEFAULT 0.00,
  `reorder_level` int(11) DEFAULT 0,
  `safety_stock` decimal(15,3) DEFAULT 0.000,
  `reorder_point` decimal(15,3) DEFAULT 0.000,
  `lead_time_days` int(11) DEFAULT 7,
  `min_order_quantity` decimal(15,3) DEFAULT 1.000,
  `preferred_supplier_id` int(10) unsigned DEFAULT NULL,
  `requires_inspection` tinyint(1) DEFAULT 0,
  `inspection_template_id` int(10) unsigned DEFAULT NULL,
  `reorder_quantity` int(11) DEFAULT 0,
  `image` varchar(255) DEFAULT NULL,
  `barcode` varchar(100) DEFAULT NULL,
  `status` enum('active','inactive','discontinued') DEFAULT 'active',
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  `tax_category_id` int(10) unsigned DEFAULT NULL COMMENT 'Tax category for this product',
  PRIMARY KEY (`id`),
  UNIQUE KEY `sku` (`sku`),
  KEY `category_id` (`category_id`),
  KEY `products_ibfk_created_by` (`created_by`),
  KEY `fk_products_preferred_supplier` (`preferred_supplier_id`),
  KEY `fk_products_inspection_template` (`inspection_template_id`),
  KEY `idx_tax_category` (`tax_category_id`),
  KEY `idx_deleted_at` (`deleted_at`),
  KEY `idx_search_active` (`status`,`name`),
  FULLTEXT KEY `ft_product_search` (`name`,`description`,`sku`,`barcode`),
  CONSTRAINT `fk_products_inspection_template` FOREIGN KEY (`inspection_template_id`) REFERENCES `inspection_templates` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_products_preferred_supplier` FOREIGN KEY (`preferred_supplier_id`) REFERENCES `suppliers` (`id`) ON DELETE SET NULL,
  CONSTRAINT `products_ibfk_1` FOREIGN KEY (`category_id`) REFERENCES `product_categories` (`id`) ON DELETE SET NULL,
  CONSTRAINT `products_ibfk_created_by` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=101 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `products`
--

LOCK TABLES `products` WRITE;
/*!40000 ALTER TABLE `products` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `products` VALUES
(70,10,'BATT-PACK-001','16 KwH Battery','','finished_goods','',0.00,0.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,'','active',NULL,'2025-12-04 20:30:05','2025-12-05 10:47:48',NULL,NULL),
(71,10,'BATT-LIFEPO4-314AH','LiFePO4 battery cell,3.2V 314ah,REPT','LiFePO4 battery cell, 3.2V 314ah, REPT brand','goods',NULL,60.00,75.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL),
(72,8,'BATT-BMS-001','BMS','Battery Management System','goods',NULL,127.00,160.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL),
(73,8,'BATT-SHELL-001','Shell box','Battery shell box enclosure','goods',NULL,200.00,250.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL),
(74,8,'BATT-SPACER-001','Spacers/brackets','Spacers and mounting brackets','goods',NULL,45.00,60.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL),
(75,8,'BATT-INSUL-001','Insulating materials','Insulating materials for battery cells','goods',NULL,75.00,95.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL),
(76,8,'BATT-BUSBAR-001','Busbars/connecting pieces','Busbars and connecting pieces','goods',NULL,85.00,110.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL),
(77,8,'BATT-WIRE-001','Wiring harnesses','Wiring harnesses for battery connections','goods',NULL,20.00,30.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL),
(78,8,'BATT-FUSE-001','Fuse & Fuse holder','Fuse and fuse holder assembly','goods',NULL,12.00,18.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL),
(79,8,'BATT-CONN-001','Connector(Ports)','Battery connector ports','goods',NULL,12.00,18.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL),
(80,1,'BATT-DISP-001','Display/touch screen','Display and touch screen interface','goods','',27.00,40.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,'','active',NULL,'2025-12-04 22:26:53','2025-12-05 11:25:15',NULL,NULL),
(81,8,'BATT-LED-001','LED light','LED indicator light','goods',NULL,5.00,10.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL),
(82,8,'BATT-BREAK-001','Breaker','Circuit breaker','goods',NULL,15.00,25.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL),
(83,8,'BATT-COOL-001','Cooling system','Battery cooling system','goods',NULL,57.00,80.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL),
(84,8,'BATT-BOLT-001','Fastening Bolts and Nuts','Fastening bolts and nuts hardware','goods',NULL,0.40,0.60,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL),
(85,8,'BATT-SWITCH-001','Switch','Power switch','goods',NULL,5.00,10.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL);
/*!40000 ALTER TABLE `products` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_activity_log`
--

DROP TABLE IF EXISTS `project_activity_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_activity_log` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `project_id` int(10) unsigned NOT NULL,
  `task_id` int(10) unsigned DEFAULT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `activity_type` varchar(50) NOT NULL COMMENT 'created, updated, moved, commented, etc.',
  `description` text DEFAULT NULL,
  `metadata` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Additional context data' CHECK (json_valid(`metadata`)),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_project` (`project_id`),
  KEY `idx_task` (`task_id`),
  KEY `idx_user` (`user_id`),
  KEY `idx_created` (`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=86 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci COMMENT='Project and task activity timeline';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_activity_log`
--

LOCK TABLES `project_activity_log` WRITE;
/*!40000 ALTER TABLE `project_activity_log` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `project_activity_log` VALUES
(19,3,NULL,1,'created','Battery Production Line Setup project created with 66 tasks across 8 phases',NULL,'2025-11-14 19:29:43'),
(20,3,16,1,'task_moved','Moved task \'Internet Installation\' to In Progress',NULL,'2025-11-14 20:51:11'),
(21,3,2,1,'task_moved','Moved task \'Facility Walkthrough\' to In Progress',NULL,'2025-11-14 20:51:26'),
(22,3,2,1,'task_moved','Moved task \'Facility Walkthrough\' to Review',NULL,'2025-11-14 20:52:11'),
(23,3,2,1,'task_moved','Moved task \'Facility Walkthrough\' to Testing',NULL,'2025-11-14 20:52:15'),
(24,3,2,8,'task_moved','Moved task \'Facility Walkthrough\' to Review',NULL,'2025-11-14 22:11:13'),
(25,4,NULL,1,'updated','Project updated',NULL,'2025-11-15 13:50:15'),
(26,4,68,1,'task_moved','Moved task \'Review and Sign Facility Lease Agreement\' to In Progress',NULL,'2025-11-15 13:53:27'),
(27,4,70,1,'task_moved','Moved task \'Setup Business Insurance Coverage\' to To Do',NULL,'2025-11-15 13:53:43'),
(28,4,69,1,'task_moved','Moved task \'Obtain Business Permits and Licenses\' to To Do',NULL,'2025-11-15 13:53:48'),
(29,4,90,1,'task_moved','Moved task \'Establish Banking Relationships\' to To Do',NULL,'2025-11-15 13:54:20'),
(30,4,69,1,'task_moved','Moved task \'Obtain Business Permits and Licenses\' to In Progress',NULL,'2025-11-15 13:54:37'),
(31,4,90,1,'task_moved','Moved task \'Establish Banking Relationships\' to In Progress',NULL,'2025-11-15 13:54:42'),
(32,4,73,1,'task_moved','Moved task \'Setup Utilities and Internet\' to In Progress',NULL,'2025-11-15 13:54:52'),
(33,4,76,1,'task_moved','Moved task \'Setup Office Furniture and IT Equipment\' to In Progress',NULL,'2025-11-15 13:55:02'),
(34,4,88,1,'task_moved','Moved task \'Setup Accounting and Payroll Systems\' to In Progress',NULL,'2025-11-15 13:55:17'),
(35,4,70,1,'task_moved','Moved task \'Setup Business Insurance Coverage\' to In Progress',NULL,'2025-11-15 13:59:05'),
(36,4,89,1,'task_moved','Moved task \'Create Budget and Financial Projections\' to To Do',NULL,'2025-11-15 13:59:39'),
(37,4,81,1,'task_moved','Moved task \'Setup Inventory Management System\' to To Do',NULL,'2025-11-15 13:59:48'),
(38,4,86,1,'task_moved','Moved task \'Setup Receiving and Shipping Procedures\' to To Do',NULL,'2025-11-15 13:59:56'),
(39,4,79,1,'task_moved','Moved task \'Develop Standard Operating Procedures (SOPs)\' to To Do',NULL,'2025-11-15 14:00:11'),
(40,3,NULL,1,'team_member_added','Team member added',NULL,'2025-11-15 14:47:16'),
(41,3,NULL,1,'team_member_added','Team member added',NULL,'2025-11-15 14:47:22'),
(42,3,NULL,1,'team_member_added','Team member added',NULL,'2025-11-15 14:47:29'),
(43,4,NULL,1,'team_member_added','Team member added',NULL,'2025-11-15 15:20:36'),
(44,4,NULL,1,'team_member_added','Team member added',NULL,'2025-11-15 15:20:41'),
(45,4,NULL,1,'updated','Project updated',NULL,'2025-11-15 15:42:37'),
(46,4,68,1,'task_moved','Moved task \'Review and Sign Facility Lease Agreement\' to Review',NULL,'2025-11-15 15:44:35'),
(47,4,68,1,'task_moved','Moved task \'Review and Sign Facility Lease Agreement\' to In Progress',NULL,'2025-11-15 16:39:29'),
(48,3,13,1,'task_updated','Updated task: HVAC Installation',NULL,'2025-11-16 11:56:30'),
(49,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 12:02:20'),
(50,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 12:02:22'),
(51,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 12:10:01'),
(52,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 12:10:03'),
(53,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 12:11:26'),
(54,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 12:11:29'),
(55,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 12:12:37'),
(56,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 12:12:45'),
(57,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 12:45:27'),
(58,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 12:46:54'),
(59,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 13:06:07'),
(60,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 13:06:10'),
(61,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 13:06:13'),
(62,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 13:07:37'),
(63,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 13:07:41'),
(64,3,3,1,'task_updated','Updated task: Mark Equipment Positions',NULL,'2025-11-16 13:25:26'),
(65,3,3,1,'task_updated','Updated task: Mark Equipment Positions',NULL,'2025-11-16 13:25:33'),
(66,3,3,1,'task_updated','Updated task: Mark Equipment Positions',NULL,'2025-11-16 13:25:33'),
(67,3,4,1,'task_updated','Updated task: Mark Workflow Zones',NULL,'2025-11-16 13:25:35'),
(68,3,4,1,'task_updated','Updated task: Mark Workflow Zones',NULL,'2025-11-16 13:25:35'),
(69,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 13:25:37'),
(70,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 13:25:37'),
(71,3,5,1,'task_updated','Updated task: Mark Safety Aisles',NULL,'2025-11-16 13:25:38'),
(72,3,5,1,'task_updated','Updated task: Mark Safety Aisles',NULL,'2025-11-16 13:25:38'),
(73,3,6,1,'task_updated','Updated task: Determine Offices',NULL,'2025-11-16 13:25:40'),
(74,3,6,1,'task_updated','Updated task: Determine Offices',NULL,'2025-11-16 13:25:40'),
(75,3,6,1,'task_updated','Updated task: Determine Offices',NULL,'2025-11-16 13:25:41'),
(76,3,6,1,'task_updated','Updated task: Determine Offices',NULL,'2025-11-16 13:25:41'),
(77,3,7,1,'task_updated','Updated task: Determine Network Closet',NULL,'2025-11-16 13:25:42'),
(78,3,7,1,'task_updated','Updated task: Determine Network Closet',NULL,'2025-11-16 13:25:42'),
(79,3,8,1,'task_updated','Updated task: Power Assessment',NULL,'2025-11-16 13:25:44'),
(80,3,8,1,'task_updated','Updated task: Power Assessment',NULL,'2025-11-16 13:25:44'),
(81,3,9,1,'task_updated','Updated task: Power Drops Installation',NULL,'2025-11-16 13:25:45'),
(82,3,9,1,'task_updated','Updated task: Power Drops Installation',NULL,'2025-11-16 13:25:45'),
(83,3,26,1,'task_updated','Updated task: Dockside Inspection',NULL,'2025-11-19 18:22:05'),
(84,3,26,1,'task_moved','Moved task \'Dockside Inspection\' to To Do',NULL,'2025-11-24 13:26:33'),
(85,4,76,1,'task_moved','Moved task \'Setup Office Furniture and IT Equipment\' to Review',NULL,'2025-12-04 23:10:07');
/*!40000 ALTER TABLE `project_activity_log` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_attachments`
--

DROP TABLE IF EXISTS `project_attachments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_attachments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `project_id` int(10) unsigned NOT NULL,
  `task_id` int(10) unsigned DEFAULT NULL,
  `file_name` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_size` int(11) DEFAULT NULL,
  `uploaded_by` int(10) unsigned NOT NULL,
  `uploaded_at` timestamp NULL DEFAULT current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `uploaded_by` (`uploaded_by`),
  KEY `idx_project` (`project_id`),
  KEY `idx_task` (`task_id`),
  CONSTRAINT `project_attachments_ibfk_1` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
  CONSTRAINT `project_attachments_ibfk_2` FOREIGN KEY (`task_id`) REFERENCES `project_tasks` (`id`) ON DELETE CASCADE,
  CONSTRAINT `project_attachments_ibfk_3` FOREIGN KEY (`uploaded_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_attachments`
--

LOCK TABLES `project_attachments` WRITE;
/*!40000 ALTER TABLE `project_attachments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `project_attachments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_baselines`
--

DROP TABLE IF EXISTS `project_baselines`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_baselines` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `project_id` int(10) unsigned NOT NULL,
  `baseline_name` varchar(255) NOT NULL,
  `baseline_date` date NOT NULL,
  `snapshot_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT 'Stores task dates, durations, and dependencies at baseline time' CHECK (json_valid(`snapshot_data`)),
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `created_by` (`created_by`),
  KEY `idx_project_baseline` (`project_id`,`baseline_date`),
  CONSTRAINT `project_baselines_ibfk_1` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
  CONSTRAINT `project_baselines_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_baselines`
--

LOCK TABLES `project_baselines` WRITE;
/*!40000 ALTER TABLE `project_baselines` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `project_baselines` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_budget_categories`
--

DROP TABLE IF EXISTS `project_budget_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_budget_categories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `project_id` int(10) unsigned NOT NULL,
  `category_name` varchar(100) NOT NULL,
  `budgeted_amount` decimal(15,2) DEFAULT 0.00,
  `committed_amount` decimal(15,2) DEFAULT 0.00 COMMENT 'POs issued but not paid',
  `actual_amount` decimal(15,2) DEFAULT 0.00 COMMENT 'Actually spent',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_project_category` (`project_id`,`category_name`),
  KEY `idx_project_category` (`project_id`),
  CONSTRAINT `project_budget_categories_ibfk_1` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_budget_categories`
--

LOCK TABLES `project_budget_categories` WRITE;
/*!40000 ALTER TABLE `project_budget_categories` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `project_budget_categories` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_cash_flow_forecast`
--

DROP TABLE IF EXISTS `project_cash_flow_forecast`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_cash_flow_forecast` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `project_id` int(10) unsigned NOT NULL,
  `forecast_date` date NOT NULL,
  `expected_revenue` decimal(15,2) DEFAULT 0.00,
  `expected_expenses` decimal(15,2) DEFAULT 0.00,
  `forecasted_balance` decimal(15,2) DEFAULT 0.00,
  `actual_revenue` decimal(15,2) DEFAULT 0.00,
  `actual_expenses` decimal(15,2) DEFAULT 0.00,
  `actual_balance` decimal(15,2) DEFAULT 0.00,
  `variance` decimal(15,2) DEFAULT 0.00 COMMENT 'Difference between forecast and actual',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_project_forecast_date` (`project_id`,`forecast_date`),
  KEY `idx_project_forecast_date` (`project_id`,`forecast_date`),
  CONSTRAINT `project_cash_flow_forecast_ibfk_1` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_cash_flow_forecast`
--

LOCK TABLES `project_cash_flow_forecast` WRITE;
/*!40000 ALTER TABLE `project_cash_flow_forecast` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `project_cash_flow_forecast` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_documents`
--

DROP TABLE IF EXISTS `project_documents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_documents` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `project_id` int(10) unsigned NOT NULL,
  `document_id` int(10) unsigned NOT NULL,
  `document_type` enum('contract','invoice','po','receipt','report','other') DEFAULT 'other',
  `linked_transaction_id` int(10) unsigned DEFAULT NULL COMMENT 'Link to specific financial transaction',
  `notes` varchar(500) DEFAULT NULL,
  `linked_by` int(10) unsigned DEFAULT NULL,
  `linked_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_project_document` (`project_id`,`document_id`),
  KEY `document_id` (`document_id`),
  KEY `linked_transaction_id` (`linked_transaction_id`),
  KEY `linked_by` (`linked_by`),
  KEY `idx_project_docs` (`project_id`),
  KEY `idx_doc_type` (`project_id`,`document_type`),
  CONSTRAINT `project_documents_ibfk_1` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
  CONSTRAINT `project_documents_ibfk_2` FOREIGN KEY (`document_id`) REFERENCES `documents` (`id`) ON DELETE CASCADE,
  CONSTRAINT `project_documents_ibfk_3` FOREIGN KEY (`linked_transaction_id`) REFERENCES `project_financial_transactions` (`id`) ON DELETE SET NULL,
  CONSTRAINT `project_documents_ibfk_4` FOREIGN KEY (`linked_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_documents`
--

LOCK TABLES `project_documents` WRITE;
/*!40000 ALTER TABLE `project_documents` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `project_documents` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_financial_transactions`
--

DROP TABLE IF EXISTS `project_financial_transactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_financial_transactions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `project_id` int(10) unsigned NOT NULL,
  `transaction_date` date NOT NULL,
  `description` varchar(500) NOT NULL,
  `category` varchar(100) DEFAULT NULL COMMENT 'Expense/Revenue category (e.g., Construction, Shipping, Payroll)',
  `amount` decimal(15,2) NOT NULL DEFAULT 0.00,
  `transaction_type` enum('revenue','expense') NOT NULL,
  `status` enum('planned','committed','paid') DEFAULT 'planned',
  `journal_entry_id` int(10) unsigned DEFAULT NULL COMMENT 'Link to actual JE when paid',
  `account_id` int(10) unsigned DEFAULT NULL COMMENT 'Chart of accounts reference',
  `document_id` int(10) unsigned DEFAULT NULL COMMENT 'Supporting document (invoice, PO, etc)',
  `reference_type` varchar(50) DEFAULT NULL COMMENT 'Type of reference (PO, Invoice, Contract, etc)',
  `reference_id` int(10) unsigned DEFAULT NULL COMMENT 'ID of referenced record',
  `assigned_to` int(10) unsigned DEFAULT NULL COMMENT 'User responsible',
  `due_date` date DEFAULT NULL COMMENT 'When payment is due',
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `journal_entry_id` (`journal_entry_id`),
  KEY `account_id` (`account_id`),
  KEY `document_id` (`document_id`),
  KEY `assigned_to` (`assigned_to`),
  KEY `created_by` (`created_by`),
  KEY `idx_project_trans_date` (`project_id`,`transaction_date`),
  KEY `idx_project_trans_category` (`project_id`,`category`),
  KEY `idx_project_trans_type` (`project_id`,`transaction_type`),
  KEY `idx_project_trans_status` (`status`),
  KEY `idx_reference` (`reference_type`,`reference_id`),
  CONSTRAINT `project_financial_transactions_ibfk_1` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
  CONSTRAINT `project_financial_transactions_ibfk_2` FOREIGN KEY (`journal_entry_id`) REFERENCES `journal_entries` (`id`) ON DELETE SET NULL,
  CONSTRAINT `project_financial_transactions_ibfk_3` FOREIGN KEY (`account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `project_financial_transactions_ibfk_4` FOREIGN KEY (`document_id`) REFERENCES `documents` (`id`) ON DELETE SET NULL,
  CONSTRAINT `project_financial_transactions_ibfk_5` FOREIGN KEY (`assigned_to`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `project_financial_transactions_ibfk_6` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_financial_transactions`
--

LOCK TABLES `project_financial_transactions` WRITE;
/*!40000 ALTER TABLE `project_financial_transactions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `project_financial_transactions` VALUES
(1,3,'2025-11-30','CLIMATE FIRST BANK','Financing',1225000.00,'revenue','paid',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','Initial loan funding',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(2,3,'2025-11-25','AR Advance','Accounts Receivable',200384.00,'revenue','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-25','Accounts receivable advance payment',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(3,3,'2025-12-16','PO Advance','Purchase Orders',700000.00,'revenue','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-12-16','Purchase order advance',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(4,3,'2025-12-15','Rent Owed Sept - Dec 2025','Landlord',375905.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-12-15','Assigned: Brian and Nathan',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(5,4,'2025-10-15','Utilities (estimate)','Utilities',20000.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-10-15','Assigned: KD',1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(6,3,'2025-11-30','Shenzhen Cleva Power Co.,Ltd','PO Final Payments',6118.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','Assigned: KD',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(7,3,'2025-11-30','Shenzhen SunFiD New Energy Co., Ltd.','PO Final Payments',59879.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','Assigned: KD',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(8,3,'2025-11-30','FINAL PAYMENT For Large Cylindrical','EQ Factory',342126.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','Assigned: Nathan and KD',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(9,3,'2025-11-30','Repower Aging Testing cabinets 60v200A (qty 5) 30% down','EQ Factory',30000.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','Assigned: Nathan',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(10,3,'2025-12-30','Repower Aging Testing cabinets 60v200A (qty 5) 70% remaining owed','EQ Factory',70000.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-12-30','Assigned: Nathan and JB',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(11,4,'2025-11-15','AMEX CC 23003 - B (Outstanding balance: $15,437.64)','Credit Cards',1500.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-15','Payment Plan - Assigned: KD',1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(12,4,'2025-11-15','AMEX CC 14007 - P (Outstanding balance: $7,654.17)','Credit Cards',1500.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-15','Payment Plan - Assigned: KD',1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(13,4,'2025-09-18','Loan Packaging Fee','Transaction Fees',2500.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-09-18','CFB - Assigned: KD',1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(14,4,'2025-09-18','Equity Injection','Transaction Fees',7500.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-09-18','CFB - Assigned: KD',1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(15,3,'2026-02-01','Repower - Shipping','Shipping',3000.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2026-02-01','Assigned: Nathan',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(16,3,'2026-02-01','Repower - 301 Tariffs','301 Tariffs',2500.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2026-02-01','Assigned: Nathan',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(17,3,'2025-11-30','Section 301 Tariffs on Shipment - With 301 Exclusion','301 Tariffs',21783.00,'expense','committed',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','301 Exclusion Applied / Allianz Trade - Assigned: Nathan',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(18,3,'2025-11-30','Cargo Brokers - Container Shipping Charges','Shipping',70840.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','Assigned: Nathan',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(19,3,'2025-11-30','Cosco Vietnam Storage Charges Through 12/1','Port Charges',22897.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','Sent Demurrage Dispute - Assigned: Nathan',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(20,3,'2025-11-30','Cosco Southampton Storage Charges Through 12/1','Port Charges',10854.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','Sent Demurrage Dispute - Assigned: Nathan',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(21,3,'2025-11-30','Floor Painting 1/3 Deposit - Suite 3 Only','Construction',26212.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','Original: $78,635 - Construction Team',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(22,3,'2025-12-15','Floor Painting remaining 2/3 Owed - Suite 3 Only','Construction',17474.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-12-15','Original: $52,423 - Construction Team',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(23,3,'2025-11-30','Transformers w/ electrical','Construction',46080.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','2/5 Transformers with Electrical - Construction Team',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(24,3,'2025-11-30','Compressed Air & Nitrogen','Construction',40500.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','2/5 Compressed Air & Nitrogen - Construction Team',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(25,3,'2025-11-30','Building Binding Policy','Insurance',34833.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','Assigned: JB, Nathan, Paxton',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(26,4,'2025-10-15','General Liability - 10/1/2025','Insurance',933.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-10-15','Assigned: JB, Nathan, Paxton',1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(27,4,'2025-11-15','General Liability - 11/1/2025','Insurance',933.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-15','Assigned: JB, Nathan, Paxton',1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(28,4,'2025-12-15','General Liability - 12/1/2025','Insurance',933.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-12-15','Assigned: JB, Nathan, Paxton',1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(29,3,'2025-11-30','Perimeter Fencing','Security',69951.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','Assigned: Tony, Jordan, Tanner',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(30,3,'2025-11-30','Phase 1 Security','Security',85886.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','Applied Cost Savings - Assigned: Tony, Tanner, John Kennerly',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(31,3,'2026-02-01','Section 301 Tariffs on Shipment - Large Cylindrical','301 Tariffs',8553.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2026-02-01','Assigned: Nathan',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(32,3,'2026-02-01','Container Shipping - Large Cylindrical','Shipping',20660.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2026-02-01','Assigned: Nathan',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(33,4,'2026-01-31','R.R. Simmons (Final Payment #5/5)','Professional Services',15052.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2026-01-31','Related to 5201 Property litigation',1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(34,4,'2026-01-31','LDD Blueline Invoice 50570','Professional Services',12500.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2026-01-31','Related to 5201 Property litigation',1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(35,4,'2026-01-31','LDD Blueline Invoice 50452','Professional Services',9250.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2026-01-31','Related to 5201 Property litigation',1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(36,4,'2025-09-19','Carlton Fields (Legal)','Professional Services',66311.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-09-19','Related to 5201 Property litigation',1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(37,4,'2025-11-30','BayFront Capital (JDCA Reimbursement)','Transaction Fees',6000.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30',NULL,1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(38,4,'2025-10-01','Mavrix1 Payroll Estimate','Payroll',50552.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-10-01',NULL,1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(39,4,'2025-10-01','Mavrix 1 Worker\'s Comp','Payroll',740.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-10-01',NULL,1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(40,4,'2025-10-01','LBC Payroll Estimate','Payroll',38682.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-10-01',NULL,1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(41,4,'2025-10-01','LBC Worker\'s Comp','Payroll',518.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-10-01',NULL,1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(42,3,'2025-11-30','Sol Ark Prep Order','Equipment',5000.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30',NULL,1,'2025-11-14 19:57:45','2025-11-14 20:00:48');
/*!40000 ALTER TABLE `project_financial_transactions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_milestones`
--

DROP TABLE IF EXISTS `project_milestones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_milestones` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `project_id` int(10) unsigned NOT NULL,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `due_date` date NOT NULL,
  `completed_at` datetime DEFAULT NULL,
  `status` enum('pending','completed') DEFAULT 'pending',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_project` (`project_id`),
  CONSTRAINT `project_milestones_ibfk_1` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_milestones`
--

LOCK TABLES `project_milestones` WRITE;
/*!40000 ALTER TABLE `project_milestones` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `project_milestones` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_stages`
--

DROP TABLE IF EXISTS `project_stages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_stages` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `project_id` int(10) unsigned DEFAULT NULL COMMENT 'NULL = default template stage',
  `stage_name` varchar(100) NOT NULL,
  `stage_order` int(11) NOT NULL DEFAULT 0,
  `color` varchar(7) DEFAULT '#6c757d' COMMENT 'Hex color for stage',
  `wip_limit` int(11) DEFAULT NULL COMMENT 'Work-in-progress limit (optional)',
  `is_default` tinyint(1) DEFAULT 0 COMMENT 'Used as template for new projects',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_project` (`project_id`),
  KEY `idx_order` (`project_id`,`stage_order`),
  KEY `idx_default` (`is_default`)
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci COMMENT='Kanban stages/columns for projects';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_stages`
--

LOCK TABLES `project_stages` WRITE;
/*!40000 ALTER TABLE `project_stages` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `project_stages` VALUES
(1,NULL,'Backlog',1,'#6c757d',NULL,1,'2025-11-14 16:15:55'),
(2,NULL,'To Do',2,'#0dcaf0',NULL,1,'2025-11-14 16:15:55'),
(3,NULL,'In Progress',3,'#ffc107',NULL,1,'2025-11-14 16:15:55'),
(4,NULL,'Review',4,'#0d6efd',NULL,1,'2025-11-14 16:15:55'),
(5,NULL,'Testing',5,'#fd7e14',NULL,1,'2025-11-14 16:15:55'),
(6,NULL,'Done',6,'#198754',NULL,1,'2025-11-14 16:15:55'),
(19,3,'Backlog',1,'#6c757d',NULL,0,'2025-11-14 19:31:19'),
(20,3,'To Do',2,'#0dcaf0',NULL,0,'2025-11-14 19:31:19'),
(21,3,'In Progress',3,'#ffc107',NULL,0,'2025-11-14 19:31:19'),
(22,3,'Review',4,'#0d6efd',NULL,0,'2025-11-14 19:31:19'),
(23,3,'Testing',5,'#fd7e14',NULL,0,'2025-11-14 19:31:19'),
(24,3,'Done',6,'#198754',NULL,0,'2025-11-14 19:31:19'),
(26,4,'Backlog',1,'#6c757d',NULL,0,'2025-11-15 13:52:30'),
(27,4,'To Do',2,'#0dcaf0',NULL,0,'2025-11-15 13:52:30'),
(28,4,'In Progress',3,'#ffc107',NULL,0,'2025-11-15 13:52:30'),
(29,4,'Review',4,'#0d6efd',NULL,0,'2025-11-15 13:52:30'),
(30,4,'Testing',5,'#9b59b6',NULL,0,'2025-11-15 13:52:30'),
(31,4,'Done',6,'#198754',NULL,0,'2025-11-15 13:52:30');
/*!40000 ALTER TABLE `project_stages` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_task_assignments`
--

DROP TABLE IF EXISTS `project_task_assignments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_task_assignments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `task_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `role` enum('owner','contributor','reviewer') DEFAULT 'contributor',
  `assigned_by` int(10) unsigned DEFAULT NULL,
  `assigned_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_task_user` (`task_id`,`user_id`),
  KEY `idx_task` (`task_id`),
  KEY `idx_user` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci COMMENT='Task user assignments';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_task_assignments`
--

LOCK TABLES `project_task_assignments` WRITE;
/*!40000 ALTER TABLE `project_task_assignments` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `project_task_assignments` VALUES
(1,16,1,'contributor',1,'2025-11-14 23:13:59'),
(2,71,1,'contributor',1,'2025-11-15 15:43:45'),
(3,71,8,'contributor',1,'2025-12-03 20:25:09'),
(4,71,7,'reviewer',1,'2025-12-03 20:25:25'),
(5,92,4,'contributor',1,'2025-12-03 20:27:41'),
(6,92,7,'contributor',1,'2025-12-03 20:31:27'),
(7,76,7,'contributor',1,'2025-12-03 22:12:49'),
(8,76,5,'contributor',1,'2025-12-03 22:12:56');
/*!40000 ALTER TABLE `project_task_assignments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_task_attachments`
--

DROP TABLE IF EXISTS `project_task_attachments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_task_attachments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `task_id` int(10) unsigned NOT NULL,
  `filename` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_size` int(11) DEFAULT NULL,
  `file_type` varchar(100) DEFAULT NULL,
  `uploaded_by` int(10) unsigned DEFAULT NULL,
  `uploaded_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_task` (`task_id`),
  KEY `idx_uploaded_by` (`uploaded_by`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci COMMENT='Task file attachments';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_task_attachments`
--

LOCK TABLES `project_task_attachments` WRITE;
/*!40000 ALTER TABLE `project_task_attachments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `project_task_attachments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_task_checklist`
--

DROP TABLE IF EXISTS `project_task_checklist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_task_checklist` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `task_id` int(10) unsigned NOT NULL,
  `item_text` varchar(255) NOT NULL,
  `is_completed` tinyint(1) DEFAULT 0,
  `sort_order` int(11) DEFAULT 0,
  `completed_by` int(10) unsigned DEFAULT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_task` (`task_id`),
  KEY `idx_sort` (`task_id`,`sort_order`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci COMMENT='Task checklist items';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_task_checklist`
--

LOCK TABLES `project_task_checklist` WRITE;
/*!40000 ALTER TABLE `project_task_checklist` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `project_task_checklist` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_task_comments`
--

DROP TABLE IF EXISTS `project_task_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_task_comments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `task_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `comment_text` text NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_task` (`task_id`),
  KEY `idx_user` (`user_id`),
  KEY `idx_created` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci COMMENT='Task comments/discussion';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_task_comments`
--

LOCK TABLES `project_task_comments` WRITE;
/*!40000 ALTER TABLE `project_task_comments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `project_task_comments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_task_dependencies`
--

DROP TABLE IF EXISTS `project_task_dependencies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_task_dependencies` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `task_id` int(10) unsigned NOT NULL COMMENT 'The dependent task',
  `depends_on_task_id` int(10) unsigned NOT NULL COMMENT 'The prerequisite task',
  `dependency_type` enum('finish-to-start','start-to-start','finish-to-finish','start-to-finish') DEFAULT 'finish-to-start',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `lag_days` int(11) DEFAULT 0 COMMENT 'Lag time in days (can be negative for lead time)',
  `notes` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_dependency` (`task_id`,`depends_on_task_id`),
  KEY `idx_task` (`task_id`),
  KEY `idx_depends_on` (`depends_on_task_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci COMMENT='Task dependencies for Gantt charts';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_task_dependencies`
--

LOCK TABLES `project_task_dependencies` WRITE;
/*!40000 ALTER TABLE `project_task_dependencies` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `project_task_dependencies` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `project_task_financials`
--

DROP TABLE IF EXISTS `project_task_financials`;
/*!50001 DROP VIEW IF EXISTS `project_task_financials`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `project_task_financials` AS SELECT
 1 AS `task_id`,
  1 AS `project_id`,
  1 AS `task_title`,
  1 AS `estimated_cost`,
  1 AS `actual_cost`,
  1 AS `estimated_hours`,
  1 AS `actual_hours`,
  1 AS `transaction_id`,
  1 AS `transaction_date`,
  1 AS `transaction_description`,
  1 AS `transaction_amount`,
  1 AS `transaction_type`,
  1 AS `transaction_status`,
  1 AS `category`,
  1 AS `assigned_to_name` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `project_task_group_assignments`
--

DROP TABLE IF EXISTS `project_task_group_assignments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_task_group_assignments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `task_id` int(10) unsigned NOT NULL,
  `group_id` int(10) unsigned NOT NULL,
  `role` enum('owner','contributor','reviewer') DEFAULT 'contributor',
  `assigned_by` int(10) unsigned NOT NULL,
  `assigned_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_task_group` (`task_id`,`group_id`),
  KEY `assigned_by` (`assigned_by`),
  KEY `idx_task` (`task_id`),
  KEY `idx_group` (`group_id`),
  CONSTRAINT `project_task_group_assignments_ibfk_1` FOREIGN KEY (`task_id`) REFERENCES `project_tasks` (`id`) ON DELETE CASCADE,
  CONSTRAINT `project_task_group_assignments_ibfk_2` FOREIGN KEY (`group_id`) REFERENCES `user_groups` (`id`) ON DELETE CASCADE,
  CONSTRAINT `project_task_group_assignments_ibfk_3` FOREIGN KEY (`assigned_by`) REFERENCES `users` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='User groups assigned to project tasks';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_task_group_assignments`
--

LOCK TABLES `project_task_group_assignments` WRITE;
/*!40000 ALTER TABLE `project_task_group_assignments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `project_task_group_assignments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_tasks`
--

DROP TABLE IF EXISTS `project_tasks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_tasks` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `task_number` varchar(20) DEFAULT NULL,
  `project_id` int(10) unsigned NOT NULL,
  `stage_id` int(10) unsigned DEFAULT NULL,
  `sort_order` int(11) DEFAULT 0,
  `parent_task_id` int(10) unsigned DEFAULT NULL,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `assigned_to` int(10) unsigned DEFAULT NULL,
  `start_date` date DEFAULT NULL,
  `due_date` date DEFAULT NULL,
  `completed_at` datetime DEFAULT NULL,
  `estimated_hours` decimal(8,2) DEFAULT NULL,
  `duration_days` int(11) DEFAULT 1,
  `actual_hours` decimal(8,2) DEFAULT 0.00,
  `status` enum('pending','in_progress','completed','cancelled') DEFAULT 'pending',
  `priority` enum('low','medium','high','critical') DEFAULT 'medium',
  `progress_percent` int(11) DEFAULT 0,
  `is_milestone` tinyint(1) DEFAULT 0,
  `critical_path` tinyint(1) DEFAULT 0,
  `created_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  `estimated_cost` decimal(15,2) DEFAULT NULL COMMENT 'Estimated cost for this task',
  `actual_cost` decimal(15,2) DEFAULT 0.00 COMMENT 'Actual cost spent on this task',
  PRIMARY KEY (`id`),
  KEY `parent_task_id` (`parent_task_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_project` (`project_id`),
  KEY `idx_assigned` (`assigned_to`),
  KEY `idx_status` (`status`),
  KEY `idx_stage` (`stage_id`),
  KEY `idx_task_number` (`task_number`),
  KEY `idx_project_dates` (`project_id`,`start_date`,`due_date`),
  KEY `idx_critical_path` (`project_id`,`critical_path`),
  KEY `idx_deleted_at` (`deleted_at`),
  CONSTRAINT `project_tasks_ibfk_1` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
  CONSTRAINT `project_tasks_ibfk_2` FOREIGN KEY (`parent_task_id`) REFERENCES `project_tasks` (`id`) ON DELETE CASCADE,
  CONSTRAINT `project_tasks_ibfk_3` FOREIGN KEY (`assigned_to`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `project_tasks_ibfk_4` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=99 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_tasks`
--

LOCK TABLES `project_tasks` WRITE;
/*!40000 ALTER TABLE `project_tasks` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `project_tasks` VALUES
(2,'1.0',3,22,1,NULL,'Facility Walkthrough','Determine placement of equipment, materials and supplies',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:46:54',NULL,NULL,0.00),
(3,'1.1',3,20,NULL,NULL,'Mark Equipment Positions','Specific to the section',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-21 17:01:26',NULL,NULL,0.00),
(4,'1.2',3,20,NULL,NULL,'Mark Workflow Zones','Define workflow areas',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-17 15:36:12',NULL,NULL,0.00),
(5,'1.3',3,20,4,NULL,'Mark Safety Aisles','Define safety corridors',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(6,'1.4',3,20,5,NULL,'Determine Offices','Plan office locations',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','low',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(7,'1.5',3,20,6,NULL,'Determine Network Closet','Plan IT infrastructure room',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(8,'1.6.0',3,20,7,NULL,'Power Assessment','Determine needs for Battery lines, Motors, R&D and other',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','critical',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(9,'1.6.1',3,20,8,NULL,'Power Drops Installation','Determine quantity, type, location - Install and test',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','critical',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(10,'1.6.2',3,20,9,NULL,'Lighting Installation','Determine quantity, type, location - Install and test',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(11,'1.6.3',3,20,10,NULL,'Physical Security','Determine and assess all locks, deadbolts and doors - Install and test',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(12,'1.6.4',3,20,11,NULL,'Compressed Air System','Determine needs and locations - Install and test',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(13,'1.6.5',3,20,12,NULL,'HVAC Installation','Determine needs and locations - Install and test',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(14,'1.6.6',3,20,13,NULL,'Floor Leveling','Install and test floor leveling',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(15,'1.6.7',3,20,14,NULL,'ESD Flooring','Install and test ESD flooring',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(16,'1.6.8',3,21,1,NULL,'Internet Installation','Determine location - Install and test',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(17,'1.6.9',3,20,16,NULL,'IT Cabling & Management','Order and receive equipment - Install and test',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(18,'1.6.10',3,20,17,NULL,'Access Badging & Cameras','Set up cameras, door locks and sensors - Install and test',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(19,'1.6.11',3,20,18,NULL,'Infrastructure Validation','Conduct security assessment and testing of all infrastructure',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(20,'1.7.0',3,20,19,NULL,'Fire Suppression System','Install and test fire suppression',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','critical',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(21,'1.7.1',3,20,20,NULL,'Fire Extinguishers','Install and test extinguishers',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(22,'1.7.2',3,20,21,NULL,'Lockout/Tagout Stations','Install and test LOTO stations',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','critical',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(23,'1.8.0',3,20,22,NULL,'Rigging Crew Booking','Book rigging crew for equipment move',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(24,'1.8.1',3,20,23,NULL,'Unloading Equipment Ready','Prepare unloading equipment and area',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(25,'1.8.2',3,20,24,NULL,'Origination Station Inspection','Verify crates vs. packing list, check for damage',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(26,'2.0',3,20,25,NULL,'Dockside Inspection','Verify crates vs. packing list, check for damage',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-24 13:26:33',NULL,NULL,0.00),
(27,'2.1',3,19,26,NULL,'Staging & Storage','Move crates to staging, climate-control sensitive items',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(28,'2.2',3,19,27,NULL,'Uncrating','Open under OEM supervision, check parts',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(29,'2.3',3,19,28,NULL,'Documentation','Serial number logging, asset tagging',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(30,'3.0',3,19,29,NULL,'Floor Prep','Clean & mark permanent equipment positions',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(31,'3.1',3,19,30,NULL,'Move Equipment Into Place','Rigging equipment, orient workflow properly',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(32,'3.2',3,19,31,NULL,'Level & Anchor Equipment','Precision leveling, anti-vibration pads',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(33,'3.3',3,19,32,NULL,'Verify Clearances','Access gaps, fire lanes, safety zones',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(34,'4.0',3,19,33,NULL,'Electrical Connections','Connect electrical power to equipment',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','critical',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(35,'4.1',3,19,34,NULL,'Compressed Air Hookup','Connect lines, regulators, dryers',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(36,'4.2',3,19,35,NULL,'Process Gases Hookup','Hook up nitrogen/argon, leak test',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(37,'4.3',3,19,36,NULL,'Ventilation Hookup','Connect exhaust ducts, airflow testing',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(38,'4.4',3,19,37,NULL,'IT/Network Connections','Connect PLCs, testers to MES/ERP',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(39,'5.0',3,19,38,NULL,'OEM Inspection','Verify hookups, interlocks, safety checks',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','critical',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(40,'5.1',3,19,39,NULL,'Power-Up Sequence','Energize one machine at a time, diagnostics',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','critical',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(41,'5.2',3,19,40,NULL,'Equipment Calibration','Welders, cyclers, testers with reference standards',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(42,'5.3',3,19,41,NULL,'Software Integration','Load firmware, connect MES',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(43,'5.4',3,19,42,NULL,'Functional Checks','Verify conveyors, jigs, alarms, sensors',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(44,'6.0',3,19,43,NULL,'Dry Runs','Run dummy packs, mechanical only',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(45,'6.1',3,19,44,NULL,'Workflow Balancing','Adjust cycle times, fixtures',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(46,'6.2',3,19,45,NULL,'QA Checkpoints Setup','Set IR, weld pull test, pack voltage stations',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(47,'6.3',3,19,46,NULL,'Safety Validation','E-stops, fume extraction, fire suppression',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','critical',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(48,'7.0',3,19,47,NULL,'Pilot Batch Production','Run small volume with real cells',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(49,'7.1',3,19,48,NULL,'Operator Training','OEM trainer certification',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(50,'7.2',3,19,49,NULL,'Maintenance Training','Preventive maintenance, lockout/tagout',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(51,'7.3',3,19,50,NULL,'Documentation Finalization','SOPs finalized, calibration records filed',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(52,'8.0',3,19,51,NULL,'Controlled Production','Scale to 20–30% capacity, track OEE',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(53,'8.1',3,19,52,NULL,'OEM Support Period','2 weeks onsite stabilization',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(54,'8.2',3,19,53,NULL,'Full Capacity Ramp','Ramp to 100% planned throughput',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(55,'8.3',3,19,54,NULL,'Project Handover','Acceptance sign-off, ownership transfer',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(56,'9.0',3,19,55,NULL,'Pass Requirements to HR','Define hiring requirements for production line workers',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(57,'9.1',3,19,56,NULL,'Identify Candidates','Recruit and screen candidates',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(58,'9.2',3,19,57,NULL,'Conduct Interviews','Interview and select candidates',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(59,'9.3',3,19,58,NULL,'On-board Selected Hires','Complete onboarding process',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(60,'10.0',3,19,59,NULL,'Ensure Attendance','Ensure employees show up on time for training',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(61,'10.1',3,19,60,NULL,'Conduct Knowledge Checks','Test employee understanding',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(62,'10.2',3,19,61,NULL,'Identify Key Personnel','Identify lead operators and trainers',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(63,'10.3',3,19,62,NULL,'Plan for Retraining','Plan retraining schedule as required',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','low',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(64,'11.0',3,19,63,NULL,'Mock Order Manufacturing','Give employees a small mock order to manufacture',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(65,'11.1',3,19,64,NULL,'Verify Equipment Operation','Verify line workers can operate and run equipment',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(66,'11.2',3,19,65,NULL,'Check SOP Adherence','Check for adherence to SOPs',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(67,'11.3',3,19,66,NULL,'Verify Product Quality','Verify quality of products',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(68,NULL,4,28,7,NULL,'Review and Sign Facility Lease Agreement','Negotiate terms, review lease agreement with legal counsel, and execute lease for the new facility',NULL,'2025-11-16','2025-11-17',NULL,8.00,1,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(69,NULL,4,28,NULL,NULL,'Obtain Business Permits and Licenses','Research and obtain all required local, state, and federal permits (occupancy, fire safety, manufacturing licenses)',NULL,'2025-11-16','2025-11-18',NULL,16.00,2,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-12-05 17:44:53',NULL,NULL,0.00),
(70,NULL,4,28,6,NULL,'Setup Business Insurance Coverage','General liability, property insurance, workers compensation, and equipment insurance',NULL,'2025-11-16','2025-11-17',NULL,8.00,1,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(71,NULL,4,27,NULL,NULL,'Conduct Facility Walk-through and Assessment','Document current condition, identify needed repairs, plan layout for operations',NULL,'2025-11-16','2025-11-17',NULL,4.00,1,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(72,NULL,4,27,0,NULL,'Install Security System','Access control, cameras, alarm system for facility security',NULL,'2025-11-16','2025-11-19',NULL,24.00,3,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(73,NULL,4,28,4,NULL,'Setup Utilities and Internet','Establish electricity, water, gas, high-speed internet, and phone lines',NULL,'2025-11-16','2025-11-18',NULL,12.00,2,0.00,'pending','critical',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(74,NULL,4,27,0,NULL,'Plan and Mark Floor Layout','Design production areas, storage, office space, loading dock, and safety zones',NULL,'2025-11-16','2025-11-17',NULL,8.00,1,0.00,'pending','medium',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(75,NULL,4,27,0,NULL,'Install Production Equipment','Setup manufacturing/assembly equipment based on facility plan',NULL,'2025-11-16','2025-11-21',NULL,40.00,5,0.00,'pending','critical',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(76,NULL,4,29,1,NULL,'Setup Office Furniture and IT Equipment','Desks, chairs, computers, printers, network equipment',NULL,'2025-11-16','2025-11-18',NULL,16.00,2,0.00,'pending','medium',0,0,0,1,'2025-11-15 13:52:30','2025-12-04 23:10:07',NULL,NULL,0.00),
(77,NULL,4,27,0,NULL,'Install Safety Equipment and Signage','Fire extinguishers, first aid stations, emergency exits, safety signage',NULL,'2025-11-16','2025-11-17',NULL,8.00,1,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(78,NULL,4,27,0,NULL,'Setup Inventory Storage Systems','Shelving, pallet racks, bins, and inventory management setup',NULL,'2025-11-16','2025-11-19',NULL,24.00,3,0.00,'pending','medium',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(79,NULL,4,27,4,NULL,'Develop Standard Operating Procedures (SOPs)','Document processes for production, quality control, safety, and operations',NULL,'2025-11-16','2025-11-20',NULL,32.00,4,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(80,NULL,4,26,0,NULL,'Create Quality Control Processes','Define inspection procedures, testing protocols, and quality standards',NULL,'2025-11-16','2025-11-18',NULL,16.00,2,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(81,NULL,4,27,2,NULL,'Setup Inventory Management System','Implement inventory tracking, receiving procedures, and stock management',NULL,'2025-11-16','2025-11-18',NULL,16.00,2,0.00,'pending','medium',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(82,NULL,4,26,0,NULL,'Recruit and Hire Initial Team','Production staff, operations manager, quality control, administrative support',NULL,'2025-11-16','2025-11-26',NULL,80.00,10,0.00,'pending','critical',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(83,NULL,4,26,0,NULL,'Develop Employee Onboarding Program','Training materials, safety procedures, company policies, and handbook',NULL,'2025-11-16','2025-11-19',NULL,24.00,3,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(84,NULL,4,26,0,NULL,'Conduct Safety Training Sessions','OSHA compliance training, equipment safety, emergency procedures',NULL,'2025-11-16','2025-11-18',NULL,16.00,2,0.00,'pending','critical',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(85,NULL,4,26,0,NULL,'Identify and Qualify Suppliers','Source raw materials, components, and supplies; establish vendor relationships',NULL,'2025-11-16','2025-11-20',NULL,32.00,4,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(86,NULL,4,27,3,NULL,'Setup Receiving and Shipping Procedures','Loading dock operations, receiving inspection, shipping logistics',NULL,'2025-11-16','2025-11-18',NULL,16.00,2,0.00,'pending','medium',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(87,NULL,4,26,0,NULL,'Establish Vendor Accounts and Payment Terms','Negotiate terms with suppliers, setup accounts payable processes',NULL,'2025-11-16','2025-11-18',NULL,12.00,2,0.00,'pending','medium',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(88,NULL,4,28,5,NULL,'Setup Accounting and Payroll Systems','Configure accounting software, establish chart of accounts, payroll setup',NULL,'2025-11-16','2025-11-18',NULL,16.00,2,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(89,NULL,4,27,1,NULL,'Create Budget and Financial Projections','Operating budget, cash flow projections, financial planning for first year',NULL,'2025-11-16','2025-11-19',NULL,24.00,3,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(90,NULL,4,28,3,NULL,'Establish Banking Relationships','Business checking/savings accounts, credit lines, payment processing',NULL,'2025-11-16','2025-11-17',NULL,8.00,1,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(91,NULL,4,26,0,NULL,'Develop Brand Identity and Marketing Materials','Logo, business cards, brochures, website, social media presence',NULL,'2025-11-16','2025-11-21',NULL,40.00,5,0.00,'pending','medium',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(92,NULL,4,26,NULL,NULL,'Identify and Contact Initial Customers','Target customer list, sales outreach, pilot customer identification',NULL,'2025-11-16','2025-11-20',NULL,32.00,4,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(93,NULL,4,26,0,NULL,'Create Product Pricing Strategy','Cost analysis, competitive pricing, margin calculations',NULL,'2025-11-16','2025-11-18',NULL,16.00,2,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(94,NULL,4,26,0,NULL,'Setup Environmental Compliance Program','Waste disposal, recycling, environmental permits and reporting',NULL,'2025-11-16','2025-11-18',NULL,16.00,2,0.00,'pending','medium',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(95,NULL,4,26,0,NULL,'Establish Quality Certifications Plan','ISO, industry-specific certifications, quality management system',NULL,'2025-11-16','2025-11-19',NULL,24.00,3,0.00,'pending','medium',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(96,NULL,4,26,0,NULL,'Conduct Facility Dry Run / Test Production','Test all systems, production trial run, identify and fix issues',NULL,'2025-11-16','2025-11-21',NULL,40.00,5,0.00,'pending','critical',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(97,NULL,4,26,0,NULL,'Plan Grand Opening / Launch Event','Invite stakeholders, customers, press for facility launch event',NULL,'2025-11-16','2025-11-19',NULL,24.00,3,0.00,'pending','low',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(98,NULL,4,26,0,NULL,'Finalize Emergency Response Plan','Fire, medical emergency, natural disaster, evacuation procedures',NULL,'2025-11-16','2025-11-18',NULL,12.00,2,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00);
/*!40000 ALTER TABLE `project_tasks` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_team_groups`
--

DROP TABLE IF EXISTS `project_team_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_team_groups` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `project_id` int(10) unsigned NOT NULL,
  `group_id` int(10) unsigned NOT NULL,
  `role` varchar(100) DEFAULT NULL COMMENT 'Group role on project',
  `added_by` int(10) unsigned NOT NULL,
  `added_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_project_group` (`project_id`,`group_id`),
  KEY `added_by` (`added_by`),
  KEY `idx_project` (`project_id`),
  KEY `idx_group` (`group_id`),
  CONSTRAINT `project_team_groups_ibfk_1` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
  CONSTRAINT `project_team_groups_ibfk_2` FOREIGN KEY (`group_id`) REFERENCES `user_groups` (`id`) ON DELETE CASCADE,
  CONSTRAINT `project_team_groups_ibfk_3` FOREIGN KEY (`added_by`) REFERENCES `users` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='User groups assigned to project teams';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_team_groups`
--

LOCK TABLES `project_team_groups` WRITE;
/*!40000 ALTER TABLE `project_team_groups` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `project_team_groups` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_team_members`
--

DROP TABLE IF EXISTS `project_team_members`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_team_members` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `project_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `role` varchar(100) DEFAULT NULL COMMENT 'Developer, Designer, Tester, etc.',
  `joined_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_project_user` (`project_id`,`user_id`),
  KEY `idx_project` (`project_id`),
  KEY `idx_user` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci COMMENT='Project team member assignments';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_team_members`
--

LOCK TABLES `project_team_members` WRITE;
/*!40000 ALTER TABLE `project_team_members` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `project_team_members` VALUES
(1,3,1,'','2025-11-15 14:47:16'),
(2,3,8,'','2025-11-15 14:47:22'),
(3,3,7,'','2025-11-15 14:47:29'),
(4,4,8,'','2025-11-15 15:20:36'),
(5,4,7,'','2025-11-15 15:20:41');
/*!40000 ALTER TABLE `project_team_members` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `projects`
--

DROP TABLE IF EXISTS `projects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `projects` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `code` varchar(50) NOT NULL,
  `description` text DEFAULT NULL,
  `customer_id` int(10) unsigned DEFAULT NULL,
  `department_id` int(10) unsigned DEFAULT NULL,
  `project_manager_id` int(10) unsigned DEFAULT NULL,
  `start_date` date DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `estimated_hours` decimal(10,2) DEFAULT NULL,
  `actual_hours` decimal(10,2) DEFAULT 0.00,
  `budget` decimal(15,2) DEFAULT NULL,
  `actual_cost` decimal(15,2) DEFAULT 0.00,
  `status` enum('planning','in_progress','on_hold','completed','cancelled') DEFAULT 'planning',
  `priority` enum('low','medium','high','critical') DEFAULT 'medium',
  `progress_percent` int(11) DEFAULT 0,
  `color` varchar(7) DEFAULT NULL COMMENT 'Hex color for project identification',
  `tags` varchar(255) DEFAULT NULL COMMENT 'Comma-separated project tags',
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  `budget_amount` decimal(15,2) DEFAULT 0.00 COMMENT 'Total project budget',
  `actual_revenue` decimal(15,2) DEFAULT 0.00 COMMENT 'Actual revenue received',
  `actual_expenses` decimal(15,2) DEFAULT 0.00 COMMENT 'Actual expenses incurred',
  `cash_balance` decimal(15,2) DEFAULT 0.00 COMMENT 'Current cash position for project',
  `revenue_account_id` int(10) unsigned DEFAULT NULL COMMENT 'Default revenue account for this project',
  `expense_account_id` int(10) unsigned DEFAULT NULL COMMENT 'Default expense account for this project',
  `financial_status` enum('healthy','warning','critical') DEFAULT 'healthy' COMMENT 'Financial health indicator',
  PRIMARY KEY (`id`),
  UNIQUE KEY `code` (`code`),
  KEY `created_by` (`created_by`),
  KEY `idx_customer` (`customer_id`),
  KEY `idx_manager` (`project_manager_id`),
  KEY `idx_status` (`status`),
  KEY `idx_department` (`department_id`),
  KEY `fk_project_revenue_account` (`revenue_account_id`),
  KEY `fk_project_expense_account` (`expense_account_id`),
  KEY `idx_deleted_at` (`deleted_at`),
  CONSTRAINT `fk_project_expense_account` FOREIGN KEY (`expense_account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_project_revenue_account` FOREIGN KEY (`revenue_account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `projects_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE SET NULL,
  CONSTRAINT `projects_ibfk_2` FOREIGN KEY (`project_manager_id`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `projects_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `projects`
--

LOCK TABLES `projects` WRITE;
/*!40000 ALTER TABLE `projects` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `projects` VALUES
(3,'Battery Production Line Setup','BATT-2025','Complete installation and commissioning of battery production line including facility preparation, equipment installation, utilities hookup, commissioning, and ramp-up to full production capacity.',NULL,13,NULL,NULL,NULL,NULL,0.00,NULL,0.00,'planning','high',0,NULL,NULL,NULL,1,'2025-11-14 19:29:43','2025-11-14 20:00:48',NULL,1225000.00,1225000.00,0.00,1225000.00,NULL,NULL,'healthy'),
(4,'Original Startup Project','GEN-OPS','General business operations and miscellaneous expenses',NULL,1,1,NULL,NULL,NULL,0.00,NULL,0.00,'planning','medium',0,NULL,NULL,'',1,'2025-11-15 13:44:46','2025-11-15 15:42:37',NULL,0.00,0.00,0.00,0.00,NULL,NULL,'healthy');
/*!40000 ALTER TABLE `projects` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `promotion_usage`
--

DROP TABLE IF EXISTS `promotion_usage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `promotion_usage` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `promotion_id` int(10) unsigned NOT NULL,
  `customer_id` int(10) unsigned DEFAULT NULL,
  `order_id` int(10) unsigned DEFAULT NULL,
  `discount_amount` decimal(10,2) NOT NULL,
  `used_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_promotion` (`promotion_id`),
  KEY `idx_customer` (`customer_id`),
  KEY `idx_order` (`order_id`),
  CONSTRAINT `promotion_usage_ibfk_1` FOREIGN KEY (`promotion_id`) REFERENCES `promotions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `promotion_usage`
--

LOCK TABLES `promotion_usage` WRITE;
/*!40000 ALTER TABLE `promotion_usage` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `promotion_usage` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `promotions`
--

DROP TABLE IF EXISTS `promotions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `promotions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `promo_code` varchar(50) DEFAULT NULL,
  `promotion_type` enum('order_discount','product_discount','free_shipping','bogo') NOT NULL,
  `discount_type` enum('percentage','fixed') NOT NULL,
  `discount_value` decimal(10,2) NOT NULL,
  `min_purchase` decimal(10,2) DEFAULT NULL,
  `max_discount` decimal(10,2) DEFAULT NULL,
  `start_date` date DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `usage_limit` int(11) DEFAULT NULL,
  `per_customer_limit` int(11) DEFAULT NULL,
  `applies_to` enum('all','specific_products','specific_categories','specific_customers') DEFAULT 'all',
  `target_ids` text DEFAULT NULL COMMENT 'JSON array of product/category/customer IDs',
  `priority` int(11) NOT NULL DEFAULT 0,
  `status` enum('active','inactive','expired') NOT NULL DEFAULT 'active',
  `terms` text DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_promo_code` (`promo_code`),
  KEY `idx_promo_code` (`promo_code`),
  KEY `idx_status` (`status`),
  KEY `idx_dates` (`start_date`,`end_date`),
  KEY `idx_promotion_type` (`promotion_type`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `promotions`
--

LOCK TABLES `promotions` WRITE;
/*!40000 ALTER TABLE `promotions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `promotions` VALUES
(1,'test','','','free_shipping','fixed',5.00,0.00,0.00,'0000-00-00','0000-00-00',0,0,'all',NULL,0,'active','test info','2025-10-31 01:36:21','2025-10-31 01:44:36'),
(3,'test2','',NULL,'order_discount','percentage',5.00,0.00,0.00,'0000-00-00','0000-00-00',0,0,'all',NULL,0,'active','','2025-10-31 01:39:04','2025-10-31 01:39:04');
/*!40000 ALTER TABLE `promotions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `purchase_bill_items`
--

DROP TABLE IF EXISTS `purchase_bill_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `purchase_bill_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `bill_id` int(11) NOT NULL,
  `product_id` int(11) DEFAULT NULL,
  `description` text NOT NULL,
  `quantity` decimal(10,2) NOT NULL,
  `unit_price` decimal(10,2) NOT NULL,
  `tax_rate` decimal(5,2) DEFAULT 0.00,
  `discount_percent` decimal(5,2) DEFAULT 0.00,
  `line_total` decimal(15,2) NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `bill_id` (`bill_id`),
  CONSTRAINT `purchase_bill_items_ibfk_1` FOREIGN KEY (`bill_id`) REFERENCES `purchase_bills` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_bill_items`
--

LOCK TABLES `purchase_bill_items` WRITE;
/*!40000 ALTER TABLE `purchase_bill_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `purchase_bill_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `purchase_bills`
--

DROP TABLE IF EXISTS `purchase_bills`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `purchase_bills` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `bill_number` varchar(50) NOT NULL,
  `supplier_id` int(10) unsigned NOT NULL,
  `purchase_order_id` int(11) DEFAULT NULL,
  `bill_date` date NOT NULL,
  `due_date` date DEFAULT NULL,
  `subtotal` decimal(15,2) NOT NULL DEFAULT 0.00,
  `tax_amount` decimal(15,2) DEFAULT 0.00,
  `discount_amount` decimal(15,2) DEFAULT 0.00,
  `total_amount` decimal(15,2) NOT NULL DEFAULT 0.00,
  `paid_amount` decimal(15,2) DEFAULT 0.00,
  `balance` decimal(15,2) GENERATED ALWAYS AS (`total_amount` - `paid_amount`) STORED,
  `status` enum('draft','submitted','approved','paid','partial','overdue','cancelled') DEFAULT 'draft',
  `payment_terms` varchar(100) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `bill_number` (`bill_number`),
  KEY `idx_supplier` (`supplier_id`),
  KEY `idx_status` (`status`),
  KEY `idx_bill_date` (`bill_date`),
  KEY `idx_balance` (`balance`),
  KEY `idx_status_balance` (`status`,`balance`),
  CONSTRAINT `purchase_bills_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_bills`
--

LOCK TABLES `purchase_bills` WRITE;
/*!40000 ALTER TABLE `purchase_bills` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `purchase_bills` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `purchase_order_items`
--

DROP TABLE IF EXISTS `purchase_order_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `purchase_order_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `po_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `quantity` int(11) NOT NULL,
  `received_quantity` int(11) DEFAULT 0,
  `unit_price` decimal(15,2) NOT NULL,
  `tax_rate` decimal(5,2) DEFAULT 0.00,
  `line_total` decimal(15,2) NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `po_id` (`po_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `purchase_order_items_ibfk_1` FOREIGN KEY (`po_id`) REFERENCES `purchase_orders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `purchase_order_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_order_items`
--

LOCK TABLES `purchase_order_items` WRITE;
/*!40000 ALTER TABLE `purchase_order_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `purchase_order_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `purchase_orders`
--

DROP TABLE IF EXISTS `purchase_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `purchase_orders` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `po_number` varchar(50) NOT NULL,
  `supplier_id` int(10) unsigned NOT NULL,
  `order_date` date NOT NULL,
  `expected_delivery` date DEFAULT NULL,
  `status` enum('draft','sent','confirmed','received','cancelled') DEFAULT 'draft',
  `subtotal` decimal(15,2) DEFAULT 0.00,
  `tax_amount` decimal(15,2) DEFAULT 0.00,
  `shipping_cost` decimal(15,2) DEFAULT 0.00,
  `total_amount` decimal(15,2) DEFAULT 0.00,
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `po_number` (`po_number`),
  KEY `supplier_id` (`supplier_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_deleted_at` (`deleted_at`),
  CONSTRAINT `purchase_orders_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`),
  CONSTRAINT `purchase_orders_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_orders`
--

LOCK TABLES `purchase_orders` WRITE;
/*!40000 ALTER TABLE `purchase_orders` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `purchase_orders` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `purchase_payments`
--

DROP TABLE IF EXISTS `purchase_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `purchase_payments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `payment_number` varchar(50) NOT NULL,
  `supplier_id` int(10) unsigned NOT NULL,
  `bill_id` int(11) DEFAULT NULL,
  `payment_date` date NOT NULL,
  `amount` decimal(15,2) NOT NULL,
  `payment_method` enum('cash','check','bank_transfer','credit_card','other') DEFAULT 'bank_transfer',
  `reference_number` varchar(100) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `payment_number` (`payment_number`),
  KEY `idx_supplier` (`supplier_id`),
  KEY `idx_payment_date` (`payment_date`),
  CONSTRAINT `purchase_payments_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_payments`
--

LOCK TABLES `purchase_payments` WRITE;
/*!40000 ALTER TABLE `purchase_payments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `purchase_payments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `purchase_requisition_items`
--

DROP TABLE IF EXISTS `purchase_requisition_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `purchase_requisition_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `pr_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned DEFAULT NULL,
  `description` text NOT NULL,
  `quantity` int(11) NOT NULL,
  `estimated_price` decimal(15,2) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `pr_id` (`pr_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `purchase_requisition_items_ibfk_1` FOREIGN KEY (`pr_id`) REFERENCES `purchase_requisitions` (`id`) ON DELETE CASCADE,
  CONSTRAINT `purchase_requisition_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_requisition_items`
--

LOCK TABLES `purchase_requisition_items` WRITE;
/*!40000 ALTER TABLE `purchase_requisition_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `purchase_requisition_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `purchase_requisitions`
--

DROP TABLE IF EXISTS `purchase_requisitions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `purchase_requisitions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `requisition_number` varchar(50) NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `quantity` decimal(15,3) NOT NULL,
  `required_by_date` date DEFAULT NULL,
  `priority` enum('low','normal','high','urgent') DEFAULT 'normal',
  `status` enum('pending','approved','rejected','converted','cancelled') DEFAULT 'pending',
  `notes` text DEFAULT NULL,
  `requested_by` int(10) unsigned NOT NULL,
  `approved_by` int(10) unsigned DEFAULT NULL,
  `approved_at` datetime DEFAULT NULL,
  `rejected_by` int(10) unsigned DEFAULT NULL,
  `rejection_reason` text DEFAULT NULL,
  `purchase_order_id` int(10) unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `requisition_number` (`requisition_number`),
  KEY `idx_product` (`product_id`),
  KEY `idx_status` (`status`),
  KEY `idx_priority` (`priority`),
  KEY `idx_required_by` (`required_by_date`),
  KEY `requested_by` (`requested_by`),
  KEY `approved_by` (`approved_by`),
  KEY `rejected_by` (`rejected_by`),
  KEY `purchase_order_id` (`purchase_order_id`),
  KEY `idx_requisitions_status_priority` (`status`,`priority`),
  CONSTRAINT `purchase_requisitions_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE,
  CONSTRAINT `purchase_requisitions_ibfk_2` FOREIGN KEY (`requested_by`) REFERENCES `users` (`id`),
  CONSTRAINT `purchase_requisitions_ibfk_3` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `purchase_requisitions_ibfk_4` FOREIGN KEY (`rejected_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `purchase_requisitions_ibfk_5` FOREIGN KEY (`purchase_order_id`) REFERENCES `purchase_orders` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_requisitions`
--

LOCK TABLES `purchase_requisitions` WRITE;
/*!40000 ALTER TABLE `purchase_requisitions` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `purchase_requisitions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `purchase_return_items`
--

DROP TABLE IF EXISTS `purchase_return_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `purchase_return_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `return_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `quantity` int(11) NOT NULL,
  `unit_price` decimal(15,2) NOT NULL,
  `line_total` decimal(15,2) NOT NULL,
  `reason` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `return_id` (`return_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `purchase_return_items_ibfk_1` FOREIGN KEY (`return_id`) REFERENCES `purchase_returns` (`id`) ON DELETE CASCADE,
  CONSTRAINT `purchase_return_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_return_items`
--

LOCK TABLES `purchase_return_items` WRITE;
/*!40000 ALTER TABLE `purchase_return_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `purchase_return_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `purchase_returns`
--

DROP TABLE IF EXISTS `purchase_returns`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `purchase_returns` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `return_number` varchar(50) NOT NULL,
  `supplier_id` int(10) unsigned NOT NULL,
  `po_id` int(10) unsigned DEFAULT NULL,
  `grn_id` int(10) unsigned DEFAULT NULL,
  `return_date` date NOT NULL,
  `reason` text DEFAULT NULL,
  `status` enum('draft','pending','approved','shipped','completed','cancelled') DEFAULT 'draft',
  `total_amount` decimal(15,2) DEFAULT 0.00,
  `refund_amount` decimal(15,2) DEFAULT 0.00,
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `return_number` (`return_number`),
  KEY `supplier_id` (`supplier_id`),
  KEY `po_id` (`po_id`),
  KEY `grn_id` (`grn_id`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `purchase_returns_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`),
  CONSTRAINT `purchase_returns_ibfk_2` FOREIGN KEY (`po_id`) REFERENCES `purchase_orders` (`id`) ON DELETE SET NULL,
  CONSTRAINT `purchase_returns_ibfk_3` FOREIGN KEY (`grn_id`) REFERENCES `goods_receipts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `purchase_returns_ibfk_4` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_returns`
--

LOCK TABLES `purchase_returns` WRITE;
/*!40000 ALTER TABLE `purchase_returns` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `purchase_returns` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `qb_account_mappings`
--

DROP TABLE IF EXISTS `qb_account_mappings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `qb_account_mappings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `erp_account_type` varchar(100) NOT NULL COMMENT 'payroll_expense, tax_liability, etc.',
  `erp_account_id` int(11) DEFAULT NULL COMMENT 'Account ID in local chart of accounts',
  `erp_account_name` varchar(255) DEFAULT NULL,
  `qb_account_id` varchar(255) NOT NULL COMMENT 'QuickBooks Account ID',
  `qb_account_name` varchar(255) DEFAULT NULL,
  `qb_account_type` varchar(100) DEFAULT NULL COMMENT 'Expense, Other Current Liability, etc.',
  `is_active` tinyint(1) DEFAULT 1,
  `sync_direction` enum('bidirectional','to_qb','from_qb') DEFAULT 'to_qb',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_mapping` (`erp_account_type`,`erp_account_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `qb_account_mappings`
--

LOCK TABLES `qb_account_mappings` WRITE;
/*!40000 ALTER TABLE `qb_account_mappings` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `qb_account_mappings` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `qb_connections`
--

DROP TABLE IF EXISTS `qb_connections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `qb_connections` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` int(11) DEFAULT NULL,
  `realm_id` varchar(255) NOT NULL COMMENT 'QuickBooks Company ID',
  `access_token` text NOT NULL,
  `refresh_token` text NOT NULL,
  `token_expires_at` datetime NOT NULL,
  `refresh_token_expires_at` datetime NOT NULL,
  `is_active` tinyint(1) DEFAULT 1,
  `environment` enum('sandbox','production') DEFAULT 'production',
  `last_sync_at` datetime DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_realm` (`realm_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `qb_connections`
--

LOCK TABLES `qb_connections` WRITE;
/*!40000 ALTER TABLE `qb_connections` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `qb_connections` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `qb_entity_links`
--

DROP TABLE IF EXISTS `qb_entity_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `qb_entity_links` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `entity_type` varchar(50) NOT NULL COMMENT 'employee, vendor, customer, etc.',
  `local_id` int(11) NOT NULL COMMENT 'ID in local database',
  `qb_id` varchar(255) NOT NULL COMMENT 'QuickBooks entity ID',
  `qb_sync_token` varchar(255) DEFAULT NULL COMMENT 'For optimistic locking',
  `last_synced_at` datetime DEFAULT NULL,
  `sync_status` enum('synced','pending','conflict') DEFAULT 'synced',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_local_entity` (`entity_type`,`local_id`),
  UNIQUE KEY `unique_qb_entity` (`entity_type`,`qb_id`),
  KEY `idx_sync_status` (`sync_status`,`last_synced_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `qb_entity_links`
--

LOCK TABLES `qb_entity_links` WRITE;
/*!40000 ALTER TABLE `qb_entity_links` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `qb_entity_links` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `qb_settings`
--

DROP TABLE IF EXISTS `qb_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `qb_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `setting_key` varchar(100) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `setting_type` varchar(50) DEFAULT 'string' COMMENT 'string, json, boolean, integer',
  `description` text DEFAULT NULL,
  `is_encrypted` tinyint(1) DEFAULT 0,
  `updated_by` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `setting_key` (`setting_key`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `qb_settings`
--

LOCK TABLES `qb_settings` WRITE;
/*!40000 ALTER TABLE `qb_settings` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `qb_settings` VALUES
(1,'auto_sync_enabled','false','boolean','Enable automatic sync of payroll data',0,NULL,'2025-10-27 11:33:34','2025-10-27 11:33:34'),
(2,'sync_frequency_minutes','60','integer','How often to sync data (in minutes)',0,NULL,'2025-10-27 11:33:34','2025-10-27 11:33:34'),
(3,'sync_employees','true','boolean','Sync employee records',0,NULL,'2025-10-27 11:33:34','2025-10-27 11:33:34'),
(4,'sync_payroll_entries','true','boolean','Sync payroll journal entries',0,NULL,'2025-10-27 11:33:34','2025-10-27 11:33:34'),
(5,'sync_taxes','true','boolean','Sync tax liabilities',0,NULL,'2025-10-27 11:33:34','2025-10-27 11:33:34'),
(6,'default_payroll_account','','string','Default QB account for payroll expenses',0,NULL,'2025-10-27 11:33:34','2025-10-27 11:33:34'),
(7,'default_tax_liability_account','','string','Default QB account for tax liabilities',0,NULL,'2025-10-27 11:33:34','2025-10-27 11:33:34'),
(8,'retry_failed_syncs','true','boolean','Automatically retry failed syncs',0,NULL,'2025-10-27 11:33:34','2025-10-27 11:33:34'),
(9,'notify_on_sync_errors','true','boolean','Send notifications when sync fails',0,NULL,'2025-10-27 11:33:34','2025-10-27 11:33:34');
/*!40000 ALTER TABLE `qb_settings` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `qb_sync_logs`
--

DROP TABLE IF EXISTS `qb_sync_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `qb_sync_logs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `sync_queue_id` int(11) DEFAULT NULL,
  `entity_type` varchar(50) DEFAULT NULL,
  `entity_id` int(11) DEFAULT NULL,
  `qb_id` varchar(255) DEFAULT NULL,
  `operation` varchar(20) DEFAULT NULL,
  `direction` enum('to_qb','from_qb') DEFAULT NULL,
  `status` enum('success','failure','partial') DEFAULT NULL,
  `request_payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`request_payload`)),
  `response_payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`response_payload`)),
  `error_details` text DEFAULT NULL,
  `execution_time_ms` int(11) DEFAULT NULL COMMENT 'Time taken in milliseconds',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_entity` (`entity_type`,`entity_id`),
  KEY `idx_status` (`status`,`created_at`),
  KEY `idx_queue` (`sync_queue_id`),
  CONSTRAINT `qb_sync_logs_ibfk_1` FOREIGN KEY (`sync_queue_id`) REFERENCES `qb_sync_queue` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `qb_sync_logs`
--

LOCK TABLES `qb_sync_logs` WRITE;
/*!40000 ALTER TABLE `qb_sync_logs` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `qb_sync_logs` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `qb_sync_queue`
--

DROP TABLE IF EXISTS `qb_sync_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `qb_sync_queue` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `entity_type` varchar(50) NOT NULL COMMENT 'employee, journal_entry, account, etc.',
  `entity_id` int(11) NOT NULL COMMENT 'ID in local database',
  `operation` varchar(20) NOT NULL COMMENT 'create, update, delete',
  `direction` enum('to_qb','from_qb') DEFAULT 'to_qb',
  `qb_id` varchar(255) DEFAULT NULL COMMENT 'QuickBooks entity ID',
  `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Data to sync' CHECK (json_valid(`payload`)),
  `status` enum('pending','processing','completed','failed') DEFAULT 'pending',
  `priority` int(11) DEFAULT 5 COMMENT 'Lower number = higher priority',
  `attempts` int(11) DEFAULT 0,
  `max_attempts` int(11) DEFAULT 3,
  `error_message` text DEFAULT NULL,
  `scheduled_at` datetime DEFAULT current_timestamp(),
  `processed_at` datetime DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_status` (`status`),
  KEY `idx_entity` (`entity_type`,`entity_id`),
  KEY `idx_scheduled` (`scheduled_at`,`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `qb_sync_queue`
--

LOCK TABLES `qb_sync_queue` WRITE;
/*!40000 ALTER TABLE `qb_sync_queue` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `qb_sync_queue` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `qualification_assessments`
--

DROP TABLE IF EXISTS `qualification_assessments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `qualification_assessments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `application_id` int(10) unsigned NOT NULL,
  `assessment_type` enum('technical','skills','personality','aptitude','background-check','reference-check','other') NOT NULL,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `assigned_date` date DEFAULT NULL,
  `due_date` date DEFAULT NULL,
  `completed_date` date DEFAULT NULL,
  `score` decimal(5,2) DEFAULT NULL COMMENT 'Score percentage or rating',
  `max_score` decimal(5,2) DEFAULT 100.00,
  `pass_threshold` decimal(5,2) DEFAULT 70.00,
  `status` enum('pending','in-progress','completed','passed','failed','waived') DEFAULT 'pending',
  `results` text DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `evaluated_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_application` (`application_id`),
  KEY `idx_status` (`status`),
  KEY `idx_type` (`assessment_type`),
  CONSTRAINT `qualification_assessments_ibfk_1` FOREIGN KEY (`application_id`) REFERENCES `job_applications` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `qualification_assessments`
--

LOCK TABLES `qualification_assessments` WRITE;
/*!40000 ALTER TABLE `qualification_assessments` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `qualification_assessments` VALUES
(1,1,'','','','2025-11-02','2025-11-10',NULL,NULL,100.00,70.00,'pending',NULL,NULL,NULL,'2025-11-02 12:31:59','2025-11-02 12:31:59');
/*!40000 ALTER TABLE `qualification_assessments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `quality_inspections`
--

DROP TABLE IF EXISTS `quality_inspections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `quality_inspections` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `inspection_number` varchar(50) NOT NULL,
  `work_order_id` int(10) unsigned DEFAULT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `inspection_date` datetime NOT NULL,
  `inspection_type` enum('receiving','in_process','final','audit') DEFAULT 'final',
  `template_id` int(10) unsigned DEFAULT NULL,
  `inspector_id` int(10) unsigned DEFAULT NULL,
  `status` enum('pending','in_progress','completed','cancelled') DEFAULT 'pending',
  `overall_result` enum('pass','fail','conditional') DEFAULT NULL,
  `completion_notes` text DEFAULT NULL,
  `completed_by` int(10) unsigned DEFAULT NULL,
  `completed_at` datetime DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `inspection_number` (`inspection_number`),
  KEY `idx_work_order` (`work_order_id`),
  KEY `idx_product` (`product_id`),
  KEY `idx_inspection_date` (`inspection_date`),
  KEY `idx_status` (`status`),
  KEY `inspector_id` (`inspector_id`),
  KEY `completed_by` (`completed_by`),
  KEY `idx_quality_inspections_status_date` (`status`,`inspection_date`),
  CONSTRAINT `quality_inspections_ibfk_1` FOREIGN KEY (`work_order_id`) REFERENCES `work_orders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `quality_inspections_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE,
  CONSTRAINT `quality_inspections_ibfk_3` FOREIGN KEY (`inspector_id`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `quality_inspections_ibfk_4` FOREIGN KEY (`completed_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quality_inspections`
--

LOCK TABLES `quality_inspections` WRITE;
/*!40000 ALTER TABLE `quality_inspections` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `quality_inspections` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `quote_documents`
--

DROP TABLE IF EXISTS `quote_documents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `quote_documents` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `quote_id` int(11) NOT NULL,
  `file_name` varchar(255) NOT NULL,
  `original_name` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_type` varchar(100) DEFAULT NULL,
  `file_size` int(11) DEFAULT NULL COMMENT 'Size in bytes',
  `document_type` varchar(50) DEFAULT NULL COMMENT 'bom, sketch, specification, other',
  `description` text DEFAULT NULL,
  `uploaded_by` int(11) NOT NULL,
  `uploaded_at` datetime DEFAULT current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_quote` (`quote_id`),
  KEY `idx_uploaded_by` (`uploaded_by`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_documents`
--

LOCK TABLES `quote_documents` WRITE;
/*!40000 ALTER TABLE `quote_documents` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `quote_documents` VALUES
(1,15,'IMG_5218_1764273457.jpg','IMG_5218.JPG','uploads/quotes/15/IMG_5218_1764273457.jpg','image/jpeg',239098,'','',1,'2025-11-27 14:57:37','2025-11-27 19:57:37','2025-11-27 19:57:37');
/*!40000 ALTER TABLE `quote_documents` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `quote_items`
--

DROP TABLE IF EXISTS `quote_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `quote_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `quote_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned DEFAULT NULL,
  `description` text NOT NULL,
  `quantity` int(11) NOT NULL,
  `unit_price` decimal(15,2) NOT NULL,
  `tax_rate` decimal(5,2) DEFAULT 0.00,
  `discount_percent` decimal(5,2) DEFAULT 0.00,
  `line_total` decimal(15,2) NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `quote_id` (`quote_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `quote_items_ibfk_1` FOREIGN KEY (`quote_id`) REFERENCES `quotes` (`id`) ON DELETE CASCADE,
  CONSTRAINT `quote_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_items`
--

LOCK TABLES `quote_items` WRITE;
/*!40000 ALTER TABLE `quote_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `quote_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `quote_signatures`
--

DROP TABLE IF EXISTS `quote_signatures`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `quote_signatures` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `quote_id` int(11) NOT NULL,
  `action` enum('accepted','declined') NOT NULL,
  `signature_data` text DEFAULT NULL,
  `accepted_by_name` varchar(255) NOT NULL,
  `accepted_by_email` varchar(255) NOT NULL,
  `accepted_by_title` varchar(255) DEFAULT NULL,
  `company_name` varchar(255) DEFAULT NULL,
  `declined_reason` text DEFAULT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `signed_at` datetime NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_quote_id` (`quote_id`),
  KEY `idx_action` (`action`),
  KEY `idx_signed_at` (`signed_at`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_signatures`
--

LOCK TABLES `quote_signatures` WRITE;
/*!40000 ALTER TABLE `quote_signatures` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `quote_signatures` VALUES
(1,9,'accepted','data:image/png;base64,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','4 Patriots','4patriots@example.com','','4 Patriots',NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 08:27:53','2025-11-16 13:27:53'),
(2,19,'accepted','data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAlgAAADICAYAAAA0n5+2AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAACWKADAAQAAAABAAAAyAAAAAAzUgSDAAARE0lEQVR4Ae3dTassRxkA4HwjCn7ARRfRjSL4E1z7A/wHZuVKBQkouoq4FhRDBHVlVjELBVfBpRjcKBGCiCuToEHwxsSgMd/3+r5winROz8ztmequ6a55Goqe09NV9dZTc0+/p3ruzF132QgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQOLPAreg/i40AAQIECBAgQGAGgRvRxu2rko9tBAgQIECAAAECMwiUBGuGpjRBgECNwD01ldUlQIAAAQIECBAYC0iwxiaOECBAgAABAgSqBCRYVXwqEyBAgAABAgTGAhKssYkjBAgQIECAAIEqAQlWFZ/KBAgQIECAAIGxgARrbOIIAQIECBAgQKBKQIJVxacyAQIECBAgQGAsIMEamzhCgAABAgQIEKgSkGBV8alMgAABAgQIEBgLSLDGJo4QIECAAAECBKoEJFhVfCoTIECAAAECBMYCEqyxiSMECBAgQIAAgSoBCVYVn8oECBAgQIAAgbGABGts4ggBAgQIECBAoEpAglXFpzIBAgQIECBAYCwgwRqbOEKAAAECBAgQqBKQYFXxqUyA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','4 Patriots','4patriots@example.com','','4 Patriots',NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 09:28:22','2025-11-16 14:28:22'),
(3,16,'accepted','data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAlgAAADICAYAAAA0n5+2AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAACWKADAAQAAAABAAAAyAAAAAAzUgSDAAALgklEQVR4Ae3dTW4cRRQAYENWbFihHCArLpAdQuIQ3IQLsWKL2ETiAtlEbJBY8HcCBAmB2KD8VcOUVFZsj6aqu6eq3tfSeNozUz/ve9aoXK89vrhwECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgTuFHiSnn2Tbo/vfJUnCRAgQOCowHtHX+EFBAhEEVgWV/nw3pAl3BMgQKBC4P2KNpoQIECAAAECBAjcIWCBdQeOpwgEEyh3sIKFLlwCBAisK2CBta6n3ggQIECAAAECFxZYfggIEMgCV/nEPQECBAi0CVhgtflpTWAmgUczBSMWAgQIECBAgEAvAst1WMvtm14mZB4ECBAgQIAAgdEF8gLrxeiBmD8BAgQIECBAoBeBvMB63cuEzIMAAQIjCrgGa8SsmTOB7QSWBdZy+KDR/x18JUCAQJWABVYVm0YEphW4nDYygREgQIAAAQIEziiQy4SuwzpjEgxNgMDYAsoAY+fP7AlsIZDLhEvf3iO2ENYnAQLTCygRTp9iARI4WeCvk1toQIAAAQIECBAgcFRAmfAokRcQIEDgdgHb/7fbeIZAZAFlwsjZFzsBAs0CSoTNhDogMKWAMuGUaRUUAQIECBAgcG4BZcJzZ8D4BAgMK6BEOGzqTJzA5gLKhJsTG4AAgVkFlAhnzay4CLQLKBO2G+qBAAECBAgQIPCOgDLhOyQeIECAwHEBJcLjRl5BILKAMmHk7IudAIFqASXCajoNCYQQeB4iSkESIECAAAECBHYWyGVCi62d4Q1HgMC4AkqE4+bOzAnsJaBMuJe0cQgQmEZAiXCaVAqEwGYCzzbrWccECBAgQIAAgcACyoSBky90AgROF1AiPN1MCwIRBZQJI2ZdzAQIVAsoEVbTaUgglIAyYah0C5YAAQIECBDYS0CZcC9p4xAgMLyAEuHwKRQAgd0ElAl3ozYQAQKjCygRjp5B8yewn4Ay4X7WRiJAgAABAgQCCSgTBkq2UAkQqBdQIqy305JARAFlwohZFzMBAicLKBGeTKYBgdACyoSh0y94AgQIECBAYCsBZcKtZPVLgMA0AkqE06RSIAR2E1Am3I3aQAQIjCqgRDhq5sybwPkEfjvf0EYmQIAAAQIECMwrkMuEl/OGKDICBAjUCygR1ttpSSCygDJh5OyLnQCBowJKhEeJvIAAgRsEvise+7Q4d0qAAAECBAgQINAgkMuELxv60JQAAQIECBAgQKAQeJ3O8yKreNgpAQIECNxDQIAAgUqB+6ndw0PbB+n+68p+NCNAgAABAgQIECgE8g7WspvlIECAAIGDgIvc/SgQINAi8OrQ2F8ktyhqS4AAAQIECBAoBD5O53kX6/vicacECBAILeC3ztDpFzyBVQSWBVY+vKdkCfcECIQWUCIMnX7BE1hF4GqVXnRCgAABAgQIECBwTSCXCf2fwmssviFAIKqA7fyomRc3gXUFlAnX9dQbAQKDCygRDp5A0yfQicDPxTw+L86dEiBAgAABAgQINAjkMqHPxGpA1JQAgTkE7GDNkUdREOhB4N/DJFx60EM2zIEAAQIECBCYRiDvYj2dJiKBECBAoELAb5oVaJoQIHCrgIvdb6XxBAECkQSUCCNlW6wEthf4qhjCP38uMJwSIBBLwA5WrHyLlsAeAnax9lA2BgECXQvYweo6PSZHYEgB118NmTaTJkCAAAECBHoXyBe7578s7H2+5keAAAECBAgQ6F7gVZphXmR1P1kTJECAAAECBAiMIPBZmmReYP06woTNkQABAmsKuMh9TU19ESBQCrjYvdRwToBAKAEXuYdKt2AJ7Crw466jGYwAAQIECBAgEEQglwn/DhKvMAkQIECAAAECmwu42H1zYgMQINCjwL0eJ2VOBAhMI/BBiuSTQzQfpftH00QmEAIECBAgQIDAGQVymXDZzXIQIEAghICL3EOkWZAEziqQr7/yfnPWNBicAAECBAgQmE0g72L9NFtg4iFAgMBNAj4H6yYVjxEgsLaAz8RaW1R/BAh0LWDLvuv0mByBaQSeFJE8KM6dEiBAgAABAgQINAjkMuFlQx+aEiBAgAABAgQIFAIv0nleZBUPOyVAgAABAgQIEKgV+DA1zAusH2o70Y4AAQIECBAgQOC6gE92v+7hOwIECBAgQIBAs8AXqYe8i/W8uTcdECBAgAABAgQI/CfwLH3Ni6xlweUgQIAAAQIECBBYQSAvsH5foS9dECBAgAABAgQIJIF/0i0vsr4kQoAAAQIECBAg0C6wfBZWXmD90d6dHggQINCXgE9y7ysfZkMgisC3KdCrQ7B/RglanAQIECBAgACBrQUepgF+Sbfl3kGAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQqBd4Cx+vnfE6VZpdAAAAAElFTkSuQmCC','4 Patriots','4patriots@example.com','','4 Patriots',NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 10:01:01','2025-11-16 15:01:01'),
(4,17,'accepted','data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAlgAAADICAYAAAA0n5+2AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAACWKADAAQAAAABAAAAyAAAAAAzUgSDAAAM2klEQVR4Ae3dv4tcRRwA8MRrxMYiICiCVirRyhRBsLC1ElH8F7TQQrC0ETtLexurdKKIIlgIsRC0UCG20bMx/ijM+Su53OkM3hdekt17u/d+z3wePPbdvvn1/czeMjszt3fqlIMAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECMxEYGcm7dAMAgT6EXgsFfPyUVHf91OkUggQIEBgW4HT22aQngCBWQv822id3+8GhksCBAiMKXDHmJWpiwABAgQIECBQg4ABVg29LEYCBAgQIEBgVAEDrFG5VUaAAAECBAjUIGCAVUMvi5EAAQIECBAYVcAAa1RulREgQIAAAQI1CBhg1dDLYiRAgAABAgRGFTDAGpVbZQQIECBAgEANAgZYNfSyGAkQIECAAIFRBQywRuVWGYHBBW4MXoMKCBAgQKBVwACrlUgCAosS+GFRrdVYAgQIECBAgMACBO5Pbcz/LiefZxfQXk0kQIAAAQIECCxCIAZYlxfRWo0kQIAAAQIECCxAIAZY+wtoqyYSIECgSIHTRUYlKAJ1C+QBVhx+x0PCIwECBEYUsMl9RGxVESBAgAABAnUIGGDV0c+irEvgsK5wRUuAAIH5CRhgza9PtIhAV4EPuxYgPwECBAgQIECAwO0CsdH999tveYYAAQIECBAgQOAkAjHAslx4Ej15CBAg0FHAEmFHQNkJzFQg/pLQXxHOtIM0iwCBsgUMsMruX9HVK3C13tBFToAAAQIECBAYTiCWCT8ZrgolEyBAgAABAgTqEogB1kFdYYuWAAEC0wvYnzF9H2gBgaEEYh9WLt/v+lDKyiVAgMAKAXuwVqB4ikAhAnuFxCEMAgQIECBAgMCsBGKZ8MasWqUxBAgQKFzAskHhHSy86gUsE1b/EgBAgMAUAjtTVKpOAgRGE3gm1XTvUW15FuviaDWriAABAgQIECBQsEAsE/pW94I7WWgECMxLwCb3efWH1hAYQiCWCW0JGEJXmQQIECBAgECVAi+lqGMW61KVAoImQIDAyAI+0Y4MrjoCEwnELFau3u/9RJ2gWgIE6hGwRFhPX4u0bgHf5l53/4ueAAECBAgQGEgglgl9AelAwIolQIBACFgqCAmPBMoXsExYfh+LkACBmQhYIpxJR2gGgREEfm7U8Xjj2iUBAgQIECBAgEAHgVgm9J1YHRBlJUCAQJuAGaw2IfcJlCUQy4S2B5TVr6IhQIAAAQIEJhS4J9Uds1i/TNgOVRMgQKBoAZ9ii+5ewRFYKRCzWPmm94CVRJ4kQIBANwFLhN385CawRIErjUafa1y7JECAAAECBAgQ6CAQy4Q2u3dAlJUAAQLrBMxgrZPxPIGyBWKZ0BJh2f0sOgIECBAgQGBEAZvdR8RWFQEC9Qn49Fpfn4uYQAjELFb+2XtBqHgkQIBADwKWCHtAVASBhQr8tNB2azYBAgQIECBAYNYCsdn9+qxbqXEECBBYmIBlgYV1mOYS6FnAMmHPoIojQIBAFrBE6HVAoG6BdxrhX2hcuyRAgACBDgJmsDrgyUqgEAGzWIV0pDAIEJiPgBms+fSFlhCYSmB/qorVS4AAAQIECBAoWSA2uzf/jU7J8YqNAAECgwpYIhyUV+EEFiNgmXAxXaWhBAgsQcAS4RJ6SRsJDC+wO3wVaiBAgAABAgQI1CcQy4T/1Be6iAkQIECAAAECwwgcpmJjkDVMDUolQIBAJQI7lcQpTAIE2gXOpCTnj5I9kB7fb88iBQECBAgQIECAQJtAzGDl2SwHAQIECJxQwCb3E8LJRqBQgWtHcfkL40I7WFgECBAgQIDANAIxi/XjNNWrlQABAssX8Cl1+X0oAgJ9C+QBVhzeI0LCIwECBLYQsES4BZakBCoR+LoR54uNa5cECBAgQIAAAQIdBGKZ8KBDGbISIECgWgEzWNV2vcAJHCuwd3TXe8SxTG4SIECAAAECBLYTiFmsP7bLJjUBAgQIECBAgMA6gbw8GIOsdWk8T4AAAQIECBAgsIXACyltDLAubZFPUgIECFQv4E+wq38JACBwrEAeYMXh/SIkPBIgQKBFwAbWFiC3CVQu0Px/hB9VbiF8AgQIbCzgE+nGVBISqFbALFa1XS9wAgROKmAG66Ry8hGoR+C9RqgfN65dEiBAgMAaATNYa2A8TYDATQJmsW7i8AMBAgSOFzCDdbyPuwQI/C/QnMX6FAoBAgQIECBAgEA/AoepmPjahn5KVAoBAgQKFTCDVWjHCovAAAJvNcrcbVy7JECAAAECBAgQ6CBwLeU1i9UBUFYCBAgQIECAwCqBGGBdX3XTcwQIECBAgAABAtsLXE5ZYpD19vbZ5SBAgAABAgQIEFglEAOsvPHdQYAAAQK3CNjkfguIHwkQ2EjgzaNU+bv0vtsoh0QECBAgQIAAAQKtAnspRcxktSaWgAABAgQIECBAYDOBGGD9uVlyqQgQIECAAAECBNoEvk0JYpD1Rlti9wkQIECAAAECBDYTiG94P9gsuVQECBAgQIAAAQJtAq+mBDGL9XlbYvcJECBAgAABAgQ2E7iSksUga7McUhEgQIAAAQIECLQKxADr19aUEhAgQKBwgZ3C4xMeAQLjCTyVqnownXel82o6v0ingwABAgQIECBAoKPAfsqfZ7Lyo4MAAQIECBAgQKAHgedSGbFUaAarB1BFECBAgAABAgSywMV0xiDreSQECBAgQIAAAQL9CORvds+DrL/7KU4pBAgQIECAAAECTyeCmMWyVOj1QIAAAQIECBDoSaC5VPhsT2UqhgABAgQIECBQvUAsFf5VvQQAAgQIECBAgEBPAudTOfl/FOblwm96KlMxBAgQIECAAIHqBV5JArEf60L1GgAIECBAgAABAj0JvJvKiUHWaz2VqRgCBAgQIECAQPUCXyWBPMi6kc5Hq9cAQIAAAQIECBDoSeC3VE4eZH3ZU3mKIUCAAAECBAhUL/BkEoilwrPVawAgQKBYgZ1iIxMYAQJzFNhNjbovnefSeWc6P0ingwABAgQIECBAoKPAwym/WayOiLITIDBvATNY8+4frSNQokDeh2UWq8SeFRMBAgQIECAwqcBDqfaYxXpk0paonAABAgMImMEaAFWRBAi0CuRZrLvT+UQ68/Vn6XQQIECAAAECBAh0FDiT8r+ezvzoIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAIFWgf8ARO/RgV4ct/oAAAAASUVORK5CYII=','4 Patriots','4patriots@example.com','','4 Patriots',NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 10:06:36','2025-11-16 15:06:36'),
(5,18,'accepted','data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAlgAAADICAYAAAA0n5+2AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAACWKADAAQAAAABAAAAyAAAAAAzUgSDAAAUaklEQVR4Ae3dS+wsWVkA8GEuPsAXyCsYCIougIUbgQ1gAhtXxIUxBl2oG92Iia7UGJ2gURMXPBbyCCYmBoMxoLLwkaAho0GDBomGiaAywZEMMzhcmBFh5s4A32fuuXzW7a5/dVdVV3X1r5KTqq46dR6/80/6y6nT9b/jDhsBAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIELgEgevRya9E+vIldFYfCRAgQIAAAQJzC2RQlcFVN90zd8XKJ0CAAAEC5yjwpHNstDafVCCDqr7N31CfjmsECBAgcJECd15kr3V6iMAnI1MNrvI4gykB1RA9eQgQIECAAAECOwTq48Bd667a9S/uuNcpAgQIECBAgACBjkALnnL/hc619rHl2RV8tTz2BAgQIECAAAECIdACp9w/0SNSF773ZHOJAAECBAhcnoA1WJc35n09rrNRGWBd68ns0WAPjksECBAgQIAAgRSoM1I10OrTabNdQ/P3leUaAQIECBDYjIAZrM0M5aiO5KPA+uvAQ/8u6r2jGuJmAgQIECCwBYFDv0i30Gd9+P8CD8bH+ndwSLCUM1g2AgQIECBAoCNwyJdp51YfNyJQg6RD/x7y0WC7p+03wqIbBAgQIEDgeIE6c3F8Ke48V4G6dqrvF4Pn2j/tJkCAAAECiwgIsBZhX02lbdYpZ7GevJpWaQgBAgQIEDhzAQHWmQ/giObX2atj/w7q48URTXErAQIECBDYlsCxX6zbUri83nwiulxnr44V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','4 Patriots','4patriots@example.com','','4 Patriots',NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 14:22:19','2025-11-16 19:22:19');
/*!40000 ALTER TABLE `quote_signatures` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `quote_templates`
--

DROP TABLE IF EXISTS `quote_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `quote_templates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `category` varchar(50) DEFAULT NULL,
  `terms_text` text DEFAULT NULL,
  `notes_text` text DEFAULT NULL,
  `is_default` tinyint(1) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_templates`
--

LOCK TABLES `quote_templates` WRITE;
/*!40000 ALTER TABLE `quote_templates` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `quote_templates` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `quotes`
--

DROP TABLE IF EXISTS `quotes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `quotes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `public_token` varchar(64) DEFAULT NULL,
  `token_expires_at` datetime DEFAULT NULL,
  `quote_number` varchar(50) NOT NULL,
  `customer_id` int(10) unsigned NOT NULL,
  `quote_date` date NOT NULL,
  `expiry_date` date DEFAULT NULL,
  `status` enum('draft','sent','accepted','rejected','expired','converted') DEFAULT 'draft',
  `customer_response` enum('pending','accepted','declined') DEFAULT 'pending',
  `response_at` datetime DEFAULT NULL,
  `converted_to_sales_order_id` int(11) DEFAULT NULL,
  `auto_convert_on_accept` tinyint(1) DEFAULT 1,
  `quote_type` enum('standard','battery','motor','drone','electronics') DEFAULT 'standard',
  `subtotal` decimal(15,2) DEFAULT 0.00,
  `tax_amount` decimal(15,2) DEFAULT 0.00,
  `discount_amount` decimal(15,2) DEFAULT 0.00,
  `total_amount` decimal(15,2) DEFAULT 0.00,
  `notes` text DEFAULT NULL,
  `terms_id` int(11) DEFAULT NULL,
  `terms` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  `last_notified_at` datetime DEFAULT NULL COMMENT 'Last expiry reminder sent',
  `notification_level` varchar(20) DEFAULT NULL COMMENT 'Current notification level: 3day, 1day, expired',
  PRIMARY KEY (`id`),
  UNIQUE KEY `quote_number` (`quote_number`),
  UNIQUE KEY `public_token` (`public_token`),
  KEY `customer_id` (`customer_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_terms_id` (`terms_id`),
  KEY `idx_quote_type` (`quote_type`),
  KEY `idx_quotes_expiry_notification` (`expiry_date`,`status`,`last_notified_at`),
  KEY `idx_public_token` (`public_token`),
  KEY `idx_customer_response` (`customer_response`),
  KEY `idx_deleted_at` (`deleted_at`),
  KEY `idx_search_status` (`status`,`quote_date`),
  FULLTEXT KEY `ft_quote_search` (`quote_number`,`notes`),
  CONSTRAINT `fk_quotes_terms` FOREIGN KEY (`terms_id`) REFERENCES `terms_conditions` (`id`) ON DELETE SET NULL,
  CONSTRAINT `quotes_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`),
  CONSTRAINT `quotes_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quotes`
--

LOCK TABLES `quotes` WRITE;
/*!40000 ALTER TABLE `quotes` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `quotes` VALUES
(15,'2743927b7ca267a61d0a2a01b8ba44c52edb24bf0a71bb67731e8470605e7063','2025-12-16 10:12:46','TEST-Q-001',46,'2025-11-16','2025-12-16','sent',NULL,NULL,NULL,1,'standard',5000.00,500.00,0.00,5500.00,'Enterprise software deal',NULL,'Net 30 days',1,'2025-11-16 14:22:51','2025-11-27 20:54:47',NULL,NULL,NULL),
(16,'test1111test2222test3333test4444test5555test6666test7777test8888','2025-12-16 09:22:51','TEST-Q-002',46,'2025-11-16','2025-12-16','converted','accepted','2025-11-16 10:01:01',18,1,'standard',2500.00,250.00,0.00,2750.00,'Service package',NULL,'Net 30 days',1,'2025-11-16 14:22:51','2025-11-16 15:01:01',NULL,NULL,NULL),
(17,'1d9adecdf62dd638d7954ffec069ac7372be3b3881b367bb1a48e164f5a86f9f','2025-12-16 10:06:16','TEST-Q-003',46,'2025-11-16','2025-12-31','converted','accepted','2025-11-16 10:06:36',19,1,'standard',15000.00,1500.00,0.00,16500.00,'Large infrastructure deal',NULL,'Net 60 days',1,'2025-11-16 14:22:51','2025-11-16 15:06:36',NULL,NULL,NULL),
(18,'411158e1ae62c6d87f81b27c5cde2c68400ae829537c0d8ffad00d5932ae59d7','2025-12-16 14:07:22','TEST-Q-004',46,'2025-11-16','2025-11-23','converted','accepted','2025-11-16 14:22:19',20,1,'standard',750.00,75.00,0.00,825.00,'Quick deal',NULL,'Net 15 days',1,'2025-11-16 14:22:51','2025-11-16 19:22:19',NULL,NULL,NULL),
(19,'cb0219a5294a39400d7ce22cb388875a0485fb02d334c3c035773b1be9ba7432','2025-12-16 09:26:49','TEST-Q-005',46,'2025-11-16','2025-12-16','converted','accepted','2025-11-16 09:28:22',17,1,'standard',8500.00,850.00,0.00,9350.00,'Website project',NULL,'Installments',1,'2025-11-16 14:22:51','2025-11-16 14:28:22',NULL,NULL,NULL);
/*!40000 ALTER TABLE `quotes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `rate_limit_whitelist`
--

DROP TABLE IF EXISTS `rate_limit_whitelist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `rate_limit_whitelist` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ip_address` varchar(45) NOT NULL COMMENT 'IPv4 or IPv6 address',
  `description` varchar(255) DEFAULT NULL COMMENT 'Description of why this IP is whitelisted',
  `is_active` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'Whether whitelist entry is active',
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_ip` (`ip_address`),
  KEY `idx_is_active` (`is_active`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='IP addresses that bypass rate limiting';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rate_limit_whitelist`
--

LOCK TABLES `rate_limit_whitelist` WRITE;
/*!40000 ALTER TABLE `rate_limit_whitelist` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `rate_limit_whitelist` VALUES
(1,'127.0.0.1','Localhost IPv4',1,'2025-11-26 07:40:10','2025-11-26 07:40:10'),
(2,'::1','Localhost IPv6',1,'2025-11-26 07:40:10','2025-11-26 07:40:10');
/*!40000 ALTER TABLE `rate_limit_whitelist` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `recurring_executions`
--

DROP TABLE IF EXISTS `recurring_executions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `recurring_executions` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `template_id` int(11) NOT NULL,
  `executed_at` timestamp NULL DEFAULT current_timestamp(),
  `scheduled_date` date NOT NULL COMMENT 'The date it was supposed to run',
  `actual_date` date NOT NULL COMMENT 'The date it actually ran',
  `status` enum('success','failed','skipped') NOT NULL,
  `error_message` text DEFAULT NULL,
  `generated_invoice_id` int(10) unsigned DEFAULT NULL,
  `generated_bill_id` int(10) unsigned DEFAULT NULL,
  `generated_journal_entry_id` int(10) unsigned DEFAULT NULL,
  `executed_by` int(10) unsigned DEFAULT NULL COMMENT 'NULL if cron, user_id if manual',
  `execution_method` enum('automatic','manual') DEFAULT 'automatic',
  PRIMARY KEY (`id`),
  KEY `idx_template` (`template_id`),
  KEY `idx_executed_at` (`executed_at`),
  KEY `idx_status` (`status`),
  CONSTRAINT `recurring_executions_ibfk_1` FOREIGN KEY (`template_id`) REFERENCES `recurring_templates` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `recurring_executions`
--

LOCK TABLES `recurring_executions` WRITE;
/*!40000 ALTER TABLE `recurring_executions` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `recurring_executions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `recurring_template_items`
--

DROP TABLE IF EXISTS `recurring_template_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `recurring_template_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `template_id` int(11) NOT NULL,
  `product_id` int(10) unsigned DEFAULT NULL,
  `description` text NOT NULL,
  `quantity` decimal(10,2) NOT NULL DEFAULT 1.00,
  `unit_price` decimal(15,2) NOT NULL,
  `tax_rate` decimal(5,2) DEFAULT 0.00,
  `amount` decimal(15,2) NOT NULL,
  `account_id` int(10) unsigned DEFAULT NULL,
  `debit_amount` decimal(15,2) DEFAULT 0.00,
  `credit_amount` decimal(15,2) DEFAULT 0.00,
  `line_order` int(11) DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `idx_template` (`template_id`),
  KEY `product_id` (`product_id`),
  KEY `account_id` (`account_id`),
  CONSTRAINT `recurring_template_items_ibfk_1` FOREIGN KEY (`template_id`) REFERENCES `recurring_templates` (`id`) ON DELETE CASCADE,
  CONSTRAINT `recurring_template_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE SET NULL,
  CONSTRAINT `recurring_template_items_ibfk_3` FOREIGN KEY (`account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `recurring_template_items`
--

LOCK TABLES `recurring_template_items` WRITE;
/*!40000 ALTER TABLE `recurring_template_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `recurring_template_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `recurring_templates`
--

DROP TABLE IF EXISTS `recurring_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `recurring_templates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `template_name` varchar(255) NOT NULL,
  `template_type` enum('invoice','bill','journal_entry') NOT NULL,
  `description` text DEFAULT NULL,
  `frequency` enum('daily','weekly','biweekly','monthly','quarterly','semi_annually','annually') NOT NULL,
  `interval_count` int(11) DEFAULT 1 COMMENT 'Every X days/weeks/months',
  `day_of_week` tinyint(4) DEFAULT NULL COMMENT 'For weekly: 0=Sun, 6=Sat',
  `day_of_month` tinyint(4) DEFAULT NULL COMMENT 'For monthly: 1-31, -1=last day',
  `month_of_year` tinyint(4) DEFAULT NULL COMMENT 'For annually: 1-12',
  `start_date` date NOT NULL,
  `end_date` date DEFAULT NULL COMMENT 'NULL = no end date',
  `next_run_date` date NOT NULL,
  `last_run_date` date DEFAULT NULL,
  `is_active` tinyint(1) DEFAULT 1,
  `auto_post` tinyint(1) DEFAULT 0 COMMENT 'Automatically post generated transactions',
  `send_email` tinyint(1) DEFAULT 0 COMMENT 'Send email notification when generated',
  `template_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT 'Stores customer_id, items, amounts, etc.' CHECK (json_valid(`template_data`)),
  `times_executed` int(11) DEFAULT 0,
  `max_executions` int(11) DEFAULT NULL COMMENT 'NULL = unlimited',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `created_by` int(10) unsigned DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `updated_by` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_type` (`template_type`),
  KEY `idx_next_run` (`next_run_date`,`is_active`),
  KEY `idx_active` (`is_active`),
  KEY `created_by` (`created_by`),
  KEY `updated_by` (`updated_by`),
  CONSTRAINT `recurring_templates_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `recurring_templates_ibfk_2` FOREIGN KEY (`updated_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `recurring_templates`
--

LOCK TABLES `recurring_templates` WRITE;
/*!40000 ALTER TABLE `recurring_templates` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `recurring_templates` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `report_schedules`
--

DROP TABLE IF EXISTS `report_schedules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `report_schedules` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `report_id` int(10) unsigned NOT NULL,
  `schedule_type` enum('daily','weekly','monthly') NOT NULL,
  `schedule_time` time NOT NULL,
  `schedule_day` varchar(20) DEFAULT NULL COMMENT 'Day of week or month',
  `recipients` text DEFAULT NULL COMMENT 'Email addresses, comma separated',
  `last_sent_at` timestamp NULL DEFAULT NULL,
  `is_active` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_report` (`report_id`),
  CONSTRAINT `report_schedules_ibfk_1` FOREIGN KEY (`report_id`) REFERENCES `custom_reports` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `report_schedules`
--

LOCK TABLES `report_schedules` WRITE;
/*!40000 ALTER TABLE `report_schedules` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `report_schedules` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `resource_capacity`
--

DROP TABLE IF EXISTS `resource_capacity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `resource_capacity` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `capacity_date` date NOT NULL,
  `available_hours` decimal(5,2) DEFAULT 8.00 COMMENT 'Available hours for this date',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_user_date` (`user_id`,`capacity_date`),
  KEY `idx_capacity_date` (`capacity_date`),
  KEY `idx_user_date` (`user_id`,`capacity_date`),
  CONSTRAINT `resource_capacity_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `resource_capacity`
--

LOCK TABLES `resource_capacity` WRITE;
/*!40000 ALTER TABLE `resource_capacity` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `resource_capacity` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `resource_weekly_capacity`
--

DROP TABLE IF EXISTS `resource_weekly_capacity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `resource_weekly_capacity` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `day_of_week` tinyint(4) NOT NULL COMMENT '0=Sunday, 6=Saturday',
  `available_hours` decimal(5,2) DEFAULT 8.00,
  `is_working_day` tinyint(1) DEFAULT 1,
  `effective_from` date DEFAULT NULL COMMENT 'When this schedule starts',
  `effective_to` date DEFAULT NULL COMMENT 'When this schedule ends',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_schedule` (`user_id`,`effective_from`,`effective_to`),
  CONSTRAINT `resource_weekly_capacity_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=127 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `resource_weekly_capacity`
--

LOCK TABLES `resource_weekly_capacity` WRITE;
/*!40000 ALTER TABLE `resource_weekly_capacity` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `resource_weekly_capacity` VALUES
(1,1,0,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(2,1,1,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(3,1,2,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(4,1,3,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(5,1,4,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(6,1,5,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(7,1,6,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(8,2,0,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(9,2,1,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(10,2,2,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(11,2,3,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(12,2,4,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(13,2,5,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(14,2,6,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(15,3,0,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(16,3,1,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(17,3,2,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(18,3,3,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(19,3,4,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(20,3,5,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(21,3,6,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(22,4,0,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(23,4,1,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(24,4,2,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(25,4,3,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(26,4,4,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(27,4,5,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(28,4,6,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(29,5,0,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(30,5,1,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(31,5,2,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(32,5,3,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(33,5,4,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(34,5,5,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(35,5,6,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(36,6,0,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(37,6,1,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(38,6,2,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(39,6,3,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(40,6,4,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(41,6,5,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(42,6,6,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(43,7,0,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(44,7,1,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(45,7,2,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(46,7,3,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(47,7,4,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(48,7,5,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(49,7,6,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(50,8,0,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(51,8,1,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(52,8,2,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(53,8,3,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(54,8,4,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(55,8,5,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(56,8,6,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(57,21,0,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(58,21,1,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(59,21,2,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(60,21,3,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(61,21,4,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(62,21,5,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(63,21,6,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(64,1,0,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(65,1,1,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(66,1,2,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(67,1,3,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(68,1,4,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(69,1,5,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(70,1,6,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(71,2,0,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(72,2,1,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(73,2,2,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(74,2,3,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(75,2,4,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(76,2,5,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(77,2,6,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(78,3,0,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(79,3,1,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(80,3,2,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(81,3,3,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(82,3,4,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(83,3,5,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(84,3,6,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(85,4,0,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(86,4,1,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(87,4,2,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(88,4,3,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(89,4,4,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(90,4,5,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(91,4,6,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(92,5,0,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(93,5,1,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(94,5,2,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(95,5,3,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(96,5,4,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(97,5,5,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(98,5,6,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(99,6,0,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(100,6,1,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(101,6,2,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(102,6,3,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(103,6,4,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(104,6,5,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(105,6,6,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(106,7,0,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(107,7,1,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(108,7,2,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(109,7,3,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(110,7,4,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(111,7,5,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(112,7,6,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(113,8,0,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(114,8,1,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(115,8,2,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(116,8,3,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(117,8,4,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(118,8,5,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(119,8,6,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(120,21,0,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(121,21,1,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(122,21,2,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(123,21,3,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(124,21,4,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(125,21,5,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(126,21,6,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54');
/*!40000 ALTER TABLE `resource_weekly_capacity` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `return_items`
--

DROP TABLE IF EXISTS `return_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `return_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `return_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `quantity` decimal(10,2) NOT NULL,
  `unit_price` decimal(10,2) DEFAULT NULL,
  `reason` varchar(255) DEFAULT NULL,
  `serial_number` varchar(100) DEFAULT NULL,
  `condition_notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `return_id` (`return_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `return_items_ibfk_1` FOREIGN KEY (`return_id`) REFERENCES `returns` (`id`) ON DELETE CASCADE,
  CONSTRAINT `return_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `return_items`
--

LOCK TABLES `return_items` WRITE;
/*!40000 ALTER TABLE `return_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `return_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `returns`
--

DROP TABLE IF EXISTS `returns`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `returns` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rma_number` varchar(50) NOT NULL,
  `customer_id` int(10) unsigned NOT NULL,
  `sales_order_id` int(10) unsigned DEFAULT NULL,
  `invoice_id` int(10) unsigned DEFAULT NULL,
  `return_date` date NOT NULL,
  `reason` varchar(255) DEFAULT NULL,
  `return_type` enum('warranty','defective','wrong_item','customer_error','other') NOT NULL,
  `condition_received` enum('new','opened','used','damaged') DEFAULT 'used',
  `status` enum('pending','approved','rejected','received','refunded','replaced','cancelled') DEFAULT 'pending',
  `refund_amount` decimal(10,2) DEFAULT 0.00,
  `refund_method` enum('original_payment','store_credit','replacement') DEFAULT 'original_payment',
  `restocking_fee` decimal(10,2) DEFAULT 0.00,
  `notes` text DEFAULT NULL,
  `customer_notes` text DEFAULT NULL,
  `resolution_notes` text DEFAULT NULL,
  `approved_by` int(10) unsigned DEFAULT NULL,
  `approved_at` timestamp NULL DEFAULT NULL,
  `received_by` int(10) unsigned DEFAULT NULL,
  `received_at` timestamp NULL DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `rma_number` (`rma_number`),
  KEY `sales_order_id` (`sales_order_id`),
  KEY `invoice_id` (`invoice_id`),
  KEY `approved_by` (`approved_by`),
  KEY `received_by` (`received_by`),
  KEY `created_by` (`created_by`),
  KEY `idx_status` (`status`),
  KEY `idx_return_date` (`return_date`),
  KEY `idx_customer` (`customer_id`),
  KEY `idx_returns_deleted_at` (`deleted_at`),
  CONSTRAINT `returns_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `returns_ibfk_2` FOREIGN KEY (`sales_order_id`) REFERENCES `sales_orders` (`id`) ON DELETE SET NULL,
  CONSTRAINT `returns_ibfk_3` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE SET NULL,
  CONSTRAINT `returns_ibfk_4` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `returns_ibfk_5` FOREIGN KEY (`received_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `returns_ibfk_6` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `returns`
--

LOCK TABLES `returns` WRITE;
/*!40000 ALTER TABLE `returns` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `returns` VALUES
(1,'RMA-20250001',2,NULL,NULL,'2025-10-30','','warranty','used','pending',0.00,'original_payment',0.00,'','',NULL,NULL,NULL,NULL,NULL,1,'2025-10-31 00:35:12','2025-10-31 00:35:12',NULL);
/*!40000 ALTER TABLE `returns` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `rfq_items`
--

DROP TABLE IF EXISTS `rfq_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `rfq_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rfq_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned DEFAULT NULL,
  `description` text NOT NULL,
  `quantity` int(11) NOT NULL,
  `specifications` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `rfq_id` (`rfq_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `rfq_items_ibfk_1` FOREIGN KEY (`rfq_id`) REFERENCES `rfqs` (`id`) ON DELETE CASCADE,
  CONSTRAINT `rfq_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rfq_items`
--

LOCK TABLES `rfq_items` WRITE;
/*!40000 ALTER TABLE `rfq_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `rfq_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `rfq_quotes`
--

DROP TABLE IF EXISTS `rfq_quotes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `rfq_quotes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rfq_supplier_id` int(10) unsigned NOT NULL,
  `rfq_item_id` int(10) unsigned NOT NULL,
  `unit_price` decimal(15,2) NOT NULL,
  `lead_time_days` int(11) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `rfq_supplier_id` (`rfq_supplier_id`),
  KEY `rfq_item_id` (`rfq_item_id`),
  CONSTRAINT `rfq_quotes_ibfk_1` FOREIGN KEY (`rfq_supplier_id`) REFERENCES `rfq_suppliers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `rfq_quotes_ibfk_2` FOREIGN KEY (`rfq_item_id`) REFERENCES `rfq_items` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rfq_quotes`
--

LOCK TABLES `rfq_quotes` WRITE;
/*!40000 ALTER TABLE `rfq_quotes` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `rfq_quotes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `rfq_suppliers`
--

DROP TABLE IF EXISTS `rfq_suppliers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `rfq_suppliers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rfq_id` int(10) unsigned NOT NULL,
  `supplier_id` int(10) unsigned NOT NULL,
  `sent_date` date DEFAULT NULL,
  `response_date` date DEFAULT NULL,
  `status` enum('pending','responded','declined','selected') DEFAULT 'pending',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `rfq_id` (`rfq_id`),
  KEY `supplier_id` (`supplier_id`),
  CONSTRAINT `rfq_suppliers_ibfk_1` FOREIGN KEY (`rfq_id`) REFERENCES `rfqs` (`id`) ON DELETE CASCADE,
  CONSTRAINT `rfq_suppliers_ibfk_2` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rfq_suppliers`
--

LOCK TABLES `rfq_suppliers` WRITE;
/*!40000 ALTER TABLE `rfq_suppliers` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `rfq_suppliers` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `rfqs`
--

DROP TABLE IF EXISTS `rfqs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `rfqs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rfq_number` varchar(50) NOT NULL,
  `title` varchar(255) NOT NULL,
  `pr_id` int(10) unsigned DEFAULT NULL,
  `issue_date` date NOT NULL,
  `due_date` date DEFAULT NULL,
  `status` enum('draft','sent','quotes_received','awarded','cancelled') DEFAULT 'draft',
  `terms` text DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `rfq_number` (`rfq_number`),
  KEY `pr_id` (`pr_id`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `rfqs_ibfk_1` FOREIGN KEY (`pr_id`) REFERENCES `purchase_requisitions` (`id`) ON DELETE SET NULL,
  CONSTRAINT `rfqs_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rfqs`
--

LOCK TABLES `rfqs` WRITE;
/*!40000 ALTER TABLE `rfqs` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `rfqs` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `role_data_scopes`
--

DROP TABLE IF EXISTS `role_data_scopes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `role_data_scopes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `role_id` int(10) unsigned NOT NULL,
  `scope_type` enum('location','department','custom','position_hierarchy','same_position','position_department') NOT NULL,
  `location_id` int(10) unsigned DEFAULT NULL COMMENT 'For location-based scoping',
  `position_id` int(11) DEFAULT NULL,
  `filter_rules` text DEFAULT NULL COMMENT 'Custom SQL WHERE clause conditions',
  `created_at` datetime NOT NULL,
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_role` (`role_id`),
  KEY `idx_location` (`location_id`),
  KEY `idx_scope_type` (`scope_type`),
  KEY `idx_position_id` (`position_id`),
  CONSTRAINT `fk_rds_location` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_rds_role` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_role_data_scopes_position` FOREIGN KEY (`position_id`) REFERENCES `positions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Role-based data access control scopes';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `role_data_scopes`
--

LOCK TABLES `role_data_scopes` WRITE;
/*!40000 ALTER TABLE `role_data_scopes` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `role_data_scopes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `role_menu_access`
--

DROP TABLE IF EXISTS `role_menu_access`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `role_menu_access` (
  `role_id` int(11) NOT NULL,
  `menu_item_id` int(11) NOT NULL,
  `can_access` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`role_id`,`menu_item_id`),
  KEY `idx_role` (`role_id`),
  KEY `idx_menu` (`menu_item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `role_menu_access`
--

LOCK TABLES `role_menu_access` WRITE;
/*!40000 ALTER TABLE `role_menu_access` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `role_menu_access` VALUES
(1,1,1,'2025-11-08 18:30:00','2025-11-11 00:36:46'),
(1,2,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,3,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,4,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,5,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,7,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,8,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,10,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,11,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,12,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,13,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,14,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,15,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,16,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,17,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,18,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,19,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,20,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,21,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,22,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,23,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,24,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,25,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,26,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,27,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,28,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,29,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,30,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,31,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,32,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,33,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,34,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,35,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,36,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,37,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,38,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,39,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,40,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,41,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,42,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,43,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,44,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,45,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,46,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,47,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,48,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,49,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,50,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,51,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,52,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,53,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,54,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,55,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,56,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,57,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,58,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,59,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,60,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,61,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,62,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,63,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,64,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,65,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,66,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,68,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,69,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,70,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,71,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,72,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,73,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,74,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,75,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,76,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,77,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,78,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,79,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,80,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,81,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,82,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,83,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,84,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,85,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,86,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,87,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,88,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,89,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,90,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,91,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,92,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,93,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,94,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,95,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,96,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,97,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,98,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,99,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,100,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,101,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,102,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,103,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,104,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,105,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,106,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,107,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,108,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,109,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,110,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,111,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,112,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,113,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,114,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,115,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,116,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,117,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,118,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,119,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,120,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,121,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,122,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,123,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,124,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,125,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,126,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,127,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,128,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,129,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,130,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,131,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,132,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,133,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,134,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,135,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,136,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,137,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,138,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,139,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,140,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,141,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,142,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,143,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,144,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,145,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,146,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,147,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,148,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,149,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,150,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,151,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,152,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,153,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,154,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,155,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,156,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,157,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,161,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,162,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,163,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,164,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,165,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,166,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,167,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,168,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,169,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,170,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,171,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,172,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,173,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,174,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,180,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,181,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,182,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,183,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,184,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,185,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,186,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,187,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,188,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,189,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,190,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,191,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,192,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,193,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,194,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,195,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,196,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,197,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,198,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,199,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,200,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,201,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,202,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,203,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,204,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,205,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,206,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,207,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,208,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,209,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,210,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,211,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,212,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,213,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,214,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,215,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,216,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,217,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,218,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,219,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,220,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,221,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,222,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,223,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,224,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,225,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,226,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,227,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,228,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,229,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,230,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,231,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,232,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,234,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,235,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,236,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,237,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,238,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,239,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,240,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,241,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,243,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,244,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,245,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,246,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,247,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,248,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,250,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,346,1,'2025-11-30 01:36:27','2025-11-30 01:36:27'),
(2,1,1,'2025-11-08 18:30:00','2025-11-11 00:36:46'),
(2,2,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,3,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,4,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,5,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,7,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,8,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,10,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,11,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,12,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,13,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,14,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,15,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,16,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,17,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,18,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,19,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,20,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,21,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,22,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,23,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,24,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,25,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,26,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,27,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,28,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,29,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,30,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,31,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,32,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,33,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,34,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,35,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,36,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,37,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,38,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,39,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,40,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,41,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,42,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,43,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,44,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,45,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,46,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,47,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,48,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,49,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,50,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,51,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,52,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,53,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,54,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,55,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,56,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,57,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,58,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,59,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,60,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,61,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,62,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,63,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,64,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,65,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,66,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,68,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,69,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,70,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,71,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,72,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,73,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,74,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,75,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,76,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,77,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,78,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,79,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,80,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,81,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,82,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,83,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,84,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,85,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,86,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,87,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,88,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,89,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,90,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,91,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,92,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,93,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,94,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,95,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,96,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,97,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,98,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,99,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,100,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,101,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,102,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,103,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,104,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,105,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,106,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,107,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,108,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,109,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,110,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,111,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,112,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,113,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,114,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,115,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,116,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,117,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,118,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,119,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,120,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,121,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,122,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,123,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,124,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,125,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,126,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,127,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,128,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,129,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,130,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,131,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,132,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,133,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,134,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,135,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,136,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,137,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,138,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,139,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,140,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,141,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,142,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,143,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,144,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,145,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,146,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,147,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,148,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,149,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,150,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,151,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,152,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,153,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,154,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,155,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,156,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,157,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,161,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,162,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,163,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,164,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,165,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,166,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,167,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,168,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,169,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,170,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,171,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,172,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,173,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,174,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,180,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,181,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,182,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,183,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,184,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,185,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,186,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,187,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,188,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,189,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,190,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,191,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,192,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,193,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,194,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,195,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,196,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,197,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,198,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,199,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,200,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,201,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,202,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,203,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,204,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,205,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,206,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,207,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,208,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,209,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,210,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,211,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,212,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,213,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,214,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,215,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,216,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,217,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,218,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,219,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,220,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,221,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,222,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,223,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,224,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,225,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,226,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,227,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,228,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,229,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,230,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,231,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,232,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,234,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,235,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,236,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,237,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,238,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,239,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,240,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,241,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,243,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,244,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,245,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,246,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,247,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,248,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,250,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(66,1,1,'2025-11-08 18:30:00','2025-11-11 00:36:46');
/*!40000 ALTER TABLE `role_menu_access` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `role_permissions`
--

DROP TABLE IF EXISTS `role_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `role_permissions` (
  `role_id` int(10) unsigned NOT NULL,
  `permission_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`role_id`,`permission_id`),
  KEY `permission_id` (`permission_id`),
  CONSTRAINT `role_permissions_ibfk_1` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE,
  CONSTRAINT `role_permissions_ibfk_2` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `role_permissions`
--

LOCK TABLES `role_permissions` WRITE;
/*!40000 ALTER TABLE `role_permissions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `role_permissions` VALUES
(1,1,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,2,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,3,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,4,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,5,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,6,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,7,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,8,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,9,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,10,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,11,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,12,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,13,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,14,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,15,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,16,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,17,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,18,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,19,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,20,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,21,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,22,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,23,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,24,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,25,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,26,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,27,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,28,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,29,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,30,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,31,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,32,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,33,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,34,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,35,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,36,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,37,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,38,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,39,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,40,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,41,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,42,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,43,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,44,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,45,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,46,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,47,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,48,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,49,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,50,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,51,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,52,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,53,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,54,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,55,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,56,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,57,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,58,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,69,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,70,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,71,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,72,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,73,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,74,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,75,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,76,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,77,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,78,'2025-12-04 16:14:00','2025-12-04 16:14:00'),
(1,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(1,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(1,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(1,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(1,200,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,272,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(1,273,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(1,274,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(1,275,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(1,276,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(1,325,'2025-11-15 19:50:26','2025-11-15 19:50:26'),
(1,326,'2025-11-15 19:50:26','2025-11-15 19:50:26'),
(1,327,'2025-11-15 19:50:26','2025-11-15 19:50:26'),
(1,328,'2025-11-15 19:50:26','2025-11-15 19:50:26'),
(1,377,'2025-11-17 11:19:40','2025-11-17 11:19:40'),
(1,398,'2025-11-19 14:34:42','2025-11-19 14:34:42'),
(1,399,'2025-11-19 14:34:42','2025-11-19 14:34:42'),
(1,400,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(1,401,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(1,402,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(1,403,'2025-11-19 17:53:07','2025-11-19 17:53:07'),
(1,404,'2025-11-19 17:53:07','2025-11-19 17:53:07'),
(1,405,'2025-11-19 17:53:07','2025-11-19 17:53:07'),
(1,406,'2025-11-19 19:25:50','2025-11-19 19:25:50'),
(1,410,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,411,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(1,580,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,618,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,1037,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,1401,'2025-11-30 01:09:11','2025-11-30 01:09:11'),
(1,1402,'2025-11-30 01:09:11','2025-11-30 01:09:11'),
(1,1403,'2025-11-30 01:09:11','2025-11-30 01:09:11'),
(1,1404,'2025-11-30 01:09:11','2025-11-30 01:09:11'),
(1,1405,'2025-11-30 01:09:11','2025-11-30 01:09:11'),
(1,1406,'2025-11-30 01:09:11','2025-11-30 01:09:11'),
(1,1407,'2025-11-30 01:09:11','2025-11-30 01:09:11'),
(1,1408,'2025-11-30 01:09:11','2025-11-30 01:09:11'),
(1,1409,'2025-11-30 01:09:11','2025-11-30 01:09:11'),
(1,1419,'2025-12-02 03:44:08','2025-12-02 03:44:08'),
(1,1420,'2025-12-02 03:44:08','2025-12-02 03:44:08'),
(1,1421,'2025-12-02 03:44:08','2025-12-02 03:44:08'),
(1,1422,'2025-12-02 03:44:08','2025-12-02 03:44:08'),
(1,1423,'2025-12-02 03:44:08','2025-12-02 03:44:08'),
(1,1424,'2025-12-02 03:44:08','2025-12-02 03:44:08'),
(1,1449,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1450,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1451,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1452,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1453,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1454,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1455,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1457,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1459,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1460,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1461,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1462,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1463,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1464,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1465,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1468,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1469,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1472,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1473,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1476,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1477,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1479,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1481,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1487,'2025-12-02 13:59:43','2025-12-02 13:59:43'),
(1,1488,'2025-12-02 13:59:43','2025-12-02 13:59:43'),
(70,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(70,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(70,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(70,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(70,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(70,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(72,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(72,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(72,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(72,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(72,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(76,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(76,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(76,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(76,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(76,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,5,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,14,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,18,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,78,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,81,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,82,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,83,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,114,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,115,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,116,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,123,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,124,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,125,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,127,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,128,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,129,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,131,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,132,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,133,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(77,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(77,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(77,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(77,169,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,208,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,209,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,210,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,250,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,325,'2025-11-15 19:50:26','2025-11-15 19:50:26'),
(77,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(77,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,5,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,18,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,78,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,81,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,82,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,83,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,114,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,115,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,116,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,123,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,124,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,125,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,127,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,128,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,129,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,131,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,132,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,133,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(78,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(78,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(78,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(78,169,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,208,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,209,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,210,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,250,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(78,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(79,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(79,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(79,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(79,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(79,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(80,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(80,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(80,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(80,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(80,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,24,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,25,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,26,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,27,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,28,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,29,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,30,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,31,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,43,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,44,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,45,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,46,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,51,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,52,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,53,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,54,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,72,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,73,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,74,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,75,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,76,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,78,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,79,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,80,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,81,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,82,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,83,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(81,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(81,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(81,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(81,187,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,188,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,189,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,190,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,191,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,192,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,193,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,194,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,195,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,196,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,197,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,198,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,199,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,200,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,201,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,202,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,203,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,204,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,205,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,206,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,207,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,230,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,231,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,232,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,233,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,234,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,235,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,236,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,237,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,238,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,239,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,240,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,241,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,242,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,243,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,244,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,245,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,246,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,247,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,248,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,249,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,250,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,251,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,252,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,287,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,288,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,289,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,290,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,291,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,292,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,293,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(81,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(82,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(82,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(82,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(82,287,'2025-11-13 21:23:05','2025-11-13 21:23:05'),
(82,288,'2025-11-13 21:23:05','2025-11-13 21:23:05'),
(82,289,'2025-11-13 21:23:05','2025-11-13 21:23:05'),
(82,290,'2025-11-13 21:23:05','2025-11-13 21:23:05'),
(82,291,'2025-11-13 21:23:05','2025-11-13 21:23:05'),
(82,292,'2025-11-13 21:23:05','2025-11-13 21:23:05'),
(82,293,'2025-11-13 21:23:05','2025-11-13 21:23:05'),
(82,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(82,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(85,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(85,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(85,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(85,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(85,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(87,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(87,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(87,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(87,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(87,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(88,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(88,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(88,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(88,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(88,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(92,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(92,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(92,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(92,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(92,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(93,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(93,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(93,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(93,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(93,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(96,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(96,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(96,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(96,242,'2025-11-29 17:52:41','2025-11-29 17:52:41'),
(96,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(96,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(97,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(97,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(97,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(97,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(97,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(99,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(99,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(99,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(99,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(99,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(100,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(100,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(100,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(100,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(100,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(101,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(101,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(101,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(101,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(101,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,5,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,14,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,18,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,24,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,28,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,33,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,34,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,35,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,40,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,43,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,47,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,48,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,51,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,69,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,70,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,73,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,78,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,79,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,80,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,81,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,82,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,83,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,84,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,85,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,87,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,88,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,89,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,90,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,91,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,92,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,93,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,94,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,95,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,96,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,97,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,98,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,99,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,100,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,101,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,102,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,103,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,104,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,105,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,106,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,107,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,108,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,109,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,110,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,111,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,112,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,113,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,119,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,123,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,127,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,129,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,131,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,134,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(108,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(108,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(108,138,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,141,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,149,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,153,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,156,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,161,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,164,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,167,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,169,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,174,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,178,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,181,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,184,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,187,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,193,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,197,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,201,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,203,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,206,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,208,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,212,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,214,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,219,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,224,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,230,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,235,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,237,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,240,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,242,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,247,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,248,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,249,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,250,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,251,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,252,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,253,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,257,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,259,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,267,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,272,'2025-11-11 17:41:34','2025-11-11 17:41:34'),
(108,273,'2025-11-11 17:41:34','2025-11-11 17:41:34'),
(108,274,'2025-11-11 17:41:34','2025-11-11 17:41:34'),
(108,275,'2025-11-11 17:41:34','2025-11-11 17:41:34'),
(108,276,'2025-11-11 17:41:34','2025-11-11 17:41:34'),
(108,325,'2025-11-15 19:50:26','2025-11-15 19:50:26'),
(108,369,'2025-12-02 18:15:31','2025-12-02 18:15:31'),
(108,379,'2025-12-02 18:15:49','2025-12-02 18:15:49'),
(108,400,'2025-12-02 18:14:33','2025-12-02 18:14:33'),
(108,401,'2025-12-02 18:14:38','2025-12-02 18:14:38'),
(108,402,'2025-12-02 18:14:33','2025-12-02 18:14:33'),
(108,403,'2025-12-02 18:14:34','2025-12-02 18:14:34'),
(108,404,'2025-12-02 18:41:52','2025-12-02 18:41:52'),
(108,405,'2025-12-02 18:14:34','2025-12-02 18:14:34'),
(108,406,'2025-12-02 18:24:58','2025-12-02 18:24:58'),
(108,407,'2025-12-02 18:14:49','2025-12-02 18:14:49'),
(108,411,'2025-12-02 22:17:29','2025-12-02 22:17:29'),
(108,432,'2025-12-02 18:15:28','2025-12-02 18:15:28'),
(108,434,'2025-12-02 18:24:58','2025-12-02 18:24:58'),
(108,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,470,'2025-11-29 12:50:39','2025-11-29 12:50:39'),
(108,576,'2025-12-02 18:15:26','2025-12-02 18:15:26'),
(108,577,'2025-12-02 18:15:27','2025-12-02 18:15:27'),
(108,578,'2025-12-02 18:15:28','2025-12-02 18:15:28'),
(108,579,'2025-12-02 18:15:29','2025-12-02 18:15:29'),
(108,581,'2025-12-02 18:15:32','2025-12-02 18:15:32'),
(108,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,739,'2025-12-02 22:17:26','2025-12-02 22:17:26'),
(108,788,'2025-12-02 18:15:21','2025-12-02 18:15:21'),
(108,793,'2025-12-02 18:14:50','2025-12-02 18:14:50'),
(108,810,'2025-12-02 22:17:02','2025-12-02 22:17:02'),
(108,861,'2025-12-02 18:15:02','2025-12-02 18:15:02'),
(108,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,985,'2025-12-02 18:24:58','2025-12-02 18:24:58'),
(108,986,'2025-12-02 18:24:58','2025-12-02 18:24:58'),
(108,987,'2025-12-02 18:24:58','2025-12-02 18:24:58'),
(108,988,'2025-12-02 18:24:58','2025-12-02 18:24:58'),
(108,989,'2025-12-02 18:14:35','2025-12-02 18:14:35'),
(108,990,'2025-12-02 18:14:36','2025-12-02 18:14:36'),
(108,991,'2025-12-02 18:14:37','2025-12-02 18:14:37'),
(108,992,'2025-12-02 18:24:58','2025-12-02 18:24:58'),
(108,993,'2025-12-02 18:24:58','2025-12-02 18:24:58'),
(108,994,'2025-12-02 18:24:58','2025-12-02 18:24:58'),
(108,1001,'2025-12-02 18:21:02','2025-12-02 18:21:02'),
(108,1032,'2025-12-02 18:21:02','2025-12-02 18:21:02'),
(108,1070,'2025-12-02 18:14:57','2025-12-02 18:14:57'),
(108,1147,'2025-12-02 18:14:53','2025-12-02 18:14:53'),
(108,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,1410,'2025-12-02 22:16:41','2025-12-02 22:16:41'),
(108,1411,'2025-12-02 22:16:42','2025-12-02 22:16:42'),
(108,1412,'2025-12-02 22:16:42','2025-12-02 22:16:42'),
(108,1414,'2025-12-02 22:16:47','2025-12-02 22:16:47'),
(108,1419,'2025-12-02 18:14:49','2025-12-02 18:14:49'),
(108,1449,'2025-12-02 18:15:02','2025-12-02 18:15:02'),
(108,1450,'2025-12-02 18:15:03','2025-12-02 18:15:03'),
(108,1451,'2025-12-02 18:15:03','2025-12-02 18:15:03'),
(108,1452,'2025-12-02 18:15:04','2025-12-02 18:15:04'),
(108,1453,'2025-12-02 18:15:05','2025-12-02 18:15:05'),
(108,1454,'2025-12-02 18:15:05','2025-12-02 18:15:05'),
(108,1455,'2025-12-02 18:15:06','2025-12-02 18:15:06'),
(108,1456,'2025-12-02 18:15:07','2025-12-02 18:15:07'),
(108,1457,'2025-12-02 18:15:40','2025-12-02 18:15:40'),
(108,1458,'2025-12-02 18:15:41','2025-12-02 18:15:41'),
(108,1459,'2025-12-02 18:15:37','2025-12-02 18:15:37'),
(108,1460,'2025-12-02 18:15:38','2025-12-02 18:15:38'),
(108,1461,'2025-12-02 18:15:39','2025-12-02 18:15:39'),
(108,1468,'2025-12-02 18:14:53','2025-12-02 18:14:53'),
(108,1469,'2025-12-02 18:14:54','2025-12-02 18:14:54'),
(108,1470,'2025-12-02 18:14:55','2025-12-02 18:14:55'),
(108,1474,'2025-12-02 18:14:59','2025-12-02 18:14:59'),
(108,1487,'2025-12-02 18:14:58','2025-12-02 18:14:58'),
(108,1488,'2025-12-02 18:14:58','2025-12-02 18:14:58'),
(110,5,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,9,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,14,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,18,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,19,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,20,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,21,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,24,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,28,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,32,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,36,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,43,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,47,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,78,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,81,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,82,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,83,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,87,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,88,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,89,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,90,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,91,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,92,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,93,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,94,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,105,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,106,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,107,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,108,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,112,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,113,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,114,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,134,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(110,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(110,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(110,169,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,187,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,208,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,230,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,237,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,238,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,250,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,272,'2025-11-11 17:41:34','2025-11-11 17:41:34'),
(110,273,'2025-11-11 17:41:34','2025-11-11 17:41:34'),
(110,274,'2025-11-11 17:41:34','2025-11-11 17:41:34'),
(110,275,'2025-11-11 17:41:34','2025-11-11 17:41:34'),
(110,276,'2025-11-11 17:41:34','2025-11-11 17:41:34'),
(110,325,'2025-11-15 19:50:26','2025-11-15 19:50:26'),
(110,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(110,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,9,'2025-12-09 21:40:17','2025-12-09 21:40:17'),
(111,10,'2025-11-29 00:31:58','2025-11-29 00:31:58'),
(111,11,'2025-11-29 00:31:58','2025-11-29 00:31:58'),
(111,12,'2025-11-29 00:31:58','2025-11-29 00:31:58'),
(111,14,'2025-12-09 21:40:22','2025-12-09 21:40:22'),
(111,24,'2025-12-09 21:40:20','2025-12-09 21:40:20'),
(111,32,'2025-12-09 21:40:29','2025-12-09 21:40:29'),
(111,36,'2025-12-09 21:40:23','2025-12-09 21:40:23'),
(111,43,'2025-11-29 00:32:05','2025-11-29 00:32:05'),
(111,47,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,48,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,49,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,78,'2025-11-28 23:17:47','2025-11-28 23:17:47'),
(111,79,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,81,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,83,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,85,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,114,'2025-12-09 21:40:29','2025-12-09 21:40:29'),
(111,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(111,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(111,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(111,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(111,242,'2025-11-29 00:23:44','2025-11-29 00:23:44'),
(111,247,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,248,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,249,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,250,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,251,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,252,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,407,'2025-11-29 00:23:43','2025-11-29 00:23:43'),
(111,408,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,409,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,411,'2025-12-09 21:40:28','2025-12-09 21:40:28'),
(111,435,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,436,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,437,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,438,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,439,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,440,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,441,'2025-11-29 00:25:56','2025-11-29 00:25:56'),
(111,442,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,456,'2025-11-29 00:40:21','2025-11-29 00:40:21'),
(111,470,'2025-11-29 00:23:56','2025-11-29 00:23:56'),
(111,511,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,512,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,513,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,582,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,637,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,638,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,639,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,640,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,641,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,642,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,643,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,644,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,645,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,651,'2025-11-29 00:25:56','2025-11-29 00:25:56'),
(111,668,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,669,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,670,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,671,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,672,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,673,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,677,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,678,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,679,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,680,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,681,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,682,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,683,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,684,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,685,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,686,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,687,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,688,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,689,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,690,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,691,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,692,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,693,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,694,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,695,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,696,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,697,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,698,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,699,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,700,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,728,'2025-11-29 00:57:54','2025-11-29 00:57:54'),
(111,729,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,730,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,731,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,732,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,733,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,734,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,735,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,736,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,737,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,738,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,739,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,789,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,790,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,791,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,792,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,793,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,794,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,795,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,796,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,797,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,798,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,799,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,800,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,801,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,802,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,1001,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1002,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1003,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1004,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1005,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1006,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1007,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1008,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1009,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1010,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1011,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1012,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1013,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1014,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1015,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1016,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1017,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1018,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1019,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1020,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1021,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1022,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1023,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1024,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1025,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1026,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1027,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1028,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1029,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1030,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1031,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1032,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1033,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1034,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1035,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1036,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1037,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1038,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1039,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1040,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1041,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1042,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1043,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1126,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1127,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1128,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1129,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1130,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1131,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1332,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,1333,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,1334,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,1335,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,1336,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,1337,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,1338,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,1339,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,1340,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,1347,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1348,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1349,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,9,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,14,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,24,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,28,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,29,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,30,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,32,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,36,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,43,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,47,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,78,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,81,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,82,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,83,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,105,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,134,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(112,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(112,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(112,169,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,170,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,171,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,174,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,175,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,176,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,178,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,179,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,181,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,182,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,184,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,185,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,186,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,187,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,188,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,189,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,193,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,194,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,195,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,196,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,197,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,198,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,199,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,201,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,203,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,204,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,206,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,207,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,208,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,219,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,230,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,231,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,232,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,234,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,235,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,236,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,250,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,325,'2025-11-15 19:50:26','2025-11-15 19:50:26'),
(112,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(112,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(116,36,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,37,'2025-11-29 13:22:48','2025-11-29 13:22:48'),
(116,38,'2025-11-29 13:22:48','2025-11-29 13:22:48'),
(116,39,'2025-11-29 13:22:48','2025-11-29 13:22:48'),
(116,78,'2025-11-30 01:22:37','2025-11-30 01:22:37'),
(116,82,'2025-11-30 01:27:10','2025-11-30 01:27:10'),
(116,134,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(116,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(116,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(116,149,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,151,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,153,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,155,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,156,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,157,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,158,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,159,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,160,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,161,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,162,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,163,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,164,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,165,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,166,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,167,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,168,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,267,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,268,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,269,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,270,'2025-11-29 13:23:10','2025-11-29 13:23:10'),
(116,448,'2025-11-30 01:22:37','2025-11-30 01:22:37'),
(116,456,'2025-11-30 01:26:58','2025-11-30 01:26:58'),
(116,470,'2025-11-29 13:22:14','2025-11-29 13:22:14'),
(116,683,'2025-11-30 01:26:58','2025-11-30 01:26:58'),
(116,684,'2025-11-30 01:26:58','2025-11-30 01:26:58'),
(116,685,'2025-11-30 01:26:58','2025-11-30 01:26:58'),
(116,686,'2025-11-30 01:26:58','2025-11-30 01:26:58'),
(116,687,'2025-11-30 01:26:58','2025-11-30 01:26:58'),
(116,688,'2025-11-30 01:26:58','2025-11-30 01:26:58'),
(116,689,'2025-11-30 01:26:58','2025-11-30 01:26:58'),
(116,690,'2025-11-30 01:26:58','2025-11-30 01:26:58'),
(116,691,'2025-11-30 01:26:58','2025-11-30 01:26:58'),
(116,693,'2025-11-30 01:26:58','2025-11-30 01:26:58'),
(116,695,'2025-11-30 01:26:58','2025-11-30 01:26:58'),
(116,788,'2025-11-30 00:44:56','2025-11-30 00:44:56'),
(116,871,'2025-11-30 01:27:10','2025-11-30 01:27:10'),
(116,873,'2025-11-30 01:27:10','2025-11-30 01:27:10'),
(116,875,'2025-11-30 01:27:10','2025-11-30 01:27:10'),
(116,876,'2025-11-30 01:27:10','2025-11-30 01:27:10'),
(116,878,'2025-11-30 01:27:10','2025-11-30 01:27:10'),
(116,995,'2025-11-30 01:22:37','2025-11-30 01:22:37'),
(116,1401,'2025-11-30 01:09:52','2025-11-30 01:09:52'),
(116,1402,'2025-11-30 01:09:53','2025-11-30 01:09:53'),
(116,1403,'2025-11-30 01:09:53','2025-11-30 01:09:53'),
(116,1404,'2025-11-30 01:09:55','2025-11-30 01:09:55'),
(116,1405,'2025-11-30 01:10:31','2025-11-30 01:10:31'),
(116,1406,'2025-11-30 01:18:06','2025-11-30 01:18:06'),
(116,1407,'2025-11-30 01:10:00','2025-11-30 01:10:00'),
(116,1408,'2025-11-30 01:10:34','2025-11-30 01:10:34'),
(116,1409,'2025-11-30 01:10:35','2025-11-30 01:10:35'),
(121,18,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,19,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,20,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,32,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,47,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,78,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,81,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,82,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,83,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,87,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,88,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,89,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,91,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,92,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,93,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,94,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,105,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,106,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,107,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,108,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,112,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(121,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(121,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(121,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(121,237,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,238,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,250,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(121,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,78,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,79,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,81,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,82,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,83,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(126,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(126,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(126,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(126,242,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,243,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,244,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,245,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,247,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,248,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,250,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,251,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(126,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,5,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,14,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,47,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,78,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,79,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,81,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,82,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,83,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,114,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,127,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(127,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(127,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(127,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(127,169,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,170,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,171,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,174,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,175,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,176,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,193,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,208,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,247,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,248,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,250,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,325,'2025-11-15 19:50:26','2025-11-15 19:50:26'),
(127,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(127,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,14,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,15,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,16,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,17,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,18,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,19,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,20,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,21,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,22,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,23,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,78,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,83,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,114,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,115,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,116,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,119,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,120,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,121,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,123,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,124,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,125,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,127,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,128,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,129,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,131,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,132,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,133,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,134,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(130,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(130,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(130,208,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,209,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,210,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,211,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,212,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,213,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,214,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,215,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,216,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,217,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,218,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,219,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,220,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,221,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,222,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,223,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,224,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,225,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,226,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,227,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,228,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,229,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,247,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,248,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,249,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,250,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,251,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,325,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,326,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,327,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,328,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,369,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,374,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(130,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,24,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,26,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,28,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,29,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,30,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,51,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,52,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,73,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,74,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,75,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(131,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(131,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(131,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(131,230,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,232,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,237,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,238,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,242,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,243,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,244,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,245,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,246,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,247,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,248,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,249,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,250,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,251,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,252,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,287,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,288,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,289,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,290,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,291,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,292,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,293,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(131,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(132,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(132,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(132,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(132,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(132,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(133,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(133,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(133,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(133,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(133,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(134,47,'2025-11-30 14:32:56','2025-11-30 14:32:56'),
(134,78,'2025-11-30 14:32:33','2025-11-30 14:32:33'),
(134,79,'2025-11-30 14:32:57','2025-11-30 14:32:57'),
(134,82,'2025-11-30 14:40:46','2025-11-30 14:40:46'),
(134,247,'2025-11-30 14:34:49','2025-11-30 14:34:49'),
(134,248,'2025-11-30 14:34:55','2025-11-30 14:34:55'),
(134,249,'2025-11-30 14:34:52','2025-11-30 14:34:52'),
(134,407,'2025-11-30 14:32:58','2025-11-30 14:32:58'),
(134,448,'2025-11-30 14:40:46','2025-11-30 14:40:46'),
(134,456,'2025-11-30 14:40:46','2025-11-30 14:40:46'),
(134,638,'2025-11-30 14:33:09','2025-11-30 14:33:09'),
(134,639,'2025-11-30 14:33:08','2025-11-30 14:33:08'),
(134,640,'2025-11-30 14:33:07','2025-11-30 14:33:07'),
(134,641,'2025-11-30 14:33:06','2025-11-30 14:33:06'),
(134,686,'2025-11-30 14:40:46','2025-11-30 14:40:46'),
(134,687,'2025-11-30 14:40:46','2025-11-30 14:40:46'),
(134,693,'2025-11-30 14:40:46','2025-11-30 14:40:46'),
(134,728,'2025-11-30 14:34:40','2025-11-30 14:34:40'),
(134,731,'2025-11-30 14:34:35','2025-11-30 14:34:35'),
(134,732,'2025-11-30 14:34:41','2025-11-30 14:34:41'),
(134,735,'2025-11-30 14:34:37','2025-11-30 14:34:37'),
(134,736,'2025-11-30 14:34:36','2025-11-30 14:34:36'),
(134,737,'2025-11-30 14:34:36','2025-11-30 14:34:36'),
(134,738,'2025-11-30 14:34:38','2025-11-30 14:34:38'),
(134,739,'2025-11-30 14:34:33','2025-11-30 14:34:33'),
(134,789,'2025-11-30 14:33:28','2025-11-30 14:33:28'),
(134,791,'2025-11-30 14:33:35','2025-11-30 14:33:35'),
(134,792,'2025-11-30 14:33:39','2025-11-30 14:33:39'),
(134,793,'2025-11-30 14:32:57','2025-11-30 14:32:57'),
(134,795,'2025-11-30 14:33:41','2025-11-30 14:33:41'),
(134,796,'2025-11-30 14:33:45','2025-11-30 14:33:45'),
(134,799,'2025-11-30 14:34:16','2025-11-30 14:34:16'),
(134,995,'2025-11-30 14:40:46','2025-11-30 14:40:46'),
(134,1001,'2025-11-30 14:33:17','2025-11-30 14:33:17'),
(134,1003,'2025-11-30 14:33:22','2025-11-30 14:33:22'),
(134,1004,'2025-11-30 14:35:00','2025-11-30 14:35:00'),
(134,1005,'2025-11-30 14:34:49','2025-11-30 14:34:49'),
(134,1006,'2025-11-30 14:35:05','2025-11-30 14:35:05'),
(134,1008,'2025-11-30 14:34:52','2025-11-30 14:34:52'),
(134,1013,'2025-11-30 14:33:19','2025-11-30 14:33:19'),
(134,1014,'2025-11-30 14:33:23','2025-11-30 14:33:23'),
(134,1016,'2025-11-30 14:35:07','2025-11-30 14:35:07'),
(134,1023,'2025-11-30 14:34:56','2025-11-30 14:34:56'),
(134,1024,'2025-11-30 14:34:50','2025-11-30 14:34:50'),
(134,1026,'2025-11-30 14:34:56','2025-11-30 14:34:56'),
(134,1027,'2025-11-30 14:35:08','2025-11-30 14:35:08'),
(134,1029,'2025-11-30 14:34:53','2025-11-30 14:34:53'),
(134,1034,'2025-11-30 14:35:06','2025-11-30 14:35:06'),
(134,1042,'2025-11-30 14:34:58','2025-11-30 14:34:58'),
(134,1043,'2025-11-30 14:34:57','2025-11-30 14:34:57'),
(134,1339,'2025-11-30 14:34:39','2025-11-30 14:34:39'),
(134,1340,'2025-11-30 14:34:40','2025-11-30 14:34:40'),
(134,1349,'2025-11-30 14:33:38','2025-11-30 14:33:38');
/*!40000 ALTER TABLE `role_permissions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `role_signature_assignments`
--

DROP TABLE IF EXISTS `role_signature_assignments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `role_signature_assignments` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `role_id` int(11) unsigned NOT NULL,
  `template_id` int(11) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_role_assignment` (`role_id`),
  KEY `idx_template_id` (`template_id`),
  CONSTRAINT `role_signature_assignments_ibfk_1` FOREIGN KEY (`template_id`) REFERENCES `email_signature_templates` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `role_signature_assignments`
--

LOCK TABLES `role_signature_assignments` WRITE;
/*!40000 ALTER TABLE `role_signature_assignments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `role_signature_assignments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `roles`
--

DROP TABLE IF EXISTS `roles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `roles` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `description` text DEFAULT NULL,
  `is_system` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=135 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `roles`
--

LOCK TABLES `roles` WRITE;
/*!40000 ALTER TABLE `roles` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `roles` VALUES
(1,'Admin','System Administrator - Full Access',1,'2025-10-26 14:24:24','2025-11-01 15:08:04'),
(70,'Accounts Payable Manager','Full AP module access including vendor management, payment approvals, and AP reporting.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(72,'Accounts Receivable Manager','Full AR module access including customer payments, credit management, and AR reporting.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(76,'VP/Director of Sales','Full sales and CRM access with pricing approval, discount authority, and team management.',0,'2025-11-08 17:16:14','2025-11-15 12:33:55'),
(77,'Sales Manager','Sales team and account management',0,'2025-11-08 17:16:14','2025-11-11 13:53:56'),
(78,'Sales Representative','Customer relationship management and order processing',0,'2025-11-08 17:16:14','2025-11-11 13:53:56'),
(79,'Customer Service Manager','Full customer service access including ticket management, returns, and CS reporting.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(80,'Customer Service Representative','Handle support tickets, process returns, view customer information.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(81,'VP/Director of Operations','Full operations access including inventory, purchasing, and warehouse management.',0,'2025-11-08 17:16:14','2025-11-15 12:33:55'),
(82,'Warehouse Manager','Manage inventory, approve transfers and adjustments, warehouse reporting.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(85,'Purchasing Manager','Full purchasing access including supplier management, PO approvals, and procurement reports.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(87,'Inventory Controller','Manage inventory levels, reorder points, stock adjustments, and inventory reporting.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(88,'VP/Director of Manufacturing','Full manufacturing access including production planning, BOM management, and MRP.',0,'2025-11-08 17:16:14','2025-11-15 12:33:55'),
(92,'Quality Manager','Full quality control access including inspection plans, non-conformance management, and quality reports.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(93,'Quality Inspector','Perform inspections, record test results, create NCRs. Cannot modify inspection plans.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(96,'HR Coordinator','Employee records, recruitment coordination, training scheduling. No compensation access.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(97,'Recruiting Manager','Full recruitment module access including job postings, interviews, offers, and hiring reports.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(99,'Payroll Manager','Full payroll access with tax filing and payroll reporting.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(100,'System Administrator','Full system access including security, configuration, integrations, and system reports.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(101,'IT Manager','User management, system configuration, backup management, and IT dashboards.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(108,'CEO','Chief Executive Officer - Full strategic oversight and business administration',0,'2025-11-11 13:50:13','2025-11-11 13:50:13'),
(110,'CFO','Chief Financial Officer - Complete financial oversight and control',0,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(111,'CTO','Chief Technology Officer',0,'2025-11-15 11:52:00','2025-11-15 11:52:00'),
(112,'COO','Chief Operating Officer - Operations, manufacturing, and supply chain oversight',0,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,'VP/Director of HR','Human resources and talent management',0,'2025-11-11 13:53:56','2025-11-15 12:33:55'),
(121,'Controller','Senior accounting oversight and financial reporting',0,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,'Software Engineer','Software development and technical implementation',0,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,'Product Manager','Product strategy and roadmap management',0,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(130,'President, Batteries &amp;amp; Tech','President of Batteries &amp;amp; Tech division, reports to CTO',0,'2025-11-15 11:54:33','2025-11-24 18:21:29'),
(131,'VP/Director of Production','VP or Director of Production - manages production operations and team',0,'2025-11-15 12:35:17','2025-11-15 12:35:17'),
(132,'VP/Director of Business Development','VP or Director of Business Development - handles new business and partnerships',0,'2025-11-15 12:35:17','2025-11-15 12:35:17'),
(133,'VP/Director of Autonomous Systems','VP or Director of Autonomous Systems - leads autonomous technology initiatives',0,'2025-11-15 12:35:17','2025-11-15 12:35:17'),
(134,'Test Role','Used to Test Security',0,'2025-11-30 14:10:19','2025-11-30 14:10:19');
/*!40000 ALTER TABLE `roles` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `sales_order_items`
--

DROP TABLE IF EXISTS `sales_order_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_order_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned DEFAULT NULL,
  `description` text DEFAULT NULL,
  `quantity` int(11) NOT NULL,
  `shipped_quantity` decimal(10,2) DEFAULT 0.00,
  `unit_price` decimal(15,2) NOT NULL,
  `tax_rate` decimal(5,2) DEFAULT 0.00,
  `discount_percent` decimal(5,2) DEFAULT 0.00,
  `line_total` decimal(15,2) NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `order_id` (`order_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `sales_order_items_ibfk_1` FOREIGN KEY (`order_id`) REFERENCES `sales_orders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `sales_order_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_items`
--

LOCK TABLES `sales_order_items` WRITE;
/*!40000 ALTER TABLE `sales_order_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `sales_order_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `sales_orders`
--

DROP TABLE IF EXISTS `sales_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_orders` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `order_number` varchar(50) NOT NULL,
  `customer_id` int(10) unsigned NOT NULL,
  `order_date` date NOT NULL,
  `delivery_date` date DEFAULT NULL,
  `status` enum('draft','confirmed','processing','shipped','delivered','cancelled') DEFAULT 'draft',
  `subtotal` decimal(15,2) DEFAULT 0.00,
  `tax_amount` decimal(15,2) DEFAULT 0.00,
  `discount_amount` decimal(15,2) DEFAULT 0.00,
  `shipping_cost` decimal(15,2) DEFAULT 0.00,
  `total_amount` decimal(15,2) DEFAULT 0.00,
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `order_number` (`order_number`),
  KEY `customer_id` (`customer_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_deleted_at` (`deleted_at`),
  KEY `idx_search_status` (`status`,`order_date`),
  FULLTEXT KEY `ft_order_search` (`order_number`,`notes`),
  CONSTRAINT `sales_orders_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`),
  CONSTRAINT `sales_orders_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_orders`
--

LOCK TABLES `sales_orders` WRITE;
/*!40000 ALTER TABLE `sales_orders` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `sales_orders` VALUES
(16,'SO-2025-11-16-0001',46,'2025-11-16',NULL,'draft',1000.00,100.00,0.00,0.00,1100.00,NULL,1,'2025-11-16 13:27:53','2025-11-16 13:27:53',NULL),
(17,'SO-2025-11-16-0002',46,'2025-11-16',NULL,'draft',8500.00,850.00,0.00,0.00,9350.00,'Website project',1,'2025-11-16 14:28:22','2025-11-16 14:28:22',NULL),
(18,'SO-2025-11-16-0003',46,'2025-11-16',NULL,'draft',2500.00,250.00,0.00,0.00,2750.00,'Service package',1,'2025-11-16 15:01:01','2025-11-16 15:01:01',NULL),
(19,'SO-2025-11-16-0004',46,'2025-11-16',NULL,'draft',15000.00,1500.00,0.00,0.00,16500.00,'Large infrastructure deal',1,'2025-11-16 15:06:36','2025-11-16 15:06:36',NULL),
(20,'SO-2025-11-16-0005',46,'2025-11-16',NULL,'draft',750.00,75.00,0.00,0.00,825.00,'Quick deal',1,'2025-11-16 19:22:19','2025-11-16 19:22:19',NULL);
/*!40000 ALTER TABLE `sales_orders` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `saved_searches`
--

DROP TABLE IF EXISTS `saved_searches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `saved_searches` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `name` varchar(100) NOT NULL COMMENT 'User-friendly name for saved search',
  `category` varchar(50) NOT NULL,
  `query` varchar(500) DEFAULT NULL,
  `filters` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Advanced filters (date range, status, etc.)' CHECK (json_valid(`filters`)),
  `is_default` tinyint(1) DEFAULT 0 COMMENT 'Load this search by default',
  `is_shared` tinyint(1) DEFAULT 0 COMMENT 'Share with other users',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_id` (`user_id`),
  KEY `idx_category` (`category`),
  KEY `idx_is_shared` (`is_shared`),
  CONSTRAINT `saved_searches_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='User saved searches and filters';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `saved_searches`
--

LOCK TABLES `saved_searches` WRITE;
/*!40000 ALTER TABLE `saved_searches` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `saved_searches` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `search_history`
--

DROP TABLE IF EXISTS `search_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `search_history` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned DEFAULT NULL,
  `query` varchar(500) NOT NULL,
  `category` varchar(50) DEFAULT NULL COMMENT 'all, customers, products, invoices, etc.',
  `results_count` int(11) DEFAULT 0 COMMENT 'Number of results returned',
  `execution_time_ms` int(11) DEFAULT NULL COMMENT 'Query execution time in milliseconds',
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_id` (`user_id`,`created_at`),
  KEY `idx_query` (`query`(255)),
  KEY `idx_category` (`category`),
  KEY `idx_created_at` (`created_at`),
  CONSTRAINT `search_history_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Track search queries for analytics and suggestions';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `search_history`
--

LOCK TABLES `search_history` WRITE;
/*!40000 ALTER TABLE `search_history` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `search_history` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `search_performance_stats`
--

DROP TABLE IF EXISTS `search_performance_stats`;
/*!50001 DROP VIEW IF EXISTS `search_performance_stats`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `search_performance_stats` AS SELECT
 1 AS `category`,
  1 AS `total_searches`,
  1 AS `avg_results`,
  1 AS `avg_execution_time_ms`,
  1 AS `max_execution_time_ms`,
  1 AS `zero_result_searches`,
  1 AS `search_date` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `search_suggestions`
--

DROP TABLE IF EXISTS `search_suggestions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `search_suggestions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `query` varchar(255) NOT NULL,
  `category` varchar(50) DEFAULT NULL,
  `search_count` int(11) DEFAULT 1 COMMENT 'How many times this was searched',
  `click_count` int(11) DEFAULT 0 COMMENT 'How many times results were clicked',
  `last_searched_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `query` (`query`),
  KEY `idx_query` (`query`),
  KEY `idx_search_count` (`search_count` DESC),
  KEY `idx_category` (`category`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Popular search queries for autocomplete suggestions';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `search_suggestions`
--

LOCK TABLES `search_suggestions` WRITE;
/*!40000 ALTER TABLE `search_suggestions` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `search_suggestions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `settings`
--

DROP TABLE IF EXISTS `settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `setting_key` varchar(100) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `description` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `setting_key` (`setting_key`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `settings`
--

LOCK TABLES `settings` WRITE;
/*!40000 ALTER TABLE `settings` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `settings` VALUES
(1,'corporate_email_domain','@mavrix.one','Corporate email domain for primary email addresses','2025-10-27 15:16:36','2025-11-11 14:05:48');
/*!40000 ALTER TABLE `settings` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `shipment_items`
--

DROP TABLE IF EXISTS `shipment_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `shipment_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `shipment_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `sales_order_item_id` int(10) unsigned DEFAULT NULL,
  `quantity` decimal(10,2) NOT NULL,
  `serial_numbers` text DEFAULT NULL,
  `notes` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `shipment_id` (`shipment_id`),
  KEY `product_id` (`product_id`),
  KEY `sales_order_item_id` (`sales_order_item_id`),
  CONSTRAINT `shipment_items_ibfk_1` FOREIGN KEY (`shipment_id`) REFERENCES `shipments` (`id`) ON DELETE CASCADE,
  CONSTRAINT `shipment_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`),
  CONSTRAINT `shipment_items_ibfk_3` FOREIGN KEY (`sales_order_item_id`) REFERENCES `sales_order_items` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `shipment_items`
--

LOCK TABLES `shipment_items` WRITE;
/*!40000 ALTER TABLE `shipment_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `shipment_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `shipments`
--

DROP TABLE IF EXISTS `shipments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `shipments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `shipment_number` varchar(50) NOT NULL,
  `sales_order_id` int(10) unsigned DEFAULT NULL,
  `invoice_id` int(10) unsigned DEFAULT NULL,
  `customer_id` int(10) unsigned NOT NULL,
  `shipment_date` date NOT NULL,
  `expected_delivery` date DEFAULT NULL,
  `carrier` varchar(100) DEFAULT NULL,
  `tracking_number` varchar(100) DEFAULT NULL,
  `shipping_method` varchar(100) DEFAULT NULL,
  `shipping_cost` decimal(15,2) DEFAULT 0.00,
  `shipping_address` text DEFAULT NULL,
  `shipping_city` varchar(100) DEFAULT NULL,
  `shipping_state` varchar(100) DEFAULT NULL,
  `shipping_zip` varchar(20) DEFAULT NULL,
  `shipping_country` varchar(100) DEFAULT NULL,
  `status` enum('pending','packed','shipped','in_transit','delivered','cancelled','returned') DEFAULT 'pending',
  `notes` text DEFAULT NULL,
  `packed_by` int(10) unsigned DEFAULT NULL,
  `shipped_by` int(10) unsigned DEFAULT NULL,
  `packed_at` timestamp NULL DEFAULT NULL,
  `shipped_at` timestamp NULL DEFAULT NULL,
  `delivered_at` timestamp NULL DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `shipment_number` (`shipment_number`),
  KEY `sales_order_id` (`sales_order_id`),
  KEY `invoice_id` (`invoice_id`),
  KEY `customer_id` (`customer_id`),
  KEY `created_by` (`created_by`),
  KEY `packed_by` (`packed_by`),
  KEY `shipped_by` (`shipped_by`),
  KEY `idx_shipments_deleted_at` (`deleted_at`),
  CONSTRAINT `shipments_ibfk_1` FOREIGN KEY (`sales_order_id`) REFERENCES `sales_orders` (`id`) ON DELETE SET NULL,
  CONSTRAINT `shipments_ibfk_2` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE SET NULL,
  CONSTRAINT `shipments_ibfk_3` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`),
  CONSTRAINT `shipments_ibfk_4` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `shipments_ibfk_5` FOREIGN KEY (`packed_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `shipments_ibfk_6` FOREIGN KEY (`shipped_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `shipments`
--

LOCK TABLES `shipments` WRITE;
/*!40000 ALTER TABLE `shipments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `shipments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `shortage_alerts`
--

DROP TABLE IF EXISTS `shortage_alerts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `shortage_alerts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `product_id` int(10) unsigned NOT NULL,
  `work_order_id` int(10) unsigned DEFAULT NULL,
  `safety_stock` decimal(15,3) DEFAULT 0.000,
  `reorder_point` decimal(15,3) DEFAULT 0.000,
  `current_stock` decimal(15,3) DEFAULT 0.000,
  `net_required` decimal(15,3) DEFAULT 0.000,
  `shortage_amount` decimal(15,3) NOT NULL,
  `priority` enum('low','medium','high','critical') DEFAULT 'medium',
  `status` enum('active','acknowledged','resolved') DEFAULT 'active',
  `resolution` varchar(255) DEFAULT NULL,
  `resolution_notes` text DEFAULT NULL,
  `resolved_by` int(10) unsigned DEFAULT NULL,
  `resolved_at` datetime DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_product` (`product_id`),
  KEY `idx_priority` (`priority`),
  KEY `idx_status` (`status`),
  KEY `idx_created_at` (`created_at`),
  KEY `work_order_id` (`work_order_id`),
  KEY `resolved_by` (`resolved_by`),
  KEY `idx_shortage_status_priority` (`status`,`priority`),
  CONSTRAINT `shortage_alerts_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE,
  CONSTRAINT `shortage_alerts_ibfk_2` FOREIGN KEY (`work_order_id`) REFERENCES `work_orders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `shortage_alerts_ibfk_3` FOREIGN KEY (`resolved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `shortage_alerts`
--

LOCK TABLES `shortage_alerts` WRITE;
/*!40000 ALTER TABLE `shortage_alerts` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `shortage_alerts` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `statement_history`
--

DROP TABLE IF EXISTS `statement_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `statement_history` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` int(10) unsigned NOT NULL,
  `start_date` date NOT NULL,
  `end_date` date NOT NULL,
  `generation_method` enum('manual','automatic','email','bulk') DEFAULT 'manual',
  `generated_at` timestamp NULL DEFAULT current_timestamp(),
  `generated_by` int(10) unsigned DEFAULT NULL,
  `email_sent` tinyint(1) DEFAULT 0,
  `email_sent_at` timestamp NULL DEFAULT NULL,
  `pdf_generated` tinyint(1) DEFAULT 0,
  `pdf_path` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_customer` (`customer_id`),
  KEY `idx_generated_at` (`generated_at`),
  KEY `idx_period` (`start_date`,`end_date`),
  KEY `generated_by` (`generated_by`),
  CONSTRAINT `statement_history_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `statement_history_ibfk_2` FOREIGN KEY (`generated_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `statement_history`
--

LOCK TABLES `statement_history` WRITE;
/*!40000 ALTER TABLE `statement_history` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `statement_history` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `stock_movements`
--

DROP TABLE IF EXISTS `stock_movements`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `stock_movements` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `product_id` int(10) unsigned NOT NULL,
  `location_id` int(10) unsigned NOT NULL,
  `movement_type` enum('in','out','adjustment','transfer','return','sale','purchase') NOT NULL,
  `quantity` decimal(15,4) NOT NULL COMMENT 'Positive for IN, negative for OUT',
  `cost_price` decimal(15,2) DEFAULT NULL COMMENT 'Unit cost at time of movement',
  `reference_type` varchar(50) DEFAULT NULL COMMENT 'Type of related document (e.g., purchase_order, sales_order)',
  `reference_id` int(10) unsigned DEFAULT NULL COMMENT 'ID of related document',
  `notes` text DEFAULT NULL,
  `movement_date` datetime NOT NULL DEFAULT current_timestamp(),
  `recorded_by` int(10) unsigned DEFAULT NULL COMMENT 'User ID who recorded the movement',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_product_id` (`product_id`),
  KEY `idx_location_id` (`location_id`),
  KEY `idx_movement_type` (`movement_type`),
  KEY `idx_movement_date` (`movement_date`),
  KEY `idx_reference` (`reference_type`,`reference_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 `stock_movements`
--

LOCK TABLES `stock_movements` WRITE;
/*!40000 ALTER TABLE `stock_movements` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `stock_movements` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `stock_transfers`
--

DROP TABLE IF EXISTS `stock_transfers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `stock_transfers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `transfer_number` varchar(50) NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `from_location_id` int(10) unsigned NOT NULL,
  `to_location_id` int(10) unsigned NOT NULL,
  `quantity` decimal(15,4) NOT NULL,
  `status` enum('pending','in_transit','completed','cancelled') NOT NULL DEFAULT 'pending',
  `notes` text DEFAULT NULL,
  `requested_by` int(10) unsigned DEFAULT NULL COMMENT 'User who requested the transfer',
  `requested_date` datetime NOT NULL DEFAULT current_timestamp(),
  `shipped_by` int(10) unsigned DEFAULT NULL COMMENT 'User who shipped the transfer',
  `shipped_date` datetime DEFAULT NULL,
  `received_by` int(10) unsigned DEFAULT NULL COMMENT 'User who received the transfer',
  `received_date` datetime DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `transfer_number` (`transfer_number`),
  KEY `idx_product_id` (`product_id`),
  KEY `idx_from_location` (`from_location_id`),
  KEY `idx_to_location` (`to_location_id`),
  KEY `idx_status` (`status`),
  KEY `idx_requested_date` (`requested_date`),
  KEY `fk_transfers_requested_by` (`requested_by`),
  KEY `fk_transfers_shipped_by` (`shipped_by`),
  KEY `fk_transfers_received_by` (`received_by`),
  CONSTRAINT `fk_transfers_from_location` FOREIGN KEY (`from_location_id`) REFERENCES `locations` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_transfers_product` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_transfers_received_by` FOREIGN KEY (`received_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_transfers_requested_by` FOREIGN KEY (`requested_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_transfers_shipped_by` FOREIGN KEY (`shipped_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_transfers_to_location` FOREIGN KEY (`to_location_id`) REFERENCES `locations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `stock_transfers`
--

LOCK TABLES `stock_transfers` WRITE;
/*!40000 ALTER TABLE `stock_transfers` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `stock_transfers` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `supplier_bill_items`
--

DROP TABLE IF EXISTS `supplier_bill_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `supplier_bill_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `bill_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned DEFAULT NULL,
  `description` text NOT NULL,
  `quantity` int(11) NOT NULL,
  `unit_price` decimal(15,2) NOT NULL,
  `tax_rate` decimal(5,2) DEFAULT 0.00,
  `line_total` decimal(15,2) NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `bill_id` (`bill_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `supplier_bill_items_ibfk_1` FOREIGN KEY (`bill_id`) REFERENCES `supplier_bills` (`id`) ON DELETE CASCADE,
  CONSTRAINT `supplier_bill_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `supplier_bill_items`
--

LOCK TABLES `supplier_bill_items` WRITE;
/*!40000 ALTER TABLE `supplier_bill_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `supplier_bill_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `supplier_bills`
--

DROP TABLE IF EXISTS `supplier_bills`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `supplier_bills` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `bill_number` varchar(50) NOT NULL,
  `supplier_invoice_number` varchar(100) DEFAULT NULL,
  `supplier_id` int(10) unsigned NOT NULL,
  `po_id` int(10) unsigned DEFAULT NULL,
  `grn_id` int(10) unsigned DEFAULT NULL,
  `bill_date` date NOT NULL,
  `due_date` date DEFAULT NULL,
  `status` enum('draft','pending','approved','paid','overdue','cancelled') DEFAULT 'draft',
  `subtotal` decimal(15,2) DEFAULT 0.00,
  `tax_amount` decimal(15,2) DEFAULT 0.00,
  `total_amount` decimal(15,2) DEFAULT 0.00,
  `paid_amount` decimal(15,2) DEFAULT 0.00,
  `balance` decimal(15,2) DEFAULT 0.00,
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `bill_number` (`bill_number`),
  KEY `supplier_id` (`supplier_id`),
  KEY `po_id` (`po_id`),
  KEY `grn_id` (`grn_id`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `supplier_bills_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`),
  CONSTRAINT `supplier_bills_ibfk_2` FOREIGN KEY (`po_id`) REFERENCES `purchase_orders` (`id`) ON DELETE SET NULL,
  CONSTRAINT `supplier_bills_ibfk_3` FOREIGN KEY (`grn_id`) REFERENCES `goods_receipts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `supplier_bills_ibfk_4` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `supplier_bills`
--

LOCK TABLES `supplier_bills` WRITE;
/*!40000 ALTER TABLE `supplier_bills` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `supplier_bills` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `supplier_contracts`
--

DROP TABLE IF EXISTS `supplier_contracts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `supplier_contracts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `contract_number` varchar(50) NOT NULL,
  `supplier_id` int(10) unsigned NOT NULL,
  `title` varchar(255) NOT NULL,
  `contract_type` enum('supply','service','maintenance','other') DEFAULT 'supply',
  `start_date` date NOT NULL,
  `end_date` date DEFAULT NULL,
  `value` decimal(15,2) DEFAULT NULL,
  `currency` varchar(3) DEFAULT 'USD',
  `payment_terms` varchar(100) DEFAULT NULL,
  `renewal_terms` text DEFAULT NULL,
  `status` enum('draft','active','expiring','expired','terminated') DEFAULT 'draft',
  `terms_conditions` text DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `contract_number` (`contract_number`),
  KEY `supplier_id` (`supplier_id`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `supplier_contracts_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`),
  CONSTRAINT `supplier_contracts_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `supplier_contracts`
--

LOCK TABLES `supplier_contracts` WRITE;
/*!40000 ALTER TABLE `supplier_contracts` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `supplier_contracts` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `supplier_payments`
--

DROP TABLE IF EXISTS `supplier_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `supplier_payments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `payment_number` varchar(50) NOT NULL,
  `supplier_id` int(10) unsigned NOT NULL,
  `bill_id` int(10) unsigned DEFAULT NULL,
  `payment_date` date NOT NULL,
  `amount` decimal(15,2) NOT NULL,
  `payment_method` enum('cash','check','credit_card','bank_transfer','other') NOT NULL,
  `reference` varchar(100) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `payment_number` (`payment_number`),
  KEY `supplier_id` (`supplier_id`),
  KEY `bill_id` (`bill_id`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `supplier_payments_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`),
  CONSTRAINT `supplier_payments_ibfk_2` FOREIGN KEY (`bill_id`) REFERENCES `supplier_bills` (`id`) ON DELETE SET NULL,
  CONSTRAINT `supplier_payments_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `supplier_payments`
--

LOCK TABLES `supplier_payments` WRITE;
/*!40000 ALTER TABLE `supplier_payments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `supplier_payments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `suppliers`
--

DROP TABLE IF EXISTS `suppliers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `suppliers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `company_name` varchar(255) NOT NULL,
  `contact_person` varchar(200) DEFAULT NULL,
  `email` varchar(255) NOT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `website` varchar(255) DEFAULT NULL,
  `tax_id` varchar(50) DEFAULT NULL,
  `address` text DEFAULT NULL,
  `city` varchar(100) DEFAULT NULL,
  `state` varchar(100) DEFAULT NULL,
  `zip` varchar(20) DEFAULT NULL,
  `country` varchar(100) DEFAULT NULL,
  `payment_terms` varchar(100) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `status` enum('active','inactive') DEFAULT 'active',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  `is_1099_contractor` tinyint(1) DEFAULT 0 COMMENT 'Is this supplier a 1099 contractor?',
  `form_1099_type` enum('MISC','NEC','K','INT','DIV','R') DEFAULT NULL COMMENT '1099 form type',
  `tax_id_type` enum('EIN','SSN') DEFAULT 'EIN' COMMENT 'Tax ID type',
  `tax_id_verified` tinyint(1) DEFAULT 0 COMMENT 'Tax ID verified with W-9',
  `w9_received_date` date DEFAULT NULL COMMENT 'Date W-9 form was received',
  `w9_file_path` varchar(500) DEFAULT NULL COMMENT 'Path to W-9 document',
  `box_number` int(11) DEFAULT NULL COMMENT '1099 box number for categorization',
  PRIMARY KEY (`id`),
  KEY `idx_1099_contractor` (`is_1099_contractor`),
  KEY `idx_form_1099_type` (`form_1099_type`),
  KEY `idx_deleted_at` (`deleted_at`),
  FULLTEXT KEY `ft_supplier_search` (`company_name`,`email`)
) ENGINE=InnoDB AUTO_INCREMENT=64 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `suppliers`
--

LOCK TABLES `suppliers` WRITE;
/*!40000 ALTER TABLE `suppliers` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `suppliers` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `system_notes`
--

DROP TABLE IF EXISTS `system_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `system_notes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `note_type` varchar(50) NOT NULL,
  `subject` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `created_by` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_note_type` (`note_type`),
  KEY `idx_created_at` (`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `system_notes`
--

LOCK TABLES `system_notes` WRITE;
/*!40000 ALTER TABLE `system_notes` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `system_notes` VALUES
(1,'deprecation','PurchasePaymentController Deprecated','The PurchasePaymentController (/purchases/payments) has been deprecated in favor of VendorPaymentController (/accounting/vendor-payments). \n    The VendorPaymentController provides enhanced features including:\n    - Check printing capability\n    - Multiple bill payment application\n    - Journal entry integration\n    - Payment status workflow (draft, printed, cleared, voided)\n    - Bank account management\n    \n    Legacy routes at /purchases/payments remain active for backwards compatibility but should be migrated to /accounting/vendor-payments.\n    Any new development should use VendorPaymentController.','2025-11-15 19:51:04',NULL);
/*!40000 ALTER TABLE `system_notes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `system_script_log`
--

DROP TABLE IF EXISTS `system_script_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `system_script_log` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `script_key` varchar(100) NOT NULL COMMENT 'Script identifier',
  `executed_by` int(10) unsigned NOT NULL COMMENT 'User who executed the script',
  `parameters` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Script parameters as JSON' CHECK (json_valid(`parameters`)),
  `success` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Execution success flag',
  `output` mediumtext DEFAULT NULL COMMENT 'Script output (up to 16MB)',
  `message` varchar(500) DEFAULT NULL COMMENT 'Result message',
  `executed_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_script_key` (`script_key`),
  KEY `idx_executed_by` (`executed_by`),
  KEY `idx_executed_at` (`executed_at`),
  CONSTRAINT `system_script_log_ibfk_1` FOREIGN KEY (`executed_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Logs system script executions for audit trail';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `system_script_log`
--

LOCK TABLES `system_script_log` WRITE;
/*!40000 ALTER TABLE `system_script_log` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `system_script_log` VALUES
(1,'scan_permissions',1,'{\"mode\":\"dry-run\"}',0,'sh: php: command not found','Script execution failed with exit code 127','2025-11-24 19:19:44'),
(2,'scan_permissions',1,'{\"mode\":\"dry-run\"}',0,'sh: php: command not found','Script execution failed with exit code 127','2025-11-24 19:21:23'),
(3,'scan_permissions',1,'{\"mode\":\"dry-run\"}',1,'PHP Warning:  Constant BASE_PATH already defined in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 17\n\nWarning: Constant BASE_PATH already defined in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 17\nPHP Warning:  session_name(): Session name cannot be changed after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 57\n\nWarning: session_name(): Session name cannot be changed after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 57\nPHP Warning:  session_set_cookie_params(): Session cookie parameters cannot be changed after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 58\n\nWarning: session_set_cookie_params(): Session cookie parameters cannot be changed after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 58\nPHP Warning:  session_start(): Session cannot be started after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 65\n\nWarning: session_start(): Session cannot be started after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 65\n\n================================================================================\nPERMISSION SCANNER & SYNC UTILITY\nMODE: DRY RUN (no changes will be made)\n================================================================================\n\n📚 LOADING DATABASE PERMISSIONS\n--------------------------------------------------------------------------------\n  Loaded 373 permissions from database\n\n🔍 SCANNING CONTROLLERS\n--------------------------------------------------------------------------------\n  Scanned 143 controller files\n  Found 116 files with permission checks\n  Discovered 116 unique permissions\n\n📋 DISCOVERED PERMISSIONS REPORT\n--------------------------------------------------------------------------------\n  Permission                               Checks   Controllers\n--------------------------------------------------------------------------------\n\n  (CORE):\n  admin                                    86       ActionMenuEditorController,... ✓\n\n  1099_CONTRACTORS:\n  1099_contractors.export                  1        Form1099Controller ✓\n  1099_contractors.generate_reports        1        Form1099Controller ✓\n  1099_contractors.view                    1        Form1099Controller ✓\n  1099_contractors.view_payments           1        Form1099Controller ✓\n\n  ACCOUNTING:\n  accounting.approve                       2        ExpenseController ✓\n  accounting.create                        25       AccountController, BankAcco... ✓\n  accounting.customer_payments.create      2        CustomerPaymentController ✓\n  accounting.customer_payments.view        2        CustomerPaymentController ✓\n  accounting.delete                        10       BankAccountController, Budg... ✓\n  accounting.edit                          20       BankAccountController, Bank... ✓\n  accounting.vendor_payments.create        4        VendorPaymentController ✓\n  accounting.vendor_payments.delete        1        VendorPaymentController ✓\n  accounting.vendor_payments.edit          2        VendorPaymentController ✓\n  accounting.vendor_payments.print_checks  1        VendorPaymentController ✓\n  accounting.vendor_payments.view          3        VendorPaymentController ✓\n  accounting.vendor_payments.void          1        VendorPaymentController ✓\n  accounting.view                          35       AccountController, Accounti... ✓\n\n  ADMIN:\n  admin.settings                           1        PipedriveImportController ✓\n  admin.system_scripts                     3        SystemScriptsController ✓\n\n  AUDIT_LOGS:\n  audit_logs.view                          1        AuditLogController ✓\n\n  BANK_IMPORT:\n  bank_import.create                       2        BankImportController ✓\n  bank_import.delete                       1        BankImportController ✓\n  bank_import.edit                         2        BankImportController ✓\n  bank_import.import                       1        BankImportController ✓\n  bank_import.manage_rules                 4        BankImportController ✓\n  bank_import.view                         2        BankImportController ✓\n\n  CAMERA_AUDIT:\n  camera_audit.capture                     1        CameraAuditController ✓\n  camera_audit.delete                      1        CameraAuditController ✓\n  camera_audit.stations                    3        CameraAuditController ✓\n  camera_audit.verify                      1        CameraAuditController ✓\n  camera_audit.view                        3        CameraAuditController ✓\n\n  CRM:\n  crm.create                               6        ClientController, CompanyCo... ✓\n  crm.delete                               6        ClientController, CompanyCo... ✓\n  crm.edit                                 6       ','Script executed successfully','2025-11-24 19:22:27'),
(4,'sync_permissions_menu',1,'{\"mode\":\"dry-run\"}',1,'PHP Warning:  Constant BASE_PATH already defined in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 17\n\nWarning: Constant BASE_PATH already defined in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 17\nPHP Warning:  session_name(): Session name cannot be changed after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 57\n\nWarning: session_name(): Session name cannot be changed after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 57\nPHP Warning:  session_set_cookie_params(): Session cookie parameters cannot be changed after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 58\n\nWarning: session_set_cookie_params(): Session cookie parameters cannot be changed after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 58\nPHP Warning:  session_start(): Session cannot be started after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 65\n\nWarning: session_start(): Session cannot be started after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 65\n\n================================================================================\nPERMISSION SYNC UTILITY\nMODE: DRY RUN (no changes will be made)\n================================================================================\n\n📱 CHECKING APP GRID PERMISSIONS\n--------------------------------------------------------------------------------\n  ✓ All App Grid items have permissions\n\n📋 CHECKING MENU ITEM PERMISSIONS\n--------------------------------------------------------------------------------\n  Found 6 menu items without permissions:\n\n  + ai-test.view (module: core) - View AI Assistant\n    URL: ai-test\n\n  + assumptions.view (module: core) - View Daily Update\n    URL: assumptions\n\n  + companies.view (module: core) - View Companies\n    URL: companies\n\n  + documentation.view (module: core) - View Documentation\n    URL: documentation\n\n  + network-monitor.view (module: core) - View Network Monitor\n    URL: network-monitor\n\n  + product-forecast.view (module: core) - View Product Configs\n    URL: product-forecast\n\n  Total to add: 6\n\n🔧 STANDARDIZING MODULE NAMES\n--------------------------------------------------------------------------------\n  ✓ No obvious standardization issues found\n\n\n================================================================================\nSYNC COMPLETE\n================================================================================\n\nThis was a dry run. Run with --live flag to apply changes.\n','Script executed successfully','2025-11-24 19:22:32'),
(5,'audit_menu_permissions',1,'[]',1,'PHP Warning:  Constant BASE_PATH already defined in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 17\n\nWarning: Constant BASE_PATH already defined in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 17\nPHP Warning:  session_name(): Session name cannot be changed after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 57\n\nWarning: session_name(): Session name cannot be changed after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 57\nPHP Warning:  session_set_cookie_params(): Session cookie parameters cannot be changed after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 58\n\nWarning: session_set_cookie_params(): Session cookie parameters cannot be changed after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 58\nPHP Warning:  session_start(): Session cannot be started after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 65\n\nWarning: session_start(): Session cannot be started after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 65\n\n================================================================================\nMENU ITEMS TO PERMISSIONS AUDIT\n================================================================================\n\n📋 MENU ITEMS ANALYSIS\n--------------------------------------------------------------------------------\n\nTOP_LEVEL:\n  - Dashboard → dashboard\n  - DEPARTMENTS → (no URL)\n  - TOOLS → (no URL)\n  - QUICK LINKS → (no URL)\n  - ADMIN → (no URL)\n  - APP GRID → (no URL)\n\nDEPARTMENTS:\n  - Accounting → #\n  - CRM → #\n  - Forecaster → (no URL)\n  - HR → #\n  - Inventory → #\n  - Manufacturing → #\n  - Purchases → #\n  - Sales → #\n\nCRM:\n  - Dashboard → crm/dashboard\n  - Activities → crm/activities\n  - Contacts → crm/contacts\n  - Companies → companies\n  - Email Marketing → email-marketing\n  - Opportunities → crm/opportunities\n  - NDAs → ndas\n  - Support → #\n  - Reports → crm/reports\n\nSupport:\n  - Tickets → crm/support\n  - FAQs → crm/faqs\n\nADMIN:\n  - Announcements → announcements\n  - Settings → #\n\nSettings:\n  - Administrative → (no URL)\n  - Automation → settings/automation\n  - Company Settings → #\n  - Financial Settings → #\n  - Location Settings → #\n  - System Configuration → #\n  - AI Assistant → ai-test\n  - Network Monitor → network-monitor\n\nCompany Settings:\n  - Company Info → settings/company\n  - Email Settings → settings/email\n  - Locations → locations\n  - Positions → hr/positions\n  - User Groups → settings/user-groups\n\nFinancial Settings:\n  - Cost Allocation → settings/cost-allocation\n  - Fiscal Year → settings/fiscal-year\n  - Payment Terms → settings/payment-terms\n  - PP&E Parameters → settings/ppe-parameters\n  - Tax Settings → settings/tax\n\nLocation Settings:\n  - Business Parameters → settings/business-parameters\n  - Facilities & Leasing → settings/facilities\n  - Payroll Settings → settings/payroll\n\nAccess & Roles:\n  - Audit Log → audit-logs\n  - Users → users\n  - Roles & Permissions → roles\n  - Specific Data Roles → data_access\n\nSystem Configuration:\n  - Action Menu Editor → settings/action-menus\n  - Dropdowns → #\n  - QuickBooks Mgmt → quickbooks\n  - System Scripts → admin/system-scripts\n  - Templates → #\n\nDropdowns:\n  - Operations → settings/dropdowns/operations\n  - Sales & CRM → settings/dropdowns/sales\n\nTemplates:\n  - NDA Templates → settings/nda-templates\n  - Terms & Conditions → settings/terms-conditions\n\nAccounting:\n  - Assets/Compliance → #\n  - Banking/Cash → #\n  - Core Accounting → #\n  - Multi-Currency → accounting/currency\n  - Operations → #\n  - Payments → (no URL)\n  - Recurring Transactions → /recurring\n  - Tax Management → #\n  - Reports → #\n\nCore Accounting:\n  - Chart of Accounts → accounting/accounts\n  - Journal Entries → accounting/journal\n  - General Ledger → accounting/ledger\n\nBanking/Cash:\n  - Bank Accounts → accounting/bank-accounts\n  - Bank Reconciliation → accounting/reconciliation\n\nOperations:\n  - Expenses → accounting/expenses\n  - Budgets → accounting/budgets\n\nAssets/Compliance:\n  - Fixed Assets → accounting/assets\n  - Depreciation → accounting/depreciation\n  - Period Closing → accounting/period\n\nReports:\n  - All Report Package → accounting/reports/package\n  - Balance Sheet → accounting/reports/balance-sheet\n  - Income Statement → accounting/reports/income-statement\n  - Cash Flow Statement → accounting/reports/cash-flow-statement\n  - Trial Balance → accounting/reports/trial-balance\n  - Aging Reports → accounting/reports/aging\n  - A/P Aging Detail → accounting/reports/ap-aging-detail\n  - A/R Aging Detail → accounting/reports/ar-aging-detail\n  - Payment Terms List → accounting/reports/payment-terms-list\n  - ','Script executed successfully','2025-11-24 19:22:44'),
(6,'cache_clear',1,'[]',1,'Cleared cache directory: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/cache','Cache cleared successfully. Deleted 0 file(s).','2025-11-24 19:22:52'),
(7,'audit_menu_permissions',1,'[]',1,'\n\n\n\n\n================================================================================\nMENU ITEMS TO PERMISSIONS AUDIT\n================================================================================\n\n📋 MENU ITEMS ANALYSIS\n--------------------------------------------------------------------------------\n\nTOP_LEVEL:\n  - Dashboard → dashboard\n  - DEPARTMENTS → (no URL)\n  - TOOLS → (no URL)\n  - QUICK LINKS → (no URL)\n  - ADMIN → (no URL)\n  - APP GRID → (no URL)\n\nDEPARTMENTS:\n  - Accounting → #\n  - CRM → #\n  - Forecaster → (no URL)\n  - HR → #\n  - Inventory → #\n  - Manufacturing → #\n  - Purchases → #\n  - Sales → #\n\nCRM:\n  - Dashboard → crm/dashboard\n  - Activities → crm/activities\n  - Contacts → crm/contacts\n  - Companies → companies\n  - Email Marketing → email-marketing\n  - Opportunities → crm/opportunities\n  - NDAs → ndas\n  - Support → #\n  - Reports → crm/reports\n\nSupport:\n  - Tickets → crm/support\n  - FAQs → crm/faqs\n\nADMIN:\n  - Announcements → announcements\n  - Settings → #\n\nSettings:\n  - Administrative → (no URL)\n  - Automation → settings/automation\n  - Company Settings → #\n  - Financial Settings → #\n  - Location Settings → #\n  - System Configuration → #\n  - AI Assistant → ai-test\n  - Network Monitor → network-monitor\n\nCompany Settings:\n  - Company Info → settings/company\n  - Email Settings → settings/email\n  - Locations → locations\n  - Positions → hr/positions\n  - User Groups → settings/user-groups\n\nFinancial Settings:\n  - Cost Allocation → settings/cost-allocation\n  - Fiscal Year → settings/fiscal-year\n  - Payment Terms → settings/payment-terms\n  - PP&E Parameters → settings/ppe-parameters\n  - Tax Settings → settings/tax\n\nLocation Settings:\n  - Business Parameters → settings/business-parameters\n  - Facilities & Leasing → settings/facilities\n  - Payroll Settings → settings/payroll\n\nAccess & Roles:\n  - Audit Log → audit-logs\n  - Users → users\n  - Roles & Permissions → roles\n  - Specific Data Roles → data_access\n\nSystem Configuration:\n  - Action Menu Editor → settings/action-menus\n  - Dropdowns → #\n  - QuickBooks Mgmt → quickbooks\n  - System Scripts → admin/system-scripts\n  - Templates → #\n\nDropdowns:\n  - Operations → settings/dropdowns/operations\n  - Sales & CRM → settings/dropdowns/sales\n\nTemplates:\n  - NDA Templates → settings/nda-templates\n  - Terms & Conditions → settings/terms-conditions\n\nAccounting:\n  - Assets/Compliance → #\n  - Banking/Cash → #\n  - Core Accounting → #\n  - Multi-Currency → accounting/currency\n  - Operations → #\n  - Payments → (no URL)\n  - Recurring Transactions → /recurring\n  - Tax Management → #\n  - Reports → #\n\nCore Accounting:\n  - Chart of Accounts → accounting/accounts\n  - Journal Entries → accounting/journal\n  - General Ledger → accounting/ledger\n\nBanking/Cash:\n  - Bank Accounts → accounting/bank-accounts\n  - Bank Reconciliation → accounting/reconciliation\n\nOperations:\n  - Expenses → accounting/expenses\n  - Budgets → accounting/budgets\n\nAssets/Compliance:\n  - Fixed Assets → accounting/assets\n  - Depreciation → accounting/depreciation\n  - Period Closing → accounting/period\n\nReports:\n  - All Report Package → accounting/reports/package\n  - Balance Sheet → accounting/reports/balance-sheet\n  - Income Statement → accounting/reports/income-statement\n  - Cash Flow Statement → accounting/reports/cash-flow-statement\n  - Trial Balance → accounting/reports/trial-balance\n  - Aging Reports → accounting/reports/aging\n  - A/P Aging Detail → accounting/reports/ap-aging-detail\n  - A/R Aging Detail → accounting/reports/ar-aging-detail\n  - Payment Terms List → accounting/reports/payment-terms-list\n  - Production Reports → manufacturing/reports/production\n  - OEE Reports → manufacturing/reports/oee\n  - Report Builder → reports/custom/builder\n  - My Reports → reports/custom/my\n  - Shared Reports → reports/custom/shared\n  - Scheduled Reports → reports/custom/scheduled\n\nHR:\n  - Dashboard → hr/dashboard\n  - Employees → employees\n  - Recruitment → #\n  - Development → #\n  - Relations → #\n  - Attendance → hr/attendance\n  - Time Off → hr/timeoff\n  - Timesheets → hr/timesheets\n\nRecruitment:\n  - Dashboard → hr/recruitment/dashboard\n  - Job Positions → hr/recruitment/positions\n  - Applications → hr/recruitment/applications\n  - Interviews → hr/recruitment/interviews\n  - Assessments → hr/recruitment/assessments\n  - Offers → hr/recruitment/offers\n\nDevelopment:\n  - Contracts → hr/development/contracts\n  - Training → hr/development/training\n  - Performance Reviews → hr/development/reviews\n\nRelations:\n  - Issues & Challenges → hr/relations/issues\n  - Separations → hr/relations/separations\n\nInventory:\n  - Dashboard → inventory/dashboard\n  - Product Management → #\n  - Stock Levels → /inventory/stock-levels\n  - Lot/Serial Numbers → inventory/lots\n  - Visual Audits → /camera-audit\n\nProd','Script executed successfully','2025-11-24 19:24:19'),
(8,'audit_menu_permissions',1,'[]',1,'\n\n\n\n\n================================================================================\nMENU ITEMS TO PERMISSIONS AUDIT\n================================================================================\n\n📋 MENU ITEMS ANALYSIS\n--------------------------------------------------------------------------------\n\nTOP_LEVEL:\n  - Dashboard → dashboard\n  - DEPARTMENTS → (no URL)\n  - TOOLS → (no URL)\n  - QUICK LINKS → (no URL)\n  - ADMIN → (no URL)\n  - APP GRID → (no URL)\n\nDEPARTMENTS:\n  - Accounting → #\n  - CRM → #\n  - Forecaster → (no URL)\n  - HR → #\n  - Inventory → #\n  - Manufacturing → #\n  - Purchases → #\n  - Sales → #\n\nCRM:\n  - Dashboard → crm/dashboard\n  - Activities → crm/activities\n  - Contacts → crm/contacts\n  - Companies → companies\n  - Email Marketing → email-marketing\n  - Opportunities → crm/opportunities\n  - NDAs → ndas\n  - Support → #\n  - Reports → crm/reports\n\nSupport:\n  - Tickets → crm/support\n  - FAQs → crm/faqs\n\nADMIN:\n  - Announcements → announcements\n  - Settings → #\n\nSettings:\n  - Administrative → (no URL)\n  - Automation → settings/automation\n  - Company Settings → #\n  - Financial Settings → #\n  - Location Settings → #\n  - System Configuration → #\n  - AI Assistant → ai-test\n  - Network Monitor → network-monitor\n\nCompany Settings:\n  - Company Info → settings/company\n  - Email Settings → settings/email\n  - Locations → locations\n  - Positions → hr/positions\n  - User Groups → settings/user-groups\n\nFinancial Settings:\n  - Cost Allocation → settings/cost-allocation\n  - Fiscal Year → settings/fiscal-year\n  - Payment Terms → settings/payment-terms\n  - PP&E Parameters → settings/ppe-parameters\n  - Tax Settings → settings/tax\n\nLocation Settings:\n  - Business Parameters → settings/business-parameters\n  - Facilities & Leasing → settings/facilities\n  - Payroll Settings → settings/payroll\n\nAccess & Roles:\n  - Audit Log → audit-logs\n  - Users → users\n  - Roles & Permissions → roles\n  - Specific Data Roles → data_access\n\nSystem Configuration:\n  - Action Menu Editor → settings/action-menus\n  - Dropdowns → #\n  - QuickBooks Mgmt → quickbooks\n  - System Scripts → admin/system-scripts\n  - Templates → #\n\nDropdowns:\n  - Operations → settings/dropdowns/operations\n  - Sales & CRM → settings/dropdowns/sales\n\nTemplates:\n  - NDA Templates → settings/nda-templates\n  - Terms & Conditions → settings/terms-conditions\n\nAccounting:\n  - Dashboard → accounting\n  - Assets/Compliance → #\n  - Banking/Cash → #\n  - Core Accounting → #\n  - Multi-Currency → accounting/currency\n  - Operations → #\n  - Payments → (no URL)\n  - Recurring Transactions → /recurring\n  - Tax Management → #\n  - Reports → #\n\nCore Accounting:\n  - Chart of Accounts → accounting/accounts\n  - Journal Entries → accounting/journal\n  - General Ledger → accounting/ledger\n\nBanking/Cash:\n  - Bank Accounts → accounting/bank-accounts\n  - Bank Reconciliation → accounting/reconciliation\n\nOperations:\n  - Expenses → accounting/expenses\n  - Budgets → accounting/budgets\n\nAssets/Compliance:\n  - Fixed Assets → accounting/assets\n  - Depreciation → accounting/depreciation\n  - Period Closing → accounting/period\n\nReports:\n  - All Report Package → accounting/reports/package\n  - Balance Sheet → accounting/reports/balance-sheet\n  - Income Statement → accounting/reports/income-statement\n  - Cash Flow Statement → accounting/reports/cash-flow-statement\n  - Trial Balance → accounting/reports/trial-balance\n  - Aging Reports → accounting/reports/aging\n  - A/P Aging Detail → accounting/reports/ap-aging-detail\n  - A/R Aging Detail → accounting/reports/ar-aging-detail\n  - Payment Terms List → accounting/reports/payment-terms-list\n  - Production Reports → manufacturing/reports/production\n  - OEE Reports → manufacturing/reports/oee\n  - Report Builder → reports/custom/builder\n  - My Reports → reports/custom/my\n  - Shared Reports → reports/custom/shared\n  - Scheduled Reports → reports/custom/scheduled\n\nHR:\n  - Dashboard → hr/dashboard\n  - Employees → employees\n  - Recruitment → #\n  - Development → #\n  - Relations → #\n  - Attendance → hr/attendance\n  - Time Off → hr/timeoff\n  - Timesheets → hr/timesheets\n\nRecruitment:\n  - Dashboard → hr/recruitment/dashboard\n  - Job Positions → hr/recruitment/positions\n  - Applications → hr/recruitment/applications\n  - Interviews → hr/recruitment/interviews\n  - Assessments → hr/recruitment/assessments\n  - Offers → hr/recruitment/offers\n\nDevelopment:\n  - Contracts → hr/development/contracts\n  - Training → hr/development/training\n  - Performance Reviews → hr/development/reviews\n\nRelations:\n  - Issues & Challenges → hr/relations/issues\n  - Separations → hr/relations/separations\n\nInventory:\n  - Dashboard → inventory/dashboard\n  - Product Management → #\n  - Stock Levels → /inventory/stock-levels\n  - Lot/Serial Numbers → inventory/lots\n  - Visual Audits → /camera-audit\n\nProduct Management:\n  - Products → products\n  - Categories → inventory/categories\n\nManufacturing:\n  - Dashboard → manufacturing\n  - Capacity Planning → #\n  - Planning & Materials → #\n  - Production → #\n  - Resources → #\n  - Quality Control → #\n  - Maintenance → #\n  - Costing → #\n  - Reports → #\n\nCapacity Planning:\n  - Dashboard → manufacturing/capacity\n  - Real-time Status → manufacturing/capacity/machineStatus\n  - Analytics → manufacturing/capacity/analytics\n  - Availability → manufacturing/capacity/availability\n  - Feasibility → manufacturing/capacity/feasibility\n\nPlanning & Materials:\n  - Bill of Materials → manufacturing/boms\n  - MRP → manufacturing/mrp\n  - Production Scheduling → manufacturing/scheduling\n\nProduction:\n  - Work Orders → manufacturing/workorders\n  - Shop Floor Control → manufacturing/shopfloor\n\nResources:\n  - Business Lines → manufacturing/business-lines\n  - Equipment Lines → manufacturing/equipment-lines\n  - Equipment Units → manufacturing/equipment\n\nQuality Control:\n  - Dashboard → manufacturing/quality\n  - Inspections → manufacturing/quality/inspections\n  - NCR → manufacturing/quality/ncr\n  - Metrics → manufacturing/quality/metrics\n  - Templates → manufacturing/quality/templates\n\nMaintenance:\n  - Maintenance Schedules → manufacturing/maintenance/schedules\n  - Maintenance Work Orders → manufacturing/maintenance/work-orders\n  - Downtime Tracking → manufacturing/maintenance/downtime\n\nCosting:\n  - Production Costing → manufacturing/costing/production\n  - Job Costing → manufacturing/costing/jobs\n\nSales:\n  - Dashboard → sales/dashboard\n  - Sales Documents → #\n  - Fulfillment → #\n  - Configuration → #\n  - Reports → sales/reports\n\nSales Documents:\n  - Quotes → quotes\n  - Agreements → sales/agreements\n  - Orders → sales/orders\n  - Invoices → invoices\n  - Credit Notes → creditnotes\n\nFulfillment:\n  - Shipments → shipments\n  - Delivery Notes → sales/delivery_notes\n  - Returns (RMA) → sales/returns\n\nConfiguration:\n  - Pricing Rules → sales/pricing_rules\n  - Discounts & Promotions → sales/promotions\n\nPurchases:\n  - Dashboard → purchases/dashboard\n  - Suppliers → suppliers\n  - Procurement Process → #\n  - Payments & Documents → #\n  - Supplier Contracts → purchases/contracts\n  - Reports → purchases/reports\n\nSuppliers:\n  - Suppliers → suppliers\n  - 1099 Contractors → /suppliers?filter=1099\n\nProcurement Process:\n  - Purchase Requisitions → purchases/requisitions\n  - RFQs (Quotes) → purchases/rfqs\n  - Purchase Orders → purchases/orders\n  - Goods Receipt → purchases/receiving\n\nPayments & Documents:\n  - Bills/Invoices → purchases/bills\n  - Payments Made (Legacy) → purchases/payments\n  - Purchase Returns → purchases/returns\n  - Debit Notes → purchases/debit-notes\n\nTime Off:\n  - My Time Off → hr/timeoff/my\n  - All Requests → hr/timeoff/all\n  - Approve Requests → hr/timeoff/approve\n  - Time Off Types → hr/timeoff/types\n  - Accrual Rules → hr/timeoff/accruals\n\nTimesheets:\n  - My Timesheet → hr/timesheets/my\n  - All Timesheets → hr/timesheets/all\n  - Approve Timesheets → hr/timesheets/approve\n  - Timesheet Reports → hr/timesheets/reports\n\nLot/Serial Numbers:\n  - All Lots/Serials → inventory/lots/all\n  - Traceability → inventory/lots/traceability\n  - Expiration Dates → inventory/lots/expiration\n\nMulti-Currency:\n  - Currencies → accounting/currency/list\n  - Exchange Rates → accounting/currency/rates\n  - Currency Gains/Losses → accounting/currency/revaluation\n\nAutomation:\n  - AI Testing → ai-test\n  - Approval Rules → settings/automation/approvals\n  - Templates → automation/email-templates\n  - Scheduled Actions → settings/automation/scheduled\n  - Workflows → settings/automation/workflows\n\nProjects:\n  - Dashboard → projects/dashboard\n  - My Projects → projects/?my_projects=1\n  - My Tasks → projects/my-tasks\n  - Gantt Chart → projects/gantt\n  - Time Tracking → projects/time\n  - Resource Planning → projects/resources\n  - Project Profitability → projects/profitability\n\nFiles:\n  - All Files → /files\n  - My Files → /files?context=user\n  - Shared With Me → files/shared\n  - Accounting Files → /files?context=accounting\n  - Company Files → /files?context=company\n  - HR Documents → /files?context=hr\n  - Inventory Documents → /files?context=inventory\n  - Manufacturing Documents → /files?context=manufacturing\n  - Project Files → /files?context=project\n  - Purchases Documents → /files?context=purchases\n  - Sales Documents → /files?context=sales\n\nEmail Marketing:\n  - Dashboard → email-marketing/dashboard\n  - Campaigns → email-marketing/campaigns\n  - Email Templates → email-marketing/templates\n  - Mailing Lists → email-marketing/lists\n  - Automation → email-marketing/automation\n  - Analytics → email-marketing/analytics\n\nHelpdesk:\n  - Dashboard → helpdesk/dashboard\n  - Documentation → documentation\n  - Tickets → helpdesk/tickets\n  - My Tickets → helpdesk/my-tickets\n  - SLA Management → helpdesk/sla\n  - Knowledge Base → helpdesk/kb\n  - Live Chat → helpdesk/chat\n  - Reports → helpdesk/reports\n\nAPP GRID:\n  - DASHBOARD → dashboard\n  - CALENDAR → calendar\n  - EMPLOYEES → employees/directory\n  - PRODUCTS → products\n  - SALES → salesorders\n  - SETTINGS → settings\n\nTOOLS:\n  - Files → /files\n  - Helpdesk → helpdesk\n  - Projects → projects\n  - Reports → reports/custom\n\nTax Management:\n  - Tax Jurisdictions → /tax/jurisdictions\n  - Tax Payments → /tax/payments\n  - Tax Reports → /tax/reports/liability\n\nPayments:\n  - Customer Payments → /accounting/customer-payments\n  - Vendor Payments → /accounting/vendor-payments\n\nAdministrative:\n  - Access & Roles → #\n  - Document Mgmt → #\n  - Menu Mgmt → menus\n  - PHPmyadmin → /phpmyadmin\n  - System Backup → backup\n\nDocument Mgmt:\n  - Dashboard → nextcloud/admin/dashboard\n  - Activity Log → nextcloud/admin/activity\n  - Storage Report → nextcloud/admin/storage\n  - User Activity → nextcloud/admin/users\n  - Settings → nextcloud/settings\n\nForecaster:\n  - Getting Started → /product-forecast/getting-started\n  - Command Center → /product-forecast/command-center\n  - Daily Update → assumptions\n  - Assumption Sets → assumptions/sets\n  - Product Configs → product-forecast\n  - Generate Projections → product-forecast/generate\n  - Pro Forma Stmts → product-forecast/proforma\n  - Variance Tracking → /product-forecast/variance\n  - Sensitivity Analysis → product-forecast/sensitivity\n  - Compare Scenarios → product-forecast/compare\n  - Variance Report → assumptions/variance\n  - Advanced Tools → (no URL)\n  - Scenario Modeler → forecaster\n\nTotal menu items: 275\n\n🔐 PERMISSIONS ANALYSIS\n--------------------------------------------------------------------------------\n  (empty/top-level)               21 permissions\n  1099                             7 permissions\n  1099_contractors                 3 permissions\n  accounting                      48 permissions\n  admin                            3 permissions\n  audit                            2 permissions\n  automation                       1 permissions\n  bank_import                      8 permissions\n  credit_notes                     4 permissions\n  crm                             34 permissions\n  documents                        3 permissions\n  Forecasting                      7 permissions\n  helpdesk                         5 permissions\n  hr                              46 permissions\n  inventory                       31 permissions\n  manufacturing                   26 permissions\n  marketing                        8 permissions\n  nextcloud                        4 permissions\n  permissions                      1 permissions\n  procurement                      5 permissions\n  projects                         3 permissions\n  purchases                       24 permissions\n  recurring                        6 permissions\n  reports                          2 permissions\n  roles                            4 permissions\n  sales                           36 permissions\n  security                         5 permissions\n  settings                         2 permissions\n  statements                       4 permissions\n  system                           5 permissions\n  tax                             11 permissions\n  users                            4 permissions\n\nTotal permissions: 373\n\n⚠️  MISSING PERMISSIONS (Menu items without corresponding permissions)\n--------------------------------------------------------------------------------\n  Found 13 menu items without clear permission mappings:\n\n    - #\n    - companies\n    - documentation\n    - ai-test\n    - network-monitor\n    - assumptions\n    - assumptions/variance\n    - assumptions/sets\n    - product-forecast\n    - product-forecast/generate\n    - product-forecast/proforma\n    - product-forecast/compare\n    - product-forecast/sensitivity\n\n🗑️  ORPHANED PERMISSIONS (Permissions without menu items)\n--------------------------------------------------------------------------------\n  Found 75 permissions without clear menu mappings:\n\n    - 1099_contractors.manage (1099): Manage 1099 contractor designations\n    - 1099_contractors.view (1099): View 1099 contractors\n    - 1099_filings.file (1099): File 1099 forms\n    - 1099_filings.prepare (1099): Prepare 1099 forms\n    - 1099_payments.manage (1099): Manage 1099 payment classifications\n    - 1099_payments.view (1099): View 1099 reportable payments\n    - 1099_reports.view (1099): View 1099 reports\n    - 1099_contractors.export (1099_contractors): Export 1099 Contractors\n    - 1099_contractors.generate_reports (1099_contractors): Generate Reports 1099 Contractors\n    - 1099_contractors.view_payments (1099_contractors): View Payments 1099 Contractors\n    - audit_trail.export (audit): Export audit trail\n    - audit_trail.view (audit): View audit trail\n    - bank_import.categorize (bank_import): Categorize imported transactions\n    - bank_import.create (bank_import): Import bank transactions\n    - bank_import.delete (bank_import): Delete Bank Import\n    - bank_import.edit (bank_import): Edit Bank Import\n    - bank_import.import (bank_import): Import Bank Import\n    - bank_import.manage_rules (bank_import): Manage Rules Bank Import\n    - bank_import.rules (bank_import): Manage categorization rules\n    - bank_import.view (bank_import): View bank imports\n    ... and 55 more\n\n📱 APP GRID ANALYSIS\n--------------------------------------------------------------------------------\nApp Grid items:\n  - DASHBOARD (dashboard) → ✓ Has permission: dashboard.view\n  - CALENDAR (calendar) → ✓ Has permission: calendar.view\n  - EMPLOYEES (employees/directory) → ✓ Has permission: employees.view\n  - PRODUCTS (products) → ✓ Has permission: products.view\n  - SALES (salesorders) → ✓ Has permission: salesorders.view\n  - SETTINGS (settings) → ✓ Has permission: settings.view\n\nRECOMMENDATION: Create \'App Grid\' permission category in role editor\nThese should be DEFAULT permissions for all users:\n  ☑ DASHBOARD\n  ☑ CALENDAR\n  ☑ EMPLOYEES\n  ☑ PRODUCTS\n  ☑ SALES\n  ☑ SETTINGS\n\n💡 STANDARDIZATION RECOMMENDATIONS\n--------------------------------------------------------------------------------\n\nModule naming issues:\n  ✓ No obvious case inconsistencies found\n\n  ℹ️  21 permissions have empty module (top-level items)\n\nRECOMMENDATIONS:\n  1. Standardize all module names to lowercase\n  2. Add \'app_grid\' or \'quick_access\' module for App Grid items\n  3. Consider grouping top-level items (empty module) into \'core\' or \'general\'\n  4. Ensure every menu item has at least a \'view\' permission\n  5. Update role editor to show \'App Grid\' as first category\n\n\n================================================================================\nAUDIT COMPLETE\n================================================================================\n','Script executed successfully','2025-11-25 00:15:54'),
(9,'check_orphaned_files',1,'[]',1,'All files in uploads directory are referenced in database','No orphaned files found','2025-11-26 12:06:31'),
(10,'sync_permissions_menu',1,'{\"mode\":\"dry-run\"}',1,'\n\n\n\n\n================================================================================\nPERMISSION SYNC UTILITY\nMODE: DRY RUN (no changes will be made)\n================================================================================\n\n📱 CHECKING APP GRID PERMISSIONS\n--------------------------------------------------------------------------------\n  ✓ All App Grid items have permissions\n\n📋 CHECKING MENU ITEM PERMISSIONS\n--------------------------------------------------------------------------------\n  Found 6 menu items without permissions:\n\n  + agreements.view (module: core) - View Agreements\n    URL: agreements\n\n  + ai-test.view (module: core) - View AI Testing\n    URL: ai-test\n\n  + assumptions.view (module: core) - View Daily Update\n    URL: assumptions\n\n  + companies.view (module: core) - View Companies\n    URL: companies\n\n  + documentation.view (module: core) - View Documentation\n    URL: documentation\n\n  + product-forecast.view (module: core) - View Product Configs\n    URL: product-forecast\n\n  Total to add: 6\n\n🔧 STANDARDIZING MODULE NAMES\n--------------------------------------------------------------------------------\n  ✓ No obvious standardization issues found\n\n\n================================================================================\nSYNC COMPLETE\n================================================================================\n\nThis was a dry run. Run with --live flag to apply changes.\n','Script executed successfully','2025-11-26 12:06:40'),
(11,'sync_permissions_menu',1,'{\"mode\":\"live\"}',1,'\n\n\n\n\n================================================================================\nPERMISSION SYNC UTILITY\nMODE: LIVE (changes WILL be applied to database)\n================================================================================\n\n📱 CHECKING APP GRID PERMISSIONS\n--------------------------------------------------------------------------------\n  ✓ All App Grid items have permissions\n\n📋 CHECKING MENU ITEM PERMISSIONS\n--------------------------------------------------------------------------------\n  Found 6 menu items without permissions:\n\n  + agreements.view (module: core) - View Agreements\n    URL: agreements\n\n  + ai-test.view (module: core) - View AI Testing\n    URL: ai-test\n\n  + assumptions.view (module: core) - View Daily Update\n    URL: assumptions\n\n  + companies.view (module: core) - View Companies\n    URL: companies\n\n  + documentation.view (module: core) - View Documentation\n    URL: documentation\n\n  + product-forecast.view (module: core) - View Product Configs\n    URL: product-forecast\n\n  Total to add: 6\n\n🔧 STANDARDIZING MODULE NAMES\n--------------------------------------------------------------------------------\n  ✓ No obvious standardization issues found\n\n\n================================================================================\nSYNC COMPLETE\n================================================================================\n','Script executed successfully','2025-11-26 12:07:17'),
(12,'sync_permissions_menu',1,'{\"mode\":\"live\"}',1,'\n\n\n\n\n================================================================================\nPERMISSION SYNC UTILITY\nMODE: LIVE (changes WILL be applied to database)\n================================================================================\n\n📱 CHECKING APP GRID PERMISSIONS\n--------------------------------------------------------------------------------\n  ✓ All App Grid items have permissions\n\n📋 CHECKING MENU ITEM PERMISSIONS\n--------------------------------------------------------------------------------\n  ✓ All menu items have corresponding permissions\n\n🔧 STANDARDIZING MODULE NAMES\n--------------------------------------------------------------------------------\n  ✓ No obvious standardization issues found\n\n\n================================================================================\nSYNC COMPLETE\n================================================================================\n','Script executed successfully','2025-11-26 12:07:42'),
(13,'audit_menu_permissions',1,'[]',1,'\n\n\n\n\n================================================================================\nMENU ITEMS TO PERMISSIONS AUDIT\n================================================================================\n\n📋 MENU ITEMS ANALYSIS\n--------------------------------------------------------------------------------\n\nTOP_LEVEL:\n  - Dashboard → dashboard\n  - DEPARTMENTS → (no URL)\n  - TOOLS → (no URL)\n  - QUICK LINKS → (no URL)\n  - ADMIN → (no URL)\n  - APP GRID → (no URL)\n\nDEPARTMENTS:\n  - Accounting → #\n  - CRM → #\n  - Forecaster → (no URL)\n  - HR → #\n  - Inventory → #\n  - Manufacturing → #\n  - Purchases → #\n  - Sales → #\n\nCRM:\n  - Dashboard → crm/dashboard\n  - Activities → crm/activities\n  - Contacts → crm/contacts\n  - Companies → companies\n  - Email Marketing → email-marketing\n  - Opportunities → crm/opportunities\n  - NDAs → ndas\n  - Support → #\n  - Reports → crm/reports\n\nSupport:\n  - Tickets → crm/support\n  - FAQs → crm/faqs\n\nADMIN:\n  - Announcements → announcements\n  - Settings → #\n\nSettings:\n  - Administrative → (no URL)\n  - Automation → settings/automation\n  - Company Settings → #\n  - Financial Settings → #\n  - Location Settings → #\n  - System Configuration → #\n\nCompany Settings:\n  - Company Info → settings/company\n  - Email Settings → settings/email\n  - Locations → locations\n  - Positions → hr/positions\n  - User Groups → settings/user-groups\n\nFinancial Settings:\n  - Cost Allocation → settings/cost-allocation\n  - Fiscal Year → settings/fiscal-year\n  - Payment Terms → settings/payment-terms\n  - PP&E Parameters → settings/ppe-parameters\n  - Tax Settings → settings/tax\n\nLocation Settings:\n  - Business Parameters → settings/business-parameters\n  - Facilities & Leasing → settings/facilities\n  - Payroll Settings → settings/payroll\n\nAccess & Roles:\n  - Audit Log → audit-logs\n  - Users → users\n  - Roles & Permissions → roles\n  - Specific Data Roles → data_access\n\nSystem Configuration:\n  - Action Menu Editor → settings/action-menus\n  - Dropdowns → #\n  - QuickBooks Mgmt → quickbooks\n  - Templates → #\n\nDropdowns:\n  - Operations → settings/dropdowns/operations\n  - Sales & CRM → settings/dropdowns/sales\n\nTemplates:\n  - NDA Templates → settings/nda-templates\n  - Terms & Conditions → settings/terms-conditions\n\nAccounting:\n  - Dashboard → accounting\n  - Assets/Compliance → #\n  - Banking/Cash → #\n  - Core Accounting → #\n  - Multi-Currency → accounting/currency\n  - Operations → #\n  - Payments → (no URL)\n  - Recurring Transactions → /recurring\n  - Tax Management → #\n  - Reports → #\n\nCore Accounting:\n  - Chart of Accounts → accounting/accounts\n  - Journal Entries → accounting/journal\n  - General Ledger → accounting/ledger\n\nBanking/Cash:\n  - Bank Accounts → accounting/bank-accounts\n  - Bank Reconciliation → accounting/reconciliation\n\nOperations:\n  - Expenses → accounting/expenses\n  - Budgets → accounting/budgets\n\nAssets/Compliance:\n  - Fixed Assets → accounting/assets\n  - Depreciation → accounting/depreciation\n  - Period Closing → accounting/period\n\nReports:\n  - All Report Package → accounting/reports/package\n  - Balance Sheet → accounting/reports/balance-sheet\n  - Income Statement → accounting/reports/income-statement\n  - Cash Flow Statement → accounting/reports/cash-flow-statement\n  - Trial Balance → accounting/reports/trial-balance\n  - Aging Reports → accounting/reports/aging\n  - A/P Aging Detail → accounting/reports/ap-aging-detail\n  - A/R Aging Detail → accounting/reports/ar-aging-detail\n  - Payment Terms List → accounting/reports/payment-terms-list\n  - Production Reports → manufacturing/reports/production\n  - OEE Reports → manufacturing/reports/oee\n  - Report Builder → reports/custom/builder\n  - My Reports → reports/custom/my\n  - Shared Reports → reports/custom/shared\n  - Scheduled Reports → reports/custom/scheduled\n\nHR:\n  - Dashboard → hr/dashboard\n  - Employees → employees\n  - Recruitment → #\n  - Development → #\n  - Relations → #\n  - Attendance → hr/attendance\n  - Time Off → hr/timeoff\n  - Timesheets → hr/timesheets\n\nRecruitment:\n  - Dashboard → hr/recruitment/dashboard\n  - Job Positions → hr/recruitment/positions\n  - Applications → hr/recruitment/applications\n  - Interviews → hr/recruitment/interviews\n  - Assessments → hr/recruitment/assessments\n  - Offers → hr/recruitment/offers\n\nDevelopment:\n  - Contracts → hr/development/contracts\n  - Training → hr/development/training\n  - Performance Reviews → hr/development/reviews\n\nRelations:\n  - Issues & Challenges → hr/relations/issues\n  - Separations → hr/relations/separations\n\nInventory:\n  - Dashboard → inventory/dashboard\n  - Product Management → #\n  - Stock Levels → /inventory/stock-levels\n  - Lot/Serial Numbers → inventory/lots\n  - Visual Audits → /camera-audit\n\nProduct Management:\n  - Products → products\n  - Categories → inventory/categories\n\nManufacturing:\n  - Dashboard → manufacturing\n  - Capacity Planning → #\n  - Planning & Materials → #\n  - Production → #\n  - Resources → #\n  - Quality Control → #\n  - Maintenance → #\n  - Costing → #\n  - Reports → #\n\nCapacity Planning:\n  - Dashboard → manufacturing/capacity\n  - Real-time Status → manufacturing/capacity/machineStatus\n  - Analytics → manufacturing/capacity/analytics\n  - Availability → manufacturing/capacity/availability\n  - Feasibility → manufacturing/capacity/feasibility\n\nPlanning & Materials:\n  - Bill of Materials → manufacturing/boms\n  - MRP → manufacturing/mrp\n  - Production Scheduling → manufacturing/scheduling\n\nProduction:\n  - Work Orders → manufacturing/workorders\n  - Shop Floor Control → manufacturing/shopfloor\n\nResources:\n  - Business Lines → manufacturing/business-lines\n  - Equipment Lines → manufacturing/equipment-lines\n  - Equipment Units → manufacturing/equipment\n\nQuality Control:\n  - Dashboard → manufacturing/quality\n  - Inspections → manufacturing/quality/inspections\n  - NCR → manufacturing/quality/ncr\n  - Metrics → manufacturing/quality/metrics\n  - Templates → manufacturing/quality/templates\n\nMaintenance:\n  - Maintenance Schedules → manufacturing/maintenance/schedules\n  - Maintenance Work Orders → manufacturing/maintenance/work-orders\n  - Downtime Tracking → manufacturing/maintenance/downtime\n\nCosting:\n  - Production Costing → manufacturing/costing/production\n  - Job Costing → manufacturing/costing/jobs\n\nSales:\n  - Dashboard → sales/dashboard\n  - Sales Documents → #\n  - Fulfillment → #\n  - Configuration → #\n  - Reports → sales/reports\n\nSales Documents:\n  - Quotes → quotes\n  - Agreements → agreements\n  - Orders → sales/orders\n  - Invoices → invoices\n  - Credit Notes → creditnotes\n\nFulfillment:\n  - Shipments → shipments\n  - Delivery Notes → sales/delivery_notes\n  - Returns (RMA) → sales/returns\n\nConfiguration:\n  - Pricing Rules → sales/pricing_rules\n  - Discounts & Promotions → sales/promotions\n\nPurchases:\n  - Dashboard → purchases/dashboard\n  - Suppliers → suppliers\n  - Procurement Process → #\n  - Payments & Documents → #\n  - Supplier Contracts → purchases/contracts\n  - Reports → purchases/reports\n\nSuppliers:\n  - Suppliers → suppliers\n  - 1099 Contractors → /suppliers?filter=1099\n\nProcurement Process:\n  - Purchase Requisitions → purchases/requisitions\n  - RFQs (Quotes) → purchases/rfqs\n  - Purchase Orders → purchases/orders\n  - Goods Receipt → purchases/receiving\n\nPayments & Documents:\n  - Bills/Invoices → purchases/bills\n  - Payments Made (Legacy) → purchases/payments\n  - Purchase Returns → purchases/returns\n  - Debit Notes → purchases/debit-notes\n\nTime Off:\n  - My Time Off → hr/timeoff/my\n  - All Requests → hr/timeoff/all\n  - Approve Requests → hr/timeoff/approve\n  - Time Off Types → hr/timeoff/types\n  - Accrual Rules → hr/timeoff/accruals\n\nTimesheets:\n  - My Timesheet → hr/timesheets/my\n  - All Timesheets → hr/timesheets/all\n  - Approve Timesheets → hr/timesheets/approve\n  - Timesheet Reports → hr/timesheets/reports\n\nLot/Serial Numbers:\n  - All Lots/Serials → inventory/lots/all\n  - Traceability → inventory/lots/traceability\n  - Expiration Dates → inventory/lots/expiration\n\nMulti-Currency:\n  - Currencies → accounting/currency/list\n  - Exchange Rates → accounting/currency/rates\n  - Currency Gains/Losses → accounting/currency/revaluation\n\nAutomation:\n  - AI Testing → ai-test\n  - Approval Rules → settings/automation/approvals\n  - Templates → automation/email-templates\n  - Scheduled Actions → settings/automation/scheduled\n  - Workflows → settings/automation/workflows\n\nProjects:\n  - Dashboard → projects/dashboard\n  - My Projects → projects/?my_projects=1\n  - My Tasks → projects/my-tasks\n  - Gantt Chart → projects/gantt\n  - Time Tracking → projects/time\n  - Resource Planning → projects/resources\n  - Project Profitability → projects/profitability\n\nFiles:\n  - All Files → /files\n  - My Files → /files?context=user\n  - Shared With Me → files/shared\n  - Accounting Files → /files?context=accounting\n  - Company Files → /files?context=company\n  - HR Documents → /files?context=hr\n  - Inventory Documents → /files?context=inventory\n  - Manufacturing Documents → /files?context=manufacturing\n  - Project Files → /files?context=project\n  - Purchases Documents → /files?context=purchases\n  - Sales Documents → /files?context=sales\n\nEmail Marketing:\n  - Dashboard → email-marketing/dashboard\n  - Campaigns → email-marketing/campaigns\n  - Email Templates → email-marketing/templates\n  - Mailing Lists → email-marketing/lists\n  - Automation → email-marketing/automation\n  - Analytics → email-marketing/analytics\n\nHelpdesk:\n  - Dashboard → helpdesk/dashboard\n  - Documentation → documentation\n  - Tickets → helpdesk/tickets\n  - My Tickets → helpdesk/my-tickets\n  - SLA Management → helpdesk/sla\n  - Knowledge Base → helpdesk/kb\n  - Live Chat → helpdesk/chat\n  - Reports → helpdesk/reports\n\nAPP GRID:\n  - DASHBOARD → dashboard\n  - CALENDAR → calendar\n  - EMPLOYEES → employees/directory\n  - PRODUCTS → products\n  - SALES → salesorders\n  - SETTINGS → settings\n\nTOOLS:\n  - Files → /files\n  - Helpdesk → helpdesk\n  - Projects → projects\n  - Reports → reports/custom\n\nTax Management:\n  - Tax Jurisdictions → /tax/jurisdictions\n  - Tax Payments → /tax/payments\n  - Tax Reports → /tax/reports/liability\n\nPayments:\n  - Customer Payments → /accounting/customer-payments\n  - Vendor Payments → /accounting/vendor-payments\n\nAdministrative:\n  - Access & Roles → #\n  - Document Mgmt → #\n  - Menu Mgmt → menus\n  - PHPmyadmin → /phpmyadmin\n  - System Backup → backup\n  - System Scripts → admin/system-scripts\n\nDocument Mgmt:\n  - Dashboard → nextcloud/admin/dashboard\n  - Activity Log → nextcloud/admin/activity\n  - Storage Report → nextcloud/admin/storage\n  - User Activity → nextcloud/admin/users\n  - Settings → nextcloud/settings\n\nForecaster:\n  - Getting Started → /product-forecast/getting-started\n  - Command Center → /product-forecast/command-center\n  - Daily Update → assumptions\n  - Assumption Sets → assumptions/sets\n  - Product Configs → product-forecast\n  - Generate Projections → product-forecast/generate\n  - Pro Forma Stmts → product-forecast/proforma\n  - Variance Tracking → /product-forecast/variance\n  - Sensitivity Analysis → product-forecast/sensitivity\n  - Compare Scenarios → product-forecast/compare\n  - Variance Report → assumptions/variance\n  - Advanced Tools → (no URL)\n  - Scenario Modeler → forecaster\n\nTotal menu items: 273\n\n🔐 PERMISSIONS ANALYSIS\n--------------------------------------------------------------------------------\n  (empty/top-level)               27 permissions\n  1099                             7 permissions\n  1099_contractors                 3 permissions\n  accounting                      48 permissions\n  admin                            4 permissions\n  audit                            2 permissions\n  automation                       1 permissions\n  bank_import                      8 permissions\n  credit_notes                     4 permissions\n  crm                             34 permissions\n  documents                        3 permissions\n  Forecasting                      7 permissions\n  helpdesk                         5 permissions\n  hr                              46 permissions\n  inventory                       31 permissions\n  manufacturing                   26 permissions\n  marketing                        8 permissions\n  nextcloud                        4 permissions\n  permissions                      1 permissions\n  procurement                      5 permissions\n  projects                         3 permissions\n  purchases                       24 permissions\n  recurring                        6 permissions\n  reports                          2 permissions\n  roles                            4 permissions\n  sales                           41 permissions\n  security                         5 permissions\n  settings                         2 permissions\n  statements                       4 permissions\n  system                           5 permissions\n  tax                             11 permissions\n  users                            4 permissions\n\nTotal permissions: 385\n\n⚠️  MISSING PERMISSIONS (Menu items without corresponding permissions)\n--------------------------------------------------------------------------------\n  Found 1 menu items without clear permission mappings:\n\n    - #\n\n🗑️  ORPHANED PERMISSIONS (Permissions without menu items)\n--------------------------------------------------------------------------------\n  Found 75 permissions without clear menu mappings:\n\n    - 1099_contractors.manage (1099): Manage 1099 contractor designations\n    - 1099_contractors.view (1099): View 1099 contractors\n    - 1099_filings.file (1099): File 1099 forms\n    - 1099_filings.prepare (1099): Prepare 1099 forms\n    - 1099_payments.manage (1099): Manage 1099 payment classifications\n    - 1099_payments.view (1099): View 1099 reportable payments\n    - 1099_reports.view (1099): View 1099 reports\n    - 1099_contractors.export (1099_contractors): Export 1099 Contractors\n    - 1099_contractors.generate_reports (1099_contractors): Generate Reports 1099 Contractors\n    - 1099_contractors.view_payments (1099_contractors): View Payments 1099 Contractors\n    - audit_trail.export (audit): Export audit trail\n    - audit_trail.view (audit): View audit trail\n    - bank_import.categorize (bank_import): Categorize imported transactions\n    - bank_import.create (bank_import): Import bank transactions\n    - bank_import.delete (bank_import): Delete Bank Import\n    - bank_import.edit (bank_import): Edit Bank Import\n    - bank_import.import (bank_import): Import Bank Import\n    - bank_import.manage_rules (bank_import): Manage Rules Bank Import\n    - bank_import.rules (bank_import): Manage categorization rules\n    - bank_import.view (bank_import): View bank imports\n    ... and 55 more\n\n📱 APP GRID ANALYSIS\n--------------------------------------------------------------------------------\nApp Grid items:\n  - DASHBOARD (dashboard) → ✓ Has permission: dashboard.view\n  - CALENDAR (calendar) → ✓ Has permission: calendar.view\n  - EMPLOYEES (employees/directory) → ✓ Has permission: employees.view\n  - PRODUCTS (products) → ✓ Has permission: products.view\n  - SALES (salesorders) → ✓ Has permission: salesorders.view\n  - SETTINGS (settings) → ✓ Has permission: settings.view\n\nRECOMMENDATION: Create \'App Grid\' permission category in role editor\nThese should be DEFAULT permissions for all users:\n  ☑ DASHBOARD\n  ☑ CALENDAR\n  ☑ EMPLOYEES\n  ☑ PRODUCTS\n  ☑ SALES\n  ☑ SETTINGS\n\n💡 STANDARDIZATION RECOMMENDATIONS\n--------------------------------------------------------------------------------\n\nModule naming issues:\n  ✓ No obvious case inconsistencies found\n\n  ℹ️  27 permissions have empty module (top-level items)\n\nRECOMMENDATIONS:\n  1. Standardize all module names to lowercase\n  2. Add \'app_grid\' or \'quick_access\' module for App Grid items\n  3. Consider grouping top-level items (empty module) into \'core\' or \'general\'\n  4. Ensure every menu item has at least a \'view\' permission\n  5. Update role editor to show \'App Grid\' as first category\n\n\n================================================================================\nAUDIT COMPLETE\n================================================================================\n','Script executed successfully','2025-11-26 12:08:07'),
(14,'check_documentation_coverage',1,'[]',1,'\n\n\n\n=== Documentation Coverage Report ===\nCoverage: 99.3%\nTotal Controllers: 143\nDocumented: 142\nUndocumented: 1\n\nUndocumented Controllers:\n  - RFQ (RFQController.php)\n\n✓ Results saved to database','Script executed successfully','2025-11-26 12:10:09'),
(15,'scan_permissions',1,'{\"mode\":\"dry-run\"}',1,'\n\n\n\n\n================================================================================\nPERMISSION SCANNER & SYNC UTILITY\nMODE: DRY RUN (no changes will be made)\n================================================================================\n\n📚 LOADING DATABASE PERMISSIONS\n--------------------------------------------------------------------------------\n  Loaded 385 permissions from database\n\n🔍 SCANNING CONTROLLERS\n--------------------------------------------------------------------------------\n  Scanned 147 controller files\n  Found 132 files with permission checks\n  Discovered 148 unique permissions\n\n📋 DISCOVERED PERMISSIONS REPORT\n--------------------------------------------------------------------------------\n  Permission                               Checks   Controllers\n--------------------------------------------------------------------------------\n\n  (CORE):\n  admin                                    101      ActionMenuEditorController,... ✓\n\n  1099_CONTRACTORS:\n  1099_contractors.export                  1        Form1099Controller ✓\n  1099_contractors.generate_reports        1        Form1099Controller ✓\n  1099_contractors.view                    1        Form1099Controller ✓\n  1099_contractors.view_payments           1        Form1099Controller ✓\n\n  ACCOUNTING:\n  accounting.approve                       3        ExpenseController ✓\n  accounting.create                        30       AccountController, BankAcco... ✓\n  accounting.customer_payments.create      2        CustomerPaymentController ✓\n  accounting.customer_payments.view        2        CustomerPaymentController ✓\n  accounting.delete                        21       BankAccountController, Budg... ✓\n  accounting.edit                          25       BankAccountController, Bank... ✓\n  accounting.vendor_payments.create        4        VendorPaymentController ✓\n  accounting.vendor_payments.delete        1        VendorPaymentController ✓\n  accounting.vendor_payments.edit          2        VendorPaymentController ✓\n  accounting.vendor_payments.print_checks  1        VendorPaymentController ✓\n  accounting.vendor_payments.view          3        VendorPaymentController ✓\n  accounting.vendor_payments.void          1        VendorPaymentController ✓\n  accounting.view                          36       AccountController, Accounti... ✓\n\n  ADMIN:\n  admin.agreement_templates                9        AgreementTemplateController ✓\n  admin.create                             7        PipedriveImportController, ... ✗\n  admin.delete                             2        QuickBooksController, UserG... ✗\n  admin.edit                               5        QuickBooksController, UserG... ✗\n  admin.settings                           1        PipedriveImportController ✓\n  admin.system_scripts                     3        SystemScriptsController ✓\n\n  AUDIT_LOGS:\n  audit_logs.view                          1        AuditLogController ✓\n\n  BANK_IMPORT:\n  bank_import.create                       2        BankImportController ✓\n  bank_import.delete                       1        BankImportController ✓\n  bank_import.edit                         2        BankImportController ✓\n  bank_import.import                       1        BankImportController ✓\n  bank_import.manage_rules                 4        BankImportController ✓\n  bank_import.view                         2        BankImportController ✓\n\n  CALENDAR:\n  calendar.create                          1        CalendarController ✗\n  calendar.delete                          1        CalendarController ✗\n  calendar.edit                            1        CalendarController ✗\n\n  CAMERA_AUDIT:\n  camera_audit.capture                     1        CameraAuditController ✓\n  camera_audit.delete                      1        CameraAuditController ✓\n  camera_audit.stations                    3        CameraAuditController ✓\n  camera_audit.verify                      1        CameraAuditController ✓\n  camera_audit.view                        3        CameraAuditController ✓\n\n  CRM:\n  crm.create                               11       ActivityController, ClientC... ✓\n  crm.delete                               13       ActivityController, ClientC... ✓\n  crm.edit                                 13       ActivityController, ClientC... ✓\n  crm.view                                 55       ActivityController, CRMCont... ✓\n\n  DASHBOARD:\n  dashboard.edit                           2        DashboardController ✗\n\n  DOCUMENTS:\n  documents.create                         1        DocumentsController ✗\n  documents.delete                         1        DocumentsController ✓\n\n  FORECASTING:\n  forecasting.create                       10       FinancialPlannerController,... ✓\n  forecasting.delete                       8        ForecasterController ✓\n  forecasting.edit                         16       FinancialPlannerController,... ✓\n  forecasting.generate_projections         1        ProductForecastController ✓\n  forecasting.manage_assumptions           5        AssumptionsController ✓\n  forecasting.manage_products              3        ProductForecastController ✓\n  forecasting.update_daily                 3        AssumptionsController ✓\n  forecasting.view                         9        FinancialPlannerController,... ✓\n  forecasting.view_actuals                 1        AssumptionsController ✓\n  forecasting.view_proforma                7        FinancialProFormaController... ✓\n\n  HR:\n  hr.create                                28       ApplicationController, Asse... ✓\n  hr.delete                                16       ApplicationController, Asse... ✓\n  hr.edit                                  25       ApplicationController, Asse... ✓\n  hr.view                                  30       ApplicationController, Asse... ✓\n\n  INVENTORY:\n  inventory.create                         9        CategoryController, Locatio... ✓\n  inventory.delete                         10       CategoryController, Locatio... ✓\n  inventory.edit                           7        CategoryController, Locatio... ✓\n  inventory.manage                         12       CategoryController, StockMo... ✓\n  inventory.view                           20       CategoryController, Invento... ✓\n\n  MANUFACTURING:\n  manufacturing.approve                    2        MRPController ✓\n  manufacturing.create                     13       BOMController, BusinessLine... ✓\n  manufacturing.delete                     6        BusinessLineController, Equ... ✓\n  manufacturing.edit                       44       BOMController, BusinessLine... ✓\n  manufacturing.view                       53       AnalyticsController, BOMCon... ✓\n\n  MESSAGING:\n  messaging.create                         1        MessagingController ✗\n  messaging.delete                         1        MessagingController ✗\n  messaging.edit                           2        MessagingController ✗\n\n  NDAS:\n  ndas.countersign                         2        NDAController ✓\n  ndas.create                              2        NDAController ✓\n  ndas.delete                              1        NDAController ✓\n  ndas.edit                                2        NDAController ✓\n  ndas.send                                2        NDAController ✓\n  ndas.view                                5        NDAController ✓\n\n  NETWORK_MONITOR:\n  network_monitor.manage                   3        NetworkMonitorController ✓\n  network_monitor.view                     1        NetworkMonitorController ✓\n\n  NEXTCLOUD:\n  nextcloud.delete                         1        NextcloudController ✓\n  nextcloud.manage                         7        NextcloudAdminController, N... ✓\n  nextcloud.upload                         6        NextcloudController ✓\n  nextcloud.view                           7        NextcloudController ✓\n\n  PAYROLL:\n  payroll.view                             1        PayrollController ✓\n\n  PERMISSIONS:\n  permissions.manage                       10       PermissionGroupController ✓\n\n  PROCUREMENT:\n  procurement.approve                      2        PurchaseRequisitionController ✓\n  procurement.create                       16       DebitNoteController, GoodsR... ✓\n  procurement.delete                       12       DebitNoteController, GoodsR... ✓\n  procurement.edit                         12       DebitNoteController, Purcha... ✓\n  procurement.view                         18       DebitNoteController, GoodsR... ✓\n\n  PRODUCT_FORECAST:\n  product_forecast.view                    2        ProductForecastController ✓\n\n  PROFILE:\n  profile.edit                             2        ProfileController ✗\n\n  PROJECTS:\n  projects.create                          3        ProjectsController ✓\n  projects.delete                          5        ProjectsController ✓\n  projects.edit                            9        ProjectsController ✓\n  projects.view                            5        ProjectsController ✓\n\n  PURCHASES:\n  purchases.create                         3        SupplierController ✓\n  purchases.delete                         3        SupplierController ✓\n  purchases.edit                           2        SupplierController ✓\n  purchases.view                           3        PurchasesController, Suppli... ✓\n\n  PURCHASING:\n  purchasing.create                        1        MRPController ✓\n\n  RECURRING_TEMPLATES:\n  recurring_templates.activate             1        RecurringTransactionController ✓\n  recurring_templates.create               2        RecurringTransactionController ✓\n  recurring_templates.delete               1        RecurringTransactionController ✓\n  recurring_templates.edit                 2        RecurringTransactionController ✓\n  recurring_templates.execute              2        RecurringTransactionController ✓\n  recurring_templates.view                 3        RecurringTransactionController ✓\n\n  REPORTS:\n  reports.create                           2        CustomReportsController ✗\n  reports.delete                           1        CustomReportsController ✗\n  reports.edit                             2        CustomReportsController ✗\n  reports.view                             7        ReportsController ✓\n\n  ROLES:\n  roles.create                             2        RoleController ✓\n  roles.delete                             1        RoleController ✓\n  roles.edit                               2        RoleController ✓\n  roles.view                               4        RoleController ✓\n\n  SALES:\n  sales.agreements.create                  3        AgreementController ✓\n  sales.agreements.delete                  3        AgreementController ✓\n  sales.agreements.edit                    3        AgreementController ✓\n  sales.agreements.send                    2        AgreementController ✓\n  sales.agreements.view                    5        AgreementController ✓\n  sales.approve                            2        ReturnController ✗\n  sales.create                             28       BatteryQuoteController, Cre... ✓\n  sales.delete                             23       BatteryQuoteController, Cre... ✓\n  sales.edit                               20       BatteryQuoteController, Inv... ✓\n  sales.view                               34       BatteryQuoteController, Cre... ✓\n\n  SETTINGS:\n  settings.edit                            23       MenuController, TermsCondit... ✓\n  settings.view                            4        MenuController, TermsCondit... ✓\n\n  SYSTEM:\n  system.backup                            1        BackupController ✓\n  system.edit                              1        ProfileController ✗\n  system.files.delete                      3        FileManagerController ✗\n\n  TAX_JURISDICTIONS:\n  tax_jurisdictions.create                 2        TaxJurisdictionController ✓\n  tax_jurisdictions.delete                 1        TaxJurisdictionController ✓\n  tax_jurisdictions.edit                   3        TaxJurisdictionController ✓\n  tax_jurisdictions.view                   2        TaxJurisdictionController ✓\n\n  TAX_PAYMENTS:\n  tax_payments.create                      2        TaxPaymentController ✓\n  tax_payments.edit                        4        TaxPaymentController ✓\n  tax_payments.file                        1        TaxPaymentController ✓\n  tax_payments.view                        2        TaxPaymentController ✓\n\n  TAX_REPORTS:\n  tax_reports.view                         1        TaxPaymentController ✓\n\n  TICKETS:\n  tickets.create                           4        HelpDeskController, Support... ✓\n  tickets.delete                           2        SupportController ✗\n  tickets.edit                             2        HelpDeskController, Support... ✓\n\n  USERS:\n  users.create                             2        UserController ✓\n  users.delete                             3        UserController ✓\n  users.edit                               2        UserController ✓\n  users.view                               3        UserController ✓\n\n➕ CREATING MISSING PERMISSIONS\n--------------------------------------------------------------------------------\n  Found 19 missing permissions:\n\n  + calendar.create (calendar) - \"Create Calendar\"\n    Used in: CalendarController\n\n  + calendar.edit (calendar) - \"Edit Calendar\"\n    Used in: CalendarController\n\n  + calendar.delete (calendar) - \"Delete Calendar\"\n    Used in: CalendarController\n\n  + reports.create (reports) - \"Create Reports\"\n    Used in: CustomReportsController\n\n  + reports.edit (reports) - \"Edit Reports\"\n    Used in: CustomReportsController\n\n  + reports.delete (reports) - \"Delete Reports\"\n    Used in: CustomReportsController\n\n  + dashboard.edit (dashboard) - \"Edit Dashboard\"\n    Used in: DashboardController\n\n  + documents.create (documents) - \"Create Documents\"\n    Used in: DocumentsController\n\n  + system.files.delete (system) - \"System Files Delete\"\n    Used in: FileManagerController\n\n  + messaging.create (messaging) - \"Create Messaging\"\n    Used in: MessagingController\n\n  + messaging.edit (messaging) - \"Edit Messaging\"\n    Used in: MessagingController\n\n  + messaging.delete (messaging) - \"Delete Messaging\"\n    Used in: MessagingController\n\n  + admin.create (admin) - \"Create Admin\"\n    Used in: PipedriveImportController, UserGroupController\n\n  + profile.edit (profile) - \"Edit Profile\"\n    Used in: ProfileController\n\n  + system.edit (system) - \"Edit System\"\n    Used in: ProfileController\n\n  + admin.edit (admin) - \"Edit Admin\"\n    Used in: QuickBooksController, UserGroupController\n\n  + admin.delete (admin) - \"Delete Admin\"\n    Used in: QuickBooksController, UserGroupController\n\n  + sales.approve (sales) - \"Approve Sales\"\n    Used in: ReturnController\n\n  + tickets.delete (tickets) - \"Delete Tickets\"\n    Used in: SupportController\n\n🗑️  UNUSED PERMISSIONS\n--------------------------------------------------------------------------------\n  Found 256 permissions in database not used in controllers:\n\n  (CORE):\n    - agreements.view - \"View Agreements\"\n    - ai-test.view - \"View AI Testing\"\n    - analytics.view - \"View analytics\"\n    - announcements.view - \"View Announcements\"\n    - assumptions.view - \"View Daily Update\"\n    - audit-logs.view - \"View Audit Log\"\n    - backup.view - \"View System Backup\"\n    - calendar.view - \"View calendar\"\n    - companies.view - \"View Companies\"\n    - creditnotes.view - \"View Credit Notes\"\n    ... and 16 more\n\n  1099:\n    - 1099_contractors.manage - \"Manage 1099 contractor designations\"\n    - 1099_filings.file - \"File 1099 forms\"\n    - 1099_filings.prepare - \"Prepare 1099 forms\"\n    - 1099_payments.manage - \"Manage 1099 payment classifications\"\n    - 1099_payments.view - \"View 1099 reportable payments\"\n    - 1099_reports.view - \"View 1099 reports\"\n\n  ACCOUNTING:\n    - accounting.customer_payments.delete - \"Delete customer payments\"\n    - accounting.customer_payments.edit - \"Edit customer payments\"\n    - accounting.post - \"Post journal entries\"\n    - accounts.create - \"Create accounts\"\n    - accounts.delete - \"Delete accounts\"\n    - accounts.edit - \"Edit accounts\"\n    - accounts.view - \"View chart of accounts\"\n    - bank_accounts.create - \"Create bank accounts\"\n    - bank_accounts.edit - \"Edit bank accounts\"\n    - bank_accounts.view - \"View bank accounts\"\n    ... and 21 more\n\n  AUDIT:\n    - audit_trail.export - \"Export audit trail\"\n    - audit_trail.view - \"View audit trail\"\n\n  AUTOMATION:\n    - automation.view - \"View Templates\"\n\n  BANK_IMPORT:\n    - bank_import.categorize - \"Categorize imported transactions\"\n    - bank_import.rules - \"Manage categorization rules\"\n\n  CREDIT_NOTES:\n    - credit_notes.apply - \"Apply Credit Notes to Invoices\"\n    - credit_notes.auto_apply - \"Auto-apply Credit Notes\"\n    - credit_notes.reverse - \"Reverse Credit Note Applications\"\n    - credit_notes.view_balances - \"View Customer Credit Balances\"\n\n  CRM:\n    - activities.create - \"Create CRM activities\"\n    - activities.edit - \"Edit CRM activities\"\n    - activities.view - \"View CRM activities\"\n    - clients.create - \"Create clients\"\n    - clients.delete - \"Delete clients\"\n    - clients.edit - \"Edit clients\"\n    - clients.view - \"View clients\"\n    - contacts.create - \"Create contacts\"\n    - contacts.delete - \"Delete contacts\"\n    - contacts.edit - \"Edit contacts\"\n    ... and 14 more\n\n  DOCUMENTS:\n    - documents.edit - \"Edit documents\"\n    - documents.upload - \"Upload documents\"\n\n  HELPDESK:\n    - tickets.assign - \"Assign support tickets\"\n    - tickets.close - \"Close support tickets\"\n    - tickets.view - \"View support tickets\"\n\n  HR:\n    - applications.create - \"Create job applications\"\n    - applications.edit - \"Edit job applications\"\n    - applications.view - \"View job applications\"\n    - assessments.create - \"Create assessments\"\n    - assessments.view - \"View assessments\"\n    - attendance.create - \"Record attendance\"\n    - attendance.view - \"View attendance\"\n    - contracts.create - \"Create employee contracts\"\n    - contracts.edit - \"Edit employee contracts\"\n    - contracts.view - \"View employee contracts\"\n    ... and 31 more\n\n  INVENTORY:\n    - camera_audit.annotate - \"Add annotations to audit images\"\n    - camera_audit.export - \"Export camera audit data\"\n    - categories.create - \"Create product categories\"\n    - categories.delete - \"Delete product categories\"\n    - categories.edit - \"Edit product categories\"\n    - categories.view - \"View product categories\"\n    - inventory.adjust - \"Adjust inventory levels\"\n    - lots.create - \"Create lot/serial numbers\"\n    - lots.edit - \"Edit lot/serial numbers\"\n    - lots.view - \"View lot/serial numbers\"\n    ... and 11 more\n\n  MANUFACTURING:\n    - boms.create - \"Create bills of materials\"\n    - boms.delete - \"Delete bills of materials\"\n    - boms.edit - \"Edit bills of materials\"\n    - boms.view - \"View bills of materials\"\n    - capacity.edit - \"Edit capacity planning\"\n    - capacity.view - \"View capacity planning\"\n    - equipment.create - \"Create equipment\"\n    - equipment.edit - \"Edit equipment\"\n    - equipment.maintenance - \"Perform equipment maintenance\"\n    - equipment.view - \"View equipment\"\n    ... and 11 more\n\n  MARKETING:\n    - campaigns.create - \"Create email campaigns\"\n    - campaigns.edit - \"Edit email campaigns\"\n    - campaigns.send - \"Send email campaigns\"\n    - campaigns.view - \"View email campaigns\"\n    - lists.create - \"Create mailing lists\"\n    - lists.view - \"View mailing lists\"\n    - templates.create - \"Create email templates\"\n    - templates.view - \"View email templates\"\n\n  PURCHASES:\n    - bills.approve - \"Approve supplier bills\"\n    - bills.create - \"Create supplier bills\"\n    - bills.view - \"View supplier bills\"\n    - goods_receipts.create - \"Create goods receipts\"\n    - goods_receipts.view - \"View goods receipts\"\n    - purchase_orders.approve - \"Approve purchase orders\"\n    - purchase_orders.create - \"Create purchase orders\"\n    - purchase_orders.delete - \"Delete purchase orders\"\n    - purchase_orders.edit - \"Edit purchase orders\"\n    - purchase_orders.view - \"View purchase orders\"\n    ... and 9 more\n\n  REPORTS:\n    - reports.export - \"Export reports\"\n\n  SALES:\n    - delivery_notes.create - \"Create delivery notes\"\n    - delivery_notes.view - \"View delivery notes\"\n    - invoices.create - \"Create invoices\"\n    - invoices.delete - \"Delete invoices\"\n    - invoices.edit - \"Edit invoices\"\n    - invoices.view - \"View invoices\"\n    - orders.approve - \"Approve sales orders\"\n    - orders.create - \"Create sales orders\"\n    - orders.delete - \"Delete sales orders\"\n    - orders.edit - \"Edit sales orders\"\n    ... and 22 more\n\n  SECURITY:\n    - mfa.admin_override - \"Admin: Override MFA for any user\"\n    - mfa.manage_own - \"Manage own MFA settings\"\n    - security.view_audit - \"View security audit logs\"\n\n  STATEMENTS:\n    - statements.bulk_generate - \"Generate Bulk Statements\"\n    - statements.email - \"Email Statements to Customers\"\n    - statements.generate - \"Generate Customer Statements\"\n    - statements.view_history - \"View Statement History\"\n\n  SYSTEM:\n    - files.delete - \"Delete files and folders\"\n    - files.manage - \"Manage all files and folders\"\n    - files.upload - \"Upload files\"\n\n  TAX:\n    - tax_exemptions.manage - \"Manage tax exemptions\"\n    - tax_exemptions.view - \"View tax exemptions\"\n\n  ⚠️  NOTE: These may be used in views or future features.\n  Review carefully before deleting.\n\n📊 COVERAGE STATISTICS\n--------------------------------------------------------------------------------\n  Permissions in database:        385\n  Permissions in controllers:     148\n  Matching (in both):             129\n  Missing from database:          19\n  Unused in controllers:          256\n  Coverage:                       87.2%\n\n  PERMISSIONS BY MODULE:\n    accounting                      13 permissions\n    sales                           10 permissions\n    forecasting                     10 permissions\n    admin                            6 permissions\n    bank_import                      6 permissions\n    ndas                             6 permissions\n    recurring_templates              6 permissions\n    manufacturing                    5 permissions\n    camera_audit                     5 permissions\n    inventory                        5 permissions\n\n\n================================================================================\nSCAN COMPLETE\n================================================================================\n\nThis was a dry run. Run with --live flag to apply changes.\n','Script executed successfully','2025-11-28 12:33:48'),
(16,'scan_permissions',1,'{\"mode\":\"live\"}',1,'\n\n\n\n\n================================================================================\nPERMISSION SCANNER & SYNC UTILITY\nMODE: LIVE (changes WILL be applied to database)\n================================================================================\n\n📚 LOADING DATABASE PERMISSIONS\n--------------------------------------------------------------------------------\n  Loaded 385 permissions from database\n\n🔍 SCANNING CONTROLLERS\n--------------------------------------------------------------------------------\n  Scanned 147 controller files\n  Found 132 files with permission checks\n  Discovered 148 unique permissions\n\n📋 DISCOVERED PERMISSIONS REPORT\n--------------------------------------------------------------------------------\n  Permission                               Checks   Controllers\n--------------------------------------------------------------------------------\n\n  (CORE):\n  admin                                    101      ActionMenuEditorController,... ✓\n\n  1099_CONTRACTORS:\n  1099_contractors.export                  1        Form1099Controller ✓\n  1099_contractors.generate_reports        1        Form1099Controller ✓\n  1099_contractors.view                    1        Form1099Controller ✓\n  1099_contractors.view_payments           1        Form1099Controller ✓\n\n  ACCOUNTING:\n  accounting.approve                       3        ExpenseController ✓\n  accounting.create                        30       AccountController, BankAcco... ✓\n  accounting.customer_payments.create      2        CustomerPaymentController ✓\n  accounting.customer_payments.view        2        CustomerPaymentController ✓\n  accounting.delete                        21       BankAccountController, Budg... ✓\n  accounting.edit                          25       BankAccountController, Bank... ✓\n  accounting.vendor_payments.create        4        VendorPaymentController ✓\n  accounting.vendor_payments.delete        1        VendorPaymentController ✓\n  accounting.vendor_payments.edit          2        VendorPaymentController ✓\n  accounting.vendor_payments.print_checks  1        VendorPaymentController ✓\n  accounting.vendor_payments.view          3        VendorPaymentController ✓\n  accounting.vendor_payments.void          1        VendorPaymentController ✓\n  accounting.view                          36       AccountController, Accounti... ✓\n\n  ADMIN:\n  admin.agreement_templates                9        AgreementTemplateController ✓\n  admin.create                             7        PipedriveImportController, ... ✗\n  admin.delete                             2        QuickBooksController, UserG... ✗\n  admin.edit                               5        QuickBooksController, UserG... ✗\n  admin.settings                           1        PipedriveImportController ✓\n  admin.system_scripts                     3        SystemScriptsController ✓\n\n  AUDIT_LOGS:\n  audit_logs.view                          1        AuditLogController ✓\n\n  BANK_IMPORT:\n  bank_import.create                       2        BankImportController ✓\n  bank_import.delete                       1        BankImportController ✓\n  bank_import.edit                         2        BankImportController ✓\n  bank_import.import                       1        BankImportController ✓\n  bank_import.manage_rules                 4        BankImportController ✓\n  bank_import.view                         2        BankImportController ✓\n\n  CALENDAR:\n  calendar.create                          1        CalendarController ✗\n  calendar.delete                          1        CalendarController ✗\n  calendar.edit                            1        CalendarController ✗\n\n  CAMERA_AUDIT:\n  camera_audit.capture                     1        CameraAuditController ✓\n  camera_audit.delete                      1        CameraAuditController ✓\n  camera_audit.stations                    3        CameraAuditController ✓\n  camera_audit.verify                      1        CameraAuditController ✓\n  camera_audit.view                        3        CameraAuditController ✓\n\n  CRM:\n  crm.create                               11       ActivityController, ClientC... ✓\n  crm.delete                               13       ActivityController, ClientC... ✓\n  crm.edit                                 13       ActivityController, ClientC... ✓\n  crm.view                                 55       ActivityController, CRMCont... ✓\n\n  DASHBOARD:\n  dashboard.edit                           2        DashboardController ✗\n\n  DOCUMENTS:\n  documents.create                         1        DocumentsController ✗\n  documents.delete                         1        DocumentsController ✓\n\n  FORECASTING:\n  forecasting.create                       10       FinancialPlannerController,... ✓\n  forecasting.delete                       8        ForecasterController ✓\n  forecasting.edit                         16       FinancialPlannerController,... ✓\n  forecasting.generate_projections         1        ProductForecastController ✓\n  forecasting.manage_assumptions           5        AssumptionsController ✓\n  forecasting.manage_products              3        ProductForecastController ✓\n  forecasting.update_daily                 3        AssumptionsController ✓\n  forecasting.view                         9        FinancialPlannerController,... ✓\n  forecasting.view_actuals                 1        AssumptionsController ✓\n  forecasting.view_proforma                7        FinancialProFormaController... ✓\n\n  HR:\n  hr.create                                28       ApplicationController, Asse... ✓\n  hr.delete                                16       ApplicationController, Asse... ✓\n  hr.edit                                  25       ApplicationController, Asse... ✓\n  hr.view                                  30       ApplicationController, Asse... ✓\n\n  INVENTORY:\n  inventory.create                         9        CategoryController, Locatio... ✓\n  inventory.delete                         10       CategoryController, Locatio... ✓\n  inventory.edit                           7        CategoryController, Locatio... ✓\n  inventory.manage                         12       CategoryController, StockMo... ✓\n  inventory.view                           20       CategoryController, Invento... ✓\n\n  MANUFACTURING:\n  manufacturing.approve                    2        MRPController ✓\n  manufacturing.create                     13       BOMController, BusinessLine... ✓\n  manufacturing.delete                     6        BusinessLineController, Equ... ✓\n  manufacturing.edit                       44       BOMController, BusinessLine... ✓\n  manufacturing.view                       53       AnalyticsController, BOMCon... ✓\n\n  MESSAGING:\n  messaging.create                         1        MessagingController ✗\n  messaging.delete                         1        MessagingController ✗\n  messaging.edit                           2        MessagingController ✗\n\n  NDAS:\n  ndas.countersign                         2        NDAController ✓\n  ndas.create                              2        NDAController ✓\n  ndas.delete                              1        NDAController ✓\n  ndas.edit                                2        NDAController ✓\n  ndas.send                                2        NDAController ✓\n  ndas.view                                5        NDAController ✓\n\n  NETWORK_MONITOR:\n  network_monitor.manage                   3        NetworkMonitorController ✓\n  network_monitor.view                     1        NetworkMonitorController ✓\n\n  NEXTCLOUD:\n  nextcloud.delete                         1        NextcloudController ✓\n  nextcloud.manage                         7        NextcloudAdminController, N... ✓\n  nextcloud.upload                         6        NextcloudController ✓\n  nextcloud.view                           7        NextcloudController ✓\n\n  PAYROLL:\n  payroll.view                             1        PayrollController ✓\n\n  PERMISSIONS:\n  permissions.manage                       10       PermissionGroupController ✓\n\n  PROCUREMENT:\n  procurement.approve                      2        PurchaseRequisitionController ✓\n  procurement.create                       16       DebitNoteController, GoodsR... ✓\n  procurement.delete                       12       DebitNoteController, GoodsR... ✓\n  procurement.edit                         12       DebitNoteController, Purcha... ✓\n  procurement.view                         18       DebitNoteController, GoodsR... ✓\n\n  PRODUCT_FORECAST:\n  product_forecast.view                    2        ProductForecastController ✓\n\n  PROFILE:\n  profile.edit                             2        ProfileController ✗\n\n  PROJECTS:\n  projects.create                          3        ProjectsController ✓\n  projects.delete                          5        ProjectsController ✓\n  projects.edit                            9        ProjectsController ✓\n  projects.view                            5        ProjectsController ✓\n\n  PURCHASES:\n  purchases.create                         3        SupplierController ✓\n  purchases.delete                         3        SupplierController ✓\n  purchases.edit                           2        SupplierController ✓\n  purchases.view                           3        PurchasesController, Suppli... ✓\n\n  PURCHASING:\n  purchasing.create                        1        MRPController ✓\n\n  RECURRING_TEMPLATES:\n  recurring_templates.activate             1        RecurringTransactionController ✓\n  recurring_templates.create               2        RecurringTransactionController ✓\n  recurring_templates.delete               1        RecurringTransactionController ✓\n  recurring_templates.edit                 2        RecurringTransactionController ✓\n  recurring_templates.execute              2        RecurringTransactionController ✓\n  recurring_templates.view                 3        RecurringTransactionController ✓\n\n  REPORTS:\n  reports.create                           2        CustomReportsController ✗\n  reports.delete                           1        CustomReportsController ✗\n  reports.edit                             2        CustomReportsController ✗\n  reports.view                             7        ReportsController ✓\n\n  ROLES:\n  roles.create                             2        RoleController ✓\n  roles.delete                             1        RoleController ✓\n  roles.edit                               2        RoleController ✓\n  roles.view                               4        RoleController ✓\n\n  SALES:\n  sales.agreements.create                  3        AgreementController ✓\n  sales.agreements.delete                  3        AgreementController ✓\n  sales.agreements.edit                    3        AgreementController ✓\n  sales.agreements.send                    2        AgreementController ✓\n  sales.agreements.view                    5        AgreementController ✓\n  sales.approve                            2        ReturnController ✗\n  sales.create                             28       BatteryQuoteController, Cre... ✓\n  sales.delete                             23       BatteryQuoteController, Cre... ✓\n  sales.edit                               20       BatteryQuoteController, Inv... ✓\n  sales.view                               34       BatteryQuoteController, Cre... ✓\n\n  SETTINGS:\n  settings.edit                            23       MenuController, TermsCondit... ✓\n  settings.view                            4        MenuController, TermsCondit... ✓\n\n  SYSTEM:\n  system.backup                            1        BackupController ✓\n  system.edit                              1        ProfileController ✗\n  system.files.delete                      3        FileManagerController ✗\n\n  TAX_JURISDICTIONS:\n  tax_jurisdictions.create                 2        TaxJurisdictionController ✓\n  tax_jurisdictions.delete                 1        TaxJurisdictionController ✓\n  tax_jurisdictions.edit                   3        TaxJurisdictionController ✓\n  tax_jurisdictions.view                   2        TaxJurisdictionController ✓\n\n  TAX_PAYMENTS:\n  tax_payments.create                      2        TaxPaymentController ✓\n  tax_payments.edit                        4        TaxPaymentController ✓\n  tax_payments.file                        1        TaxPaymentController ✓\n  tax_payments.view                        2        TaxPaymentController ✓\n\n  TAX_REPORTS:\n  tax_reports.view                         1        TaxPaymentController ✓\n\n  TICKETS:\n  tickets.create                           4        HelpDeskController, Support... ✓\n  tickets.delete                           2        SupportController ✗\n  tickets.edit                             2        HelpDeskController, Support... ✓\n\n  USERS:\n  users.create                             2        UserController ✓\n  users.delete                             3        UserController ✓\n  users.edit                               2        UserController ✓\n  users.view                               3        UserController ✓\n\n➕ CREATING MISSING PERMISSIONS\n--------------------------------------------------------------------------------\n  Found 19 missing permissions:\n\n  + calendar.create (calendar) - \"Create Calendar\"\n    Used in: CalendarController\n    ✓ Created\n\n  + calendar.edit (calendar) - \"Edit Calendar\"\n    Used in: CalendarController\n    ✓ Created\n\n  + calendar.delete (calendar) - \"Delete Calendar\"\n    Used in: CalendarController\n    ✓ Created\n\n  + reports.create (reports) - \"Create Reports\"\n    Used in: CustomReportsController\n    ✓ Created\n\n  + reports.edit (reports) - \"Edit Reports\"\n    Used in: CustomReportsController\n    ✓ Created\n\n  + reports.delete (reports) - \"Delete Reports\"\n    Used in: CustomReportsController\n    ✓ Created\n\n  + dashboard.edit (dashboard) - \"Edit Dashboard\"\n    Used in: DashboardController\n    ✓ Created\n\n  + documents.create (documents) - \"Create Documents\"\n    Used in: DocumentsController\n    ✓ Created\n\n  + system.files.delete (system) - \"System Files Delete\"\n    Used in: FileManagerController\n    ✓ Created\n\n  + messaging.create (messaging) - \"Create Messaging\"\n    Used in: MessagingController\n    ✓ Created\n\n  + messaging.edit (messaging) - \"Edit Messaging\"\n    Used in: MessagingController\n    ✓ Created\n\n  + messaging.delete (messaging) - \"Delete Messaging\"\n    Used in: MessagingController\n    ✓ Created\n\n  + admin.create (admin) - \"Create Admin\"\n    Used in: PipedriveImportController, UserGroupController\n    ✓ Created\n\n  + profile.edit (profile) - \"Edit Profile\"\n    Used in: ProfileController\n    ✓ Created\n\n  + system.edit (system) - \"Edit System\"\n    Used in: ProfileController\n    ✓ Created\n\n  + admin.edit (admin) - \"Edit Admin\"\n    Used in: QuickBooksController, UserGroupController\n    ✓ Created\n\n  + admin.delete (admin) - \"Delete Admin\"\n    Used in: QuickBooksController, UserGroupController\n    ✓ Created\n\n  + sales.approve (sales) - \"Approve Sales\"\n    Used in: ReturnController\n    ✓ Created\n\n  + tickets.delete (tickets) - \"Delete Tickets\"\n    Used in: SupportController\n    ✓ Created\n\n🗑️  UNUSED PERMISSIONS\n--------------------------------------------------------------------------------\n  Found 256 permissions in database not used in controllers:\n\n  (CORE):\n    - agreements.view - \"View Agreements\"\n    - ai-test.view - \"View AI Testing\"\n    - analytics.view - \"View analytics\"\n    - announcements.view - \"View Announcements\"\n    - assumptions.view - \"View Daily Update\"\n    - audit-logs.view - \"View Audit Log\"\n    - backup.view - \"View System Backup\"\n    - calendar.view - \"View calendar\"\n    - companies.view - \"View Companies\"\n    - creditnotes.view - \"View Credit Notes\"\n    ... and 16 more\n\n  1099:\n    - 1099_contractors.manage - \"Manage 1099 contractor designations\"\n    - 1099_filings.file - \"File 1099 forms\"\n    - 1099_filings.prepare - \"Prepare 1099 forms\"\n    - 1099_payments.manage - \"Manage 1099 payment classifications\"\n    - 1099_payments.view - \"View 1099 reportable payments\"\n    - 1099_reports.view - \"View 1099 reports\"\n\n  ACCOUNTING:\n    - accounting.customer_payments.delete - \"Delete customer payments\"\n    - accounting.customer_payments.edit - \"Edit customer payments\"\n    - accounting.post - \"Post journal entries\"\n    - accounts.create - \"Create accounts\"\n    - accounts.delete - \"Delete accounts\"\n    - accounts.edit - \"Edit accounts\"\n    - accounts.view - \"View chart of accounts\"\n    - bank_accounts.create - \"Create bank accounts\"\n    - bank_accounts.edit - \"Edit bank accounts\"\n    - bank_accounts.view - \"View bank accounts\"\n    ... and 21 more\n\n  AUDIT:\n    - audit_trail.export - \"Export audit trail\"\n    - audit_trail.view - \"View audit trail\"\n\n  AUTOMATION:\n    - automation.view - \"View Templates\"\n\n  BANK_IMPORT:\n    - bank_import.categorize - \"Categorize imported transactions\"\n    - bank_import.rules - \"Manage categorization rules\"\n\n  CREDIT_NOTES:\n    - credit_notes.apply - \"Apply Credit Notes to Invoices\"\n    - credit_notes.auto_apply - \"Auto-apply Credit Notes\"\n    - credit_notes.reverse - \"Reverse Credit Note Applications\"\n    - credit_notes.view_balances - \"View Customer Credit Balances\"\n\n  CRM:\n    - activities.create - \"Create CRM activities\"\n    - activities.edit - \"Edit CRM activities\"\n    - activities.view - \"View CRM activities\"\n    - clients.create - \"Create clients\"\n    - clients.delete - \"Delete clients\"\n    - clients.edit - \"Edit clients\"\n    - clients.view - \"View clients\"\n    - contacts.create - \"Create contacts\"\n    - contacts.delete - \"Delete contacts\"\n    - contacts.edit - \"Edit contacts\"\n    ... and 14 more\n\n  DOCUMENTS:\n    - documents.edit - \"Edit documents\"\n    - documents.upload - \"Upload documents\"\n\n  HELPDESK:\n    - tickets.assign - \"Assign support tickets\"\n    - tickets.close - \"Close support tickets\"\n    - tickets.view - \"View support tickets\"\n\n  HR:\n    - applications.create - \"Create job applications\"\n    - applications.edit - \"Edit job applications\"\n    - applications.view - \"View job applications\"\n    - assessments.create - \"Create assessments\"\n    - assessments.view - \"View assessments\"\n    - attendance.create - \"Record attendance\"\n    - attendance.view - \"View attendance\"\n    - contracts.create - \"Create employee contracts\"\n    - contracts.edit - \"Edit employee contracts\"\n    - contracts.view - \"View employee contracts\"\n    ... and 31 more\n\n  INVENTORY:\n    - camera_audit.annotate - \"Add annotations to audit images\"\n    - camera_audit.export - \"Export camera audit data\"\n    - categories.create - \"Create product categories\"\n    - categories.delete - \"Delete product categories\"\n    - categories.edit - \"Edit product categories\"\n    - categories.view - \"View product categories\"\n    - inventory.adjust - \"Adjust inventory levels\"\n    - lots.create - \"Create lot/serial numbers\"\n    - lots.edit - \"Edit lot/serial numbers\"\n    - lots.view - \"View lot/serial numbers\"\n    ... and 11 more\n\n  MANUFACTURING:\n    - boms.create - \"Create bills of materials\"\n    - boms.delete - \"Delete bills of materials\"\n    - boms.edit - \"Edit bills of materials\"\n    - boms.view - \"View bills of materials\"\n    - capacity.edit - \"Edit capacity planning\"\n    - capacity.view - \"View capacity planning\"\n    - equipment.create - \"Create equipment\"\n    - equipment.edit - \"Edit equipment\"\n    - equipment.maintenance - \"Perform equipment maintenance\"\n    - equipment.view - \"View equipment\"\n    ... and 11 more\n\n  MARKETING:\n    - campaigns.create - \"Create email campaigns\"\n    - campaigns.edit - \"Edit email campaigns\"\n    - campaigns.send - \"Send email campaigns\"\n    - campaigns.view - \"View email campaigns\"\n    - lists.create - \"Create mailing lists\"\n    - lists.view - \"View mailing lists\"\n    - templates.create - \"Create email templates\"\n    - templates.view - \"View email templates\"\n\n  PURCHASES:\n    - bills.approve - \"Approve supplier bills\"\n    - bills.create - \"Create supplier bills\"\n    - bills.view - \"View supplier bills\"\n    - goods_receipts.create - \"Create goods receipts\"\n    - goods_receipts.view - \"View goods receipts\"\n    - purchase_orders.approve - \"Approve purchase orders\"\n    - purchase_orders.create - \"Create purchase orders\"\n    - purchase_orders.delete - \"Delete purchase orders\"\n    - purchase_orders.edit - \"Edit purchase orders\"\n    - purchase_orders.view - \"View purchase orders\"\n    ... and 9 more\n\n  REPORTS:\n    - reports.export - \"Export reports\"\n\n  SALES:\n    - delivery_notes.create - \"Create delivery notes\"\n    - delivery_notes.view - \"View delivery notes\"\n    - invoices.create - \"Create invoices\"\n    - invoices.delete - \"Delete invoices\"\n    - invoices.edit - \"Edit invoices\"\n    - invoices.view - \"View invoices\"\n    - orders.approve - \"Approve sales orders\"\n    - orders.create - \"Create sales orders\"\n    - orders.delete - \"Delete sales orders\"\n    - orders.edit - \"Edit sales orders\"\n    ... and 22 more\n\n  SECURITY:\n    - mfa.admin_override - \"Admin: Override MFA for any user\"\n    - mfa.manage_own - \"Manage own MFA settings\"\n    - security.view_audit - \"View security audit logs\"\n\n  STATEMENTS:\n    - statements.bulk_generate - \"Generate Bulk Statements\"\n    - statements.email - \"Email Statements to Customers\"\n    - statements.generate - \"Generate Customer Statements\"\n    - statements.view_history - \"View Statement History\"\n\n  SYSTEM:\n    - files.delete - \"Delete files and folders\"\n    - files.manage - \"Manage all files and folders\"\n    - files.upload - \"Upload files\"\n\n  TAX:\n    - tax_exemptions.manage - \"Manage tax exemptions\"\n    - tax_exemptions.view - \"View tax exemptions\"\n\n  ⚠️  NOTE: These may be used in views or future features.\n  Review carefully before deleting.\n\n📊 COVERAGE STATISTICS\n--------------------------------------------------------------------------------\n  Permissions in database:        385\n  Permissions in controllers:     148\n  Matching (in both):             129\n  Missing from database:          19\n  Unused in controllers:          256\n  Coverage:                       87.2%\n\n  PERMISSIONS BY MODULE:\n    accounting                      13 permissions\n    sales                           10 permissions\n    forecasting                     10 permissions\n    admin                            6 permissions\n    bank_import                      6 permissions\n    ndas                             6 permissions\n    recurring_templates              6 permissions\n    manufacturing                    5 permissions\n    camera_audit                     5 permissions\n    inventory                        5 permissions\n\n\n================================================================================\nSCAN COMPLETE\n================================================================================\n','Script executed successfully','2025-11-28 13:23:58'),
(17,'sync_permissions_menu',1,'{\"mode\":\"dry-run\"}',1,'\n\n\n\n\n================================================================================\nPERMISSION SYNC UTILITY\nMODE: DRY RUN (no changes will be made)\n================================================================================\n\n📱 CHECKING APP GRID PERMISSIONS\n--------------------------------------------------------------------------------\n  ✓ All App Grid items have permissions\n\n📋 CHECKING MENU ITEM PERMISSIONS\n--------------------------------------------------------------------------------\n  ✓ All menu items have corresponding permissions\n\n🔧 STANDARDIZING MODULE NAMES\n--------------------------------------------------------------------------------\n  ✓ No obvious standardization issues found\n\n\n================================================================================\nSYNC COMPLETE\n================================================================================\n\nThis was a dry run. Run with --live flag to apply changes.\n','Script executed successfully','2025-11-28 13:24:11'),
(18,'sync_permissions_menu',1,'{\"mode\":\"live\"}',1,'\n\n\n\n\n================================================================================\nPERMISSION SYNC UTILITY\nMODE: LIVE (changes WILL be applied to database)\n================================================================================\n\n📱 CHECKING APP GRID PERMISSIONS\n--------------------------------------------------------------------------------\n  ✓ All App Grid items have permissions\n\n📋 CHECKING MENU ITEM PERMISSIONS\n--------------------------------------------------------------------------------\n  ✓ All menu items have corresponding permissions\n\n🔧 STANDARDIZING MODULE NAMES\n--------------------------------------------------------------------------------\n  ✓ No obvious standardization issues found\n\n\n================================================================================\nSYNC COMPLETE\n================================================================================\n','Script executed successfully','2025-11-28 13:24:35'),
(19,'categorize_unprotected',1,'[]',1,'=== Unprotected Methods Analysis ===\nGenerated: 2025-11-28 14:15:31\n\nTotal unprotected methods: 302\n\n╔══════════════════════════════════════════════════════════════╗\n║  1. INTENTIONALLY PUBLIC (9 methods) - OK           ║\n╚══════════════════════════════════════════════════════════════╝\nThese methods are designed to be public (login, agreements, etc.)\nAction: ✓ Document and keep as-is\n\n  ✓ AgreementController::publicView()\n  ✓ AgreementController::acceptAgreement()\n  ✓ AgreementController::declineAgreement()\n  ✓ AgreementController::thankYou()\n  ✓ AuthController::loginForm()\n  ✓ AuthController::login()\n  ✓ AuthController::logout()\n  ✓ AuthController::forgotPassword()\n  ✓ AuthController::resetPassword()\n\n╔══════════════════════════════════════════════════════════════╗\n║  2. TEST/DEVELOPMENT (10 methods)                  ║\n╚══════════════════════════════════════════════════════════════╝\nTest controllers that should be removed or protected in production\nAction: ⚠ Remove from production OR add admin-only protection\n\n  ⚠ AITestController (9 methods)\n     - index()\n     - chat()\n     - generate()\n     - extract()\n     - sentiment()\n     ... and 4 more\n  ⚠ TestController (1 methods)\n     - formGenerator()\n\n╔══════════════════════════════════════════════════════════════╗\n║  3. NEEDS REVIEW (11 methods)                      ║\n╚══════════════════════════════════════════════════════════════╝\nSystem/utility methods that may need special handling\nAction: ⏳ Review each to determine if protection is needed\n\n  ? AuthController::forgotPasswordForm()\n  ? AuthController::resetPasswordForm()\n  ? BackupController::index()\n  ? BackupController::triggerDatabaseBackup()\n  ? BackupController::triggerGitPush()\n  ? BackupController::triggerFullBackup()\n  ? BackupController::getHistory()\n  ? BackupController::getStats()\n  ? BackupController::showDetails()\n  ? QuoteController::publicView()\n  ? QuoteController::thankYou()\n\n╔══════════════════════════════════════════════════════════════╗\n║  4. AUTH ONLY (107 methods) - Medium Priority      ║\n╚══════════════════════════════════════════════════════════════╝\nMethods with authentication but no permission check\nAction: ⏳ Evaluate if permission check needed based on sensitivity\n\n  ⏳ ApprovalsController (1 methods)\n     - dashboard()\n  ⏳ CalendarController (2 methods)\n     - index()\n     - getEvents()\n  ⏳ CurrencyController (2 methods)\n     - getRate()\n     - convertAmount()\n  ⏳ CustomReportsController (5 methods)\n     - builder()\n     - my()\n     - shared()\n     ... and 2 more\n  ⏳ DashboardController (2 methods)\n     - index()\n     - customize()\n  ⏳ DocumentsController (7 methods)\n     - all()\n     - my()\n     - shared()\n     ... and 4 more\n  ⏳ EmailController (20 methods)\n     - index()\n     - folder()\n     - viewEmail()\n     ... and 17 more\n  ⏳ EmployeeController (1 methods)\n     - directory()\n  ⏳ FileManagerController (9 methods)\n     - index()\n     - browse()\n     - tree()\n     ... and 6 more\n  ⏳ FinancialProFormaController (2 methods)\n     - index()\n     - assumptions()\n  ⏳ GoodsReceiptController (1 methods)\n     - getPOItemsAjax()\n  ⏳ HelpDeskController (11 methods)\n     - dashboard()\n     - tickets()\n     - myTickets()\n     ... and 8 more\n  ⏳ InternalNoteAPIController (2 methods)\n     - add()\n     - togglePin()\n  ⏳ MFAController (5 methods)\n     - setupForm()\n     - setup()\n     - showBackupCodes()\n     ... and 2 more\n  ⏳ MessagingController (9 methods)\n     - index()\n     - channel()\n     - getChannelMembers()\n     ... and 6 more\n  ⏳ NextcloudProxyController (1 methods)\n     - proxyLogin()\n  ⏳ NextcloudSSOController (2 methods)\n     - generateToken()\n     - autoLogin()\n  ⏳ NotificationController (1 methods)\n     - index()\n  ⏳ ProFormaController (3 methods)\n     - index()\n     - location()\n     - compare()\n  ⏳ ProfileController (4 methods)\n     - index()\n     - uploadAvatar()\n     - changePassword()\n     ... and 1 more\n  ⏳ QuickBooksController (11 methods)\n     - index()\n     - connect()\n     - callback()\n     ... and 8 more\n  ⏳ QuoteTemplateController (1 methods)\n     - getTemplate()\n  ⏳ SearchController (1 methods)\n     - searchCustomers()\n  ⏳ TaxJurisdictionController (2 methods)\n     - getCitiesByState()\n     - calculateCustomerTax()\n  ⏳ TermsConditionsController (2 methods)\n     - show()\n     - getByType()\n\n╔══════════════════════════════════════════════════════════════╗\n║  5. NEEDS PROTECTION (165 methods) - HIGH PRIORITY!   ║\n╚══════════════════════════════════════════════════════════════╝\n🚨 These methods MUST have protection added immediately!\nAction: 🚨 Add requireAuth() + checkPermission() ASAP\n\n  🚨 ApiController (2 methods)\n     - usersList()  [controllers/ApiController.php]\n     - allUsers()  [controllers/ApiController.php]\n\n  🚨 BankImportController (4 methods)\n     - upload()  [controllers/BankImportController.php]\n     - categorizeTransaction()  [controllers/BankImportController.php]\n     - applyRules()  [controllers/BankImportController.php]\n     - toggleRule()  [controllers/BankImportController.php]\n\n  🚨 CameraAuditController (3 methods)\n     - capture()  [controllers/CameraAuditController.php]\n     - createStation()  [controllers/CameraAuditController.php]\n     - editStation()  [controllers/CameraAuditController.php]\n\n  🚨 ContactAPIController (1 methods)\n     - getByCompany()  [controllers/ContactAPIController.php]\n\n  🚨 CurrencyController (2 methods)\n     - createCurrency()  [controllers/CurrencyController.php]\n     - createRevaluation()  [controllers/CurrencyController.php]\n\n  🚨 CustomReportsController (1 methods)\n     - index()  [controllers/CustomReportsController.php]\n\n  🚨 DashboardController (3 methods)\n     - addWidget()  [controllers/DashboardController.php]\n     - toggleWidget()  [controllers/DashboardController.php]\n     - refreshWidget()  [controllers/DashboardController.php]\n\n  🚨 DocumentationController (4 methods)\n     - index()  [controllers/DocumentationController.php]\n     - search()  [controllers/DocumentationController.php]\n     - download()  [controllers/DocumentationController.php]\n     - refreshCoverage()  [controllers/DocumentationController.php]\n\n  🚨 EmailTemplateController (1 methods)\n     - toggleActive()  [controllers/EmailTemplateController.php]\n\n  🚨 EmailWebhookController (2 methods)\n     - receive()  [controllers/EmailWebhookController.php]\n     - test()  [controllers/EmailWebhookController.php]\n\n  🚨 FileManagerController (9 methods)\n     - upload()  [controllers/FileManagerController.php]\n     - createFolder()  [controllers/FileManagerController.php]\n     - rename()  [controllers/FileManagerController.php]\n     - move()  [controllers/FileManagerController.php]\n     - moveFolder()  [controllers/FileManagerController.php]\n     - compress()  [controllers/FileManagerController.php]\n     - extract()  [controllers/FileManagerController.php]\n     - shareFile()  [controllers/FileManagerController.php]\n     - shareFolder()  [controllers/FileManagerController.php]\n\n  🚨 FinancialProFormaController (2 methods)\n     - generate()  [controllers/FinancialProFormaController.php]\n     - compare()  [controllers/FinancialProFormaController.php]\n\n  🚨 ForecasterController (4 methods)\n     - createForecast()  [controllers/ForecasterController.php]\n     - createScenario()  [controllers/ForecasterController.php]\n     - createFinancing()  [controllers/ForecasterController.php]\n     - createInvestment()  [controllers/ForecasterController.php]\n\n  🚨 HelpDeskController (3 methods)\n     - chatAssignSession()  [controllers/HelpDeskController.php]\n     - chatEndSession()  [controllers/HelpDeskController.php]\n     - chatCreateSession()  [controllers/HelpDeskController.php]\n\n  🚨 InternalNoteAPIController (1 methods)\n     - index()  [controllers/InternalNoteAPIController.php]\n\n  🚨 MFAController (3 methods)\n     - verifyForm()  [controllers/MFAController.php]\n     - verify()  [controllers/MFAController.php]\n     - resendOTP()  [controllers/MFAController.php]\n\n  🚨 MRPController (4 methods)\n     - calculate()  [controllers/MRPController.php]\n     - generateRequisitions()  [controllers/MRPController.php]\n     - autoCalculateSafetyStock()  [controllers/MRPController.php]\n     - convertToPO()  [controllers/MRPController.php]\n\n  🚨 MachineDataController (5 methods)\n     - updateStatus()  [controllers/MachineDataController.php]\n     - updateProduction()  [controllers/MachineDataController.php]\n     - updateUtilization()  [controllers/MachineDataController.php]\n     - getStatus()  [controllers/MachineDataController.php]\n     - health()  [controllers/MachineDataController.php]\n\n  🚨 MaintenanceController (6 methods)\n     - createSchedule()  [controllers/MaintenanceController.php]\n     - storeSchedule()  [controllers/MaintenanceController.php]\n     - createWorkOrder()  [controllers/MaintenanceController.php]\n     - storeWorkOrder()  [controllers/MaintenanceController.php]\n     - createDowntime()  [controllers/MaintenanceController.php]\n     - storeDowntime()  [controllers/MaintenanceController.php]\n\n  🚨 MessagingController (5 methods)\n     - createChannel()  [controllers/MessagingController.php]\n     - addMember()  [controllers/MessagingController.php]\n     - uploadFile()  [controllers/MessagingController.php]\n     - addReaction()  [controllers/MessagingController.php]\n     - leaveChannel()  [controllers/MessagingController.php]\n\n  🚨 NDAController (3 methods)\n     - publicSign()  [controllers/NDAController.php]\n     - signNDA()  [controllers/NDAController.php]\n     - declineNDA()  [controllers/NDAController.php]\n\n  🚨 NDATemplateController (1 methods)\n     - toggle()  [controllers/NDATemplateController.php]\n\n  🚨 NetworkMonitorController (8 methods)\n     - status()  [controllers/NetworkMonitorController.php]\n     - logs()  [controllers/NetworkMonitorController.php]\n     - statistics()  [controllers/NetworkMonitorController.php]\n     - feed()  [controllers/NetworkMonitorController.php]\n     - clearLogs()  [controllers/NetworkMonitorController.php]\n     - addAllowedHost()  [controllers/NetworkMonitorController.php]\n     - testConnection()  [controllers/NetworkMonitorController.php]\n     - logDetail()  [controllers/NetworkMonitorController.php]\n\n  🚨 NextcloudController (5 methods)\n     - settings()  [controllers/NextcloudController.php]\n     - viewDocument()  [controllers/NextcloudController.php]\n     - quickCreateWord()  [controllers/NextcloudController.php]\n     - quickCreateExcel()  [controllers/NextcloudController.php]\n     - quickCreatePowerPoint()  [controllers/NextcloudController.php]\n\n  🚨 NextcloudSSOController (1 methods)\n     - validateToken()  [controllers/NextcloudSSOController.php]\n\n  🚨 NotificationController (4 methods)\n     - getUnread()  [controllers/NotificationController.php]\n     - markAsRead()  [controllers/NotificationController.php]\n     - markAllAsRead()  [controllers/NotificationController.php]\n     - delete()  [controllers/NotificationController.php]\n\n  🚨 OpportunityController (5 methods)\n     - addTask()  [controllers/OpportunityController.php]\n     - logReceivedEmail()  [controllers/OpportunityController.php]\n     - uploadDocument()  [controllers/OpportunityController.php]\n     - addCompetitor()  [controllers/OpportunityController.php]\n     - assign()  [controllers/OpportunityController.php]\n\n  🚨 PeriodClosingController (1 methods)\n     - processClose()  [controllers/PeriodClosingController.php]\n\n  🚨 PermissionGroupController (2 methods)\n     - assignPermissions()  [controllers/PermissionGroupController.php]\n     - reorder()  [controllers/PermissionGroupController.php]\n\n  🚨 PipedriveImportController (3 methods)\n     - index()  [controllers/PipedriveImportController.php]\n     - viewLog()  [controllers/PipedriveImportController.php]\n     - getStats()  [controllers/PipedriveImportController.php]\n\n  🚨 PricingRuleController (1 methods)\n     - calculatePrice()  [controllers/PricingRuleController.php]\n\n  🚨 ProFormaController (1 methods)\n     - calculate()  [controllers/ProFormaController.php]\n\n  🚨 ProductForecastController (1 methods)\n     - gettingStarted()  [controllers/ProductForecastController.php]\n\n  🚨 ProjectsController (31 methods)\n     - dashboard()  [controllers/ProjectsController.php]\n     - myTasks()  [controllers/ProjectsController.php]\n     - index()  [controllers/ProjectsController.php]\n     - show()  [controllers/ProjectsController.php]\n     - listView()  [controllers/ProjectsController.php]\n     - moveTask()  [controllers/ProjectsController.php]\n     - getTask()  [controllers/ProjectsController.php]\n     - addComment()  [controllers/ProjectsController.php]\n     - assignUser()  [controllers/ProjectsController.php]\n     - unassignUser()  [controllers/ProjectsController.php]\n     - addChecklistItem()  [controllers/ProjectsController.php]\n     - toggleChecklistItem()  [controllers/ProjectsController.php]\n     - addTeamMember()  [controllers/ProjectsController.php]\n     - addTeamGroup()  [controllers/ProjectsController.php]\n     - assignGroupToTask()  [controllers/ProjectsController.php]\n     - unassignGroupFromTask()  [controllers/ProjectsController.php]\n     - financials()  [controllers/ProjectsController.php]\n     - createTransaction()  [controllers/ProjectsController.php]\n     - storeTransaction()  [controllers/ProjectsController.php]\n     - editTransaction()  [controllers/ProjectsController.php]\n     - linkTransactionToTask()  [controllers/ProjectsController.php]\n     - migrateTransactions()  [controllers/ProjectsController.php]\n     - processMigration()  [controllers/ProjectsController.php]\n     - gantt()  [controllers/ProjectsController.php]\n     - calculateCriticalPath()  [controllers/ProjectsController.php]\n     - addTaskDependency()  [controllers/ProjectsController.php]\n     - resources()  [controllers/ProjectsController.php]\n     - resourceDayDetails()  [controllers/ProjectsController.php]\n     - autoAllocateResources()  [controllers/ProjectsController.php]\n     - getTaskComments()  [controllers/ProjectsController.php]\n     - addTaskComment()  [controllers/ProjectsController.php]\n\n  🚨 PromotionController (2 methods)\n     - validateCode()  [controllers/PromotionController.php]\n     - applyPromotion()  [controllers/PromotionController.php]\n\n  🚨 QualityController (4 methods)\n     - createInspection()  [controllers/QualityController.php]\n     - completeInspection()  [controllers/QualityController.php]\n     - createNCR()  [controllers/QualityController.php]\n     - createTemplate()  [controllers/QualityController.php]\n\n  🚨 QuoteController (2 methods)\n     - acceptQuote()  [controllers/QuoteController.php]\n     - declineQuote()  [controllers/QuoteController.php]\n\n  🚨 ReturnController (1 methods)\n     - complete()  [controllers/ReturnController.php]\n\n  🚨 SalesReportController (10 methods)\n     - getSummary()  [controllers/SalesReportController.php]\n     - getTopProducts()  [controllers/SalesReportController.php]\n     - getTopCustomers()  [controllers/SalesReportController.php]\n     - getByStatus()  [controllers/SalesReportController.php]\n     - getByChannel()  [controllers/SalesReportController.php]\n     - getInvoiceAnalytics()  [controllers/SalesReportController.php]\n     - getPaymentAnalytics()  [controllers/SalesReportController.php]\n     - getCategoryPerformance()  [controllers/SalesReportController.php]\n     - getSalesGrowth()  [controllers/SalesReportController.php]\n     - getQuoteConversion()  [controllers/SalesReportController.php]\n\n  🚨 SchedulingController (3 methods)\n     - autoSchedule()  [controllers/SchedulingController.php]\n     - rescheduleAssignment()  [controllers/SchedulingController.php]\n     - createAssignment()  [controllers/SchedulingController.php]\n\n  🚨 SearchController (1 methods)\n     - search()  [controllers/SearchController.php]\n\n  🚨 SettingsController (1 methods)\n     - testSmtpConnection()  [controllers/SettingsController.php]\n\n  🚨 ShopFloorController (3 methods)\n     - startProduction()  [controllers/ShopFloorController.php]\n     - pauseProduction()  [controllers/ShopFloorController.php]\n     - completeProduction()  [controllers/ShopFloorController.php]\n\n  🚨 SupportController (1 methods)\n     - addResponse()  [controllers/SupportController.php]\n\n  🚨 TaxPaymentController (1 methods)\n     - calculatePeriodTax()  [controllers/TaxPaymentController.php]\n\n  🚨 TransferController (2 methods)\n     - receive()  [controllers/TransferController.php]\n     - cancel()  [controllers/TransferController.php]\n\n  🚨 UserGroupController (2 methods)\n     - addMember()  [controllers/UserGroupController.php]\n     - addUse()  [controllers/UserGroupController.php]\n\n═══════════════════════════════════════════════════════════════\nSUMMARY\n═══════════════════════════════════════════════════════════════\n✓ Intentionally Public:  9 (OK)\n⚠ Test/Dev Controllers:  10 (Remove/Protect)\n? Needs Review:          11 (Evaluate)\n⏳ Auth Only:            107 (Medium Priority)\n🚨 Needs Protection:     165 (HIGH PRIORITY!)\n─────────────────────────────────────────────────────────────\nTotal:                   302 methods\n\n🚨 IMMEDIATE ACTION REQUIRED:\n165 methods need protection added immediately!\n\n⚠ BEFORE PRODUCTION:\nRemove 10 test/dev methods or add admin protection\n','Script executed successfully','2025-11-28 14:15:31'),
(20,'categorize_unprotected',1,'[]',1,'=== Unprotected Methods Analysis ===\nGenerated: 2025-11-28 14:20:24\n\nTotal unprotected methods: 302\n\n╔══════════════════════════════════════════════════════════════╗\n║  1. INTENTIONALLY PUBLIC (9 methods) - OK           ║\n╚══════════════════════════════════════════════════════════════╝\nThese methods are designed to be public (login, agreements, etc.)\nAction: ✓ Document and keep as-is\n\n  ✓ AgreementController::publicView()\n  ✓ AgreementController::acceptAgreement()\n  ✓ AgreementController::declineAgreement()\n  ✓ AgreementController::thankYou()\n  ✓ AuthController::loginForm()\n  ✓ AuthController::login()\n  ✓ AuthController::logout()\n  ✓ AuthController::forgotPassword()\n  ✓ AuthController::resetPassword()\n\n╔══════════════════════════════════════════════════════════════╗\n║  2. TEST/DEVELOPMENT (10 methods)                  ║\n╚══════════════════════════════════════════════════════════════╝\nTest controllers that should be removed or protected in production\nAction: ⚠ Remove from production OR add admin-only protection\n\n  ⚠ AITestController (9 methods)\n     - index()\n     - chat()\n     - generate()\n     - extract()\n     - sentiment()\n     ... and 4 more\n  ⚠ TestController (1 methods)\n     - formGenerator()\n\n╔══════════════════════════════════════════════════════════════╗\n║  3. NEEDS REVIEW (11 methods)                      ║\n╚══════════════════════════════════════════════════════════════╝\nSystem/utility methods that may need special handling\nAction: ⏳ Review each to determine if protection is needed\n\n  ? AuthController::forgotPasswordForm()\n  ? AuthController::resetPasswordForm()\n  ? BackupController::index()\n  ? BackupController::triggerDatabaseBackup()\n  ? BackupController::triggerGitPush()\n  ? BackupController::triggerFullBackup()\n  ? BackupController::getHistory()\n  ? BackupController::getStats()\n  ? BackupController::showDetails()\n  ? QuoteController::publicView()\n  ? QuoteController::thankYou()\n\n╔══════════════════════════════════════════════════════════════╗\n║  4. AUTH ONLY (107 methods) - Medium Priority      ║\n╚══════════════════════════════════════════════════════════════╝\nMethods with authentication but no permission check\nAction: ⏳ Evaluate if permission check needed based on sensitivity\n\n  ⏳ ApprovalsController (1 methods)\n     - dashboard()\n  ⏳ CalendarController (2 methods)\n     - index()\n     - getEvents()\n  ⏳ CurrencyController (2 methods)\n     - getRate()\n     - convertAmount()\n  ⏳ CustomReportsController (5 methods)\n     - builder()\n     - my()\n     - shared()\n     ... and 2 more\n  ⏳ DashboardController (2 methods)\n     - index()\n     - customize()\n  ⏳ DocumentsController (7 methods)\n     - all()\n     - my()\n     - shared()\n     ... and 4 more\n  ⏳ EmailController (20 methods)\n     - index()\n     - folder()\n     - viewEmail()\n     ... and 17 more\n  ⏳ EmployeeController (1 methods)\n     - directory()\n  ⏳ FileManagerController (9 methods)\n     - index()\n     - browse()\n     - tree()\n     ... and 6 more\n  ⏳ FinancialProFormaController (2 methods)\n     - index()\n     - assumptions()\n  ⏳ GoodsReceiptController (1 methods)\n     - getPOItemsAjax()\n  ⏳ HelpDeskController (11 methods)\n     - dashboard()\n     - tickets()\n     - myTickets()\n     ... and 8 more\n  ⏳ InternalNoteAPIController (2 methods)\n     - add()\n     - togglePin()\n  ⏳ MFAController (5 methods)\n     - setupForm()\n     - setup()\n     - showBackupCodes()\n     ... and 2 more\n  ⏳ MessagingController (9 methods)\n     - index()\n     - channel()\n     - getChannelMembers()\n     ... and 6 more\n  ⏳ NextcloudProxyController (1 methods)\n     - proxyLogin()\n  ⏳ NextcloudSSOController (2 methods)\n     - generateToken()\n     - autoLogin()\n  ⏳ NotificationController (1 methods)\n     - index()\n  ⏳ ProFormaController (3 methods)\n     - index()\n     - location()\n     - compare()\n  ⏳ ProfileController (4 methods)\n     - index()\n     - uploadAvatar()\n     - changePassword()\n     ... and 1 more\n  ⏳ QuickBooksController (11 methods)\n     - index()\n     - connect()\n     - callback()\n     ... and 8 more\n  ⏳ QuoteTemplateController (1 methods)\n     - getTemplate()\n  ⏳ SearchController (1 methods)\n     - searchCustomers()\n  ⏳ TaxJurisdictionController (2 methods)\n     - getCitiesByState()\n     - calculateCustomerTax()\n  ⏳ TermsConditionsController (2 methods)\n     - show()\n     - getByType()\n\n╔══════════════════════════════════════════════════════════════╗\n║  5. NEEDS PROTECTION (165 methods) - HIGH PRIORITY!   ║\n╚══════════════════════════════════════════════════════════════╝\n🚨 These methods MUST have protection added immediately!\nAction: 🚨 Add requireAuth() + checkPermission() ASAP\n\n  🚨 ApiController (2 methods)\n     - usersList()  [controllers/ApiController.php]\n     - allUsers()  [controllers/ApiController.php]\n\n  🚨 BankImportController (4 methods)\n     - upload()  [controllers/BankImportController.php]\n     - categorizeTransaction()  [controllers/BankImportController.php]\n     - applyRules()  [controllers/BankImportController.php]\n     - toggleRule()  [controllers/BankImportController.php]\n\n  🚨 CameraAuditController (3 methods)\n     - capture()  [controllers/CameraAuditController.php]\n     - createStation()  [controllers/CameraAuditController.php]\n     - editStation()  [controllers/CameraAuditController.php]\n\n  🚨 ContactAPIController (1 methods)\n     - getByCompany()  [controllers/ContactAPIController.php]\n\n  🚨 CurrencyController (2 methods)\n     - createCurrency()  [controllers/CurrencyController.php]\n     - createRevaluation()  [controllers/CurrencyController.php]\n\n  🚨 CustomReportsController (1 methods)\n     - index()  [controllers/CustomReportsController.php]\n\n  🚨 DashboardController (3 methods)\n     - addWidget()  [controllers/DashboardController.php]\n     - toggleWidget()  [controllers/DashboardController.php]\n     - refreshWidget()  [controllers/DashboardController.php]\n\n  🚨 DocumentationController (4 methods)\n     - index()  [controllers/DocumentationController.php]\n     - search()  [controllers/DocumentationController.php]\n     - download()  [controllers/DocumentationController.php]\n     - refreshCoverage()  [controllers/DocumentationController.php]\n\n  🚨 EmailTemplateController (1 methods)\n     - toggleActive()  [controllers/EmailTemplateController.php]\n\n  🚨 EmailWebhookController (2 methods)\n     - receive()  [controllers/EmailWebhookController.php]\n     - test()  [controllers/EmailWebhookController.php]\n\n  🚨 FileManagerController (9 methods)\n     - upload()  [controllers/FileManagerController.php]\n     - createFolder()  [controllers/FileManagerController.php]\n     - rename()  [controllers/FileManagerController.php]\n     - move()  [controllers/FileManagerController.php]\n     - moveFolder()  [controllers/FileManagerController.php]\n     - compress()  [controllers/FileManagerController.php]\n     - extract()  [controllers/FileManagerController.php]\n     - shareFile()  [controllers/FileManagerController.php]\n     - shareFolder()  [controllers/FileManagerController.php]\n\n  🚨 FinancialProFormaController (2 methods)\n     - generate()  [controllers/FinancialProFormaController.php]\n     - compare()  [controllers/FinancialProFormaController.php]\n\n  🚨 ForecasterController (4 methods)\n     - createForecast()  [controllers/ForecasterController.php]\n     - createScenario()  [controllers/ForecasterController.php]\n     - createFinancing()  [controllers/ForecasterController.php]\n     - createInvestment()  [controllers/ForecasterController.php]\n\n  🚨 HelpDeskController (3 methods)\n     - chatAssignSession()  [controllers/HelpDeskController.php]\n     - chatEndSession()  [controllers/HelpDeskController.php]\n     - chatCreateSession()  [controllers/HelpDeskController.php]\n\n  🚨 InternalNoteAPIController (1 methods)\n     - index()  [controllers/InternalNoteAPIController.php]\n\n  🚨 MFAController (3 methods)\n     - verifyForm()  [controllers/MFAController.php]\n     - verify()  [controllers/MFAController.php]\n     - resendOTP()  [controllers/MFAController.php]\n\n  🚨 MRPController (4 methods)\n     - calculate()  [controllers/MRPController.php]\n     - generateRequisitions()  [controllers/MRPController.php]\n     - autoCalculateSafetyStock()  [controllers/MRPController.php]\n     - convertToPO()  [controllers/MRPController.php]\n\n  🚨 MachineDataController (5 methods)\n     - updateStatus()  [controllers/MachineDataController.php]\n     - updateProduction()  [controllers/MachineDataController.php]\n     - updateUtilization()  [controllers/MachineDataController.php]\n     - getStatus()  [controllers/MachineDataController.php]\n     - health()  [controllers/MachineDataController.php]\n\n  🚨 MaintenanceController (6 methods)\n     - createSchedule()  [controllers/MaintenanceController.php]\n     - storeSchedule()  [controllers/MaintenanceController.php]\n     - createWorkOrder()  [controllers/MaintenanceController.php]\n     - storeWorkOrder()  [controllers/MaintenanceController.php]\n     - createDowntime()  [controllers/MaintenanceController.php]\n     - storeDowntime()  [controllers/MaintenanceController.php]\n\n  🚨 MessagingController (5 methods)\n     - createChannel()  [controllers/MessagingController.php]\n     - addMember()  [controllers/MessagingController.php]\n     - uploadFile()  [controllers/MessagingController.php]\n     - addReaction()  [controllers/MessagingController.php]\n     - leaveChannel()  [controllers/MessagingController.php]\n\n  🚨 NDAController (3 methods)\n     - publicSign()  [controllers/NDAController.php]\n     - signNDA()  [controllers/NDAController.php]\n     - declineNDA()  [controllers/NDAController.php]\n\n  🚨 NDATemplateController (1 methods)\n     - toggle()  [controllers/NDATemplateController.php]\n\n  🚨 NetworkMonitorController (8 methods)\n     - status()  [controllers/NetworkMonitorController.php]\n     - logs()  [controllers/NetworkMonitorController.php]\n     - statistics()  [controllers/NetworkMonitorController.php]\n     - feed()  [controllers/NetworkMonitorController.php]\n     - clearLogs()  [controllers/NetworkMonitorController.php]\n     - addAllowedHost()  [controllers/NetworkMonitorController.php]\n     - testConnection()  [controllers/NetworkMonitorController.php]\n     - logDetail()  [controllers/NetworkMonitorController.php]\n\n  🚨 NextcloudController (5 methods)\n     - settings()  [controllers/NextcloudController.php]\n     - viewDocument()  [controllers/NextcloudController.php]\n     - quickCreateWord()  [controllers/NextcloudController.php]\n     - quickCreateExcel()  [controllers/NextcloudController.php]\n     - quickCreatePowerPoint()  [controllers/NextcloudController.php]\n\n  🚨 NextcloudSSOController (1 methods)\n     - validateToken()  [controllers/NextcloudSSOController.php]\n\n  🚨 NotificationController (4 methods)\n     - getUnread()  [controllers/NotificationController.php]\n     - markAsRead()  [controllers/NotificationController.php]\n     - markAllAsRead()  [controllers/NotificationController.php]\n     - delete()  [controllers/NotificationController.php]\n\n  🚨 OpportunityController (5 methods)\n     - addTask()  [controllers/OpportunityController.php]\n     - logReceivedEmail()  [controllers/OpportunityController.php]\n     - uploadDocument()  [controllers/OpportunityController.php]\n     - addCompetitor()  [controllers/OpportunityController.php]\n     - assign()  [controllers/OpportunityController.php]\n\n  🚨 PeriodClosingController (1 methods)\n     - processClose()  [controllers/PeriodClosingController.php]\n\n  🚨 PermissionGroupController (2 methods)\n     - assignPermissions()  [controllers/PermissionGroupController.php]\n     - reorder()  [controllers/PermissionGroupController.php]\n\n  🚨 PipedriveImportController (3 methods)\n     - index()  [controllers/PipedriveImportController.php]\n     - viewLog()  [controllers/PipedriveImportController.php]\n     - getStats()  [controllers/PipedriveImportController.php]\n\n  🚨 PricingRuleController (1 methods)\n     - calculatePrice()  [controllers/PricingRuleController.php]\n\n  🚨 ProFormaController (1 methods)\n     - calculate()  [controllers/ProFormaController.php]\n\n  🚨 ProductForecastController (1 methods)\n     - gettingStarted()  [controllers/ProductForecastController.php]\n\n  🚨 ProjectsController (31 methods)\n     - dashboard()  [controllers/ProjectsController.php]\n     - myTasks()  [controllers/ProjectsController.php]\n     - index()  [controllers/ProjectsController.php]\n     - show()  [controllers/ProjectsController.php]\n     - listView()  [controllers/ProjectsController.php]\n     - moveTask()  [controllers/ProjectsController.php]\n     - getTask()  [controllers/ProjectsController.php]\n     - addComment()  [controllers/ProjectsController.php]\n     - assignUser()  [controllers/ProjectsController.php]\n     - unassignUser()  [controllers/ProjectsController.php]\n     - addChecklistItem()  [controllers/ProjectsController.php]\n     - toggleChecklistItem()  [controllers/ProjectsController.php]\n     - addTeamMember()  [controllers/ProjectsController.php]\n     - addTeamGroup()  [controllers/ProjectsController.php]\n     - assignGroupToTask()  [controllers/ProjectsController.php]\n     - unassignGroupFromTask()  [controllers/ProjectsController.php]\n     - financials()  [controllers/ProjectsController.php]\n     - createTransaction()  [controllers/ProjectsController.php]\n     - storeTransaction()  [controllers/ProjectsController.php]\n     - editTransaction()  [controllers/ProjectsController.php]\n     - linkTransactionToTask()  [controllers/ProjectsController.php]\n     - migrateTransactions()  [controllers/ProjectsController.php]\n     - processMigration()  [controllers/ProjectsController.php]\n     - gantt()  [controllers/ProjectsController.php]\n     - calculateCriticalPath()  [controllers/ProjectsController.php]\n     - addTaskDependency()  [controllers/ProjectsController.php]\n     - resources()  [controllers/ProjectsController.php]\n     - resourceDayDetails()  [controllers/ProjectsController.php]\n     - autoAllocateResources()  [controllers/ProjectsController.php]\n     - getTaskComments()  [controllers/ProjectsController.php]\n     - addTaskComment()  [controllers/ProjectsController.php]\n\n  🚨 PromotionController (2 methods)\n     - validateCode()  [controllers/PromotionController.php]\n     - applyPromotion()  [controllers/PromotionController.php]\n\n  🚨 QualityController (4 methods)\n     - createInspection()  [controllers/QualityController.php]\n     - completeInspection()  [controllers/QualityController.php]\n     - createNCR()  [controllers/QualityController.php]\n     - createTemplate()  [controllers/QualityController.php]\n\n  🚨 QuoteController (2 methods)\n     - acceptQuote()  [controllers/QuoteController.php]\n     - declineQuote()  [controllers/QuoteController.php]\n\n  🚨 ReturnController (1 methods)\n     - complete()  [controllers/ReturnController.php]\n\n  🚨 SalesReportController (10 methods)\n     - getSummary()  [controllers/SalesReportController.php]\n     - getTopProducts()  [controllers/SalesReportController.php]\n     - getTopCustomers()  [controllers/SalesReportController.php]\n     - getByStatus()  [controllers/SalesReportController.php]\n     - getByChannel()  [controllers/SalesReportController.php]\n     - getInvoiceAnalytics()  [controllers/SalesReportController.php]\n     - getPaymentAnalytics()  [controllers/SalesReportController.php]\n     - getCategoryPerformance()  [controllers/SalesReportController.php]\n     - getSalesGrowth()  [controllers/SalesReportController.php]\n     - getQuoteConversion()  [controllers/SalesReportController.php]\n\n  🚨 SchedulingController (3 methods)\n     - autoSchedule()  [controllers/SchedulingController.php]\n     - rescheduleAssignment()  [controllers/SchedulingController.php]\n     - createAssignment()  [controllers/SchedulingController.php]\n\n  🚨 SearchController (1 methods)\n     - search()  [controllers/SearchController.php]\n\n  🚨 SettingsController (1 methods)\n     - testSmtpConnection()  [controllers/SettingsController.php]\n\n  🚨 ShopFloorController (3 methods)\n     - startProduction()  [controllers/ShopFloorController.php]\n     - pauseProduction()  [controllers/ShopFloorController.php]\n     - completeProduction()  [controllers/ShopFloorController.php]\n\n  🚨 SupportController (1 methods)\n     - addResponse()  [controllers/SupportController.php]\n\n  🚨 TaxPaymentController (1 methods)\n     - calculatePeriodTax()  [controllers/TaxPaymentController.php]\n\n  🚨 TransferController (2 methods)\n     - receive()  [controllers/TransferController.php]\n     - cancel()  [controllers/TransferController.php]\n\n  🚨 UserGroupController (2 methods)\n     - addMember()  [controllers/UserGroupController.php]\n     - addUse()  [controllers/UserGroupController.php]\n\n═══════════════════════════════════════════════════════════════\nSUMMARY\n═══════════════════════════════════════════════════════════════\n✓ Intentionally Public:  9 (OK)\n⚠ Test/Dev Controllers:  10 (Remove/Protect)\n? Needs Review:          11 (Evaluate)\n⏳ Auth Only:            107 (Medium Priority)\n🚨 Needs Protection:     165 (HIGH PRIORITY!)\n─────────────────────────────────────────────────────────────\nTotal:                   302 methods\n\n🚨 IMMEDIATE ACTION REQUIRED:\n165 methods need protection added immediately!\n\n⚠ BEFORE PRODUCTION:\nRemove 10 test/dev methods or add admin protection\n','Script executed successfully','2025-11-28 14:20:24'),
(21,'auto_fix_permissions',1,'{\"mode\":\"dry-run\",\"exclude_auth_only\":\"yes\"}',1,'╔══════════════════════════════════════════════════════════════╗\n║         Permission Auto-Fix Script                          ║\n╚══════════════════════════════════════════════════════════════╝\n\n🔍 DRY RUN MODE - No files will be modified\n\n⚠️  Skipping AITestController (test controller - should be removed)\n📄 Processing AccountController...\n📄 Processing AccountingController...\n📄 Processing ActionMenuEditorController...\n📄 Processing ActivityController...\n⏭️  Skipping AgreementController (intentionally public)\n📄 Processing AgreementTemplateController...\n📄 Processing AnalyticsController...\n📄 Processing AnnouncementController...\n📄 Processing ApiController...\n  ✓ Would fix allUsers() - add: api.view\n  ✓ Would fix usersList() - add: api.view\n\n📄 Processing ApplicationController...\n📄 Processing ApprovalsController...\n📄 Processing AssessmentController...\n📄 Processing AssumptionsController...\n📄 Processing AttendanceController...\n📄 Processing AuditLogController...\n⏭️  Skipping AuthController (intentionally public)\n📄 Processing BOMController...\n📄 Processing BackupController...\n  ✓ Would fix showDetails() - add: backup.view\n  ✓ Would fix getStats() - add: backup.view\n  ✓ Would fix getHistory() - add: backup.view\n  ✓ Would fix triggerFullBackup() - add: backup.view\n  ✓ Would fix triggerGitPush() - add: backup.view\n  ✓ Would fix triggerDatabaseBackup() - add: backup.view\n  ✓ Would fix index() - add: backup.view\n\n📄 Processing BankAccountController...\n📄 Processing BankImportController...\n📄 Processing BankReconciliationController...\n📄 Processing BatteryQuoteController...\n📄 Processing BudgetController...\n📄 Processing BusinessLineController...\n📄 Processing CRMController...\n📄 Processing CalendarController...\n📄 Processing CameraAuditController...\n📄 Processing CapacityController...\n📄 Processing CategoryController...\n📄 Processing ClientController...\n📄 Processing CompanyController...\n📄 Processing ContactAPIController...\n📄 Processing ContactController...\n📄 Processing ContractController...\n📄 Processing CostingController...\n📄 Processing CreditNoteController...\n📄 Processing CurrencyController...\n📄 Processing CustomReportsController...\n  ✓ Would fix index() - add: reports.view\n\n📄 Processing CustomerController...\n📄 Processing CustomerPaymentController...\n📄 Processing DashboardController...\n📄 Processing DataAccessController...\n📄 Processing DebitNoteController...\n📄 Processing DeliveryNoteController...\n📄 Processing DepreciationController...\n📄 Processing DocumentController...\n📄 Processing DocumentationController...\n  ✓ Would fix refreshCoverage() - add: documentation.view\n  ✓ Would fix download() - add: documentation.export\n  ✓ Would fix search() - add: documentation.view\n  ✓ Would fix index() - add: documentation.view\n\n📄 Processing DocumentsController...\n📄 Processing EmailController...\n📄 Processing EmailTemplateController...\n📄 Processing EmailWebhookController...\n  ✓ Would fix test() - add: email.view\n  ✓ Would fix receive() - add: email.view\n\n📄 Processing EmployeeController...\n📄 Processing EquipmentController...\n📄 Processing EquipmentLineController...\n📄 Processing EquipmentTypeController...\n📄 Processing ExpenseController...\n📄 Processing FileManagerController...\n📄 Processing FinancialPlannerController...\n📄 Processing FinancialProFormaController...\n📄 Processing FixedAssetController...\n📄 Processing ForecasterController...\n📄 Processing Form1099Controller...\n📄 Processing GoodsReceiptController...\n📄 Processing HRController...\n📄 Processing HelpDeskController...\n📄 Processing InternalNoteAPIController...\n📄 Processing InterviewController...\n📄 Processing InventoryController...\n📄 Processing InvoiceController...\n📄 Processing IssueController...\n📄 Processing JobPositionController...\n📄 Processing JournalEntryController...\n📄 Processing LocationController...\n📄 Processing LotSerialController...\n📄 Processing MFAController...\n  ✓ Would fix resendOTP() - add: security.view\n  ✓ Would fix verify() - add: security.approve\n  ✓ Would fix verifyForm() - add: security.approve\n\n📄 Processing MRPController...\n📄 Processing MachineDataController...\n  ✓ Would fix health() - add: machine_data.view\n  ✓ Would fix getStatus() - add: machine_data.view\n\n📄 Processing MaintenanceController...\n📄 Processing ManufacturingController...\n📄 Processing MenuController...\n📄 Processing MessagingController...\n📄 Processing NDAController...\n  ✓ Would fix declineNDA() - add: nda.view\n  ✓ Would fix signNDA() - add: nda.view\n  ✓ Would fix publicSign() - add: nda.view\n\n📄 Processing NDATemplateController...\n📄 Processing NetworkMonitorController...\n  ✓ Would fix logDetail() - add: network_monitor.view\n  ✓ Would fix feed() - add: network_monitor.view\n  ✓ Would fix statistics() - add: network_monitor.view\n  ✓ Would fix logs() - add: network_monitor.view\n  ✓ Would fix status() - add: network_monitor.view\n\n📄 Processing NextcloudAdminController...\n📄 Processing NextcloudController...\n  ✓ Would fix viewDocument() - add: nextcloud.view\n\n📄 Processing NextcloudProxyController...\n📄 Processing NextcloudSSOController...\n  ✓ Would fix validateToken() - add: nextcloud_sso.view\n\n📄 Processing NotificationController...\n  ✓ Would fix delete() - add: notifications.delete\n  ✓ Would fix markAllAsRead() - add: notifications.view\n  ✓ Would fix markAsRead() - add: notifications.view\n  ✓ Would fix getUnread() - add: notifications.view\n\n📄 Processing OfferController...\n📄 Processing OpportunityController...\n📄 Processing PaymentController...\n📄 Processing PayrollController...\n📄 Processing PeriodClosingController...\n📄 Processing PermissionGroupController...\n📄 Processing PipedriveImportController...\n  ✓ Would fix getStats() - add: pipedrive_import.view\n  ✓ Would fix viewLog() - add: pipedrive_import.view\n  ✓ Would fix index() - add: pipedrive_import.view\n\n📄 Processing PositionController...\n📄 Processing PricingRuleController...\n  ✓ Would fix calculatePrice() - add: pricing_rule.view\n\n📄 Processing ProFormaController...\n  ✓ Would fix calculate() - add: pro_forma.view\n\n📄 Processing ProductController...\n📄 Processing ProductForecastController...\n  ✓ Would fix gettingStarted() - add: product_forecast.view\n\n📄 Processing ProfileController...\n📄 Processing ProjectsController...\n  ✓ Would fix addTaskComment() - add: projects.create\n  ✓ Would fix getTaskComments() - add: projects.view\n  ✓ Would fix autoAllocateResources() - add: projects.view\n  ✓ Would fix resourceDayDetails() - add: projects.view\n  ✓ Would fix resources() - add: projects.view\n  ✓ Would fix addTaskDependency() - add: projects.create\n  ✓ Would fix calculateCriticalPath() - add: projects.view\n  ✓ Would fix gantt() - add: projects.view\n  ✓ Would fix processMigration() - add: projects.view\n  ✓ Would fix migrateTransactions() - add: projects.view\n  ✓ Would fix linkTransactionToTask() - add: projects.view\n  ✓ Would fix editTransaction() - add: projects.edit\n  ✓ Would fix storeTransaction() - add: projects.create\n  ✓ Would fix createTransaction() - add: projects.create\n  ✓ Would fix financials() - add: projects.view\n  ✓ Would fix unassignGroupFromTask() - add: projects.view\n  ✓ Would fix assignGroupToTask() - add: projects.view\n  ✓ Would fix addTeamGroup() - add: projects.create\n  ✓ Would fix addTeamMember() - add: projects.create\n  ✓ Would fix toggleChecklistItem() - add: projects.view\n  ✓ Would fix addChecklistItem() - add: projects.view\n  ✓ Would fix unassignUser() - add: projects.view\n  ✓ Would fix assignUser() - add: projects.view\n  ✓ Would fix addComment() - add: projects.create\n  ✓ Would fix getTask() - add: projects.view\n  ✓ Would fix moveTask() - add: projects.view\n  ✓ Would fix listView() - add: projects.view\n  ✓ Would fix show() - add: projects.view\n  ✓ Would fix index() - add: projects.view\n  ✓ Would fix myTasks() - add: projects.view\n  ✓ Would fix dashboard() - add: projects.view\n\n📄 Processing PromotionController...\n  ✓ Would fix applyPromotion() - add: promotion.view\n  ✓ Would fix validateCode() - add: promotion.view\n\n📄 Processing PurchaseBillController...\n📄 Processing PurchaseOrderController...\n📄 Processing PurchasePaymentController...\n📄 Processing PurchaseRequisitionController...\n📄 Processing PurchaseReturnController...\n📄 Processing PurchasesController...\n📄 Processing QualityController...\n📄 Processing QuickBooksController...\n📄 Processing QuoteController...\n  ✓ Would fix declineQuote() - add: quote.view\n  ✓ Would fix acceptQuote() - add: quote.view\n\n📄 Processing QuoteTemplateController...\n📄 Processing RFQController...\n📄 Processing RecruitmentController...\n📄 Processing RecurringTransactionController...\n📄 Processing ReportsController...\n📄 Processing ReturnController...\n  ✓ Would fix complete() - add: return.view\n\n📄 Processing ReviewController...\n📄 Processing RoleController...\n📄 Processing SalesController...\n📄 Processing SalesOrderController...\n📄 Processing SalesReportController...\n  ✓ Would fix getQuoteConversion() - add: sales.view\n  ✓ Would fix getSalesGrowth() - add: sales.view\n  ✓ Would fix getCategoryPerformance() - add: sales.view\n  ✓ Would fix getPaymentAnalytics() - add: sales.view\n  ✓ Would fix getInvoiceAnalytics() - add: sales.view\n  ✓ Would fix getByChannel() - add: sales.view\n  ✓ Would fix getByStatus() - add: sales.view\n  ✓ Would fix getTopCustomers() - add: sales.view\n  ✓ Would fix getTopProducts() - add: sales.view\n  ✓ Would fix getSummary() - add: sales.view\n\n📄 Processing SchedulingController...\n📄 Processing SearchController...\n📄 Processing SeparationController...\n📄 Processing SettingsController...\n📄 Processing ShipmentController...\n📄 Processing ShopFloorController...\n📄 Processing StockMovementController...\n📄 Processing SupplierController...\n📄 Processing SupportController...\n📄 Processing SystemScriptsController...\n📄 Processing TaxFilingController...\n📄 Processing TaxJurisdictionController...\n📄 Processing TaxPaymentController...\n📄 Processing TermsConditionsController...\n⚠️  Skipping TestController (test controller - should be removed)\n📄 Processing TrainingController...\n📄 Processing TransferController...\n📄 Processing UserController...\n📄 Processing UserGroupController...\n📄 Processing VendorPaymentController...\n📄 Processing WarehouseController...\n📄 Processing WorkOrderController...\n═══════════════════════════════════════════════════════════════\nSUMMARY\n═══════════════════════════════════════════════════════════════\nMode: DRY RUN (no changes made)\n\n✅ Complete!','Script executed successfully','2025-11-28 14:21:21'),
(22,'auto_fix_permissions',1,'{\"mode\":\"apply\",\"exclude_auth_only\":\"yes\"}',1,'╔══════════════════════════════════════════════════════════════╗\n║         Permission Auto-Fix Script                          ║\n╚══════════════════════════════════════════════════════════════╝\n\n⚠️  Skipping AITestController (test controller - should be removed)\n📄 Processing AccountController...\n📄 Processing AccountingController...\n📄 Processing ActionMenuEditorController...\n📄 Processing ActivityController...\n⏭️  Skipping AgreementController (intentionally public)\n📄 Processing AgreementTemplateController...\n📄 Processing AnalyticsController...\n📄 Processing AnnouncementController...\n📄 Processing ApiController...\n  ✓ Fixed allUsers() - added: api.view\n  ✓ Fixed usersList() - added: api.view\n  💾 Saved changes (2 methods fixed)\n\n📄 Processing ApplicationController...\n📄 Processing ApprovalsController...\n📄 Processing AssessmentController...\n📄 Processing AssumptionsController...\n📄 Processing AttendanceController...\n📄 Processing AuditLogController...\n⏭️  Skipping AuthController (intentionally public)\n📄 Processing BOMController...\n📄 Processing BackupController...\n  ✓ Fixed showDetails() - added: backup.view\n  ✓ Fixed getStats() - added: backup.view\n  ✓ Fixed getHistory() - added: backup.view\n  ✓ Fixed triggerFullBackup() - added: backup.view\n  ✓ Fixed triggerGitPush() - added: backup.view\n  ✓ Fixed triggerDatabaseBackup() - added: backup.view\n  ✓ Fixed index() - added: backup.view\n  💾 Saved changes (7 methods fixed)\n\n📄 Processing BankAccountController...\n📄 Processing BankImportController...\n📄 Processing BankReconciliationController...\n📄 Processing BatteryQuoteController...\n📄 Processing BudgetController...\n📄 Processing BusinessLineController...\n📄 Processing CRMController...\n📄 Processing CalendarController...\n📄 Processing CameraAuditController...\n📄 Processing CapacityController...\n📄 Processing CategoryController...\n📄 Processing ClientController...\n📄 Processing CompanyController...\n📄 Processing ContactAPIController...\n📄 Processing ContactController...\n📄 Processing ContractController...\n📄 Processing CostingController...\n📄 Processing CreditNoteController...\n📄 Processing CurrencyController...\n📄 Processing CustomReportsController...\n  ✓ Fixed index() - added: reports.view\n  💾 Saved changes (1 methods fixed)\n\n📄 Processing CustomerController...\n📄 Processing CustomerPaymentController...\n📄 Processing DashboardController...\n📄 Processing DataAccessController...\n📄 Processing DebitNoteController...\n📄 Processing DeliveryNoteController...\n📄 Processing DepreciationController...\n📄 Processing DocumentController...\n📄 Processing DocumentationController...\n  ✓ Fixed refreshCoverage() - added: documentation.view\n  ✓ Fixed download() - added: documentation.export\n  ✓ Fixed search() - added: documentation.view\n  ✓ Fixed index() - added: documentation.view\n  💾 Saved changes (4 methods fixed)\n\n📄 Processing DocumentsController...\n📄 Processing EmailController...\n📄 Processing EmailTemplateController...\n📄 Processing EmailWebhookController...\n  ✓ Fixed test() - added: email.view\n  ✓ Fixed receive() - added: email.view\n  💾 Saved changes (2 methods fixed)\n\n📄 Processing EmployeeController...\n📄 Processing EquipmentController...\n📄 Processing EquipmentLineController...\n📄 Processing EquipmentTypeController...\n📄 Processing ExpenseController...\n📄 Processing FileManagerController...\n📄 Processing FinancialPlannerController...\n📄 Processing FinancialProFormaController...\n📄 Processing FixedAssetController...\n📄 Processing ForecasterController...\n📄 Processing Form1099Controller...\n📄 Processing GoodsReceiptController...\n📄 Processing HRController...\n📄 Processing HelpDeskController...\n📄 Processing InternalNoteAPIController...\n📄 Processing InterviewController...\n📄 Processing InventoryController...\n📄 Processing InvoiceController...\n📄 Processing IssueController...\n📄 Processing JobPositionController...\n📄 Processing JournalEntryController...\n📄 Processing LocationController...\n📄 Processing LotSerialController...\n📄 Processing MFAController...\n  ✓ Fixed resendOTP() - added: security.view\n  ✓ Fixed verify() - added: security.approve\n  ✓ Fixed verifyForm() - added: security.approve\n  💾 Saved changes (3 methods fixed)\n\n📄 Processing MRPController...\n📄 Processing MachineDataController...\n  ✓ Fixed health() - added: machine_data.view\n  ✓ Fixed getStatus() - added: machine_data.view\n  💾 Saved changes (2 methods fixed)\n\n📄 Processing MaintenanceController...\n📄 Processing ManufacturingController...\n📄 Processing MenuController...\n📄 Processing MessagingController...\n📄 Processing NDAController...\n  ✓ Fixed declineNDA() - added: nda.view\n  ✓ Fixed signNDA() - added: nda.view\n  ✓ Fixed publicSign() - added: nda.view\n  💾 Saved changes (3 methods fixed)\n\n📄 Processing NDATemplateController...\n📄 Processing NetworkMonitorController...\n  ✓ Fixed logDetail() - added: network_monitor.view\n  ✓ Fixed feed() - added: network_monitor.view\n  ✓ Fixed statistics() - added: network_monitor.view\n  ✓ Fixed logs() - added: network_monitor.view\n  ✓ Fixed status() - added: network_monitor.view\n  💾 Saved changes (5 methods fixed)\n\n📄 Processing NextcloudAdminController...\n📄 Processing NextcloudController...\n  ✓ Fixed viewDocument() - added: nextcloud.view\n  💾 Saved changes (1 methods fixed)\n\n📄 Processing NextcloudProxyController...\n📄 Processing NextcloudSSOController...\n  ✓ Fixed validateToken() - added: nextcloud_sso.view\n  💾 Saved changes (1 methods fixed)\n\n📄 Processing NotificationController...\n  ✓ Fixed delete() - added: notifications.delete\n  ✓ Fixed markAllAsRead() - added: notifications.view\n  ✓ Fixed markAsRead() - added: notifications.view\n  ✓ Fixed getUnread() - added: notifications.view\n  💾 Saved changes (4 methods fixed)\n\n📄 Processing OfferController...\n📄 Processing OpportunityController...\n📄 Processing PaymentController...\n📄 Processing PayrollController...\n📄 Processing PeriodClosingController...\n📄 Processing PermissionGroupController...\n📄 Processing PipedriveImportController...\n  ✓ Fixed getStats() - added: pipedrive_import.view\n  ✓ Fixed viewLog() - added: pipedrive_import.view\n  ✓ Fixed index() - added: pipedrive_import.view\n  💾 Saved changes (3 methods fixed)\n\n📄 Processing PositionController...\n📄 Processing PricingRuleController...\n  ✓ Fixed calculatePrice() - added: pricing_rule.view\n  💾 Saved changes (1 methods fixed)\n\n📄 Processing ProFormaController...\n  ✓ Fixed calculate() - added: pro_forma.view\n  💾 Saved changes (1 methods fixed)\n\n📄 Processing ProductController...\n📄 Processing ProductForecastController...\n  ✓ Fixed gettingStarted() - added: product_forecast.view\n  💾 Saved changes (1 methods fixed)\n\n📄 Processing ProfileController...\n📄 Processing ProjectsController...\n  ✓ Fixed addTaskComment() - added: projects.create\n  ✓ Fixed getTaskComments() - added: projects.view\n  ✓ Fixed autoAllocateResources() - added: projects.view\n  ✓ Fixed resourceDayDetails() - added: projects.view\n  ✓ Fixed resources() - added: projects.view\n  ✓ Fixed addTaskDependency() - added: projects.create\n  ✓ Fixed calculateCriticalPath() - added: projects.view\n  ✓ Fixed gantt() - added: projects.view\n  ✓ Fixed processMigration() - added: projects.view\n  ✓ Fixed migrateTransactions() - added: projects.view\n  ✓ Fixed linkTransactionToTask() - added: projects.view\n  ✓ Fixed editTransaction() - added: projects.edit\n  ✓ Fixed storeTransaction() - added: projects.create\n  ✓ Fixed createTransaction() - added: projects.create\n  ✓ Fixed financials() - added: projects.view\n  ✓ Fixed unassignGroupFromTask() - added: projects.view\n  ✓ Fixed assignGroupToTask() - added: projects.view\n  ✓ Fixed addTeamGroup() - added: projects.create\n  ✓ Fixed addTeamMember() - added: projects.create\n  ✓ Fixed toggleChecklistItem() - added: projects.view\n  ✓ Fixed addChecklistItem() - added: projects.view\n  ✓ Fixed unassignUser() - added: projects.view\n  ✓ Fixed assignUser() - added: projects.view\n  ✓ Fixed addComment() - added: projects.create\n  ✓ Fixed getTask() - added: projects.view\n  ✓ Fixed moveTask() - added: projects.view\n  ✓ Fixed listView() - added: projects.view\n  ✓ Fixed show() - added: projects.view\n  ✓ Fixed index() - added: projects.view\n  ✓ Fixed myTasks() - added: projects.view\n  ✓ Fixed dashboard() - added: projects.view\n  💾 Saved changes (31 methods fixed)\n\n📄 Processing PromotionController...\n  ✓ Fixed applyPromotion() - added: promotion.view\n  ✓ Fixed validateCode() - added: promotion.view\n  💾 Saved changes (2 methods fixed)\n\n📄 Processing PurchaseBillController...\n📄 Processing PurchaseOrderController...\n📄 Processing PurchasePaymentController...\n📄 Processing PurchaseRequisitionController...\n📄 Processing PurchaseReturnController...\n📄 Processing PurchasesController...\n📄 Processing QualityController...\n📄 Processing QuickBooksController...\n📄 Processing QuoteController...\n  ✓ Fixed declineQuote() - added: quote.view\n  ✓ Fixed acceptQuote() - added: quote.view\n  💾 Saved changes (2 methods fixed)\n\n📄 Processing QuoteTemplateController...\n📄 Processing RFQController...\n📄 Processing RecruitmentController...\n📄 Processing RecurringTransactionController...\n📄 Processing ReportsController...\n📄 Processing ReturnController...\n  ✓ Fixed complete() - added: return.view\n  💾 Saved changes (1 methods fixed)\n\n📄 Processing ReviewController...\n📄 Processing RoleController...\n📄 Processing SalesController...\n📄 Processing SalesOrderController...\n📄 Processing SalesReportController...\n  ✓ Fixed getQuoteConversion() - added: sales.view\n  ✓ Fixed getSalesGrowth() - added: sales.view\n  ✓ Fixed getCategoryPerformance() - added: sales.view\n  ✓ Fixed getPaymentAnalytics() - added: sales.view\n  ✓ Fixed getInvoiceAnalytics() - added: sales.view\n  ✓ Fixed getByChannel() - added: sales.view\n  ✓ Fixed getByStatus() - added: sales.view\n  ✓ Fixed getTopCustomers() - added: sales.view\n  ✓ Fixed getTopProducts() - added: sales.view\n  ✓ Fixed getSummary() - added: sales.view\n  💾 Saved changes (10 methods fixed)\n\n📄 Processing SchedulingController...\n📄 Processing SearchController...\n📄 Processing SeparationController...\n📄 Processing SettingsController...\n📄 Processing ShipmentController...\n📄 Processing ShopFloorController...\n📄 Processing StockMovementController...\n📄 Processing SupplierController...\n📄 Processing SupportController...\n📄 Processing SystemScriptsController...\n📄 Processing TaxFilingController...\n📄 Processing TaxJurisdictionController...\n📄 Processing TaxPaymentController...\n📄 Processing TermsConditionsController...\n⚠️  Skipping TestController (test controller - should be removed)\n📄 Processing TrainingController...\n📄 Processing TransferController...\n📄 Processing UserController...\n📄 Processing UserGroupController...\n📄 Processing VendorPaymentController...\n📄 Processing WarehouseController...\n📄 Processing WorkOrderController...\n═══════════════════════════════════════════════════════════════\nSUMMARY\n═══════════════════════════════════════════════════════════════\nFiles modified: 21\nMethods fixed: 87\n\nPermissions used: 26\n\n📋 Next Steps:\n1. Review the changes in your controllers\n2. Add missing permissions to database:\n   php scripts/generate_missing_permissions_sql.php > missing.sql\n   mysql -u rpmbbu brickwal_m1_ds < missing.sql\n3. Assign permissions to roles: http://localhost:8080/roles/111/edit\n4. Test the application thoroughly\n5. Run audit again: php scripts/audit_permissions.php | head -30\n\n✅ Complete!','Script executed successfully','2025-11-28 14:22:15'),
(23,'generate_missing_permissions_sql',1,'[]',0,'-- Missing Permissions SQL\n-- Generated: 2025-11-28 14:23:59\n-- Total missing: 166\n\n-- 1 Module Permissions\nPHP Fatal error:  Uncaught Error: Call to undefined method Database::quote() in /Users/rpmbbu/LocalPHPStorm/m1_erp_web/scripts/generate_missing_permissions_sql.php:114\nStack trace:\n#0 /Users/rpmbbu/LocalPHPStorm/m1_erp_web/scripts/generate_missing_permissions_sql.php(53): MissingPermissionsGenerator->generateSQL(Array)\n#1 /Users/rpmbbu/LocalPHPStorm/m1_erp_web/scripts/generate_missing_permissions_sql.php(136): MissingPermissionsGenerator->generate()\n#2 {main}\n  thrown in /Users/rpmbbu/LocalPHPStorm/m1_erp_web/scripts/generate_missing_permissions_sql.php on line 114\n\nFatal error: Uncaught Error: Call to undefined method Database::quote() in /Users/rpmbbu/LocalPHPStorm/m1_erp_web/scripts/generate_missing_permissions_sql.php:114\nStack trace:\n#0 /Users/rpmbbu/LocalPHPStorm/m1_erp_web/scripts/generate_missing_permissions_sql.php(53): MissingPermissionsGenerator->generateSQL(Array)\n#1 /Users/rpmbbu/LocalPHPStorm/m1_erp_web/scripts/generate_missing_permissions_sql.php(136): MissingPermissionsGenerator->generate()\n#2 {main}\n  thrown in /Users/rpmbbu/LocalPHPStorm/m1_erp_web/scripts/generate_missing_permissions_sql.php on line 114','Script execution failed with exit code 255','2025-11-28 14:23:59'),
(24,'generate_missing_permissions_sql',1,'[]',1,'-- Missing Permissions SQL\n-- Generated: 2025-11-28 14:26:52\n-- Total missing: 166\n\n-- 1 Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\n','Script executed successfully','2025-11-28 14:26:52'),
(25,'generate_missing_permissions_sql',1,'[]',1,'-- Missing Permissions SQL\n-- Generated: 2025-11-28 14:28:52\n-- Total missing: 16\n\n-- api Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'api.view\', \'api\', \'View Api\');\n\n-- documentation Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'documentation.export\', \'documentation\', \'Export Documentation\');\n\n-- email Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'email.view\', \'email\', \'View Email\');\n\n-- machine_data Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'machine_data.view\', \'machine_data\', \'View Machine Data\');\n\n-- nda Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'nda.view\', \'nda\', \'View Nda\');\n\n-- nextcloud_sso Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'nextcloud_sso.view\', \'nextcloud_sso\', \'View Nextcloud Sso\');\n\n-- notifications Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'notifications.delete\', \'notifications\', \'Delete Notifications\');\nINSERT INTO permissions (name, module, description) VALUES (\'notifications.view\', \'notifications\', \'View Notifications\');\n\n-- pipedrive_import Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'pipedrive_import.view\', \'pipedrive_import\', \'View Pipedrive Import\');\n\n-- pricing_rule Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'pricing_rule.view\', \'pricing_rule\', \'View Pricing Rule\');\n\n-- pro_forma Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'pro_forma.view\', \'pro_forma\', \'View Pro Forma\');\n\n-- promotion Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'promotion.view\', \'promotion\', \'View Promotion\');\n\n-- quote Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'quote.view\', \'quote\', \'View Quote\');\n\n-- return Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'return.view\', \'return\', \'View Return\');\n\n-- security Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'security.approve\', \'security\', \'Approve Security\');\nINSERT INTO permissions (name, module, description) VALUES (\'security.view\', \'security\', \'View Security\');\n','Script executed successfully','2025-11-28 14:28:52'),
(26,'scan_permissions',1,'{\"mode\":\"live\"}',1,'\n\n\n\n\n================================================================================\nPERMISSION SCANNER & SYNC UTILITY\nMODE: LIVE (changes WILL be applied to database)\n================================================================================\n\n📚 LOADING DATABASE PERMISSIONS\n--------------------------------------------------------------------------------\n  Loaded 420 permissions from database\n\n🔍 SCANNING CONTROLLERS\n--------------------------------------------------------------------------------\n  Scanned 147 controller files\n  Found 138 files with permission checks\n  Discovered 166 unique permissions\n\n📋 DISCOVERED PERMISSIONS REPORT\n--------------------------------------------------------------------------------\n  Permission                               Checks   Controllers\n--------------------------------------------------------------------------------\n\n  (CORE):\n  admin                                    101      ActionMenuEditorController,... ✓\n\n  1099_CONTRACTORS:\n  1099_contractors.export                  1        Form1099Controller ✓\n  1099_contractors.generate_reports        1        Form1099Controller ✓\n  1099_contractors.view                    1        Form1099Controller ✓\n  1099_contractors.view_payments           1        Form1099Controller ✓\n\n  ACCOUNTING:\n  accounting.approve                       3        ExpenseController ✓\n  accounting.create                        30       AccountController, BankAcco... ✓\n  accounting.customer_payments.create      2        CustomerPaymentController ✓\n  accounting.customer_payments.view        2        CustomerPaymentController ✓\n  accounting.delete                        21       BankAccountController, Budg... ✓\n  accounting.edit                          25       BankAccountController, Bank... ✓\n  accounting.vendor_payments.create        4        VendorPaymentController ✓\n  accounting.vendor_payments.delete        1        VendorPaymentController ✓\n  accounting.vendor_payments.edit          2        VendorPaymentController ✓\n  accounting.vendor_payments.print_checks  1        VendorPaymentController ✓\n  accounting.vendor_payments.view          3        VendorPaymentController ✓\n  accounting.vendor_payments.void          1        VendorPaymentController ✓\n  accounting.view                          36       AccountController, Accounti... ✓\n\n  ADMIN:\n  admin.agreement_templates                9        AgreementTemplateController ✓\n  admin.create                             7        PipedriveImportController, ... ✓\n  admin.delete                             2        QuickBooksController, UserG... ✓\n  admin.edit                               5        QuickBooksController, UserG... ✓\n  admin.settings                           1        PipedriveImportController ✓\n  admin.system_scripts                     3        SystemScriptsController ✓\n\n  API:\n  api.view                                 2        ApiController ✓\n\n  AUDIT_LOGS:\n  audit_logs.view                          1        AuditLogController ✓\n\n  BACKUP:\n  backup.view                              7        BackupController ✓\n\n  BANK_IMPORT:\n  bank_import.create                       2        BankImportController ✓\n  bank_import.delete                       1        BankImportController ✓\n  bank_import.edit                         2        BankImportController ✓\n  bank_import.import                       1        BankImportController ✓\n  bank_import.manage_rules                 4        BankImportController ✓\n  bank_import.view                         2        BankImportController ✓\n\n  CALENDAR:\n  calendar.create                          1        CalendarController ✓\n  calendar.delete                          1        CalendarController ✓\n  calendar.edit                            1        CalendarController ✓\n\n  CAMERA_AUDIT:\n  camera_audit.capture                     1        CameraAuditController ✓\n  camera_audit.delete                      1        CameraAuditController ✓\n  camera_audit.stations                    3        CameraAuditController ✓\n  camera_audit.verify                      1        CameraAuditController ✓\n  camera_audit.view                        3        CameraAuditController ✓\n\n  CRM:\n  crm.create                               11       ActivityController, ClientC... ✓\n  crm.delete                               13       ActivityController, ClientC... ✓\n  crm.edit                                 13       ActivityController, ClientC... ✓\n  crm.view                                 55       ActivityController, CRMCont... ✓\n\n  DASHBOARD:\n  dashboard.edit                           2        DashboardController ✓\n\n  DOCUMENTATION:\n  documentation.export                     1        DocumentationController ✓\n  documentation.view                       3        DocumentationController ✓\n\n  DOCUMENTS:\n  documents.create                         1        DocumentsController ✓\n  documents.delete                         1        DocumentsController ✓\n\n  EMAIL:\n  email.view                               2        EmailWebhookController ✓\n\n  FORECASTING:\n  forecasting.create                       10       FinancialPlannerController,... ✓\n  forecasting.delete                       8        ForecasterController ✓\n  forecasting.edit                         16       FinancialPlannerController,... ✓\n  forecasting.generate_projections         1        ProductForecastController ✓\n  forecasting.manage_assumptions           5        AssumptionsController ✓\n  forecasting.manage_products              3        ProductForecastController ✓\n  forecasting.update_daily                 3        AssumptionsController ✓\n  forecasting.view                         9        FinancialPlannerController,... ✓\n  forecasting.view_actuals                 1        AssumptionsController ✓\n  forecasting.view_proforma                7        FinancialProFormaController... ✓\n\n  HR:\n  hr.create                                28       ApplicationController, Asse... ✓\n  hr.delete                                16       ApplicationController, Asse... ✓\n  hr.edit                                  25       ApplicationController, Asse... ✓\n  hr.view                                  30       ApplicationController, Asse... ✓\n\n  INVENTORY:\n  inventory.create                         9        CategoryController, Locatio... ✓\n  inventory.delete                         10       CategoryController, Locatio... ✓\n  inventory.edit                           7        CategoryController, Locatio... ✓\n  inventory.manage                         12       CategoryController, StockMo... ✓\n  inventory.view                           20       CategoryController, Invento... ✓\n\n  MACHINE_DATA:\n  machine_data.view                        2        MachineDataController ✓\n\n  MANUFACTURING:\n  manufacturing.approve                    2        MRPController ✓\n  manufacturing.create                     13       BOMController, BusinessLine... ✓\n  manufacturing.delete                     6        BusinessLineController, Equ... ✓\n  manufacturing.edit                       44       BOMController, BusinessLine... ✓\n  manufacturing.view                       53       AnalyticsController, BOMCon... ✓\n\n  MESSAGING:\n  messaging.create                         1        MessagingController ✓\n  messaging.delete                         1        MessagingController ✓\n  messaging.edit                           2        MessagingController ✓\n\n  NDA:\n  nda.view                                 3        NDAController ✓\n\n  NDAS:\n  ndas.countersign                         2        NDAController ✓\n  ndas.create                              2        NDAController ✓\n  ndas.delete                              1        NDAController ✓\n  ndas.edit                                2        NDAController ✓\n  ndas.send                                2        NDAController ✓\n  ndas.view                                5        NDAController ✓\n\n  NETWORK_MONITOR:\n  network_monitor.manage                   3        NetworkMonitorController ✓\n  network_monitor.view                     6        NetworkMonitorController ✓\n\n  NEXTCLOUD:\n  nextcloud.delete                         1        NextcloudController ✓\n  nextcloud.manage                         7        NextcloudAdminController, N... ✓\n  nextcloud.upload                         6        NextcloudController ✓\n  nextcloud.view                           8        NextcloudController ✓\n\n  NEXTCLOUD_SSO:\n  nextcloud_sso.view                       1        NextcloudSSOController ✓\n\n  NOTIFICATIONS:\n  notifications.delete                     1        NotificationController ✓\n  notifications.view                       3        NotificationController ✓\n\n  PAYROLL:\n  payroll.view                             1        PayrollController ✓\n\n  PERMISSIONS:\n  permissions.manage                       10       PermissionGroupController ✓\n\n  PIPEDRIVE_IMPORT:\n  pipedrive_import.view                    3        PipedriveImportController ✓\n\n  PRICING_RULE:\n  pricing_rule.view                        1        PricingRuleController ✓\n\n  PRO_FORMA:\n  pro_forma.view                           1        ProFormaController ✓\n\n  PROCUREMENT:\n  procurement.approve                      2        PurchaseRequisitionController ✓\n  procurement.create                       16       DebitNoteController, GoodsR... ✓\n  procurement.delete                       12       DebitNoteController, GoodsR... ✓\n  procurement.edit                         12       DebitNoteController, Purcha... ✓\n  procurement.view                         18       DebitNoteController, GoodsR... ✓\n\n  PRODUCT_FORECAST:\n  product_forecast.view                    3        ProductForecastController ✓\n\n  PROFILE:\n  profile.edit                             2        ProfileController ✓\n\n  PROJECTS:\n  projects.create                          10       ProjectsController ✓\n  projects.delete                          5        ProjectsController ✓\n  projects.edit                            10       ProjectsController ✓\n  projects.view                            28       ProjectsController ✓\n\n  PROMOTION:\n  promotion.view                           2        PromotionController ✓\n\n  PURCHASES:\n  purchases.create                         3        SupplierController ✓\n  purchases.delete                         3        SupplierController ✓\n  purchases.edit                           2        SupplierController ✓\n  purchases.view                           3        PurchasesController, Suppli... ✓\n\n  PURCHASING:\n  purchasing.create                        1        MRPController ✓\n\n  QUOTE:\n  quote.view                               2        QuoteController ✓\n\n  RECURRING_TEMPLATES:\n  recurring_templates.activate             1        RecurringTransactionController ✓\n  recurring_templates.create               2        RecurringTransactionController ✓\n  recurring_templates.delete               1        RecurringTransactionController ✓\n  recurring_templates.edit                 2        RecurringTransactionController ✓\n  recurring_templates.execute              2        RecurringTransactionController ✓\n  recurring_templates.view                 3        RecurringTransactionController ✓\n\n  REPORTS:\n  reports.create                           2        CustomReportsController ✓\n  reports.delete                           1        CustomReportsController ✓\n  reports.edit                             2        CustomReportsController ✓\n  reports.view                             8        CustomReportsController, Re... ✓\n\n  RETURN:\n  return.view                              1        ReturnController ✓\n\n  ROLES:\n  roles.create                             2        RoleController ✓\n  roles.delete                             1        RoleController ✓\n  roles.edit                               2        RoleController ✓\n  roles.view                               4        RoleController ✓\n\n  SALES:\n  sales.agreements.create                  3        AgreementController ✓\n  sales.agreements.delete                  3        AgreementController ✓\n  sales.agreements.edit                    3        AgreementController ✓\n  sales.agreements.send                    2        AgreementController ✓\n  sales.agreements.view                    5        AgreementController ✓\n  sales.approve                            2        ReturnController ✓\n  sales.create                             28       BatteryQuoteController, Cre... ✓\n  sales.delete                             23       BatteryQuoteController, Cre... ✓\n  sales.edit                               20       BatteryQuoteController, Inv... ✓\n  sales.view                               44       BatteryQuoteController, Cre... ✓\n\n  SECURITY:\n  security.approve                         2        MFAController ✓\n  security.view                            1        MFAController ✓\n\n  SETTINGS:\n  settings.edit                            23       MenuController, TermsCondit... ✓\n  settings.view                            4        MenuController, TermsCondit... ✓\n\n  SYSTEM:\n  system.backup                            1        BackupController ✓\n  system.edit                              1        ProfileController ✓\n  system.files.delete                      3        FileManagerController ✓\n\n  TAX_JURISDICTIONS:\n  tax_jurisdictions.create                 2        TaxJurisdictionController ✓\n  tax_jurisdictions.delete                 1        TaxJurisdictionController ✓\n  tax_jurisdictions.edit                   3        TaxJurisdictionController ✓\n  tax_jurisdictions.view                   2        TaxJurisdictionController ✓\n\n  TAX_PAYMENTS:\n  tax_payments.create                      2        TaxPaymentController ✓\n  tax_payments.edit                        4        TaxPaymentController ✓\n  tax_payments.file                        1        TaxPaymentController ✓\n  tax_payments.view                        2        TaxPaymentController ✓\n\n  TAX_REPORTS:\n  tax_reports.view                         1        TaxPaymentController ✓\n\n  TICKETS:\n  tickets.create                           4        HelpDeskController, Support... ✓\n  tickets.delete                           2        SupportController ✓\n  tickets.edit                             2        HelpDeskController, Support... ✓\n\n  USERS:\n  users.create                             2        UserController ✓\n  users.delete                             3        UserController ✓\n  users.edit                               2        UserController ✓\n  users.view                               3        UserController ✓\n\n➕ CREATING MISSING PERMISSIONS\n--------------------------------------------------------------------------------\n  ✓ All discovered permissions exist in database\n\n🗑️  UNUSED PERMISSIONS\n--------------------------------------------------------------------------------\n  Found 254 permissions in database not used in controllers:\n\n  (CORE):\n    - agreements.view - \"View Agreements\"\n    - ai-test.view - \"View AI Testing\"\n    - analytics.view - \"View analytics\"\n    - announcements.view - \"View Announcements\"\n    - assumptions.view - \"View Daily Update\"\n    - audit-logs.view - \"View Audit Log\"\n    - calendar.view - \"View calendar\"\n    - companies.view - \"View Companies\"\n    - creditnotes.view - \"View Credit Notes\"\n    - dashboard.view - \"View dashboard\"\n    ... and 14 more\n\n  1099:\n    - 1099_contractors.manage - \"Manage 1099 contractor designations\"\n    - 1099_filings.file - \"File 1099 forms\"\n    - 1099_filings.prepare - \"Prepare 1099 forms\"\n    - 1099_payments.manage - \"Manage 1099 payment classifications\"\n    - 1099_payments.view - \"View 1099 reportable payments\"\n    - 1099_reports.view - \"View 1099 reports\"\n\n  ACCOUNTING:\n    - accounting.customer_payments.delete - \"Delete customer payments\"\n    - accounting.customer_payments.edit - \"Edit customer payments\"\n    - accounting.post - \"Post journal entries\"\n    - accounts.create - \"Create accounts\"\n    - accounts.delete - \"Delete accounts\"\n    - accounts.edit - \"Edit accounts\"\n    - accounts.view - \"View chart of accounts\"\n    - bank_accounts.create - \"Create bank accounts\"\n    - bank_accounts.edit - \"Edit bank accounts\"\n    - bank_accounts.view - \"View bank accounts\"\n    ... and 21 more\n\n  AUDIT:\n    - audit_trail.export - \"Export audit trail\"\n    - audit_trail.view - \"View audit trail\"\n\n  AUTOMATION:\n    - automation.view - \"View Templates\"\n\n  BANK_IMPORT:\n    - bank_import.categorize - \"Categorize imported transactions\"\n    - bank_import.rules - \"Manage categorization rules\"\n\n  CREDIT_NOTES:\n    - credit_notes.apply - \"Apply Credit Notes to Invoices\"\n    - credit_notes.auto_apply - \"Auto-apply Credit Notes\"\n    - credit_notes.reverse - \"Reverse Credit Note Applications\"\n    - credit_notes.view_balances - \"View Customer Credit Balances\"\n\n  CRM:\n    - activities.create - \"Create CRM activities\"\n    - activities.edit - \"Edit CRM activities\"\n    - activities.view - \"View CRM activities\"\n    - clients.create - \"Create clients\"\n    - clients.delete - \"Delete clients\"\n    - clients.edit - \"Edit clients\"\n    - clients.view - \"View clients\"\n    - contacts.create - \"Create contacts\"\n    - contacts.delete - \"Delete contacts\"\n    - contacts.edit - \"Edit contacts\"\n    ... and 14 more\n\n  DOCUMENTS:\n    - documents.edit - \"Edit documents\"\n    - documents.upload - \"Upload documents\"\n\n  HELPDESK:\n    - tickets.assign - \"Assign support tickets\"\n    - tickets.close - \"Close support tickets\"\n    - tickets.view - \"View support tickets\"\n\n  HR:\n    - applications.create - \"Create job applications\"\n    - applications.edit - \"Edit job applications\"\n    - applications.view - \"View job applications\"\n    - assessments.create - \"Create assessments\"\n    - assessments.view - \"View assessments\"\n    - attendance.create - \"Record attendance\"\n    - attendance.view - \"View attendance\"\n    - contracts.create - \"Create employee contracts\"\n    - contracts.edit - \"Edit employee contracts\"\n    - contracts.view - \"View employee contracts\"\n    ... and 31 more\n\n  INVENTORY:\n    - camera_audit.annotate - \"Add annotations to audit images\"\n    - camera_audit.export - \"Export camera audit data\"\n    - categories.create - \"Create product categories\"\n    - categories.delete - \"Delete product categories\"\n    - categories.edit - \"Edit product categories\"\n    - categories.view - \"View product categories\"\n    - inventory.adjust - \"Adjust inventory levels\"\n    - lots.create - \"Create lot/serial numbers\"\n    - lots.edit - \"Edit lot/serial numbers\"\n    - lots.view - \"View lot/serial numbers\"\n    ... and 11 more\n\n  MANUFACTURING:\n    - boms.create - \"Create bills of materials\"\n    - boms.delete - \"Delete bills of materials\"\n    - boms.edit - \"Edit bills of materials\"\n    - boms.view - \"View bills of materials\"\n    - capacity.edit - \"Edit capacity planning\"\n    - capacity.view - \"View capacity planning\"\n    - equipment.create - \"Create equipment\"\n    - equipment.edit - \"Edit equipment\"\n    - equipment.maintenance - \"Perform equipment maintenance\"\n    - equipment.view - \"View equipment\"\n    ... and 11 more\n\n  MARKETING:\n    - campaigns.create - \"Create email campaigns\"\n    - campaigns.edit - \"Edit email campaigns\"\n    - campaigns.send - \"Send email campaigns\"\n    - campaigns.view - \"View email campaigns\"\n    - lists.create - \"Create mailing lists\"\n    - lists.view - \"View mailing lists\"\n    - templates.create - \"Create email templates\"\n    - templates.view - \"View email templates\"\n\n  PURCHASES:\n    - bills.approve - \"Approve supplier bills\"\n    - bills.create - \"Create supplier bills\"\n    - bills.view - \"View supplier bills\"\n    - goods_receipts.create - \"Create goods receipts\"\n    - goods_receipts.view - \"View goods receipts\"\n    - purchase_orders.approve - \"Approve purchase orders\"\n    - purchase_orders.create - \"Create purchase orders\"\n    - purchase_orders.delete - \"Delete purchase orders\"\n    - purchase_orders.edit - \"Edit purchase orders\"\n    - purchase_orders.view - \"View purchase orders\"\n    ... and 9 more\n\n  REPORTS:\n    - reports.export - \"Export reports\"\n\n  SALES:\n    - delivery_notes.create - \"Create delivery notes\"\n    - delivery_notes.view - \"View delivery notes\"\n    - invoices.create - \"Create invoices\"\n    - invoices.delete - \"Delete invoices\"\n    - invoices.edit - \"Edit invoices\"\n    - invoices.view - \"View invoices\"\n    - orders.approve - \"Approve sales orders\"\n    - orders.create - \"Create sales orders\"\n    - orders.delete - \"Delete sales orders\"\n    - orders.edit - \"Edit sales orders\"\n    ... and 22 more\n\n  SECURITY:\n    - mfa.admin_override - \"Admin: Override MFA for any user\"\n    - mfa.manage_own - \"Manage own MFA settings\"\n    - security.view_audit - \"View security audit logs\"\n\n  STATEMENTS:\n    - statements.bulk_generate - \"Generate Bulk Statements\"\n    - statements.email - \"Email Statements to Customers\"\n    - statements.generate - \"Generate Customer Statements\"\n    - statements.view_history - \"View Statement History\"\n\n  SYSTEM:\n    - files.delete - \"Delete files and folders\"\n    - files.manage - \"Manage all files and folders\"\n    - files.upload - \"Upload files\"\n\n  TAX:\n    - tax_exemptions.manage - \"Manage tax exemptions\"\n    - tax_exemptions.view - \"View tax exemptions\"\n\n  ⚠️  NOTE: These may be used in views or future features.\n  Review carefully before deleting.\n\n📊 COVERAGE STATISTICS\n--------------------------------------------------------------------------------\n  Permissions in database:        420\n  Permissions in controllers:     166\n  Matching (in both):             166\n  Missing from database:          0\n  Unused in controllers:          254\n  Coverage:                       100%\n\n  PERMISSIONS BY MODULE:\n    accounting                      13 permissions\n    sales                           10 permissions\n    forecasting                     10 permissions\n    admin                            6 permissions\n    bank_import                      6 permissions\n    ndas                             6 permissions\n    recurring_templates              6 permissions\n    manufacturing                    5 permissions\n    camera_audit                     5 permissions\n    inventory                        5 permissions\n\n\n================================================================================\nSCAN COMPLETE\n================================================================================\n','Script executed successfully','2025-11-28 14:32:22'),
(27,'test_permission_system',1,'[]',1,'=== PERMISSION SYSTEM TEST SUITE ===\n\nRunning comprehensive tests...\n\nTEST 1: Menu Items Have Valid Permissions\n------------------------------------------------------------\n✅ PASS: All menu items reference valid permissions\n\nTEST 2: Controller Permissions Exist in Database\n------------------------------------------------------------\n✅ PASS: All 171 permissions used in controllers exist\n\nTEST 3: All Roles Have Permissions\n------------------------------------------------------------\n⚠️  WARNING: 17 roles have no permissions:\n  - Accounts Payable Manager (ID 70)\n  - Accounts Receivable Manager (ID 72)\n  - VP/Director of Sales (ID 76)\n  - Customer Service Manager (ID 79)\n  - Customer Service Representative (ID 80)\n  - Purchasing Manager (ID 85)\n  - Inventory Controller (ID 87)\n  - VP/Director of Manufacturing (ID 88)\n  - Quality Manager (ID 92)\n  - Quality Inspector (ID 93)\n  - HR Coordinator (ID 96)\n  - Recruiting Manager (ID 97)\n  - Payroll Manager (ID 99)\n  - System Administrator (ID 100)\n  - IT Manager (ID 101)\n  - VP/Director of Business Development (ID 132)\n  - VP/Director of Autonomous Systems (ID 133)\n\nTEST 4: Permissions Are Grouped\n------------------------------------------------------------\n⚠️  WARNING: 503 permissions are not grouped:\n  - projects.view: View projects\n  - helpdesk.view: View help desk module\n  - documents.view: View documents\n  - messaging.view: View messaging module\n  - marketing.view: View marketing module\n  - analytics.view: View analytics\n  - salesorders.view: View SALES\n  - announcements.view: View Announcements\n  - audit-logs.view: View Audit Log\n  - backup.view: View System Backup\n  ... and 493 more\n\nTEST 5: Menu Permissions Match Controller Checks\n------------------------------------------------------------\n✅ PASS: Checked 20 menu items\n\nTEST 6: No Duplicate Permission Names\n------------------------------------------------------------\n✅ PASS: No duplicate permission names found\n\nTEST 7: All Users Have Valid Roles\n------------------------------------------------------------\n✅ PASS: All users have valid roles\n\n=== TEST SUMMARY ===\nTests passed: 5 / 7\nErrors: 0\nWarnings: 18\n\n⚠️  WARNINGS:\n1. Role \'Accounts Payable Manager\' has no permissions assigned\n2. Role \'Accounts Receivable Manager\' has no permissions assigned\n3. Role \'VP/Director of Sales\' has no permissions assigned\n4. Role \'Customer Service Manager\' has no permissions assigned\n5. Role \'Customer Service Representative\' has no permissions assigned\n6. Role \'Purchasing Manager\' has no permissions assigned\n7. Role \'Inventory Controller\' has no permissions assigned\n8. Role \'VP/Director of Manufacturing\' has no permissions assigned\n9. Role \'Quality Manager\' has no permissions assigned\n10. Role \'Quality Inspector\' has no permissions assigned\n11. Role \'HR Coordinator\' has no permissions assigned\n12. Role \'Recruiting Manager\' has no permissions assigned\n13. Role \'Payroll Manager\' has no permissions assigned\n14. Role \'System Administrator\' has no permissions assigned\n15. Role \'IT Manager\' has no permissions assigned\n16. Role \'VP/Director of Business Development\' has no permissions assigned\n17. Role \'VP/Director of Autonomous Systems\' has no permissions assigned\n18. 503 permissions are not assigned to permission groups\n\n⚠️  TESTS PASSED WITH WARNINGS','Script executed successfully','2025-11-28 22:42:24'),
(28,'update_excalidraw',1,'{\"force\":\"no\"}',1,'\n# Excalidraw Update Script\n# Downloads the latest Excalidraw standalone build and checks for updates\n# Usage: ./scripts/update-excalidraw.sh [--force]\n\nset -e\n\n# Configuration\nEXCALIDRAW_DIR=\"/Users/rpmbbu/LocalPHPStorm/m1_erp_web/public/assets/excalidraw\"\nCURRENT_VERSION_FILE=\"$EXCALIDRAW_DIR/.version\"\nEXCALIDRAW_CDN=\"https://unpkg.com/@excalidraw/excalidraw\"\nFORCE_UPDATE=false\n\n# Parse arguments\nif [[ \"$1\" == \"--force\" ]]; then\n    FORCE_UPDATE=true\nfi\n\n# Colors for output\nRED=\'\\033[0;31m\'\nGREEN=\'\\033[0;32m\'\nYELLOW=\'\\033[1;33m\'\nNC=\'\\033[0m\' # No Color\n\necho \"================================================\"\necho \"Excalidraw Local Update Script\"\necho \"================================================\"\necho \"\"\n\n# Create directory if it doesn\'t exist\nmkdir -p \"$EXCALIDRAW_DIR\"\n\n# Function to get latest version from npm\nget_latest_version() {\n    echo \"Checking latest version from npm...\"\n    LATEST_VERSION=$(curl -s https://registry.npmjs.org/@excalidraw/excalidraw/latest | grep -o \'\"version\":\"[^\"]*\"\' | cut -d\'\"\' -f4)\n    if [ -z \"$LATEST_VERSION\" ]; then\n        echo -e \"${RED}Error: Could not fetch latest version${NC}\"\n        exit 1\n    fi\n    echo -e \"${GREEN}Latest version: $LATEST_VERSION${NC}\"\n}\n\n# Function to get current version\nget_current_version() {\n    if [ -f \"$CURRENT_VERSION_FILE\" ]; then\n        CURRENT_VERSION=$(cat \"$CURRENT_VERSION_FILE\")\n        echo -e \"${GREEN}Current version: $CURRENT_VERSION${NC}\"\n    else\n        CURRENT_VERSION=\"\"\n        echo -e \"${YELLOW}No current version found${NC}\"\n    fi\n}\n\n# Function to download Excalidraw\ndownload_excalidraw() {\n    local version=$1\n    echo \"\"\n    echo \"Downloading Excalidraw v$version...\"\n\n    # Download main files\n    echo \"  → Downloading excalidraw.min.js...\"\n    curl -s -o \"$EXCALIDRAW_DIR/excalidraw.min.js\" \\\n        \"$EXCALIDRAW_CDN@$version/dist/excalidraw.production.min.js\"\n\n    echo \"  → Downloading excalidraw.min.css...\"\n    curl -s -o \"$EXCALIDRAW_DIR/excalidraw.min.css\" \\\n        \"$EXCALIDRAW_CDN@$version/dist/excalidraw.min.css\"\n\n    # Download assets\n    echo \"  → Downloading fonts and assets...\"\n    mkdir -p \"$EXCALIDRAW_DIR/fonts\"\n\n    # Download common fonts (these don\'t change often)\n    curl -s -o \"$EXCALIDRAW_DIR/fonts/Virgil.woff2\" \\\n        \"https://unpkg.com/@excalidraw/excalidraw@$version/dist/excalidraw-assets/Virgil.woff2\" || true\n    curl -s -o \"$EXCALIDRAW_DIR/fonts/Cascadia.woff2\" \\\n        \"https://unpkg.com/@excalidraw/excalidraw@$version/dist/excalidraw-assets/Cascadia.woff2\" || true\n\n    # Save version\n    echo \"$version\" > \"$CURRENT_VERSION_FILE\"\n\n    echo -e \"${GREEN}✓ Download complete!${NC}\"\n}\n\n# Function to create wrapper\ncreate_wrapper() {\n    echo \"\"\n    echo \"Creating local wrapper...\"\n\n    cat > \"$EXCALIDRAW_DIR/excalidraw-wrapper.js\" << \'EOF\'\n/**\n * Excalidraw Local Wrapper\n * Provides a simple interface to initialize Excalidraw locally\n */\n\nexport function initExcalidraw(containerId, options = {}) {\n    const container = typeof containerId === \'string\'\n        ? document.getElementById(containerId)\n        : containerId;\n\n    if (!container) {\n        throw new Error(\'Container not found: \' + containerId);\n    }\n\n    // Load Excalidraw CSS\n    const cssId = \'excalidraw-styles\';\n    if (!document.getElementById(cssId)) {\n        const link = document.createElement(\'link\');\n        link.id = cssId;\n        link.rel = \'stylesheet\';\n        link.href = \'/assets/excalidraw/excalidraw.min.css\';\n        document.head.appendChild(link);\n    }\n\n    // Load Excalidraw script\n    return new Promise((resolve, reject) => {\n        const scriptId = \'excalidraw-script\';\n        if (window.ExcalidrawLib) {\n            initExcalidrawInstance(container, options, resolve);\n            return;\n        }\n\n        if (!document.getElementById(scriptId)) {\n            const script = document.createElement(\'script\');\n            script.id = scriptId;\n            script.src = \'/assets/excalidraw/excalidraw.min.js\';\n            script.onload = () => {\n                initExcalidrawInstance(container, options, resolve);\n            };\n            script.onerror = reject;\n            document.head.appendChild(script);\n        }\n    });\n}\n\nfunction initExcalidrawInstance(container, options, callback) {\n    const {\n        initialData,\n        theme = \'light\',\n        onChange,\n        onReady\n    } = options;\n\n    // Wait for React and Excalidraw to be ready\n    if (typeof window.React === \'undefined\' || typeof window.ExcalidrawLib === \'undefined\') {\n        setTimeout(() => initExcalidrawInstance(container, options, callback), 100);\n        return;\n    }\n\n    const React = window.React;\n    const ReactDOM = window.ReactDOM;\n    const { Excalidraw, MainMenu } = window.ExcalidrawLib;\n\n    let excalidrawAPI = null;\n\n    const excalidrawElement = React.createElement(Excalidraw, {\n        initialData: initialData || { elements: [], appState: {} },\n        theme: theme,\n        onChange: (elements, appState, files) => {\n            if (onChange) onChange(elements, appState, files);\n        },\n        ref: (api) => {\n            if (api) {\n                excalidrawAPI = api;\n                if (onReady) onReady(api);\n            }\n        }\n    });\n\n    const root = ReactDOM.createRoot(container);\n    root.render(excalidrawElement);\n\n    callback({\n        api: excalidrawAPI,\n        root: root\n    });\n}\nEOF\n\n    echo -e \"${GREEN}✓ Wrapper created${NC}\"\n}\n\n# Main execution\nget_latest_version\nget_current_version\n\n# Check if update is needed\nif [ \"$FORCE_UPDATE\" = true ]; then\n    echo -e \"${YELLOW}Force update requested${NC}\"\n    download_excalidraw \"$LATEST_VERSION\"\n    create_wrapper\nelif [ \"$CURRENT_VERSION\" != \"$LATEST_VERSION\" ]; then\n    echo -e \"${YELLOW}Update available: $CURRENT_VERSION → $LATEST_VERSION${NC}\"\n    read -p \"Update now? (y/n) \" -n 1 -r\n    echo\n    if [[ $REPLY =~ ^[Yy]$ ]]; then\n        download_excalidraw \"$LATEST_VERSION\"\n        create_wrapper\n    else\n        echo \"Update skipped\"\n        exit 0\n    fi\nelse\n    echo -e \"${GREEN}✓ Already up to date (v$CURRENT_VERSION)${NC}\"\n\n    # Check if files exist\n    if [ ! -f \"$EXCALIDRAW_DIR/excalidraw.min.js\" ]; then\n        echo -e \"${YELLOW}Files missing, re-downloading...${NC}\"\n        download_excalidraw \"$LATEST_VERSION\"\n        create_wrapper\n    fi\nfi\n\necho \"\"\necho \"================================================\"\necho -e \"${GREEN}Excalidraw is ready for offline use!${NC}\"\necho \"Location: $EXCALIDRAW_DIR\"\necho \"Version: $(cat $CURRENT_VERSION_FILE)\"\necho \"================================================\"','Script executed successfully','2025-12-02 20:37:50');
/*!40000 ALTER TABLE `system_script_log` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `system_settings`
--

DROP TABLE IF EXISTS `system_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `system_settings` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `setting_key` varchar(100) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `setting_type` varchar(50) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `ss_cap` decimal(12,2) DEFAULT 1051951.50,
  `ss_rate` decimal(5,2) DEFAULT 6.20,
  `futa_cap` decimal(12,2) DEFAULT 7000.00,
  `futa_rate` decimal(5,2) DEFAULT 0.60,
  `suta_cap` decimal(12,2) DEFAULT 7000.00,
  `suta_rate` decimal(5,2) DEFAULT 2.70,
  `match_cap` decimal(12,2) DEFAULT 69000.00,
  `match_rate` decimal(5,2) DEFAULT 2.00,
  `cola_rate` decimal(5,2) DEFAULT 4.00,
  `medicare_rate` decimal(5,2) DEFAULT 1.45,
  `health_ins` decimal(10,2) DEFAULT 700.00,
  `disability_ins` decimal(10,2) DEFAULT 40.00,
  `life_ins` decimal(10,2) DEFAULT 10.00,
  `pto_days` decimal(5,2) DEFAULT 0.04,
  `uniform_cost` decimal(10,2) DEFAULT 1.00,
  `wc_salary` decimal(5,2) DEFAULT 1.00,
  `protective_gear` decimal(10,2) DEFAULT 2.00,
  `overtime_rate` decimal(5,2) DEFAULT 1.50,
  `wc_hourly` decimal(5,2) DEFAULT 2.85,
  `overtime_hours` decimal(5,2) DEFAULT 10.00,
  `labor_utilization_rate` decimal(5,2) DEFAULT 95.00 COMMENT 'Expected labor utilization %',
  `hours_per_day` decimal(5,1) DEFAULT 24.0 COMMENT 'Total hours available per day',
  `facility_size_sqft` decimal(12,2) DEFAULT 0.00 COMMENT 'Default facility size in square feet',
  `capitalization_limit` decimal(12,2) DEFAULT 5000.00 COMMENT 'Min amount to capitalize vs expense',
  `cpi_increase_rate` decimal(5,2) DEFAULT 5.50 COMMENT 'Expected CPI increase %',
  `project_start_date` date DEFAULT NULL COMMENT 'Default project start date',
  `base_year` int(11) DEFAULT 2026 COMMENT 'Base year for projections',
  PRIMARY KEY (`id`),
  UNIQUE KEY `setting_key` (`setting_key`)
) ENGINE=InnoDB AUTO_INCREMENT=90 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `system_settings`
--

LOCK TABLES `system_settings` WRITE;
/*!40000 ALTER TABLE `system_settings` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `system_settings` VALUES
(1,'company_name','Mavrix1','company','','2025-11-11 14:04:03',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(2,'company_email','info@mavrix.one','company','','2025-11-11 14:04:03',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(3,'company_phone','906-555-4567','company','','2025-11-11 14:06:58',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(4,'currency_symbol','$','text','Currency symbol','2025-10-26 14:24:24',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(5,'currency_code','USD','text','Currency code','2025-10-26 14:24:24',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(6,'date_format','m/d/y','company','','2025-11-12 14:12:51',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(7,'tax_rate','10','number','Default tax rate percentage','2025-10-26 14:24:24',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(8,'items_per_page','25','number','Items per page in lists','2025-10-26 14:24:24',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(9,'product_categories','{\"electronics\":\"Electronics\",\"office-supplies\":\"Office Supplies\",\"raw-materials\":\"Raw Materials\",\"components\":\"Components\",\"drones\":\"Drones\",\"batteries\":\"Batteries\",\"motors\":\"Motors\"}','dropdown','Categories for organizing products','2025-10-27 16:21:06',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(10,'product_types','{\"digital\":\"Digital\",\"finished_goods\":\"Finished Goods\",\"goods\":\"Goods\",\"raw_material\":\"Raw Material\",\"service\":\"Service\"}','dropdown','Types of products (physical, service, digital, etc.)','2025-12-05 10:48:24',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(11,'product_units','{\"pcs\":\"Pieces\",\"kg\":\"Kilograms\",\"lb\":\"Pounds\",\"ltr\":\"Liters\",\"gal\":\"Gallons\",\"box\":\"Box\",\"dozen\":\"Dozen\",\"m\":\"Meters\",\"ft\":\"Feet\"}','dropdown','Units for measuring products (pcs, kg, liters, etc.)','2025-10-26 18:34:44',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(12,'customer_types','{\"retail\":\"Retail\",\"wholesale\":\"Wholesale\",\"distributor\":\"Distributor\",\"vip\":\"VIP\"}','dropdown','Types of customers (retail, wholesale, VIP, etc.)','2025-10-26 18:34:44',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(13,'customer_sources','{\"website\":\"Website\",\"referral\":\"Referral\",\"social-media\":\"Social Media\",\"advertisement\":\"Advertisement\",\"walk-in\":\"Walk-in\"}','dropdown','How customers found you (referral, website, etc.)','2025-10-26 18:34:44',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(14,'payment_methods','{\"cash\":\"Cash\",\"credit-card\":\"Credit Card\",\"bank-transfer\":\"Bank Transfer\",\"check\":\"Check\",\"paypal\":\"PayPal\"}','dropdown','Available payment methods','2025-10-26 18:34:44',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(15,'payment_terms','{\"cod\":\"Cash on Delivery\",\"net-30\":\"Net 30 Days\",\"net-60\":\"Net 60 Days\",\"prepaid\":\"Prepaid\",\"50-50\":\"50% Advance, 50% on Delivery\"}','dropdown','Standard payment terms (Net 30, COD, etc.)','2025-10-26 18:34:44',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(16,'departments','{\"sales\":\"Sales\",\"marketing\":\"Marketing\",\"operations\":\"Operations\",\"hr\":\"Human Resources\",\"finance\":\"Finance\",\"it\":\"IT\",\"warehouse\":\"Warehouse\",\"manufacturing\":\"Manufacturing\",\"resanddev\":\"Research and Development\",\"executive\":\"Executive Suite\"}','dropdown','Company departments for employees','2025-11-08 17:50:26',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(17,'job_titles','{\"manager\":\"Manager\",\"supervisor\":\"Supervisor\",\"specialist\":\"Specialist\",\"associate\":\"Associate\",\"intern\":\"Intern\",\"officer\":\"Officer\"}','dropdown','Standard job titles','2025-11-08 17:55:39',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(18,'company_address','3900 W. Coachman Ave. , Tampa, FL 33611','company','','2025-11-27 22:35:43',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(19,'company_tax_id','','company','','2025-10-26 18:35:11',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(20,'currency','USD','company','','2025-10-26 18:35:11',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(21,'timezone','America/New_York','company','','2025-11-01 12:06:57',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(22,'work_days_per_week','7','company','','2025-11-01 11:31:10',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(23,'work_hours_per_day','8','company','','2025-10-30 09:57:36',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(24,'working_weeks_per_year','52','company','','2025-10-30 09:57:36',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(25,'shifts_per_day','3','company','','2025-11-01 11:31:03',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(26,'weekend_days','Saturday,Sunday','company','','2025-10-30 09:57:36',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(27,'base_rent_year','1051951.5','company','','2025-11-01 11:05:58',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(28,'max_base_rent_increase','5.5','company','','2025-11-01 11:05:58',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(29,'nnn_year','309397.5','company','','2025-11-01 11:05:58',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(30,'nnn_increase','3.5','company','','2025-11-01 11:05:58',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(31,'energy_cost_year','235200','company','','2025-11-01 11:05:58',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(32,'energy_cost_increase','2','company','','2025-11-01 11:05:58',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(33,'insurance_year','174008','company','','2025-11-01 11:05:58',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(34,'insurance_increase','3','company','','2025-11-01 11:05:58',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(35,'utilities_year','198510','company','','2025-11-01 11:05:58',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(36,'utilities_increase','1','company','','2025-11-01 11:05:58',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(37,'ftz_costs_year','150000','company','','2025-11-01 11:05:58',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(38,'ftz_increase','2.5','company','','2025-11-01 11:05:58',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(39,'manufacturing_business_line_label','Business Line','string','Custom label for business lines (e.g., \"Production Line\", \"Department\", \"Division\")','2025-10-27 16:32:00',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(40,'manufacturing_business_line_label_plural','Business Lines','string','Plural form of business line label','2025-10-27 16:32:00',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(41,'manufacturing_equipment_type_label','Equipment Type','string','Custom label for equipment types','2025-10-27 16:32:00',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(42,'manufacturing_equipment_type_label_plural','Equipment Types','string','Plural form of equipment type label','2025-10-27 16:32:00',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(43,'manufacturing_equipment_label','Equipment','string','Custom label for equipment units','2025-10-27 16:32:00',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(44,'manufacturing_equipment_label_plural','Equipment','string','Plural form of equipment label','2025-10-27 16:32:00',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(53,'manufacturing_equipment_line_label','Equipment Line','string','Custom label for equipment lines','2025-10-27 18:13:03',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(54,'manufacturing_equipment_line_label_plural','Equipment Lines','string','Plural form of equipment line label','2025-10-27 18:13:03',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(59,'machine_api_key','b29a4b78-b460-11f0-9204-f23c92a35ef0','string','API key for machine data integration endpoints','2025-10-29 00:46:25',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(60,'company_logo','/uploads/company/logo_1762869843.png','company','','2025-11-11 14:04:03',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(61,'battery_cell_types','{\"lfp_280ah_prismatic\":\"LFP 280Ah Prismatic\",\"nmc_280ah_prismatic\":\"NMC 280Ah Prismatic\",\"lfp_26650_6ah\":\"LFP 26650 (6Ah)\",\"nmc_21700_5ah\":\"NMC 21700 (5Ah)\",\"lfp_50ah_pouch\":\"LFP 50Ah Pouch\",\"lfp_32650_50ah\":\"LFP 32650 (50Ah)\"}','dropdown','Battery cell types available for orders','2025-11-09 22:10:54',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(62,'battery_assembly_lines','{\"l_prismatic\":\"L. Prismatic\",\"small_cylindrical\":\"Small Cylindrical\",\"l_cylindrical\":\"L. Cylindrical\",\"soft_pack_pouch\":\"Soft Pack / Pouch\"}','dropdown','Battery assembly line types','2025-11-09 22:10:54',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(63,'battery_test_equipment','{\"60v200a\":\"60V200A\",\"400v400a\":\"400V400A\",\"1500v600a\":\"1500V600A\",\"1500v400a\":\"1500V400A\"}','dropdown','Battery test equipment specifications','2025-11-09 22:10:54',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(68,'mfa_enforcement','optional',NULL,'MFA enforcement policy: mandatory, optional, or disabled','2025-11-15 18:02:34',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(69,'mfa_otp_length','6',NULL,'Length of OTP codes','2025-11-15 17:46:36',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(70,'mfa_otp_expiry_minutes','5',NULL,'OTP expiry time in minutes','2025-11-15 17:46:36',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(71,'mfa_max_otp_attempts','5',NULL,'Maximum OTP verification attempts before lockout','2025-11-15 17:46:36',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(72,'password_reset_expiry_minutes','30',NULL,'Password reset token expiry time in minutes','2025-11-15 17:46:36',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(73,'max_login_attempts','5',NULL,'Maximum login attempts before account lockout','2025-11-15 17:46:36',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(74,'account_lockout_duration_minutes','30',NULL,'Account lockout duration in minutes','2025-11-15 17:46:36',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(75,'backup_codes_count','10',NULL,'Number of backup codes to generate','2025-11-15 17:46:36',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(76,'smtp_host','ipv6.nwpro5.fcomet.com','email','SMTP server hostname','2025-11-26 19:10:23',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(77,'smtp_port','587','email','SMTP server port','2025-11-26 19:04:47',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(78,'smtp_username','erp_system@mavrix.one','email','SMTP username','2025-11-26 17:39:39',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(79,'smtp_password','xyz8468RPMerkuri123!','email','SMTP password (encrypted)','2025-11-26 19:12:26',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(80,'smtp_encryption','tls','email','SMTP encryption type (tls/ssl/none)','2025-11-26 19:04:47',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(81,'smtp_from_email','contact@mavrix.one','email','Default From email address','2025-11-26 18:33:42',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(82,'smtp_from_name','Mavrix1','email','Default From name','2025-11-26 18:33:42',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(83,'company_website','https://mavrix1.com','company','','2025-11-27 02:56:24',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(84,'company_address_line1','3900 W. Coachman Ave.','company','','2025-11-27 22:35:44',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(85,'company_address_line2','','company','','2025-11-27 22:35:44',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(86,'company_city','Tampa','company','','2025-11-27 22:35:44',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(87,'company_state','FL','company','','2025-11-27 22:35:44',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(88,'company_zip','33611','company','','2025-11-27 22:35:44',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(89,'company_country','United States','company','','2025-11-27 22:35:44',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026);
/*!40000 ALTER TABLE `system_settings` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `table_columns`
--

DROP TABLE IF EXISTS `table_columns`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `table_columns` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `table_config_id` int(10) unsigned NOT NULL,
  `column_key` varchar(100) NOT NULL,
  `column_label` varchar(255) NOT NULL,
  `data_field` varchar(100) NOT NULL COMMENT 'Database field or expression',
  `data_type` enum('text','number','currency','date','datetime','boolean','badge','link','image','html','action','buttons') DEFAULT 'text',
  `format_options` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Formatter options (e.g., currency symbol, date format)' CHECK (json_valid(`format_options`)),
  `is_sortable` tinyint(1) DEFAULT 1,
  `is_searchable` tinyint(1) DEFAULT 1,
  `is_visible` tinyint(1) DEFAULT 1,
  `width` varchar(20) DEFAULT NULL,
  `css_class` varchar(255) DEFAULT NULL,
  `align` enum('left','center','right') DEFAULT 'left',
  `display_order` int(11) DEFAULT 0,
  `permission_required` varchar(100) DEFAULT NULL,
  `hidden_roles` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Array of roles that cannot see this column' CHECK (json_valid(`hidden_roles`)),
  `is_active` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_table_config` (`table_config_id`),
  KEY `idx_display_order` (`display_order`),
  CONSTRAINT `table_columns_ibfk_1` FOREIGN KEY (`table_config_id`) REFERENCES `table_configurations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=217 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `table_columns`
--

LOCK TABLES `table_columns` WRITE;
/*!40000 ALTER TABLE `table_columns` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `table_columns` VALUES
(1,1,'sku','SKU','sku','text',NULL,1,1,1,'120px',NULL,'left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(2,1,'name','Product Name','name','link','{\"url_template\": \"/products/{id}\"}',1,1,1,NULL,NULL,'left',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(3,1,'category','Category','category_name','text',NULL,1,1,1,'150px',NULL,'left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(4,1,'type','Type','product_type','badge','{\"badges\": {\"goods\": \"primary\", \"digital\": \"success\", \"service\": \"info\"}}',1,1,1,'100px',NULL,'left',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(5,1,'cost_price','Cost','cost_price','currency','{\"symbol\": \"$\"}',1,1,1,'100px',NULL,'left',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(6,1,'selling_price','Price','selling_price','currency','{\"symbol\": \"$\"}',1,1,1,'100px',NULL,'left',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(7,1,'status','Status','status','badge','{\"badges\": {\"active\": \"success\", \"inactive\": \"secondary\", \"discontinued\": \"danger\"}}',1,1,1,'100px',NULL,'left',7,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(8,1,'created_at','Created','created_at','date','{\"format\": \"m/d/y\"}',1,1,0,'120px',NULL,'left',8,NULL,NULL,1,'2025-11-11 00:36:47','2025-12-05 10:21:44'),
(26,4,'company_name','Company Name','company_name','link','{\"url_template\": \"/suppliers/{id}\"}',1,1,1,'250px',NULL,'left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(27,4,'contact_person','Contact Person','contact_person','text',NULL,1,1,1,'200px',NULL,'left',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(28,4,'email','Email','email','link','{\"url_template\": \"mailto:{email}\"}',1,1,1,'200px',NULL,'left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(29,4,'phone','Phone','phone','text',NULL,0,1,1,'130px',NULL,'left',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(30,4,'status','Status','status','badge','{\"badges\": {\"active\": \"success\", \"inactive\": \"secondary\"}}',1,1,1,'100px',NULL,'left',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(31,4,'created_at','Created','created_at','date','{\"format\": \"m/d/y\"}',1,1,1,'120px',NULL,'left',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(32,5,'order_number','Order #','order_number','link','{\"url_template\": \"/salesorders/{id}\"}',1,1,1,'150px',NULL,'left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(33,5,'customer_name','Customer','customer_name','text',NULL,1,1,1,'200px',NULL,'left',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(34,5,'order_date','Order Date','order_date','date','{\"format\": \"m/d/y\"}',1,1,1,'120px',NULL,'left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(35,5,'delivery_date','Delivery Date','delivery_date','date','{\"format\": \"m/d/y\"}',1,1,1,'120px',NULL,'left',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(36,5,'total_amount','Total','total_amount','currency','{\"symbol\": \"$\"}',1,1,1,'120px',NULL,'left',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(37,5,'status','Status','status','badge','{\"badges\": {\"draft\": \"secondary\", \"pending\": \"warning\", \"cancelled\": \"danger\", \"completed\": \"success\", \"confirmed\": \"info\", \"processing\": \"primary\"}}',1,1,1,'100px',NULL,'left',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(38,5,'created_at','Created','created_at','date','{\"format\": \"m/d/y\"}',1,1,1,'120px',NULL,'left',7,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(39,6,'po_number','PO #','po_number','link','{\"url_template\": \"/purchaseorders/{id}\"}',1,1,1,'150px',NULL,'left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(40,6,'supplier_name','Supplier','supplier_name','text',NULL,1,1,1,'200px',NULL,'left',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(41,6,'order_date','Order Date','order_date','date','{\"format\": \"m/d/y\"}',1,1,1,'120px',NULL,'left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(42,6,'expected_delivery_date','Expected Delivery','expected_delivery_date','date','{\"format\": \"m/d/y\"}',1,1,1,'150px',NULL,'left',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(43,6,'total_amount','Total','total_amount','currency','{\"symbol\": \"$\"}',1,1,1,'120px',NULL,'left',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(44,6,'status','Status','status','badge','{\"badges\": {\"draft\": \"secondary\", \"ordered\": \"primary\", \"pending\": \"warning\", \"approved\": \"info\", \"received\": \"success\", \"cancelled\": \"danger\"}}',1,1,1,'100px',NULL,'left',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(45,6,'created_at','Created','created_at','date','{\"format\": \"m/d/y\"}',1,1,1,'120px',NULL,'left',7,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(46,7,'wo_number','WO #','wo_number','link','{\"url_template\": \"/workorders/{id}\"}',1,1,1,'150px',NULL,'left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(47,7,'product_name','Product','product_name','text',NULL,1,1,1,'200px',NULL,'left',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(48,7,'quantity','Quantity','quantity','number','{\"decimals\": 0}',1,1,1,'100px',NULL,'left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(49,7,'start_date','Start Date','start_date','date','{\"format\": \"m/d/y\"}',1,1,1,'120px',NULL,'left',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(50,7,'end_date','End Date','end_date','date','{\"format\": \"m/d/y\"}',1,1,1,'120px',NULL,'left',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(51,7,'priority','Priority','priority','badge','{\"badges\": {\"low\": \"secondary\", \"high\": \"warning\", \"normal\": \"info\", \"urgent\": \"danger\"}}',1,1,1,'100px',NULL,'left',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(52,7,'status','Status','status','badge','{\"badges\": {\"draft\": \"secondary\", \"cancelled\": \"danger\", \"completed\": \"success\", \"scheduled\": \"info\", \"in_progress\": \"primary\"}}',1,1,1,'100px',NULL,'left',7,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(53,7,'created_at','Created','created_at','date','{\"format\": \"m/d/y\"}',1,1,1,'120px',NULL,'left',8,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(54,8,'invoice_number','Invoice #','invoice_number','link','{\"url_template\": \"/invoices/{id}\"}',1,1,1,'150px',NULL,'left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(55,8,'customer_name','Customer','customer_name','text',NULL,1,1,1,'200px',NULL,'left',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(56,8,'invoice_date','Invoice Date','invoice_date','date','{\"format\": \"m/d/y\"}',1,1,1,'120px',NULL,'left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(57,8,'due_date','Due Date','due_date','date','{\"format\": \"m/d/y\"}',1,1,1,'120px',NULL,'left',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(58,8,'total_amount','Total','total_amount','currency','{\"symbol\": \"$\"}',1,1,1,'120px',NULL,'left',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(59,8,'payment_status','Payment','payment_status','badge','{\"badges\": {\"paid\": \"success\", \"unpaid\": \"warning\", \"overdue\": \"danger\", \"partial\": \"info\"}}',1,1,1,'100px',NULL,'left',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(60,8,'status','Status','status','badge','{\"badges\": {\"paid\": \"success\", \"sent\": \"info\", \"draft\": \"secondary\", \"viewed\": \"primary\", \"cancelled\": \"danger\"}}',1,1,1,'100px',NULL,'left',7,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(61,8,'created_at','Created','created_at','date','{\"format\": \"m/d/y\"}',1,1,1,'120px',NULL,'left',8,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(64,10,'email','Email','email','link','{\"url_template\": \"mailto:{email}\"}',1,1,1,'200px',NULL,'left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(65,10,'phone','Phone','phone','text',NULL,0,1,1,'130px',NULL,'left',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(66,10,'position','Position','position','text',NULL,1,1,1,'150px',NULL,'left',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(67,10,'is_primary','Primary','is_primary','boolean','{\"true_label\": \"Yes\", \"false_label\": \"No\"}',0,1,1,'80px',NULL,'left',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(68,10,'created_at','Created','created_at','date','{\"format\": \"m/d/y\"}',1,1,1,'120px',NULL,'left',7,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(69,10,'first_name','First Name','first_name','text',NULL,1,1,1,'150px',NULL,'left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(70,10,'last_name','Last Name','last_name','text',NULL,1,1,1,'150px',NULL,'left',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(71,11,'name','Name','name','link','{\"url_template\": \"/inventory/categories/{id}\"}',1,1,1,'250px',NULL,'left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(72,11,'description','Description','description','text',NULL,0,1,1,NULL,NULL,'left',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(73,11,'product_count','Products','product_count','badge','{\"badges\": {\"0\": \"secondary\", \"1\": \"info\"}}',1,1,1,'120px',NULL,'left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(74,11,'total_stock','Total Stock','total_stock','number','{\"decimals\": 0}',1,1,1,'120px',NULL,'left',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(75,11,'is_active','Status','is_active','badge','{\"badges\": {\"0\": \"secondary\", \"1\": \"success\"}, \"true_label\": \"Active\", \"false_label\": \"Inactive\"}',1,1,1,'100px',NULL,'left',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(76,12,'lot_number','Lot Number','lot_number','link','{\"url_template\": \"inventory/lots/{id}\"}',1,1,1,NULL,NULL,'left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(77,12,'serial_number','Serial Number','serial_number','text',NULL,1,1,1,NULL,NULL,'left',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(78,12,'product_sku','SKU','product_sku','text',NULL,1,1,1,NULL,NULL,'left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(79,12,'product_name','Product','product_name','link','{\"url_template\": \"products/{product_id}\"}',1,1,1,NULL,NULL,'left',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(80,12,'location_name','Location','location_name','text',NULL,1,1,1,NULL,NULL,'left',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(81,12,'manufacture_date','Mfg Date','manufacture_date','date','{\"format\": \"m/d/y\"}',1,0,1,NULL,NULL,'left',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(82,12,'expiration_date','Exp Date','expiration_date','date','{\"format\": \"m/d/y\"}',1,0,1,NULL,NULL,'left',7,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(83,12,'quantity','Quantity','quantity','number',NULL,1,0,1,NULL,NULL,'left',8,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(84,12,'status','Status','status','badge','{\"badges\": {\"sold\": \"secondary\", \"active\": \"success\", \"expired\": \"danger\", \"reserved\": \"info\", \"returned\": \"warning\"}}',1,1,1,NULL,NULL,'left',9,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(85,12,'created_at','Created','created_at','datetime',NULL,1,0,1,NULL,NULL,'left',10,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(104,3,'employee_id','Employee ID','employee_id','text',NULL,1,1,1,NULL,'','left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(105,3,'full_name','Name','full_name','link','{\"url_template\": \"employees/{id}\"}',1,1,1,NULL,'fw-bold','left',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(106,3,'email','Email','email','link','{\"url_template\": \"mailto:{email}\"}',1,1,1,NULL,'','left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(107,3,'department','Department','department_name','text',NULL,1,1,1,NULL,'','left',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(108,3,'position','Position','position','text',NULL,1,1,1,NULL,'','left',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(109,3,'status','Status','status','badge','{\"badges\": {\"active\": \"success\", \"inactive\": \"secondary\", \"on_leave\": \"warning\", \"terminated\": \"danger\"}}',1,1,1,NULL,'','center',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(110,2,'customer_name','Customer','display_name','text',NULL,1,1,1,NULL,'fw-bold','left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-26 15:42:15'),
(111,2,'type','Type','company_type','badge','{\"badges\": {\"company\": \"primary\", \"individual\": \"info\"}}',1,1,1,'100px','','center',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-24 15:49:09'),
(112,2,'client','Client','client_name','text',NULL,1,1,1,NULL,'','left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(114,2,'phone','Phone','phone','text',NULL,1,1,1,NULL,'','left',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(115,2,'city','City','city','text',NULL,1,1,1,NULL,'','left',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(116,2,'status','Status','status','badge','{\"badges\": {\"active\": \"success\", \"inactive\": \"secondary\"}}',1,1,1,'100px','','center',7,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(136,21,'contact_name','Contact','full_name','text',NULL,1,1,1,NULL,'fw-bold','left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-26 15:42:15'),
(137,21,'type','Type','contact_type','badge','{\"badges\": {\"Client\": \"primary\", \"General\": \"secondary\", \"Customer\": \"info\"}}',1,1,1,'100px','','center',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(138,21,'title','Title','title','text',NULL,1,1,1,NULL,'','left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(139,21,'entity','Related To','entity_name','text',NULL,1,1,1,NULL,'','left',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(141,21,'phone','Phone','phone','text',NULL,1,1,1,NULL,'','left',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(142,20,'client_name','Client','display_name','link','{\"url_template\": \"clients/{id}\"}',1,1,1,NULL,'fw-bold','left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(143,20,'type','Type','client_type','badge','{\"badges\": {\"company\": \"primary\", \"individual\": \"info\"}}',1,1,1,'100px','','center',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(144,20,'email','Email','email','link','{\"url_template\": \"mailto:{email}\"}',1,1,1,NULL,'','left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(145,20,'phone','Phone','phone','text',NULL,1,1,1,NULL,'','left',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(146,20,'city','City','city','text',NULL,1,1,1,NULL,'','left',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(147,20,'customers','Customers','customer_count','number','{\"decimals\": 0}',1,0,1,'100px','','center',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(148,20,'status','Status','status','badge','{\"badges\": {\"active\": \"success\", \"inactive\": \"secondary\"}}',1,1,1,'100px','','center',7,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(149,25,'document_name','Document Name','document_name','link','{\"icon\": \"bi-file-earmark-pdf\", \"icon_color\": \"text-danger\", \"url_template\": \"crm/documents/{id}\"}',1,1,1,NULL,'','left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(150,25,'type','Type','document_type','badge','{\"badges\": {\"nda\": \"warning\", \"other\": \"secondary\", \"invoice\": \"primary\", \"contract\": \"secondary\", \"proposal\": \"info\", \"agreement\": \"success\"}, \"transform\": \"ucfirst\"}',1,1,1,'100px','','left',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(151,25,'customer','Customer','customer_name','link','{\"url_template\": \"customers/{customer_id}\"}',1,1,1,NULL,'','left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(152,25,'version','Version','version','text',NULL,1,0,1,'80px','','center',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(153,25,'status','Status','is_signed','badge','{\"icon\": {\"1\": \"bi-check-circle\"}, \"badges\": {\"0\": \"warning\", \"1\": \"success\"}, \"labels\": {\"0\": \"Unsigned\", \"1\": \"Signed\"}}',1,0,1,'120px','','left',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(154,25,'expiry_date','Expiry Date','expiry_date','date','{\"empty\": \"-\", \"format\": \"m/d/y\"}',1,0,1,'120px','','left',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(155,25,'uploaded','Uploaded','created_at','date','{\"format\": \"m/d/y\", \"secondary_class\": \"small text-muted\", \"secondary_field\": \"uploader_name\", \"secondary_prefix\": \"by \"}',1,0,1,'150px','','left',7,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(156,25,'actions','Actions','id','buttons','{\"buttons\": [{\"icon\": \"bi-eye\", \"class\": \"btn-sm btn-outline-theme\", \"title\": \"Preview\", \"url_template\": \"\", \"modal\": \"docPreview_{id}\"}, {\"icon\": \"bi-pencil\", \"class\": \"btn-sm btn-outline-theme\", \"title\": \"Edit\", \"url_template\": \"crm/documents/{id}/edit\"}, {\"icon\": \"bi-trash\", \"class\": \"btn-sm btn-outline-danger\", \"title\": \"Delete\", \"url_template\": \"crm/documents/{id}/delete\", \"confirm\": \"Are you sure you want to delete this document?\"}]}',0,0,1,NULL,'text-end','right',8,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-21 04:02:28'),
(163,26,'title','Position Title','title','link','{\"url_template\": \"hr/positions/{id}/edit\"}',1,1,1,'200px','fw-bold','left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(164,26,'department','Department','department','text',NULL,1,1,1,'150px','','left',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(165,26,'level','Level','level','badge','{\"badges\": {\"Mid\": \"light\", \"Lead\": \"warning\", \"Entry\": \"light\", \"Other\": \"dark\", \"Junior\": \"light\", \"Senior\": \"secondary\", \"Manager\": \"success\", \"Director\": \"info\", \"Executive\": \"primary\"}}',1,1,1,'120px','','center',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(166,26,'reports_to','Reports To','reports_to','text',NULL,1,0,1,'180px','','left',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(167,26,'employee_count','Employees','employee_count','number',NULL,1,0,1,'100px','text-primary fw-bold','center',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(168,26,'is_active','Status','is_active','badge','{\"badges\": {\"0\": \"secondary\", \"1\": \"success\"}}',1,1,1,'100px','','center',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(169,29,'entry_date','Date','entry_date','date','{\"format\":\"m/d/y\"}',1,1,1,NULL,NULL,'left',1,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 00:51:47'),
(170,29,'entry_number','Entry Number','entry_number','text',NULL,1,1,1,NULL,NULL,'left',2,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 00:31:55'),
(172,29,'description','Description','description','text',NULL,1,1,1,NULL,NULL,'left',4,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 00:31:55'),
(173,29,'name','Name','name','text',NULL,1,1,1,NULL,NULL,'left',5,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 00:31:55'),
(174,29,'department','Department','department','text',NULL,1,1,1,NULL,NULL,'left',6,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 00:31:55'),
(175,29,'location','Location','location','text',NULL,1,1,1,NULL,NULL,'left',7,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 00:31:55'),
(176,29,'status','Status','status','badge','{\"badges\":{\"posted\":\"success\",\"draft\":\"secondary\"}}',1,1,1,NULL,NULL,'left',8,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 00:31:55'),
(177,29,'actions','Actions','id','action','{\"url_template\":\"accounting/journal/{id}\",\"icon\":\"bi-eye\",\"title\":\"View\"}',0,0,1,NULL,NULL,'left',9,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 00:55:32'),
(178,30,'date','Date','date','date','{\"format\":\"m/d/y\"}',1,1,1,NULL,NULL,'left',1,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 00:55:32'),
(179,30,'journal_entry','Entry','entry_number','text',NULL,1,1,1,NULL,NULL,'left',2,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 12:52:12'),
(180,30,'account_code','Account','account_code','text',NULL,1,1,1,NULL,NULL,'left',3,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 12:52:12'),
(181,30,'account_name','Account Name','account_name','text',NULL,1,1,0,NULL,NULL,'left',4,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 12:52:12'),
(182,30,'description','Description','description','text',NULL,1,1,1,NULL,NULL,'left',5,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 00:31:55'),
(183,30,'debit','Debit','debit','currency','{\"symbol\":\"$\"}',1,0,1,NULL,NULL,'left',6,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 00:31:55'),
(184,30,'credit','Credit','credit','currency','{\"symbol\":\"$\"}',1,0,1,NULL,NULL,'left',7,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 00:31:55'),
(185,29,'amount','Amount','amount','currency','{\"symbol\":\"$\"}',1,0,1,NULL,NULL,'left',8,NULL,NULL,1,'2025-11-12 00:37:08','2025-11-12 00:37:08'),
(186,30,'actions','Actions','journal_entry_id','action','{\"url_template\":\"accounting/journal/{journal_entry_id}\",\"icon\":\"bi-eye\",\"title\":\"View\"}',0,0,1,NULL,NULL,'left',8,NULL,NULL,1,'2025-11-12 12:50:06','2025-11-12 12:50:06'),
(187,31,'reconciliation_date','Date','reconciliation_date','date','{\"format\":\"m/d/y\"}',1,1,1,NULL,NULL,'left',1,NULL,NULL,1,'2025-11-12 14:26:15','2025-11-12 14:26:15'),
(188,31,'account_name','Bank Account','account_name','text',NULL,1,1,1,NULL,NULL,'left',2,NULL,NULL,1,'2025-11-12 14:26:15','2025-11-12 14:26:15'),
(189,31,'statement_date','Statement Date','statement_date','date','{\"format\":\"m/d/y\"}',1,1,1,NULL,NULL,'left',3,NULL,NULL,1,'2025-11-12 14:26:15','2025-11-12 14:26:15'),
(190,31,'statement_balance','Statement Balance','statement_balance','currency','{\"symbol\":\"$\"}',1,0,1,NULL,NULL,'left',4,NULL,NULL,1,'2025-11-12 14:26:15','2025-11-12 14:26:15'),
(191,31,'book_balance','Book Balance','book_balance','currency','{\"symbol\":\"$\"}',1,0,1,NULL,NULL,'left',5,NULL,NULL,1,'2025-11-12 14:26:15','2025-11-12 14:26:15'),
(192,31,'difference','Difference','difference','currency','{\"symbol\":\"$\"}',1,0,1,NULL,NULL,'left',6,NULL,NULL,1,'2025-11-12 14:26:15','2025-11-12 14:26:15'),
(193,31,'status','Status','status','badge','{\"badges\":{\"completed\":\"success\",\"in_progress\":\"warning\",\"draft\":\"secondary\"}}',1,1,1,NULL,NULL,'left',7,NULL,NULL,1,'2025-11-12 14:26:15','2025-11-12 14:26:15'),
(194,31,'completed_by','Completed By','completed_by','text',NULL,1,1,1,NULL,NULL,'left',8,NULL,NULL,1,'2025-11-12 14:26:15','2025-11-12 14:26:15'),
(195,31,'actions','Actions','id','action','{\"url_template\":\"accounting/reconciliation/{id}\",\"icon\":\"bi-eye\",\"title\":\"View\"}',0,0,1,NULL,NULL,'left',9,NULL,NULL,1,'2025-11-12 14:26:15','2025-11-12 14:26:15'),
(196,32,'expense_date','Date','expense_date','date','{\"format\":\"m/d/y\"}',1,1,1,NULL,NULL,'left',1,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(197,32,'expense_number','Expense #','expense_number','text',NULL,1,1,1,NULL,NULL,'left',2,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(198,32,'category','Category','category','badge','{\"color\":\"secondary\"}',1,1,1,NULL,NULL,'left',3,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(199,32,'vendor','Vendor','vendor','text',NULL,1,1,1,NULL,NULL,'left',4,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(200,32,'employee_name','Employee','employee_name','text',NULL,1,1,1,NULL,NULL,'left',5,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(201,32,'total_amount','Amount','total_amount','currency',NULL,1,1,1,NULL,NULL,'right',6,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(202,32,'status','Status','status','badge','{\"color_map\":{\"paid\":\"success\",\"approved\":\"primary\",\"pending_approval\":\"warning\",\"rejected\":\"danger\",\"draft\":\"secondary\"}}',1,1,1,NULL,NULL,'left',7,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(203,32,'receipt_file','Receipt','receipt_file','boolean','{\"true_icon\":\"bi-paperclip\",\"false_icon\":\"bi-dash\",\"align\":\"center\"}',0,1,1,NULL,NULL,'center',8,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(204,32,'actions','Actions','id','action','{\"url_template\":\"accounting/expenses/{id}\",\"icon\":\"bi-eye\",\"title\":\"View\"}',0,1,1,NULL,NULL,'center',9,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(205,33,'budget_name','Budget Name','budget_name','text',NULL,1,1,1,NULL,NULL,'left',1,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(206,33,'department','Department','department','text',NULL,1,1,1,NULL,NULL,'left',2,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(207,33,'start_date','Start Date','start_date','date','{\"format\":\"m/d/y\"}',1,1,1,NULL,NULL,'left',3,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(208,33,'end_date','End Date','end_date','date','{\"format\":\"m/d/y\"}',1,1,1,NULL,NULL,'left',4,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(209,33,'budgeted_amount','Budgeted','budgeted_amount','currency',NULL,1,1,1,NULL,NULL,'right',5,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(210,33,'actual_spent','Spent','actual_spent','currency',NULL,1,1,1,NULL,NULL,'right',6,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(211,33,'status','Status','status','badge','{\"color_map\":{\"active\":\"success\",\"approved\":\"primary\",\"closed\":\"secondary\",\"draft\":\"warning\"}}',1,1,1,NULL,NULL,'left',7,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(212,33,'actions','Actions','id','action','{\"url_template\":\"accounting/budgets/{id}\",\"icon\":\"bi-eye\",\"title\":\"View\"}',0,1,1,NULL,NULL,'center',8,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(213,2,'actions','Actions','id','buttons','{\"buttons\": [{\"icon\": \"bi-envelope\", \"class\": \"btn-sm btn-outline-primary\", \"title\": \"Send Email\", \"url_template\": \"email/compose?to={email}&name={display_name}\"}, {\"icon\": \"bi-eye\", \"class\": \"btn-sm btn-outline-theme\", \"title\": \"View\", \"url_template\": \"companies/{id}\"}, {\"icon\": \"bi-pencil\", \"class\": \"btn-sm btn-outline-theme\", \"title\": \"Edit\", \"url_template\": \"companies/{id}/edit\"}]}',0,0,1,'100px',NULL,'center',100,NULL,NULL,1,'2025-11-26 15:35:30','2025-11-26 15:49:19'),
(214,21,'actions','Actions','id','buttons','{\"buttons\": [{\"icon\": \"bi-envelope\", \"class\": \"btn-sm btn-outline-primary\", \"title\": \"Send Email\", \"url_template\": \"email/compose?to={email}&name={full_name}\"}, {\"icon\": \"bi-eye\", \"class\": \"btn-sm btn-outline-theme\", \"title\": \"View\", \"url_template\": \"crm/contacts/{id}\"}, {\"icon\": \"bi-pencil\", \"class\": \"btn-sm btn-outline-theme\", \"title\": \"Edit\", \"url_template\": \"crm/contacts/{id}/edit\"}]}',0,0,1,'100px',NULL,'center',100,NULL,NULL,1,'2025-11-26 15:35:30','2025-11-26 15:49:19'),
(215,1,'actions','Actions','id','buttons','{\"buttons\": [{\"icon\": \"bi-eye\", \"class\": \"btn-sm btn-outline-theme\", \"title\": \"View\", \"url_template\": \"products/{id}\"}, {\"icon\": \"bi-pencil\", \"class\": \"btn-sm btn-outline-theme\", \"title\": \"Edit\", \"url_template\": \"products/{id}/edit\", \"permission\": \"inventory.edit\"}, {\"icon\": \"bi-trash\", \"class\": \"btn-sm btn-outline-danger\", \"title\": \"Delete\", \"url_template\": \"products/{id}/delete\", \"permission\": \"inventory.delete\", \"method\": \"POST\", \"confirm\": \"Are you sure you want to delete this product?\"}]}',0,0,1,'150px','text-end','right',100,NULL,NULL,1,'2025-12-05 10:23:36','2025-12-05 10:23:36'),
(216,11,'actions','Actions','id','buttons','{\n    \"buttons\": [\n        {\n            \"url_template\": \"inventory/categories/{id}\",\n            \"icon\": \"bi-eye\",\n            \"class\": \"btn-outline-theme\",\n            \"title\": \"View\"\n        },\n        {\n            \"url_template\": \"inventory/categories/{id}/edit\",\n            \"icon\": \"bi-pencil\",\n            \"class\": \"btn-outline-primary\",\n            \"title\": \"Edit\"\n        },\n        {\n            \"url_template\": \"inventory/categories/{id}/delete\",\n            \"icon\": \"bi-trash\",\n            \"class\": \"btn-outline-danger\",\n            \"title\": \"Delete\",\n            \"method\": \"POST\",\n            \"confirm\": \"Are you sure you want to delete this category?\"\n        }\n    ]\n}',0,0,1,'150px','','center',6,'',NULL,1,'2025-12-05 10:44:58','2025-12-05 10:51:33');
/*!40000 ALTER TABLE `table_columns` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `table_configurations`
--

DROP TABLE IF EXISTS `table_configurations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `table_configurations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `table_key` varchar(100) NOT NULL,
  `table_name` varchar(255) NOT NULL,
  `entity_name` varchar(100) NOT NULL,
  `base_query` text NOT NULL COMMENT 'Base SQL query for data',
  `default_sort_column` varchar(100) DEFAULT 'id',
  `default_sort_direction` enum('ASC','DESC') DEFAULT 'ASC',
  `per_page` int(11) DEFAULT 25,
  `enable_search` tinyint(1) DEFAULT 1,
  `enable_export` tinyint(1) DEFAULT 1,
  `enable_actions` tinyint(1) DEFAULT 1,
  `action_column_width` varchar(20) DEFAULT '150px',
  `permission_required` varchar(100) DEFAULT NULL,
  `css_class` varchar(255) DEFAULT 'table table-hover',
  `is_active` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `table_key` (`table_key`),
  KEY `idx_table_key` (`table_key`),
  KEY `idx_is_active` (`is_active`)
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `table_configurations`
--

LOCK TABLES `table_configurations` WRITE;
/*!40000 ALTER TABLE `table_configurations` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `table_configurations` VALUES
(1,'products_list','Products','product','SELECT p.id, p.sku, p.name, p.product_type, c.name as category_name, p.selling_price, p.cost_price, p.status, p.created_at \r\n   FROM products p \r\n   LEFT JOIN product_categories c ON p.category_id = c.id','name','ASC',25,1,1,1,'150px','inventory.view','table table-hover',1,'2025-11-06 03:56:12','2025-11-06 03:56:12'),
(2,'customers_list','Customers','customer','SELECT c.id, c.customer_type, c.company_type, COALESCE(c.company_name, CONCAT(c.first_name, \" \", c.last_name)) as display_name, c.email, c.phone, c.billing_city as city, c.status, \"\" as client_name FROM customers c','display_name','ASC',25,1,1,1,'150px','crm.view','table table-hover',1,'2025-11-06 03:56:12','2025-11-26 15:28:13'),
(3,'employees_list','Employees','employee','SELECT e.id, e.employee_id, e.position, e.hire_date, e.status,\r\n            CONCAT(u.first_name, \" \", u.last_name) as full_name,\r\n            u.email,\r\n            d.name as department_name\r\n     FROM employees e\r\n     LEFT JOIN users u ON e.user_id = u.id\r\n     LEFT JOIN departments d ON e.department_id = d.id','employee_id','ASC',25,1,1,1,'150px','hr.view','table table-hover',1,'2025-11-06 03:56:12','2025-11-07 19:43:41'),
(4,'suppliers_list','Suppliers','supplier','SELECT s.id, s.company_name, s.contact_person, s.email, s.phone, s.status, s.created_at\r\n   FROM suppliers s','company_name','ASC',25,1,1,1,'150px','purchases.view','table table-hover',1,'2025-11-06 04:02:22','2025-11-06 04:02:22'),
(5,'salesorders_list','Sales Orders','sales_order','SELECT so.id, so.order_number, c.company_name as customer_name, so.order_date, so.delivery_date, \r\n   so.total_amount, so.status, so.created_at\r\n   FROM sales_orders so\r\n   LEFT JOIN customers c ON so.customer_id = c.id','order_date','DESC',25,1,1,1,'150px','sales.view','table table-hover',1,'2025-11-06 04:02:22','2025-11-06 04:02:22'),
(6,'purchaseorders_list','Purchase Orders','purchase_order','SELECT po.id, po.po_number, s.company_name as supplier_name, po.order_date, po.expected_delivery_date,\r\n   po.total_amount, po.status, po.created_at\r\n   FROM purchase_orders po\r\n   LEFT JOIN suppliers s ON po.supplier_id = s.id','order_date','DESC',25,1,1,1,'150px','purchases.view','table table-hover',1,'2025-11-06 04:02:22','2025-11-06 04:02:22'),
(7,'workorders_list','Work Orders','work_order','SELECT wo.id, wo.wo_number, p.name as product_name, wo.quantity, wo.start_date, wo.end_date,\r\n   wo.status, wo.priority, wo.created_at\r\n   FROM work_orders wo\r\n   LEFT JOIN products p ON wo.product_id = p.id','start_date','DESC',25,1,1,1,'150px','production.view','table table-hover',1,'2025-11-06 04:02:22','2025-11-06 04:02:22'),
(8,'invoices_list','Invoices','invoice','SELECT i.id, i.invoice_number, c.company_name as customer_name, i.invoice_date, i.due_date,\r\n   i.total_amount, i.status, i.payment_status, i.created_at\r\n   FROM invoices i\r\n   LEFT JOIN customers c ON i.customer_id = c.id','invoice_date','DESC',25,1,1,1,'150px','accounting.view','table table-hover',1,'2025-11-06 04:02:22','2025-11-06 04:02:22'),
(10,'customer_contacts_list','Customer Contacts','customer_contact','SELECT cc.id, cc.customer_id, cc.first_name, cc.last_name, cc.email, cc.phone, cc.position, cc.is_primary, cc.created_at\r\n   FROM customer_contacts cc\r\n   LEFT JOIN customers c ON cc.customer_id = c.id','first_name','ASC',25,1,1,1,'150px','crm.view','table table-hover',1,'2025-11-06 04:10:37','2025-11-06 04:17:54'),
(11,'product_categories_list','Product Categories','product_category','SELECT \n    c.id,\n    c.name,\n    c.description,\n    c.is_active,\n    COUNT(p.id) as product_count,\n    COALESCE(SUM(i.quantity), 0) as total_stock,\n    c.created_at,\n    c.updated_at\nFROM product_categories c\nLEFT JOIN products p ON c.id = p.category_id AND p.deleted_at IS NULL\nLEFT JOIN inventory i ON p.id = i.product_id\nWHERE c.deleted_at IS NULL\nGROUP BY c.id','name','ASC',25,1,1,1,'150px','inventory.view','table table-hover',1,'2025-11-06 11:34:01','2025-12-05 11:19:55'),
(12,'lot_serial_list','Lot/Serial Numbers','lot_serial','SELECT \r\n    ls.id,\r\n    ls.product_id,\r\n    ls.lot_number,\r\n    ls.serial_number,\r\n    p.name as product_name,\r\n    p.sku as product_sku,\r\n    l.name as location_name,\r\n    ls.manufacture_date,\r\n    ls.expiration_date,\r\n    ls.quantity,\r\n    ls.status,\r\n    ls.created_at\r\n  FROM lot_serial_numbers ls\r\n  LEFT JOIN products p ON ls.product_id = p.id\r\n  LEFT JOIN locations l ON ls.location_id = l.id','created_at','DESC',25,1,1,1,'150px','inventory.view','table table-hover',1,'2025-11-06 12:32:20','2025-11-06 12:32:20'),
(20,'clients_list','clients','Client','SELECT id, customer_type as client_type, company_name as display_name, email, phone, city, status, 0 as customer_count FROM customers WHERE company_type = \"client\"','display_name','ASC',25,1,1,0,'150px','crm.view','table table-hover',1,'2025-11-07 19:23:03','2025-11-26 15:15:23'),
(21,'contacts_list','customer_contacts','Contact','SELECT id, full_name, last_name, first_name, contact_type, entity_name, entity_id, position as title, email, phone, is_primary, company_type\n     FROM (\n         SELECT cc.id, \n                CONCAT(cc.first_name, \" \", cc.last_name) as full_name,\n                cc.last_name, cc.first_name,\n                \"company\" as contact_type,\n                COALESCE(c.company_name, CONCAT(c.first_name, \" \", c.last_name)) as entity_name,\n                c.id as entity_id,\n                cc.position, cc.email, cc.phone, cc.is_primary,\n                c.company_type\n         FROM customer_contacts cc\n         LEFT JOIN customers c ON cc.customer_id = c.id\n         \n         UNION ALL\n         \n         SELECT gc.id,\n                CONCAT(gc.first_name, \" \", gc.last_name) as full_name,\n                gc.last_name, gc.first_name,\n                \"general\" as contact_type,\n                gc.company as entity_name,\n                NULL as entity_id,\n                gc.position, gc.email, gc.phone, 0 as is_primary,\n                NULL as company_type\n         FROM general_contacts gc\n     ) all_contacts','full_name','ASC',25,1,1,0,'150px','crm.view','table table-hover',1,'2025-11-07 19:23:15','2025-11-24 17:48:41'),
(25,'documents_list','crm_documents','document','SELECT \r\n        d.id,\r\n        d.document_name,\r\n        d.document_type,\r\n        d.customer_id,\r\n        COALESCE(c.company_name, CONCAT(c.first_name, \" \", c.last_name)) as customer_name,\r\n        d.version,\r\n        d.is_signed,\r\n        d.signed_date,\r\n        d.expiry_date,\r\n        d.created_at,\r\n        CONCAT(u.first_name, \" \", u.last_name) as uploader_name,\r\n        d.description\r\n    FROM crm_documents d\r\n    LEFT JOIN customers c ON d.customer_id = c.id\r\n    LEFT JOIN users u ON d.uploaded_by = u.id','created_at','DESC',25,1,1,1,'150px','crm.view','table table-hover',1,'2025-11-08 10:40:41','2025-11-08 10:40:41'),
(26,'positions_list','positions','Position','SELECT p.id, p.title, p.department, p.level, p.description, pr.title as reports_to, p.is_active, COUNT(DISTINCT e.id) as employee_count\r\n     FROM positions p\r\n     LEFT JOIN positions pr ON p.reports_to_position_id = pr.id\r\n     LEFT JOIN employees e ON p.id = e.position_id\r\n     GROUP BY p.id, p.title, p.department, p.level, p.description, pr.title, p.is_active','title','ASC',25,1,1,1,'200px','hr.view','table table-hover',1,'2025-11-08 15:44:35','2025-11-15 12:18:24'),
(29,'journal_entries_list','Journal Entries','journal_entries','SELECT \n    je.id,\n    je.entry_number,\n    je.entry_date,\n    je.description,\n    je.name,\n    je.department,\n    je.location,\n    je.status,\n    COALESCE((SELECT SUM(debit) FROM journal_entry_lines WHERE entry_id = je.id), 0) as amount,\n    je.created_at\nFROM journal_entries je','entry_date','DESC',25,1,1,1,'150px',NULL,'table table-hover',1,'2025-11-12 00:31:55','2025-11-12 00:36:37'),
(30,'ledger_list','General Ledger','journal_entry_lines','SELECT \n    jel.id,\n    je.entry_date as date,\n    je.entry_number,\n    je.id as journal_entry_id,\n    je.description as journal_description,\n    coa.account_code,\n    coa.account_name,\n    jel.description,\n    jel.debit,\n    jel.credit,\n    CASE WHEN jel.debit > 0 THEN \"debit\" ELSE \"credit\" END as entry_type,\n    CASE WHEN jel.debit > 0 THEN jel.debit ELSE jel.credit END as amount\nFROM journal_entry_lines jel\nJOIN journal_entries je ON jel.entry_id = je.id\nJOIN chart_of_accounts coa ON jel.account_id = coa.id\nWHERE je.status = \"posted\"','date','DESC',50,1,1,1,'150px',NULL,'table table-hover',1,'2025-11-12 00:31:55','2025-11-12 15:24:20'),
(31,'reconciliation_list','Bank Reconciliations','bank_reconciliations','SELECT \n        br.id,\n        br.reconciliation_date,\n        br.statement_date,\n        br.statement_balance,\n        br.book_balance,\n        br.difference,\n        br.status,\n        br.completed_at,\n        ba.account_name,\n        ba.bank_name,\n        CONCAT(u.first_name, \" \", u.last_name) as completed_by\n    FROM bank_reconciliations br\n    LEFT JOIN bank_accounts ba ON br.bank_account_id = ba.id\n    LEFT JOIN users u ON br.completed_by = u.id','reconciliation_date','DESC',25,1,1,1,'150px',NULL,'table table-hover',1,'2025-11-12 14:26:15','2025-11-12 14:26:15'),
(32,'expenses_list','Expenses','expense','SELECT e.id, e.expense_date, e.expense_number, e.category, e.vendor, \n            CONCAT(emp.first_name, \" \", emp.last_name) as employee_name,\n            e.total_amount, e.status, e.receipt_file\n     FROM expenses e\n     LEFT JOIN users emp ON e.employee_id = emp.id\n     WHERE 1=1','expense_date','DESC',50,1,1,1,'150px',NULL,'table table-hover',1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(33,'budgets_list','Budgets','budget','SELECT b.id, b.budget_name, b.department, b.start_date, b.end_date, \n            b.total_amount as budgeted_amount, b.status,\n            0 as actual_spent\n     FROM budgets b\n     WHERE 1=1','fiscal_year','DESC',50,1,1,1,'150px',NULL,'table table-hover',1,'2025-11-12 14:42:10','2025-11-12 14:42:10');
/*!40000 ALTER TABLE `table_configurations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `task_resource_allocations`
--

DROP TABLE IF EXISTS `task_resource_allocations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `task_resource_allocations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `task_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `allocation_date` date NOT NULL,
  `allocated_hours` decimal(5,2) NOT NULL DEFAULT 0.00,
  `actual_hours` decimal(5,2) DEFAULT NULL COMMENT 'Actual hours logged',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_task_user_date` (`task_id`,`user_id`,`allocation_date`),
  KEY `idx_user_date_alloc` (`user_id`,`allocation_date`),
  KEY `idx_task_alloc` (`task_id`),
  CONSTRAINT `task_resource_allocations_ibfk_1` FOREIGN KEY (`task_id`) REFERENCES `project_tasks` (`id`) ON DELETE CASCADE,
  CONSTRAINT `task_resource_allocations_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `task_resource_allocations`
--

LOCK TABLES `task_resource_allocations` WRITE;
/*!40000 ALTER TABLE `task_resource_allocations` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `task_resource_allocations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `tax_exemptions`
--

DROP TABLE IF EXISTS `tax_exemptions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tax_exemptions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` int(10) unsigned NOT NULL,
  `jurisdiction_id` int(10) unsigned DEFAULT NULL COMMENT 'Null means exempt from all jurisdictions',
  `exemption_type` enum('resale','government','nonprofit','agricultural','manufacturing','other') NOT NULL,
  `certificate_number` varchar(100) DEFAULT NULL,
  `certificate_file_path` varchar(500) DEFAULT NULL,
  `effective_date` date NOT NULL,
  `expiration_date` date DEFAULT NULL COMMENT 'Null if no expiration',
  `is_active` tinyint(1) DEFAULT 1,
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `created_by` int(10) unsigned DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `updated_by` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_customer` (`customer_id`),
  KEY `idx_jurisdiction` (`jurisdiction_id`),
  KEY `idx_active` (`is_active`),
  KEY `idx_expiration` (`expiration_date`),
  KEY `created_by` (`created_by`),
  KEY `updated_by` (`updated_by`),
  CONSTRAINT `tax_exemptions_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `tax_exemptions_ibfk_2` FOREIGN KEY (`jurisdiction_id`) REFERENCES `tax_jurisdictions` (`id`) ON DELETE CASCADE,
  CONSTRAINT `tax_exemptions_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `tax_exemptions_ibfk_4` FOREIGN KEY (`updated_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_exemptions`
--

LOCK TABLES `tax_exemptions` WRITE;
/*!40000 ALTER TABLE `tax_exemptions` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `tax_exemptions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `tax_filings`
--

DROP TABLE IF EXISTS `tax_filings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tax_filings` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `filing_number` varchar(50) NOT NULL,
  `tax_type` enum('income_tax','sales_tax','vat','payroll_tax','property_tax','other') NOT NULL,
  `filing_period` enum('monthly','quarterly','annually') NOT NULL,
  `period_start` date NOT NULL,
  `period_end` date NOT NULL,
  `due_date` date NOT NULL,
  `filing_date` date DEFAULT NULL,
  `tax_amount` decimal(15,2) NOT NULL,
  `paid_amount` decimal(15,2) DEFAULT 0.00,
  `payment_date` date DEFAULT NULL,
  `status` enum('draft','pending','filed','paid','overdue') DEFAULT 'draft',
  `payment_reference` varchar(100) DEFAULT NULL,
  `filing_reference` varchar(100) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `attachments` text DEFAULT NULL COMMENT 'JSON array of file paths',
  `prepared_by` int(10) unsigned DEFAULT NULL,
  `filed_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `filing_number` (`filing_number`),
  KEY `idx_filing_number` (`filing_number`),
  KEY `idx_tax_type` (`tax_type`),
  KEY `idx_status` (`status`),
  KEY `idx_due_date` (`due_date`),
  KEY `idx_period` (`period_start`,`period_end`),
  KEY `prepared_by` (`prepared_by`),
  KEY `filed_by` (`filed_by`),
  CONSTRAINT `tax_filings_ibfk_1` FOREIGN KEY (`prepared_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `tax_filings_ibfk_2` FOREIGN KEY (`filed_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_filings`
--

LOCK TABLES `tax_filings` WRITE;
/*!40000 ALTER TABLE `tax_filings` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `tax_filings` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `tax_jurisdictions`
--

DROP TABLE IF EXISTS `tax_jurisdictions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tax_jurisdictions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `jurisdiction_code` varchar(50) NOT NULL,
  `jurisdiction_name` varchar(200) NOT NULL,
  `jurisdiction_type` enum('federal','state','county','city','district') NOT NULL,
  `parent_jurisdiction_id` int(10) unsigned DEFAULT NULL,
  `default_rate` decimal(8,5) NOT NULL DEFAULT 0.00000 COMMENT 'Default tax rate (e.g., 0.0825 for 8.25%)',
  `state_code` varchar(2) DEFAULT NULL COMMENT 'US state abbreviation',
  `county_name` varchar(100) DEFAULT NULL,
  `city_name` varchar(100) DEFAULT NULL,
  `zip_code_pattern` varchar(20) DEFAULT NULL COMMENT 'Zip or zip range (e.g., "94102" or "94000-94999")',
  `tax_authority_name` varchar(200) DEFAULT NULL,
  `tax_authority_id` varchar(100) DEFAULT NULL COMMENT 'Official ID from tax authority',
  `filing_frequency` enum('monthly','quarterly','annual','other') DEFAULT 'quarterly',
  `due_day_of_month` int(11) DEFAULT NULL COMMENT 'Day payment is due (e.g., 20th of month)',
  `account_number` varchar(100) DEFAULT NULL COMMENT 'Account number with tax authority',
  `is_active` tinyint(1) DEFAULT 1,
  `effective_date` date NOT NULL COMMENT 'Date this rate became effective',
  `expiration_date` date DEFAULT NULL COMMENT 'Date this rate expires (null if current)',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `created_by` int(10) unsigned DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `updated_by` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `jurisdiction_code` (`jurisdiction_code`),
  KEY `idx_jurisdiction_type` (`jurisdiction_type`),
  KEY `idx_state` (`state_code`),
  KEY `idx_active` (`is_active`),
  KEY `idx_effective_dates` (`effective_date`,`expiration_date`),
  KEY `parent_jurisdiction_id` (`parent_jurisdiction_id`),
  KEY `created_by` (`created_by`),
  KEY `updated_by` (`updated_by`),
  CONSTRAINT `tax_jurisdictions_ibfk_1` FOREIGN KEY (`parent_jurisdiction_id`) REFERENCES `tax_jurisdictions` (`id`) ON DELETE SET NULL,
  CONSTRAINT `tax_jurisdictions_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `tax_jurisdictions_ibfk_3` FOREIGN KEY (`updated_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_jurisdictions`
--

LOCK TABLES `tax_jurisdictions` WRITE;
/*!40000 ALTER TABLE `tax_jurisdictions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `tax_jurisdictions` VALUES
(1,'US-FED','United States Federal','federal',NULL,0.00000,NULL,NULL,NULL,NULL,NULL,NULL,'quarterly',NULL,NULL,1,'2020-01-01',NULL,'2025-11-15 18:08:20',NULL,'2025-11-15 18:08:20',NULL),
(2,'US-CA','California State','state',NULL,0.07250,'CA',NULL,NULL,NULL,NULL,NULL,'quarterly',30,NULL,1,'2020-01-01',NULL,'2025-11-15 18:08:20',NULL,'2025-11-15 18:08:20',NULL),
(3,'US-TX','Texas State','state',NULL,0.06250,'TX',NULL,NULL,NULL,NULL,NULL,'quarterly',20,NULL,1,'2020-01-01',NULL,'2025-11-15 18:08:20',NULL,'2025-11-15 18:08:20',NULL),
(4,'US-NY','New York State','state',NULL,0.04000,'NY',NULL,NULL,NULL,NULL,NULL,'quarterly',20,NULL,1,'2020-01-01',NULL,'2025-11-15 18:08:20',NULL,'2025-11-15 18:08:20',NULL),
(5,'US-FL','Florida State','state',NULL,0.06000,'FL',NULL,NULL,NULL,NULL,NULL,'monthly',20,NULL,1,'2020-01-01',NULL,'2025-11-15 18:08:20',NULL,'2025-11-15 18:08:20',NULL),
(6,'US-IL','Illinois State','state',NULL,0.06250,'IL',NULL,NULL,NULL,NULL,NULL,'monthly',20,NULL,1,'2020-01-01',NULL,'2025-11-15 18:08:20',NULL,'2025-11-15 18:08:20',NULL),
(7,'US-CA-SF','San Francisco City','city',2,0.01250,'CA',NULL,'San Francisco',NULL,NULL,NULL,'quarterly',NULL,NULL,1,'2020-01-01',NULL,'2025-11-15 18:08:20',NULL,'2025-11-15 18:08:20',NULL),
(8,'US-TX-AUSTIN','Austin City','city',3,0.01000,'TX',NULL,'Austin',NULL,NULL,NULL,'quarterly',NULL,NULL,1,'2020-01-01',NULL,'2025-11-15 18:08:20',NULL,'2025-11-15 18:08:20',NULL);
/*!40000 ALTER TABLE `tax_jurisdictions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `tax_payments`
--

DROP TABLE IF EXISTS `tax_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tax_payments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `payment_number` varchar(50) NOT NULL,
  `jurisdiction_id` int(10) unsigned NOT NULL,
  `period_start` date NOT NULL,
  `period_end` date NOT NULL,
  `filing_type` enum('monthly','quarterly','annual','amended') NOT NULL,
  `total_taxable_sales` decimal(15,2) NOT NULL DEFAULT 0.00,
  `total_tax_collected` decimal(15,2) NOT NULL DEFAULT 0.00,
  `adjustments` decimal(15,2) DEFAULT 0.00 COMMENT 'Penalties, interest, credits',
  `total_payment` decimal(15,2) NOT NULL,
  `payment_date` date DEFAULT NULL,
  `payment_method` enum('check','ach','wire','online','other') DEFAULT 'online',
  `reference_number` varchar(100) DEFAULT NULL COMMENT 'Check number or confirmation number',
  `confirmation_number` varchar(200) DEFAULT NULL,
  `journal_entry_id` int(11) DEFAULT NULL COMMENT 'Link to journal entry if posted',
  `status` enum('draft','filed','paid','late','amended') DEFAULT 'draft',
  `filed_date` date DEFAULT NULL,
  `due_date` date NOT NULL,
  `memo` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `created_by` int(10) unsigned DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `updated_by` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `payment_number` (`payment_number`),
  KEY `idx_jurisdiction` (`jurisdiction_id`),
  KEY `idx_period` (`period_start`,`period_end`),
  KEY `idx_status` (`status`),
  KEY `idx_due_date` (`due_date`),
  KEY `idx_payment_number` (`payment_number`),
  KEY `created_by` (`created_by`),
  KEY `updated_by` (`updated_by`),
  CONSTRAINT `tax_payments_ibfk_1` FOREIGN KEY (`jurisdiction_id`) REFERENCES `tax_jurisdictions` (`id`),
  CONSTRAINT `tax_payments_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `tax_payments_ibfk_3` FOREIGN KEY (`updated_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_payments`
--

LOCK TABLES `tax_payments` WRITE;
/*!40000 ALTER TABLE `tax_payments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `tax_payments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `tax_rate_history`
--

DROP TABLE IF EXISTS `tax_rate_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tax_rate_history` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `jurisdiction_id` int(10) unsigned NOT NULL,
  `old_rate` decimal(8,5) DEFAULT NULL,
  `new_rate` decimal(8,5) NOT NULL,
  `effective_date` date NOT NULL,
  `change_reason` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `created_by` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_jurisdiction` (`jurisdiction_id`),
  KEY `idx_effective_date` (`effective_date`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `tax_rate_history_ibfk_1` FOREIGN KEY (`jurisdiction_id`) REFERENCES `tax_jurisdictions` (`id`) ON DELETE CASCADE,
  CONSTRAINT `tax_rate_history_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_rate_history`
--

LOCK TABLES `tax_rate_history` WRITE;
/*!40000 ALTER TABLE `tax_rate_history` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `tax_rate_history` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `tax_settings`
--

DROP TABLE IF EXISTS `tax_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tax_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `location_id` int(11) DEFAULT NULL COMMENT 'NULL = global default',
  `sales_tax_rate` decimal(5,2) DEFAULT 0.00 COMMENT 'Default sales tax rate %',
  `use_tax_rate` decimal(5,2) DEFAULT 0.00 COMMENT 'Use tax rate %',
  `tax_jurisdiction` varchar(100) DEFAULT NULL COMMENT 'Tax jurisdiction name',
  `tax_id_number` varchar(50) DEFAULT NULL COMMENT 'Tax ID/EIN for this jurisdiction',
  `collect_tax_on_shipping` tinyint(1) DEFAULT 0 COMMENT 'Charge tax on shipping',
  `tax_inclusive_pricing` tinyint(1) DEFAULT 0 COMMENT 'Prices include tax',
  `tax_rounding_method` enum('per_line','total') DEFAULT 'total' COMMENT 'When to round tax',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_location` (`location_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Sales and use tax configuration by location';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_settings`
--

LOCK TABLES `tax_settings` WRITE;
/*!40000 ALTER TABLE `tax_settings` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `tax_settings` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `temp_pipedrive_deal_map`
--

DROP TABLE IF EXISTS `temp_pipedrive_deal_map`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `temp_pipedrive_deal_map` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `pipedrive_deal_id` varchar(100) NOT NULL COMMENT 'Original Pipedrive Deal/Lead ID',
  `pipedrive_deal_title` varchar(255) NOT NULL COMMENT 'Deal title from Pipedrive',
  `opportunity_id` int(10) unsigned NOT NULL COMMENT 'Local opportunity table ID',
  `import_type` enum('deal','lead') NOT NULL COMMENT 'Whether from DEALS.csv or LEADS.csv',
  `import_status` enum('pending','imported','skipped','error') DEFAULT 'imported',
  `import_note` text DEFAULT NULL COMMENT 'Import notes or errors',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_pipedrive_deal` (`pipedrive_deal_id`),
  KEY `idx_opportunity_id` (`opportunity_id`),
  KEY `idx_deal_title` (`pipedrive_deal_title`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci COMMENT='Maps Pipedrive deal/lead IDs to opportunity IDs';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temp_pipedrive_deal_map`
--

LOCK TABLES `temp_pipedrive_deal_map` WRITE;
/*!40000 ALTER TABLE `temp_pipedrive_deal_map` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `temp_pipedrive_deal_map` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `temp_pipedrive_import_log`
--

DROP TABLE IF EXISTS `temp_pipedrive_import_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `temp_pipedrive_import_log` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `import_phase` enum('organizations','deals','leads','notes','files') NOT NULL,
  `record_identifier` varchar(255) DEFAULT NULL COMMENT 'Pipedrive ID or name being imported',
  `status` enum('success','warning','error','skipped') NOT NULL,
  `message` text DEFAULT NULL,
  `data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Additional context data' CHECK (json_valid(`data`)),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_phase` (`import_phase`),
  KEY `idx_status` (`status`),
  KEY `idx_created` (`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=28013 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci COMMENT='Detailed log of Pipedrive import process';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temp_pipedrive_import_log`
--

LOCK TABLES `temp_pipedrive_import_log` WRITE;
/*!40000 ALTER TABLE `temp_pipedrive_import_log` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `temp_pipedrive_import_log` VALUES
(1,'leads','6f361c30-2b5f-11f0-b07c-d722488bb431','error','Organization not found: ASPETTO INC',NULL,'2025-11-13 22:13:19'),
(2,'leads','fb866860-efba-11ef-9354-679a087e5dde','error','Organization not found: Analyticsystems',NULL,'2025-11-13 22:13:19'),
(3,'leads','ffe57cc0-efba-11ef-a25f-27af6aa53296','error','Organization not found: Analyticsystems',NULL,'2025-11-13 22:13:19'),
(4,'leads','0b43c180-d440-11ef-8a91-dd55c3e12ee5','error','Organization not found: Enginuity Innovation',NULL,'2025-11-13 22:13:19'),
(5,'leads','05230a40-efbb-11ef-89e4-8f6bc68f48ca','error','Organization not found: MIT',NULL,'2025-11-13 22:13:19'),
(6,'leads','ec25f6a0-1167-11f0-b0ea-9dcf99750a6f','error','Organization not found: Kippertool',NULL,'2025-11-13 22:13:19'),
(7,'leads','5a350db0-1169-11f0-8a93-f56042dc8e77','error','Organization not found: HumaNoid',NULL,'2025-11-13 22:13:19'),
(8,'leads','6cc1d900-4557-11f0-b7c8-dfe6c1885cc5','error','Organization not found: Applied Research Laboratories',NULL,'2025-11-13 22:13:19'),
(9,'leads','04ba3c30-c9f1-11ef-a932-67e1e8676586','error','Organization not found: Anirudh Sundar organization',NULL,'2025-11-13 22:13:19'),
(10,'leads','bea716a0-d9a4-11ef-a239-457311a42633','error','Organization not found: Alto Connect',NULL,'2025-11-13 22:13:19'),
(11,'leads','864d34e0-d9a6-11ef-9388-bd9b59a2c5c0','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(12,'leads','ed8db2f0-e965-11ef-b439-67371fcb719d','error','Organization not found: Mid Atlantic Drone Development, LLC',NULL,'2025-11-13 22:13:19'),
(13,'leads','19f446e0-e4a9-11ef-8386-6bcd4ee3c2c8','error','Organization not found: Bluetti',NULL,'2025-11-13 22:13:19'),
(14,'leads','213370c0-e4a9-11ef-a6d5-b7b59f53aff5','error','Organization not found: Inergysolar',NULL,'2025-11-13 22:13:19'),
(15,'leads','a380f520-d9aa-11ef-9388-bd9b59a2c5c0','error','Organization not found: Advanced Roofing',NULL,'2025-11-13 22:13:19'),
(16,'leads','2e7b4dd0-ea2f-11ef-9cfc-81286b7fb5b5','error','Organization not found: On Site Robotics',NULL,'2025-11-13 22:13:19'),
(17,'leads','dfed1230-fac2-11ef-8428-d3134bbcb217','error','Organization not found: Empirical Systems Aerospace',NULL,'2025-11-13 22:13:19'),
(18,'leads','f6b8fd20-fac3-11ef-9cb1-57d748d48e5a','error','Organization not found: Richard Root organization',NULL,'2025-11-13 22:13:19'),
(19,'leads','f74fa930-ee1d-11ef-9959-1b0e2676ae4b','error','Organization not found: Malloy Aeronautics',NULL,'2025-11-13 22:13:19'),
(20,'leads','18bfb060-ee1e-11ef-966d-c1c045126985','error','Organization not found: Nicolas Montoya organization',NULL,'2025-11-13 22:13:19'),
(21,'leads','af51b000-ff44-11ef-be17-0516b8e868aa','error','Organization not found: COTA Karting Battery',NULL,'2025-11-13 22:13:19'),
(22,'leads','b494bbc0-ff44-11ef-a1c9-01f10428b671','error','Organization not found: Six-15 Glasses',NULL,'2025-11-13 22:13:19'),
(23,'leads','46204050-4559-11f0-97a6-e1b74ced1001','error','Organization not found: RAILBLAZA',NULL,'2025-11-13 22:13:19'),
(24,'leads','4f43dd40-6287-11f0-9355-89f1a44fb036','error','Organization not found: Texas Marine',NULL,'2025-11-13 22:13:19'),
(25,'leads','d3775ee0-63ed-11f0-8072-a1e7c8df2cac','error','Organization not found: HV Diagnostics',NULL,'2025-11-13 22:13:19'),
(26,'leads','f064b940-829b-11f0-b332-31dbace912b4','error','Organization not found: Mirco Vehicle Technology LLC',NULL,'2025-11-13 22:13:19'),
(27,'leads','456f54c0-00da-11f0-9c97-276fd154ba62','error','Organization not found: Doble',NULL,'2025-11-13 22:13:19'),
(28,'leads','d7a78010-4559-11f0-a567-cbc2bb9c049d','error','Organization not found: Steve Statema organization',NULL,'2025-11-13 22:13:19'),
(29,'leads','aced73a0-1b03-11f0-a838-71ef90d7f1d9','error','Organization not found: Department of Homeland Security',NULL,'2025-11-13 22:13:19'),
(30,'leads','a4222bd0-829b-11f0-b332-31dbace912b4','error','Organization not found: Golf Cart OEM',NULL,'2025-11-13 22:13:19'),
(31,'leads','3f0b43d0-829b-11f0-a59e-cf7ab09132ac','error','Organization not found: Shaider Tech LLC',NULL,'2025-11-13 22:13:19'),
(32,'leads','0e81d440-6284-11f0-97b6-8b92c8e9e9e9','error','Organization not found: US Nacy CENSECFOR DET GULFPORT',NULL,'2025-11-13 22:13:19'),
(33,'leads','430506b0-829b-11f0-8479-f5fe35a5a21f','error','Organization not found: Trimverse - 72V',NULL,'2025-11-13 22:13:19'),
(34,'leads','2ddafdc0-4ae8-11f0-bb93-af18be670375','error','Organization not found: Havenhill Synergy Ltd',NULL,'2025-11-13 22:13:19'),
(35,'leads','951e6e50-6284-11f0-9355-89f1a44fb036','error','Organization not found: National Park Service',NULL,'2025-11-13 22:13:19'),
(36,'leads','24ec3e40-6285-11f0-9355-89f1a44fb036','error','Organization not found: Advance Boat',NULL,'2025-11-13 22:13:19'),
(37,'leads','679dc290-6285-11f0-93db-21362d29a27b','error','Organization not found: Dealers Electric Supply',NULL,'2025-11-13 22:13:19'),
(38,'leads','3f293410-6286-11f0-91a5-397fb148a72c','error','Organization not found: Dauer Manufacturing -',NULL,'2025-11-13 22:13:19'),
(39,'leads','c630c9b0-67d0-11f0-a2af-81f18c53c554','error','Organization not found: HubSpot, Inc.',NULL,'2025-11-13 22:13:19'),
(40,'leads','484ba720-79e3-11f0-9483-d3784b88346c','error','Organization not found: James  Kurczewski  organization',NULL,'2025-11-13 22:13:19'),
(41,'leads','2cec74f0-8294-11f0-a59e-cf7ab09132ac','error','Organization not found: Office of Commander Surgeon',NULL,'2025-11-13 22:13:19'),
(42,'leads','39f578b0-8292-11f0-a59e-cf7ab09132ac','error','Organization not found: Student',NULL,'2025-11-13 22:13:19'),
(43,'leads','800d1d50-8290-11f0-a59e-cf7ab09132ac','error','Organization not found: Propelemarine | Electric paddle',NULL,'2025-11-13 22:13:19'),
(44,'leads','581d2820-8291-11f0-ae40-4b6df05ef984','error','Organization not found: Electric Yacht',NULL,'2025-11-13 22:13:19'),
(45,'leads','5d22b5b0-8291-11f0-8479-f5fe35a5a21f','error','Organization not found: Tesla',NULL,'2025-11-13 22:13:19'),
(46,'leads','04013730-8292-11f0-8479-f5fe35a5a21f','error','Organization not found: SynDaver',NULL,'2025-11-13 22:13:19'),
(47,'leads','a4988360-8292-11f0-b9b4-9d43547fe062','error','Organization not found: Systems by Green Choice',NULL,'2025-11-13 22:13:19'),
(48,'leads','fa26e1c0-d9a8-11ef-8a2f-2704684e7441','error','Organization not found: ElectricFish',NULL,'2025-11-13 22:13:19'),
(49,'leads','bee916e0-ee17-11ef-9b54-fb8e43539ea2','error','Organization not found: Alex Ruiz organization',NULL,'2025-11-13 22:13:19'),
(50,'leads','f9630790-ee17-11ef-963e-2df1899fc200','error','Organization not found: US SOC POE MARATIME',NULL,'2025-11-13 22:13:19'),
(51,'leads','9d098f90-ee18-11ef-9b54-fb8e43539ea2','error','Organization not found: HTS AmeriTek',NULL,'2025-11-13 22:13:19'),
(52,'leads','a2fe8630-ee18-11ef-966d-c1c045126985','error','Organization not found: Optum',NULL,'2025-11-13 22:13:19'),
(53,'leads','309fad60-f9e6-11ef-ab1c-87e12a8bd78f','error','Organization not found: B E Marine Service',NULL,'2025-11-13 22:13:19'),
(54,'leads','f7420dd0-fac4-11ef-bfb3-0d53ac223cec','error','Organization not found: Project Canary',NULL,'2025-11-13 22:13:19'),
(55,'leads','1c7efb80-fac5-11ef-a8ce-438f90876d58','error','Organization not found: Grander Marine',NULL,'2025-11-13 22:13:19'),
(56,'leads','be6761c0-ff44-11ef-a1c9-01f10428b671','error','Organization not found: Mercurius Tech',NULL,'2025-11-13 22:13:19'),
(57,'leads','c99d26f0-ff54-11ef-b60c-49fa3e21c67c','error','Organization not found: ClearWorld',NULL,'2025-11-13 22:13:19'),
(58,'leads','6776c5d0-2b5f-11f0-953a-914460d42c56','error','Organization not found: Exfo',NULL,'2025-11-13 22:13:19'),
(59,'leads','6a9718a0-2b5f-11f0-a754-fb727b1d14ed','error','Organization not found: Swarmbotics AI',NULL,'2025-11-13 22:13:19'),
(60,'leads','97cbe2a0-455a-11f0-9b40-ef4957727fb6','error','Organization not found: Defense Threat Reduction Agency',NULL,'2025-11-13 22:13:19'),
(61,'leads','d17c5b40-457a-11f0-a78c-39ccd61f57dc','error','Organization not found: Black Saber Group',NULL,'2025-11-13 22:13:19'),
(62,'leads','0565e0f0-4631-11f0-ad09-951b989969ea','error','Organization not found: Bounce Imaging',NULL,'2025-11-13 22:13:19'),
(63,'leads','0a200da0-4631-11f0-895c-711eab65d642','error','Organization not found: JetSurf',NULL,'2025-11-13 22:13:19'),
(64,'leads','603fe290-6284-11f0-91a5-397fb148a72c','error','Organization not found: AIRBOSS DEFENSE GROUP LLC',NULL,'2025-11-13 22:13:19'),
(65,'leads','c874d370-6284-11f0-91a5-397fb148a72c','error','Organization not found: Aqua-Vu',NULL,'2025-11-13 22:13:19'),
(66,'leads','19317750-6285-11f0-9355-89f1a44fb036','error','Organization not found: Soundside Carts',NULL,'2025-11-13 22:13:19'),
(67,'leads','2488cea0-829c-11f0-a59e-cf7ab09132ac','error','Organization not found: BHI, CO',NULL,'2025-11-13 22:13:19'),
(68,'leads','27e54010-829c-11f0-ae40-4b6df05ef984','error','Organization not found: MR Miami',NULL,'2025-11-13 22:13:19'),
(69,'leads','9c8cfd40-829c-11f0-b332-31dbace912b4','error','Organization not found: Vanjen Group',NULL,'2025-11-13 22:13:19'),
(70,'leads','a8a1cb10-829c-11f0-a59e-cf7ab09132ac','error','Organization not found: Hydrants',NULL,'2025-11-13 22:13:19'),
(71,'leads','55687520-82a1-11f0-92ee-8dcbb1af7f0b','error','Organization not found: Batteries Plus',NULL,'2025-11-13 22:13:19'),
(72,'leads','dc3922d0-8a89-11f0-921a-57afd5b2529a','error','Organization not found: Streetleaf',NULL,'2025-11-13 22:13:19'),
(73,'leads','e25d3fc0-8a89-11f0-921a-57afd5b2529a','error','Organization not found: National Battery Supply',NULL,'2025-11-13 22:13:19'),
(74,'leads','e632ffe0-8a89-11f0-af93-ff2ea65fc23d','error','Organization not found: Fechheimer Brothers Co.',NULL,'2025-11-13 22:13:19'),
(75,'leads','aaaab360-54f1-11ef-99fa-b3cc65f4605b','error','Organization not found: Applied Physics Laboratory',NULL,'2025-11-13 22:13:19'),
(76,'leads','48b1b670-5b42-11ef-8d90-f5c271ae4e5d','error','Organization not found: n/A',NULL,'2025-11-13 22:13:19'),
(77,'leads','1fec77d0-063c-11ef-88af-1d5859aff86d','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(78,'leads','647e6290-63cb-11ef-b701-c5bea3976d00','error','Organization not found: Big Toe Engineering LLC',NULL,'2025-11-13 22:13:19'),
(79,'leads','88271310-5361-11ef-b44c-95f9bc766e6d','error','Organization not found: Aris Wind, LLC',NULL,'2025-11-13 22:13:19'),
(80,'leads','55fb8210-275e-11ef-8fa1-632a4d9ccf1c','error','Organization not found: https://www.paradigmrobotics.tech/',NULL,'2025-11-13 22:13:19'),
(81,'leads','af27e040-71ff-11ef-bfef-eb4c9f6f3a09','error','Organization not found: Genomekey',NULL,'2025-11-13 22:13:19'),
(82,'leads','7b346940-5967-11ee-a15e-8138d7a20f29','error','Organization not found: Advanced Aircraft',NULL,'2025-11-13 22:13:19'),
(83,'leads','7ce493e0-4045-11ee-a156-d58111db5cff','error','Organization not found: VDOT',NULL,'2025-11-13 22:13:19'),
(84,'leads','a0618210-4045-11ee-a41f-8946312ebb35','error','Organization not found: Feel Free Kayaks- Custom Battery',NULL,'2025-11-13 22:13:19'),
(85,'leads','38493030-4061-11ee-89c2-339bf2edd26b','error','Organization not found: Shimano- Custom Battery for Reel',NULL,'2025-11-13 22:13:19'),
(86,'leads','c364f740-4105-11ee-a41f-8946312ebb35','error','Organization not found: Pallet Shuttle - 24V 150',NULL,'2025-11-13 22:13:19'),
(87,'leads','089b78c0-4106-11ee-89c2-339bf2edd26b','error','Organization not found: World Fishing Tackle - 14.4V 8Ah-4AH',NULL,'2025-11-13 22:13:19'),
(88,'leads','c056db30-4dae-11ee-a7f5-859c9b8714a6','error','Organization not found: Practical Technology',NULL,'2025-11-13 22:13:19'),
(89,'leads','116ce240-4e76-11ee-b187-7323711a5671','error','Organization not found: Mayer Electric Inc.',NULL,'2025-11-13 22:13:19'),
(90,'leads','16c571d0-4e76-11ee-a8e5-5fd802a2c1bd','error','Organization not found: AGV America',NULL,'2025-11-13 22:13:19'),
(91,'leads','a63a2540-4e76-11ee-b187-7323711a5671','error','Organization not found: Sunshine Solar Services Inc.',NULL,'2025-11-13 22:13:19'),
(92,'leads','a9705490-4e77-11ee-a2c8-0181c13ca46c','error','Organization not found: DCS Corp',NULL,'2025-11-13 22:13:19'),
(93,'leads','206f8300-531d-11ee-9324-11d3355add0b','error','Organization not found: Ekozone Development',NULL,'2025-11-13 22:13:19'),
(94,'leads','bf676a60-572b-11ee-9a1a-fb22609a01aa','error','Organization not found: X, the moonshoot factory, Google',NULL,'2025-11-13 22:13:19'),
(95,'leads','7bbaece0-6795-11ee-b93f-63c9bb229d58','error','Organization not found: Hatteras',NULL,'2025-11-13 22:13:19'),
(96,'leads','9ed03680-7344-11ee-b195-bd18778d2562','error','Organization not found: Gcc-Na',NULL,'2025-11-13 22:13:19'),
(97,'leads','9e34ecb0-9e8d-11ee-be68-c1e203ae4ffd','error','Organization not found: Howeandhowe',NULL,'2025-11-13 22:13:19'),
(98,'leads','4f94cbc0-a0f4-11ee-b2c3-6d13ad8bd97c','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(99,'leads','38048f00-bad4-11ee-b122-9d9a49454552','error','Organization not found: Solis Energy',NULL,'2025-11-13 22:13:19'),
(100,'leads','71c31ef0-bad4-11ee-b68f-f367d5a5e9a2','error','Organization not found: Nabeel Perfumes',NULL,'2025-11-13 22:13:19'),
(101,'leads','95f2bb50-bad4-11ee-b122-9d9a49454552','error','Organization not found: Ecosense Lighting',NULL,'2025-11-13 22:13:19'),
(102,'leads','9bcf47f0-bad4-11ee-b68f-f367d5a5e9a2','error','Organization not found: Elements to Energy (E2E)',NULL,'2025-11-13 22:13:19'),
(103,'leads','a23b1c40-bad4-11ee-b68f-f367d5a5e9a2','error','Organization not found: Process Integration',NULL,'2025-11-13 22:13:19'),
(104,'leads','c15f85c0-bad4-11ee-b68f-f367d5a5e9a2','error','Organization not found: Sartorius',NULL,'2025-11-13 22:13:19'),
(105,'leads','c7c31cb0-bad4-11ee-a67a-21e2d0399d09','error','Organization not found: QinetiQ Group PLC',NULL,'2025-11-13 22:13:19'),
(106,'leads','e8877a90-bad4-11ee-b122-9d9a49454552','error','Organization not found: Intercomp USA',NULL,'2025-11-13 22:13:19'),
(107,'leads','ee1523e0-bad4-11ee-b122-9d9a49454552','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(108,'leads','f69d96a0-bad4-11ee-b68f-f367d5a5e9a2','error','Organization not found: RAILBLAZA',NULL,'2025-11-13 22:13:19'),
(109,'leads','3ba0d320-bad5-11ee-b122-9d9a49454552','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(110,'leads','5b8cf970-bad5-11ee-a67a-21e2d0399d09','error','Organization not found: Doug Shelby Engineering',NULL,'2025-11-13 22:13:19'),
(111,'leads','6fe23480-bad5-11ee-b122-9d9a49454552','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(112,'leads','955e4e10-bad5-11ee-a67a-21e2d0399d09','error','Organization not found: Environmentum',NULL,'2025-11-13 22:13:19'),
(113,'leads','5c0b34b0-bad6-11ee-b122-9d9a49454552','error','Organization not found: Volatus Aerospace',NULL,'2025-11-13 22:13:19'),
(114,'leads','cd1da0b0-bad7-11ee-b68f-f367d5a5e9a2','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(115,'leads','d367e340-bad7-11ee-b68f-f367d5a5e9a2','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(116,'leads','e6ad0de0-bad7-11ee-b68f-f367d5a5e9a2','error','Organization not found: Gcc-Na',NULL,'2025-11-13 22:13:19'),
(117,'leads','90522970-bad8-11ee-a67a-21e2d0399d09','error','Organization not found: Vallen Distribution INC.',NULL,'2025-11-13 22:13:19'),
(118,'leads','97a32da0-bad8-11ee-a67a-21e2d0399d09','error','Organization not found: Alumacart,',NULL,'2025-11-13 22:13:19'),
(119,'leads','bb90b7f0-bad8-11ee-b68f-f367d5a5e9a2','error','Organization not found: U.S. Navy NCIS',NULL,'2025-11-13 22:13:19'),
(120,'leads','ea059240-bad8-11ee-b122-9d9a49454552','error','Organization not found: Mayer Electric Supply',NULL,'2025-11-13 22:13:19'),
(121,'leads','5b7b4960-bad9-11ee-b68f-f367d5a5e9a2','error','Organization not found: VIRGINIA DEPARTMENT OF TRANSPORTATION',NULL,'2025-11-13 22:13:19'),
(122,'leads','af8bac20-bad9-11ee-a67a-21e2d0399d09','error','Organization not found: Anglers Choice Marine-MART',NULL,'2025-11-13 22:13:19'),
(123,'leads','7c040ed0-bc8f-11ee-b68f-f367d5a5e9a2','error','Organization not found: Offworld',NULL,'2025-11-13 22:13:19'),
(124,'leads','5df33900-c141-11ee-9f06-899b6c712b6e','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(125,'leads','3c8ac2c0-c43d-11ee-9f06-899b6c712b6e','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(126,'leads','ddcedd90-c9cb-11ee-9385-5593ab22350e','error','Organization not found: Project Canary',NULL,'2025-11-13 22:13:19'),
(127,'leads','48dccd10-ca92-11ee-a52a-1f4c71091bd4','error','Organization not found: Personal - 48V 5Kwh Powerwalls',NULL,'2025-11-13 22:13:19'),
(128,'leads','05484910-d4d5-11ee-8db7-f1722cfa26ee','error','Organization not found: MIB',NULL,'2025-11-13 22:13:19'),
(129,'leads','9c183f00-d587-11ee-8889-d1da495a3273','error','Organization not found: Blueline Video surveillance',NULL,'2025-11-13 22:13:19'),
(130,'leads','100f2d20-da46-11ee-9a5a-79c7439886bc','error','Organization not found: Forms inc.',NULL,'2025-11-13 22:13:19'),
(131,'leads','bc35a010-e541-11ee-8cb7-e57c04ba7b5d','error','Organization not found: SDMS Robotics',NULL,'2025-11-13 22:13:19'),
(132,'leads','3a0ad210-eab2-11ee-ba2c-b7d818aab9f9','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(133,'leads','6b029660-eb65-11ee-8fcc-0585346bdbe4','error','Organization not found: Silicon Techno Circuits',NULL,'2025-11-13 22:13:19'),
(134,'leads','ec0a0f40-eb74-11ee-b5da-f35f012d50d9','error','Organization not found: Emerson Ornstein organization',NULL,'2025-11-13 22:13:19'),
(135,'leads','16b962b0-ed0d-11ee-8a15-b13982013ab3','error','Organization not found: JettWatt',NULL,'2025-11-13 22:13:19'),
(136,'leads','a579e570-f03b-11ee-b746-7917a4a0bc4f','error','Organization not found: Global Concept',NULL,'2025-11-13 22:13:19'),
(137,'leads','6a8948b0-f03c-11ee-89ff-679ba970e042','error','Organization not found: University of Wisconsin Madison',NULL,'2025-11-13 22:13:19'),
(138,'leads','e5567070-f03e-11ee-89ff-679ba970e042','error','Organization not found: Emerson Ornstein organization',NULL,'2025-11-13 22:13:19'),
(139,'leads','b0425920-f067-11ee-820c-33dab0a80226','error','Organization not found: Abay organization',NULL,'2025-11-13 22:13:19'),
(140,'leads','8987b8c0-f0ee-11ee-951a-d70139889d2e','error','Organization not found: James  Kurczewski  organization',NULL,'2025-11-13 22:13:19'),
(141,'leads','00149990-f103-11ee-a1f1-47e4a2743c8f','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(142,'leads','6e447480-f103-11ee-bca9-956007a2c12d','error','Organization not found: Intovision',NULL,'2025-11-13 22:13:19'),
(143,'leads','107894e0-f111-11ee-bca9-956007a2c12d','error','Organization not found: Steve Statema organization',NULL,'2025-11-13 22:13:19'),
(144,'leads','75a596c0-f12e-11ee-a59f-47efee9cdae4','error','Organization not found: Scott Messick  organization',NULL,'2025-11-13 22:13:19'),
(145,'leads','4adc26e0-f681-11ee-9c2c-b796f5528e02','error','Organization not found: CU Boulder',NULL,'2025-11-13 22:13:19'),
(146,'leads','39ac9290-f741-11ee-88d2-675f5687e930','error','Organization not found: Menno T Bauman organization',NULL,'2025-11-13 22:13:19'),
(147,'leads','f26b9f20-fb32-11ee-833f-b763a46c6611','error','Organization not found: Ethan Rowe organization',NULL,'2025-11-13 22:13:19'),
(148,'leads','b516d800-fb51-11ee-9fbb-3b479f4719b7','error','Organization not found: Next Level Automotive',NULL,'2025-11-13 22:13:19'),
(149,'leads','7d403000-fb53-11ee-b2b9-1b356a63ceac','error','Organization not found: Dario Dentes organization',NULL,'2025-11-13 22:13:19'),
(150,'leads','cacaaba0-0186-11ef-a951-e10196e4111c','error','Organization not found: Globus Medical',NULL,'2025-11-13 22:13:19'),
(151,'leads','d822e400-03f9-11ef-96d0-3b2b639686a3','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(152,'leads','aa7b1c50-062b-11ef-bec7-91fd24d17c88','error','Organization not found: Teresa Moore organization',NULL,'2025-11-13 22:13:19'),
(153,'leads','9aa311b0-063b-11ef-af12-e5a2924242d9','error','Organization not found: Ocutrap',NULL,'2025-11-13 22:13:19'),
(154,'leads','cf917bf0-063b-11ef-8b5e-d990dc5b5e43','error','Organization not found: Chand brilliance',NULL,'2025-11-13 22:13:19'),
(155,'leads','fd0b0fe0-0647-11ef-96d0-3b2b639686a3','error','Organization not found: Steven Salter organization',NULL,'2025-11-13 22:13:19'),
(156,'leads','d3895950-0657-11ef-b9ea-b137f71f6a60','error','Organization not found: EZ Kruiser Golf Cart',NULL,'2025-11-13 22:13:19'),
(157,'leads','a05ea390-0711-11ef-a68e-dff3f93acbc4','error','Organization not found: Dueitts Battery Supply Inc.',NULL,'2025-11-13 22:13:19'),
(158,'leads','cce03830-0968-11ef-b3ba-e7336aadab95','error','Organization not found: Xworx Inc',NULL,'2025-11-13 22:13:19'),
(159,'leads','6ef43950-0969-11ef-97b7-1717425e0835','error','Organization not found: Bajaj',NULL,'2025-11-13 22:13:19'),
(160,'leads','b2b9f1c0-0e14-11ef-9b70-d91355cad6f6','error','Organization not found: Delmer & Associates, LCC',NULL,'2025-11-13 22:13:19'),
(161,'leads','584c60d0-0efd-11ef-b6b2-9354883a4197','error','Organization not found: Anthony Thomas organization',NULL,'2025-11-13 22:13:19'),
(162,'leads','04473340-12cf-11ef-a699-4d714b2a54f2','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(163,'leads','a0e73f10-1347-11ef-9e11-c101c1b0a59d','error','Organization not found: Ryan Somai organization',NULL,'2025-11-13 22:13:19'),
(164,'leads','031614f0-138d-11ef-b59a-f5796a9a3e88','error','Organization not found: nano power a.s.',NULL,'2025-11-13 22:13:19'),
(165,'leads','9593f5d0-13f2-11ef-9e11-c101c1b0a59d','error','Organization not found: Kiang Loong Ng organization',NULL,'2025-11-13 22:13:19'),
(166,'leads','8c9da370-145d-11ef-8d00-b3d319f4b9b9','error','Organization not found: PICODE',NULL,'2025-11-13 22:13:19'),
(167,'leads','c230d930-145d-11ef-9df3-191803d8bc06','error','Organization not found: Accesshardware Inc.',NULL,'2025-11-13 22:13:19'),
(168,'leads','ee1f4190-1790-11ef-87d1-bd61cc9f3289','error','Organization not found: Discovery Ford',NULL,'2025-11-13 22:13:19'),
(169,'leads','b1e004c0-1791-11ef-a1e7-514068a29cd4','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(170,'leads','1e8aa270-1796-11ef-a1e7-514068a29cd4','error','Organization not found: Encore Boat Works',NULL,'2025-11-13 22:13:19'),
(171,'leads','a34cf4a0-184e-11ef-a498-5bb397ef0249','error','Organization not found: Good Luck LLC',NULL,'2025-11-13 22:13:19'),
(172,'leads','a6bdea50-1910-11ef-9688-b1d73b6a5dcf','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(173,'leads','a675c0f0-1914-11ef-9a6b-71055cc5f8fb','error','Organization not found: Segway Hollywood',NULL,'2025-11-13 22:13:19'),
(174,'leads','12856d30-19d4-11ef-aa27-9bcd37a14e94','error','Organization not found: WSSA',NULL,'2025-11-13 22:13:19'),
(175,'leads','d4e60510-1cfe-11ef-b8cf-1fbf5e5198f8','error','Organization not found: Martin Rebuilds',NULL,'2025-11-13 22:13:19'),
(176,'leads','28ba2fe0-1d04-11ef-b8cf-1fbf5e5198f8','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(177,'leads','9e554fe0-1dd7-11ef-a841-8f0ae69dba57','error','Organization not found: Bill Daniels organization',NULL,'2025-11-13 22:13:19'),
(178,'leads','5bfcab30-1eee-11ef-b2cf-5fa52f512284','error','Organization not found: Martin Meek organization',NULL,'2025-11-13 22:13:19'),
(179,'leads','3d9fa890-1f6b-11ef-9a19-59a18cd49924','error','Organization not found: Track Master Mobility',NULL,'2025-11-13 22:13:19'),
(180,'leads','e3b1bbe0-1f77-11ef-9a19-59a18cd49924','error','Organization not found: Telecom Battery',NULL,'2025-11-13 22:13:19'),
(181,'leads','1ee93030-1f78-11ef-aa4e-4f4e2660fd7b','error','Organization not found: Vishwaracers',NULL,'2025-11-13 22:13:19'),
(182,'leads','59188350-1f78-11ef-9a19-59a18cd49924','error','Organization not found: Network Experts',NULL,'2025-11-13 22:13:19'),
(183,'leads','35f02fe0-1f9b-11ef-aa4e-4f4e2660fd7b','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(184,'leads','cf722ea0-228b-11ef-b2cf-5fa52f512284','error','Organization not found: General RV Center',NULL,'2025-11-13 22:13:19'),
(185,'leads','30dcfe90-228c-11ef-9923-0f43df108a4b','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(186,'leads','2446fd60-228d-11ef-9923-0f43df108a4b','error','Organization not found: Zakian Rugs',NULL,'2025-11-13 22:13:19'),
(187,'leads','6b48a1f0-228d-11ef-bf85-dd911e2a6349','error','Organization not found: EMB Motorsport',NULL,'2025-11-13 22:13:19'),
(188,'leads','b28d77c0-2292-11ef-9cb4-994a5793db83','error','Organization not found: M&P Security',NULL,'2025-11-13 22:13:19'),
(189,'leads','8da4c850-2305-11ef-b2cf-5fa52f512284','error','Organization not found: Anatolii organization',NULL,'2025-11-13 22:13:19'),
(190,'leads','5fc4d320-2446-11ef-946f-13b75546807f','error','Organization not found: Atomic Cool Kartz',NULL,'2025-11-13 22:13:19'),
(191,'leads','11e401f0-24e9-11ef-8ccb-ff8532d8e9f8','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(192,'leads','93c41370-24eb-11ef-b74f-6f6461a13fe8','error','Organization not found: Reid-Ashman Mfg.',NULL,'2025-11-13 22:13:19'),
(193,'leads','29e009a0-2504-11ef-8534-4d08477509db','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(194,'leads','205f16d0-2759-11ef-8fa1-632a4d9ccf1c','error','Organization not found: Advance Boat',NULL,'2025-11-13 22:13:19'),
(195,'leads','db0e11c0-2803-11ef-9bef-cd12d9a9d969','error','Organization not found: Mystery Flight',NULL,'2025-11-13 22:13:19'),
(196,'leads','3b5cc670-28cc-11ef-9c05-13f52b414c93','error','Organization not found: Roush',NULL,'2025-11-13 22:13:19'),
(197,'leads','ac30b5f0-28e5-11ef-a0ab-43b9a7fa6a42','error','Organization not found: Electric Yacht',NULL,'2025-11-13 22:13:19'),
(198,'leads','e9b21fa0-28f8-11ef-a841-8f0ae69dba57','error','Organization not found: Price Electronics',NULL,'2025-11-13 22:13:19'),
(199,'leads','beda6bf0-2cab-11ef-b680-91ad9d1991a4','error','Organization not found: Thomas Wadsworth organization',NULL,'2025-11-13 22:13:19'),
(200,'leads','045acf20-2e56-11ef-b69b-f170eca3ee31','error','Organization not found: Leidos',NULL,'2025-11-13 22:13:19'),
(201,'leads','949b1400-3248-11ef-99a4-d3346253e2c6','error','Organization not found: Navia Energy Inc.',NULL,'2025-11-13 22:13:19'),
(202,'leads','d93782f0-3249-11ef-9e56-a5bdc7b7d8d8','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(203,'leads','466f1b30-324a-11ef-91a5-ddf712cba00f','error','Organization not found: Soaring Concepts Aerospace',NULL,'2025-11-13 22:13:19'),
(204,'leads','31185930-324b-11ef-8f87-2febb96654ea','error','Organization not found: JP Equipment & Service Co.',NULL,'2025-11-13 22:13:19'),
(205,'leads','7d3d4c80-324b-11ef-99a4-d3346253e2c6','error','Organization not found: Chris Grondman organization',NULL,'2025-11-13 22:13:19'),
(206,'leads','9d198f20-325d-11ef-9866-edd510b5f338','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(207,'leads','cc4d50d0-34c7-11ef-ae44-b93f5d4649fe','error','Organization not found: Jay Rasi organization',NULL,'2025-11-13 22:13:19'),
(208,'leads','c99db420-388b-11ef-9e56-a5bdc7b7d8d8','error','Organization not found: Concept DD Inc',NULL,'2025-11-13 22:13:19'),
(209,'leads','5c223fa0-388c-11ef-849f-8b74dc1802d9','error','Organization not found: LFP Consumer Power Tool',NULL,'2025-11-13 22:13:19'),
(210,'leads','e97aad80-38b2-11ef-849f-8b74dc1802d9','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(211,'leads','b68ceb40-3e02-11ef-a02e-79dbbbddf863','error','Organization not found: Lotuccusa Inc',NULL,'2025-11-13 22:13:19'),
(212,'leads','5da3a090-3fc0-11ef-8975-2d5057077cbf','error','Organization not found: Scott Blew organization',NULL,'2025-11-13 22:13:19'),
(213,'leads','440ef8e0-3fe4-11ef-88e7-cf0db74c6016','error','Organization not found: Scott Blew organization',NULL,'2025-11-13 22:13:19'),
(214,'leads','c4a4d270-439c-11ef-a493-852435243172','error','Organization not found: Personal',NULL,'2025-11-13 22:13:19'),
(215,'leads','b6755210-45f9-11ef-901d-25624c1d8a42','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(216,'leads','e0a325f0-4840-11ef-8f97-c1c5192a041d','error','Organization not found: Operation Send it',NULL,'2025-11-13 22:13:19'),
(217,'leads','80ab0df0-4842-11ef-8f97-c1c5192a041d','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(218,'leads','190c5560-49bd-11ef-9388-b9dff8bd2fab','error','Organization not found: Majesty AI',NULL,'2025-11-13 22:13:19'),
(219,'leads','8967dc60-49dd-11ef-81ac-5b2abd8371f8','error','Organization not found: Blue Water Battery',NULL,'2025-11-13 22:13:19'),
(220,'leads','d168b680-4aa3-11ef-b910-03284540ed82','error','Organization not found: Repsol International',NULL,'2025-11-13 22:13:19'),
(221,'leads','c936f890-4b4e-11ef-8563-cb0a2734e89d','error','Organization not found: HumaNoid',NULL,'2025-11-13 22:13:19'),
(222,'leads','d5f47120-4e7d-11ef-99a6-4bf71821d30b','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(223,'leads','96c68430-5331-11ef-bf32-81d389b181df','error','Organization not found: Battery Bills LLC',NULL,'2025-11-13 22:13:19'),
(224,'leads','abc756a0-5333-11ef-9d17-c51e9e5fa5ca','error','Organization not found: ABA Marine Consulting INC.',NULL,'2025-11-13 22:13:19'),
(225,'leads','a75f1cc0-54ef-11ef-8794-03a7a8ec6de8','error','Organization not found: Marine Customer',NULL,'2025-11-13 22:13:19'),
(226,'leads','fbacba20-54f0-11ef-9113-8d86bb63387c','error','Organization not found: Integrated Marine Solutions',NULL,'2025-11-13 22:13:19'),
(227,'leads','ab109be0-55c7-11ef-adce-b5c0deaed1fd','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(228,'leads','ce114960-58e1-11ef-9941-17650adb0418','error','Organization not found: VJF',NULL,'2025-11-13 22:13:19'),
(229,'leads','2f3f1e00-59ab-11ef-9e31-bb24ab08945d','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(230,'leads','47f94750-5f31-11ef-8ac2-cd51ff4693d5','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(231,'leads','1d1ee5c0-618a-11ef-a702-659adcbee65a','error','Organization not found: Profound Home Improvement',NULL,'2025-11-13 22:13:19'),
(232,'leads','1b21a730-64a0-11ef-b4cc-13d3d3de7ea0','error','Organization not found: Advanced Green Technologies',NULL,'2025-11-13 22:13:19'),
(233,'leads','a5a78b40-6612-11ef-acf7-cfad48ddfff8','error','Organization not found: Hayatcomm.net',NULL,'2025-11-13 22:13:19'),
(234,'leads','46396240-6eb0-11ef-b2c1-ed044c57f72b','error','Organization not found: Swarmbotics AI',NULL,'2025-11-13 22:13:19'),
(235,'leads','6b7aba80-7447-11ef-9e80-a9fcb8936b1d','error','Organization not found: EnergyX',NULL,'2025-11-13 22:13:19'),
(236,'leads','9a16caf0-cde3-11ef-8263-7fe51e11e07f','error','Organization not found: METABOTS',NULL,'2025-11-13 22:13:19'),
(237,'organizations','Bottom Feeder','success','Imported as customer ID: 109',NULL,'2025-11-13 22:13:38'),
(238,'organizations','LBC','success','Imported as customer ID: 110',NULL,'2025-11-13 22:13:38'),
(239,'organizations','Toca Football','success','Imported as customer ID: 111',NULL,'2025-11-13 22:13:38'),
(240,'organizations','Hyde Park Partners','success','Imported as customer ID: 112',NULL,'2025-11-13 22:13:38'),
(241,'organizations','VIU Global','success','Imported as customer ID: 113',NULL,'2025-11-13 22:13:38'),
(242,'organizations','Acme (Sample)','success','Imported as customer ID: 114',NULL,'2025-11-13 22:13:38'),
(243,'organizations','General Dynamics Land Systems','success','Imported as customer ID: 115',NULL,'2025-11-13 22:13:38'),
(244,'organizations','HawkTV','success','Imported as customer ID: 116',NULL,'2025-11-13 22:13:38'),
(245,'organizations','Power Pole Geoff Contact','success','Imported as customer ID: 117',NULL,'2025-11-13 22:13:38'),
(246,'organizations','Cirnapro','success','Imported as customer ID: 118',NULL,'2025-11-13 22:13:38'),
(247,'organizations','Ontario Drive & Gear Limited','success','Imported as customer ID: 119',NULL,'2025-11-13 22:13:38'),
(248,'organizations','Retired','success','Imported as customer ID: 120',NULL,'2025-11-13 22:13:38'),
(249,'organizations','YRC Freight— Urbandale, Iowa','success','Imported as customer ID: 121',NULL,'2025-11-13 22:13:38'),
(250,'organizations','Night Fishing Buoy','success','Imported as customer ID: 122',NULL,'2025-11-13 22:13:38'),
(251,'organizations','Immigration and Customs Enforcment','success','Imported as customer ID: 123',NULL,'2025-11-13 22:13:38'),
(252,'organizations','Tough Signal','success','Imported as customer ID: 124',NULL,'2025-11-13 22:13:38'),
(253,'organizations','Booz Allen Hamilton Inc.','success','Imported as customer ID: 125',NULL,'2025-11-13 22:13:38'),
(254,'organizations','HV Diagnostics','success','Imported as customer ID: 126',NULL,'2025-11-13 22:13:38'),
(255,'organizations','Obsidian Intergration','success','Imported as customer ID: 127',NULL,'2025-11-13 22:13:38'),
(256,'organizations','Andretti Autosports','success','Imported as customer ID: 128',NULL,'2025-11-13 22:13:38'),
(257,'organizations','GCC','success','Imported as customer ID: 129',NULL,'2025-11-13 22:13:38'),
(258,'organizations','AGV America','success','Imported as customer ID: 130',NULL,'2025-11-13 22:13:38'),
(259,'organizations','Toronto Coach Terminal Inc.','success','Imported as customer ID: 131',NULL,'2025-11-13 22:13:38'),
(260,'organizations','IMPORT','error','Fatal error: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry \'Booz Allen Hamilton Inc.\' for key \'unique_pipedrive_org\'',NULL,'2025-11-13 22:13:38'),
(261,'organizations','IMPORT','error','Fatal error: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry \'Bottom Feeder\' for key \'unique_pipedrive_org\'',NULL,'2025-11-13 22:13:38'),
(262,'organizations','IMPORT','error','Fatal error: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry \'Bottom Feeder\' for key \'unique_pipedrive_org\'',NULL,'2025-11-13 23:11:18'),
(263,'deals','4','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(264,'deals','14','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(265,'deals','19','error','Organization not found: Federal Bureau of Investigation',NULL,'2025-11-14 00:11:03'),
(266,'deals','20','error','Organization not found: Solar Stik',NULL,'2025-11-14 00:11:03'),
(267,'deals','21','error','Organization not found: Crunchcycle',NULL,'2025-11-14 00:11:03'),
(268,'deals','22','error','Organization not found: Hydrants',NULL,'2025-11-14 00:11:03'),
(269,'deals','23','error','Organization not found: Volatusaerospace -UAV',NULL,'2025-11-14 00:11:03'),
(270,'deals','24','error','Organization not found: Defense Research Canada- Electric Argo',NULL,'2025-11-14 00:11:03'),
(271,'deals','26','error','Organization not found: NCIS',NULL,'2025-11-14 00:11:03'),
(272,'deals','27','error','Organization not found: West Marine',NULL,'2025-11-14 00:11:03'),
(273,'deals','28','error','Organization not found: Caymas Boats',NULL,'2025-11-14 00:11:03'),
(274,'deals','33','error','Organization not found: Seasats Inc. - 6S32P',NULL,'2025-11-14 00:11:03'),
(275,'deals','40','error','Organization not found: Pallet Shuttle',NULL,'2025-11-14 00:11:03'),
(276,'deals','46','error','Organization not found: Advanced Roofing',NULL,'2025-11-14 00:11:03'),
(277,'deals','49','error','Organization not found: Custom Boat Set Up',NULL,'2025-11-14 00:11:03'),
(278,'deals','50','error','Organization not found: Sol Circuits',NULL,'2025-11-14 00:11:03'),
(279,'deals','51','error','Organization not found: SynDaver',NULL,'2025-11-14 00:11:03'),
(280,'deals','52','error','Organization not found: World Fishing Tackle - 14.4V 8Ah-4AH',NULL,'2025-11-14 00:11:03'),
(281,'deals','53','error','Organization not found: Fujitsu- 48V 20AH',NULL,'2025-11-14 00:11:03'),
(282,'deals','54','error','Organization not found: Lake County Sheriff',NULL,'2025-11-14 00:11:03'),
(283,'deals','55','error','Organization not found: Don Coffey',NULL,'2025-11-14 00:11:03'),
(284,'deals','56','error','Organization not found: Solar Stik',NULL,'2025-11-14 00:11:03'),
(285,'deals','58','error','Organization not found: Saleen',NULL,'2025-11-14 00:11:03'),
(286,'deals','61','error','Organization not found: Century Boats',NULL,'2025-11-14 00:11:03'),
(287,'deals','90','error','Organization not found: lighttacklecharters.com',NULL,'2025-11-14 00:11:03'),
(288,'deals','147','error','Organization not found: Bay Area Yacht Services',NULL,'2025-11-14 00:11:03'),
(289,'deals','150','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(290,'deals','178','error','Organization not found: Marine Metals Custom components, Inc.',NULL,'2025-11-14 00:11:03'),
(291,'deals','183','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(292,'deals','186','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(293,'deals','192','error','Organization not found: Central Gulf Coast Marine Services',NULL,'2025-11-14 00:11:03'),
(294,'deals','193','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(295,'deals','196','error','Organization not found: Bayfront Yachtworks & Marina',NULL,'2025-11-14 00:11:03'),
(296,'deals','197','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(297,'deals','199','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(298,'deals','200','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(299,'deals','203','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(300,'deals','204','error','Organization not found: Toho Marine & Outdoors',NULL,'2025-11-14 00:11:03'),
(301,'deals','212','error','Organization not found: Reverence Outdoors',NULL,'2025-11-14 00:11:03'),
(302,'deals','213','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(303,'deals','222','error','Organization not found: Johnson Outdoors Inc.',NULL,'2025-11-14 00:11:03'),
(304,'deals','223','error','Organization not found: Gregg Orr Marine- Hot Springs',NULL,'2025-11-14 00:11:03'),
(305,'deals','230','error','Organization not found: Johnson Outdoors Inc.',NULL,'2025-11-14 00:11:03'),
(306,'deals','231','error','Organization not found: WEST COAST MARINE',NULL,'2025-11-14 00:11:03'),
(307,'deals','234','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(308,'deals','235','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(309,'deals','239','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(310,'deals','240','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(311,'deals','244','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(312,'deals','245','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(313,'deals','249','error','Organization not found: Nibrico Marine',NULL,'2025-11-14 00:11:03'),
(314,'deals','251','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(315,'deals','252','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(316,'deals','256','error','Organization not found: 2 Gauge Marine & Trailer LLC',NULL,'2025-11-14 00:11:03'),
(317,'deals','257','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(318,'deals','263','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(319,'deals','265','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(320,'deals','268','error','Organization not found: Zaragoza Marine',NULL,'2025-11-14 00:11:03'),
(321,'deals','273','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(322,'deals','277','error','Organization not found: Third Coast Marine',NULL,'2025-11-14 00:11:03'),
(323,'deals','278','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(324,'deals','280','error','Organization not found: WEST COAST MARINE',NULL,'2025-11-14 00:11:03'),
(325,'deals','282','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(326,'deals','283','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(327,'deals','287','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(328,'deals','288','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(329,'deals','291','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(330,'deals','292','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(331,'deals','296','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(332,'deals','301','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(333,'deals','303','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(334,'deals','305','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(335,'deals','307','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(336,'deals','310','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(337,'deals','313','error','Organization not found: South Texas Trolling Motors',NULL,'2025-11-14 00:11:03'),
(338,'deals','315','error','Organization not found: CALOOSA RIVER, INC',NULL,'2025-11-14 00:11:03'),
(339,'deals','320','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(340,'deals','323','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(341,'deals','325','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(342,'deals','326','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(343,'deals','327','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(344,'deals','329','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(345,'deals','331','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(346,'deals','333','error','Organization not found: Graphite Corp',NULL,'2025-11-14 00:11:03'),
(347,'deals','334','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(348,'deals','337','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(349,'deals','338','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(350,'deals','339','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(351,'deals','341','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(352,'deals','343','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(353,'deals','345','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(354,'deals','349','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(355,'deals','350','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(356,'deals','352','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(357,'deals','356','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(358,'deals','357','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(359,'deals','362','error','Organization not found: Fat Cat Boatworks',NULL,'2025-11-14 00:11:03'),
(360,'deals','363','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(361,'deals','367','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(362,'deals','372','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(363,'deals','375','error','Organization not found: Family Boating Center',NULL,'2025-11-14 00:11:03'),
(364,'deals','376','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(365,'deals','380','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(366,'deals','381','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(367,'deals','385','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(368,'deals','390','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(369,'deals','393','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(370,'deals','397','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(371,'deals','402','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(372,'deals','403','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(373,'deals','407','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(374,'deals','410','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(375,'deals','412','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(376,'deals','414','error','Organization not found: Rapala VMC Corporation',NULL,'2025-11-14 00:11:03'),
(377,'deals','416','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(378,'deals','417','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(379,'deals','418','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(380,'deals','420','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(381,'deals','423','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(382,'deals','426','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(383,'deals','427','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(384,'deals','428','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(385,'deals','429','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(386,'deals','430','error','Organization not found: Ab2Nautica',NULL,'2025-11-14 00:11:03'),
(387,'deals','431','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(388,'deals','432','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(389,'deals','433','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(390,'deals','434','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(391,'deals','435','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(392,'deals','436','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(393,'deals','438','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(394,'deals','439','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(395,'deals','440','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(396,'deals','442','error','Organization not found: CED Marine Wholesale Marine Electronics',NULL,'2025-11-14 00:11:03'),
(397,'deals','443','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(398,'deals','444','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(399,'deals','445','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(400,'deals','447','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(401,'deals','448','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(402,'deals','450','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(403,'deals','451','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(404,'deals','453','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(405,'deals','454','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(406,'deals','457','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(407,'deals','458','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(408,'deals','460','error','Organization not found: Wholesale Batteries',NULL,'2025-11-14 00:11:03'),
(409,'deals','462','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(410,'deals','463','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(411,'deals','465','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(412,'deals','466','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(413,'deals','468','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(414,'deals','469','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(415,'deals','470','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(416,'deals','472','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(417,'deals','476','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(418,'deals','477','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(419,'deals','479','error','Organization not found: Sugar Creek Marina, Inc',NULL,'2025-11-14 00:11:03'),
(420,'deals','481','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(421,'deals','482','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(422,'deals','483','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(423,'deals','484','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(424,'deals','486','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(425,'deals','487','error','Organization not found: Weyn LLC',NULL,'2025-11-14 00:11:03'),
(426,'deals','488','error','Organization not found: Barton Specialty Services',NULL,'2025-11-14 00:11:03'),
(427,'deals','489','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(428,'deals','490','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(429,'deals','492','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(430,'deals','494','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(431,'deals','495','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(432,'deals','497','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(433,'deals','498','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(434,'deals','499','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(435,'deals','501','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(436,'deals','502','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(437,'deals','503','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(438,'deals','505','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(439,'deals','506','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(440,'deals','507','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(441,'deals','508','error','Organization not found: Performance East - Cedar Point',NULL,'2025-11-14 00:11:03'),
(442,'deals','509','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(443,'deals','510','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(444,'deals','512','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(445,'deals','515','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(446,'deals','516','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(447,'deals','517','error','Organization not found: Ingman Marine-Port Charlotte',NULL,'2025-11-14 00:11:03'),
(448,'deals','518','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(449,'deals','519','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(450,'deals','520','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(451,'deals','523','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(452,'deals','524','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(453,'deals','525','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(454,'deals','526','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(455,'deals','527','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(456,'deals','528','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(457,'deals','530','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(458,'deals','531','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(459,'deals','532','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(460,'deals','533','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(461,'deals','534','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(462,'deals','535','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(463,'deals','536','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(464,'deals','539','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(465,'deals','540','error','Organization not found: Suncoast Auto and Marine',NULL,'2025-11-14 00:11:03'),
(466,'deals','541','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(467,'deals','542','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(468,'deals','543','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(469,'deals','544','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(470,'deals','545','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(471,'deals','546','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(472,'deals','548','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(473,'deals','549','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(474,'deals','550','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(475,'deals','551','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(476,'deals','552','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(477,'deals','553','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(478,'deals','554','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(479,'deals','555','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(480,'deals','556','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(481,'deals','557','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(482,'deals','558','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(483,'deals','559','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(484,'deals','560','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(485,'deals','561','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(486,'deals','562','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(487,'deals','563','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(488,'deals','564','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(489,'deals','565','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(490,'deals','566','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(491,'deals','567','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(492,'deals','568','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(493,'deals','569','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(494,'deals','570','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(495,'deals','572','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(496,'deals','573','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(497,'deals','574','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(498,'deals','576','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(499,'deals','578','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(500,'deals','580','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(501,'deals','581','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(502,'deals','582','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(503,'deals','583','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(504,'deals','584','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(505,'deals','585','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(506,'deals','586','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(507,'deals','587','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(508,'deals','588','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(509,'deals','589','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(510,'deals','590','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(511,'deals','591','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(512,'deals','592','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(513,'deals','593','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(514,'deals','594','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(515,'deals','595','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(516,'deals','596','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(517,'deals','597','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(518,'deals','598','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(519,'deals','599','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(520,'deals','600','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(521,'deals','601','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(522,'deals','602','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(523,'deals','603','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(524,'deals','604','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(525,'deals','605','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(526,'deals','606','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(527,'deals','607','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(528,'deals','608','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(529,'deals','609','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(530,'deals','610','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(531,'deals','611','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(532,'deals','612','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(533,'deals','613','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(534,'deals','614','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(535,'deals','615','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(536,'deals','616','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(537,'deals','617','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(538,'deals','618','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(539,'deals','619','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(540,'deals','620','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(541,'deals','621','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(542,'deals','622','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(543,'deals','623','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(544,'deals','624','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(545,'deals','625','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(546,'deals','626','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(547,'deals','627','error','Organization not found: Carolinaboatco',NULL,'2025-11-14 00:11:03'),
(548,'deals','628','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(549,'deals','629','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(550,'deals','630','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(551,'deals','631','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(552,'deals','633','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(553,'deals','635','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(554,'deals','636','error','Organization not found: NuCanoe',NULL,'2025-11-14 00:11:03'),
(555,'deals','637','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(556,'deals','639','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(557,'deals','640','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(558,'deals','641','error','Organization not found: Amblogistic',NULL,'2025-11-14 00:11:03'),
(559,'deals','642','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(560,'deals','643','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(561,'deals','645','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(562,'deals','646','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(563,'deals','647','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(564,'deals','648','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(565,'deals','649','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(566,'deals','650','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(567,'deals','652','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(568,'deals','653','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(569,'deals','654','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(570,'deals','655','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(571,'deals','656','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(572,'deals','657','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(573,'deals','659','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(574,'deals','660','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(575,'deals','661','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(576,'deals','663','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(577,'deals','664','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(578,'deals','665','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(579,'deals','667','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(580,'deals','668','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(581,'deals','669','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(582,'deals','670','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(583,'deals','671','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(584,'deals','672','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(585,'deals','674','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(586,'deals','675','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(587,'deals','676','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(588,'deals','677','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(589,'deals','678','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(590,'deals','679','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(591,'deals','680','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(592,'deals','681','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(593,'deals','682','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(594,'deals','683','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(595,'deals','684','error','Organization not found: Lake and Trail USA',NULL,'2025-11-14 00:11:03'),
(596,'deals','685','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(597,'deals','686','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(598,'deals','687','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(599,'deals','689','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(600,'deals','690','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(601,'deals','691','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(602,'deals','692','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(603,'deals','693','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(604,'deals','695','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(605,'deals','696','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(606,'deals','698','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(607,'deals','699','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(608,'deals','700','error','Organization not found: Central Florida Trolling Motor & Phillips Bait & Tackle Shop',NULL,'2025-11-14 00:11:03'),
(609,'deals','701','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(610,'deals','702','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(611,'deals','703','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(612,'deals','704','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(613,'deals','706','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(614,'deals','707','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(615,'deals','708','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(616,'deals','709','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(617,'deals','710','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(618,'deals','711','error','Organization not found: Watersports West',NULL,'2025-11-14 00:11:03'),
(619,'deals','712','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(620,'deals','713','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(621,'deals','714','error','Organization not found: 44 Tackle',NULL,'2025-11-14 00:11:03'),
(622,'deals','715','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(623,'deals','716','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(624,'deals','717','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(625,'deals','718','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(626,'deals','719','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(627,'deals','721','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(628,'deals','723','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(629,'deals','724','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(630,'deals','726','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(631,'deals','727','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(632,'deals','728','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(633,'deals','729','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(634,'deals','730','error','Organization not found: R&R Marine',NULL,'2025-11-14 00:11:03'),
(635,'deals','731','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(636,'deals','732','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(637,'deals','733','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(638,'deals','734','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(639,'deals','735','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(640,'deals','736','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(641,'deals','737','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(642,'deals','738','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(643,'deals','739','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(644,'deals','740','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(645,'deals','741','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(646,'deals','742','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(647,'deals','743','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(648,'deals','744','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(649,'deals','745','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(650,'deals','746','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(651,'deals','747','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(652,'deals','748','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(653,'deals','750','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(654,'deals','751','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(655,'deals','752','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(656,'deals','753','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(657,'deals','754','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(658,'deals','755','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(659,'deals','756','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(660,'deals','757','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(661,'deals','758','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(662,'deals','759','error','Organization not found: Plantation Boat Mart & Marina, Inc.',NULL,'2025-11-14 00:11:03'),
(663,'deals','760','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(664,'deals','761','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(665,'deals','762','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(666,'deals','763','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(667,'deals','764','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(668,'deals','766','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(669,'deals','767','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(670,'deals','769','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(671,'deals','770','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(672,'deals','771','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(673,'deals','772','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(674,'deals','773','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(675,'deals','774','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(676,'deals','775','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(677,'deals','776','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(678,'deals','777','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(679,'deals','778','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(680,'deals','779','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(681,'deals','780','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(682,'deals','781','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(683,'deals','782','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(684,'deals','783','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(685,'deals','784','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(686,'deals','785','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(687,'deals','786','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(688,'deals','787','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(689,'deals','788','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(690,'deals','789','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(691,'deals','790','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(692,'deals','791','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(693,'deals','793','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(694,'deals','794','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(695,'deals','795','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(696,'deals','796','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(697,'deals','797','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(698,'deals','798','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(699,'deals','799','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(700,'deals','800','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(701,'deals','801','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(702,'deals','803','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(703,'deals','805','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(704,'deals','806','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(705,'deals','807','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(706,'deals','808','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(707,'deals','810','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(708,'deals','811','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(709,'deals','812','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(710,'deals','814','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(711,'deals','815','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(712,'deals','816','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(713,'deals','818','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(714,'deals','820','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(715,'deals','821','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(716,'deals','823','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(717,'deals','824','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(718,'deals','827','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(719,'deals','828','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(720,'deals','829','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(721,'deals','830','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(722,'deals','832','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(723,'deals','834','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(724,'deals','836','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(725,'deals','837','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(726,'deals','838','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(727,'deals','839','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(728,'deals','841','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(729,'deals','842','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(730,'deals','843','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(731,'deals','844','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(732,'deals','845','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(733,'deals','846','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(734,'deals','847','error','Organization not found: River Raptor Jetboats',NULL,'2025-11-14 00:11:03'),
(735,'deals','848','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(736,'deals','849','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(737,'deals','850','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(738,'deals','851','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(739,'deals','852','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(740,'deals','854','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(741,'deals','855','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(742,'deals','856','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(743,'deals','858','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(744,'deals','859','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(745,'deals','860','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(746,'deals','863','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(747,'deals','864','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(748,'deals','866','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(749,'deals','867','error','Organization not found: Caribee Boat Sales & Marina',NULL,'2025-11-14 00:11:03'),
(750,'deals','868','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(751,'deals','869','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(752,'deals','871','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(753,'deals','872','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(754,'deals','874','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(755,'deals','875','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(756,'deals','876','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(757,'deals','877','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(758,'deals','879','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(759,'deals','880','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(760,'deals','881','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(761,'deals','882','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(762,'deals','883','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(763,'deals','885','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(764,'deals','887','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(765,'deals','889','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(766,'deals','890','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(767,'deals','892','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(768,'deals','893','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(769,'deals','894','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(770,'deals','896','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(771,'deals','897','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(772,'deals','899','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(773,'deals','900','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(774,'deals','902','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(775,'deals','903','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(776,'deals','904','error','Organization not found: eMarine Systems',NULL,'2025-11-14 00:11:03'),
(777,'deals','905','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(778,'deals','906','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(779,'deals','907','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(780,'deals','909','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(781,'deals','910','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(782,'deals','912','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(783,'deals','913','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(784,'deals','914','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(785,'deals','915','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(786,'deals','916','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(787,'deals','917','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(788,'deals','919','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(789,'deals','920','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(790,'deals','921','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(791,'deals','922','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(792,'deals','924','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(793,'deals','925','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(794,'deals','926','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(795,'deals','928','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(796,'deals','929','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(797,'deals','930','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(798,'deals','931','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(799,'deals','933','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(800,'deals','934','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(801,'deals','937','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(802,'deals','939','error','Organization not found: Lynn’s West Side Marine',NULL,'2025-11-14 00:11:03'),
(803,'deals','940','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(804,'deals','942','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(805,'deals','943','error','Organization not found: Royal Marine Service & Management LLC',NULL,'2025-11-14 00:11:03'),
(806,'deals','944','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(807,'deals','946','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(808,'deals','947','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(809,'deals','948','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(810,'deals','949','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(811,'deals','951','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(812,'deals','953','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(813,'deals','955','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(814,'deals','956','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(815,'deals','957','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(816,'deals','959','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(817,'deals','960','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(818,'deals','961','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(819,'deals','963','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(820,'deals','964','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(821,'deals','965','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(822,'deals','966','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(823,'deals','967','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(824,'deals','970','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(825,'deals','971','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(826,'deals','972','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(827,'deals','973','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(828,'deals','974','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(829,'deals','975','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(830,'deals','976','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(831,'deals','978','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(832,'deals','979','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(833,'deals','980','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(834,'deals','981','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(835,'deals','982','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(836,'deals','983','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(837,'deals','984','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(838,'deals','985','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(839,'deals','986','error','Organization not found: Legendary Marine, Inc.-Destin',NULL,'2025-11-14 00:11:03'),
(840,'deals','987','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(841,'deals','988','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(842,'deals','989','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(843,'deals','990','error','Organization not found: Legendary Marine, Inc.-Gulf Shores',NULL,'2025-11-14 00:11:03'),
(844,'deals','991','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(845,'deals','992','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(846,'deals','993','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(847,'deals','994','error','Organization not found: sunrisemarineofalabama.com',NULL,'2025-11-14 00:11:03'),
(848,'deals','995','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(849,'deals','996','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(850,'deals','997','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(851,'deals','998','error','Organization not found: Legendary Marine, Inc.-PC',NULL,'2025-11-14 00:11:03'),
(852,'deals','999','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(853,'deals','1000','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(854,'deals','1001','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(855,'deals','1003','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(856,'deals','1004','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(857,'deals','1005','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(858,'deals','1006','error','Organization not found: Legendary Marine, Inc - Pensacola',NULL,'2025-11-14 00:11:03'),
(859,'deals','1007','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(860,'deals','1008','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(861,'deals','1009','error','Organization not found: Sunrise Marine Destin',NULL,'2025-11-14 00:11:03'),
(862,'deals','1010','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(863,'deals','1012','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(864,'deals','1013','error','Organization not found: Marina Mikes',NULL,'2025-11-14 00:11:03'),
(865,'deals','1014','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(866,'deals','1015','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(867,'deals','1016','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(868,'deals','1017','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(869,'deals','1018','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(870,'deals','1019','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(871,'deals','1020','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(872,'deals','1021','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(873,'deals','1023','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(874,'deals','1024','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(875,'deals','1027','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(876,'deals','1028','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(877,'deals','1029','error','Organization not found: Boatersworld',NULL,'2025-11-14 00:11:03'),
(878,'deals','1030','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(879,'deals','1031','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(880,'deals','1032','error','Organization not found: Reelsouthernmarine',NULL,'2025-11-14 00:11:03'),
(881,'deals','1033','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(882,'deals','1034','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(883,'deals','1036','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(884,'deals','1037','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(885,'deals','1038','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(886,'deals','1039','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(887,'deals','1040','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(888,'deals','1041','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(889,'deals','1042','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(890,'deals','1043','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(891,'deals','1044','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(892,'deals','1045','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(893,'deals','1046','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(894,'deals','1047','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(895,'deals','1048','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(896,'deals','1049','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(897,'deals','1050','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(898,'deals','1051','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(899,'deals','1052','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(900,'deals','1053','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(901,'deals','1054','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(902,'deals','1056','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(903,'deals','1057','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(904,'deals','1058','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(905,'deals','1059','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(906,'deals','1060','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(907,'deals','1061','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(908,'deals','1062','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(909,'deals','1063','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(910,'deals','1064','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(911,'deals','1065','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(912,'deals','1066','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(913,'deals','1067','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(914,'deals','1068','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(915,'deals','1069','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(916,'deals','1070','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(917,'deals','1071','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(918,'deals','1072','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(919,'deals','1073','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(920,'deals','1074','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(921,'deals','1075','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(922,'deals','1076','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(923,'deals','1077','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(924,'deals','1078','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(925,'deals','1079','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(926,'deals','1080','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(927,'deals','1081','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(928,'deals','1082','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(929,'deals','1083','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(930,'deals','1084','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(931,'deals','1085','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(932,'deals','1086','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(933,'deals','1088','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(934,'deals','1089','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(935,'deals','1091','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(936,'deals','1092','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(937,'deals','1093','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(938,'deals','1094','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(939,'deals','1095','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(940,'deals','1096','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(941,'deals','1097','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(942,'deals','1098','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(943,'deals','1099','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(944,'deals','1101','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(945,'deals','1102','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(946,'deals','1103','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(947,'deals','1104','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(948,'deals','1105','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(949,'deals','1106','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(950,'deals','1107','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(951,'deals','1108','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(952,'deals','1109','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(953,'deals','1110','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(954,'deals','1111','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(955,'deals','1112','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(956,'deals','1114','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(957,'deals','1115','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(958,'deals','1116','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(959,'deals','1117','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(960,'deals','1118','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(961,'deals','1120','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(962,'deals','1121','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(963,'deals','1123','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(964,'deals','1124','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(965,'deals','1125','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(966,'deals','1126','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(967,'deals','1127','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(968,'deals','1128','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(969,'deals','1129','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(970,'deals','1131','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(971,'deals','1132','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(972,'deals','1133','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(973,'deals','1135','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(974,'deals','1136','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(975,'deals','1137','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(976,'deals','1139','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(977,'deals','1141','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(978,'deals','1143','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(979,'deals','1144','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(980,'deals','1146','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(981,'deals','1147','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(982,'deals','1148','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(983,'deals','1149','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(984,'deals','1150','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(985,'deals','1151','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(986,'deals','1152','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(987,'deals','1153','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(988,'deals','1154','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(989,'deals','1155','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(990,'deals','1156','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(991,'deals','1157','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(992,'deals','1158','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(993,'deals','1159','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(994,'deals','1160','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(995,'deals','1161','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(996,'deals','1162','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(997,'deals','1163','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(998,'deals','1165','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(999,'deals','1166','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1000,'deals','1167','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1001,'deals','1168','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1002,'deals','1169','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1003,'deals','1170','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1004,'deals','1171','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1005,'deals','1172','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1006,'deals','1173','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1007,'deals','1174','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1008,'deals','1175','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1009,'deals','1176','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1010,'deals','1177','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1011,'deals','1178','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1012,'deals','1179','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1013,'deals','1180','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1014,'deals','1181','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1015,'deals','1182','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1016,'deals','1183','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1017,'deals','1184','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1018,'deals','1185','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1019,'deals','1186','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1020,'deals','1187','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1021,'deals','1188','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1022,'deals','1189','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1023,'deals','1190','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1024,'deals','1191','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1025,'deals','1192','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1026,'deals','1193','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1027,'deals','1194','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1028,'deals','1195','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1029,'deals','1196','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1030,'deals','1197','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1031,'deals','1198','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1032,'deals','1199','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1033,'deals','1200','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1034,'deals','1201','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1035,'deals','1202','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1036,'deals','1203','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1037,'deals','1204','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1038,'deals','1205','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1039,'deals','1206','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1040,'deals','1207','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1041,'deals','1208','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1042,'deals','1209','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1043,'deals','1210','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1044,'deals','1211','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1045,'deals','1213','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1046,'deals','1215','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1047,'deals','1216','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1048,'deals','1217','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1049,'deals','1218','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1050,'deals','1220','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1051,'deals','1221','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1052,'deals','1222','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1053,'deals','1223','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1054,'deals','1224','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1055,'deals','1225','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1056,'deals','1227','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1057,'deals','1229','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1058,'deals','1230','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1059,'deals','1231','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1060,'deals','1233','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1061,'deals','1234','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1062,'deals','1235','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1063,'deals','1236','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1064,'deals','1237','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1065,'deals','1238','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1066,'deals','1239','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1067,'deals','1240','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1068,'deals','1241','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1069,'deals','1242','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1070,'deals','1243','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1071,'deals','1245','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1072,'deals','1246','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1073,'deals','1247','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1074,'deals','1248','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1075,'deals','1250','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1076,'deals','1253','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1077,'deals','1255','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1078,'deals','1256','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1079,'deals','1257','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1080,'deals','1258','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1081,'deals','1259','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1082,'deals','1261','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1083,'deals','1262','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1084,'deals','1263','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1085,'deals','1264','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1086,'deals','1265','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1087,'deals','1266','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1088,'deals','1267','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1089,'deals','1268','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1090,'deals','1269','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1091,'deals','1271','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1092,'deals','1273','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1093,'deals','1274','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1094,'deals','1275','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1095,'deals','1276','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1096,'deals','1277','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1097,'deals','1278','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1098,'deals','1279','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1099,'deals','1281','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1100,'deals','1282','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1101,'deals','1283','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1102,'deals','1284','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1103,'deals','1285','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1104,'deals','1287','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1105,'deals','1288','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1106,'deals','1289','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1107,'deals','1290','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1108,'deals','1291','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1109,'deals','1292','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1110,'deals','1293','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1111,'deals','1294','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1112,'deals','1295','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1113,'deals','1296','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1114,'deals','1297','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1115,'deals','1300','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1116,'deals','1301','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1117,'deals','1302','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1118,'deals','1303','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1119,'deals','1304','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1120,'deals','1305','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1121,'deals','1307','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1122,'deals','1308','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1123,'deals','1310','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1124,'deals','1311','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1125,'deals','1312','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1126,'deals','1314','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1127,'deals','1315','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1128,'deals','1316','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1129,'deals','1317','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1130,'deals','1318','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1131,'deals','1319','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1132,'deals','1321','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1133,'deals','1322','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1134,'deals','1326','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1135,'deals','1327','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1136,'deals','1330','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1137,'deals','1331','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1138,'deals','1333','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1139,'deals','1335','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1140,'deals','1337','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1141,'deals','1338','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1142,'deals','1339','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1143,'deals','1341','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1144,'deals','1343','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1145,'deals','1344','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1146,'deals','1345','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1147,'deals','1346','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1148,'deals','1348','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1149,'deals','1349','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1150,'deals','1350','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1151,'deals','1351','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1152,'deals','1352','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1153,'deals','1353','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1154,'deals','1355','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1155,'deals','1358','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1156,'deals','1359','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1157,'deals','1360','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1158,'deals','1362','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1159,'deals','1365','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1160,'deals','1367','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1161,'deals','1369','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1162,'deals','1370','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1163,'deals','1371','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1164,'deals','1372','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1165,'deals','1374','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1166,'deals','1375','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1167,'deals','1376','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1168,'deals','1377','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1169,'deals','1378','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1170,'deals','1379','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1171,'deals','1380','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1172,'deals','1384','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1173,'deals','1385','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1174,'deals','1386','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1175,'deals','1387','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1176,'deals','1388','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1177,'deals','1389','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1178,'deals','1390','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1179,'deals','1391','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1180,'deals','1393','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1181,'deals','1394','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1182,'deals','1395','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1183,'deals','1396','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1184,'deals','1400','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1185,'deals','1401','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1186,'deals','1402','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1187,'deals','1403','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1188,'deals','1404','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1189,'deals','1405','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1190,'deals','1406','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1191,'deals','1407','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1192,'deals','1409','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1193,'deals','1410','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1194,'deals','1411','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1195,'deals','1412','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1196,'deals','1413','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1197,'deals','1416','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1198,'deals','1417','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1199,'deals','1418','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1200,'deals','1420','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1201,'deals','1421','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1202,'deals','1422','error','Organization not found: Solar Stik',NULL,'2025-11-14 00:11:03'),
(1203,'deals','1423','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1204,'deals','1424','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1205,'deals','1425','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1206,'deals','1426','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1207,'deals','1427','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1208,'deals','1428','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1209,'deals','1429','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1210,'deals','1430','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1211,'deals','1431','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1212,'deals','1432','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1213,'deals','1433','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1214,'deals','1434','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1215,'deals','1435','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1216,'deals','1436','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1217,'deals','1437','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1218,'deals','1438','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1219,'deals','1439','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1220,'deals','1440','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1221,'deals','1441','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1222,'deals','1442','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1223,'deals','1443','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1224,'deals','1444','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1225,'deals','1445','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1226,'deals','1446','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1227,'deals','1447','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1228,'deals','1448','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1229,'deals','1449','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1230,'deals','1450','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1231,'deals','1451','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1232,'deals','1452','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1233,'deals','1453','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1234,'deals','1454','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1235,'deals','1455','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1236,'deals','1456','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1237,'deals','1457','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1238,'deals','1458','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1239,'deals','1459','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1240,'deals','1460','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1241,'deals','1462','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1242,'deals','1463','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1243,'deals','1464','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1244,'deals','1466','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1245,'deals','1468','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1246,'deals','1469','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1247,'deals','1470','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1248,'deals','1471','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1249,'deals','1472','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1250,'deals','1473','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1251,'deals','1474','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1252,'deals','1475','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1253,'deals','1476','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1254,'deals','1477','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1255,'deals','1478','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1256,'deals','1481','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1257,'deals','1482','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1258,'deals','1483','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1259,'deals','1485','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1260,'deals','1486','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1261,'deals','1487','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1262,'deals','1488','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1263,'deals','1489','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1264,'deals','1490','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1265,'deals','1491','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1266,'deals','1492','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1267,'deals','1493','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1268,'deals','1495','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1269,'deals','1496','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1270,'deals','1497','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1271,'deals','1499','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1272,'deals','1501','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1273,'deals','1503','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1274,'deals','1505','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1275,'deals','1507','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1276,'deals','1508','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1277,'deals','1509','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1278,'deals','1510','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1279,'deals','1511','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1280,'deals','1512','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1281,'deals','1513','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1282,'deals','1514','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1283,'deals','1515','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1284,'deals','1516','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1285,'deals','1517','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1286,'deals','1518','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1287,'deals','1519','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1288,'deals','1520','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1289,'deals','1522','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1290,'deals','1523','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1291,'deals','1524','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1292,'deals','1525','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1293,'deals','1526','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1294,'deals','1527','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1295,'deals','1528','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1296,'deals','1529','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1297,'deals','1530','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1298,'deals','1531','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1299,'deals','1532','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1300,'deals','1533','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1301,'deals','1534','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1302,'deals','1535','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1303,'deals','1536','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1304,'deals','1547','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1305,'deals','1548','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1306,'deals','1549','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1307,'deals','1550','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1308,'deals','1551','error','Organization not found: 24V Brushless DC Motor- Endless Pools',NULL,'2025-11-14 00:11:03'),
(1309,'deals','1553','error','Organization not found: Mud Buddy, LLC',NULL,'2025-11-14 00:11:03'),
(1310,'deals','1555','error','Organization not found: Healthlight Engineering',NULL,'2025-11-14 00:11:03'),
(1311,'deals','1556','error','Organization not found: U.S. Geological Survery',NULL,'2025-11-14 00:11:03'),
(1312,'deals','1557','error','Organization not found: Jeneer Group',NULL,'2025-11-14 00:11:03'),
(1313,'deals','1558','error','Organization not found: Avada',NULL,'2025-11-14 00:11:03'),
(1314,'deals','1559','error','Organization not found: Obsidian Integration',NULL,'2025-11-14 00:11:03'),
(1315,'deals','1563','error','Organization not found: Dominion Rods',NULL,'2025-11-14 00:11:03'),
(1316,'deals','1566','error','Organization not found: Pacmartech',NULL,'2025-11-14 00:11:03'),
(1317,'deals','1570','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1318,'deals','1572','error','Organization not found: Back Haul Engineering',NULL,'2025-11-14 00:11:03'),
(1319,'deals','1573','error','Organization not found: Umn',NULL,'2025-11-14 00:11:03'),
(1320,'deals','1574','error','Organization not found: Howeandhowe',NULL,'2025-11-14 00:11:03'),
(1321,'deals','1575','error','Organization not found: Tritonsubs',NULL,'2025-11-14 00:11:03'),
(1322,'deals','1576','error','Organization not found: WESCO',NULL,'2025-11-14 00:11:03'),
(1323,'deals','1577','error','Organization not found: Unknown',NULL,'2025-11-14 00:11:03'),
(1324,'deals','1578','error','Organization not found: Elnfochips',NULL,'2025-11-14 00:11:03'),
(1325,'deals','1580','error','Organization not found: Shaider Tech LLC',NULL,'2025-11-14 00:11:03'),
(1326,'deals','1581','error','Organization not found: Solar Stik',NULL,'2025-11-14 00:11:03'),
(1327,'deals','1582','error','Organization not found: Roystonllc',NULL,'2025-11-14 00:11:03'),
(1328,'deals','1583','error','Organization not found: Idexx',NULL,'2025-11-14 00:11:03'),
(1329,'deals','1584','error','Organization not found: Gd-ms',NULL,'2025-11-14 00:11:03'),
(1330,'deals','1586','error','Organization not found: Analyticsystems',NULL,'2025-11-14 00:11:03'),
(1331,'deals','1589','error','Organization not found: E2companies',NULL,'2025-11-14 00:11:03'),
(1332,'deals','1590','error','Organization not found: Cirrussystemsus',NULL,'2025-11-14 00:11:03'),
(1333,'deals','1591','error','Organization not found: Faa',NULL,'2025-11-14 00:11:03'),
(1334,'deals','1592','error','Organization not found: Espicorp',NULL,'2025-11-14 00:11:03'),
(1335,'deals','1593','error','Organization not found: Uni-tell',NULL,'2025-11-14 00:11:03'),
(1336,'deals','1594','error','Organization not found: James Schwalm organization',NULL,'2025-11-14 00:11:03'),
(1337,'deals','1595','error','Organization not found: Martin Land',NULL,'2025-11-14 00:11:03'),
(1338,'deals','1596','error','Organization not found: Lupa Tecnologia e Sistemas S.A.',NULL,'2025-11-14 00:11:03'),
(1339,'deals','1597','error','Organization not found: dominionrods',NULL,'2025-11-14 00:11:03'),
(1340,'deals','1598','error','Organization not found: Mars Robotics',NULL,'2025-11-14 00:11:03'),
(1341,'deals','1600','error','Organization not found: Nasa',NULL,'2025-11-14 00:11:03'),
(1342,'deals','1604','error','Organization not found: George Binu organization',NULL,'2025-11-14 00:11:03'),
(1343,'deals','1605','error','Organization not found: Livaq',NULL,'2025-11-14 00:11:03'),
(1344,'deals','1608','error','Organization not found: OnSight Technology Inc.',NULL,'2025-11-14 00:11:03'),
(1345,'deals','1609','error','Organization not found: Florida Atlantic University',NULL,'2025-11-14 00:11:03'),
(1346,'deals','1610','error','Organization not found: Genesis Marine Technologies',NULL,'2025-11-14 00:11:03'),
(1347,'deals','1611','error','Organization not found: Progress Solar Solutions',NULL,'2025-11-14 00:11:03'),
(1348,'deals','1612','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1349,'deals','1613','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1350,'deals','1614','error','Organization not found: Crunchcycle',NULL,'2025-11-14 00:11:03'),
(1351,'deals','1616','error','Organization not found: Blueline Video Surveillance',NULL,'2025-11-14 00:11:03'),
(1352,'deals','1617','error','Organization not found: Shaider Tech LLC',NULL,'2025-11-14 00:11:03'),
(1353,'deals','1622','error','Organization not found: Dominion Rods',NULL,'2025-11-14 00:11:03'),
(1354,'deals','1623','error','Organization not found: Mesa Solutions',NULL,'2025-11-14 00:11:03'),
(1355,'deals','1625','error','Organization not found: Scewo AG',NULL,'2025-11-14 00:11:03'),
(1356,'deals','1626','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1357,'deals','1627','error','Organization not found: Ben Cox',NULL,'2025-11-14 00:11:03'),
(1358,'deals','1628','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1359,'deals','1629','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1360,'deals','1630','error','Organization not found: Avnon Group',NULL,'2025-11-14 00:11:03'),
(1361,'deals','1631','error','Organization not found: Fuel Trax',NULL,'2025-11-14 00:11:03'),
(1362,'deals','1632','error','Organization not found: LotWitness | Sentriforce',NULL,'2025-11-14 00:11:03'),
(1363,'deals','1634','error','Organization not found: JL Marine Systems',NULL,'2025-11-14 00:11:03'),
(1364,'deals','1635','error','Organization not found: Pacmartech',NULL,'2025-11-14 00:11:03'),
(1365,'deals','1638','error','Organization not found: US Geological Services - USGS',NULL,'2025-11-14 00:11:03'),
(1366,'deals','1639','error','Organization not found: London Machinery Inc.',NULL,'2025-11-14 00:11:03'),
(1367,'deals','1640','error','Organization not found: Climate Robotics',NULL,'2025-11-14 00:11:03'),
(1368,'deals','1641','error','Organization not found: Acufore',NULL,'2025-11-14 00:11:03'),
(1369,'deals','1642','error','Organization not found: Electric Chair- 2430 in parallel',NULL,'2025-11-14 00:11:03'),
(1370,'deals','1643','error','Organization not found: U.S. Navy NCIS',NULL,'2025-11-14 00:11:03'),
(1371,'deals','1647','error','Organization not found: Houston Career and Technology Education Center',NULL,'2025-11-14 00:11:03'),
(1372,'deals','1648','error','Organization not found: AirTech Innovations',NULL,'2025-11-14 00:11:03'),
(1373,'deals','1650','error','Organization not found: Phoenix Tactical',NULL,'2025-11-14 00:11:03'),
(1374,'deals','1651','error','Organization not found: BIT Solutions LLC',NULL,'2025-11-14 00:11:03'),
(1375,'deals','1653','error','Organization not found: Bering Global Solutions',NULL,'2025-11-14 00:11:03'),
(1376,'deals','1654','error','Organization not found: AEVEX',NULL,'2025-11-14 00:11:03'),
(1377,'deals','1655','error','Organization not found: Ganassi Racing',NULL,'2025-11-14 00:11:03'),
(1378,'deals','1657','error','Organization not found: United States Army Special Operations Command',NULL,'2025-11-14 00:11:03'),
(1379,'deals','1658','error','Organization not found: Department of Defense Office of Inspector General',NULL,'2025-11-14 00:11:03'),
(1380,'deals','1659','error','Organization not found: Astronics Test Systems',NULL,'2025-11-14 00:11:03'),
(1381,'deals','1660','error','Organization not found: Supplynet Inc',NULL,'2025-11-14 00:11:03'),
(1382,'deals','1661','error','Organization not found: Turtle Corporation',NULL,'2025-11-14 00:11:03'),
(1383,'deals','1664','error','Organization not found: Leidos',NULL,'2025-11-14 00:11:03'),
(1384,'deals','1665','error','Organization not found: DTV Arms',NULL,'2025-11-14 00:11:03'),
(1385,'deals','1666','error','Organization not found: Air Force SOC',NULL,'2025-11-14 00:11:03'),
(1386,'deals','1667','error','Organization not found: Polaris Government & Defense',NULL,'2025-11-14 00:11:03'),
(1387,'deals','1668','error','Organization not found: Raptor Photonics',NULL,'2025-11-14 00:11:03'),
(1388,'deals','1669','error','Organization not found: Rolls Royce LibertyWorks',NULL,'2025-11-14 00:11:03'),
(1389,'deals','1670','error','Organization not found: AV INC',NULL,'2025-11-14 00:11:03'),
(1390,'deals','1672','error','Organization not found: G-Way Microwave',NULL,'2025-11-14 00:11:03'),
(1391,'deals','1676','error','Organization not found: Joint Acquisition Task Force',NULL,'2025-11-14 00:11:03'),
(1392,'deals','1678','error','Organization not found: Helios Remote Sensing',NULL,'2025-11-14 00:11:03'),
(1393,'deals','1679','error','Organization not found: MGI Medical',NULL,'2025-11-14 00:11:03'),
(1394,'deals','1681','error','Organization not found: Expeditionary Services',NULL,'2025-11-14 00:11:03'),
(1395,'deals','1682','error','Organization not found: Samarthya Investment Advisors',NULL,'2025-11-14 00:11:03'),
(1396,'deals','1683','error','Organization not found: Lockheed Martin',NULL,'2025-11-14 00:11:03'),
(1397,'deals','1685','error','Organization not found: GEIST Robotics',NULL,'2025-11-14 00:11:03'),
(1398,'deals','1686','error','Organization not found: Pratt / Miller',NULL,'2025-11-14 00:11:03'),
(1399,'deals','1688','error','Organization not found: SOCOM.MIL',NULL,'2025-11-14 00:11:03'),
(1400,'deals','1689','error','Organization not found: Mistral Inc',NULL,'2025-11-14 00:11:03'),
(1401,'deals','1690','error','Organization not found: Patriot3',NULL,'2025-11-14 00:11:03'),
(1402,'deals','1691','error','Organization not found: Brentronics Battery',NULL,'2025-11-14 00:11:03'),
(1403,'deals','1692','error','Organization not found: Boeing',NULL,'2025-11-14 00:11:03'),
(1404,'deals','1693','error','Organization not found: 24V Brushless DC Motor- Endless Pools',NULL,'2025-11-14 00:11:03'),
(1405,'deals','1695','error','Organization not found: Marsrobot',NULL,'2025-11-14 00:11:03'),
(1406,'deals','1696','error','Organization not found: Pallet Shuttle',NULL,'2025-11-14 00:11:03'),
(1407,'deals','1697','error','Organization not found: Celektronix',NULL,'2025-11-14 00:11:03'),
(1408,'deals','1698','error','Organization not found: Berry Aviation',NULL,'2025-11-14 00:11:03'),
(1409,'deals','1699','error','Organization not found: Velozity Technology Solutions',NULL,'2025-11-14 00:11:03'),
(1410,'deals','1700','error','Organization not found: NexTech Solutions, LLC',NULL,'2025-11-14 00:11:03'),
(1411,'deals','1702','error','Organization not found: Segway Hollywood',NULL,'2025-11-14 00:11:03'),
(1412,'deals','1703','error','Organization not found: Newlands',NULL,'2025-11-14 00:11:03'),
(1413,'deals','1706','error','Organization not found: Track Master',NULL,'2025-11-14 00:11:03'),
(1414,'deals','1707','error','Organization not found: Marcus Portillo',NULL,'2025-11-14 00:11:03'),
(1415,'deals','1708','error','Organization not found: James Truman organization',NULL,'2025-11-14 00:11:03'),
(1416,'deals','1712','error','Organization not found: Ocean Rescue Alliance International',NULL,'2025-11-14 00:11:03'),
(1417,'deals','1713','error','Organization not found: Super Color Digital',NULL,'2025-11-14 00:11:03'),
(1418,'deals','1714','error','Organization not found: Marine Customer',NULL,'2025-11-14 00:11:03'),
(1419,'deals','1716','error','Organization not found: Optum',NULL,'2025-11-14 00:11:03'),
(1420,'deals','1718','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1421,'deals','1722','error','Organization not found: Sol Circuits',NULL,'2025-11-14 00:11:03'),
(1422,'deals','1723','error','Organization not found: Fujitsu- 48V 20AH',NULL,'2025-11-14 00:11:03'),
(1423,'deals','1724','error','Organization not found: US Traffic Systems',NULL,'2025-11-14 00:11:03'),
(1424,'deals','1725','error','Organization not found: Ohio Attorney Generals Office',NULL,'2025-11-14 00:11:03'),
(1425,'deals','1726','error','Organization not found: Vallen Distribution',NULL,'2025-11-14 00:11:03'),
(1426,'deals','1727','error','Organization not found: Lake County Sheriff-12V100',NULL,'2025-11-14 00:11:03'),
(1427,'deals','1730','error','Organization not found: Cicese',NULL,'2025-11-14 00:11:03'),
(1428,'deals','1733','error','Organization not found: Stream Techno',NULL,'2025-11-14 00:11:03'),
(1429,'deals','1734','error','Organization not found: Fuchs Electronics',NULL,'2025-11-14 00:11:03'),
(1430,'deals','1738','error','Organization not found: https://www.paradigmrobotics.tech/',NULL,'2025-11-14 00:11:03'),
(1431,'deals','1740','error','Organization not found: SDMS Robotics',NULL,'2025-11-14 00:11:03'),
(1432,'deals','1744','error','Organization not found: Alumacart',NULL,'2025-11-14 00:11:03'),
(1433,'deals','1745','error','Organization not found: Robotic Parking Systems',NULL,'2025-11-14 00:11:03'),
(1434,'deals','1749','error','Organization not found: EO Solutions-LBC R30K',NULL,'2025-11-14 00:11:03'),
(1435,'deals','1750','error','Organization not found: Price Electronics',NULL,'2025-11-14 00:11:03'),
(1436,'deals','1751','error','Organization not found: Stanley Robotics',NULL,'2025-11-14 00:11:03'),
(1437,'deals','1752','error','Organization not found: Residential ESS System',NULL,'2025-11-14 00:11:03'),
(1438,'deals','1753','error','Organization not found: Apellix',NULL,'2025-11-14 00:11:03'),
(1439,'deals','1755','error','Organization not found: Roush',NULL,'2025-11-14 00:11:03'),
(1440,'deals','1758','error','Organization not found: EV Power Boats',NULL,'2025-11-14 00:11:03'),
(1441,'deals','1763','error','Organization not found: Marine Customer',NULL,'2025-11-14 00:11:03'),
(1442,'deals','1764','error','Organization not found: Agility Robotics',NULL,'2025-11-14 00:11:03'),
(1443,'deals','1765','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1444,'deals','1766','error','Organization not found: FBI',NULL,'2025-11-14 00:11:03'),
(1445,'deals','1767','error','Organization not found: Solar Stik',NULL,'2025-11-14 00:11:03'),
(1446,'deals','1768','error','Organization not found: Airobotics',NULL,'2025-11-14 00:11:03'),
(1447,'deals','1771','error','Organization not found: Marine Customer',NULL,'2025-11-14 00:11:03'),
(1448,'deals','1773','error','Organization not found: Swarmbotics AI',NULL,'2025-11-14 00:11:03'),
(1449,'deals','1774','error','Organization not found: Schneider Electric',NULL,'2025-11-14 00:11:03'),
(1450,'deals','1776','error','Organization not found: Mud Buddy, LLC',NULL,'2025-11-14 00:11:03'),
(1451,'deals','1778','error','Organization not found: Dominion Rods',NULL,'2025-11-14 00:11:03'),
(1452,'deals','1779','error','Organization not found: Obsidian Integration',NULL,'2025-11-14 00:11:03'),
(1453,'deals','1780','error','Organization not found: Figure AI',NULL,'2025-11-14 00:11:03'),
(1454,'deals','1781','error','Organization not found: Marine 36V50 - Yellowfin',NULL,'2025-11-14 00:11:03'),
(1455,'deals','1782','error','Organization not found: Pallet Shuttle',NULL,'2025-11-14 00:11:03'),
(1456,'deals','1784','error','Organization not found: Grander Marine',NULL,'2025-11-14 00:11:03'),
(1457,'deals','1792','error','Organization not found: DBTech Prodcut',NULL,'2025-11-14 00:11:03'),
(1458,'deals','1797','error','Organization not found: Supernoid Robotics',NULL,'2025-11-14 00:11:03'),
(1459,'deals','1798','error','Organization not found: Federal Bureau of Investigation (FBI)',NULL,'2025-11-14 00:11:03'),
(1460,'deals','1799','error','Organization not found: nxtgencleanenergy',NULL,'2025-11-14 00:11:03'),
(1461,'deals','1800','error','Organization not found: Vector Climate',NULL,'2025-11-14 00:11:03'),
(1462,'deals','1802','error','Organization not found: Hydrants',NULL,'2025-11-14 00:11:03'),
(1463,'deals','1803','error','Organization not found: Tenacious International',NULL,'2025-11-14 00:11:03'),
(1464,'deals','1804','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1465,'deals','1805','error','Organization not found: Jeneer Group',NULL,'2025-11-14 00:11:03'),
(1466,'deals','1806','error','Organization not found: Profound Home Improvement',NULL,'2025-11-14 00:11:03'),
(1467,'deals','1810','error','Organization not found: Solar Stik',NULL,'2025-11-14 00:11:03'),
(1468,'deals','1811','error','Organization not found: Robotics Plus',NULL,'2025-11-14 00:11:03'),
(1469,'deals','1812','error','Organization not found: Universal Solutions Internaitonal',NULL,'2025-11-14 00:11:03'),
(1470,'deals','1818','error','Organization not found: Tanner . com',NULL,'2025-11-14 00:11:03'),
(1471,'deals','1820','error','Organization not found: Muhammad Zia Ullah organization',NULL,'2025-11-14 00:11:03'),
(1472,'deals','1823','error','Organization not found: Idexx',NULL,'2025-11-14 00:11:03'),
(1473,'deals','1827','error','Organization not found: Hayatcomm.net',NULL,'2025-11-14 00:11:03'),
(1474,'deals','1842','error','Organization not found: 4 Patriots',NULL,'2025-11-14 00:11:03'),
(1475,'deals','1843','error','Organization not found: Optiphase Aerospace & Drive Systems',NULL,'2025-11-14 00:11:03'),
(1476,'deals','1852','error','Organization not found: Sun Power Energy',NULL,'2025-11-14 00:11:03'),
(1477,'deals','1853','error','Organization not found: Belco Bermuda Light Company',NULL,'2025-11-14 00:11:03'),
(1478,'deals','1866','error','Organization not found: Pallet Shuttle',NULL,'2025-11-14 00:11:03'),
(1479,'deals','1867','error','Organization not found: Kupferle Water Solutions',NULL,'2025-11-14 00:11:03'),
(1480,'deals','1869','error','Organization not found: Meagan Donovan organization',NULL,'2025-11-14 00:11:03'),
(1481,'deals','1872','error','Organization not found: TTHOMAS    EDMONDS organization',NULL,'2025-11-14 00:11:03'),
(1482,'deals','1873','error','Organization not found: Electric Game Cart',NULL,'2025-11-14 00:11:03'),
(1483,'deals','1874','error','Organization not found: Jhonatan Chan organization',NULL,'2025-11-14 00:11:03'),
(1484,'deals','1876','error','Organization not found: DPI Labs Inc.',NULL,'2025-11-14 00:11:03'),
(1485,'deals','1877','error','Organization not found: Stream Techno',NULL,'2025-11-14 00:11:03'),
(1486,'deals','1880','error','Organization not found: Kavuma John organization',NULL,'2025-11-14 00:11:03'),
(1487,'deals','1883','error','Organization not found: James K. Donaghy organization',NULL,'2025-11-14 00:11:03'),
(1488,'deals','1885','error','Organization not found: World Fishing Tackle',NULL,'2025-11-14 00:11:03'),
(1489,'deals','1923','error','Organization not found: dominionrods',NULL,'2025-11-14 00:11:03'),
(1490,'deals','1925','error','Organization not found: Chapman/Leopard',NULL,'2025-11-14 00:11:03'),
(1491,'deals','1937','error','Organization not found: Newlands',NULL,'2025-11-14 00:11:03'),
(1492,'deals','1938','error','Organization not found: L3 Harris',NULL,'2025-11-14 00:11:03'),
(1493,'deals','1939','error','Organization not found: Eagle Picher Technologies',NULL,'2025-11-14 00:11:03'),
(1494,'deals','1940','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1495,'deals','1943','error','Organization not found: AirBus',NULL,'2025-11-14 00:11:03'),
(1496,'deals','1944','error','Organization not found: Collins Aerospace',NULL,'2025-11-14 00:11:03'),
(1497,'deals','1945','error','Organization not found: Prevalon Energy',NULL,'2025-11-14 00:11:03'),
(1498,'deals','1946','error','Organization not found: Power Sonic Corporation',NULL,'2025-11-14 00:11:03'),
(1499,'deals','1947','error','Organization not found: Curtiss-Wright',NULL,'2025-11-14 00:11:03'),
(1500,'deals','1948','error','Organization not found: Bluetti',NULL,'2025-11-14 00:11:03'),
(1501,'deals','1950','error','Organization not found: BAE Systems',NULL,'2025-11-14 00:11:03'),
(1502,'deals','1951','error','Organization not found: Powin',NULL,'2025-11-14 00:11:03'),
(1503,'deals','1952','error','Organization not found: Sonnen Inc',NULL,'2025-11-14 00:11:03'),
(1504,'deals','1953','error','Organization not found: Resistacap',NULL,'2025-11-14 00:11:03'),
(1505,'deals','1955','error','Organization not found: PowerPole',NULL,'2025-11-14 00:11:03'),
(1506,'deals','1956','error','Organization not found: Cubic Corporation',NULL,'2025-11-14 00:11:03'),
(1507,'deals','1957','error','Organization not found: XCharge',NULL,'2025-11-14 00:11:03'),
(1508,'deals','1958','error','Organization not found: Lithionics Battery',NULL,'2025-11-14 00:11:03'),
(1509,'deals','1959','error','Organization not found: PCClean Energy',NULL,'2025-11-14 00:11:03'),
(1510,'deals','1960','error','Organization not found: Avnon Group',NULL,'2025-11-14 00:11:03'),
(1511,'deals','1961','error','Organization not found: Practical Technology',NULL,'2025-11-14 00:11:03'),
(1512,'deals','1963','error','Organization not found: Lockeed Martin',NULL,'2025-11-14 00:11:03'),
(1513,'deals','1965','error','Organization not found: Northrop Grumman',NULL,'2025-11-14 00:11:03'),
(1514,'deals','1966','error','Organization not found: Siemens Energy',NULL,'2025-11-14 00:11:03'),
(1515,'deals','1967','error','Organization not found: Special Services Group',NULL,'2025-11-14 00:11:03'),
(1516,'deals','1968','error','Organization not found: Dauer Manufacturing -',NULL,'2025-11-14 00:11:03'),
(1517,'deals','1969','error','Organization not found: CDTI',NULL,'2025-11-14 00:11:03'),
(1518,'deals','1970','error','Organization not found: Enphase Energy',NULL,'2025-11-14 00:11:03'),
(1519,'deals','1972','error','Organization not found: TBD',NULL,'2025-11-14 00:11:03'),
(1520,'deals','1973','error','Organization not found: Outrider USA',NULL,'2025-11-14 00:11:03'),
(1521,'deals','1974','error','Organization not found: Security View',NULL,'2025-11-14 00:11:03'),
(1522,'deals','1975','error','Organization not found: PARAON TVOL',NULL,'2025-11-14 00:11:03'),
(1523,'deals','1976','error','Organization not found: Newlands',NULL,'2025-11-14 00:11:03'),
(1524,'deals','1985','error','Organization not found: Expro group',NULL,'2025-11-14 00:11:03'),
(1525,'deals','1986','error','Organization not found: Parker Hannifin Corporation',NULL,'2025-11-14 00:11:03'),
(1526,'deals','1987','error','Organization not found: Parker Hannifin Corporation',NULL,'2025-11-14 00:11:03'),
(1527,'deals','1988','error','Organization not found: Boeing',NULL,'2025-11-14 00:11:03'),
(1528,'deals','1989','error','Organization not found: CASES2GO',NULL,'2025-11-14 00:11:03'),
(1529,'deals','1990','error','Organization not found: Aeromarine\'s Leopard',NULL,'2025-11-14 00:11:03'),
(1530,'deals','1991','error','Organization not found: AJ\'S POWERSOURCE',NULL,'2025-11-14 00:11:03'),
(1531,'deals','1992','error','Organization not found: McAllister & Quin',NULL,'2025-11-14 00:11:03'),
(1532,'deals','1993','error','Organization not found: STS-MINIGUN',NULL,'2025-11-14 00:11:03'),
(1533,'deals','1994','error','Organization not found: STÜKEN',NULL,'2025-11-14 00:11:03'),
(1534,'deals','1995','error','Organization not found: IDEX Fire & Safety',NULL,'2025-11-14 00:11:03'),
(1535,'deals','1996','error','Organization not found: LEACH',NULL,'2025-11-14 00:11:03'),
(1536,'deals','1997','error','Organization not found: NORTHROP GRUMMAN',NULL,'2025-11-14 00:11:03'),
(1537,'deals','1998','error','Organization not found: TRELLEBORG',NULL,'2025-11-14 00:11:03'),
(1538,'deals','1999','error','Organization not found: FORGE',NULL,'2025-11-14 00:11:03'),
(1539,'deals','2000','error','Organization not found: MPInarada',NULL,'2025-11-14 00:11:03'),
(1540,'deals','2001','error','Organization not found: Vertex Imaging Solutions',NULL,'2025-11-14 00:11:03'),
(1541,'deals','2002','error','Organization not found: i2k Defense',NULL,'2025-11-14 00:11:03'),
(1542,'deals','2003','error','Organization not found: Ace Electronics Defense Systems, LLC',NULL,'2025-11-14 00:11:03'),
(1543,'deals','2004','error','Organization not found: WAVE AEROSPACE',NULL,'2025-11-14 00:11:03'),
(1544,'deals','2006','error','Organization not found: Whisper Aero',NULL,'2025-11-14 00:11:03'),
(1545,'deals','2007','error','Organization not found: Closedloop Cybernetics Inc.',NULL,'2025-11-14 00:11:03'),
(1546,'deals','2008','error','Organization not found: Firestorm Labs',NULL,'2025-11-14 00:11:03'),
(1547,'deals','2009','error','Organization not found: ACIC',NULL,'2025-11-14 00:11:03'),
(1548,'deals','2010','error','Organization not found: ASD',NULL,'2025-11-14 00:11:03'),
(1549,'deals','2011','error','Organization not found: HDT Global',NULL,'2025-11-14 00:11:03'),
(1550,'deals','2012','error','Organization not found: RAPID COMPOSITES',NULL,'2025-11-14 00:11:03'),
(1551,'deals','2013','error','Organization not found: Canine Defense Technologies',NULL,'2025-11-14 00:11:03'),
(1552,'deals','2015','error','Organization not found: Hoverfly Technologies, Inc',NULL,'2025-11-14 00:11:03'),
(1553,'deals','2016','error','Organization not found: Edge Autonomy',NULL,'2025-11-14 00:11:03'),
(1554,'deals','2017','error','Organization not found: Sandia National Laboratories',NULL,'2025-11-14 00:11:03'),
(1555,'deals','2018','error','Organization not found: H3X - Electric Motors',NULL,'2025-11-14 00:11:03'),
(1556,'deals','2019','error','Organization not found: Völund',NULL,'2025-11-14 00:11:03'),
(1557,'deals','2020','error','Organization not found: Morningstar Corporation',NULL,'2025-11-14 00:11:03'),
(1558,'deals','2021','error','Organization not found: U.S. Commercial Service, U.S. Department of Commerce',NULL,'2025-11-14 00:11:03'),
(1559,'deals','2022','error','Organization not found: US DHS HSI',NULL,'2025-11-14 00:11:03'),
(1560,'deals','2024','error','Organization not found: ModalAI, Inc.',NULL,'2025-11-14 00:11:03'),
(1561,'deals','2025','error','Organization not found: ZeroAlpha Solutions Ltd',NULL,'2025-11-14 00:11:03'),
(1562,'deals','2027','error','Organization not found: Amprius Technologies',NULL,'2025-11-14 00:11:03'),
(1563,'deals','2028','error','Organization not found: Cuattro Imaging',NULL,'2025-11-14 00:11:03'),
(1564,'deals','2029','error','Organization not found: Orange County Sheriff\'s Office',NULL,'2025-11-14 00:11:03'),
(1565,'deals','2030','error','Organization not found: 123 CRG',NULL,'2025-11-14 00:11:03'),
(1566,'deals','2031','error','Organization not found: Persistent Systems LLC',NULL,'2025-11-14 00:11:03'),
(1567,'deals','2032','error','Organization not found: SOF AT&L',NULL,'2025-11-14 00:11:03'),
(1568,'deals','2033','error','Organization not found: Maxar Technologies',NULL,'2025-11-14 00:11:03'),
(1569,'deals','2036','error','Organization not found: American Power Systems, Inc',NULL,'2025-11-14 00:11:03'),
(1570,'deals','2037','error','Organization not found: Carroll International',NULL,'2025-11-14 00:11:03'),
(1571,'deals','2038','error','Organization not found: Northrop Grumman',NULL,'2025-11-14 00:11:03'),
(1572,'deals','2039','error','Organization not found: Department of State',NULL,'2025-11-14 00:11:03'),
(1573,'deals','2040','error','Organization not found: DATRON MILITARY COMMUNICATIONS',NULL,'2025-11-14 00:11:03'),
(1574,'deals','2041','error','Organization not found: ICR',NULL,'2025-11-14 00:11:03'),
(1575,'deals','2042','error','Organization not found: Hitachi',NULL,'2025-11-14 00:11:03'),
(1576,'deals','2043','error','Organization not found: B&H Photo',NULL,'2025-11-14 00:11:03'),
(1577,'deals','2044','error','Organization not found: 5th Special Forces Group',NULL,'2025-11-14 00:11:03'),
(1578,'deals','2045','error','Organization not found: USSOCOM',NULL,'2025-11-14 00:11:03'),
(1579,'deals','2046','error','Organization not found: Atolla Tech',NULL,'2025-11-14 00:11:03'),
(1580,'deals','2047','error','Organization not found: EIZO Rugged Solutions',NULL,'2025-11-14 00:11:03'),
(1581,'deals','2049','error','Organization not found: Michael Peters Yacht Design',NULL,'2025-11-14 00:11:03'),
(1582,'deals','2050','error','Organization not found: EIC Labs',NULL,'2025-11-14 00:11:03'),
(1583,'deals','2051','error','Organization not found: Renegade UXS',NULL,'2025-11-14 00:11:03'),
(1584,'deals','2052','error','Organization not found: Patriot 3',NULL,'2025-11-14 00:11:03'),
(1585,'deals','2053','error','Organization not found: COTS',NULL,'2025-11-14 00:11:03'),
(1586,'deals','2054','error','Organization not found: ASPEN WATER INC',NULL,'2025-11-14 00:11:03'),
(1587,'deals','2055','error','Organization not found: Li-S Energy',NULL,'2025-11-14 00:11:03'),
(1588,'deals','2056','error','Organization not found: Michael Peters Yacht Design',NULL,'2025-11-14 00:11:03'),
(1589,'deals','2057','error','Organization not found: QRC (Parsons Company)',NULL,'2025-11-14 00:11:03'),
(1590,'deals','2058','error','Organization not found: MARA',NULL,'2025-11-14 00:11:03'),
(1591,'deals','2059','error','Organization not found: Northrop Grumman (ASGS)',NULL,'2025-11-14 00:11:03'),
(1592,'deals','2060','error','Organization not found: Conamix',NULL,'2025-11-14 00:11:03'),
(1593,'deals','2061','error','Organization not found: Fuses Unlimited',NULL,'2025-11-14 00:11:03'),
(1594,'deals','2062','error','Organization not found: EP Systems',NULL,'2025-11-14 00:11:03'),
(1595,'deals','2063','error','Organization not found: Expanse Labs',NULL,'2025-11-14 00:11:03'),
(1596,'deals','2064','error','Organization not found: Victory Six Advisors',NULL,'2025-11-14 00:11:03'),
(1597,'deals','2065','error','Organization not found: Sky-Watch',NULL,'2025-11-14 00:11:03'),
(1598,'deals','2066','error','Organization not found: Forge Group LLC',NULL,'2025-11-14 00:11:03'),
(1599,'deals','2067','error','Organization not found: SOCOM',NULL,'2025-11-14 00:11:03'),
(1600,'deals','2068','error','Organization not found: Jaia Robotics, Inc.',NULL,'2025-11-14 00:11:03'),
(1601,'deals','2069','error','Organization not found: Military Systems Group, Inc.',NULL,'2025-11-14 00:11:03'),
(1602,'deals','2070','error','Organization not found: 2d Special Operations Squadron',NULL,'2025-11-14 00:11:03'),
(1603,'deals','2071','error','Organization not found: SOCCENT/SPARTAN FORGE',NULL,'2025-11-14 00:11:03'),
(1604,'deals','2072','error','Organization not found: 919th SOW / 2 SOS',NULL,'2025-11-14 00:11:03'),
(1605,'deals','2073','error','Organization not found: Pelican Products, Inc.',NULL,'2025-11-14 00:11:03'),
(1606,'deals','2074','error','Organization not found: TestMart',NULL,'2025-11-14 00:11:03'),
(1607,'deals','2075','error','Organization not found: Ceebus Technologies',NULL,'2025-11-14 00:11:03'),
(1608,'deals','2076','error','Organization not found: Marlborough Communications Ltd',NULL,'2025-11-14 00:11:03'),
(1609,'deals','2077','error','Organization not found: TargetX LLC',NULL,'2025-11-14 00:11:03'),
(1610,'deals','2078','error','Organization not found: Redara Labs',NULL,'2025-11-14 00:11:03'),
(1611,'deals','2079','error','Organization not found: Coda Octopus Engineering',NULL,'2025-11-14 00:11:03'),
(1612,'deals','2080','error','Organization not found: USSOCOM',NULL,'2025-11-14 00:11:03'),
(1613,'deals','2081','error','Organization not found: USSOCOM',NULL,'2025-11-14 00:11:03'),
(1614,'deals','2082','error','Organization not found: Zero Point, Inc.',NULL,'2025-11-14 00:11:03'),
(1615,'deals','2083','error','Organization not found: USCENTCOM CCJ6',NULL,'2025-11-14 00:11:03'),
(1616,'deals','2084','error','Organization not found: Bhawin Technologies',NULL,'2025-11-14 00:11:03'),
(1617,'deals','2085','error','Organization not found: Fire Line',NULL,'2025-11-14 00:11:03'),
(1618,'deals','2086','error','Organization not found: Rapid Imaging Solutions',NULL,'2025-11-14 00:11:03'),
(1619,'deals','2087','error','Organization not found: High Ground Defense',NULL,'2025-11-14 00:11:03'),
(1620,'deals','2088','error','Organization not found: LEONARDO DRS',NULL,'2025-11-14 00:11:03'),
(1621,'deals','2089','error','Organization not found: ANDURIL',NULL,'2025-11-14 00:11:03'),
(1622,'deals','2090','error','Organization not found: MARATHON',NULL,'2025-11-14 00:11:03'),
(1623,'deals','2091','error','Organization not found: COMMAND HOLDINGS GROUP/DPM',NULL,'2025-11-14 00:11:03'),
(1624,'deals','2092','error','Organization not found: Edge Autonomy',NULL,'2025-11-14 00:11:03'),
(1625,'deals','2093','error','Organization not found: AimLock',NULL,'2025-11-14 00:11:03'),
(1626,'deals','2094','error','Organization not found: Milanion Group',NULL,'2025-11-14 00:11:03'),
(1627,'deals','2095','error','Organization not found: ODU-USA',NULL,'2025-11-14 00:11:03'),
(1628,'deals','2096','error','Organization not found: Sila Nanotechnologies, Inc',NULL,'2025-11-14 00:11:03'),
(1629,'deals','2097','error','Organization not found: Falcon Power LLC',NULL,'2025-11-14 00:11:03'),
(1630,'deals','2098','error','Organization not found: Raider Outboards',NULL,'2025-11-14 00:11:03'),
(1631,'deals','2099','error','Organization not found: Gorilla Weapons Systems',NULL,'2025-11-14 00:11:03'),
(1632,'deals','2100','error','Organization not found: American Technologies Network Corp.',NULL,'2025-11-14 00:11:03'),
(1633,'deals','2101','error','Organization not found: Terminal Autonomy',NULL,'2025-11-14 00:11:03'),
(1634,'deals','2102','error','Organization not found: SYPAQ',NULL,'2025-11-14 00:11:03'),
(1635,'deals','2103','error','Organization not found: UMD International, Inc',NULL,'2025-11-14 00:11:03'),
(1636,'deals','2104','error','Organization not found: Teledyne FLIR',NULL,'2025-11-14 00:11:03'),
(1637,'deals','2106','error','Organization not found: UK MOD (DES)',NULL,'2025-11-14 00:11:03'),
(1638,'deals','2107','error','Organization not found: Hoverfly Technologies Inc.',NULL,'2025-11-14 00:11:03'),
(1639,'deals','2108','error','Organization not found: Aristeias',NULL,'2025-11-14 00:11:03'),
(1640,'deals','2109','error','Organization not found: AlphaBravo',NULL,'2025-11-14 00:11:03'),
(1641,'deals','2110','error','Organization not found: AlphaBravo',NULL,'2025-11-14 00:11:03'),
(1642,'deals','2111','error','Organization not found: Triangle Aviation',NULL,'2025-11-14 00:11:03'),
(1643,'deals','2112','error','Organization not found: AeroVironment',NULL,'2025-11-14 00:11:03'),
(1644,'deals','2113','error','Organization not found: Booz Allen Hamilton',NULL,'2025-11-14 00:11:03'),
(1645,'deals','2114','error','Organization not found: Modus21, LLC',NULL,'2025-11-14 00:11:03'),
(1646,'deals','2115','error','Organization not found: ODU-USA',NULL,'2025-11-14 00:11:03'),
(1647,'deals','2116','error','Organization not found: Red Berry Innovations, Inc.',NULL,'2025-11-14 00:11:03'),
(1648,'deals','2117','error','Organization not found: APS',NULL,'2025-11-14 00:11:03'),
(1649,'deals','2119','error','Organization not found: Motivo Engineering',NULL,'2025-11-14 00:11:03'),
(1650,'deals','2120','error','Organization not found: US NAVY',NULL,'2025-11-14 00:11:03'),
(1651,'deals','2122','error','Organization not found: Engoplanet',NULL,'2025-11-14 00:11:03'),
(1652,'deals','2123','error','Organization not found: Industrial Pro LLC',NULL,'2025-11-14 00:11:03'),
(1653,'deals','2124','error','Organization not found: Byte & Word',NULL,'2025-11-14 00:11:03'),
(1654,'deals','2125','error','Organization not found: US Army',NULL,'2025-11-14 00:11:03'),
(1655,'deals','2127','error','Organization not found: Fortress Power',NULL,'2025-11-14 00:11:03'),
(1656,'deals','2128','error','Organization not found: Our Next Energy (ONE)',NULL,'2025-11-14 00:11:03'),
(1657,'deals','2129','error','Organization not found: RoboPave',NULL,'2025-11-14 00:11:03'),
(1658,'deals','2131','error','Organization not found: NeoVolta',NULL,'2025-11-14 00:11:03'),
(1659,'deals','2132','error','Organization not found: Nevados',NULL,'2025-11-14 00:11:03'),
(1660,'deals','2133','error','Organization not found: Etica AG',NULL,'2025-11-14 00:11:03'),
(1661,'deals','2134','error','Organization not found: Fuse Energy',NULL,'2025-11-14 00:11:03'),
(1662,'deals','2135','error','Organization not found: Siemens Energy',NULL,'2025-11-14 00:11:03'),
(1663,'deals','2136','error','Organization not found: AeroVironment',NULL,'2025-11-14 00:11:03'),
(1664,'deals','2137','error','Organization not found: AgEagle Aerial Systems',NULL,'2025-11-14 00:11:03'),
(1665,'deals','2138','error','Organization not found: Sol-Ark',NULL,'2025-11-14 00:11:03'),
(1666,'deals','2139','error','Organization not found: Eagle Picher Technologies',NULL,'2025-11-14 00:11:03'),
(1667,'deals','2140','error','Organization not found: Ultion Technology',NULL,'2025-11-14 00:11:03'),
(1668,'deals','2141','error','Organization not found: Forge Nano',NULL,'2025-11-14 00:11:03'),
(1669,'deals','2142','error','Organization not found: World Micro',NULL,'2025-11-14 00:11:03'),
(1670,'deals','2143','error','Organization not found: EV Designs',NULL,'2025-11-14 00:11:03'),
(1671,'deals','2144','error','Organization not found: Sonwil',NULL,'2025-11-14 00:11:03'),
(1672,'deals','2145','error','Organization not found: World Micro',NULL,'2025-11-14 00:11:03'),
(1673,'deals','2146','error','Organization not found: Eckley Energies',NULL,'2025-11-14 00:11:03'),
(1674,'deals','2147','error','Organization not found: One AI',NULL,'2025-11-14 00:11:03'),
(1675,'deals','2148','error','Organization not found: Energy Vault',NULL,'2025-11-14 00:11:03'),
(1676,'deals','2149','error','Organization not found: Unmanned Systems Technology',NULL,'2025-11-14 00:11:03'),
(1677,'deals','2150','error','Organization not found: Energy Vault',NULL,'2025-11-14 00:11:03'),
(1678,'deals','2151','error','Organization not found: Vertiv',NULL,'2025-11-14 00:11:03'),
(1679,'deals','2152','error','Organization not found: Etica AG',NULL,'2025-11-14 00:11:03'),
(1680,'deals','2153','error','Organization not found: Generac',NULL,'2025-11-14 00:11:03'),
(1681,'deals','2154','error','Organization not found: Lockheed Martin',NULL,'2025-11-14 00:11:03'),
(1682,'deals','2155','error','Organization not found: Panasonic Energy',NULL,'2025-11-14 00:11:03'),
(1683,'deals','2156','error','Organization not found: Fisca',NULL,'2025-11-14 00:11:03'),
(1684,'deals','2157','error','Organization not found: Fisica Inc',NULL,'2025-11-14 00:11:03'),
(1685,'deals','2158','error','Organization not found: Microvast',NULL,'2025-11-14 00:11:03'),
(1686,'deals','2159','error','Organization not found: Microvast',NULL,'2025-11-14 00:11:03'),
(1687,'deals','2160','error','Organization not found: Sol-Ark',NULL,'2025-11-14 00:11:03'),
(1688,'deals','2161','error','Organization not found: Inventus Power',NULL,'2025-11-14 00:11:03'),
(1689,'deals','2162','error','Organization not found: GM Defense',NULL,'2025-11-14 00:11:03'),
(1690,'deals','2163','error','Organization not found: EcoFlow',NULL,'2025-11-14 00:11:03'),
(1691,'deals','2164','error','Organization not found: Traxxas',NULL,'2025-11-14 00:11:03'),
(1692,'deals','2165','error','Organization not found: Tennant Company',NULL,'2025-11-14 00:11:03'),
(1693,'deals','2166','error','Organization not found: Stryten Energy',NULL,'2025-11-14 00:11:03'),
(1694,'deals','2167','error','Organization not found: Coulomb Technology',NULL,'2025-11-14 00:11:03'),
(1695,'deals','2168','error','Organization not found: Motive Energy',NULL,'2025-11-14 00:11:03'),
(1696,'deals','2169','error','Organization not found: Stryten Energy',NULL,'2025-11-14 00:11:03'),
(1697,'deals','2171','error','Organization not found: EcoFlow',NULL,'2025-11-14 00:11:03'),
(1698,'deals','2172','error','Organization not found: Swarmbotics AI',NULL,'2025-11-14 00:11:03'),
(1699,'leads','6f361c30-2b5f-11f0-b07c-d722488bb431','error','Organization not found: ASPETTO INC',NULL,'2025-11-14 00:11:07'),
(1700,'leads','fb866860-efba-11ef-9354-679a087e5dde','error','Organization not found: Analyticsystems',NULL,'2025-11-14 00:11:07'),
(1701,'leads','ffe57cc0-efba-11ef-a25f-27af6aa53296','error','Organization not found: Analyticsystems',NULL,'2025-11-14 00:11:07'),
(1702,'leads','0b43c180-d440-11ef-8a91-dd55c3e12ee5','error','Organization not found: Enginuity Innovation',NULL,'2025-11-14 00:11:07'),
(1703,'leads','05230a40-efbb-11ef-89e4-8f6bc68f48ca','error','Organization not found: MIT',NULL,'2025-11-14 00:11:07'),
(1704,'leads','ec25f6a0-1167-11f0-b0ea-9dcf99750a6f','error','Organization not found: Kippertool',NULL,'2025-11-14 00:11:07'),
(1705,'leads','5a350db0-1169-11f0-8a93-f56042dc8e77','error','Organization not found: HumaNoid',NULL,'2025-11-14 00:11:07'),
(1706,'leads','6cc1d900-4557-11f0-b7c8-dfe6c1885cc5','error','Organization not found: Applied Research Laboratories',NULL,'2025-11-14 00:11:07'),
(1707,'leads','04ba3c30-c9f1-11ef-a932-67e1e8676586','error','Organization not found: Anirudh Sundar organization',NULL,'2025-11-14 00:11:07'),
(1708,'leads','bea716a0-d9a4-11ef-a239-457311a42633','error','Organization not found: Alto Connect',NULL,'2025-11-14 00:11:07'),
(1709,'leads','864d34e0-d9a6-11ef-9388-bd9b59a2c5c0','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1710,'leads','ed8db2f0-e965-11ef-b439-67371fcb719d','error','Organization not found: Mid Atlantic Drone Development, LLC',NULL,'2025-11-14 00:11:07'),
(1711,'leads','19f446e0-e4a9-11ef-8386-6bcd4ee3c2c8','error','Organization not found: Bluetti',NULL,'2025-11-14 00:11:07'),
(1712,'leads','213370c0-e4a9-11ef-a6d5-b7b59f53aff5','error','Organization not found: Inergysolar',NULL,'2025-11-14 00:11:07'),
(1713,'leads','a380f520-d9aa-11ef-9388-bd9b59a2c5c0','error','Organization not found: Advanced Roofing',NULL,'2025-11-14 00:11:07'),
(1714,'leads','2e7b4dd0-ea2f-11ef-9cfc-81286b7fb5b5','error','Organization not found: On Site Robotics',NULL,'2025-11-14 00:11:07'),
(1715,'leads','dfed1230-fac2-11ef-8428-d3134bbcb217','error','Organization not found: Empirical Systems Aerospace',NULL,'2025-11-14 00:11:07'),
(1716,'leads','f6b8fd20-fac3-11ef-9cb1-57d748d48e5a','error','Organization not found: Richard Root organization',NULL,'2025-11-14 00:11:07'),
(1717,'leads','f74fa930-ee1d-11ef-9959-1b0e2676ae4b','error','Organization not found: Malloy Aeronautics',NULL,'2025-11-14 00:11:07'),
(1718,'leads','18bfb060-ee1e-11ef-966d-c1c045126985','error','Organization not found: Nicolas Montoya organization',NULL,'2025-11-14 00:11:07'),
(1719,'leads','af51b000-ff44-11ef-be17-0516b8e868aa','error','Organization not found: COTA Karting Battery',NULL,'2025-11-14 00:11:07'),
(1720,'leads','b494bbc0-ff44-11ef-a1c9-01f10428b671','error','Organization not found: Six-15 Glasses',NULL,'2025-11-14 00:11:07'),
(1721,'leads','46204050-4559-11f0-97a6-e1b74ced1001','error','Organization not found: RAILBLAZA',NULL,'2025-11-14 00:11:07'),
(1722,'leads','4f43dd40-6287-11f0-9355-89f1a44fb036','error','Organization not found: Texas Marine',NULL,'2025-11-14 00:11:07'),
(1723,'leads','f064b940-829b-11f0-b332-31dbace912b4','error','Organization not found: Mirco Vehicle Technology LLC',NULL,'2025-11-14 00:11:07'),
(1724,'leads','456f54c0-00da-11f0-9c97-276fd154ba62','error','Organization not found: Doble',NULL,'2025-11-14 00:11:07'),
(1725,'leads','d7a78010-4559-11f0-a567-cbc2bb9c049d','error','Organization not found: Steve Statema organization',NULL,'2025-11-14 00:11:07'),
(1726,'leads','aced73a0-1b03-11f0-a838-71ef90d7f1d9','error','Organization not found: Department of Homeland Security',NULL,'2025-11-14 00:11:07'),
(1727,'leads','a4222bd0-829b-11f0-b332-31dbace912b4','error','Organization not found: Golf Cart OEM',NULL,'2025-11-14 00:11:07'),
(1728,'leads','3f0b43d0-829b-11f0-a59e-cf7ab09132ac','error','Organization not found: Shaider Tech LLC',NULL,'2025-11-14 00:11:07'),
(1729,'leads','0e81d440-6284-11f0-97b6-8b92c8e9e9e9','error','Organization not found: US Nacy CENSECFOR DET GULFPORT',NULL,'2025-11-14 00:11:07'),
(1730,'leads','430506b0-829b-11f0-8479-f5fe35a5a21f','error','Organization not found: Trimverse - 72V',NULL,'2025-11-14 00:11:07'),
(1731,'leads','2ddafdc0-4ae8-11f0-bb93-af18be670375','error','Organization not found: Havenhill Synergy Ltd',NULL,'2025-11-14 00:11:07'),
(1732,'leads','951e6e50-6284-11f0-9355-89f1a44fb036','error','Organization not found: National Park Service',NULL,'2025-11-14 00:11:07'),
(1733,'leads','24ec3e40-6285-11f0-9355-89f1a44fb036','error','Organization not found: Advance Boat',NULL,'2025-11-14 00:11:07'),
(1734,'leads','679dc290-6285-11f0-93db-21362d29a27b','error','Organization not found: Dealers Electric Supply',NULL,'2025-11-14 00:11:07'),
(1735,'leads','3f293410-6286-11f0-91a5-397fb148a72c','error','Organization not found: Dauer Manufacturing -',NULL,'2025-11-14 00:11:07'),
(1736,'leads','c630c9b0-67d0-11f0-a2af-81f18c53c554','error','Organization not found: HubSpot, Inc.',NULL,'2025-11-14 00:11:07'),
(1737,'leads','484ba720-79e3-11f0-9483-d3784b88346c','error','Organization not found: James  Kurczewski  organization',NULL,'2025-11-14 00:11:07'),
(1738,'leads','2cec74f0-8294-11f0-a59e-cf7ab09132ac','error','Organization not found: Office of Commander Surgeon',NULL,'2025-11-14 00:11:07'),
(1739,'leads','39f578b0-8292-11f0-a59e-cf7ab09132ac','error','Organization not found: Student',NULL,'2025-11-14 00:11:07'),
(1740,'leads','800d1d50-8290-11f0-a59e-cf7ab09132ac','error','Organization not found: Propelemarine | Electric paddle',NULL,'2025-11-14 00:11:07'),
(1741,'leads','581d2820-8291-11f0-ae40-4b6df05ef984','error','Organization not found: Electric Yacht',NULL,'2025-11-14 00:11:07'),
(1742,'leads','5d22b5b0-8291-11f0-8479-f5fe35a5a21f','error','Organization not found: Tesla',NULL,'2025-11-14 00:11:07'),
(1743,'leads','04013730-8292-11f0-8479-f5fe35a5a21f','error','Organization not found: SynDaver',NULL,'2025-11-14 00:11:07'),
(1744,'leads','a4988360-8292-11f0-b9b4-9d43547fe062','error','Organization not found: Systems by Green Choice',NULL,'2025-11-14 00:11:07'),
(1745,'leads','fa26e1c0-d9a8-11ef-8a2f-2704684e7441','error','Organization not found: ElectricFish',NULL,'2025-11-14 00:11:07'),
(1746,'leads','bee916e0-ee17-11ef-9b54-fb8e43539ea2','error','Organization not found: Alex Ruiz organization',NULL,'2025-11-14 00:11:07'),
(1747,'leads','f9630790-ee17-11ef-963e-2df1899fc200','error','Organization not found: US SOC POE MARATIME',NULL,'2025-11-14 00:11:07'),
(1748,'leads','9d098f90-ee18-11ef-9b54-fb8e43539ea2','error','Organization not found: HTS AmeriTek',NULL,'2025-11-14 00:11:07'),
(1749,'leads','a2fe8630-ee18-11ef-966d-c1c045126985','error','Organization not found: Optum',NULL,'2025-11-14 00:11:07'),
(1750,'leads','309fad60-f9e6-11ef-ab1c-87e12a8bd78f','error','Organization not found: B E Marine Service',NULL,'2025-11-14 00:11:07'),
(1751,'leads','f7420dd0-fac4-11ef-bfb3-0d53ac223cec','error','Organization not found: Project Canary',NULL,'2025-11-14 00:11:07'),
(1752,'leads','1c7efb80-fac5-11ef-a8ce-438f90876d58','error','Organization not found: Grander Marine',NULL,'2025-11-14 00:11:07'),
(1753,'leads','be6761c0-ff44-11ef-a1c9-01f10428b671','error','Organization not found: Mercurius Tech',NULL,'2025-11-14 00:11:07'),
(1754,'leads','c99d26f0-ff54-11ef-b60c-49fa3e21c67c','error','Organization not found: ClearWorld',NULL,'2025-11-14 00:11:07'),
(1755,'leads','6776c5d0-2b5f-11f0-953a-914460d42c56','error','Organization not found: Exfo',NULL,'2025-11-14 00:11:07'),
(1756,'leads','6a9718a0-2b5f-11f0-a754-fb727b1d14ed','error','Organization not found: Swarmbotics AI',NULL,'2025-11-14 00:11:07'),
(1757,'leads','97cbe2a0-455a-11f0-9b40-ef4957727fb6','error','Organization not found: Defense Threat Reduction Agency',NULL,'2025-11-14 00:11:07'),
(1758,'leads','d17c5b40-457a-11f0-a78c-39ccd61f57dc','error','Organization not found: Black Saber Group',NULL,'2025-11-14 00:11:07'),
(1759,'leads','0565e0f0-4631-11f0-ad09-951b989969ea','error','Organization not found: Bounce Imaging',NULL,'2025-11-14 00:11:07'),
(1760,'leads','0a200da0-4631-11f0-895c-711eab65d642','error','Organization not found: JetSurf',NULL,'2025-11-14 00:11:07'),
(1761,'leads','603fe290-6284-11f0-91a5-397fb148a72c','error','Organization not found: AIRBOSS DEFENSE GROUP LLC',NULL,'2025-11-14 00:11:07'),
(1762,'leads','c874d370-6284-11f0-91a5-397fb148a72c','error','Organization not found: Aqua-Vu',NULL,'2025-11-14 00:11:07'),
(1763,'leads','19317750-6285-11f0-9355-89f1a44fb036','error','Organization not found: Soundside Carts',NULL,'2025-11-14 00:11:07'),
(1764,'leads','2488cea0-829c-11f0-a59e-cf7ab09132ac','error','Organization not found: BHI, CO',NULL,'2025-11-14 00:11:07'),
(1765,'leads','27e54010-829c-11f0-ae40-4b6df05ef984','error','Organization not found: MR Miami',NULL,'2025-11-14 00:11:07'),
(1766,'leads','9c8cfd40-829c-11f0-b332-31dbace912b4','error','Organization not found: Vanjen Group',NULL,'2025-11-14 00:11:07'),
(1767,'leads','a8a1cb10-829c-11f0-a59e-cf7ab09132ac','error','Organization not found: Hydrants',NULL,'2025-11-14 00:11:07'),
(1768,'leads','55687520-82a1-11f0-92ee-8dcbb1af7f0b','error','Organization not found: Batteries Plus',NULL,'2025-11-14 00:11:07'),
(1769,'leads','dc3922d0-8a89-11f0-921a-57afd5b2529a','error','Organization not found: Streetleaf',NULL,'2025-11-14 00:11:07'),
(1770,'leads','e25d3fc0-8a89-11f0-921a-57afd5b2529a','error','Organization not found: National Battery Supply',NULL,'2025-11-14 00:11:07'),
(1771,'leads','e632ffe0-8a89-11f0-af93-ff2ea65fc23d','error','Organization not found: Fechheimer Brothers Co.',NULL,'2025-11-14 00:11:07'),
(1772,'leads','aaaab360-54f1-11ef-99fa-b3cc65f4605b','error','Organization not found: Applied Physics Laboratory',NULL,'2025-11-14 00:11:07'),
(1773,'leads','48b1b670-5b42-11ef-8d90-f5c271ae4e5d','error','Organization not found: n/A',NULL,'2025-11-14 00:11:07'),
(1774,'leads','1fec77d0-063c-11ef-88af-1d5859aff86d','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1775,'leads','647e6290-63cb-11ef-b701-c5bea3976d00','error','Organization not found: Big Toe Engineering LLC',NULL,'2025-11-14 00:11:07'),
(1776,'leads','88271310-5361-11ef-b44c-95f9bc766e6d','error','Organization not found: Aris Wind, LLC',NULL,'2025-11-14 00:11:07'),
(1777,'leads','55fb8210-275e-11ef-8fa1-632a4d9ccf1c','error','Organization not found: https://www.paradigmrobotics.tech/',NULL,'2025-11-14 00:11:07'),
(1778,'leads','af27e040-71ff-11ef-bfef-eb4c9f6f3a09','error','Organization not found: Genomekey',NULL,'2025-11-14 00:11:07'),
(1779,'leads','7b346940-5967-11ee-a15e-8138d7a20f29','error','Organization not found: Advanced Aircraft',NULL,'2025-11-14 00:11:07'),
(1780,'leads','7ce493e0-4045-11ee-a156-d58111db5cff','error','Organization not found: VDOT',NULL,'2025-11-14 00:11:07'),
(1781,'leads','a0618210-4045-11ee-a41f-8946312ebb35','error','Organization not found: Feel Free Kayaks- Custom Battery',NULL,'2025-11-14 00:11:07'),
(1782,'leads','38493030-4061-11ee-89c2-339bf2edd26b','error','Organization not found: Shimano- Custom Battery for Reel',NULL,'2025-11-14 00:11:07'),
(1783,'leads','c364f740-4105-11ee-a41f-8946312ebb35','error','Organization not found: Pallet Shuttle - 24V 150',NULL,'2025-11-14 00:11:07'),
(1784,'leads','089b78c0-4106-11ee-89c2-339bf2edd26b','error','Organization not found: World Fishing Tackle - 14.4V 8Ah-4AH',NULL,'2025-11-14 00:11:07'),
(1785,'leads','c056db30-4dae-11ee-a7f5-859c9b8714a6','error','Organization not found: Practical Technology',NULL,'2025-11-14 00:11:07'),
(1786,'leads','116ce240-4e76-11ee-b187-7323711a5671','error','Organization not found: Mayer Electric Inc.',NULL,'2025-11-14 00:11:07'),
(1787,'leads','a63a2540-4e76-11ee-b187-7323711a5671','error','Organization not found: Sunshine Solar Services Inc.',NULL,'2025-11-14 00:11:07'),
(1788,'leads','a9705490-4e77-11ee-a2c8-0181c13ca46c','error','Organization not found: DCS Corp',NULL,'2025-11-14 00:11:07'),
(1789,'leads','206f8300-531d-11ee-9324-11d3355add0b','error','Organization not found: Ekozone Development',NULL,'2025-11-14 00:11:07'),
(1790,'leads','bf676a60-572b-11ee-9a1a-fb22609a01aa','error','Organization not found: X, the moonshoot factory, Google',NULL,'2025-11-14 00:11:07'),
(1791,'leads','7bbaece0-6795-11ee-b93f-63c9bb229d58','error','Organization not found: Hatteras',NULL,'2025-11-14 00:11:07'),
(1792,'leads','9ed03680-7344-11ee-b195-bd18778d2562','error','Organization not found: Gcc-Na',NULL,'2025-11-14 00:11:07'),
(1793,'leads','9e34ecb0-9e8d-11ee-be68-c1e203ae4ffd','error','Organization not found: Howeandhowe',NULL,'2025-11-14 00:11:07'),
(1794,'leads','4f94cbc0-a0f4-11ee-b2c3-6d13ad8bd97c','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1795,'leads','38048f00-bad4-11ee-b122-9d9a49454552','error','Organization not found: Solis Energy',NULL,'2025-11-14 00:11:07'),
(1796,'leads','71c31ef0-bad4-11ee-b68f-f367d5a5e9a2','error','Organization not found: Nabeel Perfumes',NULL,'2025-11-14 00:11:07'),
(1797,'leads','95f2bb50-bad4-11ee-b122-9d9a49454552','error','Organization not found: Ecosense Lighting',NULL,'2025-11-14 00:11:07'),
(1798,'leads','9bcf47f0-bad4-11ee-b68f-f367d5a5e9a2','error','Organization not found: Elements to Energy (E2E)',NULL,'2025-11-14 00:11:07'),
(1799,'leads','a23b1c40-bad4-11ee-b68f-f367d5a5e9a2','error','Organization not found: Process Integration',NULL,'2025-11-14 00:11:07'),
(1800,'leads','c15f85c0-bad4-11ee-b68f-f367d5a5e9a2','error','Organization not found: Sartorius',NULL,'2025-11-14 00:11:07'),
(1801,'leads','c7c31cb0-bad4-11ee-a67a-21e2d0399d09','error','Organization not found: QinetiQ Group PLC',NULL,'2025-11-14 00:11:07'),
(1802,'leads','e8877a90-bad4-11ee-b122-9d9a49454552','error','Organization not found: Intercomp USA',NULL,'2025-11-14 00:11:07'),
(1803,'leads','ee1523e0-bad4-11ee-b122-9d9a49454552','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1804,'leads','f69d96a0-bad4-11ee-b68f-f367d5a5e9a2','error','Organization not found: RAILBLAZA',NULL,'2025-11-14 00:11:07'),
(1805,'leads','3ba0d320-bad5-11ee-b122-9d9a49454552','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1806,'leads','5b8cf970-bad5-11ee-a67a-21e2d0399d09','error','Organization not found: Doug Shelby Engineering',NULL,'2025-11-14 00:11:07'),
(1807,'leads','6fe23480-bad5-11ee-b122-9d9a49454552','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1808,'leads','955e4e10-bad5-11ee-a67a-21e2d0399d09','error','Organization not found: Environmentum',NULL,'2025-11-14 00:11:07'),
(1809,'leads','5c0b34b0-bad6-11ee-b122-9d9a49454552','error','Organization not found: Volatus Aerospace',NULL,'2025-11-14 00:11:07'),
(1810,'leads','cd1da0b0-bad7-11ee-b68f-f367d5a5e9a2','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1811,'leads','d367e340-bad7-11ee-b68f-f367d5a5e9a2','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1812,'leads','e6ad0de0-bad7-11ee-b68f-f367d5a5e9a2','error','Organization not found: Gcc-Na',NULL,'2025-11-14 00:11:07'),
(1813,'leads','90522970-bad8-11ee-a67a-21e2d0399d09','error','Organization not found: Vallen Distribution INC.',NULL,'2025-11-14 00:11:07'),
(1814,'leads','97a32da0-bad8-11ee-a67a-21e2d0399d09','error','Organization not found: Alumacart,',NULL,'2025-11-14 00:11:07'),
(1815,'leads','bb90b7f0-bad8-11ee-b68f-f367d5a5e9a2','error','Organization not found: U.S. Navy NCIS',NULL,'2025-11-14 00:11:07'),
(1816,'leads','ea059240-bad8-11ee-b122-9d9a49454552','error','Organization not found: Mayer Electric Supply',NULL,'2025-11-14 00:11:07'),
(1817,'leads','5b7b4960-bad9-11ee-b68f-f367d5a5e9a2','error','Organization not found: VIRGINIA DEPARTMENT OF TRANSPORTATION',NULL,'2025-11-14 00:11:07'),
(1818,'leads','af8bac20-bad9-11ee-a67a-21e2d0399d09','error','Organization not found: Anglers Choice Marine-MART',NULL,'2025-11-14 00:11:07'),
(1819,'leads','7c040ed0-bc8f-11ee-b68f-f367d5a5e9a2','error','Organization not found: Offworld',NULL,'2025-11-14 00:11:07'),
(1820,'leads','5df33900-c141-11ee-9f06-899b6c712b6e','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1821,'leads','3c8ac2c0-c43d-11ee-9f06-899b6c712b6e','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1822,'leads','ddcedd90-c9cb-11ee-9385-5593ab22350e','error','Organization not found: Project Canary',NULL,'2025-11-14 00:11:07'),
(1823,'leads','48dccd10-ca92-11ee-a52a-1f4c71091bd4','error','Organization not found: Personal - 48V 5Kwh Powerwalls',NULL,'2025-11-14 00:11:07'),
(1824,'leads','05484910-d4d5-11ee-8db7-f1722cfa26ee','error','Organization not found: MIB',NULL,'2025-11-14 00:11:07'),
(1825,'leads','9c183f00-d587-11ee-8889-d1da495a3273','error','Organization not found: Blueline Video surveillance',NULL,'2025-11-14 00:11:07'),
(1826,'leads','100f2d20-da46-11ee-9a5a-79c7439886bc','error','Organization not found: Forms inc.',NULL,'2025-11-14 00:11:07'),
(1827,'leads','bc35a010-e541-11ee-8cb7-e57c04ba7b5d','error','Organization not found: SDMS Robotics',NULL,'2025-11-14 00:11:07'),
(1828,'leads','3a0ad210-eab2-11ee-ba2c-b7d818aab9f9','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1829,'leads','6b029660-eb65-11ee-8fcc-0585346bdbe4','error','Organization not found: Silicon Techno Circuits',NULL,'2025-11-14 00:11:07'),
(1830,'leads','ec0a0f40-eb74-11ee-b5da-f35f012d50d9','error','Organization not found: Emerson Ornstein organization',NULL,'2025-11-14 00:11:07'),
(1831,'leads','16b962b0-ed0d-11ee-8a15-b13982013ab3','error','Organization not found: JettWatt',NULL,'2025-11-14 00:11:07'),
(1832,'leads','a579e570-f03b-11ee-b746-7917a4a0bc4f','error','Organization not found: Global Concept',NULL,'2025-11-14 00:11:07'),
(1833,'leads','6a8948b0-f03c-11ee-89ff-679ba970e042','error','Organization not found: University of Wisconsin Madison',NULL,'2025-11-14 00:11:07'),
(1834,'leads','e5567070-f03e-11ee-89ff-679ba970e042','error','Organization not found: Emerson Ornstein organization',NULL,'2025-11-14 00:11:07'),
(1835,'leads','b0425920-f067-11ee-820c-33dab0a80226','error','Organization not found: Abay organization',NULL,'2025-11-14 00:11:07'),
(1836,'leads','8987b8c0-f0ee-11ee-951a-d70139889d2e','error','Organization not found: James  Kurczewski  organization',NULL,'2025-11-14 00:11:07'),
(1837,'leads','00149990-f103-11ee-a1f1-47e4a2743c8f','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1838,'leads','6e447480-f103-11ee-bca9-956007a2c12d','error','Organization not found: Intovision',NULL,'2025-11-14 00:11:07'),
(1839,'leads','107894e0-f111-11ee-bca9-956007a2c12d','error','Organization not found: Steve Statema organization',NULL,'2025-11-14 00:11:07'),
(1840,'leads','75a596c0-f12e-11ee-a59f-47efee9cdae4','error','Organization not found: Scott Messick  organization',NULL,'2025-11-14 00:11:07'),
(1841,'leads','4adc26e0-f681-11ee-9c2c-b796f5528e02','error','Organization not found: CU Boulder',NULL,'2025-11-14 00:11:07'),
(1842,'leads','39ac9290-f741-11ee-88d2-675f5687e930','error','Organization not found: Menno T Bauman organization',NULL,'2025-11-14 00:11:07'),
(1843,'leads','f26b9f20-fb32-11ee-833f-b763a46c6611','error','Organization not found: Ethan Rowe organization',NULL,'2025-11-14 00:11:07'),
(1844,'leads','b516d800-fb51-11ee-9fbb-3b479f4719b7','error','Organization not found: Next Level Automotive',NULL,'2025-11-14 00:11:07'),
(1845,'leads','7d403000-fb53-11ee-b2b9-1b356a63ceac','error','Organization not found: Dario Dentes organization',NULL,'2025-11-14 00:11:07'),
(1846,'leads','cacaaba0-0186-11ef-a951-e10196e4111c','error','Organization not found: Globus Medical',NULL,'2025-11-14 00:11:07'),
(1847,'leads','d822e400-03f9-11ef-96d0-3b2b639686a3','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1848,'leads','aa7b1c50-062b-11ef-bec7-91fd24d17c88','error','Organization not found: Teresa Moore organization',NULL,'2025-11-14 00:11:07'),
(1849,'leads','9aa311b0-063b-11ef-af12-e5a2924242d9','error','Organization not found: Ocutrap',NULL,'2025-11-14 00:11:07'),
(1850,'leads','cf917bf0-063b-11ef-8b5e-d990dc5b5e43','error','Organization not found: Chand brilliance',NULL,'2025-11-14 00:11:07'),
(1851,'leads','fd0b0fe0-0647-11ef-96d0-3b2b639686a3','error','Organization not found: Steven Salter organization',NULL,'2025-11-14 00:11:07'),
(1852,'leads','d3895950-0657-11ef-b9ea-b137f71f6a60','error','Organization not found: EZ Kruiser Golf Cart',NULL,'2025-11-14 00:11:07'),
(1853,'leads','a05ea390-0711-11ef-a68e-dff3f93acbc4','error','Organization not found: Dueitts Battery Supply Inc.',NULL,'2025-11-14 00:11:07'),
(1854,'leads','cce03830-0968-11ef-b3ba-e7336aadab95','error','Organization not found: Xworx Inc',NULL,'2025-11-14 00:11:07'),
(1855,'leads','6ef43950-0969-11ef-97b7-1717425e0835','error','Organization not found: Bajaj',NULL,'2025-11-14 00:11:07'),
(1856,'leads','b2b9f1c0-0e14-11ef-9b70-d91355cad6f6','error','Organization not found: Delmer & Associates, LCC',NULL,'2025-11-14 00:11:07'),
(1857,'leads','584c60d0-0efd-11ef-b6b2-9354883a4197','error','Organization not found: Anthony Thomas organization',NULL,'2025-11-14 00:11:07'),
(1858,'leads','04473340-12cf-11ef-a699-4d714b2a54f2','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1859,'leads','a0e73f10-1347-11ef-9e11-c101c1b0a59d','error','Organization not found: Ryan Somai organization',NULL,'2025-11-14 00:11:07'),
(1860,'leads','031614f0-138d-11ef-b59a-f5796a9a3e88','error','Organization not found: nano power a.s.',NULL,'2025-11-14 00:11:07'),
(1861,'leads','9593f5d0-13f2-11ef-9e11-c101c1b0a59d','error','Organization not found: Kiang Loong Ng organization',NULL,'2025-11-14 00:11:07'),
(1862,'leads','8c9da370-145d-11ef-8d00-b3d319f4b9b9','error','Organization not found: PICODE',NULL,'2025-11-14 00:11:07'),
(1863,'leads','c230d930-145d-11ef-9df3-191803d8bc06','error','Organization not found: Accesshardware Inc.',NULL,'2025-11-14 00:11:07'),
(1864,'leads','ee1f4190-1790-11ef-87d1-bd61cc9f3289','error','Organization not found: Discovery Ford',NULL,'2025-11-14 00:11:07'),
(1865,'leads','b1e004c0-1791-11ef-a1e7-514068a29cd4','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1866,'leads','1e8aa270-1796-11ef-a1e7-514068a29cd4','error','Organization not found: Encore Boat Works',NULL,'2025-11-14 00:11:07'),
(1867,'leads','a34cf4a0-184e-11ef-a498-5bb397ef0249','error','Organization not found: Good Luck LLC',NULL,'2025-11-14 00:11:07'),
(1868,'leads','a6bdea50-1910-11ef-9688-b1d73b6a5dcf','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1869,'leads','a675c0f0-1914-11ef-9a6b-71055cc5f8fb','error','Organization not found: Segway Hollywood',NULL,'2025-11-14 00:11:07'),
(1870,'leads','12856d30-19d4-11ef-aa27-9bcd37a14e94','error','Organization not found: WSSA',NULL,'2025-11-14 00:11:07'),
(1871,'leads','d4e60510-1cfe-11ef-b8cf-1fbf5e5198f8','error','Organization not found: Martin Rebuilds',NULL,'2025-11-14 00:11:07'),
(1872,'leads','28ba2fe0-1d04-11ef-b8cf-1fbf5e5198f8','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1873,'leads','9e554fe0-1dd7-11ef-a841-8f0ae69dba57','error','Organization not found: Bill Daniels organization',NULL,'2025-11-14 00:11:07'),
(1874,'leads','5bfcab30-1eee-11ef-b2cf-5fa52f512284','error','Organization not found: Martin Meek organization',NULL,'2025-11-14 00:11:07'),
(1875,'leads','3d9fa890-1f6b-11ef-9a19-59a18cd49924','error','Organization not found: Track Master Mobility',NULL,'2025-11-14 00:11:07'),
(1876,'leads','e3b1bbe0-1f77-11ef-9a19-59a18cd49924','error','Organization not found: Telecom Battery',NULL,'2025-11-14 00:11:07'),
(1877,'leads','1ee93030-1f78-11ef-aa4e-4f4e2660fd7b','error','Organization not found: Vishwaracers',NULL,'2025-11-14 00:11:07'),
(1878,'leads','59188350-1f78-11ef-9a19-59a18cd49924','error','Organization not found: Network Experts',NULL,'2025-11-14 00:11:07'),
(1879,'leads','35f02fe0-1f9b-11ef-aa4e-4f4e2660fd7b','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1880,'leads','cf722ea0-228b-11ef-b2cf-5fa52f512284','error','Organization not found: General RV Center',NULL,'2025-11-14 00:11:07'),
(1881,'leads','30dcfe90-228c-11ef-9923-0f43df108a4b','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1882,'leads','2446fd60-228d-11ef-9923-0f43df108a4b','error','Organization not found: Zakian Rugs',NULL,'2025-11-14 00:11:07'),
(1883,'leads','6b48a1f0-228d-11ef-bf85-dd911e2a6349','error','Organization not found: EMB Motorsport',NULL,'2025-11-14 00:11:07'),
(1884,'leads','b28d77c0-2292-11ef-9cb4-994a5793db83','error','Organization not found: M&P Security',NULL,'2025-11-14 00:11:07'),
(1885,'leads','8da4c850-2305-11ef-b2cf-5fa52f512284','error','Organization not found: Anatolii organization',NULL,'2025-11-14 00:11:07'),
(1886,'leads','5fc4d320-2446-11ef-946f-13b75546807f','error','Organization not found: Atomic Cool Kartz',NULL,'2025-11-14 00:11:07'),
(1887,'leads','11e401f0-24e9-11ef-8ccb-ff8532d8e9f8','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1888,'leads','93c41370-24eb-11ef-b74f-6f6461a13fe8','error','Organization not found: Reid-Ashman Mfg.',NULL,'2025-11-14 00:11:07'),
(1889,'leads','29e009a0-2504-11ef-8534-4d08477509db','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1890,'leads','205f16d0-2759-11ef-8fa1-632a4d9ccf1c','error','Organization not found: Advance Boat',NULL,'2025-11-14 00:11:07'),
(1891,'leads','db0e11c0-2803-11ef-9bef-cd12d9a9d969','error','Organization not found: Mystery Flight',NULL,'2025-11-14 00:11:07'),
(1892,'leads','3b5cc670-28cc-11ef-9c05-13f52b414c93','error','Organization not found: Roush',NULL,'2025-11-14 00:11:07'),
(1893,'leads','ac30b5f0-28e5-11ef-a0ab-43b9a7fa6a42','error','Organization not found: Electric Yacht',NULL,'2025-11-14 00:11:07'),
(1894,'leads','e9b21fa0-28f8-11ef-a841-8f0ae69dba57','error','Organization not found: Price Electronics',NULL,'2025-11-14 00:11:07'),
(1895,'leads','beda6bf0-2cab-11ef-b680-91ad9d1991a4','error','Organization not found: Thomas Wadsworth organization',NULL,'2025-11-14 00:11:07'),
(1896,'leads','045acf20-2e56-11ef-b69b-f170eca3ee31','error','Organization not found: Leidos',NULL,'2025-11-14 00:11:07'),
(1897,'leads','949b1400-3248-11ef-99a4-d3346253e2c6','error','Organization not found: Navia Energy Inc.',NULL,'2025-11-14 00:11:07'),
(1898,'leads','d93782f0-3249-11ef-9e56-a5bdc7b7d8d8','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1899,'leads','466f1b30-324a-11ef-91a5-ddf712cba00f','error','Organization not found: Soaring Concepts Aerospace',NULL,'2025-11-14 00:11:07'),
(1900,'leads','31185930-324b-11ef-8f87-2febb96654ea','error','Organization not found: JP Equipment & Service Co.',NULL,'2025-11-14 00:11:07'),
(1901,'leads','7d3d4c80-324b-11ef-99a4-d3346253e2c6','error','Organization not found: Chris Grondman organization',NULL,'2025-11-14 00:11:07'),
(1902,'leads','9d198f20-325d-11ef-9866-edd510b5f338','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1903,'leads','cc4d50d0-34c7-11ef-ae44-b93f5d4649fe','error','Organization not found: Jay Rasi organization',NULL,'2025-11-14 00:11:07'),
(1904,'leads','c99db420-388b-11ef-9e56-a5bdc7b7d8d8','error','Organization not found: Concept DD Inc',NULL,'2025-11-14 00:11:07'),
(1905,'leads','5c223fa0-388c-11ef-849f-8b74dc1802d9','error','Organization not found: LFP Consumer Power Tool',NULL,'2025-11-14 00:11:07'),
(1906,'leads','e97aad80-38b2-11ef-849f-8b74dc1802d9','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1907,'leads','b68ceb40-3e02-11ef-a02e-79dbbbddf863','error','Organization not found: Lotuccusa Inc',NULL,'2025-11-14 00:11:07'),
(1908,'leads','5da3a090-3fc0-11ef-8975-2d5057077cbf','error','Organization not found: Scott Blew organization',NULL,'2025-11-14 00:11:07'),
(1909,'leads','440ef8e0-3fe4-11ef-88e7-cf0db74c6016','error','Organization not found: Scott Blew organization',NULL,'2025-11-14 00:11:07'),
(1910,'leads','c4a4d270-439c-11ef-a493-852435243172','error','Organization not found: Personal',NULL,'2025-11-14 00:11:07'),
(1911,'leads','b6755210-45f9-11ef-901d-25624c1d8a42','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1912,'leads','e0a325f0-4840-11ef-8f97-c1c5192a041d','error','Organization not found: Operation Send it',NULL,'2025-11-14 00:11:07'),
(1913,'leads','80ab0df0-4842-11ef-8f97-c1c5192a041d','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1914,'leads','190c5560-49bd-11ef-9388-b9dff8bd2fab','error','Organization not found: Majesty AI',NULL,'2025-11-14 00:11:07'),
(1915,'leads','8967dc60-49dd-11ef-81ac-5b2abd8371f8','error','Organization not found: Blue Water Battery',NULL,'2025-11-14 00:11:07'),
(1916,'leads','d168b680-4aa3-11ef-b910-03284540ed82','error','Organization not found: Repsol International',NULL,'2025-11-14 00:11:07'),
(1917,'leads','c936f890-4b4e-11ef-8563-cb0a2734e89d','error','Organization not found: HumaNoid',NULL,'2025-11-14 00:11:07'),
(1918,'leads','d5f47120-4e7d-11ef-99a6-4bf71821d30b','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1919,'leads','96c68430-5331-11ef-bf32-81d389b181df','error','Organization not found: Battery Bills LLC',NULL,'2025-11-14 00:11:07'),
(1920,'leads','abc756a0-5333-11ef-9d17-c51e9e5fa5ca','error','Organization not found: ABA Marine Consulting INC.',NULL,'2025-11-14 00:11:07'),
(1921,'leads','a75f1cc0-54ef-11ef-8794-03a7a8ec6de8','error','Organization not found: Marine Customer',NULL,'2025-11-14 00:11:07'),
(1922,'leads','fbacba20-54f0-11ef-9113-8d86bb63387c','error','Organization not found: Integrated Marine Solutions',NULL,'2025-11-14 00:11:07'),
(1923,'leads','ab109be0-55c7-11ef-adce-b5c0deaed1fd','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1924,'leads','ce114960-58e1-11ef-9941-17650adb0418','error','Organization not found: VJF',NULL,'2025-11-14 00:11:07'),
(1925,'leads','2f3f1e00-59ab-11ef-9e31-bb24ab08945d','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1926,'leads','47f94750-5f31-11ef-8ac2-cd51ff4693d5','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1927,'leads','1d1ee5c0-618a-11ef-a702-659adcbee65a','error','Organization not found: Profound Home Improvement',NULL,'2025-11-14 00:11:07'),
(1928,'leads','1b21a730-64a0-11ef-b4cc-13d3d3de7ea0','error','Organization not found: Advanced Green Technologies',NULL,'2025-11-14 00:11:07'),
(1929,'leads','a5a78b40-6612-11ef-acf7-cfad48ddfff8','error','Organization not found: Hayatcomm.net',NULL,'2025-11-14 00:11:07'),
(1930,'leads','46396240-6eb0-11ef-b2c1-ed044c57f72b','error','Organization not found: Swarmbotics AI',NULL,'2025-11-14 00:11:07'),
(1931,'leads','6b7aba80-7447-11ef-9e80-a9fcb8936b1d','error','Organization not found: EnergyX',NULL,'2025-11-14 00:11:07'),
(1932,'leads','9a16caf0-cde3-11ef-8263-7fe51e11e07f','error','Organization not found: METABOTS',NULL,'2025-11-14 00:11:07'),
(1933,'notes','1','error','Deal not found: 2',NULL,'2025-11-14 00:11:11'),
(1934,'notes','2','error','Deal not found: 7',NULL,'2025-11-14 00:11:11'),
(1935,'notes','3','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1936,'notes','4','error','Deal not found: 8',NULL,'2025-11-14 00:11:11'),
(1937,'notes','5','error','Deal not found: 9',NULL,'2025-11-14 00:11:11'),
(1938,'notes','6','error','Deal not found: 2',NULL,'2025-11-14 00:11:11'),
(1939,'notes','7','error','Deal not found: 10',NULL,'2025-11-14 00:11:11'),
(1940,'notes','8','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1941,'notes','9','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1942,'notes','10','error','Deal not found: 14',NULL,'2025-11-14 00:11:11'),
(1943,'notes','11','error','Deal not found: 15',NULL,'2025-11-14 00:11:11'),
(1944,'notes','12','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1945,'notes','13','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1946,'notes','14','error','Deal not found: 2',NULL,'2025-11-14 00:11:11'),
(1947,'notes','15','error','Deal not found: 19',NULL,'2025-11-14 00:11:11'),
(1948,'notes','16','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1949,'notes','17','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1950,'notes','18','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1951,'notes','19','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1952,'notes','20','error','Deal not found: 4',NULL,'2025-11-14 00:11:11'),
(1953,'notes','21','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1954,'notes','22','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1955,'notes','23','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1956,'notes','24','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1957,'notes','25','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1958,'notes','26','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1959,'notes','27','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1960,'notes','28','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1961,'notes','29','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1962,'notes','30','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1963,'notes','31','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1964,'notes','32','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1965,'notes','33','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1966,'notes','34','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1967,'notes','35','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1968,'notes','36','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1969,'notes','37','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1970,'notes','38','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1971,'notes','39','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1972,'notes','40','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1973,'notes','41','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1974,'notes','42','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1975,'notes','43','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1976,'notes','44','error','Deal not found: 58',NULL,'2025-11-14 00:11:11'),
(1977,'notes','45','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1978,'notes','46','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1979,'notes','47','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1980,'notes','48','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1981,'notes','49','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1982,'notes','50','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1983,'notes','51','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1984,'notes','52','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1985,'notes','53','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1986,'notes','54','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1987,'notes','55','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1988,'notes','56','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1989,'notes','57','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1990,'notes','58','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1991,'notes','59','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1992,'notes','60','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1993,'notes','61','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1994,'notes','62','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1995,'notes','63','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1996,'notes','64','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1997,'notes','65','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1998,'notes','66','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1999,'notes','67','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2000,'notes','68','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2001,'notes','69','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2002,'notes','70','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2003,'notes','71','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2004,'notes','72','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2005,'notes','73','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2006,'notes','74','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2007,'notes','75','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2008,'notes','76','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2009,'notes','77','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2010,'notes','78','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2011,'notes','79','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2012,'notes','80','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2013,'notes','81','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2014,'notes','82','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2015,'notes','83','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2016,'notes','84','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2017,'notes','85','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2018,'notes','86','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2019,'notes','87','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2020,'notes','88','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2021,'notes','89','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2022,'notes','90','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2023,'notes','91','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2024,'notes','92','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2025,'notes','93','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2026,'notes','94','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2027,'notes','95','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2028,'notes','96','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2029,'notes','97','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2030,'notes','98','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2031,'notes','99','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2032,'notes','100','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2033,'notes','101','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2034,'notes','102','error','Deal not found: 61',NULL,'2025-11-14 00:11:11'),
(2035,'notes','103','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2036,'notes','104','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2037,'notes','105','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2038,'notes','106','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2039,'notes','107','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2040,'notes','108','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2041,'notes','109','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2042,'notes','110','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2043,'notes','111','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2044,'notes','112','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2045,'notes','113','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2046,'notes','114','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2047,'notes','115','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2048,'notes','116','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2049,'notes','117','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2050,'notes','118','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2051,'notes','119','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2052,'notes','120','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2053,'notes','121','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2054,'notes','122','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2055,'notes','123','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2056,'notes','124','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2057,'notes','125','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2058,'notes','126','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2059,'notes','127','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2060,'notes','128','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2061,'notes','129','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2062,'notes','130','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2063,'notes','131','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2064,'notes','132','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2065,'notes','133','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2066,'notes','134','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2067,'notes','135','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2068,'notes','136','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2069,'notes','137','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2070,'notes','138','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2071,'notes','139','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2072,'notes','140','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2073,'notes','141','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2074,'notes','142','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2075,'notes','143','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2076,'notes','144','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2077,'notes','145','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2078,'notes','146','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2079,'notes','148','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2080,'notes','149','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2081,'notes','150','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2082,'notes','151','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2083,'notes','152','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2084,'notes','153','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2085,'notes','154','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2086,'notes','155','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2087,'notes','156','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2088,'notes','157','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2089,'notes','158','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2090,'notes','159','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2091,'notes','160','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2092,'notes','161','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2093,'notes','162','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2094,'notes','163','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2095,'notes','164','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2096,'notes','165','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2097,'notes','166','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2098,'notes','167','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2099,'notes','168','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2100,'notes','169','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2101,'notes','170','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2102,'notes','171','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2103,'notes','172','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2104,'notes','173','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2105,'notes','174','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2106,'notes','175','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2107,'notes','176','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2108,'notes','177','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2109,'notes','178','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2110,'notes','179','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2111,'notes','180','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2112,'notes','181','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2113,'notes','182','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2114,'notes','183','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2115,'notes','184','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2116,'notes','185','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2117,'notes','186','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2118,'notes','187','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2119,'notes','188','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2120,'notes','189','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2121,'notes','190','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2122,'notes','191','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2123,'notes','192','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2124,'notes','193','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2125,'notes','194','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2126,'notes','195','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2127,'notes','196','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2128,'notes','197','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2129,'notes','198','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2130,'notes','199','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2131,'notes','200','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2132,'notes','201','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2133,'notes','202','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2134,'notes','203','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2135,'notes','204','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2136,'notes','205','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2137,'notes','206','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2138,'notes','207','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2139,'notes','208','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2140,'notes','209','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2141,'notes','210','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2142,'notes','211','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2143,'notes','212','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2144,'notes','213','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2145,'notes','214','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2146,'notes','215','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2147,'notes','216','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2148,'notes','217','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2149,'notes','218','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2150,'notes','219','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2151,'notes','220','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2152,'notes','221','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2153,'notes','222','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2154,'notes','223','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2155,'notes','224','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2156,'notes','225','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2157,'notes','226','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2158,'notes','227','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2159,'notes','228','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2160,'notes','229','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2161,'notes','230','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2162,'notes','231','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2163,'notes','232','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2164,'notes','233','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2165,'notes','234','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2166,'notes','235','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2167,'notes','236','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2168,'notes','237','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2169,'notes','238','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2170,'notes','239','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2171,'notes','240','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2172,'notes','241','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2173,'notes','242','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2174,'notes','243','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2175,'notes','244','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2176,'notes','245','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2177,'notes','246','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2178,'notes','247','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2179,'notes','248','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2180,'notes','249','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2181,'notes','250','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2182,'notes','251','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2183,'notes','252','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2184,'notes','253','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2185,'notes','254','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2186,'notes','255','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2187,'notes','256','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2188,'notes','257','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2189,'notes','258','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2190,'notes','259','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2191,'notes','260','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2192,'notes','261','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2193,'notes','262','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2194,'notes','263','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2195,'notes','264','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2196,'notes','265','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2197,'notes','266','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2198,'notes','267','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2199,'notes','268','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2200,'notes','269','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2201,'notes','270','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2202,'notes','271','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2203,'notes','272','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2204,'notes','273','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2205,'notes','274','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2206,'notes','275','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2207,'notes','276','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2208,'notes','277','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2209,'notes','278','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2210,'notes','279','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2211,'notes','280','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2212,'notes','281','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2213,'notes','282','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2214,'notes','283','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2215,'notes','284','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2216,'notes','285','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2217,'notes','286','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2218,'notes','287','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2219,'notes','288','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2220,'notes','289','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2221,'notes','290','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2222,'notes','291','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2223,'notes','292','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2224,'notes','293','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2225,'notes','294','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2226,'notes','295','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2227,'notes','296','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2228,'notes','297','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2229,'notes','298','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2230,'notes','299','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2231,'notes','300','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2232,'notes','301','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2233,'notes','302','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2234,'notes','303','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2235,'notes','304','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2236,'notes','305','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2237,'notes','306','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2238,'notes','307','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2239,'notes','308','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2240,'notes','309','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2241,'notes','310','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2242,'notes','311','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2243,'notes','312','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2244,'notes','313','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2245,'notes','314','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2246,'notes','315','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2247,'notes','316','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2248,'notes','317','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2249,'notes','318','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2250,'notes','319','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2251,'notes','320','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2252,'notes','321','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2253,'notes','322','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2254,'notes','323','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2255,'notes','324','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2256,'notes','325','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2257,'notes','326','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2258,'notes','327','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2259,'notes','328','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2260,'notes','329','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2261,'notes','330','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2262,'notes','331','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2263,'notes','332','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2264,'notes','333','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2265,'notes','334','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2266,'notes','335','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2267,'notes','336','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2268,'notes','337','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2269,'notes','338','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2270,'notes','339','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2271,'notes','340','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2272,'notes','341','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2273,'notes','342','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2274,'notes','343','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2275,'notes','344','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2276,'notes','345','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2277,'notes','346','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2278,'notes','347','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2279,'notes','348','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2280,'notes','349','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2281,'notes','350','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2282,'notes','351','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2283,'notes','352','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2284,'notes','353','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2285,'notes','354','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2286,'notes','355','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2287,'notes','356','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2288,'notes','357','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2289,'notes','358','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2290,'notes','359','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2291,'notes','360','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2292,'notes','361','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2293,'notes','362','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2294,'notes','363','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2295,'notes','364','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2296,'notes','365','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2297,'notes','366','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2298,'notes','367','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2299,'notes','368','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2300,'notes','369','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2301,'notes','370','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2302,'notes','371','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2303,'notes','372','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2304,'notes','373','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2305,'notes','374','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2306,'notes','375','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2307,'notes','376','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2308,'notes','377','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2309,'notes','378','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2310,'notes','379','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2311,'notes','380','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2312,'notes','381','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2313,'notes','382','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2314,'notes','383','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2315,'notes','384','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2316,'notes','385','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2317,'notes','386','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2318,'notes','387','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2319,'notes','388','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2320,'notes','389','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2321,'notes','390','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2322,'notes','391','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2323,'notes','392','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2324,'notes','393','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2325,'notes','394','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2326,'notes','395','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2327,'notes','396','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2328,'notes','397','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2329,'notes','398','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2330,'notes','399','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2331,'notes','400','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2332,'notes','402','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2333,'notes','403','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2334,'notes','404','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2335,'notes','405','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2336,'notes','406','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2337,'notes','407','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2338,'notes','408','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2339,'notes','409','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2340,'notes','410','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2341,'notes','411','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2342,'notes','412','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2343,'notes','413','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2344,'notes','414','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2345,'notes','415','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2346,'notes','416','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2347,'notes','417','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2348,'notes','418','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2349,'notes','419','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2350,'notes','420','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2351,'notes','421','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2352,'notes','422','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2353,'notes','423','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2354,'notes','424','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2355,'notes','425','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2356,'notes','426','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2357,'notes','427','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2358,'notes','428','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2359,'notes','429','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2360,'notes','430','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2361,'notes','431','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2362,'notes','432','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2363,'notes','433','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2364,'notes','434','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2365,'notes','435','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2366,'notes','436','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2367,'notes','437','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2368,'notes','438','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2369,'notes','439','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2370,'notes','440','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2371,'notes','441','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2372,'notes','442','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2373,'notes','443','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2374,'notes','444','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2375,'notes','445','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2376,'notes','446','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2377,'notes','447','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2378,'notes','448','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2379,'notes','449','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2380,'notes','450','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2381,'notes','451','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2382,'notes','452','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2383,'notes','453','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2384,'notes','454','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2385,'notes','455','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2386,'notes','456','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2387,'notes','457','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2388,'notes','458','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2389,'notes','459','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2390,'notes','460','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2391,'notes','461','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2392,'notes','462','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2393,'notes','463','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2394,'notes','464','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2395,'notes','465','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2396,'notes','466','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2397,'notes','467','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2398,'notes','468','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2399,'notes','469','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2400,'notes','470','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2401,'notes','471','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2402,'notes','472','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2403,'notes','473','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2404,'notes','474','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2405,'notes','475','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2406,'notes','476','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2407,'notes','477','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2408,'notes','478','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2409,'notes','479','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2410,'notes','480','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2411,'notes','481','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2412,'notes','482','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2413,'notes','483','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2414,'notes','484','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2415,'notes','485','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2416,'notes','486','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2417,'notes','487','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2418,'notes','488','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2419,'notes','489','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2420,'notes','490','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2421,'notes','491','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2422,'notes','492','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2423,'notes','493','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2424,'notes','494','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2425,'notes','495','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2426,'notes','496','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2427,'notes','497','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2428,'notes','498','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2429,'notes','499','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2430,'notes','500','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2431,'notes','501','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2432,'notes','502','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2433,'notes','503','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2434,'notes','504','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2435,'notes','505','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2436,'notes','507','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2437,'notes','508','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2438,'notes','509','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2439,'notes','510','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2440,'notes','511','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2441,'notes','512','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2442,'notes','513','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2443,'notes','514','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2444,'notes','515','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2445,'notes','516','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2446,'notes','517','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2447,'notes','518','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2448,'notes','519','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2449,'notes','520','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2450,'notes','521','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2451,'notes','522','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2452,'notes','523','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2453,'notes','524','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2454,'notes','525','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2455,'notes','526','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2456,'notes','527','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2457,'notes','528','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2458,'notes','529','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2459,'notes','530','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2460,'notes','531','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2461,'notes','532','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2462,'notes','533','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2463,'notes','534','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2464,'notes','535','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2465,'notes','536','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2466,'notes','537','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2467,'notes','538','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2468,'notes','539','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2469,'notes','540','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2470,'notes','542','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2471,'notes','543','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2472,'notes','544','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2473,'notes','545','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2474,'notes','546','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2475,'notes','547','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2476,'notes','548','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2477,'notes','549','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2478,'notes','550','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2479,'notes','551','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2480,'notes','552','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2481,'notes','553','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2482,'notes','554','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2483,'notes','555','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2484,'notes','556','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2485,'notes','557','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2486,'notes','558','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2487,'notes','559','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2488,'notes','560','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2489,'notes','561','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2490,'notes','562','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2491,'notes','563','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2492,'notes','564','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2493,'notes','565','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2494,'notes','566','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2495,'notes','567','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2496,'notes','568','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2497,'notes','570','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2498,'notes','571','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2499,'notes','572','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2500,'notes','573','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2501,'notes','574','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2502,'notes','575','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2503,'notes','576','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2504,'notes','577','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2505,'notes','578','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2506,'notes','579','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2507,'notes','580','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2508,'notes','581','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2509,'notes','582','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2510,'notes','583','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2511,'notes','584','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2512,'notes','585','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2513,'notes','586','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2514,'notes','587','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2515,'notes','588','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2516,'notes','589','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2517,'notes','590','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2518,'notes','591','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2519,'notes','592','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2520,'notes','593','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2521,'notes','594','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2522,'notes','595','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2523,'notes','596','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2524,'notes','597','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2525,'notes','599','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2526,'notes','600','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2527,'notes','601','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2528,'notes','602','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2529,'notes','603','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2530,'notes','604','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2531,'notes','605','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2532,'notes','606','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2533,'notes','607','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2534,'notes','608','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2535,'notes','609','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2536,'notes','610','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2537,'notes','611','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2538,'notes','612','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2539,'notes','614','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2540,'notes','615','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2541,'notes','616','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2542,'notes','617','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2543,'notes','618','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2544,'notes','619','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2545,'notes','620','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2546,'notes','621','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2547,'notes','622','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2548,'notes','623','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2549,'notes','624','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2550,'notes','625','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2551,'notes','626','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2552,'notes','627','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2553,'notes','628','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2554,'notes','629','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2555,'notes','630','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2556,'notes','631','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2557,'notes','632','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2558,'notes','633','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2559,'notes','634','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2560,'notes','635','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2561,'notes','636','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2562,'notes','637','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2563,'notes','638','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2564,'notes','639','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2565,'notes','641','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2566,'notes','643','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2567,'notes','644','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2568,'notes','645','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2569,'notes','646','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2570,'notes','647','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2571,'notes','648','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2572,'notes','650','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2573,'notes','651','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2574,'notes','652','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2575,'notes','653','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2576,'notes','654','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2577,'notes','656','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2578,'notes','657','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2579,'notes','658','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2580,'notes','659','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2581,'notes','660','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2582,'notes','661','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2583,'notes','662','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2584,'notes','663','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2585,'notes','664','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2586,'notes','665','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2587,'notes','666','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2588,'notes','667','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2589,'notes','668','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2590,'notes','669','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2591,'notes','670','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2592,'notes','673','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2593,'notes','674','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2594,'notes','675','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2595,'notes','676','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2596,'notes','677','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2597,'notes','678','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2598,'notes','679','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2599,'notes','680','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2600,'notes','681','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2601,'notes','682','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2602,'notes','684','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2603,'notes','685','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2604,'notes','686','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2605,'notes','688','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2606,'notes','689','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2607,'notes','690','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2608,'notes','691','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2609,'notes','692','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2610,'notes','693','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2611,'notes','694','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2612,'notes','695','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2613,'notes','696','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2614,'notes','698','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2615,'notes','699','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2616,'notes','700','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2617,'notes','701','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2618,'notes','702','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2619,'notes','703','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2620,'notes','704','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2621,'notes','705','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2622,'notes','706','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2623,'notes','707','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2624,'notes','708','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2625,'notes','709','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2626,'notes','710','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2627,'notes','711','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2628,'notes','712','error','Deal not found: 147',NULL,'2025-11-14 00:11:11'),
(2629,'notes','713','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2630,'notes','714','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2631,'notes','715','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2632,'notes','716','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2633,'notes','717','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2634,'notes','718','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2635,'notes','719','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2636,'notes','720','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2637,'notes','721','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2638,'notes','722','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2639,'notes','723','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2640,'notes','724','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2641,'notes','725','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2642,'notes','726','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2643,'notes','727','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2644,'notes','728','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2645,'notes','730','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2646,'notes','731','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2647,'notes','732','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2648,'notes','733','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2649,'notes','734','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2650,'notes','735','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2651,'notes','736','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2652,'notes','738','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2653,'notes','739','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2654,'notes','740','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2655,'notes','741','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2656,'notes','742','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2657,'notes','743','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2658,'notes','744','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2659,'notes','745','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2660,'notes','746','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2661,'notes','747','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2662,'notes','748','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2663,'notes','749','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2664,'notes','750','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2665,'notes','751','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2666,'notes','752','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2667,'notes','753','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2668,'notes','754','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2669,'notes','755','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2670,'notes','756','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2671,'notes','757','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2672,'notes','758','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2673,'notes','759','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2674,'notes','760','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2675,'notes','761','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2676,'notes','762','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2677,'notes','763','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2678,'notes','764','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2679,'notes','765','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2680,'notes','766','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2681,'notes','767','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2682,'notes','768','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2683,'notes','769','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2684,'notes','770','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2685,'notes','771','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2686,'notes','772','error','Deal not found: 717',NULL,'2025-11-14 00:11:11'),
(2687,'notes','773','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2688,'notes','774','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2689,'notes','775','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2690,'notes','776','error','Deal not found: 717',NULL,'2025-11-14 00:11:11'),
(2691,'notes','777','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2692,'notes','778','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2693,'notes','779','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2694,'notes','780','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2695,'notes','781','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2696,'notes','782','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2697,'notes','783','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2698,'notes','784','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2699,'notes','785','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2700,'notes','786','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2701,'notes','787','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2702,'notes','788','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2703,'notes','789','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2704,'notes','790','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2705,'notes','791','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2706,'notes','792','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2707,'notes','793','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2708,'notes','794','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2709,'notes','795','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2710,'notes','796','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2711,'notes','797','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2712,'notes','798','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2713,'notes','799','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2714,'notes','800','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2715,'notes','801','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2716,'notes','802','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2717,'notes','803','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2718,'notes','804','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2719,'notes','805','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2720,'notes','806','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2721,'notes','807','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2722,'notes','808','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2723,'notes','809','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2724,'notes','810','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2725,'notes','811','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2726,'notes','812','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2727,'notes','813','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2728,'notes','815','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2729,'notes','816','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2730,'notes','817','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2731,'notes','818','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2732,'notes','819','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2733,'notes','820','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2734,'notes','821','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2735,'notes','822','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2736,'notes','823','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2737,'notes','824','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2738,'notes','825','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2739,'notes','826','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2740,'notes','827','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2741,'notes','829','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2742,'notes','830','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2743,'notes','831','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2744,'notes','832','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2745,'notes','833','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2746,'notes','834','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2747,'notes','835','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2748,'notes','836','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2749,'notes','839','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2750,'notes','840','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2751,'notes','841','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2752,'notes','842','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2753,'notes','843','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2754,'notes','844','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2755,'notes','845','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2756,'notes','846','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2757,'notes','847','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2758,'notes','848','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2759,'notes','849','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2760,'notes','850','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2761,'notes','852','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2762,'notes','853','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2763,'notes','854','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2764,'notes','855','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2765,'notes','856','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2766,'notes','857','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2767,'notes','858','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2768,'notes','859','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2769,'notes','860','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2770,'notes','861','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2771,'notes','862','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2772,'notes','863','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2773,'notes','864','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2774,'notes','865','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2775,'notes','866','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2776,'notes','867','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2777,'notes','868','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2778,'notes','869','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2779,'notes','870','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2780,'notes','871','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2781,'notes','872','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2782,'notes','874','error','Deal not found: 717',NULL,'2025-11-14 00:11:11'),
(2783,'notes','875','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2784,'notes','876','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2785,'notes','877','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2786,'notes','878','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2787,'notes','879','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2788,'notes','880','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2789,'notes','881','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2790,'notes','882','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2791,'notes','883','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2792,'notes','884','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2793,'notes','885','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2794,'notes','886','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2795,'notes','887','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2796,'notes','888','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2797,'notes','889','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2798,'notes','890','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2799,'notes','892','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2800,'notes','893','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2801,'notes','894','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2802,'notes','895','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2803,'notes','896','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2804,'notes','897','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2805,'notes','898','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2806,'notes','899','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2807,'notes','900','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2808,'notes','901','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2809,'notes','902','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2810,'notes','903','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2811,'notes','904','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2812,'notes','905','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2813,'notes','906','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2814,'notes','907','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2815,'notes','908','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2816,'notes','909','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2817,'notes','910','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2818,'notes','911','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2819,'notes','912','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2820,'notes','913','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2821,'notes','914','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2822,'notes','915','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2823,'notes','916','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2824,'notes','917','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2825,'notes','918','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2826,'notes','919','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2827,'notes','920','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2828,'notes','921','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2829,'notes','923','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2830,'notes','924','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2831,'notes','925','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2832,'notes','926','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2833,'notes','927','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2834,'notes','928','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2835,'notes','929','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2836,'notes','930','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2837,'notes','931','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2838,'notes','932','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2839,'notes','933','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2840,'notes','934','error','Deal not found: 517',NULL,'2025-11-14 00:11:11'),
(2841,'notes','935','error','Deal not found: 508',NULL,'2025-11-14 00:11:11'),
(2842,'notes','936','error','Deal not found: 508',NULL,'2025-11-14 00:11:11'),
(2843,'notes','937','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2844,'notes','938','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2845,'notes','939','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2846,'notes','940','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2847,'notes','941','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2848,'notes','942','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2849,'notes','943','error','Deal not found: 508',NULL,'2025-11-14 00:11:11'),
(2850,'notes','944','error','Deal not found: 508',NULL,'2025-11-14 00:11:11'),
(2851,'notes','945','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2852,'notes','946','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2853,'notes','947','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2854,'notes','948','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2855,'notes','949','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2856,'notes','950','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2857,'notes','951','error','Deal not found: 508',NULL,'2025-11-14 00:11:11'),
(2858,'notes','952','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2859,'notes','953','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2860,'notes','954','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2861,'notes','955','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2862,'notes','956','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2863,'notes','957','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2864,'notes','958','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2865,'notes','959','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2866,'notes','960','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2867,'notes','961','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2868,'notes','962','error','Deal not found: 196',NULL,'2025-11-14 00:11:11'),
(2869,'notes','963','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2870,'notes','964','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2871,'notes','965','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2872,'notes','966','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2873,'notes','967','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2874,'notes','968','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2875,'notes','969','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2876,'notes','970','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2877,'notes','971','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2878,'notes','972','error','Deal not found: 203',NULL,'2025-11-14 00:11:11'),
(2879,'notes','973','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2880,'notes','974','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2881,'notes','975','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2882,'notes','976','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2883,'notes','977','error','Deal not found: 212',NULL,'2025-11-14 00:11:11'),
(2884,'notes','978','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2885,'notes','979','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2886,'notes','980','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2887,'notes','981','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2888,'notes','982','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2889,'notes','983','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2890,'notes','984','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2891,'notes','985','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2892,'notes','986','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2893,'notes','988','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2894,'notes','989','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2895,'notes','990','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2896,'notes','991','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2897,'notes','992','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2898,'notes','993','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2899,'notes','994','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2900,'notes','995','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2901,'notes','996','error','Deal not found: 251',NULL,'2025-11-14 00:11:11'),
(2902,'notes','997','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2903,'notes','998','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2904,'notes','999','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2905,'notes','1000','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2906,'notes','1001','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2907,'notes','1002','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2908,'notes','1003','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2909,'notes','1004','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2910,'notes','1005','error','Deal not found: 256',NULL,'2025-11-14 00:11:11'),
(2911,'notes','1006','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2912,'notes','1007','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2913,'notes','1008','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2914,'notes','1009','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2915,'notes','1010','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2916,'notes','1011','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2917,'notes','1012','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2918,'notes','1013','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2919,'notes','1014','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2920,'notes','1015','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2921,'notes','1016','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2922,'notes','1017','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2923,'notes','1018','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2924,'notes','1019','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2925,'notes','1020','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2926,'notes','1021','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2927,'notes','1022','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2928,'notes','1023','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2929,'notes','1024','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2930,'notes','1025','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2931,'notes','1026','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2932,'notes','1027','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2933,'notes','1028','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2934,'notes','1029','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2935,'notes','1030','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2936,'notes','1031','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2937,'notes','1032','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2938,'notes','1033','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2939,'notes','1034','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2940,'notes','1035','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2941,'notes','1036','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2942,'notes','1037','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2943,'notes','1038','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2944,'notes','1039','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2945,'notes','1040','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2946,'notes','1041','error','Deal not found: 313',NULL,'2025-11-14 00:11:11'),
(2947,'notes','1042','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2948,'notes','1043','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2949,'notes','1044','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2950,'notes','1045','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2951,'notes','1046','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2952,'notes','1047','error','Deal not found: 338',NULL,'2025-11-14 00:11:11'),
(2953,'notes','1048','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2954,'notes','1049','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2955,'notes','1050','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2956,'notes','1051','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2957,'notes','1052','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2958,'notes','1053','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2959,'notes','1054','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2960,'notes','1055','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2961,'notes','1056','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2962,'notes','1057','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2963,'notes','1059','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2964,'notes','1060','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2965,'notes','1061','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2966,'notes','1062','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2967,'notes','1063','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2968,'notes','1064','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2969,'notes','1065','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2970,'notes','1066','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2971,'notes','1067','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2972,'notes','1068','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2973,'notes','1069','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2974,'notes','1070','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2975,'notes','1071','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2976,'notes','1072','error','Deal not found: 418',NULL,'2025-11-14 00:11:11'),
(2977,'notes','1073','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2978,'notes','1074','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2979,'notes','1075','error','Deal not found: 448',NULL,'2025-11-14 00:11:11'),
(2980,'notes','1076','error','Deal not found: 193',NULL,'2025-11-14 00:11:11'),
(2981,'notes','1077','error','Deal not found: 542',NULL,'2025-11-14 00:11:11'),
(2982,'notes','1078','error','Deal not found: 542',NULL,'2025-11-14 00:11:11'),
(2983,'notes','1079','error','Deal not found: 540',NULL,'2025-11-14 00:11:11'),
(2984,'notes','1080','error','Deal not found: 542',NULL,'2025-11-14 00:11:11'),
(2985,'notes','1081','error','Deal not found: 542',NULL,'2025-11-14 00:11:11'),
(2986,'notes','1082','error','Deal not found: 291',NULL,'2025-11-14 00:11:11'),
(2987,'notes','1083','error','Deal not found: 540',NULL,'2025-11-14 00:11:11'),
(2988,'notes','1084','error','Deal not found: 381',NULL,'2025-11-14 00:11:11'),
(2989,'notes','1085','error','Deal not found: 430',NULL,'2025-11-14 00:11:11'),
(2990,'notes','1086','error','Deal not found: 497',NULL,'2025-11-14 00:11:11'),
(2991,'notes','1087','error','Deal not found: 476',NULL,'2025-11-14 00:11:11'),
(2992,'notes','1088','error','Deal not found: 546',NULL,'2025-11-14 00:11:11'),
(2993,'notes','1089','error','Deal not found: 257',NULL,'2025-11-14 00:11:11'),
(2994,'notes','1090','error','Deal not found: 443',NULL,'2025-11-14 00:11:11'),
(2995,'notes','1091','error','Deal not found: 268',NULL,'2025-11-14 00:11:11'),
(2996,'notes','1092','error','Deal not found: 430',NULL,'2025-11-14 00:11:11'),
(2997,'notes','1093','error','Deal not found: 407',NULL,'2025-11-14 00:11:11'),
(2998,'notes','1094','error','Deal not found: 505',NULL,'2025-11-14 00:11:11'),
(2999,'notes','1095','error','Deal not found: 315',NULL,'2025-11-14 00:11:11'),
(3000,'notes','1096','error','Deal not found: 532',NULL,'2025-11-14 00:11:11'),
(3001,'notes','1097','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3002,'notes','1098','error','Deal not found: 234',NULL,'2025-11-14 00:11:11'),
(3003,'notes','1099','error','Deal not found: 249',NULL,'2025-11-14 00:11:11'),
(3004,'notes','1100','error','Deal not found: 431',NULL,'2025-11-14 00:11:11'),
(3005,'notes','1101','error','Deal not found: 520',NULL,'2025-11-14 00:11:11'),
(3006,'notes','1102','error','Deal not found: 543',NULL,'2025-11-14 00:11:11'),
(3007,'notes','1103','error','Deal not found: 462',NULL,'2025-11-14 00:11:11'),
(3008,'notes','1104','error','Deal not found: 200',NULL,'2025-11-14 00:11:11'),
(3009,'notes','1105','error','Deal not found: 519',NULL,'2025-11-14 00:11:11'),
(3010,'notes','1106','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3011,'notes','1107','error','Deal not found: 197',NULL,'2025-11-14 00:11:11'),
(3012,'notes','1108','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3013,'notes','1109','error','Deal not found: 509',NULL,'2025-11-14 00:11:11'),
(3014,'notes','1110','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3015,'notes','1111','error','Deal not found: 315',NULL,'2025-11-14 00:11:11'),
(3016,'notes','1112','error','Deal not found: 531',NULL,'2025-11-14 00:11:11'),
(3017,'notes','1113','error','Deal not found: 490',NULL,'2025-11-14 00:11:11'),
(3018,'notes','1114','error','Deal not found: 310',NULL,'2025-11-14 00:11:11'),
(3019,'notes','1115','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3020,'notes','1116','error','Deal not found: 481',NULL,'2025-11-14 00:11:11'),
(3021,'notes','1117','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3022,'notes','1118','error','Deal not found: 249',NULL,'2025-11-14 00:11:11'),
(3023,'notes','1119','error','Deal not found: 525',NULL,'2025-11-14 00:11:11'),
(3024,'notes','1120','error','Deal not found: 568',NULL,'2025-11-14 00:11:11'),
(3025,'notes','1121','error','Deal not found: 426',NULL,'2025-11-14 00:11:11'),
(3026,'notes','1122','error','Deal not found: 305',NULL,'2025-11-14 00:11:11'),
(3027,'notes','1123','error','Deal not found: 530',NULL,'2025-11-14 00:11:11'),
(3028,'notes','1124','error','Deal not found: 483',NULL,'2025-11-14 00:11:11'),
(3029,'notes','1125','error','Deal not found: 431',NULL,'2025-11-14 00:11:11'),
(3030,'notes','1126','error','Deal not found: 465',NULL,'2025-11-14 00:11:11'),
(3031,'notes','1127','error','Deal not found: 431',NULL,'2025-11-14 00:11:11'),
(3032,'notes','1128','error','Deal not found: 518',NULL,'2025-11-14 00:11:11'),
(3033,'notes','1129','error','Deal not found: 477',NULL,'2025-11-14 00:11:11'),
(3034,'notes','1130','error','Deal not found: 528',NULL,'2025-11-14 00:11:11'),
(3035,'notes','1131','error','Deal not found: 477',NULL,'2025-11-14 00:11:11'),
(3036,'notes','1132','error','Deal not found: 431',NULL,'2025-11-14 00:11:11'),
(3037,'notes','1133','error','Deal not found: 463',NULL,'2025-11-14 00:11:11'),
(3038,'notes','1134','error','Deal not found: 533',NULL,'2025-11-14 00:11:11'),
(3039,'notes','1135','error','Deal not found: 372',NULL,'2025-11-14 00:11:11'),
(3040,'notes','1136','error','Deal not found: 533',NULL,'2025-11-14 00:11:11'),
(3041,'notes','1137','error','Deal not found: 372',NULL,'2025-11-14 00:11:11'),
(3042,'notes','1138','error','Deal not found: 457',NULL,'2025-11-14 00:11:11'),
(3043,'notes','1139','error','Deal not found: 460',NULL,'2025-11-14 00:11:11'),
(3044,'notes','1140','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3045,'notes','1141','error','Deal not found: 193',NULL,'2025-11-14 00:11:11'),
(3046,'notes','1142','error','Deal not found: 515',NULL,'2025-11-14 00:11:11'),
(3047,'notes','1143','error','Deal not found: 193',NULL,'2025-11-14 00:11:11'),
(3048,'notes','1144','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3049,'notes','1145','error','Deal not found: 492',NULL,'2025-11-14 00:11:11'),
(3050,'notes','1146','error','Deal not found: 526',NULL,'2025-11-14 00:11:11'),
(3051,'notes','1147','error','Deal not found: 539',NULL,'2025-11-14 00:11:11'),
(3052,'notes','1148','error','Deal not found: 257',NULL,'2025-11-14 00:11:11'),
(3053,'notes','1149','error','Deal not found: 463',NULL,'2025-11-14 00:11:11'),
(3054,'notes','1150','error','Deal not found: 447',NULL,'2025-11-14 00:11:11'),
(3055,'notes','1151','error','Deal not found: 489',NULL,'2025-11-14 00:11:11'),
(3056,'notes','1152','error','Deal not found: 463',NULL,'2025-11-14 00:11:11'),
(3057,'notes','1153','error','Deal not found: 397',NULL,'2025-11-14 00:11:11'),
(3058,'notes','1154','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3059,'notes','1155','error','Deal not found: 430',NULL,'2025-11-14 00:11:11'),
(3060,'notes','1156','error','Deal not found: 462',NULL,'2025-11-14 00:11:11'),
(3061,'notes','1157','error','Deal not found: 542',NULL,'2025-11-14 00:11:11'),
(3062,'notes','1158','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3063,'notes','1159','error','Deal not found: 509',NULL,'2025-11-14 00:11:11'),
(3064,'notes','1160','error','Deal not found: 296',NULL,'2025-11-14 00:11:11'),
(3065,'notes','1161','error','Deal not found: 460',NULL,'2025-11-14 00:11:11'),
(3066,'notes','1162','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3067,'notes','1164','error','Deal not found: 472',NULL,'2025-11-14 00:11:11'),
(3068,'notes','1165','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3069,'notes','1166','error','Deal not found: 469',NULL,'2025-11-14 00:11:11'),
(3070,'notes','1167','error','Deal not found: 472',NULL,'2025-11-14 00:11:11'),
(3071,'notes','1168','error','Deal not found: 213',NULL,'2025-11-14 00:11:11'),
(3072,'notes','1169','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3073,'notes','1170','error','Deal not found: 472',NULL,'2025-11-14 00:11:11'),
(3074,'notes','1171','error','Deal not found: 427',NULL,'2025-11-14 00:11:11'),
(3075,'notes','1172','error','Deal not found: 200',NULL,'2025-11-14 00:11:11'),
(3076,'notes','1173','error','Deal not found: 604',NULL,'2025-11-14 00:11:11'),
(3077,'notes','1174','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3078,'notes','1175','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3079,'notes','1176','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3080,'notes','1177','error','Deal not found: 584',NULL,'2025-11-14 00:11:11'),
(3081,'notes','1179','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3082,'notes','1180','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3083,'notes','1181','error','Deal not found: 536',NULL,'2025-11-14 00:11:11'),
(3084,'notes','1182','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3085,'notes','1183','error','Deal not found: 385',NULL,'2025-11-14 00:11:11'),
(3086,'notes','1184','error','Deal not found: 427',NULL,'2025-11-14 00:11:11'),
(3087,'notes','1185','error','Deal not found: 427',NULL,'2025-11-14 00:11:11'),
(3088,'notes','1186','error','Deal not found: 427',NULL,'2025-11-14 00:11:11'),
(3089,'notes','1187','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3090,'notes','1188','error','Deal not found: 427',NULL,'2025-11-14 00:11:11'),
(3091,'notes','1189','error','Deal not found: 380',NULL,'2025-11-14 00:11:11'),
(3092,'notes','1190','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3093,'notes','1191','error','Deal not found: 627',NULL,'2025-11-14 00:11:11'),
(3094,'notes','1192','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3095,'notes','1193','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3096,'notes','1194','error','Deal not found: 442',NULL,'2025-11-14 00:11:11'),
(3097,'notes','1195','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3098,'notes','1196','error','Deal not found: 532',NULL,'2025-11-14 00:11:11'),
(3099,'notes','1197','error','Deal not found: 287',NULL,'2025-11-14 00:11:11'),
(3100,'notes','1198','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3101,'notes','1199','error','Deal not found: 542',NULL,'2025-11-14 00:11:11'),
(3102,'notes','1200','error','Deal not found: 497',NULL,'2025-11-14 00:11:11'),
(3103,'notes','1201','error','Deal not found: 287',NULL,'2025-11-14 00:11:11'),
(3104,'notes','1202','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3105,'notes','1203','error','Deal not found: 497',NULL,'2025-11-14 00:11:11'),
(3106,'notes','1204','error','Deal not found: 636',NULL,'2025-11-14 00:11:11'),
(3107,'notes','1205','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3108,'notes','1206','error','Deal not found: 469',NULL,'2025-11-14 00:11:11'),
(3109,'notes','1207','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3110,'notes','1208','error','Deal not found: 249',NULL,'2025-11-14 00:11:11'),
(3111,'notes','1209','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3112,'notes','1210','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3113,'notes','1211','error','Deal not found: 526',NULL,'2025-11-14 00:11:11'),
(3114,'notes','1212','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3115,'notes','1213','error','Deal not found: 498',NULL,'2025-11-14 00:11:11'),
(3116,'notes','1214','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3117,'notes','1215','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3118,'notes','1216','error','Deal not found: 601',NULL,'2025-11-14 00:11:11'),
(3119,'notes','1217','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3120,'notes','1218','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3121,'notes','1219','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3122,'notes','1220','error','Deal not found: 257',NULL,'2025-11-14 00:11:11'),
(3123,'notes','1221','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3124,'notes','1222','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3125,'notes','1223','error','Deal not found: 655',NULL,'2025-11-14 00:11:11'),
(3126,'notes','1224','error','Deal not found: 323',NULL,'2025-11-14 00:11:11'),
(3127,'notes','1225','error','Deal not found: 301',NULL,'2025-11-14 00:11:11'),
(3128,'notes','1226','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3129,'notes','1227','error','Deal not found: 487',NULL,'2025-11-14 00:11:11'),
(3130,'notes','1228','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3131,'notes','1229','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3132,'notes','1230','error','Deal not found: 315',NULL,'2025-11-14 00:11:11'),
(3133,'notes','1231','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3134,'notes','1232','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3135,'notes','1233','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3136,'notes','1234','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3137,'notes','1235','error','Deal not found: 223',NULL,'2025-11-14 00:11:11'),
(3138,'notes','1236','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3139,'notes','1237','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3140,'notes','1238','error','Deal not found: 315',NULL,'2025-11-14 00:11:11'),
(3141,'notes','1239','error','Deal not found: 479',NULL,'2025-11-14 00:11:11'),
(3142,'notes','1240','error','Deal not found: 684',NULL,'2025-11-14 00:11:11'),
(3143,'notes','1242','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3144,'notes','1243','error','Deal not found: 542',NULL,'2025-11-14 00:11:11'),
(3145,'notes','1244','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3146,'notes','1245','error','Deal not found: 147',NULL,'2025-11-14 00:11:11'),
(3147,'notes','1246','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3148,'notes','1247','error','Deal not found: 249',NULL,'2025-11-14 00:11:11'),
(3149,'notes','1248','error','Deal not found: 147',NULL,'2025-11-14 00:11:11'),
(3150,'notes','1249','error','Deal not found: 313',NULL,'2025-11-14 00:11:11'),
(3151,'notes','1250','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3152,'notes','1251','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3153,'notes','1252','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3154,'notes','1253','error','Deal not found: 287',NULL,'2025-11-14 00:11:11'),
(3155,'notes','1254','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3156,'notes','1255','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3157,'notes','1256','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3158,'notes','1257','error','Deal not found: 636',NULL,'2025-11-14 00:11:11'),
(3159,'notes','1258','error','Deal not found: 636',NULL,'2025-11-14 00:11:11'),
(3160,'notes','1259','error','Deal not found: 636',NULL,'2025-11-14 00:11:11'),
(3161,'notes','1260','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3162,'notes','1261','error','Deal not found: 150',NULL,'2025-11-14 00:11:11'),
(3163,'notes','1262','error','Deal not found: 150',NULL,'2025-11-14 00:11:11'),
(3164,'notes','1263','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3165,'notes','1264','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3166,'notes','1265','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3167,'notes','1266','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3168,'notes','1267','error','Deal not found: 540',NULL,'2025-11-14 00:11:11'),
(3169,'notes','1268','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3170,'notes','1269','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3171,'notes','1270','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3172,'notes','1271','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3173,'notes','1272','error','Deal not found: 249',NULL,'2025-11-14 00:11:11'),
(3174,'notes','1273','error','Deal not found: 385',NULL,'2025-11-14 00:11:11'),
(3175,'notes','1274','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3176,'notes','1275','error','Deal not found: 492',NULL,'2025-11-14 00:11:11'),
(3177,'notes','1276','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3178,'notes','1277','error','Deal not found: 627',NULL,'2025-11-14 00:11:11'),
(3179,'notes','1278','error','Deal not found: 385',NULL,'2025-11-14 00:11:11'),
(3180,'notes','1279','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3181,'notes','1280','error','Deal not found: 385',NULL,'2025-11-14 00:11:11'),
(3182,'notes','1281','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3183,'notes','1282','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3184,'notes','1283','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3185,'notes','1284','error','Deal not found: 700',NULL,'2025-11-14 00:11:11'),
(3186,'notes','1285','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3187,'notes','1286','error','Deal not found: 636',NULL,'2025-11-14 00:11:11'),
(3188,'notes','1287','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3189,'notes','1288','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3190,'notes','1289','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3191,'notes','1290','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3192,'notes','1291','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3193,'notes','1292','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3194,'notes','1293','error','Deal not found: 204',NULL,'2025-11-14 00:11:11'),
(3195,'notes','1294','error','Deal not found: 427',NULL,'2025-11-14 00:11:11'),
(3196,'notes','1295','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3197,'notes','1296','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3198,'notes','1297','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3199,'notes','1298','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3200,'notes','1299','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3201,'notes','1300','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3202,'notes','1301','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3203,'notes','1302','error','Deal not found: 443',NULL,'2025-11-14 00:11:11'),
(3204,'notes','1303','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3205,'notes','1304','error','Deal not found: 403',NULL,'2025-11-14 00:11:11'),
(3206,'notes','1305','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3207,'notes','1306','error','Deal not found: 542',NULL,'2025-11-14 00:11:11'),
(3208,'notes','1307','error','Deal not found: 730',NULL,'2025-11-14 00:11:11'),
(3209,'notes','1308','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3210,'notes','1309','error','Deal not found: 442',NULL,'2025-11-14 00:11:11'),
(3211,'notes','1310','error','Deal not found: 204',NULL,'2025-11-14 00:11:11'),
(3212,'notes','1311','error','Deal not found: 403',NULL,'2025-11-14 00:11:11'),
(3213,'notes','1312','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3214,'notes','1313','error','Deal not found: 442',NULL,'2025-11-14 00:11:11'),
(3215,'notes','1314','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3216,'notes','1315','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3217,'notes','1316','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3218,'notes','1317','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3219,'notes','1318','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3220,'notes','1319','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3221,'notes','1320','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3222,'notes','1321','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3223,'notes','1322','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3224,'notes','1323','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3225,'notes','1324','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3226,'notes','1325','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3227,'notes','1326','error','Deal not found: 403',NULL,'2025-11-14 00:11:11'),
(3228,'notes','1327','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3229,'notes','1328','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3230,'notes','1329','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3231,'notes','1330','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3232,'notes','1331','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3233,'notes','1332','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3234,'notes','1333','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3235,'notes','1334','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3236,'notes','1335','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3237,'notes','1336','error','Deal not found: 403',NULL,'2025-11-14 00:11:11'),
(3238,'notes','1338','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3239,'notes','1339','error','Deal not found: 627',NULL,'2025-11-14 00:11:11'),
(3240,'notes','1341','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3241,'notes','1342','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3242,'notes','1343','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3243,'notes','1344','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3244,'notes','1345','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3245,'notes','1346','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3246,'notes','1347','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3247,'notes','1348','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3248,'notes','1349','error','Deal not found: 542',NULL,'2025-11-14 00:11:11'),
(3249,'notes','1350','error','Deal not found: 508',NULL,'2025-11-14 00:11:11'),
(3250,'notes','1351','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3251,'notes','1352','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3252,'notes','1353','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3253,'notes','1354','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3254,'notes','1355','error','Deal not found: 733',NULL,'2025-11-14 00:11:11'),
(3255,'notes','1356','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3256,'notes','1357','error','Deal not found: 708',NULL,'2025-11-14 00:11:11'),
(3257,'notes','1358','error','Deal not found: 730',NULL,'2025-11-14 00:11:11'),
(3258,'notes','1359','error','Deal not found: 730',NULL,'2025-11-14 00:11:11'),
(3259,'notes','1361','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3260,'notes','1362','error','Deal not found: 684',NULL,'2025-11-14 00:11:11'),
(3261,'notes','1363','error','Deal not found: 443',NULL,'2025-11-14 00:11:11'),
(3262,'notes','1364','error','Deal not found: 147',NULL,'2025-11-14 00:11:11'),
(3263,'notes','1365','error','Deal not found: 315',NULL,'2025-11-14 00:11:11'),
(3264,'notes','1366','error','Deal not found: 727',NULL,'2025-11-14 00:11:11'),
(3265,'notes','1367','error','Deal not found: 256',NULL,'2025-11-14 00:11:11'),
(3266,'notes','1368','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3267,'notes','1369','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3268,'notes','1370','error','Deal not found: 251',NULL,'2025-11-14 00:11:11'),
(3269,'notes','1371','error','Deal not found: 847',NULL,'2025-11-14 00:11:11'),
(3270,'notes','1372','error','Deal not found: 362',NULL,'2025-11-14 00:11:11'),
(3271,'notes','1373','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3272,'notes','1374','error','Deal not found: 192',NULL,'2025-11-14 00:11:11'),
(3273,'notes','1375','error','Deal not found: 212',NULL,'2025-11-14 00:11:11'),
(3274,'notes','1376','error','Deal not found: 61',NULL,'2025-11-14 00:11:11'),
(3275,'notes','1377','error','Deal not found: 61',NULL,'2025-11-14 00:11:11'),
(3276,'notes','1378','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3277,'notes','1379','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3278,'notes','1380','error','Deal not found: 943',NULL,'2025-11-14 00:11:11'),
(3279,'notes','1381','error','Deal not found: 517',NULL,'2025-11-14 00:11:11'),
(3280,'notes','1382','error','Deal not found: 986',NULL,'2025-11-14 00:11:11'),
(3281,'notes','1383','error','Deal not found: 986',NULL,'2025-11-14 00:11:11'),
(3282,'notes','1384','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3283,'notes','1385','error','Deal not found: 1013',NULL,'2025-11-14 00:11:11'),
(3284,'notes','1386','error','Deal not found: 990',NULL,'2025-11-14 00:11:11'),
(3285,'notes','1387','error','Deal not found: 990',NULL,'2025-11-14 00:11:11'),
(3286,'notes','1388','error','Deal not found: 998',NULL,'2025-11-14 00:11:11'),
(3287,'notes','1389','error','Deal not found: 994',NULL,'2025-11-14 00:11:11'),
(3288,'notes','1390','error','Deal not found: 1006',NULL,'2025-11-14 00:11:11'),
(3289,'notes','1391','error','Deal not found: 1009',NULL,'2025-11-14 00:11:11'),
(3290,'notes','1392','error','Deal not found: 867',NULL,'2025-11-14 00:11:11'),
(3291,'notes','1393','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3292,'notes','1394','error','Deal not found: 994',NULL,'2025-11-14 00:11:11'),
(3293,'notes','1395','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3294,'notes','1396','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3295,'notes','1397','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3296,'notes','1398','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3297,'notes','1399','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3298,'notes','1400','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3299,'notes','1401','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3300,'notes','1402','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3301,'notes','1403','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3302,'notes','1404','error','Deal not found: 61',NULL,'2025-11-14 00:11:11'),
(3303,'notes','1405','error','Deal not found: 442',NULL,'2025-11-14 00:11:11'),
(3304,'notes','1406','error','Deal not found: 249',NULL,'2025-11-14 00:11:11'),
(3305,'notes','1407','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3306,'notes','1408','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3307,'notes','1409','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3308,'notes','1410','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3309,'notes','1411','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3310,'notes','1412','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3311,'notes','1413','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3312,'notes','1414','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3313,'notes','1415','error','Deal not found: 1724',NULL,'2025-11-14 00:11:11'),
(3314,'notes','1416','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3315,'notes','1417','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3316,'notes','1418','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3317,'notes','1419','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3318,'notes','1420','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3319,'notes','1421','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3320,'notes','1422','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3321,'notes','1423','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3322,'notes','1424','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3323,'notes','1425','error','Deal not found: 1724',NULL,'2025-11-14 00:11:11'),
(3324,'notes','1426','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3325,'notes','1427','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3326,'notes','1428','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3327,'notes','1429','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3328,'notes','1430','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3329,'notes','1431','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3330,'notes','1432','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3331,'notes','1434','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3332,'notes','1435','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3333,'notes','1436','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3334,'notes','1437','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3335,'notes','1438','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3336,'notes','1439','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3337,'notes','1440','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3338,'notes','1441','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3339,'notes','1442','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3340,'notes','1443','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3341,'notes','1444','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3342,'notes','1445','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3343,'notes','1446','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3344,'notes','1447','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3345,'notes','1448','error','Deal not found: 1724',NULL,'2025-11-14 00:11:11'),
(3346,'notes','1449','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3347,'notes','1450','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3348,'notes','1451','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3349,'notes','1452','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3350,'notes','1453','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3351,'notes','1454','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3352,'notes','1455','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3353,'notes','1456','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3354,'notes','1457','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3355,'notes','1458','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3356,'notes','1459','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3357,'notes','1460','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3358,'notes','1461','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3359,'notes','1462','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3360,'notes','1463','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3361,'notes','1464','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3362,'notes','1465','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3363,'notes','1466','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3364,'notes','1467','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3365,'notes','1468','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3366,'notes','1469','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3367,'notes','1470','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3368,'notes','1471','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3369,'notes','1472','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3370,'notes','1473','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3371,'notes','1474','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3372,'notes','1475','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3373,'notes','1476','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3374,'notes','1477','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3375,'notes','1478','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3376,'notes','1479','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3377,'notes','1480','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3378,'notes','1481','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3379,'notes','1482','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3380,'notes','1483','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3381,'notes','1484','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3382,'notes','1485','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3383,'notes','1486','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3384,'notes','1487','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3385,'notes','1488','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3386,'notes','1489','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3387,'notes','1490','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3388,'notes','1491','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3389,'notes','1492','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3390,'notes','1493','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3391,'notes','1494','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3392,'notes','1495','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3393,'notes','1496','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3394,'notes','1497','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3395,'notes','1498','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3396,'notes','1499','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3397,'notes','1500','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3398,'notes','1501','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3399,'notes','1502','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3400,'notes','1504','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3401,'notes','1505','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3402,'notes','1506','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3403,'notes','1507','error','Deal not found: 1358',NULL,'2025-11-14 00:11:11'),
(3404,'notes','1508','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3405,'notes','1509','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3406,'notes','1510','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3407,'notes','1511','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3408,'notes','1512','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3409,'notes','1513','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3410,'notes','1514','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3411,'notes','1515','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3412,'notes','1516','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3413,'notes','1517','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3414,'notes','1518','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3415,'notes','1519','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3416,'notes','1520','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3417,'notes','1523','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3418,'notes','1524','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3419,'notes','1525','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3420,'notes','1526','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3421,'notes','1527','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3422,'notes','1528','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3423,'notes','1529','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3424,'notes','1530','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3425,'notes','1531','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3426,'notes','1532','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3427,'notes','1533','error','Deal not found: 1442',NULL,'2025-11-14 00:11:11'),
(3428,'notes','1534','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3429,'notes','1535','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3430,'notes','1536','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3431,'notes','1537','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3432,'notes','1538','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3433,'notes','1539','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3434,'notes','1540','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3435,'notes','1541','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3436,'notes','1542','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3437,'notes','1543','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3438,'notes','1544','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3439,'notes','1545','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3440,'notes','1546','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3441,'notes','1547','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3442,'notes','1548','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3443,'notes','1549','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3444,'notes','1550','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3445,'notes','1551','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3446,'notes','1552','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3447,'notes','1553','error','Deal not found: 4',NULL,'2025-11-14 00:11:11'),
(3448,'notes','1554','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3449,'notes','1555','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3450,'notes','1556','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3451,'notes','1557','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3452,'notes','1558','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3453,'notes','1559','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3454,'notes','1560','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3455,'notes','1561','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3456,'notes','1562','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3457,'notes','1563','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3458,'notes','1564','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3459,'notes','1565','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3460,'notes','1566','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3461,'notes','1567','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3462,'notes','1568','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3463,'notes','1569','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3464,'notes','1570','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3465,'notes','1571','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3466,'notes','1572','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3467,'notes','1573','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3468,'notes','1574','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3469,'notes','1575','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3470,'notes','1576','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3471,'notes','1577','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3472,'notes','1578','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3473,'notes','1579','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3474,'notes','1580','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3475,'notes','1581','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3476,'notes','1582','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3477,'notes','1583','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3478,'notes','1584','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3479,'notes','1585','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3480,'notes','1586','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3481,'notes','1587','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3482,'notes','1588','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3483,'notes','1589','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3484,'notes','1590','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3485,'notes','1591','error','Deal not found: 1570',NULL,'2025-11-14 00:11:11'),
(3486,'notes','1592','error','Deal not found: 14',NULL,'2025-11-14 00:11:11'),
(3487,'notes','1593','error','Deal not found: 1557',NULL,'2025-11-14 00:11:11'),
(3488,'notes','1594','error','Deal not found: 1557',NULL,'2025-11-14 00:11:11'),
(3489,'notes','1595','error','Deal not found: 1551',NULL,'2025-11-14 00:11:11'),
(3490,'notes','1597','error','Deal not found: 1551',NULL,'2025-11-14 00:11:11'),
(3491,'notes','1598','error','Deal not found: 1551',NULL,'2025-11-14 00:11:11'),
(3492,'notes','1599','error','Deal not found: 1555',NULL,'2025-11-14 00:11:11'),
(3493,'notes','1600','error','Deal not found: 1555',NULL,'2025-11-14 00:11:11'),
(3494,'notes','1601','error','Deal not found: 1555',NULL,'2025-11-14 00:11:11'),
(3495,'notes','1602','error','Deal not found: 1555',NULL,'2025-11-14 00:11:11'),
(3496,'notes','1603','error','Deal not found: 1555',NULL,'2025-11-14 00:11:11'),
(3497,'notes','1604','error','Deal not found: 1555',NULL,'2025-11-14 00:11:11'),
(3498,'notes','1605','error','Deal not found: 1553',NULL,'2025-11-14 00:11:11'),
(3499,'notes','1606','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3500,'notes','1607','error','Deal not found: 58',NULL,'2025-11-14 00:11:11'),
(3501,'notes','1608','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3502,'notes','1609','error','Deal not found: 56',NULL,'2025-11-14 00:11:11'),
(3503,'notes','1610','error','Deal not found: 1559',NULL,'2025-11-14 00:11:11'),
(3504,'notes','1611','error','Deal not found: 1563',NULL,'2025-11-14 00:11:11'),
(3505,'notes','1612','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3506,'notes','1613','error','Deal not found: 1563',NULL,'2025-11-14 00:11:11'),
(3507,'notes','1614','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3508,'notes','1618','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3509,'notes','1619','error','Deal not found: 1563',NULL,'2025-11-14 00:11:11'),
(3510,'notes','1620','error','Deal not found: 1559',NULL,'2025-11-14 00:11:11'),
(3511,'notes','1621','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3512,'notes','1622','error','Deal not found: 1965',NULL,'2025-11-14 00:11:11'),
(3513,'notes','1623','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3514,'notes','1624','error','Deal not found: 1572',NULL,'2025-11-14 00:11:11'),
(3515,'notes','1625','error','Deal not found: 1576',NULL,'2025-11-14 00:11:11'),
(3516,'notes','1626','error','Deal not found: 1577',NULL,'2025-11-14 00:11:11'),
(3517,'notes','1627','error','Deal not found: 1578',NULL,'2025-11-14 00:11:11'),
(3518,'notes','1628','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3519,'notes','1629','error','Deal not found: 1965',NULL,'2025-11-14 00:11:11'),
(3520,'notes','1630','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3521,'notes','1631','error','Deal not found: 4',NULL,'2025-11-14 00:11:11'),
(3522,'notes','1632','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3523,'notes','1633','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3524,'notes','1634','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3525,'notes','1635','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3526,'notes','1636','error','Deal not found: 1566',NULL,'2025-11-14 00:11:11'),
(3527,'notes','1637','error','Deal not found: 1582',NULL,'2025-11-14 00:11:11'),
(3528,'notes','1638','error','Deal not found: 1584',NULL,'2025-11-14 00:11:11'),
(3529,'notes','1639','error','Deal not found: 1582',NULL,'2025-11-14 00:11:11'),
(3530,'notes','1640','error','Deal not found: 1566',NULL,'2025-11-14 00:11:11'),
(3531,'notes','1641','error','Deal not found: 1582',NULL,'2025-11-14 00:11:11'),
(3532,'notes','1642','error','Deal not found: 1580',NULL,'2025-11-14 00:11:11'),
(3533,'notes','1643','error','Deal not found: 33',NULL,'2025-11-14 00:11:11'),
(3534,'notes','1644','error','Deal not found: 1582',NULL,'2025-11-14 00:11:11'),
(3535,'notes','1645','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3536,'notes','1646','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3537,'notes','1647','error','Deal not found: 1582',NULL,'2025-11-14 00:11:11'),
(3538,'notes','1648','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3539,'notes','1650','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3540,'notes','1651','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3541,'notes','1652','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3542,'notes','1653','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3543,'notes','1654','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3544,'notes','1655','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3545,'notes','1656','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3546,'notes','1657','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3547,'notes','1658','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3548,'notes','1659','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3549,'notes','1660','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3550,'notes','1661','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3551,'notes','1662','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3552,'notes','1663','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3553,'notes','1664','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3554,'notes','1665','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3555,'notes','1666','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3556,'notes','1667','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3557,'notes','1668','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3558,'notes','1669','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3559,'notes','1670','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3560,'notes','1671','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3561,'notes','1672','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3562,'notes','1673','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3563,'notes','1674','error','Deal not found: 1718',NULL,'2025-11-14 00:11:11'),
(3564,'notes','1675','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3565,'notes','1676','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3566,'notes','1677','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3567,'notes','1678','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3568,'notes','1679','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3569,'notes','1680','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3570,'notes','1681','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3571,'notes','1682','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3572,'notes','1683','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3573,'notes','1684','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3574,'notes','1685','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3575,'notes','1686','error','Deal not found: 1563',NULL,'2025-11-14 00:11:11'),
(3576,'notes','1687','error','Deal not found: 58',NULL,'2025-11-14 00:11:11'),
(3577,'notes','1688','error','Deal not found: 1563',NULL,'2025-11-14 00:11:11'),
(3578,'notes','1689','error','Deal not found: 1563',NULL,'2025-11-14 00:11:11'),
(3579,'notes','1690','error','Deal not found: 1582',NULL,'2025-11-14 00:11:11'),
(3580,'notes','1691','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3581,'notes','1692','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3582,'notes','1693','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3583,'notes','1694','error','Deal not found: 1595',NULL,'2025-11-14 00:11:11'),
(3584,'notes','1695','error','Deal not found: 1595',NULL,'2025-11-14 00:11:11'),
(3585,'notes','1696','error','Deal not found: 1595',NULL,'2025-11-14 00:11:11'),
(3586,'notes','1697','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3587,'notes','1698','error','Deal not found: 1596',NULL,'2025-11-14 00:11:11'),
(3588,'notes','1699','error','Deal not found: 1597',NULL,'2025-11-14 00:11:11'),
(3589,'notes','1700','error','Deal not found: 1594',NULL,'2025-11-14 00:11:11'),
(3590,'notes','1701','error','Deal not found: 1598',NULL,'2025-11-14 00:11:11'),
(3591,'notes','1702','error','Deal not found: 1600',NULL,'2025-11-14 00:11:11'),
(3592,'notes','1703','error','Deal not found: 1580',NULL,'2025-11-14 00:11:11'),
(3593,'notes','1704','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3594,'notes','1705','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3595,'notes','1706','error','Deal not found: 1597',NULL,'2025-11-14 00:11:11'),
(3596,'notes','1707','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3597,'notes','1708','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3598,'notes','1709','error','Deal not found: 1605',NULL,'2025-11-14 00:11:11'),
(3599,'notes','1710','error','Deal not found: 1577',NULL,'2025-11-14 00:11:11'),
(3600,'notes','1711','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3601,'notes','1712','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3602,'notes','1713','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3603,'notes','1714','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3604,'notes','1715','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3605,'notes','1716','error','Deal not found: 1604',NULL,'2025-11-14 00:11:11'),
(3606,'notes','1717','error','Deal not found: 1604',NULL,'2025-11-14 00:11:11'),
(3607,'notes','1718','error','Deal not found: 1597',NULL,'2025-11-14 00:11:11'),
(3608,'notes','1719','error','Deal not found: 1605',NULL,'2025-11-14 00:11:11'),
(3609,'notes','1720','error','Deal not found: 1597',NULL,'2025-11-14 00:11:11'),
(3610,'notes','1721','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3611,'notes','1722','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3612,'notes','1723','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3613,'notes','1724','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3614,'notes','1725','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3615,'notes','1726','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3616,'notes','1727','error','Deal not found: 1608',NULL,'2025-11-14 00:11:11'),
(3617,'notes','1728','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3618,'notes','1729','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3619,'notes','1730','error','Deal not found: 1608',NULL,'2025-11-14 00:11:11'),
(3620,'notes','1731','error','Deal not found: 1611',NULL,'2025-11-14 00:11:11'),
(3621,'notes','1732','error','Deal not found: 1611',NULL,'2025-11-14 00:11:11'),
(3622,'notes','1733','error','Deal not found: 1611',NULL,'2025-11-14 00:11:11'),
(3623,'notes','1734','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3624,'notes','1735','error','Deal not found: 1604',NULL,'2025-11-14 00:11:11'),
(3625,'notes','1736','error','Deal not found: 1584',NULL,'2025-11-14 00:11:11'),
(3626,'notes','1737','error','Deal not found: 1613',NULL,'2025-11-14 00:11:11'),
(3627,'notes','1738','error','Deal not found: 1582',NULL,'2025-11-14 00:11:11'),
(3628,'notes','1739','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3629,'notes','1740','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3630,'notes','1741','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3631,'notes','1742','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3632,'notes','1743','error','Deal not found: 1584',NULL,'2025-11-14 00:11:11'),
(3633,'notes','1744','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3634,'notes','1745','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3635,'notes','1746','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3636,'notes','1747','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3637,'notes','1748','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3638,'notes','1749','error','Deal not found: 1577',NULL,'2025-11-14 00:11:11'),
(3639,'notes','1750','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3640,'notes','1751','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3641,'notes','1752','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3642,'notes','1753','error','Deal not found: 1613',NULL,'2025-11-14 00:11:11'),
(3643,'notes','1754','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3644,'notes','1755','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3645,'notes','1756','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3646,'notes','1757','error','Deal not found: 1616',NULL,'2025-11-14 00:11:11'),
(3647,'notes','1758','error','Deal not found: 1616',NULL,'2025-11-14 00:11:11'),
(3648,'notes','1759','error','Deal not found: 1613',NULL,'2025-11-14 00:11:11'),
(3649,'notes','1760','error','Deal not found: 1613',NULL,'2025-11-14 00:11:11'),
(3650,'notes','1761','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3651,'notes','1762','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3652,'notes','1763','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3653,'notes','1764','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3654,'notes','1766','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3655,'notes','1767','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3656,'notes','1768','error','Deal not found: 1589',NULL,'2025-11-14 00:11:11'),
(3657,'notes','1769','error','Deal not found: 1622',NULL,'2025-11-14 00:11:11'),
(3658,'notes','1770','error','Deal not found: 1960',NULL,'2025-11-14 00:11:11'),
(3659,'notes','1772','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3660,'notes','1773','error','Deal not found: 1623',NULL,'2025-11-14 00:11:11'),
(3661,'notes','1774','error','Deal not found: 1625',NULL,'2025-11-14 00:11:11'),
(3662,'notes','1775','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3663,'notes','1776','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3664,'notes','1777','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3665,'notes','1778','error','Deal not found: 1626',NULL,'2025-11-14 00:11:11'),
(3666,'notes','1779','error','Deal not found: 1627',NULL,'2025-11-14 00:11:11'),
(3667,'notes','1780','error','Deal not found: 1627',NULL,'2025-11-14 00:11:11'),
(3668,'notes','1781','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3669,'notes','1782','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3670,'notes','1783','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3671,'notes','1784','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3672,'notes','1785','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3673,'notes','1786','error','Deal not found: 1628',NULL,'2025-11-14 00:11:11'),
(3674,'notes','1787','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3675,'notes','1788','error','Deal not found: 1594',NULL,'2025-11-14 00:11:11'),
(3676,'notes','1789','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3677,'notes','1790','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3678,'notes','1791','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3679,'notes','1792','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3680,'notes','1793','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3681,'notes','1794','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3682,'notes','1795','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3683,'notes','1796','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3684,'notes','1797','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3685,'notes','1798','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3686,'notes','1799','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3687,'notes','1800','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3688,'notes','1801','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3689,'notes','1802','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3690,'notes','1803','error','Deal not found: 1629',NULL,'2025-11-14 00:11:11'),
(3691,'notes','1804','error','Deal not found: 1760',NULL,'2025-11-14 00:11:11'),
(3692,'notes','1805','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3693,'notes','1806','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3694,'notes','1807','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3695,'notes','1808','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3696,'notes','1809','error','Deal not found: 1629',NULL,'2025-11-14 00:11:11'),
(3697,'notes','1810','error','Deal not found: 1632',NULL,'2025-11-14 00:11:11'),
(3698,'notes','1811','error','Deal not found: 1574',NULL,'2025-11-14 00:11:11'),
(3699,'notes','1812','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3700,'notes','1816','error','Deal not found: 1634',NULL,'2025-11-14 00:11:11'),
(3701,'notes','1817','error','Deal not found: 1634',NULL,'2025-11-14 00:11:11'),
(3702,'notes','1818','error','Deal not found: 1635',NULL,'2025-11-14 00:11:11'),
(3703,'notes','1819','error','Deal not found: 1634',NULL,'2025-11-14 00:11:11'),
(3704,'notes','1820','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3705,'notes','1821','error','Deal not found: 1641',NULL,'2025-11-14 00:11:11'),
(3706,'notes','1822','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3707,'notes','1823','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3708,'notes','1824','error','Deal not found: 1635',NULL,'2025-11-14 00:11:11'),
(3709,'notes','1825','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3710,'notes','1826','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3711,'notes','1827','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3712,'notes','1828','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3713,'notes','1829','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3714,'notes','1830','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3715,'notes','1831','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3716,'notes','1832','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3717,'notes','1833','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3718,'notes','1834','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3719,'notes','1835','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3720,'notes','1836','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3721,'notes','1837','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3722,'notes','1838','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3723,'notes','1839','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3724,'notes','1840','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3725,'notes','1841','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3726,'notes','1842','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3727,'notes','1843','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3728,'notes','1844','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3729,'notes','1845','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3730,'notes','1846','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3731,'notes','1847','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3732,'notes','1848','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3733,'notes','1849','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3734,'notes','1850','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3735,'notes','1851','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3736,'notes','1852','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3737,'notes','1853','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3738,'notes','1854','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3739,'notes','1855','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3740,'notes','1856','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3741,'notes','1857','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3742,'notes','1858','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3743,'notes','1859','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3744,'notes','1860','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3745,'notes','1861','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3746,'notes','1862','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3747,'notes','1863','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3748,'notes','1864','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3749,'notes','1865','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3750,'notes','1866','error','Deal not found: 1641',NULL,'2025-11-14 00:11:11'),
(3751,'notes','1867','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3752,'notes','1868','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3753,'notes','1869','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3754,'notes','1870','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3755,'notes','1871','error','Deal not found: 1873',NULL,'2025-11-14 00:11:11'),
(3756,'notes','1872','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3757,'notes','1873','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3758,'notes','1874','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3759,'notes','1875','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3760,'notes','1876','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3761,'notes','1877','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3762,'notes','1878','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3763,'notes','1879','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3764,'notes','1880','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3765,'notes','1881','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3766,'notes','1882','error','Deal not found: 1725',NULL,'2025-11-14 00:11:11'),
(3767,'notes','1883','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3768,'notes','1884','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3769,'notes','1885','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3770,'notes','1886','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3771,'notes','1887','error','Deal not found: 1635',NULL,'2025-11-14 00:11:11'),
(3772,'notes','1888','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3773,'notes','1889','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3774,'notes','1890','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3775,'notes','1891','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3776,'notes','1892','error','Deal not found: 1623',NULL,'2025-11-14 00:11:11'),
(3777,'notes','1893','error','Deal not found: 1640',NULL,'2025-11-14 00:11:11'),
(3778,'notes','1894','error','Deal not found: 1591',NULL,'2025-11-14 00:11:11'),
(3779,'notes','1895','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3780,'notes','1896','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3781,'notes','1897','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3782,'notes','1898','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3783,'notes','1899','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3784,'notes','1900','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3785,'notes','1901','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3786,'notes','1902','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3787,'notes','1903','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3788,'notes','1904','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3789,'notes','1905','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3790,'notes','1906','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3791,'notes','1907','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3792,'notes','1908','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3793,'notes','1909','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3794,'notes','1910','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3795,'notes','1911','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3796,'notes','1912','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3797,'notes','1913','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3798,'notes','1914','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3799,'notes','1915','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3800,'notes','1916','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3801,'notes','1917','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3802,'notes','1918','error','Deal not found: 1643',NULL,'2025-11-14 00:11:11'),
(3803,'notes','1919','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3804,'notes','1920','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3805,'notes','1921','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3806,'notes','1922','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3807,'notes','1923','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3808,'notes','1924','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3809,'notes','1925','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3810,'notes','1926','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3811,'notes','1927','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3812,'notes','1928','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3813,'notes','1929','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3814,'notes','1930','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3815,'notes','1931','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3816,'notes','1932','error','Deal not found: 1597',NULL,'2025-11-14 00:11:11'),
(3817,'notes','1933','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3818,'notes','1934','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3819,'notes','1935','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3820,'notes','1936','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3821,'notes','1937','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3822,'notes','1938','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3823,'notes','1939','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3824,'notes','1940','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3825,'notes','1941','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3826,'notes','1942','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3827,'notes','1943','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3828,'notes','1944','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3829,'notes','1945','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3830,'notes','1946','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3831,'notes','1947','error','Deal not found: 1648',NULL,'2025-11-14 00:11:11'),
(3832,'notes','1948','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3833,'notes','1949','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3834,'notes','1950','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3835,'notes','1951','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3836,'notes','1952','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3837,'notes','1953','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3838,'notes','1954','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3839,'notes','1955','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3840,'notes','1956','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3841,'notes','1957','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3842,'notes','1958','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3843,'notes','1959','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3844,'notes','1960','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3845,'notes','1961','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3846,'notes','1962','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3847,'notes','1963','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3848,'notes','1964','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3849,'notes','1965','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3850,'notes','1966','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3851,'notes','1967','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3852,'notes','1968','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3853,'notes','1969','error','Deal not found: 1577',NULL,'2025-11-14 00:11:11'),
(3854,'notes','1970','error','Deal not found: 1638',NULL,'2025-11-14 00:11:11'),
(3855,'notes','1971','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3856,'notes','1972','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3857,'notes','1973','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3858,'notes','1974','error','Deal not found: 1650',NULL,'2025-11-14 00:11:11'),
(3859,'notes','1975','error','Deal not found: 1651',NULL,'2025-11-14 00:11:11'),
(3860,'notes','1976','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3861,'notes','1977','error','Deal not found: 1653',NULL,'2025-11-14 00:11:11'),
(3862,'notes','1978','error','Deal not found: 1654',NULL,'2025-11-14 00:11:11'),
(3863,'notes','1979','error','Deal not found: 1655',NULL,'2025-11-14 00:11:11'),
(3864,'notes','1980','error','Deal not found: 1656',NULL,'2025-11-14 00:11:11'),
(3865,'notes','1981','error','Deal not found: 1657',NULL,'2025-11-14 00:11:11'),
(3866,'notes','1982','error','Deal not found: 1658',NULL,'2025-11-14 00:11:11'),
(3867,'notes','1983','error','Deal not found: 1658',NULL,'2025-11-14 00:11:11'),
(3868,'notes','1984','error','Deal not found: 1659',NULL,'2025-11-14 00:11:11'),
(3869,'notes','1985','error','Deal not found: 1660',NULL,'2025-11-14 00:11:11'),
(3870,'notes','1986','error','Deal not found: 1661',NULL,'2025-11-14 00:11:11'),
(3871,'notes','1987','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3872,'notes','1988','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3873,'notes','1989','error','Deal not found: 1664',NULL,'2025-11-14 00:11:11'),
(3874,'notes','1990','error','Deal not found: 1665',NULL,'2025-11-14 00:11:11'),
(3875,'notes','1991','error','Deal not found: 1666',NULL,'2025-11-14 00:11:11'),
(3876,'notes','1992','error','Deal not found: 1667',NULL,'2025-11-14 00:11:11'),
(3877,'notes','1993','error','Deal not found: 1668',NULL,'2025-11-14 00:11:11'),
(3878,'notes','1994','error','Deal not found: 1669',NULL,'2025-11-14 00:11:11'),
(3879,'notes','1995','error','Deal not found: 1670',NULL,'2025-11-14 00:11:11'),
(3880,'notes','1996','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3881,'notes','1997','error','Deal not found: 1672',NULL,'2025-11-14 00:11:11'),
(3882,'notes','1998','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3883,'notes','1999','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3884,'notes','2000','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3885,'notes','2001','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3886,'notes','2002','error','Deal not found: 1676',NULL,'2025-11-14 00:11:11'),
(3887,'notes','2003','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3888,'notes','2004','error','Deal not found: 1678',NULL,'2025-11-14 00:11:11'),
(3889,'notes','2005','error','Deal not found: 1679',NULL,'2025-11-14 00:11:11'),
(3890,'notes','2006','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3891,'notes','2007','error','Deal not found: 1681',NULL,'2025-11-14 00:11:11'),
(3892,'notes','2008','error','Deal not found: 1682',NULL,'2025-11-14 00:11:11'),
(3893,'notes','2009','error','Deal not found: 1683',NULL,'2025-11-14 00:11:11'),
(3894,'notes','2010','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3895,'notes','2011','error','Deal not found: 1685',NULL,'2025-11-14 00:11:11'),
(3896,'notes','2012','error','Deal not found: 1686',NULL,'2025-11-14 00:11:11'),
(3897,'notes','2013','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3898,'notes','2014','error','Deal not found: 1688',NULL,'2025-11-14 00:11:11'),
(3899,'notes','2015','error','Deal not found: 1689',NULL,'2025-11-14 00:11:11'),
(3900,'notes','2016','error','Deal not found: 1690',NULL,'2025-11-14 00:11:11'),
(3901,'notes','2017','error','Deal not found: 1691',NULL,'2025-11-14 00:11:11'),
(3902,'notes','2018','error','Deal not found: 1692',NULL,'2025-11-14 00:11:11'),
(3903,'notes','2019','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3904,'notes','2020','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3905,'notes','2021','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3906,'notes','2022','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3907,'notes','2023','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3908,'notes','2024','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3909,'notes','2025','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3910,'notes','2026','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3911,'notes','2028','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3912,'notes','2029','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3913,'notes','2030','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3914,'notes','2031','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3915,'notes','2032','error','Deal not found: 1734',NULL,'2025-11-14 00:11:11'),
(3916,'notes','2033','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3917,'notes','2034','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3918,'notes','2035','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3919,'notes','2036','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3920,'notes','2037','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3921,'notes','2038','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3922,'notes','2039','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3923,'notes','2040','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3924,'notes','2041','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3925,'notes','2042','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3926,'notes','2043','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3927,'notes','2044','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3928,'notes','2045','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3929,'notes','2046','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3930,'notes','2047','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3931,'notes','2048','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3932,'notes','2049','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3933,'notes','2050','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3934,'notes','2051','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3935,'notes','2052','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3936,'notes','2053','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3937,'notes','2054','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3938,'notes','2055','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3939,'notes','2056','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3940,'notes','2057','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3941,'notes','2058','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3942,'notes','2059','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3943,'notes','2060','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3944,'notes','2061','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3945,'notes','2062','error','Deal not found: 1695',NULL,'2025-11-14 00:11:11'),
(3946,'notes','2063','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3947,'notes','2064','error','Deal not found: 1635',NULL,'2025-11-14 00:11:11'),
(3948,'notes','2065','error','Deal not found: 1696',NULL,'2025-11-14 00:11:11'),
(3949,'notes','2066','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3950,'notes','2067','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3951,'notes','2068','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3952,'notes','2069','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3953,'notes','2070','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3954,'notes','2071','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3955,'notes','2072','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3956,'notes','2073','error','Deal not found: 1697',NULL,'2025-11-14 00:11:11'),
(3957,'notes','2074','error','Deal not found: 1698',NULL,'2025-11-14 00:11:11'),
(3958,'notes','2075','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3959,'notes','2076','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3960,'notes','2077','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3961,'notes','2078','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3962,'notes','2079','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3963,'notes','2080','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3964,'notes','2081','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3965,'notes','2082','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3966,'notes','2083','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3967,'notes','2084','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3968,'notes','2085','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3969,'notes','2086','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3970,'notes','2087','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3971,'notes','2088','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3972,'notes','2089','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3973,'notes','2090','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3974,'notes','2091','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3975,'notes','2092','error','Deal not found: 1665',NULL,'2025-11-14 00:11:11'),
(3976,'notes','2093','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3977,'notes','2094','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3978,'notes','2095','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3979,'notes','2096','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3980,'notes','2097','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3981,'notes','2098','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3982,'notes','2099','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3983,'notes','2100','error','Deal not found: 1686',NULL,'2025-11-14 00:11:11'),
(3984,'notes','2101','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3985,'notes','2102','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3986,'notes','2103','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3987,'notes','2104','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3988,'notes','2105','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3989,'notes','2106','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3990,'notes','2107','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3991,'notes','2108','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3992,'notes','2109','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3993,'notes','2110','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3994,'notes','2111','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3995,'notes','2112','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3996,'notes','2113','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3997,'notes','2114','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3998,'notes','2115','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3999,'notes','2116','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4000,'notes','2117','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4001,'notes','2118','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4002,'notes','2119','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4003,'notes','2120','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4004,'notes','2121','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4005,'notes','2122','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4006,'notes','2123','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4007,'notes','2124','error','Deal not found: 1733',NULL,'2025-11-14 00:11:11'),
(4008,'notes','2125','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4009,'notes','2126','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4010,'notes','2127','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4011,'notes','2128','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4012,'notes','2129','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4013,'notes','2130','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4014,'notes','2131','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4015,'notes','2132','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4016,'notes','2133','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4017,'notes','2134','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4018,'notes','2135','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4019,'notes','2136','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4020,'notes','2137','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4021,'notes','2138','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4022,'notes','2139','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4023,'notes','2140','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4024,'notes','2141','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4025,'notes','2142','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4026,'notes','2143','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4027,'notes','2144','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4028,'notes','2145','error','Deal not found: 1755',NULL,'2025-11-14 00:11:11'),
(4029,'notes','2146','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4030,'notes','2147','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4031,'notes','2148','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4032,'notes','2149','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4033,'notes','2150','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4034,'notes','2151','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4035,'notes','2152','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4036,'notes','2153','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4037,'notes','2154','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4038,'notes','2155','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4039,'notes','2156','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4040,'notes','2157','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4041,'notes','2158','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4042,'notes','2159','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4043,'notes','2160','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4044,'notes','2161','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4045,'notes','2162','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4046,'notes','2163','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4047,'notes','2164','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4048,'notes','2165','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4049,'notes','2166','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4050,'notes','2167','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4051,'notes','2168','error','Deal not found: 1708',NULL,'2025-11-14 00:11:11'),
(4052,'notes','2169','error','Deal not found: 1708',NULL,'2025-11-14 00:11:11'),
(4053,'notes','2170','error','Deal not found: 1708',NULL,'2025-11-14 00:11:11'),
(4054,'notes','2171','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4055,'notes','2172','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4056,'notes','2173','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4057,'notes','2174','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4058,'notes','2175','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4059,'notes','2176','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4060,'notes','2177','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4061,'notes','2178','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4062,'notes','2179','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4063,'notes','2180','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4064,'notes','2181','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4065,'notes','2182','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4066,'notes','2183','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4067,'notes','2184','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4068,'notes','2185','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4069,'notes','2186','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4070,'notes','2187','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4071,'notes','2188','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4072,'notes','2189','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4073,'notes','2190','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4074,'notes','2191','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4075,'notes','2192','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4076,'notes','2193','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4077,'notes','2195','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4078,'notes','2196','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4079,'notes','2197','error','Deal not found: 1664',NULL,'2025-11-14 00:11:11'),
(4080,'notes','2198','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4081,'notes','2199','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4082,'notes','2200','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4083,'notes','2201','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4084,'notes','2202','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4085,'notes','2203','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4086,'notes','2204','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4087,'notes','2205','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4088,'notes','2206','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4089,'notes','2207','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4090,'notes','2208','error','Deal not found: 1665',NULL,'2025-11-14 00:11:11'),
(4091,'notes','2209','error','Deal not found: 1665',NULL,'2025-11-14 00:11:11'),
(4092,'notes','2210','error','Deal not found: 1597',NULL,'2025-11-14 00:11:11'),
(4093,'notes','2211','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4094,'notes','2212','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4095,'notes','2213','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4096,'notes','2214','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4097,'notes','2215','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4098,'notes','2216','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4099,'notes','2217','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4100,'notes','2218','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4101,'notes','2219','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4102,'notes','2220','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4103,'notes','2221','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4104,'notes','2222','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4105,'notes','2223','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4106,'notes','2224','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4107,'notes','2225','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4108,'notes','2226','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4109,'notes','2227','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4110,'notes','2228','error','Deal not found: 1713',NULL,'2025-11-14 00:11:11'),
(4111,'notes','2229','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4112,'notes','2230','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4113,'notes','2231','error','Deal not found: 1713',NULL,'2025-11-14 00:11:11'),
(4114,'notes','2232','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4115,'notes','2233','error','Deal not found: 1597',NULL,'2025-11-14 00:11:11'),
(4116,'notes','2234','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4117,'notes','2235','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4118,'notes','2236','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4119,'notes','2237','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4120,'notes','2238','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4121,'notes','2239','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4122,'notes','2240','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4123,'notes','2241','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4124,'notes','2242','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4125,'notes','2243','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4126,'notes','2244','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4127,'notes','2245','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4128,'notes','2246','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4129,'notes','2247','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4130,'notes','2248','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4131,'notes','2249','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4132,'notes','2250','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4133,'notes','2251','error','Deal not found: 1714',NULL,'2025-11-14 00:11:11'),
(4134,'notes','2252','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4135,'notes','2253','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4136,'notes','2254','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4137,'notes','2255','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4138,'notes','2256','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4139,'notes','2257','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4140,'notes','2258','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4141,'notes','2259','error','Deal not found: 1617',NULL,'2025-11-14 00:11:11'),
(4142,'notes','2260','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4143,'notes','2261','error','Deal not found: 1608',NULL,'2025-11-14 00:11:11'),
(4144,'notes','2262','error','Deal not found: 1693',NULL,'2025-11-14 00:11:11'),
(4145,'notes','2263','error','Deal not found: 1632',NULL,'2025-11-14 00:11:11'),
(4146,'notes','2264','error','Deal not found: 1582',NULL,'2025-11-14 00:11:11'),
(4147,'notes','2265','error','Deal not found: 6',NULL,'2025-11-14 00:11:11'),
(4148,'notes','2266','error','Deal not found: 1577',NULL,'2025-11-14 00:11:11'),
(4149,'notes','2267','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4150,'notes','2268','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4151,'notes','2269','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4152,'notes','2270','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4153,'notes','2271','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4154,'notes','2272','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4155,'notes','2273','error','Deal not found: 1620',NULL,'2025-11-14 00:11:11'),
(4156,'notes','2274','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4157,'notes','2275','error','Deal not found: 1557',NULL,'2025-11-14 00:11:11'),
(4158,'notes','2276','error','Deal not found: 1730',NULL,'2025-11-14 00:11:11'),
(4159,'notes','2277','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4160,'notes','2278','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4161,'notes','2279','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4162,'notes','2280','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4163,'notes','2281','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4164,'notes','2282','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4165,'notes','2283','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4166,'notes','2284','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4167,'notes','2285','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4168,'notes','2286','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4169,'notes','2287','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4170,'notes','2288','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4171,'notes','2290','error','Deal not found: 1744',NULL,'2025-11-14 00:11:11'),
(4172,'notes','2291','error','Deal not found: 1745',NULL,'2025-11-14 00:11:11'),
(4173,'notes','2292','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4174,'notes','2293','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4175,'notes','2294','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4176,'notes','2295','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4177,'notes','2296','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4178,'notes','2297','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4179,'notes','2298','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4180,'notes','2299','error','Deal not found: 1733',NULL,'2025-11-14 00:11:11'),
(4181,'notes','2300','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4182,'notes','2301','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4183,'notes','2302','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4184,'notes','2303','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4185,'notes','2304','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4186,'notes','2305','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4187,'notes','2306','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4188,'notes','2307','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4189,'notes','2308','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4190,'notes','2309','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4191,'notes','2310','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4192,'notes','2311','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4193,'notes','2312','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4194,'notes','2313','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4195,'notes','2314','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4196,'notes','2315','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4197,'notes','2316','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4198,'notes','2317','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4199,'notes','2318','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4200,'notes','2319','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4201,'notes','2320','error','Deal not found: 1714',NULL,'2025-11-14 00:11:11'),
(4202,'notes','2321','error','Deal not found: 1763',NULL,'2025-11-14 00:11:11'),
(4203,'notes','2322','error','Deal not found: 1714',NULL,'2025-11-14 00:11:11'),
(4204,'notes','2323','error','Deal not found: 1622',NULL,'2025-11-14 00:11:11'),
(4205,'notes','2324','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4206,'notes','2325','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4207,'notes','2326','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4208,'notes','2327','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4209,'notes','2328','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4210,'notes','2329','error','Deal not found: 1765',NULL,'2025-11-14 00:11:11'),
(4211,'notes','2330','error','Deal not found: 1766',NULL,'2025-11-14 00:11:11'),
(4212,'notes','2331','error','Deal not found: 1766',NULL,'2025-11-14 00:11:11'),
(4213,'notes','2332','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4214,'notes','2333','error','Deal not found: 1767',NULL,'2025-11-14 00:11:11'),
(4215,'notes','2334','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4216,'notes','2335','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4217,'notes','2337','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4218,'notes','2338','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4219,'notes','2339','error','Deal not found: 1771',NULL,'2025-11-14 00:11:11'),
(4220,'notes','2340','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4221,'notes','2341','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4222,'notes','2342','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4223,'notes','2343','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4224,'notes','2344','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4225,'notes','2345','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4226,'notes','2346','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4227,'notes','2347','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4228,'notes','2348','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4229,'notes','2349','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4230,'notes','2350','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4231,'notes','2351','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4232,'notes','2352','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4233,'notes','2353','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4234,'notes','2354','error','Deal not found: 1765',NULL,'2025-11-14 00:11:11'),
(4235,'notes','2355','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4236,'notes','2356','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4237,'notes','2357','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4238,'notes','2358','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4239,'notes','2359','error','Deal not found: 1755',NULL,'2025-11-14 00:11:11'),
(4240,'notes','2360','error','Deal not found: 1755',NULL,'2025-11-14 00:11:11'),
(4241,'notes','2361','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4242,'notes','2362','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4243,'notes','2363','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4244,'notes','2364','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4245,'notes','2365','error','Deal not found: 1751',NULL,'2025-11-14 00:11:11'),
(4246,'notes','2366','error','Deal not found: 1751',NULL,'2025-11-14 00:11:11'),
(4247,'notes','2367','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4248,'notes','2368','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4249,'notes','2369','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4250,'notes','2370','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4251,'notes','2371','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4252,'notes','2372','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4253,'notes','2373','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4254,'notes','2374','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4255,'notes','2375','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4256,'notes','2376','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4257,'notes','2377','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4258,'notes','2378','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4259,'notes','2379','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4260,'notes','2380','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4261,'notes','2381','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4262,'notes','2382','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4263,'notes','2383','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4264,'notes','2385','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4265,'notes','2386','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4266,'notes','2387','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4267,'notes','2388','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4268,'notes','2389','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4269,'notes','2390','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4270,'notes','2391','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4271,'notes','2392','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4272,'notes','2393','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4273,'notes','2394','error','Deal not found: 1775',NULL,'2025-11-14 00:11:11'),
(4274,'notes','2395','error','Deal not found: 1773',NULL,'2025-11-14 00:11:11'),
(4275,'notes','2396','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4276,'notes','2397','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4277,'notes','2398','error','Deal not found: 1708',NULL,'2025-11-14 00:11:11'),
(4278,'notes','2399','error','Deal not found: 1706',NULL,'2025-11-14 00:11:11'),
(4279,'notes','2400','error','Deal not found: 1665',NULL,'2025-11-14 00:11:11'),
(4280,'notes','2401','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4281,'notes','2402','error','Deal not found: 1781',NULL,'2025-11-14 00:11:11'),
(4282,'notes','2403','error','Deal not found: 1765',NULL,'2025-11-14 00:11:11'),
(4283,'notes','2404','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4284,'notes','2405','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4285,'notes','2406','error','Deal not found: 1784',NULL,'2025-11-14 00:11:11'),
(4286,'notes','2407','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4287,'notes','2408','error','Deal not found: 1622',NULL,'2025-11-14 00:11:11'),
(4288,'notes','2409','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4289,'notes','2410','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4290,'notes','2411','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4291,'notes','2412','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4292,'notes','2413','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4293,'notes','2414','error','Deal not found: 1780',NULL,'2025-11-14 00:11:11'),
(4294,'notes','2415','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4295,'notes','2416','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4296,'notes','2417','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4297,'notes','2418','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4298,'notes','2419','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4299,'notes','2420','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4300,'notes','2423','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4301,'notes','2424','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4302,'notes','2425','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4303,'notes','2426','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4304,'notes','2427','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4305,'notes','2428','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4306,'notes','2429','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4307,'notes','2430','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4308,'notes','2431','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4309,'notes','2432','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4310,'notes','2433','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4311,'notes','2434','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4312,'notes','2435','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4313,'notes','2436','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4314,'notes','2437','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4315,'notes','2438','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4316,'notes','2440','error','Deal not found: 1779',NULL,'2025-11-14 00:11:11'),
(4317,'notes','2441','error','Deal not found: 1776',NULL,'2025-11-14 00:11:11'),
(4318,'notes','2442','error','Deal not found: 1780',NULL,'2025-11-14 00:11:11'),
(4319,'notes','2443','error','Deal not found: 1792',NULL,'2025-11-14 00:11:11'),
(4320,'notes','2444','error','Deal not found: 1766',NULL,'2025-11-14 00:11:11'),
(4321,'notes','2445','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4322,'notes','2446','error','Deal not found: 1753',NULL,'2025-11-14 00:11:11'),
(4323,'notes','2447','error','Deal not found: 1733',NULL,'2025-11-14 00:11:11'),
(4324,'notes','2448','error','Deal not found: 1703',NULL,'2025-11-14 00:11:11'),
(4325,'notes','2449','error','Deal not found: 1647',NULL,'2025-11-14 00:11:11'),
(4326,'notes','2450','error','Deal not found: 1750',NULL,'2025-11-14 00:11:11'),
(4327,'notes','2451','error','Deal not found: 1778',NULL,'2025-11-14 00:11:11'),
(4328,'notes','2452','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4329,'notes','2453','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4330,'notes','2454','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4331,'notes','2455','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4332,'notes','2456','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4333,'notes','2457','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4334,'notes','2458','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4335,'notes','2459','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4336,'notes','2460','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4337,'notes','2463','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4338,'notes','2464','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4339,'notes','2465','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4340,'notes','2466','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4341,'notes','2467','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4342,'notes','2468','error','Deal not found: 1784',NULL,'2025-11-14 00:11:11'),
(4343,'notes','2469','error','Deal not found: 1798',NULL,'2025-11-14 00:11:11'),
(4344,'notes','2470','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4345,'notes','2471','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4346,'notes','2473','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4347,'notes','2474','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4348,'notes','2475','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4349,'notes','2476','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4350,'notes','2477','error','Deal not found: 1775',NULL,'2025-11-14 00:11:11'),
(4351,'notes','2478','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4352,'notes','2479','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4353,'notes','2480','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4354,'notes','2481','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4355,'notes','2482','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4356,'notes','2483','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4357,'notes','2484','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4358,'notes','2485','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4359,'notes','2486','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4360,'notes','2487','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4361,'notes','2488','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4362,'notes','2489','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4363,'notes','2490','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4364,'notes','2491','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4365,'notes','2492','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4366,'notes','2493','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4367,'notes','2494','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4368,'notes','2495','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4369,'notes','2496','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4370,'notes','2497','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4371,'notes','2498','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4372,'notes','2499','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4373,'notes','2500','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4374,'notes','2501','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4375,'notes','2502','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4376,'notes','2503','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4377,'notes','2504','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4378,'notes','2505','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4379,'notes','2506','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4380,'notes','2507','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4381,'notes','2508','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4382,'notes','2509','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4383,'notes','2510','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4384,'notes','2511','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4385,'notes','2512','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4386,'notes','2513','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4387,'notes','2514','error','Deal not found: 1776',NULL,'2025-11-14 00:11:11'),
(4388,'notes','2515','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4389,'notes','2516','error','Deal not found: 1642',NULL,'2025-11-14 00:11:11'),
(4390,'notes','2517','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4391,'notes','2518','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4392,'notes','2519','error','Deal not found: 1630',NULL,'2025-11-14 00:11:11'),
(4393,'notes','2520','error','Deal not found: 1713',NULL,'2025-11-14 00:11:11'),
(4394,'notes','2521','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4395,'notes','2522','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4396,'notes','2523','error','Deal not found: 1614',NULL,'2025-11-14 00:11:11'),
(4397,'notes','2524','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4398,'notes','2525','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4399,'notes','2526','error','Deal not found: 1595',NULL,'2025-11-14 00:11:11'),
(4400,'notes','2527','error','Deal not found: 1572',NULL,'2025-11-14 00:11:11'),
(4401,'notes','2528','error','Deal not found: 1584',NULL,'2025-11-14 00:11:11'),
(4402,'notes','2529','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4403,'notes','2530','error','Deal not found: 1664',NULL,'2025-11-14 00:11:11'),
(4404,'notes','2531','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4405,'notes','2532','error','Deal not found: 24',NULL,'2025-11-14 00:11:11'),
(4406,'notes','2533','error','Deal not found: 1596',NULL,'2025-11-14 00:11:11'),
(4407,'notes','2534','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4408,'notes','2535','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4409,'notes','2536','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4410,'notes','2537','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4411,'notes','2538','error','Deal not found: 1818',NULL,'2025-11-14 00:11:11'),
(4412,'notes','2539','error','Deal not found: 1818',NULL,'2025-11-14 00:11:11'),
(4413,'notes','2540','error','Deal not found: 1818',NULL,'2025-11-14 00:11:11'),
(4414,'notes','2541','error','Deal not found: 1818',NULL,'2025-11-14 00:11:11'),
(4415,'notes','2542','error','Deal not found: 1818',NULL,'2025-11-14 00:11:11'),
(4416,'notes','2543','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4417,'notes','2544','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4418,'notes','2545','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4419,'notes','2546','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4420,'notes','2547','error','Deal not found: 1810',NULL,'2025-11-14 00:11:11'),
(4421,'notes','2548','error','Deal not found: 1811',NULL,'2025-11-14 00:11:11'),
(4422,'notes','2549','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4423,'notes','2550','error','Deal not found: 1812',NULL,'2025-11-14 00:11:11'),
(4424,'notes','2551','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4425,'notes','2552','error','Deal not found: 1711',NULL,'2025-11-14 00:11:11'),
(4426,'notes','2553','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4427,'notes','2554','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4428,'notes','2555','error','Deal not found: 1638',NULL,'2025-11-14 00:11:11'),
(4429,'notes','2556','error','Deal not found: 1622',NULL,'2025-11-14 00:11:11'),
(4430,'notes','2557','error','Deal not found: 1600',NULL,'2025-11-14 00:11:11'),
(4431,'notes','2558','error','Deal not found: 1597',NULL,'2025-11-14 00:11:11'),
(4432,'notes','2559','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4433,'notes','2560','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4434,'notes','2561','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4435,'notes','2562','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4436,'notes','2563','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4437,'notes','2564','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4438,'notes','2565','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4439,'notes','2566','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4440,'notes','2567','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4441,'notes','2568','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4442,'notes','2569','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4443,'notes','2570','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4444,'notes','2571','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4445,'notes','2572','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4446,'notes','2573','error','Deal not found: 1820',NULL,'2025-11-14 00:11:11'),
(4447,'notes','2574','error','Deal not found: 1648',NULL,'2025-11-14 00:11:11'),
(4448,'notes','2576','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4449,'notes','2577','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4450,'notes','2578','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4451,'notes','2579','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4452,'notes','2580','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4453,'notes','2581','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4454,'notes','2582','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4455,'notes','2583','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4456,'notes','2584','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4457,'notes','2585','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4458,'notes','2586','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4459,'notes','2587','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4460,'notes','2588','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4461,'notes','2589','error','Deal not found: 1566',NULL,'2025-11-14 00:11:11'),
(4462,'notes','2590','error','Deal not found: 4',NULL,'2025-11-14 00:11:11'),
(4463,'notes','2591','error','Deal not found: 1707',NULL,'2025-11-14 00:11:11'),
(4464,'notes','2592','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4465,'notes','2593','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4466,'notes','2594','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4467,'notes','2595','error','Deal not found: 1665',NULL,'2025-11-14 00:11:11'),
(4468,'notes','2598','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4469,'notes','2599','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4470,'notes','2600','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4471,'notes','2601','error','Deal not found: 1767',NULL,'2025-11-14 00:11:11'),
(4472,'notes','2602','error','Deal not found: 1766',NULL,'2025-11-14 00:11:11'),
(4473,'notes','2603','error','Deal not found: 1753',NULL,'2025-11-14 00:11:11'),
(4474,'notes','2604','error','Deal not found: 1750',NULL,'2025-11-14 00:11:11'),
(4475,'notes','2605','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4476,'notes','2606','error','Deal not found: 1648',NULL,'2025-11-14 00:11:11'),
(4477,'notes','2607','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4478,'notes','2608','error','Deal not found: 1827',NULL,'2025-11-14 00:11:11'),
(4479,'notes','2609','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4480,'notes','2610','error','Deal not found: 1792',NULL,'2025-11-14 00:11:11'),
(4481,'notes','2611','error','Deal not found: 1703',NULL,'2025-11-14 00:11:11'),
(4482,'notes','2612','error','Deal not found: 1775',NULL,'2025-11-14 00:11:11'),
(4483,'notes','2613','error','Deal not found: 1802',NULL,'2025-11-14 00:11:11'),
(4484,'notes','2614','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4485,'notes','2615','error','Deal not found: 1778',NULL,'2025-11-14 00:11:11'),
(4486,'notes','2616','error','Deal not found: 1706',NULL,'2025-11-14 00:11:11'),
(4487,'notes','2617','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4488,'notes','2618','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4489,'notes','2619','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4490,'notes','2620','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4491,'notes','2621','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4492,'notes','2622','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4493,'notes','2623','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4494,'notes','2624','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4495,'notes','2625','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4496,'notes','2626','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4497,'notes','2627','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4498,'notes','2628','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4499,'notes','2629','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4500,'notes','2630','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4501,'notes','2631','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4502,'notes','2632','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4503,'notes','2633','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4504,'notes','2634','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4505,'notes','2635','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4506,'notes','2636','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4507,'notes','2637','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4508,'notes','2638','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4509,'notes','2639','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4510,'notes','2640','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4511,'notes','2641','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4512,'notes','2642','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4513,'notes','2643','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4514,'notes','2644','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4515,'notes','2645','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4516,'notes','2646','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4517,'notes','2647','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4518,'notes','2648','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4519,'notes','2649','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4520,'notes','2650','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4521,'notes','2651','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4522,'notes','2652','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4523,'notes','2653','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4524,'notes','2654','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4525,'notes','2655','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4526,'notes','2656','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4527,'notes','2657','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4528,'notes','2658','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4529,'notes','2659','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4530,'notes','2660','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4531,'notes','2661','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4532,'notes','2662','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4533,'notes','2663','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4534,'notes','2664','error','Deal not found: 1869',NULL,'2025-11-14 00:11:11'),
(4535,'notes','2665','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4536,'notes','2666','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4537,'notes','2667','error','Deal not found: 1872',NULL,'2025-11-14 00:11:11'),
(4538,'notes','2668','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4539,'notes','2669','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4540,'notes','2670','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4541,'notes','2671','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4542,'notes','2672','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4543,'notes','2673','error','Deal not found: 1874',NULL,'2025-11-14 00:11:11'),
(4544,'notes','2674','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4545,'notes','2675','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4546,'notes','2676','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4547,'notes','2677','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4548,'notes','2678','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4549,'notes','2679','error','Deal not found: 1880',NULL,'2025-11-14 00:11:11'),
(4550,'notes','2680','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4551,'notes','2681','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4552,'notes','2682','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4553,'notes','2683','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4554,'notes','2684','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4555,'notes','2685','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4556,'notes','2686','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4557,'notes','2687','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4558,'notes','2688','error','Deal not found: 1883',NULL,'2025-11-14 00:11:11'),
(4559,'notes','2689','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4560,'notes','2690','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4561,'notes','2691','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4562,'notes','2692','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4563,'notes','2693','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4564,'notes','2694','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4565,'notes','2695','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4566,'notes','2696','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4567,'notes','2697','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4568,'notes','2698','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4569,'notes','2699','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4570,'notes','2700','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4571,'notes','2701','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4572,'notes','2702','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4573,'notes','2703','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4574,'notes','2704','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4575,'notes','2705','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4576,'notes','2706','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4577,'notes','2707','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4578,'notes','2708','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4579,'notes','2709','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4580,'notes','2710','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4581,'notes','2711','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4582,'notes','2712','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4583,'notes','2713','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4584,'notes','2714','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4585,'notes','2715','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4586,'notes','2716','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4587,'notes','2717','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4588,'notes','2718','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4589,'notes','2719','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4590,'notes','2720','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4591,'notes','2721','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4592,'notes','2722','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4593,'notes','2723','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4594,'notes','2724','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4595,'notes','2725','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4596,'notes','2726','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4597,'notes','2727','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4598,'notes','2728','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4599,'notes','2729','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4600,'notes','2730','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4601,'notes','2731','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4602,'notes','2732','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4603,'notes','2733','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4604,'notes','2734','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4605,'notes','2737','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4606,'notes','2738','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4607,'notes','2739','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4608,'notes','2740','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4609,'notes','2741','error','Deal not found: 1689',NULL,'2025-11-14 00:11:11'),
(4610,'notes','2742','error','Deal not found: 1730',NULL,'2025-11-14 00:11:11'),
(4611,'notes','2743','error','Deal not found: 1780',NULL,'2025-11-14 00:11:11'),
(4612,'notes','2744','error','Deal not found: 1708',NULL,'2025-11-14 00:11:11'),
(4613,'notes','2745','error','Deal not found: 1699',NULL,'2025-11-14 00:11:11'),
(4614,'notes','2746','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4615,'notes','2747','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4616,'notes','2748','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4617,'notes','2749','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4618,'notes','2751','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4619,'notes','2752','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4620,'notes','2753','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4621,'notes','2754','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4622,'notes','2755','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4623,'notes','2756','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4624,'notes','2757','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4625,'notes','2758','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4626,'notes','2759','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4627,'notes','2760','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4628,'notes','2761','error','Deal not found: 1689',NULL,'2025-11-14 00:11:11'),
(4629,'notes','2762','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4630,'notes','2763','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4631,'notes','2764','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4632,'notes','2765','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4633,'notes','2766','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4634,'notes','2767','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4635,'notes','2768','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4636,'notes','2769','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4637,'notes','2770','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4638,'notes','2771','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4639,'notes','2772','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4640,'notes','2773','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4641,'notes','2774','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4642,'notes','2775','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4643,'notes','2776','error','Deal not found: 1697',NULL,'2025-11-14 00:11:11'),
(4644,'notes','2777','error','Deal not found: 1938',NULL,'2025-11-14 00:11:11'),
(4645,'notes','2778','error','Deal not found: 1943',NULL,'2025-11-14 00:11:11'),
(4646,'notes','2779','error','Deal not found: 1803',NULL,'2025-11-14 00:11:11'),
(4647,'notes','2780','error','Deal not found: 1944',NULL,'2025-11-14 00:11:11'),
(4648,'notes','2781','error','Deal not found: 1842',NULL,'2025-11-14 00:11:11'),
(4649,'notes','2782','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4650,'notes','2783','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4651,'notes','2784','error','Deal not found: 1945',NULL,'2025-11-14 00:11:11'),
(4652,'notes','2785','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4653,'notes','2786','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4654,'notes','2787','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4655,'notes','2788','error','Deal not found: 1948',NULL,'2025-11-14 00:11:11'),
(4656,'notes','2789','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4657,'notes','2790','error','Deal not found: 1686',NULL,'2025-11-14 00:11:11'),
(4658,'notes','2791','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4659,'notes','2792','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4660,'notes','2793','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4661,'notes','2794','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4662,'notes','2795','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4663,'notes','2796','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4664,'notes','2797','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4665,'notes','2798','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4666,'notes','2799','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4667,'notes','2800','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4668,'notes','2802','error','Deal not found: 1947',NULL,'2025-11-14 00:11:11'),
(4669,'notes','2803','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4670,'notes','2804','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4671,'notes','2805','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4672,'notes','2808','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4673,'notes','2809','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4674,'notes','2810','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4675,'notes','2811','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4676,'notes','2812','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4677,'notes','2813','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4678,'notes','2814','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4679,'notes','2815','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4680,'notes','2816','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4681,'notes','2817','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4682,'notes','2818','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4683,'notes','2819','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4684,'notes','2820','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4685,'notes','2821','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4686,'notes','2822','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4687,'notes','2823','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4688,'notes','2824','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4689,'notes','2825','error','Deal not found: 1951',NULL,'2025-11-14 00:11:11'),
(4690,'notes','2827','error','Deal not found: 1952',NULL,'2025-11-14 00:11:11'),
(4691,'notes','2828','error','Deal not found: 1957',NULL,'2025-11-14 00:11:11'),
(4692,'notes','2829','error','Deal not found: 1959',NULL,'2025-11-14 00:11:11'),
(4693,'notes','2830','error','Deal not found: 1958',NULL,'2025-11-14 00:11:11'),
(4694,'notes','2831','error','Deal not found: 1950',NULL,'2025-11-14 00:11:11'),
(4695,'notes','2832','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4696,'notes','2833','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4697,'notes','2835','error','Deal not found: 1958',NULL,'2025-11-14 00:11:11'),
(4698,'notes','2836','error','Deal not found: 1946',NULL,'2025-11-14 00:11:11'),
(4699,'notes','2837','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4700,'notes','2838','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4701,'notes','2839','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4702,'notes','2841','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4703,'notes','2842','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4704,'notes','2843','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4705,'notes','2844','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4706,'notes','2845','error','Deal not found: 1665',NULL,'2025-11-14 00:11:11'),
(4707,'notes','2846','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4708,'notes','2847','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4709,'notes','2848','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4710,'notes','2849','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4711,'notes','2850','error','Deal not found: 1998',NULL,'2025-11-14 00:11:11'),
(4712,'notes','2851','error','Deal not found: 1999',NULL,'2025-11-14 00:11:11'),
(4713,'notes','2852','error','Deal not found: 2001',NULL,'2025-11-14 00:11:11'),
(4714,'notes','2853','error','Deal not found: 2003',NULL,'2025-11-14 00:11:11'),
(4715,'notes','2854','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4716,'notes','2855','error','Deal not found: 2002',NULL,'2025-11-14 00:11:11'),
(4717,'notes','2856','error','Deal not found: 1996',NULL,'2025-11-14 00:11:11'),
(4718,'notes','2857','error','Deal not found: 1995',NULL,'2025-11-14 00:11:11'),
(4719,'notes','2858','error','Deal not found: 1994',NULL,'2025-11-14 00:11:11'),
(4720,'notes','2859','error','Deal not found: 1993',NULL,'2025-11-14 00:11:11'),
(4721,'notes','2860','error','Deal not found: 1992',NULL,'2025-11-14 00:11:11'),
(4722,'notes','2861','error','Deal not found: 1991',NULL,'2025-11-14 00:11:11'),
(4723,'notes','2862','error','Deal not found: 1990',NULL,'2025-11-14 00:11:11'),
(4724,'notes','2863','error','Deal not found: 1989',NULL,'2025-11-14 00:11:11'),
(4725,'notes','2864','error','Deal not found: 1987',NULL,'2025-11-14 00:11:11'),
(4726,'notes','2865','error','Deal not found: 1986',NULL,'2025-11-14 00:11:11'),
(4727,'notes','2866','error','Deal not found: 2004',NULL,'2025-11-14 00:11:11'),
(4728,'notes','2867','error','Deal not found: 2006',NULL,'2025-11-14 00:11:11'),
(4729,'notes','2868','error','Deal not found: 2007',NULL,'2025-11-14 00:11:11'),
(4730,'notes','2869','error','Deal not found: 2008',NULL,'2025-11-14 00:11:11'),
(4731,'notes','2870','error','Deal not found: 2009',NULL,'2025-11-14 00:11:11'),
(4732,'notes','2871','error','Deal not found: 2010',NULL,'2025-11-14 00:11:11'),
(4733,'notes','2872','error','Deal not found: 2011',NULL,'2025-11-14 00:11:11'),
(4734,'notes','2873','error','Deal not found: 2012',NULL,'2025-11-14 00:11:11'),
(4735,'notes','2874','error','Deal not found: 2013',NULL,'2025-11-14 00:11:11'),
(4736,'notes','2875','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4737,'notes','2876','error','Deal not found: 2015',NULL,'2025-11-14 00:11:11'),
(4738,'notes','2877','error','Deal not found: 2016',NULL,'2025-11-14 00:11:11'),
(4739,'notes','2878','error','Deal not found: 2017',NULL,'2025-11-14 00:11:11'),
(4740,'notes','2879','error','Deal not found: 2018',NULL,'2025-11-14 00:11:11'),
(4741,'notes','2880','error','Deal not found: 2019',NULL,'2025-11-14 00:11:11'),
(4742,'notes','2881','error','Deal not found: 2020',NULL,'2025-11-14 00:11:11'),
(4743,'notes','2882','error','Deal not found: 2021',NULL,'2025-11-14 00:11:11'),
(4744,'notes','2883','error','Deal not found: 2022',NULL,'2025-11-14 00:11:11'),
(4745,'notes','2884','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4746,'notes','2885','error','Deal not found: 2024',NULL,'2025-11-14 00:11:11'),
(4747,'notes','2886','error','Deal not found: 2025',NULL,'2025-11-14 00:11:11'),
(4748,'notes','2887','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4749,'notes','2888','error','Deal not found: 2027',NULL,'2025-11-14 00:11:11'),
(4750,'notes','2889','error','Deal not found: 1997',NULL,'2025-11-14 00:11:11'),
(4751,'notes','2891','error','Deal not found: 2028',NULL,'2025-11-14 00:11:11'),
(4752,'notes','2892','error','Deal not found: 2029',NULL,'2025-11-14 00:11:11'),
(4753,'notes','2893','error','Deal not found: 2030',NULL,'2025-11-14 00:11:11'),
(4754,'notes','2894','error','Deal not found: 2031',NULL,'2025-11-14 00:11:11'),
(4755,'notes','2895','error','Deal not found: 2032',NULL,'2025-11-14 00:11:11'),
(4756,'notes','2896','error','Deal not found: 2033',NULL,'2025-11-14 00:11:11'),
(4757,'notes','2897','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4758,'notes','2898','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4759,'notes','2899','error','Deal not found: 2036',NULL,'2025-11-14 00:11:11'),
(4760,'notes','2900','error','Deal not found: 2037',NULL,'2025-11-14 00:11:11'),
(4761,'notes','2901','error','Deal not found: 2038',NULL,'2025-11-14 00:11:11'),
(4762,'notes','2902','error','Deal not found: 2039',NULL,'2025-11-14 00:11:11'),
(4763,'notes','2903','error','Deal not found: 2040',NULL,'2025-11-14 00:11:11'),
(4764,'notes','2904','error','Deal not found: 2041',NULL,'2025-11-14 00:11:11'),
(4765,'notes','2905','error','Deal not found: 2042',NULL,'2025-11-14 00:11:11'),
(4766,'notes','2907','error','Deal not found: 2044',NULL,'2025-11-14 00:11:11'),
(4767,'notes','2908','error','Deal not found: 2045',NULL,'2025-11-14 00:11:11'),
(4768,'notes','2909','error','Deal not found: 2046',NULL,'2025-11-14 00:11:11'),
(4769,'notes','2910','error','Deal not found: 2047',NULL,'2025-11-14 00:11:11'),
(4770,'notes','2911','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4771,'notes','2912','error','Deal not found: 2049',NULL,'2025-11-14 00:11:11'),
(4772,'notes','2913','error','Deal not found: 1988',NULL,'2025-11-14 00:11:11'),
(4773,'notes','2915','error','Deal not found: 2050',NULL,'2025-11-14 00:11:11'),
(4774,'notes','2916','error','Deal not found: 2051',NULL,'2025-11-14 00:11:11'),
(4775,'notes','2917','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4776,'notes','2918','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4777,'notes','2919','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4778,'notes','2920','error','Deal not found: 2052',NULL,'2025-11-14 00:11:11'),
(4779,'notes','2921','error','Deal not found: 2053',NULL,'2025-11-14 00:11:11'),
(4780,'notes','2922','error','Deal not found: 2054',NULL,'2025-11-14 00:11:11'),
(4781,'notes','2923','error','Deal not found: 2055',NULL,'2025-11-14 00:11:11'),
(4782,'notes','2924','error','Deal not found: 2056',NULL,'2025-11-14 00:11:11'),
(4783,'notes','2925','error','Deal not found: 2057',NULL,'2025-11-14 00:11:11'),
(4784,'notes','2926','error','Deal not found: 2058',NULL,'2025-11-14 00:11:11'),
(4785,'notes','2927','error','Deal not found: 2059',NULL,'2025-11-14 00:11:11'),
(4786,'notes','2928','error','Deal not found: 2060',NULL,'2025-11-14 00:11:11'),
(4787,'notes','2929','error','Deal not found: 2061',NULL,'2025-11-14 00:11:11'),
(4788,'notes','2930','error','Deal not found: 2062',NULL,'2025-11-14 00:11:11'),
(4789,'notes','2931','error','Deal not found: 2063',NULL,'2025-11-14 00:11:11'),
(4790,'notes','2932','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4791,'notes','2933','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4792,'notes','2934','error','Deal not found: 2064',NULL,'2025-11-14 00:11:11'),
(4793,'notes','2935','error','Deal not found: 2065',NULL,'2025-11-14 00:11:11'),
(4794,'notes','2936','error','Deal not found: 2066',NULL,'2025-11-14 00:11:11'),
(4795,'notes','2937','error','Deal not found: 2067',NULL,'2025-11-14 00:11:11'),
(4796,'notes','2938','error','Deal not found: 2068',NULL,'2025-11-14 00:11:11'),
(4797,'notes','2939','error','Deal not found: 2069',NULL,'2025-11-14 00:11:11'),
(4798,'notes','2940','error','Deal not found: 2070',NULL,'2025-11-14 00:11:11'),
(4799,'notes','2941','error','Deal not found: 2071',NULL,'2025-11-14 00:11:11'),
(4800,'notes','2942','error','Deal not found: 2072',NULL,'2025-11-14 00:11:11'),
(4801,'notes','2943','error','Deal not found: 2073',NULL,'2025-11-14 00:11:11'),
(4802,'notes','2944','error','Deal not found: 2074',NULL,'2025-11-14 00:11:11'),
(4803,'notes','2945','error','Deal not found: 2075',NULL,'2025-11-14 00:11:11'),
(4804,'notes','2946','error','Deal not found: 2076',NULL,'2025-11-14 00:11:11'),
(4805,'notes','2947','error','Deal not found: 2077',NULL,'2025-11-14 00:11:11'),
(4806,'notes','2948','error','Deal not found: 2078',NULL,'2025-11-14 00:11:11'),
(4807,'notes','2949','error','Deal not found: 2079',NULL,'2025-11-14 00:11:11'),
(4808,'notes','2950','error','Deal not found: 2080',NULL,'2025-11-14 00:11:11'),
(4809,'notes','2951','error','Deal not found: 2081',NULL,'2025-11-14 00:11:11'),
(4810,'notes','2952','error','Deal not found: 2082',NULL,'2025-11-14 00:11:11'),
(4811,'notes','2953','error','Deal not found: 2083',NULL,'2025-11-14 00:11:11'),
(4812,'notes','2954','error','Deal not found: 2084',NULL,'2025-11-14 00:11:11'),
(4813,'notes','2955','error','Deal not found: 2085',NULL,'2025-11-14 00:11:11'),
(4814,'notes','2956','error','Deal not found: 2086',NULL,'2025-11-14 00:11:11'),
(4815,'notes','2957','error','Deal not found: 2087',NULL,'2025-11-14 00:11:11'),
(4816,'notes','2958','error','Deal not found: 2088',NULL,'2025-11-14 00:11:11'),
(4817,'notes','2959','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4818,'notes','2960','error','Deal not found: 2089',NULL,'2025-11-14 00:11:11'),
(4819,'notes','2961','error','Deal not found: 2090',NULL,'2025-11-14 00:11:11'),
(4820,'notes','2962','error','Deal not found: 2091',NULL,'2025-11-14 00:11:11'),
(4821,'notes','2963','error','Deal not found: 2092',NULL,'2025-11-14 00:11:11'),
(4822,'notes','2964','error','Deal not found: 2093',NULL,'2025-11-14 00:11:11'),
(4823,'notes','2965','error','Deal not found: 2094',NULL,'2025-11-14 00:11:11'),
(4824,'notes','2966','error','Deal not found: 2095',NULL,'2025-11-14 00:11:11'),
(4825,'notes','2967','error','Deal not found: 2096',NULL,'2025-11-14 00:11:11'),
(4826,'notes','2968','error','Deal not found: 2097',NULL,'2025-11-14 00:11:11'),
(4827,'notes','2969','error','Deal not found: 2098',NULL,'2025-11-14 00:11:11'),
(4828,'notes','2970','error','Deal not found: 2099',NULL,'2025-11-14 00:11:11'),
(4829,'notes','2971','error','Deal not found: 2100',NULL,'2025-11-14 00:11:11'),
(4830,'notes','2972','error','Deal not found: 2101',NULL,'2025-11-14 00:11:11'),
(4831,'notes','2973','error','Deal not found: 2102',NULL,'2025-11-14 00:11:11'),
(4832,'notes','2974','error','Deal not found: 2103',NULL,'2025-11-14 00:11:11'),
(4833,'notes','2975','error','Deal not found: 2104',NULL,'2025-11-14 00:11:11'),
(4834,'notes','2976','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4835,'notes','2977','error','Deal not found: 2106',NULL,'2025-11-14 00:11:11'),
(4836,'notes','2978','error','Deal not found: 2107',NULL,'2025-11-14 00:11:11'),
(4837,'notes','2979','error','Deal not found: 2108',NULL,'2025-11-14 00:11:11'),
(4838,'notes','2980','error','Deal not found: 2109',NULL,'2025-11-14 00:11:11'),
(4839,'notes','2981','error','Deal not found: 2110',NULL,'2025-11-14 00:11:11'),
(4840,'notes','2982','error','Deal not found: 2111',NULL,'2025-11-14 00:11:11'),
(4841,'notes','2983','error','Deal not found: 2112',NULL,'2025-11-14 00:11:11'),
(4842,'notes','2984','error','Deal not found: 2113',NULL,'2025-11-14 00:11:11'),
(4843,'notes','2985','error','Deal not found: 2114',NULL,'2025-11-14 00:11:11'),
(4844,'notes','2986','error','Deal not found: 2115',NULL,'2025-11-14 00:11:11'),
(4845,'notes','2987','error','Deal not found: 2116',NULL,'2025-11-14 00:11:11'),
(4846,'notes','2988','error','Deal not found: 2117',NULL,'2025-11-14 00:11:11'),
(4847,'notes','2989','error','Deal not found: 2043',NULL,'2025-11-14 00:11:11'),
(4848,'notes','2990','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4849,'notes','2991','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4850,'notes','2992','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4851,'notes','2993','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4852,'notes','2994','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4853,'notes','2995','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4854,'notes','2996','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4855,'notes','2997','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4856,'notes','2998','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4857,'notes','2999','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4858,'notes','3000','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4859,'notes','3001','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4860,'notes','3002','error','Deal not found: 1955',NULL,'2025-11-14 00:11:11'),
(4861,'notes','3003','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4862,'notes','3004','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4863,'notes','3005','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4864,'notes','3006','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4865,'notes','3007','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4866,'notes','3008','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4867,'notes','3009','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4868,'notes','3010','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4869,'notes','3011','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4870,'notes','3012','error','Deal not found: 1997',NULL,'2025-11-14 00:11:11'),
(4871,'notes','3013','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4872,'notes','3014','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4873,'notes','3015','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4874,'notes','3016','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4875,'notes','3017','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4876,'notes','3018','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4877,'notes','3019','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4878,'notes','3020','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4879,'notes','3021','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4880,'notes','3022','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4881,'notes','3023','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4882,'notes','3024','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4883,'notes','3025','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4884,'notes','3026','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4885,'notes','3027','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4886,'notes','3028','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4887,'notes','3029','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4888,'notes','3030','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4889,'notes','3031','error','Deal not found: 2131',NULL,'2025-11-14 00:11:11'),
(4890,'notes','3032','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4891,'notes','3033','error','Deal not found: 2133',NULL,'2025-11-14 00:11:11'),
(4892,'notes','3034','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4893,'notes','3035','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4894,'notes','3036','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4895,'notes','3037','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4896,'notes','3038','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4897,'notes','3039','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4898,'notes','3040','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4899,'notes','3041','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4900,'notes','3042','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4901,'notes','3043','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4902,'notes','3044','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4903,'notes','3045','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4904,'notes','3046','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4905,'notes','3047','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4906,'notes','3048','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4907,'notes','3049','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4908,'notes','3050','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4909,'notes','3051','error','Deal not found: 1951',NULL,'2025-11-14 00:11:11'),
(4910,'notes','3052','error','Deal not found: 1970',NULL,'2025-11-14 00:11:11'),
(4911,'notes','3053','error','Deal not found: 1966',NULL,'2025-11-14 00:11:11'),
(4912,'notes','3054','error','Deal not found: 1943',NULL,'2025-11-14 00:11:11'),
(4913,'notes','3055','error','Deal not found: 1997',NULL,'2025-11-14 00:11:11'),
(4914,'notes','3056','error','Deal not found: 1997',NULL,'2025-11-14 00:11:11'),
(4915,'notes','3057','error','Deal not found: 2000',NULL,'2025-11-14 00:11:11'),
(4916,'notes','3058','error','Deal not found: 2000',NULL,'2025-11-14 00:11:11'),
(4917,'notes','3059','error','Deal not found: 2131',NULL,'2025-11-14 00:11:11'),
(4918,'notes','3060','error','Deal not found: 2131',NULL,'2025-11-14 00:11:11'),
(4919,'notes','3061','error','Deal not found: 1952',NULL,'2025-11-14 00:11:11'),
(4920,'notes','3062','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4921,'notes','3063','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4922,'notes','3064','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4923,'notes','3065','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4924,'notes','3066','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4925,'notes','3067','error','Deal not found: 2141',NULL,'2025-11-14 00:11:11'),
(4926,'notes','3068','error','Deal not found: 2140',NULL,'2025-11-14 00:11:11'),
(4927,'notes','3069','error','Deal not found: 2145',NULL,'2025-11-14 00:11:11'),
(4928,'notes','3070','error','Deal not found: 2147',NULL,'2025-11-14 00:11:11'),
(4929,'notes','3071','error','Deal not found: 2150',NULL,'2025-11-14 00:11:11'),
(4930,'notes','3072','error','Deal not found: 2141',NULL,'2025-11-14 00:11:11'),
(4931,'notes','3073','error','Deal not found: 2127',NULL,'2025-11-14 00:11:11'),
(4932,'notes','3074','error','Deal not found: 2147',NULL,'2025-11-14 00:11:11'),
(4933,'notes','3075','error','Deal not found: 2151',NULL,'2025-11-14 00:11:11'),
(4934,'notes','3076','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4935,'notes','3077','error','Deal not found: 2152',NULL,'2025-11-14 00:11:11'),
(4936,'notes','3078','error','Deal not found: 2150',NULL,'2025-11-14 00:11:11'),
(4937,'notes','3079','error','Deal not found: 2156',NULL,'2025-11-14 00:11:11'),
(4938,'notes','3080','error','Deal not found: 2156',NULL,'2025-11-14 00:11:11'),
(4939,'notes','3081','error','Deal not found: 2159',NULL,'2025-11-14 00:11:11'),
(4940,'notes','3082','error','Deal not found: 2159',NULL,'2025-11-14 00:11:11'),
(4941,'notes','3083','error','Deal not found: 2160',NULL,'2025-11-14 00:11:11'),
(4942,'notes','3084','error','Deal not found: 2160',NULL,'2025-11-14 00:11:11'),
(4943,'notes','3085','error','Deal not found: 2160',NULL,'2025-11-14 00:11:11'),
(4944,'notes','3086','error','Deal not found: 2147',NULL,'2025-11-14 00:11:11'),
(4945,'notes','3087','error','Deal not found: 2140',NULL,'2025-11-14 00:11:11'),
(4946,'notes','3088','error','Deal not found: 2169',NULL,'2025-11-14 00:11:11'),
(4947,'notes','3089','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4948,'notes','3090','error','Deal not found: 1773',NULL,'2025-11-14 00:11:11'),
(4949,'notes','3091','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4950,'files','4171','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(4951,'files','15076','error','Deal not found: 7',NULL,'2025-11-14 00:11:14'),
(4952,'files','15077','error','Deal not found: 7',NULL,'2025-11-14 00:11:14'),
(4953,'files','15133','error','Deal not found: 4',NULL,'2025-11-14 00:11:14'),
(4954,'files','15195','error','Deal not found: 12',NULL,'2025-11-14 00:11:14'),
(4955,'files','15196','error','Deal not found: 12',NULL,'2025-11-14 00:11:14'),
(4956,'files','15197','error','Deal not found: 12',NULL,'2025-11-14 00:11:14'),
(4957,'files','15313','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(4958,'files','15314','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(4959,'files','15315','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(4960,'files','15316','error','Deal not found: 14',NULL,'2025-11-14 00:11:14'),
(4961,'files','15393','error','Deal not found: 15',NULL,'2025-11-14 00:11:14'),
(4962,'files','15394','error','Deal not found: 15',NULL,'2025-11-14 00:11:14'),
(4963,'files','15395','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(4964,'files','15396','error','Deal not found: 17',NULL,'2025-11-14 00:11:14'),
(4965,'files','15397','error','Deal not found: 17',NULL,'2025-11-14 00:11:14'),
(4966,'files','15398','error','Deal not found: 17',NULL,'2025-11-14 00:11:14'),
(4967,'files','15399','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(4968,'files','15400','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(4969,'files','15401','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(4970,'files','15884','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(4971,'files','15885','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(4972,'files','15886','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(4973,'files','15887','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(4974,'files','15888','error','Deal not found: 19',NULL,'2025-11-14 00:11:14'),
(4975,'files','15889','error','Deal not found: 19',NULL,'2025-11-14 00:11:14'),
(4976,'files','15890','error','Deal not found: 19',NULL,'2025-11-14 00:11:14'),
(4977,'files','15891','error','Deal not found: 19',NULL,'2025-11-14 00:11:14'),
(4978,'files','15892','error','Deal not found: 19',NULL,'2025-11-14 00:11:14'),
(4979,'files','15893','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(4980,'files','15894','error','Deal not found: 21',NULL,'2025-11-14 00:11:14'),
(4981,'files','15895','error','Deal not found: 21',NULL,'2025-11-14 00:11:14'),
(4982,'files','15899','error','Deal not found: 22',NULL,'2025-11-14 00:11:14'),
(4983,'files','15922','error','Deal not found: 23',NULL,'2025-11-14 00:11:14'),
(4984,'files','15923','error','Deal not found: 23',NULL,'2025-11-14 00:11:14'),
(4985,'files','16851','error','Deal not found: 33',NULL,'2025-11-14 00:11:14'),
(4986,'files','16852','error','Deal not found: 33',NULL,'2025-11-14 00:11:14'),
(4987,'files','16853','error','Deal not found: 33',NULL,'2025-11-14 00:11:14'),
(4988,'files','16854','error','Deal not found: 53',NULL,'2025-11-14 00:11:14'),
(4989,'files','16855','error','Deal not found: 53',NULL,'2025-11-14 00:11:14'),
(4990,'files','16856','error','Deal not found: 52',NULL,'2025-11-14 00:11:14'),
(4991,'files','16857','error','Deal not found: 52',NULL,'2025-11-14 00:11:14'),
(4992,'files','16858','error','Deal not found: 52',NULL,'2025-11-14 00:11:14'),
(4993,'files','16859','error','Deal not found: 1724',NULL,'2025-11-14 00:11:14'),
(4994,'files','16982','error','Deal not found: 50',NULL,'2025-11-14 00:11:14'),
(4995,'files','16983','error','Deal not found: 50',NULL,'2025-11-14 00:11:14'),
(4996,'files','16984','error','Deal not found: 50',NULL,'2025-11-14 00:11:14'),
(4997,'files','18605','error','Deal not found: 55',NULL,'2025-11-14 00:11:14'),
(4998,'files','18606','error','Deal not found: 55',NULL,'2025-11-14 00:11:14'),
(4999,'files','18607','error','Deal not found: 55',NULL,'2025-11-14 00:11:14'),
(5000,'files','21448','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5001,'files','21449','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5002,'files','21450','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5003,'files','21451','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5004,'files','21452','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5005,'files','21453','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5006,'files','21454','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5007,'files','21455','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5008,'files','21456','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5009,'files','21457','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5010,'files','21459','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5011,'files','21460','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5012,'files','21461','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5013,'files','21462','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5014,'files','21463','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5015,'files','21464','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5016,'files','21465','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5017,'files','21466','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5018,'files','21467','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5019,'files','21468','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5020,'files','21469','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5021,'files','21472','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5022,'files','21473','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5023,'files','21474','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5024,'files','21475','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5025,'files','21476','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5026,'files','21477','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5027,'files','21478','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5028,'files','21479','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5029,'files','21480','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5030,'files','21481','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5031,'files','21482','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5032,'files','21483','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5033,'files','21484','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5034,'files','21485','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5035,'files','21486','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5036,'files','21487','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5037,'files','21488','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5038,'files','21489','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5039,'files','21490','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5040,'files','21491','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5041,'files','21492','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5042,'files','21494','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5043,'files','21495','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5044,'files','21496','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5045,'files','21497','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5046,'files','21498','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5047,'files','21499','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5048,'files','21500','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5049,'files','21501','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5050,'files','21502','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5051,'files','21503','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5052,'files','21504','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5053,'files','21505','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5054,'files','21506','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5055,'files','21507','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5056,'files','21508','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5057,'files','21509','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5058,'files','21510','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5059,'files','21511','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5060,'files','21512','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5061,'files','21513','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5062,'files','21514','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5063,'files','21515','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5064,'files','21516','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5065,'files','21517','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5066,'files','21518','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5067,'files','21519','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5068,'files','21520','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5069,'files','21521','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5070,'files','21522','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5071,'files','21523','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5072,'files','21524','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5073,'files','21525','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5074,'files','21526','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5075,'files','21527','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5076,'files','21528','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5077,'files','21529','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5078,'files','21530','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5079,'files','21531','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5080,'files','21532','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5081,'files','21533','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5082,'files','21534','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5083,'files','21535','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5084,'files','21536','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5085,'files','21537','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5086,'files','21538','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5087,'files','21539','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5088,'files','21540','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5089,'files','21541','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5090,'files','21542','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5091,'files','21543','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5092,'files','21544','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5093,'files','21545','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5094,'files','21546','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5095,'files','21547','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5096,'files','21548','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5097,'files','21549','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5098,'files','21550','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5099,'files','21551','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5100,'files','21552','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5101,'files','21553','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5102,'files','21555','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5103,'files','21556','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5104,'files','21557','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5105,'files','21558','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5106,'files','21559','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5107,'files','21560','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5108,'files','21561','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5109,'files','21562','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5110,'files','21563','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5111,'files','21564','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5112,'files','21565','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5113,'files','21566','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5114,'files','21567','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5115,'files','21568','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5116,'files','21569','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5117,'files','21570','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5118,'files','21571','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5119,'files','21574','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5120,'files','21575','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5121,'files','21577','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5122,'files','21578','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5123,'files','21579','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5124,'files','21580','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5125,'files','21581','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5126,'files','21582','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5127,'files','21583','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5128,'files','21584','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5129,'files','21585','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5130,'files','21586','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5131,'files','21587','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5132,'files','21588','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5133,'files','21589','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5134,'files','21590','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5135,'files','21591','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5136,'files','21592','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5137,'files','21593','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5138,'files','21594','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5139,'files','21595','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5140,'files','21596','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5141,'files','21597','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5142,'files','21598','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5143,'files','21599','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5144,'files','21601','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5145,'files','21602','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5146,'files','21603','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5147,'files','21604','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5148,'files','21605','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5149,'files','21606','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5150,'files','21607','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5151,'files','21608','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5152,'files','21609','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5153,'files','21610','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5154,'files','21611','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5155,'files','21612','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5156,'files','21613','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5157,'files','21614','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5158,'files','21615','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5159,'files','21616','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5160,'files','21617','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5161,'files','21618','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5162,'files','21619','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5163,'files','21620','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5164,'files','21621','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5165,'files','21622','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5166,'files','21623','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5167,'files','21624','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5168,'files','21625','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5169,'files','21626','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5170,'files','21627','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5171,'files','21628','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5172,'files','21629','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5173,'files','21630','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5174,'files','21631','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5175,'files','21632','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5176,'files','21633','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5177,'files','21636','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5178,'files','21637','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5179,'files','21638','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5180,'files','21639','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5181,'files','21640','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5182,'files','21641','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5183,'files','21642','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5184,'files','21643','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5185,'files','21644','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5186,'files','21645','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5187,'files','21646','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5188,'files','21647','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5189,'files','21648','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5190,'files','21649','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5191,'files','21650','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5192,'files','21651','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5193,'files','21652','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5194,'files','21653','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5195,'files','21654','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5196,'files','21655','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5197,'files','21656','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5198,'files','21657','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5199,'files','21658','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5200,'files','21659','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5201,'files','21660','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5202,'files','21661','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5203,'files','21662','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5204,'files','21663','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5205,'files','21664','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5206,'files','21665','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5207,'files','21666','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5208,'files','21667','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5209,'files','21668','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5210,'files','21669','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5211,'files','21670','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5212,'files','21671','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5213,'files','21672','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5214,'files','21673','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5215,'files','21674','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5216,'files','21675','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5217,'files','21676','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5218,'files','21677','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5219,'files','21678','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5220,'files','21679','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5221,'files','21680','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5222,'files','21682','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5223,'files','21683','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5224,'files','21684','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5225,'files','21685','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5226,'files','21686','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5227,'files','21687','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5228,'files','21688','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5229,'files','21689','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5230,'files','21690','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5231,'files','21691','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5232,'files','21692','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5233,'files','21693','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5234,'files','21694','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5235,'files','21695','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5236,'files','21696','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5237,'files','21697','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5238,'files','21698','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5239,'files','21699','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5240,'files','21700','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5241,'files','21701','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5242,'files','21702','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5243,'files','21703','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5244,'files','21704','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5245,'files','21705','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5246,'files','21706','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5247,'files','21707','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5248,'files','21708','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5249,'files','21709','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5250,'files','21710','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5251,'files','21712','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5252,'files','21713','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5253,'files','21714','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5254,'files','21715','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5255,'files','21716','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5256,'files','21717','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5257,'files','21719','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5258,'files','21720','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5259,'files','21721','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5260,'files','21722','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5261,'files','21723','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5262,'files','21724','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5263,'files','21725','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5264,'files','21726','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5265,'files','21727','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5266,'files','21728','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5267,'files','21729','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5268,'files','21730','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5269,'files','21731','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5270,'files','21732','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5271,'files','21733','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5272,'files','21734','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5273,'files','21735','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5274,'files','21736','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5275,'files','21737','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5276,'files','21738','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5277,'files','21739','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5278,'files','21740','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5279,'files','21741','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5280,'files','21742','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5281,'files','21743','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5282,'files','21744','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5283,'files','21745','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5284,'files','21746','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5285,'files','21747','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5286,'files','21748','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5287,'files','21749','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5288,'files','21750','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5289,'files','21751','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5290,'files','21752','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5291,'files','21753','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5292,'files','21754','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5293,'files','21755','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5294,'files','21756','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5295,'files','21757','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5296,'files','21758','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5297,'files','21759','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5298,'files','21760','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5299,'files','21761','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5300,'files','21762','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5301,'files','21763','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5302,'files','21764','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5303,'files','21765','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5304,'files','21766','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5305,'files','21767','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5306,'files','21768','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5307,'files','21769','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5308,'files','21770','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5309,'files','21771','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5310,'files','21772','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5311,'files','21773','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5312,'files','21774','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5313,'files','21775','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5314,'files','21776','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5315,'files','21777','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5316,'files','21778','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5317,'files','21779','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5318,'files','21780','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5319,'files','21781','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5320,'files','21782','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5321,'files','21783','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5322,'files','21784','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5323,'files','21785','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5324,'files','21786','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5325,'files','21787','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5326,'files','21788','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5327,'files','21789','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5328,'files','21790','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5329,'files','21791','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5330,'files','21792','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5331,'files','21793','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5332,'files','21794','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5333,'files','21795','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5334,'files','21796','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5335,'files','21797','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5336,'files','21798','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5337,'files','21799','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5338,'files','21800','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5339,'files','21801','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5340,'files','21802','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5341,'files','21803','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5342,'files','21804','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5343,'files','21805','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5344,'files','21806','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5345,'files','21807','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5346,'files','21808','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5347,'files','21809','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5348,'files','21810','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5349,'files','21811','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5350,'files','21812','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5351,'files','21813','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5352,'files','21814','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5353,'files','21815','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5354,'files','21816','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5355,'files','21817','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5356,'files','21818','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5357,'files','21819','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5358,'files','21820','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5359,'files','21821','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5360,'files','21822','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5361,'files','21823','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5362,'files','21824','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5363,'files','21825','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5364,'files','21826','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5365,'files','21827','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5366,'files','21828','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5367,'files','21829','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5368,'files','21830','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5369,'files','21831','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5370,'files','21832','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5371,'files','21833','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5372,'files','21834','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5373,'files','21835','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5374,'files','21836','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5375,'files','21837','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5376,'files','21838','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5377,'files','21839','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5378,'files','21840','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5379,'files','21841','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5380,'files','21842','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5381,'files','21843','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5382,'files','21844','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5383,'files','21845','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5384,'files','21846','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5385,'files','21847','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5386,'files','21848','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5387,'files','21849','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5388,'files','21850','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5389,'files','21851','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5390,'files','21852','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5391,'files','21853','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5392,'files','21854','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5393,'files','21855','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5394,'files','21856','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5395,'files','21857','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5396,'files','21858','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5397,'files','21859','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5398,'files','21860','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5399,'files','21861','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5400,'files','21862','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5401,'files','21863','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5402,'files','21864','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5403,'files','21865','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5404,'files','21866','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5405,'files','21867','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5406,'files','21868','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5407,'files','21869','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5408,'files','21870','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5409,'files','21871','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5410,'files','21872','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5411,'files','21873','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5412,'files','21874','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5413,'files','21875','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5414,'files','21876','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5415,'files','21877','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5416,'files','21878','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5417,'files','21879','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5418,'files','21880','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5419,'files','21881','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5420,'files','21882','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5421,'files','21883','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5422,'files','21884','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5423,'files','21885','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5424,'files','21886','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5425,'files','21887','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5426,'files','21888','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5427,'files','21889','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5428,'files','21890','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5429,'files','21891','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5430,'files','21892','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5431,'files','21893','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5432,'files','21894','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5433,'files','21895','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5434,'files','21896','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5435,'files','21897','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5436,'files','21898','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5437,'files','21899','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5438,'files','21900','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5439,'files','21901','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5440,'files','21902','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5441,'files','21903','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5442,'files','21904','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5443,'files','21905','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5444,'files','21906','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5445,'files','21907','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5446,'files','21908','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5447,'files','21909','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5448,'files','21910','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5449,'files','21911','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5450,'files','21912','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5451,'files','21913','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5452,'files','21914','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5453,'files','21915','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5454,'files','21916','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5455,'files','21917','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5456,'files','21918','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5457,'files','21919','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5458,'files','21920','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5459,'files','21921','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5460,'files','21922','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5461,'files','21923','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5462,'files','21924','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5463,'files','21925','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5464,'files','21926','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5465,'files','21927','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5466,'files','21928','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5467,'files','21929','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5468,'files','21930','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5469,'files','21931','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5470,'files','21932','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5471,'files','21933','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5472,'files','21934','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5473,'files','21935','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5474,'files','21936','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5475,'files','21937','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5476,'files','21938','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5477,'files','21939','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5478,'files','21940','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5479,'files','21941','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5480,'files','21942','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5481,'files','21943','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5482,'files','21944','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5483,'files','21945','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5484,'files','21946','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5485,'files','21947','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5486,'files','21948','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5487,'files','21949','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5488,'files','21950','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5489,'files','21951','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5490,'files','21952','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5491,'files','21953','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5492,'files','21954','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5493,'files','21956','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5494,'files','21957','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5495,'files','21958','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5496,'files','21959','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5497,'files','21960','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5498,'files','21961','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5499,'files','21962','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5500,'files','21963','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5501,'files','21964','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5502,'files','21965','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5503,'files','21966','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5504,'files','21967','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5505,'files','21968','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5506,'files','21969','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5507,'files','21970','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5508,'files','21971','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5509,'files','21972','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5510,'files','21973','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5511,'files','21974','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5512,'files','21975','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5513,'files','21976','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5514,'files','21977','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5515,'files','21978','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5516,'files','21979','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5517,'files','21980','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5518,'files','21981','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5519,'files','21982','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5520,'files','21983','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5521,'files','21984','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5522,'files','21985','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5523,'files','21986','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5524,'files','21987','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5525,'files','21988','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5526,'files','21989','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5527,'files','21990','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5528,'files','21991','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5529,'files','21992','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5530,'files','21993','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5531,'files','21994','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5532,'files','21995','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5533,'files','21996','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5534,'files','21997','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5535,'files','21998','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5536,'files','21999','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5537,'files','22000','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5538,'files','22001','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5539,'files','22002','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5540,'files','22003','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5541,'files','22004','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5542,'files','22005','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5543,'files','22006','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5544,'files','22007','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5545,'files','22008','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5546,'files','22009','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5547,'files','22010','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5548,'files','22011','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5549,'files','22012','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5550,'files','22013','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5551,'files','22014','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5552,'files','22015','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5553,'files','22016','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5554,'files','22017','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5555,'files','22018','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5556,'files','22019','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5557,'files','22020','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5558,'files','22021','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5559,'files','22022','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5560,'files','22023','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5561,'files','22024','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5562,'files','22025','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5563,'files','22026','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5564,'files','22027','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5565,'files','22028','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5566,'files','22029','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5567,'files','22030','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5568,'files','22031','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5569,'files','22032','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5570,'files','22033','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5571,'files','22034','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5572,'files','22035','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5573,'files','22036','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5574,'files','22037','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5575,'files','22038','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5576,'files','22039','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5577,'files','22040','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5578,'files','22041','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5579,'files','22042','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5580,'files','22043','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5581,'files','22044','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5582,'files','22045','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5583,'files','22046','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5584,'files','22047','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5585,'files','22048','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5586,'files','22049','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5587,'files','22050','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5588,'files','22051','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5589,'files','22052','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5590,'files','22053','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5591,'files','22054','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5592,'files','22055','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5593,'files','22056','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5594,'files','22057','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5595,'files','22058','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5596,'files','22059','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5597,'files','22060','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5598,'files','22061','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5599,'files','22062','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5600,'files','22063','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5601,'files','22064','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5602,'files','22065','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5603,'files','22066','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5604,'files','22067','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5605,'files','22068','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5606,'files','22069','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5607,'files','22070','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5608,'files','22071','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5609,'files','22072','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5610,'files','22073','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5611,'files','22074','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5612,'files','22075','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5613,'files','22076','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5614,'files','22077','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5615,'files','22078','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5616,'files','22079','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5617,'files','22080','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5618,'files','22081','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5619,'files','22082','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5620,'files','22083','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5621,'files','22084','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5622,'files','22085','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5623,'files','22086','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5624,'files','22087','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5625,'files','22088','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5626,'files','22089','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5627,'files','22090','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5628,'files','22091','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5629,'files','22092','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5630,'files','22093','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5631,'files','22094','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5632,'files','22095','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5633,'files','22096','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5634,'files','22097','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5635,'files','22098','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5636,'files','22099','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5637,'files','22100','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5638,'files','22101','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5639,'files','22102','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5640,'files','22103','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5641,'files','22104','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5642,'files','22105','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5643,'files','22106','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5644,'files','22107','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5645,'files','22108','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5646,'files','22109','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5647,'files','22110','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5648,'files','22111','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5649,'files','22112','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5650,'files','22113','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5651,'files','22114','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5652,'files','22116','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5653,'files','22117','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5654,'files','22118','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5655,'files','22119','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5656,'files','22120','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5657,'files','22121','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5658,'files','22122','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5659,'files','22123','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5660,'files','22124','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5661,'files','22125','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5662,'files','22126','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5663,'files','22127','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5664,'files','22128','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5665,'files','22129','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5666,'files','22130','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5667,'files','22132','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5668,'files','22133','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5669,'files','22134','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5670,'files','22135','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5671,'files','22136','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5672,'files','22137','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5673,'files','22138','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5674,'files','22139','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5675,'files','22140','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5676,'files','22141','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5677,'files','22142','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5678,'files','22143','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5679,'files','22144','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5680,'files','22145','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5681,'files','22146','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5682,'files','22147','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5683,'files','22148','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5684,'files','22149','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5685,'files','22150','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5686,'files','22151','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5687,'files','22152','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5688,'files','22153','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5689,'files','22154','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5690,'files','22155','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5691,'files','22156','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5692,'files','22157','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5693,'files','22158','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5694,'files','22159','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5695,'files','22160','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5696,'files','22161','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5697,'files','22162','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5698,'files','22163','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5699,'files','22164','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5700,'files','22165','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5701,'files','22166','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5702,'files','22167','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5703,'files','22168','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5704,'files','22169','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5705,'files','22170','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5706,'files','22171','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5707,'files','22172','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5708,'files','22173','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5709,'files','22174','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5710,'files','22175','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5711,'files','22176','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5712,'files','22177','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5713,'files','22178','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5714,'files','22179','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5715,'files','22180','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5716,'files','22181','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5717,'files','22182','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5718,'files','22183','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5719,'files','22184','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5720,'files','22185','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5721,'files','22186','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5722,'files','22187','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5723,'files','22188','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5724,'files','22189','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5725,'files','22190','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5726,'files','22191','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5727,'files','22192','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5728,'files','22193','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5729,'files','22194','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5730,'files','22195','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5731,'files','22196','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5732,'files','22197','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5733,'files','22198','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5734,'files','22199','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5735,'files','22200','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5736,'files','22201','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5737,'files','22202','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5738,'files','22203','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5739,'files','22204','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5740,'files','22205','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5741,'files','22206','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5742,'files','22207','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5743,'files','22208','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5744,'files','22209','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5745,'files','22210','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5746,'files','22211','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5747,'files','22212','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5748,'files','22213','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5749,'files','22214','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5750,'files','22215','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5751,'files','22216','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5752,'files','22217','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5753,'files','22218','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5754,'files','22219','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5755,'files','22220','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5756,'files','22221','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5757,'files','22222','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5758,'files','22223','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5759,'files','22224','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5760,'files','22225','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5761,'files','22226','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5762,'files','22227','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5763,'files','22228','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5764,'files','22229','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5765,'files','22230','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5766,'files','22231','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5767,'files','22232','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5768,'files','22233','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5769,'files','22234','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5770,'files','22235','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5771,'files','22236','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5772,'files','22238','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5773,'files','22239','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5774,'files','22240','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5775,'files','22241','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5776,'files','22242','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5777,'files','22243','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5778,'files','22244','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5779,'files','22245','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5780,'files','22246','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5781,'files','22247','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5782,'files','22248','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5783,'files','22249','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5784,'files','22250','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5785,'files','22251','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5786,'files','22252','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5787,'files','22253','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5788,'files','22254','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5789,'files','22255','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5790,'files','22256','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5791,'files','22257','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5792,'files','22258','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5793,'files','22259','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5794,'files','22260','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5795,'files','22261','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5796,'files','22262','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5797,'files','22263','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5798,'files','22264','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5799,'files','22265','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5800,'files','22266','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5801,'files','22267','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5802,'files','22268','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5803,'files','22269','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5804,'files','22270','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5805,'files','22271','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5806,'files','22272','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5807,'files','22273','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5808,'files','22274','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5809,'files','22275','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5810,'files','22276','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5811,'files','22277','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5812,'files','22278','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5813,'files','22279','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5814,'files','22280','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5815,'files','22281','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5816,'files','22282','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5817,'files','22283','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5818,'files','22284','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5819,'files','22285','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5820,'files','22286','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5821,'files','22287','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5822,'files','22288','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5823,'files','22289','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5824,'files','22290','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5825,'files','22291','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5826,'files','22292','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5827,'files','22293','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5828,'files','22294','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5829,'files','22295','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5830,'files','22296','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5831,'files','22297','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5832,'files','22298','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5833,'files','22299','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5834,'files','22300','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5835,'files','22301','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5836,'files','22302','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5837,'files','22303','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5838,'files','22304','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5839,'files','22305','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5840,'files','22306','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5841,'files','22307','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5842,'files','22308','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5843,'files','22309','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5844,'files','22310','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5845,'files','22311','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5846,'files','22312','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5847,'files','22313','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5848,'files','22314','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5849,'files','22315','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5850,'files','22316','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5851,'files','22317','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5852,'files','22318','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5853,'files','22319','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5854,'files','22320','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5855,'files','22321','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5856,'files','22322','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5857,'files','22323','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5858,'files','22324','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5859,'files','22325','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5860,'files','22326','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5861,'files','22327','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5862,'files','22328','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5863,'files','22329','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5864,'files','22330','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5865,'files','22331','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5866,'files','22332','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5867,'files','22333','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5868,'files','22334','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5869,'files','22335','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5870,'files','22336','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5871,'files','22337','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5872,'files','22338','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5873,'files','22339','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5874,'files','22340','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5875,'files','22341','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5876,'files','22342','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5877,'files','22343','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5878,'files','22344','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5879,'files','22345','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5880,'files','22346','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5881,'files','22347','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5882,'files','22348','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5883,'files','22349','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5884,'files','22350','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5885,'files','22351','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5886,'files','22352','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5887,'files','22353','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5888,'files','22354','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5889,'files','22355','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5890,'files','22356','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5891,'files','22357','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5892,'files','22358','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5893,'files','22359','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5894,'files','22360','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5895,'files','22361','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5896,'files','22362','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5897,'files','22363','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5898,'files','22364','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5899,'files','22365','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5900,'files','22366','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5901,'files','22367','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5902,'files','22368','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5903,'files','22369','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5904,'files','22370','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5905,'files','22371','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5906,'files','22372','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5907,'files','22373','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5908,'files','22374','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5909,'files','22375','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5910,'files','22376','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5911,'files','22377','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5912,'files','22378','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5913,'files','22379','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5914,'files','22380','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5915,'files','22381','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5916,'files','22382','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5917,'files','22383','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5918,'files','22384','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5919,'files','22385','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5920,'files','22386','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5921,'files','22387','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5922,'files','22388','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5923,'files','22389','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5924,'files','22390','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5925,'files','22391','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5926,'files','22392','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5927,'files','22393','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5928,'files','22394','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5929,'files','22395','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5930,'files','22396','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5931,'files','22397','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5932,'files','22398','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5933,'files','22399','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5934,'files','22400','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5935,'files','22401','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5936,'files','22402','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5937,'files','22403','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5938,'files','22404','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5939,'files','22405','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5940,'files','22406','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5941,'files','22407','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5942,'files','22408','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5943,'files','22409','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5944,'files','22410','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5945,'files','22411','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5946,'files','22412','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5947,'files','22413','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5948,'files','22414','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5949,'files','22415','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5950,'files','22416','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5951,'files','22417','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5952,'files','22418','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5953,'files','22419','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5954,'files','22420','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5955,'files','22421','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5956,'files','22422','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5957,'files','22423','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5958,'files','22424','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5959,'files','22425','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5960,'files','22426','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5961,'files','22427','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5962,'files','22428','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5963,'files','22429','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5964,'files','22430','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5965,'files','22431','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5966,'files','22432','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5967,'files','22433','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5968,'files','22434','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5969,'files','22435','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5970,'files','22436','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5971,'files','22437','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5972,'files','22438','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5973,'files','22439','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5974,'files','22440','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5975,'files','22441','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5976,'files','22442','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5977,'files','22443','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5978,'files','22444','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5979,'files','22445','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5980,'files','22446','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5981,'files','22447','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5982,'files','22448','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5983,'files','22449','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5984,'files','22450','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5985,'files','22451','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5986,'files','22452','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5987,'files','22453','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5988,'files','22454','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5989,'files','22455','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5990,'files','22456','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5991,'files','22457','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5992,'files','22458','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5993,'files','22459','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5994,'files','22460','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5995,'files','22461','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5996,'files','22462','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5997,'files','22463','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5998,'files','22464','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5999,'files','22465','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6000,'files','22466','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6001,'files','22467','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6002,'files','22468','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6003,'files','22469','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6004,'files','22470','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6005,'files','22471','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6006,'files','22472','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6007,'files','22473','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6008,'files','22474','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6009,'files','22475','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6010,'files','22476','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6011,'files','22477','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6012,'files','22478','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6013,'files','22479','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6014,'files','22480','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6015,'files','22481','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6016,'files','22482','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6017,'files','22483','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6018,'files','22484','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6019,'files','22485','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6020,'files','22486','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6021,'files','22487','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6022,'files','22488','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6023,'files','22489','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6024,'files','22490','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6025,'files','22491','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6026,'files','22492','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6027,'files','22493','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6028,'files','22494','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6029,'files','22495','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6030,'files','22496','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6031,'files','22497','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6032,'files','22498','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6033,'files','22499','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6034,'files','22500','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6035,'files','22501','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6036,'files','22502','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6037,'files','22503','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6038,'files','22504','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6039,'files','22505','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6040,'files','22506','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6041,'files','22507','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6042,'files','22508','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6043,'files','22509','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6044,'files','22510','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6045,'files','22511','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6046,'files','22512','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6047,'files','22513','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6048,'files','22514','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6049,'files','22515','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6050,'files','22516','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6051,'files','22517','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6052,'files','22518','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6053,'files','22519','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6054,'files','22520','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6055,'files','22521','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6056,'files','22522','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6057,'files','22523','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6058,'files','22524','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6059,'files','22525','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6060,'files','22526','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6061,'files','22528','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6062,'files','22530','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6063,'files','22531','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6064,'files','22532','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6065,'files','22533','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6066,'files','22534','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6067,'files','22535','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6068,'files','22536','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6069,'files','22537','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6070,'files','22538','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6071,'files','22539','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6072,'files','22540','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6073,'files','22541','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6074,'files','22542','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6075,'files','22543','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6076,'files','22544','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6077,'files','22545','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6078,'files','22546','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6079,'files','22547','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6080,'files','22548','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6081,'files','22549','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6082,'files','22550','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6083,'files','22551','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6084,'files','22552','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6085,'files','22553','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6086,'files','22554','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6087,'files','22555','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6088,'files','22556','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6089,'files','22557','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6090,'files','22558','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6091,'files','22559','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6092,'files','22560','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6093,'files','22561','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6094,'files','22562','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6095,'files','22563','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6096,'files','22564','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6097,'files','22565','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6098,'files','22566','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6099,'files','22567','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6100,'files','22568','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6101,'files','22569','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6102,'files','22570','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6103,'files','22571','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6104,'files','22572','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6105,'files','22573','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6106,'files','22574','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6107,'files','22575','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6108,'files','22576','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6109,'files','22577','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6110,'files','22578','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6111,'files','22579','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6112,'files','22580','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6113,'files','22581','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6114,'files','22582','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6115,'files','22583','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6116,'files','22584','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6117,'files','22585','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6118,'files','22586','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6119,'files','22587','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6120,'files','22588','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6121,'files','22589','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6122,'files','22590','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6123,'files','22591','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6124,'files','22592','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6125,'files','22593','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6126,'files','22594','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6127,'files','22595','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6128,'files','22596','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6129,'files','22597','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6130,'files','22598','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6131,'files','22599','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6132,'files','22600','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6133,'files','22601','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6134,'files','22602','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6135,'files','22603','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6136,'files','22604','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6137,'files','22605','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6138,'files','22606','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6139,'files','22607','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6140,'files','22608','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6141,'files','22609','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6142,'files','22610','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6143,'files','22611','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6144,'files','22612','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6145,'files','22613','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6146,'files','22614','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6147,'files','22615','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6148,'files','22616','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6149,'files','22617','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6150,'files','22618','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6151,'files','22619','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6152,'files','22620','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6153,'files','22621','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6154,'files','22622','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6155,'files','22623','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6156,'files','22624','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6157,'files','22625','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6158,'files','22626','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6159,'files','22627','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6160,'files','22629','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6161,'files','22630','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6162,'files','22631','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6163,'files','22632','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6164,'files','22633','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6165,'files','22634','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6166,'files','22635','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6167,'files','22636','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6168,'files','22637','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6169,'files','22638','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6170,'files','22639','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6171,'files','22640','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6172,'files','22641','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6173,'files','22642','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6174,'files','22643','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6175,'files','22644','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6176,'files','22645','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6177,'files','22646','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6178,'files','22647','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6179,'files','22648','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6180,'files','22649','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6181,'files','22650','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6182,'files','22651','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6183,'files','22652','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6184,'files','22653','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6185,'files','22654','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6186,'files','22655','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6187,'files','22656','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6188,'files','22657','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6189,'files','22658','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6190,'files','22659','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6191,'files','22660','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6192,'files','22661','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6193,'files','22662','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6194,'files','22663','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6195,'files','22664','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6196,'files','22665','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6197,'files','22666','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6198,'files','22667','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6199,'files','22668','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6200,'files','22669','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6201,'files','22670','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6202,'files','22671','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6203,'files','22672','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6204,'files','22673','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6205,'files','22674','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6206,'files','22675','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6207,'files','22676','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6208,'files','22677','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6209,'files','22678','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6210,'files','22679','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6211,'files','22680','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6212,'files','22681','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6213,'files','22682','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6214,'files','22683','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6215,'files','22684','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6216,'files','22685','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6217,'files','22686','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6218,'files','22687','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6219,'files','22688','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6220,'files','22689','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6221,'files','22690','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6222,'files','22691','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6223,'files','22692','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6224,'files','22693','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6225,'files','22694','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6226,'files','22695','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6227,'files','22696','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6228,'files','22697','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6229,'files','22698','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6230,'files','22699','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6231,'files','22700','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6232,'files','22701','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6233,'files','22702','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6234,'files','22703','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6235,'files','22704','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6236,'files','22705','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6237,'files','22706','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6238,'files','22707','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6239,'files','22708','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6240,'files','22709','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6241,'files','22710','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6242,'files','22711','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6243,'files','22712','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6244,'files','22713','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6245,'files','22714','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6246,'files','22715','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6247,'files','22716','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6248,'files','22717','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6249,'files','22718','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6250,'files','22719','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6251,'files','22720','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6252,'files','22721','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6253,'files','22722','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6254,'files','22723','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6255,'files','22724','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6256,'files','22725','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6257,'files','22726','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6258,'files','22727','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6259,'files','22728','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6260,'files','22729','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6261,'files','22730','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6262,'files','22731','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6263,'files','22732','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6264,'files','22733','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6265,'files','22734','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6266,'files','22735','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6267,'files','22736','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6268,'files','22737','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6269,'files','22738','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6270,'files','22739','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6271,'files','22740','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6272,'files','22741','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6273,'files','22742','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6274,'files','22743','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6275,'files','22744','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6276,'files','22745','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6277,'files','22746','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6278,'files','22747','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6279,'files','22748','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6280,'files','22749','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6281,'files','22750','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6282,'files','22751','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6283,'files','22752','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6284,'files','22753','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6285,'files','22754','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6286,'files','22755','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6287,'files','22756','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6288,'files','22757','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6289,'files','22758','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6290,'files','22759','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6291,'files','22760','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6292,'files','22761','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6293,'files','22762','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6294,'files','22763','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6295,'files','22764','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6296,'files','22765','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6297,'files','22766','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6298,'files','22767','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6299,'files','22768','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6300,'files','22769','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6301,'files','22770','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6302,'files','22771','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6303,'files','22772','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6304,'files','22773','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6305,'files','22774','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6306,'files','22775','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6307,'files','22776','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6308,'files','22777','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6309,'files','22778','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6310,'files','22779','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6311,'files','22780','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6312,'files','22781','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6313,'files','22782','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6314,'files','22783','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6315,'files','22784','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6316,'files','22785','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6317,'files','22786','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6318,'files','22787','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6319,'files','22788','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6320,'files','22789','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6321,'files','22790','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6322,'files','22791','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6323,'files','22792','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6324,'files','22793','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6325,'files','22794','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6326,'files','22795','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6327,'files','22796','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6328,'files','22797','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6329,'files','22798','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6330,'files','22799','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6331,'files','22800','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6332,'files','22801','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6333,'files','22802','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6334,'files','22803','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6335,'files','22804','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6336,'files','22805','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6337,'files','22806','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6338,'files','22807','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6339,'files','22808','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6340,'files','22809','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6341,'files','22810','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6342,'files','22811','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6343,'files','22812','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6344,'files','22813','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6345,'files','22814','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6346,'files','22815','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6347,'files','22816','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6348,'files','22817','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6349,'files','22818','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6350,'files','22819','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6351,'files','22820','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6352,'files','22821','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6353,'files','22822','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6354,'files','22823','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6355,'files','22824','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6356,'files','22825','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6357,'files','22826','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6358,'files','22827','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6359,'files','22828','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6360,'files','22829','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6361,'files','22830','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6362,'files','22831','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6363,'files','22832','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6364,'files','22833','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6365,'files','22834','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6366,'files','22835','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6367,'files','22836','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6368,'files','22837','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6369,'files','22838','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6370,'files','22839','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6371,'files','22840','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6372,'files','22841','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6373,'files','22842','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6374,'files','22843','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6375,'files','22844','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6376,'files','22845','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6377,'files','22846','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6378,'files','22847','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6379,'files','22848','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6380,'files','22849','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6381,'files','22850','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6382,'files','22851','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6383,'files','22852','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6384,'files','22853','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6385,'files','22854','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6386,'files','22855','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6387,'files','22856','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6388,'files','22857','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6389,'files','22858','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6390,'files','22859','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6391,'files','22860','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6392,'files','22861','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6393,'files','22862','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6394,'files','22863','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6395,'files','22864','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6396,'files','22865','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6397,'files','22866','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6398,'files','22867','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6399,'files','22868','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6400,'files','22869','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6401,'files','22870','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6402,'files','22871','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6403,'files','22872','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6404,'files','22873','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6405,'files','22874','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6406,'files','22875','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6407,'files','22876','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6408,'files','22877','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6409,'files','22878','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6410,'files','22879','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6411,'files','22880','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6412,'files','22881','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6413,'files','22882','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6414,'files','22883','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6415,'files','22884','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6416,'files','22885','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6417,'files','22886','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6418,'files','22887','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6419,'files','22888','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6420,'files','22889','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6421,'files','22890','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6422,'files','22891','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6423,'files','22892','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6424,'files','22893','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6425,'files','22894','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6426,'files','22895','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6427,'files','22896','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6428,'files','22897','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6429,'files','22898','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6430,'files','22899','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6431,'files','22900','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6432,'files','22901','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6433,'files','22902','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6434,'files','22903','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6435,'files','22904','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6436,'files','22905','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6437,'files','22906','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6438,'files','22907','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6439,'files','22908','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6440,'files','22909','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6441,'files','22910','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6442,'files','22911','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6443,'files','22912','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6444,'files','22913','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6445,'files','22914','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6446,'files','22915','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6447,'files','22916','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6448,'files','22917','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6449,'files','22918','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6450,'files','22919','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6451,'files','22920','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6452,'files','22921','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6453,'files','22922','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6454,'files','22923','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6455,'files','22924','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6456,'files','22925','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6457,'files','22926','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6458,'files','22927','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6459,'files','22928','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6460,'files','22929','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6461,'files','22930','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6462,'files','22931','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6463,'files','22932','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6464,'files','22933','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6465,'files','22934','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6466,'files','22935','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6467,'files','22936','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6468,'files','22937','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6469,'files','22938','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6470,'files','22939','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6471,'files','22940','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6472,'files','22941','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6473,'files','22942','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6474,'files','22943','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6475,'files','22944','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6476,'files','22945','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6477,'files','22946','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6478,'files','22947','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6479,'files','22948','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6480,'files','22949','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6481,'files','22950','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6482,'files','22951','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6483,'files','22952','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6484,'files','22953','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6485,'files','22954','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6486,'files','22955','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6487,'files','22956','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6488,'files','22957','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6489,'files','22958','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6490,'files','22959','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6491,'files','22960','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6492,'files','22961','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6493,'files','22962','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6494,'files','22963','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6495,'files','22964','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6496,'files','22965','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6497,'files','22966','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6498,'files','22967','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6499,'files','22968','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6500,'files','22969','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6501,'files','22970','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6502,'files','22971','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6503,'files','22972','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6504,'files','22973','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6505,'files','22974','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6506,'files','22975','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6507,'files','22976','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6508,'files','22977','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6509,'files','22978','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6510,'files','22979','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6511,'files','22980','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6512,'files','22981','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6513,'files','22982','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6514,'files','22983','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6515,'files','22984','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6516,'files','22985','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6517,'files','22986','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6518,'files','22987','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6519,'files','22988','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6520,'files','22989','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6521,'files','22990','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6522,'files','22991','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6523,'files','22992','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6524,'files','22993','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6525,'files','22994','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6526,'files','22995','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6527,'files','22996','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6528,'files','22997','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6529,'files','22998','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6530,'files','22999','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6531,'files','23000','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6532,'files','23001','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6533,'files','23002','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6534,'files','23003','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6535,'files','23004','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6536,'files','23005','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6537,'files','23006','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6538,'files','23007','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6539,'files','23008','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6540,'files','23009','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6541,'files','23010','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6542,'files','23011','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6543,'files','23012','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6544,'files','23013','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6545,'files','23014','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6546,'files','23015','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6547,'files','23016','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6548,'files','23017','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6549,'files','23018','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6550,'files','23019','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6551,'files','23020','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6552,'files','23021','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6553,'files','23022','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6554,'files','23023','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6555,'files','23024','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6556,'files','23025','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6557,'files','23026','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6558,'files','23027','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6559,'files','23028','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6560,'files','23029','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6561,'files','23030','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6562,'files','23031','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6563,'files','23032','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6564,'files','23033','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6565,'files','23034','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6566,'files','23035','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6567,'files','23036','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6568,'files','23037','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6569,'files','23038','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6570,'files','23039','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6571,'files','23040','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6572,'files','23041','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6573,'files','23042','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6574,'files','23043','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6575,'files','23044','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6576,'files','23045','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6577,'files','23046','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6578,'files','23047','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6579,'files','23048','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6580,'files','23049','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6581,'files','23050','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6582,'files','23051','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6583,'files','23052','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6584,'files','23053','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6585,'files','23054','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6586,'files','23055','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6587,'files','23056','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6588,'files','23057','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6589,'files','23058','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6590,'files','23059','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6591,'files','23060','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6592,'files','23061','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6593,'files','23062','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6594,'files','23063','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6595,'files','23064','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6596,'files','23065','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6597,'files','23066','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6598,'files','23067','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6599,'files','23068','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6600,'files','23069','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6601,'files','23070','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6602,'files','23071','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6603,'files','23072','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6604,'files','23073','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6605,'files','23074','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6606,'files','23076','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6607,'files','23077','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6608,'files','23078','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6609,'files','23079','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6610,'files','23080','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6611,'files','23081','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6612,'files','23082','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6613,'files','23083','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6614,'files','23084','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6615,'files','23085','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6616,'files','23086','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6617,'files','23087','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6618,'files','23088','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6619,'files','23089','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6620,'files','23090','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6621,'files','23091','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6622,'files','23092','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6623,'files','23093','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6624,'files','23094','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6625,'files','23095','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6626,'files','23096','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6627,'files','23097','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6628,'files','23098','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6629,'files','23099','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6630,'files','23100','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6631,'files','23101','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6632,'files','23102','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6633,'files','23103','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6634,'files','23104','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6635,'files','23105','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6636,'files','23106','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6637,'files','23107','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6638,'files','23108','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6639,'files','23109','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6640,'files','23110','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6641,'files','23111','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6642,'files','23112','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6643,'files','23113','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6644,'files','23114','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6645,'files','23115','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6646,'files','23116','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6647,'files','23117','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6648,'files','23118','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6649,'files','23119','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6650,'files','23120','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6651,'files','23121','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6652,'files','23122','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6653,'files','23123','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6654,'files','23124','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6655,'files','23125','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6656,'files','23126','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6657,'files','23127','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6658,'files','23128','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6659,'files','23129','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6660,'files','23130','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6661,'files','23131','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6662,'files','23132','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6663,'files','23133','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6664,'files','23134','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6665,'files','23135','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6666,'files','23136','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6667,'files','23137','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6668,'files','23138','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6669,'files','23139','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6670,'files','23141','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6671,'files','23142','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6672,'files','23144','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6673,'files','23145','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6674,'files','23147','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6675,'files','23148','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6676,'files','23150','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6677,'files','23152','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6678,'files','23154','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6679,'files','23155','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6680,'files','23157','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6681,'files','23158','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6682,'files','23160','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6683,'files','23161','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6684,'files','23162','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6685,'files','23163','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6686,'files','23164','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6687,'files','23165','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6688,'files','23166','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6689,'files','23167','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6690,'files','23168','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6691,'files','23169','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6692,'files','23170','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6693,'files','23171','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6694,'files','23172','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6695,'files','23173','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6696,'files','23174','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6697,'files','23175','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6698,'files','23176','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6699,'files','23177','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6700,'files','23178','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6701,'files','23180','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6702,'files','23181','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6703,'files','23182','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6704,'files','23183','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6705,'files','23184','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6706,'files','23185','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6707,'files','23186','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6708,'files','23187','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6709,'files','23188','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6710,'files','23189','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6711,'files','23190','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6712,'files','23191','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6713,'files','23192','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6714,'files','23193','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6715,'files','23194','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6716,'files','23195','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6717,'files','23196','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6718,'files','23197','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6719,'files','23198','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6720,'files','23199','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6721,'files','23200','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6722,'files','23201','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6723,'files','23202','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6724,'files','23203','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6725,'files','23204','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6726,'files','23205','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6727,'files','23206','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6728,'files','23207','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6729,'files','23209','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6730,'files','23212','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6731,'files','23213','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6732,'files','23214','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6733,'files','23215','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6734,'files','23216','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6735,'files','23217','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6736,'files','23218','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6737,'files','23219','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6738,'files','23220','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6739,'files','23221','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6740,'files','23222','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6741,'files','23223','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6742,'files','23224','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6743,'files','23225','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6744,'files','23226','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6745,'files','23227','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6746,'files','23228','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6747,'files','23229','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6748,'files','23230','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6749,'files','23231','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6750,'files','23232','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6751,'files','23233','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6752,'files','23234','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6753,'files','23235','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6754,'files','23236','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6755,'files','23237','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6756,'files','23238','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6757,'files','23239','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6758,'files','23240','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6759,'files','23241','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6760,'files','23242','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6761,'files','23243','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6762,'files','23244','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6763,'files','23245','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6764,'files','23246','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6765,'files','23247','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6766,'files','23248','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6767,'files','23249','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6768,'files','23250','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6769,'files','23251','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6770,'files','23252','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6771,'files','23253','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6772,'files','23254','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6773,'files','23255','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6774,'files','23256','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6775,'files','23257','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6776,'files','23258','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6777,'files','23259','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6778,'files','23260','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6779,'files','23261','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6780,'files','23262','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6781,'files','23263','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6782,'files','23264','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6783,'files','23265','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6784,'files','23266','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6785,'files','23267','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6786,'files','23268','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6787,'files','23269','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6788,'files','23270','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6789,'files','23271','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6790,'files','23272','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6791,'files','23273','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6792,'files','23274','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6793,'files','23275','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6794,'files','23276','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6795,'files','23277','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6796,'files','23278','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6797,'files','23279','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6798,'files','23280','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6799,'files','23281','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6800,'files','23282','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6801,'files','23283','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6802,'files','23284','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6803,'files','23285','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6804,'files','23286','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6805,'files','23287','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6806,'files','23288','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6807,'files','23289','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6808,'files','23290','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6809,'files','23291','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6810,'files','23292','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6811,'files','23293','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6812,'files','23294','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6813,'files','23295','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6814,'files','23296','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6815,'files','23297','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6816,'files','23298','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6817,'files','23299','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6818,'files','23300','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6819,'files','23301','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6820,'files','23302','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6821,'files','23303','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6822,'files','23304','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6823,'files','23305','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6824,'files','23306','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6825,'files','23307','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6826,'files','23308','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6827,'files','23309','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6828,'files','23310','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6829,'files','23311','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6830,'files','23312','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6831,'files','23313','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6832,'files','23314','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6833,'files','23315','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6834,'files','23316','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6835,'files','23317','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6836,'files','23318','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6837,'files','23319','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6838,'files','23320','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6839,'files','23321','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6840,'files','23322','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6841,'files','23323','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6842,'files','23324','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6843,'files','23325','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6844,'files','23326','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6845,'files','23327','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6846,'files','23328','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6847,'files','23329','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6848,'files','23330','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6849,'files','23331','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6850,'files','23332','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6851,'files','23333','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6852,'files','23334','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6853,'files','23335','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6854,'files','23336','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6855,'files','23337','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6856,'files','23338','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6857,'files','23339','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6858,'files','23340','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6859,'files','23341','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6860,'files','23342','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6861,'files','23343','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6862,'files','23344','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6863,'files','23345','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6864,'files','23346','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6865,'files','23347','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6866,'files','23348','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6867,'files','23349','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6868,'files','23350','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6869,'files','23351','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6870,'files','23352','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6871,'files','23353','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6872,'files','23354','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6873,'files','23355','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6874,'files','23356','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6875,'files','23357','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6876,'files','23358','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6877,'files','23359','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6878,'files','23360','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6879,'files','23361','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6880,'files','23362','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6881,'files','23363','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6882,'files','23364','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6883,'files','23365','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6884,'files','23366','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6885,'files','23367','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6886,'files','23368','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6887,'files','23369','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6888,'files','23370','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6889,'files','23371','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6890,'files','23372','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6891,'files','23373','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6892,'files','23374','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6893,'files','23375','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6894,'files','23376','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6895,'files','23377','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6896,'files','23378','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6897,'files','23379','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6898,'files','23380','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6899,'files','23381','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6900,'files','23382','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6901,'files','23383','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6902,'files','23384','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6903,'files','23386','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6904,'files','23387','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6905,'files','23388','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6906,'files','23390','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6907,'files','23391','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6908,'files','23392','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6909,'files','23393','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6910,'files','23394','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6911,'files','23395','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6912,'files','23396','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6913,'files','23397','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6914,'files','23398','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6915,'files','23399','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6916,'files','23400','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6917,'files','23401','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6918,'files','23402','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6919,'files','23403','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6920,'files','23404','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6921,'files','23405','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6922,'files','23406','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6923,'files','23407','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6924,'files','23409','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6925,'files','23410','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6926,'files','23411','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6927,'files','23412','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6928,'files','23413','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6929,'files','23414','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6930,'files','23415','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6931,'files','23416','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6932,'files','23417','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6933,'files','23418','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6934,'files','23419','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6935,'files','23420','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6936,'files','23421','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6937,'files','23422','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6938,'files','23423','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6939,'files','23424','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6940,'files','23425','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6941,'files','23426','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6942,'files','23427','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6943,'files','23428','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6944,'files','23429','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6945,'files','23430','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6946,'files','23431','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6947,'files','23432','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6948,'files','23433','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6949,'files','23434','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6950,'files','23435','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6951,'files','23436','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6952,'files','23437','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6953,'files','23438','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6954,'files','23439','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6955,'files','23440','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6956,'files','23441','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6957,'files','23442','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6958,'files','23443','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6959,'files','23444','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6960,'files','23445','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6961,'files','23446','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6962,'files','23447','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6963,'files','23448','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6964,'files','23449','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6965,'files','23450','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6966,'files','23451','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6967,'files','23452','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6968,'files','23453','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6969,'files','23454','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6970,'files','23455','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6971,'files','23456','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6972,'files','23457','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6973,'files','23458','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6974,'files','23459','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6975,'files','23460','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6976,'files','23461','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6977,'files','23462','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6978,'files','23463','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6979,'files','23464','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6980,'files','23465','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6981,'files','23466','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6982,'files','23467','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6983,'files','23468','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6984,'files','23469','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6985,'files','23470','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6986,'files','23471','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6987,'files','23472','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6988,'files','23474','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6989,'files','23475','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6990,'files','23476','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6991,'files','23477','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6992,'files','23478','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6993,'files','23479','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6994,'files','23480','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6995,'files','23481','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6996,'files','23482','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6997,'files','23483','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6998,'files','23484','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6999,'files','23485','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7000,'files','23486','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7001,'files','23487','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7002,'files','23488','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7003,'files','23489','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7004,'files','23490','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7005,'files','23491','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7006,'files','23492','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7007,'files','23493','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7008,'files','23494','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7009,'files','23495','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7010,'files','23496','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7011,'files','23497','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7012,'files','23498','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7013,'files','23499','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7014,'files','23500','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7015,'files','23501','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7016,'files','23502','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7017,'files','23503','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7018,'files','23504','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7019,'files','23505','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7020,'files','23506','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7021,'files','23507','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7022,'files','23508','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7023,'files','23509','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7024,'files','23510','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7025,'files','23511','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7026,'files','23512','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7027,'files','23513','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7028,'files','23514','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7029,'files','23515','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7030,'files','23516','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7031,'files','23517','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7032,'files','23518','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7033,'files','23519','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7034,'files','23520','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7035,'files','23521','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7036,'files','23522','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7037,'files','23523','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7038,'files','23524','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7039,'files','23526','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7040,'files','23527','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7041,'files','23528','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7042,'files','23529','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7043,'files','23530','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7044,'files','23531','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7045,'files','23532','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7046,'files','23533','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7047,'files','23534','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7048,'files','23535','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7049,'files','23536','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7050,'files','23537','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7051,'files','23538','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7052,'files','23539','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7053,'files','23540','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7054,'files','23541','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7055,'files','23542','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7056,'files','23543','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7057,'files','23544','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7058,'files','23545','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7059,'files','23546','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7060,'files','23547','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7061,'files','23548','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7062,'files','23549','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7063,'files','23550','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7064,'files','23551','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7065,'files','23552','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7066,'files','23553','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7067,'files','23554','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7068,'files','23555','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7069,'files','23556','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7070,'files','23557','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7071,'files','23558','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7072,'files','23559','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7073,'files','23560','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7074,'files','23561','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7075,'files','23562','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7076,'files','23563','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7077,'files','23564','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7078,'files','23565','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7079,'files','23566','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7080,'files','23567','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7081,'files','23568','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7082,'files','23569','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7083,'files','23570','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7084,'files','23571','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7085,'files','23572','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7086,'files','23573','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7087,'files','23574','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7088,'files','23575','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7089,'files','23576','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7090,'files','23577','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7091,'files','23578','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7092,'files','23579','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7093,'files','23580','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7094,'files','23581','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7095,'files','23583','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7096,'files','23584','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7097,'files','23586','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7098,'files','23587','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7099,'files','23588','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7100,'files','23589','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7101,'files','23591','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7102,'files','23592','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7103,'files','23593','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7104,'files','23594','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7105,'files','23595','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7106,'files','23596','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7107,'files','23597','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7108,'files','23598','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7109,'files','23599','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7110,'files','23600','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7111,'files','23601','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7112,'files','23602','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7113,'files','23603','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7114,'files','23604','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7115,'files','23605','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7116,'files','23606','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7117,'files','23607','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7118,'files','23608','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7119,'files','23609','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7120,'files','23610','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7121,'files','23611','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7122,'files','23612','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7123,'files','23614','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7124,'files','23615','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7125,'files','23616','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7126,'files','23617','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7127,'files','23618','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7128,'files','23619','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7129,'files','23620','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7130,'files','23621','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7131,'files','23622','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7132,'files','23623','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7133,'files','23624','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7134,'files','23625','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7135,'files','23626','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7136,'files','23627','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7137,'files','23628','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7138,'files','23629','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7139,'files','23630','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7140,'files','23631','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7141,'files','23632','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7142,'files','23633','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7143,'files','23634','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7144,'files','23635','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7145,'files','23636','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7146,'files','23637','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7147,'files','23638','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7148,'files','23639','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7149,'files','23640','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7150,'files','23641','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7151,'files','23642','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7152,'files','23643','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7153,'files','23644','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7154,'files','23645','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7155,'files','23646','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7156,'files','23647','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7157,'files','23648','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7158,'files','23649','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7159,'files','23650','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7160,'files','23651','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7161,'files','23652','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7162,'files','23653','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7163,'files','23654','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7164,'files','23655','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7165,'files','23656','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7166,'files','23657','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7167,'files','23658','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7168,'files','23659','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7169,'files','23660','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7170,'files','23661','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7171,'files','23662','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7172,'files','23663','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7173,'files','23664','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7174,'files','23665','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7175,'files','23666','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7176,'files','23667','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7177,'files','23668','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7178,'files','23669','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7179,'files','23670','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7180,'files','23671','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7181,'files','23672','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7182,'files','23673','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7183,'files','23674','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7184,'files','23675','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7185,'files','23676','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7186,'files','23677','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7187,'files','23678','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7188,'files','23679','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7189,'files','23680','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7190,'files','23681','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7191,'files','23682','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7192,'files','23683','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7193,'files','23684','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7194,'files','23685','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7195,'files','23686','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7196,'files','23687','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7197,'files','23688','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7198,'files','23689','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7199,'files','23690','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7200,'files','23691','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7201,'files','23692','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7202,'files','23693','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7203,'files','23694','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7204,'files','23695','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7205,'files','23696','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7206,'files','23697','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7207,'files','23698','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7208,'files','23699','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7209,'files','23700','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7210,'files','23701','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7211,'files','23702','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7212,'files','23703','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7213,'files','23704','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7214,'files','23705','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7215,'files','23706','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7216,'files','23707','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7217,'files','23708','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7218,'files','23709','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7219,'files','23710','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7220,'files','23711','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7221,'files','23712','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7222,'files','23713','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7223,'files','23714','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7224,'files','23715','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7225,'files','23716','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7226,'files','23717','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7227,'files','23718','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7228,'files','23719','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7229,'files','23720','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7230,'files','23721','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7231,'files','23722','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7232,'files','23723','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7233,'files','23724','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7234,'files','23725','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7235,'files','23726','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7236,'files','23727','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7237,'files','23728','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7238,'files','23729','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7239,'files','23730','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7240,'files','23731','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7241,'files','23732','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7242,'files','23733','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7243,'files','23734','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7244,'files','23735','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7245,'files','23736','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7246,'files','23737','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7247,'files','23738','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7248,'files','23739','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7249,'files','23740','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7250,'files','23741','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7251,'files','23742','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7252,'files','23743','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7253,'files','23744','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7254,'files','23745','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7255,'files','23746','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7256,'files','23747','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7257,'files','23748','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7258,'files','23749','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7259,'files','23750','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7260,'files','23751','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7261,'files','23752','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7262,'files','23753','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7263,'files','23754','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7264,'files','23755','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7265,'files','23756','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7266,'files','23757','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7267,'files','23758','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7268,'files','23759','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7269,'files','23760','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7270,'files','23761','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7271,'files','23762','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7272,'files','23763','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7273,'files','23764','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7274,'files','23765','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7275,'files','23766','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7276,'files','23767','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7277,'files','23768','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7278,'files','23769','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7279,'files','23770','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7280,'files','23771','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7281,'files','23772','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7282,'files','23773','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7283,'files','23774','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7284,'files','23775','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7285,'files','23776','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7286,'files','23777','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7287,'files','23778','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7288,'files','23779','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7289,'files','23780','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7290,'files','23781','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7291,'files','23782','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7292,'files','23783','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7293,'files','23785','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7294,'files','23787','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7295,'files','23788','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7296,'files','23789','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7297,'files','23790','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7298,'files','23791','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7299,'files','23792','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7300,'files','23793','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7301,'files','23794','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7302,'files','23795','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7303,'files','23796','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7304,'files','23797','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7305,'files','23798','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7306,'files','23799','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7307,'files','23800','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7308,'files','23801','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7309,'files','23802','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7310,'files','23803','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7311,'files','23804','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7312,'files','23805','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7313,'files','23806','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7314,'files','23807','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7315,'files','23808','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7316,'files','23809','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7317,'files','23811','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7318,'files','23813','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7319,'files','23815','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7320,'files','23817','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7321,'files','23818','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7322,'files','23819','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7323,'files','23820','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7324,'files','23821','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7325,'files','23822','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7326,'files','23823','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7327,'files','23824','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7328,'files','23825','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7329,'files','23826','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7330,'files','23827','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7331,'files','23828','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7332,'files','23829','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7333,'files','23830','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7334,'files','23831','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7335,'files','23832','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7336,'files','23833','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7337,'files','23834','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7338,'files','23835','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7339,'files','23836','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7340,'files','23837','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7341,'files','23838','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7342,'files','23839','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7343,'files','23840','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7344,'files','23841','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7345,'files','23842','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7346,'files','23843','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7347,'files','23844','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7348,'files','23845','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7349,'files','23846','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7350,'files','23847','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7351,'files','23848','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7352,'files','23849','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7353,'files','23850','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7354,'files','23851','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7355,'files','23852','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7356,'files','23853','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7357,'files','23854','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7358,'files','23855','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7359,'files','23856','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7360,'files','23857','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7361,'files','23858','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7362,'files','23859','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7363,'files','23860','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7364,'files','23861','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7365,'files','23862','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7366,'files','23863','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7367,'files','23864','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7368,'files','23865','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7369,'files','23866','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7370,'files','23867','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7371,'files','23868','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7372,'files','23869','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7373,'files','23870','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7374,'files','23871','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7375,'files','23872','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7376,'files','23873','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7377,'files','23874','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7378,'files','23875','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7379,'files','23876','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7380,'files','23877','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7381,'files','23878','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7382,'files','23879','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7383,'files','23880','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7384,'files','23881','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7385,'files','23882','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7386,'files','23883','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7387,'files','23884','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7388,'files','23885','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7389,'files','23886','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7390,'files','23887','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7391,'files','23888','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7392,'files','23889','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7393,'files','23890','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7394,'files','23891','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7395,'files','23892','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7396,'files','23893','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7397,'files','23894','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7398,'files','23895','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7399,'files','23896','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7400,'files','23897','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7401,'files','23898','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7402,'files','23899','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7403,'files','23900','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7404,'files','23901','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7405,'files','23902','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7406,'files','23903','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7407,'files','23904','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7408,'files','23905','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7409,'files','23906','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7410,'files','23907','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7411,'files','23908','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7412,'files','23909','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7413,'files','23910','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7414,'files','23911','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7415,'files','23912','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7416,'files','23913','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7417,'files','23914','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7418,'files','23915','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7419,'files','23917','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7420,'files','23921','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7421,'files','23922','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7422,'files','23923','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7423,'files','23924','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7424,'files','23925','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7425,'files','23926','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7426,'files','23927','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7427,'files','23928','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7428,'files','23929','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7429,'files','23930','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7430,'files','23931','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7431,'files','23932','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7432,'files','23933','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7433,'files','23934','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7434,'files','23935','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7435,'files','23936','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7436,'files','23937','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7437,'files','23938','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7438,'files','23939','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7439,'files','23940','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7440,'files','23941','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7441,'files','23942','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7442,'files','23943','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7443,'files','23944','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7444,'files','23945','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7445,'files','23946','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7446,'files','23947','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7447,'files','23948','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7448,'files','23949','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7449,'files','23950','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7450,'files','23951','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7451,'files','23952','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7452,'files','23953','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7453,'files','23954','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7454,'files','23955','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7455,'files','23956','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7456,'files','23957','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7457,'files','23958','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7458,'files','23959','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7459,'files','23960','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7460,'files','23961','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7461,'files','23962','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7462,'files','23963','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7463,'files','23964','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7464,'files','23965','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7465,'files','23966','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7466,'files','23967','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7467,'files','23968','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7468,'files','23969','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7469,'files','23970','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7470,'files','23971','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7471,'files','23972','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7472,'files','23973','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7473,'files','23974','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7474,'files','23975','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7475,'files','23976','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7476,'files','23977','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7477,'files','23978','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7478,'files','23979','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7479,'files','23980','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7480,'files','23981','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7481,'files','23982','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7482,'files','23983','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7483,'files','23984','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7484,'files','23985','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7485,'files','23986','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7486,'files','23987','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7487,'files','23988','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7488,'files','23989','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7489,'files','23990','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7490,'files','23991','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7491,'files','23992','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7492,'files','23993','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7493,'files','23994','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7494,'files','23995','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7495,'files','23996','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7496,'files','23997','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7497,'files','23998','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7498,'files','23999','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7499,'files','24000','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7500,'files','24001','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7501,'files','24002','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7502,'files','24003','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7503,'files','24004','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7504,'files','24005','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7505,'files','24006','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7506,'files','24007','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7507,'files','24008','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7508,'files','24010','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7509,'files','24011','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7510,'files','24012','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7511,'files','24014','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7512,'files','24015','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7513,'files','24016','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7514,'files','24017','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7515,'files','24018','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7516,'files','24019','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7517,'files','24020','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7518,'files','24021','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7519,'files','24022','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7520,'files','24023','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7521,'files','24024','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7522,'files','24025','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7523,'files','24026','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7524,'files','24027','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7525,'files','24028','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7526,'files','24029','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7527,'files','24030','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7528,'files','24031','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7529,'files','24032','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7530,'files','24033','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7531,'files','24034','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7532,'files','24035','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7533,'files','24036','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7534,'files','24037','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7535,'files','24038','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7536,'files','24039','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7537,'files','24040','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7538,'files','24041','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7539,'files','24042','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7540,'files','24043','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7541,'files','24044','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7542,'files','24045','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7543,'files','24046','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7544,'files','24047','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7545,'files','24048','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7546,'files','24049','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7547,'files','24050','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7548,'files','24051','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7549,'files','24052','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7550,'files','24053','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7551,'files','24054','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7552,'files','24055','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7553,'files','24056','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7554,'files','24057','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7555,'files','24058','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7556,'files','24060','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7557,'files','24061','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7558,'files','24062','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7559,'files','24063','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7560,'files','24065','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7561,'files','24066','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7562,'files','24067','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7563,'files','24068','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7564,'files','24069','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7565,'files','24070','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7566,'files','24071','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7567,'files','24072','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7568,'files','24073','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7569,'files','24074','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7570,'files','24075','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7571,'files','24076','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7572,'files','24077','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7573,'files','24078','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7574,'files','24079','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7575,'files','24080','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7576,'files','24081','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7577,'files','24082','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7578,'files','24083','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7579,'files','24084','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7580,'files','24085','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7581,'files','24086','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7582,'files','24087','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7583,'files','24088','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7584,'files','24089','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7585,'files','24090','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7586,'files','24091','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7587,'files','24092','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7588,'files','24093','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7589,'files','24094','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7590,'files','24095','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7591,'files','24096','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7592,'files','24097','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7593,'files','24098','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7594,'files','24099','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7595,'files','24100','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7596,'files','24101','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7597,'files','24102','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7598,'files','24103','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7599,'files','24104','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7600,'files','24105','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7601,'files','24106','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7602,'files','24107','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7603,'files','24108','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7604,'files','24109','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7605,'files','24110','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7606,'files','24111','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7607,'files','24112','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7608,'files','24113','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7609,'files','24114','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7610,'files','24115','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7611,'files','24116','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7612,'files','24117','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7613,'files','24118','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7614,'files','24119','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7615,'files','24120','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7616,'files','24121','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7617,'files','24122','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7618,'files','24123','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7619,'files','24124','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7620,'files','24125','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7621,'files','24126','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7622,'files','24127','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7623,'files','24128','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7624,'files','24129','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7625,'files','24130','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7626,'files','24131','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7627,'files','24132','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7628,'files','24133','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7629,'files','24134','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7630,'files','24135','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7631,'files','24136','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7632,'files','24137','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7633,'files','24138','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7634,'files','24139','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7635,'files','24140','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7636,'files','24141','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7637,'files','24142','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7638,'files','24143','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7639,'files','24144','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7640,'files','24145','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7641,'files','24146','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7642,'files','24147','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7643,'files','24148','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7644,'files','24149','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7645,'files','24150','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7646,'files','24151','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7647,'files','24152','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7648,'files','24153','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7649,'files','24154','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7650,'files','24155','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7651,'files','24156','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7652,'files','24157','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7653,'files','24158','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7654,'files','24159','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7655,'files','24160','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7656,'files','24161','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7657,'files','24162','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7658,'files','24163','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7659,'files','24164','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7660,'files','24165','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7661,'files','24166','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7662,'files','24167','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7663,'files','24168','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7664,'files','24169','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7665,'files','24170','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7666,'files','24171','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7667,'files','24172','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7668,'files','24173','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7669,'files','24174','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7670,'files','24175','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7671,'files','24176','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7672,'files','24177','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7673,'files','24178','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7674,'files','24179','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7675,'files','24180','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7676,'files','24181','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7677,'files','24182','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7678,'files','24183','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7679,'files','24184','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7680,'files','24185','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7681,'files','24186','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7682,'files','24187','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7683,'files','24188','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7684,'files','24189','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7685,'files','24190','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7686,'files','24191','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7687,'files','24192','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7688,'files','24193','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7689,'files','24194','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7690,'files','24195','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7691,'files','24196','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7692,'files','24197','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7693,'files','24198','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7694,'files','24200','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7695,'files','24201','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7696,'files','24202','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7697,'files','24203','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7698,'files','24204','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7699,'files','24205','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7700,'files','24206','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7701,'files','24207','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7702,'files','24208','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7703,'files','24209','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7704,'files','24210','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7705,'files','24211','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7706,'files','24212','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7707,'files','24214','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7708,'files','24215','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7709,'files','24216','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7710,'files','24217','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7711,'files','24218','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7712,'files','24219','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7713,'files','24220','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7714,'files','24221','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7715,'files','24222','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7716,'files','24223','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7717,'files','24224','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7718,'files','24225','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7719,'files','24226','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7720,'files','24227','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7721,'files','24228','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7722,'files','24229','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7723,'files','24230','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7724,'files','24231','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7725,'files','24232','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7726,'files','24233','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7727,'files','24234','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7728,'files','24235','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7729,'files','24236','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7730,'files','24237','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7731,'files','24238','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7732,'files','24239','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7733,'files','24240','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7734,'files','24241','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7735,'files','24242','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7736,'files','24243','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7737,'files','24252','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7738,'files','24253','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7739,'files','24254','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7740,'files','24255','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7741,'files','24256','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7742,'files','24257','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7743,'files','24258','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7744,'files','24259','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7745,'files','24260','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7746,'files','24261','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7747,'files','24262','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7748,'files','24263','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7749,'files','24264','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7750,'files','24265','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7751,'files','24266','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7752,'files','24267','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7753,'files','24268','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7754,'files','24269','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7755,'files','24270','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7756,'files','24271','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7757,'files','24272','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7758,'files','24273','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7759,'files','24274','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7760,'files','24275','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7761,'files','24276','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7762,'files','24277','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7763,'files','24278','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7764,'files','24279','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7765,'files','24280','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7766,'files','24281','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7767,'files','24282','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7768,'files','24283','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7769,'files','24284','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7770,'files','24285','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7771,'files','24286','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7772,'files','24287','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7773,'files','24288','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7774,'files','24289','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7775,'files','24290','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7776,'files','24291','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7777,'files','24292','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7778,'files','24293','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7779,'files','24294','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7780,'files','24295','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7781,'files','24296','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7782,'files','24297','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7783,'files','24298','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7784,'files','24299','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7785,'files','24300','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7786,'files','24301','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7787,'files','24302','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7788,'files','24303','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7789,'files','24304','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7790,'files','24305','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7791,'files','24306','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7792,'files','24307','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7793,'files','24308','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7794,'files','24309','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7795,'files','24310','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7796,'files','24311','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7797,'files','24312','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7798,'files','24313','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7799,'files','24314','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7800,'files','24315','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7801,'files','24316','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7802,'files','24317','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7803,'files','24318','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7804,'files','24319','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7805,'files','24320','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7806,'files','24321','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7807,'files','24322','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7808,'files','24323','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7809,'files','24324','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7810,'files','24325','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7811,'files','24326','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7812,'files','24327','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7813,'files','24328','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7814,'files','24329','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7815,'files','24330','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7816,'files','24331','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7817,'files','24332','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7818,'files','24334','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7819,'files','24335','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7820,'files','24336','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7821,'files','24337','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7822,'files','24338','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7823,'files','24339','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7824,'files','24340','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7825,'files','24341','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7826,'files','24342','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7827,'files','24343','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7828,'files','24344','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7829,'files','24345','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7830,'files','24346','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7831,'files','24347','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7832,'files','24348','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7833,'files','24349','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7834,'files','24350','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7835,'files','24351','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7836,'files','24352','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7837,'files','24353','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7838,'files','24354','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7839,'files','24355','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7840,'files','24356','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7841,'files','24357','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7842,'files','24358','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7843,'files','24359','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7844,'files','24360','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7845,'files','24361','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7846,'files','24362','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7847,'files','24363','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7848,'files','24364','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7849,'files','24365','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7850,'files','24366','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7851,'files','24367','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7852,'files','24368','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7853,'files','24369','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7854,'files','24370','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7855,'files','24371','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7856,'files','24372','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7857,'files','24373','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7858,'files','24374','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7859,'files','24375','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7860,'files','24376','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7861,'files','24377','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7862,'files','24378','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7863,'files','24379','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7864,'files','24380','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7865,'files','24381','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7866,'files','24382','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7867,'files','24383','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7868,'files','24384','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7869,'files','24385','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7870,'files','24386','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7871,'files','24387','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7872,'files','24388','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7873,'files','24389','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7874,'files','24390','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7875,'files','24391','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7876,'files','24392','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7877,'files','24393','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7878,'files','24394','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7879,'files','24395','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7880,'files','24396','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7881,'files','24397','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7882,'files','24398','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7883,'files','24399','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7884,'files','24400','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7885,'files','24401','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7886,'files','24402','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7887,'files','24403','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7888,'files','24404','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7889,'files','24405','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7890,'files','24406','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7891,'files','24407','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7892,'files','24408','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7893,'files','24409','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7894,'files','24410','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7895,'files','24411','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7896,'files','24412','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7897,'files','24413','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7898,'files','24414','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7899,'files','24415','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7900,'files','24416','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7901,'files','24417','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7902,'files','24418','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7903,'files','24419','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7904,'files','24420','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7905,'files','24421','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7906,'files','24422','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7907,'files','24423','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7908,'files','24424','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7909,'files','24425','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7910,'files','24426','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7911,'files','24427','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7912,'files','24428','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7913,'files','24429','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7914,'files','24430','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7915,'files','24431','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7916,'files','24432','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7917,'files','24433','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7918,'files','24434','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7919,'files','24435','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7920,'files','24436','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7921,'files','24437','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7922,'files','24438','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7923,'files','24439','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7924,'files','24440','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7925,'files','24441','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7926,'files','24442','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7927,'files','24443','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7928,'files','24444','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7929,'files','24445','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7930,'files','24446','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7931,'files','24447','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7932,'files','24448','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7933,'files','24449','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7934,'files','24450','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7935,'files','24451','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7936,'files','24452','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7937,'files','24453','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7938,'files','24454','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7939,'files','24455','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7940,'files','24456','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7941,'files','24457','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7942,'files','24458','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7943,'files','24459','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7944,'files','24460','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7945,'files','24461','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7946,'files','24462','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7947,'files','24463','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7948,'files','24464','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7949,'files','24465','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7950,'files','24466','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7951,'files','24467','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7952,'files','24468','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7953,'files','24469','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7954,'files','24470','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7955,'files','24471','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7956,'files','24472','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7957,'files','24475','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7958,'files','24476','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7959,'files','24477','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7960,'files','24478','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7961,'files','24479','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7962,'files','24480','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7963,'files','24481','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7964,'files','24482','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7965,'files','24483','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7966,'files','24484','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7967,'files','24485','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7968,'files','24486','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7969,'files','24487','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7970,'files','24488','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7971,'files','24489','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7972,'files','24490','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7973,'files','24491','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7974,'files','24492','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7975,'files','24493','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7976,'files','24494','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7977,'files','24495','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7978,'files','24496','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7979,'files','24497','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7980,'files','24498','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7981,'files','24499','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7982,'files','24500','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7983,'files','24501','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7984,'files','24502','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7985,'files','24503','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7986,'files','24504','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7987,'files','24505','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7988,'files','24506','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7989,'files','24507','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7990,'files','24508','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7991,'files','24510','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7992,'files','24511','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7993,'files','24512','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7994,'files','24513','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7995,'files','24514','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7996,'files','24516','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7997,'files','24517','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7998,'files','24518','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7999,'files','24519','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8000,'files','24520','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8001,'files','24521','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8002,'files','24522','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8003,'files','24523','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8004,'files','24524','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8005,'files','24525','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8006,'files','24526','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8007,'files','24527','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8008,'files','24528','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8009,'files','24529','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8010,'files','24530','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8011,'files','24531','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8012,'files','24532','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8013,'files','24533','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8014,'files','24534','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8015,'files','24535','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8016,'files','24536','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8017,'files','24537','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8018,'files','24538','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8019,'files','24539','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8020,'files','24540','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8021,'files','24541','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8022,'files','24542','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8023,'files','24543','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8024,'files','24544','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8025,'files','24545','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8026,'files','24546','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8027,'files','24547','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8028,'files','24548','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8029,'files','24549','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8030,'files','24550','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8031,'files','24551','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8032,'files','24552','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8033,'files','24553','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8034,'files','24554','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8035,'files','24555','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8036,'files','24556','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8037,'files','24557','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8038,'files','24558','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8039,'files','24559','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8040,'files','24560','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8041,'files','24561','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8042,'files','24562','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8043,'files','24563','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8044,'files','24564','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8045,'files','24565','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8046,'files','24566','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8047,'files','24567','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8048,'files','24568','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8049,'files','24569','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8050,'files','24570','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8051,'files','24571','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8052,'files','24572','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8053,'files','24573','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8054,'files','24574','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8055,'files','24575','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8056,'files','24576','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8057,'files','24577','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8058,'files','24578','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8059,'files','24579','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8060,'files','24580','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8061,'files','24581','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8062,'files','24582','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8063,'files','24583','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8064,'files','24584','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8065,'files','24585','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8066,'files','24586','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8067,'files','24587','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8068,'files','24588','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8069,'files','24589','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8070,'files','24590','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8071,'files','24591','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8072,'files','24592','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8073,'files','24593','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8074,'files','24594','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8075,'files','24595','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8076,'files','24596','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8077,'files','24597','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8078,'files','24598','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8079,'files','24599','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8080,'files','24600','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8081,'files','24601','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8082,'files','24603','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8083,'files','24605','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8084,'files','24606','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8085,'files','24607','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8086,'files','24608','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8087,'files','24609','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8088,'files','24610','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8089,'files','24611','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8090,'files','24612','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8091,'files','24613','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8092,'files','24614','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8093,'files','24615','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8094,'files','24616','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8095,'files','24617','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8096,'files','24618','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8097,'files','24619','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8098,'files','24620','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8099,'files','24621','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8100,'files','24622','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8101,'files','24623','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8102,'files','24624','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8103,'files','24625','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8104,'files','24626','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8105,'files','24627','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8106,'files','24628','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8107,'files','24629','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8108,'files','24630','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8109,'files','24631','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8110,'files','24632','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8111,'files','24633','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8112,'files','24634','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8113,'files','24635','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8114,'files','24636','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8115,'files','24637','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8116,'files','24638','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8117,'files','24639','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8118,'files','24640','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8119,'files','24641','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8120,'files','24642','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8121,'files','24643','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8122,'files','24644','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8123,'files','24645','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8124,'files','24646','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8125,'files','24647','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8126,'files','24648','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8127,'files','24649','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8128,'files','24650','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8129,'files','24651','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8130,'files','24652','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8131,'files','24653','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8132,'files','24654','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8133,'files','24655','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8134,'files','24656','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8135,'files','24657','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8136,'files','24658','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8137,'files','24659','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8138,'files','24660','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8139,'files','24661','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8140,'files','24662','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8141,'files','24663','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8142,'files','24664','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8143,'files','24665','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8144,'files','24666','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8145,'files','24667','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8146,'files','24668','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8147,'files','24669','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8148,'files','24670','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8149,'files','24671','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8150,'files','24672','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8151,'files','24673','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8152,'files','24674','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8153,'files','24675','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8154,'files','24676','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8155,'files','24677','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8156,'files','24678','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8157,'files','24679','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8158,'files','24680','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8159,'files','24681','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8160,'files','24682','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8161,'files','24683','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8162,'files','24684','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8163,'files','24685','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8164,'files','24686','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8165,'files','24687','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8166,'files','24688','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8167,'files','24689','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8168,'files','24690','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8169,'files','24691','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8170,'files','24692','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8171,'files','24693','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8172,'files','24694','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8173,'files','24695','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8174,'files','24696','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8175,'files','24697','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8176,'files','24698','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8177,'files','24699','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8178,'files','24700','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8179,'files','24701','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8180,'files','24702','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8181,'files','24703','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8182,'files','24704','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8183,'files','24705','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8184,'files','24706','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8185,'files','24707','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8186,'files','24708','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8187,'files','24709','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8188,'files','24710','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8189,'files','24711','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8190,'files','24712','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8191,'files','24713','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8192,'files','24714','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8193,'files','24715','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8194,'files','24716','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8195,'files','24717','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8196,'files','24718','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8197,'files','24719','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8198,'files','24720','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8199,'files','24721','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8200,'files','24722','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8201,'files','24723','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8202,'files','24724','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8203,'files','24725','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8204,'files','24726','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8205,'files','24727','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8206,'files','24728','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8207,'files','24729','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8208,'files','24730','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8209,'files','24731','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8210,'files','24732','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8211,'files','24733','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8212,'files','24734','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8213,'files','24735','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8214,'files','24736','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8215,'files','24737','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8216,'files','24738','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8217,'files','24739','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8218,'files','24740','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8219,'files','24741','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8220,'files','24742','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8221,'files','24743','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8222,'files','24744','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8223,'files','24745','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8224,'files','24746','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8225,'files','24747','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8226,'files','24748','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8227,'files','24749','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8228,'files','24750','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8229,'files','24751','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8230,'files','24752','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8231,'files','24753','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8232,'files','24754','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8233,'files','24755','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8234,'files','24756','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8235,'files','24757','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8236,'files','24758','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8237,'files','24759','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8238,'files','24760','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8239,'files','24761','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8240,'files','24762','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8241,'files','24763','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8242,'files','24764','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8243,'files','24765','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8244,'files','24766','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8245,'files','24767','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8246,'files','24768','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8247,'files','24769','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8248,'files','24770','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8249,'files','24774','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8250,'files','24775','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8251,'files','24776','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8252,'files','24777','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8253,'files','24778','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8254,'files','24779','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8255,'files','24780','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8256,'files','24781','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8257,'files','24782','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8258,'files','24783','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8259,'files','24784','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8260,'files','24785','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8261,'files','24786','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8262,'files','24787','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8263,'files','24788','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8264,'files','24789','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8265,'files','24790','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8266,'files','24791','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8267,'files','24792','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8268,'files','24793','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8269,'files','24794','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8270,'files','24795','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8271,'files','24796','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8272,'files','24797','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8273,'files','24798','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8274,'files','24799','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8275,'files','24800','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8276,'files','24801','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8277,'files','24802','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8278,'files','24803','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8279,'files','24804','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8280,'files','24805','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8281,'files','24806','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8282,'files','24807','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8283,'files','24808','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8284,'files','24809','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8285,'files','24810','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8286,'files','24811','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8287,'files','24812','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8288,'files','24813','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8289,'files','24814','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8290,'files','24815','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8291,'files','24816','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8292,'files','24817','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8293,'files','24818','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8294,'files','24819','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8295,'files','24820','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8296,'files','24821','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8297,'files','24822','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8298,'files','24823','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8299,'files','24824','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8300,'files','24825','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8301,'files','24826','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8302,'files','24827','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8303,'files','24828','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8304,'files','24829','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8305,'files','24830','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8306,'files','24831','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8307,'files','24832','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8308,'files','24833','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8309,'files','24834','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8310,'files','24835','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8311,'files','24836','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8312,'files','24837','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8313,'files','24838','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8314,'files','24839','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8315,'files','24840','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8316,'files','24841','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8317,'files','24842','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8318,'files','24843','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8319,'files','24844','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8320,'files','24845','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8321,'files','24846','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8322,'files','24847','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8323,'files','24848','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8324,'files','24849','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8325,'files','24850','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8326,'files','24851','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8327,'files','24852','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8328,'files','24853','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8329,'files','24854','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8330,'files','24855','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8331,'files','24856','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8332,'files','24857','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8333,'files','24858','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8334,'files','24859','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8335,'files','24860','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8336,'files','24861','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8337,'files','24862','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8338,'files','24863','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8339,'files','24864','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8340,'files','24865','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8341,'files','24866','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8342,'files','24867','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8343,'files','24868','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8344,'files','24869','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8345,'files','24870','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8346,'files','24871','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8347,'files','24872','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8348,'files','24873','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8349,'files','24874','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8350,'files','24875','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8351,'files','24876','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8352,'files','24877','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8353,'files','24878','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8354,'files','24879','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8355,'files','24880','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8356,'files','24881','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8357,'files','24882','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8358,'files','24884','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8359,'files','24885','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8360,'files','24886','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8361,'files','24887','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8362,'files','24888','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8363,'files','24889','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8364,'files','24890','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8365,'files','24891','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8366,'files','24892','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8367,'files','24893','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8368,'files','24894','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8369,'files','24895','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8370,'files','24896','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8371,'files','24897','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8372,'files','24898','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8373,'files','24899','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8374,'files','24900','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8375,'files','24901','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8376,'files','24902','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8377,'files','24903','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8378,'files','24904','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8379,'files','24905','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8380,'files','24906','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8381,'files','24907','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8382,'files','24908','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8383,'files','24909','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8384,'files','24910','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8385,'files','24911','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8386,'files','24912','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8387,'files','24913','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8388,'files','24914','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8389,'files','24915','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8390,'files','24916','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8391,'files','24917','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8392,'files','24918','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8393,'files','24919','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8394,'files','24920','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8395,'files','24921','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8396,'files','24922','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8397,'files','24923','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8398,'files','24924','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8399,'files','24925','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8400,'files','24926','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8401,'files','24927','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8402,'files','24928','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8403,'files','24929','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8404,'files','24930','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8405,'files','24931','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8406,'files','24932','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8407,'files','24933','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8408,'files','24934','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8409,'files','24935','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8410,'files','24936','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8411,'files','24937','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8412,'files','24938','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8413,'files','24939','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8414,'files','24940','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8415,'files','24941','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8416,'files','24942','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8417,'files','24943','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8418,'files','24944','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8419,'files','24945','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8420,'files','24946','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8421,'files','24947','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8422,'files','24948','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8423,'files','24949','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8424,'files','24950','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8425,'files','24951','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8426,'files','24952','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8427,'files','24953','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8428,'files','24954','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8429,'files','24955','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8430,'files','24956','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8431,'files','24957','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8432,'files','24958','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8433,'files','24959','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8434,'files','24960','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8435,'files','24961','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8436,'files','24962','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8437,'files','24963','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8438,'files','24964','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8439,'files','24965','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8440,'files','24966','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8441,'files','24967','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8442,'files','24968','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8443,'files','24969','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8444,'files','24970','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8445,'files','24971','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8446,'files','24972','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8447,'files','24973','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8448,'files','24974','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8449,'files','24975','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8450,'files','24977','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8451,'files','24978','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8452,'files','24979','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8453,'files','24980','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8454,'files','24981','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8455,'files','24982','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8456,'files','24983','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8457,'files','24984','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8458,'files','24985','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8459,'files','24987','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8460,'files','24989','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8461,'files','24990','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8462,'files','24993','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8463,'files','24994','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8464,'files','24996','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8465,'files','24997','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8466,'files','24999','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8467,'files','25000','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8468,'files','25001','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8469,'files','25002','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8470,'files','25003','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8471,'files','25004','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8472,'files','25005','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8473,'files','25006','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8474,'files','25007','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8475,'files','25008','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8476,'files','25009','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8477,'files','25010','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8478,'files','25011','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8479,'files','25012','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8480,'files','25013','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8481,'files','25014','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8482,'files','25015','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8483,'files','25016','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8484,'files','25018','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8485,'files','25020','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8486,'files','25021','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8487,'files','25022','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8488,'files','25023','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8489,'files','25024','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8490,'files','25025','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8491,'files','25026','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8492,'files','25027','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8493,'files','25028','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8494,'files','25029','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8495,'files','25030','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8496,'files','25031','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8497,'files','25032','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8498,'files','25033','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8499,'files','25035','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8500,'files','25036','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8501,'files','25038','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8502,'files','25039','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8503,'files','25040','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8504,'files','25041','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8505,'files','25042','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8506,'files','25043','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8507,'files','25044','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8508,'files','25045','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8509,'files','25046','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8510,'files','25047','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8511,'files','25048','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8512,'files','25050','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8513,'files','25051','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8514,'files','25052','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8515,'files','25053','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8516,'files','25054','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8517,'files','25055','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8518,'files','25056','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8519,'files','25057','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8520,'files','25058','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8521,'files','25059','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8522,'files','25060','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8523,'files','25061','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8524,'files','25062','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8525,'files','25063','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8526,'files','25064','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8527,'files','25065','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8528,'files','25067','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8529,'files','25068','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8530,'files','25069','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8531,'files','25070','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8532,'files','25071','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8533,'files','25072','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8534,'files','25073','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8535,'files','25074','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8536,'files','25075','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8537,'files','25076','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8538,'files','25077','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8539,'files','25078','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8540,'files','25079','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8541,'files','25080','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8542,'files','25081','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8543,'files','25082','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8544,'files','25083','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8545,'files','25084','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8546,'files','25085','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8547,'files','25086','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8548,'files','25087','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8549,'files','25088','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8550,'files','25089','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8551,'files','25090','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8552,'files','25091','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8553,'files','25092','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8554,'files','25093','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8555,'files','25094','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8556,'files','25095','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8557,'files','25096','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8558,'files','25097','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8559,'files','25098','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8560,'files','25099','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8561,'files','25100','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8562,'files','25101','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8563,'files','25102','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8564,'files','25103','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8565,'files','25104','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8566,'files','25105','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8567,'files','25106','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8568,'files','25107','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8569,'files','25108','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8570,'files','25109','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8571,'files','25110','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8572,'files','25111','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8573,'files','25112','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8574,'files','25113','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8575,'files','25114','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8576,'files','25115','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8577,'files','25116','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8578,'files','25117','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8579,'files','25118','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8580,'files','25119','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8581,'files','25120','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8582,'files','25121','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8583,'files','25122','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8584,'files','25123','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8585,'files','25124','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8586,'files','25125','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8587,'files','25126','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8588,'files','25127','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8589,'files','25128','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8590,'files','25129','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8591,'files','25130','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8592,'files','25131','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8593,'files','25132','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8594,'files','25133','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8595,'files','25134','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8596,'files','25135','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8597,'files','25136','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8598,'files','25137','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8599,'files','25138','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8600,'files','25139','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8601,'files','25140','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8602,'files','25141','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8603,'files','25142','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8604,'files','25143','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8605,'files','25144','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8606,'files','25145','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8607,'files','25146','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8608,'files','25147','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8609,'files','25148','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8610,'files','25149','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8611,'files','25150','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8612,'files','25151','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8613,'files','25152','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8614,'files','25153','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8615,'files','25154','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8616,'files','25156','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8617,'files','25157','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8618,'files','25158','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8619,'files','25159','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8620,'files','25160','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8621,'files','25161','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8622,'files','25162','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8623,'files','25164','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8624,'files','25165','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8625,'files','25166','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8626,'files','25167','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8627,'files','25168','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8628,'files','25169','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8629,'files','25170','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8630,'files','25171','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8631,'files','25172','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8632,'files','25173','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8633,'files','25174','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8634,'files','25175','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8635,'files','25176','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8636,'files','25177','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8637,'files','25178','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8638,'files','25179','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8639,'files','25180','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8640,'files','25181','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8641,'files','25182','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8642,'files','25183','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8643,'files','25184','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8644,'files','25185','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8645,'files','25187','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8646,'files','25188','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8647,'files','25189','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8648,'files','25190','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8649,'files','25191','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8650,'files','25192','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8651,'files','25193','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8652,'files','25194','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8653,'files','25195','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8654,'files','25196','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8655,'files','25197','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8656,'files','25198','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8657,'files','25199','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8658,'files','25200','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8659,'files','25201','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8660,'files','25202','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8661,'files','25203','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8662,'files','25204','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8663,'files','25205','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8664,'files','25206','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8665,'files','25207','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8666,'files','25208','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8667,'files','25209','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8668,'files','25210','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8669,'files','25211','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8670,'files','25212','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8671,'files','25214','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8672,'files','25217','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8673,'files','25218','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8674,'files','25219','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8675,'files','25220','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8676,'files','25221','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8677,'files','25222','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8678,'files','25224','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8679,'files','25225','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8680,'files','25226','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8681,'files','25227','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8682,'files','25229','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8683,'files','25230','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8684,'files','25231','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8685,'files','25232','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8686,'files','25233','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8687,'files','25234','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8688,'files','25235','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8689,'files','25236','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8690,'files','25237','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8691,'files','25238','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8692,'files','25239','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8693,'files','25240','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8694,'files','25241','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8695,'files','25242','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8696,'files','25243','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8697,'files','25244','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8698,'files','25245','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8699,'files','25246','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8700,'files','25247','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8701,'files','25248','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8702,'files','25249','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8703,'files','25250','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8704,'files','25251','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8705,'files','25252','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8706,'files','25253','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8707,'files','25254','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8708,'files','25255','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8709,'files','25256','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8710,'files','25257','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8711,'files','25258','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8712,'files','25259','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8713,'files','25260','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8714,'files','25261','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8715,'files','25262','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8716,'files','25263','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8717,'files','25264','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8718,'files','25265','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8719,'files','25266','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8720,'files','25267','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8721,'files','25268','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8722,'files','25269','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8723,'files','25270','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8724,'files','25271','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8725,'files','25272','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8726,'files','25273','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8727,'files','25274','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8728,'files','25275','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8729,'files','25276','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8730,'files','25277','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8731,'files','25278','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8732,'files','25279','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8733,'files','25280','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8734,'files','25281','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8735,'files','25282','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8736,'files','25283','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8737,'files','25284','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8738,'files','25285','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8739,'files','25286','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8740,'files','25287','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8741,'files','25288','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8742,'files','25289','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8743,'files','25290','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8744,'files','25291','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8745,'files','25292','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8746,'files','25293','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8747,'files','25294','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8748,'files','25295','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8749,'files','25296','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8750,'files','25297','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8751,'files','25298','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8752,'files','25299','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8753,'files','25300','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8754,'files','25301','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8755,'files','25302','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8756,'files','25303','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8757,'files','25304','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8758,'files','25305','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8759,'files','25306','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8760,'files','25307','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8761,'files','25308','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8762,'files','25309','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8763,'files','25310','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8764,'files','25311','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8765,'files','25312','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8766,'files','25313','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8767,'files','25314','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8768,'files','25315','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8769,'files','25316','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8770,'files','25317','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8771,'files','25318','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8772,'files','25319','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8773,'files','25320','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8774,'files','25321','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8775,'files','25322','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8776,'files','25323','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8777,'files','25324','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8778,'files','25325','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8779,'files','25326','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8780,'files','25327','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8781,'files','25328','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8782,'files','25329','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8783,'files','25330','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8784,'files','25331','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8785,'files','25332','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8786,'files','25333','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8787,'files','25334','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8788,'files','25335','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8789,'files','25336','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8790,'files','25337','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8791,'files','25338','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8792,'files','25339','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8793,'files','25340','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8794,'files','25341','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8795,'files','25342','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8796,'files','25343','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8797,'files','25344','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8798,'files','25345','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8799,'files','25346','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8800,'files','25347','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8801,'files','25348','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8802,'files','25349','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8803,'files','25350','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8804,'files','25351','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8805,'files','25352','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8806,'files','25353','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8807,'files','25354','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8808,'files','25355','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8809,'files','25356','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8810,'files','25357','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8811,'files','25358','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8812,'files','25359','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8813,'files','25360','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8814,'files','25361','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8815,'files','25362','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8816,'files','25363','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8817,'files','25364','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8818,'files','25365','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8819,'files','25366','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8820,'files','25367','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8821,'files','25368','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8822,'files','25369','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8823,'files','25370','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8824,'files','25371','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8825,'files','25372','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8826,'files','25373','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8827,'files','25374','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8828,'files','25375','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8829,'files','25376','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8830,'files','25377','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8831,'files','25378','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8832,'files','25379','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8833,'files','25380','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8834,'files','25381','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8835,'files','25382','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8836,'files','25383','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8837,'files','25384','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8838,'files','25385','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8839,'files','25386','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8840,'files','25387','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8841,'files','25388','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8842,'files','25389','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8843,'files','25390','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8844,'files','25391','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8845,'files','25392','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8846,'files','25393','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8847,'files','25394','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8848,'files','25395','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8849,'files','25396','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8850,'files','25397','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8851,'files','25398','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8852,'files','25400','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8853,'files','25401','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8854,'files','25402','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8855,'files','25405','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8856,'files','25406','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8857,'files','25407','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8858,'files','25408','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8859,'files','25409','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8860,'files','25410','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8861,'files','25411','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8862,'files','25412','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8863,'files','25413','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8864,'files','25414','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8865,'files','25415','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8866,'files','25416','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8867,'files','25417','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8868,'files','25418','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8869,'files','25419','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8870,'files','25420','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8871,'files','25421','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8872,'files','25422','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8873,'files','25423','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8874,'files','25424','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8875,'files','25425','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8876,'files','25426','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8877,'files','25427','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8878,'files','25428','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8879,'files','25429','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8880,'files','25430','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8881,'files','25431','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8882,'files','25432','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8883,'files','25433','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8884,'files','25434','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8885,'files','25435','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8886,'files','25436','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8887,'files','25437','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8888,'files','25438','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8889,'files','25439','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8890,'files','25440','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8891,'files','25441','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8892,'files','25442','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8893,'files','25443','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8894,'files','25444','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8895,'files','25445','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8896,'files','25446','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8897,'files','25447','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8898,'files','25448','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8899,'files','25449','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8900,'files','25450','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8901,'files','25451','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8902,'files','25452','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8903,'files','25453','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8904,'files','25454','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8905,'files','25455','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8906,'files','25456','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8907,'files','25457','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8908,'files','25458','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8909,'files','25459','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8910,'files','25460','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8911,'files','25461','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8912,'files','25462','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8913,'files','25463','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8914,'files','25464','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8915,'files','25465','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8916,'files','25466','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8917,'files','25467','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8918,'files','25468','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8919,'files','25469','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8920,'files','25470','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8921,'files','25471','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8922,'files','25472','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8923,'files','25473','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8924,'files','25474','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8925,'files','25475','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8926,'files','25476','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8927,'files','25477','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8928,'files','25478','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8929,'files','25479','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8930,'files','25480','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8931,'files','25481','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8932,'files','25482','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8933,'files','25483','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8934,'files','25484','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8935,'files','25485','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8936,'files','25486','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8937,'files','25487','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8938,'files','25488','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8939,'files','25489','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8940,'files','25490','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8941,'files','25491','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8942,'files','25492','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8943,'files','25493','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8944,'files','25494','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8945,'files','25495','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8946,'files','25496','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8947,'files','25498','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8948,'files','25499','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8949,'files','25500','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8950,'files','25501','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8951,'files','25502','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8952,'files','25503','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8953,'files','25504','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8954,'files','25505','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8955,'files','25506','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8956,'files','25507','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8957,'files','25508','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8958,'files','25509','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8959,'files','25510','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8960,'files','25511','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8961,'files','25512','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8962,'files','25513','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8963,'files','25514','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8964,'files','25515','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8965,'files','25516','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8966,'files','25517','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8967,'files','25518','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8968,'files','25519','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8969,'files','25520','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8970,'files','25521','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8971,'files','25522','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8972,'files','25523','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8973,'files','25524','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8974,'files','25525','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8975,'files','25526','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8976,'files','25527','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8977,'files','25528','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8978,'files','25529','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8979,'files','25530','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8980,'files','25531','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8981,'files','25532','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8982,'files','25533','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8983,'files','25534','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8984,'files','25535','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8985,'files','25536','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8986,'files','25537','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8987,'files','25538','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8988,'files','25539','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8989,'files','25540','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8990,'files','25541','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8991,'files','25542','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8992,'files','25543','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8993,'files','25544','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8994,'files','25545','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8995,'files','25546','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8996,'files','25547','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8997,'files','25548','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8998,'files','25549','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8999,'files','25550','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9000,'files','25551','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9001,'files','25552','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9002,'files','25553','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9003,'files','25554','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9004,'files','25555','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9005,'files','25556','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9006,'files','25557','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9007,'files','25558','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9008,'files','25559','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9009,'files','25560','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9010,'files','25561','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9011,'files','25562','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9012,'files','25563','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9013,'files','25564','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9014,'files','25565','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9015,'files','25566','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9016,'files','25567','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9017,'files','25568','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9018,'files','25569','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9019,'files','25570','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9020,'files','25571','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9021,'files','25572','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9022,'files','25573','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9023,'files','25574','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9024,'files','25575','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9025,'files','25576','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9026,'files','25577','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9027,'files','25578','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9028,'files','25579','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9029,'files','25580','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9030,'files','25581','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9031,'files','25582','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9032,'files','25583','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9033,'files','25584','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9034,'files','25585','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9035,'files','25586','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9036,'files','25587','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9037,'files','25588','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9038,'files','25589','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9039,'files','25590','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9040,'files','25591','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9041,'files','25592','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9042,'files','25593','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9043,'files','25594','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9044,'files','25595','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9045,'files','25596','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9046,'files','25597','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9047,'files','25598','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9048,'files','25599','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9049,'files','25600','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9050,'files','25601','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9051,'files','25602','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9052,'files','25603','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9053,'files','25604','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9054,'files','25605','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9055,'files','25606','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9056,'files','25607','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9057,'files','25608','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9058,'files','25609','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9059,'files','25610','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9060,'files','25611','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9061,'files','25612','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9062,'files','25613','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9063,'files','25614','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9064,'files','25615','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9065,'files','25616','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9066,'files','25617','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9067,'files','25618','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9068,'files','25619','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9069,'files','25620','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9070,'files','25621','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9071,'files','25622','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9072,'files','25623','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9073,'files','25624','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9074,'files','25625','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9075,'files','25626','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9076,'files','25627','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9077,'files','25628','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9078,'files','25629','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9079,'files','25630','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9080,'files','25631','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9081,'files','25632','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9082,'files','25633','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9083,'files','25634','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9084,'files','25635','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9085,'files','25636','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9086,'files','25637','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9087,'files','25638','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9088,'files','25639','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9089,'files','25640','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9090,'files','25641','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9091,'files','25642','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9092,'files','25643','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9093,'files','25644','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9094,'files','25645','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9095,'files','25647','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9096,'files','25649','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9097,'files','25650','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9098,'files','25651','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9099,'files','25652','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9100,'files','25653','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9101,'files','25654','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9102,'files','25655','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9103,'files','25656','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9104,'files','25657','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9105,'files','25658','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9106,'files','25659','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9107,'files','25660','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9108,'files','25661','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9109,'files','25662','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9110,'files','25663','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9111,'files','25664','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9112,'files','25665','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9113,'files','25666','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9114,'files','25667','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9115,'files','25668','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9116,'files','25669','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9117,'files','25670','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9118,'files','25671','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9119,'files','25672','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9120,'files','25673','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9121,'files','25674','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9122,'files','25675','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9123,'files','25676','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9124,'files','25677','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9125,'files','25678','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9126,'files','25679','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9127,'files','25680','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9128,'files','25681','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9129,'files','25682','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9130,'files','25683','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9131,'files','25684','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9132,'files','25685','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9133,'files','25686','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9134,'files','25687','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9135,'files','25688','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9136,'files','25689','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9137,'files','25690','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9138,'files','25691','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9139,'files','25692','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9140,'files','25693','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9141,'files','25694','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9142,'files','25695','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9143,'files','25696','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9144,'files','25697','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9145,'files','25698','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9146,'files','25699','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9147,'files','25700','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9148,'files','25701','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9149,'files','25702','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9150,'files','25703','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9151,'files','25704','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9152,'files','25705','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9153,'files','25706','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9154,'files','25707','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9155,'files','25708','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9156,'files','25709','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9157,'files','25710','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9158,'files','25711','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9159,'files','25712','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9160,'files','25713','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9161,'files','25714','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9162,'files','25715','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9163,'files','25716','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9164,'files','25717','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9165,'files','25718','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9166,'files','25719','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9167,'files','25720','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9168,'files','25721','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9169,'files','25722','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9170,'files','25723','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9171,'files','25724','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9172,'files','25725','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9173,'files','25726','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9174,'files','25727','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9175,'files','25728','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9176,'files','25729','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9177,'files','25730','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9178,'files','25731','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9179,'files','25732','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9180,'files','25733','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9181,'files','25734','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9182,'files','25735','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9183,'files','25736','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9184,'files','25737','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9185,'files','25738','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9186,'files','25739','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9187,'files','25740','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9188,'files','25741','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9189,'files','25742','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9190,'files','25743','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9191,'files','25744','error','Deal not found: 150',NULL,'2025-11-14 00:11:14'),
(9192,'files','25745','error','Deal not found: 150',NULL,'2025-11-14 00:11:14'),
(9193,'files','25746','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9194,'files','25747','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9195,'files','25748','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9196,'files','25749','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9197,'files','25750','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9198,'files','25751','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9199,'files','25752','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9200,'files','25753','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9201,'files','25754','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9202,'files','25755','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9203,'files','25756','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9204,'files','25757','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9205,'files','25758','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9206,'files','25759','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9207,'files','25760','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9208,'files','25761','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9209,'files','25762','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9210,'files','25763','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9211,'files','25764','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9212,'files','25765','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9213,'files','25766','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9214,'files','25767','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9215,'files','25768','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9216,'files','25769','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9217,'files','25770','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9218,'files','25771','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9219,'files','25772','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9220,'files','25773','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9221,'files','25774','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9222,'files','25775','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9223,'files','25776','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9224,'files','25777','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9225,'files','25778','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9226,'files','25779','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9227,'files','25780','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9228,'files','25781','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9229,'files','25782','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9230,'files','25783','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9231,'files','25784','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9232,'files','25786','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9233,'files','25787','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9234,'files','25788','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9235,'files','25789','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9236,'files','25790','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9237,'files','25791','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9238,'files','25792','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9239,'files','25793','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9240,'files','25794','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9241,'files','25795','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9242,'files','25796','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9243,'files','25797','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9244,'files','25798','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9245,'files','25799','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9246,'files','25800','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9247,'files','25801','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9248,'files','25802','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9249,'files','25803','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9250,'files','25804','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9251,'files','25805','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9252,'files','25806','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9253,'files','25807','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9254,'files','25808','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9255,'files','25809','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9256,'files','25812','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9257,'files','25813','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9258,'files','25814','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9259,'files','25815','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9260,'files','25816','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9261,'files','25817','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9262,'files','25818','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9263,'files','25819','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9264,'files','25820','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9265,'files','25821','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9266,'files','25822','error','Deal not found: 717',NULL,'2025-11-14 00:11:14'),
(9267,'files','25823','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9268,'files','25824','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9269,'files','25825','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9270,'files','25826','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9271,'files','25827','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9272,'files','25828','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9273,'files','25829','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9274,'files','25830','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9275,'files','25831','error','Deal not found: 717',NULL,'2025-11-14 00:11:14'),
(9276,'files','25832','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9277,'files','25833','error','Deal not found: 717',NULL,'2025-11-14 00:11:14'),
(9278,'files','25834','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9279,'files','25835','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9280,'files','25836','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9281,'files','25837','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9282,'files','25838','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9283,'files','25839','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9284,'files','25840','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9285,'files','25841','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9286,'files','25842','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9287,'files','25843','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9288,'files','25844','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9289,'files','25845','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9290,'files','25846','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9291,'files','25847','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9292,'files','25848','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9293,'files','25849','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9294,'files','25850','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9295,'files','25851','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9296,'files','25852','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9297,'files','25853','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9298,'files','25854','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9299,'files','25855','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9300,'files','25856','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9301,'files','25857','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9302,'files','25858','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9303,'files','25859','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9304,'files','25860','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9305,'files','25861','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9306,'files','25862','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9307,'files','25863','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9308,'files','25864','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9309,'files','25865','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9310,'files','25866','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9311,'files','25867','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9312,'files','25868','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9313,'files','25869','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9314,'files','25870','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9315,'files','25871','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9316,'files','25872','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9317,'files','25873','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9318,'files','25874','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9319,'files','25875','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9320,'files','25876','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9321,'files','25877','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9322,'files','25878','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9323,'files','25879','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9324,'files','25880','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9325,'files','25881','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9326,'files','25882','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9327,'files','25883','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9328,'files','25884','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9329,'files','25885','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9330,'files','25886','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9331,'files','25887','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9332,'files','25888','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9333,'files','25889','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9334,'files','25890','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9335,'files','25891','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9336,'files','25892','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9337,'files','25893','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9338,'files','25894','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9339,'files','25895','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9340,'files','25897','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9341,'files','25898','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9342,'files','25899','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9343,'files','25900','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9344,'files','25901','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9345,'files','25902','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9346,'files','25903','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9347,'files','25904','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9348,'files','25905','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9349,'files','25906','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9350,'files','25907','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9351,'files','25908','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9352,'files','25909','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9353,'files','25910','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9354,'files','25911','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9355,'files','25912','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9356,'files','25913','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9357,'files','25914','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9358,'files','25915','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9359,'files','25916','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9360,'files','25917','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9361,'files','25918','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9362,'files','25919','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9363,'files','25920','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9364,'files','25921','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9365,'files','25922','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9366,'files','25923','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9367,'files','25924','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9368,'files','25925','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9369,'files','25926','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9370,'files','25927','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9371,'files','25928','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9372,'files','25930','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9373,'files','25931','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9374,'files','25932','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9375,'files','25933','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9376,'files','25934','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9377,'files','25935','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9378,'files','25936','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9379,'files','25937','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9380,'files','25938','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9381,'files','25939','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9382,'files','25940','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9383,'files','25941','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9384,'files','25942','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9385,'files','25943','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9386,'files','25944','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9387,'files','25945','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9388,'files','25946','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9389,'files','25947','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9390,'files','25948','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9391,'files','25949','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9392,'files','25950','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9393,'files','25951','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9394,'files','25952','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9395,'files','25953','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9396,'files','25954','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9397,'files','25955','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9398,'files','25956','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9399,'files','25957','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9400,'files','25958','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9401,'files','25959','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9402,'files','25960','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9403,'files','25961','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9404,'files','25962','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9405,'files','25963','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9406,'files','25964','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9407,'files','25965','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9408,'files','25966','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9409,'files','25967','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9410,'files','25968','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9411,'files','25969','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9412,'files','25970','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9413,'files','25971','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9414,'files','25972','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9415,'files','25973','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9416,'files','25974','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9417,'files','25975','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9418,'files','25976','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9419,'files','25977','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9420,'files','25978','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9421,'files','25979','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9422,'files','25980','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9423,'files','25981','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9424,'files','25982','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9425,'files','25983','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9426,'files','25984','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9427,'files','25985','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9428,'files','25986','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9429,'files','25987','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9430,'files','25988','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9431,'files','25989','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9432,'files','25990','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9433,'files','25991','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9434,'files','25992','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9435,'files','25993','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9436,'files','25994','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9437,'files','25995','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9438,'files','25996','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9439,'files','25997','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9440,'files','25998','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9441,'files','25999','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9442,'files','26000','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9443,'files','26001','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9444,'files','26002','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9445,'files','26003','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9446,'files','26004','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9447,'files','26005','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9448,'files','26006','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9449,'files','26007','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9450,'files','26008','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9451,'files','26009','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9452,'files','26010','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9453,'files','26011','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9454,'files','26012','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9455,'files','26013','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9456,'files','26014','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9457,'files','26015','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9458,'files','26016','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9459,'files','26017','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9460,'files','26018','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9461,'files','26019','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9462,'files','26020','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9463,'files','26021','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9464,'files','26022','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9465,'files','26023','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9466,'files','26024','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9467,'files','26025','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9468,'files','26026','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9469,'files','26027','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9470,'files','26028','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9471,'files','26029','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9472,'files','26030','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9473,'files','26031','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9474,'files','26032','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9475,'files','26033','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9476,'files','26034','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9477,'files','26035','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9478,'files','26036','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9479,'files','26037','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9480,'files','26038','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9481,'files','26039','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9482,'files','26040','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9483,'files','26041','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9484,'files','26042','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9485,'files','26043','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9486,'files','26044','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9487,'files','26045','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9488,'files','26046','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9489,'files','26047','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9490,'files','26048','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9491,'files','26049','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9492,'files','26050','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9493,'files','26051','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9494,'files','26052','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9495,'files','26053','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9496,'files','26054','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9497,'files','26055','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9498,'files','26056','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9499,'files','26057','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9500,'files','26058','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9501,'files','26059','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9502,'files','26060','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9503,'files','26061','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9504,'files','26062','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9505,'files','26063','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9506,'files','26064','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9507,'files','26065','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9508,'files','26066','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9509,'files','26067','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9510,'files','26068','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9511,'files','26069','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9512,'files','26070','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9513,'files','26071','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9514,'files','26072','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9515,'files','26073','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9516,'files','26074','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9517,'files','26075','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9518,'files','26076','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9519,'files','26077','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9520,'files','26078','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9521,'files','26079','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9522,'files','26080','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9523,'files','26081','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9524,'files','26082','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9525,'files','26083','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9526,'files','26084','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9527,'files','26085','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9528,'files','26086','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9529,'files','26087','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9530,'files','26088','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9531,'files','26089','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9532,'files','26090','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9533,'files','26091','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9534,'files','26092','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9535,'files','26093','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9536,'files','26094','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9537,'files','26095','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9538,'files','26096','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9539,'files','26097','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9540,'files','26098','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9541,'files','26099','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9542,'files','26100','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9543,'files','26101','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9544,'files','26102','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9545,'files','26103','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9546,'files','26104','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9547,'files','26105','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9548,'files','26106','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9549,'files','26107','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9550,'files','26108','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9551,'files','26109','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9552,'files','26110','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9553,'files','26111','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9554,'files','26112','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9555,'files','26113','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9556,'files','26114','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9557,'files','26115','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9558,'files','26116','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9559,'files','26117','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9560,'files','26118','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9561,'files','26119','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9562,'files','26120','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9563,'files','26121','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9564,'files','26122','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9565,'files','26123','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9566,'files','26124','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9567,'files','26125','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9568,'files','26126','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9569,'files','26127','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9570,'files','26128','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9571,'files','26129','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9572,'files','26130','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9573,'files','26131','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9574,'files','26132','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9575,'files','26133','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9576,'files','26134','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9577,'files','26135','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9578,'files','26136','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9579,'files','26137','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9580,'files','26138','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9581,'files','26139','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9582,'files','26140','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9583,'files','26141','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9584,'files','26142','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9585,'files','26143','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9586,'files','26144','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9587,'files','26145','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9588,'files','26146','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9589,'files','26147','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9590,'files','26148','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9591,'files','26149','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9592,'files','26150','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9593,'files','26151','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9594,'files','26152','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9595,'files','26153','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9596,'files','26154','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9597,'files','26155','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9598,'files','26156','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9599,'files','26157','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9600,'files','26158','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9601,'files','26159','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9602,'files','26160','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9603,'files','26161','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9604,'files','26162','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9605,'files','26163','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9606,'files','26164','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9607,'files','26165','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9608,'files','26166','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9609,'files','26167','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9610,'files','26168','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9611,'files','26169','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9612,'files','26170','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9613,'files','26171','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9614,'files','26172','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9615,'files','26173','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9616,'files','26174','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9617,'files','26175','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9618,'files','26176','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9619,'files','26177','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9620,'files','26178','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9621,'files','26179','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9622,'files','26180','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9623,'files','26181','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9624,'files','26182','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9625,'files','26183','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9626,'files','26184','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9627,'files','26185','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9628,'files','26186','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9629,'files','26187','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9630,'files','26188','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9631,'files','26189','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9632,'files','26190','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9633,'files','26191','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9634,'files','26192','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9635,'files','26193','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9636,'files','26194','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9637,'files','26195','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9638,'files','26196','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9639,'files','26197','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9640,'files','26198','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9641,'files','26199','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9642,'files','26200','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9643,'files','26201','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9644,'files','26202','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9645,'files','26203','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9646,'files','26204','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9647,'files','26205','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9648,'files','26206','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9649,'files','26207','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9650,'files','26208','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9651,'files','26209','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9652,'files','26210','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9653,'files','26211','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9654,'files','26212','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9655,'files','26213','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9656,'files','26214','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9657,'files','26215','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9658,'files','26216','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9659,'files','26217','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9660,'files','26218','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9661,'files','26219','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9662,'files','26220','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9663,'files','26221','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9664,'files','26222','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9665,'files','26223','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9666,'files','26224','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9667,'files','26225','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9668,'files','26226','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9669,'files','26227','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9670,'files','26228','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9671,'files','26229','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9672,'files','26230','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9673,'files','26231','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9674,'files','26232','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9675,'files','26233','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9676,'files','26234','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9677,'files','26235','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9678,'files','26236','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9679,'files','26237','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9680,'files','26238','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9681,'files','26239','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9682,'files','26240','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9683,'files','26241','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9684,'files','26242','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9685,'files','26243','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9686,'files','26244','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9687,'files','26245','error','Deal not found: 375',NULL,'2025-11-14 00:11:14'),
(9688,'files','26246','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9689,'files','26247','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9690,'files','26248','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9691,'files','26249','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9692,'files','26250','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9693,'files','26251','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9694,'files','26252','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9695,'files','26254','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9696,'files','26258','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9697,'files','26259','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9698,'files','26260','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9699,'files','26261','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9700,'files','26262','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9701,'files','26263','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9702,'files','26264','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9703,'files','26265','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9704,'files','26266','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9705,'files','26267','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9706,'files','26268','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9707,'files','26269','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9708,'files','26270','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9709,'files','26271','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9710,'files','26272','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9711,'files','26273','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9712,'files','26274','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9713,'files','26275','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9714,'files','26276','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9715,'files','26277','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9716,'files','26278','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9717,'files','26279','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9718,'files','26280','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9719,'files','26281','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9720,'files','26282','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9721,'files','26283','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9722,'files','26284','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9723,'files','26285','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9724,'files','26286','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9725,'files','26287','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9726,'files','26288','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9727,'files','26289','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9728,'files','26290','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9729,'files','26291','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9730,'files','26292','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9731,'files','26293','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9732,'files','26294','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9733,'files','26295','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9734,'files','26296','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9735,'files','26298','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9736,'files','26299','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9737,'files','26300','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9738,'files','26301','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9739,'files','26302','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9740,'files','26303','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9741,'files','26304','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9742,'files','26305','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9743,'files','26306','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9744,'files','26307','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9745,'files','26308','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9746,'files','26309','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9747,'files','26310','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9748,'files','26311','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9749,'files','26312','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9750,'files','26313','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9751,'files','26314','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9752,'files','26315','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9753,'files','26316','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9754,'files','26317','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9755,'files','26318','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9756,'files','26319','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9757,'files','26320','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9758,'files','26321','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9759,'files','26322','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9760,'files','26323','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9761,'files','26324','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9762,'files','26325','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9763,'files','26326','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9764,'files','26327','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9765,'files','26328','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9766,'files','26329','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9767,'files','26330','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9768,'files','26331','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9769,'files','26332','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9770,'files','26333','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9771,'files','26334','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9772,'files','26335','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9773,'files','26336','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9774,'files','26337','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9775,'files','26338','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9776,'files','26339','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9777,'files','26340','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9778,'files','26341','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9779,'files','26342','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9780,'files','26343','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9781,'files','26344','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9782,'files','26345','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9783,'files','26346','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9784,'files','26347','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9785,'files','26348','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9786,'files','26349','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9787,'files','26350','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9788,'files','26351','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9789,'files','26352','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9790,'files','26353','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9791,'files','26354','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9792,'files','26355','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9793,'files','26356','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9794,'files','26357','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9795,'files','26358','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9796,'files','26359','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9797,'files','26360','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9798,'files','26361','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9799,'files','26362','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9800,'files','26363','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9801,'files','26364','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9802,'files','26365','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9803,'files','26366','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9804,'files','26367','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9805,'files','26368','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9806,'files','26369','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9807,'files','26370','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9808,'files','26371','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9809,'files','26372','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9810,'files','26373','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9811,'files','26374','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9812,'files','26375','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9813,'files','26376','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9814,'files','26377','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9815,'files','26378','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9816,'files','26379','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9817,'files','26380','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9818,'files','26381','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9819,'files','26382','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9820,'files','26383','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9821,'files','26384','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9822,'files','26385','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9823,'files','26386','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9824,'files','26387','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9825,'files','26388','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9826,'files','26389','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9827,'files','26390','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9828,'files','26391','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9829,'files','26392','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9830,'files','26393','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9831,'files','26394','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9832,'files','26395','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9833,'files','26396','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9834,'files','26397','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9835,'files','26398','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9836,'files','26399','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9837,'files','26400','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9838,'files','26401','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9839,'files','26402','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9840,'files','26403','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9841,'files','26404','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9842,'files','26405','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9843,'files','26406','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9844,'files','26407','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9845,'files','26408','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9846,'files','26409','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9847,'files','26410','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9848,'files','26411','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9849,'files','26412','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9850,'files','26413','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9851,'files','26414','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9852,'files','26415','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9853,'files','26416','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9854,'files','26417','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9855,'files','26418','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9856,'files','26419','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9857,'files','26420','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9858,'files','26421','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9859,'files','26422','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9860,'files','26423','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9861,'files','26424','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9862,'files','26425','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9863,'files','26426','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9864,'files','26427','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9865,'files','26428','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9866,'files','26429','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9867,'files','26430','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9868,'files','26431','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9869,'files','26432','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9870,'files','26433','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9871,'files','26434','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9872,'files','26435','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9873,'files','26436','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9874,'files','26437','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9875,'files','26438','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9876,'files','26439','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9877,'files','26440','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9878,'files','26441','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9879,'files','26442','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9880,'files','26443','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9881,'files','26444','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9882,'files','26445','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9883,'files','26446','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9884,'files','26447','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9885,'files','26448','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9886,'files','26450','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9887,'files','26451','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9888,'files','26452','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9889,'files','26453','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9890,'files','26454','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9891,'files','26455','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9892,'files','26456','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9893,'files','26457','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9894,'files','26458','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9895,'files','26459','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9896,'files','26460','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9897,'files','26461','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9898,'files','26462','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9899,'files','26463','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9900,'files','26464','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9901,'files','26465','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9902,'files','26466','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9903,'files','26467','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9904,'files','26468','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9905,'files','26469','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9906,'files','26470','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9907,'files','26471','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9908,'files','26472','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9909,'files','26473','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9910,'files','26474','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9911,'files','26475','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9912,'files','26476','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9913,'files','26477','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9914,'files','26478','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9915,'files','26479','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9916,'files','26481','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9917,'files','26482','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9918,'files','26483','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9919,'files','26484','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9920,'files','26485','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9921,'files','26486','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9922,'files','26487','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9923,'files','26488','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9924,'files','26489','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9925,'files','26490','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9926,'files','26491','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9927,'files','26492','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9928,'files','26493','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9929,'files','26494','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9930,'files','26495','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9931,'files','26496','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9932,'files','26497','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9933,'files','26498','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9934,'files','26499','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9935,'files','26500','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9936,'files','26501','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9937,'files','26502','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9938,'files','26503','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9939,'files','26504','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9940,'files','26505','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9941,'files','26506','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9942,'files','26507','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9943,'files','26508','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9944,'files','26509','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9945,'files','26510','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9946,'files','26511','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9947,'files','26512','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9948,'files','26513','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9949,'files','26514','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9950,'files','26515','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9951,'files','26516','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9952,'files','26517','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9953,'files','26518','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9954,'files','26519','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9955,'files','26520','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9956,'files','26521','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9957,'files','26522','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9958,'files','26523','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9959,'files','26524','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9960,'files','26525','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9961,'files','26526','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9962,'files','26527','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9963,'files','26528','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9964,'files','26529','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9965,'files','26530','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9966,'files','26531','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9967,'files','26532','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9968,'files','26533','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9969,'files','26534','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9970,'files','26535','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9971,'files','26536','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9972,'files','26537','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9973,'files','26538','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9974,'files','26539','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9975,'files','26540','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9976,'files','26541','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9977,'files','26542','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9978,'files','26543','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9979,'files','26544','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9980,'files','26545','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9981,'files','26546','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9982,'files','26547','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9983,'files','26548','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9984,'files','26549','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9985,'files','26550','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9986,'files','26551','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9987,'files','26552','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9988,'files','26553','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9989,'files','26554','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9990,'files','26555','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9991,'files','26556','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9992,'files','26557','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9993,'files','26558','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9994,'files','26559','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9995,'files','26560','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9996,'files','26561','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9997,'files','26562','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9998,'files','26563','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9999,'files','26564','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10000,'files','26565','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10001,'files','26566','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10002,'files','26567','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10003,'files','26568','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10004,'files','26569','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10005,'files','26570','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10006,'files','26571','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10007,'files','26572','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10008,'files','26573','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10009,'files','26574','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10010,'files','26575','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10011,'files','26576','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10012,'files','26577','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10013,'files','26578','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10014,'files','26579','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10015,'files','26580','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10016,'files','26581','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10017,'files','26582','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10018,'files','26583','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10019,'files','26584','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10020,'files','26585','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10021,'files','26586','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10022,'files','26587','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10023,'files','26588','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10024,'files','26589','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10025,'files','26590','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10026,'files','26591','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10027,'files','26592','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10028,'files','26594','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10029,'files','26595','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10030,'files','26596','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10031,'files','26597','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10032,'files','26598','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10033,'files','26599','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10034,'files','26600','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10035,'files','26601','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10036,'files','26602','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10037,'files','26603','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10038,'files','26604','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10039,'files','26605','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10040,'files','26606','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10041,'files','26607','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10042,'files','26608','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10043,'files','26609','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10044,'files','26610','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10045,'files','26611','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10046,'files','26612','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10047,'files','26613','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10048,'files','26614','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10049,'files','26615','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10050,'files','26616','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10051,'files','26617','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10052,'files','26618','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10053,'files','26619','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10054,'files','26620','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10055,'files','26621','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10056,'files','26622','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10057,'files','26623','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10058,'files','26624','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10059,'files','26625','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10060,'files','26626','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10061,'files','26627','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10062,'files','26628','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10063,'files','26629','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10064,'files','26630','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10065,'files','26631','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10066,'files','26632','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10067,'files','26633','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10068,'files','26634','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10069,'files','26635','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10070,'files','26636','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10071,'files','26637','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10072,'files','26638','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10073,'files','26639','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10074,'files','26640','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10075,'files','26641','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10076,'files','26642','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10077,'files','26643','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10078,'files','26644','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10079,'files','26645','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10080,'files','26646','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10081,'files','26647','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10082,'files','26648','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10083,'files','26649','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10084,'files','26650','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10085,'files','26651','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10086,'files','26652','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10087,'files','26653','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10088,'files','26654','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10089,'files','26655','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10090,'files','26656','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10091,'files','26657','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10092,'files','26658','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10093,'files','26660','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10094,'files','26661','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10095,'files','26662','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10096,'files','26663','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10097,'files','26664','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10098,'files','26665','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10099,'files','26666','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10100,'files','26667','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10101,'files','26668','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10102,'files','26669','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10103,'files','26670','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10104,'files','26671','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10105,'files','26672','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10106,'files','26673','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10107,'files','26674','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10108,'files','26675','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10109,'files','26676','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10110,'files','26677','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10111,'files','26678','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10112,'files','26679','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10113,'files','26680','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10114,'files','26681','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10115,'files','26682','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10116,'files','26683','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10117,'files','26684','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10118,'files','26685','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10119,'files','26686','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10120,'files','26687','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10121,'files','26688','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10122,'files','26689','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10123,'files','26690','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10124,'files','26691','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10125,'files','26692','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10126,'files','26693','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10127,'files','26694','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10128,'files','26695','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10129,'files','26696','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10130,'files','26697','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10131,'files','26698','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10132,'files','26699','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10133,'files','26700','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10134,'files','26701','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10135,'files','26702','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10136,'files','26703','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10137,'files','26704','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10138,'files','26705','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10139,'files','26706','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10140,'files','26707','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10141,'files','26708','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10142,'files','26709','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10143,'files','26710','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10144,'files','26711','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10145,'files','26712','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10146,'files','26713','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10147,'files','26714','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10148,'files','26715','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10149,'files','26716','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10150,'files','26717','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10151,'files','26718','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10152,'files','26719','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10153,'files','26720','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10154,'files','26721','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10155,'files','26722','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10156,'files','26723','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10157,'files','26724','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10158,'files','26725','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10159,'files','26726','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10160,'files','26727','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10161,'files','26728','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10162,'files','26729','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10163,'files','26730','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10164,'files','26732','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10165,'files','26733','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10166,'files','26734','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10167,'files','26735','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10168,'files','26736','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10169,'files','26737','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10170,'files','26738','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10171,'files','26739','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10172,'files','26740','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10173,'files','26741','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10174,'files','26742','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10175,'files','26743','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10176,'files','26744','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10177,'files','26745','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10178,'files','26746','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10179,'files','26747','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10180,'files','26748','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10181,'files','26749','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10182,'files','26750','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10183,'files','26751','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10184,'files','26752','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10185,'files','26753','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10186,'files','26754','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10187,'files','26755','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10188,'files','26756','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10189,'files','26757','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10190,'files','26758','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10191,'files','26759','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10192,'files','26760','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10193,'files','26761','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10194,'files','26762','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10195,'files','26763','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10196,'files','26764','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10197,'files','26765','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10198,'files','26766','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10199,'files','26767','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10200,'files','26768','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10201,'files','26769','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10202,'files','26770','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10203,'files','26771','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10204,'files','26772','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10205,'files','26773','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10206,'files','26774','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10207,'files','26775','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10208,'files','26776','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10209,'files','26777','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10210,'files','26778','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10211,'files','26779','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10212,'files','26780','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10213,'files','26781','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10214,'files','26782','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10215,'files','26783','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10216,'files','26784','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10217,'files','26785','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10218,'files','26786','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10219,'files','26787','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10220,'files','26788','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10221,'files','26789','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10222,'files','26790','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10223,'files','26791','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10224,'files','26792','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10225,'files','26793','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10226,'files','26794','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10227,'files','26795','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10228,'files','26798','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10229,'files','26799','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10230,'files','26800','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10231,'files','26801','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10232,'files','26802','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10233,'files','26803','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10234,'files','26804','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10235,'files','26805','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10236,'files','26806','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10237,'files','26807','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10238,'files','26808','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10239,'files','26812','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10240,'files','26813','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10241,'files','26814','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10242,'files','26815','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10243,'files','26816','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10244,'files','26817','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10245,'files','26818','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10246,'files','26819','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10247,'files','26820','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10248,'files','26821','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10249,'files','26822','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10250,'files','26823','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10251,'files','26825','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10252,'files','26826','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10253,'files','26827','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10254,'files','26828','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10255,'files','26829','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10256,'files','26830','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10257,'files','26831','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10258,'files','26832','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10259,'files','26833','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10260,'files','26834','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10261,'files','26835','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10262,'files','26836','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10263,'files','26837','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10264,'files','26838','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10265,'files','26839','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10266,'files','26840','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10267,'files','26841','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10268,'files','26842','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10269,'files','26843','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10270,'files','26844','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10271,'files','26845','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10272,'files','26846','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10273,'files','26847','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10274,'files','26848','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10275,'files','26849','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10276,'files','26850','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10277,'files','26851','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10278,'files','26852','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10279,'files','26853','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10280,'files','26854','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10281,'files','26855','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10282,'files','26856','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10283,'files','26857','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10284,'files','26858','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10285,'files','26859','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10286,'files','26860','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10287,'files','26861','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10288,'files','26862','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10289,'files','26863','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10290,'files','26864','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10291,'files','26865','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10292,'files','26866','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10293,'files','26867','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10294,'files','26868','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10295,'files','26869','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10296,'files','26870','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10297,'files','26871','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10298,'files','26872','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10299,'files','26873','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10300,'files','26874','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10301,'files','26875','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10302,'files','26876','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10303,'files','26877','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10304,'files','26878','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10305,'files','26879','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10306,'files','26880','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10307,'files','26881','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10308,'files','26882','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10309,'files','26883','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10310,'files','26884','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10311,'files','26885','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10312,'files','26886','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10313,'files','26887','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10314,'files','26888','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10315,'files','26889','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10316,'files','26890','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10317,'files','26891','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10318,'files','26892','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10319,'files','26893','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10320,'files','26894','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10321,'files','26895','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10322,'files','26896','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10323,'files','26897','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10324,'files','26898','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10325,'files','26899','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10326,'files','26900','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10327,'files','26901','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10328,'files','26902','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10329,'files','26903','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10330,'files','26904','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10331,'files','26905','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10332,'files','26906','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10333,'files','26907','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10334,'files','26908','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10335,'files','26909','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10336,'files','26910','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10337,'files','26911','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10338,'files','26912','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10339,'files','26913','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10340,'files','26914','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10341,'files','26915','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10342,'files','26916','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10343,'files','26917','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10344,'files','26918','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10345,'files','26919','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10346,'files','26920','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10347,'files','26921','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10348,'files','26922','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10349,'files','26923','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10350,'files','26924','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10351,'files','26925','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10352,'files','26926','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10353,'files','26927','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10354,'files','26928','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10355,'files','26929','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10356,'files','26930','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10357,'files','26931','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10358,'files','26932','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10359,'files','26933','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10360,'files','26934','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10361,'files','26935','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10362,'files','26936','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10363,'files','26937','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10364,'files','26938','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10365,'files','26939','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10366,'files','26940','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10367,'files','26941','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10368,'files','26942','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10369,'files','26943','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10370,'files','26944','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10371,'files','26945','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10372,'files','26946','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10373,'files','26947','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10374,'files','26948','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10375,'files','26950','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10376,'files','26952','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10377,'files','26953','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10378,'files','26954','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10379,'files','26955','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10380,'files','26956','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10381,'files','26957','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10382,'files','26958','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10383,'files','26959','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10384,'files','26960','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10385,'files','26961','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10386,'files','26962','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10387,'files','26963','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10388,'files','26964','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10389,'files','26965','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10390,'files','26967','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10391,'files','26968','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10392,'files','26969','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10393,'files','26970','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10394,'files','26971','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10395,'files','26972','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10396,'files','26973','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10397,'files','26974','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10398,'files','26975','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10399,'files','26976','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10400,'files','26977','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10401,'files','26978','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10402,'files','26979','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10403,'files','26980','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10404,'files','26981','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10405,'files','26982','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10406,'files','26983','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10407,'files','26984','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10408,'files','26985','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10409,'files','26986','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10410,'files','26987','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10411,'files','26988','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10412,'files','26989','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10413,'files','26990','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10414,'files','26991','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10415,'files','26992','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10416,'files','26993','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10417,'files','26994','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10418,'files','26995','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10419,'files','26996','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10420,'files','26997','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10421,'files','26998','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10422,'files','26999','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10423,'files','27000','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10424,'files','27001','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10425,'files','27002','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10426,'files','27003','error','Deal not found: 508',NULL,'2025-11-14 00:11:14'),
(10427,'files','27004','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10428,'files','27005','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10429,'files','27006','error','Deal not found: 196',NULL,'2025-11-14 00:11:14'),
(10430,'files','27007','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10431,'files','27008','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10432,'files','27009','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10433,'files','27010','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10434,'files','27011','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10435,'files','27012','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10436,'files','27013','error','Deal not found: 508',NULL,'2025-11-14 00:11:14'),
(10437,'files','27014','error','Deal not found: 212',NULL,'2025-11-14 00:11:14'),
(10438,'files','27015','error','Deal not found: 508',NULL,'2025-11-14 00:11:14'),
(10439,'files','27016','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10440,'files','27017','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10441,'files','27018','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10442,'files','27019','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10443,'files','27020','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10444,'files','27021','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10445,'files','27022','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10446,'files','27023','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10447,'files','27024','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10448,'files','27025','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10449,'files','27026','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10450,'files','27027','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10451,'files','27028','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10452,'files','27029','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10453,'files','27030','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10454,'files','27031','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10455,'files','27032','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10456,'files','27033','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10457,'files','27034','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10458,'files','27035','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10459,'files','27036','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10460,'files','27037','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10461,'files','27038','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10462,'files','27039','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10463,'files','27040','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10464,'files','27041','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10465,'files','27042','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10466,'files','27043','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10467,'files','27044','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10468,'files','27045','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10469,'files','27046','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10470,'files','27048','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10471,'files','27050','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10472,'files','27051','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10473,'files','27053','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10474,'files','27055','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10475,'files','27058','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10476,'files','27062','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10477,'files','27063','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10478,'files','27064','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10479,'files','27065','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10480,'files','27066','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10481,'files','27067','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10482,'files','27068','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10483,'files','27069','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10484,'files','27070','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10485,'files','27071','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10486,'files','27072','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10487,'files','27073','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10488,'files','27074','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10489,'files','27075','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10490,'files','27076','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10491,'files','27077','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10492,'files','27078','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10493,'files','27079','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10494,'files','27080','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10495,'files','27081','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10496,'files','27082','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10497,'files','27083','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10498,'files','27084','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10499,'files','27085','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10500,'files','27086','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10501,'files','27087','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10502,'files','27088','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10503,'files','27089','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10504,'files','27090','error','Deal not found: 256',NULL,'2025-11-14 00:11:14'),
(10505,'files','27091','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10506,'files','27092','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10507,'files','27093','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10508,'files','27094','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10509,'files','27095','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10510,'files','27096','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10511,'files','27097','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10512,'files','27098','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10513,'files','27099','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10514,'files','27100','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10515,'files','27101','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10516,'files','27102','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10517,'files','27103','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10518,'files','27104','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10519,'files','27106','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10520,'files','27108','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10521,'files','27109','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10522,'files','27110','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10523,'files','27111','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10524,'files','27112','error','Deal not found: 717',NULL,'2025-11-14 00:11:14'),
(10525,'files','27113','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10526,'files','27114','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10527,'files','27115','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10528,'files','27116','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10529,'files','27117','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10530,'files','27118','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10531,'files','27119','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10532,'files','27120','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10533,'files','27121','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10534,'files','27122','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10535,'files','27123','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10536,'files','27124','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10537,'files','27125','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10538,'files','27126','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10539,'files','27127','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10540,'files','27128','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10541,'files','27129','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10542,'files','27130','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10543,'files','27131','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10544,'files','27132','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10545,'files','27133','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10546,'files','27134','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10547,'files','27135','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10548,'files','27136','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10549,'files','27137','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10550,'files','27138','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10551,'files','27139','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10552,'files','27140','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10553,'files','27141','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10554,'files','27142','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10555,'files','27143','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10556,'files','27144','error','Deal not found: 192',NULL,'2025-11-14 00:11:14'),
(10557,'files','27145','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10558,'files','27146','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10559,'files','27147','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10560,'files','27148','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10561,'files','27149','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10562,'files','27150','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10563,'files','27151','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10564,'files','27152','error','Deal not found: 256',NULL,'2025-11-14 00:11:14'),
(10565,'files','27153','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10566,'files','27154','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10567,'files','27155','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10568,'files','27156','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10569,'files','27157','error','Deal not found: 508',NULL,'2025-11-14 00:11:14'),
(10570,'files','27158','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10571,'files','27159','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10572,'files','27160','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10573,'files','27161','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10574,'files','27162','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10575,'files','27163','error','Deal not found: 223',NULL,'2025-11-14 00:11:14'),
(10576,'files','27164','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10577,'files','27165','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10578,'files','27166','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10579,'files','27167','error','Deal not found: 223',NULL,'2025-11-14 00:11:14'),
(10580,'files','27168','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10581,'files','27169','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10582,'files','27170','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10583,'files','27171','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10584,'files','27172','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10585,'files','27173','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10586,'files','27174','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10587,'files','27175','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10588,'files','27176','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10589,'files','27177','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10590,'files','27178','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10591,'files','27179','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10592,'files','27180','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10593,'files','27181','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10594,'files','27182','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10595,'files','27183','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10596,'files','27184','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10597,'files','27185','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10598,'files','27186','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10599,'files','27187','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10600,'files','27188','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10601,'files','27189','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10602,'files','27190','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10603,'files','27191','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10604,'files','27192','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10605,'files','27193','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10606,'files','27194','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10607,'files','27195','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10608,'files','27196','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10609,'files','27197','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10610,'files','27198','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10611,'files','27199','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10612,'files','27200','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10613,'files','27201','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10614,'files','27202','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10615,'files','27203','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10616,'files','27204','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10617,'files','27205','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10618,'files','27208','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10619,'files','27209','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10620,'files','27210','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10621,'files','27211','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10622,'files','27212','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10623,'files','27213','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10624,'files','27214','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10625,'files','27215','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10626,'files','27216','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10627,'files','27217','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10628,'files','27218','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10629,'files','27219','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10630,'files','27220','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10631,'files','27221','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10632,'files','27222','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10633,'files','27223','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10634,'files','27224','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10635,'files','27225','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10636,'files','27226','error','Deal not found: 313',NULL,'2025-11-14 00:11:14'),
(10637,'files','27227','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10638,'files','27228','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10639,'files','27229','error','Deal not found: 313',NULL,'2025-11-14 00:11:14'),
(10640,'files','27230','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10641,'files','27231','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10642,'files','27232','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10643,'files','27233','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10644,'files','27234','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10645,'files','27235','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10646,'files','27236','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10647,'files','27237','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10648,'files','27238','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10649,'files','27239','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10650,'files','27240','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10651,'files','27241','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10652,'files','27242','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10653,'files','27243','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10654,'files','27244','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10655,'files','27245','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10656,'files','27246','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10657,'files','27247','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10658,'files','27248','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10659,'files','27249','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10660,'files','27250','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10661,'files','27251','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10662,'files','27252','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10663,'files','27253','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10664,'files','27254','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10665,'files','27255','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10666,'files','27256','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10667,'files','27257','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10668,'files','27258','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10669,'files','27259','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10670,'files','27260','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10671,'files','27261','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10672,'files','27262','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10673,'files','27263','error','Deal not found: 323',NULL,'2025-11-14 00:11:14'),
(10674,'files','27264','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10675,'files','27265','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10676,'files','27266','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10677,'files','27267','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10678,'files','27268','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10679,'files','27269','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10680,'files','27270','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10681,'files','27271','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10682,'files','27272','error','Deal not found: 323',NULL,'2025-11-14 00:11:14'),
(10683,'files','27273','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10684,'files','27274','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10685,'files','27275','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10686,'files','27276','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10687,'files','27278','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10688,'files','27280','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10689,'files','27285','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10690,'files','27286','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10691,'files','27289','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10692,'files','27290','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10693,'files','27291','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10694,'files','27292','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10695,'files','27293','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10696,'files','27294','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10697,'files','27295','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10698,'files','27296','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10699,'files','27297','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10700,'files','27298','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10701,'files','27299','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10702,'files','27300','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10703,'files','27301','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10704,'files','27302','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10705,'files','27303','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10706,'files','27304','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10707,'files','27305','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10708,'files','27306','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10709,'files','27307','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10710,'files','27308','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10711,'files','27309','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10712,'files','27310','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10713,'files','27311','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10714,'files','27312','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10715,'files','27313','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10716,'files','27314','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10717,'files','27315','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10718,'files','27316','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10719,'files','27317','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10720,'files','27318','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10721,'files','27319','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10722,'files','27320','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10723,'files','27322','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10724,'files','27323','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10725,'files','27324','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10726,'files','27325','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10727,'files','27326','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10728,'files','27327','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10729,'files','27328','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10730,'files','27329','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10731,'files','27332','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10732,'files','27333','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10733,'files','27334','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10734,'files','27335','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10735,'files','27336','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10736,'files','27337','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10737,'files','27338','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10738,'files','27339','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10739,'files','27340','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10740,'files','27341','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10741,'files','27342','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10742,'files','27343','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10743,'files','27344','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10744,'files','27345','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10745,'files','27346','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10746,'files','27347','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10747,'files','27348','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10748,'files','27349','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10749,'files','27350','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10750,'files','27351','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10751,'files','27352','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10752,'files','27353','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10753,'files','27354','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10754,'files','27355','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10755,'files','27356','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10756,'files','27357','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10757,'files','27358','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10758,'files','27359','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10759,'files','27360','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10760,'files','27361','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10761,'files','27362','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10762,'files','27363','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10763,'files','27364','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10764,'files','27365','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10765,'files','27366','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10766,'files','27367','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10767,'files','27368','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10768,'files','27369','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10769,'files','27370','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10770,'files','27371','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10771,'files','27372','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10772,'files','27373','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10773,'files','27374','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10774,'files','27375','error','Deal not found: 362',NULL,'2025-11-14 00:11:14'),
(10775,'files','27376','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10776,'files','27377','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10777,'files','27378','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10778,'files','27379','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10779,'files','27380','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10780,'files','27381','error','Deal not found: 257',NULL,'2025-11-14 00:11:14'),
(10781,'files','27382','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10782,'files','27383','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10783,'files','27384','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10784,'files','27385','error','Deal not found: 186',NULL,'2025-11-14 00:11:14'),
(10785,'files','27386','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10786,'files','27387','error','Deal not found: 528',NULL,'2025-11-14 00:11:14'),
(10787,'files','27388','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10788,'files','27389','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10789,'files','27390','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10790,'files','27391','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10791,'files','27392','error','Deal not found: 440',NULL,'2025-11-14 00:11:14'),
(10792,'files','27393','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10793,'files','27394','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10794,'files','27395','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10795,'files','27396','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10796,'files','27397','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10797,'files','27398','error','Deal not found: 486',NULL,'2025-11-14 00:11:14'),
(10798,'files','27399','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10799,'files','27400','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10800,'files','27401','error','Deal not found: 186',NULL,'2025-11-14 00:11:14'),
(10801,'files','27402','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10802,'files','27403','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10803,'files','27404','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10804,'files','27405','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10805,'files','27406','error','Deal not found: 518',NULL,'2025-11-14 00:11:14'),
(10806,'files','27407','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10807,'files','27408','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10808,'files','27409','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10809,'files','27410','error','Deal not found: 486',NULL,'2025-11-14 00:11:14'),
(10810,'files','27411','error','Deal not found: 462',NULL,'2025-11-14 00:11:14'),
(10811,'files','27412','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10812,'files','27413','error','Deal not found: 495',NULL,'2025-11-14 00:11:14'),
(10813,'files','27414','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10814,'files','27415','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10815,'files','27416','error','Deal not found: 466',NULL,'2025-11-14 00:11:14'),
(10816,'files','27417','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10817,'files','27418','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10818,'files','27419','error','Deal not found: 420',NULL,'2025-11-14 00:11:14'),
(10819,'files','27420','error','Deal not found: 548',NULL,'2025-11-14 00:11:14'),
(10820,'files','27421','error','Deal not found: 291',NULL,'2025-11-14 00:11:14'),
(10821,'files','27422','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10822,'files','27423','error','Deal not found: 339',NULL,'2025-11-14 00:11:14'),
(10823,'files','27424','error','Deal not found: 495',NULL,'2025-11-14 00:11:14'),
(10824,'files','27425','error','Deal not found: 495',NULL,'2025-11-14 00:11:14'),
(10825,'files','27426','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10826,'files','27427','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10827,'files','27428','error','Deal not found: 615',NULL,'2025-11-14 00:11:14'),
(10828,'files','27429','error','Deal not found: 623',NULL,'2025-11-14 00:11:14'),
(10829,'files','27430','error','Deal not found: 527',NULL,'2025-11-14 00:11:14'),
(10830,'files','27431','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10831,'files','27432','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10832,'files','27433','error','Deal not found: 213',NULL,'2025-11-14 00:11:14'),
(10833,'files','27434','error','Deal not found: 462',NULL,'2025-11-14 00:11:14'),
(10834,'files','27435','error','Deal not found: 390',NULL,'2025-11-14 00:11:14'),
(10835,'files','27436','error','Deal not found: 213',NULL,'2025-11-14 00:11:14'),
(10836,'files','27437','error','Deal not found: 462',NULL,'2025-11-14 00:11:14'),
(10837,'files','27438','error','Deal not found: 213',NULL,'2025-11-14 00:11:14'),
(10838,'files','27439','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10839,'files','27440','error','Deal not found: 410',NULL,'2025-11-14 00:11:14'),
(10840,'files','27441','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10841,'files','27442','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10842,'files','27443','error','Deal not found: 426',NULL,'2025-11-14 00:11:14'),
(10843,'files','27444','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10844,'files','27445','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10845,'files','27446','error','Deal not found: 483',NULL,'2025-11-14 00:11:14'),
(10846,'files','27447','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10847,'files','27448','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10848,'files','27449','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10849,'files','27450','error','Deal not found: 586',NULL,'2025-11-14 00:11:14'),
(10850,'files','27451','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10851,'files','27452','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10852,'files','27453','error','Deal not found: 472',NULL,'2025-11-14 00:11:14'),
(10853,'files','27454','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10854,'files','27455','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10855,'files','27456','error','Deal not found: 481',NULL,'2025-11-14 00:11:14'),
(10856,'files','27457','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10857,'files','27458','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10858,'files','27459','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10859,'files','27460','error','Deal not found: 291',NULL,'2025-11-14 00:11:14'),
(10860,'files','27461','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10861,'files','27462','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10862,'files','27463','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10863,'files','27464','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10864,'files','27465','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10865,'files','27467','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10866,'files','27468','error','Deal not found: 595',NULL,'2025-11-14 00:11:14'),
(10867,'files','27469','error','Deal not found: 619',NULL,'2025-11-14 00:11:14'),
(10868,'files','27470','error','Deal not found: 588',NULL,'2025-11-14 00:11:14'),
(10869,'files','27471','error','Deal not found: 606',NULL,'2025-11-14 00:11:14'),
(10870,'files','27472','error','Deal not found: 604',NULL,'2025-11-14 00:11:14'),
(10871,'files','27473','error','Deal not found: 582',NULL,'2025-11-14 00:11:14'),
(10872,'files','27474','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10873,'files','27475','error','Deal not found: 586',NULL,'2025-11-14 00:11:14'),
(10874,'files','27476','error','Deal not found: 257',NULL,'2025-11-14 00:11:14'),
(10875,'files','27477','error','Deal not found: 257',NULL,'2025-11-14 00:11:14'),
(10876,'files','27478','error','Deal not found: 599',NULL,'2025-11-14 00:11:14'),
(10877,'files','27479','error','Deal not found: 257',NULL,'2025-11-14 00:11:14'),
(10878,'files','27480','error','Deal not found: 508',NULL,'2025-11-14 00:11:14'),
(10879,'files','27481','error','Deal not found: 508',NULL,'2025-11-14 00:11:14'),
(10880,'files','27482','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10881,'files','27483','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10882,'files','27484','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10883,'files','27485','error','Deal not found: 604',NULL,'2025-11-14 00:11:14'),
(10884,'files','27486','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10885,'files','27487','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10886,'files','27488','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10887,'files','27489','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10888,'files','27490','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10889,'files','27491','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10890,'files','27492','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10891,'files','27493','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10892,'files','27494','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10893,'files','27495','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10894,'files','27496','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10895,'files','27497','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10896,'files','27498','error','Deal not found: 315',NULL,'2025-11-14 00:11:14'),
(10897,'files','27499','error','Deal not found: 315',NULL,'2025-11-14 00:11:14'),
(10898,'files','27500','error','Deal not found: 315',NULL,'2025-11-14 00:11:14'),
(10899,'files','27501','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10900,'files','27502','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10901,'files','27503','error','Deal not found: 508',NULL,'2025-11-14 00:11:14'),
(10902,'files','27504','error','Deal not found: 540',NULL,'2025-11-14 00:11:14'),
(10903,'files','27505','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10904,'files','27506','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10905,'files','27507','error','Deal not found: 540',NULL,'2025-11-14 00:11:14'),
(10906,'files','27508','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10907,'files','27509','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10908,'files','27510','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10909,'files','27511','error','Deal not found: 540',NULL,'2025-11-14 00:11:14'),
(10910,'files','27512','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10911,'files','27514','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10912,'files','27515','error','Deal not found: 460',NULL,'2025-11-14 00:11:14'),
(10913,'files','27516','error','Deal not found: 460',NULL,'2025-11-14 00:11:14'),
(10914,'files','27517','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10915,'files','27518','error','Deal not found: 315',NULL,'2025-11-14 00:11:14'),
(10916,'files','27519','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10917,'files','27520','error','Deal not found: 315',NULL,'2025-11-14 00:11:14'),
(10918,'files','27521','error','Deal not found: 315',NULL,'2025-11-14 00:11:14'),
(10919,'files','27522','error','Deal not found: 265',NULL,'2025-11-14 00:11:14'),
(10920,'files','27523','error','Deal not found: 265',NULL,'2025-11-14 00:11:14'),
(10921,'files','27524','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10922,'files','27525','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10923,'files','27526','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10924,'files','27527','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10925,'files','27528','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10926,'files','27529','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10927,'files','27530','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10928,'files','27531','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10929,'files','27532','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10930,'files','27533','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10931,'files','27534','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10932,'files','27535','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10933,'files','27536','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10934,'files','27537','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10935,'files','27538','error','Deal not found: 497',NULL,'2025-11-14 00:11:14'),
(10936,'files','27539','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10937,'files','27540','error','Deal not found: 497',NULL,'2025-11-14 00:11:14'),
(10938,'files','27541','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10939,'files','27542','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10940,'files','27543','error','Deal not found: 460',NULL,'2025-11-14 00:11:14'),
(10941,'files','27544','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10942,'files','27545','error','Deal not found: 460',NULL,'2025-11-14 00:11:14'),
(10943,'files','27546','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10944,'files','27547','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10945,'files','27548','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10946,'files','27549','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10947,'files','27550','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10948,'files','27551','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10949,'files','27552','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10950,'files','27553','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10951,'files','27554','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10952,'files','27555','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10953,'files','27556','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10954,'files','27557','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10955,'files','27558','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10956,'files','27559','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10957,'files','27560','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10958,'files','27561','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10959,'files','27562','error','Deal not found: 251',NULL,'2025-11-14 00:11:14'),
(10960,'files','27563','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10961,'files','27564','error','Deal not found: 677',NULL,'2025-11-14 00:11:14'),
(10962,'files','27565','error','Deal not found: 251',NULL,'2025-11-14 00:11:14'),
(10963,'files','27566','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10964,'files','27567','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10965,'files','27568','error','Deal not found: 249',NULL,'2025-11-14 00:11:14'),
(10966,'files','27569','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10967,'files','27570','error','Deal not found: 313',NULL,'2025-11-14 00:11:14'),
(10968,'files','27571','error','Deal not found: 313',NULL,'2025-11-14 00:11:14'),
(10969,'files','27572','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10970,'files','27573','error','Deal not found: 223',NULL,'2025-11-14 00:11:14'),
(10971,'files','27574','error','Deal not found: 223',NULL,'2025-11-14 00:11:14'),
(10972,'files','27575','error','Deal not found: 223',NULL,'2025-11-14 00:11:14'),
(10973,'files','27576','error','Deal not found: 604',NULL,'2025-11-14 00:11:14'),
(10974,'files','27577','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10975,'files','27578','error','Deal not found: 466',NULL,'2025-11-14 00:11:14'),
(10976,'files','27579','error','Deal not found: 466',NULL,'2025-11-14 00:11:14'),
(10977,'files','27580','error','Deal not found: 466',NULL,'2025-11-14 00:11:14'),
(10978,'files','27581','error','Deal not found: 466',NULL,'2025-11-14 00:11:14'),
(10979,'files','27582','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10980,'files','27583','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10981,'files','27584','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10982,'files','27585','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10983,'files','27586','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10984,'files','27587','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10985,'files','27588','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10986,'files','27589','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10987,'files','27590','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10988,'files','27591','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10989,'files','27592','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10990,'files','27593','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10991,'files','27594','error','Deal not found: 150',NULL,'2025-11-14 00:11:14'),
(10992,'files','27595','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10993,'files','27596','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10994,'files','27597','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10995,'files','27598','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10996,'files','27599','error','Deal not found: 150',NULL,'2025-11-14 00:11:14'),
(10997,'files','27600','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10998,'files','27601','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10999,'files','27602','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11000,'files','27603','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11001,'files','27604','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11002,'files','27605','error','Deal not found: 249',NULL,'2025-11-14 00:11:14'),
(11003,'files','27606','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11004,'files','27607','error','Deal not found: 700',NULL,'2025-11-14 00:11:14'),
(11005,'files','27608','error','Deal not found: 636',NULL,'2025-11-14 00:11:14'),
(11006,'files','27609','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11007,'files','27610','error','Deal not found: 700',NULL,'2025-11-14 00:11:14'),
(11008,'files','27611','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11009,'files','27612','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11010,'files','27613','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11011,'files','27614','error','Deal not found: 249',NULL,'2025-11-14 00:11:14'),
(11012,'files','27615','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11013,'files','27616','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11014,'files','27617','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11015,'files','27618','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11016,'files','27619','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11017,'files','27620','error','Deal not found: 708',NULL,'2025-11-14 00:11:14'),
(11018,'files','27621','error','Deal not found: 627',NULL,'2025-11-14 00:11:14'),
(11019,'files','27622','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11020,'files','27623','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11021,'files','27624','error','Deal not found: 708',NULL,'2025-11-14 00:11:14'),
(11022,'files','27625','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11023,'files','27626','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11024,'files','27627','error','Deal not found: 627',NULL,'2025-11-14 00:11:14'),
(11025,'files','27628','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11026,'files','27629','error','Deal not found: 636',NULL,'2025-11-14 00:11:14'),
(11027,'files','27630','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11028,'files','27631','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11029,'files','27632','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11030,'files','27633','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11031,'files','27634','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11032,'files','27635','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11033,'files','27636','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11034,'files','27637','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11035,'files','27638','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11036,'files','27639','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11037,'files','27640','error','Deal not found: 442',NULL,'2025-11-14 00:11:14'),
(11038,'files','27641','error','Deal not found: 442',NULL,'2025-11-14 00:11:14'),
(11039,'files','27642','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11040,'files','27643','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11041,'files','27644','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11042,'files','27645','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11043,'files','27646','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11044,'files','27647','error','Deal not found: 636',NULL,'2025-11-14 00:11:14'),
(11045,'files','27648','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11046,'files','27649','error','Deal not found: 249',NULL,'2025-11-14 00:11:14'),
(11047,'files','27650','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11048,'files','27651','error','Deal not found: 249',NULL,'2025-11-14 00:11:14'),
(11049,'files','27652','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11050,'files','27653','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11051,'files','27654','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11052,'files','27655','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11053,'files','27657','error','Deal not found: 443',NULL,'2025-11-14 00:11:14'),
(11054,'files','27658','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11055,'files','27659','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11056,'files','27660','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11057,'files','27661','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11058,'files','27662','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11059,'files','27663','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11060,'files','27664','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11061,'files','27665','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11062,'files','27666','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11063,'files','27667','error','Deal not found: 249',NULL,'2025-11-14 00:11:14'),
(11064,'files','27668','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11065,'files','27669','error','Deal not found: 204',NULL,'2025-11-14 00:11:14'),
(11066,'files','27670','error','Deal not found: 249',NULL,'2025-11-14 00:11:14'),
(11067,'files','27671','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11068,'files','27672','error','Deal not found: 204',NULL,'2025-11-14 00:11:14'),
(11069,'files','27673','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11070,'files','27674','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11071,'files','27675','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11072,'files','27676','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11073,'files','27677','error','Deal not found: 717',NULL,'2025-11-14 00:11:14'),
(11074,'files','27678','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11075,'files','27679','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11076,'files','27680','error','Deal not found: 717',NULL,'2025-11-14 00:11:14'),
(11077,'files','27681','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11078,'files','27682','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11079,'files','27683','error','Deal not found: 730',NULL,'2025-11-14 00:11:14'),
(11080,'files','27684','error','Deal not found: 730',NULL,'2025-11-14 00:11:14'),
(11081,'files','27685','error','Deal not found: 61',NULL,'2025-11-14 00:11:14'),
(11082,'files','27686','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11083,'files','27687','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11084,'files','27688','error','Deal not found: 61',NULL,'2025-11-14 00:11:14'),
(11085,'files','27689','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11086,'files','27690','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11087,'files','27691','error','Deal not found: 733',NULL,'2025-11-14 00:11:14'),
(11088,'files','27692','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11089,'files','27693','error','Deal not found: 733',NULL,'2025-11-14 00:11:14'),
(11090,'files','27694','error','Deal not found: 287',NULL,'2025-11-14 00:11:14'),
(11091,'files','27695','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11092,'files','27696','error','Deal not found: 249',NULL,'2025-11-14 00:11:14'),
(11093,'files','27697','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11094,'files','27698','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11095,'files','27699','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11096,'files','27700','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11097,'files','27701','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11098,'files','27702','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11099,'files','27703','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11100,'files','27704','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11101,'files','27705','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11102,'files','27706','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11103,'files','27707','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11104,'files','27708','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11105,'files','27709','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11106,'files','27710','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11107,'files','27711','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11108,'files','27712','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11109,'files','27713','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11110,'files','27714','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11111,'files','27715','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11112,'files','27716','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11113,'files','27717','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11114,'files','27718','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11115,'files','27719','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11116,'files','27720','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11117,'files','27721','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11118,'files','27722','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11119,'files','27723','error','Deal not found: 323',NULL,'2025-11-14 00:11:14'),
(11120,'files','27724','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11121,'files','27725','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11122,'files','27726','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11123,'files','27727','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11124,'files','27728','error','Deal not found: 323',NULL,'2025-11-14 00:11:14'),
(11125,'files','27729','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11126,'files','27730','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11127,'files','27731','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11128,'files','27732','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11129,'files','27733','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11130,'files','27734','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11131,'files','27735','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11132,'files','27736','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11133,'files','27737','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11134,'files','27738','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11135,'files','27739','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11136,'files','27740','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11137,'files','27741','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11138,'files','27742','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11139,'files','27743','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11140,'files','27744','error','Deal not found: 759',NULL,'2025-11-14 00:11:14'),
(11141,'files','27745','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11142,'files','27746','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11143,'files','27747','error','Deal not found: 265',NULL,'2025-11-14 00:11:14'),
(11144,'files','27748','error','Deal not found: 265',NULL,'2025-11-14 00:11:14'),
(11145,'files','27749','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11146,'files','27750','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11147,'files','27751','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11148,'files','27752','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11149,'files','27753','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11150,'files','27754','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11151,'files','27755','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11152,'files','27756','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11153,'files','27757','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11154,'files','27758','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11155,'files','27759','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11156,'files','27760','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11157,'files','27761','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11158,'files','27762','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11159,'files','27763','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11160,'files','27764','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11161,'files','27765','error','Deal not found: 466',NULL,'2025-11-14 00:11:14'),
(11162,'files','27766','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11163,'files','27767','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11164,'files','27768','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11165,'files','27769','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11166,'files','27770','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11167,'files','27771','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11168,'files','27772','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11169,'files','27773','error','Deal not found: 466',NULL,'2025-11-14 00:11:14'),
(11170,'files','27774','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11171,'files','27775','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11172,'files','27776','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11173,'files','27777','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11174,'files','27778','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11175,'files','27779','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11176,'files','27780','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11177,'files','27781','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11178,'files','27782','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11179,'files','27783','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11180,'files','27784','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11181,'files','27785','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11182,'files','27786','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11183,'files','27787','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11184,'files','27788','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11185,'files','27789','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11186,'files','27790','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11187,'files','27791','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11188,'files','27792','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11189,'files','27793','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11190,'files','27794','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11191,'files','27795','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11192,'files','27796','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11193,'files','27797','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11194,'files','27798','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11195,'files','27799','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11196,'files','27800','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11197,'files','27801','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11198,'files','27802','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11199,'files','27803','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11200,'files','27804','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11201,'files','27805','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11202,'files','27807','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11203,'files','27808','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11204,'files','27810','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11205,'files','27812','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11206,'files','27813','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11207,'files','27814','error','Deal not found: 278',NULL,'2025-11-14 00:11:14'),
(11208,'files','27815','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11209,'files','27816','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11210,'files','27817','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11211,'files','27818','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11212,'files','27819','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11213,'files','27820','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11214,'files','27821','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11215,'files','27822','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11216,'files','27823','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11217,'files','27824','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11218,'files','27825','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11219,'files','27826','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11220,'files','27827','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11221,'files','27828','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11222,'files','27829','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11223,'files','27830','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11224,'files','27831','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11225,'files','27832','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11226,'files','27833','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11227,'files','27834','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11228,'files','27835','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11229,'files','27836','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11230,'files','27837','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11231,'files','27838','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11232,'files','27839','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11233,'files','27840','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11234,'files','27841','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11235,'files','27842','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11236,'files','27843','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11237,'files','27844','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11238,'files','27845','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11239,'files','27846','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11240,'files','27847','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11241,'files','27848','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11242,'files','27849','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11243,'files','27850','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11244,'files','27851','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11245,'files','27852','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11246,'files','27853','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11247,'files','27854','error','Deal not found: 708',NULL,'2025-11-14 00:11:14'),
(11248,'files','27855','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11249,'files','27856','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11250,'files','27857','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11251,'files','27858','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11252,'files','27859','error','Deal not found: 708',NULL,'2025-11-14 00:11:14'),
(11253,'files','27860','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11254,'files','27861','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11255,'files','27862','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11256,'files','27863','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11257,'files','27864','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11258,'files','27865','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11259,'files','27866','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11260,'files','27867','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11261,'files','27868','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11262,'files','27869','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11263,'files','27870','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11264,'files','27871','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11265,'files','27872','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11266,'files','27873','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11267,'files','27874','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11268,'files','27875','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11269,'files','27876','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11270,'files','27877','error','Deal not found: 542',NULL,'2025-11-14 00:11:14'),
(11271,'files','27878','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11272,'files','27879','error','Deal not found: 542',NULL,'2025-11-14 00:11:14'),
(11273,'files','27880','error','Deal not found: 542',NULL,'2025-11-14 00:11:14'),
(11274,'files','27881','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11275,'files','27882','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11276,'files','27883','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11277,'files','27884','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11278,'files','27885','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11279,'files','27886','error','Deal not found: 256',NULL,'2025-11-14 00:11:14'),
(11280,'files','27887','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11281,'files','27888','error','Deal not found: 256',NULL,'2025-11-14 00:11:14'),
(11282,'files','27889','error','Deal not found: 362',NULL,'2025-11-14 00:11:14'),
(11283,'files','27890','error','Deal not found: 362',NULL,'2025-11-14 00:11:14'),
(11284,'files','27891','error','Deal not found: 251',NULL,'2025-11-14 00:11:14'),
(11285,'files','27892','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11286,'files','27893','error','Deal not found: 251',NULL,'2025-11-14 00:11:14'),
(11287,'files','27895','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11288,'files','27897','error','Deal not found: 192',NULL,'2025-11-14 00:11:14'),
(11289,'files','27898','error','Deal not found: 717',NULL,'2025-11-14 00:11:14'),
(11290,'files','27899','error','Deal not found: 192',NULL,'2025-11-14 00:11:14'),
(11291,'files','27900','error','Deal not found: 717',NULL,'2025-11-14 00:11:14'),
(11292,'files','27901','error','Deal not found: 192',NULL,'2025-11-14 00:11:14'),
(11293,'files','27902','error','Deal not found: 717',NULL,'2025-11-14 00:11:14'),
(11294,'files','27903','error','Deal not found: 223',NULL,'2025-11-14 00:11:14'),
(11295,'files','27904','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11296,'files','27905','error','Deal not found: 223',NULL,'2025-11-14 00:11:14'),
(11297,'files','27906','error','Deal not found: 223',NULL,'2025-11-14 00:11:14'),
(11298,'files','27907','error','Deal not found: 627',NULL,'2025-11-14 00:11:14'),
(11299,'files','27908','error','Deal not found: 627',NULL,'2025-11-14 00:11:14'),
(11300,'files','27909','error','Deal not found: 627',NULL,'2025-11-14 00:11:14'),
(11301,'files','27910','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11302,'files','27911','error','Deal not found: 710',NULL,'2025-11-14 00:11:14'),
(11303,'files','27912','error','Deal not found: 710',NULL,'2025-11-14 00:11:14'),
(11304,'files','27913','error','Deal not found: 710',NULL,'2025-11-14 00:11:14'),
(11305,'files','27914','error','Deal not found: 939',NULL,'2025-11-14 00:11:14'),
(11306,'files','27915','error','Deal not found: 939',NULL,'2025-11-14 00:11:14'),
(11307,'files','27916','error','Deal not found: 939',NULL,'2025-11-14 00:11:14'),
(11308,'files','27917','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11309,'files','27918','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11310,'files','27919','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11311,'files','27920','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11312,'files','27921','error','Deal not found: 990',NULL,'2025-11-14 00:11:14'),
(11313,'files','27922','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11314,'files','27923','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11315,'files','27924','error','Deal not found: 990',NULL,'2025-11-14 00:11:14'),
(11316,'files','27925','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11317,'files','27926','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11318,'files','27927','error','Deal not found: 990',NULL,'2025-11-14 00:11:14'),
(11319,'files','27928','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11320,'files','27929','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11321,'files','27930','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11322,'files','27931','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11323,'files','27932','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11324,'files','27933','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11325,'files','27934','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11326,'files','27935','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11327,'files','27936','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11328,'files','27937','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11329,'files','27938','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11330,'files','27939','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11331,'files','27940','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11332,'files','27941','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11333,'files','27942','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11334,'files','27943','error','Deal not found: 323',NULL,'2025-11-14 00:11:14'),
(11335,'files','27944','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11336,'files','27945','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11337,'files','27946','error','Deal not found: 998',NULL,'2025-11-14 00:11:14'),
(11338,'files','27947','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11339,'files','27948','error','Deal not found: 998',NULL,'2025-11-14 00:11:14'),
(11340,'files','27949','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11341,'files','27950','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11342,'files','27951','error','Deal not found: 998',NULL,'2025-11-14 00:11:14'),
(11343,'files','27952','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11344,'files','27953','error','Deal not found: 1009',NULL,'2025-11-14 00:11:14'),
(11345,'files','27954','error','Deal not found: 1009',NULL,'2025-11-14 00:11:14'),
(11346,'files','27955','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11347,'files','27956','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11348,'files','27957','error','Deal not found: 1009',NULL,'2025-11-14 00:11:14'),
(11349,'files','27958','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11350,'files','27959','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11351,'files','27960','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11352,'files','27961','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11353,'files','27962','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11354,'files','27963','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11355,'files','27964','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11356,'files','27965','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11357,'files','27966','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11358,'files','27967','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11359,'files','27968','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11360,'files','27969','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11361,'files','27970','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11362,'files','27971','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11363,'files','27972','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11364,'files','27973','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11365,'files','27974','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11366,'files','27976','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11367,'files','27977','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11368,'files','27978','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11369,'files','27979','error','Deal not found: 1013',NULL,'2025-11-14 00:11:14'),
(11370,'files','27980','error','Deal not found: 1724',NULL,'2025-11-14 00:11:14'),
(11371,'files','27981','error','Deal not found: 1013',NULL,'2025-11-14 00:11:14'),
(11372,'files','27982','error','Deal not found: 1724',NULL,'2025-11-14 00:11:14'),
(11373,'files','27983','error','Deal not found: 1013',NULL,'2025-11-14 00:11:14'),
(11374,'files','27984','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11375,'files','27985','error','Deal not found: 1724',NULL,'2025-11-14 00:11:14'),
(11376,'files','27986','error','Deal not found: 1724',NULL,'2025-11-14 00:11:14'),
(11377,'files','27987','error','Deal not found: 1006',NULL,'2025-11-14 00:11:14'),
(11378,'files','27988','error','Deal not found: 1006',NULL,'2025-11-14 00:11:14'),
(11379,'files','27989','error','Deal not found: 1006',NULL,'2025-11-14 00:11:14'),
(11380,'files','27990','error','Deal not found: 986',NULL,'2025-11-14 00:11:14'),
(11381,'files','27991','error','Deal not found: 986',NULL,'2025-11-14 00:11:14'),
(11382,'files','27992','error','Deal not found: 986',NULL,'2025-11-14 00:11:14'),
(11383,'files','27993','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11384,'files','27994','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11385,'files','27995','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11386,'files','27996','error','Deal not found: 714',NULL,'2025-11-14 00:11:14'),
(11387,'files','27997','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11388,'files','27998','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11389,'files','27999','error','Deal not found: 714',NULL,'2025-11-14 00:11:14'),
(11390,'files','28000','error','Deal not found: 714',NULL,'2025-11-14 00:11:14'),
(11391,'files','28001','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11392,'files','28002','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11393,'files','28003','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11394,'files','28005','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11395,'files','28006','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11396,'files','28007','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11397,'files','28008','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11398,'files','28009','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11399,'files','28010','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11400,'files','28011','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11401,'files','28012','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11402,'files','28013','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11403,'files','28014','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11404,'files','28015','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11405,'files','28016','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11406,'files','28017','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11407,'files','28018','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11408,'files','28019','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11409,'files','28020','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11410,'files','28021','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11411,'files','28022','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11412,'files','28023','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11413,'files','28024','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11414,'files','28025','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11415,'files','28026','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11416,'files','28027','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11417,'files','28028','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11418,'files','28029','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11419,'files','28030','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11420,'files','28031','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11421,'files','28032','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11422,'files','28033','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11423,'files','28034','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11424,'files','28035','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11425,'files','28036','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11426,'files','28037','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11427,'files','28038','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11428,'files','28039','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11429,'files','28040','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11430,'files','28041','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11431,'files','28042','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11432,'files','28043','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11433,'files','28044','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11434,'files','28045','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11435,'files','28046','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11436,'files','28047','error','Deal not found: 1724',NULL,'2025-11-14 00:11:14'),
(11437,'files','28048','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11438,'files','28049','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11439,'files','28050','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11440,'files','28051','error','Deal not found: 1724',NULL,'2025-11-14 00:11:14'),
(11441,'files','28052','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11442,'files','28053','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11443,'files','28054','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11444,'files','28055','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11445,'files','28056','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11446,'files','28057','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11447,'files','28058','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11448,'files','28059','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11449,'files','28060','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11450,'files','28061','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11451,'files','28062','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11452,'files','28063','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11453,'files','28064','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11454,'files','28065','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11455,'files','28066','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11456,'files','28067','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11457,'files','28068','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11458,'files','28070','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11459,'files','28071','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11460,'files','28072','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11461,'files','28073','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11462,'files','28074','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11463,'files','28075','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11464,'files','28077','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11465,'files','28078','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11466,'files','28079','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11467,'files','28080','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11468,'files','28081','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11469,'files','28082','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11470,'files','28083','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11471,'files','28085','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11472,'files','28086','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11473,'files','28087','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11474,'files','28089','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11475,'files','28091','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11476,'files','28092','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11477,'files','28093','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11478,'files','28094','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11479,'files','28095','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11480,'files','28096','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11481,'files','28097','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11482,'files','28098','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11483,'files','28099','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11484,'files','28100','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11485,'files','28101','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11486,'files','28102','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11487,'files','28103','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11488,'files','28104','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11489,'files','28105','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11490,'files','28106','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11491,'files','28107','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11492,'files','28108','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11493,'files','28109','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11494,'files','28110','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11495,'files','28111','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11496,'files','28112','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11497,'files','28113','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11498,'files','28114','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11499,'files','28115','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11500,'files','28116','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11501,'files','28117','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11502,'files','28118','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11503,'files','28119','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11504,'files','28120','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11505,'files','28121','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11506,'files','28122','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11507,'files','28123','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11508,'files','28124','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11509,'files','28125','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11510,'files','28126','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11511,'files','28127','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11512,'files','28128','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11513,'files','28129','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11514,'files','28130','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11515,'files','28131','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11516,'files','28132','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11517,'files','28133','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11518,'files','28134','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11519,'files','28135','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11520,'files','28136','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11521,'files','28137','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11522,'files','28138','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11523,'files','28139','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11524,'files','28140','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11525,'files','28141','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11526,'files','28142','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11527,'files','28143','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11528,'files','28144','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11529,'files','28145','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11530,'files','28146','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11531,'files','28147','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11532,'files','28148','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11533,'files','28149','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11534,'files','28150','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11535,'files','28151','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11536,'files','28152','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11537,'files','28153','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11538,'files','28154','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11539,'files','28155','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11540,'files','28156','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11541,'files','28157','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11542,'files','28158','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11543,'files','28159','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11544,'files','28160','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11545,'files','28161','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11546,'files','28162','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11547,'files','28163','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11548,'files','28164','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11549,'files','28165','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11550,'files','28166','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11551,'files','28167','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11552,'files','28168','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11553,'files','28169','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11554,'files','28170','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11555,'files','28171','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11556,'files','28172','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11557,'files','28173','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11558,'files','28174','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11559,'files','28175','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11560,'files','28176','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11561,'files','28177','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11562,'files','28178','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11563,'files','28179','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11564,'files','28180','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11565,'files','28181','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11566,'files','28182','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11567,'files','28183','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11568,'files','28184','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11569,'files','28185','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11570,'files','28186','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11571,'files','28187','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11572,'files','28188','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11573,'files','28189','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11574,'files','28190','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11575,'files','28191','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11576,'files','28192','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11577,'files','28193','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11578,'files','28194','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11579,'files','28195','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11580,'files','28196','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11581,'files','28197','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11582,'files','28198','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11583,'files','28199','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11584,'files','28200','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11585,'files','28201','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11586,'files','28202','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11587,'files','28203','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11588,'files','28204','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11589,'files','28205','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11590,'files','28206','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11591,'files','28209','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11592,'files','28211','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11593,'files','28212','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11594,'files','28214','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11595,'files','28215','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11596,'files','28216','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11597,'files','28217','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11598,'files','28219','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11599,'files','28221','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11600,'files','28222','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11601,'files','28223','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11602,'files','28224','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11603,'files','28225','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11604,'files','28226','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11605,'files','28228','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11606,'files','28229','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11607,'files','28231','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11608,'files','28232','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11609,'files','28233','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11610,'files','28234','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11611,'files','28235','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11612,'files','28236','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11613,'files','28237','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11614,'files','28238','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11615,'files','28239','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11616,'files','28240','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11617,'files','28241','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11618,'files','28242','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11619,'files','28243','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11620,'files','28244','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11621,'files','28245','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11622,'files','28246','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11623,'files','28247','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11624,'files','28248','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11625,'files','28249','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11626,'files','28250','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11627,'files','28251','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11628,'files','28252','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11629,'files','28253','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11630,'files','28254','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11631,'files','28255','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11632,'files','28256','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11633,'files','28257','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11634,'files','28258','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11635,'files','28259','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11636,'files','28260','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11637,'files','28261','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11638,'files','28262','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11639,'files','28263','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11640,'files','28264','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11641,'files','28265','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11642,'files','28267','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11643,'files','28268','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11644,'files','28269','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11645,'files','28270','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11646,'files','28271','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11647,'files','28272','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11648,'files','28273','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11649,'files','28274','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11650,'files','28275','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11651,'files','28276','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11652,'files','28277','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11653,'files','28278','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11654,'files','28279','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11655,'files','28280','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11656,'files','28281','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11657,'files','28282','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11658,'files','28283','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11659,'files','28284','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11660,'files','28285','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11661,'files','28286','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11662,'files','28287','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11663,'files','28288','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11664,'files','28289','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11665,'files','28290','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11666,'files','28291','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11667,'files','28292','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11668,'files','28293','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11669,'files','28294','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11670,'files','28295','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11671,'files','28296','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11672,'files','28297','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11673,'files','28298','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11674,'files','28300','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11675,'files','28301','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11676,'files','28302','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11677,'files','28303','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11678,'files','28304','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11679,'files','28305','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11680,'files','28306','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11681,'files','28307','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11682,'files','28308','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11683,'files','28309','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11684,'files','28310','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11685,'files','28311','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11686,'files','28312','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11687,'files','28313','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11688,'files','28314','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11689,'files','28315','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11690,'files','28316','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11691,'files','28317','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11692,'files','28318','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11693,'files','28319','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11694,'files','28320','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11695,'files','28321','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11696,'files','28322','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11697,'files','28323','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(11698,'files','28324','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(11699,'files','28325','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11700,'files','28326','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11701,'files','28327','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11702,'files','28328','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11703,'files','28329','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11704,'files','28330','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11705,'files','28331','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11706,'files','28332','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11707,'files','28333','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11708,'files','28334','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(11709,'files','28335','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11710,'files','28336','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11711,'files','28337','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11712,'files','28338','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11713,'files','28339','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(11714,'files','28340','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(11715,'files','28341','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11716,'files','28342','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11717,'files','28343','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11718,'files','28344','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11719,'files','28345','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11720,'files','28346','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11721,'files','28347','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11722,'files','28348','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11723,'files','28349','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11724,'files','28350','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11725,'files','28351','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11726,'files','28352','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11727,'files','28353','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11728,'files','28354','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11729,'files','28355','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11730,'files','28356','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11731,'files','28357','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11732,'files','28358','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11733,'files','28359','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11734,'files','28360','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11735,'files','28361','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11736,'files','28362','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11737,'files','28363','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11738,'files','28364','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11739,'files','28365','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11740,'files','28366','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11741,'files','28367','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11742,'files','28368','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11743,'files','28369','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11744,'files','28370','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11745,'files','28371','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11746,'files','28372','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11747,'files','28373','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11748,'files','28374','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11749,'files','28375','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11750,'files','28376','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11751,'files','28377','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11752,'files','28378','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11753,'files','28379','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11754,'files','28380','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11755,'files','28381','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11756,'files','28382','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11757,'files','28383','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11758,'files','28384','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11759,'files','28385','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11760,'files','28386','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11761,'files','28387','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11762,'files','28388','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11763,'files','28389','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11764,'files','28390','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11765,'files','28391','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11766,'files','28392','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11767,'files','28393','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11768,'files','28394','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11769,'files','28395','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11770,'files','28396','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11771,'files','28397','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11772,'files','28398','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11773,'files','28399','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11774,'files','28400','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11775,'files','28401','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11776,'files','28402','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11777,'files','28403','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11778,'files','28404','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11779,'files','28405','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11780,'files','28406','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11781,'files','28407','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11782,'files','28408','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11783,'files','28409','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11784,'files','28410','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11785,'files','28411','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11786,'files','28412','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11787,'files','28413','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11788,'files','28414','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11789,'files','28415','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11790,'files','28416','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11791,'files','28417','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11792,'files','28418','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11793,'files','28419','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11794,'files','28420','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11795,'files','28421','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11796,'files','28422','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11797,'files','28423','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11798,'files','28424','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11799,'files','28425','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11800,'files','28426','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11801,'files','28427','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11802,'files','28428','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11803,'files','28429','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11804,'files','28430','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11805,'files','28431','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11806,'files','28432','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11807,'files','28433','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11808,'files','28434','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11809,'files','28435','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11810,'files','28436','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11811,'files','28437','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11812,'files','28438','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11813,'files','28439','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11814,'files','28440','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11815,'files','28441','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11816,'files','28442','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11817,'files','28443','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11818,'files','28444','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11819,'files','28445','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11820,'files','28446','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11821,'files','28447','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11822,'files','28448','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11823,'files','28449','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11824,'files','28450','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11825,'files','28451','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11826,'files','28452','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11827,'files','28453','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11828,'files','28454','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11829,'files','28455','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11830,'files','28456','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11831,'files','28457','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11832,'files','28458','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11833,'files','28459','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11834,'files','28460','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11835,'files','28461','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11836,'files','28462','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11837,'files','28463','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11838,'files','28464','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11839,'files','28465','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11840,'files','28466','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11841,'files','28467','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11842,'files','28468','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11843,'files','28469','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11844,'files','28470','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11845,'files','28471','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11846,'files','28472','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11847,'files','28473','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11848,'files','28474','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11849,'files','28475','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11850,'files','28476','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11851,'files','28477','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11852,'files','28478','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11853,'files','28479','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11854,'files','28480','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11855,'files','28481','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11856,'files','28482','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11857,'files','28483','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11858,'files','28484','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(11859,'files','28485','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11860,'files','28486','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(11861,'files','28487','error','Deal not found: 1210',NULL,'2025-11-14 00:11:14'),
(11862,'files','28488','error','Deal not found: 1210',NULL,'2025-11-14 00:11:14'),
(11863,'files','28489','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(11864,'files','28490','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11865,'files','28491','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11866,'files','28492','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11867,'files','28493','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11868,'files','28494','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(11869,'files','28495','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11870,'files','28496','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11871,'files','28497','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11872,'files','28498','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11873,'files','28499','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11874,'files','28500','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11875,'files','28501','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11876,'files','28502','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11877,'files','28503','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11878,'files','28504','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11879,'files','28505','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11880,'files','28506','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11881,'files','28507','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11882,'files','28508','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11883,'files','28509','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11884,'files','28510','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11885,'files','28511','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11886,'files','28512','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11887,'files','28513','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11888,'files','28514','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11889,'files','28515','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11890,'files','28516','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11891,'files','28517','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11892,'files','28518','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11893,'files','28519','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11894,'files','28520','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11895,'files','28521','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11896,'files','28522','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11897,'files','28523','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11898,'files','28524','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11899,'files','28525','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11900,'files','28526','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11901,'files','28527','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11902,'files','28529','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11903,'files','28530','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11904,'files','28531','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11905,'files','28532','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11906,'files','28533','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11907,'files','28534','error','Deal not found: 1724',NULL,'2025-11-14 00:11:14'),
(11908,'files','28535','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11909,'files','28536','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(11910,'files','28537','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11911,'files','28538','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11912,'files','28539','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11913,'files','28540','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11914,'files','28541','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11915,'files','28542','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11916,'files','28543','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11917,'files','28544','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11918,'files','28545','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11919,'files','28546','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11920,'files','28547','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11921,'files','28548','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11922,'files','28549','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11923,'files','28550','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11924,'files','28551','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11925,'files','28552','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11926,'files','28553','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11927,'files','28554','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11928,'files','28555','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11929,'files','28556','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11930,'files','28557','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11931,'files','28558','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11932,'files','28559','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11933,'files','28560','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11934,'files','28561','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11935,'files','28562','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11936,'files','28563','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11937,'files','28564','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11938,'files','28565','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11939,'files','28566','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11940,'files','28567','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11941,'files','28568','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11942,'files','28569','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11943,'files','28570','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11944,'files','28571','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11945,'files','28572','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11946,'files','28573','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11947,'files','28574','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11948,'files','28575','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11949,'files','28576','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11950,'files','28577','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11951,'files','28578','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(11952,'files','28579','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11953,'files','28580','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11954,'files','28581','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11955,'files','28582','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11956,'files','28583','error','Deal not found: 1198',NULL,'2025-11-14 00:11:14'),
(11957,'files','28584','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11958,'files','28585','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11959,'files','28586','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11960,'files','28587','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11961,'files','28588','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11962,'files','28589','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11963,'files','28590','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11964,'files','28591','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11965,'files','28592','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11966,'files','28593','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11967,'files','28594','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11968,'files','28595','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11969,'files','28596','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11970,'files','28597','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11971,'files','28598','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11972,'files','28599','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11973,'files','28600','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11974,'files','28601','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11975,'files','28602','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11976,'files','28603','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11977,'files','28604','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11978,'files','28605','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11979,'files','28606','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11980,'files','28607','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11981,'files','28608','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11982,'files','28609','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11983,'files','28610','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11984,'files','28611','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11985,'files','28612','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11986,'files','28613','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11987,'files','28614','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11988,'files','28615','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11989,'files','28616','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11990,'files','28617','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11991,'files','28618','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11992,'files','28619','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11993,'files','28620','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11994,'files','28621','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11995,'files','28622','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11996,'files','28623','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11997,'files','28624','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11998,'files','28625','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11999,'files','28626','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12000,'files','28627','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12001,'files','28628','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12002,'files','28629','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12003,'files','28630','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12004,'files','28631','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12005,'files','28632','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12006,'files','28633','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12007,'files','28634','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12008,'files','28635','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12009,'files','28636','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12010,'files','28637','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12011,'files','28638','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12012,'files','28639','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12013,'files','28640','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12014,'files','28641','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12015,'files','28642','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12016,'files','28643','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12017,'files','28644','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12018,'files','28645','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12019,'files','28646','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12020,'files','28647','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12021,'files','28648','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12022,'files','28649','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12023,'files','28650','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12024,'files','28651','error','Deal not found: 1198',NULL,'2025-11-14 00:11:14'),
(12025,'files','28652','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12026,'files','28653','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12027,'files','28654','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12028,'files','28655','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12029,'files','28656','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12030,'files','28657','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12031,'files','28658','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12032,'files','28659','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12033,'files','28660','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12034,'files','28661','error','Deal not found: 1198',NULL,'2025-11-14 00:11:14'),
(12035,'files','28662','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12036,'files','28663','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12037,'files','28664','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12038,'files','28665','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12039,'files','28666','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12040,'files','28667','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12041,'files','28668','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12042,'files','28669','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12043,'files','28670','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12044,'files','28671','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12045,'files','28672','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12046,'files','28673','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12047,'files','28674','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12048,'files','28675','error','Deal not found: 1293',NULL,'2025-11-14 00:11:14'),
(12049,'files','28676','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12050,'files','28677','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12051,'files','28678','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12052,'files','28679','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12053,'files','28680','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12054,'files','28681','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12055,'files','28682','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12056,'files','28683','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12057,'files','28684','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12058,'files','28685','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12059,'files','28686','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12060,'files','28687','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12061,'files','28688','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12062,'files','28689','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12063,'files','28690','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12064,'files','28691','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12065,'files','28692','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12066,'files','28693','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12067,'files','28694','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12068,'files','28695','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12069,'files','28696','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12070,'files','28697','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12071,'files','28698','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12072,'files','28699','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12073,'files','28700','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12074,'files','28701','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12075,'files','28702','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12076,'files','28703','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12077,'files','28704','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12078,'files','28705','error','Deal not found: 1198',NULL,'2025-11-14 00:11:14'),
(12079,'files','28706','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12080,'files','28707','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12081,'files','28708','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12082,'files','28709','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12083,'files','28710','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12084,'files','28711','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12085,'files','28712','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12086,'files','28713','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12087,'files','28714','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12088,'files','28715','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12089,'files','28716','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12090,'files','28717','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12091,'files','28718','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12092,'files','28719','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12093,'files','28720','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12094,'files','28721','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12095,'files','28722','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12096,'files','28723','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12097,'files','28724','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12098,'files','28725','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12099,'files','28726','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12100,'files','28727','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12101,'files','28728','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12102,'files','28729','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12103,'files','28730','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12104,'files','28731','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12105,'files','28732','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12106,'files','28733','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12107,'files','28734','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12108,'files','28735','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12109,'files','28736','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12110,'files','28737','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12111,'files','28738','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12112,'files','28739','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12113,'files','28740','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12114,'files','28741','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12115,'files','28742','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12116,'files','28743','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12117,'files','28744','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12118,'files','28745','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12119,'files','28746','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12120,'files','28747','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12121,'files','28748','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12122,'files','28749','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12123,'files','28750','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12124,'files','28751','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12125,'files','28752','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12126,'files','28753','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12127,'files','28754','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12128,'files','28755','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12129,'files','28756','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12130,'files','28757','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12131,'files','28758','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12132,'files','28759','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12133,'files','28760','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12134,'files','28761','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12135,'files','28762','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12136,'files','28763','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12137,'files','28764','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12138,'files','28765','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12139,'files','28766','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12140,'files','28767','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12141,'files','28768','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12142,'files','28769','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12143,'files','28770','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12144,'files','28771','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12145,'files','28772','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12146,'files','28773','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12147,'files','28774','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12148,'files','28775','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12149,'files','28776','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12150,'files','28777','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12151,'files','28778','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12152,'files','28779','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12153,'files','28780','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12154,'files','28781','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12155,'files','28782','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12156,'files','28783','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12157,'files','28784','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12158,'files','28785','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12159,'files','28786','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12160,'files','28787','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12161,'files','28788','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12162,'files','28789','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12163,'files','28790','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12164,'files','28791','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12165,'files','28792','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12166,'files','28793','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12167,'files','28794','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12168,'files','28795','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12169,'files','28796','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12170,'files','28797','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12171,'files','28798','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12172,'files','28799','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12173,'files','28800','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12174,'files','28801','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12175,'files','28802','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12176,'files','28803','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12177,'files','28804','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12178,'files','28806','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12179,'files','28807','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12180,'files','28808','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12181,'files','28809','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12182,'files','28810','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12183,'files','28811','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12184,'files','28812','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12185,'files','28813','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12186,'files','28814','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12187,'files','28815','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12188,'files','28816','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12189,'files','28817','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12190,'files','28818','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12191,'files','28819','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12192,'files','28820','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12193,'files','28821','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12194,'files','28822','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12195,'files','28823','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12196,'files','28824','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12197,'files','28825','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12198,'files','28826','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12199,'files','28827','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12200,'files','28828','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12201,'files','28829','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12202,'files','28830','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12203,'files','28831','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12204,'files','28832','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12205,'files','28833','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12206,'files','28834','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12207,'files','28835','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12208,'files','28836','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12209,'files','28837','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12210,'files','28838','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12211,'files','28839','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12212,'files','28840','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12213,'files','28841','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12214,'files','28842','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12215,'files','28843','error','Deal not found: 1293',NULL,'2025-11-14 00:11:14'),
(12216,'files','28844','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12217,'files','28845','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12218,'files','28846','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12219,'files','28847','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12220,'files','28848','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12221,'files','28849','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12222,'files','28850','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12223,'files','28851','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12224,'files','28852','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12225,'files','28853','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12226,'files','28854','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12227,'files','28855','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12228,'files','28856','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12229,'files','28857','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12230,'files','28858','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12231,'files','28859','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12232,'files','28860','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12233,'files','28861','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12234,'files','28862','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12235,'files','28863','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12236,'files','28864','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12237,'files','28865','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12238,'files','28866','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12239,'files','28867','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12240,'files','28868','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12241,'files','28869','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12242,'files','28870','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12243,'files','28871','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12244,'files','28872','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12245,'files','28873','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12246,'files','28874','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12247,'files','28875','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12248,'files','28876','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12249,'files','28877','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12250,'files','28878','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12251,'files','28879','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12252,'files','28880','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12253,'files','28881','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12254,'files','28882','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12255,'files','28883','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12256,'files','28884','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12257,'files','28885','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12258,'files','28886','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12259,'files','28887','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12260,'files','28888','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12261,'files','28889','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12262,'files','28890','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12263,'files','28891','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12264,'files','28892','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12265,'files','28893','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12266,'files','28894','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12267,'files','28895','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12268,'files','28896','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12269,'files','28897','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12270,'files','28898','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12271,'files','28899','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12272,'files','28900','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12273,'files','28901','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12274,'files','28902','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12275,'files','28903','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12276,'files','28904','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12277,'files','28905','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12278,'files','28906','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12279,'files','28907','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12280,'files','28908','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12281,'files','28909','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12282,'files','28910','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12283,'files','28911','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12284,'files','28912','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12285,'files','28913','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12286,'files','28914','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12287,'files','28915','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12288,'files','28916','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12289,'files','28917','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12290,'files','28918','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12291,'files','28919','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12292,'files','28920','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12293,'files','28921','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12294,'files','28922','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12295,'files','28923','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12296,'files','28924','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12297,'files','28925','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12298,'files','28926','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12299,'files','28927','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12300,'files','28928','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12301,'files','28929','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12302,'files','28930','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12303,'files','28931','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12304,'files','28932','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12305,'files','28933','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12306,'files','28934','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12307,'files','28935','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12308,'files','28936','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12309,'files','28937','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12310,'files','28938','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12311,'files','28939','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12312,'files','28940','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12313,'files','28941','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12314,'files','28942','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12315,'files','28943','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12316,'files','28944','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12317,'files','28945','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12318,'files','28946','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12319,'files','28947','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12320,'files','28948','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12321,'files','28949','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12322,'files','28950','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12323,'files','28951','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12324,'files','28952','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12325,'files','28953','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12326,'files','28954','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12327,'files','28955','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12328,'files','28956','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12329,'files','28957','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12330,'files','28958','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12331,'files','28959','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12332,'files','28960','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12333,'files','28961','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12334,'files','28962','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12335,'files','28963','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12336,'files','28964','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12337,'files','28965','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12338,'files','28966','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12339,'files','28967','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12340,'files','28968','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12341,'files','28969','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12342,'files','28970','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12343,'files','28971','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12344,'files','28972','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12345,'files','28973','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12346,'files','28974','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12347,'files','28975','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12348,'files','28976','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12349,'files','28977','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12350,'files','28978','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12351,'files','28979','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12352,'files','28980','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12353,'files','28981','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12354,'files','28982','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12355,'files','28983','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12356,'files','28984','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12357,'files','28985','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12358,'files','28986','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12359,'files','28987','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12360,'files','28988','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12361,'files','28989','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12362,'files','28990','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12363,'files','28991','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12364,'files','28992','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12365,'files','28993','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12366,'files','28994','skipped','No deal associated',NULL,'2025-11-14 00:11:14');
INSERT INTO `temp_pipedrive_import_log` VALUES
(12367,'files','28995','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12368,'files','28996','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12369,'files','28997','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12370,'files','28998','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12371,'files','28999','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12372,'files','29000','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12373,'files','29001','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12374,'files','29002','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12375,'files','29003','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12376,'files','29004','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12377,'files','29005','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12378,'files','29006','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12379,'files','29007','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12380,'files','29008','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12381,'files','29009','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12382,'files','29010','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12383,'files','29011','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12384,'files','29012','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12385,'files','29013','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12386,'files','29014','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12387,'files','29015','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12388,'files','29016','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12389,'files','29017','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12390,'files','29018','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12391,'files','29019','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12392,'files','29020','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12393,'files','29021','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12394,'files','29022','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12395,'files','29023','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12396,'files','29024','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12397,'files','29025','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12398,'files','29026','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12399,'files','29027','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12400,'files','29028','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12401,'files','29029','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12402,'files','29030','error','Deal not found: 1427',NULL,'2025-11-14 00:11:14'),
(12403,'files','29031','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12404,'files','29032','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12405,'files','29033','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12406,'files','29034','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12407,'files','29035','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12408,'files','29036','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12409,'files','29037','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12410,'files','29038','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12411,'files','29039','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12412,'files','29040','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12413,'files','29041','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12414,'files','29042','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12415,'files','29043','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12416,'files','29044','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12417,'files','29045','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12418,'files','29046','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12419,'files','29047','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12420,'files','29048','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12421,'files','29049','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12422,'files','29050','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12423,'files','29051','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12424,'files','29052','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12425,'files','29053','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12426,'files','29054','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12427,'files','29055','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12428,'files','29056','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12429,'files','29057','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12430,'files','29058','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12431,'files','29059','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12432,'files','29060','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12433,'files','29061','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12434,'files','29062','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12435,'files','29063','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12436,'files','29064','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12437,'files','29065','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12438,'files','29066','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12439,'files','29067','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12440,'files','29068','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12441,'files','29069','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12442,'files','29070','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12443,'files','29071','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12444,'files','29072','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12445,'files','29073','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12446,'files','29074','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12447,'files','29075','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12448,'files','29076','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12449,'files','29077','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12450,'files','29078','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12451,'files','29079','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12452,'files','29080','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12453,'files','29081','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12454,'files','29082','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12455,'files','29083','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12456,'files','29084','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12457,'files','29085','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12458,'files','29086','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12459,'files','29087','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12460,'files','29088','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12461,'files','29089','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12462,'files','29090','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12463,'files','29091','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12464,'files','29092','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12465,'files','29093','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12466,'files','29094','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12467,'files','29095','error','Deal not found: 1339',NULL,'2025-11-14 00:11:14'),
(12468,'files','29096','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12469,'files','29097','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12470,'files','29098','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12471,'files','29099','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12472,'files','29100','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12473,'files','29101','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12474,'files','29102','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12475,'files','29103','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12476,'files','29104','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12477,'files','29105','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12478,'files','29106','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12479,'files','29107','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12480,'files','29108','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12481,'files','29109','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12482,'files','29110','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12483,'files','29111','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12484,'files','29112','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12485,'files','29113','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12486,'files','29114','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12487,'files','29115','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12488,'files','29116','error','Deal not found: 1427',NULL,'2025-11-14 00:11:14'),
(12489,'files','29117','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12490,'files','29118','error','Deal not found: 1427',NULL,'2025-11-14 00:11:14'),
(12491,'files','29119','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12492,'files','29120','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12493,'files','29121','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12494,'files','29122','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12495,'files','29123','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12496,'files','29124','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12497,'files','29125','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12498,'files','29126','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12499,'files','29127','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12500,'files','29128','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12501,'files','29129','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12502,'files','29130','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12503,'files','29131','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12504,'files','29132','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12505,'files','29133','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12506,'files','29134','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12507,'files','29135','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12508,'files','29136','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12509,'files','29137','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12510,'files','29138','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12511,'files','29139','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12512,'files','29140','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12513,'files','29141','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12514,'files','29142','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12515,'files','29143','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12516,'files','29144','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12517,'files','29145','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12518,'files','29146','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12519,'files','29147','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12520,'files','29148','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12521,'files','29149','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12522,'files','29150','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12523,'files','29151','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12524,'files','29152','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12525,'files','29153','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12526,'files','29154','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12527,'files','29155','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12528,'files','29156','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12529,'files','29157','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12530,'files','29158','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12531,'files','29159','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12532,'files','29160','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12533,'files','29161','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12534,'files','29162','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12535,'files','29163','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12536,'files','29164','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12537,'files','29165','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12538,'files','29166','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12539,'files','29167','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12540,'files','29168','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12541,'files','29169','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12542,'files','29170','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12543,'files','29171','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12544,'files','29172','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12545,'files','29173','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12546,'files','29174','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12547,'files','29175','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12548,'files','29176','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12549,'files','29177','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12550,'files','29178','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12551,'files','29179','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12552,'files','29180','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12553,'files','29181','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12554,'files','29182','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12555,'files','29183','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12556,'files','29184','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12557,'files','29185','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12558,'files','29186','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12559,'files','29187','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12560,'files','29188','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12561,'files','29189','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12562,'files','29190','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12563,'files','29191','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12564,'files','29192','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12565,'files','29193','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12566,'files','29194','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12567,'files','29195','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12568,'files','29196','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12569,'files','29197','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12570,'files','29198','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12571,'files','29199','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12572,'files','29200','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12573,'files','29201','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12574,'files','29202','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12575,'files','29203','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12576,'files','29204','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12577,'files','29205','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12578,'files','29206','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12579,'files','29207','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12580,'files','29208','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12581,'files','29209','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12582,'files','29210','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12583,'files','29211','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12584,'files','29212','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12585,'files','29213','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12586,'files','29214','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12587,'files','29215','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12588,'files','29216','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12589,'files','29217','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12590,'files','29218','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12591,'files','29219','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12592,'files','29220','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12593,'files','29221','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12594,'files','29222','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12595,'files','29223','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12596,'files','29224','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12597,'files','29225','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12598,'files','29226','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12599,'files','29227','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12600,'files','29228','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12601,'files','29229','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12602,'files','29230','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12603,'files','29231','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12604,'files','29232','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12605,'files','29233','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12606,'files','29234','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12607,'files','29235','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12608,'files','29236','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12609,'files','29237','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12610,'files','29238','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12611,'files','29239','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12612,'files','29240','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12613,'files','29241','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12614,'files','29242','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12615,'files','29243','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12616,'files','29244','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12617,'files','29245','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12618,'files','29246','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12619,'files','29247','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12620,'files','29248','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12621,'files','29249','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12622,'files','29250','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12623,'files','29251','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12624,'files','29252','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12625,'files','29253','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12626,'files','29254','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12627,'files','29255','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12628,'files','29256','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12629,'files','29257','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12630,'files','29258','error','Deal not found: 1293',NULL,'2025-11-14 00:11:14'),
(12631,'files','29259','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12632,'files','29260','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12633,'files','29261','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12634,'files','29262','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12635,'files','29263','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12636,'files','29264','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12637,'files','29265','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12638,'files','29266','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12639,'files','29267','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12640,'files','29268','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12641,'files','29269','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12642,'files','29270','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12643,'files','29271','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12644,'files','29272','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12645,'files','29273','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12646,'files','29274','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12647,'files','29275','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12648,'files','29276','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12649,'files','29277','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12650,'files','29278','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12651,'files','29279','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12652,'files','29280','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12653,'files','29281','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12654,'files','29282','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12655,'files','29283','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12656,'files','29284','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12657,'files','29285','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12658,'files','29286','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12659,'files','29287','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12660,'files','29288','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12661,'files','29289','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12662,'files','29290','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12663,'files','29291','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12664,'files','29292','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12665,'files','29293','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12666,'files','29294','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12667,'files','29295','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12668,'files','29296','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12669,'files','29297','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12670,'files','29298','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12671,'files','29299','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12672,'files','29300','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12673,'files','29301','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12674,'files','29302','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12675,'files','29303','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12676,'files','29304','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12677,'files','29305','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12678,'files','29306','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12679,'files','29307','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12680,'files','29308','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12681,'files','29309','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12682,'files','29310','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12683,'files','29311','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12684,'files','29312','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12685,'files','29313','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12686,'files','29314','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12687,'files','29315','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12688,'files','29316','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12689,'files','29317','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12690,'files','29318','error','Deal not found: 1198',NULL,'2025-11-14 00:11:14'),
(12691,'files','29319','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12692,'files','29320','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12693,'files','29321','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12694,'files','29322','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12695,'files','29323','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12696,'files','29324','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12697,'files','29325','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12698,'files','29326','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12699,'files','29327','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12700,'files','29328','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12701,'files','29329','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12702,'files','29330','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12703,'files','29331','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12704,'files','29332','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12705,'files','29333','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12706,'files','29334','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12707,'files','29335','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12708,'files','29336','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12709,'files','29337','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12710,'files','29338','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12711,'files','29339','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12712,'files','29340','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12713,'files','29341','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12714,'files','29342','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12715,'files','29343','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12716,'files','29344','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12717,'files','29345','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12718,'files','29346','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12719,'files','29347','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12720,'files','29348','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12721,'files','29349','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12722,'files','29350','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12723,'files','29351','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12724,'files','29352','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12725,'files','29353','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12726,'files','29354','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12727,'files','29355','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12728,'files','29356','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12729,'files','29357','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12730,'files','29358','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12731,'files','29359','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12732,'files','29360','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12733,'files','29361','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12734,'files','29362','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12735,'files','29363','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12736,'files','29364','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12737,'files','29365','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12738,'files','29366','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12739,'files','29367','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12740,'files','29368','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12741,'files','29369','error','Deal not found: 1427',NULL,'2025-11-14 00:11:14'),
(12742,'files','29370','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12743,'files','29371','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12744,'files','29372','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12745,'files','29373','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12746,'files','29374','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12747,'files','29375','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12748,'files','29376','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12749,'files','29377','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12750,'files','29378','error','Deal not found: 1267',NULL,'2025-11-14 00:11:14'),
(12751,'files','29379','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12752,'files','29380','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12753,'files','29381','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12754,'files','29382','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12755,'files','29383','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12756,'files','29384','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12757,'files','29385','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12758,'files','29386','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12759,'files','29387','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12760,'files','29388','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12761,'files','29389','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12762,'files','29390','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12763,'files','29391','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12764,'files','29392','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12765,'files','29393','error','Deal not found: 1427',NULL,'2025-11-14 00:11:14'),
(12766,'files','29394','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12767,'files','29395','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12768,'files','29396','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12769,'files','29397','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12770,'files','29398','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12771,'files','29399','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12772,'files','29400','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12773,'files','29401','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12774,'files','29402','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12775,'files','29403','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12776,'files','29404','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12777,'files','29405','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12778,'files','29406','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12779,'files','29407','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12780,'files','29408','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12781,'files','29409','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12782,'files','29410','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12783,'files','29411','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12784,'files','29412','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12785,'files','29413','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12786,'files','29414','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12787,'files','29415','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12788,'files','29416','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12789,'files','29417','error','Deal not found: 1198',NULL,'2025-11-14 00:11:14'),
(12790,'files','29418','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12791,'files','29419','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12792,'files','29420','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12793,'files','29421','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12794,'files','29422','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12795,'files','29423','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12796,'files','29424','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12797,'files','29425','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12798,'files','29426','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12799,'files','29427','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12800,'files','29428','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12801,'files','29429','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12802,'files','29430','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12803,'files','29431','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12804,'files','29432','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12805,'files','29433','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12806,'files','29434','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12807,'files','29435','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12808,'files','29436','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12809,'files','29437','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12810,'files','29438','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12811,'files','29439','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12812,'files','29440','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12813,'files','29441','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12814,'files','29442','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12815,'files','29443','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12816,'files','29444','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12817,'files','29445','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12818,'files','29446','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12819,'files','29447','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12820,'files','29448','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12821,'files','29449','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12822,'files','29450','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12823,'files','29451','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12824,'files','29452','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12825,'files','29453','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12826,'files','29454','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12827,'files','29455','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12828,'files','29456','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12829,'files','29457','error','Deal not found: 1492',NULL,'2025-11-14 00:11:14'),
(12830,'files','29458','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12831,'files','29459','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12832,'files','29460','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12833,'files','29461','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12834,'files','29462','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12835,'files','29463','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12836,'files','29464','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12837,'files','29465','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12838,'files','29466','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12839,'files','29467','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12840,'files','29468','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12841,'files','29469','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12842,'files','29470','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12843,'files','29471','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12844,'files','29472','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12845,'files','29473','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12846,'files','29474','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12847,'files','29475','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12848,'files','29476','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12849,'files','29477','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12850,'files','29478','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12851,'files','29479','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12852,'files','29480','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12853,'files','29481','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12854,'files','29482','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12855,'files','29483','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12856,'files','29484','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12857,'files','29485','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12858,'files','29486','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12859,'files','29487','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12860,'files','29488','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12861,'files','29489','error','Deal not found: 1427',NULL,'2025-11-14 00:11:14'),
(12862,'files','29490','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12863,'files','29491','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12864,'files','29492','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12865,'files','29493','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12866,'files','29494','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12867,'files','29495','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12868,'files','29496','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12869,'files','29497','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12870,'files','29498','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12871,'files','29499','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12872,'files','29500','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12873,'files','29501','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12874,'files','29502','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12875,'files','29503','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12876,'files','29504','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12877,'files','29505','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12878,'files','29506','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12879,'files','29507','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12880,'files','29508','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12881,'files','29509','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12882,'files','29510','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12883,'files','29511','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12884,'files','29512','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12885,'files','29513','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12886,'files','29514','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12887,'files','29515','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12888,'files','29516','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12889,'files','29517','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12890,'files','29518','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12891,'files','29519','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12892,'files','29520','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12893,'files','29521','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12894,'files','29522','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12895,'files','29523','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12896,'files','29524','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12897,'files','29525','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12898,'files','29526','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12899,'files','29527','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12900,'files','29528','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12901,'files','29529','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12902,'files','29530','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12903,'files','29531','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12904,'files','29532','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12905,'files','29533','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12906,'files','29534','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12907,'files','29535','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12908,'files','29536','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12909,'files','29537','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12910,'files','29538','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12911,'files','29539','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12912,'files','29540','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12913,'files','29541','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12914,'files','29542','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12915,'files','29543','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12916,'files','29544','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12917,'files','29545','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12918,'files','29546','error','Deal not found: 1497',NULL,'2025-11-14 00:11:14'),
(12919,'files','29547','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12920,'files','29548','error','Deal not found: 1497',NULL,'2025-11-14 00:11:14'),
(12921,'files','29549','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12922,'files','29550','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12923,'files','29551','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12924,'files','29552','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12925,'files','29553','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12926,'files','29554','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12927,'files','29555','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12928,'files','29556','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12929,'files','29557','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12930,'files','29558','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12931,'files','29559','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12932,'files','29560','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12933,'files','29561','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12934,'files','29562','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12935,'files','29563','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12936,'files','29564','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12937,'files','29565','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12938,'files','29566','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12939,'files','29567','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12940,'files','29568','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12941,'files','29569','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12942,'files','29570','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12943,'files','29571','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12944,'files','29572','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12945,'files','29573','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12946,'files','29574','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12947,'files','29575','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12948,'files','29576','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12949,'files','29577','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12950,'files','29578','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12951,'files','29579','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12952,'files','29580','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12953,'files','29581','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12954,'files','29582','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12955,'files','29583','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12956,'files','29584','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12957,'files','29585','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12958,'files','29586','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12959,'files','29587','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12960,'files','29588','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12961,'files','29589','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12962,'files','29590','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12963,'files','29591','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12964,'files','29592','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12965,'files','29593','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12966,'files','29594','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12967,'files','29595','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12968,'files','29596','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12969,'files','29597','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12970,'files','29598','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12971,'files','29599','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12972,'files','29600','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12973,'files','29601','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12974,'files','29602','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12975,'files','29603','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12976,'files','29604','error','Deal not found: 1429',NULL,'2025-11-14 00:11:14'),
(12977,'files','29605','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12978,'files','29606','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12979,'files','29607','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12980,'files','29608','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12981,'files','29609','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12982,'files','29610','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12983,'files','29611','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12984,'files','29612','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12985,'files','29613','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12986,'files','29614','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12987,'files','29615','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12988,'files','29616','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12989,'files','29617','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12990,'files','29618','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12991,'files','29619','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12992,'files','29620','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12993,'files','29621','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12994,'files','29622','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12995,'files','29623','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12996,'files','29624','error','Deal not found: 1293',NULL,'2025-11-14 00:11:14'),
(12997,'files','29625','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12998,'files','29626','error','Deal not found: 1724',NULL,'2025-11-14 00:11:14'),
(12999,'files','29627','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13000,'files','29628','error','Deal not found: 1724',NULL,'2025-11-14 00:11:14'),
(13001,'files','29629','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13002,'files','29630','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13003,'files','29631','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13004,'files','29632','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13005,'files','29633','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13006,'files','29634','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13007,'files','29635','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13008,'files','29636','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13009,'files','29637','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13010,'files','29638','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13011,'files','29639','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13012,'files','29640','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13013,'files','29641','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13014,'files','29642','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13015,'files','29643','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13016,'files','29644','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13017,'files','29645','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13018,'files','29646','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13019,'files','29647','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13020,'files','29648','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13021,'files','29649','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13022,'files','29650','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13023,'files','29651','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13024,'files','29652','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13025,'files','29653','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13026,'files','29654','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13027,'files','29655','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13028,'files','29656','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13029,'files','29657','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13030,'files','29658','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13031,'files','29659','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13032,'files','29660','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13033,'files','29661','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13034,'files','29662','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13035,'files','29663','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13036,'files','29664','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13037,'files','29665','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13038,'files','29666','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13039,'files','29667','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13040,'files','29668','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13041,'files','29669','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13042,'files','29670','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13043,'files','29671','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13044,'files','29672','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13045,'files','29673','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13046,'files','29674','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13047,'files','29675','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13048,'files','29676','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13049,'files','29677','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13050,'files','29678','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13051,'files','29679','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13052,'files','29680','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13053,'files','29681','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13054,'files','29682','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13055,'files','29683','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13056,'files','29684','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13057,'files','29685','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13058,'files','29686','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13059,'files','29687','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13060,'files','29688','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13061,'files','29689','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13062,'files','29690','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13063,'files','29691','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13064,'files','29692','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13065,'files','29693','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13066,'files','29694','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13067,'files','29695','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13068,'files','29696','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13069,'files','29697','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13070,'files','29698','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13071,'files','29699','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13072,'files','29700','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13073,'files','29701','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13074,'files','29702','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13075,'files','29703','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13076,'files','29704','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13077,'files','29705','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13078,'files','29706','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13079,'files','29707','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13080,'files','29708','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13081,'files','29709','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13082,'files','29710','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13083,'files','29711','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13084,'files','29712','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13085,'files','29713','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13086,'files','29714','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13087,'files','29715','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13088,'files','29716','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13089,'files','29717','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13090,'files','29718','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13091,'files','29719','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13092,'files','29720','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13093,'files','29721','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13094,'files','29722','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13095,'files','29723','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13096,'files','29724','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13097,'files','29725','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13098,'files','29726','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13099,'files','29727','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13100,'files','29728','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13101,'files','29729','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13102,'files','29730','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13103,'files','29731','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13104,'files','29732','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13105,'files','29733','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13106,'files','29734','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13107,'files','29735','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13108,'files','29736','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13109,'files','29737','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13110,'files','29738','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13111,'files','29739','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13112,'files','29740','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13113,'files','29741','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13114,'files','29742','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13115,'files','29743','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13116,'files','29744','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13117,'files','29745','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13118,'files','29746','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13119,'files','29747','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13120,'files','29748','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13121,'files','29749','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13122,'files','29750','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13123,'files','29751','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13124,'files','29752','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13125,'files','29753','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13126,'files','29754','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13127,'files','29755','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13128,'files','29756','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13129,'files','29757','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13130,'files','29758','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13131,'files','29759','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13132,'files','29760','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13133,'files','29761','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13134,'files','29762','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13135,'files','29763','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13136,'files','29764','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13137,'files','29765','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13138,'files','29766','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13139,'files','29767','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13140,'files','29768','error','Deal not found: 1435',NULL,'2025-11-14 00:11:14'),
(13141,'files','29769','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13142,'files','29770','error','Deal not found: 1435',NULL,'2025-11-14 00:11:14'),
(13143,'files','29771','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13144,'files','29772','error','Deal not found: 1435',NULL,'2025-11-14 00:11:14'),
(13145,'files','29773','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13146,'files','29774','error','Deal not found: 1435',NULL,'2025-11-14 00:11:14'),
(13147,'files','29775','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13148,'files','29776','error','Deal not found: 1435',NULL,'2025-11-14 00:11:14'),
(13149,'files','29777','error','Deal not found: 1435',NULL,'2025-11-14 00:11:14'),
(13150,'files','29778','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13151,'files','29779','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13152,'files','29780','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13153,'files','29781','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13154,'files','29782','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13155,'files','29783','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13156,'files','29784','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13157,'files','29785','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13158,'files','29786','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13159,'files','29787','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13160,'files','29788','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13161,'files','29789','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13162,'files','29790','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13163,'files','29791','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13164,'files','29792','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13165,'files','29793','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13166,'files','29794','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13167,'files','29795','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13168,'files','29796','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13169,'files','29797','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13170,'files','29798','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13171,'files','29799','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13172,'files','29800','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13173,'files','29801','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13174,'files','29802','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13175,'files','29803','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13176,'files','29804','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13177,'files','29805','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13178,'files','29806','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13179,'files','29807','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13180,'files','29808','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13181,'files','29809','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13182,'files','29810','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13183,'files','29811','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13184,'files','29812','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13185,'files','29813','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13186,'files','29814','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13187,'files','29815','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13188,'files','29816','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13189,'files','29817','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13190,'files','29818','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13191,'files','29819','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13192,'files','29820','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13193,'files','29821','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13194,'files','29822','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13195,'files','29823','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13196,'files','29824','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13197,'files','29825','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13198,'files','29826','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13199,'files','29827','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13200,'files','29828','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13201,'files','29829','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13202,'files','29830','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13203,'files','29831','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13204,'files','29832','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13205,'files','29833','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13206,'files','29834','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13207,'files','29835','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13208,'files','29836','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13209,'files','29837','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13210,'files','29838','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13211,'files','29839','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13212,'files','29840','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13213,'files','29841','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13214,'files','29842','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13215,'files','29843','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13216,'files','29844','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13217,'files','29845','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13218,'files','29846','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13219,'files','29847','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13220,'files','29848','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13221,'files','29849','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13222,'files','29850','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13223,'files','29851','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13224,'files','29852','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13225,'files','29853','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13226,'files','29854','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13227,'files','29855','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13228,'files','29856','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13229,'files','29857','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13230,'files','29858','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13231,'files','29859','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13232,'files','29860','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13233,'files','29861','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13234,'files','29862','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13235,'files','29863','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13236,'files','29864','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13237,'files','29865','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13238,'files','29866','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13239,'files','29867','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13240,'files','29868','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13241,'files','29869','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13242,'files','29870','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13243,'files','29871','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13244,'files','29872','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13245,'files','29873','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13246,'files','29874','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13247,'files','29875','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13248,'files','29876','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13249,'files','29877','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13250,'files','29878','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13251,'files','29879','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13252,'files','29880','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13253,'files','29881','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13254,'files','29882','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13255,'files','29883','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13256,'files','29884','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13257,'files','29885','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13258,'files','29886','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13259,'files','29887','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13260,'files','29888','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13261,'files','29889','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13262,'files','29890','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13263,'files','29891','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(13264,'files','29892','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13265,'files','29893','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13266,'files','29894','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13267,'files','29895','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13268,'files','29896','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13269,'files','29897','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13270,'files','29898','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13271,'files','29899','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13272,'files','29900','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13273,'files','29901','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13274,'files','29902','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13275,'files','29903','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13276,'files','29904','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13277,'files','29905','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13278,'files','29906','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13279,'files','29907','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13280,'files','29908','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13281,'files','29909','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13282,'files','29910','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13283,'files','29911','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13284,'files','29912','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13285,'files','29913','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13286,'files','29914','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13287,'files','29915','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13288,'files','29916','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13289,'files','29917','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13290,'files','29918','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13291,'files','29919','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13292,'files','29920','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13293,'files','29921','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13294,'files','29922','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13295,'files','29923','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13296,'files','29924','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13297,'files','29925','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13298,'files','29926','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13299,'files','29927','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13300,'files','29928','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13301,'files','29929','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13302,'files','29930','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13303,'files','29931','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13304,'files','29932','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13305,'files','29933','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13306,'files','29934','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13307,'files','29935','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13308,'files','29936','error','Deal not found: 1293',NULL,'2025-11-14 00:11:14'),
(13309,'files','29937','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13310,'files','29938','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13311,'files','29939','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13312,'files','29940','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13313,'files','29941','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13314,'files','29942','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13315,'files','29943','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13316,'files','29944','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13317,'files','29945','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13318,'files','29946','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13319,'files','29947','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13320,'files','29948','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13321,'files','29949','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13322,'files','29950','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13323,'files','29951','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13324,'files','29952','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13325,'files','29953','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13326,'files','29954','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13327,'files','29955','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13328,'files','29956','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13329,'files','29957','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13330,'files','29958','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13331,'files','29959','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13332,'files','29960','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13333,'files','29961','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13334,'files','29962','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13335,'files','29963','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13336,'files','29964','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13337,'files','29965','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13338,'files','29966','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13339,'files','29967','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13340,'files','29968','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13341,'files','29969','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13342,'files','29970','error','Deal not found: 1014',NULL,'2025-11-14 00:11:14'),
(13343,'files','29971','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13344,'files','29972','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13345,'files','29973','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13346,'files','29974','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13347,'files','29975','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13348,'files','29976','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13349,'files','29977','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13350,'files','29978','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13351,'files','29979','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13352,'files','29980','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13353,'files','29981','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13354,'files','29982','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13355,'files','29983','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13356,'files','29984','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13357,'files','29985','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13358,'files','29986','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13359,'files','29987','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13360,'files','29988','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13361,'files','29989','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13362,'files','29990','error','Deal not found: 566',NULL,'2025-11-14 00:11:14'),
(13363,'files','29991','error','Deal not found: 566',NULL,'2025-11-14 00:11:14'),
(13364,'files','29992','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13365,'files','29993','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13366,'files','29994','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13367,'files','29995','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13368,'files','29996','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13369,'files','29997','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13370,'files','29998','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13371,'files','29999','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13372,'files','30000','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13373,'files','30001','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13374,'files','30002','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13375,'files','30003','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13376,'files','30004','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13377,'files','30005','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13378,'files','30006','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13379,'files','30007','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13380,'files','30008','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13381,'files','30009','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13382,'files','30010','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13383,'files','30011','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13384,'files','30012','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13385,'files','30013','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13386,'files','30014','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13387,'files','30015','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13388,'files','30016','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13389,'files','30017','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13390,'files','30018','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13391,'files','30019','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13392,'files','30020','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13393,'files','30021','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13394,'files','30022','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13395,'files','30023','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13396,'files','30024','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13397,'files','30025','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13398,'files','30026','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13399,'files','30027','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13400,'files','30028','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13401,'files','30029','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13402,'files','30030','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13403,'files','30031','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13404,'files','30032','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13405,'files','30033','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13406,'files','30034','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13407,'files','30035','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13408,'files','30036','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13409,'files','30037','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13410,'files','30038','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13411,'files','30039','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13412,'files','30040','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13413,'files','30041','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13414,'files','30042','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13415,'files','30043','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13416,'files','30044','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13417,'files','30045','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13418,'files','30046','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13419,'files','30047','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13420,'files','30048','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13421,'files','30049','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13422,'files','30050','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13423,'files','30051','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13424,'files','30052','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13425,'files','30053','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13426,'files','30054','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13427,'files','30055','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13428,'files','30056','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13429,'files','30057','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13430,'files','30058','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13431,'files','30059','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13432,'files','30060','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13433,'files','30061','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13434,'files','30062','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13435,'files','30063','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13436,'files','30064','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13437,'files','30065','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13438,'files','30066','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13439,'files','30067','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13440,'files','30068','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13441,'files','30069','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13442,'files','30070','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13443,'files','30071','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13444,'files','30072','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13445,'files','30073','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13446,'files','30074','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13447,'files','30075','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13448,'files','30076','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13449,'files','30077','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13450,'files','30078','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13451,'files','30079','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13452,'files','30080','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13453,'files','30081','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13454,'files','30082','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13455,'files','30083','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13456,'files','30086','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13457,'files','30089','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13458,'files','30091','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13459,'files','30094','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13460,'files','30095','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13461,'files','30097','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13462,'files','30100','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13463,'files','30102','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13464,'files','30103','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13465,'files','30104','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13466,'files','30105','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13467,'files','30106','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13468,'files','30107','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13469,'files','30108','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13470,'files','30109','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13471,'files','30110','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13472,'files','30111','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13473,'files','30112','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13474,'files','30113','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13475,'files','30114','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13476,'files','30115','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13477,'files','30116','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13478,'files','30117','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13479,'files','30118','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13480,'files','30119','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13481,'files','30120','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13482,'files','30121','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13483,'files','30122','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13484,'files','30123','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13485,'files','30124','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13486,'files','30125','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13487,'files','30126','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13488,'files','30127','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13489,'files','30128','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13490,'files','30129','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13491,'files','30130','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13492,'files','30131','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13493,'files','30132','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13494,'files','30133','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13495,'files','30134','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13496,'files','30135','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13497,'files','30136','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13498,'files','30137','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13499,'files','30138','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13500,'files','30139','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13501,'files','30140','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13502,'files','30141','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13503,'files','30142','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13504,'files','30143','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13505,'files','30144','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13506,'files','30145','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13507,'files','30146','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13508,'files','30147','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13509,'files','30148','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13510,'files','30149','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13511,'files','30150','error','Deal not found: 566',NULL,'2025-11-14 00:11:14'),
(13512,'files','30151','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13513,'files','30152','error','Deal not found: 566',NULL,'2025-11-14 00:11:14'),
(13514,'files','30153','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13515,'files','30154','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13516,'files','30155','error','Deal not found: 566',NULL,'2025-11-14 00:11:14'),
(13517,'files','30156','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13518,'files','30157','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13519,'files','30158','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13520,'files','30159','error','Deal not found: 566',NULL,'2025-11-14 00:11:14'),
(13521,'files','30160','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13522,'files','30161','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13523,'files','30162','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13524,'files','30163','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13525,'files','30164','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13526,'files','30165','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13527,'files','30166','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13528,'files','30167','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13529,'files','30168','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13530,'files','30169','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13531,'files','30170','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13532,'files','30171','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13533,'files','30172','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13534,'files','30173','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13535,'files','30174','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13536,'files','30175','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13537,'files','30176','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13538,'files','30177','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13539,'files','30178','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13540,'files','30179','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13541,'files','30180','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13542,'files','30181','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13543,'files','30182','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13544,'files','30183','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13545,'files','30184','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13546,'files','30185','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13547,'files','30186','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13548,'files','30187','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13549,'files','30188','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13550,'files','30189','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13551,'files','30190','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13552,'files','30191','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13553,'files','30192','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13554,'files','30193','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13555,'files','30194','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13556,'files','30195','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13557,'files','30196','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13558,'files','30197','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13559,'files','30198','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13560,'files','30199','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13561,'files','30200','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13562,'files','30201','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13563,'files','30202','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13564,'files','30203','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13565,'files','30204','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13566,'files','30205','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13567,'files','30206','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13568,'files','30207','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13569,'files','30208','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13570,'files','30209','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13571,'files','30210','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13572,'files','30211','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13573,'files','30212','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13574,'files','30213','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13575,'files','30214','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13576,'files','30215','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13577,'files','30216','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13578,'files','30217','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13579,'files','30218','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13580,'files','30219','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13581,'files','30220','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13582,'files','30221','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13583,'files','30222','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13584,'files','30223','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13585,'files','30224','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13586,'files','30225','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13587,'files','30226','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13588,'files','30227','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13589,'files','30228','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13590,'files','30229','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13591,'files','30230','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13592,'files','30231','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13593,'files','30232','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13594,'files','30233','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13595,'files','30234','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13596,'files','30235','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13597,'files','30236','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13598,'files','30237','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13599,'files','30238','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13600,'files','30239','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13601,'files','30240','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13602,'files','30241','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13603,'files','30242','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13604,'files','30243','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13605,'files','30244','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13606,'files','30245','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13607,'files','30246','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13608,'files','30247','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13609,'files','30248','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13610,'files','30249','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13611,'files','30250','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13612,'files','30251','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13613,'files','30252','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13614,'files','30253','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13615,'files','30254','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13616,'files','30255','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13617,'files','30256','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13618,'files','30257','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13619,'files','30258','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13620,'files','30259','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13621,'files','30260','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13622,'files','30261','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13623,'files','30262','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13624,'files','30263','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13625,'files','30264','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13626,'files','30265','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13627,'files','30266','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13628,'files','30267','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13629,'files','30268','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13630,'files','30269','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13631,'files','30270','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13632,'files','30271','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13633,'files','30272','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13634,'files','30273','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13635,'files','30274','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13636,'files','30275','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13637,'files','30276','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13638,'files','30277','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13639,'files','30279','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13640,'files','30280','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13641,'files','30281','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13642,'files','30282','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13643,'files','30283','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13644,'files','30284','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13645,'files','30285','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13646,'files','30286','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13647,'files','30287','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13648,'files','30288','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13649,'files','30289','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13650,'files','30290','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13651,'files','30291','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13652,'files','30292','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13653,'files','30293','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13654,'files','30294','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13655,'files','30295','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13656,'files','30296','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13657,'files','30297','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13658,'files','30298','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13659,'files','30299','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13660,'files','30300','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13661,'files','30301','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13662,'files','30302','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13663,'files','30303','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13664,'files','30304','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13665,'files','30305','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13666,'files','30306','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13667,'files','30307','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13668,'files','30308','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13669,'files','30309','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13670,'files','30310','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13671,'files','30311','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13672,'files','30312','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13673,'files','30313','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13674,'files','30314','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13675,'files','30315','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13676,'files','30316','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13677,'files','30317','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13678,'files','30318','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13679,'files','30319','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13680,'files','30320','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13681,'files','30321','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13682,'files','30322','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13683,'files','30323','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13684,'files','30324','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13685,'files','30325','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13686,'files','30326','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13687,'files','30327','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13688,'files','30328','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13689,'files','30329','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13690,'files','30330','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13691,'files','30331','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13692,'files','30332','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13693,'files','30333','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13694,'files','30334','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13695,'files','30335','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13696,'files','30336','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13697,'files','30337','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13698,'files','30338','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13699,'files','30339','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13700,'files','30340','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13701,'files','30341','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13702,'files','30342','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13703,'files','30343','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13704,'files','30344','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13705,'files','30345','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13706,'files','30346','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13707,'files','30347','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13708,'files','30348','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13709,'files','30349','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13710,'files','30350','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13711,'files','30351','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13712,'files','30352','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13713,'files','30353','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13714,'files','30354','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13715,'files','30355','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13716,'files','30356','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13717,'files','30357','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13718,'files','30358','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13719,'files','30359','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13720,'files','30360','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13721,'files','30361','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13722,'files','30362','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13723,'files','30363','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13724,'files','30364','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13725,'files','30365','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13726,'files','30366','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13727,'files','30367','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13728,'files','30368','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13729,'files','30369','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13730,'files','30370','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13731,'files','30371','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13732,'files','30372','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13733,'files','30373','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13734,'files','30374','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13735,'files','30375','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13736,'files','30376','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13737,'files','30787','error','Deal not found: 4',NULL,'2025-11-14 00:11:14'),
(13738,'files','30839','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13739,'files','30840','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13740,'files','33211','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13741,'files','35340','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13742,'files','35415','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13743,'files','37367','error','Deal not found: 58',NULL,'2025-11-14 00:11:14'),
(13744,'files','37368','error','Deal not found: 58',NULL,'2025-11-14 00:11:14'),
(13745,'files','38011','error','Deal not found: 1596',NULL,'2025-11-14 00:11:14'),
(13746,'files','38012','error','Deal not found: 1596',NULL,'2025-11-14 00:11:14'),
(13747,'files','38013','error','Deal not found: 1596',NULL,'2025-11-14 00:11:14'),
(13748,'files','38014','error','Deal not found: 1596',NULL,'2025-11-14 00:11:14'),
(13749,'files','38404','error','Deal not found: 1597',NULL,'2025-11-14 00:11:14'),
(13750,'files','38405','error','Deal not found: 1597',NULL,'2025-11-14 00:11:14'),
(13751,'files','38634','error','Deal not found: 1604',NULL,'2025-11-14 00:11:14'),
(13752,'files','39390','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13753,'files','39393','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13754,'files','40097','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13755,'files','40098','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13756,'files','40240','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13757,'files','40241','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13758,'files','41182','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13759,'files','41374','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13760,'files','41629','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13761,'files','41632','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13762,'files','42056','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13763,'files','42808','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13764,'files','43324','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13765,'files','43325','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13766,'files','43356','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13767,'files','43433','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13768,'files','43555','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13769,'files','43697','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13770,'files','43698','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13771,'files','43699','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13772,'files','43754','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13773,'files','43758','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13774,'files','43791','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13775,'files','43821','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13776,'files','43822','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13777,'files','43823','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13778,'files','43824','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13779,'files','43825','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13780,'files','43826','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13781,'files','43827','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13782,'files','43828','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13783,'files','43829','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13784,'files','43830','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13785,'files','43831','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13786,'files','43832','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13787,'files','43833','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13788,'files','43923','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13789,'files','43924','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13790,'files','43925','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13791,'files','43981','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13792,'files','44005','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13793,'files','44006','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13794,'files','44007','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13795,'files','44122','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13796,'files','44123','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13797,'files','44124','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13798,'files','44244','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13799,'files','44245','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13800,'files','44257','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13801,'files','44267','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13802,'files','44268','error','Deal not found: 1641',NULL,'2025-11-14 00:11:14'),
(13803,'files','44269','error','Deal not found: 1641',NULL,'2025-11-14 00:11:14'),
(13804,'files','44279','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13805,'files','44280','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13806,'files','44281','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13807,'files','44282','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13808,'files','44293','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13809,'files','44309','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13810,'files','44310','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13811,'files','44311','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13812,'files','44394','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13813,'files','44438','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13814,'files','44439','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13815,'files','44445','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13816,'files','44472','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13817,'files','44484','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13818,'files','44486','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13819,'files','44487','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13820,'files','44513','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13821,'files','44637','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13822,'files','44779','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13823,'files','44783','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13824,'files','44784','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13825,'files','44875','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13826,'files','44876','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13827,'files','44877','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13828,'files','44978','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13829,'files','44981','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13830,'files','44982','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13831,'files','44983','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13832,'files','44987','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13833,'files','44989','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13834,'files','44990','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13835,'files','44991','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13836,'files','44992','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13837,'files','45031','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13838,'files','45032','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13839,'files','45033','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13840,'files','45034','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13841,'files','45053','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13842,'files','45054','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13843,'files','45094','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13844,'files','45283','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13845,'files','45357','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13846,'files','45358','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13847,'files','45362','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13848,'files','45378','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13849,'files','45379','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13850,'files','45386','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13851,'files','45387','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13852,'files','45388','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13853,'files','45389','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13854,'files','45390','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13855,'files','45391','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13856,'files','45423','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13857,'files','45576','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13858,'files','45651','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13859,'files','45652','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13860,'files','45653','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13861,'files','45774','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13862,'files','45778','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13863,'files','45853','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13864,'files','45865','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13865,'files','46029','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13866,'files','46030','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13867,'files','46031','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13868,'files','46032','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13869,'files','46033','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13870,'files','46041','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13871,'files','46042','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13872,'files','46084','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13873,'files','46086','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13874,'files','46087','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13875,'files','46092','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13876,'files','46140','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13877,'files','46141','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13878,'files','46142','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13879,'files','46143','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13880,'files','46184','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13881,'files','46196','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13882,'files','46219','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13883,'files','46221','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13884,'files','46222','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13885,'files','46229','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13886,'files','46230','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13887,'files','46236','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13888,'files','46289','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13889,'files','46360','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13890,'files','46361','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13891,'files','46385','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13892,'files','46386','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13893,'files','46422','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13894,'files','46423','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13895,'files','46424','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13896,'files','61401','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13897,'files','61402','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13898,'files','61404','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13899,'files','61405','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13900,'files','61454','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13901,'files','61458','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13902,'files','61459','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13903,'files','61460','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13904,'files','61461','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13905,'files','61462','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13906,'files','61470','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13907,'files','61471','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13908,'files','61547','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13909,'files','61548','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13910,'files','61582','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13911,'files','61583','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13912,'files','61584','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13913,'files','61585','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13914,'files','61586','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13915,'files','61587','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13916,'files','61643','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13917,'files','61644','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13918,'files','61682','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13919,'files','61683','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13920,'files','61926','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13921,'files','61927','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13922,'files','61931','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13923,'files','61932','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13924,'files','61933','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13925,'files','61951','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13926,'files','61952','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13927,'files','61953','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13928,'files','61954','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13929,'files','62216','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13930,'files','62279','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13931,'files','62742','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13932,'files','62743','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13933,'files','62744','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13934,'files','62801','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13935,'files','62862','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13936,'files','62863','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13937,'files','62886','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13938,'files','62887','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13939,'files','62888','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13940,'files','62889','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13941,'files','62890','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13942,'files','62891','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13943,'files','62892','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13944,'files','63048','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13945,'files','63132','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13946,'files','63137','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13947,'files','63181','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13948,'files','63185','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13949,'files','63188','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13950,'files','63189','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13951,'files','63312','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13952,'files','63348','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13953,'files','63394','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13954,'files','63395','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13955,'files','63396','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13956,'files','63397','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13957,'files','63398','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13958,'files','63399','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13959,'files','63400','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13960,'files','63420','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13961,'files','63421','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13962,'files','63629','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13963,'files','63630','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13964,'files','63631','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13965,'files','63632','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13966,'files','63633','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13967,'files','63634','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13968,'files','63635','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13969,'files','63636','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13970,'files','63642','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13971,'files','63758','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13972,'files','63759','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13973,'files','63955','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13974,'files','64053','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13975,'files','64210','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13976,'files','64501','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13977,'files','64502','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13978,'files','64503','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13979,'files','64504','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13980,'files','64505','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13981,'files','64515','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13982,'files','64538','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13983,'files','64851','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13984,'files','64950','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13985,'files','65255','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13986,'files','65256','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13987,'files','65291','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13988,'files','65292','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13989,'files','65318','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13990,'files','65356','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13991,'files','65441','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13992,'files','65442','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13993,'files','65443','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13994,'files','65444','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13995,'files','65445','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13996,'files','65446','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13997,'files','65447','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13998,'files','65448','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13999,'files','65449','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14000,'files','65450','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14001,'files','65451','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14002,'files','65452','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14003,'files','65491','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14004,'files','65542','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14005,'files','65594','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14006,'files','65595','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14007,'files','65596','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14008,'files','65597','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14009,'files','65598','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14010,'files','65602','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14011,'files','65603','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14012,'files','65604','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14013,'files','65605','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14014,'files','65606','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14015,'files','65607','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14016,'files','65693','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14017,'files','65694','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14018,'files','65823','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14019,'files','65824','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14020,'files','65825','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14021,'files','65826','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14022,'files','65827','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14023,'files','65828','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14024,'files','65829','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14025,'files','65830','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14026,'files','65836','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14027,'files','65837','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14028,'files','65838','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14029,'files','65839','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14030,'files','65840','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14031,'files','65842','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14032,'files','65844','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14033,'files','65845','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14034,'files','65846','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14035,'files','65847','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14036,'files','65848','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14037,'files','65849','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14038,'files','65851','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14039,'files','65852','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14040,'files','66057','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14041,'files','66058','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14042,'files','66059','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14043,'files','66060','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14044,'files','66061','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14045,'files','66065','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14046,'files','66066','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14047,'files','66083','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14048,'files','66122','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14049,'files','66190','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14050,'files','66382','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14051,'files','66384','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14052,'files','66385','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14053,'files','66402','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14054,'files','66555','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14055,'files','66556','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14056,'files','66557','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14057,'files','66558','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14058,'files','66559','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14059,'files','66795','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14060,'files','66815','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14061,'files','66928','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14062,'files','66942','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14063,'files','66943','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14064,'files','66944','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14065,'files','66945','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14066,'files','67015','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14067,'files','67036','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14068,'files','67091','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14069,'files','67092','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14070,'files','67094','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14071,'files','67095','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14072,'files','67096','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14073,'files','67099','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14074,'files','67118','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14075,'files','67124','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14076,'files','67272','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14077,'files','67367','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14078,'files','67378','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14079,'files','67431','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14080,'files','67511','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14081,'files','67512','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14082,'files','67514','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14083,'files','67515','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14084,'files','67542','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14085,'files','67543','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14086,'files','67544','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14087,'files','67545','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14088,'files','67546','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14089,'files','67547','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14090,'files','67566','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14091,'files','67622','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14092,'files','67623','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14093,'files','67670','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14094,'files','67671','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14095,'files','67675','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14096,'files','67676','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14097,'files','67677','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14098,'files','67678','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14099,'files','67680','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14100,'files','67681','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14101,'files','67745','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14102,'files','67968','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14103,'files','68084','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14104,'files','68085','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14105,'files','68086','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14106,'files','68087','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14107,'files','68088','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14108,'files','68104','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14109,'files','68137','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14110,'files','68138','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14111,'files','68139','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14112,'files','68140','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14113,'files','68201','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14114,'files','68278','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14115,'files','68363','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14116,'files','68364','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14117,'files','68365','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14118,'files','68366','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14119,'files','68367','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14120,'files','68368','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14121,'files','68382','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14122,'files','68480','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14123,'files','68481','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14124,'files','68482','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14125,'files','68483','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14126,'files','68484','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14127,'files','68489','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14128,'files','68490','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14129,'files','68491','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14130,'files','68521','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14131,'files','68522','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14132,'files','68548','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14133,'files','68549','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14134,'files','68564','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14135,'files','68565','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14136,'files','68566','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14137,'files','68567','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14138,'files','68680','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14139,'files','68705','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14140,'files','68706','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14141,'files','68707','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14142,'files','68708','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14143,'files','68709','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14144,'files','68788','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14145,'files','68960','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14146,'files','68961','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14147,'files','68962','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14148,'files','68963','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14149,'files','68984','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14150,'files','69055','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14151,'files','69066','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14152,'files','69098','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14153,'files','69130','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14154,'files','69236','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14155,'files','69237','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14156,'files','69266','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14157,'files','69269','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14158,'files','69370','error','Deal not found: 1767',NULL,'2025-11-14 00:11:14'),
(14159,'files','69382','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14160,'files','69383','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14161,'files','69384','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14162,'files','69385','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14163,'files','69435','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14164,'files','69486','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14165,'files','69487','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14166,'files','69528','error','Deal not found: 1766',NULL,'2025-11-14 00:11:14'),
(14167,'files','69532','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14168,'files','69579','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14169,'files','69580','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14170,'files','69595','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14171,'files','69612','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14172,'files','69791','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14173,'files','69929','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14174,'files','69969','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14175,'files','69970','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14176,'files','69991','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14177,'files','69999','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14178,'files','70008','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14179,'files','70073','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14180,'files','70074','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14181,'files','70075','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14182,'files','70081','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14183,'files','70082','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14184,'files','70083','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14185,'files','70084','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14186,'files','70085','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14187,'files','70086','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14188,'files','70193','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14189,'files','70227','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14190,'files','70228','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14191,'files','70234','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14192,'files','70235','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14193,'files','70319','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14194,'files','70320','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14195,'files','70323','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14196,'files','70326','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14197,'files','70327','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14198,'files','70328','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14199,'files','70475','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14200,'files','70478','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14201,'files','70717','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14202,'files','70718','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14203,'files','70719','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14204,'files','70839','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14205,'files','70840','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14206,'files','70841','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14207,'files','70842','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14208,'files','70864','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14209,'files','70865','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14210,'files','70866','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14211,'files','70905','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14212,'files','70915','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14213,'files','70916','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14214,'files','70917','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14215,'files','70932','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14216,'files','71005','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14217,'files','71013','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14218,'files','71107','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14219,'files','71108','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14220,'files','71113','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14221,'files','71114','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14222,'files','71115','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14223,'files','71116','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14224,'files','71141','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14225,'files','71204','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14226,'files','71205','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14227,'files','71207','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14228,'files','71208','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14229,'files','71209','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14230,'files','71214','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14231,'files','71215','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14232,'files','71216','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14233,'files','71392','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14234,'files','71394','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14235,'files','71395','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14236,'files','71396','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14237,'files','71397','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14238,'files','71398','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14239,'files','71414','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14240,'files','71415','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14241,'files','71416','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14242,'files','71417','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14243,'files','71430','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14244,'files','71487','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14245,'files','71532','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14246,'files','71536','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14247,'files','71538','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14248,'files','71539','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14249,'files','71560','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14250,'files','71720','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14251,'files','71721','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14252,'files','71836','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14253,'files','71846','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14254,'files','71847','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14255,'files','71850','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14256,'files','71854','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14257,'files','71855','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14258,'files','71856','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14259,'files','71936','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14260,'files','72048','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14261,'files','72167','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14262,'files','72231','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14263,'files','72262','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14264,'files','72323','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14265,'files','72606','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14266,'files','72899','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14267,'files','72931','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14268,'files','72941','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14269,'files','72946','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14270,'files','72947','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14271,'files','73088','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14272,'files','73089','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14273,'files','73090','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14274,'files','73091','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14275,'files','73092','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14276,'files','73120','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14277,'files','73121','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14278,'files','73122','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14279,'files','73123','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14280,'files','73248','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14281,'files','73351','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14282,'files','73352','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14283,'files','73359','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14284,'files','73360','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14285,'files','73361','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14286,'files','73362','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14287,'files','73507','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14288,'files','73594','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14289,'files','73595','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14290,'files','73596','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14291,'files','73597','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14292,'files','73608','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14293,'files','73614','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14294,'files','73873','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14295,'files','73874','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14296,'files','73875','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14297,'files','73876','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14298,'files','73877','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14299,'files','73878','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14300,'files','73934','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14301,'files','74074','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14302,'files','74133','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14303,'files','74168','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14304,'files','74169','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14305,'files','74215','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14306,'files','74361','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14307,'files','74362','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14308,'files','74446','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14309,'files','74531','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14310,'files','74532','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14311,'files','74533','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14312,'files','74534','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14313,'files','74535','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14314,'files','74536','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14315,'files','74965','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14316,'files','74979','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14317,'files','75013','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14318,'files','75014','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14319,'files','75017','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14320,'files','75024','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14321,'files','75025','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14322,'files','75026','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14323,'files','75027','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14324,'files','75028','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14325,'files','75030','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14326,'files','75031','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14327,'files','75033','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14328,'files','75036','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14329,'files','75334','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14330,'files','75471','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14331,'files','75472','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14332,'files','75515','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14333,'files','75516','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14334,'files','75519','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14335,'files','75520','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14336,'files','75521','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14337,'files','75522','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14338,'files','75639','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14339,'files','75688','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14340,'files','75689','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14341,'files','75691','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14342,'files','75723','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14343,'files','75724','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14344,'files','75797','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14345,'files','75911','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14346,'files','76005','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14347,'files','76006','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14348,'files','76190','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14349,'files','76238','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14350,'files','76951','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14351,'files','77005','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14352,'files','77037','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14353,'files','77163','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14354,'files','77164','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14355,'files','77327','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14356,'files','77634','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14357,'files','77635','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14358,'files','77776','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14359,'files','77777','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14360,'files','77778','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14361,'files','77779','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14362,'files','77780','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14363,'files','77881','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14364,'files','77882','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14365,'files','77883','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14366,'files','77884','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14367,'files','77890','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14368,'files','77891','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14369,'files','77892','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14370,'files','77893','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14371,'files','78006','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14372,'files','78008','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14373,'files','78011','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14374,'files','78012','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14375,'files','78013','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14376,'files','78242','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14377,'files','78243','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14378,'files','78244','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14379,'files','78256','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14380,'files','78258','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14381,'files','78259','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14382,'files','78260','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14383,'files','78344','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14384,'files','78345','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14385,'files','78360','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14386,'files','78361','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14387,'files','78364','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14388,'files','78365','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14389,'files','78367','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14390,'files','78372','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14391,'files','78373','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14392,'files','78374','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14393,'files','78375','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14394,'files','78429','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14395,'files','78430','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14396,'files','78431','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14397,'files','78432','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14398,'files','78433','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14399,'files','78434','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14400,'files','78438','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14401,'files','78444','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14402,'files','78457','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14403,'files','78458','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14404,'files','78459','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14405,'files','78460','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14406,'files','78462','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14407,'files','78532','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14408,'files','78548','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14409,'files','78552','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14410,'files','78880','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14411,'files','78900','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14412,'files','78901','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14413,'files','78902','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14414,'files','78948','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14415,'files','78992','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14416,'files','79018','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14417,'files','79168','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14418,'files','79190','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14419,'files','79191','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14420,'files','79192','error','Deal not found: 1566',NULL,'2025-11-14 00:11:14'),
(14421,'files','79193','error','Deal not found: 4',NULL,'2025-11-14 00:11:14'),
(14422,'files','79202','error','Deal not found: 1707',NULL,'2025-11-14 00:11:14'),
(14423,'files','79203','error','Deal not found: 1572',NULL,'2025-11-14 00:11:14'),
(14424,'files','79234','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14425,'files','79235','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14426,'files','79272','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14427,'files','79278','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14428,'files','79311','error','Deal not found: 1638',NULL,'2025-11-14 00:11:14'),
(14429,'files','79312','error','Deal not found: 1638',NULL,'2025-11-14 00:11:14'),
(14430,'files','79313','error','Deal not found: 1638',NULL,'2025-11-14 00:11:14'),
(14431,'files','79492','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14432,'files','79493','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14433,'files','79582','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14434,'files','79583','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14435,'files','79584','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14436,'files','79906','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14437,'files','79931','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14438,'files','79932','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14439,'files','80111','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14440,'files','80112','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14441,'files','80113','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14442,'files','80167','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14443,'files','80205','error','Deal not found: 1827',NULL,'2025-11-14 00:11:14'),
(14444,'files','80301','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14445,'files','80336','error','Deal not found: 1802',NULL,'2025-11-14 00:11:14'),
(14446,'files','80501','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14447,'files','80502','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14448,'files','80503','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14449,'files','80504','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14450,'files','81097','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14451,'files','81126','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14452,'files','81593','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14453,'files','81610','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14454,'files','81611','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14455,'files','81612','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14456,'files','81613','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14457,'files','81624','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14458,'files','81625','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14459,'files','81851','error','Deal not found: 1812',NULL,'2025-11-14 00:11:14'),
(14460,'files','81852','error','Deal not found: 1812',NULL,'2025-11-14 00:11:14'),
(14461,'files','81853','error','Deal not found: 1812',NULL,'2025-11-14 00:11:14'),
(14462,'files','81854','error','Deal not found: 1812',NULL,'2025-11-14 00:11:14'),
(14463,'files','81915','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14464,'files','81916','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14465,'files','81917','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14466,'files','81918','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14467,'files','81919','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14468,'files','82664','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14469,'files','82715','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14470,'files','82716','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14471,'files','82717','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14472,'files','82732','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14473,'files','82733','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14474,'files','82762','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14475,'files','82763','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14476,'files','82783','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14477,'files','82904','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14478,'files','83031','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14479,'files','83032','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14480,'files','83033','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14481,'files','83034','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14482,'files','83061','error','Deal not found: 1852',NULL,'2025-11-14 00:11:15'),
(14483,'files','83229','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14484,'files','83237','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14485,'files','83350','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14486,'files','83503','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14487,'files','83524','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14488,'files','83525','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14489,'files','83642','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14490,'files','83643','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14491,'files','84258','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14492,'files','85285','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14493,'files','85286','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14494,'files','85287','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14495,'files','85288','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14496,'files','85289','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14497,'files','85439','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14498,'files','86284','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14499,'files','86608','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14500,'files','86609','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14501,'files','86957','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14502,'files','87009','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14503,'files','87010','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14504,'files','87011','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14505,'files','87012','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14506,'files','87050','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14507,'files','87055','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14508,'files','87677','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14509,'files','87678','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14510,'files','88027','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14511,'files','88028','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14512,'files','88029','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14513,'files','88038','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14514,'files','88263','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14515,'files','88505','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14516,'files','88868','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14517,'files','88874','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14518,'files','88875','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14519,'files','88876','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14520,'files','88877','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14521,'files','88910','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14522,'files','88911','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14523,'files','88912','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14524,'files','88925','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14525,'files','89258','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14526,'files','89261','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14527,'files','89262','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14528,'files','89263','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14529,'files','89288','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14530,'files','89297','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14531,'files','89338','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14532,'files','89340','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14533,'files','89447','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14534,'files','89448','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14535,'files','90082','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14536,'files','90083','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14537,'files','90084','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14538,'files','90085','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14539,'files','90086','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14540,'files','90087','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14541,'files','90158','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14542,'files','90159','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14543,'files','90160','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14544,'files','90161','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14545,'files','90162','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14546,'files','90163','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14547,'files','90753','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14548,'files','90754','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14549,'files','90755','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14550,'files','90756','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14551,'files','90757','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14552,'files','90758','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14553,'files','90766','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14554,'files','90767','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14555,'files','90768','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14556,'files','90913','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14557,'files','90914','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14558,'files','90915','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14559,'files','90916','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14560,'files','90917','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14561,'files','90918','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14562,'files','96562','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14563,'files','96563','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14564,'files','96779','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14565,'files','96780','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14566,'files','97793','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14567,'files','97794','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14568,'files','100036','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14569,'files','100177','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14570,'files','100919','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14571,'files','102829','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14572,'files','103159','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14573,'files','104050','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14574,'files','104998','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14575,'files','104999','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14576,'files','105000','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14577,'files','105001','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14578,'files','105002','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14579,'files','105003','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14580,'files','105004','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14581,'files','105005','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14582,'files','105540','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14583,'files','106018','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14584,'files','106019','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14585,'files','106020','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14586,'files','108115','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14587,'files','108279','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14588,'files','108426','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14589,'files','108427','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14590,'files','108650','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14591,'files','108997','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14592,'files','109201','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14593,'files','109222','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14594,'files','109223','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14595,'files','109443','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14596,'files','110516','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14597,'files','110550','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14598,'files','110576','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14599,'files','112970','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14600,'files','113672','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14601,'files','113817','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14602,'files','114588','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14603,'files','114589','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14604,'files','114590','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14605,'files','115016','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14606,'files','115140','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14607,'files','115565','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14608,'files','116486','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14609,'files','116756','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14610,'files','116757','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14611,'files','116758','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14612,'files','116759','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14613,'files','116760','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14614,'files','116897','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14615,'files','116898','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14616,'files','116913','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14617,'files','117081','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14618,'files','117150','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14619,'files','117151','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14620,'files','117352','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14621,'files','117444','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14622,'files','117445','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14623,'files','117446','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14624,'files','117562','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14625,'files','117563','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14626,'files','117564','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14627,'files','117565','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14628,'files','117567','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14629,'files','117713','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14630,'files','117714','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14631,'files','118327','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14632,'files','118387','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14633,'files','118405','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14634,'files','118442','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14635,'files','118460','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14636,'files','118485','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14637,'files','118548','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14638,'files','118553','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14639,'files','118836','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14640,'files','118966','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14641,'files','119017','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14642,'files','119045','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14643,'files','119090','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14644,'files','119351','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14645,'files','119358','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14646,'files','119359','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14647,'files','119509','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14648,'files','119534','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14649,'files','119732','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14650,'files','119733','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14651,'files','119744','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14652,'files','119745','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14653,'files','119746','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14654,'files','119929','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14655,'files','119930','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14656,'files','119931','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14657,'files','120156','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14658,'files','120157','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14659,'files','120347','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14660,'files','120348','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14661,'files','120349','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14662,'files','120350','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14663,'files','120351','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14664,'files','120352','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14665,'files','120569','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14666,'files','120570','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14667,'files','120571','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14668,'files','120572','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14669,'files','120573','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14670,'files','120574','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14671,'files','120831','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14672,'files','120832','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14673,'files','120867','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14674,'files','120868','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14675,'files','120869','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14676,'files','120870','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14677,'files','120902','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14678,'files','120903','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14679,'files','120904','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14680,'files','121022','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14681,'files','121271','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14682,'files','121272','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14683,'files','121273','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14684,'files','121274','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14685,'files','121275','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14686,'files','121710','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14687,'files','122218','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14688,'files','123189','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14689,'files','123190','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14690,'files','123278','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14691,'files','123820','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14692,'files','123821','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14693,'files','124136','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14694,'files','124137','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14695,'files','124138','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14696,'files','125140','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14697,'files','125727','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14698,'files','125728','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14699,'files','125805','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14700,'files','126002','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14701,'files','126021','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14702,'files','126022','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14703,'files','126023','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14704,'files','127828','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14705,'files','127832','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14706,'files','127833','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14707,'files','127834','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14708,'files','127835','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14709,'files','127836','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14710,'files','128218','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14711,'files','128254','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14712,'files','129007','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14713,'files','129054','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14714,'files','129151','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14715,'files','129938','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14716,'files','131161','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14717,'files','131654','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14718,'files','133367','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14719,'files','133864','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14720,'files','133865','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14721,'files','133866','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14722,'files','134151','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14723,'files','134152','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14724,'files','134153','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14725,'files','134305','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14726,'files','134306','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14727,'files','134307','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14728,'files','135998','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14729,'files','136124','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14730,'files','136380','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14731,'files','136381','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14732,'files','136742','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14733,'files','136743','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14734,'files','136744','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14735,'files','136745','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14736,'files','136746','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14737,'files','137029','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14738,'files','137030','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14739,'files','137031','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14740,'files','137032','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14741,'files','137343','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14742,'files','137344','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14743,'files','137345','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14744,'files','137519','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14745,'files','137614','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14746,'files','137615','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14747,'files','137616','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14748,'files','137620','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14749,'files','137633','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14750,'files','137724','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14751,'files','138237','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14752,'files','139016','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14753,'files','139626','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14754,'files','139627','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14755,'files','139798','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14756,'files','139799','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14757,'files','139800','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14758,'files','140264','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14759,'files','140422','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14760,'files','140758','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14761,'files','140819','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14762,'files','141905','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14763,'files','142203','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14764,'files','142380','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14765,'files','142381','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14766,'files','142382','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14767,'files','142383','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14768,'files','143284','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14769,'files','143285','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14770,'files','143286','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14771,'files','143738','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14772,'files','143910','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14773,'files','144696','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14774,'files','144697','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14775,'files','144698','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14776,'files','144699','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14777,'files','144700','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14778,'files','144701','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14779,'files','147546','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14780,'files','147825','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14781,'files','147985','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14782,'files','148389','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14783,'files','148556','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14784,'files','148557','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14785,'files','148558','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14786,'files','148892','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14787,'files','148991','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14788,'files','149739','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14789,'files','150065','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14790,'files','150322','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14791,'files','151541','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14792,'files','153015','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14793,'files','153336','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14794,'files','153337','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14795,'files','153338','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14796,'files','155695','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14797,'files','155696','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14798,'files','156110','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14799,'files','156111','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14800,'files','156112','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14801,'files','156113','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14802,'files','156115','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14803,'files','156116','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14804,'files','156117','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14805,'files','156118','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14806,'files','156119','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14807,'files','156880','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14808,'files','156881','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14809,'files','156882','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14810,'files','156883','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14811,'files','156884','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14812,'files','156885','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14813,'files','156886','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14814,'files','156887','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14815,'files','157558','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14816,'files','157559','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14817,'files','157560','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14818,'files','157561','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14819,'files','157847','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14820,'files','157848','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14821,'files','158239','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14822,'files','158240','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14823,'files','158241','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14824,'files','158242','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14825,'files','158243','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14826,'files','158244','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14827,'files','158549','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14828,'files','158550','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14829,'files','158551','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14830,'files','158552','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14831,'files','158553','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14832,'files','158554','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14833,'files','158555','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14834,'files','158556','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14835,'files','158557','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14836,'files','158558','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14837,'files','158559','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14838,'files','159086','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14839,'files','159087','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14840,'files','159088','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14841,'files','159255','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14842,'files','159256','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14843,'files','159257','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14844,'files','159845','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14845,'files','159848','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14846,'files','159849','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14847,'files','159851','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14848,'files','159852','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14849,'files','159853','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14850,'files','159854','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14851,'files','160344','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14852,'files','171710','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14853,'files','171711','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14854,'files','171815','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14855,'files','171969','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14856,'leads','6f361c30-2b5f-11f0-b07c-d722488bb431','warning','Would create missing organization: ASPETTO INC',NULL,'2025-11-14 00:16:35'),
(14857,'leads','fb866860-efba-11ef-9354-679a087e5dde','warning','Would create missing organization: Analyticsystems',NULL,'2025-11-14 00:16:35'),
(14858,'leads','ffe57cc0-efba-11ef-a25f-27af6aa53296','warning','Would create missing organization: Analyticsystems',NULL,'2025-11-14 00:16:35'),
(14859,'leads','0b43c180-d440-11ef-8a91-dd55c3e12ee5','warning','Would create missing organization: Enginuity Innovation',NULL,'2025-11-14 00:16:35'),
(14860,'leads','05230a40-efbb-11ef-89e4-8f6bc68f48ca','warning','Would create missing organization: MIT',NULL,'2025-11-14 00:16:35'),
(14861,'leads','ec25f6a0-1167-11f0-b0ea-9dcf99750a6f','warning','Would create missing organization: Kippertool',NULL,'2025-11-14 00:16:35'),
(14862,'leads','5a350db0-1169-11f0-8a93-f56042dc8e77','warning','Would create missing organization: HumaNoid',NULL,'2025-11-14 00:16:35'),
(14863,'leads','6cc1d900-4557-11f0-b7c8-dfe6c1885cc5','warning','Would create missing organization: Applied Research Laboratories',NULL,'2025-11-14 00:16:35'),
(14864,'leads','04ba3c30-c9f1-11ef-a932-67e1e8676586','warning','Would create missing organization: Anirudh Sundar organization',NULL,'2025-11-14 00:16:35'),
(14865,'leads','bea716a0-d9a4-11ef-a239-457311a42633','warning','Would create missing organization: Alto Connect',NULL,'2025-11-14 00:16:35'),
(14866,'leads','864d34e0-d9a6-11ef-9388-bd9b59a2c5c0','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(14867,'leads','ed8db2f0-e965-11ef-b439-67371fcb719d','warning','Would create missing organization: Mid Atlantic Drone Development, LLC',NULL,'2025-11-14 00:16:35'),
(14868,'leads','19f446e0-e4a9-11ef-8386-6bcd4ee3c2c8','warning','Would create missing organization: Bluetti',NULL,'2025-11-14 00:16:35'),
(14869,'leads','213370c0-e4a9-11ef-a6d5-b7b59f53aff5','warning','Would create missing organization: Inergysolar',NULL,'2025-11-14 00:16:35'),
(14870,'leads','a380f520-d9aa-11ef-9388-bd9b59a2c5c0','warning','Would create missing organization: Advanced Roofing',NULL,'2025-11-14 00:16:35'),
(14871,'leads','2e7b4dd0-ea2f-11ef-9cfc-81286b7fb5b5','warning','Would create missing organization: On Site Robotics',NULL,'2025-11-14 00:16:35'),
(14872,'leads','dfed1230-fac2-11ef-8428-d3134bbcb217','warning','Would create missing organization: Empirical Systems Aerospace',NULL,'2025-11-14 00:16:35'),
(14873,'leads','f6b8fd20-fac3-11ef-9cb1-57d748d48e5a','warning','Would create missing organization: Richard Root organization',NULL,'2025-11-14 00:16:35'),
(14874,'leads','f74fa930-ee1d-11ef-9959-1b0e2676ae4b','warning','Would create missing organization: Malloy Aeronautics',NULL,'2025-11-14 00:16:35'),
(14875,'leads','18bfb060-ee1e-11ef-966d-c1c045126985','warning','Would create missing organization: Nicolas Montoya organization',NULL,'2025-11-14 00:16:35'),
(14876,'leads','af51b000-ff44-11ef-be17-0516b8e868aa','warning','Would create missing organization: COTA Karting Battery',NULL,'2025-11-14 00:16:35'),
(14877,'leads','b494bbc0-ff44-11ef-a1c9-01f10428b671','warning','Would create missing organization: Six-15 Glasses',NULL,'2025-11-14 00:16:35'),
(14878,'leads','46204050-4559-11f0-97a6-e1b74ced1001','warning','Would create missing organization: RAILBLAZA',NULL,'2025-11-14 00:16:35'),
(14879,'leads','4f43dd40-6287-11f0-9355-89f1a44fb036','warning','Would create missing organization: Texas Marine',NULL,'2025-11-14 00:16:35'),
(14880,'leads','f064b940-829b-11f0-b332-31dbace912b4','warning','Would create missing organization: Mirco Vehicle Technology LLC',NULL,'2025-11-14 00:16:35'),
(14881,'leads','456f54c0-00da-11f0-9c97-276fd154ba62','warning','Would create missing organization: Doble',NULL,'2025-11-14 00:16:35'),
(14882,'leads','d7a78010-4559-11f0-a567-cbc2bb9c049d','warning','Would create missing organization: Steve Statema organization',NULL,'2025-11-14 00:16:35'),
(14883,'leads','aced73a0-1b03-11f0-a838-71ef90d7f1d9','warning','Would create missing organization: Department of Homeland Security',NULL,'2025-11-14 00:16:35'),
(14884,'leads','a4222bd0-829b-11f0-b332-31dbace912b4','warning','Would create missing organization: Golf Cart OEM',NULL,'2025-11-14 00:16:35'),
(14885,'leads','3f0b43d0-829b-11f0-a59e-cf7ab09132ac','warning','Would create missing organization: Shaider Tech LLC',NULL,'2025-11-14 00:16:35'),
(14886,'leads','0e81d440-6284-11f0-97b6-8b92c8e9e9e9','warning','Would create missing organization: US Nacy CENSECFOR DET GULFPORT',NULL,'2025-11-14 00:16:35'),
(14887,'leads','430506b0-829b-11f0-8479-f5fe35a5a21f','warning','Would create missing organization: Trimverse - 72V',NULL,'2025-11-14 00:16:35'),
(14888,'leads','2ddafdc0-4ae8-11f0-bb93-af18be670375','warning','Would create missing organization: Havenhill Synergy Ltd',NULL,'2025-11-14 00:16:35'),
(14889,'leads','951e6e50-6284-11f0-9355-89f1a44fb036','warning','Would create missing organization: National Park Service',NULL,'2025-11-14 00:16:35'),
(14890,'leads','24ec3e40-6285-11f0-9355-89f1a44fb036','warning','Would create missing organization: Advance Boat',NULL,'2025-11-14 00:16:35'),
(14891,'leads','679dc290-6285-11f0-93db-21362d29a27b','warning','Would create missing organization: Dealers Electric Supply',NULL,'2025-11-14 00:16:35'),
(14892,'leads','3f293410-6286-11f0-91a5-397fb148a72c','warning','Would create missing organization: Dauer Manufacturing -',NULL,'2025-11-14 00:16:35'),
(14893,'leads','c630c9b0-67d0-11f0-a2af-81f18c53c554','warning','Would create missing organization: HubSpot, Inc.',NULL,'2025-11-14 00:16:35'),
(14894,'leads','484ba720-79e3-11f0-9483-d3784b88346c','warning','Would create missing organization: James  Kurczewski  organization',NULL,'2025-11-14 00:16:35'),
(14895,'leads','2cec74f0-8294-11f0-a59e-cf7ab09132ac','warning','Would create missing organization: Office of Commander Surgeon',NULL,'2025-11-14 00:16:35'),
(14896,'leads','39f578b0-8292-11f0-a59e-cf7ab09132ac','warning','Would create missing organization: Student',NULL,'2025-11-14 00:16:35'),
(14897,'leads','800d1d50-8290-11f0-a59e-cf7ab09132ac','warning','Would create missing organization: Propelemarine | Electric paddle',NULL,'2025-11-14 00:16:35'),
(14898,'leads','581d2820-8291-11f0-ae40-4b6df05ef984','warning','Would create missing organization: Electric Yacht',NULL,'2025-11-14 00:16:35'),
(14899,'leads','5d22b5b0-8291-11f0-8479-f5fe35a5a21f','warning','Would create missing organization: Tesla',NULL,'2025-11-14 00:16:35'),
(14900,'leads','04013730-8292-11f0-8479-f5fe35a5a21f','warning','Would create missing organization: SynDaver',NULL,'2025-11-14 00:16:35'),
(14901,'leads','a4988360-8292-11f0-b9b4-9d43547fe062','warning','Would create missing organization: Systems by Green Choice',NULL,'2025-11-14 00:16:35'),
(14902,'leads','fa26e1c0-d9a8-11ef-8a2f-2704684e7441','warning','Would create missing organization: ElectricFish',NULL,'2025-11-14 00:16:35'),
(14903,'leads','bee916e0-ee17-11ef-9b54-fb8e43539ea2','warning','Would create missing organization: Alex Ruiz organization',NULL,'2025-11-14 00:16:35'),
(14904,'leads','f9630790-ee17-11ef-963e-2df1899fc200','warning','Would create missing organization: US SOC POE MARATIME',NULL,'2025-11-14 00:16:35'),
(14905,'leads','9d098f90-ee18-11ef-9b54-fb8e43539ea2','warning','Would create missing organization: HTS AmeriTek',NULL,'2025-11-14 00:16:35'),
(14906,'leads','a2fe8630-ee18-11ef-966d-c1c045126985','warning','Would create missing organization: Optum',NULL,'2025-11-14 00:16:35'),
(14907,'leads','309fad60-f9e6-11ef-ab1c-87e12a8bd78f','warning','Would create missing organization: B E Marine Service',NULL,'2025-11-14 00:16:35'),
(14908,'leads','f7420dd0-fac4-11ef-bfb3-0d53ac223cec','warning','Would create missing organization: Project Canary',NULL,'2025-11-14 00:16:35'),
(14909,'leads','1c7efb80-fac5-11ef-a8ce-438f90876d58','warning','Would create missing organization: Grander Marine',NULL,'2025-11-14 00:16:35'),
(14910,'leads','be6761c0-ff44-11ef-a1c9-01f10428b671','warning','Would create missing organization: Mercurius Tech',NULL,'2025-11-14 00:16:35'),
(14911,'leads','c99d26f0-ff54-11ef-b60c-49fa3e21c67c','warning','Would create missing organization: ClearWorld',NULL,'2025-11-14 00:16:35'),
(14912,'leads','6776c5d0-2b5f-11f0-953a-914460d42c56','warning','Would create missing organization: Exfo',NULL,'2025-11-14 00:16:35'),
(14913,'leads','6a9718a0-2b5f-11f0-a754-fb727b1d14ed','warning','Would create missing organization: Swarmbotics AI',NULL,'2025-11-14 00:16:35'),
(14914,'leads','97cbe2a0-455a-11f0-9b40-ef4957727fb6','warning','Would create missing organization: Defense Threat Reduction Agency',NULL,'2025-11-14 00:16:35'),
(14915,'leads','d17c5b40-457a-11f0-a78c-39ccd61f57dc','warning','Would create missing organization: Black Saber Group',NULL,'2025-11-14 00:16:35'),
(14916,'leads','0565e0f0-4631-11f0-ad09-951b989969ea','warning','Would create missing organization: Bounce Imaging',NULL,'2025-11-14 00:16:35'),
(14917,'leads','0a200da0-4631-11f0-895c-711eab65d642','warning','Would create missing organization: JetSurf',NULL,'2025-11-14 00:16:35'),
(14918,'leads','603fe290-6284-11f0-91a5-397fb148a72c','warning','Would create missing organization: AIRBOSS DEFENSE GROUP LLC',NULL,'2025-11-14 00:16:35'),
(14919,'leads','c874d370-6284-11f0-91a5-397fb148a72c','warning','Would create missing organization: Aqua-Vu',NULL,'2025-11-14 00:16:35'),
(14920,'leads','19317750-6285-11f0-9355-89f1a44fb036','warning','Would create missing organization: Soundside Carts',NULL,'2025-11-14 00:16:35'),
(14921,'leads','2488cea0-829c-11f0-a59e-cf7ab09132ac','warning','Would create missing organization: BHI, CO',NULL,'2025-11-14 00:16:35'),
(14922,'leads','27e54010-829c-11f0-ae40-4b6df05ef984','warning','Would create missing organization: MR Miami',NULL,'2025-11-14 00:16:35'),
(14923,'leads','9c8cfd40-829c-11f0-b332-31dbace912b4','warning','Would create missing organization: Vanjen Group',NULL,'2025-11-14 00:16:35'),
(14924,'leads','a8a1cb10-829c-11f0-a59e-cf7ab09132ac','warning','Would create missing organization: Hydrants',NULL,'2025-11-14 00:16:35'),
(14925,'leads','55687520-82a1-11f0-92ee-8dcbb1af7f0b','warning','Would create missing organization: Batteries Plus',NULL,'2025-11-14 00:16:35'),
(14926,'leads','dc3922d0-8a89-11f0-921a-57afd5b2529a','warning','Would create missing organization: Streetleaf',NULL,'2025-11-14 00:16:35'),
(14927,'leads','e25d3fc0-8a89-11f0-921a-57afd5b2529a','warning','Would create missing organization: National Battery Supply',NULL,'2025-11-14 00:16:35'),
(14928,'leads','e632ffe0-8a89-11f0-af93-ff2ea65fc23d','warning','Would create missing organization: Fechheimer Brothers Co.',NULL,'2025-11-14 00:16:35'),
(14929,'leads','aaaab360-54f1-11ef-99fa-b3cc65f4605b','warning','Would create missing organization: Applied Physics Laboratory',NULL,'2025-11-14 00:16:35'),
(14930,'leads','48b1b670-5b42-11ef-8d90-f5c271ae4e5d','warning','Would create missing organization: n/A',NULL,'2025-11-14 00:16:35'),
(14931,'leads','1fec77d0-063c-11ef-88af-1d5859aff86d','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(14932,'leads','647e6290-63cb-11ef-b701-c5bea3976d00','warning','Would create missing organization: Big Toe Engineering LLC',NULL,'2025-11-14 00:16:35'),
(14933,'leads','88271310-5361-11ef-b44c-95f9bc766e6d','warning','Would create missing organization: Aris Wind, LLC',NULL,'2025-11-14 00:16:35'),
(14934,'leads','55fb8210-275e-11ef-8fa1-632a4d9ccf1c','warning','Would create missing organization: https://www.paradigmrobotics.tech/',NULL,'2025-11-14 00:16:35'),
(14935,'leads','af27e040-71ff-11ef-bfef-eb4c9f6f3a09','warning','Would create missing organization: Genomekey',NULL,'2025-11-14 00:16:35'),
(14936,'leads','7b346940-5967-11ee-a15e-8138d7a20f29','warning','Would create missing organization: Advanced Aircraft',NULL,'2025-11-14 00:16:35'),
(14937,'leads','7ce493e0-4045-11ee-a156-d58111db5cff','warning','Would create missing organization: VDOT',NULL,'2025-11-14 00:16:35'),
(14938,'leads','a0618210-4045-11ee-a41f-8946312ebb35','warning','Would create missing organization: Feel Free Kayaks- Custom Battery',NULL,'2025-11-14 00:16:35'),
(14939,'leads','38493030-4061-11ee-89c2-339bf2edd26b','warning','Would create missing organization: Shimano- Custom Battery for Reel',NULL,'2025-11-14 00:16:35'),
(14940,'leads','c364f740-4105-11ee-a41f-8946312ebb35','warning','Would create missing organization: Pallet Shuttle - 24V 150',NULL,'2025-11-14 00:16:35'),
(14941,'leads','089b78c0-4106-11ee-89c2-339bf2edd26b','warning','Would create missing organization: World Fishing Tackle - 14.4V 8Ah-4AH',NULL,'2025-11-14 00:16:35'),
(14942,'leads','c056db30-4dae-11ee-a7f5-859c9b8714a6','warning','Would create missing organization: Practical Technology',NULL,'2025-11-14 00:16:35'),
(14943,'leads','116ce240-4e76-11ee-b187-7323711a5671','warning','Would create missing organization: Mayer Electric Inc.',NULL,'2025-11-14 00:16:35'),
(14944,'leads','a63a2540-4e76-11ee-b187-7323711a5671','warning','Would create missing organization: Sunshine Solar Services Inc.',NULL,'2025-11-14 00:16:35'),
(14945,'leads','a9705490-4e77-11ee-a2c8-0181c13ca46c','warning','Would create missing organization: DCS Corp',NULL,'2025-11-14 00:16:35'),
(14946,'leads','206f8300-531d-11ee-9324-11d3355add0b','warning','Would create missing organization: Ekozone Development',NULL,'2025-11-14 00:16:35'),
(14947,'leads','bf676a60-572b-11ee-9a1a-fb22609a01aa','warning','Would create missing organization: X, the moonshoot factory, Google',NULL,'2025-11-14 00:16:35'),
(14948,'leads','7bbaece0-6795-11ee-b93f-63c9bb229d58','warning','Would create missing organization: Hatteras',NULL,'2025-11-14 00:16:35'),
(14949,'leads','9ed03680-7344-11ee-b195-bd18778d2562','warning','Would create missing organization: Gcc-Na',NULL,'2025-11-14 00:16:35'),
(14950,'leads','9e34ecb0-9e8d-11ee-be68-c1e203ae4ffd','warning','Would create missing organization: Howeandhowe',NULL,'2025-11-14 00:16:35'),
(14951,'leads','4f94cbc0-a0f4-11ee-b2c3-6d13ad8bd97c','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(14952,'leads','38048f00-bad4-11ee-b122-9d9a49454552','warning','Would create missing organization: Solis Energy',NULL,'2025-11-14 00:16:35'),
(14953,'leads','71c31ef0-bad4-11ee-b68f-f367d5a5e9a2','warning','Would create missing organization: Nabeel Perfumes',NULL,'2025-11-14 00:16:35'),
(14954,'leads','95f2bb50-bad4-11ee-b122-9d9a49454552','warning','Would create missing organization: Ecosense Lighting',NULL,'2025-11-14 00:16:35'),
(14955,'leads','9bcf47f0-bad4-11ee-b68f-f367d5a5e9a2','warning','Would create missing organization: Elements to Energy (E2E)',NULL,'2025-11-14 00:16:35'),
(14956,'leads','a23b1c40-bad4-11ee-b68f-f367d5a5e9a2','warning','Would create missing organization: Process Integration',NULL,'2025-11-14 00:16:35'),
(14957,'leads','c15f85c0-bad4-11ee-b68f-f367d5a5e9a2','warning','Would create missing organization: Sartorius',NULL,'2025-11-14 00:16:35'),
(14958,'leads','c7c31cb0-bad4-11ee-a67a-21e2d0399d09','warning','Would create missing organization: QinetiQ Group PLC',NULL,'2025-11-14 00:16:35'),
(14959,'leads','e8877a90-bad4-11ee-b122-9d9a49454552','warning','Would create missing organization: Intercomp USA',NULL,'2025-11-14 00:16:35'),
(14960,'leads','ee1523e0-bad4-11ee-b122-9d9a49454552','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(14961,'leads','f69d96a0-bad4-11ee-b68f-f367d5a5e9a2','warning','Would create missing organization: RAILBLAZA',NULL,'2025-11-14 00:16:35'),
(14962,'leads','3ba0d320-bad5-11ee-b122-9d9a49454552','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(14963,'leads','5b8cf970-bad5-11ee-a67a-21e2d0399d09','warning','Would create missing organization: Doug Shelby Engineering',NULL,'2025-11-14 00:16:35'),
(14964,'leads','6fe23480-bad5-11ee-b122-9d9a49454552','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(14965,'leads','955e4e10-bad5-11ee-a67a-21e2d0399d09','warning','Would create missing organization: Environmentum',NULL,'2025-11-14 00:16:35'),
(14966,'leads','5c0b34b0-bad6-11ee-b122-9d9a49454552','warning','Would create missing organization: Volatus Aerospace',NULL,'2025-11-14 00:16:35'),
(14967,'leads','cd1da0b0-bad7-11ee-b68f-f367d5a5e9a2','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(14968,'leads','d367e340-bad7-11ee-b68f-f367d5a5e9a2','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(14969,'leads','e6ad0de0-bad7-11ee-b68f-f367d5a5e9a2','warning','Would create missing organization: Gcc-Na',NULL,'2025-11-14 00:16:35'),
(14970,'leads','90522970-bad8-11ee-a67a-21e2d0399d09','warning','Would create missing organization: Vallen Distribution INC.',NULL,'2025-11-14 00:16:35'),
(14971,'leads','97a32da0-bad8-11ee-a67a-21e2d0399d09','warning','Would create missing organization: Alumacart,',NULL,'2025-11-14 00:16:35'),
(14972,'leads','bb90b7f0-bad8-11ee-b68f-f367d5a5e9a2','warning','Would create missing organization: U.S. Navy NCIS',NULL,'2025-11-14 00:16:35'),
(14973,'leads','ea059240-bad8-11ee-b122-9d9a49454552','warning','Would create missing organization: Mayer Electric Supply',NULL,'2025-11-14 00:16:35'),
(14974,'leads','5b7b4960-bad9-11ee-b68f-f367d5a5e9a2','warning','Would create missing organization: VIRGINIA DEPARTMENT OF TRANSPORTATION',NULL,'2025-11-14 00:16:35'),
(14975,'leads','af8bac20-bad9-11ee-a67a-21e2d0399d09','warning','Would create missing organization: Anglers Choice Marine-MART',NULL,'2025-11-14 00:16:35'),
(14976,'leads','7c040ed0-bc8f-11ee-b68f-f367d5a5e9a2','warning','Would create missing organization: Offworld',NULL,'2025-11-14 00:16:35'),
(14977,'leads','5df33900-c141-11ee-9f06-899b6c712b6e','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(14978,'leads','3c8ac2c0-c43d-11ee-9f06-899b6c712b6e','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(14979,'leads','ddcedd90-c9cb-11ee-9385-5593ab22350e','warning','Would create missing organization: Project Canary',NULL,'2025-11-14 00:16:35'),
(14980,'leads','48dccd10-ca92-11ee-a52a-1f4c71091bd4','warning','Would create missing organization: Personal - 48V 5Kwh Powerwalls',NULL,'2025-11-14 00:16:35'),
(14981,'leads','05484910-d4d5-11ee-8db7-f1722cfa26ee','warning','Would create missing organization: MIB',NULL,'2025-11-14 00:16:35'),
(14982,'leads','9c183f00-d587-11ee-8889-d1da495a3273','warning','Would create missing organization: Blueline Video surveillance',NULL,'2025-11-14 00:16:35'),
(14983,'leads','100f2d20-da46-11ee-9a5a-79c7439886bc','warning','Would create missing organization: Forms inc.',NULL,'2025-11-14 00:16:35'),
(14984,'leads','bc35a010-e541-11ee-8cb7-e57c04ba7b5d','warning','Would create missing organization: SDMS Robotics',NULL,'2025-11-14 00:16:35'),
(14985,'leads','3a0ad210-eab2-11ee-ba2c-b7d818aab9f9','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(14986,'leads','6b029660-eb65-11ee-8fcc-0585346bdbe4','warning','Would create missing organization: Silicon Techno Circuits',NULL,'2025-11-14 00:16:35'),
(14987,'leads','ec0a0f40-eb74-11ee-b5da-f35f012d50d9','warning','Would create missing organization: Emerson Ornstein organization',NULL,'2025-11-14 00:16:35'),
(14988,'leads','16b962b0-ed0d-11ee-8a15-b13982013ab3','warning','Would create missing organization: JettWatt',NULL,'2025-11-14 00:16:35'),
(14989,'leads','a579e570-f03b-11ee-b746-7917a4a0bc4f','warning','Would create missing organization: Global Concept',NULL,'2025-11-14 00:16:35'),
(14990,'leads','6a8948b0-f03c-11ee-89ff-679ba970e042','warning','Would create missing organization: University of Wisconsin Madison',NULL,'2025-11-14 00:16:35'),
(14991,'leads','e5567070-f03e-11ee-89ff-679ba970e042','warning','Would create missing organization: Emerson Ornstein organization',NULL,'2025-11-14 00:16:35'),
(14992,'leads','b0425920-f067-11ee-820c-33dab0a80226','warning','Would create missing organization: Abay organization',NULL,'2025-11-14 00:16:35'),
(14993,'leads','8987b8c0-f0ee-11ee-951a-d70139889d2e','warning','Would create missing organization: James  Kurczewski  organization',NULL,'2025-11-14 00:16:35'),
(14994,'leads','00149990-f103-11ee-a1f1-47e4a2743c8f','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(14995,'leads','6e447480-f103-11ee-bca9-956007a2c12d','warning','Would create missing organization: Intovision',NULL,'2025-11-14 00:16:35'),
(14996,'leads','107894e0-f111-11ee-bca9-956007a2c12d','warning','Would create missing organization: Steve Statema organization',NULL,'2025-11-14 00:16:35'),
(14997,'leads','75a596c0-f12e-11ee-a59f-47efee9cdae4','warning','Would create missing organization: Scott Messick  organization',NULL,'2025-11-14 00:16:35'),
(14998,'leads','4adc26e0-f681-11ee-9c2c-b796f5528e02','warning','Would create missing organization: CU Boulder',NULL,'2025-11-14 00:16:35'),
(14999,'leads','39ac9290-f741-11ee-88d2-675f5687e930','warning','Would create missing organization: Menno T Bauman organization',NULL,'2025-11-14 00:16:35'),
(15000,'leads','f26b9f20-fb32-11ee-833f-b763a46c6611','warning','Would create missing organization: Ethan Rowe organization',NULL,'2025-11-14 00:16:35'),
(15001,'leads','b516d800-fb51-11ee-9fbb-3b479f4719b7','warning','Would create missing organization: Next Level Automotive',NULL,'2025-11-14 00:16:35'),
(15002,'leads','7d403000-fb53-11ee-b2b9-1b356a63ceac','warning','Would create missing organization: Dario Dentes organization',NULL,'2025-11-14 00:16:35'),
(15003,'leads','cacaaba0-0186-11ef-a951-e10196e4111c','warning','Would create missing organization: Globus Medical',NULL,'2025-11-14 00:16:35'),
(15004,'leads','d822e400-03f9-11ef-96d0-3b2b639686a3','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15005,'leads','aa7b1c50-062b-11ef-bec7-91fd24d17c88','warning','Would create missing organization: Teresa Moore organization',NULL,'2025-11-14 00:16:35'),
(15006,'leads','9aa311b0-063b-11ef-af12-e5a2924242d9','warning','Would create missing organization: Ocutrap',NULL,'2025-11-14 00:16:35'),
(15007,'leads','cf917bf0-063b-11ef-8b5e-d990dc5b5e43','warning','Would create missing organization: Chand brilliance',NULL,'2025-11-14 00:16:35'),
(15008,'leads','fd0b0fe0-0647-11ef-96d0-3b2b639686a3','warning','Would create missing organization: Steven Salter organization',NULL,'2025-11-14 00:16:35'),
(15009,'leads','d3895950-0657-11ef-b9ea-b137f71f6a60','warning','Would create missing organization: EZ Kruiser Golf Cart',NULL,'2025-11-14 00:16:35'),
(15010,'leads','a05ea390-0711-11ef-a68e-dff3f93acbc4','warning','Would create missing organization: Dueitts Battery Supply Inc.',NULL,'2025-11-14 00:16:35'),
(15011,'leads','cce03830-0968-11ef-b3ba-e7336aadab95','warning','Would create missing organization: Xworx Inc',NULL,'2025-11-14 00:16:35'),
(15012,'leads','6ef43950-0969-11ef-97b7-1717425e0835','warning','Would create missing organization: Bajaj',NULL,'2025-11-14 00:16:35'),
(15013,'leads','b2b9f1c0-0e14-11ef-9b70-d91355cad6f6','warning','Would create missing organization: Delmer & Associates, LCC',NULL,'2025-11-14 00:16:35'),
(15014,'leads','584c60d0-0efd-11ef-b6b2-9354883a4197','warning','Would create missing organization: Anthony Thomas organization',NULL,'2025-11-14 00:16:35'),
(15015,'leads','04473340-12cf-11ef-a699-4d714b2a54f2','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15016,'leads','a0e73f10-1347-11ef-9e11-c101c1b0a59d','warning','Would create missing organization: Ryan Somai organization',NULL,'2025-11-14 00:16:35'),
(15017,'leads','031614f0-138d-11ef-b59a-f5796a9a3e88','warning','Would create missing organization: nano power a.s.',NULL,'2025-11-14 00:16:35'),
(15018,'leads','9593f5d0-13f2-11ef-9e11-c101c1b0a59d','warning','Would create missing organization: Kiang Loong Ng organization',NULL,'2025-11-14 00:16:35'),
(15019,'leads','8c9da370-145d-11ef-8d00-b3d319f4b9b9','warning','Would create missing organization: PICODE',NULL,'2025-11-14 00:16:35'),
(15020,'leads','c230d930-145d-11ef-9df3-191803d8bc06','warning','Would create missing organization: Accesshardware Inc.',NULL,'2025-11-14 00:16:35'),
(15021,'leads','ee1f4190-1790-11ef-87d1-bd61cc9f3289','warning','Would create missing organization: Discovery Ford',NULL,'2025-11-14 00:16:35'),
(15022,'leads','b1e004c0-1791-11ef-a1e7-514068a29cd4','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15023,'leads','1e8aa270-1796-11ef-a1e7-514068a29cd4','warning','Would create missing organization: Encore Boat Works',NULL,'2025-11-14 00:16:35'),
(15024,'leads','a34cf4a0-184e-11ef-a498-5bb397ef0249','warning','Would create missing organization: Good Luck LLC',NULL,'2025-11-14 00:16:35'),
(15025,'leads','a6bdea50-1910-11ef-9688-b1d73b6a5dcf','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15026,'leads','a675c0f0-1914-11ef-9a6b-71055cc5f8fb','warning','Would create missing organization: Segway Hollywood',NULL,'2025-11-14 00:16:35'),
(15027,'leads','12856d30-19d4-11ef-aa27-9bcd37a14e94','warning','Would create missing organization: WSSA',NULL,'2025-11-14 00:16:35'),
(15028,'leads','d4e60510-1cfe-11ef-b8cf-1fbf5e5198f8','warning','Would create missing organization: Martin Rebuilds',NULL,'2025-11-14 00:16:35'),
(15029,'leads','28ba2fe0-1d04-11ef-b8cf-1fbf5e5198f8','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15030,'leads','9e554fe0-1dd7-11ef-a841-8f0ae69dba57','warning','Would create missing organization: Bill Daniels organization',NULL,'2025-11-14 00:16:35'),
(15031,'leads','5bfcab30-1eee-11ef-b2cf-5fa52f512284','warning','Would create missing organization: Martin Meek organization',NULL,'2025-11-14 00:16:35'),
(15032,'leads','3d9fa890-1f6b-11ef-9a19-59a18cd49924','warning','Would create missing organization: Track Master Mobility',NULL,'2025-11-14 00:16:35'),
(15033,'leads','e3b1bbe0-1f77-11ef-9a19-59a18cd49924','warning','Would create missing organization: Telecom Battery',NULL,'2025-11-14 00:16:35'),
(15034,'leads','1ee93030-1f78-11ef-aa4e-4f4e2660fd7b','warning','Would create missing organization: Vishwaracers',NULL,'2025-11-14 00:16:35'),
(15035,'leads','59188350-1f78-11ef-9a19-59a18cd49924','warning','Would create missing organization: Network Experts',NULL,'2025-11-14 00:16:35'),
(15036,'leads','35f02fe0-1f9b-11ef-aa4e-4f4e2660fd7b','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15037,'leads','cf722ea0-228b-11ef-b2cf-5fa52f512284','warning','Would create missing organization: General RV Center',NULL,'2025-11-14 00:16:35'),
(15038,'leads','30dcfe90-228c-11ef-9923-0f43df108a4b','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15039,'leads','2446fd60-228d-11ef-9923-0f43df108a4b','warning','Would create missing organization: Zakian Rugs',NULL,'2025-11-14 00:16:35'),
(15040,'leads','6b48a1f0-228d-11ef-bf85-dd911e2a6349','warning','Would create missing organization: EMB Motorsport',NULL,'2025-11-14 00:16:35'),
(15041,'leads','b28d77c0-2292-11ef-9cb4-994a5793db83','warning','Would create missing organization: M&P Security',NULL,'2025-11-14 00:16:35'),
(15042,'leads','8da4c850-2305-11ef-b2cf-5fa52f512284','warning','Would create missing organization: Anatolii organization',NULL,'2025-11-14 00:16:35'),
(15043,'leads','5fc4d320-2446-11ef-946f-13b75546807f','warning','Would create missing organization: Atomic Cool Kartz',NULL,'2025-11-14 00:16:35'),
(15044,'leads','11e401f0-24e9-11ef-8ccb-ff8532d8e9f8','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15045,'leads','93c41370-24eb-11ef-b74f-6f6461a13fe8','warning','Would create missing organization: Reid-Ashman Mfg.',NULL,'2025-11-14 00:16:35'),
(15046,'leads','29e009a0-2504-11ef-8534-4d08477509db','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15047,'leads','205f16d0-2759-11ef-8fa1-632a4d9ccf1c','warning','Would create missing organization: Advance Boat',NULL,'2025-11-14 00:16:35'),
(15048,'leads','db0e11c0-2803-11ef-9bef-cd12d9a9d969','warning','Would create missing organization: Mystery Flight',NULL,'2025-11-14 00:16:35'),
(15049,'leads','3b5cc670-28cc-11ef-9c05-13f52b414c93','warning','Would create missing organization: Roush',NULL,'2025-11-14 00:16:35'),
(15050,'leads','ac30b5f0-28e5-11ef-a0ab-43b9a7fa6a42','warning','Would create missing organization: Electric Yacht',NULL,'2025-11-14 00:16:35'),
(15051,'leads','e9b21fa0-28f8-11ef-a841-8f0ae69dba57','warning','Would create missing organization: Price Electronics',NULL,'2025-11-14 00:16:35'),
(15052,'leads','beda6bf0-2cab-11ef-b680-91ad9d1991a4','warning','Would create missing organization: Thomas Wadsworth organization',NULL,'2025-11-14 00:16:35'),
(15053,'leads','045acf20-2e56-11ef-b69b-f170eca3ee31','warning','Would create missing organization: Leidos',NULL,'2025-11-14 00:16:35'),
(15054,'leads','949b1400-3248-11ef-99a4-d3346253e2c6','warning','Would create missing organization: Navia Energy Inc.',NULL,'2025-11-14 00:16:35'),
(15055,'leads','d93782f0-3249-11ef-9e56-a5bdc7b7d8d8','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15056,'leads','466f1b30-324a-11ef-91a5-ddf712cba00f','warning','Would create missing organization: Soaring Concepts Aerospace',NULL,'2025-11-14 00:16:35'),
(15057,'leads','31185930-324b-11ef-8f87-2febb96654ea','warning','Would create missing organization: JP Equipment & Service Co.',NULL,'2025-11-14 00:16:35'),
(15058,'leads','7d3d4c80-324b-11ef-99a4-d3346253e2c6','warning','Would create missing organization: Chris Grondman organization',NULL,'2025-11-14 00:16:35'),
(15059,'leads','9d198f20-325d-11ef-9866-edd510b5f338','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15060,'leads','cc4d50d0-34c7-11ef-ae44-b93f5d4649fe','warning','Would create missing organization: Jay Rasi organization',NULL,'2025-11-14 00:16:35'),
(15061,'leads','c99db420-388b-11ef-9e56-a5bdc7b7d8d8','warning','Would create missing organization: Concept DD Inc',NULL,'2025-11-14 00:16:35'),
(15062,'leads','5c223fa0-388c-11ef-849f-8b74dc1802d9','warning','Would create missing organization: LFP Consumer Power Tool',NULL,'2025-11-14 00:16:35'),
(15063,'leads','e97aad80-38b2-11ef-849f-8b74dc1802d9','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15064,'leads','b68ceb40-3e02-11ef-a02e-79dbbbddf863','warning','Would create missing organization: Lotuccusa Inc',NULL,'2025-11-14 00:16:35'),
(15065,'leads','5da3a090-3fc0-11ef-8975-2d5057077cbf','warning','Would create missing organization: Scott Blew organization',NULL,'2025-11-14 00:16:35'),
(15066,'leads','440ef8e0-3fe4-11ef-88e7-cf0db74c6016','warning','Would create missing organization: Scott Blew organization',NULL,'2025-11-14 00:16:35'),
(15067,'leads','c4a4d270-439c-11ef-a493-852435243172','warning','Would create missing organization: Personal',NULL,'2025-11-14 00:16:35'),
(15068,'leads','b6755210-45f9-11ef-901d-25624c1d8a42','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15069,'leads','e0a325f0-4840-11ef-8f97-c1c5192a041d','warning','Would create missing organization: Operation Send it',NULL,'2025-11-14 00:16:35'),
(15070,'leads','80ab0df0-4842-11ef-8f97-c1c5192a041d','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15071,'leads','190c5560-49bd-11ef-9388-b9dff8bd2fab','warning','Would create missing organization: Majesty AI',NULL,'2025-11-14 00:16:35'),
(15072,'leads','8967dc60-49dd-11ef-81ac-5b2abd8371f8','warning','Would create missing organization: Blue Water Battery',NULL,'2025-11-14 00:16:35'),
(15073,'leads','d168b680-4aa3-11ef-b910-03284540ed82','warning','Would create missing organization: Repsol International',NULL,'2025-11-14 00:16:35'),
(15074,'leads','c936f890-4b4e-11ef-8563-cb0a2734e89d','warning','Would create missing organization: HumaNoid',NULL,'2025-11-14 00:16:35'),
(15075,'leads','d5f47120-4e7d-11ef-99a6-4bf71821d30b','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15076,'leads','96c68430-5331-11ef-bf32-81d389b181df','warning','Would create missing organization: Battery Bills LLC',NULL,'2025-11-14 00:16:35'),
(15077,'leads','abc756a0-5333-11ef-9d17-c51e9e5fa5ca','warning','Would create missing organization: ABA Marine Consulting INC.',NULL,'2025-11-14 00:16:35'),
(15078,'leads','a75f1cc0-54ef-11ef-8794-03a7a8ec6de8','warning','Would create missing organization: Marine Customer',NULL,'2025-11-14 00:16:35'),
(15079,'leads','fbacba20-54f0-11ef-9113-8d86bb63387c','warning','Would create missing organization: Integrated Marine Solutions',NULL,'2025-11-14 00:16:35'),
(15080,'leads','ab109be0-55c7-11ef-adce-b5c0deaed1fd','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15081,'leads','ce114960-58e1-11ef-9941-17650adb0418','warning','Would create missing organization: VJF',NULL,'2025-11-14 00:16:35'),
(15082,'leads','2f3f1e00-59ab-11ef-9e31-bb24ab08945d','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15083,'leads','47f94750-5f31-11ef-8ac2-cd51ff4693d5','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15084,'leads','1d1ee5c0-618a-11ef-a702-659adcbee65a','warning','Would create missing organization: Profound Home Improvement',NULL,'2025-11-14 00:16:35'),
(15085,'leads','1b21a730-64a0-11ef-b4cc-13d3d3de7ea0','warning','Would create missing organization: Advanced Green Technologies',NULL,'2025-11-14 00:16:35'),
(15086,'leads','a5a78b40-6612-11ef-acf7-cfad48ddfff8','warning','Would create missing organization: Hayatcomm.net',NULL,'2025-11-14 00:16:35'),
(15087,'leads','46396240-6eb0-11ef-b2c1-ed044c57f72b','warning','Would create missing organization: Swarmbotics AI',NULL,'2025-11-14 00:16:35'),
(15088,'leads','6b7aba80-7447-11ef-9e80-a9fcb8936b1d','warning','Would create missing organization: EnergyX',NULL,'2025-11-14 00:16:35'),
(15089,'leads','9a16caf0-cde3-11ef-8263-7fe51e11e07f','warning','Would create missing organization: METABOTS',NULL,'2025-11-14 00:16:35'),
(15090,'notes','1','error','Deal not found: 2',NULL,'2025-11-14 00:17:00'),
(15091,'notes','2','error','Deal not found: 7',NULL,'2025-11-14 00:17:00'),
(15092,'notes','3','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15093,'notes','4','error','Deal not found: 8',NULL,'2025-11-14 00:17:00'),
(15094,'notes','5','error','Deal not found: 9',NULL,'2025-11-14 00:17:00'),
(15095,'notes','6','error','Deal not found: 2',NULL,'2025-11-14 00:17:00'),
(15096,'notes','7','error','Deal not found: 10',NULL,'2025-11-14 00:17:00'),
(15097,'notes','8','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15098,'notes','9','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15099,'notes','10','error','Deal not found: 14',NULL,'2025-11-14 00:17:00'),
(15100,'notes','11','error','Deal not found: 15',NULL,'2025-11-14 00:17:00'),
(15101,'notes','12','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15102,'notes','13','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15103,'notes','14','error','Deal not found: 2',NULL,'2025-11-14 00:17:00'),
(15104,'notes','15','error','Deal not found: 19',NULL,'2025-11-14 00:17:00'),
(15105,'notes','16','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15106,'notes','17','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15107,'notes','18','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15108,'notes','19','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15109,'notes','20','error','Deal not found: 4',NULL,'2025-11-14 00:17:00'),
(15110,'notes','21','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15111,'notes','22','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15112,'notes','23','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15113,'notes','24','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15114,'notes','25','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15115,'notes','26','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15116,'notes','27','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15117,'notes','28','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15118,'notes','29','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15119,'notes','30','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15120,'notes','31','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15121,'notes','32','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15122,'notes','33','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15123,'notes','34','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15124,'notes','35','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15125,'notes','36','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15126,'notes','37','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15127,'notes','38','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15128,'notes','39','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15129,'notes','40','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15130,'notes','41','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15131,'notes','42','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15132,'notes','43','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15133,'notes','44','error','Deal not found: 58',NULL,'2025-11-14 00:17:00'),
(15134,'notes','45','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15135,'notes','46','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15136,'notes','47','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15137,'notes','48','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15138,'notes','49','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15139,'notes','50','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15140,'notes','51','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15141,'notes','52','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15142,'notes','53','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15143,'notes','54','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15144,'notes','55','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15145,'notes','56','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15146,'notes','57','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15147,'notes','58','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15148,'notes','59','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15149,'notes','60','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15150,'notes','61','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15151,'notes','62','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15152,'notes','63','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15153,'notes','64','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15154,'notes','65','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15155,'notes','66','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15156,'notes','67','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15157,'notes','68','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15158,'notes','69','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15159,'notes','70','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15160,'notes','71','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15161,'notes','72','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15162,'notes','73','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15163,'notes','74','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15164,'notes','75','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15165,'notes','76','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15166,'notes','77','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15167,'notes','78','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15168,'notes','79','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15169,'notes','80','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15170,'notes','81','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15171,'notes','82','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15172,'notes','83','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15173,'notes','84','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15174,'notes','85','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15175,'notes','86','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15176,'notes','87','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15177,'notes','88','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15178,'notes','89','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15179,'notes','90','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15180,'notes','91','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15181,'notes','92','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15182,'notes','93','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15183,'notes','94','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15184,'notes','95','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15185,'notes','96','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15186,'notes','97','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15187,'notes','98','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15188,'notes','99','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15189,'notes','100','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15190,'notes','101','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15191,'notes','102','error','Deal not found: 61',NULL,'2025-11-14 00:17:00'),
(15192,'notes','103','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15193,'notes','104','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15194,'notes','105','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15195,'notes','106','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15196,'notes','107','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15197,'notes','108','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15198,'notes','109','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15199,'notes','110','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15200,'notes','111','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15201,'notes','112','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15202,'notes','113','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15203,'notes','114','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15204,'notes','115','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15205,'notes','116','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15206,'notes','117','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15207,'notes','118','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15208,'notes','119','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15209,'notes','120','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15210,'notes','121','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15211,'notes','122','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15212,'notes','123','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15213,'notes','124','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15214,'notes','125','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15215,'notes','126','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15216,'notes','127','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15217,'notes','128','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15218,'notes','129','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15219,'notes','130','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15220,'notes','131','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15221,'notes','132','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15222,'notes','133','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15223,'notes','134','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15224,'notes','135','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15225,'notes','136','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15226,'notes','137','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15227,'notes','138','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15228,'notes','139','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15229,'notes','140','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15230,'notes','141','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15231,'notes','142','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15232,'notes','143','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15233,'notes','144','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15234,'notes','145','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15235,'notes','146','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15236,'notes','148','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15237,'notes','149','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15238,'notes','150','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15239,'notes','151','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15240,'notes','152','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15241,'notes','153','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15242,'notes','154','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15243,'notes','155','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15244,'notes','156','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15245,'notes','157','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15246,'notes','158','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15247,'notes','159','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15248,'notes','160','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15249,'notes','161','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15250,'notes','162','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15251,'notes','163','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15252,'notes','164','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15253,'notes','165','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15254,'notes','166','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15255,'notes','167','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15256,'notes','168','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15257,'notes','169','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15258,'notes','170','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15259,'notes','171','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15260,'notes','172','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15261,'notes','173','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15262,'notes','174','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15263,'notes','175','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15264,'notes','176','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15265,'notes','177','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15266,'notes','178','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15267,'notes','179','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15268,'notes','180','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15269,'notes','181','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15270,'notes','182','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15271,'notes','183','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15272,'notes','184','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15273,'notes','185','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15274,'notes','186','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15275,'notes','187','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15276,'notes','188','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15277,'notes','189','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15278,'notes','190','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15279,'notes','191','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15280,'notes','192','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15281,'notes','193','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15282,'notes','194','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15283,'notes','195','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15284,'notes','196','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15285,'notes','197','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15286,'notes','198','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15287,'notes','199','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15288,'notes','200','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15289,'notes','201','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15290,'notes','202','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15291,'notes','203','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15292,'notes','204','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15293,'notes','205','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15294,'notes','206','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15295,'notes','207','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15296,'notes','208','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15297,'notes','209','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15298,'notes','210','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15299,'notes','211','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15300,'notes','212','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15301,'notes','213','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15302,'notes','214','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15303,'notes','215','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15304,'notes','216','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15305,'notes','217','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15306,'notes','218','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15307,'notes','219','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15308,'notes','220','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15309,'notes','221','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15310,'notes','222','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15311,'notes','223','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15312,'notes','224','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15313,'notes','225','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15314,'notes','226','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15315,'notes','227','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15316,'notes','228','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15317,'notes','229','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15318,'notes','230','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15319,'notes','231','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15320,'notes','232','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15321,'notes','233','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15322,'notes','234','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15323,'notes','235','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15324,'notes','236','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15325,'notes','237','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15326,'notes','238','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15327,'notes','239','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15328,'notes','240','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15329,'notes','241','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15330,'notes','242','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15331,'notes','243','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15332,'notes','244','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15333,'notes','245','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15334,'notes','246','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15335,'notes','247','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15336,'notes','248','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15337,'notes','249','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15338,'notes','250','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15339,'notes','251','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15340,'notes','252','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15341,'notes','253','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15342,'notes','254','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15343,'notes','255','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15344,'notes','256','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15345,'notes','257','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15346,'notes','258','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15347,'notes','259','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15348,'notes','260','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15349,'notes','261','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15350,'notes','262','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15351,'notes','263','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15352,'notes','264','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15353,'notes','265','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15354,'notes','266','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15355,'notes','267','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15356,'notes','268','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15357,'notes','269','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15358,'notes','270','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15359,'notes','271','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15360,'notes','272','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15361,'notes','273','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15362,'notes','274','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15363,'notes','275','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15364,'notes','276','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15365,'notes','277','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15366,'notes','278','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15367,'notes','279','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15368,'notes','280','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15369,'notes','281','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15370,'notes','282','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15371,'notes','283','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15372,'notes','284','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15373,'notes','285','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15374,'notes','286','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15375,'notes','287','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15376,'notes','288','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15377,'notes','289','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15378,'notes','290','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15379,'notes','291','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15380,'notes','292','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15381,'notes','293','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15382,'notes','294','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15383,'notes','295','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15384,'notes','296','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15385,'notes','297','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15386,'notes','298','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15387,'notes','299','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15388,'notes','300','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15389,'notes','301','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15390,'notes','302','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15391,'notes','303','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15392,'notes','304','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15393,'notes','305','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15394,'notes','306','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15395,'notes','307','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15396,'notes','308','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15397,'notes','309','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15398,'notes','310','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15399,'notes','311','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15400,'notes','312','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15401,'notes','313','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15402,'notes','314','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15403,'notes','315','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15404,'notes','316','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15405,'notes','317','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15406,'notes','318','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15407,'notes','319','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15408,'notes','320','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15409,'notes','321','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15410,'notes','322','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15411,'notes','323','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15412,'notes','324','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15413,'notes','325','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15414,'notes','326','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15415,'notes','327','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15416,'notes','328','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15417,'notes','329','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15418,'notes','330','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15419,'notes','331','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15420,'notes','332','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15421,'notes','333','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15422,'notes','334','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15423,'notes','335','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15424,'notes','336','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15425,'notes','337','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15426,'notes','338','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15427,'notes','339','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15428,'notes','340','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15429,'notes','341','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15430,'notes','342','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15431,'notes','343','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15432,'notes','344','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15433,'notes','345','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15434,'notes','346','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15435,'notes','347','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15436,'notes','348','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15437,'notes','349','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15438,'notes','350','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15439,'notes','351','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15440,'notes','352','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15441,'notes','353','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15442,'notes','354','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15443,'notes','355','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15444,'notes','356','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15445,'notes','357','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15446,'notes','358','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15447,'notes','359','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15448,'notes','360','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15449,'notes','361','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15450,'notes','362','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15451,'notes','363','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15452,'notes','364','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15453,'notes','365','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15454,'notes','366','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15455,'notes','367','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15456,'notes','368','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15457,'notes','369','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15458,'notes','370','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15459,'notes','371','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15460,'notes','372','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15461,'notes','373','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15462,'notes','374','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15463,'notes','375','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15464,'notes','376','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15465,'notes','377','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15466,'notes','378','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15467,'notes','379','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15468,'notes','380','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15469,'notes','381','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15470,'notes','382','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15471,'notes','383','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15472,'notes','384','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15473,'notes','385','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15474,'notes','386','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15475,'notes','387','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15476,'notes','388','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15477,'notes','389','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15478,'notes','390','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15479,'notes','391','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15480,'notes','392','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15481,'notes','393','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15482,'notes','394','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15483,'notes','395','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15484,'notes','396','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15485,'notes','397','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15486,'notes','398','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15487,'notes','399','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15488,'notes','400','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15489,'notes','402','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15490,'notes','403','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15491,'notes','404','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15492,'notes','405','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15493,'notes','406','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15494,'notes','407','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15495,'notes','408','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15496,'notes','409','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15497,'notes','410','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15498,'notes','411','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15499,'notes','412','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15500,'notes','413','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15501,'notes','414','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15502,'notes','415','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15503,'notes','416','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15504,'notes','417','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15505,'notes','418','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15506,'notes','419','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15507,'notes','420','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15508,'notes','421','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15509,'notes','422','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15510,'notes','423','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15511,'notes','424','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15512,'notes','425','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15513,'notes','426','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15514,'notes','427','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15515,'notes','428','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15516,'notes','429','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15517,'notes','430','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15518,'notes','431','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15519,'notes','432','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15520,'notes','433','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15521,'notes','434','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15522,'notes','435','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15523,'notes','436','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15524,'notes','437','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15525,'notes','438','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15526,'notes','439','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15527,'notes','440','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15528,'notes','441','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15529,'notes','442','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15530,'notes','443','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15531,'notes','444','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15532,'notes','445','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15533,'notes','446','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15534,'notes','447','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15535,'notes','448','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15536,'notes','449','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15537,'notes','450','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15538,'notes','451','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15539,'notes','452','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15540,'notes','453','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15541,'notes','454','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15542,'notes','455','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15543,'notes','456','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15544,'notes','457','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15545,'notes','458','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15546,'notes','459','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15547,'notes','460','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15548,'notes','461','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15549,'notes','462','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15550,'notes','463','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15551,'notes','464','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15552,'notes','465','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15553,'notes','466','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15554,'notes','467','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15555,'notes','468','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15556,'notes','469','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15557,'notes','470','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15558,'notes','471','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15559,'notes','472','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15560,'notes','473','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15561,'notes','474','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15562,'notes','475','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15563,'notes','476','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15564,'notes','477','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15565,'notes','478','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15566,'notes','479','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15567,'notes','480','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15568,'notes','481','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15569,'notes','482','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15570,'notes','483','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15571,'notes','484','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15572,'notes','485','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15573,'notes','486','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15574,'notes','487','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15575,'notes','488','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15576,'notes','489','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15577,'notes','490','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15578,'notes','491','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15579,'notes','492','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15580,'notes','493','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15581,'notes','494','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15582,'notes','495','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15583,'notes','496','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15584,'notes','497','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15585,'notes','498','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15586,'notes','499','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15587,'notes','500','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15588,'notes','501','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15589,'notes','502','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15590,'notes','503','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15591,'notes','504','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15592,'notes','505','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15593,'notes','507','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15594,'notes','508','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15595,'notes','509','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15596,'notes','510','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15597,'notes','511','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15598,'notes','512','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15599,'notes','513','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15600,'notes','514','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15601,'notes','515','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15602,'notes','516','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15603,'notes','517','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15604,'notes','518','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15605,'notes','519','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15606,'notes','520','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15607,'notes','521','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15608,'notes','522','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15609,'notes','523','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15610,'notes','524','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15611,'notes','525','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15612,'notes','526','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15613,'notes','527','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15614,'notes','528','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15615,'notes','529','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15616,'notes','530','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15617,'notes','531','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15618,'notes','532','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15619,'notes','533','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15620,'notes','534','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15621,'notes','535','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15622,'notes','536','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15623,'notes','537','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15624,'notes','538','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15625,'notes','539','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15626,'notes','540','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15627,'notes','542','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15628,'notes','543','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15629,'notes','544','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15630,'notes','545','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15631,'notes','546','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15632,'notes','547','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15633,'notes','548','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15634,'notes','549','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15635,'notes','550','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15636,'notes','551','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15637,'notes','552','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15638,'notes','553','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15639,'notes','554','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15640,'notes','555','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15641,'notes','556','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15642,'notes','557','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15643,'notes','558','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15644,'notes','559','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15645,'notes','560','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15646,'notes','561','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15647,'notes','562','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15648,'notes','563','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15649,'notes','564','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15650,'notes','565','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15651,'notes','566','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15652,'notes','567','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15653,'notes','568','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15654,'notes','570','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15655,'notes','571','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15656,'notes','572','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15657,'notes','573','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15658,'notes','574','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15659,'notes','575','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15660,'notes','576','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15661,'notes','577','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15662,'notes','578','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15663,'notes','579','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15664,'notes','580','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15665,'notes','581','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15666,'notes','582','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15667,'notes','583','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15668,'notes','584','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15669,'notes','585','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15670,'notes','586','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15671,'notes','587','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15672,'notes','588','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15673,'notes','589','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15674,'notes','590','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15675,'notes','591','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15676,'notes','592','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15677,'notes','593','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15678,'notes','594','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15679,'notes','595','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15680,'notes','596','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15681,'notes','597','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15682,'notes','599','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15683,'notes','600','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15684,'notes','601','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15685,'notes','602','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15686,'notes','603','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15687,'notes','604','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15688,'notes','605','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15689,'notes','606','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15690,'notes','607','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15691,'notes','608','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15692,'notes','609','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15693,'notes','610','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15694,'notes','611','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15695,'notes','612','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15696,'notes','614','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15697,'notes','615','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15698,'notes','616','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15699,'notes','617','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15700,'notes','618','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15701,'notes','619','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15702,'notes','620','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15703,'notes','621','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15704,'notes','622','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15705,'notes','623','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15706,'notes','624','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15707,'notes','625','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15708,'notes','626','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15709,'notes','627','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15710,'notes','628','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15711,'notes','629','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15712,'notes','630','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15713,'notes','631','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15714,'notes','632','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15715,'notes','633','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15716,'notes','634','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15717,'notes','635','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15718,'notes','636','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15719,'notes','637','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15720,'notes','638','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15721,'notes','639','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15722,'notes','641','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15723,'notes','643','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15724,'notes','644','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15725,'notes','645','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15726,'notes','646','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15727,'notes','647','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15728,'notes','648','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15729,'notes','650','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15730,'notes','651','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15731,'notes','652','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15732,'notes','653','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15733,'notes','654','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15734,'notes','656','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15735,'notes','657','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15736,'notes','658','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15737,'notes','659','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15738,'notes','660','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15739,'notes','661','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15740,'notes','662','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15741,'notes','663','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15742,'notes','664','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15743,'notes','665','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15744,'notes','666','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15745,'notes','667','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15746,'notes','668','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15747,'notes','669','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15748,'notes','670','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15749,'notes','673','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15750,'notes','674','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15751,'notes','675','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15752,'notes','676','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15753,'notes','677','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15754,'notes','678','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15755,'notes','679','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15756,'notes','680','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15757,'notes','681','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15758,'notes','682','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15759,'notes','684','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15760,'notes','685','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15761,'notes','686','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15762,'notes','688','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15763,'notes','689','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15764,'notes','690','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15765,'notes','691','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15766,'notes','692','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15767,'notes','693','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15768,'notes','694','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15769,'notes','695','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15770,'notes','696','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15771,'notes','698','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15772,'notes','699','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15773,'notes','700','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15774,'notes','701','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15775,'notes','702','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15776,'notes','703','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15777,'notes','704','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15778,'notes','705','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15779,'notes','706','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15780,'notes','707','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15781,'notes','708','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15782,'notes','709','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15783,'notes','710','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15784,'notes','711','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15785,'notes','712','error','Deal not found: 147',NULL,'2025-11-14 00:17:00'),
(15786,'notes','713','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15787,'notes','714','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15788,'notes','715','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15789,'notes','716','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15790,'notes','717','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15791,'notes','718','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15792,'notes','719','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15793,'notes','720','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15794,'notes','721','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15795,'notes','722','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15796,'notes','723','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15797,'notes','724','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15798,'notes','725','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15799,'notes','726','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15800,'notes','727','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15801,'notes','728','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15802,'notes','730','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15803,'notes','731','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15804,'notes','732','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15805,'notes','733','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15806,'notes','734','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15807,'notes','735','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15808,'notes','736','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15809,'notes','738','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15810,'notes','739','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15811,'notes','740','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15812,'notes','741','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15813,'notes','742','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15814,'notes','743','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15815,'notes','744','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15816,'notes','745','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15817,'notes','746','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15818,'notes','747','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15819,'notes','748','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15820,'notes','749','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15821,'notes','750','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15822,'notes','751','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15823,'notes','752','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15824,'notes','753','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15825,'notes','754','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15826,'notes','755','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15827,'notes','756','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15828,'notes','757','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15829,'notes','758','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15830,'notes','759','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15831,'notes','760','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15832,'notes','761','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15833,'notes','762','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15834,'notes','763','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15835,'notes','764','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15836,'notes','765','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15837,'notes','766','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15838,'notes','767','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15839,'notes','768','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15840,'notes','769','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15841,'notes','770','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15842,'notes','771','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15843,'notes','772','error','Deal not found: 717',NULL,'2025-11-14 00:17:00'),
(15844,'notes','773','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15845,'notes','774','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15846,'notes','775','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15847,'notes','776','error','Deal not found: 717',NULL,'2025-11-14 00:17:00'),
(15848,'notes','777','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15849,'notes','778','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15850,'notes','779','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15851,'notes','780','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15852,'notes','781','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15853,'notes','782','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15854,'notes','783','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15855,'notes','784','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15856,'notes','785','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15857,'notes','786','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15858,'notes','787','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15859,'notes','788','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15860,'notes','789','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15861,'notes','790','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15862,'notes','791','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15863,'notes','792','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15864,'notes','793','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15865,'notes','794','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15866,'notes','795','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15867,'notes','796','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15868,'notes','797','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15869,'notes','798','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15870,'notes','799','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15871,'notes','800','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15872,'notes','801','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15873,'notes','802','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15874,'notes','803','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15875,'notes','804','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15876,'notes','805','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15877,'notes','806','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15878,'notes','807','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15879,'notes','808','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15880,'notes','809','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15881,'notes','810','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15882,'notes','811','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15883,'notes','812','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15884,'notes','813','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15885,'notes','815','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15886,'notes','816','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15887,'notes','817','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15888,'notes','818','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15889,'notes','819','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15890,'notes','820','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15891,'notes','821','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15892,'notes','822','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15893,'notes','823','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15894,'notes','824','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15895,'notes','825','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15896,'notes','826','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15897,'notes','827','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15898,'notes','829','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15899,'notes','830','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15900,'notes','831','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15901,'notes','832','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15902,'notes','833','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15903,'notes','834','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15904,'notes','835','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15905,'notes','836','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15906,'notes','839','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15907,'notes','840','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15908,'notes','841','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15909,'notes','842','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15910,'notes','843','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15911,'notes','844','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15912,'notes','845','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15913,'notes','846','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15914,'notes','847','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15915,'notes','848','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15916,'notes','849','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15917,'notes','850','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15918,'notes','852','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15919,'notes','853','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15920,'notes','854','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15921,'notes','855','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15922,'notes','856','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15923,'notes','857','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15924,'notes','858','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15925,'notes','859','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15926,'notes','860','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15927,'notes','861','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15928,'notes','862','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15929,'notes','863','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15930,'notes','864','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15931,'notes','865','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15932,'notes','866','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15933,'notes','867','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15934,'notes','868','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15935,'notes','869','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15936,'notes','870','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15937,'notes','871','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15938,'notes','872','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15939,'notes','874','error','Deal not found: 717',NULL,'2025-11-14 00:17:00'),
(15940,'notes','875','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15941,'notes','876','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15942,'notes','877','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15943,'notes','878','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15944,'notes','879','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15945,'notes','880','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15946,'notes','881','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15947,'notes','882','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15948,'notes','883','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15949,'notes','884','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15950,'notes','885','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15951,'notes','886','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15952,'notes','887','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15953,'notes','888','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15954,'notes','889','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15955,'notes','890','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15956,'notes','892','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15957,'notes','893','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15958,'notes','894','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15959,'notes','895','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15960,'notes','896','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15961,'notes','897','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15962,'notes','898','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15963,'notes','899','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15964,'notes','900','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15965,'notes','901','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15966,'notes','902','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15967,'notes','903','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15968,'notes','904','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15969,'notes','905','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15970,'notes','906','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15971,'notes','907','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15972,'notes','908','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15973,'notes','909','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15974,'notes','910','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15975,'notes','911','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15976,'notes','912','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15977,'notes','913','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15978,'notes','914','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15979,'notes','915','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15980,'notes','916','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15981,'notes','917','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15982,'notes','918','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15983,'notes','919','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15984,'notes','920','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15985,'notes','921','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15986,'notes','923','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15987,'notes','924','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15988,'notes','925','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15989,'notes','926','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15990,'notes','927','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15991,'notes','928','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15992,'notes','929','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15993,'notes','930','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15994,'notes','931','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15995,'notes','932','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15996,'notes','933','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15997,'notes','934','error','Deal not found: 517',NULL,'2025-11-14 00:17:00'),
(15998,'notes','935','error','Deal not found: 508',NULL,'2025-11-14 00:17:00'),
(15999,'notes','936','error','Deal not found: 508',NULL,'2025-11-14 00:17:00'),
(16000,'notes','937','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16001,'notes','938','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16002,'notes','939','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16003,'notes','940','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16004,'notes','941','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16005,'notes','942','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16006,'notes','943','error','Deal not found: 508',NULL,'2025-11-14 00:17:00'),
(16007,'notes','944','error','Deal not found: 508',NULL,'2025-11-14 00:17:00'),
(16008,'notes','945','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16009,'notes','946','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16010,'notes','947','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16011,'notes','948','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16012,'notes','949','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16013,'notes','950','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16014,'notes','951','error','Deal not found: 508',NULL,'2025-11-14 00:17:00'),
(16015,'notes','952','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16016,'notes','953','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16017,'notes','954','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16018,'notes','955','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16019,'notes','956','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16020,'notes','957','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16021,'notes','958','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16022,'notes','959','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16023,'notes','960','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16024,'notes','961','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16025,'notes','962','error','Deal not found: 196',NULL,'2025-11-14 00:17:00'),
(16026,'notes','963','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16027,'notes','964','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16028,'notes','965','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16029,'notes','966','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16030,'notes','967','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16031,'notes','968','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16032,'notes','969','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16033,'notes','970','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16034,'notes','971','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16035,'notes','972','error','Deal not found: 203',NULL,'2025-11-14 00:17:00'),
(16036,'notes','973','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16037,'notes','974','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16038,'notes','975','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16039,'notes','976','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16040,'notes','977','error','Deal not found: 212',NULL,'2025-11-14 00:17:00'),
(16041,'notes','978','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16042,'notes','979','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16043,'notes','980','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16044,'notes','981','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16045,'notes','982','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16046,'notes','983','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16047,'notes','984','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16048,'notes','985','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16049,'notes','986','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16050,'notes','988','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16051,'notes','989','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16052,'notes','990','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16053,'notes','991','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16054,'notes','992','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16055,'notes','993','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16056,'notes','994','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16057,'notes','995','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16058,'notes','996','error','Deal not found: 251',NULL,'2025-11-14 00:17:00'),
(16059,'notes','997','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16060,'notes','998','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16061,'notes','999','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16062,'notes','1000','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16063,'notes','1001','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16064,'notes','1002','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16065,'notes','1003','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16066,'notes','1004','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16067,'notes','1005','error','Deal not found: 256',NULL,'2025-11-14 00:17:00'),
(16068,'notes','1006','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16069,'notes','1007','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16070,'notes','1008','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16071,'notes','1009','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16072,'notes','1010','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16073,'notes','1011','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16074,'notes','1012','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16075,'notes','1013','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16076,'notes','1014','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16077,'notes','1015','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16078,'notes','1016','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16079,'notes','1017','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16080,'notes','1018','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16081,'notes','1019','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16082,'notes','1020','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16083,'notes','1021','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16084,'notes','1022','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16085,'notes','1023','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16086,'notes','1024','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16087,'notes','1025','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16088,'notes','1026','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16089,'notes','1027','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16090,'notes','1028','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16091,'notes','1029','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16092,'notes','1030','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16093,'notes','1031','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16094,'notes','1032','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16095,'notes','1033','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16096,'notes','1034','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16097,'notes','1035','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16098,'notes','1036','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16099,'notes','1037','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16100,'notes','1038','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16101,'notes','1039','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16102,'notes','1040','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16103,'notes','1041','error','Deal not found: 313',NULL,'2025-11-14 00:17:00'),
(16104,'notes','1042','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16105,'notes','1043','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16106,'notes','1044','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16107,'notes','1045','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16108,'notes','1046','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16109,'notes','1047','error','Deal not found: 338',NULL,'2025-11-14 00:17:00'),
(16110,'notes','1048','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16111,'notes','1049','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16112,'notes','1050','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16113,'notes','1051','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16114,'notes','1052','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16115,'notes','1053','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16116,'notes','1054','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16117,'notes','1055','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16118,'notes','1056','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16119,'notes','1057','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16120,'notes','1059','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16121,'notes','1060','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16122,'notes','1061','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16123,'notes','1062','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16124,'notes','1063','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16125,'notes','1064','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16126,'notes','1065','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16127,'notes','1066','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16128,'notes','1067','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16129,'notes','1068','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16130,'notes','1069','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16131,'notes','1070','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16132,'notes','1071','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16133,'notes','1072','error','Deal not found: 418',NULL,'2025-11-14 00:17:00'),
(16134,'notes','1073','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16135,'notes','1074','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16136,'notes','1075','error','Deal not found: 448',NULL,'2025-11-14 00:17:00'),
(16137,'notes','1076','error','Deal not found: 193',NULL,'2025-11-14 00:17:00'),
(16138,'notes','1077','error','Deal not found: 542',NULL,'2025-11-14 00:17:00'),
(16139,'notes','1078','error','Deal not found: 542',NULL,'2025-11-14 00:17:00'),
(16140,'notes','1079','error','Deal not found: 540',NULL,'2025-11-14 00:17:00'),
(16141,'notes','1080','error','Deal not found: 542',NULL,'2025-11-14 00:17:00'),
(16142,'notes','1081','error','Deal not found: 542',NULL,'2025-11-14 00:17:00'),
(16143,'notes','1082','error','Deal not found: 291',NULL,'2025-11-14 00:17:00'),
(16144,'notes','1083','error','Deal not found: 540',NULL,'2025-11-14 00:17:00'),
(16145,'notes','1084','error','Deal not found: 381',NULL,'2025-11-14 00:17:00'),
(16146,'notes','1085','error','Deal not found: 430',NULL,'2025-11-14 00:17:00'),
(16147,'notes','1086','error','Deal not found: 497',NULL,'2025-11-14 00:17:00'),
(16148,'notes','1087','error','Deal not found: 476',NULL,'2025-11-14 00:17:00'),
(16149,'notes','1088','error','Deal not found: 546',NULL,'2025-11-14 00:17:00'),
(16150,'notes','1089','error','Deal not found: 257',NULL,'2025-11-14 00:17:00'),
(16151,'notes','1090','error','Deal not found: 443',NULL,'2025-11-14 00:17:00'),
(16152,'notes','1091','error','Deal not found: 268',NULL,'2025-11-14 00:17:00'),
(16153,'notes','1092','error','Deal not found: 430',NULL,'2025-11-14 00:17:00'),
(16154,'notes','1093','error','Deal not found: 407',NULL,'2025-11-14 00:17:00'),
(16155,'notes','1094','error','Deal not found: 505',NULL,'2025-11-14 00:17:00'),
(16156,'notes','1095','error','Deal not found: 315',NULL,'2025-11-14 00:17:00'),
(16157,'notes','1096','error','Deal not found: 532',NULL,'2025-11-14 00:17:00'),
(16158,'notes','1097','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16159,'notes','1098','error','Deal not found: 234',NULL,'2025-11-14 00:17:00'),
(16160,'notes','1099','error','Deal not found: 249',NULL,'2025-11-14 00:17:00'),
(16161,'notes','1100','error','Deal not found: 431',NULL,'2025-11-14 00:17:00'),
(16162,'notes','1101','error','Deal not found: 520',NULL,'2025-11-14 00:17:00'),
(16163,'notes','1102','error','Deal not found: 543',NULL,'2025-11-14 00:17:00'),
(16164,'notes','1103','error','Deal not found: 462',NULL,'2025-11-14 00:17:00'),
(16165,'notes','1104','error','Deal not found: 200',NULL,'2025-11-14 00:17:00'),
(16166,'notes','1105','error','Deal not found: 519',NULL,'2025-11-14 00:17:00'),
(16167,'notes','1106','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16168,'notes','1107','error','Deal not found: 197',NULL,'2025-11-14 00:17:00'),
(16169,'notes','1108','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16170,'notes','1109','error','Deal not found: 509',NULL,'2025-11-14 00:17:00'),
(16171,'notes','1110','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16172,'notes','1111','error','Deal not found: 315',NULL,'2025-11-14 00:17:00'),
(16173,'notes','1112','error','Deal not found: 531',NULL,'2025-11-14 00:17:00'),
(16174,'notes','1113','error','Deal not found: 490',NULL,'2025-11-14 00:17:00'),
(16175,'notes','1114','error','Deal not found: 310',NULL,'2025-11-14 00:17:00'),
(16176,'notes','1115','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16177,'notes','1116','error','Deal not found: 481',NULL,'2025-11-14 00:17:00'),
(16178,'notes','1117','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16179,'notes','1118','error','Deal not found: 249',NULL,'2025-11-14 00:17:00'),
(16180,'notes','1119','error','Deal not found: 525',NULL,'2025-11-14 00:17:00'),
(16181,'notes','1120','error','Deal not found: 568',NULL,'2025-11-14 00:17:00'),
(16182,'notes','1121','error','Deal not found: 426',NULL,'2025-11-14 00:17:00'),
(16183,'notes','1122','error','Deal not found: 305',NULL,'2025-11-14 00:17:00'),
(16184,'notes','1123','error','Deal not found: 530',NULL,'2025-11-14 00:17:00'),
(16185,'notes','1124','error','Deal not found: 483',NULL,'2025-11-14 00:17:00'),
(16186,'notes','1125','error','Deal not found: 431',NULL,'2025-11-14 00:17:00'),
(16187,'notes','1126','error','Deal not found: 465',NULL,'2025-11-14 00:17:00'),
(16188,'notes','1127','error','Deal not found: 431',NULL,'2025-11-14 00:17:00'),
(16189,'notes','1128','error','Deal not found: 518',NULL,'2025-11-14 00:17:00'),
(16190,'notes','1129','error','Deal not found: 477',NULL,'2025-11-14 00:17:00'),
(16191,'notes','1130','error','Deal not found: 528',NULL,'2025-11-14 00:17:00'),
(16192,'notes','1131','error','Deal not found: 477',NULL,'2025-11-14 00:17:00'),
(16193,'notes','1132','error','Deal not found: 431',NULL,'2025-11-14 00:17:00'),
(16194,'notes','1133','error','Deal not found: 463',NULL,'2025-11-14 00:17:00'),
(16195,'notes','1134','error','Deal not found: 533',NULL,'2025-11-14 00:17:00'),
(16196,'notes','1135','error','Deal not found: 372',NULL,'2025-11-14 00:17:00'),
(16197,'notes','1136','error','Deal not found: 533',NULL,'2025-11-14 00:17:00'),
(16198,'notes','1137','error','Deal not found: 372',NULL,'2025-11-14 00:17:00'),
(16199,'notes','1138','error','Deal not found: 457',NULL,'2025-11-14 00:17:00'),
(16200,'notes','1139','error','Deal not found: 460',NULL,'2025-11-14 00:17:00'),
(16201,'notes','1140','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16202,'notes','1141','error','Deal not found: 193',NULL,'2025-11-14 00:17:00'),
(16203,'notes','1142','error','Deal not found: 515',NULL,'2025-11-14 00:17:00'),
(16204,'notes','1143','error','Deal not found: 193',NULL,'2025-11-14 00:17:00'),
(16205,'notes','1144','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16206,'notes','1145','error','Deal not found: 492',NULL,'2025-11-14 00:17:00'),
(16207,'notes','1146','error','Deal not found: 526',NULL,'2025-11-14 00:17:00'),
(16208,'notes','1147','error','Deal not found: 539',NULL,'2025-11-14 00:17:00'),
(16209,'notes','1148','error','Deal not found: 257',NULL,'2025-11-14 00:17:00'),
(16210,'notes','1149','error','Deal not found: 463',NULL,'2025-11-14 00:17:00'),
(16211,'notes','1150','error','Deal not found: 447',NULL,'2025-11-14 00:17:00'),
(16212,'notes','1151','error','Deal not found: 489',NULL,'2025-11-14 00:17:00'),
(16213,'notes','1152','error','Deal not found: 463',NULL,'2025-11-14 00:17:00'),
(16214,'notes','1153','error','Deal not found: 397',NULL,'2025-11-14 00:17:00'),
(16215,'notes','1154','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16216,'notes','1155','error','Deal not found: 430',NULL,'2025-11-14 00:17:00'),
(16217,'notes','1156','error','Deal not found: 462',NULL,'2025-11-14 00:17:00'),
(16218,'notes','1157','error','Deal not found: 542',NULL,'2025-11-14 00:17:00'),
(16219,'notes','1158','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16220,'notes','1159','error','Deal not found: 509',NULL,'2025-11-14 00:17:00'),
(16221,'notes','1160','error','Deal not found: 296',NULL,'2025-11-14 00:17:00'),
(16222,'notes','1161','error','Deal not found: 460',NULL,'2025-11-14 00:17:00'),
(16223,'notes','1162','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16224,'notes','1164','error','Deal not found: 472',NULL,'2025-11-14 00:17:00'),
(16225,'notes','1165','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16226,'notes','1166','error','Deal not found: 469',NULL,'2025-11-14 00:17:00'),
(16227,'notes','1167','error','Deal not found: 472',NULL,'2025-11-14 00:17:00'),
(16228,'notes','1168','error','Deal not found: 213',NULL,'2025-11-14 00:17:00'),
(16229,'notes','1169','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16230,'notes','1170','error','Deal not found: 472',NULL,'2025-11-14 00:17:00'),
(16231,'notes','1171','error','Deal not found: 427',NULL,'2025-11-14 00:17:00'),
(16232,'notes','1172','error','Deal not found: 200',NULL,'2025-11-14 00:17:00'),
(16233,'notes','1173','error','Deal not found: 604',NULL,'2025-11-14 00:17:00'),
(16234,'notes','1174','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16235,'notes','1175','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16236,'notes','1176','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16237,'notes','1177','error','Deal not found: 584',NULL,'2025-11-14 00:17:00'),
(16238,'notes','1179','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16239,'notes','1180','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16240,'notes','1181','error','Deal not found: 536',NULL,'2025-11-14 00:17:00'),
(16241,'notes','1182','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16242,'notes','1183','error','Deal not found: 385',NULL,'2025-11-14 00:17:00'),
(16243,'notes','1184','error','Deal not found: 427',NULL,'2025-11-14 00:17:00'),
(16244,'notes','1185','error','Deal not found: 427',NULL,'2025-11-14 00:17:00'),
(16245,'notes','1186','error','Deal not found: 427',NULL,'2025-11-14 00:17:00'),
(16246,'notes','1187','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16247,'notes','1188','error','Deal not found: 427',NULL,'2025-11-14 00:17:00'),
(16248,'notes','1189','error','Deal not found: 380',NULL,'2025-11-14 00:17:00'),
(16249,'notes','1190','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16250,'notes','1191','error','Deal not found: 627',NULL,'2025-11-14 00:17:00'),
(16251,'notes','1192','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16252,'notes','1193','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16253,'notes','1194','error','Deal not found: 442',NULL,'2025-11-14 00:17:00'),
(16254,'notes','1195','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16255,'notes','1196','error','Deal not found: 532',NULL,'2025-11-14 00:17:00'),
(16256,'notes','1197','error','Deal not found: 287',NULL,'2025-11-14 00:17:00'),
(16257,'notes','1198','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16258,'notes','1199','error','Deal not found: 542',NULL,'2025-11-14 00:17:00'),
(16259,'notes','1200','error','Deal not found: 497',NULL,'2025-11-14 00:17:00'),
(16260,'notes','1201','error','Deal not found: 287',NULL,'2025-11-14 00:17:00'),
(16261,'notes','1202','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16262,'notes','1203','error','Deal not found: 497',NULL,'2025-11-14 00:17:00'),
(16263,'notes','1204','error','Deal not found: 636',NULL,'2025-11-14 00:17:00'),
(16264,'notes','1205','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16265,'notes','1206','error','Deal not found: 469',NULL,'2025-11-14 00:17:00'),
(16266,'notes','1207','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16267,'notes','1208','error','Deal not found: 249',NULL,'2025-11-14 00:17:00'),
(16268,'notes','1209','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16269,'notes','1210','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16270,'notes','1211','error','Deal not found: 526',NULL,'2025-11-14 00:17:00'),
(16271,'notes','1212','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16272,'notes','1213','error','Deal not found: 498',NULL,'2025-11-14 00:17:00'),
(16273,'notes','1214','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16274,'notes','1215','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16275,'notes','1216','error','Deal not found: 601',NULL,'2025-11-14 00:17:00'),
(16276,'notes','1217','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16277,'notes','1218','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16278,'notes','1219','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16279,'notes','1220','error','Deal not found: 257',NULL,'2025-11-14 00:17:00'),
(16280,'notes','1221','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16281,'notes','1222','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16282,'notes','1223','error','Deal not found: 655',NULL,'2025-11-14 00:17:00'),
(16283,'notes','1224','error','Deal not found: 323',NULL,'2025-11-14 00:17:00'),
(16284,'notes','1225','error','Deal not found: 301',NULL,'2025-11-14 00:17:00'),
(16285,'notes','1226','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16286,'notes','1227','error','Deal not found: 487',NULL,'2025-11-14 00:17:00'),
(16287,'notes','1228','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16288,'notes','1229','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16289,'notes','1230','error','Deal not found: 315',NULL,'2025-11-14 00:17:00'),
(16290,'notes','1231','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16291,'notes','1232','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16292,'notes','1233','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16293,'notes','1234','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16294,'notes','1235','error','Deal not found: 223',NULL,'2025-11-14 00:17:00'),
(16295,'notes','1236','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16296,'notes','1237','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16297,'notes','1238','error','Deal not found: 315',NULL,'2025-11-14 00:17:00'),
(16298,'notes','1239','error','Deal not found: 479',NULL,'2025-11-14 00:17:00'),
(16299,'notes','1240','error','Deal not found: 684',NULL,'2025-11-14 00:17:00'),
(16300,'notes','1242','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16301,'notes','1243','error','Deal not found: 542',NULL,'2025-11-14 00:17:00'),
(16302,'notes','1244','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16303,'notes','1245','error','Deal not found: 147',NULL,'2025-11-14 00:17:00'),
(16304,'notes','1246','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16305,'notes','1247','error','Deal not found: 249',NULL,'2025-11-14 00:17:00'),
(16306,'notes','1248','error','Deal not found: 147',NULL,'2025-11-14 00:17:00'),
(16307,'notes','1249','error','Deal not found: 313',NULL,'2025-11-14 00:17:00'),
(16308,'notes','1250','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16309,'notes','1251','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16310,'notes','1252','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16311,'notes','1253','error','Deal not found: 287',NULL,'2025-11-14 00:17:00'),
(16312,'notes','1254','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16313,'notes','1255','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16314,'notes','1256','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16315,'notes','1257','error','Deal not found: 636',NULL,'2025-11-14 00:17:00'),
(16316,'notes','1258','error','Deal not found: 636',NULL,'2025-11-14 00:17:00'),
(16317,'notes','1259','error','Deal not found: 636',NULL,'2025-11-14 00:17:00'),
(16318,'notes','1260','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16319,'notes','1261','error','Deal not found: 150',NULL,'2025-11-14 00:17:00'),
(16320,'notes','1262','error','Deal not found: 150',NULL,'2025-11-14 00:17:00'),
(16321,'notes','1263','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16322,'notes','1264','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16323,'notes','1265','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16324,'notes','1266','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16325,'notes','1267','error','Deal not found: 540',NULL,'2025-11-14 00:17:00'),
(16326,'notes','1268','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16327,'notes','1269','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16328,'notes','1270','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16329,'notes','1271','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16330,'notes','1272','error','Deal not found: 249',NULL,'2025-11-14 00:17:00'),
(16331,'notes','1273','error','Deal not found: 385',NULL,'2025-11-14 00:17:00'),
(16332,'notes','1274','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16333,'notes','1275','error','Deal not found: 492',NULL,'2025-11-14 00:17:00'),
(16334,'notes','1276','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16335,'notes','1277','error','Deal not found: 627',NULL,'2025-11-14 00:17:00'),
(16336,'notes','1278','error','Deal not found: 385',NULL,'2025-11-14 00:17:00'),
(16337,'notes','1279','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16338,'notes','1280','error','Deal not found: 385',NULL,'2025-11-14 00:17:00'),
(16339,'notes','1281','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16340,'notes','1282','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16341,'notes','1283','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16342,'notes','1284','error','Deal not found: 700',NULL,'2025-11-14 00:17:00'),
(16343,'notes','1285','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16344,'notes','1286','error','Deal not found: 636',NULL,'2025-11-14 00:17:00'),
(16345,'notes','1287','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16346,'notes','1288','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16347,'notes','1289','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16348,'notes','1290','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16349,'notes','1291','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16350,'notes','1292','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16351,'notes','1293','error','Deal not found: 204',NULL,'2025-11-14 00:17:00'),
(16352,'notes','1294','error','Deal not found: 427',NULL,'2025-11-14 00:17:00'),
(16353,'notes','1295','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16354,'notes','1296','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16355,'notes','1297','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16356,'notes','1298','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16357,'notes','1299','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16358,'notes','1300','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16359,'notes','1301','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16360,'notes','1302','error','Deal not found: 443',NULL,'2025-11-14 00:17:00'),
(16361,'notes','1303','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16362,'notes','1304','error','Deal not found: 403',NULL,'2025-11-14 00:17:00'),
(16363,'notes','1305','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16364,'notes','1306','error','Deal not found: 542',NULL,'2025-11-14 00:17:00'),
(16365,'notes','1307','error','Deal not found: 730',NULL,'2025-11-14 00:17:00'),
(16366,'notes','1308','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16367,'notes','1309','error','Deal not found: 442',NULL,'2025-11-14 00:17:00'),
(16368,'notes','1310','error','Deal not found: 204',NULL,'2025-11-14 00:17:00'),
(16369,'notes','1311','error','Deal not found: 403',NULL,'2025-11-14 00:17:00'),
(16370,'notes','1312','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16371,'notes','1313','error','Deal not found: 442',NULL,'2025-11-14 00:17:00'),
(16372,'notes','1314','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16373,'notes','1315','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16374,'notes','1316','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16375,'notes','1317','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16376,'notes','1318','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16377,'notes','1319','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16378,'notes','1320','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16379,'notes','1321','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16380,'notes','1322','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16381,'notes','1323','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16382,'notes','1324','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16383,'notes','1325','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16384,'notes','1326','error','Deal not found: 403',NULL,'2025-11-14 00:17:00'),
(16385,'notes','1327','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16386,'notes','1328','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16387,'notes','1329','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16388,'notes','1330','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16389,'notes','1331','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16390,'notes','1332','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16391,'notes','1333','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16392,'notes','1334','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16393,'notes','1335','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16394,'notes','1336','error','Deal not found: 403',NULL,'2025-11-14 00:17:00'),
(16395,'notes','1338','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16396,'notes','1339','error','Deal not found: 627',NULL,'2025-11-14 00:17:00'),
(16397,'notes','1341','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16398,'notes','1342','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16399,'notes','1343','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16400,'notes','1344','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16401,'notes','1345','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16402,'notes','1346','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16403,'notes','1347','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16404,'notes','1348','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16405,'notes','1349','error','Deal not found: 542',NULL,'2025-11-14 00:17:00'),
(16406,'notes','1350','error','Deal not found: 508',NULL,'2025-11-14 00:17:00'),
(16407,'notes','1351','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16408,'notes','1352','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16409,'notes','1353','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16410,'notes','1354','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16411,'notes','1355','error','Deal not found: 733',NULL,'2025-11-14 00:17:00'),
(16412,'notes','1356','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16413,'notes','1357','error','Deal not found: 708',NULL,'2025-11-14 00:17:00'),
(16414,'notes','1358','error','Deal not found: 730',NULL,'2025-11-14 00:17:00'),
(16415,'notes','1359','error','Deal not found: 730',NULL,'2025-11-14 00:17:00'),
(16416,'notes','1361','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16417,'notes','1362','error','Deal not found: 684',NULL,'2025-11-14 00:17:00'),
(16418,'notes','1363','error','Deal not found: 443',NULL,'2025-11-14 00:17:00'),
(16419,'notes','1364','error','Deal not found: 147',NULL,'2025-11-14 00:17:00'),
(16420,'notes','1365','error','Deal not found: 315',NULL,'2025-11-14 00:17:00'),
(16421,'notes','1366','error','Deal not found: 727',NULL,'2025-11-14 00:17:00'),
(16422,'notes','1367','error','Deal not found: 256',NULL,'2025-11-14 00:17:00'),
(16423,'notes','1368','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16424,'notes','1369','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16425,'notes','1370','error','Deal not found: 251',NULL,'2025-11-14 00:17:00'),
(16426,'notes','1371','error','Deal not found: 847',NULL,'2025-11-14 00:17:00'),
(16427,'notes','1372','error','Deal not found: 362',NULL,'2025-11-14 00:17:00'),
(16428,'notes','1373','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16429,'notes','1374','error','Deal not found: 192',NULL,'2025-11-14 00:17:00'),
(16430,'notes','1375','error','Deal not found: 212',NULL,'2025-11-14 00:17:00'),
(16431,'notes','1376','error','Deal not found: 61',NULL,'2025-11-14 00:17:00'),
(16432,'notes','1377','error','Deal not found: 61',NULL,'2025-11-14 00:17:00'),
(16433,'notes','1378','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16434,'notes','1379','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16435,'notes','1380','error','Deal not found: 943',NULL,'2025-11-14 00:17:00'),
(16436,'notes','1381','error','Deal not found: 517',NULL,'2025-11-14 00:17:00'),
(16437,'notes','1382','error','Deal not found: 986',NULL,'2025-11-14 00:17:00'),
(16438,'notes','1383','error','Deal not found: 986',NULL,'2025-11-14 00:17:00'),
(16439,'notes','1384','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16440,'notes','1385','error','Deal not found: 1013',NULL,'2025-11-14 00:17:00'),
(16441,'notes','1386','error','Deal not found: 990',NULL,'2025-11-14 00:17:00'),
(16442,'notes','1387','error','Deal not found: 990',NULL,'2025-11-14 00:17:00'),
(16443,'notes','1388','error','Deal not found: 998',NULL,'2025-11-14 00:17:00'),
(16444,'notes','1389','error','Deal not found: 994',NULL,'2025-11-14 00:17:00'),
(16445,'notes','1390','error','Deal not found: 1006',NULL,'2025-11-14 00:17:00'),
(16446,'notes','1391','error','Deal not found: 1009',NULL,'2025-11-14 00:17:00'),
(16447,'notes','1392','error','Deal not found: 867',NULL,'2025-11-14 00:17:00'),
(16448,'notes','1393','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16449,'notes','1394','error','Deal not found: 994',NULL,'2025-11-14 00:17:00'),
(16450,'notes','1395','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16451,'notes','1396','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16452,'notes','1397','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16453,'notes','1398','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16454,'notes','1399','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16455,'notes','1400','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16456,'notes','1401','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16457,'notes','1402','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16458,'notes','1403','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16459,'notes','1404','error','Deal not found: 61',NULL,'2025-11-14 00:17:00'),
(16460,'notes','1405','error','Deal not found: 442',NULL,'2025-11-14 00:17:00'),
(16461,'notes','1406','error','Deal not found: 249',NULL,'2025-11-14 00:17:00'),
(16462,'notes','1407','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16463,'notes','1408','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16464,'notes','1409','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16465,'notes','1410','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16466,'notes','1411','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16467,'notes','1412','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16468,'notes','1413','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16469,'notes','1414','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16470,'notes','1415','error','Deal not found: 1724',NULL,'2025-11-14 00:17:00'),
(16471,'notes','1416','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16472,'notes','1417','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16473,'notes','1418','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16474,'notes','1419','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16475,'notes','1420','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16476,'notes','1421','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16477,'notes','1422','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16478,'notes','1423','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16479,'notes','1424','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16480,'notes','1425','error','Deal not found: 1724',NULL,'2025-11-14 00:17:00'),
(16481,'notes','1426','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16482,'notes','1427','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16483,'notes','1428','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16484,'notes','1429','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16485,'notes','1430','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16486,'notes','1431','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16487,'notes','1432','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16488,'notes','1434','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16489,'notes','1435','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16490,'notes','1436','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16491,'notes','1437','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16492,'notes','1438','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16493,'notes','1439','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16494,'notes','1440','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16495,'notes','1441','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16496,'notes','1442','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16497,'notes','1443','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16498,'notes','1444','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16499,'notes','1445','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16500,'notes','1446','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16501,'notes','1447','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16502,'notes','1448','error','Deal not found: 1724',NULL,'2025-11-14 00:17:00'),
(16503,'notes','1449','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16504,'notes','1450','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16505,'notes','1451','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16506,'notes','1452','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16507,'notes','1453','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16508,'notes','1454','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16509,'notes','1455','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16510,'notes','1456','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16511,'notes','1457','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16512,'notes','1458','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16513,'notes','1459','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16514,'notes','1460','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16515,'notes','1461','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16516,'notes','1462','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16517,'notes','1463','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16518,'notes','1464','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16519,'notes','1465','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16520,'notes','1466','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16521,'notes','1467','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16522,'notes','1468','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16523,'notes','1469','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16524,'notes','1470','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16525,'notes','1471','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16526,'notes','1472','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16527,'notes','1473','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16528,'notes','1474','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16529,'notes','1475','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16530,'notes','1476','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16531,'notes','1477','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16532,'notes','1478','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16533,'notes','1479','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16534,'notes','1480','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16535,'notes','1481','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16536,'notes','1482','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16537,'notes','1483','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16538,'notes','1484','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16539,'notes','1485','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16540,'notes','1486','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16541,'notes','1487','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16542,'notes','1488','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16543,'notes','1489','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16544,'notes','1490','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16545,'notes','1491','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16546,'notes','1492','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16547,'notes','1493','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16548,'notes','1494','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16549,'notes','1495','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16550,'notes','1496','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16551,'notes','1497','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16552,'notes','1498','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16553,'notes','1499','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16554,'notes','1500','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16555,'notes','1501','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16556,'notes','1502','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16557,'notes','1504','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16558,'notes','1505','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16559,'notes','1506','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16560,'notes','1507','error','Deal not found: 1358',NULL,'2025-11-14 00:17:00'),
(16561,'notes','1508','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16562,'notes','1509','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16563,'notes','1510','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16564,'notes','1511','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16565,'notes','1512','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16566,'notes','1513','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16567,'notes','1514','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16568,'notes','1515','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16569,'notes','1516','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16570,'notes','1517','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16571,'notes','1518','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16572,'notes','1519','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16573,'notes','1520','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16574,'notes','1523','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16575,'notes','1524','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16576,'notes','1525','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16577,'notes','1526','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16578,'notes','1527','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16579,'notes','1528','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16580,'notes','1529','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16581,'notes','1530','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16582,'notes','1531','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16583,'notes','1532','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16584,'notes','1533','error','Deal not found: 1442',NULL,'2025-11-14 00:17:00'),
(16585,'notes','1534','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16586,'notes','1535','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16587,'notes','1536','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16588,'notes','1537','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16589,'notes','1538','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16590,'notes','1539','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16591,'notes','1540','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16592,'notes','1541','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16593,'notes','1542','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16594,'notes','1543','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16595,'notes','1544','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16596,'notes','1545','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16597,'notes','1546','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16598,'notes','1547','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16599,'notes','1548','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16600,'notes','1549','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16601,'notes','1550','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16602,'notes','1551','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16603,'notes','1552','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16604,'notes','1553','error','Deal not found: 4',NULL,'2025-11-14 00:17:00'),
(16605,'notes','1554','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16606,'notes','1555','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16607,'notes','1556','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16608,'notes','1557','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16609,'notes','1558','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16610,'notes','1559','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16611,'notes','1560','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16612,'notes','1561','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16613,'notes','1562','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16614,'notes','1563','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16615,'notes','1564','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16616,'notes','1565','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16617,'notes','1566','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16618,'notes','1567','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16619,'notes','1568','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16620,'notes','1569','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16621,'notes','1570','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16622,'notes','1571','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16623,'notes','1572','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16624,'notes','1573','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16625,'notes','1574','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16626,'notes','1575','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16627,'notes','1576','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16628,'notes','1577','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16629,'notes','1578','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16630,'notes','1579','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16631,'notes','1580','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16632,'notes','1581','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16633,'notes','1582','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16634,'notes','1583','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16635,'notes','1584','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16636,'notes','1585','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16637,'notes','1586','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16638,'notes','1587','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16639,'notes','1588','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16640,'notes','1589','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16641,'notes','1590','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16642,'notes','1591','error','Deal not found: 1570',NULL,'2025-11-14 00:17:00'),
(16643,'notes','1592','error','Deal not found: 14',NULL,'2025-11-14 00:17:00'),
(16644,'notes','1593','error','Deal not found: 1557',NULL,'2025-11-14 00:17:00'),
(16645,'notes','1594','error','Deal not found: 1557',NULL,'2025-11-14 00:17:00'),
(16646,'notes','1595','error','Deal not found: 1551',NULL,'2025-11-14 00:17:00'),
(16647,'notes','1597','error','Deal not found: 1551',NULL,'2025-11-14 00:17:00'),
(16648,'notes','1598','error','Deal not found: 1551',NULL,'2025-11-14 00:17:00'),
(16649,'notes','1599','error','Deal not found: 1555',NULL,'2025-11-14 00:17:00'),
(16650,'notes','1600','error','Deal not found: 1555',NULL,'2025-11-14 00:17:00'),
(16651,'notes','1601','error','Deal not found: 1555',NULL,'2025-11-14 00:17:00'),
(16652,'notes','1602','error','Deal not found: 1555',NULL,'2025-11-14 00:17:00'),
(16653,'notes','1603','error','Deal not found: 1555',NULL,'2025-11-14 00:17:00'),
(16654,'notes','1604','error','Deal not found: 1555',NULL,'2025-11-14 00:17:00'),
(16655,'notes','1605','error','Deal not found: 1553',NULL,'2025-11-14 00:17:00'),
(16656,'notes','1606','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16657,'notes','1607','error','Deal not found: 58',NULL,'2025-11-14 00:17:00'),
(16658,'notes','1608','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16659,'notes','1609','error','Deal not found: 56',NULL,'2025-11-14 00:17:00'),
(16660,'notes','1610','error','Deal not found: 1559',NULL,'2025-11-14 00:17:00'),
(16661,'notes','1611','error','Deal not found: 1563',NULL,'2025-11-14 00:17:00'),
(16662,'notes','1612','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16663,'notes','1613','error','Deal not found: 1563',NULL,'2025-11-14 00:17:00'),
(16664,'notes','1614','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16665,'notes','1618','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16666,'notes','1619','error','Deal not found: 1563',NULL,'2025-11-14 00:17:00'),
(16667,'notes','1620','error','Deal not found: 1559',NULL,'2025-11-14 00:17:00'),
(16668,'notes','1621','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16669,'notes','1622','error','Deal not found: 1965',NULL,'2025-11-14 00:17:00'),
(16670,'notes','1623','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16671,'notes','1624','error','Deal not found: 1572',NULL,'2025-11-14 00:17:00'),
(16672,'notes','1625','error','Deal not found: 1576',NULL,'2025-11-14 00:17:00'),
(16673,'notes','1626','error','Deal not found: 1577',NULL,'2025-11-14 00:17:00'),
(16674,'notes','1627','error','Deal not found: 1578',NULL,'2025-11-14 00:17:00'),
(16675,'notes','1628','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16676,'notes','1629','error','Deal not found: 1965',NULL,'2025-11-14 00:17:00'),
(16677,'notes','1630','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16678,'notes','1631','error','Deal not found: 4',NULL,'2025-11-14 00:17:00'),
(16679,'notes','1632','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16680,'notes','1633','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16681,'notes','1634','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16682,'notes','1635','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16683,'notes','1636','error','Deal not found: 1566',NULL,'2025-11-14 00:17:00'),
(16684,'notes','1637','error','Deal not found: 1582',NULL,'2025-11-14 00:17:00'),
(16685,'notes','1638','error','Deal not found: 1584',NULL,'2025-11-14 00:17:00'),
(16686,'notes','1639','error','Deal not found: 1582',NULL,'2025-11-14 00:17:00'),
(16687,'notes','1640','error','Deal not found: 1566',NULL,'2025-11-14 00:17:00'),
(16688,'notes','1641','error','Deal not found: 1582',NULL,'2025-11-14 00:17:00'),
(16689,'notes','1642','error','Deal not found: 1580',NULL,'2025-11-14 00:17:00'),
(16690,'notes','1643','error','Deal not found: 33',NULL,'2025-11-14 00:17:00'),
(16691,'notes','1644','error','Deal not found: 1582',NULL,'2025-11-14 00:17:00'),
(16692,'notes','1645','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16693,'notes','1646','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16694,'notes','1647','error','Deal not found: 1582',NULL,'2025-11-14 00:17:00'),
(16695,'notes','1648','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16696,'notes','1650','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16697,'notes','1651','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16698,'notes','1652','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16699,'notes','1653','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16700,'notes','1654','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16701,'notes','1655','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16702,'notes','1656','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16703,'notes','1657','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16704,'notes','1658','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16705,'notes','1659','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16706,'notes','1660','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16707,'notes','1661','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16708,'notes','1662','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16709,'notes','1663','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16710,'notes','1664','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16711,'notes','1665','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16712,'notes','1666','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16713,'notes','1667','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16714,'notes','1668','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16715,'notes','1669','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16716,'notes','1670','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16717,'notes','1671','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16718,'notes','1672','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16719,'notes','1673','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16720,'notes','1674','error','Deal not found: 1718',NULL,'2025-11-14 00:17:00'),
(16721,'notes','1675','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16722,'notes','1676','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16723,'notes','1677','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16724,'notes','1678','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16725,'notes','1679','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16726,'notes','1680','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16727,'notes','1681','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16728,'notes','1682','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16729,'notes','1683','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16730,'notes','1684','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16731,'notes','1685','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16732,'notes','1686','error','Deal not found: 1563',NULL,'2025-11-14 00:17:00'),
(16733,'notes','1687','error','Deal not found: 58',NULL,'2025-11-14 00:17:00'),
(16734,'notes','1688','error','Deal not found: 1563',NULL,'2025-11-14 00:17:00'),
(16735,'notes','1689','error','Deal not found: 1563',NULL,'2025-11-14 00:17:00'),
(16736,'notes','1690','error','Deal not found: 1582',NULL,'2025-11-14 00:17:00'),
(16737,'notes','1691','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16738,'notes','1692','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16739,'notes','1693','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16740,'notes','1694','error','Deal not found: 1595',NULL,'2025-11-14 00:17:00'),
(16741,'notes','1695','error','Deal not found: 1595',NULL,'2025-11-14 00:17:00'),
(16742,'notes','1696','error','Deal not found: 1595',NULL,'2025-11-14 00:17:00'),
(16743,'notes','1697','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16744,'notes','1698','error','Deal not found: 1596',NULL,'2025-11-14 00:17:00'),
(16745,'notes','1699','error','Deal not found: 1597',NULL,'2025-11-14 00:17:00'),
(16746,'notes','1700','error','Deal not found: 1594',NULL,'2025-11-14 00:17:00'),
(16747,'notes','1701','error','Deal not found: 1598',NULL,'2025-11-14 00:17:00'),
(16748,'notes','1702','error','Deal not found: 1600',NULL,'2025-11-14 00:17:00'),
(16749,'notes','1703','error','Deal not found: 1580',NULL,'2025-11-14 00:17:00'),
(16750,'notes','1704','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16751,'notes','1705','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16752,'notes','1706','error','Deal not found: 1597',NULL,'2025-11-14 00:17:00'),
(16753,'notes','1707','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16754,'notes','1708','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16755,'notes','1709','error','Deal not found: 1605',NULL,'2025-11-14 00:17:00'),
(16756,'notes','1710','error','Deal not found: 1577',NULL,'2025-11-14 00:17:00'),
(16757,'notes','1711','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16758,'notes','1712','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16759,'notes','1713','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16760,'notes','1714','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16761,'notes','1715','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16762,'notes','1716','error','Deal not found: 1604',NULL,'2025-11-14 00:17:00'),
(16763,'notes','1717','error','Deal not found: 1604',NULL,'2025-11-14 00:17:00'),
(16764,'notes','1718','error','Deal not found: 1597',NULL,'2025-11-14 00:17:00'),
(16765,'notes','1719','error','Deal not found: 1605',NULL,'2025-11-14 00:17:00'),
(16766,'notes','1720','error','Deal not found: 1597',NULL,'2025-11-14 00:17:00'),
(16767,'notes','1721','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16768,'notes','1722','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16769,'notes','1723','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16770,'notes','1724','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16771,'notes','1725','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16772,'notes','1726','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16773,'notes','1727','error','Deal not found: 1608',NULL,'2025-11-14 00:17:00'),
(16774,'notes','1728','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16775,'notes','1729','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16776,'notes','1730','error','Deal not found: 1608',NULL,'2025-11-14 00:17:00'),
(16777,'notes','1731','error','Deal not found: 1611',NULL,'2025-11-14 00:17:00'),
(16778,'notes','1732','error','Deal not found: 1611',NULL,'2025-11-14 00:17:00'),
(16779,'notes','1733','error','Deal not found: 1611',NULL,'2025-11-14 00:17:00'),
(16780,'notes','1734','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16781,'notes','1735','error','Deal not found: 1604',NULL,'2025-11-14 00:17:00'),
(16782,'notes','1736','error','Deal not found: 1584',NULL,'2025-11-14 00:17:00'),
(16783,'notes','1737','error','Deal not found: 1613',NULL,'2025-11-14 00:17:00'),
(16784,'notes','1738','error','Deal not found: 1582',NULL,'2025-11-14 00:17:00'),
(16785,'notes','1739','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16786,'notes','1740','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16787,'notes','1741','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16788,'notes','1742','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16789,'notes','1743','error','Deal not found: 1584',NULL,'2025-11-14 00:17:00'),
(16790,'notes','1744','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16791,'notes','1745','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16792,'notes','1746','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16793,'notes','1747','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16794,'notes','1748','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16795,'notes','1749','error','Deal not found: 1577',NULL,'2025-11-14 00:17:00'),
(16796,'notes','1750','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16797,'notes','1751','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16798,'notes','1752','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16799,'notes','1753','error','Deal not found: 1613',NULL,'2025-11-14 00:17:00'),
(16800,'notes','1754','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16801,'notes','1755','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16802,'notes','1756','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16803,'notes','1757','error','Deal not found: 1616',NULL,'2025-11-14 00:17:00'),
(16804,'notes','1758','error','Deal not found: 1616',NULL,'2025-11-14 00:17:00'),
(16805,'notes','1759','error','Deal not found: 1613',NULL,'2025-11-14 00:17:00'),
(16806,'notes','1760','error','Deal not found: 1613',NULL,'2025-11-14 00:17:00'),
(16807,'notes','1761','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16808,'notes','1762','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16809,'notes','1763','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16810,'notes','1764','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16811,'notes','1766','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16812,'notes','1767','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16813,'notes','1768','error','Deal not found: 1589',NULL,'2025-11-14 00:17:00'),
(16814,'notes','1769','error','Deal not found: 1622',NULL,'2025-11-14 00:17:00'),
(16815,'notes','1770','error','Deal not found: 1960',NULL,'2025-11-14 00:17:00'),
(16816,'notes','1772','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16817,'notes','1773','error','Deal not found: 1623',NULL,'2025-11-14 00:17:00'),
(16818,'notes','1774','error','Deal not found: 1625',NULL,'2025-11-14 00:17:00'),
(16819,'notes','1775','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16820,'notes','1776','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16821,'notes','1777','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16822,'notes','1778','error','Deal not found: 1626',NULL,'2025-11-14 00:17:00'),
(16823,'notes','1779','error','Deal not found: 1627',NULL,'2025-11-14 00:17:00'),
(16824,'notes','1780','error','Deal not found: 1627',NULL,'2025-11-14 00:17:00'),
(16825,'notes','1781','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16826,'notes','1782','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16827,'notes','1783','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16828,'notes','1784','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16829,'notes','1785','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16830,'notes','1786','error','Deal not found: 1628',NULL,'2025-11-14 00:17:00'),
(16831,'notes','1787','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16832,'notes','1788','error','Deal not found: 1594',NULL,'2025-11-14 00:17:00'),
(16833,'notes','1789','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16834,'notes','1790','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16835,'notes','1791','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16836,'notes','1792','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16837,'notes','1793','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16838,'notes','1794','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16839,'notes','1795','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16840,'notes','1796','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16841,'notes','1797','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16842,'notes','1798','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16843,'notes','1799','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16844,'notes','1800','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16845,'notes','1801','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16846,'notes','1802','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16847,'notes','1803','error','Deal not found: 1629',NULL,'2025-11-14 00:17:00'),
(16848,'notes','1804','error','Deal not found: 1760',NULL,'2025-11-14 00:17:00'),
(16849,'notes','1805','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16850,'notes','1806','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16851,'notes','1807','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16852,'notes','1808','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16853,'notes','1809','error','Deal not found: 1629',NULL,'2025-11-14 00:17:00'),
(16854,'notes','1810','error','Deal not found: 1632',NULL,'2025-11-14 00:17:00'),
(16855,'notes','1811','error','Deal not found: 1574',NULL,'2025-11-14 00:17:00'),
(16856,'notes','1812','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16857,'notes','1816','error','Deal not found: 1634',NULL,'2025-11-14 00:17:00'),
(16858,'notes','1817','error','Deal not found: 1634',NULL,'2025-11-14 00:17:00'),
(16859,'notes','1818','error','Deal not found: 1635',NULL,'2025-11-14 00:17:00'),
(16860,'notes','1819','error','Deal not found: 1634',NULL,'2025-11-14 00:17:00'),
(16861,'notes','1820','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16862,'notes','1821','error','Deal not found: 1641',NULL,'2025-11-14 00:17:00'),
(16863,'notes','1822','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16864,'notes','1823','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16865,'notes','1824','error','Deal not found: 1635',NULL,'2025-11-14 00:17:00'),
(16866,'notes','1825','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16867,'notes','1826','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16868,'notes','1827','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16869,'notes','1828','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16870,'notes','1829','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16871,'notes','1830','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16872,'notes','1831','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16873,'notes','1832','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16874,'notes','1833','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16875,'notes','1834','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16876,'notes','1835','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16877,'notes','1836','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16878,'notes','1837','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16879,'notes','1838','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16880,'notes','1839','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16881,'notes','1840','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16882,'notes','1841','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16883,'notes','1842','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16884,'notes','1843','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16885,'notes','1844','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16886,'notes','1845','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16887,'notes','1846','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16888,'notes','1847','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16889,'notes','1848','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16890,'notes','1849','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16891,'notes','1850','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16892,'notes','1851','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16893,'notes','1852','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16894,'notes','1853','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16895,'notes','1854','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16896,'notes','1855','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16897,'notes','1856','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16898,'notes','1857','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16899,'notes','1858','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16900,'notes','1859','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16901,'notes','1860','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16902,'notes','1861','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16903,'notes','1862','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16904,'notes','1863','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16905,'notes','1864','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16906,'notes','1865','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16907,'notes','1866','error','Deal not found: 1641',NULL,'2025-11-14 00:17:00'),
(16908,'notes','1867','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16909,'notes','1868','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16910,'notes','1869','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16911,'notes','1870','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16912,'notes','1871','error','Deal not found: 1873',NULL,'2025-11-14 00:17:00'),
(16913,'notes','1872','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16914,'notes','1873','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16915,'notes','1874','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16916,'notes','1875','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16917,'notes','1876','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16918,'notes','1877','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16919,'notes','1878','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16920,'notes','1879','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16921,'notes','1880','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16922,'notes','1881','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16923,'notes','1882','error','Deal not found: 1725',NULL,'2025-11-14 00:17:00'),
(16924,'notes','1883','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16925,'notes','1884','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16926,'notes','1885','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16927,'notes','1886','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16928,'notes','1887','error','Deal not found: 1635',NULL,'2025-11-14 00:17:00'),
(16929,'notes','1888','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16930,'notes','1889','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16931,'notes','1890','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16932,'notes','1891','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16933,'notes','1892','error','Deal not found: 1623',NULL,'2025-11-14 00:17:00'),
(16934,'notes','1893','error','Deal not found: 1640',NULL,'2025-11-14 00:17:00'),
(16935,'notes','1894','error','Deal not found: 1591',NULL,'2025-11-14 00:17:00'),
(16936,'notes','1895','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16937,'notes','1896','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16938,'notes','1897','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16939,'notes','1898','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16940,'notes','1899','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16941,'notes','1900','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16942,'notes','1901','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16943,'notes','1902','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16944,'notes','1903','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16945,'notes','1904','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16946,'notes','1905','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16947,'notes','1906','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16948,'notes','1907','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16949,'notes','1908','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16950,'notes','1909','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16951,'notes','1910','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16952,'notes','1911','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16953,'notes','1912','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16954,'notes','1913','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16955,'notes','1914','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16956,'notes','1915','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16957,'notes','1916','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16958,'notes','1917','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16959,'notes','1918','error','Deal not found: 1643',NULL,'2025-11-14 00:17:00'),
(16960,'notes','1919','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16961,'notes','1920','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16962,'notes','1921','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16963,'notes','1922','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16964,'notes','1923','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16965,'notes','1924','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16966,'notes','1925','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16967,'notes','1926','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16968,'notes','1927','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16969,'notes','1928','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16970,'notes','1929','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16971,'notes','1930','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16972,'notes','1931','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16973,'notes','1932','error','Deal not found: 1597',NULL,'2025-11-14 00:17:00'),
(16974,'notes','1933','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16975,'notes','1934','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16976,'notes','1935','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16977,'notes','1936','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16978,'notes','1937','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16979,'notes','1938','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16980,'notes','1939','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16981,'notes','1940','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16982,'notes','1941','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16983,'notes','1942','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16984,'notes','1943','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16985,'notes','1944','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16986,'notes','1945','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16987,'notes','1946','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16988,'notes','1947','error','Deal not found: 1648',NULL,'2025-11-14 00:17:00'),
(16989,'notes','1948','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16990,'notes','1949','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16991,'notes','1950','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16992,'notes','1951','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16993,'notes','1952','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16994,'notes','1953','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16995,'notes','1954','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16996,'notes','1955','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16997,'notes','1956','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16998,'notes','1957','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16999,'notes','1958','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17000,'notes','1959','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17001,'notes','1960','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17002,'notes','1961','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17003,'notes','1962','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17004,'notes','1963','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17005,'notes','1964','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17006,'notes','1965','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17007,'notes','1966','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17008,'notes','1967','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17009,'notes','1968','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17010,'notes','1969','error','Deal not found: 1577',NULL,'2025-11-14 00:17:00'),
(17011,'notes','1970','error','Deal not found: 1638',NULL,'2025-11-14 00:17:00'),
(17012,'notes','1971','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17013,'notes','1972','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17014,'notes','1973','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17015,'notes','1974','error','Deal not found: 1650',NULL,'2025-11-14 00:17:00'),
(17016,'notes','1975','error','Deal not found: 1651',NULL,'2025-11-14 00:17:00'),
(17017,'notes','1976','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17018,'notes','1977','error','Deal not found: 1653',NULL,'2025-11-14 00:17:00'),
(17019,'notes','1978','error','Deal not found: 1654',NULL,'2025-11-14 00:17:00'),
(17020,'notes','1979','error','Deal not found: 1655',NULL,'2025-11-14 00:17:00'),
(17021,'notes','1980','error','Deal not found: 1656',NULL,'2025-11-14 00:17:00'),
(17022,'notes','1981','error','Deal not found: 1657',NULL,'2025-11-14 00:17:00'),
(17023,'notes','1982','error','Deal not found: 1658',NULL,'2025-11-14 00:17:00'),
(17024,'notes','1983','error','Deal not found: 1658',NULL,'2025-11-14 00:17:00'),
(17025,'notes','1984','error','Deal not found: 1659',NULL,'2025-11-14 00:17:00'),
(17026,'notes','1985','error','Deal not found: 1660',NULL,'2025-11-14 00:17:00'),
(17027,'notes','1986','error','Deal not found: 1661',NULL,'2025-11-14 00:17:00'),
(17028,'notes','1987','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17029,'notes','1988','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17030,'notes','1989','error','Deal not found: 1664',NULL,'2025-11-14 00:17:00'),
(17031,'notes','1990','error','Deal not found: 1665',NULL,'2025-11-14 00:17:00'),
(17032,'notes','1991','error','Deal not found: 1666',NULL,'2025-11-14 00:17:00'),
(17033,'notes','1992','error','Deal not found: 1667',NULL,'2025-11-14 00:17:00'),
(17034,'notes','1993','error','Deal not found: 1668',NULL,'2025-11-14 00:17:00'),
(17035,'notes','1994','error','Deal not found: 1669',NULL,'2025-11-14 00:17:00'),
(17036,'notes','1995','error','Deal not found: 1670',NULL,'2025-11-14 00:17:00'),
(17037,'notes','1996','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17038,'notes','1997','error','Deal not found: 1672',NULL,'2025-11-14 00:17:00'),
(17039,'notes','1998','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17040,'notes','1999','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17041,'notes','2000','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17042,'notes','2001','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17043,'notes','2002','error','Deal not found: 1676',NULL,'2025-11-14 00:17:00'),
(17044,'notes','2003','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17045,'notes','2004','error','Deal not found: 1678',NULL,'2025-11-14 00:17:00'),
(17046,'notes','2005','error','Deal not found: 1679',NULL,'2025-11-14 00:17:00'),
(17047,'notes','2006','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17048,'notes','2007','error','Deal not found: 1681',NULL,'2025-11-14 00:17:00'),
(17049,'notes','2008','error','Deal not found: 1682',NULL,'2025-11-14 00:17:00'),
(17050,'notes','2009','error','Deal not found: 1683',NULL,'2025-11-14 00:17:00'),
(17051,'notes','2010','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17052,'notes','2011','error','Deal not found: 1685',NULL,'2025-11-14 00:17:00'),
(17053,'notes','2012','error','Deal not found: 1686',NULL,'2025-11-14 00:17:00'),
(17054,'notes','2013','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17055,'notes','2014','error','Deal not found: 1688',NULL,'2025-11-14 00:17:00'),
(17056,'notes','2015','error','Deal not found: 1689',NULL,'2025-11-14 00:17:00'),
(17057,'notes','2016','error','Deal not found: 1690',NULL,'2025-11-14 00:17:00'),
(17058,'notes','2017','error','Deal not found: 1691',NULL,'2025-11-14 00:17:00'),
(17059,'notes','2018','error','Deal not found: 1692',NULL,'2025-11-14 00:17:00'),
(17060,'notes','2019','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17061,'notes','2020','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17062,'notes','2021','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17063,'notes','2022','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17064,'notes','2023','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17065,'notes','2024','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17066,'notes','2025','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17067,'notes','2026','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17068,'notes','2028','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17069,'notes','2029','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17070,'notes','2030','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17071,'notes','2031','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17072,'notes','2032','error','Deal not found: 1734',NULL,'2025-11-14 00:17:00'),
(17073,'notes','2033','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17074,'notes','2034','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17075,'notes','2035','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17076,'notes','2036','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17077,'notes','2037','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17078,'notes','2038','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17079,'notes','2039','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17080,'notes','2040','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17081,'notes','2041','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17082,'notes','2042','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17083,'notes','2043','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17084,'notes','2044','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17085,'notes','2045','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17086,'notes','2046','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17087,'notes','2047','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17088,'notes','2048','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17089,'notes','2049','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17090,'notes','2050','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17091,'notes','2051','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17092,'notes','2052','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17093,'notes','2053','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17094,'notes','2054','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17095,'notes','2055','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17096,'notes','2056','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17097,'notes','2057','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17098,'notes','2058','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17099,'notes','2059','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17100,'notes','2060','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17101,'notes','2061','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17102,'notes','2062','error','Deal not found: 1695',NULL,'2025-11-14 00:17:00'),
(17103,'notes','2063','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17104,'notes','2064','error','Deal not found: 1635',NULL,'2025-11-14 00:17:00'),
(17105,'notes','2065','error','Deal not found: 1696',NULL,'2025-11-14 00:17:00'),
(17106,'notes','2066','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17107,'notes','2067','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17108,'notes','2068','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17109,'notes','2069','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17110,'notes','2070','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17111,'notes','2071','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17112,'notes','2072','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17113,'notes','2073','error','Deal not found: 1697',NULL,'2025-11-14 00:17:00'),
(17114,'notes','2074','error','Deal not found: 1698',NULL,'2025-11-14 00:17:00'),
(17115,'notes','2075','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17116,'notes','2076','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17117,'notes','2077','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17118,'notes','2078','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17119,'notes','2079','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17120,'notes','2080','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17121,'notes','2081','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17122,'notes','2082','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17123,'notes','2083','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17124,'notes','2084','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17125,'notes','2085','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17126,'notes','2086','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17127,'notes','2087','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17128,'notes','2088','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17129,'notes','2089','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17130,'notes','2090','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17131,'notes','2091','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17132,'notes','2092','error','Deal not found: 1665',NULL,'2025-11-14 00:17:00'),
(17133,'notes','2093','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17134,'notes','2094','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17135,'notes','2095','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17136,'notes','2096','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17137,'notes','2097','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17138,'notes','2098','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17139,'notes','2099','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17140,'notes','2100','error','Deal not found: 1686',NULL,'2025-11-14 00:17:00'),
(17141,'notes','2101','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17142,'notes','2102','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17143,'notes','2103','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17144,'notes','2104','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17145,'notes','2105','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17146,'notes','2106','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17147,'notes','2107','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17148,'notes','2108','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17149,'notes','2109','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17150,'notes','2110','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17151,'notes','2111','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17152,'notes','2112','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17153,'notes','2113','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17154,'notes','2114','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17155,'notes','2115','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17156,'notes','2116','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17157,'notes','2117','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17158,'notes','2118','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17159,'notes','2119','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17160,'notes','2120','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17161,'notes','2121','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17162,'notes','2122','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17163,'notes','2123','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17164,'notes','2124','error','Deal not found: 1733',NULL,'2025-11-14 00:17:00'),
(17165,'notes','2125','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17166,'notes','2126','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17167,'notes','2127','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17168,'notes','2128','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17169,'notes','2129','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17170,'notes','2130','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17171,'notes','2131','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17172,'notes','2132','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17173,'notes','2133','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17174,'notes','2134','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17175,'notes','2135','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17176,'notes','2136','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17177,'notes','2137','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17178,'notes','2138','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17179,'notes','2139','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17180,'notes','2140','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17181,'notes','2141','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17182,'notes','2142','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17183,'notes','2143','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17184,'notes','2144','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17185,'notes','2145','error','Deal not found: 1755',NULL,'2025-11-14 00:17:00'),
(17186,'notes','2146','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17187,'notes','2147','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17188,'notes','2148','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17189,'notes','2149','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17190,'notes','2150','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17191,'notes','2151','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17192,'notes','2152','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17193,'notes','2153','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17194,'notes','2154','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17195,'notes','2155','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17196,'notes','2156','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17197,'notes','2157','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17198,'notes','2158','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17199,'notes','2159','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17200,'notes','2160','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17201,'notes','2161','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17202,'notes','2162','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17203,'notes','2163','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17204,'notes','2164','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17205,'notes','2165','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17206,'notes','2166','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17207,'notes','2167','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17208,'notes','2168','error','Deal not found: 1708',NULL,'2025-11-14 00:17:00'),
(17209,'notes','2169','error','Deal not found: 1708',NULL,'2025-11-14 00:17:00'),
(17210,'notes','2170','error','Deal not found: 1708',NULL,'2025-11-14 00:17:00'),
(17211,'notes','2171','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17212,'notes','2172','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17213,'notes','2173','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17214,'notes','2174','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17215,'notes','2175','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17216,'notes','2176','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17217,'notes','2177','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17218,'notes','2178','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17219,'notes','2179','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17220,'notes','2180','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17221,'notes','2181','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17222,'notes','2182','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17223,'notes','2183','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17224,'notes','2184','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17225,'notes','2185','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17226,'notes','2186','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17227,'notes','2187','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17228,'notes','2188','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17229,'notes','2189','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17230,'notes','2190','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17231,'notes','2191','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17232,'notes','2192','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17233,'notes','2193','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17234,'notes','2195','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17235,'notes','2196','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17236,'notes','2197','error','Deal not found: 1664',NULL,'2025-11-14 00:17:00'),
(17237,'notes','2198','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17238,'notes','2199','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17239,'notes','2200','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17240,'notes','2201','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17241,'notes','2202','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17242,'notes','2203','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17243,'notes','2204','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17244,'notes','2205','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17245,'notes','2206','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17246,'notes','2207','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17247,'notes','2208','error','Deal not found: 1665',NULL,'2025-11-14 00:17:00'),
(17248,'notes','2209','error','Deal not found: 1665',NULL,'2025-11-14 00:17:00'),
(17249,'notes','2210','error','Deal not found: 1597',NULL,'2025-11-14 00:17:00'),
(17250,'notes','2211','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17251,'notes','2212','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17252,'notes','2213','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17253,'notes','2214','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17254,'notes','2215','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17255,'notes','2216','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17256,'notes','2217','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17257,'notes','2218','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17258,'notes','2219','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17259,'notes','2220','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17260,'notes','2221','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17261,'notes','2222','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17262,'notes','2223','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17263,'notes','2224','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17264,'notes','2225','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17265,'notes','2226','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17266,'notes','2227','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17267,'notes','2228','error','Deal not found: 1713',NULL,'2025-11-14 00:17:00'),
(17268,'notes','2229','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17269,'notes','2230','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17270,'notes','2231','error','Deal not found: 1713',NULL,'2025-11-14 00:17:00'),
(17271,'notes','2232','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17272,'notes','2233','error','Deal not found: 1597',NULL,'2025-11-14 00:17:00'),
(17273,'notes','2234','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17274,'notes','2235','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17275,'notes','2236','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17276,'notes','2237','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17277,'notes','2238','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17278,'notes','2239','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17279,'notes','2240','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17280,'notes','2241','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17281,'notes','2242','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17282,'notes','2243','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17283,'notes','2244','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17284,'notes','2245','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17285,'notes','2246','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17286,'notes','2247','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17287,'notes','2248','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17288,'notes','2249','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17289,'notes','2250','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17290,'notes','2251','error','Deal not found: 1714',NULL,'2025-11-14 00:17:00'),
(17291,'notes','2252','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17292,'notes','2253','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17293,'notes','2254','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17294,'notes','2255','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17295,'notes','2256','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17296,'notes','2257','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17297,'notes','2258','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17298,'notes','2259','error','Deal not found: 1617',NULL,'2025-11-14 00:17:00'),
(17299,'notes','2260','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17300,'notes','2261','error','Deal not found: 1608',NULL,'2025-11-14 00:17:00'),
(17301,'notes','2262','error','Deal not found: 1693',NULL,'2025-11-14 00:17:00'),
(17302,'notes','2263','error','Deal not found: 1632',NULL,'2025-11-14 00:17:00'),
(17303,'notes','2264','error','Deal not found: 1582',NULL,'2025-11-14 00:17:00'),
(17304,'notes','2265','error','Deal not found: 6',NULL,'2025-11-14 00:17:00'),
(17305,'notes','2266','error','Deal not found: 1577',NULL,'2025-11-14 00:17:00'),
(17306,'notes','2267','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17307,'notes','2268','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17308,'notes','2269','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17309,'notes','2270','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17310,'notes','2271','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17311,'notes','2272','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17312,'notes','2273','error','Deal not found: 1620',NULL,'2025-11-14 00:17:00'),
(17313,'notes','2274','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17314,'notes','2275','error','Deal not found: 1557',NULL,'2025-11-14 00:17:00'),
(17315,'notes','2276','error','Deal not found: 1730',NULL,'2025-11-14 00:17:00'),
(17316,'notes','2277','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17317,'notes','2278','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17318,'notes','2279','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17319,'notes','2280','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17320,'notes','2281','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17321,'notes','2282','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17322,'notes','2283','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17323,'notes','2284','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17324,'notes','2285','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17325,'notes','2286','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17326,'notes','2287','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17327,'notes','2288','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17328,'notes','2290','error','Deal not found: 1744',NULL,'2025-11-14 00:17:00'),
(17329,'notes','2291','error','Deal not found: 1745',NULL,'2025-11-14 00:17:00'),
(17330,'notes','2292','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17331,'notes','2293','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17332,'notes','2294','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17333,'notes','2295','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17334,'notes','2296','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17335,'notes','2297','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17336,'notes','2298','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17337,'notes','2299','error','Deal not found: 1733',NULL,'2025-11-14 00:17:00'),
(17338,'notes','2300','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17339,'notes','2301','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17340,'notes','2302','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17341,'notes','2303','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17342,'notes','2304','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17343,'notes','2305','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17344,'notes','2306','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17345,'notes','2307','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17346,'notes','2308','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17347,'notes','2309','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17348,'notes','2310','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17349,'notes','2311','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17350,'notes','2312','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17351,'notes','2313','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17352,'notes','2314','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17353,'notes','2315','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17354,'notes','2316','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17355,'notes','2317','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17356,'notes','2318','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17357,'notes','2319','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17358,'notes','2320','error','Deal not found: 1714',NULL,'2025-11-14 00:17:00'),
(17359,'notes','2321','error','Deal not found: 1763',NULL,'2025-11-14 00:17:00'),
(17360,'notes','2322','error','Deal not found: 1714',NULL,'2025-11-14 00:17:00'),
(17361,'notes','2323','error','Deal not found: 1622',NULL,'2025-11-14 00:17:00'),
(17362,'notes','2324','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17363,'notes','2325','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17364,'notes','2326','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17365,'notes','2327','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17366,'notes','2328','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17367,'notes','2329','error','Deal not found: 1765',NULL,'2025-11-14 00:17:00'),
(17368,'notes','2330','error','Deal not found: 1766',NULL,'2025-11-14 00:17:00'),
(17369,'notes','2331','error','Deal not found: 1766',NULL,'2025-11-14 00:17:00'),
(17370,'notes','2332','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17371,'notes','2333','error','Deal not found: 1767',NULL,'2025-11-14 00:17:00'),
(17372,'notes','2334','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17373,'notes','2335','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17374,'notes','2337','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17375,'notes','2338','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17376,'notes','2339','error','Deal not found: 1771',NULL,'2025-11-14 00:17:00'),
(17377,'notes','2340','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17378,'notes','2341','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17379,'notes','2342','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17380,'notes','2343','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17381,'notes','2344','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17382,'notes','2345','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17383,'notes','2346','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17384,'notes','2347','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17385,'notes','2348','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17386,'notes','2349','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17387,'notes','2350','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17388,'notes','2351','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17389,'notes','2352','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17390,'notes','2353','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17391,'notes','2354','error','Deal not found: 1765',NULL,'2025-11-14 00:17:00'),
(17392,'notes','2355','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17393,'notes','2356','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17394,'notes','2357','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17395,'notes','2358','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17396,'notes','2359','error','Deal not found: 1755',NULL,'2025-11-14 00:17:00'),
(17397,'notes','2360','error','Deal not found: 1755',NULL,'2025-11-14 00:17:00'),
(17398,'notes','2361','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17399,'notes','2362','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17400,'notes','2363','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17401,'notes','2364','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17402,'notes','2365','error','Deal not found: 1751',NULL,'2025-11-14 00:17:00'),
(17403,'notes','2366','error','Deal not found: 1751',NULL,'2025-11-14 00:17:00'),
(17404,'notes','2367','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17405,'notes','2368','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17406,'notes','2369','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17407,'notes','2370','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17408,'notes','2371','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17409,'notes','2372','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17410,'notes','2373','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17411,'notes','2374','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17412,'notes','2375','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17413,'notes','2376','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17414,'notes','2377','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17415,'notes','2378','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17416,'notes','2379','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17417,'notes','2380','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17418,'notes','2381','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17419,'notes','2382','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17420,'notes','2383','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17421,'notes','2385','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17422,'notes','2386','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17423,'notes','2387','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17424,'notes','2388','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17425,'notes','2389','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17426,'notes','2390','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17427,'notes','2391','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17428,'notes','2392','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17429,'notes','2393','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17430,'notes','2394','error','Deal not found: 1775',NULL,'2025-11-14 00:17:00'),
(17431,'notes','2395','error','Deal not found: 1773',NULL,'2025-11-14 00:17:00'),
(17432,'notes','2396','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17433,'notes','2397','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17434,'notes','2398','error','Deal not found: 1708',NULL,'2025-11-14 00:17:00'),
(17435,'notes','2399','error','Deal not found: 1706',NULL,'2025-11-14 00:17:00'),
(17436,'notes','2400','error','Deal not found: 1665',NULL,'2025-11-14 00:17:00'),
(17437,'notes','2401','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17438,'notes','2402','error','Deal not found: 1781',NULL,'2025-11-14 00:17:00'),
(17439,'notes','2403','error','Deal not found: 1765',NULL,'2025-11-14 00:17:00'),
(17440,'notes','2404','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17441,'notes','2405','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17442,'notes','2406','error','Deal not found: 1784',NULL,'2025-11-14 00:17:00'),
(17443,'notes','2407','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17444,'notes','2408','error','Deal not found: 1622',NULL,'2025-11-14 00:17:00'),
(17445,'notes','2409','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17446,'notes','2410','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17447,'notes','2411','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17448,'notes','2412','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17449,'notes','2413','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17450,'notes','2414','error','Deal not found: 1780',NULL,'2025-11-14 00:17:00'),
(17451,'notes','2415','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17452,'notes','2416','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17453,'notes','2417','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17454,'notes','2418','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17455,'notes','2419','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17456,'notes','2420','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17457,'notes','2423','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17458,'notes','2424','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17459,'notes','2425','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17460,'notes','2426','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17461,'notes','2427','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17462,'notes','2428','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17463,'notes','2429','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17464,'notes','2430','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17465,'notes','2431','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17466,'notes','2432','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17467,'notes','2433','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17468,'notes','2434','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17469,'notes','2435','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17470,'notes','2436','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17471,'notes','2437','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17472,'notes','2438','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17473,'notes','2440','error','Deal not found: 1779',NULL,'2025-11-14 00:17:00'),
(17474,'notes','2441','error','Deal not found: 1776',NULL,'2025-11-14 00:17:00'),
(17475,'notes','2442','error','Deal not found: 1780',NULL,'2025-11-14 00:17:00'),
(17476,'notes','2443','error','Deal not found: 1792',NULL,'2025-11-14 00:17:00'),
(17477,'notes','2444','error','Deal not found: 1766',NULL,'2025-11-14 00:17:00'),
(17478,'notes','2445','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17479,'notes','2446','error','Deal not found: 1753',NULL,'2025-11-14 00:17:00'),
(17480,'notes','2447','error','Deal not found: 1733',NULL,'2025-11-14 00:17:00'),
(17481,'notes','2448','error','Deal not found: 1703',NULL,'2025-11-14 00:17:00'),
(17482,'notes','2449','error','Deal not found: 1647',NULL,'2025-11-14 00:17:00'),
(17483,'notes','2450','error','Deal not found: 1750',NULL,'2025-11-14 00:17:00'),
(17484,'notes','2451','error','Deal not found: 1778',NULL,'2025-11-14 00:17:00'),
(17485,'notes','2452','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17486,'notes','2453','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17487,'notes','2454','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17488,'notes','2455','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17489,'notes','2456','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17490,'notes','2457','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17491,'notes','2458','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17492,'notes','2459','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17493,'notes','2460','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17494,'notes','2463','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17495,'notes','2464','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17496,'notes','2465','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17497,'notes','2466','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17498,'notes','2467','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17499,'notes','2468','error','Deal not found: 1784',NULL,'2025-11-14 00:17:00'),
(17500,'notes','2469','error','Deal not found: 1798',NULL,'2025-11-14 00:17:00'),
(17501,'notes','2470','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17502,'notes','2471','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17503,'notes','2473','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17504,'notes','2474','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17505,'notes','2475','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17506,'notes','2476','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17507,'notes','2477','error','Deal not found: 1775',NULL,'2025-11-14 00:17:00'),
(17508,'notes','2478','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17509,'notes','2479','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17510,'notes','2480','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17511,'notes','2481','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17512,'notes','2482','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17513,'notes','2483','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17514,'notes','2484','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17515,'notes','2485','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17516,'notes','2486','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17517,'notes','2487','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17518,'notes','2488','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17519,'notes','2489','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17520,'notes','2490','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17521,'notes','2491','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17522,'notes','2492','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17523,'notes','2493','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17524,'notes','2494','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17525,'notes','2495','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17526,'notes','2496','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17527,'notes','2497','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17528,'notes','2498','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17529,'notes','2499','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17530,'notes','2500','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17531,'notes','2501','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17532,'notes','2502','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17533,'notes','2503','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17534,'notes','2504','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17535,'notes','2505','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17536,'notes','2506','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17537,'notes','2507','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17538,'notes','2508','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17539,'notes','2509','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17540,'notes','2510','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17541,'notes','2511','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17542,'notes','2512','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17543,'notes','2513','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17544,'notes','2514','error','Deal not found: 1776',NULL,'2025-11-14 00:17:00'),
(17545,'notes','2515','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17546,'notes','2516','error','Deal not found: 1642',NULL,'2025-11-14 00:17:00'),
(17547,'notes','2517','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17548,'notes','2518','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17549,'notes','2519','error','Deal not found: 1630',NULL,'2025-11-14 00:17:00'),
(17550,'notes','2520','error','Deal not found: 1713',NULL,'2025-11-14 00:17:00'),
(17551,'notes','2521','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17552,'notes','2522','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17553,'notes','2523','error','Deal not found: 1614',NULL,'2025-11-14 00:17:00'),
(17554,'notes','2524','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17555,'notes','2525','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17556,'notes','2526','error','Deal not found: 1595',NULL,'2025-11-14 00:17:00'),
(17557,'notes','2527','error','Deal not found: 1572',NULL,'2025-11-14 00:17:00'),
(17558,'notes','2528','error','Deal not found: 1584',NULL,'2025-11-14 00:17:00'),
(17559,'notes','2529','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17560,'notes','2530','error','Deal not found: 1664',NULL,'2025-11-14 00:17:00'),
(17561,'notes','2531','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17562,'notes','2532','error','Deal not found: 24',NULL,'2025-11-14 00:17:00'),
(17563,'notes','2533','error','Deal not found: 1596',NULL,'2025-11-14 00:17:00'),
(17564,'notes','2534','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17565,'notes','2535','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17566,'notes','2536','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17567,'notes','2537','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17568,'notes','2538','error','Deal not found: 1818',NULL,'2025-11-14 00:17:00'),
(17569,'notes','2539','error','Deal not found: 1818',NULL,'2025-11-14 00:17:00'),
(17570,'notes','2540','error','Deal not found: 1818',NULL,'2025-11-14 00:17:00'),
(17571,'notes','2541','error','Deal not found: 1818',NULL,'2025-11-14 00:17:00'),
(17572,'notes','2542','error','Deal not found: 1818',NULL,'2025-11-14 00:17:00'),
(17573,'notes','2543','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17574,'notes','2544','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17575,'notes','2545','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17576,'notes','2546','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17577,'notes','2547','error','Deal not found: 1810',NULL,'2025-11-14 00:17:00'),
(17578,'notes','2548','error','Deal not found: 1811',NULL,'2025-11-14 00:17:00'),
(17579,'notes','2549','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17580,'notes','2550','error','Deal not found: 1812',NULL,'2025-11-14 00:17:00'),
(17581,'notes','2551','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17582,'notes','2552','error','Deal not found: 1711',NULL,'2025-11-14 00:17:00'),
(17583,'notes','2553','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17584,'notes','2554','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17585,'notes','2555','error','Deal not found: 1638',NULL,'2025-11-14 00:17:00'),
(17586,'notes','2556','error','Deal not found: 1622',NULL,'2025-11-14 00:17:00'),
(17587,'notes','2557','error','Deal not found: 1600',NULL,'2025-11-14 00:17:00'),
(17588,'notes','2558','error','Deal not found: 1597',NULL,'2025-11-14 00:17:00'),
(17589,'notes','2559','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17590,'notes','2560','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17591,'notes','2561','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17592,'notes','2562','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17593,'notes','2563','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17594,'notes','2564','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17595,'notes','2565','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17596,'notes','2566','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17597,'notes','2567','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17598,'notes','2568','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17599,'notes','2569','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17600,'notes','2570','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17601,'notes','2571','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17602,'notes','2572','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17603,'notes','2573','error','Deal not found: 1820',NULL,'2025-11-14 00:17:00'),
(17604,'notes','2574','error','Deal not found: 1648',NULL,'2025-11-14 00:17:00'),
(17605,'notes','2576','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17606,'notes','2577','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17607,'notes','2578','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17608,'notes','2579','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17609,'notes','2580','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17610,'notes','2581','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17611,'notes','2582','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17612,'notes','2583','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17613,'notes','2584','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17614,'notes','2585','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17615,'notes','2586','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17616,'notes','2587','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17617,'notes','2588','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17618,'notes','2589','error','Deal not found: 1566',NULL,'2025-11-14 00:17:00'),
(17619,'notes','2590','error','Deal not found: 4',NULL,'2025-11-14 00:17:00'),
(17620,'notes','2591','error','Deal not found: 1707',NULL,'2025-11-14 00:17:00'),
(17621,'notes','2592','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17622,'notes','2593','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17623,'notes','2594','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17624,'notes','2595','error','Deal not found: 1665',NULL,'2025-11-14 00:17:00'),
(17625,'notes','2598','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17626,'notes','2599','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17627,'notes','2600','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17628,'notes','2601','error','Deal not found: 1767',NULL,'2025-11-14 00:17:00'),
(17629,'notes','2602','error','Deal not found: 1766',NULL,'2025-11-14 00:17:00'),
(17630,'notes','2603','error','Deal not found: 1753',NULL,'2025-11-14 00:17:00'),
(17631,'notes','2604','error','Deal not found: 1750',NULL,'2025-11-14 00:17:00'),
(17632,'notes','2605','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17633,'notes','2606','error','Deal not found: 1648',NULL,'2025-11-14 00:17:00'),
(17634,'notes','2607','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17635,'notes','2608','error','Deal not found: 1827',NULL,'2025-11-14 00:17:00'),
(17636,'notes','2609','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17637,'notes','2610','error','Deal not found: 1792',NULL,'2025-11-14 00:17:00'),
(17638,'notes','2611','error','Deal not found: 1703',NULL,'2025-11-14 00:17:00'),
(17639,'notes','2612','error','Deal not found: 1775',NULL,'2025-11-14 00:17:00'),
(17640,'notes','2613','error','Deal not found: 1802',NULL,'2025-11-14 00:17:00'),
(17641,'notes','2614','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17642,'notes','2615','error','Deal not found: 1778',NULL,'2025-11-14 00:17:00'),
(17643,'notes','2616','error','Deal not found: 1706',NULL,'2025-11-14 00:17:00'),
(17644,'notes','2617','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17645,'notes','2618','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17646,'notes','2619','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17647,'notes','2620','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17648,'notes','2621','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17649,'notes','2622','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17650,'notes','2623','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17651,'notes','2624','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17652,'notes','2625','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17653,'notes','2626','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17654,'notes','2627','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17655,'notes','2628','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17656,'notes','2629','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17657,'notes','2630','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17658,'notes','2631','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17659,'notes','2632','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17660,'notes','2633','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17661,'notes','2634','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17662,'notes','2635','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17663,'notes','2636','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17664,'notes','2637','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17665,'notes','2638','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17666,'notes','2639','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17667,'notes','2640','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17668,'notes','2641','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17669,'notes','2642','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17670,'notes','2643','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17671,'notes','2644','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17672,'notes','2645','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17673,'notes','2646','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17674,'notes','2647','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17675,'notes','2648','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17676,'notes','2649','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17677,'notes','2650','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17678,'notes','2651','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17679,'notes','2652','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17680,'notes','2653','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17681,'notes','2654','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17682,'notes','2655','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17683,'notes','2656','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17684,'notes','2657','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17685,'notes','2658','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17686,'notes','2659','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17687,'notes','2660','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17688,'notes','2661','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17689,'notes','2662','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17690,'notes','2663','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17691,'notes','2664','error','Deal not found: 1869',NULL,'2025-11-14 00:17:00'),
(17692,'notes','2665','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17693,'notes','2666','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17694,'notes','2667','error','Deal not found: 1872',NULL,'2025-11-14 00:17:00'),
(17695,'notes','2668','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17696,'notes','2669','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17697,'notes','2670','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17698,'notes','2671','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17699,'notes','2672','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17700,'notes','2673','error','Deal not found: 1874',NULL,'2025-11-14 00:17:00'),
(17701,'notes','2674','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17702,'notes','2675','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17703,'notes','2676','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17704,'notes','2677','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17705,'notes','2678','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17706,'notes','2679','error','Deal not found: 1880',NULL,'2025-11-14 00:17:00'),
(17707,'notes','2680','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17708,'notes','2681','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17709,'notes','2682','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17710,'notes','2683','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17711,'notes','2684','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17712,'notes','2685','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17713,'notes','2686','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17714,'notes','2687','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17715,'notes','2688','error','Deal not found: 1883',NULL,'2025-11-14 00:17:00'),
(17716,'notes','2689','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17717,'notes','2690','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17718,'notes','2691','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17719,'notes','2692','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17720,'notes','2693','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17721,'notes','2694','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17722,'notes','2695','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17723,'notes','2696','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17724,'notes','2697','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17725,'notes','2698','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17726,'notes','2699','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17727,'notes','2700','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17728,'notes','2701','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17729,'notes','2702','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17730,'notes','2703','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17731,'notes','2704','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17732,'notes','2705','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17733,'notes','2706','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17734,'notes','2707','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17735,'notes','2708','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17736,'notes','2709','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17737,'notes','2710','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17738,'notes','2711','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17739,'notes','2712','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17740,'notes','2713','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17741,'notes','2714','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17742,'notes','2715','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17743,'notes','2716','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17744,'notes','2717','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17745,'notes','2718','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17746,'notes','2719','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17747,'notes','2720','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17748,'notes','2721','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17749,'notes','2722','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17750,'notes','2723','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17751,'notes','2724','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17752,'notes','2725','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17753,'notes','2726','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17754,'notes','2727','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17755,'notes','2728','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17756,'notes','2729','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17757,'notes','2730','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17758,'notes','2731','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17759,'notes','2732','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17760,'notes','2733','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17761,'notes','2734','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17762,'notes','2737','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17763,'notes','2738','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17764,'notes','2739','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17765,'notes','2740','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17766,'notes','2741','error','Deal not found: 1689',NULL,'2025-11-14 00:17:00'),
(17767,'notes','2742','error','Deal not found: 1730',NULL,'2025-11-14 00:17:00'),
(17768,'notes','2743','error','Deal not found: 1780',NULL,'2025-11-14 00:17:00'),
(17769,'notes','2744','error','Deal not found: 1708',NULL,'2025-11-14 00:17:00'),
(17770,'notes','2745','error','Deal not found: 1699',NULL,'2025-11-14 00:17:00'),
(17771,'notes','2746','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17772,'notes','2747','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17773,'notes','2748','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17774,'notes','2749','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17775,'notes','2751','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17776,'notes','2752','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17777,'notes','2753','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17778,'notes','2754','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17779,'notes','2755','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17780,'notes','2756','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17781,'notes','2757','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17782,'notes','2758','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17783,'notes','2759','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17784,'notes','2760','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17785,'notes','2761','error','Deal not found: 1689',NULL,'2025-11-14 00:17:00'),
(17786,'notes','2762','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17787,'notes','2763','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17788,'notes','2764','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17789,'notes','2765','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17790,'notes','2766','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17791,'notes','2767','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17792,'notes','2768','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17793,'notes','2769','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17794,'notes','2770','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17795,'notes','2771','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17796,'notes','2772','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17797,'notes','2773','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17798,'notes','2774','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17799,'notes','2775','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17800,'notes','2776','error','Deal not found: 1697',NULL,'2025-11-14 00:17:00'),
(17801,'notes','2777','error','Deal not found: 1938',NULL,'2025-11-14 00:17:00'),
(17802,'notes','2778','error','Deal not found: 1943',NULL,'2025-11-14 00:17:00'),
(17803,'notes','2779','error','Deal not found: 1803',NULL,'2025-11-14 00:17:00'),
(17804,'notes','2780','error','Deal not found: 1944',NULL,'2025-11-14 00:17:00'),
(17805,'notes','2781','error','Deal not found: 1842',NULL,'2025-11-14 00:17:00'),
(17806,'notes','2782','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17807,'notes','2783','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17808,'notes','2784','error','Deal not found: 1945',NULL,'2025-11-14 00:17:00'),
(17809,'notes','2785','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17810,'notes','2786','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17811,'notes','2787','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17812,'notes','2788','error','Deal not found: 1948',NULL,'2025-11-14 00:17:00'),
(17813,'notes','2789','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17814,'notes','2790','error','Deal not found: 1686',NULL,'2025-11-14 00:17:00'),
(17815,'notes','2791','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17816,'notes','2792','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17817,'notes','2793','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17818,'notes','2794','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17819,'notes','2795','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17820,'notes','2796','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17821,'notes','2797','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17822,'notes','2798','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17823,'notes','2799','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17824,'notes','2800','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17825,'notes','2802','error','Deal not found: 1947',NULL,'2025-11-14 00:17:00'),
(17826,'notes','2803','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17827,'notes','2804','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17828,'notes','2805','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17829,'notes','2808','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17830,'notes','2809','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17831,'notes','2810','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17832,'notes','2811','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17833,'notes','2812','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17834,'notes','2813','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17835,'notes','2814','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17836,'notes','2815','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17837,'notes','2816','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17838,'notes','2817','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17839,'notes','2818','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17840,'notes','2819','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17841,'notes','2820','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17842,'notes','2821','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17843,'notes','2822','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17844,'notes','2823','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17845,'notes','2824','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17846,'notes','2825','error','Deal not found: 1951',NULL,'2025-11-14 00:17:00'),
(17847,'notes','2827','error','Deal not found: 1952',NULL,'2025-11-14 00:17:00'),
(17848,'notes','2828','error','Deal not found: 1957',NULL,'2025-11-14 00:17:00'),
(17849,'notes','2829','error','Deal not found: 1959',NULL,'2025-11-14 00:17:00'),
(17850,'notes','2830','error','Deal not found: 1958',NULL,'2025-11-14 00:17:00'),
(17851,'notes','2831','error','Deal not found: 1950',NULL,'2025-11-14 00:17:00'),
(17852,'notes','2832','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17853,'notes','2833','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17854,'notes','2835','error','Deal not found: 1958',NULL,'2025-11-14 00:17:00'),
(17855,'notes','2836','error','Deal not found: 1946',NULL,'2025-11-14 00:17:00'),
(17856,'notes','2837','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17857,'notes','2838','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17858,'notes','2839','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17859,'notes','2841','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17860,'notes','2842','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17861,'notes','2843','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17862,'notes','2844','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17863,'notes','2845','error','Deal not found: 1665',NULL,'2025-11-14 00:17:00'),
(17864,'notes','2846','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17865,'notes','2847','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17866,'notes','2848','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17867,'notes','2849','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17868,'notes','2850','error','Deal not found: 1998',NULL,'2025-11-14 00:17:00'),
(17869,'notes','2851','error','Deal not found: 1999',NULL,'2025-11-14 00:17:00'),
(17870,'notes','2852','error','Deal not found: 2001',NULL,'2025-11-14 00:17:00'),
(17871,'notes','2853','error','Deal not found: 2003',NULL,'2025-11-14 00:17:00'),
(17872,'notes','2854','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17873,'notes','2855','error','Deal not found: 2002',NULL,'2025-11-14 00:17:00'),
(17874,'notes','2856','error','Deal not found: 1996',NULL,'2025-11-14 00:17:00'),
(17875,'notes','2857','error','Deal not found: 1995',NULL,'2025-11-14 00:17:00'),
(17876,'notes','2858','error','Deal not found: 1994',NULL,'2025-11-14 00:17:00'),
(17877,'notes','2859','error','Deal not found: 1993',NULL,'2025-11-14 00:17:00'),
(17878,'notes','2860','error','Deal not found: 1992',NULL,'2025-11-14 00:17:00'),
(17879,'notes','2861','error','Deal not found: 1991',NULL,'2025-11-14 00:17:00'),
(17880,'notes','2862','error','Deal not found: 1990',NULL,'2025-11-14 00:17:00'),
(17881,'notes','2863','error','Deal not found: 1989',NULL,'2025-11-14 00:17:00'),
(17882,'notes','2864','error','Deal not found: 1987',NULL,'2025-11-14 00:17:00'),
(17883,'notes','2865','error','Deal not found: 1986',NULL,'2025-11-14 00:17:00'),
(17884,'notes','2866','error','Deal not found: 2004',NULL,'2025-11-14 00:17:00'),
(17885,'notes','2867','error','Deal not found: 2006',NULL,'2025-11-14 00:17:00'),
(17886,'notes','2868','error','Deal not found: 2007',NULL,'2025-11-14 00:17:00'),
(17887,'notes','2869','error','Deal not found: 2008',NULL,'2025-11-14 00:17:00'),
(17888,'notes','2870','error','Deal not found: 2009',NULL,'2025-11-14 00:17:00'),
(17889,'notes','2871','error','Deal not found: 2010',NULL,'2025-11-14 00:17:00'),
(17890,'notes','2872','error','Deal not found: 2011',NULL,'2025-11-14 00:17:00'),
(17891,'notes','2873','error','Deal not found: 2012',NULL,'2025-11-14 00:17:00'),
(17892,'notes','2874','error','Deal not found: 2013',NULL,'2025-11-14 00:17:00'),
(17893,'notes','2875','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17894,'notes','2876','error','Deal not found: 2015',NULL,'2025-11-14 00:17:00'),
(17895,'notes','2877','error','Deal not found: 2016',NULL,'2025-11-14 00:17:00'),
(17896,'notes','2878','error','Deal not found: 2017',NULL,'2025-11-14 00:17:00'),
(17897,'notes','2879','error','Deal not found: 2018',NULL,'2025-11-14 00:17:00'),
(17898,'notes','2880','error','Deal not found: 2019',NULL,'2025-11-14 00:17:00'),
(17899,'notes','2881','error','Deal not found: 2020',NULL,'2025-11-14 00:17:00'),
(17900,'notes','2882','error','Deal not found: 2021',NULL,'2025-11-14 00:17:00'),
(17901,'notes','2883','error','Deal not found: 2022',NULL,'2025-11-14 00:17:00'),
(17902,'notes','2884','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17903,'notes','2885','error','Deal not found: 2024',NULL,'2025-11-14 00:17:00'),
(17904,'notes','2886','error','Deal not found: 2025',NULL,'2025-11-14 00:17:00'),
(17905,'notes','2887','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17906,'notes','2888','error','Deal not found: 2027',NULL,'2025-11-14 00:17:00'),
(17907,'notes','2889','error','Deal not found: 1997',NULL,'2025-11-14 00:17:00'),
(17908,'notes','2891','error','Deal not found: 2028',NULL,'2025-11-14 00:17:00'),
(17909,'notes','2892','error','Deal not found: 2029',NULL,'2025-11-14 00:17:00'),
(17910,'notes','2893','error','Deal not found: 2030',NULL,'2025-11-14 00:17:00'),
(17911,'notes','2894','error','Deal not found: 2031',NULL,'2025-11-14 00:17:00'),
(17912,'notes','2895','error','Deal not found: 2032',NULL,'2025-11-14 00:17:00'),
(17913,'notes','2896','error','Deal not found: 2033',NULL,'2025-11-14 00:17:00'),
(17914,'notes','2897','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17915,'notes','2898','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17916,'notes','2899','error','Deal not found: 2036',NULL,'2025-11-14 00:17:00'),
(17917,'notes','2900','error','Deal not found: 2037',NULL,'2025-11-14 00:17:00'),
(17918,'notes','2901','error','Deal not found: 2038',NULL,'2025-11-14 00:17:00'),
(17919,'notes','2902','error','Deal not found: 2039',NULL,'2025-11-14 00:17:00'),
(17920,'notes','2903','error','Deal not found: 2040',NULL,'2025-11-14 00:17:00'),
(17921,'notes','2904','error','Deal not found: 2041',NULL,'2025-11-14 00:17:00'),
(17922,'notes','2905','error','Deal not found: 2042',NULL,'2025-11-14 00:17:00'),
(17923,'notes','2907','error','Deal not found: 2044',NULL,'2025-11-14 00:17:00'),
(17924,'notes','2908','error','Deal not found: 2045',NULL,'2025-11-14 00:17:00'),
(17925,'notes','2909','error','Deal not found: 2046',NULL,'2025-11-14 00:17:00'),
(17926,'notes','2910','error','Deal not found: 2047',NULL,'2025-11-14 00:17:00'),
(17927,'notes','2911','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17928,'notes','2912','error','Deal not found: 2049',NULL,'2025-11-14 00:17:00'),
(17929,'notes','2913','error','Deal not found: 1988',NULL,'2025-11-14 00:17:00'),
(17930,'notes','2915','error','Deal not found: 2050',NULL,'2025-11-14 00:17:00'),
(17931,'notes','2916','error','Deal not found: 2051',NULL,'2025-11-14 00:17:00'),
(17932,'notes','2917','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17933,'notes','2918','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17934,'notes','2919','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17935,'notes','2920','error','Deal not found: 2052',NULL,'2025-11-14 00:17:00'),
(17936,'notes','2921','error','Deal not found: 2053',NULL,'2025-11-14 00:17:00'),
(17937,'notes','2922','error','Deal not found: 2054',NULL,'2025-11-14 00:17:00'),
(17938,'notes','2923','error','Deal not found: 2055',NULL,'2025-11-14 00:17:00'),
(17939,'notes','2924','error','Deal not found: 2056',NULL,'2025-11-14 00:17:00'),
(17940,'notes','2925','error','Deal not found: 2057',NULL,'2025-11-14 00:17:00'),
(17941,'notes','2926','error','Deal not found: 2058',NULL,'2025-11-14 00:17:00'),
(17942,'notes','2927','error','Deal not found: 2059',NULL,'2025-11-14 00:17:00'),
(17943,'notes','2928','error','Deal not found: 2060',NULL,'2025-11-14 00:17:00'),
(17944,'notes','2929','error','Deal not found: 2061',NULL,'2025-11-14 00:17:00'),
(17945,'notes','2930','error','Deal not found: 2062',NULL,'2025-11-14 00:17:00'),
(17946,'notes','2931','error','Deal not found: 2063',NULL,'2025-11-14 00:17:00'),
(17947,'notes','2932','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17948,'notes','2933','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17949,'notes','2934','error','Deal not found: 2064',NULL,'2025-11-14 00:17:00'),
(17950,'notes','2935','error','Deal not found: 2065',NULL,'2025-11-14 00:17:00'),
(17951,'notes','2936','error','Deal not found: 2066',NULL,'2025-11-14 00:17:00'),
(17952,'notes','2937','error','Deal not found: 2067',NULL,'2025-11-14 00:17:00'),
(17953,'notes','2938','error','Deal not found: 2068',NULL,'2025-11-14 00:17:00'),
(17954,'notes','2939','error','Deal not found: 2069',NULL,'2025-11-14 00:17:00'),
(17955,'notes','2940','error','Deal not found: 2070',NULL,'2025-11-14 00:17:00'),
(17956,'notes','2941','error','Deal not found: 2071',NULL,'2025-11-14 00:17:00'),
(17957,'notes','2942','error','Deal not found: 2072',NULL,'2025-11-14 00:17:00'),
(17958,'notes','2943','error','Deal not found: 2073',NULL,'2025-11-14 00:17:00'),
(17959,'notes','2944','error','Deal not found: 2074',NULL,'2025-11-14 00:17:00'),
(17960,'notes','2945','error','Deal not found: 2075',NULL,'2025-11-14 00:17:00'),
(17961,'notes','2946','error','Deal not found: 2076',NULL,'2025-11-14 00:17:00'),
(17962,'notes','2947','error','Deal not found: 2077',NULL,'2025-11-14 00:17:00'),
(17963,'notes','2948','error','Deal not found: 2078',NULL,'2025-11-14 00:17:00'),
(17964,'notes','2949','error','Deal not found: 2079',NULL,'2025-11-14 00:17:00'),
(17965,'notes','2950','error','Deal not found: 2080',NULL,'2025-11-14 00:17:00'),
(17966,'notes','2951','error','Deal not found: 2081',NULL,'2025-11-14 00:17:00'),
(17967,'notes','2952','error','Deal not found: 2082',NULL,'2025-11-14 00:17:00'),
(17968,'notes','2953','error','Deal not found: 2083',NULL,'2025-11-14 00:17:00'),
(17969,'notes','2954','error','Deal not found: 2084',NULL,'2025-11-14 00:17:00'),
(17970,'notes','2955','error','Deal not found: 2085',NULL,'2025-11-14 00:17:00'),
(17971,'notes','2956','error','Deal not found: 2086',NULL,'2025-11-14 00:17:00'),
(17972,'notes','2957','error','Deal not found: 2087',NULL,'2025-11-14 00:17:00'),
(17973,'notes','2958','error','Deal not found: 2088',NULL,'2025-11-14 00:17:00'),
(17974,'notes','2959','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17975,'notes','2960','error','Deal not found: 2089',NULL,'2025-11-14 00:17:00'),
(17976,'notes','2961','error','Deal not found: 2090',NULL,'2025-11-14 00:17:00'),
(17977,'notes','2962','error','Deal not found: 2091',NULL,'2025-11-14 00:17:00'),
(17978,'notes','2963','error','Deal not found: 2092',NULL,'2025-11-14 00:17:00'),
(17979,'notes','2964','error','Deal not found: 2093',NULL,'2025-11-14 00:17:00'),
(17980,'notes','2965','error','Deal not found: 2094',NULL,'2025-11-14 00:17:00'),
(17981,'notes','2966','error','Deal not found: 2095',NULL,'2025-11-14 00:17:00'),
(17982,'notes','2967','error','Deal not found: 2096',NULL,'2025-11-14 00:17:00'),
(17983,'notes','2968','error','Deal not found: 2097',NULL,'2025-11-14 00:17:00'),
(17984,'notes','2969','error','Deal not found: 2098',NULL,'2025-11-14 00:17:00'),
(17985,'notes','2970','error','Deal not found: 2099',NULL,'2025-11-14 00:17:00'),
(17986,'notes','2971','error','Deal not found: 2100',NULL,'2025-11-14 00:17:00'),
(17987,'notes','2972','error','Deal not found: 2101',NULL,'2025-11-14 00:17:00'),
(17988,'notes','2973','error','Deal not found: 2102',NULL,'2025-11-14 00:17:00'),
(17989,'notes','2974','error','Deal not found: 2103',NULL,'2025-11-14 00:17:00'),
(17990,'notes','2975','error','Deal not found: 2104',NULL,'2025-11-14 00:17:00'),
(17991,'notes','2976','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17992,'notes','2977','error','Deal not found: 2106',NULL,'2025-11-14 00:17:00'),
(17993,'notes','2978','error','Deal not found: 2107',NULL,'2025-11-14 00:17:00'),
(17994,'notes','2979','error','Deal not found: 2108',NULL,'2025-11-14 00:17:00'),
(17995,'notes','2980','error','Deal not found: 2109',NULL,'2025-11-14 00:17:00'),
(17996,'notes','2981','error','Deal not found: 2110',NULL,'2025-11-14 00:17:00'),
(17997,'notes','2982','error','Deal not found: 2111',NULL,'2025-11-14 00:17:00'),
(17998,'notes','2983','error','Deal not found: 2112',NULL,'2025-11-14 00:17:00'),
(17999,'notes','2984','error','Deal not found: 2113',NULL,'2025-11-14 00:17:00'),
(18000,'notes','2985','error','Deal not found: 2114',NULL,'2025-11-14 00:17:00'),
(18001,'notes','2986','error','Deal not found: 2115',NULL,'2025-11-14 00:17:00'),
(18002,'notes','2987','error','Deal not found: 2116',NULL,'2025-11-14 00:17:00'),
(18003,'notes','2988','error','Deal not found: 2117',NULL,'2025-11-14 00:17:00'),
(18004,'notes','2989','error','Deal not found: 2043',NULL,'2025-11-14 00:17:00'),
(18005,'notes','2990','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18006,'notes','2991','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18007,'notes','2992','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18008,'notes','2993','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18009,'notes','2994','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18010,'notes','2995','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18011,'notes','2996','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18012,'notes','2997','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18013,'notes','2998','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18014,'notes','2999','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18015,'notes','3000','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18016,'notes','3001','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18017,'notes','3002','error','Deal not found: 1955',NULL,'2025-11-14 00:17:00'),
(18018,'notes','3003','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18019,'notes','3004','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18020,'notes','3005','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18021,'notes','3006','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18022,'notes','3007','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18023,'notes','3008','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18024,'notes','3009','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18025,'notes','3010','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18026,'notes','3011','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18027,'notes','3012','error','Deal not found: 1997',NULL,'2025-11-14 00:17:00'),
(18028,'notes','3013','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18029,'notes','3014','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18030,'notes','3015','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18031,'notes','3016','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18032,'notes','3017','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18033,'notes','3018','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18034,'notes','3019','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18035,'notes','3020','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18036,'notes','3021','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18037,'notes','3022','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18038,'notes','3023','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18039,'notes','3024','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18040,'notes','3025','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18041,'notes','3026','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18042,'notes','3027','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18043,'notes','3028','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18044,'notes','3029','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18045,'notes','3030','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18046,'notes','3031','error','Deal not found: 2131',NULL,'2025-11-14 00:17:00'),
(18047,'notes','3032','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18048,'notes','3033','error','Deal not found: 2133',NULL,'2025-11-14 00:17:00'),
(18049,'notes','3034','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18050,'notes','3035','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18051,'notes','3036','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18052,'notes','3037','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18053,'notes','3038','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18054,'notes','3039','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18055,'notes','3040','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18056,'notes','3041','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18057,'notes','3042','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18058,'notes','3043','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18059,'notes','3044','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18060,'notes','3045','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18061,'notes','3046','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18062,'notes','3047','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18063,'notes','3048','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18064,'notes','3049','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18065,'notes','3050','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18066,'notes','3051','error','Deal not found: 1951',NULL,'2025-11-14 00:17:00'),
(18067,'notes','3052','error','Deal not found: 1970',NULL,'2025-11-14 00:17:00'),
(18068,'notes','3053','error','Deal not found: 1966',NULL,'2025-11-14 00:17:00'),
(18069,'notes','3054','error','Deal not found: 1943',NULL,'2025-11-14 00:17:00'),
(18070,'notes','3055','error','Deal not found: 1997',NULL,'2025-11-14 00:17:00'),
(18071,'notes','3056','error','Deal not found: 1997',NULL,'2025-11-14 00:17:00'),
(18072,'notes','3057','error','Deal not found: 2000',NULL,'2025-11-14 00:17:00'),
(18073,'notes','3058','error','Deal not found: 2000',NULL,'2025-11-14 00:17:00'),
(18074,'notes','3059','error','Deal not found: 2131',NULL,'2025-11-14 00:17:00'),
(18075,'notes','3060','error','Deal not found: 2131',NULL,'2025-11-14 00:17:00'),
(18076,'notes','3061','error','Deal not found: 1952',NULL,'2025-11-14 00:17:00'),
(18077,'notes','3062','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18078,'notes','3063','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18079,'notes','3064','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18080,'notes','3065','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18081,'notes','3066','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18082,'notes','3067','error','Deal not found: 2141',NULL,'2025-11-14 00:17:00'),
(18083,'notes','3068','error','Deal not found: 2140',NULL,'2025-11-14 00:17:00'),
(18084,'notes','3069','error','Deal not found: 2145',NULL,'2025-11-14 00:17:00'),
(18085,'notes','3070','error','Deal not found: 2147',NULL,'2025-11-14 00:17:00'),
(18086,'notes','3071','error','Deal not found: 2150',NULL,'2025-11-14 00:17:00'),
(18087,'notes','3072','error','Deal not found: 2141',NULL,'2025-11-14 00:17:00'),
(18088,'notes','3073','error','Deal not found: 2127',NULL,'2025-11-14 00:17:00'),
(18089,'notes','3074','error','Deal not found: 2147',NULL,'2025-11-14 00:17:00'),
(18090,'notes','3075','error','Deal not found: 2151',NULL,'2025-11-14 00:17:00'),
(18091,'notes','3076','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18092,'notes','3077','error','Deal not found: 2152',NULL,'2025-11-14 00:17:00'),
(18093,'notes','3078','error','Deal not found: 2150',NULL,'2025-11-14 00:17:00'),
(18094,'notes','3079','error','Deal not found: 2156',NULL,'2025-11-14 00:17:00'),
(18095,'notes','3080','error','Deal not found: 2156',NULL,'2025-11-14 00:17:00'),
(18096,'notes','3081','error','Deal not found: 2159',NULL,'2025-11-14 00:17:00'),
(18097,'notes','3082','error','Deal not found: 2159',NULL,'2025-11-14 00:17:00'),
(18098,'notes','3083','error','Deal not found: 2160',NULL,'2025-11-14 00:17:00'),
(18099,'notes','3084','error','Deal not found: 2160',NULL,'2025-11-14 00:17:00'),
(18100,'notes','3085','error','Deal not found: 2160',NULL,'2025-11-14 00:17:00'),
(18101,'notes','3086','error','Deal not found: 2147',NULL,'2025-11-14 00:17:00'),
(18102,'notes','3087','error','Deal not found: 2140',NULL,'2025-11-14 00:17:00'),
(18103,'notes','3088','error','Deal not found: 2169',NULL,'2025-11-14 00:17:00'),
(18104,'notes','3089','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18105,'notes','3090','error','Deal not found: 1773',NULL,'2025-11-14 00:17:00'),
(18106,'notes','3091','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18107,'files','4171','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18108,'files','15076','error','Deal not found: 7',NULL,'2025-11-14 00:17:02'),
(18109,'files','15077','error','Deal not found: 7',NULL,'2025-11-14 00:17:02'),
(18110,'files','15133','error','Deal not found: 4',NULL,'2025-11-14 00:17:02'),
(18111,'files','15195','error','Deal not found: 12',NULL,'2025-11-14 00:17:02'),
(18112,'files','15196','error','Deal not found: 12',NULL,'2025-11-14 00:17:02'),
(18113,'files','15197','error','Deal not found: 12',NULL,'2025-11-14 00:17:02'),
(18114,'files','15313','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18115,'files','15314','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18116,'files','15315','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18117,'files','15316','error','Deal not found: 14',NULL,'2025-11-14 00:17:02'),
(18118,'files','15393','error','Deal not found: 15',NULL,'2025-11-14 00:17:02'),
(18119,'files','15394','error','Deal not found: 15',NULL,'2025-11-14 00:17:02'),
(18120,'files','15395','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18121,'files','15396','error','Deal not found: 17',NULL,'2025-11-14 00:17:02'),
(18122,'files','15397','error','Deal not found: 17',NULL,'2025-11-14 00:17:02'),
(18123,'files','15398','error','Deal not found: 17',NULL,'2025-11-14 00:17:02'),
(18124,'files','15399','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18125,'files','15400','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18126,'files','15401','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18127,'files','15884','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18128,'files','15885','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18129,'files','15886','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18130,'files','15887','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18131,'files','15888','error','Deal not found: 19',NULL,'2025-11-14 00:17:02'),
(18132,'files','15889','error','Deal not found: 19',NULL,'2025-11-14 00:17:02'),
(18133,'files','15890','error','Deal not found: 19',NULL,'2025-11-14 00:17:02'),
(18134,'files','15891','error','Deal not found: 19',NULL,'2025-11-14 00:17:02'),
(18135,'files','15892','error','Deal not found: 19',NULL,'2025-11-14 00:17:02'),
(18136,'files','15893','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18137,'files','15894','error','Deal not found: 21',NULL,'2025-11-14 00:17:02'),
(18138,'files','15895','error','Deal not found: 21',NULL,'2025-11-14 00:17:02'),
(18139,'files','15899','error','Deal not found: 22',NULL,'2025-11-14 00:17:02'),
(18140,'files','15922','error','Deal not found: 23',NULL,'2025-11-14 00:17:02'),
(18141,'files','15923','error','Deal not found: 23',NULL,'2025-11-14 00:17:02'),
(18142,'files','16851','error','Deal not found: 33',NULL,'2025-11-14 00:17:02'),
(18143,'files','16852','error','Deal not found: 33',NULL,'2025-11-14 00:17:02'),
(18144,'files','16853','error','Deal not found: 33',NULL,'2025-11-14 00:17:02'),
(18145,'files','16854','error','Deal not found: 53',NULL,'2025-11-14 00:17:02'),
(18146,'files','16855','error','Deal not found: 53',NULL,'2025-11-14 00:17:02'),
(18147,'files','16856','error','Deal not found: 52',NULL,'2025-11-14 00:17:02'),
(18148,'files','16857','error','Deal not found: 52',NULL,'2025-11-14 00:17:02'),
(18149,'files','16858','error','Deal not found: 52',NULL,'2025-11-14 00:17:02'),
(18150,'files','16859','error','Deal not found: 1724',NULL,'2025-11-14 00:17:02'),
(18151,'files','16982','error','Deal not found: 50',NULL,'2025-11-14 00:17:02'),
(18152,'files','16983','error','Deal not found: 50',NULL,'2025-11-14 00:17:02'),
(18153,'files','16984','error','Deal not found: 50',NULL,'2025-11-14 00:17:02'),
(18154,'files','18605','error','Deal not found: 55',NULL,'2025-11-14 00:17:02'),
(18155,'files','18606','error','Deal not found: 55',NULL,'2025-11-14 00:17:02'),
(18156,'files','18607','error','Deal not found: 55',NULL,'2025-11-14 00:17:02'),
(18157,'files','21448','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18158,'files','21449','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18159,'files','21450','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18160,'files','21451','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18161,'files','21452','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18162,'files','21453','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18163,'files','21454','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18164,'files','21455','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18165,'files','21456','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18166,'files','21457','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18167,'files','21459','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18168,'files','21460','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18169,'files','21461','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18170,'files','21462','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18171,'files','21463','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18172,'files','21464','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18173,'files','21465','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18174,'files','21466','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18175,'files','21467','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18176,'files','21468','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18177,'files','21469','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18178,'files','21472','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18179,'files','21473','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18180,'files','21474','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18181,'files','21475','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18182,'files','21476','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18183,'files','21477','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18184,'files','21478','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18185,'files','21479','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18186,'files','21480','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18187,'files','21481','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18188,'files','21482','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18189,'files','21483','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18190,'files','21484','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18191,'files','21485','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18192,'files','21486','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18193,'files','21487','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18194,'files','21488','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18195,'files','21489','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18196,'files','21490','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18197,'files','21491','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18198,'files','21492','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18199,'files','21494','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18200,'files','21495','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18201,'files','21496','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18202,'files','21497','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18203,'files','21498','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18204,'files','21499','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18205,'files','21500','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18206,'files','21501','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18207,'files','21502','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18208,'files','21503','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18209,'files','21504','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18210,'files','21505','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18211,'files','21506','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18212,'files','21507','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18213,'files','21508','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18214,'files','21509','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18215,'files','21510','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18216,'files','21511','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18217,'files','21512','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18218,'files','21513','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18219,'files','21514','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18220,'files','21515','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18221,'files','21516','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18222,'files','21517','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18223,'files','21518','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18224,'files','21519','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18225,'files','21520','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18226,'files','21521','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18227,'files','21522','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18228,'files','21523','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18229,'files','21524','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18230,'files','21525','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18231,'files','21526','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18232,'files','21527','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18233,'files','21528','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18234,'files','21529','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18235,'files','21530','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18236,'files','21531','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18237,'files','21532','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18238,'files','21533','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18239,'files','21534','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18240,'files','21535','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18241,'files','21536','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18242,'files','21537','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18243,'files','21538','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18244,'files','21539','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18245,'files','21540','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18246,'files','21541','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18247,'files','21542','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18248,'files','21543','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18249,'files','21544','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18250,'files','21545','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18251,'files','21546','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18252,'files','21547','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18253,'files','21548','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18254,'files','21549','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18255,'files','21550','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18256,'files','21551','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18257,'files','21552','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18258,'files','21553','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18259,'files','21555','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18260,'files','21556','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18261,'files','21557','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18262,'files','21558','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18263,'files','21559','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18264,'files','21560','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18265,'files','21561','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18266,'files','21562','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18267,'files','21563','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18268,'files','21564','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18269,'files','21565','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18270,'files','21566','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18271,'files','21567','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18272,'files','21568','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18273,'files','21569','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18274,'files','21570','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18275,'files','21571','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18276,'files','21574','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18277,'files','21575','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18278,'files','21577','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18279,'files','21578','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18280,'files','21579','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18281,'files','21580','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18282,'files','21581','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18283,'files','21582','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18284,'files','21583','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18285,'files','21584','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18286,'files','21585','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18287,'files','21586','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18288,'files','21587','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18289,'files','21588','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18290,'files','21589','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18291,'files','21590','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18292,'files','21591','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18293,'files','21592','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18294,'files','21593','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18295,'files','21594','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18296,'files','21595','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18297,'files','21596','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18298,'files','21597','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18299,'files','21598','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18300,'files','21599','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18301,'files','21601','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18302,'files','21602','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18303,'files','21603','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18304,'files','21604','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18305,'files','21605','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18306,'files','21606','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18307,'files','21607','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18308,'files','21608','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18309,'files','21609','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18310,'files','21610','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18311,'files','21611','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18312,'files','21612','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18313,'files','21613','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18314,'files','21614','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18315,'files','21615','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18316,'files','21616','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18317,'files','21617','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18318,'files','21618','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18319,'files','21619','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18320,'files','21620','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18321,'files','21621','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18322,'files','21622','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18323,'files','21623','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18324,'files','21624','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18325,'files','21625','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18326,'files','21626','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18327,'files','21627','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18328,'files','21628','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18329,'files','21629','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18330,'files','21630','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18331,'files','21631','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18332,'files','21632','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18333,'files','21633','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18334,'files','21636','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18335,'files','21637','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18336,'files','21638','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18337,'files','21639','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18338,'files','21640','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18339,'files','21641','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18340,'files','21642','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18341,'files','21643','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18342,'files','21644','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18343,'files','21645','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18344,'files','21646','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18345,'files','21647','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18346,'files','21648','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18347,'files','21649','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18348,'files','21650','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18349,'files','21651','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18350,'files','21652','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18351,'files','21653','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18352,'files','21654','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18353,'files','21655','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18354,'files','21656','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18355,'files','21657','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18356,'files','21658','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18357,'files','21659','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18358,'files','21660','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18359,'files','21661','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18360,'files','21662','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18361,'files','21663','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18362,'files','21664','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18363,'files','21665','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18364,'files','21666','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18365,'files','21667','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18366,'files','21668','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18367,'files','21669','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18368,'files','21670','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18369,'files','21671','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18370,'files','21672','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18371,'files','21673','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18372,'files','21674','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18373,'files','21675','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18374,'files','21676','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18375,'files','21677','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18376,'files','21678','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18377,'files','21679','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18378,'files','21680','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18379,'files','21682','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18380,'files','21683','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18381,'files','21684','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18382,'files','21685','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18383,'files','21686','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18384,'files','21687','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18385,'files','21688','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18386,'files','21689','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18387,'files','21690','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18388,'files','21691','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18389,'files','21692','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18390,'files','21693','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18391,'files','21694','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18392,'files','21695','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18393,'files','21696','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18394,'files','21697','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18395,'files','21698','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18396,'files','21699','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18397,'files','21700','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18398,'files','21701','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18399,'files','21702','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18400,'files','21703','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18401,'files','21704','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18402,'files','21705','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18403,'files','21706','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18404,'files','21707','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18405,'files','21708','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18406,'files','21709','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18407,'files','21710','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18408,'files','21712','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18409,'files','21713','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18410,'files','21714','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18411,'files','21715','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18412,'files','21716','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18413,'files','21717','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18414,'files','21719','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18415,'files','21720','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18416,'files','21721','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18417,'files','21722','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18418,'files','21723','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18419,'files','21724','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18420,'files','21725','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18421,'files','21726','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18422,'files','21727','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18423,'files','21728','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18424,'files','21729','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18425,'files','21730','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18426,'files','21731','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18427,'files','21732','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18428,'files','21733','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18429,'files','21734','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18430,'files','21735','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18431,'files','21736','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18432,'files','21737','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18433,'files','21738','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18434,'files','21739','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18435,'files','21740','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18436,'files','21741','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18437,'files','21742','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18438,'files','21743','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18439,'files','21744','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18440,'files','21745','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18441,'files','21746','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18442,'files','21747','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18443,'files','21748','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18444,'files','21749','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18445,'files','21750','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18446,'files','21751','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18447,'files','21752','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18448,'files','21753','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18449,'files','21754','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18450,'files','21755','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18451,'files','21756','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18452,'files','21757','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18453,'files','21758','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18454,'files','21759','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18455,'files','21760','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18456,'files','21761','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18457,'files','21762','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18458,'files','21763','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18459,'files','21764','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18460,'files','21765','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18461,'files','21766','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18462,'files','21767','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18463,'files','21768','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18464,'files','21769','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18465,'files','21770','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18466,'files','21771','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18467,'files','21772','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18468,'files','21773','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18469,'files','21774','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18470,'files','21775','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18471,'files','21776','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18472,'files','21777','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18473,'files','21778','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18474,'files','21779','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18475,'files','21780','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18476,'files','21781','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18477,'files','21782','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18478,'files','21783','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18479,'files','21784','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18480,'files','21785','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18481,'files','21786','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18482,'files','21787','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18483,'files','21788','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18484,'files','21789','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18485,'files','21790','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18486,'files','21791','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18487,'files','21792','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18488,'files','21793','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18489,'files','21794','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18490,'files','21795','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18491,'files','21796','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18492,'files','21797','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18493,'files','21798','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18494,'files','21799','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18495,'files','21800','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18496,'files','21801','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18497,'files','21802','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18498,'files','21803','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18499,'files','21804','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18500,'files','21805','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18501,'files','21806','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18502,'files','21807','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18503,'files','21808','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18504,'files','21809','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18505,'files','21810','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18506,'files','21811','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18507,'files','21812','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18508,'files','21813','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18509,'files','21814','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18510,'files','21815','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18511,'files','21816','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18512,'files','21817','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18513,'files','21818','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18514,'files','21819','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18515,'files','21820','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18516,'files','21821','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18517,'files','21822','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18518,'files','21823','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18519,'files','21824','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18520,'files','21825','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18521,'files','21826','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18522,'files','21827','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18523,'files','21828','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18524,'files','21829','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18525,'files','21830','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18526,'files','21831','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18527,'files','21832','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18528,'files','21833','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18529,'files','21834','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18530,'files','21835','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18531,'files','21836','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18532,'files','21837','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18533,'files','21838','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18534,'files','21839','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18535,'files','21840','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18536,'files','21841','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18537,'files','21842','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18538,'files','21843','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18539,'files','21844','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18540,'files','21845','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18541,'files','21846','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18542,'files','21847','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18543,'files','21848','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18544,'files','21849','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18545,'files','21850','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18546,'files','21851','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18547,'files','21852','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18548,'files','21853','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18549,'files','21854','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18550,'files','21855','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18551,'files','21856','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18552,'files','21857','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18553,'files','21858','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18554,'files','21859','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18555,'files','21860','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18556,'files','21861','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18557,'files','21862','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18558,'files','21863','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18559,'files','21864','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18560,'files','21865','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18561,'files','21866','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18562,'files','21867','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18563,'files','21868','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18564,'files','21869','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18565,'files','21870','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18566,'files','21871','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18567,'files','21872','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18568,'files','21873','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18569,'files','21874','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18570,'files','21875','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18571,'files','21876','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18572,'files','21877','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18573,'files','21878','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18574,'files','21879','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18575,'files','21880','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18576,'files','21881','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18577,'files','21882','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18578,'files','21883','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18579,'files','21884','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18580,'files','21885','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18581,'files','21886','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18582,'files','21887','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18583,'files','21888','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18584,'files','21889','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18585,'files','21890','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18586,'files','21891','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18587,'files','21892','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18588,'files','21893','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18589,'files','21894','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18590,'files','21895','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18591,'files','21896','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18592,'files','21897','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18593,'files','21898','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18594,'files','21899','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18595,'files','21900','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18596,'files','21901','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18597,'files','21902','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18598,'files','21903','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18599,'files','21904','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18600,'files','21905','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18601,'files','21906','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18602,'files','21907','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18603,'files','21908','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18604,'files','21909','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18605,'files','21910','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18606,'files','21911','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18607,'files','21912','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18608,'files','21913','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18609,'files','21914','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18610,'files','21915','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18611,'files','21916','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18612,'files','21917','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18613,'files','21918','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18614,'files','21919','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18615,'files','21920','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18616,'files','21921','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18617,'files','21922','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18618,'files','21923','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18619,'files','21924','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18620,'files','21925','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18621,'files','21926','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18622,'files','21927','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18623,'files','21928','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18624,'files','21929','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18625,'files','21930','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18626,'files','21931','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18627,'files','21932','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18628,'files','21933','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18629,'files','21934','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18630,'files','21935','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18631,'files','21936','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18632,'files','21937','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18633,'files','21938','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18634,'files','21939','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18635,'files','21940','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18636,'files','21941','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18637,'files','21942','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18638,'files','21943','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18639,'files','21944','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18640,'files','21945','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18641,'files','21946','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18642,'files','21947','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18643,'files','21948','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18644,'files','21949','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18645,'files','21950','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18646,'files','21951','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18647,'files','21952','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18648,'files','21953','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18649,'files','21954','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18650,'files','21956','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18651,'files','21957','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18652,'files','21958','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18653,'files','21959','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18654,'files','21960','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18655,'files','21961','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18656,'files','21962','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18657,'files','21963','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18658,'files','21964','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18659,'files','21965','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18660,'files','21966','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18661,'files','21967','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18662,'files','21968','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18663,'files','21969','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18664,'files','21970','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18665,'files','21971','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18666,'files','21972','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18667,'files','21973','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18668,'files','21974','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18669,'files','21975','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18670,'files','21976','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18671,'files','21977','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18672,'files','21978','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18673,'files','21979','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18674,'files','21980','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18675,'files','21981','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18676,'files','21982','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18677,'files','21983','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18678,'files','21984','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18679,'files','21985','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18680,'files','21986','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18681,'files','21987','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18682,'files','21988','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18683,'files','21989','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18684,'files','21990','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18685,'files','21991','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18686,'files','21992','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18687,'files','21993','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18688,'files','21994','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18689,'files','21995','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18690,'files','21996','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18691,'files','21997','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18692,'files','21998','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18693,'files','21999','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18694,'files','22000','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18695,'files','22001','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18696,'files','22002','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18697,'files','22003','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18698,'files','22004','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18699,'files','22005','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18700,'files','22006','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18701,'files','22007','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18702,'files','22008','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18703,'files','22009','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18704,'files','22010','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18705,'files','22011','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18706,'files','22012','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18707,'files','22013','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18708,'files','22014','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18709,'files','22015','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18710,'files','22016','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18711,'files','22017','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18712,'files','22018','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18713,'files','22019','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18714,'files','22020','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18715,'files','22021','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18716,'files','22022','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18717,'files','22023','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18718,'files','22024','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18719,'files','22025','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18720,'files','22026','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18721,'files','22027','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18722,'files','22028','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18723,'files','22029','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18724,'files','22030','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18725,'files','22031','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18726,'files','22032','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18727,'files','22033','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18728,'files','22034','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18729,'files','22035','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18730,'files','22036','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18731,'files','22037','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18732,'files','22038','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18733,'files','22039','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18734,'files','22040','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18735,'files','22041','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18736,'files','22042','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18737,'files','22043','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18738,'files','22044','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18739,'files','22045','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18740,'files','22046','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18741,'files','22047','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18742,'files','22048','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18743,'files','22049','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18744,'files','22050','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18745,'files','22051','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18746,'files','22052','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18747,'files','22053','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18748,'files','22054','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18749,'files','22055','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18750,'files','22056','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18751,'files','22057','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18752,'files','22058','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18753,'files','22059','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18754,'files','22060','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18755,'files','22061','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18756,'files','22062','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18757,'files','22063','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18758,'files','22064','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18759,'files','22065','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18760,'files','22066','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18761,'files','22067','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18762,'files','22068','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18763,'files','22069','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18764,'files','22070','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18765,'files','22071','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18766,'files','22072','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18767,'files','22073','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18768,'files','22074','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18769,'files','22075','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18770,'files','22076','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18771,'files','22077','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18772,'files','22078','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18773,'files','22079','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18774,'files','22080','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18775,'files','22081','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18776,'files','22082','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18777,'files','22083','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18778,'files','22084','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18779,'files','22085','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18780,'files','22086','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18781,'files','22087','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18782,'files','22088','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18783,'files','22089','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18784,'files','22090','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18785,'files','22091','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18786,'files','22092','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18787,'files','22093','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18788,'files','22094','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18789,'files','22095','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18790,'files','22096','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18791,'files','22097','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18792,'files','22098','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18793,'files','22099','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18794,'files','22100','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18795,'files','22101','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18796,'files','22102','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18797,'files','22103','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18798,'files','22104','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18799,'files','22105','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18800,'files','22106','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18801,'files','22107','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18802,'files','22108','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18803,'files','22109','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18804,'files','22110','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18805,'files','22111','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18806,'files','22112','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18807,'files','22113','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18808,'files','22114','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18809,'files','22116','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18810,'files','22117','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18811,'files','22118','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18812,'files','22119','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18813,'files','22120','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18814,'files','22121','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18815,'files','22122','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18816,'files','22123','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18817,'files','22124','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18818,'files','22125','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18819,'files','22126','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18820,'files','22127','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18821,'files','22128','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18822,'files','22129','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18823,'files','22130','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18824,'files','22132','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18825,'files','22133','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18826,'files','22134','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18827,'files','22135','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18828,'files','22136','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18829,'files','22137','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18830,'files','22138','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18831,'files','22139','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18832,'files','22140','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18833,'files','22141','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18834,'files','22142','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18835,'files','22143','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18836,'files','22144','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18837,'files','22145','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18838,'files','22146','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18839,'files','22147','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18840,'files','22148','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18841,'files','22149','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18842,'files','22150','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18843,'files','22151','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18844,'files','22152','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18845,'files','22153','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18846,'files','22154','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18847,'files','22155','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18848,'files','22156','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18849,'files','22157','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18850,'files','22158','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18851,'files','22159','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18852,'files','22160','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18853,'files','22161','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18854,'files','22162','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18855,'files','22163','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18856,'files','22164','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18857,'files','22165','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18858,'files','22166','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18859,'files','22167','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18860,'files','22168','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18861,'files','22169','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18862,'files','22170','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18863,'files','22171','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18864,'files','22172','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18865,'files','22173','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18866,'files','22174','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18867,'files','22175','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18868,'files','22176','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18869,'files','22177','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18870,'files','22178','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18871,'files','22179','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18872,'files','22180','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18873,'files','22181','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18874,'files','22182','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18875,'files','22183','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18876,'files','22184','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18877,'files','22185','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18878,'files','22186','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18879,'files','22187','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18880,'files','22188','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18881,'files','22189','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18882,'files','22190','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18883,'files','22191','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18884,'files','22192','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18885,'files','22193','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18886,'files','22194','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18887,'files','22195','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18888,'files','22196','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18889,'files','22197','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18890,'files','22198','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18891,'files','22199','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18892,'files','22200','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18893,'files','22201','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18894,'files','22202','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18895,'files','22203','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18896,'files','22204','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18897,'files','22205','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18898,'files','22206','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18899,'files','22207','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18900,'files','22208','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18901,'files','22209','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18902,'files','22210','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18903,'files','22211','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18904,'files','22212','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18905,'files','22213','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18906,'files','22214','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18907,'files','22215','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18908,'files','22216','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18909,'files','22217','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18910,'files','22218','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18911,'files','22219','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18912,'files','22220','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18913,'files','22221','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18914,'files','22222','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18915,'files','22223','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18916,'files','22224','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18917,'files','22225','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18918,'files','22226','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18919,'files','22227','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18920,'files','22228','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18921,'files','22229','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18922,'files','22230','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18923,'files','22231','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18924,'files','22232','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18925,'files','22233','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18926,'files','22234','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18927,'files','22235','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18928,'files','22236','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18929,'files','22238','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18930,'files','22239','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18931,'files','22240','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18932,'files','22241','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18933,'files','22242','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18934,'files','22243','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18935,'files','22244','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18936,'files','22245','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18937,'files','22246','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18938,'files','22247','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18939,'files','22248','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18940,'files','22249','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18941,'files','22250','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18942,'files','22251','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18943,'files','22252','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18944,'files','22253','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18945,'files','22254','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18946,'files','22255','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18947,'files','22256','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18948,'files','22257','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18949,'files','22258','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18950,'files','22259','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18951,'files','22260','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18952,'files','22261','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18953,'files','22262','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18954,'files','22263','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18955,'files','22264','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18956,'files','22265','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18957,'files','22266','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18958,'files','22267','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18959,'files','22268','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18960,'files','22269','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18961,'files','22270','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18962,'files','22271','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18963,'files','22272','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18964,'files','22273','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18965,'files','22274','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18966,'files','22275','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18967,'files','22276','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18968,'files','22277','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18969,'files','22278','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18970,'files','22279','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18971,'files','22280','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18972,'files','22281','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18973,'files','22282','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18974,'files','22283','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18975,'files','22284','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18976,'files','22285','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18977,'files','22286','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18978,'files','22287','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18979,'files','22288','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18980,'files','22289','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18981,'files','22290','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18982,'files','22291','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18983,'files','22292','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18984,'files','22293','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18985,'files','22294','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18986,'files','22295','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18987,'files','22296','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18988,'files','22297','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18989,'files','22298','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18990,'files','22299','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18991,'files','22300','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18992,'files','22301','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18993,'files','22302','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18994,'files','22303','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18995,'files','22304','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18996,'files','22305','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18997,'files','22306','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18998,'files','22307','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18999,'files','22308','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19000,'files','22309','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19001,'files','22310','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19002,'files','22311','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19003,'files','22312','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19004,'files','22313','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19005,'files','22314','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19006,'files','22315','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19007,'files','22316','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19008,'files','22317','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19009,'files','22318','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19010,'files','22319','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19011,'files','22320','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19012,'files','22321','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19013,'files','22322','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19014,'files','22323','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19015,'files','22324','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19016,'files','22325','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19017,'files','22326','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19018,'files','22327','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19019,'files','22328','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19020,'files','22329','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19021,'files','22330','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19022,'files','22331','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19023,'files','22332','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19024,'files','22333','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19025,'files','22334','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19026,'files','22335','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19027,'files','22336','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19028,'files','22337','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19029,'files','22338','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19030,'files','22339','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19031,'files','22340','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19032,'files','22341','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19033,'files','22342','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19034,'files','22343','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19035,'files','22344','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19036,'files','22345','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19037,'files','22346','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19038,'files','22347','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19039,'files','22348','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19040,'files','22349','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19041,'files','22350','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19042,'files','22351','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19043,'files','22352','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19044,'files','22353','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19045,'files','22354','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19046,'files','22355','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19047,'files','22356','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19048,'files','22357','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19049,'files','22358','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19050,'files','22359','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19051,'files','22360','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19052,'files','22361','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19053,'files','22362','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19054,'files','22363','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19055,'files','22364','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19056,'files','22365','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19057,'files','22366','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19058,'files','22367','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19059,'files','22368','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19060,'files','22369','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19061,'files','22370','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19062,'files','22371','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19063,'files','22372','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19064,'files','22373','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19065,'files','22374','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19066,'files','22375','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19067,'files','22376','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19068,'files','22377','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19069,'files','22378','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19070,'files','22379','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19071,'files','22380','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19072,'files','22381','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19073,'files','22382','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19074,'files','22383','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19075,'files','22384','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19076,'files','22385','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19077,'files','22386','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19078,'files','22387','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19079,'files','22388','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19080,'files','22389','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19081,'files','22390','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19082,'files','22391','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19083,'files','22392','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19084,'files','22393','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19085,'files','22394','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19086,'files','22395','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19087,'files','22396','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19088,'files','22397','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19089,'files','22398','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19090,'files','22399','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19091,'files','22400','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19092,'files','22401','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19093,'files','22402','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19094,'files','22403','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19095,'files','22404','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19096,'files','22405','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19097,'files','22406','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19098,'files','22407','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19099,'files','22408','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19100,'files','22409','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19101,'files','22410','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19102,'files','22411','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19103,'files','22412','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19104,'files','22413','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19105,'files','22414','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19106,'files','22415','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19107,'files','22416','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19108,'files','22417','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19109,'files','22418','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19110,'files','22419','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19111,'files','22420','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19112,'files','22421','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19113,'files','22422','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19114,'files','22423','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19115,'files','22424','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19116,'files','22425','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19117,'files','22426','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19118,'files','22427','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19119,'files','22428','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19120,'files','22429','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19121,'files','22430','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19122,'files','22431','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19123,'files','22432','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19124,'files','22433','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19125,'files','22434','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19126,'files','22435','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19127,'files','22436','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19128,'files','22437','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19129,'files','22438','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19130,'files','22439','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19131,'files','22440','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19132,'files','22441','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19133,'files','22442','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19134,'files','22443','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19135,'files','22444','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19136,'files','22445','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19137,'files','22446','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19138,'files','22447','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19139,'files','22448','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19140,'files','22449','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19141,'files','22450','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19142,'files','22451','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19143,'files','22452','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19144,'files','22453','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19145,'files','22454','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19146,'files','22455','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19147,'files','22456','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19148,'files','22457','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19149,'files','22458','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19150,'files','22459','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19151,'files','22460','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19152,'files','22461','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19153,'files','22462','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19154,'files','22463','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19155,'files','22464','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19156,'files','22465','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19157,'files','22466','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19158,'files','22467','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19159,'files','22468','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19160,'files','22469','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19161,'files','22470','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19162,'files','22471','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19163,'files','22472','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19164,'files','22473','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19165,'files','22474','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19166,'files','22475','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19167,'files','22476','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19168,'files','22477','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19169,'files','22478','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19170,'files','22479','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19171,'files','22480','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19172,'files','22481','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19173,'files','22482','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19174,'files','22483','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19175,'files','22484','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19176,'files','22485','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19177,'files','22486','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19178,'files','22487','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19179,'files','22488','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19180,'files','22489','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19181,'files','22490','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19182,'files','22491','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19183,'files','22492','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19184,'files','22493','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19185,'files','22494','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19186,'files','22495','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19187,'files','22496','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19188,'files','22497','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19189,'files','22498','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19190,'files','22499','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19191,'files','22500','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19192,'files','22501','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19193,'files','22502','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19194,'files','22503','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19195,'files','22504','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19196,'files','22505','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19197,'files','22506','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19198,'files','22507','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19199,'files','22508','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19200,'files','22509','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19201,'files','22510','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19202,'files','22511','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19203,'files','22512','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19204,'files','22513','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19205,'files','22514','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19206,'files','22515','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19207,'files','22516','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19208,'files','22517','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19209,'files','22518','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19210,'files','22519','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19211,'files','22520','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19212,'files','22521','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19213,'files','22522','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19214,'files','22523','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19215,'files','22524','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19216,'files','22525','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19217,'files','22526','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19218,'files','22528','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19219,'files','22530','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19220,'files','22531','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19221,'files','22532','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19222,'files','22533','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19223,'files','22534','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19224,'files','22535','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19225,'files','22536','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19226,'files','22537','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19227,'files','22538','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19228,'files','22539','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19229,'files','22540','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19230,'files','22541','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19231,'files','22542','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19232,'files','22543','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19233,'files','22544','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19234,'files','22545','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19235,'files','22546','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19236,'files','22547','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19237,'files','22548','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19238,'files','22549','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19239,'files','22550','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19240,'files','22551','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19241,'files','22552','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19242,'files','22553','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19243,'files','22554','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19244,'files','22555','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19245,'files','22556','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19246,'files','22557','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19247,'files','22558','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19248,'files','22559','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19249,'files','22560','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19250,'files','22561','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19251,'files','22562','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19252,'files','22563','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19253,'files','22564','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19254,'files','22565','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19255,'files','22566','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19256,'files','22567','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19257,'files','22568','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19258,'files','22569','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19259,'files','22570','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19260,'files','22571','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19261,'files','22572','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19262,'files','22573','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19263,'files','22574','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19264,'files','22575','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19265,'files','22576','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19266,'files','22577','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19267,'files','22578','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19268,'files','22579','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19269,'files','22580','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19270,'files','22581','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19271,'files','22582','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19272,'files','22583','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19273,'files','22584','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19274,'files','22585','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19275,'files','22586','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19276,'files','22587','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19277,'files','22588','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19278,'files','22589','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19279,'files','22590','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19280,'files','22591','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19281,'files','22592','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19282,'files','22593','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19283,'files','22594','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19284,'files','22595','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19285,'files','22596','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19286,'files','22597','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19287,'files','22598','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19288,'files','22599','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19289,'files','22600','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19290,'files','22601','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19291,'files','22602','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19292,'files','22603','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19293,'files','22604','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19294,'files','22605','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19295,'files','22606','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19296,'files','22607','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19297,'files','22608','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19298,'files','22609','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19299,'files','22610','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19300,'files','22611','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19301,'files','22612','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19302,'files','22613','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19303,'files','22614','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19304,'files','22615','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19305,'files','22616','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19306,'files','22617','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19307,'files','22618','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19308,'files','22619','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19309,'files','22620','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19310,'files','22621','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19311,'files','22622','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19312,'files','22623','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19313,'files','22624','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19314,'files','22625','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19315,'files','22626','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19316,'files','22627','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19317,'files','22629','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19318,'files','22630','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19319,'files','22631','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19320,'files','22632','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19321,'files','22633','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19322,'files','22634','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19323,'files','22635','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19324,'files','22636','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19325,'files','22637','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19326,'files','22638','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19327,'files','22639','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19328,'files','22640','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19329,'files','22641','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19330,'files','22642','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19331,'files','22643','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19332,'files','22644','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19333,'files','22645','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19334,'files','22646','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19335,'files','22647','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19336,'files','22648','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19337,'files','22649','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19338,'files','22650','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19339,'files','22651','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19340,'files','22652','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19341,'files','22653','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19342,'files','22654','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19343,'files','22655','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19344,'files','22656','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19345,'files','22657','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19346,'files','22658','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19347,'files','22659','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19348,'files','22660','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19349,'files','22661','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19350,'files','22662','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19351,'files','22663','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19352,'files','22664','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19353,'files','22665','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19354,'files','22666','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19355,'files','22667','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19356,'files','22668','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19357,'files','22669','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19358,'files','22670','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19359,'files','22671','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19360,'files','22672','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19361,'files','22673','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19362,'files','22674','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19363,'files','22675','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19364,'files','22676','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19365,'files','22677','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19366,'files','22678','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19367,'files','22679','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19368,'files','22680','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19369,'files','22681','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19370,'files','22682','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19371,'files','22683','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19372,'files','22684','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19373,'files','22685','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19374,'files','22686','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19375,'files','22687','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19376,'files','22688','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19377,'files','22689','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19378,'files','22690','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19379,'files','22691','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19380,'files','22692','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19381,'files','22693','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19382,'files','22694','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19383,'files','22695','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19384,'files','22696','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19385,'files','22697','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19386,'files','22698','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19387,'files','22699','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19388,'files','22700','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19389,'files','22701','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19390,'files','22702','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19391,'files','22703','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19392,'files','22704','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19393,'files','22705','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19394,'files','22706','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19395,'files','22707','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19396,'files','22708','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19397,'files','22709','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19398,'files','22710','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19399,'files','22711','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19400,'files','22712','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19401,'files','22713','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19402,'files','22714','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19403,'files','22715','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19404,'files','22716','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19405,'files','22717','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19406,'files','22718','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19407,'files','22719','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19408,'files','22720','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19409,'files','22721','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19410,'files','22722','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19411,'files','22723','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19412,'files','22724','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19413,'files','22725','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19414,'files','22726','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19415,'files','22727','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19416,'files','22728','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19417,'files','22729','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19418,'files','22730','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19419,'files','22731','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19420,'files','22732','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19421,'files','22733','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19422,'files','22734','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19423,'files','22735','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19424,'files','22736','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19425,'files','22737','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19426,'files','22738','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19427,'files','22739','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19428,'files','22740','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19429,'files','22741','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19430,'files','22742','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19431,'files','22743','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19432,'files','22744','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19433,'files','22745','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19434,'files','22746','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19435,'files','22747','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19436,'files','22748','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19437,'files','22749','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19438,'files','22750','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19439,'files','22751','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19440,'files','22752','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19441,'files','22753','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19442,'files','22754','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19443,'files','22755','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19444,'files','22756','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19445,'files','22757','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19446,'files','22758','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19447,'files','22759','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19448,'files','22760','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19449,'files','22761','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19450,'files','22762','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19451,'files','22763','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19452,'files','22764','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19453,'files','22765','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19454,'files','22766','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19455,'files','22767','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19456,'files','22768','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19457,'files','22769','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19458,'files','22770','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19459,'files','22771','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19460,'files','22772','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19461,'files','22773','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19462,'files','22774','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19463,'files','22775','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19464,'files','22776','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19465,'files','22777','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19466,'files','22778','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19467,'files','22779','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19468,'files','22780','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19469,'files','22781','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19470,'files','22782','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19471,'files','22783','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19472,'files','22784','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19473,'files','22785','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19474,'files','22786','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19475,'files','22787','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19476,'files','22788','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19477,'files','22789','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19478,'files','22790','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19479,'files','22791','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19480,'files','22792','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19481,'files','22793','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19482,'files','22794','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19483,'files','22795','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19484,'files','22796','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19485,'files','22797','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19486,'files','22798','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19487,'files','22799','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19488,'files','22800','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19489,'files','22801','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19490,'files','22802','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19491,'files','22803','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19492,'files','22804','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19493,'files','22805','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19494,'files','22806','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19495,'files','22807','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19496,'files','22808','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19497,'files','22809','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19498,'files','22810','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19499,'files','22811','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19500,'files','22812','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19501,'files','22813','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19502,'files','22814','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19503,'files','22815','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19504,'files','22816','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19505,'files','22817','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19506,'files','22818','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19507,'files','22819','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19508,'files','22820','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19509,'files','22821','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19510,'files','22822','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19511,'files','22823','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19512,'files','22824','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19513,'files','22825','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19514,'files','22826','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19515,'files','22827','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19516,'files','22828','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19517,'files','22829','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19518,'files','22830','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19519,'files','22831','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19520,'files','22832','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19521,'files','22833','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19522,'files','22834','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19523,'files','22835','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19524,'files','22836','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19525,'files','22837','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19526,'files','22838','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19527,'files','22839','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19528,'files','22840','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19529,'files','22841','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19530,'files','22842','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19531,'files','22843','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19532,'files','22844','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19533,'files','22845','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19534,'files','22846','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19535,'files','22847','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19536,'files','22848','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19537,'files','22849','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19538,'files','22850','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19539,'files','22851','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19540,'files','22852','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19541,'files','22853','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19542,'files','22854','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19543,'files','22855','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19544,'files','22856','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19545,'files','22857','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19546,'files','22858','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19547,'files','22859','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19548,'files','22860','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19549,'files','22861','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19550,'files','22862','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19551,'files','22863','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19552,'files','22864','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19553,'files','22865','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19554,'files','22866','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19555,'files','22867','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19556,'files','22868','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19557,'files','22869','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19558,'files','22870','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19559,'files','22871','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19560,'files','22872','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19561,'files','22873','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19562,'files','22874','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19563,'files','22875','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19564,'files','22876','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19565,'files','22877','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19566,'files','22878','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19567,'files','22879','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19568,'files','22880','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19569,'files','22881','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19570,'files','22882','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19571,'files','22883','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19572,'files','22884','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19573,'files','22885','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19574,'files','22886','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19575,'files','22887','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19576,'files','22888','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19577,'files','22889','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19578,'files','22890','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19579,'files','22891','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19580,'files','22892','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19581,'files','22893','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19582,'files','22894','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19583,'files','22895','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19584,'files','22896','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19585,'files','22897','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19586,'files','22898','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19587,'files','22899','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19588,'files','22900','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19589,'files','22901','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19590,'files','22902','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19591,'files','22903','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19592,'files','22904','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19593,'files','22905','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19594,'files','22906','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19595,'files','22907','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19596,'files','22908','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19597,'files','22909','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19598,'files','22910','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19599,'files','22911','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19600,'files','22912','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19601,'files','22913','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19602,'files','22914','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19603,'files','22915','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19604,'files','22916','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19605,'files','22917','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19606,'files','22918','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19607,'files','22919','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19608,'files','22920','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19609,'files','22921','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19610,'files','22922','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19611,'files','22923','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19612,'files','22924','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19613,'files','22925','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19614,'files','22926','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19615,'files','22927','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19616,'files','22928','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19617,'files','22929','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19618,'files','22930','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19619,'files','22931','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19620,'files','22932','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19621,'files','22933','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19622,'files','22934','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19623,'files','22935','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19624,'files','22936','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19625,'files','22937','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19626,'files','22938','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19627,'files','22939','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19628,'files','22940','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19629,'files','22941','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19630,'files','22942','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19631,'files','22943','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19632,'files','22944','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19633,'files','22945','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19634,'files','22946','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19635,'files','22947','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19636,'files','22948','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19637,'files','22949','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19638,'files','22950','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19639,'files','22951','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19640,'files','22952','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19641,'files','22953','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19642,'files','22954','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19643,'files','22955','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19644,'files','22956','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19645,'files','22957','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19646,'files','22958','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19647,'files','22959','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19648,'files','22960','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19649,'files','22961','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19650,'files','22962','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19651,'files','22963','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19652,'files','22964','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19653,'files','22965','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19654,'files','22966','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19655,'files','22967','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19656,'files','22968','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19657,'files','22969','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19658,'files','22970','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19659,'files','22971','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19660,'files','22972','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19661,'files','22973','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19662,'files','22974','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19663,'files','22975','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19664,'files','22976','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19665,'files','22977','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19666,'files','22978','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19667,'files','22979','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19668,'files','22980','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19669,'files','22981','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19670,'files','22982','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19671,'files','22983','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19672,'files','22984','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19673,'files','22985','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19674,'files','22986','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19675,'files','22987','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19676,'files','22988','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19677,'files','22989','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19678,'files','22990','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19679,'files','22991','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19680,'files','22992','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19681,'files','22993','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19682,'files','22994','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19683,'files','22995','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19684,'files','22996','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19685,'files','22997','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19686,'files','22998','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19687,'files','22999','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19688,'files','23000','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19689,'files','23001','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19690,'files','23002','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19691,'files','23003','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19692,'files','23004','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19693,'files','23005','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19694,'files','23006','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19695,'files','23007','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19696,'files','23008','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19697,'files','23009','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19698,'files','23010','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19699,'files','23011','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19700,'files','23012','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19701,'files','23013','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19702,'files','23014','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19703,'files','23015','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19704,'files','23016','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19705,'files','23017','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19706,'files','23018','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19707,'files','23019','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19708,'files','23020','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19709,'files','23021','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19710,'files','23022','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19711,'files','23023','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19712,'files','23024','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19713,'files','23025','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19714,'files','23026','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19715,'files','23027','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19716,'files','23028','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19717,'files','23029','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19718,'files','23030','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19719,'files','23031','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19720,'files','23032','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19721,'files','23033','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19722,'files','23034','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19723,'files','23035','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19724,'files','23036','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19725,'files','23037','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19726,'files','23038','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19727,'files','23039','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19728,'files','23040','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19729,'files','23041','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19730,'files','23042','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19731,'files','23043','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19732,'files','23044','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19733,'files','23045','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19734,'files','23046','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19735,'files','23047','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19736,'files','23048','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19737,'files','23049','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19738,'files','23050','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19739,'files','23051','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19740,'files','23052','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19741,'files','23053','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19742,'files','23054','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19743,'files','23055','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19744,'files','23056','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19745,'files','23057','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19746,'files','23058','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19747,'files','23059','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19748,'files','23060','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19749,'files','23061','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19750,'files','23062','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19751,'files','23063','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19752,'files','23064','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19753,'files','23065','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19754,'files','23066','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19755,'files','23067','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19756,'files','23068','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19757,'files','23069','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19758,'files','23070','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19759,'files','23071','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19760,'files','23072','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19761,'files','23073','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19762,'files','23074','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19763,'files','23076','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19764,'files','23077','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19765,'files','23078','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19766,'files','23079','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19767,'files','23080','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19768,'files','23081','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19769,'files','23082','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19770,'files','23083','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19771,'files','23084','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19772,'files','23085','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19773,'files','23086','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19774,'files','23087','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19775,'files','23088','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19776,'files','23089','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19777,'files','23090','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19778,'files','23091','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19779,'files','23092','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19780,'files','23093','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19781,'files','23094','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19782,'files','23095','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19783,'files','23096','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19784,'files','23097','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19785,'files','23098','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19786,'files','23099','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19787,'files','23100','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19788,'files','23101','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19789,'files','23102','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19790,'files','23103','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19791,'files','23104','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19792,'files','23105','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19793,'files','23106','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19794,'files','23107','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19795,'files','23108','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19796,'files','23109','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19797,'files','23110','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19798,'files','23111','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19799,'files','23112','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19800,'files','23113','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19801,'files','23114','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19802,'files','23115','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19803,'files','23116','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19804,'files','23117','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19805,'files','23118','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19806,'files','23119','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19807,'files','23120','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19808,'files','23121','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19809,'files','23122','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19810,'files','23123','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19811,'files','23124','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19812,'files','23125','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19813,'files','23126','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19814,'files','23127','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19815,'files','23128','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19816,'files','23129','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19817,'files','23130','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19818,'files','23131','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19819,'files','23132','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19820,'files','23133','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19821,'files','23134','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19822,'files','23135','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19823,'files','23136','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19824,'files','23137','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19825,'files','23138','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19826,'files','23139','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19827,'files','23141','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19828,'files','23142','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19829,'files','23144','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19830,'files','23145','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19831,'files','23147','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19832,'files','23148','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19833,'files','23150','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19834,'files','23152','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19835,'files','23154','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19836,'files','23155','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19837,'files','23157','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19838,'files','23158','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19839,'files','23160','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19840,'files','23161','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19841,'files','23162','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19842,'files','23163','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19843,'files','23164','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19844,'files','23165','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19845,'files','23166','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19846,'files','23167','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19847,'files','23168','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19848,'files','23169','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19849,'files','23170','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19850,'files','23171','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19851,'files','23172','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19852,'files','23173','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19853,'files','23174','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19854,'files','23175','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19855,'files','23176','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19856,'files','23177','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19857,'files','23178','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19858,'files','23180','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19859,'files','23181','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19860,'files','23182','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19861,'files','23183','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19862,'files','23184','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19863,'files','23185','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19864,'files','23186','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19865,'files','23187','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19866,'files','23188','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19867,'files','23189','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19868,'files','23190','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19869,'files','23191','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19870,'files','23192','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19871,'files','23193','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19872,'files','23194','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19873,'files','23195','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19874,'files','23196','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19875,'files','23197','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19876,'files','23198','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19877,'files','23199','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19878,'files','23200','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19879,'files','23201','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19880,'files','23202','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19881,'files','23203','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19882,'files','23204','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19883,'files','23205','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19884,'files','23206','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19885,'files','23207','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19886,'files','23209','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19887,'files','23212','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19888,'files','23213','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19889,'files','23214','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19890,'files','23215','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19891,'files','23216','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19892,'files','23217','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19893,'files','23218','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19894,'files','23219','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19895,'files','23220','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19896,'files','23221','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19897,'files','23222','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19898,'files','23223','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19899,'files','23224','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19900,'files','23225','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19901,'files','23226','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19902,'files','23227','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19903,'files','23228','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19904,'files','23229','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19905,'files','23230','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19906,'files','23231','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19907,'files','23232','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19908,'files','23233','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19909,'files','23234','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19910,'files','23235','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19911,'files','23236','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19912,'files','23237','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19913,'files','23238','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19914,'files','23239','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19915,'files','23240','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19916,'files','23241','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19917,'files','23242','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19918,'files','23243','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19919,'files','23244','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19920,'files','23245','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19921,'files','23246','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19922,'files','23247','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19923,'files','23248','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19924,'files','23249','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19925,'files','23250','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19926,'files','23251','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19927,'files','23252','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19928,'files','23253','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19929,'files','23254','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19930,'files','23255','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19931,'files','23256','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19932,'files','23257','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19933,'files','23258','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19934,'files','23259','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19935,'files','23260','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19936,'files','23261','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19937,'files','23262','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19938,'files','23263','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19939,'files','23264','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19940,'files','23265','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19941,'files','23266','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19942,'files','23267','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19943,'files','23268','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19944,'files','23269','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19945,'files','23270','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19946,'files','23271','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19947,'files','23272','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19948,'files','23273','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19949,'files','23274','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19950,'files','23275','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19951,'files','23276','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19952,'files','23277','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19953,'files','23278','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19954,'files','23279','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19955,'files','23280','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19956,'files','23281','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19957,'files','23282','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19958,'files','23283','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19959,'files','23284','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19960,'files','23285','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19961,'files','23286','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19962,'files','23287','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19963,'files','23288','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19964,'files','23289','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19965,'files','23290','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19966,'files','23291','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19967,'files','23292','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19968,'files','23293','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19969,'files','23294','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19970,'files','23295','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19971,'files','23296','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19972,'files','23297','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19973,'files','23298','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19974,'files','23299','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19975,'files','23300','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19976,'files','23301','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19977,'files','23302','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19978,'files','23303','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19979,'files','23304','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19980,'files','23305','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19981,'files','23306','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19982,'files','23307','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19983,'files','23308','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19984,'files','23309','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19985,'files','23310','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19986,'files','23311','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19987,'files','23312','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19988,'files','23313','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19989,'files','23314','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19990,'files','23315','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19991,'files','23316','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19992,'files','23317','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19993,'files','23318','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19994,'files','23319','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19995,'files','23320','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19996,'files','23321','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19997,'files','23322','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19998,'files','23323','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19999,'files','23324','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20000,'files','23325','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20001,'files','23326','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20002,'files','23327','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20003,'files','23328','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20004,'files','23329','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20005,'files','23330','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20006,'files','23331','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20007,'files','23332','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20008,'files','23333','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20009,'files','23334','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20010,'files','23335','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20011,'files','23336','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20012,'files','23337','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20013,'files','23338','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20014,'files','23339','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20015,'files','23340','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20016,'files','23341','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20017,'files','23342','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20018,'files','23343','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20019,'files','23344','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20020,'files','23345','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20021,'files','23346','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20022,'files','23347','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20023,'files','23348','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20024,'files','23349','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20025,'files','23350','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20026,'files','23351','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20027,'files','23352','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20028,'files','23353','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20029,'files','23354','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20030,'files','23355','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20031,'files','23356','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20032,'files','23357','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20033,'files','23358','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20034,'files','23359','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20035,'files','23360','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20036,'files','23361','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20037,'files','23362','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20038,'files','23363','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20039,'files','23364','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20040,'files','23365','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20041,'files','23366','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20042,'files','23367','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20043,'files','23368','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20044,'files','23369','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20045,'files','23370','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20046,'files','23371','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20047,'files','23372','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20048,'files','23373','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20049,'files','23374','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20050,'files','23375','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20051,'files','23376','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20052,'files','23377','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20053,'files','23378','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20054,'files','23379','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20055,'files','23380','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20056,'files','23381','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20057,'files','23382','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20058,'files','23383','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20059,'files','23384','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20060,'files','23386','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20061,'files','23387','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20062,'files','23388','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20063,'files','23390','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20064,'files','23391','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20065,'files','23392','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20066,'files','23393','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20067,'files','23394','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20068,'files','23395','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20069,'files','23396','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20070,'files','23397','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20071,'files','23398','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20072,'files','23399','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20073,'files','23400','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20074,'files','23401','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20075,'files','23402','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20076,'files','23403','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20077,'files','23404','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20078,'files','23405','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20079,'files','23406','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20080,'files','23407','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20081,'files','23409','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20082,'files','23410','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20083,'files','23411','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20084,'files','23412','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20085,'files','23413','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20086,'files','23414','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20087,'files','23415','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20088,'files','23416','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20089,'files','23417','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20090,'files','23418','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20091,'files','23419','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20092,'files','23420','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20093,'files','23421','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20094,'files','23422','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20095,'files','23423','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20096,'files','23424','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20097,'files','23425','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20098,'files','23426','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20099,'files','23427','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20100,'files','23428','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20101,'files','23429','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20102,'files','23430','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20103,'files','23431','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20104,'files','23432','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20105,'files','23433','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20106,'files','23434','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20107,'files','23435','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20108,'files','23436','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20109,'files','23437','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20110,'files','23438','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20111,'files','23439','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20112,'files','23440','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20113,'files','23441','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20114,'files','23442','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20115,'files','23443','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20116,'files','23444','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20117,'files','23445','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20118,'files','23446','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20119,'files','23447','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20120,'files','23448','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20121,'files','23449','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20122,'files','23450','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20123,'files','23451','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20124,'files','23452','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20125,'files','23453','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20126,'files','23454','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20127,'files','23455','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20128,'files','23456','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20129,'files','23457','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20130,'files','23458','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20131,'files','23459','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20132,'files','23460','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20133,'files','23461','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20134,'files','23462','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20135,'files','23463','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20136,'files','23464','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20137,'files','23465','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20138,'files','23466','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20139,'files','23467','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20140,'files','23468','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20141,'files','23469','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20142,'files','23470','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20143,'files','23471','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20144,'files','23472','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20145,'files','23474','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20146,'files','23475','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20147,'files','23476','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20148,'files','23477','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20149,'files','23478','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20150,'files','23479','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20151,'files','23480','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20152,'files','23481','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20153,'files','23482','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20154,'files','23483','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20155,'files','23484','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20156,'files','23485','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20157,'files','23486','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20158,'files','23487','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20159,'files','23488','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20160,'files','23489','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20161,'files','23490','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20162,'files','23491','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20163,'files','23492','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20164,'files','23493','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20165,'files','23494','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20166,'files','23495','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20167,'files','23496','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20168,'files','23497','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20169,'files','23498','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20170,'files','23499','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20171,'files','23500','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20172,'files','23501','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20173,'files','23502','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20174,'files','23503','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20175,'files','23504','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20176,'files','23505','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20177,'files','23506','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20178,'files','23507','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20179,'files','23508','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20180,'files','23509','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20181,'files','23510','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20182,'files','23511','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20183,'files','23512','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20184,'files','23513','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20185,'files','23514','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20186,'files','23515','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20187,'files','23516','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20188,'files','23517','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20189,'files','23518','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20190,'files','23519','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20191,'files','23520','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20192,'files','23521','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20193,'files','23522','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20194,'files','23523','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20195,'files','23524','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20196,'files','23526','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20197,'files','23527','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20198,'files','23528','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20199,'files','23529','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20200,'files','23530','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20201,'files','23531','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20202,'files','23532','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20203,'files','23533','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20204,'files','23534','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20205,'files','23535','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20206,'files','23536','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20207,'files','23537','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20208,'files','23538','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20209,'files','23539','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20210,'files','23540','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20211,'files','23541','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20212,'files','23542','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20213,'files','23543','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20214,'files','23544','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20215,'files','23545','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20216,'files','23546','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20217,'files','23547','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20218,'files','23548','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20219,'files','23549','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20220,'files','23550','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20221,'files','23551','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20222,'files','23552','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20223,'files','23553','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20224,'files','23554','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20225,'files','23555','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20226,'files','23556','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20227,'files','23557','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20228,'files','23558','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20229,'files','23559','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20230,'files','23560','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20231,'files','23561','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20232,'files','23562','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20233,'files','23563','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20234,'files','23564','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20235,'files','23565','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20236,'files','23566','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20237,'files','23567','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20238,'files','23568','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20239,'files','23569','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20240,'files','23570','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20241,'files','23571','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20242,'files','23572','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20243,'files','23573','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20244,'files','23574','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20245,'files','23575','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20246,'files','23576','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20247,'files','23577','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20248,'files','23578','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20249,'files','23579','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20250,'files','23580','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20251,'files','23581','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20252,'files','23583','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20253,'files','23584','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20254,'files','23586','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20255,'files','23587','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20256,'files','23588','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20257,'files','23589','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20258,'files','23591','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20259,'files','23592','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20260,'files','23593','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20261,'files','23594','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20262,'files','23595','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20263,'files','23596','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20264,'files','23597','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20265,'files','23598','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20266,'files','23599','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20267,'files','23600','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20268,'files','23601','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20269,'files','23602','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20270,'files','23603','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20271,'files','23604','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20272,'files','23605','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20273,'files','23606','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20274,'files','23607','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20275,'files','23608','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20276,'files','23609','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20277,'files','23610','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20278,'files','23611','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20279,'files','23612','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20280,'files','23614','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20281,'files','23615','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20282,'files','23616','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20283,'files','23617','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20284,'files','23618','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20285,'files','23619','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20286,'files','23620','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20287,'files','23621','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20288,'files','23622','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20289,'files','23623','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20290,'files','23624','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20291,'files','23625','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20292,'files','23626','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20293,'files','23627','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20294,'files','23628','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20295,'files','23629','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20296,'files','23630','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20297,'files','23631','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20298,'files','23632','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20299,'files','23633','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20300,'files','23634','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20301,'files','23635','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20302,'files','23636','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20303,'files','23637','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20304,'files','23638','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20305,'files','23639','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20306,'files','23640','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20307,'files','23641','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20308,'files','23642','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20309,'files','23643','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20310,'files','23644','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20311,'files','23645','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20312,'files','23646','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20313,'files','23647','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20314,'files','23648','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20315,'files','23649','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20316,'files','23650','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20317,'files','23651','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20318,'files','23652','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20319,'files','23653','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20320,'files','23654','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20321,'files','23655','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20322,'files','23656','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20323,'files','23657','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20324,'files','23658','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20325,'files','23659','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20326,'files','23660','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20327,'files','23661','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20328,'files','23662','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20329,'files','23663','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20330,'files','23664','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20331,'files','23665','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20332,'files','23666','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20333,'files','23667','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20334,'files','23668','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20335,'files','23669','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20336,'files','23670','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20337,'files','23671','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20338,'files','23672','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20339,'files','23673','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20340,'files','23674','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20341,'files','23675','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20342,'files','23676','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20343,'files','23677','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20344,'files','23678','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20345,'files','23679','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20346,'files','23680','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20347,'files','23681','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20348,'files','23682','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20349,'files','23683','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20350,'files','23684','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20351,'files','23685','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20352,'files','23686','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20353,'files','23687','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20354,'files','23688','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20355,'files','23689','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20356,'files','23690','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20357,'files','23691','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20358,'files','23692','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20359,'files','23693','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20360,'files','23694','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20361,'files','23695','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20362,'files','23696','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20363,'files','23697','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20364,'files','23698','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20365,'files','23699','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20366,'files','23700','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20367,'files','23701','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20368,'files','23702','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20369,'files','23703','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20370,'files','23704','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20371,'files','23705','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20372,'files','23706','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20373,'files','23707','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20374,'files','23708','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20375,'files','23709','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20376,'files','23710','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20377,'files','23711','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20378,'files','23712','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20379,'files','23713','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20380,'files','23714','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20381,'files','23715','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20382,'files','23716','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20383,'files','23717','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20384,'files','23718','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20385,'files','23719','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20386,'files','23720','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20387,'files','23721','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20388,'files','23722','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20389,'files','23723','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20390,'files','23724','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20391,'files','23725','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20392,'files','23726','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20393,'files','23727','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20394,'files','23728','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20395,'files','23729','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20396,'files','23730','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20397,'files','23731','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20398,'files','23732','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20399,'files','23733','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20400,'files','23734','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20401,'files','23735','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20402,'files','23736','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20403,'files','23737','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20404,'files','23738','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20405,'files','23739','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20406,'files','23740','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20407,'files','23741','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20408,'files','23742','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20409,'files','23743','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20410,'files','23744','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20411,'files','23745','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20412,'files','23746','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20413,'files','23747','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20414,'files','23748','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20415,'files','23749','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20416,'files','23750','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20417,'files','23751','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20418,'files','23752','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20419,'files','23753','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20420,'files','23754','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20421,'files','23755','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20422,'files','23756','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20423,'files','23757','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20424,'files','23758','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20425,'files','23759','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20426,'files','23760','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20427,'files','23761','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20428,'files','23762','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20429,'files','23763','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20430,'files','23764','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20431,'files','23765','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20432,'files','23766','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20433,'files','23767','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20434,'files','23768','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20435,'files','23769','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20436,'files','23770','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20437,'files','23771','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20438,'files','23772','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20439,'files','23773','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20440,'files','23774','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20441,'files','23775','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20442,'files','23776','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20443,'files','23777','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20444,'files','23778','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20445,'files','23779','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20446,'files','23780','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20447,'files','23781','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20448,'files','23782','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20449,'files','23783','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20450,'files','23785','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20451,'files','23787','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20452,'files','23788','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20453,'files','23789','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20454,'files','23790','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20455,'files','23791','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20456,'files','23792','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20457,'files','23793','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20458,'files','23794','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20459,'files','23795','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20460,'files','23796','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20461,'files','23797','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20462,'files','23798','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20463,'files','23799','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20464,'files','23800','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20465,'files','23801','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20466,'files','23802','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20467,'files','23803','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20468,'files','23804','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20469,'files','23805','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20470,'files','23806','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20471,'files','23807','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20472,'files','23808','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20473,'files','23809','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20474,'files','23811','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20475,'files','23813','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20476,'files','23815','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20477,'files','23817','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20478,'files','23818','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20479,'files','23819','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20480,'files','23820','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20481,'files','23821','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20482,'files','23822','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20483,'files','23823','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20484,'files','23824','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20485,'files','23825','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20486,'files','23826','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20487,'files','23827','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20488,'files','23828','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20489,'files','23829','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20490,'files','23830','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20491,'files','23831','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20492,'files','23832','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20493,'files','23833','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20494,'files','23834','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20495,'files','23835','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20496,'files','23836','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20497,'files','23837','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20498,'files','23838','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20499,'files','23839','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20500,'files','23840','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20501,'files','23841','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20502,'files','23842','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20503,'files','23843','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20504,'files','23844','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20505,'files','23845','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20506,'files','23846','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20507,'files','23847','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20508,'files','23848','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20509,'files','23849','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20510,'files','23850','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20511,'files','23851','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20512,'files','23852','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20513,'files','23853','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20514,'files','23854','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20515,'files','23855','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20516,'files','23856','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20517,'files','23857','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20518,'files','23858','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20519,'files','23859','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20520,'files','23860','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20521,'files','23861','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20522,'files','23862','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20523,'files','23863','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20524,'files','23864','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20525,'files','23865','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20526,'files','23866','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20527,'files','23867','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20528,'files','23868','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20529,'files','23869','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20530,'files','23870','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20531,'files','23871','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20532,'files','23872','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20533,'files','23873','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20534,'files','23874','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20535,'files','23875','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20536,'files','23876','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20537,'files','23877','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20538,'files','23878','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20539,'files','23879','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20540,'files','23880','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20541,'files','23881','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20542,'files','23882','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20543,'files','23883','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20544,'files','23884','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20545,'files','23885','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20546,'files','23886','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20547,'files','23887','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20548,'files','23888','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20549,'files','23889','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20550,'files','23890','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20551,'files','23891','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20552,'files','23892','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20553,'files','23893','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20554,'files','23894','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20555,'files','23895','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20556,'files','23896','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20557,'files','23897','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20558,'files','23898','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20559,'files','23899','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20560,'files','23900','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20561,'files','23901','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20562,'files','23902','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20563,'files','23903','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20564,'files','23904','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20565,'files','23905','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20566,'files','23906','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20567,'files','23907','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20568,'files','23908','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20569,'files','23909','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20570,'files','23910','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20571,'files','23911','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20572,'files','23912','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20573,'files','23913','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20574,'files','23914','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20575,'files','23915','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20576,'files','23917','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20577,'files','23921','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20578,'files','23922','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20579,'files','23923','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20580,'files','23924','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20581,'files','23925','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20582,'files','23926','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20583,'files','23927','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20584,'files','23928','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20585,'files','23929','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20586,'files','23930','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20587,'files','23931','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20588,'files','23932','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20589,'files','23933','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20590,'files','23934','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20591,'files','23935','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20592,'files','23936','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20593,'files','23937','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20594,'files','23938','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20595,'files','23939','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20596,'files','23940','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20597,'files','23941','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20598,'files','23942','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20599,'files','23943','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20600,'files','23944','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20601,'files','23945','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20602,'files','23946','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20603,'files','23947','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20604,'files','23948','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20605,'files','23949','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20606,'files','23950','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20607,'files','23951','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20608,'files','23952','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20609,'files','23953','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20610,'files','23954','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20611,'files','23955','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20612,'files','23956','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20613,'files','23957','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20614,'files','23958','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20615,'files','23959','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20616,'files','23960','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20617,'files','23961','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20618,'files','23962','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20619,'files','23963','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20620,'files','23964','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20621,'files','23965','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20622,'files','23966','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20623,'files','23967','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20624,'files','23968','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20625,'files','23969','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20626,'files','23970','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20627,'files','23971','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20628,'files','23972','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20629,'files','23973','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20630,'files','23974','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20631,'files','23975','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20632,'files','23976','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20633,'files','23977','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20634,'files','23978','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20635,'files','23979','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20636,'files','23980','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20637,'files','23981','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20638,'files','23982','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20639,'files','23983','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20640,'files','23984','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20641,'files','23985','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20642,'files','23986','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20643,'files','23987','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20644,'files','23988','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20645,'files','23989','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20646,'files','23990','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20647,'files','23991','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20648,'files','23992','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20649,'files','23993','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20650,'files','23994','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20651,'files','23995','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20652,'files','23996','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20653,'files','23997','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20654,'files','23998','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20655,'files','23999','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20656,'files','24000','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20657,'files','24001','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20658,'files','24002','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20659,'files','24003','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20660,'files','24004','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20661,'files','24005','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20662,'files','24006','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20663,'files','24007','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20664,'files','24008','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20665,'files','24010','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20666,'files','24011','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20667,'files','24012','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20668,'files','24014','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20669,'files','24015','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20670,'files','24016','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20671,'files','24017','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20672,'files','24018','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20673,'files','24019','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20674,'files','24020','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20675,'files','24021','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20676,'files','24022','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20677,'files','24023','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20678,'files','24024','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20679,'files','24025','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20680,'files','24026','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20681,'files','24027','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20682,'files','24028','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20683,'files','24029','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20684,'files','24030','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20685,'files','24031','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20686,'files','24032','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20687,'files','24033','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20688,'files','24034','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20689,'files','24035','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20690,'files','24036','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20691,'files','24037','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20692,'files','24038','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20693,'files','24039','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20694,'files','24040','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20695,'files','24041','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20696,'files','24042','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20697,'files','24043','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20698,'files','24044','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20699,'files','24045','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20700,'files','24046','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20701,'files','24047','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20702,'files','24048','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20703,'files','24049','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20704,'files','24050','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20705,'files','24051','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20706,'files','24052','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20707,'files','24053','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20708,'files','24054','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20709,'files','24055','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20710,'files','24056','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20711,'files','24057','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20712,'files','24058','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20713,'files','24060','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20714,'files','24061','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20715,'files','24062','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20716,'files','24063','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20717,'files','24065','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20718,'files','24066','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20719,'files','24067','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20720,'files','24068','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20721,'files','24069','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20722,'files','24070','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20723,'files','24071','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20724,'files','24072','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20725,'files','24073','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20726,'files','24074','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20727,'files','24075','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20728,'files','24076','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20729,'files','24077','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20730,'files','24078','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20731,'files','24079','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20732,'files','24080','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20733,'files','24081','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20734,'files','24082','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20735,'files','24083','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20736,'files','24084','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20737,'files','24085','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20738,'files','24086','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20739,'files','24087','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20740,'files','24088','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20741,'files','24089','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20742,'files','24090','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20743,'files','24091','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20744,'files','24092','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20745,'files','24093','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20746,'files','24094','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20747,'files','24095','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20748,'files','24096','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20749,'files','24097','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20750,'files','24098','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20751,'files','24099','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20752,'files','24100','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20753,'files','24101','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20754,'files','24102','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20755,'files','24103','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20756,'files','24104','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20757,'files','24105','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20758,'files','24106','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20759,'files','24107','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20760,'files','24108','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20761,'files','24109','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20762,'files','24110','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20763,'files','24111','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20764,'files','24112','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20765,'files','24113','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20766,'files','24114','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20767,'files','24115','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20768,'files','24116','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20769,'files','24117','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20770,'files','24118','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20771,'files','24119','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20772,'files','24120','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20773,'files','24121','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20774,'files','24122','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20775,'files','24123','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20776,'files','24124','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20777,'files','24125','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20778,'files','24126','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20779,'files','24127','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20780,'files','24128','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20781,'files','24129','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20782,'files','24130','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20783,'files','24131','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20784,'files','24132','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20785,'files','24133','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20786,'files','24134','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20787,'files','24135','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20788,'files','24136','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20789,'files','24137','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20790,'files','24138','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20791,'files','24139','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20792,'files','24140','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20793,'files','24141','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20794,'files','24142','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20795,'files','24143','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20796,'files','24144','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20797,'files','24145','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20798,'files','24146','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20799,'files','24147','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20800,'files','24148','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20801,'files','24149','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20802,'files','24150','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20803,'files','24151','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20804,'files','24152','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20805,'files','24153','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20806,'files','24154','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20807,'files','24155','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20808,'files','24156','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20809,'files','24157','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20810,'files','24158','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20811,'files','24159','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20812,'files','24160','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20813,'files','24161','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20814,'files','24162','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20815,'files','24163','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20816,'files','24164','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20817,'files','24165','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20818,'files','24166','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20819,'files','24167','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20820,'files','24168','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20821,'files','24169','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20822,'files','24170','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20823,'files','24171','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20824,'files','24172','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20825,'files','24173','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20826,'files','24174','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20827,'files','24175','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20828,'files','24176','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20829,'files','24177','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20830,'files','24178','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20831,'files','24179','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20832,'files','24180','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20833,'files','24181','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20834,'files','24182','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20835,'files','24183','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20836,'files','24184','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20837,'files','24185','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20838,'files','24186','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20839,'files','24187','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20840,'files','24188','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20841,'files','24189','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20842,'files','24190','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20843,'files','24191','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20844,'files','24192','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20845,'files','24193','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20846,'files','24194','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20847,'files','24195','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20848,'files','24196','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20849,'files','24197','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20850,'files','24198','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20851,'files','24200','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20852,'files','24201','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20853,'files','24202','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20854,'files','24203','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20855,'files','24204','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20856,'files','24205','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20857,'files','24206','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20858,'files','24207','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20859,'files','24208','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20860,'files','24209','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20861,'files','24210','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20862,'files','24211','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20863,'files','24212','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20864,'files','24214','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20865,'files','24215','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20866,'files','24216','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20867,'files','24217','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20868,'files','24218','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20869,'files','24219','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20870,'files','24220','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20871,'files','24221','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20872,'files','24222','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20873,'files','24223','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20874,'files','24224','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20875,'files','24225','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20876,'files','24226','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20877,'files','24227','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20878,'files','24228','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20879,'files','24229','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20880,'files','24230','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20881,'files','24231','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20882,'files','24232','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20883,'files','24233','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20884,'files','24234','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20885,'files','24235','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20886,'files','24236','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20887,'files','24237','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20888,'files','24238','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20889,'files','24239','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20890,'files','24240','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20891,'files','24241','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20892,'files','24242','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20893,'files','24243','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20894,'files','24252','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20895,'files','24253','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20896,'files','24254','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20897,'files','24255','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20898,'files','24256','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20899,'files','24257','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20900,'files','24258','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20901,'files','24259','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20902,'files','24260','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20903,'files','24261','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20904,'files','24262','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20905,'files','24263','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20906,'files','24264','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20907,'files','24265','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20908,'files','24266','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20909,'files','24267','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20910,'files','24268','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20911,'files','24269','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20912,'files','24270','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20913,'files','24271','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20914,'files','24272','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20915,'files','24273','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20916,'files','24274','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20917,'files','24275','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20918,'files','24276','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20919,'files','24277','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20920,'files','24278','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20921,'files','24279','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20922,'files','24280','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20923,'files','24281','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20924,'files','24282','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20925,'files','24283','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20926,'files','24284','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20927,'files','24285','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20928,'files','24286','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20929,'files','24287','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20930,'files','24288','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20931,'files','24289','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20932,'files','24290','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20933,'files','24291','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20934,'files','24292','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20935,'files','24293','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20936,'files','24294','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20937,'files','24295','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20938,'files','24296','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20939,'files','24297','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20940,'files','24298','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20941,'files','24299','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20942,'files','24300','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20943,'files','24301','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20944,'files','24302','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20945,'files','24303','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20946,'files','24304','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20947,'files','24305','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20948,'files','24306','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20949,'files','24307','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20950,'files','24308','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20951,'files','24309','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20952,'files','24310','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20953,'files','24311','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20954,'files','24312','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20955,'files','24313','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20956,'files','24314','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20957,'files','24315','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20958,'files','24316','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20959,'files','24317','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20960,'files','24318','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20961,'files','24319','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20962,'files','24320','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20963,'files','24321','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20964,'files','24322','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20965,'files','24323','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20966,'files','24324','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20967,'files','24325','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20968,'files','24326','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20969,'files','24327','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20970,'files','24328','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20971,'files','24329','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20972,'files','24330','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20973,'files','24331','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20974,'files','24332','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20975,'files','24334','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20976,'files','24335','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20977,'files','24336','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20978,'files','24337','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20979,'files','24338','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20980,'files','24339','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20981,'files','24340','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20982,'files','24341','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20983,'files','24342','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20984,'files','24343','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20985,'files','24344','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20986,'files','24345','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20987,'files','24346','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20988,'files','24347','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20989,'files','24348','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20990,'files','24349','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20991,'files','24350','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20992,'files','24351','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20993,'files','24352','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20994,'files','24353','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20995,'files','24354','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20996,'files','24355','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20997,'files','24356','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20998,'files','24357','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20999,'files','24358','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21000,'files','24359','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21001,'files','24360','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21002,'files','24361','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21003,'files','24362','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21004,'files','24363','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21005,'files','24364','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21006,'files','24365','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21007,'files','24366','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21008,'files','24367','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21009,'files','24368','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21010,'files','24369','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21011,'files','24370','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21012,'files','24371','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21013,'files','24372','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21014,'files','24373','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21015,'files','24374','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21016,'files','24375','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21017,'files','24376','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21018,'files','24377','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21019,'files','24378','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21020,'files','24379','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21021,'files','24380','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21022,'files','24381','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21023,'files','24382','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21024,'files','24383','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21025,'files','24384','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21026,'files','24385','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21027,'files','24386','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21028,'files','24387','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21029,'files','24388','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21030,'files','24389','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21031,'files','24390','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21032,'files','24391','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21033,'files','24392','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21034,'files','24393','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21035,'files','24394','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21036,'files','24395','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21037,'files','24396','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21038,'files','24397','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21039,'files','24398','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21040,'files','24399','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21041,'files','24400','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21042,'files','24401','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21043,'files','24402','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21044,'files','24403','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21045,'files','24404','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21046,'files','24405','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21047,'files','24406','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21048,'files','24407','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21049,'files','24408','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21050,'files','24409','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21051,'files','24410','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21052,'files','24411','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21053,'files','24412','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21054,'files','24413','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21055,'files','24414','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21056,'files','24415','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21057,'files','24416','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21058,'files','24417','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21059,'files','24418','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21060,'files','24419','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21061,'files','24420','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21062,'files','24421','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21063,'files','24422','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21064,'files','24423','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21065,'files','24424','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21066,'files','24425','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21067,'files','24426','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21068,'files','24427','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21069,'files','24428','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21070,'files','24429','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21071,'files','24430','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21072,'files','24431','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21073,'files','24432','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21074,'files','24433','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21075,'files','24434','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21076,'files','24435','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21077,'files','24436','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21078,'files','24437','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21079,'files','24438','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21080,'files','24439','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21081,'files','24440','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21082,'files','24441','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21083,'files','24442','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21084,'files','24443','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21085,'files','24444','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21086,'files','24445','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21087,'files','24446','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21088,'files','24447','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21089,'files','24448','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21090,'files','24449','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21091,'files','24450','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21092,'files','24451','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21093,'files','24452','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21094,'files','24453','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21095,'files','24454','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21096,'files','24455','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21097,'files','24456','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21098,'files','24457','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21099,'files','24458','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21100,'files','24459','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21101,'files','24460','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21102,'files','24461','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21103,'files','24462','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21104,'files','24463','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21105,'files','24464','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21106,'files','24465','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21107,'files','24466','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21108,'files','24467','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21109,'files','24468','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21110,'files','24469','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21111,'files','24470','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21112,'files','24471','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21113,'files','24472','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21114,'files','24475','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21115,'files','24476','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21116,'files','24477','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21117,'files','24478','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21118,'files','24479','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21119,'files','24480','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21120,'files','24481','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21121,'files','24482','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21122,'files','24483','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21123,'files','24484','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21124,'files','24485','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21125,'files','24486','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21126,'files','24487','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21127,'files','24488','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21128,'files','24489','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21129,'files','24490','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21130,'files','24491','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21131,'files','24492','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21132,'files','24493','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21133,'files','24494','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21134,'files','24495','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21135,'files','24496','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21136,'files','24497','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21137,'files','24498','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21138,'files','24499','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21139,'files','24500','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21140,'files','24501','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21141,'files','24502','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21142,'files','24503','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21143,'files','24504','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21144,'files','24505','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21145,'files','24506','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21146,'files','24507','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21147,'files','24508','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21148,'files','24510','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21149,'files','24511','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21150,'files','24512','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21151,'files','24513','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21152,'files','24514','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21153,'files','24516','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21154,'files','24517','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21155,'files','24518','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21156,'files','24519','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21157,'files','24520','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21158,'files','24521','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21159,'files','24522','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21160,'files','24523','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21161,'files','24524','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21162,'files','24525','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21163,'files','24526','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21164,'files','24527','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21165,'files','24528','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21166,'files','24529','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21167,'files','24530','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21168,'files','24531','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21169,'files','24532','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21170,'files','24533','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21171,'files','24534','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21172,'files','24535','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21173,'files','24536','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21174,'files','24537','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21175,'files','24538','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21176,'files','24539','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21177,'files','24540','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21178,'files','24541','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21179,'files','24542','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21180,'files','24543','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21181,'files','24544','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21182,'files','24545','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21183,'files','24546','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21184,'files','24547','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21185,'files','24548','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21186,'files','24549','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21187,'files','24550','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21188,'files','24551','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21189,'files','24552','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21190,'files','24553','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21191,'files','24554','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21192,'files','24555','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21193,'files','24556','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21194,'files','24557','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21195,'files','24558','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21196,'files','24559','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21197,'files','24560','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21198,'files','24561','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21199,'files','24562','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21200,'files','24563','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21201,'files','24564','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21202,'files','24565','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21203,'files','24566','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21204,'files','24567','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21205,'files','24568','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21206,'files','24569','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21207,'files','24570','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21208,'files','24571','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21209,'files','24572','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21210,'files','24573','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21211,'files','24574','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21212,'files','24575','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21213,'files','24576','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21214,'files','24577','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21215,'files','24578','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21216,'files','24579','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21217,'files','24580','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21218,'files','24581','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21219,'files','24582','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21220,'files','24583','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21221,'files','24584','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21222,'files','24585','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21223,'files','24586','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21224,'files','24587','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21225,'files','24588','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21226,'files','24589','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21227,'files','24590','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21228,'files','24591','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21229,'files','24592','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21230,'files','24593','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21231,'files','24594','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21232,'files','24595','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21233,'files','24596','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21234,'files','24597','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21235,'files','24598','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21236,'files','24599','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21237,'files','24600','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21238,'files','24601','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21239,'files','24603','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21240,'files','24605','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21241,'files','24606','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21242,'files','24607','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21243,'files','24608','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21244,'files','24609','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21245,'files','24610','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21246,'files','24611','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21247,'files','24612','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21248,'files','24613','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21249,'files','24614','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21250,'files','24615','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21251,'files','24616','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21252,'files','24617','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21253,'files','24618','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21254,'files','24619','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21255,'files','24620','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21256,'files','24621','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21257,'files','24622','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21258,'files','24623','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21259,'files','24624','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21260,'files','24625','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21261,'files','24626','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21262,'files','24627','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21263,'files','24628','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21264,'files','24629','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21265,'files','24630','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21266,'files','24631','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21267,'files','24632','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21268,'files','24633','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21269,'files','24634','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21270,'files','24635','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21271,'files','24636','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21272,'files','24637','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21273,'files','24638','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21274,'files','24639','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21275,'files','24640','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21276,'files','24641','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21277,'files','24642','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21278,'files','24643','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21279,'files','24644','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21280,'files','24645','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21281,'files','24646','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21282,'files','24647','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21283,'files','24648','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21284,'files','24649','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21285,'files','24650','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21286,'files','24651','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21287,'files','24652','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21288,'files','24653','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21289,'files','24654','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21290,'files','24655','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21291,'files','24656','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21292,'files','24657','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21293,'files','24658','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21294,'files','24659','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21295,'files','24660','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21296,'files','24661','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21297,'files','24662','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21298,'files','24663','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21299,'files','24664','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21300,'files','24665','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21301,'files','24666','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21302,'files','24667','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21303,'files','24668','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21304,'files','24669','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21305,'files','24670','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21306,'files','24671','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21307,'files','24672','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21308,'files','24673','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21309,'files','24674','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21310,'files','24675','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21311,'files','24676','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21312,'files','24677','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21313,'files','24678','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21314,'files','24679','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21315,'files','24680','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21316,'files','24681','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21317,'files','24682','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21318,'files','24683','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21319,'files','24684','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21320,'files','24685','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21321,'files','24686','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21322,'files','24687','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21323,'files','24688','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21324,'files','24689','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21325,'files','24690','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21326,'files','24691','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21327,'files','24692','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21328,'files','24693','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21329,'files','24694','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21330,'files','24695','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21331,'files','24696','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21332,'files','24697','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21333,'files','24698','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21334,'files','24699','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21335,'files','24700','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21336,'files','24701','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21337,'files','24702','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21338,'files','24703','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21339,'files','24704','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21340,'files','24705','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21341,'files','24706','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21342,'files','24707','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21343,'files','24708','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21344,'files','24709','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21345,'files','24710','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21346,'files','24711','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21347,'files','24712','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21348,'files','24713','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21349,'files','24714','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21350,'files','24715','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21351,'files','24716','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21352,'files','24717','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21353,'files','24718','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21354,'files','24719','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21355,'files','24720','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21356,'files','24721','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21357,'files','24722','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21358,'files','24723','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21359,'files','24724','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21360,'files','24725','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21361,'files','24726','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21362,'files','24727','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21363,'files','24728','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21364,'files','24729','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21365,'files','24730','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21366,'files','24731','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21367,'files','24732','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21368,'files','24733','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21369,'files','24734','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21370,'files','24735','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21371,'files','24736','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21372,'files','24737','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21373,'files','24738','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21374,'files','24739','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21375,'files','24740','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21376,'files','24741','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21377,'files','24742','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21378,'files','24743','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21379,'files','24744','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21380,'files','24745','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21381,'files','24746','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21382,'files','24747','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21383,'files','24748','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21384,'files','24749','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21385,'files','24750','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21386,'files','24751','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21387,'files','24752','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21388,'files','24753','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21389,'files','24754','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21390,'files','24755','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21391,'files','24756','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21392,'files','24757','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21393,'files','24758','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21394,'files','24759','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21395,'files','24760','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21396,'files','24761','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21397,'files','24762','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21398,'files','24763','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21399,'files','24764','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21400,'files','24765','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21401,'files','24766','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21402,'files','24767','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21403,'files','24768','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21404,'files','24769','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21405,'files','24770','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21406,'files','24774','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21407,'files','24775','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21408,'files','24776','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21409,'files','24777','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21410,'files','24778','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21411,'files','24779','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21412,'files','24780','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21413,'files','24781','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21414,'files','24782','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21415,'files','24783','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21416,'files','24784','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21417,'files','24785','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21418,'files','24786','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21419,'files','24787','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21420,'files','24788','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21421,'files','24789','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21422,'files','24790','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21423,'files','24791','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21424,'files','24792','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21425,'files','24793','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21426,'files','24794','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21427,'files','24795','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21428,'files','24796','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21429,'files','24797','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21430,'files','24798','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21431,'files','24799','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21432,'files','24800','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21433,'files','24801','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21434,'files','24802','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21435,'files','24803','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21436,'files','24804','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21437,'files','24805','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21438,'files','24806','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21439,'files','24807','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21440,'files','24808','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21441,'files','24809','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21442,'files','24810','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21443,'files','24811','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21444,'files','24812','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21445,'files','24813','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21446,'files','24814','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21447,'files','24815','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21448,'files','24816','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21449,'files','24817','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21450,'files','24818','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21451,'files','24819','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21452,'files','24820','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21453,'files','24821','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21454,'files','24822','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21455,'files','24823','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21456,'files','24824','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21457,'files','24825','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21458,'files','24826','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21459,'files','24827','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21460,'files','24828','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21461,'files','24829','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21462,'files','24830','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21463,'files','24831','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21464,'files','24832','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21465,'files','24833','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21466,'files','24834','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21467,'files','24835','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21468,'files','24836','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21469,'files','24837','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21470,'files','24838','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21471,'files','24839','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21472,'files','24840','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21473,'files','24841','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21474,'files','24842','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21475,'files','24843','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21476,'files','24844','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21477,'files','24845','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21478,'files','24846','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21479,'files','24847','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21480,'files','24848','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21481,'files','24849','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21482,'files','24850','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21483,'files','24851','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21484,'files','24852','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21485,'files','24853','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21486,'files','24854','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21487,'files','24855','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21488,'files','24856','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21489,'files','24857','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21490,'files','24858','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21491,'files','24859','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21492,'files','24860','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21493,'files','24861','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21494,'files','24862','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21495,'files','24863','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21496,'files','24864','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21497,'files','24865','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21498,'files','24866','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21499,'files','24867','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21500,'files','24868','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21501,'files','24869','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21502,'files','24870','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21503,'files','24871','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21504,'files','24872','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21505,'files','24873','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21506,'files','24874','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21507,'files','24875','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21508,'files','24876','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21509,'files','24877','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21510,'files','24878','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21511,'files','24879','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21512,'files','24880','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21513,'files','24881','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21514,'files','24882','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21515,'files','24884','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21516,'files','24885','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21517,'files','24886','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21518,'files','24887','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21519,'files','24888','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21520,'files','24889','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21521,'files','24890','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21522,'files','24891','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21523,'files','24892','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21524,'files','24893','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21525,'files','24894','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21526,'files','24895','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21527,'files','24896','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21528,'files','24897','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21529,'files','24898','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21530,'files','24899','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21531,'files','24900','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21532,'files','24901','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21533,'files','24902','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21534,'files','24903','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21535,'files','24904','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21536,'files','24905','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21537,'files','24906','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21538,'files','24907','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21539,'files','24908','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21540,'files','24909','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21541,'files','24910','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21542,'files','24911','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21543,'files','24912','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21544,'files','24913','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21545,'files','24914','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21546,'files','24915','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21547,'files','24916','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21548,'files','24917','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21549,'files','24918','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21550,'files','24919','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21551,'files','24920','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21552,'files','24921','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21553,'files','24922','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21554,'files','24923','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21555,'files','24924','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21556,'files','24925','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21557,'files','24926','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21558,'files','24927','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21559,'files','24928','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21560,'files','24929','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21561,'files','24930','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21562,'files','24931','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21563,'files','24932','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21564,'files','24933','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21565,'files','24934','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21566,'files','24935','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21567,'files','24936','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21568,'files','24937','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21569,'files','24938','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21570,'files','24939','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21571,'files','24940','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21572,'files','24941','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21573,'files','24942','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21574,'files','24943','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21575,'files','24944','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21576,'files','24945','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21577,'files','24946','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21578,'files','24947','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21579,'files','24948','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21580,'files','24949','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21581,'files','24950','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21582,'files','24951','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21583,'files','24952','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21584,'files','24953','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21585,'files','24954','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21586,'files','24955','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21587,'files','24956','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21588,'files','24957','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21589,'files','24958','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21590,'files','24959','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21591,'files','24960','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21592,'files','24961','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21593,'files','24962','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21594,'files','24963','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21595,'files','24964','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21596,'files','24965','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21597,'files','24966','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21598,'files','24967','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21599,'files','24968','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21600,'files','24969','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21601,'files','24970','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21602,'files','24971','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21603,'files','24972','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21604,'files','24973','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21605,'files','24974','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21606,'files','24975','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21607,'files','24977','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21608,'files','24978','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21609,'files','24979','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21610,'files','24980','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21611,'files','24981','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21612,'files','24982','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21613,'files','24983','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21614,'files','24984','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21615,'files','24985','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21616,'files','24987','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21617,'files','24989','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21618,'files','24990','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21619,'files','24993','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21620,'files','24994','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21621,'files','24996','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21622,'files','24997','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21623,'files','24999','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21624,'files','25000','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21625,'files','25001','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21626,'files','25002','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21627,'files','25003','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21628,'files','25004','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21629,'files','25005','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21630,'files','25006','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21631,'files','25007','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21632,'files','25008','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21633,'files','25009','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21634,'files','25010','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21635,'files','25011','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21636,'files','25012','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21637,'files','25013','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21638,'files','25014','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21639,'files','25015','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21640,'files','25016','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21641,'files','25018','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21642,'files','25020','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21643,'files','25021','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21644,'files','25022','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21645,'files','25023','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21646,'files','25024','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21647,'files','25025','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21648,'files','25026','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21649,'files','25027','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21650,'files','25028','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21651,'files','25029','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21652,'files','25030','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21653,'files','25031','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21654,'files','25032','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21655,'files','25033','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21656,'files','25035','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21657,'files','25036','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21658,'files','25038','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21659,'files','25039','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21660,'files','25040','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21661,'files','25041','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21662,'files','25042','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21663,'files','25043','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21664,'files','25044','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21665,'files','25045','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21666,'files','25046','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21667,'files','25047','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21668,'files','25048','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21669,'files','25050','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21670,'files','25051','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21671,'files','25052','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21672,'files','25053','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21673,'files','25054','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21674,'files','25055','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21675,'files','25056','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21676,'files','25057','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21677,'files','25058','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21678,'files','25059','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21679,'files','25060','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21680,'files','25061','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21681,'files','25062','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21682,'files','25063','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21683,'files','25064','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21684,'files','25065','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21685,'files','25067','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21686,'files','25068','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21687,'files','25069','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21688,'files','25070','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21689,'files','25071','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21690,'files','25072','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21691,'files','25073','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21692,'files','25074','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21693,'files','25075','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21694,'files','25076','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21695,'files','25077','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21696,'files','25078','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21697,'files','25079','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21698,'files','25080','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21699,'files','25081','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21700,'files','25082','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21701,'files','25083','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21702,'files','25084','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21703,'files','25085','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21704,'files','25086','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21705,'files','25087','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21706,'files','25088','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21707,'files','25089','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21708,'files','25090','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21709,'files','25091','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21710,'files','25092','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21711,'files','25093','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21712,'files','25094','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21713,'files','25095','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21714,'files','25096','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21715,'files','25097','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21716,'files','25098','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21717,'files','25099','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21718,'files','25100','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21719,'files','25101','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21720,'files','25102','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21721,'files','25103','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21722,'files','25104','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21723,'files','25105','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21724,'files','25106','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21725,'files','25107','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21726,'files','25108','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21727,'files','25109','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21728,'files','25110','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21729,'files','25111','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21730,'files','25112','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21731,'files','25113','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21732,'files','25114','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21733,'files','25115','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21734,'files','25116','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21735,'files','25117','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21736,'files','25118','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21737,'files','25119','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21738,'files','25120','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21739,'files','25121','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21740,'files','25122','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21741,'files','25123','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21742,'files','25124','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21743,'files','25125','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21744,'files','25126','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21745,'files','25127','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21746,'files','25128','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21747,'files','25129','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21748,'files','25130','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21749,'files','25131','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21750,'files','25132','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21751,'files','25133','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21752,'files','25134','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21753,'files','25135','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21754,'files','25136','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21755,'files','25137','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21756,'files','25138','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21757,'files','25139','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21758,'files','25140','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21759,'files','25141','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21760,'files','25142','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21761,'files','25143','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21762,'files','25144','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21763,'files','25145','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21764,'files','25146','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21765,'files','25147','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21766,'files','25148','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21767,'files','25149','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21768,'files','25150','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21769,'files','25151','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21770,'files','25152','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21771,'files','25153','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21772,'files','25154','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21773,'files','25156','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21774,'files','25157','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21775,'files','25158','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21776,'files','25159','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21777,'files','25160','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21778,'files','25161','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21779,'files','25162','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21780,'files','25164','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21781,'files','25165','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21782,'files','25166','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21783,'files','25167','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21784,'files','25168','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21785,'files','25169','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21786,'files','25170','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21787,'files','25171','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21788,'files','25172','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21789,'files','25173','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21790,'files','25174','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21791,'files','25175','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21792,'files','25176','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21793,'files','25177','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21794,'files','25178','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21795,'files','25179','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21796,'files','25180','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21797,'files','25181','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21798,'files','25182','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21799,'files','25183','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21800,'files','25184','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21801,'files','25185','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21802,'files','25187','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21803,'files','25188','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21804,'files','25189','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21805,'files','25190','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21806,'files','25191','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21807,'files','25192','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21808,'files','25193','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21809,'files','25194','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21810,'files','25195','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21811,'files','25196','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21812,'files','25197','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21813,'files','25198','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21814,'files','25199','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21815,'files','25200','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21816,'files','25201','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21817,'files','25202','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21818,'files','25203','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21819,'files','25204','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21820,'files','25205','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21821,'files','25206','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21822,'files','25207','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21823,'files','25208','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21824,'files','25209','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21825,'files','25210','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21826,'files','25211','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21827,'files','25212','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21828,'files','25214','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21829,'files','25217','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21830,'files','25218','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21831,'files','25219','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21832,'files','25220','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21833,'files','25221','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21834,'files','25222','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21835,'files','25224','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21836,'files','25225','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21837,'files','25226','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21838,'files','25227','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21839,'files','25229','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21840,'files','25230','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21841,'files','25231','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21842,'files','25232','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21843,'files','25233','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21844,'files','25234','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21845,'files','25235','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21846,'files','25236','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21847,'files','25237','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21848,'files','25238','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21849,'files','25239','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21850,'files','25240','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21851,'files','25241','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21852,'files','25242','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21853,'files','25243','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21854,'files','25244','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21855,'files','25245','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21856,'files','25246','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21857,'files','25247','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21858,'files','25248','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21859,'files','25249','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21860,'files','25250','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21861,'files','25251','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21862,'files','25252','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21863,'files','25253','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21864,'files','25254','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21865,'files','25255','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21866,'files','25256','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21867,'files','25257','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21868,'files','25258','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21869,'files','25259','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21870,'files','25260','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21871,'files','25261','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21872,'files','25262','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21873,'files','25263','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21874,'files','25264','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21875,'files','25265','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21876,'files','25266','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21877,'files','25267','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21878,'files','25268','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21879,'files','25269','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21880,'files','25270','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21881,'files','25271','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21882,'files','25272','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21883,'files','25273','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21884,'files','25274','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21885,'files','25275','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21886,'files','25276','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21887,'files','25277','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21888,'files','25278','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21889,'files','25279','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21890,'files','25280','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21891,'files','25281','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21892,'files','25282','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21893,'files','25283','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21894,'files','25284','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21895,'files','25285','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21896,'files','25286','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21897,'files','25287','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21898,'files','25288','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21899,'files','25289','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21900,'files','25290','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21901,'files','25291','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21902,'files','25292','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21903,'files','25293','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21904,'files','25294','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21905,'files','25295','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21906,'files','25296','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21907,'files','25297','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21908,'files','25298','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21909,'files','25299','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21910,'files','25300','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21911,'files','25301','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21912,'files','25302','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21913,'files','25303','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21914,'files','25304','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21915,'files','25305','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21916,'files','25306','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21917,'files','25307','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21918,'files','25308','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21919,'files','25309','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21920,'files','25310','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21921,'files','25311','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21922,'files','25312','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21923,'files','25313','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21924,'files','25314','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21925,'files','25315','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21926,'files','25316','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21927,'files','25317','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21928,'files','25318','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21929,'files','25319','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21930,'files','25320','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21931,'files','25321','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21932,'files','25322','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21933,'files','25323','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21934,'files','25324','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21935,'files','25325','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21936,'files','25326','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21937,'files','25327','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21938,'files','25328','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21939,'files','25329','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21940,'files','25330','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21941,'files','25331','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21942,'files','25332','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21943,'files','25333','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21944,'files','25334','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21945,'files','25335','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21946,'files','25336','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21947,'files','25337','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21948,'files','25338','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21949,'files','25339','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21950,'files','25340','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21951,'files','25341','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21952,'files','25342','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21953,'files','25343','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21954,'files','25344','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21955,'files','25345','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21956,'files','25346','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21957,'files','25347','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21958,'files','25348','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21959,'files','25349','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21960,'files','25350','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21961,'files','25351','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21962,'files','25352','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21963,'files','25353','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21964,'files','25354','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21965,'files','25355','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21966,'files','25356','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21967,'files','25357','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21968,'files','25358','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21969,'files','25359','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21970,'files','25360','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21971,'files','25361','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21972,'files','25362','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21973,'files','25363','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21974,'files','25364','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21975,'files','25365','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21976,'files','25366','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21977,'files','25367','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21978,'files','25368','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21979,'files','25369','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21980,'files','25370','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21981,'files','25371','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21982,'files','25372','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21983,'files','25373','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21984,'files','25374','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21985,'files','25375','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21986,'files','25376','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21987,'files','25377','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21988,'files','25378','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21989,'files','25379','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21990,'files','25380','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21991,'files','25381','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21992,'files','25382','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21993,'files','25383','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21994,'files','25384','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21995,'files','25385','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21996,'files','25386','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21997,'files','25387','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21998,'files','25388','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21999,'files','25389','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22000,'files','25390','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22001,'files','25391','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22002,'files','25392','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22003,'files','25393','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22004,'files','25394','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22005,'files','25395','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22006,'files','25396','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22007,'files','25397','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22008,'files','25398','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22009,'files','25400','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22010,'files','25401','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22011,'files','25402','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22012,'files','25405','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22013,'files','25406','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22014,'files','25407','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22015,'files','25408','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22016,'files','25409','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22017,'files','25410','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22018,'files','25411','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22019,'files','25412','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22020,'files','25413','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22021,'files','25414','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22022,'files','25415','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22023,'files','25416','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22024,'files','25417','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22025,'files','25418','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22026,'files','25419','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22027,'files','25420','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22028,'files','25421','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22029,'files','25422','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22030,'files','25423','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22031,'files','25424','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22032,'files','25425','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22033,'files','25426','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22034,'files','25427','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22035,'files','25428','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22036,'files','25429','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22037,'files','25430','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22038,'files','25431','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22039,'files','25432','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22040,'files','25433','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22041,'files','25434','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22042,'files','25435','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22043,'files','25436','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22044,'files','25437','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22045,'files','25438','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22046,'files','25439','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22047,'files','25440','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22048,'files','25441','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22049,'files','25442','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22050,'files','25443','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22051,'files','25444','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22052,'files','25445','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22053,'files','25446','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22054,'files','25447','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22055,'files','25448','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22056,'files','25449','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22057,'files','25450','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22058,'files','25451','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22059,'files','25452','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22060,'files','25453','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22061,'files','25454','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22062,'files','25455','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22063,'files','25456','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22064,'files','25457','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22065,'files','25458','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22066,'files','25459','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22067,'files','25460','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22068,'files','25461','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22069,'files','25462','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22070,'files','25463','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22071,'files','25464','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22072,'files','25465','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22073,'files','25466','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22074,'files','25467','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22075,'files','25468','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22076,'files','25469','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22077,'files','25470','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22078,'files','25471','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22079,'files','25472','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22080,'files','25473','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22081,'files','25474','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22082,'files','25475','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22083,'files','25476','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22084,'files','25477','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22085,'files','25478','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22086,'files','25479','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22087,'files','25480','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22088,'files','25481','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22089,'files','25482','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22090,'files','25483','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22091,'files','25484','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22092,'files','25485','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22093,'files','25486','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22094,'files','25487','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22095,'files','25488','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22096,'files','25489','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22097,'files','25490','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22098,'files','25491','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22099,'files','25492','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22100,'files','25493','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22101,'files','25494','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22102,'files','25495','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22103,'files','25496','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22104,'files','25498','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22105,'files','25499','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22106,'files','25500','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22107,'files','25501','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22108,'files','25502','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22109,'files','25503','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22110,'files','25504','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22111,'files','25505','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22112,'files','25506','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22113,'files','25507','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22114,'files','25508','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22115,'files','25509','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22116,'files','25510','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22117,'files','25511','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22118,'files','25512','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22119,'files','25513','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22120,'files','25514','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22121,'files','25515','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22122,'files','25516','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22123,'files','25517','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22124,'files','25518','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22125,'files','25519','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22126,'files','25520','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22127,'files','25521','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22128,'files','25522','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22129,'files','25523','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22130,'files','25524','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22131,'files','25525','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22132,'files','25526','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22133,'files','25527','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22134,'files','25528','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22135,'files','25529','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22136,'files','25530','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22137,'files','25531','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22138,'files','25532','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22139,'files','25533','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22140,'files','25534','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22141,'files','25535','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22142,'files','25536','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22143,'files','25537','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22144,'files','25538','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22145,'files','25539','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22146,'files','25540','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22147,'files','25541','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22148,'files','25542','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22149,'files','25543','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22150,'files','25544','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22151,'files','25545','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22152,'files','25546','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22153,'files','25547','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22154,'files','25548','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22155,'files','25549','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22156,'files','25550','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22157,'files','25551','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22158,'files','25552','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22159,'files','25553','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22160,'files','25554','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22161,'files','25555','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22162,'files','25556','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22163,'files','25557','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22164,'files','25558','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22165,'files','25559','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22166,'files','25560','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22167,'files','25561','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22168,'files','25562','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22169,'files','25563','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22170,'files','25564','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22171,'files','25565','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22172,'files','25566','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22173,'files','25567','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22174,'files','25568','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22175,'files','25569','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22176,'files','25570','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22177,'files','25571','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22178,'files','25572','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22179,'files','25573','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22180,'files','25574','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22181,'files','25575','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22182,'files','25576','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22183,'files','25577','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22184,'files','25578','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22185,'files','25579','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22186,'files','25580','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22187,'files','25581','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22188,'files','25582','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22189,'files','25583','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22190,'files','25584','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22191,'files','25585','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22192,'files','25586','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22193,'files','25587','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22194,'files','25588','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22195,'files','25589','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22196,'files','25590','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22197,'files','25591','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22198,'files','25592','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22199,'files','25593','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22200,'files','25594','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22201,'files','25595','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22202,'files','25596','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22203,'files','25597','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22204,'files','25598','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22205,'files','25599','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22206,'files','25600','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22207,'files','25601','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22208,'files','25602','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22209,'files','25603','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22210,'files','25604','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22211,'files','25605','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22212,'files','25606','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22213,'files','25607','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22214,'files','25608','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22215,'files','25609','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22216,'files','25610','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22217,'files','25611','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22218,'files','25612','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22219,'files','25613','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22220,'files','25614','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22221,'files','25615','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22222,'files','25616','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22223,'files','25617','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22224,'files','25618','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22225,'files','25619','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22226,'files','25620','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22227,'files','25621','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22228,'files','25622','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22229,'files','25623','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22230,'files','25624','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22231,'files','25625','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22232,'files','25626','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22233,'files','25627','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22234,'files','25628','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22235,'files','25629','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22236,'files','25630','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22237,'files','25631','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22238,'files','25632','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22239,'files','25633','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22240,'files','25634','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22241,'files','25635','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22242,'files','25636','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22243,'files','25637','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22244,'files','25638','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22245,'files','25639','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22246,'files','25640','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22247,'files','25641','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22248,'files','25642','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22249,'files','25643','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22250,'files','25644','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22251,'files','25645','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22252,'files','25647','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22253,'files','25649','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22254,'files','25650','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22255,'files','25651','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22256,'files','25652','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22257,'files','25653','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22258,'files','25654','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22259,'files','25655','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22260,'files','25656','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22261,'files','25657','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22262,'files','25658','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22263,'files','25659','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22264,'files','25660','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22265,'files','25661','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22266,'files','25662','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22267,'files','25663','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22268,'files','25664','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22269,'files','25665','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22270,'files','25666','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22271,'files','25667','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22272,'files','25668','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22273,'files','25669','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22274,'files','25670','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22275,'files','25671','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22276,'files','25672','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22277,'files','25673','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22278,'files','25674','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22279,'files','25675','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22280,'files','25676','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22281,'files','25677','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22282,'files','25678','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22283,'files','25679','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22284,'files','25680','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22285,'files','25681','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22286,'files','25682','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22287,'files','25683','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22288,'files','25684','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22289,'files','25685','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22290,'files','25686','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22291,'files','25687','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22292,'files','25688','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22293,'files','25689','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22294,'files','25690','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22295,'files','25691','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22296,'files','25692','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22297,'files','25693','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22298,'files','25694','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22299,'files','25695','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22300,'files','25696','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22301,'files','25697','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22302,'files','25698','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22303,'files','25699','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22304,'files','25700','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22305,'files','25701','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22306,'files','25702','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22307,'files','25703','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22308,'files','25704','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22309,'files','25705','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22310,'files','25706','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22311,'files','25707','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22312,'files','25708','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22313,'files','25709','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22314,'files','25710','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22315,'files','25711','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22316,'files','25712','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22317,'files','25713','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22318,'files','25714','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22319,'files','25715','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22320,'files','25716','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22321,'files','25717','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22322,'files','25718','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22323,'files','25719','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22324,'files','25720','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22325,'files','25721','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22326,'files','25722','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22327,'files','25723','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22328,'files','25724','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22329,'files','25725','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22330,'files','25726','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22331,'files','25727','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22332,'files','25728','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22333,'files','25729','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22334,'files','25730','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22335,'files','25731','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22336,'files','25732','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22337,'files','25733','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22338,'files','25734','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22339,'files','25735','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22340,'files','25736','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22341,'files','25737','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22342,'files','25738','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22343,'files','25739','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22344,'files','25740','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22345,'files','25741','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22346,'files','25742','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22347,'files','25743','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22348,'files','25744','error','Deal not found: 150',NULL,'2025-11-14 00:17:02'),
(22349,'files','25745','error','Deal not found: 150',NULL,'2025-11-14 00:17:02'),
(22350,'files','25746','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22351,'files','25747','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22352,'files','25748','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22353,'files','25749','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22354,'files','25750','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22355,'files','25751','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22356,'files','25752','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22357,'files','25753','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22358,'files','25754','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22359,'files','25755','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22360,'files','25756','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22361,'files','25757','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22362,'files','25758','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22363,'files','25759','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22364,'files','25760','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22365,'files','25761','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22366,'files','25762','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22367,'files','25763','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22368,'files','25764','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22369,'files','25765','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22370,'files','25766','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22371,'files','25767','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22372,'files','25768','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22373,'files','25769','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22374,'files','25770','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22375,'files','25771','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22376,'files','25772','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22377,'files','25773','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22378,'files','25774','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22379,'files','25775','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22380,'files','25776','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22381,'files','25777','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22382,'files','25778','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22383,'files','25779','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22384,'files','25780','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22385,'files','25781','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22386,'files','25782','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22387,'files','25783','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22388,'files','25784','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22389,'files','25786','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22390,'files','25787','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22391,'files','25788','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22392,'files','25789','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22393,'files','25790','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22394,'files','25791','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22395,'files','25792','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22396,'files','25793','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22397,'files','25794','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22398,'files','25795','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22399,'files','25796','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22400,'files','25797','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22401,'files','25798','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22402,'files','25799','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22403,'files','25800','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22404,'files','25801','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22405,'files','25802','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22406,'files','25803','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22407,'files','25804','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22408,'files','25805','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22409,'files','25806','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22410,'files','25807','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22411,'files','25808','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22412,'files','25809','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22413,'files','25812','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22414,'files','25813','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22415,'files','25814','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22416,'files','25815','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22417,'files','25816','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22418,'files','25817','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22419,'files','25818','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22420,'files','25819','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22421,'files','25820','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22422,'files','25821','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22423,'files','25822','error','Deal not found: 717',NULL,'2025-11-14 00:17:03'),
(22424,'files','25823','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22425,'files','25824','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22426,'files','25825','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22427,'files','25826','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22428,'files','25827','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22429,'files','25828','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22430,'files','25829','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22431,'files','25830','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22432,'files','25831','error','Deal not found: 717',NULL,'2025-11-14 00:17:03'),
(22433,'files','25832','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22434,'files','25833','error','Deal not found: 717',NULL,'2025-11-14 00:17:03'),
(22435,'files','25834','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22436,'files','25835','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22437,'files','25836','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22438,'files','25837','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22439,'files','25838','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22440,'files','25839','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22441,'files','25840','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22442,'files','25841','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22443,'files','25842','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22444,'files','25843','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22445,'files','25844','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22446,'files','25845','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22447,'files','25846','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22448,'files','25847','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22449,'files','25848','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22450,'files','25849','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22451,'files','25850','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22452,'files','25851','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22453,'files','25852','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22454,'files','25853','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22455,'files','25854','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22456,'files','25855','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22457,'files','25856','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22458,'files','25857','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22459,'files','25858','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22460,'files','25859','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22461,'files','25860','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22462,'files','25861','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22463,'files','25862','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22464,'files','25863','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22465,'files','25864','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22466,'files','25865','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22467,'files','25866','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22468,'files','25867','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22469,'files','25868','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22470,'files','25869','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22471,'files','25870','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22472,'files','25871','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22473,'files','25872','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22474,'files','25873','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22475,'files','25874','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22476,'files','25875','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22477,'files','25876','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22478,'files','25877','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22479,'files','25878','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22480,'files','25879','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22481,'files','25880','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22482,'files','25881','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22483,'files','25882','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22484,'files','25883','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22485,'files','25884','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22486,'files','25885','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22487,'files','25886','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22488,'files','25887','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22489,'files','25888','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22490,'files','25889','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22491,'files','25890','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22492,'files','25891','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22493,'files','25892','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22494,'files','25893','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22495,'files','25894','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22496,'files','25895','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22497,'files','25897','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22498,'files','25898','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22499,'files','25899','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22500,'files','25900','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22501,'files','25901','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22502,'files','25902','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22503,'files','25903','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22504,'files','25904','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22505,'files','25905','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22506,'files','25906','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22507,'files','25907','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22508,'files','25908','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22509,'files','25909','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22510,'files','25910','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22511,'files','25911','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22512,'files','25912','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22513,'files','25913','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22514,'files','25914','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22515,'files','25915','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22516,'files','25916','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22517,'files','25917','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22518,'files','25918','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22519,'files','25919','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22520,'files','25920','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22521,'files','25921','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22522,'files','25922','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22523,'files','25923','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22524,'files','25924','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22525,'files','25925','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22526,'files','25926','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22527,'files','25927','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22528,'files','25928','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22529,'files','25930','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22530,'files','25931','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22531,'files','25932','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22532,'files','25933','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22533,'files','25934','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22534,'files','25935','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22535,'files','25936','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22536,'files','25937','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22537,'files','25938','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22538,'files','25939','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22539,'files','25940','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22540,'files','25941','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22541,'files','25942','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22542,'files','25943','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22543,'files','25944','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22544,'files','25945','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22545,'files','25946','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22546,'files','25947','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22547,'files','25948','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22548,'files','25949','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22549,'files','25950','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22550,'files','25951','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22551,'files','25952','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22552,'files','25953','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22553,'files','25954','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22554,'files','25955','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22555,'files','25956','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22556,'files','25957','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22557,'files','25958','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22558,'files','25959','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22559,'files','25960','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22560,'files','25961','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22561,'files','25962','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22562,'files','25963','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22563,'files','25964','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22564,'files','25965','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22565,'files','25966','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22566,'files','25967','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22567,'files','25968','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22568,'files','25969','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22569,'files','25970','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22570,'files','25971','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22571,'files','25972','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22572,'files','25973','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22573,'files','25974','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22574,'files','25975','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22575,'files','25976','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22576,'files','25977','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22577,'files','25978','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22578,'files','25979','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22579,'files','25980','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22580,'files','25981','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22581,'files','25982','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22582,'files','25983','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22583,'files','25984','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22584,'files','25985','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22585,'files','25986','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22586,'files','25987','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22587,'files','25988','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22588,'files','25989','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22589,'files','25990','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22590,'files','25991','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22591,'files','25992','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22592,'files','25993','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22593,'files','25994','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22594,'files','25995','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22595,'files','25996','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22596,'files','25997','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22597,'files','25998','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22598,'files','25999','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22599,'files','26000','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22600,'files','26001','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22601,'files','26002','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22602,'files','26003','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22603,'files','26004','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22604,'files','26005','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22605,'files','26006','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22606,'files','26007','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22607,'files','26008','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22608,'files','26009','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22609,'files','26010','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22610,'files','26011','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22611,'files','26012','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22612,'files','26013','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22613,'files','26014','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22614,'files','26015','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22615,'files','26016','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22616,'files','26017','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22617,'files','26018','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22618,'files','26019','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22619,'files','26020','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22620,'files','26021','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22621,'files','26022','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22622,'files','26023','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22623,'files','26024','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22624,'files','26025','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22625,'files','26026','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22626,'files','26027','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22627,'files','26028','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22628,'files','26029','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22629,'files','26030','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22630,'files','26031','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22631,'files','26032','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22632,'files','26033','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22633,'files','26034','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22634,'files','26035','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22635,'files','26036','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22636,'files','26037','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22637,'files','26038','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22638,'files','26039','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22639,'files','26040','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22640,'files','26041','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22641,'files','26042','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22642,'files','26043','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22643,'files','26044','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22644,'files','26045','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22645,'files','26046','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22646,'files','26047','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22647,'files','26048','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22648,'files','26049','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22649,'files','26050','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22650,'files','26051','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22651,'files','26052','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22652,'files','26053','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22653,'files','26054','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22654,'files','26055','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22655,'files','26056','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22656,'files','26057','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22657,'files','26058','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22658,'files','26059','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22659,'files','26060','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22660,'files','26061','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22661,'files','26062','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22662,'files','26063','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22663,'files','26064','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22664,'files','26065','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22665,'files','26066','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22666,'files','26067','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22667,'files','26068','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22668,'files','26069','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22669,'files','26070','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22670,'files','26071','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22671,'files','26072','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22672,'files','26073','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22673,'files','26074','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22674,'files','26075','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22675,'files','26076','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22676,'files','26077','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22677,'files','26078','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22678,'files','26079','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22679,'files','26080','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22680,'files','26081','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22681,'files','26082','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22682,'files','26083','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22683,'files','26084','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22684,'files','26085','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22685,'files','26086','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22686,'files','26087','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22687,'files','26088','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22688,'files','26089','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22689,'files','26090','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22690,'files','26091','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22691,'files','26092','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22692,'files','26093','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22693,'files','26094','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22694,'files','26095','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22695,'files','26096','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22696,'files','26097','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22697,'files','26098','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22698,'files','26099','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22699,'files','26100','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22700,'files','26101','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22701,'files','26102','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22702,'files','26103','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22703,'files','26104','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22704,'files','26105','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22705,'files','26106','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22706,'files','26107','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22707,'files','26108','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22708,'files','26109','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22709,'files','26110','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22710,'files','26111','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22711,'files','26112','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22712,'files','26113','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22713,'files','26114','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22714,'files','26115','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22715,'files','26116','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22716,'files','26117','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22717,'files','26118','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22718,'files','26119','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22719,'files','26120','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22720,'files','26121','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22721,'files','26122','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22722,'files','26123','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22723,'files','26124','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22724,'files','26125','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22725,'files','26126','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22726,'files','26127','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22727,'files','26128','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22728,'files','26129','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22729,'files','26130','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22730,'files','26131','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22731,'files','26132','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22732,'files','26133','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22733,'files','26134','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22734,'files','26135','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22735,'files','26136','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22736,'files','26137','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22737,'files','26138','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22738,'files','26139','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22739,'files','26140','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22740,'files','26141','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22741,'files','26142','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22742,'files','26143','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22743,'files','26144','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22744,'files','26145','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22745,'files','26146','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22746,'files','26147','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22747,'files','26148','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22748,'files','26149','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22749,'files','26150','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22750,'files','26151','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22751,'files','26152','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22752,'files','26153','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22753,'files','26154','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22754,'files','26155','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22755,'files','26156','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22756,'files','26157','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22757,'files','26158','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22758,'files','26159','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22759,'files','26160','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22760,'files','26161','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22761,'files','26162','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22762,'files','26163','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22763,'files','26164','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22764,'files','26165','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22765,'files','26166','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22766,'files','26167','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22767,'files','26168','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22768,'files','26169','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22769,'files','26170','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22770,'files','26171','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22771,'files','26172','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22772,'files','26173','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22773,'files','26174','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22774,'files','26175','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22775,'files','26176','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22776,'files','26177','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22777,'files','26178','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22778,'files','26179','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22779,'files','26180','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22780,'files','26181','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22781,'files','26182','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22782,'files','26183','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22783,'files','26184','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22784,'files','26185','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22785,'files','26186','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22786,'files','26187','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22787,'files','26188','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22788,'files','26189','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22789,'files','26190','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22790,'files','26191','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22791,'files','26192','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22792,'files','26193','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22793,'files','26194','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22794,'files','26195','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22795,'files','26196','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22796,'files','26197','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22797,'files','26198','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22798,'files','26199','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22799,'files','26200','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22800,'files','26201','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22801,'files','26202','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22802,'files','26203','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22803,'files','26204','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22804,'files','26205','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22805,'files','26206','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22806,'files','26207','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22807,'files','26208','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22808,'files','26209','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22809,'files','26210','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22810,'files','26211','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22811,'files','26212','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22812,'files','26213','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22813,'files','26214','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22814,'files','26215','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22815,'files','26216','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22816,'files','26217','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22817,'files','26218','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22818,'files','26219','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22819,'files','26220','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22820,'files','26221','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22821,'files','26222','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22822,'files','26223','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22823,'files','26224','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22824,'files','26225','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22825,'files','26226','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22826,'files','26227','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22827,'files','26228','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22828,'files','26229','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22829,'files','26230','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22830,'files','26231','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22831,'files','26232','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22832,'files','26233','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22833,'files','26234','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22834,'files','26235','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22835,'files','26236','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22836,'files','26237','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22837,'files','26238','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22838,'files','26239','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22839,'files','26240','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22840,'files','26241','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22841,'files','26242','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22842,'files','26243','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22843,'files','26244','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22844,'files','26245','error','Deal not found: 375',NULL,'2025-11-14 00:17:03'),
(22845,'files','26246','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22846,'files','26247','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22847,'files','26248','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22848,'files','26249','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22849,'files','26250','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22850,'files','26251','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22851,'files','26252','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22852,'files','26254','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22853,'files','26258','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22854,'files','26259','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22855,'files','26260','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22856,'files','26261','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22857,'files','26262','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22858,'files','26263','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22859,'files','26264','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22860,'files','26265','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22861,'files','26266','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22862,'files','26267','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22863,'files','26268','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22864,'files','26269','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22865,'files','26270','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22866,'files','26271','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22867,'files','26272','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22868,'files','26273','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22869,'files','26274','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22870,'files','26275','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22871,'files','26276','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22872,'files','26277','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22873,'files','26278','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22874,'files','26279','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22875,'files','26280','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22876,'files','26281','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22877,'files','26282','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22878,'files','26283','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22879,'files','26284','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22880,'files','26285','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22881,'files','26286','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22882,'files','26287','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22883,'files','26288','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22884,'files','26289','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22885,'files','26290','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22886,'files','26291','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22887,'files','26292','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22888,'files','26293','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22889,'files','26294','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22890,'files','26295','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22891,'files','26296','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22892,'files','26298','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22893,'files','26299','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22894,'files','26300','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22895,'files','26301','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22896,'files','26302','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22897,'files','26303','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22898,'files','26304','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22899,'files','26305','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22900,'files','26306','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22901,'files','26307','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22902,'files','26308','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22903,'files','26309','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22904,'files','26310','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22905,'files','26311','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22906,'files','26312','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22907,'files','26313','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22908,'files','26314','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22909,'files','26315','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22910,'files','26316','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22911,'files','26317','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22912,'files','26318','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22913,'files','26319','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22914,'files','26320','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22915,'files','26321','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22916,'files','26322','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22917,'files','26323','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22918,'files','26324','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22919,'files','26325','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22920,'files','26326','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22921,'files','26327','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22922,'files','26328','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22923,'files','26329','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22924,'files','26330','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22925,'files','26331','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22926,'files','26332','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22927,'files','26333','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22928,'files','26334','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22929,'files','26335','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22930,'files','26336','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22931,'files','26337','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22932,'files','26338','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22933,'files','26339','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22934,'files','26340','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22935,'files','26341','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22936,'files','26342','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22937,'files','26343','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22938,'files','26344','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22939,'files','26345','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22940,'files','26346','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22941,'files','26347','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22942,'files','26348','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22943,'files','26349','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22944,'files','26350','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22945,'files','26351','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22946,'files','26352','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22947,'files','26353','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22948,'files','26354','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22949,'files','26355','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22950,'files','26356','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22951,'files','26357','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22952,'files','26358','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22953,'files','26359','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22954,'files','26360','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22955,'files','26361','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22956,'files','26362','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22957,'files','26363','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22958,'files','26364','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22959,'files','26365','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22960,'files','26366','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22961,'files','26367','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22962,'files','26368','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22963,'files','26369','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22964,'files','26370','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22965,'files','26371','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22966,'files','26372','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22967,'files','26373','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22968,'files','26374','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22969,'files','26375','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22970,'files','26376','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22971,'files','26377','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22972,'files','26378','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22973,'files','26379','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22974,'files','26380','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22975,'files','26381','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22976,'files','26382','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22977,'files','26383','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22978,'files','26384','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22979,'files','26385','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22980,'files','26386','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22981,'files','26387','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22982,'files','26388','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22983,'files','26389','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22984,'files','26390','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22985,'files','26391','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22986,'files','26392','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22987,'files','26393','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22988,'files','26394','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22989,'files','26395','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22990,'files','26396','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22991,'files','26397','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22992,'files','26398','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22993,'files','26399','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22994,'files','26400','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22995,'files','26401','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22996,'files','26402','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22997,'files','26403','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22998,'files','26404','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22999,'files','26405','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23000,'files','26406','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23001,'files','26407','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23002,'files','26408','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23003,'files','26409','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23004,'files','26410','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23005,'files','26411','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23006,'files','26412','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23007,'files','26413','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23008,'files','26414','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23009,'files','26415','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23010,'files','26416','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23011,'files','26417','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23012,'files','26418','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23013,'files','26419','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23014,'files','26420','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23015,'files','26421','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23016,'files','26422','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23017,'files','26423','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23018,'files','26424','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23019,'files','26425','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23020,'files','26426','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23021,'files','26427','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23022,'files','26428','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23023,'files','26429','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23024,'files','26430','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23025,'files','26431','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23026,'files','26432','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23027,'files','26433','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23028,'files','26434','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23029,'files','26435','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23030,'files','26436','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23031,'files','26437','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23032,'files','26438','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23033,'files','26439','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23034,'files','26440','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23035,'files','26441','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23036,'files','26442','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23037,'files','26443','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23038,'files','26444','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23039,'files','26445','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23040,'files','26446','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23041,'files','26447','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23042,'files','26448','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23043,'files','26450','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23044,'files','26451','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23045,'files','26452','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23046,'files','26453','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23047,'files','26454','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23048,'files','26455','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23049,'files','26456','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23050,'files','26457','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23051,'files','26458','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23052,'files','26459','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23053,'files','26460','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23054,'files','26461','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23055,'files','26462','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23056,'files','26463','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23057,'files','26464','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23058,'files','26465','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23059,'files','26466','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23060,'files','26467','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23061,'files','26468','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23062,'files','26469','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23063,'files','26470','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23064,'files','26471','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23065,'files','26472','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23066,'files','26473','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23067,'files','26474','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23068,'files','26475','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23069,'files','26476','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23070,'files','26477','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23071,'files','26478','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23072,'files','26479','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23073,'files','26481','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23074,'files','26482','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23075,'files','26483','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23076,'files','26484','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23077,'files','26485','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23078,'files','26486','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23079,'files','26487','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23080,'files','26488','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23081,'files','26489','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23082,'files','26490','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23083,'files','26491','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23084,'files','26492','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23085,'files','26493','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23086,'files','26494','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23087,'files','26495','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23088,'files','26496','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23089,'files','26497','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23090,'files','26498','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23091,'files','26499','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23092,'files','26500','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23093,'files','26501','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23094,'files','26502','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23095,'files','26503','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23096,'files','26504','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23097,'files','26505','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23098,'files','26506','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23099,'files','26507','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23100,'files','26508','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23101,'files','26509','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23102,'files','26510','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23103,'files','26511','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23104,'files','26512','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23105,'files','26513','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23106,'files','26514','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23107,'files','26515','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23108,'files','26516','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23109,'files','26517','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23110,'files','26518','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23111,'files','26519','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23112,'files','26520','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23113,'files','26521','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23114,'files','26522','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23115,'files','26523','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23116,'files','26524','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23117,'files','26525','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23118,'files','26526','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23119,'files','26527','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23120,'files','26528','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23121,'files','26529','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23122,'files','26530','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23123,'files','26531','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23124,'files','26532','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23125,'files','26533','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23126,'files','26534','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23127,'files','26535','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23128,'files','26536','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23129,'files','26537','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23130,'files','26538','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23131,'files','26539','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23132,'files','26540','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23133,'files','26541','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23134,'files','26542','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23135,'files','26543','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23136,'files','26544','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23137,'files','26545','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23138,'files','26546','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23139,'files','26547','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23140,'files','26548','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23141,'files','26549','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23142,'files','26550','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23143,'files','26551','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23144,'files','26552','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23145,'files','26553','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23146,'files','26554','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23147,'files','26555','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23148,'files','26556','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23149,'files','26557','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23150,'files','26558','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23151,'files','26559','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23152,'files','26560','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23153,'files','26561','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23154,'files','26562','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23155,'files','26563','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23156,'files','26564','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23157,'files','26565','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23158,'files','26566','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23159,'files','26567','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23160,'files','26568','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23161,'files','26569','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23162,'files','26570','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23163,'files','26571','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23164,'files','26572','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23165,'files','26573','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23166,'files','26574','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23167,'files','26575','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23168,'files','26576','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23169,'files','26577','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23170,'files','26578','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23171,'files','26579','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23172,'files','26580','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23173,'files','26581','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23174,'files','26582','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23175,'files','26583','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23176,'files','26584','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23177,'files','26585','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23178,'files','26586','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23179,'files','26587','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23180,'files','26588','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23181,'files','26589','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23182,'files','26590','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23183,'files','26591','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23184,'files','26592','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23185,'files','26594','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23186,'files','26595','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23187,'files','26596','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23188,'files','26597','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23189,'files','26598','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23190,'files','26599','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23191,'files','26600','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23192,'files','26601','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23193,'files','26602','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23194,'files','26603','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23195,'files','26604','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23196,'files','26605','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23197,'files','26606','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23198,'files','26607','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23199,'files','26608','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23200,'files','26609','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23201,'files','26610','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23202,'files','26611','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23203,'files','26612','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23204,'files','26613','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23205,'files','26614','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23206,'files','26615','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23207,'files','26616','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23208,'files','26617','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23209,'files','26618','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23210,'files','26619','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23211,'files','26620','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23212,'files','26621','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23213,'files','26622','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23214,'files','26623','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23215,'files','26624','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23216,'files','26625','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23217,'files','26626','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23218,'files','26627','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23219,'files','26628','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23220,'files','26629','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23221,'files','26630','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23222,'files','26631','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23223,'files','26632','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23224,'files','26633','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23225,'files','26634','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23226,'files','26635','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23227,'files','26636','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23228,'files','26637','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23229,'files','26638','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23230,'files','26639','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23231,'files','26640','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23232,'files','26641','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23233,'files','26642','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23234,'files','26643','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23235,'files','26644','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23236,'files','26645','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23237,'files','26646','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23238,'files','26647','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23239,'files','26648','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23240,'files','26649','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23241,'files','26650','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23242,'files','26651','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23243,'files','26652','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23244,'files','26653','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23245,'files','26654','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23246,'files','26655','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23247,'files','26656','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23248,'files','26657','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23249,'files','26658','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23250,'files','26660','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23251,'files','26661','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23252,'files','26662','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23253,'files','26663','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23254,'files','26664','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23255,'files','26665','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23256,'files','26666','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23257,'files','26667','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23258,'files','26668','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23259,'files','26669','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23260,'files','26670','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23261,'files','26671','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23262,'files','26672','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23263,'files','26673','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23264,'files','26674','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23265,'files','26675','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23266,'files','26676','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23267,'files','26677','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23268,'files','26678','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23269,'files','26679','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23270,'files','26680','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23271,'files','26681','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23272,'files','26682','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23273,'files','26683','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23274,'files','26684','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23275,'files','26685','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23276,'files','26686','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23277,'files','26687','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23278,'files','26688','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23279,'files','26689','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23280,'files','26690','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23281,'files','26691','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23282,'files','26692','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23283,'files','26693','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23284,'files','26694','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23285,'files','26695','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23286,'files','26696','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23287,'files','26697','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23288,'files','26698','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23289,'files','26699','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23290,'files','26700','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23291,'files','26701','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23292,'files','26702','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23293,'files','26703','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23294,'files','26704','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23295,'files','26705','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23296,'files','26706','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23297,'files','26707','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23298,'files','26708','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23299,'files','26709','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23300,'files','26710','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23301,'files','26711','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23302,'files','26712','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23303,'files','26713','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23304,'files','26714','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23305,'files','26715','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23306,'files','26716','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23307,'files','26717','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23308,'files','26718','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23309,'files','26719','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23310,'files','26720','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23311,'files','26721','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23312,'files','26722','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23313,'files','26723','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23314,'files','26724','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23315,'files','26725','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23316,'files','26726','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23317,'files','26727','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23318,'files','26728','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23319,'files','26729','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23320,'files','26730','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23321,'files','26732','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23322,'files','26733','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23323,'files','26734','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23324,'files','26735','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23325,'files','26736','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23326,'files','26737','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23327,'files','26738','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23328,'files','26739','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23329,'files','26740','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23330,'files','26741','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23331,'files','26742','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23332,'files','26743','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23333,'files','26744','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23334,'files','26745','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23335,'files','26746','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23336,'files','26747','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23337,'files','26748','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23338,'files','26749','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23339,'files','26750','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23340,'files','26751','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23341,'files','26752','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23342,'files','26753','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23343,'files','26754','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23344,'files','26755','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23345,'files','26756','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23346,'files','26757','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23347,'files','26758','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23348,'files','26759','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23349,'files','26760','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23350,'files','26761','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23351,'files','26762','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23352,'files','26763','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23353,'files','26764','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23354,'files','26765','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23355,'files','26766','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23356,'files','26767','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23357,'files','26768','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23358,'files','26769','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23359,'files','26770','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23360,'files','26771','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23361,'files','26772','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23362,'files','26773','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23363,'files','26774','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23364,'files','26775','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23365,'files','26776','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23366,'files','26777','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23367,'files','26778','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23368,'files','26779','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23369,'files','26780','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23370,'files','26781','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23371,'files','26782','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23372,'files','26783','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23373,'files','26784','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23374,'files','26785','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23375,'files','26786','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23376,'files','26787','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23377,'files','26788','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23378,'files','26789','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23379,'files','26790','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23380,'files','26791','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23381,'files','26792','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23382,'files','26793','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23383,'files','26794','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23384,'files','26795','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23385,'files','26798','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23386,'files','26799','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23387,'files','26800','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23388,'files','26801','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23389,'files','26802','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23390,'files','26803','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23391,'files','26804','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23392,'files','26805','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23393,'files','26806','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23394,'files','26807','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23395,'files','26808','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23396,'files','26812','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23397,'files','26813','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23398,'files','26814','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23399,'files','26815','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23400,'files','26816','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23401,'files','26817','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23402,'files','26818','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23403,'files','26819','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23404,'files','26820','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23405,'files','26821','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23406,'files','26822','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23407,'files','26823','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23408,'files','26825','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23409,'files','26826','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23410,'files','26827','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23411,'files','26828','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23412,'files','26829','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23413,'files','26830','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23414,'files','26831','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23415,'files','26832','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23416,'files','26833','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23417,'files','26834','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23418,'files','26835','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23419,'files','26836','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23420,'files','26837','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23421,'files','26838','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23422,'files','26839','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23423,'files','26840','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23424,'files','26841','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23425,'files','26842','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23426,'files','26843','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23427,'files','26844','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23428,'files','26845','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23429,'files','26846','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23430,'files','26847','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23431,'files','26848','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23432,'files','26849','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23433,'files','26850','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23434,'files','26851','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23435,'files','26852','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23436,'files','26853','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23437,'files','26854','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23438,'files','26855','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23439,'files','26856','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23440,'files','26857','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23441,'files','26858','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23442,'files','26859','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23443,'files','26860','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23444,'files','26861','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23445,'files','26862','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23446,'files','26863','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23447,'files','26864','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23448,'files','26865','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23449,'files','26866','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23450,'files','26867','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23451,'files','26868','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23452,'files','26869','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23453,'files','26870','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23454,'files','26871','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23455,'files','26872','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23456,'files','26873','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23457,'files','26874','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23458,'files','26875','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23459,'files','26876','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23460,'files','26877','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23461,'files','26878','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23462,'files','26879','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23463,'files','26880','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23464,'files','26881','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23465,'files','26882','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23466,'files','26883','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23467,'files','26884','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23468,'files','26885','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23469,'files','26886','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23470,'files','26887','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23471,'files','26888','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23472,'files','26889','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23473,'files','26890','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23474,'files','26891','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23475,'files','26892','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23476,'files','26893','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23477,'files','26894','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23478,'files','26895','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23479,'files','26896','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23480,'files','26897','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23481,'files','26898','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23482,'files','26899','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23483,'files','26900','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23484,'files','26901','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23485,'files','26902','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23486,'files','26903','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23487,'files','26904','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23488,'files','26905','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23489,'files','26906','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23490,'files','26907','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23491,'files','26908','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23492,'files','26909','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23493,'files','26910','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23494,'files','26911','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23495,'files','26912','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23496,'files','26913','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23497,'files','26914','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23498,'files','26915','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23499,'files','26916','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23500,'files','26917','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23501,'files','26918','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23502,'files','26919','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23503,'files','26920','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23504,'files','26921','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23505,'files','26922','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23506,'files','26923','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23507,'files','26924','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23508,'files','26925','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23509,'files','26926','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23510,'files','26927','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23511,'files','26928','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23512,'files','26929','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23513,'files','26930','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23514,'files','26931','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23515,'files','26932','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23516,'files','26933','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23517,'files','26934','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23518,'files','26935','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23519,'files','26936','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23520,'files','26937','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23521,'files','26938','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23522,'files','26939','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23523,'files','26940','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23524,'files','26941','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23525,'files','26942','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23526,'files','26943','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23527,'files','26944','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23528,'files','26945','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23529,'files','26946','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23530,'files','26947','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23531,'files','26948','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23532,'files','26950','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23533,'files','26952','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23534,'files','26953','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23535,'files','26954','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23536,'files','26955','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23537,'files','26956','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23538,'files','26957','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23539,'files','26958','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23540,'files','26959','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23541,'files','26960','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23542,'files','26961','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23543,'files','26962','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23544,'files','26963','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23545,'files','26964','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23546,'files','26965','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23547,'files','26967','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23548,'files','26968','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23549,'files','26969','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23550,'files','26970','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23551,'files','26971','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23552,'files','26972','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23553,'files','26973','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23554,'files','26974','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23555,'files','26975','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23556,'files','26976','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23557,'files','26977','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23558,'files','26978','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23559,'files','26979','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23560,'files','26980','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23561,'files','26981','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23562,'files','26982','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23563,'files','26983','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23564,'files','26984','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23565,'files','26985','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23566,'files','26986','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23567,'files','26987','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23568,'files','26988','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23569,'files','26989','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23570,'files','26990','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23571,'files','26991','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23572,'files','26992','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23573,'files','26993','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23574,'files','26994','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23575,'files','26995','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23576,'files','26996','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23577,'files','26997','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23578,'files','26998','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23579,'files','26999','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23580,'files','27000','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23581,'files','27001','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23582,'files','27002','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23583,'files','27003','error','Deal not found: 508',NULL,'2025-11-14 00:17:03'),
(23584,'files','27004','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23585,'files','27005','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23586,'files','27006','error','Deal not found: 196',NULL,'2025-11-14 00:17:03'),
(23587,'files','27007','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23588,'files','27008','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23589,'files','27009','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23590,'files','27010','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23591,'files','27011','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23592,'files','27012','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23593,'files','27013','error','Deal not found: 508',NULL,'2025-11-14 00:17:03'),
(23594,'files','27014','error','Deal not found: 212',NULL,'2025-11-14 00:17:03'),
(23595,'files','27015','error','Deal not found: 508',NULL,'2025-11-14 00:17:03'),
(23596,'files','27016','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23597,'files','27017','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23598,'files','27018','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23599,'files','27019','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23600,'files','27020','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23601,'files','27021','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23602,'files','27022','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23603,'files','27023','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23604,'files','27024','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23605,'files','27025','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23606,'files','27026','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23607,'files','27027','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23608,'files','27028','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23609,'files','27029','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23610,'files','27030','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23611,'files','27031','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23612,'files','27032','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23613,'files','27033','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23614,'files','27034','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23615,'files','27035','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23616,'files','27036','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23617,'files','27037','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23618,'files','27038','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23619,'files','27039','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23620,'files','27040','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23621,'files','27041','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23622,'files','27042','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23623,'files','27043','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23624,'files','27044','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23625,'files','27045','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23626,'files','27046','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23627,'files','27048','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23628,'files','27050','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23629,'files','27051','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23630,'files','27053','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23631,'files','27055','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23632,'files','27058','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23633,'files','27062','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23634,'files','27063','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23635,'files','27064','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23636,'files','27065','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23637,'files','27066','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23638,'files','27067','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23639,'files','27068','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23640,'files','27069','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23641,'files','27070','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23642,'files','27071','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23643,'files','27072','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23644,'files','27073','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23645,'files','27074','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23646,'files','27075','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23647,'files','27076','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23648,'files','27077','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23649,'files','27078','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23650,'files','27079','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23651,'files','27080','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23652,'files','27081','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23653,'files','27082','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23654,'files','27083','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23655,'files','27084','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23656,'files','27085','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23657,'files','27086','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23658,'files','27087','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23659,'files','27088','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23660,'files','27089','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23661,'files','27090','error','Deal not found: 256',NULL,'2025-11-14 00:17:03'),
(23662,'files','27091','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23663,'files','27092','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23664,'files','27093','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23665,'files','27094','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23666,'files','27095','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23667,'files','27096','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23668,'files','27097','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23669,'files','27098','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23670,'files','27099','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23671,'files','27100','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23672,'files','27101','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23673,'files','27102','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23674,'files','27103','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23675,'files','27104','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23676,'files','27106','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23677,'files','27108','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23678,'files','27109','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23679,'files','27110','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23680,'files','27111','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23681,'files','27112','error','Deal not found: 717',NULL,'2025-11-14 00:17:03'),
(23682,'files','27113','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23683,'files','27114','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23684,'files','27115','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23685,'files','27116','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23686,'files','27117','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23687,'files','27118','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23688,'files','27119','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23689,'files','27120','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23690,'files','27121','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23691,'files','27122','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23692,'files','27123','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23693,'files','27124','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23694,'files','27125','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23695,'files','27126','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23696,'files','27127','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23697,'files','27128','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23698,'files','27129','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23699,'files','27130','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23700,'files','27131','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23701,'files','27132','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23702,'files','27133','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23703,'files','27134','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23704,'files','27135','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23705,'files','27136','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23706,'files','27137','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23707,'files','27138','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23708,'files','27139','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23709,'files','27140','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23710,'files','27141','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23711,'files','27142','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23712,'files','27143','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23713,'files','27144','error','Deal not found: 192',NULL,'2025-11-14 00:17:03'),
(23714,'files','27145','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23715,'files','27146','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23716,'files','27147','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23717,'files','27148','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23718,'files','27149','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23719,'files','27150','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23720,'files','27151','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23721,'files','27152','error','Deal not found: 256',NULL,'2025-11-14 00:17:03'),
(23722,'files','27153','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23723,'files','27154','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23724,'files','27155','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23725,'files','27156','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23726,'files','27157','error','Deal not found: 508',NULL,'2025-11-14 00:17:03'),
(23727,'files','27158','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23728,'files','27159','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23729,'files','27160','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23730,'files','27161','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23731,'files','27162','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23732,'files','27163','error','Deal not found: 223',NULL,'2025-11-14 00:17:03'),
(23733,'files','27164','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23734,'files','27165','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23735,'files','27166','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23736,'files','27167','error','Deal not found: 223',NULL,'2025-11-14 00:17:03'),
(23737,'files','27168','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23738,'files','27169','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23739,'files','27170','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23740,'files','27171','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23741,'files','27172','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23742,'files','27173','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23743,'files','27174','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23744,'files','27175','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23745,'files','27176','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23746,'files','27177','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23747,'files','27178','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23748,'files','27179','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23749,'files','27180','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23750,'files','27181','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23751,'files','27182','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23752,'files','27183','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23753,'files','27184','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23754,'files','27185','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23755,'files','27186','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23756,'files','27187','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23757,'files','27188','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23758,'files','27189','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23759,'files','27190','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23760,'files','27191','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23761,'files','27192','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23762,'files','27193','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23763,'files','27194','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23764,'files','27195','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23765,'files','27196','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23766,'files','27197','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23767,'files','27198','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23768,'files','27199','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23769,'files','27200','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23770,'files','27201','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23771,'files','27202','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23772,'files','27203','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23773,'files','27204','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23774,'files','27205','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23775,'files','27208','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23776,'files','27209','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23777,'files','27210','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23778,'files','27211','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23779,'files','27212','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23780,'files','27213','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23781,'files','27214','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23782,'files','27215','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23783,'files','27216','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23784,'files','27217','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23785,'files','27218','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23786,'files','27219','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23787,'files','27220','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23788,'files','27221','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23789,'files','27222','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23790,'files','27223','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23791,'files','27224','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23792,'files','27225','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23793,'files','27226','error','Deal not found: 313',NULL,'2025-11-14 00:17:03'),
(23794,'files','27227','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23795,'files','27228','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23796,'files','27229','error','Deal not found: 313',NULL,'2025-11-14 00:17:03'),
(23797,'files','27230','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23798,'files','27231','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23799,'files','27232','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23800,'files','27233','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23801,'files','27234','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23802,'files','27235','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23803,'files','27236','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23804,'files','27237','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23805,'files','27238','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23806,'files','27239','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23807,'files','27240','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23808,'files','27241','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23809,'files','27242','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23810,'files','27243','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23811,'files','27244','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23812,'files','27245','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23813,'files','27246','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23814,'files','27247','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23815,'files','27248','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23816,'files','27249','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23817,'files','27250','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23818,'files','27251','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23819,'files','27252','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23820,'files','27253','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23821,'files','27254','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23822,'files','27255','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23823,'files','27256','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23824,'files','27257','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23825,'files','27258','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23826,'files','27259','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23827,'files','27260','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23828,'files','27261','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23829,'files','27262','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23830,'files','27263','error','Deal not found: 323',NULL,'2025-11-14 00:17:03'),
(23831,'files','27264','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23832,'files','27265','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23833,'files','27266','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23834,'files','27267','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23835,'files','27268','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23836,'files','27269','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23837,'files','27270','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23838,'files','27271','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23839,'files','27272','error','Deal not found: 323',NULL,'2025-11-14 00:17:03'),
(23840,'files','27273','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23841,'files','27274','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23842,'files','27275','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23843,'files','27276','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23844,'files','27278','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23845,'files','27280','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23846,'files','27285','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23847,'files','27286','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23848,'files','27289','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23849,'files','27290','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23850,'files','27291','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23851,'files','27292','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23852,'files','27293','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23853,'files','27294','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23854,'files','27295','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23855,'files','27296','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23856,'files','27297','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23857,'files','27298','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23858,'files','27299','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23859,'files','27300','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23860,'files','27301','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23861,'files','27302','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23862,'files','27303','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23863,'files','27304','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23864,'files','27305','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23865,'files','27306','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23866,'files','27307','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23867,'files','27308','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23868,'files','27309','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23869,'files','27310','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23870,'files','27311','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23871,'files','27312','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23872,'files','27313','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23873,'files','27314','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23874,'files','27315','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23875,'files','27316','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23876,'files','27317','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23877,'files','27318','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23878,'files','27319','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23879,'files','27320','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23880,'files','27322','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23881,'files','27323','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23882,'files','27324','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23883,'files','27325','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23884,'files','27326','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23885,'files','27327','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23886,'files','27328','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23887,'files','27329','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23888,'files','27332','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23889,'files','27333','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23890,'files','27334','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23891,'files','27335','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23892,'files','27336','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23893,'files','27337','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23894,'files','27338','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23895,'files','27339','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23896,'files','27340','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23897,'files','27341','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23898,'files','27342','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23899,'files','27343','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23900,'files','27344','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23901,'files','27345','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23902,'files','27346','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23903,'files','27347','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23904,'files','27348','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23905,'files','27349','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23906,'files','27350','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23907,'files','27351','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23908,'files','27352','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23909,'files','27353','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23910,'files','27354','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23911,'files','27355','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23912,'files','27356','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23913,'files','27357','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23914,'files','27358','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23915,'files','27359','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23916,'files','27360','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23917,'files','27361','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23918,'files','27362','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23919,'files','27363','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23920,'files','27364','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23921,'files','27365','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23922,'files','27366','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23923,'files','27367','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23924,'files','27368','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23925,'files','27369','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23926,'files','27370','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23927,'files','27371','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23928,'files','27372','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23929,'files','27373','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23930,'files','27374','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23931,'files','27375','error','Deal not found: 362',NULL,'2025-11-14 00:17:03'),
(23932,'files','27376','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23933,'files','27377','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23934,'files','27378','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23935,'files','27379','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23936,'files','27380','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23937,'files','27381','error','Deal not found: 257',NULL,'2025-11-14 00:17:03'),
(23938,'files','27382','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23939,'files','27383','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23940,'files','27384','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23941,'files','27385','error','Deal not found: 186',NULL,'2025-11-14 00:17:03'),
(23942,'files','27386','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23943,'files','27387','error','Deal not found: 528',NULL,'2025-11-14 00:17:03'),
(23944,'files','27388','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23945,'files','27389','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23946,'files','27390','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23947,'files','27391','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23948,'files','27392','error','Deal not found: 440',NULL,'2025-11-14 00:17:03'),
(23949,'files','27393','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23950,'files','27394','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23951,'files','27395','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23952,'files','27396','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23953,'files','27397','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23954,'files','27398','error','Deal not found: 486',NULL,'2025-11-14 00:17:03'),
(23955,'files','27399','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23956,'files','27400','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23957,'files','27401','error','Deal not found: 186',NULL,'2025-11-14 00:17:03'),
(23958,'files','27402','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23959,'files','27403','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23960,'files','27404','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23961,'files','27405','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23962,'files','27406','error','Deal not found: 518',NULL,'2025-11-14 00:17:03'),
(23963,'files','27407','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23964,'files','27408','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23965,'files','27409','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23966,'files','27410','error','Deal not found: 486',NULL,'2025-11-14 00:17:03'),
(23967,'files','27411','error','Deal not found: 462',NULL,'2025-11-14 00:17:03'),
(23968,'files','27412','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23969,'files','27413','error','Deal not found: 495',NULL,'2025-11-14 00:17:03'),
(23970,'files','27414','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23971,'files','27415','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23972,'files','27416','error','Deal not found: 466',NULL,'2025-11-14 00:17:03'),
(23973,'files','27417','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23974,'files','27418','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23975,'files','27419','error','Deal not found: 420',NULL,'2025-11-14 00:17:03'),
(23976,'files','27420','error','Deal not found: 548',NULL,'2025-11-14 00:17:03'),
(23977,'files','27421','error','Deal not found: 291',NULL,'2025-11-14 00:17:03'),
(23978,'files','27422','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23979,'files','27423','error','Deal not found: 339',NULL,'2025-11-14 00:17:03'),
(23980,'files','27424','error','Deal not found: 495',NULL,'2025-11-14 00:17:03'),
(23981,'files','27425','error','Deal not found: 495',NULL,'2025-11-14 00:17:03'),
(23982,'files','27426','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23983,'files','27427','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23984,'files','27428','error','Deal not found: 615',NULL,'2025-11-14 00:17:03'),
(23985,'files','27429','error','Deal not found: 623',NULL,'2025-11-14 00:17:03'),
(23986,'files','27430','error','Deal not found: 527',NULL,'2025-11-14 00:17:03'),
(23987,'files','27431','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23988,'files','27432','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23989,'files','27433','error','Deal not found: 213',NULL,'2025-11-14 00:17:03'),
(23990,'files','27434','error','Deal not found: 462',NULL,'2025-11-14 00:17:03'),
(23991,'files','27435','error','Deal not found: 390',NULL,'2025-11-14 00:17:03'),
(23992,'files','27436','error','Deal not found: 213',NULL,'2025-11-14 00:17:03'),
(23993,'files','27437','error','Deal not found: 462',NULL,'2025-11-14 00:17:03'),
(23994,'files','27438','error','Deal not found: 213',NULL,'2025-11-14 00:17:03'),
(23995,'files','27439','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23996,'files','27440','error','Deal not found: 410',NULL,'2025-11-14 00:17:03'),
(23997,'files','27441','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23998,'files','27442','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23999,'files','27443','error','Deal not found: 426',NULL,'2025-11-14 00:17:03'),
(24000,'files','27444','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24001,'files','27445','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24002,'files','27446','error','Deal not found: 483',NULL,'2025-11-14 00:17:03'),
(24003,'files','27447','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24004,'files','27448','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24005,'files','27449','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24006,'files','27450','error','Deal not found: 586',NULL,'2025-11-14 00:17:03'),
(24007,'files','27451','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24008,'files','27452','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24009,'files','27453','error','Deal not found: 472',NULL,'2025-11-14 00:17:03'),
(24010,'files','27454','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24011,'files','27455','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24012,'files','27456','error','Deal not found: 481',NULL,'2025-11-14 00:17:03'),
(24013,'files','27457','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24014,'files','27458','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24015,'files','27459','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24016,'files','27460','error','Deal not found: 291',NULL,'2025-11-14 00:17:03'),
(24017,'files','27461','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24018,'files','27462','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24019,'files','27463','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24020,'files','27464','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24021,'files','27465','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24022,'files','27467','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24023,'files','27468','error','Deal not found: 595',NULL,'2025-11-14 00:17:03'),
(24024,'files','27469','error','Deal not found: 619',NULL,'2025-11-14 00:17:03'),
(24025,'files','27470','error','Deal not found: 588',NULL,'2025-11-14 00:17:03'),
(24026,'files','27471','error','Deal not found: 606',NULL,'2025-11-14 00:17:03'),
(24027,'files','27472','error','Deal not found: 604',NULL,'2025-11-14 00:17:03'),
(24028,'files','27473','error','Deal not found: 582',NULL,'2025-11-14 00:17:03'),
(24029,'files','27474','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24030,'files','27475','error','Deal not found: 586',NULL,'2025-11-14 00:17:03'),
(24031,'files','27476','error','Deal not found: 257',NULL,'2025-11-14 00:17:03'),
(24032,'files','27477','error','Deal not found: 257',NULL,'2025-11-14 00:17:03'),
(24033,'files','27478','error','Deal not found: 599',NULL,'2025-11-14 00:17:03'),
(24034,'files','27479','error','Deal not found: 257',NULL,'2025-11-14 00:17:03'),
(24035,'files','27480','error','Deal not found: 508',NULL,'2025-11-14 00:17:03'),
(24036,'files','27481','error','Deal not found: 508',NULL,'2025-11-14 00:17:03'),
(24037,'files','27482','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24038,'files','27483','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24039,'files','27484','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24040,'files','27485','error','Deal not found: 604',NULL,'2025-11-14 00:17:03'),
(24041,'files','27486','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24042,'files','27487','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24043,'files','27488','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24044,'files','27489','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24045,'files','27490','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24046,'files','27491','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24047,'files','27492','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24048,'files','27493','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24049,'files','27494','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24050,'files','27495','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24051,'files','27496','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24052,'files','27497','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24053,'files','27498','error','Deal not found: 315',NULL,'2025-11-14 00:17:03'),
(24054,'files','27499','error','Deal not found: 315',NULL,'2025-11-14 00:17:03'),
(24055,'files','27500','error','Deal not found: 315',NULL,'2025-11-14 00:17:03'),
(24056,'files','27501','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24057,'files','27502','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24058,'files','27503','error','Deal not found: 508',NULL,'2025-11-14 00:17:03'),
(24059,'files','27504','error','Deal not found: 540',NULL,'2025-11-14 00:17:03'),
(24060,'files','27505','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24061,'files','27506','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24062,'files','27507','error','Deal not found: 540',NULL,'2025-11-14 00:17:03'),
(24063,'files','27508','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24064,'files','27509','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24065,'files','27510','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24066,'files','27511','error','Deal not found: 540',NULL,'2025-11-14 00:17:03'),
(24067,'files','27512','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24068,'files','27514','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24069,'files','27515','error','Deal not found: 460',NULL,'2025-11-14 00:17:03'),
(24070,'files','27516','error','Deal not found: 460',NULL,'2025-11-14 00:17:03'),
(24071,'files','27517','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24072,'files','27518','error','Deal not found: 315',NULL,'2025-11-14 00:17:03'),
(24073,'files','27519','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24074,'files','27520','error','Deal not found: 315',NULL,'2025-11-14 00:17:03'),
(24075,'files','27521','error','Deal not found: 315',NULL,'2025-11-14 00:17:03'),
(24076,'files','27522','error','Deal not found: 265',NULL,'2025-11-14 00:17:03'),
(24077,'files','27523','error','Deal not found: 265',NULL,'2025-11-14 00:17:03'),
(24078,'files','27524','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24079,'files','27525','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24080,'files','27526','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24081,'files','27527','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24082,'files','27528','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24083,'files','27529','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24084,'files','27530','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24085,'files','27531','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24086,'files','27532','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24087,'files','27533','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24088,'files','27534','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24089,'files','27535','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24090,'files','27536','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24091,'files','27537','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24092,'files','27538','error','Deal not found: 497',NULL,'2025-11-14 00:17:03'),
(24093,'files','27539','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24094,'files','27540','error','Deal not found: 497',NULL,'2025-11-14 00:17:03'),
(24095,'files','27541','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24096,'files','27542','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24097,'files','27543','error','Deal not found: 460',NULL,'2025-11-14 00:17:03'),
(24098,'files','27544','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24099,'files','27545','error','Deal not found: 460',NULL,'2025-11-14 00:17:03'),
(24100,'files','27546','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24101,'files','27547','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24102,'files','27548','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24103,'files','27549','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24104,'files','27550','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24105,'files','27551','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24106,'files','27552','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24107,'files','27553','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24108,'files','27554','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24109,'files','27555','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24110,'files','27556','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24111,'files','27557','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24112,'files','27558','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24113,'files','27559','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24114,'files','27560','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24115,'files','27561','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24116,'files','27562','error','Deal not found: 251',NULL,'2025-11-14 00:17:03'),
(24117,'files','27563','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24118,'files','27564','error','Deal not found: 677',NULL,'2025-11-14 00:17:03'),
(24119,'files','27565','error','Deal not found: 251',NULL,'2025-11-14 00:17:03'),
(24120,'files','27566','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24121,'files','27567','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24122,'files','27568','error','Deal not found: 249',NULL,'2025-11-14 00:17:03'),
(24123,'files','27569','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24124,'files','27570','error','Deal not found: 313',NULL,'2025-11-14 00:17:03'),
(24125,'files','27571','error','Deal not found: 313',NULL,'2025-11-14 00:17:03'),
(24126,'files','27572','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24127,'files','27573','error','Deal not found: 223',NULL,'2025-11-14 00:17:03'),
(24128,'files','27574','error','Deal not found: 223',NULL,'2025-11-14 00:17:03'),
(24129,'files','27575','error','Deal not found: 223',NULL,'2025-11-14 00:17:03'),
(24130,'files','27576','error','Deal not found: 604',NULL,'2025-11-14 00:17:03'),
(24131,'files','27577','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24132,'files','27578','error','Deal not found: 466',NULL,'2025-11-14 00:17:03'),
(24133,'files','27579','error','Deal not found: 466',NULL,'2025-11-14 00:17:03'),
(24134,'files','27580','error','Deal not found: 466',NULL,'2025-11-14 00:17:03'),
(24135,'files','27581','error','Deal not found: 466',NULL,'2025-11-14 00:17:03'),
(24136,'files','27582','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24137,'files','27583','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24138,'files','27584','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24139,'files','27585','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24140,'files','27586','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24141,'files','27587','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24142,'files','27588','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24143,'files','27589','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24144,'files','27590','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24145,'files','27591','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24146,'files','27592','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24147,'files','27593','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24148,'files','27594','error','Deal not found: 150',NULL,'2025-11-14 00:17:03'),
(24149,'files','27595','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24150,'files','27596','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24151,'files','27597','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24152,'files','27598','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24153,'files','27599','error','Deal not found: 150',NULL,'2025-11-14 00:17:03'),
(24154,'files','27600','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24155,'files','27601','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24156,'files','27602','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24157,'files','27603','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24158,'files','27604','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24159,'files','27605','error','Deal not found: 249',NULL,'2025-11-14 00:17:03'),
(24160,'files','27606','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24161,'files','27607','error','Deal not found: 700',NULL,'2025-11-14 00:17:03'),
(24162,'files','27608','error','Deal not found: 636',NULL,'2025-11-14 00:17:03'),
(24163,'files','27609','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24164,'files','27610','error','Deal not found: 700',NULL,'2025-11-14 00:17:03'),
(24165,'files','27611','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24166,'files','27612','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24167,'files','27613','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24168,'files','27614','error','Deal not found: 249',NULL,'2025-11-14 00:17:03'),
(24169,'files','27615','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24170,'files','27616','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24171,'files','27617','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24172,'files','27618','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24173,'files','27619','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24174,'files','27620','error','Deal not found: 708',NULL,'2025-11-14 00:17:03'),
(24175,'files','27621','error','Deal not found: 627',NULL,'2025-11-14 00:17:03'),
(24176,'files','27622','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24177,'files','27623','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24178,'files','27624','error','Deal not found: 708',NULL,'2025-11-14 00:17:03'),
(24179,'files','27625','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24180,'files','27626','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24181,'files','27627','error','Deal not found: 627',NULL,'2025-11-14 00:17:03'),
(24182,'files','27628','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24183,'files','27629','error','Deal not found: 636',NULL,'2025-11-14 00:17:03'),
(24184,'files','27630','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24185,'files','27631','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24186,'files','27632','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24187,'files','27633','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24188,'files','27634','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24189,'files','27635','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24190,'files','27636','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24191,'files','27637','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24192,'files','27638','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24193,'files','27639','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24194,'files','27640','error','Deal not found: 442',NULL,'2025-11-14 00:17:03'),
(24195,'files','27641','error','Deal not found: 442',NULL,'2025-11-14 00:17:03'),
(24196,'files','27642','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24197,'files','27643','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24198,'files','27644','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24199,'files','27645','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24200,'files','27646','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24201,'files','27647','error','Deal not found: 636',NULL,'2025-11-14 00:17:03'),
(24202,'files','27648','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24203,'files','27649','error','Deal not found: 249',NULL,'2025-11-14 00:17:03'),
(24204,'files','27650','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24205,'files','27651','error','Deal not found: 249',NULL,'2025-11-14 00:17:03'),
(24206,'files','27652','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24207,'files','27653','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24208,'files','27654','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24209,'files','27655','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24210,'files','27657','error','Deal not found: 443',NULL,'2025-11-14 00:17:03'),
(24211,'files','27658','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24212,'files','27659','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24213,'files','27660','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24214,'files','27661','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24215,'files','27662','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24216,'files','27663','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24217,'files','27664','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24218,'files','27665','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24219,'files','27666','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24220,'files','27667','error','Deal not found: 249',NULL,'2025-11-14 00:17:03'),
(24221,'files','27668','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24222,'files','27669','error','Deal not found: 204',NULL,'2025-11-14 00:17:03'),
(24223,'files','27670','error','Deal not found: 249',NULL,'2025-11-14 00:17:03'),
(24224,'files','27671','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24225,'files','27672','error','Deal not found: 204',NULL,'2025-11-14 00:17:03'),
(24226,'files','27673','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24227,'files','27674','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24228,'files','27675','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24229,'files','27676','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24230,'files','27677','error','Deal not found: 717',NULL,'2025-11-14 00:17:03'),
(24231,'files','27678','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24232,'files','27679','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24233,'files','27680','error','Deal not found: 717',NULL,'2025-11-14 00:17:03'),
(24234,'files','27681','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24235,'files','27682','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24236,'files','27683','error','Deal not found: 730',NULL,'2025-11-14 00:17:03'),
(24237,'files','27684','error','Deal not found: 730',NULL,'2025-11-14 00:17:03'),
(24238,'files','27685','error','Deal not found: 61',NULL,'2025-11-14 00:17:03'),
(24239,'files','27686','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24240,'files','27687','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24241,'files','27688','error','Deal not found: 61',NULL,'2025-11-14 00:17:03'),
(24242,'files','27689','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24243,'files','27690','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24244,'files','27691','error','Deal not found: 733',NULL,'2025-11-14 00:17:03'),
(24245,'files','27692','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24246,'files','27693','error','Deal not found: 733',NULL,'2025-11-14 00:17:03'),
(24247,'files','27694','error','Deal not found: 287',NULL,'2025-11-14 00:17:03'),
(24248,'files','27695','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24249,'files','27696','error','Deal not found: 249',NULL,'2025-11-14 00:17:03'),
(24250,'files','27697','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24251,'files','27698','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24252,'files','27699','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24253,'files','27700','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24254,'files','27701','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24255,'files','27702','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24256,'files','27703','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24257,'files','27704','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24258,'files','27705','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24259,'files','27706','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24260,'files','27707','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24261,'files','27708','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24262,'files','27709','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24263,'files','27710','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24264,'files','27711','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24265,'files','27712','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24266,'files','27713','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24267,'files','27714','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24268,'files','27715','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24269,'files','27716','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24270,'files','27717','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24271,'files','27718','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24272,'files','27719','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24273,'files','27720','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24274,'files','27721','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24275,'files','27722','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24276,'files','27723','error','Deal not found: 323',NULL,'2025-11-14 00:17:03'),
(24277,'files','27724','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24278,'files','27725','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24279,'files','27726','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24280,'files','27727','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24281,'files','27728','error','Deal not found: 323',NULL,'2025-11-14 00:17:03'),
(24282,'files','27729','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24283,'files','27730','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24284,'files','27731','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24285,'files','27732','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24286,'files','27733','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24287,'files','27734','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24288,'files','27735','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24289,'files','27736','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24290,'files','27737','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24291,'files','27738','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24292,'files','27739','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24293,'files','27740','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24294,'files','27741','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24295,'files','27742','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24296,'files','27743','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24297,'files','27744','error','Deal not found: 759',NULL,'2025-11-14 00:17:03'),
(24298,'files','27745','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24299,'files','27746','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24300,'files','27747','error','Deal not found: 265',NULL,'2025-11-14 00:17:03'),
(24301,'files','27748','error','Deal not found: 265',NULL,'2025-11-14 00:17:03'),
(24302,'files','27749','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24303,'files','27750','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24304,'files','27751','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24305,'files','27752','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24306,'files','27753','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24307,'files','27754','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24308,'files','27755','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24309,'files','27756','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24310,'files','27757','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24311,'files','27758','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24312,'files','27759','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24313,'files','27760','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24314,'files','27761','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24315,'files','27762','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24316,'files','27763','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24317,'files','27764','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24318,'files','27765','error','Deal not found: 466',NULL,'2025-11-14 00:17:03'),
(24319,'files','27766','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24320,'files','27767','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24321,'files','27768','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24322,'files','27769','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24323,'files','27770','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24324,'files','27771','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24325,'files','27772','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24326,'files','27773','error','Deal not found: 466',NULL,'2025-11-14 00:17:03'),
(24327,'files','27774','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24328,'files','27775','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24329,'files','27776','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24330,'files','27777','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24331,'files','27778','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24332,'files','27779','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24333,'files','27780','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24334,'files','27781','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24335,'files','27782','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24336,'files','27783','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24337,'files','27784','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24338,'files','27785','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24339,'files','27786','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24340,'files','27787','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24341,'files','27788','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24342,'files','27789','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24343,'files','27790','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24344,'files','27791','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24345,'files','27792','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24346,'files','27793','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24347,'files','27794','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24348,'files','27795','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24349,'files','27796','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24350,'files','27797','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24351,'files','27798','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24352,'files','27799','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24353,'files','27800','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24354,'files','27801','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24355,'files','27802','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24356,'files','27803','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24357,'files','27804','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24358,'files','27805','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24359,'files','27807','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24360,'files','27808','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24361,'files','27810','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24362,'files','27812','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24363,'files','27813','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24364,'files','27814','error','Deal not found: 278',NULL,'2025-11-14 00:17:03'),
(24365,'files','27815','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24366,'files','27816','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24367,'files','27817','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24368,'files','27818','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24369,'files','27819','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24370,'files','27820','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24371,'files','27821','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24372,'files','27822','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24373,'files','27823','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24374,'files','27824','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24375,'files','27825','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24376,'files','27826','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24377,'files','27827','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24378,'files','27828','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24379,'files','27829','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24380,'files','27830','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24381,'files','27831','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24382,'files','27832','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24383,'files','27833','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24384,'files','27834','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24385,'files','27835','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24386,'files','27836','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24387,'files','27837','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24388,'files','27838','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24389,'files','27839','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24390,'files','27840','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24391,'files','27841','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24392,'files','27842','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24393,'files','27843','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24394,'files','27844','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24395,'files','27845','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24396,'files','27846','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24397,'files','27847','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24398,'files','27848','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24399,'files','27849','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24400,'files','27850','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24401,'files','27851','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24402,'files','27852','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24403,'files','27853','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24404,'files','27854','error','Deal not found: 708',NULL,'2025-11-14 00:17:03'),
(24405,'files','27855','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24406,'files','27856','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24407,'files','27857','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24408,'files','27858','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24409,'files','27859','error','Deal not found: 708',NULL,'2025-11-14 00:17:03'),
(24410,'files','27860','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24411,'files','27861','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24412,'files','27862','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24413,'files','27863','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24414,'files','27864','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24415,'files','27865','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24416,'files','27866','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24417,'files','27867','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24418,'files','27868','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24419,'files','27869','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24420,'files','27870','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24421,'files','27871','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24422,'files','27872','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24423,'files','27873','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24424,'files','27874','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24425,'files','27875','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24426,'files','27876','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24427,'files','27877','error','Deal not found: 542',NULL,'2025-11-14 00:17:03'),
(24428,'files','27878','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24429,'files','27879','error','Deal not found: 542',NULL,'2025-11-14 00:17:03'),
(24430,'files','27880','error','Deal not found: 542',NULL,'2025-11-14 00:17:03'),
(24431,'files','27881','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24432,'files','27882','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24433,'files','27883','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24434,'files','27884','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24435,'files','27885','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24436,'files','27886','error','Deal not found: 256',NULL,'2025-11-14 00:17:03'),
(24437,'files','27887','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24438,'files','27888','error','Deal not found: 256',NULL,'2025-11-14 00:17:03'),
(24439,'files','27889','error','Deal not found: 362',NULL,'2025-11-14 00:17:03'),
(24440,'files','27890','error','Deal not found: 362',NULL,'2025-11-14 00:17:03'),
(24441,'files','27891','error','Deal not found: 251',NULL,'2025-11-14 00:17:03'),
(24442,'files','27892','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24443,'files','27893','error','Deal not found: 251',NULL,'2025-11-14 00:17:03'),
(24444,'files','27895','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24445,'files','27897','error','Deal not found: 192',NULL,'2025-11-14 00:17:03'),
(24446,'files','27898','error','Deal not found: 717',NULL,'2025-11-14 00:17:03'),
(24447,'files','27899','error','Deal not found: 192',NULL,'2025-11-14 00:17:03'),
(24448,'files','27900','error','Deal not found: 717',NULL,'2025-11-14 00:17:03'),
(24449,'files','27901','error','Deal not found: 192',NULL,'2025-11-14 00:17:03'),
(24450,'files','27902','error','Deal not found: 717',NULL,'2025-11-14 00:17:03'),
(24451,'files','27903','error','Deal not found: 223',NULL,'2025-11-14 00:17:03'),
(24452,'files','27904','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24453,'files','27905','error','Deal not found: 223',NULL,'2025-11-14 00:17:03'),
(24454,'files','27906','error','Deal not found: 223',NULL,'2025-11-14 00:17:03'),
(24455,'files','27907','error','Deal not found: 627',NULL,'2025-11-14 00:17:03'),
(24456,'files','27908','error','Deal not found: 627',NULL,'2025-11-14 00:17:03'),
(24457,'files','27909','error','Deal not found: 627',NULL,'2025-11-14 00:17:03'),
(24458,'files','27910','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24459,'files','27911','error','Deal not found: 710',NULL,'2025-11-14 00:17:03'),
(24460,'files','27912','error','Deal not found: 710',NULL,'2025-11-14 00:17:03'),
(24461,'files','27913','error','Deal not found: 710',NULL,'2025-11-14 00:17:03'),
(24462,'files','27914','error','Deal not found: 939',NULL,'2025-11-14 00:17:03'),
(24463,'files','27915','error','Deal not found: 939',NULL,'2025-11-14 00:17:03'),
(24464,'files','27916','error','Deal not found: 939',NULL,'2025-11-14 00:17:03'),
(24465,'files','27917','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24466,'files','27918','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24467,'files','27919','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24468,'files','27920','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24469,'files','27921','error','Deal not found: 990',NULL,'2025-11-14 00:17:03'),
(24470,'files','27922','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24471,'files','27923','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24472,'files','27924','error','Deal not found: 990',NULL,'2025-11-14 00:17:03'),
(24473,'files','27925','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24474,'files','27926','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24475,'files','27927','error','Deal not found: 990',NULL,'2025-11-14 00:17:03'),
(24476,'files','27928','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24477,'files','27929','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24478,'files','27930','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24479,'files','27931','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24480,'files','27932','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24481,'files','27933','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24482,'files','27934','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24483,'files','27935','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24484,'files','27936','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24485,'files','27937','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24486,'files','27938','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24487,'files','27939','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24488,'files','27940','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24489,'files','27941','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24490,'files','27942','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24491,'files','27943','error','Deal not found: 323',NULL,'2025-11-14 00:17:03'),
(24492,'files','27944','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24493,'files','27945','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24494,'files','27946','error','Deal not found: 998',NULL,'2025-11-14 00:17:03'),
(24495,'files','27947','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24496,'files','27948','error','Deal not found: 998',NULL,'2025-11-14 00:17:03'),
(24497,'files','27949','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24498,'files','27950','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24499,'files','27951','error','Deal not found: 998',NULL,'2025-11-14 00:17:03'),
(24500,'files','27952','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24501,'files','27953','error','Deal not found: 1009',NULL,'2025-11-14 00:17:03'),
(24502,'files','27954','error','Deal not found: 1009',NULL,'2025-11-14 00:17:03'),
(24503,'files','27955','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24504,'files','27956','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24505,'files','27957','error','Deal not found: 1009',NULL,'2025-11-14 00:17:03'),
(24506,'files','27958','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24507,'files','27959','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24508,'files','27960','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24509,'files','27961','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24510,'files','27962','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24511,'files','27963','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24512,'files','27964','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24513,'files','27965','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24514,'files','27966','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24515,'files','27967','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24516,'files','27968','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24517,'files','27969','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24518,'files','27970','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24519,'files','27971','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24520,'files','27972','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24521,'files','27973','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24522,'files','27974','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24523,'files','27976','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24524,'files','27977','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24525,'files','27978','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24526,'files','27979','error','Deal not found: 1013',NULL,'2025-11-14 00:17:03'),
(24527,'files','27980','error','Deal not found: 1724',NULL,'2025-11-14 00:17:03'),
(24528,'files','27981','error','Deal not found: 1013',NULL,'2025-11-14 00:17:03'),
(24529,'files','27982','error','Deal not found: 1724',NULL,'2025-11-14 00:17:03'),
(24530,'files','27983','error','Deal not found: 1013',NULL,'2025-11-14 00:17:03'),
(24531,'files','27984','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24532,'files','27985','error','Deal not found: 1724',NULL,'2025-11-14 00:17:03'),
(24533,'files','27986','error','Deal not found: 1724',NULL,'2025-11-14 00:17:03'),
(24534,'files','27987','error','Deal not found: 1006',NULL,'2025-11-14 00:17:03'),
(24535,'files','27988','error','Deal not found: 1006',NULL,'2025-11-14 00:17:03'),
(24536,'files','27989','error','Deal not found: 1006',NULL,'2025-11-14 00:17:03'),
(24537,'files','27990','error','Deal not found: 986',NULL,'2025-11-14 00:17:03'),
(24538,'files','27991','error','Deal not found: 986',NULL,'2025-11-14 00:17:03'),
(24539,'files','27992','error','Deal not found: 986',NULL,'2025-11-14 00:17:03'),
(24540,'files','27993','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24541,'files','27994','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24542,'files','27995','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24543,'files','27996','error','Deal not found: 714',NULL,'2025-11-14 00:17:03'),
(24544,'files','27997','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24545,'files','27998','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24546,'files','27999','error','Deal not found: 714',NULL,'2025-11-14 00:17:03'),
(24547,'files','28000','error','Deal not found: 714',NULL,'2025-11-14 00:17:03'),
(24548,'files','28001','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24549,'files','28002','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24550,'files','28003','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24551,'files','28005','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24552,'files','28006','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24553,'files','28007','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24554,'files','28008','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24555,'files','28009','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24556,'files','28010','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24557,'files','28011','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24558,'files','28012','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24559,'files','28013','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24560,'files','28014','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24561,'files','28015','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24562,'files','28016','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24563,'files','28017','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24564,'files','28018','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24565,'files','28019','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24566,'files','28020','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24567,'files','28021','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24568,'files','28022','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24569,'files','28023','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24570,'files','28024','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24571,'files','28025','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24572,'files','28026','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24573,'files','28027','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24574,'files','28028','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24575,'files','28029','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24576,'files','28030','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24577,'files','28031','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24578,'files','28032','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24579,'files','28033','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24580,'files','28034','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24581,'files','28035','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24582,'files','28036','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24583,'files','28037','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24584,'files','28038','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24585,'files','28039','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24586,'files','28040','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24587,'files','28041','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24588,'files','28042','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24589,'files','28043','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24590,'files','28044','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24591,'files','28045','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24592,'files','28046','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24593,'files','28047','error','Deal not found: 1724',NULL,'2025-11-14 00:17:03'),
(24594,'files','28048','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24595,'files','28049','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24596,'files','28050','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24597,'files','28051','error','Deal not found: 1724',NULL,'2025-11-14 00:17:03'),
(24598,'files','28052','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24599,'files','28053','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24600,'files','28054','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24601,'files','28055','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24602,'files','28056','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24603,'files','28057','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24604,'files','28058','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24605,'files','28059','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24606,'files','28060','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24607,'files','28061','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24608,'files','28062','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24609,'files','28063','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24610,'files','28064','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24611,'files','28065','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24612,'files','28066','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24613,'files','28067','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24614,'files','28068','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24615,'files','28070','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24616,'files','28071','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24617,'files','28072','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24618,'files','28073','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24619,'files','28074','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24620,'files','28075','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24621,'files','28077','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24622,'files','28078','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24623,'files','28079','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24624,'files','28080','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24625,'files','28081','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24626,'files','28082','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24627,'files','28083','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24628,'files','28085','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24629,'files','28086','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24630,'files','28087','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24631,'files','28089','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24632,'files','28091','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24633,'files','28092','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24634,'files','28093','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24635,'files','28094','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24636,'files','28095','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24637,'files','28096','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24638,'files','28097','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24639,'files','28098','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24640,'files','28099','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24641,'files','28100','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24642,'files','28101','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24643,'files','28102','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24644,'files','28103','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24645,'files','28104','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24646,'files','28105','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24647,'files','28106','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24648,'files','28107','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24649,'files','28108','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24650,'files','28109','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24651,'files','28110','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24652,'files','28111','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24653,'files','28112','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24654,'files','28113','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24655,'files','28114','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24656,'files','28115','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24657,'files','28116','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24658,'files','28117','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24659,'files','28118','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24660,'files','28119','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24661,'files','28120','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24662,'files','28121','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24663,'files','28122','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24664,'files','28123','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24665,'files','28124','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24666,'files','28125','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24667,'files','28126','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24668,'files','28127','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24669,'files','28128','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24670,'files','28129','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24671,'files','28130','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24672,'files','28131','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24673,'files','28132','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24674,'files','28133','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24675,'files','28134','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24676,'files','28135','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24677,'files','28136','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24678,'files','28137','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24679,'files','28138','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24680,'files','28139','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24681,'files','28140','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24682,'files','28141','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24683,'files','28142','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24684,'files','28143','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24685,'files','28144','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24686,'files','28145','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24687,'files','28146','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24688,'files','28147','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24689,'files','28148','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24690,'files','28149','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24691,'files','28150','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24692,'files','28151','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24693,'files','28152','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24694,'files','28153','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24695,'files','28154','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24696,'files','28155','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24697,'files','28156','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24698,'files','28157','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24699,'files','28158','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24700,'files','28159','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24701,'files','28160','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24702,'files','28161','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24703,'files','28162','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24704,'files','28163','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24705,'files','28164','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24706,'files','28165','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24707,'files','28166','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24708,'files','28167','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24709,'files','28168','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24710,'files','28169','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24711,'files','28170','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24712,'files','28171','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24713,'files','28172','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24714,'files','28173','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24715,'files','28174','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24716,'files','28175','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24717,'files','28176','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24718,'files','28177','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24719,'files','28178','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24720,'files','28179','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24721,'files','28180','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24722,'files','28181','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24723,'files','28182','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24724,'files','28183','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24725,'files','28184','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24726,'files','28185','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24727,'files','28186','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24728,'files','28187','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24729,'files','28188','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24730,'files','28189','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24731,'files','28190','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24732,'files','28191','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24733,'files','28192','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24734,'files','28193','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24735,'files','28194','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24736,'files','28195','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24737,'files','28196','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24738,'files','28197','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24739,'files','28198','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24740,'files','28199','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24741,'files','28200','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24742,'files','28201','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24743,'files','28202','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24744,'files','28203','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24745,'files','28204','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24746,'files','28205','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24747,'files','28206','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24748,'files','28209','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24749,'files','28211','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24750,'files','28212','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24751,'files','28214','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24752,'files','28215','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24753,'files','28216','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24754,'files','28217','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24755,'files','28219','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24756,'files','28221','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24757,'files','28222','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24758,'files','28223','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24759,'files','28224','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24760,'files','28225','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24761,'files','28226','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24762,'files','28228','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24763,'files','28229','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24764,'files','28231','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24765,'files','28232','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24766,'files','28233','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24767,'files','28234','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24768,'files','28235','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24769,'files','28236','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24770,'files','28237','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24771,'files','28238','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24772,'files','28239','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24773,'files','28240','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24774,'files','28241','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24775,'files','28242','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24776,'files','28243','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24777,'files','28244','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24778,'files','28245','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24779,'files','28246','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24780,'files','28247','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24781,'files','28248','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24782,'files','28249','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24783,'files','28250','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24784,'files','28251','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24785,'files','28252','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24786,'files','28253','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24787,'files','28254','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24788,'files','28255','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24789,'files','28256','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24790,'files','28257','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24791,'files','28258','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24792,'files','28259','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24793,'files','28260','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24794,'files','28261','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24795,'files','28262','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24796,'files','28263','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24797,'files','28264','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24798,'files','28265','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24799,'files','28267','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24800,'files','28268','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24801,'files','28269','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24802,'files','28270','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24803,'files','28271','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24804,'files','28272','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24805,'files','28273','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24806,'files','28274','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24807,'files','28275','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24808,'files','28276','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24809,'files','28277','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24810,'files','28278','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24811,'files','28279','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24812,'files','28280','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24813,'files','28281','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24814,'files','28282','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24815,'files','28283','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24816,'files','28284','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24817,'files','28285','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24818,'files','28286','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24819,'files','28287','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24820,'files','28288','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24821,'files','28289','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24822,'files','28290','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24823,'files','28291','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24824,'files','28292','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24825,'files','28293','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24826,'files','28294','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24827,'files','28295','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24828,'files','28296','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24829,'files','28297','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24830,'files','28298','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24831,'files','28300','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24832,'files','28301','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24833,'files','28302','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24834,'files','28303','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24835,'files','28304','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24836,'files','28305','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24837,'files','28306','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24838,'files','28307','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24839,'files','28308','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24840,'files','28309','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24841,'files','28310','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24842,'files','28311','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24843,'files','28312','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24844,'files','28313','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24845,'files','28314','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24846,'files','28315','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24847,'files','28316','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24848,'files','28317','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24849,'files','28318','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24850,'files','28319','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24851,'files','28320','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24852,'files','28321','skipped','No deal associated',NULL,'2025-11-14 00:17:03');
INSERT INTO `temp_pipedrive_import_log` VALUES
(24853,'files','28322','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24854,'files','28323','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(24855,'files','28324','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(24856,'files','28325','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24857,'files','28326','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24858,'files','28327','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24859,'files','28328','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24860,'files','28329','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24861,'files','28330','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24862,'files','28331','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24863,'files','28332','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24864,'files','28333','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24865,'files','28334','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(24866,'files','28335','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24867,'files','28336','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24868,'files','28337','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24869,'files','28338','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24870,'files','28339','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(24871,'files','28340','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(24872,'files','28341','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24873,'files','28342','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24874,'files','28343','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24875,'files','28344','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24876,'files','28345','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24877,'files','28346','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24878,'files','28347','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24879,'files','28348','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24880,'files','28349','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24881,'files','28350','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24882,'files','28351','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24883,'files','28352','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24884,'files','28353','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24885,'files','28354','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24886,'files','28355','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24887,'files','28356','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24888,'files','28357','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24889,'files','28358','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24890,'files','28359','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24891,'files','28360','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24892,'files','28361','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24893,'files','28362','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24894,'files','28363','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24895,'files','28364','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24896,'files','28365','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24897,'files','28366','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24898,'files','28367','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24899,'files','28368','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24900,'files','28369','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24901,'files','28370','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24902,'files','28371','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24903,'files','28372','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24904,'files','28373','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24905,'files','28374','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24906,'files','28375','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24907,'files','28376','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24908,'files','28377','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24909,'files','28378','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24910,'files','28379','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24911,'files','28380','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24912,'files','28381','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24913,'files','28382','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24914,'files','28383','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24915,'files','28384','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24916,'files','28385','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24917,'files','28386','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24918,'files','28387','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24919,'files','28388','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24920,'files','28389','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24921,'files','28390','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24922,'files','28391','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24923,'files','28392','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24924,'files','28393','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24925,'files','28394','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24926,'files','28395','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24927,'files','28396','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24928,'files','28397','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24929,'files','28398','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24930,'files','28399','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24931,'files','28400','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24932,'files','28401','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24933,'files','28402','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24934,'files','28403','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24935,'files','28404','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24936,'files','28405','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24937,'files','28406','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24938,'files','28407','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24939,'files','28408','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24940,'files','28409','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24941,'files','28410','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24942,'files','28411','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24943,'files','28412','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24944,'files','28413','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24945,'files','28414','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24946,'files','28415','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24947,'files','28416','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24948,'files','28417','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24949,'files','28418','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24950,'files','28419','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24951,'files','28420','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24952,'files','28421','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24953,'files','28422','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24954,'files','28423','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24955,'files','28424','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24956,'files','28425','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24957,'files','28426','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24958,'files','28427','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24959,'files','28428','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24960,'files','28429','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24961,'files','28430','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24962,'files','28431','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24963,'files','28432','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24964,'files','28433','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24965,'files','28434','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24966,'files','28435','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24967,'files','28436','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24968,'files','28437','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24969,'files','28438','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24970,'files','28439','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24971,'files','28440','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24972,'files','28441','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24973,'files','28442','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24974,'files','28443','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24975,'files','28444','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24976,'files','28445','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24977,'files','28446','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24978,'files','28447','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24979,'files','28448','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24980,'files','28449','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24981,'files','28450','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24982,'files','28451','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24983,'files','28452','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24984,'files','28453','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24985,'files','28454','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24986,'files','28455','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24987,'files','28456','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24988,'files','28457','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24989,'files','28458','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24990,'files','28459','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24991,'files','28460','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24992,'files','28461','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24993,'files','28462','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24994,'files','28463','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24995,'files','28464','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24996,'files','28465','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24997,'files','28466','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24998,'files','28467','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24999,'files','28468','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25000,'files','28469','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25001,'files','28470','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25002,'files','28471','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25003,'files','28472','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25004,'files','28473','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25005,'files','28474','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25006,'files','28475','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25007,'files','28476','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25008,'files','28477','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25009,'files','28478','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25010,'files','28479','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25011,'files','28480','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25012,'files','28481','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25013,'files','28482','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25014,'files','28483','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25015,'files','28484','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25016,'files','28485','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25017,'files','28486','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25018,'files','28487','error','Deal not found: 1210',NULL,'2025-11-14 00:17:03'),
(25019,'files','28488','error','Deal not found: 1210',NULL,'2025-11-14 00:17:03'),
(25020,'files','28489','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25021,'files','28490','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25022,'files','28491','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25023,'files','28492','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25024,'files','28493','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25025,'files','28494','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25026,'files','28495','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25027,'files','28496','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25028,'files','28497','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25029,'files','28498','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25030,'files','28499','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25031,'files','28500','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25032,'files','28501','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25033,'files','28502','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25034,'files','28503','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25035,'files','28504','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25036,'files','28505','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25037,'files','28506','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25038,'files','28507','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25039,'files','28508','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25040,'files','28509','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25041,'files','28510','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25042,'files','28511','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25043,'files','28512','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25044,'files','28513','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25045,'files','28514','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25046,'files','28515','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25047,'files','28516','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25048,'files','28517','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25049,'files','28518','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25050,'files','28519','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25051,'files','28520','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25052,'files','28521','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25053,'files','28522','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25054,'files','28523','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25055,'files','28524','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25056,'files','28525','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25057,'files','28526','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25058,'files','28527','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25059,'files','28529','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25060,'files','28530','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25061,'files','28531','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25062,'files','28532','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25063,'files','28533','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25064,'files','28534','error','Deal not found: 1724',NULL,'2025-11-14 00:17:03'),
(25065,'files','28535','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25066,'files','28536','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25067,'files','28537','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25068,'files','28538','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25069,'files','28539','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25070,'files','28540','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25071,'files','28541','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25072,'files','28542','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25073,'files','28543','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25074,'files','28544','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25075,'files','28545','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25076,'files','28546','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25077,'files','28547','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25078,'files','28548','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25079,'files','28549','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25080,'files','28550','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25081,'files','28551','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25082,'files','28552','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25083,'files','28553','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25084,'files','28554','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25085,'files','28555','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25086,'files','28556','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25087,'files','28557','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25088,'files','28558','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25089,'files','28559','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25090,'files','28560','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25091,'files','28561','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25092,'files','28562','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25093,'files','28563','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25094,'files','28564','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25095,'files','28565','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25096,'files','28566','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25097,'files','28567','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25098,'files','28568','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25099,'files','28569','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25100,'files','28570','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25101,'files','28571','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25102,'files','28572','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25103,'files','28573','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25104,'files','28574','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25105,'files','28575','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25106,'files','28576','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25107,'files','28577','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25108,'files','28578','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25109,'files','28579','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25110,'files','28580','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25111,'files','28581','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25112,'files','28582','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25113,'files','28583','error','Deal not found: 1198',NULL,'2025-11-14 00:17:03'),
(25114,'files','28584','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25115,'files','28585','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25116,'files','28586','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25117,'files','28587','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25118,'files','28588','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25119,'files','28589','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25120,'files','28590','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25121,'files','28591','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25122,'files','28592','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25123,'files','28593','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25124,'files','28594','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25125,'files','28595','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25126,'files','28596','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25127,'files','28597','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25128,'files','28598','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25129,'files','28599','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25130,'files','28600','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25131,'files','28601','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25132,'files','28602','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25133,'files','28603','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25134,'files','28604','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25135,'files','28605','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25136,'files','28606','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25137,'files','28607','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25138,'files','28608','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25139,'files','28609','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25140,'files','28610','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25141,'files','28611','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25142,'files','28612','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25143,'files','28613','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25144,'files','28614','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25145,'files','28615','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25146,'files','28616','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25147,'files','28617','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25148,'files','28618','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25149,'files','28619','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25150,'files','28620','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25151,'files','28621','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25152,'files','28622','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25153,'files','28623','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25154,'files','28624','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25155,'files','28625','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25156,'files','28626','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25157,'files','28627','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25158,'files','28628','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25159,'files','28629','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25160,'files','28630','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25161,'files','28631','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25162,'files','28632','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25163,'files','28633','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25164,'files','28634','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25165,'files','28635','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25166,'files','28636','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25167,'files','28637','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25168,'files','28638','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25169,'files','28639','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25170,'files','28640','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25171,'files','28641','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25172,'files','28642','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25173,'files','28643','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25174,'files','28644','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25175,'files','28645','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25176,'files','28646','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25177,'files','28647','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25178,'files','28648','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25179,'files','28649','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25180,'files','28650','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25181,'files','28651','error','Deal not found: 1198',NULL,'2025-11-14 00:17:03'),
(25182,'files','28652','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25183,'files','28653','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25184,'files','28654','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25185,'files','28655','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25186,'files','28656','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25187,'files','28657','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25188,'files','28658','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25189,'files','28659','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25190,'files','28660','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25191,'files','28661','error','Deal not found: 1198',NULL,'2025-11-14 00:17:03'),
(25192,'files','28662','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25193,'files','28663','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25194,'files','28664','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25195,'files','28665','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25196,'files','28666','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25197,'files','28667','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25198,'files','28668','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25199,'files','28669','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25200,'files','28670','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25201,'files','28671','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25202,'files','28672','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25203,'files','28673','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25204,'files','28674','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25205,'files','28675','error','Deal not found: 1293',NULL,'2025-11-14 00:17:03'),
(25206,'files','28676','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25207,'files','28677','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25208,'files','28678','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25209,'files','28679','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25210,'files','28680','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25211,'files','28681','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25212,'files','28682','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25213,'files','28683','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25214,'files','28684','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25215,'files','28685','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25216,'files','28686','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25217,'files','28687','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25218,'files','28688','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25219,'files','28689','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25220,'files','28690','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25221,'files','28691','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25222,'files','28692','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25223,'files','28693','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25224,'files','28694','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25225,'files','28695','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25226,'files','28696','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25227,'files','28697','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25228,'files','28698','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25229,'files','28699','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25230,'files','28700','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25231,'files','28701','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25232,'files','28702','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25233,'files','28703','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25234,'files','28704','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25235,'files','28705','error','Deal not found: 1198',NULL,'2025-11-14 00:17:03'),
(25236,'files','28706','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25237,'files','28707','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25238,'files','28708','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25239,'files','28709','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25240,'files','28710','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25241,'files','28711','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25242,'files','28712','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25243,'files','28713','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25244,'files','28714','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25245,'files','28715','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25246,'files','28716','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25247,'files','28717','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25248,'files','28718','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25249,'files','28719','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25250,'files','28720','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25251,'files','28721','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25252,'files','28722','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25253,'files','28723','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25254,'files','28724','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25255,'files','28725','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25256,'files','28726','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25257,'files','28727','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25258,'files','28728','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25259,'files','28729','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25260,'files','28730','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25261,'files','28731','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25262,'files','28732','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25263,'files','28733','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25264,'files','28734','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25265,'files','28735','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25266,'files','28736','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25267,'files','28737','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25268,'files','28738','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25269,'files','28739','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25270,'files','28740','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25271,'files','28741','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25272,'files','28742','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25273,'files','28743','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25274,'files','28744','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25275,'files','28745','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25276,'files','28746','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25277,'files','28747','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25278,'files','28748','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25279,'files','28749','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25280,'files','28750','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25281,'files','28751','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25282,'files','28752','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25283,'files','28753','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25284,'files','28754','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25285,'files','28755','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25286,'files','28756','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25287,'files','28757','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25288,'files','28758','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25289,'files','28759','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25290,'files','28760','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25291,'files','28761','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25292,'files','28762','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25293,'files','28763','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25294,'files','28764','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25295,'files','28765','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25296,'files','28766','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25297,'files','28767','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25298,'files','28768','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25299,'files','28769','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25300,'files','28770','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25301,'files','28771','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25302,'files','28772','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25303,'files','28773','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25304,'files','28774','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25305,'files','28775','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25306,'files','28776','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25307,'files','28777','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25308,'files','28778','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25309,'files','28779','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25310,'files','28780','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25311,'files','28781','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25312,'files','28782','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25313,'files','28783','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25314,'files','28784','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25315,'files','28785','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25316,'files','28786','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25317,'files','28787','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25318,'files','28788','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25319,'files','28789','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25320,'files','28790','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25321,'files','28791','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25322,'files','28792','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25323,'files','28793','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25324,'files','28794','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25325,'files','28795','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25326,'files','28796','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25327,'files','28797','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25328,'files','28798','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25329,'files','28799','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25330,'files','28800','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25331,'files','28801','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25332,'files','28802','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25333,'files','28803','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25334,'files','28804','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25335,'files','28806','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25336,'files','28807','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25337,'files','28808','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25338,'files','28809','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25339,'files','28810','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25340,'files','28811','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25341,'files','28812','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25342,'files','28813','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25343,'files','28814','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25344,'files','28815','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25345,'files','28816','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25346,'files','28817','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25347,'files','28818','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25348,'files','28819','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25349,'files','28820','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25350,'files','28821','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25351,'files','28822','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25352,'files','28823','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25353,'files','28824','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25354,'files','28825','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25355,'files','28826','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25356,'files','28827','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25357,'files','28828','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25358,'files','28829','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25359,'files','28830','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25360,'files','28831','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25361,'files','28832','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25362,'files','28833','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25363,'files','28834','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25364,'files','28835','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25365,'files','28836','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25366,'files','28837','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25367,'files','28838','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25368,'files','28839','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25369,'files','28840','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25370,'files','28841','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25371,'files','28842','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25372,'files','28843','error','Deal not found: 1293',NULL,'2025-11-14 00:17:03'),
(25373,'files','28844','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25374,'files','28845','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25375,'files','28846','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25376,'files','28847','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25377,'files','28848','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25378,'files','28849','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25379,'files','28850','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25380,'files','28851','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25381,'files','28852','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25382,'files','28853','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25383,'files','28854','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25384,'files','28855','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25385,'files','28856','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25386,'files','28857','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25387,'files','28858','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25388,'files','28859','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25389,'files','28860','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25390,'files','28861','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25391,'files','28862','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25392,'files','28863','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25393,'files','28864','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25394,'files','28865','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25395,'files','28866','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25396,'files','28867','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25397,'files','28868','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25398,'files','28869','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25399,'files','28870','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25400,'files','28871','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25401,'files','28872','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25402,'files','28873','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25403,'files','28874','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25404,'files','28875','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25405,'files','28876','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25406,'files','28877','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25407,'files','28878','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25408,'files','28879','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25409,'files','28880','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25410,'files','28881','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25411,'files','28882','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25412,'files','28883','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25413,'files','28884','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25414,'files','28885','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25415,'files','28886','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25416,'files','28887','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25417,'files','28888','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25418,'files','28889','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25419,'files','28890','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25420,'files','28891','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25421,'files','28892','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25422,'files','28893','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25423,'files','28894','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25424,'files','28895','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25425,'files','28896','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25426,'files','28897','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25427,'files','28898','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25428,'files','28899','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25429,'files','28900','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25430,'files','28901','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25431,'files','28902','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25432,'files','28903','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25433,'files','28904','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25434,'files','28905','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25435,'files','28906','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25436,'files','28907','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25437,'files','28908','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25438,'files','28909','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25439,'files','28910','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25440,'files','28911','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25441,'files','28912','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25442,'files','28913','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25443,'files','28914','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25444,'files','28915','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25445,'files','28916','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25446,'files','28917','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25447,'files','28918','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25448,'files','28919','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25449,'files','28920','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25450,'files','28921','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25451,'files','28922','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25452,'files','28923','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25453,'files','28924','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25454,'files','28925','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25455,'files','28926','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25456,'files','28927','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25457,'files','28928','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25458,'files','28929','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25459,'files','28930','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25460,'files','28931','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25461,'files','28932','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25462,'files','28933','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25463,'files','28934','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25464,'files','28935','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25465,'files','28936','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25466,'files','28937','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25467,'files','28938','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25468,'files','28939','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25469,'files','28940','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25470,'files','28941','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25471,'files','28942','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25472,'files','28943','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25473,'files','28944','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25474,'files','28945','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25475,'files','28946','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25476,'files','28947','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25477,'files','28948','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25478,'files','28949','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25479,'files','28950','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25480,'files','28951','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25481,'files','28952','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25482,'files','28953','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25483,'files','28954','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25484,'files','28955','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25485,'files','28956','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25486,'files','28957','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25487,'files','28958','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25488,'files','28959','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25489,'files','28960','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25490,'files','28961','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25491,'files','28962','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25492,'files','28963','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25493,'files','28964','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25494,'files','28965','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25495,'files','28966','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25496,'files','28967','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25497,'files','28968','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25498,'files','28969','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25499,'files','28970','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25500,'files','28971','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25501,'files','28972','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25502,'files','28973','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25503,'files','28974','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25504,'files','28975','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25505,'files','28976','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25506,'files','28977','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25507,'files','28978','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25508,'files','28979','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25509,'files','28980','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25510,'files','28981','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25511,'files','28982','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25512,'files','28983','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25513,'files','28984','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25514,'files','28985','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25515,'files','28986','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25516,'files','28987','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25517,'files','28988','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25518,'files','28989','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25519,'files','28990','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25520,'files','28991','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25521,'files','28992','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25522,'files','28993','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25523,'files','28994','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25524,'files','28995','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25525,'files','28996','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25526,'files','28997','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25527,'files','28998','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25528,'files','28999','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25529,'files','29000','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25530,'files','29001','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25531,'files','29002','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25532,'files','29003','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25533,'files','29004','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25534,'files','29005','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25535,'files','29006','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25536,'files','29007','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25537,'files','29008','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25538,'files','29009','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25539,'files','29010','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25540,'files','29011','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25541,'files','29012','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25542,'files','29013','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25543,'files','29014','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25544,'files','29015','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25545,'files','29016','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25546,'files','29017','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25547,'files','29018','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25548,'files','29019','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25549,'files','29020','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25550,'files','29021','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25551,'files','29022','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25552,'files','29023','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25553,'files','29024','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25554,'files','29025','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25555,'files','29026','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25556,'files','29027','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25557,'files','29028','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25558,'files','29029','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25559,'files','29030','error','Deal not found: 1427',NULL,'2025-11-14 00:17:03'),
(25560,'files','29031','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25561,'files','29032','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25562,'files','29033','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25563,'files','29034','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25564,'files','29035','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25565,'files','29036','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25566,'files','29037','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25567,'files','29038','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25568,'files','29039','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25569,'files','29040','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25570,'files','29041','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25571,'files','29042','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25572,'files','29043','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25573,'files','29044','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25574,'files','29045','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25575,'files','29046','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25576,'files','29047','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25577,'files','29048','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25578,'files','29049','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25579,'files','29050','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25580,'files','29051','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25581,'files','29052','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25582,'files','29053','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25583,'files','29054','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25584,'files','29055','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25585,'files','29056','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25586,'files','29057','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25587,'files','29058','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25588,'files','29059','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25589,'files','29060','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25590,'files','29061','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25591,'files','29062','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25592,'files','29063','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25593,'files','29064','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25594,'files','29065','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25595,'files','29066','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25596,'files','29067','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25597,'files','29068','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25598,'files','29069','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25599,'files','29070','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25600,'files','29071','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25601,'files','29072','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25602,'files','29073','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25603,'files','29074','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25604,'files','29075','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25605,'files','29076','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25606,'files','29077','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25607,'files','29078','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25608,'files','29079','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25609,'files','29080','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25610,'files','29081','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25611,'files','29082','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25612,'files','29083','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25613,'files','29084','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25614,'files','29085','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25615,'files','29086','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25616,'files','29087','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25617,'files','29088','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25618,'files','29089','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25619,'files','29090','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25620,'files','29091','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25621,'files','29092','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25622,'files','29093','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25623,'files','29094','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25624,'files','29095','error','Deal not found: 1339',NULL,'2025-11-14 00:17:03'),
(25625,'files','29096','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25626,'files','29097','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25627,'files','29098','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25628,'files','29099','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25629,'files','29100','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25630,'files','29101','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25631,'files','29102','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25632,'files','29103','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25633,'files','29104','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25634,'files','29105','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25635,'files','29106','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25636,'files','29107','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25637,'files','29108','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25638,'files','29109','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25639,'files','29110','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25640,'files','29111','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25641,'files','29112','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25642,'files','29113','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25643,'files','29114','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25644,'files','29115','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25645,'files','29116','error','Deal not found: 1427',NULL,'2025-11-14 00:17:03'),
(25646,'files','29117','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25647,'files','29118','error','Deal not found: 1427',NULL,'2025-11-14 00:17:03'),
(25648,'files','29119','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25649,'files','29120','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25650,'files','29121','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25651,'files','29122','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25652,'files','29123','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25653,'files','29124','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25654,'files','29125','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25655,'files','29126','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25656,'files','29127','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25657,'files','29128','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25658,'files','29129','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25659,'files','29130','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25660,'files','29131','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25661,'files','29132','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25662,'files','29133','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25663,'files','29134','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25664,'files','29135','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25665,'files','29136','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25666,'files','29137','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25667,'files','29138','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25668,'files','29139','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25669,'files','29140','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25670,'files','29141','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25671,'files','29142','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25672,'files','29143','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25673,'files','29144','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25674,'files','29145','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25675,'files','29146','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25676,'files','29147','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25677,'files','29148','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25678,'files','29149','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25679,'files','29150','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25680,'files','29151','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25681,'files','29152','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25682,'files','29153','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25683,'files','29154','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25684,'files','29155','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25685,'files','29156','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25686,'files','29157','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25687,'files','29158','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25688,'files','29159','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25689,'files','29160','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25690,'files','29161','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25691,'files','29162','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25692,'files','29163','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25693,'files','29164','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25694,'files','29165','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25695,'files','29166','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25696,'files','29167','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25697,'files','29168','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25698,'files','29169','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25699,'files','29170','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25700,'files','29171','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25701,'files','29172','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25702,'files','29173','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25703,'files','29174','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25704,'files','29175','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25705,'files','29176','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25706,'files','29177','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25707,'files','29178','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25708,'files','29179','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25709,'files','29180','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25710,'files','29181','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25711,'files','29182','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25712,'files','29183','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25713,'files','29184','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25714,'files','29185','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25715,'files','29186','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25716,'files','29187','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25717,'files','29188','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25718,'files','29189','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25719,'files','29190','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25720,'files','29191','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25721,'files','29192','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25722,'files','29193','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25723,'files','29194','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25724,'files','29195','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25725,'files','29196','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25726,'files','29197','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25727,'files','29198','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25728,'files','29199','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25729,'files','29200','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25730,'files','29201','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25731,'files','29202','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25732,'files','29203','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25733,'files','29204','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25734,'files','29205','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25735,'files','29206','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25736,'files','29207','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25737,'files','29208','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25738,'files','29209','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25739,'files','29210','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25740,'files','29211','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25741,'files','29212','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25742,'files','29213','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25743,'files','29214','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25744,'files','29215','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25745,'files','29216','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25746,'files','29217','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25747,'files','29218','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25748,'files','29219','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25749,'files','29220','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25750,'files','29221','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25751,'files','29222','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25752,'files','29223','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25753,'files','29224','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25754,'files','29225','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25755,'files','29226','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25756,'files','29227','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25757,'files','29228','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25758,'files','29229','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25759,'files','29230','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25760,'files','29231','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25761,'files','29232','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25762,'files','29233','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25763,'files','29234','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25764,'files','29235','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25765,'files','29236','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25766,'files','29237','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25767,'files','29238','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25768,'files','29239','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25769,'files','29240','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25770,'files','29241','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25771,'files','29242','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25772,'files','29243','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25773,'files','29244','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25774,'files','29245','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25775,'files','29246','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25776,'files','29247','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25777,'files','29248','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25778,'files','29249','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25779,'files','29250','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25780,'files','29251','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25781,'files','29252','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25782,'files','29253','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25783,'files','29254','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25784,'files','29255','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25785,'files','29256','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25786,'files','29257','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25787,'files','29258','error','Deal not found: 1293',NULL,'2025-11-14 00:17:03'),
(25788,'files','29259','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25789,'files','29260','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25790,'files','29261','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25791,'files','29262','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25792,'files','29263','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25793,'files','29264','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25794,'files','29265','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25795,'files','29266','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25796,'files','29267','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25797,'files','29268','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25798,'files','29269','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25799,'files','29270','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25800,'files','29271','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25801,'files','29272','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25802,'files','29273','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25803,'files','29274','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25804,'files','29275','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25805,'files','29276','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25806,'files','29277','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25807,'files','29278','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25808,'files','29279','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25809,'files','29280','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25810,'files','29281','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25811,'files','29282','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25812,'files','29283','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25813,'files','29284','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25814,'files','29285','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25815,'files','29286','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25816,'files','29287','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25817,'files','29288','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25818,'files','29289','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25819,'files','29290','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25820,'files','29291','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25821,'files','29292','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25822,'files','29293','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25823,'files','29294','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25824,'files','29295','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25825,'files','29296','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25826,'files','29297','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25827,'files','29298','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25828,'files','29299','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25829,'files','29300','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25830,'files','29301','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25831,'files','29302','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25832,'files','29303','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25833,'files','29304','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25834,'files','29305','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25835,'files','29306','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25836,'files','29307','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25837,'files','29308','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25838,'files','29309','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25839,'files','29310','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25840,'files','29311','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25841,'files','29312','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25842,'files','29313','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25843,'files','29314','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25844,'files','29315','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25845,'files','29316','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25846,'files','29317','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25847,'files','29318','error','Deal not found: 1198',NULL,'2025-11-14 00:17:03'),
(25848,'files','29319','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25849,'files','29320','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25850,'files','29321','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25851,'files','29322','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25852,'files','29323','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25853,'files','29324','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25854,'files','29325','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25855,'files','29326','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25856,'files','29327','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25857,'files','29328','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25858,'files','29329','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25859,'files','29330','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25860,'files','29331','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25861,'files','29332','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25862,'files','29333','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25863,'files','29334','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25864,'files','29335','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25865,'files','29336','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25866,'files','29337','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25867,'files','29338','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25868,'files','29339','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25869,'files','29340','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25870,'files','29341','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25871,'files','29342','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25872,'files','29343','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25873,'files','29344','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25874,'files','29345','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25875,'files','29346','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25876,'files','29347','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25877,'files','29348','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25878,'files','29349','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25879,'files','29350','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25880,'files','29351','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25881,'files','29352','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25882,'files','29353','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25883,'files','29354','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25884,'files','29355','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25885,'files','29356','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25886,'files','29357','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25887,'files','29358','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25888,'files','29359','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25889,'files','29360','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25890,'files','29361','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25891,'files','29362','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25892,'files','29363','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25893,'files','29364','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25894,'files','29365','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25895,'files','29366','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25896,'files','29367','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25897,'files','29368','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25898,'files','29369','error','Deal not found: 1427',NULL,'2025-11-14 00:17:03'),
(25899,'files','29370','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25900,'files','29371','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25901,'files','29372','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25902,'files','29373','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25903,'files','29374','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25904,'files','29375','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25905,'files','29376','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25906,'files','29377','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25907,'files','29378','error','Deal not found: 1267',NULL,'2025-11-14 00:17:03'),
(25908,'files','29379','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25909,'files','29380','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25910,'files','29381','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25911,'files','29382','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25912,'files','29383','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25913,'files','29384','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25914,'files','29385','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25915,'files','29386','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25916,'files','29387','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25917,'files','29388','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25918,'files','29389','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25919,'files','29390','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25920,'files','29391','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25921,'files','29392','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25922,'files','29393','error','Deal not found: 1427',NULL,'2025-11-14 00:17:03'),
(25923,'files','29394','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25924,'files','29395','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25925,'files','29396','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25926,'files','29397','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25927,'files','29398','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25928,'files','29399','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25929,'files','29400','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25930,'files','29401','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25931,'files','29402','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25932,'files','29403','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25933,'files','29404','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25934,'files','29405','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25935,'files','29406','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25936,'files','29407','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25937,'files','29408','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25938,'files','29409','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25939,'files','29410','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25940,'files','29411','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25941,'files','29412','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25942,'files','29413','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25943,'files','29414','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25944,'files','29415','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25945,'files','29416','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25946,'files','29417','error','Deal not found: 1198',NULL,'2025-11-14 00:17:03'),
(25947,'files','29418','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25948,'files','29419','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25949,'files','29420','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25950,'files','29421','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25951,'files','29422','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25952,'files','29423','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25953,'files','29424','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25954,'files','29425','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25955,'files','29426','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25956,'files','29427','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25957,'files','29428','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25958,'files','29429','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25959,'files','29430','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25960,'files','29431','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25961,'files','29432','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25962,'files','29433','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25963,'files','29434','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25964,'files','29435','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25965,'files','29436','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25966,'files','29437','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25967,'files','29438','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25968,'files','29439','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25969,'files','29440','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25970,'files','29441','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25971,'files','29442','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25972,'files','29443','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25973,'files','29444','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25974,'files','29445','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25975,'files','29446','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25976,'files','29447','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25977,'files','29448','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25978,'files','29449','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25979,'files','29450','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25980,'files','29451','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25981,'files','29452','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25982,'files','29453','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25983,'files','29454','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25984,'files','29455','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25985,'files','29456','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25986,'files','29457','error','Deal not found: 1492',NULL,'2025-11-14 00:17:03'),
(25987,'files','29458','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25988,'files','29459','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25989,'files','29460','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25990,'files','29461','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25991,'files','29462','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25992,'files','29463','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25993,'files','29464','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25994,'files','29465','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25995,'files','29466','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25996,'files','29467','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25997,'files','29468','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25998,'files','29469','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25999,'files','29470','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26000,'files','29471','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26001,'files','29472','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26002,'files','29473','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26003,'files','29474','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26004,'files','29475','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26005,'files','29476','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26006,'files','29477','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26007,'files','29478','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26008,'files','29479','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26009,'files','29480','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26010,'files','29481','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26011,'files','29482','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26012,'files','29483','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26013,'files','29484','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26014,'files','29485','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26015,'files','29486','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26016,'files','29487','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26017,'files','29488','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26018,'files','29489','error','Deal not found: 1427',NULL,'2025-11-14 00:17:03'),
(26019,'files','29490','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26020,'files','29491','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26021,'files','29492','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26022,'files','29493','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26023,'files','29494','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26024,'files','29495','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26025,'files','29496','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26026,'files','29497','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26027,'files','29498','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26028,'files','29499','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26029,'files','29500','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26030,'files','29501','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26031,'files','29502','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26032,'files','29503','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26033,'files','29504','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26034,'files','29505','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26035,'files','29506','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26036,'files','29507','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26037,'files','29508','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26038,'files','29509','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26039,'files','29510','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(26040,'files','29511','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26041,'files','29512','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26042,'files','29513','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26043,'files','29514','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26044,'files','29515','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26045,'files','29516','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(26046,'files','29517','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26047,'files','29518','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26048,'files','29519','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(26049,'files','29520','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26050,'files','29521','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(26051,'files','29522','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26052,'files','29523','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(26053,'files','29524','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26054,'files','29525','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(26055,'files','29526','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26056,'files','29527','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26057,'files','29528','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26058,'files','29529','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26059,'files','29530','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26060,'files','29531','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26061,'files','29532','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26062,'files','29533','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26063,'files','29534','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26064,'files','29535','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26065,'files','29536','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26066,'files','29537','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(26067,'files','29538','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26068,'files','29539','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(26069,'files','29540','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26070,'files','29541','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26071,'files','29542','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26072,'files','29543','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26073,'files','29544','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26074,'files','29545','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26075,'files','29546','error','Deal not found: 1497',NULL,'2025-11-14 00:17:03'),
(26076,'files','29547','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26077,'files','29548','error','Deal not found: 1497',NULL,'2025-11-14 00:17:03'),
(26078,'files','29549','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26079,'files','29550','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26080,'files','29551','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26081,'files','29552','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26082,'files','29553','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26083,'files','29554','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26084,'files','29555','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26085,'files','29556','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26086,'files','29557','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26087,'files','29558','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26088,'files','29559','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26089,'files','29560','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26090,'files','29561','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26091,'files','29562','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26092,'files','29563','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26093,'files','29564','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26094,'files','29565','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26095,'files','29566','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26096,'files','29567','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26097,'files','29568','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26098,'files','29569','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26099,'files','29570','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26100,'files','29571','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26101,'files','29572','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26102,'files','29573','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26103,'files','29574','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26104,'files','29575','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26105,'files','29576','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26106,'files','29577','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26107,'files','29578','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26108,'files','29579','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26109,'files','29580','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26110,'files','29581','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26111,'files','29582','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26112,'files','29583','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26113,'files','29584','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26114,'files','29585','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26115,'files','29586','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26116,'files','29587','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26117,'files','29588','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26118,'files','29589','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26119,'files','29590','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26120,'files','29591','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26121,'files','29592','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26122,'files','29593','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26123,'files','29594','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26124,'files','29595','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26125,'files','29596','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26126,'files','29597','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26127,'files','29598','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26128,'files','29599','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26129,'files','29600','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26130,'files','29601','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26131,'files','29602','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26132,'files','29603','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26133,'files','29604','error','Deal not found: 1429',NULL,'2025-11-14 00:17:03'),
(26134,'files','29605','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26135,'files','29606','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26136,'files','29607','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26137,'files','29608','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26138,'files','29609','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26139,'files','29610','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26140,'files','29611','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26141,'files','29612','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26142,'files','29613','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26143,'files','29614','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26144,'files','29615','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26145,'files','29616','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26146,'files','29617','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26147,'files','29618','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26148,'files','29619','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26149,'files','29620','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26150,'files','29621','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26151,'files','29622','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26152,'files','29623','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26153,'files','29624','error','Deal not found: 1293',NULL,'2025-11-14 00:17:03'),
(26154,'files','29625','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26155,'files','29626','error','Deal not found: 1724',NULL,'2025-11-14 00:17:03'),
(26156,'files','29627','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26157,'files','29628','error','Deal not found: 1724',NULL,'2025-11-14 00:17:03'),
(26158,'files','29629','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26159,'files','29630','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26160,'files','29631','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26161,'files','29632','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26162,'files','29633','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26163,'files','29634','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26164,'files','29635','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26165,'files','29636','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26166,'files','29637','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26167,'files','29638','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26168,'files','29639','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26169,'files','29640','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26170,'files','29641','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26171,'files','29642','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26172,'files','29643','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26173,'files','29644','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26174,'files','29645','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26175,'files','29646','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26176,'files','29647','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26177,'files','29648','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26178,'files','29649','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26179,'files','29650','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26180,'files','29651','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26181,'files','29652','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26182,'files','29653','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26183,'files','29654','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26184,'files','29655','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26185,'files','29656','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26186,'files','29657','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26187,'files','29658','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26188,'files','29659','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26189,'files','29660','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26190,'files','29661','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26191,'files','29662','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26192,'files','29663','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26193,'files','29664','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26194,'files','29665','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26195,'files','29666','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26196,'files','29667','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26197,'files','29668','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26198,'files','29669','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26199,'files','29670','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26200,'files','29671','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26201,'files','29672','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26202,'files','29673','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26203,'files','29674','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26204,'files','29675','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26205,'files','29676','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26206,'files','29677','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26207,'files','29678','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26208,'files','29679','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26209,'files','29680','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26210,'files','29681','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26211,'files','29682','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26212,'files','29683','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26213,'files','29684','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26214,'files','29685','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26215,'files','29686','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26216,'files','29687','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26217,'files','29688','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26218,'files','29689','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26219,'files','29690','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26220,'files','29691','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26221,'files','29692','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26222,'files','29693','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26223,'files','29694','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26224,'files','29695','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26225,'files','29696','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26226,'files','29697','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26227,'files','29698','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26228,'files','29699','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26229,'files','29700','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26230,'files','29701','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26231,'files','29702','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26232,'files','29703','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26233,'files','29704','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26234,'files','29705','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26235,'files','29706','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26236,'files','29707','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26237,'files','29708','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26238,'files','29709','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26239,'files','29710','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26240,'files','29711','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26241,'files','29712','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26242,'files','29713','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26243,'files','29714','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26244,'files','29715','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26245,'files','29716','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26246,'files','29717','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26247,'files','29718','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26248,'files','29719','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26249,'files','29720','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26250,'files','29721','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26251,'files','29722','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26252,'files','29723','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26253,'files','29724','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26254,'files','29725','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26255,'files','29726','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26256,'files','29727','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26257,'files','29728','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26258,'files','29729','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26259,'files','29730','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26260,'files','29731','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26261,'files','29732','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26262,'files','29733','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26263,'files','29734','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26264,'files','29735','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26265,'files','29736','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26266,'files','29737','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26267,'files','29738','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26268,'files','29739','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26269,'files','29740','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26270,'files','29741','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26271,'files','29742','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26272,'files','29743','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26273,'files','29744','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26274,'files','29745','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26275,'files','29746','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26276,'files','29747','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26277,'files','29748','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26278,'files','29749','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26279,'files','29750','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26280,'files','29751','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26281,'files','29752','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26282,'files','29753','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26283,'files','29754','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26284,'files','29755','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26285,'files','29756','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26286,'files','29757','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26287,'files','29758','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26288,'files','29759','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26289,'files','29760','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26290,'files','29761','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26291,'files','29762','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26292,'files','29763','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26293,'files','29764','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26294,'files','29765','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26295,'files','29766','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26296,'files','29767','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26297,'files','29768','error','Deal not found: 1435',NULL,'2025-11-14 00:17:03'),
(26298,'files','29769','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26299,'files','29770','error','Deal not found: 1435',NULL,'2025-11-14 00:17:03'),
(26300,'files','29771','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26301,'files','29772','error','Deal not found: 1435',NULL,'2025-11-14 00:17:03'),
(26302,'files','29773','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26303,'files','29774','error','Deal not found: 1435',NULL,'2025-11-14 00:17:03'),
(26304,'files','29775','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26305,'files','29776','error','Deal not found: 1435',NULL,'2025-11-14 00:17:03'),
(26306,'files','29777','error','Deal not found: 1435',NULL,'2025-11-14 00:17:03'),
(26307,'files','29778','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26308,'files','29779','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26309,'files','29780','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26310,'files','29781','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26311,'files','29782','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26312,'files','29783','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26313,'files','29784','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26314,'files','29785','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26315,'files','29786','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26316,'files','29787','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26317,'files','29788','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26318,'files','29789','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26319,'files','29790','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26320,'files','29791','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26321,'files','29792','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26322,'files','29793','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26323,'files','29794','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26324,'files','29795','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26325,'files','29796','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26326,'files','29797','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26327,'files','29798','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26328,'files','29799','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26329,'files','29800','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26330,'files','29801','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26331,'files','29802','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26332,'files','29803','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26333,'files','29804','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26334,'files','29805','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26335,'files','29806','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26336,'files','29807','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26337,'files','29808','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26338,'files','29809','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26339,'files','29810','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26340,'files','29811','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26341,'files','29812','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26342,'files','29813','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26343,'files','29814','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26344,'files','29815','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26345,'files','29816','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26346,'files','29817','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26347,'files','29818','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26348,'files','29819','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26349,'files','29820','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26350,'files','29821','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26351,'files','29822','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26352,'files','29823','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26353,'files','29824','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26354,'files','29825','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26355,'files','29826','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26356,'files','29827','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26357,'files','29828','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26358,'files','29829','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26359,'files','29830','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26360,'files','29831','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26361,'files','29832','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26362,'files','29833','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26363,'files','29834','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26364,'files','29835','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26365,'files','29836','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26366,'files','29837','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26367,'files','29838','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26368,'files','29839','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26369,'files','29840','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26370,'files','29841','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26371,'files','29842','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26372,'files','29843','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26373,'files','29844','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26374,'files','29845','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26375,'files','29846','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26376,'files','29847','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26377,'files','29848','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26378,'files','29849','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26379,'files','29850','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26380,'files','29851','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26381,'files','29852','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26382,'files','29853','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26383,'files','29854','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26384,'files','29855','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26385,'files','29856','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26386,'files','29857','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26387,'files','29858','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26388,'files','29859','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26389,'files','29860','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26390,'files','29861','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26391,'files','29862','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26392,'files','29863','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26393,'files','29864','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26394,'files','29865','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26395,'files','29866','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26396,'files','29867','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26397,'files','29868','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26398,'files','29869','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26399,'files','29870','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26400,'files','29871','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26401,'files','29872','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26402,'files','29873','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26403,'files','29874','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26404,'files','29875','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26405,'files','29876','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26406,'files','29877','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26407,'files','29878','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26408,'files','29879','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26409,'files','29880','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26410,'files','29881','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26411,'files','29882','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26412,'files','29883','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26413,'files','29884','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26414,'files','29885','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26415,'files','29886','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26416,'files','29887','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26417,'files','29888','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26418,'files','29889','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26419,'files','29890','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26420,'files','29891','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(26421,'files','29892','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26422,'files','29893','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26423,'files','29894','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26424,'files','29895','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26425,'files','29896','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26426,'files','29897','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26427,'files','29898','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26428,'files','29899','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26429,'files','29900','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26430,'files','29901','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26431,'files','29902','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26432,'files','29903','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26433,'files','29904','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26434,'files','29905','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26435,'files','29906','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26436,'files','29907','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26437,'files','29908','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26438,'files','29909','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26439,'files','29910','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26440,'files','29911','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26441,'files','29912','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26442,'files','29913','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26443,'files','29914','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26444,'files','29915','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26445,'files','29916','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26446,'files','29917','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26447,'files','29918','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26448,'files','29919','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26449,'files','29920','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26450,'files','29921','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26451,'files','29922','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26452,'files','29923','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26453,'files','29924','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26454,'files','29925','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26455,'files','29926','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26456,'files','29927','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26457,'files','29928','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26458,'files','29929','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26459,'files','29930','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26460,'files','29931','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26461,'files','29932','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26462,'files','29933','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26463,'files','29934','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26464,'files','29935','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26465,'files','29936','error','Deal not found: 1293',NULL,'2025-11-14 00:17:03'),
(26466,'files','29937','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26467,'files','29938','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26468,'files','29939','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26469,'files','29940','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26470,'files','29941','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26471,'files','29942','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26472,'files','29943','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26473,'files','29944','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26474,'files','29945','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26475,'files','29946','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26476,'files','29947','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26477,'files','29948','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26478,'files','29949','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26479,'files','29950','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26480,'files','29951','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26481,'files','29952','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26482,'files','29953','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26483,'files','29954','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26484,'files','29955','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26485,'files','29956','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26486,'files','29957','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26487,'files','29958','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26488,'files','29959','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26489,'files','29960','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26490,'files','29961','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26491,'files','29962','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26492,'files','29963','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26493,'files','29964','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26494,'files','29965','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26495,'files','29966','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26496,'files','29967','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26497,'files','29968','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26498,'files','29969','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26499,'files','29970','error','Deal not found: 1014',NULL,'2025-11-14 00:17:03'),
(26500,'files','29971','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26501,'files','29972','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26502,'files','29973','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26503,'files','29974','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26504,'files','29975','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26505,'files','29976','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26506,'files','29977','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26507,'files','29978','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26508,'files','29979','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26509,'files','29980','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26510,'files','29981','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26511,'files','29982','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26512,'files','29983','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26513,'files','29984','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26514,'files','29985','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26515,'files','29986','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26516,'files','29987','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26517,'files','29988','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26518,'files','29989','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26519,'files','29990','error','Deal not found: 566',NULL,'2025-11-14 00:17:03'),
(26520,'files','29991','error','Deal not found: 566',NULL,'2025-11-14 00:17:03'),
(26521,'files','29992','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26522,'files','29993','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26523,'files','29994','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26524,'files','29995','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26525,'files','29996','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26526,'files','29997','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26527,'files','29998','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26528,'files','29999','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26529,'files','30000','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26530,'files','30001','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26531,'files','30002','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26532,'files','30003','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26533,'files','30004','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26534,'files','30005','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26535,'files','30006','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26536,'files','30007','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26537,'files','30008','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26538,'files','30009','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26539,'files','30010','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26540,'files','30011','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26541,'files','30012','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26542,'files','30013','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26543,'files','30014','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26544,'files','30015','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26545,'files','30016','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26546,'files','30017','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26547,'files','30018','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26548,'files','30019','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26549,'files','30020','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26550,'files','30021','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26551,'files','30022','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26552,'files','30023','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26553,'files','30024','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26554,'files','30025','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26555,'files','30026','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26556,'files','30027','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26557,'files','30028','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26558,'files','30029','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26559,'files','30030','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26560,'files','30031','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26561,'files','30032','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26562,'files','30033','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26563,'files','30034','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26564,'files','30035','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26565,'files','30036','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26566,'files','30037','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26567,'files','30038','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26568,'files','30039','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26569,'files','30040','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26570,'files','30041','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26571,'files','30042','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26572,'files','30043','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26573,'files','30044','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26574,'files','30045','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26575,'files','30046','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26576,'files','30047','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26577,'files','30048','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26578,'files','30049','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26579,'files','30050','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26580,'files','30051','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26581,'files','30052','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26582,'files','30053','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26583,'files','30054','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26584,'files','30055','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26585,'files','30056','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26586,'files','30057','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26587,'files','30058','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26588,'files','30059','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26589,'files','30060','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26590,'files','30061','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26591,'files','30062','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26592,'files','30063','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26593,'files','30064','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26594,'files','30065','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26595,'files','30066','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26596,'files','30067','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26597,'files','30068','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26598,'files','30069','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26599,'files','30070','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26600,'files','30071','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26601,'files','30072','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26602,'files','30073','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26603,'files','30074','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26604,'files','30075','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26605,'files','30076','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26606,'files','30077','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26607,'files','30078','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26608,'files','30079','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26609,'files','30080','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26610,'files','30081','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26611,'files','30082','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26612,'files','30083','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26613,'files','30086','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26614,'files','30089','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26615,'files','30091','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26616,'files','30094','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26617,'files','30095','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26618,'files','30097','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26619,'files','30100','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26620,'files','30102','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26621,'files','30103','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26622,'files','30104','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26623,'files','30105','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26624,'files','30106','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26625,'files','30107','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26626,'files','30108','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26627,'files','30109','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26628,'files','30110','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26629,'files','30111','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26630,'files','30112','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26631,'files','30113','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26632,'files','30114','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26633,'files','30115','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26634,'files','30116','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26635,'files','30117','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26636,'files','30118','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26637,'files','30119','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26638,'files','30120','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26639,'files','30121','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26640,'files','30122','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26641,'files','30123','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26642,'files','30124','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26643,'files','30125','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26644,'files','30126','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26645,'files','30127','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26646,'files','30128','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26647,'files','30129','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26648,'files','30130','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26649,'files','30131','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26650,'files','30132','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26651,'files','30133','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26652,'files','30134','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26653,'files','30135','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26654,'files','30136','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26655,'files','30137','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26656,'files','30138','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26657,'files','30139','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26658,'files','30140','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26659,'files','30141','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26660,'files','30142','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26661,'files','30143','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26662,'files','30144','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26663,'files','30145','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26664,'files','30146','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26665,'files','30147','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26666,'files','30148','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26667,'files','30149','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26668,'files','30150','error','Deal not found: 566',NULL,'2025-11-14 00:17:03'),
(26669,'files','30151','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26670,'files','30152','error','Deal not found: 566',NULL,'2025-11-14 00:17:03'),
(26671,'files','30153','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26672,'files','30154','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26673,'files','30155','error','Deal not found: 566',NULL,'2025-11-14 00:17:03'),
(26674,'files','30156','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26675,'files','30157','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26676,'files','30158','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26677,'files','30159','error','Deal not found: 566',NULL,'2025-11-14 00:17:03'),
(26678,'files','30160','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26679,'files','30161','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26680,'files','30162','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26681,'files','30163','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26682,'files','30164','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26683,'files','30165','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26684,'files','30166','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26685,'files','30167','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26686,'files','30168','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26687,'files','30169','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26688,'files','30170','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26689,'files','30171','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26690,'files','30172','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26691,'files','30173','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26692,'files','30174','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26693,'files','30175','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26694,'files','30176','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26695,'files','30177','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26696,'files','30178','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26697,'files','30179','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26698,'files','30180','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26699,'files','30181','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26700,'files','30182','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26701,'files','30183','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26702,'files','30184','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26703,'files','30185','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26704,'files','30186','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26705,'files','30187','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26706,'files','30188','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26707,'files','30189','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26708,'files','30190','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26709,'files','30191','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26710,'files','30192','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26711,'files','30193','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26712,'files','30194','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26713,'files','30195','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26714,'files','30196','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26715,'files','30197','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26716,'files','30198','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26717,'files','30199','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26718,'files','30200','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26719,'files','30201','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26720,'files','30202','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26721,'files','30203','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26722,'files','30204','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26723,'files','30205','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26724,'files','30206','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26725,'files','30207','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26726,'files','30208','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26727,'files','30209','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26728,'files','30210','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26729,'files','30211','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26730,'files','30212','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26731,'files','30213','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26732,'files','30214','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26733,'files','30215','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26734,'files','30216','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26735,'files','30217','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26736,'files','30218','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26737,'files','30219','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26738,'files','30220','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26739,'files','30221','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26740,'files','30222','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26741,'files','30223','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26742,'files','30224','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26743,'files','30225','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26744,'files','30226','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26745,'files','30227','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26746,'files','30228','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26747,'files','30229','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26748,'files','30230','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26749,'files','30231','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26750,'files','30232','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26751,'files','30233','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26752,'files','30234','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26753,'files','30235','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26754,'files','30236','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26755,'files','30237','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26756,'files','30238','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26757,'files','30239','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26758,'files','30240','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26759,'files','30241','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26760,'files','30242','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26761,'files','30243','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26762,'files','30244','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26763,'files','30245','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26764,'files','30246','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26765,'files','30247','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26766,'files','30248','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26767,'files','30249','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26768,'files','30250','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26769,'files','30251','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26770,'files','30252','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26771,'files','30253','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26772,'files','30254','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26773,'files','30255','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26774,'files','30256','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26775,'files','30257','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26776,'files','30258','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26777,'files','30259','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26778,'files','30260','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26779,'files','30261','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26780,'files','30262','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26781,'files','30263','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26782,'files','30264','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26783,'files','30265','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26784,'files','30266','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26785,'files','30267','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26786,'files','30268','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26787,'files','30269','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26788,'files','30270','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26789,'files','30271','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26790,'files','30272','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26791,'files','30273','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26792,'files','30274','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26793,'files','30275','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26794,'files','30276','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26795,'files','30277','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26796,'files','30279','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26797,'files','30280','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26798,'files','30281','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26799,'files','30282','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26800,'files','30283','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26801,'files','30284','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26802,'files','30285','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26803,'files','30286','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26804,'files','30287','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26805,'files','30288','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26806,'files','30289','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26807,'files','30290','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26808,'files','30291','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26809,'files','30292','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26810,'files','30293','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26811,'files','30294','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26812,'files','30295','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26813,'files','30296','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26814,'files','30297','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26815,'files','30298','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26816,'files','30299','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26817,'files','30300','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26818,'files','30301','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26819,'files','30302','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26820,'files','30303','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26821,'files','30304','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26822,'files','30305','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26823,'files','30306','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26824,'files','30307','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26825,'files','30308','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26826,'files','30309','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26827,'files','30310','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26828,'files','30311','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26829,'files','30312','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26830,'files','30313','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26831,'files','30314','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26832,'files','30315','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26833,'files','30316','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26834,'files','30317','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26835,'files','30318','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26836,'files','30319','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26837,'files','30320','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26838,'files','30321','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26839,'files','30322','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26840,'files','30323','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26841,'files','30324','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26842,'files','30325','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26843,'files','30326','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26844,'files','30327','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26845,'files','30328','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26846,'files','30329','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26847,'files','30330','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26848,'files','30331','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26849,'files','30332','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26850,'files','30333','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26851,'files','30334','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26852,'files','30335','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26853,'files','30336','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26854,'files','30337','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26855,'files','30338','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26856,'files','30339','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26857,'files','30340','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26858,'files','30341','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26859,'files','30342','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26860,'files','30343','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26861,'files','30344','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26862,'files','30345','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26863,'files','30346','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26864,'files','30347','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26865,'files','30348','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26866,'files','30349','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26867,'files','30350','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26868,'files','30351','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26869,'files','30352','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26870,'files','30353','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26871,'files','30354','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26872,'files','30355','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26873,'files','30356','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26874,'files','30357','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26875,'files','30358','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26876,'files','30359','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26877,'files','30360','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26878,'files','30361','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26879,'files','30362','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26880,'files','30363','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26881,'files','30364','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26882,'files','30365','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26883,'files','30366','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26884,'files','30367','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26885,'files','30368','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26886,'files','30369','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26887,'files','30370','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26888,'files','30371','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26889,'files','30372','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26890,'files','30373','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26891,'files','30374','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26892,'files','30375','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26893,'files','30376','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26894,'files','30787','error','Deal not found: 4',NULL,'2025-11-14 00:17:03'),
(26895,'files','30839','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26896,'files','30840','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26897,'files','33211','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26898,'files','35340','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26899,'files','35415','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26900,'files','37367','error','Deal not found: 58',NULL,'2025-11-14 00:17:03'),
(26901,'files','37368','error','Deal not found: 58',NULL,'2025-11-14 00:17:03'),
(26902,'files','38011','error','Deal not found: 1596',NULL,'2025-11-14 00:17:03'),
(26903,'files','38012','error','Deal not found: 1596',NULL,'2025-11-14 00:17:03'),
(26904,'files','38013','error','Deal not found: 1596',NULL,'2025-11-14 00:17:03'),
(26905,'files','38014','error','Deal not found: 1596',NULL,'2025-11-14 00:17:03'),
(26906,'files','38404','error','Deal not found: 1597',NULL,'2025-11-14 00:17:03'),
(26907,'files','38405','error','Deal not found: 1597',NULL,'2025-11-14 00:17:03'),
(26908,'files','38634','error','Deal not found: 1604',NULL,'2025-11-14 00:17:03'),
(26909,'files','39390','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26910,'files','39393','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26911,'files','40097','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26912,'files','40098','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26913,'files','40240','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26914,'files','40241','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26915,'files','41182','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26916,'files','41374','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26917,'files','41629','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26918,'files','41632','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26919,'files','42056','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26920,'files','42808','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26921,'files','43324','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26922,'files','43325','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26923,'files','43356','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26924,'files','43433','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26925,'files','43555','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26926,'files','43697','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26927,'files','43698','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26928,'files','43699','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26929,'files','43754','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26930,'files','43758','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26931,'files','43791','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26932,'files','43821','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26933,'files','43822','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26934,'files','43823','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26935,'files','43824','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26936,'files','43825','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26937,'files','43826','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26938,'files','43827','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26939,'files','43828','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26940,'files','43829','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26941,'files','43830','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26942,'files','43831','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26943,'files','43832','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26944,'files','43833','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26945,'files','43923','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26946,'files','43924','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26947,'files','43925','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26948,'files','43981','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26949,'files','44005','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26950,'files','44006','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26951,'files','44007','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26952,'files','44122','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26953,'files','44123','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26954,'files','44124','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26955,'files','44244','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26956,'files','44245','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26957,'files','44257','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26958,'files','44267','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26959,'files','44268','error','Deal not found: 1641',NULL,'2025-11-14 00:17:03'),
(26960,'files','44269','error','Deal not found: 1641',NULL,'2025-11-14 00:17:03'),
(26961,'files','44279','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26962,'files','44280','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26963,'files','44281','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26964,'files','44282','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26965,'files','44293','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26966,'files','44309','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26967,'files','44310','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26968,'files','44311','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26969,'files','44394','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26970,'files','44438','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26971,'files','44439','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26972,'files','44445','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26973,'files','44472','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26974,'files','44484','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26975,'files','44486','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26976,'files','44487','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26977,'files','44513','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26978,'files','44637','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26979,'files','44779','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26980,'files','44783','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26981,'files','44784','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26982,'files','44875','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26983,'files','44876','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26984,'files','44877','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26985,'files','44978','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26986,'files','44981','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26987,'files','44982','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26988,'files','44983','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26989,'files','44987','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26990,'files','44989','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26991,'files','44990','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26992,'files','44991','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26993,'files','44992','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26994,'files','45031','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26995,'files','45032','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26996,'files','45033','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26997,'files','45034','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26998,'files','45053','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26999,'files','45054','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27000,'files','45094','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27001,'files','45283','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27002,'files','45357','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27003,'files','45358','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27004,'files','45362','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27005,'files','45378','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27006,'files','45379','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27007,'files','45386','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27008,'files','45387','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27009,'files','45388','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27010,'files','45389','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27011,'files','45390','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27012,'files','45391','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27013,'files','45423','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27014,'files','45576','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27015,'files','45651','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27016,'files','45652','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27017,'files','45653','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27018,'files','45774','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27019,'files','45778','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27020,'files','45853','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27021,'files','45865','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27022,'files','46029','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27023,'files','46030','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27024,'files','46031','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27025,'files','46032','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27026,'files','46033','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27027,'files','46041','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27028,'files','46042','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27029,'files','46084','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27030,'files','46086','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27031,'files','46087','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27032,'files','46092','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27033,'files','46140','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27034,'files','46141','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27035,'files','46142','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27036,'files','46143','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27037,'files','46184','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27038,'files','46196','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27039,'files','46219','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27040,'files','46221','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27041,'files','46222','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27042,'files','46229','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27043,'files','46230','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27044,'files','46236','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27045,'files','46289','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27046,'files','46360','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27047,'files','46361','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27048,'files','46385','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27049,'files','46386','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27050,'files','46422','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27051,'files','46423','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27052,'files','46424','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27053,'files','61401','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27054,'files','61402','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27055,'files','61404','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27056,'files','61405','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27057,'files','61454','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27058,'files','61458','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27059,'files','61459','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27060,'files','61460','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27061,'files','61461','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27062,'files','61462','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27063,'files','61470','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27064,'files','61471','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27065,'files','61547','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27066,'files','61548','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27067,'files','61582','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27068,'files','61583','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27069,'files','61584','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27070,'files','61585','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27071,'files','61586','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27072,'files','61587','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27073,'files','61643','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27074,'files','61644','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27075,'files','61682','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27076,'files','61683','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27077,'files','61926','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27078,'files','61927','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27079,'files','61931','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27080,'files','61932','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27081,'files','61933','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27082,'files','61951','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27083,'files','61952','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27084,'files','61953','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27085,'files','61954','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27086,'files','62216','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27087,'files','62279','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27088,'files','62742','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27089,'files','62743','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27090,'files','62744','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27091,'files','62801','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27092,'files','62862','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27093,'files','62863','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27094,'files','62886','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27095,'files','62887','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27096,'files','62888','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27097,'files','62889','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27098,'files','62890','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27099,'files','62891','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27100,'files','62892','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27101,'files','63048','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27102,'files','63132','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27103,'files','63137','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27104,'files','63181','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27105,'files','63185','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27106,'files','63188','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27107,'files','63189','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27108,'files','63312','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27109,'files','63348','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27110,'files','63394','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27111,'files','63395','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27112,'files','63396','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27113,'files','63397','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27114,'files','63398','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27115,'files','63399','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27116,'files','63400','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27117,'files','63420','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27118,'files','63421','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27119,'files','63629','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27120,'files','63630','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27121,'files','63631','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27122,'files','63632','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27123,'files','63633','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27124,'files','63634','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27125,'files','63635','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27126,'files','63636','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27127,'files','63642','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27128,'files','63758','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27129,'files','63759','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27130,'files','63955','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27131,'files','64053','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27132,'files','64210','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27133,'files','64501','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27134,'files','64502','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27135,'files','64503','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27136,'files','64504','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27137,'files','64505','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27138,'files','64515','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27139,'files','64538','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27140,'files','64851','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27141,'files','64950','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27142,'files','65255','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27143,'files','65256','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27144,'files','65291','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27145,'files','65292','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27146,'files','65318','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27147,'files','65356','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27148,'files','65441','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27149,'files','65442','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27150,'files','65443','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27151,'files','65444','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27152,'files','65445','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27153,'files','65446','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27154,'files','65447','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27155,'files','65448','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27156,'files','65449','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27157,'files','65450','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27158,'files','65451','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27159,'files','65452','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27160,'files','65491','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27161,'files','65542','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27162,'files','65594','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27163,'files','65595','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27164,'files','65596','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27165,'files','65597','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27166,'files','65598','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27167,'files','65602','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27168,'files','65603','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27169,'files','65604','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27170,'files','65605','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27171,'files','65606','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27172,'files','65607','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27173,'files','65693','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27174,'files','65694','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27175,'files','65823','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27176,'files','65824','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27177,'files','65825','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27178,'files','65826','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27179,'files','65827','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27180,'files','65828','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27181,'files','65829','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27182,'files','65830','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27183,'files','65836','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27184,'files','65837','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27185,'files','65838','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27186,'files','65839','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27187,'files','65840','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27188,'files','65842','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27189,'files','65844','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27190,'files','65845','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27191,'files','65846','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27192,'files','65847','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27193,'files','65848','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27194,'files','65849','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27195,'files','65851','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27196,'files','65852','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27197,'files','66057','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27198,'files','66058','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27199,'files','66059','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27200,'files','66060','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27201,'files','66061','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27202,'files','66065','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27203,'files','66066','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27204,'files','66083','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27205,'files','66122','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27206,'files','66190','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27207,'files','66382','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27208,'files','66384','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27209,'files','66385','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27210,'files','66402','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27211,'files','66555','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27212,'files','66556','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27213,'files','66557','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27214,'files','66558','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27215,'files','66559','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27216,'files','66795','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27217,'files','66815','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27218,'files','66928','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27219,'files','66942','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27220,'files','66943','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27221,'files','66944','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27222,'files','66945','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27223,'files','67015','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27224,'files','67036','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27225,'files','67091','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27226,'files','67092','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27227,'files','67094','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27228,'files','67095','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27229,'files','67096','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27230,'files','67099','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27231,'files','67118','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27232,'files','67124','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27233,'files','67272','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27234,'files','67367','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27235,'files','67378','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27236,'files','67431','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27237,'files','67511','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27238,'files','67512','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27239,'files','67514','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27240,'files','67515','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27241,'files','67542','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27242,'files','67543','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27243,'files','67544','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27244,'files','67545','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27245,'files','67546','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27246,'files','67547','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27247,'files','67566','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27248,'files','67622','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27249,'files','67623','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27250,'files','67670','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27251,'files','67671','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27252,'files','67675','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27253,'files','67676','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27254,'files','67677','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27255,'files','67678','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27256,'files','67680','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27257,'files','67681','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27258,'files','67745','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27259,'files','67968','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27260,'files','68084','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27261,'files','68085','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27262,'files','68086','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27263,'files','68087','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27264,'files','68088','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27265,'files','68104','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27266,'files','68137','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27267,'files','68138','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27268,'files','68139','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27269,'files','68140','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27270,'files','68201','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27271,'files','68278','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27272,'files','68363','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27273,'files','68364','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27274,'files','68365','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27275,'files','68366','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27276,'files','68367','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27277,'files','68368','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27278,'files','68382','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27279,'files','68480','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27280,'files','68481','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27281,'files','68482','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27282,'files','68483','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27283,'files','68484','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27284,'files','68489','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27285,'files','68490','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27286,'files','68491','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27287,'files','68521','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27288,'files','68522','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27289,'files','68548','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27290,'files','68549','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27291,'files','68564','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27292,'files','68565','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27293,'files','68566','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27294,'files','68567','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27295,'files','68680','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27296,'files','68705','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27297,'files','68706','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27298,'files','68707','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27299,'files','68708','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27300,'files','68709','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27301,'files','68788','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27302,'files','68960','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27303,'files','68961','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27304,'files','68962','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27305,'files','68963','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27306,'files','68984','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27307,'files','69055','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27308,'files','69066','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27309,'files','69098','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27310,'files','69130','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27311,'files','69236','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27312,'files','69237','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27313,'files','69266','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27314,'files','69269','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27315,'files','69370','error','Deal not found: 1767',NULL,'2025-11-14 00:17:03'),
(27316,'files','69382','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27317,'files','69383','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27318,'files','69384','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27319,'files','69385','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27320,'files','69435','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27321,'files','69486','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27322,'files','69487','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27323,'files','69528','error','Deal not found: 1766',NULL,'2025-11-14 00:17:03'),
(27324,'files','69532','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27325,'files','69579','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27326,'files','69580','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27327,'files','69595','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27328,'files','69612','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27329,'files','69791','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27330,'files','69929','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27331,'files','69969','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27332,'files','69970','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27333,'files','69991','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27334,'files','69999','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27335,'files','70008','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27336,'files','70073','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27337,'files','70074','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27338,'files','70075','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27339,'files','70081','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27340,'files','70082','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27341,'files','70083','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27342,'files','70084','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27343,'files','70085','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27344,'files','70086','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27345,'files','70193','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27346,'files','70227','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27347,'files','70228','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27348,'files','70234','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27349,'files','70235','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27350,'files','70319','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27351,'files','70320','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27352,'files','70323','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27353,'files','70326','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27354,'files','70327','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27355,'files','70328','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27356,'files','70475','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27357,'files','70478','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27358,'files','70717','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27359,'files','70718','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27360,'files','70719','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27361,'files','70839','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27362,'files','70840','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27363,'files','70841','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27364,'files','70842','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27365,'files','70864','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27366,'files','70865','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27367,'files','70866','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27368,'files','70905','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27369,'files','70915','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27370,'files','70916','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27371,'files','70917','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27372,'files','70932','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27373,'files','71005','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27374,'files','71013','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27375,'files','71107','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27376,'files','71108','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27377,'files','71113','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27378,'files','71114','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27379,'files','71115','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27380,'files','71116','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27381,'files','71141','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27382,'files','71204','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27383,'files','71205','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27384,'files','71207','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27385,'files','71208','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27386,'files','71209','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27387,'files','71214','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27388,'files','71215','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27389,'files','71216','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27390,'files','71392','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27391,'files','71394','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27392,'files','71395','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27393,'files','71396','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27394,'files','71397','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27395,'files','71398','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27396,'files','71414','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27397,'files','71415','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27398,'files','71416','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27399,'files','71417','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27400,'files','71430','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27401,'files','71487','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27402,'files','71532','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27403,'files','71536','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27404,'files','71538','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27405,'files','71539','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27406,'files','71560','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27407,'files','71720','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27408,'files','71721','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27409,'files','71836','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27410,'files','71846','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27411,'files','71847','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27412,'files','71850','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27413,'files','71854','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27414,'files','71855','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27415,'files','71856','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27416,'files','71936','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27417,'files','72048','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27418,'files','72167','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27419,'files','72231','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27420,'files','72262','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27421,'files','72323','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27422,'files','72606','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27423,'files','72899','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27424,'files','72931','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27425,'files','72941','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27426,'files','72946','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27427,'files','72947','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27428,'files','73088','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27429,'files','73089','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27430,'files','73090','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27431,'files','73091','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27432,'files','73092','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27433,'files','73120','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27434,'files','73121','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27435,'files','73122','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27436,'files','73123','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27437,'files','73248','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27438,'files','73351','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27439,'files','73352','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27440,'files','73359','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27441,'files','73360','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27442,'files','73361','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27443,'files','73362','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27444,'files','73507','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27445,'files','73594','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27446,'files','73595','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27447,'files','73596','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27448,'files','73597','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27449,'files','73608','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27450,'files','73614','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27451,'files','73873','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27452,'files','73874','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27453,'files','73875','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27454,'files','73876','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27455,'files','73877','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27456,'files','73878','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27457,'files','73934','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27458,'files','74074','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27459,'files','74133','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27460,'files','74168','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27461,'files','74169','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27462,'files','74215','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27463,'files','74361','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27464,'files','74362','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27465,'files','74446','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27466,'files','74531','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27467,'files','74532','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27468,'files','74533','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27469,'files','74534','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27470,'files','74535','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27471,'files','74536','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27472,'files','74965','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27473,'files','74979','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27474,'files','75013','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27475,'files','75014','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27476,'files','75017','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27477,'files','75024','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27478,'files','75025','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27479,'files','75026','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27480,'files','75027','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27481,'files','75028','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27482,'files','75030','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27483,'files','75031','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27484,'files','75033','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27485,'files','75036','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27486,'files','75334','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27487,'files','75471','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27488,'files','75472','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27489,'files','75515','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27490,'files','75516','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27491,'files','75519','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27492,'files','75520','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27493,'files','75521','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27494,'files','75522','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27495,'files','75639','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27496,'files','75688','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27497,'files','75689','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27498,'files','75691','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27499,'files','75723','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27500,'files','75724','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27501,'files','75797','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27502,'files','75911','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27503,'files','76005','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27504,'files','76006','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27505,'files','76190','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27506,'files','76238','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27507,'files','76951','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27508,'files','77005','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27509,'files','77037','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27510,'files','77163','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27511,'files','77164','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27512,'files','77327','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27513,'files','77634','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27514,'files','77635','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27515,'files','77776','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27516,'files','77777','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27517,'files','77778','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27518,'files','77779','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27519,'files','77780','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27520,'files','77881','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27521,'files','77882','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27522,'files','77883','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27523,'files','77884','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27524,'files','77890','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27525,'files','77891','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27526,'files','77892','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27527,'files','77893','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27528,'files','78006','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27529,'files','78008','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27530,'files','78011','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27531,'files','78012','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27532,'files','78013','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27533,'files','78242','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27534,'files','78243','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27535,'files','78244','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27536,'files','78256','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27537,'files','78258','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27538,'files','78259','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27539,'files','78260','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27540,'files','78344','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27541,'files','78345','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27542,'files','78360','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27543,'files','78361','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27544,'files','78364','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27545,'files','78365','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27546,'files','78367','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27547,'files','78372','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27548,'files','78373','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27549,'files','78374','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27550,'files','78375','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27551,'files','78429','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27552,'files','78430','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27553,'files','78431','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27554,'files','78432','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27555,'files','78433','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27556,'files','78434','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27557,'files','78438','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27558,'files','78444','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27559,'files','78457','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27560,'files','78458','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27561,'files','78459','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27562,'files','78460','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27563,'files','78462','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27564,'files','78532','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27565,'files','78548','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27566,'files','78552','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27567,'files','78880','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27568,'files','78900','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27569,'files','78901','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27570,'files','78902','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27571,'files','78948','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27572,'files','78992','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27573,'files','79018','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27574,'files','79168','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27575,'files','79190','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27576,'files','79191','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27577,'files','79192','error','Deal not found: 1566',NULL,'2025-11-14 00:17:03'),
(27578,'files','79193','error','Deal not found: 4',NULL,'2025-11-14 00:17:03'),
(27579,'files','79202','error','Deal not found: 1707',NULL,'2025-11-14 00:17:03'),
(27580,'files','79203','error','Deal not found: 1572',NULL,'2025-11-14 00:17:03'),
(27581,'files','79234','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27582,'files','79235','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27583,'files','79272','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27584,'files','79278','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27585,'files','79311','error','Deal not found: 1638',NULL,'2025-11-14 00:17:03'),
(27586,'files','79312','error','Deal not found: 1638',NULL,'2025-11-14 00:17:03'),
(27587,'files','79313','error','Deal not found: 1638',NULL,'2025-11-14 00:17:03'),
(27588,'files','79492','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27589,'files','79493','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27590,'files','79582','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27591,'files','79583','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27592,'files','79584','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27593,'files','79906','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27594,'files','79931','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27595,'files','79932','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27596,'files','80111','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27597,'files','80112','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27598,'files','80113','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27599,'files','80167','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27600,'files','80205','error','Deal not found: 1827',NULL,'2025-11-14 00:17:03'),
(27601,'files','80301','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27602,'files','80336','error','Deal not found: 1802',NULL,'2025-11-14 00:17:03'),
(27603,'files','80501','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27604,'files','80502','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27605,'files','80503','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27606,'files','80504','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27607,'files','81097','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27608,'files','81126','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27609,'files','81593','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27610,'files','81610','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27611,'files','81611','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27612,'files','81612','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27613,'files','81613','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27614,'files','81624','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27615,'files','81625','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27616,'files','81851','error','Deal not found: 1812',NULL,'2025-11-14 00:17:03'),
(27617,'files','81852','error','Deal not found: 1812',NULL,'2025-11-14 00:17:03'),
(27618,'files','81853','error','Deal not found: 1812',NULL,'2025-11-14 00:17:03'),
(27619,'files','81854','error','Deal not found: 1812',NULL,'2025-11-14 00:17:03'),
(27620,'files','81915','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27621,'files','81916','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27622,'files','81917','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27623,'files','81918','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27624,'files','81919','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27625,'files','82664','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27626,'files','82715','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27627,'files','82716','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27628,'files','82717','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27629,'files','82732','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27630,'files','82733','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27631,'files','82762','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27632,'files','82763','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27633,'files','82783','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27634,'files','82904','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27635,'files','83031','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27636,'files','83032','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27637,'files','83033','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27638,'files','83034','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27639,'files','83061','error','Deal not found: 1852',NULL,'2025-11-14 00:17:03'),
(27640,'files','83229','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27641,'files','83237','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27642,'files','83350','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27643,'files','83503','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27644,'files','83524','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27645,'files','83525','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27646,'files','83642','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27647,'files','83643','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27648,'files','84258','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27649,'files','85285','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27650,'files','85286','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27651,'files','85287','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27652,'files','85288','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27653,'files','85289','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27654,'files','85439','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27655,'files','86284','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27656,'files','86608','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27657,'files','86609','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27658,'files','86957','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27659,'files','87009','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27660,'files','87010','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27661,'files','87011','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27662,'files','87012','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27663,'files','87050','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27664,'files','87055','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27665,'files','87677','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27666,'files','87678','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27667,'files','88027','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27668,'files','88028','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27669,'files','88029','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27670,'files','88038','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27671,'files','88263','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27672,'files','88505','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27673,'files','88868','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27674,'files','88874','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27675,'files','88875','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27676,'files','88876','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27677,'files','88877','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27678,'files','88910','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27679,'files','88911','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27680,'files','88912','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27681,'files','88925','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27682,'files','89258','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27683,'files','89261','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27684,'files','89262','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27685,'files','89263','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27686,'files','89288','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27687,'files','89297','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27688,'files','89338','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27689,'files','89340','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27690,'files','89447','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27691,'files','89448','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27692,'files','90082','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27693,'files','90083','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27694,'files','90084','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27695,'files','90085','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27696,'files','90086','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27697,'files','90087','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27698,'files','90158','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27699,'files','90159','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27700,'files','90160','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27701,'files','90161','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27702,'files','90162','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27703,'files','90163','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27704,'files','90753','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27705,'files','90754','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27706,'files','90755','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27707,'files','90756','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27708,'files','90757','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27709,'files','90758','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27710,'files','90766','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27711,'files','90767','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27712,'files','90768','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27713,'files','90913','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27714,'files','90914','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27715,'files','90915','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27716,'files','90916','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27717,'files','90917','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27718,'files','90918','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27719,'files','96562','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27720,'files','96563','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27721,'files','96779','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27722,'files','96780','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27723,'files','97793','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27724,'files','97794','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27725,'files','100036','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27726,'files','100177','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27727,'files','100919','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27728,'files','102829','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27729,'files','103159','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27730,'files','104050','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27731,'files','104998','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27732,'files','104999','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27733,'files','105000','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27734,'files','105001','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27735,'files','105002','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27736,'files','105003','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27737,'files','105004','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27738,'files','105005','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27739,'files','105540','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27740,'files','106018','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27741,'files','106019','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27742,'files','106020','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27743,'files','108115','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27744,'files','108279','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27745,'files','108426','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27746,'files','108427','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27747,'files','108650','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27748,'files','108997','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27749,'files','109201','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27750,'files','109222','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27751,'files','109223','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27752,'files','109443','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27753,'files','110516','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27754,'files','110550','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27755,'files','110576','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27756,'files','112970','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27757,'files','113672','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27758,'files','113817','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27759,'files','114588','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27760,'files','114589','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27761,'files','114590','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27762,'files','115016','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27763,'files','115140','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27764,'files','115565','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27765,'files','116486','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27766,'files','116756','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27767,'files','116757','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27768,'files','116758','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27769,'files','116759','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27770,'files','116760','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27771,'files','116897','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27772,'files','116898','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27773,'files','116913','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27774,'files','117081','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27775,'files','117150','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27776,'files','117151','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27777,'files','117352','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27778,'files','117444','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27779,'files','117445','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27780,'files','117446','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27781,'files','117562','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27782,'files','117563','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27783,'files','117564','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27784,'files','117565','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27785,'files','117567','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27786,'files','117713','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27787,'files','117714','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27788,'files','118327','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27789,'files','118387','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27790,'files','118405','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27791,'files','118442','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27792,'files','118460','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27793,'files','118485','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27794,'files','118548','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27795,'files','118553','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27796,'files','118836','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27797,'files','118966','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27798,'files','119017','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27799,'files','119045','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27800,'files','119090','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27801,'files','119351','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27802,'files','119358','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27803,'files','119359','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27804,'files','119509','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27805,'files','119534','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27806,'files','119732','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27807,'files','119733','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27808,'files','119744','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27809,'files','119745','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27810,'files','119746','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27811,'files','119929','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27812,'files','119930','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27813,'files','119931','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27814,'files','120156','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27815,'files','120157','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27816,'files','120347','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27817,'files','120348','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27818,'files','120349','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27819,'files','120350','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27820,'files','120351','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27821,'files','120352','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27822,'files','120569','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27823,'files','120570','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27824,'files','120571','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27825,'files','120572','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27826,'files','120573','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27827,'files','120574','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27828,'files','120831','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27829,'files','120832','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27830,'files','120867','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27831,'files','120868','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27832,'files','120869','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27833,'files','120870','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27834,'files','120902','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27835,'files','120903','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27836,'files','120904','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27837,'files','121022','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27838,'files','121271','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27839,'files','121272','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27840,'files','121273','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27841,'files','121274','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27842,'files','121275','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27843,'files','121710','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27844,'files','122218','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27845,'files','123189','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27846,'files','123190','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27847,'files','123278','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27848,'files','123820','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27849,'files','123821','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27850,'files','124136','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27851,'files','124137','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27852,'files','124138','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27853,'files','125140','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27854,'files','125727','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27855,'files','125728','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27856,'files','125805','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27857,'files','126002','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27858,'files','126021','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27859,'files','126022','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27860,'files','126023','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27861,'files','127828','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27862,'files','127832','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27863,'files','127833','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27864,'files','127834','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27865,'files','127835','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27866,'files','127836','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27867,'files','128218','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27868,'files','128254','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27869,'files','129007','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27870,'files','129054','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27871,'files','129151','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27872,'files','129938','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27873,'files','131161','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27874,'files','131654','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27875,'files','133367','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27876,'files','133864','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27877,'files','133865','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27878,'files','133866','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27879,'files','134151','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27880,'files','134152','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27881,'files','134153','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27882,'files','134305','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27883,'files','134306','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27884,'files','134307','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27885,'files','135998','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27886,'files','136124','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27887,'files','136380','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27888,'files','136381','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27889,'files','136742','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27890,'files','136743','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27891,'files','136744','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27892,'files','136745','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27893,'files','136746','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27894,'files','137029','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27895,'files','137030','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27896,'files','137031','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27897,'files','137032','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27898,'files','137343','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27899,'files','137344','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27900,'files','137345','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27901,'files','137519','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27902,'files','137614','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27903,'files','137615','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27904,'files','137616','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27905,'files','137620','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27906,'files','137633','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27907,'files','137724','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27908,'files','138237','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27909,'files','139016','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27910,'files','139626','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27911,'files','139627','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27912,'files','139798','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27913,'files','139799','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27914,'files','139800','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27915,'files','140264','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27916,'files','140422','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27917,'files','140758','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27918,'files','140819','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27919,'files','141905','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27920,'files','142203','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27921,'files','142380','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27922,'files','142381','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27923,'files','142382','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27924,'files','142383','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27925,'files','143284','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27926,'files','143285','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27927,'files','143286','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27928,'files','143738','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27929,'files','143910','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27930,'files','144696','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27931,'files','144697','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27932,'files','144698','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27933,'files','144699','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27934,'files','144700','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27935,'files','144701','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27936,'files','147546','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27937,'files','147825','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27938,'files','147985','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27939,'files','148389','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27940,'files','148556','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27941,'files','148557','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27942,'files','148558','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27943,'files','148892','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27944,'files','148991','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27945,'files','149739','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27946,'files','150065','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27947,'files','150322','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27948,'files','151541','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27949,'files','153015','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27950,'files','153336','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27951,'files','153337','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27952,'files','153338','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27953,'files','155695','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27954,'files','155696','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27955,'files','156110','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27956,'files','156111','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27957,'files','156112','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27958,'files','156113','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27959,'files','156115','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27960,'files','156116','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27961,'files','156117','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27962,'files','156118','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27963,'files','156119','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27964,'files','156880','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27965,'files','156881','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27966,'files','156882','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27967,'files','156883','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27968,'files','156884','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27969,'files','156885','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27970,'files','156886','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27971,'files','156887','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27972,'files','157558','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27973,'files','157559','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27974,'files','157560','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27975,'files','157561','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27976,'files','157847','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27977,'files','157848','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27978,'files','158239','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27979,'files','158240','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27980,'files','158241','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27981,'files','158242','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27982,'files','158243','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27983,'files','158244','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27984,'files','158549','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27985,'files','158550','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27986,'files','158551','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27987,'files','158552','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27988,'files','158553','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27989,'files','158554','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27990,'files','158555','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27991,'files','158556','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27992,'files','158557','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27993,'files','158558','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27994,'files','158559','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27995,'files','159086','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27996,'files','159087','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27997,'files','159088','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27998,'files','159255','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27999,'files','159256','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(28000,'files','159257','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(28001,'files','159845','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(28002,'files','159848','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(28003,'files','159849','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(28004,'files','159851','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(28005,'files','159852','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(28006,'files','159853','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(28007,'files','159854','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(28008,'files','160344','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(28009,'files','171710','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(28010,'files','171711','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(28011,'files','171815','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(28012,'files','171969','skipped','No deal associated',NULL,'2025-11-14 00:17:03');
/*!40000 ALTER TABLE `temp_pipedrive_import_log` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `temp_pipedrive_org_map`
--

DROP TABLE IF EXISTS `temp_pipedrive_org_map`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `temp_pipedrive_org_map` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `pipedrive_org_id` varchar(100) NOT NULL COMMENT 'Original Pipedrive Organization ID',
  `pipedrive_org_name` varchar(255) NOT NULL COMMENT 'Organization name from Pipedrive',
  `customer_id` int(10) unsigned NOT NULL COMMENT 'Local customer table ID',
  `import_status` enum('pending','imported','skipped','error') DEFAULT 'imported',
  `import_note` text DEFAULT NULL COMMENT 'Deduplication or error notes',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_pipedrive_org` (`pipedrive_org_id`),
  KEY `idx_customer_id` (`customer_id`),
  KEY `idx_org_name` (`pipedrive_org_name`)
) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci COMMENT='Maps Pipedrive organization IDs to customer IDs';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temp_pipedrive_org_map`
--

LOCK TABLES `temp_pipedrive_org_map` WRITE;
/*!40000 ALTER TABLE `temp_pipedrive_org_map` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `temp_pipedrive_org_map` VALUES
(1,'Bottom Feeder','Bottom Feeder',109,'imported',NULL,'2025-11-13 22:13:38'),
(2,'LBC','LBC',110,'imported',NULL,'2025-11-13 22:13:38'),
(3,'Toca Football','Toca Football',111,'imported',NULL,'2025-11-13 22:13:38'),
(4,'Hyde Park Partners','Hyde Park Partners',112,'imported',NULL,'2025-11-13 22:13:38'),
(5,'VIU Global','VIU Global',113,'imported',NULL,'2025-11-13 22:13:38'),
(6,'Acme (Sample)','Acme (Sample)',114,'imported',NULL,'2025-11-13 22:13:38'),
(7,'General Dynamics Land Systems','General Dynamics Land Systems',115,'imported',NULL,'2025-11-13 22:13:38'),
(8,'HawkTV','HawkTV',116,'imported',NULL,'2025-11-13 22:13:38'),
(9,'Power Pole Geoff Contact','Power Pole Geoff Contact',117,'imported',NULL,'2025-11-13 22:13:38'),
(10,'Cirnapro','Cirnapro',118,'imported',NULL,'2025-11-13 22:13:38'),
(11,'Ontario Drive & Gear Limited','Ontario Drive & Gear Limited',119,'imported',NULL,'2025-11-13 22:13:38'),
(12,'Retired','Retired',120,'imported',NULL,'2025-11-13 22:13:38'),
(13,'YRC Freight— Urbandale, Iowa','YRC Freight— Urbandale, Iowa',121,'imported',NULL,'2025-11-13 22:13:38'),
(14,'LG Electronics','LG Electronics',65,'skipped','Duplicate - customer already exists','2025-11-13 22:13:38'),
(15,'Night Fishing Buoy','Night Fishing Buoy',122,'imported',NULL,'2025-11-13 22:13:38'),
(16,'Immigration and Customs Enforcment','Immigration and Customs Enforcment',123,'imported',NULL,'2025-11-13 22:13:38'),
(17,'Tough Signal','Tough Signal',124,'imported',NULL,'2025-11-13 22:13:38'),
(18,'Booz Allen Hamilton Inc.','Booz Allen Hamilton Inc.',125,'imported',NULL,'2025-11-13 22:13:38'),
(19,'Peppermint Robotics','Peppermint Robotics',77,'skipped','Duplicate - customer already exists','2025-11-13 22:13:38'),
(20,'HV Diagnostics','HV Diagnostics',126,'imported',NULL,'2025-11-13 22:13:38'),
(21,'Obsidian Intergration','Obsidian Intergration',127,'imported',NULL,'2025-11-13 22:13:38'),
(22,'Andretti Autosports','Andretti Autosports',128,'imported',NULL,'2025-11-13 22:13:38'),
(23,'GCC','GCC',129,'imported',NULL,'2025-11-13 22:13:38'),
(24,'AGV America','AGV America',130,'imported',NULL,'2025-11-13 22:13:38'),
(25,'Toronto Coach Terminal Inc.','Toronto Coach Terminal Inc.',131,'imported',NULL,'2025-11-13 22:13:38');
/*!40000 ALTER TABLE `temp_pipedrive_org_map` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `template_checkpoints`
--

DROP TABLE IF EXISTS `template_checkpoints`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `template_checkpoints` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `template_id` int(10) unsigned NOT NULL,
  `checkpoint_name` varchar(255) NOT NULL,
  `specification` text DEFAULT NULL,
  `measurement_type` enum('pass_fail','numeric','visual','dimensional') DEFAULT 'pass_fail',
  `target_value` decimal(10,3) DEFAULT NULL,
  `tolerance_min` decimal(10,3) DEFAULT NULL,
  `tolerance_max` decimal(10,3) DEFAULT NULL,
  `sequence_order` int(11) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_template` (`template_id`),
  CONSTRAINT `template_checkpoints_ibfk_1` FOREIGN KEY (`template_id`) REFERENCES `inspection_templates` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `template_checkpoints`
--

LOCK TABLES `template_checkpoints` WRITE;
/*!40000 ALTER TABLE `template_checkpoints` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `template_checkpoints` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `terms_conditions`
--

DROP TABLE IF EXISTS `terms_conditions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `terms_conditions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `content` text NOT NULL,
  `type` enum('quote','invoice','sales_order','promotion','general') NOT NULL DEFAULT 'general',
  `is_default` tinyint(1) DEFAULT 0,
  `status` enum('active','inactive') DEFAULT 'active',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_type` (`type`),
  KEY `idx_status` (`status`),
  KEY `idx_is_default` (`is_default`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `terms_conditions`
--

LOCK TABLES `terms_conditions` WRITE;
/*!40000 ALTER TABLE `terms_conditions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `terms_conditions` VALUES
(1,'Standard Quote Terms','This quote is valid for 30 days from the date of issue. All prices are subject to change without notice. Payment terms are net 30 days from invoice date. A deposit may be required before work commences.','quote',1,'active','2025-10-31 14:20:39','2025-10-31 14:20:39'),
(2,'Standard Invoice Terms','Payment is due within 30 days of invoice date. Late payments may incur interest charges at a rate of 1.5% per month. All sales are final unless otherwise stated in writing.','invoice',1,'active','2025-10-31 14:20:39','2025-10-31 14:20:39'),
(3,'Standard Promotion Terms','This promotion cannot be combined with other offers unless explicitly stated. Valid while supplies last. Management reserves the right to modify or cancel this promotion at any time. Terms and conditions apply.','promotion',1,'active','2025-10-31 14:20:39','2025-10-31 14:20:39'),
(4,'General Terms','All transactions are subject to our standard terms and conditions. Please contact us if you have any questions.','general',1,'active','2025-10-31 14:20:39','2025-10-31 14:20:39');
/*!40000 ALTER TABLE `terms_conditions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `tickler_alerts`
--

DROP TABLE IF EXISTS `tickler_alerts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tickler_alerts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `config_id` int(10) unsigned NOT NULL,
  `entity_type` enum('opportunity','customer','contact','activity') NOT NULL,
  `entity_id` int(10) unsigned NOT NULL,
  `entity_name` varchar(255) NOT NULL,
  `created_by` int(10) unsigned NOT NULL,
  `alert_date` datetime NOT NULL,
  `status` enum('pending','sent','cancelled') NOT NULL DEFAULT 'pending',
  `announcement_id` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `processed_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_status_alert_date` (`status`,`alert_date`),
  KEY `idx_entity` (`entity_type`,`entity_id`),
  KEY `idx_created_by` (`created_by`),
  KEY `fk_tickler_config` (`config_id`),
  KEY `fk_tickler_announcement` (`announcement_id`),
  CONSTRAINT `fk_tickler_announcement` FOREIGN KEY (`announcement_id`) REFERENCES `announcements` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_tickler_config` FOREIGN KEY (`config_id`) REFERENCES `tickler_configs` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_tickler_user` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tickler_alerts`
--

LOCK TABLES `tickler_alerts` WRITE;
/*!40000 ALTER TABLE `tickler_alerts` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `tickler_alerts` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `tickler_configs`
--

DROP TABLE IF EXISTS `tickler_configs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tickler_configs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entity_type` enum('opportunity','customer','contact','activity') NOT NULL,
  `days_until_alert` int(11) NOT NULL DEFAULT 15,
  `alert_title_template` varchar(255) NOT NULL DEFAULT 'Follow-up Reminder: {entity_name}',
  `alert_message_template` text NOT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `notify_creator` tinyint(1) NOT NULL DEFAULT 1,
  `notify_manager` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `entity_type` (`entity_type`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tickler_configs`
--

LOCK TABLES `tickler_configs` WRITE;
/*!40000 ALTER TABLE `tickler_configs` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `tickler_configs` VALUES
(1,'opportunity',15,'Follow-up Reminder: {entity_name}','This is a reminder to follow up on the opportunity \"{entity_name}\" created {days} days ago. Please review and update the status.',1,1,1,'2025-12-04 12:11:43','2025-12-04 12:11:43'),
(2,'customer',15,'New Customer Follow-up: {entity_name}','Please follow up with customer \"{entity_name}\" who was added {days} days ago. Ensure onboarding is proceeding smoothly.',1,1,1,'2025-12-04 12:11:43','2025-12-04 12:11:43'),
(3,'contact',15,'Contact Follow-up: {entity_name}','Follow up with contact \"{entity_name}\" added {days} days ago. Verify contact information and engagement.',1,1,1,'2025-12-04 12:11:43','2025-12-04 12:11:43'),
(4,'activity',15,'Activity Follow-up: {entity_name}','This is a reminder about the activity \"{entity_name}\" from {days} days ago. Please review and complete if needed.',1,1,1,'2025-12-04 12:11:43','2025-12-04 12:11:43');
/*!40000 ALTER TABLE `tickler_configs` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `tickler_settings`
--

DROP TABLE IF EXISTS `tickler_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tickler_settings` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entity_type` enum('opportunity','customer','contact','activity') NOT NULL,
  `days_option` int(11) NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT 0,
  `display_order` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_entity_type` (`entity_type`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tickler_settings`
--

LOCK TABLES `tickler_settings` WRITE;
/*!40000 ALTER TABLE `tickler_settings` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `tickler_settings` VALUES
(1,'opportunity',7,0,1,'2025-12-04 12:11:43'),
(2,'opportunity',15,1,2,'2025-12-04 12:11:43'),
(3,'opportunity',30,0,3,'2025-12-04 12:11:43'),
(4,'opportunity',60,0,4,'2025-12-04 12:11:43'),
(5,'customer',7,0,1,'2025-12-04 12:11:43'),
(6,'customer',15,1,2,'2025-12-04 12:11:43'),
(7,'customer',30,0,3,'2025-12-04 12:11:43'),
(8,'customer',60,0,4,'2025-12-04 12:11:43'),
(9,'contact',7,0,1,'2025-12-04 12:11:43'),
(10,'contact',15,1,2,'2025-12-04 12:11:43'),
(11,'contact',30,0,3,'2025-12-04 12:11:43'),
(12,'activity',7,1,1,'2025-12-04 12:11:43'),
(13,'activity',15,0,2,'2025-12-04 12:11:43'),
(14,'activity',30,0,3,'2025-12-04 12:11:43');
/*!40000 ALTER TABLE `tickler_settings` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `training_programs`
--

DROP TABLE IF EXISTS `training_programs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `training_programs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `category` enum('onboarding','technical','soft-skills','compliance','leadership','safety','product','other') DEFAULT 'other',
  `type` enum('in-person','online','hybrid','self-paced') DEFAULT 'in-person',
  `duration_hours` decimal(5,2) DEFAULT NULL,
  `cost` decimal(10,2) DEFAULT NULL,
  `provider` varchar(255) DEFAULT NULL,
  `materials_path` varchar(500) DEFAULT NULL,
  `certification` tinyint(1) DEFAULT 0,
  `status` enum('draft','active','inactive','archived') DEFAULT 'active',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_category` (`category`),
  KEY `idx_status` (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `training_programs`
--

LOCK TABLES `training_programs` WRITE;
/*!40000 ALTER TABLE `training_programs` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `training_programs` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `transaction_taxes`
--

DROP TABLE IF EXISTS `transaction_taxes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `transaction_taxes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `transaction_type` enum('invoice','sales_order','quote','credit_note') NOT NULL,
  `transaction_id` int(10) unsigned NOT NULL,
  `transaction_line_id` int(10) unsigned DEFAULT NULL COMMENT 'Specific line item if applicable',
  `jurisdiction_id` int(10) unsigned NOT NULL,
  `tax_rate` decimal(8,5) NOT NULL COMMENT 'Rate at time of transaction',
  `taxable_amount` decimal(15,2) NOT NULL COMMENT 'Amount subject to this tax',
  `tax_amount` decimal(15,2) NOT NULL COMMENT 'Calculated tax amount',
  `is_collected` tinyint(1) DEFAULT 0,
  `collection_date` date DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_transaction` (`transaction_type`,`transaction_id`),
  KEY `idx_jurisdiction` (`jurisdiction_id`),
  KEY `idx_collection` (`is_collected`,`collection_date`),
  CONSTRAINT `transaction_taxes_ibfk_1` FOREIGN KEY (`jurisdiction_id`) REFERENCES `tax_jurisdictions` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `transaction_taxes`
--

LOCK TABLES `transaction_taxes` WRITE;
/*!40000 ALTER TABLE `transaction_taxes` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `transaction_taxes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `unlinked_financial_transactions`
--

DROP TABLE IF EXISTS `unlinked_financial_transactions`;
/*!50001 DROP VIEW IF EXISTS `unlinked_financial_transactions`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `unlinked_financial_transactions` AS SELECT
 1 AS `id`,
  1 AS `project_id`,
  1 AS `transaction_date`,
  1 AS `description`,
  1 AS `category`,
  1 AS `amount`,
  1 AS `transaction_type`,
  1 AS `status`,
  1 AS `journal_entry_id`,
  1 AS `account_id`,
  1 AS `document_id`,
  1 AS `reference_type`,
  1 AS `reference_id`,
  1 AS `assigned_to`,
  1 AS `due_date`,
  1 AS `notes`,
  1 AS `created_by`,
  1 AS `created_at`,
  1 AS `updated_at`,
  1 AS `project_name`,
  1 AS `project_code`,
  1 AS `assigned_to_name` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `user_banner_widgets`
--

DROP TABLE IF EXISTS `user_banner_widgets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_banner_widgets` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `widget_type` varchar(50) NOT NULL,
  `is_enabled` tinyint(1) DEFAULT 1,
  `display_order` int(11) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_user_widget` (`user_id`,`widget_type`),
  CONSTRAINT `user_banner_widgets_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_banner_widgets`
--

LOCK TABLES `user_banner_widgets` WRITE;
/*!40000 ALTER TABLE `user_banner_widgets` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `user_banner_widgets` VALUES
(1,1,'messages',1,1,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(2,2,'messages',1,1,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(3,3,'messages',1,1,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(4,4,'messages',1,1,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(5,5,'messages',1,1,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(6,6,'messages',1,1,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(7,7,'messages',1,1,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(8,8,'messages',1,1,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(9,21,'messages',1,1,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(16,1,'calendar',1,2,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(17,2,'calendar',1,2,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(18,3,'calendar',1,2,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(19,4,'calendar',1,2,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(20,5,'calendar',1,2,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(21,6,'calendar',1,2,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(22,7,'calendar',1,2,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(23,8,'calendar',1,2,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(24,21,'calendar',1,2,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(31,1,'todos',1,3,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(32,2,'todos',1,3,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(33,3,'todos',1,3,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(34,4,'todos',1,3,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(35,5,'todos',1,3,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(36,6,'todos',1,3,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(37,7,'todos',1,3,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(38,8,'todos',1,3,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(39,21,'todos',1,3,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(47,1,'hot_leads',1,5,'2025-12-03 02:49:59','2025-12-03 02:49:59');
/*!40000 ALTER TABLE `user_banner_widgets` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `user_calendar_events`
--

DROP TABLE IF EXISTS `user_calendar_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_calendar_events` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `event_date` date NOT NULL,
  `start_time` time DEFAULT NULL,
  `end_time` time DEFAULT NULL,
  `location` varchar(255) DEFAULT NULL,
  `event_type` enum('meeting','reminder','task','deadline','other') DEFAULT 'meeting',
  `is_all_day` tinyint(1) DEFAULT 0,
  `reminder_minutes` int(11) DEFAULT 15,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_date` (`user_id`,`event_date`),
  KEY `idx_date_range` (`event_date`,`start_time`),
  CONSTRAINT `user_calendar_events_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_calendar_events`
--

LOCK TABLES `user_calendar_events` WRITE;
/*!40000 ALTER TABLE `user_calendar_events` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `user_calendar_events` VALUES
(1,1,'Team Standup',NULL,'2025-12-02','09:30:00','10:00:00',NULL,'meeting',0,15,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(2,1,'Client Call - Acme Corp',NULL,'2025-12-02','11:00:00','12:00:00',NULL,'meeting',0,15,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(3,1,'Budget Review',NULL,'2025-12-02','14:00:00','15:00:00',NULL,'meeting',0,15,'2025-12-03 02:04:30','2025-12-03 02:04:30');
/*!40000 ALTER TABLE `user_calendar_events` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `user_custom_menus`
--

DROP TABLE IF EXISTS `user_custom_menus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_custom_menus` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `menu_name` varchar(100) NOT NULL,
  `menu_icon` varchar(50) DEFAULT 'bi-star',
  `menu_url` varchar(255) NOT NULL,
  `sort_order` int(11) DEFAULT 0,
  `is_active` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_id` (`user_id`),
  CONSTRAINT `fk_user_custom_menus_user` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_custom_menus`
--

LOCK TABLES `user_custom_menus` WRITE;
/*!40000 ALTER TABLE `user_custom_menus` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `user_custom_menus` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `user_dashboard_widgets`
--

DROP TABLE IF EXISTS `user_dashboard_widgets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_dashboard_widgets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `widget_type` varchar(50) NOT NULL,
  `position` int(11) DEFAULT 0,
  `size` varchar(20) DEFAULT 'medium',
  `refresh_interval` int(11) DEFAULT NULL COMMENT 'Auto-refresh interval in seconds',
  `is_visible` tinyint(4) DEFAULT 1,
  `settings` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`settings`)),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_widgets` (`user_id`,`is_visible`),
  KEY `idx_position` (`user_id`,`position`),
  KEY `idx_user_position` (`user_id`,`position`),
  CONSTRAINT `user_dashboard_widgets_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=93 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_dashboard_widgets`
--

LOCK TABLES `user_dashboard_widgets` WRITE;
/*!40000 ALTER TABLE `user_dashboard_widgets` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `user_dashboard_widgets` VALUES
(20,15,'revenue_month',1,'medium',NULL,1,NULL,'2025-10-28 16:25:40','2025-10-28 16:25:40'),
(21,15,'sales_today',2,'small',NULL,1,NULL,'2025-10-28 16:25:40','2025-10-28 16:25:40'),
(22,15,'outstanding_invoices',3,'medium',NULL,1,NULL,'2025-10-28 16:25:40','2025-10-28 16:25:40'),
(23,15,'low_stock',4,'medium',NULL,1,NULL,'2025-10-28 16:25:40','2025-10-28 16:25:40'),
(24,15,'component_shortages',5,'medium',NULL,1,NULL,'2025-10-28 16:25:40','2025-10-28 16:25:40'),
(25,15,'recent_orders',6,'large',NULL,1,NULL,'2025-10-28 16:25:40','2025-10-28 16:25:40'),
(26,13,'revenue_month',1,'medium',NULL,1,NULL,'2025-10-28 16:46:14','2025-10-28 16:46:14'),
(27,13,'sales_today',2,'small',NULL,1,NULL,'2025-10-28 16:46:14','2025-10-28 16:46:14'),
(28,13,'outstanding_invoices',3,'medium',NULL,1,NULL,'2025-10-28 16:46:14','2025-10-28 16:46:14'),
(29,13,'low_stock',4,'medium',NULL,1,NULL,'2025-10-28 16:46:14','2025-10-28 16:46:14'),
(30,13,'component_shortages',5,'medium',NULL,1,NULL,'2025-10-28 16:46:14','2025-10-28 16:46:14'),
(31,13,'recent_orders',6,'large',NULL,1,NULL,'2025-10-28 16:46:14','2025-10-28 16:46:14'),
(32,16,'revenue_month',1,'medium',NULL,1,NULL,'2025-10-29 01:53:15','2025-10-29 01:53:15'),
(33,16,'sales_today',2,'small',NULL,1,NULL,'2025-10-29 01:53:15','2025-10-29 01:53:15'),
(34,16,'outstanding_invoices',3,'medium',NULL,1,NULL,'2025-10-29 01:53:15','2025-10-29 01:53:15'),
(35,16,'low_stock',4,'medium',NULL,1,NULL,'2025-10-29 01:53:15','2025-10-29 01:53:15'),
(36,16,'component_shortages',5,'medium',NULL,1,NULL,'2025-10-29 01:53:15','2025-10-29 01:53:15'),
(37,16,'recent_orders',6,'large',NULL,1,NULL,'2025-10-29 01:53:15','2025-10-29 01:53:15'),
(38,17,'revenue_month',1,'medium',NULL,1,NULL,'2025-10-30 19:26:46','2025-10-30 19:26:46'),
(39,17,'sales_today',2,'small',NULL,1,NULL,'2025-10-30 19:26:46','2025-10-30 19:26:46'),
(40,17,'outstanding_invoices',3,'medium',NULL,1,NULL,'2025-10-30 19:26:46','2025-10-30 19:26:46'),
(41,17,'low_stock',4,'medium',NULL,1,NULL,'2025-10-30 19:26:46','2025-10-30 19:26:46'),
(42,17,'component_shortages',5,'medium',NULL,1,NULL,'2025-10-30 19:26:46','2025-10-30 19:26:46'),
(43,17,'recent_orders',6,'large',NULL,1,NULL,'2025-10-30 19:26:46','2025-10-30 19:26:46'),
(56,1,'revenue_month',1,'medium',NULL,1,NULL,'2025-11-03 15:33:16','2025-11-03 15:33:16'),
(57,1,'outstanding_invoices',2,'medium',NULL,1,NULL,'2025-11-03 15:33:16','2025-11-03 15:33:16'),
(58,1,'sales_today',3,'small',NULL,1,NULL,'2025-11-03 15:33:17','2025-11-03 15:33:17'),
(60,1,'top_customers',5,'large',NULL,1,NULL,'2025-11-03 15:33:19','2025-11-03 15:33:19'),
(62,1,'sales_trend',7,'large',NULL,1,NULL,'2025-11-03 15:33:20','2025-11-03 15:33:20'),
(63,1,'low_stock',8,'medium',NULL,1,NULL,'2025-11-03 15:33:22','2025-11-03 15:33:22'),
(64,1,'inventory_value',9,'small',NULL,1,NULL,'2025-11-03 15:33:25','2025-11-03 15:33:25'),
(65,1,'quality_metrics',10,'medium',NULL,1,NULL,'2025-11-03 15:33:28','2025-11-03 15:33:28'),
(66,1,'equipment_status',11,'medium',NULL,1,NULL,'2025-11-03 15:33:30','2025-11-03 15:33:30'),
(67,1,'component_shortages',12,'medium',NULL,1,NULL,'2025-11-03 15:33:31','2025-11-03 15:33:31'),
(68,1,'work_orders_status',13,'medium',NULL,1,NULL,'2025-11-03 15:33:33','2025-11-03 15:33:33'),
(69,1,'production_efficiency',14,'medium',NULL,1,NULL,'2025-11-03 15:33:36','2025-11-03 15:33:36'),
(70,1,'employee_count',15,'small',NULL,1,NULL,'2025-11-03 15:33:40','2025-11-03 15:33:40'),
(71,1,'employee_birthdays',16,'medium',NULL,1,NULL,'2025-11-03 15:33:42','2025-11-03 15:33:42'),
(72,1,'upcoming_payroll',17,'medium',NULL,1,NULL,'2025-11-03 15:33:44','2025-11-03 15:33:44'),
(73,1,'attendance_today',18,'medium',NULL,1,NULL,'2025-11-03 15:33:46','2025-11-03 15:33:46'),
(74,1,'pending_orders',19,'small',NULL,1,NULL,'2025-11-03 15:33:48','2025-11-03 15:33:48'),
(75,1,'pending_leave_requests',20,'small',NULL,1,NULL,'2025-11-03 15:33:52','2025-11-03 15:33:52'),
(86,1,'top_products',21,'large',NULL,1,NULL,'2025-11-12 15:23:43','2025-11-12 15:23:43'),
(87,8,'upcoming_events',1,'large',NULL,1,NULL,'2025-11-15 15:57:24','2025-11-15 15:57:24'),
(88,1,'open_opportunities',22,'medium',NULL,1,NULL,'2025-11-24 13:37:25','2025-11-24 13:37:25'),
(89,1,'recent_crm_activities',23,'large',NULL,1,NULL,'2025-11-24 13:37:27','2025-11-24 13:37:27'),
(90,1,'customer_pipeline',24,'large',NULL,1,NULL,'2025-11-24 13:37:29','2025-11-24 13:37:29'),
(91,1,'new_customers_month',25,'small',NULL,1,NULL,'2025-11-24 13:37:31','2025-11-24 13:37:31'),
(92,1,'customer_satisfaction',26,'medium',NULL,1,NULL,'2025-11-24 13:37:33','2025-11-24 13:37:33');
/*!40000 ALTER TABLE `user_dashboard_widgets` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `user_group_members`
--

DROP TABLE IF EXISTS `user_group_members`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_group_members` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `group_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `role` enum('manager','leader','member','observer') DEFAULT 'member',
  `added_by` int(10) unsigned NOT NULL,
  `added_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_group_user` (`group_id`,`user_id`),
  KEY `added_by` (`added_by`),
  KEY `idx_group` (`group_id`),
  KEY `idx_user` (`user_id`),
  KEY `idx_role` (`role`),
  KEY `idx_group_role` (`group_id`,`role`),
  CONSTRAINT `user_group_members_ibfk_1` FOREIGN KEY (`group_id`) REFERENCES `user_groups` (`id`) ON DELETE CASCADE,
  CONSTRAINT `user_group_members_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `user_group_members_ibfk_3` FOREIGN KEY (`added_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_group_members`
--

LOCK TABLES `user_group_members` WRITE;
/*!40000 ALTER TABLE `user_group_members` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `user_group_members` VALUES
(3,1,1,'member',1,'2025-11-14 19:11:35'),
(4,1,3,'member',1,'2025-11-14 19:11:41'),
(5,1,2,'member',1,'2025-11-14 19:13:53'),
(6,1,4,'member',1,'2025-11-14 19:13:53'),
(7,1,6,'member',1,'2025-11-14 19:13:53'),
(8,1,5,'member',1,'2025-11-14 19:13:53'),
(9,23,2,'member',1,'2025-12-04 10:49:05'),
(10,23,4,'member',1,'2025-12-04 10:49:05');
/*!40000 ALTER TABLE `user_group_members` ENABLE KEYS */;
UNLOCK TABLES;
commit;

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

DROP TABLE IF EXISTS `user_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_groups` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) DEFAULT NULL,
  `name` varchar(100) NOT NULL,
  `slug` varchar(100) NOT NULL,
  `description` text DEFAULT NULL,
  `type` enum('system','department','project','location','custom','division','team','squad') DEFAULT 'custom',
  `is_active` tinyint(1) DEFAULT 1,
  `display_order` int(11) DEFAULT 0,
  `created_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`),
  UNIQUE KEY `slug` (`slug`),
  KEY `created_by` (`created_by`),
  KEY `idx_slug` (`slug`),
  KEY `idx_type` (`type`),
  KEY `idx_active` (`is_active`),
  KEY `idx_parent_id` (`parent_id`),
  KEY `idx_display_order` (`display_order`),
  CONSTRAINT `user_groups_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `user_groups` WRITE;
/*!40000 ALTER TABLE `user_groups` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `user_groups` VALUES
(1,NULL,'All Staff','all-staff','All active users in the system','system',1,0,1,'2025-11-14 12:52:54','2025-11-14 12:52:54'),
(2,NULL,'Management','management','All managers and executives','system',1,0,1,'2025-11-14 12:52:54','2025-11-14 12:52:54'),
(8,NULL,'All Company','all-company','Entire organization','system',1,1,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(9,8,'Sales Division','sales-division','Sales and marketing teams','division',1,1,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(10,8,'Operations Division','operations-division-1','Operations and delivery','division',1,2,1,'2025-12-04 10:35:17','2025-12-04 11:36:33'),
(11,8,'Technology Division','technology-division','Engineering and IT','division',1,3,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(12,9,'Sales Department','sales-department','Direct sales team','department',1,1,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(13,9,'Marketing Department','marketing-department','Marketing and campaigns','department',1,2,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(14,10,'Manufacturing Department','manufacturing-department','Production teams','department',1,1,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(15,10,'Logistics Department','logistics-department','Supply chain and delivery','department',1,2,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(16,11,'Engineering Department','engineering-department','Software development','department',1,1,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(17,11,'IT Department','it-department','IT support and infrastructure','department',1,2,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(18,12,'Enterprise Sales Team','enterprise-sales-team','Enterprise account executives','team',1,1,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(19,12,'SMB Sales Team','smb-sales-team','Small business sales','team',1,2,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(20,16,'Backend Team','backend-team','Backend developers','team',1,1,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(21,16,'Frontend Team','frontend-team','Frontend developers','team',1,2,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(22,16,'DevOps Squad','devops-squad','Infrastructure and deployment','squad',1,3,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(23,8,'Executive Team / C-Suite','executive-team-c-suite','','custom',1,0,1,'2025-12-04 10:45:42','2025-12-04 11:26:31'),
(24,8,'Manufacturing Division','manufacturing-division','','custom',1,0,1,'2025-12-04 11:29:19','2025-12-04 11:29:19');
/*!40000 ALTER TABLE `user_groups` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `user_mfa_backup_codes`
--

DROP TABLE IF EXISTS `user_mfa_backup_codes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_mfa_backup_codes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `code_hash` varchar(255) NOT NULL COMMENT 'Hashed backup code',
  `used_at` datetime DEFAULT NULL COMMENT 'When the code was used',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_id` (`user_id`),
  KEY `idx_used` (`used_at`),
  CONSTRAINT `user_mfa_backup_codes_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_mfa_backup_codes`
--

LOCK TABLES `user_mfa_backup_codes` WRITE;
/*!40000 ALTER TABLE `user_mfa_backup_codes` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `user_mfa_backup_codes` VALUES
(11,1,'$2y$12$1I/2e64hT5gKiKS0cvgYC.CgJJYOcV2E0vO7vAx3tD2HpMmiqMJyK',NULL,'2025-11-15 18:36:01'),
(12,1,'$2y$12$7r03XTsVjUIsMREvGqFzGOFwIRgGWi6g9dNGro7gjE.Kr1rVjVgra',NULL,'2025-11-15 18:36:02'),
(13,1,'$2y$12$2Z3bKItUJlDLwTgvlvgWe.rBU1xstyqr53jD7bHWncYFDbHqRqeki',NULL,'2025-11-15 18:36:02'),
(14,1,'$2y$12$ALIe4cyfaJzsB.QBpc5OHOamdS0gFauNKm6HmHZlEzq1o7Vp9Xx.q',NULL,'2025-11-15 18:36:02'),
(15,1,'$2y$12$pxIVvMszf5V/d9n2er5BguWtct5NlpAh87a/ltHrL1Lljxga/RS5S',NULL,'2025-11-15 18:36:02'),
(16,1,'$2y$12$IQ5XDRg.8pj4VgI16pwdJ.Rl7XCWaLpE5RRONJCjdN1mlHelVY.ym',NULL,'2025-11-15 18:36:02'),
(17,1,'$2y$12$WiR3PLndDadWoGT9Zs.Z5uM1Q1rScM8UlqyZT6HcBMTbZbFaTyMda',NULL,'2025-11-15 18:36:02'),
(18,1,'$2y$12$qFrvp9sIBEZ6mrGZ6E9pCOt5MJWy//wKIRiUVv3.PPkdWbmGcvvD2',NULL,'2025-11-15 18:36:03'),
(19,1,'$2y$12$CZRw9AbWpEkQ1sHITAeZfuw5ddLk5RZkkpi25BGSed1yGboKBSIeW',NULL,'2025-11-15 18:36:03'),
(20,1,'$2y$12$Glo9jS9PuG.nw6QiOsjkEezamHNdHbIWsOyPRQhs.I9mpxidqcgMG',NULL,'2025-11-15 18:36:03');
/*!40000 ALTER TABLE `user_mfa_backup_codes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `user_otp_codes`
--

DROP TABLE IF EXISTS `user_otp_codes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_otp_codes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `otp_code` varchar(10) NOT NULL COMMENT '6-digit OTP code',
  `otp_type` varchar(20) NOT NULL COMMENT 'Type: login, setup, reset',
  `otp_method` varchar(20) NOT NULL COMMENT 'Method: email, sms',
  `expires_at` datetime NOT NULL,
  `verified_at` datetime DEFAULT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `attempts` int(11) DEFAULT 0 COMMENT 'Number of verification attempts',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_id` (`user_id`),
  KEY `idx_otp_code` (`otp_code`),
  KEY `idx_expires` (`expires_at`),
  CONSTRAINT `user_otp_codes_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_otp_codes`
--

LOCK TABLES `user_otp_codes` WRITE;
/*!40000 ALTER TABLE `user_otp_codes` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `user_otp_codes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `user_roles`
--

DROP TABLE IF EXISTS `user_roles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_roles` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `role_id` int(11) NOT NULL,
  `assigned_by` int(11) DEFAULT NULL,
  `assigned_at` timestamp NULL DEFAULT current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_user_role` (`user_id`,`role_id`),
  KEY `idx_user` (`user_id`),
  KEY `idx_role` (`role_id`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_roles`
--

LOCK TABLES `user_roles` WRITE;
/*!40000 ALTER TABLE `user_roles` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `user_roles` VALUES
(1,1,1,NULL,'2025-11-01 15:44:07','2025-11-11 00:36:43','2025-11-11 00:36:43'),
(13,21,78,1,'2025-11-08 19:29:30','2025-11-11 00:36:43','2025-11-11 00:36:43'),
(19,7,92,1,'2025-11-14 21:00:43','2025-11-14 21:00:43','2025-11-14 21:00:43'),
(20,8,81,1,'2025-11-14 21:01:16','2025-11-14 21:01:16','2025-11-14 21:01:16'),
(21,2,108,NULL,'2025-11-15 11:47:23','2025-11-15 11:47:23','2025-11-15 11:47:23'),
(22,4,111,NULL,'2025-11-15 11:47:23','2025-11-15 11:47:23','2025-11-15 11:52:00'),
(23,21,116,NULL,'2025-11-15 23:53:17','2025-11-15 23:53:17','2025-11-15 23:53:17');
/*!40000 ALTER TABLE `user_roles` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `user_search_activity`
--

DROP TABLE IF EXISTS `user_search_activity`;
/*!50001 DROP VIEW IF EXISTS `user_search_activity`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `user_search_activity` AS SELECT
 1 AS `user_id`,
  1 AS `user_name`,
  1 AS `total_searches`,
  1 AS `unique_queries`,
  1 AS `avg_results`,
  1 AS `last_search_at` */;
SET character_set_client = @saved_cs_client;

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

DROP TABLE IF EXISTS `user_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_settings` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `theme` varchar(50) DEFAULT 'dark',
  `wallpaper` varchar(255) DEFAULT 'tech-grid-blue',
  `sidebar_collapsed` tinyint(1) DEFAULT 0,
  `language` varchar(10) DEFAULT 'en',
  `date_format` varchar(20) DEFAULT 'm/d/y',
  `time_format` varchar(10) DEFAULT '24h',
  `timezone` varchar(50) DEFAULT 'UTC',
  `items_per_page` int(11) DEFAULT 25,
  `email_notifications` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_user_settings` (`user_id`),
  KEY `idx_user_id` (`user_id`),
  CONSTRAINT `fk_user_settings_user` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `user_settings` WRITE;
/*!40000 ALTER TABLE `user_settings` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `user_settings` VALUES
(1,1,'dark','tech-grid-blue',0,'en','Y-m-d','24h','UTC',25,1,'2025-10-26 17:06:50','2025-12-04 23:23:22'),
(3,15,'dark','tech-grid-blue',0,'en','m/d/y','24h','UTC',25,1,'2025-10-28 16:25:40','2025-11-12 14:09:16'),
(4,13,'dark','tech-grid-blue',0,'en','m/d/y','24h','UTC',25,1,'2025-10-28 16:46:14','2025-11-12 14:09:16'),
(5,16,'dark','tech-grid-blue',0,'en','m/d/y','24h','UTC',25,1,'2025-10-29 01:53:15','2025-11-12 14:09:16'),
(6,17,'dark','tech-grid-blue',0,'en','m/d/y','24h','UTC',25,1,'2025-10-30 19:26:46','2025-11-12 14:09:16'),
(7,18,'dark','tech-grid-blue',0,'en','m/d/y','24h','UTC',25,1,'2025-11-01 15:15:37','2025-11-12 14:09:16'),
(8,21,'dark','tech-grid-blue',0,'en','m/d/y','24h','UTC',25,1,'2025-11-08 19:43:06','2025-11-12 14:09:16'),
(9,2,'dark','tech-grid-blue',0,'en','m/d/y','24h','UTC',25,1,'2025-11-11 13:30:12','2025-11-12 14:09:16'),
(10,8,'dark','tech-grid-blue',0,'en','Y-m-d','24h','UTC',25,1,'2025-11-14 21:03:28','2025-11-14 21:03:28'),
(11,7,'dark','tech-grid-blue',0,'en','Y-m-d','24h','UTC',25,1,'2025-11-15 16:55:15','2025-11-15 16:55:15'),
(12,4,'dark','tech-grid-blue',0,'en','Y-m-d','24h','UTC',25,1,'2025-11-27 23:20:13','2025-11-27 23:20:13'),
(13,5,'dark','tech-grid-blue',0,'en','Y-m-d','24h','UTC',25,1,'2025-11-30 14:55:20','2025-11-30 14:55:20');
/*!40000 ALTER TABLE `user_settings` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `user_signature_assignments`
--

DROP TABLE IF EXISTS `user_signature_assignments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_signature_assignments` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) unsigned NOT NULL,
  `template_id` int(11) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_user_assignment` (`user_id`),
  KEY `idx_template_id` (`template_id`),
  CONSTRAINT `user_signature_assignments_ibfk_1` FOREIGN KEY (`template_id`) REFERENCES `email_signature_templates` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_signature_assignments`
--

LOCK TABLES `user_signature_assignments` WRITE;
/*!40000 ALTER TABLE `user_signature_assignments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `user_signature_assignments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `user_status`
--

DROP TABLE IF EXISTS `user_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_status` (
  `user_id` int(10) unsigned NOT NULL,
  `status` enum('online','away','offline') DEFAULT 'offline',
  `status_message` varchar(255) DEFAULT NULL,
  `last_activity` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`user_id`),
  CONSTRAINT `user_status_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_status`
--

LOCK TABLES `user_status` WRITE;
/*!40000 ALTER TABLE `user_status` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `user_status` VALUES
(1,'online',NULL,'2025-10-26 20:20:23','2025-11-11 00:36:44','2025-11-11 00:36:44'),
(4,'online',NULL,'2025-11-28 13:25:56','2025-11-28 13:25:56','2025-11-28 13:25:56'),
(7,'online',NULL,'2025-11-24 18:21:48','2025-11-24 18:21:48','2025-11-24 18:21:48'),
(8,'online',NULL,'2025-11-14 22:16:08','2025-11-14 22:16:08','2025-11-14 22:16:08'),
(15,'online',NULL,'2025-10-28 16:27:17','2025-11-11 00:36:44','2025-11-11 00:36:44'),
(16,'online',NULL,'2025-10-29 01:54:44','2025-11-11 00:36:44','2025-11-11 00:36:44'),
(17,'online',NULL,'2025-10-30 19:31:21','2025-11-11 00:36:44','2025-11-11 00:36:44'),
(18,'online',NULL,'2025-11-11 11:57:19','2025-11-11 11:57:19','2025-11-11 11:57:19'),
(21,'online',NULL,'2025-11-29 13:37:53','2025-11-29 13:37:53','2025-11-29 13:37:53');
/*!40000 ALTER TABLE `user_status` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `user_todos`
--

DROP TABLE IF EXISTS `user_todos`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_todos` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `is_completed` tinyint(1) DEFAULT 0,
  `priority` enum('low','medium','high','urgent') DEFAULT 'medium',
  `due_date` date DEFAULT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `display_order` int(11) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_completed` (`user_id`,`is_completed`),
  KEY `idx_user_due_date` (`user_id`,`due_date`),
  CONSTRAINT `user_todos_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_todos`
--

LOCK TABLES `user_todos` WRITE;
/*!40000 ALTER TABLE `user_todos` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `user_todos` VALUES
(1,1,'Review Q4 forecast numbers',NULL,1,'high','2025-12-04','2025-12-04 18:40:53',0,'2025-12-03 02:04:30','2025-12-04 18:40:53'),
(2,1,'Approve pending purchase orders',NULL,0,'medium','2025-12-02',NULL,0,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(3,1,'Update CRM opportunities',NULL,0,'medium',NULL,NULL,0,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(4,1,'Build Contract Mfg Agreement Automation',NULL,0,'medium',NULL,NULL,0,'2025-12-04 18:40:50','2025-12-04 18:41:05');
/*!40000 ALTER TABLE `user_todos` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `user_widget_preferences`
--

DROP TABLE IF EXISTS `user_widget_preferences`;
/*!50001 DROP VIEW IF EXISTS `user_widget_preferences`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `user_widget_preferences` AS SELECT
 1 AS `user_id`,
  1 AS `user_name`,
  1 AS `widget_count`,
  1 AS `widgets` */;
SET character_set_client = @saved_cs_client;

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

DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `users` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `role_id` int(10) unsigned NOT NULL,
  `position_id` int(11) DEFAULT NULL,
  `email` varchar(255) NOT NULL,
  `secondary_email` varchar(255) DEFAULT NULL,
  `email_signature` text DEFAULT NULL,
  `email_imap_host` varchar(255) DEFAULT NULL,
  `email_imap_port` int(11) DEFAULT 993,
  `email_imap_encryption` enum('ssl','tls','none') DEFAULT 'ssl',
  `email_imap_username` varchar(255) DEFAULT NULL,
  `email_imap_password` varchar(255) DEFAULT NULL,
  `email_smtp_host` varchar(255) DEFAULT NULL,
  `email_smtp_port` int(11) DEFAULT 587,
  `email_smtp_encryption` enum('ssl','tls','none') DEFAULT 'tls',
  `email_smtp_username` varchar(255) DEFAULT NULL,
  `email_smtp_password` varchar(255) DEFAULT NULL,
  `email_use_system_default` tinyint(1) DEFAULT 1,
  `username` varchar(50) DEFAULT NULL,
  `password` varchar(255) NOT NULL,
  `first_name` varchar(100) NOT NULL,
  `middle_name` varchar(100) DEFAULT NULL,
  `last_name` varchar(100) NOT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `date_of_birth` date DEFAULT NULL,
  `gender` enum('male','female','other') DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `city` varchar(100) DEFAULT NULL,
  `state` varchar(100) DEFAULT NULL,
  `zip_code` varchar(20) DEFAULT NULL,
  `emergency_contact_name` varchar(200) DEFAULT NULL,
  `emergency_contact_phone` varchar(50) DEFAULT NULL,
  `emergency_contact_relationship` varchar(100) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `bio` text DEFAULT NULL COMMENT 'Short bio or about me',
  `hobbies` text DEFAULT NULL COMMENT 'Personal hobbies and interests',
  `skills` text DEFAULT NULL COMMENT 'Professional skills (comma-separated)',
  `interests` text DEFAULT NULL COMMENT 'Professional interests',
  `linkedin_url` varchar(255) DEFAULT NULL,
  `personal_website` varchar(255) DEFAULT NULL,
  `fun_fact` text DEFAULT NULL COMMENT 'Fun fact about yourself',
  `favorite_quote` text DEFAULT NULL,
  `years_of_experience` int(11) DEFAULT NULL,
  `education` text DEFAULT NULL COMMENT 'Educational background',
  `certifications` text DEFAULT NULL COMMENT 'Professional certifications',
  `languages` varchar(255) DEFAULT NULL COMMENT 'Languages spoken',
  `timezone` varchar(50) DEFAULT 'America/New_York',
  `show_in_directory` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'Show profile in employee directory',
  `avatar` varchar(255) DEFAULT NULL,
  `status` enum('active','inactive','suspended') DEFAULT 'active',
  `last_login` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  `mfa_enabled` tinyint(1) DEFAULT 0 COMMENT 'Is MFA enabled for this user',
  `mfa_method` varchar(20) DEFAULT 'email' COMMENT 'MFA method: email, sms, totp',
  `mfa_secret` varchar(255) DEFAULT NULL COMMENT 'TOTP secret for authenticator apps',
  `mfa_phone` varchar(20) DEFAULT NULL COMMENT 'Phone number for SMS OTP',
  `mfa_setup_at` datetime DEFAULT NULL COMMENT 'When MFA was first setup',
  `mfa_last_verified` datetime DEFAULT NULL COMMENT 'Last successful MFA verification',
  `password_reset_token` varchar(255) DEFAULT NULL COMMENT 'Token for password reset',
  `password_reset_expires` datetime DEFAULT NULL COMMENT 'When password reset token expires',
  `must_setup_mfa` tinyint(1) DEFAULT 1 COMMENT 'User must setup MFA on next login',
  `failed_login_attempts` int(11) DEFAULT 0 COMMENT 'Failed login attempt counter',
  `locked_until` datetime DEFAULT NULL COMMENT 'Account locked until this time',
  `email_last_sync` datetime DEFAULT NULL COMMENT 'Last time emails were synced from IMAP server',
  PRIMARY KEY (`id`),
  UNIQUE KEY `email` (`email`),
  UNIQUE KEY `username` (`username`),
  KEY `role_id` (`role_id`),
  KEY `idx_secondary_email` (`secondary_email`),
  KEY `idx_password_reset_token` (`password_reset_token`),
  KEY `idx_locked_until` (`locked_until`),
  KEY `idx_show_in_directory` (`show_in_directory`),
  KEY `idx_users_deleted_at` (`deleted_at`),
  KEY `idx_users_email_last_sync` (`email_last_sync`),
  CONSTRAINT `users_ibfk_1` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `users` VALUES
(1,1,112,'admin@mavrix.one',NULL,'','ipv6.nwpro5.fcomet.com',993,'ssl','erp_system@mavrix.one','xyz8468RPMerkuri123!','',587,'tls','',NULL,0,'admin','$2y$12$9OKyqhylbzpM6I0dzGQFOuMWiybOGfP1iWY2TVk.HocmpbJ6jfmDy','Admin',NULL,'User','906-123-4567',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'America/New_York',1,'/uploads/avatars/avatar_1_1763218250.JPG','active','2025-12-10 20:30:28','2025-11-11 17:51:24','2025-12-10 20:30:34',NULL,0,'totp','EBOKG7YSXNL5IGMHEDIRMU7ZJDB7R6HK',NULL,'2025-11-15 13:36:01',NULL,NULL,NULL,0,0,NULL,'2025-12-10 15:30:34'),
(2,108,1,'brian@mavrix.one',NULL,NULL,NULL,993,'ssl',NULL,NULL,NULL,587,'tls',NULL,NULL,1,'ceo','$2y$12$oGRFYb5c5huwOXdNSinIc.oTZKUDQOK6mmfsk8SAt/lExlvveDW7K','Brian',NULL,'S','',NULL,'male',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'America/New_York',1,NULL,'active','2025-12-02 18:42:43','2025-11-11 17:51:24','2025-12-02 18:42:43',NULL,0,'email',NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL),
(3,110,2,'cfo@mavrix.one',NULL,NULL,NULL,993,'ssl',NULL,NULL,NULL,587,'tls',NULL,NULL,1,'cfo','$2y$12$3Liw1jdi9IqlTK7P7lPLNe.S0C/fWvLyeNGv4Puh0pSOZ/BeJa5xW','C',NULL,'FO','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'America/New_York',1,NULL,'active',NULL,'2025-11-11 17:51:24','2025-11-15 18:28:16',NULL,0,'email',NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL),
(4,111,4,'rick@mavrix.one',NULL,NULL,'ipv6.nwpro5.fcomet.com',993,'ssl','rick@mavrix.one','z8468RPMerkuri123!',NULL,587,'tls',NULL,NULL,1,'cto','$2y$12$QK7QTQmaUfvh63mSehi5teLXSBag23BW53VoQZhfwK2uBU/5NXhtG','Rick',NULL,'M','5857979473',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'America/New_York',1,'/uploads/avatars/avatar_4_1764856960.jpeg','active','2025-12-10 12:45:13','2025-11-11 17:51:24','2025-12-10 12:52:17',NULL,0,'email',NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2025-12-10 07:52:17'),
(5,134,75,'test@mavrix.one',NULL,NULL,NULL,993,'ssl',NULL,NULL,NULL,587,'tls',NULL,NULL,1,'manager','$2y$12$1Q98Y1jJUUjgPpxi3uSKuuVOHXSAMuWZpfIXaljGgldgUfhC0x2Qy','Test',NULL,'Manager','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'America/New_York',1,NULL,'active','2025-12-02 22:03:17','2025-11-11 17:51:24','2025-12-02 22:03:17',NULL,0,'email',NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL),
(6,121,NULL,'accountant@mavrix.one',NULL,NULL,NULL,993,'ssl',NULL,NULL,NULL,587,'tls',NULL,NULL,1,'accountant','$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi','Staff',NULL,'Accountant',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'America/New_York',1,NULL,'active',NULL,'2025-11-11 17:51:24','2025-11-15 18:02:52',NULL,0,'email',NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL),
(7,92,110,'nathan@mavrix.one',NULL,NULL,NULL,993,'ssl',NULL,NULL,NULL,587,'tls',NULL,NULL,1,NULL,'$2y$12$WeQvhHu564z55w7U8cZZd.lE4Dz9mxQXCLojLtDbHMYHdE9riEoG2','Nathan',NULL,'S','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'America/New_York',1,NULL,'active','2025-11-24 18:21:37','2025-11-14 21:00:43','2025-11-24 18:21:37',NULL,0,'email',NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL),
(8,81,114,'tony@mavrix.one',NULL,NULL,NULL,993,'ssl',NULL,NULL,NULL,587,'tls',NULL,NULL,1,NULL,'$2y$12$Qjoa.iGtc2gDzZb5.rG/wukTgLtH7uE6QbJBvqTFRuGC6ODBd9S/e','Tony',NULL,'A',NULL,NULL,'male',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'America/New_York',1,NULL,'active','2025-11-15 16:01:16','2025-11-14 21:01:16','2025-11-15 18:24:56',NULL,0,'email',NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL),
(21,116,16,'leslie@mavrix.one',NULL,NULL,NULL,993,'ssl',NULL,NULL,NULL,587,'tls',NULL,NULL,1,NULL,'$2y$12$d0GslpnxQ/zZTF.uyUnyzOUelFQgHV4B8AeC0mlTW7zcZGoztVCIa','Leslie',NULL,'S',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'America/New_York',1,NULL,'active','2025-11-30 01:27:40','2025-11-15 23:53:17','2025-11-30 01:27:40',NULL,0,'email',NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL);
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `vendor_credit_applications`
--

DROP TABLE IF EXISTS `vendor_credit_applications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `vendor_credit_applications` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `credit_id` int(10) unsigned NOT NULL,
  `bill_id` int(11) DEFAULT NULL,
  `payment_id` int(10) unsigned DEFAULT NULL,
  `amount_applied` decimal(15,2) NOT NULL,
  `applied_at` timestamp NULL DEFAULT current_timestamp(),
  `notes` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_credit` (`credit_id`),
  KEY `idx_bill` (`bill_id`),
  KEY `idx_payment` (`payment_id`),
  CONSTRAINT `vendor_credit_applications_ibfk_1` FOREIGN KEY (`credit_id`) REFERENCES `vendor_credits` (`id`) ON DELETE CASCADE,
  CONSTRAINT `vendor_credit_applications_ibfk_2` FOREIGN KEY (`bill_id`) REFERENCES `purchase_bills` (`id`),
  CONSTRAINT `vendor_credit_applications_ibfk_3` FOREIGN KEY (`payment_id`) REFERENCES `vendor_payments` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vendor_credit_applications`
--

LOCK TABLES `vendor_credit_applications` WRITE;
/*!40000 ALTER TABLE `vendor_credit_applications` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `vendor_credit_applications` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `vendor_credits`
--

DROP TABLE IF EXISTS `vendor_credits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `vendor_credits` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `credit_number` varchar(50) NOT NULL,
  `vendor_id` int(10) unsigned NOT NULL,
  `credit_date` date NOT NULL,
  `credit_amount` decimal(15,2) NOT NULL,
  `amount_used` decimal(15,2) DEFAULT 0.00,
  `balance` decimal(15,2) GENERATED ALWAYS AS (`credit_amount` - `amount_used`) STORED,
  `reason` text DEFAULT NULL,
  `reference` varchar(100) DEFAULT NULL,
  `status` enum('active','fully_applied','expired','voided') DEFAULT 'active',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `created_by` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `credit_number` (`credit_number`),
  KEY `created_by` (`created_by`),
  KEY `idx_vendor` (`vendor_id`),
  KEY `idx_status` (`status`),
  KEY `idx_balance` (`balance`),
  CONSTRAINT `vendor_credits_ibfk_1` FOREIGN KEY (`vendor_id`) REFERENCES `suppliers` (`id`),
  CONSTRAINT `vendor_credits_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vendor_credits`
--

LOCK TABLES `vendor_credits` WRITE;
/*!40000 ALTER TABLE `vendor_credits` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `vendor_credits` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `vendor_payment_applications`
--

DROP TABLE IF EXISTS `vendor_payment_applications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `vendor_payment_applications` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `payment_id` int(10) unsigned NOT NULL,
  `bill_id` int(11) NOT NULL,
  `amount_applied` decimal(15,2) NOT NULL,
  `discount_taken` decimal(15,2) DEFAULT 0.00,
  `applied_at` timestamp NULL DEFAULT current_timestamp(),
  `notes` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_payment_bill` (`payment_id`,`bill_id`),
  KEY `idx_payment` (`payment_id`),
  KEY `idx_bill` (`bill_id`),
  CONSTRAINT `vendor_payment_applications_ibfk_1` FOREIGN KEY (`payment_id`) REFERENCES `vendor_payments` (`id`) ON DELETE CASCADE,
  CONSTRAINT `vendor_payment_applications_ibfk_2` FOREIGN KEY (`bill_id`) REFERENCES `purchase_bills` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vendor_payment_applications`
--

LOCK TABLES `vendor_payment_applications` WRITE;
/*!40000 ALTER TABLE `vendor_payment_applications` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `vendor_payment_applications` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `vendor_payments`
--

DROP TABLE IF EXISTS `vendor_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `vendor_payments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `payment_number` varchar(50) NOT NULL,
  `vendor_id` int(10) unsigned NOT NULL,
  `payment_date` date NOT NULL,
  `payment_method` enum('check','ach','wire','credit_card','cash','other') DEFAULT 'check',
  `check_number` varchar(50) DEFAULT NULL,
  `bank_account_id` int(10) unsigned DEFAULT NULL,
  `batch_id` int(10) unsigned DEFAULT NULL,
  `total_amount` decimal(15,2) NOT NULL DEFAULT 0.00,
  `currency` varchar(3) DEFAULT 'USD',
  `exchange_rate` decimal(15,6) DEFAULT 1.000000,
  `memo` text DEFAULT NULL,
  `reference` varchar(100) DEFAULT NULL,
  `status` enum('draft','printed','sent','cleared','voided','reconciled') DEFAULT 'draft',
  `journal_entry_id` int(10) unsigned DEFAULT NULL,
  `void_date` date DEFAULT NULL,
  `void_reason` text DEFAULT NULL,
  `printed_at` timestamp NULL DEFAULT NULL,
  `printed_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_by` int(10) unsigned DEFAULT NULL,
  `updated_by` int(10) unsigned DEFAULT NULL,
  `location_id` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `payment_number` (`payment_number`),
  KEY `bank_account_id` (`bank_account_id`),
  KEY `created_by` (`created_by`),
  KEY `updated_by` (`updated_by`),
  KEY `printed_by` (`printed_by`),
  KEY `idx_vendor` (`vendor_id`),
  KEY `idx_payment_date` (`payment_date`),
  KEY `idx_status` (`status`),
  KEY `idx_check_number` (`check_number`),
  KEY `idx_payment_method` (`payment_method`),
  KEY `fk_payment_batch` (`batch_id`),
  KEY `fk_payment_journal` (`journal_entry_id`),
  CONSTRAINT `fk_payment_batch` FOREIGN KEY (`batch_id`) REFERENCES `payment_batches` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_payment_journal` FOREIGN KEY (`journal_entry_id`) REFERENCES `journal_entries` (`id`) ON DELETE SET NULL,
  CONSTRAINT `vendor_payments_ibfk_1` FOREIGN KEY (`vendor_id`) REFERENCES `suppliers` (`id`),
  CONSTRAINT `vendor_payments_ibfk_2` FOREIGN KEY (`bank_account_id`) REFERENCES `bank_accounts` (`id`),
  CONSTRAINT `vendor_payments_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `vendor_payments_ibfk_4` FOREIGN KEY (`updated_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `vendor_payments_ibfk_5` FOREIGN KEY (`printed_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vendor_payments`
--

LOCK TABLES `vendor_payments` WRITE;
/*!40000 ALTER TABLE `vendor_payments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `vendor_payments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `vw_permission_groups_hierarchy`
--

DROP TABLE IF EXISTS `vw_permission_groups_hierarchy`;
/*!50001 DROP VIEW IF EXISTS `vw_permission_groups_hierarchy`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `vw_permission_groups_hierarchy` AS SELECT
 1 AS `id`,
  1 AS `name`,
  1 AS `parent_id`,
  1 AS `display_order`,
  1 AS `icon`,
  1 AS `color`,
  1 AS `description`,
  1 AS `is_system`,
  1 AS `path`,
  1 AS `level`,
  1 AS `permission_count` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `warehouses`
--

DROP TABLE IF EXISTS `warehouses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `warehouses` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `code` varchar(50) NOT NULL,
  `address` text DEFAULT NULL,
  `city` varchar(100) DEFAULT NULL,
  `state` varchar(100) DEFAULT NULL,
  `zip` varchar(20) DEFAULT NULL,
  `country` varchar(100) DEFAULT NULL,
  `manager_id` int(10) unsigned DEFAULT NULL,
  `status` enum('active','inactive') DEFAULT 'active',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `code` (`code`),
  KEY `manager_id` (`manager_id`),
  KEY `idx_deleted_at` (`deleted_at`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `warehouses`
--

LOCK TABLES `warehouses` WRITE;
/*!40000 ALTER TABLE `warehouses` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `warehouses` VALUES
(1,'Main Warehouse','WH-MAIN','1000 Warehouse Blvd','Dallas','TX','75201','USA',NULL,'active','2025-11-04 19:46:54','2025-11-11 00:36:47',NULL),
(2,'West Coast Facility','WH-WEST','2000 Pacific Ave','San Diego','CA','92101','USA',NULL,'active','2025-11-04 19:46:54','2025-11-11 00:36:47',NULL);
/*!40000 ALTER TABLE `warehouses` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `widget_cache`
--

DROP TABLE IF EXISTS `widget_cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `widget_cache` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `widget_type` varchar(50) NOT NULL,
  `user_id` int(10) unsigned DEFAULT NULL COMMENT 'NULL for global cache',
  `cache_key` varchar(255) NOT NULL COMMENT 'Unique cache identifier',
  `data` longtext NOT NULL COMMENT 'Cached widget data (JSON)',
  `expires_at` timestamp NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_cache_key` (`cache_key`),
  KEY `idx_widget_user` (`widget_type`,`user_id`),
  KEY `idx_expires` (`expires_at`),
  KEY `user_id` (`user_id`),
  CONSTRAINT `widget_cache_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Cache for widget data to improve performance';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `widget_cache`
--

LOCK TABLES `widget_cache` WRITE;
/*!40000 ALTER TABLE `widget_cache` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `widget_cache` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `widget_templates`
--

DROP TABLE IF EXISTS `widget_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `widget_templates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL COMMENT 'Template name',
  `description` text DEFAULT NULL,
  `widget_types` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT 'Array of widget types in this template' CHECK (json_valid(`widget_types`)),
  `is_public` tinyint(1) DEFAULT 0 COMMENT 'Available to all users',
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_public` (`is_public`),
  KEY `idx_created_by` (`created_by`),
  CONSTRAINT `widget_templates_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Dashboard widget layout templates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `widget_templates`
--

LOCK TABLES `widget_templates` WRITE;
/*!40000 ALTER TABLE `widget_templates` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `widget_templates` VALUES
(1,'Executive Dashboard','High-level overview for executives','[\"revenue_chart\", \"kpi_summary\", \"sales_trend\", \"outstanding_invoices\"]',1,NULL,'2025-11-26 14:37:48','2025-11-26 14:37:48'),
(2,'Sales Dashboard','Sales team focused dashboard','[\"sales_trend\", \"recent_orders\", \"top_customers\", \"sales_pipeline\"]',1,NULL,'2025-11-26 14:37:48','2025-11-26 14:37:48'),
(3,'Operations Dashboard','Operations and inventory focused','[\"work_orders_status\", \"inventory_alerts\", \"production_schedule\", \"recent_shipments\"]',1,NULL,'2025-11-26 14:37:48','2025-11-26 14:37:48'),
(4,'Finance Dashboard','Financial metrics and reports','[\"revenue_chart\", \"outstanding_invoices\", \"cash_flow\", \"expense_summary\"]',1,NULL,'2025-11-26 14:37:48','2025-11-26 14:37:48');
/*!40000 ALTER TABLE `widget_templates` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `widget_usage_stats`
--

DROP TABLE IF EXISTS `widget_usage_stats`;
/*!50001 DROP VIEW IF EXISTS `widget_usage_stats`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `widget_usage_stats` AS SELECT
 1 AS `widget_type`,
  1 AS `user_count`,
  1 AS `visibility_percentage`,
  1 AS `total_instances` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `work_order_equipment`
--

DROP TABLE IF EXISTS `work_order_equipment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `work_order_equipment` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `work_order_id` int(10) unsigned NOT NULL,
  `equipment_id` int(10) unsigned NOT NULL,
  `scheduled_start` datetime NOT NULL,
  `scheduled_end` datetime NOT NULL,
  `actual_start` datetime DEFAULT NULL,
  `actual_end` datetime DEFAULT NULL,
  `status` enum('scheduled','in_progress','completed','cancelled') DEFAULT 'scheduled',
  `units_assigned` int(11) NOT NULL COMMENT 'Units to produce on this equipment',
  `units_completed` int(11) DEFAULT 0,
  `setup_time_hours` decimal(5,2) DEFAULT 0.00,
  `run_time_hours` decimal(8,2) DEFAULT 0.00,
  `notes` text DEFAULT NULL,
  `assigned_at` timestamp NULL DEFAULT current_timestamp(),
  `assigned_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_wo_equipment_schedule` (`work_order_id`,`equipment_id`,`scheduled_start`),
  KEY `work_order_id` (`work_order_id`),
  KEY `equipment_id` (`equipment_id`),
  KEY `status` (`status`),
  KEY `scheduled_start` (`scheduled_start`),
  KEY `assigned_by` (`assigned_by`),
  KEY `idx_equipment_schedule` (`equipment_id`,`scheduled_start`,`scheduled_end`,`status`),
  CONSTRAINT `work_order_equipment_ibfk_1` FOREIGN KEY (`work_order_id`) REFERENCES `work_orders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `work_order_equipment_ibfk_2` FOREIGN KEY (`equipment_id`) REFERENCES `equipment` (`id`) ON DELETE CASCADE,
  CONSTRAINT `work_order_equipment_ibfk_3` FOREIGN KEY (`assigned_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Tracks which equipment is assigned to which work orders';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `work_order_equipment`
--

LOCK TABLES `work_order_equipment` WRITE;
/*!40000 ALTER TABLE `work_order_equipment` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `work_order_equipment` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `work_order_equipment_view`
--

DROP TABLE IF EXISTS `work_order_equipment_view`;
/*!50001 DROP VIEW IF EXISTS `work_order_equipment_view`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `work_order_equipment_view` AS SELECT
 1 AS `assignment_id`,
  1 AS `work_order_id`,
  1 AS `wo_number`,
  1 AS `wo_status`,
  1 AS `priority`,
  1 AS `wo_quantity`,
  1 AS `wo_completed`,
  1 AS `product_name`,
  1 AS `product_sku`,
  1 AS `equipment_id`,
  1 AS `equipment_name`,
  1 AS `asset_tag`,
  1 AS `equipment_status`,
  1 AS `utilization_rate`,
  1 AS `equipment_line_name`,
  1 AS `business_line_name`,
  1 AS `scheduled_start`,
  1 AS `scheduled_end`,
  1 AS `actual_start`,
  1 AS `actual_end`,
  1 AS `assignment_status`,
  1 AS `units_assigned`,
  1 AS `units_completed`,
  1 AS `setup_time_hours`,
  1 AS `run_time_hours`,
  1 AS `scheduled_hours`,
  1 AS `actual_hours`,
  1 AS `completion_percentage`,
  1 AS `assigned_at`,
  1 AS `updated_at` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `work_orders`
--

DROP TABLE IF EXISTS `work_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `work_orders` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `wo_number` varchar(50) NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `bom_id` int(10) unsigned DEFAULT NULL,
  `business_line_id` int(10) unsigned DEFAULT NULL,
  `equipment_line_id` int(10) unsigned DEFAULT NULL,
  `quantity` int(11) NOT NULL,
  `quantity_completed` int(11) DEFAULT 0,
  `start_date` date DEFAULT NULL,
  `actual_start_date` datetime DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `actual_end_date` datetime DEFAULT NULL,
  `status` enum('planned','in_progress','completed','cancelled') DEFAULT 'planned',
  `priority` enum('low','medium','high','urgent') DEFAULT 'medium',
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  `last_notified_at` datetime DEFAULT NULL COMMENT 'Last due date reminder sent',
  `notification_level` varchar(20) DEFAULT NULL COMMENT 'Current notification level: 1day, due, overdue',
  PRIMARY KEY (`id`),
  UNIQUE KEY `wo_number` (`wo_number`),
  KEY `product_id` (`product_id`),
  KEY `bom_id` (`bom_id`),
  KEY `created_by` (`created_by`),
  KEY `business_line_id` (`business_line_id`),
  KEY `equipment_line_id` (`equipment_line_id`),
  KEY `status_priority` (`status`,`priority`),
  KEY `idx_wo_status_dates` (`status`,`start_date`,`end_date`),
  KEY `idx_workorders_due_notification` (`end_date`,`status`,`last_notified_at`),
  KEY `idx_deleted_at` (`deleted_at`),
  CONSTRAINT `fk_wo_business_line` FOREIGN KEY (`business_line_id`) REFERENCES `business_lines` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_wo_equipment_line` FOREIGN KEY (`equipment_line_id`) REFERENCES `equipment_lines` (`id`) ON DELETE SET NULL,
  CONSTRAINT `work_orders_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`),
  CONSTRAINT `work_orders_ibfk_2` FOREIGN KEY (`bom_id`) REFERENCES `bill_of_materials` (`id`) ON DELETE SET NULL,
  CONSTRAINT `work_orders_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `work_orders`
--

LOCK TABLES `work_orders` WRITE;
/*!40000 ALTER TABLE `work_orders` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `work_orders` VALUES
(1,'WO-TEST-1D-10',3,NULL,NULL,NULL,100,0,'2025-11-14',NULL,'2025-11-15',NULL,'planned','medium',NULL,1,'2025-11-14 20:01:18','2025-11-14 20:02:03',NULL,'2025-11-14 15:02:03','1day'),
(2,'WO-TEST-DUE-219',3,NULL,NULL,NULL,150,0,'2025-11-11',NULL,'2025-11-14',NULL,'planned','medium',NULL,1,'2025-11-14 20:01:18','2025-11-14 20:02:03',NULL,'2025-11-14 15:02:03','due'),
(3,'WO-TEST-OVER-64',3,NULL,NULL,NULL,200,0,'2025-11-04',NULL,'2025-11-11',NULL,'planned','medium',NULL,1,'2025-11-14 20:01:18','2025-11-14 20:02:03',NULL,'2025-11-14 15:02:03','overdue');
/*!40000 ALTER TABLE `work_orders` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Final view structure for view `audit_log_stats`
--

/*!50001 DROP VIEW IF EXISTS `audit_log_stats`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `audit_log_stats` AS select cast(`audit_logs`.`created_at` as date) AS `date`,`audit_logs`.`entity_type` AS `model`,`audit_logs`.`action` AS `action`,count(0) AS `count`,count(distinct `audit_logs`.`user_id`) AS `unique_users` from `audit_logs` where `audit_logs`.`created_at` >= current_timestamp() - interval 30 day group by cast(`audit_logs`.`created_at` as date),`audit_logs`.`entity_type`,`audit_logs`.`action` order by cast(`audit_logs`.`created_at` as date) desc,count(0) desc */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `business_line_capacity_summary`
--

/*!50001 DROP VIEW IF EXISTS `business_line_capacity_summary`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`brickwal`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `business_line_capacity_summary` AS select `bl`.`id` AS `business_line_id`,`bl`.`name` AS `business_line_name`,`bl`.`code` AS `business_line_code`,count(distinct `el`.`id`) AS `total_equipment_lines`,count(`e`.`id`) AS `total_equipment`,sum(case when `e`.`status` = 'operational' then 1 else 0 end) AS `operational_equipment`,round(avg(`e`.`utilization_rate`),2) AS `avg_utilization_rate`,round(sum(coalesce(`e`.`capacity_per_hour`,`el`.`capacity_per_hour`,`e`.`rated_capacity_per_hour`) * `e`.`available_hours_per_day` * coalesce(`e`.`efficiency_factor`,`el`.`efficiency_factor`,0.85)),2) AS `total_daily_capacity`,round(sum(coalesce(`e`.`capacity_per_hour`,`el`.`capacity_per_hour`,`e`.`rated_capacity_per_hour`) * `e`.`available_hours_per_day` * coalesce(`e`.`efficiency_factor`,`el`.`efficiency_factor`,0.85) * (1 - `e`.`utilization_rate` / 100)),2) AS `available_daily_capacity` from ((`business_lines` `bl` left join `equipment` `e` on(`e`.`business_line_id` = `bl`.`id` and `e`.`status` <> 'retired')) left join `equipment_lines` `el` on(`e`.`equipment_line_id` = `el`.`id`)) where `bl`.`status` = 'active' group by `bl`.`id`,`bl`.`name`,`bl`.`code` */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `equipment_benchmarking_view`
--

/*!50001 DROP VIEW IF EXISTS `equipment_benchmarking_view`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `equipment_benchmarking_view` AS select `e`.`id` AS `current_equipment_id`,`e`.`name` AS `current_equipment_name`,`e`.`asset_tag` AS `asset_tag`,`el`.`name` AS `equipment_line`,`e`.`rated_capacity_per_hour` AS `current_capacity`,`e`.`efficiency_factor` AS `current_efficiency`,`e`.`scrap_rate_percent` AS `current_scrap_rate`,`e`.`avg_unplanned_downtime_hours_per_year` AS `current_downtime`,`emr`.`id` AS `market_research_id`,`emr`.`equipment_name` AS `market_equipment_name`,`emr`.`rated_capacity_per_hour` AS `market_capacity`,`emr`.`efficiency_rating` AS `market_efficiency`,`emr`.`typical_scrap_rate_percent` AS `market_scrap_rate`,(`emr`.`rated_capacity_per_hour` - `e`.`rated_capacity_per_hour`) / `e`.`rated_capacity_per_hour` * 100 AS `capacity_gap_percent`,(`emr`.`efficiency_rating` - `e`.`efficiency_factor`) / `e`.`efficiency_factor` * 100 AS `efficiency_gap_percent`,`e`.`scrap_rate_percent` - `emr`.`typical_scrap_rate_percent` AS `scrap_rate_gap`,`ev`.`vendor_name` AS `vendor_name`,`emr`.`purchase_price` AS `upgrade_cost` from (((`equipment` `e` left join `equipment_lines` `el` on(`e`.`equipment_line_id` = `el`.`id`)) join `equipment_market_research` `emr`) left join `equipment_vendors` `ev` on(`emr`.`vendor_id` = `ev`.`id`)) where `e`.`status` = 'operational' and `emr`.`equipment_type` = `el`.`name` order by (`emr`.`rated_capacity_per_hour` - `e`.`rated_capacity_per_hour`) / `e`.`rated_capacity_per_hour` * 100 desc */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `equipment_capacity_view`
--

/*!50001 DROP VIEW IF EXISTS `equipment_capacity_view`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `equipment_capacity_view` AS select `e`.`id` AS `equipment_id`,`e`.`asset_tag` AS `asset_tag`,`e`.`name` AS `equipment_name`,`e`.`status` AS `status`,`e`.`serial_number` AS `serial_number`,`e`.`manufacturer` AS `manufacturer`,`e`.`model` AS `model`,`e`.`business_line_id` AS `business_line_id`,`bl`.`name` AS `business_line_name`,`e`.`equipment_line_id` AS `equipment_line_id`,`el`.`name` AS `equipment_line_name`,`el`.`code` AS `equipment_line_code`,`l`.`id` AS `location_id`,`l`.`name` AS `location_name`,`e`.`rated_capacity_per_hour` AS `rated_capacity_per_hour`,`e`.`actual_output_per_hour` AS `actual_output_per_hour`,coalesce(`e`.`efficiency_factor`,0.85) AS `efficiency_factor`,`e`.`available_hours_per_day` AS `available_hours_per_day`,`e`.`operating_days_per_year` AS `operating_days_per_year`,`e`.`operating_hours_per_day` AS `operating_hours_per_day`,`e`.`shift_configuration` AS `shift_configuration`,`e`.`setup_time_hours` AS `setup_time_hours`,`e`.`operators_per_machine` AS `operators_per_machine`,`e`.`skill_level_required` AS `skill_level_required`,`e`.`setup_operators_required` AS `setup_operators_required`,`e`.`supervisor_ratio` AS `supervisor_ratio`,`e`.`planned_maintenance_hours_per_year` AS `planned_maintenance_hours_per_year`,`e`.`avg_unplanned_downtime_hours_per_year` AS `avg_unplanned_downtime_hours_per_year`,`e`.`ramp_up_time_hours` AS `ramp_up_time_hours`,`e`.`ramp_down_time_hours` AS `ramp_down_time_hours`,`e`.`quality_control_time_percent` AS `quality_control_time_percent`,`e`.`scrap_rate_percent` AS `scrap_rate_percent`,`e`.`demand_spike_buffer_percent` AS `demand_spike_buffer_percent`,`e`.`overall_equipment_effectiveness` AS `overall_equipment_effectiveness`,`e`.`changeover_time_hours` AS `changeover_time_hours`,`e`.`min_batch_size` AS `min_batch_size`,`e`.`max_batch_size` AS `max_batch_size`,`e`.`power_consumption_kw` AS `power_consumption_kw`,`e`.`energy_cost_per_hour` AS `energy_cost_per_hour`,`e`.`operating_cost_per_hour` AS `operating_cost_per_hour`,`e`.`annual_demand_units` AS `annual_demand_units`,round(`e`.`rated_capacity_per_hour` * coalesce(`e`.`efficiency_factor`,0.85) * (1 - `e`.`scrap_rate_percent` / 100),2) AS `adjusted_production_rate`,round(`e`.`operating_hours_per_day` - (`e`.`planned_maintenance_hours_per_year` + `e`.`avg_unplanned_downtime_hours_per_year`) / `e`.`operating_days_per_year` - `e`.`operating_hours_per_day` * `e`.`quality_control_time_percent` / 100 - (`e`.`ramp_up_time_hours` + `e`.`ramp_down_time_hours`),2) AS `effective_hours_available_per_day`,round((`e`.`operating_hours_per_day` - (`e`.`planned_maintenance_hours_per_year` + `e`.`avg_unplanned_downtime_hours_per_year`) / `e`.`operating_days_per_year` - `e`.`operating_hours_per_day` * `e`.`quality_control_time_percent` / 100 - (`e`.`ramp_up_time_hours` + `e`.`ramp_down_time_hours`)) * `e`.`operating_days_per_year`,2) AS `effective_hours_available_per_year`,round(`e`.`rated_capacity_per_hour` * coalesce(`e`.`efficiency_factor`,0.85) * (1 - `e`.`scrap_rate_percent` / 100) * (`e`.`operating_hours_per_day` - (`e`.`planned_maintenance_hours_per_year` + `e`.`avg_unplanned_downtime_hours_per_year`) / `e`.`operating_days_per_year` - `e`.`operating_hours_per_day` * `e`.`quality_control_time_percent` / 100 - (`e`.`ramp_up_time_hours` + `e`.`ramp_down_time_hours`)),2) AS `daily_capacity_units`,round(`e`.`rated_capacity_per_hour` * coalesce(`e`.`efficiency_factor`,0.85) * (1 - `e`.`scrap_rate_percent` / 100) * ((`e`.`operating_hours_per_day` - (`e`.`planned_maintenance_hours_per_year` + `e`.`avg_unplanned_downtime_hours_per_year`) / `e`.`operating_days_per_year` - `e`.`operating_hours_per_day` * `e`.`quality_control_time_percent` / 100 - (`e`.`ramp_up_time_hours` + `e`.`ramp_down_time_hours`)) * `e`.`operating_days_per_year`),2) AS `annual_capacity_units`,`e`.`utilization_rate` AS `utilization_rate`,round(`e`.`rated_capacity_per_hour` * coalesce(`e`.`efficiency_factor`,0.85) * (1 - `e`.`scrap_rate_percent` / 100) * (`e`.`operating_hours_per_day` - (`e`.`planned_maintenance_hours_per_year` + `e`.`avg_unplanned_downtime_hours_per_year`) / `e`.`operating_days_per_year` - `e`.`operating_hours_per_day` * `e`.`quality_control_time_percent` / 100 - (`e`.`ramp_up_time_hours` + `e`.`ramp_down_time_hours`)) * (1 - `e`.`utilization_rate` / 100),2) AS `available_daily_capacity`,round(case when `e`.`operating_days_per_year` > 0 then `e`.`annual_demand_units` / `e`.`operating_days_per_year` else 0 end,2) AS `daily_demand_units`,round(case when `e`.`rated_capacity_per_hour` * coalesce(`e`.`efficiency_factor`,0.85) * (1 - `e`.`scrap_rate_percent` / 100) > 0 then `e`.`annual_demand_units` / `e`.`operating_days_per_year` / (`e`.`rated_capacity_per_hour` * coalesce(`e`.`efficiency_factor`,0.85) * (1 - `e`.`scrap_rate_percent` / 100)) else 0 end,2) AS `hours_required_per_day`,ceiling(case when `e`.`operating_hours_per_day` - (`e`.`planned_maintenance_hours_per_year` + `e`.`avg_unplanned_downtime_hours_per_year`) / `e`.`operating_days_per_year` - `e`.`operating_hours_per_day` * `e`.`quality_control_time_percent` / 100 - (`e`.`ramp_up_time_hours` + `e`.`ramp_down_time_hours`) > 0 then `e`.`annual_demand_units` / `e`.`operating_days_per_year` / (`e`.`rated_capacity_per_hour` * coalesce(`e`.`efficiency_factor`,0.85) * (1 - `e`.`scrap_rate_percent` / 100)) / (`e`.`operating_hours_per_day` - (`e`.`planned_maintenance_hours_per_year` + `e`.`avg_unplanned_downtime_hours_per_year`) / `e`.`operating_days_per_year` - `e`.`operating_hours_per_day` * `e`.`quality_control_time_percent` / 100 - (`e`.`ramp_up_time_hours` + `e`.`ramp_down_time_hours`)) else 0 end) AS `machines_required`,round(ceiling(case when `e`.`operating_hours_per_day` - (`e`.`planned_maintenance_hours_per_year` + `e`.`avg_unplanned_downtime_hours_per_year`) / `e`.`operating_days_per_year` - `e`.`operating_hours_per_day` * `e`.`quality_control_time_percent` / 100 - (`e`.`ramp_up_time_hours` + `e`.`ramp_down_time_hours`) > 0 then `e`.`annual_demand_units` / `e`.`operating_days_per_year` / (`e`.`rated_capacity_per_hour` * coalesce(`e`.`efficiency_factor`,0.85) * (1 - `e`.`scrap_rate_percent` / 100)) / (`e`.`operating_hours_per_day` - (`e`.`planned_maintenance_hours_per_year` + `e`.`avg_unplanned_downtime_hours_per_year`) / `e`.`operating_days_per_year` - `e`.`operating_hours_per_day` * `e`.`quality_control_time_percent` / 100 - (`e`.`ramp_up_time_hours` + `e`.`ramp_down_time_hours`)) else 0 end) * `e`.`operators_per_machine`,2) AS `operators_required`,case when `e`.`status` <> 'operational' then 'Unavailable' when `e`.`utilization_rate` >= 95 then 'At Capacity' when `e`.`utilization_rate` >= 80 then 'Limited' else 'Available' end AS `availability_status`,`e`.`created_at` AS `created_at`,`e`.`updated_at` AS `updated_at` from (((`equipment` `e` left join `business_lines` `bl` on(`e`.`business_line_id` = `bl`.`id`)) left join `equipment_lines` `el` on(`e`.`equipment_line_id` = `el`.`id`)) left join `locations` `l` on(`bl`.`location_id` = `l`.`id`)) where `e`.`status` <> 'retired' */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `equipment_line_capacity_summary`
--

/*!50001 DROP VIEW IF EXISTS `equipment_line_capacity_summary`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`brickwal`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `equipment_line_capacity_summary` AS select `el`.`id` AS `equipment_line_id`,`el`.`name` AS `equipment_line_name`,`el`.`code` AS `equipment_line_code`,`el`.`asset_number` AS `equipment_line_asset_number`,`el`.`capacity_per_hour` AS `line_capacity_per_hour`,`el`.`efficiency_factor` AS `line_efficiency_factor`,`bl`.`id` AS `business_line_id`,`bl`.`name` AS `business_line_name`,count(`e`.`id`) AS `total_equipment`,sum(case when `e`.`status` = 'operational' then 1 else 0 end) AS `operational_equipment`,round(avg(`e`.`utilization_rate`),2) AS `avg_utilization_rate`,round(sum(coalesce(`e`.`capacity_per_hour`,`el`.`capacity_per_hour`,`e`.`rated_capacity_per_hour`) * `e`.`available_hours_per_day` * coalesce(`e`.`efficiency_factor`,`el`.`efficiency_factor`,0.85)),2) AS `total_daily_capacity`,round(sum(coalesce(`e`.`capacity_per_hour`,`el`.`capacity_per_hour`,`e`.`rated_capacity_per_hour`) * `e`.`available_hours_per_day` * coalesce(`e`.`efficiency_factor`,`el`.`efficiency_factor`,0.85) * (1 - `e`.`utilization_rate` / 100)),2) AS `available_daily_capacity` from ((`equipment_lines` `el` left join `equipment` `e` on(`e`.`equipment_line_id` = `el`.`id` and `e`.`status` <> 'retired')) left join `business_lines` `bl` on(`el`.`business_line_id` = `bl`.`id`)) where `el`.`status` = 'active' group by `el`.`id`,`el`.`name`,`el`.`code`,`el`.`asset_number`,`el`.`capacity_per_hour`,`el`.`efficiency_factor`,`bl`.`id`,`bl`.`name` */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `forecast_equipment_capacity_view`
--

/*!50001 DROP VIEW IF EXISTS `forecast_equipment_capacity_view`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `forecast_equipment_capacity_view` AS select `pfc`.`id` AS `config_id`,`pfc`.`assumption_set_id` AS `assumption_set_id`,`pfc`.`product_id` AS `product_id`,`p`.`name` AS `product_name`,`p`.`sku` AS `sku`,`pfc`.`primary_equipment_id` AS `primary_equipment_id`,`e`.`name` AS `equipment_name`,`e`.`asset_tag` AS `asset_tag`,`el`.`name` AS `equipment_line_name`,`pfc`.`production_rate_per_hour` AS `production_rate_per_hour`,`pfc`.`production_hours_per_unit` AS `production_hours_per_unit`,`pfc`.`machines_required` AS `machines_required`,`e`.`annual_demand_units` AS `equipment_annual_demand`,`e`.`operating_days_per_year` AS `operating_days_per_year`,`e`.`operating_hours_per_day` AS `operating_hours_per_day`,coalesce(`e`.`efficiency_factor`,0.85) AS `efficiency_factor`,`e`.`scrap_rate_percent` AS `scrap_rate_percent`,`e`.`utilization_rate` AS `current_utilization_pct`,`pfc`.`equipment_labor_cost_per_unit` AS `equipment_labor_cost_per_unit`,`pfc`.`equipment_energy_cost_per_unit` AS `equipment_energy_cost_per_unit`,`pfc`.`equipment_operating_cost_per_unit` AS `equipment_operating_cost_per_unit`,`pfc`.`equipment_labor_cost_per_unit` + `pfc`.`equipment_energy_cost_per_unit` + `pfc`.`equipment_operating_cost_per_unit` AS `total_equipment_cost_per_unit`,`pfc`.`capacity_constraint_flag` AS `capacity_constraint_flag`,`pfc`.`capital_investment_required` AS `capital_investment_required`,round(`e`.`rated_capacity_per_hour` * coalesce(`e`.`efficiency_factor`,0.85) * (1 - `e`.`scrap_rate_percent` / 100),2) AS `adjusted_production_rate`,round(`e`.`operating_hours_per_day` - (`e`.`planned_maintenance_hours_per_year` + `e`.`avg_unplanned_downtime_hours_per_year`) / `e`.`operating_days_per_year` - `e`.`operating_hours_per_day` * `e`.`quality_control_time_percent` / 100 - (`e`.`ramp_up_time_hours` + `e`.`ramp_down_time_hours`),2) AS `effective_hours_per_day`,`pfc`.`gross_margin_pct` AS `gross_margin_pct`,`pfc`.`revenue_growth_rate` AS `revenue_growth_rate`,`pfc`.`volume_growth_pct` AS `volume_growth_pct`,`pfc`.`created_at` AS `created_at`,`pfc`.`updated_at` AS `updated_at` from (((`product_forecast_config` `pfc` join `products` `p` on(`pfc`.`product_id` = `p`.`id`)) left join `equipment` `e` on(`pfc`.`primary_equipment_id` = `e`.`id`)) left join `equipment_lines` `el` on(`pfc`.`primary_equipment_line_id` = `el`.`id`)) where `pfc`.`is_active` = 1 */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `mention_stats`
--

/*!50001 DROP VIEW IF EXISTS `mention_stats`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `mention_stats` AS select `u`.`id` AS `user_id`,concat(`u`.`first_name`,' ',`u`.`last_name`) AS `user_name`,count(`m`.`id`) AS `total_mentions`,sum(case when `m`.`is_read` = 0 then 1 else 0 end) AS `unread_mentions`,max(`m`.`created_at`) AS `last_mention_at` from (`users` `u` left join `mentions` `m` on(`u`.`id` = `m`.`user_id`)) where `u`.`status` = 'active' group by `u`.`id`,`u`.`first_name`,`u`.`last_name` */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `notification_stats_by_user`
--

/*!50001 DROP VIEW IF EXISTS `notification_stats_by_user`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `notification_stats_by_user` AS select `u`.`id` AS `user_id`,concat(`u`.`first_name`,' ',`u`.`last_name`) AS `user_name`,count(`n`.`id`) AS `total_notifications`,sum(case when `n`.`is_read` = 0 then 1 else 0 end) AS `unread_count`,sum(case when `n`.`email_sent` = 1 then 1 else 0 end) AS `emails_sent`,max(`n`.`created_at`) AS `last_notification_at` from (`users` `u` left join `notifications` `n` on(`u`.`id` = `n`.`user_id`)) where `u`.`status` = 'active' group by `u`.`id`,`u`.`first_name`,`u`.`last_name` */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `popular_searches_30d`
--

/*!50001 DROP VIEW IF EXISTS `popular_searches_30d`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `popular_searches_30d` AS select `search_history`.`query` AS `query`,`search_history`.`category` AS `category`,count(0) AS `search_count`,avg(`search_history`.`results_count`) AS `avg_results`,avg(`search_history`.`execution_time_ms`) AS `avg_execution_time_ms`,max(`search_history`.`created_at`) AS `last_searched_at` from `search_history` where `search_history`.`created_at` >= current_timestamp() - interval 30 day group by `search_history`.`query`,`search_history`.`category` order by count(0) desc limit 100 */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `project_task_financials`
--

/*!50001 DROP VIEW IF EXISTS `project_task_financials`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `project_task_financials` AS select `pt`.`id` AS `task_id`,`pt`.`project_id` AS `project_id`,`pt`.`title` AS `task_title`,`pt`.`estimated_cost` AS `estimated_cost`,`pt`.`actual_cost` AS `actual_cost`,`pt`.`estimated_hours` AS `estimated_hours`,`pt`.`actual_hours` AS `actual_hours`,`pft`.`id` AS `transaction_id`,`pft`.`transaction_date` AS `transaction_date`,`pft`.`description` AS `transaction_description`,`pft`.`amount` AS `transaction_amount`,`pft`.`transaction_type` AS `transaction_type`,`pft`.`status` AS `transaction_status`,`pft`.`category` AS `category`,concat(`u`.`first_name`,' ',`u`.`last_name`) AS `assigned_to_name` from ((`project_tasks` `pt` left join `project_financial_transactions` `pft` on(`pft`.`reference_type` = 'task' and `pft`.`reference_id` = `pt`.`id`)) left join `users` `u` on(`pft`.`assigned_to` = `u`.`id`)) */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `search_performance_stats`
--

/*!50001 DROP VIEW IF EXISTS `search_performance_stats`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `search_performance_stats` AS select `search_history`.`category` AS `category`,count(0) AS `total_searches`,avg(`search_history`.`results_count`) AS `avg_results`,avg(`search_history`.`execution_time_ms`) AS `avg_execution_time_ms`,max(`search_history`.`execution_time_ms`) AS `max_execution_time_ms`,sum(case when `search_history`.`results_count` = 0 then 1 else 0 end) AS `zero_result_searches`,cast(`search_history`.`created_at` as date) AS `search_date` from `search_history` where `search_history`.`created_at` >= current_timestamp() - interval 30 day group by `search_history`.`category`,cast(`search_history`.`created_at` as date) order by cast(`search_history`.`created_at` as date) desc,`search_history`.`category` */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `unlinked_financial_transactions`
--

/*!50001 DROP VIEW IF EXISTS `unlinked_financial_transactions`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `unlinked_financial_transactions` AS select `pft`.`id` AS `id`,`pft`.`project_id` AS `project_id`,`pft`.`transaction_date` AS `transaction_date`,`pft`.`description` AS `description`,`pft`.`category` AS `category`,`pft`.`amount` AS `amount`,`pft`.`transaction_type` AS `transaction_type`,`pft`.`status` AS `status`,`pft`.`journal_entry_id` AS `journal_entry_id`,`pft`.`account_id` AS `account_id`,`pft`.`document_id` AS `document_id`,`pft`.`reference_type` AS `reference_type`,`pft`.`reference_id` AS `reference_id`,`pft`.`assigned_to` AS `assigned_to`,`pft`.`due_date` AS `due_date`,`pft`.`notes` AS `notes`,`pft`.`created_by` AS `created_by`,`pft`.`created_at` AS `created_at`,`pft`.`updated_at` AS `updated_at`,`p`.`name` AS `project_name`,`p`.`code` AS `project_code`,concat(`u`.`first_name`,' ',`u`.`last_name`) AS `assigned_to_name` from ((`project_financial_transactions` `pft` join `projects` `p` on(`pft`.`project_id` = `p`.`id`)) left join `users` `u` on(`pft`.`assigned_to` = `u`.`id`)) where (`pft`.`reference_type` is null or `pft`.`reference_type` <> 'task') and `pft`.`amount` > 0 order by `pft`.`transaction_date` desc */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `user_search_activity`
--

/*!50001 DROP VIEW IF EXISTS `user_search_activity`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `user_search_activity` AS select `u`.`id` AS `user_id`,concat(`u`.`first_name`,' ',`u`.`last_name`) AS `user_name`,count(`sh`.`id`) AS `total_searches`,count(distinct `sh`.`query`) AS `unique_queries`,avg(`sh`.`results_count`) AS `avg_results`,max(`sh`.`created_at`) AS `last_search_at` from (`users` `u` left join `search_history` `sh` on(`u`.`id` = `sh`.`user_id`)) where `u`.`status` = 'active' and (`sh`.`created_at` is null or `sh`.`created_at` >= current_timestamp() - interval 30 day) group by `u`.`id`,`u`.`first_name`,`u`.`last_name` */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `user_widget_preferences`
--

/*!50001 DROP VIEW IF EXISTS `user_widget_preferences`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `user_widget_preferences` AS select `u`.`id` AS `user_id`,concat(`u`.`first_name`,' ',`u`.`last_name`) AS `user_name`,count(`uw`.`id`) AS `widget_count`,group_concat(`uw`.`widget_type` order by `uw`.`position` ASC separator ',') AS `widgets` from (`users` `u` left join `user_dashboard_widgets` `uw` on(`u`.`id` = `uw`.`user_id` and `uw`.`is_visible` = 1)) where `u`.`status` = 'active' group by `u`.`id`,`u`.`first_name`,`u`.`last_name` */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `vw_permission_groups_hierarchy`
--

/*!50001 DROP VIEW IF EXISTS `vw_permission_groups_hierarchy`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `vw_permission_groups_hierarchy` AS with recursive group_tree as (select `permission_groups`.`id` AS `id`,`permission_groups`.`name` AS `name`,`permission_groups`.`parent_id` AS `parent_id`,`permission_groups`.`display_order` AS `display_order`,`permission_groups`.`icon` AS `icon`,`permission_groups`.`color` AS `color`,`permission_groups`.`description` AS `description`,`permission_groups`.`is_system` AS `is_system`,`permission_groups`.`name` AS `path`,0 AS `level` from `permission_groups` where `permission_groups`.`parent_id` is null union all select `pg`.`id` AS `id`,`pg`.`name` AS `name`,`pg`.`parent_id` AS `parent_id`,`pg`.`display_order` AS `display_order`,`pg`.`icon` AS `icon`,`pg`.`color` AS `color`,`pg`.`description` AS `description`,`pg`.`is_system` AS `is_system`,concat(`gt`.`path`,' > ',`pg`.`name`) AS `path`,`gt`.`level` + 1 AS `level` from (`permission_groups` `pg` join `group_tree` `gt` on(`pg`.`parent_id` = `gt`.`id`)))select `gt`.`id` AS `id`,`gt`.`name` AS `name`,`gt`.`parent_id` AS `parent_id`,`gt`.`display_order` AS `display_order`,`gt`.`icon` AS `icon`,`gt`.`color` AS `color`,`gt`.`description` AS `description`,`gt`.`is_system` AS `is_system`,`gt`.`path` AS `path`,`gt`.`level` AS `level`,count(`p`.`id`) AS `permission_count` from (`group_tree` `gt` left join `permissions` `p` on(`gt`.`id` = `p`.`group_id`)) group by `gt`.`id`,`gt`.`name`,`gt`.`parent_id`,`gt`.`display_order`,`gt`.`icon`,`gt`.`color`,`gt`.`description`,`gt`.`is_system`,`gt`.`path`,`gt`.`level` order by `gt`.`level`,`gt`.`display_order`,`gt`.`name` */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `widget_usage_stats`
--

/*!50001 DROP VIEW IF EXISTS `widget_usage_stats`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `widget_usage_stats` AS select `user_dashboard_widgets`.`widget_type` AS `widget_type`,count(distinct `user_dashboard_widgets`.`user_id`) AS `user_count`,avg(case when `user_dashboard_widgets`.`is_visible` = 1 then 1 else 0 end) * 100 AS `visibility_percentage`,count(0) AS `total_instances` from `user_dashboard_widgets` group by `user_dashboard_widgets`.`widget_type` order by count(distinct `user_dashboard_widgets`.`user_id`) desc */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `work_order_equipment_view`
--

/*!50001 DROP VIEW IF EXISTS `work_order_equipment_view`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`brickwal`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `work_order_equipment_view` AS select `woe`.`id` AS `assignment_id`,`woe`.`work_order_id` AS `work_order_id`,`wo`.`wo_number` AS `wo_number`,`wo`.`status` AS `wo_status`,`wo`.`priority` AS `priority`,`wo`.`quantity` AS `wo_quantity`,`wo`.`quantity_completed` AS `wo_completed`,`p`.`name` AS `product_name`,`p`.`sku` AS `product_sku`,`woe`.`equipment_id` AS `equipment_id`,`e`.`name` AS `equipment_name`,`e`.`asset_tag` AS `asset_tag`,`e`.`status` AS `equipment_status`,`e`.`utilization_rate` AS `utilization_rate`,`el`.`name` AS `equipment_line_name`,`bl`.`name` AS `business_line_name`,`woe`.`scheduled_start` AS `scheduled_start`,`woe`.`scheduled_end` AS `scheduled_end`,`woe`.`actual_start` AS `actual_start`,`woe`.`actual_end` AS `actual_end`,`woe`.`status` AS `assignment_status`,`woe`.`units_assigned` AS `units_assigned`,`woe`.`units_completed` AS `units_completed`,`woe`.`setup_time_hours` AS `setup_time_hours`,`woe`.`run_time_hours` AS `run_time_hours`,timestampdiff(HOUR,`woe`.`scheduled_start`,`woe`.`scheduled_end`) AS `scheduled_hours`,timestampdiff(HOUR,`woe`.`actual_start`,`woe`.`actual_end`) AS `actual_hours`,case when `woe`.`units_assigned` > 0 then round(`woe`.`units_completed` / `woe`.`units_assigned` * 100,2) else 0 end AS `completion_percentage`,`woe`.`assigned_at` AS `assigned_at`,`woe`.`updated_at` AS `updated_at` from (((((`work_order_equipment` `woe` join `work_orders` `wo` on(`woe`.`work_order_id` = `wo`.`id`)) join `equipment` `e` on(`woe`.`equipment_id` = `e`.`id`)) left join `products` `p` on(`wo`.`product_id` = `p`.`id`)) left join `equipment_lines` `el` on(`e`.`equipment_line_id` = `el`.`id`)) left join `business_lines` `bl` on(`e`.`business_line_id` = `bl`.`id`)) */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;
/*!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 */;
/*M!100616 SET NOTE_VERBOSITY=@OLD_NOTE_VERBOSITY */;

-- Dump completed on 2025-12-14  1:00:01
